diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..761f4120f --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# file types to ignore + +*.pyc diff --git a/CMakeLists.txt b/CMakeLists.txt index 8e7c5d8c9..f24426e79 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -344,6 +344,15 @@ MARK_AS_ADVANCED(FORCE FREECAD_LIBPACK_CHECKFILE6X FREECAD_LIBPACK_CHECKFILE7X) find_package(Spnav) endif(WIN32) +# ------------------------------ Matplotlib ------------------------------ + + find_package(Matplotlib) + IF(MATPLOTLIB_FOUND) + message("-- matplotlib-${MATPLOTLIB_VERSION} has been found.") + ELSE(MATPLOTLIB_FOUND) + message("matplotlib not found, Plot module will not available until matplotlib is installed!") + ENDIF(MATPLOTLIB_FOUND) + # ------------------------------------------------------------------------ diff --git a/README b/README new file mode 100644 index 000000000..8ecbded40 --- /dev/null +++ b/README @@ -0,0 +1,50 @@ +FreeCAD +======= + +FreeCAD is a general purpose feature-based, parametric 3D modeler for CAD, MCAD, +CAx, CAE and PLM, aimed directly at mechanical engineering and product design but +also fits a wider range of uses in engineering, such as architecture or other engineering +specialties. It is 100% Open Source (LGPL2+ license) and extremely modular, allowing +for very advanced extension and customization. + +FreeCAD is based on OpenCasCade, a powerful geometry kernel, features an Open Inventor-compliant +3D scene representation model provided by the Coin 3D library, and a broad Python API. +The interface is built with Qt. FreeCAD runs exactly the same way on Windows, Mac OSX, BSD and +Linux platforms. + +Home page and wiki documentation: http://free-cad.sf.net +Forum: http://sourceforge.net/apps/phpbb/free-cad/ +Bug tracker: http://sourceforge.net/apps/mantisbt/free-cad/ +Official git link: git://free-cad.git.sourceforge.net/free-cad/free-cad + +Building +======== + +Compiling FreeCAD requires to install several heavyweight libraries and their development +files such as OpenCasCADe, Coin and Qt, listed in the pages below. Once this is done, +FreeCAD can be simply compiled with cMake. On windows, these libraries are bundled and +offeredby the FreeCAD team in a convenience package, on Linux they are usually found +in your distribution's repositories and on Mac OSX and other platforms you will usually +need to compile them yourself. + +Note that autotools build system can still be used but will be obsoleted soon. + +The pages below contain up-to-date build instructions: + +For Linux: http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=CompileOnUnix +For windows: http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=CompileOnWindows +For Mac OSX: http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=CompileOnMac + +In this folder you will also find additional README files, specific for each platform. + + + + + + + + + + + + diff --git a/acinclude.m4 b/acinclude.m4 index edc55c58c..fa3d0aa41 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -220,10 +220,11 @@ case $host_os in QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_frm/QtNetwork.framework/Headers" QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_frm/QtSvg.framework/Headers" QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_frm/QtXml.framework/Headers" + QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_frm/QtUiTools.framework/Headers" # Separated flags QT4_CORE_CXXFLAGS="-F$fc_qt4_frm -I$fc_qt4_frm/QtCore.framework/Headers" # QtUiTools doesn't seem to be available as framework - QT_CXXFLAGS="$QT_CXXFLAGS -I/usr/include/QtUiTools" + #QT_CXXFLAGS="$QT_CXXFLAGS -I/usr/include/QtUiTools" # QtWebKit check fc_ac_save_cppflags=$CPPFLAGS CPPFLAGS="$QT_CXXFLAGS -I$fc_qt4_frm/QtWebKit.framework/Headers" diff --git a/cMake/FindMatplotlib.cmake b/cMake/FindMatplotlib.cmake new file mode 100644 index 000000000..04ef34996 --- /dev/null +++ b/cMake/FindMatplotlib.cmake @@ -0,0 +1,45 @@ +# - Find the matplotlib libraries +# This module finds IF matplotlib is installed, and sets the following variables +# indicating where it is. +# +# MATPLOTLIB_FOUND - was matplotlib found +# MATPLOTLIB_VERSION - the version of matplotlib found as a string +# MATPLOTLIB_VERSION_MAJOR - the major version number of matplotlib +# MATPLOTLIB_VERSION_MINOR - the minor version number of matplotlib +# MATPLOTLIB_VERSION_PATCH - the patch version number of matplotlib +# MATPLOTLIB_PATH_DIRS - path to the matplotlib include files + +IF(PYTHONINTERP_FOUND) + # Try to import matplotlib into Python interpreter. Python + # interpreter was found previously as required package, so + # don't take care about this. + execute_process(COMMAND "${PYTHON_EXECUTABLE}" "-c" + "import matplotlib as m; print(m.__version__); print(m.__path__[0]);" + RESULT_VARIABLE _MATPLOTLIB_SEARCH_SUCCESS + OUTPUT_VARIABLE _MATPLOTLIB_VALUES + ERROR_VARIABLE _MATPLOTLIB_ERROR_VALUE + OUTPUT_STRIP_TRAILING_WHITESPACE) + + IF(_MATPLOTLIB_SEARCH_SUCCESS MATCHES 0) + set(MATPLOTLIB_FOUND TRUE) + + # Convert the process output into a list + string(REGEX REPLACE ";" "\\\\;" _MATPLOTLIB_VALUES ${_MATPLOTLIB_VALUES}) + string(REGEX REPLACE "\n" ";" _MATPLOTLIB_VALUES ${_MATPLOTLIB_VALUES}) + list(GET _MATPLOTLIB_VALUES 0 MATPLOTLIB_VERSION) + list(GET _MATPLOTLIB_VALUES 1 MATPLOTLIB_PATH_DIRS) + + # Make sure all directory separators are '/' + string(REGEX REPLACE "\\\\" "/" MATPLOTLIB_PATH_DIRS ${MATPLOTLIB_PATH_DIRS}) + + # Get the major and minor version numbers + string(REGEX REPLACE "\\." ";" _MATPLOTLIB_VERSION_LIST ${MATPLOTLIB_VERSION}) + list(GET _MATPLOTLIB_VERSION_LIST 0 MATPLOTLIB_VERSION_MAJOR) + list(GET _MATPLOTLIB_VERSION_LIST 1 MATPLOTLIB_VERSION_MINOR) + list(GET _MATPLOTLIB_VERSION_LIST 2 MATPLOTLIB_VERSION_PATCH) + ELSE() + set(MATPLOTLIB_FOUND FALSE) + ENDIF() +ELSE() + set(MATPLOTLIB_FOUND FALSE) +ENDIF() diff --git a/configure.ac b/configure.ac index dfdbf8524..f2418d77f 100644 --- a/configure.ac +++ b/configure.ac @@ -649,6 +649,23 @@ fi AM_CONDITIONAL(HAVE_SPNAV_FOUND, test x"$fc_cv_lib_spnav_avail" = xyes) + +dnl checking for matplotlib +dnl ************************************************************************** +fc_matplotlib_avail=no +AC_MSG_CHECKING([for matplotlib]) +fc_matplotlib_ver=`python -c "import matplotlib as m; print m.__version__;"`; +if test x$fc_py_ver = x; then + AC_MSG_WARN([ + **** Cannot find matplotlib Python module. + Plot Module will not available until matplotlib is installed **** + ]) +else + fc_matplotlib_avail=yes +fi; +AC_MSG_RESULT([yes]) +AM_CONDITIONAL(HAVE_MATPLOTLIB, test x"$fc_matplotlib_avail" = xyes) + #--------------------------------------------------------------------- # # Check if 64-bit platform @@ -1057,6 +1074,7 @@ src/Mod/Sandbox/Gui/Makefile src/Mod/Surfaces/Makefile src/Mod/Ship/Makefile src/Mod/OpenSCAD/Makefile +src/Mod/Plot/Makefile src/Tools/Makefile src/Tools/_TEMPLATE_/Makefile src/Tools/_TEMPLATE_/App/Makefile diff --git a/package/debian/control b/package/debian/control index a0662ef91..6e539444f 100644 --- a/package/debian/control +++ b/package/debian/control @@ -21,7 +21,7 @@ Standards-Version: 3.9.2 Package: freecad Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} -Recommends: python-pivy +Recommends: python-pivy python-matplotlib Suggests: freecad-doc Description: Extensible Open Source CAx program (alpha) FreeCAD is an Open Source CAx RAD based on OpenCasCade, Qt and Python. diff --git a/src/App/Application.h b/src/App/Application.h index ca75c3fed..00099e0ee 100644 --- a/src/App/Application.h +++ b/src/App/Application.h @@ -112,8 +112,10 @@ public: boost::signal signalActiveDocument; /// signal on saving Document boost::signal signalSaveDocument; + /// signal on starting to restore Document + boost::signal signalStartRestoreDocument; /// signal on restoring Document - boost::signal signalRestoreDocument; + boost::signal signalFinishRestoreDocument; //@} diff --git a/src/App/Document.cpp b/src/App/Document.cpp index 86b9ef79c..3ab7c2cae 100644 --- a/src/App/Document.cpp +++ b/src/App/Document.cpp @@ -999,6 +999,8 @@ void Document::restore (void) if (!reader.isValid()) throw Base::FileException("Error reading compression file",FileName.getValue()); + GetApplication().signalStartRestoreDocument(*this); + try { Document::Restore(reader); } @@ -1019,7 +1021,7 @@ void Document::restore (void) It->second->purgeTouched(); } - GetApplication().signalRestoreDocument(*this); + GetApplication().signalFinishRestoreDocument(*this); } bool Document::isSaved() const diff --git a/src/App/DynamicProperty.cpp b/src/App/DynamicProperty.cpp index ca2522d26..a7dc4edea 100644 --- a/src/App/DynamicProperty.cpp +++ b/src/App/DynamicProperty.cpp @@ -245,6 +245,18 @@ Property* DynamicProperty::addDynamicProperty(const char* type, const char* name return pcProperty; } +bool DynamicProperty::removeDynamicProperty(const char* name) +{ + std::map::iterator it = props.find(name); + if (it != props.end()) { + delete it->second.property; + props.erase(it); + return true; + } + + return false; +} + std::string DynamicProperty::getUniquePropertyName(const char *Name) const { std::string CleanName = Base::Tools::getIdentifier(Name); diff --git a/src/App/DynamicProperty.h b/src/App/DynamicProperty.h index 12d8f91f6..5ebfc4195 100644 --- a/src/App/DynamicProperty.h +++ b/src/App/DynamicProperty.h @@ -70,6 +70,7 @@ public: Property *getDynamicPropertyByName(const char* name) const; Property* addDynamicProperty(const char* type, const char* name=0, const char* group=0, const char* doc=0, short attr=0, bool ro=false, bool hidden=false); + bool removeDynamicProperty(const char* name); std::vector getDynamicPropertyNames() const; void addDynamicProperties(const PropertyContainer*); /// get the name of a property diff --git a/src/App/FeaturePython.h b/src/App/FeaturePython.h index b5ead2bcd..b45fa3436 100644 --- a/src/App/FeaturePython.h +++ b/src/App/FeaturePython.h @@ -100,6 +100,9 @@ public: short attr=0, bool ro=false, bool hidden=false) { return props->addDynamicProperty(type, name, group, doc, attr, ro, hidden); } + virtual bool removeDynamicProperty(const char* name) { + return props->removeDynamicProperty(name); + } std::vector getDynamicPropertyNames() const { return props->getDynamicPropertyNames(); } diff --git a/src/App/FeaturePythonPy.xml b/src/App/FeaturePythonPy.xml index 63b2d8136..0b58cb5a7 100644 --- a/src/App/FeaturePythonPy.xml +++ b/src/App/FeaturePythonPy.xml @@ -20,6 +20,13 @@ The first argument specifies the type, the second the name of the property. + + + + removeProperty(string) -- Remove a generic property. +Note, you can only remove user-defined properties but not built-in ones. + + diff --git a/src/App/FeaturePythonPyImp.cpp b/src/App/FeaturePythonPyImp.cpp index 7fac94fd8..42d90cdd4 100644 --- a/src/App/FeaturePythonPyImp.cpp +++ b/src/App/FeaturePythonPyImp.cpp @@ -62,6 +62,16 @@ PyObject* FeaturePythonPy::addProperty(PyObject *args) return Py::new_reference_to(this); } +PyObject* FeaturePythonPy::removeProperty(PyObject *args) +{ + char *sName; + if (!PyArg_ParseTuple(args, "s", &sName)) + return NULL; + + bool ok = getFeaturePythonPtr()->removeDynamicProperty(sName); + return Py_BuildValue("O", (ok ? Py_True : Py_False)); +} + PyObject* FeaturePythonPy::supportedProperties(PyObject *args) { if (!PyArg_ParseTuple(args, "")) // convert args: Python->C diff --git a/src/App/PropertyContainer.h b/src/App/PropertyContainer.h index 0690fe1b4..82d73c190 100644 --- a/src/App/PropertyContainer.h +++ b/src/App/PropertyContainer.h @@ -138,6 +138,9 @@ public: short attr=0, bool ro=false, bool hidden=false){ return 0; } + virtual bool removeDynamicProperty(const char* name) { + return false; + } virtual std::vector getDynamicPropertyNames() const { return std::vector(); } diff --git a/src/Base/Parameter.cpp b/src/Base/Parameter.cpp index e38784e01..52ae32023 100644 --- a/src/Base/Parameter.cpp +++ b/src/Base/Parameter.cpp @@ -193,8 +193,7 @@ inline bool DOMTreeErrorReporter::getSawErrors() const // Construction/Destruction -/** Defauld construction - * Does not much +/** Default construction */ ParameterGrp::ParameterGrp(XERCES_CPP_NAMESPACE_QUALIFIER DOMElement *GroupNode,const char* sName) : Base::Handled(), Subject(),_pGroupNode(GroupNode) @@ -967,10 +966,10 @@ static XercesDOMParser::ValSchemes gValScheme = XercesDOMParser::Val_Au //************************************************************************** // Construction/Destruction -/** Defauld construction - * Does not much +/** Default construction */ -ParameterManager::ParameterManager() : ParameterGrp() +ParameterManager::ParameterManager() + : ParameterGrp(), _pDocument(0) { // initialize the XML system Init(); @@ -1035,6 +1034,7 @@ ParameterManager::ParameterManager() : ParameterGrp() */ ParameterManager::~ParameterManager() { + delete _pDocument; } void ParameterManager::Init(void) @@ -1044,7 +1044,6 @@ void ParameterManager::Init(void) try { XMLPlatformUtils::Initialize(); } - catch (const XMLException& toCatch) { #if defined(FC_OS_LINUX) || defined(FC_OS_CYGWIN) std::ostringstream err; @@ -1056,11 +1055,7 @@ void ParameterManager::Init(void) << " Exception message:" << pMsg; delete [] pMsg; -//#ifdef FC_OS_LINUX throw Exception(err.str().c_str()); -//#else -// throw FCException(err.str()); -//#endif } Init = true; } diff --git a/src/Base/PyExport.h b/src/Base/PyExport.h index 05729ea12..b9e599184 100644 --- a/src/Base/PyExport.h +++ b/src/Base/PyExport.h @@ -40,6 +40,15 @@ #endif #include +#ifdef FC_OS_MACOSX +#undef toupper +#undef tolower +#undef isupper +#undef islower +#undef isspace +#undef isalpha +#undef isalnum +#endif namespace Base { diff --git a/src/Base/PyObjectBase.h b/src/Base/PyObjectBase.h index 3a14bdef9..ec3a31681 100644 --- a/src/Base/PyObjectBase.h +++ b/src/Base/PyObjectBase.h @@ -35,7 +35,16 @@ // needed header #undef slots -# include +#include +#ifdef FC_OS_MACOSX +#undef toupper +#undef tolower +#undef isupper +#undef islower +#undef isspace +#undef isalpha +#undef isalnum +#endif #define slots #include #include diff --git a/src/Base/Stream.h b/src/Base/Stream.h index f083e1e58..26bb4738c 100644 --- a/src/Base/Stream.h +++ b/src/Base/Stream.h @@ -25,6 +25,10 @@ #define BASE_STREAM_H +#ifdef __GNUC__ +# include +#endif + #include #include #include @@ -233,21 +237,21 @@ protected: static const int bufSize = 1024; // size of the data buffer char buffer[bufSize+pbSize]; // data buffer }; - -class BaseExport PyStreambuf : public std::streambuf -{ -public: - PyStreambuf(PyObject* o); - -protected: - int underflow(); - -private: - static const int pbSize = 4; - static const int bufSize = 1024; - char buffer[bufSize+pbSize]; - PyObject* inp; -}; + +class BaseExport PyStreambuf : public std::streambuf +{ +public: + PyStreambuf(PyObject* o); + +protected: + int underflow(); + +private: + static const int pbSize = 4; + static const int bufSize = 1024; + char buffer[bufSize+pbSize]; + PyObject* inp; +}; class BaseExport Streambuf : public std::streambuf { diff --git a/src/CXX/WrapPython.h b/src/CXX/WrapPython.h index 118a8740f..db159a503 100644 --- a/src/CXX/WrapPython.h +++ b/src/CXX/WrapPython.h @@ -56,5 +56,14 @@ // pull in python definitions #include +#ifdef FC_OS_MACOSX +#undef toupper +#undef tolower +#undef isupper +#undef islower +#undef isspace +#undef isalpha +#undef isalnum +#endif #endif diff --git a/src/Doc/CMakeLists.txt b/src/Doc/CMakeLists.txt index f2639f2a7..ac445b484 100644 --- a/src/Doc/CMakeLists.txt +++ b/src/Doc/CMakeLists.txt @@ -64,6 +64,7 @@ if(DOXYGEN_FOUND) ${CMAKE_CURRENT_BINARY_DIR}/BuildDevDoc.cfg @ONLY) if( FREECAD_MAINTAINERS_BUILD ) + if (WIN32) ADD_CUSTOM_TARGET(SourceDocu ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/BuildDevDoc.cfg COMMAND ${QT_HELPCOMPILER_EXECUTABLE} "\"${CMAKE_BINARY_DIR}/doc/SourceDocu/html/index.qhp\"" @@ -71,6 +72,15 @@ if(DOXYGEN_FOUND) WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/BuildDevDoc.cfg ) + else(WIN32) + ADD_CUSTOM_TARGET(SourceDocu + ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/BuildDevDoc.cfg + COMMAND ${QT_HELPCOMPILER_EXECUTABLE} "${CMAKE_BINARY_DIR}/doc/SourceDocu/html/index.qhp" + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_BINARY_DIR}/doc/SourceDocu/html/index.qch ${CMAKE_BINARY_DIR}/doc/FreeCADSource.qch + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} + DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/BuildDevDoc.cfg + ) + endif(WIN32) ADD_CUSTOM_TARGET(UserDocu ${PYTHON_EXECUTABLE} diff --git a/src/Gui/Document.cpp b/src/Gui/Document.cpp index 1f629b2ab..a3d439003 100644 --- a/src/Gui/Document.cpp +++ b/src/Gui/Document.cpp @@ -89,7 +89,8 @@ struct DocumentP Connection connectActObject; Connection connectSaveDocument; Connection connectRestDocument; - Connection connectLoadDocument; + Connection connectStartLoadDocument; + Connection connectFinishLoadDocument; }; } // namespace Gui @@ -127,8 +128,10 @@ Document::Document(App::Document* pcDocument,Application * app) (boost::bind(&Gui::Document::Save, this, _1)); d->connectRestDocument = pcDocument->signalRestoreDocument.connect (boost::bind(&Gui::Document::Restore, this, _1)); - d->connectLoadDocument = App::GetApplication().signalRestoreDocument.connect - (boost::bind(&Gui::Document::slotRestoredDocument, this, _1)); + d->connectStartLoadDocument = App::GetApplication().signalStartRestoreDocument.connect + (boost::bind(&Gui::Document::slotStartRestoreDocument, this, _1)); + d->connectFinishLoadDocument = App::GetApplication().signalFinishRestoreDocument.connect + (boost::bind(&Gui::Document::slotFinishRestoreDocument, this, _1)); // pointer to the python class // NOTE: As this Python object doesn't get returned to the interpreter we @@ -154,7 +157,8 @@ Document::~Document() d->connectActObject.disconnect(); d->connectSaveDocument.disconnect(); d->connectRestDocument.disconnect(); - d->connectLoadDocument.disconnect(); + d->connectStartLoadDocument.disconnect(); + d->connectFinishLoadDocument.disconnect(); // e.g. if document gets closed from within a Python command d->_isClosing = true; @@ -668,8 +672,26 @@ void Document::RestoreDocFile(Base::Reader &reader) setModified(false); } -void Document::slotRestoredDocument(const App::Document&) +void Document::slotStartRestoreDocument(const App::Document& doc) { + if (d->_pcDocument != &doc) + return; + // disable this signal while loading a document + d->connectActObject.block(); +} + +void Document::slotFinishRestoreDocument(const App::Document& doc) +{ + if (d->_pcDocument != &doc) + return; + d->connectActObject.unblock(); + App::DocumentObject* act = doc.getActiveObject(); + if (act) { + ViewProvider* viewProvider = getViewProvider(act); + if (viewProvider && viewProvider->isDerivedFrom(ViewProviderDocumentObject::getClassTypeId())) { + signalActivatedObject(*(static_cast(viewProvider))); + } + } // some post-processing of view providers std::map::iterator it; for (it = d->_ViewProviderMap.begin(); it != d->_ViewProviderMap.end(); ++it) { diff --git a/src/Gui/Document.h b/src/Gui/Document.h index 9382c33bd..dc1acd875 100644 --- a/src/Gui/Document.h +++ b/src/Gui/Document.h @@ -68,7 +68,8 @@ protected: void slotChangedObject(const App::DocumentObject&, const App::Property&); void slotRenamedObject(const App::DocumentObject&); void slotActivatedObject(const App::DocumentObject&); - void slotRestoredDocument(const App::Document&); + void slotStartRestoreDocument(const App::Document&); + void slotFinishRestoreDocument(const App::Document&); //@} public: @@ -86,9 +87,9 @@ public: mutable boost::signal signalRenamedObject; /// signal on activated Object mutable boost::signal signalActivatedObject; - /// signal on goes in edti mode + /// signal on entering in edit mode mutable boost::signal signalInEdit; - /// signal on leave edit mode + /// signal on leaving edit mode mutable boost::signal signalResetEdit; //@} diff --git a/src/Gui/EditorView.cpp b/src/Gui/EditorView.cpp index 0fddaa5d5..4566a4117 100644 --- a/src/Gui/EditorView.cpp +++ b/src/Gui/EditorView.cpp @@ -47,6 +47,7 @@ #include "FileDialog.h" #include "Macro.h" #include "PythonDebugger.h" +#include "PythonEditor.h" #include #include @@ -124,10 +125,6 @@ EditorView::~EditorView() getWindowParameter()->Detach( this ); } -void EditorView::drawMarker(int line, int x, int y, QPainter*) -{ -} - QPlainTextEdit* EditorView::getEditor() const { return d->textEdit; @@ -293,7 +290,7 @@ bool EditorView::open(const QString& fileName) QFileInfo fi(fileName); d->timeStamp = fi.lastModified().toTime_t(); d->activityTimer->setSingleShot(true); - d->activityTimer->start(3000); + d->activityTimer->start(3000); setCurrentFileName(fileName); return true; @@ -399,6 +396,7 @@ void EditorView::printPdf() void EditorView::setCurrentFileName(const QString &fileName) { d->fileName = fileName; + /*emit*/ changeFileName(d->fileName); d->textEdit->document()->setModified(false); QString shownName; @@ -488,12 +486,11 @@ void EditorView::focusInEvent (QFocusEvent * e) // --------------------------------------------------------- -PythonEditorView::PythonEditorView(QPlainTextEdit* editor, QWidget* parent) - : EditorView(editor, parent), m_debugLine(-1), - breakpoint(QLatin1String(":/icons/breakpoint.png")), - debugMarker(QLatin1String(":/icons/debug-marker.png")) +PythonEditorView::PythonEditorView(PythonEditor* editor, QWidget* parent) + : EditorView(editor, parent), _pye(editor) { - _dbg = Application::Instance->macroManager()->debugger(); + connect(this, SIGNAL(changeFileName(const QString&)), + editor, SLOT(setFileName(const QString&))); } PythonEditorView::~PythonEditorView() @@ -532,18 +529,6 @@ bool PythonEditorView::onHasMsg(const char* pMsg) const return EditorView::onHasMsg(pMsg); } -void PythonEditorView::drawMarker(int line, int x, int y, QPainter* p) -{ - Breakpoint bp = _dbg->getBreakpoint(fileName()); - if (bp.checkLine(line)) { - p->drawPixmap(x, y, breakpoint); - } - if (m_debugLine == line) { - p->drawPixmap(x, y+2, debugMarker); - debugRect = QRect(x, y+2, debugMarker.width(), debugMarker.height()); - } -} - /** * Runs the opened script in the macro manager. */ @@ -554,42 +539,22 @@ void PythonEditorView::executeScript() void PythonEditorView::startDebug() { - if (_dbg->start()) { - _dbg->runFile(fileName()); - _dbg->stop(); - } + _pye->startDebug(); } void PythonEditorView::toggleBreakpoint() { - QTextCursor cursor = getEditor()->textCursor(); - int line = cursor.blockNumber() + 1; - _dbg->toggleBreakpoint(line, fileName()); -// getMarker()->update(); + _pye->toggleBreakpoint(); } void PythonEditorView::showDebugMarker(int line) { - m_debugLine = line; -// getMarker()->update(); - QTextCursor cursor = getEditor()->textCursor(); - cursor.movePosition(QTextCursor::StartOfBlock); - int cur = cursor.blockNumber() + 1; - if (cur > line) { - for (int i=line; isetTextCursor(cursor); + _pye->showDebugMarker(line); } void PythonEditorView::hideDebugMarker() { - m_debugLine = -1; -// getMarker()->update(); + _pye->hideDebugMarker(); } #include "moc_EditorView.cpp" diff --git a/src/Gui/EditorView.h b/src/Gui/EditorView.h index 096733ba9..e9201e482 100644 --- a/src/Gui/EditorView.h +++ b/src/Gui/EditorView.h @@ -50,8 +50,6 @@ public: ~EditorView(); QPlainTextEdit* getEditor() const; - //todo: remove - virtual void drawMarker(int line, int x, int y, QPainter*); void OnChange(Base::Subject &rCaller,const char* rcReason); const char *getName(void) const {return "EditorView";} @@ -90,6 +88,9 @@ private Q_SLOTS: void undoAvailable(bool); void redoAvailable(bool); +Q_SIGNALS: + void changeFileName(const QString&); + private: void setCurrentFileName(const QString &fileName); bool saveFile(); @@ -98,21 +99,18 @@ private: EditorViewP* d; }; -class PythonDebugger; +class PythonEditor; class GuiExport PythonEditorView : public EditorView { Q_OBJECT public: - PythonEditorView(QPlainTextEdit* editor, QWidget* parent); + PythonEditorView(PythonEditor* editor, QWidget* parent); ~PythonEditorView(); - //todo: remove - void drawMarker(int line, int x, int y, QPainter*); bool onMsg(const char* pMsg,const char** ppReturn); bool onHasMsg(const char* pMsg) const; - //todo: move to PythonEditor public Q_SLOTS: void executeScript(); void startDebug(); @@ -120,13 +118,8 @@ public Q_SLOTS: void showDebugMarker(int line); void hideDebugMarker(); - //todo: move to PythonEditor private: - int m_debugLine; - QRect debugRect; - QPixmap breakpoint; - QPixmap debugMarker; - PythonDebugger* _dbg; + PythonEditor* _pye; }; } // namespace Gui diff --git a/src/Gui/Language/FreeCAD_af.qm b/src/Gui/Language/FreeCAD_af.qm index bcd7a3651..eab371746 100644 Binary files a/src/Gui/Language/FreeCAD_af.qm and b/src/Gui/Language/FreeCAD_af.qm differ diff --git a/src/Gui/Language/FreeCAD_af.ts b/src/Gui/Language/FreeCAD_af.ts index d2ddf2c47..ec9c8c570 100644 --- a/src/Gui/Language/FreeCAD_af.ts +++ b/src/Gui/Language/FreeCAD_af.ts @@ -1,5906 +1,5836 @@ - - + + Angle - Form - Vorm + Form + Vorm - A: - A: + A: + A: - B: - B: + B: + B: - C: - C: + C: + C: - Angle Snap - Hoekspronge + Angle Snap + Hoekspronge - - 1 ° - + + 1 ° + - - 2 ° - + + 2 ° + - - 5 ° - + + 5 ° + - - 10 ° - 10° + + 10 ° + 10° - - 20 ° - 20° + + 20 ° + 20° - - 45 ° - 45° + + 45 ° + 45° - - 90 ° - 90° + + 90 ° + 90° - - 180 ° - 180° + + 180 ° + 180° - - + + Gui::AccelLineEdit - none - geen + none + geen - - + + Gui::ActionSelector - Available: - + Available: + Available: - Selected: - + Selected: + Selected: - Add - Voeg by + Add + Voeg by - Remove - Verwyder + Remove + Verwyder - Move up - Skuif op + Move up + Skuif op - Move down - Skuif neer + Move down + Skuif neer - - + + Gui::AlignmentView - Movable object - + Movable object + Movable object - Fixed object - + Fixed object + Fixed object - - + + Gui::BlenderNavigationStyle - Press left mouse button - Druk linker muisknoppie + Press left mouse button + Druk linker muisknoppie - Press SHIFT and middle mouse button - Press SHIFT and middle mouse button + Press SHIFT and middle mouse button + Druk SHIFT en die middelste muisknoppie - Press middle mouse button - Druk middelste muisknoppie + Press middle mouse button + Druk middelste muisknoppie - Scroll middle mouse button - Blaai neer met middelste muisknoppie + Scroll middle mouse button + Blaai neer met middelste muisknoppie - - + + Gui::CADNavigationStyle - Press left mouse button - Druk linker muisknoppie + Press left mouse button + Druk linker muisknoppie - Press middle mouse button - Druk middelste muisknoppie + Press middle mouse button + Druk middelste muisknoppie - Press left and middle mouse button - Druk linker- en middelste muisknoppie + Press left and middle mouse button + Druk linker- en middelste muisknoppie - Scroll middle mouse button - Blaai neer met middelste muisknoppie + Scroll middle mouse button + Blaai neer met middelste muisknoppie - - + + Gui::Command - Standard - Standaard + Standard + Standaard - - + + Gui::ContainerDialog - &OK - &Goedgekeur + &OK + &Goedgekeur - &Cancel - &Kanselleer + &Cancel + &Kanselleer - - + + Gui::ControlSingleton - Task panel - Taakpaneel + Task panel + Taakpaneel - - + + Gui::Dialog::AboutApplication - About - Aangaande + About + Aangaande - Revision number - Hersieningsnommer + Revision number + Hersieningsnommer - Version - Weergawe + Version + Weergawe - OK - Goed + OK + Goed - - + + - Release date - Uitgawedatum + Release date + Uitgawedatum - Platform - Platform + Platform + Platform - License... - License... + License... + Lisensie... - Copy to clipboard - + Copy to clipboard + Copy to clipboard - - + + Gui::Dialog::ButtonModel - Button %1 - Button %1 + Button %1 + Knoppie %1 - Out Of Range - Out Of Range + Out Of Range + Buite interval - - + + Gui::Dialog::CommandModel - Commands - Bevele + Commands + Bevele - - + + Gui::Dialog::DemoMode - View Turntable - Kyk na Draaitafel + View Turntable + Kyk na Draaitafel - Speed - Spoed + Speed + Spoed - Maximum - Maksimum + Maximum + Maksimum - Minimum - Minimum + Minimum + Minimum - Fullscreen - Volskerm + Fullscreen + Volskerm - Enable timer - Aktiveer tydhouer + Enable timer + Aktiveer tydhouer - s - s + s + s - Angle - Hoek - - - 90° - 90° - - - -90° - -90° + Angle + Hoek - Play - Speel + 90° + 90° - Stop - Stop + -90° + -90° - Close - Maak toe + Play + Speel - - + + Stop + Stop + + + Close + Maak toe + + + Gui::Dialog::DlgActivateWindow - Choose Window - Kies Venster + Choose Window + Kies Venster - &Activate - &Aktiveer + &Activate + &Aktiveer - Alt+A - Alt+A + Alt+A + Alt+A - &Cancel - &Kanselleer + &Cancel + &Kanselleer - - + + - - + + Gui::Dialog::DlgActivateWindowImp - Windows - Vensters + Windows + Vensters - - + + Gui::Dialog::DlgAuthorization - Authorization - Magtiging + Authorization + Magtiging - &OK - &Goedgekeur + &OK + &Goedgekeur - &Cancel - &Kanselleer + &Cancel + &Kanselleer - Password: - Wagwoord: + Password: + Wagwoord: - User name: - Gebruikersnaam: + User name: + Gebruikersnaam: - - + + - - + + Gui::Dialog::DlgChooseIcon - Choose Icon - Kies ikoon + Choose Icon + Kies ikoon - OK - Goed + OK + Goed - Cancel - Kanselleer + Cancel + Kanselleer - Add icons... - Add icons... + Add icons... + Voeg ikone by... - - + + Gui::Dialog::DlgCustomActions - Macros - Makros + Macros + Makros - Setup Custom Macros - Maak Pasgemaakte Makros + Setup Custom Macros + Maak Pasgemaakte Makros - Macro: - Makro: + Macro: + Makro: - ... - ... + ... + ... - Pixmap - Beeldelementkaart + Pixmap + Beeldelementkaart - Accelerator: - Versneller: + Accelerator: + Versneller: - What's this: - Wat is dit: + What's this: + Wat is dit: - Status text: - Status teks: + Status text: + Status teks: - Tool tip: - Werktuigwenk: + Tool tip: + Werktuigwenk: - Menu text: - Kieslys teks: + Menu text: + Kieslys teks: - Add - Voeg by + Add + Voeg by - Remove - Verwyder + Remove + Verwyder - Replace - Vervang + Replace + Vervang - - + + Gui::Dialog::DlgCustomActionsImp - Icons - Ikone + Icons + Ikone - Macros - Makros + Macros + Makros - No macro - Geen makro + No macro + Geen makro - No macros found. - Geen makros gevind nie. + No macros found. + Geen makros gevind nie. - Macro not found - Makro nie gevind nie + Macro not found + Makro nie gevind nie - Sorry, couldn't find macro file '%1'. - Jammer, kon nie die makro-lêer '%1' vind nie. + Sorry, couldn't find macro file '%1'. + Jammer, kon nie die makro-lêer '%1' vind nie. - Empty macro - Leë makro + Empty macro + Leë makro - Please specify the macro first. - Kies asseblief eers 'n makro. + Please specify the macro first. + Kies asseblief eers 'n makro. - Empty text - Leë teks + Empty text + Leë teks - Please specify the menu text first. - Spesifiseer asseblief eers die kieslysteks. + Please specify the menu text first. + Spesifiseer asseblief eers die kieslysteks. - No item selected - Geen item gekies + No item selected + Geen item gekies - Please select a macro item first. - Kies eers 'n makro-item. + Please select a macro item first. + Kies eers 'n makro-item. - - + + Gui::Dialog::DlgCustomCommands - Commands - Bevele + Commands + Bevele - - + + - - + + Gui::Dialog::DlgCustomCommandsImp - Category - Kategorie + Category + Kategorie - Icon - Ikoon + Icon + Ikoon - Command - Bevel + Command + Bevel - - + + Gui::Dialog::DlgCustomKeyboard - Keyboard - Sleutelbord + Keyboard + Sleutelbord - Description: - Beskrywing: + Description: + Beskrywing: - &Category: - &Kategorie: + &Category: + &Kategorie: - C&ommands: - &Bevele: + C&ommands: + &Bevele: - Current shortcut: - Huidige kortpad: + Current shortcut: + Huidige kortpad: - Press &new shortcut: - Druk & nuwe kortpad: + Press &new shortcut: + Druk & nuwe kortpad: - Currently assigned to: - Tans toegeken aan: + Currently assigned to: + Tans toegeken aan: - &Assign - &KenToe + &Assign + &KenToe - Alt+A - Alt+A + Alt+A + Alt+A - &Reset - Herstel + &Reset + Herstel - Alt+R - Alt+R + Alt+R + Alt+R - Re&set All - &Herstel Alles + Re&set All + &Herstel Alles - Alt+S - Alt+S + Alt+S + Alt+S - - + + - - + + Gui::Dialog::DlgCustomKeyboardImp - Icon - Ikoon + Icon + Ikoon - Command - Bevel + Command + Bevel - none - geen + none + geen - Multiple defined shortcut - Veelvuldig gedefinieerde kortpad + Multiple defined shortcut + Veelvuldig gedefinieerde kortpad - The shortcut '%1' is defined more than once. This could result into unexpected behaviour. - Die kortpad '%1' is meer as een keer gedefinieer. Dit kan lei tot onverwagte gedrag. + The shortcut '%1' is defined more than once. This could result into unexpected behaviour. + Die kortpad '%1' is meer as een keer gedefinieer. Dit kan lei tot onverwagte gedrag. - Already defined shortcut - Reeds gedefinieerde kortpad + Already defined shortcut + Reeds gedefinieerde kortpad - The shortcut '%1' is already assigned to '%2'. + The shortcut '%1' is already assigned to '%2'. Please define another shortcut. - Die kortpad '%1' is reeds toegeken aan '%2'. -Definieer asseblief 'n ander kortpad. + Die kortpad '%1' is reeds toegeken aan '%2'. +Definieer asseblief 'n ander kortpad. - - + + Gui::Dialog::DlgCustomToolBoxbarsImp - Toolbox bars - Gereedskapskisbalke + Toolbox bars + Gereedskapskisbalke - - + + Gui::Dialog::DlgCustomToolbars - Toolbars - Nutsbalke + Toolbars + Nutsbalke - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> Die veranderinge word aktief die volgende keer wat jy die gepaste werkbank gebruik</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> Die veranderinge word aktief die volgende keer wat jy die gepaste werkbank gebruik</p></body></html> - Move right - Skuif na regs + Move right + Skuif na regs - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Beweeg die gekose item een vlak neer.</b><p>Dit sal ook die vlak van die oueritem verander.</p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Beweeg die gekose item een vlak neer.</b><p>Dit sal ook die vlak van die oueritem verander.</p> - Move left - Skuif na links + Move left + Skuif na links - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Beweeg die gekose item een vlak op.</b><p>Dit sal ook die vlak van die oueritem verander.</p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Beweeg die gekose item een vlak op.</b><p>Dit sal ook die vlak van die oueritem verander.</p> - Move down - Skuif neer + Move down + Skuif neer - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Beweeg die gekose item neer.</b><p>Die item sal geskuif word binne die hiërargie vlak.</p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Beweeg die gekose item neer.</b><p>Die item sal geskuif word binne die hiërargie vlak.</p> - Move up - Skuif op + Move up + Skuif op - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Beweeg die gekose item op.</b><p>Die item sal geskuif word binne die hiërargie vlak.</p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Beweeg die gekose item op.</b><p>Die item sal geskuif word binne die hiërargie vlak.</p> - New... - Nuwe... + New... + Nuwe... - Rename... - Hernoem... + Rename... + Hernoem... - Delete - Vee uit + Delete + Vee uit - Icon - Ikoon + Icon + Ikoon - Command - Bevel + Command + Bevel - <Separator> - <Verdeler> + <Separator> + <Verdeler> - New toolbar - Nuwe nutsbalk + New toolbar + Nuwe nutsbalk - Toolbar name: - Nutsbalknaam: + Toolbar name: + Nutsbalknaam: - Duplicated name - Gedupliseerde naam + Duplicated name + Gedupliseerde naam - The toolbar name '%1' is already used - Die nutsbalknaam '%1' is reeds in gebruik + The toolbar name '%1' is already used + Die nutsbalknaam '%1' is reeds in gebruik - Rename toolbar - Hernoem nutsbalk + Rename toolbar + Hernoem nutsbalk - - + + - - + + Gui::Dialog::DlgCustomizeImp - Customize - Pas aan + Customize + Pas aan - &Help - &Help + &Help + &Help - &Close - &Maak toe + &Close + &MaakToe - - + + Gui::Dialog::DlgCustomizeSpaceball - Spaceball - Spaceball + Spaceball + Ruimtebal - No Spaceball Present - No Spaceball Present + No Spaceball Present + Geen ruimtebal aanwesig - Buttons - Buttons + Buttons + Knoppies - Clear - Maak skoon + Clear + Maak skoon - Print Reference - Print Reference + Print Reference + Druk Verwysing - - + + Gui::Dialog::DlgDisplayProperties - Display properties - Vertoon eienskappe + Display properties + Vertoon eienskappe - Display - Vertoon + Display + Vertoon - Transparency: - Deursigtigheid: + Transparency: + Deursigtigheid: - Line width: - Lynwydte: + Line width: + Lynwydte: - Point size: - Puntgrootte: + Point size: + Puntgrootte: - Material - Materiaal + Material + Materiaal - ... - ... + ... + ... - Close - Maak toe + Close + Maak toe - Viewing mode - Besigtingsmodus + Viewing mode + Besigtingsmodus - Display mode: - Vertoningsmodus: + Plot mode: + Plotmodus: - Plot mode: - Plotmodus: + + - - + Line transparency: + Lyndeursigtigheid: - Line transparency: - Lyndeursigtigheid: + Line color: + Lynkleur: - Line color: - Lynkleur: + Shape color: + Vormkleur: - Shape color: - Vormkleur: + Color plot: + Kleurplot: - Color plot: - Color plot: + Document window: + Document window: - - Document window: - - - - + + Gui::Dialog::DlgEditorSettings - Editor - Redakteur + Editor + Redakteur - Options - Opsies + Options + Opsies - Enable line numbers - Aktiveer lynnommers + Enable line numbers + Aktiveer lynnommers - Enable folding - Aktiveer vouing + Enable folding + Aktiveer vouing - Indentation - Verskuiwing + Indentation + Verskuiwing - Insert spaces - Voeg spasies in + Insert spaces + Voeg spasies in - Tab size: - Spronggrootte: + Tab size: + Spronggrootte: - Indent size: - Verskuiwinggrootte: + Indent size: + Verskuiwinggrootte: - Keep tabs - Behou spronge + Keep tabs + Behou spronge - Display Items - Wys items + Display Items + Wys items - Family: - Familie: + Family: + Familie: - Size: - Grootte: + Size: + Grootte: - Preview: - Voorskou: + Preview: + Voorskou: - - + + - - + + Gui::Dialog::DlgGeneral - General - Algemeen + General + Algemeen - Start up - Begin + Start up + Begin - Enable splash screen at start up - Aktiveer introduksiebeeld gedurende programaanvang + Enable splash screen at start up + Aktiveer introduksiebeeld gedurende programaanvang - Switch to tab of report window: - Slaan oor na die blad van die rapporteringsvenster: + Switch to tab of report window: + Slaan oor na die blad van die rapporteringsvenster: - Auto load module after start up: - Autolaai module na programaanvang: + Auto load module after start up: + Autolaai module na programaanvang: - Language - Taal + Language + Taal - Change language: - Verander taal: + Change language: + Verander taal: - Main window - Hoofvenster + Main window + Hoofvenster - Size of recent file list - Grootte van onlangse lêerlys + Size of recent file list + Grootte van onlangse lêerlys - Window style: - Vensterstyl: + Window style: + Vensterstyl: - Size of toolbar icons: - Size of toolbar icons: + Size of toolbar icons: + Grote van die nutsbalkikone: - - + + Gui::Dialog::DlgGeneralImp - Default (%1 x %1) - Default (%1 x %1) + Default (%1 x %1) + Verstek (%1 x %1) - Small (%1 x %1) - Small (%1 x %1) + Small (%1 x %1) + Klein (%1 x %1) - Large (%1 x %1) - Large (%1 x %1) + Large (%1 x %1) + Groot (%1 x %1) - Extra large (%1 x %1) - Extra large (%1 x %1) + Extra large (%1 x %1) + Baie groot (%1 x %1) - - + + Gui::Dialog::DlgInputDialog - Input - Invoer + Input + Invoer - OK - Goed + OK + Goed - Cancel - Kanselleer + Cancel + Kanselleer - - + + - - + + Gui::Dialog::DlgInspector - Scene Inspector - Toneelinspekteur + Scene Inspector + Toneelinspekteur - - + + Gui::Dialog::DlgMacroExecute - Execute macro - Voer makro uit + Execute macro + Voer makro uit - Macro name: - Makronaam: + Macro name: + Makronaam: - Macro destination: - Makrobestemming: + Macro destination: + Makrobestemming: - Execute - Voer uit + Execute + Voer uit - Close - Maak toe + Close + Maak toe - Create - Skep + Create + Skep - Delete - Vee uit + Delete + Vee uit - Edit - Wysig + Edit + Wysig - - + + Gui::Dialog::DlgMacroExecuteImp - Macros - Makros + Macros + Makros - Macro file - Makro-lêer + Macro file + Makro-lêer - Enter a file name, please: - Gee 'n lêernaam, asseblief: + Enter a file name, please: + Gee 'n lêernaam, asseblief: - Existing file - Bestaande lêer + Existing file + Bestaande lêer - '%1'. + '%1'. This file already exists. - '%1'. + '%1'. Hierdie lêer bestaan reeds. - Delete macro - Verwyder makro + Delete macro + Verwyder makro - Do you really want to delete the macro '%1'? - Wil jy regtig die makro '%1' verwyder? + Do you really want to delete the macro '%1'? + Wil jy regtig die makro '%1' verwyder? - Cannot create file - Kan nie lêer skep nie + Cannot create file + Kan nie lêer skep nie - Creation of file '%1' failed. - Wat is hierdie? + Creation of file '%1' failed. + Wat is hierdie? - - + + Gui::Dialog::DlgMacroRecord - Macro recording - Makro-opname + Macro recording + Makro-opname - Macro name: - Makronaam: + Macro name: + Makronaam: - Stop - Stop + Stop + Stop - Cancel - Kanselleer + Cancel + Kanselleer - Macro path: - Makropad: + Macro path: + Makropad: - ... - ... + ... + ... - Record - Neem op + Record + Neem op - - + + Gui::Dialog::DlgMacroRecordImp - Macro recorder - Makro-opnemer + Macro recorder + Makro-opnemer - Specify first a place to save. - Spesifiseer eers waar om te spaar. + Specify first a place to save. + Spesifiseer eers waar om te spaar. - Existing macro - Bestaande makro + Existing macro + Bestaande makro - The macro '%1' already exists. Do you want to overwrite? - Die makro '%1' bestaan reeds. Wil jy hom vervang? + The macro '%1' already exists. Do you want to overwrite? + Die makro '%1' bestaan reeds. Wil jy hom vervang? - The macro directory doesn't exist. Please, choose another one. - Die makrogids bestaan nie. Kies asseblief 'n ander een. + The macro directory doesn't exist. Please, choose another one. + Die makrogids bestaan nie. Kies asseblief 'n ander een. - Choose macro directory - Kies makrogids + Choose macro directory + Kies makrogids - - + + Gui::Dialog::DlgMaterialProperties - Material properties - Materiaaleienskappe + Material properties + Materiaaleienskappe - &Close - &Maak toe + &Close + &MaakToe - Alt+C - Alt+C + Alt+C + Alt+C - Material - Materiaal + Material + Materiaal - Diffuse color: - Diffuse kleur: + Diffuse color: + Diffuse kleur: - Specular color: - Reflekterende kleur: + Specular color: + Reflekterende kleur: - Shininess: - Blinkheid: + Shininess: + Blinkheid: - % - % + % + % - Ambient color: - Skadukleur: + Ambient color: + Skadukleur: - - + + - Emissive color: - Uitstralende kleur: + Emissive color: + Uitstralende kleur: - - + + Gui::Dialog::DlgOnlineHelp - On-line help - Internethulp + On-line help + Internethulp - Help viewer - Hulpbeskouer + Help viewer + Hulpbeskouer - Location of start page - Ligging van tuisblad + Location of start page + Ligging van tuisblad - - + + Gui::Dialog::DlgOnlineHelpImp - HTML files (*.html *.htm) - HTML-lêers (*.html *.htm) + HTML files (*.html *.htm) + HTML-lêers (*.html *.htm) - Access denied - Toegang geweier + Access denied + Toegang geweier - Access denied to '%1' + Access denied to '%1' Specify another directory, please. - Toegang geweier vir '%1' -Spesifiseer asseblief 'n ander gids. + Toegang geweier vir '%1' +Spesifiseer asseblief 'n ander gids. - - + + Gui::Dialog::DlgParameter - Parameter Editor - Parameter Wysiger + Parameter Editor + Parameter Wysiger - Save to disk - Stoor op skyf + Save to disk + Stoor op skyf - Alt+C - Alt+C + Alt+C + Alt+C - &Close - &Maak toe + &Close + &MaakToe - - + + Gui::Dialog::DlgParameterImp - Group - Groep + Group + Groep - Name - Naam + Name + Naam - Type - Soort + Type + Soort - Value - Waarde + Value + Waarde - User parameter - Gebruikersparameter + User parameter + Gebruikersparameter - Invalid input - Ongeldige inset + Invalid input + Ongeldige inset - Invalid key name '%1' - Ongeldige sleutelnaam '%1' + Invalid key name '%1' + Ongeldige sleutelnaam '%1' - System parameter - Stelselparameter + System parameter + Stelselparameter - - + + Gui::Dialog::DlgPreferences - Preferences - Voorkeure + Preferences + Voorkeure - &Help - &Help + &Help + &Help - Alt+H - Alt+H + Alt+H + Alt+H - &OK - &Goedgekeur + &OK + &Goedgekeur - &Apply - &Pas toe + &Apply + &Pas toe - Alt+A - Alt+A + Alt+A + Alt+A - &Cancel - &Kanselleer + &Cancel + &Kanselleer - - + + - - + + Gui::Dialog::DlgPreferencesImp - Wrong parameter - Verkeerde parameter + Wrong parameter + Verkeerde parameter - - + + Gui::Dialog::DlgProjectInformation - Project information - Projekinformasie + Project information + Projekinformasie - Information - Inligting + Information + Inligting - &Name: - &Naam: + &Name: + &Naam: - Commen&t: - &Kommentaar: + Commen&t: + &Kommentaar: - Path: - Pad: + Path: + Pad: - &Last modified by: - &Laas verander deur: + &Last modified by: + &Laas verander deur: - Created &by: - &Geskep deur: + Created &by: + &Geskep deur: - Com&pany: - &Maatskappy: + Com&pany: + &Maatskappy: - Last &modification date: - &Laaste veranderingsdatum: + Last &modification date: + &Laaste veranderingsdatum: - Creation &date: - &Skeppingsdatum: + Creation &date: + &Skeppingsdatum: - &OK - &Goedgekeur + &OK + &Goedgekeur - &Cancel - &Kanselleer + &Cancel + &Kanselleer - - + + - - + + Gui::Dialog::DlgProjectUtility - Project utility - Project utility + Project utility + Projekwerktuig - Extract project - Extract project + Extract project + Ekstraheer projek - Source - Source + Source + Bron - Project file (*.fcstd) - Project file (*.fcstd) + Project file (*.fcstd) + Projeklêer (*.fcstd) - Destination - Destination + Destination + Bestemming - Extract - Extract + Extract + Ekstraheer - Create project - Create project + Create project + Skep projek - Document.xml - Document.xml + Document.xml + Dokument.xml - Create - Skep + Create + Skep - Load project file after creation - Load project file after creation + Load project file after creation + Laai projeklêer na skepping - Empty source - Empty source + Empty source + Leë bron - No source is defined. - No source is defined. + No source is defined. + Geen bron is gedefinieer nie. - Empty destination - Empty destination + Empty destination + Leë bestemming - No destination is defined. - No destination is defined. + No destination is defined. + Geen bestemming is gedefinieer nie. - - + + Gui::Dialog::DlgReportView - Output window - Resultaatvenster + Output window + Resultaatvenster - Output - Resultaat + Output + Resultaat - Record log messages - Stoor opgawesboodskappe + Record log messages + Stoor opgawesboodskappe - Record warnings - Stoor waarskuwings + Record warnings + Stoor waarskuwings - Record error messages - Stoor foutboodskappe + Record error messages + Stoor foutboodskappe - Colors - Kleure + Colors + Kleure - Normal messages: - Algemene boodskappe: + Normal messages: + Algemene boodskappe: - Log messages: - Opgawesboodskappe: + Log messages: + Opgawesboodskappe: - Warnings: - Waarskuwings: + Warnings: + Waarskuwings: - Errors: - Foute: + Errors: + Foute: - - + + - Redirect internal Python errors to report view - Herlei interne Python foute na die rapportvenster + Redirect internal Python errors to report view + Herlei interne Python foute na die rapportvenster - Redirect internal Python output to report view - Redirect internal Python output to report view + Redirect internal Python output to report view + Kanaliseer die interne Python uitset na rapportaansig - - + + Gui::Dialog::DlgRunExternal - Running external program - Loop eksterne program + Running external program + Loop eksterne program - TextLabel - TeksEtiket + TextLabel + TeksEtiket - Advanced >> - Gevorderd >> + Advanced >> + Gevorderd >> - ... - ... + ... + ... - Accept changes - Aanvaar veranderinge + Accept changes + Aanvaar veranderinge - Discard changes - Laat vaar veranderinge + Discard changes + Laat vaar veranderinge - Abort program - Stop program + Abort program + Stop program - Help - Hulp + Help + Hulp - Select a file - Kies 'n lêer + Select a file + Kies 'n lêer - - + + Gui::Dialog::DlgSettings3DView - 3D View - 3D-aansig + 3D View + 3D-aansig - 3D View settings - 3D-aansig instellings + 3D View settings + 3D-aansig instellings - Show coordinate system in the corner - Wys koördinaatstelsel in die hoek + Show coordinate system in the corner + Wys koördinaatstelsel in die hoek - Show counter of frames per second - Wys rame per sekonde teller + Show counter of frames per second + Wys rame per sekonde teller - Enable animation - Aktiveer animasie + Enable animation + Aktiveer animasie - Enable anti-aliasing (slower) - Aktiveer kantversagting (stadiger) + Enable anti-aliasing (slower) + Aktiveer kantversagting (stadiger) - Eye to eye distance for stereo modes: - Oog-na-oog afstand vir stereomodusse: + Eye to eye distance for stereo modes: + Oog-na-oog afstand vir stereomodusse: - Camera type - Kamerasoort + Camera type + Kamerasoort - Orthographic rendering - Ortografiese weergawe + Orthographic rendering + Ortografiese weergawe - Perspective rendering - Perspektief weergawe + Perspective rendering + Perspektief weergawe - - + + - 3D Navigation - 3D Navigasie + 3D Navigation + 3D Navigasie - Mouse... - Muis... + Mouse... + Muis... - Intensity of backlight - Intensiteit van die agterlig + Intensity of backlight + Intensiteit van die agterlig - Enable backlight color - Aktiveer agterligkleur + Enable backlight color + Aktiveer agterligkleur - Orbit style - Orbit style + Orbit style + Wentelbaanstyl - Turntable - Turntable + Turntable + Draaitafel - Trackball - Trackball + Trackball + Spoorbal - Invert zoom - Invert zoom + Invert zoom + Omgekeerde vergroting - Zoom at cursor - + Zoom at cursor + Zoom at cursor - Zoom step - + Zoom step + Zoom step - - + + Gui::Dialog::DlgSettings3DViewImp - %1 navigation - %1 navigasie + %1 navigation + %1 navigasie - - + + Gui::Dialog::DlgSettingsColorGradient - Color model - Kleurmodel + Color model + Kleurmodel - &Gradient: - &Gradiënt: + &Gradient: + &Gradiënt: - red-yellow-green-cyan-blue - rooi-geel-groen-siaan-blou + red-yellow-green-cyan-blue + rooi-geel-groen-siaan-blou - blue-cyan-green-yellow-red - blou-siaan-groen-geel-rooi + blue-cyan-green-yellow-red + blou-siaan-groen-geel-rooi - white-black - wit-swart + white-black + wit-swart - black-white - swart-wit + black-white + swart-wit - Visibility - Sigbaarheid + Visibility + Sigbaarheid - Out g&rayed - &Uitvergrys + Out g&rayed + &Uitvergrys - Alt+R - Alt+R + Alt+R + Alt+R - Out &invisible - &Uitonsigbaar + Out &invisible + &Uitonsigbaar - Alt+I - Alt+I + Alt+I + Alt+I - Style - Styl + Style + Styl - &Zero - &Nul + &Zero + &Nul - Alt+Z - Alt+Z + Alt+Z + Alt+Z - &Flow - &Vloei + &Flow + &Vloei - Alt+F - Alt+F + Alt+F + Alt+F - &OK - &Goedgekeur + &OK + &Goedgekeur - &Cancel - &Kanselleer + &Cancel + &Kanselleer - Parameter range - Parameteromvang + Parameter range + Parameteromvang - Mi&nimum: - &Minimum: + Mi&nimum: + &Minimum: - Ma&ximum: - &Maximum: + Ma&ximum: + &Maximum: - &Labels: - &Etikette: + &Labels: + &Etikette: - &Decimals: - &Desimale: + &Decimals: + &Desimale: - - + + - Color-gradient settings - Kleurgradiënt instellings + Color-gradient settings + Kleurgradiënt instellings - - + + Gui::Dialog::DlgSettingsColorGradientImp - Wrong parameter - Verkeerde parameter + Wrong parameter + Verkeerde parameter - The maximum value must be higher than the minimum value. - Die maksimum waarde moet hoër wees as die minimum waarde. + The maximum value must be higher than the minimum value. + Die maksimum waarde moet hoër wees as die minimum waarde. - - + + Gui::Dialog::DlgSettingsDocument - Document - Dokument + Document + Dokument - General - Algemeen + General + Algemeen - Document save compression level + Document save compression level (0 = none, 9 = highest, 3 = default) - Kompressievlak vir dokumentstoring + Kompressievlak vir dokumentstoring (0 = geen, 9 = hoogste, 3 = versuimwaarde) - Create new document at start up - Skep nuwe dokument tydens programaanvang + Create new document at start up + Skep nuwe dokument tydens programaanvang - Storage - Stoorplek + Storage + Stoorplek - Saving transactions (Auto-save) - Stoor transaksies (Autospaar) + Saving transactions (Auto-save) + Stoor transaksies (Autospaar) - Discard saved transaction after saving document - Vee gestoorde transaksie uit na dokument gestoor is + Discard saved transaction after saving document + Vee gestoorde transaksie uit na dokument gestoor is - Save thumbnail into project file when saving document - Stoor miniatuurvoorskou in projeklêer wanneer dokument gestoor word + Save thumbnail into project file when saving document + Stoor miniatuurvoorskou in projeklêer wanneer dokument gestoor word - Create up to backup files when resaving document - Skep rugsteunlêers wanneer dokument weer gestoor word + Create up to backup files when resaving document + Skep rugsteunlêers wanneer dokument weer gestoor word - Document objects - Dokumentvoorwerpe + Document objects + Dokumentvoorwerpe - Allow duplicate object labels in one document - Laat duplikaat voorwerpetikette toe in een dokument + Allow duplicate object labels in one document + Laat duplikaat voorwerpetikette toe in een dokument - Maximum Undo/Redo steps - Maximum Undo/Redo steps + Maximum Undo/Redo steps + Maksimum ontdoen/herdoen stappe - Using Undo/Redo on documents - Using Undo/Redo on documents + Using Undo/Redo on documents + Gebruik van ontdoen/herdoen in dokumente - - + + Gui::Dialog::DlgSettingsEditorImp - Text - Teks + Text + Teks - Bookmark - Boekmerk + Bookmark + Boekmerk - Breakpoint - Breekpunt + Breakpoint + Breekpunt - Keyword - Sleutelwoord + Keyword + Sleutelwoord - Comment - Opmerking + Comment + Opmerking - Block comment - Blok kommentaar + Block comment + Blok kommentaar - Number - Syfer + Number + Syfer - String - String + String + String - Character - Karakter + Character + Karakter - Class name - Klasnaam + Class name + Klasnaam - Define name - Definieer naam + Define name + Definieer naam - Operator - Operateur + Operator + Operateur - Python output - Python resultaat + Python output + Python resultaat - Python error - Python fout + Python error + Python fout - Items - Items + Items + Items - Current line highlight - + Current line highlight + Current line highlight - - + + Gui::Dialog::DlgSettingsImage - Image settings - Beeldinstellings + Image settings + Beeldinstellings - Image properties - Beeldeienskappe + Image properties + Beeldeienskappe - Back&ground: - &Agtergrond: + Back&ground: + &Agtergrond: - Current - Huidige + Current + Huidige - White - Wit + White + Wit - Black - Swart + Black + Swart - Transparent - Deursigtig + Transparent + Deursigtig - Image dimensions - Beelddimensies + Image dimensions + Beelddimensies - Pixel - Beeldelement + Pixel + Beeldelement - &Width: - &Wydte: + &Width: + &Wydte: - Current screen - Huidige skerm + Current screen + Huidige skerm - Icon 32 x 32 - Ikoon 32 x 32 + Icon 32 x 32 + Ikoon 32 x 32 - Icon 64 x 64 - Ikoon 64 x 64 + Icon 64 x 64 + Ikoon 64 x 64 - Icon 128 x 128 - Ikoon 128 x 128 + Icon 128 x 128 + Ikoon 128 x 128 - CGA 320 x 200 - CGA 320 x 200 + CGA 320 x 200 + CGA 320 x 200 - QVGA 320 x 240 - QVGA 320 x 240 + QVGA 320 x 240 + QVGA 320 x 240 - VGA 640 x 480 - VGA 640 x 480 + VGA 640 x 480 + VGA 640 x 480 - NTSC 720 x 480 - NTSC 720 x 480 + NTSC 720 x 480 + NTSC 720 x 480 - PAL 768 x 578 - PAL 768 x 578 + PAL 768 x 578 + PAL 768 x 578 - SVGA 800 x 600 - SVGA 800 x 600 + SVGA 800 x 600 + SVGA 800 x 600 - XGA 1024 x 768 - XGA 1024 x 768 + XGA 1024 x 768 + XGA 1024 x 768 - HD720 1280 x 720 - HD720 1280 x 720 + HD720 1280 x 720 + HD720 1280 x 720 - SXGA 1280 x 1024 - SXGA 1280 x 1024 + SXGA 1280 x 1024 + SXGA 1280 x 1024 - SXGA+ 1400 x 1050 - SXGA + 1400 x 1050 + SXGA+ 1400 x 1050 + SXGA + 1400 x 1050 - UXGA 1600 x 1200 - UXGA 1600 x 1200 + UXGA 1600 x 1200 + UXGA 1600 x 1200 - HD1080 1920 x 1080 - HD1080 1920 x 1080 + HD1080 1920 x 1080 + HD1080 1920 x 1080 - WUXGA 1920 x 1200 - WUXGA 1920 x 1200 + WUXGA 1920 x 1200 + WUXGA 1920 x 1200 - QXGA 2048 x 1538 - QXGA 2048 x 1538 + QXGA 2048 x 1538 + QXGA 2048 x 1538 - WQXGA 2560 x 1600 - WQXGA 2560 x 1600 + WQXGA 2560 x 1600 + WQXGA 2560 x 1600 - QSXGA 2560 x 2048 - QSXGA 2560 x 2048 - - - QUXGA 3200 × 2400 - QUXGA 3200 × 2400 - - - HUXGA 6400 × 4800 - HUXGA 6400 × 4800 + QSXGA 2560 x 2048 + QSXGA 2560 x 2048 - !!! 10000 x 10000 - !!! 10000 x 10000 + QUXGA 3200 × 2400 + QUXGA 3200 × 2400 - Standard sizes: - Standaardgroottes: + HUXGA 6400 × 4800 + HUXGA 6400 × 4800 - &Height: - &Hoogte: + !!! 10000 x 10000 + !!! 10000 x 10000 - Aspect ratio: - Vormverhouding: + Standard sizes: + Standaardgroottes: - &Screen - &Skerm + &Height: + &Hoogte: - Alt+S - Alt+S + Aspect ratio: + Vormverhouding: - &4:3 - &4:3 + &Screen + &Skerm - Alt+4 - Alt+4 + Alt+S + Alt+S - 1&6:9 - 1&6:9 + &4:3 + &4:3 - Alt+6 - Alt+6 + Alt+4 + Alt+4 - &1:1 - &1:1 + 1&6:9 + 1&6:9 - Alt+1 - Alt+1 + Alt+6 + Alt+6 - Image comment - Beeldkommentaar + &1:1 + &1:1 - Insert MIBA - Voeg MIBA in + Alt+1 + Alt+1 - Insert comment - Voeg opmerking in + Image comment + Beeldkommentaar - - + + Insert MIBA + Voeg MIBA in + + + Insert comment + Voeg opmerking in + + + Gui::Dialog::DlgSettingsMacro - Macro - Makro + Macro + Makro - Macro recording settings - Makro-opname instellings + Macro recording settings + Makro-opname instellings - Logging Commands - Noteer bevele + Logging Commands + Noteer bevele - Show script commands in python console - Wys bevele in pythonvenster + Show script commands in python console + Wys bevele in pythonvenster - Log all commands issued by menus to file: - Noteer alle bevele vanuit kieslyse na lêer: + Log all commands issued by menus to file: + Noteer alle bevele vanuit kieslyse na lêer: - FullScript.FCScript - FullScript.FCScript + FullScript.FCScript + FullScript.FCScript - Gui commands - Grafiese Gebruikerskoppelvlak (GGKV) instruksies + Gui commands + Grafiese Gebruikerskoppelvlak (GGKV) instruksies - Recording GUI commands - Neem Grafiese Gebruikerskoppelvlak (GGKV) instruksies op + Recording GUI commands + Neem Grafiese Gebruikerskoppelvlak (GGKV) instruksies op - Record as comment - Neem op as opmerking + Record as comment + Neem op as opmerking - Macro path - Makropad + Macro path + Makropad - General macro settings - + General macro settings + General macro settings - Run macros in local environment - + Run macros in local environment + Run macros in local environment - - + + Gui::Dialog::DlgSettingsUnits - Units - Eenhede + Units + Eenhede - Units settings - Eenheidsinstellings + Units settings + Eenheidsinstellings - Standard (mm/kg/s/degree) - Standaard (mm/kg/s/graad) + Standard (mm/kg/s/degree) + Standaard (mm/kg/s/graad) - MKS (m/kg/s/degree) - MKS (m/kg/s/graad) + MKS (m/kg/s/degree) + MKS (m/kg/s/graad) - Magnitude - Grootte + Magnitude + Grootte - Unit - Eenheid + Unit + Eenheid - User system: - Gebruikerstelsel: + User system: + Gebruikerstelsel: - Imperial (in/lb) - Engelse eenhede (duim/pond) + Imperial (in/lb) + Engelse eenhede (duim/pond) - - + + Gui::Dialog::DlgSettingsViewColor - Colors - Kleure + Colors + Kleure - Selection - Seleksie + Selection + Seleksie - Enable selection highlighting - Aktiveer seleksieverligting + Enable selection highlighting + Aktiveer seleksieverligting - Enable preselection highlighting - Aktiveer seleksieverligting + Enable preselection highlighting + Aktiveer seleksieverligting - Background color - Agtergrond kleur + Background color + Agtergrond kleur - Middle color - Middelste kleur + Middle color + Middelste kleur - Color gradient - Kleurgradient + Color gradient + Kleurgradient - Simple color - Eenvoudige kleur + Simple color + Eenvoudige kleur - Default colors - Default colors + Default colors + Verstekkleure - Edited edge color - Edited edge color + Edited edge color + Gewysigde kantkleur - Edited vertex color - Edited vertex color + Edited vertex color + Gewysigde hoekpuntkleur - Construction geometry - Construction geometry + Construction geometry + Konstruksiegeometrie - Fully constrained geometry - Fully constrained geometry + Fully constrained geometry + Ten volle beperkte geometrie - The color of construction geometry in editmode - The color of construction geometry in editmode + The color of vertices being edited + Die kleur van hoekpunte wat gewysig word - The color of fully constrained geometry in editmode - The color of fully constrained geometry in editmode + The color of edges being edited + Die kleur van kante wat gewysig word - The color of vertices being edited - The color of vertices being edited + The color of construction geometry in edit mode + The color of construction geometry in edit mode - The color of edges being edited - The color of edges being edited + The color of fully constrained geometry in edit mode + The color of fully constrained geometry in edit mode - The color of construction geometry in edit mode - + Cursor text color + Cursor text color - The color of fully constrained geometry in edit mode - + Default shape color + Default shape color - Cursor text color - + The default color for new shapes + The default color for new shapes - Default shape color - + Default line width and color + Default line width and color - The default color for new shapes - + The default line color for new shapes + The default line color for new shapes - Default line width and color - + The default line thickness for new shapes + The default line thickness for new shapes - The default line color for new shapes - + px + px - - The default line thickness for new shapes - - - - px - - - - + + Gui::Dialog::DlgTipOfTheDay - Tip of the day - Wenk van die dag + Tip of the day + Wenk van die dag - <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> - <b><font face="Times New Roman"><font size="+3">Het jy geweet...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Het jy geweet...</font></font></b> - &Show tips at start up - &Wys wenke tydens programaanvang + &Show tips at start up + &Wys wenke tydens programaanvang - Alt+S - Alt+S + Alt+S + Alt+S - &Next Tip - &Volgende Wenk + &Next Tip + &Volgende Wenk - Alt+N - Alt+N + Alt+N + Alt+N - &Close - &Maak toe + &Close + &MaakToe - Alt+C - Alt+C + Alt+C + Alt+C - - + + - - + + Gui::Dialog::DlgTipOfTheDayImp - Download failed: %1 + Download failed: %1 - Aflaai het misluk: '%1' + Aflaai het misluk: '%1' - If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. - As jy meer wil weet oor FreeCAD moet jy gaan na '%1' of druk die Help item in die Hulpkieslys. + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + As jy meer wil weet oor FreeCAD moet jy gaan na '%1' of druk die Help item in die Hulpkieslys. - - + + Gui::Dialog::DockablePlacement - Placement - Plasing + Placement + Plasing - - + + Gui::Dialog::DownloadDialog - Canceled. - Canceled. + Download + Download - Download - + Cancel + Kanselleer - Cancel - Kanselleer + Close + Maak toe - Close - Maak toe + There already exists a file called %1 in the current directory. Overwrite? + There already exists a file called %1 in the current directory. Overwrite? - There already exists a file called %1 in the current directory. Overwrite? - + Unable to save the file %1: %2. + Unable to save the file %1: %2. - Unable to save the file %1: %2. - + Downloading %1. + Downloading %1. - Downloading %1. - + Download canceled. + Download canceled. - Download canceled. - + Download failed: %1. + Aflaai het misluk: '%1'. - Download failed: %1. - Aflaai het misluk: '%1'. + Downloaded %1 to current directory. + Downloaded %1 to current directory. - - Downloaded %1 to current directory. - - - - + + Gui::Dialog::IconDialog - Add icon - Add icon + Add icon + Voeg ikoon by - - + + Gui::Dialog::InputVector - Input vector - Invoervektor + Input vector + Invoervektor - Vector - Vektor + Vector + Vektor - Z: - Z: + Z: + Z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - OK - Goed + OK + Goed - - + + Gui::Dialog::LicenseDialog - Copyright - + Copyright + Copyright - - + + Gui::Dialog::MouseButtons - Mouse buttons - Muisknoppies + Mouse buttons + Muisknoppies - Configuration - Opstelling + Configuration + Opstelling - Selection: - Seleksie: + Selection: + Seleksie: - Panning - Panorama + Panning + Panorama - Rotation: - Rotasie: + Rotation: + Rotasie: - Zooming: - Nabyheid: + Zooming: + Nabyheid: - - + + Gui::Dialog::ParameterGroup - Expand - Brei uit + Expand + Brei uit - Add sub-group - Voeg subgroep by + Add sub-group + Voeg subgroep by - Remove group - Verwyder groep + Remove group + Verwyder groep - Rename group - Hernoem groep + Rename group + Hernoem groep - Export parameter - Voer parameter uit + Export parameter + Voer parameter uit - Import parameter - Voer parameter in + Import parameter + Voer parameter in - Collapse - Stort ineen + Collapse + Stort ineen - Do really want to remove this parameter group? - Wil jy regtig hierdie parametergroep verwyder? + Do really want to remove this parameter group? + Wil jy regtig hierdie parametergroep verwyder? - Existing sub-group - Bestaande subgroep + Existing sub-group + Bestaande subgroep - The sub-group '%1' already exists. - Die subgroep '%1' bestaan reeds. + The sub-group '%1' already exists. + Die subgroep '%1' bestaan reeds. - Export parameter to file - Voer parameter uit na 'n lêer + Export parameter to file + Voer parameter uit na 'n lêer - XML (*.FCParam) - XML (*.FCParam) + XML (*.FCParam) + XML (*.FCParam) - Import parameter from file - Voer parameter in van lêer + Import parameter from file + Voer parameter in van lêer - Import Error - Invoer Fout + Import Error + Invoer Fout - Reading from '%1' failed. - Lees van '%1' het misluk. + Reading from '%1' failed. + Lees van '%1' het misluk. - - + + Gui::Dialog::ParameterValue - Change value - Verander waarde + Change value + Verander waarde - Remove key - Verwyder sleutel + Remove key + Verwyder sleutel - Rename key - Hernoem sleutel + Rename key + Hernoem sleutel - New - Nuwe + New + Nuwe - New string item - Nuwe stringitem + New string item + Nuwe stringitem - New float item - Nuwe dryfitem + New float item + Nuwe dryfitem - New integer item - Nuwe heelgetalitem + New integer item + Nuwe heelgetalitem - New unsigned item - Nuwe onondertekende item + New unsigned item + Nuwe onondertekende item - New Boolean item - Nuwe Boole-item + New Boolean item + Nuwe Boole-item - Existing item - Bestaande item + Existing item + Bestaande item - The item '%1' already exists. - Die item '%1' bestaan reeds. + The item '%1' already exists. + Die item '%1' bestaan reeds. - - + + Gui::Dialog::Placement - Placement - Plasing + Placement + Plasing - OK - Goed + OK + Goed - Translation: - Omsetting: + Translation: + Omsetting: - Z: - Z: + Z: + Z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - Rotation: - Rotasie: + Rotation: + Rotasie: - Angle: - Hoek: + Angle: + Hoek: - Axis: - As: + Axis: + As: - Center: - Sentreer: + Center: + Sentreer: - Pitch: - Styghoek: + Pitch: + Styghoek: - Roll: - Kantelhoek: + Roll: + Kantelhoek: - Yaw: - Rigtinghoek: + Yaw: + Rigtinghoek: - Rotation axis with angle - Rotation axis with angle + Rotation axis with angle + Roteer as met hoek - Euler angles - Eulerhoeke + Euler angles + Eulerhoeke - Apply placement changes immediately - Pas plasingveranderings onmiddellik toe + Apply placement changes immediately + Pas plasingveranderings onmiddellik toe - Apply incremental changes to object placement - Pas inkrementele veranderinge toe met die plasing van die voorwerp + Apply incremental changes to object placement + Pas inkrementele veranderinge toe met die plasing van die voorwerp - Apply - Pas toe + Apply + Pas toe - Reset - Herstel + Reset + Herstel - Close - Maak toe + Close + Maak toe - - + + Gui::Dialog::PrintModel - Button - Button + Button + Knoppie - Command - Bevel + Command + Bevel - - + + Gui::Dialog::SceneInspector - Dialog - Dialoog + Dialog + Dialoog - Close - Maak toe + Close + Maak toe - Refresh - Verfris + Refresh + Verfris - - + + Gui::Dialog::SceneModel - Inventor Tree - Uitvinderboom + Inventor Tree + Uitvinderboom - Nodes - Knooppunte + Nodes + Knooppunte - - + + Gui::Dialog::TextureMapping - Texture - Tekstuur + Texture + Tekstuur - Texture mapping - Tekstuurkartering + Texture mapping + Tekstuurkartering - Global - Globaal + Global + Globaal - Environment - Omgewing + Environment + Omgewing - Image files (%1) - Beeldlêers (%1) + Image files (%1) + Beeldlêers (%1) - No image - Geen beeld + No image + Geen beeld - The specified file is not a valid image file. - Die gespesifiseerde lêer is nie 'n geldige beeldlêer nie. + The specified file is not a valid image file. + Die gespesifiseerde lêer is nie 'n geldige beeldlêer nie. - No 3d view - Geen 3D aansig + No 3d view + Geen 3D aansig - No active 3d view found. - Geen aktiewe 3D aansig gevind nie. + No active 3d view found. + Geen aktiewe 3D aansig gevind nie. - - + + Gui::Dialog::Transform - Cancel - Kanselleer + Cancel + Kanselleer - Transform - Omskep + Transform + Omskep - - + + Gui::DlgTreeWidget - Dialog - Dialoog + Dialog + Dialoog - Items - Items + Items + Items - OK - Goed + OK + Goed - Cancel - Kanselleer + Cancel + Kanselleer - - + + - - + + Gui::DockWnd::CombiView - CombiView - SaamgesteldeVoorkoms + CombiView + SaamgesteldeVoorkoms - Project - Projek + Project + Projek - Tasks - Take + Tasks + Take - - + + Gui::DockWnd::HelpView - Previous - Vorige + Previous + Vorige - Next - Volgende + Next + Volgende - Home - Tuis + Home + Tuis - Open - Maak oop + Open + Maak oop - Open file - Maak lêer oop + Open file + Maak lêer oop - All HTML files (*.html *.htm) - Alle HTML-lêers (*.html *.htm) + All HTML files (*.html *.htm) + Alle HTML-lêers (*.html *.htm) - External browser - Eksterne leser + External browser + Eksterne leser - No external browser found. Specify in preferences, please - Geen eksterne leser gevind nie. Spesifiseer asseblief in die voorkeure + No external browser found. Specify in preferences, please + Geen eksterne leser gevind nie. Spesifiseer asseblief in die voorkeure - Starting of %1 failed - Begin van '%1' het misluk + Starting of %1 failed + Begin van '%1' het misluk - - + + Gui::DockWnd::PropertyDockView - Property View - Eiendomsaansig + Property View + Eiendomsaansig - - + + Gui::DockWnd::ReportOutput - Logging - Opgawe + Logging + Opgawe - Warning - Waarskuwing + Warning + Waarskuwing - Error - Fout + Error + Fout - Options - Opsies + Options + Opsies - Clear - Maak skoon + Clear + Maak skoon - Save As... - Stoor as... + Save As... + Stoor as... - Save Report Output - Stoor Rapportresultaat + Save Report Output + Stoor Rapportresultaat - Plain Text Files (*.txt *.log) - Eenvoudige Tekslêers (*.txt *.log) + Plain Text Files (*.txt *.log) + Eenvoudige Tekslêers (*.txt *.log) - Go to end - Gaan na die einde + Go to end + Gaan na die einde - Redirect Python output - Redirect Python output + Redirect Python output + Kanaliseer Python uitset - Redirect Python errors - Herlei Python foute + Redirect Python errors + Herlei Python foute - - + + Gui::DockWnd::ReportView - Output - Resultaat + Output + Resultaat - Python console - Pythonkonsole + Python console + Pythonkonsole - - + + Gui::DockWnd::SelectionView - Property View - Eiendomsaansig + Property View + Eiendomsaansig - - + + Gui::DockWnd::TaskPanelView - Task View - Taakaansig + Task View + Taakaansig - - + + Gui::DockWnd::TextBrowser - Could not open file. - Kon nie lêer oopmaak nie. + Could not open file. + Kon nie lêer oopmaak nie. - You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. - Jy het probeer om die adres '%1' wat tans onbeskikbaar is, oop te maak. Maak asseblief seker dat die URL bestaan, en probeer die blad herlaai. + You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. + Jy het probeer om die adres '%1' wat tans onbeskikbaar is, oop te maak. Maak asseblief seker dat die URL bestaan, en probeer die blad herlaai. - Connecting to %1 - Verbind met '%1' + Connecting to %1 + Verbind met '%1' - Sending to %1 - Stuur na '%1' + Sending to %1 + Stuur na '%1' - Reading from %1 - Lees van '%1' + Reading from %1 + Lees van '%1' - Download failed: %1. - Aflaai het misluk: '%1'. + Download failed: %1. + Aflaai het misluk: '%1'. - Previous - Vorige + Previous + Vorige - Forward - Vorentoe + Forward + Vorentoe - Home - Tuis + Home + Tuis - Refresh - Verfris + Refresh + Verfris - Copy - Kopieer + Copy + Kopieer - Select all - Kies alles + Select all + Kies alles - No description for - Geen beskrywing vir + No description for + Geen beskrywing vir - - + + Gui::DocumentModel - Application - Toepassing + Application + Toepassing - Labels & Attributes - Etikette & Eienskappe + Labels & Attributes + Etikette & Eienskappe - - + + Gui::EditorView - Modified file - Gewysigde lêer + Modified file + Gewysigde lêer - %1. + %1. This has been modified outside of the source editor. Do you want to reload it? - '%1'. + '%1'. Dit is verander buite die bronwysiger. Wil jy dit herlaai? - Unsaved document - Ongestoorde dokument + Unsaved document + Ongestoorde dokument - The document has been modified. + The document has been modified. Do you want to save your changes? - Die dokument is verander. + Die dokument is verander. Wil jy jou veranderinge stoor? - FreeCAD macro (*.FCMacro);;Python (*.py) - FreeCAD makro (*.FCMacro); Python (*.py) + FreeCAD macro (*.FCMacro);;Python (*.py) + FreeCAD makro (*.FCMacro); Python (*.py) - Export PDF - Stoor na PDF + Export PDF + Stoor na PDF - PDF file (*.pdf) - PDF-lêer (*.pdf) + PDF file (*.pdf) + PDF-lêer (*.pdf) - untitled[*] - ongetiteld[*] + untitled[*] + ongetiteld[*] - - Editor - -Wysiger + - Editor + -Wysiger - %1 chars removed - %1 karakters verwyder + %1 chars removed + %1 karakters verwyder - %1 chars added - %1 karakters bygevoeg + %1 chars added + %1 karakters bygevoeg - Formatted - Geformateer + Formatted + Geformateer - - + + Gui::FileChooser - Select a file - Kies 'n lêer + Select a file + Kies 'n lêer - Select a directory - Kies 'n gids + Select a directory + Kies 'n gids - - + + Gui::FileDialog - Save as - Stoor as + Save as + Stoor as - Open - Maak oop + Open + Maak oop - - + + Gui::FileOptionsDialog - Extended - Uitgebrei + Extended + Uitgebrei - All files (*.*) - Alle lêers (*.*) + All files (*.*) + Alle lêers (*.*) - - + + Gui::Flag - Top left - Bo links + Top left + Bo links - Bottom left - Onder links + Bottom left + Onder links - Top right - Bo regs + Top right + Bo regs - Bottom right - Onder regs + Bottom right + Onder regs - Remove - Verwyder + Remove + Verwyder - - + + Gui::InventorNavigationStyle - Press CTRL and left mouse button - Druk CTRL en linker muisknoppie + Press CTRL and left mouse button + Druk CTRL en linker muisknoppie - Press middle mouse button - Druk middelste muisknoppie + Press middle mouse button + Druk middelste muisknoppie - Press left mouse button - Druk linker muisknoppie + Press left mouse button + Druk linker muisknoppie - Scroll middle mouse button - Blaai neer met middelste muisknoppie + Scroll middle mouse button + Blaai neer met middelste muisknoppie - - + + Gui::LocationDialog - Wrong direction - Verkeerde rigting + Wrong direction + Verkeerde rigting - Direction must not be the null vector - Rigting moet nie die nul vektor wees nie + Direction must not be the null vector + Rigting moet nie die nul vektor wees nie - X - X + X + X - Y - Y + Y + Y - Z - Z + Z + Z - User defined... - Gebruikergedefinieerd... + User defined... + Gebruikergedefinieerd... - - + + Gui::LocationWidget - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - Z: + Z: + Z: - Direction: - + Direction: + Rigting: - - + + Gui::MacroCommand - Macros - Makros + Macros + Makros - - + + Gui::MainWindow - Dimension - Dimensioneer + Dimension + Dimensioneer - Ready - Gereed + Ready + Gereed - Toggles this toolbar - Aktiveer/Inaktiveer die nutsbalk + Toggles this toolbar + Aktiveer/Inaktiveer die nutsbalk - Toggles this dockable window - Aktiveer/inaktiveer hierdie ingebedde venster + Toggles this dockable window + Aktiveer/inaktiveer hierdie ingebedde venster - Close All - Maak alles toe + Close All + Maak alles toe - - + + Gui::ManualAlignment - Manual alignment - + Manual alignment + Manual alignment - The alignment is already in progress. - + The alignment is already in progress. + The alignment is already in progress. - Alignment[*] - + Alignment[*] + Alignment[*] - Please, select at least one point in the left and the right view - + Please, select at least one point in the left and the right view + Please, select at least one point in the left and the right view - Please, select at least %1 points in the left and the right view - + Please, select at least %1 points in the left and the right view + Please, select at least %1 points in the left and the right view - Please pick points in the left and right view - + Please pick points in the left and right view + Please pick points in the left and right view - The alignment has finished - + The alignment has finished + The alignment has finished - The alignment has been canceled - + The alignment has been canceled + The alignment has been canceled - Too few points picked in the left view. At least %1 points are needed. - + Too few points picked in the left view. At least %1 points are needed. + Too few points picked in the left view. At least %1 points are needed. - Too few points picked in the right view. At least %1 points are needed. - + Too few points picked in the right view. At least %1 points are needed. + Too few points picked in the right view. At least %1 points are needed. - Different number of points picked in left and right view. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Different number of points picked in left and right view. +On the left view %1 points are picked, +on the right view %2 points are picked. - Try to align group of views - + Try to align group of views + Try to align group of views - The alignment failed. + The alignment failed. How do you want to proceed? - + The alignment failed. +How do you want to proceed? - Retry - + Retry + Retry - Ignore - + Ignore + Ignoreer - Abort - + Abort + Abort - Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - Point picked at (%1,%2,%3) - + Point picked at (%1,%2,%3) + Point picked at (%1,%2,%3) - No point was picked - + No point was picked + No point was picked - - + + Gui::NetworkRetriever - Download started... + Download started... - Aflaai het begin... + Aflaai het begin... - - + + Gui::ProgressBar - Remaining: %1 - Oorblywende: %1 + Remaining: %1 + Oorblywende: %1 - Aborting - Staak + Aborting + Staak - Do you really want to abort the operation? - Wil jy regtig die aksie staak? + Do you really want to abort the operation? + Wil jy regtig die aksie staak? - - + + Gui::ProgressDialog - Remaining: %1 - Oorblywende: %1 + Remaining: %1 + Oorblywende: %1 - Aborting - Staak + Aborting + Staak - Do you really want to abort the operation? - Wil jy regtig die aksie staak? + Do you really want to abort the operation? + Wil jy regtig die aksie staak? - - + + Gui::PropertyEditor::PropertyModel - Property - Eienskap + Property + Eienskap - Value - Waarde + Value + Waarde - - + + Gui::PropertyView - View - Voorkoms + View + Voorkoms - Data - Data + Data + Data - - + + Gui::PythonConsole - System exit - Verlaat stelsel + System exit + Verlaat stelsel - The application is still running. + The application is still running. Do you want to exit without saving your data? - Die program loop nog. + Die program loop nog. Wil jy afsluit sonder om jou data te stoor? - Python console - Pythonkonsole + Python console + Pythonkonsole - Unhandled PyCXX exception. - Ongehanteerde PyCXX uitsondering. + Unhandled PyCXX exception. + Ongehanteerde PyCXX uitsondering. - Unhandled FreeCAD exception. - Ongehanteerde FreeCAD uitsondering. + Unhandled FreeCAD exception. + Ongehanteerde FreeCAD uitsondering. - Unhandled unknown C++ exception. - Ongehanteerde onbekende C++ uitsondering. + Unhandled unknown C++ exception. + Ongehanteerde onbekende C++ uitsondering. - &Copy command - &Kopieer bevel + &Copy command + &Kopieer bevel - &Copy history - &Kopieer geskiedenis + &Copy history + &Kopieer geskiedenis - Save history as... - Stoor geskiedenis as... + Save history as... + Stoor geskiedenis as... - Insert file name... - Gee lêernaam... + Insert file name... + Gee lêernaam... - Save History - Stoor geskiedenis + Save History + Stoor geskiedenis - Macro Files (*.FCMacro *.py) - Makro-lêers (*.FCMacro *.py) + Macro Files (*.FCMacro *.py) + Makro-lêers (*.FCMacro *.py) - Insert file name - Gee lêernaam + Insert file name + Gee lêernaam - All Files (*.*) - Alle lêers (*.*) + All Files (*.*) + Alle lêers (*.*) - Python Input Dialog - Python Invoer Dialoog + Python Input Dialog + Python Invoer Dialoog - Unhandled std C++ exception. - Ongehanteerde std C++ uitsondering. + Unhandled std C++ exception. + Ongehanteerde std C++ uitsondering. - Word wrap - Woordomvouding + Word wrap + Woordomvouding - &Copy - &Kopieer + &Copy + &Kopieer - &Paste - &Plak + &Paste + &Plak - Select All - Kies alles + Select All + Kies alles - Clear console - + Clear console + Clear console - - + + Gui::PythonEditor - Comment - Opmerking + Comment + Opmerking - Uncomment - Verwyder opmerking + Uncomment + Verwyder opmerking - - + + Gui::PythonInputField - OK - Goed + OK + Goed - Clear - Maak skoon + Clear + Maak skoon - - + + Gui::RecentFilesAction - Open file %1 - Maak lêer '%1' oop + Open file %1 + Maak lêer '%1' oop - File not found - Lêer nie gevind nie + File not found + Lêer nie gevind nie - The file '%1' cannot be opened. - Die lêer '%1' kan nie oopgemaak word nie. + The file '%1' cannot be opened. + Die lêer '%1' kan nie oopgemaak word nie. - - + + Gui::SelectModule - Select module - Kies module + Select module + Kies module - Open %1 as - Maak '%1' oop as + Open %1 as + Maak '%1' oop as - Select - Kies + Select + Kies - - + + Gui::StdCmdDescription - Help - Hulp + Help + Hulp - Des&cription - &Beskrywing + Des&cription + &Beskrywing - Long description of commands - Lang beskrywing van bevele + Long description of commands + Lang beskrywing van bevele - - + + Gui::StdCmdDownloadOnlineHelp - Help - Hulp + Help + Hulp - Download online help - Laai internethulp af + Download online help + Laai internethulp af - Download %1's online help - Laai %1 se internethulp af + Download %1's online help + Laai %1 se internethulp af - Non-existing directory - Gids bestaan nie + Non-existing directory + Gids bestaan nie - The directory '%1' does not exist. + The directory '%1' does not exist. Do you want to specify an existing directory? - Die gids '%1' bestaan nie. -Wil jy 'n bestaande gids spesifiseer? + Die gids '%1' bestaan nie. +Wil jy 'n bestaande gids spesifiseer? - Missing permission - Toestemming ontbreek + Missing permission + Toestemming ontbreek - You don't have write permission to '%1' + You don't have write permission to '%1' Do you want to specify another directory? - Jy het nie toestemming om te skryf na '%1' nie -Wil jy 'n ander gids aangee? + Jy het nie toestemming om te skryf na '%1' nie +Wil jy 'n ander gids aangee? - Stop downloading - Stop aflaai + Stop downloading + Stop aflaai - - + + Gui::StdCmdPythonHelp - Tools - Gereedskap + Tools + Gereedskap - Python Modules - Pythonmodules + Python Modules + Pythonmodules - Opens a browser to show the Python modules - Maak 'n leser oop om die Pythonmodules te wys + Opens a browser to show the Python modules + Maak 'n leser oop om die Pythonmodules te wys - - + + Gui::TaskBoxAngle - Angle - Hoek + Angle + Hoek - - + + Gui::TaskBoxPosition - Position - Posisie + Position + Posisie - - + + Gui::TaskView::TaskAppearance - Display mode: - Vertoningsmodus: + Plot mode: + Plotmodus: - Plot mode: - Plotmodus: + Point size: + Puntgrootte: - Point size: - Puntgrootte: + Line width: + Lynwydte: - Line width: - Lynwydte: + Transparency: + Deursigtigheid: - Transparency: - Deursigtigheid: + Appearance + Voorkoms - Appearance - Voorkoms + Document window: + Document window: - - Document window: - - - - + + Gui::TaskView::TaskEditControl - Edit - Wysig + Edit + Wysig - - + + Gui::TaskView::TaskSelectLinkProperty - Appearance - Voorkoms + Appearance + Voorkoms - ... - ... + ... + ... - edit selection - Wysig seleksie + edit selection + Wysig seleksie - - + + Gui::TouchpadNavigationStyle - Press left mouse button - Druk linker muisknoppie + Press left mouse button + Druk linker muisknoppie - Press SHIFT button - + Press SHIFT button + Press SHIFT button - Press ALT button - + Press ALT button + Press ALT button - Press PgUp/PgDown button - + Press PgUp/PgDown button + Press PgUp/PgDown button - - - Gui::Translator - - English - Engels - - - + + Gui::TreeDockWidget - Tree view - Boomvoorkoms + Tree view + Boomvoorkoms - - + + Gui::TreeWidget - Create group... - Skep groep ... + Create group... + Skep groep ... - Create a group - Skep 'n groep + Create a group + Skep 'n groep - Group - Groep + Group + Groep - Rename - Hernoem + Rename + Hernoem - Rename object - Hernoem voorwerp + Rename object + Hernoem voorwerp - Labels & Attributes - Etikette & Eienskappe + Labels & Attributes + Etikette & Eienskappe - Application - Toepassing + Application + Toepassing - Finish editing - Klaar gewysig + Finish editing + Klaar gewysig - Finish editing object - Voltooi voorwerpwysiging + Finish editing object + Voltooi voorwerpwysiging - Activate document - Aktiveer dokument + Activate document + Aktiveer dokument - Activate document %1 - Aktiveer dokument %1 + Activate document %1 + Aktiveer dokument %1 - - + + Gui::View3DInventor - Export PDF - Stoor na PDF + Export PDF + Stoor na PDF - PDF file (*.pdf) - PDF-lêer (*.pdf) + PDF file (*.pdf) + PDF-lêer (*.pdf) - - + + Gui::WorkbenchGroup - Select the '%1' workbench - Kies die '%1' werkbank + Select the '%1' workbench + Kies die '%1' werkbank - - + + Position - Form - Vorm + Form + Vorm - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - Z: + Z: + Z: - 0.1 mm - 0,1 mm + 0.1 mm + 0,1 mm - 0.5 mm - 0,5 mm + 0.5 mm + 0,5 mm - 1 mm - 1 mm + 1 mm + 1 mm - 2 mm - 2 mm + 2 mm + 2 mm - 5 mm - 5 mm + 5 mm + 5 mm - 10 mm - 10 mm + 10 mm + 10 mm - 20 mm - 20 mm + 20 mm + 20 mm - 50 mm - 50 mm + 50 mm + 50 mm - 100 mm - 100 mm + 100 mm + 100 mm - 200 mm - 200 mm + 200 mm + 200 mm - 500 mm - 500 mm + 500 mm + 500 mm - 1 m - 1 m + 1 m + 1 m - 2 m - 2 m + 2 m + 2 m - 5 m - 5 m + 5 m + 5 m - Grid Snap in - Gidslynvashegting + Grid Snap in + Gidslynvashegting - - + + QDockWidget - Tree view - Boomvoorkoms + Tree view + Boomvoorkoms - Property view - Eiendomsaansig + Property view + Eiendomsaansig - Selection view - Seleksieaansig + Selection view + Seleksieaansig - Report view - Rapportaansig + Report view + Rapportaansig - Task View - Taakaansig + Task View + Taakaansig - Combo View - Saamgestelde aansig + Combo View + Saamgestelde aansig - Toolbox - Gereedskapskis + Toolbox + Gereedskapskis - Python console - Pythonkonsole + Python console + Pythonkonsole - Display properties - Vertoon eienskappe + Display properties + Vertoon eienskappe - - + + QObject - General - Algemeen + General + Algemeen - Display - Vertoon + Display + Vertoon - Unknown filetype - Onbekende lêersoort + Unknown filetype + Onbekende lêersoort - Cannot open unknown filetype: %1 - Kan nie onbekende lêersoort oop maak nie: '%1' + Cannot open unknown filetype: %1 + Kan nie onbekende lêersoort oop maak nie: '%1' - Cannot save to unknown filetype: %1 - Kan nie stoor na 'n onbekende lêersoort nie: '%1' + Cannot save to unknown filetype: %1 + Kan nie stoor na 'n onbekende lêersoort nie: '%1' - Workbench failure - Werkbankmislukking + Workbench failure + Werkbankmislukking - %1 - %1 + %1 + %1 - Unable to launch Qt Assistant (%1) - Kan nie Qt-assistent (%1) lanseer nie + Unable to launch Qt Assistant (%1) + Kan nie Qt-assistent (%1) lanseer nie - Exception - Uitsondering + Exception + Uitsondering - Open document - Maak dokument oop + Open document + Maak dokument oop - Import file - Voer lêer in + Import file + Voer lêer in - Export file - Voer lêer uit + Export file + Voer lêer uit - Printing... - Druk tans... + Printing... + Druk tans... - Cannot load workbench - Kan nie werkbank laai nie + Cannot load workbench + Kan nie werkbank laai nie - A general error occurred while loading the workbench - 'n Algemene fout het voorgekom tydens die laai van die werkbank + A general error occurred while loading the workbench + 'n Algemene fout het voorgekom tydens die laai van die werkbank - File not found - Lêer nie gevind nie + Save views... + Stoor aansigte... - Cannot open file %1 - Kan nie lêer '%1' oop maak nie + Load views... + Laai aansigte... - Save views... - Stoor aansigte... + Freeze view + Vries aansig - Load views... - Laai aansigte... + Clear views + Maak aansigte skoon - Freeze view - Vries aansig + Restore view &%1 + Herstel aansig &%1 - Clear views - Maak aansigte skoon + Save frozen views + Stoor gevriesde aansigte - Restore view &%1 - Herstel aansig &%1 + Frozen views (*.cam) + Bevrore aansigte (*.cam) - Save frozen views - Stoor gevriesde aansigte + Restore views + Herstel aansigte - Frozen views (*.cam) - Bevrore aansigte (*.cam) - - - Restore views - Herstel aansigte - - - Importing the restored views would clear the already stored views. + Importing the restored views would clear the already stored views. Do you want to continue? - Die invoer van die herstelde aansigte verwyder die reeds gestoorde aansigte. Wil jy voortgaan? + Die invoer van die herstelde aansigte verwyder die reeds gestoorde aansigte. Wil jy voortgaan? - Restore frozen views - Herstel bevrore aansigte + Restore frozen views + Herstel bevrore aansigte - Cannot open file '%1'. - Kan nie lêer '%1' oop maak nie. + Cannot open file '%1'. + Kan nie lêer '%1' oop maak nie. - Docked - Vasgekoppel + Docked + Vasgekoppel - Undocked - Losgekoppel + Undocked + Losgekoppel - Fullscreen - Volskerm + Fullscreen + Volskerm - files - lêers + files + lêers - Save picture - Stoor beeld + Save picture + Stoor beeld - New sub-group - Nuwe subgroep + New sub-group + Nuwe subgroep - Enter the name: - Gee die naam: + Enter the name: + Gee die naam: - New text item - Nuwe teksitem + New text item + Nuwe teksitem - Enter your text: - Gee jou teks: + Enter your text: + Gee jou teks: - New integer item - Nuwe heelgetalitem + New integer item + Nuwe heelgetalitem - Enter your number: - Gee jou nommer: + Enter your number: + Gee jou nommer: - New unsigned item - Nuwe onondertekende item + New unsigned item + Nuwe onondertekende item - New float item - Nuwe dryfitem + New float item + Nuwe dryfitem - New Boolean item - Nuwe Boole-item + New Boolean item + Nuwe Boole-item - Choose an item: - Kies 'n item: + Choose an item: + Kies 'n item: - Rename group - Hernoem groep + Rename group + Hernoem groep - The group '%1' cannot be renamed. - Die groep '%1' kan nie hernoem word nie. + The group '%1' cannot be renamed. + Die groep '%1' kan nie hernoem word nie. - Existing group - Bestaande groep + Existing group + Bestaande groep - The group '%1' already exists. - Die groep '%1' bestaan reeds. + The group '%1' already exists. + Die groep '%1' bestaan reeds. - Change value - Verander waarde + Change value + Verander waarde - Save document under new filename... - Stoor dokument onder 'n nuwe lêernaam ... + Save document under new filename... + Stoor dokument onder 'n nuwe lêernaam ... - Saving aborted - Storing gestaak + Saving aborted + Storing gestaak - Unsaved document - Ongestoorde dokument + Unsaved document + Ongestoorde dokument - Save document before close? - Stoor dokument voor jy dit toe maak? + Save document before close? + Stoor dokument voor jy dit toe maak? - Save Macro - Stoor Makro + Save Macro + Stoor Makro - Finish - Voltooi + Finish + Voltooi - Clear - Maak skoon + Clear + Maak skoon - Cancel - Kanselleer + Cancel + Kanselleer - Inner - Binneste + Inner + Binneste - Outer - Buitenste + Outer + Buitenste - No Browser - Geen Leser + No Browser + Geen Leser - Unable to open your browser. + Unable to open your browser. Please open a browser window and type in: http://localhost:%1. - Kan nie jou webleser oop maak nie. -Maak asb. 'n leservenster oop en tik in http://localhost:%1 + Kan nie jou webleser oop maak nie. +Maak asb. 'n leservenster oop en tik in http://localhost:%1 - No Server - Geen Bediener + No Server + Geen Bediener - Unable to start the server to port %1: %2. - Nie in staat om die bediener te begin na poort %1:%2 nie. + Unable to start the server to port %1: %2. + Nie in staat om die bediener te begin na poort %1:%2 nie. - Unable to open your system browser. - Nie in staat om stelselleser oop te maak nie. + Unable to open your system browser. + Nie in staat om stelselleser oop te maak nie. - Options... - Opsies... + Options... + Opsies... - Out of memory - Onvoldoende geheue + Out of memory + Onvoldoende geheue - Not enough memory available to display the data. - Nie genoeg geheue is beskikbaar om die data te vertoon nie. + Not enough memory available to display the data. + Nie genoeg geheue is beskikbaar om die data te vertoon nie. - Cannot find file %1 - Kan nie lêer '%1' vind nie + Cannot find file %1 + Kan nie lêer '%1' vind nie - Cannot find file %1 neither in %2 nor in %3 - Kan nie lêer '%1' vind nie, nie in '%2' of '%3' nie + Cannot find file %1 neither in %2 nor in %3 + Kan nie lêer '%1' vind nie, nie in '%2' of '%3' nie - Save %1 Document - Stoor '%1' Dokument + Save %1 Document + Stoor '%1' Dokument - %1 document (*.FCStd) - %1-dokument (*.FCStd) + %1 document (*.FCStd) + %1-dokument (*.FCStd) - Save As - Stoor as + Save As + Stoor as - %1 already exists. + %1 already exists. Do you want to replace it? - %1 bestaan reeds. Wil jy dit vervang? + %1 bestaan reeds. Wil jy dit vervang? - Document not closable - Dokument nie toemaakbaar nie + Document not closable + Dokument nie toemaakbaar nie - The document is not closable for the moment. - Die dokument is huidiglik nie toemaakbaar nie. + The document is not closable for the moment. + Die dokument is huidiglik nie toemaakbaar nie. - No OpenGL - Geen OpenGL + No OpenGL + Geen OpenGL - This system does not support OpenGL - Hierdie stelsel ondersteun nie OpenGL nie + This system does not support OpenGL + Hierdie stelsel ondersteun nie OpenGL nie - Help - Hulp + Help + Hulp - Unable to load documentation. + Unable to load documentation. In order to load it Qt 4.4 or higher is required. - Kan nie dokumentasie laai nie. + Kan nie dokumentasie laai nie. Om dit te laai word Qt 4.4 of hoër benodig. - %1 Help - %1 Hulp + %1 Help + %1 Hulp - Exporting PDF... - Voer PDF uit... + Exporting PDF... + Voer PDF uit... - Wrong selection - Verkeerde keuse + Wrong selection + Verkeerde keuse - Only one object selected. Please select two objects. + Only one object selected. Please select two objects. Be aware the point where you click matters. - Slegs een voorwerp gekies. Kies asseblief twee. + Slegs een voorwerp gekies. Kies asseblief twee. Wees bewus dat die plek waar jy kliek belangrik is. - Please select two objects. + Please select two objects. Be aware the point where you click matters. - Kies asseblief twee voorwerpe. + Kies asseblief twee voorwerpe. Wees bewus dat die punt waar jy kliek belangrik is. - New boolean item - Nuwe Boole-item + New boolean item + Nuwe Boole-item - Navigation styles - Navigasiestyle + Navigation styles + Navigasiestyle - %1 navigation - %1 navigasie + %1 navigation + %1 navigasie - Move annotation - Skuif annotasie + Move annotation + Skuif annotasie - Transform - Omskep + Transform + Omskep - The document is in editing mode and thus cannot be closed for the moment. + The document is in editing mode and thus cannot be closed for the moment. You either have to finish or cancel the editing in the task panel. - The document is in editing mode and thus cannot be closed for the moment. -You either have to finish or cancel the editing in the task panel. + Die dokument is in wysigingsmodus en kan dus nie op die oomblik gesluit word nie. Jy moet wysiging afsluit of kanselleer in die taakpaneel. - - + + StdBoxSelection - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Box selection - + Box selection + Box selection - - + + StdCmdAbout - Help - Hulp + Help + Hulp - &About %1 - &Aangaande %1 + &About %1 + &Aangaande %1 - About %1 - Aangaande %1 + About %1 + Aangaande %1 - - + + StdCmdAboutQt - Help - Hulp + Help + Hulp - About &Qt - &Aangaande Qt + About &Qt + &Aangaande Qt - About Qt - Aangaande Qt + About Qt + Aangaande Qt - - + + StdCmdActivateNextWindow - Window - Venster + Window + Venster - Ne&xt - &Volgende + Ne&xt + &Volgende - Activate next window - Aktiveer volgende venster + Activate next window + Aktiveer volgende venster - - + + StdCmdActivatePrevWindow - Window - Venster + Window + Venster - Pre&vious - &Vorige + Pre&vious + &Vorige - Activate previous window - Aktiveer vorige venster + Activate previous window + Aktiveer vorige venster - - + + StdCmdAlignment - Edit - Wysig + Edit + Wysig - Alignment... - + Alignment... + Alignment... - Align the selected objects - + Align the selected objects + Align the selected objects - - + + StdCmdArrangeIcons - Window - Venster + Window + Venster - Arrange &Icons - &Organiseer Ikone + Arrange &Icons + &Organiseer Ikone - Arrange Icons - Organiseer Ikone + Arrange Icons + Organiseer Ikone - - + + StdCmdAxisCross - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Toggle axis cross - Toggle axis cross + Toggle axis cross + Wissel askruising - - + + StdCmdCascadeWindows - Window - Venster + Window + Venster - &Cascade - &Kaskade + &Cascade + &Kaskade - Tile pragmatic - Teël pragmaties + Tile pragmatic + Teël pragmaties - - + + StdCmdCloseActiveWindow - Window - Venster + Window + Venster - Cl&ose - &Maak toe + Cl&ose + &Maak toe - Close active window - Maak aktiewe venster toe + Close active window + Maak aktiewe venster toe - - + + StdCmdCloseAllWindows - Window - Venster + Window + Venster - Close Al&l - &Maak alles toe + Close Al&l + &Maak alles toe - Close all windows - Maak alle vensters toe + Close all windows + Maak alle vensters toe - - + + StdCmdCommandLine - Tools - Gereedskap + Tools + Gereedskap - Start command &line... - &Begin bevelmodus... + Start command &line... + &Begin bevelmodus... - Opens the command line in the console - Maak bevelmodus oop in die konsool + Opens the command line in the console + Maak bevelmodus oop in die konsool - - + + StdCmdCopy - Edit - Wysig + Edit + Wysig - C&opy - &Kopieer + C&opy + &Kopieer - Copy operation - Kopieer verwerking + Copy operation + Kopieer verwerking - - + + StdCmdCut - Edit - Wysig + Edit + Wysig - &Cut - &Knip + &Cut + &Knip - Cut out - Knip uit + Cut out + Knip uit - - - StdCmdDDuplicateSelection - - Edit - Wysig - - - Duplicate selection - Duplikaatseleksie - - - Put duplicates of the selected objects to the active document - Plaas duplikate van die geselekteerde voorwerpe in die aktiewe dokument - - - + + StdCmdDelete - Edit - Wysig + Edit + Wysig - &Delete - &Verwyder + &Delete + &Verwyder - Deletes the selected objects - Verwyder die geselekteerde voorwerpe + Deletes the selected objects + Verwyder die geselekteerde voorwerpe - - + + StdCmdDemoMode - Standard-View - Standaardaansig + Standard-View + Standaardaansig - View turntable... - Wys draaitafel... + View turntable... + Wys draaitafel... - View turntable - Wys draaitafel + View turntable + Wys draaitafel - - + + StdCmdDlgCustomize - Tools - Gereedskap + Tools + Gereedskap - Cu&stomize... - &Aanpassing... + Cu&stomize... + &Aanpassing... - Customize toolbars and command bars - Verander nutsbalke and bevelbalke + Customize toolbars and command bars + Verander nutsbalke and bevelbalke - - + + StdCmdDlgMacroExecute - Macros ... - Makros... + Macros ... + Makros... - Opens a dialog to let you execute a recorded macro - Maak 'n dialoog oop om 'n opgeneemde makro uit te voer + Opens a dialog to let you execute a recorded macro + Maak 'n dialoog oop om 'n opgeneemde makro uit te voer - Macro - Makro + Macro + Makro - - + + StdCmdDlgMacroExecuteDirect - Macro - Makro + Macro + Makro - Execute macro - Voer makro uit + Execute macro + Voer makro uit - Execute the macro in the editor - Voer die makro in die wysiger uit + Execute the macro in the editor + Voer die makro in die wysiger uit - - + + StdCmdDlgMacroRecord - &Macro recording ... - &Makro-opname... + &Macro recording ... + &Makro-opname... - Opens a dialog to record a macro - Maak 'n dialoog oop om 'n makro op te neem + Opens a dialog to record a macro + Maak 'n dialoog oop om 'n makro op te neem - Macro - Makro + Macro + Makro - - + + StdCmdDlgParameter - Tools - Gereedskap + Tools + Gereedskap - E&dit parameters ... - &Wysig parameters... + E&dit parameters ... + &Wysig parameters... - Opens a Dialog to edit the parameters - Maak 'n dialoog oop om die parameters te wysig + Opens a Dialog to edit the parameters + Maak 'n dialoog oop om die parameters te wysig - - + + StdCmdDlgPreferences - Tools - Gereedskap + Tools + Gereedskap - &Preferences ... - &Voorkeure... + &Preferences ... + &Voorkeure... - Opens a Dialog to edit the preferences - Maak 'n dialoog oop om die voorkeure te wysig + Opens a Dialog to edit the preferences + Maak 'n dialoog oop om die voorkeure te wysig - - + + StdCmdDockViewMenu - View - Voorkoms + View + Voorkoms - Vie&ws - &Aansigte + Vie&ws + &Aansigte - Toggles this window - Aktiveer/inaktiveer hierdie venster + Toggles this window + Aktiveer/inaktiveer hierdie venster - - + + StdCmdDrawStyle - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Draw style - Draw style + Draw style + Tekenstyl - - + + StdCmdDuplicateSelection - Edit - Wysig + Edit + Wysig - Duplicate selection - Duplikaatseleksie + Duplicate selection + Duplikaatseleksie - Put duplicates of the selected objects to the active document - Plaas duplikate van die geselekteerde voorwerpe in die aktiewe dokument + Put duplicates of the selected objects to the active document + Plaas duplikate van die geselekteerde voorwerpe in die aktiewe dokument - - + + StdCmdEdit - Edit - Wysig + Edit + Wysig - Toggle &Edit mode - + Toggle &Edit mode + Toggle &Edit mode - Toggles the selected object's edit mode - + Toggles the selected object's edit mode + Toggles the selected object's edit mode - Enters or leaves the selected object's edit mode - + Enters or leaves the selected object's edit mode + Enters or leaves the selected object's edit mode - - + + StdCmdExport - File - Lêer + File + Lêer - &Export... - &Voer uit... + &Export... + &Voer uit... - Export an object in the active document - Voer 'n voorwerp in die aktiewe dokument uit + Export an object in the active document + Voer 'n voorwerp in die aktiewe dokument uit - Supported formats - Ondersteunde formate + No selection + Geen keuse - No selection - + Please select first the objects you want to export. + Please select first the objects you want to export. - - Please select first the objects you want to export. - - - - + + StdCmdExportGraphviz - Tools - Gereedskap + Tools + Gereedskap - Dependency graph... - + Dependency graph... + Dependency graph... - Show the dependency graph of the objects in the active document - + Show the dependency graph of the objects in the active document + Show the dependency graph of the objects in the active document - - + + StdCmdFeatRecompute - File - Lêer + File + Lêer - &Recompute - &Herbereken + &Recompute + &Herbereken - Recompute feature or document - Herbereken eienskap of dokument + Recompute feature or document + Herbereken eienskap of dokument - - + + StdCmdFreeCADWebsite - Help - Hulp + Help + Hulp - FreeCAD Website - FreeCAD Webwerf + FreeCAD Website + FreeCAD Webwerf - The FreeCAD website - Die FreeCAD webwerf + The FreeCAD website + Die FreeCAD webwerf - - + + StdCmdFreezeViews - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Freeze display - Vries vertoning + Freeze display + Vries vertoning - Freezes the current view position - Vries die huidige aansigposisie + Freezes the current view position + Vries die huidige aansigposisie - - + + StdCmdHideObjects - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Hide all objects - Verskuil al die voorwerpe + Hide all objects + Verskuil al die voorwerpe - Hide all objects in the document - Verskuil al die voorwerpe in die dokument + Hide all objects in the document + Verskuil al die voorwerpe in die dokument - - + + StdCmdHideSelection - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Hide selection - Verskuil seleksie + Hide selection + Verskuil seleksie - Hide all selected objects - Verskuil al die gekose voorwerpe + Hide all selected objects + Verskuil al die gekose voorwerpe - - + + StdCmdImport - File - Lêer + File + Lêer - &Import... - &Voer in... + &Import... + &Voer in... - Import a file in the active document - Voer 'n lêer in in die aktiewe dokument + Import a file in the active document + Voer 'n lêer in in die aktiewe dokument - Supported formats - Ondersteunde formate + Supported formats + Ondersteunde formate - All files (*.*) - Alle lêers (*.*) + All files (*.*) + Alle lêers (*.*) - - + + StdCmdMacroStartDebug - Macro - Makro + Macro + Makro - Debug macro - Stel foute in die makro reg + Debug macro + Stel foute in die makro reg - Start debugging of macro - Begin om makrofoute te soek + Start debugging of macro + Begin om makrofoute te soek - - + + StdCmdMacroStepOver - Macro - Makro + Macro + Makro - Step over - Spring oor + Step over + Spring oor - - + + StdCmdMacroStopDebug - Macro - Makro + Macro + Makro - Stop debugging - Stop foutsoeking + Stop debugging + Stop foutsoeking - Stop debugging of macro - Stop makrofoutsoeking + Stop debugging of macro + Stop makrofoutsoeking - - + + StdCmdMacroStopRecord - Macro - Makro + Macro + Makro - S&top macro recording - &Stop makro opname + S&top macro recording + &Stop makro opname - Stop the macro recording session - Stop die makro opnamesessie + Stop the macro recording session + Stop die makro opnamesessie - - + + StdCmdMeasureDistance - View - Voorkoms + View + Voorkoms - Measure distance - Meet afstand + Measure distance + Meet afstand - - + + StdCmdMeasurementSimple - Tools - Gereedskap + Tools + Gereedskap - Mesure distance - Meet afstand + Measures distance between two selected objects + Meet afstand tussen twee geselekteerde voorwerpe - Measures distance between two selected objects - Meet afstand tussen twee geselekteerde voorwerpe + Measure distance + Meet afstand - - Measure distance - Meet afstand - - - + + StdCmdMergeProjects - File - Lêer + File + Lêer - Merge project... - Verenig projek ... + Merge project... + Verenig projek ... - Merge project - Verenig projek + Merge project + Verenig projek - %1 document (*.fcstd) - %1 dokument (*.fcstd) + %1 document (*.fcstd) + %1 dokument (*.fcstd) - Cannot merge project with itself. - Kan nie die projek met homself verenig nie. + Cannot merge project with itself. + Kan nie die projek met homself verenig nie. - - + + StdCmdNew - File - Lêer + File + Lêer - &New - &Nuwe + &New + &Nuwe - Create a new empty document - Skep 'n nuwe leë dokument + Create a new empty document + Skep 'n nuwe leë dokument - - + + StdCmdOnlineHelp - Help - Hulp + Help + Hulp - Show help to the application - Wys hulp vir die toepassing + Show help to the application + Wys hulp vir die toepassing - - - StdCmdOnlineHelpPython - - Help - Hulp - - - Python Manuals - Python Handleidings - - - Show the Python documentation - Wys die Python dokumentasie - - - + + StdCmdOnlineHelpWebsite - Help - Hulp + Help + Hulp - Help Website - Hulpwebwerf + Help Website + Hulpwebwerf - The website where the help is maintained - Die webwerf waar die hulp in stand gehou word + The website where the help is maintained + Die webwerf waar die hulp in stand gehou word - - + + StdCmdOpen - File - Lêer + File + Lêer - &Open... - &Maak oop... + &Open... + &Maak oop... - Open a document or import files - Maak 'n dokument oop of voer lêers in + Open a document or import files + Maak 'n dokument oop of voer lêers in - Supported formats - Ondersteunde formate + Supported formats + Ondersteunde formate - All files (*.*) - Alle lêers (*.*) + All files (*.*) + Alle lêers (*.*) - - + + StdCmdPaste - Edit - Wysig + Edit + Wysig - &Paste - &Plak + &Paste + &Plak - Paste operation - Plak operasie + Paste operation + Plak operasie - - + + StdCmdPlacement - Edit - Wysig + Edit + Wysig - Placement... - Plasing... + Placement... + Plasing... - Place the selected objects - Plaseer die geselekteerde objekte + Place the selected objects + Plaseer die geselekteerde objekte - - + + StdCmdPrint - File - Lêer + File + Lêer - &Print... - &Druk... + &Print... + &Druk... - Print the document - Druk die dokument + Print the document + Druk die dokument - - + + StdCmdPrintPdf - File - Lêer + File + Lêer - &Export PDF... - &Stoor na PDF... + &Export PDF... + &Stoor na PDF... - Export the document as PDF - Voer die dokument uit na PDF + Export the document as PDF + Voer die dokument uit na PDF - - + + StdCmdPrintPreview - File - Lêer + File + Lêer - &Print preview... - &Print preview... + &Print preview... + &Druk voorskou... - Print the document - Druk die dokument + Print the document + Druk die dokument - Print preview - Print preview + Print preview + Druk voorskou - - + + StdCmdProjectInfo - File - Lêer + File + Lêer - Project i&nformation... - &Projekinligting... + Project i&nformation... + &Projekinligting... - Show details of the currently active project - Wys besonderhede van die aktiewe projek + Show details of the currently active project + Wys besonderhede van die aktiewe projek - - + + StdCmdProjectUtil - Tools - Gereedskap + Tools + Gereedskap - Project utility... - Project utility... + Project utility... + Projekwerktuig... - Utility to extract or create project files - Utility to extract or create project files + Utility to extract or create project files + Werktuig om projeklêers te ekstraheer of skep - - + + StdCmdPythonWebsite - Help - Hulp + Help + Hulp - Python Website - Python Webwerf + Python Website + Python Webwerf - The official Python website - Die amptelike Python webwerf + The official Python website + Die amptelike Python webwerf - - + + StdCmdQuit - File - Lêer + File + Lêer - E&xit - &Verlaat + E&xit + &Verlaat - Quits the application - Verlaat die toepassing + Quits the application + Verlaat die toepassing - - + + StdCmdRandomColor - File - Lêer + File + Lêer - Random color - Willekeurige kleur + Random color + Willekeurige kleur - - + + StdCmdRecentFiles - File - Lêer + File + Lêer - Recent files - Onlangse lêers + Recent files + Onlangse lêers - Recent file list - Onlangse lêerlys + Recent file list + Onlangse lêerlys - - + + StdCmdRedo - Edit - Wysig + Edit + Wysig - &Redo - &Herdoen + &Redo + &Herdoen - Redoes a previously undone action - Herdoen 'n voorheen ongedane aksie + Redoes a previously undone action + Herdoen 'n voorheen ongedane aksie - - + + StdCmdRefresh - Edit - Wysig + Edit + Wysig - &Refresh - &Verfris + &Refresh + &Verfris - Recomputes the current active document - Herbereken die huidige aktiewe dokument + Recomputes the current active document + Herbereken die huidige aktiewe dokument - - + + StdCmdSave - File - Lêer + File + Lêer - &Save - &Stoor + &Save + &Stoor - Save the active document - Stoor die aktiewe dokument + Save the active document + Stoor die aktiewe dokument - - + + StdCmdSaveAs - File - Lêer + File + Lêer - Save &As... - &Stoor as... + Save &As... + &Stoor as... - Save the active document under a new file name - Stoor die aktiewe dokument onder 'n nuwe lêernaam + Save the active document under a new file name + Stoor die aktiewe dokument onder 'n nuwe lêernaam - - + + StdCmdSceneInspector - Tools - Gereedskap + Tools + Gereedskap - Scene inspector... - Toneelinspekteur... + Scene inspector... + Toneelinspekteur... - Scene inspector - Toneelinspekteur + Scene inspector + Toneelinspekteur - - + + StdCmdSelectAll - Edit - Wysig + Edit + Wysig - Select &All - &Kies alles + Select &All + &Kies alles - Select all - Kies alles + Select all + Kies alles - - + + StdCmdSetAppearance - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Appearance... - Voorkoms ... + Appearance... + Voorkoms ... - Sets the display properties of the selected object - Stel die vertooneienskappe van die gekose objek + Sets the display properties of the selected object + Stel die vertooneienskappe van die gekose objek - - + + StdCmdShowObjects - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Show all objects - Wys alle voorwerpe + Show all objects + Wys alle voorwerpe - Show all objects in the document - Wys alle voorwerpe in die dokument + Show all objects in the document + Wys alle voorwerpe in die dokument - - + + StdCmdShowSelection - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Show selection - Wys seleksie + Show selection + Wys seleksie - Show all selected objects - Wys alle gekose voorwerpe + Show all selected objects + Wys alle gekose voorwerpe - - + + StdCmdStatusBar - View - Voorkoms + View + Voorkoms - Status bar - Statusbalk + Status bar + Statusbalk - Toggles the status bar - Aktiveer/inaktiveer die statusbalk + Toggles the status bar + Aktiveer/inaktiveer die statusbalk - - + + StdCmdTextureMapping - Tools - Gereedskap + Tools + Gereedskap - Texture mapping... - Tekstuurkartering... + Texture mapping... + Tekstuurkartering... - Texture mapping - Tekstuurkartering + Texture mapping + Tekstuurkartering - - + + StdCmdTileWindows - Window - Venster + Window + Venster - &Tile - &Teël + &Tile + &Teël - Tile the windows - Teël die vensters + Tile the windows + Teël die vensters - - + + StdCmdToggleBreakpoint - Macro - Makro + Macro + Makro - Toggle breakpoint - Aktiveer/Inaktiveer Breekpunt + Toggle breakpoint + Aktiveer/Inaktiveer Breekpunt - - + + StdCmdToggleClipPlane - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Clipping plane - Knipvlak + Clipping plane + Knipvlak - Toggles clipping plane for active view - Aktiveer/inaktiveer knipvlak vir aktiewe aansig + Toggles clipping plane for active view + Aktiveer/inaktiveer knipvlak vir aktiewe aansig - - + + StdCmdToggleNavigation - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Toggle navigation/Edit mode - Kies navigasie- of wysigingsmodus + Toggle navigation/Edit mode + Kies navigasie- of wysigingsmodus - Toggle between navigation and edit mode - Skakel tussen die navigasie- en wysigingsmodus + Toggle between navigation and edit mode + Skakel tussen die navigasie- en wysigingsmodus - - + + StdCmdToggleObjects - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Toggle all objects - Aktiveer/inaktiveer alle voorwerpe + Toggle all objects + Aktiveer/inaktiveer alle voorwerpe - Toggles visibility of all objects in the active document - Verander sigbaarheid van al die voorwerpe in die aktiewe dokument + Toggles visibility of all objects in the active document + Verander sigbaarheid van al die voorwerpe in die aktiewe dokument - - + + StdCmdToggleSelectability - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Toggle selectability - Aktiveer/Inaktiveer kiesbaarheid + Toggle selectability + Aktiveer/Inaktiveer kiesbaarheid - Toggles the property of the objects to get selected in the 3D-View - Aktiveer/inaktiveer die eienskap van die voorwerpe om gekies te word in die 3D-aansig + Toggles the property of the objects to get selected in the 3D-View + Aktiveer/inaktiveer die eienskap van die voorwerpe om gekies te word in die 3D-aansig - - + + StdCmdToggleVisibility - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Toggle visibility - Verander sigbaarheid + Toggle visibility + Verander sigbaarheid - Toggles visibility - Verander sigbaarheid + Toggles visibility + Verander sigbaarheid - - + + StdCmdToolBarMenu - View - Voorkoms + View + Voorkoms - Tool&bars - &Nutsbalke + Tool&bars + &Nutsbalke - Toggles this window - Aktiveer/inaktiveer hierdie venster + Toggles this window + Aktiveer/inaktiveer hierdie venster - - + + StdCmdTransform - Edit - Wysig + Edit + Wysig - Transform... - Omskep... + Transform... + Omskep... - Transform the geometry of selected objects - Omskep die geometrie van gekose voorwerpe + Transform the geometry of selected objects + Omskep die geometrie van gekose voorwerpe - - + + StdCmdTreeSelection - View - Voorkoms + View + Voorkoms - Go to selection - Gaan na seleksie + Go to selection + Gaan na seleksie - Scroll to first selected item - Blaai na die eerste geselekteerde item + Scroll to first selected item + Blaai na die eerste geselekteerde item - - + + StdCmdUndo - Edit - Wysig + Edit + Wysig - &Undo - &Herstel + &Undo + &Herstel - Undo exactly one action - Herstel presies een aksie + Undo exactly one action + Herstel presies een aksie - - + + StdCmdUserInterface - View - Voorkoms + View + Voorkoms - Dock views - Koppel aansigte vas + Dock views + Koppel aansigte vas - Dock all top-level views - Koppel alle topvlak aansigte vas + Dock all top-level views + Koppel alle topvlak aansigte vas - - + + StdCmdViewAxo - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Axometric - Aksonometries + Axometric + Aksonometries - Set to axometric view - Ingestel op aksonometriese aansig + Set to axometric view + Ingestel op aksonometriese aansig - - + + StdCmdViewBottom - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Bottom - Bodem + Bottom + Bodem - Set to bottom view - Stel in op onderaansig + Set to bottom view + Stel in op onderaansig - - + + StdCmdViewCreate - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Create new view - Skep nuwe aansig + Create new view + Skep nuwe aansig - Creates a new view window for the active document - Skep 'n nuwe aansigvenster vir die aktiewe dokument + Creates a new view window for the active document + Skep 'n nuwe aansigvenster vir die aktiewe dokument - - + + StdCmdViewExample1 - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Inventor example #1 - Uitvinder voorbeeld #1 + Inventor example #1 + Uitvinder voorbeeld #1 - Shows a 3D texture with manipulator - Toon 'n 3D tekstuur met manipuleerder + Shows a 3D texture with manipulator + Toon 'n 3D tekstuur met manipuleerder - - + + StdCmdViewExample2 - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Inventor example #2 - Uitvinder voorbeeld #2 + Inventor example #2 + Uitvinder voorbeeld #2 - Shows spheres and drag-lights - Wys sfere en sleepligte + Shows spheres and drag-lights + Wys sfere en sleepligte - - + + StdCmdViewExample3 - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Inventor example #3 - Uitvinder voorbeeld #3 + Inventor example #3 + Uitvinder voorbeeld #3 - Shows a animated texture - Wys 'n geanimeerde tekstuur + Shows a animated texture + Wys 'n geanimeerde tekstuur - - + + StdCmdViewFitAll - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Fit all - Pas alles + Fit all + Pas alles - Fits the whole content on the screen - Pas die hele inhoud op die skerm + Fits the whole content on the screen + Pas die hele inhoud op die skerm - - + + StdCmdViewFitSelection - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Fit selection - Pas seleksie + Fit selection + Pas seleksie - Fits the selected content on the screen - Pas die geselekteerde inhoud op die skerm + Fits the selected content on the screen + Pas die geselekteerde inhoud op die skerm - - + + StdCmdViewFront - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Front - Vooraansig + Front + Vooraansig - Set to front view - Ingestel op vooraansig + Set to front view + Ingestel op vooraansig - - + + StdCmdViewIvIssueCamPos - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Issue camera position - Stel kameraposisie + Issue camera position + Stel kameraposisie - Issue the camera position to the console and to a macro, to easily recall this position - Stuur die kameraposisie na die konsool en na 'n makro, om hierdie posisie maklik te onthou + Issue the camera position to the console and to a macro, to easily recall this position + Stuur die kameraposisie na die konsool en na 'n makro, om hierdie posisie maklik te onthou - - + + StdCmdViewIvStereoInterleavedColumns - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Stereo Interleaved Columns - Stereo oorvleuelende kolomme + Stereo Interleaved Columns + Stereo oorvleuelende kolomme - Switch stereo viewing to Interleaved Columns - Verander stereo vertoning na Oorvleuelende Kolomme + Switch stereo viewing to Interleaved Columns + Verander stereo vertoning na Oorvleuelende Kolomme - - + + StdCmdViewIvStereoInterleavedRows - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Stereo Interleaved Rows - Stereo Oorvleuelende Rye + Stereo Interleaved Rows + Stereo Oorvleuelende Rye - Switch stereo viewing to Interleaved Rows - Verander stereo vertoning na Oorvleuelende Rye + Switch stereo viewing to Interleaved Rows + Verander stereo vertoning na Oorvleuelende Rye - - + + StdCmdViewIvStereoOff - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Stereo Off - Stereo Af + Stereo Off + Stereo Af - Switch stereo viewing off - Skakel stereo vertoning af + Switch stereo viewing off + Skakel stereo vertoning af - - + + StdCmdViewIvStereoQuadBuff - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Stereo quad buffer - Stereo viervuldige buffer + Stereo quad buffer + Stereo viervuldige buffer - Switch stereo viewing to quad buffer - Verander stereo beskouing na viervuldige buffer + Switch stereo viewing to quad buffer + Verander stereo beskouing na viervuldige buffer - - + + StdCmdViewIvStereoRedGreen - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Stereo red/green - Stereo rooi/groen + Stereo red/green + Stereo rooi/groen - Switch stereo viewing to red/green - Verander stereo vertoning na rooi/groen + Switch stereo viewing to red/green + Verander stereo vertoning na rooi/groen - - + + StdCmdViewLeft - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Left - Links + Left + Links - Set to left view - Ingestel op linkeraansig + Set to left view + Ingestel op linkeraansig - - + + StdCmdViewRear - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Rear - Agterste + Rear + Agterste - Set to rear view - Stel na agteraansig + Set to rear view + Stel na agteraansig - - + + StdCmdViewRight - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Right - Regs + Right + Regs - Set to right view - Stel op regteraansig + Set to right view + Stel op regteraansig - - + + StdCmdViewRotateLeft - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Rotate Left - + Rotate Left + Rotate Left - Rotate the view by 90° counter-clockwise - + Rotate the view by 90° counter-clockwise + Rotate the view by 90° counter-clockwise - - + + StdCmdViewRotateRight - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Rotate Right - + Rotate Right + Rotate Right - Rotate the view by 90° clockwise - + Rotate the view by 90° clockwise + Rotate the view by 90° clockwise - - + + StdCmdViewTop - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Top - Bo-aansig + Top + Bo-aansig - Set to top view - Stel op bo-aansig + Set to top view + Stel op bo-aansig - - + + StdCmdWhatsThis - Help - Hulp + Help + Hulp - &What's This? - &Wat is hierdie? + &What's This? + &Wat is hierdie? - What's This - Wat is hierdie? + What's This + Wat is hierdie? - - + + StdCmdWindows - Window - Venster + Window + Venster - &Windows... - &Vensters... + &Windows... + &Vensters... - Windows list - Vensterlys + Windows list + Vensterlys - - + + StdCmdWindowsMenu - Window - Venster + Window + Venster - Activates this window - Aktiveer hierdie venster + Activates this window + Aktiveer hierdie venster - - + + StdCmdWorkbench - View - Voorkoms + View + Voorkoms - Workbench - Werkbank + Workbench + Werkbank - Switch between workbenches - Skakel tussen werkbanke + Switch between workbenches + Skakel tussen werkbanke - - + + StdOrthographicCamera - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Orthographic view - Ortografiese aansig + Orthographic view + Ortografiese aansig - Switches to orthographic view mode - Skakel na ortografiese aansigmodus + Switches to orthographic view mode + Skakel na ortografiese aansigmodus - - + + StdPerspectiveCamera - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Perspective view - Perspektief aansig + Perspective view + Perspektief aansig - Switches to perspective view mode - Skakel na perspektief aansigmodus + Switches to perspective view mode + Skakel na perspektief aansigmodus - - + + StdViewBoxZoom - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Box zoom - Bokszoem + Box zoom + Bokszoem - - + + StdViewDockUndockFullscreen - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Document window - Dokument venster + Document window + Document window - Display the active view either in fullscreen, in undocked or docked mode - Vertoon die aktiewe aansig in volskerm, losgekoppelde, of vasgekoppelde modus + Display the active view either in fullscreen, in undocked or docked mode + Vertoon die aktiewe aansig in volskerm, losgekoppelde, of vasgekoppelde modus - - + + StdViewScreenShot - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Save picture... - Stoor beeld... + Save picture... + Stoor beeld... - Creates a screenshot of the active view - Vang 'n beeld van die huidige aansig + Creates a screenshot of the active view + Vang 'n beeld van die huidige aansig - - + + StdViewZoomIn - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Zoom In - Zoem in + Zoom In + Zoem in - - + + StdViewZoomOut - Standard-View - Standaardaansig + Standard-View + Standaardaansig - Zoom Out - Zoem Uit + Zoom Out + Zoem Uit - - + + Std_DrawStyle - As is - As is + As is + Soos dit is - Normal mode - Normal mode + Normal mode + Normale modus - Wireframe - Wireframe + Wireframe + Draadwerk - Wireframe mode - Wireframe mode + Wireframe mode + Draadwerkmodus - - + + Std_ExportGraphviz - Graphviz not found - + Graphviz not found + Graphviz not found - Graphviz couldn't be found on your system. -Do you want to specify its installation path if it's already installed? - + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? - Graphviz installation path - + Graphviz installation path + Graphviz installation path - Dependency graph - + Dependency graph + Dependency graph - Graphviz failed - + Graphviz failed + Graphviz failed - Graphviz failed to create an image file - + Graphviz failed to create an image file + Graphviz failed to create an image file - - + + Workbench - &File - &Lêer + &File + &Lêer - &Edit - &Wysig + &Edit + &Wysig - Standard views - Standaard voorkomste + Standard views + Standaard voorkomste - &Stereo - &Stereo + &Stereo + &Stereo - &Zoom - &Nabyheid + &Zoom + &Nabyheid - Visibility - Sigbaarheid + Visibility + Sigbaarheid - &View - &Voorkoms + &View + &Voorkoms - &Tools - &Gereedskap + &Tools + &Gereedskap - &Macro - &Makro + &Macro + &Makro - &Windows - &Vensters + &Windows + &Vensters - &On-line help - &Internethulp + &On-line help + &Internethulp - &Help - &Help + &Help + &Help - File - Lêer + File + Lêer - Macro - Makro + Macro + Makro - View - Voorkoms + View + Voorkoms - Special Ops - Spesiale verwerkings + Special Ops + Spesiale verwerkings - - + + testClass - test - Toets + test + Toets - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaakPaneel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Geskep vir Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaakPaneel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Geskep vir Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - Choose the style of the Task Panel - Kies die styl van die taakpaneel + Choose the style of the Task Panel + Kies die styl van die taakpaneel - Default - Versuiminstelling + Default + Versuiminstelling - Windows XP - Windows XP + Windows XP + Windows XP - + diff --git a/src/Gui/Language/FreeCAD_cs.qm b/src/Gui/Language/FreeCAD_cs.qm new file mode 100644 index 000000000..166aefebb Binary files /dev/null and b/src/Gui/Language/FreeCAD_cs.qm differ diff --git a/src/Gui/Language/FreeCAD_cs.ts b/src/Gui/Language/FreeCAD_cs.ts new file mode 100644 index 000000000..dd5f2e35d --- /dev/null +++ b/src/Gui/Language/FreeCAD_cs.ts @@ -0,0 +1,5833 @@ + + + + + Angle + + Form + Návrh + + + A: + A: + + + B: + B: + + + C: + C: + + + Angle Snap + Přichytit úhel + + + 1 ° + 1 ° + + + 2 ° + 2 ° + + + 5 ° + 5 ° + + + 10 ° + 10 ° + + + 20 ° + 20 ° + + + 45 ° + 45 ° + + + 90 ° + 90 ° + + + 180 ° + 180 ° + + + + Gui::AccelLineEdit + + none + žádný + + + + Gui::ActionSelector + + Available: + K dispozici: + + + Selected: + Vybráno: + + + Add + Přidat + + + Remove + Odstranit + + + Move up + Posunout nahorů + + + Move down + Posunout dolů + + + + Gui::AlignmentView + + Movable object + Pohyblivý objekt + + + Fixed object + Fixní objekt + + + + Gui::BlenderNavigationStyle + + Press left mouse button + Stiskněte levé tlačítko myši + + + Press SHIFT and middle mouse button + Stisknutím klávesy SHIFT a klepnutím na prostřední tlačítko myši + + + Press middle mouse button + Stiskněte prostřední tlačítko myši + + + Scroll middle mouse button + Rolujte prostředním tlačítkem myši + + + + Gui::CADNavigationStyle + + Press left mouse button + Stiskněte levé tlačítko myši + + + Press middle mouse button + Stiskněte prostřední tlačítko myši + + + Press left and middle mouse button + Stiskněte levé a střední tlačítko myši + + + Scroll middle mouse button + Rolujte prostředním tlačítkem myši + + + + Gui::Command + + Standard + Standard + + + + Gui::ContainerDialog + + &OK + &OK + + + &Cancel + Zrušit + + + + Gui::ControlSingleton + + Task panel + Panel úkolů + + + + Gui::Dialog::AboutApplication + + About + O aplikaci + + + Revision number + Číslo revize + + + Version + Verze + + + OK + OK + + + + + + + Release date + Datum vydání + + + Platform + Platforma + + + License... + Licence... + + + Copy to clipboard + Kopírovat do schránky + + + + Gui::Dialog::ButtonModel + + Button %1 + Tlačítko %1 + + + Out Of Range + Mimo rozsah + + + + Gui::Dialog::CommandModel + + Commands + Příkazy + + + + Gui::Dialog::DemoMode + + View Turntable + Zobrazit otáčení + + + Speed + Rychlost + + + Maximum + Maximum + + + Minimum + Minimální + + + Fullscreen + Celá obrazovka + + + Enable timer + Povolit časovač + + + s + s + + + Angle + Úhel + + + 90° + 90° + + + -90° + -90° + + + Play + Spustit + + + Stop + Stop + + + Close + Zavřít + + + + Gui::Dialog::DlgActivateWindow + + Choose Window + Zvolte okno + + + &Activate + Aktivovat + + + Alt+A + Alt + A + + + &Cancel + Zrušit + + + + + + + + Gui::Dialog::DlgActivateWindowImp + + Windows + Okna + + + + Gui::Dialog::DlgAuthorization + + Authorization + Autorizace + + + &OK + &OK + + + &Cancel + Zrušit + + + Password: + Heslo: + + + User name: + Uživatelské jméno: + + + + + + + + Gui::Dialog::DlgChooseIcon + + Choose Icon + Zvolte ikonu + + + OK + OK + + + Cancel + Zrušit + + + Add icons... + Přidat ikony... + + + + Gui::Dialog::DlgCustomActions + + Macros + Makra + + + Setup Custom Macros + Nastavení vlastních maker + + + Macro: + Makro: + + + ... + ... + + + Pixmap + Pixmapa + + + Accelerator: + Akcelerátor: + + + What's this: + Co je to: + + + Status text: + Stavový text: + + + Tool tip: + Nástrojový tip: + + + Menu text: + Text nabídky: + + + Add + Přidat + + + Remove + Odstranit + + + Replace + Nahradit + + + + Gui::Dialog::DlgCustomActionsImp + + Icons + Ikony + + + Macros + Makra + + + No macro + Žádné makro + + + No macros found. + Nalezena žádná makra. + + + Macro not found + Makro nebylo nalezeno + + + Sorry, couldn't find macro file '%1'. + Je nám líto, ale nemůžeme najít soubor maker '%1'. + + + Empty macro + Prázdné makro + + + Please specify the macro first. + Nejprve zadejte makro. + + + Empty text + Prázdný text + + + Please specify the menu text first. + Nejprve zadejte text nabídky. + + + No item selected + Není vybrána žádná položka + + + Please select a macro item first. + Prosím, nejprve vyberte položku makro. + + + + Gui::Dialog::DlgCustomCommands + + Commands + Příkazy + + + + + + + + Gui::Dialog::DlgCustomCommandsImp + + Category + Kategorie + + + Icon + Ikona + + + Command + Příkaz + + + + Gui::Dialog::DlgCustomKeyboard + + Keyboard + Klávesnice + + + Description: + Popis: + + + &Category: + Kategorie: + + + C&ommands: + Příkazy: + + + Current shortcut: + Současná klávesová zkratka: + + + Press &new shortcut: + Stiskni novou klávesovou zkratku: + + + Currently assigned to: + Nyní přiřazeno: + + + &Assign + &Přiřadit + + + Alt+A + Alt + A + + + &Reset + &Obnovit + + + Alt+R + ALT + R + + + Re&set All + Resetovat vše + + + Alt+S + ALT + S + + + + + + + + Gui::Dialog::DlgCustomKeyboardImp + + Icon + Ikona + + + Command + Příkaz + + + none + žádný + + + Multiple defined shortcut + Vícenásobně definovaná klávesová zkratka + + + The shortcut '%1' is defined more than once. This could result into unexpected behaviour. + Zástupce '%1' je definován více než jednou. To by mohlo vyústit do neočekávané chování. + + + Already defined shortcut + Již definovaná klávesová zkratka + + + The shortcut '%1' is already assigned to '%2'. + +Please define another shortcut. + Klávesová zkratka '%1' je již přiřazena k '%2'. Definujte jinou. + + + + Gui::Dialog::DlgCustomToolBoxbarsImp + + Toolbox bars + Panely nástrojů + + + + Gui::Dialog::DlgCustomToolbars + + Toolbars + Panely nástrojů + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Pozn.:</span> Změny budou aktivní po restartu příslušného pracovního prostředí</p></body></html> + + + Move right + Přesunout doprava + + + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Posun vybrané položky o jednu úroveň dolů.</b><p>Také změní úroveň nadřazené položky.</p> + + + Move left + Posunout doleva + + + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Posun vybrané položky o jednu úroveň nahoru.</b><p>Také změní úroveň nadřazené položky.</p> + + + Move down + Posunout dolů + + + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Posunout vybranou položku dolů.</b><p>Položka se posune i v hierarchii.</p> + + + Move up + Posunout nahorů + + + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Posunout vybranou položku nahoru.</b><p>Položka se posune i v hierarchii.</p> + + + New... + Nový... + + + Rename... + Přejmenovat... + + + Delete + Odstranit + + + Icon + Ikona + + + Command + Příkaz + + + <Separator> + <Oddělovač> + + + New toolbar + Nový nástrojový panel + + + Toolbar name: + Název nástrojového panelu: + + + Duplicated name + Duplicitní název + + + The toolbar name '%1' is already used + Název panelu nástrojů '%1' je již používán + + + Rename toolbar + Přejmenovat nástrojový panel + + + + + + + + Gui::Dialog::DlgCustomizeImp + + Customize + Upravit + + + &Help + Pomoc + + + &Close + &Zavřít + + + + Gui::Dialog::DlgCustomizeSpaceball + + Spaceball + Spaceball + + + No Spaceball Present + No Spaceball Present + + + Buttons + Tlačítka + + + Clear + Vyčistit + + + Print Reference + Print Reference + + + + Gui::Dialog::DlgDisplayProperties + + Display properties + Zobrazit vlastnosti + + + Display + Zobrazení + + + Transparency: + Průhlednost: + + + Line width: + Tloušťka čáry: + + + Point size: + Velikost bodu: + + + Material + Materiál + + + ... + ... + + + Close + Zavřít + + + Viewing mode + Režim zobrazení + + + Plot mode: + Rýsovací režim: + + + + + + + Line transparency: + Průhlednost čáry: + + + Line color: + Barva čáry: + + + Shape color: + Barva tvaru: + + + Color plot: + Barva kreslení: + + + Document window: + Okno dokumentu: + + + + Gui::Dialog::DlgEditorSettings + + Editor + Editor + + + Options + Možnosti + + + Enable line numbers + Zapnout čísla řádků + + + Enable folding + Povolit skládání + + + Indentation + Odsazení + + + Insert spaces + Vložit mezery + + + Tab size: + Velikost tabulátoru: + + + Indent size: + Velikost odsazení: + + + Keep tabs + Zachovat záložky + + + Display Items + Zobrazení položek + + + Family: + Rodina: + + + Size: + Velikost: + + + Preview: + Náhled: + + + + + + + + Gui::Dialog::DlgGeneral + + General + Obecné + + + Start up + Spuštění + + + Enable splash screen at start up + Povolit úvodní obrazovku při startu + + + Switch to tab of report window: + Přepnout na záložku okna zprávy: + + + Auto load module after start up: + Automatické načtení modulu po startu: + + + Language + Jazyk + + + Change language: + Změnit jazyk: + + + Main window + Hlavní okno + + + Size of recent file list + Velikost seznamu posledních souborů + + + Window style: + Styl okna: + + + Size of toolbar icons: + Velikost ikon panelu nástrojů: + + + + Gui::Dialog::DlgGeneralImp + + Default (%1 x %1) + Výchozí (%1 x %1) + + + Small (%1 x %1) + Malý (%1 x %1) + + + Large (%1 x %1) + Velký (%1 x %1) + + + Extra large (%1 x %1) + Extra velký (%1 x %1) + + + + Gui::Dialog::DlgInputDialog + + Input + Vstup + + + OK + OK + + + Cancel + Zrušit + + + + + + + + Gui::Dialog::DlgInspector + + Scene Inspector + Inspektor scény + + + + Gui::Dialog::DlgMacroExecute + + Execute macro + Spustit makro + + + Macro name: + Název makra: + + + Macro destination: + Umístění makra: + + + Execute + Spustit + + + Close + Zavřít + + + Create + Vytvořit + + + Delete + Odstranit + + + Edit + Upravit + + + + Gui::Dialog::DlgMacroExecuteImp + + Macros + Makra + + + Macro file + Makro soubor + + + Enter a file name, please: + Zadejte název souboru, prosím: + + + Existing file + Existující soubor + + + '%1'. +This file already exists. + '%1'. +Tento soubor již existuje. + + + Delete macro + Odstranit makro + + + Do you really want to delete the macro '%1'? + Opravdu chcete odstranit makro '%1'? + + + Cannot create file + Nelze vytvořit soubor + + + Creation of file '%1' failed. + Vytvoření souboru '%1' se nezdařilo. + + + + Gui::Dialog::DlgMacroRecord + + Macro recording + Záznam makra + + + Macro name: + Název makra: + + + Stop + Stop + + + Cancel + Zrušit + + + Macro path: + Cesta k makru: + + + ... + ... + + + Record + Záznam + + + + Gui::Dialog::DlgMacroRecordImp + + Macro recorder + Záznam makra + + + Specify first a place to save. + Nejprve určete místo pro uložení. + + + Existing macro + Existující makro + + + The macro '%1' already exists. Do you want to overwrite? + Makro '%1' již existuje. Opravdu chcete přepsat? + + + The macro directory doesn't exist. Please, choose another one. + Makro adresář neexistuje. Prosím vyberte jiný. + + + Choose macro directory + Vyberte makro adresář + + + + Gui::Dialog::DlgMaterialProperties + + Material properties + Materiálové vlastnosti + + + &Close + &Zavřít + + + Alt+C + Alt+C + + + Material + Materiál + + + Diffuse color: + Rozptyl barvy: + + + Specular color: + Zrcadlení barvy: + + + Shininess: + Odlesky: + + + % + % + + + Ambient color: + Okolní barva: + + + + + + + Emissive color: + Emisní barva: + + + + Gui::Dialog::DlgOnlineHelp + + On-line help + On-line pomoc + + + Help viewer + Prohlížeč pomoci + + + Location of start page + Umístění úvodní stránky + + + + Gui::Dialog::DlgOnlineHelpImp + + HTML files (*.html *.htm) + Soubory HTML (*.html *.htm) + + + Access denied + Přístup byl odepřen + + + Access denied to '%1' + +Specify another directory, please. + Přístup byl odepřen '%1' zadejte jiný adresář, prosím. + + + + Gui::Dialog::DlgParameter + + Parameter Editor + Editor parametrů + + + Save to disk + Uložit na disk + + + Alt+C + Alt+C + + + &Close + &Zavřít + + + + Gui::Dialog::DlgParameterImp + + Group + Skupina + + + Name + Jméno + + + Type + Typ + + + Value + Hodnota + + + User parameter + Uživatelské parametry + + + Invalid input + Neplatný vstup + + + Invalid key name '%1' + Neplatný název klíče '%1' + + + System parameter + Systémové parametry + + + + Gui::Dialog::DlgPreferences + + Preferences + Nastavení + + + &Help + Pomoc + + + Alt+H + ALT + H + + + &OK + &OK + + + &Apply + Použít + + + Alt+A + Alt + A + + + &Cancel + Zrušit + + + + + + + + Gui::Dialog::DlgPreferencesImp + + Wrong parameter + Chybný parametr + + + + Gui::Dialog::DlgProjectInformation + + Project information + Informace o projektu + + + Information + Informace + + + &Name: + Název: + + + Commen&t: + Komentář: + + + Path: + Cesta: + + + &Last modified by: + Naposledy upraveno: + + + Created &by: + Vytvořil: + + + Com&pany: + Společnost: + + + Last &modification date: + Poslední úprava: + + + Creation &date: + Vytvořeno: + + + &OK + &OK + + + &Cancel + Zrušit + + + + + + + + Gui::Dialog::DlgProjectUtility + + Project utility + Nástroje projektu + + + Extract project + Extrahovat projekt + + + Source + Zdroj + + + Project file (*.fcstd) + Soubor projektu (*.fcstd) + + + Destination + Cíl + + + Extract + Extrahovat + + + Create project + Vytvořit projekt + + + Document.xml + Dokument.xml + + + Create + Vytvořit + + + Load project file after creation + Po vytvoření načíst projekt + + + Empty source + Prázdný zdroj + + + No source is defined. + Není definován zdroj. + + + Empty destination + Prázdný cíl + + + No destination is defined. + Není definován cíl. + + + + Gui::Dialog::DlgReportView + + Output window + Výstupní okno + + + Output + Výstup + + + Record log messages + Záznam log-ovacích zpráv + + + Record warnings + Záznam varování + + + Record error messages + Záznam chyb + + + Colors + Barvy + + + Normal messages: + Zprávy: + + + Log messages: + Log zprávy: + + + Warnings: + Varování: + + + Errors: + Chyby: + + + + + + + Redirect internal Python errors to report view + Redirect internal Python errors to report view + + + Redirect internal Python output to report view + Redirect internal Python output to report view + + + + Gui::Dialog::DlgRunExternal + + Running external program + Spuštění externího programu + + + TextLabel + Textový popisek + + + Advanced >> + Pokročilé >> + + + ... + ... + + + Accept changes + Přijmout změny + + + Discard changes + Zahodit změny + + + Abort program + Přerušit program + + + Help + Pomoc + + + Select a file + Vyberte soubor + + + + Gui::Dialog::DlgSettings3DView + + 3D View + 3D pohled + + + 3D View settings + Nastavení 3D pohledu + + + Show coordinate system in the corner + Zobrazit souřadný systém v rohu + + + Show counter of frames per second + Zobrazit FPS + + + Enable animation + Zapnout animaci + + + Enable anti-aliasing (slower) + Zapnout vyhlazování (pomalejší) + + + Eye to eye distance for stereo modes: + Vzdálenost očí pro stereo režimy: + + + Camera type + Typ kamery + + + Orthographic rendering + Ortografické vykreslování + + + Perspective rendering + Perspektivní vykreslování + + + + + + + 3D Navigation + 3D navigace + + + Mouse... + Myš... + + + Intensity of backlight + Intenzita podsvícení + + + Enable backlight color + Povolit barvu podsvícení + + + Orbit style + Orbit style + + + Turntable + Turntable + + + Trackball + Trackball + + + Invert zoom + Invertovat přiblížení + + + Zoom at cursor + Přibližovat nad kurzorem + + + Zoom step + Krok přiblížení + + + + Gui::Dialog::DlgSettings3DViewImp + + %1 navigation + %1 navigace + + + + Gui::Dialog::DlgSettingsColorGradient + + Color model + Barevný model + + + &Gradient: + Přechod: + + + red-yellow-green-cyan-blue + červená-žlutá-zelená-tyrkysová-modrá + + + blue-cyan-green-yellow-red + modrá-azurová-zelená-žlutá-červená + + + white-black + bílá-černá + + + black-white + černá-bílá + + + Visibility + Vditelnost + + + Out g&rayed + Do šedé + + + Alt+R + ALT + R + + + Out &invisible + Do neviditelné + + + Alt+I + Alt+I + + + Style + Styl + + + &Zero + Nula + + + Alt+Z + Alt+Z + + + &Flow + Splývání + + + Alt+F + Alt+F + + + &OK + &OK + + + &Cancel + Zrušit + + + Parameter range + Rozsah parametru + + + Mi&nimum: + Mi&nimum: + + + Ma&ximum: + Ma&ximum: + + + &Labels: + Popisky: + + + &Decimals: + Desetinná místa: + + + + + + + Color-gradient settings + Nastavení přechodu barvy + + + + Gui::Dialog::DlgSettingsColorGradientImp + + Wrong parameter + Chybný parametr + + + The maximum value must be higher than the minimum value. + Maximální hodnota musí být vyšší než minimální hodnota. + + + + Gui::Dialog::DlgSettingsDocument + + Document + Dokument + + + General + Obecné + + + Document save compression level +(0 = none, 9 = highest, 3 = default) + Úroveň komprese při ukládání dokumentu (0 = žádná, 9 = nejvyšší, 3 = výchozí) + + + Create new document at start up + Vytvoření nového dokumentu po startu + + + Storage + Úložiště + + + Saving transactions (Auto-save) + Ukládání transakcí (Auto ukládání) + + + Discard saved transaction after saving document + Zrušit uložené transakce po uložení dokumentu + + + Save thumbnail into project file when saving document + Uložit náhled do souboru projektu při ukládání dokumentu + + + Create up to backup files when resaving document + Vytvořit zálohu souboru, když se přeuloží dokument + + + Document objects + Objekty dokumentu + + + Allow duplicate object labels in one document + Povolit duplicitní názvy objektů v jednom dokumentu + + + Maximum Undo/Redo steps + Maximální počet kroků Zpět/Znovu + + + Using Undo/Redo on documents + Pužití funkce zpět/znovu na dokumentech + + + + Gui::Dialog::DlgSettingsEditorImp + + Text + Text + + + Bookmark + Záložka + + + Breakpoint + Bod přerušení + + + Keyword + Klíčové slovo + + + Comment + Komentář + + + Block comment + Blok komentáře + + + Number + Číslo + + + String + Řetězec + + + Character + Znak + + + Class name + Název třídy + + + Define name + Definovat název + + + Operator + Operátor + + + Python output + Python výstup + + + Python error + Python chyba + + + Items + Položky + + + Current line highlight + Aktuální řádek zvýraznění + + + + Gui::Dialog::DlgSettingsImage + + Image settings + Nastavení obrázku + + + Image properties + Vlastnosti obrázku + + + Back&ground: + Pozadí: + + + Current + Aktuální + + + White + Bílá + + + Black + Černá + + + Transparent + Průhledný + + + Image dimensions + Rozměry obrázku + + + Pixel + Pixel + + + &Width: + &Šířka: + + + Current screen + Aktuální obrazovka + + + Icon 32 x 32 + Ikona 32 x 32 + + + Icon 64 x 64 + Ikona 64 x 64 + + + Icon 128 x 128 + Ikona 128 x 128 + + + CGA 320 x 200 + CGA 320 x 200 + + + QVGA 320 x 240 + QVGA 320 x 240 + + + VGA 640 x 480 + VGA 640 x 480 + + + NTSC 720 x 480 + NTSC 720 x 480 + + + PAL 768 x 578 + PAL 768 x 578 + + + SVGA 800 x 600 + SVGA 800 x 600 + + + XGA 1024 x 768 + XGA 1024 x 768 + + + HD720 1280 x 720 + HD720 1280 x 720 + + + SXGA 1280 x 1024 + SXGA 1280 x 1024 + + + SXGA+ 1400 x 1050 + SXGA + 1400 x 1050 + + + UXGA 1600 x 1200 + UXGA 1600 x 1200 + + + HD1080 1920 x 1080 + HD1080 1920 x 1080 + + + WUXGA 1920 x 1200 + WUXGA. 1920 × 1200 + + + QXGA 2048 x 1538 + QXGA 2048 x 1538 + + + WQXGA 2560 x 1600 + WQXGA 2560 x 1600 + + + QSXGA 2560 x 2048 + QSXGA 2560 x 2048 + + + QUXGA 3200 × 2400 + QUXGA 3200 X 2400 + + + HUXGA 6400 × 4800 + HUXGA 6400 × 4800 + + + !!! 10000 x 10000 + !!! 10000 x 10000 + + + Standard sizes: + Standardní velikosti: + + + &Height: + &Výška: + + + Aspect ratio: + Poměr stran: + + + &Screen + &Obrazovka + + + Alt+S + ALT + S + + + &4:3 + &4:3 + + + Alt+4 + ALT + 4 + + + 1&6:9 + 1&6:9 + + + Alt+6 + ALT + 6 + + + &1:1 + &1:1 + + + Alt+1 + ALT + 1 + + + Image comment + Komentář obrázku + + + Insert MIBA + Vložit MIBA + + + Insert comment + Vložit komentář + + + + Gui::Dialog::DlgSettingsMacro + + Macro + Makro + + + Macro recording settings + Nastavení nahrávání maker + + + Logging Commands + Protokolování příkazů + + + Show script commands in python console + Zobrazit příkazy skriptu v konzole Pythonu + + + Log all commands issued by menus to file: + Protokolovat všecny příkazy z nabídky do souboru: + + + FullScript.FCScript + FullScript.FCScript + + + Gui commands + GUI příkazy + + + Recording GUI commands + Nahrávání GUI příkazů + + + Record as comment + Zaznamenat jako komentář + + + Macro path + Cesta maker + + + General macro settings + Obecné nastavení maker + + + Run macros in local environment + Spustit makro v místním prostředí + + + + Gui::Dialog::DlgSettingsUnits + + Units + Jednotky + + + Units settings + Nastavení jednotek + + + Standard (mm/kg/s/degree) + Standardní (mm/kg/s/stupeň) + + + MKS (m/kg/s/degree) + MKS (m/kg/s/stupeň) + + + Magnitude + Velikost + + + Unit + Jednotka + + + User system: + Uživatelský systém: + + + Imperial (in/lb) + Imperiální (in/lb) + + + + Gui::Dialog::DlgSettingsViewColor + + Colors + Barvy + + + Selection + Výběr + + + Enable selection highlighting + Zapnout zvýrazňování výběru + + + Enable preselection highlighting + Povolit předvýběrové zvýraznění + + + Background color + Barva pozadí + + + Middle color + Prostřední barva + + + Color gradient + Barevný přechod + + + Simple color + Jednoduchá barva + + + Default colors + Výchozí barvy + + + Edited edge color + Upravená barva okraje + + + Edited vertex color + Edited vertex color + + + Construction geometry + Construction geometry + + + Fully constrained geometry + Fully constrained geometry + + + The color of vertices being edited + The color of vertices being edited + + + The color of edges being edited + The color of edges being edited + + + The color of construction geometry in edit mode + The color of construction geometry in edit mode + + + The color of fully constrained geometry in edit mode + The color of fully constrained geometry in edit mode + + + Cursor text color + Cursor text color + + + Default shape color + Výchozí barva tvaru + + + The default color for new shapes + The default color for new shapes + + + Default line width and color + Default line width and color + + + The default line color for new shapes + The default line color for new shapes + + + The default line thickness for new shapes + The default line thickness for new shapes + + + px + px + + + + Gui::Dialog::DlgTipOfTheDay + + Tip of the day + Tip dne + + + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <font size="+3"><font face="Times New Roman"><b>Víte, že ...</b></font></font> + + + &Show tips at start up + Zobrazit tipy při startu + + + Alt+S + ALT + S + + + &Next Tip + Další tip + + + Alt+N + Alt+N + + + &Close + &Zavřít + + + Alt+C + Alt+C + + + + + + + + Gui::Dialog::DlgTipOfTheDayImp + + Download failed: %1 + + Stažení neúspěšné: %1 + + + + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + Pokud se chcete dozvědět více o FreeCAD, musíte přejít na %1 nebo stiskněte položku Nápověda v nabídce Nápověda. + + + + Gui::Dialog::DockablePlacement + + Placement + Umístění + + + + Gui::Dialog::DownloadDialog + + Download + Stáhnout + + + Cancel + Zrušit + + + Close + Zavřít + + + There already exists a file called %1 in the current directory. Overwrite? + Soubor s názvem %1 již existuje. Přepsat? + + + Unable to save the file %1: %2. + Nelze uložit soubor %1: %2. + + + Downloading %1. + Stahování %1. + + + Download canceled. + Stahování zrušeno. + + + Download failed: %1. + Stažení se nezdařilo: %1. + + + Downloaded %1 to current directory. + %1 Staženo do aktuálního adresáře. + + + + Gui::Dialog::IconDialog + + Add icon + Přidat ikonu + + + + Gui::Dialog::InputVector + + Input vector + Vstupní vektor + + + Vector + Vektor + + + Z: + Z: + + + Y: + Y: + + + X: + X: + + + OK + OK + + + + Gui::Dialog::LicenseDialog + + Copyright + Autorská práva + + + + Gui::Dialog::MouseButtons + + Mouse buttons + Tlačítka myši + + + Configuration + Konfigurace + + + Selection: + Výběr: + + + Panning + Posouvání + + + Rotation: + Rotace: + + + Zooming: + Zvětšení: + + + + Gui::Dialog::ParameterGroup + + Expand + Rozbalit + + + Add sub-group + Přidat podskupinu + + + Remove group + Odstranit skupinu + + + Rename group + Přejmenovat skupinu + + + Export parameter + Export parametru + + + Import parameter + Import parametru + + + Collapse + Sbalit + + + Do really want to remove this parameter group? + To opravdu chcete odstranit tuto skupinu parametrů? + + + Existing sub-group + Stávající podskupiny + + + The sub-group '%1' already exists. + Podskupinu '%1' již existuje. + + + Export parameter to file + Exportovat do souboru parametrů + + + XML (*.FCParam) + XML (*.FCParam) + + + Import parameter from file + Import parametrů ze souboru + + + Import Error + Chyba při importu + + + Reading from '%1' failed. + Čtení z '%1' se nezdařilo. + + + + Gui::Dialog::ParameterValue + + Change value + Změnit hodnotu + + + Remove key + Odstranit klíč + + + Rename key + Přejmenovat klíč + + + New + Nový + + + New string item + Nová položka string + + + New float item + Nové položka float + + + New integer item + Nová položka Integer + + + New unsigned item + Nové položka nepodepsana + + + New Boolean item + Nová položka Boolean + + + Existing item + Existující položka + + + The item '%1' already exists. + Položka '%1' již existuje. + + + + Gui::Dialog::Placement + + Placement + Umístění + + + OK + OK + + + Translation: + Překlad: + + + Z: + Z: + + + Y: + Y: + + + X: + X: + + + Rotation: + Rotace: + + + Angle: + Úhel: + + + Axis: + Osa: + + + Center: + Střed: + + + Pitch: + Rozteč: + + + Roll: + Zatočení: + + + Yaw: + Vybočení: + + + Rotation axis with angle + Osa otáčení s úhlem + + + Euler angles + Eulerovy úhly + + + Apply placement changes immediately + Ihned aplikovat změny umístění + + + Apply incremental changes to object placement + Aplikovat nárustkovou změnu na umístění objektu + + + Apply + Použít + + + Reset + Reset + + + Close + Zavřít + + + + Gui::Dialog::PrintModel + + Button + Tlačítko + + + Command + Příkaz + + + + Gui::Dialog::SceneInspector + + Dialog + Dialogové okno + + + Close + Zavřít + + + Refresh + Aktualizovat + + + + Gui::Dialog::SceneModel + + Inventor Tree + Konstrukční strom + + + Nodes + Uzly + + + + Gui::Dialog::TextureMapping + + Texture + Textura + + + Texture mapping + Mapování textury + + + Global + Globální + + + Environment + Prostředí + + + Image files (%1) + Soubory obrázků (%1) + + + No image + Žádný obrázek + + + The specified file is not a valid image file. + Zadaný soubor není platným obrázkem. + + + No 3d view + Žádné 3D zobrazení + + + No active 3d view found. + Nebylo nalezeno aktivní 3D zobrazení. + + + + Gui::Dialog::Transform + + Cancel + Zrušit + + + Transform + Transform + + + + Gui::DlgTreeWidget + + Dialog + Dialogové okno + + + Items + Položky + + + OK + OK + + + Cancel + Zrušit + + + + + + + + Gui::DockWnd::CombiView + + CombiView + CombiView + + + Project + Projekt + + + Tasks + Úkoly + + + + Gui::DockWnd::HelpView + + Previous + Předchozí + + + Next + Další + + + Home + Domů + + + Open + Otevřít + + + Open file + Otevřít soubor + + + All HTML files (*.html *.htm) + Všechny soubory HTML (*.html *.htm) + + + External browser + Externí prohlížeč + + + No external browser found. Specify in preferences, please + Žádný externí prohlížeč nebyl nalezen. Zadejte v předvolbách, prosím + + + Starting of %1 failed + Spuštění %1 se nezdařilo. + + + + Gui::DockWnd::PropertyDockView + + Property View + Vlastnosti zobrazení + + + + Gui::DockWnd::ReportOutput + + Logging + Protokolování + + + Warning + Varování + + + Error + Chyba + + + Options + Možnosti + + + Clear + Vyčistit + + + Save As... + Uložit jako... + + + Save Report Output + Uložit výstupní zprávu + + + Plain Text Files (*.txt *.log) + Textové soubory (*.txt * .log) + + + Go to end + Přejít na konec + + + Redirect Python output + Redirect Python output + + + Redirect Python errors + Přesměrování chyb Pythonu + + + + Gui::DockWnd::ReportView + + Output + Výstup + + + Python console + Python konzole + + + + Gui::DockWnd::SelectionView + + Property View + Vlastnosti zobrazení + + + + Gui::DockWnd::TaskPanelView + + Task View + Zobrazení úkolů + + + + Gui::DockWnd::TextBrowser + + Could not open file. + Nelze otevřít soubor. + + + You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. + Pokusili jste se otevřít adresu %1, která není v současné době k dispozici. Zkontrolujte, zda adresa existuje a zkuste znovunačtení stránky. + + + Connecting to %1 + Připojování k %1 + + + Sending to %1 + Odeslání %1 + + + Reading from %1 + Čtení z %1 + + + Download failed: %1. + Stažení se nezdařilo: %1. + + + Previous + Předchozí + + + Forward + Vpřed + + + Home + Domů + + + Refresh + Aktualizovat + + + Copy + Kopírovat + + + Select all + Vybrat vše + + + No description for + Žádný popis + + + + Gui::DocumentModel + + Application + Aplikace + + + Labels & Attributes + Štítky & atributy + + + + Gui::EditorView + + Modified file + Změněný soubor + + + %1. + +This has been modified outside of the source editor. Do you want to reload it? + %1. byl změněn mimo Editor zdrojového kódu. Chcete se znovu načíst? + + + Unsaved document + Neuložený dokument + + + The document has been modified. +Do you want to save your changes? + Dokument byl změněn. +Chcete uložit provedené změny? + + + FreeCAD macro (*.FCMacro);;Python (*.py) + FreeCAD makro (*.FCMacro);;Python (*.py) + + + Export PDF + Export PDF + + + PDF file (*.pdf) + Soubor PDF (*.pdf) + + + untitled[*] + bez názvu[*] + + + - Editor + - Editor + + + %1 chars removed + %1 znaky odstraněny + + + %1 chars added + %1 znaků z přidané + + + Formatted + Formátováno + + + + Gui::FileChooser + + Select a file + Vyberte soubor + + + Select a directory + Vyberte adresář + + + + Gui::FileDialog + + Save as + Uložit jako + + + Open + Otevřít + + + + Gui::FileOptionsDialog + + Extended + Rozšířené + + + All files (*.*) + Všechny soubory (*.*) + + + + Gui::Flag + + Top left + Vlevo nahoře + + + Bottom left + Vlevo dole + + + Top right + Vpravo nahoře + + + Bottom right + Vpravo dole + + + Remove + Odstranit + + + + Gui::InventorNavigationStyle + + Press CTRL and left mouse button + Stiskněte CTRL a levé tlačítko myši + + + Press middle mouse button + Stiskněte prostřední tlačítko myši + + + Press left mouse button + Stiskněte levé tlačítko myši + + + Scroll middle mouse button + Rolujte prostředním tlačítkem myši + + + + Gui::LocationDialog + + Wrong direction + Špatný směr + + + Direction must not be the null vector + Směr nesmí být nulový vektor + + + X + X + + + Y + Y + + + Z + Z + + + User defined... + Uživatelem definované... + + + + Gui::LocationWidget + + X: + X: + + + Y: + Y: + + + Z: + Z: + + + Direction: + Směr: + + + + Gui::MacroCommand + + Macros + Makra + + + + Gui::MainWindow + + Dimension + Rozměr + + + Ready + Připraven + + + Toggles this toolbar + Přepíná panel nástrojů + + + Toggles this dockable window + Přepíná dokovatelný okna + + + Close All + Zavřít vše + + + + Gui::ManualAlignment + + Manual alignment + Ruční zarovnání + + + The alignment is already in progress. + The alignment is already in progress. + + + Alignment[*] + Zarovnání[*] + + + Please, select at least one point in the left and the right view + Please, select at least one point in the left and the right view + + + Please, select at least %1 points in the left and the right view + Please, select at least %1 points in the left and the right view + + + Please pick points in the left and right view + Please pick points in the left and right view + + + The alignment has finished + Zarovnání bylo dokončeno + + + The alignment has been canceled + Zarovnání bylo zrušeno + + + Too few points picked in the left view. At least %1 points are needed. + Příliš málo bodů v levém pohledu. Alespoň %1 body jsou zapotřebí. + + + Too few points picked in the right view. At least %1 points are needed. + Příliš málo bodů v pravém pohledu. Alespoň %1 body jsou zapotřebí. + + + Different number of points picked in left and right view. +On the left view %1 points are picked, +on the right view %2 points are picked. + Různý počet bodů v levé a pravé zobrazení. +Na levém pohledu jsou %1 body zachyceny, +na pravém pohledu jsou %2 body zachyceny. + + + Try to align group of views + Zkusit zarovnat skupinu pohledů + + + The alignment failed. +How do you want to proceed? + Zarovnání se nezdařilo. +Jak chcete pokračovat? + + + Retry + Opakovat + + + Ignore + Ignorováno + + + Abort + Přerušit + + + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + + + Point picked at (%1,%2,%3) + Bod umístěn v (%1, %2, %3) + + + No point was picked + Nebyl vybrán bod + + + + Gui::NetworkRetriever + + Download started... + + Stahování začíná... + + + + Gui::ProgressBar + + Remaining: %1 + Zbývá: %1 + + + Aborting + Přerušení + + + Do you really want to abort the operation? + Opravdu chcete zrušit operaci? + + + + Gui::ProgressDialog + + Remaining: %1 + Zbývá: %1 + + + Aborting + Přerušení + + + Do you really want to abort the operation? + Opravdu chcete zrušit operaci? + + + + Gui::PropertyEditor::PropertyModel + + Property + Vlastnost + + + Value + Hodnota + + + + Gui::PropertyView + + View + Pohled + + + Data + Údaje + + + + Gui::PythonConsole + + System exit + Ukončení činnosti systému + + + The application is still running. +Do you want to exit without saving your data? + Aplikace je stále spuštěn. +Chcete průvodce ukončit bez uložení dat? + + + Python console + Python konzole + + + Unhandled PyCXX exception. + Neošetřená výjimka PyCXX. + + + Unhandled FreeCAD exception. + Neošetřená výjimka FreeCAD. + + + Unhandled unknown C++ exception. + Neošetřená neznámá výjimka C++. + + + &Copy command + &Příkaz kopírovat + + + &Copy history + Kopírovat historii + + + Save history as... + Uložit historii jako... + + + Insert file name... + Vložit název souboru... + + + Save History + Uložit historii + + + Macro Files (*.FCMacro *.py) + Makro soubory (*.FCMacro *.py) + + + Insert file name + Vložit název souboru + + + All Files (*.*) + Všechny soubory (*.*) + + + Python Input Dialog + Python vstupní Dialog + + + Unhandled std C++ exception. + Neošetřená výjimka std C++. + + + Word wrap + Zalamování řádků + + + &Copy + &Kopírovat + + + &Paste + &Vložit + + + Select All + Vybrat vše + + + Clear console + Vyčistit terminál + + + + Gui::PythonEditor + + Comment + Komentář + + + Uncomment + Nekomentované + + + + Gui::PythonInputField + + OK + OK + + + Clear + Vyčistit + + + + Gui::RecentFilesAction + + Open file %1 + Otevřít soubor %1 + + + File not found + Soubor nebyl nalezen + + + The file '%1' cannot be opened. + Soubor '%1' nelze otevřít. + + + + Gui::SelectModule + + Select module + Vybrat modul + + + Open %1 as + Otevřené %1 jako + + + Select + Vybrat + + + + Gui::StdCmdDescription + + Help + Pomoc + + + Des&cription + Popis + + + Long description of commands + Dlouhý popis příkazů + + + + Gui::StdCmdDownloadOnlineHelp + + Help + Pomoc + + + Download online help + Stáhnout nápovědu online + + + Download %1's online help + Stahování %1 online nápovědy + + + Non-existing directory + Neexistující adresář + + + The directory '%1' does not exist. + +Do you want to specify an existing directory? + Adresář '%1' neexistuje. Chcete určit existující adresář? + + + Missing permission + Chybí oprávnění + + + You don't have write permission to '%1' + +Do you want to specify another directory? + Nemáte oprávnění k zápisu do adresáře '%1', chcete zadat jiný adresář? + + + Stop downloading + Zastavit stahování + + + + Gui::StdCmdPythonHelp + + Tools + Nástroje + + + Python Modules + Python moduly + + + Opens a browser to show the Python modules + Otevřít prohlížeč a zobrazit Python moduly + + + + Gui::TaskBoxAngle + + Angle + Úhel + + + + Gui::TaskBoxPosition + + Position + Position + + + + Gui::TaskView::TaskAppearance + + Plot mode: + Rýsovací režim: + + + Point size: + Velikost bodu: + + + Line width: + Tloušťka čáry: + + + Transparency: + Průhlednost: + + + Appearance + Vzhled + + + Document window: + Okno dokumentu: + + + + Gui::TaskView::TaskEditControl + + Edit + Upravit + + + + Gui::TaskView::TaskSelectLinkProperty + + Appearance + Vzhled + + + ... + ... + + + edit selection + editovat výběr + + + + Gui::TouchpadNavigationStyle + + Press left mouse button + Stiskněte levé tlačítko myši + + + Press SHIFT button + Stiskněte klávesu SHIFT + + + Press ALT button + Stiskněte klávesu ALT + + + Press PgUp/PgDown button + Stiskněte tlačítko PgUp/PgDown + + + + Gui::TreeDockWidget + + Tree view + Stromové zobrazení + + + + Gui::TreeWidget + + Create group... + Vytvořit skupinu... + + + Create a group + Vytvořit skupinu + + + Group + Skupina + + + Rename + Přejmenovat + + + Rename object + Přejmenovat objekt + + + Labels & Attributes + Štítky & atributy + + + Application + Aplikace + + + Finish editing + Dokončení úprav + + + Finish editing object + Dokončení úprav objektu + + + Activate document + Aktivovat dokument + + + Activate document %1 + Aktivovat dokumentu %1 + + + + Gui::View3DInventor + + Export PDF + Export PDF + + + PDF file (*.pdf) + Soubor PDF (*.pdf) + + + + Gui::WorkbenchGroup + + Select the '%1' workbench + Vyberte workbench '%1' + + + + Position + + Form + Návrh + + + X: + X: + + + Y: + Y: + + + Z: + Z: + + + 0.1 mm + 0.1 mm + + + 0.5 mm + 0.5 mm + + + 1 mm + 1 mm + + + 2 mm + 2 mm + + + 5 mm + 5 mm + + + 10 mm + 10 mm + + + 20 mm + 20 mm + + + 50 mm + 50 mm + + + 100 mm + 100 mm + + + 200 mm + 200 mm + + + 500 mm + 500 mm + + + 1 m + 1 m + + + 2 m + 2 m + + + 5 m + 5 m + + + Grid Snap in + Přichytávat na mřížku + + + + QDockWidget + + Tree view + Stromové zobrazení + + + Property view + Vlastnosti zobrazení + + + Selection view + Výběr zobrazení + + + Report view + Zobrazení reportu + + + Task View + Zobrazení úkolů + + + Combo View + Kombinované zobrazení + + + Toolbox + Panel nástrojů + + + Python console + Python konzole + + + Display properties + Zobrazit vlastnosti + + + + QObject + + General + Obecné + + + Display + Zobrazení + + + Unknown filetype + Neznámý typ souboru + + + Cannot open unknown filetype: %1 + Nelze otevřít neznámý typ souboru: %1 + + + Cannot save to unknown filetype: %1 + Nelze uložit neznámý typ souboru: %1 + + + Workbench failure + Selhání Workbench + + + %1 + %1 + + + Unable to launch Qt Assistant (%1) + Nelze spustit Qt asistent (%1) + + + Exception + Výjimka + + + Open document + Otevřít dokument + + + Import file + Importovat soubor + + + Export file + Exportovat soubor + + + Printing... + Tisk... + + + Cannot load workbench + Nelze načíst workbench + + + A general error occurred while loading the workbench + Došlo k obecné chybě při načítání workbench + + + Save views... + Uložit pohledy... + + + Load views... + Načíst pohledy... + + + Freeze view + Zmrazit pohled + + + Clear views + Smazat pohledy + + + Restore view &%1 + Obnovení zobrazení &%1 + + + Save frozen views + Uložit zmrazené pohledy + + + Frozen views (*.cam) + Zmrazené pohledy (*.cam) + + + Restore views + Obnovit pohledy + + + Importing the restored views would clear the already stored views. +Do you want to continue? + Import obnovených pohledů by zrušil již uložené zobrazení. Chcete pokračovat? + + + Restore frozen views + Obnovit zmrazené pohledy + + + Cannot open file '%1'. + Nelze otevřít soubor '%1'. + + + Docked + Zakotvený + + + Undocked + Uvolněný + + + Fullscreen + Celá obrazovka + + + files + soubory + + + Save picture + Uložit obrázek + + + New sub-group + Nová podskupina + + + Enter the name: + Zadat název: + + + New text item + Nová textová položka + + + Enter your text: + Zadejte text: + + + New integer item + Nová položka Integer + + + Enter your number: + Zadejte číslo: + + + New unsigned item + Nové položka nepodepsana + + + New float item + Nové položka float + + + New Boolean item + Nová položka Boolean + + + Choose an item: + Zvolte položku: + + + Rename group + Přejmenovat skupinu + + + The group '%1' cannot be renamed. + Skupina '%1' nemůže být přejmenována. + + + Existing group + Existující skupina + + + The group '%1' already exists. + Skupina '%1' již existuje. + + + Change value + Změnit hodnotu + + + Save document under new filename... + Uložte dokument pod novým názvem... + + + Saving aborted + Ukládání bylo přerušeno + + + Unsaved document + Neuložený dokument + + + Save document before close? + Uložit dokument před zavřením? + + + Save Macro + Uložit makro + + + Finish + Dokončit + + + Clear + Vyčistit + + + Cancel + Zrušit + + + Inner + Vnitřní + + + Outer + Vnější + + + No Browser + Žádný prohlížeč + + + Unable to open your browser. + +Please open a browser window and type in: http://localhost:%1. + Nelze otevřít prohlížeč. + +Prosím, otevřete okno prohlížeče a zadejte: http://localhost:%1. + + + No Server + Žádný Server + + + Unable to start the server to port %1: %2. + Nelze spustit server na portu %1: %2. + + + Unable to open your system browser. + Nelze otevřít systémový prohlížeč. + + + Options... + Možnosti... + + + Out of memory + Nedostatek paměti + + + Not enough memory available to display the data. + Není dostatek paměti pro zobrazení dat. + + + Cannot find file %1 + Nelze najít soubor %1 + + + Cannot find file %1 neither in %2 nor in %3 + Nelze najít soubor %1 %2 ani v %3 + + + Save %1 Document + Uložit dokument %1 + + + %1 document (*.FCStd) + dokument %1 (*.FCStd) + + + Save As + Uložit jako + + + %1 already exists. +Do you want to replace it? + %1 již existuje. +Chcete jej nahradit? + + + Document not closable + Dokument nelze uzavřít + + + The document is not closable for the moment. + V tuto chvili nelze dokument uzavřít. + + + No OpenGL + Bez OpenGL + + + This system does not support OpenGL + Tento systém nepodporuje OpenGL + + + Help + Pomoc + + + Unable to load documentation. +In order to load it Qt 4.4 or higher is required. + Nelze načíst dokumentaci. +Pro její načtení je třeba Qt 4.4 nebo vyšší. + + + %1 Help + %1 Pomoc + + + Exporting PDF... + Exportovat PDF... + + + Wrong selection + Neplatný výběr + + + Only one object selected. Please select two objects. +Be aware the point where you click matters. + Je vybrán pouze jeden objekt. Vyberte prosím dva. +Dejte si pozor na místo, kam klikáte. + + + Please select two objects. +Be aware the point where you click matters. + Prosím vyberte dva objekty. +Dejte si pozor na místo, kam klikáte. + + + New boolean item + Nová boolean položka + + + Navigation styles + Styly navigace + + + %1 navigation + %1 navigace + + + Move annotation + Přesunout poznámku + + + Transform + Transform + + + The document is in editing mode and thus cannot be closed for the moment. +You either have to finish or cancel the editing in the task panel. + The document is in editing mode and thus cannot be closed for the moment. +You either have to finish or cancel the editing in the task panel. + + + + StdBoxSelection + + Standard-View + Standardní pohledy + + + Box selection + Okno výběru + + + + StdCmdAbout + + Help + Pomoc + + + &About %1 + &O %1 + + + About %1 + O %1 + + + + StdCmdAboutQt + + Help + Pomoc + + + About &Qt + O &Qt + + + About Qt + O Qt + + + + StdCmdActivateNextWindow + + Window + Okno + + + Ne&xt + Další + + + Activate next window + Aktivovat další okno + + + + StdCmdActivatePrevWindow + + Window + Okno + + + Pre&vious + Předchozí + + + Activate previous window + Aktivovat Předchozí okno + + + + StdCmdAlignment + + Edit + Upravit + + + Alignment... + Zarovnání... + + + Align the selected objects + Zarovnat vybrané objekty + + + + StdCmdArrangeIcons + + Window + Okno + + + Arrange &Icons + Uspořádat &ikony + + + Arrange Icons + Uspořádat ikony + + + + StdCmdAxisCross + + Standard-View + Standardní pohledy + + + Toggle axis cross + Přepnout osový kříž + + + + StdCmdCascadeWindows + + Window + Okno + + + &Cascade + &Kaskáda + + + Tile pragmatic + Dlaždice + + + + StdCmdCloseActiveWindow + + Window + Okno + + + Cl&ose + Zavřít + + + Close active window + Zavřít aktivní okno + + + + StdCmdCloseAllWindows + + Window + Okno + + + Close Al&l + Zavřít vše + + + Close all windows + Zavřete všechna okna + + + + StdCmdCommandLine + + Tools + Nástroje + + + Start command &line... + Začátek příkazu &čára... + + + Opens the command line in the console + Otevře se příkazový řádek v konzole + + + + StdCmdCopy + + Edit + Upravit + + + C&opy + Kopírovat + + + Copy operation + Operace kopírování + + + + StdCmdCut + + Edit + Upravit + + + &Cut + Vyjmout + + + Cut out + Vystřihnout + + + + StdCmdDelete + + Edit + Upravit + + + &Delete + &Odstranit + + + Deletes the selected objects + Odstraní vybrané objekty + + + + StdCmdDemoMode + + Standard-View + Standardní pohledy + + + View turntable... + Zobrazit otáčení... + + + View turntable + Zobrazit otáčení + + + + StdCmdDlgCustomize + + Tools + Nástroje + + + Cu&stomize... + Přizpůsobit... + + + Customize toolbars and command bars + Přizpůsobit panely nástrojů a příkazů + + + + StdCmdDlgMacroExecute + + Macros ... + Makra... + + + Opens a dialog to let you execute a recorded macro + Otevře dialog pro spuštění zaznamenaných maker + + + Macro + Makro + + + + StdCmdDlgMacroExecuteDirect + + Macro + Makro + + + Execute macro + Spustit makro + + + Execute the macro in the editor + Spustit makro v editoru + + + + StdCmdDlgMacroRecord + + &Macro recording ... + Záznam makra... + + + Opens a dialog to record a macro + Otevře se dialogové okno nahrávání maker + + + Macro + Makro + + + + StdCmdDlgParameter + + Tools + Nástroje + + + E&dit parameters ... + Upravit parametry... + + + Opens a Dialog to edit the parameters + Otevře dialogové okno pro úpravu parametrů + + + + StdCmdDlgPreferences + + Tools + Nástroje + + + &Preferences ... + Nastavení ... + + + Opens a Dialog to edit the preferences + Otevře dialogové okno pro upravení předvoleb + + + + StdCmdDockViewMenu + + View + Pohled + + + Vie&ws + Pohledy + + + Toggles this window + Přepíná toto okno + + + + StdCmdDrawStyle + + Standard-View + Standardní pohledy + + + Draw style + Styl kreslení + + + + StdCmdDuplicateSelection + + Edit + Upravit + + + Duplicate selection + Duplikovat výběr + + + Put duplicates of the selected objects to the active document + Vložit vybrané duplikáty objektů do aktivního dokumentu + + + + StdCmdEdit + + Edit + Upravit + + + Toggle &Edit mode + Přepnout režim úprav + + + Toggles the selected object's edit mode + Přepíná režim úprav vybraného objektu + + + Enters or leaves the selected object's edit mode + Enters or leaves the selected object's edit mode + + + + StdCmdExport + + File + Soubor + + + &Export... + Export... + + + Export an object in the active document + Export objektu v aktivním dokumentu + + + No selection + Žádný výběr + + + Please select first the objects you want to export. + Please select first the objects you want to export. + + + + StdCmdExportGraphviz + + Tools + Nástroje + + + Dependency graph... + Graf závislosti... + + + Show the dependency graph of the objects in the active document + Show the dependency graph of the objects in the active document + + + + StdCmdFeatRecompute + + File + Soubor + + + &Recompute + Přepočítat + + + Recompute feature or document + Přepočítat funkce nebo dokument + + + + StdCmdFreeCADWebsite + + Help + Pomoc + + + FreeCAD Website + FreeCAD stránky + + + The FreeCAD website + Webové stránky FreeCAD + + + + StdCmdFreezeViews + + Standard-View + Standardní pohledy + + + Freeze display + Zmrazit zobrazení + + + Freezes the current view position + Zmrazí aktuální pozici zobrazení + + + + StdCmdHideObjects + + Standard-View + Standardní pohledy + + + Hide all objects + Skrýt všechny objekty + + + Hide all objects in the document + Skrýt všechny objekty v dokumentu + + + + StdCmdHideSelection + + Standard-View + Standardní pohledy + + + Hide selection + Skrýt vybrané + + + Hide all selected objects + Skrýt všechny vybrané objekty + + + + StdCmdImport + + File + Soubor + + + &Import... + Importovat... + + + Import a file in the active document + Import soubor v aktivním dokumentu + + + Supported formats + Podporované formáty + + + All files (*.*) + Všechny soubory (*.*) + + + + StdCmdMacroStartDebug + + Macro + Makro + + + Debug macro + Ladit makro + + + Start debugging of macro + Spustit ladění makra + + + + StdCmdMacroStepOver + + Macro + Makro + + + Step over + Přeskočit + + + + StdCmdMacroStopDebug + + Macro + Makro + + + Stop debugging + Zastavit ladění + + + Stop debugging of macro + Zastavit ladění makra + + + + StdCmdMacroStopRecord + + Macro + Makro + + + S&top macro recording + Zastavit nahrávání makra + + + Stop the macro recording session + Zastavit nahrávání makra + + + + StdCmdMeasureDistance + + View + Pohled + + + Measure distance + Změřit vzdálenost + + + + StdCmdMeasurementSimple + + Tools + Nástroje + + + Measures distance between two selected objects + Vzdálenost me dvěma vybranými objekty + + + Measure distance + Změřit vzdálenost + + + + StdCmdMergeProjects + + File + Soubor + + + Merge project... + Sloučit projekt... + + + Merge project + Sloučit projekt + + + %1 document (*.fcstd) + dokument %1 (*.fcstd) + + + Cannot merge project with itself. + Nelze sloučit projekt se sebou samým. + + + + StdCmdNew + + File + Soubor + + + &New + Nový + + + Create a new empty document + Vytvořit nový prázdný dokument + + + + StdCmdOnlineHelp + + Help + Pomoc + + + Show help to the application + Zobrazí nápovědu k aplikaci + + + + StdCmdOnlineHelpWebsite + + Help + Pomoc + + + Help Website + Web pomoc + + + The website where the help is maintained + Webové stránky, kde je nápověda udržována + + + + StdCmdOpen + + File + Soubor + + + &Open... + Otevřít... + + + Open a document or import files + Otevřít dokument nebo importovat soubory + + + Supported formats + Podporované formáty + + + All files (*.*) + Všechny soubory (*.*) + + + + StdCmdPaste + + Edit + Upravit + + + &Paste + &Vložit + + + Paste operation + Operace vložení + + + + StdCmdPlacement + + Edit + Upravit + + + Placement... + Umístění... + + + Place the selected objects + Umístit vybrané objekty + + + + StdCmdPrint + + File + Soubor + + + &Print... + Tisk... + + + Print the document + Tisk dokumentu + + + + StdCmdPrintPdf + + File + Soubor + + + &Export PDF... + Export do PDF... + + + Export the document as PDF + Exportovat dokument jako PDF + + + + StdCmdPrintPreview + + File + Soubor + + + &Print preview... + &Náhled tisku... + + + Print the document + Tisk dokumentu + + + Print preview + Náhled tisku + + + + StdCmdProjectInfo + + File + Soubor + + + Project i&nformation... + Informace o projektu... + + + Show details of the currently active project + Zobrazit podrobnosti o aktivním projektu + + + + StdCmdProjectUtil + + Tools + Nástroje + + + Project utility... + Nástroje projektu... + + + Utility to extract or create project files + Nástroje na rozbalení a nebo vytvoření souborů projetu + + + + StdCmdPythonWebsite + + Help + Pomoc + + + Python Website + Python Web + + + The official Python website + Oficiální stránky Pythonu + + + + StdCmdQuit + + File + Soubor + + + E&xit + Konec + + + Quits the application + Ukončí aplikaci + + + + StdCmdRandomColor + + File + Soubor + + + Random color + Náhodná barva + + + + StdCmdRecentFiles + + File + Soubor + + + Recent files + Nedávné soubory + + + Recent file list + Seznam naposledy otevřených souborů + + + + StdCmdRedo + + Edit + Upravit + + + &Redo + Znovu + + + Redoes a previously undone action + Znovu provést předchozí vrácenou akci + + + + StdCmdRefresh + + Edit + Upravit + + + &Refresh + Aktualizovat + + + Recomputes the current active document + Přepočítat aktivní dokument + + + + StdCmdSave + + File + Soubor + + + &Save + Uložit + + + Save the active document + Uloží aktivní dokument + + + + StdCmdSaveAs + + File + Soubor + + + Save &As... + Uložit jako... + + + Save the active document under a new file name + Uložit aktivní dokument pod novým názvem + + + + StdCmdSceneInspector + + Tools + Nástroje + + + Scene inspector... + Prohlížeč scén... + + + Scene inspector + Prohlížeč scén + + + + StdCmdSelectAll + + Edit + Upravit + + + Select &All + Vybrat vše + + + Select all + Vybrat vše + + + + StdCmdSetAppearance + + Standard-View + Standardní pohledy + + + Appearance... + Vzhled... + + + Sets the display properties of the selected object + Nastaví vlastnosti zobrazení vybraného objektu + + + + StdCmdShowObjects + + Standard-View + Standardní pohledy + + + Show all objects + Zobrazit všechny objekty + + + Show all objects in the document + Zobrazit všechny objekty v dokumentu + + + + StdCmdShowSelection + + Standard-View + Standardní pohledy + + + Show selection + Zobrazit výběr + + + Show all selected objects + Zobrazit všechny vybrané objekty + + + + StdCmdStatusBar + + View + Pohled + + + Status bar + Stavový řádek + + + Toggles the status bar + Přepíná stavový řádek + + + + StdCmdTextureMapping + + Tools + Nástroje + + + Texture mapping... + Mapování textury... + + + Texture mapping + Mapování textury + + + + StdCmdTileWindows + + Window + Okno + + + &Tile + &Dlaždice + + + Tile the windows + Uspořádání oken + + + + StdCmdToggleBreakpoint + + Macro + Makro + + + Toggle breakpoint + Přepnout bod přerušení + + + + StdCmdToggleClipPlane + + Standard-View + Standardní pohledy + + + Clipping plane + Střižná rovina + + + Toggles clipping plane for active view + Přepíná střižnou rovinu pro aktivní pohled + + + + StdCmdToggleNavigation + + Standard-View + Standardní pohledy + + + Toggle navigation/Edit mode + Přepnout režim navigace/úprava + + + Toggle between navigation and edit mode + Přepnutí mezi režimem úprav a navigací + + + + StdCmdToggleObjects + + Standard-View + Standardní pohledy + + + Toggle all objects + Přepíná všechny objekty + + + Toggles visibility of all objects in the active document + Přepíná viditelnost všech objektů v aktivním dokumentu + + + + StdCmdToggleSelectability + + Standard-View + Standardní pohledy + + + Toggle selectability + Přepnout možnost výběru + + + Toggles the property of the objects to get selected in the 3D-View + Toggles the property of the objects to get selected in the 3D-View + + + + StdCmdToggleVisibility + + Standard-View + Standardní pohledy + + + Toggle visibility + Přepnout viditelnost + + + Toggles visibility + Přepíná viditelnost + + + + StdCmdToolBarMenu + + View + Pohled + + + Tool&bars + Panel nástrojů + + + Toggles this window + Přepíná toto okno + + + + StdCmdTransform + + Edit + Upravit + + + Transform... + Transformace... + + + Transform the geometry of selected objects + Transform the geometry of selected objects + + + + StdCmdTreeSelection + + View + Pohled + + + Go to selection + Přejít na výběr + + + Scroll to first selected item + Posun na první vybranou položku + + + + StdCmdUndo + + Edit + Upravit + + + &Undo + &Zpět + + + Undo exactly one action + Vrátit zpět jednu akci + + + + StdCmdUserInterface + + View + Pohled + + + Dock views + Ukotvit pohledy + + + Dock all top-level views + Ukotvit všechny pohledy nejvyšší úrovně + + + + StdCmdViewAxo + + Standard-View + Standardní pohledy + + + Axometric + Axonometrický + + + Set to axometric view + Nastavit na axonometrický pohled + + + + StdCmdViewBottom + + Standard-View + Standardní pohledy + + + Bottom + Dole + + + Set to bottom view + Nastavit na spodní pohled + + + + StdCmdViewCreate + + Standard-View + Standardní pohledy + + + Create new view + Vytvořit nový pohled + + + Creates a new view window for the active document + Vytvoří nové okno zobrazení pro aktivní dokument. + + + + StdCmdViewExample1 + + Standard-View + Standardní pohledy + + + Inventor example #1 + Příklad konstrukce #1 + + + Shows a 3D texture with manipulator + Zobrazí 3D textury a manipulátor + + + + StdCmdViewExample2 + + Standard-View + Standardní pohledy + + + Inventor example #2 + Příklad návrhu #2 + + + Shows spheres and drag-lights + Ukazuje koule a světla + + + + StdCmdViewExample3 + + Standard-View + Standardní pohledy + + + Inventor example #3 + Příklad návrhu #3 + + + Shows a animated texture + Zobrazí animované textury + + + + StdCmdViewFitAll + + Standard-View + Standardní pohledy + + + Fit all + Zaměřit zobrazení na vše + + + Fits the whole content on the screen + Zaměří zobrazení na obsah obrazovky + + + + StdCmdViewFitSelection + + Standard-View + Standardní pohledy + + + Fit selection + Zaměřit zobrazení na výběr + + + Fits the selected content on the screen + Zaměřit zobrazení na vybraný dokument + + + + StdCmdViewFront + + Standard-View + Standardní pohledy + + + Front + Přední + + + Set to front view + Nastavit na čelní pohled + + + + StdCmdViewIvIssueCamPos + + Standard-View + Standardní pohledy + + + Issue camera position + Výchozí postavení kamery + + + Issue the camera position to the console and to a macro, to easily recall this position + Výchozí nastavení pozice kamery v konzole a v makru pro jednoduší vyvolání této pozice + + + + StdCmdViewIvStereoInterleavedColumns + + Standard-View + Standardní pohledy + + + Stereo Interleaved Columns + Stereo prokládané sloupci + + + Switch stereo viewing to Interleaved Columns + Přepnout stereo pohled na prokládané sloupce + + + + StdCmdViewIvStereoInterleavedRows + + Standard-View + Standardní pohledy + + + Stereo Interleaved Rows + Stereo prokládané řádky + + + Switch stereo viewing to Interleaved Rows + Přepnout stereo pohled na prokládané řádky + + + + StdCmdViewIvStereoOff + + Standard-View + Standardní pohledy + + + Stereo Off + Stereo vypnuto + + + Switch stereo viewing off + Vypnout stereo pohled + + + + StdCmdViewIvStereoQuadBuff + + Standard-View + Standardní pohledy + + + Stereo quad buffer + Quad stereo vyrovnávání + + + Switch stereo viewing to quad buffer + Přepnout stereo pohled na quad vyrovnávání + + + + StdCmdViewIvStereoRedGreen + + Standard-View + Standardní pohledy + + + Stereo red/green + Stereo červená/zelená + + + Switch stereo viewing to red/green + Přepnout stereo zobrazení červená/zelená + + + + StdCmdViewLeft + + Standard-View + Standardní pohledy + + + Left + Vlevo + + + Set to left view + Nastavit na levý pohled + + + + StdCmdViewRear + + Standard-View + Standardní pohledy + + + Rear + Zadní + + + Set to rear view + Nastavte na zadní pohled + + + + StdCmdViewRight + + Standard-View + Standardní pohledy + + + Right + Vpravo + + + Set to right view + Nastavit na pravý pohled + + + + StdCmdViewRotateLeft + + Standard-View + Standardní pohledy + + + Rotate Left + Otočit doleva + + + Rotate the view by 90° counter-clockwise + Rotate the view by 90° counter-clockwise + + + + StdCmdViewRotateRight + + Standard-View + Standardní pohledy + + + Rotate Right + Otočit doprava + + + Rotate the view by 90° clockwise + Rotate the view by 90° clockwise + + + + StdCmdViewTop + + Standard-View + Standardní pohledy + + + Top + Horní + + + Set to top view + Nastavit na horní pohled + + + + StdCmdWhatsThis + + Help + Pomoc + + + &What's This? + Co to je? + + + What's This + Co to je + + + + StdCmdWindows + + Window + Okno + + + &Windows... + Okna... + + + Windows list + Seznam oken + + + + StdCmdWindowsMenu + + Window + Okno + + + Activates this window + Aktivuje toto okno + + + + StdCmdWorkbench + + View + Pohled + + + Workbench + Workbench + + + Switch between workbenches + Přepnout mezi workbench + + + + StdOrthographicCamera + + Standard-View + Standardní pohledy + + + Orthographic view + Pravoúhlé zobrazení + + + Switches to orthographic view mode + Přepne do režimu pravoúhlého zobrazení + + + + StdPerspectiveCamera + + Standard-View + Standardní pohledy + + + Perspective view + Perspektivní zobrazení + + + Switches to perspective view mode + Přepne do režimu perspektiva + + + + StdViewBoxZoom + + Standard-View + Standardní pohledy + + + Box zoom + Zoom oknem + + + + StdViewDockUndockFullscreen + + Standard-View + Standardní pohledy + + + Document window + Okno dokumentu + + + Display the active view either in fullscreen, in undocked or docked mode + Zobrazuje aktivní pohled v plné obrazovce v neukotveném nebo ukotveném módu + + + + StdViewScreenShot + + Standard-View + Standardní pohledy + + + Save picture... + Uložit obrázek... + + + Creates a screenshot of the active view + Vytvoří snímek aktivního zobrazení + + + + StdViewZoomIn + + Standard-View + Standardní pohledy + + + Zoom In + Přiblížit + + + + StdViewZoomOut + + Standard-View + Standardní pohledy + + + Zoom Out + Oddálit + + + + Std_DrawStyle + + As is + Jako je + + + Normal mode + Normální režim + + + Wireframe + Drátěný + + + Wireframe mode + Drátěný režim + + + + Std_ExportGraphviz + + Graphviz not found + Graphviz not found + + + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + + + Graphviz installation path + Graphviz installation path + + + Dependency graph + Dependency graph + + + Graphviz failed + Graphviz failed + + + Graphviz failed to create an image file + Graphviz failed to create an image file + + + + Workbench + + &File + Soubor + + + &Edit + Upravit + + + Standard views + Standardní zobrazení + + + &Stereo + Stereo + + + &Zoom + Přiblížení + + + Visibility + Vditelnost + + + &View + & Pohled + + + &Tools + & Nástroje + + + &Macro + &Makro + + + &Windows + & Okna + + + &On-line help + & On-line Nápověda + + + &Help + Pomoc + + + File + Soubor + + + Macro + Makro + + + View + Pohled + + + Special Ops + Speciální operace + + + + testClass + + test + test + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + <html><head><meta name="qrichtext" content="1" /> <style type="text/css"> +p, li {white-space: pre-wrap;} +</style></head><body style="font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style="font-size:20pt; font-weight:600;"> iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"> <span style="font-size:12pt;"> vytvořeno pro Qt 4.3.x verze</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"> www.ii-system.com</p></body></html> + + + Choose the style of the Task Panel + Zvolte styl pro zobrazení panelu úloh + + + Default + Výchozí + + + Windows XP + Windows XP + + + diff --git a/src/Gui/Language/FreeCAD_de.qm b/src/Gui/Language/FreeCAD_de.qm index eb219029f..48a2b584f 100644 Binary files a/src/Gui/Language/FreeCAD_de.qm and b/src/Gui/Language/FreeCAD_de.qm differ diff --git a/src/Gui/Language/FreeCAD_de.ts b/src/Gui/Language/FreeCAD_de.ts index 07c2a2f0b..197748461 100644 --- a/src/Gui/Language/FreeCAD_de.ts +++ b/src/Gui/Language/FreeCAD_de.ts @@ -1,5914 +1,5843 @@ - - + + Angle - Form - Form + Form + Form - A: - A: + A: + A: - B: - B: + B: + B: - C: - C: + C: + C: - Angle Snap - Einrastwinkel + Angle Snap + Einrastwinkel - - 1 ° - 1 ° + + 1 ° + 1 ° - - 2 ° - 2 ° + + 2 ° + 2 ° - - 5 ° - 5 ° + + 5 ° + 5 ° - - 10 ° - 10 ° + + 10 ° + 10 ° - - 20 ° - 20 ° + + 20 ° + 20 ° - - 45 ° - 45 ° + + 45 ° + 45 ° - - 90 ° - 90 ° + + 90 ° + 90 ° - - 180 ° - 180 ° + + 180 ° + 180 ° - - + + Gui::AccelLineEdit - none - kein + none + kein - - + + Gui::ActionSelector - Available: - + Available: + Verfügbar: - Selected: - + Selected: + Ausgewählt: - Add - Hinzufügen + Add + Hinzufügen - Remove - Entfernen + Remove + Entfernen - Move up - Noch oben verschieben + Move up + Noch oben verschieben - Move down - Nache unten verschieben + Move down + Nache unten verschieben - - + + Gui::AlignmentView - Movable object - + Movable object + Bewegliches Objekt - Fixed object - + Fixed object + Festes Objekt - - + + Gui::BlenderNavigationStyle - Press left mouse button - Drücken Sie die linke Maustaste + Press left mouse button + Drücken Sie die linke Maustaste - Press SHIFT and middle mouse button - Drücke die Umschalttaste und die mittlere Maustaste + Press SHIFT and middle mouse button + Drücke die Umschalttaste und die mittlere Maustaste - Press middle mouse button - Drücken Sie die mittlere Maustaste + Press middle mouse button + Drücken Sie die mittlere Maustaste - Scroll middle mouse button - Scrollen Sie die mittlere Maustaste + Scroll middle mouse button + Scrollen Sie die mittlere Maustaste - - + + Gui::CADNavigationStyle - Press left mouse button - Drücken Sie die linke Maustaste + Press left mouse button + Drücken Sie die linke Maustaste - Press middle mouse button - Drücken Sie die mittlere Maustaste + Press middle mouse button + Drücken Sie die mittlere Maustaste - Press left and middle mouse button - Drücken Sie die linke und die mittlere Maustaste + Press left and middle mouse button + Drücken Sie die linke und die mittlere Maustaste - Scroll middle mouse button - Scrollen Sie die mittlere Maustaste + Scroll middle mouse button + Scrollen Sie die mittlere Maustaste - - + + Gui::Command - Standard - Standard + Standard + Standard - - + + Gui::ContainerDialog - &OK - &OK + &OK + &OK - &Cancel - A&bbrechen + &Cancel + A&bbrechen - - + + Gui::ControlSingleton - Task panel - Taskleiste + Task panel + Taskleiste - - + + Gui::Dialog::AboutApplication - About - Über + About + Über - Revision number - Revisionsnummer + Revision number + Revisionsnummer - Version - Version + Version + Version - OK - OK + OK + OK - - + + Text source - Release date - Erscheinungsdatum + Release date + Erscheinungsdatum - Platform - Plattform + Platform + Plattform - License... - Lizenz... + License... + Lizenz... - Copy to clipboard - + Copy to clipboard + In Zwischenablage kopieren - - + + Gui::Dialog::ButtonModel - Button %1 - Schaltfläche %1 + Button %1 + Schaltfläche %1 - Out Of Range - Außerhalb des Bereichs + Out Of Range + Außerhalb des Bereichs - - + + Gui::Dialog::CommandModel - Commands - Befehle + Commands + Befehle - - + + Gui::Dialog::DemoMode - View Turntable - Drehteller + View Turntable + Drehteller - Speed - Geschwindigkeit + Speed + Geschwindigkeit - Maximum - Maximum + Maximum + Maximum - Minimum - Minimum + Minimum + Minimum - Fullscreen - Vollbild + Fullscreen + Vollbild - Enable timer - Timer aktivieren + Enable timer + Timer aktivieren - s - s + s + s - Angle - Winkel - - - 90° - 90° - - - -90° - -90 ° + Angle + Winkel - Play - Wiedergabe + 90° + 90° - Stop - Beenden + -90° + -90 ° - Close - Schließen + Play + Wiedergabe - - + + Stop + Beenden + + + Close + Schließen + + + Gui::Dialog::DlgActivateWindow - Choose Window - Fenster auswählen + Choose Window + Fenster auswählen - &Activate - &Aktivieren + &Activate + &Aktivieren - Alt+A - Alt+B + Alt+A + Alt+B - &Cancel - A&bbrechen + &Cancel + A&bbrechen - - + + Text source - - + + Gui::Dialog::DlgActivateWindowImp - Windows - Fenster + Windows + Fenster - - + + Gui::Dialog::DlgAuthorization - Authorization - Autorisiertung + Authorization + Autorisiertung - &OK - &OK + &OK + &OK - &Cancel - A&bbrechen + &Cancel + A&bbrechen - Password: - Kennwort: + Password: + Kennwort: - User name: - Benutzerame: + User name: + Benutzerame: - - + + Text source - - + + Gui::Dialog::DlgChooseIcon - Choose Icon - Symbol auswählen + Choose Icon + Symbol auswählen - OK - OK + OK + OK - Cancel - Abbrechen + Cancel + Abbrechen - Add icons... - Symbole hinzufügen... + Add icons... + Symbole hinzufügen... - - + + Gui::Dialog::DlgCustomActions - Macros - Makros + Macros + Makros - Setup Custom Macros - Erstellen benutzerdefinierter Makros + Setup Custom Macros + Erstellen benutzerdefinierter Makros - Macro: - Makro: + Macro: + Makro: - ... - ... + ... + ... - Pixmap - Symbol + Pixmap + Symbol - Accelerator: - Tastenbelegung: + Accelerator: + Tastenbelegung: - What's this: - Direkthilfe: + What's this: + Direkthilfe: - Status text: - Statustext: + Status text: + Statustext: - Tool tip: - Tooltipp: + Tool tip: + Tooltipp: - Menu text: - Menütext: + Menu text: + Menütext: - Add - Hinzufügen + Add + Hinzufügen - Remove - Entfernen + Remove + Entfernen - Replace - Ersetzen + Replace + Ersetzen - - + + Gui::Dialog::DlgCustomActionsImp - Icons - Symbole + Icons + Symbole - Macros - Makros + Macros + Makros - No macro - Kein Makro + No macro + Kein Makro - No macros found. - Keine Makros gefunden. + No macros found. + Keine Makros gefunden. - Macro not found - Makro nicht gefunden + Macro not found + Makro nicht gefunden - Sorry, couldn't find macro file '%1'. - Das Makro '%1' konnte nicht gefunden werden. + Sorry, couldn't find macro file '%1'. + Das Makro '%1' konnte nicht gefunden werden. - Empty macro - Leeres Makrofeld + Empty macro + Leeres Makrofeld - Please specify the macro first. - Wählen Sie bitte vorher das Makro aus. + Please specify the macro first. + Wählen Sie bitte vorher das Makro aus. - Empty text - Leeres Textfeld + Empty text + Leeres Textfeld - Please specify the menu text first. - Geben Sie bitte den Menütext an. + Please specify the menu text first. + Geben Sie bitte den Menütext an. - No item selected - Kein Element ausgewählt + No item selected + Kein Element ausgewählt - Please select a macro item first. - Wählen Sie bitte vorher ein Makroelement aus. + Please select a macro item first. + Wählen Sie bitte vorher ein Makroelement aus. - - + + Gui::Dialog::DlgCustomCommands - Commands - Befehle + Commands + Befehle - - + + Text source - - + + Gui::Dialog::DlgCustomCommandsImp - Category - Kategorie + Category + Kategorie - Icon - Symbol + Icon + Symbol - Command - Befehl + Command + Befehl - - + + Gui::Dialog::DlgCustomKeyboard - Keyboard - Tastatur + Keyboard + Tastatur - Description: - Beschreibung: + Description: + Beschreibung: - &Category: - &Kategorie: + &Category: + &Kategorie: - C&ommands: - Be&fehle: + C&ommands: + Be&fehle: - Current shortcut: - Aktuell verwendete Tastenkombination: + Current shortcut: + Aktuell verwendete Tastenkombination: - Press &new shortcut: - &Neue Tastenkombination drücken: + Press &new shortcut: + &Neue Tastenkombination drücken: - Currently assigned to: - Im Moment verwendet von: + Currently assigned to: + Im Moment verwendet von: - &Assign - Zu&weisen + &Assign + Zu&weisen - Alt+A - Alt+B + Alt+A + Alt+B - &Reset - Zu&rücksetzen + &Reset + Zu&rücksetzen - Alt+R - Alt+R + Alt+R + Alt+R - Re&set All - &Alles zurücksetzen + Re&set All + &Alles zurücksetzen - Alt+S - Alt+S + Alt+S + Alt+S - - + + Text source - - + + Gui::Dialog::DlgCustomKeyboardImp - Icon - Symbol + Icon + Symbol - Command - Befehl + Command + Befehl - none - kein + none + kein - Multiple defined shortcut - Mehrfach belegte Tastenkombination + Multiple defined shortcut + Mehrfach belegte Tastenkombination - The shortcut '%1' is defined more than once. This could result into unexpected behaviour. - Die Tastenkombination '%1' ist mehr als einmal vergeben. Dies kann zu unerwartetem Verhalten führen. + The shortcut '%1' is defined more than once. This could result into unexpected behaviour. + Die Tastenkombination '%1' ist mehr als einmal vergeben. Dies kann zu unerwartetem Verhalten führen. - Already defined shortcut - Bereits belegte Tastenkombination + Already defined shortcut + Bereits belegte Tastenkombination - The shortcut '%1' is already assigned to '%2'. + The shortcut '%1' is already assigned to '%2'. Please define another shortcut. - Die Tastenkombination '%1' wird bereits von '%2' verwendet. + Die Tastenkombination '%1' wird bereits von '%2' verwendet. Wählen Sie bitte eine andere Tastenkombination. - - + + Gui::Dialog::DlgCustomToolBoxbarsImp - Toolbox bars - Werkzeugleisten + Toolbox bars + Werkzeugleisten - - + + Gui::Dialog::DlgCustomToolbars - Toolbars - Symbolleisten + Toolbars + Symbolleisten - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Bemerkung:</span> Die Änderungen werden beim nächsten Laden des Arbeitsbereiches wirksam</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Bemerkung:</span> Die Änderungen werden beim nächsten Laden des Arbeitsbereiches wirksam</p></body></html> - Move right - Nach rechts verschieben + Move right + Nach rechts verschieben - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Ausgewähltes Element um eine Stufe nach unten verschieben.</b><p>Das verändert auch die Stufe des Vaterelements.</p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Ausgewähltes Element um eine Stufe nach unten verschieben.</b><p>Das verändert auch die Stufe des Vaterelements.</p> - Move left - Nach links verschieben + Move left + Nach links verschieben - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Ausgewähltes Element um eine Stufe nach oben verschieben.</b><p>Das verändert auch die Stufe des Vaterelements.</p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Ausgewähltes Element um eine Stufe nach oben verschieben.</b><p>Das verändert auch die Stufe des Vaterelements.</p> - Move down - Nache unten verschieben + Move down + Nache unten verschieben - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Ausgewähltes Element nach unten verschieben.</b><p>Das Element wird innerhalb der Hierarchiestufe verschoben.</p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Ausgewähltes Element nach unten verschieben.</b><p>Das Element wird innerhalb der Hierarchiestufe verschoben.</p> - Move up - Noch oben verschieben + Move up + Noch oben verschieben - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Ausgewähltes Element nach oben verschieben.</b><p>Das Element wird innerhalb der Hierarchiestufe verschoben.</p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Ausgewähltes Element nach oben verschieben.</b><p>Das Element wird innerhalb der Hierarchiestufe verschoben.</p> - New... - Neu... + New... + Neu... - Rename... - Umbenennen... + Rename... + Umbenennen... - Delete - Löschen + Delete + Löschen - Icon - Symbol + Icon + Symbol - Command - Befehl + Command + Befehl - <Separator> - <Trennlinie> + <Separator> + <Trennlinie> - New toolbar - Neue Symbolleiste + New toolbar + Neue Symbolleiste - Toolbar name: - Name der Symbolleiste: + Toolbar name: + Name der Symbolleiste: - Duplicated name - Doppelter Namen + Duplicated name + Doppelter Namen - The toolbar name '%1' is already used - Der Name der Symbolleiste '%1' wird bereits verwendet + The toolbar name '%1' is already used + Der Name der Symbolleiste '%1' wird bereits verwendet - Rename toolbar - Symbolleiste umbenennen + Rename toolbar + Symbolleiste umbenennen - - + + Text source - - + + Gui::Dialog::DlgCustomizeImp - Customize - Benutzerdefiniert + Customize + Benutzerdefiniert - &Help - &Hilfe + &Help + &Hilfe - &Close - Schl&ießen + &Close + S&chließen - - + + Gui::Dialog::DlgCustomizeSpaceball - Spaceball - Spaceball + Spaceball + Spaceball - No Spaceball Present - Kein Spaceball gefunden + No Spaceball Present + Kein Spaceball gefunden - Buttons - Schaltflächen + Buttons + Schaltflächen - Clear - Löschen + Clear + Löschen - Print Reference - Referenz anzeigen + Print Reference + Referenz anzeigen - - + + Gui::Dialog::DlgDisplayProperties - Display properties - Anzeigeeigenschaften + Display properties + Anzeigeeigenschaften - Display - Anzeige + Display + Anzeige - Transparency: - Transparenz: + Transparency: + Transparenz: - Line width: - Linienstärke: + Line width: + Linienstärke: - Point size: - Punktgröße: + Point size: + Punktgröße: - Material - Material + Material + Material - ... - ... + ... + ... - Close - Schließen + Close + Schließen - Viewing mode - Anzeigemodus + Viewing mode + Anzeigemodus - Display mode: - Anzeigemodus: + Plot mode: + Plotmodus: - Plot mode: - Plotmodus: + + Text source - - + Line transparency: + Linientransparenz: - Line transparency: - Linientransparenz: + Line color: + Linienfarbe: - Line color: - Linienfarbe: + Shape color: + Flächenfarbe: - Shape color: - Flächenfarbe: + Color plot: + Farb-Plot: - Color plot: - Farb-Plot: + Document window: + Dokumentfenster: - - Document window: - - - - + + Gui::Dialog::DlgEditorSettings - Editor - Editor + Editor + Editor - Options - Optionen + Options + Optionen - Enable line numbers - Zeilennummerierung + Enable line numbers + Zeilennummerierung - Enable folding - Faltung zulassen + Enable folding + Faltung zulassen - Indentation - Einrückung + Indentation + Einrückung - Insert spaces - Leerzeichen-Einrückung beibehalten + Insert spaces + Leerzeichen-Einrückung beibehalten - Tab size: - Tabulator-Breite: + Tab size: + Tabulator-Breite: - Indent size: - Einrückungsbreite: + Indent size: + Einrückungsbreite: - Keep tabs - Tanulator-Einrückung beibehalten + Keep tabs + Tanulator-Einrückung beibehalten - Display Items - Elemente + Display Items + Elemente - Family: - Familie: + Family: + Familie: - Size: - Größe: + Size: + Größe: - Preview: - Vorschau: + Preview: + Vorschau: - - + + Text source - - + + Gui::Dialog::DlgGeneral - General - Allgemein + General + Allgemein - Start up - Start + Start up + Start - Enable splash screen at start up - Splashscreen beim Starten anzeigen + Enable splash screen at start up + Splashscreen beim Starten anzeigen - Switch to tab of report window: - Wechsle zu Reiter des Ausgabefensters: + Switch to tab of report window: + Wechsle zu Reiter des Ausgabefensters: - Auto load module after start up: - Lade Modul automatisch nach Startvorgang: + Auto load module after start up: + Lade Modul automatisch nach Startvorgang: - Language - Sprache + Language + Sprache - Change language: - Sprache auswählen: + Change language: + Sprache auswählen: - Main window - Hauptfenster + Main window + Hauptfenster - Size of recent file list - Anzahl der zuletzt benutzten Dateien + Size of recent file list + Anzahl der zuletzt benutzten Dateien - Window style: - Fenster-Stil: + Window style: + Fenster-Stil: - Size of toolbar icons: - Bildgröße in Symbolleisten: + Size of toolbar icons: + Bildgröße in Symbolleisten: - - + + Gui::Dialog::DlgGeneralImp - Default (%1 x %1) - Standard (%1 x %1) + Default (%1 x %1) + Standard (%1 x %1) - Small (%1 x %1) - Klein (%1 x %1) + Small (%1 x %1) + Klein (%1 x %1) - Large (%1 x %1) - Groß (%1 x %1) + Large (%1 x %1) + Groß (%1 x %1) - Extra large (%1 x %1) - Extra groß (%1 x %1) + Extra large (%1 x %1) + Extra groß (%1 x %1) - - + + Gui::Dialog::DlgInputDialog - Input - Eingabe + Input + Eingabe - OK - OK + OK + OK - Cancel - Abbrechen + Cancel + Abbrechen - - + + Text source - - + + Gui::Dialog::DlgInspector - Scene Inspector - Scene Inspector + Scene Inspector + Scene Inspector - - + + Gui::Dialog::DlgMacroExecute - Execute macro - Makro ausführen + Execute macro + Makro ausführen - Macro name: - Makroname: + Macro name: + Makroname: - Macro destination: - Makro-Zielpfad: + Macro destination: + Makro-Zielpfad: - Execute - Ausführen + Execute + Ausführen - Close - Schließen + Close + Schließen - Create - Erstellen + Create + Erstellen - Delete - Löschen + Delete + Löschen - Edit - Bearbeiten + Edit + Bearbeiten - - + + Gui::Dialog::DlgMacroExecuteImp - Macros - Makros + Macros + Makros - Macro file - Makro-Datei + Macro file + Makro-Datei - Enter a file name, please: - Geben Sie bitte einen Dateinamen an: + Enter a file name, please: + Geben Sie bitte einen Dateinamen an: - Existing file - Vorhandene Datei + Existing file + Vorhandene Datei - '%1'. + '%1'. This file already exists. - '%1'.\n + '%1'.\n Diese Datei ist bereits vorhanden. - Delete macro - Makro löschen + Delete macro + Makro löschen - Do you really want to delete the macro '%1'? - Möchten Sie das Makro '%1' wirklich löschen? + Do you really want to delete the macro '%1'? + Möchten Sie das Makro '%1' wirklich löschen? - Cannot create file - Datei kann nicht erstellt werden + Cannot create file + Datei kann nicht erstellt werden - Creation of file '%1' failed. - Erstellen der Datei %1' fehlgeschlagen. + Creation of file '%1' failed. + Erstellen der Datei %1' fehlgeschlagen. - - + + Gui::Dialog::DlgMacroRecord - Macro recording - Makroaufzeichnung + Macro recording + Makroaufzeichnung - Macro name: - Makroname: + Macro name: + Makroname: - Stop - Beenden + Stop + Beenden - Cancel - Abbrechen + Cancel + Abbrechen - Macro path: - Makro-Zielpfad: + Macro path: + Makro-Zielpfad: - ... - ... + ... + ... - Record - Aufzeichnen + Record + Aufzeichnen - - + + Gui::Dialog::DlgMacroRecordImp - Macro recorder - Makroaufzeichnung + Macro recorder + Makroaufzeichnung - Specify first a place to save. - Geben Sie vorher einen Speicherort an. + Specify first a place to save. + Geben Sie vorher einen Speicherort an. - Existing macro - Bestehendes Makro + Existing macro + Bestehendes Makro - The macro '%1' already exists. Do you want to overwrite? - Das Makro '%1' existiert bereits. Wollen Sie es überschreiben? + The macro '%1' already exists. Do you want to overwrite? + Das Makro '%1' existiert bereits. Wollen Sie es überschreiben? - The macro directory doesn't exist. Please, choose another one. - Das Makro-Verzeichnis existiert nicht. Wählen Sie bitte ein anderes aus. + The macro directory doesn't exist. Please, choose another one. + Das Makro-Verzeichnis existiert nicht. Wählen Sie bitte ein anderes aus. - Choose macro directory - Wählen Sie ein Makro-Verzeichnis + Choose macro directory + Wählen Sie ein Makro-Verzeichnis - - + + Gui::Dialog::DlgMaterialProperties - Material properties - Materialeigenschaften + Material properties + Materialeigenschaften - &Close - Schl&ießen + &Close + S&chließen - Alt+C - Alt+I + Alt+C + Alt+I - Material - Material + Material + Material - Diffuse color: - Streufarbe: + Diffuse color: + Streufarbe: - Specular color: - Glanzfarbe: + Specular color: + Glanzfarbe: - Shininess: - Glanz: + Shininess: + Glanz: - % - % + % + % - Ambient color: - Umgebungsfarbe: + Ambient color: + Umgebungsfarbe: - - + + Text source - Emissive color: - Ausstrahlfarbe: + Emissive color: + Ausstrahlfarbe: - - + + Gui::Dialog::DlgOnlineHelp - On-line help - Online-Hilfe + On-line help + Online-Hilfe - Help viewer - Hilfe + Help viewer + Hilfe - Location of start page - Ort der Startseite + Location of start page + Ort der Startseite - - + + Gui::Dialog::DlgOnlineHelpImp - HTML files (*.html *.htm) - HTML-Dateien (*.html *.htm) + HTML files (*.html *.htm) + HTML-Dateien (*.html *.htm) - Access denied - Zugriff verweigert + Access denied + Zugriff verweigert - Access denied to '%1' + Access denied to '%1' Specify another directory, please. - Zugriff auf '%1' verweigert + Zugriff auf '%1' verweigert Wählen Sie bitte ein anderes Verzeichnis aus. - - + + Gui::Dialog::DlgParameter - Parameter Editor - Parametereditor + Parameter Editor + Parametereditor - Save to disk - Speichern + Save to disk + Speichern - Alt+C - Alt+I + Alt+C + Alt+I - &Close - Schl&ießen + &Close + S&chließen - - + + Gui::Dialog::DlgParameterImp - Group - Gruppe + Group + Gruppe - Name - Name + Name + Name - Type - Typ + Type + Typ - Value - Wert + Value + Wert - User parameter - Benutzerdefinierte Parameter + User parameter + Benutzerdefinierte Parameter - Invalid input - Ungültige Eingabe + Invalid input + Ungültige Eingabe - Invalid key name '%1' - Ungültiger Schlüsselname '%1' + Invalid key name '%1' + Ungültiger Schlüsselname '%1' - System parameter - Systemparameter + System parameter + Systemparameter - - + + Gui::Dialog::DlgPreferences - Preferences - Einstellungen + Preferences + Einstellungen - &Help - &Hilfe + &Help + &Hilfe - Alt+H - Alt+H + Alt+H + Alt+H - &OK - &OK + &OK + &OK - &Apply - Ü&bernehmen + &Apply + Ü&bernehmen - Alt+A - Alt+B + Alt+A + Alt+B - &Cancel - A&bbrechen + &Cancel + A&bbrechen - - + + Text source - - + + Gui::Dialog::DlgPreferencesImp - Wrong parameter - Falscher Parameter + Wrong parameter + Falscher Parameter - - + + Gui::Dialog::DlgProjectInformation - Project information - Projektinformationen + Project information + Projektinformationen - Information - Information + Information + Information - &Name: - &Name: + &Name: + &Name: - Commen&t: - Kommen&tar: + Commen&t: + Kommen&tar: - Path: - Pfad: + Path: + Pfad: - &Last modified by: - Zuletzt &geändert von: + &Last modified by: + Zuletzt &geändert von: - Created &by: - Erstellt &von: + Created &by: + Erstellt &von: - Com&pany: - &Firma: + Com&pany: + &Firma: - Last &modification date: - Zuletzt geändert a&m: + Last &modification date: + Zuletzt geändert a&m: - Creation &date: - Erstell&datum: + Creation &date: + Erstell&datum: - &OK - &OK + &OK + &OK - &Cancel - A&bbrechen + &Cancel + A&bbrechen - - + + Text source - - + + Gui::Dialog::DlgProjectUtility - Project utility - Projekt-Hilfsprogramm + Project utility + Projekt-Hilfsprogramm - Extract project - Projekt entpacken + Extract project + Projekt entpacken - Source - Quelle + Source + Quelle - Project file (*.fcstd) - Projektdatei (*.fcstd) + Project file (*.fcstd) + Projektdatei (*.fcstd) - Destination - Zielort + Destination + Zielort - Extract - Entpacken + Extract + Entpacken - Create project - Projekt erstellen + Create project + Projekt erstellen - Document.xml - Document.xml + Document.xml + Document.xml - Create - Erstellen + Create + Erstellen - Load project file after creation - Projektdatei nach Erstellen laden + Load project file after creation + Projektdatei nach Erstellen laden - Empty source - Leerer Quellpfad + Empty source + Leerer Quellpfad - No source is defined. - Kein Quellpafd angegeben. + No source is defined. + Kein Quellpafd angegeben. - Empty destination - Leerer Zeilpfad + Empty destination + Leerer Zeilpfad - No destination is defined. - Kein Zielpfad angegeben. + No destination is defined. + Kein Zielpfad angegeben. - - + + Gui::Dialog::DlgReportView - Output window - Ausgabefenster + Output window + Ausgabefenster - Output - Ausgabe + Output + Ausgabe - Record log messages - Protokoll-Meldungen ausgeben + Record log messages + Protokoll-Meldungen ausgeben - Record warnings - Warnungen ausgeben + Record warnings + Warnungen ausgeben - Record error messages - Fehlermeldungen ausgeben + Record error messages + Fehlermeldungen ausgeben - Colors - Farben + Colors + Farben - Normal messages: - Normale Meldungen: + Normal messages: + Normale Meldungen: - Log messages: - Protokoll-Meldungen: + Log messages: + Protokoll-Meldungen: - Warnings: - Warnungen: + Warnings: + Warnungen: - Errors: - Fehlermeldungen: + Errors: + Fehlermeldungen: - - + + Text source - Redirect internal Python errors to report view - Interne Python-Fehlermeldungen auf Ausgabefenster umleiten + Redirect internal Python errors to report view + Interne Python-Fehlermeldungen auf Ausgabefenster umleiten - Redirect internal Python output to report view - Interne Python-Meldungen auf Ausgabefenster umleiten + Redirect internal Python output to report view + Interne Python-Meldungen auf Ausgabefenster umleiten - - + + Gui::Dialog::DlgRunExternal - Running external program - Externes Programm ausführen + Running external program + Externes Programm ausführen - TextLabel - TextLabel + TextLabel + TextLabel - Advanced >> - Erweitert >> + Advanced >> + Erweitert >> - ... - ... + ... + ... - Accept changes - Änderungen übernehmen + Accept changes + Änderungen übernehmen - Discard changes - Änderungen verwerfen + Discard changes + Änderungen verwerfen - Abort program - Programm abbrechen + Abort program + Programm abbrechen - Help - Hilfe + Help + Hilfe - Select a file - Wählen Sie eine Datei aus + Select a file + Wählen Sie eine Datei aus - - + + Gui::Dialog::DlgSettings3DView - 3D View - 3D-Viewer + 3D View + 3D-Viewer - 3D View settings - Einstellungen 3D-Viewer + 3D View settings + Einstellungen 3D-Viewer - Show coordinate system in the corner - Koordinatensystem in Ecke anzeigen + Show coordinate system in the corner + Koordinatensystem in Ecke anzeigen - Show counter of frames per second - Anzeigen der Datenrate pro Sekunde + Show counter of frames per second + Anzeigen der Datenrate pro Sekunde - Enable animation - Animation zulassen + Enable animation + Animation zulassen - Enable anti-aliasing (slower) - Anti-Aliasing aktivieren (langsam) + Enable anti-aliasing (slower) + Anti-Aliasing aktivieren (langsam) - Eye to eye distance for stereo modes: - Augabstand für Stereomodus: + Eye to eye distance for stereo modes: + Augabstand für Stereomodus: - Camera type - Kameratyp + Camera type + Kameratyp - Orthographic rendering - Orthographische Darstellung + Orthographic rendering + Orthographische Darstellung - Perspective rendering - Perspektivische Darstellung + Perspective rendering + Perspektivische Darstellung - - + + Text source - 3D Navigation - 3D-Navigation + 3D Navigation + 3D-Navigation - Mouse... - Maus... + Mouse... + Maus... - Intensity of backlight - Intensität der Hintergrundbeleuchtung + Intensity of backlight + Intensität der Hintergrundbeleuchtung - Enable backlight color - Aktiviere farbige Hintergrundbeleuchtung + Enable backlight color + Aktiviere farbige Hintergrundbeleuchtung - Orbit style - Orbit Stil + Orbit style + Orbit Stil - Turntable - Drehscheibe + Turntable + Drehscheibe - Trackball - Trackball + Trackball + Trackball - Invert zoom - Zoom umkehren + Invert zoom + Zoom umkehren - Zoom at cursor - + Zoom at cursor + Zoom an Cursorposition - Zoom step - + Zoom step + Zoom-Schritt - - + + Gui::Dialog::DlgSettings3DViewImp - %1 navigation - %1 Navigation + %1 navigation + %1 Navigation - - + + Gui::Dialog::DlgSettingsColorGradient - Color model - Farbmodell + Color model + Farbmodell - &Gradient: - &Verlauf: + &Gradient: + &Verlauf: - red-yellow-green-cyan-blue - Rot-Gelb-Grün-Türkis-Blau + red-yellow-green-cyan-blue + Rot-Gelb-Grün-Türkis-Blau - blue-cyan-green-yellow-red - Blau-Türkis-Grün-Gelb-Rot + blue-cyan-green-yellow-red + Blau-Türkis-Grün-Gelb-Rot - white-black - Weiß-Schwarz + white-black + Weiß-Schwarz - black-white - Schwarz-Weiß + black-white + Schwarz-Weiß - Visibility - Sichtbarkeit + Visibility + Sichtbarkeit - Out g&rayed - Außerhalb geg&raut + Out g&rayed + Außerhalb geg&raut - Alt+R - Alt+R + Alt+R + Alt+R - Out &invisible - Außerhalb uns&ichtbar + Out &invisible + Außerhalb uns&ichtbar - Alt+I - Alt+I + Alt+I + Alt+I - Style - Stil + Style + Stil - &Zero - N&ull-basiert + &Zero + N&ull-basiert - Alt+Z - Alt+U + Alt+Z + Alt+U - &Flow - &Fließend + &Flow + &Fließend - Alt+F - Alt+F + Alt+F + Alt+F - &OK - &OK + &OK + &OK - &Cancel - A&bbrechen + &Cancel + A&bbrechen - Parameter range - Parameterbereich + Parameter range + Parameterbereich - Mi&nimum: - Mi&nimum: + Mi&nimum: + Mi&nimum: - Ma&ximum: - Ma&ximum: + Ma&ximum: + Ma&ximum: - &Labels: - &Beschriftungen: + &Labels: + &Beschriftungen: - &Decimals: - Nach&kommastellen: + &Decimals: + Nach&kommastellen: - - + + Text source - Color-gradient settings - Farbverlauf-Einstellungen + Color-gradient settings + Farbverlauf-Einstellungen - - + + Gui::Dialog::DlgSettingsColorGradientImp - Wrong parameter - Falscher Parameter + Wrong parameter + Falscher Parameter - The maximum value must be higher than the minimum value. - Der Maximalwert muss größer als der Minimalwert sein. + The maximum value must be higher than the minimum value. + Der Maximalwert muss größer als der Minimalwert sein. - - + + Gui::Dialog::DlgSettingsDocument - Document - Dokument + Document + Dokument - General - Allgemein + General + Allgemein - Document save compression level + Document save compression level (0 = none, 9 = highest, 3 = default) - Kompressionsstufe beim Speichern des Dokuments + Kompressionsstufe beim Speichern des Dokuments (0 = keine, 9 = höchste, 3 = standardmäßige Kompression) - Create new document at start up - Neues Dokument beim Start erzeugen + Create new document at start up + Neues Dokument beim Start erzeugen - Storage - Speichern + Storage + Speichern - Saving transactions (Auto-save) - Transaktionen speichern (Automatisches Speichern) + Saving transactions (Auto-save) + Transaktionen speichern (Automatisches Speichern) - Discard saved transaction after saving document - Transaktionen nach Speichern von Dokument verwerfen + Discard saved transaction after saving document + Transaktionen nach Speichern von Dokument verwerfen - Save thumbnail into project file when saving document - Beim Speichern des Dokumentes Miniaturansicht in Projektdatei speichrn + Save thumbnail into project file when saving document + Beim Speichern des Dokumentes Miniaturansicht in Projektdatei speichrn - Create up to backup files when resaving document - Beim Speichern des Dokuments erstelle Backup-Dateien von bis zu + Create up to backup files when resaving document + Beim Speichern des Dokuments erstelle Backup-Dateien von bis zu - Document objects - Dokumentobjekte + Document objects + Dokumentobjekte - Allow duplicate object labels in one document - Doppelte Objektbezeichnungen in einem Dokument zulassen + Allow duplicate object labels in one document + Doppelte Objektbezeichnungen in einem Dokument zulassen - Maximum Undo/Redo steps - Maximale Rückgängigmachen/Wiederholen-Schritte + Maximum Undo/Redo steps + Maximale Rückgängigmachen/Wiederholen-Schritte - Using Undo/Redo on documents - Rückgängigmachen/Wiederholen in Dokumenten verwenden + Using Undo/Redo on documents + Rückgängigmachen/Wiederholen in Dokumenten verwenden - - + + Gui::Dialog::DlgSettingsEditorImp - Text - Text + Text + Text - Bookmark - Lesezeichen + Bookmark + Lesezeichen - Breakpoint - Haltepunkt + Breakpoint + Haltepunkt - Keyword - Schlüsselwort + Keyword + Schlüsselwort - Comment - Kommentieren + Comment + Kommentieren - Block comment - Blockkommentar + Block comment + Blockkommentar - Number - Ziffer + Number + Ziffer - String - Zeichenkette + String + Zeichenkette - Character - Zeichen + Character + Zeichen - Class name - Klassenname + Class name + Klassenname - Define name - Define-Name + Define name + Define-Name - Operator - Operator + Operator + Operator - Python output - Pythonausgabe + Python output + Pythonausgabe - Python error - Pythonfehler + Python error + Pythonfehler - Items - Elemente + Items + Elemente - Current line highlight - + Current line highlight + Aktuelle Zeile hervorheben - - + + Gui::Dialog::DlgSettingsImage - Image settings - Bildparameter + Image settings + Bildparameter - Image properties - Bildeigenschaften + Image properties + Bildeigenschaften - Back&ground: - Hinter&grund: + Back&ground: + Hinter&grund: - Current - Aktuell + Current + Aktuell - White - Weiß + White + Weiß - Black - Schwarz + Black + Schwarz - Transparent - Transparent + Transparent + Transparent - Image dimensions - Bildabmessungen + Image dimensions + Bildabmessungen - Pixel - Pixel + Pixel + Pixel - &Width: - &Breite: + &Width: + &Breite: - Current screen - Aktueller Bildschirm + Current screen + Aktueller Bildschirm - Icon 32 x 32 - Symbol 32 x 32 + Icon 32 x 32 + Symbol 32 x 32 - Icon 64 x 64 - Symbol 64 x 64 + Icon 64 x 64 + Symbol 64 x 64 - Icon 128 x 128 - Symbol 128 x 128 + Icon 128 x 128 + Symbol 128 x 128 - CGA 320 x 200 - CGA 320 x 320 + CGA 320 x 200 + CGA 320 x 320 - QVGA 320 x 240 - QVGA 320 x 240 + QVGA 320 x 240 + QVGA 320 x 240 - VGA 640 x 480 - VGA 640 x 480 + VGA 640 x 480 + VGA 640 x 480 - NTSC 720 x 480 - NISC 720 x 480 + NTSC 720 x 480 + NISC 720 x 480 - PAL 768 x 578 - PAL 768 x 578 + PAL 768 x 578 + PAL 768 x 578 - SVGA 800 x 600 - SVGA 800 x 600 + SVGA 800 x 600 + SVGA 800 x 600 - XGA 1024 x 768 - XGA 1024 x 768 + XGA 1024 x 768 + XGA 1024 x 768 - HD720 1280 x 720 - HD720 1280 x 720 + HD720 1280 x 720 + HD720 1280 x 720 - SXGA 1280 x 1024 - SXGA 1280 x 1024 + SXGA 1280 x 1024 + SXGA 1280 x 1024 - SXGA+ 1400 x 1050 - SXGA+ 1400 x 1050 + SXGA+ 1400 x 1050 + SXGA+ 1400 x 1050 - UXGA 1600 x 1200 - UXGA 1600 x 1200 + UXGA 1600 x 1200 + UXGA 1600 x 1200 - HD1080 1920 x 1080 - HD1080 1920 x 1080 + HD1080 1920 x 1080 + HD1080 1920 x 1080 - WUXGA 1920 x 1200 - WUXGA 1920 x 1200 + WUXGA 1920 x 1200 + WUXGA 1920 x 1200 - QXGA 2048 x 1538 - QXGA 2048 x 1538 + QXGA 2048 x 1538 + QXGA 2048 x 1538 - WQXGA 2560 x 1600 - WQXGA 2560 x 1600 + WQXGA 2560 x 1600 + WQXGA 2560 x 1600 - QSXGA 2560 x 2048 - QSXGA 2560 x 2024 - - - QUXGA 3200 × 2400 - QUXGA 3200 x 2400 - - - HUXGA 6400 × 4800 - HUXGA 6400 x 4800 + QSXGA 2560 x 2048 + QSXGA 2560 x 2024 - !!! 10000 x 10000 - !!! 10000 x 10000 + QUXGA 3200 × 2400 + QUXGA 3200 x 2400 - Standard sizes: - Standardauflösungen: + HUXGA 6400 × 4800 + HUXGA 6400 x 4800 - &Height: - &Höhe: + !!! 10000 x 10000 + !!! 10000 x 10000 - Aspect ratio: - Seitenverhältnis: + Standard sizes: + Standardauflösungen: - &Screen - Bild&schirm + &Height: + &Höhe: - Alt+S - Alt+S + Aspect ratio: + Seitenverhältnis: - &4:3 - &4:3 + &Screen + Bild&schirm - Alt+4 - Alt+4 + Alt+S + Alt+S - 1&6:9 - 1&6:9 + &4:3 + &4:3 - Alt+6 - Alt+6 + Alt+4 + Alt+4 - &1:1 - &1:1 + 1&6:9 + 1&6:9 - Alt+1 - Alt+1 + Alt+6 + Alt+6 - Image comment - Kommentar zum Bild + &1:1 + &1:1 - Insert MIBA - MIBA-Informationen einfügen + Alt+1 + Alt+1 - Insert comment - Kommentar einfügen + Image comment + Kommentar zum Bild - - + + Insert MIBA + MIBA-Informationen einfügen + + + Insert comment + Kommentar einfügen + + + Gui::Dialog::DlgSettingsMacro - Macro - Makro + Macro + Makro - Macro recording settings - Einstellugen für Makroaufzeichnung + Macro recording settings + Einstellugen für Makroaufzeichnung - Logging Commands - Befehle protokollieren + Logging Commands + Befehle protokollieren - Show script commands in python console - Skript-Befehle in Pythonkonsole anzeigen + Show script commands in python console + Skript-Befehle in Pythonkonsole anzeigen - Log all commands issued by menus to file: - Alle Menübefehle in Datei protokollieren: + Log all commands issued by menus to file: + Alle Menübefehle in Datei protokollieren: - FullScript.FCScript - FullScript.FCScript + FullScript.FCScript + FullScript.FCScript - Gui commands - GUI-Befehle + Gui commands + GUI-Befehle - Recording GUI commands - GUI-Befehle aufzeichnen + Recording GUI commands + GUI-Befehle aufzeichnen - Record as comment - Aufnahme als Kommentar behandeln + Record as comment + Aufnahme als Kommentar behandeln - Macro path - Makro-Zielpfad + Macro path + Makro-Zielpfad - General macro settings - + General macro settings + Allgemeine Makro-Einstellungen - Run macros in local environment - + Run macros in local environment + Makro in lokaler Umgebung ausführen - - + + Gui::Dialog::DlgSettingsUnits - Units - Einheiten + Units + Einheiten - Units settings - Einheiten-Einstellungen + Units settings + Einheiten-Einstellungen - Standard (mm/kg/s/degree) - Standard (mm/kg/s/Grad) + Standard (mm/kg/s/degree) + Standard (mm/kg/s/Grad) - MKS (m/kg/s/degree) - MKS (m/kg/s/Grad) + MKS (m/kg/s/degree) + MKS (m/kg/s/Grad) - Magnitude - Größenordnung + Magnitude + Größenordnung - Unit - Einheit + Unit + Einheit - User system: - Einheitsystem: + User system: + Einheitsystem: - Imperial (in/lb) - Imperial (in/lb) + Imperial (in/lb) + Imperial (in/lb) - - + + Gui::Dialog::DlgSettingsViewColor - Colors - Farben + Colors + Farben - Selection - Auswahl + Selection + Auswahl - Enable selection highlighting - Hervorhebung von Auswahl aktivieren + Enable selection highlighting + Hervorhebung von Auswahl aktivieren - Enable preselection highlighting - Hervorhebung von Vorauswahl aktivieren + Enable preselection highlighting + Hervorhebung von Vorauswahl aktivieren - Background color - Hintergrundfarbe + Background color + Hintergrundfarbe - Middle color - Mittlere Farbe + Middle color + Mittlere Farbe - Color gradient - Farbverlauf + Color gradient + Farbverlauf - Simple color - Einfache Farbe + Simple color + Einfache Farbe - Default colors - Standardfarben + Default colors + Standardfarben - Edited edge color - Farbe zu bearbeitender Kanten + Edited edge color + Farbe zu bearbeitender Kanten - Edited vertex color - Farbe zu bearbeitender Vertexe + Edited vertex color + Farbe zu bearbeitender Vertexe - Construction geometry - Konstruktionsgeometrie + Construction geometry + Konstruktionsgeometrie - Fully constrained geometry - Komplett festgelegte Geometrien + Fully constrained geometry + Komplett festgelegte Geometrien - The color of construction geometry in editmode - Die Farbe der Konstruktionsgeometrien im Editier-Modus + The color of vertices being edited + Die Farbe der zu bearbeitenden Vertexe - The color of fully constrained geometry in editmode - Die Farbe der komplett festgelegten Geometrien im Editier-Modus + The color of edges being edited + Die Farbe der zu bearbeitenden Kanten - The color of vertices being edited - Die Farbe der zu bearbeitenden Vertexe + The color of construction geometry in edit mode + Farbe von Konstruktionsgeometrie im Bearbeitungsmodus - The color of edges being edited - Die Farbe der zu bearbeitenden Kanten + The color of fully constrained geometry in edit mode + Farbe einer vollständig festgelegten Geometrie im Bearbeitungsmodus - The color of construction geometry in edit mode - + Cursor text color + Cursor-Textfarbe - The color of fully constrained geometry in edit mode - + Default shape color + Standard Shape Farbe - Cursor text color - + The default color for new shapes + Standardfarbe für neue Formen - Default shape color - + Default line width and color + Standardmäßige Linienstärke und -farbe - The default color for new shapes - + The default line color for new shapes + Standardmäßige Linienfarbe für neue Formen - Default line width and color - + The default line thickness for new shapes + Die Standard Linienstärke für neue Shapes - The default line color for new shapes - + px + px - - The default line thickness for new shapes - - - - px - - - - + + Gui::Dialog::DlgTipOfTheDay - Tip of the day - Tipp des Tages + Tip of the day + Tipp des Tages - <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> - <b><font face="Times New Roman"><font size="+3">Wussten Sie schon...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Wussten Sie schon...</font></font></b> - &Show tips at start up - Tipps beim &Start anzeigen + &Show tips at start up + Tipps beim &Start anzeigen - Alt+S - Alt+S + Alt+S + Alt+S - &Next Tip - &Nächster Tipp + &Next Tip + &Nächster Tipp - Alt+N - Alt+N + Alt+N + Alt+N - &Close - Schl&ießen + &Close + S&chließen - Alt+C - Alt+I + Alt+C + Alt+I - - + + Text source - - + + Gui::Dialog::DlgTipOfTheDayImp - Download failed: %1 + Download failed: %1 - Download fehlgeschlagen: %1 + Download fehlgeschlagen: %1 - If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. - Wenn Sie mehr über FreeCAD erfahren möchten, besuchen Sie %1 oder drücken Sie auf Hilfe im Hilfe-Menü. + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + Wenn Sie mehr über FreeCAD erfahren möchten, besuchen Sie %1 oder drücken Sie auf Hilfe im Hilfe-Menü. - - + + Gui::Dialog::DockablePlacement - Placement - Placement + Placement + Placement - - + + Gui::Dialog::DownloadDialog - Canceled. - Abgebrochen. + Download + Herunterladen - Download - + Cancel + Abbrechen - Cancel - Abbrechen + Close + Schließen - Close - Schließen + There already exists a file called %1 in the current directory. Overwrite? + Es existiert bereits eine Datei namens %1 im aktuellen Verzeichnis. Überschreiben? - There already exists a file called %1 in the current directory. Overwrite? - + Unable to save the file %1: %2. + Konnte Datei %1 nicht speichern: %2. - Unable to save the file %1: %2. - + Downloading %1. + Herunterladen von %1. - Downloading %1. - + Download canceled. + Herunterladen abgebrochen. - Download canceled. - + Download failed: %1. + Download fehlgeschlagen: %1. - Download failed: %1. - Download fehlgeschlagen: %1. + Downloaded %1 to current directory. + %1 in aktuelles Verzeichnis heruntergeladen. - - Downloaded %1 to current directory. - - - - + + Gui::Dialog::IconDialog - Add icon - Symbol hinzufügen + Add icon + Symbol hinzufügen - - + + Gui::Dialog::InputVector - Input vector - Eingabevektor + Input vector + Eingabevektor - Vector - Vektor + Vector + Vektor - Z: - Z: + Z: + Z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - OK - OK + OK + OK - - + + Gui::Dialog::LicenseDialog - Copyright - + Copyright + Copyright - - + + Gui::Dialog::MouseButtons - Mouse buttons - Maustasten + Mouse buttons + Maustasten - Configuration - Konfiguration + Configuration + Konfiguration - Selection: - Auswahl: + Selection: + Auswahl: - Panning - Verschieben + Panning + Verschieben - Rotation: - Drehung: + Rotation: + Drehung: - Zooming: - Zoomen: + Zooming: + Zoomen: - - + + Gui::Dialog::ParameterGroup - Expand - Erweitern + Expand + Erweitern - Add sub-group - Gruppe hinzufügen + Add sub-group + Gruppe hinzufügen - Remove group - Gruppe entfernen + Remove group + Gruppe entfernen - Rename group - Gruppe umbenennen + Rename group + Gruppe umbenennen - Export parameter - Parameter exportieren + Export parameter + Parameter exportieren - Import parameter - Parameter importieren + Import parameter + Parameter importieren - Collapse - Reduzieren + Collapse + Reduzieren - Do really want to remove this parameter group? - Möchten Sie diese Gruppe wirklich entfernen? + Do really want to remove this parameter group? + Möchten Sie diese Gruppe wirklich entfernen? - Existing sub-group - Bereits vorhandene Gruppe + Existing sub-group + Bereits vorhandene Gruppe - The sub-group '%1' already exists. - Diese Gruppe '%1' ist bereits vorhanden. + The sub-group '%1' already exists. + Diese Gruppe '%1' ist bereits vorhanden. - Export parameter to file - Parameter in Datei schreiben + Export parameter to file + Parameter in Datei schreiben - XML (*.FCParam) - XML (*.FCParam) + XML (*.FCParam) + XML (*.FCParam) - Import parameter from file - Parameter aus Datei lesen + Import parameter from file + Parameter aus Datei lesen - Import Error - Fehler bei Importieren + Import Error + Fehler bei Importieren - Reading from '%1' failed. - Lesen von '%1' fehlgeschlagen. + Reading from '%1' failed. + Lesen von '%1' fehlgeschlagen. - - + + Gui::Dialog::ParameterValue - Change value - Wert ändern + Change value + Wert ändern - Remove key - Schlüssel entfernen + Remove key + Schlüssel entfernen - Rename key - Schlüssel umbenennen + Rename key + Schlüssel umbenennen - New - Neu + New + Neu - New string item - Neue Zeichenkette + New string item + Neue Zeichenkette - New float item - Neuer Gleitkommawert + New float item + Neuer Gleitkommawert - New integer item - Neue Ganzzahl + New integer item + Neue Ganzzahl - New unsigned item - Neue positive Ganzzahl + New unsigned item + Neue positive Ganzzahl - New Boolean item - Neuer Bool'scher Wert + New Boolean item + Neuer Bool'scher Wert - Existing item - Bereits vorhandener Schlüssel + Existing item + Bereits vorhandener Schlüssel - The item '%1' already exists. - Der Schlüssel '%1' ist bereits vorhanden. + The item '%1' already exists. + Der Schlüssel '%1' ist bereits vorhanden. - - + + Gui::Dialog::Placement - Placement - Placement + Placement + Placement - OK - OK + OK + OK - Translation: - Verschiebung: + Translation: + Verschiebung: - Z: - Z: + Z: + Z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - Rotation: - Drehung: + Rotation: + Drehung: - Angle: - Winkel: + Angle: + Winkel: - Axis: - Achse: + Axis: + Achse: - Center: - Drehpunkt: + Center: + Drehpunkt: - Pitch: - Steigung: + Pitch: + Steigung: - Roll: - Roll: + Roll: + Roll: - Yaw: - Gierung: + Yaw: + Gierung: - Rotation axis with angle - Rotationsachse mit Winkel + Rotation axis with angle + Rotationsachse mit Winkel - Euler angles - Euler-Winkel + Euler angles + Euler-Winkel - Apply placement changes immediately - Änderungen sofort übernehmen + Apply placement changes immediately + Änderungen sofort übernehmen - Apply incremental changes to object placement - Änderungen an Objektplacement inkrementell übernehmen + Apply incremental changes to object placement + Änderungen an Objektplacement inkrementell übernehmen - Apply - Übernehmen + Apply + Übernehmen - Reset - Zurücksetzen + Reset + Zurücksetzen - Close - Schließen + Close + Schließen - - + + Gui::Dialog::PrintModel - Button - Schaltfläche + Button + Schaltfläche - Command - Befehl + Command + Befehl - - + + Gui::Dialog::SceneInspector - Dialog - Dialog + Dialog + Dialog - Close - Schließen + Close + Schließen - Refresh - Aktualisieren + Refresh + Aktualisieren - - + + Gui::Dialog::SceneModel - Inventor Tree - Szenengraph + Inventor Tree + Szenengraph - Nodes - Knoten + Nodes + Knoten - - + + Gui::Dialog::TextureMapping - Texture - Textur + Texture + Textur - Texture mapping - Texturabbildung + Texture mapping + Texturabbildung - Global - Global + Global + Global - Environment - Umgebung + Environment + Umgebung - Image files (%1) - Bilddateien (%1) + Image files (%1) + Bilddateien (%1) - No image - Kein Bild + No image + Kein Bild - The specified file is not a valid image file. - Die angegebene Datei ist keine gültige Bilddatei. + The specified file is not a valid image file. + Die angegebene Datei ist keine gültige Bilddatei. - No 3d view - Keine 3D-Ansicht + No 3d view + Keine 3D-Ansicht - No active 3d view found. - Keine aktive 3D-Ansicht gefunden. + No active 3d view found. + Keine aktive 3D-Ansicht gefunden. - - + + Gui::Dialog::Transform - Cancel - Abbrechen + Cancel + Abbrechen - Transform - Transformieren + Transform + Transformieren - - + + Gui::DlgTreeWidget - Dialog - Dialog + Dialog + Dialog - Items - Elemente + Items + Elemente - OK - OK + OK + OK - Cancel - Abbrechen + Cancel + Abbrechen - - + + Text source - - + + Gui::DockWnd::CombiView - CombiView - Combi-Ansicht + CombiView + Combi-Ansicht - Project - Projekt + Project + Projekt - Tasks - Aufgaben + Tasks + Aufgaben - - + + Gui::DockWnd::HelpView - Previous - Letzte + Previous + Letzte - Next - Weiter + Next + Weiter - Home - Startseite + Home + Startseite - Open - Öffnen + Open + Öffnen - Open file - Datei öffnen + Open file + Datei öffnen - All HTML files (*.html *.htm) - Alle HTML-Dateien (*.html *.htm) + All HTML files (*.html *.htm) + Alle HTML-Dateien (*.html *.htm) - External browser - Externer Browser + External browser + Externer Browser - No external browser found. Specify in preferences, please - Kein externer Browser gefunden. Setzen Sie die Einstellungen hierfür + No external browser found. Specify in preferences, please + Kein externer Browser gefunden. Setzen Sie die Einstellungen hierfür - Starting of %1 failed - Start von %1 fehlgeschlagen + Starting of %1 failed + Start von %1 fehlgeschlagen - - + + Gui::DockWnd::PropertyDockView - Property View - Eigenschaften-Ansicht + Property View + Eigenschaften-Ansicht - - + + Gui::DockWnd::ReportOutput - Logging - Protokoll-Meldungen + Logging + Protokoll-Meldungen - Warning - Warnung + Warning + Warnung - Error - Fehlermeldungen + Error + Fehlermeldungen - Options - Optionen + Options + Optionen - Clear - Löschen + Clear + Löschen - Save As... - Speichern unter... + Save As... + Speichern unter... - Save Report Output - Ausgabe speichern + Save Report Output + Ausgabe speichern - Plain Text Files (*.txt *.log) - Einfache Textdateien (*.txt *.log) + Plain Text Files (*.txt *.log) + Einfache Textdateien (*.txt *.log) - Go to end - Go to end + Go to end + Go to end - Redirect Python output - Python-Ausgabe umleiten + Redirect Python output + Python-Ausgabe umleiten - Redirect Python errors - Python-Fehler umleiten + Redirect Python errors + Python-Fehler umleiten - - + + Gui::DockWnd::ReportView - Output - Ausgabe + Output + Ausgabe - Python console - Python-Konsole + Python console + Python-Konsole - - + + Gui::DockWnd::SelectionView - Property View - Eigenschaften-Ansicht + Property View + Eigenschaften-Ansicht - - + + Gui::DockWnd::TaskPanelView - Task View - Aufgaben + Task View + Aufgaben - - + + Gui::DockWnd::TextBrowser - Could not open file. - Datei konnte nicht geöffnet werden. + Could not open file. + Datei konnte nicht geöffnet werden. - You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. - Sie haben versucht, die Adresse %1 aufzurufen, die im Moment nicht erreichbar ist. Stellen Sie sicher, dass die URL existiert und versuchen Sie die Seite erneut zu laden. + You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. + Sie haben versucht, die Adresse %1 aufzurufen, die im Moment nicht erreichbar ist. Stellen Sie sicher, dass die URL existiert und versuchen Sie die Seite erneut zu laden. - Connecting to %1 - Verbinden mit %1 + Connecting to %1 + Verbinden mit %1 - Sending to %1 - Senden an %1 + Sending to %1 + Senden an %1 - Reading from %1 - Lesen von %1 + Reading from %1 + Lesen von %1 - Download failed: %1. - Download fehlgeschlagen: %1. + Download failed: %1. + Download fehlgeschlagen: %1. - Previous - Letzte + Previous + Letzte - Forward - Vor + Forward + Vor - Home - Startseite + Home + Startseite - Refresh - Aktualisieren + Refresh + Aktualisieren - Copy - Kopieren + Copy + Kopieren - Select all - Alles auswählen + Select all + Alles auswählen - No description for - Keine Beschreibung für + No description for + Keine Beschreibung für - - + + Gui::DocumentModel - Application - Applikation + Application + Applikation - Labels & Attributes - Bezeichnungen & Eigenschaften + Labels & Attributes + Bezeichnungen & Eigenschaften - - + + Gui::EditorView - Modified file - Geänderte Datei + Modified file + Geänderte Datei - %1. + %1. This has been modified outside of the source editor. Do you want to reload it? - %1. + %1. Diese Datei wurde außerhalb des Editors verändert. Wollen Sie sie erneut laden? - Unsaved document - Nicht gespeichertes Dokument + Unsaved document + Nicht gespeichertes Dokument - The document has been modified. + The document has been modified. Do you want to save your changes? - Das Dokument wurde geändert. + Das Dokument wurde geändert. Sollen die Änderungen gespeichert werden? - FreeCAD macro (*.FCMacro);;Python (*.py) - FreeCAD-Makro (*.FCMacro);;Python (*.py) + FreeCAD macro (*.FCMacro);;Python (*.py) + FreeCAD-Makro (*.FCMacro);;Python (*.py) - Export PDF - PDF exportieren + Export PDF + PDF exportieren - PDF file (*.pdf) - PDF-Datei (*.pdf) + PDF file (*.pdf) + PDF-Datei (*.pdf) - untitled[*] - Unbenannt[*] + untitled[*] + Unbenannt[*] - - Editor - - Editor + - Editor + - Editor - %1 chars removed - %1 Zeichen gelöscht + %1 chars removed + %1 Zeichen gelöscht - %1 chars added - %1 Zeichen hinzugefügt + %1 chars added + %1 Zeichen hinzugefügt - Formatted - Formatiert + Formatted + Formatiert - - + + Gui::FileChooser - Select a file - Wählen Sie eine Datei aus + Select a file + Wählen Sie eine Datei aus - Select a directory - Wählen Sie ein Verzeichnis aus + Select a directory + Wählen Sie ein Verzeichnis aus - - + + Gui::FileDialog - Save as - Speichern unter + Save as + Speichern unter - Open - Öffnen + Open + Öffnen - - + + Gui::FileOptionsDialog - Extended - Erweitert + Extended + Erweitert - All files (*.*) - Alle Dateien (*.*) + All files (*.*) + Alle Dateien (*.*) - - + + Gui::Flag - Top left - Oben links + Top left + Oben links - Bottom left - Unten links + Bottom left + Unten links - Top right - Oben rechts + Top right + Oben rechts - Bottom right - Unten rechts + Bottom right + Unten rechts - Remove - Entfernen + Remove + Entfernen - - + + Gui::InventorNavigationStyle - Press CTRL and left mouse button - Drücken Sie STRG und die linke Maustaste + Press CTRL and left mouse button + Drücken Sie STRG und die linke Maustaste - Press middle mouse button - Drücken Sie die mittlere Maustaste + Press middle mouse button + Drücken Sie die mittlere Maustaste - Press left mouse button - Drücken Sie die linke Maustaste + Press left mouse button + Drücken Sie die linke Maustaste - Scroll middle mouse button - Scrollen Sie die mittlere Maustaste + Scroll middle mouse button + Scrollen Sie die mittlere Maustaste - - + + Gui::LocationDialog - Wrong direction - Falsche Richtung + Wrong direction + Falsche Richtung - Direction must not be the null vector - Richtungsvektor darf nicht der Nullvektor sein + Direction must not be the null vector + Richtungsvektor darf nicht der Nullvektor sein - X - X + X + X - Y - Y + Y + Y - Z - Z + Z + Z - User defined... - Benutzerdefiniert... + User defined... + Benutzerdefiniert... - - + + Gui::LocationWidget - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - Z: + Z: + Z: - Direction: - + Direction: + Richtung: - - + + Gui::MacroCommand - Macros - Makros + Macros + Makros - - + + Gui::MainWindow - Dimension - Abmessung + Dimension + Abmessung - Ready - Bereit + Ready + Bereit - Toggles this toolbar - Symbolleiste ein-/ausschalten + Toggles this toolbar + Symbolleiste ein-/ausschalten - Toggles this dockable window - Andockbares Fenster ein-/ausschalten + Toggles this dockable window + Andockbares Fenster ein-/ausschalten - Close All - Alles schließen + Close All + Alles schließen - - + + Gui::ManualAlignment - Manual alignment - + Manual alignment + Manuelle Ausrichtung - The alignment is already in progress. - + The alignment is already in progress. + Die Ausrichtung wird bereits ausgeführt. - Alignment[*] - + Alignment[*] + Ausrichtung [*] - Please, select at least one point in the left and the right view - + Please, select at least one point in the left and the right view + Bitte mindestens einen Punkt in der linken und rechten Ansicht auswählen - Please, select at least %1 points in the left and the right view - + Please, select at least %1 points in the left and the right view + Bitte mindestens %1 Punkte in der linken und rechten Ansicht auswählen - Please pick points in the left and right view - + Please pick points in the left and right view + Bitte Punkte in der linken und rechten Ansicht auswählen - The alignment has finished - + The alignment has finished + Ausrichtung abgeschlossen - The alignment has been canceled - + The alignment has been canceled + Ausrichtung abgebrochen - Too few points picked in the left view. At least %1 points are needed. - + Too few points picked in the left view. At least %1 points are needed. + Zu wenige Punkte in der linken Ansicht ausgewählt. Mindestens %1 Punkte werden benötigt. - Too few points picked in the right view. At least %1 points are needed. - + Too few points picked in the right view. At least %1 points are needed. + Zu wenige Punkte in der rechten Ansicht ausgewählt. Mindestens %1 Punkte werden benötigt. - Different number of points picked in left and right view. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Unterschiedliche Anzahl von Punkten in der linken und rechten Ansicht ausgewählt. +In der linken Ansicht wurden %1 Punkte ausgewählt. +In der rechten Ansicht wurden %2 Punkte ausgewählt. - Try to align group of views - + Try to align group of views + Versuche Ansichtsgruppen auszurichten - The alignment failed. + The alignment failed. How do you want to proceed? - + Das Ausrichten ist fehlgeschlagen. Wie möchten die fortfahren? - Retry - + Retry + Erneut versuchen - Ignore - + Ignore + Ignorieren - Abort - + Abort + Abbrechen - Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + Unterschiedliche Anzahl von Punkten in der linken und rechten Ansicht ausgewählt. In der linken Ansicht wurden %1 Punkte ausgewählt. In der rechten Ansicht wurden %2 Punkte ausgewählt. - Point picked at (%1,%2,%3) - + Point picked at (%1,%2,%3) + Punkte ausgewählt an (%1,%2,%3) - No point was picked - + No point was picked + Es wurde kein Punkt ausgewählt - - + + Gui::NetworkRetriever - Download started... + Download started... - Download hat begonnen... + Download hat begonnen... - - + + Gui::ProgressBar - Remaining: %1 - Verbleibend: %1 + Remaining: %1 + Verbleibend: %1 - Aborting - Abbrechen + Aborting + Abbrechen - Do you really want to abort the operation? - Möchten Sie die Operation wirklich abbrechen? + Do you really want to abort the operation? + Möchten Sie die Operation wirklich abbrechen? - - + + Gui::ProgressDialog - Remaining: %1 - Verbleibend: %1 + Remaining: %1 + Verbleibend: %1 - Aborting - Abbrechen + Aborting + Abbrechen - Do you really want to abort the operation? - Möchten Sie die Operation wirklich abbrechen? + Do you really want to abort the operation? + Möchten Sie die Operation wirklich abbrechen? - - + + Gui::PropertyEditor::PropertyModel - Property - Eigenschaft + Property + Eigenschaft - Value - Wert + Value + Wert - - + + Gui::PropertyView - View - Ansicht + View + Ansicht - Data - Daten + Data + Daten - - + + Gui::PythonConsole - System exit - System beenden + System exit + System beenden - The application is still running. + The application is still running. Do you want to exit without saving your data? - Die Anwendung läuft immer noch. + Die Anwendung läuft immer noch. Wollen Sie sie beenden, ohne Ihre Daten zu speichern? - Python console - Python-Konsole + Python console + Python-Konsole - Unhandled PyCXX exception. - Unbehnadelte PyCXX-Ausnahme. + Unhandled PyCXX exception. + Unbehnadelte PyCXX-Ausnahme. - Unhandled FreeCAD exception. - Unbehandelte FreeCAD-Ausnahme. + Unhandled FreeCAD exception. + Unbehandelte FreeCAD-Ausnahme. - Unhandled unknown C++ exception. - Unbehandelte C++-Ausnahme. + Unhandled unknown C++ exception. + Unbehandelte C++-Ausnahme. - &Copy command - &Befehle kopieren + &Copy command + &Befehle kopieren - &Copy history - &Verlauf kopieren + &Copy history + &Verlauf kopieren - Save history as... - Verlauf speichern unter... + Save history as... + Verlauf speichern unter... - Insert file name... - Dateinamen einfügen... + Insert file name... + Dateinamen einfügen... - Save History - Verlauf speichern + Save History + Verlauf speichern - Macro Files (*.FCMacro *.py) - Makro-Dateien (*.FCMacro *.py) + Macro Files (*.FCMacro *.py) + Makro-Dateien (*.FCMacro *.py) - Insert file name - Dateinamen einfügen + Insert file name + Dateinamen einfügen - All Files (*.*) - Alle Dateien (*.*) + All Files (*.*) + Alle Dateien (*.*) - Python Input Dialog - Pythoneingabe-Dialog + Python Input Dialog + Pythoneingabe-Dialog - Unhandled std C++ exception. - Unbehandelte std C++-Ausnahme. + Unhandled std C++ exception. + Unbehandelte std C++-Ausnahme. - Word wrap - Zeilenumbruch + Word wrap + Zeilenumbruch - &Copy - &Kopieren + &Copy + &Kopieren - &Paste - Ein&fügen + &Paste + Ein&fügen - Select All - Alles auswählen + Select All + Alles auswählen - Clear console - + Clear console + Konsole leeren - - + + Gui::PythonEditor - Comment - Kommentieren + Comment + Kommentieren - Uncomment - Entkommentieren + Uncomment + Entkommentieren - - + + Gui::PythonInputField - OK - OK + OK + OK - Clear - Löschen + Clear + Löschen - - + + Gui::RecentFilesAction - Open file %1 - Öffne Datei %1 + Open file %1 + Öffne Datei %1 - File not found - Datei nicht gefunden + File not found + Datei nicht gefunden - The file '%1' cannot be opened. - Die Datei '%1' kann nicht geöffnet werden. + The file '%1' cannot be opened. + Die Datei '%1' kann nicht geöffnet werden. - - + + Gui::SelectModule - Select module - Modul auswählen + Select module + Modul auswählen - Open %1 as - Öffne %1 als + Open %1 as + Öffne %1 als - Select - Wähle + Select + Wähle - - + + Gui::StdCmdDescription - Help - Hilfe + Help + Hilfe - Des&cription - Bes&chreibung + Des&cription + Bes&chreibung - Long description of commands - Ausführliche Beschreibung aller Befehle + Long description of commands + Ausführliche Beschreibung aller Befehle - - + + Gui::StdCmdDownloadOnlineHelp - Help - Hilfe + Help + Hilfe - Download online help - Online-Hilfe herunterladen + Download online help + Online-Hilfe herunterladen - Download %1's online help - Online-Hilfe von %1 herunterladen + Download %1's online help + Online-Hilfe von %1 herunterladen - Non-existing directory - Nicht existierendes Verzeichnis + Non-existing directory + Nicht existierendes Verzeichnis - The directory '%1' does not exist. + The directory '%1' does not exist. Do you want to specify an existing directory? - Das Verzeichnis '%1' existiert nicht. + Das Verzeichnis '%1' existiert nicht. Möchten Sie ein existierendes Verzeichnis angeben? - Missing permission - Fehlende Berechtigung + Missing permission + Fehlende Berechtigung - You don't have write permission to '%1' + You don't have write permission to '%1' Do you want to specify another directory? - Sie haben keine Schreibberechtigung für '%1' + Sie haben keine Schreibberechtigung für '%1' Möchten Sie ein anderes Verzeichnis angeben? - Stop downloading - Downloadvorgang abbrechen + Stop downloading + Downloadvorgang abbrechen - - + + Gui::StdCmdPythonHelp - Tools - Werkzeuge + Tools + Werkzeuge - Python Modules - Python-Module + Python Modules + Python-Module - Opens a browser to show the Python modules - Browser zum Anzeigen aller Python-Module öffnen + Opens a browser to show the Python modules + Browser zum Anzeigen aller Python-Module öffnen - - + + Gui::TaskBoxAngle - Angle - Winkel + Angle + Winkel - - + + Gui::TaskBoxPosition - Position - Position + Position + Position - - + + Gui::TaskView::TaskAppearance - Display mode: - Anzeigemodus: + Plot mode: + Plotmodus: - Plot mode: - Plotmodus: + Point size: + Punktgröße: - Point size: - Punktgröße: + Line width: + Linienstärke: - Line width: - Linienstärke: + Transparency: + Transparenz: - Transparency: - Transparenz: + Appearance + Erscheinungsbild - Appearance - Erscheinungsbild + Document window: + Dokumentfenster: - - Document window: - - - - + + Gui::TaskView::TaskEditControl - Edit - Bearbeiten + Edit + Bearbeiten - - + + Gui::TaskView::TaskSelectLinkProperty - Appearance - Erscheinungsbild + Appearance + Erscheinungsbild - ... - ... + ... + ... - edit selection - Selektion bearbeiten + edit selection + Selektion bearbeiten - - + + Gui::TouchpadNavigationStyle - Press left mouse button - Drücken Sie die linke Maustaste + Press left mouse button + Drücken Sie die linke Maustaste - Press SHIFT button - + Press SHIFT button + Drücken Sie die Umschalt-Taste - Press ALT button - + Press ALT button + Bitte ALT drücken - Press PgUp/PgDown button - + Press PgUp/PgDown button + Bitte Bild auf/Bild ab drücken - - - Gui::Translator - - English - Englisch - - - + + Gui::TreeDockWidget - Tree view - Baumansicht + Tree view + Baumansicht - - + + Gui::TreeWidget - Create group... - Gruppe erstellen... + Create group... + Gruppe erstellen... - Create a group - Erstelle eine Gruppe + Create a group + Erstelle eine Gruppe - Group - Gruppe + Group + Gruppe - Rename - Umbenennen + Rename + Umbenennen - Rename object - Objekt umbenennen + Rename object + Objekt umbenennen - Labels & Attributes - Bezeichnungen & Eigenschaften + Labels & Attributes + Bezeichnungen & Eigenschaften - Application - Applikation + Application + Applikation - Finish editing - Bearbeitung beenden + Finish editing + Bearbeitung beenden - Finish editing object - Berabeitungs des Objekts beenden + Finish editing object + Berabeitungs des Objekts beenden - Activate document - Dokument aktivieren + Activate document + Dokument aktivieren - Activate document %1 - Dokument %1 aktivieren + Activate document %1 + Dokument %1 aktivieren - - + + Gui::View3DInventor - Export PDF - PDF exportieren + Export PDF + PDF exportieren - PDF file (*.pdf) - PDF-Datei (*.pdf) + PDF file (*.pdf) + PDF-Datei (*.pdf) - - + + Gui::WorkbenchGroup - Select the '%1' workbench - Wähle den Arbeitsbereich %1 + Select the '%1' workbench + Wähle den Arbeitsbereich %1 - - + + Position - Form - Form + Form + Form - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - Z: + Z: + Z: - 0.1 mm - 0.1 mm + 0.1 mm + 0.1 mm - 0.5 mm - 0.5 mm + 0.5 mm + 0.5 mm - 1 mm - 1 mm + 1 mm + 1 mm - 2 mm - 2 mm + 2 mm + 2 mm - 5 mm - 5 mm + 5 mm + 5 mm - 10 mm - 10 mm + 10 mm + 10 mm - 20 mm - 20 mm + 20 mm + 20 mm - 50 mm - 50 mm + 50 mm + 50 mm - 100 mm - 100 mm + 100 mm + 100 mm - 200 mm - 200 mm + 200 mm + 200 mm - 500 mm - 500 mm + 500 mm + 500 mm - 1 m - 1 m + 1 m + 1 m - 2 m - 2 m + 2 m + 2 m - 5 m - 5 m + 5 m + 5 m - Grid Snap in - Am Gitter ausrichten + Grid Snap in + Am Gitter ausrichten - - + + QDockWidget - Tree view - Baumansicht + Tree view + Baumansicht - Property view - Eigenschaften + Property view + Eigenschaften - Selection view - Selektionsansicht + Selection view + Selektionsansicht - Report view - Ausgabefenster + Report view + Ausgabefenster - Task View - Aufgaben + Task View + Aufgaben - Combo View - Combo-Ansicht + Combo View + Combo-Ansicht - Toolbox - Werkzeugkasten + Toolbox + Werkzeugkasten - Python console - Python-Konsole + Python console + Python-Konsole - Display properties - Anzeigeeigenschaften + Display properties + Anzeigeeigenschaften - - + + QObject - General - Allgemein + General + Allgemein - Display - Anzeige + Display + Anzeige - Unknown filetype - Unbekannter Dateityp + Unknown filetype + Unbekannter Dateityp - Cannot open unknown filetype: %1 - Kann unbekannten Dateityp nicht öffnen: %1 + Cannot open unknown filetype: %1 + Kann unbekannten Dateityp nicht öffnen: %1 - Cannot save to unknown filetype: %1 - Kann in unbekannten Dateityp nicht speichern: %1 + Cannot save to unknown filetype: %1 + Kann in unbekannten Dateityp nicht speichern: %1 - Workbench failure - Wechsel von Arbeitsbereich fehlgeschlagen + Workbench failure + Wechsel von Arbeitsbereich fehlgeschlagen - %1 - %1 + %1 + %1 - Unable to launch Qt Assistant (%1) - Qt Assistant (%1) kann nicht gestartet werden + Unable to launch Qt Assistant (%1) + Qt Assistant (%1) kann nicht gestartet werden - Exception - Ausnahme + Exception + Ausnahme - Open document - Öffne Dokument + Open document + Öffne Dokument - Import file - Importiere Datei + Import file + Importiere Datei - Export file - Exportiere Datei + Export file + Exportiere Datei - Printing... - Drucken... + Printing... + Drucken... - Cannot load workbench - Kann Arbeitsbereich nicht laden + Cannot load workbench + Kann Arbeitsbereich nicht laden - A general error occurred while loading the workbench - Allgemeiner Fehler beim Laden des Arbeitsbereiches aufgetreten + A general error occurred while loading the workbench + Allgemeiner Fehler beim Laden des Arbeitsbereiches aufgetreten - File not found - Datei nicht gefunden + Save views... + Ansichten speichern... - Cannot open file %1 - Kann Datei %1 nicht öffnen + Load views... + Ansichten laden... - Save views... - Ansichten speichern... + Freeze view + Ansicht einfrieren - Load views... - Ansichten laden... + Clear views + Ansichten löschen - Freeze view - Ansicht einfrieren + Restore view &%1 + Ansicht &%1 wiederherstellen - Clear views - Ansichten löschen + Save frozen views + Eingefrorene Ansichten speichern - Restore view &%1 - Ansicht &%1 wiederherstellen + Frozen views (*.cam) + Feste Kamerapositionen (*.cam) - Save frozen views - Eingefrorene Ansichten speichern + Restore views + Ansichten wiederherstellen - Frozen views (*.cam) - Feste Kamerapositionen (*.cam) - - - Restore views - Ansichten wiederherstellen - - - Importing the restored views would clear the already stored views. + Importing the restored views would clear the already stored views. Do you want to continue? - Wiederherstellen der importierten Ansichten löscht die bereits gespeicherten Ansichten. + Wiederherstellen der importierten Ansichten löscht die bereits gespeicherten Ansichten. Wollen Sie fortfahren? - Restore frozen views - Eingefrorene Ansichten wiederherstellen + Restore frozen views + Eingefrorene Ansichten wiederherstellen - Cannot open file '%1'. - Kann Datei '%1' nicht öffnen. + Cannot open file '%1'. + Kann Datei '%1' nicht öffnen. - Docked - Angedockt + Docked + Angedockt - Undocked - Abgedockt + Undocked + Abgedockt - Fullscreen - Vollbild + Fullscreen + Vollbild - files - Dateien + files + Dateien - Save picture - Bildinhalt speichern + Save picture + Bildinhalt speichern - New sub-group - Neue Gruppe + New sub-group + Neue Gruppe - Enter the name: - Geben Sie einen Namen an: + Enter the name: + Geben Sie einen Namen an: - New text item - Neuer Texteintrag + New text item + Neuer Texteintrag - Enter your text: - Geben Sie einen Text ein: + Enter your text: + Geben Sie einen Text ein: - New integer item - Neue Ganzzahl + New integer item + Neue Ganzzahl - Enter your number: - Geben Sie einen ganzzahligen Wert an: + Enter your number: + Geben Sie einen ganzzahligen Wert an: - New unsigned item - Neue positive Ganzzahl + New unsigned item + Neue positive Ganzzahl - New float item - Neuer Gleitkommawert + New float item + Neuer Gleitkommawert - New Boolean item - Neuer Bool'scher Wert + New Boolean item + Neuer Bool'scher Wert - Choose an item: - Wählen Sie einen Eintrag aus: + Choose an item: + Wählen Sie einen Eintrag aus: - Rename group - Gruppe umbenennen + Rename group + Gruppe umbenennen - The group '%1' cannot be renamed. - Die Gruppe '%1' kann nicht umbenannt werden. + The group '%1' cannot be renamed. + Die Gruppe '%1' kann nicht umbenannt werden. - Existing group - Bereits vorhandene Gruppe + Existing group + Bereits vorhandene Gruppe - The group '%1' already exists. - Die Gruppe '%1' ist bereits vorhanden. + The group '%1' already exists. + Die Gruppe '%1' ist bereits vorhanden. - Change value - Wert ändern + Change value + Wert ändern - Save document under new filename... - Dokument unter neuem Dateinamen speichern... + Save document under new filename... + Dokument unter neuem Dateinamen speichern... - Saving aborted - Speichern abgebrochen + Saving aborted + Speichern abgebrochen - Unsaved document - Nicht gespeichertes Dokument + Unsaved document + Nicht gespeichertes Dokument - Save document before close? - Soll das Dokument vorher gespeichert werden? + Save document before close? + Soll das Dokument vorher gespeichert werden? - Save Macro - Makro speichern + Save Macro + Makro speichern - Finish - Fertig + Finish + Fertig - Clear - Löschen + Clear + Löschen - Cancel - Abbrechen + Cancel + Abbrechen - Inner - Innen + Inner + Innen - Outer - Außen + Outer + Außen - No Browser - Kein Browser + No Browser + Kein Browser - Unable to open your browser. + Unable to open your browser. Please open a browser window and type in: http://localhost:%1. - Kann Browser nicht öffnen. + Kann Browser nicht öffnen. Bitte starten Sie einen Browser und geben darin ein: http://localhost:%1. - No Server - Kein Server + No Server + Kein Server - Unable to start the server to port %1: %2. - Kann Server auf Port %1 nicht starten: %2. + Unable to start the server to port %1: %2. + Kann Server auf Port %1 nicht starten: %2. - Unable to open your system browser. - Kann Systembrowser nicht starten. + Unable to open your system browser. + Kann Systembrowser nicht starten. - Options... - Einstellungen... + Options... + Einstellungen... - Out of memory - Nicht genügend Speicher + Out of memory + Nicht genügend Speicher - Not enough memory available to display the data. - Nicht genüged Speicher verfügbar, um die Daten darstellen zu können. + Not enough memory available to display the data. + Nicht genüged Speicher verfügbar, um die Daten darstellen zu können. - Cannot find file %1 - Kann Datei %1 nicht finden + Cannot find file %1 + Kann Datei %1 nicht finden - Cannot find file %1 neither in %2 nor in %3 - Kann Datei %1 weder in %2 nich in %3 finden + Cannot find file %1 neither in %2 nor in %3 + Kann Datei %1 weder in %2 nich in %3 finden - Save %1 Document - Dokument %1 speichern + Save %1 Document + Dokument %1 speichern - %1 document (*.FCStd) - %1-Dokument (*.FCStd) + %1 document (*.FCStd) + %1-Dokument (*.FCStd) - Save As - Speichern unter + Save As + Speichern unter - %1 already exists. + %1 already exists. Do you want to replace it? - %1 besteht bereits. + %1 besteht bereits. Möchten Sie sie ersetzen? - Document not closable - Dokument kann nicht geschlossen werden + Document not closable + Dokument kann nicht geschlossen werden - The document is not closable for the moment. - Das Dokument kann im Moment nicht geschlossen werden. + The document is not closable for the moment. + Das Dokument kann im Moment nicht geschlossen werden. - No OpenGL - Kein OpenGL + No OpenGL + Kein OpenGL - This system does not support OpenGL - Dieses System unterstützt kein OpenGL + This system does not support OpenGL + Dieses System unterstützt kein OpenGL - Help - Hilfe + Help + Hilfe - Unable to load documentation. + Unable to load documentation. In order to load it Qt 4.4 or higher is required. - Kann Dokumentation nicht laden. + Kann Dokumentation nicht laden. Es wird dazu Qt 4.4 oder höher benötigt. - %1 Help - %1 Help + %1 Help + %1 Help - Exporting PDF... - Exportiert als PDF... + Exporting PDF... + Exportiert als PDF... - Wrong selection - Falsche Auswahl + Wrong selection + Falsche Auswahl - Only one object selected. Please select two objects. + Only one object selected. Please select two objects. Be aware the point where you click matters. - Nur ein Objekt ausgewählt. Bitte wählen Sie zwei Objekte aus. + Nur ein Objekt ausgewählt. Bitte wählen Sie zwei Objekte aus. Beachten Sie, dass es auf den Punkt ankommt, auf den Sie klicken. - Please select two objects. + Please select two objects. Be aware the point where you click matters. - Bitte wählen Sie zwei Objekte aus. + Bitte wählen Sie zwei Objekte aus. Beachten Sie, dass es auf den Punkt ankommt, auf den Sie klicken. - New boolean item - Neuer Bool'scher Wert + New boolean item + Neuer Bool'scher Wert - Navigation styles - Navigationsstile + Navigation styles + Navigationsstile - %1 navigation - %1 Navigation + %1 navigation + %1 Navigation - Move annotation - Beschriftung verschieben + Move annotation + Beschriftung verschieben - Transform - Transformieren + Transform + Transformieren - The document is in editing mode and thus cannot be closed for the moment. + The document is in editing mode and thus cannot be closed for the moment. You either have to finish or cancel the editing in the task panel. - Das Dokument ist im Bearbeitungsmodus und kann momentan deshalb nicht geschlossen werden. + Das Dokument ist im Bearbeitungsmodus und kann momentan deshalb nicht geschlossen werden. Sie müssen entweder den Bearbeitungsvorgang fertigstellen oder mittels des Aufgabenfensters abbrechen. - - + + StdBoxSelection - Standard-View - Standardansicht + Standard-View + Standardansicht - Box selection - + Box selection + Recktecksauswahl - - + + StdCmdAbout - Help - Hilfe + Help + Hilfe - &About %1 - &Über %1 + &About %1 + &Über %1 - About %1 - Über %1 + About %1 + Über %1 - - + + StdCmdAboutQt - Help - Hilfe + Help + Hilfe - About &Qt - Über &Qt + About &Qt + Über &Qt - About Qt - Über Qt + About Qt + Über Qt - - + + StdCmdActivateNextWindow - Window - Fenster + Window + Fenster - Ne&xt - Nächs&tes Fenster + Ne&xt + Nächs&tes Fenster - Activate next window - Nächstes Fenster aktivieren + Activate next window + Nächstes Fenster aktivieren - - + + StdCmdActivatePrevWindow - Window - Fenster + Window + Fenster - Pre&vious - &Vorheriges Fenster + Pre&vious + &Vorheriges Fenster - Activate previous window - Vorheriges Fenster aktivieren + Activate previous window + Vorheriges Fenster aktivieren - - + + StdCmdAlignment - Edit - Bearbeiten + Edit + Bearbeiten - Alignment... - + Alignment... + Ausrichtung... - Align the selected objects - + Align the selected objects + Die ausgewählten Objekte ausrichten - - + + StdCmdArrangeIcons - Window - Fenster + Window + Fenster - Arrange &Icons - &Symbole anordnen + Arrange &Icons + &Symbole anordnen - Arrange Icons - Symbole anordnen + Arrange Icons + Symbole anordnen - - + + StdCmdAxisCross - Standard-View - Standardansicht + Standard-View + Standardansicht - Toggle axis cross - Achsenkreuz ein/ausblenden + Toggle axis cross + Achsenkreuz ein/ausblenden - - + + StdCmdCascadeWindows - Window - Fenster + Window + Fenster - &Cascade - Ü&berlappend anordnen + &Cascade + Ü&berlappend anordnen - Tile pragmatic - Überlappend anordnen + Tile pragmatic + Überlappend anordnen - - + + StdCmdCloseActiveWindow - Window - Fenster + Window + Fenster - Cl&ose - Schl&ießen + Cl&ose + Schl&ießen - Close active window - Aktives Fenster schließen + Close active window + Aktives Fenster schließen - - + + StdCmdCloseAllWindows - Window - Fenster + Window + Fenster - Close Al&l - Alles sch&ließen + Close Al&l + Alles sch&ließen - Close all windows - Alle Fenster schließen + Close all windows + Alle Fenster schließen - - + + StdCmdCommandLine - Tools - Werkzeuge + Tools + Werkzeuge - Start command &line... - Kommandozei&le... + Start command &line... + Kommandozei&le... - Opens the command line in the console - In Kommandozeile springen + Opens the command line in the console + In Kommandozeile springen - - + + StdCmdCopy - Edit - Bearbeiten + Edit + Bearbeiten - C&opy - &Kopieren + C&opy + &Kopieren - Copy operation - Kopieren + Copy operation + Kopieren - - + + StdCmdCut - Edit - Bearbeiten + Edit + Bearbeiten - &Cut - &Ausschneiden + &Cut + &Ausschneiden - Cut out - Ausschneiden + Cut out + Ausschneiden - - - StdCmdDDuplicateSelection - - Edit - Bearbeiten - - - Duplicate selection - Auswahl duplizieren - - - Put duplicates of the selected objects to the active document - Duplikate der selektierten Objekte in aktives Dokument einfügen - - - + + StdCmdDelete - Edit - Bearbeiten + Edit + Bearbeiten - &Delete - &Löschen + &Delete + &Löschen - Deletes the selected objects - Löscht die ausgewählten Objekte + Deletes the selected objects + Löscht die ausgewählten Objekte - - + + StdCmdDemoMode - Standard-View - Standardansicht + Standard-View + Standardansicht - View turntable... - Drehscheibe... + View turntable... + Drehscheibe... - View turntable - Drehscheibe + View turntable + Drehscheibe - - + + StdCmdDlgCustomize - Tools - Werkzeuge + Tools + Werkzeuge - Cu&stomize... - &Benutzerdefiniert... + Cu&stomize... + &Benutzerdefiniert... - Customize toolbars and command bars - Benutzerdefinierte Einstellungen für Symbolleisten und Befehlsleisten + Customize toolbars and command bars + Benutzerdefinierte Einstellungen für Symbolleisten und Befehlsleisten - - + + StdCmdDlgMacroExecute - Macros ... - Makros... + Macros ... + Makros... - Opens a dialog to let you execute a recorded macro - Öffnet Dialog zum Ausführen eines gespeichrten Makros + Opens a dialog to let you execute a recorded macro + Öffnet Dialog zum Ausführen eines gespeichrten Makros - Macro - Makro + Macro + Makro - - + + StdCmdDlgMacroExecuteDirect - Macro - Makro + Macro + Makro - Execute macro - Makro ausführen + Execute macro + Makro ausführen - Execute the macro in the editor - Führe das Makro im Editor aus + Execute the macro in the editor + Führe das Makro im Editor aus - - + + StdCmdDlgMacroRecord - &Macro recording ... - &Makro aufzeichnen... + &Macro recording ... + &Makro aufzeichnen... - Opens a dialog to record a macro - Öffnet einen Dialog zur Makroaufzeichnung + Opens a dialog to record a macro + Öffnet einen Dialog zur Makroaufzeichnung - Macro - Makro + Macro + Makro - - + + StdCmdDlgParameter - Tools - Werkzeuge + Tools + Werkzeuge - E&dit parameters ... - P&arameter bearbeiten... + E&dit parameters ... + P&arameter bearbeiten... - Opens a Dialog to edit the parameters - Öffnet Dialog zum Ändern der Parameter + Opens a Dialog to edit the parameters + Öffnet Dialog zum Ändern der Parameter - - + + StdCmdDlgPreferences - Tools - Werkzeuge + Tools + Werkzeuge - &Preferences ... - &Einstellungen... + &Preferences ... + &Einstellungen... - Opens a Dialog to edit the preferences - Öffnet Dialog zum Ändern der Benutzereinstellungen + Opens a Dialog to edit the preferences + Öffnet Dialog zum Ändern der Benutzereinstellungen - - + + StdCmdDockViewMenu - View - Ansicht + View + Ansicht - Vie&ws - An&sichten + Vie&ws + An&sichten - Toggles this window - Fenster ein/ausblenden + Toggles this window + Fenster ein/ausblenden - - + + StdCmdDrawStyle - Standard-View - Standardansicht + Standard-View + Standardansicht - Draw style - Zeichenstil + Draw style + Zeichenstil - - + + StdCmdDuplicateSelection - Edit - Bearbeiten + Edit + Bearbeiten - Duplicate selection - Auswahl duplizieren + Duplicate selection + Auswahl duplizieren - Put duplicates of the selected objects to the active document - Duplikate der selektierten Objekte in aktives Dokument einfügen + Put duplicates of the selected objects to the active document + Duplikate der selektierten Objekte in aktives Dokument einfügen - - + + StdCmdEdit - Edit - Bearbeiten + Edit + Bearbeiten - Toggle &Edit mode - + Toggle &Edit mode + Bearbeitungsmodus umschalten - Toggles the selected object's edit mode - + Toggles the selected object's edit mode + Schaltet den Bearbeitungsmodus des ausgewählten Objekts um - Enters or leaves the selected object's edit mode - + Enters or leaves the selected object's edit mode + Beginnt oder verlässt den Bearbeiten-Modus der ausgewählten Objekte - - + + StdCmdExport - File - Datei + File + Datei - &Export... - &Exportieren... + &Export... + &Exportieren... - Export an object in the active document - Objekt im aktiven Dokument exportieren + Export an object in the active document + Objekt im aktiven Dokument exportieren - Supported formats - Unterstützte Formate + No selection + Keine Auswahl - No selection - + Please select first the objects you want to export. + Bitte das erste, zu exportierende, Objekt auswählen. - - Please select first the objects you want to export. - - - - + + StdCmdExportGraphviz - Tools - Werkzeuge + Tools + Werkzeuge - Dependency graph... - + Dependency graph... + Abhängigkeitsgraph... - Show the dependency graph of the objects in the active document - + Show the dependency graph of the objects in the active document + Zeige Abhängigkeitsgraph der Objekte im aktiven Dokument - - + + StdCmdFeatRecompute - File - Datei + File + Datei - &Recompute - Neu &berechenen + &Recompute + Neu &berechenen - Recompute feature or document - Feature oder Dokument neu berechnen + Recompute feature or document + Feature oder Dokument neu berechnen - - + + StdCmdFreeCADWebsite - Help - Hilfe + Help + Hilfe - FreeCAD Website - FreeCAD Webseite + FreeCAD Website + FreeCAD Webseite - The FreeCAD website - Die FreeCAD Webseite + The FreeCAD website + Die FreeCAD Webseite - - + + StdCmdFreezeViews - Standard-View - Standardansicht + Standard-View + Standardansicht - Freeze display - Ansicht einfrieren + Freeze display + Ansicht einfrieren - Freezes the current view position - Aktuelle Ansicht einfrieren + Freezes the current view position + Aktuelle Ansicht einfrieren - - + + StdCmdHideObjects - Standard-View - Standardansicht + Standard-View + Standardansicht - Hide all objects - Alle Objekte ausblenden + Hide all objects + Alle Objekte ausblenden - Hide all objects in the document - Alle Objekte im Dokument ausblenden + Hide all objects in the document + Alle Objekte im Dokument ausblenden - - + + StdCmdHideSelection - Standard-View - Standardansicht + Standard-View + Standardansicht - Hide selection - Auswahl ausblenden + Hide selection + Auswahl ausblenden - Hide all selected objects - Alle ausgewählten Objekte ausblenden + Hide all selected objects + Alle ausgewählten Objekte ausblenden - - + + StdCmdImport - File - Datei + File + Datei - &Import... - &Importieren... + &Import... + &Importieren... - Import a file in the active document - Datei in das aktive Dokument importieren + Import a file in the active document + Datei in das aktive Dokument importieren - Supported formats - Unterstützte Formate + Supported formats + Unterstützte Formate - All files (*.*) - Alle Dateien (*.*) + All files (*.*) + Alle Dateien (*.*) - - + + StdCmdMacroStartDebug - Macro - Makro + Macro + Makro - Debug macro - Makro debuggen + Debug macro + Makro debuggen - Start debugging of macro - Starte das Makro Debugging + Start debugging of macro + Starte das Makro Debugging - - + + StdCmdMacroStepOver - Macro - Makro + Macro + Makro - Step over - Einen Schritt weiter + Step over + Einen Schritt weiter - - + + StdCmdMacroStopDebug - Macro - Makro + Macro + Makro - Stop debugging - Debuggen stoppen + Stop debugging + Debuggen stoppen - Stop debugging of macro - Makro-Debuggen stoppen + Stop debugging of macro + Makro-Debuggen stoppen - - + + StdCmdMacroStopRecord - Macro - Makro + Macro + Makro - S&top macro recording - Ma&kroaufzeichnung beenden + S&top macro recording + Ma&kroaufzeichnung beenden - Stop the macro recording session - Makroaufzeichnung beenden + Stop the macro recording session + Makroaufzeichnung beenden - - + + StdCmdMeasureDistance - View - Ansicht + View + Ansicht - Measure distance - Abstand messen + Measure distance + Abstand messen - - + + StdCmdMeasurementSimple - Tools - Werkzeuge + Tools + Werkzeuge - Mesure distance - Abstand messen + Measures distance between two selected objects + Misst die Distanz zwischen zwei ausgewählten Objekten - Measures distance between two selected objects - Misst die Distanz zwischen zwei ausgewählten Objekten + Measure distance + Abstand messen - - Measure distance - Abstand messen - - - + + StdCmdMergeProjects - File - Datei + File + Datei - Merge project... - Projekt zusammenführen... + Merge project... + Projekt zusammenführen... - Merge project - Projekt zusammenführen + Merge project + Projekt zusammenführen - %1 document (*.fcstd) - %1-Dokument (*.fcstd) + %1 document (*.fcstd) + %1-Dokument (*.fcstd) - Cannot merge project with itself. - Kann Projekt nicht mit sich selbst zusammenführen. + Cannot merge project with itself. + Kann Projekt nicht mit sich selbst zusammenführen. - - + + StdCmdNew - File - Datei + File + Datei - &New - &Neu + &New + &Neu - Create a new empty document - Neues Dokument erstellen + Create a new empty document + Neues Dokument erstellen - - + + StdCmdOnlineHelp - Help - Hilfe + Help + Hilfe - Show help to the application - Hilfe zur Applikation anzeigen + Show help to the application + Hilfe zur Applikation anzeigen - - - StdCmdOnlineHelpPython - - Help - Hilfe - - - Python Manuals - Python-Handbuch - - - Show the Python documentation - Python-Dokumentation anzeigen - - - + + StdCmdOnlineHelpWebsite - Help - Hilfe + Help + Hilfe - Help Website - Hilfe-Webseite + Help Website + Hilfe-Webseite - The website where the help is maintained - Die Webseite, wo die Hilfe gepflegt wird + The website where the help is maintained + Die Webseite, wo die Hilfe gepflegt wird - - + + StdCmdOpen - File - Datei + File + Datei - &Open... - &Öffnen... + &Open... + &Öffnen... - Open a document or import files - Öffnen eines Dokuments/Importieren von Dateien + Open a document or import files + Öffnen eines Dokuments/Importieren von Dateien - Supported formats - Unterstützte Formate + Supported formats + Unterstützte Formate - All files (*.*) - Alle Dateien (*.*) + All files (*.*) + Alle Dateien (*.*) - - + + StdCmdPaste - Edit - Bearbeiten + Edit + Bearbeiten - &Paste - Ein&fügen + &Paste + Ein&fügen - Paste operation - Einfügen + Paste operation + Einfügen - - + + StdCmdPlacement - Edit - Bearbeiten + Edit + Bearbeiten - Placement... - Placement... + Placement... + Placement... - Place the selected objects - Platziere die ausgewählten Objekte + Place the selected objects + Platziere die ausgewählten Objekte - - + + StdCmdPrint - File - Datei + File + Datei - &Print... - &Drucken... + &Print... + &Drucken... - Print the document - Dokument drucken + Print the document + Dokument drucken - - + + StdCmdPrintPdf - File - Datei + File + Datei - &Export PDF... - PDF &exportieren... + &Export PDF... + PDF &exportieren... - Export the document as PDF - Das Dokument als PDF exportieren + Export the document as PDF + Das Dokument als PDF exportieren - - + + StdCmdPrintPreview - File - Datei + File + Datei - &Print preview... - &Druckvorschau... + &Print preview... + &Druckvorschau... - Print the document - Dokument drucken + Print the document + Dokument drucken - Print preview - Druckvorschau + Print preview + Druckvorschau - - + + StdCmdProjectInfo - File - Datei + File + Datei - Project i&nformation... - Projekti&nformationen... + Project i&nformation... + Projekti&nformationen... - Show details of the currently active project - Details des momentan aktiven Projekts anzeigen + Show details of the currently active project + Details des momentan aktiven Projekts anzeigen - - + + StdCmdProjectUtil - Tools - Werkzeuge + Tools + Werkzeuge - Project utility... - Projekt-Hilfsprogramm... + Project utility... + Projekt-Hilfsprogramm... - Utility to extract or create project files - Hilfsprogramm zum Entpacken oder Erstellen von Projektdateien + Utility to extract or create project files + Hilfsprogramm zum Entpacken oder Erstellen von Projektdateien - - + + StdCmdPythonWebsite - Help - Hilfe + Help + Hilfe - Python Website - Python-Webseite + Python Website + Python-Webseite - The official Python website - Die offizielle Python-Webseite + The official Python website + Die offizielle Python-Webseite - - + + StdCmdQuit - File - Datei + File + Datei - E&xit - B&eenden + E&xit + B&eenden - Quits the application - Anwendung beenden + Quits the application + Anwendung beenden - - + + StdCmdRandomColor - File - Datei + File + Datei - Random color - Zufällige Farbe + Random color + Zufällige Farbe - - + + StdCmdRecentFiles - File - Datei + File + Datei - Recent files - Letzte Dateien + Recent files + Letzte Dateien - Recent file list - Zuletzt geöffnete Dateien + Recent file list + Zuletzt geöffnete Dateien - - + + StdCmdRedo - Edit - Bearbeiten + Edit + Bearbeiten - &Redo - Wieder&herstellen + &Redo + Wieder&herstellen - Redoes a previously undone action - Zuletzt rückgängig gemachte Aktion wiederherstellen + Redoes a previously undone action + Zuletzt rückgängig gemachte Aktion wiederherstellen - - + + StdCmdRefresh - Edit - Bearbeiten + Edit + Bearbeiten - &Refresh - A&ktualisieren + &Refresh + A&ktualisieren - Recomputes the current active document - Aktualisiert das momentan aktive Dokument + Recomputes the current active document + Aktualisiert das momentan aktive Dokument - - + + StdCmdSave - File - Datei + File + Datei - &Save - &Speichern + &Save + &Speichern - Save the active document - Aktives Dokument speichern + Save the active document + Aktives Dokument speichern - - + + StdCmdSaveAs - File - Datei + File + Datei - Save &As... - Speichern &unter... + Save &As... + Speichern &unter... - Save the active document under a new file name - Aktives Dokument unter anderem Namen speichern + Save the active document under a new file name + Aktives Dokument unter anderem Namen speichern - - + + StdCmdSceneInspector - Tools - Werkzeuge + Tools + Werkzeuge - Scene inspector... - Scene inspector... + Scene inspector... + Scene inspector... - Scene inspector - Szenengraph untersuchen + Scene inspector + Szenengraph untersuchen - - + + StdCmdSelectAll - Edit - Bearbeiten + Edit + Bearbeiten - Select &All - &Alles auswählen + Select &All + &Alles auswählen - Select all - Alles auswählen + Select all + Alles auswählen - - + + StdCmdSetAppearance - Standard-View - Standardansicht + Standard-View + Standardansicht - Appearance... - Darstellung... + Appearance... + Darstellung... - Sets the display properties of the selected object - Setzen der Anzeigeeigenschaften des ausgewählten Objektes + Sets the display properties of the selected object + Setzen der Anzeigeeigenschaften des ausgewählten Objektes - - + + StdCmdShowObjects - Standard-View - Standardansicht + Standard-View + Standardansicht - Show all objects - Alle Objekte einblenden + Show all objects + Alle Objekte einblenden - Show all objects in the document - Alle Objekte im Dokument einblenden + Show all objects in the document + Alle Objekte im Dokument einblenden - - + + StdCmdShowSelection - Standard-View - Standardansicht + Standard-View + Standardansicht - Show selection - Auswahl einblenden + Show selection + Auswahl einblenden - Show all selected objects - Alle ausgewählten Objekte einblenden + Show all selected objects + Alle ausgewählten Objekte einblenden - - + + StdCmdStatusBar - View - Ansicht + View + Ansicht - Status bar - Statusleiste + Status bar + Statusleiste - Toggles the status bar - Statuszeile ein/ausblenden + Toggles the status bar + Statuszeile ein/ausblenden - - + + StdCmdTextureMapping - Tools - Werkzeuge + Tools + Werkzeuge - Texture mapping... - Texturabbildung... + Texture mapping... + Texturabbildung... - Texture mapping - Texturabbildung + Texture mapping + Texturabbildung - - + + StdCmdTileWindows - Window - Fenster + Window + Fenster - &Tile - &Anordnen + &Tile + &Anordnen - Tile the windows - Fenster anordnen + Tile the windows + Fenster anordnen - - + + StdCmdToggleBreakpoint - Macro - Makro + Macro + Makro - Toggle breakpoint - Haltepunkt an/aus + Toggle breakpoint + Haltepunkt an/aus - - + + StdCmdToggleClipPlane - Standard-View - Standardansicht + Standard-View + Standardansicht - Clipping plane - Schnittebene + Clipping plane + Schnittebene - Toggles clipping plane for active view - Schnittebene für aktive Ansicht ein- und ausblenden + Toggles clipping plane for active view + Schnittebene für aktive Ansicht ein- und ausblenden - - + + StdCmdToggleNavigation - Standard-View - Standardansicht + Standard-View + Standardansicht - Toggle navigation/Edit mode - Navigations/Editier-Modus + Toggle navigation/Edit mode + Navigations/Editier-Modus - Toggle between navigation and edit mode - Zwischen Navigations- und Editier-Modus umschalten + Toggle between navigation and edit mode + Zwischen Navigations- und Editier-Modus umschalten - - + + StdCmdToggleObjects - Standard-View - Standardansicht + Standard-View + Standardansicht - Toggle all objects - Alle Objekte umkehren + Toggle all objects + Alle Objekte umkehren - Toggles visibility of all objects in the active document - Die Sichtbarkeit aller Objekte im aktiven Dokument umkehren + Toggles visibility of all objects in the active document + Die Sichtbarkeit aller Objekte im aktiven Dokument umkehren - - + + StdCmdToggleSelectability - Standard-View - Standardansicht + Standard-View + Standardansicht - Toggle selectability - Selektierbarkeit an/aus + Toggle selectability + Selektierbarkeit an/aus - Toggles the property of the objects to get selected in the 3D-View - Schaltet die Eigenschaft der Objekte, in der 3D-Ansicht ausgewählt zu werden um + Toggles the property of the objects to get selected in the 3D-View + Schaltet die Eigenschaft der Objekte, in der 3D-Ansicht ausgewählt zu werden um - - + + StdCmdToggleVisibility - Standard-View - Standardansicht + Standard-View + Standardansicht - Toggle visibility - Ein/Ausblenden + Toggle visibility + Ein/Ausblenden - Toggles visibility - Wechselt zwischen Sichtbarkeit und Unsichtbarkeit + Toggles visibility + Wechselt zwischen Sichtbarkeit und Unsichtbarkeit - - + + StdCmdToolBarMenu - View - Ansicht + View + Ansicht - Tool&bars - Symbol&leisten + Tool&bars + Symbol&leisten - Toggles this window - Fenster ein/ausblenden + Toggles this window + Fenster ein/ausblenden - - + + StdCmdTransform - Edit - Bearbeiten + Edit + Bearbeiten - Transform... - Transformieren... + Transform... + Transformieren... - Transform the geometry of selected objects - Geometrie ausgewählter Objekte transformieren + Transform the geometry of selected objects + Geometrie ausgewählter Objekte transformieren - - + + StdCmdTreeSelection - View - Ansicht + View + Ansicht - Go to selection - Gehe zu Selektion + Go to selection + Gehe zu Selektion - Scroll to first selected item - Zum ersten selektierten Element rollen + Scroll to first selected item + Zum ersten selektierten Element rollen - - + + StdCmdUndo - Edit - Bearbeiten + Edit + Bearbeiten - &Undo - &Rückgängig + &Undo + &Rückgängig - Undo exactly one action - Letzte Aktion rückgängig machen + Undo exactly one action + Letzte Aktion rückgängig machen - - + + StdCmdUserInterface - View - Ansicht + View + Ansicht - Dock views - Fenster andocken + Dock views + Fenster andocken - Dock all top-level views - Alle Top-Level-Fenster andocken + Dock all top-level views + Alle Top-Level-Fenster andocken - - + + StdCmdViewAxo - Standard-View - Standardansicht + Standard-View + Standardansicht - Axometric - Axometrisch + Axometric + Axometrisch - Set to axometric view - Axometrisch + Set to axometric view + Axometrisch - - + + StdCmdViewBottom - Standard-View - Standardansicht + Standard-View + Standardansicht - Bottom - Unten + Bottom + Unten - Set to bottom view - Unten + Set to bottom view + Unten - - + + StdCmdViewCreate - Standard-View - Standardansicht + Standard-View + Standardansicht - Create new view - Neue Ansicht + Create new view + Neue Ansicht - Creates a new view window for the active document - Neue Ansicht für das aktive Dokument erstellen + Creates a new view window for the active document + Neue Ansicht für das aktive Dokument erstellen - - + + StdCmdViewExample1 - Standard-View - Standardansicht + Standard-View + Standardansicht - Inventor example #1 - Inventor Beispiel #1 + Inventor example #1 + Inventor Beispiel #1 - Shows a 3D texture with manipulator - Zeigt 3D-Textur mit Manipulator + Shows a 3D texture with manipulator + Zeigt 3D-Textur mit Manipulator - - + + StdCmdViewExample2 - Standard-View - Standardansicht + Standard-View + Standardansicht - Inventor example #2 - Inventor Beispiel #2 + Inventor example #2 + Inventor Beispiel #2 - Shows spheres and drag-lights - Kugeln mit verschiebbarer Lichtquelle + Shows spheres and drag-lights + Kugeln mit verschiebbarer Lichtquelle - - + + StdCmdViewExample3 - Standard-View - Standardansicht + Standard-View + Standardansicht - Inventor example #3 - Inventor Beispiel #3 + Inventor example #3 + Inventor Beispiel #3 - Shows a animated texture - Zeigt animierte Textur + Shows a animated texture + Zeigt animierte Textur - - + + StdCmdViewFitAll - Standard-View - Standardansicht + Standard-View + Standardansicht - Fit all - Einpassen + Fit all + Einpassen - Fits the whole content on the screen - Inhalt auf Bildschirmgröße einpassen + Fits the whole content on the screen + Inhalt auf Bildschirmgröße einpassen - - + + StdCmdViewFitSelection - Standard-View - Standardansicht + Standard-View + Standardansicht - Fit selection - Selektion einpassen + Fit selection + Selektion einpassen - Fits the selected content on the screen - Selektierte Objekte auf den Bildschirm einpassen + Fits the selected content on the screen + Selektierte Objekte auf den Bildschirm einpassen - - + + StdCmdViewFront - Standard-View - Standardansicht + Standard-View + Standardansicht - Front - Vorne + Front + Vorne - Set to front view - Vorderansicht + Set to front view + Vorderansicht - - + + StdCmdViewIvIssueCamPos - Standard-View - Standardansicht + Standard-View + Standardansicht - Issue camera position - Kameraposition ausgeben + Issue camera position + Kameraposition ausgeben - Issue the camera position to the console and to a macro, to easily recall this position - Ausgeben der Kameraposition auf die Konsole und in ein Makro, um diese Position einfach wiederherstellen zu können + Issue the camera position to the console and to a macro, to easily recall this position + Ausgeben der Kameraposition auf die Konsole und in ein Makro, um diese Position einfach wiederherstellen zu können - - + + StdCmdViewIvStereoInterleavedColumns - Standard-View - Standardansicht + Standard-View + Standardansicht - Stereo Interleaved Columns - Vertikales Interlacing + Stereo Interleaved Columns + Vertikales Interlacing - Switch stereo viewing to Interleaved Columns - Wechsle in vertikale Interlacing-Stereo-Ansicht + Switch stereo viewing to Interleaved Columns + Wechsle in vertikale Interlacing-Stereo-Ansicht - - + + StdCmdViewIvStereoInterleavedRows - Standard-View - Standardansicht + Standard-View + Standardansicht - Stereo Interleaved Rows - Horizontales Interlacing + Stereo Interleaved Rows + Horizontales Interlacing - Switch stereo viewing to Interleaved Rows - Wechsle in horizontale Interlacing-Stereo-Ansicht + Switch stereo viewing to Interleaved Rows + Wechsle in horizontale Interlacing-Stereo-Ansicht - - + + StdCmdViewIvStereoOff - Standard-View - Standardansicht + Standard-View + Standardansicht - Stereo Off - Stereo aus + Stereo Off + Stereo aus - Switch stereo viewing off - Schalte Stereo-Ansicht aus + Switch stereo viewing off + Schalte Stereo-Ansicht aus - - + + StdCmdViewIvStereoQuadBuff - Standard-View - Standardansicht + Standard-View + Standardansicht - Stereo quad buffer - Stereo 4-fach Puffer + Stereo quad buffer + Stereo 4-fach Puffer - Switch stereo viewing to quad buffer - Wechsle in Stereo-Ansicht mit 4-fach Puffer + Switch stereo viewing to quad buffer + Wechsle in Stereo-Ansicht mit 4-fach Puffer - - + + StdCmdViewIvStereoRedGreen - Standard-View - Standardansicht + Standard-View + Standardansicht - Stereo red/green - Stereo rot/grün + Stereo red/green + Stereo rot/grün - Switch stereo viewing to red/green - Wechsle in Stereo-Rot-Grün-Ansicht + Switch stereo viewing to red/green + Wechsle in Stereo-Rot-Grün-Ansicht - - + + StdCmdViewLeft - Standard-View - Standardansicht + Standard-View + Standardansicht - Left - Links + Left + Links - Set to left view - Linksansicht + Set to left view + Linksansicht - - + + StdCmdViewRear - Standard-View - Standardansicht + Standard-View + Standardansicht - Rear - Hinten + Rear + Hinten - Set to rear view - Hinteransicht + Set to rear view + Hinteransicht - - + + StdCmdViewRight - Standard-View - Standardansicht + Standard-View + Standardansicht - Right - Rechts + Right + Rechts - Set to right view - Rechtsansicht + Set to right view + Rechtsansicht - - + + StdCmdViewRotateLeft - Standard-View - Standardansicht + Standard-View + Standardansicht - Rotate Left - + Rotate Left + Linksherum rotieren - Rotate the view by 90° counter-clockwise - + Rotate the view by 90° counter-clockwise + Ansicht um 90° gegen den Uhrzeigersinn drehen - - + + StdCmdViewRotateRight - Standard-View - Standardansicht + Standard-View + Standardansicht - Rotate Right - + Rotate Right + Rechtsherum rotieren - Rotate the view by 90° clockwise - + Rotate the view by 90° clockwise + Ansicht um 90° im Uhrzeigersinn drehen - - + + StdCmdViewTop - Standard-View - Standardansicht + Standard-View + Standardansicht - Top - Oben + Top + Oben - Set to top view - Oberansicht + Set to top view + Oberansicht - - + + StdCmdWhatsThis - Help - Hilfe + Help + Hilfe - &What's This? - Dire&kthilfe + &What's This? + Dire&kthilfe - What's This - Direkthilfe + What's This + Direkthilfe - - + + StdCmdWindows - Window - Fenster + Window + Fenster - &Windows... - &Fenster... + &Windows... + &Fenster... - Windows list - Liste von Fenstern + Windows list + Liste von Fenstern - - + + StdCmdWindowsMenu - Window - Fenster + Window + Fenster - Activates this window - Schaltet dieses Fenster aktiv + Activates this window + Schaltet dieses Fenster aktiv - - + + StdCmdWorkbench - View - Ansicht + View + Ansicht - Workbench - Arbeitsbereich + Workbench + Arbeitsbereich - Switch between workbenches - Zwischen Arbeitsbereichen wechseln + Switch between workbenches + Zwischen Arbeitsbereichen wechseln - - + + StdOrthographicCamera - Standard-View - Standardansicht + Standard-View + Standardansicht - Orthographic view - Orthographische Ansicht + Orthographic view + Orthographische Ansicht - Switches to orthographic view mode - In orthographische Ansicht wechseln + Switches to orthographic view mode + In orthographische Ansicht wechseln - - + + StdPerspectiveCamera - Standard-View - Standardansicht + Standard-View + Standardansicht - Perspective view - Perspektivische Ansicht + Perspective view + Perspektivische Ansicht - Switches to perspective view mode - In perspektivische Ansicht wechseln + Switches to perspective view mode + In perspektivische Ansicht wechseln - - + + StdViewBoxZoom - Standard-View - Standardansicht + Standard-View + Standardansicht - Box zoom - Zoomen mit Rechteck + Box zoom + Zoomen mit Rechteck - - + + StdViewDockUndockFullscreen - Standard-View - Standardansicht + Standard-View + Standardansicht - Document window - Dokumentfenster + Document window + Dokumentfenster - Display the active view either in fullscreen, in undocked or docked mode - Aktives Fenster im Vollbild-Modus, im abgedockten oder angedockten Modus anzeigen + Display the active view either in fullscreen, in undocked or docked mode + Aktives Fenster im Vollbild-Modus, im abgedockten oder angedockten Modus anzeigen - - + + StdViewScreenShot - Standard-View - Standardansicht + Standard-View + Standardansicht - Save picture... - Bildinhalt speichern... + Save picture... + Bildinhalt speichern... - Creates a screenshot of the active view - Erzeugt einen Schnappschuss der aktiven Ansicht + Creates a screenshot of the active view + Erzeugt einen Schnappschuss der aktiven Ansicht - - + + StdViewZoomIn - Standard-View - Standardansicht + Standard-View + Standardansicht - Zoom In - Vergrößern + Zoom In + Vergrößern - - + + StdViewZoomOut - Standard-View - Standardansicht + Standard-View + Standardansicht - Zoom Out - Verkleinern + Zoom Out + Verkleinern - - + + Std_DrawStyle - As is - Original + As is + Original - Normal mode - Normalmodus + Normal mode + Normalmodus - Wireframe - Drahtgitter + Wireframe + Drahtgitter - Wireframe mode - Drahtgitter-Modus + Wireframe mode + Drahtgitter-Modus - - + + Std_ExportGraphviz - Graphviz not found - + Graphviz not found + Graphviz nicht gefunden - Graphviz couldn't be found on your system. -Do you want to specify its installation path if it's already installed? - + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + Graphviz konnte nicht auf Ihrem System gefunden werden. Möchten Sie den Installationspfad angeben, wenn es bereits installiert ist? - Graphviz installation path - + Graphviz installation path + Graphviz-Installationspfad - Dependency graph - + Dependency graph + Abhängigkeitsgraph - Graphviz failed - + Graphviz failed + Graphviz ist fehlgeschlagen - Graphviz failed to create an image file - + Graphviz failed to create an image file + Graphviz konnte keine Bild-Datei erstellen - - + + Workbench - &File - &Datei + &File + &Datei - &Edit - &Bearbeiten + &Edit + &Bearbeiten - Standard views - Standardansichten + Standard views + Standardansichten - &Stereo - &Stereo + &Stereo + &Stereo - &Zoom - &Zoom + &Zoom + &Zoom - Visibility - Sichtbarkeit + Visibility + Sichtbarkeit - &View - &Ansicht + &View + &Ansicht - &Tools - &Werkzeuge + &Tools + &Werkzeuge - &Macro - &Makro + &Macro + &Makro - &Windows - &Fenster + &Windows + &Fenster - &On-line help - &Online-Hilfe + &On-line help + &Online-Hilfe - &Help - &Hilfe + &Help + &Hilfe - File - Datei + File + Datei - Macro - Makro + Macro + Makro - View - Ansicht + View + Ansicht - Special Ops - Spezialfunktionen + Special Ops + Spezialfunktionen - - + + testClass - test - test + test + test - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - Choose the style of the Task Panel - Wählen Sie den Stil des Aufgabenfeldes + Choose the style of the Task Panel + Wählen Sie den Stil des Aufgabenfeldes - Default - Standard + Default + Standard - Windows XP - Windows XP + Windows XP + Windows XP - + diff --git a/src/Gui/Language/FreeCAD_es.qm b/src/Gui/Language/FreeCAD_es-ES.qm similarity index 65% rename from src/Gui/Language/FreeCAD_es.qm rename to src/Gui/Language/FreeCAD_es-ES.qm index df2741555..d973cc7a7 100644 Binary files a/src/Gui/Language/FreeCAD_es.qm and b/src/Gui/Language/FreeCAD_es-ES.qm differ diff --git a/src/Gui/Language/FreeCAD_es-ES.ts b/src/Gui/Language/FreeCAD_es-ES.ts new file mode 100644 index 000000000..09ef41d98 --- /dev/null +++ b/src/Gui/Language/FreeCAD_es-ES.ts @@ -0,0 +1,5842 @@ + + + + + Angle + + Form + Formulario + + + A: + A: + + + B: + B: + + + C: + C: + + + Angle Snap + Ajuste angular + + + 1 ° + 1 ° + + + 2 ° + 2 ° + + + 5 ° + 5 ° + + + 10 ° + 10 ° + + + 20 ° + 20 ° + + + 45 ° + 45 ° + + + 90 ° + 90 ° + + + 180 ° + 180 ° + + + + Gui::AccelLineEdit + + none + ninguno + + + + Gui::ActionSelector + + Available: + Disponible: + + + Selected: + Seleccionado: + + + Add + Añadir + + + Remove + Quitar + + + Move up + Mover hacia arriba + + + Move down + Mover hacia abajo + + + + Gui::AlignmentView + + Movable object + Objeto móvil + + + Fixed object + Objeto fijo + + + + Gui::BlenderNavigationStyle + + Press left mouse button + Cliquee el botón izquierdo del mouse + + + Press SHIFT and middle mouse button + Pulse SHIFT y el botón central del mouse + + + Press middle mouse button + Cliquee el botón central del mouse + + + Scroll middle mouse button + Despláce botón central del mouse + + + + Gui::CADNavigationStyle + + Press left mouse button + Cliquee el botón izquierdo del mouse + + + Press middle mouse button + Cliquee el botón central del mouse + + + Press left and middle mouse button + Cliquee el botón central e izquierdo del mouse + + + Scroll middle mouse button + Despláce botón central del mouse + + + + Gui::Command + + Standard + Estándar + + + + Gui::ContainerDialog + + &OK + &Aceptar + + + &Cancel + &Cancelar + + + + Gui::ControlSingleton + + Task panel + Panel de tareas + + + + Gui::Dialog::AboutApplication + + About + Acerca de + + + Revision number + Número de revisión + + + Version + Versión + + + OK + Aceptar + + + + (Vacio) + + + Release date + Fecha de la versión + + + Platform + Plataforma + + + License... + Licencia... + + + Copy to clipboard + Copiar al portapapeles + + + + Gui::Dialog::ButtonModel + + Button %1 + Botón %1 + + + Out Of Range + Fuera de rango + + + + Gui::Dialog::CommandModel + + Commands + Comandos + + + + Gui::Dialog::DemoMode + + View Turntable + Ver Torno + + + Speed + Velocidad + + + Maximum + Valor máximo + + + Minimum + Valor mínimo + + + Fullscreen + Pantalla completa + + + Enable timer + Activar el temporizador + + + s + s + + + Angle + Ángulo + + + 90° + 90° + + + -90° + -90° + + + Play + Reproducir + + + Stop + Parar + + + Close + Cerrar + + + + Gui::Dialog::DlgActivateWindow + + Choose Window + Seleccionar ventana + + + &Activate + &Activar + + + Alt+A + Alt+A + + + &Cancel + &Cancelar + + + + (Vacio) + + + + Gui::Dialog::DlgActivateWindowImp + + Windows + Ventanas + + + + Gui::Dialog::DlgAuthorization + + Authorization + Autorización + + + &OK + &Aceptar + + + &Cancel + &Cancelar + + + Password: + Contraseña: + + + User name: + Nombre de usuario: + + + + (Vacio) + + + + Gui::Dialog::DlgChooseIcon + + Choose Icon + Seleccionar icono + + + OK + Aceptar + + + Cancel + Cancelar + + + Add icons... + Añadir iconos... + + + + Gui::Dialog::DlgCustomActions + + Macros + Macros + + + Setup Custom Macros + Macros de sistema personalizadas + + + Macro: + Macro: + + + ... + ... + + + Pixmap + Pixmap + + + Accelerator: + Acelerador: + + + What's this: + Qué es esto: + + + Status text: + Texto de estado: + + + Tool tip: + sugerencia: + + + Menu text: + Texto de menú: + + + Add + Añadir + + + Remove + Quitar + + + Replace + Reemplazar + + + + Gui::Dialog::DlgCustomActionsImp + + Icons + Iconos + + + Macros + Macros + + + No macro + Ninguna macro + + + No macros found. + Ninguna macro encontrada. + + + Macro not found + Macro no encontrada + + + Sorry, couldn't find macro file '%1'. + Lo siento, no se ha podido encontrar el archivo de macro '%1'. + + + Empty macro + Macro vacía + + + Please specify the macro first. + Por favor especifique la macro primero. + + + Empty text + Texto vacío + + + Please specify the menu text first. + Por favor, especifique el texto del menú primero. + + + No item selected + Ningún elemento seleccionado + + + Please select a macro item first. + Por favor seleccione un elemento de macro primero. + + + + Gui::Dialog::DlgCustomCommands + + Commands + Comandos + + + + (Vacio) + + + + Gui::Dialog::DlgCustomCommandsImp + + Category + Categoría + + + Icon + Icono + + + Command + Comando + + + + Gui::Dialog::DlgCustomKeyboard + + Keyboard + Teclado + + + Description: + Descripción: + + + &Category: + &Categoría: + + + C&ommands: + C&omandos: + + + Current shortcut: + Atajo de teclado actual: + + + Press &new shortcut: + Presionar &nuevo atajo de teclado: + + + Currently assigned to: + Actualmente asignado a: + + + &Assign + &Asignar + + + Alt+A + Alt+A + + + &Reset + &Restaurar + + + Alt+R + Alt+R + + + Re&set All + Re&staurar todo + + + Alt+S + Alt+S + + + + (Vacio) + + + + Gui::Dialog::DlgCustomKeyboardImp + + Icon + Icono + + + Command + Comando + + + none + ninguno + + + Multiple defined shortcut + Múltiples atajos de teclado definidos + + + The shortcut '%1' is defined more than once. This could result into unexpected behaviour. + El atajo de teclado '%1' está definido más de una vez. Esto puede ocasionar un comportamiento inesperado. + + + Already defined shortcut + Atajo de teclado ya definido + + + The shortcut '%1' is already assigned to '%2'. + +Please define another shortcut. + El atajo de teclado '%1' ya está asignado a '%2'. + +Por favor defina otro atajo de teclado. + + + + Gui::Dialog::DlgCustomToolBoxbarsImp + + Toolbox bars + Barras de herramientas + + + + Gui::Dialog::DlgCustomToolbars + + Toolbars + Barras de herramientas + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> Los cambios se activarán la próxima vez que cargue el entorno apropiado</p></body></html> + + + Move right + Mover a la derecha + + + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Mueva el elemento seleccionado un nivel hacia abajo.</b><p>Esto también cambiará el nivel del elemento padre.</p> + + + Move left + Mover a la izquierda + + + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Mueva el elemento seleccionado un nivel hacia arriba.</b><p>Esto también cambiará el nivel del elemento padre.</p> + + + Move down + Mover hacia abajo + + + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Mueva el elemento seleccionado hacia abajo.</b><p>El elemento se moverá dentro del nivel de jerarquía.</p> + + + Move up + Mover hacia arriba + + + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Mueva el elemento seleccionado hacia arriba.</b><p>El elemento se moverá dentro del nivel de jerarquía.</p> + + + New... + Nuevo... + + + Rename... + Renombrar... + + + Delete + Borrar + + + Icon + Icono + + + Command + Comando + + + <Separator> + <Separator> + + + New toolbar + Nueva barra de herramientas + + + Toolbar name: + Nombre de la barra de herramientas: + + + Duplicated name + Nombre duplicado + + + The toolbar name '%1' is already used + El nombre de la barra de herramientas '%1' ya se está utilizando + + + Rename toolbar + Renombrar barra de herramientas + + + + (Vacio) + + + + Gui::Dialog::DlgCustomizeImp + + Customize + Personalizar + + + &Help + Ay&uda + + + &Close + &Cerrar + + + + Gui::Dialog::DlgCustomizeSpaceball + + Spaceball + Spaceball + + + No Spaceball Present + Spaceball no presente + + + Buttons + Botones + + + Clear + Limpiar + + + Print Reference + Referencia de impresión + + + + Gui::Dialog::DlgDisplayProperties + + Display properties + Propiedades de visualización + + + Display + Visualización + + + Transparency: + Transparencia: + + + Line width: + Ancho de línea: + + + Point size: + Tamaño de punto: + + + Material + Material + + + ... + ... + + + Close + Cerrar + + + Viewing mode + Modo de visualización + + + Plot mode: + Modo de impresión: + + + + (Vacio) + + + Line transparency: + Transparencia de la línea: + + + Line color: + Color de la línea: + + + Shape color: + Color del cuerpo: + + + Color plot: + Color del plot: + + + Document window: + Document window: + + + + Gui::Dialog::DlgEditorSettings + + Editor + Editor + + + Options + Opciones + + + Enable line numbers + Permite números de línea + + + Enable folding + Permite el plegado + + + Indentation + Sangrado + + + Insert spaces + Insertar espacios + + + Tab size: + Tamaño de la tabulación: + + + Indent size: + Tamaño de sangrado: + + + Keep tabs + Mantener la tabulación + + + Display Items + Visualizar elementos + + + Family: + Familia: + + + Size: + Tamaño: + + + Preview: + Previsualización: + + + + (Vacio) + + + + Gui::Dialog::DlgGeneral + + General + General + + + Start up + Iniciar + + + Enable splash screen at start up + Activar página de bienvenida en el inicio + + + Switch to tab of report window: + Cambiar a la pestaña de ventana de informe: + + + Auto load module after start up: + Carga automática del módulo después de iniciar: + + + Language + Idioma + + + Change language: + Cambiar idioma: + + + Main window + Ventana principal + + + Size of recent file list + Tamaño de la lista de archivos recientes + + + Window style: + Estilo de ventana: + + + Size of toolbar icons: + Tamaño de los iconos de la barra de herramientas: + + + + Gui::Dialog::DlgGeneralImp + + Default (%1 x %1) + Predeterminado (%1 x %1) + + + Small (%1 x %1) + Pequeño (%1 x %1) + + + Large (%1 x %1) + Grande (%1 x %1) + + + Extra large (%1 x %1) + Extra lgrande (%1 x %1) + + + + Gui::Dialog::DlgInputDialog + + Input + introducir + + + OK + Aceptar + + + Cancel + Cancelar + + + + (Vacio) + + + + Gui::Dialog::DlgInspector + + Scene Inspector + Inspector de escena + + + + Gui::Dialog::DlgMacroExecute + + Execute macro + Ejecutar macro + + + Macro name: + Nombre de la macro: + + + Macro destination: + Destino de la macro: + + + Execute + Ejecutar + + + Close + Cerrar + + + Create + Crear + + + Delete + Borrar + + + Edit + Editar + + + + Gui::Dialog::DlgMacroExecuteImp + + Macros + Macros + + + Macro file + Archivo de macro + + + Enter a file name, please: + Introduzca un nombre de archivo, por favor: + + + Existing file + Archivo existente + + + '%1'. +This file already exists. + '%1'. +Este archivo ya existe. + + + Delete macro + Borrar macro + + + Do you really want to delete the macro '%1'? + ¿Realmente quiere borrar la macro '%1'? + + + Cannot create file + No se puede crear el archivo + + + Creation of file '%1' failed. + Falló la creación del archivo '%1'. + + + + Gui::Dialog::DlgMacroRecord + + Macro recording + Grabando macro + + + Macro name: + Nombre de la macro: + + + Stop + Parar + + + Cancel + Cancelar + + + Macro path: + Ruta de la macro: + + + ... + ... + + + Record + Grabar + + + + Gui::Dialog::DlgMacroRecordImp + + Macro recorder + Grabador de macros + + + Specify first a place to save. + Especificar primero donde guardar. + + + Existing macro + Macro existente + + + The macro '%1' already exists. Do you want to overwrite? + La macro '%1' ya existe. ¿Desea sobreescribirla? + + + The macro directory doesn't exist. Please, choose another one. + No existe el directorio de macro. Por favor, seleccione otro. + + + Choose macro directory + Elija el directorio de macro + + + + Gui::Dialog::DlgMaterialProperties + + Material properties + Propiedades de material + + + &Close + &Cerrar + + + Alt+C + Alt+C + + + Material + Material + + + Diffuse color: + Color difuso: + + + Specular color: + Color especular: + + + Shininess: + Luminosidad: + + + % + % + + + Ambient color: + Color ambiente: + + + + (Vacio) + + + Emissive color: + Color emisivo: + + + + Gui::Dialog::DlgOnlineHelp + + On-line help + Ayuda online + + + Help viewer + Visor de ayuda + + + Location of start page + Ubicación de la página de inicio + + + + Gui::Dialog::DlgOnlineHelpImp + + HTML files (*.html *.htm) + Archivos HTML (*.html *.htm) + + + Access denied + Acceso denegado + + + Access denied to '%1' + +Specify another directory, please. + Acceso denegado a '%1' + +Especifique otro directorio, por favor. + + + + Gui::Dialog::DlgParameter + + Parameter Editor + Editor de parámetros + + + Save to disk + Guardar en disco + + + Alt+C + Alt+C + + + &Close + &Cerrar + + + + Gui::Dialog::DlgParameterImp + + Group + Grupo + + + Name + Nombre + + + Type + Tipo + + + Value + Valor + + + User parameter + Parámetro del usuario + + + Invalid input + Entrada incorrecta + + + Invalid key name '%1' + Nombre clave inválido '%1' + + + System parameter + Parámetro del sistema + + + + Gui::Dialog::DlgPreferences + + Preferences + Preferencias + + + &Help + Ay&uda + + + Alt+H + Alt+H + + + &OK + &Aceptar + + + &Apply + &Aplicar + + + Alt+A + Alt+A + + + &Cancel + &Cancelar + + + + (Vacio) + + + + Gui::Dialog::DlgPreferencesImp + + Wrong parameter + Parámetro incorrecto + + + + Gui::Dialog::DlgProjectInformation + + Project information + Información del proyecto + + + Information + Información + + + &Name: + &Nombre: + + + Commen&t: + Comen&tario: + + + Path: + Ruta: + + + &Last modified by: + &Última modificación por: + + + Created &by: + Creado &por: + + + Com&pany: + Em&presa: + + + Last &modification date: + Fecha de la última &modificación: + + + Creation &date: + Fecha &de creación: + + + &OK + &Aceptar + + + &Cancel + &Cancelar + + + + (Vacio) + + + + Gui::Dialog::DlgProjectUtility + + Project utility + Utilidad del proyecto + + + Extract project + Extraer proyecto + + + Source + Fuente + + + Project file (*.fcstd) + Archivo de proyecto (*. fcstd) + + + Destination + Destino + + + Extract + Extraer + + + Create project + Crear proyecto + + + Document.xml + Documento.xml + + + Create + Crear + + + Load project file after creation + Cargar el archivo del proyecto después de la creación + + + Empty source + Fuente vacía + + + No source is defined. + No hay fuentes definidas. + + + Empty destination + Destino vacío + + + No destination is defined. + Ningún destino definido. + + + + Gui::Dialog::DlgReportView + + Output window + Ventana de salida + + + Output + Salida + + + Record log messages + Grabar lista de mensajes + + + Record warnings + Guardar advertencias + + + Record error messages + Guardar mensajes de error + + + Colors + Colores + + + Normal messages: + Mensajes normales: + + + Log messages: + Lista de mensajes: + + + Warnings: + Advertencias: + + + Errors: + Errores: + + + + (Vacio) + + + Redirect internal Python errors to report view + Redirigir los errores internos de Python a un informe visual + + + Redirect internal Python output to report view + Redirigir la salida de Python interna a la vista de informe + + + + Gui::Dialog::DlgRunExternal + + Running external program + Ejecutando programa externo + + + TextLabel + EtiquetaTexto + + + Advanced >> + Avanzado>> + + + ... + ... + + + Accept changes + Aceptar cambios + + + Discard changes + Descartar cambios + + + Abort program + Abortar programa + + + Help + Ayuda + + + Select a file + Seleccionar un archivo + + + + Gui::Dialog::DlgSettings3DView + + 3D View + Vista 3D + + + 3D View settings + Configuración de vista 3D + + + Show coordinate system in the corner + Mostrar sistema de coordenadas en la esquina + + + Show counter of frames per second + Mostrar contador de cuadros por segundo + + + Enable animation + Activar animación + + + Enable anti-aliasing (slower) + Activar anti-aliasing (más lento) + + + Eye to eye distance for stereo modes: + Distancia del punto de mira para los modos estéreo: + + + Camera type + Tipo de cámara + + + Orthographic rendering + Renderizado ortográfico + + + Perspective rendering + Renderizado en perspectiva + + + + (Vacio) + + + 3D Navigation + Navegación 3D + + + Mouse... + Mouse... + + + Intensity of backlight + Intensidad de luz de fondo + + + Enable backlight color + Habilitar color de luz de fondo + + + Orbit style + Estilo órbita + + + Turntable + Mesa giratoria + + + Trackball + Trackball + + + Invert zoom + Invertir zoom + + + Zoom at cursor + Zoom at cursor + + + Zoom step + Zoom step + + + + Gui::Dialog::DlgSettings3DViewImp + + %1 navigation + %1 navegación + + + + Gui::Dialog::DlgSettingsColorGradient + + Color model + Color del modelo + + + &Gradient: + &Gradiente: + + + red-yellow-green-cyan-blue + rojo-amarillo-verde-cian-azul + + + blue-cyan-green-yellow-red + azul-cian-verde-amarillo-rojo + + + white-black + blanco-negro + + + black-white + negro-blanco + + + Visibility + Visibilidad + + + Out g&rayed + No &seleccionable + + + Alt+R + Alt+R + + + Out &invisible + Sin &visibilidad + + + Alt+I + Alt+I + + + Style + Estilo + + + &Zero + &Cero + + + Alt+Z + Alt+Z + + + &Flow + &Flujo + + + Alt+F + Alt+F + + + &OK + &Aceptar + + + &Cancel + &Cancelar + + + Parameter range + Rango de parámetros + + + Mi&nimum: + Mín&imo: + + + Ma&ximum: + Má&ximo: + + + &Labels: + &Etiquetas: + + + &Decimals: + &Decimales: + + + + (Vacio) + + + Color-gradient settings + Ajustes de degradado de color + + + + Gui::Dialog::DlgSettingsColorGradientImp + + Wrong parameter + Parámetro incorrecto + + + The maximum value must be higher than the minimum value. + El valor máximo debe ser mayor que el valor mínimo. + + + + Gui::Dialog::DlgSettingsDocument + + Document + Documento + + + General + General + + + Document save compression level +(0 = none, 9 = highest, 3 = default) + Nivel de compresión de guardado del documento +(0 = ninguno, 9 = el más alto, 3 = por defecto) + + + Create new document at start up + Crear un documento nuevo al iniciar + + + Storage + Almacenamiento + + + Saving transactions (Auto-save) + Guardando operaciones (Guardado automático) + + + Discard saved transaction after saving document + Descartar operaciones guardadas depués de guardar el documento + + + Save thumbnail into project file when saving document + Guardar la imagen en miniatura dentro del archivo de proyecto cuando se guarda un documento + + + Create up to backup files when resaving document + Crear archivos de copia de seguridad cuando se vuelva a guardar el documento + + + Document objects + Objetos del documento + + + Allow duplicate object labels in one document + Permitir etiquetas de objetos duplicadas en un documento + + + Maximum Undo/Redo steps + Máximos pasos de deshacer/rehacer + + + Using Undo/Redo on documents + Usando Deshacer/Rehacer en los documentos + + + + Gui::Dialog::DlgSettingsEditorImp + + Text + Texto + + + Bookmark + Marcador + + + Breakpoint + Punto de parada + + + Keyword + Palabra clave + + + Comment + Comentar + + + Block comment + Comentar bloque + + + Number + Número + + + String + Cadena de texto + + + Character + Caracter + + + Class name + Nombre de clase + + + Define name + Definir nombre + + + Operator + Operador + + + Python output + Salida de Python + + + Python error + Error de Python + + + Items + Elementos + + + Current line highlight + Current line highlight + + + + Gui::Dialog::DlgSettingsImage + + Image settings + Configuración de imagen + + + Image properties + Propiedades de imagen + + + Back&ground: + C&olor de fondo: + + + Current + Actual + + + White + Blanco + + + Black + Negro + + + Transparent + Transparente + + + Image dimensions + Dimensiones de imagen + + + Pixel + Pixel + + + &Width: + &Ancho: + + + Current screen + Pantalla actual + + + Icon 32 x 32 + Icono 32 x 32 + + + Icon 64 x 64 + Icono 64 x 64 + + + Icon 128 x 128 + Icono 128 x 128 + + + CGA 320 x 200 + CGA 320 x 200 + + + QVGA 320 x 240 + QVGA 320 x 240 + + + VGA 640 x 480 + VGA 640 x 480 + + + NTSC 720 x 480 + NTSC 720 x 480 + + + PAL 768 x 578 + PAL 768 x 578 + + + SVGA 800 x 600 + SVGA 800 x 600 + + + XGA 1024 x 768 + XGA 1024 x 768 + + + HD720 1280 x 720 + HD720 1280 x 720 + + + SXGA 1280 x 1024 + SXGA 1280 x 1024 + + + SXGA+ 1400 x 1050 + SXGA+ 1400 x 1050 + + + UXGA 1600 x 1200 + UXGA 1600 x 1200 + + + HD1080 1920 x 1080 + HD1080 1920 x 1080 + + + WUXGA 1920 x 1200 + WUXGA 1920 x 1200 + + + QXGA 2048 x 1538 + QXGA 2048 x 1538 + + + WQXGA 2560 x 1600 + WQXGA 2560 x 1600 + + + QSXGA 2560 x 2048 + QSXGA 2560 x 2048 + + + QUXGA 3200 × 2400 + QUXGA 3200 × 2400 + + + HUXGA 6400 × 4800 + HUXGA 6400 × 4800 + + + !!! 10000 x 10000 + !!! 10000 x 10000 + + + Standard sizes: + Tamaños estándar: + + + &Height: + &Altura: + + + Aspect ratio: + Relación de aspecto: + + + &Screen + &Pantalla + + + Alt+S + Alt+S + + + &4:3 + &4:3 + + + Alt+4 + Alt+4 + + + 1&6:9 + 1&6:9 + + + Alt+6 + Alt+6 + + + &1:1 + &1:1 + + + Alt+1 + Alt+1 + + + Image comment + Comentario de imagen + + + Insert MIBA + Introducir MIBA + + + Insert comment + Introducir comentario + + + + Gui::Dialog::DlgSettingsMacro + + Macro + Macro + + + Macro recording settings + Configuración de la grabación de macros + + + Logging Commands + Comandos de inicio de sesión + + + Show script commands in python console + Mostrar comandos de archivos de guión en la consola de Python + + + Log all commands issued by menus to file: + Registrar todos los comandos publicados por menús en el archivo: + + + FullScript.FCScript + FullScript.FCScript + + + Gui commands + Comandos de interfaz de usuario + + + Recording GUI commands + Grabando comandos de interfaz de usuario + + + Record as comment + Grabar como comentario + + + Macro path + Ruta de la macro + + + General macro settings + General macro settings + + + Run macros in local environment + Run macros in local environment + + + + Gui::Dialog::DlgSettingsUnits + + Units + Unidades + + + Units settings + Configuración de unidades + + + Standard (mm/kg/s/degree) + Estándar (mm/kg/s/grados) + + + MKS (m/kg/s/degree) + MKS (m/kg/s/grado) + + + Magnitude + Magnitud + + + Unit + Unidad + + + User system: + Sistema del usuario: + + + Imperial (in/lb) + Imperial (pulg/lb) + + + + Gui::Dialog::DlgSettingsViewColor + + Colors + Colores + + + Selection + Selección + + + Enable selection highlighting + Activar resaltado de selección + + + Enable preselection highlighting + Activar resaltado de preselección + + + Background color + Color de fondo + + + Middle color + Color medio + + + Color gradient + Gradiente de color + + + Simple color + Color simple + + + Default colors + Colores predeterminados + + + Edited edge color + Color de borde editado + + + Edited vertex color + Color de vértice editado + + + Construction geometry + Geometría de construcción + + + Fully constrained geometry + Geometría completamente restringida + + + The color of vertices being edited + El color de los vérticos está siendo editado + + + The color of edges being edited + El color de los bordes que se están editando + + + The color of construction geometry in edit mode + The color of construction geometry in edit mode + + + The color of fully constrained geometry in edit mode + The color of fully constrained geometry in edit mode + + + Cursor text color + Color de cursor para texto + + + Default shape color + Color de forma predeterminada + + + The default color for new shapes + The default color for new shapes + + + Default line width and color + Default line width and color + + + The default line color for new shapes + El color de línea por defecto para nuevas formas + + + The default line thickness for new shapes + The default line thickness for new shapes + + + px + px + + + + Gui::Dialog::DlgTipOfTheDay + + Tip of the day + Consejo del día + + + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Sabías que...</font></font></b> + + + &Show tips at start up + &Mostrar consejos al inicio + + + Alt+S + Alt+S + + + &Next Tip + &Siguiente consejo + + + Alt+N + Alt+N + + + &Close + &Cerrar + + + Alt+C + Alt+C + + + + (Vacio) + + + + Gui::Dialog::DlgTipOfTheDayImp + + Download failed: %1 + + Descarga fallida: %1 + + + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + Si quieres aprender más sobre FreeCAD deberías ir a %1 o presionar el elemento de ayuda en el menú de ayuda. + + + + Gui::Dialog::DockablePlacement + + Placement + Ubicación + + + + Gui::Dialog::DownloadDialog + + Download + Descargar + + + Cancel + Cancelar + + + Close + Cerrar + + + There already exists a file called %1 in the current directory. Overwrite? + There already exists a file called %1 in the current directory. Overwrite? + + + Unable to save the file %1: %2. + Unable to save the file %1: %2. + + + Downloading %1. + Descargando %1. + + + Download canceled. + Descarga cancelada. + + + Download failed: %1. + La descarga ha fallado: %1. + + + Downloaded %1 to current directory. + %1 Descargado al directorio actual. + + + + Gui::Dialog::IconDialog + + Add icon + Agregar icono + + + + Gui::Dialog::InputVector + + Input vector + Introducir vector + + + Vector + Vector + + + Z: + Z: + + + Y: + Y: + + + X: + X: + + + OK + Aceptar + + + + Gui::Dialog::LicenseDialog + + Copyright + Derechos de autor + + + + Gui::Dialog::MouseButtons + + Mouse buttons + Botones del mouse + + + Configuration + Configuración + + + Selection: + Selección: + + + Panning + Encuadrar + + + Rotation: + Rotación: + + + Zooming: + Zoom: + + + + Gui::Dialog::ParameterGroup + + Expand + Expandir + + + Add sub-group + Añadir subgrupo + + + Remove group + Eliminar subgrupo + + + Rename group + Renombrar grupo + + + Export parameter + Exportar parámetro + + + Import parameter + Importar parámetro + + + Collapse + Colapsar + + + Do really want to remove this parameter group? + ¿Realmente desea eliminar este grupo de parámetros? + + + Existing sub-group + Subgrupo existente + + + The sub-group '%1' already exists. + El subgrupo '%1' ya existe. + + + Export parameter to file + Exportar parámetro a archivo + + + XML (*.FCParam) + XML (*.FCParam) + + + Import parameter from file + Importar parámetro de archivo + + + Import Error + Error de importación + + + Reading from '%1' failed. + La lectura de '%1' ha fallado. + + + + Gui::Dialog::ParameterValue + + Change value + Cambiar valor + + + Remove key + Eliminar clave + + + Rename key + Renombrar clave + + + New + Nuevo + + + New string item + Nuevo elemento de cadena de texto + + + New float item + Nuevo elemento de coma flotante + + + New integer item + Nuevo elemento entero + + + New unsigned item + Nuevo elemento sin signo + + + New Boolean item + nuevo elemento booleano + + + Existing item + Elemento existente + + + The item '%1' already exists. + El elemento '%1' ya existe. + + + + Gui::Dialog::Placement + + Placement + Ubicación + + + OK + Aceptar + + + Translation: + Traslación: + + + Z: + Z: + + + Y: + Y: + + + X: + X: + + + Rotation: + Rotación: + + + Angle: + Ángulo: + + + Axis: + Ejes: + + + Center: + Centro: + + + Pitch: + Tono: + + + Roll: + Lanzar: + + + Yaw: + Del desvío: + + + Rotation axis with angle + Eje de rotación con ángulo + + + Euler angles + Ángulos de Euler + + + Apply placement changes immediately + Aplicar los cambios de posición de inmediato + + + Apply incremental changes to object placement + Aplicar cambios incrementales a la posición de los objetos + + + Apply + Aplicar + + + Reset + Reiniciar + + + Close + Cerrar + + + + Gui::Dialog::PrintModel + + Button + Botón + + + Command + Comando + + + + Gui::Dialog::SceneInspector + + Dialog + Diálogo + + + Close + Cerrar + + + Refresh + Actualizar pantalla + + + + Gui::Dialog::SceneModel + + Inventor Tree + Árbol de Inventor + + + Nodes + Nodos + + + + Gui::Dialog::TextureMapping + + Texture + Textura + + + Texture mapping + Mapeo de textura + + + Global + Global + + + Environment + Entorno + + + Image files (%1) + Archivos de imagen (%1) + + + No image + No existe la imagen + + + The specified file is not a valid image file. + El archivo especificado no es un archivo de imagen válido. + + + No 3d view + No exista vista 3d + + + No active 3d view found. + No se encontró una vista activa en 3d. + + + + Gui::Dialog::Transform + + Cancel + Cancelar + + + Transform + Transformar + + + + Gui::DlgTreeWidget + + Dialog + Diálogo + + + Items + Elementos + + + OK + Aceptar + + + Cancel + Cancelar + + + + (Vacio) + + + + Gui::DockWnd::CombiView + + CombiView + Vista combinada + + + Project + Proyecto + + + Tasks + Tareas + + + + Gui::DockWnd::HelpView + + Previous + Previo + + + Next + Siguiente + + + Home + Inicio + + + Open + Abrir + + + Open file + Abrir archivo + + + All HTML files (*.html *.htm) + Todos los archivos HTML (*.html *.htm) + + + External browser + Visor de ayuda + + + No external browser found. Specify in preferences, please + No se ha encontrado ningún navegador externo. Especifíquelo en preferencias, por favor + + + Starting of %1 failed + Iniciando %1 ha fallado + + + + Gui::DockWnd::PropertyDockView + + Property View + Vista de propiedades + + + + Gui::DockWnd::ReportOutput + + Logging + Inicio de sesión + + + Warning + Advertencia + + + Error + Error + + + Options + Opciones + + + Clear + Limpiar + + + Save As... + Guardar como... + + + Save Report Output + Guardar salida de informe + + + Plain Text Files (*.txt *.log) + Archivos de texto (*.txt *.log) + + + Go to end + Ir al final + + + Redirect Python output + Redirigir la salida de Python + + + Redirect Python errors + Redirigir errores de Python + + + + Gui::DockWnd::ReportView + + Output + Salida + + + Python console + Consola de Python + + + + Gui::DockWnd::SelectionView + + Property View + Vista de propiedades + + + + Gui::DockWnd::TaskPanelView + + Task View + Vista de Tareas + + + + Gui::DockWnd::TextBrowser + + Could not open file. + No es posible abrir el archivo. + + + You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. + Has intentado acceder a la dirección %1 que no está disponible actualmente. Por favor asegurate de que la URL existe y prueba recargando la página. + + + Connecting to %1 + Conectando con %1 + + + Sending to %1 + Enviando a %1 + + + Reading from %1 + Leyendo de %1 + + + Download failed: %1. + La descarga ha fallado: %1. + + + Previous + Previo + + + Forward + Adelante + + + Home + Inicio + + + Refresh + Actualizar pantalla + + + Copy + Copiar + + + Select all + Seleccionar todo + + + No description for + Sin descripción para + + + + Gui::DocumentModel + + Application + Aplicación + + + Labels & Attributes + Etiquetas & Atributos + + + + Gui::EditorView + + Modified file + Archivo modificado + + + %1. + +This has been modified outside of the source editor. Do you want to reload it? + %1. + +Ha sido modificado fuera del editor de código fuente. Desea recargarlo? + + + Unsaved document + Documento sin guardar + + + The document has been modified. +Do you want to save your changes? + El documento ha sido modificado. +Desea guardar los cambios? + + + FreeCAD macro (*.FCMacro);;Python (*.py) + Macro de FreeCAD (*.FCMacro);;Python (*.py) + + + Export PDF + Exportar PDF + + + PDF file (*.pdf) + Archivo PDF (*.pdf) + + + untitled[*] + Sin título[*] + + + - Editor + - Editor + + + %1 chars removed + %1 carácteres eliminados + + + %1 chars added + %1 carácteres añadidos + + + Formatted + Formateado + + + + Gui::FileChooser + + Select a file + Seleccionar un archivo + + + Select a directory + Seleccionar un directorio + + + + Gui::FileDialog + + Save as + Guardar como + + + Open + Abrir + + + + Gui::FileOptionsDialog + + Extended + Extendida + + + All files (*.*) + Todos los archivos (*.*) + + + + Gui::Flag + + Top left + Planta izquierda + + + Bottom left + Inferior izquierda + + + Top right + OPlanta derecha + + + Bottom right + Inferior derecha + + + Remove + Quitar + + + + Gui::InventorNavigationStyle + + Press CTRL and left mouse button + Presione la tecla CTRL y el botón izquierdo del mouse + + + Press middle mouse button + Cliquee el botón central del mouse + + + Press left mouse button + Cliquee el botón izquierdo del mouse + + + Scroll middle mouse button + Despláce botón central del mouse + + + + Gui::LocationDialog + + Wrong direction + Dirección incorrecta + + + Direction must not be the null vector + La dirección no puede ser el vector nulo + + + X + X + + + Y + Y + + + Z + Z + + + User defined... + Definido por el usuario... + + + + Gui::LocationWidget + + X: + X: + + + Y: + Y: + + + Z: + Z: + + + Direction: + Dirección: + + + + Gui::MacroCommand + + Macros + Macros + + + + Gui::MainWindow + + Dimension + Cota + + + Ready + Preparado + + + Toggles this toolbar + Muestra u oculta la barra de herramientas + + + Toggles this dockable window + Alterna esta ventana acoplable + + + Close All + Cerrar todo + + + + Gui::ManualAlignment + + Manual alignment + Manual alignment + + + The alignment is already in progress. + La alineación ya está en curso. + + + Alignment[*] + Alineación [*] + + + Please, select at least one point in the left and the right view + Por favor, seleccione al menos 1 punto en la vista izquierda y derecha + + + Please, select at least %1 points in the left and the right view + Por favor, seleccione al menos %1 de puntos en la vista izquierda y derecha + + + Please pick points in the left and right view + Por favor seleccione puntos en la vista izquierda y derecha + + + The alignment has finished + La alineación ha terminado + + + The alignment has been canceled + La alineación se ha cancelado + + + Too few points picked in the left view. At least %1 points are needed. + Muy pocos puntos recogidos en la vista izquierda. Por lo menos se necesitan %1 de puntos. + + + Too few points picked in the right view. At least %1 points are needed. + Muy pocos puntos recogidos en la vista derecha. Por lo menos se necesitan %1 de puntos. + + + Different number of points picked in left and right view. +On the left view %1 points are picked, +on the right view %2 points are picked. + Different number of points picked in left and right view. +On the left view %1 points are picked, +on the right view %2 points are picked. + + + Try to align group of views + Trate de alinear el grupo de vistas + + + The alignment failed. +How do you want to proceed? + Error en la alineación. ¿Desea continuar? + + + Retry + Reintentar + + + Ignore + Ignorar + + + Abort + Cancelar + + + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + + + Point picked at (%1,%2,%3) + Point picked at (%1,%2,%3) + + + No point was picked + No fue elegido ningún punto + + + + Gui::NetworkRetriever + + Download started... + + Descarga comenzada... + + + + + Gui::ProgressBar + + Remaining: %1 + Restante: %1 + + + Aborting + Abortando + + + Do you really want to abort the operation? + Realmente quieres abortar la operación? + + + + Gui::ProgressDialog + + Remaining: %1 + Restante: %1 + + + Aborting + Abortando + + + Do you really want to abort the operation? + Realmente quieres abortar la operación? + + + + Gui::PropertyEditor::PropertyModel + + Property + Propiedad + + + Value + Valor + + + + Gui::PropertyView + + View + Vista + + + Data + Datos + + + + Gui::PythonConsole + + System exit + Salida del sistema + + + The application is still running. +Do you want to exit without saving your data? + La aplicación aún se está ejecutando. +Desea salir sin guardar sus datos? + + + Python console + Consola de Python + + + Unhandled PyCXX exception. + Excepción de PyCXX no gestionada. + + + Unhandled FreeCAD exception. + Excepción de FreeCAD no gestionada. + + + Unhandled unknown C++ exception. + Excepción desconocida de C++ no gestionada. + + + &Copy command + &Comando copiar + + + &Copy history + &Copiar historia + + + Save history as... + Guardar historioa como... + + + Insert file name... + Insertar nombre de archivo... + + + Save History + Guardar historia + + + Macro Files (*.FCMacro *.py) + Archivos de macro (*.FCMacro *.py) + + + Insert file name + Introducir nombre de archivo + + + All Files (*.*) + Todos los archivos (*.*) + + + Python Input Dialog + Diálogo de entrada de Python + + + Unhandled std C++ exception. + Excepción de std C++ no gestionada. + + + Word wrap + Ajuste de texto + + + &Copy + &Copiar + + + &Paste + &Pegar + + + Select All + Seleccionar todo + + + Clear console + Limpiar la consola + + + + Gui::PythonEditor + + Comment + Comentar + + + Uncomment + Quitar comentario + + + + Gui::PythonInputField + + OK + Aceptar + + + Clear + Limpiar + + + + Gui::RecentFilesAction + + Open file %1 + Abrir archivo %1 + + + File not found + Archivo no encontrado + + + The file '%1' cannot be opened. + El archivo '%1' no se puede abrir. + + + + Gui::SelectModule + + Select module + Seleccionar módulo + + + Open %1 as + Abrir %1 como + + + Select + Seleccionar + + + + Gui::StdCmdDescription + + Help + Ayuda + + + Des&cription + Des&cripción + + + Long description of commands + Descripción larga de comandos + + + + Gui::StdCmdDownloadOnlineHelp + + Help + Ayuda + + + Download online help + Descargar ayuda online + + + Download %1's online help + Descargar %1's ayuda online + + + Non-existing directory + Directorio no existente + + + The directory '%1' does not exist. + +Do you want to specify an existing directory? + El directorio '%1' no existe. + +Desea especificar un directorio existente? + + + Missing permission + Permiso perdido + + + You don't have write permission to '%1' + +Do you want to specify another directory? + No tiene permisos de escritura para '%1' + +Desea especificar otro directorio? + + + Stop downloading + Detener la descarga + + + + Gui::StdCmdPythonHelp + + Tools + Herramientas + + + Python Modules + Módulos de Python + + + Opens a browser to show the Python modules + Abre un explorador para mostrar los módulos de Python + + + + Gui::TaskBoxAngle + + Angle + Ángulo + + + + Gui::TaskBoxPosition + + Position + Posición + + + + Gui::TaskView::TaskAppearance + + Plot mode: + Modo de impresión: + + + Point size: + Tamaño de punto: + + + Line width: + Ancho de línea: + + + Transparency: + Transparencia: + + + Appearance + Apariencia + + + Document window: + Document window: + + + + Gui::TaskView::TaskEditControl + + Edit + Editar + + + + Gui::TaskView::TaskSelectLinkProperty + + Appearance + Apariencia + + + ... + ... + + + edit selection + Editar selección + + + + Gui::TouchpadNavigationStyle + + Press left mouse button + Cliquee el botón izquierdo del mouse + + + Press SHIFT button + Press SHIFT button + + + Press ALT button + Pulse el botón ALT + + + Press PgUp/PgDown button + Pulse el botón PgUp/PgDown + + + + Gui::TreeDockWidget + + Tree view + Vista en árbol + + + + Gui::TreeWidget + + Create group... + Crear grupo... + + + Create a group + Crear un grupo + + + Group + Grupo + + + Rename + Renombrar + + + Rename object + Renombrar objeto + + + Labels & Attributes + Etiquetas & Atributos + + + Application + Aplicación + + + Finish editing + Finalizar la edición + + + Finish editing object + Finalizar edición de objeto + + + Activate document + Activar documento + + + Activate document %1 + Activar documento %1 + + + + Gui::View3DInventor + + Export PDF + Exportar PDF + + + PDF file (*.pdf) + Archivo PDF (*.pdf) + + + + Gui::WorkbenchGroup + + Select the '%1' workbench + Seleccionar el escenario '%1' + + + + Position + + Form + Formulario + + + X: + X: + + + Y: + Y: + + + Z: + Z: + + + 0.1 mm + 0.1 mm + + + 0.5 mm + 0.5 mm + + + 1 mm + 1 mm + + + 2 mm + 2 mm + + + 5 mm + 5 mm + + + 10 mm + 10 mm + + + 20 mm + 20 mm + + + 50 mm + 50 mm + + + 100 mm + 100 mm + + + 200 mm + 200 mm + + + 500 mm + 500 mm + + + 1 m + 1 m + + + 2 m + 2 m + + + 5 m + 5 m + + + Grid Snap in + Ajuste de rejilla en + + + + QDockWidget + + Tree view + Vista en árbol + + + Property view + Vista de Propiedades + + + Selection view + Vista de selección + + + Report view + Vista de informe + + + Task View + Vista de Tareas + + + Combo View + Vista combinada + + + Toolbox + Caja de herramientas + + + Python console + Consola de Python + + + Display properties + Propiedades de visualización + + + + QObject + + General + General + + + Display + Visualización + + + Unknown filetype + Tipo de archivo desconocido + + + Cannot open unknown filetype: %1 + No es posible abrir el tipo de archivo desconocido: %1 + + + Cannot save to unknown filetype: %1 + No es posible guardar el tipo de archivo desconocido: %1 + + + Workbench failure + Fracaso de escenario + + + %1 + %1 + + + Unable to launch Qt Assistant (%1) + Incapaz de iniciar Qt Assistant (%1) + + + Exception + Excepción + + + Open document + Abrir documento + + + Import file + Importar archivo + + + Export file + Exportar archivo + + + Printing... + Imprimiendo... + + + Cannot load workbench + No es posible cargar el escenario + + + A general error occurred while loading the workbench + Un error general ocurrio mientras se cargaba el escenario + + + Save views... + Guardar vistas... + + + Load views... + Cargar vistas... + + + Freeze view + Congelar vista + + + Clear views + Limpiar vistas + + + Restore view &%1 + Restaurar vista &%1 + + + Save frozen views + Guardar vistas congeladas + + + Frozen views (*.cam) + Vistas congeladas (*.cam) + + + Restore views + Restaurar vistas + + + Importing the restored views would clear the already stored views. +Do you want to continue? + La importación de las vistas restauradas podría limpiar las vistas ya almacenadas. +Desea continuar? + + + Restore frozen views + Restaurar vistas congeladas + + + Cannot open file '%1'. + No es posible abrir el archivo '%1'. + + + Docked + Acoplado + + + Undocked + Sin acoplar + + + Fullscreen + Pantalla completa + + + files + archivos + + + Save picture + Guardar imagen + + + New sub-group + Nuevo subgrupo + + + Enter the name: + Introducir el nombre: + + + New text item + Nuevo elemento de texto + + + Enter your text: + Introduzca su texto: + + + New integer item + Nuevo elemento entero + + + Enter your number: + Introduzca su número: + + + New unsigned item + Nuevo elemento sin signo + + + New float item + Nuevo elemento de coma flotante + + + New Boolean item + nuevo elemento booleano + + + Choose an item: + Seleccionar un elemento: + + + Rename group + Renombrar grupo + + + The group '%1' cannot be renamed. + El grupo '%1' no puede renombrarse. + + + Existing group + Grupo existente + + + The group '%1' already exists. + El grupo '%1' ya existe. + + + Change value + Cambiar valor + + + Save document under new filename... + Guardar documento con un nombre de archivo nuevo... + + + Saving aborted + Guardar abortado + + + Unsaved document + Documento sin guardar + + + Save document before close? + Guardar documento antes de cerrar? + + + Save Macro + Guardar macro + + + Finish + Terminado + + + Clear + Limpiar + + + Cancel + Cancelar + + + Inner + Interior + + + Outer + Exterior + + + No Browser + Ningún navegador + + + Unable to open your browser. + +Please open a browser window and type in: http://localhost:%1. + Incapaz de abrir su navegador. + +Por favor abra una ventana del navegador y escriba en ella: http://localhost:%1. + + + No Server + Ningún servidor + + + Unable to start the server to port %1: %2. + Incapaz de iniciar el servidor al puerto %1: %2. + + + Unable to open your system browser. + Incapaz de abrir su navegador del sistema. + + + Options... + Opciones... + + + Out of memory + Memoria insuficiente + + + Not enough memory available to display the data. + Insuficiente memoria disponible para mostrar los datos. + + + Cannot find file %1 + No se puede encontrar el archivo %1 + + + Cannot find file %1 neither in %2 nor in %3 + No se pueden encontrar los archivos %1 ni %2 ni %3 + + + Save %1 Document + Guardar el documento %1 + + + %1 document (*.FCStd) + %1 documento (*.FCStd) + + + Save As + Guardar como + + + %1 already exists. +Do you want to replace it? + %1 ya existe. +Desea reemplazarlo? + + + Document not closable + El documento no se puede cerrar + + + The document is not closable for the moment. + El documento no se puede cerrar por el momento. + + + No OpenGL + Sin OpenGL + + + This system does not support OpenGL + Este sistema no es compatible con OpenGL + + + Help + Ayuda + + + Unable to load documentation. +In order to load it Qt 4.4 or higher is required. + No se puede cargar la documentación. +Para cargarlo es necesario Qt 4.4 o superior. + + + %1 Help + %1 Ayuda + + + Exporting PDF... + Exportando a PDF... + + + Wrong selection + Selección incorrecta + + + Only one object selected. Please select two objects. +Be aware the point where you click matters. + Sólo un objeto seleccionado. Seleccione dos objetos. Tenga en cuenta el punto en que hace clic. + + + Please select two objects. +Be aware the point where you click matters. + Seleccione dos objetos. Tenga en cuenta el punto en que hace clic. + + + New boolean item + Nuevo elemento booleano + + + Navigation styles + Estilos de navegación + + + %1 navigation + %1 navegación + + + Move annotation + Mover anotación + + + Transform + Transformar + + + The document is in editing mode and thus cannot be closed for the moment. +You either have to finish or cancel the editing in the task panel. + El documento está en modo de edición y no puede ser cerrado en este momento. +Tienes que finzalizar o cancelar la edición en el panel de tareas. + + + + StdBoxSelection + + Standard-View + Vista estándar + + + Box selection + Box selection + + + + StdCmdAbout + + Help + Ayuda + + + &About %1 + &Acerca de %1 + + + About %1 + Acerca de %1 + + + + StdCmdAboutQt + + Help + Ayuda + + + About &Qt + Acerca de &Qt + + + About Qt + Acerca de Qt + + + + StdCmdActivateNextWindow + + Window + Ventana + + + Ne&xt + &Siguiente + + + Activate next window + Activar ventana siguiente + + + + StdCmdActivatePrevWindow + + Window + Ventana + + + Pre&vious + Pre&via + + + Activate previous window + Activar ventana previa + + + + StdCmdAlignment + + Edit + Editar + + + Alignment... + Alineación... + + + Align the selected objects + Alinie los objetos seleccionados + + + + StdCmdArrangeIcons + + Window + Ventana + + + Arrange &Icons + Organizar &Iconos + + + Arrange Icons + Organizar iconos + + + + StdCmdAxisCross + + Standard-View + Vista estándar + + + Toggle axis cross + Activar o desactivar cruz de los ejes + + + + StdCmdCascadeWindows + + Window + Ventana + + + &Cascade + &Cascada + + + Tile pragmatic + Mosaico pragmático + + + + StdCmdCloseActiveWindow + + Window + Ventana + + + Cl&ose + &Cerrar + + + Close active window + Cerrar la ventana activa + + + + StdCmdCloseAllWindows + + Window + Ventana + + + Close Al&l + Cerrar &Todo + + + Close all windows + Cerrar todas las ventanas + + + + StdCmdCommandLine + + Tools + Herramientas + + + Start command &line... + &Iniciar línea de comandos... + + + Opens the command line in the console + Abre la línea de comandos en la consola + + + + StdCmdCopy + + Edit + Editar + + + C&opy + C&opiar + + + Copy operation + Operación de copia + + + + StdCmdCut + + Edit + Editar + + + &Cut + &Cortar + + + Cut out + Recortar + + + + StdCmdDelete + + Edit + Editar + + + &Delete + &Borrar + + + Deletes the selected objects + Borra los elementos seleccionados + + + + StdCmdDemoMode + + Standard-View + Vista estándar + + + View turntable... + Ver torno... + + + View turntable + Ver torno + + + + StdCmdDlgCustomize + + Tools + Herramientas + + + Cu&stomize... + &Personalizar... + + + Customize toolbars and command bars + Personalizar barras de herramientas y comandos + + + + StdCmdDlgMacroExecute + + Macros ... + Macros... + + + Opens a dialog to let you execute a recorded macro + Abre un cuadro de diálogo que te permite ejecutar una macro grabada + + + Macro + Macro + + + + StdCmdDlgMacroExecuteDirect + + Macro + Macro + + + Execute macro + Ejecutar macro + + + Execute the macro in the editor + Ejecutar macro en el editor + + + + StdCmdDlgMacroRecord + + &Macro recording ... + &Grabación de macro... + + + Opens a dialog to record a macro + Abre un cuadro de diálogo para grabar una macro + + + Macro + Macro + + + + StdCmdDlgParameter + + Tools + Herramientas + + + E&dit parameters ... + &Editar parámetros... + + + Opens a Dialog to edit the parameters + Abre un cuadro de diálogo para editar los parametros + + + + StdCmdDlgPreferences + + Tools + Herramientas + + + &Preferences ... + &Preferencias... + + + Opens a Dialog to edit the preferences + Abre un cuadro de diálogo para editar las preferencias + + + + StdCmdDockViewMenu + + View + Vista + + + Vie&ws + &Vistas + + + Toggles this window + Conmutar esta ventana + + + + StdCmdDrawStyle + + Standard-View + Vista estándar + + + Draw style + Estilo de dibujo + + + + StdCmdDuplicateSelection + + Edit + Editar + + + Duplicate selection + Duplicar la selección + + + Put duplicates of the selected objects to the active document + Ponga los duplicados de los objetos seleccionados en el documento activo + + + + StdCmdEdit + + Edit + Editar + + + Toggle &Edit mode + Toggle &Edit mode + + + Toggles the selected object's edit mode + Toggles the selected object's edit mode + + + Enters or leaves the selected object's edit mode + Entra o sale del modo de edición del objeto seleccionado + + + + StdCmdExport + + File + Archivo + + + &Export... + &Exportar... + + + Export an object in the active document + Exportar un objeto en el documento activo + + + No selection + Ninguna selección + + + Please select first the objects you want to export. + Por favor, seleccione el primero de los objetos que desea exportar. + + + + StdCmdExportGraphviz + + Tools + Herramientas + + + Dependency graph... + Dependency graph... + + + Show the dependency graph of the objects in the active document + Show the dependency graph of the objects in the active document + + + + StdCmdFeatRecompute + + File + Archivo + + + &Recompute + &Recalcular + + + Recompute feature or document + Recalcular caracteristicas o documento + + + + StdCmdFreeCADWebsite + + Help + Ayuda + + + FreeCAD Website + Sitio web de FreeCAD + + + The FreeCAD website + El sitio web de FreeCAD + + + + StdCmdFreezeViews + + Standard-View + Vista estándar + + + Freeze display + Congelar visualización + + + Freezes the current view position + Congelar la posición de la vista actual + + + + StdCmdHideObjects + + Standard-View + Vista estándar + + + Hide all objects + Ocultar todos los objetos + + + Hide all objects in the document + Ocultar todos los objetos en el documento + + + + StdCmdHideSelection + + Standard-View + Vista estándar + + + Hide selection + Ocultar selección + + + Hide all selected objects + Ocultar todos los objetos seleccionados + + + + StdCmdImport + + File + Archivo + + + &Import... + &Importar... + + + Import a file in the active document + Importar un archivo en el documento activo + + + Supported formats + Formatos soportados + + + All files (*.*) + Todos los archivos (*.*) + + + + StdCmdMacroStartDebug + + Macro + Macro + + + Debug macro + Depurar macro + + + Start debugging of macro + Iniciar depuración de macro + + + + StdCmdMacroStepOver + + Macro + Macro + + + Step over + Pasar al siguiente + + + + StdCmdMacroStopDebug + + Macro + Macro + + + Stop debugging + Parar depuración + + + Stop debugging of macro + Parar depuración de macro + + + + StdCmdMacroStopRecord + + Macro + Macro + + + S&top macro recording + &Detener la grabaciṕon de la macro + + + Stop the macro recording session + Detener la sesión de grabación de la macro + + + + StdCmdMeasureDistance + + View + Vista + + + Measure distance + Medir distancia + + + + StdCmdMeasurementSimple + + Tools + Herramientas + + + Measures distance between two selected objects + Medir distancias entre dos objetos seleccionados + + + Measure distance + Medir distancia + + + + StdCmdMergeProjects + + File + Archivo + + + Merge project... + Fusionar proyecto... + + + Merge project + Fusionar proyecto + + + %1 document (*.fcstd) + Documento %1(*.fcstd) + + + Cannot merge project with itself. + No se puede fusionar el proyecto consigo mismo. + + + + StdCmdNew + + File + Archivo + + + &New + &Nuevo + + + Create a new empty document + Crear un documento vacío nuevo + + + + StdCmdOnlineHelp + + Help + Ayuda + + + Show help to the application + Mostrar ayuda de la aplicación + + + + StdCmdOnlineHelpWebsite + + Help + Ayuda + + + Help Website + Sitio web de ayuda + + + The website where the help is maintained + El sitio web donde se mantiene la ayuda + + + + StdCmdOpen + + File + Archivo + + + &Open... + &Abrir... + + + Open a document or import files + Abrir un documento o importar archivos + + + Supported formats + Formatos soportados + + + All files (*.*) + Todos los archivos (*.*) + + + + StdCmdPaste + + Edit + Editar + + + &Paste + &Pegar + + + Paste operation + Operación de pegar + + + + StdCmdPlacement + + Edit + Editar + + + Placement... + Ubicación... + + + Place the selected objects + Sitúe los objetos seleccionados + + + + StdCmdPrint + + File + Archivo + + + &Print... + &Imprimir... + + + Print the document + Imprimir el documento + + + + StdCmdPrintPdf + + File + Archivo + + + &Export PDF... + &Exportar PDF... + + + Export the document as PDF + Exportar el documento como PDF + + + + StdCmdPrintPreview + + File + Archivo + + + &Print preview... + Vista previa de impresión... + + + Print the document + Imprimir el documento + + + Print preview + Vista previa de impresión + + + + StdCmdProjectInfo + + File + Archivo + + + Project i&nformation... + &Información del proyecto... + + + Show details of the currently active project + Mostrar detalles del proyecto activo actual + + + + StdCmdProjectUtil + + Tools + Herramientas + + + Project utility... + Utilidad del proyecto... + + + Utility to extract or create project files + Herramienta para extraer o crear archivos de proyectos + + + + StdCmdPythonWebsite + + Help + Ayuda + + + Python Website + Sitio web de Python + + + The official Python website + El sitio web oficial de Python + + + + StdCmdQuit + + File + Archivo + + + E&xit + &Salir + + + Quits the application + Salir de la aplicación + + + + StdCmdRandomColor + + File + Archivo + + + Random color + Color aleatorio + + + + StdCmdRecentFiles + + File + Archivo + + + Recent files + Archivos recientes + + + Recent file list + Lista de archivos recientes + + + + StdCmdRedo + + Edit + Editar + + + &Redo + &Rehacer + + + Redoes a previously undone action + Rehace una acción previa de deshacer + + + + StdCmdRefresh + + Edit + Editar + + + &Refresh + &Actualizar pantalla + + + Recomputes the current active document + Recalcula el documento activo actual + + + + StdCmdSave + + File + Archivo + + + &Save + &Guardar + + + Save the active document + Guarda el documento activo + + + + StdCmdSaveAs + + File + Archivo + + + Save &As... + Guardar &como... + + + Save the active document under a new file name + Guarda el documento activo con un nombre de archivo nuevo + + + + StdCmdSceneInspector + + Tools + Herramientas + + + Scene inspector... + Inspector de escena... + + + Scene inspector + Inspector de escena + + + + StdCmdSelectAll + + Edit + Editar + + + Select &All + Seleccionar &todo + + + Select all + Seleccionar todo + + + + StdCmdSetAppearance + + Standard-View + Vista estándar + + + Appearance... + Apariencia... + + + Sets the display properties of the selected object + Establece las propiedades de visualización de los objetos seleccionados + + + + StdCmdShowObjects + + Standard-View + Vista estándar + + + Show all objects + Mostrar todos los objetos + + + Show all objects in the document + Mostrar todos los objetos en el documento + + + + StdCmdShowSelection + + Standard-View + Vista estándar + + + Show selection + Mostrar selección + + + Show all selected objects + Mostrar todos los objetos seleccionados + + + + StdCmdStatusBar + + View + Vista + + + Status bar + Barra de estado + + + Toggles the status bar + Conmutar la barra de estado + + + + StdCmdTextureMapping + + Tools + Herramientas + + + Texture mapping... + Mapeo de textura... + + + Texture mapping + Mapeo de textura + + + + StdCmdTileWindows + + Window + Ventana + + + &Tile + &Mosaico + + + Tile the windows + Poner las ventanas en mosaico + + + + StdCmdToggleBreakpoint + + Macro + Macro + + + Toggle breakpoint + Conmutar punto de parada + + + + StdCmdToggleClipPlane + + Standard-View + Vista estándar + + + Clipping plane + Plano de recorte + + + Toggles clipping plane for active view + Conmuta el plano de recorte para la vista activa + + + + StdCmdToggleNavigation + + Standard-View + Vista estándar + + + Toggle navigation/Edit mode + Alternar en modo Navegación/Edición + + + Toggle between navigation and edit mode + Alternar entre el modo de navegación y edición + + + + StdCmdToggleObjects + + Standard-View + Vista estándar + + + Toggle all objects + Conmutar todos los objetos + + + Toggles visibility of all objects in the active document + Conmuta la visibilidad de todos los objetos en el documento activo + + + + StdCmdToggleSelectability + + Standard-View + Vista estándar + + + Toggle selectability + Conmutar selectividad + + + Toggles the property of the objects to get selected in the 3D-View + Conmutar la propiedad de los objetos de ser seleccionados en la Vista 3D + + + + StdCmdToggleVisibility + + Standard-View + Vista estándar + + + Toggle visibility + Conmutar visibilidad + + + Toggles visibility + Conmuta la visibilidad + + + + StdCmdToolBarMenu + + View + Vista + + + Tool&bars + &Barras de herramientas + + + Toggles this window + Conmutar esta ventana + + + + StdCmdTransform + + Edit + Editar + + + Transform... + Transformar... + + + Transform the geometry of selected objects + Transformar la geometría de los objetos seleccionados + + + + StdCmdTreeSelection + + View + Vista + + + Go to selection + Ir a la selección + + + Scroll to first selected item + Desplazarse al primer elemento seleccionado + + + + StdCmdUndo + + Edit + Editar + + + &Undo + &Deshacer + + + Undo exactly one action + Deshacer exactamente una acción + + + + StdCmdUserInterface + + View + Vista + + + Dock views + Acoplar vistas + + + Dock all top-level views + Acoplar todas las vistas de nivel superior + + + + StdCmdViewAxo + + Standard-View + Vista estándar + + + Axometric + Axonométrica + + + Set to axometric view + Establecer la vista axonométrica + + + + StdCmdViewBottom + + Standard-View + Vista estándar + + + Bottom + Inferior + + + Set to bottom view + Establece la vista inferior + + + + StdCmdViewCreate + + Standard-View + Vista estándar + + + Create new view + Crear una vista nueva + + + Creates a new view window for the active document + Crea una ventana de vista nueva para el documento activo + + + + StdCmdViewExample1 + + Standard-View + Vista estándar + + + Inventor example #1 + Inventor ejemplo #1 + + + Shows a 3D texture with manipulator + Muestra una textura 3D con manipulador + + + + StdCmdViewExample2 + + Standard-View + Vista estándar + + + Inventor example #2 + Inventor ejemplo #2 + + + Shows spheres and drag-lights + Muestra esferas y luces arrastradas + + + + StdCmdViewExample3 + + Standard-View + Vista estándar + + + Inventor example #3 + Inventor ejemplo #3 + + + Shows a animated texture + Muestra una textura animada + + + + StdCmdViewFitAll + + Standard-View + Vista estándar + + + Fit all + Ajustar todo + + + Fits the whole content on the screen + Ajustar el contenido completo a la pantalla + + + + StdCmdViewFitSelection + + Standard-View + Vista estándar + + + Fit selection + Ajustar a la selección + + + Fits the selected content on the screen + Ajustar el contenido seleccionado a la pantalla + + + + StdCmdViewFront + + Standard-View + Vista estándar + + + Front + Alzado + + + Set to front view + Establecer vista alzado + + + + StdCmdViewIvIssueCamPos + + Standard-View + Vista estándar + + + Issue camera position + Publicar la posición de la cámara + + + Issue the camera position to the console and to a macro, to easily recall this position + Publicar la posición de la cámara a la consola y a una macro, para rellamar fácilmente a esta posición + + + + StdCmdViewIvStereoInterleavedColumns + + Standard-View + Vista estándar + + + Stereo Interleaved Columns + Estéreo columnas intercaladas + + + Switch stereo viewing to Interleaved Columns + Cambiar la visualización estéreo a columnas intercaladas + + + + StdCmdViewIvStereoInterleavedRows + + Standard-View + Vista estándar + + + Stereo Interleaved Rows + Estéreo filas intercaladas + + + Switch stereo viewing to Interleaved Rows + Cambiar la visualización estéreo a filas intercaladas + + + + StdCmdViewIvStereoOff + + Standard-View + Vista estándar + + + Stereo Off + Estéreo apagado + + + Switch stereo viewing off + Cambiar la visualización estéreo a apagado + + + + StdCmdViewIvStereoQuadBuff + + Standard-View + Vista estándar + + + Stereo quad buffer + Estéreo cuádruple buffer + + + Switch stereo viewing to quad buffer + Cambiar la visualización estéreo a cuádruple buffer + + + + StdCmdViewIvStereoRedGreen + + Standard-View + Vista estándar + + + Stereo red/green + Estéreo rojo/verde + + + Switch stereo viewing to red/green + Cambiar la visualización estéreo a rojo/verde + + + + StdCmdViewLeft + + Standard-View + Vista estándar + + + Left + Izquierda + + + Set to left view + Establecer vista izquierda + + + + StdCmdViewRear + + Standard-View + Vista estándar + + + Rear + Posterior + + + Set to rear view + Establecer vista posterior + + + + StdCmdViewRight + + Standard-View + Vista estándar + + + Right + Derecha + + + Set to right view + Establecer vista derecha + + + + StdCmdViewRotateLeft + + Standard-View + Vista estándar + + + Rotate Left + Rotar a la izquierda + + + Rotate the view by 90° counter-clockwise + Rotate the view by 90° counter-clockwise + + + + StdCmdViewRotateRight + + Standard-View + Vista estándar + + + Rotate Right + Rotar a la derecha + + + Rotate the view by 90° clockwise + Rotar la vista en 90 ° en sentido horario + + + + StdCmdViewTop + + Standard-View + Vista estándar + + + Top + Planta + + + Set to top view + Establecer vista en planta + + + + StdCmdWhatsThis + + Help + Ayuda + + + &What's This? + &Qué es esto? + + + What's This + Qué es esto + + + + StdCmdWindows + + Window + Ventana + + + &Windows... + &Ventanas... + + + Windows list + Lista de ventanas + + + + StdCmdWindowsMenu + + Window + Ventana + + + Activates this window + Activa esta ventana + + + + StdCmdWorkbench + + View + Vista + + + Workbench + Escenario + + + Switch between workbenches + Cambiar entre escenarios + + + + StdOrthographicCamera + + Standard-View + Vista estándar + + + Orthographic view + Vista ortográfica + + + Switches to orthographic view mode + Cambiar a modo de vista ortográfica + + + + StdPerspectiveCamera + + Standard-View + Vista estándar + + + Perspective view + Vista perspectiva + + + Switches to perspective view mode + Cambiar a modo de vista perspectiva + + + + StdViewBoxZoom + + Standard-View + Vista estándar + + + Box zoom + Zona de zoom + + + + StdViewDockUndockFullscreen + + Standard-View + Vista estándar + + + Document window + Ventana del documento + + + Display the active view either in fullscreen, in undocked or docked mode + Muestra la vista activa a pantalla completa, en modo desacoplado o acoplado + + + + StdViewScreenShot + + Standard-View + Vista estándar + + + Save picture... + Guardar imagen... + + + Creates a screenshot of the active view + Crea una captura de pantalla de la vista activa + + + + StdViewZoomIn + + Standard-View + Vista estándar + + + Zoom In + Aumentar con el zoom + + + + StdViewZoomOut + + Standard-View + Vista estándar + + + Zoom Out + Reducir con el zoom + + + + Std_DrawStyle + + As is + Como es + + + Normal mode + Modo normal + + + Wireframe + Modelo de alambres + + + Wireframe mode + Modo de alambre + + + + Std_ExportGraphviz + + Graphviz not found + Graphviz not found + + + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + + + Graphviz installation path + Graphviz installation path + + + Dependency graph + Dependency graph + + + Graphviz failed + Graphviz failed + + + Graphviz failed to create an image file + Graphviz failed to create an image file + + + + Workbench + + &File + &Archivo + + + &Edit + &Editar + + + Standard views + Vistas estándar + + + &Stereo + &Estéreo + + + &Zoom + &Zoom + + + Visibility + Visibilidad + + + &View + &Ver + + + &Tools + &Herramientas + + + &Macro + &Macro + + + &Windows + &Ventanas + + + &On-line help + &Ayuda online + + + &Help + Ay&uda + + + File + Archivo + + + Macro + Macro + + + View + Vista + + + Special Ops + Operaciones especiales + + + + testClass + + test + prueba + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Creado por Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + + + Choose the style of the Task Panel + Seleccionar el estilo del Panel de Tareas + + + Default + Por defecto + + + Windows XP + Windows XP + + + diff --git a/src/Gui/Language/FreeCAD_es.ts b/src/Gui/Language/FreeCAD_es.ts deleted file mode 100644 index 328b1b2f9..000000000 --- a/src/Gui/Language/FreeCAD_es.ts +++ /dev/null @@ -1,5912 +0,0 @@ - - - - - Angle - - Form - Formulario - - - A: - A: - - - B: - B: - - - C: - C: - - - Angle Snap - Ajuste angular - - - 1 ° - 1 ° - - - 2 ° - 2 ° - - - 5 ° - 5 ° - - - 10 ° - 10 ° - - - 20 ° - 20 ° - - - 45 ° - 45 ° - - - 90 ° - 90 ° - - - 180 ° - 180 ° - - - - Gui::AccelLineEdit - - none - ninguno - - - - Gui::ActionSelector - - Available: - - - - Selected: - - - - Add - Añadir - - - Remove - Quitar - - - Move up - Mover hacia arriba - - - Move down - Mover hacia abajo - - - - Gui::AlignmentView - - Movable object - - - - Fixed object - - - - - Gui::BlenderNavigationStyle - - Press left mouse button - Cliquee el botón izquierdo del mouse - - - Press SHIFT and middle mouse button - Pulse SHIFT y el botón central del mouse - - - Press middle mouse button - Cliquee el botón central del mouse - - - Scroll middle mouse button - Despláce botón central del mouse - - - - Gui::CADNavigationStyle - - Press left mouse button - Cliquee el botón izquierdo del mouse - - - Press middle mouse button - Cliquee el botón central del mouse - - - Press left and middle mouse button - Cliquee el botón central e izquierdo del mouse - - - Scroll middle mouse button - Despláce botón central del mouse - - - - Gui::Command - - Standard - Estándar - - - - Gui::ContainerDialog - - &OK - &Aceptar - - - &Cancel - &Cancelar - - - - Gui::ControlSingleton - - Task panel - Panel de tareas - - - - Gui::Dialog::AboutApplication - - About - Acerca de - - - Revision number - Número de revisión - - - Version - Versión - - - OK - Aceptar - - - - (Vacio) - - - Release date - Fecha de la versión - - - Platform - Plataforma - - - License... - Licencia... - - - Copy to clipboard - - - - - Gui::Dialog::ButtonModel - - Button %1 - Botón %1 - - - Out Of Range - Out Of Range - - - - Gui::Dialog::CommandModel - - Commands - Comandos - - - - Gui::Dialog::DemoMode - - View Turntable - Ver Torno - - - Speed - Velocidad - - - Maximum - Valor máximo - - - Minimum - Valor mínimo - - - Fullscreen - Pantalla completa - - - Enable timer - Activar el temporizador - - - s - s - - - Angle - Ángulo - - - 90° - 90° - - - -90° - -90° - - - Play - Reproducir - - - Stop - Parar - - - Close - Cerrar - - - - Gui::Dialog::DlgActivateWindow - - Choose Window - Seleccionar ventana - - - &Activate - &Activar - - - Alt+A - Alt+A - - - &Cancel - &Cancelar - - - - (Vacio) - - - - Gui::Dialog::DlgActivateWindowImp - - Windows - Ventanas - - - - Gui::Dialog::DlgAuthorization - - Authorization - Autorización - - - &OK - &Aceptar - - - &Cancel - &Cancelar - - - Password: - Contraseña: - - - User name: - Nombre de usuario: - - - - (Vacio) - - - - Gui::Dialog::DlgChooseIcon - - Choose Icon - Seleccionar icono - - - OK - Aceptar - - - Cancel - Cancelar - - - Add icons... - Add icons... - - - - Gui::Dialog::DlgCustomActions - - Macros - Macros - - - Setup Custom Macros - Macros de sistema personalizadas - - - Macro: - Macro: - - - ... - ... - - - Pixmap - Pixmap - - - Accelerator: - Acelerador: - - - What's this: - Qué es esto: - - - Status text: - Texto de estado: - - - Tool tip: - sugerencia: - - - Menu text: - Texto de menú: - - - Add - Añadir - - - Remove - Quitar - - - Replace - Reemplazar - - - - Gui::Dialog::DlgCustomActionsImp - - Icons - Iconos - - - Macros - Macros - - - No macro - Ninguna macro - - - No macros found. - Ninguna macro encontrada. - - - Macro not found - Macro no encontrada - - - Sorry, couldn't find macro file '%1'. - Lo siento, no se ha podido encontrar el archivo de macro '%1'. - - - Empty macro - Macro vacía - - - Please specify the macro first. - Por favor especifique la macro primero. - - - Empty text - Texto vacío - - - Please specify the menu text first. - Por favor, especifique el texto del menú primero. - - - No item selected - Ningún elemento seleccionado - - - Please select a macro item first. - Por favor seleccione un elemento de macro primero. - - - - Gui::Dialog::DlgCustomCommands - - Commands - Comandos - - - - (Vacio) - - - - Gui::Dialog::DlgCustomCommandsImp - - Category - Categoría - - - Icon - Icono - - - Command - Comando - - - - Gui::Dialog::DlgCustomKeyboard - - Keyboard - Teclado - - - Description: - Descripción: - - - &Category: - &Categoría: - - - C&ommands: - C&omandos: - - - Current shortcut: - Atajo de teclado actual: - - - Press &new shortcut: - Presionar &nuevo atajo de teclado: - - - Currently assigned to: - Actualmente asignado a: - - - &Assign - &Asignar - - - Alt+A - Alt+A - - - &Reset - &Restaurar - - - Alt+R - Alt+R - - - Re&set All - Re&staurar todo - - - Alt+S - Alt+S - - - - (Vacio) - - - - Gui::Dialog::DlgCustomKeyboardImp - - Icon - Icono - - - Command - Comando - - - none - ninguno - - - Multiple defined shortcut - Múltiples atajos de teclado definidos - - - The shortcut '%1' is defined more than once. This could result into unexpected behaviour. - El atajo de teclado '%1' está definido más de una vez. Esto puede ocasionar un comportamiento inesperado. - - - Already defined shortcut - Atajo de teclado ya definido - - - The shortcut '%1' is already assigned to '%2'. - -Please define another shortcut. - El atajo de teclado '%1' ya está asignado a '%2'. - -Por favor defina otro atajo de teclado. - - - - Gui::Dialog::DlgCustomToolBoxbarsImp - - Toolbox bars - Barras de herramientas - - - - Gui::Dialog::DlgCustomToolbars - - Toolbars - Barras de herramientas - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> Los cambios se activarán la próxima vez que cargue el entorno apropiado</p></body></html> - - - Move right - Mover a la derecha - - - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Mueva el elemento seleccionado un nivel hacia abajo.</b><p>Esto también cambiará el nivel del elemento padre.</p> - - - Move left - Mover a la izquierda - - - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Mueva el elemento seleccionado un nivel hacia arriba.</b><p>Esto también cambiará el nivel del elemento padre.</p> - - - Move down - Mover hacia abajo - - - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Mueva el elemento seleccionado hacia abajo.</b><p>El elemento se moverá dentro del nivel de jerarquía.</p> - - - Move up - Mover hacia arriba - - - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Mueva el elemento seleccionado hacia arriba.</b><p>El elemento se moverá dentro del nivel de jerarquía.</p> - - - New... - Nuevo... - - - Rename... - Renombrar... - - - Delete - Borrar - - - Icon - Icono - - - Command - Comando - - - <Separator> - <Separator> - - - New toolbar - Nueva barra de herramientas - - - Toolbar name: - Nombre de la barra de herramientas: - - - Duplicated name - Nombre duplicado - - - The toolbar name '%1' is already used - El nombre de la barra de herramientas '%1' ya se está utilizando - - - Rename toolbar - Renombrar barra de herramientas - - - - (Vacio) - - - - Gui::Dialog::DlgCustomizeImp - - Customize - Personalizar - - - &Help - Ay&uda - - - &Close - &Cerrar - - - - Gui::Dialog::DlgCustomizeSpaceball - - Spaceball - Spaceball - - - No Spaceball Present - No Spaceball Present - - - Buttons - Botones - - - Clear - Limpiar - - - Print Reference - Print Reference - - - - Gui::Dialog::DlgDisplayProperties - - Display properties - Propiedades de visualización - - - Display - Visualización - - - Transparency: - Transparencia: - - - Line width: - Ancho de línea: - - - Point size: - Tamaño de punto: - - - Material - Material - - - ... - ... - - - Close - Cerrar - - - Viewing mode - Modo de visualización - - - Display mode: - Modo de visualización: - - - Plot mode: - Modo de impresión: - - - - (Vacio) - - - Line transparency: - Transparencia de la línea: - - - Line color: - Color de la línea: - - - Shape color: - Color del cuerpo: - - - Color plot: - Color plot: - - - Document window: - - - - - Gui::Dialog::DlgEditorSettings - - Editor - Editor - - - Options - Opciones - - - Enable line numbers - Permite números de línea - - - Enable folding - Permite el plegado - - - Indentation - Sangrado - - - Insert spaces - Insertar espacios - - - Tab size: - Tamaño de la tabulación: - - - Indent size: - Tamaño de sangrado: - - - Keep tabs - Mantener la tabulación - - - Display Items - Visualizar elementos - - - Family: - Familia: - - - Size: - Tamaño: - - - Preview: - Previsualización: - - - - (Vacio) - - - - Gui::Dialog::DlgGeneral - - General - General - - - Start up - Iniciar - - - Enable splash screen at start up - Activar página de bienvenida en el inicio - - - Switch to tab of report window: - Cambiar a la pestaña de ventana de informe: - - - Auto load module after start up: - Carga automática del módulo después de iniciar: - - - Language - Idioma - - - Change language: - Cambiar idioma: - - - Main window - Ventana principal - - - Size of recent file list - Tamaño de la lista de archivos recientes - - - Window style: - Estilo de ventana: - - - Size of toolbar icons: - Tamaño de los iconos de la barra de herramientas: - - - - Gui::Dialog::DlgGeneralImp - - Default (%1 x %1) - Predeterminado (%1 x %1) - - - Small (%1 x %1) - Pequeño (%1 x %1) - - - Large (%1 x %1) - Grande (%1 x %1) - - - Extra large (%1 x %1) - Extra lgrande (%1 x %1) - - - - Gui::Dialog::DlgInputDialog - - Input - introducir - - - OK - Aceptar - - - Cancel - Cancelar - - - - (Vacio) - - - - Gui::Dialog::DlgInspector - - Scene Inspector - Inspector de escena - - - - Gui::Dialog::DlgMacroExecute - - Execute macro - Ejecutar macro - - - Macro name: - Nombre de la macro: - - - Macro destination: - Destino de la macro: - - - Execute - Ejecutar - - - Close - Cerrar - - - Create - Crear - - - Delete - Borrar - - - Edit - Editar - - - - Gui::Dialog::DlgMacroExecuteImp - - Macros - Macros - - - Macro file - Archivo de macro - - - Enter a file name, please: - Introduzca un nombre de archivo, por favor: - - - Existing file - Archivo existente - - - '%1'. -This file already exists. - '%1'. -Este archivo ya existe. - - - Delete macro - Borrar macro - - - Do you really want to delete the macro '%1'? - ¿Realmente quiere borrar la macro '%1'? - - - Cannot create file - No se puede crear el archivo - - - Creation of file '%1' failed. - Falló la creación del archivo '%1'. - - - - Gui::Dialog::DlgMacroRecord - - Macro recording - Grabando macro - - - Macro name: - Nombre de la macro: - - - Stop - Parar - - - Cancel - Cancelar - - - Macro path: - Ruta de la macro: - - - ... - ... - - - Record - Grabar - - - - Gui::Dialog::DlgMacroRecordImp - - Macro recorder - Grabador de macros - - - Specify first a place to save. - Especificar primero donde guardar. - - - Existing macro - Macro existente - - - The macro '%1' already exists. Do you want to overwrite? - La macro '%1' ya existe. ¿Desea sobreescribirla? - - - The macro directory doesn't exist. Please, choose another one. - No existe el directorio de macro. Por favor, seleccione otro. - - - Choose macro directory - Elija el directorio de macro - - - - Gui::Dialog::DlgMaterialProperties - - Material properties - Propiedades de material - - - &Close - &Cerrar - - - Alt+C - Alt+C - - - Material - Material - - - Diffuse color: - Color difuso: - - - Specular color: - Color especular: - - - Shininess: - Luminosidad: - - - % - % - - - Ambient color: - Color ambiente: - - - - (Vacio) - - - Emissive color: - Color emisivo: - - - - Gui::Dialog::DlgOnlineHelp - - On-line help - Ayuda online - - - Help viewer - Visor de ayuda - - - Location of start page - Ubicación de la página de inicio - - - - Gui::Dialog::DlgOnlineHelpImp - - HTML files (*.html *.htm) - Archivos HTML (*.html *.htm) - - - Access denied - Acceso denegado - - - Access denied to '%1' - -Specify another directory, please. - Acceso denegado a '%1' - -Especifique otro directorio, por favor. - - - - Gui::Dialog::DlgParameter - - Parameter Editor - Editor de parámetros - - - Save to disk - Guardar en disco - - - Alt+C - Alt+C - - - &Close - &Cerrar - - - - Gui::Dialog::DlgParameterImp - - Group - Grupo - - - Name - Nombre - - - Type - Tipo - - - Value - Valor - - - User parameter - Parámetro del usuario - - - Invalid input - Entrada incorrecta - - - Invalid key name '%1' - Nombre clave inválido '%1' - - - System parameter - Parámetro del sistema - - - - Gui::Dialog::DlgPreferences - - Preferences - Preferencias - - - &Help - Ay&uda - - - Alt+H - Alt+H - - - &OK - &Aceptar - - - &Apply - &Aplicar - - - Alt+A - Alt+A - - - &Cancel - &Cancelar - - - - (Vacio) - - - - Gui::Dialog::DlgPreferencesImp - - Wrong parameter - Parámetro incorrecto - - - - Gui::Dialog::DlgProjectInformation - - Project information - Información del proyecto - - - Information - Información - - - &Name: - &Nombre: - - - Commen&t: - Comen&tario: - - - Path: - Ruta: - - - &Last modified by: - &Última modificación por: - - - Created &by: - Creado &por: - - - Com&pany: - Em&presa: - - - Last &modification date: - Fecha de la última &modificación: - - - Creation &date: - Fecha &de creación: - - - &OK - &Aceptar - - - &Cancel - &Cancelar - - - - (Vacio) - - - - Gui::Dialog::DlgProjectUtility - - Project utility - Project utility - - - Extract project - Extract project - - - Source - Fuente - - - Project file (*.fcstd) - Archivo de proyecto (*. fcstd) - - - Destination - Destino - - - Extract - Extraer - - - Create project - Crear proyecto - - - Document.xml - Document.xml - - - Create - Crear - - - Load project file after creation - Cargar el archivo del proyecto después de la creación - - - Empty source - Fuente vacía - - - No source is defined. - No source is defined. - - - Empty destination - Destino vacío - - - No destination is defined. - No destination is defined. - - - - Gui::Dialog::DlgReportView - - Output window - Ventana de salida - - - Output - Salida - - - Record log messages - Grabar lista de mensajes - - - Record warnings - Guardar advertencias - - - Record error messages - Guardar mensajes de error - - - Colors - Colores - - - Normal messages: - Mensajes normales: - - - Log messages: - Lista de mensajes: - - - Warnings: - Advertencias: - - - Errors: - Errores: - - - - (Vacio) - - - Redirect internal Python errors to report view - Redirigir los errores internos de Python a un informe visual - - - Redirect internal Python output to report view - Redirect internal Python output to report view - - - - Gui::Dialog::DlgRunExternal - - Running external program - Ejecutando programa externo - - - TextLabel - EtiquetaTexto - - - Advanced >> - Avanzado>> - - - ... - ... - - - Accept changes - Aceptar cambios - - - Discard changes - Descartar cambios - - - Abort program - Abortar programa - - - Help - Ayuda - - - Select a file - Seleccionar un archivo - - - - Gui::Dialog::DlgSettings3DView - - 3D View - Vista 3D - - - 3D View settings - Configuración de vista 3D - - - Show coordinate system in the corner - Mostrar sistema de coordenadas en la esquina - - - Show counter of frames per second - Mostrar contador de cuadros por segundo - - - Enable animation - Activar animación - - - Enable anti-aliasing (slower) - Activar anti-aliasing (más lento) - - - Eye to eye distance for stereo modes: - Distancia del punto de mira para los modos estéreo: - - - Camera type - Tipo de cámara - - - Orthographic rendering - Renderizado ortográfico - - - Perspective rendering - Renderizado en perspectiva - - - - (Vacio) - - - 3D Navigation - Navegación 3D - - - Mouse... - Mouse... - - - Intensity of backlight - Intensidad de luz de fondo - - - Enable backlight color - Habilitar color de luz de fondo - - - Orbit style - Estilo órbita - - - Turntable - Turntable - - - Trackball - Trackball - - - Invert zoom - Invert zoom - - - Zoom at cursor - - - - Zoom step - - - - - Gui::Dialog::DlgSettings3DViewImp - - %1 navigation - %1 navegación - - - - Gui::Dialog::DlgSettingsColorGradient - - Color model - Color del modelo - - - &Gradient: - &Gradiente: - - - red-yellow-green-cyan-blue - rojo-amarillo-verde-cian-azul - - - blue-cyan-green-yellow-red - azul-cian-verde-amarillo-rojo - - - white-black - blanco-negro - - - black-white - negro-blanco - - - Visibility - Visibilidad - - - Out g&rayed - No &seleccionable - - - Alt+R - Alt+R - - - Out &invisible - Sin &visibilidad - - - Alt+I - Alt+I - - - Style - Estilo - - - &Zero - &Cero - - - Alt+Z - Alt+Z - - - &Flow - &Flujo - - - Alt+F - Alt+F - - - &OK - &Aceptar - - - &Cancel - &Cancelar - - - Parameter range - Rango de parámetros - - - Mi&nimum: - Mín&imo: - - - Ma&ximum: - Má&ximo: - - - &Labels: - &Etiquetas: - - - &Decimals: - &Decimales: - - - - (Vacio) - - - Color-gradient settings - Ajustes de degradado de color - - - - Gui::Dialog::DlgSettingsColorGradientImp - - Wrong parameter - Parámetro incorrecto - - - The maximum value must be higher than the minimum value. - El valor máximo debe ser mayor que el valor mínimo. - - - - Gui::Dialog::DlgSettingsDocument - - Document - Documento - - - General - General - - - Document save compression level -(0 = none, 9 = highest, 3 = default) - Nivel de compresión de guardado del documento -(0 = ninguno, 9 = el más alto, 3 = por defecto) - - - Create new document at start up - Crear un documento nuevo al iniciar - - - Storage - Almacenamiento - - - Saving transactions (Auto-save) - Guardando operaciones (Guardado automático) - - - Discard saved transaction after saving document - Descartar operaciones guardadas depués de guardar el documento - - - Save thumbnail into project file when saving document - Guardar la imagen en miniatura dentro del archivo de proyecto cuando se guarda un documento - - - Create up to backup files when resaving document - Crear archivos de copia de seguridad cuando se vuelva a guardar el documento - - - Document objects - Objetos del documento - - - Allow duplicate object labels in one document - Permitir etiquetas de objetos duplicadas en un documento - - - Maximum Undo/Redo steps - Maximum Undo/Redo steps - - - Using Undo/Redo on documents - Using Undo/Redo on documents - - - - Gui::Dialog::DlgSettingsEditorImp - - Text - Texto - - - Bookmark - Marcador - - - Breakpoint - Punto de parada - - - Keyword - Palabra clave - - - Comment - Comentar - - - Block comment - Comentar bloque - - - Number - Número - - - String - Cadena de texto - - - Character - Caracter - - - Class name - Nombre de clase - - - Define name - Definir nombre - - - Operator - Operador - - - Python output - Salida de Python - - - Python error - Error de Python - - - Items - Elementos - - - Current line highlight - - - - - Gui::Dialog::DlgSettingsImage - - Image settings - Configuración de imagen - - - Image properties - Propiedades de imagen - - - Back&ground: - C&olor de fondo: - - - Current - Actual - - - White - Blanco - - - Black - Negro - - - Transparent - Transparente - - - Image dimensions - Dimensiones de imagen - - - Pixel - Pixel - - - &Width: - &Ancho: - - - Current screen - Pantalla actual - - - Icon 32 x 32 - Icono 32 x 32 - - - Icon 64 x 64 - Icono 64 x 64 - - - Icon 128 x 128 - Icono 128 x 128 - - - CGA 320 x 200 - CGA 320 x 200 - - - QVGA 320 x 240 - QVGA 320 x 240 - - - VGA 640 x 480 - VGA 640 x 480 - - - NTSC 720 x 480 - NTSC 720 x 480 - - - PAL 768 x 578 - PAL 768 x 578 - - - SVGA 800 x 600 - SVGA 800 x 600 - - - XGA 1024 x 768 - XGA 1024 x 768 - - - HD720 1280 x 720 - HD720 1280 x 720 - - - SXGA 1280 x 1024 - SXGA 1280 x 1024 - - - SXGA+ 1400 x 1050 - SXGA+ 1400 x 1050 - - - UXGA 1600 x 1200 - UXGA 1600 x 1200 - - - HD1080 1920 x 1080 - HD1080 1920 x 1080 - - - WUXGA 1920 x 1200 - WUXGA 1920 x 1200 - - - QXGA 2048 x 1538 - QXGA 2048 x 1538 - - - WQXGA 2560 x 1600 - WQXGA 2560 x 1600 - - - QSXGA 2560 x 2048 - QSXGA 2560 x 2048 - - - QUXGA 3200 × 2400 - QUXGA 3200 × 2400 - - - HUXGA 6400 × 4800 - HUXGA 6400 × 4800 - - - !!! 10000 x 10000 - !!! 10000 x 10000 - - - Standard sizes: - Tamaños estándar: - - - &Height: - &Altura: - - - Aspect ratio: - Relación de aspecto: - - - &Screen - &Pantalla - - - Alt+S - Alt+S - - - &4:3 - &4:3 - - - Alt+4 - Alt+4 - - - 1&6:9 - 1&6:9 - - - Alt+6 - Alt+6 - - - &1:1 - &1:1 - - - Alt+1 - Alt+1 - - - Image comment - Comentario de imagen - - - Insert MIBA - Introducir MIBA - - - Insert comment - Introducir comentario - - - - Gui::Dialog::DlgSettingsMacro - - Macro - Macro - - - Macro recording settings - Configuración de la grabación de macros - - - Logging Commands - Comandos de inicio de sesión - - - Show script commands in python console - Mostrar comandos de archivos de guión en la consola de Python - - - Log all commands issued by menus to file: - Registrar todos los comandos publicados por menús en el archivo: - - - FullScript.FCScript - FullScript.FCScript - - - Gui commands - Comandos de interfaz de usuario - - - Recording GUI commands - Grabando comandos de interfaz de usuario - - - Record as comment - Grabar como comentario - - - Macro path - Ruta de la macro - - - General macro settings - - - - Run macros in local environment - - - - - Gui::Dialog::DlgSettingsUnits - - Units - Unidades - - - Units settings - Configuración de unidades - - - Standard (mm/kg/s/degree) - Estándar (mm/kg/s/grados) - - - MKS (m/kg/s/degree) - MKS (m/kg/s/grado) - - - Magnitude - Magnitud - - - Unit - Unidad - - - User system: - Sistema del usuario: - - - Imperial (in/lb) - Imperial (pulg/lb) - - - - Gui::Dialog::DlgSettingsViewColor - - Colors - Colores - - - Selection - Selección - - - Enable selection highlighting - Activar resaltado de selección - - - Enable preselection highlighting - Activar resaltado de preselección - - - Background color - Color de fondo - - - Middle color - Color medio - - - Color gradient - Gradiente de color - - - Simple color - Color simple - - - Default colors - Colores predeterminados - - - Edited edge color - Edited edge color - - - Edited vertex color - Edited vertex color - - - Construction geometry - Construction geometry - - - Fully constrained geometry - Fully constrained geometry - - - The color of construction geometry in editmode - The color of construction geometry in editmode - - - The color of fully constrained geometry in editmode - The color of fully constrained geometry in editmode - - - The color of vertices being edited - The color of vertices being edited - - - The color of edges being edited - The color of edges being edited - - - The color of construction geometry in edit mode - - - - The color of fully constrained geometry in edit mode - - - - Cursor text color - - - - Default shape color - - - - The default color for new shapes - - - - Default line width and color - - - - The default line color for new shapes - - - - The default line thickness for new shapes - - - - px - - - - - Gui::Dialog::DlgTipOfTheDay - - Tip of the day - Consejo del día - - - <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> - <b><font face="Times New Roman"><font size="+3">Sabías que...</font></font></b> - - - &Show tips at start up - &Mostrar consejos al inicio - - - Alt+S - Alt+S - - - &Next Tip - &Siguiente consejo - - - Alt+N - Alt+N - - - &Close - &Cerrar - - - Alt+C - Alt+C - - - - (Vacio) - - - - Gui::Dialog::DlgTipOfTheDayImp - - Download failed: %1 - - Descarga fallida: %1 - - - If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. - Si quieres aprender más sobre FreeCAD deberías ir a %1 o presionar el elemento de ayuda en el menú de ayuda. - - - - Gui::Dialog::DockablePlacement - - Placement - Ubicación - - - - Gui::Dialog::DownloadDialog - - Canceled. - Cancelado. - - - Download - - - - Cancel - Cancelar - - - Close - Cerrar - - - There already exists a file called %1 in the current directory. Overwrite? - - - - Unable to save the file %1: %2. - - - - Downloading %1. - - - - Download canceled. - - - - Download failed: %1. - La descarga ha fallado: %1. - - - Downloaded %1 to current directory. - - - - - Gui::Dialog::IconDialog - - Add icon - Agregar icono - - - - Gui::Dialog::InputVector - - Input vector - Introducir vector - - - Vector - Vector - - - Z: - Z: - - - Y: - Y: - - - X: - X: - - - OK - Aceptar - - - - Gui::Dialog::LicenseDialog - - Copyright - - - - - Gui::Dialog::MouseButtons - - Mouse buttons - Botones del mouse - - - Configuration - Configuración - - - Selection: - Selección: - - - Panning - Encuadrar - - - Rotation: - Rotación: - - - Zooming: - Zoom: - - - - Gui::Dialog::ParameterGroup - - Expand - Expandir - - - Add sub-group - Añadir subgrupo - - - Remove group - Eliminar subgrupo - - - Rename group - Renombrar grupo - - - Export parameter - Exportar parámetro - - - Import parameter - Importar parámetro - - - Collapse - Colapsar - - - Do really want to remove this parameter group? - ¿Realmente desea eliminar este grupo de parámetros? - - - Existing sub-group - Subgrupo existente - - - The sub-group '%1' already exists. - El subgrupo '%1' ya existe. - - - Export parameter to file - Exportar parámetro a archivo - - - XML (*.FCParam) - XML (*.FCParam) - - - Import parameter from file - Importar parámetro de archivo - - - Import Error - Error de importación - - - Reading from '%1' failed. - La lectura de '%1' ha fallado. - - - - Gui::Dialog::ParameterValue - - Change value - Cambiar valor - - - Remove key - Eliminar clave - - - Rename key - Renombrar clave - - - New - Nuevo - - - New string item - Nuevo elemento de cadena de texto - - - New float item - Nuevo elemento de coma flotante - - - New integer item - Nuevo elemento entero - - - New unsigned item - Nuevo elemento sin signo - - - New Boolean item - nuevo elemento booleano - - - Existing item - Elemento existente - - - The item '%1' already exists. - El elemento '%1' ya existe. - - - - Gui::Dialog::Placement - - Placement - Ubicación - - - OK - Aceptar - - - Translation: - Traslación: - - - Z: - Z: - - - Y: - Y: - - - X: - X: - - - Rotation: - Rotación: - - - Angle: - Ángulo: - - - Axis: - Ejes: - - - Center: - Centro: - - - Pitch: - Tono: - - - Roll: - Lanzar: - - - Yaw: - Del desvío: - - - Rotation axis with angle - Rotation axis with angle - - - Euler angles - Ángulos de Euler - - - Apply placement changes immediately - Aplicar los cambios de posición de inmediato - - - Apply incremental changes to object placement - Aplicar cambios incrementales a la posición de los objetos - - - Apply - Aplicar - - - Reset - Reiniciar - - - Close - Cerrar - - - - Gui::Dialog::PrintModel - - Button - Botón - - - Command - Comando - - - - Gui::Dialog::SceneInspector - - Dialog - Diálogo - - - Close - Cerrar - - - Refresh - Actualizar pantalla - - - - Gui::Dialog::SceneModel - - Inventor Tree - Árbol de Inventor - - - Nodes - Nodos - - - - Gui::Dialog::TextureMapping - - Texture - Textura - - - Texture mapping - Mapeo de textura - - - Global - Global - - - Environment - Entorno - - - Image files (%1) - Archivos de imagen (%1) - - - No image - No existe la imagen - - - The specified file is not a valid image file. - El archivo especificado no es un archivo de imagen válido. - - - No 3d view - No exista vista 3d - - - No active 3d view found. - No se encontró una vista activa en 3d. - - - - Gui::Dialog::Transform - - Cancel - Cancelar - - - Transform - Transformar - - - - Gui::DlgTreeWidget - - Dialog - Diálogo - - - Items - Elementos - - - OK - Aceptar - - - Cancel - Cancelar - - - - (Vacio) - - - - Gui::DockWnd::CombiView - - CombiView - Vista combinada - - - Project - Proyecto - - - Tasks - Tareas - - - - Gui::DockWnd::HelpView - - Previous - Previo - - - Next - Siguiente - - - Home - Inicio - - - Open - Abrir - - - Open file - Abrir archivo - - - All HTML files (*.html *.htm) - Todos los archivos HTML (*.html *.htm) - - - External browser - Visor de ayuda - - - No external browser found. Specify in preferences, please - No se ha encontrado ningún navegador externo. Especifíquelo en preferencias, por favor - - - Starting of %1 failed - Iniciando %1 ha fallado - - - - Gui::DockWnd::PropertyDockView - - Property View - Vista de propiedades - - - - Gui::DockWnd::ReportOutput - - Logging - Inicio de sesión - - - Warning - Advertencia - - - Error - Error - - - Options - Opciones - - - Clear - Limpiar - - - Save As... - Guardar como... - - - Save Report Output - Guardar salida de informe - - - Plain Text Files (*.txt *.log) - Archivos de texto (*.txt *.log) - - - Go to end - Ir al final - - - Redirect Python output - Redirect Python output - - - Redirect Python errors - Redirigir errores de Python - - - - Gui::DockWnd::ReportView - - Output - Salida - - - Python console - Consola de Python - - - - Gui::DockWnd::SelectionView - - Property View - Vista de propiedades - - - - Gui::DockWnd::TaskPanelView - - Task View - Vista de Tareas - - - - Gui::DockWnd::TextBrowser - - Could not open file. - No es posible abrir el archivo. - - - You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. - Has intentado acceder a la dirección %1 que no está disponible actualmente. Por favor asegurate de que la URL existe y prueba recargando la página. - - - Connecting to %1 - Conectando con %1 - - - Sending to %1 - Enviando a %1 - - - Reading from %1 - Leyendo de %1 - - - Download failed: %1. - La descarga ha fallado: %1. - - - Previous - Previo - - - Forward - Adelante - - - Home - Inicio - - - Refresh - Actualizar pantalla - - - Copy - Copiar - - - Select all - Seleccionar todo - - - No description for - Sin descripción para - - - - Gui::DocumentModel - - Application - Aplicación - - - Labels & Attributes - Etiquetas & Atributos - - - - Gui::EditorView - - Modified file - Archivo modificado - - - %1. - -This has been modified outside of the source editor. Do you want to reload it? - %1. - -Ha sido modificado fuera del editor de código fuente. Desea recargarlo? - - - Unsaved document - Documento sin guardar - - - The document has been modified. -Do you want to save your changes? - El documento ha sido modificado. -Desea guardar los cambios? - - - FreeCAD macro (*.FCMacro);;Python (*.py) - Macro de FreeCAD (*.FCMacro);;Python (*.py) - - - Export PDF - Exportar PDF - - - PDF file (*.pdf) - Archivo PDF (*.pdf) - - - untitled[*] - Sin título[*] - - - - Editor - - Editor - - - %1 chars removed - %1 carácteres eliminados - - - %1 chars added - %1 carácteres añadidos - - - Formatted - Formateado - - - - Gui::FileChooser - - Select a file - Seleccionar un archivo - - - Select a directory - Seleccionar un directorio - - - - Gui::FileDialog - - Save as - Guardar como - - - Open - Abrir - - - - Gui::FileOptionsDialog - - Extended - Extendida - - - All files (*.*) - Todos los archivos (*.*) - - - - Gui::Flag - - Top left - Planta izquierda - - - Bottom left - Inferior izquierda - - - Top right - OPlanta derecha - - - Bottom right - Inferior derecha - - - Remove - Quitar - - - - Gui::InventorNavigationStyle - - Press CTRL and left mouse button - Presione la tecla CTRL y el botón izquierdo del mouse - - - Press middle mouse button - Cliquee el botón central del mouse - - - Press left mouse button - Cliquee el botón izquierdo del mouse - - - Scroll middle mouse button - Despláce botón central del mouse - - - - Gui::LocationDialog - - Wrong direction - Dirección incorrecta - - - Direction must not be the null vector - La dirección no puede ser el vector nulo - - - X - X - - - Y - Y - - - Z - Z - - - User defined... - Definido por el usuario... - - - - Gui::LocationWidget - - X: - X: - - - Y: - Y: - - - Z: - Z: - - - Direction: - - - - - Gui::MacroCommand - - Macros - Macros - - - - Gui::MainWindow - - Dimension - Cota - - - Ready - Preparado - - - Toggles this toolbar - Muestra u oculta la barra de herramientas - - - Toggles this dockable window - Alterna esta ventana acoplable - - - Close All - Cerrar todo - - - - Gui::ManualAlignment - - Manual alignment - - - - The alignment is already in progress. - - - - Alignment[*] - - - - Please, select at least one point in the left and the right view - - - - Please, select at least %1 points in the left and the right view - - - - Please pick points in the left and right view - - - - The alignment has finished - - - - The alignment has been canceled - - - - Too few points picked in the left view. At least %1 points are needed. - - - - Too few points picked in the right view. At least %1 points are needed. - - - - Different number of points picked in left and right view. -On the left view %1 points are picked, -on the right view %2 points are picked. - - - - Try to align group of views - - - - The alignment failed. -How do you want to proceed? - - - - Retry - - - - Ignore - - - - Abort - - - - Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - - - - Point picked at (%1,%2,%3) - - - - No point was picked - - - - - Gui::NetworkRetriever - - Download started... - - Descarga comenzada... - - - - - Gui::ProgressBar - - Remaining: %1 - Restante: %1 - - - Aborting - Abortando - - - Do you really want to abort the operation? - Realmente quieres abortar la operación? - - - - Gui::ProgressDialog - - Remaining: %1 - Restante: %1 - - - Aborting - Abortando - - - Do you really want to abort the operation? - Realmente quieres abortar la operación? - - - - Gui::PropertyEditor::PropertyModel - - Property - Propiedad - - - Value - Valor - - - - Gui::PropertyView - - View - Vista - - - Data - Datos - - - - Gui::PythonConsole - - System exit - Salida del sistema - - - The application is still running. -Do you want to exit without saving your data? - La aplicación aún se está ejecutando. -Desea salir sin guardar sus datos? - - - Python console - Consola de Python - - - Unhandled PyCXX exception. - Excepción de PyCXX no gestionada. - - - Unhandled FreeCAD exception. - Excepción de FreeCAD no gestionada. - - - Unhandled unknown C++ exception. - Excepción desconocida de C++ no gestionada. - - - &Copy command - &Comando copiar - - - &Copy history - &Copiar historia - - - Save history as... - Guardar historioa como... - - - Insert file name... - Insertar nombre de archivo... - - - Save History - Guardar historia - - - Macro Files (*.FCMacro *.py) - Archivos de macro (*.FCMacro *.py) - - - Insert file name - Introducir nombre de archivo - - - All Files (*.*) - Todos los archivos (*.*) - - - Python Input Dialog - Diálogo de entrada de Python - - - Unhandled std C++ exception. - Excepción de std C++ no gestionada. - - - Word wrap - Ajuste de texto - - - &Copy - &Copiar - - - &Paste - &Pegar - - - Select All - Seleccionar todo - - - Clear console - - - - - Gui::PythonEditor - - Comment - Comentar - - - Uncomment - Quitar comentario - - - - Gui::PythonInputField - - OK - Aceptar - - - Clear - Limpiar - - - - Gui::RecentFilesAction - - Open file %1 - Abrir archivo %1 - - - File not found - Archivo no encontrado - - - The file '%1' cannot be opened. - El archivo '%1' no se puede abrir. - - - - Gui::SelectModule - - Select module - Seleccionar módulo - - - Open %1 as - Abrir %1 como - - - Select - Seleccionar - - - - Gui::StdCmdDescription - - Help - Ayuda - - - Des&cription - Des&cripción - - - Long description of commands - Descripción larga de comandos - - - - Gui::StdCmdDownloadOnlineHelp - - Help - Ayuda - - - Download online help - Descargar ayuda online - - - Download %1's online help - Descargar %1's ayuda online - - - Non-existing directory - Directorio no existente - - - The directory '%1' does not exist. - -Do you want to specify an existing directory? - El directorio '%1' no existe. - -Desea especificar un directorio existente? - - - Missing permission - Permiso perdido - - - You don't have write permission to '%1' - -Do you want to specify another directory? - No tiene permisos de escritura para '%1' - -Desea especificar otro directorio? - - - Stop downloading - Detener la descarga - - - - Gui::StdCmdPythonHelp - - Tools - Herramientas - - - Python Modules - Módulos de Python - - - Opens a browser to show the Python modules - Abre un explorador para mostrar los módulos de Python - - - - Gui::TaskBoxAngle - - Angle - Ángulo - - - - Gui::TaskBoxPosition - - Position - Posición - - - - Gui::TaskView::TaskAppearance - - Display mode: - Modo de visualización: - - - Plot mode: - Modo de impresión: - - - Point size: - Tamaño de punto: - - - Line width: - Ancho de línea: - - - Transparency: - Transparencia: - - - Appearance - Apariencia - - - Document window: - - - - - Gui::TaskView::TaskEditControl - - Edit - Editar - - - - Gui::TaskView::TaskSelectLinkProperty - - Appearance - Apariencia - - - ... - ... - - - edit selection - Editar selección - - - - Gui::TouchpadNavigationStyle - - Press left mouse button - Cliquee el botón izquierdo del mouse - - - Press SHIFT button - - - - Press ALT button - - - - Press PgUp/PgDown button - - - - - Gui::Translator - - English - Inglés - - - - Gui::TreeDockWidget - - Tree view - Vista en árbol - - - - Gui::TreeWidget - - Create group... - Crear grupo... - - - Create a group - Crear un grupo - - - Group - Grupo - - - Rename - Renombrar - - - Rename object - Renombrar objeto - - - Labels & Attributes - Etiquetas & Atributos - - - Application - Aplicación - - - Finish editing - Finalizar la edición - - - Finish editing object - Finalizar edición de objeto - - - Activate document - Activar documento - - - Activate document %1 - Activar documento %1 - - - - Gui::View3DInventor - - Export PDF - Exportar PDF - - - PDF file (*.pdf) - Archivo PDF (*.pdf) - - - - Gui::WorkbenchGroup - - Select the '%1' workbench - Seleccionar el escenario '%1' - - - - Position - - Form - Formulario - - - X: - X: - - - Y: - Y: - - - Z: - Z: - - - 0.1 mm - 0.1 mm - - - 0.5 mm - 0.5 mm - - - 1 mm - 1 mm - - - 2 mm - 2 mm - - - 5 mm - 5 mm - - - 10 mm - 10 mm - - - 20 mm - 20 mm - - - 50 mm - 50 mm - - - 100 mm - 100 mm - - - 200 mm - 200 mm - - - 500 mm - 500 mm - - - 1 m - 1 m - - - 2 m - 2 m - - - 5 m - 5 m - - - Grid Snap in - Ajuste de rejilla en - - - - QDockWidget - - Tree view - Vista en árbol - - - Property view - Vista de Propiedades - - - Selection view - Vista de selección - - - Report view - Vista de informe - - - Task View - Vista de Tareas - - - Combo View - Vista combinada - - - Toolbox - Caja de herramientas - - - Python console - Consola de Python - - - Display properties - Propiedades de visualización - - - - QObject - - General - General - - - Display - Visualización - - - Unknown filetype - Tipo de archivo desconocido - - - Cannot open unknown filetype: %1 - No es posible abrir el tipo de archivo desconocido: %1 - - - Cannot save to unknown filetype: %1 - No es posible guardar el tipo de archivo desconocido: %1 - - - Workbench failure - Fracaso de escenario - - - %1 - %1 - - - Unable to launch Qt Assistant (%1) - Incapaz de iniciar Qt Assistant (%1) - - - Exception - Excepción - - - Open document - Abrir documento - - - Import file - Importar archivo - - - Export file - Exportar archivo - - - Printing... - Imprimiendo... - - - Cannot load workbench - No es posible cargar el escenario - - - A general error occurred while loading the workbench - Un error general ocurrio mientras se cargaba el escenario - - - File not found - Archivo no encontrado - - - Cannot open file %1 - No es posible abrir el archivo %1 - - - Save views... - Guardar vistas... - - - Load views... - Cargar vistas... - - - Freeze view - Congelar vista - - - Clear views - Limpiar vistas - - - Restore view &%1 - Restaurar vista &%1 - - - Save frozen views - Guardar vistas congeladas - - - Frozen views (*.cam) - Vistas congeladas (*.cam) - - - Restore views - Restaurar vistas - - - Importing the restored views would clear the already stored views. -Do you want to continue? - La importación de las vistas restauradas podría limpiar las vistas ya almacenadas. -Desea continuar? - - - Restore frozen views - Restaurar vistas congeladas - - - Cannot open file '%1'. - No es posible abrir el archivo '%1'. - - - Docked - Acoplado - - - Undocked - Sin acoplar - - - Fullscreen - Pantalla completa - - - files - archivos - - - Save picture - Guardar imagen - - - New sub-group - Nuevo subgrupo - - - Enter the name: - Introducir el nombre: - - - New text item - Nuevo elemento de texto - - - Enter your text: - Introduzca su texto: - - - New integer item - Nuevo elemento entero - - - Enter your number: - Introduzca su número: - - - New unsigned item - Nuevo elemento sin signo - - - New float item - Nuevo elemento de coma flotante - - - New Boolean item - nuevo elemento booleano - - - Choose an item: - Seleccionar un elemento: - - - Rename group - Renombrar grupo - - - The group '%1' cannot be renamed. - El grupo '%1' no puede renombrarse. - - - Existing group - Grupo existente - - - The group '%1' already exists. - El grupo '%1' ya existe. - - - Change value - Cambiar valor - - - Save document under new filename... - Guardar documento con un nombre de archivo nuevo... - - - Saving aborted - Guardar abortado - - - Unsaved document - Documento sin guardar - - - Save document before close? - Guardar documento antes de cerrar? - - - Save Macro - Guardar macro - - - Finish - Terminado - - - Clear - Limpiar - - - Cancel - Cancelar - - - Inner - Interior - - - Outer - Exterior - - - No Browser - Ningún navegador - - - Unable to open your browser. - -Please open a browser window and type in: http://localhost:%1. - Incapaz de abrir su navegador. - -Por favor abra una ventana del navegador y escriba en ella: http://localhost:%1. - - - No Server - Ningún servidor - - - Unable to start the server to port %1: %2. - Incapaz de iniciar el servidor al puerto %1: %2. - - - Unable to open your system browser. - Incapaz de abrir su navegador del sistema. - - - Options... - Opciones... - - - Out of memory - Memoria insuficiente - - - Not enough memory available to display the data. - Insuficiente memoria disponible para mostrar los datos. - - - Cannot find file %1 - No se puede encontrar el archivo %1 - - - Cannot find file %1 neither in %2 nor in %3 - No se pueden encontrar los archivos %1 ni %2 ni %3 - - - Save %1 Document - Guardar el documento %1 - - - %1 document (*.FCStd) - %1 documento (*.FCStd) - - - Save As - Guardar como - - - %1 already exists. -Do you want to replace it? - %1 ya existe. -Desea reemplazarlo? - - - Document not closable - El documento no se puede cerrar - - - The document is not closable for the moment. - El documento no se puede cerrar por el momento. - - - No OpenGL - Sin OpenGL - - - This system does not support OpenGL - Este sistema no es compatible con OpenGL - - - Help - Ayuda - - - Unable to load documentation. -In order to load it Qt 4.4 or higher is required. - No se puede cargar la documentación. -Para cargarlo es necesario Qt 4.4 o superior. - - - %1 Help - %1 Ayuda - - - Exporting PDF... - Exportando a PDF... - - - Wrong selection - Selección incorrecta - - - Only one object selected. Please select two objects. -Be aware the point where you click matters. - Sólo un objeto seleccionado. Seleccione dos objetos. Tenga en cuenta el punto en que hace clic. - - - Please select two objects. -Be aware the point where you click matters. - Seleccione dos objetos. Tenga en cuenta el punto en que hace clic. - - - New boolean item - Nuevo elemento booleano - - - Navigation styles - Estilos de navegación - - - %1 navigation - %1 navegación - - - Move annotation - Mover anotación - - - Transform - Transformar - - - The document is in editing mode and thus cannot be closed for the moment. -You either have to finish or cancel the editing in the task panel. - El documento está en modo de edición y no puede ser cerrado en este momento. -Tienes que finzalizar o cancelar la edición en el panel de tareas. - - - - StdBoxSelection - - Standard-View - Vista estándar - - - Box selection - - - - - StdCmdAbout - - Help - Ayuda - - - &About %1 - &Acerca de %1 - - - About %1 - Acerca de %1 - - - - StdCmdAboutQt - - Help - Ayuda - - - About &Qt - Acerca de &Qt - - - About Qt - Acerca de Qt - - - - StdCmdActivateNextWindow - - Window - Ventana - - - Ne&xt - &Siguiente - - - Activate next window - Activar ventana siguiente - - - - StdCmdActivatePrevWindow - - Window - Ventana - - - Pre&vious - Pre&via - - - Activate previous window - Activar ventana previa - - - - StdCmdAlignment - - Edit - Editar - - - Alignment... - - - - Align the selected objects - - - - - StdCmdArrangeIcons - - Window - Ventana - - - Arrange &Icons - Organizar &Iconos - - - Arrange Icons - Organizar iconos - - - - StdCmdAxisCross - - Standard-View - Vista estándar - - - Toggle axis cross - Toggle axis cross - - - - StdCmdCascadeWindows - - Window - Ventana - - - &Cascade - &Cascada - - - Tile pragmatic - Mosaico pragmático - - - - StdCmdCloseActiveWindow - - Window - Ventana - - - Cl&ose - &Cerrar - - - Close active window - Cerrar la ventana activa - - - - StdCmdCloseAllWindows - - Window - Ventana - - - Close Al&l - Cerrar &Todo - - - Close all windows - Cerrar todas las ventanas - - - - StdCmdCommandLine - - Tools - Herramientas - - - Start command &line... - &Iniciar línea de comandos... - - - Opens the command line in the console - Abre la línea de comandos en la consola - - - - StdCmdCopy - - Edit - Editar - - - C&opy - C&opiar - - - Copy operation - Operación de copia - - - - StdCmdCut - - Edit - Editar - - - &Cut - &Cortar - - - Cut out - Recortar - - - - StdCmdDDuplicateSelection - - Edit - Editar - - - Duplicate selection - Duplicar la selección - - - Put duplicates of the selected objects to the active document - Ponga los duplicados de los objetos seleccionados en el documento activo - - - - StdCmdDelete - - Edit - Editar - - - &Delete - &Borrar - - - Deletes the selected objects - Borra los elementos seleccionados - - - - StdCmdDemoMode - - Standard-View - Vista estándar - - - View turntable... - Ver torno... - - - View turntable - Ver torno - - - - StdCmdDlgCustomize - - Tools - Herramientas - - - Cu&stomize... - &Personalizar... - - - Customize toolbars and command bars - Personalizar barras de herramientas y comandos - - - - StdCmdDlgMacroExecute - - Macros ... - Macros... - - - Opens a dialog to let you execute a recorded macro - Abre un cuadro de diálogo que te permite ejecutar una macro grabada - - - Macro - Macro - - - - StdCmdDlgMacroExecuteDirect - - Macro - Macro - - - Execute macro - Ejecutar macro - - - Execute the macro in the editor - Ejecutar macro en el editor - - - - StdCmdDlgMacroRecord - - &Macro recording ... - &Grabación de macro... - - - Opens a dialog to record a macro - Abre un cuadro de diálogo para grabar una macro - - - Macro - Macro - - - - StdCmdDlgParameter - - Tools - Herramientas - - - E&dit parameters ... - &Editar parámetros... - - - Opens a Dialog to edit the parameters - Abre un cuadro de diálogo para editar los parametros - - - - StdCmdDlgPreferences - - Tools - Herramientas - - - &Preferences ... - &Preferencias... - - - Opens a Dialog to edit the preferences - Abre un cuadro de diálogo para editar las preferencias - - - - StdCmdDockViewMenu - - View - Vista - - - Vie&ws - &Vistas - - - Toggles this window - Conmutar esta ventana - - - - StdCmdDrawStyle - - Standard-View - Vista estándar - - - Draw style - Draw style - - - - StdCmdDuplicateSelection - - Edit - Editar - - - Duplicate selection - Duplicar la selección - - - Put duplicates of the selected objects to the active document - Ponga los duplicados de los objetos seleccionados en el documento activo - - - - StdCmdEdit - - Edit - Editar - - - Toggle &Edit mode - - - - Toggles the selected object's edit mode - - - - Enters or leaves the selected object's edit mode - - - - - StdCmdExport - - File - Archivo - - - &Export... - &Exportar... - - - Export an object in the active document - Exportar un objeto en el documento activo - - - Supported formats - Formatos soportados - - - No selection - - - - Please select first the objects you want to export. - - - - - StdCmdExportGraphviz - - Tools - Herramientas - - - Dependency graph... - - - - Show the dependency graph of the objects in the active document - - - - - StdCmdFeatRecompute - - File - Archivo - - - &Recompute - &Recalcular - - - Recompute feature or document - Recalcular caracteristicas o documento - - - - StdCmdFreeCADWebsite - - Help - Ayuda - - - FreeCAD Website - Sitio web de FreeCAD - - - The FreeCAD website - El sitio web de FreeCAD - - - - StdCmdFreezeViews - - Standard-View - Vista estándar - - - Freeze display - Congelar visualización - - - Freezes the current view position - Congelar la posición de la vista actual - - - - StdCmdHideObjects - - Standard-View - Vista estándar - - - Hide all objects - Ocultar todos los objetos - - - Hide all objects in the document - Ocultar todos los objetos en el documento - - - - StdCmdHideSelection - - Standard-View - Vista estándar - - - Hide selection - Ocultar selección - - - Hide all selected objects - Ocultar todos los objetos seleccionados - - - - StdCmdImport - - File - Archivo - - - &Import... - &Importar... - - - Import a file in the active document - Importar un archivo en el documento activo - - - Supported formats - Formatos soportados - - - All files (*.*) - Todos los archivos (*.*) - - - - StdCmdMacroStartDebug - - Macro - Macro - - - Debug macro - Depurar macro - - - Start debugging of macro - Iniciar depuración de macro - - - - StdCmdMacroStepOver - - Macro - Macro - - - Step over - Pasar al siguiente - - - - StdCmdMacroStopDebug - - Macro - Macro - - - Stop debugging - Parar depuración - - - Stop debugging of macro - Parar depuración de macro - - - - StdCmdMacroStopRecord - - Macro - Macro - - - S&top macro recording - &Detener la grabaciṕon de la macro - - - Stop the macro recording session - Detener la sesión de grabación de la macro - - - - StdCmdMeasureDistance - - View - Vista - - - Measure distance - Medir distancia - - - - StdCmdMeasurementSimple - - Tools - Herramientas - - - Mesure distance - Medir distancia - - - Measures distance between two selected objects - Medir distancias entre dos objetos seleccionados - - - Measure distance - Medir distancia - - - - StdCmdMergeProjects - - File - Archivo - - - Merge project... - Fusionar proyecto... - - - Merge project - Fusionar proyecto - - - %1 document (*.fcstd) - Documento %1(*.fcstd) - - - Cannot merge project with itself. - No se puede fusionar el proyecto consigo mismo. - - - - StdCmdNew - - File - Archivo - - - &New - &Nuevo - - - Create a new empty document - Crear un documento vacío nuevo - - - - StdCmdOnlineHelp - - Help - Ayuda - - - Show help to the application - Mostrar ayuda de la aplicación - - - - StdCmdOnlineHelpPython - - Help - Ayuda - - - Python Manuals - Manuales de Python - - - Show the Python documentation - Mostrar la documentación de Python - - - - StdCmdOnlineHelpWebsite - - Help - Ayuda - - - Help Website - Sitio web de ayuda - - - The website where the help is maintained - El sitio web donde se mantiene la ayuda - - - - StdCmdOpen - - File - Archivo - - - &Open... - &Abrir... - - - Open a document or import files - Abrir un documento o importar archivos - - - Supported formats - Formatos soportados - - - All files (*.*) - Todos los archivos (*.*) - - - - StdCmdPaste - - Edit - Editar - - - &Paste - &Pegar - - - Paste operation - Operación de pegar - - - - StdCmdPlacement - - Edit - Editar - - - Placement... - Ubicación... - - - Place the selected objects - Sitúe los objetos seleccionados - - - - StdCmdPrint - - File - Archivo - - - &Print... - &Imprimir... - - - Print the document - Imprimir el documento - - - - StdCmdPrintPdf - - File - Archivo - - - &Export PDF... - &Exportar PDF... - - - Export the document as PDF - Exportar el documento como PDF - - - - StdCmdPrintPreview - - File - Archivo - - - &Print preview... - &Print preview... - - - Print the document - Imprimir el documento - - - Print preview - Vista previa de impresión - - - - StdCmdProjectInfo - - File - Archivo - - - Project i&nformation... - &Información del proyecto... - - - Show details of the currently active project - Mostrar detalles del proyecto activo actual - - - - StdCmdProjectUtil - - Tools - Herramientas - - - Project utility... - Project utility... - - - Utility to extract or create project files - Herramienta para extraer o crear archivos de proyectos - - - - StdCmdPythonWebsite - - Help - Ayuda - - - Python Website - Sitio web de Python - - - The official Python website - El sitio web oficial de Python - - - - StdCmdQuit - - File - Archivo - - - E&xit - &Salir - - - Quits the application - Salir de la aplicación - - - - StdCmdRandomColor - - File - Archivo - - - Random color - Color aleatorio - - - - StdCmdRecentFiles - - File - Archivo - - - Recent files - Archivos recientes - - - Recent file list - Lista de archivos recientes - - - - StdCmdRedo - - Edit - Editar - - - &Redo - &Rehacer - - - Redoes a previously undone action - Rehace una acción previa de deshacer - - - - StdCmdRefresh - - Edit - Editar - - - &Refresh - &Actualizar pantalla - - - Recomputes the current active document - Recalcula el documento activo actual - - - - StdCmdSave - - File - Archivo - - - &Save - &Guardar - - - Save the active document - Guarda el documento activo - - - - StdCmdSaveAs - - File - Archivo - - - Save &As... - Guardar &como... - - - Save the active document under a new file name - Guarda el documento activo con un nombre de archivo nuevo - - - - StdCmdSceneInspector - - Tools - Herramientas - - - Scene inspector... - Inspector de escena... - - - Scene inspector - Inspector de escena - - - - StdCmdSelectAll - - Edit - Editar - - - Select &All - Seleccionar &todo - - - Select all - Seleccionar todo - - - - StdCmdSetAppearance - - Standard-View - Vista estándar - - - Appearance... - Apariencia... - - - Sets the display properties of the selected object - Establece las propiedades de visualización de los objetos seleccionados - - - - StdCmdShowObjects - - Standard-View - Vista estándar - - - Show all objects - Mostrar todos los objetos - - - Show all objects in the document - Mostrar todos los objetos en el documento - - - - StdCmdShowSelection - - Standard-View - Vista estándar - - - Show selection - Mostrar selección - - - Show all selected objects - Mostrar todos los objetos seleccionados - - - - StdCmdStatusBar - - View - Vista - - - Status bar - Barra de estado - - - Toggles the status bar - Conmutar la barra de estado - - - - StdCmdTextureMapping - - Tools - Herramientas - - - Texture mapping... - Mapeo de textura... - - - Texture mapping - Mapeo de textura - - - - StdCmdTileWindows - - Window - Ventana - - - &Tile - &Mosaico - - - Tile the windows - Poner las ventanas en mosaico - - - - StdCmdToggleBreakpoint - - Macro - Macro - - - Toggle breakpoint - Conmutar punto de parada - - - - StdCmdToggleClipPlane - - Standard-View - Vista estándar - - - Clipping plane - Plano de recorte - - - Toggles clipping plane for active view - Conmuta el plano de recorte para la vista activa - - - - StdCmdToggleNavigation - - Standard-View - Vista estándar - - - Toggle navigation/Edit mode - Alternar en modo Navegación/Edición - - - Toggle between navigation and edit mode - Alternar entre el modo de navegación y edición - - - - StdCmdToggleObjects - - Standard-View - Vista estándar - - - Toggle all objects - Conmutar todos los objetos - - - Toggles visibility of all objects in the active document - Conmuta la visibilidad de todos los objetos en el documento activo - - - - StdCmdToggleSelectability - - Standard-View - Vista estándar - - - Toggle selectability - Conmutar selectividad - - - Toggles the property of the objects to get selected in the 3D-View - Conmutar la propiedad de los objetos de ser seleccionados en la Vista 3D - - - - StdCmdToggleVisibility - - Standard-View - Vista estándar - - - Toggle visibility - Conmutar visibilidad - - - Toggles visibility - Conmuta la visibilidad - - - - StdCmdToolBarMenu - - View - Vista - - - Tool&bars - &Barras de herramientas - - - Toggles this window - Conmutar esta ventana - - - - StdCmdTransform - - Edit - Editar - - - Transform... - Transformar... - - - Transform the geometry of selected objects - Transformar la geometría de los objetos seleccionados - - - - StdCmdTreeSelection - - View - Vista - - - Go to selection - Ir a la selección - - - Scroll to first selected item - Desplazarse al primer elemento seleccionado - - - - StdCmdUndo - - Edit - Editar - - - &Undo - &Deshacer - - - Undo exactly one action - Deshacer exactamente una acción - - - - StdCmdUserInterface - - View - Vista - - - Dock views - Acoplar vistas - - - Dock all top-level views - Acoplar todas las vistas de nivel superior - - - - StdCmdViewAxo - - Standard-View - Vista estándar - - - Axometric - Axonométrica - - - Set to axometric view - Establecer la vista axonométrica - - - - StdCmdViewBottom - - Standard-View - Vista estándar - - - Bottom - Inferior - - - Set to bottom view - Establece la vista inferior - - - - StdCmdViewCreate - - Standard-View - Vista estándar - - - Create new view - Crear una vista nueva - - - Creates a new view window for the active document - Crea una ventana de vista nueva para el documento activo - - - - StdCmdViewExample1 - - Standard-View - Vista estándar - - - Inventor example #1 - Inventor ejemplo #1 - - - Shows a 3D texture with manipulator - Muestra una textura 3D con manipulador - - - - StdCmdViewExample2 - - Standard-View - Vista estándar - - - Inventor example #2 - Inventor ejemplo #2 - - - Shows spheres and drag-lights - Muestra esferas y luces arrastradas - - - - StdCmdViewExample3 - - Standard-View - Vista estándar - - - Inventor example #3 - Inventor ejemplo #3 - - - Shows a animated texture - Muestra una textura animada - - - - StdCmdViewFitAll - - Standard-View - Vista estándar - - - Fit all - Ajustar todo - - - Fits the whole content on the screen - Ajustar el contenido completo a la pantalla - - - - StdCmdViewFitSelection - - Standard-View - Vista estándar - - - Fit selection - Ajustar a la selección - - - Fits the selected content on the screen - Ajustar el contenido seleccionado a la pantalla - - - - StdCmdViewFront - - Standard-View - Vista estándar - - - Front - Alzado - - - Set to front view - Establecer vista alzado - - - - StdCmdViewIvIssueCamPos - - Standard-View - Vista estándar - - - Issue camera position - Publicar la posición de la cámara - - - Issue the camera position to the console and to a macro, to easily recall this position - Publicar la posición de la cámara a la consola y a una macro, para rellamar fácilmente a esta posición - - - - StdCmdViewIvStereoInterleavedColumns - - Standard-View - Vista estándar - - - Stereo Interleaved Columns - Estéreo columnas intercaladas - - - Switch stereo viewing to Interleaved Columns - Cambiar la visualización estéreo a columnas intercaladas - - - - StdCmdViewIvStereoInterleavedRows - - Standard-View - Vista estándar - - - Stereo Interleaved Rows - Estéreo filas intercaladas - - - Switch stereo viewing to Interleaved Rows - Cambiar la visualización estéreo a filas intercaladas - - - - StdCmdViewIvStereoOff - - Standard-View - Vista estándar - - - Stereo Off - Estéreo apagado - - - Switch stereo viewing off - Cambiar la visualización estéreo a apagado - - - - StdCmdViewIvStereoQuadBuff - - Standard-View - Vista estándar - - - Stereo quad buffer - Estéreo cuádruple buffer - - - Switch stereo viewing to quad buffer - Cambiar la visualización estéreo a cuádruple buffer - - - - StdCmdViewIvStereoRedGreen - - Standard-View - Vista estándar - - - Stereo red/green - Estéreo rojo/verde - - - Switch stereo viewing to red/green - Cambiar la visualización estéreo a rojo/verde - - - - StdCmdViewLeft - - Standard-View - Vista estándar - - - Left - Izquierda - - - Set to left view - Establecer vista izquierda - - - - StdCmdViewRear - - Standard-View - Vista estándar - - - Rear - Posterior - - - Set to rear view - Establecer vista posterior - - - - StdCmdViewRight - - Standard-View - Vista estándar - - - Right - Derecha - - - Set to right view - Establecer vista derecha - - - - StdCmdViewRotateLeft - - Standard-View - Vista estándar - - - Rotate Left - - - - Rotate the view by 90° counter-clockwise - - - - - StdCmdViewRotateRight - - Standard-View - Vista estándar - - - Rotate Right - - - - Rotate the view by 90° clockwise - - - - - StdCmdViewTop - - Standard-View - Vista estándar - - - Top - Planta - - - Set to top view - Establecer vista en planta - - - - StdCmdWhatsThis - - Help - Ayuda - - - &What's This? - &Qué es esto? - - - What's This - Qué es esto - - - - StdCmdWindows - - Window - Ventana - - - &Windows... - &Ventanas... - - - Windows list - Lista de ventanas - - - - StdCmdWindowsMenu - - Window - Ventana - - - Activates this window - Activa esta ventana - - - - StdCmdWorkbench - - View - Vista - - - Workbench - Escenario - - - Switch between workbenches - Cambiar entre escenarios - - - - StdOrthographicCamera - - Standard-View - Vista estándar - - - Orthographic view - Vista ortográfica - - - Switches to orthographic view mode - Cambiar a modo de vista ortográfica - - - - StdPerspectiveCamera - - Standard-View - Vista estándar - - - Perspective view - Vista perspectiva - - - Switches to perspective view mode - Cambiar a modo de vista perspectiva - - - - StdViewBoxZoom - - Standard-View - Vista estándar - - - Box zoom - Zona de zoom - - - - StdViewDockUndockFullscreen - - Standard-View - Vista estándar - - - Document window - Ventana de documento - - - Display the active view either in fullscreen, in undocked or docked mode - Muestra la vista activa a pantalla completa, en modo desacoplado o acoplado - - - - StdViewScreenShot - - Standard-View - Vista estándar - - - Save picture... - Guardar imagen... - - - Creates a screenshot of the active view - Crea una captura de pantalla de la vista activa - - - - StdViewZoomIn - - Standard-View - Vista estándar - - - Zoom In - Aumentar con el zoom - - - - StdViewZoomOut - - Standard-View - Vista estándar - - - Zoom Out - Reducir con el zoom - - - - Std_DrawStyle - - As is - As is - - - Normal mode - Normal mode - - - Wireframe - Wireframe - - - Wireframe mode - Wireframe mode - - - - Std_ExportGraphviz - - Graphviz not found - - - - Graphviz couldn't be found on your system. -Do you want to specify its installation path if it's already installed? - - - - Graphviz installation path - - - - Dependency graph - - - - Graphviz failed - - - - Graphviz failed to create an image file - - - - - Workbench - - &File - &Archivo - - - &Edit - &Editar - - - Standard views - Vistas estándar - - - &Stereo - &Estéreo - - - &Zoom - &Zoom - - - Visibility - Visibilidad - - - &View - &Ver - - - &Tools - &Herramientas - - - &Macro - &Macro - - - &Windows - &Ventanas - - - &On-line help - &Ayuda online - - - &Help - Ay&uda - - - File - Archivo - - - Macro - Macro - - - View - Vista - - - Special Ops - Operaciones especiales - - - - testClass - - test - prueba - - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Creado por Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - - - Choose the style of the Task Panel - Seleccionar el estilo del Panel de Tareas - - - Default - Por defecto - - - Windows XP - Windows XP - - - diff --git a/src/Gui/Language/FreeCAD_fi.qm b/src/Gui/Language/FreeCAD_fi.qm index 1f708a524..72418613e 100644 Binary files a/src/Gui/Language/FreeCAD_fi.qm and b/src/Gui/Language/FreeCAD_fi.qm differ diff --git a/src/Gui/Language/FreeCAD_fi.ts b/src/Gui/Language/FreeCAD_fi.ts index b6b7ceb0c..dbecb463f 100644 --- a/src/Gui/Language/FreeCAD_fi.ts +++ b/src/Gui/Language/FreeCAD_fi.ts @@ -1,5903 +1,5834 @@ - - + + Angle - Form - Lomake + Form + Lomake - A: - A: + A: + A: - B: - B: + B: + B: - C: - C: + C: + C: - Angle Snap - Angle Snap + Angle Snap + Angle Snap - - 1 ° - 1 ° + + 1 ° + 1 ° - - 2 ° - 2 ° + + 2 ° + 2 ° - - 5 ° - 5 ° + + 5 ° + 5 ° - - 10 ° - 10 ° + + 10 ° + 10 ° - - 20 ° - 20 ° + + 20 ° + 20 ° - - 45 ° - 45 ° + + 45 ° + 45 ° - - 90 ° - 90 ° + + 90 ° + 90 ° - - 180 ° - 180 ° + + 180 ° + 180 ° - - + + Gui::AccelLineEdit - none - ei mitään + none + ei mitään - - + + Gui::ActionSelector - Available: - + Available: + Available: - Selected: - + Selected: + Selected: - Add - Lisää + Add + Lisää - Remove - Poista + Remove + Poista - Move up - Siirrä ylös + Move up + Siirrä ylös - Move down - Siirrä alas + Move down + Siirrä alas - - + + Gui::AlignmentView - Movable object - + Movable object + Movable object - Fixed object - + Fixed object + Fixed object - - + + Gui::BlenderNavigationStyle - Press left mouse button - Paina hiiren vasenta painiketta + Press left mouse button + Paina hiiren vasenta painiketta - Press SHIFT and middle mouse button - Press SHIFT and middle mouse button + Press SHIFT and middle mouse button + Press SHIFT and middle mouse button - Press middle mouse button - Paina hiiren keskipainiketta + Press middle mouse button + Paina hiiren keskipainiketta - Scroll middle mouse button - Selaa hiiren keskimmäisellä painikkeella + Scroll middle mouse button + Selaa hiiren keskimmäisellä painikkeella - - + + Gui::CADNavigationStyle - Press left mouse button - Paina hiiren vasenta painiketta + Press left mouse button + Paina hiiren vasenta painiketta - Press middle mouse button - Paina hiiren keskipainiketta + Press middle mouse button + Paina hiiren keskipainiketta - Press left and middle mouse button - Paina hiiren keskimmäistä ja vasenta painiketta + Press left and middle mouse button + Paina hiiren keskimmäistä ja vasenta painiketta - Scroll middle mouse button - Selaa hiiren keskimmäisellä painikkeella + Scroll middle mouse button + Selaa hiiren keskimmäisellä painikkeella - - + + Gui::Command - Standard - Standardi + Standard + Standardi - - + + Gui::ContainerDialog - &OK - &OK + &OK + &OK - &Cancel - &Peruuta + &Cancel + &Peruuta - - + + Gui::ControlSingleton - Task panel - Tehtävä paneeli + Task panel + Tehtävä paneeli - - + + Gui::Dialog::AboutApplication - About - Tietoja + About + Tietoja - Revision number - Versionumero + Revision number + Versionumero - Version - Versio + Version + Versio - OK - OK + OK + OK - - + + - Release date - Julkaisupäivä + Release date + Julkaisupäivä - Platform - Platform + Platform + Platform - License... - License... + License... + License... - Copy to clipboard - + Copy to clipboard + Copy to clipboard - - + + Gui::Dialog::ButtonModel - Button %1 - Button %1 + Button %1 + Button %1 - Out Of Range - Out Of Range + Out Of Range + Out Of Range - - + + Gui::Dialog::CommandModel - Commands - Komennot + Commands + Komennot - - + + Gui::Dialog::DemoMode - View Turntable - Näkymän kääntöpöytä + View Turntable + Näkymän kääntöpöytä - Speed - Nopeus + Speed + Nopeus - Maximum - Maksimi + Maximum + Maksimi - Minimum - Minimi + Minimum + Minimi - Fullscreen - Kokoruututila + Fullscreen + Kokoruututila - Enable timer - Ota ajastin käyttöön + Enable timer + Ota ajastin käyttöön - s - s + s + s - Angle - Angle - - - 90° - 90° - - - -90° - -90° + Angle + Angle - Play - Play + 90° + 90° - Stop - Pysäytä + -90° + -90° - Close - Sulje + Play + Play - - + + Stop + Pysäytä + + + Close + Sulje + + + Gui::Dialog::DlgActivateWindow - Choose Window - Valitse Ikkuna + Choose Window + Valitse Ikkuna - &Activate - &Aktivoi + &Activate + &Aktivoi - Alt+A - ALT+A + Alt+A + ALT+A - &Cancel - &Peruuta + &Cancel + &Peruuta - - + + - - + + Gui::Dialog::DlgActivateWindowImp - Windows - Ikkunat + Windows + Ikkunat - - + + Gui::Dialog::DlgAuthorization - Authorization - Tunnistautuminen + Authorization + Tunnistautuminen - &OK - &OK + &OK + &OK - &Cancel - &Peruuta + &Cancel + &Peruuta - Password: - Salasana: + Password: + Salasana: - User name: - Käyttäjätunnus: + User name: + Käyttäjätunnus: - - + + - - + + Gui::Dialog::DlgChooseIcon - Choose Icon - Valitse kuvake + Choose Icon + Valitse kuvake - OK - OK + OK + OK - Cancel - Peruuta + Cancel + Peruuta - Add icons... - Add icons... + Add icons... + Add icons... - - + + Gui::Dialog::DlgCustomActions - Macros - Makrot + Macros + Makrot - Setup Custom Macros - Asennuksen mukautetut makrot + Setup Custom Macros + Asennuksen mukautetut makrot - Macro: - Makro: + Macro: + Makro: - ... - ... + ... + ... - Pixmap - Pikselikartta + Pixmap + Pikselikartta - Accelerator: - Pikanäppäin: + Accelerator: + Pikanäppäin: - What's this: - Mikä tämä on: + What's this: + Mikä tämä on: - Status text: - Tila teksti: + Status text: + Tila teksti: - Tool tip: - Työkaluvihje: + Tool tip: + Työkaluvihje: - Menu text: - Valikko teksti: + Menu text: + Valikko teksti: - Add - Lisää + Add + Lisää - Remove - Poista + Remove + Poista - Replace - Korvaa + Replace + Korvaa - - + + Gui::Dialog::DlgCustomActionsImp - Icons - Kuvakkeet + Icons + Kuvakkeet - Macros - Makrot + Macros + Makrot - No macro - Ei makro + No macro + Ei makro - No macros found. - Makroja ei löydy. + No macros found. + Makroja ei löydy. - Macro not found - makroa ei löytynyt + Macro not found + makroa ei löytynyt - Sorry, couldn't find macro file '%1'. - Valitettavasti makro tiedostoa '%1' ei löydy. + Sorry, couldn't find macro file '%1'. + Valitettavasti makro tiedostoa '%1' ei löydy. - Empty macro - Tyhjä makro + Empty macro + Tyhjä makro - Please specify the macro first. - Ole hyvä ja määritä ensin makro. + Please specify the macro first. + Ole hyvä ja määritä ensin makro. - Empty text - Tyhjä teksti + Empty text + Tyhjä teksti - Please specify the menu text first. - Ole hyvä ja määritä valikon teksti. + Please specify the menu text first. + Ole hyvä ja määritä valikon teksti. - No item selected - Ei valittuja kohteita + No item selected + Ei valittuja kohteita - Please select a macro item first. - Ole hyvä ja valitse makro kohde. + Please select a macro item first. + Ole hyvä ja valitse makro kohde. - - + + Gui::Dialog::DlgCustomCommands - Commands - Komennot + Commands + Komennot - - + + - - + + Gui::Dialog::DlgCustomCommandsImp - Category - Kategoria + Category + Kategoria - Icon - kuvake + Icon + kuvake - Command - Komento + Command + Komento - - + + Gui::Dialog::DlgCustomKeyboard - Keyboard - Näppäimistö + Keyboard + Näppäimistö - Description: - Kuvaus: + Description: + Kuvaus: - &Category: - &Kategoria: + &Category: + &Kategoria: - C&ommands: - &Komennot: + C&ommands: + &Komennot: - Current shortcut: - Nykyinen pikakuvake: + Current shortcut: + Nykyinen pikakuvake: - Press &new shortcut: - Paina &uusi pikakuvaketta: + Press &new shortcut: + Paina &uusi pikakuvaketta: - Currently assigned to: - Tällä hetkellä määritetty: + Currently assigned to: + Tällä hetkellä määritetty: - &Assign - &Määrittää + &Assign + &Määrittää - Alt+A - ALT+A + Alt+A + ALT+A - &Reset - &Palauta + &Reset + &Palauta - Alt+R - Alt+R + Alt+R + Alt+R - Re&set All - Nollaa Kaikki + Re&set All + Nollaa Kaikki - Alt+S - Alt+S + Alt+S + Alt+S - - + + - - + + Gui::Dialog::DlgCustomKeyboardImp - Icon - kuvake + Icon + kuvake - Command - Komento + Command + Komento - none - ei mitään + none + ei mitään - Multiple defined shortcut - Useasti määritetty pikakuvake + Multiple defined shortcut + Useasti määritetty pikakuvake - The shortcut '%1' is defined more than once. This could result into unexpected behaviour. - Pikakuvake "%1" on määritelty enemmän kuin kerran. Tämä saattaa johtaa odottamattomaan lopputulokseen. + The shortcut '%1' is defined more than once. This could result into unexpected behaviour. + Pikakuvake "%1" on määritelty enemmän kuin kerran. Tämä saattaa johtaa odottamattomaan lopputulokseen. - Already defined shortcut - Jo aikaisemmin määritelty pikakuvake + Already defined shortcut + Jo aikaisemmin määritelty pikakuvake - The shortcut '%1' is already assigned to '%2'. + The shortcut '%1' is already assigned to '%2'. Please define another shortcut. - Jo aikaisemmin määritelty pikakuvake + Jo aikaisemmin määritelty pikakuvake - - + + Gui::Dialog::DlgCustomToolBoxbarsImp - Toolbox bars - Työkaluryhmän palkit + Toolbox bars + Työkaluryhmän palkit - - + + Gui::Dialog::DlgCustomToolbars - Toolbars - Työkalurivit + Toolbars + Työkalurivit - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> - Move right - Siirrä oikealle + Move right + Siirrä oikealle - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - Move left - Siirrä vasemmalle + Move left + Siirrä vasemmalle - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - Move down - Siirrä alas + Move down + Siirrä alas - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - Move up - Siirrä ylös + Move up + Siirrä ylös - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - New... - Uusi ... + New... + Uusi ... - Rename... - Nimeä uudelleen ... + Rename... + Nimeä uudelleen ... - Delete - Poista + Delete + Poista - Icon - kuvake + Icon + kuvake - Command - Komento + Command + Komento - <Separator> - <Separator> + <Separator> + <Separator> - New toolbar - Uusi työkalurivi + New toolbar + Uusi työkalurivi - Toolbar name: - Työkalurivin nimi: + Toolbar name: + Työkalurivin nimi: - Duplicated name - Duplicated name + Duplicated name + Duplicated name - The toolbar name '%1' is already used - The toolbar name '%1' is already used + The toolbar name '%1' is already used + Työkalurivin nimi '%1' on jo käytössä - Rename toolbar - Uudelleennimeä työkalurivi + Rename toolbar + Uudelleennimeä työkalurivi - - + + - - + + Gui::Dialog::DlgCustomizeImp - Customize - Mukauttaminen + Customize + Mukauttaminen - &Help - &Ohje + &Help + &Ohje - &Close - &Sulje + &Close + &Sulje - - + + Gui::Dialog::DlgCustomizeSpaceball - Spaceball - Spaceball + Spaceball + Spaceball - No Spaceball Present - No Spaceball Present + No Spaceball Present + No Spaceball Present - Buttons - Buttons + Buttons + Buttons - Clear - Tyhjennä + Clear + Tyhjennä - Print Reference - Print Reference + Print Reference + Print Reference - - + + Gui::Dialog::DlgDisplayProperties - Display properties - Näytön ominaisuudet + Display properties + Näytön ominaisuudet - Display - Näyttö + Display + Näyttö - Transparency: - Läpinäkyvyys: + Transparency: + Läpinäkyvyys: - Line width: - Viivan leveys: + Line width: + Viivan leveys: - Point size: - Pistekoko: + Point size: + Pistekoko: - Material - Materiaali + Material + Materiaali - ... - ... + ... + ... - Close - Sulje + Close + Sulje - Viewing mode - Viewing mode + Viewing mode + Viewing mode - Display mode: - Display mode: + Plot mode: + Plot mode: - Plot mode: - Plot mode: + + - - + Line transparency: + Line transparency: - Line transparency: - Line transparency: + Line color: + Line color: - Line color: - Line color: + Shape color: + Shape color: - Shape color: - Shape color: + Color plot: + Color plot: - Color plot: - Color plot: + Document window: + Document window: - - Document window: - - - - + + Gui::Dialog::DlgEditorSettings - Editor - Muokkain + Editor + Muokkain - Options - Asetukset + Options + Asetukset - Enable line numbers - Ota rivinumerot käyttöön + Enable line numbers + Ota rivinumerot käyttöön - Enable folding - Ota taivutus käyttöön + Enable folding + Ota taivutus käyttöön - Indentation - Indentation + Indentation + Indentation - Insert spaces - Insert spaces + Insert spaces + Insert spaces - Tab size: - Sarkaimen koko: + Tab size: + Sarkaimen koko: - Indent size: - Sisennä koko: + Indent size: + Sisennä koko: - Keep tabs - Keep tabs + Keep tabs + Keep tabs - Display Items - Display Items + Display Items + Display Items - Family: - Family: + Family: + Family: - Size: - Koko: + Size: + Koko: - Preview: - Esikatselu: + Preview: + Esikatselu: - - + + - - + + Gui::Dialog::DlgGeneral - General - Yleiset + General + Yleiset - Start up - käynnistys + Start up + käynnistys - Enable splash screen at start up - Enable splash screen at start up + Enable splash screen at start up + Enable splash screen at start up - Switch to tab of report window: - Switch to tab of report window: + Switch to tab of report window: + Switch to tab of report window: - Auto load module after start up: - Auto load module after start up: + Auto load module after start up: + Lataa lisäosa käynnistyksessä: - Language - Kieli + Language + Kieli - Change language: - Vaihda kieli: + Change language: + Vaihda kieli: - Main window - Pääikkuna + Main window + Pääikkuna - Size of recent file list - Size of recent file list + Size of recent file list + Size of recent file list - Window style: - Ikkuna tyyli: + Window style: + Ikkuna tyyli: - Size of toolbar icons: - Size of toolbar icons: + Size of toolbar icons: + Size of toolbar icons: - - + + Gui::Dialog::DlgGeneralImp - Default (%1 x %1) - Default (%1 x %1) + Default (%1 x %1) + Default (%1 x %1) - Small (%1 x %1) - Small (%1 x %1) + Small (%1 x %1) + Small (%1 x %1) - Large (%1 x %1) - Large (%1 x %1) + Large (%1 x %1) + Large (%1 x %1) - Extra large (%1 x %1) - Extra large (%1 x %1) + Extra large (%1 x %1) + Extra large (%1 x %1) - - + + Gui::Dialog::DlgInputDialog - Input - Syöttö + Input + Syöttö - OK - OK + OK + OK - Cancel - Peruuta + Cancel + Peruuta - - + + - - + + Gui::Dialog::DlgInspector - Scene Inspector - Scene Inspector + Scene Inspector + Scene Inspector - - + + Gui::Dialog::DlgMacroExecute - Execute macro - Suorita makro + Execute macro + Suorita makro - Macro name: - Makron nimi: + Macro name: + Makron nimi: - Macro destination: - Makro kohde: + Macro destination: + Makro kohde: - Execute - Suorita + Execute + Suorita - Close - Sulje + Close + Sulje - Create - Luo + Create + Luo - Delete - Poista + Delete + Poista - Edit - Muokkaa + Edit + Muokkaa - - + + Gui::Dialog::DlgMacroExecuteImp - Macros - Makrot + Macros + Makrot - Macro file - Makro-tiedosto + Macro file + Makro-tiedosto - Enter a file name, please: - Anna tiedoston nimi, kiitos: + Enter a file name, please: + Anna tiedoston nimi, kiitos: - Existing file - Olemassa oleva tiedosto + Existing file + Olemassa oleva tiedosto - '%1'. + '%1'. This file already exists. - "%1". Tämä tiedosto on jo olemassa. + "%1". Tämä tiedosto on jo olemassa. - Delete macro - Poista makro + Delete macro + Poista makro - Do you really want to delete the macro '%1'? - Haluatko varmasti poistaa makron "%1"? + Do you really want to delete the macro '%1'? + Haluatko varmasti poistaa makron "%1"? - Cannot create file - Cannot create file + Cannot create file + Cannot create file - Creation of file '%1' failed. - Creation of file '%1' failed. + Creation of file '%1' failed. + Creation of file '%1' failed. - - + + Gui::Dialog::DlgMacroRecord - Macro recording - Makron tallennus + Macro recording + Makron tallennus - Macro name: - Makron nimi: + Macro name: + Makron nimi: - Stop - Pysäytä + Stop + Pysäytä - Cancel - Peruuta + Cancel + Peruuta - Macro path: - Macro path: + Macro path: + Macro path: - ... - ... + ... + ... - Record - Record + Record + Record - - + + Gui::Dialog::DlgMacroRecordImp - Macro recorder - Makro-tallennin + Macro recorder + Makro-tallennin - Specify first a place to save. - Määritä ensin tallennuspaikka. + Specify first a place to save. + Määritä ensin tallennuspaikka. - Existing macro - Aiemmin luotu makro + Existing macro + Aiemmin luotu makro - The macro '%1' already exists. Do you want to overwrite? - Makro '%1' on jo olemassa. Haluatko korvata? + The macro '%1' already exists. Do you want to overwrite? + Makro '%1' on jo olemassa. Haluatko korvata? - The macro directory doesn't exist. Please, choose another one. - The macro directory doesn't exist. Please, choose another one. + The macro directory doesn't exist. Please, choose another one. + The macro directory doesn't exist. Please, choose another one. - Choose macro directory - Choose macro directory + Choose macro directory + Choose macro directory - - + + Gui::Dialog::DlgMaterialProperties - Material properties - Materiaaliominaisuudet + Material properties + Materiaaliominaisuudet - &Close - &Sulje + &Close + &Sulje - Alt+C - Alt+C + Alt+C + Alt+C - Material - Materiaali + Material + Materiaali - Diffuse color: - Diffuse color: + Diffuse color: + Diffuse color: - Specular color: - Heijastuneen valon väri: + Specular color: + Heijastuneen valon väri: - Shininess: - Shininess: + Shininess: + Kiiltävyys: - % - % + % + % - Ambient color: - Ympäristön väri: + Ambient color: + Ympäristön väri: - - + + - Emissive color: - Emissive color: + Emissive color: + Emissive color: - - + + Gui::Dialog::DlgOnlineHelp - On-line help - Käytönaikainen ohje + On-line help + Käytönaikainen ohje - Help viewer - Ohjeen katseluohjelma + Help viewer + Ohjeen katseluohjelma - Location of start page - Aloitussivun sijainti + Location of start page + Aloitussivun sijainti - - + + Gui::Dialog::DlgOnlineHelpImp - HTML files (*.html *.htm) - HTML-tiedostot (*.html *.htm) + HTML files (*.html *.htm) + HTML-tiedostot (*.html *.htm) - Access denied - Pääsy evätty + Access denied + Pääsy evätty - Access denied to '%1' + Access denied to '%1' Specify another directory, please. - Pääsy evätty "%1" Määritä toinen hakemisto, ole hyvä. + Pääsy evätty "%1" Määritä toinen hakemisto, ole hyvä. - - + + Gui::Dialog::DlgParameter - Parameter Editor - Parametrimuokkain + Parameter Editor + Parametrimuokkain - Save to disk - Tallenna levylle + Save to disk + Tallenna levylle - Alt+C - Alt+C + Alt+C + Alt+C - &Close - &Sulje + &Close + &Sulje - - + + Gui::Dialog::DlgParameterImp - Group - Ryhmä + Group + Ryhmä - Name - Nimi + Name + Nimi - Type - Tyyppi + Type + Tyyppi - Value - Arvo + Value + Arvo - User parameter - Käyttäjäparametri + User parameter + Käyttäjäparametri - Invalid input - Virheellinen syöte + Invalid input + Virheellinen syöte - Invalid key name '%1' - Virheellinen avaimen nimi "%1" + Invalid key name '%1' + Virheellinen avaimen nimi "%1" - System parameter - Järjestelmäparametri + System parameter + Järjestelmäparametri - - + + Gui::Dialog::DlgPreferences - Preferences - Preferences + Preferences + Asetukset - &Help - &Ohje + &Help + &Ohje - Alt+H - Alt+H + Alt+H + Alt+H - &OK - &OK + &OK + &OK - &Apply - &Apply + &Apply + &Käytä - Alt+A - ALT+A + Alt+A + ALT+A - &Cancel - &Peruuta + &Cancel + &Peruuta - - + + - - + + Gui::Dialog::DlgPreferencesImp - Wrong parameter - Wrong parameter + Wrong parameter + Väärä parametri - - + + Gui::Dialog::DlgProjectInformation - Project information - Project information + Project information + Projektin tiedot - Information - Information + Information + Tiedot - &Name: - &Name: + &Name: + &Nimi: - Commen&t: - Commen&t: + Commen&t: + Kommen&tti: - Path: - Path: + Path: + Polku: - &Last modified by: - &Last modified by: + &Last modified by: + &Viimeksi muutettu: - Created &by: - Created &by: + Created &by: + Luotu&: - Com&pany: - Com&pany: + Com&pany: + Yh&tiö: - Last &modification date: - Last &modification date: + Last &modification date: + Viime&muutosten päivämäärä: - Creation &date: - Creation &date: + Creation &date: + Luonti&päivämäärä: - &OK - &OK + &OK + &OK - &Cancel - &Peruuta + &Cancel + &Peruuta - - + + - - + + Gui::Dialog::DlgProjectUtility - Project utility - Project utility + Project utility + Project utility - Extract project - Extract project + Extract project + Extract project - Source - Source + Source + Source - Project file (*.fcstd) - Project file (*.fcstd) + Project file (*.fcstd) + Project file (*.fcstd) - Destination - Destination + Destination + Destination - Extract - Extract + Extract + Extract - Create project - Create project + Create project + Create project - Document.xml - Document.xml + Document.xml + Document.xml - Create - Luo + Create + Luo - Load project file after creation - Load project file after creation + Load project file after creation + Load project file after creation - Empty source - Empty source + Empty source + Empty source - No source is defined. - No source is defined. + No source is defined. + No source is defined. - Empty destination - Empty destination + Empty destination + Empty destination - No destination is defined. - No destination is defined. + No destination is defined. + No destination is defined. - - + + Gui::Dialog::DlgReportView - Output window - Output window + Output window + Output window - Output - Output + Output + Tuloste - Record log messages - Record log messages + Record log messages + Tallenna lokiviestit - Record warnings - Record warnings + Record warnings + Tallenna varoitukset - Record error messages - Record error messages + Record error messages + Tallenna virheilmoitukset - Colors - Colors + Colors + Värit - Normal messages: - Normal messages: + Normal messages: + Normaaleja sanomia: - Log messages: - Log messages: + Log messages: + Lokin viestejä: - Warnings: - Warnings: + Warnings: + Varoitukset: - Errors: - Virheet: + Errors: + Virheet: - - + + - Redirect internal Python errors to report view - Redirect internal Python errors to report view + Redirect internal Python errors to report view + Redirect internal Python errors to report view - Redirect internal Python output to report view - Redirect internal Python output to report view + Redirect internal Python output to report view + Redirect internal Python output to report view - - + + Gui::Dialog::DlgRunExternal - Running external program - Ulkoisen ohjelman käynnistäminen + Running external program + Ulkoisen ohjelman käynnistäminen - TextLabel - TextLabel + TextLabel + TextLabel - Advanced >> - Advanced >> + Advanced >> + Advanced >> - ... - ... + ... + ... - Accept changes - Hyväksy muutokset + Accept changes + Hyväksy muutokset - Discard changes - Hylkää muutokset + Discard changes + Hylkää muutokset - Abort program - Keskeytä ohjelma + Abort program + Keskeytä ohjelma - Help - Ohje + Help + Ohje - Select a file - Valitse tiedosto + Select a file + Valitse tiedosto - - + + Gui::Dialog::DlgSettings3DView - 3D View - 3D View + 3D View + 3D-näkymä - 3D View settings - 3D-näkymän asetukset + 3D View settings + 3D-näkymän asetukset - Show coordinate system in the corner - Show coordinate system in the corner + Show coordinate system in the corner + Näytä koordinaatisto nurkassa - Show counter of frames per second - Show counter of frames per second + Show counter of frames per second + Näytä näytön päivitysnopeus - Enable animation - Ota animaatiot käyttöön + Enable animation + Ota animaatiot käyttöön - Enable anti-aliasing (slower) - Enable anti-aliasing (slower) + Enable anti-aliasing (slower) + Enable anti-aliasing (slower) - Eye to eye distance for stereo modes: - Eye to eye distance for stereo modes: + Eye to eye distance for stereo modes: + Eye to eye distance for stereo modes: - Camera type - Kameratyyppi + Camera type + Kameratyyppi - Orthographic rendering - Orthographic rendering + Orthographic rendering + Orthographic rendering - Perspective rendering - Perspektiivin renderöinti + Perspective rendering + Perspektiivin renderöinti - - + + - 3D Navigation - 3D navigointi + 3D Navigation + 3D navigointi - Mouse... - Hiiri... + Mouse... + Hiiri... - Intensity of backlight - Taustavalon intensiteetti + Intensity of backlight + Taustavalon intensiteetti - Enable backlight color - Ota taustavalon väri käyttöön + Enable backlight color + Ota taustavalon väri käyttöön - Orbit style - Orbit style + Orbit style + Orbit style - Turntable - Turntable + Turntable + Turntable - Trackball - Trackball + Trackball + Trackball - Invert zoom - Invert zoom + Invert zoom + Invert zoom - Zoom at cursor - + Zoom at cursor + Zoom at cursor - Zoom step - + Zoom step + Zoom step - - + + Gui::Dialog::DlgSettings3DViewImp - %1 navigation - %1 navigointi + %1 navigation + %1 navigointi - - + + Gui::Dialog::DlgSettingsColorGradient - Color model - Värimalli + Color model + Värimalli - &Gradient: - &Liukuväri: + &Gradient: + &Liukuväri: - red-yellow-green-cyan-blue - red-yellow-green-cyan-blue + red-yellow-green-cyan-blue + Punainen-keltainen-vihreä-syaani-sininen - blue-cyan-green-yellow-red - blue-cyan-green-yellow-red + blue-cyan-green-yellow-red + sininen-syaani-vihreä-keltainen-punainen - white-black - valko-musta + white-black + valko-musta - black-white - musta-valko + black-white + musta-valko - Visibility - Näkyvyys + Visibility + Näkyvyys - Out g&rayed - Out g&rayed + Out g&rayed + Out g&rayed - Alt+R - Alt+R + Alt+R + Alt+R - Out &invisible - Out &invisible + Out &invisible + Ulos&näkymätön - Alt+I - Alt+I + Alt+I + Alt+I - Style - Tyyli + Style + Tyyli - &Zero - &Nolla + &Zero + &Nolla - Alt+Z - ALT+Z + Alt+Z + ALT+Z - &Flow - &Virtaukset + &Flow + &Virtaukset - Alt+F - Alt+F + Alt+F + Alt+F - &OK - &OK + &OK + &OK - &Cancel - &Peruuta + &Cancel + &Peruuta - Parameter range - Parameter range + Parameter range + Arvoalue - Mi&nimum: - Mi&nimi: + Mi&nimum: + Mi&nimi: - Ma&ximum: - Ma&ximi: + Ma&ximum: + Ma&ximi: - &Labels: - &Labels: + &Labels: + &Otsikot: - &Decimals: - &Desimaalit: + &Decimals: + &Desimaalit: - - + + - Color-gradient settings - Liukuvärin värin asetukset + Color-gradient settings + Liukuvärin värin asetukset - - + + Gui::Dialog::DlgSettingsColorGradientImp - Wrong parameter - Wrong parameter + Wrong parameter + Väärä parametri - The maximum value must be higher than the minimum value. - Maksimiarvon pitää olla suurempi kuin minimiarvo. + The maximum value must be higher than the minimum value. + Maksimiarvon pitää olla suurempi kuin minimiarvo. - - + + Gui::Dialog::DlgSettingsDocument - Document - Asiakirja + Document + Asiakirja - General - Yleiset + General + Yleiset - Document save compression level + Document save compression level (0 = none, 9 = highest, 3 = default) - Asiakirja tallennetaan pakkaustasolla (0 = ei yhtään, 9 = suurin, 3 = oletus) + Asiakirja tallennetaan pakkaustasolla (0 = ei yhtään, 9 = suurin, 3 = oletus) - Create new document at start up - Luo uusi asiakirja käynnistettäessä + Create new document at start up + Luo uusi asiakirja käynnistettäessä - Storage - Talletuspaikka + Storage + Talletuspaikka - Saving transactions (Auto-save) - Saving transactions (Auto-save) + Saving transactions (Auto-save) + Tallentaa tapahtumat (automaattinen tallennus) - Discard saved transaction after saving document - Discard saved transaction after saving document + Discard saved transaction after saving document + Discard saved transaction after saving document - Save thumbnail into project file when saving document - Tallenna pikkukuva projektitiedostoon asiakirjaa tallennettaessa + Save thumbnail into project file when saving document + Tallenna pikkukuva projektitiedostoon asiakirjaa tallennettaessa - Create up to backup files when resaving document - Luo varmuuskopion tiedostoista, kun asiakirja tallennetaan uudestaan + Create up to backup files when resaving document + Luo varmuuskopion tiedostoista, kun asiakirja tallennetaan uudestaan - Document objects - Asiakirjan objektit + Document objects + Asiakirjan objektit - Allow duplicate object labels in one document - Allow duplicate object labels in one document + Allow duplicate object labels in one document + Allow duplicate object labels in one document - Maximum Undo/Redo steps - Maximum Undo/Redo steps + Maximum Undo/Redo steps + Maximum Undo/Redo steps - Using Undo/Redo on documents - Using Undo/Redo on documents + Using Undo/Redo on documents + Using Undo/Redo on documents - - + + Gui::Dialog::DlgSettingsEditorImp - Text - Teksti + Text + Teksti - Bookmark - Kirjanmerkki + Bookmark + Kirjanmerkki - Breakpoint - Keskeytyskohta + Breakpoint + Keskeytyskohta - Keyword - Avainsana + Keyword + Avainsana - Comment - Kommentti + Comment + Kommentti - Block comment - Estä kommentti + Block comment + Estä kommentti - Number - Numero + Number + Numero - String - Merkkijono + String + Merkkijono - Character - Merkki + Character + Merkki - Class name - Luokan nimi + Class name + Luokan nimi - Define name - Määritä nimi + Define name + Määritä nimi - Operator - Operaattori + Operator + Operaattori - Python output - Python ulostulo + Python output + Python ulostulo - Python error - Python virhe + Python error + Python virhe - Items - Osat + Items + Osat - Current line highlight - + Current line highlight + Current line highlight - - + + Gui::Dialog::DlgSettingsImage - Image settings - Kuvan asetukset + Image settings + Kuvan asetukset - Image properties - Kuvan ominaisuudet + Image properties + Kuvan ominaisuudet - Back&ground: - Tausta&kuva: + Back&ground: + Tausta&kuva: - Current - Nykyinen + Current + Nykyinen - White - Valkoinen + White + Valkoinen - Black - Musta + Black + Musta - Transparent - Läpinäkyvä + Transparent + Läpinäkyvä - Image dimensions - Kuvan mitat + Image dimensions + Kuvan mitat - Pixel - Pikseli + Pixel + Pikseli - &Width: - &Leveys: + &Width: + &Leveys: - Current screen - Nykyinen näyttö + Current screen + Nykyinen näyttö - Icon 32 x 32 - Kuvake 32 x 32 + Icon 32 x 32 + Kuvake 32 x 32 - Icon 64 x 64 - Kuvake 64 x 64 + Icon 64 x 64 + Kuvake 64 x 64 - Icon 128 x 128 - Kuvake 128 x 128 + Icon 128 x 128 + Kuvake 128 x 128 - CGA 320 x 200 - CGA 320 x 200 + CGA 320 x 200 + CGA 320 x 200 - QVGA 320 x 240 - QVGA 320 x 240 + QVGA 320 x 240 + QVGA 320 x 240 - VGA 640 x 480 - VGA 640 x 480 + VGA 640 x 480 + VGA 640 x 480 - NTSC 720 x 480 - NTSC 720 x 480 + NTSC 720 x 480 + NTSC 720 x 480 - PAL 768 x 578 - PAL 768 x 578 + PAL 768 x 578 + PAL 768 x 578 - SVGA 800 x 600 - SVGA 800 x 600 + SVGA 800 x 600 + SVGA 800 x 600 - XGA 1024 x 768 - XGA 1 024 x 768 + XGA 1024 x 768 + XGA 1 024 x 768 - HD720 1280 x 720 - HD720 1280 x 720 + HD720 1280 x 720 + HD720 1280 x 720 - SXGA 1280 x 1024 - SXGA 1280 x 1024 + SXGA 1280 x 1024 + SXGA 1280 x 1024 - SXGA+ 1400 x 1050 - SXGA + 1400 x 1050 + SXGA+ 1400 x 1050 + SXGA + 1400 x 1050 - UXGA 1600 x 1200 - UXGA 1600 x 1200 + UXGA 1600 x 1200 + UXGA 1600 x 1200 - HD1080 1920 x 1080 - HD1080 1920 x 1080 + HD1080 1920 x 1080 + HD1080 1920 x 1080 - WUXGA 1920 x 1200 - WUXGA 1920 x 1200 + WUXGA 1920 x 1200 + WUXGA 1920 x 1200 - QXGA 2048 x 1538 - QXGA 2048 x 1538 + QXGA 2048 x 1538 + QXGA 2048 x 1538 - WQXGA 2560 x 1600 - WQXGA 2560 x 1600 + WQXGA 2560 x 1600 + WQXGA 2560 x 1600 - QSXGA 2560 x 2048 - QSXGA 2560 x 2048 - - - QUXGA 3200 × 2400 - QUXGA 3200 × 2400 - - - HUXGA 6400 × 4800 - HUXGA 6400 × 4800 + QSXGA 2560 x 2048 + QSXGA 2560 x 2048 - !!! 10000 x 10000 - !!! 10000 x 10000 + QUXGA 3200 × 2400 + QUXGA 3200 × 2400 - Standard sizes: - Standard sizes: + HUXGA 6400 × 4800 + HUXGA 6400 × 4800 - &Height: - &Height: + !!! 10000 x 10000 + !!! 10000 x 10000 - Aspect ratio: - Aspect ratio: + Standard sizes: + Vakiokoot: - &Screen - &Screen + &Height: + &Korkeus: - Alt+S - Alt+S + Aspect ratio: + Kuvasuhde: - &4:3 - &4:3 + &Screen + &Screen - Alt+4 - Alt+4 + Alt+S + Alt+S - 1&6:9 - 1&6:9 + &4:3 + &4:3 - Alt+6 - Alt+6 + Alt+4 + Alt+4 - &1:1 - &1:1 + 1&6:9 + 1&6:9 - Alt+1 - Alt+1 + Alt+6 + Alt+6 - Image comment - Image comment + &1:1 + &1:1 - Insert MIBA - Insert MIBA + Alt+1 + Alt+1 - Insert comment - Insert comment + Image comment + Image comment - - + + Insert MIBA + Insert MIBA + + + Insert comment + Lisää kommentti + + + Gui::Dialog::DlgSettingsMacro - Macro - Macro + Macro + Macro - Macro recording settings - Macro recording settings + Macro recording settings + Macro recording settings - Logging Commands - Logging Commands + Logging Commands + Logging Commands - Show script commands in python console - Show script commands in python console + Show script commands in python console + Show script commands in python console - Log all commands issued by menus to file: - Log all commands issued by menus to file: + Log all commands issued by menus to file: + Log all commands issued by menus to file: - FullScript.FCScript - FullScript.FCScript + FullScript.FCScript + FullScript.FCScript - Gui commands - Gui commands + Gui commands + Gui commands - Recording GUI commands - GUI komentojen nauhoitus + Recording GUI commands + GUI komentojen nauhoitus - Record as comment - Tallenna kommenttina + Record as comment + Tallenna kommenttina - Macro path - Makron polku + Macro path + Makron polku - General macro settings - + General macro settings + General macro settings - Run macros in local environment - + Run macros in local environment + Run macros in local environment - - + + Gui::Dialog::DlgSettingsUnits - Units - Yksiköt + Units + Yksiköt - Units settings - Yksiköiden asetukset + Units settings + Yksiköiden asetukset - Standard (mm/kg/s/degree) - Standardi (mm/kg/s/astetta) + Standard (mm/kg/s/degree) + Standardi (mm/kg/s/astetta) - MKS (m/kg/s/degree) - MKS (m/kg/s/astetta) + MKS (m/kg/s/degree) + MKS (m/kg/s/astetta) - Magnitude - Suuruusluokka + Magnitude + Suuruusluokka - Unit - Yksikkö + Unit + Yksikkö - User system: - User system: + User system: + User system: - Imperial (in/lb) - Imperial (in/lb) + Imperial (in/lb) + Imperial (in/lb) - - + + Gui::Dialog::DlgSettingsViewColor - Colors - Colors + Colors + Värit - Selection - Valinta + Selection + Valinta - Enable selection highlighting - Enable selection highlighting + Enable selection highlighting + Ota käyttöön, korostus - Enable preselection highlighting - Ota esivalinnan korostaminen käyttöön + Enable preselection highlighting + Ota esivalinnan korostaminen käyttöön - Background color - Taustaväri + Background color + Taustaväri - Middle color - Middle color + Middle color + Keskiväri - Color gradient - Color gradient + Color gradient + Liukuvärjäys - Simple color - Yksinkertainen väri + Simple color + Yksinkertainen väri - Default colors - Default colors + Default colors + Default colors - Edited edge color - Edited edge color + Edited edge color + Edited edge color - Edited vertex color - Edited vertex color + Edited vertex color + Edited vertex color - Construction geometry - Construction geometry + Construction geometry + Construction geometry - Fully constrained geometry - Fully constrained geometry + Fully constrained geometry + Fully constrained geometry - The color of construction geometry in editmode - The color of construction geometry in editmode + The color of vertices being edited + The color of vertices being edited - The color of fully constrained geometry in editmode - The color of fully constrained geometry in editmode + The color of edges being edited + The color of edges being edited - The color of vertices being edited - The color of vertices being edited + The color of construction geometry in edit mode + The color of construction geometry in edit mode - The color of edges being edited - The color of edges being edited + The color of fully constrained geometry in edit mode + The color of fully constrained geometry in edit mode - The color of construction geometry in edit mode - + Cursor text color + Cursor text color - The color of fully constrained geometry in edit mode - + Default shape color + Default shape color - Cursor text color - + The default color for new shapes + The default color for new shapes - Default shape color - + Default line width and color + Default line width and color - The default color for new shapes - + The default line color for new shapes + The default line color for new shapes - Default line width and color - + The default line thickness for new shapes + The default line thickness for new shapes - The default line color for new shapes - + px + px - - The default line thickness for new shapes - - - - px - - - - + + Gui::Dialog::DlgTipOfTheDay - Tip of the day - Päivän vihje + Tip of the day + Päivän vihje - <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> - <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> - &Show tips at start up - &Näytä vihjeet käynnistyksen yhteydessä + &Show tips at start up + &Näytä vihjeet käynnistyksen yhteydessä - Alt+S - Alt+S + Alt+S + Alt+S - &Next Tip - &Seuraava vihje + &Next Tip + &Seuraava vihje - Alt+N - Alt+N + Alt+N + Alt+N - &Close - &Sulje + &Close + &Sulje - Alt+C - Alt+C + Alt+C + Alt+C - - + + - - + + Gui::Dialog::DlgTipOfTheDayImp - Download failed: %1 + Download failed: %1 - Lataus epäonnistui: %1 + Lataus epäonnistui: %1 - If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. - If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. - - + + Gui::Dialog::DockablePlacement - Placement - Sijainti + Placement + Sijainti - - + + Gui::Dialog::DownloadDialog - Canceled. - Canceled. + Download + Download - Download - + Cancel + Peruuta - Cancel - Peruuta + Close + Sulje - Close - Sulje + There already exists a file called %1 in the current directory. Overwrite? + There already exists a file called %1 in the current directory. Overwrite? - There already exists a file called %1 in the current directory. Overwrite? - + Unable to save the file %1: %2. + Unable to save the file %1: %2. - Unable to save the file %1: %2. - + Downloading %1. + Downloading %1. - Downloading %1. - + Download canceled. + Download canceled. - Download canceled. - + Download failed: %1. + Lataus epäonnistui: %1. - Download failed: %1. - Lataus epäonnistui: %1. + Downloaded %1 to current directory. + Downloaded %1 to current directory. - - Downloaded %1 to current directory. - - - - + + Gui::Dialog::IconDialog - Add icon - Add icon + Add icon + Add icon - - + + Gui::Dialog::InputVector - Input vector - Sisääntulo vektori + Input vector + Sisääntulo vektori - Vector - Vektori + Vector + Vektori - Z: - Z: + Z: + Z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - OK - OK + OK + OK - - + + Gui::Dialog::LicenseDialog - Copyright - + Copyright + Copyright - - + + Gui::Dialog::MouseButtons - Mouse buttons - Hiiren painikkeet + Mouse buttons + Hiiren painikkeet - Configuration - Asetustiedostot + Configuration + Asetustiedostot - Selection: - Valinta: + Selection: + Valinta: - Panning - Panorointi + Panning + Panorointi - Rotation: - Kierto: + Rotation: + Kierto: - Zooming: - Zoomaus: + Zooming: + Zoomaus: - - + + Gui::Dialog::ParameterGroup - Expand - Expand + Expand + Expand - Add sub-group - Lisää alaryhmä + Add sub-group + Lisää alaryhmä - Remove group - Poista ryhmä + Remove group + Poista ryhmä - Rename group - Nimeä ryhmä uudelleen + Rename group + Nimeä ryhmä uudelleen - Export parameter - Vie parametri + Export parameter + Vie parametri - Import parameter - Tuo parametri + Import parameter + Tuo parametri - Collapse - Kutista + Collapse + Kutista - Do really want to remove this parameter group? - Haluatko todella poistaa tämän parametriryhmän? + Do really want to remove this parameter group? + Haluatko todella poistaa tämän parametriryhmän? - Existing sub-group - Nykyinen alaryhmä + Existing sub-group + Nykyinen alaryhmä - The sub-group '%1' already exists. - Alaryhmä "%1" on jo olemassa. + The sub-group '%1' already exists. + Alaryhmä "%1" on jo olemassa. - Export parameter to file - Vie parametri tiedostoon + Export parameter to file + Vie parametri tiedostoon - XML (*.FCParam) - XML (*.FCParam) + XML (*.FCParam) + XML (*.FCParam) - Import parameter from file - Tuo parametri tiedostosta + Import parameter from file + Tuo parametri tiedostosta - Import Error - Virhe tuotaessa + Import Error + Virhe tuotaessa - Reading from '%1' failed. - '%1' lukeminen epäonnistui. + Reading from '%1' failed. + '%1' lukeminen epäonnistui. - - + + Gui::Dialog::ParameterValue - Change value - Muuta arvoa + Change value + Muuta arvoa - Remove key - Poista avain + Remove key + Poista avain - Rename key - Nimeä avain + Rename key + Nimeä avain - New - Uusi + New + Uusi - New string item - Uuden merkkijonon kohde + New string item + Uuden merkkijonon kohde - New float item - Uuden sijainnin kohde + New float item + Uuden sijainnin kohde - New integer item - Uuden kokonaisluvun kohde + New integer item + Uuden kokonaisluvun kohde - New unsigned item - Uusi allekirjoittamaton kohde + New unsigned item + Uusi allekirjoittamaton kohde - New Boolean item - New Boolean item + New Boolean item + New Boolean item - Existing item - Nykyinen kohde + Existing item + Nykyinen kohde - The item '%1' already exists. - Kohde "%1" on jo olemassa. + The item '%1' already exists. + Kohde "%1" on jo olemassa. - - + + Gui::Dialog::Placement - Placement - Sijainti + Placement + Sijainti - OK - OK + OK + OK - Translation: - Käännös: + Translation: + Käännös: - Z: - Z: + Z: + Z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - Rotation: - Kierto: + Rotation: + Kierto: - Angle: - Kulma: + Angle: + Kulma: - Axis: - Axis: + Axis: + Axis: - Center: - Keskitetty: + Center: + Keskitetty: - Pitch: - Pitch: + Pitch: + Kaltevuus: - Roll: - Roll: + Roll: + Roll: - Yaw: - Yaw: + Yaw: + Yaw: - Rotation axis with angle - Rotation axis with angle + Rotation axis with angle + Rotation axis with angle - Euler angles - Euler kulmat + Euler angles + Euler kulmat - Apply placement changes immediately - Apply placement changes immediately + Apply placement changes immediately + Apply placement changes immediately - Apply incremental changes to object placement - Apply incremental changes to object placement + Apply incremental changes to object placement + Apply incremental changes to object placement - Apply - Käytä + Apply + Käytä - Reset - Palauta + Reset + Palauta - Close - Sulje + Close + Sulje - - + + Gui::Dialog::PrintModel - Button - Button + Button + Button - Command - Komento + Command + Komento - - + + Gui::Dialog::SceneInspector - Dialog - Dialog + Dialog + Dialog - Close - Sulje + Close + Sulje - Refresh - Päivitä + Refresh + Päivitä - - + + Gui::Dialog::SceneModel - Inventor Tree - Inventor Tree + Inventor Tree + Inventor Tree - Nodes - Nodes + Nodes + Nodes - - + + Gui::Dialog::TextureMapping - Texture - Materiaalikuvio + Texture + Materiaalikuvio - Texture mapping - Texture mapping + Texture mapping + Texture mapping - Global - Järjestelmän laajuinen + Global + Järjestelmän laajuinen - Environment - Ympäristö + Environment + Ympäristö - Image files (%1) - Kuvatiedostot (%1) + Image files (%1) + Kuvatiedostot (%1) - No image - Ei kuvaa + No image + Ei kuvaa - The specified file is not a valid image file. - The specified file is not a valid image file. + The specified file is not a valid image file. + The specified file is not a valid image file. - No 3d view - Ei 3D näkymää + No 3d view + Ei 3D näkymää - No active 3d view found. - Ei löytynyt aktiivista 3D näkymää. + No active 3d view found. + Ei löytynyt aktiivista 3D näkymää. - - + + Gui::Dialog::Transform - Cancel - Peruuta + Cancel + Peruuta - Transform - Transform + Transform + muunna - - + + Gui::DlgTreeWidget - Dialog - Dialog + Dialog + Dialog - Items - Osat + Items + Osat - OK - OK + OK + OK - Cancel - Peruuta + Cancel + Peruuta - - + + - - + + Gui::DockWnd::CombiView - CombiView - CombiView + CombiView + CombiView - Project - Projekti + Project + Projekti - Tasks - Tehtävät + Tasks + Tehtävät - - + + Gui::DockWnd::HelpView - Previous - Edellinen + Previous + Edellinen - Next - Seuraava + Next + Seuraava - Home - Home + Home + Home - Open - Avaa + Open + Avaa - Open file - Avaa tiedosto + Open file + Avaa tiedosto - All HTML files (*.html *.htm) - Kaikki HTML-tiedostot (*.html *.htm) + All HTML files (*.html *.htm) + Kaikki HTML-tiedostot (*.html *.htm) - External browser - Ulkoinen selain + External browser + Ulkoinen selain - No external browser found. Specify in preferences, please - No external browser found. Specify in preferences, please + No external browser found. Specify in preferences, please + No external browser found. Specify in preferences, please - Starting of %1 failed - %1 käynnistäminen epäonnistui + Starting of %1 failed + %1 käynnistäminen epäonnistui - - + + Gui::DockWnd::PropertyDockView - Property View - Näytä ominaisuudet + Property View + Näytä ominaisuudet - - + + Gui::DockWnd::ReportOutput - Logging - Logging + Logging + Logging - Warning - Varoitus + Warning + Varoitus - Error - Virhe + Error + Virhe - Options - Asetukset + Options + Asetukset - Clear - Tyhjennä + Clear + Tyhjennä - Save As... - Tallenna nimellä... + Save As... + Tallenna nimellä... - Save Report Output - Save Report Output + Save Report Output + Save Report Output - Plain Text Files (*.txt *.log) - Teksti-tiedostot (*.txt *.log) + Plain Text Files (*.txt *.log) + Teksti-tiedostot (*.txt *.log) - Go to end - Siirry loppuun + Go to end + Siirry loppuun - Redirect Python output - Redirect Python output + Redirect Python output + Redirect Python output - Redirect Python errors - Redirect Python errors + Redirect Python errors + Redirect Python errors - - + + Gui::DockWnd::ReportView - Output - Output + Output + Tuloste - Python console - Python-konsoli + Python console + Python-konsoli - - + + Gui::DockWnd::SelectionView - Property View - Näytä ominaisuudet + Property View + Näytä ominaisuudet - - + + Gui::DockWnd::TaskPanelView - Task View - Task View + Task View + Tehtävänäkymä - - + + Gui::DockWnd::TextBrowser - Could not open file. - Tiedostoa ei voitu avata. + Could not open file. + Tiedostoa ei voitu avata. - You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. - You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. + You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. + You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. - Connecting to %1 - Yhdistetään %1 + Connecting to %1 + Yhdistetään %1 - Sending to %1 - Lähetetään %1 + Sending to %1 + Lähetetään %1 - Reading from %1 - Luetaan %1 + Reading from %1 + Luetaan %1 - Download failed: %1. - Lataus epäonnistui: %1. + Download failed: %1. + Lataus epäonnistui: %1. - Previous - Edellinen + Previous + Edellinen - Forward - Eteenpäin + Forward + Eteenpäin - Home - Home + Home + Home - Refresh - Päivitä + Refresh + Päivitä - Copy - Kopioi + Copy + Kopio - Select all - Valitse kaikki + Select all + Valitse kaikki - No description for - Ei kuvausta + No description for + Ei kuvausta - - + + Gui::DocumentModel - Application - Application + Application + Sovellus - Labels & Attributes - Labels & Attributes + Labels & Attributes + Otsikot & Määritteet - - + + Gui::EditorView - Modified file - Muokattu tiedosto + Modified file + Muokattu tiedosto - %1. + %1. This has been modified outside of the source editor. Do you want to reload it? - %1. + %1. This has been modified outside of the source editor. Do you want to reload it? - Unsaved document - Tallentamaton asiakirja + Unsaved document + Tallentamaton asiakirja - The document has been modified. + The document has been modified. Do you want to save your changes? - Asiakirjaa on muokattu. Haluatko tallentaa muutokset? + Asiakirjaa on muokattu. Haluatko tallentaa muutokset? - FreeCAD macro (*.FCMacro);;Python (*.py) - FreeCAD macro (*.FCMacro);;Python (*.py) + FreeCAD macro (*.FCMacro);;Python (*.py) + FreeCAD macro (*.FCMacro);;Python (*.py) - Export PDF - Export PDF + Export PDF + Export PDF - PDF file (*.pdf) - PDF-tiedosto (*.pdf) + PDF file (*.pdf) + PDF-tiedosto (*.pdf) - untitled[*] - Nimetön[*] + untitled[*] + Nimetön[*] - - Editor - -Muokkain + - Editor + -Muokkain - %1 chars removed - %1 merkit poistettu + %1 chars removed + %1 merkit poistettu - %1 chars added - %1 merkkiä lisätty + %1 chars added + %1 merkkiä lisätty - Formatted - Alustettu + Formatted + Alustettu - - + + Gui::FileChooser - Select a file - Valitse tiedosto + Select a file + Valitse tiedosto - Select a directory - Valitse hakemisto + Select a directory + Valitse hakemisto - - + + Gui::FileDialog - Save as - Tallenna nimellä + Save as + Tallenna nimellä - Open - Avaa + Open + Avaa - - + + Gui::FileOptionsDialog - Extended - Laajennettu + Extended + Laajennettu - All files (*.*) - Kaikki tiedostot (*.*) + All files (*.*) + Kaikki tiedostot (*.*) - - + + Gui::Flag - Top left - Vasen ylhäällä + Top left + Vasen ylhäällä - Bottom left - Alas vasemmalle + Bottom left + Alas vasemmalle - Top right - Oikeasta yläkulmasta + Top right + Oikeasta yläkulmasta - Bottom right - Alas oikealle + Bottom right + Alas oikealle - Remove - Poista + Remove + Poista - - + + Gui::InventorNavigationStyle - Press CTRL and left mouse button - Paina CTRL ja hiiren vasenta painiketta + Press CTRL and left mouse button + Paina CTRL ja hiiren vasenta painiketta - Press middle mouse button - Paina hiiren keskipainiketta + Press middle mouse button + Paina hiiren keskipainiketta - Press left mouse button - Paina hiiren vasenta painiketta + Press left mouse button + Paina hiiren vasenta painiketta - Scroll middle mouse button - Selaa hiiren keskimmäisellä painikkeella + Scroll middle mouse button + Selaa hiiren keskimmäisellä painikkeella - - + + Gui::LocationDialog - Wrong direction - Väärä suunta + Wrong direction + Väärä suunta - Direction must not be the null vector - Suunta ei saa olla null-arvoinen vektori + Direction must not be the null vector + Suunta ei saa olla null-arvoinen vektori - X - X + X + X - Y - Y + Y + Y - Z - Z + Z + Z - User defined... - User defined... + User defined... + User defined... - - + + Gui::LocationWidget - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - Z: + Z: + Z: - Direction: - + Direction: + Suunta: - - + + Gui::MacroCommand - Macros - Makrot + Macros + Makrot - - + + Gui::MainWindow - Dimension - Mitta + Dimension + Mitta - Ready - Valmis + Ready + Valmis - Toggles this toolbar - Näyttä tai piilota tämä työkalurivi + Toggles this toolbar + Näyttä tai piilota tämä työkalurivi - Toggles this dockable window - Näytä tai piilota telakointiasema ikkunasta + Toggles this dockable window + Näytä tai piilota telakointiasema ikkunasta - Close All - Sulje kaikki + Close All + Sulje kaikki - - + + Gui::ManualAlignment - Manual alignment - + Manual alignment + Manual alignment - The alignment is already in progress. - + The alignment is already in progress. + The alignment is already in progress. - Alignment[*] - + Alignment[*] + Alignment[*] - Please, select at least one point in the left and the right view - + Please, select at least one point in the left and the right view + Please, select at least one point in the left and the right view - Please, select at least %1 points in the left and the right view - + Please, select at least %1 points in the left and the right view + Please, select at least %1 points in the left and the right view - Please pick points in the left and right view - + Please pick points in the left and right view + Please pick points in the left and right view - The alignment has finished - + The alignment has finished + The alignment has finished - The alignment has been canceled - + The alignment has been canceled + The alignment has been canceled - Too few points picked in the left view. At least %1 points are needed. - + Too few points picked in the left view. At least %1 points are needed. + Too few points picked in the left view. At least %1 points are needed. - Too few points picked in the right view. At least %1 points are needed. - + Too few points picked in the right view. At least %1 points are needed. + Too few points picked in the right view. At least %1 points are needed. - Different number of points picked in left and right view. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Different number of points picked in left and right view. +On the left view %1 points are picked, +on the right view %2 points are picked. - Try to align group of views - + Try to align group of views + Try to align group of views - The alignment failed. + The alignment failed. How do you want to proceed? - + The alignment failed. +How do you want to proceed? - Retry - + Retry + Retry - Ignore - + Ignore + Ohita - Abort - + Abort + Abort - Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - Point picked at (%1,%2,%3) - + Point picked at (%1,%2,%3) + Point picked at (%1,%2,%3) - No point was picked - + No point was picked + No point was picked - - + + Gui::NetworkRetriever - Download started... + Download started... - Download started... + Download started... - - + + Gui::ProgressBar - Remaining: %1 - Jäljellä: %1 + Remaining: %1 + Jäljellä: %1 - Aborting - Keskeytetään + Aborting + Keskeytetään - Do you really want to abort the operation? - Haluatko todella keskeyttää toiminnon? + Do you really want to abort the operation? + Haluatko todella keskeyttää toiminnon? - - + + Gui::ProgressDialog - Remaining: %1 - Jäljellä: %1 + Remaining: %1 + Jäljellä: %1 - Aborting - Keskeytetään + Aborting + Keskeytetään - Do you really want to abort the operation? - Haluatko todella keskeyttää toiminnon? + Do you really want to abort the operation? + Haluatko todella keskeyttää toiminnon? - - + + Gui::PropertyEditor::PropertyModel - Property - Ominaisuus + Property + Ominaisuus - Value - Arvo + Value + Arvo - - + + Gui::PropertyView - View - Näytä + View + Näytä - Data - Tiedot + Data + Tiedot - - + + Gui::PythonConsole - System exit - Poistu järjestelmästä + System exit + Poistu järjestelmästä - The application is still running. + The application is still running. Do you want to exit without saving your data? - Sovellus on edelleen käynnissä. Haluatko lopettaa tallentamatta tietoja? + Sovellus on edelleen käynnissä. Haluatko lopettaa tallentamatta tietoja? - Python console - Python-konsoli + Python console + Python-konsoli - Unhandled PyCXX exception. - Käsittelemätön PyCXX poikkeus. + Unhandled PyCXX exception. + Käsittelemätön PyCXX poikkeus. - Unhandled FreeCAD exception. - Käsittelemätön FreeCAD poikkeus. + Unhandled FreeCAD exception. + Käsittelemätön FreeCAD poikkeus. - Unhandled unknown C++ exception. - Käsittelemätön tuntematon C++-poikkeus. + Unhandled unknown C++ exception. + Käsittelemätön tuntematon C++-poikkeus. - &Copy command - &Kopiointi-komento + &Copy command + &Kopiointi-komento - &Copy history - &Kopiointi historia + &Copy history + &Kopiointi historia - Save history as... - Tallenna historia nimellä... + Save history as... + Tallenna historia nimellä... - Insert file name... - Lisää tiedostonimi... + Insert file name... + Lisää tiedostonimi... - Save History - Tallenna historia + Save History + Tallenna historia - Macro Files (*.FCMacro *.py) - Makro-tiedostot (*.FCMacro *.py) + Macro Files (*.FCMacro *.py) + Makro-tiedostot (*.FCMacro *.py) - Insert file name - Lisää tiedostonimi + Insert file name + Lisää tiedostonimi - All Files (*.*) - Kaikki tiedostot (*.*) + All Files (*.*) + Kaikki tiedostot (*.*) - Python Input Dialog - Python Input-valintaikkuna + Python Input Dialog + Python Input-valintaikkuna - Unhandled std C++ exception. - Unhandled std C++ exception. + Unhandled std C++ exception. + Unhandled std C++ exception. - Word wrap - Word wrap + Word wrap + Word wrap - &Copy - &Kopioi + &Copy + &Kopioi - &Paste - &Liitä + &Paste + &Liitä - Select All - Valitse kaikki + Select All + Valitse kaikki - Clear console - + Clear console + Clear console - - + + Gui::PythonEditor - Comment - Kommentti + Comment + Kommentti - Uncomment - Poista kommentti + Uncomment + Poista kommentti - - + + Gui::PythonInputField - OK - OK + OK + OK - Clear - Tyhjennä + Clear + Tyhjennä - - + + Gui::RecentFilesAction - Open file %1 - Avaa tiedosto %1 + Open file %1 + Avaa tiedosto %1 - File not found - Tiedostoa ei löydy + File not found + Tiedostoa ei löydy - The file '%1' cannot be opened. - Tiedostoa '%1' ei voi avata. + The file '%1' cannot be opened. + Tiedostoa '%1' ei voi avata. - - + + Gui::SelectModule - Select module - Valitse moduuli + Select module + Valitse moduuli - Open %1 as - Avaa kuin %1 + Open %1 as + Avaa kuin %1 - Select - Valitse + Select + Valitse - - + + Gui::StdCmdDescription - Help - Ohje + Help + Ohje - Des&cription - Des&cription + Des&cription + Des&cription - Long description of commands - Long description of commands + Long description of commands + Long description of commands - - + + Gui::StdCmdDownloadOnlineHelp - Help - Ohje + Help + Ohje - Download online help - Lataa online-ohje + Download online help + Lataa online-ohje - Download %1's online help - Download %1's online help + Download %1's online help + Download %1's online help - Non-existing directory - Olemassa olematon hakemisto + Non-existing directory + Olemassa olematon hakemisto - The directory '%1' does not exist. + The directory '%1' does not exist. Do you want to specify an existing directory? - The directory '%1' does not exist. + The directory '%1' does not exist. Do you want to specify an existing directory? - Missing permission - Vajavaiset käyttöoikeudet + Missing permission + Vajavaiset käyttöoikeudet - You don't have write permission to '%1' + You don't have write permission to '%1' Do you want to specify another directory? - You don't have write permission to '%1' + You don't have write permission to '%1' Do you want to specify another directory? - Stop downloading - Stop downloading + Stop downloading + Pysäytä lataaminen - - + + Gui::StdCmdPythonHelp - Tools - Työkalut + Tools + Työkalut - Python Modules - Python-moduulit + Python Modules + Python-moduulit - Opens a browser to show the Python modules - Avaa selain nähdäksesi python-moduulit + Opens a browser to show the Python modules + Avaa selain nähdäksesi python-moduulit - - + + Gui::TaskBoxAngle - Angle - Angle + Angle + Angle - - + + Gui::TaskBoxPosition - Position - Sijainti + Position + Sijainti - - + + Gui::TaskView::TaskAppearance - Display mode: - Display mode: + Plot mode: + Plot mode: - Plot mode: - Plot mode: + Point size: + Pistekoko: - Point size: - Pistekoko: + Line width: + Viivan leveys: - Line width: - Viivan leveys: + Transparency: + Läpinäkyvyys: - Transparency: - Läpinäkyvyys: + Appearance + Ulkoasu - Appearance - Appearance + Document window: + Document window: - - Document window: - - - - + + Gui::TaskView::TaskEditControl - Edit - Muokkaa + Edit + Muokkaa - - + + Gui::TaskView::TaskSelectLinkProperty - Appearance - Appearance + Appearance + Ulkoasu - ... - ... + ... + ... - edit selection - edit selection + edit selection + edit selection - - + + Gui::TouchpadNavigationStyle - Press left mouse button - Paina hiiren vasenta painiketta + Press left mouse button + Paina hiiren vasenta painiketta - Press SHIFT button - + Press SHIFT button + Press SHIFT button - Press ALT button - + Press ALT button + Press ALT button - Press PgUp/PgDown button - + Press PgUp/PgDown button + Press PgUp/PgDown button - - - Gui::Translator - - English - English - - - + + Gui::TreeDockWidget - Tree view - Tree view + Tree view + Puunäkymä - - + + Gui::TreeWidget - Create group... - Create group... + Create group... + Luo ryhmä... - Create a group - Create a group + Create a group + Ryhmän luominen - Group - Ryhmä + Group + Ryhmä - Rename - Rename + Rename + Nimeä uudelleen - Rename object - Rename object + Rename object + Nimeä objekti uudelleen - Labels & Attributes - Labels & Attributes + Labels & Attributes + Otsikot & Määritteet - Application - Application + Application + Sovellus - Finish editing - Lopeta muokkaaminen + Finish editing + Lopeta muokkaaminen - Finish editing object - Lopeta objektin muokkaaminen + Finish editing object + Lopeta objektin muokkaaminen - Activate document - Aktivoi asiakirja + Activate document + Aktivoi asiakirja - Activate document %1 - Aktivoi asiakirja %1 + Activate document %1 + Aktivoi asiakirja %1 - - + + Gui::View3DInventor - Export PDF - Export PDF + Export PDF + Export PDF - PDF file (*.pdf) - PDF-tiedosto (*.pdf) + PDF file (*.pdf) + PDF-tiedosto (*.pdf) - - + + Gui::WorkbenchGroup - Select the '%1' workbench - Select the '%1' workbench + Select the '%1' workbench + Valitse '%1' Työpöytä - - + + Position - Form - Lomake + Form + Lomake - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - Z: + Z: + Z: - 0.1 mm - 0,1 mm + 0.1 mm + 0,1 mm - 0.5 mm - 0,5 mm + 0.5 mm + 0,5 mm - 1 mm - 1 mm + 1 mm + 1 mm - 2 mm - 2 mm + 2 mm + 2 mm - 5 mm - 5 mm + 5 mm + 5 mm - 10 mm - 10 mm + 10 mm + 10 mm - 20 mm - 20 mm + 20 mm + 20 mm - 50 mm - 50 mm + 50 mm + 50 mm - 100 mm - 100 mm + 100 mm + 100 mm - 200 mm - 200 mm + 200 mm + 200 mm - 500 mm - 500 mm + 500 mm + 500 mm - 1 m - 1 m + 1 m + 1 m - 2 m - 2 m + 2 m + 2 m - 5 m - 5 m + 5 m + 5 m - Grid Snap in - Grid Snap in + Grid Snap in + Grid Snap in - - + + QDockWidget - Tree view - Tree view + Tree view + Puunäkymä - Property view - Property view + Property view + Ominaisuudet näkymä - Selection view - Selection view + Selection view + Valinta Näytä - Report view - Report view + Report view + Raporttinäkymä - Task View - Task View + Task View + Tehtävänäkymä - Combo View - Combo View + Combo View + Combo View - Toolbox - Työkalut + Toolbox + Työkalut - Python console - Python-konsoli + Python console + Python-konsoli - Display properties - Näytön ominaisuudet + Display properties + Näytön ominaisuudet - - + + QObject - General - Yleiset + General + Yleiset - Display - Näyttö + Display + Näyttö - Unknown filetype - Unknown filetype + Unknown filetype + Tuntematon tiedostotyyppi - Cannot open unknown filetype: %1 - Cannot open unknown filetype: %1 + Cannot open unknown filetype: %1 + Ei voida avata tuntematonta tiedostotyyppiä:%1 - Cannot save to unknown filetype: %1 - Cannot save to unknown filetype: %1 + Cannot save to unknown filetype: %1 + Ei voi tallentaa tuntematonta tiedostotyyppiä:%1 - Workbench failure - Workbench failure + Workbench failure + Työpöytä häiriö - %1 - %1 + %1 + %1 - Unable to launch Qt Assistant (%1) - Unable to launch Qt Assistant (%1) + Unable to launch Qt Assistant (%1) + Ei voi käynnistää Qt avustajaa (%1) - Exception - Exception + Exception + Poikkeus - Open document - Open document + Open document + Avaa asiakirja - Import file - Import file + Import file + Tuo tiedosto - Export file - Export file + Export file + Vie tiedosto - Printing... - Tulostaminen... + Printing... + Tulostaminen... - Cannot load workbench - Cannot load workbench + Cannot load workbench + Ei voi ladata Työpöytää - A general error occurred while loading the workbench - A general error occurred while loading the workbench + A general error occurred while loading the workbench + Yleinen virhe ladattaessa työpöytää - File not found - Tiedostoa ei löydy + Save views... + Tallenna näkymät ... - Cannot open file %1 - Tiedoston %1 avaaminen epäonnistui + Load views... + Lataa näkymät... - Save views... - Tallenna näkymät ... + Freeze view + Jäädytä näkymä - Load views... - Lataa näkymät... + Clear views + Puhdista näkymät - Freeze view - Jäädytä näkymä + Restore view &%1 + Palauta näkymä &%1 - Clear views - Puhdista näkymät + Save frozen views + Jäädytettyjen näkymien tallentaminen - Restore view &%1 - Palauta näkymä &%1 + Frozen views (*.cam) + Jäädytetyt näkymät (*.cam) - Save frozen views - Jäädytettyjen näkymien tallentaminen + Restore views + Palauta näkymät - Frozen views (*.cam) - Jäädytetyt näkymät (*.cam) - - - Restore views - Palauta näkymät - - - Importing the restored views would clear the already stored views. + Importing the restored views would clear the already stored views. Do you want to continue? - Importing the restored views would clear the already stored views. + Importing the restored views would clear the already stored views. Do you want to continue? - Restore frozen views - Palauta jäädytetyt näkymät + Restore frozen views + Palauta jäädytetyt näkymät - Cannot open file '%1'. - Tiedostoa '%1' ei voi avata. + Cannot open file '%1'. + Tiedostoa '%1' ei voi avata. - Docked - Telakoitu + Docked + Telakoitu - Undocked - Irrallinen + Undocked + Irrallinen - Fullscreen - Kokoruututila + Fullscreen + Kokoruututila - files - tiedostot + files + tiedostot - Save picture - Tallenna kuva + Save picture + Tallenna kuva - New sub-group - Uusi alaryhmä + New sub-group + Uusi alaryhmä - Enter the name: - Kirjoita nimi: + Enter the name: + Kirjoita nimi: - New text item - Uusi kohdeteksti + New text item + Uusi kohdeteksti - Enter your text: - Kirjoita teksti: + Enter your text: + Kirjoita teksti: - New integer item - Uuden kokonaisluvun kohde + New integer item + Uuden kokonaisluvun kohde - Enter your number: - Syötä numero: + Enter your number: + Syötä numero: - New unsigned item - Uusi allekirjoittamaton kohde + New unsigned item + Uusi allekirjoittamaton kohde - New float item - Uuden sijainnin kohde + New float item + Uuden sijainnin kohde - New Boolean item - New Boolean item + New Boolean item + New Boolean item - Choose an item: - Valitse kohde: + Choose an item: + Valitse kohde: - Rename group - Nimeä ryhmä uudelleen + Rename group + Nimeä ryhmä uudelleen - The group '%1' cannot be renamed. - Ryhmää '%1' ei voi nimetä uudelleen. + The group '%1' cannot be renamed. + Ryhmää '%1' ei voi nimetä uudelleen. - Existing group - Aiemmin luotu ryhmä + Existing group + Aiemmin luotu ryhmä - The group '%1' already exists. - Ryhmä '%1' on jo olemassa. + The group '%1' already exists. + Ryhmä '%1' on jo olemassa. - Change value - Muuta arvoa + Change value + Muuta arvoa - Save document under new filename... - Tallenna asiakirja uudella tiedostonimellä... + Save document under new filename... + Tallenna asiakirja uudella tiedostonimellä... - Saving aborted - Tallentaminen keskeytettiin + Saving aborted + Tallentaminen keskeytettiin - Unsaved document - Tallentamaton asiakirja + Unsaved document + Tallentamaton asiakirja - Save document before close? - Tallennetaanko asiakirja ennen sulkemista? + Save document before close? + Tallennetaanko asiakirja ennen sulkemista? - Save Macro - Tallenna makro + Save Macro + Tallenna makro - Finish - Valmis + Finish + Valmis - Clear - Tyhjennä + Clear + Tyhjennä - Cancel - Peruuta + Cancel + Peruuta - Inner - Sisempi + Inner + Sisempi - Outer - Ulompi + Outer + Ulompi - No Browser - Ei selain + No Browser + Ei selain - Unable to open your browser. + Unable to open your browser. Please open a browser window and type in: http://localhost:%1. - Selaimen avaaminen ei onnistu. Avaa selainikkuna ja kirjoita: http://localhost:%1. + Selaimen avaaminen ei onnistu. Avaa selainikkuna ja kirjoita: http://localhost:%1. - No Server - Ei Serveriä + No Server + Ei Serveriä - Unable to start the server to port %1: %2. - Ei voitu käynnistää palvelimen porttia %1:%2. + Unable to start the server to port %1: %2. + Ei voitu käynnistää palvelimen porttia %1:%2. - Unable to open your system browser. - Järjestelmä-selaimen avaaminen ei onnistu. + Unable to open your system browser. + Järjestelmä-selaimen avaaminen ei onnistu. - Options... - Asetukset... + Options... + Asetukset... - Out of memory - Muisti loppui + Out of memory + Muisti loppui - Not enough memory available to display the data. - Muisti ei riitä tietojen näyttämiseen. + Not enough memory available to display the data. + Muisti ei riitä tietojen näyttämiseen. - Cannot find file %1 - Tiedostoa %1 ei löydy + Cannot find file %1 + Tiedostoa %1 ei löydy - Cannot find file %1 neither in %2 nor in %3 - Ei voida löytää tiedostoja %1, %2 ja %3 + Cannot find file %1 neither in %2 nor in %3 + Ei voida löytää tiedostoja %1, %2 ja %3 - Save %1 Document - Tallenna asiakirja %1 + Save %1 Document + Tallenna asiakirja %1 - %1 document (*.FCStd) - asiakirja %1 (*.FCStd) + %1 document (*.FCStd) + asiakirja %1 (*.FCStd) - Save As - Tallenna nimellä + Save As + Tallenna nimellä - %1 already exists. + %1 already exists. Do you want to replace it? - %1 on jo olemassa. Haluatko korvata sen? + %1 on jo olemassa. Haluatko korvata sen? - Document not closable - Asiakirja ei ole suljettavissa + Document not closable + Asiakirja ei ole suljettavissa - The document is not closable for the moment. - Asiakirja ei ole tällä hetkellä suljettavissa. + The document is not closable for the moment. + Asiakirja ei ole tällä hetkellä suljettavissa. - No OpenGL - Ei OpenGL + No OpenGL + Ei OpenGL - This system does not support OpenGL - Tämä järjestelmä ei tue OpenGL:ää + This system does not support OpenGL + Tämä järjestelmä ei tue OpenGL:ää - Help - Ohje + Help + Ohje - Unable to load documentation. + Unable to load documentation. In order to load it Qt 4.4 or higher is required. - Unable to load documentation. + Unable to load documentation. In order to load it Qt 4.4 or higher is required. - %1 Help - %1 Ohjeet + %1 Help + %1 Ohjeet - Exporting PDF... - PDF vienti... + Exporting PDF... + PDF vienti... - Wrong selection - Väärä valinta + Wrong selection + Väärä valinta - Only one object selected. Please select two objects. + Only one object selected. Please select two objects. Be aware the point where you click matters. - Only one object selected. Please select two objects. + Only one object selected. Please select two objects. Be aware the point where you click matters. - Please select two objects. + Please select two objects. Be aware the point where you click matters. - Please select two objects. + Please select two objects. Be aware the point where you click matters. - New boolean item - New boolean item + New boolean item + New boolean item - Navigation styles - Navigointi tyylit + Navigation styles + Navigointi tyylit - %1 navigation - %1 navigointi + %1 navigation + %1 navigointi - Move annotation - Move annotation + Move annotation + Move annotation - Transform - Transform + Transform + muunna - The document is in editing mode and thus cannot be closed for the moment. + The document is in editing mode and thus cannot be closed for the moment. You either have to finish or cancel the editing in the task panel. - The document is in editing mode and thus cannot be closed for the moment. + The document is in editing mode and thus cannot be closed for the moment. You either have to finish or cancel the editing in the task panel. - - + + StdBoxSelection - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Box selection - + Box selection + Box selection - - + + StdCmdAbout - Help - Ohje + Help + Ohje - &About %1 - &Tietoja %1 + &About %1 + &Tietoja %1 - About %1 - Tietoja %1 + About %1 + Tietoja %1 - - + + StdCmdAboutQt - Help - Ohje + Help + Ohje - About &Qt - Tietoja &Qt + About &Qt + Tietoja &Qt - About Qt - Tietoja Qt + About Qt + Tietoja Qt - - + + StdCmdActivateNextWindow - Window - Ikkuna + Window + Ikkuna - Ne&xt - Seur&aava + Ne&xt + Seur&aava - Activate next window - Aktivoi seuraava ikkuna + Activate next window + Aktivoi seuraava ikkuna - - + + StdCmdActivatePrevWindow - Window - Ikkuna + Window + Ikkuna - Pre&vious - Edell&inen + Pre&vious + Edell&inen - Activate previous window - Aktivoi edellinen ikkuna + Activate previous window + Aktivoi edellinen ikkuna - - + + StdCmdAlignment - Edit - Muokkaa + Edit + Muokkaa - Alignment... - + Alignment... + Alignment... - Align the selected objects - + Align the selected objects + Align the selected objects - - + + StdCmdArrangeIcons - Window - Ikkuna + Window + Ikkuna - Arrange &Icons - Järjestä &kuvakkeet + Arrange &Icons + Järjestä &kuvakkeet - Arrange Icons - Järjestä kuvakkeet + Arrange Icons + Järjestä kuvakkeet - - + + StdCmdAxisCross - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Toggle axis cross - Toggle axis cross + Toggle axis cross + Toggle axis cross - - + + StdCmdCascadeWindows - Window - Ikkuna + Window + Ikkuna - &Cascade - &Cascade + &Cascade + &Limittäin - Tile pragmatic - Tile pragmatic + Tile pragmatic + Tile pragmatic - - + + StdCmdCloseActiveWindow - Window - Ikkuna + Window + Ikkuna - Cl&ose - Sulje + Cl&ose + Sulje - Close active window - Sulje aktiivinen ikkuna + Close active window + Sulje aktiivinen ikkuna - - + + StdCmdCloseAllWindows - Window - Ikkuna + Window + Ikkuna - Close Al&l - Sulje kaikki + Close Al&l + Sulje kaikki - Close all windows - Sulje kaikki ikkunat + Close all windows + Sulje kaikki ikkunat - - + + StdCmdCommandLine - Tools - Työkalut + Tools + Työkalut - Start command &line... - Start command &line... + Start command &line... + Start command &line... - Opens the command line in the console - Avaa komentorivin konsolissa + Opens the command line in the console + Avaa komentorivin konsolissa - - + + StdCmdCopy - Edit - Muokkaa + Edit + Muokkaa - C&opy - C&opy + C&opy + C&opy - Copy operation - Kopiointi toiminto + Copy operation + Kopiointi toiminto - - + + StdCmdCut - Edit - Muokkaa + Edit + Muokkaa - &Cut - &Leikkaa + &Cut + &Leikkaa - Cut out - Leikata pois + Cut out + Leikata pois - - - StdCmdDDuplicateSelection - - Edit - Muokkaa - - - Duplicate selection - Moninkertainen valinta - - - Put duplicates of the selected objects to the active document - Put duplicates of the selected objects to the active document - - - + + StdCmdDelete - Edit - Muokkaa + Edit + Muokkaa - &Delete - &Poista + &Delete + &Poista - Deletes the selected objects - Poistaa valitut objektit + Deletes the selected objects + Poistaa valitut objektit - - + + StdCmdDemoMode - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - View turntable... - View turntable... + View turntable... + View turntable... - View turntable - View turntable + View turntable + View turntable - - + + StdCmdDlgCustomize - Tools - Työkalut + Tools + Työkalut - Cu&stomize... - Mukauta... + Cu&stomize... + Mukauta... - Customize toolbars and command bars - Customize toolbars and command bars + Customize toolbars and command bars + Mukauta työkalurivejä ja komentorivejä - - + + StdCmdDlgMacroExecute - Macros ... - Makrot ... + Macros ... + Makrot ... - Opens a dialog to let you execute a recorded macro - Opens a dialog to let you execute a recorded macro + Opens a dialog to let you execute a recorded macro + Näyttöön tulee valintaikkuna, jotta voit suorittaa nauhoitetun makron - Macro - Macro + Macro + Macro - - + + StdCmdDlgMacroExecuteDirect - Macro - Macro + Macro + Macro - Execute macro - Suorita makro + Execute macro + Suorita makro - Execute the macro in the editor - Suorittaa makron editorissa + Execute the macro in the editor + Suorittaa makron editorissa - - + + StdCmdDlgMacroRecord - &Macro recording ... - &Makron tallennus ... + &Macro recording ... + &Makron tallennus ... - Opens a dialog to record a macro - Avaa valintaikkunan tallennettavalle makrolle + Opens a dialog to record a macro + Avaa valintaikkunan tallennettavalle makrolle - Macro - Macro + Macro + Macro - - + + StdCmdDlgParameter - Tools - Työkalut + Tools + Työkalut - E&dit parameters ... - M&uokkaa parametrejä... + E&dit parameters ... + M&uokkaa parametrejä... - Opens a Dialog to edit the parameters - Opens a Dialog to edit the parameters + Opens a Dialog to edit the parameters + Opens a Dialog to edit the parameters - - + + StdCmdDlgPreferences - Tools - Työkalut + Tools + Työkalut - &Preferences ... - &Asetukset ... + &Preferences ... + &Asetukset ... - Opens a Dialog to edit the preferences - Opens a Dialog to edit the preferences + Opens a Dialog to edit the preferences + Opens a Dialog to edit the preferences - - + + StdCmdDockViewMenu - View - Näytä + View + Näytä - Vie&ws - Näky&mät + Vie&ws + Näky&mät - Toggles this window - Näytä tai piilota tämä ikkuna + Toggles this window + Näytä tai piilota tämä ikkuna - - + + StdCmdDrawStyle - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Draw style - Draw style + Draw style + Draw style - - + + StdCmdDuplicateSelection - Edit - Muokkaa + Edit + Muokkaa - Duplicate selection - Moninkertainen valinta + Duplicate selection + Moninkertainen valinta - Put duplicates of the selected objects to the active document - Put duplicates of the selected objects to the active document + Put duplicates of the selected objects to the active document + Put duplicates of the selected objects to the active document - - + + StdCmdEdit - Edit - Muokkaa + Edit + Muokkaa - Toggle &Edit mode - + Toggle &Edit mode + Toggle &Edit mode - Toggles the selected object's edit mode - + Toggles the selected object's edit mode + Toggles the selected object's edit mode - Enters or leaves the selected object's edit mode - + Enters or leaves the selected object's edit mode + Enters or leaves the selected object's edit mode - - + + StdCmdExport - File - File + File + Tiedosto - &Export... - &Export... + &Export... + &Vie... - Export an object in the active document - Export an object in the active document + Export an object in the active document + Export an object in the active document - Supported formats - Supported formats + No selection + Ei valintaa - No selection - + Please select first the objects you want to export. + Please select first the objects you want to export. - - Please select first the objects you want to export. - - - - + + StdCmdExportGraphviz - Tools - Työkalut + Tools + Työkalut - Dependency graph... - + Dependency graph... + Dependency graph... - Show the dependency graph of the objects in the active document - + Show the dependency graph of the objects in the active document + Show the dependency graph of the objects in the active document - - + + StdCmdFeatRecompute - File - File + File + Tiedosto - &Recompute - &Recompute + &Recompute + &Recompute - Recompute feature or document - Recompute feature or document + Recompute feature or document + Recompute feature or document - - + + StdCmdFreeCADWebsite - Help - Ohje + Help + Ohje - FreeCAD Website - FreeCAD Web-sivusto + FreeCAD Website + FreeCAD Web-sivusto - The FreeCAD website - FreeCAD-sivusto + The FreeCAD website + FreeCAD-sivusto - - + + StdCmdFreezeViews - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Freeze display - Näytön lukitseminen + Freeze display + Näytön lukitseminen - Freezes the current view position - Nykyisen näkymän sijainti jumittuu + Freezes the current view position + Nykyisen näkymän sijainti jumittuu - - + + StdCmdHideObjects - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Hide all objects - Piilota kaikki kohteet + Hide all objects + Piilota kaikki kohteet - Hide all objects in the document - Piilota kaikki objektit asiakirjassa + Hide all objects in the document + Piilota kaikki objektit asiakirjassa - - + + StdCmdHideSelection - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Hide selection - Piilota valinta + Hide selection + Piilota valinta - Hide all selected objects - Piilota kaikki valitut objektit + Hide all selected objects + Piilota kaikki valitut objektit - - + + StdCmdImport - File - File + File + Tiedosto - &Import... - &Tuo... + &Import... + &Tuo... - Import a file in the active document - Tuo tiedosto aktiiviseen asiakirjaan + Import a file in the active document + Tuo tiedosto aktiiviseen asiakirjaan - Supported formats - Supported formats + Supported formats + Supported formats - All files (*.*) - Kaikki tiedostot (*.*) + All files (*.*) + Kaikki tiedostot (*.*) - - + + StdCmdMacroStartDebug - Macro - Macro + Macro + Macro - Debug macro - Makron debuggaus + Debug macro + Makron debuggaus - Start debugging of macro - Aloita makron debuggaus + Start debugging of macro + Aloita makron debuggaus - - + + StdCmdMacroStepOver - Macro - Macro + Macro + Macro - Step over - Step over + Step over + Step over - - + + StdCmdMacroStopDebug - Macro - Macro + Macro + Macro - Stop debugging - Lopeta debuggaus + Stop debugging + Lopeta debuggaus - Stop debugging of macro - Lopeta makron debuggaus + Stop debugging of macro + Lopeta makron debuggaus - - + + StdCmdMacroStopRecord - Macro - Macro + Macro + Macro - S&top macro recording - P&ysäytä makron tallentaminen + S&top macro recording + P&ysäytä makron tallentaminen - Stop the macro recording session - Lopeta makro istunnon tallentaminen + Stop the macro recording session + Lopeta makro istunnon tallentaminen - - + + StdCmdMeasureDistance - View - Näytä + View + Näytä - Measure distance - Mittaa etäisyys + Measure distance + Mittaa etäisyys - - + + StdCmdMeasurementSimple - Tools - Työkalut + Tools + Työkalut - Mesure distance - Mittaa etäisyys + Measures distance between two selected objects + Mittaa etäisyys kahden valitun objektin välillä - Measures distance between two selected objects - Mittaa etäisyys kahden valitun objektin välillä + Measure distance + Mittaa etäisyys - - Measure distance - Mittaa etäisyys - - - + + StdCmdMergeProjects - File - File + File + Tiedosto - Merge project... - Merge project... + Merge project... + Merge project... - Merge project - Merge project + Merge project + Merge project - %1 document (*.fcstd) - %1 document (*.fcstd) + %1 document (*.fcstd) + %1 document (*.fcstd) - Cannot merge project with itself. - Cannot merge project with itself. + Cannot merge project with itself. + Cannot merge project with itself. - - + + StdCmdNew - File - File + File + Tiedosto - &New - &Uusi + &New + &Uusi - Create a new empty document - Luo uusi tyhjä dokumentti + Create a new empty document + Luo uusi tyhjä dokumentti - - + + StdCmdOnlineHelp - Help - Ohje + Help + Ohje - Show help to the application - Näytä ohje sovellukselle + Show help to the application + Näytä ohje sovellukselle - - - StdCmdOnlineHelpPython - - Help - Ohje - - - Python Manuals - Python Manuaalit - - - Show the Python documentation - Näytä python-asiakirjat - - - + + StdCmdOnlineHelpWebsite - Help - Ohje + Help + Ohje - Help Website - Ohje Web-sivusto + Help Website + Ohje Web-sivusto - The website where the help is maintained - Verkkosivusto, josta saat pääasiallisen avun + The website where the help is maintained + Verkkosivusto, josta saat pääasiallisen avun - - + + StdCmdOpen - File - File + File + Tiedosto - &Open... - &Avaa... + &Open... + &Avaa... - Open a document or import files - Avaa asiakirja tai tuo tiedostoja + Open a document or import files + Avaa asiakirja tai tuo tiedostoja - Supported formats - Supported formats + Supported formats + Supported formats - All files (*.*) - Kaikki tiedostot (*.*) + All files (*.*) + Kaikki tiedostot (*.*) - - + + StdCmdPaste - Edit - Muokkaa + Edit + Muokkaa - &Paste - &Liitä + &Paste + &Liitä - Paste operation - Liittämistoiminto + Paste operation + Liittämistoiminto - - + + StdCmdPlacement - Edit - Muokkaa + Edit + Muokkaa - Placement... - Sijainti... + Placement... + Sijainti... - Place the selected objects - Place the selected objects + Place the selected objects + Place the selected objects - - + + StdCmdPrint - File - File + File + Tiedosto - &Print... - &Tulostaa... + &Print... + &Tulostaa... - Print the document - Tulosta asiakirja + Print the document + Tulosta asiakirja - - + + StdCmdPrintPdf - File - File + File + Tiedosto - &Export PDF... - &Vie PDF-asiakirjaan... + &Export PDF... + &Vie PDF-asiakirjaan... - Export the document as PDF - Vie asiakirja PDF-tiedostona + Export the document as PDF + Vie asiakirja PDF-tiedostona - - + + StdCmdPrintPreview - File - File + File + Tiedosto - &Print preview... - &Print preview... + &Print preview... + &Print preview... - Print the document - Tulosta asiakirja + Print the document + Tulosta asiakirja - Print preview - Print preview + Print preview + Print preview - - + + StdCmdProjectInfo - File - File + File + Tiedosto - Project i&nformation... - Projektin t&iedot... + Project i&nformation... + Projektin t&iedot... - Show details of the currently active project - Näytä aktiivisen projektin tiedot + Show details of the currently active project + Näytä aktiivisen projektin tiedot - - + + StdCmdProjectUtil - Tools - Työkalut + Tools + Työkalut - Project utility... - Project utility... + Project utility... + Project utility... - Utility to extract or create project files - Utility to extract or create project files + Utility to extract or create project files + Utility to extract or create project files - - + + StdCmdPythonWebsite - Help - Ohje + Help + Ohje - Python Website - Python Web-sivusto + Python Website + Python Web-sivusto - The official Python website - The official Python website + The official Python website + The official Python website - - + + StdCmdQuit - File - File + File + Tiedosto - E&xit - L&opeta + E&xit + L&opeta - Quits the application - Lopeta sovellus + Quits the application + Lopeta sovellus - - + + StdCmdRandomColor - File - File + File + Tiedosto - Random color - Satunnainen väri + Random color + Satunnainen väri - - + + StdCmdRecentFiles - File - File + File + Tiedosto - Recent files - Viimeisimmät tiedostot + Recent files + Viimeisimmät tiedostot - Recent file list - Viimeksi käytettyjen tiedostojen luettelo + Recent file list + Viimeksi käytettyjen tiedostojen luettelo - - + + StdCmdRedo - Edit - Muokkaa + Edit + Muokkaa - &Redo - &Tee uudelleen + &Redo + &Tee uudelleen - Redoes a previously undone action - Tekee uudelleen viimeksi kumotun toiminnon + Redoes a previously undone action + Tekee uudelleen viimeksi kumotun toiminnon - - + + StdCmdRefresh - Edit - Muokkaa + Edit + Muokkaa - &Refresh - &Päivitä + &Refresh + &Päivitä - Recomputes the current active document - Recomputes the current active document + Recomputes the current active document + Recomputes the current active document - - + + StdCmdSave - File - File + File + Tiedosto - &Save - &Tallenna + &Save + &Tallenna - Save the active document - Tallenna aktiivinen asiakirja + Save the active document + Tallenna aktiivinen asiakirja - - + + StdCmdSaveAs - File - File + File + Tiedosto - Save &As... - Tallenna &nimellä... + Save &As... + Tallenna &nimellä... - Save the active document under a new file name - Tallentaa aktiivisen asiakirjan uudella tiedostonimellä + Save the active document under a new file name + Tallentaa aktiivisen asiakirjan uudella tiedostonimellä - - + + StdCmdSceneInspector - Tools - Työkalut + Tools + Työkalut - Scene inspector... - Scene inspector... + Scene inspector... + Scene inspector... - Scene inspector - Scene inspector + Scene inspector + Scene inspector - - + + StdCmdSelectAll - Edit - Muokkaa + Edit + Muokkaa - Select &All - Valitse &kaikki + Select &All + Valitse &kaikki - Select all - Valitse kaikki + Select all + Valitse kaikki - - + + StdCmdSetAppearance - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Appearance... - Ulkoasu... + Appearance... + Ulkoasu... - Sets the display properties of the selected object - Sets the display properties of the selected object + Sets the display properties of the selected object + Sets the display properties of the selected object - - + + StdCmdShowObjects - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Show all objects - Show all objects + Show all objects + Show all objects - Show all objects in the document - Show all objects in the document + Show all objects in the document + Show all objects in the document - - + + StdCmdShowSelection - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Show selection - Show selection + Show selection + Show selection - Show all selected objects - Show all selected objects + Show all selected objects + Show all selected objects - - + + StdCmdStatusBar - View - Näytä + View + Näytä - Status bar - Status bar + Status bar + Status bar - Toggles the status bar - Toggles the status bar + Toggles the status bar + Toggles the status bar - - + + StdCmdTextureMapping - Tools - Työkalut + Tools + Työkalut - Texture mapping... - Texture mapping... + Texture mapping... + Texture mapping... - Texture mapping - Texture mapping + Texture mapping + Texture mapping - - + + StdCmdTileWindows - Window - Ikkuna + Window + Ikkuna - &Tile - &Tile + &Tile + &Tile - Tile the windows - Tile the windows + Tile the windows + Tile the windows - - + + StdCmdToggleBreakpoint - Macro - Macro + Macro + Macro - Toggle breakpoint - Toggle breakpoint + Toggle breakpoint + Toggle breakpoint - - + + StdCmdToggleClipPlane - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Clipping plane - Clipping plane + Clipping plane + Clipping plane - Toggles clipping plane for active view - Toggles clipping plane for active view + Toggles clipping plane for active view + Toggles clipping plane for active view - - + + StdCmdToggleNavigation - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Toggle navigation/Edit mode - Toggle navigation/Edit mode + Toggle navigation/Edit mode + Toggle navigation/Edit mode - Toggle between navigation and edit mode - Toggle between navigation and edit mode + Toggle between navigation and edit mode + Toggle between navigation and edit mode - - + + StdCmdToggleObjects - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Toggle all objects - Toggle all objects + Toggle all objects + Toggle all objects - Toggles visibility of all objects in the active document - Toggles visibility of all objects in the active document + Toggles visibility of all objects in the active document + Toggles visibility of all objects in the active document - - + + StdCmdToggleSelectability - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Toggle selectability - Toggle selectability + Toggle selectability + Toggle selectability - Toggles the property of the objects to get selected in the 3D-View - Toggles the property of the objects to get selected in the 3D-View + Toggles the property of the objects to get selected in the 3D-View + Toggles the property of the objects to get selected in the 3D-View - - + + StdCmdToggleVisibility - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Toggle visibility - Toggle visibility + Toggle visibility + Toggle visibility - Toggles visibility - Toggles visibility + Toggles visibility + Toggles visibility - - + + StdCmdToolBarMenu - View - Näytä + View + Näytä - Tool&bars - Tool&bars + Tool&bars + Tool&bars - Toggles this window - Näytä tai piilota tämä ikkuna + Toggles this window + Näytä tai piilota tämä ikkuna - - + + StdCmdTransform - Edit - Muokkaa + Edit + Muokkaa - Transform... - Transform... + Transform... + Transform... - Transform the geometry of selected objects - Transform the geometry of selected objects + Transform the geometry of selected objects + Transform the geometry of selected objects - - + + StdCmdTreeSelection - View - Näytä + View + Näytä - Go to selection - Go to selection + Go to selection + Go to selection - Scroll to first selected item - Scroll to first selected item + Scroll to first selected item + Scroll to first selected item - - + + StdCmdUndo - Edit - Muokkaa + Edit + Muokkaa - &Undo - &Undo + &Undo + &Kumoa - Undo exactly one action - Undo exactly one action + Undo exactly one action + Undo exactly one action - - + + StdCmdUserInterface - View - Näytä + View + Näytä - Dock views - Dock views + Dock views + Dock views - Dock all top-level views - Dock all top-level views + Dock all top-level views + Dock all top-level views - - + + StdCmdViewAxo - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Axometric - Axometric + Axometric + Axometric - Set to axometric view - Set to axometric view + Set to axometric view + Set to axometric view - - + + StdCmdViewBottom - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Bottom - Bottom + Bottom + Bottom - Set to bottom view - Aseta pohjan tarkastelu näkymä + Set to bottom view + Aseta pohjan tarkastelu näkymä - - + + StdCmdViewCreate - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Create new view - Luo uusi näkymä + Create new view + Luo uusi näkymä - Creates a new view window for the active document - Creates a new view window for the active document + Creates a new view window for the active document + Creates a new view window for the active document - - + + StdCmdViewExample1 - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Inventor example #1 - Inventor example #1 + Inventor example #1 + Inventor example #1 - Shows a 3D texture with manipulator - Shows a 3D texture with manipulator + Shows a 3D texture with manipulator + Shows a 3D texture with manipulator - - + + StdCmdViewExample2 - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Inventor example #2 - Inventor example #2 + Inventor example #2 + Inventor example #2 - Shows spheres and drag-lights - Shows spheres and drag-lights + Shows spheres and drag-lights + Shows spheres and drag-lights - - + + StdCmdViewExample3 - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Inventor example #3 - Inventor example #3 + Inventor example #3 + Inventor example #3 - Shows a animated texture - Shows a animated texture + Shows a animated texture + Shows a animated texture - - + + StdCmdViewFitAll - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Fit all - Fit all + Fit all + Fit all - Fits the whole content on the screen - Fits the whole content on the screen + Fits the whole content on the screen + Fits the whole content on the screen - - + + StdCmdViewFitSelection - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Fit selection - Sovita valinta + Fit selection + Sovita valinta - Fits the selected content on the screen - Fits the selected content on the screen + Fits the selected content on the screen + Fits the selected content on the screen - - + + StdCmdViewFront - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Front - Etupuoli + Front + Etupuoli - Set to front view - Aseta näkymä edestäpäin + Set to front view + Aseta näkymä edestäpäin - - + + StdCmdViewIvIssueCamPos - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Issue camera position - Issue camera position + Issue camera position + Issue camera position - Issue the camera position to the console and to a macro, to easily recall this position - Issue the camera position to the console and to a macro, to easily recall this position + Issue the camera position to the console and to a macro, to easily recall this position + Issue the camera position to the console and to a macro, to easily recall this position - - + + StdCmdViewIvStereoInterleavedColumns - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Stereo Interleaved Columns - Stereo Interleaved Columns + Stereo Interleaved Columns + Stereo Interleaved Columns - Switch stereo viewing to Interleaved Columns - Switch stereo viewing to Interleaved Columns + Switch stereo viewing to Interleaved Columns + Switch stereo viewing to Interleaved Columns - - + + StdCmdViewIvStereoInterleavedRows - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Stereo Interleaved Rows - Stereo Interleaved Rows + Stereo Interleaved Rows + Stereo Interleaved Rows - Switch stereo viewing to Interleaved Rows - Switch stereo viewing to Interleaved Rows + Switch stereo viewing to Interleaved Rows + Switch stereo viewing to Interleaved Rows - - + + StdCmdViewIvStereoOff - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Stereo Off - Stereo Off + Stereo Off + Stereo Off - Switch stereo viewing off - Switch stereo viewing off + Switch stereo viewing off + Switch stereo viewing off - - + + StdCmdViewIvStereoQuadBuff - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Stereo quad buffer - Stereo quad buffer + Stereo quad buffer + Stereo quad buffer - Switch stereo viewing to quad buffer - Switch stereo viewing to quad buffer + Switch stereo viewing to quad buffer + Switch stereo viewing to quad buffer - - + + StdCmdViewIvStereoRedGreen - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Stereo red/green - Stereo red/green + Stereo red/green + Stereo red/green - Switch stereo viewing to red/green - Switch stereo viewing to red/green + Switch stereo viewing to red/green + Switch stereo viewing to red/green - - + + StdCmdViewLeft - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Left - Vasen + Left + Vasen - Set to left view - Aseta vasemmanpuoleinen näkymä + Set to left view + Aseta vasemmanpuoleinen näkymä - - + + StdCmdViewRear - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Rear - Takana + Rear + Takana - Set to rear view - Aseta Taustakamera + Set to rear view + Aseta Taustakamera - - + + StdCmdViewRight - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Right - Oikea + Right + Oikea - Set to right view - Aseta oikea näkymä + Set to right view + Aseta oikea näkymä - - + + StdCmdViewRotateLeft - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Rotate Left - + Rotate Left + Rotate Left - Rotate the view by 90° counter-clockwise - + Rotate the view by 90° counter-clockwise + Rotate the view by 90° counter-clockwise - - + + StdCmdViewRotateRight - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Rotate Right - + Rotate Right + Rotate Right - Rotate the view by 90° clockwise - + Rotate the view by 90° clockwise + Rotate the view by 90° clockwise - - + + StdCmdViewTop - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Top - Yläpuoli + Top + Yläpuoli - Set to top view - Aseta yläpuolen näkymä + Set to top view + Aseta yläpuolen näkymä - - + + StdCmdWhatsThis - Help - Ohje + Help + Ohje - &What's This? - &Mikä tämä on? + &What's This? + &Mikä tämä on? - What's This - Mikä tämä on + What's This + Mikä tämä on - - + + StdCmdWindows - Window - Ikkuna + Window + Ikkuna - &Windows... - &Ikkunat... + &Windows... + &Ikkunat... - Windows list - Lista ikkunoista + Windows list + Lista ikkunoista - - + + StdCmdWindowsMenu - Window - Ikkuna + Window + Ikkuna - Activates this window - Aktivoi tämä ikkuna + Activates this window + Aktivoi tämä ikkuna - - + + StdCmdWorkbench - View - Näytä + View + Näytä - Workbench - Workbench + Workbench + Workbench - Switch between workbenches - Switch between workbenches + Switch between workbenches + Switch between workbenches - - + + StdOrthographicCamera - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Orthographic view - Orthographic view + Orthographic view + Orthographic view - Switches to orthographic view mode - Switches to orthographic view mode + Switches to orthographic view mode + Switches to orthographic view mode - - + + StdPerspectiveCamera - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Perspective view - Perspektiivinäkymä + Perspective view + Perspektiivinäkymä - Switches to perspective view mode - Vaihtaa perspektiivinäkymään + Switches to perspective view mode + Vaihtaa perspektiivinäkymään - - + + StdViewBoxZoom - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Box zoom - Valitun alueen zoomaus + Box zoom + Valitun alueen zoomaus - - + + StdViewDockUndockFullscreen - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Document window - Asiakirjan ikkuna + Document window + Document window - Display the active view either in fullscreen, in undocked or docked mode - Display the active view either in fullscreen, in undocked or docked mode + Display the active view either in fullscreen, in undocked or docked mode + Display the active view either in fullscreen, in undocked or docked mode - - + + StdViewScreenShot - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Save picture... - Tallenna kuva... + Save picture... + Tallenna kuva... - Creates a screenshot of the active view - Luo kuvakaappaus aktiivisesta näkymästä + Creates a screenshot of the active view + Luo kuvakaappaus aktiivisesta näkymästä - - + + StdViewZoomIn - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Zoom In - Suurenna + Zoom In + Suurenna - - + + StdViewZoomOut - Standard-View - Standardi-Näkymä + Standard-View + Standardi-Näkymä - Zoom Out - Loitonna + Zoom Out + Loitonna - - + + Std_DrawStyle - As is - As is + As is + As is - Normal mode - Normal mode + Normal mode + Normal mode - Wireframe - Wireframe + Wireframe + Wireframe - Wireframe mode - Wireframe mode + Wireframe mode + Wireframe mode - - + + Std_ExportGraphviz - Graphviz not found - + Graphviz not found + Graphviz not found - Graphviz couldn't be found on your system. -Do you want to specify its installation path if it's already installed? - + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? - Graphviz installation path - + Graphviz installation path + Graphviz installation path - Dependency graph - + Dependency graph + Dependency graph - Graphviz failed - + Graphviz failed + Graphviz failed - Graphviz failed to create an image file - + Graphviz failed to create an image file + Graphviz failed to create an image file - - + + Workbench - &File - &Tiedosto + &File + &Tiedosto - &Edit - &Muokkaa + &Edit + &Muokkaa - Standard views - Standardi näkymät + Standard views + Standardi näkymät - &Stereo - &Stereo + &Stereo + &Stereo - &Zoom - &Zoom + &Zoom + &Zoom - Visibility - Näkyvyys + Visibility + Näkyvyys - &View - &Näytä + &View + &Näytä - &Tools - &Tools + &Tools + &Tools - &Macro - &Macro + &Macro + &Macro - &Windows - &Windows + &Windows + &Windows - &On-line help - &On-line help + &On-line help + &On-line help - &Help - &Ohje + &Help + &Ohje - File - File + File + Tiedosto - Macro - Macro + Macro + Macro - View - Näytä + View + Näytä - Special Ops - Special Ops + Special Ops + Special Ops - - + + testClass - test - testi + test + testi - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - Choose the style of the Task Panel - Valitse tehtävä-paneelin tyyli + Choose the style of the Task Panel + Valitse tehtävä-paneelin tyyli - Default - Oletus + Default + Oletus - Windows XP - Windows XP + Windows XP + Windows XP - + diff --git a/src/Gui/Language/FreeCAD_fr.qm b/src/Gui/Language/FreeCAD_fr.qm index b4c2a7de8..c760ab870 100644 Binary files a/src/Gui/Language/FreeCAD_fr.qm and b/src/Gui/Language/FreeCAD_fr.qm differ diff --git a/src/Gui/Language/FreeCAD_fr.ts b/src/Gui/Language/FreeCAD_fr.ts index 62ed9e6ed..f96a41913 100644 --- a/src/Gui/Language/FreeCAD_fr.ts +++ b/src/Gui/Language/FreeCAD_fr.ts @@ -1,5908 +1,5835 @@ - - + + Angle - Form - Forme + Form + Forme - A: - A: + A: + A: - B: - B: + B: + B: - C: - C: + C: + C: - Angle Snap - Angle d'accrochage + Angle Snap + Angle d'accrochage - - 1 ° - + + 1 ° + - - 2 ° - + + 2 ° + - - 5 ° - + + 5 ° + - - 10 ° - 10° + + 10 ° + 10° - - 20 ° - 20° + + 20 ° + 20° - - 45 ° - 45° + + 45 ° + 45° - - 90 ° - 90° + + 90 ° + 90° - - 180 ° - 180° + + 180 ° + 180° - - + + Gui::AccelLineEdit - none - aucun + none + aucun - - + + Gui::ActionSelector - Available: - + Available: + Disponible: - Selected: - + Selected: + Sélectionné: - Add - Ajouter + Add + Ajouter - Remove - Enlever + Remove + Enlever - Move up - Déplacer vers le haut + Move up + Déplacer vers le haut - Move down - Déplacer vers le bas + Move down + Déplacer vers le bas - - + + Gui::AlignmentView - Movable object - + Movable object + Objet déplaçable - Fixed object - + Fixed object + Objet fixe - - + + Gui::BlenderNavigationStyle - Press left mouse button - Appuyez sur le bouton gauche de la souris + Press left mouse button + Appuyez sur le bouton gauche de la souris - Press SHIFT and middle mouse button - Appuyez sur Maj et le bouton du milieu de la souris + Press SHIFT and middle mouse button + Appuyez sur Maj et le bouton du milieu de la souris - Press middle mouse button - Appuyez sur le bouton central de la souris + Press middle mouse button + Appuyez sur le bouton central de la souris - Scroll middle mouse button - Faites défiler le bouton milieu de la souris + Scroll middle mouse button + Faites défiler le bouton milieu de la souris - - + + Gui::CADNavigationStyle - Press left mouse button - Appuyez sur le bouton gauche de la souris + Press left mouse button + Appuyez sur le bouton gauche de la souris - Press middle mouse button - Appuyez sur le bouton central de la souris + Press middle mouse button + Appuyez sur le bouton central de la souris - Press left and middle mouse button - Appuyez sur le bouton gauche et le bouton central + Press left and middle mouse button + Appuyez sur le bouton gauche et le bouton central - Scroll middle mouse button - Faites défiler le bouton milieu de la souris + Scroll middle mouse button + Faites défiler le bouton milieu de la souris - - + + Gui::Command - Standard - Standard + Standard + Standard - - + + Gui::ContainerDialog - &OK - &OK + &OK + &OK - &Cancel - &Annuler + &Cancel + &Annuler - - + + Gui::ControlSingleton - Task panel - Panneau de Tâches + Task panel + Panneau de Tâches - - + + Gui::Dialog::AboutApplication - About - À propos + About + À propos - Revision number - Numéro de révision + Revision number + Numéro de révision - Version - Version + Version + Version - OK - OK + OK + OK - - Texte source + + Texte source - Release date - Date de publication + Release date + Date de publication - Platform - Plate-forme + Platform + Plate-forme - License... - Licence... + License... + Licence... - Copy to clipboard - + Copy to clipboard + Copier dans le Presse-papiers - - + + Gui::Dialog::ButtonModel - Button %1 - Bouton %1 + Button %1 + Bouton %1 - Out Of Range - Hors de portée + Out Of Range + Hors de portée - - + + Gui::Dialog::CommandModel - Commands - Commandes + Commands + Commandes - - + + Gui::Dialog::DemoMode - View Turntable - Vue en rotation + View Turntable + Vue en rotation - Speed - Vitesse + Speed + Vitesse - Maximum - Maximum + Maximum + Maximum - Minimum - Minimum + Minimum + Minimum - Fullscreen - Plein écran + Fullscreen + Plein écran - Enable timer - Activer la minuterie + Enable timer + Activer la minuterie - s - s + s + s - Angle - Angle - - - 90° - 90° - - - -90° - -90° + Angle + Angle - Play - Exécuter + 90° + 90° - Stop - Arrêter + -90° + -90° - Close - Fermer + Play + Exécuter - - + + Stop + Arrêter + + + Close + Fermer + + + Gui::Dialog::DlgActivateWindow - Choose Window - Choisir la fenêtre + Choose Window + Choisir la fenêtre - &Activate - &Activer + &Activate + &Activer - Alt+A - Alt+A + Alt+A + Alt+A - &Cancel - &Annuler + &Cancel + &Annuler - - Texte source + + Texte source - - + + Gui::Dialog::DlgActivateWindowImp - Windows - Fenêtres + Windows + Fenêtres - - + + Gui::Dialog::DlgAuthorization - Authorization - Autorisation + Authorization + Autorisation - &OK - &OK + &OK + &OK - &Cancel - &Annuler + &Cancel + &Annuler - Password: - Mot de passe : + Password: + Mot de passe : - User name: - Nom d'utilisateur : + User name: + Nom d'utilisateur : - - Texte source + + Texte source - - + + Gui::Dialog::DlgChooseIcon - Choose Icon - Choisir l'icône + Choose Icon + Choisir l'icône - OK - OK + OK + OK - Cancel - Annuler + Cancel + Annuler - Add icons... - Ajouter des icônes... + Add icons... + Ajouter des icônes... - - + + Gui::Dialog::DlgCustomActions - Macros - Macros + Macros + Macros - Setup Custom Macros - Installer des macros personnalisées + Setup Custom Macros + Installer des macros personnalisées - Macro: - Macro : + Macro: + Macro : - ... - ... + ... + ... - Pixmap - Pixmap + Pixmap + Pixmap - Accelerator: - Accélérateur: + Accelerator: + Accélérateur: - What's this: - Qu'est ce que c'est : + What's this: + Qu'est ce que c'est : - Status text: - Texte d'état: + Status text: + Texte d'état: - Tool tip: - infobulle + Tool tip: + infobulle - Menu text: - Texte menu : + Menu text: + Texte menu : - Add - Ajouter + Add + Ajouter - Remove - Enlever + Remove + Enlever - Replace - Remplacer + Replace + Remplacer - - + + Gui::Dialog::DlgCustomActionsImp - Icons - Icônes + Icons + Icônes - Macros - Macros + Macros + Macros - No macro - Aucune macro + No macro + Aucune macro - No macros found. - Aucune macro trouvée. + No macros found. + Aucune macro trouvée. - Macro not found - Macro non trouvée + Macro not found + Macro non trouvée - Sorry, couldn't find macro file '%1'. - Désolé, impossible de trouver le fichier macro '%1'. + Sorry, couldn't find macro file '%1'. + Désolé, impossible de trouver le fichier macro '%1'. - Empty macro - Macro vide + Empty macro + Macro vide - Please specify the macro first. - Veuillez d'abord spécifier la macro. + Please specify the macro first. + Veuillez d'abord spécifier la macro. - Empty text - Texte vide + Empty text + Texte vide - Please specify the menu text first. - Veuillez d'abord spécifier le texte du menu. + Please specify the menu text first. + Veuillez d'abord spécifier le texte du menu. - No item selected - Aucun élément sélectionné + No item selected + Aucun élément sélectionné - Please select a macro item first. - Veuillez d'abord sélectionner un élément de macro. + Please select a macro item first. + Veuillez d'abord sélectionner un élément de macro. - - + + Gui::Dialog::DlgCustomCommands - Commands - Commandes + Commands + Commandes - - Texte source + + Texte source - - + + Gui::Dialog::DlgCustomCommandsImp - Category - Catégorie + Category + Catégorie - Icon - Icône + Icon + Icône - Command - Commande + Command + Commande - - + + Gui::Dialog::DlgCustomKeyboard - Keyboard - Clavier + Keyboard + Clavier - Description: - Description : + Description: + Description : - &Category: - &Catégorie : + &Category: + &Catégorie : - C&ommands: - C&ommandes : + C&ommands: + C&ommandes : - Current shortcut: - Raccourci actuel : + Current shortcut: + Raccourci actuel : - Press &new shortcut: - Appuyez &sur le nouveau raccourci : + Press &new shortcut: + Appuyez &sur le nouveau raccourci : - Currently assigned to: - Actuellement attribué à : + Currently assigned to: + Actuellement attribué à : - &Assign - &Attribuer + &Assign + &Attribuer - Alt+A - Alt+A + Alt+A + Alt+A - &Reset - &Réinitialiser + &Reset + &Réinitialiser - Alt+R - Alt+R + Alt+R + Alt+R - Re&set All - Tout réinitiali&ser + Re&set All + Tout réinitiali&ser - Alt+S - Alt+M + Alt+S + Alt+M - - Texte source + + Texte source - - + + Gui::Dialog::DlgCustomKeyboardImp - Icon - Icône + Icon + Icône - Command - Commande + Command + Commande - none - aucun + none + aucun - Multiple defined shortcut - Raccourci défini plusieurs fois + Multiple defined shortcut + Raccourci défini plusieurs fois - The shortcut '%1' is defined more than once. This could result into unexpected behaviour. - Le raccourci '%1' est défini plus d'une fois. Il pourrait en résulter un comportement inattendu. + The shortcut '%1' is defined more than once. This could result into unexpected behaviour. + Le raccourci '%1' est défini plus d'une fois. Il pourrait en résulter un comportement inattendu. - Already defined shortcut - Raccourci déjà défini + Already defined shortcut + Raccourci déjà défini - The shortcut '%1' is already assigned to '%2'. + The shortcut '%1' is already assigned to '%2'. Please define another shortcut. - Le raccourci '%1' est déjà attribué à '%2'. + Le raccourci '%1' est déjà attribué à '%2'. Veuillez définir un autre raccourci. - - + + Gui::Dialog::DlgCustomToolBoxbarsImp - Toolbox bars - Barres des boîtes à outils + Toolbox bars + Barres des boîtes à outils - - + + Gui::Dialog::DlgCustomToolbars - Toolbars - Barre d'outils + Toolbars + Barre d'outils - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> Les changements seront pris en charge lors du prochain chargement de l'atelier approprié</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> Les changements seront pris en charge lors du prochain chargement de l'atelier approprié</p></body></html> - Move right - Déplacer vers la droite + Move right + Déplacer vers la droite - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Descendre l'élément sélectionné d'un niveau.</b><p>Cela changera aussi le niveau de l'élément parent.</p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Descendre l'élément sélectionné d'un niveau.</b><p>Cela changera aussi le niveau de l'élément parent.</p> - Move left - Déplacer vers la gauche + Move left + Déplacer vers la gauche - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Monter l'élément sélectionné d'un niveau.</b><p>Cela changera aussi le niveau de l'élément parent.</p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Monter l'élément sélectionné d'un niveau.</b><p>Cela changera aussi le niveau de l'élément parent.</p> - Move down - Déplacer vers le bas + Move down + Déplacer vers le bas - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Descendre l'élément sélectionné d'un niveau.</b><p>L'élément sera déplacé au sein du niveau de hiérarchie.</p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Descendre l'élément sélectionné d'un niveau.</b><p>L'élément sera déplacé au sein du niveau de hiérarchie.</p> - Move up - Déplacer vers le haut + Move up + Déplacer vers le haut - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Monter l'élément sélectionné d'un niveau.</b><p>L'élément sera déplacé au sein du niveau de hiérarchie.</p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Monter l'élément sélectionné d'un niveau.</b><p>L'élément sera déplacé au sein du niveau de hiérarchie.</p> - New... - Nouveau... + New... + Nouveau... - Rename... - Renommer... + Rename... + Renommer... - Delete - Supprimer + Delete + Supprimer - Icon - Icône + Icon + Icône - Command - Commande + Command + Commande - <Separator> - <Séparateur> + <Separator> + <Séparateur> - New toolbar - Nouvelle barre d'outils + New toolbar + Nouvelle barre d'outils - Toolbar name: - Nom de la barre d'outils : + Toolbar name: + Nom de la barre d'outils : - Duplicated name - Nom dupliqué + Duplicated name + Nom dupliqué - The toolbar name '%1' is already used - Le nom de barre d'outils '%1' est déjà utilisé + The toolbar name '%1' is already used + Le nom de barre d'outils '%1' est déjà utilisé - Rename toolbar - Renommer la barre d'outils + Rename toolbar + Renommer la barre d'outils - - Texte source + + Texte source - - + + Gui::Dialog::DlgCustomizeImp - Customize - Personnaliser + Customize + Personnaliser - &Help - &Aide + &Help + &Aide - &Close - &Fermer + &Close + &Fermer - - + + Gui::Dialog::DlgCustomizeSpaceball - Spaceball - SpaceBall + Spaceball + SpaceBall - No Spaceball Present - Aucun Spaceball trouvé + No Spaceball Present + Aucun Spaceball trouvé - Buttons - Boutons + Buttons + Boutons - Clear - Effacer + Clear + Effacer - Print Reference - Imprimer les références + Print Reference + Imprimer les références - - + + Gui::Dialog::DlgDisplayProperties - Display properties - Propriétés d'affichage + Display properties + Propriétés d'affichage - Display - Affichage + Display + Affichage - Transparency: - Transparence : + Transparency: + Transparence : - Line width: - Épaisseur de ligne : + Line width: + Épaisseur de ligne : - Point size: - Taille de point : + Point size: + Taille de point : - Material - Matériau + Material + Matériau - ... - ... + ... + ... - Close - Fermer + Close + Fermer - Viewing mode - Mode d'affichage + Viewing mode + Mode d'affichage - Display mode: - Mode d'affichage : + Plot mode: + Mode de tracé : - Plot mode: - Mode de tracé : + + Texte source - - Texte source + Line transparency: + Transparence de trait : - Line transparency: - Transparence de trait : + Line color: + Couleur de trait : - Line color: - Couleur de trait : + Shape color: + Couleur de la forme : - Shape color: - Couleur de la forme : + Color plot: + Diagramme de couleur : - Color plot: - Diagramme de couleur : + Document window: + Fenêtre de document: - - Document window: - - - - + + Gui::Dialog::DlgEditorSettings - Editor - Éditeur + Editor + Éditeur - Options - Options + Options + Options - Enable line numbers - Activer la numérotation des lignes + Enable line numbers + Activer la numérotation des lignes - Enable folding - Activer le pliage + Enable folding + Activer le pliage - Indentation - Retrait + Indentation + Retrait - Insert spaces - Insérer des espaces + Insert spaces + Insérer des espaces - Tab size: - Taille des tabulations : + Tab size: + Taille des tabulations : - Indent size: - Taille de retrait : + Indent size: + Taille de retrait : - Keep tabs - Garder les tabulations + Keep tabs + Garder les tabulations - Display Items - Éléments d'affichage + Display Items + Éléments d'affichage - Family: - Police : + Family: + Police : - Size: - Taille : + Size: + Taille : - Preview: - Aperçu : + Preview: + Aperçu : - - Texte source + + Texte source - - + + Gui::Dialog::DlgGeneral - General - Général + General + Général - Start up - Démarrage + Start up + Démarrage - Enable splash screen at start up - Activer la page de garde au démarrage + Enable splash screen at start up + Activer la page de garde au démarrage - Switch to tab of report window: - Basculer vers l'onglet de la fenêtre de rapport : + Switch to tab of report window: + Basculer vers l'onglet de la fenêtre de rapport : - Auto load module after start up: - Charger automatiquement le module après le démarrage : + Auto load module after start up: + Charger automatiquement le module après le démarrage : - Language - Langue + Language + Langue - Change language: - Changer la langue : + Change language: + Changer la langue : - Main window - Fenêtre principale + Main window + Fenêtre principale - Size of recent file list - Taille de la liste des fichiers récents + Size of recent file list + Taille de la liste des fichiers récents - Window style: - Style de fenêtre : + Window style: + Style de fenêtre : - Size of toolbar icons: - Taille des icônes de la barre d'outils : + Size of toolbar icons: + Taille des icônes de la barre d'outils : - - + + Gui::Dialog::DlgGeneralImp - Default (%1 x %1) - Défaut (%1 x %1) + Default (%1 x %1) + Défaut (%1 x %1) - Small (%1 x %1) - Petit (%1 x %1) + Small (%1 x %1) + Petit (%1 x %1) - Large (%1 x %1) - Grand (%1 x %1) + Large (%1 x %1) + Grand (%1 x %1) - Extra large (%1 x %1) - Très grand (%1 x %1) + Extra large (%1 x %1) + Très grand (%1 x %1) - - + + Gui::Dialog::DlgInputDialog - Input - Saisie + Input + Saisie - OK - OK + OK + OK - Cancel - Annuler + Cancel + Annuler - - Texte source + + Texte source - - + + Gui::Dialog::DlgInspector - Scene Inspector - Inspecteur de scène + Scene Inspector + Inspecteur de scène - - + + Gui::Dialog::DlgMacroExecute - Execute macro - Lancer la macro + Execute macro + Lancer la macro - Macro name: - Nom de la macro : + Macro name: + Nom de la macro : - Macro destination: - Destination de la macro : + Macro destination: + Destination de la macro : - Execute - Lancer + Execute + Lancer - Close - Fermer + Close + Fermer - Create - Créer + Create + Créer - Delete - Supprimer + Delete + Supprimer - Edit - Éditer + Edit + Éditer - - + + Gui::Dialog::DlgMacroExecuteImp - Macros - Macros + Macros + Macros - Macro file - Fichier de macro + Macro file + Fichier de macro - Enter a file name, please: - Veuillez saisir un nom de fichier : + Enter a file name, please: + Veuillez saisir un nom de fichier : - Existing file - Fichier existant + Existing file + Fichier existant - '%1'. + '%1'. This file already exists. - '%1'. Ce fichier existe déjà. + '%1'. Ce fichier existe déjà. - Delete macro - Supprimer la macro + Delete macro + Supprimer la macro - Do you really want to delete the macro '%1'? - Voulez-vous vraiment supprimer la macro '% 1' ? + Do you really want to delete the macro '%1'? + Voulez-vous vraiment supprimer la macro '% 1' ? - Cannot create file - Impossible de créer le fichier + Cannot create file + Impossible de créer le fichier - Creation of file '%1' failed. - Échec de la création du fichier « %1 ». + Creation of file '%1' failed. + Échec de la création du fichier « %1 ». - - + + Gui::Dialog::DlgMacroRecord - Macro recording - Enregistrement d'une macro + Macro recording + Enregistrement d'une macro - Macro name: - Nom de la macro : + Macro name: + Nom de la macro : - Stop - Arrêter + Stop + Arrêter - Cancel - Annuler + Cancel + Annuler - Macro path: - Chemin de la macro : + Macro path: + Chemin de la macro : - ... - ... + ... + ... - Record - Enregistrer + Record + Enregistrer - - + + Gui::Dialog::DlgMacroRecordImp - Macro recorder - Enregistreur de macro + Macro recorder + Enregistreur de macro - Specify first a place to save. - Spécifiez d'abord une destination de sauvegarde. + Specify first a place to save. + Spécifiez d'abord une destination de sauvegarde. - Existing macro - Macro existante + Existing macro + Macro existante - The macro '%1' already exists. Do you want to overwrite? - La macro '%1' existe déjà. Voulez-vous l'écraser? + The macro '%1' already exists. Do you want to overwrite? + La macro '%1' existe déjà. Voulez-vous l'écraser? - The macro directory doesn't exist. Please, choose another one. - Le répertoire de macro n'existe pas. Veuillez en choisir un autre. + The macro directory doesn't exist. Please, choose another one. + Le répertoire de macro n'existe pas. Veuillez en choisir un autre. - Choose macro directory - Choisir le répertoire de macro + Choose macro directory + Choisir le répertoire de macro - - + + Gui::Dialog::DlgMaterialProperties - Material properties - Propriétés du matériau + Material properties + Propriétés du matériau - &Close - &Fermer + &Close + &Fermer - Alt+C - Alt+F + Alt+C + Alt+F - Material - Matériau + Material + Matériau - Diffuse color: - Couleur diffuse : + Diffuse color: + Couleur diffuse : - Specular color: - Couleur spéculaire : + Specular color: + Couleur spéculaire : - Shininess: - Brillance : + Shininess: + Brillance : - % - % + % + % - Ambient color: - Couleur ambiante : + Ambient color: + Couleur ambiante : - - Texte source + + Texte source - Emissive color: - Couleur émissive : + Emissive color: + Couleur émissive : - - + + Gui::Dialog::DlgOnlineHelp - On-line help - Aide en ligne + On-line help + Aide en ligne - Help viewer - Visionneuse d'aide + Help viewer + Visionneuse d'aide - Location of start page - Emplacement de la page de démarrage + Location of start page + Emplacement de la page de démarrage - - + + Gui::Dialog::DlgOnlineHelpImp - HTML files (*.html *.htm) - Fichiers HTML (*.html *.htm) + HTML files (*.html *.htm) + Fichiers HTML (*.html *.htm) - Access denied - Accès refusé + Access denied + Accès refusé - Access denied to '%1' + Access denied to '%1' Specify another directory, please. - Accès refusé à '%1' + Accès refusé à '%1' Veuillez spécifier un autre répertoire. - - + + Gui::Dialog::DlgParameter - Parameter Editor - Éditeur de paramètres + Parameter Editor + Éditeur de paramètres - Save to disk - Sauvegarder sur le disque + Save to disk + Sauvegarder sur le disque - Alt+C - Alt+F + Alt+C + Alt+F - &Close - &Fermer + &Close + &Fermer - - + + Gui::Dialog::DlgParameterImp - Group - Groupe + Group + Groupe - Name - Nom + Name + Nom - Type - Type + Type + Type - Value - Valeur + Value + Valeur - User parameter - Paramètre utilisateur + User parameter + Paramètre utilisateur - Invalid input - Saisie invalide + Invalid input + Saisie invalide - Invalid key name '%1' - Nom de clé '%1' invalide + Invalid key name '%1' + Nom de clé '%1' invalide - System parameter - Paramètres système + System parameter + Paramètres système - - + + Gui::Dialog::DlgPreferences - Preferences - Préférences + Preferences + Préférences - &Help - &Aide + &Help + &Aide - Alt+H - Alt+A + Alt+H + Alt+A - &OK - &OK + &OK + &OK - &Apply - &Appliquer + &Apply + &Appliquer - Alt+A - Alt+A + Alt+A + Alt+A - &Cancel - &Annuler + &Cancel + &Annuler - - Texte source + + Texte source - - + + Gui::Dialog::DlgPreferencesImp - Wrong parameter - Paramètre erroné + Wrong parameter + Paramètre erroné - - + + Gui::Dialog::DlgProjectInformation - Project information - Informations sur le projet + Project information + Informations sur le projet - Information - Informations + Information + Informations - &Name: - &Nom : + &Name: + &Nom : - Commen&t: - Commen&taire : + Commen&t: + Commen&taire : - Path: - Chemin d'accès : + Path: + Chemin d'accès : - &Last modified by: - &Dernière modification par : + &Last modified by: + &Dernière modification par : - Created &by: - Créé &par : + Created &by: + Créé &par : - Com&pany: - So&ciété : + Com&pany: + So&ciété : - Last &modification date: - Date &de dernière modification : + Last &modification date: + Date &de dernière modification : - Creation &date: - &Date de création : + Creation &date: + &Date de création : - &OK - &OK + &OK + &OK - &Cancel - &Annuler + &Cancel + &Annuler - - Texte source + + Texte source - - + + Gui::Dialog::DlgProjectUtility - Project utility - Utilitaire de projet + Project utility + Utilitaire de projet - Extract project - Extraire le projet + Extract project + Extraire le projet - Source - Source + Source + Source - Project file (*.fcstd) - Fichier de projet (*.fcstd) + Project file (*.fcstd) + Fichier de projet (*.fcstd) - Destination - Destination + Destination + Destination - Extract - Extraire + Extract + Extraire - Create project - Créer un projet + Create project + Créer un projet - Document.xml - Document.xml + Document.xml + Document.xml - Create - Créer + Create + Créer - Load project file after creation - Charger le fichier de projet après la création + Load project file after creation + Charger le fichier de projet après la création - Empty source - Source vide + Empty source + Source vide - No source is defined. - Aucune source n'est définie. + No source is defined. + Aucune source n'est définie. - Empty destination - Destination vide + Empty destination + Destination vide - No destination is defined. - Aucune destination n'est définie. + No destination is defined. + Aucune destination n'est définie. - - + + Gui::Dialog::DlgReportView - Output window - Fenêtre de sortie + Output window + Fenêtre de sortie - Output - Sortie + Output + Sortie - Record log messages - Enregistrer les messages du journal + Record log messages + Enregistrer les messages du journal - Record warnings - Enregistrer les avertissements + Record warnings + Enregistrer les avertissements - Record error messages - Enregistrer les messages d'erreur + Record error messages + Enregistrer les messages d'erreur - Colors - Couleurs + Colors + Couleurs - Normal messages: - Messages normaux : + Normal messages: + Messages normaux : - Log messages: - Journal des messages : + Log messages: + Journal des messages : - Warnings: - Avertissements: + Warnings: + Avertissements: - Errors: - Erreurs : + Errors: + Erreurs : - - Texte source + + Texte source - Redirect internal Python errors to report view - Rediriger les erreurs internes de Python vers la vue rapport + Redirect internal Python errors to report view + Rediriger les erreurs internes de Python vers la vue rapport - Redirect internal Python output to report view - Rediriger les messages interne Python vers la Vue rapport + Redirect internal Python output to report view + Rediriger les messages interne Python vers la Vue rapport - - + + Gui::Dialog::DlgRunExternal - Running external program - Exécution de programme externe + Running external program + Exécution de programme externe - TextLabel - TextLabel + TextLabel + TextLabel - Advanced >> - Avancé >> + Advanced >> + Avancé >> - ... - ... + ... + ... - Accept changes - Accepter les modifications + Accept changes + Accepter les modifications - Discard changes - Abandonner les modifications + Discard changes + Abandonner les modifications - Abort program - Abandonner le programme + Abort program + Abandonner le programme - Help - Aide + Help + Aide - Select a file - Sélectionner un fichier + Select a file + Sélectionner un fichier - - + + Gui::Dialog::DlgSettings3DView - 3D View - Vue 3D + 3D View + Vue 3D - 3D View settings - Paramètres de la vue 3D + 3D View settings + Paramètres de la vue 3D - Show coordinate system in the corner - Afficher le système de coordonnées dans le coin + Show coordinate system in the corner + Afficher le système de coordonnées dans le coin - Show counter of frames per second - Afficher le compteur d'images par seconde + Show counter of frames per second + Afficher le compteur d'images par seconde - Enable animation - Permettre l'animation + Enable animation + Permettre l'animation - Enable anti-aliasing (slower) - Activer l'anticrénelage (plus lent) + Enable anti-aliasing (slower) + Activer l'anticrénelage (plus lent) - Eye to eye distance for stereo modes: - Distance entre les yeux pour les modes stéréo : + Eye to eye distance for stereo modes: + Distance entre les yeux pour les modes stéréo : - Camera type - Type de caméra + Camera type + Type de caméra - Orthographic rendering - Rendu orthographique + Orthographic rendering + Rendu orthographique - Perspective rendering - Rendu en perspective + Perspective rendering + Rendu en perspective - - Texte source + + Texte source - 3D Navigation - Navigation 3D + 3D Navigation + Navigation 3D - Mouse... - Souris... + Mouse... + Souris... - Intensity of backlight - Intensité du rétro-éclairage + Intensity of backlight + Intensité du rétro-éclairage - Enable backlight color - Activer la couleur de rétroéclairage + Enable backlight color + Activer la couleur de rétroéclairage - Orbit style - Style d'orbite + Orbit style + Style d'orbite - Turntable - Table tournante + Turntable + Table tournante - Trackball - Trackball + Trackball + Trackball - Invert zoom - Inverser le zoom + Invert zoom + Inverser le zoom - Zoom at cursor - + Zoom at cursor + Zoomer sur le curseur - Zoom step - + Zoom step + Étape de zoom - - + + Gui::Dialog::DlgSettings3DViewImp - %1 navigation - %1 de navigation + %1 navigation + %1 de navigation - - + + Gui::Dialog::DlgSettingsColorGradient - Color model - Modèle de couleurs + Color model + Modèle de couleurs - &Gradient: - Dé&gradé : + &Gradient: + Dé&gradé : - red-yellow-green-cyan-blue - rouge-jaune-vert-cyan-bleu + red-yellow-green-cyan-blue + rouge-jaune-vert-cyan-bleu - blue-cyan-green-yellow-red - bleu-cyan-vert-jaune-rouge + blue-cyan-green-yellow-red + bleu-cyan-vert-jaune-rouge - white-black - blanc-noir + white-black + blanc-noir - black-white - noir-blanc + black-white + noir-blanc - Visibility - Visibilité + Visibility + Visibilité - Out g&rayed - Sortie g&risée + Out g&rayed + Sortie g&risée - Alt+R - Alt+R + Alt+R + Alt+R - Out &invisible - Sortie &invisible + Out &invisible + Sortie &invisible - Alt+I - Alt+I + Alt+I + Alt+I - Style - Style + Style + Style - &Zero - &Zéro + &Zero + &Zéro - Alt+Z - Alt+Z + Alt+Z + Alt+Z - &Flow - &Flux + &Flow + &Flux - Alt+F - Alt+F + Alt+F + Alt+F - &OK - &OK + &OK + &OK - &Cancel - &Annuler + &Cancel + &Annuler - Parameter range - Gamme de paramètres + Parameter range + Gamme de paramètres - Mi&nimum: - Mi&nimum : + Mi&nimum: + Mi&nimum : - Ma&ximum: - Ma&ximum : + Ma&ximum: + Ma&ximum : - &Labels: - É&tiquettes : + &Labels: + É&tiquettes : - &Decimals: - &Décimales : + &Decimals: + &Décimales : - - Texte source + + Texte source - Color-gradient settings - Paramètres du dégradé de couleurs + Color-gradient settings + Paramètres du dégradé de couleurs - - + + Gui::Dialog::DlgSettingsColorGradientImp - Wrong parameter - Paramètre erroné + Wrong parameter + Paramètre erroné - The maximum value must be higher than the minimum value. - La valeur maximale doit être plus grande que la valeur minimale. + The maximum value must be higher than the minimum value. + La valeur maximale doit être plus grande que la valeur minimale. - - + + Gui::Dialog::DlgSettingsDocument - Document - Document + Document + Document - General - Général + General + Général - Document save compression level + Document save compression level (0 = none, 9 = highest, 3 = default) - Niveau de compression pour la sauvegarde de document + Niveau de compression pour la sauvegarde de document (0 = aucune, 9 = forte, 3 = par défaut) - Create new document at start up - Créer un nouveau document au démarrage + Create new document at start up + Créer un nouveau document au démarrage - Storage - Stockage + Storage + Stockage - Saving transactions (Auto-save) - Sauvegardes des transactions (Auto-sauvegarde) + Saving transactions (Auto-save) + Sauvegardes des transactions (Auto-sauvegarde) - Discard saved transaction after saving document - Annuler les transactions enregistrées après la sauvegarde du document + Discard saved transaction after saving document + Annuler les transactions enregistrées après la sauvegarde du document - Save thumbnail into project file when saving document - Enregistrer la vignette dans le fichier projet lors de la sauvegarde du document + Save thumbnail into project file when saving document + Enregistrer la vignette dans le fichier projet lors de la sauvegarde du document - Create up to backup files when resaving document - Nombre maximal de sauvegardes crées lors du ré-enregistrement du document + Create up to backup files when resaving document + Nombre maximal de sauvegardes crées lors du ré-enregistrement du document - Document objects - objets Documents + Document objects + objets Documents - Allow duplicate object labels in one document - Autoriser la duplication des étiquettes dans un document + Allow duplicate object labels in one document + Autoriser la duplication des étiquettes dans un document - Maximum Undo/Redo steps - Nombre maximal d'actions Annuler/Rétablir + Maximum Undo/Redo steps + Nombre maximal d'actions Annuler/Rétablir - Using Undo/Redo on documents - Utiliser Annuler / Rétablir sur les documents + Using Undo/Redo on documents + Utiliser Annuler / Rétablir sur les documents - - + + Gui::Dialog::DlgSettingsEditorImp - Text - Texte + Text + Texte - Bookmark - Marque-pages + Bookmark + Marque-pages - Breakpoint - Point d'arrêt + Breakpoint + Point d'arrêt - Keyword - Mot-clé + Keyword + Mot-clé - Comment - Commentaire + Comment + Commentaire - Block comment - Bloc commentaire + Block comment + Bloc commentaire - Number - Nombre + Number + Nombre - String - Chaîne + String + Chaîne - Character - Caractère + Character + Caractère - Class name - Nom de classe + Class name + Nom de classe - Define name - Définir le nom + Define name + Définir le nom - Operator - Opérateur + Operator + Opérateur - Python output - Sortie Python + Python output + Sortie Python - Python error - Erreur Python + Python error + Erreur Python - Items - Items + Items + Items - Current line highlight - + Current line highlight + Surbrillance de ligne actuelle - - + + Gui::Dialog::DlgSettingsImage - Image settings - Paramètres de l'image + Image settings + Paramètres de l'image - Image properties - Propriétés de l'image + Image properties + Propriétés de l'image - Back&ground: - Arr&ière-plan : + Back&ground: + Arr&ière-plan : - Current - Courant + Current + Courant - White - Blanc + White + Blanc - Black - Noir + Black + Noir - Transparent - Transparent + Transparent + Transparent - Image dimensions - Dimensions de l'image + Image dimensions + Dimensions de l'image - Pixel - Pixel + Pixel + Pixel - &Width: - &Largeur : + &Width: + &Largeur : - Current screen - Écran actuel + Current screen + Écran actuel - Icon 32 x 32 - Icône 32 x 32 + Icon 32 x 32 + Icône 32 x 32 - Icon 64 x 64 - Icône 64 x 64 + Icon 64 x 64 + Icône 64 x 64 - Icon 128 x 128 - Icône 128 x 128 + Icon 128 x 128 + Icône 128 x 128 - CGA 320 x 200 - CGA 320 x 200 + CGA 320 x 200 + CGA 320 x 200 - QVGA 320 x 240 - QVGA 320 x 240 + QVGA 320 x 240 + QVGA 320 x 240 - VGA 640 x 480 - VGA 640 x 480 + VGA 640 x 480 + VGA 640 x 480 - NTSC 720 x 480 - NTSC 720 x 480 + NTSC 720 x 480 + NTSC 720 x 480 - PAL 768 x 578 - PAL 768 x 578 + PAL 768 x 578 + PAL 768 x 578 - SVGA 800 x 600 - SVGA 800 x 600 + SVGA 800 x 600 + SVGA 800 x 600 - XGA 1024 x 768 - XGA 1024 x 768 + XGA 1024 x 768 + XGA 1024 x 768 - HD720 1280 x 720 - HD720 1280 x 720 + HD720 1280 x 720 + HD720 1280 x 720 - SXGA 1280 x 1024 - SXGA 1280 x 1024 + SXGA 1280 x 1024 + SXGA 1280 x 1024 - SXGA+ 1400 x 1050 - SXGA+ 1400 x 1050 + SXGA+ 1400 x 1050 + SXGA+ 1400 x 1050 - UXGA 1600 x 1200 - UXGA 1600 x 1200 + UXGA 1600 x 1200 + UXGA 1600 x 1200 - HD1080 1920 x 1080 - HD1080 1920 x 1080 + HD1080 1920 x 1080 + HD1080 1920 x 1080 - WUXGA 1920 x 1200 - WUXGA 1920 x 1200 + WUXGA 1920 x 1200 + WUXGA 1920 x 1200 - QXGA 2048 x 1538 - QXGA 2048 x 1538 + QXGA 2048 x 1538 + QXGA 2048 x 1538 - WQXGA 2560 x 1600 - WQXGA 2560 x 1600 + WQXGA 2560 x 1600 + WQXGA 2560 x 1600 - QSXGA 2560 x 2048 - QSXGA 2560 x 2048 - - - QUXGA 3200 × 2400 - QUXGA 3200 × 2400 - - - HUXGA 6400 × 4800 - HUXGA 6400 × 4800 + QSXGA 2560 x 2048 + QSXGA 2560 x 2048 - !!! 10000 x 10000 - !!! 10000 x 10000 + QUXGA 3200 × 2400 + QUXGA 3200 × 2400 - Standard sizes: - Tailles standards : + HUXGA 6400 × 4800 + HUXGA 6400 × 4800 - &Height: - &Hauteur : + !!! 10000 x 10000 + !!! 10000 x 10000 - Aspect ratio: - Ratio d'aspect : + Standard sizes: + Tailles standards : - &Screen - É&cran + &Height: + &Hauteur : - Alt+S - Alt+M + Aspect ratio: + Ratio d'aspect : - &4:3 - &4:3 + &Screen + É&cran - Alt+4 - Alt+4 + Alt+S + Alt+M - 1&6:9 - 1&6:9 + &4:3 + &4:3 - Alt+6 - Alt+6 + Alt+4 + Alt+4 - &1:1 - &1:1 + 1&6:9 + 1&6:9 - Alt+1 - Alt+1 + Alt+6 + Alt+6 - Image comment - Commentaire de l'image + &1:1 + &1:1 - Insert MIBA - Insérer MIBA + Alt+1 + Alt+1 - Insert comment - Insérer un commentaire + Image comment + Commentaire de l'image - - + + Insert MIBA + Insérer MIBA + + + Insert comment + Insérer un commentaire + + + Gui::Dialog::DlgSettingsMacro - Macro - Macro + Macro + Macro - Macro recording settings - Réglages d'enregistrement d'une macro + Macro recording settings + Réglages d'enregistrement d'une macro - Logging Commands - Enregistrement des commandes + Logging Commands + Enregistrement des commandes - Show script commands in python console - Montrer les commandes du script dans la console Python + Show script commands in python console + Montrer les commandes du script dans la console Python - Log all commands issued by menus to file: - Enregistrer toutes les commandes venant des menus vers le fichier : + Log all commands issued by menus to file: + Enregistrer toutes les commandes venant des menus vers le fichier : - FullScript.FCScript - FullScript.FCScript + FullScript.FCScript + FullScript.FCScript - Gui commands - Commandes d'interface graphique Gui + Gui commands + Commandes d'interface graphique Gui - Recording GUI commands - Enregistrement des commandes de l'interface graphique + Recording GUI commands + Enregistrement des commandes de l'interface graphique - Record as comment - Enregistrer comme un commentaire + Record as comment + Enregistrer comme un commentaire - Macro path - Chemin de la macro + Macro path + Chemin de la macro - General macro settings - + General macro settings + Paramètres généraux de macro - Run macros in local environment - + Run macros in local environment + Exécuter les macros dans l'environnement local - - + + Gui::Dialog::DlgSettingsUnits - Units - Unités + Units + Unités - Units settings - Réglage des unités + Units settings + Réglage des unités - Standard (mm/kg/s/degree) - Standard (mm/kg/s/degrés) + Standard (mm/kg/s/degree) + Standard (mm/kg/s/degrés) - MKS (m/kg/s/degree) - MKS (m/kg/s/degrés) + MKS (m/kg/s/degree) + MKS (m/kg/s/degrés) - Magnitude - Amplitude + Magnitude + Amplitude - Unit - Unité + Unit + Unité - User system: - Système de l'utilisateur : + User system: + Système de l'utilisateur : - Imperial (in/lb) - Impérial (po/lb) + Imperial (in/lb) + Impérial (po/lb) - - + + Gui::Dialog::DlgSettingsViewColor - Colors - Couleurs + Colors + Couleurs - Selection - Sélection + Selection + Sélection - Enable selection highlighting - Activer la surbrillance de la sélection + Enable selection highlighting + Activer la surbrillance de la sélection - Enable preselection highlighting - Activer la surbrillance de présélection + Enable preselection highlighting + Activer la surbrillance de présélection - Background color - Couleur d'arrière-plan + Background color + Couleur d'arrière-plan - Middle color - Couleur intermédiaire + Middle color + Couleur intermédiaire - Color gradient - Dégradé de couleurs + Color gradient + Dégradé de couleurs - Simple color - Couleur simple + Simple color + Couleur simple - Default colors - Couleurs par défaut + Default colors + Couleurs par défaut - Edited edge color - Couleur d'arête éditée + Edited edge color + Couleur d'arête éditée - Edited vertex color - Couleur de sommet édité + Edited vertex color + Couleur de sommet édité - Construction geometry - Géométrie de construction + Construction geometry + Géométrie de construction - Fully constrained geometry - Géométrie entièrement contrainte + Fully constrained geometry + Géométrie entièrement contrainte - The color of construction geometry in editmode - La couleur des géométries de construction en mode édition + The color of vertices being edited + La couleur des sommets en cours d'édition - The color of fully constrained geometry in editmode - Couleur d'une géométrie entièrement contrainte en mode édition + The color of edges being edited + La couleur des arêtes en cours d'édition - The color of vertices being edited - La couleur des sommets en cours d'édition + The color of construction geometry in edit mode + La couleur des géométries de construction en mode d'édition - The color of edges being edited - La couleur des arêtes en cours d'édition + The color of fully constrained geometry in edit mode + Couleur de la géométrie entièrement contrainte en mode d'édition - The color of construction geometry in edit mode - + Cursor text color + Couleur du curseur de texte - The color of fully constrained geometry in edit mode - + Default shape color + Couleur de forme par défaut - Cursor text color - + The default color for new shapes + La couleur par défaut pour les nouvelles formes - Default shape color - + Default line width and color + Couleur et épaisseur de ligne par défaut - The default color for new shapes - + The default line color for new shapes + La couleur de ligne par défaut pour les nouvelles formes - Default line width and color - + The default line thickness for new shapes + L'épaisseur de ligne par défaut pour les nouvelles formes - The default line color for new shapes - + px + px - - The default line thickness for new shapes - - - - px - - - - + + Gui::Dialog::DlgTipOfTheDay - Tip of the day - Astuce du jour + Tip of the day + Astuce du jour - <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> - <b><font face="Times New Roman"><font size="+3">Saviez-vous...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Saviez-vous...</font></font></b> - &Show tips at start up - &Afficher les astuces au démarrage + &Show tips at start up + &Afficher les astuces au démarrage - Alt+S - Alt+M + Alt+S + Alt+M - &Next Tip - &Astuce suivante + &Next Tip + &Astuce suivante - Alt+N - Alt+A + Alt+N + Alt+A - &Close - &Fermer + &Close + &Fermer - Alt+C - Alt+F + Alt+C + Alt+F - - Texte source + + Texte source - - + + Gui::Dialog::DlgTipOfTheDayImp - Download failed: %1 + Download failed: %1 - Téléchargement échoué: %1 + Téléchargement échoué: %1 - If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. - Si vous voulez en apprendre plus à propos de FreeCAD, aller sur %1 ou choisissez 'Aide' dans le menu Aide. + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + Si vous voulez en apprendre plus à propos de FreeCAD, aller sur %1 ou choisissez 'Aide' dans le menu Aide. - - + + Gui::Dialog::DockablePlacement - Placement - Placement + Placement + Placement - - + + Gui::Dialog::DownloadDialog - Canceled. - Annulé. + Download + Télécharger - Download - + Cancel + Annuler - Cancel - Annuler + Close + Fermer - Close - Fermer + There already exists a file called %1 in the current directory. Overwrite? + Il existe déjà un fichier nommé %1 dans le répertoire courant. Voulez-vous le remplacer par celui-ci? - There already exists a file called %1 in the current directory. Overwrite? - + Unable to save the file %1: %2. + Impossible d'enregistrer le fichier %1: %2. - Unable to save the file %1: %2. - + Downloading %1. + Téléchargement de %1. - Downloading %1. - + Download canceled. + Téléchargement annulé. - Download canceled. - + Download failed: %1. + Téléchargement échoué : %1. - Download failed: %1. - Téléchargement échoué : %1. + Downloaded %1 to current directory. + %1 téléchargé dans le répertoire actuel. - - Downloaded %1 to current directory. - - - - + + Gui::Dialog::IconDialog - Add icon - Ajouter une icône + Add icon + Ajouter une icône - - + + Gui::Dialog::InputVector - Input vector - Vecteur d'entrée + Input vector + Vecteur d'entrée - Vector - Vecteur + Vector + Vecteur - Z: - Z : + Z: + Z : - Y: - Y : + Y: + Y : - X: - X : + X: + X : - OK - OK + OK + OK - - + + Gui::Dialog::LicenseDialog - Copyright - + Copyright + Droit d'auteur - - + + Gui::Dialog::MouseButtons - Mouse buttons - Boutons de la souris + Mouse buttons + Boutons de la souris - Configuration - Configuration + Configuration + Configuration - Selection: - Sélection : + Selection: + Sélection : - Panning - Panoramique + Panning + Panoramique - Rotation: - Rotation : + Rotation: + Rotation : - Zooming: - Zoom : + Zooming: + Zoom : - - + + Gui::Dialog::ParameterGroup - Expand - Développer + Expand + Développer - Add sub-group - Ajouter un sous-groupe + Add sub-group + Ajouter un sous-groupe - Remove group - Enlever le groupe + Remove group + Enlever le groupe - Rename group - Renommer le groupe + Rename group + Renommer le groupe - Export parameter - Exporter le paramètre + Export parameter + Exporter le paramètre - Import parameter - Importer un paramètre + Import parameter + Importer un paramètre - Collapse - Réduire + Collapse + Réduire - Do really want to remove this parameter group? - Voulez-vous vraiment enlever ce groupe de paramètres? + Do really want to remove this parameter group? + Voulez-vous vraiment enlever ce groupe de paramètres? - Existing sub-group - Sous-groupe existant + Existing sub-group + Sous-groupe existant - The sub-group '%1' already exists. - Le sous-groupe '%1' existe déjà. + The sub-group '%1' already exists. + Le sous-groupe '%1' existe déjà. - Export parameter to file - Exporter le paramètre vers un fichier + Export parameter to file + Exporter le paramètre vers un fichier - XML (*.FCParam) - XML (*.FCParam) + XML (*.FCParam) + XML (*.FCParam) - Import parameter from file - Importer un paramètre depuis un fichier + Import parameter from file + Importer un paramètre depuis un fichier - Import Error - Erreur d'importation + Import Error + Erreur d'importation - Reading from '%1' failed. - La lecture à partir de '% 1' a échoué. + Reading from '%1' failed. + La lecture à partir de '% 1' a échoué. - - + + Gui::Dialog::ParameterValue - Change value - Changer la valeur + Change value + Changer la valeur - Remove key - Enlever la clé + Remove key + Enlever la clé - Rename key - Renommer la clé + Rename key + Renommer la clé - New - Nouveau + New + Nouveau - New string item - Nouvel article chaîne + New string item + Nouvel article chaîne - New float item - Nouvel article flottant + New float item + Nouvel article flottant - New integer item - Nouvel article entier + New integer item + Nouvel article entier - New unsigned item - Nouvel article non signé + New unsigned item + Nouvel article non signé - New Boolean item - Nouvel article booléen + New Boolean item + Nouvel article booléen - Existing item - Article existant + Existing item + Article existant - The item '%1' already exists. - L'article '%1' existe déjà. + The item '%1' already exists. + L'article '%1' existe déjà. - - + + Gui::Dialog::Placement - Placement - Placement + Placement + Placement - OK - OK + OK + OK - Translation: - Translation : + Translation: + Translation : - Z: - Z : + Z: + Z : - Y: - Y : + Y: + Y : - X: - X : + X: + X : - Rotation: - Rotation : + Rotation: + Rotation : - Angle: - Angle : + Angle: + Angle : - Axis: - Axe : + Axis: + Axe : - Center: - Centre : + Center: + Centre : - Pitch: - Axe de tangage : + Pitch: + Axe de tangage : - Roll: - Axe de roulis : + Roll: + Axe de roulis : - Yaw: - Axe de lacet : + Yaw: + Axe de lacet : - Rotation axis with angle - Axe de rotation et angle + Rotation axis with angle + Axe de rotation et angle - Euler angles - Angles d'Euler + Euler angles + Angles d'Euler - Apply placement changes immediately - Appliquer immédiatement les changements de position + Apply placement changes immediately + Appliquer immédiatement les changements de position - Apply incremental changes to object placement - Appliquer les modifications incrémentielles au placement de l'objet + Apply incremental changes to object placement + Appliquer les modifications incrémentielles au placement de l'objet - Apply - Appliquer + Apply + Appliquer - Reset - Réinitialiser + Reset + Réinitialiser - Close - Fermer + Close + Fermer - - + + Gui::Dialog::PrintModel - Button - Bouton + Button + Bouton - Command - Commande + Command + Commande - - + + Gui::Dialog::SceneInspector - Dialog - Fenêtre de dialogue + Dialog + Fenêtre de dialogue - Close - Fermer + Close + Fermer - Refresh - Actualiser + Refresh + Actualiser - - + + Gui::Dialog::SceneModel - Inventor Tree - Arbre Inventor + Inventor Tree + Arbre Inventor - Nodes - Nœuds + Nodes + Nœuds - - + + Gui::Dialog::TextureMapping - Texture - Texture + Texture + Texture - Texture mapping - Mappage de texture + Texture mapping + Mappage de texture - Global - Global + Global + Global - Environment - Environnement + Environment + Environnement - Image files (%1) - Fichiers image (%1) + Image files (%1) + Fichiers image (%1) - No image - Aucune image + No image + Aucune image - The specified file is not a valid image file. - Le fichier spécifié n'est pas un fichier image valide. + The specified file is not a valid image file. + Le fichier spécifié n'est pas un fichier image valide. - No 3d view - Aucune vue 3D + No 3d view + Aucune vue 3D - No active 3d view found. - Aucune vue 3D active trouvée. + No active 3d view found. + Aucune vue 3D active trouvée. - - + + Gui::Dialog::Transform - Cancel - Annuler + Cancel + Annuler - Transform - Transformer + Transform + Transformer - - + + Gui::DlgTreeWidget - Dialog - Fenêtre de dialogue + Dialog + Fenêtre de dialogue - Items - Items + Items + Items - OK - OK + OK + OK - Cancel - Annuler + Cancel + Annuler - - Texte source + + Texte source - - + + Gui::DockWnd::CombiView - CombiView - Vue combinée + CombiView + Vue combinée - Project - Projet + Project + Projet - Tasks - Tâches + Tasks + Tâches - - + + Gui::DockWnd::HelpView - Previous - Précédent + Previous + Précédent - Next - Suivant + Next + Suivant - Home - Accueil + Home + Accueil - Open - Ouvrir + Open + Ouvrir - Open file - Ouvrir un fichier + Open file + Ouvrir un fichier - All HTML files (*.html *.htm) - Tous les fichiers HTML (*.html *.htm) + All HTML files (*.html *.htm) + Tous les fichiers HTML (*.html *.htm) - External browser - Navigateur externe + External browser + Navigateur externe - No external browser found. Specify in preferences, please - Aucun navigateur externe trouvé. Veuillez le spécifier dans les préférences + No external browser found. Specify in preferences, please + Aucun navigateur externe trouvé. Veuillez le spécifier dans les préférences - Starting of %1 failed - Le démarrage de %1 a échoué + Starting of %1 failed + Le démarrage de %1 a échoué - - + + Gui::DockWnd::PropertyDockView - Property View - Affichage des propriétés + Property View + Affichage des propriétés - - + + Gui::DockWnd::ReportOutput - Logging - Enregistrement + Logging + Enregistrement - Warning - Alerte + Warning + Alerte - Error - Erreur + Error + Erreur - Options - Options + Options + Options - Clear - Effacer + Clear + Effacer - Save As... - Enregistrer sous… + Save As... + Enregistrer sous… - Save Report Output - Enregistrer la sortie du rapport + Save Report Output + Enregistrer la sortie du rapport - Plain Text Files (*.txt *.log) - Fichiers texte de base(*.txt *.log) + Plain Text Files (*.txt *.log) + Fichiers texte de base(*.txt *.log) - Go to end - Aller à la fin + Go to end + Aller à la fin - Redirect Python output - Rediriger la sortie de Python + Redirect Python output + Rediriger la sortie de Python - Redirect Python errors - Rediriger les erreurs de Python + Redirect Python errors + Rediriger les erreurs de Python - - + + Gui::DockWnd::ReportView - Output - Sortie + Output + Sortie - Python console - Console Python + Python console + Console Python - - + + Gui::DockWnd::SelectionView - Property View - Affichage des propriétés + Property View + Affichage des propriétés - - + + Gui::DockWnd::TaskPanelView - Task View - Afficher les tâches + Task View + Afficher les tâches - - + + Gui::DockWnd::TextBrowser - Could not open file. - Impossible d'ouvrir le fichier. + Could not open file. + Impossible d'ouvrir le fichier. - You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. - Vous essayez d'accéder à l'adresse %1, actuellement indisponible. Assurez-vous que l'URL existe et rechargez la page. + You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. + Vous essayez d'accéder à l'adresse %1, actuellement indisponible. Assurez-vous que l'URL existe et rechargez la page. - Connecting to %1 - Connexion à %1 + Connecting to %1 + Connexion à %1 - Sending to %1 - Envoi vers %1 + Sending to %1 + Envoi vers %1 - Reading from %1 - Lecture depuis %1 + Reading from %1 + Lecture depuis %1 - Download failed: %1. - Téléchargement échoué : %1. + Download failed: %1. + Téléchargement échoué : %1. - Previous - Précédent + Previous + Précédent - Forward - Suivant + Forward + Suivant - Home - Accueil + Home + Accueil - Refresh - Actualiser + Refresh + Actualiser - Copy - Copier + Copy + Copie - Select all - Tout sélectionner + Select all + Tout sélectionner - No description for - Pas de description pour + No description for + Pas de description pour - - + + Gui::DocumentModel - Application - Application + Application + Application - Labels & Attributes - Étiquettes & attributs + Labels & Attributes + Étiquettes & attributs - - + + Gui::EditorView - Modified file - Fichier modifié + Modified file + Fichier modifié - %1. + %1. This has been modified outside of the source editor. Do you want to reload it? - %1. + %1. -Ce fichier a été modifié à l'extérieur de l'éditeur source. Voulez-vous le recharger? +Ce fichier a été modifié à l'extérieur de l'éditeur source. Voulez-vous le recharger? - Unsaved document - Document non sauvegardé + Unsaved document + Document non sauvegardé - The document has been modified. + The document has been modified. Do you want to save your changes? - Le document a été modifié. + Le document a été modifié. Voulez enregistrer les modifications ? - FreeCAD macro (*.FCMacro);;Python (*.py) - Macro FreeCAD (*.FCMacro);;Python (*.py) + FreeCAD macro (*.FCMacro);;Python (*.py) + Macro FreeCAD (*.FCMacro);;Python (*.py) - Export PDF - Exporter vers PDF + Export PDF + Exporter vers PDF - PDF file (*.pdf) - Fichier PDF (*.pdf) + PDF file (*.pdf) + Fichier PDF (*.pdf) - untitled[*] - sansnom[*] + untitled[*] + sansnom[*] - - Editor - - Éditeur + - Editor + - Éditeur - %1 chars removed - %1 caractères supprimés + %1 chars removed + %1 caractères supprimés - %1 chars added - %1 caractères ajoutés + %1 chars added + %1 caractères ajoutés - Formatted - Formaté + Formatted + Formaté - - + + Gui::FileChooser - Select a file - Sélectionner un fichier + Select a file + Sélectionner un fichier - Select a directory - Sélectionner un répertoire + Select a directory + Sélectionner un répertoire - - + + Gui::FileDialog - Save as - Enregistrer sous + Save as + Enregistrer sous - Open - Ouvrir + Open + Ouvrir - - + + Gui::FileOptionsDialog - Extended - Étendu + Extended + Étendu - All files (*.*) - Tous les fichiers (*.*) + All files (*.*) + Tous les fichiers (*.*) - - + + Gui::Flag - Top left - En haut à gauche + Top left + En haut à gauche - Bottom left - En bas à gauche + Bottom left + En bas à gauche - Top right - En haut à droite + Top right + En haut à droite - Bottom right - En bas à droite + Bottom right + En bas à droite - Remove - Enlever + Remove + Enlever - - + + Gui::InventorNavigationStyle - Press CTRL and left mouse button - Appuyez sur CTRL et le bouton gauche de la souris + Press CTRL and left mouse button + Appuyez sur CTRL et le bouton gauche de la souris - Press middle mouse button - Appuyez sur le bouton central de la souris + Press middle mouse button + Appuyez sur le bouton central de la souris - Press left mouse button - Appuyez sur le bouton gauche de la souris + Press left mouse button + Appuyez sur le bouton gauche de la souris - Scroll middle mouse button - Faites défiler le bouton milieu de la souris + Scroll middle mouse button + Faites défiler le bouton milieu de la souris - - + + Gui::LocationDialog - Wrong direction - Mauvaise direction + Wrong direction + Mauvaise direction - Direction must not be the null vector - La direction ne peut pas être un vecteur nul + Direction must not be the null vector + La direction ne peut pas être un vecteur nul - X - X + X + X - Y - Y + Y + Y - Z - Z + Z + Z - User defined... - Défini par l'utilisateur... + User defined... + Défini par l'utilisateur... - - + + Gui::LocationWidget - X: - X : + X: + X : - Y: - Y : + Y: + Y : - Z: - Z : + Z: + Z : - Direction: - + Direction: + Direction: - - + + Gui::MacroCommand - Macros - Macros + Macros + Macros - - + + Gui::MainWindow - Dimension - Dimension + Dimension + Dimension - Ready - Prêt + Ready + Prêt - Toggles this toolbar - Bascule cette barre d'outils + Toggles this toolbar + Bascule cette barre d'outils - Toggles this dockable window - Bascule cette fenêtre dockable + Toggles this dockable window + Bascule cette fenêtre dockable - Close All - Fermer tout + Close All + Fermer tout - - + + Gui::ManualAlignment - Manual alignment - + Manual alignment + Alignement manuel - The alignment is already in progress. - + The alignment is already in progress. + L'alignement est déjà en cours. - Alignment[*] - + Alignment[*] + Alignement[*] - Please, select at least one point in the left and the right view - + Please, select at least one point in the left and the right view + Veuillez sélectionner au moins un point dans les vues de droite et de gauche - Please, select at least %1 points in the left and the right view - + Please, select at least %1 points in the left and the right view + Veuillez sélectionner au moins %1 points dans les vues de droite et de gauche - Please pick points in the left and right view - + Please pick points in the left and right view + Veuillez sélectionner des points dans les vues de gauche et de droite - The alignment has finished - + The alignment has finished + L'alignement est terminé - The alignment has been canceled - + The alignment has been canceled + L'alignement a été annulé - Too few points picked in the left view. At least %1 points are needed. - + Too few points picked in the left view. At least %1 points are needed. + Trop peu de points sélectionnés dans la vue gauche. Au moins %1 point sont nécessaires. - Too few points picked in the right view. At least %1 points are needed. - + Too few points picked in the right view. At least %1 points are needed. + Trop peu de points sélectionnés dans la vue droite. Au moins %1 point sont nécessaires. - Different number of points picked in left and right view. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Un nombre différent de points a été sélectionné dans les vues de gauche et de droite Sur la vue gauche %1 points ont été sélectionnés, sur la vue droite %2 points ont été sélectionnés. - Try to align group of views - + Try to align group of views + Essayez d'aligner les groupe de vues - The alignment failed. + The alignment failed. How do you want to proceed? - + Impossible d'aligner. Comment voulez-vous procéder? - Retry - + Retry + Réessayer - Ignore - + Ignore + Ignorer - Abort - + Abort + Abandonner - Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + Un nombre différent de points a été sélectionné dans les vues de gauche et de droite. Sur la vue gauche %1 points ont été sélectionnés, sur la vue droite %2 points ont été sélectionnés. - Point picked at (%1,%2,%3) - + Point picked at (%1,%2,%3) + Point sélectionné en (%1, %2, %3) - No point was picked - + No point was picked + Aucun point n'a été sélectionné - - + + Gui::NetworkRetriever - Download started... + Download started... - Téléchargement commencé... + Téléchargement commencé... - - + + Gui::ProgressBar - Remaining: %1 - Restant : %1 + Remaining: %1 + Restant : %1 - Aborting - Abandon + Aborting + Abandon - Do you really want to abort the operation? - Voulez-vous vraiment abandonner l'opération? + Do you really want to abort the operation? + Voulez-vous vraiment abandonner l'opération? - - + + Gui::ProgressDialog - Remaining: %1 - Restant : %1 + Remaining: %1 + Restant : %1 - Aborting - Abandon + Aborting + Abandon - Do you really want to abort the operation? - Voulez-vous vraiment abandonner l'opération? + Do you really want to abort the operation? + Voulez-vous vraiment abandonner l'opération? - - + + Gui::PropertyEditor::PropertyModel - Property - Propriété + Property + Propriété - Value - Valeur + Value + Valeur - - + + Gui::PropertyView - View - Vue + View + Vue - Data - Données + Data + Données - - + + Gui::PythonConsole - System exit - Sortie système + System exit + Sortie système - The application is still running. + The application is still running. Do you want to exit without saving your data? - L'application est en cours d'exécution. + L'application est en cours d'exécution. Voulez vous quitter sans sauvegarder vos données? - Python console - Console Python + Python console + Console Python - Unhandled PyCXX exception. - Exception PyCXX non gérée. + Unhandled PyCXX exception. + Exception PyCXX non gérée. - Unhandled FreeCAD exception. - Exception FreeCad non gérée. + Unhandled FreeCAD exception. + Exception FreeCad non gérée. - Unhandled unknown C++ exception. - Exception C++ non gérée et/ou inconnue. + Unhandled unknown C++ exception. + Exception C++ non gérée et/ou inconnue. - &Copy command - &Copier la commande + &Copy command + &Copier la commande - &Copy history - &Copier l'historique + &Copy history + &Copier l'historique - Save history as... - Sauvegarder l'historique sous... + Save history as... + Sauvegarder l'historique sous... - Insert file name... - Insérez un nom de fichier... + Insert file name... + Insérez un nom de fichier... - Save History - Sauvegarder l'historique + Save History + Sauvegarder l'historique - Macro Files (*.FCMacro *.py) - Fichiers Macro(*.FCMacro *.py) + Macro Files (*.FCMacro *.py) + Fichiers Macro(*.FCMacro *.py) - Insert file name - Insérez un nom de fichier + Insert file name + Insérez un nom de fichier - All Files (*.*) - Tous les fichiers (*.*) + All Files (*.*) + Tous les fichiers (*.*) - Python Input Dialog - Dialogue d'entrée Python + Python Input Dialog + Dialogue d'entrée Python - Unhandled std C++ exception. - Exception non gérée de std C++. + Unhandled std C++ exception. + Exception non gérée de std C++. - Word wrap - Retour à la ligne + Word wrap + Retour à la ligne - &Copy - C&opier + &Copy + &Copier - &Paste - &Coller + &Paste + &Coller - Select All - Tout sélectionner + Select All + Tout sélectionner - Clear console - + Clear console + Vider la console - - + + Gui::PythonEditor - Comment - Commentaire + Comment + Commentaire - Uncomment - Décommenter + Uncomment + Décommenter - - + + Gui::PythonInputField - OK - OK + OK + OK - Clear - Effacer + Clear + Effacer - - + + Gui::RecentFilesAction - Open file %1 - Ouvrir le fichier %1 + Open file %1 + Ouvrir le fichier %1 - File not found - Fichier introuvable + File not found + Fichier introuvable - The file '%1' cannot be opened. - Impossible d'ouvrir le fichier '%1'. + The file '%1' cannot be opened. + Impossible d'ouvrir le fichier '%1'. - - + + Gui::SelectModule - Select module - Sélectionner le module + Select module + Sélectionner le module - Open %1 as - Ouvrir '%1' comme + Open %1 as + Ouvrir '%1' comme - Select - Sélectionner + Select + Sélectionner - - + + Gui::StdCmdDescription - Help - Aide + Help + Aide - Des&cription - Des&cription + Des&cription + Des&cription - Long description of commands - Description longue des commandes + Long description of commands + Description longue des commandes - - + + Gui::StdCmdDownloadOnlineHelp - Help - Aide + Help + Aide - Download online help - Télécharger l'aide en ligne + Download online help + Télécharger l'aide en ligne - Download %1's online help - Télécharger l'aide en ligne de %1 + Download %1's online help + Télécharger l'aide en ligne de %1 - Non-existing directory - Dossier inexistant + Non-existing directory + Dossier inexistant - The directory '%1' does not exist. + The directory '%1' does not exist. Do you want to specify an existing directory? - Le dossier '%1' n'existe pas. + Le dossier '%1' n'existe pas. Voulez-vous spécifier un dossier existant? - Missing permission - Erreur de droit d'accès + Missing permission + Erreur de droit d'accès - You don't have write permission to '%1' + You don't have write permission to '%1' Do you want to specify another directory? - Vous n'avez pas l'accès en écriture à '%1'. Voulez-vous indiquer un autre dossier? + Vous n'avez pas l'accès en écriture à '%1'. Voulez-vous indiquer un autre dossier? - Stop downloading - Arrêter le téléchargement + Stop downloading + Arrêter le téléchargement - - + + Gui::StdCmdPythonHelp - Tools - Outils + Tools + Outils - Python Modules - Modules Python + Python Modules + Modules Python - Opens a browser to show the Python modules - Ouvre un navigateur pour afficher les modules Python + Opens a browser to show the Python modules + Ouvre un navigateur pour afficher les modules Python - - + + Gui::TaskBoxAngle - Angle - Angle + Angle + Angle - - + + Gui::TaskBoxPosition - Position - Position + Position + Position - - + + Gui::TaskView::TaskAppearance - Display mode: - Mode d'affichage : + Plot mode: + Mode de tracé : - Plot mode: - Mode de tracé : + Point size: + Taille de point : - Point size: - Taille de point : + Line width: + Épaisseur de ligne : - Line width: - Épaisseur de ligne : + Transparency: + Transparence : - Transparency: - Transparence : + Appearance + Apparence - Appearance - Apparence + Document window: + Fenêtre de document: - - Document window: - - - - + + Gui::TaskView::TaskEditControl - Edit - Éditer + Edit + Éditer - - + + Gui::TaskView::TaskSelectLinkProperty - Appearance - Apparence + Appearance + Apparence - ... - ... + ... + ... - edit selection - modifier la sélection + edit selection + modifier la sélection - - + + Gui::TouchpadNavigationStyle - Press left mouse button - Appuyez sur le bouton gauche de la souris + Press left mouse button + Appuyez sur le bouton gauche de la souris - Press SHIFT button - + Press SHIFT button + Appuyez sur la touche SHIFT - Press ALT button - + Press ALT button + Appuyez sur la touche ALT - Press PgUp/PgDown button - + Press PgUp/PgDown button + Appuyez sur la touche PgUp/PgDown - - - Gui::Translator - - English - Anglais - - - + + Gui::TreeDockWidget - Tree view - Vue arborescente + Tree view + Vue arborescente - - + + Gui::TreeWidget - Create group... - Créer un groupe... + Create group... + Créer un groupe... - Create a group - Créer un groupe + Create a group + Créer un groupe - Group - Groupe + Group + Groupe - Rename - Renommer + Rename + Renommer - Rename object - Renommer un objet + Rename object + Renommer un objet - Labels & Attributes - Étiquettes & attributs + Labels & Attributes + Étiquettes & attributs - Application - Application + Application + Application - Finish editing - Terminer l'édition + Finish editing + Terminer l'édition - Finish editing object - Terminer l'édition de l'objet + Finish editing object + Terminer l'édition de l'objet - Activate document - Activer le document + Activate document + Activer le document - Activate document %1 - Activer document %1 + Activate document %1 + Activer document %1 - - + + Gui::View3DInventor - Export PDF - Exporter vers PDF + Export PDF + Exporter vers PDF - PDF file (*.pdf) - Fichier PDF (*.pdf) + PDF file (*.pdf) + Fichier PDF (*.pdf) - - + + Gui::WorkbenchGroup - Select the '%1' workbench - Sélectionner l'atelier '%1' + Select the '%1' workbench + Sélectionner l'atelier '%1' - - + + Position - Form - Forme + Form + Forme - X: - X : + X: + X : - Y: - Y : + Y: + Y : - Z: - Z : + Z: + Z : - 0.1 mm - 0,1 mm + 0.1 mm + 0,1 mm - 0.5 mm - 0,5 mm + 0.5 mm + 0,5 mm - 1 mm - 1 mm + 1 mm + 1 mm - 2 mm - 2 mm + 2 mm + 2 mm - 5 mm - 5 mm + 5 mm + 5 mm - 10 mm - 10 mm + 10 mm + 10 mm - 20 mm - 20 mm + 20 mm + 20 mm - 50 mm - 50 mm + 50 mm + 50 mm - 100 mm - 100 mm + 100 mm + 100 mm - 200 mm - 200 mm + 200 mm + 200 mm - 500 mm - 500 mm + 500 mm + 500 mm - 1 m - 1 m + 1 m + 1 m - 2 m - 2 m + 2 m + 2 m - 5 m - 5 m + 5 m + 5 m - Grid Snap in - Accrochage de grille + Grid Snap in + Accrochage de grille - - + + QDockWidget - Tree view - Vue arborescente + Tree view + Vue arborescente - Property view - Affichage des propriétés + Property view + Affichage des propriétés - Selection view - Afficher la sélection + Selection view + Afficher la sélection - Report view - Vue rapport + Report view + Vue rapport - Task View - Afficher les tâches + Task View + Afficher les tâches - Combo View - Vue combinée + Combo View + Vue combinée - Toolbox - Boîte à outils + Toolbox + Boîte à outils - Python console - Console Python + Python console + Console Python - Display properties - Propriétés d'affichage + Display properties + Propriétés d'affichage - - + + QObject - General - Général + General + Général - Display - Affichage + Display + Affichage - Unknown filetype - Type de fichier inconnu + Unknown filetype + Type de fichier inconnu - Cannot open unknown filetype: %1 - Impossible d'ouvrir un type de fichier inconnu : %1 + Cannot open unknown filetype: %1 + Impossible d'ouvrir un type de fichier inconnu : %1 - Cannot save to unknown filetype: %1 - Impossible de sauvegarder ce type de fichier inconnu : %1 + Cannot save to unknown filetype: %1 + Impossible de sauvegarder ce type de fichier inconnu : %1 - Workbench failure - Atelier défaillant + Workbench failure + Atelier défaillant - %1 - %1 + %1 + %1 - Unable to launch Qt Assistant (%1) - Impossible de charger l'assistant Qt (%1) + Unable to launch Qt Assistant (%1) + Impossible de charger l'assistant Qt (%1) - Exception - Exception + Exception + Exception - Open document - Ouvrir un document + Open document + Ouvrir un document - Import file - Importer un fichier + Import file + Importer un fichier - Export file - Exporter un fichier + Export file + Exporter un fichier - Printing... - Impression... + Printing... + Impression... - Cannot load workbench - Impossible de charger l'atelier + Cannot load workbench + Impossible de charger l'atelier - A general error occurred while loading the workbench - Une erreur générale s'est produite lors du chargement de l'atelier + A general error occurred while loading the workbench + Une erreur générale s'est produite lors du chargement de l'atelier - File not found - Fichier introuvable + Save views... + Enregistrer les vues... - Cannot open file %1 - Impossible d'ouvrir le fichier %1 + Load views... + Charger les vues... - Save views... - Enregistrer les vues... + Freeze view + Figer la vue - Load views... - Charger les vues... + Clear views + Effacer les vues - Freeze view - Figer la vue + Restore view &%1 + Restaurer la vue &%1 - Clear views - Effacer les vues + Save frozen views + Enregistrer les vues figées - Restore view &%1 - Restaurer la vue &%1 + Frozen views (*.cam) + Vues figées (*.cam) - Save frozen views - Enregistrer les vues figées + Restore views + Restaurer les vues - Frozen views (*.cam) - Vues figées (*.cam) - - - Restore views - Restaurer les vues - - - Importing the restored views would clear the already stored views. + Importing the restored views would clear the already stored views. Do you want to continue? - Importer des vues enregistrées effacera les vues déjà stockées. Voulez-vous continuer? + Importer des vues enregistrées effacera les vues déjà stockées. Voulez-vous continuer? - Restore frozen views - Restaurer les vues figées + Restore frozen views + Restaurer les vues figées - Cannot open file '%1'. - Impossible d'ouvrir le fichier '%1'. + Cannot open file '%1'. + Impossible d'ouvrir le fichier '%1'. - Docked - Dockée + Docked + Dockée - Undocked - Non dockée + Undocked + Non dockée - Fullscreen - Plein écran + Fullscreen + Plein écran - files - fichiers + files + fichiers - Save picture - Enregistrer l'image + Save picture + Enregistrer l'image - New sub-group - Nouveau sous-groupe + New sub-group + Nouveau sous-groupe - Enter the name: - Entrer le nom : + Enter the name: + Entrer le nom : - New text item - Nouvel article texte + New text item + Nouvel article texte - Enter your text: - Saisir votre texte : + Enter your text: + Saisir votre texte : - New integer item - Nouvel article entier + New integer item + Nouvel article entier - Enter your number: - Saisir votre nombre : + Enter your number: + Saisir votre nombre : - New unsigned item - Nouvel article non signé + New unsigned item + Nouvel article non signé - New float item - Nouvel article flottant + New float item + Nouvel article flottant - New Boolean item - Nouvel article booléen + New Boolean item + Nouvel article booléen - Choose an item: - Choisir un article : + Choose an item: + Choisir un article : - Rename group - Renommer le groupe + Rename group + Renommer le groupe - The group '%1' cannot be renamed. - Le groupe '%1' ne peut pas être renommé. + The group '%1' cannot be renamed. + Le groupe '%1' ne peut pas être renommé. - Existing group - Groupe existant + Existing group + Groupe existant - The group '%1' already exists. - Le groupe '%1' existe déjà. + The group '%1' already exists. + Le groupe '%1' existe déjà. - Change value - Changer la valeur + Change value + Changer la valeur - Save document under new filename... - Enregistrer le document sous un nouveau nom… + Save document under new filename... + Enregistrer le document sous un nouveau nom… - Saving aborted - Sauvegarde abandonnée + Saving aborted + Sauvegarde abandonnée - Unsaved document - Document non sauvegardé + Unsaved document + Document non sauvegardé - Save document before close? - Enregistrer le document avant de fermer ? + Save document before close? + Enregistrer le document avant de fermer ? - Save Macro - Enregistrer la macro + Save Macro + Enregistrer la macro - Finish - Terminer + Finish + Terminer - Clear - Effacer + Clear + Effacer - Cancel - Annuler + Cancel + Annuler - Inner - Intérieur + Inner + Intérieur - Outer - Extérieur + Outer + Extérieur - No Browser - Pas de navigateur + No Browser + Pas de navigateur - Unable to open your browser. + Unable to open your browser. Please open a browser window and type in: http://localhost:%1. - Impossible d'ouvrir votre navigateur. + Impossible d'ouvrir votre navigateur. Veuillez ouvrir une fenêtre de navigateur et saisir : http://localhost:%1. - No Server - Aucun serveur + No Server + Aucun serveur - Unable to start the server to port %1: %2. - Impossible de démarrer le serveur sur le port %1: %2. + Unable to start the server to port %1: %2. + Impossible de démarrer le serveur sur le port %1: %2. - Unable to open your system browser. - Impossible d'ouvrir le navigateur système. + Unable to open your system browser. + Impossible d'ouvrir le navigateur système. - Options... - Options... + Options... + Options... - Out of memory - Mémoire insuffisante + Out of memory + Mémoire insuffisante - Not enough memory available to display the data. - Mémoire insuffisante pour afficher les données. + Not enough memory available to display the data. + Mémoire insuffisante pour afficher les données. - Cannot find file %1 - Fichier %1 introuvable + Cannot find file %1 + Fichier %1 introuvable - Cannot find file %1 neither in %2 nor in %3 - Impossible de trouver le fichier %1 ni dans %2 ni dans %3 + Cannot find file %1 neither in %2 nor in %3 + Impossible de trouver le fichier %1 ni dans %2 ni dans %3 - Save %1 Document - Enregistrer le document %1 + Save %1 Document + Enregistrer le document %1 - %1 document (*.FCStd) - Document %1 (*.FCStd) + %1 document (*.FCStd) + Document %1 (*.FCStd) - Save As - Enregistrer sous + Save As + Enregistrer sous - %1 already exists. + %1 already exists. Do you want to replace it? - %1 existe déjà. + %1 existe déjà. Voulez-vous le remplacer ? - Document not closable - Impossible de fermer le document + Document not closable + Impossible de fermer le document - The document is not closable for the moment. - Impossible de fermer le document pour le moment. + The document is not closable for the moment. + Impossible de fermer le document pour le moment. - No OpenGL - Pas d'OpenGL + No OpenGL + Pas d'OpenGL - This system does not support OpenGL - Ce système ne prend pas en charge OpenGL + This system does not support OpenGL + Ce système ne prend pas en charge OpenGL - Help - Aide + Help + Aide - Unable to load documentation. + Unable to load documentation. In order to load it Qt 4.4 or higher is required. - Impossible de charger la documentation. Qt 4.4 ou supérieur est requis. + Impossible de charger la documentation. Qt 4.4 ou supérieur est requis. - %1 Help - % 1 Aide + %1 Help + % 1 Aide - Exporting PDF... - Exportation PDF ... + Exporting PDF... + Exportation PDF ... - Wrong selection - Sélection invalide + Wrong selection + Sélection invalide - Only one object selected. Please select two objects. + Only one object selected. Please select two objects. Be aware the point where you click matters. - Un seul objet sélectionné. Veuillez sélectionner deux objets. Soyez attentif à l'endroit où vous cliquez. + Un seul objet sélectionné. Veuillez sélectionner deux objets. Soyez attentif à l'endroit où vous cliquez. - Please select two objects. + Please select two objects. Be aware the point where you click matters. - Veuillez sélectionner deux objets. Soyez attentif à l'endroit où vous cliquez. + Veuillez sélectionner deux objets. Soyez attentif à l'endroit où vous cliquez. - New boolean item - Nouvel élément booléen + New boolean item + Nouvel élément booléen - Navigation styles - Styles de navigation + Navigation styles + Styles de navigation - %1 navigation - %1 de navigation + %1 navigation + %1 de navigation - Move annotation - Déplacer l'annotation + Move annotation + Déplacer l'annotation - Transform - Transformer + Transform + Transformer - The document is in editing mode and thus cannot be closed for the moment. + The document is in editing mode and thus cannot be closed for the moment. You either have to finish or cancel the editing in the task panel. - Le document est en mode édition et ne peut donc être fermé pour le moment. Vous devez soit terminer ou annuler l'édition dans le panneau des Tâches. + Le document est en mode édition et ne peut donc être fermé pour le moment. Vous devez soit terminer ou annuler l'édition dans le panneau des Tâches. - - + + StdBoxSelection - Standard-View - Vue standard + Standard-View + Vue standard - Box selection - + Box selection + Sélection par boîte - - + + StdCmdAbout - Help - Aide + Help + Aide - &About %1 - &À propos de %1 + &About %1 + &À propos de %1 - About %1 - À propos de %1 + About %1 + À propos de %1 - - + + StdCmdAboutQt - Help - Aide + Help + Aide - About &Qt - À propos de &Qt + About &Qt + À propos de &Qt - About Qt - À propos de Qt + About Qt + À propos de Qt - - + + StdCmdActivateNextWindow - Window - Fenêtre + Window + Fenêtre - Ne&xt - Su&ivante + Ne&xt + Su&ivante - Activate next window - Activer la fenêtre suivante + Activate next window + Activer la fenêtre suivante - - + + StdCmdActivatePrevWindow - Window - Fenêtre + Window + Fenêtre - Pre&vious - Pré&cédente + Pre&vious + Pré&cédente - Activate previous window - Activer la fenêtre précédente + Activate previous window + Activer la fenêtre précédente - - + + StdCmdAlignment - Edit - Éditer + Edit + Éditer - Alignment... - + Alignment... + Alignement... - Align the selected objects - + Align the selected objects + Aligner les objets sélectionnés - - + + StdCmdArrangeIcons - Window - Fenêtre + Window + Fenêtre - Arrange &Icons - Organiser les &Icônes + Arrange &Icons + Organiser les &Icônes - Arrange Icons - Organiser les icônes + Arrange Icons + Organiser les icônes - - + + StdCmdAxisCross - Standard-View - Vue standard + Standard-View + Vue standard - Toggle axis cross - Afficher les axes de coordonnées + Toggle axis cross + Afficher les axes de coordonnées - - + + StdCmdCascadeWindows - Window - Fenêtre + Window + Fenêtre - &Cascade - &Fenêtres en cascade + &Cascade + &Fenêtres en cascade - Tile pragmatic - Organisation pragmatique + Tile pragmatic + Organisation pragmatique - - + + StdCmdCloseActiveWindow - Window - Fenêtre + Window + Fenêtre - Cl&ose - Fe&rmer + Cl&ose + Fe&rmer - Close active window - Fermer la fenêtre active + Close active window + Fermer la fenêtre active - - + + StdCmdCloseAllWindows - Window - Fenêtre + Window + Fenêtre - Close Al&l - Fermer &tout + Close Al&l + Fermer &tout - Close all windows - Fermer toutes les fenêtres + Close all windows + Fermer toutes les fenêtres - - + + StdCmdCommandLine - Tools - Outils + Tools + Outils - Start command &line... - Démarrer la &ligne de commande... + Start command &line... + Démarrer la &ligne de commande... - Opens the command line in the console - Ouvre la ligne de commande dans la console + Opens the command line in the console + Ouvre la ligne de commande dans la console - - + + StdCmdCopy - Edit - Éditer + Edit + Éditer - C&opy - C&opier + C&opy + C&opier - Copy operation - Opération de copie + Copy operation + Opération de copie - - + + StdCmdCut - Edit - Éditer + Edit + Éditer - &Cut - &Couper + &Cut + &Couper - Cut out - Découpe + Cut out + Découpe - - - StdCmdDDuplicateSelection - - Edit - Éditer - - - Duplicate selection - Dupliquer la sélection - - - Put duplicates of the selected objects to the active document - Mettre la duplication des objets sélectionnés dans le document actif - - - + + StdCmdDelete - Edit - Éditer + Edit + Éditer - &Delete - &Effacer + &Delete + &Effacer - Deletes the selected objects - Efface les objets sélectionnés + Deletes the selected objects + Efface les objets sélectionnés - - + + StdCmdDemoMode - Standard-View - Vue standard + Standard-View + Vue standard - View turntable... - Vue en rotation... + View turntable... + Vue en rotation... - View turntable - Vue en rotation + View turntable + Vue en rotation - - + + StdCmdDlgCustomize - Tools - Outils + Tools + Outils - Cu&stomize... - Per&sonnaliser... + Cu&stomize... + Per&sonnaliser... - Customize toolbars and command bars - Personnaliser les barres d'outils et de commandes + Customize toolbars and command bars + Personnaliser les barres d'outils et de commandes - - + + StdCmdDlgMacroExecute - Macros ... - Macros ... + Macros ... + Macros ... - Opens a dialog to let you execute a recorded macro - Ouvre une boite de dialogue pour exécuter une macro enregistrée + Opens a dialog to let you execute a recorded macro + Ouvre une boite de dialogue pour exécuter une macro enregistrée - Macro - Macro + Macro + Macro - - + + StdCmdDlgMacroExecuteDirect - Macro - Macro + Macro + Macro - Execute macro - Lancer la macro + Execute macro + Lancer la macro - Execute the macro in the editor - Exécutez la macro dans l'éditeur + Execute the macro in the editor + Exécutez la macro dans l'éditeur - - + + StdCmdDlgMacroRecord - &Macro recording ... - &Enregistrement de macro ... + &Macro recording ... + &Enregistrement de macro ... - Opens a dialog to record a macro - Ouvre une boite de dialogue pour enregistrer une macro + Opens a dialog to record a macro + Ouvre une boite de dialogue pour enregistrer une macro - Macro - Macro + Macro + Macro - - + + StdCmdDlgParameter - Tools - Outils + Tools + Outils - E&dit parameters ... - É&diter paramètres ... + E&dit parameters ... + É&diter paramètres ... - Opens a Dialog to edit the parameters - Ouvre une boite de dialogue pour éditer les paramètres + Opens a Dialog to edit the parameters + Ouvre une boite de dialogue pour éditer les paramètres - - + + StdCmdDlgPreferences - Tools - Outils + Tools + Outils - &Preferences ... - &Préférences ... + &Preferences ... + &Préférences ... - Opens a Dialog to edit the preferences - Ouvre une boite de dialogue pour éditer les préférences + Opens a Dialog to edit the preferences + Ouvre une boite de dialogue pour éditer les préférences - - + + StdCmdDockViewMenu - View - Vue + View + Vue - Vie&ws - Vu&es + Vie&ws + Vu&es - Toggles this window - Bascule cette fenêtre + Toggles this window + Bascule cette fenêtre - - + + StdCmdDrawStyle - Standard-View - Vue standard + Standard-View + Vue standard - Draw style - Style de représentation + Draw style + Style de représentation - - + + StdCmdDuplicateSelection - Edit - Éditer + Edit + Éditer - Duplicate selection - Dupliquer la sélection + Duplicate selection + Dupliquer la sélection - Put duplicates of the selected objects to the active document - Mettre la duplication des objets sélectionnés dans le document actif + Put duplicates of the selected objects to the active document + Mettre la duplication des objets sélectionnés dans le document actif - - + + StdCmdEdit - Edit - Éditer + Edit + Éditer - Toggle &Edit mode - + Toggle &Edit mode + Basculer le mode d'é&dition - Toggles the selected object's edit mode - + Toggles the selected object's edit mode + Active ou désactive le mode d'édition de l'objet sélectionné - Enters or leaves the selected object's edit mode - + Enters or leaves the selected object's edit mode + Entre ou quitte le mode d'édition de l'objet sélectionné - - + + StdCmdExport - File - Fichier + File + Fichier - &Export... - &Exporter... + &Export... + &Exporter... - Export an object in the active document - Exporter un fichier dans le document actif + Export an object in the active document + Exporter un fichier dans le document actif - Supported formats - Formats supportés + No selection + Pas de sélection - No selection - + Please select first the objects you want to export. + Veuillez d'abord sélectionner les objets que vous souhaitez exporter. - - Please select first the objects you want to export. - - - - + + StdCmdExportGraphviz - Tools - Outils + Tools + Outils - Dependency graph... - + Dependency graph... + Graphique de dépendance... - Show the dependency graph of the objects in the active document - + Show the dependency graph of the objects in the active document + Afficher le graphique de dépendance des objets du document actif - - + + StdCmdFeatRecompute - File - Fichier + File + Fichier - &Recompute - &Recalculer + &Recompute + &Recalculer - Recompute feature or document - Recalculer la fonction ou le document + Recompute feature or document + Recalculer la fonction ou le document - - + + StdCmdFreeCADWebsite - Help - Aide + Help + Aide - FreeCAD Website - Site Web de FreeCAD + FreeCAD Website + Site Web de FreeCAD - The FreeCAD website - Le site web de FreeCAD + The FreeCAD website + Le site web de FreeCAD - - + + StdCmdFreezeViews - Standard-View - Vue standard + Standard-View + Vue standard - Freeze display - Figer l'affichage + Freeze display + Figer l'affichage - Freezes the current view position - Figer la position actuelle de la vue + Freezes the current view position + Figer la position actuelle de la vue - - + + StdCmdHideObjects - Standard-View - Vue standard + Standard-View + Vue standard - Hide all objects - Masquer tous les objets + Hide all objects + Masquer tous les objets - Hide all objects in the document - Masquer tous les objets dans le document + Hide all objects in the document + Masquer tous les objets dans le document - - + + StdCmdHideSelection - Standard-View - Vue standard + Standard-View + Vue standard - Hide selection - Masquer la sélection + Hide selection + Masquer la sélection - Hide all selected objects - Masquer tous les objets sélectionnés + Hide all selected objects + Masquer tous les objets sélectionnés - - + + StdCmdImport - File - Fichier + File + Fichier - &Import... - &Importer... + &Import... + &Importer... - Import a file in the active document - Importer un fichier dans le document actif + Import a file in the active document + Importer un fichier dans le document actif - Supported formats - Formats supportés + Supported formats + Formats supportés - All files (*.*) - Tous les fichiers (*.*) + All files (*.*) + Tous les fichiers (*.*) - - + + StdCmdMacroStartDebug - Macro - Macro + Macro + Macro - Debug macro - Déboguer la macro + Debug macro + Déboguer la macro - Start debugging of macro - Démarrer le débogage de macro + Start debugging of macro + Démarrer le débogage de macro - - + + StdCmdMacroStepOver - Macro - Macro + Macro + Macro - Step over - Passer outre + Step over + Passer outre - - + + StdCmdMacroStopDebug - Macro - Macro + Macro + Macro - Stop debugging - Arrêter le débogage + Stop debugging + Arrêter le débogage - Stop debugging of macro - Arrêter le débogage de macro + Stop debugging of macro + Arrêter le débogage de macro - - + + StdCmdMacroStopRecord - Macro - Macro + Macro + Macro - S&top macro recording - Arrê&ter l'enregistrement de la macro + S&top macro recording + Arrê&ter l'enregistrement de la macro - Stop the macro recording session - Arrêter le fonctionnement de la session d'enregistrement de macro + Stop the macro recording session + Arrêter le fonctionnement de la session d'enregistrement de macro - - + + StdCmdMeasureDistance - View - Vue + View + Vue - Measure distance - Mesurer une distance + Measure distance + Mesurer une distance - - + + StdCmdMeasurementSimple - Tools - Outils + Tools + Outils - Mesure distance - Mesurer la distance + Measures distance between two selected objects + Mesure la distance entre deux objets sélectionnés - Measures distance between two selected objects - Mesure la distance entre deux objets sélectionnés + Measure distance + Mesurer une distance - - Measure distance - Mesurer une distance - - - + + StdCmdMergeProjects - File - Fichier + File + Fichier - Merge project... - Fusionner un projet... + Merge project... + Fusionner un projet... - Merge project - Fusionner un projet + Merge project + Fusionner un projet - %1 document (*.fcstd) - document %1 (*.fcstd) + %1 document (*.fcstd) + document %1 (*.fcstd) - Cannot merge project with itself. - Impossible de fusionner le projet avec lui-même. + Cannot merge project with itself. + Impossible de fusionner le projet avec lui-même. - - + + StdCmdNew - File - Fichier + File + Fichier - &New - &Nouveau + &New + &Nouveau - Create a new empty document - Créer un nouveau document vide + Create a new empty document + Créer un nouveau document vide - - + + StdCmdOnlineHelp - Help - Aide + Help + Aide - Show help to the application - Montrer l'aide dans l'application + Show help to the application + Montrer l'aide dans l'application - - - StdCmdOnlineHelpPython - - Help - Aide - - - Python Manuals - Manuels Python - - - Show the Python documentation - Voir la documentation Python - - - + + StdCmdOnlineHelpWebsite - Help - Aide + Help + Aide - Help Website - Site Web d'aide + Help Website + Site Web d'aide - The website where the help is maintained - Le site web où l'aide est maintenue + The website where the help is maintained + Le site web où l'aide est maintenue - - + + StdCmdOpen - File - Fichier + File + Fichier - &Open... - &Ouvrir... + &Open... + &Ouvrir... - Open a document or import files - Ouvrir un document ou importer des fichiers + Open a document or import files + Ouvrir un document ou importer des fichiers - Supported formats - Formats supportés + Supported formats + Formats supportés - All files (*.*) - Tous les fichiers (*.*) + All files (*.*) + Tous les fichiers (*.*) - - + + StdCmdPaste - Edit - Éditer + Edit + Éditer - &Paste - &Coller + &Paste + &Coller - Paste operation - Opération de collage + Paste operation + Opération de collage - - + + StdCmdPlacement - Edit - Éditer + Edit + Éditer - Placement... - Positionnement... + Placement... + Positionnement... - Place the selected objects - Positionner les objets sélectionnés + Place the selected objects + Positionner les objets sélectionnés - - + + StdCmdPrint - File - Fichier + File + Fichier - &Print... - &Imprimer... + &Print... + &Imprimer... - Print the document - Imprimer le document + Print the document + Imprimer le document - - + + StdCmdPrintPdf - File - Fichier + File + Fichier - &Export PDF... - &Exporter au format PDF... + &Export PDF... + &Exporter au format PDF... - Export the document as PDF - Exporter le document au format PDF + Export the document as PDF + Exporter le document au format PDF - - + + StdCmdPrintPreview - File - Fichier + File + Fichier - &Print preview... - &Aperçu avant impression... + &Print preview... + &Aperçu avant impression... - Print the document - Imprimer le document + Print the document + Imprimer le document - Print preview - Aperçu avant impression + Print preview + Aperçu avant impression - - + + StdCmdProjectInfo - File - Fichier + File + Fichier - Project i&nformation... - I&nformations sur le projet ... + Project i&nformation... + I&nformations sur le projet ... - Show details of the currently active project - Afficher les détails du projet actif + Show details of the currently active project + Afficher les détails du projet actif - - + + StdCmdProjectUtil - Tools - Outils + Tools + Outils - Project utility... - Utilitaire de projet... + Project utility... + Utilitaire de projet... - Utility to extract or create project files - Utilitaire pour extraire ou créer des fichiers de projet + Utility to extract or create project files + Utilitaire pour extraire ou créer des fichiers de projet - - + + StdCmdPythonWebsite - Help - Aide + Help + Aide - Python Website - Site Web Python + Python Website + Site Web Python - The official Python website - Le site officiel de Python + The official Python website + Le site officiel de Python - - + + StdCmdQuit - File - Fichier + File + Fichier - E&xit - &Quitter + E&xit + &Quitter - Quits the application - Quitte l'application + Quits the application + Quitte l'application - - + + StdCmdRandomColor - File - Fichier + File + Fichier - Random color - Couleur aléatoire + Random color + Couleur aléatoire - - + + StdCmdRecentFiles - File - Fichier + File + Fichier - Recent files - Fichiers récents + Recent files + Fichiers récents - Recent file list - Liste des fichiers récents + Recent file list + Liste des fichiers récents - - + + StdCmdRedo - Edit - Éditer + Edit + Éditer - &Redo - &Rétablir + &Redo + &Rétablir - Redoes a previously undone action - Rétablit une action précédemment annulée + Redoes a previously undone action + Rétablit une action précédemment annulée - - + + StdCmdRefresh - Edit - Éditer + Edit + Éditer - &Refresh - &Rafraîchir + &Refresh + &Rafraîchir - Recomputes the current active document - Recalculer le document actif + Recomputes the current active document + Recalculer le document actif - - + + StdCmdSave - File - Fichier + File + Fichier - &Save - &Enregistrer + &Save + &Enregistrer - Save the active document - Enregistrer le document actif + Save the active document + Enregistrer le document actif - - + + StdCmdSaveAs - File - Fichier + File + Fichier - Save &As... - Enregistrer &sous… + Save &As... + Enregistrer &sous… - Save the active document under a new file name - Enregistrer le document actif sous un nouveau nom + Save the active document under a new file name + Enregistrer le document actif sous un nouveau nom - - + + StdCmdSceneInspector - Tools - Outils + Tools + Outils - Scene inspector... - Inspecteur de scène... + Scene inspector... + Inspecteur de scène... - Scene inspector - Inspecteur de scène + Scene inspector + Inspecteur de scène - - + + StdCmdSelectAll - Edit - Éditer + Edit + Éditer - Select &All - &Tout sélectionner + Select &All + &Tout sélectionner - Select all - Tout sélectionner + Select all + Tout sélectionner - - + + StdCmdSetAppearance - Standard-View - Vue standard + Standard-View + Vue standard - Appearance... - Apparence... + Appearance... + Apparence... - Sets the display properties of the selected object - Définit les propriétés d'affichage de l'objet sélectionné + Sets the display properties of the selected object + Définit les propriétés d'affichage de l'objet sélectionné - - + + StdCmdShowObjects - Standard-View - Vue standard + Standard-View + Vue standard - Show all objects - Afficher tous les objets + Show all objects + Afficher tous les objets - Show all objects in the document - Afficher tous les objets dans le document + Show all objects in the document + Afficher tous les objets dans le document - - + + StdCmdShowSelection - Standard-View - Vue standard + Standard-View + Vue standard - Show selection - Afficher la sélection + Show selection + Afficher la sélection - Show all selected objects - Afficher tous les objets sélectionnés + Show all selected objects + Afficher tous les objets sélectionnés - - + + StdCmdStatusBar - View - Vue + View + Vue - Status bar - Barre d'état + Status bar + Barre d'état - Toggles the status bar - Bascule l'affichage de la barre d'état + Toggles the status bar + Bascule l'affichage de la barre d'état - - + + StdCmdTextureMapping - Tools - Outils + Tools + Outils - Texture mapping... - Mappage de texture... + Texture mapping... + Mappage de texture... - Texture mapping - Mappage de texture + Texture mapping + Mappage de texture - - + + StdCmdTileWindows - Window - Fenêtre + Window + Fenêtre - &Tile - &Mosaïque + &Tile + &Mosaïque - Tile the windows - Disposer les fenêtres en mosaïque + Tile the windows + Disposer les fenêtres en mosaïque - - + + StdCmdToggleBreakpoint - Macro - Macro + Macro + Macro - Toggle breakpoint - Basculer le point d'arrêt + Toggle breakpoint + Basculer le point d'arrêt - - + + StdCmdToggleClipPlane - Standard-View - Vue standard + Standard-View + Vue standard - Clipping plane - Plan de coupe + Clipping plane + Plan de coupe - Toggles clipping plane for active view - Bascule le plan de coupe pour la vue active + Toggles clipping plane for active view + Bascule le plan de coupe pour la vue active - - + + StdCmdToggleNavigation - Standard-View - Vue standard + Standard-View + Vue standard - Toggle navigation/Edit mode - Basculer en mode navigation/édition + Toggle navigation/Edit mode + Basculer en mode navigation/édition - Toggle between navigation and edit mode - Basculer entre le mode navigation et le mode d'édition + Toggle between navigation and edit mode + Basculer entre le mode navigation et le mode d'édition - - + + StdCmdToggleObjects - Standard-View - Vue standard + Standard-View + Vue standard - Toggle all objects - Basculer tous les objets + Toggle all objects + Basculer tous les objets - Toggles visibility of all objects in the active document - Bascule la visibilité de tous les objets dans le document actif + Toggles visibility of all objects in the active document + Bascule la visibilité de tous les objets dans le document actif - - + + StdCmdToggleSelectability - Standard-View - Vue standard + Standard-View + Vue standard - Toggle selectability - Basculer la sélectivité + Toggle selectability + Basculer la sélectivité - Toggles the property of the objects to get selected in the 3D-View - Basculer la propriété des objets à sélectionner dans la vue 3D + Toggles the property of the objects to get selected in the 3D-View + Basculer la propriété des objets à sélectionner dans la vue 3D - - + + StdCmdToggleVisibility - Standard-View - Vue standard + Standard-View + Vue standard - Toggle visibility - Basculer la visibilité + Toggle visibility + Basculer la visibilité - Toggles visibility - Bascule la visibilité + Toggles visibility + Bascule la visibilité - - + + StdCmdToolBarMenu - View - Vue + View + Vue - Tool&bars - Barres d'&outils + Tool&bars + Barres d'&outils - Toggles this window - Bascule cette fenêtre + Toggles this window + Bascule cette fenêtre - - + + StdCmdTransform - Edit - Éditer + Edit + Éditer - Transform... - Transformer... + Transform... + Transformer... - Transform the geometry of selected objects - Transformer la géométrie des objets sélectionnés + Transform the geometry of selected objects + Transformer la géométrie des objets sélectionnés - - + + StdCmdTreeSelection - View - Vue + View + Vue - Go to selection - Aller à la sélection + Go to selection + Aller à la sélection - Scroll to first selected item - Défiler jusqu'au premier élément sélectionné + Scroll to first selected item + Défiler jusqu'au premier élément sélectionné - - + + StdCmdUndo - Edit - Éditer + Edit + Éditer - &Undo - &Annuler + &Undo + &Annuler - Undo exactly one action - Annuler exactement une action + Undo exactly one action + Annuler exactement une action - - + + StdCmdUserInterface - View - Vue + View + Vue - Dock views - Ancrer les vues + Dock views + Ancrer les vues - Dock all top-level views - Ancrer toutes les vues de premier niveau + Dock all top-level views + Ancrer toutes les vues de premier niveau - - + + StdCmdViewAxo - Standard-View - Vue standard + Standard-View + Vue standard - Axometric - Axonométrique + Axometric + Axonométrique - Set to axometric view - Passer en vue axonométrique + Set to axometric view + Passer en vue axonométrique - - + + StdCmdViewBottom - Standard-View - Vue standard + Standard-View + Vue standard - Bottom - Dessous + Bottom + Dessous - Set to bottom view - Afficher la vue de dessous + Set to bottom view + Afficher la vue de dessous - - + + StdCmdViewCreate - Standard-View - Vue standard + Standard-View + Vue standard - Create new view - Créer une nouvelle vue + Create new view + Créer une nouvelle vue - Creates a new view window for the active document - Créez une nouvelle fenêtre de vue pour le document actif + Creates a new view window for the active document + Créez une nouvelle fenêtre de vue pour le document actif - - + + StdCmdViewExample1 - Standard-View - Vue standard + Standard-View + Vue standard - Inventor example #1 - Exemple Inventor #1 + Inventor example #1 + Exemple Inventor #1 - Shows a 3D texture with manipulator - Affiche une texture 3D avec manipulation + Shows a 3D texture with manipulator + Affiche une texture 3D avec manipulation - - + + StdCmdViewExample2 - Standard-View - Vue standard + Standard-View + Vue standard - Inventor example #2 - Exemple Inventor #2 + Inventor example #2 + Exemple Inventor #2 - Shows spheres and drag-lights - Affiche des sphères et des lumières déplaçables + Shows spheres and drag-lights + Affiche des sphères et des lumières déplaçables - - + + StdCmdViewExample3 - Standard-View - Vue standard + Standard-View + Vue standard - Inventor example #3 - Exemple Inventor #3 + Inventor example #3 + Exemple Inventor #3 - Shows a animated texture - Affiche une texture animée + Shows a animated texture + Affiche une texture animée - - + + StdCmdViewFitAll - Standard-View - Vue standard + Standard-View + Vue standard - Fit all - Tout afficher + Fit all + Tout afficher - Fits the whole content on the screen - Affiche l'ensemble du contenu à l'écran + Fits the whole content on the screen + Affiche l'ensemble du contenu à l'écran - - + + StdCmdViewFitSelection - Standard-View - Vue standard + Standard-View + Vue standard - Fit selection - Affiche la sélection + Fit selection + Affiche la sélection - Fits the selected content on the screen - Affiche le contenu sélectionné à l'écran + Fits the selected content on the screen + Affiche le contenu sélectionné à l'écran - - + + StdCmdViewFront - Standard-View - Vue standard + Standard-View + Vue standard - Front - Face + Front + Face - Set to front view - Afficher la vue de face + Set to front view + Afficher la vue de face - - + + StdCmdViewIvIssueCamPos - Standard-View - Vue standard + Standard-View + Vue standard - Issue camera position - Récupérer la position de la caméra + Issue camera position + Récupérer la position de la caméra - Issue the camera position to the console and to a macro, to easily recall this position - Récupérer la position de la caméra dans la console et dans une macro, pour réutiliser facilement cette position + Issue the camera position to the console and to a macro, to easily recall this position + Récupérer la position de la caméra dans la console et dans une macro, pour réutiliser facilement cette position - - + + StdCmdViewIvStereoInterleavedColumns - Standard-View - Vue standard + Standard-View + Vue standard - Stereo Interleaved Columns - Colonnes stéréo entrelacées + Stereo Interleaved Columns + Colonnes stéréo entrelacées - Switch stereo viewing to Interleaved Columns - Basculer la vision stéréo vers la technique des colonnes entrelacées + Switch stereo viewing to Interleaved Columns + Basculer la vision stéréo vers la technique des colonnes entrelacées - - + + StdCmdViewIvStereoInterleavedRows - Standard-View - Vue standard + Standard-View + Vue standard - Stereo Interleaved Rows - Lignes stéréo entrelacées + Stereo Interleaved Rows + Lignes stéréo entrelacées - Switch stereo viewing to Interleaved Rows - Basculer la vision stéréo vers la technique des ligne entrelacées + Switch stereo viewing to Interleaved Rows + Basculer la vision stéréo vers la technique des ligne entrelacées - - + + StdCmdViewIvStereoOff - Standard-View - Vue standard + Standard-View + Vue standard - Stereo Off - Désactiver la stéréo + Stereo Off + Désactiver la stéréo - Switch stereo viewing off - Désactiver la vision stéréo + Switch stereo viewing off + Désactiver la vision stéréo - - + + StdCmdViewIvStereoQuadBuff - Standard-View - Vue standard + Standard-View + Vue standard - Stereo quad buffer - Tampon stéréo quadruple + Stereo quad buffer + Tampon stéréo quadruple - Switch stereo viewing to quad buffer - Basculer la vision stéreo vers la technique de tampon quadruple + Switch stereo viewing to quad buffer + Basculer la vision stéreo vers la technique de tampon quadruple - - + + StdCmdViewIvStereoRedGreen - Standard-View - Vue standard + Standard-View + Vue standard - Stereo red/green - Stéréo rouge/vert + Stereo red/green + Stéréo rouge/vert - Switch stereo viewing to red/green - Basculer la vue stéréo vers la technique anaglyphique rouge/vert + Switch stereo viewing to red/green + Basculer la vue stéréo vers la technique anaglyphique rouge/vert - - + + StdCmdViewLeft - Standard-View - Vue standard + Standard-View + Vue standard - Left - Gauche + Left + Gauche - Set to left view - Afficher la vue de gauche + Set to left view + Afficher la vue de gauche - - + + StdCmdViewRear - Standard-View - Vue standard + Standard-View + Vue standard - Rear - Arrière + Rear + Arrière - Set to rear view - Afficher la vue arrière + Set to rear view + Afficher la vue arrière - - + + StdCmdViewRight - Standard-View - Vue standard + Standard-View + Vue standard - Right - Droite + Right + Droit - Set to right view - Afficher la vue de droite + Set to right view + Afficher la vue de droite - - + + StdCmdViewRotateLeft - Standard-View - Vue standard + Standard-View + Vue standard - Rotate Left - + Rotate Left + Rotation à gauche - Rotate the view by 90° counter-clockwise - + Rotate the view by 90° counter-clockwise + Faire pivoter l'affichage de 90° dans le sens anti-horaire - - + + StdCmdViewRotateRight - Standard-View - Vue standard + Standard-View + Vue standard - Rotate Right - + Rotate Right + Rotation à droite - Rotate the view by 90° clockwise - + Rotate the view by 90° clockwise + Faire pivoter l'affichage de 90° dans le sens horaire - - + + StdCmdViewTop - Standard-View - Vue standard + Standard-View + Vue standard - Top - Dessus + Top + Dessus - Set to top view - Afficher la vue de dessus + Set to top view + Afficher la vue de dessus - - + + StdCmdWhatsThis - Help - Aide + Help + Aide - &What's This? - &Qu'est-ce que c'est ? + &What's This? + &Qu'est-ce que c'est ? - What's This - Qu'est-ce que c'est + What's This + Qu'est-ce que c'est - - + + StdCmdWindows - Window - Fenêtre + Window + Fenêtre - &Windows... - &Fenêtres... + &Windows... + &Fenêtres... - Windows list - Liste des fenêtres + Windows list + Liste des fenêtres - - + + StdCmdWindowsMenu - Window - Fenêtre + Window + Fenêtre - Activates this window - Active cette fenêtre + Activates this window + Active cette fenêtre - - + + StdCmdWorkbench - View - Vue + View + Vue - Workbench - Atelier + Workbench + Atelier - Switch between workbenches - Basculer entre les ateliers + Switch between workbenches + Basculer entre les ateliers - - + + StdOrthographicCamera - Standard-View - Vue standard + Standard-View + Vue standard - Orthographic view - Vue orthographique + Orthographic view + Vue orthographique - Switches to orthographic view mode - Bascule vers le mode de vue orthographique + Switches to orthographic view mode + Bascule vers le mode de vue orthographique - - + + StdPerspectiveCamera - Standard-View - Vue standard + Standard-View + Vue standard - Perspective view - Vue en perspective + Perspective view + Vue en perspective - Switches to perspective view mode - Bascule en mode de vue perspective + Switches to perspective view mode + Bascule en mode de vue perspective - - + + StdViewBoxZoom - Standard-View - Vue standard + Standard-View + Vue standard - Box zoom - Zoom de sélection + Box zoom + Zoom de sélection - - + + StdViewDockUndockFullscreen - Standard-View - Vue standard + Standard-View + Vue standard - Document window - Fenêtre de document + Document window + Fenêtre de document - Display the active view either in fullscreen, in undocked or docked mode - Afficher la vue active soit en mode plein écran, non ancrée ou ancrée + Display the active view either in fullscreen, in undocked or docked mode + Afficher la vue active soit en mode plein écran, non ancrée ou ancrée - - + + StdViewScreenShot - Standard-View - Vue standard + Standard-View + Vue standard - Save picture... - Enregistrer l'image… + Save picture... + Enregistrer l'image… - Creates a screenshot of the active view - Crée une capture d'écran de la vue active + Creates a screenshot of the active view + Crée une capture d'écran de la vue active - - + + StdViewZoomIn - Standard-View - Vue standard + Standard-View + Vue standard - Zoom In - Zoom avant + Zoom In + Zoom avant - - + + StdViewZoomOut - Standard-View - Vue standard + Standard-View + Vue standard - Zoom Out - Zoom arrière + Zoom Out + Zoom arrière - - + + Std_DrawStyle - As is - Comme actuellement + As is + Comme actuellement - Normal mode - Mode normal + Normal mode + Mode normal - Wireframe - Filaire + Wireframe + Filaire - Wireframe mode - Mode filaire + Wireframe mode + Mode filaire - - + + Std_ExportGraphviz - Graphviz not found - + Graphviz not found + Graphviz non trouvé - Graphviz couldn't be found on your system. -Do you want to specify its installation path if it's already installed? - + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + Graphviz n'a pas pu être trouvé sur votre système. Si il est déjà installé, voulez-vous indiquer son chemin d'installation? - Graphviz installation path - + Graphviz installation path + Chemin d'installation de graphviz - Dependency graph - + Dependency graph + Graphique de dépendance - Graphviz failed - + Graphviz failed + Échec de graphviz - Graphviz failed to create an image file - + Graphviz failed to create an image file + Graphviz n'a pas pu créer un fichier d'image - - + + Workbench - &File - &Fichier + &File + &Fichier - &Edit - &Édition + &Edit + &Édition - Standard views - Vues standards + Standard views + Vues standards - &Stereo - &Stéréo + &Stereo + &Stéréo - &Zoom - &Zoom + &Zoom + &Zoom - Visibility - Visibilité + Visibility + Visibilité - &View - &Affichage + &View + &Affichage - &Tools - &Outils + &Tools + &Outils - &Macro - &Macro + &Macro + &Macro - &Windows - &Fenêtre + &Windows + &Fenêtre - &On-line help - Aide en &ligne + &On-line help + Aide en &ligne - &Help - &Aide + &Help + &Aide - File - Fichier + File + Fichier - Macro - Macro + Macro + Macro - View - Vue + View + Vue - Special Ops - Opérations spéciales + Special Ops + Opérations spéciales - - + + testClass - test - test + test + test - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">Panneau de tâches iis</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Créé pour Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">Panneau de tâches iis</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Créé pour Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - Choose the style of the Task Panel - Choisir le style du panneau de tâches + Choose the style of the Task Panel + Choisir le style du panneau de tâches - Default - Défaut + Default + Défaut - Windows XP - Windows XP + Windows XP + Windows XP - + diff --git a/src/Gui/Language/FreeCAD_hr.qm b/src/Gui/Language/FreeCAD_hr.qm index cf7a18f04..b7acfffa8 100644 Binary files a/src/Gui/Language/FreeCAD_hr.qm and b/src/Gui/Language/FreeCAD_hr.qm differ diff --git a/src/Gui/Language/FreeCAD_hr.ts b/src/Gui/Language/FreeCAD_hr.ts index 9f48d1ef8..e773856cc 100644 --- a/src/Gui/Language/FreeCAD_hr.ts +++ b/src/Gui/Language/FreeCAD_hr.ts @@ -1,5895 +1,5826 @@ - - + + Angle - Form - Obrazac + Form + Obrazac - A: - A: + A: + A: - B: - B: + B: + B: - C: - C: + C: + C: - Angle Snap - Kut Snap + Angle Snap + Kut Snap - - 1 ° - 1 ° + + 1 ° + 1 ° - - 2 ° - 2 ° + + 2 ° + 2 ° - - 5 ° - 5 ° + + 5 ° + 5 ° - - 10 ° - 10 ° + + 10 ° + 10 ° - - 20 ° - 20 ° + + 20 ° + 20 ° - - 45 ° - 45 ° + + 45 ° + 45 ° - - 90 ° - 90 ° + + 90 ° + 90 ° - - 180 ° - 180 ° + + 180 ° + 180 ° - - + + Gui::AccelLineEdit - none - nijedan + none + nijedan - - + + Gui::ActionSelector - Available: - + Available: + Dostupne: - Selected: - + Selected: + Odabrane: - Add - Dodaj + Add + Dodaj - Remove - Ukloniti + Remove + Ukloniti - Move up - Pomakni gore + Move up + Pomakni gore - Move down - Pomakni dolje + Move down + Pomakni dolje - - + + Gui::AlignmentView - Movable object - + Movable object + Objekt koji se pomiće - Fixed object - + Fixed object + ksirani objekt - - + + Gui::BlenderNavigationStyle - Press left mouse button - Pritisnite lijevu tipku miša + Press left mouse button + Pritisnite lijevu tipku miša - Press SHIFT and middle mouse button - Pritisnite tipku SHIFT i srednju tipku miša + Press SHIFT and middle mouse button + Pritisnite tipku SHIFT i srednju tipku miša - Press middle mouse button - Pritisnite srednju tipku miša + Press middle mouse button + Pritisnite srednju tipku miša - Scroll middle mouse button - Kotrljajte kotačić na mišu + Scroll middle mouse button + Kotrljajte kotačić na mišu - - + + Gui::CADNavigationStyle - Press left mouse button - Pritisnite lijevu tipku miša + Press left mouse button + Pritisnite lijevu tipku miša - Press middle mouse button - Pritisnite srednju tipku miša + Press middle mouse button + Pritisnite srednju tipku miša - Press left and middle mouse button - Pritisnite lijevu i srednju tipku miša + Press left and middle mouse button + Pritisnite lijevu i srednju tipku miša - Scroll middle mouse button - Kotrljajte kotačić na mišu + Scroll middle mouse button + Kotrljajte kotačić na mišu - - + + Gui::Command - Standard - Standard + Standard + Standard - - + + Gui::ContainerDialog - &OK - &U redu + &OK + &U redu - &Cancel - &Otkaži + &Cancel + &Otkaži - - + + Gui::ControlSingleton - Task panel - Ploča zadataka + Task panel + Ploča zadataka - - + + Gui::Dialog::AboutApplication - About - O + About + O - Revision number - Ispravljanje broja + Revision number + Ispravljanje broja - Version - Verzija + Version + Verzija - OK - U redu + OK + U redu - - + + - Release date - Datum isporuke + Release date + Datum isporuke - Platform - Platforma + Platform + Platforma - License... - Licenca ... + License... + Licenca ... - Copy to clipboard - + Copy to clipboard + Kopiraj u međuspremnik - - + + Gui::Dialog::ButtonModel - Button %1 - Tipka %1 + Button %1 + Tipka %1 - Out Of Range - Izvan dometa + Out Of Range + Izvan dometa - - + + Gui::Dialog::CommandModel - Commands - Naredbe + Commands + Naredbe - - + + Gui::Dialog::DemoMode - View Turntable - Prikaži Turntable + View Turntable + Prikaži Turntable - Speed - Brzina + Speed + Brzina - Maximum - Maksimum + Maximum + Maksimum - Minimum - Minimum + Minimum + Minimum - Fullscreen - Preko cijelog ekrana + Fullscreen + Preko cijelog ekrana - Enable timer - Omogući timer + Enable timer + Omogući timer - s - s + s + s - Angle - Kut - - - 90° - 90 ° - - - -90° - -90 ° + Angle + Kut - Play - Pokreni + 90° + 90 ° - Stop - Stop + -90° + -90 ° - Close - Zatvori + Play + Pokreni - - + + Stop + Stop + + + Close + Zatvori + + + Gui::Dialog::DlgActivateWindow - Choose Window - Odaberite Prozor + Choose Window + Odaberite Prozor - &Activate - &amp; Aktiviraj + &Activate + &amp; Aktiviraj - Alt+A - Alt+A + Alt+A + Alt+A - &Cancel - &Otkaži + &Cancel + &Otkaži - - + + - - + + Gui::Dialog::DlgActivateWindowImp - Windows - Windows + Windows + Windows - - + + Gui::Dialog::DlgAuthorization - Authorization - Punomoć + Authorization + Punomoć - &OK - &U redu + &OK + &U redu - &Cancel - &Otkaži + &Cancel + &Otkaži - Password: - Lozinka: + Password: + Lozinka: - User name: - Korisničko ime: + User name: + Korisničko ime: - - + + - - + + Gui::Dialog::DlgChooseIcon - Choose Icon - Odaberite Iconu + Choose Icon + Odaberite Iconu - OK - U redu + OK + U redu - Cancel - Otkazati + Cancel + Otkazati - Add icons... - Dodaj ikone ... + Add icons... + Dodaj ikone ... - - + + Gui::Dialog::DlgCustomActions - Macros - Makronaredbe + Macros + Makronaredbe - Setup Custom Macros - Postavljanje uobičajene makronaredbe + Setup Custom Macros + Postavljanje uobičajene makronaredbe - Macro: - Makro: + Macro: + Makro: - ... - ... + ... + ... - Pixmap - Pixmap + Pixmap + Pixmap - Accelerator: - Ubrzanje. + Accelerator: + Ubrzanje. - What's this: - Što je ovo: + What's this: + Što je ovo: - Status text: - Status teksta: + Status text: + Status teksta: - Tool tip: - Alat za savjet: + Tool tip: + Alat za savjet: - Menu text: - Izbornik teksta: + Menu text: + Izbornik teksta: - Add - Dodaj + Add + Dodaj - Remove - Ukloniti + Remove + Ukloniti - Replace - Zamijeniti + Replace + Zamijeniti - - + + Gui::Dialog::DlgCustomActionsImp - Icons - Ikone + Icons + Ikone - Macros - Makronaredbe + Macros + Makronaredbe - No macro - Nema makro + No macro + Nema makro - No macros found. - Nije pronađena makronaredba. + No macros found. + Nije pronađena makronaredba. - Macro not found - Makro nije pronađen + Macro not found + Makro nije pronađen - Sorry, couldn't find macro file '%1'. - Nažalost, ne mogu naći makro datoteku '%1;. + Sorry, couldn't find macro file '%1'. + Nažalost, ne mogu naći makro datoteku '%1;. - Empty macro - Prazan makro + Empty macro + Prazan makro - Please specify the macro first. - Navedite prvo macro. + Please specify the macro first. + Navedite prvo macro. - Empty text - Prazan tekst + Empty text + Prazan tekst - Please specify the menu text first. - Navedite tekst izbornika na prvom mjestu. + Please specify the menu text first. + Navedite tekst izbornika na prvom mjestu. - No item selected - Nije odabrana stavka + No item selected + Nije odabrana stavka - Please select a macro item first. - Molimo odaberite prvo predmet makronaredbe. + Please select a macro item first. + Molimo odaberite prvo predmet makronaredbe. - - + + Gui::Dialog::DlgCustomCommands - Commands - Naredbe + Commands + Naredbe - - + + - - + + Gui::Dialog::DlgCustomCommandsImp - Category - Kategorija + Category + Kategorija - Icon - Ikona + Icon + Ikona - Command - Naredba + Command + Naredba - - + + Gui::Dialog::DlgCustomKeyboard - Keyboard - Tipkovnica + Keyboard + Tipkovnica - Description: - Opis: + Description: + Opis: - &Category: - &Kategorija: + &Category: + &Kategorija: - C&ommands: - N&aredbe: + C&ommands: + N&aredbe: - Current shortcut: - Trenutni prečac: + Current shortcut: + Trenutni prečac: - Press &new shortcut: - Pritisnite &novi prečac: + Press &new shortcut: + Pritisnite &novi prečac: - Currently assigned to: - Trenutno dodijeljen: + Currently assigned to: + Trenutno dodijeljen: - &Assign - &Dodijeli + &Assign + &Dodijeli - Alt+A - Alt+A + Alt+A + Alt+A - &Reset - &Poništi + &Reset + &Poništi - Alt+R - Alt+R + Alt+R + Alt+R - Re&set All - Po&ništi sve + Re&set All + Po&ništi sve - Alt+S - Alt+S + Alt+S + Alt+S - - + + - - + + Gui::Dialog::DlgCustomKeyboardImp - Icon - Ikona + Icon + Ikona - Command - Naredba + Command + Naredba - none - nijedan + none + nijedan - Multiple defined shortcut - Višestruki prečaci definirani + Multiple defined shortcut + Višestruki prečaci definirani - The shortcut '%1' is defined more than once. This could result into unexpected behaviour. - Prečac '%1' je definiran više od jednom. To bi moglo rezultirati neočekivanim ponašanjem. + The shortcut '%1' is defined more than once. This could result into unexpected behaviour. + Prečac '%1' je definiran više od jednom. To bi moglo rezultirati neočekivanim ponašanjem. - Already defined shortcut - Već definiran prečac + Already defined shortcut + Već definiran prečac - The shortcut '%1' is already assigned to '%2'. + The shortcut '%1' is already assigned to '%2'. Please define another shortcut. - Prečac '%1' je već dodijeljen u '%2'. Molimo definirati drugi prečac. + Prečac '%1' je već dodijeljen u '%2'. Molimo definirati drugi prečac. - - + + Gui::Dialog::DlgCustomToolBoxbarsImp - Toolbox bars - Toolbox barovi + Toolbox bars + Toolbox barovi - - + + Gui::Dialog::DlgCustomToolbars - Toolbars - Alatne trake + Toolbars + Alatne trake - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-weight:600;">Napomena:</span> promjene postanu aktivni sljedeći put kada se učitati prikladni radni stol </p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-weight:600;">Napomena:</span> promjene postanu aktivni sljedeći put kada se učitati prikladni radni stol </p></body></html> - Move right - Pomakni desno + Move right + Pomakni desno - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Premještanje odabrane stavke jednu razinu prema dolje.</b> <p> To će također promijeniti razinu roditelja stavke. </p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Premještanje odabrane stavke jednu razinu prema dolje.</b> <p> To će također promijeniti razinu roditelja stavke. </p> - Move left - Pomakni lijevo + Move left + Pomakni lijevo - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Premještanje odabrane stavke jednu razinu gore.</b> <p> To će također promijeniti razinu roditelja stavke. </p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Premještanje odabrane stavke jednu razinu gore.</b> <p> To će također promijeniti razinu roditelja stavke. </p> - Move down - Pomakni dolje + Move down + Pomakni dolje - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Premještanje odabrane stavke prema dolje.</b> <p> Jedinica će biti premještena unutar razine hijerarhije. </p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Premještanje odabrane stavke prema dolje.</b> <p> Jedinica će biti premještena unutar razine hijerarhije. </p> - Move up - Pomakni gore + Move up + Pomakni gore - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Premještanje odabrane stavke gore.</b> <p> Jedinica će biti premještena unutar razine hijerarhije. </p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Premještanje odabrane stavke gore.</b> <p> Jedinica će biti premještena unutar razine hijerarhije. </p> - New... - Novi ... + New... + Novi ... - Rename... - Preimenuj ... + Rename... + Preimenuj ... - Delete - Izbriši + Delete + Izbriši - Icon - Ikona + Icon + Ikona - Command - Naredba + Command + Naredba - <Separator> - <Separator> + <Separator> + <Separator> - New toolbar - Nova alatna traka + New toolbar + Nova alatna traka - Toolbar name: - Ime alatne trake: + Toolbar name: + Ime alatne trake: - Duplicated name - Dvostruki naziv + Duplicated name + Dvostruki naziv - The toolbar name '%1' is already used - Ime alatne trake '%1' se već koristi + The toolbar name '%1' is already used + Ime alatne trake '%1' se već koristi - Rename toolbar - Preimenuj alatnu traku + Rename toolbar + Preimenuj alatnu traku - - + + - - + + Gui::Dialog::DlgCustomizeImp - Customize - Prilagodi + Customize + Prilagodi - &Help - &Pomoć + &Help + &Pomoć - &Close - &Zatvori + &Close + &Zatvori - - + + Gui::Dialog::DlgCustomizeSpaceball - Spaceball - Spaceball + Spaceball + Spaceball - No Spaceball Present - Spaceball nije pronađen + No Spaceball Present + Spaceball nije pronađen - Buttons - Tipke + Buttons + Tipke - Clear - Brisanje + Clear + Brisanje - Print Reference - Ispis Reference + Print Reference + Ispis Reference - - + + Gui::Dialog::DlgDisplayProperties - Display properties - Prikaz svojstava + Display properties + Prikaz svojstava - Display - Prikaz + Display + Prikaz - Transparency: - Prozirnost: + Transparency: + Prozirnost: - Line width: - Širina linije: + Line width: + Širina linije: - Point size: - Veličina točke: + Point size: + Veličina točke: - Material - Materijal + Material + Materijal - ... - ... + ... + ... - Close - Zatvori + Close + Zatvori - Viewing mode - Pregled + Viewing mode + Pregled - Display mode: - Prikaz: + Plot mode: + nacrt: - Plot mode: - nacrt: + + - - + Line transparency: + Transparentnost linije: - Line transparency: - Transparentnost linije: + Line color: + Boja linije: - Line color: - Boja linije: + Shape color: + Boja oblika: - Shape color: - Boja oblika: + Color plot: + Boja grafa: - Color plot: - Boja grafa: + Document window: + Prozor dokumenta: - - Document window: - - - - + + Gui::Dialog::DlgEditorSettings - Editor - Urednik + Editor + Urednik - Options - Mogućnosti + Options + Mogućnosti - Enable line numbers - Uključi brojeve redaka + Enable line numbers + Uključi brojeve redaka - Enable folding - Omogući preklapanje + Enable folding + Omogući preklapanje - Indentation - Uvlačenje + Indentation + Uvlačenje - Insert spaces - Umetanje razmaka + Insert spaces + Umetanje razmaka - Tab size: - Veličina kartice: + Tab size: + Veličina kartice: - Indent size: - Uvučena veličina: + Indent size: + Uvučena veličina: - Keep tabs - Drži kartice + Keep tabs + Drži kartice - Display Items - Prikaz stavke + Display Items + Prikaz stavke - Family: - Obitelj: + Family: + Obitelj: - Size: - Veličina: + Size: + Veličina: - Preview: - Pregled: + Preview: + Pregled: - - + + - - + + Gui::Dialog::DlgGeneral - General - Općenito + General + Općenito - Start up - Pokrenuti + Start up + Pokrenuti - Enable splash screen at start up - Omogući štrcanje zaslon na start up + Enable splash screen at start up + Omogući štrcanje zaslon na start up - Switch to tab of report window: - Prebacite se na karticu prozora izvješća: + Switch to tab of report window: + Prebacite se na karticu prozora izvješća: - Auto load module after start up: - Automatski učitati modul nakon pokretanja: + Auto load module after start up: + Automatski učitati modul nakon pokretanja: - Language - Jezik + Language + Jezik - Change language: - Promijeni jezik: + Change language: + Promijeni jezik: - Main window - Glavni prozor + Main window + Glavni prozor - Size of recent file list - Veličina nedavnog popisa datoteka + Size of recent file list + Veličina nedavnog popisa datoteka - Window style: - Stil prozora: + Window style: + Stil prozora: - Size of toolbar icons: - Veličina ikona alatne trake: + Size of toolbar icons: + Veličina ikona alatne trake: - - + + Gui::Dialog::DlgGeneralImp - Default (%1 x %1) - Zadane (%1 x %1) + Default (%1 x %1) + Zadane (%1 x %1) - Small (%1 x %1) - Male (%1 x %1) + Small (%1 x %1) + Male (%1 x %1) - Large (%1 x %1) - Velike (%1 x %1) + Large (%1 x %1) + Velike (%1 x %1) - Extra large (%1 x %1) - Jako velike (%1 x %1) + Extra large (%1 x %1) + Jako velike (%1 x %1) - - + + Gui::Dialog::DlgInputDialog - Input - Ulazni + Input + Ulazni - OK - U redu + OK + U redu - Cancel - Otkazati + Cancel + Otkazati - - + + - - + + Gui::Dialog::DlgInspector - Scene Inspector - Pregled scene + Scene Inspector + Pregled scene - - + + Gui::Dialog::DlgMacroExecute - Execute macro - Izvrši makro + Execute macro + Izvrši makro - Macro name: - Makro ime: + Macro name: + Makro ime: - Macro destination: - Makro odredište: + Macro destination: + Makro odredište: - Execute - Izvršiti + Execute + Izvršiti - Close - Zatvori + Close + Zatvori - Create - Stvoriti + Create + Stvoriti - Delete - Izbriši + Delete + Izbriši - Edit - Uredi + Edit + Uredi - - + + Gui::Dialog::DlgMacroExecuteImp - Macros - Makronaredbe + Macros + Makronaredbe - Macro file - Makro datoteke + Macro file + Makro datoteke - Enter a file name, please: - Unesite naziv datoteke, molimo Vas da: + Enter a file name, please: + Unesite naziv datoteke, molimo Vas da: - Existing file - Postojeće datoteke + Existing file + Postojeće datoteke - '%1'. + '%1'. This file already exists. - '%1'. + '%1'. Ova datoteka već postoji. - Delete macro - Brisanje makro + Delete macro + Brisanje makro - Do you really want to delete the macro '%1'? - Želite li zaista obrisati makro '%1'? + Do you really want to delete the macro '%1'? + Želite li zaista obrisati makro '%1'? - Cannot create file - Ne mogu stvoriti datoteku + Cannot create file + Ne mogu stvoriti datoteku - Creation of file '%1' failed. - Kreiranje datoteke '%1' nije uspjelo. + Creation of file '%1' failed. + Kreiranje datoteke '%1' nije uspjelo. - - + + Gui::Dialog::DlgMacroRecord - Macro recording - Makro snimanje + Macro recording + Makro snimanje - Macro name: - Makro ime: + Macro name: + Makro ime: - Stop - Stop + Stop + Stop - Cancel - Otkazati + Cancel + Otkazati - Macro path: - Makro put: + Macro path: + Makro put: - ... - ... + ... + ... - Record - Snimak + Record + Snimak - - + + Gui::Dialog::DlgMacroRecordImp - Macro recorder - Makro snimanje + Macro recorder + Makro snimanje - Specify first a place to save. - Odredite prvo mjesto za spremanje. + Specify first a place to save. + Odredite prvo mjesto za spremanje. - Existing macro - Postojeći makro + Existing macro + Postojeći makro - The macro '%1' already exists. Do you want to overwrite? - Makro '%1' već postoji. Želite li prebrisati? + The macro '%1' already exists. Do you want to overwrite? + Makro '%1' već postoji. Želite li prebrisati? - The macro directory doesn't exist. Please, choose another one. - Makro direktorij ne postoji. Molimo, odaberite drugi. + The macro directory doesn't exist. Please, choose another one. + Makro direktorij ne postoji. Molimo, odaberite drugi. - Choose macro directory - Odaberite makro direktorij + Choose macro directory + Odaberite makro direktorij - - + + Gui::Dialog::DlgMaterialProperties - Material properties - Svojstva materijala + Material properties + Svojstva materijala - &Close - &Zatvori + &Close + &Zatvori - Alt+C - Alt + C + Alt+C + Alt + C - Material - Materijal + Material + Materijal - Diffuse color: - Difuzna boja: + Diffuse color: + Difuzna boja: - Specular color: - Specular boja: + Specular color: + Specular boja: - Shininess: - Sjaj: + Shininess: + Sjaj: - % - % + % + % - Ambient color: - Boja ambienta: + Ambient color: + Boja ambienta: - - + + - Emissive color: - Emitivna boja: + Emissive color: + Emitivna boja: - - + + Gui::Dialog::DlgOnlineHelp - On-line help - On-line pomoć + On-line help + On-line pomoć - Help viewer - Pomoć preglednik + Help viewer + Pomoć preglednik - Location of start page - Lokacija početne stranice + Location of start page + Lokacija početne stranice - - + + Gui::Dialog::DlgOnlineHelpImp - HTML files (*.html *.htm) - HTML datoteke (*. html *. htm) + HTML files (*.html *.htm) + HTML datoteke (*. html *. htm) - Access denied - Pristup odbijen + Access denied + Pristup odbijen - Access denied to '%1' + Access denied to '%1' Specify another directory, please. - Pristup je odbijen u '%1' Odredite drugi direktorij, molim. + Pristup je odbijen u '%1' Odredite drugi direktorij, molim. - - + + Gui::Dialog::DlgParameter - Parameter Editor - Parametar Editor + Parameter Editor + Parametar Editor - Save to disk - Spremi na disk + Save to disk + Spremi na disk - Alt+C - Alt + C + Alt+C + Alt + C - &Close - &Zatvori + &Close + &Zatvori - - + + Gui::Dialog::DlgParameterImp - Group - Grupa + Group + Grupa - Name - Ime + Name + Ime - Type - Tip + Type + Tip - Value - Vrijednost + Value + Vrijednost - User parameter - Korisnički parametar + User parameter + Korisnički parametar - Invalid input - Neispravan unos + Invalid input + Neispravan unos - Invalid key name '%1' - Nevažeće ime '%1' + Invalid key name '%1' + Nevažeće ime '%1' - System parameter - Parametar sustava + System parameter + Parametar sustava - - + + Gui::Dialog::DlgPreferences - Preferences - Postavke + Preferences + Postavke - &Help - &Pomoć + &Help + &Pomoć - Alt+H - Alt+H + Alt+H + Alt+H - &OK - &U redu + &OK + &U redu - &Apply - &Primijeni + &Apply + &Primijeni - Alt+A - Alt+A + Alt+A + Alt+A - &Cancel - &Otkaži + &Cancel + &Otkaži - - + + - - + + Gui::Dialog::DlgPreferencesImp - Wrong parameter - Pogrešan parametar + Wrong parameter + Pogrešan parametar - - + + Gui::Dialog::DlgProjectInformation - Project information - Informacije o projektu + Project information + Informacije o projektu - Information - Informacije + Information + Informacije - &Name: - &Ime: + &Name: + &Ime: - Commen&t: - Komen&tar: + Commen&t: + Komen&tar: - Path: - Put: + Path: + Put: - &Last modified by: - &Zadnja izmjena od: + &Last modified by: + &Zadnja izmjena od: - Created &by: - Kreirano &od: + Created &by: + Kreirano &od: - Com&pany: - Kom&panija: + Com&pany: + Kom&panija: - Last &modification date: - Posljednja iz&mjena i datum: + Last &modification date: + Posljednja iz&mjena i datum: - Creation &date: - &Datum izrade: + Creation &date: + &Datum izrade: - &OK - &U redu + &OK + &U redu - &Cancel - &Otkaži + &Cancel + &Otkaži - - + + - - + + Gui::Dialog::DlgProjectUtility - Project utility - Korisne opcije projekta + Project utility + Korisne opcije projekta - Extract project - Dohvati projekt + Extract project + Dohvati projekt - Source - Izvor + Source + Izvor - Project file (*.fcstd) - Datoteka projekta (*. fcstd) + Project file (*.fcstd) + Datoteka projekta (*. fcstd) - Destination - Odredište + Destination + Odredište - Extract - Dohvati + Extract + Dohvati - Create project - Kreiraj projekt + Create project + Kreiraj projekt - Document.xml - Dokument.xml + Document.xml + Dokument.xml - Create - Stvoriti + Create + Stvoriti - Load project file after creation - Učitaj datoteku projekta nakon stvaranja + Load project file after creation + Učitaj datoteku projekta nakon stvaranja - Empty source - Prazan izvor + Empty source + Prazan izvor - No source is defined. - Izvor nije definiran. + No source is defined. + Izvor nije definiran. - Empty destination - Prazno odredište + Empty destination + Prazno odredište - No destination is defined. - Odredište nije definirano. + No destination is defined. + Odredište nije definirano. - - + + Gui::Dialog::DlgReportView - Output window - Izlazni prozor + Output window + Izlazni prozor - Output - Izlaz + Output + Izlaz - Record log messages - Snimanje log poruke + Record log messages + Snimanje log poruke - Record warnings - Snimanje upozorenja + Record warnings + Snimanje upozorenja - Record error messages - Snimanje poruka o pogrešci + Record error messages + Snimanje poruka o pogrešci - Colors - Boje + Colors + Boje - Normal messages: - Normalne poruke: + Normal messages: + Normalne poruke: - Log messages: - Log poruke: + Log messages: + Log poruke: - Warnings: - Upozorenja: + Warnings: + Upozorenja: - Errors: - Pogreške: + Errors: + Pogreške: - - + + - Redirect internal Python errors to report view - Preusmjeravanje unutarnjih Python grešaka u prikaz pogrešaka + Redirect internal Python errors to report view + Preusmjeravanje unutarnjih Python grešaka u prikaz pogrešaka - Redirect internal Python output to report view - Preusmjeri interni Python izlaz na prikaz izvješća + Redirect internal Python output to report view + Preusmjeri interni Python izlaz na prikaz izvješća - - + + Gui::Dialog::DlgRunExternal - Running external program - Izvođenje vanjskog programa + Running external program + Izvođenje vanjskog programa - TextLabel - Tekst oznaka + TextLabel + Tekst oznaka - Advanced >> - Napredno >> + Advanced >> + Napredno >> - ... - ... + ... + ... - Accept changes - Prihvati promjene + Accept changes + Prihvati promjene - Discard changes - Odbaci promjene + Discard changes + Odbaci promjene - Abort program - Prekini program + Abort program + Prekini program - Help - Pomoć + Help + Pomoć - Select a file - Odaberite datoteku + Select a file + Odaberite datoteku - - + + Gui::Dialog::DlgSettings3DView - 3D View - 3D Prikaz + 3D View + 3D Prikaz - 3D View settings - Postavke 3D prikaza + 3D View settings + Postavke 3D prikaza - Show coordinate system in the corner - Prikaži koordinatni sustav u kutu + Show coordinate system in the corner + Prikaži koordinatni sustav u kutu - Show counter of frames per second - Pokaži brojač sličica u sekundi + Show counter of frames per second + Pokaži brojač sličica u sekundi - Enable animation - Omogući animacije + Enable animation + Omogući animacije - Enable anti-aliasing (slower) - Omogući anti-aliasing (sporije) + Enable anti-aliasing (slower) + Omogući anti-aliasing (sporije) - Eye to eye distance for stereo modes: - Oči u oči udaljenost, za stereo način: + Eye to eye distance for stereo modes: + Oči u oči udaljenost, za stereo način: - Camera type - Tip kamere + Camera type + Tip kamere - Orthographic rendering - Renderiranje pravopisa + Orthographic rendering + Renderiranje pravopisa - Perspective rendering - Perspektivna projekcija + Perspective rendering + Perspektivna projekcija - - + + - 3D Navigation - 3D navigacija + 3D Navigation + 3D navigacija - Mouse... - Miš... + Mouse... + Miš... - Intensity of backlight - Intenzitet osvjetljenja + Intensity of backlight + Intenzitet osvjetljenja - Enable backlight color - Omogući pozadinskog osvjetljenje + Enable backlight color + Omogući pozadinskog osvjetljenje - Orbit style - Način okretanja + Orbit style + Način okretanja - Turntable - Okretano + Turntable + Okretano - Trackball - Prećeno + Trackball + Prećeno - Invert zoom - Invertiraj zumiranje + Invert zoom + Invertiraj zumiranje - Zoom at cursor - + Zoom at cursor + Približavaj na kursor - Zoom step - + Zoom step + Korak prilikom približavanja - - + + Gui::Dialog::DlgSettings3DViewImp - %1 navigation - %1 navigacija + %1 navigation + %1 navigacija - - + + Gui::Dialog::DlgSettingsColorGradient - Color model - Model boja + Color model + Model boja - &Gradient: - &Gradient: + &Gradient: + &Gradient: - red-yellow-green-cyan-blue - crveno-žuto-zeleno-cijan-plavo + red-yellow-green-cyan-blue + crveno-žuto-zeleno-cijan-plavo - blue-cyan-green-yellow-red - plavo-cijan-zeleno-žuto-crveno + blue-cyan-green-yellow-red + plavo-cijan-zeleno-žuto-crveno - white-black - bijelo-crna + white-black + bijelo-crna - black-white - crno-bijela + black-white + crno-bijela - Visibility - Vidljivost + Visibility + Vidljivost - Out g&rayed - Od G & rayed + Out g&rayed + Od G & rayed - Alt+R - Alt+R + Alt+R + Alt+R - Out &invisible - van & nevidljiv + Out &invisible + van & nevidljiv - Alt+I - Alt+I + Alt+I + Alt+I - Style - Stil + Style + Stil - &Zero - &Nula + &Zero + &Nula - Alt+Z - Alt+Z + Alt+Z + Alt+Z - &Flow - &Tok + &Flow + &Tok - Alt+F - Alt+F + Alt+F + Alt+F - &OK - &U redu + &OK + &U redu - &Cancel - &Otkaži + &Cancel + &Otkaži - Parameter range - Raspon parametra + Parameter range + Raspon parametra - Mi&nimum: - Mi&nimum: + Mi&nimum: + Mi&nimum: - Ma&ximum: - Ma&ksimum: + Ma&ximum: + Ma&ksimum: - &Labels: - &Oznake: + &Labels: + &Oznake: - &Decimals: - &Decimale: + &Decimals: + &Decimale: - - + + - Color-gradient settings - Boja-gradijent postavke + Color-gradient settings + Boja-gradijent postavke - - + + Gui::Dialog::DlgSettingsColorGradientImp - Wrong parameter - Pogrešan parametar + Wrong parameter + Pogrešan parametar - The maximum value must be higher than the minimum value. - Maksimalna vrijednost mora biti veći od minimalne vrijednosti. + The maximum value must be higher than the minimum value. + Maksimalna vrijednost mora biti veći od minimalne vrijednosti. - - + + Gui::Dialog::DlgSettingsDocument - Document - Dokument + Document + Dokument - General - Općenito + General + Općenito - Document save compression level + Document save compression level (0 = none, 9 = highest, 3 = default) - Razina kompresije spremanja dokumenta (0 = ništa, 9 = najviši, 3 = zadana vrijednost) + Razina kompresije spremanja dokumenta (0 = ništa, 9 = najviši, 3 = zadana vrijednost) - Create new document at start up - Stvaranje novog dokumenta prilikom pokretanja + Create new document at start up + Stvaranje novog dokumenta prilikom pokretanja - Storage - Skladištenje + Storage + Skladištenje - Saving transactions (Auto-save) - Spremanje transakcije (Auto-save) + Saving transactions (Auto-save) + Spremanje transakcije (Auto-save) - Discard saved transaction after saving document - Odbaci spremljene transakcije nakon spremanja dokumenta + Discard saved transaction after saving document + Odbaci spremljene transakcije nakon spremanja dokumenta - Save thumbnail into project file when saving document - Spremi thumbnail u projekt datoteku prilikom spremanja dokumenta + Save thumbnail into project file when saving document + Spremi thumbnail u projekt datoteku prilikom spremanja dokumenta - Create up to backup files when resaving document - Napravite sigurnosnih kopija datoteka prilikom spremanja + Create up to backup files when resaving document + Napravite sigurnosnih kopija datoteka prilikom spremanja - Document objects - Objekti dokumenta + Document objects + Objekti dokumenta - Allow duplicate object labels in one document - Dopusti dvostruke nazive objekata u jednom dokumentu + Allow duplicate object labels in one document + Dopusti dvostruke nazive objekata u jednom dokumentu - Maximum Undo/Redo steps - Maksimalan broj Undo/Redo koraka + Maximum Undo/Redo steps + Maksimalan broj Undo/Redo koraka - Using Undo/Redo on documents - Koristi Undo/Redo na dokumentima + Using Undo/Redo on documents + Koristi Undo/Redo na dokumentima - - + + Gui::Dialog::DlgSettingsEditorImp - Text - Tekst + Text + Tekst - Bookmark - Bookmark + Bookmark + Bookmark - Breakpoint - Prijelomna točka + Breakpoint + Prijelomna točka - Keyword - Kljušna riječ + Keyword + Kljušna riječ - Comment - Komentar + Comment + Komentar - Block comment - Blok komentar + Block comment + Blok komentar - Number - Broj + Number + Broj - String - Tekst (string) + String + Tekst (string) - Character - Simbol + Character + Simbol - Class name - Ime klase + Class name + Ime klase - Define name - Odredite naziv + Define name + Odredite naziv - Operator - Operator + Operator + Operator - Python output - Python izlaz + Python output + Python izlaz - Python error - Python pogreška + Python error + Python pogreška - Items - Jedinice + Items + Jedinice - Current line highlight - + Current line highlight + Osvjetljenje trenutne linije - - + + Gui::Dialog::DlgSettingsImage - Image settings - Postavke slike + Image settings + Postavke slike - Image properties - Opcije slike + Image properties + Opcije slike - Back&ground: - Poza&dina: + Back&ground: + Poza&dina: - Current - Trenutna + Current + Trenutna - White - Bijela + White + Bijela - Black - Crna + Black + Crna - Transparent - Transparentan + Transparent + Transparentan - Image dimensions - Dimenzije slike + Image dimensions + Dimenzije slike - Pixel - Piksel + Pixel + Piksel - &Width: - &Širina: + &Width: + &Širina: - Current screen - Trenutni ekran + Current screen + Trenutni ekran - Icon 32 x 32 - Ikona 32 x 32 + Icon 32 x 32 + Ikona 32 x 32 - Icon 64 x 64 - Ikona 64 x 64 + Icon 64 x 64 + Ikona 64 x 64 - Icon 128 x 128 - Icon 128 x 128 + Icon 128 x 128 + Icon 128 x 128 - CGA 320 x 200 - CGA 320 x 200 + CGA 320 x 200 + CGA 320 x 200 - QVGA 320 x 240 - QVGA 320 x 240 + QVGA 320 x 240 + QVGA 320 x 240 - VGA 640 x 480 - VGA 640 x 480 + VGA 640 x 480 + VGA 640 x 480 - NTSC 720 x 480 - NTSC 720 x 480 + NTSC 720 x 480 + NTSC 720 x 480 - PAL 768 x 578 - PAL 768 x 578 + PAL 768 x 578 + PAL 768 x 578 - SVGA 800 x 600 - SVGA 800 x 600 + SVGA 800 x 600 + SVGA 800 x 600 - XGA 1024 x 768 - XGA 1024 x 768 + XGA 1024 x 768 + XGA 1024 x 768 - HD720 1280 x 720 - HD720 1280 x 720 + HD720 1280 x 720 + HD720 1280 x 720 - SXGA 1280 x 1024 - SXGA 1280 x 1024 + SXGA 1280 x 1024 + SXGA 1280 x 1024 - SXGA+ 1400 x 1050 - SXGA + 1400 x 1050 + SXGA+ 1400 x 1050 + SXGA + 1400 x 1050 - UXGA 1600 x 1200 - UXGA 1600 x 1200 + UXGA 1600 x 1200 + UXGA 1600 x 1200 - HD1080 1920 x 1080 - HD1080 1920 x 1080 + HD1080 1920 x 1080 + HD1080 1920 x 1080 - WUXGA 1920 x 1200 - WUXGA 1920 x 1200 + WUXGA 1920 x 1200 + WUXGA 1920 x 1200 - QXGA 2048 x 1538 - QXGA 2048 x 1538 + QXGA 2048 x 1538 + QXGA 2048 x 1538 - WQXGA 2560 x 1600 - WQXGA 2560 x 1600 + WQXGA 2560 x 1600 + WQXGA 2560 x 1600 - QSXGA 2560 x 2048 - QSXGA 2560 x 2048 - - - QUXGA 3200 × 2400 - QUXGA 3200 × 2400 - - - HUXGA 6400 × 4800 - HUXGA 6400 × 4800 + QSXGA 2560 x 2048 + QSXGA 2560 x 2048 - !!! 10000 x 10000 - !!! 10000 x 10000 + QUXGA 3200 × 2400 + QUXGA 3200 × 2400 - Standard sizes: - Standardne veličine: + HUXGA 6400 × 4800 + HUXGA 6400 × 4800 - &Height: - &Visina: + !!! 10000 x 10000 + !!! 10000 x 10000 - Aspect ratio: - Omjer: + Standard sizes: + Standardne veličine: - &Screen - &Ekran + &Height: + &Visina: - Alt+S - Alt+S + Aspect ratio: + Omjer: - &4:3 - &4:3 + &Screen + &Ekran - Alt+4 - Alt+4 + Alt+S + Alt+S - 1&6:9 - 1&6:9 + &4:3 + &4:3 - Alt+6 - Alt+6 + Alt+4 + Alt+4 - &1:1 - &1:1 + 1&6:9 + 1&6:9 - Alt+1 - Alt+1 + Alt+6 + Alt+6 - Image comment - Komentar slike + &1:1 + &1:1 - Insert MIBA - Umetni MIBA + Alt+1 + Alt+1 - Insert comment - Umetni komentar + Image comment + Komentar slike - - + + Insert MIBA + Umetni MIBA + + + Insert comment + Umetni komentar + + + Gui::Dialog::DlgSettingsMacro - Macro - Makro + Macro + Makro - Macro recording settings - Postavke snimanja za makro + Macro recording settings + Postavke snimanja za makro - Logging Commands - Prijava Naredbi + Logging Commands + Prijava Naredbi - Show script commands in python console - Prikaži naredbe skripta u python konzoli + Show script commands in python console + Prikaži naredbe skripta u python konzoli - Log all commands issued by menus to file: - Prijavite se sve naredbe izdane od strane izbornika u datoteku: + Log all commands issued by menus to file: + Prijavite se sve naredbe izdane od strane izbornika u datoteku: - FullScript.FCScript - FullScript.FCScript + FullScript.FCScript + FullScript.FCScript - Gui commands - GUI naredbe + Gui commands + GUI naredbe - Recording GUI commands - Snimanje GUI naredbi + Recording GUI commands + Snimanje GUI naredbi - Record as comment - Snimiti kao komentar + Record as comment + Snimiti kao komentar - Macro path - Makro put + Macro path + Makro put - General macro settings - + General macro settings + Generalne Macro opcije - Run macros in local environment - + Run macros in local environment + Izvrti Macro u lokalnom okruženju - - + + Gui::Dialog::DlgSettingsUnits - Units - Mjerne jedinice + Units + Mjerne jedinice - Units settings - Postavke mjernih jedinica + Units settings + Postavke mjernih jedinica - Standard (mm/kg/s/degree) - Standardno (mm/kg/s/°) + Standard (mm/kg/s/degree) + Standardno (mm/kg/s/°) - MKS (m/kg/s/degree) - MKS (m/kg/s/°) + MKS (m/kg/s/degree) + MKS (m/kg/s/°) - Magnitude - Povečanje + Magnitude + Povečanje - Unit - Jedinica + Unit + Jedinica - User system: - Sustav korisnika: + User system: + Sustav korisnika: - Imperial (in/lb) - Imperial (u / lb) + Imperial (in/lb) + Imperial (u / lb) - - + + Gui::Dialog::DlgSettingsViewColor - Colors - Boje + Colors + Boje - Selection - Izbor + Selection + Izbor - Enable selection highlighting - Omogući odabir isticanja + Enable selection highlighting + Omogući odabir isticanja - Enable preselection highlighting - Omogući isticanje prelaskom miša + Enable preselection highlighting + Omogući isticanje prelaskom miša - Background color - Boja pozadine + Background color + Boja pozadine - Middle color - Srednja boja + Middle color + Srednja boja - Color gradient - Gradijent boje + Color gradient + Gradijent boje - Simple color - Jednostavna boja + Simple color + Jednostavna boja - Default colors - Zadane boje + Default colors + Zadane boje - Edited edge color - Boja izmjenjenog ruba + Edited edge color + Boja izmjenjenog ruba - Edited vertex color - Boja izmjenjenog vrha + Edited vertex color + Boja izmjenjenog vrha - Construction geometry - Geometrija za konstrukciju + Construction geometry + Geometrija za konstrukciju - Fully constrained geometry - Potpuno ograničena geometrija + Fully constrained geometry + Potpuno ograničena geometrija - The color of construction geometry in editmode - Boja geometrije za konstrukciju prilikom rada + The color of vertices being edited + Boja vrhova prilikom uređivanja - The color of fully constrained geometry in editmode - Boja potpuno ograničene geometrije prilikom rada + The color of edges being edited + Boja rubova prilikom uređivanja - The color of vertices being edited - Boja vrhova prilikom uređivanja + The color of construction geometry in edit mode + Boja geometrije za konstrukciju prilikom rada - The color of edges being edited - Boja rubova prilikom uređivanja + The color of fully constrained geometry in edit mode + Boja potpuno ograničene geometrije u načinu rada - The color of construction geometry in edit mode - + Cursor text color + Boja teksta na kursoru - The color of fully constrained geometry in edit mode - + Default shape color + Zadana boja oblika - Cursor text color - + The default color for new shapes + Zadana boja za nove oblike - Default shape color - + Default line width and color + Zadana debljina i bija linije - The default color for new shapes - + The default line color for new shapes + Zadana boja linije za nove objekte - Default line width and color - + The default line thickness for new shapes + Zadana debljina linije za nove objekte - The default line color for new shapes - + px + px - - The default line thickness for new shapes - - - - px - - - - + + Gui::Dialog::DlgTipOfTheDay - Tip of the day - Savjet dana + Tip of the day + Savjet dana - <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> - <font size="+3"><font face="Times New Roman"><b>Jeste li znali ...</b></font></font> + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <font size="+3"><font face="Times New Roman"><b>Jeste li znali ...</b></font></font> - &Show tips at start up - &Pokaži savjete prilikom pokretanja + &Show tips at start up + &Pokaži savjete prilikom pokretanja - Alt+S - Alt+S + Alt+S + Alt+S - &Next Tip - &Sljedeći savjet + &Next Tip + &Sljedeći savjet - Alt+N - Alt+N + Alt+N + Alt+N - &Close - &Zatvori + &Close + &Zatvori - Alt+C - Alt + C + Alt+C + Alt + C - - + + - - + + Gui::Dialog::DlgTipOfTheDayImp - Download failed: %1 + Download failed: %1 - Preuzimanje nije uspjelo: %1 + Preuzimanje nije uspjelo: %1 - If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. - Ako želite saznati više o FreeCADu možete ići na %1 ili pritisnite Pomoć stavku u izborniku Pomoć. + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + Ako želite saznati više o FreeCADu možete ići na %1 ili pritisnite Pomoć stavku u izborniku Pomoć. - - + + Gui::Dialog::DockablePlacement - Placement - Položaj + Placement + Položaj - - + + Gui::Dialog::DownloadDialog - Canceled. - Otkazano. + Download + Preuzmi - Download - + Cancel + Otkazati - Cancel - Otkazati + Close + Zatvori - Close - Zatvori + There already exists a file called %1 in the current directory. Overwrite? + Več postoji datoteka pod imenom %1 u trenutnom direktoriju. Prepiši? - There already exists a file called %1 in the current directory. Overwrite? - + Unable to save the file %1: %2. + Nemoguće spremiti dokument %1: %2. - Unable to save the file %1: %2. - + Downloading %1. + Preuzimam %1. - Downloading %1. - + Download canceled. + Preuzimanje otkazano. - Download canceled. - + Download failed: %1. + Preuzimanje nije uspjelo: %1. - Download failed: %1. - Preuzimanje nije uspjelo: %1. + Downloaded %1 to current directory. + Preuzet %1 u trenutni direktorij. - - Downloaded %1 to current directory. - - - - + + Gui::Dialog::IconDialog - Add icon - Dodaj ikonu + Add icon + Dodaj ikonu - - + + Gui::Dialog::InputVector - Input vector - Ulazni vektor + Input vector + Ulazni vektor - Vector - Vektor + Vector + Vektor - Z: - Z: + Z: + Z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - OK - U redu + OK + U redu - - + + Gui::Dialog::LicenseDialog - Copyright - + Copyright + Autorsko pravo - - + + Gui::Dialog::MouseButtons - Mouse buttons - Tipke miša + Mouse buttons + Tipke miša - Configuration - Konfiguracija + Configuration + Konfiguracija - Selection: - Odabrano: + Selection: + Odabrano: - Panning - Pomicanje pogleda + Panning + Pomicanje pogleda - Rotation: - Rotacija: + Rotation: + Rotacija: - Zooming: - Zumiranje: + Zooming: + Zumiranje: - - + + Gui::Dialog::ParameterGroup - Expand - Proširi + Expand + Proširi - Add sub-group - Dodaj podgrupu + Add sub-group + Dodaj podgrupu - Remove group - Ukloni grupu + Remove group + Ukloni grupu - Rename group - Preimenuj grupu + Rename group + Preimenuj grupu - Export parameter - Izvoz parametra + Export parameter + Izvoz parametra - Import parameter - Uvoz parametra + Import parameter + Uvoz parametra - Collapse - Kolaps + Collapse + Kolaps - Do really want to remove this parameter group? - Da li stvarno želite ukloniti ovu grupu parametara? + Do really want to remove this parameter group? + Da li stvarno želite ukloniti ovu grupu parametara? - Existing sub-group - Postojeća podgrupa + Existing sub-group + Postojeća podgrupa - The sub-group '%1' already exists. - Pod-grupa '%1' već postoji. + The sub-group '%1' already exists. + Pod-grupa '%1' već postoji. - Export parameter to file - Izvoz parametra u datoteku + Export parameter to file + Izvoz parametra u datoteku - XML (*.FCParam) - XML (*. FCParam) + XML (*.FCParam) + XML (*. FCParam) - Import parameter from file - Uvoz parametara iz datoteke + Import parameter from file + Uvoz parametara iz datoteke - Import Error - Greška uvoza + Import Error + Greška uvoza - Reading from '%1' failed. - Čitanje iz '%1' nije uspjelo. + Reading from '%1' failed. + Čitanje iz '%1' nije uspjelo. - - + + Gui::Dialog::ParameterValue - Change value - Promjena vrijednosti + Change value + Promjena vrijednosti - Remove key - Odbaci tipka + Remove key + Odbaci tipka - Rename key - Preimenuj tipka + Rename key + Preimenuj tipka - New - Novi + New + Novi - New string item - Nova niz (string) jedinica + New string item + Nova niz (string) jedinica - New float item - Nova float jedinica + New float item + Nova float jedinica - New integer item - Nova integer jedinica + New integer item + Nova integer jedinica - New unsigned item - Nova unsigned jedinica + New unsigned item + Nova unsigned jedinica - New Boolean item - Nova Boolean jedinica + New Boolean item + Nova Boolean jedinica - Existing item - Postojeća jedinica + Existing item + Postojeća jedinica - The item '%1' already exists. - Jedinica '%1' već postoji. + The item '%1' already exists. + Jedinica '%1' već postoji. - - + + Gui::Dialog::Placement - Placement - Položaj + Placement + Položaj - OK - U redu + OK + U redu - Translation: - Translacija: + Translation: + Translacija: - Z: - Z: + Z: + Z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - Rotation: - Rotacija: + Rotation: + Rotacija: - Angle: - Kut: + Angle: + Kut: - Axis: - Os: + Axis: + Os: - Center: - Centar: + Center: + Centar: - Pitch: - Vrh: + Pitch: + Vrh: - Roll: - Svitak: + Roll: + Svitak: - Yaw: - Skretati sa pravca: + Yaw: + Skretati sa pravca: - Rotation axis with angle - Rotation axis with angle + Rotation axis with angle + Os rotacije sa kutom - Euler angles - Eulerovi kutevi + Euler angles + Eulerovi kutevi - Apply placement changes immediately - Primijeni promjene položaja odmah + Apply placement changes immediately + Primijeni promjene položaja odmah - Apply incremental changes to object placement - Primijeni inkrementalne promjene položaju objekta + Apply incremental changes to object placement + Primijeni inkrementalne promjene položaju objekta - Apply - Primijeni + Apply + Primijeni - Reset - Odbaci + Reset + Odbaci - Close - Zatvori + Close + Zatvori - - + + Gui::Dialog::PrintModel - Button - Gumb + Button + Gumb - Command - Naredba + Command + Naredba - - + + Gui::Dialog::SceneInspector - Dialog - Dijalog + Dialog + Dijalog - Close - Zatvori + Close + Zatvori - Refresh - Osvježi + Refresh + Osvježi - - + + Gui::Dialog::SceneModel - Inventor Tree - Inventor stablo + Inventor Tree + Inventor stablo - Nodes - Čvorovi + Nodes + Čvorovi - - + + Gui::Dialog::TextureMapping - Texture - Tekstura + Texture + Tekstura - Texture mapping - Mapiranje tekstura + Texture mapping + Mapiranje tekstura - Global - Globalna + Global + Globalna - Environment - Okolina + Environment + Okolina - Image files (%1) - Slikovne datoteke (%1) + Image files (%1) + Slikovne datoteke (%1) - No image - Nema slike + No image + Nema slike - The specified file is not a valid image file. - Navedena datoteka nije valjana datoteka slike. + The specified file is not a valid image file. + Navedena datoteka nije valjana datoteka slike. - No 3d view - Nema 3D prikaza + No 3d view + Nema 3D prikaza - No active 3d view found. - Nije pronađen aktivni 3D prikaz. + No active 3d view found. + Nije pronađen aktivni 3D prikaz. - - + + Gui::Dialog::Transform - Cancel - Otkazati + Cancel + Otkazati - Transform - Transformiraj + Transform + Transformiraj - - + + Gui::DlgTreeWidget - Dialog - Dijalog + Dialog + Dijalog - Items - Jedinice + Items + Jedinice - OK - U redu + OK + U redu - Cancel - Otkazati + Cancel + Otkazati - - + + - - + + Gui::DockWnd::CombiView - CombiView - Mješani pogled + CombiView + Mješani pogled - Project - Projekt + Project + Projekt - Tasks - Zadaci + Tasks + Zadaci - - + + Gui::DockWnd::HelpView - Previous - Prethodna + Previous + Prethodna - Next - Slijedeća + Next + Slijedeća - Home - Početna stranica + Home + Početna stranica - Open - Otvori + Open + Otvori - Open file - Otvori datoteku + Open file + Otvori datoteku - All HTML files (*.html *.htm) - Sve HTML datoteke (*. html *. htm) + All HTML files (*.html *.htm) + Sve HTML datoteke (*. html *. htm) - External browser - Vanjski preglednik + External browser + Vanjski preglednik - No external browser found. Specify in preferences, please - Nije pronađen vanjski preglednik. Navedite u postavkama, molim + No external browser found. Specify in preferences, please + Nije pronađen vanjski preglednik. Navedite u postavkama, molim - Starting of %1 failed - Pokretanje %1 nije uspjelo + Starting of %1 failed + Pokretanje %1 nije uspjelo - - + + Gui::DockWnd::PropertyDockView - Property View - Pregled vlasništva + Property View + Pregled vlasništva - - + + Gui::DockWnd::ReportOutput - Logging - Prijava + Logging + Prijava - Warning - Upozorenje + Warning + Upozorenje - Error - Pogreška + Error + Pogreška - Options - Mogućnosti + Options + Mogućnosti - Clear - Brisanje + Clear + Brisanje - Save As... - Spremi kao ... + Save As... + Spremi kao ... - Save Report Output - Spremi izvješće izlaza + Save Report Output + Spremi izvješće izlaza - Plain Text Files (*.txt *.log) - Obične tekstualne datoteke (*. txt *. log) + Plain Text Files (*.txt *.log) + Obične tekstualne datoteke (*. txt *. log) - Go to end - Idi na kraj + Go to end + Idi na kraj - Redirect Python output - Preusmjeravanje Python izlaza + Redirect Python output + Preusmjeravanje Python izlaza - Redirect Python errors - Preusmjeravanje Python pogreški + Redirect Python errors + Preusmjeravanje Python pogreški - - + + Gui::DockWnd::ReportView - Output - Izlaz + Output + Izlaz - Python console - Python konzola + Python console + Python konzola - - + + Gui::DockWnd::SelectionView - Property View - Pregled vlasništva + Property View + Pregled vlasništva - - + + Gui::DockWnd::TaskPanelView - Task View - Pregled zadataka + Task View + Pregled zadataka - - + + Gui::DockWnd::TextBrowser - Could not open file. - Ne mogu otvoriti datoteku. + Could not open file. + Ne mogu otvoriti datoteku. - You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. - Pokušali ste pristupiti adresi %1, koja je trenutno nedostupna. Molimo provjerite je li URL postoji i pokušajte ponovno učitati stranicu. + You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. + Pokušali ste pristupiti adresi %1, koja je trenutno nedostupna. Molimo provjerite je li URL postoji i pokušajte ponovno učitati stranicu. - Connecting to %1 - Spajanje na %1 + Connecting to %1 + Spajanje na %1 - Sending to %1 - Slanje na %1 + Sending to %1 + Slanje na %1 - Reading from %1 - Čitanje iz %1 + Reading from %1 + Čitanje iz %1 - Download failed: %1. - Preuzimanje nije uspjelo: %1. + Download failed: %1. + Preuzimanje nije uspjelo: %1. - Previous - Prethodna + Previous + Prethodna - Forward - Naprijed + Forward + Naprijed - Home - Početna stranica + Home + Početna stranica - Refresh - Osvježi + Refresh + Osvježi - Copy - Kopiraj + Copy + Kopiraj - Select all - Označi sve + Select all + Označi sve - No description for - Nema opisa za + No description for + Nema opisa za - - + + Gui::DocumentModel - Application - Aplikacija + Application + Aplikacija - Labels & Attributes - Etikete i atributi + Labels & Attributes + Etikete i atributi - - + + Gui::EditorView - Modified file - Promjena datoteke + Modified file + Promjena datoteke - %1. + %1. This has been modified outside of the source editor. Do you want to reload it? - %1. + %1. Ovo je modificirano izvan izvornog editora. Želite li ga ponovno učitati? - Unsaved document - Nespremljeni dokument + Unsaved document + Nespremljeni dokument - The document has been modified. + The document has been modified. Do you want to save your changes? - Dokument je promijenjen. Želite li spremiti promjene? + Dokument je promijenjen. Želite li spremiti promjene? - FreeCAD macro (*.FCMacro);;Python (*.py) - FreeCAD makro (*.FCMacro);;Python (*.py) + FreeCAD macro (*.FCMacro);;Python (*.py) + FreeCAD makro (*.FCMacro);;Python (*.py) - Export PDF - Izvoz PDF + Export PDF + Izvoz PDF - PDF file (*.pdf) - PDF datoteka (*.pdf) + PDF file (*.pdf) + PDF datoteka (*.pdf) - untitled[*] - Bez imena[*] + untitled[*] + Bez imena[*] - - Editor - - Urednik + - Editor + - Urednik - %1 chars removed - %1 znakova uklonjeno + %1 chars removed + %1 znakova uklonjeno - %1 chars added - %1 znakova dodano + %1 chars added + %1 znakova dodano - Formatted - Oblikovano + Formatted + Oblikovano - - + + Gui::FileChooser - Select a file - Odaberite datoteku + Select a file + Odaberite datoteku - Select a directory - Odaberite direktorij + Select a directory + Odaberite direktorij - - + + Gui::FileDialog - Save as - Spremi kao + Save as + Spremi kao - Open - Otvori + Open + Otvori - - + + Gui::FileOptionsDialog - Extended - Produženo + Extended + Produženo - All files (*.*) - Sve datoteke (*.*) + All files (*.*) + Sve datoteke (*.*) - - + + Gui::Flag - Top left - Gore lijevo + Top left + Gore lijevo - Bottom left - Dolje lijevo + Bottom left + Dolje lijevo - Top right - Gore desno + Top right + Gore desno - Bottom right - Dolje desno + Bottom right + Dolje desno - Remove - Ukloniti + Remove + Ukloniti - - + + Gui::InventorNavigationStyle - Press CTRL and left mouse button - Pritisnite CTRL i lijevu tipku miša + Press CTRL and left mouse button + Pritisnite CTRL i lijevu tipku miša - Press middle mouse button - Pritisnite srednju tipku miša + Press middle mouse button + Pritisnite srednju tipku miša - Press left mouse button - Pritisnite lijevu tipku miša + Press left mouse button + Pritisnite lijevu tipku miša - Scroll middle mouse button - Kotrljajte kotačić na mišu + Scroll middle mouse button + Kotrljajte kotačić na mišu - - + + Gui::LocationDialog - Wrong direction - Pogrešan smjer + Wrong direction + Pogrešan smjer - Direction must not be the null vector - Smjer ne smije biti nula + Direction must not be the null vector + Smjer ne smije biti nula - X - X + X + X - Y - Y + Y + Y - Z - Z + Z + Z - User defined... - Korisnički definirano... + User defined... + Korisnički definirano... - - + + Gui::LocationWidget - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - Z: + Z: + Z: - Direction: - + Direction: + Smjer: - - + + Gui::MacroCommand - Macros - Makronaredbe + Macros + Makronaredbe - - + + Gui::MainWindow - Dimension - Dimenzija + Dimension + Dimenzija - Ready - Spreman + Ready + Spreman - Toggles this toolbar - Uključuje ove alatne trake + Toggles this toolbar + Uključuje ove alatne trake - Toggles this dockable window - Uključuje ovaj usidrivi prozor + Toggles this dockable window + Uključuje ovaj usidrivi prozor - Close All - Zatvori sve + Close All + Zatvori sve - - + + Gui::ManualAlignment - Manual alignment - + Manual alignment + učno poravnavanje - The alignment is already in progress. - + The alignment is already in progress. + Poravnavanje se trenutno izvršava. - Alignment[*] - + Alignment[*] + Poravnavanje[*] - Please, select at least one point in the left and the right view - + Please, select at least one point in the left and the right view + Molimo odaberite barem jedan vrh sa lijeve i desne strane - Please, select at least %1 points in the left and the right view - + Please, select at least %1 points in the left and the right view + Molimo odaberite barem jedan %1 vrh sa lijeve i desne strane - Please pick points in the left and right view - + Please pick points in the left and right view + Molimo odaberite točke sa lijeve i desne strane - The alignment has finished - + The alignment has finished + Poravnavanje dovršeno - The alignment has been canceled - + The alignment has been canceled + Poravnavanje otkazano - Too few points picked in the left view. At least %1 points are needed. - + Too few points picked in the left view. At least %1 points are needed. + Premalo točaka je odabrano sa lijeve strane. Barem %1 je potrebno. - Too few points picked in the right view. At least %1 points are needed. - + Too few points picked in the right view. At least %1 points are needed. + Premalo točaka je odabrano sa desne strane. Barem %1 je potrebno. - Different number of points picked in left and right view. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Različit broj vrhova je odabran sa lijeve strane. +Lijevo je odabrano %1 vrhova, +Desno je odabrano %2 vrhova. - Try to align group of views - + Try to align group of views + Pokušaj poravnati grupe pogleda - The alignment failed. + The alignment failed. How do you want to proceed? - + Poravnavanje nije uspjelo. +Kako želite nastaviti? - Retry - + Retry + Ponovi - Ignore - + Ignore + Zanemari - Abort - + Abort + Prekini - Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + Različit broj vrhova je odabran sa lijeve strane. Lijevo je odabrano %1 vrhova, a desno je odabrano %2 vrhova. - Point picked at (%1,%2,%3) - + Point picked at (%1,%2,%3) + Odabran vrh (%1, %2, %3) - No point was picked - + No point was picked + Ni jedan vrh nije odabran - - + + Gui::NetworkRetriever - Download started... + Download started... - Preuzimanje je započelo... + Preuzimanje je započelo... - - + + Gui::ProgressBar - Remaining: %1 - Preostalo: %1 + Remaining: %1 + Preostalo: %1 - Aborting - Odustani + Aborting + Odustani - Do you really want to abort the operation? - Želite li zaista prekinuti operaciju? + Do you really want to abort the operation? + Želite li zaista prekinuti operaciju? - - + + Gui::ProgressDialog - Remaining: %1 - Preostalo: %1 + Remaining: %1 + Preostalo: %1 - Aborting - Odustani + Aborting + Odustani - Do you really want to abort the operation? - Želite li zaista prekinuti operaciju? + Do you really want to abort the operation? + Želite li zaista prekinuti operaciju? - - + + Gui::PropertyEditor::PropertyModel - Property - Opcije + Property + Opcije - Value - Vrijednost + Value + Vrijednost - - + + Gui::PropertyView - View - Pregled + View + Pregled - Data - Podaci + Data + Podaci - - + + Gui::PythonConsole - System exit - Izlaz iz sustava + System exit + Izlaz iz sustava - The application is still running. + The application is still running. Do you want to exit without saving your data? - Primjena se još uvijek izvršava. Želite li izaći bez snimanja podataka? + Primjena se još uvijek izvršava. Želite li izaći bez snimanja podataka? - Python console - Python konzola + Python console + Python konzola - Unhandled PyCXX exception. - Neobrađena PyCXX iznimka. + Unhandled PyCXX exception. + Neobrađena PyCXX iznimka. - Unhandled FreeCAD exception. - Neobrađena FreeCAD iznimka. + Unhandled FreeCAD exception. + Neobrađena FreeCAD iznimka. - Unhandled unknown C++ exception. - Neobrađena nepoznata C++ iznimka. + Unhandled unknown C++ exception. + Neobrađena nepoznata C++ iznimka. - &Copy command - &Kopiraj naredba + &Copy command + &Kopiraj naredba - &Copy history - &Kopiraj povijest + &Copy history + &Kopiraj povijest - Save history as... - Spremi povijest kao ... + Save history as... + Spremi povijest kao ... - Insert file name... - Umetni ime datoteke ... + Insert file name... + Umetni ime datoteke ... - Save History - Spremi povijest + Save History + Spremi povijest - Macro Files (*.FCMacro *.py) - Makro datoteke (*. FCMacro *. py) + Macro Files (*.FCMacro *.py) + Makro datoteke (*. FCMacro *. py) - Insert file name - Umetni ime datoteke + Insert file name + Umetni ime datoteke - All Files (*.*) - Sve datoteke (*.*) + All Files (*.*) + Sve datoteke (*.*) - Python Input Dialog - Ulazbi Python dijalog + Python Input Dialog + Ulazbi Python dijalog - Unhandled std C++ exception. - Neobrađena STD C++ iznimka. + Unhandled std C++ exception. + Neobrađena STD C++ iznimka. - Word wrap - Automatsko dovršavanje + Word wrap + Automatsko dovršavanje - &Copy - &Kopiraj + &Copy + &Kopiraj - &Paste - &Zalijepi + &Paste + &Zalijepi - Select All - Označi sve + Select All + Označi sve - Clear console - + Clear console + Makni konsolu - - + + Gui::PythonEditor - Comment - Komentar + Comment + Komentar - Uncomment - Bez komentara + Uncomment + Bez komentara - - + + Gui::PythonInputField - OK - U redu + OK + U redu - Clear - Brisanje + Clear + Brisanje - - + + Gui::RecentFilesAction - Open file %1 - Otvoriti datoteku %1 + Open file %1 + Otvoriti datoteku %1 - File not found - Datoteka nije pronađena + File not found + Datoteka nije pronađena - The file '%1' cannot be opened. - Datoteka '%1' ne može biti otvorena. + The file '%1' cannot be opened. + Datoteka '%1' ne može biti otvorena. - - + + Gui::SelectModule - Select module - Odaberite modul + Select module + Odaberite modul - Open %1 as - Otvori %1 kao + Open %1 as + Otvori %1 kao - Select - Odaberite + Select + Odaberite - - + + Gui::StdCmdDescription - Help - Pomoć + Help + Pomoć - Des&cription - Opi&s + Des&cription + Opi&s - Long description of commands - Dugi opis naredbi + Long description of commands + Dugi opis naredbi - - + + Gui::StdCmdDownloadOnlineHelp - Help - Pomoć + Help + Pomoć - Download online help - Preuzimanje on-line pomoći + Download online help + Preuzimanje on-line pomoći - Download %1's online help - Preuzimanje %1 on-line pomoći + Download %1's online help + Preuzimanje %1 on-line pomoći - Non-existing directory - Nepostojeći direktorij + Non-existing directory + Nepostojeći direktorij - The directory '%1' does not exist. + The directory '%1' does not exist. Do you want to specify an existing directory? - Direktorij '%1' ne postoji. + Direktorij '%1' ne postoji. Želite li navesti postojeći direktorij? - Missing permission - Nedostaju ovlasti + Missing permission + Nedostaju ovlasti - You don't have write permission to '%1' + You don't have write permission to '%1' Do you want to specify another directory? - Nemate dopuštenje pisati u '%1' + Nemate dopuštenje pisati u '%1' Želite li odrediti drugi direktorij? - Stop downloading - Zaustavi preuzimanje + Stop downloading + Zaustavi preuzimanje - - + + Gui::StdCmdPythonHelp - Tools - Alati + Tools + Alati - Python Modules - Python moduli + Python Modules + Python moduli - Opens a browser to show the Python modules - Otvara preglednik za prikaz Python modula + Opens a browser to show the Python modules + Otvara preglednik za prikaz Python modula - - + + Gui::TaskBoxAngle - Angle - Kut + Angle + Kut - - + + Gui::TaskBoxPosition - Position - Položaj + Position + Položaj - - + + Gui::TaskView::TaskAppearance - Display mode: - Prikaz: + Plot mode: + nacrt: - Plot mode: - nacrt: + Point size: + Veličina točke: - Point size: - Veličina točke: + Line width: + Širina linije: - Line width: - Širina linije: + Transparency: + Prozirnost: - Transparency: - Prozirnost: + Appearance + Izgled - Appearance - Izgled + Document window: + Prozor dokumenta: - - Document window: - - - - + + Gui::TaskView::TaskEditControl - Edit - Uredi + Edit + Uredi - - + + Gui::TaskView::TaskSelectLinkProperty - Appearance - Izgled + Appearance + Izgled - ... - ... + ... + ... - edit selection - uredi odabir + edit selection + uredi odabir - - + + Gui::TouchpadNavigationStyle - Press left mouse button - Pritisnite lijevu tipku miša + Press left mouse button + Pritisnite lijevu tipku miša - Press SHIFT button - + Press SHIFT button + Pritisni SHIFT - Press ALT button - + Press ALT button + Pritisni ALT - Press PgUp/PgDown button - + Press PgUp/PgDown button + Pritisni PgUp/PgDown - - - Gui::Translator - - English - Engleski - - - + + Gui::TreeDockWidget - Tree view - Pogled hijerarhije + Tree view + Pogled hijerarhije - - + + Gui::TreeWidget - Create group... - Napravi grupu ... + Create group... + Napravi grupu ... - Create a group - Napravite grupu + Create a group + Napravite grupu - Group - Grupa + Group + Grupa - Rename - Preimenuj + Rename + Preimenuj - Rename object - Preimenovanje objekta + Rename object + Preimenovanje objekta - Labels & Attributes - Etikete i atributi + Labels & Attributes + Etikete i atributi - Application - Aplikacija + Application + Aplikacija - Finish editing - Završi uređivanje + Finish editing + Završi uređivanje - Finish editing object - Završi uređivanje objekta + Finish editing object + Završi uređivanje objekta - Activate document - Aktiviraj dokument + Activate document + Aktiviraj dokument - Activate document %1 - Aktiviraj dokument %1 + Activate document %1 + Aktiviraj dokument %1 - - + + Gui::View3DInventor - Export PDF - Izvoz PDF + Export PDF + Izvoz PDF - PDF file (*.pdf) - PDF datoteka (*.pdf) + PDF file (*.pdf) + PDF datoteka (*.pdf) - - + + Gui::WorkbenchGroup - Select the '%1' workbench - Odaberite '%1' radni stol + Select the '%1' workbench + Odaberite '%1' radni stol - - + + Position - Form - Obrazac + Form + Obrazac - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - Z: + Z: + Z: - 0.1 mm - 0.1 mm + 0.1 mm + 0.1 mm - 0.5 mm - 0.5 mm + 0.5 mm + 0.5 mm - 1 mm - 1 mm + 1 mm + 1 mm - 2 mm - 2 mm + 2 mm + 2 mm - 5 mm - 5 mm + 5 mm + 5 mm - 10 mm - 10 mm + 10 mm + 10 mm - 20 mm - 20 mm + 20 mm + 20 mm - 50 mm - 50 mm + 50 mm + 50 mm - 100 mm - 100 mm + 100 mm + 100 mm - 200 mm - 200 mm + 200 mm + 200 mm - 500 mm - 500 mm + 500 mm + 500 mm - 1 m - 1 m + 1 m + 1 m - 2 m - 2 m + 2 m + 2 m - 5 m - 5 m + 5 m + 5 m - Grid Snap in - Uhvati Rešetku u + Grid Snap in + Uhvati Rešetku u - - + + QDockWidget - Tree view - Pogled hijerarhije + Tree view + Pogled hijerarhije - Property view - Pregled vlasništva + Property view + Pregled vlasništva - Selection view - Pregled selekcije + Selection view + Pregled selekcije - Report view - Pregled izvještaja + Report view + Pregled izvještaja - Task View - Pregled zadataka + Task View + Pregled zadataka - Combo View - Kombinirani pregled + Combo View + Kombinirani pregled - Toolbox - Traka s alatima + Toolbox + Traka s alatima - Python console - Python konzola + Python console + Python konzola - Display properties - Prikaz svojstava + Display properties + Prikaz svojstava - - + + QObject - General - Općenito + General + Općenito - Display - Prikaz + Display + Prikaz - Unknown filetype - Nepoznata vrsta datoteke + Unknown filetype + Nepoznata vrsta datoteke - Cannot open unknown filetype: %1 - Ne mogu otvoriti nepoznatu vrstu datoteke: %1 + Cannot open unknown filetype: %1 + Ne mogu otvoriti nepoznatu vrstu datoteke: %1 - Cannot save to unknown filetype: %1 - Ne mogu spremiti nepoznatu vrstu datoteke: %1 + Cannot save to unknown filetype: %1 + Ne mogu spremiti nepoznatu vrstu datoteke: %1 - Workbench failure - Workbench neuspjeh + Workbench failure + Workbench neuspjeh - %1 - %1 + %1 + %1 - Unable to launch Qt Assistant (%1) - Nije moguće pokrenuti Qt Assistant (%1) + Unable to launch Qt Assistant (%1) + Nije moguće pokrenuti Qt Assistant (%1) - Exception - Iznimka + Exception + Iznimka - Open document - Otvori dokument + Open document + Otvori dokument - Import file - Uvoz datoteke + Import file + Uvoz datoteke - Export file - Izvoz datoteke + Export file + Izvoz datoteke - Printing... - Ispis ... + Printing... + Ispis ... - Cannot load workbench - Ne mogu učitati radni stol + Cannot load workbench + Ne mogu učitati radni stol - A general error occurred while loading the workbench - Došlo je do pogreške tijekom učitavanja radnog stola + A general error occurred while loading the workbench + Došlo je do pogreške tijekom učitavanja radnog stola - File not found - Datoteka nije pronađena + Save views... + Spremi poglede ... - Cannot open file %1 - Ne mogu otvoriti datoteku %1 + Load views... + Učitavanje pregleda ... - Save views... - Spremi poglede ... + Freeze view + Zamrzni pogled - Load views... - Učitavanje pregleda ... + Clear views + Obriši poglede - Freeze view - Zamrzni pogled + Restore view &%1 + Vrati pogled &%1 - Clear views - Obriši poglede + Save frozen views + Spremi smrznute poglede - Restore view &%1 - Vrati pogled &%1 + Frozen views (*.cam) + Smrznuti prikazi (*.cam) - Save frozen views - Spremi smrznute poglede + Restore views + Vraćanje pogleda - Frozen views (*.cam) - Smrznuti prikazi (*.cam) - - - Restore views - Vraćanje pogleda - - - Importing the restored views would clear the already stored views. + Importing the restored views would clear the already stored views. Do you want to continue? - Uvoz obnovljena pogleda bi obrisao već pohranjene poglede. Želite li nastaviti? + Uvoz obnovljena pogleda bi obrisao već pohranjene poglede. Želite li nastaviti? - Restore frozen views - Vraćanje smrznutih pogleda + Restore frozen views + Vraćanje smrznutih pogleda - Cannot open file '%1'. - Ne mogu otvoriti datoteku '%1'. + Cannot open file '%1'. + Ne mogu otvoriti datoteku '%1'. - Docked - Usidren + Docked + Usidren - Undocked - Odsidren + Undocked + Odsidren - Fullscreen - Preko cijelog ekrana + Fullscreen + Preko cijelog ekrana - files - datoteke + files + datoteke - Save picture - Spremi sliku + Save picture + Spremi sliku - New sub-group - Nova podgrupa + New sub-group + Nova podgrupa - Enter the name: - Unesite naziv: + Enter the name: + Unesite naziv: - New text item - Nova tekst jedinica + New text item + Nova tekst jedinica - Enter your text: - Unesite tekst: + Enter your text: + Unesite tekst: - New integer item - Nova integer jedinica + New integer item + Nova integer jedinica - Enter your number: - Unesite broj: + Enter your number: + Unesite broj: - New unsigned item - Nova unsigned jedinica + New unsigned item + Nova unsigned jedinica - New float item - Nova float jedinica + New float item + Nova float jedinica - New Boolean item - Nova Boolean jedinica + New Boolean item + Nova Boolean jedinica - Choose an item: - Izaberite jedinicu: + Choose an item: + Izaberite jedinicu: - Rename group - Preimenuj grupu + Rename group + Preimenuj grupu - The group '%1' cannot be renamed. - Grupa '%1' ne može biti preimenovana. + The group '%1' cannot be renamed. + Grupa '%1' ne može biti preimenovana. - Existing group - Postojeća grupa + Existing group + Postojeća grupa - The group '%1' already exists. - Grupa '%1' već postoji. + The group '%1' already exists. + Grupa '%1' već postoji. - Change value - Promjena vrijednosti + Change value + Promjena vrijednosti - Save document under new filename... - Spremi dokument pod novim imenom ... + Save document under new filename... + Spremi dokument pod novim imenom ... - Saving aborted - Spremanje prekinuto + Saving aborted + Spremanje prekinuto - Unsaved document - Nespremljeni dokument + Unsaved document + Nespremljeni dokument - Save document before close? - Spremi dokument prije zatvaranja? + Save document before close? + Spremi dokument prije zatvaranja? - Save Macro - Spremi Makro + Save Macro + Spremi Makro - Finish - Završiti + Finish + Završiti - Clear - Brisanje + Clear + Brisanje - Cancel - Otkazati + Cancel + Otkazati - Inner - Unutrašnji + Inner + Unutrašnji - Outer - Vanjski + Outer + Vanjski - No Browser - Nema preglednika + No Browser + Nema preglednika - Unable to open your browser. + Unable to open your browser. Please open a browser window and type in: http://localhost:%1. - Nije moguće otvoriti pregledniku. Molimo vas da otvorite prozor preglednika i unesete: http://localhost:%1. + Nije moguće otvoriti pregledniku. Molimo vas da otvorite prozor preglednika i unesete: http://localhost:%1. - No Server - Nema Servera + No Server + Nema Servera - Unable to start the server to port %1: %2. - Nije moguće pokrenuti poslužitelja na portu %1: %2. + Unable to start the server to port %1: %2. + Nije moguće pokrenuti poslužitelja na portu %1: %2. - Unable to open your system browser. - Ne mogu otvoriti vaš preglednik sustava. + Unable to open your system browser. + Ne mogu otvoriti vaš preglednik sustava. - Options... - Opcije ... + Options... + Opcije ... - Out of memory - Bez memorije + Out of memory + Bez memorije - Not enough memory available to display the data. - Nema dovoljno dostupne memorije za prikaz podataka. + Not enough memory available to display the data. + Nema dovoljno dostupne memorije za prikaz podataka. - Cannot find file %1 - Ne mogu pronaći datoteku %1 + Cannot find file %1 + Ne mogu pronaći datoteku %1 - Cannot find file %1 neither in %2 nor in %3 - Ne mogu pronaći datoteku %1 niti u %2 niti u %3 + Cannot find file %1 neither in %2 nor in %3 + Ne mogu pronaći datoteku %1 niti u %2 niti u %3 - Save %1 Document - Spremi %1 dokument + Save %1 Document + Spremi %1 dokument - %1 document (*.FCStd) - %1 dokument (*.FCStd) + %1 document (*.FCStd) + %1 dokument (*.FCStd) - Save As - Spremi kao + Save As + Spremi kao - %1 already exists. + %1 already exists. Do you want to replace it? - %1 već postoji. Želite li ga zamijeniti? + %1 već postoji. Želite li ga zamijeniti? - Document not closable - Dokument nije moguće zatvoriti + Document not closable + Dokument nije moguće zatvoriti - The document is not closable for the moment. - Dokument trenutno nije moguće zatvoriti. + The document is not closable for the moment. + Dokument trenutno nije moguće zatvoriti. - No OpenGL - Nema OpenGL + No OpenGL + Nema OpenGL - This system does not support OpenGL - Ovaj sustav ne podržava OpenGL + This system does not support OpenGL + Ovaj sustav ne podržava OpenGL - Help - Pomoć + Help + Pomoć - Unable to load documentation. + Unable to load documentation. In order to load it Qt 4.4 or higher is required. - Nije moguće učitati dokument. + Nije moguće učitati dokument. Da bi se to omogućilo potreban je Qt verzije 4,4 ili više. - %1 Help - %1 Pomoć + %1 Help + %1 Pomoć - Exporting PDF... - Izvoz PDF ... + Exporting PDF... + Izvoz PDF ... - Wrong selection - Pogrešan odabir + Wrong selection + Pogrešan odabir - Only one object selected. Please select two objects. + Only one object selected. Please select two objects. Be aware the point where you click matters. - Samo jedan objekt odabran. Odaberite dva objekta. + Samo jedan objekt odabran. Odaberite dva objekta. Pazite jer točke odabira utječu. - Please select two objects. + Please select two objects. Be aware the point where you click matters. - Odaberite dva objekta. + Odaberite dva objekta. Pazite jer točke odabira utječu. - New boolean item - Nova boolean jedinica + New boolean item + Nova boolean jedinica - Navigation styles - Načini navigacije + Navigation styles + Načini navigacije - %1 navigation - %1 navigacija + %1 navigation + %1 navigacija - Move annotation - Premjesti primjedbu + Move annotation + Premjesti primjedbu - Transform - Transformiraj + Transform + Transformiraj - The document is in editing mode and thus cannot be closed for the moment. + The document is in editing mode and thus cannot be closed for the moment. You either have to finish or cancel the editing in the task panel. - Dokument je u načinu uređivanja pa se trenutno ne može zatvoriti. Trebate ili završiti uređivanje ili ga otkazati u ploči zadataka. + Dokument je u načinu uređivanja pa se trenutno ne može zatvoriti. Trebate ili završiti uređivanje ili ga otkazati u ploči zadataka. - - + + StdBoxSelection - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Box selection - + Box selection + Pravokutno odabiranje - - + + StdCmdAbout - Help - Pomoć + Help + Pomoć - &About %1 - &O %1 + &About %1 + &O %1 - About %1 - O %1 + About %1 + O %1 - - + + StdCmdAboutQt - Help - Pomoć + Help + Pomoć - About &Qt - O &Qt + About &Qt + O &Qt - About Qt - O Qt + About Qt + O Qt - - + + StdCmdActivateNextWindow - Window - Prozor + Window + Prozor - Ne&xt - Slijede&ći + Ne&xt + Slijede&ći - Activate next window - Aktiviraj slijedeći prozor + Activate next window + Aktiviraj slijedeći prozor - - + + StdCmdActivatePrevWindow - Window - Prozor + Window + Prozor - Pre&vious - Pre&thodni + Pre&vious + Pre&thodni - Activate previous window - Aktiviraj prethodni prozor + Activate previous window + Aktiviraj prethodni prozor - - + + StdCmdAlignment - Edit - Uredi + Edit + Uredi - Alignment... - + Alignment... + Poravnavanje... - Align the selected objects - + Align the selected objects + Poravnaj odabrane objekte - - + + StdCmdArrangeIcons - Window - Prozor + Window + Prozor - Arrange &Icons - Rasporedi &ikone + Arrange &Icons + Rasporedi &ikone - Arrange Icons - Rasporedi ikone + Arrange Icons + Rasporedi ikone - - + + StdCmdAxisCross - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Toggle axis cross - Pokaži ishodište + Toggle axis cross + Pokaži ishodište - - + + StdCmdCascadeWindows - Window - Prozor + Window + Prozor - &Cascade - Na&slaži + &Cascade + Na&slaži - Tile pragmatic - Crijep pragmatičan + Tile pragmatic + Crijep pragmatičan - - + + StdCmdCloseActiveWindow - Window - Prozor + Window + Prozor - Cl&ose - Zatv&ori + Cl&ose + Zatv&ori - Close active window - Zatvori aktivni prozor + Close active window + Zatvori aktivni prozor - - + + StdCmdCloseAllWindows - Window - Prozor + Window + Prozor - Close Al&l - Zatvori Sv&e + Close Al&l + Zatvori Sv&e - Close all windows - Zatvori sve prozore + Close all windows + Zatvori sve prozore - - + + StdCmdCommandLine - Tools - Alati + Tools + Alati - Start command &line... - Pokreni komandnu &liniju ... + Start command &line... + Pokreni komandnu &liniju ... - Opens the command line in the console - Otvara komandnu liniju u konzoli + Opens the command line in the console + Otvara komandnu liniju u konzoli - - + + StdCmdCopy - Edit - Uredi + Edit + Uredi - C&opy - K&opiraj + C&opy + K&opiraj - Copy operation - Kopirati + Copy operation + Kopirati - - + + StdCmdCut - Edit - Uredi + Edit + Uredi - &Cut - &Izreži + &Cut + &Izreži - Cut out - Izrezati + Cut out + Izrezati - - - StdCmdDDuplicateSelection - - Edit - Uredi - - - Duplicate selection - Udvostruči odabir - - - Put duplicates of the selected objects to the active document - Stavilja kopije odabranih objekata na aktivni dokument - - - + + StdCmdDelete - Edit - Uredi + Edit + Uredi - &Delete - &Izbriši + &Delete + &Izbriši - Deletes the selected objects - Briše odabrane objekte + Deletes the selected objects + Briše odabrane objekte - - + + StdCmdDemoMode - Standard-View - Standardni pogled + Standard-View + Standardni pogled - View turntable... - Prikaži okretnicu... + View turntable... + Prikaži okretnicu... - View turntable - Prikaži okretnicu + View turntable + Prikaži okretnicu - - + + StdCmdDlgCustomize - Tools - Alati + Tools + Alati - Cu&stomize... - Prilago&dba... + Cu&stomize... + Prilago&dba... - Customize toolbars and command bars - Prilagodba alatnih traka i traki s naredbama + Customize toolbars and command bars + Prilagodba alatnih traka i traki s naredbama - - + + StdCmdDlgMacroExecute - Macros ... - Makronaredbe ... + Macros ... + Makronaredbe ... - Opens a dialog to let you execute a recorded macro - Otvara dijalog kako bi Vam omogućio izvršavanje snimljenih makro naredbi + Opens a dialog to let you execute a recorded macro + Otvara dijalog kako bi Vam omogućio izvršavanje snimljenih makro naredbi - Macro - Makro + Macro + Makro - - + + StdCmdDlgMacroExecuteDirect - Macro - Makro + Macro + Makro - Execute macro - Izvrši makro + Execute macro + Izvrši makro - Execute the macro in the editor - Izvrši makro u editoru + Execute the macro in the editor + Izvrši makro u editoru - - + + StdCmdDlgMacroRecord - &Macro recording ... - &Makro snimanje ... + &Macro recording ... + &Makro snimanje ... - Opens a dialog to record a macro - Otvara dijalog za snimanje makro naredbe + Opens a dialog to record a macro + Otvara dijalog za snimanje makro naredbe - Macro - Makro + Macro + Makro - - + + StdCmdDlgParameter - Tools - Alati + Tools + Alati - E&dit parameters ... - Ure&đivanje parametara ... + E&dit parameters ... + Ure&đivanje parametara ... - Opens a Dialog to edit the parameters - Otvara Dialog za uređivanje parametara + Opens a Dialog to edit the parameters + Otvara Dialog za uređivanje parametara - - + + StdCmdDlgPreferences - Tools - Alati + Tools + Alati - &Preferences ... - &Postavke ... + &Preferences ... + &Postavke ... - Opens a Dialog to edit the preferences - Otvara Dialog kako biste uredili postavke + Opens a Dialog to edit the preferences + Otvara Dialog kako biste uredili postavke - - + + StdCmdDockViewMenu - View - Pregled + View + Pregled - Vie&ws - Pogl&edi + Vie&ws + Pogl&edi - Toggles this window - Uključuje ovaj prozor + Toggles this window + Uključuje ovaj prozor - - + + StdCmdDrawStyle - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Draw style - Draw style + Draw style + Stil crtanja - - + + StdCmdDuplicateSelection - Edit - Uredi + Edit + Uredi - Duplicate selection - Udvostruči odabir + Duplicate selection + Udvostruči odabir - Put duplicates of the selected objects to the active document - Stavilja kopije odabranih objekata na aktivni dokument + Put duplicates of the selected objects to the active document + Stavilja kopije odabranih objekata na aktivni dokument - - + + StdCmdEdit - Edit - Uredi + Edit + Uredi - Toggle &Edit mode - + Toggle &Edit mode + Uključi/isključi mod rada - Toggles the selected object's edit mode - + Toggles the selected object's edit mode + Uključuje ili isključuje mod rada na odabranom objektu - Enters or leaves the selected object's edit mode - + Enters or leaves the selected object's edit mode + Započinje ili završava mod rada na odabranom objektu - - + + StdCmdExport - File - Datoteka + File + Datoteka - &Export... - Iz&voz... + &Export... + Iz&voz... - Export an object in the active document - Izvoz objekta u aktivni dokument + Export an object in the active document + Izvoz objekta u aktivni dokument - Supported formats - Podržani formati + No selection + Nema odabira - No selection - + Please select first the objects you want to export. + Molimo prvo odaberite objekte koje želite izvesti. - - Please select first the objects you want to export. - - - - + + StdCmdExportGraphviz - Tools - Alati + Tools + Alati - Dependency graph... - + Dependency graph... + Graf ovisnosti... - Show the dependency graph of the objects in the active document - + Show the dependency graph of the objects in the active document + Prikazuje graf ovisnosti objekata u aktivnom dokumentu - - + + StdCmdFeatRecompute - File - Datoteka + File + Datoteka - &Recompute - &Ponovno proračunavanje + &Recompute + &Ponovno proračunavanje - Recompute feature or document - Ponovno proračunaj značajku ili dokument + Recompute feature or document + Ponovno proračunaj značajku ili dokument - - + + StdCmdFreeCADWebsite - Help - Pomoć + Help + Pomoć - FreeCAD Website - FreeCAD Web stranica + FreeCAD Website + FreeCAD Web stranica - The FreeCAD website - FreeCAD web stranica + The FreeCAD website + FreeCAD web stranica - - + + StdCmdFreezeViews - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Freeze display - Zamrzni prikaz + Freeze display + Zamrzni prikaz - Freezes the current view position - Zamrznii trenutni prikaz položaja + Freezes the current view position + Zamrznii trenutni prikaz položaja - - + + StdCmdHideObjects - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Hide all objects - Sakrij sve objekte + Hide all objects + Sakrij sve objekte - Hide all objects in the document - Sakrij sve objekte u dokument + Hide all objects in the document + Sakrij sve objekte u dokument - - + + StdCmdHideSelection - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Hide selection - Sakrij odabir + Hide selection + Sakrij odabir - Hide all selected objects - Sakrij sve odabrane objekte + Hide all selected objects + Sakrij sve odabrane objekte - - + + StdCmdImport - File - Datoteka + File + Datoteka - &Import... - &Uvoz... + &Import... + &Uvoz... - Import a file in the active document - Uvoz datoteke u aktivnom dokumentu + Import a file in the active document + Uvoz datoteke u aktivnom dokumentu - Supported formats - Podržani formati + Supported formats + Podržani formati - All files (*.*) - Sve datoteke (*.*) + All files (*.*) + Sve datoteke (*.*) - - + + StdCmdMacroStartDebug - Macro - Makro + Macro + Makro - Debug macro - Ispravljanje pogrešaka na makro naredbi + Debug macro + Ispravljanje pogrešaka na makro naredbi - Start debugging of macro - Pokreni ispravljanje pogrešaka na makro naredbi + Start debugging of macro + Pokreni ispravljanje pogrešaka na makro naredbi - - + + StdCmdMacroStepOver - Macro - Makro + Macro + Makro - Step over - Korak preko + Step over + Korak preko - - + + StdCmdMacroStopDebug - Macro - Makro + Macro + Makro - Stop debugging - Zaustavi provjeru pogrešaka + Stop debugging + Zaustavi provjeru pogrešaka - Stop debugging of macro - Zaustavi provjeru pogrešaka na makro naredbi + Stop debugging of macro + Zaustavi provjeru pogrešaka na makro naredbi - - + + StdCmdMacroStopRecord - Macro - Makro + Macro + Makro - S&top macro recording - Zaus&tavljanje snimanja makro naredbe + S&top macro recording + Zaus&tavljanje snimanja makro naredbe - Stop the macro recording session - Zaustavljanje snimanja makro naredbe + Stop the macro recording session + Zaustavljanje snimanja makro naredbe - - + + StdCmdMeasureDistance - View - Pregled + View + Pregled - Measure distance - Mjerenje udaljenosti + Measure distance + Mjerenje udaljenosti - - + + StdCmdMeasurementSimple - Tools - Alati + Tools + Alati - Mesure distance - Izmjeri udaljenost + Measures distance between two selected objects + Mjeri udaljenost između dvaju odabranih objekata - Measures distance between two selected objects - Mjeri udaljenost između dvaju odabranih objekata + Measure distance + Mjerenje udaljenosti - - Measure distance - Mjerenje udaljenosti - - - + + StdCmdMergeProjects - File - Datoteka + File + Datoteka - Merge project... - Spoji projekt ... + Merge project... + Spoji projekt ... - Merge project - Spoji projekt + Merge project + Spoji projekt - %1 document (*.fcstd) - %1 dokument (*.fcstd) + %1 document (*.fcstd) + %1 dokument (*.fcstd) - Cannot merge project with itself. - Ne mogu spojiti projekt sa samim sobom. + Cannot merge project with itself. + Ne mogu spojiti projekt sa samim sobom. - - + + StdCmdNew - File - Datoteka + File + Datoteka - &New - &Novi + &New + &Novi - Create a new empty document - Kreira novi prazni dokument + Create a new empty document + Kreira novi prazni dokument - - + + StdCmdOnlineHelp - Help - Pomoć + Help + Pomoć - Show help to the application - Pokaži pomoć za primjenu + Show help to the application + Pokaži pomoć za primjenu - - - StdCmdOnlineHelpPython - - Help - Pomoć - - - Python Manuals - Python priručnici - - - Show the Python documentation - Pokaži Python dokumentaciju - - - + + StdCmdOnlineHelpWebsite - Help - Pomoć + Help + Pomoć - Help Website - Pomoć Web stranica + Help Website + Pomoć Web stranica - The website where the help is maintained - Web stranica gdje se održava pomoć + The website where the help is maintained + Web stranica gdje se održava pomoć - - + + StdCmdOpen - File - Datoteka + File + Datoteka - &Open... - &Otvori... + &Open... + &Otvori... - Open a document or import files - Otvorite dokument ili uvoz datoteke + Open a document or import files + Otvorite dokument ili uvoz datoteke - Supported formats - Podržani formati + Supported formats + Podržani formati - All files (*.*) - Sve datoteke (*.*) + All files (*.*) + Sve datoteke (*.*) - - + + StdCmdPaste - Edit - Uredi + Edit + Uredi - &Paste - &Zalijepi + &Paste + &Zalijepi - Paste operation - Zalijepi + Paste operation + Zalijepi - - + + StdCmdPlacement - Edit - Uredi + Edit + Uredi - Placement... - Postavljanje... + Placement... + Postavljanje... - Place the selected objects - Postavlja odabrane objekte + Place the selected objects + Postavlja odabrane objekte - - + + StdCmdPrint - File - Datoteka + File + Datoteka - &Print... - Is&pis ... + &Print... + Is&pis ... - Print the document - Ispis dokumenta + Print the document + Ispis dokumenta - - + + StdCmdPrintPdf - File - Datoteka + File + Datoteka - &Export PDF... - PDF I&zvoz... + &Export PDF... + PDF I&zvoz... - Export the document as PDF - Izvoz kao PDF dokument + Export the document as PDF + Izvoz kao PDF dokument - - + + StdCmdPrintPreview - File - Datoteka + File + Datoteka - &Print preview... - &Pregled ispisa ... + &Print preview... + &Pregled ispisa ... - Print the document - Ispis dokumenta + Print the document + Ispis dokumenta - Print preview - Pregled ispisa + Print preview + Pregled ispisa - - + + StdCmdProjectInfo - File - Datoteka + File + Datoteka - Project i&nformation... - I&nformacije o projektu ... + Project i&nformation... + I&nformacije o projektu ... - Show details of the currently active project - Pokaži detalje o trenutno aktivnom projektu + Show details of the currently active project + Pokaži detalje o trenutno aktivnom projektu - - + + StdCmdProjectUtil - Tools - Alati + Tools + Alati - Project utility... - Korisne opcije projekta... + Project utility... + Korisne opcije projekta... - Utility to extract or create project files - Pomoć prilikom dohvata ili stvaranja projektnih datoteka + Utility to extract or create project files + Pomoć prilikom dohvata ili stvaranja projektnih datoteka - - + + StdCmdPythonWebsite - Help - Pomoć + Help + Pomoć - Python Website - Python Web stranica + Python Website + Python Web stranica - The official Python website - Službena web stranica Python + The official Python website + Službena web stranica Python - - + + StdCmdQuit - File - Datoteka + File + Datoteka - E&xit - Iz&laz + E&xit + Iz&laz - Quits the application - Zatvara aplikaciju + Quits the application + Zatvara aplikaciju - - + + StdCmdRandomColor - File - Datoteka + File + Datoteka - Random color - Random boja + Random color + Random boja - - + + StdCmdRecentFiles - File - Datoteka + File + Datoteka - Recent files - Nedavne datoteke + Recent files + Nedavne datoteke - Recent file list - Popis nedavnih datoteka + Recent file list + Popis nedavnih datoteka - - + + StdCmdRedo - Edit - Uredi + Edit + Uredi - &Redo - &Ponovi + &Redo + &Ponovi - Redoes a previously undone action - Vraća prethodno poništenog akciju + Redoes a previously undone action + Vraća prethodno poništenog akciju - - + + StdCmdRefresh - Edit - Uredi + Edit + Uredi - &Refresh - &Osvježi + &Refresh + &Osvježi - Recomputes the current active document - Ponovno proračunava trenutni aktivni dokument + Recomputes the current active document + Ponovno proračunava trenutni aktivni dokument - - + + StdCmdSave - File - Datoteka + File + Datoteka - &Save - &Spremi + &Save + &Spremi - Save the active document - Spremi aktivni dokument + Save the active document + Spremi aktivni dokument - - + + StdCmdSaveAs - File - Datoteka + File + Datoteka - Save &As... - Spremi k&ao... + Save &As... + Spremi k&ao... - Save the active document under a new file name - Spremi aktivni dokument pod novim imenom + Save the active document under a new file name + Spremi aktivni dokument pod novim imenom - - + + StdCmdSceneInspector - Tools - Alati + Tools + Alati - Scene inspector... - Pregled scene... + Scene inspector... + Pregled scene... - Scene inspector - Pregled scene + Scene inspector + Pregled scene - - + + StdCmdSelectAll - Edit - Uredi + Edit + Uredi - Select &All - Ozn&ači sve + Select &All + Ozn&ači sve - Select all - Označi sve + Select all + Označi sve - - + + StdCmdSetAppearance - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Appearance... - Izgled... + Appearance... + Izgled... - Sets the display properties of the selected object - Postavlja prikaz svojstava odabranog objekta + Sets the display properties of the selected object + Postavlja prikaz svojstava odabranog objekta - - + + StdCmdShowObjects - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Show all objects - Prikaži sve objekte + Show all objects + Prikaži sve objekte - Show all objects in the document - Prikazuje sve objekte u dokument + Show all objects in the document + Prikazuje sve objekte u dokument - - + + StdCmdShowSelection - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Show selection - Prikaži izbor + Show selection + Prikaži izbor - Show all selected objects - Prikazuje sve odabrane objekte + Show all selected objects + Prikazuje sve odabrane objekte - - + + StdCmdStatusBar - View - Pregled + View + Pregled - Status bar - Statusna traka + Status bar + Statusna traka - Toggles the status bar - Uključuje/isključuje statusnu traku + Toggles the status bar + Uključuje/isključuje statusnu traku - - + + StdCmdTextureMapping - Tools - Alati + Tools + Alati - Texture mapping... - Mapiranje tekstura ... + Texture mapping... + Mapiranje tekstura ... - Texture mapping - Mapiranje tekstura + Texture mapping + Mapiranje tekstura - - + + StdCmdTileWindows - Window - Prozor + Window + Prozor - &Tile - &Naslov + &Tile + &Naslov - Tile the windows - Tile Windows + Tile the windows + Tile Windows - - + + StdCmdToggleBreakpoint - Macro - Makro + Macro + Makro - Toggle breakpoint - Uključi/isključi prijelomnu točku + Toggle breakpoint + Uključi/isključi prijelomnu točku - - + + StdCmdToggleClipPlane - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Clipping plane - ravni isječak + Clipping plane + ravni isječak - Toggles clipping plane for active view - Uključuje ravni isječak za aktivan prikaz + Toggles clipping plane for active view + Uključuje ravni isječak za aktivan prikaz - - + + StdCmdToggleNavigation - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Toggle navigation/Edit mode - Toggle navigacija / Edit modu + Toggle navigation/Edit mode + Toggle navigacija / Edit modu - Toggle between navigation and edit mode - Šetanje između navigacije i način za uređivanje + Toggle between navigation and edit mode + Šetanje između navigacije i način za uređivanje - - + + StdCmdToggleObjects - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Toggle all objects - Uključi / isključi sve objekte + Toggle all objects + Uključi / isključi sve objekte - Toggles visibility of all objects in the active document - Uključuje/isključuje vidljivost svih objekata u aktivnom dokumentu + Toggles visibility of all objects in the active document + Uključuje/isključuje vidljivost svih objekata u aktivnom dokumentu - - + + StdCmdToggleSelectability - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Toggle selectability - Uključi/isključi mogućnost odabira + Toggle selectability + Uključi/isključi mogućnost odabira - Toggles the property of the objects to get selected in the 3D-View - Uključiuje/isključuje mogućnost odabira objekta u 3D prikazu + Toggles the property of the objects to get selected in the 3D-View + Uključiuje/isključuje mogućnost odabira objekta u 3D prikazu - - + + StdCmdToggleVisibility - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Toggle visibility - Promjeni vidljivost + Toggle visibility + Promjeni vidljivost - Toggles visibility - Uključuje/isključuje vidljivost + Toggles visibility + Uključuje/isključuje vidljivost - - + + StdCmdToolBarMenu - View - Pregled + View + Pregled - Tool&bars - Alatne tra&ke + Tool&bars + Alatne tra&ke - Toggles this window - Uključuje ovaj prozor + Toggles this window + Uključuje ovaj prozor - - + + StdCmdTransform - Edit - Uredi + Edit + Uredi - Transform... - Transformacija ... + Transform... + Transformacija ... - Transform the geometry of selected objects - Preobraziti geometriju odabranih objekata + Transform the geometry of selected objects + Preobraziti geometriju odabranih objekata - - + + StdCmdTreeSelection - View - Pregled + View + Pregled - Go to selection - Idi na odabrane objekte + Go to selection + Idi na odabrane objekte - Scroll to first selected item - Dođite na prvu odabranu stavku + Scroll to first selected item + Dođite na prvu odabranu stavku - - + + StdCmdUndo - Edit - Uredi + Edit + Uredi - &Undo - Poni&šti + &Undo + &Poništi - Undo exactly one action - Poništi točno jednu radnju + Undo exactly one action + Poništi točno jednu radnju - - + + StdCmdUserInterface - View - Pregled + View + Pregled - Dock views - Usidri poglede + Dock views + Usidri poglede - Dock all top-level views - Usidri sve poglede najviše razine + Dock all top-level views + Usidri sve poglede najviše razine - - + + StdCmdViewAxo - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Axometric - Axometric + Axometric + Axometric - Set to axometric view - Postavite axometric prikaz + Set to axometric view + Postavite axometric prikaz - - + + StdCmdViewBottom - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Bottom - Ispod + Bottom + Ispod - Set to bottom view - Postavite pogled od dolje + Set to bottom view + Postavite pogled od dolje - - + + StdCmdViewCreate - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Create new view - Napravi novi pogled + Create new view + Napravi novi pogled - Creates a new view window for the active document - Stvara novi prikaz prozora za aktivni dokument + Creates a new view window for the active document + Stvara novi prikaz prozora za aktivni dokument - - + + StdCmdViewExample1 - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Inventor example #1 - Inventor primjer #1 + Inventor example #1 + Inventor primjer #1 - Shows a 3D texture with manipulator - Pokazuje 3D teksturu sa manipulatorom + Shows a 3D texture with manipulator + Pokazuje 3D teksturu sa manipulatorom - - + + StdCmdViewExample2 - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Inventor example #2 - Inventor primjer #2 + Inventor example #2 + Inventor primjer #2 - Shows spheres and drag-lights - Pokazuje sferu i pomicanje svjetla + Shows spheres and drag-lights + Pokazuje sferu i pomicanje svjetla - - + + StdCmdViewExample3 - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Inventor example #3 - Inventor primjer #3 + Inventor example #3 + Inventor primjer #3 - Shows a animated texture - Pokazuje animirane teksture + Shows a animated texture + Pokazuje animirane teksture - - + + StdCmdViewFitAll - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Fit all - Prikaži sve + Fit all + Prikaži sve - Fits the whole content on the screen - Prikazuje sav sadržaj na zaslonu + Fits the whole content on the screen + Prikazuje sav sadržaj na zaslonu - - + + StdCmdViewFitSelection - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Fit selection - Prikaži odabir + Fit selection + Prikaži odabir - Fits the selected content on the screen - Prikazuje odabrani sadržaj na zaslonu + Fits the selected content on the screen + Prikazuje odabrani sadržaj na zaslonu - - + + StdCmdViewFront - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Front - Ispred + Front + Ispred - Set to front view - Postavlja pogled od gore + Set to front view + Postavlja pogled od gore - - + + StdCmdViewIvIssueCamPos - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Issue camera position - Upit za položaj kamere + Issue camera position + Upit za položaj kamere - Issue the camera position to the console and to a macro, to easily recall this position - Sprema poziciju kamere na konzolu i makro, radi lakšeg vraćanja na ovaj pogled + Issue the camera position to the console and to a macro, to easily recall this position + Sprema poziciju kamere na konzolu i makro, radi lakšeg vraćanja na ovaj pogled - - + + StdCmdViewIvStereoInterleavedColumns - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Stereo Interleaved Columns - Stereo Interleaved Kolumne + Stereo Interleaved Columns + Stereo Interleaved Kolumne - Switch stereo viewing to Interleaved Columns - Prebaci stereo gledanje na Interleaved stupce + Switch stereo viewing to Interleaved Columns + Prebaci stereo gledanje na Interleaved stupce - - + + StdCmdViewIvStereoInterleavedRows - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Stereo Interleaved Rows - Stereo Interleaved redak + Stereo Interleaved Rows + Stereo Interleaved redak - Switch stereo viewing to Interleaved Rows - Prebaci stereo gledanje na retke Interleaved + Switch stereo viewing to Interleaved Rows + Prebaci stereo gledanje na retke Interleaved - - + + StdCmdViewIvStereoOff - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Stereo Off - Stereo Off + Stereo Off + Stereo Off - Switch stereo viewing off - Prebacite stereo gledanje off + Switch stereo viewing off + Prebacite stereo gledanje off - - + + StdCmdViewIvStereoQuadBuff - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Stereo quad buffer - Stereo quad tampon + Stereo quad buffer + Stereo quad tampon - Switch stereo viewing to quad buffer - Prebaci stereo gledanje na quad tampon + Switch stereo viewing to quad buffer + Prebaci stereo gledanje na quad tampon - - + + StdCmdViewIvStereoRedGreen - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Stereo red/green - Stereo crveno / zeleno + Stereo red/green + Stereo crveno / zeleno - Switch stereo viewing to red/green - Prebaci stereo gledanje u crveno / zeleno + Switch stereo viewing to red/green + Prebaci stereo gledanje u crveno / zeleno - - + + StdCmdViewLeft - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Left - Lijevo + Left + Lijevo - Set to left view - Postavlja pogled s lijeve strane + Set to left view + Postavlja pogled s lijeve strane - - + + StdCmdViewRear - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Rear - Iza + Rear + Iza - Set to rear view - Postavlja pogled sa stražnje strane + Set to rear view + Postavlja pogled sa stražnje strane - - + + StdCmdViewRight - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Right - Desno + Right + Desno - Set to right view - Postavlja pogled sa desne strane + Set to right view + Postavlja pogled sa desne strane - - + + StdCmdViewRotateLeft - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Rotate Left - + Rotate Left + Zaokreni lijevo - Rotate the view by 90° counter-clockwise - + Rotate the view by 90° counter-clockwise + Zaokreni pogled za 90° u smjeru obrnutom od kazaljke na satu - - + + StdCmdViewRotateRight - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Rotate Right - + Rotate Right + Zaokreni desno - Rotate the view by 90° clockwise - + Rotate the view by 90° clockwise + Zaokreni pogled za 90° u smjeru kazaljke na satu - - + + StdCmdViewTop - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Top - Gore + Top + Gore - Set to top view - Postavlja pogled sa gornje strane + Set to top view + Postavlja pogled sa gornje strane - - + + StdCmdWhatsThis - Help - Pomoć + Help + Pomoć - &What's This? - &Što je ovo? + &What's This? + &Što je ovo? - What's This - Što je ovo + What's This + Što je ovo - - + + StdCmdWindows - Window - Prozor + Window + Prozor - &Windows... - &Prozori ... + &Windows... + &Prozori ... - Windows list - Popis prozora + Windows list + Popis prozora - - + + StdCmdWindowsMenu - Window - Prozor + Window + Prozor - Activates this window - Aktivira ovaj prozor + Activates this window + Aktivira ovaj prozor - - + + StdCmdWorkbench - View - Pregled + View + Pregled - Workbench - Workbench + Workbench + Workbench - Switch between workbenches - Prebacivanje između workbenches + Switch between workbenches + Prebacivanje između workbenches - - + + StdOrthographicCamera - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Orthographic view - Ortografski pogled + Orthographic view + Ortografski pogled - Switches to orthographic view mode - Postavlja ortografski način pregleda + Switches to orthographic view mode + Postavlja ortografski način pregleda - - + + StdPerspectiveCamera - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Perspective view - Perspektivni pogled + Perspective view + Perspektivni pogled - Switches to perspective view mode - Prebacuje u perspektivan način pregleda + Switches to perspective view mode + Prebacuje u perspektivan način pregleda - - + + StdViewBoxZoom - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Box zoom - Zumiranje u okvir + Box zoom + Zumiranje u okvir - - + + StdViewDockUndockFullscreen - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Document window - Dokument prozor + Document window + Prozor dokumenta - Display the active view either in fullscreen, in undocked or docked mode - Prikaz aktivnog pogleda preko cijelog zaslona, u plutajućem ili usidrenom načinu + Display the active view either in fullscreen, in undocked or docked mode + Prikaz aktivnog pogleda preko cijelog zaslona, u plutajućem ili usidrenom načinu - - + + StdViewScreenShot - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Save picture... - Spremi sliku... + Save picture... + Spremi sliku... - Creates a screenshot of the active view - Stvara sliku aktivnog pogleda + Creates a screenshot of the active view + Stvara sliku aktivnog pogleda - - + + StdViewZoomIn - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Zoom In - Zumirati unutra + Zoom In + Zumirati unutra - - + + StdViewZoomOut - Standard-View - Standardni pogled + Standard-View + Standardni pogled - Zoom Out - Zumirati van + Zoom Out + Zumirati van - - + + Std_DrawStyle - As is - As is + As is + Kao što je - Normal mode - Normal mode + Normal mode + Normalni mod - Wireframe - Wireframe + Wireframe + Linijski okvir - Wireframe mode - Wireframe mode + Wireframe mode + Linijski okvir mod - - + + Std_ExportGraphviz - Graphviz not found - + Graphviz not found + Graphviz nije pronađen - Graphviz couldn't be found on your system. -Do you want to specify its installation path if it's already installed? - + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + Graphviz nije pronađen na vašem sustavu. +Da li želite unijeti putanju instalacije ako ona postoji? - Graphviz installation path - + Graphviz installation path + Grpahviz instalacijska putanja - Dependency graph - + Dependency graph + Graf ovisnosti - Graphviz failed - + Graphviz failed + Graphviz nije uspio - Graphviz failed to create an image file - + Graphviz failed to create an image file + Graphviz nije uspio pronaći datoteku slike - - + + Workbench - &File - &Datoteka + &File + &Datoteka - &Edit - &Uredi + &Edit + &Uredi - Standard views - Standardni pogledi + Standard views + Standardni pogledi - &Stereo - &Stereo + &Stereo + &Stereo - &Zoom - &Zumiraj + &Zoom + &Zumiraj - Visibility - Vidljivost + Visibility + Vidljivost - &View - &Pogled + &View + &Pogled - &Tools - &Alati + &Tools + &Alati - &Macro - &Makro + &Macro + &Makro - &Windows - &Prozori + &Windows + &Prozori - &On-line help - &On-line pomoć + &On-line help + &On-line pomoć - &Help - &Pomoć + &Help + &Pomoć - File - Datoteka + File + Datoteka - Macro - Makro + Macro + Makro - View - Pregled + View + Pregled - Special Ops - Specijalne radnje + Special Ops + Specijalne radnje - - + + testClass - test - test + test + test - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"> <span style=" font-size:12pt;">Kreirano za Qt 4.3.x</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"> www.ii-system.com </p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"> <span style=" font-size:12pt;">Kreirano za Qt 4.3.x</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"> www.ii-system.com </p></body></html> - Choose the style of the Task Panel - Odaberite stil Radne ploče + Choose the style of the Task Panel + Odaberite stil Radne ploče - Default - Inicijalno + Default + Inicijalno - Windows XP - Windows XP + Windows XP + Windows XP - + diff --git a/src/Gui/Language/FreeCAD_hu.qm b/src/Gui/Language/FreeCAD_hu.qm index 445f09b9f..b810fddc1 100644 Binary files a/src/Gui/Language/FreeCAD_hu.qm and b/src/Gui/Language/FreeCAD_hu.qm differ diff --git a/src/Gui/Language/FreeCAD_hu.ts b/src/Gui/Language/FreeCAD_hu.ts index 11a94b222..036d99624 100644 --- a/src/Gui/Language/FreeCAD_hu.ts +++ b/src/Gui/Language/FreeCAD_hu.ts @@ -1,5907 +1,5839 @@ - - + + Angle - Form - Űrlap + Form + Űrlap - A: - A: + A: + A: - B: - B: + B: + B: - C: - C: + C: + C: - Angle Snap - Szögtartás + Angle Snap + Szögtartás - - 1 ° - 1 ° + + 1 ° + 1 ° - - 2 ° - 2 ° + + 2 ° + 2 ° - - 5 ° - 5 ° + + 5 ° + 5 ° - - 10 ° - 10 ° + + 10 ° + 10 ° - - 20 ° - 20 ° + + 20 ° + 20 ° - - 45 ° - 45 ° + + 45 ° + 45 ° - - 90 ° - 90 ° + + 90 ° + 90 ° - - 180 ° - 180 ° + + 180 ° + 180 ° - - + + Gui::AccelLineEdit - none - egyik sem + none + egyik sem - - + + Gui::ActionSelector - Available: - + Available: + Elérhető: - Selected: - + Selected: + Kiválasztott: - Add - Hozzáad + Add + Hozzáad - Remove - Törlés + Remove + Törlés - Move up - Mozgatás felfelé + Move up + Mozgatás felfelé - Move down - Mozgatás lefelé + Move down + Mozgatás lefelé - - + + Gui::AlignmentView - Movable object - + Movable object + Mozgatható tárgy - Fixed object - + Fixed object + Fix tárgy - - + + Gui::BlenderNavigationStyle - Press left mouse button - Nyomja meg a bal egérgombot + Press left mouse button + Nyomja meg a bal egérgombot - Press SHIFT and middle mouse button - Nyomja le a SHIFT BILLENTYŰT, és a középső egérgomb + Press SHIFT and middle mouse button + Nyomja le a SHIFT BILLENTYŰT, és a középső egérgomb - Press middle mouse button - Nyomja meg a középső egérgombot + Press middle mouse button + Nyomja meg a középső egérgombot - Scroll middle mouse button - Görgesse a középső egérgombot + Scroll middle mouse button + Görgesse a középső egérgombot - - + + Gui::CADNavigationStyle - Press left mouse button - Nyomja meg a bal egérgombot + Press left mouse button + Nyomja meg a bal egérgombot - Press middle mouse button - Nyomja meg a középső egérgombot + Press middle mouse button + Nyomja meg a középső egérgombot - Press left and middle mouse button - Nyomja meg a bal és a középső egérgombot + Press left and middle mouse button + Nyomja meg a bal és a középső egérgombot - Scroll middle mouse button - Görgesse a középső egérgombot + Scroll middle mouse button + Görgesse a középső egérgombot - - + + Gui::Command - Standard - Szabvány + Standard + Szabvány - - + + Gui::ContainerDialog - &OK - OK + &OK + &OK - &Cancel - Mégse + &Cancel + Mégse &C - - + + Gui::ControlSingleton - Task panel - Feladat panel + Task panel + Feladat panel - - + + Gui::Dialog::AboutApplication - About - Névjegy + About + Névjegy - Revision number - Felülvizsgálati szám + Revision number + Felülvizsgálati szám - Version - Verzió + Version + Verzió - OK - OK + OK + OK - - Program infó + + Program infó - Release date - Megjelenés éve + Release date + Megjelenés éve - Platform - Platform + Platform + Platform - License... - Licenc... + License... + Licenc... - Copy to clipboard - + Copy to clipboard + Vágólapra másolás - - + + Gui::Dialog::ButtonModel - Button %1 - Gomb % 1 + Button %1 + Billentyű %1 - Out Of Range - Tartományon kívüli + Out Of Range + Tartományon kívüli - - + + Gui::Dialog::CommandModel - Commands - Parancsok + Commands + Parancsok - - + + Gui::Dialog::DemoMode - View Turntable - Forgó asztal nézet + View Turntable + Forgó asztal nézet - Speed - Sebesség + Speed + Sebesség - Maximum - Maximális + Maximum + Maximális - Minimum - Minimális + Minimum + Minimális - Fullscreen - Teljes képernyős + Fullscreen + Teljes képernyős - Enable timer - Időzítő engedélezése + Enable timer + Időzítő engedélezése - s - s + s + s - Angle - Szög - - - 90° - 90° - - - -90° - -90° + Angle + Szög - Play - Lejátszás + 90° + 90° - Stop - Megállít + -90° + -90° - Close - Bezárás + Play + Lejátszás - - + + Stop + Megállít + + + Close + Bezárás + + + Gui::Dialog::DlgActivateWindow - Choose Window - Válasszon ablakot + Choose Window + Válasszon ablakot - &Activate - &Aktiválás + &Activate + &Aktiválás - Alt+A - Alt+A + Alt+A + Alt+A - &Cancel - Mégse + &Cancel + Mégse &C - - Program infó + + Program infó - - + + Gui::Dialog::DlgActivateWindowImp - Windows - Ablak + Windows + Ablak - - + + Gui::Dialog::DlgAuthorization - Authorization - Azonosítás + Authorization + Azonosítás - &OK - OK + &OK + &OK - &Cancel - Mégse + &Cancel + Mégse &C - Password: - Jelszó: + Password: + Jelszó: - User name: - Felhasználói név: + User name: + Felhasználói név: - - Program infó + + Program infó - - + + Gui::Dialog::DlgChooseIcon - Choose Icon - Válassz ikont + Choose Icon + Válassz ikont - OK - OK + OK + OK - Cancel - Mégse + Cancel + Mégse - Add icons... - Ikon hozzáadása... + Add icons... + Ikon hozzáadása... - - + + Gui::Dialog::DlgCustomActions - Macros - Makrók + Macros + Makrók - Setup Custom Macros - Egyedi makrók beállítása + Setup Custom Macros + Egyedi makrók beállítása - Macro: - Makró: + Macro: + Makró: - ... - ... + ... + ... - Pixmap - Pixkép + Pixmap + Pixkép - Accelerator: - Gyorsító: + Accelerator: + Gyorsító: - What's this: - Mi ez: + What's this: + Mi ez: - Status text: - Állapot szöveg: + Status text: + Állapot szöveg: - Tool tip: - Eszközleírás: + Tool tip: + Eszközleírás: - Menu text: - Menü szöveg: + Menu text: + Menü szöveg: - Add - Hozzáad + Add + Hozzáad - Remove - Törlés + Remove + Törlés - Replace - Módosít + Replace + Módosít - - + + Gui::Dialog::DlgCustomActionsImp - Icons - Ikonok + Icons + Ikonok - Macros - Makrók + Macros + Makrók - No macro - Nincs makró + No macro + Nincs makró - No macros found. - Nem találhatók makrók. + No macros found. + Nem találhatók makrók. - Macro not found - Makró nem található + Macro not found + Makró nem található - Sorry, couldn't find macro file '%1'. - Sajnáljuk, nem található makró file '%1'. + Sorry, couldn't find macro file '%1'. + Sajnáljuk, nem található makró file '%1'. - Empty macro - Üres makró + Empty macro + Üres makró - Please specify the macro first. - Először adjon meg makrót. + Please specify the macro first. + Először adjon meg makrót. - Empty text - Üres szöveg + Empty text + Üres szöveg - Please specify the menu text first. - Először adjon meg menü szöveget. + Please specify the menu text first. + Először adjon meg menü szöveget. - No item selected - Nincs elem kiválasztva + No item selected + Nincs elem kiválasztva - Please select a macro item first. - Kérem előbb adjon meg makró elemet. + Please select a macro item first. + Kérem előbb adjon meg makró elemet. - - + + Gui::Dialog::DlgCustomCommands - Commands - Parancsok + Commands + Parancsok - - Program infó + + Program infó - - + + Gui::Dialog::DlgCustomCommandsImp - Category - Kategória + Category + Kategória - Icon - Ikon + Icon + Ikon - Command - Parancs + Command + Parancs - - + + Gui::Dialog::DlgCustomKeyboard - Keyboard - Billentyűzet + Keyboard + Billentyűzet - Description: - Leírás: + Description: + Leírás: - &Category: - &Csoportosítás: + &Category: + &Csoportosítás: - C&ommands: - Parancs&ok: + C&ommands: + Parancs&ok: - Current shortcut: - Meglévő útvonal: + Current shortcut: + Meglévő útvonal: - Press &new shortcut: - Nyomja le új elérési úthoz: + Press &new shortcut: + &Nyomja le új elérési úthoz: - Currently assigned to: - Aktuális hozzárendelés: + Currently assigned to: + Aktuális hozzárendelés: - &Assign - Hozzárendelés + &Assign + Hozzárendelés &A - Alt+A - Alt+A + Alt+A + Alt+A - &Reset - Visszaállít + &Reset + Új&raállít - Alt+R - Alt+R + Alt+R + Alt+R - Re&set All - Mind visszaállít + Re&set All + Mind vis&sszaállít - Alt+S - Alt+S + Alt+S + Alt+S - - Program infó + + Program infó - - + + Gui::Dialog::DlgCustomKeyboardImp - Icon - Ikon + Icon + Ikon - Command - Parancs + Command + Parancs - none - egyik sem + none + egyik sem - Multiple defined shortcut - Többszörösen definiált elérési út + Multiple defined shortcut + Többszörösen definiált elérési út - The shortcut '%1' is defined more than once. This could result into unexpected behaviour. - Az '%1' elérési út többszőr lett definiálva. Ez nem megfelelő működéshez vezethet. + The shortcut '%1' is defined more than once. This could result into unexpected behaviour. + Az '%1' elérési út többszőr lett definiálva. Ez nem megfelelő működéshez vezethet. - Already defined shortcut - Már definiált elérési út + Already defined shortcut + Már definiált elérési út - The shortcut '%1' is already assigned to '%2'. + The shortcut '%1' is already assigned to '%2'. Please define another shortcut. - A '%1' elérési út már a '%2' hoz rendelve. + A '%1' elérési út már a '%2' hoz rendelve. Kérem másik elérési utat definiálni. - - + + Gui::Dialog::DlgCustomToolBoxbarsImp - Toolbox bars - Eszköztár ablakok + Toolbox bars + Eszköztár ablakok - - + + Gui::Dialog::DlgCustomToolbars - Toolbars - Eszköztárak + Toolbars + Eszköztárak - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> A változások következő alkalommal válnak aktívvá, amikor betölti a megfelelő munkafelületet </p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> A változások következő alkalommal válnak aktívvá, amikor betölti a megfelelő munkafelületet </p></body></html> - Move right - Mozgatás jobbra + Move right + Mozgatás jobbra - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Mozgasd a kiválasztott elemet egy szinttel lejjebb.</b><p>Ez a meglévő elemet szintjét is megváltoztatja.</p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Mozgasd a kiválasztott elemet egy szinttel lejjebb.</b><p>Ez a meglévő elemet szintjét is megváltoztatja.</p> - Move left - Mozgatás balra + Move left + Mozgatás balra - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Mozgasd a kiválasztott elemet egy szinttel lejjebb.</b><p>Ez a meglévő elemet szintjét is megváltoztatja.</p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Mozgasd a kiválasztott elemet egy szinttel lejjebb.</b><p>Ez a meglévő elemet szintjét is megváltoztatja.</p> - Move down - Mozgatás lefelé + Move down + Mozgatás lefelé - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Mozgasd a kiválasztott elemet lejjebb.</b><p>Az elem a hierarchia szinten lesz mozgatva.</p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Mozgasd a kiválasztott elemet lejjebb.</b><p>Az elem a hierarchia szinten lesz mozgatva.</p> - Move up - Mozgatás felfelé + Move up + Mozgatás felfelé - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Mozgasd a kiválasztott elemet lejjebb.</b><p>Az elem a hierarchia szinten lesz mozgatva.</p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Mozgasd a kiválasztott elemet lejjebb.</b><p>Az elem a hierarchia szinten lesz mozgatva.</p> - New... - Új... + New... + Új... - Rename... - Átnevezés... + Rename... + Átnevezés... - Delete - Törlés + Delete + Törlés - Icon - Ikon + Icon + Ikon - Command - Parancs + Command + Parancs - <Separator> - <Szóköz> + <Separator> + <Szóköz> - New toolbar - Új eszköztár + New toolbar + Új eszköztár - Toolbar name: - Eszköztár neve: + Toolbar name: + Eszköztár neve: - Duplicated name - Ismételt név + Duplicated name + Ismételt név - The toolbar name '%1' is already used - Az '%1' eszköztár név már használatban + The toolbar name '%1' is already used + Az '%1' eszköztár név már használatban - Rename toolbar - Eszköztár átnevezése + Rename toolbar + Eszköztár átnevezése - - Program infó + + Program infó - - + + Gui::Dialog::DlgCustomizeImp - Customize - Testreszabás + Customize + Testreszabás - &Help - &Súgó + &Help + Súgó &H - &Close - Be&zárás + &Close + $Bezárás - - + + Gui::Dialog::DlgCustomizeSpaceball - Spaceball - Spaceball + Spaceball + Spaceball - No Spaceball Present - No Spaceball Present + No Spaceball Present + Spaceball nincs jelen - Buttons - Gombok + Buttons + Gombok - Clear - Törlés + Clear + Törlés - Print Reference - Nyomtatási hivatkozás + Print Reference + Nyomtatási hivatkozás - - + + Gui::Dialog::DlgDisplayProperties - Display properties - Tulajdonságok megjelenítése + Display properties + Tulajdonságok megjelenítése - Display - Megjelenítés + Display + Megjelenítés - Transparency: - Átlátszóság: + Transparency: + Átlátszóság: - Line width: - Vonalstílus: + Line width: + Vonalstílus: - Point size: - Méret: + Point size: + Méret: - Material - Anyag + Material + Anyag - ... - ... + ... + ... - Close - Bezárás + Close + Bezárás - Viewing mode - Nézet + Viewing mode + Nézet - Display mode: - Megjelenítési mód: + Plot mode: + Nyomtatási mód: - Plot mode: - Nyomtatási mód: + + Program infó - - Program infó + Line transparency: + Vonal átláthatóság: - Line transparency: - Vonal átláthatóság: + Line color: + Vonal színe: - Line color: - Vonal színe: + Shape color: + Alakzat színe: - Shape color: - Alakzat színe: + Color plot: + Színes nyomtatás: - Color plot: - Színes nyomtatás: + Document window: + Dokument ablak: - - Document window: - - - - + + Gui::Dialog::DlgEditorSettings - Editor - Szerkesztő + Editor + Szerkesztő - Options - Beállítások + Options + Beállítások - Enable line numbers - Sorszámozás bekapcsolása + Enable line numbers + Sorszámozás bekapcsolása - Enable folding - Hajlítás bekapcsolása + Enable folding + Hajlítás bekapcsolása - Indentation - Azonosítás + Indentation + Azonosítás - Insert spaces - Szóközök beszúrása + Insert spaces + Szóközök beszúrása - Tab size: - Tabulátorméret: + Tab size: + Tabulátorméret: - Indent size: - Azonosítási méret: + Indent size: + Azonosítási méret: - Keep tabs - Tabulátorok megtartása + Keep tabs + Tabulátorok megtartása - Display Items - Részletek megtekintése + Display Items + Részletek megtekintése - Family: - Szülő: + Family: + Szülő: - Size: - Méret: + Size: + Méret: - Preview: - Előnézet: + Preview: + Előnézet: - - Program infó + + Program infó - - + + Gui::Dialog::DlgGeneral - General - Általános + General + Általános - Start up - Kezdő oldal + Start up + Kezdő oldal - Enable splash screen at start up - Felugró ablak bekapcsolása a kezdő oldalon + Enable splash screen at start up + Felugró ablak bekapcsolása a kezdő oldalon - Switch to tab of report window: - Váltás a jelentés ablakra: + Switch to tab of report window: + Váltás a jelentés ablakra: - Auto load module after start up: - Modul automatikus betöltése indulás után: + Auto load module after start up: + Modul automatikus betöltése indulás után: - Language - Nyelv + Language + Nyelv - Change language: - Nyelvválasztás: + Change language: + Nyelvválasztás: - Main window - Főablak + Main window + Főablak - Size of recent file list - Utoljára megnyitott fájlok listájának mérete + Size of recent file list + Utoljára megnyitott fájlok listájának mérete - Window style: - Ablakstílus: + Window style: + Ablakstílus: - Size of toolbar icons: - Eszköztárikonok mérete: + Size of toolbar icons: + Eszköztárikonok mérete: - - + + Gui::Dialog::DlgGeneralImp - Default (%1 x %1) - Alapértelmezett (% 1 x% 1) + Default (%1 x %1) + Alapértelmezett (%1 x %1) - Small (%1 x %1) - Kicsi (% 1 x% 1) + Small (%1 x %1) + Kicsi (%1 x %1) - Large (%1 x %1) - Nagy (% 1 x% 1) + Large (%1 x %1) + Nagy (%1 x %1) - Extra large (%1 x %1) - Extra nagy (%1 x%1) + Extra large (%1 x %1) + Extra nagy (%1 x%1) - - + + Gui::Dialog::DlgInputDialog - Input - Bevitel + Input + Bevitel - OK - OK + OK + OK - Cancel - Mégse + Cancel + Mégse - - Program infó + + Program infó - - + + Gui::Dialog::DlgInspector - Scene Inspector - Jelenet felügyelő + Scene Inspector + Jelenet felügyelő - - + + Gui::Dialog::DlgMacroExecute - Execute macro - Makró végrehajtása + Execute macro + Makró végrehajtása - Macro name: - Makrónév: + Macro name: + Makrónév: - Macro destination: - Makró helye: + Macro destination: + Makró helye: - Execute - Végrehajtás + Execute + Végrehajtás - Close - Bezárás + Close + Bezárás - Create - Létrehozás + Create + Létrehozás - Delete - Törlés + Delete + Törlés - Edit - Módosítás + Edit + Szerkesztés - - + + Gui::Dialog::DlgMacroExecuteImp - Macros - Makrók + Macros + Makrók - Macro file - Makró fájl + Macro file + Makró fájl - Enter a file name, please: - Kérem, adja meg a fájl nevét: + Enter a file name, please: + Kérem, adja meg a fájl nevét: - Existing file - Létező fájl + Existing file + Létező fájl - '%1'. + '%1'. This file already exists. - '%1'. Ez a fájl már létezik. + '%1'. Ez a fájl már létezik. - Delete macro - Makró törlése + Delete macro + Makró törlése - Do you really want to delete the macro '%1'? - Valóban törölni szeretné a "'%1'" nevű makrót? + Do you really want to delete the macro '%1'? + Valóban törölni szeretné a "'%1'" nevű makrót? - Cannot create file - Nem lehet létrehozni a fájlt + Cannot create file + Nem lehet létrehozni a fájlt - Creation of file '%1' failed. - Nem sikerült létrehozni a(z) '%1'. + Creation of file '%1' failed. + Nem sikerült létrehozni a(z) '%1'. - - + + Gui::Dialog::DlgMacroRecord - Macro recording - Makró rögzítése + Macro recording + Makró rögzítése - Macro name: - Makrónév: + Macro name: + Makrónév: - Stop - Megállít + Stop + Megállít - Cancel - Mégse + Cancel + Mégse - Macro path: - Makró elérési útja: + Macro path: + Makró elérési útja: - ... - ... + ... + ... - Record - Rögzítés + Record + Rögzítés - - + + Gui::Dialog::DlgMacroRecordImp - Macro recorder - Makrórögzítő + Macro recorder + Makrórögzítő - Specify first a place to save. - Először adjon meg egy helyet a mentésnek. + Specify first a place to save. + Először adjon meg egy helyet a mentésnek. - Existing macro - Létező makró + Existing macro + Létező makró - The macro '%1' already exists. Do you want to overwrite? - A '%1' makró már létezik. Szeretné felülírni? + The macro '%1' already exists. Do you want to overwrite? + A '%1' makró már létezik. Szeretné felülírni? - The macro directory doesn't exist. Please, choose another one. - A makró könyvtár nem létezik. Kérjük, válasszon egy másikat. + The macro directory doesn't exist. Please, choose another one. + A makró könyvtár nem létezik. Kérjük, válasszon egy másikat. - Choose macro directory - Válassza ki a makró könyvtárat + Choose macro directory + Válassza ki a makró könyvtárat - - + + Gui::Dialog::DlgMaterialProperties - Material properties - Alapanyag tulajdonságai + Material properties + Alapanyag tulajdonságai - &Close - Be&zárás + &Close + $Bezárás - Alt+C - Alt + C + Alt+C + Alt + C - Material - Anyag + Material + Anyag - Diffuse color: - Szórt szín: + Diffuse color: + Szórt szín: - Specular color: - Tükröződési szín: + Specular color: + Tükröződési szín: - Shininess: - Fényesség: + Shininess: + Fényesség: - % - % + % + % - Ambient color: - Környezeti szín: + Ambient color: + Környezeti szín: - - Program infó + + Program infó - Emissive color: - Sugárzó szín: + Emissive color: + Sugárzó szín: - - + + Gui::Dialog::DlgOnlineHelp - On-line help - On-line segítség + On-line help + On-line segítség - Help viewer - Segítség nézegető + Help viewer + Segítség nézegető - Location of start page - A start oldal helye + Location of start page + A start oldal helye - - + + Gui::Dialog::DlgOnlineHelpImp - HTML files (*.html *.htm) - HTML file-k (*.html *.htm) + HTML files (*.html *.htm) + HTML file-k (*.html *.htm) - Access denied - Hozzáférés megtagadva + Access denied + Hozzáférés megtagadva - Access denied to '%1' + Access denied to '%1' Specify another directory, please. - Az '%1' -hez hozzáférés megtagadva + Az '%1' -hez hozzáférés megtagadva Kérem válasszon másik könyvtárat. - - + + Gui::Dialog::DlgParameter - Parameter Editor - Paraméterszerkesztő + Parameter Editor + Paraméterszerkesztő - Save to disk - Mentés lemezre + Save to disk + Mentés lemezre - Alt+C - Alt + C + Alt+C + Alt + C - &Close - Be&zárás + &Close + $Bezárás - - + + Gui::Dialog::DlgParameterImp - Group - Csoport + Group + Csoport - Name - Név + Name + Név - Type - Típus + Type + Típus - Value - Érték + Value + Érték - User parameter - Felhasználói paraméterek + User parameter + Felhasználói paraméterek - Invalid input - Érvénytelen adat + Invalid input + Érvénytelen adat - Invalid key name '%1' - Érvénytelen kulcs név '%1' + Invalid key name '%1' + Érvénytelen kulcs név '%1' - System parameter - Rendszer paraméter + System parameter + Rendszer paraméter - - + + Gui::Dialog::DlgPreferences - Preferences - Testreszabás + Preferences + Testreszabás - &Help - &Súgó + &Help + Súgó &H - Alt+H - Alt+H + Alt+H + Alt+H - &OK - OK + &OK + &OK - &Apply - Alkalmaz + &Apply + &Alkalmaz - Alt+A - Alt+A + Alt+A + Alt+A - &Cancel - Mégse + &Cancel + Mégse &C - - Program infó + + Program infó - - + + Gui::Dialog::DlgPreferencesImp - Wrong parameter - Hibás paraméter + Wrong parameter + Hibás paraméter - - + + Gui::Dialog::DlgProjectInformation - Project information - Információ a feladatról + Project information + Információ a feladatról - Information - Információ + Information + Információ - &Name: - &Név: + &Name: + &Név: - Commen&t: - Megjegyzés: + Commen&t: + Megjegyzés&t: - Path: - Útvonalak: + Path: + Útvonalak: - &Last modified by: - &Utoljára módosította: + &Last modified by: + Uto&ljára módosította: - Created &by: - Létrehozta: + Created &by: + Létrehozta &b: - Com&pany: - Szervezet: + Com&pany: + Szervezet &p: - Last &modification date: - Utolsó &módosítás dátuma: + Last &modification date: + Utolsó &módosítás dátuma: - Creation &date: - Létrehozás &dátuma: + Creation &date: + Létrehozás &dátuma: - &OK - OK + &OK + &OK - &Cancel - Mégse + &Cancel + Mégse &C - - Program infó + + Program infó - - + + Gui::Dialog::DlgProjectUtility - Project utility - Project segédprogram + Project utility + Project segédprogram - Extract project - Terv kivonat + Extract project + Terv kivonat - Source - Forrás + Source + Forrás - Project file (*.fcstd) - Project file (*. fcstd) + Project file (*.fcstd) + Project file (*. fcstd) - Destination - Célállomás + Destination + Célállomás - Extract - Kivonat + Extract + Kivonat - Create project - Projekt létrehozása + Create project + Projekt létrehozása - Document.xml - Document.xml + Document.xml + Document.xml - Create - Létrehozás + Create + Létrehozás - Load project file after creation - Betöltése után a projekt fájl létrehozása + Load project file after creation + Betöltése után a projekt fájl létrehozása - Empty source - Üres forrás. + Empty source + Üres forrás. - No source is defined. - Nincs forrás definiálva. + No source is defined. + Nincs forrás definiálva. - Empty destination - Üres célállomás. + Empty destination + Üres célállomás - No destination is defined. - Nincs célállomás meghatározva. + No destination is defined. + Nincs célállomás meghatározva. - - + + Gui::Dialog::DlgReportView - Output window - Kimeneti ablak + Output window + Kimeneti ablak - Output - Kimenet + Output + Kimenet - Record log messages - Változások naplózása + Record log messages + Változások naplózása - Record warnings - Riasztások feljegyzése + Record warnings + Riasztások feljegyzése - Record error messages - Hibák feljegyzése + Record error messages + Hibák feljegyzése - Colors - Színek + Colors + Színek - Normal messages: - Normal üzenetek: + Normal messages: + Normal üzenetek: - Log messages: - Naplóüzenetek: + Log messages: + Naplóüzenetek: - Warnings: - Riasztások: + Warnings: + Riasztások: - Errors: - Hibaüzenetek: + Errors: + Hibaüzenetek: - - Program infó + + Program infó - Redirect internal Python errors to report view - Belső Python hibák átirányítása a jelentés nézetbe + Redirect internal Python errors to report view + Belső Python hibák átirányítása a jelentés nézetbe - Redirect internal Python output to report view - Belső Python kimenet átirányítása jelentés megtekintéséhez + Redirect internal Python output to report view + Belső Python kimenet átirányítása jelentés megtekintéséhez - - + + Gui::Dialog::DlgRunExternal - Running external program - Külső program futtatása + Running external program + Külső program futtatása - TextLabel - TextLabel + TextLabel + TextLabel - Advanced >> - Haladó >> + Advanced >> + Haladó >> - ... - ... + ... + ... - Accept changes - Módosítások elfogadása + Accept changes + Módosítások elfogadása - Discard changes - Módosítások elvetése + Discard changes + Módosítások elvetése - Abort program - Megszakítja a programot + Abort program + Megszakítja a programot - Help - Súgó + Help + Súgó - Select a file - Válasszon ki egy fájlt + Select a file + Válasszon ki egy fájlt - - + + Gui::Dialog::DlgSettings3DView - 3D View - 3D-s nézet + 3D View + 3D-s nézet - 3D View settings - 3D-s nézet beállítások + 3D View settings + 3D-s nézet beállítások - Show coordinate system in the corner - Koordináta rendszer mutatása a sarokban + Show coordinate system in the corner + Koordináta rendszer mutatása a sarokban - Show counter of frames per second - A keret / másodperc mutatása + Show counter of frames per second + A keret / másodperc mutatása - Enable animation - Animáció engedélyezése + Enable animation + Animáció engedélyezése - Enable anti-aliasing (slower) - Élsimítás engedélyezése (lassab megjelenítés) + Enable anti-aliasing (slower) + Élsimítás engedélyezése (lassab megjelenítés) - Eye to eye distance for stereo modes: - Szem távolságának a sztereó módhoz: + Eye to eye distance for stereo modes: + Szem távolságának a sztereó módhoz: - Camera type - Kamera típus + Camera type + Kamera típus - Orthographic rendering - Függőleges vetület leképezés + Orthographic rendering + Függőleges vetület leképezés - Perspective rendering - Perspektivikus leképezés + Perspective rendering + Perspektivikus leképezés - - Program infó + + Program infó - 3D Navigation - 3D-s navigáció + 3D Navigation + 3D-s navigáció - Mouse... - Egér ... + Mouse... + Egér ... - Intensity of backlight - Háttérvilágítás intenzitása + Intensity of backlight + Háttérvilágítás intenzitása - Enable backlight color - Háttérvilágítás színének engedélyezése + Enable backlight color + Háttérvilágítás színének engedélyezése - Orbit style - Orbit stílus + Orbit style + Orbit stílus - Turntable - Fordítótábla + Turntable + Fordítótábla - Trackball - Trackball + Trackball + Trackball - Invert zoom - Kicsinyítés + Invert zoom + Kicsinyítés - Zoom at cursor - + Zoom at cursor + Kurzorra nyagyítás - Zoom step - + Zoom step + Lépésenkénti nagyítás - - + + Gui::Dialog::DlgSettings3DViewImp - %1 navigation - %1 navigáció + %1 navigation + %1 navigáció - - + + Gui::Dialog::DlgSettingsColorGradient - Color model - Színmodell + Color model + Színmodell - &Gradient: - &Színátmenet + &Gradient: + &Színátmenet: - red-yellow-green-cyan-blue - piros-sárga-zöld-cián-kék + red-yellow-green-cyan-blue + piros-sárga-zöld-cián-kék - blue-cyan-green-yellow-red - kék-cián-zöld-sárga-piros + blue-cyan-green-yellow-red + kék-cián-zöld-sárga-piros - white-black - fehér-fekete + white-black + fehér-fekete - black-white - fekete-fehér + black-white + fekete-fehér - Visibility - Láthatóság + Visibility + Láthatóság - Out g&rayed - Kiszűrkít + Out g&rayed + Kiszű&rkít - Alt+R - Alt+R + Alt+R + Alt+R - Out &invisible - Kívül esik&láthatatlan: + Out &invisible + Kívül es&ik láthatatlan - Alt+I - Alt+I + Alt+I + Alt+I - Style - Stílus + Style + Stílus - &Zero - $Zéró + &Zero + &Zéró - Alt+Z - Alt+Z + Alt+Z + Alt+Z - &Flow - &Folyás + &Flow + &Folyás - Alt+F - Alt+F + Alt+F + Alt+F - &OK - OK + &OK + &OK - &Cancel - Mégse + &Cancel + Mégse &C - Parameter range - Paraméter-tartomány + Parameter range + Paraméter-tartomány - Mi&nimum: - Mi&nimum: + Mi&nimum: + Mi&nimum: - Ma&ximum: - Ma&ximum: + Ma&ximum: + Ma&ximum: - &Labels: - &Cimke: + &Labels: + Cimke &L: - &Decimals: - &Tizedesjegyek: + &Decimals: + &Tizedesjegyek: - - Program infó + + Program infó - Color-gradient settings - Színátmenet beállítások + Color-gradient settings + Színátmenet beállítások - - + + Gui::Dialog::DlgSettingsColorGradientImp - Wrong parameter - Hibás paraméter + Wrong parameter + Hibás paraméter - The maximum value must be higher than the minimum value. - A maximális értéknek magasabbnak kell lennie, mint a minimális érték. + The maximum value must be higher than the minimum value. + A maximális értéknek magasabbnak kell lennie, mint a minimális érték. - - + + Gui::Dialog::DlgSettingsDocument - Document - Dokumentum + Document + Dokumentum - General - Általános + General + Általános - Document save compression level + Document save compression level (0 = none, 9 = highest, 3 = default) - Dokumentum mentésének tömörítési szintje + Dokumentum mentésének tömörítési szintje (0=nincs, 9=legnagyobb, 3=alapértelmezett) - Create new document at start up - Indításkor egy új munkalap létrehozása + Create new document at start up + Indításkor egy új munkalap létrehozása - Storage - Tárolás + Storage + Tárolás - Saving transactions (Auto-save) - Mentési tranzakciók (Automatikus mentés) + Saving transactions (Auto-save) + Mentési tranzakciók (Automatikus mentés) - Discard saved transaction after saving document - Dobja el a mentett tranzakciókat a munkalap mentését követően + Discard saved transaction after saving document + Dobja el a mentett tranzakciókat a munkalap mentését követően - Save thumbnail into project file when saving document - Bélyegkép mentése a projektfájlba, munkalap mentésekor + Save thumbnail into project file when saving document + Bélyegkép mentése a projektfájlba, munkalap mentésekor - Create up to backup files when resaving document - Készítsen biztonsági másolatot a fájlról, ha a munkát újra szeretné menteni + Create up to backup files when resaving document + Készítsen biztonsági másolatot a fájlról, ha a munkát újra szeretné menteni - Document objects - Dokumentum objektumok + Document objects + Dokumentum objektumok - Allow duplicate object labels in one document - Engedélyezi, hogy egy dokumentumban duplikált objektumazonosítók legyenek + Allow duplicate object labels in one document + Engedélyezi, hogy egy dokumentumban duplikált objektumazonosítók legyenek - Maximum Undo/Redo steps - Maximális Visszalépés / Újra létrehozás lépések + Maximum Undo/Redo steps + Maximális Visszalépés / Újra létrehozás lépések - Using Undo/Redo on documents - Visszalépés / Újra létrehozás használata a dokumentumokhoz + Using Undo/Redo on documents + Visszalépés / Újra létrehozás használata a dokumentumokhoz - - + + Gui::Dialog::DlgSettingsEditorImp - Text - Szöveg + Text + Szöveg - Bookmark - Könyvjelző + Bookmark + Könyvjelző - Breakpoint - Töréspont + Breakpoint + Töréspont - Keyword - Kulcsszó + Keyword + Kulcsszó - Comment - Megjegyzés + Comment + Megjegyzés - Block comment - Megjegyzés tömb + Block comment + Megjegyzés tömb - Number - Szám + Number + Szám - String - Karakterlánc + String + Karakterlánc - Character - Karakter + Character + Karakter - Class name - Osztálynév + Class name + Osztálynév - Define name - Definiált név + Define name + Definiált név - Operator - Irányító + Operator + Irányító - Python output - Python kimenet + Python output + Python kimenet - Python error - Python hiba + Python error + Python hiba - Items - Elemek + Items + Elemek - Current line highlight - + Current line highlight + Kiválasztott vonal kiemelése - - + + Gui::Dialog::DlgSettingsImage - Image settings - Kép beállításai + Image settings + Kép beállításai - Image properties - Kép tulajdonságai + Image properties + Kép tulajdonságai - Back&ground: - Háttér: + Back&ground: + Háttér &g: - Current - Aktiális + Current + Aktiális - White - Fehér + White + Fehér - Black - Fekete + Black + Fekete - Transparent - Átlátszó + Transparent + Átlátszó - Image dimensions - Kép méretei + Image dimensions + Kép méretei - Pixel - Képpont + Pixel + Képpont - &Width: - Szélesség: + &Width: + Szélesség&W: - Current screen - Aktuális képernyő + Current screen + Aktuális képernyő - Icon 32 x 32 - Ikon 32 x 32 + Icon 32 x 32 + Ikon 32 x 32 - Icon 64 x 64 - Ikon 64 x 64 + Icon 64 x 64 + Ikon 64 x 64 - Icon 128 x 128 - Ikon 128 x 128 + Icon 128 x 128 + Ikon 128 x 128 - CGA 320 x 200 - CGA 320 x 200 + CGA 320 x 200 + CGA 320 x 200 - QVGA 320 x 240 - QVGA 320 x 240 + QVGA 320 x 240 + QVGA 320 x 240 - VGA 640 x 480 - VGA 640 x 480 + VGA 640 x 480 + VGA 640 x 480 - NTSC 720 x 480 - NTSC 720 x 480 + NTSC 720 x 480 + NTSC 720 x 480 - PAL 768 x 578 - PAL 768 x 578 + PAL 768 x 578 + PAL 768 x 578 - SVGA 800 x 600 - SVGA 800 x 600 + SVGA 800 x 600 + SVGA 800 x 600 - XGA 1024 x 768 - XGA 1024 x 768 + XGA 1024 x 768 + XGA 1024 x 768 - HD720 1280 x 720 - HD720 1280 x 720 + HD720 1280 x 720 + HD720 1280 x 720 - SXGA 1280 x 1024 - SXGA 1280 x 1024 + SXGA 1280 x 1024 + SXGA 1280 x 1024 - SXGA+ 1400 x 1050 - SXGA+ 1400 x 1050 + SXGA+ 1400 x 1050 + SXGA+ 1400 x 1050 - UXGA 1600 x 1200 - UXGA 1600 x 1200 + UXGA 1600 x 1200 + UXGA 1600 x 1200 - HD1080 1920 x 1080 - HD1080 1920 x 1080 + HD1080 1920 x 1080 + HD1080 1920 x 1080 - WUXGA 1920 x 1200 - WUXGA 1920 x 1200 + WUXGA 1920 x 1200 + WUXGA 1920 x 1200 - QXGA 2048 x 1538 - QXGA 2048 x 1538 + QXGA 2048 x 1538 + QXGA 2048 x 1538 - WQXGA 2560 x 1600 - WQXGA 2560 x 1600 + WQXGA 2560 x 1600 + WQXGA 2560 x 1600 - QSXGA 2560 x 2048 - QSXGA 2560 x 2048 - - - QUXGA 3200 × 2400 - QUXGA 3200 × 2400 - - - HUXGA 6400 × 4800 - HUXGA 6400 × 4800 + QSXGA 2560 x 2048 + QSXGA 2560 x 2048 - !!! 10000 x 10000 - !!! 10000 x 10000 + QUXGA 3200 × 2400 + QUXGA 3200 × 2400 - Standard sizes: - Alap méretek: + HUXGA 6400 × 4800 + HUXGA 6400 × 4800 - &Height: - Magasság: + !!! 10000 x 10000 + !!! 10000 x 10000 - Aspect ratio: - Méretarány: + Standard sizes: + Alap méretek: - &Screen - Képernyő + &Height: + Magasság &H: - Alt+S - Alt+S + Aspect ratio: + Méretarány: - &4:3 - &4:3 + &Screen + Képernyő &S - Alt+4 - Alt+4 + Alt+S + Alt+S - 1&6:9 - 1&6:9 + &4:3 + &4:3 - Alt+6 - Alt+6 + Alt+4 + Alt+4 - &1:1 - &1:1 + 1&6:9 + 1&6:9 - Alt+1 - Alt+1 + Alt+6 + Alt+6 - Image comment - Kép Megjegyzés + &1:1 + &1:1 - Insert MIBA - MIBA beszúrása + Alt+1 + Alt+1 - Insert comment - Megjegyzés beszúrása + Image comment + Kép Megjegyzés - - + + Insert MIBA + MIBA beszúrása + + + Insert comment + Megjegyzés beszúrása + + + Gui::Dialog::DlgSettingsMacro - Macro - Makró + Macro + Makró - Macro recording settings - Makró felvétel beállításai + Macro recording settings + Makró felvétel beállításai - Logging Commands - Naplózási parancsok + Logging Commands + Naplózási parancsok - Show script commands in python console - A parancsutasítások megjelenítése a python konzolon + Show script commands in python console + A parancsutasítások megjelenítése a python konzolon - Log all commands issued by menus to file: - Naplózza fájlba a menük által kiadott összes parancsot: + Log all commands issued by menus to file: + Naplózza fájlba a menük által kiadott összes parancsot: - FullScript.FCScript - FullScript.FCScript + FullScript.FCScript + FullScript.FCScript - Gui commands - GUI parancsok + Gui commands + GUI parancsok - Recording GUI commands - GUI parancsok rögzítése + Recording GUI commands + GUI parancsok rögzítése - Record as comment - Rögzítés megjegyzésként + Record as comment + Rögzítés megjegyzésként - Macro path - Makró elérési út + Macro path + Makró elérési út - General macro settings - + General macro settings + Általános makró beállítások - Run macros in local environment - + Run macros in local environment + Makró futtatása a helyi környezetben - - + + Gui::Dialog::DlgSettingsUnits - Units - Egységek + Units + Egységek - Units settings - Egységek beállítása + Units settings + Egységek beállítása - Standard (mm/kg/s/degree) - Standard (mm/kg/s/fok) + Standard (mm/kg/s/degree) + Standard (mm/kg/s/fok) - MKS (m/kg/s/degree) - MKS (m/kg/s/fok) + MKS (m/kg/s/degree) + MKS (m/kg/s/fok) - Magnitude - Méret + Magnitude + Méret - Unit - Egység + Unit + Egység - User system: - Felhasználó rendszer: + User system: + Felhasználó rendszer: - Imperial (in/lb) - Angolszász(in/lb) + Imperial (in/lb) + Angolszász(in/lb) - - + + Gui::Dialog::DlgSettingsViewColor - Colors - Színek + Colors + Színek - Selection - Kijelölés + Selection + Kijelölés - Enable selection highlighting - Kijelölésnél kiemelés alkalmazása + Enable selection highlighting + Kijelölésnél kiemelés alkalmazása - Enable preselection highlighting - Előválasztás kiemelést tesz lehetővé + Enable preselection highlighting + Előválasztás kiemelést tesz lehetővé - Background color - Háttér szín + Background color + Háttér szín - Middle color - Középső szín + Middle color + Középső szín - Color gradient - Színátmenet + Color gradient + Színátmenet - Simple color - Egyszínű + Simple color + Egyszínű - Default colors - Alapértelmezett színek + Default colors + Alapértelmezett színek - Edited edge color - Szerkesztett él színek + Edited edge color + Szerkesztett él színek - Edited vertex color - Szerkesztett vertex színek + Edited vertex color + Szerkesztett vertex színek - Construction geometry - Építőipari geometria + Construction geometry + Építőipari geometria - Fully constrained geometry - Teljesen korlátozott geometria + Fully constrained geometry + Teljesen korlátozott geometria - The color of construction geometry in editmode - Az építési geometria színei szerkesztő módban + The color of vertices being edited + A csúcsok színei szerkesztés alatt - The color of fully constrained geometry in editmode - A teljesen korlátozott geometriai színei szerkesztő módban + The color of edges being edited + Az élek színe szerkesztés alatt - The color of vertices being edited - A csúcsok színei szerkesztés alatt + The color of construction geometry in edit mode + Az építési geometria színei szerkesztő módban - The color of edges being edited - Az élek színe szerkesztés alatt + The color of fully constrained geometry in edit mode + A teljesen korlátozott geometriai színei szerkesztő módban - The color of construction geometry in edit mode - + Cursor text color + Kurzor betű színe - The color of fully constrained geometry in edit mode - + Default shape color + A forma alap színe - Cursor text color - + The default color for new shapes + Az új forma alap színe - Default shape color - + Default line width and color + Alap állapotban a vonal vastagsága és színe - The default color for new shapes - + The default line color for new shapes + Az új alakzat alap értelmezett vonal színe - Default line width and color - + The default line thickness for new shapes + Az új alakzat alap értelmezett vonal vastagsága - The default line color for new shapes - + px + px - - The default line thickness for new shapes - - - - px - - - - + + Gui::Dialog::DlgTipOfTheDay - Tip of the day - Napi jótanács + Tip of the day + Napi jótanács - <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> - <font size="+3"><font face="Times New Roman"><b>Tudta, hogy ...</b></font></font> + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <font size="+3"><font face="Times New Roman"><b>Tudta, hogy ...</b></font></font> - &Show tips at start up - &Tanácsok megjelenítése induláskor + &Show tips at start up + Tanácsok megjeleníté&se induláskor - Alt+S - Alt+S + Alt+S + Alt+S - &Next Tip - &Következő tanács + &Next Tip + Következő ta&nács - Alt+N - Alt+N + Alt+N + Alt+N - &Close - Be&zárás + &Close + $Bezárás - Alt+C - Alt + C + Alt+C + Alt + C - - Program infó + + Program infó - - + + Gui::Dialog::DlgTipOfTheDayImp - Download failed: %1 + Download failed: %1 - Letöltés nem sikerült: %1 + Letöltés nem sikerült: %1 - If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. - Ha szeretne többet megtudni FreeCAD-ről, menjen a %1, vagy nyomja meg a Súgó gombot a Súgó menüben. + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + Ha szeretne többet megtudni FreeCAD-ről, menjen a %1, vagy nyomja meg a Súgó gombot a Súgó menüben. - - + + Gui::Dialog::DockablePlacement - Placement - Elhelyezés + Placement + Elhelyezés - - + + Gui::Dialog::DownloadDialog - Canceled. - Törlődik. + Download + Letöltés - Download - + Cancel + Mégse - Cancel - Mégse + Close + Bezárás - Close - Bezárás + There already exists a file called %1 in the current directory. Overwrite? + Az %1 nevű fájl már létezik a könyvtárban. Felülírja? - There already exists a file called %1 in the current directory. Overwrite? - + Unable to save the file %1: %2. + Nem tudja menteni a fájlt %1: %2. - Unable to save the file %1: %2. - + Downloading %1. + Letölti %1. - Downloading %1. - + Download canceled. + Letöltés megszakítva. - Download canceled. - + Download failed: %1. + Letöltés meghiusult: %1. - Download failed: %1. - Letöltés meghiusult: %1. + Downloaded %1 to current directory. + Letöltve %1 a megnyitott könyvtárba. - - Downloaded %1 to current directory. - - - - + + Gui::Dialog::IconDialog - Add icon - Ikon hozzáadása + Add icon + Ikon hozzáadása - - + + Gui::Dialog::InputVector - Input vector - Bemeneti vektor + Input vector + Bemeneti vektor - Vector - Vektor + Vector + Vektor - Z: - Z: + Z: + Z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - OK - OK + OK + OK - - + + Gui::Dialog::LicenseDialog - Copyright - + Copyright + Szerzői joggal védve - - + + Gui::Dialog::MouseButtons - Mouse buttons - Egérgombok + Mouse buttons + Egérgombok - Configuration - Konfiguráció + Configuration + Konfiguráció - Selection: - Kiválasztás: + Selection: + Kiválasztás: - Panning - Mozgatás + Panning + Mozgatás - Rotation: - Elforgatás: + Rotation: + Elforgatás: - Zooming: - Nagyítás: + Zooming: + Nagyítás: - - + + Gui::Dialog::ParameterGroup - Expand - Kibontás + Expand + Kibontás - Add sub-group - Alcsoport hozzáadás + Add sub-group + Alcsoport hozzáadás - Remove group - Csoport eltávolítása + Remove group + Csoport eltávolítása - Rename group - Csoport átnevezése + Rename group + Csoport átnevezése - Export parameter - Paraméter export + Export parameter + Paraméter export - Import parameter - Paraméter import + Import parameter + Paraméter import - Collapse - Összevonás + Collapse + Összevonás - Do really want to remove this parameter group? - Valóban el szeretné távolítani ezt a paramétert csoportot? + Do really want to remove this parameter group? + Valóban el szeretné távolítani ezt a paramétert csoportot? - Existing sub-group - Létező alcsoport + Existing sub-group + Létező alcsoport - The sub-group '%1' already exists. - Az alcsoport '%1' már létezik. + The sub-group '%1' already exists. + Az alcsoport '%1' már létezik. - Export parameter to file - Paraméter exportálása fájlba + Export parameter to file + Paraméter exportálása fájlba - XML (*.FCParam) - XML (*.FCParam) + XML (*.FCParam) + XML (*.FCParam) - Import parameter from file - Paraméter importálása fájlból + Import parameter from file + Paraméter importálása fájlból - Import Error - Importálási hiba + Import Error + Importálási hiba - Reading from '%1' failed. - Olvasási hiba: %1 + Reading from '%1' failed. + Olvasási hiba: '%1' . - - + + Gui::Dialog::ParameterValue - Change value - Érték módosítása + Change value + Érték módosítása - Remove key - Kulcs eltávolítása + Remove key + Kulcs eltávolítása - Rename key - Kulcs átnevezése + Rename key + Kulcs átnevezése - New - Új + New + Új - New string item - Új karakterlánc-elem + New string item + Új karakterlánc-elem - New float item - Új float-elem + New float item + Új float-elem - New integer item - Új egész elem + New integer item + Új egész elem - New unsigned item - Új meghatározatlan elem + New unsigned item + Új meghatározatlan elem - New Boolean item - Új logikai elem + New Boolean item + Új logikai elem - Existing item - Meglévő elem + Existing item + Meglévő elem - The item '%1' already exists. - Az '%1' tétel már létezik. + The item '%1' already exists. + Az '%1' tétel már létezik. - - + + Gui::Dialog::Placement - Placement - Elhelyezés + Placement + Elhelyezés - OK - OK + OK + OK - Translation: - Fordítás: + Translation: + Fordítás: - Z: - Z: + Z: + Z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - Rotation: - Elforgatás: + Rotation: + Elforgatás: - Angle: - Dőlésszög: + Angle: + Dőlésszög: - Axis: - Tengely: + Axis: + Tengely: - Center: - Középpont: + Center: + Középpont: - Pitch: - Döntés: + Pitch: + Döntés: - Roll: - Gördítés: + Roll: + Gördítés: - Yaw: - Tengely körüli fordulás: + Yaw: + Tengely körüli fordulás: - Rotation axis with angle - Rotation axis with angle + Rotation axis with angle + Tengely körüli elforgatás szöggel - Euler angles - Euler-szögek + Euler angles + Euler-szögek - Apply placement changes immediately - Elhelyezés változtatásának alkalmazása azonnal + Apply placement changes immediately + Elhelyezés változtatásának alkalmazása azonnal - Apply incremental changes to object placement - A növekvő változások tárgy helyzetre való alkalmazása + Apply incremental changes to object placement + A növekvő változások tárgy helyzetre való alkalmazása - Apply - Alkalmaz + Apply + Alkalmaz - Reset - Alaphelyzetbe állítása + Reset + Alaphelyzetbe állítása - Close - Bezárás + Close + Bezárás - - + + Gui::Dialog::PrintModel - Button - Gomb + Button + Gomb - Command - Parancs + Command + Parancs - - + + Gui::Dialog::SceneInspector - Dialog - Párbeszédablak + Dialog + Párbeszédablak - Close - Bezárás + Close + Bezárás - Refresh - Frissítés + Refresh + Frissítés - - + + Gui::Dialog::SceneModel - Inventor Tree - Inventor struktúra + Inventor Tree + Inventor struktúra - Nodes - Csomópontok + Nodes + Csomópontok - - + + Gui::Dialog::TextureMapping - Texture - Anyagminta + Texture + Anyagminta - Texture mapping - Textúra leképezés + Texture mapping + Textúra leképezés - Global - Globális + Global + Globális - Environment - Környezet + Environment + Környezet - Image files (%1) - A kép fájl (%1) + Image files (%1) + A kép fájl (%1) - No image - Nincs kép + No image + Nincs kép - The specified file is not a valid image file. - A megadott fájl nem érvényes képfájl. + The specified file is not a valid image file. + A megadott fájl nem érvényes képfájl. - No 3d view - Nem 3D nézet + No 3d view + Nem 3D nézet - No active 3d view found. - Nem található aktív 3D-s nézet. + No active 3d view found. + Nem található aktív 3D-s nézet. - - + + Gui::Dialog::Transform - Cancel - Mégse + Cancel + Mégse - Transform - Átalakítás + Transform + Átalakítás - - + + Gui::DlgTreeWidget - Dialog - Párbeszédablak + Dialog + Párbeszédablak - Items - Elemek + Items + Elemek - OK - OK + OK + OK - Cancel - Mégse + Cancel + Mégse - - Program infó + + Program infó - - + + Gui::DockWnd::CombiView - CombiView - Össz nézet + CombiView + Össz nézet - Project - Terv + Project + Terv - Tasks - Feladatok + Tasks + Feladatok - - + + Gui::DockWnd::HelpView - Previous - Vissza + Previous + Vissza - Next - Tovább + Next + Tovább - Home - Kezdőlap + Home + Kezdőlap - Open - Megnyit + Open + Megnyit - Open file - Fájl megnyitás + Open file + Fájl megnyitás - All HTML files (*.html *.htm) - Minden HTML file (*.html *.htm) + All HTML files (*.html *.htm) + Minden HTML file (*.html *.htm) - External browser - Külső böngésző + External browser + Külső böngésző - No external browser found. Specify in preferences, please - Nem található külső böngésző. Kérem, adjon meg egyet a beállításoknál + No external browser found. Specify in preferences, please + Nem található külső böngésző. Kérem, adjon meg egyet a beállításoknál - Starting of %1 failed - Az %1 elindítása sikertelen + Starting of %1 failed + Az %1 elindítása sikertelen - - + + Gui::DockWnd::PropertyDockView - Property View - Tulajdonságok nézet + Property View + Tulajdonságok nézet - - + + Gui::DockWnd::ReportOutput - Logging - Naplózás + Logging + Naplózás - Warning - Riasztás + Warning + Riasztás - Error - Hiba + Error + Hiba - Options - Beállítások + Options + Beállítások - Clear - Törlés + Clear + Törlés - Save As... - Mentés másként... + Save As... + Mentés másként... - Save Report Output - Jelentés kimenet mentése + Save Report Output + Jelentés kimenet mentése - Plain Text Files (*.txt *.log) - Egyszerű Text File (*.txt *.log) + Plain Text Files (*.txt *.log) + Egyszerű Text File (*.txt *.log) - Go to end - Ugrás a végére + Go to end + Ugrás a végére - Redirect Python output - Python kimenet átirányítása + Redirect Python output + Python kimenet átirányítása - Redirect Python errors - Átirányított Python-hibák + Redirect Python errors + Átirányított Python-hibák - - + + Gui::DockWnd::ReportView - Output - Kimenet + Output + Kimenet - Python console - Python konzol + Python console + Python konzol - - + + Gui::DockWnd::SelectionView - Property View - Tulajdonságok nézet + Property View + Tulajdonságok nézet - - + + Gui::DockWnd::TaskPanelView - Task View - Feladat nézet + Task View + Feladat nézet - - + + Gui::DockWnd::TextBrowser - Could not open file. - A fájl megnyitása sikertelen. + Could not open file. + A fájl megnyitása sikertelen. - You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. - Megpróbálta a %1 címet elérni, ami jelenleg nem elérhető. Győződjön meg róla, hogy az URL létezik és frissítse az oldalt. + You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. + Megpróbálta a %1 címet elérni, ami jelenleg nem elérhető. Győződjön meg róla, hogy az URL létezik és frissítse az oldalt. - Connecting to %1 - Csatlakozás az %1-hez + Connecting to %1 + Csatlakozás az %1-hez - Sending to %1 - Küldés: %1 részére + Sending to %1 + Küldés: %1 részére - Reading from %1 - Olvasás az %1 -től + Reading from %1 + Olvasás az %1 -től - Download failed: %1. - Letöltés meghiusult: %1. + Download failed: %1. + Letöltés meghiusult: %1. - Previous - Vissza + Previous + Vissza - Forward - Ismétlés + Forward + Ismétlés - Home - Kezdőlap + Home + Kezdőlap - Refresh - Frissítés + Refresh + Frissítés - Copy - Másolás + Copy + Másolás - Select all - Összes kijelölése + Select all + Összes kijelölése - No description for - Új leírás a + No description for + Új leírás a - - + + Gui::DocumentModel - Application - Alkalmazás + Application + Alkalmazás - Labels & Attributes - Cimkék & Tulajdonságok + Labels & Attributes + Cimkék & Tulajdonságok - - + + Gui::EditorView - Modified file - Módosított file + Modified file + Módosított file - %1. + %1. This has been modified outside of the source editor. Do you want to reload it? - %1. + %1. Az eredeti szerkesztőn kívül lett módosítva. Újra akarja tölteni? - Unsaved document - Nem mentett dokumentum + Unsaved document + Nem mentett dokumentum - The document has been modified. + The document has been modified. Do you want to save your changes? - A dokumentum módosítva lett. + A dokumentum módosítva lett. El akarja menteni a változásokat? - FreeCAD macro (*.FCMacro);;Python (*.py) - FreeCAD makro (*.FCMacro);;Python (*.py) + FreeCAD macro (*.FCMacro);;Python (*.py) + FreeCAD makro (*.FCMacro);;Python (*.py) - Export PDF - Exportálás PDF-be + Export PDF + Exportálás PDF-be - PDF file (*.pdf) - PDF file (*.pdf) + PDF file (*.pdf) + PDF file (*.pdf) - untitled[*] - névtelen[*] + untitled[*] + névtelen[*] - - Editor - - Szerkesztő + - Editor + - Szerkesztő - %1 chars removed - %1 karakter eltávolítása + %1 chars removed + %1 karakter eltávolítása - %1 chars added - %1 karakter hozzáadása + %1 chars added + %1 karakter hozzáadása - Formatted - Formázott + Formatted + Formázott - - + + Gui::FileChooser - Select a file - Válasszon ki egy fájlt + Select a file + Válasszon ki egy fájlt - Select a directory - Válasszon ki egy könyvtárat + Select a directory + Válasszon ki egy könyvtárat - - + + Gui::FileDialog - Save as - Mentés másként + Save as + Mentés másként - Open - Megnyit + Open + Megnyit - - + + Gui::FileOptionsDialog - Extended - Kiterjesztés + Extended + Kiterjesztés - All files (*.*) - Minden fájl (*.*) + All files (*.*) + Minden fájl (*.*) - - + + Gui::Flag - Top left - Bal felső + Top left + Bal felső - Bottom left - Bal alsó + Bottom left + Bal alsó - Top right - Jobb felső + Top right + Jobb felső - Bottom right - Jobb alsó + Bottom right + Jobb alsó - Remove - Törlés + Remove + Törlés - - + + Gui::InventorNavigationStyle - Press CTRL and left mouse button - Nyomja meg a CTRL és a bal egérgombot + Press CTRL and left mouse button + Nyomja meg a CTRL és a bal egérgombot - Press middle mouse button - Nyomja meg a középső egérgombot + Press middle mouse button + Nyomja meg a középső egérgombot - Press left mouse button - Nyomja meg a bal egérgombot + Press left mouse button + Nyomja meg a bal egérgombot - Scroll middle mouse button - Görgesse a középső egérgombot + Scroll middle mouse button + Görgesse a középső egérgombot - - + + Gui::LocationDialog - Wrong direction - Rossz irány + Wrong direction + Rossz irány - Direction must not be the null vector - Irány nem lehet nullvektor + Direction must not be the null vector + Irány nem lehet nullvektor - X - X + X + X - Y - Y + Y + Y - Z - Z + Z + Z - User defined... - Felhasználó által megadott... + User defined... + Felhasználó által megadott... - - + + Gui::LocationWidget - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - Z: + Z: + Z: - Direction: - + Direction: + Irány: - - + + Gui::MacroCommand - Macros - Makrók + Macros + Makrók - - + + Gui::MainWindow - Dimension - Dimenzió + Dimension + Dimenzió - Ready - Kész + Ready + Kész - Toggles this toolbar - Eszköztár megjelenítése + Toggles this toolbar + Eszköztár megjelenítése - Toggles this dockable window - Dokkolható ablak megjelenítése + Toggles this dockable window + Dokkolható ablak megjelenítése - Close All - Minden bezárása + Close All + Minden bezárása - - + + Gui::ManualAlignment - Manual alignment - + Manual alignment + Kézi igazítás - The alignment is already in progress. - + The alignment is already in progress. + Az igazítás már folyamatban. - Alignment[*] - + Alignment[*] + Igazítás[*] - Please, select at least one point in the left and the right view - + Please, select at least one point in the left and the right view + Kérem válasszon minimum egy pontot a bal- ill. jobboldali nézetben - Please, select at least %1 points in the left and the right view - + Please, select at least %1 points in the left and the right view + Kérem válasszon minimum %1 pontot a bal- ill. jobboldali nézetben - Please pick points in the left and right view - + Please pick points in the left and right view + Kérem válasszon ki pontokat a bal és a jobboldali nézetben - The alignment has finished - + The alignment has finished + Az igazítás végrehajtva - The alignment has been canceled - + The alignment has been canceled + Az igazítás megszakítva - Too few points picked in the left view. At least %1 points are needed. - + Too few points picked in the left view. At least %1 points are needed. + Túl kevés pont lett kiválasztva a baloldali nézetben. Legkevesebb %1 pont kell. - Too few points picked in the right view. At least %1 points are needed. - + Too few points picked in the right view. At least %1 points are needed. + Túl kevés pont lett kiválasztva a jobboldali nézetben. Legkevesebb %1 pont kell. - Different number of points picked in left and right view. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Különböző számú pont lett kijelölve a bal és jobboldali nézetben +A baloldali nézetben %1 pont lett jelölve, +a jobboldali nézetben %2 pont lett jelölve. - Try to align group of views - + Try to align group of views + Próbálja a nézet csoportokat igazítani - The alignment failed. + The alignment failed. How do you want to proceed? - + Az igazítás sikertelen. +Mit szeretne tenni? - Retry - + Retry + Újrapróbál - Ignore - + Ignore + Kihagy - Abort - + Abort + Elvet - Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + Különböző számú pont lett kijelölve a bal és jobboldali nézetben +A baloldali nézetben %1 pont lett jelölve, +a jobboldali nézetben %2 pont lett jelölve. - Point picked at (%1,%2,%3) - + Point picked at (%1,%2,%3) + Pont kiválasztva itt (%1,%2,%3) - No point was picked - + No point was picked + Nem lett pont kiválasztva - - + + Gui::NetworkRetriever - Download started... + Download started... - Letöltés indítása... + Letöltés indítása... - - + + Gui::ProgressBar - Remaining: %1 - Maradt: %1 + Remaining: %1 + Maradt: %1 - Aborting - Megszakítása + Aborting + Megszakítása - Do you really want to abort the operation? - Biztosan megszakítja a műveletet? + Do you really want to abort the operation? + Biztosan megszakítja a műveletet? - - + + Gui::ProgressDialog - Remaining: %1 - Maradt: %1 + Remaining: %1 + Maradt: %1 - Aborting - Megszakítása + Aborting + Megszakítása - Do you really want to abort the operation? - Biztosan megszakítja a műveletet? + Do you really want to abort the operation? + Biztosan megszakítja a műveletet? - - + + Gui::PropertyEditor::PropertyModel - Property - Tulajdonság + Property + Tulajdonság - Value - Érték + Value + Érték - - + + Gui::PropertyView - View - Nézet + View + Nézet - Data - Adat + Data + Adat - - + + Gui::PythonConsole - System exit - Kilépés a rendszerből + System exit + Kilépés a rendszerből - The application is still running. + The application is still running. Do you want to exit without saving your data? - Az alkalmazás még mindig fut. + Az alkalmazás még mindig fut. Ki szeretne lépni az adatok mentése nélkül? - Python console - Python konzol + Python console + Python konzol - Unhandled PyCXX exception. - Nem kezelt PyCXX kivétel. + Unhandled PyCXX exception. + Nem kezelt PyCXX kivétel. - Unhandled FreeCAD exception. - Nem kezelt FreeCAD kivétel. + Unhandled FreeCAD exception. + Nem kezelt FreeCAD kivétel. - Unhandled unknown C++ exception. - Nem kezelt ismeretlen C++ kivétel. + Unhandled unknown C++ exception. + Nem kezelt ismeretlen C++ kivétel. - &Copy command - Parancs &másolás + &Copy command + Parancs &másolás - &Copy history - Előzmények &másolás + &Copy history + Előzmények &másolás - Save history as... - Előzmények mentése mint ... + Save history as... + Előzmények mentése mint ... - Insert file name... - Fájlnév beszúrása... + Insert file name... + Fájlnév beszúrása... - Save History - Előzmények mentése + Save History + Előzmények mentése - Macro Files (*.FCMacro *.py) - Makrófájlok (*.FCMacro *.py) + Macro Files (*.FCMacro *.py) + Makrófájlok (*.FCMacro *.py) - Insert file name - Fájlnév beszúrása + Insert file name + Fájlnév beszúrása - All Files (*.*) - Minden fájl (*.*) + All Files (*.*) + Minden fájl (*.*) - Python Input Dialog - Python bemeneti párbeszédpanel + Python Input Dialog + Python bemeneti párbeszédpanel - Unhandled std C++ exception. - Kezeletlen C++ kivétel. + Unhandled std C++ exception. + Kezeletlen C++ kivétel. - Word wrap - Sortörés + Word wrap + Sortörés - &Copy - &Másolás + &Copy + &Másolás - &Paste - &Beillesztés + &Paste + Beillesztés &P - Select All - Mindent kijelöl + Select All + Mindent kijelöl - Clear console - + Clear console + Konzol törlése - - + + Gui::PythonEditor - Comment - Megjegyzés + Comment + Megjegyzés - Uncomment - Kijelölés törlés + Uncomment + Kijelölés törlés - - + + Gui::PythonInputField - OK - OK + OK + OK - Clear - Törlés + Clear + Törlés - - + + Gui::RecentFilesAction - Open file %1 - Fájl megnyitása %1 + Open file %1 + Fájl megnyitása %1 - File not found - A fájl nem található + File not found + A fájl nem található - The file '%1' cannot be opened. - A fájl nem nyitható meg ('%1'). + The file '%1' cannot be opened. + A fájl nem nyitható meg ('%1'). - - + + Gui::SelectModule - Select module - Modul választás + Select module + Modul választás - Open %1 as - Megnyitás mint %1 + Open %1 as + Megnyitás mint %1 - Select - Kiválaszt + Select + Kiválaszt - - + + Gui::StdCmdDescription - Help - Súgó + Help + Súgó - Des&cription - Leírás + Des&cription + Leírás &c - Long description of commands - Parancsok hosszú leírása + Long description of commands + Parancsok hosszú leírása - - + + Gui::StdCmdDownloadOnlineHelp - Help - Súgó + Help + Súgó - Download online help - Online súgó letöltése + Download online help + Online súgó letöltése - Download %1's online help - Online súgó letöltése %1 + Download %1's online help + Online súgó letöltése %1 - Non-existing directory - Nem létező könyvtár + Non-existing directory + Nem létező könyvtár - The directory '%1' does not exist. + The directory '%1' does not exist. Do you want to specify an existing directory? - A könyvtár '%1' nem létezik. + A könyvtár '%1' nem létezik. Szeretne megadni egy létező könyvtár? - Missing permission - Hiányzó engedély + Missing permission + Hiányzó engedély - You don't have write permission to '%1' + You don't have write permission to '%1' Do you want to specify another directory? - Nincs írási engedélye '%1' + Nincs írási engedélye '%1' Meg szeretne adni egy másik könyvtárat? - Stop downloading - Letöltés leállítása + Stop downloading + Letöltés leállítása - - + + Gui::StdCmdPythonHelp - Tools - Eszközök + Tools + Eszközök - Python Modules - Python Modulok + Python Modules + Python Modulok - Opens a browser to show the Python modules - Python modul böngésző megnyitása + Opens a browser to show the Python modules + Python modul böngésző megnyitása - - + + Gui::TaskBoxAngle - Angle - Szög + Angle + Szög - - + + Gui::TaskBoxPosition - Position - Pozíció + Position + Pozíció - - + + Gui::TaskView::TaskAppearance - Display mode: - Megjelenítési mód: + Plot mode: + Nyomtatási mód: - Plot mode: - Nyomtatási mód: + Point size: + Méret: - Point size: - Méret: + Line width: + Vonalstílus: - Line width: - Vonalstílus: + Transparency: + Átlátszóság: - Transparency: - Átlátszóság: + Appearance + Megjelenés - Appearance - Megjelenés + Document window: + Dokument ablak: - - Document window: - - - - + + Gui::TaskView::TaskEditControl - Edit - Módosítás + Edit + Szerkesztés - - + + Gui::TaskView::TaskSelectLinkProperty - Appearance - Megjelenés + Appearance + Megjelenés - ... - ... + ... + ... - edit selection - kijelölés szerkesztése + edit selection + kijelölés szerkesztése - - + + Gui::TouchpadNavigationStyle - Press left mouse button - Nyomja meg a bal egérgombot + Press left mouse button + Nyomja meg a bal egérgombot - Press SHIFT button - + Press SHIFT button + Nyomjon SHIFT billentyűt - Press ALT button - + Press ALT button + Nyomjon ALT billentyűt - Press PgUp/PgDown button - + Press PgUp/PgDown button + Nyomjon PgUp/PgDown billentyűt - - - Gui::Translator - - English - Angol - - - + + Gui::TreeDockWidget - Tree view - Fanézet + Tree view + Fanézet - - + + Gui::TreeWidget - Create group... - Csoport létrehozása... + Create group... + Csoport létrehozása... - Create a group - Új csoport létrehozása + Create a group + Új csoport létrehozása - Group - Csoport + Group + Csoport - Rename - Átnevezés + Rename + Átnevezés - Rename object - Objektum átnevezése + Rename object + Objektum átnevezése - Labels & Attributes - Cimkék & Tulajdonságok + Labels & Attributes + Cimkék & Tulajdonságok - Application - Alkalmazás + Application + Alkalmazás - Finish editing - Szerkesztés befejezése + Finish editing + Szerkesztés befejezése - Finish editing object - Objektumszerkesztés befejezése + Finish editing object + Objektumszerkesztés befejezése - Activate document - Dokumentum aktiválása + Activate document + Dokumentum aktiválása - Activate document %1 - Dokumentum aktiválása (%1) + Activate document %1 + Dokumentum aktiválása (%1) - - + + Gui::View3DInventor - Export PDF - Exportálás PDF-be + Export PDF + Exportálás PDF-be - PDF file (*.pdf) - PDF file (*.pdf) + PDF file (*.pdf) + PDF file (*.pdf) - - + + Gui::WorkbenchGroup - Select the '%1' workbench - '%1' munkafelület kiválasztása + Select the '%1' workbench + '%1' munkafelület kiválasztása - - + + Position - Form - Űrlap + Form + Űrlap - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - Z: + Z: + Z: - 0.1 mm - 0.1 mm + 0.1 mm + 0.1 mm - 0.5 mm - 0.5 mm + 0.5 mm + 0.5 mm - 1 mm - 1 mm + 1 mm + 1 mm - 2 mm - 2 mm + 2 mm + 2 mm - 5 mm - 5 mm + 5 mm + 5 mm - 10 mm - 10 mm + 10 mm + 10 mm - 20 mm - 20 mm + 20 mm + 20 mm - 50 mm - 50 mm + 50 mm + 50 mm - 100 mm - 100 mm + 100 mm + 100 mm - 200 mm - 200 mm + 200 mm + 200 mm - 500 mm - 500 mm + 500 mm + 500 mm - 1 m - 1 m + 1 m + 1 m - 2 m - 2 m + 2 m + 2 m - 5 m - 5 m + 5 m + 5 m - Grid Snap in - Rácshoz illeszt + Grid Snap in + Rácshoz illeszt - - + + QDockWidget - Tree view - Fanézet + Tree view + Fanézet - Property view - Tulajdonságok nézet + Property view + Tulajdonságok nézet - Selection view - Részlet nézet + Selection view + Részlet nézet - Report view - Jelentés nézet + Report view + Jelentés nézet - Task View - Feladat nézet + Task View + Feladat nézet - Combo View - Összetett nézet + Combo View + Összetett nézet - Toolbox - Eszközkészlet + Toolbox + Eszközkészlet - Python console - Python konzol + Python console + Python konzol - Display properties - Tulajdonságok megjelenítése + Display properties + Tulajdonságok megjelenítése - - + + QObject - General - Általános + General + Általános - Display - Megjelenítés + Display + Megjelenítés - Unknown filetype - Ismeretlen filetípus + Unknown filetype + Ismeretlen filetípus - Cannot open unknown filetype: %1 - Nem megnyitható fájltípus: %1 + Cannot open unknown filetype: %1 + Nem megnyitható fájltípus: %1 - Cannot save to unknown filetype: %1 - Nem menthető fájltípus: %1 + Cannot save to unknown filetype: %1 + Nem menthető fájltípus: %1 - Workbench failure - Munkafelület hiba + Workbench failure + Munkafelület hiba - %1 - %1 + %1 + %1 - Unable to launch Qt Assistant (%1) - Nem lehet elindítani a Qt támogatást(%1) + Unable to launch Qt Assistant (%1) + Nem lehet elindítani a Qt támogatást(%1) - Exception - Kivétel + Exception + Kivétel - Open document - Dokumentum megnyitása + Open document + Dokumentum megnyitása - Import file - Fájl importálása + Import file + Fájl importálása - Export file - Fájl exportálása + Export file + Fájl exportálása - Printing... - Nyomtatás... + Printing... + Nyomtatás... - Cannot load workbench - Munkamenet nem betölthető + Cannot load workbench + Munkamenet nem betölthető - A general error occurred while loading the workbench - A munkamenet betöltése közben hiba lépett fel + A general error occurred while loading the workbench + A munkamenet betöltése közben hiba lépett fel - File not found - A fájl nem található + Save views... + Nézet mentése... - Cannot open file %1 - Nem sikerült megnyitni a(z) %1 fájlt + Load views... + Nézet betöltése... - Save views... - Nézet mentése... + Freeze view + Nézet megállítása - Load views... - Nézet betöltése... + Clear views + Tiszta nézet - Freeze view - Nézet megállítása + Restore view &%1 + Nézet visszaállítás &%1 - Clear views - Tiszta nézet + Save frozen views + Fagyasztott nézetek mentése - Restore view &%1 - Nézet visszaállítás %1 + Frozen views (*.cam) + Fagyasztott nézetek (*.cam) - Save frozen views - Fagyasztott nézetek mentése + Restore views + Nézetek visszaállítása - Frozen views (*.cam) - Fagyasztott nézetek (*.cam) - - - Restore views - Nézetek visszaállítása - - - Importing the restored views would clear the already stored views. + Importing the restored views would clear the already stored views. Do you want to continue? - A visszaállított nézetek importálása felülírja a már tárolt nézetet. + A visszaállított nézetek importálása felülírja a már tárolt nézetet. Folytatni kívánja? - Restore frozen views - Fagyasztott nézet visszaállítása + Restore frozen views + Fagyasztott nézet visszaállítása - Cannot open file '%1'. - Nem lehet megnyitni a fájlt (%1). + Cannot open file '%1'. + Nem lehet megnyitni a fájlt (%1). - Docked - Rögzített + Docked + Rögzített - Undocked - Nem rögzített + Undocked + Nem rögzített - Fullscreen - Teljes képernyős + Fullscreen + Teljes képernyős - files - fájlok + files + fájlok - Save picture - Kép mentése + Save picture + Kép mentése - New sub-group - Új alcsoport + New sub-group + Új alcsoport - Enter the name: - Adja meg a nevét: + Enter the name: + Adja meg a nevét: - New text item - Új szöveges elem + New text item + Új szöveges elem - Enter your text: - Írja be a szöveget: + Enter your text: + Írja be a szöveget: - New integer item - Új egész elem + New integer item + Új egész elem - Enter your number: - Írja be a számot: + Enter your number: + Írja be a számot: - New unsigned item - Új meghatározatlan elem + New unsigned item + Új meghatározatlan elem - New float item - Új float-elem + New float item + Új float-elem - New Boolean item - Új logikai elem + New Boolean item + Új logikai elem - Choose an item: - Válasszon egy elemet: + Choose an item: + Válasszon egy elemet: - Rename group - Csoport átnevezése + Rename group + Csoport átnevezése - The group '%1' cannot be renamed. - A csoport (%1) nem nevezhető át. + The group '%1' cannot be renamed. + A csoport (%1) nem nevezhető át. - Existing group - Létező csoport + Existing group + Létező csoport - The group '%1' already exists. - A csoport (%1) már létezik. + The group '%1' already exists. + A csoport (%1) már létezik. - Change value - Érték módosítása + Change value + Érték módosítása - Save document under new filename... - Dokumentum mentése új fájlnéven... + Save document under new filename... + Dokumentum mentése új fájlnéven... - Saving aborted - Mentése megszakítva + Saving aborted + Mentése megszakítva - Unsaved document - Nem mentett dokumentum + Unsaved document + Nem mentett dokumentum - Save document before close? - Mentse a dokumentumot a bezárás előtt? + Save document before close? + Mentse a dokumentumot a bezárás előtt? - Save Macro - Mentse a makrót + Save Macro + Mentse a makrót - Finish - Befejezés + Finish + Befejezés - Clear - Törlés + Clear + Törlés - Cancel - Mégse + Cancel + Mégse - Inner - Belső + Inner + Belső - Outer - Külső + Outer + Külső - No Browser - Nincs böngésző + No Browser + Nincs böngésző - Unable to open your browser. + Unable to open your browser. Please open a browser window and type in: http://localhost:%1. - Nem lehet megnyitni a böngészőt. + Nem lehet megnyitni a böngészőt. Nyisson meg egy böngészőt, és írja be: http://localhost:%1. - No Server - Nincs szerver + No Server + Nincs szerver - Unable to start the server to port %1: %2. - Nem sikerült elindítani a szervert a %1:%2 porton + Unable to start the server to port %1: %2. + Nem sikerült elindítani a szervert a %1: %2 porton. - Unable to open your system browser. - Nem lehet megnyitni a rendszer böngészőt. + Unable to open your system browser. + Nem lehet megnyitni a rendszer böngészőt. - Options... - Beállítások... + Options... + Beállítások... - Out of memory - Elfogyott a memória + Out of memory + Elfogyott a memória - Not enough memory available to display the data. - Nincs elég memória az adatok megjelenítéséhez. + Not enough memory available to display the data. + Nincs elég memória az adatok megjelenítéséhez. - Cannot find file %1 - A fájl nem található: %1 + Cannot find file %1 + A fájl nem található: %1 - Cannot find file %1 neither in %2 nor in %3 - Nem talál fájlt %1 -nek %2 -ben, sem %3 -ban. + Cannot find file %1 neither in %2 nor in %3 + Nem talál fájlt %1 -ben %2 -ben, sem %3 -ban - Save %1 Document - A(z) %1 dokumentum mentése + Save %1 Document + A(z) %1 dokumentum mentése - %1 document (*.FCStd) - a(z) %1 dokumentum (*.FCStd) + %1 document (*.FCStd) + a(z) %1 dokumentum (*.FCStd) - Save As - Mentés másként + Save As + Mentés másként - %1 already exists. + %1 already exists. Do you want to replace it? - A(z) %1 már létezik. Valóban le szeretné cserélni? + A(z) %1 már létezik. Valóban le szeretné cserélni? - Document not closable - A dokumentum nem zárható be + Document not closable + A dokumentum nem zárható be - The document is not closable for the moment. - A dokumentum nem zárható be pillanatnyilag. + The document is not closable for the moment. + A dokumentum nem zárható be pillanatnyilag. - No OpenGL - Nincs OpenGL + No OpenGL + Nincs OpenGL - This system does not support OpenGL - Ez a rendszer nem támogatja az OpenGL-t + This system does not support OpenGL + Ez a rendszer nem támogatja az OpenGL-t - Help - Súgó + Help + Súgó - Unable to load documentation. + Unable to load documentation. In order to load it Qt 4.4 or higher is required. - Nem sikerült betölteni a dokumentációt. + Nem sikerült betölteni a dokumentációt. A betöltéshez Qt 4.4 vagy magasabb verzió szükséges. - %1 Help - %1 Súgó + %1 Help + %1 Súgó - Exporting PDF... - PDF exportálása... + Exporting PDF... + PDF exportálása... - Wrong selection - Rossz kijelölés + Wrong selection + Rossz kijelölés - Only one object selected. Please select two objects. + Only one object selected. Please select two objects. Be aware the point where you click matters. - Csak egy objektum van kiválasztva.Kérjük válasszon ki két objektumot. + Csak egy objektum van kiválasztva.Kérjük válasszon ki két objektumot. Legyen körültekintő, számít melyik pontra kattint. - Please select two objects. + Please select two objects. Be aware the point where you click matters. - Kérjük, válasszon ki két objektumot. + Kérjük, válasszon ki két objektumot. Legyen körültekintő, fontos melyik pontra kattint. - New boolean item - Új logikai elem + New boolean item + Új logikai elem - Navigation styles - Navigációs stílusok + Navigation styles + Navigációs stílusok - %1 navigation - %1 navigáció + %1 navigation + %1 navigáció - Move annotation - Lépés jegyzék + Move annotation + Lépés jegyzék - Transform - Átalakítás + Transform + Átalakítás - The document is in editing mode and thus cannot be closed for the moment. + The document is in editing mode and thus cannot be closed for the moment. You either have to finish or cancel the editing in the task panel. - A dokumentum szerkesztési módban, így nem zárható be ebben a pillanatban. Vagy be kell fejezni, vagy törölheti a szerkesztést a feladat panelen. + A dokumentum szerkesztési módban, így nem zárható be ebben a pillanatban. Vagy be kell fejezni, vagy törölheti a szerkesztést a feladat panelen. - - + + StdBoxSelection - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Box selection - + Box selection + Box kiválasztás - - + + StdCmdAbout - Help - Súgó + Help + Súgó - &About %1 - &Névjegy %1 + &About %1 + Ról&a %1 - About %1 - Névjegy %1 + About %1 + Névjegy %1 - - + + StdCmdAboutQt - Help - Súgó + Help + Súgó - About &Qt - Qt névjegye + About &Qt + &Qt névjegye - About Qt - Qt névjegye + About Qt + Qt névjegye - - + + StdCmdActivateNextWindow - Window - Ablak + Window + Ablak - Ne&xt - Ismét + Ne&xt + Következő &x - Activate next window - Következő ablak aktiválása + Activate next window + Következő ablak aktiválása - - + + StdCmdActivatePrevWindow - Window - Ablak + Window + Ablak - Pre&vious - Visszavonás + Pre&vious + &Vissza - Activate previous window - Előző ablak aktiválása + Activate previous window + Előző ablak aktiválása - - + + StdCmdAlignment - Edit - Módosítás + Edit + Szerkesztés - Alignment... - + Alignment... + Igazítás... - Align the selected objects - + Align the selected objects + Kiválasztott tárgyak igazítása - - + + StdCmdArrangeIcons - Window - Ablak + Window + Ablak - Arrange &Icons - &Ikonok rendezése + Arrange &Icons + &Ikonok rendezése - Arrange Icons - Ikonok rendezése + Arrange Icons + Ikonok rendezése - - + + StdCmdAxisCross - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Toggle axis cross - Tengely kereszteződés váltása + Toggle axis cross + Tengely kereszteződés váltása - - + + StdCmdCascadeWindows - Window - Ablak + Window + Ablak - &Cascade - &Lépcsőzetes + &Cascade + Lép&csőzetes - Tile pragmatic - Részek gakorlása + Tile pragmatic + Részek gakorlása - - + + StdCmdCloseActiveWindow - Window - Ablak + Window + Ablak - Cl&ose - Be&zárás + Cl&ose + Bezárás &o - Close active window - Aktív ablak bezárása + Close active window + Aktív ablak bezárása - - + + StdCmdCloseAllWindows - Window - Ablak + Window + Ablak - Close Al&l - Öss&zes bezárása + Close Al&l + Összes bezárása &l - Close all windows - Összes ablak bezárása + Close all windows + Összes ablak bezárása - - + + StdCmdCommandLine - Tools - Eszközök + Tools + Eszközök - Start command &line... - Parancs &sor indítása... + Start command &line... + Parancs sor indítása &l... - Opens the command line in the console - Parancs sor konzolban való futtatása + Opens the command line in the console + Parancs sor konzolban való futtatása - - + + StdCmdCopy - Edit - Módosítás + Edit + Szerkesztés - C&opy - &Másolás + C&opy + Más&olás - Copy operation - Másolási művelet + Copy operation + Másolási művelet - - + + StdCmdCut - Edit - Módosítás + Edit + Szerkesztés - &Cut - &Kivágás + &Cut + Kivágás &C - Cut out - Kimetszés + Cut out + Kimetszés - - - StdCmdDDuplicateSelection - - Edit - Módosítás - - - Duplicate selection - Másolat létrehozása a kijelölésről - - - Put duplicates of the selected objects to the active document - A kijelölt objektumokat másolja az aktuális dokumentumba - - - + + StdCmdDelete - Edit - Módosítás + Edit + Szerkesztés - &Delete - Törlés + &Delete + Törlés &D - Deletes the selected objects - Kiválasztott elem törlése + Deletes the selected objects + Kiválasztott elem törlése - - + + StdCmdDemoMode - Standard-View - Standard-nézet + Standard-View + Standard-nézet - View turntable... - Forgóasztal nézet... + View turntable... + Forgóasztal nézet... - View turntable - Forgóasztal nézet + View turntable + Forgóasztal nézet - - + + StdCmdDlgCustomize - Tools - Eszközök + Tools + Eszközök - Cu&stomize... - &Testreszabás... + Cu&stomize... + Testreszabá&s... - Customize toolbars and command bars - Eszköztás és parancs oszlopok testreszabása + Customize toolbars and command bars + Eszköztás és parancs oszlopok testreszabása - - + + StdCmdDlgMacroExecute - Macros ... - Makrók ... + Macros ... + Makrók ... - Opens a dialog to let you execute a recorded macro - Párbeszédpanel megnyitása a rögzített makró végrehajtásához + Opens a dialog to let you execute a recorded macro + Párbeszédpanel megnyitása a rögzített makró végrehajtásához - Macro - Makró + Macro + Makró - - + + StdCmdDlgMacroExecuteDirect - Macro - Makró + Macro + Makró - Execute macro - Makró végrehajtása + Execute macro + Makró végrehajtása - Execute the macro in the editor - Szerkesztőben futtatja a makrót + Execute the macro in the editor + Szerkesztőben futtatja a makrót - - + + StdCmdDlgMacroRecord - &Macro recording ... - &Makró felvétel ... + &Macro recording ... + &Makró felvétel ... - Opens a dialog to record a macro - Párbeszédpanel megnyitása a makró rögzítéséhez + Opens a dialog to record a macro + Párbeszédpanel megnyitása a makró rögzítéséhez - Macro - Makró + Macro + Makró - - + + StdCmdDlgParameter - Tools - Eszközök + Tools + Eszközök - E&dit parameters ... - Paraméterek &szerkesztése + E&dit parameters ... + Paraméterek szerkesztése &d... - Opens a Dialog to edit the parameters - Párbeszédablak megnyitása a paraméterek szerkesztéséhez + Opens a Dialog to edit the parameters + Párbeszédablak megnyitása a paraméterek szerkesztéséhez - - + + StdCmdDlgPreferences - Tools - Eszközök + Tools + Eszközök - &Preferences ... - &Beállítások... + &Preferences ... + Beállítások &P... - Opens a Dialog to edit the preferences - Párbeszédablak megnyitása a beállítások szerkesztéséhez + Opens a Dialog to edit the preferences + Párbeszédablak megnyitása a beállítások szerkesztéséhez - - + + StdCmdDockViewMenu - View - Nézet + View + Nézet - Vie&ws - Nézetek + Vie&ws + Nézetek &w - Toggles this window - Ablak váltás + Toggles this window + Ablak váltás - - + + StdCmdDrawStyle - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Draw style - Draw style + Draw style + Rajzolási stílus - - + + StdCmdDuplicateSelection - Edit - Módosítás + Edit + Szerkesztés - Duplicate selection - Másolat létrehozása a kijelölésről + Duplicate selection + Másolat létrehozása a kijelölésről - Put duplicates of the selected objects to the active document - A kijelölt objektumokat másolja az aktuális dokumentumba + Put duplicates of the selected objects to the active document + A kijelölt objektumokat másolja az aktuális dokumentumba - - + + StdCmdEdit - Edit - Módosítás + Edit + Szerkesztés - Toggle &Edit mode - + Toggle &Edit mode + Kiválasztás & szerkesztés mód - Toggles the selected object's edit mode - + Toggles the selected object's edit mode + A kiválasztott tárgy szerkesztés módjának kapcsolása - Enters or leaves the selected object's edit mode - + Enters or leaves the selected object's edit mode + A kiválasztott tárgy szerkesztés módjába belépés vagy kilépés - - + + StdCmdExport - File - Fájl + File + Fájl - &Export... - &Exportálás + &Export... + &Exportálás... - Export an object in the active document - Egy objektum exportálása az aktív munkalapból + Export an object in the active document + Egy objektum exportálása az aktív munkalapból - Supported formats - Támogatott formátumok + No selection + Nincs kijelölés - No selection - + Please select first the objects you want to export. + Az exportáláshoz előszőr vállasszon ki tárgyat. - - Please select first the objects you want to export. - - - - + + StdCmdExportGraphviz - Tools - Eszközök + Tools + Eszközök - Dependency graph... - + Dependency graph... + Függőségi grafikon... - Show the dependency graph of the objects in the active document - + Show the dependency graph of the objects in the active document + Mutassa a tárgy függőségi grafikonját az aktív dokumentumban - - + + StdCmdFeatRecompute - File - Fájl + File + Fájl - &Recompute - Új&raszámítás + &Recompute + Új&raszámítás - Recompute feature or document - Jellemzők vagy dokumentum újraszámítása + Recompute feature or document + Jellemzők vagy dokumentum újraszámítása - - + + StdCmdFreeCADWebsite - Help - Súgó + Help + Súgó - FreeCAD Website - FreeCAD honlapja + FreeCAD Website + FreeCAD honlapja - The FreeCAD website - A FreeCAD honlapja + The FreeCAD website + A FreeCAD honlapja - - + + StdCmdFreezeViews - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Freeze display - Képernyő fagyasztása + Freeze display + Képernyő fagyasztása - Freezes the current view position - Az aktuális nézet pozíció fagyasztása + Freezes the current view position + Az aktuális nézet pozíció fagyasztása - - + + StdCmdHideObjects - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Hide all objects - Az összes objektum elrejtése + Hide all objects + Az összes objektum elrejtése - Hide all objects in the document - A dokumentumban lévő összes objektum elrejtéséhez + Hide all objects in the document + A dokumentumban lévő összes objektum elrejtéséhez - - + + StdCmdHideSelection - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Hide selection - Kijelölt elrejtése + Hide selection + Kijelölt elrejtése - Hide all selected objects - Minden kijelölt objektum elrejtése + Hide all selected objects + Minden kijelölt objektum elrejtése - - + + StdCmdImport - File - Fájl + File + Fájl - &Import... - &Import... + &Import... + &Import... - Import a file in the active document - Fájl importálása az aktív dokumentumba + Import a file in the active document + Fájl importálása az aktív dokumentumba - Supported formats - Támogatott formátumok + Supported formats + Támogatott formátumok - All files (*.*) - Minden fájl (*.*) + All files (*.*) + Minden fájl (*.*) - - + + StdCmdMacroStartDebug - Macro - Makró + Macro + Makró - Debug macro - Makró hibakeresés + Debug macro + Makró hibakeresés - Start debugging of macro - Makró hibakeresés indítása + Start debugging of macro + Makró hibakeresés indítása - - + + StdCmdMacroStepOver - Macro - Makró + Macro + Makró - Step over - Átlép + Step over + Átlép - - + + StdCmdMacroStopDebug - Macro - Makró + Macro + Makró - Stop debugging - Hibakeresés leállítása + Stop debugging + Hibakeresés leállítása - Stop debugging of macro - Makró hibakereső leállítása + Stop debugging of macro + Makró hibakereső leállítása - - + + StdCmdMacroStopRecord - Macro - Makró + Macro + Makró - S&top macro recording - Makró rögzítés leállítása + S&top macro recording + Makró rögzítés leállí&tása - Stop the macro recording session - Leállítja a makrófelvételi folyamatot + Stop the macro recording session + Leállítja a makrófelvételi folyamatot - - + + StdCmdMeasureDistance - View - Nézet + View + Nézet - Measure distance - Távolság mérés + Measure distance + Távolság mérés - - + + StdCmdMeasurementSimple - Tools - Eszközök + Tools + Eszközök - Mesure distance - Távolságmérés + Measures distance between two selected objects + Távolságmérés két kijelölt objektum között - Measures distance between two selected objects - Távolságmérés két kijelölt objektum között + Measure distance + Távolság mérés - - Measure distance - Távolság mérés - - - + + StdCmdMergeProjects - File - Fájl + File + Fájl - Merge project... - Projekt egyesítése... + Merge project... + Projekt egyesítése... - Merge project - Projekt egyesítése + Merge project + Projekt egyesítése - %1 document (*.fcstd) - %1 dokumentum (*.fcstd) + %1 document (*.fcstd) + %1 dokumentum (*.fcstd) - Cannot merge project with itself. - Nem tudja egyesíteni önmagával a projektet. + Cannot merge project with itself. + Nem tudja egyesíteni önmagával a projektet. - - + + StdCmdNew - File - Fájl + File + Fájl - &New - &Új + &New + &Új - Create a new empty document - Új üres munkalap létrehozása + Create a new empty document + Új üres munkalap létrehozása - - + + StdCmdOnlineHelp - Help - Súgó + Help + Súgó - Show help to the application - Program Súgó megjelenítése + Show help to the application + Program Súgó megjelenítése - - - StdCmdOnlineHelpPython - - Help - Súgó - - - Python Manuals - Python kézikönyvek - - - Show the Python documentation - A Python-dokumentáció megjelenítése - - - + + StdCmdOnlineHelpWebsite - Help - Súgó + Help + Súgó - Help Website - Súgó Honlap + Help Website + Súgó Honlap - The website where the help is maintained - A honlap, ahol a súgót tartják + The website where the help is maintained + A honlap, ahol a súgót tartják - - + + StdCmdOpen - File - Fájl + File + Fájl - &Open... - &Megnyitás ... + &Open... + Megnyitás &O... - Open a document or import files - Dokumentum megnyitása vagy fájl importálása + Open a document or import files + Dokumentum megnyitása vagy fájl importálása - Supported formats - Támogatott formátumok + Supported formats + Támogatott formátumok - All files (*.*) - Minden fájl (*.*) + All files (*.*) + Minden fájl (*.*) - - + + StdCmdPaste - Edit - Módosítás + Edit + Szerkesztés - &Paste - &Beillesztés + &Paste + Beillesztés &P - Paste operation - Beillesztési művelet + Paste operation + Beillesztési művelet - - + + StdCmdPlacement - Edit - Módosítás + Edit + Szerkesztés - Placement... - Elhelyezés ... + Placement... + Elhelyezés ... - Place the selected objects - A kijelölt objektumok helye + Place the selected objects + A kijelölt objektumok helye - - + + StdCmdPrint - File - Fájl + File + Fájl - &Print... - &Nyomtatás ... + &Print... + Nyomtatás &P... - Print the document - A dokumentum nyomtatása + Print the document + A dokumentum nyomtatása - - + + StdCmdPrintPdf - File - Fájl + File + Fájl - &Export PDF... - PDF &exportálása... + &Export PDF... + PDF &exportálása... - Export the document as PDF - Dokumentum exportálása PDF fájlba + Export the document as PDF + Dokumentum exportálása PDF fájlba - - + + StdCmdPrintPreview - File - Fájl + File + Fájl - &Print preview... - Nyomtatási kép... + &Print preview... + Nyomtatási ké&P... - Print the document - A dokumentum nyomtatása + Print the document + A dokumentum nyomtatása - Print preview - Nyomtatási kép + Print preview + Nyomtatási kép - - + + StdCmdProjectInfo - File - Fájl + File + Fájl - Project i&nformation... - Projekt i&nformáció... + Project i&nformation... + Projekt i&nformáció... - Show details of the currently active project - Részletek megjelenítése az aktuális projektről + Show details of the currently active project + Részletek megjelenítése az aktuális projektről - - + + StdCmdProjectUtil - Tools - Eszközök + Tools + Eszközök - Project utility... - Project segédprogram... + Project utility... + Project segédprogram... - Utility to extract or create project files - Felhasználót kivon, vagy hozzon létre a projekt fájlokat + Utility to extract or create project files + Felhasználót kivon, vagy hozzon létre a projekt fájlokat - - + + StdCmdPythonWebsite - Help - Súgó + Help + Súgó - Python Website - Python honlapja + Python Website + Python honlapja - The official Python website - Python hivatalos honlapja + The official Python website + Python hivatalos honlapja - - + + StdCmdQuit - File - Fájl + File + Fájl - E&xit - &Kilépés + E&xit + Kilépés E&xit - Quits the application - Kilépés az alkalmazásból + Quits the application + Kilépés az alkalmazásból - - + + StdCmdRandomColor - File - Fájl + File + Fájl - Random color - Véletlen szín + Random color + Véletlen szín - - + + StdCmdRecentFiles - File - Fájl + File + Fájl - Recent files - Legutóbbi fájlok + Recent files + Legutóbbi fájlok - Recent file list - Legutóbbi fájlok listája + Recent file list + Legutóbbi fájlok listája - - + + StdCmdRedo - Edit - Módosítás + Edit + Szerkesztés - &Redo - &Ismét: + &Redo + Új&ra,ismét - Redoes a previously undone action - Egy előzőleg visszavont művelet megismétlése + Redoes a previously undone action + Egy előzőleg visszavont művelet megismétlése - - + + StdCmdRefresh - Edit - Módosítás + Edit + Szerkesztés - &Refresh - &Frissítés + &Refresh + F&rissítés - Recomputes the current active document - Újraszámítja a jelenlegi aktív dokumentumot + Recomputes the current active document + Újraszámítja a jelenlegi aktív dokumentumot - - + + StdCmdSave - File - Fájl + File + Fájl - &Save - &Mentés + &Save + Menté&s - Save the active document - Az aktív dokumentum mentése + Save the active document + Az aktív dokumentum mentése - - + + StdCmdSaveAs - File - Fájl + File + Fájl - Save &As... - Mentés másként ... + Save &As... + Mentés másként &A... - Save the active document under a new file name - Az aktuális dokumentum mentése új néven + Save the active document under a new file name + Az aktuális dokumentum mentése új néven - - + + StdCmdSceneInspector - Tools - Eszközök + Tools + Eszközök - Scene inspector... - Jelenet ellenőr ... + Scene inspector... + Jelenet ellenőr ... - Scene inspector - Jelenet ellenőr + Scene inspector + Jelenet ellenőr - - + + StdCmdSelectAll - Edit - Módosítás + Edit + Szerkesztés - Select &All - Összes kijelölése + Select &All + Összes kijelölése - Select all - Összes kijelölése + Select all + Összes kijelölése - - + + StdCmdSetAppearance - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Appearance... - Megjelenés... + Appearance... + Megjelenés... - Sets the display properties of the selected object - A képernyő tulajdonságok beállítása az objektumhoz + Sets the display properties of the selected object + A képernyő tulajdonságok beállítása az objektumhoz - - + + StdCmdShowObjects - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Show all objects - Összes objektum megjelenítése + Show all objects + Összes objektum megjelenítése - Show all objects in the document - Összes objektum megjelenítése a dokumentumban + Show all objects in the document + Összes objektum megjelenítése a dokumentumban - - + + StdCmdShowSelection - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Show selection - Kijelölés megjelenítése + Show selection + Kijelölés megjelenítése - Show all selected objects - Összes kijelölt objektum megjelenítése + Show all selected objects + Összes kijelölt objektum megjelenítése - - + + StdCmdStatusBar - View - Nézet + View + Nézet - Status bar - Állapotsor + Status bar + Állapotsor - Toggles the status bar - Állapotsort kapcsoló. + Toggles the status bar + Állapotsort kapcsoló. - - + + StdCmdTextureMapping - Tools - Eszközök + Tools + Eszközök - Texture mapping... - Textúra leképezés ... + Texture mapping... + Textúra leképezés ... - Texture mapping - Textúra leképezés + Texture mapping + Textúra leképezés - - + + StdCmdTileWindows - Window - Ablak + Window + Ablak - &Tile - Mozaik elrendezés + &Tile + Cím &T - Tile the windows - Mozaikszerű elrendezés + Tile the windows + Név szerinti elrendezés - - + + StdCmdToggleBreakpoint - Macro - Makró + Macro + Makró - Toggle breakpoint - Töréspont váltás + Toggle breakpoint + Töréspont váltás - - + + StdCmdToggleClipPlane - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Clipping plane - Vágás sík + Clipping plane + Vágás sík - Toggles clipping plane for active view - Aktív nézet váltása a vágási síkra + Toggles clipping plane for active view + Aktív nézet váltása a vágási síkra - - + + StdCmdToggleNavigation - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Toggle navigation/Edit mode - Váltás a navigációs/szerkesztési mód között + Toggle navigation/Edit mode + Váltás a navigációs/szerkesztési mód között - Toggle between navigation and edit mode - Váltás a navigációs és szerkesztési mód között + Toggle between navigation and edit mode + Váltás a navigációs és szerkesztési mód között - - + + StdCmdToggleObjects - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Toggle all objects - Az összes objektum ki-/ bekapcsolása + Toggle all objects + Az összes objektum ki-/ bekapcsolása - Toggles visibility of all objects in the active document - Megjeleníti, illetve eltünteti az aktív dokumentumban található összes objektumot + Toggles visibility of all objects in the active document + Megjeleníti, illetve eltünteti az aktív dokumentumban található összes objektumot - - + + StdCmdToggleSelectability - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Toggle selectability - Kiválaszthatóság ki-/bekapcsolása + Toggle selectability + Kiválaszthatóság ki-/bekapcsolása - Toggles the property of the objects to get selected in the 3D-View - A tárgy tulajdonságainak változtatása a 3D-nézet kiválasztásához + Toggles the property of the objects to get selected in the 3D-View + A tárgy tulajdonságainak változtatása a 3D-nézet kiválasztásához - - + + StdCmdToggleVisibility - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Toggle visibility - Láthatóság váltása + Toggle visibility + Láthatóság váltása - Toggles visibility - Be-és kikapcsolja a láthatóságot + Toggles visibility + Be-és kikapcsolja a láthatóságot - - + + StdCmdToolBarMenu - View - Nézet + View + Nézet - Tool&bars - Eszköztárak + Tool&bars + Eszköztárak &b - Toggles this window - Ablak váltás + Toggles this window + Ablak váltás - - + + StdCmdTransform - Edit - Módosítás + Edit + Szerkesztés - Transform... - Átalakítás... + Transform... + Átalakítás... - Transform the geometry of selected objects - A kijelölt objektum geometriájának átalakítása + Transform the geometry of selected objects + A kijelölt objektum geometriájának átalakítása - - + + StdCmdTreeSelection - View - Nézet + View + Nézet - Go to selection - Kijelöltre ugrás + Go to selection + Kijelöltre ugrás - Scroll to first selected item - Lapozzon az első kijelölt elemre + Scroll to first selected item + Lapozzon az első kijelölt elemre - - + + StdCmdUndo - Edit - Módosítás + Edit + Szerkesztés - &Undo - &Visszavonás + &Undo + $Visszavonás - Undo exactly one action - Egyetlen művelet visszavonása + Undo exactly one action + Egyetlen művelet visszavonása - - + + StdCmdUserInterface - View - Nézet + View + Nézet - Dock views - Dokkoló nézet + Dock views + Dokkoló nézet - Dock all top-level views - Összes felülnézet kapcslása + Dock all top-level views + Összes felülnézet kapcslása - - + + StdCmdViewAxo - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Axometric - Axonometria + Axometric + Axonometria - Set to axometric view - Axonometrikus nézet beállítása + Set to axometric view + Axonometrikus nézet beállítása - - + + StdCmdViewBottom - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Bottom - Alsó + Bottom + Alsó - Set to bottom view - Alsó nézet beállítása + Set to bottom view + Alsó nézet beállítása - - + + StdCmdViewCreate - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Create new view - Új nézet + Create new view + Új nézet - Creates a new view window for the active document - Új nézet ablakot hoz létre az aktív dokumentumban + Creates a new view window for the active document + Új nézet ablakot hoz létre az aktív dokumentumban - - + + StdCmdViewExample1 - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Inventor example #1 - Feltaláló példa #1 + Inventor example #1 + Feltaláló példa #1 - Shows a 3D texture with manipulator - A kezelővel jeleníti meg a 3D textúrát + Shows a 3D texture with manipulator + A kezelővel jeleníti meg a 3D textúrát - - + + StdCmdViewExample2 - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Inventor example #2 - Feltaláló példa #2 + Inventor example #2 + Feltaláló példa #2 - Shows spheres and drag-lights - Gömb felület és mozgó fényforrás mutatása + Shows spheres and drag-lights + Gömb felület és mozgó fényforrás mutatása - - + + StdCmdViewExample3 - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Inventor example #3 - Feltaláló példa #3 + Inventor example #3 + Feltaláló példa #3 - Shows a animated texture - Animált textúra megjelenítése + Shows a animated texture + Animált textúra megjelenítése - - + + StdCmdViewFitAll - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Fit all - Összes megjelenítése + Fit all + Összes megjelenítése - Fits the whole content on the screen - A teljes tartalom töltse ki a képernyőt + Fits the whole content on the screen + A teljes tartalom töltse ki a képernyőt - - + + StdCmdViewFitSelection - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Fit selection - Kijelöltek képernyőre + Fit selection + Kijelöltek képernyőre - Fits the selected content on the screen - A kiválasztott tartalom kitöltse a képernyőt + Fits the selected content on the screen + A kiválasztott tartalom kitöltse a képernyőt - - + + StdCmdViewFront - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Front - Elölnézet + Front + Elölnézet - Set to front view - Elölnézetre állítás + Set to front view + Elölnézetre állítás - - + + StdCmdViewIvIssueCamPos - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Issue camera position - Kamera pozicionálása + Issue camera position + Kamera pozicionálása - Issue the camera position to the console and to a macro, to easily recall this position - Írd be a kamera helyzetét, hogy a konzol és a makró könnyen felvegye ezt a pozíciót + Issue the camera position to the console and to a macro, to easily recall this position + Írd be a kamera helyzetét, hogy a konzol és a makró könnyen felvegye ezt a pozíciót - - + + StdCmdViewIvStereoInterleavedColumns - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Stereo Interleaved Columns - Váltott oszlopú sztereó + Stereo Interleaved Columns + Váltott oszlopú sztereó - Switch stereo viewing to Interleaved Columns - Sztereó nézet váltása: Váltott oszloposra + Switch stereo viewing to Interleaved Columns + Sztereó nézet váltása: Váltott oszloposra - - + + StdCmdViewIvStereoInterleavedRows - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Stereo Interleaved Rows - Váltott soros sztereó + Stereo Interleaved Rows + Váltott soros sztereó - Switch stereo viewing to Interleaved Rows - Sztereó nézet váltása: Váltott sorosra + Switch stereo viewing to Interleaved Rows + Sztereó nézet váltása: Váltott sorosra - - + + StdCmdViewIvStereoOff - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Stereo Off - Sztereó kikapcsolása + Stereo Off + Sztereó kikapcsolása - Switch stereo viewing off - Sztereó nézet kikapcsolása + Switch stereo viewing off + Sztereó nézet kikapcsolása - - + + StdCmdViewIvStereoQuadBuff - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Stereo quad buffer - Stereo quad buffer + Stereo quad buffer + Stereo quad buffer - Switch stereo viewing to quad buffer - Sztereó nézet váltása: quad buffer + Switch stereo viewing to quad buffer + Sztereó nézet váltása: quad buffer - - + + StdCmdViewIvStereoRedGreen - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Stereo red/green - Sztereó piros/zöld + Stereo red/green + Sztereó piros/zöld - Switch stereo viewing to red/green - Sztereó nézet váltása: piros/zöld + Switch stereo viewing to red/green + Sztereó nézet váltása: piros/zöld - - + + StdCmdViewLeft - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Left - Bal nézet + Left + Bal nézet - Set to left view - Bal oldali nézet beállítása + Set to left view + Bal oldali nézet beállítása - - + + StdCmdViewRear - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Rear - Hátsó nézet + Rear + Hátsó nézet - Set to rear view - Hátulnézet beállítása + Set to rear view + Hátulnézet beállítása - - + + StdCmdViewRight - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Right - Jobb + Right + Jobb - Set to right view - Jobb oldali nézet beállítása + Set to right view + Jobb oldali nézet beállítása - - + + StdCmdViewRotateLeft - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Rotate Left - + Rotate Left + Fordítsa balra - Rotate the view by 90° counter-clockwise - + Rotate the view by 90° counter-clockwise + A nézetet forgassa 90° óramutató járásával ellenkezőleg - - + + StdCmdViewRotateRight - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Rotate Right - + Rotate Right + Fordítsa jobbra - Rotate the view by 90° clockwise - + Rotate the view by 90° clockwise + A nézetet forgassa 90° óramutató járásával egyezően - - + + StdCmdViewTop - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Top - Felülnézet + Top + Felülnézet - Set to top view - Felülnézet beállítása + Set to top view + Felülnézet beállítása - - + + StdCmdWhatsThis - Help - Súgó + Help + Súgó - &What's This? - &Mi ez? + &What's This? + Mi ez &W? - What's This - Mi ez + What's This + Mi ez - - + + StdCmdWindows - Window - Ablak + Window + Ablak - &Windows... - Ablakok + &Windows... + Ablakok &W... - Windows list - Ablaklista + Windows list + Ablaklista - - + + StdCmdWindowsMenu - Window - Ablak + Window + Ablak - Activates this window - Ablak aktiválása + Activates this window + Ablak aktiválása - - + + StdCmdWorkbench - View - Nézet + View + Nézet - Workbench - Munkafelület + Workbench + Munkafelület - Switch between workbenches - Váltás munkafelületek között + Switch between workbenches + Váltás munkafelületek között - - + + StdOrthographicCamera - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Orthographic view - Függőleges vetületi nézet + Orthographic view + Függőleges vetületi nézet - Switches to orthographic view mode - Váltás függőleges vetületi nézetre + Switches to orthographic view mode + Váltás függőleges vetületi nézetre - - + + StdPerspectiveCamera - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Perspective view - Perspektivikus nézet + Perspective view + Perspektivikus nézet - Switches to perspective view mode - Váltás perspektivikus nézetre + Switches to perspective view mode + Váltás perspektivikus nézetre - - + + StdViewBoxZoom - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Box zoom - Mező nagyítása + Box zoom + Mező nagyítása - - + + StdViewDockUndockFullscreen - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Document window - Dokumentum ablak + Document window + Dokumentum ablak - Display the active view either in fullscreen, in undocked or docked mode - Az aktív nézet megjelenítése teljes képernyőben, rögzített és nem rögzített módban is + Display the active view either in fullscreen, in undocked or docked mode + Az aktív nézet megjelenítése teljes képernyőben, rögzített és nem rögzített módban is - - + + StdViewScreenShot - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Save picture... - Kép mentése ... + Save picture... + Kép mentése ... - Creates a screenshot of the active view - Képernyőkép készítése az aktuális nézetről + Creates a screenshot of the active view + Képernyőkép készítése az aktuális nézetről - - + + StdViewZoomIn - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Zoom In - Nagyítás + Zoom In + Nagyítás - - + + StdViewZoomOut - Standard-View - Standard-nézet + Standard-View + Standard-nézet - Zoom Out - Kicsinyítés + Zoom Out + Kicsinyítés - - + + Std_DrawStyle - As is - As is + As is + Úgy mint - Normal mode - Normal mode + Normal mode + Normál mód - Wireframe - Wireframe + Wireframe + Drótváz - Wireframe mode - Wireframe mode + Wireframe mode + Drótváz mód - - + + Std_ExportGraphviz - Graphviz not found - + Graphviz not found + Nem található grafikonszerk - Graphviz couldn't be found on your system. -Do you want to specify its installation path if it's already installed? - + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + Grafikonszerk nem található a rendszeren. Megadja a telepítési elérési utat, ha már telepítve van? - Graphviz installation path - + Graphviz installation path + Grafikusszerk telepítési hely elérési útja - Dependency graph - + Dependency graph + Függőségi grafikon - Graphviz failed - + Graphviz failed + Nem sikerült Graphviz - Graphviz failed to create an image file - + Graphviz failed to create an image file + Nem sikerült létrehozni egy kép fájl Grafikonszerkesztőhöz - - + + Workbench - &File - &File + &File + &File - &Edit - S&zerkesztés + &Edit + Sz&erkesztés - Standard views - Alap nézetek + Standard views + Alap nézetek - &Stereo - &Sztereo + &Stereo + &Sztereo - &Zoom - &Nagyítás + &Zoom + Nagyítás &Z - Visibility - Láthatóság + Visibility + Láthatóság - &View - &Nézet + &View + Nézet &V - &Tools - &Eszköztárak + &Tools + Eszköz&tárak - &Macro - &Makró + &Macro + &Makró - &Windows - &Ablakok + &Windows + Ablakok &W - &On-line help - &On-line támogatás + &On-line help + &On-line támogatás - &Help - &Súgó + &Help + Súgó &H - File - Fájl + File + Fájl - Macro - Makró + Macro + Makró - View - Nézet + View + Nézet - Special Ops - Speciális lehetőségek + Special Ops + Speciális lehetőségek - - + + testClass - test - teszt + test + teszt - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - Choose the style of the Task Panel - Válassza ki a feladat panel stílusát + Choose the style of the Task Panel + Válassza ki a feladat panel stílusát - Default - Alapértelmezett + Default + Alapértelmezett - Windows XP - Windows XP + Windows XP + Windows XP - + diff --git a/src/Gui/Language/FreeCAD_it.qm b/src/Gui/Language/FreeCAD_it.qm index 1f1699be7..2932b4158 100644 Binary files a/src/Gui/Language/FreeCAD_it.qm and b/src/Gui/Language/FreeCAD_it.qm differ diff --git a/src/Gui/Language/FreeCAD_it.ts b/src/Gui/Language/FreeCAD_it.ts index b54531909..fe3f5309e 100644 --- a/src/Gui/Language/FreeCAD_it.ts +++ b/src/Gui/Language/FreeCAD_it.ts @@ -1,5914 +1,5844 @@ - - + + Angle - Form - Modulo + Form + Modulo - A: - A: + A: + A: - B: - B: + B: + B: - C: - C: + C: + C: - Angle Snap - Snap angolare + Angle Snap + Snap angolare - - 1 ° - 1 ° + + 1 ° + 1 ° - - 2 ° - 2 ° + + 2 ° + 2 ° - - 5 ° - 5 ° + + 5 ° + 5 ° - - 10 ° - 10 ° + + 10 ° + 10 ° - - 20 ° - 20 ° + + 20 ° + 20 ° - - 45 ° - 45 ° + + 45 ° + 45 ° - - 90 ° - 90 ° + + 90 ° + 90 ° - - 180 ° - 180 ° + + 180 ° + 180 ° - - + + Gui::AccelLineEdit - none - nessuno + none + nessuno - - + + Gui::ActionSelector - Available: - + Available: + Disponibile: - Selected: - + Selected: + Selezionato: - Add - Aggiungi + Add + Aggiungi - Remove - Rimuovi + Remove + Rimuovi - Move up - Spostare verso l'alto + Move up + Spostare verso l'alto - Move down - Sposta verso il basso + Move down + Sposta verso il basso - - + + Gui::AlignmentView - Movable object - + Movable object + Oggetto mobile - Fixed object - + Fixed object + Oggetto fisso - - + + Gui::BlenderNavigationStyle - Press left mouse button - Premi il tasto sinistro del mouse + Press left mouse button + Premi il tasto sinistro del mouse - Press SHIFT and middle mouse button - Premi MAIUSC e il pulsante centrale del mouse + Press SHIFT and middle mouse button + Premi MAIUSC e il pulsante centrale del mouse - Press middle mouse button - Premi il tasto centrale del mouse + Press middle mouse button + Premi il tasto centrale del mouse - Scroll middle mouse button - Scorri il tasto centrale del mouse + Scroll middle mouse button + Scorri il tasto centrale del mouse - - + + Gui::CADNavigationStyle - Press left mouse button - Premi il tasto sinistro del mouse + Press left mouse button + Premi il tasto sinistro del mouse - Press middle mouse button - Premi il tasto centrale del mouse + Press middle mouse button + Premi il tasto centrale del mouse - Press left and middle mouse button - Premi il tasto sinistro e il tasto centrale del mouse + Press left and middle mouse button + Premi il tasto sinistro e il tasto centrale del mouse - Scroll middle mouse button - Scorri il tasto centrale del mouse + Scroll middle mouse button + Scorri il tasto centrale del mouse - - + + Gui::Command - Standard - Standard + Standard + Standard - - + + Gui::ContainerDialog - &OK - &OK + &OK + &OK - &Cancel - &Annulla + &Cancel + &Annulla - - + + Gui::ControlSingleton - Task panel - Riquadro delle attività + Task panel + Riquadro delle attività - - + + Gui::Dialog::AboutApplication - About - Informazioni su + About + Informazioni su - Revision number - Numero revisione + Revision number + Numero revisione - Version - Versione + Version + Versione - OK - OK + OK + OK - - + + - Release date - Data di rilascio + Release date + Data di rilascio - Platform - Piattaforma + Platform + Piattaforma - License... - Licenza... + License... + Licenza... - Copy to clipboard - + Copy to clipboard + Copia negli appunti - - + + Gui::Dialog::ButtonModel - Button %1 - Pulsante %1 + Button %1 + Pulsante %1 - Out Of Range - Fuori dalla portata + Out Of Range + Fuori dalla portata - - + + Gui::Dialog::CommandModel - Commands - Comandi + Commands + Comandi - - + + Gui::Dialog::DemoMode - View Turntable - Visualizza rotazione oggetti + View Turntable + Visualizza rotazione oggetti - Speed - Velocità + Speed + Velocità - Maximum - Massima + Maximum + Massima - Minimum - Minima + Minimum + Minima - Fullscreen - Schermo intero + Fullscreen + Schermo intero - Enable timer - Abilita timer + Enable timer + Abilita timer - s - s + s + s - Angle - Angolo - - - 90° - 90° - - - -90° - -90° + Angle + Angolo - Play - Avvia + 90° + 90° - Stop - Ferma + -90° + -90° - Close - Chiudi + Play + Avvia - - + + Stop + Ferma + + + Close + Chiudi + + + Gui::Dialog::DlgActivateWindow - Choose Window - Scegli Finestra + Choose Window + Scegli Finestra - &Activate - &Attiva + &Activate + &Attiva - Alt+A - Alt+A + Alt+A + Alt+A - &Cancel - &Annulla + &Cancel + &Annulla - - + + - - + + Gui::Dialog::DlgActivateWindowImp - Windows - Finestre + Windows + Finestre - - + + Gui::Dialog::DlgAuthorization - Authorization - Autorizzazione + Authorization + Autorizzazione - &OK - &OK + &OK + &OK - &Cancel - &Annulla + &Cancel + &Annulla - Password: - Password: + Password: + Password: - User name: - Nome utente: + User name: + Nome utente: - - + + - - + + Gui::Dialog::DlgChooseIcon - Choose Icon - Scegli Icona + Choose Icon + Scegli Icona - OK - OK + OK + OK - Cancel - Annulla + Cancel + Annulla - Add icons... - Aggiungi icone... + Add icons... + Aggiungi icone... - - + + Gui::Dialog::DlgCustomActions - Macros - Macro + Macros + Macro - Setup Custom Macros - Configurare le Macro personali + Setup Custom Macros + Configurare Macro Personali - Macro: - Macro: + Macro: + Macro: - ... - ... + ... + ... - Pixmap - Pixmap + Pixmap + Pixmap - Accelerator: - Acceleratore: + Accelerator: + Acceleratore: - What's this: - Che cos'è questo: + What's this: + Che cos'è questo: - Status text: - Testo di stato: + Status text: + Testo di stato: - Tool tip: - Suggerimento: + Tool tip: + Suggerimento: - Menu text: - Testo di menu: + Menu text: + Testo di menu: - Add - Aggiungi + Add + Aggiungi - Remove - Rimuovi + Remove + Rimuovi - Replace - Sostituisci + Replace + Sostituisci - - + + Gui::Dialog::DlgCustomActionsImp - Icons - Icone + Icons + Icone - Macros - Macro + Macros + Macro - No macro - Nessuna macro + No macro + Nessuna macro - No macros found. - Nessuna macro trovata. + No macros found. + Nessuna macro trovata. - Macro not found - Macro non trovata + Macro not found + Macro non trovata - Sorry, couldn't find macro file '%1'. - Non è stato possibile trovare il file macro '%1'. + Sorry, couldn't find macro file '%1'. + Non è stato possibile trovare il file macro '%1'. - Empty macro - Macro vuota + Empty macro + Macro vuota - Please specify the macro first. - Specificare prima la macro. + Please specify the macro first. + Specificare prima la macro. - Empty text - Testo vuoto + Empty text + Testo vuoto - Please specify the menu text first. - Specificare prima il menu testo. + Please specify the menu text first. + Specificare prima il menu testo. - No item selected - Nessun elemento selezionato + No item selected + Nessun elemento selezionato - Please select a macro item first. - Selezionare prima un elemento macro. + Please select a macro item first. + Selezionare prima un elemento macro. - - + + Gui::Dialog::DlgCustomCommands - Commands - Comandi + Commands + Comandi - - + + - - + + Gui::Dialog::DlgCustomCommandsImp - Category - Categoria + Category + Categoria - Icon - Icona + Icon + Icona - Command - Comando + Command + Comando - - + + Gui::Dialog::DlgCustomKeyboard - Keyboard - Tastiera + Keyboard + Tastiera - Description: - Descrizione: + Description: + Descrizione: - &Category: - &Categoria: + &Category: + &Categoria: - C&ommands: - C&omandi: + C&ommands: + C&omandi: - Current shortcut: - Scorciatoia corrente: + Current shortcut: + Scorciatoia corrente: - Press &new shortcut: - Digita la &nuova scorciatoia: + Press &new shortcut: + Digita la &nuova scorciatoia: - Currently assigned to: - Attualmente assegnata a: + Currently assigned to: + Attualmente assegnata a: - &Assign - &Assegna + &Assign + &Assegna - Alt+A - Alt+A + Alt+A + Alt+A - &Reset - &Ripristina + &Reset + &Ripristina - Alt+R - Alt+R + Alt+R + Alt+R - Re&set All - Ri&pristina tutto + Re&set All + Ri&pristina tutto - Alt+S - Alt+S + Alt+S + Alt+S - - + + - - + + Gui::Dialog::DlgCustomKeyboardImp - Icon - Icona + Icon + Icona - Command - Comando + Command + Comando - none - nessuno + none + nessuno - Multiple defined shortcut - Scorciatoia definita più volte + Multiple defined shortcut + Scorciatoia definita più volte - The shortcut '%1' is defined more than once. This could result into unexpected behaviour. - La scorciatoia '%1' è definita più volte. Ciò potrebbe portare ad un comportamento inaspettato. + The shortcut '%1' is defined more than once. This could result into unexpected behaviour. + La scorciatoia '%1' è definita più volte. Ciò potrebbe portare ad un comportamento inaspettato. - Already defined shortcut - Scorciatoia già definita + Already defined shortcut + Scorciatoia già definita - The shortcut '%1' is already assigned to '%2'. + The shortcut '%1' is already assigned to '%2'. Please define another shortcut. - La scorciatoia '%1' è già stata assegnata a '%2'. + La scorciatoia '%1' è già stata assegnata a '%2'. -Definire un'altra scorciatoia. +Definire un'altra scorciatoia. - - + + Gui::Dialog::DlgCustomToolBoxbarsImp - Toolbox bars - Barre degli strumenti + Toolbox bars + Barre degli strumenti - - + + Gui::Dialog::DlgCustomToolbars - Toolbars - Barre degli strumenti + Toolbars + Barre degli strumenti - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Nota:</span> Le modifiche diverranno attive al prossimo avvio dell'ambiente appropriato</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Nota:</span> Le modifiche diverranno attive al prossimo avvio dell'ambiente appropriato</p></body></html> - Move right - Sposta verso destra + Move right + Sposta verso destra - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Sposta l'elemento selezionato un livello in basso.</b><p>Questo cambierà anche il livello degli elementi padre.</p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Sposta l'elemento selezionato un livello in basso.</b><p>Questo cambierà anche il livello degli elementi padre.</p> - Move left - Sposta verso sinistra + Move left + Sposta verso sinistra - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Sposta l'elemento selezionato un livello in alto.</b><p>Questo cambierà anche il livello degli elementi padre.</p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Sposta l'elemento selezionato un livello in alto.</b><p>Questo cambierà anche il livello degli elementi padre.</p> - Move down - Sposta verso il basso + Move down + Sposta verso il basso - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Sposta l'elemento selezionato in basso</b><p>L'elemento verrà spostato all'interno del livello di gerarchia.</p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Sposta l'elemento selezionato in basso</b><p>L'elemento verrà spostato all'interno del livello di gerarchia.</p> - Move up - Spostare verso l'alto + Move up + Spostare verso l'alto - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Sposta l'elemento selezionato in basso</b><p>L'elemento verrà spostato all'interno del livello di gerarchia.</p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Sposta l'elemento selezionato in alto.</b><p>L'elemento verrà spostato all'interno del livello di gerarchia.</p> - New... - Nuovo... + New... + Nuovo... - Rename... - Rinomina... + Rename... + Rinomina... - Delete - Elimina + Delete + Elimina - Icon - Icona + Icon + Icona - Command - Comando + Command + Comando - <Separator> - <Separatore> + <Separator> + <Separatore> - New toolbar - Nuova barra degli strumenti + New toolbar + Nuova barra degli strumenti - Toolbar name: - Nome della barra degli strumenti: + Toolbar name: + Nome della barra degli strumenti: - Duplicated name - Nome duplicato + Duplicated name + Nome duplicato - The toolbar name '%1' is already used - Il nome della barra degli strumenti '%1' è già usato + The toolbar name '%1' is already used + Il nome della barra degli strumenti '%1' è già usato - Rename toolbar - Rinomina la barra degli strumenti + Rename toolbar + Rinomina la barra degli strumenti - - + + - - + + Gui::Dialog::DlgCustomizeImp - Customize - Personalizza + Customize + Personalizza - &Help - &Aiuto + &Help + &Aiuto - &Close - &Chiudi + &Close + &Chiudi - - + + Gui::Dialog::DlgCustomizeSpaceball - Spaceball - Spaceball + Spaceball + Spaceball - No Spaceball Present - Nessun Spaceball Presente + No Spaceball Present + Nessun Spaceball Presente - Buttons - Pulsanti + Buttons + Pulsanti - Clear - Pulisci + Clear + Pulisci - Print Reference - Stampa riferimento + Print Reference + Stampa riferimento - - + + Gui::Dialog::DlgDisplayProperties - Display properties - Visualizza le proprietà + Display properties + Visualizza le proprietà - Display - Visualizzazione + Display + Visualizzazione - Transparency: - Trasparenza: + Transparency: + Trasparenza: - Line width: - Spessore linea: + Line width: + Spessore linea: - Point size: - Dimensione punto: + Point size: + Dimensione punto: - Material - Materiale + Material + Materiale - ... - ... + ... + ... - Close - Chiudi + Close + Chiudi - Viewing mode - Modalità di visualizzazione + Viewing mode + Modalità di visualizzazione - Display mode: - Modo di visualizzazione: + Plot mode: + Modo di stampa: - Plot mode: - Modo di stampa: + + - - + Line transparency: + Trasparenza linea: - Line transparency: - Trasparenza linea: + Line color: + Colore linea: - Line color: - Colore linea: + Shape color: + Colore forma: - Shape color: - Colore forma: + Color plot: + Colore trama: - Color plot: - Colore trama: + Document window: + Finestra del documento: - - Document window: - - - - + + Gui::Dialog::DlgEditorSettings - Editor - Editor + Editor + Editor - Options - Opzioni + Options + Opzioni - Enable line numbers - Abilita la numerazione delle linee + Enable line numbers + Abilita la numerazione delle linee - Enable folding - Abilita il folding + Enable folding + Abilita il folding - Indentation - Indentazione + Indentation + Indentazione - Insert spaces - Inserisci spazi + Insert spaces + Inserisci spazi - Tab size: - Dimensione della tabulazione: + Tab size: + Dimensione della tabulazione: - Indent size: - Dimensione dell'indentazione: + Indent size: + Dimensione dell'indentazione: - Keep tabs - Mantieni le tabulazioni + Keep tabs + Mantieni le tabulazioni - Display Items - Visualizzazione elementi + Display Items + Visualizzazione elementi - Family: - Tipo di carattere: + Family: + Tipo di carattere: - Size: - Dimensione: + Size: + Dimensione: - Preview: - Anteprima: + Preview: + Anteprima: - - + + - - + + Gui::Dialog::DlgGeneral - General - Generale + General + Generale - Start up - Avvio + Start up + Avvio - Enable splash screen at start up - Abilita la schermata iniziale all'avvio + Enable splash screen at start up + Abilita la schermata iniziale all'avvio - Switch to tab of report window: - Passa alla finestra di report: + Switch to tab of report window: + Passa alla finestra di report: - Auto load module after start up: - Caricamento automatico del modulo dopo l'avvio: + Auto load module after start up: + Caricamento automatico del modulo dopo l'avvio: - Language - Lingua + Language + Lingua - Change language: - Cambia lingua: + Change language: + Cambia lingua: - Main window - Finestra principale + Main window + Finestra principale - Size of recent file list - Dimensione della lista dei file recenti + Size of recent file list + Dimensione della lista dei file recenti - Window style: - Stile della finestra: + Window style: + Stile della finestra: - Size of toolbar icons: - Dimensione delle icone della barra degli strumenti: + Size of toolbar icons: + Dimensione delle icone della barra degli strumenti: - - + + Gui::Dialog::DlgGeneralImp - Default (%1 x %1) - Predefinita (%1 x %1) + Default (%1 x %1) + Predefinita (%1 x %1) - Small (%1 x %1) - Piccola (%1 x %1) + Small (%1 x %1) + Piccola (%1 x %1) - Large (%1 x %1) - Grande (%1 x %1) + Large (%1 x %1) + Grande (%1 x %1) - Extra large (%1 x %1) - Molto grande (%1 x %1) + Extra large (%1 x %1) + Molto grande (%1 x %1) - - + + Gui::Dialog::DlgInputDialog - Input - Input + Input + Input - OK - OK + OK + OK - Cancel - Annulla + Cancel + Annulla - - + + - - + + Gui::Dialog::DlgInspector - Scene Inspector - Ispettore di scena + Scene Inspector + Ispettore di scena - - + + Gui::Dialog::DlgMacroExecute - Execute macro - Esegui la macro + Execute macro + Esegui la macro - Macro name: - Nome macro: + Macro name: + Nome macro: - Macro destination: - Percorso Macro: + Macro destination: + Percorso Macro: - Execute - Esegui + Execute + Esegui - Close - Chiudi + Close + Chiudi - Create - Crea + Create + Crea - Delete - Elimina + Delete + Elimina - Edit - Modifica + Edit + Modifica - - + + Gui::Dialog::DlgMacroExecuteImp - Macros - Macro + Macros + Macro - Macro file - File macro + Macro file + File macro - Enter a file name, please: - Inserisci un nome file: + Enter a file name, please: + Inserisci un nome file: - Existing file - File esistente + Existing file + File esistente - '%1'. + '%1'. This file already exists. - '%1'. + '%1'. Il file esiste già. - Delete macro - Cancella macro + Delete macro + Cancella macro - Do you really want to delete the macro '%1'? - Vuoi veramente cancellare la macro '%1'? + Do you really want to delete the macro '%1'? + Vuoi veramente cancellare la macro '%1'? - Cannot create file - Impossibile creare il file + Cannot create file + Impossibile creare il file - Creation of file '%1' failed. - Creazione del file '%1' non riuscita. + Creation of file '%1' failed. + Creazione del file '%1' non riuscita. - - + + Gui::Dialog::DlgMacroRecord - Macro recording - Registrazione macro + Macro recording + Registrazione macro - Macro name: - Nome macro: + Macro name: + Nome macro: - Stop - Ferma + Stop + Ferma - Cancel - Annulla + Cancel + Annulla - Macro path: - Percorso macro: + Macro path: + Percorso macro: - ... - ... + ... + ... - Record - Registra + Record + Registra - - + + Gui::Dialog::DlgMacroRecordImp - Macro recorder - Registratore macro + Macro recorder + Registratore macro - Specify first a place to save. - Specificare prima dove salvare. + Specify first a place to save. + Specificare prima dove salvare. - Existing macro - Macro esistente + Existing macro + Macro esistente - The macro '%1' already exists. Do you want to overwrite? - La macro '%1' esiste già. Vuoi sovrasciverla? + The macro '%1' already exists. Do you want to overwrite? + La macro '%1' esiste già. Vuoi sovrasciverla? - The macro directory doesn't exist. Please, choose another one. - La cartella delle macro non esiste. Sceglierne un'altra. + The macro directory doesn't exist. Please, choose another one. + La cartella delle macro non esiste. Sceglierne un'altra. - Choose macro directory - Scegli la cartella delle macro + Choose macro directory + Scegli la cartella delle macro - - + + Gui::Dialog::DlgMaterialProperties - Material properties - Proprietà del materiale + Material properties + Proprietà del materiale - &Close - &Chiudi + &Close + &Chiudi - Alt+C - Alt+C + Alt+C + Alt+C - Material - Materiale + Material + Materiale - Diffuse color: - Colore diffuso: + Diffuse color: + Colore diffuso: - Specular color: - Colore speculare: + Specular color: + Colore speculare: - Shininess: - Brillantezza: + Shininess: + Brillantezza: - % - % + % + % - Ambient color: - Colore ambiente: + Ambient color: + Colore ambiente: - - + + - Emissive color: - Colore di emissione: + Emissive color: + Colore di emissione: - - + + Gui::Dialog::DlgOnlineHelp - On-line help - Aiuto in linea + On-line help + Aiuto in linea - Help viewer - Visualizzatore Aiuto + Help viewer + Visualizzatore Aiuto - Location of start page - Posizione della pagina iniziale + Location of start page + Posizione della pagina iniziale - - + + Gui::Dialog::DlgOnlineHelpImp - HTML files (*.html *.htm) - File HTML (*.html *.htm) + HTML files (*.html *.htm) + File HTML (*.html *.htm) - Access denied - Accesso negato + Access denied + Accesso negato - Access denied to '%1' + Access denied to '%1' Specify another directory, please. - Accesso negato a '%1' + Accesso negato a '%1' -Specificare un'altra cartella. +Specificare un'altra cartella. - - + + Gui::Dialog::DlgParameter - Parameter Editor - Editor parametri + Parameter Editor + Editor parametri - Save to disk - Salva su disco + Save to disk + Salva su disco - Alt+C - Alt+C + Alt+C + Alt+C - &Close - &Chiudi + &Close + &Chiudi - - + + Gui::Dialog::DlgParameterImp - Group - Gruppo + Group + Gruppo - Name - Nome + Name + Nome - Type - Tipo + Type + Tipo - Value - Valore + Value + Valore - User parameter - Parametri utente + User parameter + Parametri utente - Invalid input - Input non valido + Invalid input + Input non valido - Invalid key name '%1' - Nome chiave '%1' non valido + Invalid key name '%1' + Nome chiave '%1' non valido - System parameter - Parametro di sistema + System parameter + Parametro di sistema - - + + Gui::Dialog::DlgPreferences - Preferences - Preferenze + Preferences + Preferenze - &Help - &Aiuto + &Help + &Aiuto - Alt+H - Alt+H + Alt+H + Alt+H - &OK - &OK + &OK + &OK - &Apply - &Applica + &Apply + &Applica - Alt+A - Alt+A + Alt+A + Alt+A - &Cancel - &Annulla + &Cancel + &Annulla - - + + - - + + Gui::Dialog::DlgPreferencesImp - Wrong parameter - Parametro errato + Wrong parameter + Parametro errato - - + + Gui::Dialog::DlgProjectInformation - Project information - Informazioni sul progetto + Project information + Informazioni sul progetto - Information - Informazioni + Information + Informazioni - &Name: - &Nome: + &Name: + &Nome: - Commen&t: - Commen&to: + Commen&t: + Commen&to: - Path: - Percorso: + Path: + Percorso: - &Last modified by: - &Ultima modifica effettuata da: + &Last modified by: + &Ultima modifica effettuata da: - Created &by: - Creato &da: + Created &by: + Creato &da: - Com&pany: - So&cietà: + Com&pany: + So&cietà: - Last &modification date: - Data &ultima modifica: + Last &modification date: + Data &ultima modifica: - Creation &date: - Data &di creazione: + Creation &date: + Data &di creazione: - &OK - &OK + &OK + &OK - &Cancel - &Annulla + &Cancel + &Annulla - - + + - - + + Gui::Dialog::DlgProjectUtility - Project utility - Utilità di progetto + Project utility + Utilità di progetto - Extract project - Estrai progetto + Extract project + Estrai progetto - Source - Fonte + Source + Fonte - Project file (*.fcstd) - File di progetto (*. fcstd) + Project file (*.fcstd) + File di progetto (*. fcstd) - Destination - Destinazione + Destination + Destinazione - Extract - Estrai + Extract + Estrai - Create project - Crea progetto + Create project + Crea progetto - Document.xml - Document.xml + Document.xml + Document.xml - Create - Crea + Create + Crea - Load project file after creation - Carica il file di progetto dopo la creazione + Load project file after creation + Carica il file di progetto dopo la creazione - Empty source - Fonte vuota + Empty source + Fonte vuota - No source is defined. - Nessuna fonte è definita. + No source is defined. + Nessuna fonte è definita. - Empty destination - Destinazione vuota + Empty destination + Destinazione vuota - No destination is defined. - Non è definita alcuna destinazione. + No destination is defined. + Non è definita alcuna destinazione. - - + + Gui::Dialog::DlgReportView - Output window - Finestra di Output + Output window + Finestra di Output - Output - Output + Output + Output - Record log messages - Registra messaggi di log + Record log messages + Registra messaggi di log - Record warnings - Registra avvisi + Record warnings + Registra avvisi - Record error messages - Registra messaggi di errore + Record error messages + Registra messaggi di errore - Colors - Colori + Colors + Colori - Normal messages: - Messaggi normali: + Normal messages: + Messaggi normali: - Log messages: - Messaggi di log: + Log messages: + Messaggi di log: - Warnings: - Avvisi: + Warnings: + Avvisi: - Errors: - Errori: + Errors: + Errori: - - + + - Redirect internal Python errors to report view - Reindirizzare gli errori interni di Python alla finestra di report + Redirect internal Python errors to report view + Reindirizzare gli errori interni di Python alla finestra di report - Redirect internal Python output to report view - Reindirizzare l'output interno di Python nella vista report + Redirect internal Python output to report view + Reindirizzare l'output interno di Python nella vista report - - + + Gui::Dialog::DlgRunExternal - Running external program - Esecuzione programma esterno + Running external program + Esecuzione programma esterno - TextLabel - Etichetta Testo + TextLabel + Etichetta Testo - Advanced >> - Avanzate >> + Advanced >> + Avanzate >> - ... - ... + ... + ... - Accept changes - Accetta le modifiche + Accept changes + Accetta le modifiche - Discard changes - Ignorare le modifiche + Discard changes + Ignorare le modifiche - Abort program - Interrompere il programma + Abort program + Interrompere il programma - Help - Aiuto + Help + Aiuto - Select a file - Seleziona un file + Select a file + Seleziona un file - - + + Gui::Dialog::DlgSettings3DView - 3D View - Vista 3D + 3D View + Vista 3D - 3D View settings - Impostazioni Vista 3D + 3D View settings + Impostazioni Vista 3D - Show coordinate system in the corner - Mostra le coordinate di sistema nell'angolo + Show coordinate system in the corner + Mostra le coordinate di sistema nell'angolo - Show counter of frames per second - Mostra contatore frame per secondo + Show counter of frames per second + Mostra contatore frame per secondo - Enable animation - Abilita animazione + Enable animation + Abilita animazione - Enable anti-aliasing (slower) - Attiva anti-aliasing + Enable anti-aliasing (slower) + Attiva anti-aliasing - Eye to eye distance for stereo modes: - Distanza tra gli occhi per le modalità stereo: + Eye to eye distance for stereo modes: + Distanza tra gli occhi per le modalità stereo: - Camera type - Tipo di camera + Camera type + Tipo di camera - Orthographic rendering - Render ortografico + Orthographic rendering + Render ortografico - Perspective rendering - Render prospettico + Perspective rendering + Render prospettico - - + + - 3D Navigation - Navigazione 3D + 3D Navigation + Navigazione 3D - Mouse... - Mouse... + Mouse... + Mouse... - Intensity of backlight - Intensità della retroilluminazione + Intensity of backlight + Intensità della retroilluminazione - Enable backlight color - Attiva il colore di retroilluminazione + Enable backlight color + Attiva il colore di retroilluminazione - Orbit style - Stile Orbita + Orbit style + Stile Orbita - Turntable - Piatto + Turntable + Piatto - Trackball - Trackball + Trackball + Trackball - Invert zoom - Inverti zoom + Invert zoom + Inverti zoom - Zoom at cursor - + Zoom at cursor + Zoom al cursore - Zoom step - + Zoom step + Passo di zoom - - + + Gui::Dialog::DlgSettings3DViewImp - %1 navigation - Navigazione %1 + %1 navigation + Navigazione %1 - - + + Gui::Dialog::DlgSettingsColorGradient - Color model - Modello di colore + Color model + Modello di colore - &Gradient: - &Gradiente: + &Gradient: + &Gradiente: - red-yellow-green-cyan-blue - rosso-giallo-verde-ciano-blu + red-yellow-green-cyan-blue + rosso-giallo-verde-ciano-blu - blue-cyan-green-yellow-red - blu-ciano-verde-giallo-rosso + blue-cyan-green-yellow-red + blu-ciano-verde-giallo-rosso - white-black - bianco-nero + white-black + bianco-nero - black-white - nero-bianco + black-white + nero-bianco - Visibility - Visibilità + Visibility + Visibilità - Out g&rayed - Uscita in scala di g&rigi + Out g&rayed + Uscita in scala di g&rigi - Alt+R - Alt+R + Alt+R + Alt+R - Out &invisible - Uscita &invisibile + Out &invisible + Uscita &invisibile - Alt+I - Alt+I + Alt+I + Alt+I - Style - Stile + Style + Stile - &Zero - &Zero + &Zero + &Zero - Alt+Z - Alt+Z + Alt+Z + Alt+Z - &Flow - &Flusso + &Flow + &Flusso - Alt+F - Alt+F + Alt+F + Alt+F - &OK - &OK + &OK + &OK - &Cancel - &Annulla + &Cancel + &Annulla - Parameter range - Intervallo parametro + Parameter range + Intervallo parametro - Mi&nimum: - Mi&nimo: + Mi&nimum: + Mi&nimo: - Ma&ximum: - Ma&ssimo: + Ma&ximum: + Ma&ssimo: - &Labels: - &Etichette: + &Labels: + &Etichette: - &Decimals: - &Decimali: + &Decimals: + &Decimali: - - + + - Color-gradient settings - Impostazioni del gradiente di colore + Color-gradient settings + Impostazioni del gradiente di colore - - + + Gui::Dialog::DlgSettingsColorGradientImp - Wrong parameter - Parametro errato + Wrong parameter + Parametro errato - The maximum value must be higher than the minimum value. - Il valore massimo deve essere maggiore del valore minimo. + The maximum value must be higher than the minimum value. + Il valore massimo deve essere maggiore del valore minimo. - - + + Gui::Dialog::DlgSettingsDocument - Document - Documento + Document + Documento - General - Generale + General + Generale - Document save compression level + Document save compression level (0 = none, 9 = highest, 3 = default) - Livello di compressione di salvataggio del documento + Livello di compressione di salvataggio del documento (0 = nessuno, 9 = massimo, 3 = normale) - Create new document at start up - Crea un nuovo documento all'avvio + Create new document at start up + Crea un nuovo documento all'avvio - Storage - Archiviazione + Storage + Archiviazione - Saving transactions (Auto-save) - Salvataggio delle transazioni (Salvataggio automatico) + Saving transactions (Auto-save) + Salvataggio delle transazioni (Salvataggio automatico) - Discard saved transaction after saving document - Elimina le transazioni dopo il salvataggio del documento + Discard saved transaction after saving document + Elimina le transazioni dopo il salvataggio del documento - Save thumbnail into project file when saving document - Salva la miniatura nel file del progetto al salvataggio del documento + Save thumbnail into project file when saving document + Salva la miniatura nel file del progetto al salvataggio del documento - Create up to backup files when resaving document - Numero di file di backup quando si salva di nuovo il documento + Create up to backup files when resaving document + Numero di file di backup quando si salva di nuovo il documento - Document objects - Oggetti del documento + Document objects + Oggetti del documento - Allow duplicate object labels in one document - Consente la duplicazione delle etichette degli oggetti in uno stesso documento + Allow duplicate object labels in one document + Consente la duplicazione delle etichette degli oggetti in uno stesso documento - Maximum Undo/Redo steps - Massimo numero di passaggi di Annulla/Modifica + Maximum Undo/Redo steps + Massimo numero di passaggi di Annulla/Modifica - Using Undo/Redo on documents - Utilizzo di Annulla/Ripeti sui documenti + Using Undo/Redo on documents + Utilizzo di Annulla/Ripeti sui documenti - - + + Gui::Dialog::DlgSettingsEditorImp - Text - Testo + Text + Testo - Bookmark - Segnalibro + Bookmark + Segnalibro - Breakpoint - Interruzione + Breakpoint + Interruzione - Keyword - Parola chiave + Keyword + Parola chiave - Comment - Commento + Comment + Commento - Block comment - Blocco di commento + Block comment + Blocco di commento - Number - Numero + Number + Numero - String - Stringa + String + Stringa - Character - Carattere + Character + Carattere - Class name - Nome della classe + Class name + Nome della classe - Define name - Nome definito + Define name + Nome definito - Operator - Operatore + Operator + Operatore - Python output - Output Python + Python output + Output Python - Python error - Errore Python + Python error + Errore Python - Items - Elementi + Items + Elementi - Current line highlight - + Current line highlight + Evidenziazione di linea corrente - - + + Gui::Dialog::DlgSettingsImage - Image settings - Impostazioni immagine + Image settings + Impostazioni immagine - Image properties - Proprietà immagine + Image properties + Proprietà immagine - Back&ground: - Sfo&ndo + Back&ground: + Sfo&ndo - Current - Corrente + Current + Corrente - White - Bianco + White + Bianco - Black - Nero + Black + Nero - Transparent - Trasparente + Transparent + Trasparente - Image dimensions - Dimensioni immagine + Image dimensions + Dimensioni immagine - Pixel - pixel + Pixel + pixel - &Width: - &Larghezza: + &Width: + &Larghezza: - Current screen - Schermo corrente + Current screen + Schermo corrente - Icon 32 x 32 - Icona 32 x 32 + Icon 32 x 32 + Icona 32 x 32 - Icon 64 x 64 - Icona 64 x 64 + Icon 64 x 64 + Icona 64 x 64 - Icon 128 x 128 - Icona 128 x 128 + Icon 128 x 128 + Icona 128 x 128 - CGA 320 x 200 - CGA 320 x 200 + CGA 320 x 200 + CGA 320 x 200 - QVGA 320 x 240 - QVGA 320 x 240 + QVGA 320 x 240 + QVGA 320 x 240 - VGA 640 x 480 - VGA 640 x 480 + VGA 640 x 480 + VGA 640 x 480 - NTSC 720 x 480 - NTSC 720 x 480 + NTSC 720 x 480 + NTSC 720 x 480 - PAL 768 x 578 - PAL 768 x 578 + PAL 768 x 578 + PAL 768 x 578 - SVGA 800 x 600 - SVGA 800 x 600 + SVGA 800 x 600 + SVGA 800 x 600 - XGA 1024 x 768 - XGA 1024 x 768 + XGA 1024 x 768 + XGA 1024 x 768 - HD720 1280 x 720 - HD720 1280 x 720 + HD720 1280 x 720 + HD720 1280 x 720 - SXGA 1280 x 1024 - SXGA 1280 x 1024 + SXGA 1280 x 1024 + SXGA 1280 x 1024 - SXGA+ 1400 x 1050 - SXGA+ 1400 x 1050 + SXGA+ 1400 x 1050 + SXGA+ 1400 x 1050 - UXGA 1600 x 1200 - UXGA 1600 x 1200 + UXGA 1600 x 1200 + UXGA 1600 x 1200 - HD1080 1920 x 1080 - HD1080 1920 x 1080 + HD1080 1920 x 1080 + HD1080 1920 x 1080 - WUXGA 1920 x 1200 - WUXGA 1920 x 1200 + WUXGA 1920 x 1200 + WUXGA 1920 x 1200 - QXGA 2048 x 1538 - QXGA 2048 x 1538 + QXGA 2048 x 1538 + QXGA 2048 x 1538 - WQXGA 2560 x 1600 - WQXGA 2560 x 1600 + WQXGA 2560 x 1600 + WQXGA 2560 x 1600 - QSXGA 2560 x 2048 - QSXGA 2560 x 2048 - - - QUXGA 3200 × 2400 - QUXGA 3200 × 2400 - - - HUXGA 6400 × 4800 - HUXGA 6400 × 4800 + QSXGA 2560 x 2048 + QSXGA 2560 x 2048 - !!! 10000 x 10000 - !!! 10000 x 10000 + QUXGA 3200 × 2400 + QUXGA 3200 × 2400 - Standard sizes: - Dimensioni standard: + HUXGA 6400 × 4800 + HUXGA 6400 × 4800 - &Height: - &Altezza: + !!! 10000 x 10000 + !!! 10000 x 10000 - Aspect ratio: - Proporzioni: + Standard sizes: + Dimensioni standard: - &Screen - &Schermo + &Height: + &Altezza: - Alt+S - Alt+S + Aspect ratio: + Proporzioni: - &4:3 - &4:3 + &Screen + &Schermo - Alt+4 - Alt+4 + Alt+S + Alt+S - 1&6:9 - 1&6:9 + &4:3 + &4:3 - Alt+6 - Alt+6 + Alt+4 + Alt+4 - &1:1 - &1:1 + 1&6:9 + 1&6:9 - Alt+1 - Alt+1 + Alt+6 + Alt+6 - Image comment - Commento immagine + &1:1 + &1:1 - Insert MIBA - Inserisci MIBA + Alt+1 + Alt+1 - Insert comment - Inserisci commento + Image comment + Commento immagine - - + + Insert MIBA + Inserisci MIBA + + + Insert comment + Inserisci commento + + + Gui::Dialog::DlgSettingsMacro - Macro - Macro + Macro + Macro - Macro recording settings - Impostazioni di registrazione macro + Macro recording settings + Impostazioni di registrazione macro - Logging Commands - Comandi di log + Logging Commands + Comandi di log - Show script commands in python console - Mostra i comandi di script nella console Python + Show script commands in python console + Mostra i comandi di script nella console Python - Log all commands issued by menus to file: - Registra tutti i comandi emessi dai menu al file: + Log all commands issued by menus to file: + Registra tutti i comandi emessi dai menu al file: - FullScript.FCScript - FullScript.FCScript + FullScript.FCScript + FullScript.FCScript - Gui commands - Comandi d'interfaccia utente + Gui commands + Comandi d'interfaccia utente - Recording GUI commands - Registrazione dei comandi d'interfaccia utente + Recording GUI commands + Registrazione dei comandi d'interfaccia utente - Record as comment - Registra come commento + Record as comment + Registra come commento - Macro path - Percorso macro + Macro path + Percorso macro - General macro settings - + General macro settings + Impostazioni generali macro - Run macros in local environment - + Run macros in local environment + Esegui macro in ambiente locale - - + + Gui::Dialog::DlgSettingsUnits - Units - Unità + Units + Unità - Units settings - Impostazioni unità + Units settings + Impostazioni unità - Standard (mm/kg/s/degree) - Standard (mm/kg/s/gradi) + Standard (mm/kg/s/degree) + Standard (mm/kg/s/gradi) - MKS (m/kg/s/degree) - MKS (m/kg/s/gradi) + MKS (m/kg/s/degree) + MKS (m/kg/s/gradi) - Magnitude - Grandezza + Magnitude + Grandezza - Unit - Unità + Unit + Unità - User system: - Sistema utente: + User system: + Sistema utente: - Imperial (in/lb) - Imperiale (in/lb) + Imperial (in/lb) + Imperiale (in/lb) - - + + Gui::Dialog::DlgSettingsViewColor - Colors - Colori + Colors + Colori - Selection - Selezione + Selection + Selezione - Enable selection highlighting - Attiva l'evidenziamento di selezione + Enable selection highlighting + Attiva l'evidenziamento di selezione - Enable preselection highlighting - Attiva l'evidenziamento di preselezione + Enable preselection highlighting + Attiva l'evidenziamento di preselezione - Background color - Colore dello sfondo + Background color + Colore dello sfondo - Middle color - Colore centrale + Middle color + Colore centrale - Color gradient - Gradiente di colore + Color gradient + Gradiente di colore - Simple color - Colore semplice + Simple color + Colore semplice - Default colors - Colori predefiniti + Default colors + Colori predefiniti - Edited edge color - Colore degli spigoli modificati + Edited edge color + Colore degli spigoli modificati - Edited vertex color - Colore dei vertici modificati + Edited vertex color + Colore dei vertici modificati - Construction geometry - Geometria di costruzione + Construction geometry + Geometria di costruzione - Fully constrained geometry - Geometria interamente vincolata + Fully constrained geometry + Geometria interamente vincolata - The color of construction geometry in editmode - Il colore della geometria di costruzione in modalità modifica + The color of vertices being edited + Il colore dei vertici in fase di modifica - The color of fully constrained geometry in editmode - Il colore della geometria completamente vincolata in modalità modifica + The color of edges being edited + Il colore degli spigoli in fase di modifica - The color of vertices being edited - Il colore dei vertici in fase di modifica + The color of construction geometry in edit mode + Il colore della geometria di costruzione in modalità modifica - The color of edges being edited - Il colore degli spigoli in fase di modifica + The color of fully constrained geometry in edit mode + Il colore della geometria completamente vincolata in modalità modifica - The color of construction geometry in edit mode - + Cursor text color + Colore del cursore testo - The color of fully constrained geometry in edit mode - + Default shape color + Colore predefinito della forma - Cursor text color - + The default color for new shapes + Il colore predefinito per le nuove forme - Default shape color - + Default line width and color + Lo spessore e il colore predefiniti della linea - The default color for new shapes - + The default line color for new shapes + Il colore predefinito della linea per le nuove forme - Default line width and color - + The default line thickness for new shapes + Lo spessore predefinito della linea per le nuove forme - The default line color for new shapes - + px + px - - The default line thickness for new shapes - - - - px - - - - + + Gui::Dialog::DlgTipOfTheDay - Tip of the day - Consiglio del giorno + Tip of the day + Consiglio del giorno - <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> - <b><font face="Times New Roman"><font size="+3">Lo sapevi che...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Lo sapevi che...</font></font></b> - &Show tips at start up - &Mostra i consigli all'avvio + &Show tips at start up + &Mostra i consigli all'avvio - Alt+S - Alt+S + Alt+S + Alt+S - &Next Tip - &Prossimo consiglio + &Next Tip + &Prossimo consiglio - Alt+N - Alt+N + Alt+N + Alt+N - &Close - &Chiudi + &Close + &Chiudi - Alt+C - Alt+C + Alt+C + Alt+C - - + + - - + + Gui::Dialog::DlgTipOfTheDayImp - Download failed: %1 + Download failed: %1 - Download non riuscito: %1 + Download non riuscito: %1 - If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. - Se vuoi saperne di più su FreeCAD vai a %1 o premi Aiuto nel menu Aiuto. + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + Se vuoi saperne di più su FreeCAD vai a %1 o premi Aiuto nel menu Aiuto. - - + + Gui::Dialog::DockablePlacement - Placement - Posizionamento + Placement + Posizionamento - - + + Gui::Dialog::DownloadDialog - Canceled. - Annullato + Download + Download - Download - + Cancel + Annulla - Cancel - Annulla + Close + Chiudi - Close - Chiudi + There already exists a file called %1 in the current directory. Overwrite? + Esiste già un file chiamato %1 nella directory corrente. Si desidera sovrascrivere? - There already exists a file called %1 in the current directory. Overwrite? - + Unable to save the file %1: %2. + Impossibile salvare il file %1: %2. - Unable to save the file %1: %2. - + Downloading %1. + Download %1. - Downloading %1. - + Download canceled. + Download annullato. - Download canceled. - + Download failed: %1. + Download non riuscito: %1. - Download failed: %1. - Download non riuscito: %1. + Downloaded %1 to current directory. + Scaricato %1 nella directory corrente. - - Downloaded %1 to current directory. - - - - + + Gui::Dialog::IconDialog - Add icon - Aggiungi icona + Add icon + Aggiungi icona - - + + Gui::Dialog::InputVector - Input vector - Immetti vettore + Input vector + Immetti vettore - Vector - Vettore + Vector + Vettore - Z: - Z: + Z: + Z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - OK - OK + OK + OK - - + + Gui::Dialog::LicenseDialog - Copyright - + Copyright + Copyright - - + + Gui::Dialog::MouseButtons - Mouse buttons - Tasti del mouse + Mouse buttons + Tasti del mouse - Configuration - Configurazione + Configuration + Configurazione - Selection: - Selezione: + Selection: + Selezione: - Panning - Panoramica + Panning + Panoramica - Rotation: - Rotazione: + Rotation: + Rotazione: - Zooming: - Zoom: + Zooming: + Zoom: - - + + Gui::Dialog::ParameterGroup - Expand - Espandi + Expand + Espandi - Add sub-group - Aggiungi sottogruppo + Add sub-group + Aggiungi sottogruppo - Remove group - Rimuovi gruppo + Remove group + Rimuovi gruppo - Rename group - Rinomina gruppo + Rename group + Rinomina gruppo - Export parameter - Esporta parametro + Export parameter + Esporta parametro - Import parameter - Importa parametro + Import parameter + Importa parametro - Collapse - Riduci + Collapse + Riduci - Do really want to remove this parameter group? - Vuoi veramente rimuonere questo gruppo di parametri? + Do really want to remove this parameter group? + Vuoi veramente rimuonere questo gruppo di parametri? - Existing sub-group - Sottogruppo esistente + Existing sub-group + Sottogruppo esistente - The sub-group '%1' already exists. - Il sottogruppo '%1' esiste già. + The sub-group '%1' already exists. + Il sottogruppo '%1' esiste già. - Export parameter to file - Esporta il parametro in un file + Export parameter to file + Esporta il parametro in un file - XML (*.FCParam) - XML (*.FCParam) + XML (*.FCParam) + XML (*.FCParam) - Import parameter from file - Importa il parametro da un file + Import parameter from file + Importa il parametro da un file - Import Error - Errore durante l'importazione + Import Error + Errore durante l'importazione - Reading from '%1' failed. - Lettura da '%1' non riuscita. + Reading from '%1' failed. + Lettura da '%1' non riuscita. - - + + Gui::Dialog::ParameterValue - Change value - Cambia valore + Change value + Cambia valore - Remove key - Rimuovi la chiave + Remove key + Rimuovi la chiave - Rename key - Rinomina la chiave + Rename key + Rinomina la chiave - New - Nuovo + New + Nuovo - New string item - Nuovo elemento string + New string item + Nuovo elemento string - New float item - Nuovo elemento float + New float item + Nuovo elemento float - New integer item - Nuovo elemento integer + New integer item + Nuovo elemento integer - New unsigned item - Nuovo elemento unsigned + New unsigned item + Nuovo elemento unsigned - New Boolean item - Nuovo elemento boolean + New Boolean item + Nuovo elemento boolean - Existing item - Elemento esistente + Existing item + Elemento esistente - The item '%1' already exists. - L'elemento '%1' esiste già. + The item '%1' already exists. + L'elemento '%1' esiste già. - - + + Gui::Dialog::Placement - Placement - Posizionamento + Placement + Posizionamento - OK - OK + OK + OK - Translation: - Traslazione: + Translation: + Traslazione: - Z: - Z: + Z: + Z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - Rotation: - Rotazione: + Rotation: + Rotazione: - Angle: - Angolo: + Angle: + Angolo: - Axis: - Asse: + Axis: + Asse: - Center: - Centro: + Center: + Centro: - Pitch: - Beccheggio: + Pitch: + Beccheggio: - Roll: - Rollio: + Roll: + Rollio: - Yaw: - Imbardata: + Yaw: + Imbardata: - Rotation axis with angle - Rotation axis with angle + Rotation axis with angle + Asse di rotazione con angolo - Euler angles - Angoli di Eulero + Euler angles + Angoli di Eulero - Apply placement changes immediately - Applica immediatamente le modifiche di posizionamento + Apply placement changes immediately + Applica immediatamente le modifiche di posizionamento - Apply incremental changes to object placement - Applica le modifiche incrementali al posizionamento dell'oggetto + Apply incremental changes to object placement + Applica le modifiche incrementali al posizionamento dell'oggetto - Apply - Applica + Apply + Applica - Reset - Ripristina + Reset + Ripristina - Close - Chiudi + Close + Chiudi - - + + Gui::Dialog::PrintModel - Button - Pulsante + Button + Pulsante - Command - Comando + Command + Comando - - + + Gui::Dialog::SceneInspector - Dialog - Finestra di dialogo + Dialog + Finestra di dialogo - Close - Chiudi + Close + Chiudi - Refresh - Aggiorna + Refresh + Aggiorna - - + + Gui::Dialog::SceneModel - Inventor Tree - Albero Inventor + Inventor Tree + Albero Inventor - Nodes - Nodi + Nodes + Nodi - - + + Gui::Dialog::TextureMapping - Texture - Texture + Texture + Texture - Texture mapping - Mappatura texture + Texture mapping + Mappatura texture - Global - Globale + Global + Globale - Environment - Ambiente + Environment + Ambiente - Image files (%1) - File immagine (%1) + Image files (%1) + File immagine (%1) - No image - Nessuna immagine + No image + Nessuna immagine - The specified file is not a valid image file. - Il file specificato non è un file immagine valido. + The specified file is not a valid image file. + Il file specificato non è un file immagine valido. - No 3d view - Nessuna vista 3D + No 3d view + Nessuna vista 3D - No active 3d view found. - Nessuna vista 3D attiva trovata. + No active 3d view found. + Nessuna vista 3D attiva trovata. - - + + Gui::Dialog::Transform - Cancel - Annulla + Cancel + Annulla - Transform - Trasforma + Transform + Trasforma - - + + Gui::DlgTreeWidget - Dialog - Finestra di dialogo + Dialog + Finestra di dialogo - Items - Elementi + Items + Elementi - OK - OK + OK + OK - Cancel - Annulla + Cancel + Annulla - - + + - - + + Gui::DockWnd::CombiView - CombiView - Vista combinata + CombiView + Vista combinata - Project - Progetto + Project + Progetto - Tasks - Azioni + Tasks + Azioni - - + + Gui::DockWnd::HelpView - Previous - Precedente + Previous + Precedente - Next - Successivo + Next + Successivo - Home - Home + Home + Home - Open - Apri + Open + Apri - Open file - Apri file + Open file + Apri file - All HTML files (*.html *.htm) - Tutti i file HTML (*.html *.htm) + All HTML files (*.html *.htm) + Tutti i file HTML (*.html *.htm) - External browser - Browser esterno + External browser + Browser esterno - No external browser found. Specify in preferences, please - Nessun browser esterno trovato. Specificarlo nelle preferenze + No external browser found. Specify in preferences, please + Nessun browser esterno trovato. Specificarlo nelle preferenze - Starting of %1 failed - Avvio di %1 non riuscita + Starting of %1 failed + Avvio di %1 non riuscita - - + + Gui::DockWnd::PropertyDockView - Property View - Proprietà + Property View + Proprietà - - + + Gui::DockWnd::ReportOutput - Logging - Registro + Logging + Registro - Warning - Avviso + Warning + Avviso - Error - Errore + Error + Errore - Options - Opzioni + Options + Opzioni - Clear - Pulisci + Clear + Pulisci - Save As... - Salva con nome... + Save As... + Salva con nome... - Save Report Output - Salva report di output + Save Report Output + Salva report di output - Plain Text Files (*.txt *.log) - File di testo (*.txt *.log) + Plain Text Files (*.txt *.log) + File di testo (*.txt *.log) - Go to end - Vai alla fine + Go to end + Vai alla fine - Redirect Python output - Reindirizza l'output Python + Redirect Python output + Reindirizza l'output Python - Redirect Python errors - Reindirizza gli errori di Python + Redirect Python errors + Reindirizza gli errori di Python - - + + Gui::DockWnd::ReportView - Output - Output + Output + Output - Python console - Console Python + Python console + Console Python - - + + Gui::DockWnd::SelectionView - Property View - Proprietà + Property View + Proprietà - - + + Gui::DockWnd::TaskPanelView - Task View - Attività + Task View + Attività - - + + Gui::DockWnd::TextBrowser - Could not open file. - Impossibile aprire il file. + Could not open file. + Impossibile aprire il file. - You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. - Si è provato ad accedere all'indirizzo %1 che non è disponibile. Assicurarsi che quell'URL esista e provare a ricaricare la pagina. + You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. + Si è provato ad accedere all'indirizzo %1 che non è disponibile. Assicurarsi che quell'URL esista e provare a ricaricare la pagina. - Connecting to %1 - Connessione a %1 + Connecting to %1 + Connessione a %1 - Sending to %1 - Invio a %1 + Sending to %1 + Invio a %1 - Reading from %1 - Lettura da %1 + Reading from %1 + Lettura da %1 - Download failed: %1. - Download non riuscito: %1. + Download failed: %1. + Download non riuscito: %1. - Previous - Precedente + Previous + Precedente - Forward - Avanti + Forward + Avanti - Home - Home + Home + Home - Refresh - Aggiorna + Refresh + Aggiorna - Copy - Copia + Copy + Copia - Select all - Seleziona tutto + Select all + Seleziona tutto - No description for - Nessuna descrizione per + No description for + Nessuna descrizione per - - + + Gui::DocumentModel - Application - Applicazione + Application + Applicazione - Labels & Attributes - Etichette & Attributi + Labels & Attributes + Etichette & Attributi - - + + Gui::EditorView - Modified file - File modificato + Modified file + File modificato - %1. + %1. This has been modified outside of the source editor. Do you want to reload it? - %1. + %1. -Questo è stato modificato al di fuori dell'editor sorgente. Vuoi ricaricarlo? +Questo è stato modificato al di fuori dell'editor sorgente. Vuoi ricaricarlo? - Unsaved document - Documento non salvato + Unsaved document + Documento non salvato - The document has been modified. + The document has been modified. Do you want to save your changes? - Il documento è stato modificato. + Il documento è stato modificato. Si desidera salvare le modifiche? - FreeCAD macro (*.FCMacro);;Python (*.py) - Macro FreeCAD (*.FCMacro);;Python (*.py) + FreeCAD macro (*.FCMacro);;Python (*.py) + Macro FreeCAD (*.FCMacro);;Python (*.py) - Export PDF - Esporta in formato PDF + Export PDF + Esporta in formato PDF - PDF file (*.pdf) - File PDF (*.pdf) + PDF file (*.pdf) + File PDF (*.pdf) - untitled[*] - Senza titolo[*] + untitled[*] + Senza titolo[*] - - Editor - - Editor + - Editor + - Editor - %1 chars removed - %1 caratteri rimossi + %1 chars removed + %1 caratteri rimossi - %1 chars added - %1 caratteri aggiunti + %1 chars added + %1 caratteri aggiunti - Formatted - Formattato + Formatted + Formattato - - + + Gui::FileChooser - Select a file - Seleziona un file + Select a file + Seleziona un file - Select a directory - Seleziona una cartella + Select a directory + Seleziona una cartella - - + + Gui::FileDialog - Save as - Salva con nome + Save as + Salva con nome - Open - Apri + Open + Apri - - + + Gui::FileOptionsDialog - Extended - Esteso + Extended + Esteso - All files (*.*) - Tutti i file (*.*) + All files (*.*) + Tutti i file (*.*) - - + + Gui::Flag - Top left - In alto a sinistra + Top left + In alto a sinistra - Bottom left - In basso a sinistra + Bottom left + In basso a sinistra - Top right - In alto a destra + Top right + In alto a destra - Bottom right - In basso a destra + Bottom right + In basso a destra - Remove - Rimuovi + Remove + Rimuovi - - + + Gui::InventorNavigationStyle - Press CTRL and left mouse button - Premere CTRL e il tasto sinistro del mouse + Press CTRL and left mouse button + Premere CTRL e il tasto sinistro del mouse - Press middle mouse button - Premi il tasto centrale del mouse + Press middle mouse button + Premi il tasto centrale del mouse - Press left mouse button - Premi il tasto sinistro del mouse + Press left mouse button + Premi il tasto sinistro del mouse - Scroll middle mouse button - Scorri il tasto centrale del mouse + Scroll middle mouse button + Scorri il tasto centrale del mouse - - + + Gui::LocationDialog - Wrong direction - Direzione sbagliata + Wrong direction + Direzione sbagliata - Direction must not be the null vector - La direzione non può essere un vettore nullo + Direction must not be the null vector + La direzione non può essere un vettore nullo - X - X + X + X - Y - Y + Y + Y - Z - Z + Z + Z - User defined... - Definito dall'utente... + User defined... + Definito dall'utente... - - + + Gui::LocationWidget - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - Z: + Z: + Z: - Direction: - + Direction: + Direzione: - - + + Gui::MacroCommand - Macros - Macro + Macros + Macro - - + + Gui::MainWindow - Dimension - Dimensione + Dimension + Dimensione - Ready - Pronto + Ready + Pronto - Toggles this toolbar - Nascondi questa barra degli strumenti + Toggles this toolbar + Nascondi questa barra degli strumenti - Toggles this dockable window - Nascondi questa finestra + Toggles this dockable window + Nascondi questa finestra - Close All - Chiudi tutto + Close All + Chiudi tutto - - + + Gui::ManualAlignment - Manual alignment - + Manual alignment + Allineamento manuale - The alignment is already in progress. - + The alignment is already in progress. + L'allineamento è già in corso. - Alignment[*] - + Alignment[*] + Allineamento[*] - Please, select at least one point in the left and the right view - + Please, select at least one point in the left and the right view + Seleziona almeno un punt0 nelle viste di sinistra e destra - Please, select at least %1 points in the left and the right view - + Please, select at least %1 points in the left and the right view + Seleziona almeno %1 punti nelle viste di sinistra e destra - Please pick points in the left and right view - + Please pick points in the left and right view + Specificare i punti nelle viste di destra e sinistra - The alignment has finished - + The alignment has finished + L'allineamento è terminato - The alignment has been canceled - + The alignment has been canceled + L'allineamento è stato annullato - Too few points picked in the left view. At least %1 points are needed. - + Too few points picked in the left view. At least %1 points are needed. + I punti raccolti nella vista sinistra sono troppo pochi. Sono necessari almeno %1 punti. - Too few points picked in the right view. At least %1 points are needed. - + Too few points picked in the right view. At least %1 points are needed. + I punti raccolti nella vista destra sono troppo pochi. Sono necessari almeno %1 punti. - Different number of points picked in left and right view. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Diverso numero di punti specificati nella vista di destra e sinistra. +Nella vista sinistra sono stati specificati %1 punti, +nella vista destra sono stati specificati %2 punti. - Try to align group of views - + Try to align group of views + Prova ad allineare un gruppo di viste - The alignment failed. + The alignment failed. How do you want to proceed? - + L'allineamento non è riuscito. Come si desidera procedere? - Retry - + Retry + Riprova - Ignore - + Ignore + Ignora - Abort - + Abort + Annulla - Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + Diverso numero di punti specificati nella vista di destra e sinistra. Nella vista sinistra sono stati specificati %1 punti, nella vista destra sono stati specificati %2 punti. - Point picked at (%1,%2,%3) - + Point picked at (%1,%2,%3) + Punto selezianato a (%1,%2,%3) - No point was picked - + No point was picked + Nessun punto è stato selezionato - - + + Gui::NetworkRetriever - Download started... + Download started... - Download iniziato... + Download iniziato... - - + + Gui::ProgressBar - Remaining: %1 - Rimanente: %1 + Remaining: %1 + Rimanente: %1 - Aborting - Interrompere + Aborting + Interrompere - Do you really want to abort the operation? - Vuoi veramente interrompere l'operazione? + Do you really want to abort the operation? + Vuoi veramente interrompere l'operazione? - - + + Gui::ProgressDialog - Remaining: %1 - Rimanente: %1 + Remaining: %1 + Rimanente: %1 - Aborting - Interrompere + Aborting + Interrompere - Do you really want to abort the operation? - Vuoi veramente interrompere l'operazione? + Do you really want to abort the operation? + Vuoi veramente interrompere l'operazione? - - + + Gui::PropertyEditor::PropertyModel - Property - Proprietà + Property + Proprietà - Value - Valore + Value + Valore - - + + Gui::PropertyView - View - Vista + View + Vista - Data - Dati + Data + Dati - - + + Gui::PythonConsole - System exit - Uscita dal sistema + System exit + Uscita dal sistema - The application is still running. + The application is still running. Do you want to exit without saving your data? - L'applicazione è ancora in esecuzione. + L'applicazione è ancora in esecuzione. Vuoi uscire senza salvare i tuoi dati? - Python console - Console Python + Python console + Console Python - Unhandled PyCXX exception. - Eccezione PyCXX non gestibile. + Unhandled PyCXX exception. + Eccezione PyCXX non gestibile. - Unhandled FreeCAD exception. - Eccezione FreeCad non gestibile. + Unhandled FreeCAD exception. + Eccezione FreeCad non gestibile. - Unhandled unknown C++ exception. - Eccezione sconosciuta C++ non gestibile. + Unhandled unknown C++ exception. + Eccezione sconosciuta C++ non gestibile. - &Copy command - &Copia il comando + &Copy command + &Copia il comando - &Copy history - &Copia la storia + &Copy history + &Copia la storia - Save history as... - Salva cronologia come... + Save history as... + Salva cronologia come... - Insert file name... - Inserisci il nome del file... + Insert file name... + Inserisci il nome del file... - Save History - Salva cronologia + Save History + Salva cronologia - Macro Files (*.FCMacro *.py) - File Macro (*.FCMacro *.py) + Macro Files (*.FCMacro *.py) + File Macro (*.FCMacro *.py) - Insert file name - Inserisci il nome del file + Insert file name + Inserisci il nome del file - All Files (*.*) - Tutti i file (*.*) + All Files (*.*) + Tutti i file (*.*) - Python Input Dialog - Finestra di input Python + Python Input Dialog + Finestra di input Python - Unhandled std C++ exception. - Eccezione std C++ non gestibile. + Unhandled std C++ exception. + Eccezione std C++ non gestibile. - Word wrap - A capo automatico + Word wrap + A capo automatico - &Copy - &Copia + &Copy + &Copia - &Paste - &Incolla + &Paste + &Incolla - Select All - Seleziona tutto + Select All + Seleziona tutto - Clear console - + Clear console + Pulisci la console - - + + Gui::PythonEditor - Comment - Commento + Comment + Commento - Uncomment - Rimuovi commento + Uncomment + Rimuovi commento - - + + Gui::PythonInputField - OK - OK + OK + OK - Clear - Pulisci + Clear + Pulisci - - + + Gui::RecentFilesAction - Open file %1 - Apri file %1 + Open file %1 + Apri file %1 - File not found - File non trovato + File not found + File non trovato - The file '%1' cannot be opened. - Il file '%1' non può essere aperto. + The file '%1' cannot be opened. + Il file '%1' non può essere aperto. - - + + Gui::SelectModule - Select module - Seleziona il modulo + Select module + Seleziona il modulo - Open %1 as - Apri %1 come + Open %1 as + Apri %1 come - Select - Seleziona + Select + Seleziona - - + + Gui::StdCmdDescription - Help - Aiuto + Help + Aiuto - Des&cription - Des&crizione + Des&cription + Des&crizione - Long description of commands - Descrizione lunga dei comandi + Long description of commands + Descrizione lunga dei comandi - - + + Gui::StdCmdDownloadOnlineHelp - Help - Aiuto + Help + Aiuto - Download online help - Scarica l'aiuto in linea + Download online help + Scarica l'aiuto in linea - Download %1's online help - Scarica l'aiuto in linea di %1 + Download %1's online help + Scarica l'aiuto in linea di %1 - Non-existing directory - Cartella inesistente + Non-existing directory + Cartella inesistente - The directory '%1' does not exist. + The directory '%1' does not exist. Do you want to specify an existing directory? - La cartella '%1' non esiste. + La cartella '%1' non esiste. Vuoi specificare una cartella esistente? - Missing permission - Permesso mancante + Missing permission + Permesso mancante - You don't have write permission to '%1' + You don't have write permission to '%1' Do you want to specify another directory? - Non hai il permesso di scrittura in '%1' + Non hai il permesso di scrittura in '%1' -Vuoi specificare un'altra cartella? +Vuoi specificare un'altra cartella? - Stop downloading - Interrompi il download + Stop downloading + Interrompi il download - - + + Gui::StdCmdPythonHelp - Tools - Strumenti + Tools + Strumenti - Python Modules - Moduli Python + Python Modules + Moduli Python - Opens a browser to show the Python modules - Apre un browser per visualizzare i moduli Python + Opens a browser to show the Python modules + Apre un browser per visualizzare i moduli Python - - + + Gui::TaskBoxAngle - Angle - Angolo + Angle + Angolo - - + + Gui::TaskBoxPosition - Position - Posizione + Position + Posizione - - + + Gui::TaskView::TaskAppearance - Display mode: - Modo di visualizzazione: + Plot mode: + Modo di stampa: - Plot mode: - Modo di stampa: + Point size: + Dimensione punto: - Point size: - Dimensione punto: + Line width: + Spessore linea: - Line width: - Spessore linea: + Transparency: + Trasparenza: - Transparency: - Trasparenza: + Appearance + Aspetto - Appearance - Aspetto + Document window: + Finestra del documento: - - Document window: - - - - + + Gui::TaskView::TaskEditControl - Edit - Modifica + Edit + Modifica - - + + Gui::TaskView::TaskSelectLinkProperty - Appearance - Aspetto + Appearance + Aspetto - ... - ... + ... + ... - edit selection - Modifica selezione + edit selection + Modifica selezione - - + + Gui::TouchpadNavigationStyle - Press left mouse button - Premi il tasto sinistro del mouse + Press left mouse button + Premi il tasto sinistro del mouse - Press SHIFT button - + Press SHIFT button + Premere il tasto MAIUSC - Press ALT button - + Press ALT button + Premere il tasto ALT - Press PgUp/PgDown button - + Press PgUp/PgDown button + Premere il tasto PGSU/PGGIÙ - - - Gui::Translator - - English - Inglese - - - + + Gui::TreeDockWidget - Tree view - Albero + Tree view + Albero - - + + Gui::TreeWidget - Create group... - Crea gruppo... + Create group... + Crea gruppo... - Create a group - Crea un gruppo + Create a group + Crea un gruppo - Group - Gruppo + Group + Gruppo - Rename - Rinomina + Rename + Rinomina - Rename object - Rinomina oggetto + Rename object + Rinomina oggetto - Labels & Attributes - Etichette & Attributi + Labels & Attributes + Etichette & Attributi - Application - Applicazione + Application + Applicazione - Finish editing - Completa la modifica + Finish editing + Completa la modifica - Finish editing object - Completa la modifica dell'oggetto + Finish editing object + Completa la modifica dell'oggetto - Activate document - Attiva documento + Activate document + Attiva documento - Activate document %1 - Attiva il documento %1 + Activate document %1 + Attiva il documento %1 - - + + Gui::View3DInventor - Export PDF - Esporta in formato PDF + Export PDF + Esporta in formato PDF - PDF file (*.pdf) - File PDF (*.pdf) + PDF file (*.pdf) + File PDF (*.pdf) - - + + Gui::WorkbenchGroup - Select the '%1' workbench - Seleziona l'ambiente '%1' + Select the '%1' workbench + Seleziona l'ambiente '%1' - - + + Position - Form - Modulo + Form + Modulo - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - Z: + Z: + Z: - 0.1 mm - 0,1 mm + 0.1 mm + 0,1 mm - 0.5 mm - 0,5 mm + 0.5 mm + 0,5 mm - 1 mm - 1 mm + 1 mm + 1 mm - 2 mm - 2 mm + 2 mm + 2 mm - 5 mm - 5 mm + 5 mm + 5 mm - 10 mm - 10 mm + 10 mm + 10 mm - 20 mm - 20 mm + 20 mm + 20 mm - 50 mm - 50 mm + 50 mm + 50 mm - 100 mm - 100 mm + 100 mm + 100 mm - 200 mm - 200 mm + 200 mm + 200 mm - 500 mm - 500 mm + 500 mm + 500 mm - 1 m - 1 m + 1 m + 1 m - 2 m - 2 m + 2 m + 2 m - 5 m - 5 m + 5 m + 5 m - Grid Snap in - Snap griglia + Grid Snap in + Snap griglia - - + + QDockWidget - Tree view - Albero + Tree view + Albero - Property view - Proprietà + Property view + Proprietà - Selection view - Selezione + Selection view + Selezione - Report view - Report + Report view + Report - Task View - Attività + Task View + Attività - Combo View - Vista combinata + Combo View + Vista combinata - Toolbox - Casella degli strumenti + Toolbox + Casella degli strumenti - Python console - Console Python + Python console + Console Python - Display properties - Visualizza le proprietà + Display properties + Visualizza le proprietà - - + + QObject - General - Generale + General + Generale - Display - Visualizzazione + Display + Visualizzazione - Unknown filetype - Tipo di file sconosciuto + Unknown filetype + Tipo di file sconosciuto - Cannot open unknown filetype: %1 - Non è possibile aprire il tipo di file sconosciuto: %1 + Cannot open unknown filetype: %1 + Non è possibile aprire il tipo di file sconosciuto: %1 - Cannot save to unknown filetype: %1 - Non è possibile salvare il tipo di file sconosciuto: %1 + Cannot save to unknown filetype: %1 + Non è possibile salvare il tipo di file sconosciuto: %1 - Workbench failure - Avaria ambiente + Workbench failure + Avaria ambiente - %1 - %1 + %1 + %1 - Unable to launch Qt Assistant (%1) - Impossibile avviare l'assistente Qt (%1) + Unable to launch Qt Assistant (%1) + Impossibile avviare l'assistente Qt (%1) - Exception - Eccezione + Exception + Eccezione - Open document - Apri documento + Open document + Apri documento - Import file - Importa file + Import file + Importa file - Export file - Esporta file + Export file + Esporta file - Printing... - Stampa... + Printing... + Stampa... - Cannot load workbench - Impossibile caricare l'ambiente + Cannot load workbench + Impossibile caricare l'ambiente - A general error occurred while loading the workbench - Un errore generico è accaduto durante il caricamento dell'ambiente + A general error occurred while loading the workbench + Un errore generico è accaduto durante il caricamento dell'ambiente - File not found - File non trovato + Save views... + Salva le viste... - Cannot open file %1 - Impossibile aprire il file %1 + Load views... + Carica le viste... - Save views... - Salva le viste... + Freeze view + Congela la vista - Load views... - Carica le viste... + Clear views + Pulisci le viste - Freeze view - Congela la vista + Restore view &%1 + Ripristina la vista &%1 - Clear views - Pulisci le viste + Save frozen views + Salva le viste congelate - Restore view &%1 - Ripristina la vista &%1 + Frozen views (*.cam) + Viste congelate (*.cam) - Save frozen views - Salva le viste congelate + Restore views + Ripristina le viste - Frozen views (*.cam) - Viste congelate (*.cam) - - - Restore views - Ripristina le viste - - - Importing the restored views would clear the already stored views. + Importing the restored views would clear the already stored views. Do you want to continue? - L'importazione delle viste ripristinate cancellerà le viste salvate. + L'importazione delle viste ripristinate cancellerà le viste salvate. Vuoi continuare? - Restore frozen views - Ripristina le viste congelate + Restore frozen views + Ripristina le viste congelate - Cannot open file '%1'. - Non è possibile aprire il file '%1'. + Cannot open file '%1'. + Non è possibile aprire il file '%1'. - Docked - Agganciata + Docked + Agganciata - Undocked - Non agganciata + Undocked + Non agganciata - Fullscreen - Schermo intero + Fullscreen + Schermo intero - files - file + files + file - Save picture - Salva immagine + Save picture + Salva immagine - New sub-group - Nuovo sottogruppo + New sub-group + Nuovo sottogruppo - Enter the name: - Inserisci il nome: + Enter the name: + Inserisci il nome: - New text item - Nuovo elemento testo + New text item + Nuovo elemento testo - Enter your text: - Inserisci il testo: + Enter your text: + Inserisci il testo: - New integer item - Nuovo elemento integer + New integer item + Nuovo elemento integer - Enter your number: - Inserisci il numero: + Enter your number: + Inserisci il numero: - New unsigned item - Nuovo elemento unsigned + New unsigned item + Nuovo elemento unsigned - New float item - Nuovo elemento float + New float item + Nuovo elemento float - New Boolean item - Nuovo elemento boolean + New Boolean item + Nuovo elemento boolean - Choose an item: - scegli un elemento: + Choose an item: + scegli un elemento: - Rename group - Rinomina gruppo + Rename group + Rinomina gruppo - The group '%1' cannot be renamed. - Il gruppo '%1' non può essere rinominato + The group '%1' cannot be renamed. + Il gruppo '%1' non può essere rinominato - Existing group - Gruppo esistente + Existing group + Gruppo esistente - The group '%1' already exists. - Il gruppo '%1' esiste già. + The group '%1' already exists. + Il gruppo '%1' esiste già. - Change value - Cambia valore + Change value + Cambia valore - Save document under new filename... - Salva il documento con nome... + Save document under new filename... + Salva il documento con nome... - Saving aborted - Salvataggio annullato + Saving aborted + Salvataggio annullato - Unsaved document - Documento non salvato + Unsaved document + Documento non salvato - Save document before close? - Salvare il documento prima di chiudere? + Save document before close? + Salvare il documento prima di chiudere? - Save Macro - Salva macro + Save Macro + Salva macro - Finish - Termina + Finish + Termina - Clear - Pulisci + Clear + Pulisci - Cancel - Annulla + Cancel + Annulla - Inner - Interno + Inner + Interno - Outer - Esterno + Outer + Esterno - No Browser - Nessun Browser + No Browser + Nessun Browser - Unable to open your browser. + Unable to open your browser. Please open a browser window and type in: http://localhost:%1. - Impossibile aprire il browser. + Impossibile aprire il browser. Aprire una finestra browser e scrivere http://localhost:%1. - No Server - Nessun server + No Server + Nessun server - Unable to start the server to port %1: %2. - Impossibile avviare il server alla porta %1: %2. + Unable to start the server to port %1: %2. + Impossibile avviare il server alla porta %1: %2. - Unable to open your system browser. - Impossibile aprire il browser di sistema. + Unable to open your system browser. + Impossibile aprire il browser di sistema. - Options... - Opzioni... + Options... + Opzioni... - Out of memory - Memoria insufficiente + Out of memory + Memoria insufficiente - Not enough memory available to display the data. - Memoria disponibile insufficiente per visualizzare i dati. + Not enough memory available to display the data. + Memoria disponibile insufficiente per visualizzare i dati. - Cannot find file %1 - Impossibile trovare il file %1 + Cannot find file %1 + Impossibile trovare il file %1 - Cannot find file %1 neither in %2 nor in %3 - Impossibile trovare il file %1 nè in %2 nè in %3 + Cannot find file %1 neither in %2 nor in %3 + Impossibile trovare il file %1 nè in %2 nè in %3 - Save %1 Document - Salva il documento %1 + Save %1 Document + Salva il documento %1 - %1 document (*.FCStd) - Documento %1 (*.FCStd) + %1 document (*.FCStd) + Documento %1 (*.FCStd) - Save As - Salva con nome + Save As + Salva con nome - %1 already exists. + %1 already exists. Do you want to replace it? - % esiste già. + % esiste già. Vuoi sostituirlo? - Document not closable - Impossibile chiudere il documento + Document not closable + Impossibile chiudere il documento - The document is not closable for the moment. - Impossibile chiudere il documento al momento. + The document is not closable for the moment. + Impossibile chiudere il documento al momento. - No OpenGL - No OpenGL + No OpenGL + No OpenGL - This system does not support OpenGL - Questo sistema non supporta OpenGL + This system does not support OpenGL + Questo sistema non supporta OpenGL - Help - Aiuto + Help + Aiuto - Unable to load documentation. + Unable to load documentation. In order to load it Qt 4.4 or higher is required. - Impossibile caricare la documentazione. + Impossibile caricare la documentazione. Per poterla caricare Qt 4.4 o superiore è necessario. - %1 Help - %1 Aiuto + %1 Help + %1 Aiuto - Exporting PDF... - Esportazione PDF... + Exporting PDF... + Esportazione PDF... - Wrong selection - Selezione errata + Wrong selection + Selezione errata - Only one object selected. Please select two objects. + Only one object selected. Please select two objects. Be aware the point where you click matters. - un solo oggetto selezionato. Si prega di selezionare due oggetti. + un solo oggetto selezionato. Si prega di selezionare due oggetti. Prestare attenzione al punto dove si fa clic. - Please select two objects. + Please select two objects. Be aware the point where you click matters. - Si prega di selezionare due oggetti. + Si prega di selezionare due oggetti. Prestare attenzione al punto dove si fa clic. - New boolean item - Nuovo elemento booleano + New boolean item + Nuovo elemento booleano - Navigation styles - Stili di navigazione + Navigation styles + Stili di navigazione - %1 navigation - Navigazione %1 + %1 navigation + Navigazione %1 - Move annotation - Sposta annotazione + Move annotation + Sposta annotazione - Transform - Trasforma + Transform + Trasforma - The document is in editing mode and thus cannot be closed for the moment. + The document is in editing mode and thus cannot be closed for the moment. You either have to finish or cancel the editing in the task panel. - Il documento è in modalità modifica e quindi non può essere chiuso per il momento. E' necessario terminare o annullare la modifica nel pannello attività. + Il documento è in modalità modifica e quindi non può essere chiuso per il momento. E' necessario terminare o annullare la modifica nel pannello attività. - - + + StdBoxSelection - Standard-View - Vista standard + Standard-View + Vista standard - Box selection - + Box selection + Box di selezione - - + + StdCmdAbout - Help - Aiuto + Help + Aiuto - &About %1 - &Informazioni su %1 + &About %1 + &Informazioni su %1 - About %1 - Informazioni su %1 + About %1 + Informazioni su %1 - - + + StdCmdAboutQt - Help - Aiuto + Help + Aiuto - About &Qt - Informazioni su &Qt + About &Qt + Informazioni su &Qt - About Qt - Informazioni su Qt + About Qt + Informazioni su Qt - - + + StdCmdActivateNextWindow - Window - Finestra + Window + Finestra - Ne&xt - Pr&ossima + Ne&xt + Pr&ossima - Activate next window - Attiva la prossima finestra + Activate next window + Attiva la prossima finestra - - + + StdCmdActivatePrevWindow - Window - Finestra + Window + Finestra - Pre&vious - Pre&cedente + Pre&vious + Pre&cedente - Activate previous window - Attiva la precedente finestra + Activate previous window + Attiva la precedente finestra - - + + StdCmdAlignment - Edit - Modifica + Edit + Modifica - Alignment... - + Alignment... + Allineamento... - Align the selected objects - + Align the selected objects + Allinea gli oggetti selezionati - - + + StdCmdArrangeIcons - Window - Finestra + Window + Finestra - Arrange &Icons - Disponi &icone + Arrange &Icons + Disponi &icone - Arrange Icons - Disponi icone + Arrange Icons + Disponi icone - - + + StdCmdAxisCross - Standard-View - Vista standard + Standard-View + Vista standard - Toggle axis cross - Attiva/disattiva origine degli assi + Toggle axis cross + Attiva/disattiva origine degli assi - - + + StdCmdCascadeWindows - Window - Finestra + Window + Finestra - &Cascade - A &Cascata + &Cascade + A &Cascata - Tile pragmatic - Dividi pragmatico + Tile pragmatic + Dividi pragmatico - - + + StdCmdCloseActiveWindow - Window - Finestra + Window + Finestra - Cl&ose - Ch&iudi + Cl&ose + Ch&iudi - Close active window - Chiude la finestra attiva + Close active window + Chiude la finestra attiva - - + + StdCmdCloseAllWindows - Window - Finestra + Window + Finestra - Close Al&l - Chiudi tut&to + Close Al&l + Chiudi &tutto - Close all windows - Chiude tutte le finestre + Close all windows + Chiude tutte le finestre - - + + StdCmdCommandLine - Tools - Strumenti + Tools + Strumenti - Start command &line... - Inizia linea &di comando... + Start command &line... + Inizia &linea di comando... - Opens the command line in the console - Apre la linea di comando nella console + Opens the command line in the console + Apre la linea di comando nella console - - + + StdCmdCopy - Edit - Modifica + Edit + Modifica - C&opy - C&opia + C&opy + C&opia - Copy operation - Copia + Copy operation + Copia - - + + StdCmdCut - Edit - Modifica + Edit + Modifica - &Cut - &Taglia + &Cut + &Taglia - Cut out - Taglia + Cut out + Taglia - - - StdCmdDDuplicateSelection - - Edit - Modifica - - - Duplicate selection - Duplica la selezione - - - Put duplicates of the selected objects to the active document - Inserisce i duplicati degli oggetti selezionati nel documento attivo - - - + + StdCmdDelete - Edit - Modifica + Edit + Modifica - &Delete - &Elimina + &Delete + &Elimina - Deletes the selected objects - Elimina gli oggetti selezionati + Deletes the selected objects + Elimina gli oggetti selezionati - - + + StdCmdDemoMode - Standard-View - Vista standard + Standard-View + Vista standard - View turntable... - Visualizza rotazione oggetti... + View turntable... + Visualizza rotazione oggetti... - View turntable - Visualizza rotazione oggetti + View turntable + Visualizza rotazione oggetti - - + + StdCmdDlgCustomize - Tools - Strumenti + Tools + Strumenti - Cu&stomize... - Per&sonalizza... + Cu&stomize... + Per&sonalizza... - Customize toolbars and command bars - Personalizza le barre degli strumenti e di comando + Customize toolbars and command bars + Personalizza le barre degli strumenti e di comando - - + + StdCmdDlgMacroExecute - Macros ... - Macro... + Macros ... + Macro... - Opens a dialog to let you execute a recorded macro - Apre una finestra di dialogo per eseguire una macro registrata + Opens a dialog to let you execute a recorded macro + Apre una finestra di dialogo per eseguire una macro registrata - Macro - Macro + Macro + Macro - - + + StdCmdDlgMacroExecuteDirect - Macro - Macro + Macro + Macro - Execute macro - Esegui la macro + Execute macro + Esegui la macro - Execute the macro in the editor - Esegue la macro nell'editor + Execute the macro in the editor + Esegue la macro nell'editor - - + + StdCmdDlgMacroRecord - &Macro recording ... - Registra &Macro... + &Macro recording ... + Registra &Macro... - Opens a dialog to record a macro - Apre una finestra di dialogo per registrare una macro + Opens a dialog to record a macro + Apre una finestra di dialogo per registrare una macro - Macro - Macro + Macro + Macro - - + + StdCmdDlgParameter - Tools - Strumenti + Tools + Strumenti - E&dit parameters ... - Mo&difica parametri... + E&dit parameters ... + Mo&difica parametri... - Opens a Dialog to edit the parameters - Apre una finestra di dialogo per modificare i parametri + Opens a Dialog to edit the parameters + Apre una finestra di dialogo per modificare i parametri - - + + StdCmdDlgPreferences - Tools - Strumenti + Tools + Strumenti - &Preferences ... - &Preferenze... + &Preferences ... + &Preferenze... - Opens a Dialog to edit the preferences - Apre una finestra per modificare le preferenze + Opens a Dialog to edit the preferences + Apre una finestra per modificare le preferenze - - + + StdCmdDockViewMenu - View - Vista + View + Vista - Vie&ws - Vis&te + Vie&ws + Vis&te - Toggles this window - Attiva/disattiva questa finestra + Toggles this window + Attiva/disattiva questa finestra - - + + StdCmdDrawStyle - Standard-View - Vista standard + Standard-View + Vista standard - Draw style - Draw style + Draw style + Stile di disegno - - + + StdCmdDuplicateSelection - Edit - Modifica + Edit + Modifica - Duplicate selection - Duplica la selezione + Duplicate selection + Duplica la selezione - Put duplicates of the selected objects to the active document - Inserisce i duplicati degli oggetti selezionati nel documento attivo + Put duplicates of the selected objects to the active document + Inserisce i duplicati degli oggetti selezionati nel documento attivo - - + + StdCmdEdit - Edit - Modifica + Edit + Modifica - Toggle &Edit mode - + Toggle &Edit mode + Attiva/disattiva modalità &modifica - Toggles the selected object's edit mode - + Toggles the selected object's edit mode + Attiva/disattiva la modalità modifica per l'oggetto selezionato - Enters or leaves the selected object's edit mode - + Enters or leaves the selected object's edit mode + Entra o esce dalla modalità di modifica dell'oggetto selezionato - - + + StdCmdExport - File - File + File + File - &Export... - &Esporta... + &Export... + &Esporta... - Export an object in the active document - Esporta un oggetto nel documento attivo + Export an object in the active document + Esporta un oggetto nel documento attivo - Supported formats - Formati supportati + No selection + Nessuna selezione - No selection - + Please select first the objects you want to export. + Si prega di selezionare prima gli oggetti che si desidera esportare. - - Please select first the objects you want to export. - - - - + + StdCmdExportGraphviz - Tools - Strumenti + Tools + Strumenti - Dependency graph... - + Dependency graph... + Grafico delle dipendenze... - Show the dependency graph of the objects in the active document - + Show the dependency graph of the objects in the active document + Visualizza il grafico delle dipendenze degli oggetti nel documento attivo - - + + StdCmdFeatRecompute - File - File + File + File - &Recompute - &Ricalcola + &Recompute + &Ricalcola - Recompute feature or document - Ricalcola la feature o il documento + Recompute feature or document + Ricalcola la feature o il documento - - + + StdCmdFreeCADWebsite - Help - Aiuto + Help + Aiuto - FreeCAD Website - Sito FreeCAD + FreeCAD Website + Sito FreeCAD - The FreeCAD website - Il sito FreeCAD + The FreeCAD website + Il sito FreeCAD - - + + StdCmdFreezeViews - Standard-View - Vista standard + Standard-View + Vista standard - Freeze display - Congela la visualizzazione + Freeze display + Congela la visualizzazione - Freezes the current view position - Congela la posizione corrente della vista + Freezes the current view position + Congela la posizione corrente della vista - - + + StdCmdHideObjects - Standard-View - Vista standard + Standard-View + Vista standard - Hide all objects - Nascondi tutti gli oggetti + Hide all objects + Nascondi tutti gli oggetti - Hide all objects in the document - Nascondi tutti gli oggetti nel documento + Hide all objects in the document + Nascondi tutti gli oggetti nel documento - - + + StdCmdHideSelection - Standard-View - Vista standard + Standard-View + Vista standard - Hide selection - Nascondi la selezione + Hide selection + Nascondi la selezione - Hide all selected objects - Nascondi tutti gli oggetti selezionati + Hide all selected objects + Nascondi tutti gli oggetti selezionati - - + + StdCmdImport - File - File + File + File - &Import... - &Importa... + &Import... + &Importa... - Import a file in the active document - Importa un file nel documento attivo + Import a file in the active document + Importa un file nel documento attivo - Supported formats - Formati supportati + Supported formats + Formati supportati - All files (*.*) - Tutti i file (*.*) + All files (*.*) + Tutti i file (*.*) - - + + StdCmdMacroStartDebug - Macro - Macro + Macro + Macro - Debug macro - Debug macro + Debug macro + Debug macro - Start debugging of macro - Avvia il debug della macro + Start debugging of macro + Avvia il debug della macro - - + + StdCmdMacroStepOver - Macro - Macro + Macro + Macro - Step over - Passo successivo + Step over + Passo successivo - - + + StdCmdMacroStopDebug - Macro - Macro + Macro + Macro - Stop debugging - Interrompi il debug + Stop debugging + Interrompi il debug - Stop debugging of macro - Interrompe il debug della macro + Stop debugging of macro + Interrompe il debug della macro - - + + StdCmdMacroStopRecord - Macro - Macro + Macro + Macro - S&top macro recording - In&terrompi la registrazione della macro + S&top macro recording + In&terrompi la registrazione della macro - Stop the macro recording session - Interrompe la sessione di registrazione macro in corso + Stop the macro recording session + Interrompe la sessione di registrazione macro in corso - - + + StdCmdMeasureDistance - View - Vista + View + Vista - Measure distance - Misura la distanza + Measure distance + Misura la distanza - - + + StdCmdMeasurementSimple - Tools - Strumenti + Tools + Strumenti - Mesure distance - Misura la distanza + Measures distance between two selected objects + Misura la distanza tra due oggetti selezionati - Measures distance between two selected objects - Misura la distanza tra due oggetti selezionati + Measure distance + Misura la distanza - - Measure distance - Misura la distanza - - - + + StdCmdMergeProjects - File - File + File + File - Merge project... - Unisci progetto... + Merge project... + Unisci progetto... - Merge project - Unisce un progetto esistente + Merge project + Unisce un progetto esistente - %1 document (*.fcstd) - %1 documento (*.fcstd) + %1 document (*.fcstd) + %1 documento (*.fcstd) - Cannot merge project with itself. - Non è possibile unire il progetto con se stesso. + Cannot merge project with itself. + Non è possibile unire il progetto con se stesso. - - + + StdCmdNew - File - File + File + File - &New - &Nuovo + &New + &Nuovo - Create a new empty document - Crea un documento vuoto + Create a new empty document + Crea un documento vuoto - - + + StdCmdOnlineHelp - Help - Aiuto + Help + Aiuto - Show help to the application - Mostra l'aiuto dell'applicazione + Show help to the application + Mostra l'aiuto dell'applicazione - - - StdCmdOnlineHelpPython - - Help - Aiuto - - - Python Manuals - Manuali Python - - - Show the Python documentation - Mostra la documentazione Python - - - + + StdCmdOnlineHelpWebsite - Help - Aiuto + Help + Aiuto - Help Website - Sito d'Aiuto + Help Website + Sito d'Aiuto - The website where the help is maintained - Il sito web in cui viene mantenuto l'aiuto + The website where the help is maintained + Il sito web in cui viene mantenuto l'aiuto - - + + StdCmdOpen - File - File + File + File - &Open... - &Apri... + &Open... + &Apri... - Open a document or import files - Apre un documento o importa un file + Open a document or import files + Apre un documento o importa un file - Supported formats - Formati supportati + Supported formats + Formati supportati - All files (*.*) - Tutti i file (*.*) + All files (*.*) + Tutti i file (*.*) - - + + StdCmdPaste - Edit - Modifica + Edit + Modifica - &Paste - &Incolla + &Paste + &Incolla - Paste operation - Incolla + Paste operation + Incolla - - + + StdCmdPlacement - Edit - Modifica + Edit + Modifica - Placement... - Posizionamento... + Placement... + Posizionamento... - Place the selected objects - Posiziona gli oggetti selezionati + Place the selected objects + Posiziona gli oggetti selezionati - - + + StdCmdPrint - File - File + File + File - &Print... - &Stampa... + &Print... + &Stampa... - Print the document - Stampa il documento + Print the document + Stampa il documento - - + + StdCmdPrintPdf - File - File + File + File - &Export PDF... - &Esporta PDF... + &Export PDF... + &Esporta PDF... - Export the document as PDF - Esporta il documento come PDF + Export the document as PDF + Esporta il documento come PDF - - + + StdCmdPrintPreview - File - File + File + File - &Print preview... - Anteprima &di stampa... + &Print preview... + Anteprima &di stampa... - Print the document - Stampa il documento + Print the document + Stampa il documento - Print preview - Anteprima di stampa + Print preview + Anteprima di stampa - - + + StdCmdProjectInfo - File - File + File + File - Project i&nformation... - I&nformazioni del progetto... + Project i&nformation... + I&nformazioni del progetto... - Show details of the currently active project - Mostra i dettagli del progetto attualmente attivo + Show details of the currently active project + Mostra i dettagli del progetto attualmente attivo - - + + StdCmdProjectUtil - Tools - Strumenti + Tools + Strumenti - Project utility... - Utilità di progetto... + Project utility... + Utilità di progetto... - Utility to extract or create project files - Utilità per estrarre o creare file di progetto + Utility to extract or create project files + Utilità per estrarre o creare file di progetto - - + + StdCmdPythonWebsite - Help - Aiuto + Help + Aiuto - Python Website - Sito Python + Python Website + Sito Python - The official Python website - Il sito ufficiale Python + The official Python website + Il sito ufficiale Python - - + + StdCmdQuit - File - File + File + File - E&xit - E&sci + E&xit + E&sci - Quits the application - Esce dal'applicazione + Quits the application + Esce dal'applicazione - - + + StdCmdRandomColor - File - File + File + File - Random color - Colore casuale + Random color + Colore casuale - - + + StdCmdRecentFiles - File - File + File + File - Recent files - File recenti + Recent files + File recenti - Recent file list - Lista dei file recenti + Recent file list + Lista dei file recenti - - + + StdCmdRedo - Edit - Modifica + Edit + Modifica - &Redo - &Ripeti + &Redo + &Ripeti - Redoes a previously undone action - Ripete un'operazione precedentemente annullata + Redoes a previously undone action + Ripete un'operazione precedentemente annullata - - + + StdCmdRefresh - Edit - Modifica + Edit + Modifica - &Refresh - &Aggiorna + &Refresh + &Aggiorna - Recomputes the current active document - Ricalcola il documento attivo + Recomputes the current active document + Ricalcola il documento attivo - - + + StdCmdSave - File - File + File + File - &Save - &Salva + &Save + &Salva - Save the active document - Salva il documento attivo + Save the active document + Salva il documento attivo - - + + StdCmdSaveAs - File - File + File + File - Save &As... - Sa&lva con nome... + Save &As... + S&alva con nome... - Save the active document under a new file name - Salva il documento attivo in un nuovo file + Save the active document under a new file name + Salva il documento attivo in un nuovo file - - + + StdCmdSceneInspector - Tools - Strumenti + Tools + Strumenti - Scene inspector... - Ispettore di scena... + Scene inspector... + Ispettore di scena... - Scene inspector - Ispettore di scena + Scene inspector + Ispettore di scena - - + + StdCmdSelectAll - Edit - Modifica + Edit + Modifica - Select &All - Seleziona &tutto + Select &All + Seleziona &tutto - Select all - Seleziona tutto + Select all + Seleziona tutto - - + + StdCmdSetAppearance - Standard-View - Vista standard + Standard-View + Vista standard - Appearance... - Aspetto... + Appearance... + Aspetto... - Sets the display properties of the selected object - Imposta le proprietà di visualizzazione dell'oggetto selezionato + Sets the display properties of the selected object + Imposta le proprietà di visualizzazione dell'oggetto selezionato - - + + StdCmdShowObjects - Standard-View - Vista standard + Standard-View + Vista standard - Show all objects - Mostra tutti gli oggetti + Show all objects + Mostra tutti gli oggetti - Show all objects in the document - Mostra tutti gli oggetti nel documento + Show all objects in the document + Mostra tutti gli oggetti nel documento - - + + StdCmdShowSelection - Standard-View - Vista standard + Standard-View + Vista standard - Show selection - Mostra la selezione + Show selection + Mostra la selezione - Show all selected objects - Mostra tutti gli oggetti selezionati + Show all selected objects + Mostra tutti gli oggetti selezionati - - + + StdCmdStatusBar - View - Vista + View + Vista - Status bar - Barra di stato + Status bar + Barra di stato - Toggles the status bar - Attiva/disattiva la barra di stato + Toggles the status bar + Attiva/disattiva la barra di stato - - + + StdCmdTextureMapping - Tools - Strumenti + Tools + Strumenti - Texture mapping... - Mappatura texture... + Texture mapping... + Mappatura texture... - Texture mapping - Mappatura texture + Texture mapping + Mappatura texture - - + + StdCmdTileWindows - Window - Finestra + Window + Finestra - &Tile - &Affianca + &Tile + &Affianca - Tile the windows - Affianca le finestre + Tile the windows + Affianca le finestre - - + + StdCmdToggleBreakpoint - Macro - Macro + Macro + Macro - Toggle breakpoint - Attiva/disattiva punto di interruzione + Toggle breakpoint + Attiva/disattiva punto di interruzione - - + + StdCmdToggleClipPlane - Standard-View - Vista standard + Standard-View + Vista standard - Clipping plane - Piano di sezione + Clipping plane + Piano di taglio - Toggles clipping plane for active view - Attiva/disattiva il piano di taglio per la vista attiva + Toggles clipping plane for active view + Attiva/disattiva il piano di taglio per la vista attiva - - + + StdCmdToggleNavigation - Standard-View - Vista standard + Standard-View + Vista standard - Toggle navigation/Edit mode - Attiva/Disattiva modalità di spostamento o modifica + Toggle navigation/Edit mode + Attiva/Disattiva modalità di spostamento o modifica - Toggle between navigation and edit mode - Alterna tra la modalità di modifica e navigazione + Toggle between navigation and edit mode + Alterna tra la modalità di modifica e navigazione - - + + StdCmdToggleObjects - Standard-View - Vista standard + Standard-View + Vista standard - Toggle all objects - Attiva/disattiva tutti gli oggetti + Toggle all objects + Attiva/disattiva tutti gli oggetti - Toggles visibility of all objects in the active document - Nascondi tutti gli oggetti nel documento attivo + Toggles visibility of all objects in the active document + Nascondi tutti gli oggetti nel documento attivo - - + + StdCmdToggleSelectability - Standard-View - Vista standard + Standard-View + Vista standard - Toggle selectability - Attiva/disattiva selezionabilità + Toggle selectability + Attiva/disattiva selezionabilità - Toggles the property of the objects to get selected in the 3D-View - Attiva o disattiva la proprietà degli oggetti di essere selezionati nella vista 3D + Toggles the property of the objects to get selected in the 3D-View + Attiva o disattiva la proprietà degli oggetti di essere selezionati nella vista 3D - - + + StdCmdToggleVisibility - Standard-View - Vista standard + Standard-View + Vista standard - Toggle visibility - Nascondi + Toggle visibility + Nascondi - Toggles visibility - Attiva/disattiva la visibilità + Toggles visibility + Attiva/disattiva la visibilità - - + + StdCmdToolBarMenu - View - Vista + View + Vista - Tool&bars - &Barre degli strumenti + Tool&bars + &Barre degli strumenti - Toggles this window - Attiva/disattiva questa finestra + Toggles this window + Attiva/disattiva questa finestra - - + + StdCmdTransform - Edit - Modifica + Edit + Modifica - Transform... - Trasforma... + Transform... + Trasforma... - Transform the geometry of selected objects - Trasforma la geometria degli oggetti selezionati + Transform the geometry of selected objects + Trasforma la geometria degli oggetti selezionati - - + + StdCmdTreeSelection - View - Vista + View + Vista - Go to selection - Vai alla selezione + Go to selection + Vai alla selezione - Scroll to first selected item - Scorri fino al primo elemento selezionato + Scroll to first selected item + Scorri fino al primo elemento selezionato - - + + StdCmdUndo - Edit - Modifica + Edit + Modifica - &Undo - &Annulla + &Undo + &Annulla - Undo exactly one action - Annulla l'ultima azione eseguita + Undo exactly one action + Annulla l'ultima azione eseguita - - + + StdCmdUserInterface - View - Vista + View + Vista - Dock views - Aggancia le viste + Dock views + Aggancia le viste - Dock all top-level views - Aggancia tulle le viste di primo livello + Dock all top-level views + Aggancia tulle le viste di primo livello - - + + StdCmdViewAxo - Standard-View - Vista standard + Standard-View + Vista standard - Axometric - Assonometrica + Axometric + Assonometrica - Set to axometric view - Imposta la vista assonometrica + Set to axometric view + Imposta la vista assonometrica - - + + StdCmdViewBottom - Standard-View - Vista standard + Standard-View + Vista standard - Bottom - Dal basso + Bottom + Dal basso - Set to bottom view - Imposta la vista dal basso + Set to bottom view + Imposta la vista dal basso - - + + StdCmdViewCreate - Standard-View - Vista standard + Standard-View + Vista standard - Create new view - Crea una nuova vista + Create new view + Crea una nuova vista - Creates a new view window for the active document - Crea una vista in una nuova finestra per il documento attivo + Creates a new view window for the active document + Crea una vista in una nuova finestra per il documento attivo - - + + StdCmdViewExample1 - Standard-View - Vista standard + Standard-View + Vista standard - Inventor example #1 - Esempio Inventor #1 + Inventor example #1 + Esempio Inventor #1 - Shows a 3D texture with manipulator - Mostra una texture 3D con il manipolatore + Shows a 3D texture with manipulator + Mostra una texture 3D con il manipolatore - - + + StdCmdViewExample2 - Standard-View - Vista standard + Standard-View + Vista standard - Inventor example #2 - Esempio Inventor #2 + Inventor example #2 + Esempio Inventor #2 - Shows spheres and drag-lights - Mostra le sfere con scia di luce + Shows spheres and drag-lights + Mostra le sfere con scia di luce - - + + StdCmdViewExample3 - Standard-View - Vista standard + Standard-View + Vista standard - Inventor example #3 - Esempio Inventor #3 + Inventor example #3 + Esempio Inventor #3 - Shows a animated texture - Mostra una texture animata + Shows a animated texture + Mostra una texture animata - - + + StdCmdViewFitAll - Standard-View - Vista standard + Standard-View + Vista standard - Fit all - Visualizza tutto + Fit all + Visualizza tutto - Fits the whole content on the screen - Visualizza tutto il contenuto nello schermo + Fits the whole content on the screen + Visualizza tutto il contenuto nello schermo - - + + StdCmdViewFitSelection - Standard-View - Vista standard + Standard-View + Vista standard - Fit selection - Visualizza la selezione + Fit selection + Visualizza la selezione - Fits the selected content on the screen - Visualizza il contenuto selezionato sullo schermo + Fits the selected content on the screen + Visualizza il contenuto selezionato sullo schermo - - + + StdCmdViewFront - Standard-View - Vista standard + Standard-View + Vista standard - Front - Di fronte + Front + Di fronte - Set to front view - Imposta la vista di fronte + Set to front view + Imposta la vista di fronte - - + + StdCmdViewIvIssueCamPos - Standard-View - Vista standard + Standard-View + Vista standard - Issue camera position - Pubblica la posizione della camera + Issue camera position + Pubblica la posizione della camera - Issue the camera position to the console and to a macro, to easily recall this position - Pubblica la posizione della camera nella console e nella macro, per facilitare il richiamo di questa posizione + Issue the camera position to the console and to a macro, to easily recall this position + Pubblica la posizione della camera nella console e nella macro, per facilitare il richiamo di questa posizione - - + + StdCmdViewIvStereoInterleavedColumns - Standard-View - Vista standard + Standard-View + Vista standard - Stereo Interleaved Columns - Stereo a colonne interlacciate + Stereo Interleaved Columns + Stereo a colonne interlacciate - Switch stereo viewing to Interleaved Columns - Passa alla visualizzazione stereo a colonne interlacciate + Switch stereo viewing to Interleaved Columns + Passa alla visualizzazione stereo a colonne interlacciate - - + + StdCmdViewIvStereoInterleavedRows - Standard-View - Vista standard + Standard-View + Vista standard - Stereo Interleaved Rows - Stereo a righe interlacciate + Stereo Interleaved Rows + Stereo a righe interlacciate - Switch stereo viewing to Interleaved Rows - Passa alla visualizzazione stereo a righe interlacciate + Switch stereo viewing to Interleaved Rows + Passa alla visualizzazione stereo a righe interlacciate - - + + StdCmdViewIvStereoOff - Standard-View - Vista standard + Standard-View + Vista standard - Stereo Off - Stereo Off + Stereo Off + Stereo Off - Switch stereo viewing off - Disattiva la visualizzazione stereo + Switch stereo viewing off + Disattiva la visualizzazione stereo - - + + StdCmdViewIvStereoQuadBuff - Standard-View - Vista standard + Standard-View + Vista standard - Stereo quad buffer - Stereo quad buffer + Stereo quad buffer + Stereo quad buffer - Switch stereo viewing to quad buffer - Passa alla visualizzazione stereo a quad buffer + Switch stereo viewing to quad buffer + Passa alla visualizzazione stereo a quad buffer - - + + StdCmdViewIvStereoRedGreen - Standard-View - Vista standard + Standard-View + Vista standard - Stereo red/green - Stereo rosso/verde + Stereo red/green + Stereo rosso/verde - Switch stereo viewing to red/green - Passa alla visualizzazione stereo rosso/verde + Switch stereo viewing to red/green + Passa alla visualizzazione stereo rosso/verde - - + + StdCmdViewLeft - Standard-View - Vista standard + Standard-View + Vista standard - Left - Da sinistra + Left + Da sinistra - Set to left view - Imposta la vista da sinistra + Set to left view + Imposta la vista da sinistra - - + + StdCmdViewRear - Standard-View - Vista standard + Standard-View + Vista standard - Rear - Da dietro + Rear + Da dietro - Set to rear view - Imposta la vista da dietro + Set to rear view + Imposta la vista da dietro - - + + StdCmdViewRight - Standard-View - Vista standard + Standard-View + Vista standard - Right - Destra + Right + Destra - Set to right view - Imposta la vista da destra + Set to right view + Imposta la vista da destra - - + + StdCmdViewRotateLeft - Standard-View - Vista standard + Standard-View + Vista standard - Rotate Left - + Rotate Left + Ruota verso sinistra - Rotate the view by 90° counter-clockwise - + Rotate the view by 90° counter-clockwise + Ruota la vista di 90° in senso antiorario - - + + StdCmdViewRotateRight - Standard-View - Vista standard + Standard-View + Vista standard - Rotate Right - + Rotate Right + Ruota verso destra - Rotate the view by 90° clockwise - + Rotate the view by 90° clockwise + Ruota la vista di 90° in senso orario - - + + StdCmdViewTop - Standard-View - Vista standard + Standard-View + Vista standard - Top - Dall'alto + Top + Dall'alto - Set to top view - Imposta la vista dall'alto + Set to top view + Imposta la vista dall'alto - - + + StdCmdWhatsThis - Help - Aiuto + Help + Aiuto - &What's This? - &Cos'è questo? + &What's This? + &Cos'è questo? - What's This - Cos'è questo + What's This + Cos'è questo - - + + StdCmdWindows - Window - Finestra + Window + Finestra - &Windows... - &Finestre... + &Windows... + &Finestre... - Windows list - Lista delle finestre + Windows list + Lista delle finestre - - + + StdCmdWindowsMenu - Window - Finestra + Window + Finestra - Activates this window - Attiva questa finestra + Activates this window + Attiva questa finestra - - + + StdCmdWorkbench - View - Vista + View + Vista - Workbench - Ambiente + Workbench + Ambiente - Switch between workbenches - Passa da un ambiente all'altro + Switch between workbenches + Passa da un ambiente all'altro - - + + StdOrthographicCamera - Standard-View - Vista standard + Standard-View + Vista standard - Orthographic view - Vista ortografica + Orthographic view + Vista ortografica - Switches to orthographic view mode - Passa al modo di vista ortografico + Switches to orthographic view mode + Passa al modo di vista ortografico - - + + StdPerspectiveCamera - Standard-View - Vista standard + Standard-View + Vista standard - Perspective view - Vista in prospettiva + Perspective view + Vista in prospettiva - Switches to perspective view mode - Passa al modo di vista in prospettiva + Switches to perspective view mode + Passa al modo di vista in prospettiva - - + + StdViewBoxZoom - Standard-View - Vista standard + Standard-View + Vista standard - Box zoom - Zoom finestra + Box zoom + Zoom finestra - - + + StdViewDockUndockFullscreen - Standard-View - Vista standard + Standard-View + Vista standard - Document window - Finestra del documento + Document window + Finestra del documento - Display the active view either in fullscreen, in undocked or docked mode - Visualizza la vista attiva a tutto schermo, in modalità agganciata o non agganciata + Display the active view either in fullscreen, in undocked or docked mode + Visualizza la vista attiva a tutto schermo, in modalità agganciata o non agganciata - - + + StdViewScreenShot - Standard-View - Vista standard + Standard-View + Vista standard - Save picture... - Salva immagine... + Save picture... + Salva immagine... - Creates a screenshot of the active view - Crea una istantanea della vista attiva + Creates a screenshot of the active view + Crea una istantanea della vista attiva - - + + StdViewZoomIn - Standard-View - Vista standard + Standard-View + Vista standard - Zoom In - Zoom in + Zoom In + Zoom in - - + + StdViewZoomOut - Standard-View - Vista standard + Standard-View + Vista standard - Zoom Out - Zoom out + Zoom Out + Zoom out - - + + Std_DrawStyle - As is - As is + As is + Come è - Normal mode - Normal mode + Normal mode + Modalità normale - Wireframe - Wireframe + Wireframe + Wireframe - Wireframe mode - Wireframe mode + Wireframe mode + Modalità wireframe - - + + Std_ExportGraphviz - Graphviz not found - + Graphviz not found + Graphviz non trovato - Graphviz couldn't be found on your system. -Do you want to specify its installation path if it's already installed? - + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + Graphviz non può essere trovato sul vostro sistema. +Si vuole specificare il percorso di installazione se è già installato? - Graphviz installation path - + Graphviz installation path + Percorso di installazione di Graphviz - Dependency graph - + Dependency graph + Grafico delle dipendenze - Graphviz failed - + Graphviz failed + Graphviz ha fallito - Graphviz failed to create an image file - + Graphviz failed to create an image file + Graphviz non è riuscito a creare un file immagine - - + + Workbench - &File - &File + &File + &File - &Edit - &Modifica + &Edit + &Modifica - Standard views - Viste standard + Standard views + Viste standard - &Stereo - &Stereo + &Stereo + &Stereo - &Zoom - &Zoom + &Zoom + &Zoom - Visibility - Visibilità + Visibility + Visibilità - &View - &Visualizza + &View + &Visualizza - &Tools - &Strumenti + &Tools + &Strumenti - &Macro - &Macro + &Macro + &Macro - &Windows - &Finestre + &Windows + &Finestre - &On-line help - &Aiuto in linea + &On-line help + &Aiuto in linea - &Help - &Aiuto + &Help + &Aiuto - File - File + File + File - Macro - Macro + Macro + Macro - View - Vista + View + Vista - Special Ops - Operazioni speciali + Special Ops + Operazioni speciali - - + + testClass - test - test + test + test - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Creato per Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Creato per Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - Choose the style of the Task Panel - Seleziona lo stile del riquadro attività + Choose the style of the Task Panel + Seleziona lo stile del riquadro attività - Default - Normale + Default + Normale - Windows XP - Windows XP + Windows XP + Windows XP - + diff --git a/src/Gui/Language/FreeCAD_ja.qm b/src/Gui/Language/FreeCAD_ja.qm index a7354e732..4e8a2becf 100644 Binary files a/src/Gui/Language/FreeCAD_ja.qm and b/src/Gui/Language/FreeCAD_ja.qm differ diff --git a/src/Gui/Language/FreeCAD_ja.ts b/src/Gui/Language/FreeCAD_ja.ts index 848a23cbf..62b324982 100644 --- a/src/Gui/Language/FreeCAD_ja.ts +++ b/src/Gui/Language/FreeCAD_ja.ts @@ -1,5908 +1,5838 @@ - - + + Angle - Form - Form + Form + Form - A: - A: + A: + A: - B: - B: + B: + B: - C: - C: + C: + C: - Angle Snap - 角度スナップ + Angle Snap + 角度スナップ - - 1 ° - 1 ° + + 1 ° + 1 ° - - 2 ° - 2 ° + + 2 ° + 2 ° - - 5 ° - 5 ° + + 5 ° + 5 ° - - 10 ° - 10 ° + + 10 ° + 10 ° - - 20 ° - 20 ° + + 20 ° + 20 ° - - 45 ° - 45 ° + + 45 ° + 45 ° - - 90 ° - 90 ° + + 90 ° + 90 ° - - 180 ° - 180 ° + + 180 ° + 180 ° - - + + Gui::AccelLineEdit - none - なし + none + なし - - + + Gui::ActionSelector - Available: - + Available: + Available: - Selected: - + Selected: + Selected: - Add - 追加 + Add + 追加 - Remove - 削除 + Remove + 削除 - Move up - 上へ移動 + Move up + 上へ移動 - Move down - 下へ移動 + Move down + 下へ移動 - - + + Gui::AlignmentView - Movable object - + Movable object + Movable object - Fixed object - + Fixed object + Fixed object - - + + Gui::BlenderNavigationStyle - Press left mouse button - マウスの左ボタンを押す + Press left mouse button + マウスの左ボタンを押す - Press SHIFT and middle mouse button - SHIFTとマウスの中央ボタンを押してください + Press SHIFT and middle mouse button + SHIFTとマウスの中央ボタンを押してください - Press middle mouse button - マウスの中央のボタンを押す + Press middle mouse button + マウスの中央のボタンを押す - Scroll middle mouse button - マウスの中央ボタンをスクロールする + Scroll middle mouse button + マウスの中央ボタンをスクロールする - - + + Gui::CADNavigationStyle - Press left mouse button - マウスの左ボタンを押す + Press left mouse button + マウスの左ボタンを押す - Press middle mouse button - マウスの中央のボタンを押す + Press middle mouse button + マウスの中央のボタンを押す - Press left and middle mouse button - マウスの左と中央のボタンを押す + Press left and middle mouse button + マウスの左と中央のボタンを押す - Scroll middle mouse button - マウスの中央ボタンをスクロールする + Scroll middle mouse button + マウスの中央ボタンをスクロールする - - + + Gui::Command - Standard - 標準 + Standard + 標準 - - + + Gui::ContainerDialog - &OK - OK + &OK + &OK - &Cancel - キャンセル + &Cancel + キャンセル(&C) - - + + Gui::ControlSingleton - Task panel - タスクパネル + Task panel + タスクパネル - - + + Gui::Dialog::AboutApplication - About - このプログラムについて + About + このプログラムについて - Revision number - リビジョン番号 + Revision number + リビジョン番号 - Version - バージョン + Version + バージョン - OK - OK + OK + OK - - + + - Release date - 公開日 + Release date + リリース日 - Platform - プラットフォーム + Platform + プラットフォーム - License... - ライセンス... + License... + ライセンス... - Copy to clipboard - + Copy to clipboard + Copy to clipboard - - + + Gui::Dialog::ButtonModel - Button %1 - Button %1 + Button %1 + Button %1 - Out Of Range - 範囲外 + Out Of Range + 範囲外 - - + + Gui::Dialog::CommandModel - Commands - コマンド + Commands + コマンド - - + + Gui::Dialog::DemoMode - View Turntable - View Turntable + View Turntable + View Turntable - Speed - スピード + Speed + スピード - Maximum - 最大値 + Maximum + 最大値 - Minimum - 最小値 + Minimum + 最小値 - Fullscreen - 全画面表示 + Fullscreen + 全画面表示 - Enable timer - タイマーを有効にします。 + Enable timer + タイマーを有効にします。 - s - s + s + s - Angle - Angle - - - 90° - 90° - - - -90° - -90° + Angle + 角度 - Play - Play + 90° + 90° - Stop - 停止 + -90° + -90° - Close - 閉じる + Play + Play - - + + Stop + 停止 + + + Close + 閉じる + + + Gui::Dialog::DlgActivateWindow - Choose Window - ウィンドウを選択します。 + Choose Window + ウィンドウを選択します。 - &Activate - 有効にする + &Activate + 有効にする(&A) - Alt+A - [Alt] + A + Alt+A + Alt+A - &Cancel - キャンセル + &Cancel + キャンセル(&C) - - + + - - + + Gui::Dialog::DlgActivateWindowImp - Windows - Windows + Windows + Windows - - + + Gui::Dialog::DlgAuthorization - Authorization - 許可 + Authorization + 許可 - &OK - OK + &OK + &OK - &Cancel - キャンセル + &Cancel + キャンセル(&C) - Password: - パスワード: + Password: + パスワード: - User name: - ユーザー名: + User name: + ユーザー名: - - + + - - + + Gui::Dialog::DlgChooseIcon - Choose Icon - アイコンを選択してください + Choose Icon + アイコンを選択してください - OK - OK + OK + OK - Cancel - キャンセル + Cancel + キャンセル - Add icons... - アイコンを追加... + Add icons... + アイコンを追加... - - + + Gui::Dialog::DlgCustomActions - Macros - マクロ + Macros + マクロ - Setup Custom Macros - カスタムマクロのセットアップ + Setup Custom Macros + カスタムマクロのセットアップ - Macro: - マクロ: + Macro: + マクロ: - ... - ... + ... + ... - Pixmap - ピックスマップ + Pixmap + ピックスマップ - Accelerator: - アクセラレータ: + Accelerator: + アクセラレータ: - What's this: - これは、何ですか: + What's this: + これは、何ですか: - Status text: - ステータステキスト: + Status text: + ステータステキスト: - Tool tip: - ツールのヒント: + Tool tip: + ツールのヒント: - Menu text: - メニューテキスト: + Menu text: + メニューテキスト: - Add - 追加 + Add + 追加 - Remove - 削除 + Remove + 削除 - Replace - 置換 + Replace + 置換 - - + + Gui::Dialog::DlgCustomActionsImp - Icons - アイコン + Icons + アイコン - Macros - マクロ + Macros + マクロ - No macro - マクロ不可 + No macro + マクロ不可 - No macros found. - マクロが見つかりません。 + No macros found. + マクロが見つかりません。 - Macro not found - マクロが見つかりません + Macro not found + マクロが見つかりません - Sorry, couldn't find macro file '%1'. - 申し訳ありませんが、マクロ ファイル '%1' を見つけることができませんでした。 + Sorry, couldn't find macro file '%1'. + 申し訳ありませんが、マクロ ファイル '%1' を見つけることができませんでした。 - Empty macro - 空のマクロ + Empty macro + 空のマクロ - Please specify the macro first. - 最初に、マクロを指定してください。 + Please specify the macro first. + 最初に、マクロを指定してください。 - Empty text - 空のテキスト + Empty text + 空のテキスト - Please specify the menu text first. - 最初にメニューテキストを指定してください。 + Please specify the menu text first. + 最初にメニューテキストを指定してください。 - No item selected - アイテムが選択されていません + No item selected + アイテムが選択されていません - Please select a macro item first. - 最初に、マクロの項目を選択してください。 + Please select a macro item first. + 最初に、マクロの項目を選択してください。 - - + + Gui::Dialog::DlgCustomCommands - Commands - コマンド + Commands + コマンド - - + + - - + + Gui::Dialog::DlgCustomCommandsImp - Category - 分類 + Category + 分類 - Icon - アイコン + Icon + アイコン - Command - コマンド + Command + コマンド - - + + Gui::Dialog::DlgCustomKeyboard - Keyboard - キーボード + Keyboard + キーボード - Description: - 説明: + Description: + 説明: - &Category: - カテゴリ(&C): + &Category: + カテゴリ(&C): - C&ommands: - コマンド(&O): + C&ommands: + コマンド(&O): - Current shortcut: - 現在のショートカット: + Current shortcut: + 現在のショートカット: - Press &new shortcut: - 新しいショートカットをプレス(&N): + Press &new shortcut: + 新しいショートカットをプレス(&N): - Currently assigned to: - 現在の割り当て: + Currently assigned to: + 現在の割り当て: - &Assign - 割り当て(&A) + &Assign + 割り当て(&A) - Alt+A - [Alt] + A + Alt+A + Alt+A - &Reset - リセット(&R) + &Reset + リセット(&R) - Alt+R - Alt+R + Alt+R + Alt+R - Re&set All - すべてリセット(&S) + Re&set All + すべてリセット(&S) - Alt+S - Alt+S + Alt+S + Alt+S - - + + - - + + Gui::Dialog::DlgCustomKeyboardImp - Icon - アイコン + Icon + アイコン - Command - コマンド + Command + コマンド - none - なし + none + なし - Multiple defined shortcut - ショートカットの複数回定義 + Multiple defined shortcut + ショートカットの複数回定義 - The shortcut '%1' is defined more than once. This could result into unexpected behaviour. - このショートカット'%1'はすでに使われています。これは予期しない結果を引き起こす原因になる場合があります。 + The shortcut '%1' is defined more than once. This could result into unexpected behaviour. + このショートカット'%1'はすでに使われています。これは予期しない結果を引き起こす原因になる場合があります。 - Already defined shortcut - 既に定義されたショートカット + Already defined shortcut + 既に定義されたショートカット - The shortcut '%1' is already assigned to '%2'. + The shortcut '%1' is already assigned to '%2'. Please define another shortcut. - このショートカット'%1'は、'%2'に割り当てられています。 + このショートカット'%1'は、'%2'に割り当てられています。 別のショートカットを割り当ててください。 - - + + Gui::Dialog::DlgCustomToolBoxbarsImp - Toolbox bars - ツールボックスバー + Toolbox bars + ツールボックスバー - - + + Gui::Dialog::DlgCustomToolbars - Toolbars - ツールバー + Toolbars + ツールバー - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> - Move right - 右へ移動 + Move right + 右へ移動 - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>選択した項目1つ下のレベルに移動します。</b> <p>これは、親項目のレベルも変更します。 </p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>選択した項目1つ下のレベルに移動します。</b> <p>これは、親項目のレベルも変更します。 </p> - Move left - 左へ移動 + Move left + 左へ移動 - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>選択した項目を1つ上のレベルに移動します。</b> <p>これは、親項目のレベルも変更します。 </p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>選択した項目を1つ上のレベルに移動します。</b> <p>これは、親項目のレベルも変更します。 </p> - Move down - 下へ移動 + Move down + 下へ移動 - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>選択された項目を下へ移動します。</b> <p>項目は階層レベル内で移動されます。 </p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>選択された項目を下へ移動します。</b> <p>項目は階層レベル内で移動されます。 </p> - Move up - 上へ移動 + Move up + 上へ移動 - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>選択された項目を上へ移動します。</b> <p>項目は階層レベル内で移動されます。 </p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>選択された項目を上へ移動します。</b> <p>項目は階層レベル内で移動されます。 </p> - New... - 新規... + New... + 新規... - Rename... - 名前の変更... + Rename... + 名前の変更... - Delete - 削除 + Delete + 削除 - Icon - アイコン + Icon + アイコン - Command - コマンド + Command + コマンド - <Separator> - <Separator> + <Separator> + <Separator> - New toolbar - 新しいツールバー + New toolbar + 新しいツールバー - Toolbar name: - ツールバー名: + Toolbar name: + ツールバー名: - Duplicated name - 重複名 + Duplicated name + 重複名 - The toolbar name '%1' is already used - ツールバーの名前'%1'は既に使われています。 + The toolbar name '%1' is already used + ツールバーの名前'%1'は既に使われています。 - Rename toolbar - ツールバーの名前を変更 + Rename toolbar + ツールバーの名前を変更 - - + + - - + + Gui::Dialog::DlgCustomizeImp - Customize - カスタマイズ + Customize + カスタマイズ - &Help - ヘルプ (&H) + &Help + ヘルプ (&H) - &Close - 閉じる(&C) + &Close + 閉じる (&C) - - + + Gui::Dialog::DlgCustomizeSpaceball - Spaceball - Spaceball + Spaceball + Spaceball - No Spaceball Present - No Spaceball Present + No Spaceball Present + No Spaceball Present - Buttons - ボタン + Buttons + ボタン - Clear - クリア + Clear + クリア - Print Reference - Print Reference + Print Reference + Print Reference - - + + Gui::Dialog::DlgDisplayProperties - Display properties - プロパティの表示 + Display properties + プロパティの表示 - Display - 表示 + Display + 表示 - Transparency: - 透明度: + Transparency: + 透明度: - Line width: - 線幅: + Line width: + 線幅: - Point size: - 点の大きさ: + Point size: + 点の大きさ: - Material - 素材 + Material + 素材 - ... - ... + ... + ... - Close - 閉じる + Close + 閉じる - Viewing mode - 表示モード + Viewing mode + 表示モード - Display mode: - ディスプレイモード: + Plot mode: + プロットモード: - Plot mode: - プロットモード: + + - - + Line transparency: + Line transparency: - Line transparency: - Line transparency: + Line color: + 線の色: - Line color: - 線の色: + Shape color: + 図形の色: - Shape color: - 図形の色: + Color plot: + Color plot: - Color plot: - Color plot: + Document window: + Document window: - - Document window: - - - - + + Gui::Dialog::DlgEditorSettings - Editor - エディタ + Editor + エディタ - Options - オプション + Options + オプション - Enable line numbers - 行番号を有効にします。 + Enable line numbers + 行番号を有効にします。 - Enable folding - 折りたたみを有効にします。 + Enable folding + 折りたたみを有効にします。 - Indentation - 字下げ + Indentation + 字下げ - Insert spaces - 空白の挿入 + Insert spaces + 空白の挿入 - Tab size: - タブサイズ: + Tab size: + タブサイズ: - Indent size: - インデントのサイズ: + Indent size: + インデントのサイズ: - Keep tabs - タブを維持 + Keep tabs + タブを維持 - Display Items - 表示項目 + Display Items + 表示項目 - Family: - ファミリー: + Family: + ファミリー: - Size: - サイズ: + Size: + サイズ: - Preview: - プレビュー: + Preview: + プレビュー: - - + + - - + + Gui::Dialog::DlgGeneral - General - 標準 + General + 標準 - Start up - 起動 + Start up + 起動 - Enable splash screen at start up - 起動時にスプラッシュ画面を表示 + Enable splash screen at start up + 起動時にスプラッシュ画面を表示 - Switch to tab of report window: - レポートウィンドウのタブに切り替え: + Switch to tab of report window: + レポートウィンドウのタブに切り替え: - Auto load module after start up: - スタートアップの後の自動ロード・モジュール: + Auto load module after start up: + スタートアップの後の自動ロード・モジュール: - Language - 言語 + Language + 言語 - Change language: - 言語を変更: + Change language: + 言語を変更: - Main window - メインウィンドウ + Main window + メインウィンドウ - Size of recent file list - 最近使ったファイルリストのサイズ + Size of recent file list + 最近使ったファイルリストのサイズ - Window style: - ウィンドウスタイル: + Window style: + ウィンドウスタイル: - Size of toolbar icons: - Size of toolbar icons: + Size of toolbar icons: + Size of toolbar icons: - - + + Gui::Dialog::DlgGeneralImp - Default (%1 x %1) - Default (%1 x %1) + Default (%1 x %1) + Default (%1 x %1) - Small (%1 x %1) - Small (%1 x %1) + Small (%1 x %1) + Small (%1 x %1) - Large (%1 x %1) - Large (%1 x %1) + Large (%1 x %1) + Large (%1 x %1) - Extra large (%1 x %1) - Extra large (%1 x %1) + Extra large (%1 x %1) + Extra large (%1 x %1) - - + + Gui::Dialog::DlgInputDialog - Input - ウィンドウスタイル: + Input + ウィンドウスタイル: - OK - OK + OK + OK - Cancel - キャンセル + Cancel + キャンセル - - + + - - + + Gui::Dialog::DlgInspector - Scene Inspector - シーンインスペクタ + Scene Inspector + シーンインスペクタ - - + + Gui::Dialog::DlgMacroExecute - Execute macro - マクロの実行 + Execute macro + マクロの実行 - Macro name: - マクロ名: + Macro name: + マクロ名: - Macro destination: - マクロのコピー先: + Macro destination: + マクロのコピー先: - Execute - 実行 + Execute + 実行 - Close - 閉じる + Close + 閉じる - Create - 作成 + Create + 作成 - Delete - 削除 + Delete + 削除 - Edit - 編集 + Edit + 編集 - - + + Gui::Dialog::DlgMacroExecuteImp - Macros - マクロ + Macros + マクロ - Macro file - マクロファイル + Macro file + マクロファイル - Enter a file name, please: - ファイル名を入力してください: + Enter a file name, please: + ファイル名を入力してください: - Existing file - 既存ファイル + Existing file + 既存ファイル - '%1'. + '%1'. This file already exists. - '%1'.このファイルは既に存在します。 + '%1'.このファイルは既に存在します。 - Delete macro - マクロの削除 + Delete macro + マクロの削除 - Do you really want to delete the macro '%1'? - マクロ '%1' を削除しますか? + Do you really want to delete the macro '%1'? + マクロ '%1' を削除しますか? - Cannot create file - ファイルを作成できません。 + Cannot create file + ファイルを作成できません。 - Creation of file '%1' failed. - ファイル '%1' の作成に失敗しました。 + Creation of file '%1' failed. + ファイル '%1' の作成に失敗しました。 - - + + Gui::Dialog::DlgMacroRecord - Macro recording - マクロの記録 + Macro recording + マクロの記録 - Macro name: - マクロ名: + Macro name: + マクロ名: - Stop - 停止 + Stop + 停止 - Cancel - キャンセル + Cancel + キャンセル - Macro path: - マクロのパス: + Macro path: + マクロのパス: - ... - ... + ... + ... - Record - 記録 + Record + 記録 - - + + Gui::Dialog::DlgMacroRecordImp - Macro recorder - マクロの記録 + Macro recorder + マクロの記録 - Specify first a place to save. - 最初に保存する場所を指定してください。 + Specify first a place to save. + 最初に保存する場所を指定してください。 - Existing macro - 既存のマクロ + Existing macro + 既存のマクロ - The macro '%1' already exists. Do you want to overwrite? - マクロ'%1'は既に存在します。上書きしますか? + The macro '%1' already exists. Do you want to overwrite? + マクロ'%1'は既に存在します。上書きしますか? - The macro directory doesn't exist. Please, choose another one. - マクロのディレクトリが存在しません。別のものを選択してください。 + The macro directory doesn't exist. Please, choose another one. + マクロのディレクトリが存在しません。別のものを選択してください。 - Choose macro directory - マクロのディレクトリを選択します。 + Choose macro directory + マクロのディレクトリを選択します。 - - + + Gui::Dialog::DlgMaterialProperties - Material properties - 材料特性 + Material properties + 材料特性 - &Close - 閉じる(&C) + &Close + 閉じる (&C) - Alt+C - Alt+C + Alt+C + Alt+C - Material - 素材 + Material + 素材 - Diffuse color: - 散乱光の色: + Diffuse color: + 散乱光の色: - Specular color: - 鏡面反射光の色: + Specular color: + 鏡面反射光の色: - Shininess: - 光沢: + Shininess: + 光沢: - % - % + % + % - Ambient color: - 環境光の色: + Ambient color: + 環境光の色: - - + + - Emissive color: - Emissive color: + Emissive color: + Emissive color: - - + + Gui::Dialog::DlgOnlineHelp - On-line help - オンライン ヘルプ + On-line help + オンライン ヘルプ - Help viewer - ヘルプ ・ ビューアー + Help viewer + ヘルプ ・ ビューアー - Location of start page - スタートページの場所 + Location of start page + スタートページの場所 - - + + Gui::Dialog::DlgOnlineHelpImp - HTML files (*.html *.htm) - HTML ファイル (*.htm *.html) + HTML files (*.html *.htm) + HTML ファイル (*.htm *.html) - Access denied - アクセスが拒否されました + Access denied + アクセスが拒否されました - Access denied to '%1' + Access denied to '%1' Specify another directory, please. - '%1'にアクセス拒否されました 別のディレクトリを指定してください。 + '%1'にアクセス拒否されました 別のディレクトリを指定してください。 - - + + Gui::Dialog::DlgParameter - Parameter Editor - パラメータエディタ + Parameter Editor + パラメータエディタ - Save to disk - ディスクに保存 + Save to disk + ディスクに保存 - Alt+C - Alt+C + Alt+C + Alt+C - &Close - 閉じる(&C) + &Close + 閉じる (&C) - - + + Gui::Dialog::DlgParameterImp - Group - グループ + Group + グループ - Name - 名前 + Name + 名前 - Type - タイプ + Type + タイプ - Value - + Value + - User parameter - ユーザー パラメータ + User parameter + ユーザー パラメータ - Invalid input - 無効な入力 + Invalid input + 無効な入力 - Invalid key name '%1' - 無効なキー名 '%1' + Invalid key name '%1' + 無効なキー名 '%1' - System parameter - システム パラメータ + System parameter + システム パラメータ - - + + Gui::Dialog::DlgPreferences - Preferences - 設定 + Preferences + 設定 - &Help - ヘルプ (&H) + &Help + ヘルプ (&H) - Alt+H - Alt+H + Alt+H + Alt+H - &OK - OK + &OK + &OK - &Apply - 適用(&A) + &Apply + 適用(&A) - Alt+A - [Alt] + A + Alt+A + Alt+A - &Cancel - キャンセル + &Cancel + キャンセル(&C) - - + + - - + + Gui::Dialog::DlgPreferencesImp - Wrong parameter - 間違ったパラメータ + Wrong parameter + 間違ったパラメータ - - + + Gui::Dialog::DlgProjectInformation - Project information - プロジェクト情報 + Project information + プロジェクト情報 - Information - 情報 + Information + 情報 - &Name: - 名前(&N): + &Name: + 名前(&N): - Commen&t: - コメント(&T): + Commen&t: + コメント(&T): - Path: - パス: + Path: + パス: - &Last modified by: - 最終更新日時(&C): + &Last modified by: + 最終更新日時(&C): - Created &by: - Created &by: + Created &by: + 作成者(&B): - Com&pany: - Com&pany: + Com&pany: + 企業(&P): - Last &modification date: - 最終更新日(&M): + Last &modification date: + 最終更新日(&M): - Creation &date: - 作成日(&D): + Creation &date: + 作成日(&D): - &OK - OK + &OK + &OK - &Cancel - キャンセル + &Cancel + キャンセル(&C) - - + + - - + + Gui::Dialog::DlgProjectUtility - Project utility - プロジェクトユーティリティ + Project utility + プロジェクトユーティリティ - Extract project - プロジェクトを抽出 + Extract project + プロジェクトを抽出 - Source - Source + Source + Source - Project file (*.fcstd) - プロジェクトファイル (*.fcstd) + Project file (*.fcstd) + プロジェクトファイル (*.fcstd) - Destination - Destination + Destination + Destination - Extract - 抽出 + Extract + 抽出 - Create project - Create project - - - Document.xml - Document.xml - - - Create - 作成 - - - Load project file after creation - Load project file after creation - - - Empty source - Empty source - - - No source is defined. - No source is defined. - - - Empty destination - Empty destination - - - No destination is defined. - No destination is defined. - - - - Gui::Dialog::DlgReportView - - Output window - 出力ウィンドウ - - - Output - 出力 - - - Record log messages - ログメッセージを記録 - - - Record warnings - 警告メッセージを記録 - - - Record error messages - エラーメッセージを記録 - - - Colors - - - - Normal messages: - 通常のメッセージ: - - - Log messages: - ログ メッセージ: - - - Warnings: - 警告メッセージ: - - - Errors: - エラー: - - - - - - - Redirect internal Python errors to report view - Redirect internal Python errors to report view - - - Redirect internal Python output to report view - Redirect internal Python output to report view - - - - Gui::Dialog::DlgRunExternal - - Running external program - 外部プログラムを実行する - - - TextLabel - テキストラベル - - - Advanced >> - 高度な >> - - - ... - ... - - - Accept changes - 変更を確定します。 - - - Discard changes - 変更を破棄 - - - Abort program - プログラムを中止します。 - - - Help - ヘルプ - - - Select a file - ファイルを選択してください - - - - Gui::Dialog::DlgSettings3DView - - 3D View - 3D 表示 - - - 3D View settings - 3D表示の設定 - - - Show coordinate system in the corner - 角で座標系を表示する - - - Show counter of frames per second - 1 秒あたりのフレーム数のカウンターを表示します。 - - - Enable animation - アニメーションを有効にします。 - - - Enable anti-aliasing (slower) - アンチエイリアス (低速) を有効にします。 - - - Eye to eye distance for stereo modes: - 眼球間の距離 ステレオモード時: - - - Camera type - カメラの種類 - - - Orthographic rendering - 正投影図のレンダリング - - - Perspective rendering - 視点レンダリング - - - - - - - 3D Navigation - 3Dナビゲーション - - - Mouse... - マウス... - - - Intensity of backlight - Intensity of backlight - - - Enable backlight color - バックライトの色を有効にする - - - Orbit style - Orbit style - - - Turntable - Turntable - - - Trackball - Trackball - - - Invert zoom - Invert zoom - - - Zoom at cursor - - - - Zoom step - - - - - Gui::Dialog::DlgSettings3DViewImp - - %1 navigation - %1 navigation - - - - Gui::Dialog::DlgSettingsColorGradient - - Color model - カラーモデル - - - &Gradient: - &グラデーション: - - - red-yellow-green-cyan-blue - 赤、黄、緑-シアン-青 - - - blue-cyan-green-yellow-red - 青-シアン-緑-黄-赤 - - - white-black - 白黒 - - - black-white - 白黒 - - - Visibility - 可視性 - - - Out g&rayed - Out g&rayed - - - Alt+R - Alt+R - - - Out &invisible - Out &invisible - - - Alt+I - Alt+I - - - Style - スタイル - - - &Zero - &Zero - - - Alt+Z - Alt + Zキー - - - &Flow - &Flow - - - Alt+F - Alt + Fキー - - - &OK - OK - - - &Cancel - キャンセル - - - Parameter range - パラメータの範囲 - - - Mi&nimum: - 最小(&n): - - - Ma&ximum: - 最大 (&x): - - - &Labels: - &Labels: - - - &Decimals: - &Decimals: - - - - - - - Color-gradient settings - Color-gradient settings - - - - Gui::Dialog::DlgSettingsColorGradientImp - - Wrong parameter - 間違ったパラメータ - - - The maximum value must be higher than the minimum value. - 最大値は最小値よりも大きくする必要があります。 - - - - Gui::Dialog::DlgSettingsDocument - - Document - ドキュメント - - - General - 標準 - - - Document save compression level -(0 = none, 9 = highest, 3 = default) - Document save compression level -(0 = none, 9 = highest, 3 = default) - - - Create new document at start up - 開始時に新しいドキュメントを作成します。 - - - Storage - ストレージ - - - Saving transactions (Auto-save) - 変更内容を保存(自動保存) - - - Discard saved transaction after saving document - ドキュメントを保存した後、保存された変更内容を破棄します。 - - - Save thumbnail into project file when saving document - ドキュメントを保存するときにサムネールをプロジェクトファイルに保存します。 - - - Create up to backup files when resaving document - Create up to backup files when resaving document - - - Document objects - Document objects - - - Allow duplicate object labels in one document - Allow duplicate object labels in one document - - - Maximum Undo/Redo steps - 「元に戻す/やり直し」の最大数 - - - Using Undo/Redo on documents - ドキュメントで元に戻す/やり直しの使用 - - - - Gui::Dialog::DlgSettingsEditorImp - - Text - テキスト - - - Bookmark - テキスト - - - Breakpoint - ブレークポイント - - - Keyword - キーワード - - - Comment - コメント - - - Block comment - Block comment - - - Number - 数値 - - - String - 文字列 - - - Character - 文字 - - - Class name - クラス名 - - - Define name - 名前の定義 - - - Operator - 演算子 - - - Python output - Python出力 - - - Python error - Pythonエラー - - - Items - 項目 - - - Current line highlight - - - - - Gui::Dialog::DlgSettingsImage - - Image settings - 画像設定 - - - Image properties - 画像のプロパティ - - - Back&ground: - 背景色: - - - Current - 現在の - - - White - - - - Black - - - - Transparent - 透明 - - - Image dimensions - 画像の寸法(E) - - - Pixel - ピクセル - - - &Width: - &幅: - - - Current screen - 現在の画面 - - - Icon 32 x 32 - アイコン32 × 32 - - - Icon 64 x 64 - アイコン 64 × 64 - - - Icon 128 x 128 - アイコン 128 × 128 - - - CGA 320 x 200 - CGA 320 x 200 - - - QVGA 320 x 240 - QVGA 320 x 240 - - - VGA 640 x 480 - VGA 640 x 480 - - - NTSC 720 x 480 - NTSC 720 x 480 - - - PAL 768 x 578 - PAL 768 x 578 - - - SVGA 800 x 600 - SVGA 800 x 600 - - - XGA 1024 x 768 - XGA 1024 x 768 - - - HD720 1280 x 720 - HD720 1280 × 720 - - - SXGA 1280 x 1024 - SXGA 1280 x 1024 - - - SXGA+ 1400 x 1050 - SXGA + 1400 x 1050 - - - UXGA 1600 x 1200 - UXGA 1600 x 1200 - - - HD1080 1920 x 1080 - HD1080 1920 × 1080 - - - WUXGA 1920 x 1200 - WUXGA 1920 x 1200 - - - QXGA 2048 x 1538 - QXGA 2048 x 1651 - - - WQXGA 2560 x 1600 - WQXGA 2560 x 1600 - - - QSXGA 2560 x 2048 - QSXGA 2560 x 2048 - - - QUXGA 3200 × 2400 - QUXGA 3200 × 2400 - - - HUXGA 6400 × 4800 - HUXGA 6400 × 4800 - - - !!! 10000 x 10000 - !!!10000 x 10000 - - - Standard sizes: - 標準サイズ: - - - &Height: - &高さ: - - - Aspect ratio: - アスペクト比: - - - &Screen - & 画面 - - - Alt+S - Alt+S - - - &4:3 - & 4: 3 - - - Alt+4 - Alt + 4 - - - 1&6:9 - 1&6:9 - - - Alt+6 - Alt + 6 - - - &1:1 - &1:1 - - - Alt+1 - Alt + 1 - - - Image comment - 画像のコメント - - - Insert MIBA - MIBA の挿入 - - - Insert comment - コメントの挿入 - - - - Gui::Dialog::DlgSettingsMacro - - Macro - マクロ - - - Macro recording settings - マクロの記録の設定 - - - Logging Commands - 履歴コマンド - - - Show script commands in python console - Python コンソールでスクリプト コマンドを表示します。 - - - Log all commands issued by menus to file: - メニューから発行された全ての命令をファイルに記録します: - - - FullScript.FCScript - FullScript.FCScript - - - Gui commands - GUIコマンド - - - Recording GUI commands - GUIコマンドの記録 - - - Record as comment - コメントとして記録 - - - Macro path - マクロのパス - - - General macro settings - - - - Run macros in local environment - - - - - Gui::Dialog::DlgSettingsUnits - - Units - Units - - - Units settings - 単位の設定 - - - Standard (mm/kg/s/degree) - Standard (mm/kg/s/degree) - - - MKS (m/kg/s/degree) - MKS (m/kg/s/degree) - - - Magnitude - Magnitude - - - Unit - Unit - - - User system: - User system: - - - Imperial (in/lb) - Imperial (in/lb) - - - - Gui::Dialog::DlgSettingsViewColor - - Colors - - - - Selection - 選択範囲 - - - Enable selection highlighting - 選択範囲の強調表示を有効にします。 - - - Enable preselection highlighting - Enable preselection highlighting - - - Background color - 背景色 - - - Middle color - Middle color - - - Color gradient - カラーグラデーション - - - Simple color - シンプルな色 - - - Default colors - Default colors - - - Edited edge color - Edited edge color - - - Edited vertex color - Edited vertex color - - - Construction geometry - Construction geometry - - - Fully constrained geometry - Fully constrained geometry - - - The color of construction geometry in editmode - The color of construction geometry in editmode - - - The color of fully constrained geometry in editmode - The color of fully constrained geometry in editmode - - - The color of vertices being edited - The color of vertices being edited - - - The color of edges being edited - The color of edges being edited - - - The color of construction geometry in edit mode - - - - The color of fully constrained geometry in edit mode - - - - Cursor text color - - - - Default shape color - - - - The default color for new shapes - - - - Default line width and color - - - - The default line color for new shapes - - - - The default line thickness for new shapes - - - - px - - - - - Gui::Dialog::DlgTipOfTheDay - - Tip of the day - ワンポイントアドバイス - - - <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> - <b><font face="Times New Roman"> <font size="+3"> 知っていますか...</font></font></b> - - - &Show tips at start up - &起動時にヒントを表示 - - - Alt+S - Alt+S - - - &Next Tip - &次のヒント - - - Alt+N - Alt + N - - - &Close - 閉じる(&C) - - - Alt+C - Alt+C - - - - - - - - Gui::Dialog::DlgTipOfTheDayImp - - Download failed: %1 - - ダウンロードに失敗しました: %1 + Create project + プロジェクトを作成 - If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. - FreeCAD についてもっと詳しく知りたい場合 %1 へ行く、あるいはヘルプ項目 [ヘルプ] メニューでキーを押す必要があります. + Document.xml + Document.xml - - + + Create + 作成 + + + Load project file after creation + Load project file after creation + + + Empty source + Empty source + + + No source is defined. + No source is defined. + + + Empty destination + Empty destination + + + No destination is defined. + No destination is defined. + + + + Gui::Dialog::DlgReportView + + Output window + 出力ウィンドウ + + + Output + 出力 + + + Record log messages + ログメッセージを記録 + + + Record warnings + 警告メッセージを記録 + + + Record error messages + エラーメッセージを記録 + + + Colors + + + + Normal messages: + 通常のメッセージ: + + + Log messages: + ログ メッセージ: + + + Warnings: + 警告メッセージ: + + + Errors: + エラー: + + + + + + + Redirect internal Python errors to report view + Redirect internal Python errors to report view + + + Redirect internal Python output to report view + Redirect internal Python output to report view + + + + Gui::Dialog::DlgRunExternal + + Running external program + 外部プログラムを実行する + + + TextLabel + テキストラベル + + + Advanced >> + 高度な >> + + + ... + ... + + + Accept changes + 変更を確定します。 + + + Discard changes + 変更を破棄 + + + Abort program + プログラムを中止します。 + + + Help + ヘルプ + + + Select a file + ファイルを選択してください + + + + Gui::Dialog::DlgSettings3DView + + 3D View + 3D 表示 + + + 3D View settings + 3D表示の設定 + + + Show coordinate system in the corner + 角で座標系を表示する + + + Show counter of frames per second + 1 秒あたりのフレーム数のカウンターを表示します。 + + + Enable animation + アニメーションを有効にします。 + + + Enable anti-aliasing (slower) + アンチエイリアス (低速) を有効にします。 + + + Eye to eye distance for stereo modes: + 眼球間の距離 ステレオモード時: + + + Camera type + カメラの種類 + + + Orthographic rendering + 正投影図のレンダリング + + + Perspective rendering + 視点レンダリング + + + + + + + 3D Navigation + 3Dナビゲーション + + + Mouse... + マウス... + + + Intensity of backlight + Intensity of backlight + + + Enable backlight color + バックライトの色を有効にする + + + Orbit style + Orbit style + + + Turntable + Turntable + + + Trackball + トラックボール + + + Invert zoom + ズームを反転 + + + Zoom at cursor + Zoom at cursor + + + Zoom step + Zoom step + + + + Gui::Dialog::DlgSettings3DViewImp + + %1 navigation + %1 navigation + + + + Gui::Dialog::DlgSettingsColorGradient + + Color model + カラーモデル + + + &Gradient: + &グラデーション: + + + red-yellow-green-cyan-blue + 赤、黄、緑-シアン-青 + + + blue-cyan-green-yellow-red + 青-シアン-緑-黄-赤 + + + white-black + 白黒 + + + black-white + 白黒 + + + Visibility + 可視性 + + + Out g&rayed + Out g&rayed + + + Alt+R + Alt+R + + + Out &invisible + Out &invisible + + + Alt+I + Alt+I + + + Style + スタイル + + + &Zero + ゼロ(&Z) + + + Alt+Z + Alt+Z + + + &Flow + &Flow + + + Alt+F + Alt+F + + + &OK + &OK + + + &Cancel + キャンセル(&C) + + + Parameter range + パラメータの範囲 + + + Mi&nimum: + 最小(&n): + + + Ma&ximum: + 最大 (&x): + + + &Labels: + ラベル(&L): + + + &Decimals: + &Decimals: + + + + + + + Color-gradient settings + Color-gradient settings + + + + Gui::Dialog::DlgSettingsColorGradientImp + + Wrong parameter + 間違ったパラメータ + + + The maximum value must be higher than the minimum value. + 最大値は最小値よりも大きくする必要があります。 + + + + Gui::Dialog::DlgSettingsDocument + + Document + ドキュメント + + + General + 標準 + + + Document save compression level +(0 = none, 9 = highest, 3 = default) + ドキュメントの圧縮レベル(0 = 非圧縮、9 高圧縮 = 3 = デフォルト) + + + Create new document at start up + 開始時に新しいドキュメントを作成します。 + + + Storage + ストレージ + + + Saving transactions (Auto-save) + 変更内容を保存(自動保存) + + + Discard saved transaction after saving document + ドキュメントを保存した後、保存された変更内容を破棄します。 + + + Save thumbnail into project file when saving document + ドキュメントを保存するときにサムネールをプロジェクトファイルに保存します。 + + + Create up to backup files when resaving document + Create up to backup files when resaving document + + + Document objects + Document objects + + + Allow duplicate object labels in one document + Allow duplicate object labels in one document + + + Maximum Undo/Redo steps + 「元に戻す/やり直し」の最大数 + + + Using Undo/Redo on documents + ドキュメントで元に戻す/やり直しの使用 + + + + Gui::Dialog::DlgSettingsEditorImp + + Text + テキスト + + + Bookmark + テキスト + + + Breakpoint + ブレークポイント + + + Keyword + キーワード + + + Comment + コメント + + + Block comment + Block comment + + + Number + 数値 + + + String + 文字列 + + + Character + 文字 + + + Class name + クラス名 + + + Define name + 名前の定義 + + + Operator + 演算子 + + + Python output + Python出力 + + + Python error + Pythonエラー + + + Items + 項目 + + + Current line highlight + Current line highlight + + + + Gui::Dialog::DlgSettingsImage + + Image settings + 画像設定 + + + Image properties + 画像のプロパティ + + + Back&ground: + 背景色: + + + Current + 現在の + + + White + + + + Black + + + + Transparent + 透明 + + + Image dimensions + 画像の寸法(E) + + + Pixel + ピクセル + + + &Width: + &幅: + + + Current screen + 現在の画面 + + + Icon 32 x 32 + アイコン32 × 32 + + + Icon 64 x 64 + アイコン 64 × 64 + + + Icon 128 x 128 + アイコン 128 × 128 + + + CGA 320 x 200 + CGA 320 x 200 + + + QVGA 320 x 240 + QVGA 320 x 240 + + + VGA 640 x 480 + VGA 640 x 480 + + + NTSC 720 x 480 + NTSC 720 x 480 + + + PAL 768 x 578 + PAL 768 x 578 + + + SVGA 800 x 600 + SVGA 800 x 600 + + + XGA 1024 x 768 + XGA 1024 x 768 + + + HD720 1280 x 720 + HD720 1280 × 720 + + + SXGA 1280 x 1024 + SXGA 1280 x 1024 + + + SXGA+ 1400 x 1050 + SXGA + 1400 x 1050 + + + UXGA 1600 x 1200 + UXGA 1600 x 1200 + + + HD1080 1920 x 1080 + HD1080 1920 × 1080 + + + WUXGA 1920 x 1200 + WUXGA 1920 x 1200 + + + QXGA 2048 x 1538 + QXGA 2048 x 1651 + + + WQXGA 2560 x 1600 + WQXGA 2560 x 1600 + + + QSXGA 2560 x 2048 + QSXGA 2560 x 2048 + + + QUXGA 3200 × 2400 + QUXGA 3200 × 2400 + + + HUXGA 6400 × 4800 + HUXGA 6400 × 4800 + + + !!! 10000 x 10000 + !!!10000 x 10000 + + + Standard sizes: + 標準サイズ: + + + &Height: + &高さ: + + + Aspect ratio: + アスペクト比: + + + &Screen + & 画面 + + + Alt+S + Alt+S + + + &4:3 + & 4: 3 + + + Alt+4 + Alt+4 + + + 1&6:9 + 1&6:9 + + + Alt+6 + Alt+6 + + + &1:1 + &1:1 + + + Alt+1 + Alt+1 + + + Image comment + 画像のコメント + + + Insert MIBA + MIBA の挿入 + + + Insert comment + コメントの挿入 + + + + Gui::Dialog::DlgSettingsMacro + + Macro + マクロ + + + Macro recording settings + マクロの記録の設定 + + + Logging Commands + 履歴コマンド + + + Show script commands in python console + Python コンソールでスクリプト コマンドを表示します。 + + + Log all commands issued by menus to file: + メニューから発行された全ての命令をファイルに記録します: + + + FullScript.FCScript + FullScript.FCScript + + + Gui commands + GUIコマンド + + + Recording GUI commands + GUIコマンドの記録 + + + Record as comment + コメントとして記録 + + + Macro path + マクロのパス + + + General macro settings + General macro settings + + + Run macros in local environment + Run macros in local environment + + + + Gui::Dialog::DlgSettingsUnits + + Units + Units + + + Units settings + 単位の設定 + + + Standard (mm/kg/s/degree) + Standard (mm/kg/s/degree) + + + MKS (m/kg/s/degree) + MKS (m/kg/s/degree) + + + Magnitude + Magnitude + + + Unit + Unit + + + User system: + User system: + + + Imperial (in/lb) + Imperial (in/lb) + + + + Gui::Dialog::DlgSettingsViewColor + + Colors + + + + Selection + 選択範囲 + + + Enable selection highlighting + 選択範囲の強調表示を有効にします。 + + + Enable preselection highlighting + Enable preselection highlighting + + + Background color + 背景色 + + + Middle color + 中間色 + + + Color gradient + カラーグラデーション + + + Simple color + シンプルな色 + + + Default colors + デフォルトの色 + + + Edited edge color + Edited edge color + + + Edited vertex color + Edited vertex color + + + Construction geometry + Construction geometry + + + Fully constrained geometry + 完全幾何拘束 + + + The color of vertices being edited + The color of vertices being edited + + + The color of edges being edited + The color of edges being edited + + + The color of construction geometry in edit mode + The color of construction geometry in edit mode + + + The color of fully constrained geometry in edit mode + The color of fully constrained geometry in edit mode + + + Cursor text color + Cursor text color + + + Default shape color + Default shape color + + + The default color for new shapes + The default color for new shapes + + + Default line width and color + Default line width and color + + + The default line color for new shapes + The default line color for new shapes + + + The default line thickness for new shapes + The default line thickness for new shapes + + + px + px + + + + Gui::Dialog::DlgTipOfTheDay + + Tip of the day + ワンポイントアドバイス + + + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <b><font face="Times New Roman"> <font size="+3"> 知っていますか...</font></font></b> + + + &Show tips at start up + &起動時にヒントを表示 + + + Alt+S + Alt+S + + + &Next Tip + &次のヒント + + + Alt+N + Alt+N + + + &Close + 閉じる (&C) + + + Alt+C + Alt+C + + + + + + + + Gui::Dialog::DlgTipOfTheDayImp + + Download failed: %1 + + ダウンロードに失敗しました: %1 + + + + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + FreeCAD についてもっと詳しく知りたい場合 %1 へ行く、あるいはヘルプ項目 [ヘルプ] メニューでキーを押す必要があります. + + + Gui::Dialog::DockablePlacement - Placement - Placement + Placement + 配置 - - + + Gui::Dialog::DownloadDialog - Canceled. - Canceled. + Download + Download - Download - + Cancel + キャンセル - Cancel - キャンセル + Close + 閉じる - Close - 閉じる + There already exists a file called %1 in the current directory. Overwrite? + There already exists a file called %1 in the current directory. Overwrite? - There already exists a file called %1 in the current directory. Overwrite? - + Unable to save the file %1: %2. + Unable to save the file %1: %2. - Unable to save the file %1: %2. - + Downloading %1. + Downloading %1. - Downloading %1. - + Download canceled. + Download canceled. - Download canceled. - + Download failed: %1. + ダウンロードに失敗しました: %1. - Download failed: %1. - ダウンロードに失敗しました: %1. + Downloaded %1 to current directory. + Downloaded %1 to current directory. - - Downloaded %1 to current directory. - - - - + + Gui::Dialog::IconDialog - Add icon - Add icon + Add icon + Add icon - - + + Gui::Dialog::InputVector - Input vector - 入力ベクトル + Input vector + 入力ベクトル - Vector - ベクトル + Vector + ベクトル - Z: - z: + Z: + z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - OK - OK + OK + OK - - + + Gui::Dialog::LicenseDialog - Copyright - + Copyright + Copyright - - + + Gui::Dialog::MouseButtons - Mouse buttons - マウスボタン + Mouse buttons + マウスボタン - Configuration - Configuration + Configuration + Configuration - Selection: - Selection: + Selection: + Selection: - Panning - Panning + Panning + Panning - Rotation: - 回転: + Rotation: + 回転: - Zooming: - Zooming: + Zooming: + Zooming: - - + + Gui::Dialog::ParameterGroup - Expand - 開く + Expand + 開く - Add sub-group - サブグループを追加 + Add sub-group + サブグループを追加 - Remove group - グループを削除 + Remove group + グループを削除 - Rename group - グループ名変更 + Rename group + グループ名変更 - Export parameter - エクスポートパラメータ + Export parameter + エクスポートパラメータ - Import parameter - インポートパラメータ + Import parameter + インポートパラメータ - Collapse - 折りたたむ + Collapse + 折りたたむ - Do really want to remove this parameter group? - 本当にこのパラメーターのグループを削除しますか。 + Do really want to remove this parameter group? + 本当にこのパラメーターのグループを削除しますか。 - Existing sub-group - 既存のサブグループ + Existing sub-group + 既存のサブグループ - The sub-group '%1' already exists. - サブグループ '%1' は既に存在します. + The sub-group '%1' already exists. + サブグループ '%1' は既に存在します. - Export parameter to file - パラメーターをファイルにエクスポートします。 + Export parameter to file + パラメーターをファイルにエクスポートします。 - XML (*.FCParam) - XML (*.FCParam) + XML (*.FCParam) + XML (*.FCParam) - Import parameter from file - パラメーターをファイルからインポートします。 + Import parameter from file + パラメーターをファイルからインポートします。 - Import Error - インポートエラー + Import Error + インポートエラー - Reading from '%1' failed. - '%1' からの読み取りに失敗しました。 + Reading from '%1' failed. + '%1' からの読み取りに失敗しました。 - - + + Gui::Dialog::ParameterValue - Change value - 値を変更 + Change value + 値を変更 - Remove key - キーを削除 + Remove key + キーを削除 - Rename key - 名前変更キー + Rename key + 名前変更キー - New - 新規作成 + New + 新規作成 - New string item - 新しい文字列項目 + New string item + 新しい文字列項目 - New float item - 新しいフロートアイテム + New float item + 新しいフロートアイテム - New integer item - 新しい整数項目 + New integer item + 新しい整数項目 - New unsigned item - 新しい符号なし項目 + New unsigned item + 新しい符号なし項目 - New Boolean item - 新しいブール項目 + New Boolean item + 新しいブール項目 - Existing item - 既存の項目 + Existing item + 既存の項目 - The item '%1' already exists. - 項目 '%1' は既に存在します。 + The item '%1' already exists. + 項目 '%1' は既に存在します。 - - + + Gui::Dialog::Placement - Placement - Placement + Placement + 配置 - OK - OK + OK + OK - Translation: - Translation: + Translation: + 翻訳: - Z: - z: + Z: + z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - Rotation: - 回転: + Rotation: + 回転: - Angle: - 角度: + Angle: + 角度: - Axis: - 軸: + Axis: + 軸: - Center: - Center: + Center: + Center: - Pitch: - Pitch: + Pitch: + ピッチ: - Roll: - Roll: + Roll: + ロール: - Yaw: - Yaw: + Yaw: + ヨー: - Rotation axis with angle - Rotation axis with angle + Rotation axis with angle + Rotation axis with angle - Euler angles - Euler angles + Euler angles + オイラー角 - Apply placement changes immediately - Apply placement changes immediately + Apply placement changes immediately + Apply placement changes immediately - Apply incremental changes to object placement - Apply incremental changes to object placement + Apply incremental changes to object placement + Apply incremental changes to object placement - Apply - 適用する + Apply + 適用する - Reset - リセット + Reset + リセット - Close - 閉じる + Close + 閉じる - - + + Gui::Dialog::PrintModel - Button - Button + Button + ボタン - Command - コマンド + Command + コマンド - - + + Gui::Dialog::SceneInspector - Dialog - ダイアログ + Dialog + ダイアログ - Close - 閉じる + Close + 閉じる - Refresh - 更新 + Refresh + 更新 - - + + Gui::Dialog::SceneModel - Inventor Tree - Inventor Tree + Inventor Tree + Inventor Tree - Nodes - ノード + Nodes + ノード - - + + Gui::Dialog::TextureMapping - Texture - テクスチャ + Texture + テクスチャ - Texture mapping - テクスチャーマッピング + Texture mapping + テクスチャーマッピング - Global - Global + Global + Global - Environment - Environment + Environment + 環境 - Image files (%1) - Image files (%1) + Image files (%1) + 画像ファイル(%1) - No image - 画像がありません + No image + 画像がありません - The specified file is not a valid image file. - The specified file is not a valid image file. + The specified file is not a valid image file. + The specified file is not a valid image file. - No 3d view - 3Dビューがありません + No 3d view + 3Dビューがありません - No active 3d view found. - No active 3d view found. + No active 3d view found. + No active 3d view found. - - + + Gui::Dialog::Transform - Cancel - キャンセル + Cancel + キャンセル - Transform - 変換 + Transform + 変換 - - + + Gui::DlgTreeWidget - Dialog - ダイアログ + Dialog + ダイアログ - Items - 項目 + Items + 項目 - OK - OK + OK + OK - Cancel - キャンセル + Cancel + キャンセル - - + + - - + + Gui::DockWnd::CombiView - CombiView - コンビビュー + CombiView + コンビビュー - Project - プロジェクト + Project + プロジェクト - Tasks - 作業 + Tasks + 作業 - - + + Gui::DockWnd::HelpView - Previous - 前へ + Previous + 前へ - Next - 次へ + Next + 次へ - Home - ホーム + Home + ホーム - Open - 開く + Open + 開く - Open file - ファイルを開く + Open file + ファイルを開く - All HTML files (*.html *.htm) - すべての HTML ファイル (*.htm *.html) + All HTML files (*.html *.htm) + すべての HTML ファイル (*.htm *.html) - External browser - 外部ブラウザ + External browser + 外部ブラウザ - No external browser found. Specify in preferences, please - 外部ブラウザーが設定されていません。環境設定で指定してください。 + No external browser found. Specify in preferences, please + 外部ブラウザーが設定されていません。環境設定で指定してください。 - Starting of %1 failed - Starting of %1 failed + Starting of %1 failed + %1 の開始に失敗しました - - + + Gui::DockWnd::PropertyDockView - Property View - プロパティ表示 + Property View + プロパティ表示 - - + + Gui::DockWnd::ReportOutput - Logging - ログ記録 + Logging + ログ記録 - Warning - 警告 + Warning + 警告 - Error - エラー + Error + エラー - Options - オプション + Options + オプション - Clear - クリア + Clear + クリア - Save As... - 名前を付けて保存... + Save As... + 名前を付けて保存... - Save Report Output - レポート出力を保存する + Save Report Output + レポート出力を保存する - Plain Text Files (*.txt *.log) - テキスト ファイル (*.txt * .log) + Plain Text Files (*.txt *.log) + テキスト ファイル (*.txt * .log) - Go to end - Go to end + Go to end + Go to end - Redirect Python output - Redirect Python output + Redirect Python output + Redirect Python output - Redirect Python errors - Pythonのエラーをリダイレクトします。 + Redirect Python errors + Pythonのエラーをリダイレクトします。 - - + + Gui::DockWnd::ReportView - Output - 出力 + Output + 出力 - Python console - Python コンソール + Python console + Python コンソール - - + + Gui::DockWnd::SelectionView - Property View - プロパティ表示 + Property View + プロパティ表示 - - + + Gui::DockWnd::TaskPanelView - Task View - タスクビュー + Task View + タスクビュー - - + + Gui::DockWnd::TextBrowser - Could not open file. - ファイルを開けませんでした。 + Could not open file. + ファイルを開けませんでした。 - You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. - 現在利用できないアドレス%1にアクセスしようとしました。 URLが存在することを確認し、ページを再読み込みしてください。 + You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. + 現在利用できないアドレス%1にアクセスしようとしました。 URLが存在することを確認し、ページを再読み込みしてください。 - Connecting to %1 - %1 へ接続 + Connecting to %1 + %1 へ接続 - Sending to %1 - Sending to %1 + Sending to %1 + %1へ送信 - Reading from %1 - Reading from %1 + Reading from %1 + %1から読み取り - Download failed: %1. - ダウンロードに失敗しました: %1. + Download failed: %1. + ダウンロードに失敗しました: %1. - Previous - 前へ + Previous + 前へ - Forward - Forward + Forward + Forward - Home - ホーム + Home + ホーム - Refresh - 更新 + Refresh + 更新 - Copy - コピー + Copy + コピー - Select all - すべてを選択 + Select all + すべてを選択 - No description for - No description for + No description for + 説明がありません: - - + + Gui::DocumentModel - Application - アプリケーション + Application + アプリケーション - Labels & Attributes - ラベルと属性 + Labels & Attributes + ラベルと属性 - - + + Gui::EditorView - Modified file - 変更されたファイル + Modified file + 変更されたファイル - %1. + %1. This has been modified outside of the source editor. Do you want to reload it? - %1. - -This has been modified outside of the source editor. Do you want to reload it? + %1. +これはソースエディター以外で改変されています。再読み込みしますか? - Unsaved document - 未保存のドキュメント + Unsaved document + 未保存のドキュメント - The document has been modified. + The document has been modified. Do you want to save your changes? - The document has been modified. + The document has been modified. Do you want to save your changes? - FreeCAD macro (*.FCMacro);;Python (*.py) - FreeCADマクロ(*.FCMacro); Python(*.py) + FreeCAD macro (*.FCMacro);;Python (*.py) + FreeCADマクロ(*.FCMacro); Python(*.py) - Export PDF - PDFファイル形式でエクスポート + Export PDF + PDFファイル形式でエクスポート - PDF file (*.pdf) - PDFファイル(*.pdf) + PDF file (*.pdf) + PDFファイル(*.pdf) - untitled[*] - untitled[*] + untitled[*] + untitled[*] - - Editor - - Editor + - Editor + - エディター - %1 chars removed - %1 chars removed + %1 chars removed + %1文字を削除 - %1 chars added - %1 chars added + %1 chars added + %1文字を追加 - Formatted - Formatted + Formatted + フォーマット済み - - + + Gui::FileChooser - Select a file - ファイルを選択してください + Select a file + ファイルを選択してください - Select a directory - ディレクトリを選択 + Select a directory + ディレクトリを選択 - - + + Gui::FileDialog - Save as - 名前を付けて保存 + Save as + 名前を付けて保存 - Open - 開く + Open + 開く - - + + Gui::FileOptionsDialog - Extended - 拡張 + Extended + 拡張 - All files (*.*) - すべてのファイル (*.*) + All files (*.*) + すべてのファイル (*.*) - - + + Gui::Flag - Top left - 左上 + Top left + 左上 - Bottom left - 左下 + Bottom left + 左下 - Top right - 右上 + Top right + 右上 - Bottom right - 右下 + Bottom right + 右下 - Remove - 削除 + Remove + 削除 - - + + Gui::InventorNavigationStyle - Press CTRL and left mouse button - Ctrlキーを押しながらマウスの左ボタンを押してください + Press CTRL and left mouse button + Ctrlキーを押しながらマウスの左ボタンを押してください - Press middle mouse button - マウスの中央のボタンを押す + Press middle mouse button + マウスの中央のボタンを押す - Press left mouse button - マウスの左ボタンを押す + Press left mouse button + マウスの左ボタンを押す - Scroll middle mouse button - マウスの中央ボタンをスクロールする + Scroll middle mouse button + マウスの中央ボタンをスクロールする - - + + Gui::LocationDialog - Wrong direction - 間違った方向 + Wrong direction + 間違った方向 - Direction must not be the null vector - 方向はnullのベクトルであってはならない + Direction must not be the null vector + 方向はnullのベクトルであってはならない - X - X + X + X - Y - Y + Y + Y - Z - Z + Z + Z - User defined... - ユーザ定義... + User defined... + ユーザ定義... - - + + Gui::LocationWidget - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - z: + Z: + z: - Direction: - + Direction: + Direction: - - + + Gui::MacroCommand - Macros - マクロ + Macros + マクロ - - + + Gui::MainWindow - Dimension - 寸法 + Dimension + 寸法 - Ready - 準備完了 + Ready + 準備完了 - Toggles this toolbar - このツールバーを切り替えます + Toggles this toolbar + このツールバーを切り替えます - Toggles this dockable window - このドッキング可能なウィンドウを切り替える + Toggles this dockable window + このドッキング可能なウィンドウを切り替える - Close All - すべてを閉じる + Close All + すべてを閉じる - - + + Gui::ManualAlignment - Manual alignment - + Manual alignment + Manual alignment - The alignment is already in progress. - + The alignment is already in progress. + The alignment is already in progress. - Alignment[*] - + Alignment[*] + Alignment[*] - Please, select at least one point in the left and the right view - + Please, select at least one point in the left and the right view + Please, select at least one point in the left and the right view - Please, select at least %1 points in the left and the right view - + Please, select at least %1 points in the left and the right view + Please, select at least %1 points in the left and the right view - Please pick points in the left and right view - + Please pick points in the left and right view + Please pick points in the left and right view - The alignment has finished - + The alignment has finished + The alignment has finished - The alignment has been canceled - + The alignment has been canceled + The alignment has been canceled - Too few points picked in the left view. At least %1 points are needed. - + Too few points picked in the left view. At least %1 points are needed. + Too few points picked in the left view. At least %1 points are needed. - Too few points picked in the right view. At least %1 points are needed. - + Too few points picked in the right view. At least %1 points are needed. + Too few points picked in the right view. At least %1 points are needed. - Different number of points picked in left and right view. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Different number of points picked in left and right view. +On the left view %1 points are picked, +on the right view %2 points are picked. - Try to align group of views - + Try to align group of views + Try to align group of views - The alignment failed. + The alignment failed. How do you want to proceed? - + The alignment failed. +How do you want to proceed? - Retry - + Retry + Retry - Ignore - + Ignore + 無視 - Abort - + Abort + Abort - Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - Point picked at (%1,%2,%3) - + Point picked at (%1,%2,%3) + Point picked at (%1,%2,%3) - No point was picked - + No point was picked + No point was picked - - + + Gui::NetworkRetriever - Download started... + Download started... - ダウンロードを開始しました... + ダウンロードを開始しました... - - + + Gui::ProgressBar - Remaining: %1 - 残り:%1 + Remaining: %1 + 残り:%1 - Aborting - 中止します + Aborting + 中止します - Do you really want to abort the operation? - 操作を中止してよろしいですか? + Do you really want to abort the operation? + 操作を中止してよろしいですか? - - + + Gui::ProgressDialog - Remaining: %1 - 残り:%1 + Remaining: %1 + 残り:%1 - Aborting - 中止します + Aborting + 中止します - Do you really want to abort the operation? - 操作を中止してよろしいですか? + Do you really want to abort the operation? + 操作を中止してよろしいですか? - - + + Gui::PropertyEditor::PropertyModel - Property - プロパティ + Property + プロパティ - Value - + Value + - - + + Gui::PropertyView - View - ビュー + View + ビュー - Data - データ + Data + データ - - + + Gui::PythonConsole - System exit - システム終了 + System exit + システム終了 - The application is still running. + The application is still running. Do you want to exit without saving your data? - アプリケーションがまだ実行されています。あなたのデータを保存せずに終了しますか。 + アプリケーションがまだ実行されています。あなたのデータを保存せずに終了しますか。 - Python console - Python コンソール + Python console + Python コンソール - Unhandled PyCXX exception. - 未処理のPyCXX例外。 + Unhandled PyCXX exception. + 未処理のPyCXX例外。 - Unhandled FreeCAD exception. - 未処理のFreeCAD例外。 + Unhandled FreeCAD exception. + 未処理のFreeCAD例外。 - Unhandled unknown C++ exception. - 処理されていない不明な C++ 例外。 + Unhandled unknown C++ exception. + 処理されていない不明な C++ 例外。 - &Copy command - & コピー コマンド + &Copy command + & コピー コマンド - &Copy history - & コピー履歴 + &Copy history + & コピー履歴 - Save history as... - 名前を付けて履歴を保存(H)... + Save history as... + 名前を付けて履歴を保存(H)... - Insert file name... - ファイル名を挿入... + Insert file name... + ファイル名を挿入... - Save History - 履歴の保存。 + Save History + 履歴の保存。 - Macro Files (*.FCMacro *.py) - マクロ ファイル (*.FCMacro *.py) + Macro Files (*.FCMacro *.py) + マクロ ファイル (*.FCMacro *.py) - Insert file name - ファイル名を挿入します。 + Insert file name + ファイル名を挿入します。 - All Files (*.*) - すべてのファイル (*.*) + All Files (*.*) + すべてのファイル (*.*) - Python Input Dialog - Pythonの入力ダイアログ + Python Input Dialog + Pythonの入力ダイアログ - Unhandled std C++ exception. - Unhandled std C++ exception. + Unhandled std C++ exception. + Unhandled std C++ exception. - Word wrap - ワードラップ + Word wrap + ワードラップ - &Copy - &コピー + &Copy + コピー (&C) - &Paste - &ペースト + &Paste + &ペースト - Select All - 全て選択 + Select All + 全て選択 - Clear console - + Clear console + Clear console - - + + Gui::PythonEditor - Comment - コメント + Comment + コメント - Uncomment - コメントを解除 + Uncomment + コメントを解除 - - + + Gui::PythonInputField - OK - OK + OK + OK - Clear - クリア + Clear + クリア - - + + Gui::RecentFilesAction - Open file %1 - %1ファイルを開く + Open file %1 + %1ファイルを開く - File not found - ファイルが見つかりませんでした + File not found + ファイルが見つかりませんでした - The file '%1' cannot be opened. - ファイル '%1' を開くことができませんでした。 + The file '%1' cannot be opened. + ファイル '%1' を開くことができませんでした。 - - + + Gui::SelectModule - Select module - モジュールを選択します。 + Select module + モジュールを選択します。 - Open %1 as - %1 を開く + Open %1 as + %1 を開く - Select - 選択 + Select + 選択 - - + + Gui::StdCmdDescription - Help - ヘルプ + Help + ヘルプ - Des&cription - 説明(&C): + Des&cription + 説明(&C): - Long description of commands - コマンドの説明 + Long description of commands + コマンドの説明 - - + + Gui::StdCmdDownloadOnlineHelp - Help - ヘルプ + Help + ヘルプ - Download online help - Download online help + Download online help + オンライン ヘルプをダウンロードします。 - Download %1's online help - Download %1's online help + Download %1's online help + %1 のオンライン ・ ヘルプをダウンロードします。 - Non-existing directory - Non-existing directory + Non-existing directory + 存在しないディレクトリ - The directory '%1' does not exist. + The directory '%1' does not exist. Do you want to specify an existing directory? - The directory '%1' does not exist. + The directory '%1' does not exist. Do you want to specify an existing directory? - Missing permission - Missing permission + Missing permission + アクセス許可がありません - You don't have write permission to '%1' + You don't have write permission to '%1' Do you want to specify another directory? - You don't have write permission to '%1' + You don't have write permission to '%1' Do you want to specify another directory? - Stop downloading - Stop downloading + Stop downloading + ダウンロードを中止します。 - - + + Gui::StdCmdPythonHelp - Tools - ツール + Tools + ツール - Python Modules - Pythonモジュール + Python Modules + Pythonモジュール - Opens a browser to show the Python modules - Python モジュールを表示するには、ブラウザーを開きます。 + Opens a browser to show the Python modules + Python モジュールを表示するには、ブラウザーを開きます。 - - + + Gui::TaskBoxAngle - Angle - Angle + Angle + 角度 - - + + Gui::TaskBoxPosition - Position - Position + Position + Position - - + + Gui::TaskView::TaskAppearance - Display mode: - ディスプレイモード: + Plot mode: + プロットモード: - Plot mode: - プロットモード: + Point size: + 点の大きさ: - Point size: - 点の大きさ: + Line width: + 線幅: - Line width: - 線幅: + Transparency: + 透明度: - Transparency: - 透明度: + Appearance + 外観 - Appearance - 外観 + Document window: + Document window: - - Document window: - - - - + + Gui::TaskView::TaskEditControl - Edit - 編集 + Edit + 編集 - - + + Gui::TaskView::TaskSelectLinkProperty - Appearance - 外観 + Appearance + 外観 - ... - ... + ... + ... - edit selection - edit selection + edit selection + edit selection - - + + Gui::TouchpadNavigationStyle - Press left mouse button - マウスの左ボタンを押す + Press left mouse button + マウスの左ボタンを押す - Press SHIFT button - + Press SHIFT button + Press SHIFT button - Press ALT button - + Press ALT button + Press ALT button - Press PgUp/PgDown button - + Press PgUp/PgDown button + Press PgUp/PgDown button - - - Gui::Translator - - English - 英語 - - - + + Gui::TreeDockWidget - Tree view - ツリービュー + Tree view + ツリービュー - - + + Gui::TreeWidget - Create group... - グループを作成... + Create group... + グループを作成... - Create a group - グループを作成します。 + Create a group + グループを作成します。 - Group - グループ + Group + グループ - Rename - 名前の変更 + Rename + 名前の変更 - Rename object - オブジェクトの名前を変更します。 + Rename object + オブジェクトの名前を変更します。 - Labels & Attributes - ラベルと属性 + Labels & Attributes + ラベルと属性 - Application - アプリケーション + Application + アプリケーション - Finish editing - 編集を終了 + Finish editing + 編集を終了 - Finish editing object - オブジェクトの編集を終了します。 + Finish editing object + オブジェクトの編集を終了します。 - Activate document - ドキュメントをアクティブにする + Activate document + ドキュメントをアクティブにする - Activate document %1 - 文書の%1をアクティブにする + Activate document %1 + 文書の%1をアクティブにする - - + + Gui::View3DInventor - Export PDF - PDFファイル形式でエクスポート + Export PDF + PDFファイル形式でエクスポート - PDF file (*.pdf) - PDFファイル(*.pdf) + PDF file (*.pdf) + PDFファイル(*.pdf) - - + + Gui::WorkbenchGroup - Select the '%1' workbench - ワークベンチ'%1'を選択 + Select the '%1' workbench + ワークベンチ'%1'を選択 - - + + Position - Form - Form + Form + Form - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - z: + Z: + z: - 0.1 mm - 0.1 mm + 0.1 mm + 0.1 mm - 0.5 mm - 0.5 mm + 0.5 mm + 0.5 mm - 1 mm - 1 mm + 1 mm + 1 mm - 2 mm - 2 mm + 2 mm + 2 mm - 5 mm - 5 mm + 5 mm + 5 mm - 10 mm - 10 mm + 10 mm + 10 mm - 20 mm - 20 mm + 20 mm + 20 mm - 50 mm - 50 mm + 50 mm + 50 mm - 100 mm - 100 mm + 100 mm + 100 mm - 200 mm - 200 mm + 200 mm + 200 mm - 500 mm - 500 mm + 500 mm + 500 mm - 1 m - 1 m + 1 m + 1 m - 2 m - 2 m + 2 m + 2 m - 5 m - 5 m + 5 m + 5 m - Grid Snap in - Grid Snap in + Grid Snap in + Grid Snap in - - + + QDockWidget - Tree view - ツリービュー + Tree view + ツリービュー - Property view - プロパティの表示 + Property view + プロパティの表示 - Selection view - 選択ビュー + Selection view + 選択ビュー - Report view - レポートビュー + Report view + レポートビュー - Task View - タスクビュー + Task View + タスクビュー - Combo View - コンボビュー + Combo View + コンボビュー - Toolbox - ツールボックス + Toolbox + ツールボックス - Python console - Python コンソール + Python console + Python コンソール - Display properties - プロパティの表示 + Display properties + プロパティの表示 - - + + QObject - General - 標準 + General + 標準 - Display - 表示 + Display + 表示 - Unknown filetype - 不明なファイル形式 + Unknown filetype + 不明なファイル形式 - Cannot open unknown filetype: %1 - %1:不明なファイルタイプを開くことができません。 + Cannot open unknown filetype: %1 + %1:不明なファイルタイプを開くことができません。 - Cannot save to unknown filetype: %1 - 不明なファイル形式に保存できません: %1 + Cannot save to unknown filetype: %1 + 不明なファイル形式に保存できません: %1 - Workbench failure - ワークベンチのエラー + Workbench failure + ワークベンチのエラー - %1 - %1 + %1 + %1 - Unable to launch Qt Assistant (%1) - Qt アシスタント (%1) を起動できません。 + Unable to launch Qt Assistant (%1) + Qt アシスタント (%1) を起動できません。 - Exception - 例外 + Exception + 例外 - Open document - ドキュメントを開く + Open document + ドキュメントを開く - Import file - ファイルをインポート + Import file + ファイルをインポート - Export file - ファイルのエクスポート + Export file + ファイルのエクスポート - Printing... - 印刷... + Printing... + 印刷... - Cannot load workbench - ワークベンチを読み込めません + Cannot load workbench + ワークベンチを読み込めません - A general error occurred while loading the workbench - ワークベンチを読み込み中に一般的なエラーが発生しました + A general error occurred while loading the workbench + ワークベンチを読み込み中に一般的なエラーが発生しました - File not found - ファイルが見つかりませんでした + Save views... + ビューを保存... - Cannot open file %1 - ファイル %1 を開けません + Load views... + ビューを読み込み... - Save views... - ビューを保存... + Freeze view + ビューを固定 - Load views... - ビューを読み込み... + Clear views + ビューをクリア - Freeze view - ビューを固定 + Restore view &%1 + ビュー'%1'を復元 - Clear views - ビューをクリア + Save frozen views + 固定ビューを保存 - Restore view &%1 - ビュー'%1'を復元 + Frozen views (*.cam) + 固定ビュー(*.cam) - Save frozen views - 固定ビューを保存 + Restore views + ビューを復元 - Frozen views (*.cam) - 固定ビュー(*.cam) - - - Restore views - ビューを復元 - - - Importing the restored views would clear the already stored views. + Importing the restored views would clear the already stored views. Do you want to continue? - ビューの復元を行うと、現在保存されているビューはクリアされます。 + ビューの復元を行うと、現在保存されているビューはクリアされます。 処理を続行しますか? - Restore frozen views - 固定ビューの復元 + Restore frozen views + 固定ビューの復元 - Cannot open file '%1'. - ファイル %1 を開くことができません. + Cannot open file '%1'. + ファイル %1 を開くことができません. - Docked - ドッキングされている + Docked + ドッキングされている - Undocked - ドッキングされていない + Undocked + ドッキングされていない - Fullscreen - 全画面表示 + Fullscreen + 全画面表示 - files - ファイル + files + ファイル - Save picture - 画像を保存。 + Save picture + 画像を保存。 - New sub-group - 新しいサブグループ + New sub-group + 新しいサブグループ - Enter the name: - 名前を入力: + Enter the name: + 名前を入力: - New text item - 新しいテキスト項目 + New text item + 新しいテキスト項目 - Enter your text: - テキストを入力してください: + Enter your text: + テキストを入力してください: - New integer item - 新しい整数項目 + New integer item + 新しい整数項目 - Enter your number: - あなたの番号を入力します。 + Enter your number: + あなたの番号を入力します。 - New unsigned item - 新しい符号なし項目 + New unsigned item + 新しい符号なし項目 - New float item - 新しいフロートアイテム + New float item + 新しいフロートアイテム - New Boolean item - 新しいブール項目 + New Boolean item + 新しいブール項目 - Choose an item: - 項目を選択します: + Choose an item: + 項目を選択します: - Rename group - グループ名変更 + Rename group + グループ名変更 - The group '%1' cannot be renamed. - グループ '%1' の名前は変更できません。 + The group '%1' cannot be renamed. + グループ '%1' の名前は変更できません。 - Existing group - 既存のグループ + Existing group + 既存のグループ - The group '%1' already exists. - グループ '%1' は既に存在します。 + The group '%1' already exists. + グループ '%1' は既に存在します。 - Change value - 値を変更 + Change value + 値を変更 - Save document under new filename... - ドキュメントに新しいファイル名を付けて保存 + Save document under new filename... + ドキュメントに新しいファイル名を付けて保存 - Saving aborted - 保存は中断されました + Saving aborted + 保存は中断されました - Unsaved document - 未保存のドキュメント + Unsaved document + 未保存のドキュメント - Save document before close? - 閉じる前にドキュメントを保存しますか? + Save document before close? + 閉じる前にドキュメントを保存しますか? - Save Macro - マクロを保存します。 + Save Macro + マクロを保存します。 - Finish - 完了 + Finish + 完了 - Clear - クリア + Clear + クリア - Cancel - キャンセル + Cancel + キャンセル - Inner - 内側 + Inner + 内側 - Outer - 外側 + Outer + 外側 - No Browser - ブラウザーが無い + No Browser + ブラウザーが無い - Unable to open your browser. + Unable to open your browser. Please open a browser window and type in: http://localhost:%1. - お使いのブラウザーを開くことができません。ブラウザーウィンドウを開いて + お使いのブラウザーを開くことができません。ブラウザーウィンドウを開いて 次のURLを表示してください: http://localhost:%1 - No Server - サーバーが無い + No Server + サーバーが無い - Unable to start the server to port %1: %2. - %1: %2 のポートにサーバーを開始できませんでした。 + Unable to start the server to port %1: %2. + %1: %2 のポートにサーバーを開始できませんでした。 - Unable to open your system browser. - お使いのシステムのブラウザーを開くことができません。 + Unable to open your system browser. + お使いのシステムのブラウザーを開くことができません。 - Options... - オプション... + Options... + オプション... - Out of memory - メモリ不足 + Out of memory + メモリ不足 - Not enough memory available to display the data. - データを表示するのに十分なメモリがありません。 + Not enough memory available to display the data. + データを表示するのに十分なメモリがありません。 - Cannot find file %1 - ファイル %1 が見つかりません。 + Cannot find file %1 + ファイル %1 が見つかりません。 - Cannot find file %1 neither in %2 nor in %3 - %2 にも %3 にもファイル %1 が見つかりません。 + Cannot find file %1 neither in %2 nor in %3 + %2 にも %3 にもファイル %1 が見つかりません。 - Save %1 Document - %1 のドキュメントを保存します。 + Save %1 Document + %1 のドキュメントを保存します。 - %1 document (*.FCStd) - %1 のドキュメント (*.FCStd) + %1 document (*.FCStd) + %1 のドキュメント (*.FCStd) - Save As - 名前を付けて保存 + Save As + 名前を付けて保存 - %1 already exists. + %1 already exists. Do you want to replace it? - %1 は既に存在します。上書きしますか。 + %1 は既に存在します。上書きしますか。 - Document not closable - 閉じられないドキュメント + Document not closable + 閉じられないドキュメント - The document is not closable for the moment. - 今閉じることができないドキュメント + The document is not closable for the moment. + 今閉じることができないドキュメント - No OpenGL - OpenGLがありません + No OpenGL + OpenGLがありません - This system does not support OpenGL - このシステムは OpenGL をサポートしていません + This system does not support OpenGL + このシステムは OpenGL をサポートしていません - Help - ヘルプ + Help + ヘルプ - Unable to load documentation. + Unable to load documentation. In order to load it Qt 4.4 or higher is required. - ドキュメントを読み込むことができません。それをロードするために Qt 4.4 以降が必要です。 + ドキュメントを読み込むことができません。それをロードするために Qt 4.4 以降が必要です。 - %1 Help - %1 Help + %1 Help + %1 Help - Exporting PDF... - PDF ファイルをエクスポートしています + Exporting PDF... + PDF ファイルをエクスポートしています - Wrong selection - 誤った選択 + Wrong selection + 誤った選択 - Only one object selected. Please select two objects. + Only one object selected. Please select two objects. Be aware the point where you click matters. - Only one object selected. Please select two objects. + Only one object selected. Please select two objects. Be aware the point where you click matters. - Please select two objects. + Please select two objects. Be aware the point where you click matters. - Please select two objects. + Please select two objects. Be aware the point where you click matters. - New boolean item - 新しいブール値項目 + New boolean item + 新しいブール値項目 - Navigation styles - Navigation styles + Navigation styles + ナビゲーションスタイル - %1 navigation - %1 navigation + %1 navigation + %1 navigation - Move annotation - Move annotation + Move annotation + 注釈を移動 - Transform - 変換 + Transform + 変換 - The document is in editing mode and thus cannot be closed for the moment. + The document is in editing mode and thus cannot be closed for the moment. You either have to finish or cancel the editing in the task panel. - The document is in editing mode and thus cannot be closed for the moment. + The document is in editing mode and thus cannot be closed for the moment. You either have to finish or cancel the editing in the task panel. - - + + StdBoxSelection - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Box selection - + Box selection + Box selection - - + + StdCmdAbout - Help - ヘルプ + Help + ヘルプ - &About %1 - %1について(&A) + &About %1 + %1について(&A) - About %1 - %1 について + About %1 + %1 について - - + + StdCmdAboutQt - Help - ヘルプ + Help + ヘルプ - About &Qt - Qtについて(&Q) + About &Qt + Qtについて(&Q) - About Qt - Qtについて + About Qt + Qtについて - - + + StdCmdActivateNextWindow - Window - ウィンドウ + Window + ウィンドウ - Ne&xt - 次へ(&X) + Ne&xt + 次へ(&X) - Activate next window - 次のウィンドウをアクティブにする + Activate next window + 次のウィンドウをアクティブにする - - + + StdCmdActivatePrevWindow - Window - ウィンドウ + Window + ウィンドウ - Pre&vious - 前へ(&V) + Pre&vious + 前へ(&V) - Activate previous window - 前のウィンドウをアクティブにする + Activate previous window + 前のウィンドウをアクティブにする - - + + StdCmdAlignment - Edit - 編集 + Edit + 編集 - Alignment... - + Alignment... + Alignment... - Align the selected objects - + Align the selected objects + Align the selected objects - - + + StdCmdArrangeIcons - Window - ウィンドウ + Window + ウィンドウ - Arrange &Icons - アイコンの整列(&I) + Arrange &Icons + アイコンの整列(&I) - Arrange Icons - アイコンの整列 + Arrange Icons + アイコンの整列 - - + + StdCmdAxisCross - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Toggle axis cross - Toggle axis cross + Toggle axis cross + Toggle axis cross - - + + StdCmdCascadeWindows - Window - ウィンドウ + Window + ウィンドウ - &Cascade - カスケード(&C) + &Cascade + カスケード(&C) - Tile pragmatic - タイル + Tile pragmatic + タイル - - + + StdCmdCloseActiveWindow - Window - ウィンドウ + Window + ウィンドウ - Cl&ose - 閉じる(&O) + Cl&ose + 閉じる(&O) - Close active window - アクティブなウィンドウを閉じる + Close active window + アクティブなウィンドウを閉じる - - + + StdCmdCloseAllWindows - Window - ウィンドウ + Window + ウィンドウ - Close Al&l - すべて閉じる(&L) + Close Al&l + すべて閉じる(&L) - Close all windows - すべてのウィンドウを閉じる + Close all windows + すべてのウィンドウを閉じる - - + + StdCmdCommandLine - Tools - ツール + Tools + ツール - Start command &line... - Start command &line... + Start command &line... + コマンドラインを開始...(&L) - Opens the command line in the console - Opens the command line in the console + Opens the command line in the console + コンソールでコマンドラインを開きます - - + + StdCmdCopy - Edit - 編集 + Edit + 編集 - C&opy - コピー(&O) + C&opy + コピー(&O) - Copy operation - Copy operation + Copy operation + Copy operation - - + + StdCmdCut - Edit - 編集 + Edit + 編集 - &Cut - 切り取り(&C) + &Cut + 切り取り(&C) - Cut out - Cut out + Cut out + Cut out - - - StdCmdDDuplicateSelection - - Edit - 編集 - - - Duplicate selection - Duplicate selection - - - Put duplicates of the selected objects to the active document - Put duplicates of the selected objects to the active document - - - + + StdCmdDelete - Edit - 編集 + Edit + 編集 - &Delete - 削除(&D) + &Delete + 削除(&D) - Deletes the selected objects - 選択したオブジェクトを削除 + Deletes the selected objects + 選択したオブジェクトを削除 - - + + StdCmdDemoMode - Standard-View - 標準ビュー + Standard-View + 標準ビュー - View turntable... - View turntable... + View turntable... + View turntable... - View turntable - View turntable + View turntable + View turntable - - + + StdCmdDlgCustomize - Tools - ツール + Tools + ツール - Cu&stomize... - カスタマイズ(&S) + Cu&stomize... + カスタマイズ(&S) - Customize toolbars and command bars - カスタマイズツールバーとコマンドバー + Customize toolbars and command bars + カスタマイズツールバーとコマンドバー - - + + StdCmdDlgMacroExecute - Macros ... - マクロ... + Macros ... + マクロ... - Opens a dialog to let you execute a recorded macro - 記録されたマクロを実行できるように、ダイアログ ボックスを開きます + Opens a dialog to let you execute a recorded macro + 記録されたマクロを実行できるように、ダイアログ ボックスを開きます - Macro - マクロ + Macro + マクロ - - + + StdCmdDlgMacroExecuteDirect - Macro - マクロ + Macro + マクロ - Execute macro - マクロの実行 + Execute macro + マクロの実行 - Execute the macro in the editor - エディタでマクロを実行します。 + Execute the macro in the editor + エディタでマクロを実行します。 - - + + StdCmdDlgMacroRecord - &Macro recording ... - マクロの記録 (&M). + &Macro recording ... + マクロの記録 (&M). - Opens a dialog to record a macro - Opens a dialog to record a macro + Opens a dialog to record a macro + マクロを記録するためのダイアログを開きます。 - Macro - マクロ + Macro + マクロ - - + + StdCmdDlgParameter - Tools - ツール + Tools + ツール - E&dit parameters ... - E&dit parameters ... + E&dit parameters ... + パラメーターを変更...(&D) - Opens a Dialog to edit the parameters - パラメーターを編集するためのダイアログを開きます + Opens a Dialog to edit the parameters + パラメーターを編集するためのダイアログを開きます - - + + StdCmdDlgPreferences - Tools - ツール + Tools + ツール - &Preferences ... - 設定 (&P)... + &Preferences ... + 設定 (&P)... - Opens a Dialog to edit the preferences - 設定を編集するためのダイアログを開きます + Opens a Dialog to edit the preferences + 設定を編集するためのダイアログを開きます - - + + StdCmdDockViewMenu - View - ビュー + View + ビュー - Vie&ws - Vie&ws + Vie&ws + ビュー(&w) - Toggles this window - Toggles this window + Toggles this window + ウィンドウを切り替える - - + + StdCmdDrawStyle - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Draw style - Draw style + Draw style + Draw style - - + + StdCmdDuplicateSelection - Edit - 編集 + Edit + 編集 - Duplicate selection - Duplicate selection + Duplicate selection + 選択を複製する - Put duplicates of the selected objects to the active document - Put duplicates of the selected objects to the active document + Put duplicates of the selected objects to the active document + Put duplicates of the selected objects to the active document - - + + StdCmdEdit - Edit - 編集 + Edit + 編集 - Toggle &Edit mode - + Toggle &Edit mode + Toggle &Edit mode - Toggles the selected object's edit mode - + Toggles the selected object's edit mode + Toggles the selected object's edit mode - Enters or leaves the selected object's edit mode - + Enters or leaves the selected object's edit mode + Enters or leaves the selected object's edit mode - - + + StdCmdExport - File - ファイル + File + ファイル - &Export... - &Export... + &Export... + エクスポート(&E)... - Export an object in the active document - Export an object in the active document + Export an object in the active document + アクティブなドキュメント内のオブジェクトをエクスポートする - Supported formats - Supported formats + No selection + No selection - No selection - + Please select first the objects you want to export. + Please select first the objects you want to export. - - Please select first the objects you want to export. - - - - + + StdCmdExportGraphviz - Tools - ツール + Tools + ツール - Dependency graph... - + Dependency graph... + Dependency graph... - Show the dependency graph of the objects in the active document - + Show the dependency graph of the objects in the active document + Show the dependency graph of the objects in the active document - - + + StdCmdFeatRecompute - File - ファイル + File + ファイル - &Recompute - &Recompute + &Recompute + 再計算(&R) - Recompute feature or document - Recompute feature or document + Recompute feature or document + フィーチャーまたはドキュメントを再計算 - - + + StdCmdFreeCADWebsite - Help - ヘルプ + Help + ヘルプ - FreeCAD Website - FreeCAD Website + FreeCAD Website + FreeCADウェブサイト - The FreeCAD website - FreeCADウェブサイト + The FreeCAD website + FreeCADウェブサイト - - + + StdCmdFreezeViews - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Freeze display - Freeze display + Freeze display + Freeze display - Freezes the current view position - 現在のビューを固定 + Freezes the current view position + 現在のビューを固定 - - + + StdCmdHideObjects - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Hide all objects - すべてのオブジェクトを非表示にします。 + Hide all objects + すべてのオブジェクトを非表示にします。 - Hide all objects in the document - ドキュメント内のすべてのオブジェクトを非表示にします。 + Hide all objects in the document + ドキュメント内のすべてのオブジェクトを非表示にします。 - - + + StdCmdHideSelection - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Hide selection - Hide selection + Hide selection + 選択オブジェクトを隠す - Hide all selected objects - 選択したオブジェクトをすべて非表示にします。 + Hide all selected objects + 選択したオブジェクトをすべて非表示にします。 - - + + StdCmdImport - File - ファイル + File + ファイル - &Import... - インポート(&I)... + &Import... + インポート(&I)... - Import a file in the active document - アクティブなドキュメント内のファイルをインポートします。 + Import a file in the active document + アクティブなドキュメント内のファイルをインポートします。 - Supported formats - Supported formats + Supported formats + サポートされている形式 - All files (*.*) - すべてのファイル (*.*) + All files (*.*) + すべてのファイル (*.*) - - + + StdCmdMacroStartDebug - Macro - マクロ + Macro + マクロ - Debug macro - マクロをデバッグする + Debug macro + マクロをデバッグする - Start debugging of macro - マクロのデバッグを開始します。 + Start debugging of macro + マクロのデバッグを開始します。 - - + + StdCmdMacroStepOver - Macro - マクロ + Macro + マクロ - Step over - ステップ オーバー + Step over + ステップ オーバー - - + + StdCmdMacroStopDebug - Macro - マクロ + Macro + マクロ - Stop debugging - デバッグを停止します + Stop debugging + デバッグを停止します - Stop debugging of macro - Stop debugging of macro + Stop debugging of macro + Stop debugging of macro - - + + StdCmdMacroStopRecord - Macro - マクロ + Macro + マクロ - S&top macro recording - マクロの記録を停止(&S) + S&top macro recording + マクロの記録を停止(&S) - Stop the macro recording session - マクロの記録セッションを停止します。 + Stop the macro recording session + マクロの記録セッションを停止します。 - - + + StdCmdMeasureDistance - View - ビュー + View + ビュー - Measure distance - 距離を測定 + Measure distance + 距離を測定 - - + + StdCmdMeasurementSimple - Tools - ツール + Tools + ツール - Mesure distance - Mesure distance + Measures distance between two selected objects + Measures distance between two selected objects - Measures distance between two selected objects - Measures distance between two selected objects + Measure distance + 距離を測定 - - Measure distance - 距離を測定 - - - + + StdCmdMergeProjects - File - ファイル + File + ファイル - Merge project... - Merge project... + Merge project... + Merge project... - Merge project - Merge project + Merge project + Merge project - %1 document (*.fcstd) - %1 document (*.fcstd) + %1 document (*.fcstd) + %1 document (*.fcstd) - Cannot merge project with itself. - Cannot merge project with itself. + Cannot merge project with itself. + Cannot merge project with itself. - - + + StdCmdNew - File - ファイル + File + ファイル - &New - 新規(&N) + &New + 新規(&N) - Create a new empty document - 新しい空のドキュメントを作成します。 + Create a new empty document + 新しい空のドキュメントを作成します。 - - + + StdCmdOnlineHelp - Help - ヘルプ + Help + ヘルプ - Show help to the application - アプリケーションにヘルプを表示する + Show help to the application + アプリケーションにヘルプを表示する - - - StdCmdOnlineHelpPython - - Help - ヘルプ - - - Python Manuals - Python のマニュアル - - - Show the Python documentation - Python のドキュメントを表示します。 - - - + + StdCmdOnlineHelpWebsite - Help - ヘルプ + Help + ヘルプ - Help Website - サイトのヘルプ + Help Website + サイトのヘルプ - The website where the help is maintained - ヘルプが維持されているウェブサイト + The website where the help is maintained + ヘルプが維持されているウェブサイト - - + + StdCmdOpen - File - ファイル + File + ファイル - &Open... - 開く (&o). + &Open... + 開く (&o). - Open a document or import files - ドキュメントを開くか、ファイルをインポートします。 + Open a document or import files + ドキュメントを開くか、ファイルをインポートします。 - Supported formats - Supported formats + Supported formats + サポートされている形式 - All files (*.*) - すべてのファイル (*.*) + All files (*.*) + すべてのファイル (*.*) - - + + StdCmdPaste - Edit - 編集 + Edit + 編集 - &Paste - &ペースト + &Paste + &ペースト - Paste operation - 貼り付け操作 + Paste operation + 貼り付け操作 - - + + StdCmdPlacement - Edit - 編集 + Edit + 編集 - Placement... - Placement... + Placement... + Placement... - Place the selected objects - Place the selected objects + Place the selected objects + Place the selected objects - - + + StdCmdPrint - File - ファイル + File + ファイル - &Print... - &プリント... + &Print... + &プリント... - Print the document - ドキュメントを印刷します。 + Print the document + ドキュメントを印刷します。 - - + + StdCmdPrintPdf - File - ファイル + File + ファイル - &Export PDF... - PDFファイル形式でエクスポート(&E)... + &Export PDF... + PDFファイル形式でエクスポート(&E)... - Export the document as PDF - ドキュメントを PDF ファイル形式でエクスポートします。 + Export the document as PDF + ドキュメントを PDF ファイル形式でエクスポートします。 - - + + StdCmdPrintPreview - File - ファイル + File + ファイル - &Print preview... - 印刷プレビュー (&P). + &Print preview... + 印刷プレビュー (&P). - Print the document - ドキュメントを印刷します。 + Print the document + ドキュメントを印刷します。 - Print preview - 印刷プレビュー + Print preview + 印刷プレビュー - - + + StdCmdProjectInfo - File - ファイル + File + ファイル - Project i&nformation... - プロジェクトインフォメーション(&I) + Project i&nformation... + プロジェクトインフォメーション(&I) - Show details of the currently active project - 現在アクティブなプロジェクトの詳細を表示します。 + Show details of the currently active project + 現在アクティブなプロジェクトの詳細を表示します。 - - + + StdCmdProjectUtil - Tools - ツール + Tools + ツール - Project utility... - プロジェクトユーティリティ... + Project utility... + プロジェクトユーティリティ... - Utility to extract or create project files - Utility to extract or create project files + Utility to extract or create project files + Utility to extract or create project files - - + + StdCmdPythonWebsite - Help - ヘルプ + Help + ヘルプ - Python Website - Python のウェブサイト + Python Website + Python のウェブサイト - The official Python website - Python の公式サイト + The official Python website + Python の公式サイト - - + + StdCmdQuit - File - ファイル + File + ファイル - E&xit - 終了(&X) + E&xit + 終了(&X) - Quits the application - アプリケーションを終了します。 + Quits the application + アプリケーションを終了します。 - - + + StdCmdRandomColor - File - ファイル + File + ファイル - Random color - ランダムな色 + Random color + ランダムな色 - - + + StdCmdRecentFiles - File - ファイル + File + ファイル - Recent files - 最近開いたファイル + Recent files + 最近開いたファイル - Recent file list - 最近使ったファイルの一覧 + Recent file list + 最近使ったファイルの一覧 - - + + StdCmdRedo - Edit - 編集 + Edit + 編集 - &Redo - やり直し(&R) + &Redo + やり直し(&R) - Redoes a previously undone action - 取り消した操作をやり直します。 + Redoes a previously undone action + 取り消した操作をやり直します。 - - + + StdCmdRefresh - Edit - 編集 + Edit + 編集 - &Refresh - 更新(&R) + &Refresh + 更新(&R) - Recomputes the current active document - 現在アクティブなドキュメントを再計算します。 + Recomputes the current active document + 現在アクティブなドキュメントを再計算します。 - - + + StdCmdSave - File - ファイル + File + ファイル - &Save - 保存 (&s) + &Save + 保存 (&s) - Save the active document - 作業中のドキュメントを保存します。 + Save the active document + 作業中のドキュメントを保存します。 - - + + StdCmdSaveAs - File - ファイル + File + ファイル - Save &As... - 名前を付けて保存(&A) + Save &As... + 名前を付けて保存(&A) - Save the active document under a new file name - 新しいファイル名で、作業中のドキュメントを保存する + Save the active document under a new file name + 新しいファイル名で、作業中のドキュメントを保存する - - + + StdCmdSceneInspector - Tools - ツール + Tools + ツール - Scene inspector... - Scene inspector... + Scene inspector... + Scene inspector... - Scene inspector - Scene inspector + Scene inspector + Scene inspector - - + + StdCmdSelectAll - Edit - 編集 + Edit + 編集 - Select &All - すべて選択(&A) + Select &All + すべて選択(&A) - Select all - すべてを選択 + Select all + すべてを選択 - - + + StdCmdSetAppearance - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Appearance... - Appearance... + Appearance... + Appearance... - Sets the display properties of the selected object - 選択したオブジェクトの表示プロパティを設定します + Sets the display properties of the selected object + 選択したオブジェクトの表示プロパティを設定します - - + + StdCmdShowObjects - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Show all objects - すべてのオブジェクトを表示します。 + Show all objects + すべてのオブジェクトを表示します。 - Show all objects in the document - ドキュメント内のすべてのオブジェクトを表示します。 + Show all objects in the document + ドキュメント内のすべてのオブジェクトを表示します。 - - + + StdCmdShowSelection - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Show selection - 表示の選択 + Show selection + 表示の選択 - Show all selected objects - 選択したすべてのオブジェクトを表示する + Show all selected objects + 選択したすべてのオブジェクトを表示する - - + + StdCmdStatusBar - View - ビュー + View + ビュー - Status bar - ステータスバー + Status bar + ステータスバー - Toggles the status bar - ステータス バーを切り替えます + Toggles the status bar + ステータス バーを切り替えます - - + + StdCmdTextureMapping - Tools - ツール + Tools + ツール - Texture mapping... - テクスチャマッピング... + Texture mapping... + テクスチャマッピング... - Texture mapping - テクスチャーマッピング + Texture mapping + テクスチャーマッピング - - + + StdCmdTileWindows - Window - ウィンドウ + Window + ウィンドウ - &Tile - タイル (&T) + &Tile + タイル (&T) - Tile the windows - ウィンドウを並べて表示 + Tile the windows + ウィンドウを並べて表示 - - + + StdCmdToggleBreakpoint - Macro - マクロ + Macro + マクロ - Toggle breakpoint - ブレークポイントの切り替え + Toggle breakpoint + ブレークポイントの切り替え - - + + StdCmdToggleClipPlane - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Clipping plane - Clipping plane + Clipping plane + Clipping plane - Toggles clipping plane for active view - Toggles clipping plane for active view + Toggles clipping plane for active view + Toggles clipping plane for active view - - + + StdCmdToggleNavigation - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Toggle navigation/Edit mode - Toggle navigation/Edit mode + Toggle navigation/Edit mode + Toggle navigation/Edit mode - Toggle between navigation and edit mode - Toggle between navigation and edit mode + Toggle between navigation and edit mode + Toggle between navigation and edit mode - - + + StdCmdToggleObjects - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Toggle all objects - すべてのオブジェクトを切り替える + Toggle all objects + すべてのオブジェクトを切り替える - Toggles visibility of all objects in the active document - Toggles visibility of all objects in the active document + Toggles visibility of all objects in the active document + Toggles visibility of all objects in the active document - - + + StdCmdToggleSelectability - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Toggle selectability - Toggle selectability + Toggle selectability + Toggle selectability - Toggles the property of the objects to get selected in the 3D-View - Toggles the property of the objects to get selected in the 3D-View + Toggles the property of the objects to get selected in the 3D-View + Toggles the property of the objects to get selected in the 3D-View - - + + StdCmdToggleVisibility - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Toggle visibility - 表示切り替え + Toggle visibility + 表示切り替え - Toggles visibility - 表示切り替え + Toggles visibility + 表示切り替え - - + + StdCmdToolBarMenu - View - ビュー + View + ビュー - Tool&bars - ツールバー(&B) + Tool&bars + ツールバー(&B) - Toggles this window - Toggles this window + Toggles this window + ウィンドウを切り替える - - + + StdCmdTransform - Edit - 編集 + Edit + 編集 - Transform... - Transform... + Transform... + Transform... - Transform the geometry of selected objects - Transform the geometry of selected objects + Transform the geometry of selected objects + Transform the geometry of selected objects - - + + StdCmdTreeSelection - View - ビュー + View + ビュー - Go to selection - Go to selection + Go to selection + Go to selection - Scroll to first selected item - 最初に選択した項目までスクロール + Scroll to first selected item + 最初に選択した項目までスクロール - - + + StdCmdUndo - Edit - 編集 + Edit + 編集 - &Undo - 元に戻す(&U) + &Undo + 元に戻す(&U) - Undo exactly one action - 1つのアクションを元に戻す + Undo exactly one action + 1つのアクションを元に戻す - - + + StdCmdUserInterface - View - ビュー + View + ビュー - Dock views - Dock views + Dock views + Dock views - Dock all top-level views - Dock all top-level views + Dock all top-level views + Dock all top-level views - - + + StdCmdViewAxo - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Axometric - Axometric + Axometric + Axometric - Set to axometric view - Set to axometric view + Set to axometric view + Set to axometric view - - + + StdCmdViewBottom - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Bottom - Bottom + Bottom + Bottom - Set to bottom view - 底面ビューに設定 + Set to bottom view + 底面ビューに設定 - - + + StdCmdViewCreate - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Create new view - ビューを作成 + Create new view + ビューを作成 - Creates a new view window for the active document - Creates a new view window for the active document + Creates a new view window for the active document + Creates a new view window for the active document - - + + StdCmdViewExample1 - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Inventor example #1 - Inventor example #1 + Inventor example #1 + Inventor example #1 - Shows a 3D texture with manipulator - Shows a 3D texture with manipulator + Shows a 3D texture with manipulator + Shows a 3D texture with manipulator - - + + StdCmdViewExample2 - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Inventor example #2 - Inventor example #2 + Inventor example #2 + Inventor example #2 - Shows spheres and drag-lights - Shows spheres and drag-lights + Shows spheres and drag-lights + Shows spheres and drag-lights - - + + StdCmdViewExample3 - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Inventor example #3 - Inventor example #3 + Inventor example #3 + Inventor example #3 - Shows a animated texture - Shows a animated texture + Shows a animated texture + Shows a animated texture - - + + StdCmdViewFitAll - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Fit all - Fit all + Fit all + Fit all - Fits the whole content on the screen - Fits the whole content on the screen + Fits the whole content on the screen + Fits the whole content on the screen - - + + StdCmdViewFitSelection - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Fit selection - Fit selection + Fit selection + Fit selection - Fits the selected content on the screen - Fits the selected content on the screen + Fits the selected content on the screen + Fits the selected content on the screen - - + + StdCmdViewFront - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Front - Front + Front + 前面 - Set to front view - Set to front view + Set to front view + Set to front view - - + + StdCmdViewIvIssueCamPos - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Issue camera position - Issue camera position + Issue camera position + Issue camera position - Issue the camera position to the console and to a macro, to easily recall this position - Issue the camera position to the console and to a macro, to easily recall this position + Issue the camera position to the console and to a macro, to easily recall this position + Issue the camera position to the console and to a macro, to easily recall this position - - + + StdCmdViewIvStereoInterleavedColumns - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Stereo Interleaved Columns - Stereo Interleaved Columns + Stereo Interleaved Columns + Stereo Interleaved Columns - Switch stereo viewing to Interleaved Columns - Switch stereo viewing to Interleaved Columns + Switch stereo viewing to Interleaved Columns + Switch stereo viewing to Interleaved Columns - - + + StdCmdViewIvStereoInterleavedRows - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Stereo Interleaved Rows - Stereo Interleaved Rows + Stereo Interleaved Rows + Stereo Interleaved Rows - Switch stereo viewing to Interleaved Rows - Switch stereo viewing to Interleaved Rows + Switch stereo viewing to Interleaved Rows + Switch stereo viewing to Interleaved Rows - - + + StdCmdViewIvStereoOff - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Stereo Off - Stereo Off + Stereo Off + Stereo Off - Switch stereo viewing off - Switch stereo viewing off + Switch stereo viewing off + Switch stereo viewing off - - + + StdCmdViewIvStereoQuadBuff - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Stereo quad buffer - Stereo quad buffer + Stereo quad buffer + Stereo quad buffer - Switch stereo viewing to quad buffer - Switch stereo viewing to quad buffer + Switch stereo viewing to quad buffer + Switch stereo viewing to quad buffer - - + + StdCmdViewIvStereoRedGreen - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Stereo red/green - Stereo red/green + Stereo red/green + Stereo red/green - Switch stereo viewing to red/green - Switch stereo viewing to red/green + Switch stereo viewing to red/green + Switch stereo viewing to red/green - - + + StdCmdViewLeft - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Left - Left + Left + 左面 - Set to left view - Set to left view + Set to left view + Set to left view - - + + StdCmdViewRear - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Rear - Rear + Rear + 背面 - Set to rear view - Set to rear view + Set to rear view + Set to rear view - - + + StdCmdViewRight - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Right - Right + Right + Right - Set to right view - Set to right view + Set to right view + Set to right view - - + + StdCmdViewRotateLeft - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Rotate Left - + Rotate Left + Rotate Left - Rotate the view by 90° counter-clockwise - + Rotate the view by 90° counter-clockwise + Rotate the view by 90° counter-clockwise - - + + StdCmdViewRotateRight - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Rotate Right - + Rotate Right + Rotate Right - Rotate the view by 90° clockwise - + Rotate the view by 90° clockwise + Rotate the view by 90° clockwise - - + + StdCmdViewTop - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Top - Top + Top + 上面 - Set to top view - Set to top view + Set to top view + Set to top view - - + + StdCmdWhatsThis - Help - ヘルプ + Help + ヘルプ - &What's This? - &What's This? + &What's This? + &What's This? - What's This - What's This + What's This + What's This - - + + StdCmdWindows - Window - ウィンドウ + Window + ウィンドウ - &Windows... - &Windows... + &Windows... + &Windows... - Windows list - Windows list + Windows list + Windows list - - + + StdCmdWindowsMenu - Window - ウィンドウ + Window + ウィンドウ - Activates this window - Activates this window + Activates this window + このウィンドウをアクティブにします。 - - + + StdCmdWorkbench - View - ビュー + View + ビュー - Workbench - Workbench + Workbench + ワークベンチ - Switch between workbenches - Switch between workbenches + Switch between workbenches + ワークベンチを切り替える - - + + StdOrthographicCamera - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Orthographic view - Orthographic view + Orthographic view + 正射投影表示 - Switches to orthographic view mode - Switches to orthographic view mode + Switches to orthographic view mode + Switches to orthographic view mode - - + + StdPerspectiveCamera - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Perspective view - Perspective view + Perspective view + パースペクティブ表示 - Switches to perspective view mode - Switches to perspective view mode + Switches to perspective view mode + パースペクティブモードに切り替えます - - + + StdViewBoxZoom - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Box zoom - Box zoom + Box zoom + Box zoom - - + + StdViewDockUndockFullscreen - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Document window - ドキュメントウィンドウ + Document window + Document window - Display the active view either in fullscreen, in undocked or docked mode - Display the active view either in fullscreen, in undocked or docked mode + Display the active view either in fullscreen, in undocked or docked mode + Display the active view either in fullscreen, in undocked or docked mode - - + + StdViewScreenShot - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Save picture... - 画像を保存... + Save picture... + 画像を保存... - Creates a screenshot of the active view - Creates a screenshot of the active view + Creates a screenshot of the active view + アクティブなビューのスクリーン ショットを作成します。 - - + + StdViewZoomIn - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Zoom In - Zoom In + Zoom In + ズームイン - - + + StdViewZoomOut - Standard-View - 標準ビュー + Standard-View + 標準ビュー - Zoom Out - Zoom Out + Zoom Out + ズームアウト - - + + Std_DrawStyle - As is - As is + As is + As is - Normal mode - Normal mode + Normal mode + Normal mode - Wireframe - Wireframe + Wireframe + Wireframe - Wireframe mode - Wireframe mode + Wireframe mode + Wireframe mode - - + + Std_ExportGraphviz - Graphviz not found - + Graphviz not found + Graphviz not found - Graphviz couldn't be found on your system. -Do you want to specify its installation path if it's already installed? - + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? - Graphviz installation path - + Graphviz installation path + Graphviz installation path - Dependency graph - + Dependency graph + Dependency graph - Graphviz failed - + Graphviz failed + Graphviz failed - Graphviz failed to create an image file - + Graphviz failed to create an image file + Graphviz failed to create an image file - - + + Workbench - &File - ファイル(&F) + &File + ファイル(&F) - &Edit - 編集(&E) + &Edit + 編集(&E) - Standard views - 標準のビュー + Standard views + 標準のビュー - &Stereo - ステレオ(&S) + &Stereo + ステレオ(&S) - &Zoom - ズーム(&Z) + &Zoom + ズーム(&Z) - Visibility - 可視性 + Visibility + 可視性 - &View - 表示(&V) + &View + 表示(&V) - &Tools - ツール(&T) + &Tools + ツール(&T) - &Macro - &Macro + &Macro + &Macro - &Windows - ウインドウ(&W) + &Windows + ウインドウ(&W) - &On-line help - オンライン ヘルプ(&O) + &On-line help + オンライン ヘルプ(&O) - &Help - ヘルプ (&H) + &Help + ヘルプ (&H) - File - ファイル + File + ファイル - Macro - マクロ + Macro + マクロ - View - ビュー + View + ビュー - Special Ops - 特殊設定 + Special Ops + 特殊設定 - - + + testClass - test - test + test + test - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - Choose the style of the Task Panel - タスクパネルのスタイルを選択します。 + Choose the style of the Task Panel + タスクパネルのスタイルを選択します。 - Default - デフォルト + Default + デフォルト - Windows XP - Windows XP + Windows XP + Windows XP - + diff --git a/src/Gui/Language/FreeCAD_nl.qm b/src/Gui/Language/FreeCAD_nl.qm index cf3ecf7ff..4f232dad6 100644 Binary files a/src/Gui/Language/FreeCAD_nl.qm and b/src/Gui/Language/FreeCAD_nl.qm differ diff --git a/src/Gui/Language/FreeCAD_nl.ts b/src/Gui/Language/FreeCAD_nl.ts index efebdd05a..f87d4751f 100644 --- a/src/Gui/Language/FreeCAD_nl.ts +++ b/src/Gui/Language/FreeCAD_nl.ts @@ -1,5898 +1,5828 @@ - - + + Angle - Form - Form + Form + Vorm - A: - A: + A: + A: - B: - B: + B: + B: - C: - C: + C: + C: - Angle Snap - Hoek-kleven + Angle Snap + Hoek-kleven - - 1 ° - + + 1 ° + - - 2 ° - + + 2 ° + - - 5 ° - + + 5 ° + - - 10 ° - 10° + + 10 ° + 10° - - 20 ° - 20° + + 20 ° + 20° - - 45 ° - 45° + + 45 ° + 45° - - 90 ° - 90° + + 90 ° + 90° - - 180 ° - 180° + + 180 ° + 180° - - + + Gui::AccelLineEdit - none - geen + none + geen - - + + Gui::ActionSelector - Available: - + Available: + Available: - Selected: - + Selected: + Selected: - Add - Toevoegen + Add + Toevoegen - Remove - Verwijderen + Remove + Verwijderen - Move up - Naar boven verplaatsen + Move up + Naar boven verplaatsen - Move down - Naar beneden verplaatsen + Move down + Naar beneden verplaatsen - - + + Gui::AlignmentView - Movable object - + Movable object + Movable object - Fixed object - + Fixed object + Fixed object - - + + Gui::BlenderNavigationStyle - Press left mouse button - Druk op de linker muisknop + Press left mouse button + Druk op de linker muisknop - Press SHIFT and middle mouse button - Druk op SHIFT en middelste muisknop + Press SHIFT and middle mouse button + Druk op SHIFT en middelste muisknop - Press middle mouse button - Druk op de middelste muisknop + Press middle mouse button + Druk op de middelste muisknop - Scroll middle mouse button - Scroll middelste muisknop + Scroll middle mouse button + Scroll middelste muisknop - - + + Gui::CADNavigationStyle - Press left mouse button - Druk op de linker muisknop + Press left mouse button + Druk op de linker muisknop - Press middle mouse button - Druk op de middelste muisknop + Press middle mouse button + Druk op de middelste muisknop - Press left and middle mouse button - Druk op de linker- en middelste muisknop + Press left and middle mouse button + Druk op de linker- en middelste muisknop - Scroll middle mouse button - Scroll middelste muisknop + Scroll middle mouse button + Scroll middelste muisknop - - + + Gui::Command - Standard - Standaard + Standard + Standaard - - + + Gui::ContainerDialog - &OK - &OK + &OK + &OK - &Cancel - &Annuleren + &Cancel + &Annuleren - - + + Gui::ControlSingleton - Task panel - Taken-deelvenster + Task panel + Taken-deelvenster - - + + Gui::Dialog::AboutApplication - About - Info over + About + Info over - Revision number - Revisienummer + Revision number + Revisienummer - Version - Versie + Version + Versie - OK - OK + OK + OK - - '' + + '' - Release date - Uitgifte datum + Release date + Uitgifte datum - Platform - Platform + Platform + Platform - License... - Licentie ... + License... + Licentie ... - Copy to clipboard - + Copy to clipboard + Copy to clipboard - - + + Gui::Dialog::ButtonModel - Button %1 - Knop %1 + Button %1 + Knop %1 - Out Of Range - Buiten het bereik + Out Of Range + Buiten het bereik - - + + Gui::Dialog::CommandModel - Commands - Commando's + Commands + Commando's - - + + Gui::Dialog::DemoMode - View Turntable - Bekijk draaitafel + View Turntable + Bekijk draaitafel - Speed - Snelheid + Speed + Snelheid - Maximum - Maximale + Maximum + Maximale - Minimum - Minimum + Minimum + Minimum - Fullscreen - Schermvullend + Fullscreen + Schermvullend - Enable timer - Inschakelen van de timer + Enable timer + Inschakelen van de timer - s - s + s + s - Angle - Hoek - - - 90° - 90 ° - - - -90° - -90 ° + Angle + Hoek - Play - Afspelen + 90° + 90 ° - Stop - Stop + -90° + -90 ° - Close - Sluiten + Play + Afspelen - - + + Stop + Stop + + + Close + Sluiten + + + Gui::Dialog::DlgActivateWindow - Choose Window - Kies Venster + Choose Window + Kies Venster - &Activate - &Activeren + &Activate + &Activeren - Alt+A - Alt+A + Alt+A + Alt+A - &Cancel - &Annuleren + &Cancel + &Annuleren - - '' + + '' - - + + Gui::Dialog::DlgActivateWindowImp - Windows - Vensters + Windows + Vensters - - + + Gui::Dialog::DlgAuthorization - Authorization - Autorisatie + Authorization + Autorisatie - &OK - &OK + &OK + &OK - &Cancel - &Annuleren + &Cancel + &Annuleren - Password: - Wachtwoord: + Password: + Wachtwoord: - User name: - Gebruikersnaam: + User name: + Gebruikersnaam: - - '' + + '' - - + + Gui::Dialog::DlgChooseIcon - Choose Icon - Pictogram kiezen + Choose Icon + Pictogram kiezen - OK - OK + OK + OK - Cancel - Annuleren + Cancel + Annuleren - Add icons... - Pictogrammen toevoegen ... + Add icons... + Pictogrammen toevoegen ... - - + + Gui::Dialog::DlgCustomActions - Macros - Macro's + Macros + Macro's - Setup Custom Macros - Instellen van eigen Macro's + Setup Custom Macros + Instellen van eigen Macro's - Macro: - Macro: + Macro: + Macro: - ... - ... + ... + ... - Pixmap - Symbool + Pixmap + Symbool - Accelerator: - Sneltoets: + Accelerator: + Sneltoets: - What's this: - Wat is dit: + What's this: + Wat is dit: - Status text: - Status tekst: + Status text: + Status tekst: - Tool tip: - Tooltip: + Tool tip: + Tooltip: - Menu text: - Menutekst: + Menu text: + Menutekst: - Add - Toevoegen + Add + Toevoegen - Remove - Verwijderen + Remove + Verwijderen - Replace - Vervangen + Replace + Vervangen - - + + Gui::Dialog::DlgCustomActionsImp - Icons - Pictogrammen + Icons + Pictogrammen - Macros - Macro's + Macros + Macro's - No macro - Geen macro + No macro + Geen macro - No macros found. - Geen macro's gevonden. + No macros found. + Geen macro's gevonden. - Macro not found - macro niet gevonden + Macro not found + macro niet gevonden - Sorry, couldn't find macro file '%1'. - Sorry, kon macro-bestand '%1' niet vinden. + Sorry, couldn't find macro file '%1'. + Sorry, kon macro-bestand '%1' niet vinden. - Empty macro - Lege macro + Empty macro + Lege macro - Please specify the macro first. - Gelieve eerst de macro te specificeren. + Please specify the macro first. + Gelieve eerst de macro te specificeren. - Empty text - Lege tekst + Empty text + Lege tekst - Please specify the menu text first. - Gelieve de menu tekst eerst te specificeren. + Please specify the menu text first. + Gelieve de menu tekst eerst te specificeren. - No item selected - Geen item geselecteerd + No item selected + Geen item geselecteerd - Please select a macro item first. - Selecteer eerst een macro-item. + Please select a macro item first. + Selecteer eerst een macro-item. - - + + Gui::Dialog::DlgCustomCommands - Commands - Commando's + Commands + Commando's - - '' + + '' - - + + Gui::Dialog::DlgCustomCommandsImp - Category - Categorie + Category + Categorie - Icon - Pictogram + Icon + Pictogram - Command - Commando + Command + Commando - - + + Gui::Dialog::DlgCustomKeyboard - Keyboard - Toetsenbord + Keyboard + Toetsenbord - Description: - Omschrijving: + Description: + Omschrijving: - &Category: - &Categorie: + &Category: + &Categorie: - C&ommands: - Commando's: + C&ommands: + Commando's: - Current shortcut: - Huidige snelkoppeling: + Current shortcut: + Huidige snelkoppeling: - Press &new shortcut: - Druk op @nieuwe snelkoppeling: + Press &new shortcut: + Druk op @nieuwe snelkoppeling: - Currently assigned to: - Momenteel toegewezen aan: + Currently assigned to: + Momenteel toegewezen aan: - &Assign - Toewijzen + &Assign + Toewijzen - Alt+A - Alt+A + Alt+A + Alt+A - &Reset - &Herstellen + &Reset + &Herstellen - Alt+R - Alt+R + Alt+R + Alt+R - Re&set All - Alles her&stellen + Re&set All + Alles her&stellen - Alt+S - Alt+S + Alt+S + Alt+S - - '' + + '' - - + + Gui::Dialog::DlgCustomKeyboardImp - Icon - Pictogram + Icon + Pictogram - Command - Commando + Command + Commando - none - geen + none + geen - Multiple defined shortcut - Meervoudig gedefinieerde snelkoppeling + Multiple defined shortcut + Meervoudig gedefinieerde snelkoppeling - The shortcut '%1' is defined more than once. This could result into unexpected behaviour. - De snel koppeling '%1' is meer dan één keer gedefinieerd. Dit kan resulteren in onverwacht gedrag. + The shortcut '%1' is defined more than once. This could result into unexpected behaviour. + De snel koppeling '%1' is meer dan één keer gedefinieerd. Dit kan resulteren in onverwacht gedrag. - Already defined shortcut - Reeds gedefinieerde sneltoets + Already defined shortcut + Reeds gedefinieerde sneltoets - The shortcut '%1' is already assigned to '%2'. + The shortcut '%1' is already assigned to '%2'. Please define another shortcut. - De sneltoets '%1' is reeds toegewezen aan '%2'. + De sneltoets '%1' is reeds toegewezen aan '%2'. Gelieve een andere snelkoppeling te kiezen. - - + + Gui::Dialog::DlgCustomToolBoxbarsImp - Toolbox bars - Gereedschaplijsten + Toolbox bars + Gereedschap werkbalken - - + + Gui::Dialog::DlgCustomToolbars - Toolbars - Werkbalken + Toolbars + Werkbalken - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> De instellingen worden geactiveerd op de volgende initialisatie van de bestemde werkbank</p></body></html> - Move right - Naar rechts verplaatsen + Move right + Naar rechts verplaatsen - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Verplaats het geselecteerde item één niveau naar beneden.</b> <p>Dit verandert ook het niveau van het bovenliggende item.</p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Verplaats het geselecteerde item één niveau naar beneden.</b> <p>Dit verandert ook het niveau van het bovenliggende item.</p> - Move left - Naar links verplaatsen + Move left + Naar links verplaatsen - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Verplaats het geselecteerde item één niveau omhoog.</b> <p>Dit verandert ook het niveau van het bovenliggende item.</p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Verplaats het geselecteerde item één niveau omhoog.</b> <p>Dit verandert ook het niveau van het bovenliggende item.</p> - Move down - Naar beneden verplaatsen + Move down + Naar beneden verplaatsen - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Verplaats het geselecteerde item omlaag.</b> <p>Het item wordt verplaatst binnen het hiërarchie niveau.</p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Verplaats het geselecteerde item omlaag.</b> <p>Het item wordt verplaatst binnen het hiërarchie niveau.</p> - Move up - Naar boven verplaatsen + Move up + Naar boven verplaatsen - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Verplaats het geselecteerde item omlaag.</b><p>Het item wordt verplaatst binnen het hiërarchie niveau.</p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Verplaats het geselecteerde item omlaag.</b><p>Het item wordt verplaatst binnen het hiërarchie niveau.</p> - New... - Nieuw... + New... + Nieuw... - Rename... - Hernoemen... + Rename... + Hernoemen... - Delete - Verwijderen + Delete + Verwijderen - Icon - Pictogram + Icon + Pictogram - Command - Commando + Command + Commando - <Separator> - <Separator> + <Separator> + <Separator> - New toolbar - Nieuwe werkbalk + New toolbar + Nieuwe werkbalk - Toolbar name: - Werkbalknaam: + Toolbar name: + Werkbalknaam: - Duplicated name - Dubbele naam + Duplicated name + Dubbele naam - The toolbar name '%1' is already used - De werkbalk naam '%1' is al in gebruik + The toolbar name '%1' is already used + De werkbalk naam '%1' is al in gebruik - Rename toolbar - Werkbalk hernoemen + Rename toolbar + Werkbalk hernoemen - - '' + + '' - - + + Gui::Dialog::DlgCustomizeImp - Customize - Aanpassen + Customize + Aanpassen - &Help - &Help + &Help + &Help - &Close - &Sluiten + &Close + & Sluiten - - + + Gui::Dialog::DlgCustomizeSpaceball - Spaceball - Spaceball + Spaceball + Spaceball - No Spaceball Present - Geen Spaceball aanwezig + No Spaceball Present + Geen Spaceball aanwezig - Buttons - Knoppen + Buttons + Knoppen - Clear - Wissen + Clear + Wissen - Print Reference - Print Reference + Print Reference + Afdruk referentie - - + + Gui::Dialog::DlgDisplayProperties - Display properties - Weergave eigenschappen + Display properties + Weergave eigenschappen - Display - Weergave + Display + Weergave - Transparency: - Transparantie: + Transparency: + Transparantie: - Line width: - Lijndikte: + Line width: + Lijndikte: - Point size: - Puntgrootte: + Point size: + Puntgrootte: - Material - Materiaal + Material + Materiaal - ... - ... + ... + ... - Close - Sluiten + Close + Sluiten - Viewing mode - Weergavemodus + Viewing mode + Weergavemodus - Display mode: - Weergavemodus: + Plot mode: + Plot modus: - Plot mode: - Plot modus: + + '' - - '' + Line transparency: + Lijn transparantie: - Line transparency: - Lijn transparantie: + Line color: + Lijnkleur: - Line color: - Lijnkleur: + Shape color: + Kleur van de vorm: - Shape color: - Kleur van de vorm: + Color plot: + Kleuren afdruk: - Color plot: - Color plot: + Document window: + Document window: - - Document window: - - - - + + Gui::Dialog::DlgEditorSettings - Editor - Editor + Editor + Editor - Options - Opties + Options + Opties - Enable line numbers - Activeer regelnummers + Enable line numbers + Activeer regelnummers - Enable folding - Activeer vouwen + Enable folding + Activeer vouwen - Indentation - Inspringen + Indentation + Inspringen - Insert spaces - Spaties invoegen + Insert spaces + Spaties invoegen - Tab size: - Tabgrootte: + Tab size: + Tabgrootte: - Indent size: - Inspring grootte: + Indent size: + Inspring grootte: - Keep tabs - Behoud tabs + Keep tabs + Behoud tabs - Display Items - Geef items weer + Display Items + Geef items weer - Family: - Familie: + Family: + Familie: - Size: - Grootte: + Size: + Grootte: - Preview: - Voorbeeldweergave: + Preview: + Voorbeeldweergave: - - '' + + '' - - + + Gui::Dialog::DlgGeneral - General - Algemeen + General + Algemeen - Start up - Opstarten + Start up + Opstarten - Enable splash screen at start up - Activeer splash-scherm tijdens het opstarten + Enable splash screen at start up + Activeer splash-scherm tijdens het opstarten - Switch to tab of report window: - Schakel over naar het tabblad van het verslag-venster: + Switch to tab of report window: + Schakel over naar het tabblad van het verslag-venster: - Auto load module after start up: - Automatisch laden module na het opstarten: + Auto load module after start up: + Automatisch laden module na het opstarten: - Language - Taal + Language + Taal - Change language: - Taal wijzigen: + Change language: + Taal wijzigen: - Main window - Hoofdvenster + Main window + Hoofdvenster - Size of recent file list - Grootte van de recente-bestanden lijst + Size of recent file list + Grootte van de recente-bestanden lijst - Window style: - Venster stijl: + Window style: + Venster stijl: - Size of toolbar icons: - Grootte van de werkbalk-pictogrammen: + Size of toolbar icons: + Grootte van de werkbalk-pictogrammen: - - + + Gui::Dialog::DlgGeneralImp - Default (%1 x %1) - Standaard (%1 x %1) + Default (%1 x %1) + Standaard (%1 x %1) - Small (%1 x %1) - Klein (1% x %1) + Small (%1 x %1) + Klein (1% x %1) - Large (%1 x %1) - Groot (1% x %1) + Large (%1 x %1) + Groot (1% x %1) - Extra large (%1 x %1) - Extra groot (1% x %1) + Extra large (%1 x %1) + Extra groot (1% x %1) - - + + Gui::Dialog::DlgInputDialog - Input - Invoer + Input + Invoer - OK - OK + OK + OK - Cancel - Annuleren + Cancel + Annuleren - - '' + + '' - - + + Gui::Dialog::DlgInspector - Scene Inspector - Scene Inspecteur + Scene Inspector + Scene Inspecteur - - + + Gui::Dialog::DlgMacroExecute - Execute macro - Macro uitvoeren + Execute macro + Macro uitvoeren - Macro name: - Macro-naam: + Macro name: + Macro-naam: - Macro destination: - Macro-bestemming: + Macro destination: + Macro-bestemming: - Execute - Uitvoeren + Execute + Uitvoeren - Close - Sluiten + Close + Sluiten - Create - Aanmaken + Create + Aanmaken - Delete - Verwijderen + Delete + Verwijderen - Edit - Bewerken + Edit + Bewerken - - + + Gui::Dialog::DlgMacroExecuteImp - Macros - Macro's + Macros + Macro's - Macro file - Macro-bestand + Macro file + Macro-bestand - Enter a file name, please: - Gelieve een bestandsnaam in te voeren: + Enter a file name, please: + Gelieve een bestandsnaam in te voeren: - Existing file - Bestaand bestand + Existing file + Bestaand bestand - '%1'. + '%1'. This file already exists. - '%1'. Dit bestand bestaat reeds. + '%1'. Dit bestand bestaat reeds. - Delete macro - Verwijder macro + Delete macro + Verwijder macro - Do you really want to delete the macro '%1'? - Weet u zeker dat u macro '%1' wilt verwijderen? + Do you really want to delete the macro '%1'? + Weet u zeker dat u macro '%1' wilt verwijderen? - Cannot create file - Kan bestand niet aanmaken + Cannot create file + Kan bestand niet aanmaken - Creation of file '%1' failed. - Creëren van bestand '%1' mislukt. + Creation of file '%1' failed. + Creëren van bestand '%1' mislukt. - - + + Gui::Dialog::DlgMacroRecord - Macro recording - Macro-opname + Macro recording + Macro-opname - Macro name: - Macro-naam: + Macro name: + Macro-naam: - Stop - Stop + Stop + Stop - Cancel - Annuleren + Cancel + Annuleren - Macro path: - Macro-pad: + Macro path: + Macro-pad: - ... - ... + ... + ... - Record - Opnemen + Record + Opnemen - - + + Gui::Dialog::DlgMacroRecordImp - Macro recorder - Macro-recorder + Macro recorder + Macro-recorder - Specify first a place to save. - Geef eerst de locatie om op te slaan. + Specify first a place to save. + Geef eerst de locatie om op te slaan. - Existing macro - Bestaande macro + Existing macro + Bestaande macro - The macro '%1' already exists. Do you want to overwrite? - De macro '%1' bestaat reeds. Wilt u het overschrijven? + The macro '%1' already exists. Do you want to overwrite? + De macro '%1' bestaat reeds. Wilt u het overschrijven? - The macro directory doesn't exist. Please, choose another one. - De macro-map bestaat niet. Gelieve een andere te kiezen. + The macro directory doesn't exist. Please, choose another one. + De macro-map bestaat niet. Gelieve een andere te kiezen. - Choose macro directory - Kies macro-map + Choose macro directory + Kies macro-map - - + + Gui::Dialog::DlgMaterialProperties - Material properties - Materiaaleigenschappen + Material properties + Materiaaleigenschappen - &Close - &Sluiten + &Close + & Sluiten - Alt+C - Alt+C + Alt+C + Alt+C - Material - Materiaal + Material + Materiaal - Diffuse color: - Diffuse kleur: + Diffuse color: + Diffuse kleur: - Specular color: - Spiegelende kleur: + Specular color: + Spiegelende kleur: - Shininess: - Glans: + Shininess: + Glans: - % - % + % + % - Ambient color: - Omgevingskleur: + Ambient color: + Omgevingskleur: - - '' + + '' - Emissive color: - Emissieve kleur: + Emissive color: + Emissieve kleur: - - + + Gui::Dialog::DlgOnlineHelp - On-line help - On-line help + On-line help + On-line help - Help viewer - Help-Viewer + Help viewer + Help-Viewer - Location of start page - Locatie van startpagina + Location of start page + Locatie van startpagina - - + + Gui::Dialog::DlgOnlineHelpImp - HTML files (*.html *.htm) - HTML-bestanden (*. html *. htm) + HTML files (*.html *.htm) + HTML-bestanden (*. html *. htm) - Access denied - Toegang geweigerd + Access denied + Toegang geweigerd - Access denied to '%1' + Access denied to '%1' Specify another directory, please. - Toegang geweigerd '%1' + Toegang geweigerd '%1' Kies een andere map, alstublieft. - - + + Gui::Dialog::DlgParameter - Parameter Editor - Parameter-editor + Parameter Editor + Parameter-editor - Save to disk - Opslaan op schijf + Save to disk + Opslaan op schijf - Alt+C - Alt+C + Alt+C + Alt+C - &Close - &Sluiten + &Close + & Sluiten - - + + Gui::Dialog::DlgParameterImp - Group - Groep + Group + Groep - Name - Naam + Name + Naam - Type - Type + Type + Type - Value - Waarde + Value + Waarde - User parameter - Gebruikersparameter + User parameter + Gebruikersparameter - Invalid input - Ongeldige invoer + Invalid input + Ongeldige invoer - Invalid key name '%1' - Ongeldige sleutelnaam '%1' + Invalid key name '%1' + Ongeldige sleutelnaam '%1' - System parameter - Systeem-parameter + System parameter + Systeem-parameter - - + + Gui::Dialog::DlgPreferences - Preferences - Voorkeuren + Preferences + Voorkeuren - &Help - &Help + &Help + &Help - Alt+H - Alt+H + Alt+H + Alt+H - &OK - &OK + &OK + &OK - &Apply - &Toepassen + &Apply + &Toepassen - Alt+A - Alt+A + Alt+A + Alt+A - &Cancel - &Annuleren + &Cancel + &Annuleren - - '' + + '' - - + + Gui::Dialog::DlgPreferencesImp - Wrong parameter - Verkeerde parameter + Wrong parameter + Verkeerde parameter - - + + Gui::Dialog::DlgProjectInformation - Project information - Projectinformatie + Project information + Projectinformatie - Information - Informatie + Information + Informatie - &Name: - &Naam: + &Name: + &Naam: - Commen&t: - Commen&taar: + Commen&t: + Commen&taar: - Path: - PAD: + Path: + PAD: - &Last modified by: - &Laatst gewijzigd door: + &Last modified by: + &Laatst gewijzigd door: - Created &by: - Gemaakt &door: + Created &by: + Gemaakt &door: - Com&pany: - &Firma: + Com&pany: + &Firma: - Last &modification date: - Laatste &wijzigingsdatum: + Last &modification date: + Laatste &wijzigingsdatum: - Creation &date: - Aanmaak&datum: + Creation &date: + Aanmaak&datum: - &OK - &OK + &OK + &OK - &Cancel - &Annuleren + &Cancel + &Annuleren - - '' + + '' - - + + Gui::Dialog::DlgProjectUtility - Project utility - Project hulpprogramma + Project utility + Project hulpprogramma - Extract project - Extraheer project + Extract project + Extraheer project - Source - Bron + Source + Bron - Project file (*.fcstd) - Project-bestand (*.fcstd) + Project file (*.fcstd) + Project-bestand (*.fcstd) - Destination - Bestemming + Destination + Bestemming - Extract - Extract + Extract + Uittrekken - Create project - Project aanmaken + Create project + Project aanmaken - Document.xml - Document.xml + Document.xml + Document.xml - Create - Aanmaken + Create + Aanmaken - Load project file after creation - Laad projectbestand na het creëren + Load project file after creation + Laad projectbestand na het creëren - Empty source - Lege bron + Empty source + Lege bron - No source is defined. - Geen bron is gedefinieerd. + No source is defined. + Geen bron is gedefinieerd. - Empty destination - Lege bestemming + Empty destination + Lege bestemming - No destination is defined. - Geen bestemming is gedefinieerd. + No destination is defined. + Geen bestemming is gedefinieerd. - - + + Gui::Dialog::DlgReportView - Output window - Uitvoer-venster + Output window + Uitvoer-venster - Output - Uitvoer + Output + Uitvoer - Record log messages - logboek-berichten bewaren + Record log messages + logboek-berichten bewaren - Record warnings - Waarschuwingen bewaren + Record warnings + Waarschuwingen bewaren - Record error messages - Foutmeldingen bewaren + Record error messages + Foutmeldingen bewaren - Colors - Kleuren + Colors + Kleuren - Normal messages: - Normale berichten: + Normal messages: + Normale berichten: - Log messages: - Logboekberichten: + Log messages: + Logboekberichten: - Warnings: - Waarschuwingen: + Warnings: + Waarschuwingen: - Errors: - Fouten: + Errors: + Fouten: - - '' + + '' - Redirect internal Python errors to report view - Interne Python fouten omleiden naar rapportweergave + Redirect internal Python errors to report view + Interne Python fouten omleiden naar rapportweergave - Redirect internal Python output to report view - Interne Python uitvoer omleiden naar de rapportweergave + Redirect internal Python output to report view + Interne Python uitvoer omleiden naar de rapportweergave - - + + Gui::Dialog::DlgRunExternal - Running external program - Draaien van extern programma + Running external program + Draaien van extern programma - TextLabel - Tekstlabel + TextLabel + Tekstlabel - Advanced >> - Geavanceerde >> + Advanced >> + Geavanceerde >> - ... - ... + ... + ... - Accept changes - Accepteer wijzigingen + Accept changes + Accepteer wijzigingen - Discard changes - Wijzigingen verwerpen + Discard changes + Wijzigingen verwerpen - Abort program - Programma afbreken + Abort program + Programma afbreken - Help - Help + Help + Help - Select a file - Selecteer een bestand + Select a file + Selecteer een bestand - - + + Gui::Dialog::DlgSettings3DView - 3D View - 3D-Aanzicht + 3D View + 3D-Aanzicht - 3D View settings - 3D-Aanzicht instellingen + 3D View settings + 3D-Aanzicht instellingen - Show coordinate system in the corner - Toon coördinatenstelsel in de hoek + Show coordinate system in the corner + Toon coördinatenstelsel in de hoek - Show counter of frames per second - Toon teller van frames per seconde + Show counter of frames per second + Toon teller van frames per seconde - Enable animation - Animatie inschakelen + Enable animation + Animatie inschakelen - Enable anti-aliasing (slower) - Anti-aliasing (langzamer) inschakelen + Enable anti-aliasing (slower) + Anti-aliasing (langzamer) inschakelen - Eye to eye distance for stereo modes: - Oogafstand voor stereo-modus: + Eye to eye distance for stereo modes: + Oogafstand voor stereo-modus: - Camera type - Cameratype + Camera type + Cameratype - Orthographic rendering - Orthogonale projectie + Orthographic rendering + Orthogonale projectie - Perspective rendering - Perspectivische projectie + Perspective rendering + Perspectivische projectie - - '' + + '' - 3D Navigation - 3D-navigatie + 3D Navigation + 3D-navigatie - Mouse... - Muis... + Mouse... + Muis... - Intensity of backlight - Intensiteit van de achtergrondverlichting + Intensity of backlight + Intensiteit van de achtergrondverlichting - Enable backlight color - Inschakelen achtergrondverlichtingskleur + Enable backlight color + Inschakelen achtergrondverlichtingskleur - Orbit style - Orbit style + Orbit style + Orbit stijl - Turntable - Turntable + Turntable + Draaitafel - Trackball - Trackball + Trackball + Trackball - Invert zoom - Zoom omkeren + Invert zoom + Zoom omkeren - Zoom at cursor - + Zoom at cursor + Zoom at cursor - Zoom step - + Zoom step + Zoom step - - + + Gui::Dialog::DlgSettings3DViewImp - %1 navigation - %1 navigatie + %1 navigation + %1 navigatie - - + + Gui::Dialog::DlgSettingsColorGradient - Color model - Kleurenmodel + Color model + Kleurenmodel - &Gradient: - Verloop: + &Gradient: + Verloop: - red-yellow-green-cyan-blue - rood-geel-groen-cyaan-blauw + red-yellow-green-cyan-blue + rood-geel-groen-cyaan-blauw - blue-cyan-green-yellow-red - blauw-cyaan-groen-geel-rood + blue-cyan-green-yellow-red + blauw-cyaan-groen-geel-rood - white-black - wit-zwart + white-black + wit-zwart - black-white - zwart-wit + black-white + zwart-wit - Visibility - Zichtbaarheid + Visibility + Zichtbaarheid - Out g&rayed - Uit geg&rijsd + Out g&rayed + Uit geg&rijsd - Alt+R - Alt+R + Alt+R + Alt+R - Out &invisible - Uit onzichtbaar + Out &invisible + Uit onzichtbaar - Alt+I - Alt+I + Alt+I + Alt+I - Style - Stijl + Style + Stijl - &Zero - &Nul + &Zero + &Nul - Alt+Z - Alt+Z + Alt+Z + Alt+Z - &Flow - Stroming + &Flow + Stroming - Alt+F - Alt+F + Alt+F + Alt+F - &OK - &OK + &OK + &OK - &Cancel - &Annuleren + &Cancel + &Annuleren - Parameter range - Parameterbereik + Parameter range + Parameterbereik - Mi&nimum: - Mi&nimum: + Mi&nimum: + Mi&nimum: - Ma&ximum: - Ma&ximum: + Ma&ximum: + Ma&ximum: - &Labels: - &Labels: + &Labels: + &Labels: - &Decimals: - Aantal &decimalen: + &Decimals: + Aantal &decimalen: - - '' + + '' - Color-gradient settings - Kleurverloop instellingen + Color-gradient settings + Kleurverloop instellingen - - + + Gui::Dialog::DlgSettingsColorGradientImp - Wrong parameter - Verkeerde parameter + Wrong parameter + Verkeerde parameter - The maximum value must be higher than the minimum value. - De maximale waarde moet hoger zijn dan de minimale waarde. + The maximum value must be higher than the minimum value. + De maximale waarde moet hoger zijn dan de minimale waarde. - - + + Gui::Dialog::DlgSettingsDocument - Document - Document + Document + Document - General - Algemeen + General + Algemeen - Document save compression level + Document save compression level (0 = none, 9 = highest, 3 = default) - Document op te slaan compressie-niveau (0=geen, 9=hoogste, 3=standaard) + Document op te slaan compressie-niveau (0=geen, 9=hoogste, 3=standaard) - Create new document at start up - Maak een nieuw document aan bij het opstarten + Create new document at start up + Maak een nieuw document aan bij het opstarten - Storage - Opslag + Storage + Opslag - Saving transactions (Auto-save) - Opslaan van transacties (automatisch opslaan) + Saving transactions (Auto-save) + Opslaan van transacties (automatisch opslaan) - Discard saved transaction after saving document - Opgeslagen transactie na het opslaan van het document negeren + Discard saved transaction after saving document + Opgeslagen transactie na het opslaan van het document negeren - Save thumbnail into project file when saving document - Miniatuur opslaat in projectbestand bij het opslaan van document + Save thumbnail into project file when saving document + Miniatuur opslaat in projectbestand bij het opslaan van document - Create up to backup files when resaving document - Create up to backup files when resaving document + Create up to backup files when resaving document + Maximaal aantal backup bestanden bij opslag - Document objects - Document objecten + Document objects + Document objecten - Allow duplicate object labels in one document - Sta dubbele objectlabels toe in een document + Allow duplicate object labels in one document + Sta dubbele objectlabels toe in een document - Maximum Undo/Redo steps - Maximale 'ongedaan maken' / 'Opnieuw' stappen + Maximum Undo/Redo steps + Maximale 'ongedaan maken' / 'Opnieuw' stappen - Using Undo/Redo on documents - Using Undo/Redo on documents + Using Undo/Redo on documents + Gebruik undo/redo op documenten - - + + Gui::Dialog::DlgSettingsEditorImp - Text - Tekst + Text + Tekst - Bookmark - Bladwijzer + Bookmark + Bladwijzer - Breakpoint - Pauze-punt + Breakpoint + Pauze-punt - Keyword - Sleutelwoord + Keyword + Sleutelwoord - Comment - Commentaar + Comment + Commentaar - Block comment - Commentaarblok + Block comment + Commentaarblok - Number - Getal + Number + Getal - String - Tekenreeks + String + Tekenreeks - Character - Teken + Character + Teken - Class name - Klassenaam + Class name + Klassenaam - Define name - Definieer Naam + Define name + Definieer Naam - Operator - Operand + Operator + Operand - Python output - Python-uitvoer + Python output + Python-uitvoer - Python error - Python-fout + Python error + Python-fout - Items - Items + Items + Items - Current line highlight - + Current line highlight + Current line highlight - - + + Gui::Dialog::DlgSettingsImage - Image settings - Afbeeldingsinstellingen + Image settings + Afbeeldingsinstellingen - Image properties - Afbeeldingeigenschappen + Image properties + Afbeeldingeigenschappen - Back&ground: - achter&grond: + Back&ground: + achter&grond: - Current - Huidige + Current + Huidige - White - Wit + White + Wit - Black - Zwart + Black + Zwart - Transparent - Transparant + Transparent + Transparant - Image dimensions - Afbeeldings-afmetingen + Image dimensions + Afbeeldings-afmetingen - Pixel - beeldpunt + Pixel + beeldpunt - &Width: - &Breedte: + &Width: + &Breedte: - Current screen - Huidige beeldscherm + Current screen + Huidige beeldscherm - Icon 32 x 32 - Pictogram 32 x 32 + Icon 32 x 32 + Pictogram 32 x 32 - Icon 64 x 64 - Pictogram 64 x 64 + Icon 64 x 64 + Pictogram 64 x 64 - Icon 128 x 128 - Pictogram 128 x 128 + Icon 128 x 128 + Pictogram 128 x 128 - CGA 320 x 200 - CGA 320 x 200 + CGA 320 x 200 + CGA 320 x 200 - QVGA 320 x 240 - QVGA 320 x 240 + QVGA 320 x 240 + QVGA 320 x 240 - VGA 640 x 480 - VGA 640 x 480 + VGA 640 x 480 + VGA 640 x 480 - NTSC 720 x 480 - NTSC 720 x 480 + NTSC 720 x 480 + NTSC 720 x 480 - PAL 768 x 578 - PAL 768 x 578 + PAL 768 x 578 + PAL 768 x 578 - SVGA 800 x 600 - SVGA 800 x 600 + SVGA 800 x 600 + SVGA 800 x 600 - XGA 1024 x 768 - XGA 1024 x 768 + XGA 1024 x 768 + XGA 1024 x 768 - HD720 1280 x 720 - HD720 1280 x 720 + HD720 1280 x 720 + HD720 1280 x 720 - SXGA 1280 x 1024 - SXGA 1280 x 1024 + SXGA 1280 x 1024 + SXGA 1280 x 1024 - SXGA+ 1400 x 1050 - SXGA + 1400 x 1050 + SXGA+ 1400 x 1050 + SXGA + 1400 x 1050 - UXGA 1600 x 1200 - UXGA 1600 x 1200 + UXGA 1600 x 1200 + UXGA 1600 x 1200 - HD1080 1920 x 1080 - HD1080 1920 x 1080 + HD1080 1920 x 1080 + HD1080 1920 x 1080 - WUXGA 1920 x 1200 - WUXGA 1920 x 1200 + WUXGA 1920 x 1200 + WUXGA 1920 x 1200 - QXGA 2048 x 1538 - QXGA 2048 x 1538 + QXGA 2048 x 1538 + QXGA 2048 x 1538 - WQXGA 2560 x 1600 - WQXGA 2560 x 1600 + WQXGA 2560 x 1600 + WQXGA 2560 x 1600 - QSXGA 2560 x 2048 - QSXGA 2560 x 2048 - - - QUXGA 3200 × 2400 - QUXGA 3200 × 2400 - - - HUXGA 6400 × 4800 - HUXGA 6400 × 4800 + QSXGA 2560 x 2048 + QSXGA 2560 x 2048 - !!! 10000 x 10000 - !!! 10000 x 10000 + QUXGA 3200 × 2400 + QUXGA 3200 × 2400 - Standard sizes: - Standaard formaten: + HUXGA 6400 × 4800 + HUXGA 6400 × 4800 - &Height: - Hoogte: + !!! 10000 x 10000 + !!! 10000 x 10000 - Aspect ratio: - Beeldverhouding: + Standard sizes: + Standaard formaten: - &Screen - &Scherm + &Height: + Hoogte: - Alt+S - Alt+S + Aspect ratio: + Beeldverhouding: - &4:3 - &4:3 + &Screen + &Scherm - Alt+4 - Alt+4 + Alt+S + Alt+S - 1&6:9 - 1&6:9 + &4:3 + &4:3 - Alt+6 - Alt+6 + Alt+4 + Alt+4 - &1:1 - &1:1 + 1&6:9 + 1&6:9 - Alt+1 - Alt+1 + Alt+6 + Alt+6 - Image comment - Bijschrift + &1:1 + &1:1 - Insert MIBA - MIBA-informatie toevoegen + Alt+1 + Alt+1 - Insert comment - Opmerking invoegen + Image comment + Bijschrift - - + + Insert MIBA + MIBA-informatie toevoegen + + + Insert comment + Opmerking invoegen + + + Gui::Dialog::DlgSettingsMacro - Macro - Macro + Macro + Macro - Macro recording settings - Macro-opname-instellingen + Macro recording settings + Macro-opname-instellingen - Logging Commands - Loggen van commando's + Logging Commands + Loggen van commando's - Show script commands in python console - Toon scriptopdrachten in python console + Show script commands in python console + Toon scriptopdrachten in python console - Log all commands issued by menus to file: - Log alle commando's veroorzaakt door menu's naar bestand: + Log all commands issued by menus to file: + Log alle commando's veroorzaakt door menu's naar bestand: - FullScript.FCScript - FullScript.FCScript + FullScript.FCScript + FullScript.FCScript - Gui commands - Gui commando's + Gui commands + Gui commando's - Recording GUI commands - GUI-commando's opnemen + Recording GUI commands + GUI-commando's opnemen - Record as comment - Opnemen als commentaar + Record as comment + Opnemen als commentaar - Macro path - Macro-pad + Macro path + Macro-pad - General macro settings - + General macro settings + General macro settings - Run macros in local environment - + Run macros in local environment + Run macros in local environment - - + + Gui::Dialog::DlgSettingsUnits - Units - Eenheden + Units + Eenheden - Units settings - Instellingen van de eenheden + Units settings + Instellingen van de eenheden - Standard (mm/kg/s/degree) - Standaard (mm/kg/s/graad) + Standard (mm/kg/s/degree) + Standaard (mm/kg/s/graad) - MKS (m/kg/s/degree) - MKS (m/kg/s/graad) + MKS (m/kg/s/degree) + MKS (m/kg/s/graad) - Magnitude - Omvang + Magnitude + Omvang - Unit - Eenheid + Unit + Eenheid - User system: - User system: + User system: + Gebruiker systeem: - Imperial (in/lb) - Imperial (in/lb) + Imperial (in/lb) + Imperial (in/lb) - - + + Gui::Dialog::DlgSettingsViewColor - Colors - Kleuren + Colors + Kleuren - Selection - Selectie + Selection + Selectie - Enable selection highlighting - Activeer selectie markeren + Enable selection highlighting + Activeer selectie markeren - Enable preselection highlighting - Activeer voorselectie markeren + Enable preselection highlighting + Activeer voorselectie markeren - Background color - Achtergrond + Background color + Achtergrond - Middle color - Middelste kleur + Middle color + Middelste kleur - Color gradient - Kleurverloop + Color gradient + Kleurverloop - Simple color - Eenvoudige kleur + Simple color + Eenvoudige kleur - Default colors - Standaardkleuren + Default colors + Standaardkleuren - Edited edge color - Edited edge color + Edited edge color + Bewerkte rand kleur - Edited vertex color - Edited vertex color + Edited vertex color + Bewerkte kleur eindpunt - Construction geometry - Construction geometry + Construction geometry + Constructie geometrie - Fully constrained geometry - Fully constrained geometry + Fully constrained geometry + Volledig gebonden geometrie - The color of construction geometry in editmode - The color of construction geometry in editmode + The color of vertices being edited + De kleur van de eindpunten wordt bewerkt - The color of fully constrained geometry in editmode - The color of fully constrained geometry in editmode + The color of edges being edited + De kleur van de bewerkte randen - The color of vertices being edited - The color of vertices being edited + The color of construction geometry in edit mode + The color of construction geometry in edit mode - The color of edges being edited - De kleur van de bewerkte randen + The color of fully constrained geometry in edit mode + The color of fully constrained geometry in edit mode - The color of construction geometry in edit mode - + Cursor text color + Cursor text color - The color of fully constrained geometry in edit mode - + Default shape color + Default shape color - Cursor text color - + The default color for new shapes + The default color for new shapes - Default shape color - + Default line width and color + Default line width and color - The default color for new shapes - + The default line color for new shapes + The default line color for new shapes - Default line width and color - + The default line thickness for new shapes + The default line thickness for new shapes - The default line color for new shapes - + px + px - - The default line thickness for new shapes - - - - px - - - - + + Gui::Dialog::DlgTipOfTheDay - Tip of the day - Tip van de dag + Tip of the day + Tip van de dag - <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> - <b><font face="Times New Roman"><font size="+3">Wist u dat...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Wist u dat...</font></font></b> - &Show tips at start up - &Toon tips bij opstarten + &Show tips at start up + &Toon tips bij opstarten - Alt+S - Alt+S + Alt+S + Alt+S - &Next Tip - &Volgende Tip + &Next Tip + &Volgende Tip - Alt+N - Alt+N + Alt+N + Alt+N - &Close - &Sluiten + &Close + & Sluiten - Alt+C - Alt+C + Alt+C + Alt+C - - '' + + '' - - + + Gui::Dialog::DlgTipOfTheDayImp - Download failed: %1 + Download failed: %1 - Downloaden is mislukt:%1 + Downloaden is mislukt:%1 - If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. - Als u meer wilt weten over FreeCAD moet je naar %1 gaan of het help-item drukken in het helpmenu. + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + Als u meer wilt weten over FreeCAD moet je naar %1 gaan of het help-item drukken in het helpmenu. - - + + Gui::Dialog::DockablePlacement - Placement - Plaatsing + Placement + Plaatsing - - + + Gui::Dialog::DownloadDialog - Canceled. - Geannuleerd. + Download + Download - Download - + Cancel + Annuleren - Cancel - Annuleren + Close + Sluiten - Close - Sluiten + There already exists a file called %1 in the current directory. Overwrite? + There already exists a file called %1 in the current directory. Overwrite? - There already exists a file called %1 in the current directory. Overwrite? - + Unable to save the file %1: %2. + Unable to save the file %1: %2. - Unable to save the file %1: %2. - + Downloading %1. + Downloading %1. - Downloading %1. - + Download canceled. + Download canceled. - Download canceled. - + Download failed: %1. + Downloaden is mislukt:%1. - Download failed: %1. - Downloaden is mislukt:%1. + Downloaded %1 to current directory. + Downloaded %1 to current directory. - - Downloaded %1 to current directory. - - - - + + Gui::Dialog::IconDialog - Add icon - Pictogram toevoegen + Add icon + Pictogram toevoegen - - + + Gui::Dialog::InputVector - Input vector - Input vector + Input vector + invoervector - Vector - Vector + Vector + Vector - Z: - Z: + Z: + Z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - OK - OK + OK + OK - - + + Gui::Dialog::LicenseDialog - Copyright - + Copyright + Copyright - - + + Gui::Dialog::MouseButtons - Mouse buttons - Muisknoppen + Mouse buttons + Muisknoppen - Configuration - Configuratie + Configuration + Configuratie - Selection: - Selectie: + Selection: + Selectie: - Panning - Verplaatsen + Panning + Verplaatsen - Rotation: - Rotatie: + Rotation: + Rotatie: - Zooming: - Zoomen: + Zooming: + Zoomen: - - + + Gui::Dialog::ParameterGroup - Expand - Uitklappen + Expand + Uitklappen - Add sub-group - Subgroep toevoegen + Add sub-group + Subgroep toevoegen - Remove group - Groep verwijderen + Remove group + Groep verwijderen - Rename group - Groep hernoemen + Rename group + Groep hernoemen - Export parameter - Export parameter + Export parameter + Export parameter - Import parameter - Import parameter + Import parameter + Import parameter - Collapse - Samenvouwen + Collapse + Samenvouwen - Do really want to remove this parameter group? - Wilt u deze parameter-groep echt verwijderen? + Do really want to remove this parameter group? + Wilt u deze parameter-groep echt verwijderen? - Existing sub-group - Bestaande subgroep + Existing sub-group + Bestaande subgroep - The sub-group '%1' already exists. - De subgroep '%1' bestaat reeds. + The sub-group '%1' already exists. + De subgroep '%1' bestaat reeds. - Export parameter to file - Exporteer parameters naar bestand + Export parameter to file + Exporteer parameters naar bestand - XML (*.FCParam) - XML(*.FCParam) + XML (*.FCParam) + XML(*.FCParam) - Import parameter from file - Importeer parameters uit bestand + Import parameter from file + Importeer parameters uit bestand - Import Error - Import fout + Import Error + Import fout - Reading from '%1' failed. - Het lezen van '%1' is mislukt. + Reading from '%1' failed. + Het lezen van '%1' is mislukt. - - + + Gui::Dialog::ParameterValue - Change value - Waarde wijzigen + Change value + Waarde wijzigen - Remove key - Verwijder de sleutel + Remove key + Verwijder de sleutel - Rename key - Wijzig de naam van de sleutel + Rename key + Wijzig de naam van de sleutel - New - Nieuw + New + Nieuw - New string item - Nieuwe tekenreeks + New string item + Nieuwe tekenreeks - New float item - Nieuwe decimale waarde + New float item + Nieuwe decimale waarde - New integer item - Nieuw geheel getal + New integer item + Nieuw geheel getal - New unsigned item - Nieuw positief geheel getal + New unsigned item + Nieuw positief geheel getal - New Boolean item - Nieuwe booleaanse waarde + New Boolean item + Nieuwe booleaanse waarde - Existing item - Bestaand item + Existing item + Bestaand item - The item '%1' already exists. - Item '%1' bestaat reeds. + The item '%1' already exists. + Item '%1' bestaat reeds. - - + + Gui::Dialog::Placement - Placement - Plaatsing + Placement + Plaatsing - OK - OK + OK + OK - Translation: - Verplaatsing: + Translation: + Verplaatsing: - Z: - Z: + Z: + Z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - Rotation: - Rotatie: + Rotation: + Rotatie: - Angle: - Hoek: + Angle: + Hoek: - Axis: - Assen: + Axis: + Assen: - Center: - Middelpunt: + Center: + Middelpunt: - Pitch: - Steiging: + Pitch: + Steiging: - Roll: - Rol: + Roll: + Rol: - Yaw: - Yaw: + Yaw: + Afwijking: - Rotation axis with angle - Rotation axis with angle + Rotation axis with angle + Rotatieas met hoek - Euler angles - Euler angles + Euler angles + Euler hoeken - Apply placement changes immediately - Verplaatsingen onmiddellijk doorvoeren + Apply placement changes immediately + Verplaatsingen onmiddellijk doorvoeren - Apply incremental changes to object placement - Incrementele verplaatsingen toepassen op object + Apply incremental changes to object placement + Incrementele verplaatsingen toepassen op object - Apply - Toepassen + Apply + Toepassen - Reset - Herstel + Reset + Herstel - Close - Sluiten + Close + Sluiten - - + + Gui::Dialog::PrintModel - Button - Knop + Button + Knop - Command - Commando + Command + Commando - - + + Gui::Dialog::SceneInspector - Dialog - Dialoog + Dialog + Dialoog - Close - Sluiten + Close + Sluiten - Refresh - Vernieuwen + Refresh + Vernieuwen - - + + Gui::Dialog::SceneModel - Inventor Tree - Inventor Tree + Inventor Tree + Inventorboom - Nodes - Knopen + Nodes + Knopen - - + + Gui::Dialog::TextureMapping - Texture - Textuur + Texture + Textuur - Texture mapping - Textuurafbeelden + Texture mapping + Textuurafbeelden - Global - Overal + Global + Overal - Environment - Omgeving + Environment + Omgeving - Image files (%1) - Afbeeldingsbestanden (%1) + Image files (%1) + Afbeeldingsbestanden (%1) - No image - Geen afbeelding + No image + Geen afbeelding - The specified file is not a valid image file. - Het opgegeven bestand is niet een geldig afbeeldingsbestand. + The specified file is not a valid image file. + Het opgegeven bestand is niet een geldig afbeeldingsbestand. - No 3d view - Geen 3D-weergave + No 3d view + Geen 3D-weergave - No active 3d view found. - Geen actieve 3D-weergave gevonden. + No active 3d view found. + Geen actieve 3D-weergave gevonden. - - + + Gui::Dialog::Transform - Cancel - Annuleren + Cancel + Annuleren - Transform - Transformeren + Transform + Transformeren - - + + Gui::DlgTreeWidget - Dialog - Dialoog + Dialog + Dialoog - Items - Items + Items + Items - OK - OK + OK + OK - Cancel - Annuleren + Cancel + Annuleren - - '' + + '' - - + + Gui::DockWnd::CombiView - CombiView - Combi-aanzicht + CombiView + Combi-aanzicht - Project - Project + Project + Project - Tasks - Taken + Tasks + Taken - - + + Gui::DockWnd::HelpView - Previous - Vorige + Previous + Vorige - Next - Volgende + Next + Volgende - Home - Startpagina + Home + Startpagina - Open - Openen + Open + Openen - Open file - Bestand openen + Open file + Bestand openen - All HTML files (*.html *.htm) - Alle HTML-bestanden (*. html *. htm) + All HTML files (*.html *.htm) + Alle HTML-bestanden (*. html *. htm) - External browser - Externe browser + External browser + Externe browser - No external browser found. Specify in preferences, please - Geen externe browser gevonden. Bij opties instellen, + No external browser found. Specify in preferences, please + Geen externe browser gevonden. Bij opties instellen, - Starting of %1 failed - Starten van '%1' is mislukt + Starting of %1 failed + Starten van '%1' is mislukt - - + + Gui::DockWnd::PropertyDockView - Property View - Eigenschappen-aanzicht + Property View + Eigenschappen-aanzicht - - + + Gui::DockWnd::ReportOutput - Logging - Loggen + Logging + Loggen - Warning - Waarschuwing + Warning + Waarschuwing - Error - Fout + Error + Fout - Options - Opties + Options + Opties - Clear - Wissen + Clear + Wissen - Save As... - Opslaan als... + Save As... + Opslaan als... - Save Report Output - Rapport-uitvoer opslaan + Save Report Output + Rapport-uitvoer opslaan - Plain Text Files (*.txt *.log) - Eenvoudige tekstbestanden (*.txt *.log) + Plain Text Files (*.txt *.log) + Eenvoudige tekstbestanden (*.txt *.log) - Go to end - Ga naar het einde + Go to end + Ga naar het einde - Redirect Python output - Python-uitvoer omleiden + Redirect Python output + Python-uitvoer omleiden - Redirect Python errors - Omleiden van Python fouten + Redirect Python errors + Omleiden van Python fouten - - + + Gui::DockWnd::ReportView - Output - Uitvoer + Output + Uitvoer - Python console - Python Console + Python console + Python Console - - + + Gui::DockWnd::SelectionView - Property View - Eigenschappen-aanzicht + Property View + Eigenschappen-aanzicht - - + + Gui::DockWnd::TaskPanelView - Task View - Taakaanzicht + Task View + Taakaanzicht - - + + Gui::DockWnd::TextBrowser - Could not open file. - Kon bestand niet openen. + Could not open file. + Kon bestand niet openen. - You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. - U hebt geprobeerd om het adres %1 te benaderen welke op dit moment niet beschikbaar is. Zorg ervoor dat de URL bestaat en probeer de pagina te herladen. + You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. + U hebt geprobeerd om het adres %1 te benaderen welke op dit moment niet beschikbaar is. Zorg ervoor dat de URL bestaat en probeer de pagina te herladen. - Connecting to %1 - Verbinden met %1 + Connecting to %1 + Verbinden met %1 - Sending to %1 - Verzenden naar %1 + Sending to %1 + Verzenden naar %1 - Reading from %1 - Lezen van %1 + Reading from %1 + Lezen van %1 - Download failed: %1. - Downloaden is mislukt:%1. + Download failed: %1. + Downloaden is mislukt:%1. - Previous - Vorige + Previous + Vorige - Forward - Vooruit + Forward + Vooruit - Home - Startpagina + Home + Startpagina - Refresh - Vernieuwen + Refresh + Vernieuwen - Copy - Kopiëren + Copy + Kopie - Select all - Alles selecteren + Select all + Alles selecteren - No description for - Geen omschrijving voor + No description for + Geen omschrijving voor - - + + Gui::DocumentModel - Application - Applicatie + Application + Applicatie - Labels & Attributes - Labels & Kenmerken + Labels & Attributes + Labels & Kenmerken - - + + Gui::EditorView - Modified file - Gewijzigd bestand + Modified file + Gewijzigd bestand - %1. + %1. This has been modified outside of the source editor. Do you want to reload it? - %1. Dit is gewijzigd buiten de source-editor om. Wilt u het herladen? + %1. Dit is gewijzigd buiten de source-editor om. Wilt u het herladen? - Unsaved document - Niet-opgeslagen document + Unsaved document + Niet-opgeslagen document - The document has been modified. + The document has been modified. Do you want to save your changes? - Het document is gewijzigd. + Het document is gewijzigd. Wilt u uw wijzigingen opslaan? - FreeCAD macro (*.FCMacro);;Python (*.py) - FreeCAD macro(*.FCMacro);;Python(*.py) + FreeCAD macro (*.FCMacro);;Python (*.py) + FreeCAD macro(*.FCMacro);;Python(*.py) - Export PDF - Exporteren als PDF + Export PDF + Exporteren als PDF - PDF file (*.pdf) - PDF-bestand (*. pdf) + PDF file (*.pdf) + PDF-bestand (*. pdf) - untitled[*] - naamloos[*] + untitled[*] + naamloos[*] - - Editor - - Editor + - Editor + - Editor - %1 chars removed - %1 karakters verwijderd + %1 chars removed + %1 karakters verwijderd - %1 chars added - %1 karakters toegevoegd + %1 chars added + %1 karakters toegevoegd - Formatted - Geformatteerd + Formatted + Geformatteerd - - + + Gui::FileChooser - Select a file - Selecteer een bestand + Select a file + Selecteer een bestand - Select a directory - Kies een map + Select a directory + Kies een map - - + + Gui::FileDialog - Save as - Opslaan als + Save as + Opslaan als - Open - Openen + Open + Openen - - + + Gui::FileOptionsDialog - Extended - Uitgebreid + Extended + Uitgebreid - All files (*.*) - Alle bestanden (*.*) + All files (*.*) + Alle bestanden (*.*) - - + + Gui::Flag - Top left - Linksboven + Top left + Linksboven - Bottom left - Linksonder + Bottom left + Linksonder - Top right - Rechtsboven + Top right + Rechtsboven - Bottom right - Rechts Onder + Bottom right + Rechts Onder - Remove - Verwijderen + Remove + Verwijderen - - + + Gui::InventorNavigationStyle - Press CTRL and left mouse button - Druk op CTRL en de linker muisknop + Press CTRL and left mouse button + Druk op CTRL en de linker muisknop - Press middle mouse button - Druk op de middelste muisknop + Press middle mouse button + Druk op de middelste muisknop - Press left mouse button - Druk op de linker muisknop + Press left mouse button + Druk op de linker muisknop - Scroll middle mouse button - Scroll middelste muisknop + Scroll middle mouse button + Scroll middelste muisknop - - + + Gui::LocationDialog - Wrong direction - Verkeerde richting + Wrong direction + Verkeerde richting - Direction must not be the null vector - Richting mag niet de nul-vector zijn + Direction must not be the null vector + Richting mag niet de nul-vector zijn - X - x + X + x - Y - Y + Y + Y - Z - Z + Z + Z - User defined... - Door gebruiker gedefinieerd... + User defined... + Door gebruiker gedefinieerd... - - + + Gui::LocationWidget - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - Z: + Z: + Z: - Direction: - + Direction: + Richting: - - + + Gui::MacroCommand - Macros - Macro's + Macros + Macro's - - + + Gui::MainWindow - Dimension - Afmeting + Dimension + Afmeting - Ready - Gereed + Ready + Gereed - Toggles this toolbar - Schakelt deze werkbalk in/uit + Toggles this toolbar + Schakelt deze werkbalk in/uit - Toggles this dockable window - Schakelt dit dokbare venster in/uit + Toggles this dockable window + Schakelt dit dokbare venster in/uit - Close All - Alles sluiten + Close All + Alles sluiten - - + + Gui::ManualAlignment - Manual alignment - + Manual alignment + Manual alignment - The alignment is already in progress. - + The alignment is already in progress. + The alignment is already in progress. - Alignment[*] - + Alignment[*] + Alignment[*] - Please, select at least one point in the left and the right view - + Please, select at least one point in the left and the right view + Please, select at least one point in the left and the right view - Please, select at least %1 points in the left and the right view - + Please, select at least %1 points in the left and the right view + Please, select at least %1 points in the left and the right view - Please pick points in the left and right view - + Please pick points in the left and right view + Please pick points in the left and right view - The alignment has finished - + The alignment has finished + The alignment has finished - The alignment has been canceled - + The alignment has been canceled + The alignment has been canceled - Too few points picked in the left view. At least %1 points are needed. - + Too few points picked in the left view. At least %1 points are needed. + Too few points picked in the left view. At least %1 points are needed. - Too few points picked in the right view. At least %1 points are needed. - + Too few points picked in the right view. At least %1 points are needed. + Too few points picked in the right view. At least %1 points are needed. - Different number of points picked in left and right view. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Different number of points picked in left and right view. +On the left view %1 points are picked, +on the right view %2 points are picked. - Try to align group of views - + Try to align group of views + Try to align group of views - The alignment failed. + The alignment failed. How do you want to proceed? - + The alignment failed. +How do you want to proceed? - Retry - + Retry + Retry - Ignore - + Ignore + Negeren - Abort - + Abort + Abort - Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - Point picked at (%1,%2,%3) - + Point picked at (%1,%2,%3) + Point picked at (%1,%2,%3) - No point was picked - + No point was picked + No point was picked - - + + Gui::NetworkRetriever - Download started... + Download started... - Download gestart... + Download gestart... - - + + Gui::ProgressBar - Remaining: %1 - Resterend: %1 + Remaining: %1 + Resterend: %1 - Aborting - Bezig met afbreken + Aborting + Bezig met afbreken - Do you really want to abort the operation? - Wilt u echt de bewerking afbreken? + Do you really want to abort the operation? + Wilt u echt de bewerking afbreken? - - + + Gui::ProgressDialog - Remaining: %1 - Resterend: %1 + Remaining: %1 + Resterend: %1 - Aborting - Bezig met afbreken + Aborting + Bezig met afbreken - Do you really want to abort the operation? - Wilt u echt de bewerking afbreken? + Do you really want to abort the operation? + Wilt u echt de bewerking afbreken? - - + + Gui::PropertyEditor::PropertyModel - Property - Eigenschap + Property + Eigenschap - Value - Waarde + Value + Waarde - - + + Gui::PropertyView - View - Aanzicht + View + Aanzicht - Data - Data + Data + Data - - + + Gui::PythonConsole - System exit - Systeem afsluiten + System exit + Systeem afsluiten - The application is still running. + The application is still running. Do you want to exit without saving your data? - De toepassing is nog steeds actief. Wilt u afsluiten zonder het opslaan van uw gegevens? + De toepassing is nog steeds actief. Wilt u afsluiten zonder het opslaan van uw gegevens? - Python console - Python Console + Python console + Python Console - Unhandled PyCXX exception. - Niet-verwerkte uitzondering voor PyCXX. + Unhandled PyCXX exception. + Niet-verwerkte uitzondering voor PyCXX. - Unhandled FreeCAD exception. - Niet-verwerkte uitzondering voor FreeCAD. + Unhandled FreeCAD exception. + Niet-verwerkte uitzondering voor FreeCAD. - Unhandled unknown C++ exception. - Niet-verwerkte uitzondering voor onbekende C++. + Unhandled unknown C++ exception. + Niet-verwerkte uitzondering voor onbekende C++. - &Copy command - Kopieer commando + &Copy command + Kopieer commando - &Copy history - Kopieer geschiedenis + &Copy history + Kopieer geschiedenis - Save history as... - Geschiedenis opslaan als... + Save history as... + Geschiedenis opslaan als... - Insert file name... - Bestandsnaam invoeren... + Insert file name... + Bestandsnaam invoeren... - Save History - Geschiedenis opslaan + Save History + Geschiedenis opslaan - Macro Files (*.FCMacro *.py) - Macro-bestanden (*. FCMacro *. py) + Macro Files (*.FCMacro *.py) + Macro-bestanden (*. FCMacro *. py) - Insert file name - Bestandsnaam invoeren + Insert file name + Bestandsnaam invoeren - All Files (*.*) - Alle bestanden (*.*) + All Files (*.*) + Alle bestanden (*.*) - Python Input Dialog - Pythoninvoer-dialoog + Python Input Dialog + Pythoninvoer-dialoog - Unhandled std C++ exception. - Onverwerkte std C++ uitzondering. + Unhandled std C++ exception. + Onverwerkte std C++ uitzondering. - Word wrap - Word wrap + Word wrap + Tekstterugloop - &Copy - &Kopiëren + &Copy + &Kopiëren - &Paste - &Plakken + &Paste + &Plakken - Select All - Alles selecteren + Select All + Alles selecteren - Clear console - + Clear console + Clear console - - + + Gui::PythonEditor - Comment - Commentaar + Comment + Commentaar - Uncomment - Verwijder commentaar + Uncomment + Verwijder commentaar - - + + Gui::PythonInputField - OK - OK + OK + OK - Clear - Wissen + Clear + Wissen - - + + Gui::RecentFilesAction - Open file %1 - Open bestand %1 + Open file %1 + Open bestand %1 - File not found - Bestand niet gevonden + File not found + Bestand niet gevonden - The file '%1' cannot be opened. - Het bestand '%1' kan niet worden geopend. + The file '%1' cannot be opened. + Het bestand '%1' kan niet worden geopend. - - + + Gui::SelectModule - Select module - Module selecteren + Select module + Module selecteren - Open %1 as - Open %1 als + Open %1 as + Open %1 als - Select - Selecteer + Select + Selecteer - - + + Gui::StdCmdDescription - Help - Help + Help + Help - Des&cription - Oms&chrijving + Des&cription + Oms&chrijving - Long description of commands - Lange beschrijving van de commando's + Long description of commands + Lange beschrijving van de commando's - - + + Gui::StdCmdDownloadOnlineHelp - Help - Help + Help + Help - Download online help - Download online-help + Download online help + Download online-help - Download %1's online help - Download %1's online hulp + Download %1's online help + Download %1's online hulp - Non-existing directory - Niet-bestaande map + Non-existing directory + Niet-bestaande map - The directory '%1' does not exist. + The directory '%1' does not exist. Do you want to specify an existing directory? - De map '%1' bestaat niet. + De map '%1' bestaat niet. Wilt u een bestaande map opgeven? - Missing permission - Ontbrekende toestemming + Missing permission + Ontbrekende toestemming - You don't have write permission to '%1' + You don't have write permission to '%1' Do you want to specify another directory? - U hebt geen toestemming om te schrijven naar '%1' + U hebt geen toestemming om te schrijven naar '%1' Wilt u een andere map opgeven? - Stop downloading - Stop met downloaden + Stop downloading + Stop met downloaden - - + + Gui::StdCmdPythonHelp - Tools - Gereedschap + Tools + Gereedschap - Python Modules - Python modules + Python Modules + Python modules - Opens a browser to show the Python modules - Opent een browser om de Python-modules te tonen + Opens a browser to show the Python modules + Opent een browser om de Python-modules te tonen - - + + Gui::TaskBoxAngle - Angle - Hoek + Angle + Hoek - - + + Gui::TaskBoxPosition - Position - Positie + Position + Positie - - + + Gui::TaskView::TaskAppearance - Display mode: - Weergavemodus: + Plot mode: + Plot modus: - Plot mode: - Plot modus: + Point size: + Puntgrootte: - Point size: - Puntgrootte: + Line width: + Lijndikte: - Line width: - Lijndikte: + Transparency: + Transparantie: - Transparency: - Transparantie: + Appearance + Uiterlijk - Appearance - Uiterlijk + Document window: + Document window: - - Document window: - - - - + + Gui::TaskView::TaskEditControl - Edit - Bewerken + Edit + Bewerken - - + + Gui::TaskView::TaskSelectLinkProperty - Appearance - Uiterlijk + Appearance + Uiterlijk - ... - ... + ... + ... - edit selection - selectie bewerken + edit selection + selectie bewerken - - + + Gui::TouchpadNavigationStyle - Press left mouse button - Druk op de linker muisknop + Press left mouse button + Druk op de linker muisknop - Press SHIFT button - + Press SHIFT button + Press SHIFT button - Press ALT button - + Press ALT button + Press ALT button - Press PgUp/PgDown button - + Press PgUp/PgDown button + Press PgUp/PgDown button - - - Gui::Translator - - English - Engels - - - + + Gui::TreeDockWidget - Tree view - Boomstructuurweergave + Tree view + Boomstructuurweergave - - + + Gui::TreeWidget - Create group... - Groep maken... + Create group... + Groep maken... - Create a group - Maak een groep + Create a group + Maak een groep - Group - Groep + Group + Groep - Rename - Hernoemen + Rename + Hernoemen - Rename object - Object hernoemen + Rename object + Object hernoemen - Labels & Attributes - Labels & Kenmerken + Labels & Attributes + Labels & Kenmerken - Application - Applicatie + Application + Applicatie - Finish editing - Bewerken gereed + Finish editing + Bewerken gereed - Finish editing object - Beëindig bewerken object + Finish editing object + Beëindig bewerken object - Activate document - Activeer document + Activate document + Activeer document - Activate document %1 - Activeer document %1 + Activate document %1 + Activeer document %1 - - + + Gui::View3DInventor - Export PDF - Exporteren als PDF + Export PDF + Exporteren als PDF - PDF file (*.pdf) - PDF-bestand (*. pdf) + PDF file (*.pdf) + PDF-bestand (*. pdf) - - + + Gui::WorkbenchGroup - Select the '%1' workbench - Selecteer de '%1' werkbank + Select the '%1' workbench + Selecteer de '%1' werkbank - - + + Position - Form - Form + Form + Vorm - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - Z: + Z: + Z: - 0.1 mm - 0,1 mm + 0.1 mm + 0,1 mm - 0.5 mm - 0,5 mm + 0.5 mm + 0,5 mm - 1 mm - 1 mm + 1 mm + 1 mm - 2 mm - 2 mm + 2 mm + 2 mm - 5 mm - 5 mm + 5 mm + 5 mm - 10 mm - 10 mm + 10 mm + 10 mm - 20 mm - 20 mm + 20 mm + 20 mm - 50 mm - 50 mm + 50 mm + 50 mm - 100 mm - 100 mm + 100 mm + 100 mm - 200 mm - 200 mm + 200 mm + 200 mm - 500 mm - 500 mm + 500 mm + 500 mm - 1 m - 1 m + 1 m + 1 m - 2 m - 2 m + 2 m + 2 m - 5 m - 5 m + 5 m + 5 m - Grid Snap in - Raster kleven in + Grid Snap in + Raster kleven in - - + + QDockWidget - Tree view - Boomstructuurweergave + Tree view + Boomstructuurweergave - Property view - Eigenschappen-aanzicht + Property view + Eigenschappen-aanzicht - Selection view - Selectieaanzicht + Selection view + Selectieaanzicht - Report view - Rapportaanzicht + Report view + Rapportaanzicht - Task View - Taakaanzicht + Task View + Taakaanzicht - Combo View - Combi aanzicht + Combo View + Combi aanzicht - Toolbox - Toolbox + Toolbox + Gereedschapdoos - Python console - Python Console + Python console + Python Console - Display properties - Weergave eigenschappen + Display properties + Weergave eigenschappen - - + + QObject - General - Algemeen + General + Algemeen - Display - Weergave + Display + Weergave - Unknown filetype - Onbekend bestandstype + Unknown filetype + Onbekend bestandstype - Cannot open unknown filetype: %1 - Kan onbekende bestandstype niet openen: %1 + Cannot open unknown filetype: %1 + Kan onbekende bestandstype niet openen: %1 - Cannot save to unknown filetype: %1 - Kan onbekende bestandstype niet opslaan: %1 + Cannot save to unknown filetype: %1 + Kan onbekende bestandstype niet opslaan: %1 - Workbench failure - Werkbank falen + Workbench failure + Werkbank falen - %1 - %1 + %1 + %1 - Unable to launch Qt Assistant (%1) - Onmogelijk om Qt Assistant (%1) te start + Unable to launch Qt Assistant (%1) + Onmogelijk om Qt Assistant (%1) te start - Exception - Uitzondering + Exception + Uitzondering - Open document - Document openen + Open document + Document openen - Import file - Bestand importeren + Import file + Bestand importeren - Export file - Bestand exporteren + Export file + Bestand exporteren - Printing... - Afdrukken... + Printing... + Afdrukken... - Cannot load workbench - Kan werkbank niet laden + Cannot load workbench + Kan werkbank niet laden - A general error occurred while loading the workbench - Een algemene fout is opgetreden tijdens het laden van de werkbank + A general error occurred while loading the workbench + Een algemene fout is opgetreden tijdens het laden van de werkbank - File not found - Bestand niet gevonden + Save views... + Aanzichten opslaan... - Cannot open file %1 - Kan bestand %1 niet openen + Load views... + Laad aanzichten... - Save views... - Aanzichten opslaan... + Freeze view + Bevries aanzicht - Load views... - Laad aanzichten... + Clear views + Aanzichten wissen - Freeze view - Bevries aanzicht + Restore view &%1 + Herstel weergave &%1 - Clear views - Aanzichten wissen + Save frozen views + Bevroren zichten opslaan - Restore view &%1 - Herstel weergave &%1 + Frozen views (*.cam) + Bevroren aanzichten (*.cam) - Save frozen views - Save frozen views + Restore views + Herstel aanzichten - Frozen views (*.cam) - Bevroren aanzichten (*.cam) - - - Restore views - Herstel aanzichten - - - Importing the restored views would clear the already stored views. + Importing the restored views would clear the already stored views. Do you want to continue? - Importing the restored views would clear the already stored views. -Do you want to continue? + Importeren van de gerestaureerde zichten zou de reeds opgeslagen zichten overschrijven. Wilt u doorgaan? - Restore frozen views - Restore frozen views + Restore frozen views + Bevroren zichten herstellen - Cannot open file '%1'. - Kan bestand '%1' niet openen. + Cannot open file '%1'. + Kan bestand '%1' niet openen. - Docked - Docked + Docked + Gedokt - Undocked - Undocked + Undocked + Afgekoppeld - Fullscreen - Schermvullend + Fullscreen + Schermvullend - files - Bestanden + files + Bestanden - Save picture - Afbeelding opslaan + Save picture + Afbeelding opslaan - New sub-group - Nieuwe subgroep + New sub-group + Nieuwe subgroep - Enter the name: - Voer de naam in: + Enter the name: + Voer de naam in: - New text item - Nieuw tekstitem + New text item + Nieuw tekstitem - Enter your text: - Voer uw tekst in: + Enter your text: + Voer uw tekst in: - New integer item - Nieuw geheel getal + New integer item + Nieuw geheel getal - Enter your number: - Geef uw nummer: + Enter your number: + Geef uw nummer: - New unsigned item - Nieuw positief geheel getal + New unsigned item + Nieuw positief geheel getal - New float item - Nieuwe decimale waarde + New float item + Nieuwe decimale waarde - New Boolean item - Nieuwe booleaanse waarde + New Boolean item + Nieuwe booleaanse waarde - Choose an item: - Kies een item: + Choose an item: + Kies een item: - Rename group - Groep hernoemen + Rename group + Groep hernoemen - The group '%1' cannot be renamed. - De groep '%1' kan niet worden hernoemd. + The group '%1' cannot be renamed. + De groep '%1' kan niet worden hernoemd. - Existing group - Bestaande groep + Existing group + Bestaande groep - The group '%1' already exists. - De groep '%1' bestaat al. + The group '%1' already exists. + De groep '%1' bestaat al. - Change value - Waarde wijzigen + Change value + Waarde wijzigen - Save document under new filename... - Document opslaan onder een nieuwe bestandsnaam... + Save document under new filename... + Document opslaan onder een nieuwe bestandsnaam... - Saving aborted - Opslaan afgebroken + Saving aborted + Opslaan afgebroken - Unsaved document - Niet-opgeslagen document + Unsaved document + Niet-opgeslagen document - Save document before close? - Document opslaan voor het sluiten? + Save document before close? + Document opslaan voor het sluiten? - Save Macro - Macro opslaan + Save Macro + Macro opslaan - Finish - Voltooien + Finish + Voltooien - Clear - Wissen + Clear + Wissen - Cancel - Annuleren + Cancel + Annuleren - Inner - binnenste + Inner + binnenste - Outer - buitenste + Outer + buitenste - No Browser - Geen browser + No Browser + Geen browser - Unable to open your browser. + Unable to open your browser. Please open a browser window and type in: http://localhost:%1. - Kan uw browser niet openen. + Kan uw browser niet openen. Open een browservenster en typ: http://localhost:%1. - No Server - Geen Server + No Server + Geen Server - Unable to start the server to port %1: %2. - Kan de server met poort %1 niet starten: %2. + Unable to start the server to port %1: %2. + Kan de server met poort %1 niet starten: %2. - Unable to open your system browser. - Kan uw standaard browser niet starten. + Unable to open your system browser. + Kan uw standaard browser niet starten. - Options... - Opties... + Options... + Opties... - Out of memory - Onvoldoende geheugen + Out of memory + Onvoldoende geheugen - Not enough memory available to display the data. - Niet genoeg geheugen beschikbaar om de gegevens weer te geven. + Not enough memory available to display the data. + Niet genoeg geheugen beschikbaar om de gegevens weer te geven. - Cannot find file %1 - Kan bestand %1 niet vinden + Cannot find file %1 + Kan bestand %1 niet vinden - Cannot find file %1 neither in %2 nor in %3 - Kan bestand %1 niet vinden noch in %2, noch in %3 + Cannot find file %1 neither in %2 nor in %3 + Kan bestand %1 niet vinden noch in %2, noch in %3 - Save %1 Document - Document %1 opslaan + Save %1 Document + Document %1 opslaan - %1 document (*.FCStd) - %1 document (*.FCStd) + %1 document (*.FCStd) + %1 document (*.FCStd) - Save As - Opslaan als + Save As + Opslaan als - %1 already exists. + %1 already exists. Do you want to replace it? - %1 bestaat al. Wilt u het vervangen? + %1 bestaat al. Wilt u het vervangen? - Document not closable - Document niet te sluiten + Document not closable + Document niet te sluiten - The document is not closable for the moment. - Het document is op dit moment niet te sluiten. + The document is not closable for the moment. + Het document is op dit moment niet te sluiten. - No OpenGL - Geen OpenGL + No OpenGL + Geen OpenGL - This system does not support OpenGL - Dit systeem biedt geen ondersteuning voor OpenGL + This system does not support OpenGL + Dit systeem biedt geen ondersteuning voor OpenGL - Help - Help + Help + Help - Unable to load documentation. + Unable to load documentation. In order to load it Qt 4.4 or higher is required. - Niet in staat om documenten te laden. + Niet in staat om documenten te laden. Om het te kunnen laden is Qt 4.4 of hoger nodig. - %1 Help - %1 Help + %1 Help + %1 Help - Exporting PDF... - Exporteren van PDF ... + Exporting PDF... + Exporteren van PDF ... - Wrong selection - Verkeerde selectie + Wrong selection + Verkeerde selectie - Only one object selected. Please select two objects. + Only one object selected. Please select two objects. Be aware the point where you click matters. - Slechts één object geselecteerd. Selecteer twee objecten. + Slechts één object geselecteerd. Selecteer twee objecten. Let op, het maakt uit waar je klikt. - Please select two objects. + Please select two objects. Be aware the point where you click matters. - Selecteer twee objecten. + Selecteer twee objecten. Let op, het maakt uit waar je klikt. - New boolean item - New boolean item + New boolean item + Nieuw Booleaans element - Navigation styles - Navigatie stijlen + Navigation styles + Navigatie stijlen - %1 navigation - %1 navigatie + %1 navigation + %1 navigatie - Move annotation - Move annotation + Move annotation + Verplaats annotatie - Transform - Transformeren + Transform + Transformeren - The document is in editing mode and thus cannot be closed for the moment. + The document is in editing mode and thus cannot be closed for the moment. You either have to finish or cancel the editing in the task panel. - The document is in editing mode and thus cannot be closed for the moment. + The document is in editing mode and thus cannot be closed for the moment. You either have to finish or cancel the editing in the task panel. - - + + StdBoxSelection - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Box selection - + Box selection + Box selection - - + + StdCmdAbout - Help - Help + Help + Help - &About %1 - &Info over %1 + &About %1 + &Info over %1 - About %1 - Info over %1 + About %1 + Info over %1 - - + + StdCmdAboutQt - Help - Help + Help + Help - About &Qt - Info over Qt + About &Qt + Info over Qt - About Qt - Info over Qt + About Qt + Info over Qt - - + + StdCmdActivateNextWindow - Window - Venster + Window + Venster - Ne&xt - Volge&nde + Ne&xt + Volge&nde - Activate next window - Activeer volgende venster + Activate next window + Activeer volgende venster - - + + StdCmdActivatePrevWindow - Window - Venster + Window + Venster - Pre&vious - &Vorige + Pre&vious + &Vorige - Activate previous window - Activeer vorige venster + Activate previous window + Activeer vorige venster - - + + StdCmdAlignment - Edit - Bewerken + Edit + Bewerken - Alignment... - + Alignment... + Alignment... - Align the selected objects - + Align the selected objects + Align the selected objects - - + + StdCmdArrangeIcons - Window - Venster + Window + Venster - Arrange &Icons - Schikken p&ictogrammen + Arrange &Icons + Schikken p&ictogrammen - Arrange Icons - Schikken pictogrammen + Arrange Icons + Schikken pictogrammen - - + + StdCmdAxisCross - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Toggle axis cross - Toggle axis cross + Toggle axis cross + Schakel assenkruis - - + + StdCmdCascadeWindows - Window - Venster + Window + Venster - &Cascade - &Trapsgewijs + &Cascade + &Trapsgewijs - Tile pragmatic - Tile pragmatic + Tile pragmatic + Tegel pragmatisch - - + + StdCmdCloseActiveWindow - Window - Venster + Window + Venster - Cl&ose - &Sluiten + Cl&ose + &Sluiten - Close active window - Actieve venster sluiten + Close active window + Actieve venster sluiten - - + + StdCmdCloseAllWindows - Window - Venster + Window + Venster - Close Al&l - A&lles sluiten + Close Al&l + A&lles sluiten - Close all windows - Alle vensters sluiten + Close all windows + Alle vensters sluiten - - + + StdCmdCommandLine - Tools - Gereedschap + Tools + Gereedschap - Start command &line... - Start command &line... + Start command &line... + Command &line opstarten... - Opens the command line in the console - Opens the command line in the console + Opens the command line in the console + Opent de command line in de console - - + + StdCmdCopy - Edit - Bewerken + Edit + Bewerken - C&opy - K&opiëren + C&opy + K&opiëren - Copy operation - Kopieer bewerking + Copy operation + Kopieer bewerking - - + + StdCmdCut - Edit - Bewerken + Edit + Bewerken - &Cut - &Knippen + &Cut + &Knippen - Cut out - Uitsnijden + Cut out + Uitsnijden - - - StdCmdDDuplicateSelection - - Edit - Bewerken - - - Duplicate selection - Dupliceer selectie - - - Put duplicates of the selected objects to the active document - Duplicaten van de geselecteerde objecten aan het actieve document toevoegen - - - + + StdCmdDelete - Edit - Bewerken + Edit + Bewerken - &Delete - &Verwijderen + &Delete + &Verwijderen - Deletes the selected objects - Wist de geselecteerde objecten + Deletes the selected objects + Wist de geselecteerde objecten - - + + StdCmdDemoMode - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - View turntable... - View turntable... + View turntable... + Bekijk draaitafel... - View turntable - View turntable + View turntable + Bekijk draaitafel - - + + StdCmdDlgCustomize - Tools - Gereedschap + Tools + Gereedschap - Cu&stomize... - Cu&stomize... + Cu&stomize... + &Personalisatie... - Customize toolbars and command bars - Werkbalken en opdrachtbalken aanpassen + Customize toolbars and command bars + Werkbalken en opdrachtbalken aanpassen - - + + StdCmdDlgMacroExecute - Macros ... - Macro's ... + Macros ... + Macro's ... - Opens a dialog to let you execute a recorded macro - Opent een dialoogvenster om u een opgenomen macro te laten uitvoeren + Opens a dialog to let you execute a recorded macro + Opent een dialoogvenster om u een opgenomen macro te laten uitvoeren - Macro - Macro + Macro + Macro - - + + StdCmdDlgMacroExecuteDirect - Macro - Macro + Macro + Macro - Execute macro - Macro uitvoeren + Execute macro + Macro uitvoeren - Execute the macro in the editor - De macro uitvoeren in de editor + Execute the macro in the editor + De macro uitvoeren in de editor - - + + StdCmdDlgMacroRecord - &Macro recording ... - &Macro opnemen... + &Macro recording ... + &Macro opnemen... - Opens a dialog to record a macro - Opent een dialoogvenster om een macro op te nemen + Opens a dialog to record a macro + Opent een dialoogvenster om een macro op te nemen - Macro - Macro + Macro + Macro - - + + StdCmdDlgParameter - Tools - Gereedschap + Tools + Gereedschap - E&dit parameters ... - E&dit parameters... + E&dit parameters ... + E&dit parameters... - Opens a Dialog to edit the parameters - Opent een dialoogvenster om de parameters te bewerken + Opens a Dialog to edit the parameters + Opent een dialoogvenster om de parameters te bewerken - - + + StdCmdDlgPreferences - Tools - Gereedschap + Tools + Gereedschap - &Preferences ... - &Opties... + &Preferences ... + &Opties... - Opens a Dialog to edit the preferences - Opent een dialoogvenster om de voorkeuren bewerken + Opens a Dialog to edit the preferences + Opent een dialoogvenster om de voorkeuren bewerken - - + + StdCmdDockViewMenu - View - Aanzicht + View + Aanzicht - Vie&ws - Aanzichten + Vie&ws + Aanzichten - Toggles this window - Schakelt dit venster + Toggles this window + Schakelt dit venster - - + + StdCmdDrawStyle - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Draw style - Draw style + Draw style + Tekenstijl - - + + StdCmdDuplicateSelection - Edit - Bewerken + Edit + Bewerken - Duplicate selection - Dupliceer selectie + Duplicate selection + Dupliceer selectie - Put duplicates of the selected objects to the active document - Duplicaten van de geselecteerde objecten aan het actieve document toevoegen + Put duplicates of the selected objects to the active document + Duplicaten van de geselecteerde objecten aan het actieve document toevoegen - - + + StdCmdEdit - Edit - Bewerken + Edit + Bewerken - Toggle &Edit mode - + Toggle &Edit mode + Toggle &Edit mode - Toggles the selected object's edit mode - + Toggles the selected object's edit mode + Toggles the selected object's edit mode - Enters or leaves the selected object's edit mode - + Enters or leaves the selected object's edit mode + Enters or leaves the selected object's edit mode - - + + StdCmdExport - File - Bestand + File + Bestand - &Export... - &Exporteren... + &Export... + &Exporteren... - Export an object in the active document - Export een object uit het actieve document + Export an object in the active document + Export een object uit het actieve document - Supported formats - Ondersteunde formaten + No selection + Geen selectie - No selection - + Please select first the objects you want to export. + Please select first the objects you want to export. - - Please select first the objects you want to export. - - - - + + StdCmdExportGraphviz - Tools - Gereedschap + Tools + Gereedschap - Dependency graph... - + Dependency graph... + Dependency graph... - Show the dependency graph of the objects in the active document - + Show the dependency graph of the objects in the active document + Show the dependency graph of the objects in the active document - - + + StdCmdFeatRecompute - File - Bestand + File + Bestand - &Recompute - &Herberekenen + &Recompute + &Herberekenen - Recompute feature or document - Herberekenen kenmerk of document + Recompute feature or document + Herberekenen kenmerk of document - - + + StdCmdFreeCADWebsite - Help - Help + Help + Help - FreeCAD Website - FreeCAD Webpagina + FreeCAD Website + FreeCAD Webpagina - The FreeCAD website - De FreeCAD webpagina + The FreeCAD website + De FreeCAD webpagina - - + + StdCmdFreezeViews - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Freeze display - Bevries aanzicht + Freeze display + Bevries aanzicht - Freezes the current view position - Bevriest het huidige aanzicht + Freezes the current view position + Bevriest het huidige aanzicht - - + + StdCmdHideObjects - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Hide all objects - Verberg alle objecten + Hide all objects + Verberg alle objecten - Hide all objects in the document - Verberg alle objecten in het document + Hide all objects in the document + Verberg alle objecten in het document - - + + StdCmdHideSelection - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Hide selection - Selectie verbergen + Hide selection + Selectie verbergen - Hide all selected objects - Verberg alle geselecteerde objecten + Hide all selected objects + Verberg alle geselecteerde objecten - - + + StdCmdImport - File - Bestand + File + Bestand - &Import... - &Importeren... + &Import... + &Importeren... - Import a file in the active document - Importeer een bestand in het actieve document + Import a file in the active document + Importeer een bestand in het actieve document - Supported formats - Ondersteunde formaten + Supported formats + Ondersteunde formaten - All files (*.*) - Alle bestanden (*.*) + All files (*.*) + Alle bestanden (*.*) - - + + StdCmdMacroStartDebug - Macro - Macro + Macro + Macro - Debug macro - Debug macro + Debug macro + Debug macro - Start debugging of macro - Start debuggen van macro + Start debugging of macro + Start debuggen van macro - - + + StdCmdMacroStepOver - Macro - Macro + Macro + Macro - Step over - Stap over + Step over + Stap over - - + + StdCmdMacroStopDebug - Macro - Macro + Macro + Macro - Stop debugging - Stop debugging + Stop debugging + Stop debugging - Stop debugging of macro - Stop debuggen van macro + Stop debugging of macro + Stop debuggen van macro - - + + StdCmdMacroStopRecord - Macro - Macro + Macro + Macro - S&top macro recording - S&top macro-opname + S&top macro recording + S&top macro-opname - Stop the macro recording session - Stop de macro-opname sessie + Stop the macro recording session + Stop de macro-opname sessie - - + + StdCmdMeasureDistance - View - Aanzicht + View + Aanzicht - Measure distance - Afstand meten + Measure distance + Afstand meten - - + + StdCmdMeasurementSimple - Tools - Gereedschap + Tools + Gereedschap - Mesure distance - Meet afstand + Measures distance between two selected objects + Meet afstand tussen twee geselecteerde objecten - Measures distance between two selected objects - Meet afstand tussen twee geselecteerde objecten + Measure distance + Afstand meten - - Measure distance - Afstand meten - - - + + StdCmdMergeProjects - File - Bestand + File + Bestand - Merge project... - Voeg project samen... + Merge project... + Voeg project samen... - Merge project - Voeg project samen + Merge project + Voeg project samen - %1 document (*.fcstd) - %1 document(*.fcstd) + %1 document (*.fcstd) + %1 document(*.fcstd) - Cannot merge project with itself. - Kan project niet met zichzelf samenvoegen. + Cannot merge project with itself. + Kan project niet met zichzelf samenvoegen. - - + + StdCmdNew - File - Bestand + File + Bestand - &New - &Nieuw + &New + &Nieuw - Create a new empty document - Maak een nieuw leeg document + Create a new empty document + Maak een nieuw leeg document - - + + StdCmdOnlineHelp - Help - Help + Help + Help - Show help to the application - Toon help voor de applicatie + Show help to the application + Toon help voor de applicatie - - - StdCmdOnlineHelpPython - - Help - Help - - - Python Manuals - Python Handleidingen - - - Show the Python documentation - Toon de Python documentatie - - - + + StdCmdOnlineHelpWebsite - Help - Help + Help + Help - Help Website - Help Webpagina + Help Website + Help Webpagina - The website where the help is maintained - De webpagina waar de help wordt onderhouden + The website where the help is maintained + De webpagina waar de help wordt onderhouden - - + + StdCmdOpen - File - Bestand + File + Bestand - &Open... - &Openen... + &Open... + &Openen... - Open a document or import files - Open een document of importeer bestanden + Open a document or import files + Open een document of importeer bestanden - Supported formats - Ondersteunde formaten + Supported formats + Ondersteunde formaten - All files (*.*) - Alle bestanden (*.*) + All files (*.*) + Alle bestanden (*.*) - - + + StdCmdPaste - Edit - Bewerken + Edit + Bewerken - &Paste - &Plakken + &Paste + &Plakken - Paste operation - Plakbewerking + Paste operation + Plakbewerking - - + + StdCmdPlacement - Edit - Bewerken + Edit + Bewerken - Placement... - Plaatsing... + Placement... + Plaatsing... - Place the selected objects - Plaats de geselecteerde objecten + Place the selected objects + Plaats de geselecteerde objecten - - + + StdCmdPrint - File - Bestand + File + Bestand - &Print... - Afdru&kken... + &Print... + Afdru&kken... - Print the document - Het document afdrukken + Print the document + Het document afdrukken - - + + StdCmdPrintPdf - File - Bestand + File + Bestand - &Export PDF... - &Exporteren als PDF... + &Export PDF... + &Exporteren als PDF... - Export the document as PDF - Exporteer het document als PDF + Export the document as PDF + Exporteer het document als PDF - - + + StdCmdPrintPreview - File - Bestand + File + Bestand - &Print preview... - &Afdrukvoorbeeld... + &Print preview... + &Afdrukvoorbeeld... - Print the document - Het document afdrukken + Print the document + Het document afdrukken - Print preview - Afdrukvoorbeeld + Print preview + Afdrukvoorbeeld - - + + StdCmdProjectInfo - File - Bestand + File + Bestand - Project i&nformation... - Project&informatie... + Project i&nformation... + Project&informatie... - Show details of the currently active project - Toon details van het huidige actieve project + Show details of the currently active project + Toon details van het huidige actieve project - - + + StdCmdProjectUtil - Tools - Gereedschap + Tools + Gereedschap - Project utility... - Project hulpprogramma... + Project utility... + Project hulpprogramma... - Utility to extract or create project files - Utility to extract or create project files + Utility to extract or create project files + Gereedschap om project bestanden uit te trekken of te maken - - + + StdCmdPythonWebsite - Help - Help + Help + Help - Python Website - Python-webpagina + Python Website + Python-webpagina - The official Python website - De officiële Python webpagina + The official Python website + De officiële Python webpagina - - + + StdCmdQuit - File - Bestand + File + Bestand - E&xit - Afsl&uiten + E&xit + Afsl&uiten - Quits the application - Sluit de applicatie + Quits the application + Sluit de applicatie - - + + StdCmdRandomColor - File - Bestand + File + Bestand - Random color - Willekeurige kleur + Random color + Willekeurige kleur - - + + StdCmdRecentFiles - File - Bestand + File + Bestand - Recent files - Recente Bestanden + Recent files + Recente Bestanden - Recent file list - Lijst met recente bestanden + Recent file list + Lijst met recente bestanden - - + + StdCmdRedo - Edit - Bewerken + Edit + Bewerken - &Redo - &Opnieuw + &Redo + &Opnieuw - Redoes a previously undone action - Opnieuw uitvoeren van een eerder ongedane actie + Redoes a previously undone action + Opnieuw uitvoeren van een eerder ongedane actie - - + + StdCmdRefresh - Edit - Bewerken + Edit + Bewerken - &Refresh - &Verversen + &Refresh + &Verversen - Recomputes the current active document - Herberekend het huidige actieve document + Recomputes the current active document + Herberekend het huidige actieve document - - + + StdCmdSave - File - Bestand + File + Bestand - &Save - O&pslaan + &Save + O&pslaan - Save the active document - Sla het actieve document op + Save the active document + Sla het actieve document op - - + + StdCmdSaveAs - File - Bestand + File + Bestand - Save &As... - Opslaan &als... + Save &As... + Opslaan &als... - Save the active document under a new file name - Sla het actieve document onder een nieuwe bestandsnaam op + Save the active document under a new file name + Sla het actieve document onder een nieuwe bestandsnaam op - - + + StdCmdSceneInspector - Tools - Gereedschap + Tools + Gereedschap - Scene inspector... - Scène inspecteur ... + Scene inspector... + Scène inspecteur ... - Scene inspector - Scène inspecteur + Scene inspector + Scène inspecteur - - + + StdCmdSelectAll - Edit - Bewerken + Edit + Bewerken - Select &All - &Alles selecteren + Select &All + &Alles selecteren - Select all - Alles selecteren + Select all + Alles selecteren - - + + StdCmdSetAppearance - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Appearance... - Uiterlijk... + Appearance... + Uiterlijk... - Sets the display properties of the selected object - Stelt de weergave-eigenschappen in van het geselecteerde object + Sets the display properties of the selected object + Stelt de weergave-eigenschappen in van het geselecteerde object - - + + StdCmdShowObjects - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Show all objects - Toon alle objecten + Show all objects + Toon alle objecten - Show all objects in the document - Toon alle objecten in het document + Show all objects in the document + Toon alle objecten in het document - - + + StdCmdShowSelection - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Show selection - Toon selectie + Show selection + Toon selectie - Show all selected objects - Toon alle geselecteerde objecten + Show all selected objects + Toon alle geselecteerde objecten - - + + StdCmdStatusBar - View - Aanzicht + View + Aanzicht - Status bar - statusregel + Status bar + statusregel - Toggles the status bar - Schakelt de statusregel aan/uit + Toggles the status bar + Schakelt de statusregel aan/uit - - + + StdCmdTextureMapping - Tools - Gereedschap + Tools + Gereedschap - Texture mapping... - Texture mapping... + Texture mapping... + Texture mapping... - Texture mapping - Textuurafbeelden + Texture mapping + Textuurafbeelden - - + + StdCmdTileWindows - Window - Venster + Window + Venster - &Tile - &Naast elkaar + &Tile + &Naast elkaar - Tile the windows - Vensters naast elkaar schikken + Tile the windows + Vensters naast elkaar schikken - - + + StdCmdToggleBreakpoint - Macro - Macro + Macro + Macro - Toggle breakpoint - Toggle breakpoint + Toggle breakpoint + Schakel breekpunt aan/uit - - + + StdCmdToggleClipPlane - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Clipping plane - Snijvlak + Clipping plane + Snijvlak - Toggles clipping plane for active view - Snijvlak voor actieve aanzicht in/uitschakelen + Toggles clipping plane for active view + Snijvlak voor actieve aanzicht in/uitschakelen - - + + StdCmdToggleNavigation - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Toggle navigation/Edit mode - Toggle navigation/Edit mode + Toggle navigation/Edit mode + Schakel tussen navigatie en aanpassing modus - Toggle between navigation and edit mode - Wisselen tussen navigatie- en editmode + Toggle between navigation and edit mode + Wisselen tussen navigatie- en editmode - - + + StdCmdToggleObjects - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Toggle all objects - Alle objecten [de]selecteren + Toggle all objects + Alle objecten [de]selecteren - Toggles visibility of all objects in the active document - Wisselt zichtbaarheid van alle objecten in het actieve document + Toggles visibility of all objects in the active document + Wisselt zichtbaarheid van alle objecten in het actieve document - - + + StdCmdToggleSelectability - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Toggle selectability - Toggle selectability + Toggle selectability + Schakel selecteerbaarheid aan/uit - Toggles the property of the objects to get selected in the 3D-View - Toggles the property of the objects to get selected in the 3D-View + Toggles the property of the objects to get selected in the 3D-View + Schakelt de mogelijkheid of ombjecten in de 3D view te selecteren aan of uit - - + + StdCmdToggleVisibility - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Toggle visibility - Wissel zichtbaarheid + Toggle visibility + Wissel zichtbaarheid - Toggles visibility - Wisselt zichtbaarheid + Toggles visibility + Wisselt zichtbaarheid - - + + StdCmdToolBarMenu - View - Aanzicht + View + Aanzicht - Tool&bars - Werk&balk + Tool&bars + Werk&balk - Toggles this window - Schakelt dit venster + Toggles this window + Schakelt dit venster - - + + StdCmdTransform - Edit - Bewerken + Edit + Bewerken - Transform... - Transform... + Transform... + Verander... - Transform the geometry of selected objects - Transform the geometry of selected objects + Transform the geometry of selected objects + Verander de geometrie van de geselecteerde objecten - - + + StdCmdTreeSelection - View - Aanzicht + View + Aanzicht - Go to selection - Ga naar selectie + Go to selection + Ga naar selectie - Scroll to first selected item - Scroll naar het eerste geselecteerde item + Scroll to first selected item + Scroll naar het eerste geselecteerde item - - + + StdCmdUndo - Edit - Bewerken + Edit + Bewerken - &Undo - &Ongedaan maken + &Undo + &Ongedaan maken - Undo exactly one action - Precies één actie ongedaan maken + Undo exactly one action + Precies één actie ongedaan maken - - + + StdCmdUserInterface - View - Aanzicht + View + Aanzicht - Dock views - Dok aanzichten + Dock views + Dok aanzichten - Dock all top-level views - Dok alle hoogste niveau aanzichten + Dock all top-level views + Dok alle hoogste niveau aanzichten - - + + StdCmdViewAxo - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Axometric - Axometric + Axometric + Axonometrisch - Set to axometric view - Set to axometric view + Set to axometric view + Axonometrisch zicht instellen - - + + StdCmdViewBottom - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Bottom - Onderkant + Bottom + Onderkant - Set to bottom view - Ingesteld op onderaanzicht + Set to bottom view + Ingesteld op onderaanzicht - - + + StdCmdViewCreate - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Create new view - Nieuw aanzicht aanmaken + Create new view + Nieuw aanzicht aanmaken - Creates a new view window for the active document - Creëert een nieuw aanzichtvenster voor het actieve document + Creates a new view window for the active document + Creëert een nieuw aanzichtvenster voor het actieve document - - + + StdCmdViewExample1 - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Inventor example #1 - Inventor voorbeeld #1 + Inventor example #1 + Inventor voorbeeld #1 - Shows a 3D texture with manipulator - Shows a 3D texture with manipulator + Shows a 3D texture with manipulator + Toont een 3D textuur met manipulator - - + + StdCmdViewExample2 - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Inventor example #2 - Inventor bijvoorbeeld #2 + Inventor example #2 + Inventor bijvoorbeeld #2 - Shows spheres and drag-lights - Shows spheres and drag-lights + Shows spheres and drag-lights + Toont sferen en treklichten - - + + StdCmdViewExample3 - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Inventor example #3 - Inventor bijvoorbeeld #3 + Inventor example #3 + Inventor bijvoorbeeld #3 - Shows a animated texture - Shows a animated texture + Shows a animated texture + Toont een geanimeerde textuur - - + + StdCmdViewFitAll - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Fit all - Passend + Fit all + Passend - Fits the whole content on the screen - Zorgt dat de volledige inhoud op het scherm past + Fits the whole content on the screen + Zorgt dat de volledige inhoud op het scherm past - - + + StdCmdViewFitSelection - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Fit selection - Selectie passend + Fit selection + Selectie passend - Fits the selected content on the screen - Zorgt dat de geselecteerde inhoud op het scherm past + Fits the selected content on the screen + Zorgt dat de geselecteerde inhoud op het scherm past - - + + StdCmdViewFront - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Front - Voorkant + Front + Voorkant - Set to front view - Ingesteld op vooraanzicht + Set to front view + Ingesteld op vooraanzicht - - + + StdCmdViewIvIssueCamPos - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Issue camera position - Issue camera position + Issue camera position + De camerapositie weergeven - Issue the camera position to the console and to a macro, to easily recall this position - Issue the camera position to the console and to a macro, to easily recall this position + Issue the camera position to the console and to a macro, to easily recall this position + Weergeeft de camerapositie in de console en in een macro, zo het gemakkelijk kan herhaald worden - - + + StdCmdViewIvStereoInterleavedColumns - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Stereo Interleaved Columns - Stereo Interleaved Columns + Stereo Interleaved Columns + Stereoscopisch, vervlochten kolommen - Switch stereo viewing to Interleaved Columns - Switch stereo viewing to Interleaved Columns + Switch stereo viewing to Interleaved Columns + Ga naar stereoscopisch, vervlochten kolommen - - + + StdCmdViewIvStereoInterleavedRows - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Stereo Interleaved Rows - Stereo Interleaved Rows + Stereo Interleaved Rows + Stereoscopisch, vervlochten regels - Switch stereo viewing to Interleaved Rows - Switch stereo viewing to Interleaved Rows + Switch stereo viewing to Interleaved Rows + Ga naar stereoscopisch vervlochten regels - - + + StdCmdViewIvStereoOff - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Stereo Off - Stereo Uit + Stereo Off + Stereo Uit - Switch stereo viewing off - Schakel stereo-weergave uit + Switch stereo viewing off + Schakel stereo-weergave uit - - + + StdCmdViewIvStereoQuadBuff - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Stereo quad buffer - Stereo quad buffer + Stereo quad buffer + Stereoscopisch, quad buffer - Switch stereo viewing to quad buffer - Switch stereo viewing to quad buffer + Switch stereo viewing to quad buffer + Ga naar stereoscopisch, quad buffer - - + + StdCmdViewIvStereoRedGreen - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Stereo red/green - Stereo rood/groen + Stereo red/green + Stereo rood/groen - Switch stereo viewing to red/green - Stereo weergave overschakelen naar rood/groen + Switch stereo viewing to red/green + Stereo weergave overschakelen naar rood/groen - - + + StdCmdViewLeft - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Left - Links + Left + Links - Set to left view - Linker-aanzicht instellen + Set to left view + Linker-aanzicht instellen - - + + StdCmdViewRear - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Rear - Achter + Rear + Achter - Set to rear view - Achter-aanzicht instellen + Set to rear view + Achter-aanzicht instellen - - + + StdCmdViewRight - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Right - Rechts + Right + Rechts - Set to right view - Rechter-aanzicht instellen + Set to right view + Rechter-aanzicht instellen - - + + StdCmdViewRotateLeft - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Rotate Left - + Rotate Left + Rotate Left - Rotate the view by 90° counter-clockwise - + Rotate the view by 90° counter-clockwise + Rotate the view by 90° counter-clockwise - - + + StdCmdViewRotateRight - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Rotate Right - + Rotate Right + Rotate Right - Rotate the view by 90° clockwise - + Rotate the view by 90° clockwise + Rotate the view by 90° clockwise - - + + StdCmdViewTop - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Top - Boven + Top + Boven - Set to top view - Boven-aanzicht instellen + Set to top view + Boven-aanzicht instellen - - + + StdCmdWhatsThis - Help - Help + Help + Help - &What's This? - &Wat is dit? + &What's This? + &Wat is dit? - What's This - Wat is dit + What's This + Wat is dit - - + + StdCmdWindows - Window - Venster + Window + Venster - &Windows... - &Vensters... + &Windows... + &Vensters... - Windows list - Windows list + Windows list + Windows lijst - - + + StdCmdWindowsMenu - Window - Venster + Window + Venster - Activates this window - Activeert dit venster + Activates this window + Activeert dit venster - - + + StdCmdWorkbench - View - Aanzicht + View + Aanzicht - Workbench - Werkbank + Workbench + Werkbank - Switch between workbenches - Switch between workbenches + Switch between workbenches + Schakel tussen werkbanken - - + + StdOrthographicCamera - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Orthographic view - Orthogonale projectie + Orthographic view + Orthogonale projectie - Switches to orthographic view mode - Schakelt naar orthogonale projectie + Switches to orthographic view mode + Schakelt naar orthogonale projectie - - + + StdPerspectiveCamera - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Perspective view - Perspectivische projectie + Perspective view + Perspectivische projectie - Switches to perspective view mode - Schakelt naar perspectivische projectie + Switches to perspective view mode + Schakelt naar perspectivische projectie - - + + StdViewBoxZoom - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Box zoom - Vensterzoom + Box zoom + Vensterzoom - - + + StdViewDockUndockFullscreen - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Document window - Documentvenster + Document window + Document window - Display the active view either in fullscreen, in undocked or docked mode - Display the active view either in fullscreen, in undocked or docked mode + Display the active view either in fullscreen, in undocked or docked mode + Toon het actieve aanzicht als volledig, losgekoppeld of gekoppeld scherm - - + + StdViewScreenShot - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Save picture... - Afbeelding opslaan... + Save picture... + Afbeelding opslaan... - Creates a screenshot of the active view - Hiermee maakt u een screenshot van het actieve aanzicht + Creates a screenshot of the active view + Hiermee maakt u een screenshot van het actieve aanzicht - - + + StdViewZoomIn - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Zoom In - Inzoomen + Zoom In + Inzoomen - - + + StdViewZoomOut - Standard-View - Standaard-aanzicht + Standard-View + Standaard-aanzicht - Zoom Out - Uitzoomen + Zoom Out + Uitzoomen - - + + Std_DrawStyle - As is - As is + As is + Als getekend - Normal mode - Normal mode + Normal mode + Standaard modus - Wireframe - Wireframe + Wireframe + Draadmodel - Wireframe mode - Wireframe mode + Wireframe mode + Draadmodel modus - - + + Std_ExportGraphviz - Graphviz not found - + Graphviz not found + Graphviz not found - Graphviz couldn't be found on your system. -Do you want to specify its installation path if it's already installed? - + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? - Graphviz installation path - + Graphviz installation path + Graphviz installation path - Dependency graph - + Dependency graph + Dependency graph - Graphviz failed - + Graphviz failed + Graphviz failed - Graphviz failed to create an image file - + Graphviz failed to create an image file + Graphviz failed to create an image file - - + + Workbench - &File - &Bestand + &File + &Bestand - &Edit - &Bewerken + &Edit + &Bewerken - Standard views - Standaard aanzichten + Standard views + Standaard aanzichten - &Stereo - &Stereo + &Stereo + &Stereo - &Zoom - &Zoom + &Zoom + &Zoom - Visibility - Zichtbaarheid + Visibility + Zichtbaarheid - &View - &Aanzicht + &View + &Aanzicht - &Tools - &Gereedschap + &Tools + &Gereedschap - &Macro - &Macro + &Macro + &Macro - &Windows - &Vensters + &Windows + &Vensters - &On-line help - &Online-help + &On-line help + &Online-help - &Help - &Help + &Help + &Help - File - Bestand + File + Bestand - Macro - Macro + Macro + Macro - View - Aanzicht + View + Aanzicht - Special Ops - Speciale functies + Special Ops + Speciale functies - - + + testClass - test - Test + test + Test - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"> <span style=" font-size:12pt;">Gemaakt voor Qt 4.3.x</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"> www.ii-system.com </p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"> <span style=" font-size:12pt;">Gemaakt voor Qt 4.3.x</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"> www.ii-system.com </p></body></html> - Choose the style of the Task Panel - Kies de stijl van het taken-panel + Choose the style of the Task Panel + Kies de stijl van het taken-panel - Default - Standaard + Default + Standaard - Windows XP - Windows XP + Windows XP + Windows XP - + diff --git a/src/Gui/Language/FreeCAD_no.qm b/src/Gui/Language/FreeCAD_no.qm index 9b937aa23..2020edf7a 100644 Binary files a/src/Gui/Language/FreeCAD_no.qm and b/src/Gui/Language/FreeCAD_no.qm differ diff --git a/src/Gui/Language/FreeCAD_no.ts b/src/Gui/Language/FreeCAD_no.ts index 9d42c2a4e..8e04611fb 100644 --- a/src/Gui/Language/FreeCAD_no.ts +++ b/src/Gui/Language/FreeCAD_no.ts @@ -1,5904 +1,5835 @@ - - + + Angle - Form - Skjema + Form + Skjema - A: - A: + A: + A: - B: - B: + B: + B: - C: - B: + C: + B: - Angle Snap - Vinkelmagnet + Angle Snap + Vinkelmagnet - - 1 ° - 1 ° + + 1 ° + 1 ° - - 2 ° - 2 ° + + 2 ° + 2 ° - - 5 ° - 5 ° + + 5 ° + 5 ° - - 10 ° - 10 ° + + 10 ° + 10 ° - - 20 ° - 20 ° + + 20 ° + 20 ° - - 45 ° - 45 ° + + 45 ° + 45 ° - - 90 ° - 90 ° + + 90 ° + 90 ° - - 180 ° - 180 ° + + 180 ° + 180 ° - - + + Gui::AccelLineEdit - none - ingen + none + ingen - - + + Gui::ActionSelector - Available: - + Available: + Available: - Selected: - + Selected: + Selected: - Add - Legg til + Add + Legg til - Remove - Fjern + Remove + Fjern - Move up - Flytt opp + Move up + Flytt opp - Move down - Flytt ned + Move down + Flytt ned - - + + Gui::AlignmentView - Movable object - + Movable object + Movable object - Fixed object - + Fixed object + Fixed object - - + + Gui::BlenderNavigationStyle - Press left mouse button - Trykk venstre museknapp + Press left mouse button + Trykk venstre museknapp - Press SHIFT and middle mouse button - Press SHIFT and middle mouse button + Press SHIFT and middle mouse button + Press SHIFT and middle mouse button - Press middle mouse button - Trykk på midtre museknapp + Press middle mouse button + Trykk på midtre museknapp - Scroll middle mouse button - Rull musehjul + Scroll middle mouse button + Rull musehjul - - + + Gui::CADNavigationStyle - Press left mouse button - Trykk venstre museknapp + Press left mouse button + Trykk venstre museknapp - Press middle mouse button - Trykk på midtre museknapp + Press middle mouse button + Trykk på midtre museknapp - Press left and middle mouse button - Trykk på venstre og midtre museknapp + Press left and middle mouse button + Trykk på venstre og midtre museknapp - Scroll middle mouse button - Rull musehjul + Scroll middle mouse button + Rull musehjul - - + + Gui::Command - Standard - Standard + Standard + Standard - - + + Gui::ContainerDialog - &OK - &OK + &OK + &OK - &Cancel - &Avbryt + &Cancel + &Avbryt - - + + Gui::ControlSingleton - Task panel - Oppgavepanel + Task panel + Oppgavepanel - - + + Gui::Dialog::AboutApplication - About - Om + About + Om - Revision number - Revisjonsnummer + Revision number + Revisjonsnummer - Version - Versjon + Version + Versjon - OK - OK + OK + OK - - + + - Release date - Utgivelsesdato + Release date + Utgivelsesdato - Platform - Platform + Platform + Platform - License... - License... + License... + License... - Copy to clipboard - + Copy to clipboard + Copy to clipboard - - + + Gui::Dialog::ButtonModel - Button %1 - Button %1 + Button %1 + Button %1 - Out Of Range - Out Of Range + Out Of Range + Out Of Range - - + + Gui::Dialog::CommandModel - Commands - Kommandoer + Commands + Kommandoer - - + + Gui::Dialog::DemoMode - View Turntable - Vis dreieskive + View Turntable + Vis dreieskive - Speed - Hastighet + Speed + Hastighet - Maximum - Maksimum + Maximum + Maksimum - Minimum - Minimum + Minimum + Minimum - Fullscreen - Fullskjerm + Fullscreen + Fullskjerm - Enable timer - Aktiver tidtaker + Enable timer + Aktiver tidtaker - s - s + s + s - Angle - Vinkel - - - 90° - 90° - - - -90° - -90° + Angle + Vinkel - Play - Spill av + 90° + 90° - Stop - Stopp + -90° + -90° - Close - Lukk + Play + Spill av - - + + Stop + Stopp + + + Close + Lukk + + + Gui::Dialog::DlgActivateWindow - Choose Window - Velg vindu + Choose Window + Velg vindu - &Activate - &Aktiver + &Activate + &Aktiver - Alt+A - Alt+A + Alt+A + Alt+A - &Cancel - &Avbryt + &Cancel + &Avbryt - - + + - - + + Gui::Dialog::DlgActivateWindowImp - Windows - Vinduer + Windows + Vinduer - - + + Gui::Dialog::DlgAuthorization - Authorization - Autorisasjon + Authorization + Autorisasjon - &OK - &OK + &OK + &OK - &Cancel - &Avbryt + &Cancel + &Avbryt - Password: - Passord: + Password: + Passord: - User name: - Brukernavn: + User name: + Brukernavn: - - + + - - + + Gui::Dialog::DlgChooseIcon - Choose Icon - Velg ikon + Choose Icon + Velg ikon - OK - OK + OK + OK - Cancel - Avbryt + Cancel + Avbryt - Add icons... - Add icons... + Add icons... + Add icons... - - + + Gui::Dialog::DlgCustomActions - Macros - Makroer + Macros + Makroer - Setup Custom Macros - Sett opp egendefinerte makroer + Setup Custom Macros + Sett opp egendefinerte makroer - Macro: - Makro: + Macro: + Makro: - ... - ... + ... + ... - Pixmap - Pikseltilordning + Pixmap + Pikseltilordning - Accelerator: - Akselerator: + Accelerator: + Akselerator: - What's this: - Hva er dette: + What's this: + Hva er dette: - Status text: - Statustekst: + Status text: + Statustekst: - Tool tip: - Verktøytips: + Tool tip: + Verktøytips: - Menu text: - Menytekst: + Menu text: + Menytekst: - Add - Legg til + Add + Legg til - Remove - Fjern + Remove + Fjern - Replace - Erstatt + Replace + Erstatt - - + + Gui::Dialog::DlgCustomActionsImp - Icons - Ikoner + Icons + Ikoner - Macros - Makroer + Macros + Makroer - No macro - Ingen makro + No macro + Ingen makro - No macros found. - Ingen makroer funnet. + No macros found. + Ingen makroer funnet. - Macro not found - Makro ikke funnet + Macro not found + Makro ikke funnet - Sorry, couldn't find macro file '%1'. - Beklager, kunne ikke finne makrofil '%1'. + Sorry, couldn't find macro file '%1'. + Beklager, kunne ikke finne makrofil '%1'. - Empty macro - Tom makro + Empty macro + Tom makro - Please specify the macro first. - Spesifiser makro først. + Please specify the macro first. + Spesifiser makro først. - Empty text - Tom tekst + Empty text + Tom tekst - Please specify the menu text first. - Vennligst oppgi menytekst først. + Please specify the menu text first. + Vennligst oppgi menytekst først. - No item selected - Ingen element er valgt + No item selected + Ingen element er valgt - Please select a macro item first. - Vennligst velg et makroelement først. + Please select a macro item first. + Vennligst velg et makroelement først. - - + + Gui::Dialog::DlgCustomCommands - Commands - Kommandoer + Commands + Kommandoer - - + + - - + + Gui::Dialog::DlgCustomCommandsImp - Category - Kategori + Category + Kategori - Icon - Ikon + Icon + Ikon - Command - Kommando + Command + Kommando - - + + Gui::Dialog::DlgCustomKeyboard - Keyboard - Tastatur + Keyboard + Tastatur - Description: - Beskrivelse: + Description: + Beskrivelse: - &Category: - &Kategori: + &Category: + &Kategori: - C&ommands: - K&ommandoer: + C&ommands: + K&ommandoer: - Current shortcut: - Gjeldende snarvei: + Current shortcut: + Gjeldende snarvei: - Press &new shortcut: - Trykk &ny snarvei: + Press &new shortcut: + Trykk &ny snarvei: - Currently assigned to: - For øyeblikket tilordnet: + Currently assigned to: + For øyeblikket tilordnet: - &Assign - &Tilordne + &Assign + &Tilordne - Alt+A - Alt+A + Alt+A + Alt+A - &Reset - &Tilbakestille + &Reset + &Tilbakestille - Alt+R - Alt+R + Alt+R + Alt+R - Re&set All - Tilbake&still alle + Re&set All + Tilbake&still alle - Alt+S - Alt+S + Alt+S + Alt+S - - + + - - + + Gui::Dialog::DlgCustomKeyboardImp - Icon - Ikon + Icon + Ikon - Command - Kommando + Command + Kommando - none - ingen + none + ingen - Multiple defined shortcut - Flerdefinert snarvei + Multiple defined shortcut + Flerdefinert snarvei - The shortcut '%1' is defined more than once. This could result into unexpected behaviour. - Snarvei '%1' er definert mer enn én gang. Dette kan føre til uventet oppførsel. + The shortcut '%1' is defined more than once. This could result into unexpected behaviour. + Snarvei '%1' er definert mer enn én gang. Dette kan føre til uventet oppførsel. - Already defined shortcut - Allerede definert snarvei + Already defined shortcut + Allerede definert snarvei - The shortcut '%1' is already assigned to '%2'. + The shortcut '%1' is already assigned to '%2'. Please define another shortcut. - Snarveien '%1' er allerede tilordnet '%2'. Definer en annen snarvei. + Snarveien '%1' er allerede tilordnet '%2'. Definer en annen snarvei. - - + + Gui::Dialog::DlgCustomToolBoxbarsImp - Toolbox bars - Verktøykasselinjer + Toolbox bars + Verktøykasselinjer - - + + Gui::Dialog::DlgCustomToolbars - Toolbars - Verktøylinjer + Toolbars + Verktøylinjer - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Merk:</span> Forandringene blir aktive neste gang du laster riktig arbeidsbenk</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Merk:</span> Forandringene blir aktive neste gang du laster riktig arbeidsbenk</p></body></html> - Move right - Flytt til høyre + Move right + Flytt til høyre - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Flytt det valgte elementet ett nivå ned.</b> <p> Dette vil også endre nivået på overordnet element. </p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Flytt det valgte elementet ett nivå ned.</b> <p> Dette vil også endre nivået på overordnet element. </p> - Move left - Flytt til venstre + Move left + Flytt til venstre - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Flytt det valgte elementet ett nivå opp.</b> <p> Dette vil også endre nivået på overordnet element. </p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Flytt det valgte elementet ett nivå opp.</b> <p> Dette vil også endre nivået på overordnet element. </p> - Move down - Flytt ned + Move down + Flytt ned - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Flytt det valgte elementet ned.</b> <p> Elementet vil bli flyttet innenfor hierarkinivået. </p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Flytt det valgte elementet ned.</b> <p> Elementet vil bli flyttet innenfor hierarkinivået. </p> - Move up - Flytt opp + Move up + Flytt opp - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Flytt det valgte elementet opp.</b> <p> Elementet vil bli flyttet innenfor hierarkinivået. </p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Flytt det valgte elementet opp.</b> <p> Elementet vil bli flyttet innenfor hierarkinivået. </p> - New... - Ny... + New... + Ny... - Rename... - Omdøp... + Rename... + Omdøp... - Delete - Slett + Delete + Slett - Icon - Ikon + Icon + Ikon - Command - Kommando + Command + Kommando - <Separator> - <Separator> + <Separator> + <Separator> - New toolbar - Ny verktøylinje + New toolbar + Ny verktøylinje - Toolbar name: - Verktøylinjenavn: + Toolbar name: + Verktøylinjenavn: - Duplicated name - Duplisert navn + Duplicated name + Duplisert navn - The toolbar name '%1' is already used - Verktøylinjenavn '%1' er allerede i bruk + The toolbar name '%1' is already used + Verktøylinjenavn '%1' er allerede i bruk - Rename toolbar - Omdøp verktøylinje + Rename toolbar + Omdøp verktøylinje - - + + - - + + Gui::Dialog::DlgCustomizeImp - Customize - Tilpass + Customize + Tilpass - &Help - &Hjelp + &Help + &Hjelp - &Close - &Lukk + &Close + &Lukk - - + + Gui::Dialog::DlgCustomizeSpaceball - Spaceball - Spaceball + Spaceball + Spaceball - No Spaceball Present - No Spaceball Present + No Spaceball Present + No Spaceball Present - Buttons - Buttons + Buttons + Buttons - Clear - Tøm + Clear + Tøm - Print Reference - Print Reference + Print Reference + Print Reference - - + + Gui::Dialog::DlgDisplayProperties - Display properties - Skjermegenskaper + Display properties + Skjermegenskaper - Display - Skjerm + Display + Skjerm - Transparency: - Gjennomsiktighet: + Transparency: + Gjennomsiktighet: - Line width: - Linjebredde: + Line width: + Linjebredde: - Point size: - Punktstørrelse: + Point size: + Punktstørrelse: - Material - Materiale + Material + Materiale - ... - ... + ... + ... - Close - Lukk + Close + Lukk - Viewing mode - Visningsmodus + Viewing mode + Visningsmodus - Display mode: - Visningsmodus: + Plot mode: + Plottmodus: - Plot mode: - Plottmodus: + + - - + Line transparency: + Gjennomsiktighet for linje: - Line transparency: - Gjennomsiktighet for linje: + Line color: + Linjefarge: - Line color: - Linjefarge: + Shape color: + Figurfarge: - Shape color: - Figurfarge: + Color plot: + Color plot: - Color plot: - Color plot: + Document window: + Document window: - - Document window: - - - - + + Gui::Dialog::DlgEditorSettings - Editor - Redigeringsprogram + Editor + Redigeringsprogram - Options - Alternativer + Options + Alternativer - Enable line numbers - Aktiver linjenumre + Enable line numbers + Aktiver linjenumre - Enable folding - Aktiver folding + Enable folding + Aktiver folding - Indentation - Innrykk + Indentation + Innrykk - Insert spaces - Sett inn mellomrom + Insert spaces + Sett inn mellomrom - Tab size: - Tabulatorstørrelse: + Tab size: + Tabulatorstørrelse: - Indent size: - Innrykkstørrelse: + Indent size: + Innrykkstørrelse: - Keep tabs - Behold tabulatorer + Keep tabs + Behold tabulatorer - Display Items - Vis elementer + Display Items + Vis elementer - Family: - Familie: + Family: + Familie: - Size: - Størrelse: + Size: + Størrelse: - Preview: - Forhåndsvisning: + Preview: + Forhåndsvisning: - - + + - - + + Gui::Dialog::DlgGeneral - General - Generelle + General + Generelle - Start up - Oppstart + Start up + Oppstart - Enable splash screen at start up - Aktiver velkomstbilde ved oppstart + Enable splash screen at start up + Aktiver velkomstbilde ved oppstart - Switch to tab of report window: - Bytt til fane for rapportvindu: + Switch to tab of report window: + Bytt til fane for rapportvindu: - Auto load module after start up: - Autostart modul etter oppstart: + Auto load module after start up: + Autostart modul etter oppstart: - Language - Språk + Language + Språk - Change language: - Endre språk: + Change language: + Endre språk: - Main window - Hovedvindu + Main window + Hovedvindu - Size of recent file list - Størrelse på liste for nylig brukte filer + Size of recent file list + Størrelse på liste for nylig brukte filer - Window style: - Vindustil: + Window style: + Vindustil: - Size of toolbar icons: - Size of toolbar icons: + Size of toolbar icons: + Size of toolbar icons: - - + + Gui::Dialog::DlgGeneralImp - Default (%1 x %1) - Default (%1 x %1) + Default (%1 x %1) + Default (%1 x %1) - Small (%1 x %1) - Small (%1 x %1) + Small (%1 x %1) + Small (%1 x %1) - Large (%1 x %1) - Large (%1 x %1) + Large (%1 x %1) + Large (%1 x %1) - Extra large (%1 x %1) - Extra large (%1 x %1) + Extra large (%1 x %1) + Extra large (%1 x %1) - - + + Gui::Dialog::DlgInputDialog - Input - Inndata + Input + Inndata - OK - OK + OK + OK - Cancel - Avbryt + Cancel + Avbryt - - + + - - + + Gui::Dialog::DlgInspector - Scene Inspector - Sceneinspektør + Scene Inspector + Sceneinspektør - - + + Gui::Dialog::DlgMacroExecute - Execute macro - Kjør makro + Execute macro + Kjør makro - Macro name: - Makronavn: + Macro name: + Makronavn: - Macro destination: - Makrodestinasjon: + Macro destination: + Makrodestinasjon: - Execute - Kjør + Execute + Kjør - Close - Lukk + Close + Lukk - Create - Lag + Create + Lag - Delete - Slett + Delete + Slett - Edit - Rediger + Edit + Rediger - - + + Gui::Dialog::DlgMacroExecuteImp - Macros - Makroer + Macros + Makroer - Macro file - Makrofil + Macro file + Makrofil - Enter a file name, please: - Vennligst skriv inn et filnavn: + Enter a file name, please: + Vennligst skriv inn et filnavn: - Existing file - Eksisterende fil + Existing file + Eksisterende fil - '%1'. + '%1'. This file already exists. - '%1'. + '%1'. Denne filen finnes allerede. - Delete macro - Slett makro + Delete macro + Slett makro - Do you really want to delete the macro '%1'? - Ønsker du virkelig å slette makroen '%1'? + Do you really want to delete the macro '%1'? + Ønsker du virkelig å slette makroen '%1'? - Cannot create file - Kan ikke lage fil + Cannot create file + Kan ikke lage fil - Creation of file '%1' failed. - Oppretting av filen '%1' mislyktes. + Creation of file '%1' failed. + Oppretting av filen '%1' mislyktes. - - + + Gui::Dialog::DlgMacroRecord - Macro recording - Macroopptak + Macro recording + Macroopptak - Macro name: - Makronavn: + Macro name: + Makronavn: - Stop - Stopp + Stop + Stopp - Cancel - Avbryt + Cancel + Avbryt - Macro path: - Makrobane: + Macro path: + Makrobane: - ... - ... + ... + ... - Record - Spill inn + Record + Spill inn - - + + Gui::Dialog::DlgMacroRecordImp - Macro recorder - Makroopptaker + Macro recorder + Makroopptaker - Specify first a place to save. - Angi først et sted å lagre. + Specify first a place to save. + Angi først et sted å lagre. - Existing macro - Eksisterende makro + Existing macro + Eksisterende makro - The macro '%1' already exists. Do you want to overwrite? - Makroen '%1' finnes allerede. Vil du overskrive? + The macro '%1' already exists. Do you want to overwrite? + Makroen '%1' finnes allerede. Vil du overskrive? - The macro directory doesn't exist. Please, choose another one. - Makromappen finnes ikke. Vennligst, velg en annen. + The macro directory doesn't exist. Please, choose another one. + Makromappen finnes ikke. Vennligst, velg en annen. - Choose macro directory - Velg makromappe + Choose macro directory + Velg makromappe - - + + Gui::Dialog::DlgMaterialProperties - Material properties - Materialegenskaper + Material properties + Materialegenskaper - &Close - &Lukk + &Close + &Lukk - Alt+C - Alt+C + Alt+C + Alt+C - Material - Materiale + Material + Materiale - Diffuse color: - Diffusér fargen: + Diffuse color: + Diffusér fargen: - Specular color: - Gjenskinnfarge: + Specular color: + Gjenskinnfarge: - Shininess: - Blankhet: + Shininess: + Blankhet: - % - % + % + % - Ambient color: - Omgivelsesfarge: + Ambient color: + Omgivelsesfarge: - - + + - Emissive color: - Emissiv farge: + Emissive color: + Emissiv farge: - - + + Gui::Dialog::DlgOnlineHelp - On-line help - Internetthjelp + On-line help + Internetthjelp - Help viewer - Hjelp visning + Help viewer + Hjelp visning - Location of start page - Plassering av startsiden + Location of start page + Plassering av startsiden - - + + Gui::Dialog::DlgOnlineHelpImp - HTML files (*.html *.htm) - HTML filer (*.html *.htm) + HTML files (*.html *.htm) + HTML filer (*.html *.htm) - Access denied - Ingen tilgang + Access denied + Ingen tilgang - Access denied to '%1' + Access denied to '%1' Specify another directory, please. - Ingen tilgang til '%1' + Ingen tilgang til '%1' Vennligst angi en annen mappe. - - + + Gui::Dialog::DlgParameter - Parameter Editor - Parameterredigering + Parameter Editor + Parameterredigering - Save to disk - Lagre til disk + Save to disk + Lagre til disk - Alt+C - Alt+C + Alt+C + Alt+C - &Close - &Lukk + &Close + &Lukk - - + + Gui::Dialog::DlgParameterImp - Group - Gruppe + Group + Gruppe - Name - Navn + Name + Navn - Type - Type + Type + Type - Value - Verdi + Value + Verdi - User parameter - Brukerparameter + User parameter + Brukerparameter - Invalid input - Ugyldig inndata + Invalid input + Ugyldig inndata - Invalid key name '%1' - Ugyldig nøkkelnavn '%1' + Invalid key name '%1' + Ugyldig nøkkelnavn '%1' - System parameter - Systemparameter + System parameter + Systemparameter - - + + Gui::Dialog::DlgPreferences - Preferences - Preferanser + Preferences + Preferanser - &Help - &Hjelp + &Help + &Hjelp - Alt+H - Alt+H + Alt+H + Alt+H - &OK - &OK + &OK + &OK - &Apply - &Bruk + &Apply + &Bruk - Alt+A - Alt+A + Alt+A + Alt+A - &Cancel - &Avbryt + &Cancel + &Avbryt - - + + - - + + Gui::Dialog::DlgPreferencesImp - Wrong parameter - Feil parameter + Wrong parameter + Feil parameter - - + + Gui::Dialog::DlgProjectInformation - Project information - Prosjektinformasjon + Project information + Prosjektinformasjon - Information - Informasjon + Information + Informasjon - &Name: - &Navn: + &Name: + &Navn: - Commen&t: - Kommen&tar: + Commen&t: + Kommen&tar: - Path: - Bane: + Path: + Bane: - &Last modified by: - &Sist endret av: + &Last modified by: + &Sist endret av: - Created &by: - Laget &av: + Created &by: + Laget &av: - Com&pany: - Fir&ma: + Com&pany: + Fir&ma: - Last &modification date: - Siste &modifikasjonsdato: + Last &modification date: + Siste &modifikasjonsdato: - Creation &date: - Opprettelse&sdato: + Creation &date: + Opprettelse&sdato: - &OK - &OK + &OK + &OK - &Cancel - &Avbryt + &Cancel + &Avbryt - - + + - - + + Gui::Dialog::DlgProjectUtility - Project utility - Project utility + Project utility + Project utility - Extract project - Extract project + Extract project + Extract project - Source - Source + Source + Source - Project file (*.fcstd) - Project file (*.fcstd) + Project file (*.fcstd) + Project file (*.fcstd) - Destination - Destination + Destination + Destination - Extract - Extract + Extract + Extract - Create project - Create project + Create project + Create project - Document.xml - Document.xml + Document.xml + Document.xml - Create - Lag + Create + Lag - Load project file after creation - Load project file after creation + Load project file after creation + Load project file after creation - Empty source - Empty source + Empty source + Empty source - No source is defined. - No source is defined. + No source is defined. + No source is defined. - Empty destination - Empty destination + Empty destination + Empty destination - No destination is defined. - No destination is defined. + No destination is defined. + No destination is defined. - - + + Gui::Dialog::DlgReportView - Output window - Utdatavindu + Output window + Utdatavindu - Output - Utdata + Output + Utdata - Record log messages - Registrer loggmeldinger + Record log messages + Registrer loggmeldinger - Record warnings - Registrer advarsler + Record warnings + Registrer advarsler - Record error messages - Registrer feilmeldinger + Record error messages + Registrer feilmeldinger - Colors - Farger + Colors + Farger - Normal messages: - Vanlige meldinger: + Normal messages: + Vanlige meldinger: - Log messages: - Loggmeldinger: + Log messages: + Loggmeldinger: - Warnings: - Advarsler: + Warnings: + Advarsler: - Errors: - Feil: + Errors: + Feil: - - + + - Redirect internal Python errors to report view - Omadressere interne Python-feil til rapportvisning + Redirect internal Python errors to report view + Omadressere interne Python-feil til rapportvisning - Redirect internal Python output to report view - Redirect internal Python output to report view + Redirect internal Python output to report view + Redirect internal Python output to report view - - + + Gui::Dialog::DlgRunExternal - Running external program - Kjører eksternt program + Running external program + Kjører eksternt program - TextLabel - Merkelapp + TextLabel + Merkelapp - Advanced >> - Avansert >> + Advanced >> + Avansert >> - ... - ... + ... + ... - Accept changes - Godta endringer + Accept changes + Godta endringer - Discard changes - Forkast endringer + Discard changes + Forkast endringer - Abort program - Avbryt program + Abort program + Avbryt program - Help - Hjelp + Help + Hjelp - Select a file - Velg en fil + Select a file + Velg en fil - - + + Gui::Dialog::DlgSettings3DView - 3D View - 3D-visning + 3D View + 3D-visning - 3D View settings - Innstillinger for 3D-visning + 3D View settings + Innstillinger for 3D-visning - Show coordinate system in the corner - Vis koordinatsystem i hjørnet + Show coordinate system in the corner + Vis koordinatsystem i hjørnet - Show counter of frames per second - Vis teller for bilder per sekund + Show counter of frames per second + Vis teller for bilder per sekund - Enable animation - Aktiver animasjon + Enable animation + Aktiver animasjon - Enable anti-aliasing (slower) - Aktiver kantutjevning (tregere) + Enable anti-aliasing (slower) + Aktiver kantutjevning (tregere) - Eye to eye distance for stereo modes: - Øyeavstand for stereomoduser: + Eye to eye distance for stereo modes: + Øyeavstand for stereomoduser: - Camera type - Kameratype + Camera type + Kameratype - Orthographic rendering - Ortografisk presentasjonsgjengivelse + Orthographic rendering + Ortografisk presentasjonsgjengivelse - Perspective rendering - Perspektiv presentasjonsgjengivelse + Perspective rendering + Perspektiv presentasjonsgjengivelse - - + + - 3D Navigation - 3D-navigasjon + 3D Navigation + 3D-navigasjon - Mouse... - Mus... + Mouse... + Mus... - Intensity of backlight - Intensitet på bakgrunnsbelysning + Intensity of backlight + Intensitet på bakgrunnsbelysning - Enable backlight color - Aktiver bakgrunnsbelysningsfarge + Enable backlight color + Aktiver bakgrunnsbelysningsfarge - Orbit style - Orbit style + Orbit style + Orbit style - Turntable - Turntable + Turntable + Turntable - Trackball - Trackball + Trackball + Trackball - Invert zoom - Invert zoom + Invert zoom + Invert zoom - Zoom at cursor - + Zoom at cursor + Zoom at cursor - Zoom step - + Zoom step + Zoom step - - + + Gui::Dialog::DlgSettings3DViewImp - %1 navigation - %1navigasjon + %1 navigation + %1navigasjon - - + + Gui::Dialog::DlgSettingsColorGradient - Color model - Fargemodell + Color model + Fargemodell - &Gradient: - &Overgang: + &Gradient: + &Overgang: - red-yellow-green-cyan-blue - rød-gul-grønn-cyan-blå + red-yellow-green-cyan-blue + rød-gul-grønn-cyan-blå - blue-cyan-green-yellow-red - blå-cyan-grønn-gul-rød + blue-cyan-green-yellow-red + blå-cyan-grønn-gul-rød - white-black - hvit-svart + white-black + hvit-svart - black-white - svart-hvit + black-white + svart-hvit - Visibility - Synlighet + Visibility + Synlighet - Out g&rayed - Ut g&rånet + Out g&rayed + Ut g&rånet - Alt+R - Alt+R + Alt+R + Alt+R - Out &invisible - Ut &usynlig + Out &invisible + Ut &usynlig - Alt+I - Alt+I + Alt+I + Alt+I - Style - Stil + Style + Stil - &Zero - &Null + &Zero + &Null - Alt+Z - Alt+Z + Alt+Z + Alt+Z - &Flow - &Flyt + &Flow + &Flyt - Alt+F - Alt+F + Alt+F + Alt+F - &OK - &OK + &OK + &OK - &Cancel - &Avbryt + &Cancel + &Avbryt - Parameter range - Parameterrekkevidde + Parameter range + Parameterrekkevidde - Mi&nimum: - Mi&nimum: + Mi&nimum: + Mi&nimum: - Ma&ximum: - Ma&ksimum: + Ma&ximum: + Ma&ksimum: - &Labels: - &Etiketter: + &Labels: + &Etiketter: - &Decimals: - &Desimaler: + &Decimals: + &Desimaler: - - + + - Color-gradient settings - Fargeovergangsinnstillinger + Color-gradient settings + Fargeovergangsinnstillinger - - + + Gui::Dialog::DlgSettingsColorGradientImp - Wrong parameter - Feil parameter + Wrong parameter + Feil parameter - The maximum value must be higher than the minimum value. - Maksimumsverdien må være høyere enn minimumsverdien. + The maximum value must be higher than the minimum value. + Maksimumsverdien må være høyere enn minimumsverdien. - - + + Gui::Dialog::DlgSettingsDocument - Document - Dokument + Document + Dokument - General - Generelle + General + Generelle - Document save compression level + Document save compression level (0 = none, 9 = highest, 3 = default) - Dokumentetlagring komprimeringsnivå + Dokumentetlagring komprimeringsnivå (0=ingen, 9=høyest, 3=standard) - Create new document at start up - Lag nytt dokument ved oppstart + Create new document at start up + Lag nytt dokument ved oppstart - Storage - Lagring + Storage + Lagring - Saving transactions (Auto-save) - Autolagrer forandringer underveis + Saving transactions (Auto-save) + Autolagrer forandringer underveis - Discard saved transaction after saving document - Forkast lagrede forandringer etter du har lagret dokumentet manuelt + Discard saved transaction after saving document + Forkast lagrede forandringer etter du har lagret dokumentet manuelt - Save thumbnail into project file when saving document - Lagre miniatyrbilde til prosjektfil når du lagrer dokument + Save thumbnail into project file when saving document + Lagre miniatyrbilde til prosjektfil når du lagrer dokument - Create up to backup files when resaving document - Lag opp til sikkerhetskopifiler når dokumentet lagres på nytt + Create up to backup files when resaving document + Lag opp til sikkerhetskopifiler når dokumentet lagres på nytt - Document objects - Dokumentobjekter + Document objects + Dokumentobjekter - Allow duplicate object labels in one document - Tillat dupliserte objektetiketter i ett dokument + Allow duplicate object labels in one document + Tillat dupliserte objektetiketter i ett dokument - Maximum Undo/Redo steps - Maximum Undo/Redo steps + Maximum Undo/Redo steps + Maximum Undo/Redo steps - Using Undo/Redo on documents - Using Undo/Redo on documents + Using Undo/Redo on documents + Using Undo/Redo on documents - - + + Gui::Dialog::DlgSettingsEditorImp - Text - Tekst + Text + Tekst - Bookmark - Bokmerke + Bookmark + Bokmerke - Breakpoint - Brytingspunkt + Breakpoint + Brytingspunkt - Keyword - Nøkkelord + Keyword + Nøkkelord - Comment - Kommentar + Comment + Kommentar - Block comment - Blokkkommentar + Block comment + Blokkkommentar - Number - Nummer + Number + Nummer - String - Streng + String + Streng - Character - Tegn + Character + Tegn - Class name - Klassenavn + Class name + Klassenavn - Define name - Definer navn + Define name + Definer navn - Operator - Operatør + Operator + Operatør - Python output - Python-utdata + Python output + Python-utdata - Python error - Python-feil + Python error + Python-feil - Items - Elementer + Items + Elementer - Current line highlight - + Current line highlight + Current line highlight - - + + Gui::Dialog::DlgSettingsImage - Image settings - Bildeinnstillinger + Image settings + Bildeinnstillinger - Image properties - Bildeegenskaper + Image properties + Bildeegenskaper - Back&ground: - Bak&grunn: + Back&ground: + Bak&grunn: - Current - Gjeldende + Current + Gjeldende - White - Hvit + White + Hvit - Black - Svart + Black + Svart - Transparent - Gjennomsiktig + Transparent + Gjennomsiktig - Image dimensions - Bildedimensjoner + Image dimensions + Bildedimensjoner - Pixel - Piksel + Pixel + Piksel - &Width: - &Bredde: + &Width: + &Bredde: - Current screen - Gjeldende skjermbilde + Current screen + Gjeldende skjermbilde - Icon 32 x 32 - Ikon 32 x 32 + Icon 32 x 32 + Ikon 32 x 32 - Icon 64 x 64 - Ikon 64 x 64 + Icon 64 x 64 + Ikon 64 x 64 - Icon 128 x 128 - Ikon 128 x 128 + Icon 128 x 128 + Ikon 128 x 128 - CGA 320 x 200 - CGA 320 x 200 + CGA 320 x 200 + CGA 320 x 200 - QVGA 320 x 240 - QVGA 320 x 240 + QVGA 320 x 240 + QVGA 320 x 240 - VGA 640 x 480 - VGA 640 x 480 + VGA 640 x 480 + VGA 640 x 480 - NTSC 720 x 480 - NTSC 720 x 480 + NTSC 720 x 480 + NTSC 720 x 480 - PAL 768 x 578 - PAL 768 x 578 + PAL 768 x 578 + PAL 768 x 578 - SVGA 800 x 600 - SVGA 800 x 600 + SVGA 800 x 600 + SVGA 800 x 600 - XGA 1024 x 768 - XGA 1024 x 768 + XGA 1024 x 768 + XGA 1024 x 768 - HD720 1280 x 720 - HD720 1280 x 720 + HD720 1280 x 720 + HD720 1280 x 720 - SXGA 1280 x 1024 - SXGA 1280 x 1024 + SXGA 1280 x 1024 + SXGA 1280 x 1024 - SXGA+ 1400 x 1050 - SXGA+ 1400 x 1050 + SXGA+ 1400 x 1050 + SXGA+ 1400 x 1050 - UXGA 1600 x 1200 - UXGA 1600 x 1200 + UXGA 1600 x 1200 + UXGA 1600 x 1200 - HD1080 1920 x 1080 - HD1080 1920 x 1080 + HD1080 1920 x 1080 + HD1080 1920 x 1080 - WUXGA 1920 x 1200 - WUXGA 1920 x 1200 + WUXGA 1920 x 1200 + WUXGA 1920 x 1200 - QXGA 2048 x 1538 - QXGA 2048 x 1538 + QXGA 2048 x 1538 + QXGA 2048 x 1538 - WQXGA 2560 x 1600 - WQXGA 2560 x 1600 + WQXGA 2560 x 1600 + WQXGA 2560 x 1600 - QSXGA 2560 x 2048 - QSXGA 2560 x 2048 - - - QUXGA 3200 × 2400 - QUXGA 3200 × 2400 - - - HUXGA 6400 × 4800 - HUXGA 6400 × 4800 + QSXGA 2560 x 2048 + QSXGA 2560 x 2048 - !!! 10000 x 10000 - !!! 10000 x 10000 + QUXGA 3200 × 2400 + QUXGA 3200 × 2400 - Standard sizes: - Standard størrelser: + HUXGA 6400 × 4800 + HUXGA 6400 × 4800 - &Height: - &Høyde: + !!! 10000 x 10000 + !!! 10000 x 10000 - Aspect ratio: - Bildeformat: + Standard sizes: + Standard størrelser: - &Screen - &Skjermbilde + &Height: + &Høyde: - Alt+S - Alt+S + Aspect ratio: + Bildeformat: - &4:3 - &4:3 + &Screen + &Skjermbilde - Alt+4 - Alt+4 + Alt+S + Alt+S - 1&6:9 - 1&6:9 + &4:3 + &4:3 - Alt+6 - Alt+6 + Alt+4 + Alt+4 - &1:1 - &1:1 + 1&6:9 + 1&6:9 - Alt+1 - Alt+1 + Alt+6 + Alt+6 - Image comment - Bildekommentar + &1:1 + &1:1 - Insert MIBA - Sett inn MIBA + Alt+1 + Alt+1 - Insert comment - Sett inn kommentar + Image comment + Bildekommentar - - + + Insert MIBA + Sett inn MIBA + + + Insert comment + Sett inn kommentar + + + Gui::Dialog::DlgSettingsMacro - Macro - Makro + Macro + Makro - Macro recording settings - Innstillinger for makroopptak + Macro recording settings + Innstillinger for makroopptak - Logging Commands - Logging kommandoer + Logging Commands + Logging kommandoer - Show script commands in python console - Vis skriptkommandoer i python konsoll + Show script commands in python console + Vis skriptkommandoer i python konsoll - Log all commands issued by menus to file: - Logg alle kommandoer utstedt av menyer til fil: + Log all commands issued by menus to file: + Logg alle kommandoer utstedt av menyer til fil: - FullScript.FCScript - FullSkript.FCSkript + FullScript.FCScript + FullSkript.FCSkript - Gui commands - Guikommandoer + Gui commands + Guikommandoer - Recording GUI commands - Spiller inn GUI kommandoer + Recording GUI commands + Spiller inn GUI kommandoer - Record as comment - Spill inn som kommentar + Record as comment + Spill inn som kommentar - Macro path - Makrobane + Macro path + Makrobane - General macro settings - + General macro settings + General macro settings - Run macros in local environment - + Run macros in local environment + Run macros in local environment - - + + Gui::Dialog::DlgSettingsUnits - Units - Enheter + Units + Enheter - Units settings - Enhetsinnstillinger + Units settings + Enhetsinnstillinger - Standard (mm/kg/s/degree) - Standard (mm/kg/s/grad) + Standard (mm/kg/s/degree) + Standard (mm/kg/s/grad) - MKS (m/kg/s/degree) - MKS (m/kg/s/grad) + MKS (m/kg/s/degree) + MKS (m/kg/s/grad) - Magnitude - Magnitude + Magnitude + Magnitude - Unit - Enhet + Unit + Enhet - User system: - Brukersystem: + User system: + Brukersystem: - Imperial (in/lb) - Imperialt (in/lb) + Imperial (in/lb) + Imperialt (in/lb) - - + + Gui::Dialog::DlgSettingsViewColor - Colors - Farger + Colors + Farger - Selection - Utvalg + Selection + Utvalg - Enable selection highlighting - Aktiver utheving av valg + Enable selection highlighting + Aktiver utheving av valg - Enable preselection highlighting - Aktiver utheving av forvalg + Enable preselection highlighting + Aktiver utheving av forvalg - Background color - Bakgrunnsfarge + Background color + Bakgrunnsfarge - Middle color - Midtfarge + Middle color + Midtfarge - Color gradient - Fargeovergang + Color gradient + Fargeovergang - Simple color - Enkel farge + Simple color + Enkel farge - Default colors - Default colors + Default colors + Default colors - Edited edge color - Edited edge color + Edited edge color + Edited edge color - Edited vertex color - Edited vertex color + Edited vertex color + Edited vertex color - Construction geometry - Construction geometry + Construction geometry + Construction geometry - Fully constrained geometry - Fully constrained geometry + Fully constrained geometry + Fully constrained geometry - The color of construction geometry in editmode - The color of construction geometry in editmode + The color of vertices being edited + The color of vertices being edited - The color of fully constrained geometry in editmode - The color of fully constrained geometry in editmode + The color of edges being edited + The color of edges being edited - The color of vertices being edited - The color of vertices being edited + The color of construction geometry in edit mode + The color of construction geometry in edit mode - The color of edges being edited - The color of edges being edited + The color of fully constrained geometry in edit mode + The color of fully constrained geometry in edit mode - The color of construction geometry in edit mode - + Cursor text color + Cursor text color - The color of fully constrained geometry in edit mode - + Default shape color + Default shape color - Cursor text color - + The default color for new shapes + The default color for new shapes - Default shape color - + Default line width and color + Default line width and color - The default color for new shapes - + The default line color for new shapes + The default line color for new shapes - Default line width and color - + The default line thickness for new shapes + The default line thickness for new shapes - The default line color for new shapes - + px + px - - The default line thickness for new shapes - - - - px - - - - + + Gui::Dialog::DlgTipOfTheDay - Tip of the day - Dagens tips + Tip of the day + Dagens tips - <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> - <b><font face="Times New Roman"><font size="+3">Visste du at...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Visste du at...</font></font></b> - &Show tips at start up - &Vis tips ved oppstart + &Show tips at start up + &Vis tips ved oppstart - Alt+S - Alt+S + Alt+S + Alt+S - &Next Tip - &Neste tips + &Next Tip + &Neste tips - Alt+N - Alt+N + Alt+N + Alt+N - &Close - &Lukk + &Close + &Lukk - Alt+C - Alt+C + Alt+C + Alt+C - - + + - - + + Gui::Dialog::DlgTipOfTheDayImp - Download failed: %1 + Download failed: %1 - Nedlasting mislyktes: %1 + Nedlasting mislyktes: %1 - If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. - Hvis du ønsker å lære mer om FreeCAD må du gå til %1 eller bruk Hjelp i menyen. + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + Hvis du ønsker å lære mer om FreeCAD må du gå til %1 eller bruk Hjelp i menyen. - - + + Gui::Dialog::DockablePlacement - Placement - Plassering + Placement + Plassering - - + + Gui::Dialog::DownloadDialog - Canceled. - Canceled. + Download + Download - Download - + Cancel + Avbryt - Cancel - Avbryt + Close + Lukk - Close - Lukk + There already exists a file called %1 in the current directory. Overwrite? + There already exists a file called %1 in the current directory. Overwrite? - There already exists a file called %1 in the current directory. Overwrite? - + Unable to save the file %1: %2. + Unable to save the file %1: %2. - Unable to save the file %1: %2. - + Downloading %1. + Downloading %1. - Downloading %1. - + Download canceled. + Download canceled. - Download canceled. - + Download failed: %1. + Nedlasting mislyktes: %1. - Download failed: %1. - Nedlasting mislyktes: %1. + Downloaded %1 to current directory. + Downloaded %1 to current directory. - - Downloaded %1 to current directory. - - - - + + Gui::Dialog::IconDialog - Add icon - Add icon + Add icon + Add icon - - + + Gui::Dialog::InputVector - Input vector - Inndata vektor + Input vector + Inndata vektor - Vector - Vektor + Vector + Vektor - Z: - Z: + Z: + Z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - OK - OK + OK + OK - - + + Gui::Dialog::LicenseDialog - Copyright - + Copyright + Copyright - - + + Gui::Dialog::MouseButtons - Mouse buttons - Museknapper + Mouse buttons + Museknapper - Configuration - Konfigurasjon + Configuration + Konfigurasjon - Selection: - Utvalg: + Selection: + Utvalg: - Panning - Panorering + Panning + Panorering - Rotation: - Rotasjon: + Rotation: + Rotasjon: - Zooming: - Zoome: + Zooming: + Zoome: - - + + Gui::Dialog::ParameterGroup - Expand - Utvid + Expand + Utvid - Add sub-group - Legg til undergruppe + Add sub-group + Legg til undergruppe - Remove group - Fjern gruppe + Remove group + Fjern gruppe - Rename group - Omdøp gruppe + Rename group + Omdøp gruppe - Export parameter - Eksporter parameter + Export parameter + Eksporter parameter - Import parameter - Importer parameter + Import parameter + Importer parameter - Collapse - Skjul + Collapse + Skjul - Do really want to remove this parameter group? - Ønsker du virkelig å fjerne denne parametergruppen? + Do really want to remove this parameter group? + Ønsker du virkelig å fjerne denne parametergruppen? - Existing sub-group - Eksisterende undergruppe + Existing sub-group + Eksisterende undergruppe - The sub-group '%1' already exists. - Undergruppe '%1' finnes allerede. + The sub-group '%1' already exists. + Undergruppe '%1' finnes allerede. - Export parameter to file - Eksporter parameter til fil + Export parameter to file + Eksporter parameter til fil - XML (*.FCParam) - XML (*.FCParam) + XML (*.FCParam) + XML (*.FCParam) - Import parameter from file - Importer parameter fra fil + Import parameter from file + Importer parameter fra fil - Import Error - Importfeil + Import Error + Importfeil - Reading from '%1' failed. - Lesing fra '%1' mislyktes. + Reading from '%1' failed. + Lesing fra '%1' mislyktes. - - + + Gui::Dialog::ParameterValue - Change value - Endre verdi + Change value + Endre verdi - Remove key - Fjern nøkkelen + Remove key + Fjern nøkkelen - Rename key - Omdøp nøkkel + Rename key + Omdøp nøkkel - New - Ny + New + Ny - New string item - Nytt streng-element + New string item + Nytt streng-element - New float item - Nytt float-element + New float item + Nytt float-element - New integer item - Nytt heltall-element + New integer item + Nytt heltall-element - New unsigned item - Nytt usignert element + New unsigned item + Nytt usignert element - New Boolean item - Nytt boolsk element + New Boolean item + Nytt boolsk element - Existing item - Eksisterende element + Existing item + Eksisterende element - The item '%1' already exists. - Elementet '%1' finnes allerede. + The item '%1' already exists. + Elementet '%1' finnes allerede. - - + + Gui::Dialog::Placement - Placement - Plassering + Placement + Plassering - OK - OK + OK + OK - Translation: - Oversettelse: + Translation: + Oversettelse: - Z: - Z: + Z: + Z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - Rotation: - Rotasjon: + Rotation: + Rotasjon: - Angle: - Vinkel: + Angle: + Vinkel: - Axis: - Akse: + Axis: + Akse: - Center: - Senter: + Center: + Senter: - Pitch: - Tipp: + Pitch: + Tipp: - Roll: - Rull: + Roll: + Rull: - Yaw: - Snu: + Yaw: + Snu: - Rotation axis with angle - Rotation axis with angle + Rotation axis with angle + Rotation axis with angle - Euler angles - Euler vinkler + Euler angles + Euler vinkler - Apply placement changes immediately - Bruk plasseringsendringer umiddelbart + Apply placement changes immediately + Bruk plasseringsendringer umiddelbart - Apply incremental changes to object placement - Bruk trinnvise endringer på objektplassering + Apply incremental changes to object placement + Bruk trinnvise endringer på objektplassering - Apply - Bruk + Apply + Bruk - Reset - Tilbakestill + Reset + Tilbakestill - Close - Lukk + Close + Lukk - - + + Gui::Dialog::PrintModel - Button - Button + Button + Button - Command - Kommando + Command + Kommando - - + + Gui::Dialog::SceneInspector - Dialog - Dialog + Dialog + Dialog - Close - Lukk + Close + Lukk - Refresh - Oppdater + Refresh + Oppdater - - + + Gui::Dialog::SceneModel - Inventor Tree - Oppfinnertre + Inventor Tree + Oppfinnertre - Nodes - Noder + Nodes + Noder - - + + Gui::Dialog::TextureMapping - Texture - Tekstur + Texture + Tekstur - Texture mapping - Teksturtilordning + Texture mapping + Teksturtilordning - Global - Global + Global + Global - Environment - Miljø + Environment + Miljø - Image files (%1) - Bildefiler (%1) + Image files (%1) + Bildefiler (%1) - No image - Ingen bilder + No image + Ingen bilder - The specified file is not a valid image file. - Den angitte filen er ikke en gyldig bildefil. + The specified file is not a valid image file. + Den angitte filen er ikke en gyldig bildefil. - No 3d view - Ingen 3d-visning + No 3d view + Ingen 3d-visning - No active 3d view found. - Ingen aktiv 3d-visning funnet. + No active 3d view found. + Ingen aktiv 3d-visning funnet. - - + + Gui::Dialog::Transform - Cancel - Avbryt + Cancel + Avbryt - Transform - Transformer + Transform + Transformer - - + + Gui::DlgTreeWidget - Dialog - Dialog + Dialog + Dialog - Items - Elementer + Items + Elementer - OK - OK + OK + OK - Cancel - Avbryt + Cancel + Avbryt - - + + - - + + Gui::DockWnd::CombiView - CombiView - Kombivisning + CombiView + Kombivisning - Project - Prosjekt + Project + Prosjekt - Tasks - Oppgaver + Tasks + Oppgaver - - + + Gui::DockWnd::HelpView - Previous - Forrige + Previous + Forrige - Next - Neste + Next + Neste - Home - Hjem + Home + Hjem - Open - Åpne + Open + Åpne - Open file - Åpne fil + Open file + Åpne fil - All HTML files (*.html *.htm) - Alle HTML filer (*.html *.htm) + All HTML files (*.html *.htm) + Alle HTML filer (*.html *.htm) - External browser - Ekstern nettleser + External browser + Ekstern nettleser - No external browser found. Specify in preferences, please - Ingen ekstern nettleser funnet. Vennligst angi i preferanser + No external browser found. Specify in preferences, please + Ingen ekstern nettleser funnet. Vennligst angi i preferanser - Starting of %1 failed - Start av %1 mislyktes + Starting of %1 failed + Start av %1 mislyktes - - + + Gui::DockWnd::PropertyDockView - Property View - Egenskapsvisning + Property View + Egenskapsvisning - - + + Gui::DockWnd::ReportOutput - Logging - Logging + Logging + Logging - Warning - Advarsel + Warning + Advarsel - Error - Feil + Error + Feil - Options - Alternativer + Options + Alternativer - Clear - Tøm + Clear + Tøm - Save As... - Lagre som... + Save As... + Lagre som... - Save Report Output - Lagre rapport utdata + Save Report Output + Lagre rapport utdata - Plain Text Files (*.txt *.log) - Rene tekstfiler (*.txt *.log) + Plain Text Files (*.txt *.log) + Rene tekstfiler (*.txt *.log) - Go to end - Gå til slutten + Go to end + Gå til slutten - Redirect Python output - Redirect Python output + Redirect Python output + Redirect Python output - Redirect Python errors - Omadressere Python-feil + Redirect Python errors + Omadressere Python-feil - - + + Gui::DockWnd::ReportView - Output - Utdata + Output + Utdata - Python console - Pythonkonsoll + Python console + Pythonkonsoll - - + + Gui::DockWnd::SelectionView - Property View - Egenskapsvisning + Property View + Egenskapsvisning - - + + Gui::DockWnd::TaskPanelView - Task View - Oppgavevisning + Task View + Oppgavevisning - - + + Gui::DockWnd::TextBrowser - Could not open file. - Kunne ikke åpne fil. + Could not open file. + Kunne ikke åpne fil. - You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. - Du prøvde å få tilgang til adressen %1 som for øyeblikket er utilgjengelig. Kontroller at nettadressen eksisterer og prøv å oppdatere siden. + You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. + Du prøvde å få tilgang til adressen %1 som for øyeblikket er utilgjengelig. Kontroller at nettadressen eksisterer og prøv å oppdatere siden. - Connecting to %1 - Kobler til %1 + Connecting to %1 + Kobler til %1 - Sending to %1 - Sender til %1 + Sending to %1 + Sender til %1 - Reading from %1 - Leser fra %1 + Reading from %1 + Leser fra %1 - Download failed: %1. - Nedlasting mislyktes: %1. + Download failed: %1. + Nedlasting mislyktes: %1. - Previous - Forrige + Previous + Forrige - Forward - Fremover + Forward + Fremover - Home - Hjem + Home + Hjem - Refresh - Oppdater + Refresh + Oppdater - Copy - Kopier + Copy + Kopier - Select all - Velg alle + Select all + Velg alle - No description for - Ingen beskrivelse for + No description for + Ingen beskrivelse for - - + + Gui::DocumentModel - Application - Program + Application + Program - Labels & Attributes - Etiketter og attributter + Labels & Attributes + Etiketter og attributter - - + + Gui::EditorView - Modified file - Modifisert fil + Modified file + Modifisert fil - %1. + %1. This has been modified outside of the source editor. Do you want to reload it? - %1. + %1. Dette har blitt endret utenfor kilderedigereren. Vil du laste den på nytt? - Unsaved document - Ulagret dokument + Unsaved document + Ulagret dokument - The document has been modified. + The document has been modified. Do you want to save your changes? - Dokumentet har blitt endret. + Dokumentet har blitt endret. Vil du lagre endringene? - FreeCAD macro (*.FCMacro);;Python (*.py) - FreeCAD-makro (*.FCMacro);;Python (*. py) + FreeCAD macro (*.FCMacro);;Python (*.py) + FreeCAD-makro (*.FCMacro);;Python (*. py) - Export PDF - Eksporter PDF + Export PDF + Eksporter PDF - PDF file (*.pdf) - PDF-fil (*.pdf) + PDF file (*.pdf) + PDF-fil (*.pdf) - untitled[*] - uten navn[*] + untitled[*] + uten navn[*] - - Editor - -Redigerer + - Editor + -Redigerer - %1 chars removed - %1 tegn fjernet + %1 chars removed + %1 tegn fjernet - %1 chars added - %1 tegn lagt til + %1 chars added + %1 tegn lagt til - Formatted - Formatert + Formatted + Formatert - - + + Gui::FileChooser - Select a file - Velg en fil + Select a file + Velg en fil - Select a directory - Velg en mappe + Select a directory + Velg en mappe - - + + Gui::FileDialog - Save as - Lagre som + Save as + Lagre som - Open - Åpne + Open + Åpne - - + + Gui::FileOptionsDialog - Extended - Utvidet + Extended + Utvidet - All files (*.*) - Alle filer (*.*) + All files (*.*) + Alle filer (*.*) - - + + Gui::Flag - Top left - Øverst til venstre + Top left + Øverst til venstre - Bottom left - Nederst til venstre + Bottom left + Nederst til venstre - Top right - Øverst til høyre + Top right + Øverst til høyre - Bottom right - Nederst til høyre + Bottom right + Nederst til høyre - Remove - Fjern + Remove + Fjern - - + + Gui::InventorNavigationStyle - Press CTRL and left mouse button - Trykk CTRL og venstre museknapp + Press CTRL and left mouse button + Trykk CTRL og venstre museknapp - Press middle mouse button - Trykk på midtre museknapp + Press middle mouse button + Trykk på midtre museknapp - Press left mouse button - Trykk venstre museknapp + Press left mouse button + Trykk venstre museknapp - Scroll middle mouse button - Rull musehjul + Scroll middle mouse button + Rull musehjul - - + + Gui::LocationDialog - Wrong direction - Feil retning + Wrong direction + Feil retning - Direction must not be the null vector - Retningen kan ikke være nullvektoren + Direction must not be the null vector + Retningen kan ikke være nullvektoren - X - X + X + X - Y - Y + Y + Y - Z - Z + Z + Z - User defined... - Brukerdefinert... + User defined... + Brukerdefinert... - - + + Gui::LocationWidget - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - Z: + Z: + Z: - Direction: - + Direction: + Retning: - - + + Gui::MacroCommand - Macros - Makroer + Macros + Makroer - - + + Gui::MainWindow - Dimension - Dimensjon + Dimension + Dimensjon - Ready - Klar + Ready + Klar - Toggles this toolbar - Veksler denne verktøylinjen + Toggles this toolbar + Veksler denne verktøylinjen - Toggles this dockable window - Veksler dette dokkbare vinduet + Toggles this dockable window + Veksler dette dokkbare vinduet - Close All - Lukk alle + Close All + Lukk alle - - + + Gui::ManualAlignment - Manual alignment - + Manual alignment + Manual alignment - The alignment is already in progress. - + The alignment is already in progress. + The alignment is already in progress. - Alignment[*] - + Alignment[*] + Alignment[*] - Please, select at least one point in the left and the right view - + Please, select at least one point in the left and the right view + Please, select at least one point in the left and the right view - Please, select at least %1 points in the left and the right view - + Please, select at least %1 points in the left and the right view + Please, select at least %1 points in the left and the right view - Please pick points in the left and right view - + Please pick points in the left and right view + Please pick points in the left and right view - The alignment has finished - + The alignment has finished + The alignment has finished - The alignment has been canceled - + The alignment has been canceled + The alignment has been canceled - Too few points picked in the left view. At least %1 points are needed. - + Too few points picked in the left view. At least %1 points are needed. + Too few points picked in the left view. At least %1 points are needed. - Too few points picked in the right view. At least %1 points are needed. - + Too few points picked in the right view. At least %1 points are needed. + Too few points picked in the right view. At least %1 points are needed. - Different number of points picked in left and right view. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Different number of points picked in left and right view. +On the left view %1 points are picked, +on the right view %2 points are picked. - Try to align group of views - + Try to align group of views + Try to align group of views - The alignment failed. + The alignment failed. How do you want to proceed? - + The alignment failed. +How do you want to proceed? - Retry - + Retry + Retry - Ignore - + Ignore + Ignorer - Abort - + Abort + Abort - Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - Point picked at (%1,%2,%3) - + Point picked at (%1,%2,%3) + Point picked at (%1,%2,%3) - No point was picked - + No point was picked + No point was picked - - + + Gui::NetworkRetriever - Download started... + Download started... - Nedlasting har startet... + Nedlasting har startet... - - + + Gui::ProgressBar - Remaining: %1 - Gjenstående: %1 + Remaining: %1 + Gjenstående: %1 - Aborting - Avbryter + Aborting + Avbryter - Do you really want to abort the operation? - Vil du virkelig avbryte operasjonen? + Do you really want to abort the operation? + Vil du virkelig avbryte operasjonen? - - + + Gui::ProgressDialog - Remaining: %1 - Gjenstående: %1 + Remaining: %1 + Gjenstående: %1 - Aborting - Avbryter + Aborting + Avbryter - Do you really want to abort the operation? - Vil du virkelig avbryte operasjonen? + Do you really want to abort the operation? + Vil du virkelig avbryte operasjonen? - - + + Gui::PropertyEditor::PropertyModel - Property - Egenskap + Property + Egenskap - Value - Verdi + Value + Verdi - - + + Gui::PropertyView - View - Vis + View + Vis - Data - Data + Data + Data - - + + Gui::PythonConsole - System exit - Systemavsluttning + System exit + Systemavsluttning - The application is still running. + The application is still running. Do you want to exit without saving your data? - Programmet er fremdeles i gang. + Programmet er fremdeles i gang. Ønsker du å avslutte uten å lagre dine data? - Python console - Pythonkonsoll + Python console + Pythonkonsoll - Unhandled PyCXX exception. - Ubehandlet PyCXX unntak. + Unhandled PyCXX exception. + Ubehandlet PyCXX unntak. - Unhandled FreeCAD exception. - Ubehandlet FreeCAD unntak. + Unhandled FreeCAD exception. + Ubehandlet FreeCAD unntak. - Unhandled unknown C++ exception. - Ubehandlet ukjent C++ unntak. + Unhandled unknown C++ exception. + Ubehandlet ukjent C++ unntak. - &Copy command - &Kopierkommando + &Copy command + &Kopierkommando - &Copy history - &Kopieringshistorie + &Copy history + &Kopieringshistorie - Save history as... - Lagre historie som... + Save history as... + Lagre historie som... - Insert file name... - Sett inn filnavn... + Insert file name... + Sett inn filnavn... - Save History - Lagre Historie + Save History + Lagre Historie - Macro Files (*.FCMacro *.py) - Makrofiler (*.FCMacro *.py) + Macro Files (*.FCMacro *.py) + Makrofiler (*.FCMacro *.py) - Insert file name - Sett inn filnavn + Insert file name + Sett inn filnavn - All Files (*.*) - Alle filer (*.*) + All Files (*.*) + Alle filer (*.*) - Python Input Dialog - Python inndata dialog + Python Input Dialog + Python inndata dialog - Unhandled std C++ exception. - Ubehandlet std C++ unntak. + Unhandled std C++ exception. + Ubehandlet std C++ unntak. - Word wrap - Tekstbryting + Word wrap + Tekstbryting - &Copy - &Kopier + &Copy + &Kopier - &Paste - &Lim inn + &Paste + &Lim inn - Select All - Merk alle + Select All + Merk alle - Clear console - + Clear console + Clear console - - + + Gui::PythonEditor - Comment - Kommentar + Comment + Kommentar - Uncomment - Avkommentér + Uncomment + Avkommentér - - + + Gui::PythonInputField - OK - OK + OK + OK - Clear - Tøm + Clear + Tøm - - + + Gui::RecentFilesAction - Open file %1 - Åpne fil %1 + Open file %1 + Åpne fil %1 - File not found - Fant ikke filen + File not found + Fant ikke filen - The file '%1' cannot be opened. - Filen '%1' kan ikke åpnes. + The file '%1' cannot be opened. + Filen '%1' kan ikke åpnes. - - + + Gui::SelectModule - Select module - Velg modul + Select module + Velg modul - Open %1 as - Åpne %1 som + Open %1 as + Åpne %1 som - Select - Velg + Select + Velg - - + + Gui::StdCmdDescription - Help - Hjelp + Help + Hjelp - Des&cription - Be&skrivelse + Des&cription + Be&skrivelse - Long description of commands - Lang beskrivelse av kommandoer + Long description of commands + Lang beskrivelse av kommandoer - - + + Gui::StdCmdDownloadOnlineHelp - Help - Hjelp + Help + Hjelp - Download online help - Last ned hjelp fra internett + Download online help + Last ned hjelp fra internett - Download %1's online help - Last ned %1's hjelp fra internett + Download %1's online help + Last ned %1's hjelp fra internett - Non-existing directory - Ikkeeksisterende mappe + Non-existing directory + Ikkeeksisterende mappe - The directory '%1' does not exist. + The directory '%1' does not exist. Do you want to specify an existing directory? - Mappen '%1' eksisterer ikke. + Mappen '%1' eksisterer ikke. Vil du angi en eksisterende mappe? - Missing permission - Mangler tillatelse + Missing permission + Mangler tillatelse - You don't have write permission to '%1' + You don't have write permission to '%1' Do you want to specify another directory? - Du har ikke skrivetilgang til '%1' + Du har ikke skrivetilgang til '%1' Vil du angi en annen mappe? - Stop downloading - Stopp nedlasting + Stop downloading + Stopp nedlasting - - + + Gui::StdCmdPythonHelp - Tools - Verktøy + Tools + Verktøy - Python Modules - Pythonmoduler + Python Modules + Pythonmoduler - Opens a browser to show the Python modules - Åpner en nettleser for å vise Pythonmoduler + Opens a browser to show the Python modules + Åpner en nettleser for å vise Pythonmoduler - - + + Gui::TaskBoxAngle - Angle - Vinkel + Angle + Vinkel - - + + Gui::TaskBoxPosition - Position - Posisjon + Position + Posisjon - - + + Gui::TaskView::TaskAppearance - Display mode: - Visningsmodus: + Plot mode: + Plottmodus: - Plot mode: - Plottmodus: + Point size: + Punktstørrelse: - Point size: - Punktstørrelse: + Line width: + Linjebredde: - Line width: - Linjebredde: + Transparency: + Gjennomsiktighet: - Transparency: - Gjennomsiktighet: + Appearance + Utseende - Appearance - Utseende + Document window: + Document window: - - Document window: - - - - + + Gui::TaskView::TaskEditControl - Edit - Rediger + Edit + Rediger - - + + Gui::TaskView::TaskSelectLinkProperty - Appearance - Utseende + Appearance + Utseende - ... - ... + ... + ... - edit selection - redigere utvalg + edit selection + redigere utvalg - - + + Gui::TouchpadNavigationStyle - Press left mouse button - Trykk venstre museknapp + Press left mouse button + Trykk venstre museknapp - Press SHIFT button - + Press SHIFT button + Press SHIFT button - Press ALT button - + Press ALT button + Press ALT button - Press PgUp/PgDown button - + Press PgUp/PgDown button + Press PgUp/PgDown button - - - Gui::Translator - - English - Engelsk - - - + + Gui::TreeDockWidget - Tree view - Trevisning + Tree view + Trevisning - - + + Gui::TreeWidget - Create group... - Lag gruppe... + Create group... + Lag gruppe... - Create a group - Lag en gruppe + Create a group + Lag en gruppe - Group - Gruppe + Group + Gruppe - Rename - Omdøp + Rename + Omdøp - Rename object - Omdøp objekt + Rename object + Omdøp objekt - Labels & Attributes - Etiketter og attributter + Labels & Attributes + Etiketter og attributter - Application - Program + Application + Program - Finish editing - Fullfør redigering + Finish editing + Fullfør redigering - Finish editing object - Fullfør å redigere objektet + Finish editing object + Fullfør å redigere objektet - Activate document - Aktiver dokument + Activate document + Aktiver dokument - Activate document %1 - Aktiver dokument %1 + Activate document %1 + Aktiver dokument %1 - - + + Gui::View3DInventor - Export PDF - Eksporter PDF + Export PDF + Eksporter PDF - PDF file (*.pdf) - PDF-fil (*.pdf) + PDF file (*.pdf) + PDF-fil (*.pdf) - - + + Gui::WorkbenchGroup - Select the '%1' workbench - Velg '%1' arbeidsbenk + Select the '%1' workbench + Velg '%1' arbeidsbenk - - + + Position - Form - Skjema + Form + Skjema - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - Z: + Z: + Z: - 0.1 mm - 0.1 mm + 0.1 mm + 0.1 mm - 0.5 mm - 0.5 mm + 0.5 mm + 0.5 mm - 1 mm - 1 mm + 1 mm + 1 mm - 2 mm - 2 mm + 2 mm + 2 mm - 5 mm - 5 mm + 5 mm + 5 mm - 10 mm - 10 mm + 10 mm + 10 mm - 20 mm - 20 mm + 20 mm + 20 mm - 50 mm - 50 mm + 50 mm + 50 mm - 100 mm - 100 mm + 100 mm + 100 mm - 200 mm - 200 mm + 200 mm + 200 mm - 500 mm - 500 mm + 500 mm + 500 mm - 1 m - 1 m + 1 m + 1 m - 2 m - 2 m + 2 m + 2 m - 5 m - 5 m + 5 m + 5 m - Grid Snap in - Rutenett magnet i + Grid Snap in + Rutenett magnet i - - + + QDockWidget - Tree view - Trevisning + Tree view + Trevisning - Property view - Egenskapsvisning + Property view + Egenskapsvisning - Selection view - Visning av valg + Selection view + Visning av valg - Report view - Rapportvisning + Report view + Rapportvisning - Task View - Oppgavevisning + Task View + Oppgavevisning - Combo View - Kombinert visning + Combo View + Kombinert visning - Toolbox - Verktøykasse + Toolbox + Verktøykasse - Python console - Pythonkonsoll + Python console + Pythonkonsoll - Display properties - Skjermegenskaper + Display properties + Skjermegenskaper - - + + QObject - General - Generelle + General + Generelle - Display - Skjerm + Display + Skjerm - Unknown filetype - Ukjent filetype + Unknown filetype + Ukjent filetype - Cannot open unknown filetype: %1 - Kan ikke åpne ukjent filetype: %1 + Cannot open unknown filetype: %1 + Kan ikke åpne ukjent filetype: %1 - Cannot save to unknown filetype: %1 - Kan ikke lagre til ukjent filetype: %1 + Cannot save to unknown filetype: %1 + Kan ikke lagre til ukjent filetype: %1 - Workbench failure - Arbeidsbenkfeil + Workbench failure + Arbeidsbenkfeil - %1 - %1 + %1 + %1 - Unable to launch Qt Assistant (%1) - Kan ikke starte Qt assistent (%1) + Unable to launch Qt Assistant (%1) + Kan ikke starte Qt assistent (%1) - Exception - Unntak + Exception + Unntak - Open document - Åpne dokument + Open document + Åpne dokument - Import file - Importer fil + Import file + Importer fil - Export file - Eksporter fil + Export file + Eksporter fil - Printing... - Skriver ut ... + Printing... + Skriver ut ... - Cannot load workbench - Kan ikke laste arbeidsbenk + Cannot load workbench + Kan ikke laste arbeidsbenk - A general error occurred while loading the workbench - En generell feil oppstod under lasting arbeidsbordet + A general error occurred while loading the workbench + En generell feil oppstod under lasting arbeidsbordet - File not found - Fant ikke filen + Save views... + Lagre visninger... - Cannot open file %1 - Kan ikke åpne filen %1 + Load views... + Last visninger... - Save views... - Lagre visninger... + Freeze view + Frys visning - Load views... - Last visninger... + Clear views + Tøm visninger - Freeze view - Frys visning + Restore view &%1 + Gjenopprette visning &%1 - Clear views - Tøm visninger + Save frozen views + Lagre frosne visninger - Restore view &%1 - Gjenopprette visning &%1 + Frozen views (*.cam) + Frosne visninger (*.cam) - Save frozen views - Lagre frosne visninger + Restore views + Gjenopprett visninger - Frozen views (*.cam) - Frosne visninger (*.cam) - - - Restore views - Gjenopprett visninger - - - Importing the restored views would clear the already stored views. + Importing the restored views would clear the already stored views. Do you want to continue? - Importering av gjenopprettede visninger fjerner allerede lagrede visninger. Vil du fortsette? + Importering av gjenopprettede visninger fjerner allerede lagrede visninger. Vil du fortsette? - Restore frozen views - Gjenopprett frosne visninger + Restore frozen views + Gjenopprett frosne visninger - Cannot open file '%1'. - Kan ikke åpne filen '%1'. + Cannot open file '%1'. + Kan ikke åpne filen '%1'. - Docked - Forankret + Docked + Forankret - Undocked - Uforankret + Undocked + Uforankret - Fullscreen - Fullskjerm + Fullscreen + Fullskjerm - files - filer + files + filer - Save picture - Lagre bilde + Save picture + Lagre bilde - New sub-group - Nye undergruppe + New sub-group + Nye undergruppe - Enter the name: - Skriv inn navnet: + Enter the name: + Skriv inn navnet: - New text item - Nytt tekstelement + New text item + Nytt tekstelement - Enter your text: - Skriv inn din tekst: + Enter your text: + Skriv inn din tekst: - New integer item - Nytt heltall-element + New integer item + Nytt heltall-element - Enter your number: - Skriv inn nummeret ditt: + Enter your number: + Skriv inn nummeret ditt: - New unsigned item - Nytt usignert element + New unsigned item + Nytt usignert element - New float item - Nytt float-element + New float item + Nytt float-element - New Boolean item - Nytt boolsk element + New Boolean item + Nytt boolsk element - Choose an item: - Velg et element: + Choose an item: + Velg et element: - Rename group - Omdøp gruppe + Rename group + Omdøp gruppe - The group '%1' cannot be renamed. - Gruppen '%1' kan ikke omdøpes. + The group '%1' cannot be renamed. + Gruppen '%1' kan ikke omdøpes. - Existing group - Eksisterende gruppe + Existing group + Eksisterende gruppe - The group '%1' already exists. - Gruppen '%1' finnes allerede. + The group '%1' already exists. + Gruppen '%1' finnes allerede. - Change value - Endre verdi + Change value + Endre verdi - Save document under new filename... - Lagre dokumentet under nytt filnavn... + Save document under new filename... + Lagre dokumentet under nytt filnavn... - Saving aborted - Lagring avbrutt + Saving aborted + Lagring avbrutt - Unsaved document - Ulagret dokument + Unsaved document + Ulagret dokument - Save document before close? - Lagre dokument før det lukkes? + Save document before close? + Lagre dokument før det lukkes? - Save Macro - Lagre makro + Save Macro + Lagre makro - Finish - Fullfør + Finish + Fullfør - Clear - Tøm + Clear + Tøm - Cancel - Avbryt + Cancel + Avbryt - Inner - Indre + Inner + Indre - Outer - Ytre + Outer + Ytre - No Browser - Ingen nettleser + No Browser + Ingen nettleser - Unable to open your browser. + Unable to open your browser. Please open a browser window and type in: http://localhost:%1. - Kan ikke åpne nettleseren. Vennligst åpne et nettleservindu og skriv: http://localhost:%1. + Kan ikke åpne nettleseren. Vennligst åpne et nettleservindu og skriv: http://localhost:%1. - No Server - Ingen Server + No Server + Ingen Server - Unable to start the server to port %1: %2. - Kan ikke starte serveren til port %1: %2. + Unable to start the server to port %1: %2. + Kan ikke starte serveren til port %1: %2. - Unable to open your system browser. - Kan ikke åpne systemets nettleser. + Unable to open your system browser. + Kan ikke åpne systemets nettleser. - Options... - Alternativer... + Options... + Alternativer... - Out of memory - For lite minne + Out of memory + For lite minne - Not enough memory available to display the data. - Ikke nok minne til å vise dataene. + Not enough memory available to display the data. + Ikke nok minne til å vise dataene. - Cannot find file %1 - Finner ikke filen %1 + Cannot find file %1 + Finner ikke filen %1 - Cannot find file %1 neither in %2 nor in %3 - Finner ikke filen %1 verken i %2 eller i %3 + Cannot find file %1 neither in %2 nor in %3 + Finner ikke filen %1 verken i %2 eller i %3 - Save %1 Document - Lagre %1 dokument + Save %1 Document + Lagre %1 dokument - %1 document (*.FCStd) - %1 dokument (*.FCStd) + %1 document (*.FCStd) + %1 dokument (*.FCStd) - Save As - Lagre som + Save As + Lagre som - %1 already exists. + %1 already exists. Do you want to replace it? - %1 finnes allerede. Vil du erstatte den? + %1 finnes allerede. Vil du erstatte den? - Document not closable - Dokumentet ikke kan lukkes + Document not closable + Dokumentet ikke kan lukkes - The document is not closable for the moment. - Dokumentet kan ikke lukkes for øyeblikket. + The document is not closable for the moment. + Dokumentet kan ikke lukkes for øyeblikket. - No OpenGL - Ingen OpenGL + No OpenGL + Ingen OpenGL - This system does not support OpenGL - Dette systemet støtter ikke OpenGL + This system does not support OpenGL + Dette systemet støtter ikke OpenGL - Help - Hjelp + Help + Hjelp - Unable to load documentation. + Unable to load documentation. In order to load it Qt 4.4 or higher is required. - Kan ikke laste dokumentasjon. For å laste er Qt 4.4 eller høyere er nødvendig. + Kan ikke laste dokumentasjon. For å laste er Qt 4.4 eller høyere er nødvendig. - %1 Help - %1 Hjelp + %1 Help + %1 Hjelp - Exporting PDF... - Eksporterer PDF... + Exporting PDF... + Eksporterer PDF... - Wrong selection - Feil valg + Wrong selection + Feil valg - Only one object selected. Please select two objects. + Only one object selected. Please select two objects. Be aware the point where you click matters. - Bare ett objekt valgt. Velg to objekter. + Bare ett objekt valgt. Velg to objekter. Vær oppmerksom på at punktet hvor du klikker betyr noe. - Please select two objects. + Please select two objects. Be aware the point where you click matters. - Velg to objekter. + Velg to objekter. Vær oppmerksom på at punktet hvor du klikker betyr noe. - New boolean item - Nytt boolsk element + New boolean item + Nytt boolsk element - Navigation styles - Navigeringsstiler + Navigation styles + Navigeringsstiler - %1 navigation - %1navigasjon + %1 navigation + %1navigasjon - Move annotation - Flytt merknad + Move annotation + Flytt merknad - Transform - Transformer + Transform + Transformer - The document is in editing mode and thus cannot be closed for the moment. + The document is in editing mode and thus cannot be closed for the moment. You either have to finish or cancel the editing in the task panel. - The document is in editing mode and thus cannot be closed for the moment. + The document is in editing mode and thus cannot be closed for the moment. You either have to finish or cancel the editing in the task panel. - - + + StdBoxSelection - Standard-View - Standardvisning + Standard-View + Standardvisning - Box selection - + Box selection + Box selection - - + + StdCmdAbout - Help - Hjelp + Help + Hjelp - &About %1 - &Om %1 + &About %1 + &Om %1 - About %1 - Om %1 + About %1 + Om %1 - - + + StdCmdAboutQt - Help - Hjelp + Help + Hjelp - About &Qt - Om &Qt + About &Qt + Om &Qt - About Qt - Om Qt + About Qt + Om Qt - - + + StdCmdActivateNextWindow - Window - Vindu + Window + Vindu - Ne&xt - Ne&ste + Ne&xt + Ne&ste - Activate next window - Aktiver neste vindu + Activate next window + Aktiver neste vindu - - + + StdCmdActivatePrevWindow - Window - Vindu + Window + Vindu - Pre&vious - For&rige + Pre&vious + For&rige - Activate previous window - Aktiver forrige vindu + Activate previous window + Aktiver forrige vindu - - + + StdCmdAlignment - Edit - Rediger + Edit + Rediger - Alignment... - + Alignment... + Alignment... - Align the selected objects - + Align the selected objects + Align the selected objects - - + + StdCmdArrangeIcons - Window - Vindu + Window + Vindu - Arrange &Icons - Ordne &ikoner + Arrange &Icons + Ordne &ikoner - Arrange Icons - Ordne ikoner + Arrange Icons + Ordne ikoner - - + + StdCmdAxisCross - Standard-View - Standardvisning + Standard-View + Standardvisning - Toggle axis cross - Toggle axis cross + Toggle axis cross + Toggle axis cross - - + + StdCmdCascadeWindows - Window - Vindu + Window + Vindu - &Cascade - &Kaskade + &Cascade + &Kaskade - Tile pragmatic - Still opp praktisk + Tile pragmatic + Still opp praktisk - - + + StdCmdCloseActiveWindow - Window - Vindu + Window + Vindu - Cl&ose - Lu&kk + Cl&ose + Lu&kk - Close active window - Lukk aktivt vindu + Close active window + Lukk aktivt vindu - - + + StdCmdCloseAllWindows - Window - Vindu + Window + Vindu - Close Al&l - Lukk al&le + Close Al&l + Lukk al&le - Close all windows - Lukk alle vinduer + Close all windows + Lukk alle vinduer - - + + StdCmdCommandLine - Tools - Verktøy + Tools + Verktøy - Start command &line... - Åpne kommand&olinje... + Start command &line... + Åpne kommand&olinje... - Opens the command line in the console - Åpner kommandolinje i konsoll + Opens the command line in the console + Åpner kommandolinje i konsoll - - + + StdCmdCopy - Edit - Rediger + Edit + Rediger - C&opy - K&opier + C&opy + K&opier - Copy operation - Kopioperasjon + Copy operation + Kopioperasjon - - + + StdCmdCut - Edit - Rediger + Edit + Rediger - &Cut - &Klipp ut + &Cut + &Klipp ut - Cut out - Klipp ut + Cut out + Klipp ut - - - StdCmdDDuplicateSelection - - Edit - Rediger - - - Duplicate selection - Dupliser valg - - - Put duplicates of the selected objects to the active document - Flytt duplikater av de valgte objektene til aktivt dokument - - - + + StdCmdDelete - Edit - Rediger + Edit + Rediger - &Delete - &Slett + &Delete + &Slett - Deletes the selected objects - Sletter valgte objekter + Deletes the selected objects + Sletter valgte objekter - - + + StdCmdDemoMode - Standard-View - Standardvisning + Standard-View + Standardvisning - View turntable... - Vis dreieskive... + View turntable... + Vis dreieskive... - View turntable - Vis dreieskive + View turntable + Vis dreieskive - - + + StdCmdDlgCustomize - Tools - Verktøy + Tools + Verktøy - Cu&stomize... - Til&pass... + Cu&stomize... + Til&pass... - Customize toolbars and command bars - Tilpass verktøylinjer og kommandolinjer + Customize toolbars and command bars + Tilpass verktøylinjer og kommandolinjer - - + + StdCmdDlgMacroExecute - Macros ... - Makroer... + Macros ... + Makroer... - Opens a dialog to let you execute a recorded macro - Åpner en dialog som lar deg utføre en innspilt makro + Opens a dialog to let you execute a recorded macro + Åpner en dialog som lar deg utføre en innspilt makro - Macro - Makro + Macro + Makro - - + + StdCmdDlgMacroExecuteDirect - Macro - Makro + Macro + Makro - Execute macro - Kjør makro + Execute macro + Kjør makro - Execute the macro in the editor - Utføre makroen i redigeringsprogrammet + Execute the macro in the editor + Utføre makroen i redigeringsprogrammet - - + + StdCmdDlgMacroRecord - &Macro recording ... - &Makroinnspilling... + &Macro recording ... + &Makroinnspilling... - Opens a dialog to record a macro - Åpner en dialog for å spille inn makro + Opens a dialog to record a macro + Åpner en dialog for å spille inn makro - Macro - Makro + Macro + Makro - - + + StdCmdDlgParameter - Tools - Verktøy + Tools + Verktøy - E&dit parameters ... - Re&diger parametere... + E&dit parameters ... + Re&diger parametere... - Opens a Dialog to edit the parameters - Åpner en dialog for å redigere parametere + Opens a Dialog to edit the parameters + Åpner en dialog for å redigere parametere - - + + StdCmdDlgPreferences - Tools - Verktøy + Tools + Verktøy - &Preferences ... - &Preferanser ... + &Preferences ... + &Preferanser ... - Opens a Dialog to edit the preferences - Åpner en dialog for å redigere preferanser + Opens a Dialog to edit the preferences + Åpner en dialog for å redigere preferanser - - + + StdCmdDockViewMenu - View - Vis + View + Vis - Vie&ws - Vi&sninger + Vie&ws + Vi&sninger - Toggles this window - Veksler dette vinduet + Toggles this window + Veksler dette vinduet - - + + StdCmdDrawStyle - Standard-View - Standardvisning + Standard-View + Standardvisning - Draw style - Draw style + Draw style + Draw style - - + + StdCmdDuplicateSelection - Edit - Rediger + Edit + Rediger - Duplicate selection - Dupliser valg + Duplicate selection + Dupliser valg - Put duplicates of the selected objects to the active document - Flytt duplikater av de valgte objektene til aktivt dokument + Put duplicates of the selected objects to the active document + Flytt duplikater av de valgte objektene til aktivt dokument - - + + StdCmdEdit - Edit - Rediger + Edit + Rediger - Toggle &Edit mode - + Toggle &Edit mode + Toggle &Edit mode - Toggles the selected object's edit mode - + Toggles the selected object's edit mode + Toggles the selected object's edit mode - Enters or leaves the selected object's edit mode - + Enters or leaves the selected object's edit mode + Enters or leaves the selected object's edit mode - - + + StdCmdExport - File - File + File + File - &Export... - &Eksporter... + &Export... + &Eksporter... - Export an object in the active document - Eksporter et objekt i aktivt dokumentet + Export an object in the active document + Eksporter et objekt i aktivt dokumentet - Supported formats - Støttede formater + No selection + Ingen valg - No selection - + Please select first the objects you want to export. + Please select first the objects you want to export. - - Please select first the objects you want to export. - - - - + + StdCmdExportGraphviz - Tools - Verktøy + Tools + Verktøy - Dependency graph... - + Dependency graph... + Dependency graph... - Show the dependency graph of the objects in the active document - + Show the dependency graph of the objects in the active document + Show the dependency graph of the objects in the active document - - + + StdCmdFeatRecompute - File - File + File + File - &Recompute - &Oppdater + &Recompute + &Oppdater - Recompute feature or document - Oppdater funksjon eller dokument + Recompute feature or document + Oppdater funksjon eller dokument - - + + StdCmdFreeCADWebsite - Help - Hjelp + Help + Hjelp - FreeCAD Website - FreeCAD nettsted + FreeCAD Website + FreeCAD nettsted - The FreeCAD website - FreeCAD-nettsiden + The FreeCAD website + FreeCAD-nettsiden - - + + StdCmdFreezeViews - Standard-View - Standardvisning + Standard-View + Standardvisning - Freeze display - Frys visning + Freeze display + Frys visning - Freezes the current view position - Fryser gjeldende visningsposisjon + Freezes the current view position + Fryser gjeldende visningsposisjon - - + + StdCmdHideObjects - Standard-View - Standardvisning + Standard-View + Standardvisning - Hide all objects - Skjul alle objekter + Hide all objects + Skjul alle objekter - Hide all objects in the document - Skjul alle objekter i dokumentet + Hide all objects in the document + Skjul alle objekter i dokumentet - - + + StdCmdHideSelection - Standard-View - Standardvisning + Standard-View + Standardvisning - Hide selection - Skjul valgt + Hide selection + Skjul valgt - Hide all selected objects - Skjul alle valgte objekter + Hide all selected objects + Skjul alle valgte objekter - - + + StdCmdImport - File - File + File + File - &Import... - &Importer... + &Import... + &Importer... - Import a file in the active document - Importer en fil inn i det aktive dokumentet + Import a file in the active document + Importer en fil inn i det aktive dokumentet - Supported formats - Støttede formater + Supported formats + Støttede formater - All files (*.*) - Alle filer (*.*) + All files (*.*) + Alle filer (*.*) - - + + StdCmdMacroStartDebug - Macro - Makro + Macro + Makro - Debug macro - Feilsøke makro + Debug macro + Feilsøke makro - Start debugging of macro - Start feilsøking i makro + Start debugging of macro + Start feilsøking i makro - - + + StdCmdMacroStepOver - Macro - Makro + Macro + Makro - Step over - Gå over + Step over + Gå over - - + + StdCmdMacroStopDebug - Macro - Makro + Macro + Makro - Stop debugging - Stopp feilsøking + Stop debugging + Stopp feilsøking - Stop debugging of macro - Stopp feilsking av makro + Stop debugging of macro + Stopp feilsking av makro - - + + StdCmdMacroStopRecord - Macro - Makro + Macro + Makro - S&top macro recording - S&top makroinnspilling + S&top macro recording + S&top makroinnspilling - Stop the macro recording session - Stopp makroinnspillingen + Stop the macro recording session + Stopp makroinnspillingen - - + + StdCmdMeasureDistance - View - Vis + View + Vis - Measure distance - Mål avstand + Measure distance + Mål avstand - - + + StdCmdMeasurementSimple - Tools - Verktøy + Tools + Verktøy - Mesure distance - Mål avstand + Measures distance between two selected objects + Måler avstanden mellom to merkede objekter - Measures distance between two selected objects - Måler avstanden mellom to merkede objekter + Measure distance + Mål avstand - - Measure distance - Mål avstand - - - + + StdCmdMergeProjects - File - File + File + File - Merge project... - Flett prosjekt... + Merge project... + Flett prosjekt... - Merge project - Flett prosjekt + Merge project + Flett prosjekt - %1 document (*.fcstd) - %1 dokument (*.fcstd) + %1 document (*.fcstd) + %1 dokument (*.fcstd) - Cannot merge project with itself. - Kan ikke flette prosjekt med seg selv. + Cannot merge project with itself. + Kan ikke flette prosjekt med seg selv. - - + + StdCmdNew - File - File + File + File - &New - &Ny + &New + &Ny - Create a new empty document - Lag et nytt dokument + Create a new empty document + Lag et nytt dokument - - + + StdCmdOnlineHelp - Help - Hjelp + Help + Hjelp - Show help to the application - Vis hjelp for programmet + Show help to the application + Vis hjelp for programmet - - - StdCmdOnlineHelpPython - - Help - Hjelp - - - Python Manuals - Python-manualer - - - Show the Python documentation - Vis Python-dokumentasjon - - - + + StdCmdOnlineHelpWebsite - Help - Hjelp + Help + Hjelp - Help Website - Hjelp-nettsted + Help Website + Hjelp-nettsted - The website where the help is maintained - Nettstedet der hjelp er opprettholdt + The website where the help is maintained + Nettstedet der hjelp er opprettholdt - - + + StdCmdOpen - File - File + File + File - &Open... - &Åpne... + &Open... + &Åpne... - Open a document or import files - Åpne et dokument eller importer filer + Open a document or import files + Åpne et dokument eller importer filer - Supported formats - Støttede formater + Supported formats + Støttede formater - All files (*.*) - Alle filer (*.*) + All files (*.*) + Alle filer (*.*) - - + + StdCmdPaste - Edit - Rediger + Edit + Rediger - &Paste - &Lim inn + &Paste + &Lim inn - Paste operation - Lim inn operasjon + Paste operation + Lim inn operasjon - - + + StdCmdPlacement - Edit - Rediger + Edit + Rediger - Placement... - Plassering... + Placement... + Plassering... - Place the selected objects - Plasser de valgte objektene + Place the selected objects + Plasser de valgte objektene - - + + StdCmdPrint - File - File + File + File - &Print... - &Skriv ut... + &Print... + &Skriv ut... - Print the document - Skriv ut dokument + Print the document + Skriv ut dokument - - + + StdCmdPrintPdf - File - File + File + File - &Export PDF... - &Eksporter PDF... + &Export PDF... + &Eksporter PDF... - Export the document as PDF - Eksporter dokumentet som PDF + Export the document as PDF + Eksporter dokumentet som PDF - - + + StdCmdPrintPreview - File - File + File + File - &Print preview... - &Print preview... + &Print preview... + &Print preview... - Print the document - Skriv ut dokument + Print the document + Skriv ut dokument - Print preview - Print preview + Print preview + Print preview - - + + StdCmdProjectInfo - File - File + File + File - Project i&nformation... - Prosjekti&nformasjon... + Project i&nformation... + Prosjekti&nformasjon... - Show details of the currently active project - Vis detaljer om det aktive prosjektet + Show details of the currently active project + Vis detaljer om det aktive prosjektet - - + + StdCmdProjectUtil - Tools - Verktøy + Tools + Verktøy - Project utility... - Project utility... + Project utility... + Project utility... - Utility to extract or create project files - Utility to extract or create project files + Utility to extract or create project files + Utility to extract or create project files - - + + StdCmdPythonWebsite - Help - Hjelp + Help + Hjelp - Python Website - Python-nettsted + Python Website + Python-nettsted - The official Python website - Den offisielle nettsiden for Python + The official Python website + Den offisielle nettsiden for Python - - + + StdCmdQuit - File - File + File + File - E&xit - A&vslutt + E&xit + A&vslutt - Quits the application - Avslutter programmet + Quits the application + Avslutter programmet - - + + StdCmdRandomColor - File - File + File + File - Random color - Tilfeldig farge + Random color + Tilfeldig farge - - + + StdCmdRecentFiles - File - File + File + File - Recent files - Nylig brukte filer + Recent files + Nylig brukte filer - Recent file list - Listen over nylig brukte filer + Recent file list + Listen over nylig brukte filer - - + + StdCmdRedo - Edit - Rediger + Edit + Rediger - &Redo - &Gjør om + &Redo + &Gjør om - Redoes a previously undone action - Gjør om en tidligere angret handling + Redoes a previously undone action + Gjør om en tidligere angret handling - - + + StdCmdRefresh - Edit - Rediger + Edit + Rediger - &Refresh - &Oppdater + &Refresh + &Oppdater - Recomputes the current active document - Oppdaterer det gjeldende aktive dokumentet + Recomputes the current active document + Oppdaterer det gjeldende aktive dokumentet - - + + StdCmdSave - File - File + File + File - &Save - &Lagre + &Save + &Lagre - Save the active document - Lagrer det aktive dokumentet + Save the active document + Lagrer det aktive dokumentet - - + + StdCmdSaveAs - File - File + File + File - Save &As... - Lagre &som... + Save &As... + Lagre &som... - Save the active document under a new file name - Lagre aktivt dokument under et nytt filnavn + Save the active document under a new file name + Lagre aktivt dokument under et nytt filnavn - - + + StdCmdSceneInspector - Tools - Verktøy + Tools + Verktøy - Scene inspector... - Sceneinspektør... + Scene inspector... + Sceneinspektør... - Scene inspector - Sceneinspektør + Scene inspector + Sceneinspektør - - + + StdCmdSelectAll - Edit - Rediger + Edit + Rediger - Select &All - Velg &alle + Select &All + Velg &alle - Select all - Velg alle + Select all + Velg alle - - + + StdCmdSetAppearance - Standard-View - Standardvisning + Standard-View + Standardvisning - Appearance... - Utseende... + Appearance... + Utseende... - Sets the display properties of the selected object - Angir visningsegenskaper for valgte objekt + Sets the display properties of the selected object + Angir visningsegenskaper for valgte objekt - - + + StdCmdShowObjects - Standard-View - Standardvisning + Standard-View + Standardvisning - Show all objects - Vis alle objekter + Show all objects + Vis alle objekter - Show all objects in the document - Vis alle objekter i dokument + Show all objects in the document + Vis alle objekter i dokument - - + + StdCmdShowSelection - Standard-View - Standardvisning + Standard-View + Standardvisning - Show selection - Vis valgte + Show selection + Vis valgte - Show all selected objects - Vis alle valgte objekter + Show all selected objects + Vis alle valgte objekter - - + + StdCmdStatusBar - View - Vis + View + Vis - Status bar - Statuslinjen + Status bar + Statuslinjen - Toggles the status bar - Veksler statuslinjen + Toggles the status bar + Veksler statuslinjen - - + + StdCmdTextureMapping - Tools - Verktøy + Tools + Verktøy - Texture mapping... - Teksturtilordning... + Texture mapping... + Teksturtilordning... - Texture mapping - Teksturtilordning + Texture mapping + Teksturtilordning - - + + StdCmdTileWindows - Window - Vindu + Window + Vindu - &Tile - &Still opp + &Tile + &Still opp - Tile the windows - Still opp vinduene + Tile the windows + Still opp vinduene - - + + StdCmdToggleBreakpoint - Macro - Makro + Macro + Makro - Toggle breakpoint - Veksle stopppunkt + Toggle breakpoint + Veksle stopppunkt - - + + StdCmdToggleClipPlane - Standard-View - Standardvisning + Standard-View + Standardvisning - Clipping plane - Beskjæringsplan + Clipping plane + Beskjæringsplan - Toggles clipping plane for active view - Veksler beskjæringsplan for aktiv visning + Toggles clipping plane for active view + Veksler beskjæringsplan for aktiv visning - - + + StdCmdToggleNavigation - Standard-View - Standardvisning + Standard-View + Standardvisning - Toggle navigation/Edit mode - Veksle navigasjon/ redigeringsmodus + Toggle navigation/Edit mode + Veksle navigasjon/ redigeringsmodus - Toggle between navigation and edit mode - Veksle mellom navigasjons- og redigeringsmodus + Toggle between navigation and edit mode + Veksle mellom navigasjons- og redigeringsmodus - - + + StdCmdToggleObjects - Standard-View - Standardvisning + Standard-View + Standardvisning - Toggle all objects - Veksler mellom alle objekter + Toggle all objects + Veksler mellom alle objekter - Toggles visibility of all objects in the active document - Veksler synligheten av alle objekter i det aktive dokumentet + Toggles visibility of all objects in the active document + Veksler synligheten av alle objekter i det aktive dokumentet - - + + StdCmdToggleSelectability - Standard-View - Standardvisning + Standard-View + Standardvisning - Toggle selectability - Veksle valgmulighet + Toggle selectability + Veksle valgmulighet - Toggles the property of the objects to get selected in the 3D-View - Veksler egenskap på objektene for å bli merket i 3D-visningen + Toggles the property of the objects to get selected in the 3D-View + Veksler egenskap på objektene for å bli merket i 3D-visningen - - + + StdCmdToggleVisibility - Standard-View - Standardvisning + Standard-View + Standardvisning - Toggle visibility - Veksle synlighet + Toggle visibility + Veksle synlighet - Toggles visibility - Veksle synlighet + Toggles visibility + Veksle synlighet - - + + StdCmdToolBarMenu - View - Vis + View + Vis - Tool&bars - Verktøy&linjer + Tool&bars + Verktøy&linjer - Toggles this window - Veksler dette vinduet + Toggles this window + Veksler dette vinduet - - + + StdCmdTransform - Edit - Rediger + Edit + Rediger - Transform... - Transformer... + Transform... + Transformer... - Transform the geometry of selected objects - Transformer geometrien av utvalgte objekter + Transform the geometry of selected objects + Transformer geometrien av utvalgte objekter - - + + StdCmdTreeSelection - View - Vis + View + Vis - Go to selection - Gå til valg + Go to selection + Gå til valg - Scroll to first selected item - Bla til første valgte element + Scroll to first selected item + Bla til første valgte element - - + + StdCmdUndo - Edit - Rediger + Edit + Rediger - &Undo - &Angre + &Undo + &Angre - Undo exactly one action - Angre nøyaktig én handling + Undo exactly one action + Angre nøyaktig én handling - - + + StdCmdUserInterface - View - Vis + View + Vis - Dock views - Forankre visninger + Dock views + Forankre visninger - Dock all top-level views - Forankre alle toppnivå visninger + Dock all top-level views + Forankre alle toppnivå visninger - - + + StdCmdViewAxo - Standard-View - Standardvisning + Standard-View + Standardvisning - Axometric - Axometrisk + Axometric + Axometrisk - Set to axometric view - Sett til axometrisk visning + Set to axometric view + Sett til axometrisk visning - - + + StdCmdViewBottom - Standard-View - Standardvisning + Standard-View + Standardvisning - Bottom - Bunn + Bottom + Bunn - Set to bottom view - Sett til bunnvisning + Set to bottom view + Sett til bunnvisning - - + + StdCmdViewCreate - Standard-View - Standardvisning + Standard-View + Standardvisning - Create new view - Lag ny visning + Create new view + Lag ny visning - Creates a new view window for the active document - Lager et nytt visningsvindu for det aktive dokumentet + Creates a new view window for the active document + Lager et nytt visningsvindu for det aktive dokumentet - - + + StdCmdViewExample1 - Standard-View - Standardvisning + Standard-View + Standardvisning - Inventor example #1 - Oppfinnereksempel #1 + Inventor example #1 + Oppfinnereksempel #1 - Shows a 3D texture with manipulator - Viser en 3D-struktur med manipulator + Shows a 3D texture with manipulator + Viser en 3D-struktur med manipulator - - + + StdCmdViewExample2 - Standard-View - Standardvisning + Standard-View + Standardvisning - Inventor example #2 - Oppfinnereksempel #2 + Inventor example #2 + Oppfinnereksempel #2 - Shows spheres and drag-lights - Viser sfærer og dralys + Shows spheres and drag-lights + Viser sfærer og dralys - - + + StdCmdViewExample3 - Standard-View - Standardvisning + Standard-View + Standardvisning - Inventor example #3 - Oppfinnereksempel #3 + Inventor example #3 + Oppfinnereksempel #3 - Shows a animated texture - Viser en animert tekstur + Shows a animated texture + Viser en animert tekstur - - + + StdCmdViewFitAll - Standard-View - Standardvisning + Standard-View + Standardvisning - Fit all - Pass til alle + Fit all + Pass til alle - Fits the whole content on the screen - Tilpasser hele innholdet til skjerm + Fits the whole content on the screen + Tilpasser hele innholdet til skjerm - - + + StdCmdViewFitSelection - Standard-View - Standardvisning + Standard-View + Standardvisning - Fit selection - Pass til valgte + Fit selection + Pass til valgte - Fits the selected content on the screen - Tilpasser det valgte innhold til skjerm + Fits the selected content on the screen + Tilpasser det valgte innhold til skjerm - - + + StdCmdViewFront - Standard-View - Standardvisning + Standard-View + Standardvisning - Front - Front + Front + Front - Set to front view - Sett til frontvisning + Set to front view + Sett til frontvisning - - + + StdCmdViewIvIssueCamPos - Standard-View - Standardvisning + Standard-View + Standardvisning - Issue camera position - Utsted kameraposisjon + Issue camera position + Utsted kameraposisjon - Issue the camera position to the console and to a macro, to easily recall this position - Utsted kameraposisjon til konsoll og en makro for enkelt å hente den fram igjen + Issue the camera position to the console and to a macro, to easily recall this position + Utsted kameraposisjon til konsoll og en makro for enkelt å hente den fram igjen - - + + StdCmdViewIvStereoInterleavedColumns - Standard-View - Standardvisning + Standard-View + Standardvisning - Stereo Interleaved Columns - Stereo oppdelte kolonner + Stereo Interleaved Columns + Stereo oppdelte kolonner - Switch stereo viewing to Interleaved Columns - Bytt stereovisning til oppdelte kolonner + Switch stereo viewing to Interleaved Columns + Bytt stereovisning til oppdelte kolonner - - + + StdCmdViewIvStereoInterleavedRows - Standard-View - Standardvisning + Standard-View + Standardvisning - Stereo Interleaved Rows - Stereo oppdelte rader + Stereo Interleaved Rows + Stereo oppdelte rader - Switch stereo viewing to Interleaved Rows - Bytt stereovisning til oppdelte rader + Switch stereo viewing to Interleaved Rows + Bytt stereovisning til oppdelte rader - - + + StdCmdViewIvStereoOff - Standard-View - Standardvisning + Standard-View + Standardvisning - Stereo Off - Stereo av + Stereo Off + Stereo av - Switch stereo viewing off - Slå stereo visning av + Switch stereo viewing off + Slå stereo visning av - - + + StdCmdViewIvStereoQuadBuff - Standard-View - Standardvisning + Standard-View + Standardvisning - Stereo quad buffer - Stereo quad buffer + Stereo quad buffer + Stereo quad buffer - Switch stereo viewing to quad buffer - Bytt stereovisning til quad buffer + Switch stereo viewing to quad buffer + Bytt stereovisning til quad buffer - - + + StdCmdViewIvStereoRedGreen - Standard-View - Standardvisning + Standard-View + Standardvisning - Stereo red/green - Stereo rød/ grønn + Stereo red/green + Stereo rød/ grønn - Switch stereo viewing to red/green - Bytt stereovisning til rød/ grønn + Switch stereo viewing to red/green + Bytt stereovisning til rød/ grønn - - + + StdCmdViewLeft - Standard-View - Standardvisning + Standard-View + Standardvisning - Left - Venstre + Left + Venstre - Set to left view - Sett til venstrevisning + Set to left view + Sett til venstrevisning - - + + StdCmdViewRear - Standard-View - Standardvisning + Standard-View + Standardvisning - Rear - Bak + Rear + Bak - Set to rear view - Sett til bakvisning + Set to rear view + Sett til bakvisning - - + + StdCmdViewRight - Standard-View - Standardvisning + Standard-View + Standardvisning - Right - Høyre + Right + Høyre - Set to right view - Sett til høyrevisning + Set to right view + Sett til høyrevisning - - + + StdCmdViewRotateLeft - Standard-View - Standardvisning + Standard-View + Standardvisning - Rotate Left - + Rotate Left + Rotate Left - Rotate the view by 90° counter-clockwise - + Rotate the view by 90° counter-clockwise + Rotate the view by 90° counter-clockwise - - + + StdCmdViewRotateRight - Standard-View - Standardvisning + Standard-View + Standardvisning - Rotate Right - + Rotate Right + Rotate Right - Rotate the view by 90° clockwise - + Rotate the view by 90° clockwise + Rotate the view by 90° clockwise - - + + StdCmdViewTop - Standard-View - Standardvisning + Standard-View + Standardvisning - Top - Topp + Top + Topp - Set to top view - Sett til toppvisning + Set to top view + Sett til toppvisning - - + + StdCmdWhatsThis - Help - Hjelp + Help + Hjelp - &What's This? - &Hva er dette? + &What's This? + &Hva er dette? - What's This - Hva er dette + What's This + Hva er dette - - + + StdCmdWindows - Window - Vindu + Window + Vindu - &Windows... - &Vinduer... + &Windows... + &Vinduer... - Windows list - Vindusliste + Windows list + Vindusliste - - + + StdCmdWindowsMenu - Window - Vindu + Window + Vindu - Activates this window - Aktiverer dette vinduet + Activates this window + Aktiverer dette vinduet - - + + StdCmdWorkbench - View - Vis + View + Vis - Workbench - Arbeidsbenk + Workbench + Arbeidsbenk - Switch between workbenches - Bytt mellom arbeidsbenker + Switch between workbenches + Bytt mellom arbeidsbenker - - + + StdOrthographicCamera - Standard-View - Standardvisning + Standard-View + Standardvisning - Orthographic view - Ortografisk visning + Orthographic view + Ortografisk visning - Switches to orthographic view mode - Bytter til ortografisk visningsmodus + Switches to orthographic view mode + Bytter til ortografisk visningsmodus - - + + StdPerspectiveCamera - Standard-View - Standardvisning + Standard-View + Standardvisning - Perspective view - Perspektivvisning + Perspective view + Perspektivvisning - Switches to perspective view mode - Bytter til perspektiv visningsmodus + Switches to perspective view mode + Bytter til perspektiv visningsmodus - - + + StdViewBoxZoom - Standard-View - Standardvisning + Standard-View + Standardvisning - Box zoom - Boks zoom + Box zoom + Boks zoom - - + + StdViewDockUndockFullscreen - Standard-View - Standardvisning + Standard-View + Standardvisning - Document window - Dokument-vinduet + Document window + Document window - Display the active view either in fullscreen, in undocked or docked mode - Vis den aktive visningen enten i fullskjerm, uforankret eller forankret modus + Display the active view either in fullscreen, in undocked or docked mode + Vis den aktive visningen enten i fullskjerm, uforankret eller forankret modus - - + + StdViewScreenShot - Standard-View - Standardvisning + Standard-View + Standardvisning - Save picture... - Lagre bilde... + Save picture... + Lagre bilde... - Creates a screenshot of the active view - Lager en skjermdump av den aktive visningen + Creates a screenshot of the active view + Lager en skjermdump av den aktive visningen - - + + StdViewZoomIn - Standard-View - Standardvisning + Standard-View + Standardvisning - Zoom In - Zoom inn + Zoom In + Zoom inn - - + + StdViewZoomOut - Standard-View - Standardvisning + Standard-View + Standardvisning - Zoom Out - Zoom ut + Zoom Out + Zoom ut - - + + Std_DrawStyle - As is - As is + As is + As is - Normal mode - Normal mode + Normal mode + Normal mode - Wireframe - Wireframe + Wireframe + Wireframe - Wireframe mode - Wireframe mode + Wireframe mode + Wireframe mode - - + + Std_ExportGraphviz - Graphviz not found - + Graphviz not found + Graphviz not found - Graphviz couldn't be found on your system. -Do you want to specify its installation path if it's already installed? - + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? - Graphviz installation path - + Graphviz installation path + Graphviz installation path - Dependency graph - + Dependency graph + Dependency graph - Graphviz failed - + Graphviz failed + Graphviz failed - Graphviz failed to create an image file - + Graphviz failed to create an image file + Graphviz failed to create an image file - - + + Workbench - &File - &Fil + &File + &Fil - &Edit - &Rediger + &Edit + &Rediger - Standard views - Standardvisninger + Standard views + Standardvisninger - &Stereo - &Stereo + &Stereo + &Stereo - &Zoom - &Zoom + &Zoom + &Zoom - Visibility - Synlighet + Visibility + Synlighet - &View - &Vis + &View + &Vis - &Tools - &Verktøy + &Tools + &Verktøy - &Macro - &Makro + &Macro + &Makro - &Windows - &Vinduer + &Windows + &Vinduer - &On-line help - &Internetthjelp + &On-line help + &Internetthjelp - &Help - &Hjelp + &Help + &Hjelp - File - File + File + File - Macro - Makro + Macro + Makro - View - Vis + View + Vis - Special Ops - Spesielle operasjoner + Special Ops + Spesielle operasjoner - - + + testClass - test - test + test + test - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisOppgavePanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Laget for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisOppgavePanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Laget for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - Choose the style of the Task Panel - Velg stil for oppgavepanelet + Choose the style of the Task Panel + Velg stil for oppgavepanelet - Default - Standard + Default + Standard - Windows XP - Windows XP + Windows XP + Windows XP - + diff --git a/src/Gui/Language/FreeCAD_pl.qm b/src/Gui/Language/FreeCAD_pl.qm index 393f07ac2..26773e0d3 100644 Binary files a/src/Gui/Language/FreeCAD_pl.qm and b/src/Gui/Language/FreeCAD_pl.qm differ diff --git a/src/Gui/Language/FreeCAD_pl.ts b/src/Gui/Language/FreeCAD_pl.ts index 21d9889de..131ec3795 100644 --- a/src/Gui/Language/FreeCAD_pl.ts +++ b/src/Gui/Language/FreeCAD_pl.ts @@ -1,5894 +1,5824 @@ - - + + Angle - Form - Form + Form + Formularz - A: - A: + A: + A: - B: - B: + B: + B: - C: - C: + C: + C: - Angle Snap - Przyciąganie do kąta + Angle Snap + Przyciąganie do kąta - - 1 ° - + + 1 ° + - - 2 ° - + + 2 ° + - - 5 ° - + + 5 ° + - - 10 ° - 10° + + 10 ° + 10° - - 20 ° - 20° + + 20 ° + 20° - - 45 ° - 45 ° + + 45 ° + 45 ° - - 90 ° - 90 ° + + 90 ° + 90 ° - - 180 ° - 180 ° + + 180 ° + 180 ° - - + + Gui::AccelLineEdit - none - żaden + none + żaden - - + + Gui::ActionSelector - Available: - + Available: + Dostępne: - Selected: - + Selected: + Wybrane: - Add - Dodaj + Add + Dodaj - Remove - Usuń + Remove + Usuń - Move up - Przesuń w górę + Move up + Przesuń w górę - Move down - Przenieś w dół + Move down + Przenieś w dół - - + + Gui::AlignmentView - Movable object - + Movable object + Ruchomy obiekt - Fixed object - + Fixed object + Stały obiekt - - + + Gui::BlenderNavigationStyle - Press left mouse button - Naciśnij lewy przycisk myszy + Press left mouse button + Naciśnij lewy przycisk myszy - Press SHIFT and middle mouse button - Press SHIFT and middle mouse button + Press SHIFT and middle mouse button + Naciśnij klawisz SHIFT i środkowy przycisk myszy - Press middle mouse button - Naciśnij środkowy przycisk myszy + Press middle mouse button + Naciśnij środkowy przycisk myszy - Scroll middle mouse button - Scroll middle mouse button + Scroll middle mouse button + Przewiń środkowy przycisk myszy - - + + Gui::CADNavigationStyle - Press left mouse button - Naciśnij lewy przycisk myszy + Press left mouse button + Naciśnij lewy przycisk myszy - Press middle mouse button - Naciśnij środkowy przycisk myszy + Press middle mouse button + Naciśnij środkowy przycisk myszy - Press left and middle mouse button - Naciśnij lewy i środkowy przycisk myszy + Press left and middle mouse button + Naciśnij lewy i środkowy przycisk myszy - Scroll middle mouse button - Scroll middle mouse button + Scroll middle mouse button + Przewiń środkowy przycisk myszy - - + + Gui::Command - Standard - Standardowy + Standard + Standardowy - - + + Gui::ContainerDialog - &OK - &OK + &OK + &OK - &Cancel - &Anuluj + &Cancel + &Anuluj - - + + Gui::ControlSingleton - Task panel - Panel zadań + Task panel + Panel zadań - - + + Gui::Dialog::AboutApplication - About - O programie + About + O programie - Revision number - Numer wersji + Revision number + Numer wersji - Version - Wersja + Version + Wersja - OK - OK + OK + OK - - + + - Release date - Data wydania + Release date + Data wydania - Platform - Platform + Platform + Platforma - License... - License... + License... + Licencja... - Copy to clipboard - + Copy to clipboard + Kopiuj do schowka - - + + Gui::Dialog::ButtonModel - Button %1 - Button %1 + Button %1 + Przycisk %1 - Out Of Range - Out Of Range + Out Of Range + Poza zakresem - - + + Gui::Dialog::CommandModel - Commands - Polecenia + Commands + Polecenia - - + + Gui::Dialog::DemoMode - View Turntable - View Turntable + View Turntable + Widok Obrotowy - Speed - Szybkość + Speed + Szybkość - Maximum - Maksymalny + Maximum + Maksymalny - Minimum - Minimalny + Minimum + Minimalny - Fullscreen - Pełny ekran + Fullscreen + Pełny ekran - Enable timer - Włącz czasomierz + Enable timer + Włącz czasomierz - s - s + s + s - Angle - Kąt - - - 90° - 90 ° - - - -90° - -90 ° + Angle + Kąt - Play - Odtwórz + 90° + 90 ° - Stop - Zatrzymaj + -90° + -90 ° - Close - Zamknij + Play + Odtwórz - - + + Stop + Zatrzymaj + + + Close + Zamknij + + + Gui::Dialog::DlgActivateWindow - Choose Window - Wybierz Okno + Choose Window + Wybierz Okno - &Activate - &Aktywuj + &Activate + &Aktywuj - Alt+A - Alt+A + Alt+A + Alt+A - &Cancel - &Anuluj + &Cancel + &Anuluj - - + + - - + + Gui::Dialog::DlgActivateWindowImp - Windows - Okna + Windows + Okna - - + + Gui::Dialog::DlgAuthorization - Authorization - Autoryzacja + Authorization + Autoryzacja - &OK - &OK + &OK + &OK - &Cancel - &Anuluj + &Cancel + &Anuluj - Password: - Hasło: + Password: + Hasło: - User name: - Nazwa użytkownika: + User name: + Nazwa użytkownika: - - + + - - + + Gui::Dialog::DlgChooseIcon - Choose Icon - Wybierz ikonę + Choose Icon + Wybierz ikonę - OK - OK + OK + OK - Cancel - Anuluj + Cancel + Anuluj - Add icons... - Add icons... + Add icons... + Dodaj ikony... - - + + Gui::Dialog::DlgCustomActions - Macros - Makra + Macros + Makra - Setup Custom Macros - Ustawienia niestandardowe makra + Setup Custom Macros + Ustawienia niestandardowe makra - Macro: - Makro: + Macro: + Makro: - ... - ... + ... + ... - Pixmap - Obrazek rastrowy + Pixmap + Obrazek - Accelerator: - Skrót klawiszowy: + Accelerator: + Skrót klawiszowy: - What's this: - Co to jest: + What's this: + Co to jest: - Status text: - Tekst stanu: + Status text: + Tekst stanu: - Tool tip: - Podpowiedź narzędzia: + Tool tip: + Podpowiedź narzędzia: - Menu text: - Tekst menu: + Menu text: + Tekst menu: - Add - Dodaj + Add + Dodaj - Remove - Usuń + Remove + Usuń - Replace - Zamień + Replace + Zamień - - + + Gui::Dialog::DlgCustomActionsImp - Icons - Ikony + Icons + Ikony - Macros - Makra + Macros + Makra - No macro - Brak makra + No macro + Brak makra - No macros found. - Makra nie znalezione. + No macros found. + Makra nie znalezione. - Macro not found - Nie znaleziono makra + Macro not found + Nie znaleziono makra - Sorry, couldn't find macro file '%1'. - Przepraszam, ale nie odnaleziono pliku makra '%1'. + Sorry, couldn't find macro file '%1'. + Przepraszam, ale nie odnaleziono pliku makra '%1'. - Empty macro - Puste makro + Empty macro + Puste makro - Please specify the macro first. - Najpierw określ makro. + Please specify the macro first. + Najpierw określ makro. - Empty text - Pusty tekst + Empty text + Pusty tekst - Please specify the menu text first. - Podaj najpierw tekst menu. + Please specify the menu text first. + Podaj najpierw tekst menu. - No item selected - Nie zaznaczono obiektu + No item selected + Nie zaznaczono obiektu - Please select a macro item first. - Wybierz najpierw element makro. + Please select a macro item first. + Wybierz najpierw element makro. - - + + Gui::Dialog::DlgCustomCommands - Commands - Polecenia + Commands + Polecenia - - + + - - + + Gui::Dialog::DlgCustomCommandsImp - Category - Kategoria + Category + Kategoria - Icon - Ikona + Icon + Ikona - Command - Polecenie + Command + Polecenie - - + + Gui::Dialog::DlgCustomKeyboard - Keyboard - Klawiatura + Keyboard + Klawiatura - Description: - Opis: + Description: + Opis: - &Category: - &Kategoria: + &Category: + &Kategoria: - C&ommands: - &Polecenia: + C&ommands: + &Polecenia: - Current shortcut: - Bieżący skrót: + Current shortcut: + Bieżący skrót: - Press &new shortcut: - Naciśnij &nowy klawisz skrótu: + Press &new shortcut: + Naciśnij &nowy klawisz skrótu: - Currently assigned to: - Aktualnie przypisany do: + Currently assigned to: + Aktualnie przypisany do: - &Assign - &Przypisz + &Assign + &Przypisz - Alt+A - Alt+A + Alt+A + Alt+A - &Reset - &Resetuj + &Reset + &Resetuj - Alt+R - Alt+R + Alt+R + Alt+R - Re&set All - Przywróć wszy&stko + Re&set All + Przywróć wszy&stko - Alt+S - Alt+S + Alt+S + Alt+S - - + + - - + + Gui::Dialog::DlgCustomKeyboardImp - Icon - Ikona + Icon + Ikona - Command - Polecenie + Command + Polecenie - none - żaden + none + żaden - Multiple defined shortcut - Skrót zdefiniowany wielokrotnie + Multiple defined shortcut + Skrót zdefiniowany wielokrotnie - The shortcut '%1' is defined more than once. This could result into unexpected behaviour. - Skrót '%1' jest zdefiniowany więcej niż raz. Może to prowadzić do nieoczekiwanego zachowania. + The shortcut '%1' is defined more than once. This could result into unexpected behaviour. + Skrót '%1' jest zdefiniowany więcej niż raz. Może to prowadzić do nieoczekiwanego zachowania. - Already defined shortcut - Skrót już jest zdefiniowany + Already defined shortcut + Skrót już jest zdefiniowany - The shortcut '%1' is already assigned to '%2'. + The shortcut '%1' is already assigned to '%2'. Please define another shortcut. - Skrót '%1' jest już przypisany do '%2'. Proszę określić inny skrót. + Skrót '%1' jest już przypisany do '%2'. Proszę określić inny skrót. - - + + Gui::Dialog::DlgCustomToolBoxbarsImp - Toolbox bars - Paski przybornika + Toolbox bars + Paski przybornika - - + + Gui::Dialog::DlgCustomToolbars - Toolbars - Paski narzędzi + Toolbars + Paski narzędzi - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-weight:600;">Uwaga:</span> Zmiany stają się aktywne po następnym załadowanie odpowiedniego warsztatu </p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-weight:600;">Uwaga:</span> Zmiany stają się aktywne po następnym załadowanie odpowiedniego warsztatu </p></body></html> - Move right - Przesuń w prawo + Move right + Przesuń w prawo - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Przenosi zaznaczony element o jeden poziom w dół.</b> <p> Zmieniony zostanie także poziom pozycji nadrzędnej. </p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Przenosi zaznaczony element o jeden poziom w dół.</b> <p> Zmieniony zostanie także poziom pozycji nadrzędnej. </p> - Move left - Przesuń w lewo + Move left + Przesuń w lewo - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Przenosi zaznaczony element o jeden poziom w dół.</b> <p> Zmieniony zostanie także poziom pozycji nadrzędnej. </p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Przenosi zaznaczony element o jeden poziom w dół.</b> <p> Zmieniony zostanie także poziom pozycji nadrzędnej. </p> - Move down - Przenieś w dół + Move down + Przenieś w dół - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Przenosi zaznaczony element w dół.</b> <p> Element zostanie przesunięty w poziomie hierarchii. </p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Przenosi zaznaczony element w dół.</b> <p> Element zostanie przesunięty w poziomie hierarchii. </p> - Move up - Przesuń w górę + Move up + Przesuń w górę - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Przenosi zaznaczony element w dół.</b> <p> Element zostanie przesunięty w poziomie hierarchii. </p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Przenosi zaznaczony element w dół.</b> <p> Element zostanie przesunięty w poziomie hierarchii. </p> - New... - Nowy... + New... + Nowy... - Rename... - Zmień nazwę... + Rename... + Zmień nazwę... - Delete - Usuń + Delete + Usuń - Icon - Ikona + Icon + Ikona - Command - Polecenie + Command + Polecenie - <Separator> - <Separator> + <Separator> + <Separator> - New toolbar - Nowy pasek narzędzi + New toolbar + Nowy pasek narzędzi - Toolbar name: - Nazwa paska narzędzi: + Toolbar name: + Nazwa paska narzędzi: - Duplicated name - Powielona nazwa + Duplicated name + Powielona nazwa - The toolbar name '%1' is already used - Nazwa paska narzędzi '%1' jest już używana + The toolbar name '%1' is already used + Nazwa paska narzędzi '%1' jest już używana - Rename toolbar - Zmień nazwę paska narzędzi + Rename toolbar + Zmień nazwę paska narzędzi - - + + - - + + Gui::Dialog::DlgCustomizeImp - Customize - Dostosuj + Customize + Dostosuj - &Help - &Pomoc + &Help + &Pomoc - &Close - &Zamknij + &Close + Zamknij - - + + Gui::Dialog::DlgCustomizeSpaceball - Spaceball - Spaceball + Spaceball + Manipulator przestrzenny - No Spaceball Present - No Spaceball Present + No Spaceball Present + Brak manipulatora przestrzennego - Buttons - Buttons + Buttons + Przyciski - Clear - Wyczyść + Clear + Wyczyść - Print Reference - Print Reference + Print Reference + Wydrukuj Odnośniki - - + + Gui::Dialog::DlgDisplayProperties - Display properties - Właściwości wyświetlania + Display properties + Właściwości wyświetlania - Display - Wyświetlanie + Display + Wyświetlanie - Transparency: - Przezroczystość: + Transparency: + Przezroczystość: - Line width: - Szerokość linii: + Line width: + Szerokość linii: - Point size: - Wielkość punktu: + Point size: + Wielkość punktu: - Material - Materiał + Material + Materiał - ... - ... + ... + ... - Close - Zamknij + Close + Zamknij - Viewing mode - Tryb widoku + Viewing mode + Tryb widoku - Display mode: - Tryb wyświetlania: + Plot mode: + Tryb kreślenia: - Plot mode: - Tryb kreślenia: + + - - + Line transparency: + Przezroczystość linii: - Line transparency: - Line transparency: + Line color: + Kolor linii: - Line color: - Kolor linii: + Shape color: + Kolor kształtu: - Shape color: - Kolor kształtu: + Color plot: + Kolor wykresu: - Color plot: - Color plot: + Document window: + Okno dokumentu: - - Document window: - - - - + + Gui::Dialog::DlgEditorSettings - Editor - Edytor + Editor + Edytor - Options - Opcje + Options + Opcje - Enable line numbers - Włącz numery linii + Enable line numbers + Włącz numery linii - Enable folding - Włącz składanie + Enable folding + Włącz składanie - Indentation - Wcięcie + Indentation + Wcięcie - Insert spaces - Wstaw spacje + Insert spaces + Wstaw spacje - Tab size: - Rozmiar karty: + Tab size: + Rozmiar karty: - Indent size: - Rozmiar wcięcia: + Indent size: + Rozmiar wcięcia: - Keep tabs - Zachowaj karty + Keep tabs + Zachowaj karty - Display Items - Pokaż elementy + Display Items + Pokaż elementy - Family: - Rodzina: + Family: + Rodzina: - Size: - Rozmiar: + Size: + Rozmiar: - Preview: - Podgląd: + Preview: + Podgląd: - - + + - - + + Gui::Dialog::DlgGeneral - General - Ogólne + General + Ogólne - Start up - Uruchamianie + Start up + Uruchamianie - Enable splash screen at start up - Włącz ekran powitalny przy uruchamianiu + Enable splash screen at start up + Włącz ekran powitalny przy uruchamianiu - Switch to tab of report window: - Przełącz na kartę okna raportu: + Switch to tab of report window: + Przełącz na kartę okna raportu: - Auto load module after start up: - Po uruchomieniu,ładuj moduł automatycznie: + Auto load module after start up: + Po uruchomieniu,ładuj moduł automatycznie: - Language - Język + Language + Język - Change language: - Zmień język: + Change language: + Zmień język: - Main window - Okno główne + Main window + Okno główne - Size of recent file list - Rozmiar listy ostatnich plików + Size of recent file list + Rozmiar listy ostatnich plików - Window style: - Styl okna: + Window style: + Styl okna: - Size of toolbar icons: - Size of toolbar icons: + Size of toolbar icons: + Rozmiar ikon paska narzędzi: - - + + Gui::Dialog::DlgGeneralImp - Default (%1 x %1) - Default (%1 x %1) + Default (%1 x %1) + Domyślne (%1 x %1) - Small (%1 x %1) - Small (%1 x %1) + Small (%1 x %1) + Małe (%1 x %1) - Large (%1 x %1) - Large (%1 x %1) + Large (%1 x %1) + Duże (%1 x %1) - Extra large (%1 x %1) - Extra large (%1 x %1) + Extra large (%1 x %1) + B. duże (%1 x %1) - - + + Gui::Dialog::DlgInputDialog - Input - Wejście + Input + Wejście - OK - OK + OK + OK - Cancel - Anuluj + Cancel + Anuluj - - + + - - + + Gui::Dialog::DlgInspector - Scene Inspector - Inspektor sceny + Scene Inspector + Inspektor sceny - - + + Gui::Dialog::DlgMacroExecute - Execute macro - Wykonaj makro + Execute macro + Wykonaj makro - Macro name: - Nazwa Makra: + Macro name: + Nazwa Makra: - Macro destination: - Przeznaczenia makra: + Macro destination: + Przeznaczenia makra: - Execute - Wykonaj + Execute + Wykonaj - Close - Zamknij + Close + Zamknij - Create - Utwórz + Create + Utwórz - Delete - Usuń + Delete + Usuń - Edit - Edytuj + Edit + Edytuj - - + + Gui::Dialog::DlgMacroExecuteImp - Macros - Makra + Macros + Makra - Macro file - Plik makra + Macro file + Plik makra - Enter a file name, please: - Proszę wprowadzić nazwę pliku: + Enter a file name, please: + Proszę wprowadzić nazwę pliku: - Existing file - Istniejący plik + Existing file + Istniejący plik - '%1'. + '%1'. This file already exists. - '%1'. Ten plik już istnieje. + '%1'. Ten plik już istnieje. - Delete macro - Usuń makro + Delete macro + Usuń makro - Do you really want to delete the macro '%1'? - Czy na pewno chcesz usunąć makro '%1'? + Do you really want to delete the macro '%1'? + Czy na pewno chcesz usunąć makro '%1'? - Cannot create file - Nie można utworzyć pliku + Cannot create file + Nie można utworzyć pliku - Creation of file '%1' failed. - Tworzenie pliku %1 nie powiodło się. + Creation of file '%1' failed. + Tworzenie pliku %1 nie powiodło się. - - + + Gui::Dialog::DlgMacroRecord - Macro recording - Rejestrowanie makra + Macro recording + Rejestrowanie makra - Macro name: - Nazwa Makra: + Macro name: + Nazwa Makra: - Stop - Zatrzymaj + Stop + Zatrzymaj - Cancel - Anuluj + Cancel + Anuluj - Macro path: - Ścieżka do makro: + Macro path: + Ścieżka do makro: - ... - ... + ... + ... - Record - Nagranie + Record + Nagranie - - + + Gui::Dialog::DlgMacroRecordImp - Macro recorder - Rejestrator makr + Macro recorder + Rejestrator makr - Specify first a place to save. - Najpierw określ miejsce zapisu. + Specify first a place to save. + Najpierw określ miejsce zapisu. - Existing macro - Istniejące makro + Existing macro + Istniejące makro - The macro '%1' already exists. Do you want to overwrite? - Makro '%1' już istnieje. Czy chcesz zastąpić? + The macro '%1' already exists. Do you want to overwrite? + Makro '%1' już istnieje. Czy chcesz zastąpić? - The macro directory doesn't exist. Please, choose another one. - The macro directory doesn't exist. Please, choose another one. + The macro directory doesn't exist. Please, choose another one. + Folder z makrami nie istnieje. Proszę wybrać inny. - Choose macro directory - Wybierz folder dla makro + Choose macro directory + Wybierz folder dla makro - - + + Gui::Dialog::DlgMaterialProperties - Material properties - Właściwości materiału + Material properties + Właściwości materiału - &Close - &Zamknij + &Close + Zamknij - Alt+C - Alt+C + Alt+C + Alt+C - Material - Materiał + Material + Materiał - Diffuse color: - Diffuse color: + Diffuse color: + Color przenikania: + - Specular color: - Specular color: + Specular color: + Kolor wziernika: - Shininess: - Połysk: + Shininess: + Połysk: - % - % + % + % - Ambient color: - Kolor otoczenia: + Ambient color: + Kolor otoczenia: - - + + - Emissive color: - Emissive color: + Emissive color: + Emissive kolor: - - + + Gui::Dialog::DlgOnlineHelp - On-line help - Pomoc on-line + On-line help + Pomoc on-line - Help viewer - Przeglądarka pomocy + Help viewer + Przeglądarka pomocy - Location of start page - Lokalizacja strony początkowej + Location of start page + Lokalizacja strony początkowej - - + + Gui::Dialog::DlgOnlineHelpImp - HTML files (*.html *.htm) - Pliki HTML (*. html *. htm) + HTML files (*.html *.htm) + Pliki HTML (*. html *. htm) - Access denied - Brak dostępu + Access denied + Brak dostępu - Access denied to '%1' + Access denied to '%1' Specify another directory, please. - Brak dostępu do "%1" Podaj inny katalog, proszę. + Brak dostępu do "%1" Podaj inny katalog, proszę. - - + + Gui::Dialog::DlgParameter - Parameter Editor - Edytor parametrów + Parameter Editor + Edytor parametrów - Save to disk - Zapisz na dysk + Save to disk + Zapisz na dysk - Alt+C - Alt+C + Alt+C + Alt+C - &Close - &Zamknij + &Close + Zamknij - - + + Gui::Dialog::DlgParameterImp - Group - Grupa + Group + Grupa - Name - Nazwa + Name + Nazwa - Type - Typ + Type + Typ - Value - Wartość + Value + Wartość - User parameter - Parametr użytkownika + User parameter + Parametr użytkownika - Invalid input - Niepoprawne dane wejściowe + Invalid input + Niepoprawne dane wejściowe - Invalid key name '%1' - Nieprawidłowa nazwa klucza '%1' + Invalid key name '%1' + Nieprawidłowa nazwa klucza '%1' - System parameter - Parametr systemu + System parameter + Parametr systemu - - + + Gui::Dialog::DlgPreferences - Preferences - Preferencje + Preferences + Preferencje - &Help - &Pomoc + &Help + &Pomoc - Alt+H - Alt+H + Alt+H + Alt+H - &OK - &OK + &OK + &OK - &Apply - &Zastosuj + &Apply + &Zastosuj - Alt+A - Alt+A + Alt+A + Alt+A - &Cancel - &Anuluj + &Cancel + &Anuluj - - + + - - + + Gui::Dialog::DlgPreferencesImp - Wrong parameter - Nieprawidłowy parametr + Wrong parameter + Nieprawidłowy parametr - - + + Gui::Dialog::DlgProjectInformation - Project information - Informacje o projekcie + Project information + Informacje o projekcie - Information - Informacje + Information + Informacje - &Name: - &Nazwa: + &Name: + &Nazwa: - Commen&t: - Komen&tarz: + Commen&t: + Komen&tarz: - Path: - Ścieżka: + Path: + Ścieżka: - &Last modified by: - &Ostatnio zmodyfikowan6 przez: + &Last modified by: + &Ostatnio zmodyfikowan6 przez: - Created &by: - Utworzony przez: + Created &by: + Utworzony przez: - Com&pany: - &Firma: + Com&pany: + &Firma: - Last &modification date: - Data ostatniej &modyfikacji: + Last &modification date: + Data ostatniej &modyfikacji: - Creation &date: - &Data utworzenia: + Creation &date: + &Data utworzenia: - &OK - &OK + &OK + &OK - &Cancel - &Anuluj + &Cancel + &Anuluj - - + + - - + + Gui::Dialog::DlgProjectUtility - Project utility - Project utility + Project utility + Narzędzia projektu - Extract project - Extract project + Extract project + Wyodrębnij projekt - Source - Source + Source + Źródło - Project file (*.fcstd) - Project file (*.fcstd) + Project file (*.fcstd) + Plik projektu (*.fcstd) - Destination - Destination + Destination + Miejsce przeznaczenia - Extract - Extract + Extract + Rozpakuj - Create project - Create project + Create project + Utwórz projekt - Document.xml - Document.xml + Document.xml + Dokument.XML - Create - Utwórz + Create + Utwórz - Load project file after creation - Load project file after creation + Load project file after creation + Wczytaj plik projektu po utworzeniu - Empty source - Empty source + Empty source + Puste żródło - No source is defined. - No source is defined. + No source is defined. + Nie zdefiniowano żadnego źródła - Empty destination - Empty destination + Empty destination + Puste miejsca przeznaczenia - No destination is defined. - No destination is defined. + No destination is defined. + Miejsce docelowe nie jest zdefiniowane. - - + + Gui::Dialog::DlgReportView - Output window - Okno wyjściowe + Output window + Okno wyjściowe - Output - Wyjście + Output + Wyjście - Record log messages - Rejestruj wiadomości dziennika + Record log messages + Rejestruj wiadomości dziennika - Record warnings - Rejestruj ostrzeżenia + Record warnings + Rejestruj ostrzeżenia - Record error messages - Rejestruj komunikaty błędów + Record error messages + Rejestruj komunikaty błędów - Colors - Kolory + Colors + Kolory - Normal messages: - Zwykłe wiadomości: + Normal messages: + Zwykłe wiadomości: - Log messages: - Wiadomości dziennika: + Log messages: + Wiadomości dziennika: - Warnings: - Ostrzeżenia: + Warnings: + Ostrzeżenia: - Errors: - Błędy: + Errors: + Błędy: - - + + - Redirect internal Python errors to report view - Redirect internal Python errors to report view + Redirect internal Python errors to report view + Przekieruj błędy wewnętrzne Python do widoku raportu - Redirect internal Python output to report view - Redirect internal Python output to report view + Redirect internal Python output to report view + Przekieruj wewnętrzne wiadomości Pythona do widoku raportu - - + + Gui::Dialog::DlgRunExternal - Running external program - Uruchamianie zewnętrznego programu + Running external program + Uruchamianie zewnętrznego programu - TextLabel - TextLabel + TextLabel + TextLabel - Advanced >> - Zaawansowane>> + Advanced >> + Zaawansowane>> - ... - ... + ... + ... - Accept changes - Potwierdź zmiany + Accept changes + Potwierdź zmiany - Discard changes - Porzuć zmiany + Discard changes + Porzuć zmiany - Abort program - Wyjdź z programu + Abort program + Wyjdź z programu - Help - Pomoc + Help + Pomoc - Select a file - Wybierz plik + Select a file + Wybierz plik - - + + Gui::Dialog::DlgSettings3DView - 3D View - Widok 3D + 3D View + Widok 3D - 3D View settings - Ustawienia widoku 3D + 3D View settings + Ustawienia widoku 3D - Show coordinate system in the corner - Pokaż w rogu układu współrzędnych + Show coordinate system in the corner + Pokaż w rogu układu współrzędnych - Show counter of frames per second - Pokaż licznik klatek na sekundę + Show counter of frames per second + Pokaż licznik klatek na sekundę - Enable animation - Włącz animację + Enable animation + Włącz animację - Enable anti-aliasing (slower) - Włącz wygładzanie (wolniejsze) + Enable anti-aliasing (slower) + Włącz wygładzanie (wolniejsze) - Eye to eye distance for stereo modes: - Odległość pomiędzy oczami dla trybów stereo: + Eye to eye distance for stereo modes: + Odległość pomiędzy oczami dla trybów stereo: - Camera type - Typ projekcji + Camera type + Typ projekcji - Orthographic rendering - Rzutowanie równoległe + Orthographic rendering + Rzutowanie równoległe - Perspective rendering - Rzutowanie perspektywiczne + Perspective rendering + Rzutowanie perspektywiczne - - + + - 3D Navigation - Nawigacja 3D + 3D Navigation + Nawigacja 3D - Mouse... - Mysz... + Mouse... + Mysz... - Intensity of backlight - Intensywność podświetlenia + Intensity of backlight + Intensywność podświetlenia - Enable backlight color - Włącz podświetlenie + Enable backlight color + Włącz podświetlenie - Orbit style - Orbit style + Orbit style + Styl orbity - Turntable - Turntable + Turntable + Obrotnica - Trackball - Trackball + Trackball + Trackball - Invert zoom - Invert zoom + Invert zoom + Odwróć powiększenie - Zoom at cursor - + Zoom at cursor + Powiększ przy kursorze - Zoom step - + Zoom step + Krok powiększenia - - + + Gui::Dialog::DlgSettings3DViewImp - %1 navigation - %1 navigation + %1 navigation + %1 nawigacji - - + + Gui::Dialog::DlgSettingsColorGradient - Color model - Kolor modelu + Color model + Kolor modelu - &Gradient: - &Gradient: + &Gradient: + &Gradient: - red-yellow-green-cyan-blue - czerwono-żółto-zielono-błękitny-niebieski + red-yellow-green-cyan-blue + czerwono-żółto-zielono-błękitny-niebieski - blue-cyan-green-yellow-red - niebiesko-błękitny-zielono-żółto-czerwony + blue-cyan-green-yellow-red + niebiesko-błękitny-zielono-żółto-czerwony - white-black - biało-czarne + white-black + biało-czarne - black-white - czarno-biały + black-white + czarno-biały - Visibility - Widoczność + Visibility + Widoczność - Out g&rayed - Out g&rayed + Out g&rayed + Deaktywuj - Alt+R - Alt+R + Alt+R + Alt+R - Out &invisible - Out &invisible + Out &invisible + Uczyń niewidzialnym - Alt+I - Alt+l + Alt+I + Alt+l - Style - Styl + Style + Styl - &Zero - &Zero + &Zero + &Zero - Alt+Z - Alt+Z + Alt+Z + Alt+Z - &Flow - &Flow + &Flow + Uwolnij - Alt+F - Alt+F + Alt+F + Alt+F - &OK - &OK + &OK + &OK - &Cancel - &Anuluj + &Cancel + &Anuluj - Parameter range - zakres parametru + Parameter range + zakres parametru - Mi&nimum: - Mi&nimum: + Mi&nimum: + Mi&nimum: - Ma&ximum: - Mak&simum: + Ma&ximum: + Mak&simum: - &Labels: - &Etykiety: + &Labels: + &Etykiety: - &Decimals: - &Miejsca dziesiętne: + &Decimals: + Miejsca &Dziesiętne: - - + + - Color-gradient settings - Ustawienia kolorów gradientu + Color-gradient settings + Ustawienia kolorów gradientu - - + + Gui::Dialog::DlgSettingsColorGradientImp - Wrong parameter - Nieprawidłowy parametr + Wrong parameter + Nieprawidłowy parametr - The maximum value must be higher than the minimum value. - Wartość maksymalna musi być wyższa niż wartość minimalna. + The maximum value must be higher than the minimum value. + Wartość maksymalna musi być wyższa niż wartość minimalna. - - + + Gui::Dialog::DlgSettingsDocument - Document - Dokument + Document + Dokument - General - Ogólne + General + Ogólne - Document save compression level + Document save compression level (0 = none, 9 = highest, 3 = default) - Poziom kompresji zapisu dokumentu (0 = brak, 9 = najwyższy, 3 = domyślny) + Poziom kompresji zapisu dokumentu (0 = brak, 9 = najwyższy, 3 = domyślny) - Create new document at start up - Utwórz nowy dokument w trakcie uruchamiania + Create new document at start up + Utwórz nowy dokument w trakcie uruchamiania - Storage - Storage + Storage + Magazyn - Saving transactions (Auto-save) - Zapisywania transakcji (Autozapis) + Saving transactions (Auto-save) + Zapisywania transakcji (Autozapis) - Discard saved transaction after saving document - Discard saved transaction after saving document + Discard saved transaction after saving document + Odrzucić zapisane transakcji po zapisaniu dokumentu - Save thumbnail into project file when saving document - Podczas zapisywania dokumentu zapisz miniaturę do pliku projektu + Save thumbnail into project file when saving document + Podczas zapisywania dokumentu zapisz miniaturę do pliku projektu - Create up to backup files when resaving document - Create up to backup files when resaving document + Create up to backup files when resaving document + Utworzyć maksymalnie pliki kopii zapasowej, gdy ponowne zapisanie dokumentu - Document objects - Obiekty dokumentu + Document objects + Obiekty dokumentu - Allow duplicate object labels in one document - Allow duplicate object labels in one document + Allow duplicate object labels in one document + Zezwalaj na dublowanie etykiet obiektów w jednym dokumencie - Maximum Undo/Redo steps - Maximum Undo/Redo steps + Maximum Undo/Redo steps + Maksymalna ilość kroków Cofnij / Powtórz - Using Undo/Redo on documents - Using Undo/Redo on documents + Using Undo/Redo on documents + Użyj Cofnij/Ponów w dokumentach - - + + Gui::Dialog::DlgSettingsEditorImp - Text - Tekst + Text + Tekst - Bookmark - Zakładka + Bookmark + Zakładka - Breakpoint - Pułapka/Breakpoint + Breakpoint + Przerwa - Keyword - Słowo kluczowe + Keyword + Słowo kluczowe - Comment - Komentarz + Comment + Komentarz - Block comment - Komentarz blokowy + Block comment + Komentarz blokowy - Number - Liczba + Number + Liczba - String - Ciąg + String + Ciąg - Character - Znak + Character + Znak - Class name - Nazwa klasy + Class name + Nazwa klasy - Define name - Określ nazwę + Define name + Określ nazwę - Operator - Operator + Operator + Operator - Python output - Wyjście Pythona + Python output + Wyjście Pythona - Python error - Błąd Pythona + Python error + Błąd Pythona - Items - Elementy + Items + Elementy - Current line highlight - + Current line highlight + Podświetlenie bieżącego wiersza - - + + Gui::Dialog::DlgSettingsImage - Image settings - Ustawienia obrazka + Image settings + Ustawienia obrazka - Image properties - Właściwości obrazka + Image properties + Właściwości obrazka - Back&ground: - &Tło: + Back&ground: + &Tło: - Current - Bieżący + Current + Bieżący - White - Biały + White + Biały - Black - Czarny + Black + Czarny - Transparent - Przezroczysty + Transparent + Przezroczysty - Image dimensions - Wymiary obrazu + Image dimensions + Wymiary obrazu - Pixel - Piksel + Pixel + Piksel - &Width: - &Szerokość: + &Width: + &Szerokość: - Current screen - Bieżący ekran + Current screen + Bieżący ekran - Icon 32 x 32 - Ikona 32 x 32 + Icon 32 x 32 + Ikona 32 x 32 - Icon 64 x 64 - Ikona 64 x 64 + Icon 64 x 64 + Ikona 64 x 64 - Icon 128 x 128 - Ikona 128 x 128 + Icon 128 x 128 + Ikona 128 x 128 - CGA 320 x 200 - CGA 320 x 200 + CGA 320 x 200 + CGA 320 x 200 - QVGA 320 x 240 - QVGA 320 x 240 + QVGA 320 x 240 + QVGA 320 x 240 - VGA 640 x 480 - VGA 640 x 480 + VGA 640 x 480 + VGA 640 x 480 - NTSC 720 x 480 - NTSC 720 x 480 + NTSC 720 x 480 + NTSC 720 x 480 - PAL 768 x 578 - PAL 768 x 578 + PAL 768 x 578 + PAL 768 x 578 - SVGA 800 x 600 - SVGA 800 x 600 + SVGA 800 x 600 + SVGA 800 x 600 - XGA 1024 x 768 - XGA 1024 x 768 + XGA 1024 x 768 + XGA 1024 x 768 - HD720 1280 x 720 - HD720 1280 x 720 + HD720 1280 x 720 + HD720 1280 x 720 - SXGA 1280 x 1024 - SXGA 1280 x 1024 + SXGA 1280 x 1024 + SXGA 1280 x 1024 - SXGA+ 1400 x 1050 - SXGA+ 1400 x 1050 + SXGA+ 1400 x 1050 + SXGA+ 1400 x 1050 - UXGA 1600 x 1200 - UXGA 1600 x 1200 + UXGA 1600 x 1200 + UXGA 1600 x 1200 - HD1080 1920 x 1080 - HD1080 1920 x 1080 + HD1080 1920 x 1080 + HD1080 1920 x 1080 - WUXGA 1920 x 1200 - WUXGA 1920 x 1200 + WUXGA 1920 x 1200 + WUXGA 1920 x 1200 - QXGA 2048 x 1538 - QXGA 2048 x 1538 + QXGA 2048 x 1538 + QXGA 2048 x 1538 - WQXGA 2560 x 1600 - WQXGA 2560 x 1600 + WQXGA 2560 x 1600 + WQXGA 2560 x 1600 - QSXGA 2560 x 2048 - QSXGA 2560 x 2048 - - - QUXGA 3200 × 2400 - QUXGA 3200 × 2400 - - - HUXGA 6400 × 4800 - HUXGA 6400 × 4800 + QSXGA 2560 x 2048 + QSXGA 2560 x 2048 - !!! 10000 x 10000 - !!! 10000 x 10000 + QUXGA 3200 × 2400 + QUXGA 3200 × 2400 - Standard sizes: - Standardowe wymiary: + HUXGA 6400 × 4800 + HUXGA 6400 × 4800 - &Height: - &Wysokość: + !!! 10000 x 10000 + !!! 10000 x 10000 - Aspect ratio: - Proporcje obrazu: + Standard sizes: + Standardowe wymiary: - &Screen - &Ekran + &Height: + &Wysokość: - Alt+S - Alt+S + Aspect ratio: + Proporcje obrazu: - &4:3 - &4:3 + &Screen + &Ekran - Alt+4 - Alt+4 + Alt+S + Alt+S - 1&6:9 - 1&6:9 + &4:3 + &4:3 - Alt+6 - Alt+6 + Alt+4 + Alt+4 - &1:1 - &1:1 + 1&6:9 + 1&6:9 - Alt+1 - Alt+1 + Alt+6 + Alt+6 - Image comment - Komentarz do obrazka + &1:1 + &1:1 - Insert MIBA - Wstaw MIBA + Alt+1 + Alt+1 - Insert comment - Wstaw komentarz + Image comment + Komentarz do obrazka - - + + Insert MIBA + Wstaw MIBA + + + Insert comment + Wstaw komentarz + + + Gui::Dialog::DlgSettingsMacro - Macro - Makro + Macro + Makro - Macro recording settings - Ustawienia nagrywania makra + Macro recording settings + Ustawienia nagrywania makra - Logging Commands - Rejestrowanie poleceń + Logging Commands + Rejestrowanie poleceń - Show script commands in python console - Pokaż polecenia skryptu w konsoli Pythona + Show script commands in python console + Pokaż polecenia skryptu w konsoli Pythona - Log all commands issued by menus to file: - Log all commands issued by menus to file: + Log all commands issued by menus to file: + Rejestruj wszystkie polecenia wydawane przez menu Plik: - FullScript.FCScript - FullScript.FCScript + FullScript.FCScript + FullScript.FCScript - Gui commands - Polecenia Gui + Gui commands + Polecenia Gui - Recording GUI commands - Nagrywanie poleceń GUI + Recording GUI commands + Nagrywanie poleceń GUI - Record as comment - Zarejestruj jako komentarz + Record as comment + Zarejestruj jako komentarz - Macro path - Ścieżka makra + Macro path + Ścieżka makra - General macro settings - + General macro settings + Ustawienia ogólne makr - Run macros in local environment - + Run macros in local environment + Uruchom makro w środowisku lokalnym - - + + Gui::Dialog::DlgSettingsUnits - Units - Jednostki + Units + Jednostki - Units settings - Jednostki-Ustawienia + Units settings + Jednostki-Ustawienia - Standard (mm/kg/s/degree) - Standardowe (mm/kg/s/stopień) + Standard (mm/kg/s/degree) + Standardowe (mm/kg/s/stopień) - MKS (m/kg/s/degree) - MKS (m/kg/s/degree) + MKS (m/kg/s/degree) + MKS (m/kg/s/stopień) - Magnitude - Magnitude + Magnitude + Wielkość - Unit - Jednostka + Unit + Jednostka - User system: - User system: + User system: + Użytkownik systemu: - Imperial (in/lb) - Imperial (in/lb) + Imperial (in/lb) + angielski system miar (cal / funt) - - + + Gui::Dialog::DlgSettingsViewColor - Colors - Kolory + Colors + Kolory - Selection - Zaznaczanie + Selection + Zaznaczanie - Enable selection highlighting - Włącz podświetlanie zaznaczenia + Enable selection highlighting + Włącz podświetlanie zaznaczenia - Enable preselection highlighting - Enable preselection highlighting + Enable preselection highlighting + Włącz podświetlanie preselekcji - Background color - Kolor tła + Background color + Kolor tła - Middle color - Kolor pośredni + Middle color + Kolor pośredni - Color gradient - Gradient kolorów + Color gradient + Gradient kolorów - Simple color - Pojedynczy kolor + Simple color + Pojedynczy kolor - Default colors - Default colors + Default colors + Domyślne kolory - Edited edge color - Edited edge color + Edited edge color + Kolor edytowanej krawędzi - Edited vertex color - Edited vertex color + Edited vertex color + Kolor edytowanego wierzchołka - Construction geometry - Construction geometry + Construction geometry + Geometria konstrukcji - Fully constrained geometry - Fully constrained geometry + Fully constrained geometry + Geometria w pełni zwymiarowana, odebrano wszystkie stopnie swobody - The color of construction geometry in editmode - The color of construction geometry in editmode + The color of vertices being edited + Kolor edytowanych wierzchołków - The color of fully constrained geometry in editmode - The color of fully constrained geometry in editmode + The color of edges being edited + Kolor krawędzi edytowany - The color of vertices being edited - The color of vertices being edited + The color of construction geometry in edit mode + Kolor geometrii budowy w trybie edycji - The color of edges being edited - The color of edges being edited + The color of fully constrained geometry in edit mode + Kolor w pełni zdefiniowanej geometrii w trybie edycji - The color of construction geometry in edit mode - + Cursor text color + Kolor tekstu kursora - The color of fully constrained geometry in edit mode - + Default shape color + Domyślny kolor kształtu - Cursor text color - + The default color for new shapes + Domyślny kolor dla nowych kształtów - Default shape color - + Default line width and color + Domyślna szerokość i kolor linii - The default color for new shapes - + The default line color for new shapes + Domyślny kolor linii dla nowych kształtów - Default line width and color - + The default line thickness for new shapes + Domyślna grubość linii dla nowych kształtów - The default line color for new shapes - + px + px - - The default line thickness for new shapes - - - - px - - - - + + Gui::Dialog::DlgTipOfTheDay - Tip of the day - Podpowiedź dnia + Tip of the day + Podpowiedź dnia - <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> - <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <b><font face="Times New Roman"> <font size="+3"> Czy wiesz...</font></font></b> - &Show tips at start up - Pokaż porady przy uruchamianiu + &Show tips at start up + Pokaż porady przy uruchamianiu - Alt+S - Alt+S + Alt+S + Alt+S - &Next Tip - &Następna porada + &Next Tip + &Następna porada - Alt+N - Alt+N + Alt+N + Alt+N - &Close - &Zamknij + &Close + Zamknij - Alt+C - Alt+C + Alt+C + Alt+C - - + + - - + + Gui::Dialog::DlgTipOfTheDayImp - Download failed: %1 + Download failed: %1 - Pobieranie zakończone niepowodzeniem: %1 + Pobieranie zakończone niepowodzeniem: %1 - If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. - Jeśli chcesz dowiedzieć się więcej o FreeCAD musisz udać się do %1 lub nacisnąć Pomoc w menu Pomoc. + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + Jeśli chcesz dowiedzieć się więcej o FreeCAD musisz udać się do %1 lub nacisnąć Pomoc w menu Pomoc. - - + + Gui::Dialog::DockablePlacement - Placement - Umiejscowienie + Placement + Umiejscowienie - - + + Gui::Dialog::DownloadDialog - Canceled. - Canceled. + Download + Pobierz - Download - + Cancel + Anuluj - Cancel - Anuluj + Close + Zamknij - Close - Zamknij + There already exists a file called %1 in the current directory. Overwrite? + Istnieje już plik o nazwie %1 w bieżącym katalogu. Czy zastąpić? - There already exists a file called %1 in the current directory. Overwrite? - + Unable to save the file %1: %2. + Nie można zapisać pliku %1: %2. - Unable to save the file %1: %2. - + Downloading %1. + Pobieranie %1. - Downloading %1. - + Download canceled. + Pobieranie anulowane. - Download canceled. - + Download failed: %1. + Pobieranie nie powiodło się:%1. - Download failed: %1. - Pobieranie nie powiodło się:%1. + Downloaded %1 to current directory. + Pobrano %1 do bieżącego katalogu. - - Downloaded %1 to current directory. - - - - + + Gui::Dialog::IconDialog - Add icon - Add icon + Add icon + Dodaj ikonę - - + + Gui::Dialog::InputVector - Input vector - Input vector + Input vector + Wprowadź wektor - Vector - Wektor + Vector + Wektor - Z: - Z: + Z: + Z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - OK - OK + OK + OK - - + + Gui::Dialog::LicenseDialog - Copyright - + Copyright + Prawa autorskie - - + + Gui::Dialog::MouseButtons - Mouse buttons - Przyciski myszy + Mouse buttons + Przyciski myszy - Configuration - Configuration + Configuration + Konfiguracja - Selection: - Selection: + Selection: + Wybór: - Panning - Panning + Panning + Panoramowanie - Rotation: - Obrót: + Rotation: + Obrót: - Zooming: - Powiększanie: + Zooming: + Powiększanie: - - + + Gui::Dialog::ParameterGroup - Expand - Rozwiń + Expand + Rozwiń - Add sub-group - Dodaj podgrupę + Add sub-group + Dodaj podgrupę - Remove group - Usuń grupę + Remove group + Usuń grupę - Rename group - Zmień nazwę grupy + Rename group + Zmień nazwę grupy - Export parameter - Eksportuj parametr + Export parameter + Eksportuj parametr - Import parameter - Importuj parametr + Import parameter + Importuj parametr - Collapse - Zwiń + Collapse + Zwiń - Do really want to remove this parameter group? - Czy na pewno chcesz usunąć ten parametr grupy? + Do really want to remove this parameter group? + Czy na pewno chcesz usunąć ten parametr grupy? - Existing sub-group - Istniejąca podgrupa + Existing sub-group + Istniejąca podgrupa - The sub-group '%1' already exists. - Podgrupa '%1' już istnieje. + The sub-group '%1' already exists. + Podgrupa '%1' już istnieje. - Export parameter to file - Eksportowanie parametru do pliku + Export parameter to file + Eksportowanie parametru do pliku - XML (*.FCParam) - XML (*.FCParam) + XML (*.FCParam) + XML (*.FCParam) - Import parameter from file - Importuj parametr z pliku + Import parameter from file + Importuj parametr z pliku - Import Error - Błąd importu + Import Error + Błąd importu - Reading from '%1' failed. - Odczyt z '%1' nie powiódł się. + Reading from '%1' failed. + Odczyt z '%1' nie powiódł się. - - + + Gui::Dialog::ParameterValue - Change value - Zmień wartość + Change value + Zmień wartość - Remove key - Usuń klucz + Remove key + Usuń klucz - Rename key - Zmień nazwę klucza + Rename key + Zmień nazwę klucza - New - Nowy + New + Nowy - New string item - Nowy obiekt ciągu znaków + New string item + Nowy obiekt ciągu znaków - New float item - Nowy obiekt liczby zmiennoprzecinkowej + New float item + Nowy obiekt liczby zmiennoprzecinkowej - New integer item - Nowy obiekt liczby całkowitej + New integer item + Nowy obiekt liczby całkowitej - New unsigned item - New unsigned item + New unsigned item + Nowy nieoznaczony element - New Boolean item - Nowy obiekt Boolean + New Boolean item + Nowy obiekt Boolean - Existing item - Istniejący element + Existing item + Istniejący element - The item '%1' already exists. - Element '%1' już istnieje. + The item '%1' already exists. + Element '%1' już istnieje. - - + + Gui::Dialog::Placement - Placement - Umiejscowienie + Placement + Umiejscowienie - OK - OK + OK + OK - Translation: - Przesunięcie: + Translation: + Przesunięcie: - Z: - Z: + Z: + Z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - Rotation: - Obrót: + Rotation: + Obrót: - Angle: - Kąt: + Angle: + Kąt: - Axis: - Oś: + Axis: + Oś: - Center: - Center: + Center: + Środek: - Pitch: - Pitch: + Pitch: + Odstęp: - Roll: - Roll: + Roll: + Roll: - Yaw: - Yaw: + Yaw: + Odchylenia: - Rotation axis with angle - Rotation axis with angle + Rotation axis with angle + Oś obrotu z kątem - Euler angles - Euler angles + Euler angles + Kąty Eulera - Apply placement changes immediately - Apply placement changes immediately + Apply placement changes immediately + Niezwłocznie zastosój zmiany położenia - Apply incremental changes to object placement - Apply incremental changes to object placement + Apply incremental changes to object placement + Zastosuj przyrostowe zmiany położenia obiektu - Apply - Zastosuj + Apply + Zastosuj - Reset - Reset + Reset + Reset - Close - Zamknij + Close + Zamknij - - + + Gui::Dialog::PrintModel - Button - Button + Button + Przycisk - Command - Polecenie + Command + Polecenie - - + + Gui::Dialog::SceneInspector - Dialog - Okno dialogowe + Dialog + Okno dialogowe - Close - Zamknij + Close + Zamknij - Refresh - Odśwież + Refresh + Odśwież - - + + Gui::Dialog::SceneModel - Inventor Tree - Inventor Tree + Inventor Tree + Drzewo konstruktora - Nodes - Węzły + Nodes + Węzły - - + + Gui::Dialog::TextureMapping - Texture - Tekstura + Texture + Tekstura - Texture mapping - Texture mapping + Texture mapping + Mapowanie tekstury - Global - Global + Global + Globalne - Environment - Environment + Environment + Środowisko - Image files (%1) - Image files (%1) + Image files (%1) + Pliki obrazów (%1) - No image - No image + No image + Nie ma obrazu - The specified file is not a valid image file. - Określony plik nie jest prawidłowym plikiem obrazu. + The specified file is not a valid image file. + Określony plik nie jest prawidłowym plikiem obrazu. - No 3d view - Brak widoku 3D + No 3d view + Brak widoku 3D - No active 3d view found. - No active 3d view found. + No active 3d view found. + Brak aktywnego widoku 3d. - - + + Gui::Dialog::Transform - Cancel - Anuluj + Cancel + Anuluj - Transform - Przekształć + Transform + Przekształć - - + + Gui::DlgTreeWidget - Dialog - Okno dialogowe + Dialog + Okno dialogowe - Items - Elementy + Items + Elementy - OK - OK + OK + OK - Cancel - Anuluj + Cancel + Anuluj - - + + - - + + Gui::DockWnd::CombiView - CombiView - MultiWidok + CombiView + MultiWidok - Project - Projekt + Project + Projekt - Tasks - Zadania + Tasks + Zadania - - + + Gui::DockWnd::HelpView - Previous - Poprzedni + Previous + Poprzedni - Next - Następny + Next + Następny - Home - Domowy + Home + Domowy - Open - Otwórz + Open + Otwórz - Open file - Otwórz plik + Open file + Otwórz plik - All HTML files (*.html *.htm) - Wszystkie pliki HTML (*. html *. htm) + All HTML files (*.html *.htm) + Wszystkie pliki HTML (*. html *. htm) - External browser - Zewnętrzna przeglądarka + External browser + Zewnętrzna przeglądarka - No external browser found. Specify in preferences, please - Nie znaleziono zewnętrznej przeglądarki. Określ ją w preferencjach, + No external browser found. Specify in preferences, please + Nie znaleziono zewnętrznej przeglądarki. Określ ją w preferencjach, - Starting of %1 failed - Uruchomienie %1 nie powiodło się + Starting of %1 failed + Uruchomienie %1 nie powiodło się - - + + Gui::DockWnd::PropertyDockView - Property View - Drzewo właściwości + Property View + Drzewo właściwości - - + + Gui::DockWnd::ReportOutput - Logging - Rejestrowanie + Logging + Rejestrowanie - Warning - Ostrzeżenie + Warning + Ostrzeżenie - Error - Błąd + Error + Błąd - Options - Opcje + Options + Opcje - Clear - Wyczyść + Clear + Wyczyść - Save As... - Zapisz jako... + Save As... + Zapisz jako... - Save Report Output - Zapisz wyjście raportu + Save Report Output + Zapisz wyjście raportu - Plain Text Files (*.txt *.log) - Pliki tekstowe (*. txt *. log) + Plain Text Files (*.txt *.log) + Pliki tekstowe (*. txt *. log) - Go to end - Go to end + Go to end + Przejdź do końca - Redirect Python output - Redirect Python output + Redirect Python output + Przekieruj wyjście z Pythona - Redirect Python errors - Przekieruj błędy Pythona + Redirect Python errors + Przekieruj błędy Pythona - - + + Gui::DockWnd::ReportView - Output - Wyjście + Output + Wyjście - Python console - Konsola Pythona + Python console + Konsola Pythona - - + + Gui::DockWnd::SelectionView - Property View - Drzewo właściwości + Property View + Drzewo właściwości - - + + Gui::DockWnd::TaskPanelView - Task View - Widok zadań + Task View + Widok zadań - - + + Gui::DockWnd::TextBrowser - Could not open file. - Nie można otworzyć pliku. + Could not open file. + Nie można otworzyć pliku. - You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. - Próbowano uzyskać dostęp do adresu%1, który jest obecnie niedostępny. Upewnij się, że adres URL istnieje i spróbuj ponownie wczytać stronę. + You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. + Próbowano uzyskać dostęp do adresu%1, który jest obecnie niedostępny. Upewnij się, że adres URL istnieje i spróbuj ponownie wczytać stronę. - Connecting to %1 - Łączenie z %1 + Connecting to %1 + Łączenie z %1 - Sending to %1 - Wysyłanie do %1 + Sending to %1 + Wysyłanie do %1 - Reading from %1 - Odczyt z %1 + Reading from %1 + Odczyt z %1 - Download failed: %1. - Pobieranie nie powiodło się:%1. + Download failed: %1. + Pobieranie nie powiodło się:%1. - Previous - Poprzedni + Previous + Poprzedni - Forward - Do przodu + Forward + Do przodu - Home - Domowy + Home + Domowy - Refresh - Odśwież + Refresh + Odśwież - Copy - Kopiuj + Copy + Kopiuj - Select all - Zaznacz wszystko + Select all + Zaznacz wszystko - No description for - Brak opisu dla + No description for + Brak opisu dla - - + + Gui::DocumentModel - Application - Program + Application + Program - Labels & Attributes - Etykiety i atrybuty + Labels & Attributes + Etykiety i atrybuty - - + + Gui::EditorView - Modified file - Zmodyfikowany plik + Modified file + Zmodyfikowany plik - %1. + %1. This has been modified outside of the source editor. Do you want to reload it? - %1. Został zmodyfikowany spoza edytora. Czy chcesz go przeładować? + %1. Został zmodyfikowany spoza edytora. Czy chcesz go przeładować? - Unsaved document - Niezapisany dokument + Unsaved document + Niezapisany dokument - The document has been modified. + The document has been modified. Do you want to save your changes? - Dokument został zmieniony. Czy chcesz zapisać zmiany? + Dokument został zmieniony. Czy chcesz zapisać zmiany? - FreeCAD macro (*.FCMacro);;Python (*.py) - makro FreeCAD (*. FCMacro), Python (*. py) + FreeCAD macro (*.FCMacro);;Python (*.py) + makro FreeCAD (*. FCMacro), Python (*. py) - Export PDF - Eksportuj do PDF + Export PDF + Eksportuj do PDF - PDF file (*.pdf) - plik PDF (*. pdf) + PDF file (*.pdf) + plik PDF (*. pdf) - untitled[*] - bez nazwy [*] + untitled[*] + bez nazwy [*] - - Editor - - Edytor + - Editor + - Edytor - %1 chars removed - Usunięte %1 znaków + %1 chars removed + Usunięte %1 znaków - %1 chars added - Dodane %1 znaków + %1 chars added + Dodane %1 znaków - Formatted - Sformatowany + Formatted + Sformatowany - - + + Gui::FileChooser - Select a file - Wybierz plik + Select a file + Wybierz plik - Select a directory - Wybierz Katalog + Select a directory + Wybierz Katalog - - + + Gui::FileDialog - Save as - Zapisz jako + Save as + Zapisz jako - Open - Otwórz + Open + Otwórz - - + + Gui::FileOptionsDialog - Extended - Rozszerzony + Extended + Rozszerzony - All files (*.*) - Wszystkie pliki (*.*) + All files (*.*) + Wszystkie pliki (*.*) - - + + Gui::Flag - Top left - Lewy górny + Top left + Lewy górny - Bottom left - Lewy dolny + Bottom left + Lewy dolny - Top right - Prawy górny + Top right + Prawy górny - Bottom right - Prawy dolny + Bottom right + Prawy dolny - Remove - Usuń + Remove + Usuń - - + + Gui::InventorNavigationStyle - Press CTRL and left mouse button - Naciśnij klawisz CTRL i lewy przycisk myszy + Press CTRL and left mouse button + Naciśnij klawisz CTRL i lewy przycisk myszy - Press middle mouse button - Naciśnij środkowy przycisk myszy + Press middle mouse button + Naciśnij środkowy przycisk myszy - Press left mouse button - Naciśnij lewy przycisk myszy + Press left mouse button + Naciśnij lewy przycisk myszy - Scroll middle mouse button - Scroll middle mouse button + Scroll middle mouse button + Przewiń środkowy przycisk myszy - - + + Gui::LocationDialog - Wrong direction - Zły kierunek + Wrong direction + Zły kierunek - Direction must not be the null vector - Kierunek nie może być wektorem zerowym + Direction must not be the null vector + Kierunek nie może być wektorem zerowym - X - X + X + X - Y - Y + Y + Y - Z - Z + Z + Z - User defined... - Zdefiniowane przez użytkownika... + User defined... + Zdefiniowane przez użytkownika... - - + + Gui::LocationWidget - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - Z: + Z: + Z: - Direction: - + Direction: + Kierunek: - - + + Gui::MacroCommand - Macros - Makra + Macros + Makra - - + + Gui::MainWindow - Dimension - Wymiar + Dimension + Wymiar - Ready - Gotowe + Ready + Gotowe - Toggles this toolbar - Włącza/wyłącza ten pasek narzędzi + Toggles this toolbar + Włącza/wyłącza ten pasek narzędzi - Toggles this dockable window - Włącza/wyłącza to okno dokujące + Toggles this dockable window + Włącza/wyłącza to okno dokujące - Close All - Close All + Close All + Zamknij wszystkie - - + + Gui::ManualAlignment - Manual alignment - + Manual alignment + Ręczne wyrównanie - The alignment is already in progress. - + The alignment is already in progress. + Wyrównanie jest już w toku. - Alignment[*] - + Alignment[*] + Wyrównanie[*] - Please, select at least one point in the left and the right view - + Please, select at least one point in the left and the right view + Proszę wybierz co najmniej jeden punkt w lewym i prawym widoku - Please, select at least %1 points in the left and the right view - + Please, select at least %1 points in the left and the right view + Proszę, wybierz co najmniej %1 punktów w lewym i prawym widoku - Please pick points in the left and right view - + Please pick points in the left and right view + Proszę wybierz punkty w lewym oraz prawym widoku - The alignment has finished - + The alignment has finished + Wyrównanie zakończone. - The alignment has been canceled - + The alignment has been canceled + Wyrównanie zostało anulowane - Too few points picked in the left view. At least %1 points are needed. - + Too few points picked in the left view. At least %1 points are needed. + Za mało punktów wybranych w prawym widoku. Co najmniej %1 punkt(ów) jest potrzebny(ch). - Too few points picked in the right view. At least %1 points are needed. - + Too few points picked in the right view. At least %1 points are needed. + Za mało punktów wybranych w prawym widoku. Co najmniej %1 punkt(ów) jest potrzebny(ch). - Different number of points picked in left and right view. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Różne liczby punktów wybrane w lewym i w prawym widoku. +Na lewym widoku wybrano %1 punkt(ów), +a na prawym widoku wybrano %2 punkt(ów). - Try to align group of views - + Try to align group of views + Spróbuj wyrównać grupy widoków - The alignment failed. + The alignment failed. How do you want to proceed? - + Wyrównanie nie powiodło się. Jak chcesz kontynuować? - Retry - + Retry + Ponów - Ignore - + Ignore + Ignoruj - Abort - + Abort + Anuluj - Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + Różne liczby punktów wybrane w lewym i w prawym widoku. Na lewym widoku wybrano %1 punkt(ów) a na prawym widoku wybrano %2 punkt(ów). - Point picked at (%1,%2,%3) - + Point picked at (%1,%2,%3) + Wybrano punkt o współrzędnych (%1,%2,%3) - No point was picked - + No point was picked + Nie wybrano żadnego punktu - - + + Gui::NetworkRetriever - Download started... + Download started... - Rozpoczęto pobieranie... + Rozpoczęto pobieranie... - - + + Gui::ProgressBar - Remaining: %1 - Pozostało: %1 + Remaining: %1 + Pozostało: %1 - Aborting - Przerywanie + Aborting + Przerywanie - Do you really want to abort the operation? - Czy na pewno chcesz przerwać tę operację? + Do you really want to abort the operation? + Czy na pewno chcesz przerwać tę operację? - - + + Gui::ProgressDialog - Remaining: %1 - Pozostało: %1 + Remaining: %1 + Pozostało: %1 - Aborting - Przerywanie + Aborting + Przerywanie - Do you really want to abort the operation? - Czy na pewno chcesz przerwać tę operację? + Do you really want to abort the operation? + Czy na pewno chcesz przerwać tę operację? - - + + Gui::PropertyEditor::PropertyModel - Property - Właściwości + Property + Właściwości - Value - Wartość + Value + Wartość - - + + Gui::PropertyView - View - Widok + View + Widok - Data - Dane + Data + Dane - - + + Gui::PythonConsole - System exit - Wyjście z systemu + System exit + Wyjście z systemu - The application is still running. + The application is still running. Do you want to exit without saving your data? - Aplikacja jest wciąż działa. Czy chcesz wyjść bez zapisywania danych? + Aplikacja jest wciąż działa. Czy chcesz wyjść bez zapisywania danych? - Python console - Konsola Pythona + Python console + Konsola Pythona - Unhandled PyCXX exception. - Nieobsługiwany wyjątek PyCXX. + Unhandled PyCXX exception. + Nieobsługiwany wyjątek PyCXX. - Unhandled FreeCAD exception. - Nieobsługiwany wyjątek FreeCAD. + Unhandled FreeCAD exception. + Nieobsługiwany wyjątek FreeCAD. - Unhandled unknown C++ exception. - Nieobsługiwany nieznany wyjątek C++. + Unhandled unknown C++ exception. + Nieobsługiwany nieznany wyjątek C++. - &Copy command - &Kopiuj polecenie + &Copy command + &Kopiuj polecenie - &Copy history - &Kopiuj historię + &Copy history + &Kopiuj historię - Save history as... - Zapisz historię jako... + Save history as... + Zapisz historię jako... - Insert file name... - Wstaw nazwę pliku... + Insert file name... + Wstaw nazwę pliku... - Save History - Zapisz historię + Save History + Zapisz historię - Macro Files (*.FCMacro *.py) - Pliki makra (FCMacro *. *. py) + Macro Files (*.FCMacro *.py) + Pliki makra (FCMacro *. *. py) - Insert file name - Wstaw nazwę pliku + Insert file name + Wstaw nazwę pliku - All Files (*.*) - Wszystkie pliki (*.*) + All Files (*.*) + Wszystkie pliki (*.*) - Python Input Dialog - Okno dialogowe wejścia Pythona + Python Input Dialog + Okno dialogowe wejścia Pythona - Unhandled std C++ exception. - Unhandled std C++ exception. + Unhandled std C++ exception. + Nieobsługiwany wyjątek std C++. - Word wrap - Word wrap + Word wrap + Zawijanie wyrazów - &Copy - Kopiuj + &Copy + Kopiuj - &Paste - Wklej + &Paste + Wklej - Select All - Zaznacz wszystko + Select All + Zaznacz wszystko - Clear console - + Clear console + Wyczyść konsolę - - + + Gui::PythonEditor - Comment - Komentarz + Comment + Komentarz - Uncomment - Odkomentuj + Uncomment + Odkomentuj - - + + Gui::PythonInputField - OK - OK + OK + OK - Clear - Wyczyść + Clear + Wyczyść - - + + Gui::RecentFilesAction - Open file %1 - Otwórz plik %1 + Open file %1 + Otwórz plik %1 - File not found - Nie znaleziono pliku + File not found + Nie znaleziono pliku - The file '%1' cannot be opened. - Plik '%1' nie może być otwarty. + The file '%1' cannot be opened. + Plik '%1' nie może być otwarty. - - + + Gui::SelectModule - Select module - Wybierz moduł + Select module + Wybierz moduł - Open %1 as - Otwórz %1 jako + Open %1 as + Otwórz %1 jako - Select - Wybierz + Select + Wybierz - - + + Gui::StdCmdDescription - Help - Pomoc + Help + Pomoc - Des&cription - &Opis + Des&cription + &Opis - Long description of commands - Długi opis poleceń + Long description of commands + Długi opis poleceń - - + + Gui::StdCmdDownloadOnlineHelp - Help - Pomoc + Help + Pomoc - Download online help - Pobierz pomoc online + Download online help + Pobierz pomoc online - Download %1's online help - Pobierz %1 z pomocy online + Download %1's online help + Pobierz %1 z pomocy online - Non-existing directory - Katalog nie istnieje + Non-existing directory + Katalog nie istnieje - The directory '%1' does not exist. + The directory '%1' does not exist. Do you want to specify an existing directory? - Katalog '% 1' nie istnieje.Chcesz wybrać istniejący katalog? + Katalog '% 1' nie istnieje.Chcesz wybrać istniejący katalog? - Missing permission - Brak uprawnień + Missing permission + Brak uprawnień - You don't have write permission to '%1' + You don't have write permission to '%1' Do you want to specify another directory? - Nie masz uprawnienie do zapisu do '% 1' Czy chcesz określić inny katalog? + Nie masz uprawnienie do zapisu do '% 1' Czy chcesz określić inny katalog? - Stop downloading - Zatrzymanie pobierania + Stop downloading + Zatrzymanie pobierania - - + + Gui::StdCmdPythonHelp - Tools - Narzędzia + Tools + Narzędzia - Python Modules - Moduły Pythona + Python Modules + Moduły Pythona - Opens a browser to show the Python modules - Otwiera przeglądarkę, aby pokazać moduły Pythona + Opens a browser to show the Python modules + Otwiera przeglądarkę, aby pokazać moduły Pythona - - + + Gui::TaskBoxAngle - Angle - Kąt + Angle + Kąt - - + + Gui::TaskBoxPosition - Position - Position + Position + Pozycja - - + + Gui::TaskView::TaskAppearance - Display mode: - Tryb wyświetlania: + Plot mode: + Tryb kreślenia: - Plot mode: - Tryb kreślenia: + Point size: + Wielkość punktu: - Point size: - Wielkość punktu: + Line width: + Szerokość linii: - Line width: - Szerokość linii: + Transparency: + Przezroczystość: - Transparency: - Przezroczystość: + Appearance + Wygląd - Appearance - Wygląd + Document window: + Okno dokumentu: - - Document window: - - - - + + Gui::TaskView::TaskEditControl - Edit - Edytuj + Edit + Edytuj - - + + Gui::TaskView::TaskSelectLinkProperty - Appearance - Wygląd + Appearance + Wygląd - ... - ... + ... + ... - edit selection - edit selection + edit selection + Edytuj zaznaczenia - - + + Gui::TouchpadNavigationStyle - Press left mouse button - Naciśnij lewy przycisk myszy + Press left mouse button + Naciśnij lewy przycisk myszy - Press SHIFT button - + Press SHIFT button + Naciśnij przycisk SHIFT - Press ALT button - + Press ALT button + Naciśnij przycisk ALT - Press PgUp/PgDown button - + Press PgUp/PgDown button + Naciśnij klawisz PgUp/PgDown - - - Gui::Translator - - English - Angielski - - - + + Gui::TreeDockWidget - Tree view - Widok drzewa + Tree view + Widok drzewa - - + + Gui::TreeWidget - Create group... - Tworzenie grup... + Create group... + Tworzenie grup... - Create a group - Utwórz grupę + Create a group + Utwórz grupę - Group - Grupa + Group + Grupa - Rename - Zmień nazwę + Rename + Zmień nazwę - Rename object - Zmiana nazwy obiektu + Rename object + Zmiana nazwy obiektu - Labels & Attributes - Etykiety i atrybuty + Labels & Attributes + Etykiety i atrybuty - Application - Program + Application + Program - Finish editing - Finish editing + Finish editing + Zakończ edycję - Finish editing object - Finish editing object + Finish editing object + Zakończ edycję obiektu - Activate document - Activate document + Activate document + Uaktywnij dokument - Activate document %1 - Activate document %1 + Activate document %1 + Uaktywnij dokument %1 - - + + Gui::View3DInventor - Export PDF - Eksportuj do PDF + Export PDF + Eksportuj do PDF - PDF file (*.pdf) - plik PDF (*. pdf) + PDF file (*.pdf) + plik PDF (*. pdf) - - + + Gui::WorkbenchGroup - Select the '%1' workbench - Wybierz warsztat '%1' + Select the '%1' workbench + Wybierz warsztat '%1' - - + + Position - Form - Form + Form + Formularz - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - Z: + Z: + Z: - 0.1 mm - 0,1 mm + 0.1 mm + 0,1 mm - 0.5 mm - 0,5 mm + 0.5 mm + 0,5 mm - 1 mm - 1 mm + 1 mm + 1 mm - 2 mm - 2 mm + 2 mm + 2 mm - 5 mm - 5 mm + 5 mm + 5 mm - 10 mm - 10 mm + 10 mm + 10 mm - 20 mm - 20 mm + 20 mm + 20 mm - 50 mm - 50 mm + 50 mm + 50 mm - 100 mm - 100 mm + 100 mm + 100 mm - 200 mm - 200 mm + 200 mm + 200 mm - 500 mm - 500 mm + 500 mm + 500 mm - 1 m - 1 m + 1 m + 1 m - 2 m - 2 m + 2 m + 2 m - 5 m - 5 m + 5 m + 5 m - Grid Snap in - Grid Snap in + Grid Snap in + Przyciąganie do siatki - - + + QDockWidget - Tree view - Widok drzewa + Tree view + Widok drzewa - Property view - Właściwości widoku + Property view + Właściwości widoku - Selection view - Wybór widoku + Selection view + Wybór widoku - Report view - Widok raportu + Report view + Widok raportu - Task View - Widok zadań + Task View + Widok zadań - Combo View - Widok połączony + Combo View + Widok połączony - Toolbox - Przybornik + Toolbox + Przybornik - Python console - Konsola Pythona + Python console + Konsola Pythona - Display properties - Właściwości wyświetlania + Display properties + Właściwości wyświetlania - - + + QObject - General - Ogólne + General + Ogólne - Display - Wyświetlanie + Display + Wyświetlanie - Unknown filetype - Nieznany typ pliku + Unknown filetype + Nieznany typ pliku - Cannot open unknown filetype: %1 - Nie można otworzyć pliku nieznanego typu: %1 + Cannot open unknown filetype: %1 + Nie można otworzyć pliku nieznanego typu: %1 - Cannot save to unknown filetype: %1 - Nie można zapisać do pliku nieznanego typu: %1 + Cannot save to unknown filetype: %1 + Nie można zapisać do pliku nieznanego typu: %1 - Workbench failure - Awaria Warsztatu + Workbench failure + Awaria Warsztatu - %1 - %1 + %1 + %1 - Unable to launch Qt Assistant (%1) - Nie można uruchomić Qt Assistant (%1) + Unable to launch Qt Assistant (%1) + Nie można uruchomić Qt Assistant (%1) - Exception - Wyjątek + Exception + Wyjątek - Open document - Otwórz dokument + Open document + Otwórz dokument - Import file - Importuj plik + Import file + Importuj plik - Export file - Eksportuj plik + Export file + Eksportuj plik - Printing... - Drukowanie... + Printing... + Drukowanie... - Cannot load workbench - Nie można załadować warsztatu + Cannot load workbench + Nie można załadować warsztatu - A general error occurred while loading the workbench - Wystąpił błąd ogólny podczas ładowania warsztatu + A general error occurred while loading the workbench + Wystąpił błąd ogólny podczas ładowania warsztatu - File not found - Nie znaleziono pliku + Save views... + Zapisz widoki... - Cannot open file %1 - Nie można otworzyć pliku %1 + Load views... + Załaduj widoki... - Save views... - Zapisz widoki... + Freeze view + Zamróź widok - Load views... - Załaduj widoki... + Clear views + Wyczyść widoki - Freeze view - Zamróź widok + Restore view &%1 + Przywróć widok &%1 - Clear views - Wyczyść widoki + Save frozen views + Zapisz zamrożone widoki - Restore view &%1 - Przywróć widok &%1 + Frozen views (*.cam) + Zamrożone widoki (*.cam) - Save frozen views - Zapisz zamrożone widoki + Restore views + Przywróć widoki - Frozen views (*.cam) - Zamrożone widoki (*.cam) - - - Restore views - Przywróć widoki - - - Importing the restored views would clear the already stored views. + Importing the restored views would clear the already stored views. Do you want to continue? - Importowanie przywróconych widoków wyczyści już przechowywane widoki. Czy chcesz kontynuować? + Importowanie przywróconych widoków wyczyści już przechowywane widoki. Czy chcesz kontynuować? - Restore frozen views - Przywracanie zamrożonego Widoku + Restore frozen views + Przywracanie zamrożonego Widoku - Cannot open file '%1'. - Nie można otworzyć pliku '%1'. + Cannot open file '%1'. + Nie można otworzyć pliku '%1'. - Docked - Zadokowany + Docked + Zadokowany - Undocked - Niezadokowany + Undocked + Niezadokowany - Fullscreen - Pełny ekran + Fullscreen + Pełny ekran - files - pliki + files + pliki - Save picture - Zapisz obrazek + Save picture + Zapisz obrazek - New sub-group - Nowe podgrupy + New sub-group + Nowe podgrupy - Enter the name: - Wprowadź nazwę: + Enter the name: + Wprowadź nazwę: - New text item - Nowy obiekt tekstowy + New text item + Nowy obiekt tekstowy - Enter your text: - Wprowadź tekst: + Enter your text: + Wprowadź tekst: - New integer item - Nowy obiekt liczby całkowitej + New integer item + Nowy obiekt liczby całkowitej - Enter your number: - Wpisz liczbę: + Enter your number: + Wpisz liczbę: - New unsigned item - New unsigned item + New unsigned item + Nowy nieoznaczony element - New float item - Nowy obiekt liczby zmiennoprzecinkowej + New float item + Nowy obiekt liczby zmiennoprzecinkowej - New Boolean item - Nowy obiekt Boolean + New Boolean item + Nowy obiekt Boolean - Choose an item: - Wybierz obiekt: + Choose an item: + Wybierz obiekt: - Rename group - Zmień nazwę grupy + Rename group + Zmień nazwę grupy - The group '%1' cannot be renamed. - Nie można zmienić nazwy Grupy %1. + The group '%1' cannot be renamed. + Nie można zmienić nazwy Grupy %1. - Existing group - Grupa istniejąca + Existing group + Grupa istniejąca - The group '%1' already exists. - Już istnieje Grupa %1. + The group '%1' already exists. + Już istnieje Grupa %1. - Change value - Zmień wartość + Change value + Zmień wartość - Save document under new filename... - Zapisz dokument pod nową nazwę pliku ... + Save document under new filename... + Zapisz dokument pod nową nazwę pliku ... - Saving aborted - Zapisywanie przerwane + Saving aborted + Zapisywanie przerwane - Unsaved document - Niezapisany dokument + Unsaved document + Niezapisany dokument - Save document before close? - Zapisać dokument przed zamknięciem? + Save document before close? + Zapisać dokument przed zamknięciem? - Save Macro - Zapisz makro + Save Macro + Zapisz makro - Finish - Zakończ + Finish + Zakończ - Clear - Wyczyść + Clear + Wyczyść - Cancel - Anuluj + Cancel + Anuluj - Inner - Wewnętrzny + Inner + Wewnętrzny - Outer - Zewnętrzny + Outer + Zewnętrzny - No Browser - Brak przeglądarki + No Browser + Brak przeglądarki - Unable to open your browser. + Unable to open your browser. Please open a browser window and type in: http://localhost:%1. - Nie można otworzyć przeglądarki. Proszę otworzyć okno przeglądarki i wpisać: http://localhost:% 1. + Nie można otworzyć przeglądarki. Proszę otworzyć okno przeglądarki i wpisać: http://localhost:% 1. - No Server - Brak serwera + No Server + Brak serwera - Unable to start the server to port %1: %2. - Nie można uruchomić serwera na porcie %1: %2. + Unable to start the server to port %1: %2. + Nie można uruchomić serwera na porcie %1: %2. - Unable to open your system browser. - Nie można otworzyć przeglądarki systemowej. + Unable to open your system browser. + Nie można otworzyć przeglądarki systemowej. - Options... - Opcje... + Options... + Opcje... - Out of memory - Brak pamięci + Out of memory + Brak pamięci - Not enough memory available to display the data. - Za mało pamięci, aby wyświetlić dane. + Not enough memory available to display the data. + Za mało pamięci, aby wyświetlić dane. - Cannot find file %1 - Pliku %1 nie znaleziono + Cannot find file %1 + Pliku %1 nie znaleziono - Cannot find file %1 neither in %2 nor in %3 - Nie znaleziono pliku %1 w %2, ani w %3 + Cannot find file %1 neither in %2 nor in %3 + Nie znaleziono pliku %1 w %2, ani w %3 - Save %1 Document - Zapis Dokumentu %1. + Save %1 Document + Zapis Dokumentu %1. - %1 document (*.FCStd) - Dokument %1 (*.FCStd) + %1 document (*.FCStd) + Dokument %1 (*.FCStd) - Save As - Zapisz jako + Save As + Zapisz jako - %1 already exists. + %1 already exists. Do you want to replace it? - %1 już istnieje. Czy chcesz go zastąpić? + %1 już istnieje. Czy chcesz go zastąpić? - Document not closable - Nie można zamknąć Dokumentu + Document not closable + Nie można zamknąć Dokumentu - The document is not closable for the moment. - Nie można zamknąć dokumentu w tym momencie. + The document is not closable for the moment. + Nie można zamknąć dokumentu w tym momencie. - No OpenGL - No OpenGL + No OpenGL + Nie ma OpenGL - This system does not support OpenGL - Ten system nie obsługuje OpenGL + This system does not support OpenGL + Ten system nie obsługuje OpenGL - Help - Pomoc + Help + Pomoc - Unable to load documentation. + Unable to load documentation. In order to load it Qt 4.4 or higher is required. - Nie można załadować dokumentacji. Wymagany Qt 4.4 lub nowszy. + Nie można załadować dokumentacji. Wymagany Qt 4.4 lub nowszy. - %1 Help - %1 - Pomoc + %1 Help + %1 - Pomoc - Exporting PDF... - Exporting PDF... + Exporting PDF... + Eksportowanie PDF'a... - Wrong selection - Niewłaściwy wybór + Wrong selection + Niewłaściwy wybór - Only one object selected. Please select two objects. + Only one object selected. Please select two objects. Be aware the point where you click matters. - Tylko jeden przedmiot wybrany. Proszę wybrać dwa obiekty. Pamiętaj, miejsce w którym klikasz ma znaczenie. + Tylko jeden przedmiot wybrany. Proszę wybrać dwa obiekty. Pamiętaj, miejsce w którym klikasz ma znaczenie. - Please select two objects. + Please select two objects. Be aware the point where you click matters. - Proszę wybrać dwa obiekty. Pamiętaj, miejsce w którym klikasz ma znaczenie. + Proszę wybrać dwa obiekty. Pamiętaj, miejsce w którym klikasz ma znaczenie. - New boolean item - New boolean item + New boolean item + Nowy obiekt Boolean - Navigation styles - Style nawigacji + Navigation styles + Style nawigacji - %1 navigation - %1 navigation + %1 navigation + %1 nawigacji - Move annotation - Przenieść adnotację + Move annotation + Przenieść adnotację - Transform - Przekształć + Transform + Przekształć - The document is in editing mode and thus cannot be closed for the moment. + The document is in editing mode and thus cannot be closed for the moment. You either have to finish or cancel the editing in the task panel. - The document is in editing mode and thus cannot be closed for the moment. -You either have to finish or cancel the editing in the task panel. + Dokument jest w trybie edycji, a zatem nie może być zamknięty w tej chwili. Musisz zakończyć albo anulować tryb edycji w panelu zadań. - - + + StdBoxSelection - Standard-View - Normalny widok + Standard-View + Normalny widok - Box selection - + Box selection + Pole wyboru - - + + StdCmdAbout - Help - Pomoc + Help + Pomoc - &About %1 - &Informacje o %1 + &About %1 + &Informacje o %1 - About %1 - O %1 + About %1 + O %1 - - + + StdCmdAboutQt - Help - Pomoc + Help + Pomoc - About &Qt - Informacje o &Qt + About &Qt + Informacje o &Qt - About Qt - O Qt + About Qt + O Qt - - + + StdCmdActivateNextWindow - Window - Okno + Window + Okno - Ne&xt - Dalej + Ne&xt + Dalej - Activate next window - Uaktywnij następne okno + Activate next window + Uaktywnij następne okno - - + + StdCmdActivatePrevWindow - Window - Okno + Window + Okno - Pre&vious - Wstecz + Pre&vious + Wstecz - Activate previous window - Uaktywnij poprzednie okno + Activate previous window + Uaktywnij poprzednie okno - - + + StdCmdAlignment - Edit - Edytuj + Edit + Edytuj - Alignment... - + Alignment... + Wyrównanie... - Align the selected objects - + Align the selected objects + Wyrównaj zaznaczone obiekty - - + + StdCmdArrangeIcons - Window - Okno + Window + Okno - Arrange &Icons - Arrange &Icons + Arrange &Icons + Rozmieszczanie &Ikon - Arrange Icons - Rozmieść ikony + Arrange Icons + Rozmieść ikony - - + + StdCmdAxisCross - Standard-View - Normalny widok + Standard-View + Normalny widok - Toggle axis cross - Toggle axis cross + Toggle axis cross + Przełącz oś przekroju - - + + StdCmdCascadeWindows - Window - Okno + Window + Okno - &Cascade - &Cascade + &Cascade + & Kaskadowo - Tile pragmatic - Tile pragmatic + Tile pragmatic + Płytka pragmatyczne - - + + StdCmdCloseActiveWindow - Window - Okno + Window + Okno - Cl&ose - ZAMKNIJ + Cl&ose + ZAMKNIJ - Close active window - Zamknij aktywne okno + Close active window + Zamknij aktywne okno - - + + StdCmdCloseAllWindows - Window - Okno + Window + Okno - Close Al&l - Close Al&l + Close Al&l + Zamknij wszystkie - Close all windows - Zamknij wszystkie okna + Close all windows + Zamknij wszystkie okna - - + + StdCmdCommandLine - Tools - Narzędzia + Tools + Narzędzia - Start command &line... - &Linia poleceń... + Start command &line... + &Linia poleceń... - Opens the command line in the console - Otwiera wiersz poleceń w konsoli + Opens the command line in the console + Otwiera wiersz poleceń w konsoli - - + + StdCmdCopy - Edit - Edytuj + Edit + Edytuj - C&opy - C&opy + C&opy + K&opiuj - Copy operation - Skopiuj operację + Copy operation + Skopiuj operację - - + + StdCmdCut - Edit - Edytuj + Edit + Edytuj - &Cut - Wytnij + &Cut + Wytnij - Cut out - Wytnij + Cut out + Wytnij - - - StdCmdDDuplicateSelection - - Edit - Edytuj - - - Duplicate selection - Powiel zaznaczone - - - Put duplicates of the selected objects to the active document - Umieść kopie wybranych obiektów do aktywnego dokumentu - - - + + StdCmdDelete - Edit - Edytuj + Edit + Edytuj - &Delete - Usuń + &Delete + Usuń - Deletes the selected objects - Usuwa zaznaczone obiekty + Deletes the selected objects + Usuwa zaznaczone obiekty - - + + StdCmdDemoMode - Standard-View - Normalny widok + Standard-View + Normalny widok - View turntable... - View turntable... + View turntable... + Widok obrotowy... - View turntable - View turntable + View turntable + Widok obrotowy - - + + StdCmdDlgCustomize - Tools - Narzędzia + Tools + Narzędzia - Cu&stomize... - Dostosuj... + Cu&stomize... + Dostosuj... - Customize toolbars and command bars - Dostosuj paski narzędzi i paski poleceń + Customize toolbars and command bars + Dostosuj paski narzędzi i paski poleceń - - + + StdCmdDlgMacroExecute - Macros ... - Makra ... + Macros ... + Makra ... - Opens a dialog to let you execute a recorded macro - Pozwala wykonać zarejestrowane makro + Opens a dialog to let you execute a recorded macro + Otwiera okno dialogowe umożliwiające uruchomienie nagranego makra - Macro - Makro + Macro + Makro - - + + StdCmdDlgMacroExecuteDirect - Macro - Makro + Macro + Makro - Execute macro - Wykonaj makro + Execute macro + Wykonaj makro - Execute the macro in the editor - Wykonaj makro w edytorze + Execute the macro in the editor + Wykonaj makro w edytorze - - + + StdCmdDlgMacroRecord - &Macro recording ... - &Macro recording ... + &Macro recording ... + Rejestrowanie &Makr... - Opens a dialog to record a macro - Rejestruje makro + Opens a dialog to record a macro + Rejestruje makro - Macro - Makro + Macro + Makro - - + + StdCmdDlgParameter - Tools - Narzędzia + Tools + Narzędzia - E&dit parameters ... - E&dycja parametrów + E&dit parameters ... + E&dycja parametrów - Opens a Dialog to edit the parameters - Edytuje parametry + Opens a Dialog to edit the parameters + Edytuje parametry - - + + StdCmdDlgPreferences - Tools - Narzędzia + Tools + Narzędzia - &Preferences ... - &Preferencje + &Preferences ... + &Preferencje - Opens a Dialog to edit the preferences - Zmienia preferencje + Opens a Dialog to edit the preferences + Zmienia preferencje - - + + StdCmdDockViewMenu - View - Widok + View + Widok - Vie&ws - W&idoki + Vie&ws + W&idoki - Toggles this window - Toggles this window + Toggles this window + Włącz/wyłącz to okno - - + + StdCmdDrawStyle - Standard-View - Normalny widok + Standard-View + Normalny widok - Draw style - Draw style + Draw style + Styl Draw - - + + StdCmdDuplicateSelection - Edit - Edytuj + Edit + Edytuj - Duplicate selection - Powiel zaznaczone + Duplicate selection + Powiel zaznaczone - Put duplicates of the selected objects to the active document - Umieść kopie wybranych obiektów do aktywnego dokumentu + Put duplicates of the selected objects to the active document + Umieść kopie wybranych obiektów do aktywnego dokumentu - - + + StdCmdEdit - Edit - Edytuj + Edit + Edytuj - Toggle &Edit mode - + Toggle &Edit mode + Przełącz tryb &Edycji - Toggles the selected object's edit mode - + Toggles the selected object's edit mode + Przełącza tryb edycji zaznaczonego obiektu - Enters or leaves the selected object's edit mode - + Enters or leaves the selected object's edit mode + Wejście lub wyjście do trybu edycji zaznaczonego obiektu - - + + StdCmdExport - File - Plik + File + Plik - &Export... - Eksportuj... + &Export... + Eksportuj... - Export an object in the active document - Eksport obiektu w aktywnym dokumencie + Export an object in the active document + Eksport obiektu w aktywnym dokumencie - Supported formats - Obsługiwane formaty + No selection + Brak wyboru - No selection - + Please select first the objects you want to export. + Najpierw wybierz obiekty, które chcesz wyeksportować. - - Please select first the objects you want to export. - - - - + + StdCmdExportGraphviz - Tools - Narzędzia + Tools + Narzędzia - Dependency graph... - + Dependency graph... + Wykres zależności... - Show the dependency graph of the objects in the active document - + Show the dependency graph of the objects in the active document + Pokaż wykres zależności obiektów w aktywnym dokumencie - - + + StdCmdFeatRecompute - File - Plik + File + Plik - &Recompute - & Przelicz + &Recompute + & Przelicz - Recompute feature or document - Recompute feature or document + Recompute feature or document + Ponowne obliczenie funkcji lub dokumentu - - + + StdCmdFreeCADWebsite - Help - Pomoc + Help + Pomoc - FreeCAD Website - Strona FreeCAD + FreeCAD Website + Strona FreeCAD - The FreeCAD website - Na stronie FreeCAD + The FreeCAD website + Na stronie FreeCAD - - + + StdCmdFreezeViews - Standard-View - Normalny widok + Standard-View + Normalny widok - Freeze display - Freeze display + Freeze display + Zamroź obraz - Freezes the current view position - Zamraża bieżący Widok + Freezes the current view position + Zamraża bieżący Widok - - + + StdCmdHideObjects - Standard-View - Normalny widok + Standard-View + Normalny widok - Hide all objects - Ukryj wszystkie obiekty + Hide all objects + Ukryj wszystkie obiekty - Hide all objects in the document - Hide all objects in the document + Hide all objects in the document + Ukryj wszystkie obiekty w dokumencie - - + + StdCmdHideSelection - Standard-View - Normalny widok + Standard-View + Normalny widok - Hide selection - Ukryj zaznaczone + Hide selection + Ukryj zaznaczone - Hide all selected objects - Ukryj wszystkie zaznaczone obiekty + Hide all selected objects + Ukryj wszystkie zaznaczone obiekty - - + + StdCmdImport - File - Plik + File + Plik - &Import... - &Import... + &Import... + &Importuj... - Import a file in the active document - Import pliku do aktywnego dokumentu + Import a file in the active document + Import pliku do aktywnego dokumentu - Supported formats - Obsługiwane formaty + Supported formats + Obsługiwane formaty - All files (*.*) - Wszystkie pliki (*.*) + All files (*.*) + Wszystkie pliki (*.*) - - + + StdCmdMacroStartDebug - Macro - Makro + Macro + Makro - Debug macro - Debug macro + Debug macro + Debugowanie makra - Start debugging of macro - Start debugging of macro + Start debugging of macro + Uruchom debugowanie makra - - + + StdCmdMacroStepOver - Macro - Makro + Macro + Makro - Step over - Step over + Step over + Przejdź - - + + StdCmdMacroStopDebug - Macro - Makro + Macro + Makro - Stop debugging - Stop debugging + Stop debugging + Zatrzymaj debugowanie - Stop debugging of macro - Stop debugging of macro + Stop debugging of macro + Zatrzymaj debugowanie makra - - + + StdCmdMacroStopRecord - Macro - Makro + Macro + Makro - S&top macro recording - Z&atrzymaj nagrywanie makra + S&top macro recording + Z&atrzymaj nagrywanie makra - Stop the macro recording session - Stop the macro recording session + Stop the macro recording session + Zakończ sesję nagrywania makra - - + + StdCmdMeasureDistance - View - Widok + View + Widok - Measure distance - Pomiar odległości + Measure distance + Pomiar odległości - - + + StdCmdMeasurementSimple - Tools - Narzędzia + Tools + Narzędzia - Mesure distance - Zmierz odległość + Measures distance between two selected objects + Zmierz odległość między dwoma wybranymi obiektami - Measures distance between two selected objects - Zmierz odległość między dwoma wybranymi obiektami + Measure distance + Pomiar odległości - - Measure distance - Pomiar odległości - - - + + StdCmdMergeProjects - File - Plik + File + Plik - Merge project... - Merge project... + Merge project... + Scal projekt... - Merge project - Merge project + Merge project + Scal projekt - %1 document (*.fcstd) - %1 document (*.fcstd) + %1 document (*.fcstd) + %1 dokument (*.fcstd) - Cannot merge project with itself. - Cannot merge project with itself. + Cannot merge project with itself. + Nie można scalić projektu z samym sobą. - - + + StdCmdNew - File - Plik + File + Plik - &New - &Nowy + &New + &Nowy - Create a new empty document - Utwórz nowy pusty dokument + Create a new empty document + Utwórz nowy pusty dokument - - + + StdCmdOnlineHelp - Help - Pomoc + Help + Pomoc - Show help to the application - Pomoc + Show help to the application + Pomoc - - - StdCmdOnlineHelpPython - - Help - Pomoc - - - Python Manuals - Podręczniki Python - - - Show the Python documentation - Pokaż dokumentację Pythona - - - + + StdCmdOnlineHelpWebsite - Help - Pomoc + Help + Pomoc - Help Website - Strona www pomocy + Help Website + Strona www pomocy - The website where the help is maintained - Strona, gdzie pomoc jest utrzymywana + The website where the help is maintained + Strona, gdzie pomoc jest utrzymywana - - + + StdCmdOpen - File - Plik + File + Plik - &Open... - &Otwórz + &Open... + &Otwórz - Open a document or import files - Otwórz dokument lub importuj pliki + Open a document or import files + Otwórz dokument lub importuj pliki - Supported formats - Obsługiwane formaty + Supported formats + Obsługiwane formaty - All files (*.*) - Wszystkie pliki (*.*) + All files (*.*) + Wszystkie pliki (*.*) - - + + StdCmdPaste - Edit - Edytuj + Edit + Edytuj - &Paste - Wklej + &Paste + Wklej - Paste operation - Wklej operację + Paste operation + Wklej operację - - + + StdCmdPlacement - Edit - Edytuj + Edit + Edytuj - Placement... - Placement... + Placement... + Położenie... - Place the selected objects - Umieść wybrany obiekt + Place the selected objects + Umieść wybrany obiekt - - + + StdCmdPrint - File - Plik + File + Plik - &Print... - &Drukuj + &Print... + &Drukuj - Print the document - Wydrukuj dokument + Print the document + Wydrukuj dokument - - + + StdCmdPrintPdf - File - Plik + File + Plik - &Export PDF... - &Eksport PDF + &Export PDF... + &Eksport PDF - Export the document as PDF - Wyeksportuj dokument jako PDF + Export the document as PDF + Wyeksportuj dokument jako PDF - - + + StdCmdPrintPreview - File - Plik + File + Plik - &Print preview... - &Print preview... + &Print preview... + &Podgląd wydruku... - Print the document - Wydrukuj dokument + Print the document + Wydrukuj dokument - Print preview - Print preview + Print preview + Podgląd wydruku - - + + StdCmdProjectInfo - File - Plik + File + Plik - Project i&nformation... - Informacja o projekcie + Project i&nformation... + Informacja o projekcie - Show details of the currently active project - Pokaż szczegóły aktualnie aktywnego projektu + Show details of the currently active project + Pokaż szczegóły aktualnie aktywnego projektu - - + + StdCmdProjectUtil - Tools - Narzędzia + Tools + Narzędzia - Project utility... - Project utility... + Project utility... + Narzędzia projektu... - Utility to extract or create project files - Utility to extract or create project files + Utility to extract or create project files + Narzędzie do wyodrębnienia lub tworzenia plików projektu w programie - - + + StdCmdPythonWebsite - Help - Pomoc + Help + Pomoc - Python Website - Witryna Pythona + Python Website + Witryna Pythona - The official Python website - Oficjalna witryna Pythona + The official Python website + Oficjalna witryna Pythona - - + + StdCmdQuit - File - Plik + File + Plik - E&xit - W&yjście + E&xit + W&yjście - Quits the application - Zamyka program + Quits the application + Zamyka program - - + + StdCmdRandomColor - File - Plik + File + Plik - Random color - Kolor losowy + Random color + Kolor losowy - - + + StdCmdRecentFiles - File - Plik + File + Plik - Recent files - Ostatnie pliki + Recent files + Ostatnie pliki - Recent file list - Ostatnio otwierane + Recent file list + Ostatnio otwierane - - + + StdCmdRedo - Edit - Edytuj + Edit + Edytuj - &Redo - &Cofnij + &Redo + &Cofnij - Redoes a previously undone action - Wykonuje ponownie poprzednio cofniętą czynność + Redoes a previously undone action + Wykonuje ponownie poprzednio cofniętą czynność - - + + StdCmdRefresh - Edit - Edytuj + Edit + Edytuj - &Refresh - &Refresh + &Refresh + &Odśwież - Recomputes the current active document - Recomputes the current active document + Recomputes the current active document + Ponownie obliczenie bieżącego aktywnego dokumentu - - + + StdCmdSave - File - Plik + File + Plik - &Save - &Zapisz + &Save + &Zapisz - Save the active document - Zapisz aktywny dokument + Save the active document + Zapisz aktywny dokument - - + + StdCmdSaveAs - File - Plik + File + Plik - Save &As... - Zapisz &jako + Save &As... + Zapisz &jako - Save the active document under a new file name - Zapisuje aktywny dokument pod nową nazwą + Save the active document under a new file name + Zapisuje aktywny dokument pod nową nazwą - - + + StdCmdSceneInspector - Tools - Narzędzia + Tools + Narzędzia - Scene inspector... - Inspektor sceny... + Scene inspector... + Inspektor sceny... - Scene inspector - Scene inspector + Scene inspector + Inspektor sceny - - + + StdCmdSelectAll - Edit - Edytuj + Edit + Edytuj - Select &All - Zaznacz &Wszystko + Select &All + Zaznacz &Wszystko - Select all - Zaznacz wszystko + Select all + Zaznacz wszystko - - + + StdCmdSetAppearance - Standard-View - Normalny widok + Standard-View + Normalny widok - Appearance... - Wygląd... + Appearance... + Wygląd... - Sets the display properties of the selected object - Ustawia właściwości wyświetlania wybranego obiektu + Sets the display properties of the selected object + Ustawia właściwości wyświetlania wybranego obiektu - - + + StdCmdShowObjects - Standard-View - Normalny widok + Standard-View + Normalny widok - Show all objects - Pokaż wszystkie obiekty + Show all objects + Pokaż wszystkie obiekty - Show all objects in the document - Pokaż wszystkie obiekty w dokumencie + Show all objects in the document + Pokaż wszystkie obiekty w dokumencie - - + + StdCmdShowSelection - Standard-View - Normalny widok + Standard-View + Normalny widok - Show selection - Pokaż zaznaczone + Show selection + Pokaż zaznaczone - Show all selected objects - Pokaż wszystkie zaznaczone obiekty + Show all selected objects + Pokaż wszystkie zaznaczone obiekty - - + + StdCmdStatusBar - View - Widok + View + Widok - Status bar - Pasek stanu + Status bar + Pasek stanu - Toggles the status bar - Toggles the status bar + Toggles the status bar + Włącz/Wyłącz pasek stanu - - + + StdCmdTextureMapping - Tools - Narzędzia + Tools + Narzędzia - Texture mapping... - Texture mapping... + Texture mapping... + Mapowanie tekstury... - Texture mapping - Texture mapping + Texture mapping + Mapowanie tekstury - - + + StdCmdTileWindows - Window - Okno + Window + Okno - &Tile - &Tile + &Tile + & Sąsiadująco - Tile the windows - Okna sąsiadująco + Tile the windows + Okna sąsiadująco - - + + StdCmdToggleBreakpoint - Macro - Makro + Macro + Makro - Toggle breakpoint - Toggle breakpoint + Toggle breakpoint + Przełącz punkt przerwania - - + + StdCmdToggleClipPlane - Standard-View - Normalny widok + Standard-View + Normalny widok - Clipping plane - Płaszczyzna tnąca + Clipping plane + Płaszczyzna tnąca - Toggles clipping plane for active view - Toggles clipping plane for active view + Toggles clipping plane for active view + Przełącza przycinania płaszczyzny dla aktywnego widoku - - + + StdCmdToggleNavigation - Standard-View - Normalny widok + Standard-View + Normalny widok - Toggle navigation/Edit mode - Toggle navigation/Edit mode + Toggle navigation/Edit mode + Przełącz tryb nawigacji/edycji - Toggle between navigation and edit mode - Toggle between navigation and edit mode + Toggle between navigation and edit mode + Przełączanie między trybem nawigacji i edycji - - + + StdCmdToggleObjects - Standard-View - Normalny widok + Standard-View + Normalny widok - Toggle all objects - Toggle all objects + Toggle all objects + Odwróć widoczność wszystkich obiektów - Toggles visibility of all objects in the active document - Włącza widoczność wszystkich obiektów w aktywnym dokumencie + Toggles visibility of all objects in the active document + Odwraca widoczność wszystkich obiektów w aktywnym dokumencie - - + + StdCmdToggleSelectability - Standard-View - Normalny widok + Standard-View + Normalny widok - Toggle selectability - Toggle selectability + Toggle selectability + Przełącznik wyboru - Toggles the property of the objects to get selected in the 3D-View - Toggles the property of the objects to get selected in the 3D-View + Toggles the property of the objects to get selected in the 3D-View + Przełącza własność obiektów, aby uzyskać wybrany obiekt w widoku 3D - - + + StdCmdToggleVisibility - Standard-View - Normalny widok + Standard-View + Normalny widok - Toggle visibility - Toggle visibility + Toggle visibility + Pokaż / Ukryj - Toggles visibility - Toggles visibility + Toggles visibility + Przełącza widoczność - - + + StdCmdToolBarMenu - View - Widok + View + Widok - Tool&bars - Paski narzędzi + Tool&bars + Paski narzędzi - Toggles this window - Toggles this window + Toggles this window + Włącz/wyłącz to okno - - + + StdCmdTransform - Edit - Edytuj + Edit + Edytuj - Transform... - Transform... + Transform... + Przekształcanie... - Transform the geometry of selected objects - Przekształć geometrię wybranych obiektów + Transform the geometry of selected objects + Przekształć geometrię wybranych obiektów - - + + StdCmdTreeSelection - View - Widok + View + Widok - Go to selection - Go to selection + Go to selection + Przejdź do wyboru - Scroll to first selected item - Przejdź do pierwszego zaznaczonego elementu + Scroll to first selected item + Przejdź do pierwszego zaznaczonego elementu - - + + StdCmdUndo - Edit - Edytuj + Edit + Edytuj - &Undo - Cofnij + &Undo + Cofnij - Undo exactly one action - Undo exactly one action + Undo exactly one action + Cofnij dokładnie jedną czynność - - + + StdCmdUserInterface - View - Widok + View + Widok - Dock views - Dock views + Dock views + Widoki stacji dokującej - Dock all top-level views - Dock all top-level views + Dock all top-level views + Zadokuj wszystkie widoki najwyższego poziomu - - + + StdCmdViewAxo - Standard-View - Normalny widok + Standard-View + Normalny widok - Axometric - Aksonometria + Axometric + Aksonometria - Set to axometric view - Set to axometric view + Set to axometric view + Ustaw widok aksonometryczny - - + + StdCmdViewBottom - Standard-View - Normalny widok + Standard-View + Normalny widok - Bottom - Bottom + Bottom + U dołu - Set to bottom view - Set to bottom view + Set to bottom view + Ustaw widok z dołu - - + + StdCmdViewCreate - Standard-View - Normalny widok + Standard-View + Normalny widok - Create new view - Utwórz nowy widok + Create new view + Utwórz nowy widok - Creates a new view window for the active document - Creates a new view window for the active document + Creates a new view window for the active document + Tworzy nowe okno widoku aktywnego dokumentu - - + + StdCmdViewExample1 - Standard-View - Normalny widok + Standard-View + Normalny widok - Inventor example #1 - Inventor example #1 + Inventor example #1 + Inventor Przykład #1 - Shows a 3D texture with manipulator - Shows a 3D texture with manipulator + Shows a 3D texture with manipulator + Pokazuje trójwymiarową teksturę z manipulatorem - - + + StdCmdViewExample2 - Standard-View - Normalny widok + Standard-View + Normalny widok - Inventor example #2 - Inventor example #2 + Inventor example #2 + Inventor Przykład #2 - Shows spheres and drag-lights - Shows spheres and drag-lights + Shows spheres and drag-lights + Pokazuje sfery oraz przeciągane oświetlenie - - + + StdCmdViewExample3 - Standard-View - Normalny widok + Standard-View + Normalny widok - Inventor example #3 - Inventor example #3 + Inventor example #3 + Inventor Przykład #3 - Shows a animated texture - Pokaż animowaną teksturę + Shows a animated texture + Pokaż animowaną teksturę - - + + StdCmdViewFitAll - Standard-View - Normalny widok + Standard-View + Normalny widok - Fit all - Dopasuj wszystko + Fit all + Dopasuj wszystko - Fits the whole content on the screen - Dopasuj zawartość ekranu do Widoku + Fits the whole content on the screen + Dopasuj rozmiar do okna - - + + StdCmdViewFitSelection - Standard-View - Normalny widok + Standard-View + Normalny widok - Fit selection - Dopasuj Widok + Fit selection + Dopasuj Widok - Fits the selected content on the screen - Dopasuj widok do zaznaczenia + Fits the selected content on the screen + Dopasuj widok do zaznaczenia - - + + StdCmdViewFront - Standard-View - Normalny widok + Standard-View + Normalny widok - Front - Przód + Front + Przód - Set to front view - Ustaw Widok z przodu + Set to front view + Ustaw widok z przodu - - + + StdCmdViewIvIssueCamPos - Standard-View - Normalny widok + Standard-View + Normalny widok - Issue camera position - Issue camera position + Issue camera position + Problem z położeniem kamery - Issue the camera position to the console and to a macro, to easily recall this position - Issue the camera position to the console and to a macro, to easily recall this position + Issue the camera position to the console and to a macro, to easily recall this position + Wydanie położenia kamery do konsoli i makra, aby łatwo przypominają to stanowisko - - + + StdCmdViewIvStereoInterleavedColumns - Standard-View - Normalny widok + Standard-View + Normalny widok - Stereo Interleaved Columns - Stereo Interleaved Columns + Stereo Interleaved Columns + Widok z przeplotem kolumn - Switch stereo viewing to Interleaved Columns - Switch stereo viewing to Interleaved Columns + Switch stereo viewing to Interleaved Columns + Przełączyć wyświetlany widok z przeplotem kolumn - - + + StdCmdViewIvStereoInterleavedRows - Standard-View - Normalny widok + Standard-View + Normalny widok - Stereo Interleaved Rows - Stereo Interleaved Rows + Stereo Interleaved Rows + Widok z przeplotem wierszy - Switch stereo viewing to Interleaved Rows - Switch stereo viewing to Interleaved Rows + Switch stereo viewing to Interleaved Rows + Przełączyć wyświetlanie widok z przeplotem wierszy - - + + StdCmdViewIvStereoOff - Standard-View - Normalny widok + Standard-View + Normalny widok - Stereo Off - Wyłącz Stereo + Stereo Off + Wyłącz Stereo - Switch stereo viewing off - Switch stereo viewing off + Switch stereo viewing off + Przełącznik widoku wyświetlanie wyłączone - - + + StdCmdViewIvStereoQuadBuff - Standard-View - Normalny widok + Standard-View + Normalny widok - Stereo quad buffer - Stereo quad buffer + Stereo quad buffer + Widok buforu czterordzeniowy - Switch stereo viewing to quad buffer - Switch stereo viewing to quad buffer + Switch stereo viewing to quad buffer + Przełączyć wyświetlanie widoku do buforu czterordzeniowy - - + + StdCmdViewIvStereoRedGreen - Standard-View - Normalny widok + Standard-View + Normalny widok - Stereo red/green - Stereo czerwono-zielone + Stereo red/green + Stereo czerwono-zielone - Switch stereo viewing to red/green - Switch stereo viewing to red/green + Switch stereo viewing to red/green + Przełączyć wyświetlanie widoku czerwony/zielony - - + + StdCmdViewLeft - Standard-View - Normalny widok + Standard-View + Normalny widok - Left - Lewa + Left + Lewa - Set to left view - Ustaw widok z lewej + Set to left view + Ustaw widok z lewej - - + + StdCmdViewRear - Standard-View - Normalny widok + Standard-View + Normalny widok - Rear - Tył + Rear + Tył - Set to rear view - Ustaw widok z tyłu + Set to rear view + Ustaw widok z tyłu - - + + StdCmdViewRight - Standard-View - Normalny widok + Standard-View + Normalny widok - Right - Prawa + Right + Prawo - Set to right view - Ustaw widok z prawej + Set to right view + Ustaw widok z prawej - - + + StdCmdViewRotateLeft - Standard-View - Normalny widok + Standard-View + Normalny widok - Rotate Left - + Rotate Left + Obrócić w lewo - Rotate the view by 90° counter-clockwise - + Rotate the view by 90° counter-clockwise + Obrócić widok o 90 ° w lewo - - + + StdCmdViewRotateRight - Standard-View - Normalny widok + Standard-View + Normalny widok - Rotate Right - + Rotate Right + Obróć w prawo - Rotate the view by 90° clockwise - + Rotate the view by 90° clockwise + Obróć o 90° zgodnie z ruchem wskazówek - - + + StdCmdViewTop - Standard-View - Normalny widok + Standard-View + Normalny widok - Top - Góra + Top + Góra - Set to top view - Ustaw widok z góry + Set to top view + Ustaw widok z góry - - + + StdCmdWhatsThis - Help - Pomoc + Help + Pomoc - &What's This? - &Co to jest? + &What's This? + &Co to jest? - What's This - Co to jest + What's This + Co to jest - - + + StdCmdWindows - Window - Okno + Window + Okno - &Windows... - &Windows... + &Windows... + Okna... - Windows list - Lista okien + Windows list + Lista okien - - + + StdCmdWindowsMenu - Window - Okno + Window + Okno - Activates this window - Uaktywnia okno + Activates this window + Uaktywnia okno - - + + StdCmdWorkbench - View - Widok + View + Widok - Workbench - Środowisko + Workbench + Środowisko - Switch between workbenches - Przełącz Środowisko + Switch between workbenches + Przełącz Środowisko - - + + StdOrthographicCamera - Standard-View - Normalny widok + Standard-View + Normalny widok - Orthographic view - Widok ortogonalny + Orthographic view + Widok ortogonalny - Switches to orthographic view mode - Przełącza do Widoku ortogonalnego + Switches to orthographic view mode + Przełącza do Widoku ortogonalnego - - + + StdPerspectiveCamera - Standard-View - Normalny widok + Standard-View + Normalny widok - Perspective view - Widok perspektywy + Perspective view + Widok perspektywy - Switches to perspective view mode - Przełącza na tryb widoku perspektywy + Switches to perspective view mode + Przełącza na tryb widoku perspektywy - - + + StdViewBoxZoom - Standard-View - Normalny widok + Standard-View + Normalny widok - Box zoom - Box zoom + Box zoom + Powiększ pole - - + + StdViewDockUndockFullscreen - Standard-View - Normalny widok + Standard-View + Normalny widok - Document window - Okno dokumentu + Document window + Okno dokumentu - Display the active view either in fullscreen, in undocked or docked mode - Display the active view either in fullscreen, in undocked or docked mode + Display the active view either in fullscreen, in undocked or docked mode + Wyświetlanie aktywnego widoku zarówno na pełnym ekranie, w trybie oddokowanym lub zadokowanym - - + + StdViewScreenShot - Standard-View - Normalny widok + Standard-View + Normalny widok - Save picture... - Zapisz obrazek... + Save picture... + Zapisz obrazek... - Creates a screenshot of the active view - Tworzy zrzut ekranu aktywnego widoku + Creates a screenshot of the active view + Tworzy zrzut ekranu aktywnego widoku - - + + StdViewZoomIn - Standard-View - Normalny widok + Standard-View + Normalny widok - Zoom In - Powiększ + Zoom In + Powiększ - - + + StdViewZoomOut - Standard-View - Normalny widok + Standard-View + Normalny widok - Zoom Out - Pomniejsz + Zoom Out + Pomniejsz - - + + Std_DrawStyle - As is - As is + As is + Jest to - Normal mode - Normal mode + Normal mode + Tryb normalny - Wireframe - Wireframe + Wireframe + Szkielet - Wireframe mode - Wireframe mode + Wireframe mode + Tryb Szkielet - - + + Std_ExportGraphviz - Graphviz not found - + Graphviz not found + Graphviz nie znaleziono - Graphviz couldn't be found on your system. -Do you want to specify its installation path if it's already installed? - + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + Graphviz nie został odnaleziony w systemie. Czy chcesz określić jego ścieżkę instalacji, jeśli jest już zainstalowany? - Graphviz installation path - + Graphviz installation path + Ścieżka instalacji Graphviz - Dependency graph - + Dependency graph + Wykres zależności - Graphviz failed - + Graphviz failed + Graphviz nie powiodło się - Graphviz failed to create an image file - + Graphviz failed to create an image file + Graphviz nie można utworzyć pliku obrazu - - + + Workbench - &File - &Plik + &File + &Plik - &Edit - &Edycja + &Edit + &Edycja - Standard views - Widoki standardowe + Standard views + Widoki standardowe - &Stereo - &Stereo + &Stereo + &Stereo - &Zoom - &Powiększenie + &Zoom + &Powiększenie - Visibility - Widoczność + Visibility + Widoczność - &View - &Widok + &View + &Widok - &Tools - &Narzędzia + &Tools + &Narzędzia - &Macro - &Macro + &Macro + & Makra - &Windows - &Okna + &Windows + &Okna - &On-line help - &Pomoc on-line + &On-line help + &Pomoc on-line - &Help - &Pomoc + &Help + &Pomoc - File - Plik + File + Plik - Macro - Makro + Macro + Makro - View - Widok + View + Widok - Special Ops - Specjalne opcje + Special Ops + Specjalne opcje - - + + testClass - test - test + test + test - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + - Choose the style of the Task Panel - Wybierz styl Panelu zadań + Choose the style of the Task Panel + Wybierz styl Panelu zadań - Default - Domyślne + Default + Domyślne - Windows XP - Windows XP + Windows XP + Windows XP - + diff --git a/src/Gui/Language/FreeCAD_pt.qm b/src/Gui/Language/FreeCAD_pt-BR.qm similarity index 71% rename from src/Gui/Language/FreeCAD_pt.qm rename to src/Gui/Language/FreeCAD_pt-BR.qm index bd64c5da0..ba943211f 100644 Binary files a/src/Gui/Language/FreeCAD_pt.qm and b/src/Gui/Language/FreeCAD_pt-BR.qm differ diff --git a/src/Gui/Language/FreeCAD_pt-BR.ts b/src/Gui/Language/FreeCAD_pt-BR.ts new file mode 100644 index 000000000..10925254e --- /dev/null +++ b/src/Gui/Language/FreeCAD_pt-BR.ts @@ -0,0 +1,5827 @@ + + + + + Angle + + Form + Formulário + + + A: + A: + + + B: + B: + + + C: + C: + + + Angle Snap + Snap de ângulo + + + 1 ° + 1 ° + + + 2 ° + 2 ° + + + 5 ° + 5 ° + + + 10 ° + 10 ° + + + 20 ° + 20 ° + + + 45 ° + 45 ° + + + 90 ° + 90 ° + + + 180 ° + 180 ° + + + + Gui::AccelLineEdit + + none + nenhum + + + + Gui::ActionSelector + + Available: + Disponível: + + + Selected: + Selecionado: + + + Add + Adicionar + + + Remove + Remover + + + Move up + Mover para cima + + + Move down + Move para baixo + + + + Gui::AlignmentView + + Movable object + Objeto móvel + + + Fixed object + Objeto fixo + + + + Gui::BlenderNavigationStyle + + Press left mouse button + Pressione o botão esquerdo do mouse + + + Press SHIFT and middle mouse button + Pressione SHIFT e o botão do meio do mouse + + + Press middle mouse button + Pressione o botão do meio do mouse + + + Scroll middle mouse button + Role a roda do mouse + + + + Gui::CADNavigationStyle + + Press left mouse button + Pressione o botão esquerdo do mouse + + + Press middle mouse button + Pressione o botão do meio do mouse + + + Press left and middle mouse button + Pressione o botão esquerdo e do meio do mouse + + + Scroll middle mouse button + Role a roda do mouse + + + + Gui::Command + + Standard + Padrão + + + + Gui::ContainerDialog + + &OK + &OK + + + &Cancel + &Cancelar + + + + Gui::ControlSingleton + + Task panel + Painel de tarefas + + + + Gui::Dialog::AboutApplication + + About + Sobre + + + Revision number + Número de revisão + + + Version + Versão + + + OK + OK + + + + + + + Release date + Data de lançamento + + + Platform + Plataforma + + + License... + Licença... + + + Copy to clipboard + Copiar para a área de transferência + + + + Gui::Dialog::ButtonModel + + Button %1 + Botão %1 + + + Out Of Range + Fora do intervalo + + + + Gui::Dialog::CommandModel + + Commands + Comandos + + + + Gui::Dialog::DemoMode + + View Turntable + Vista Turntable + + + Speed + Velocidade + + + Maximum + Máximo + + + Minimum + Mínimo + + + Fullscreen + Tela cheia + + + Enable timer + Habilitar o timer + + + s + s + + + Angle + Ângulo + + + 90° + 90° + + + -90° + -90° + + + Play + Reproduzir + + + Stop + Parar + + + Close + Fechar + + + + Gui::Dialog::DlgActivateWindow + + Choose Window + Escolher Janela + + + &Activate + &Ativar + + + Alt+A + Alt + A + + + &Cancel + &Cancelar + + + + + + + + Gui::Dialog::DlgActivateWindowImp + + Windows + Janelas + + + + Gui::Dialog::DlgAuthorization + + Authorization + Autorização + + + &OK + &OK + + + &Cancel + &Cancelar + + + Password: + Senha: + + + User name: + Nome de usuário: + + + + + + + + Gui::Dialog::DlgChooseIcon + + Choose Icon + Escolher ícone + + + OK + OK + + + Cancel + Cancelar + + + Add icons... + Adicionar ícones ... + + + + Gui::Dialog::DlgCustomActions + + Macros + Macros + + + Setup Custom Macros + Configurar macros personalizadas + + + Macro: + Macro: + + + ... + ... + + + Pixmap + Imagem + + + Accelerator: + Atalho: + + + What's this: + O Que é Isto: + + + Status text: + Texto de status: + + + Tool tip: + Dica: + + + Menu text: + Texto do menu: + + + Add + Adicionar + + + Remove + Remover + + + Replace + Substituir + + + + Gui::Dialog::DlgCustomActionsImp + + Icons + Ícones + + + Macros + Macros + + + No macro + Nenhuma macro + + + No macros found. + Nenhuma macro encontrada. + + + Macro not found + Macro não encontrada + + + Sorry, couldn't find macro file '%1'. + Desculpe, não foi possível encontrar o arquivo de macro '%1'. + + + Empty macro + Macro vazia + + + Please specify the macro first. + Por favor especifique a macro primeiro. + + + Empty text + Texto vazio + + + Please specify the menu text first. + Por favor, especifique o texto do menu primeiro. + + + No item selected + Nenhum item selecionado + + + Please select a macro item first. + Primeiro selecione uma macro. + + + + Gui::Dialog::DlgCustomCommands + + Commands + Comandos + + + + + + + + Gui::Dialog::DlgCustomCommandsImp + + Category + Categoria + + + Icon + Ícone + + + Command + Comando + + + + Gui::Dialog::DlgCustomKeyboard + + Keyboard + Teclado + + + Description: + Descrição: + + + &Category: + &Categoria: + + + C&ommands: + C&omandos: + + + Current shortcut: + Atalho atual: + + + Press &new shortcut: + Indique o &novo atalho: + + + Currently assigned to: + Atualmente atribuído a: + + + &Assign + &Atribuir + + + Alt+A + Alt + A + + + &Reset + &Restaurar + + + Alt+R + Alt + R + + + Re&set All + Re&definir Tudo + + + Alt+S + Alt + D + + + + + + + + Gui::Dialog::DlgCustomKeyboardImp + + Icon + Ícone + + + Command + Comando + + + none + nenhum + + + Multiple defined shortcut + Atalho definido várias vezes + + + The shortcut '%1' is defined more than once. This could result into unexpected behaviour. + O atalho '%1' é definido mais de uma vez. Isso pode provocar um comportamento inesperado. + + + Already defined shortcut + Atalho já definido + + + The shortcut '%1' is already assigned to '%2'. + +Please define another shortcut. + O atalho '%1' já está atribuído a '%2'. +Defina outro atalho. + + + + Gui::Dialog::DlgCustomToolBoxbarsImp + + Toolbox bars + Barras de ferramentas + + + + Gui::Dialog::DlgCustomToolbars + + Toolbars + Barras de ferramentas + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> As mudanças terão efeito quando carregar novamente o Workbench apropriado</p></body></html> + + + Move right + Mover para a direita + + + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Move o item selecionado um nível abaixo.</b> <p> Isso também irá alterar o nível do item pai. </p> + + + Move left + Mover para a esquerda + + + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Mover o item selecionado um nível acima.</b> <p> Isso também irá alterar o nível do item pai. </p> + + + Move down + Move para baixo + + + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Move o item selecionado para baixo.</b> <p> O item será movido dentro do nível de hierarquia. </p> + + + Move up + Mover para cima + + + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Move o item selecionado para cima.</b> <p> O item será movido dentro do nível de hierarquia. </p> + + + New... + Novo... + + + Rename... + Renomear... + + + Delete + Excluir + + + Icon + Ícone + + + Command + Comando + + + <Separator> + <Separator> + + + New toolbar + Nova barra de ferramentas + + + Toolbar name: + Nome da barra de ferramentas: + + + Duplicated name + Nome duplicado + + + The toolbar name '%1' is already used + O nome de barra de ferramentas '%1' já está sendo usado + + + Rename toolbar + Renomear barra de ferramentas + + + + + + + + Gui::Dialog::DlgCustomizeImp + + Customize + Personalizar + + + &Help + A&juda + + + &Close + &Fechar + + + + Gui::Dialog::DlgCustomizeSpaceball + + Spaceball + Spaceball + + + No Spaceball Present + Nenhum Spaceball encontrado + + + Buttons + Botões + + + Clear + Limpar + + + Print Reference + Imprimir referência + + + + Gui::Dialog::DlgDisplayProperties + + Display properties + Exibir propriedades + + + Display + Tela + + + Transparency: + Transparência: + + + Line width: + Largura da linha: + + + Point size: + Tamanho de ponto: + + + Material + Material + + + ... + ... + + + Close + Fechar + + + Viewing mode + Modo de visualização + + + Plot mode: + Modo de impressão: + + + + + + + Line transparency: + Transparência das linhas: + + + Line color: + Cor das linhas: + + + Shape color: + Cor das formas: + + + Color plot: + Cor de plotagem: + + + Document window: + Janela do documento: + + + + Gui::Dialog::DlgEditorSettings + + Editor + Editor + + + Options + Opções + + + Enable line numbers + Ativar números de linha + + + Enable folding + Habilitar dobra + + + Indentation + Indentação + + + Insert spaces + Inserir espaços + + + Tab size: + Tamanho da tabulação: + + + Indent size: + Tamanho da indentação: + + + Keep tabs + Manter abas + + + Display Items + Exibir itens + + + Family: + Família: + + + Size: + Tamanho: + + + Preview: + Pré-visualização: + + + + + + + + Gui::Dialog::DlgGeneral + + General + Geral + + + Start up + Início + + + Enable splash screen at start up + Mostrar a tela de splash ao iniciar + + + Switch to tab of report window: + Alternar para a guia da janela de relatório: + + + Auto load module after start up: + Auto-carregar módulo ao iniciar: + + + Language + Idioma + + + Change language: + Alterar idioma: + + + Main window + Janela principal + + + Size of recent file list + Tamanho da lista de arquivos recentes + + + Window style: + Estilo de janela: + + + Size of toolbar icons: + Tamanho dos ícones da barra de ferramentas: + + + + Gui::Dialog::DlgGeneralImp + + Default (%1 x %1) + Padrão (%1 x %1) + + + Small (%1 x %1) + Pequeno (%1 x %1) + + + Large (%1 x %1) + Grande (%1 x %1) + + + Extra large (%1 x %1) + Muito grande (%1 x %1) + + + + Gui::Dialog::DlgInputDialog + + Input + Entrada + + + OK + OK + + + Cancel + Cancelar + + + + + + + + Gui::Dialog::DlgInspector + + Scene Inspector + Inspetor de cena + + + + Gui::Dialog::DlgMacroExecute + + Execute macro + Executar macro + + + Macro name: + Nome da macro: + + + Macro destination: + Destino da macro: + + + Execute + Executar + + + Close + Fechar + + + Create + Criar + + + Delete + Excluir + + + Edit + Editar + + + + Gui::Dialog::DlgMacroExecuteImp + + Macros + Macros + + + Macro file + Arquivo de macro + + + Enter a file name, please: + Digite um nome de arquivo, por favor: + + + Existing file + Arquivo existente + + + '%1'. +This file already exists. + '%1'. +Este arquivo já existe. + + + Delete macro + Excluir macro + + + Do you really want to delete the macro '%1'? + Você realmente deseja excluir a macro '%1'? + + + Cannot create file + Não é possível criar o arquivo + + + Creation of file '%1' failed. + Falha na criação do arquivo '%1'. + + + + Gui::Dialog::DlgMacroRecord + + Macro recording + Gravação de macros + + + Macro name: + Nome da macro: + + + Stop + Parar + + + Cancel + Cancelar + + + Macro path: + Caminho de macro: + + + ... + ... + + + Record + Gravar + + + + Gui::Dialog::DlgMacroRecordImp + + Macro recorder + Gravador de macro + + + Specify first a place to save. + Especifique um local para salvar. + + + Existing macro + Macro existente + + + The macro '%1' already exists. Do you want to overwrite? + A macro '%1' já existe. Deseja substituir? + + + The macro directory doesn't exist. Please, choose another one. + O diretório de macro não existe. Por favor, escolha um outro. + + + Choose macro directory + Escolha o diretório de macros + + + + Gui::Dialog::DlgMaterialProperties + + Material properties + Propriedades do material + + + &Close + &Fechar + + + Alt+C + Alt + C + + + Material + Material + + + Diffuse color: + Cor Diffuse: + + + Specular color: + Cor Specular: + + + Shininess: + Brilho: + + + % + % + + + Ambient color: + Cor ambiente: + + + + + + + Emissive color: + Cor de emissão: + + + + Gui::Dialog::DlgOnlineHelp + + On-line help + Ajuda on-line + + + Help viewer + Visualizador da ajuda + + + Location of start page + Localização da página inicial + + + + Gui::Dialog::DlgOnlineHelpImp + + HTML files (*.html *.htm) + Arquivos HTML (*.html *.htm) + + + Access denied + Acesso negado + + + Access denied to '%1' + +Specify another directory, please. + Acesso negado a '%1' +Por favor especifique outro diretório. + + + + Gui::Dialog::DlgParameter + + Parameter Editor + Editor de parâmetros + + + Save to disk + Salvar no disco + + + Alt+C + Alt + C + + + &Close + &Fechar + + + + Gui::Dialog::DlgParameterImp + + Group + Grupo + + + Name + Nome + + + Type + Tipo + + + Value + Valor + + + User parameter + Parâmetros de usuário + + + Invalid input + Entrada inválida + + + Invalid key name '%1' + Nome da chave inválido '%1' + + + System parameter + Parâmetro de sistema + + + + Gui::Dialog::DlgPreferences + + Preferences + Preferências + + + &Help + A&juda + + + Alt+H + Alt+J + + + &OK + &OK + + + &Apply + &Aplicar + + + Alt+A + Alt + A + + + &Cancel + &Cancelar + + + + + + + + Gui::Dialog::DlgPreferencesImp + + Wrong parameter + Parâmetro incorreto + + + + Gui::Dialog::DlgProjectInformation + + Project information + Informações do projeto + + + Information + Informação + + + &Name: + &Nome: + + + Commen&t: + Comen&tário: + + + Path: + Caminho: + + + &Last modified by: + &Modificado por último por: + + + Created &by: + Criado &por: + + + Com&pany: + &Empresa: + + + Last &modification date: + Data da última &modificação: + + + Creation &date: + &Data de criação: + + + &OK + &OK + + + &Cancel + &Cancelar + + + + + + + + Gui::Dialog::DlgProjectUtility + + Project utility + Utilitário de projeto + + + Extract project + Extrair um projeto + + + Source + Fonte + + + Project file (*.fcstd) + Arquivo de projeto (*.fcstd) + + + Destination + Destino + + + Extract + Extrair + + + Create project + Criar projeto + + + Document.xml + Document.xml + + + Create + Criar + + + Load project file after creation + Carregar o arquivo de projeto após a criação + + + Empty source + Fonte vazia + + + No source is defined. + Nenhuma fonte foi definida. + + + Empty destination + Destino vazio + + + No destination is defined. + Nenhum destino foi definido. + + + + Gui::Dialog::DlgReportView + + Output window + janela de saída + + + Output + Saída + + + Record log messages + Gravar mensagens de log + + + Record warnings + Gravar advertências + + + Record error messages + Gravar mensagens de erro + + + Colors + Cores + + + Normal messages: + Mensagens normais: + + + Log messages: + Mensagens de log: + + + Warnings: + Advertências: + + + Errors: + Erros: + + + + + + + Redirect internal Python errors to report view + Redirecionar erros internos do Python para a janela de relatório + + + Redirect internal Python output to report view + Redirecionar a saída interna de Python para a janela de relatório + + + + Gui::Dialog::DlgRunExternal + + Running external program + Executando programa externo + + + TextLabel + Rótulo de texto + + + Advanced >> + Avançado >> + + + ... + ... + + + Accept changes + Aceitar mudanças + + + Discard changes + Descartar alterações + + + Abort program + Abortar o programa + + + Help + Ajuda + + + Select a file + Selecione um arquivo + + + + Gui::Dialog::DlgSettings3DView + + 3D View + Vista 3D + + + 3D View settings + Configurações de visualização 3D + + + Show coordinate system in the corner + Mostrar sistema de coordenadas no canto + + + Show counter of frames per second + Mostrar contador de frames por segundo + + + Enable animation + Habilitar animação + + + Enable anti-aliasing (slower) + Habilitar anti-aliasing (mais lento) + + + Eye to eye distance for stereo modes: + Distância entre olhos para modos estéreo: + + + Camera type + Tipo de câmera + + + Orthographic rendering + Renderização ortográfica + + + Perspective rendering + Renderização perspectiva + + + + + + + 3D Navigation + Navegação 3D + + + Mouse... + Mouse... + + + Intensity of backlight + Intensidade da luz de fundo + + + Enable backlight color + Habilitar a cor da luz de fundo + + + Orbit style + Estilo de orbita + + + Turntable + Plataforma + + + Trackball + Trackball + + + Invert zoom + Inverter o zoom + + + Zoom at cursor + Zoom no cursor + + + Zoom step + Etapa de zoom + + + + Gui::Dialog::DlgSettings3DViewImp + + %1 navigation + navegação de %1 + + + + Gui::Dialog::DlgSettingsColorGradient + + Color model + Modelo de cores + + + &Gradient: + &Gradiente: + + + red-yellow-green-cyan-blue + vermelho-amarelo-verde-ciano-azul + + + blue-cyan-green-yellow-red + azul-turquesa-verde-amarelo-vermelho + + + white-black + branco-preto + + + black-white + preto-branco + + + Visibility + Visibilidade + + + Out g&rayed + Saída &inativa + + + Alt+R + Alt + R + + + Out &invisible + Saída in&visível + + + Alt+I + Alt+v + + + Style + Estilo + + + &Zero + Zero + + + Alt+Z + Alt + Z + + + &Flow + &Fluxo + + + Alt+F + Alt + F + + + &OK + &OK + + + &Cancel + &Cancelar + + + Parameter range + Intervalo de parâmetros + + + Mi&nimum: + Mí&nimo: + + + Ma&ximum: + Má&ximo: + + + &Labels: + Rótu&los: + + + &Decimals: + &Decimais: + + + + + + + Color-gradient settings + Configurações de gradiente de cores + + + + Gui::Dialog::DlgSettingsColorGradientImp + + Wrong parameter + Parâmetro incorreto + + + The maximum value must be higher than the minimum value. + O valor máximo deve ser superior ao valor mínimo. + + + + Gui::Dialog::DlgSettingsDocument + + Document + Documento + + + General + Geral + + + Document save compression level +(0 = none, 9 = highest, 3 = default) + Nível de compactação ao salvar documentos (0 = nenhum, 9 = mais alto, 3 = padrão) + + + Create new document at start up + Criar um novo documento ao iniciar + + + Storage + Armazenamento + + + Saving transactions (Auto-save) + Salvar as transações (auto-save) + + + Discard saved transaction after saving document + Descartar transações salvas depois de salvar o documento + + + Save thumbnail into project file when saving document + Salvar miniatura no arquivo quando salvar um documento + + + Create up to backup files when resaving document + Criar arquivos de backup ao salvar o documento + + + Document objects + Objetos do documento + + + Allow duplicate object labels in one document + Permitir rótulos de objetos duplicados em um documento + + + Maximum Undo/Redo steps + Número máximo de operações Desfazer/Refazer + + + Using Undo/Redo on documents + Usar Desfazer/Refazer em documentos + + + + Gui::Dialog::DlgSettingsEditorImp + + Text + Texto + + + Bookmark + Favorito + + + Breakpoint + Ponto de Interrupção + + + Keyword + Palavra-chave + + + Comment + Comentário + + + Block comment + Comentário de bloco + + + Number + Número + + + String + Texto + + + Character + Caráter + + + Class name + Nome de classe + + + Define name + Definir nome + + + Operator + Operador + + + Python output + Saída de Python + + + Python error + Erro de python + + + Items + Itens + + + Current line highlight + Destacar linha atual + + + + Gui::Dialog::DlgSettingsImage + + Image settings + Configurações de imagem + + + Image properties + Propriedades de imagem + + + Back&ground: + P&lano de Fundo: + + + Current + Atual + + + White + Branco + + + Black + Preto + + + Transparent + Transparente + + + Image dimensions + Dimensões da imagem + + + Pixel + Pixel + + + &Width: + &Largura: + + + Current screen + Tela atual + + + Icon 32 x 32 + Ícone de 32 x 32 + + + Icon 64 x 64 + Ícone de 64 x 64 + + + Icon 128 x 128 + Ícone de 128 x 128 + + + CGA 320 x 200 + CGA 320 x 200 + + + QVGA 320 x 240 + QVGA 320 x 240 + + + VGA 640 x 480 + VGA 640 x 480 + + + NTSC 720 x 480 + NTSC 720 x 480 + + + PAL 768 x 578 + PAL 768 x 578 + + + SVGA 800 x 600 + SVGA 800 x 600 + + + XGA 1024 x 768 + XGA 1024 x 768 + + + HD720 1280 x 720 + HD720 1280 x 720 + + + SXGA 1280 x 1024 + SXGA 1280 x 1024 + + + SXGA+ 1400 x 1050 + SXGA+ 1400 x 1050 + + + UXGA 1600 x 1200 + UXGA 1600 x 1200 + + + HD1080 1920 x 1080 + HD1080 1920 x 1080 + + + WUXGA 1920 x 1200 + WUXGA 1920 x 1200 + + + QXGA 2048 x 1538 + QXGA 2048 x 1538 + + + WQXGA 2560 x 1600 + WQXGA 2560 x 1600 + + + QSXGA 2560 x 2048 + QSXGA 2560 x 2048 + + + QUXGA 3200 × 2400 + QUXGA 3200 × 2400 + + + HUXGA 6400 × 4800 + HUXGA 6400 × 4800 + + + !!! 10000 x 10000 + !!! 10000 x 10000 + + + Standard sizes: + Tamanhos padrão: + + + &Height: + &Altura: + + + Aspect ratio: + Proporção: + + + &Screen + &Tela + + + Alt+S + Alt + D + + + &4:3 + &4:3 + + + Alt+4 + Alt+4 + + + 1&6:9 + 1&6:9 + + + Alt+6 + Alt+6 + + + &1:1 + &1:1 + + + Alt+1 + Alt +1 + + + Image comment + Comentário da imagem + + + Insert MIBA + Inserir MIBA + + + Insert comment + Inserir comentário + + + + Gui::Dialog::DlgSettingsMacro + + Macro + Macro + + + Macro recording settings + Configurações de gravação de macros + + + Logging Commands + Comandos de log + + + Show script commands in python console + Mostrar os comandos de script no console python + + + Log all commands issued by menus to file: + Salvar todos os comandos emitidos por menus em arquivo de log: + + + FullScript.FCScript + FullScript.FCScript + + + Gui commands + Comandos da interface gráfica + + + Recording GUI commands + Gravar os comandos da interface gráfica + + + Record as comment + Gravar como comentário + + + Macro path + Caminho de macro + + + General macro settings + Configurações gerais de macro + + + Run macros in local environment + Executar macros no ambiente local + + + + Gui::Dialog::DlgSettingsUnits + + Units + Unidades + + + Units settings + Configurações de unidades + + + Standard (mm/kg/s/degree) + Padrão (mm,kg,s,grau) + + + MKS (m/kg/s/degree) + MKS (m/kg/s/graus) + + + Magnitude + Magnitude + + + Unit + Unidade + + + User system: + sistema do usuário: + + + Imperial (in/lb) + Imperial (in/lb) + + + + Gui::Dialog::DlgSettingsViewColor + + Colors + Cores + + + Selection + Seleção + + + Enable selection highlighting + Habilitar o enfoque da seleção + + + Enable preselection highlighting + Habilitar o enfoque de preseleção + + + Background color + Cor de fundo + + + Middle color + Cor intermediária + + + Color gradient + Gradiente de cor + + + Simple color + Cor simples + + + Default colors + Cores padrão + + + Edited edge color + Cor de linha em modo de edição + + + Edited vertex color + Cor dos vértices editados + + + Construction geometry + Geometria de construção + + + Fully constrained geometry + Geometria totalmente restrita + + + The color of vertices being edited + A cor dos vértices em modo de edição + + + The color of edges being edited + A cor das linhas em modo de edição + + + The color of construction geometry in edit mode + A cor da geometria de contrução no modo de edição + + + The color of fully constrained geometry in edit mode + A cor da geometria bloqueada no modo de edição + + + Cursor text color + Cor do cursor de texto + + + Default shape color + Cor padrão da forma + + + The default color for new shapes + A cor padrão para novas formas + + + Default line width and color + Cor e largura de linha padrão + + + The default line color for new shapes + A cor de linha padrão para novas formas + + + The default line thickness for new shapes + A espessura padrão de linha para novas formas + + + px + px + + + + Gui::Dialog::DlgTipOfTheDay + + Tip of the day + Dica do dia + + + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <b><font face="Times New Roman"> <font size="+3"> você sabia...</font></font></b> + + + &Show tips at start up + &Mostrar dicas ao iniciar + + + Alt+S + Alt + D + + + &Next Tip + &Próxima dica + + + Alt+N + Alt + P + + + &Close + &Fechar + + + Alt+C + Alt + C + + + + + + + + Gui::Dialog::DlgTipOfTheDayImp + + Download failed: %1 + + O Download falhou: %1 + + + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + Se você quiser saber mais sobre FreeCAD você deve ir para %1 ou pressione o item ajuda no menu Ajuda. + + + + Gui::Dialog::DockablePlacement + + Placement + Posicionamento + + + + Gui::Dialog::DownloadDialog + + Download + Baixar + + + Cancel + Cancelar + + + Close + Fechar + + + There already exists a file called %1 in the current directory. Overwrite? + Já existe um arquivo chamado %1 no diretório atual. Sobrescrever? + + + Unable to save the file %1: %2. + Não foi possível salvar o arquivo %1: %2. + + + Downloading %1. + Baixando %1. + + + Download canceled. + Transferência cancelada. + + + Download failed: %1. + O download falhou: %1. + + + Downloaded %1 to current directory. + Baixado %1 do diretório atual. + + + + Gui::Dialog::IconDialog + + Add icon + Adicionar um ícone + + + + Gui::Dialog::InputVector + + Input vector + Vetor de entrada + + + Vector + Vetor + + + Z: + Z: + + + Y: + Y: + + + X: + X: + + + OK + OK + + + + Gui::Dialog::LicenseDialog + + Copyright + Copyright + + + + Gui::Dialog::MouseButtons + + Mouse buttons + Botões do mouse + + + Configuration + Configuração + + + Selection: + Seleção: + + + Panning + Pan + + + Rotation: + Rotação: + + + Zooming: + Zoom: + + + + Gui::Dialog::ParameterGroup + + Expand + Expandir + + + Add sub-group + Adicionar sub-grupo + + + Remove group + Remover grupo + + + Rename group + Renomear grupo + + + Export parameter + Parâmetros de exportação + + + Import parameter + Parâmetros de importação + + + Collapse + Recolher + + + Do really want to remove this parameter group? + Você realmente deseja remover este grupo de parâmetros? + + + Existing sub-group + Subgrupo existente + + + The sub-group '%1' already exists. + O subgrupo '%1' já existe. + + + Export parameter to file + Exportar parâmetros para arquivo + + + XML (*.FCParam) + XML (*. FCParam) + + + Import parameter from file + Importar parâmetros de arquivo + + + Import Error + Erro de importação + + + Reading from '%1' failed. + Leitura de '1%' falhou. + + + + Gui::Dialog::ParameterValue + + Change value + Mudar o valor + + + Remove key + Remover a chave + + + Rename key + Renomear a chave + + + New + Novo + + + New string item + Novo item string + + + New float item + Novo item float + + + New integer item + Novo item inteiro + + + New unsigned item + Novo item unsigned + + + New Boolean item + Novo item Boolean + + + Existing item + Item existente + + + The item '%1' already exists. + O item '%1' já existe. + + + + Gui::Dialog::Placement + + Placement + Posicionamento + + + OK + OK + + + Translation: + Translação: + + + Z: + Z: + + + Y: + Y: + + + X: + X: + + + Rotation: + Rotação: + + + Angle: + Ângulo: + + + Axis: + Eixo: + + + Center: + Centro: + + + Pitch: + Altura: + + + Roll: + Roll: + + + Yaw: + Guinada: + + + Rotation axis with angle + Eixo de rotação com ângulo + + + Euler angles + Ângulos de Euler + + + Apply placement changes immediately + Aplicar alterações de posicionamento imediatamente + + + Apply incremental changes to object placement + Aplicar as alterações incrementais ao posicionamento do objeto + + + Apply + Aplicar + + + Reset + Restaurar + + + Close + Fechar + + + + Gui::Dialog::PrintModel + + Button + Botão + + + Command + Comando + + + + Gui::Dialog::SceneInspector + + Dialog + Diálogo + + + Close + Fechar + + + Refresh + Atualizar + + + + Gui::Dialog::SceneModel + + Inventor Tree + Árvore do Inventor + + + Nodes + Nós + + + + Gui::Dialog::TextureMapping + + Texture + Textura + + + Texture mapping + Mapeamento de textura + + + Global + Global + + + Environment + Ambiente + + + Image files (%1) + Arquivos de imagem (%1) + + + No image + Nenhuma imagem + + + The specified file is not a valid image file. + O arquivo especificado não é um arquivo de imagem válido. + + + No 3d view + Nenhuma vista 3d + + + No active 3d view found. + Nenhuma vista 3d ativa encontrado. + + + + Gui::Dialog::Transform + + Cancel + Cancelar + + + Transform + Transformar + + + + Gui::DlgTreeWidget + + Dialog + Diálogo + + + Items + Itens + + + OK + OK + + + Cancel + Cancelar + + + + + + + + Gui::DockWnd::CombiView + + CombiView + CombiVista + + + Project + Projeto + + + Tasks + Tarefas + + + + Gui::DockWnd::HelpView + + Previous + Anterior + + + Next + Próximo + + + Home + Início + + + Open + Abrir + + + Open file + Abrir arquivo + + + All HTML files (*.html *.htm) + Todos os arquivos HTML (*.html *.htm) + + + External browser + Navegador externo + + + No external browser found. Specify in preferences, please + Nenhum navegador externo encontrado. Especifique nas preferências, por favor + + + Starting of %1 failed + Início de %1 falhou + + + + Gui::DockWnd::PropertyDockView + + Property View + Tela de propriedades + + + + Gui::DockWnd::ReportOutput + + Logging + Log + + + Warning + Aviso + + + Error + Erro + + + Options + Opções + + + Clear + Limpar + + + Save As... + Salvar como... + + + Save Report Output + Salvar o relatório + + + Plain Text Files (*.txt *.log) + Arquivos de texto sem formatação (*.txt *.log) + + + Go to end + Ir para o fim + + + Redirect Python output + Redirecionar a saída de Python + + + Redirect Python errors + Redirecionar erros de Python + + + + Gui::DockWnd::ReportView + + Output + Saída + + + Python console + Console Python + + + + Gui::DockWnd::SelectionView + + Property View + Tela de propriedades + + + + Gui::DockWnd::TaskPanelView + + Task View + Tarefas + + + + Gui::DockWnd::TextBrowser + + Could not open file. + Não foi possível abrir o arquivo. + + + You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. + Você tentou acessar o endereço %1 que não está disponível no momento. Por favor, certifique-se de que a URL existe e tente recarregar a página. + + + Connecting to %1 + Conectando-se a %1 + + + Sending to %1 + Enviando para %1 + + + Reading from %1 + Lendo %1 + + + Download failed: %1. + O download falhou: %1. + + + Previous + Anterior + + + Forward + Para a frente + + + Home + Início + + + Refresh + Atualizar + + + Copy + Copiar + + + Select all + Selecionar tudo + + + No description for + Nenhuma descrição para + + + + Gui::DocumentModel + + Application + Programa + + + Labels & Attributes + Rótulos & atributos + + + + Gui::EditorView + + Modified file + Arquivo modificado + + + %1. + +This has been modified outside of the source editor. Do you want to reload it? + %1. +Este arquivo foi modificado fora do editor. Deseja recarregá-lo? + + + Unsaved document + Documento não salvo + + + The document has been modified. +Do you want to save your changes? + O documento foi modificado. +Deseja salvar as alterações? + + + FreeCAD macro (*.FCMacro);;Python (*.py) + Macro do FreeCAD (*.FCMacro);;Python (*.py) + + + Export PDF + Exportar PDF + + + PDF file (*.pdf) + Arquivo PDF (*.pdf) + + + untitled[*] + sem título[*] + + + - Editor + - Editor + + + %1 chars removed + %1 caracteres removidos + + + %1 chars added + %1 caracteres adicionados + + + Formatted + Formatado + + + + Gui::FileChooser + + Select a file + Selecione um arquivo + + + Select a directory + Selecione um diretório + + + + Gui::FileDialog + + Save as + Salvar como + + + Open + Abrir + + + + Gui::FileOptionsDialog + + Extended + Extendido + + + All files (*.*) + Todos os arquivos (*.*) + + + + Gui::Flag + + Top left + Superior esquerdo + + + Bottom left + Inferior esquerdo + + + Top right + Superior direito + + + Bottom right + Inferior direito + + + Remove + Remover + + + + Gui::InventorNavigationStyle + + Press CTRL and left mouse button + Pressione CTRL e o botão esquerdo do mouse + + + Press middle mouse button + Pressione o botão do meio do mouse + + + Press left mouse button + Pressione o botão esquerdo do mouse + + + Scroll middle mouse button + Role a roda do mouse + + + + Gui::LocationDialog + + Wrong direction + Direção errada + + + Direction must not be the null vector + Direção não pode ser um vector nulo + + + X + X + + + Y + Y + + + Z + Z + + + User defined... + Definido pelo usuário... + + + + Gui::LocationWidget + + X: + X: + + + Y: + Y: + + + Z: + Z: + + + Direction: + Direção: + + + + Gui::MacroCommand + + Macros + Macros + + + + Gui::MainWindow + + Dimension + Dimensão + + + Ready + Pronto + + + Toggles this toolbar + Alterna esta barra de ferramentas + + + Toggles this dockable window + Alterna esta janela acoplável + + + Close All + Fechar tudo + + + + Gui::ManualAlignment + + Manual alignment + Alinhamento manual + + + The alignment is already in progress. + O alinhamento já está em progresso. + + + Alignment[*] + Alinhamento[*] + + + Please, select at least one point in the left and the right view + Por favor, selecione pelo menos um ponto nos lados esquerdo e direito + + + Please, select at least %1 points in the left and the right view + Por favor, selecione pelo menos %1 pontos nos lados esquerdo e direito + + + Please pick points in the left and right view + Por favor, selecione pontos dos lados direito e esquerdo + + + The alignment has finished + O alinhamento foi finalizado + + + The alignment has been canceled + O alinhamento foi cancelado + + + Too few points picked in the left view. At least %1 points are needed. + Muitos pontos selecionados no lado esquerdo. São necessários pelo menos %1 pontos. + + + Too few points picked in the right view. At least %1 points are needed. + Muitos pontos selecionados no lado direito. Pelo menos %1 pontos são necessários. + + + Different number of points picked in left and right view. +On the left view %1 points are picked, +on the right view %2 points are picked. + Diferentes números de pontos selecionados no lado esquerdo e direito. +No lado esquerdo foram selecionado %1 e, +no lado direito foram selecionados %2. + + + Try to align group of views + Tente alinhar o grupo de visualização + + + The alignment failed. +How do you want to proceed? + O alinhamento falhou. +Você deseja continuar? + + + Retry + Tentar novamente + + + Ignore + Ignorar + + + Abort + Abortar + + + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + Diferentes números de pontos selecionados no lado esquerdo e direito. No lado esquerdo foram selecionados %1 pontos e, no lado direito foram selecionados %2 pontos. + + + Point picked at (%1,%2,%3) + Selecionado no ponto (%1,%2,%3) + + + No point was picked + Nenhum ponto foi escolhido + + + + Gui::NetworkRetriever + + Download started... + + Download iniciado... + + + + Gui::ProgressBar + + Remaining: %1 + Restante: %1 + + + Aborting + Interrompendo + + + Do you really want to abort the operation? + Você realmente deseja abortar a operação? + + + + Gui::ProgressDialog + + Remaining: %1 + Restante: %1 + + + Aborting + Interrompendo + + + Do you really want to abort the operation? + Você realmente deseja abortar a operação? + + + + Gui::PropertyEditor::PropertyModel + + Property + Propriedade + + + Value + Valor + + + + Gui::PropertyView + + View + Vista + + + Data + Dados + + + + Gui::PythonConsole + + System exit + Saída do sistema + + + The application is still running. +Do you want to exit without saving your data? + O aplicativo ainda está em execução. Deseja sair sem salvar os seus dados? + + + Python console + Console Python + + + Unhandled PyCXX exception. + Exceção PyCXX não tratada. + + + Unhandled FreeCAD exception. + Exceção FreeCAD não tratada. + + + Unhandled unknown C++ exception. + Exceção desconhecida C++ não tratada. + + + &Copy command + &Copiar comando + + + &Copy history + &Copiar histórico + + + Save history as... + Salvar histórico como... + + + Insert file name... + Insira o nome do arquivo... + + + Save History + Salvar histórico + + + Macro Files (*.FCMacro *.py) + Arquivos de macro (*.FCMacro *.py) + + + Insert file name + Insira o nome do arquivo + + + All Files (*.*) + Todos os arquivos (*.*) + + + Python Input Dialog + Diálogo de entrada de Python + + + Unhandled std C++ exception. + Exceção std C++ não tratada. + + + Word wrap + Quebra de linha + + + &Copy + &Copiar + + + &Paste + Co&lar + + + Select All + Selecionar tudo + + + Clear console + Limpar console + + + + Gui::PythonEditor + + Comment + Comentário + + + Uncomment + Descomentar + + + + Gui::PythonInputField + + OK + OK + + + Clear + Limpar + + + + Gui::RecentFilesAction + + Open file %1 + Abrir o arquivo %1 + + + File not found + Arquivo não encontrado + + + The file '%1' cannot be opened. + Não é possível abrir o arquivo '%1'. + + + + Gui::SelectModule + + Select module + Selecione o módulo + + + Open %1 as + Abrir %1 como + + + Select + Selecionar + + + + Gui::StdCmdDescription + + Help + Ajuda + + + Des&cription + Des&crição + + + Long description of commands + Descrição detalhada dos comandos + + + + Gui::StdCmdDownloadOnlineHelp + + Help + Ajuda + + + Download online help + Baixar a ajuda online + + + Download %1's online help + Baixar ajuda online de %1 + + + Non-existing directory + Diretório não existente + + + The directory '%1' does not exist. + +Do you want to specify an existing directory? + O diretório '%1' não existe. Você deseja especificar um diretório existente? + + + Missing permission + Falta de permissão + + + You don't have write permission to '%1' + +Do you want to specify another directory? + Você não tem permissão de escrita para '%1' Deseja especificar outro diretório? + + + Stop downloading + Parar a transferência + + + + Gui::StdCmdPythonHelp + + Tools + Ferramentas + + + Python Modules + Módulos Python + + + Opens a browser to show the Python modules + Abre um navegador para mostrar os módulos Python + + + + Gui::TaskBoxAngle + + Angle + Ângulo + + + + Gui::TaskBoxPosition + + Position + Posição + + + + Gui::TaskView::TaskAppearance + + Plot mode: + Modo de impressão: + + + Point size: + Tamanho de ponto: + + + Line width: + Largura da linha: + + + Transparency: + Transparência: + + + Appearance + Aparência + + + Document window: + Janela do documento: + + + + Gui::TaskView::TaskEditControl + + Edit + Editar + + + + Gui::TaskView::TaskSelectLinkProperty + + Appearance + Aparência + + + ... + ... + + + edit selection + editar seleção + + + + Gui::TouchpadNavigationStyle + + Press left mouse button + Pressione o botão esquerdo do mouse + + + Press SHIFT button + Aperte o SHIFT + + + Press ALT button + Pressione ALT + + + Press PgUp/PgDown button + Pressione o botão Page Up/Page Down + + + + Gui::TreeDockWidget + + Tree view + Árvore + + + + Gui::TreeWidget + + Create group... + Criar grupo... + + + Create a group + Criar um grupo + + + Group + Grupo + + + Rename + Renomear + + + Rename object + Renomear objeto + + + Labels & Attributes + Rótulos & atributos + + + Application + Programa + + + Finish editing + Concluir a edição + + + Finish editing object + Terminar de editar o objeto + + + Activate document + Ativar o documento + + + Activate document %1 + Ativar o documento %1 + + + + Gui::View3DInventor + + Export PDF + Exportar PDF + + + PDF file (*.pdf) + Arquivo PDF (*.pdf) + + + + Gui::WorkbenchGroup + + Select the '%1' workbench + Selecione a bancada '%1' + + + + Position + + Form + Formulário + + + X: + X: + + + Y: + Y: + + + Z: + Z: + + + 0.1 mm + 0.1 mm + + + 0.5 mm + 0.5 mm + + + 1 mm + 1 mm + + + 2 mm + 1 mm + + + 5 mm + 5 mm + + + 10 mm + 10 mm + + + 20 mm + 20 mm + + + 50 mm + 50 mm + + + 100 mm + 100 mm + + + 200 mm + 200 mm + + + 500 mm + 500 mm + + + 1 m + 1 m + + + 2 m + 2 m + + + 5 m + 5 m + + + Grid Snap in + Snap de grade em + + + + QDockWidget + + Tree view + Árvore + + + Property view + Tela de propriedades + + + Selection view + Tela de seleção + + + Report view + Tela de relatório relatório + + + Task View + Tarefas + + + Combo View + Tela combinada + + + Toolbox + Caixa de ferramentas + + + Python console + Console Python + + + Display properties + Exibir propriedades + + + + QObject + + General + Geral + + + Display + Tela + + + Unknown filetype + Tipo de arquivo desconhecido + + + Cannot open unknown filetype: %1 + Não é possível abrir o tipo de arquivo desconhecido: %1 + + + Cannot save to unknown filetype: %1 + Não é possível salvar em tipo de arquivo desconhecido: %1 + + + Workbench failure + Falha de bancada + + + %1 + %1 + + + Unable to launch Qt Assistant (%1) + Não foi possível iniciar o Assistente do Qt (%1) + + + Exception + Exceção + + + Open document + Abrir um documento + + + Import file + Importar um arquivo + + + Export file + Exportar um arquivo + + + Printing... + Imprimindo... + + + Cannot load workbench + Não foi possível carregar a bancada + + + A general error occurred while loading the workbench + Um erro geral ocorreu ao carregar a bancada + + + Save views... + Salvar vistas... + + + Load views... + Carregar vistas... + + + Freeze view + Congelar a vista + + + Clear views + Limpar vistas + + + Restore view &%1 + Restaurar a vista &%1 + + + Save frozen views + Salvar vistas congeladas + + + Frozen views (*.cam) + Vistas congeladas (*.cam) + + + Restore views + Restaurar vistas + + + Importing the restored views would clear the already stored views. +Do you want to continue? + Importar vistas restauradas irá descartar vistas já armazenadas. Deseja continuar? + + + Restore frozen views + Restaurar vistas congeladas + + + Cannot open file '%1'. + Não é possível abrir o arquivo '%1'. + + + Docked + Ancorado + + + Undocked + Desancorado + + + Fullscreen + Tela cheia + + + files + arquivos + + + Save picture + Salvar imagem + + + New sub-group + Novo subgrupo + + + Enter the name: + Digite o nome: + + + New text item + Novo item de texto + + + Enter your text: + Digite o texto: + + + New integer item + Novo item inteiro + + + Enter your number: + Digite seu número: + + + New unsigned item + Novo item unsigned + + + New float item + Novo item float + + + New Boolean item + Novo item Boolean + + + Choose an item: + Escolha um item: + + + Rename group + Renomear grupo + + + The group '%1' cannot be renamed. + O grupo '%1' não pode ser renomeado. + + + Existing group + Grupo existente + + + The group '%1' already exists. + O grupo '%1' já existe. + + + Change value + Mudar o valor + + + Save document under new filename... + Salvar documento sob novo nome ... + + + Saving aborted + Salvamento abortado + + + Unsaved document + Documento não salvo + + + Save document before close? + Salvar o documento antes de fechar? + + + Save Macro + Salvar macro + + + Finish + Concluir + + + Clear + Limpar + + + Cancel + Cancelar + + + Inner + Interno + + + Outer + Externo + + + No Browser + Nenhum navegador + + + Unable to open your browser. + +Please open a browser window and type in: http://localhost:%1. + Não é possível abrir o navegador. Por favor, abra uma janela do navegador e digite: http://localhost:%1. + + + No Server + Nenhum servidor + + + Unable to start the server to port %1: %2. + Não é possível iniciar o servidor na porta %1: %2. + + + Unable to open your system browser. + Não é possível abrir o navegador do sistema. + + + Options... + Opções... + + + Out of memory + Memória insuficiente + + + Not enough memory available to display the data. + Não há memória suficiente para exibir os dados. + + + Cannot find file %1 + Não foi possível encontrar o arquivo '%1' + + + Cannot find file %1 neither in %2 nor in %3 + Não é possível encontrar o arquivo %1 nem em %2, nem em %3 + + + Save %1 Document + Salvar documento %1 + + + %1 document (*.FCStd) + documento %1 (*.FCStd) + + + Save As + Salvar como + + + %1 already exists. +Do you want to replace it? + %1 já existe. Deseja substituí-lo? + + + Document not closable + O documento não pode ser fechado + + + The document is not closable for the moment. + O documento não pode ser fechado neste momento. + + + No OpenGL + Nenhum OpenGL + + + This system does not support OpenGL + Este sistema não tem suporte a OpenGL + + + Help + Ajuda + + + Unable to load documentation. +In order to load it Qt 4.4 or higher is required. + Não é possível carregar a documentação. Para carregá-la Qt 4. 4 ou superior é necessário. + + + %1 Help + Ajuda de %1 + + + Exporting PDF... + Exportar PDF... + + + Wrong selection + Seleção errada + + + Only one object selected. Please select two objects. +Be aware the point where you click matters. + Apenas um objeto selecionado. Por favor selecione dois objetos. Lembre-se que o ponto onde você clicar tem importância. + + + Please select two objects. +Be aware the point where you click matters. + Por favor selecione dois objetos. Lembre-se o que ponto onde você clicar tem importância. + + + New boolean item + Novo item booleano + + + Navigation styles + Estilos de navegação + + + %1 navigation + navegação de %1 + + + Move annotation + Mover a anotação + + + Transform + Transformar + + + The document is in editing mode and thus cannot be closed for the moment. +You either have to finish or cancel the editing in the task panel. + O documento está no modo de edição, portanto, não pode ser fechado no momento. Você deve concluir ou cancelar a edição no painel de tarefas. + + + + StdBoxSelection + + Standard-View + Vista padrão + + + Box selection + Caixa de seleção + + + + StdCmdAbout + + Help + Ajuda + + + &About %1 + &Sobre %1 + + + About %1 + Sobre %1 + + + + StdCmdAboutQt + + Help + Ajuda + + + About &Qt + Sobre Qt + + + About Qt + Sobre o Qt + + + + StdCmdActivateNextWindow + + Window + Janela + + + Ne&xt + Pró&ximo + + + Activate next window + Ativar a janela seguinte + + + + StdCmdActivatePrevWindow + + Window + Janela + + + Pre&vious + An&terior + + + Activate previous window + Ativar a janela anterior + + + + StdCmdAlignment + + Edit + Editar + + + Alignment... + Alinhamento... + + + Align the selected objects + Alinha os objetos selecionados + + + + StdCmdArrangeIcons + + Window + Janela + + + Arrange &Icons + Organizar &icones + + + Arrange Icons + Organizar ícones + + + + StdCmdAxisCross + + Standard-View + Vista padrão + + + Toggle axis cross + Ligar/desligar símbolo de eixos + + + + StdCmdCascadeWindows + + Window + Janela + + + &Cascade + Em &cascata + + + Tile pragmatic + Lado a lado pragmático + + + + StdCmdCloseActiveWindow + + Window + Janela + + + Cl&ose + &Fechar + + + Close active window + Fechar a janela ativa + + + + StdCmdCloseAllWindows + + Window + Janela + + + Close Al&l + Fechar &tudo + + + Close all windows + Fecha todas as janelas + + + + StdCmdCommandLine + + Tools + Ferramentas + + + Start command &line... + Iniciar linha de comando... + + + Opens the command line in the console + Abre a linha de comando na consola + + + + StdCmdCopy + + Edit + Editar + + + C&opy + C&opiar + + + Copy operation + Operação de cópia + + + + StdCmdCut + + Edit + Editar + + + &Cut + Co&rtar + + + Cut out + Cortar + + + + StdCmdDelete + + Edit + Editar + + + &Delete + &Excluir + + + Deletes the selected objects + Exclui os objetos selecionados + + + + StdCmdDemoMode + + Standard-View + Vista padrão + + + View turntable... + Vista turntable... + + + View turntable + Vista turntable + + + + StdCmdDlgCustomize + + Tools + Ferramentas + + + Cu&stomize... + Per&sonalizar... + + + Customize toolbars and command bars + Personalizar barras de ferramentas e barras de comando + + + + StdCmdDlgMacroExecute + + Macros ... + Macros ... + + + Opens a dialog to let you execute a recorded macro + Abre um diálogo para que você executa uma macro gravada + + + Macro + Macro + + + + StdCmdDlgMacroExecuteDirect + + Macro + Macro + + + Execute macro + Executar macro + + + Execute the macro in the editor + Executar a macro no editor + + + + StdCmdDlgMacroRecord + + &Macro recording ... + &Gravação de macros ... + + + Opens a dialog to record a macro + Abre uma janela para gravar uma macro + + + Macro + Macro + + + + StdCmdDlgParameter + + Tools + Ferramentas + + + E&dit parameters ... + &Editar parâmetros... + + + Opens a Dialog to edit the parameters + Abre uma janela para editar os parâmetros + + + + StdCmdDlgPreferences + + Tools + Ferramentas + + + &Preferences ... + &Preferências ... + + + Opens a Dialog to edit the preferences + Abre uma janela para editar as preferências + + + + StdCmdDockViewMenu + + View + Vista + + + Vie&ws + &Vistas + + + Toggles this window + Troca esta janela + + + + StdCmdDrawStyle + + Standard-View + Vista padrão + + + Draw style + Estilo de desenho + + + + StdCmdDuplicateSelection + + Edit + Editar + + + Duplicate selection + Duplicar seleção + + + Put duplicates of the selected objects to the active document + Coloca duplicatas dos objetos selecionados no documento ativo + + + + StdCmdEdit + + Edit + Editar + + + Toggle &Edit mode + Alterar o modo de &edição + + + Toggles the selected object's edit mode + Alterna o modo de edição do objeto selecionado + + + Enters or leaves the selected object's edit mode + Entra ou sair do modo de edição do objeto selecionado + + + + StdCmdExport + + File + Arquivo + + + &Export... + &Exportar... + + + Export an object in the active document + Exportar um objeto do documento ativo + + + No selection + Nenhuma seleção + + + Please select first the objects you want to export. + Por favor, primeiro selecione os objetos que você deseja exportar. + + + + StdCmdExportGraphviz + + Tools + Ferramentas + + + Dependency graph... + Gráfico de dependência... + + + Show the dependency graph of the objects in the active document + Exibir o gráfico de dependência de objetos no documento atual + + + + StdCmdFeatRecompute + + File + Arquivo + + + &Recompute + &Recalcular + + + Recompute feature or document + Recalcular um objeto ou documento + + + + StdCmdFreeCADWebsite + + Help + Ajuda + + + FreeCAD Website + Website do FreeCAD + + + The FreeCAD website + O site do FreeCAD + + + + StdCmdFreezeViews + + Standard-View + Vista padrão + + + Freeze display + Congelar exibição + + + Freezes the current view position + Congela o ponto de vista atual + + + + StdCmdHideObjects + + Standard-View + Vista padrão + + + Hide all objects + Ocultar todos os objetos + + + Hide all objects in the document + Ocultar todos os objetos do documento + + + + StdCmdHideSelection + + Standard-View + Vista padrão + + + Hide selection + Ocultar seleção + + + Hide all selected objects + Ocultar todos os objetos selecionados + + + + StdCmdImport + + File + Arquivo + + + &Import... + &Importar... + + + Import a file in the active document + Importar um arquivo no documento ativo + + + Supported formats + Formatos suportados + + + All files (*.*) + Todos os arquivos (*.*) + + + + StdCmdMacroStartDebug + + Macro + Macro + + + Debug macro + Depurar macro + + + Start debugging of macro + Iniciar a depuração da macro + + + + StdCmdMacroStepOver + + Macro + Macro + + + Step over + Avançar + + + + StdCmdMacroStopDebug + + Macro + Macro + + + Stop debugging + Parar a depuração + + + Stop debugging of macro + Parar a depuração de macro + + + + StdCmdMacroStopRecord + + Macro + Macro + + + S&top macro recording + Parar a gravação de macro + + + Stop the macro recording session + Pare a sessão de gravação de macros + + + + StdCmdMeasureDistance + + View + Vista + + + Measure distance + Medir distância + + + + StdCmdMeasurementSimple + + Tools + Ferramentas + + + Measures distance between two selected objects + Mede a distância entre dois objetos selecionados + + + Measure distance + Medir distância + + + + StdCmdMergeProjects + + File + Arquivo + + + Merge project... + Mesclar projeto... + + + Merge project + Mesclar projeto + + + %1 document (*.fcstd) + documento %1 (*.fcstd) + + + Cannot merge project with itself. + Não é possível mesclar esse projeto com ele mesmo. + + + + StdCmdNew + + File + Arquivo + + + &New + &Novo + + + Create a new empty document + Criar um novo documento vazio + + + + StdCmdOnlineHelp + + Help + Ajuda + + + Show help to the application + Mostra a ajuda para a aplicação + + + + StdCmdOnlineHelpWebsite + + Help + Ajuda + + + Help Website + Site de ajuda + + + The website where the help is maintained + O site onde a ajuda é mantida + + + + StdCmdOpen + + File + Arquivo + + + &Open... + &Abrir... + + + Open a document or import files + Abrir um documento ou importar arquivos + + + Supported formats + Formatos suportados + + + All files (*.*) + Todos os arquivos (*.*) + + + + StdCmdPaste + + Edit + Editar + + + &Paste + Co&lar + + + Paste operation + Colar operação + + + + StdCmdPlacement + + Edit + Editar + + + Placement... + Posicionamento... + + + Place the selected objects + Colocar os objetos selecionados + + + + StdCmdPrint + + File + Arquivo + + + &Print... + &Imprimir... + + + Print the document + Imprime o documento + + + + StdCmdPrintPdf + + File + Arquivo + + + &Export PDF... + &Exportar PDF... + + + Export the document as PDF + Exportar o documento como PDF + + + + StdCmdPrintPreview + + File + Arquivo + + + &Print preview... + &Visualização de impressão... + + + Print the document + Imprime o documento + + + Print preview + Visualização de impressão + + + + StdCmdProjectInfo + + File + Arquivo + + + Project i&nformation... + I&nformação do projeto... + + + Show details of the currently active project + Mostrar os detalhes do projeto ativo + + + + StdCmdProjectUtil + + Tools + Ferramentas + + + Project utility... + Utilitário de projeto... + + + Utility to extract or create project files + Utilitário para extrair ou criar arquivos de projeto + + + + StdCmdPythonWebsite + + Help + Ajuda + + + Python Website + Website do Python + + + The official Python website + O site oficial do Python + + + + StdCmdQuit + + File + Arquivo + + + E&xit + &Sair + + + Quits the application + Finaliza o aplicativo + + + + StdCmdRandomColor + + File + Arquivo + + + Random color + Cor aleatória + + + + StdCmdRecentFiles + + File + Arquivo + + + Recent files + Arquivos recentes + + + Recent file list + Lista de arquivos recentes + + + + StdCmdRedo + + Edit + Editar + + + &Redo + &Refazer + + + Redoes a previously undone action + Refaz uma ação desfeita anteriormente + + + + StdCmdRefresh + + Edit + Editar + + + &Refresh + &Atualizar + + + Recomputes the current active document + Recalcula o documento ativo atual + + + + StdCmdSave + + File + Arquivo + + + &Save + &Salvar + + + Save the active document + Salva o documento ativo + + + + StdCmdSaveAs + + File + Arquivo + + + Save &As... + Salvar como... + + + Save the active document under a new file name + Salvar o documento ativo com um novo nome de arquivo + + + + StdCmdSceneInspector + + Tools + Ferramentas + + + Scene inspector... + Inspetor de cena... + + + Scene inspector + Inspetor de cena + + + + StdCmdSelectAll + + Edit + Editar + + + Select &All + Selecionar &tudo + + + Select all + Selecionar tudo + + + + StdCmdSetAppearance + + Standard-View + Vista padrão + + + Appearance... + Aparência... + + + Sets the display properties of the selected object + Define as propriedades de exibição do objeto selecionado + + + + StdCmdShowObjects + + Standard-View + Vista padrão + + + Show all objects + Mostrar todos os objectos + + + Show all objects in the document + Mostrar todos os objetos do documento + + + + StdCmdShowSelection + + Standard-View + Vista padrão + + + Show selection + Exibir seleção + + + Show all selected objects + Mostrar todos os objetos selecionados + + + + StdCmdStatusBar + + View + Vista + + + Status bar + Barra de status + + + Toggles the status bar + Alterna a barra de status + + + + StdCmdTextureMapping + + Tools + Ferramentas + + + Texture mapping... + Mapeamento de textura... + + + Texture mapping + Mapeamento de textura + + + + StdCmdTileWindows + + Window + Janela + + + &Tile + Lado a lado + + + Tile the windows + Organiza as janelas lado a lado + + + + StdCmdToggleBreakpoint + + Macro + Macro + + + Toggle breakpoint + Alternar ponto de interrupção + + + + StdCmdToggleClipPlane + + Standard-View + Vista padrão + + + Clipping plane + Plano de clipping + + + Toggles clipping plane for active view + Alterna plano de clipping da vista ativa + + + + StdCmdToggleNavigation + + Standard-View + Vista padrão + + + Toggle navigation/Edit mode + Alternar o modo de navegação/modo de edição + + + Toggle between navigation and edit mode + Alternar entre o modo de edição e navegação + + + + StdCmdToggleObjects + + Standard-View + Vista padrão + + + Toggle all objects + Alternar todos os objetos + + + Toggles visibility of all objects in the active document + Alterna a visibilidade de todos os objetos do documento ativo + + + + StdCmdToggleSelectability + + Standard-View + Vista padrão + + + Toggle selectability + Alternar seletibilidade + + + Toggles the property of the objects to get selected in the 3D-View + Alterna a possibilidade dos objetos serem selecionados na vista 3D + + + + StdCmdToggleVisibility + + Standard-View + Vista padrão + + + Toggle visibility + Mudar visibilidade + + + Toggles visibility + Troca a visibilidade + + + + StdCmdToolBarMenu + + View + Vista + + + Tool&bars + &Barras de ferramentas + + + Toggles this window + Troca esta janela + + + + StdCmdTransform + + Edit + Editar + + + Transform... + Transformar... + + + Transform the geometry of selected objects + Transformar a geometria dos objetos selecionados + + + + StdCmdTreeSelection + + View + Vista + + + Go to selection + Ir para a seleção + + + Scroll to first selected item + Vai para o primeiro item selecionado + + + + StdCmdUndo + + Edit + Editar + + + &Undo + &Desfazer + + + Undo exactly one action + Desfazer só uma ação + + + + StdCmdUserInterface + + View + Vista + + + Dock views + Ancorar vistas + + + Dock all top-level views + Ancorar todas as vistas de nível superior + + + + StdCmdViewAxo + + Standard-View + Vista padrão + + + Axometric + Axonométrico + + + Set to axometric view + Definir como vista axonométrica + + + + StdCmdViewBottom + + Standard-View + Vista padrão + + + Bottom + De baixo + + + Set to bottom view + Ver de baixo + + + + StdCmdViewCreate + + Standard-View + Vista padrão + + + Create new view + Criar uma nova vista + + + Creates a new view window for the active document + Cria uma nova janela de exibição para o documento ativo + + + + StdCmdViewExample1 + + Standard-View + Vista padrão + + + Inventor example #1 + Exemplo Inventor #1 + + + Shows a 3D texture with manipulator + Mostra uma textura 3D com manipulador + + + + StdCmdViewExample2 + + Standard-View + Vista padrão + + + Inventor example #2 + Exemplo Inventor #2 + + + Shows spheres and drag-lights + Mostra esferas e luzes de arrasto + + + + StdCmdViewExample3 + + Standard-View + Vista padrão + + + Inventor example #3 + Exemplo Inventor #3 + + + Shows a animated texture + Mostra uma textura animada + + + + StdCmdViewFitAll + + Standard-View + Vista padrão + + + Fit all + Enquadrar tudo + + + Fits the whole content on the screen + Adapta todo o conteúdo na tela + + + + StdCmdViewFitSelection + + Standard-View + Vista padrão + + + Fit selection + Enquadrar seleção + + + Fits the selected content on the screen + Adapta o conteúdo selecionado na tela + + + + StdCmdViewFront + + Standard-View + Vista padrão + + + Front + Frente + + + Set to front view + Ajusta para a vista frontal + + + + StdCmdViewIvIssueCamPos + + Standard-View + Vista padrão + + + Issue camera position + Mostrar a posição da câmera + + + Issue the camera position to the console and to a macro, to easily recall this position + Mostrar a posição da câmera no console e numa macro, para recuperar facilmente essa posição + + + + StdCmdViewIvStereoInterleavedColumns + + Standard-View + Vista padrão + + + Stereo Interleaved Columns + Colunas estéreo intercaladas + + + Switch stereo viewing to Interleaved Columns + Mudar de visualização stereo para Colunas Intercaladas + + + + StdCmdViewIvStereoInterleavedRows + + Standard-View + Vista padrão + + + Stereo Interleaved Rows + Linhas estéreo intercaladas + + + Switch stereo viewing to Interleaved Rows + Alternar visualização estéreo para linhas intercaladas + + + + StdCmdViewIvStereoOff + + Standard-View + Vista padrão + + + Stereo Off + Desligar estéreo + + + Switch stereo viewing off + Desligar o modo de visualização estéreo + + + + StdCmdViewIvStereoQuadBuff + + Standard-View + Vista padrão + + + Stereo quad buffer + Quad buffer estéreo + + + Switch stereo viewing to quad buffer + Alternar visualização estéreo para quad buffer + + + + StdCmdViewIvStereoRedGreen + + Standard-View + Vista padrão + + + Stereo red/green + Estéreo vermelho/verde + + + Switch stereo viewing to red/green + Alternar visualização estéreo para vermelho/verde + + + + StdCmdViewLeft + + Standard-View + Vista padrão + + + Left + Esquerda + + + Set to left view + Ajusta para a vista esquerda + + + + StdCmdViewRear + + Standard-View + Vista padrão + + + Rear + Traseira + + + Set to rear view + Vista de trás + + + + StdCmdViewRight + + Standard-View + Vista padrão + + + Right + Direito + + + Set to right view + Vista direita + + + + StdCmdViewRotateLeft + + Standard-View + Vista padrão + + + Rotate Left + Girar para esquerda + + + Rotate the view by 90° counter-clockwise + Girar 90º no sentido anti-horário + + + + StdCmdViewRotateRight + + Standard-View + Vista padrão + + + Rotate Right + Girar para direita + + + Rotate the view by 90° clockwise + Girar a vista para 90º no sentido horário + + + + StdCmdViewTop + + Standard-View + Vista padrão + + + Top + Topo + + + Set to top view + Vista de topo + + + + StdCmdWhatsThis + + Help + Ajuda + + + &What's This? + O &Que é Isso? + + + What's This + O Que é Isso + + + + StdCmdWindows + + Window + Janela + + + &Windows... + &Janelas... + + + Windows list + Lista de janelas + + + + StdCmdWindowsMenu + + Window + Janela + + + Activates this window + Ativar esta janela + + + + StdCmdWorkbench + + View + Vista + + + Workbench + Bancada + + + Switch between workbenches + Alternar entre bancadas + + + + StdOrthographicCamera + + Standard-View + Vista padrão + + + Orthographic view + Vista ortográfica + + + Switches to orthographic view mode + Alterna para o modo de exibição ortográfica + + + + StdPerspectiveCamera + + Standard-View + Vista padrão + + + Perspective view + Vista em perspectiva + + + Switches to perspective view mode + Alterna para o modo de visualização em perspectiva + + + + StdViewBoxZoom + + Standard-View + Vista padrão + + + Box zoom + Zoom por caixa + + + + StdViewDockUndockFullscreen + + Standard-View + Vista padrão + + + Document window + Janela do documento + + + Display the active view either in fullscreen, in undocked or docked mode + Mostrar a vista activa em tela cheia, em modo desencaixado ou encaixado + + + + StdViewScreenShot + + Standard-View + Vista padrão + + + Save picture... + Salvar imagem... + + + Creates a screenshot of the active view + Cria uma captura de tela da vista activa + + + + StdViewZoomIn + + Standard-View + Vista padrão + + + Zoom In + Ampliar + + + + StdViewZoomOut + + Standard-View + Vista padrão + + + Zoom Out + Reduzir + + + + Std_DrawStyle + + As is + Como é + + + Normal mode + Modo normal + + + Wireframe + Arame + + + Wireframe mode + Modo de arame + + + + Std_ExportGraphviz + + Graphviz not found + Graphviz não encontrado + + + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + Graphviz não foi encontrado no seu sistema. +Você deseja especificar manualmente a pasta onde ele está instalado? + + + Graphviz installation path + Caminho da instalação do Graphviz + + + Dependency graph + Gráfico de dependência + + + Graphviz failed + Falha no Graphviz + + + Graphviz failed to create an image file + O Graphviz falhou ao criar um arquivo de imagem + + + + Workbench + + &File + &Arquivo + + + &Edit + &Editar + + + Standard views + Vistas padrão + + + &Stereo + E&stéreo + + + &Zoom + &Zoom + + + Visibility + Visibilidade + + + &View + &Vista + + + &Tools + &Ferramentas + + + &Macro + &Macro + + + &Windows + &Janelas + + + &On-line help + A&juda on-line + + + &Help + A&juda + + + File + Arquivo + + + Macro + Macro + + + View + Vista + + + Special Ops + Operações especiais + + + + testClass + + test + teste + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + + + Choose the style of the Task Panel + Escolha o estilo do painel de tarefas + + + Default + Padrão + + + Windows XP + Windows XP + + + diff --git a/src/Gui/Language/FreeCAD_pt.ts b/src/Gui/Language/FreeCAD_pt.ts deleted file mode 100644 index 7f76a4e8e..000000000 --- a/src/Gui/Language/FreeCAD_pt.ts +++ /dev/null @@ -1,5896 +0,0 @@ - - - - - Angle - - Form - Formulário - - - A: - A: - - - B: - B: - - - C: - C: - - - Angle Snap - Snap de ângulo - - - 1 ° - 1 ° - - - 2 ° - 2 ° - - - 5 ° - 5 ° - - - 10 ° - 10 ° - - - 20 ° - 20 ° - - - 45 ° - 45 ° - - - 90 ° - 90 ° - - - 180 ° - 180 ° - - - - Gui::AccelLineEdit - - none - nenhum - - - - Gui::ActionSelector - - Available: - - - - Selected: - - - - Add - Adicionar - - - Remove - Remover - - - Move up - Mover para cima - - - Move down - Move para baixo - - - - Gui::AlignmentView - - Movable object - - - - Fixed object - - - - - Gui::BlenderNavigationStyle - - Press left mouse button - Pressione o botão esquerdo do mouse - - - Press SHIFT and middle mouse button - Pressione SHIFT e o botão do meio do mouse - - - Press middle mouse button - Pressione o botão do meio do mouse - - - Scroll middle mouse button - Role a roda do mouse - - - - Gui::CADNavigationStyle - - Press left mouse button - Pressione o botão esquerdo do mouse - - - Press middle mouse button - Pressione o botão do meio do mouse - - - Press left and middle mouse button - Pressione o botão esquerdo e do meio do mouse - - - Scroll middle mouse button - Role a roda do mouse - - - - Gui::Command - - Standard - Padrão - - - - Gui::ContainerDialog - - &OK - &OK - - - &Cancel - &Cancelar - - - - Gui::ControlSingleton - - Task panel - Painel de tarefas - - - - Gui::Dialog::AboutApplication - - About - Sobre - - - Revision number - Número de revisão - - - Version - Versão - - - OK - OK - - - - - - - Release date - Data de lançamento - - - Platform - Plataforma - - - License... - Licença... - - - Copy to clipboard - - - - - Gui::Dialog::ButtonModel - - Button %1 - Botão %1 - - - Out Of Range - Fora do intervalo - - - - Gui::Dialog::CommandModel - - Commands - Comandos - - - - Gui::Dialog::DemoMode - - View Turntable - Vista Turntable - - - Speed - Velocidade - - - Maximum - Máximo - - - Minimum - Mínimo - - - Fullscreen - Tela cheia - - - Enable timer - Habilitar o timer - - - s - s - - - Angle - Ângulo - - - 90° - 90° - - - -90° - -90° - - - Play - Reproduzir - - - Stop - Parar - - - Close - Fechar - - - - Gui::Dialog::DlgActivateWindow - - Choose Window - Escolhe uma Janela - - - &Activate - &Ativar - - - Alt+A - Alt + A - - - &Cancel - &Cancelar - - - - - - - - Gui::Dialog::DlgActivateWindowImp - - Windows - Janelas - - - - Gui::Dialog::DlgAuthorization - - Authorization - Autorização - - - &OK - &OK - - - &Cancel - &Cancelar - - - Password: - Senha: - - - User name: - Nome de usuário: - - - - - - - - Gui::Dialog::DlgChooseIcon - - Choose Icon - Escolher ícone - - - OK - OK - - - Cancel - Cancelar - - - Add icons... - Adicionar ícones ... - - - - Gui::Dialog::DlgCustomActions - - Macros - Macros - - - Setup Custom Macros - Configurar macros personalizadas - - - Macro: - Macro: - - - ... - ... - - - Pixmap - Imagem - - - Accelerator: - Atalho: - - - What's this: - O Que é Isto: - - - Status text: - Texto de status: - - - Tool tip: - Dica: - - - Menu text: - Texto do menu: - - - Add - Adicionar - - - Remove - Remover - - - Replace - Substituir - - - - Gui::Dialog::DlgCustomActionsImp - - Icons - Ícones - - - Macros - Macros - - - No macro - Nenhuma macro - - - No macros found. - Nenhuma macro encontrada. - - - Macro not found - Macro não encontrada - - - Sorry, couldn't find macro file '%1'. - Desculpe, não foi possível encontrar o arquivo de macro '%1'. - - - Empty macro - Macro vazia - - - Please specify the macro first. - Por favor especifique a macro primeiro. - - - Empty text - Texto vazio - - - Please specify the menu text first. - Por favor especifique o texto do menu primeiro. - - - No item selected - Nenhum item selecionado - - - Please select a macro item first. - Primeiro, selecione uma macro. - - - - Gui::Dialog::DlgCustomCommands - - Commands - Comandos - - - - - - - - Gui::Dialog::DlgCustomCommandsImp - - Category - Categoria - - - Icon - Ícone - - - Command - Comando - - - - Gui::Dialog::DlgCustomKeyboard - - Keyboard - Teclado - - - Description: - Descrição: - - - &Category: - &Categoria: - - - C&ommands: - C&omandos: - - - Current shortcut: - Atalho atual: - - - Press &new shortcut: - Indique o &novo atalho: - - - Currently assigned to: - Atualmente atribuído a: - - - &Assign - &Atribuir - - - Alt+A - Alt + A - - - &Reset - &Restaurar - - - Alt+R - Alt + R - - - Re&set All - Re&definir Tudo - - - Alt+S - Alt + D - - - - - - - - Gui::Dialog::DlgCustomKeyboardImp - - Icon - Ícone - - - Command - Comando - - - none - nenhum - - - Multiple defined shortcut - Atalho definido várias vezes - - - The shortcut '%1' is defined more than once. This could result into unexpected behaviour. - O atalho '%1' é definido mais de uma vez. Isso pode provocar um comportamento inesperado. - - - Already defined shortcut - Atalho já definido - - - The shortcut '%1' is already assigned to '%2'. - -Please define another shortcut. - O atalho '%1' já está atribuído a '%2'. -Defina outro atalho. - - - - Gui::Dialog::DlgCustomToolBoxbarsImp - - Toolbox bars - Barras de ferramentas - - - - Gui::Dialog::DlgCustomToolbars - - Toolbars - Barras de ferramentas - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> As mudanças terão efeito quando carregar novamente o Workbench apropriado</p></body></html> - - - Move right - Mover para a direita - - - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Move o item selecionado um nível abaixo.</b> <p> Isso também irá alterar o nível do item pai. </p> - - - Move left - Mover para a esquerda - - - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Mover o item selecionado um nível acima.</b> <p> Isso também irá alterar o nível do item pai. </p> - - - Move down - Move para baixo - - - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Move o item selecionado para baixo.</b> <p> O item será movido dentro do nível de hierarquia. </p> - - - Move up - Mover para cima - - - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Move o item selecionado para cima.</b> <p> O item será movido dentro do nível de hierarquia. </p> - - - New... - Novo... - - - Rename... - Renomear... - - - Delete - Excluir - - - Icon - Ícone - - - Command - Comando - - - <Separator> - <Separator> - - - New toolbar - Nova barra de ferramentas - - - Toolbar name: - Nome da barra de ferramentas: - - - Duplicated name - Nome duplicado - - - The toolbar name '%1' is already used - O nome de barra de ferramentas '%1' já está sendo usado - - - Rename toolbar - Renomear barra de ferramentas - - - - - - - - Gui::Dialog::DlgCustomizeImp - - Customize - Personalizar - - - &Help - A&juda - - - &Close - &Fechar - - - - Gui::Dialog::DlgCustomizeSpaceball - - Spaceball - Spaceball - - - No Spaceball Present - Nenhum Spaceball encontrado - - - Buttons - Botões - - - Clear - Limpar - - - Print Reference - Imprimir referência - - - - Gui::Dialog::DlgDisplayProperties - - Display properties - Exibir propriedades - - - Display - Tela - - - Transparency: - Transparência: - - - Line width: - Largura da linha: - - - Point size: - Tamanho de ponto: - - - Material - Material - - - ... - ... - - - Close - Fechar - - - Viewing mode - Modo de visualização - - - Display mode: - Modo de exibição: - - - Plot mode: - Modo de impressão: - - - - - - - Line transparency: - Transparência das linhas: - - - Line color: - Cor das linhas: - - - Shape color: - Cor das formas: - - - Color plot: - Cor de plotagem: - - - Document window: - - - - - Gui::Dialog::DlgEditorSettings - - Editor - Editor - - - Options - Opções - - - Enable line numbers - Ativar números de linha - - - Enable folding - Habilitar dobra - - - Indentation - Indentação - - - Insert spaces - Inserir espaços - - - Tab size: - Tamanho da tabulação: - - - Indent size: - Tamanho da indentação: - - - Keep tabs - Manter abas - - - Display Items - Exibir itens - - - Family: - Família: - - - Size: - Tamanho: - - - Preview: - Pré-visualização: - - - - - - - - Gui::Dialog::DlgGeneral - - General - Geral - - - Start up - Início - - - Enable splash screen at start up - Mostrar a tela de splash ao iniciar - - - Switch to tab of report window: - Alternar para a guia da janela de relatório: - - - Auto load module after start up: - Auto-carregar módulo ao iniciar: - - - Language - Idioma - - - Change language: - Alterar idioma: - - - Main window - Janela principal - - - Size of recent file list - Tamanho da lista de arquivos recentes - - - Window style: - Estilo de janela: - - - Size of toolbar icons: - Tamanho dos ícones da barra de ferramentas: - - - - Gui::Dialog::DlgGeneralImp - - Default (%1 x %1) - Padrão (%1 x %1) - - - Small (%1 x %1) - Pequeno (%1 x %1) - - - Large (%1 x %1) - Grande (%1 x %1) - - - Extra large (%1 x %1) - Muito grande (%1 x %1) - - - - Gui::Dialog::DlgInputDialog - - Input - Entrada - - - OK - OK - - - Cancel - Cancelar - - - - - - - - Gui::Dialog::DlgInspector - - Scene Inspector - Inspetor de cena - - - - Gui::Dialog::DlgMacroExecute - - Execute macro - Executar macro - - - Macro name: - Nome da macro: - - - Macro destination: - Destino da macro: - - - Execute - Executar - - - Close - Fechar - - - Create - Criar - - - Delete - Excluir - - - Edit - Editar - - - - Gui::Dialog::DlgMacroExecuteImp - - Macros - Macros - - - Macro file - Arquivo de macro - - - Enter a file name, please: - Digite um nome de arquivo, por favor: - - - Existing file - Arquivo existente - - - '%1'. -This file already exists. - '%1'. -Este arquivo já existe. - - - Delete macro - Excluir macro - - - Do you really want to delete the macro '%1'? - Você realmente deseja excluir a macro '%1'? - - - Cannot create file - Não é possível criar o arquivo - - - Creation of file '%1' failed. - Falha na criação do arquivo '%1'. - - - - Gui::Dialog::DlgMacroRecord - - Macro recording - Gravação de macros - - - Macro name: - Nome da macro: - - - Stop - Parar - - - Cancel - Cancelar - - - Macro path: - Caminho de macro: - - - ... - ... - - - Record - Gravar - - - - Gui::Dialog::DlgMacroRecordImp - - Macro recorder - Gravador de macro - - - Specify first a place to save. - Especifique um local para salvar. - - - Existing macro - Macro existente - - - The macro '%1' already exists. Do you want to overwrite? - A macro '%1' já existe. Deseja substituir? - - - The macro directory doesn't exist. Please, choose another one. - O diretório de macro não existe. Por favor, escolha um outro. - - - Choose macro directory - Escolha o diretório de macros - - - - Gui::Dialog::DlgMaterialProperties - - Material properties - Propriedades do material - - - &Close - &Fechar - - - Alt+C - Alt + C - - - Material - Material - - - Diffuse color: - Cor Diffuse: - - - Specular color: - Cor Specular: - - - Shininess: - Brilho: - - - % - % - - - Ambient color: - Cor ambiente: - - - - - - - Emissive color: - Cor de emissão: - - - - Gui::Dialog::DlgOnlineHelp - - On-line help - Ajuda on-line - - - Help viewer - Visualizador da ajuda - - - Location of start page - Localização da página inicial - - - - Gui::Dialog::DlgOnlineHelpImp - - HTML files (*.html *.htm) - Arquivos HTML (*.html *.htm) - - - Access denied - Acesso negado - - - Access denied to '%1' - -Specify another directory, please. - Acesso negado a '%1' -Por favor especifique outro diretório. - - - - Gui::Dialog::DlgParameter - - Parameter Editor - Editor de parâmetros - - - Save to disk - Salvar no disco - - - Alt+C - Alt + C - - - &Close - &Fechar - - - - Gui::Dialog::DlgParameterImp - - Group - Grupo - - - Name - Nome - - - Type - Tipo - - - Value - Valor - - - User parameter - Parâmetros de usuário - - - Invalid input - Entrada inválida - - - Invalid key name '%1' - Nome da chave inválido '%1' - - - System parameter - Parâmetro de sistema - - - - Gui::Dialog::DlgPreferences - - Preferences - Preferências - - - &Help - A&juda - - - Alt+H - Alt+J - - - &OK - &OK - - - &Apply - &Aplicar - - - Alt+A - Alt + A - - - &Cancel - &Cancelar - - - - - - - - Gui::Dialog::DlgPreferencesImp - - Wrong parameter - Parâmetro incorreto - - - - Gui::Dialog::DlgProjectInformation - - Project information - Informações do projeto - - - Information - Informação - - - &Name: - &Nome: - - - Commen&t: - Comen&tário: - - - Path: - Caminho: - - - &Last modified by: - &Modificado por último por: - - - Created &by: - Criado &por: - - - Com&pany: - &Empresa: - - - Last &modification date: - Data da última &modificação: - - - Creation &date: - &Data de criação: - - - &OK - &OK - - - &Cancel - &Cancelar - - - - - - - - Gui::Dialog::DlgProjectUtility - - Project utility - Utilitário de projeto - - - Extract project - Extrair um projeto - - - Source - Fonte - - - Project file (*.fcstd) - Arquivo de projeto (*.fcstd) - - - Destination - Destino - - - Extract - Extrair - - - Create project - Criar projeto - - - Document.xml - Document.xml - - - Create - Criar - - - Load project file after creation - Carregar o arquivo de projeto após a criação - - - Empty source - Fonte vazia - - - No source is defined. - Nenhuma fonte foi definida. - - - Empty destination - Destino vazio - - - No destination is defined. - Nenhum destino foi definido. - - - - Gui::Dialog::DlgReportView - - Output window - janela de saída - - - Output - Saída - - - Record log messages - Gravar mensagens de log - - - Record warnings - Gravar advertências - - - Record error messages - Gravar mensagens de erro - - - Colors - Cores - - - Normal messages: - Mensagens normais: - - - Log messages: - Mensagens de log: - - - Warnings: - Advertências: - - - Errors: - Erros: - - - - - - - Redirect internal Python errors to report view - Redirecionar erros internos do Python para a janela de relatório - - - Redirect internal Python output to report view - Redirecionar a saída interna de Python para a janela de relatório - - - - Gui::Dialog::DlgRunExternal - - Running external program - Executando programa externo - - - TextLabel - Rótulo de texto - - - Advanced >> - Avançado >> - - - ... - ... - - - Accept changes - Aceitar mudanças - - - Discard changes - Descartar alterações - - - Abort program - Abortar o programa - - - Help - Ajuda - - - Select a file - Selecione um arquivo - - - - Gui::Dialog::DlgSettings3DView - - 3D View - Vista 3D - - - 3D View settings - Configurações de visualização 3D - - - Show coordinate system in the corner - Mostrar sistema de coordenadas no canto - - - Show counter of frames per second - Mostrar contador de frames por segundo - - - Enable animation - Habilitar animação - - - Enable anti-aliasing (slower) - Habilitar anti-aliasing (mais lento) - - - Eye to eye distance for stereo modes: - Distância entre olhos para modos estéreo: - - - Camera type - Tipo de câmera - - - Orthographic rendering - Renderização ortográfica - - - Perspective rendering - Renderização perspectiva - - - - - - - 3D Navigation - Navegação 3D - - - Mouse... - Mouse... - - - Intensity of backlight - Intensidade da luz de fundo - - - Enable backlight color - Habilitar a cor da luz de fundo - - - Orbit style - Estilo de orbita - - - Turntable - Plataforma - - - Trackball - Trackball - - - Invert zoom - Inverter o zoom - - - Zoom at cursor - - - - Zoom step - - - - - Gui::Dialog::DlgSettings3DViewImp - - %1 navigation - navegação de %1 - - - - Gui::Dialog::DlgSettingsColorGradient - - Color model - Modelo de cores - - - &Gradient: - &Gradiente: - - - red-yellow-green-cyan-blue - vermelho-amarelo-verde-ciano-azul - - - blue-cyan-green-yellow-red - azul-turquesa-verde-amarelo-vermelho - - - white-black - branco-preto - - - black-white - preto-branco - - - Visibility - Visibilidade - - - Out g&rayed - Saída &inativa - - - Alt+R - Alt + R - - - Out &invisible - Saída in&visível - - - Alt+I - Alt+v - - - Style - Estilo - - - &Zero - Zero - - - Alt+Z - Alt + Z - - - &Flow - &Fluxo - - - Alt+F - Alt + F - - - &OK - &OK - - - &Cancel - &Cancelar - - - Parameter range - Intervalo de parâmetros - - - Mi&nimum: - Mí&nimo: - - - Ma&ximum: - Má&ximo: - - - &Labels: - Rótu&los: - - - &Decimals: - &Decimais: - - - - - - - Color-gradient settings - Configurações de gradiente de cores - - - - Gui::Dialog::DlgSettingsColorGradientImp - - Wrong parameter - Parâmetro incorreto - - - The maximum value must be higher than the minimum value. - O valor máximo deve ser superior ao valor mínimo. - - - - Gui::Dialog::DlgSettingsDocument - - Document - Documento - - - General - Geral - - - Document save compression level -(0 = none, 9 = highest, 3 = default) - Nível de compactação ao salvar documentos (0 = nenhum, 9 = mais alto, 3 = padrão) - - - Create new document at start up - Criar um novo documento ao iniciar - - - Storage - Armazenamento - - - Saving transactions (Auto-save) - Salvar as transações (auto-save) - - - Discard saved transaction after saving document - Descartar transações salvas depois de salvar o documento - - - Save thumbnail into project file when saving document - Salvar miniatura no arquivo quando salvar um documento - - - Create up to backup files when resaving document - Criar arquivos de backup ao salvar o documento - - - Document objects - Objetos do documento - - - Allow duplicate object labels in one document - Permitir rótulos de objetos duplicados em um documento - - - Maximum Undo/Redo steps - Número máximo de operações Desfazer/Refazer - - - Using Undo/Redo on documents - Usar Desfazer/Refazer em documentos - - - - Gui::Dialog::DlgSettingsEditorImp - - Text - Texto - - - Bookmark - Favorito - - - Breakpoint - Ponto de Interrupção - - - Keyword - Palavra-chave - - - Comment - Comentário - - - Block comment - Comentário de bloco - - - Number - Número - - - String - Texto - - - Character - Caráter - - - Class name - Nome de classe - - - Define name - Definir nome - - - Operator - Operador - - - Python output - Saída de Python - - - Python error - Erro de python - - - Items - Itens - - - Current line highlight - - - - - Gui::Dialog::DlgSettingsImage - - Image settings - Configurações de imagem - - - Image properties - Propriedades de imagem - - - Back&ground: - P&lano de Fundo: - - - Current - Atual - - - White - Branco - - - Black - Preto - - - Transparent - Transparente - - - Image dimensions - Dimensões da imagem - - - Pixel - Pixel - - - &Width: - &Largura: - - - Current screen - Tela atual - - - Icon 32 x 32 - Ícone de 32 x 32 - - - Icon 64 x 64 - Ícone de 64 x 64 - - - Icon 128 x 128 - Ícone de 128 x 128 - - - CGA 320 x 200 - CGA 320 x 200 - - - QVGA 320 x 240 - QVGA 320 x 240 - - - VGA 640 x 480 - VGA 640 x 480 - - - NTSC 720 x 480 - NTSC 720 x 480 - - - PAL 768 x 578 - PAL 768 x 578 - - - SVGA 800 x 600 - SVGA 800 x 600 - - - XGA 1024 x 768 - XGA 1024 x 768 - - - HD720 1280 x 720 - HD720 1280 x 720 - - - SXGA 1280 x 1024 - SXGA 1280 x 1024 - - - SXGA+ 1400 x 1050 - SXGA+ 1400 x 1050 - - - UXGA 1600 x 1200 - UXGA 1600 x 1200 - - - HD1080 1920 x 1080 - HD1080 1920 x 1080 - - - WUXGA 1920 x 1200 - WUXGA 1920 x 1200 - - - QXGA 2048 x 1538 - QXGA 2048 x 1538 - - - WQXGA 2560 x 1600 - WQXGA 2560 x 1600 - - - QSXGA 2560 x 2048 - QSXGA 2560 x 2048 - - - QUXGA 3200 × 2400 - QUXGA 3200 × 2400 - - - HUXGA 6400 × 4800 - HUXGA 6400 × 4800 - - - !!! 10000 x 10000 - !!! 10000 x 10000 - - - Standard sizes: - Tamanhos padrão: - - - &Height: - &Altura: - - - Aspect ratio: - Proporção: - - - &Screen - &Tela - - - Alt+S - Alt + D - - - &4:3 - &4:3 - - - Alt+4 - Alt+4 - - - 1&6:9 - 1&6:9 - - - Alt+6 - Alt+6 - - - &1:1 - &1:1 - - - Alt+1 - Alt +1 - - - Image comment - Comentário da imagem - - - Insert MIBA - Inserir MIBA - - - Insert comment - Inserir comentário - - - - Gui::Dialog::DlgSettingsMacro - - Macro - Macro - - - Macro recording settings - Configurações de gravação de macros - - - Logging Commands - Comandos de log - - - Show script commands in python console - Mostrar os comandos de script no console python - - - Log all commands issued by menus to file: - Salvar todos os comandos emitidos por menus em arquivo de log: - - - FullScript.FCScript - FullScript.FCScript - - - Gui commands - Comandos da interface gráfica - - - Recording GUI commands - Gravar os comandos da interface gráfica - - - Record as comment - Gravar como comentário - - - Macro path - Caminho de macro - - - General macro settings - - - - Run macros in local environment - - - - - Gui::Dialog::DlgSettingsUnits - - Units - Unidades - - - Units settings - Configurações de unidades - - - Standard (mm/kg/s/degree) - Padrão (mm,kg,s,grau) - - - MKS (m/kg/s/degree) - MKS (m/kg/s/graus) - - - Magnitude - Magnitude - - - Unit - Unidade - - - User system: - sistema do usuário: - - - Imperial (in/lb) - Imperial (in/lb) - - - - Gui::Dialog::DlgSettingsViewColor - - Colors - Cores - - - Selection - Seleção - - - Enable selection highlighting - Habilitar o enfoque da seleção - - - Enable preselection highlighting - Habilitar o enfoque de preseleção - - - Background color - Cor de fundo - - - Middle color - Cor intermediária - - - Color gradient - Gradiente de cor - - - Simple color - Cor simples - - - Default colors - Cores padrão - - - Edited edge color - Cor de linha em modo de edição - - - Edited vertex color - Cor dos vértices editados - - - Construction geometry - Geometria de construção - - - Fully constrained geometry - Geometria totalmente restrita - - - The color of construction geometry in editmode - A cor da geometria de construção em modo de edição - - - The color of fully constrained geometry in editmode - A cor da geometria totalmente restrita em modo de edição - - - The color of vertices being edited - A cor dos vértices em modo de edição - - - The color of edges being edited - A cor das linhas em modo de edição - - - The color of construction geometry in edit mode - - - - The color of fully constrained geometry in edit mode - - - - Cursor text color - - - - Default shape color - - - - The default color for new shapes - - - - Default line width and color - - - - The default line color for new shapes - - - - The default line thickness for new shapes - - - - px - - - - - Gui::Dialog::DlgTipOfTheDay - - Tip of the day - Dica do dia - - - <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> - <b><font face="Times New Roman"> <font size="+3"> você sabia...</font></font></b> - - - &Show tips at start up - &Mostrar dicas ao iniciar - - - Alt+S - Alt + D - - - &Next Tip - &Próxima dica - - - Alt+N - Alt + P - - - &Close - &Fechar - - - Alt+C - Alt + C - - - - - - - - Gui::Dialog::DlgTipOfTheDayImp - - Download failed: %1 - - O Download falhou: %1 - - - If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. - Se você quiser saber mais sobre FreeCAD você deve ir para %1 ou pressione o item ajuda no menu Ajuda. - - - - Gui::Dialog::DockablePlacement - - Placement - Posicionamento - - - - Gui::Dialog::DownloadDialog - - Canceled. - Cancelado. - - - Download - - - - Cancel - Cancelar - - - Close - Fechar - - - There already exists a file called %1 in the current directory. Overwrite? - - - - Unable to save the file %1: %2. - - - - Downloading %1. - - - - Download canceled. - - - - Download failed: %1. - O download falhou: %1. - - - Downloaded %1 to current directory. - - - - - Gui::Dialog::IconDialog - - Add icon - Adicionar um ícone - - - - Gui::Dialog::InputVector - - Input vector - Vetor de entrada - - - Vector - Vetor - - - Z: - Z: - - - Y: - Y: - - - X: - X: - - - OK - OK - - - - Gui::Dialog::LicenseDialog - - Copyright - - - - - Gui::Dialog::MouseButtons - - Mouse buttons - Botões do mouse - - - Configuration - Configuração - - - Selection: - Seleção: - - - Panning - Pan - - - Rotation: - Rotação: - - - Zooming: - Zoom: - - - - Gui::Dialog::ParameterGroup - - Expand - Expandir - - - Add sub-group - Adicionar sub-grupo - - - Remove group - Remover grupo - - - Rename group - Renomear grupo - - - Export parameter - Parâmetros de exportação - - - Import parameter - Parâmetros de importação - - - Collapse - Recolher - - - Do really want to remove this parameter group? - Você realmente deseja remover este grupo de parâmetros? - - - Existing sub-group - Subgrupo existente - - - The sub-group '%1' already exists. - O subgrupo '%1' já existe. - - - Export parameter to file - Exportar parâmetros para arquivo - - - XML (*.FCParam) - XML (*. FCParam) - - - Import parameter from file - Importar parâmetros de arquivo - - - Import Error - Erro de importação - - - Reading from '%1' failed. - Leitura de '1%' falhou. - - - - Gui::Dialog::ParameterValue - - Change value - Mudar o valor - - - Remove key - Remover a chave - - - Rename key - Renomear a chave - - - New - Novo - - - New string item - Novo item string - - - New float item - Novo item float - - - New integer item - Novo item inteiro - - - New unsigned item - Novo item unsigned - - - New Boolean item - Novo item Boolean - - - Existing item - Item existente - - - The item '%1' already exists. - O item '%1' já existe. - - - - Gui::Dialog::Placement - - Placement - Posicionamento - - - OK - OK - - - Translation: - Translação: - - - Z: - Z: - - - Y: - Y: - - - X: - X: - - - Rotation: - Rotação: - - - Angle: - Ângulo: - - - Axis: - Eixo: - - - Center: - Centro: - - - Pitch: - Altura: - - - Roll: - Roll: - - - Yaw: - Guinada: - - - Rotation axis with angle - Eixo de rotação com ângulo - - - Euler angles - Ângulos de Euler - - - Apply placement changes immediately - Aplicar alterações de posicionamento imediatamente - - - Apply incremental changes to object placement - Aplicar as alterações incrementais ao posicionamento do objeto - - - Apply - Aplicar - - - Reset - Restaurar - - - Close - Fechar - - - - Gui::Dialog::PrintModel - - Button - Botão - - - Command - Comando - - - - Gui::Dialog::SceneInspector - - Dialog - Diálogo - - - Close - Fechar - - - Refresh - Atualizar - - - - Gui::Dialog::SceneModel - - Inventor Tree - Árvore do Inventor - - - Nodes - Nós - - - - Gui::Dialog::TextureMapping - - Texture - Textura - - - Texture mapping - Mapeamento de textura - - - Global - Global - - - Environment - Ambiente - - - Image files (%1) - Arquivos de imagem (%1) - - - No image - Nenhuma imagem - - - The specified file is not a valid image file. - O arquivo especificado não é um arquivo de imagem válido. - - - No 3d view - Nenhuma vista 3d - - - No active 3d view found. - Nenhuma vista 3d ativa encontrado. - - - - Gui::Dialog::Transform - - Cancel - Cancelar - - - Transform - Transformar - - - - Gui::DlgTreeWidget - - Dialog - Diálogo - - - Items - Itens - - - OK - OK - - - Cancel - Cancelar - - - - - - - - Gui::DockWnd::CombiView - - CombiView - CombiVista - - - Project - Projeto - - - Tasks - Tarefas - - - - Gui::DockWnd::HelpView - - Previous - Anterior - - - Next - Próximo - - - Home - Início - - - Open - Abrir - - - Open file - Abrir arquivo - - - All HTML files (*.html *.htm) - Todos os arquivos HTML (*.html *.htm) - - - External browser - Navegador externo - - - No external browser found. Specify in preferences, please - Nenhum navegador externo encontrado. Especifique nas preferências, por favor - - - Starting of %1 failed - Início de %1 falhou - - - - Gui::DockWnd::PropertyDockView - - Property View - Tela de propriedades - - - - Gui::DockWnd::ReportOutput - - Logging - Log - - - Warning - Aviso - - - Error - Erro - - - Options - Opções - - - Clear - Limpar - - - Save As... - Salvar como... - - - Save Report Output - Salvar o relatório - - - Plain Text Files (*.txt *.log) - Arquivos de texto sem formatação (*.txt *.log) - - - Go to end - Ir para o fim - - - Redirect Python output - Redirecionar a saída de Python - - - Redirect Python errors - Redirecionar erros de Python - - - - Gui::DockWnd::ReportView - - Output - Saída - - - Python console - Console Python - - - - Gui::DockWnd::SelectionView - - Property View - Tela de propriedades - - - - Gui::DockWnd::TaskPanelView - - Task View - Tarefas - - - - Gui::DockWnd::TextBrowser - - Could not open file. - Não foi possível abrir o arquivo. - - - You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. - Você tentou acessar o endereço %1 que não está disponível no momento. Por favor, certifique-se de que a URL existe e tente recarregar a página. - - - Connecting to %1 - Conectando-se a %1 - - - Sending to %1 - Enviando para %1 - - - Reading from %1 - Lendo %1 - - - Download failed: %1. - O download falhou: %1. - - - Previous - Anterior - - - Forward - Para a frente - - - Home - Início - - - Refresh - Atualizar - - - Copy - Cópia - - - Select all - Selecionar tudo - - - No description for - Nenhuma descrição para - - - - Gui::DocumentModel - - Application - Programa - - - Labels & Attributes - Rótulos & atributos - - - - Gui::EditorView - - Modified file - Arquivo modificado - - - %1. - -This has been modified outside of the source editor. Do you want to reload it? - %1. -Este arquivo foi modificado fora do editor. Deseja recarregá-lo? - - - Unsaved document - Documento não salvo - - - The document has been modified. -Do you want to save your changes? - O documento foi modificado. -Deseja salvar as alterações? - - - FreeCAD macro (*.FCMacro);;Python (*.py) - Macro do FreeCAD (*.FCMacro);;Python (*.py) - - - Export PDF - Exportar PDF - - - PDF file (*.pdf) - Arquivo PDF (*.pdf) - - - untitled[*] - sem título[*] - - - - Editor - - Editor - - - %1 chars removed - %1 caracteres removidos - - - %1 chars added - %1 caracteres adicionados - - - Formatted - Formatado - - - - Gui::FileChooser - - Select a file - Selecione um arquivo - - - Select a directory - Selecione um diretório - - - - Gui::FileDialog - - Save as - Salvar como - - - Open - Abrir - - - - Gui::FileOptionsDialog - - Extended - Extendido - - - All files (*.*) - Todos os arquivos (*.*) - - - - Gui::Flag - - Top left - Superior esquerdo - - - Bottom left - Inferior esquerdo - - - Top right - Superior direito - - - Bottom right - Inferior direito - - - Remove - Remover - - - - Gui::InventorNavigationStyle - - Press CTRL and left mouse button - Pressione CTRL e o botão esquerdo do mouse - - - Press middle mouse button - Pressione o botão do meio do mouse - - - Press left mouse button - Pressione o botão esquerdo do mouse - - - Scroll middle mouse button - Role a roda do mouse - - - - Gui::LocationDialog - - Wrong direction - Direção errada - - - Direction must not be the null vector - Direção não pode ser um vector nulo - - - X - X - - - Y - Y - - - Z - Z - - - User defined... - Definido pelo usuário... - - - - Gui::LocationWidget - - X: - X: - - - Y: - Y: - - - Z: - Z: - - - Direction: - - - - - Gui::MacroCommand - - Macros - Macros - - - - Gui::MainWindow - - Dimension - Dimensão - - - Ready - Pronto - - - Toggles this toolbar - Alterna esta barra de ferramentas - - - Toggles this dockable window - Alterna esta janela acoplável - - - Close All - Fechar tudo - - - - Gui::ManualAlignment - - Manual alignment - - - - The alignment is already in progress. - - - - Alignment[*] - - - - Please, select at least one point in the left and the right view - - - - Please, select at least %1 points in the left and the right view - - - - Please pick points in the left and right view - - - - The alignment has finished - - - - The alignment has been canceled - - - - Too few points picked in the left view. At least %1 points are needed. - - - - Too few points picked in the right view. At least %1 points are needed. - - - - Different number of points picked in left and right view. -On the left view %1 points are picked, -on the right view %2 points are picked. - - - - Try to align group of views - - - - The alignment failed. -How do you want to proceed? - - - - Retry - - - - Ignore - - - - Abort - - - - Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - - - - Point picked at (%1,%2,%3) - - - - No point was picked - - - - - Gui::NetworkRetriever - - Download started... - - Download iniciado... - - - - Gui::ProgressBar - - Remaining: %1 - Restante: %1 - - - Aborting - Interrompendo - - - Do you really want to abort the operation? - Você realmente deseja abortar a operação? - - - - Gui::ProgressDialog - - Remaining: %1 - Restante: %1 - - - Aborting - Interrompendo - - - Do you really want to abort the operation? - Você realmente deseja abortar a operação? - - - - Gui::PropertyEditor::PropertyModel - - Property - Propriedade - - - Value - Valor - - - - Gui::PropertyView - - View - Vista - - - Data - Dados - - - - Gui::PythonConsole - - System exit - Saída do sistema - - - The application is still running. -Do you want to exit without saving your data? - O aplicativo ainda está em execução. Deseja sair sem salvar os seus dados? - - - Python console - Console Python - - - Unhandled PyCXX exception. - Exceção PyCXX não tratada. - - - Unhandled FreeCAD exception. - Exceção FreeCAD não tratada. - - - Unhandled unknown C++ exception. - Exceção desconhecida C++ não tratada. - - - &Copy command - &Copiar comando - - - &Copy history - &Copiar histórico - - - Save history as... - Salvar histórico como... - - - Insert file name... - Insira o nome do arquivo... - - - Save History - Salvar histórico - - - Macro Files (*.FCMacro *.py) - Arquivos de macro (*.FCMacro *.py) - - - Insert file name - Insira o nome do arquivo - - - All Files (*.*) - Todos os arquivos (*.*) - - - Python Input Dialog - Diálogo de entrada de Python - - - Unhandled std C++ exception. - Exceção std C++ não tratada. - - - Word wrap - Quebra de linha - - - &Copy - &Copiar - - - &Paste - Co&lar - - - Select All - Selecionar tudo - - - Clear console - - - - - Gui::PythonEditor - - Comment - Comentário - - - Uncomment - Descomentar - - - - Gui::PythonInputField - - OK - OK - - - Clear - Limpar - - - - Gui::RecentFilesAction - - Open file %1 - Abrir o arquivo %1 - - - File not found - Arquivo não encontrado - - - The file '%1' cannot be opened. - Não é possível abrir o arquivo '%1'. - - - - Gui::SelectModule - - Select module - Selecione o módulo - - - Open %1 as - Abrir %1 como - - - Select - Selecionar - - - - Gui::StdCmdDescription - - Help - Ajuda - - - Des&cription - Des&crição - - - Long description of commands - Descrição detalhada dos comandos - - - - Gui::StdCmdDownloadOnlineHelp - - Help - Ajuda - - - Download online help - Baixar a ajuda online - - - Download %1's online help - Baixar ajuda online de %1 - - - Non-existing directory - Diretório não existente - - - The directory '%1' does not exist. - -Do you want to specify an existing directory? - O diretório '%1' não existe. Você deseja especificar um diretório existente? - - - Missing permission - Falta de permissão - - - You don't have write permission to '%1' - -Do you want to specify another directory? - Você não tem permissão de escrita para '%1' Deseja especificar outro diretório? - - - Stop downloading - Parar a transferência - - - - Gui::StdCmdPythonHelp - - Tools - Ferramentas - - - Python Modules - Módulos Python - - - Opens a browser to show the Python modules - Abre um navegador para mostrar os módulos Python - - - - Gui::TaskBoxAngle - - Angle - Ângulo - - - - Gui::TaskBoxPosition - - Position - Posição - - - - Gui::TaskView::TaskAppearance - - Display mode: - Modo de exibição: - - - Plot mode: - Modo de impressão: - - - Point size: - Tamanho de ponto: - - - Line width: - Largura da linha: - - - Transparency: - Transparência: - - - Appearance - Aparência - - - Document window: - - - - - Gui::TaskView::TaskEditControl - - Edit - Editar - - - - Gui::TaskView::TaskSelectLinkProperty - - Appearance - Aparência - - - ... - ... - - - edit selection - editar seleção - - - - Gui::TouchpadNavigationStyle - - Press left mouse button - Pressione o botão esquerdo do mouse - - - Press SHIFT button - - - - Press ALT button - - - - Press PgUp/PgDown button - - - - - Gui::Translator - - English - Inglês - - - - Gui::TreeDockWidget - - Tree view - Árvore - - - - Gui::TreeWidget - - Create group... - Criar grupo... - - - Create a group - Criar um grupo - - - Group - Grupo - - - Rename - Renomear - - - Rename object - Renomear objeto - - - Labels & Attributes - Rótulos & atributos - - - Application - Programa - - - Finish editing - Concluir a edição - - - Finish editing object - Terminar de editar o objeto - - - Activate document - Ativar o documento - - - Activate document %1 - Ativar o documento %1 - - - - Gui::View3DInventor - - Export PDF - Exportar PDF - - - PDF file (*.pdf) - Arquivo PDF (*.pdf) - - - - Gui::WorkbenchGroup - - Select the '%1' workbench - Selecione a bancada '%1' - - - - Position - - Form - Formulário - - - X: - X: - - - Y: - Y: - - - Z: - Z: - - - 0.1 mm - 0.1 mm - - - 0.5 mm - 0.5 mm - - - 1 mm - 1 mm - - - 2 mm - 1 mm - - - 5 mm - 5 mm - - - 10 mm - 10 mm - - - 20 mm - 20 mm - - - 50 mm - 50 mm - - - 100 mm - 100 mm - - - 200 mm - 200 mm - - - 500 mm - 500 mm - - - 1 m - 1 m - - - 2 m - 2 m - - - 5 m - 5 m - - - Grid Snap in - Snap de grade em - - - - QDockWidget - - Tree view - Árvore - - - Property view - Tela de propriedades - - - Selection view - Tela de seleção - - - Report view - Tela de relatório relatório - - - Task View - Tarefas - - - Combo View - Tela combinada - - - Toolbox - Caixa de ferramentas - - - Python console - Console Python - - - Display properties - Exibir propriedades - - - - QObject - - General - Geral - - - Display - Tela - - - Unknown filetype - Tipo de arquivo desconhecido - - - Cannot open unknown filetype: %1 - Não é possível abrir o tipo de arquivo desconhecido: %1 - - - Cannot save to unknown filetype: %1 - Não é possível salvar em tipo de arquivo desconhecido: %1 - - - Workbench failure - Falha de bancada - - - %1 - %1 - - - Unable to launch Qt Assistant (%1) - Não foi possível iniciar o Assistente do Qt (%1) - - - Exception - Exceção - - - Open document - Abrir um documento - - - Import file - Importar um arquivo - - - Export file - Exportar um arquivo - - - Printing... - Imprimindo... - - - Cannot load workbench - Não foi possível carregar a bancada - - - A general error occurred while loading the workbench - Um erro geral ocorreu ao carregar a bancada - - - File not found - Arquivo não encontrado - - - Cannot open file %1 - Não é possível abrir o arquivo %1 - - - Save views... - Salvar vistas... - - - Load views... - Carregar vistas... - - - Freeze view - Congelar a vista - - - Clear views - Limpar vistas - - - Restore view &%1 - Restaurar a vista &%1 - - - Save frozen views - Salvar vistas congeladas - - - Frozen views (*.cam) - Vistas congeladas (*.cam) - - - Restore views - Restaurar vistas - - - Importing the restored views would clear the already stored views. -Do you want to continue? - Importar vistas restauradas irá descartar vistas já armazenadas. Deseja continuar? - - - Restore frozen views - Restaurar vistas congeladas - - - Cannot open file '%1'. - Não é possível abrir o arquivo '%1'. - - - Docked - Ancorado - - - Undocked - Desancorado - - - Fullscreen - Tela cheia - - - files - arquivos - - - Save picture - Salvar imagem - - - New sub-group - Novo subgrupo - - - Enter the name: - Digite o nome: - - - New text item - Novo item de texto - - - Enter your text: - Digite o texto: - - - New integer item - Novo item inteiro - - - Enter your number: - Digite seu número: - - - New unsigned item - Novo item unsigned - - - New float item - Novo item float - - - New Boolean item - Novo item Boolean - - - Choose an item: - Escolha um item: - - - Rename group - Renomear grupo - - - The group '%1' cannot be renamed. - O grupo '%1' não pode ser renomeado. - - - Existing group - Grupo existente - - - The group '%1' already exists. - O grupo '%1' já existe. - - - Change value - Mudar o valor - - - Save document under new filename... - Salvar documento sob novo nome ... - - - Saving aborted - Salvamento abortado - - - Unsaved document - Documento não salvo - - - Save document before close? - Salvar o documento antes de fechar? - - - Save Macro - Salvar macro - - - Finish - Concluir - - - Clear - Limpar - - - Cancel - Cancelar - - - Inner - Interno - - - Outer - Externo - - - No Browser - Nenhum navegador - - - Unable to open your browser. - -Please open a browser window and type in: http://localhost:%1. - Não é possível abrir o navegador. Por favor, abra uma janela do navegador e digite: http://localhost:%1. - - - No Server - Nenhum servidor - - - Unable to start the server to port %1: %2. - Não é possível iniciar o servidor na porta %1: %2. - - - Unable to open your system browser. - Não é possível abrir o navegador do sistema. - - - Options... - Opções... - - - Out of memory - Memória insuficiente - - - Not enough memory available to display the data. - Não há memória suficiente para exibir os dados. - - - Cannot find file %1 - Não foi possível encontrar o arquivo '%1' - - - Cannot find file %1 neither in %2 nor in %3 - Não é possível encontrar o arquivo %1 nem em %2, nem em %3 - - - Save %1 Document - Salvar documento %1 - - - %1 document (*.FCStd) - documento %1 (*.FCStd) - - - Save As - Salvar como - - - %1 already exists. -Do you want to replace it? - %1 já existe. Deseja substituí-lo? - - - Document not closable - O documento não pode ser fechado - - - The document is not closable for the moment. - O documento não pode ser fechado neste momento. - - - No OpenGL - Nenhum OpenGL - - - This system does not support OpenGL - Este sistema não tem suporte a OpenGL - - - Help - Ajuda - - - Unable to load documentation. -In order to load it Qt 4.4 or higher is required. - Não é possível carregar a documentação. Para carregá-la Qt 4. 4 ou superior é necessário. - - - %1 Help - Ajuda de %1 - - - Exporting PDF... - Exportar PDF... - - - Wrong selection - Seleção errada - - - Only one object selected. Please select two objects. -Be aware the point where you click matters. - Apenas um objeto selecionado. Por favor selecione dois objetos. Lembre-se que o ponto onde você clicar tem importância. - - - Please select two objects. -Be aware the point where you click matters. - Por favor selecione dois objetos. Lembre-se o que ponto onde você clicar tem importância. - - - New boolean item - Novo item booleano - - - Navigation styles - Estilos de navegação - - - %1 navigation - navegação de %1 - - - Move annotation - Mover a anotação - - - Transform - Transformar - - - The document is in editing mode and thus cannot be closed for the moment. -You either have to finish or cancel the editing in the task panel. - O documento está no modo de edição, portanto, não pode ser fechado no momento. Você deve concluir ou cancelar a edição no painel de tarefas. - - - - StdBoxSelection - - Standard-View - Vista padrão - - - Box selection - - - - - StdCmdAbout - - Help - Ajuda - - - &About %1 - &Sobre %1 - - - About %1 - Sobre %1 - - - - StdCmdAboutQt - - Help - Ajuda - - - About &Qt - Sobre Qt - - - About Qt - Sobre o Qt - - - - StdCmdActivateNextWindow - - Window - Janela - - - Ne&xt - Pró&ximo - - - Activate next window - Ativar a janela seguinte - - - - StdCmdActivatePrevWindow - - Window - Janela - - - Pre&vious - An&terior - - - Activate previous window - Ativar a janela anterior - - - - StdCmdAlignment - - Edit - Editar - - - Alignment... - - - - Align the selected objects - - - - - StdCmdArrangeIcons - - Window - Janela - - - Arrange &Icons - Organizar &icones - - - Arrange Icons - Organizar ícones - - - - StdCmdAxisCross - - Standard-View - Vista padrão - - - Toggle axis cross - Ligar/desligar símbolo de eixos - - - - StdCmdCascadeWindows - - Window - Janela - - - &Cascade - Em &cascata - - - Tile pragmatic - Lado a lado pragmático - - - - StdCmdCloseActiveWindow - - Window - Janela - - - Cl&ose - &Fechar - - - Close active window - Fechar a janela ativa - - - - StdCmdCloseAllWindows - - Window - Janela - - - Close Al&l - Fechar &tudo - - - Close all windows - Fecha todas as janelas - - - - StdCmdCommandLine - - Tools - Ferramentas - - - Start command &line... - Iniciar linha de comando... - - - Opens the command line in the console - Abre a linha de comando na consola - - - - StdCmdCopy - - Edit - Editar - - - C&opy - C&opiar - - - Copy operation - Operação de cópia - - - - StdCmdCut - - Edit - Editar - - - &Cut - Co&rtar - - - Cut out - Cortar - - - - StdCmdDDuplicateSelection - - Edit - Editar - - - Duplicate selection - Duplicar seleção - - - Put duplicates of the selected objects to the active document - Coloca duplicatas dos objetos selecionados no documento ativo - - - - StdCmdDelete - - Edit - Editar - - - &Delete - &Excluir - - - Deletes the selected objects - Exclui os objetos selecionados - - - - StdCmdDemoMode - - Standard-View - Vista padrão - - - View turntable... - Vista turntable... - - - View turntable - Vista turntable - - - - StdCmdDlgCustomize - - Tools - Ferramentas - - - Cu&stomize... - Per&sonalizar... - - - Customize toolbars and command bars - Personalizar barras de ferramentas e barras de comando - - - - StdCmdDlgMacroExecute - - Macros ... - Macros ... - - - Opens a dialog to let you execute a recorded macro - Abre um diálogo para que você executa uma macro gravada - - - Macro - Macro - - - - StdCmdDlgMacroExecuteDirect - - Macro - Macro - - - Execute macro - Executar macro - - - Execute the macro in the editor - Executar a macro no editor - - - - StdCmdDlgMacroRecord - - &Macro recording ... - &Gravação de macros ... - - - Opens a dialog to record a macro - Abre uma janela para gravar uma macro - - - Macro - Macro - - - - StdCmdDlgParameter - - Tools - Ferramentas - - - E&dit parameters ... - &Editar parâmetros... - - - Opens a Dialog to edit the parameters - Abre uma janela para editar os parâmetros - - - - StdCmdDlgPreferences - - Tools - Ferramentas - - - &Preferences ... - &Preferências ... - - - Opens a Dialog to edit the preferences - Abre uma janela para editar as preferências - - - - StdCmdDockViewMenu - - View - Vista - - - Vie&ws - &Vistas - - - Toggles this window - Troca esta janela - - - - StdCmdDrawStyle - - Standard-View - Vista padrão - - - Draw style - Estilo de desenho - - - - StdCmdDuplicateSelection - - Edit - Editar - - - Duplicate selection - Duplicar seleção - - - Put duplicates of the selected objects to the active document - Coloca duplicatas dos objetos selecionados no documento ativo - - - - StdCmdEdit - - Edit - Editar - - - Toggle &Edit mode - - - - Toggles the selected object's edit mode - - - - Enters or leaves the selected object's edit mode - - - - - StdCmdExport - - File - Arquivo - - - &Export... - &Exportar... - - - Export an object in the active document - Exportar um objeto do documento ativo - - - Supported formats - Formatos suportados - - - No selection - - - - Please select first the objects you want to export. - - - - - StdCmdExportGraphviz - - Tools - Ferramentas - - - Dependency graph... - - - - Show the dependency graph of the objects in the active document - - - - - StdCmdFeatRecompute - - File - Arquivo - - - &Recompute - &Recalcular - - - Recompute feature or document - Recalcular um objeto ou documento - - - - StdCmdFreeCADWebsite - - Help - Ajuda - - - FreeCAD Website - Website do FreeCAD - - - The FreeCAD website - O site do FreeCAD - - - - StdCmdFreezeViews - - Standard-View - Vista padrão - - - Freeze display - Congelar exibição - - - Freezes the current view position - Congela o ponto de vista atual - - - - StdCmdHideObjects - - Standard-View - Vista padrão - - - Hide all objects - Ocultar todos os objetos - - - Hide all objects in the document - Ocultar todos os objetos do documento - - - - StdCmdHideSelection - - Standard-View - Vista padrão - - - Hide selection - Ocultar seleção - - - Hide all selected objects - Ocultar todos os objetos selecionados - - - - StdCmdImport - - File - Arquivo - - - &Import... - &Importar... - - - Import a file in the active document - Importar um arquivo no documento ativo - - - Supported formats - Formatos suportados - - - All files (*.*) - Todos os arquivos (*.*) - - - - StdCmdMacroStartDebug - - Macro - Macro - - - Debug macro - Depurar macro - - - Start debugging of macro - Iniciar a depuração da macro - - - - StdCmdMacroStepOver - - Macro - Macro - - - Step over - Avançar - - - - StdCmdMacroStopDebug - - Macro - Macro - - - Stop debugging - Parar a depuração - - - Stop debugging of macro - Parar a depuração de macro - - - - StdCmdMacroStopRecord - - Macro - Macro - - - S&top macro recording - Parar a gravação de macro - - - Stop the macro recording session - Pare a sessão de gravação de macros - - - - StdCmdMeasureDistance - - View - Vista - - - Measure distance - Medir distância - - - - StdCmdMeasurementSimple - - Tools - Ferramentas - - - Mesure distance - Medir distância - - - Measures distance between two selected objects - Mede a distância entre dois objetos selecionados - - - Measure distance - Medir distância - - - - StdCmdMergeProjects - - File - Arquivo - - - Merge project... - Mesclar projeto... - - - Merge project - Mesclar projeto - - - %1 document (*.fcstd) - documento %1 (*.fcstd) - - - Cannot merge project with itself. - Não é possível mesclar esse projeto com ele mesmo. - - - - StdCmdNew - - File - Arquivo - - - &New - &Novo - - - Create a new empty document - Criar um novo documento vazio - - - - StdCmdOnlineHelp - - Help - Ajuda - - - Show help to the application - Mostra a ajuda para a aplicação - - - - StdCmdOnlineHelpPython - - Help - Ajuda - - - Python Manuals - Manuais de Python - - - Show the Python documentation - Mostrar a documentação do Python - - - - StdCmdOnlineHelpWebsite - - Help - Ajuda - - - Help Website - Site de ajuda - - - The website where the help is maintained - O site onde a ajuda é mantida - - - - StdCmdOpen - - File - Arquivo - - - &Open... - &Abrir... - - - Open a document or import files - Abrir um documento ou importar arquivos - - - Supported formats - Formatos suportados - - - All files (*.*) - Todos os arquivos (*.*) - - - - StdCmdPaste - - Edit - Editar - - - &Paste - Co&lar - - - Paste operation - Colar operação - - - - StdCmdPlacement - - Edit - Editar - - - Placement... - Posicionamento... - - - Place the selected objects - Colocar os objetos selecionados - - - - StdCmdPrint - - File - Arquivo - - - &Print... - &Imprimir... - - - Print the document - Imprime o documento - - - - StdCmdPrintPdf - - File - Arquivo - - - &Export PDF... - &Exportar PDF... - - - Export the document as PDF - Exportar o documento como PDF - - - - StdCmdPrintPreview - - File - Arquivo - - - &Print preview... - &Visualização de impressão... - - - Print the document - Imprime o documento - - - Print preview - Visualização de impressão - - - - StdCmdProjectInfo - - File - Arquivo - - - Project i&nformation... - I&nformação do projeto... - - - Show details of the currently active project - Mostrar os detalhes do projeto ativo - - - - StdCmdProjectUtil - - Tools - Ferramentas - - - Project utility... - Utilitário de projeto... - - - Utility to extract or create project files - Utilitário para extrair ou criar arquivos de projeto - - - - StdCmdPythonWebsite - - Help - Ajuda - - - Python Website - Website do Python - - - The official Python website - O site oficial do Python - - - - StdCmdQuit - - File - Arquivo - - - E&xit - &Sair - - - Quits the application - Finaliza o aplicativo - - - - StdCmdRandomColor - - File - Arquivo - - - Random color - Cor aleatória - - - - StdCmdRecentFiles - - File - Arquivo - - - Recent files - Arquivos recentes - - - Recent file list - Lista de arquivos recentes - - - - StdCmdRedo - - Edit - Editar - - - &Redo - &Refazer - - - Redoes a previously undone action - Refaz uma ação desfeita anteriormente - - - - StdCmdRefresh - - Edit - Editar - - - &Refresh - &Atualizar - - - Recomputes the current active document - Recalcula o documento ativo atual - - - - StdCmdSave - - File - Arquivo - - - &Save - &Salvar - - - Save the active document - Salva o documento ativo - - - - StdCmdSaveAs - - File - Arquivo - - - Save &As... - Salvar como... - - - Save the active document under a new file name - Salvar o documento ativo com um novo nome de arquivo - - - - StdCmdSceneInspector - - Tools - Ferramentas - - - Scene inspector... - Inspetor de cena... - - - Scene inspector - Inspetor de cena - - - - StdCmdSelectAll - - Edit - Editar - - - Select &All - Selecionar &tudo - - - Select all - Selecionar tudo - - - - StdCmdSetAppearance - - Standard-View - Vista padrão - - - Appearance... - Aparência... - - - Sets the display properties of the selected object - Define as propriedades de exibição do objeto selecionado - - - - StdCmdShowObjects - - Standard-View - Vista padrão - - - Show all objects - Mostrar todos os objectos - - - Show all objects in the document - Mostrar todos os objetos do documento - - - - StdCmdShowSelection - - Standard-View - Vista padrão - - - Show selection - Exibir seleção - - - Show all selected objects - Mostrar todos os objetos selecionados - - - - StdCmdStatusBar - - View - Vista - - - Status bar - Barra de status - - - Toggles the status bar - Alterna a barra de status - - - - StdCmdTextureMapping - - Tools - Ferramentas - - - Texture mapping... - Mapeamento de textura... - - - Texture mapping - Mapeamento de textura - - - - StdCmdTileWindows - - Window - Janela - - - &Tile - Lado a lado - - - Tile the windows - Organiza as janelas lado a lado - - - - StdCmdToggleBreakpoint - - Macro - Macro - - - Toggle breakpoint - Alternar ponto de interrupção - - - - StdCmdToggleClipPlane - - Standard-View - Vista padrão - - - Clipping plane - Plano de clipping - - - Toggles clipping plane for active view - Alterna plano de clipping da vista ativa - - - - StdCmdToggleNavigation - - Standard-View - Vista padrão - - - Toggle navigation/Edit mode - Alternar o modo de navegação/modo de edição - - - Toggle between navigation and edit mode - Alternar entre o modo de edição e navegação - - - - StdCmdToggleObjects - - Standard-View - Vista padrão - - - Toggle all objects - Alternar todos os objetos - - - Toggles visibility of all objects in the active document - Alterna a visibilidade de todos os objetos do documento ativo - - - - StdCmdToggleSelectability - - Standard-View - Vista padrão - - - Toggle selectability - Alternar seletibilidade - - - Toggles the property of the objects to get selected in the 3D-View - Alterna a possibilidade dos objetos serem selecionados na vista 3D - - - - StdCmdToggleVisibility - - Standard-View - Vista padrão - - - Toggle visibility - Mudar visibilidade - - - Toggles visibility - Troca a visibilidade - - - - StdCmdToolBarMenu - - View - Vista - - - Tool&bars - &Barras de ferramentas - - - Toggles this window - Troca esta janela - - - - StdCmdTransform - - Edit - Editar - - - Transform... - Transformar... - - - Transform the geometry of selected objects - Transformar a geometria dos objetos selecionados - - - - StdCmdTreeSelection - - View - Vista - - - Go to selection - Ir para a seleção - - - Scroll to first selected item - Vai para o primeiro item selecionado - - - - StdCmdUndo - - Edit - Editar - - - &Undo - &Desfazer - - - Undo exactly one action - Desfazer só uma ação - - - - StdCmdUserInterface - - View - Vista - - - Dock views - Ancorar vistas - - - Dock all top-level views - Ancorar todas as vistas de nível superior - - - - StdCmdViewAxo - - Standard-View - Vista padrão - - - Axometric - Axonométrico - - - Set to axometric view - Definir como vista axonométrica - - - - StdCmdViewBottom - - Standard-View - Vista padrão - - - Bottom - De baixo - - - Set to bottom view - Ver de baixo - - - - StdCmdViewCreate - - Standard-View - Vista padrão - - - Create new view - Criar uma nova vista - - - Creates a new view window for the active document - Cria uma nova janela de exibição para o documento ativo - - - - StdCmdViewExample1 - - Standard-View - Vista padrão - - - Inventor example #1 - Exemplo Inventor #1 - - - Shows a 3D texture with manipulator - Mostra uma textura 3D com manipulador - - - - StdCmdViewExample2 - - Standard-View - Vista padrão - - - Inventor example #2 - Exemplo Inventor #2 - - - Shows spheres and drag-lights - Mostra esferas e luzes de arrasto - - - - StdCmdViewExample3 - - Standard-View - Vista padrão - - - Inventor example #3 - Exemplo Inventor #3 - - - Shows a animated texture - Mostra uma textura animada - - - - StdCmdViewFitAll - - Standard-View - Vista padrão - - - Fit all - Enquadrar tudo - - - Fits the whole content on the screen - Adapta todo o conteúdo na tela - - - - StdCmdViewFitSelection - - Standard-View - Vista padrão - - - Fit selection - Enquadrar seleção - - - Fits the selected content on the screen - Adapta o conteúdo selecionado na tela - - - - StdCmdViewFront - - Standard-View - Vista padrão - - - Front - Frente - - - Set to front view - Ajusta para a vista frontal - - - - StdCmdViewIvIssueCamPos - - Standard-View - Vista padrão - - - Issue camera position - Mostrar a posição da câmera - - - Issue the camera position to the console and to a macro, to easily recall this position - Mostrar a posição da câmera no console e numa macro, para recuperar facilmente essa posição - - - - StdCmdViewIvStereoInterleavedColumns - - Standard-View - Vista padrão - - - Stereo Interleaved Columns - Colunas estéreo intercaladas - - - Switch stereo viewing to Interleaved Columns - Mudar de visualização stereo para Colunas Intercaladas - - - - StdCmdViewIvStereoInterleavedRows - - Standard-View - Vista padrão - - - Stereo Interleaved Rows - Linhas estéreo intercaladas - - - Switch stereo viewing to Interleaved Rows - Alternar visualização estéreo para linhas intercaladas - - - - StdCmdViewIvStereoOff - - Standard-View - Vista padrão - - - Stereo Off - Desligar estéreo - - - Switch stereo viewing off - Desligar o modo de visualização estéreo - - - - StdCmdViewIvStereoQuadBuff - - Standard-View - Vista padrão - - - Stereo quad buffer - Quad buffer estéreo - - - Switch stereo viewing to quad buffer - Alternar visualização estéreo para quad buffer - - - - StdCmdViewIvStereoRedGreen - - Standard-View - Vista padrão - - - Stereo red/green - Estéreo vermelho/verde - - - Switch stereo viewing to red/green - Alternar visualização estéreo para vermelho/verde - - - - StdCmdViewLeft - - Standard-View - Vista padrão - - - Left - Esquerda - - - Set to left view - Ajusta para a vista esquerda - - - - StdCmdViewRear - - Standard-View - Vista padrão - - - Rear - Traseira - - - Set to rear view - Vista de trás - - - - StdCmdViewRight - - Standard-View - Vista padrão - - - Right - Direito - - - Set to right view - Vista direita - - - - StdCmdViewRotateLeft - - Standard-View - Vista padrão - - - Rotate Left - - - - Rotate the view by 90° counter-clockwise - - - - - StdCmdViewRotateRight - - Standard-View - Vista padrão - - - Rotate Right - - - - Rotate the view by 90° clockwise - - - - - StdCmdViewTop - - Standard-View - Vista padrão - - - Top - Topo - - - Set to top view - Vista de topo - - - - StdCmdWhatsThis - - Help - Ajuda - - - &What's This? - O &Que é Isso? - - - What's This - O Que é Isso - - - - StdCmdWindows - - Window - Janela - - - &Windows... - &Janelas... - - - Windows list - Lista de janelas - - - - StdCmdWindowsMenu - - Window - Janela - - - Activates this window - Ativar esta janela - - - - StdCmdWorkbench - - View - Vista - - - Workbench - Bancada - - - Switch between workbenches - Alternar entre bancadas - - - - StdOrthographicCamera - - Standard-View - Vista padrão - - - Orthographic view - Vista ortográfica - - - Switches to orthographic view mode - Alterna para o modo de exibição ortográfica - - - - StdPerspectiveCamera - - Standard-View - Vista padrão - - - Perspective view - Vista em perspectiva - - - Switches to perspective view mode - Alterna para o modo de visualização em perspectiva - - - - StdViewBoxZoom - - Standard-View - Vista padrão - - - Box zoom - Zoom por caixa - - - - StdViewDockUndockFullscreen - - Standard-View - Vista padrão - - - Document window - Janela do documento - - - Display the active view either in fullscreen, in undocked or docked mode - Mostrar a vista activa em tela cheia, em modo desencaixado ou encaixado - - - - StdViewScreenShot - - Standard-View - Vista padrão - - - Save picture... - Salvar imagem... - - - Creates a screenshot of the active view - Cria uma captura de tela da vista activa - - - - StdViewZoomIn - - Standard-View - Vista padrão - - - Zoom In - Ampliar - - - - StdViewZoomOut - - Standard-View - Vista padrão - - - Zoom Out - Reduzir - - - - Std_DrawStyle - - As is - Como é - - - Normal mode - Modo normal - - - Wireframe - Arame - - - Wireframe mode - Modo de arame - - - - Std_ExportGraphviz - - Graphviz not found - - - - Graphviz couldn't be found on your system. -Do you want to specify its installation path if it's already installed? - - - - Graphviz installation path - - - - Dependency graph - - - - Graphviz failed - - - - Graphviz failed to create an image file - - - - - Workbench - - &File - &Arquivo - - - &Edit - &Editar - - - Standard views - Vistas padrão - - - &Stereo - E&stéreo - - - &Zoom - &Zoom - - - Visibility - Visibilidade - - - &View - &Vista - - - &Tools - &Ferramentas - - - &Macro - &Macro - - - &Windows - &Janelas - - - &On-line help - A&juda on-line - - - &Help - A&juda - - - File - Arquivo - - - Macro - Macro - - - View - Vista - - - Special Ops - Operações especiais - - - - testClass - - test - teste - - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - - - Choose the style of the Task Panel - Escolha o estilo do painel de tarefas - - - Default - Padrão - - - Windows XP - Windows XP - - - diff --git a/src/Gui/Language/FreeCAD_ro.qm b/src/Gui/Language/FreeCAD_ro.qm new file mode 100644 index 000000000..f446787ba Binary files /dev/null and b/src/Gui/Language/FreeCAD_ro.qm differ diff --git a/src/Gui/Language/FreeCAD_ro.ts b/src/Gui/Language/FreeCAD_ro.ts new file mode 100644 index 000000000..0f369187f --- /dev/null +++ b/src/Gui/Language/FreeCAD_ro.ts @@ -0,0 +1,5837 @@ + + + + + Angle + + Form + Form + + + A: + A: + + + B: + B: + + + C: + C: + + + Angle Snap + Angle Snap + + + 1 ° + 1 ° + + + 2 ° + 2 ° + + + 5 ° + 5 ° + + + 10 ° + 10 ° + + + 20 ° + 20 ° + + + 45 ° + 45 ° + + + 90 ° + 90 ° + + + 180 ° + 180 ° + + + + Gui::AccelLineEdit + + none + niciunul + + + + Gui::ActionSelector + + Available: + Available: + + + Selected: + Selected: + + + Add + Adaugă + + + Remove + Elimină + + + Move up + Deplasare în sus + + + Move down + Deplasare în jos + + + + Gui::AlignmentView + + Movable object + Movable object + + + Fixed object + Fixed object + + + + Gui::BlenderNavigationStyle + + Press left mouse button + Press left mouse button + + + Press SHIFT and middle mouse button + Press SHIFT and middle mouse button + + + Press middle mouse button + Press middle mouse button + + + Scroll middle mouse button + Scroll middle mouse button + + + + Gui::CADNavigationStyle + + Press left mouse button + Press left mouse button + + + Press middle mouse button + Press middle mouse button + + + Press left and middle mouse button + Press left and middle mouse button + + + Scroll middle mouse button + Scroll middle mouse button + + + + Gui::Command + + Standard + Standard + + + + Gui::ContainerDialog + + &OK + &OK + + + &Cancel + &Revocare + + + + Gui::ControlSingleton + + Task panel + Task panel + + + + Gui::Dialog::AboutApplication + + About + Despre + + + Revision number + Revizia numărul + + + Version + Versiunea + + + OK + OK + + + + + + + Release date + Data publicării + + + Platform + Platform + + + License... + License... + + + Copy to clipboard + Copy to clipboard + + + + Gui::Dialog::ButtonModel + + Button %1 + Button %1 + + + Out Of Range + Out Of Range + + + + Gui::Dialog::CommandModel + + Commands + Comenzi + + + + Gui::Dialog::DemoMode + + View Turntable + View Turntable + + + Speed + Speed + + + Maximum + Maximum + + + Minimum + Minimum + + + Fullscreen + Ecran complet + + + Enable timer + Enable timer + + + s + s + + + Angle + Angle + + + 90° + 90° + + + -90° + -90° + + + Play + Play + + + Stop + Stop + + + Close + Închide + + + + Gui::Dialog::DlgActivateWindow + + Choose Window + Alegeţi fereastra + + + &Activate + &Activează + + + Alt+A + Alt + A + + + &Cancel + &Revocare + + + + + + + + Gui::Dialog::DlgActivateWindowImp + + Windows + Ferestre + + + + Gui::Dialog::DlgAuthorization + + Authorization + Autorizație + + + &OK + &OK + + + &Cancel + &Revocare + + + Password: + Parola: + + + User name: + Nume de utilizator: + + + + + + + + Gui::Dialog::DlgChooseIcon + + Choose Icon + Alege iconiţa + + + OK + OK + + + Cancel + Renunţă + + + Add icons... + Add icons... + + + + Gui::Dialog::DlgCustomActions + + Macros + Macro-uri + + + Setup Custom Macros + Configurează marco-uri personalizate + + + Macro: + Macro: + + + ... + ... + + + Pixmap + Pixmap + + + Accelerator: + Accelerator: + + + What's this: + Ce este asta: + + + Status text: + Text de stare: + + + Tool tip: + Sfat: + + + Menu text: + Textul meniului: + + + Add + Adaugă + + + Remove + Elimină + + + Replace + Înlocuieşte + + + + Gui::Dialog::DlgCustomActionsImp + + Icons + Iconiţe + + + Macros + Macro-uri + + + No macro + Niciun macro + + + No macros found. + Nu a fost găsit niciun macro. + + + Macro not found + Macro-ul nu a fost găsit + + + Sorry, couldn't find macro file '%1'. + Nu am putut găsi fişierul macro '%1'. + + + Empty macro + Macro gol + + + Please specify the macro first. + Vă rugăm specificaţi macro-ul mai întâi. + + + Empty text + Text gol + + + Please specify the menu text first. + Specificați prima dată textul meniului. + + + No item selected + Nici un element selectat + + + Please select a macro item first. + Vă rugăm să selectaţi mai întâi un element de macrocomandă. + + + + Gui::Dialog::DlgCustomCommands + + Commands + Comenzi + + + + + + + + Gui::Dialog::DlgCustomCommandsImp + + Category + Categorie + + + Icon + Pictograma + + + Command + Comanda + + + + Gui::Dialog::DlgCustomKeyboard + + Keyboard + Tastatură + + + Description: + Descriere: + + + &Category: + &Categoria: + + + C&ommands: + C&omenzi: + + + Current shortcut: + Comandă rapidă curentă: + + + Press &new shortcut: + Apăsați comandă rapidă &nouă: + + + Currently assigned to: + În prezent atribuit: + + + &Assign + &Asociază + + + Alt+A + Alt + A + + + &Reset + &Reset + + + Alt+R + Alt+R + + + Re&set All + Re&setează tot + + + Alt+S + Alt + S + + + + + + + + Gui::Dialog::DlgCustomKeyboardImp + + Icon + Pictograma + + + Command + Comanda + + + none + niciunul + + + Multiple defined shortcut + Comandă rapidă definită de mai multe ori + + + The shortcut '%1' is defined more than once. This could result into unexpected behaviour. + Comanda rapidă '%1' este definită de mai multe ori. Aceasta ar putea rezulta într-un comportament imprevizibil. + + + Already defined shortcut + Comanda rapidă este deja definită + + + The shortcut '%1' is already assigned to '%2'. + +Please define another shortcut. + Comanda rapidă '%1' este deja asociată cu '%2'. + +Vă rugăm definiți o altă comandă rapidă. + + + + Gui::Dialog::DlgCustomToolBoxbarsImp + + Toolbox bars + Bare de instrumente + + + + Gui::Dialog::DlgCustomToolbars + + Toolbars + Bare de instrumente + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head> <body style="white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style="font-weight:600;"> Notă:</span> Modificările vor deveni active, data viitoare când încărcaţi bancul de lucru corespunzător</p></body></html> + + + Move right + Deplasare spre dreapta + + + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Mută elementul selectat cu un nivel mai în jos.</b><p>Acest lucru va schimba, de asemenea, și nivelul elementului părinte.</p> + + + Move left + Deplasare spre stânga + + + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Mută elementul selectat cu un nivel mai în sus.</b><p>Acest lucru va schimba, de asemenea, și nivelul elementului părinte.</p> + + + Move down + Deplasare în jos + + + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Mută elementul selectat în jos.</b><p>Elementul va schimba nivelul ierarhic.</p> + + + Move up + Deplasare în sus + + + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Mută elementul selectat în sus.</b><p>Elementul va schimba nivelul ierarhic.</p> + + + New... + Nou... + + + Rename... + Redenumire... + + + Delete + Ştergeţi + + + Icon + Pictograma + + + Command + Comanda + + + <Separator> + <Separator> + + + New toolbar + Bară de instrumente nouă + + + Toolbar name: + Numele barei de instrumente: + + + Duplicated name + Numele este dublură + + + The toolbar name '%1' is already used + Numele barei de instrumente '%1' este deja utilizat + + + Rename toolbar + Redenumiţi bara de instrumente + + + + + + + + Gui::Dialog::DlgCustomizeImp + + Customize + Personalizare + + + &Help + &Ajutor + + + &Close + &Inchide + + + + Gui::Dialog::DlgCustomizeSpaceball + + Spaceball + Spaceball + + + No Spaceball Present + No Spaceball Present + + + Buttons + Buttons + + + Clear + Eliberează + + + Print Reference + Print Reference + + + + Gui::Dialog::DlgDisplayProperties + + Display properties + Afișare proprietăți + + + Display + Afișare + + + Transparency: + Transparenţă: + + + Line width: + Lățimea liniei: + + + Point size: + Dimensiunea punctelor: + + + Material + Materialul + + + ... + ... + + + Close + Închide + + + Viewing mode + Mod de vizualizare + + + Plot mode: + Mod de tipărire: + + + + + + + Line transparency: + Line transparency: + + + Line color: + Line color: + + + Shape color: + Shape color: + + + Color plot: + Color plot: + + + Document window: + Document window: + + + + Gui::Dialog::DlgEditorSettings + + Editor + Editor + + + Options + Opţiuni + + + Enable line numbers + Activează numerele liniilor + + + Enable folding + Activează plierea + + + Indentation + Indentare + + + Insert spaces + Inseraţi spaţii + + + Tab size: + Mărime tabulator: + + + Indent size: + Distanță indentare: + + + Keep tabs + Păstrează tabulatorii + + + Display Items + Afişare elemente + + + Family: + Familie: + + + Size: + Dimensiune: + + + Preview: + Previzualizare: + + + + + + + + Gui::Dialog::DlgGeneral + + General + General + + + Start up + Pornire + + + Enable splash screen at start up + Activează ecran de pornire + + + Switch to tab of report window: + Comută pe fila din fereastra Raport: + + + Auto load module after start up: + Încarcă automat modulele la pornire: + + + Language + Limba + + + Change language: + Schimbare limbă: + + + Main window + Fereastra principală + + + Size of recent file list + Dimensiunea listei de fişiere recente + + + Window style: + Stilul ferestrei: + + + Size of toolbar icons: + Size of toolbar icons: + + + + Gui::Dialog::DlgGeneralImp + + Default (%1 x %1) + Default (%1 x %1) + + + Small (%1 x %1) + Small (%1 x %1) + + + Large (%1 x %1) + Large (%1 x %1) + + + Extra large (%1 x %1) + Extra large (%1 x %1) + + + + Gui::Dialog::DlgInputDialog + + Input + Intrare + + + OK + OK + + + Cancel + Renunţă + + + + + + + + Gui::Dialog::DlgInspector + + Scene Inspector + Inspector Scenă + + + + Gui::Dialog::DlgMacroExecute + + Execute macro + Executare macrocomandă + + + Macro name: + Nume macrocomandă: + + + Macro destination: + Destinație de macrocomandă: + + + Execute + Execută + + + Close + Închide + + + Create + Creează + + + Delete + Ştergeţi + + + Edit + Editare + + + + Gui::Dialog::DlgMacroExecuteImp + + Macros + Macro-uri + + + Macro file + Fişier macro + + + Enter a file name, please: + Vă rugăm să introduceți un nume de fişier: + + + Existing file + Fișier existent + + + '%1'. +This file already exists. + '%1'. +Acest fişier există deja. + + + Delete macro + Ştergeţi macrocomanda + + + Do you really want to delete the macro '%1'? + Într-adevăr doriţi să ştergeţi macrocomanda '%1'? + + + Cannot create file + Cannot create file + + + Creation of file '%1' failed. + Creation of file '%1' failed. + + + + Gui::Dialog::DlgMacroRecord + + Macro recording + Înregistrare macrocomandă + + + Macro name: + Nume macrocomandă: + + + Stop + Stop + + + Cancel + Renunţă + + + Macro path: + Macro path: + + + ... + ... + + + Record + Record + + + + Gui::Dialog::DlgMacroRecordImp + + Macro recorder + Înregistratorul de macrocomenzi + + + Specify first a place to save. + Specificaţi mai întâi un loc pentru a salva. + + + Existing macro + Macrocomanda existentă + + + The macro '%1' already exists. Do you want to overwrite? + Macrocomanda '%1' există deja. Doriţi să suprascrieţi? + + + The macro directory doesn't exist. Please, choose another one. + The macro directory doesn't exist. Please, choose another one. + + + Choose macro directory + Choose macro directory + + + + Gui::Dialog::DlgMaterialProperties + + Material properties + Proprietăţile materialelor + + + &Close + &Inchide + + + Alt+C + Alt + C + + + Material + Materialul + + + Diffuse color: + Culoare difuză: + + + Specular color: + Culoare speculară: + + + Shininess: + Strălucirea: + + + % + % + + + Ambient color: + Culoarea ambientală: + + + + + + + Emissive color: + Emissive color: + + + + Gui::Dialog::DlgOnlineHelp + + On-line help + Ajutor on-line + + + Help viewer + Vizualizatorul Ajutor + + + Location of start page + Locaţia paginii de start + + + + Gui::Dialog::DlgOnlineHelpImp + + HTML files (*.html *.htm) + Fişiere HTML (*.html *.htm) + + + Access denied + Acces nepermis + + + Access denied to '%1' + +Specify another directory, please. + Acces nepermis '%1' vă rugăm specificați un alt director. + + + + Gui::Dialog::DlgParameter + + Parameter Editor + Editor de Parametrii + + + Save to disk + Salvează pe disc + + + Alt+C + Alt + C + + + &Close + &Inchide + + + + Gui::Dialog::DlgParameterImp + + Group + Grup + + + Name + Nume + + + Type + Tip + + + Value + Valoare + + + User parameter + Parametrul al utilizatorului + + + Invalid input + Intrare nevalidă + + + Invalid key name '%1' + Nume tastă nevalid '%1' + + + System parameter + Parametru de sistem + + + + Gui::Dialog::DlgPreferences + + Preferences + Preferinţe + + + &Help + &Ajutor + + + Alt+H + Alt + H + + + &OK + &OK + + + &Apply + &Aplica + + + Alt+A + Alt + A + + + &Cancel + &Revocare + + + + + + + + Gui::Dialog::DlgPreferencesImp + + Wrong parameter + Parametru greşit + + + + Gui::Dialog::DlgProjectInformation + + Project information + Informații de proiect + + + Information + Informaţii + + + &Name: + &Nume: + + + Commen&t: + Comen&tariu: + + + Path: + Cale: + + + &Last modified by: + U&ltima modificare de către: + + + Created &by: + Creat &de: + + + Com&pany: + Com&panie: + + + Last &modification date: + Data ultimei &modificări: + + + Creation &date: + &Data creeări: + + + &OK + &OK + + + &Cancel + &Revocare + + + + + + + + Gui::Dialog::DlgProjectUtility + + Project utility + Project utility + + + Extract project + Extract project + + + Source + Source + + + Project file (*.fcstd) + Project file (*.fcstd) + + + Destination + Destination + + + Extract + Extract + + + Create project + Create project + + + Document.xml + Document.xml + + + Create + Creează + + + Load project file after creation + Load project file after creation + + + Empty source + Empty source + + + No source is defined. + No source is defined. + + + Empty destination + Empty destination + + + No destination is defined. + No destination is defined. + + + + Gui::Dialog::DlgReportView + + Output window + Fereastra de ieşire + + + Output + Ieşire + + + Record log messages + Înregistrare mesaje în jurnal + + + Record warnings + Înregistrează avertismente + + + Record error messages + Înregistrează mesajele de eroare + + + Colors + Culori + + + Normal messages: + Mesaje normale: + + + Log messages: + Mesaje de jurnal: + + + Warnings: + Avertismente: + + + Errors: + Erori: + + + + + + + Redirect internal Python errors to report view + Redirect internal Python errors to report view + + + Redirect internal Python output to report view + Redirect internal Python output to report view + + + + Gui::Dialog::DlgRunExternal + + Running external program + Running external program + + + TextLabel + TextLabel + + + Advanced >> + Advanced >> + + + ... + ... + + + Accept changes + Accept changes + + + Discard changes + Discard changes + + + Abort program + Abort program + + + Help + Ajutor + + + Select a file + Selectaţi un fişier + + + + Gui::Dialog::DlgSettings3DView + + 3D View + Vizualizare 3D + + + 3D View settings + Setările de vizualizării 3D + + + Show coordinate system in the corner + Arată sistemul de coordonate în colţ + + + Show counter of frames per second + Arată contorul de cadre pe secundă + + + Enable animation + Activează animaţia + + + Enable anti-aliasing (slower) + Activează anti-aliasing (mai încet) + + + Eye to eye distance for stereo modes: + Distanţa dintre ochi pentru modurile stereo: + + + Camera type + Tipul de camerei + + + Orthographic rendering + Redare ortografică + + + Perspective rendering + Redare din perspectivă + + + + + + + 3D Navigation + 3D Navigation + + + Mouse... + Mouse... + + + Intensity of backlight + Intensity of backlight + + + Enable backlight color + Enable backlight color + + + Orbit style + Orbit style + + + Turntable + Turntable + + + Trackball + Trackball + + + Invert zoom + Invert zoom + + + Zoom at cursor + Zoom at cursor + + + Zoom step + Zoom step + + + + Gui::Dialog::DlgSettings3DViewImp + + %1 navigation + %1 navigation + + + + Gui::Dialog::DlgSettingsColorGradient + + Color model + Modelul de culoare + + + &Gradient: + &Gradientul: + + + red-yellow-green-cyan-blue + roşu-galben-verde-cyan-albastru + + + blue-cyan-green-yellow-red + albastru-cyan-verde-galben-roşu + + + white-black + alb-negru + + + black-white + negru-alb + + + Visibility + Vizibilitate + + + Out g&rayed + Elimină tot ce e g&ri + + + Alt+R + Alt+R + + + Out &invisible + Elimină tot ce e &invizibil + + + Alt+I + Alt+I + + + Style + Stil + + + &Zero + &Zero + + + Alt+Z + Alt+Z + + + &Flow + &Flux + + + Alt+F + Alt+F + + + &OK + &OK + + + &Cancel + &Revocare + + + Parameter range + Intervalul parametrului + + + Mi&nimum: + Mi&nimul: + + + Ma&ximum: + Ma&ximul: + + + &Labels: + &Etichete: + + + &Decimals: + &Zecimale: + + + + + + + Color-gradient settings + Color-gradient settings + + + + Gui::Dialog::DlgSettingsColorGradientImp + + Wrong parameter + Parametru greşit + + + The maximum value must be higher than the minimum value. + Valoarea maximă trebuie să fie mai mare decât valoarea minimă. + + + + Gui::Dialog::DlgSettingsDocument + + Document + Documentul + + + General + General + + + Document save compression level +(0 = none, 9 = highest, 3 = default) + nivelul de comprimare al documentului +(0=deloc, 9=cel mai mare, 3=implicit) + + + Create new document at start up + Creează un document nou la pornire + + + Storage + Stocare + + + Saving transactions (Auto-save) + Salvare tranzacţii (Autosave) + + + Discard saved transaction after saving document + Renunțați la tranzacţia salvată după salvarea documentului + + + Save thumbnail into project file when saving document + Salvaţi pictograma în fişierul proiect la salvarea documentului + + + Create up to backup files when resaving document + Create up to backup files when resaving document + + + Document objects + Document objects + + + Allow duplicate object labels in one document + Allow duplicate object labels in one document + + + Maximum Undo/Redo steps + Maximum Undo/Redo steps + + + Using Undo/Redo on documents + Using Undo/Redo on documents + + + + Gui::Dialog::DlgSettingsEditorImp + + Text + Text + + + Bookmark + Semn de carte + + + Breakpoint + Punct de întrerupere + + + Keyword + Cuvânt cheie + + + Comment + Comentariu + + + Block comment + Comentariu de bloc + + + Number + Număr + + + String + Şir + + + Character + Caracter + + + Class name + Numele clasei + + + Define name + Definiți numele + + + Operator + Operator + + + Python output + Ieşire Python + + + Python error + Eroare Python + + + Items + Elemente + + + Current line highlight + Current line highlight + + + + Gui::Dialog::DlgSettingsImage + + Image settings + Setările de imagine + + + Image properties + Proprietăţile imaginii + + + Back&ground: + &Fundal: + + + Current + Curent + + + White + Alb + + + Black + Negru + + + Transparent + Transparent + + + Image dimensions + Dimensiunile imaginii + + + Pixel + Pixel + + + &Width: + &Lăţime: + + + Current screen + Ecranul curent + + + Icon 32 x 32 + Pictograma 32 x 32 + + + Icon 64 x 64 + Pictograma 64 x 64 + + + Icon 128 x 128 + Pictograma 128 x 128 + + + CGA 320 x 200 + CGA 320 x 200 + + + QVGA 320 x 240 + QVGA 320 x 240 + + + VGA 640 x 480 + VGA 640 x 480 + + + NTSC 720 x 480 + NTSC 720 x 480 + + + PAL 768 x 578 + PAL 768 x 578 + + + SVGA 800 x 600 + SVGA 800 x 600 + + + XGA 1024 x 768 + XGA 1024 x 768 + + + HD720 1280 x 720 + HD720 1280 x 720 + + + SXGA 1280 x 1024 + SXGA 1280 x 1024 + + + SXGA+ 1400 x 1050 + SXGA + 1400 x 1050 + + + UXGA 1600 x 1200 + UXGA 1600 x 1200 + + + HD1080 1920 x 1080 + HD1080 1920 x 1080 + + + WUXGA 1920 x 1200 + WUXGA 1920 x 1200 + + + QXGA 2048 x 1538 + QXGA 2048 x 1538 + + + WQXGA 2560 x 1600 + WQXGA 2560 x 1600 + + + QSXGA 2560 x 2048 + QSXGA 2560 x 2048 + + + QUXGA 3200 × 2400 + QUXGA 3200 X 2400 + + + HUXGA 6400 × 4800 + HUXGA 6400 × 4800 + + + !!! 10000 x 10000 + !!! 10 000 x 10000 + + + Standard sizes: + Dimensiuni standard: + + + &Height: + &Înălţime: + + + Aspect ratio: + Raportul de aspect: + + + &Screen + &Ecran + + + Alt+S + Alt + S + + + &4:3 + &4:3 + + + Alt+4 + Alt + 4 + + + 1&6:9 + 1&6:9 + + + Alt+6 + Alt + 6 + + + &1:1 + &1:1 + + + Alt+1 + Alt + 1 + + + Image comment + Comentariul imaginii + + + Insert MIBA + Inserare MIBA + + + Insert comment + Inserare comentariu + + + + Gui::Dialog::DlgSettingsMacro + + Macro + Macrocomandă + + + Macro recording settings + Setările de înregistrare macrocomandă + + + Logging Commands + Comenzi pentru jurnal + + + Show script commands in python console + Arată comenzile script-ului în consola python + + + Log all commands issued by menus to file: + Salvează toate comenzile inițiate de meniuri în fișierul: + + + FullScript.FCScript + FullScript.FCScript + + + Gui commands + Comenzi GUI + + + Recording GUI commands + Înregistrare comenzi GUI + + + Record as comment + Înregistrează ca și comentariu + + + Macro path + Calea macrocomenzii + + + General macro settings + General macro settings + + + Run macros in local environment + Run macros in local environment + + + + Gui::Dialog::DlgSettingsUnits + + Units + Units + + + Units settings + Units settings + + + Standard (mm/kg/s/degree) + Standard (mm/kg/s/degree) + + + MKS (m/kg/s/degree) + MKS (m/kg/s/degree) + + + Magnitude + Magnitude + + + Unit + Unit + + + User system: + User system: + + + Imperial (in/lb) + Imperial (in/lb) + + + + Gui::Dialog::DlgSettingsViewColor + + Colors + Culori + + + Selection + Selecţie + + + Enable selection highlighting + Activează evidenţierea selecţiei + + + Enable preselection highlighting + Enable preselection highlighting + + + Background color + Culoarea de fundal + + + Middle color + Culoarea de mijloc + + + Color gradient + Gradientul culorii + + + Simple color + Culoare simplă + + + Default colors + Default colors + + + Edited edge color + Edited edge color + + + Edited vertex color + Edited vertex color + + + Construction geometry + Construction geometry + + + Fully constrained geometry + Fully constrained geometry + + + The color of vertices being edited + The color of vertices being edited + + + The color of edges being edited + The color of edges being edited + + + The color of construction geometry in edit mode + Culoarea obiectelor geometrice de construcţie în modul de editare + + + The color of fully constrained geometry in edit mode + Culoarea unei forme geometrice deplin constrânsă în modul de editare + + + Cursor text color + Cursor text color + + + Default shape color + Default shape color + + + The default color for new shapes + The default color for new shapes + + + Default line width and color + Default line width and color + + + The default line color for new shapes + The default line color for new shapes + + + The default line thickness for new shapes + The default line thickness for new shapes + + + px + px + + + + Gui::Dialog::DlgTipOfTheDay + + Tip of the day + Sfatul zilei + + + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Ştiaţi că...</font></font></b> + + + &Show tips at start up + Arată &sfaturi la pornire + + + Alt+S + Alt + S + + + &Next Tip + Ur&mătorul sfat + + + Alt+N + Alt+N + + + &Close + &Inchide + + + Alt+C + Alt + C + + + + + + + + Gui::Dialog::DlgTipOfTheDayImp + + Download failed: %1 + + Descărcare nereuşită: %1 + + + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + Dacă doriţi să aflaţi mai multe despre FreeCAD trebuie să mergeți la %1 sau să apăsați comanda Ajutor din meniul Ajutor. + + + + Gui::Dialog::DockablePlacement + + Placement + Amplasare + + + + Gui::Dialog::DownloadDialog + + Download + Download + + + Cancel + Renunţă + + + Close + Închide + + + There already exists a file called %1 in the current directory. Overwrite? + There already exists a file called %1 in the current directory. Overwrite? + + + Unable to save the file %1: %2. + Unable to save the file %1: %2. + + + Downloading %1. + Downloading %1. + + + Download canceled. + Download canceled. + + + Download failed: %1. + Descărcare nereuşită: %1. + + + Downloaded %1 to current directory. + Downloaded %1 to current directory. + + + + Gui::Dialog::IconDialog + + Add icon + Add icon + + + + Gui::Dialog::InputVector + + Input vector + Vectorul de intrare + + + Vector + Vector + + + Z: + Z: + + + Y: + Y: + + + X: + X: + + + OK + OK + + + + Gui::Dialog::LicenseDialog + + Copyright + Copyright + + + + Gui::Dialog::MouseButtons + + Mouse buttons + Mouse buttons + + + Configuration + Configuration + + + Selection: + Selecţie: + + + Panning + Panning + + + Rotation: + Rotaţie: + + + Zooming: + Zooming: + + + + Gui::Dialog::ParameterGroup + + Expand + Extinde + + + Add sub-group + Adaugă subgrup + + + Remove group + Elimină grupul + + + Rename group + Redenumire grup + + + Export parameter + Parametru de export + + + Import parameter + Parametru de import + + + Collapse + Restrângere + + + Do really want to remove this parameter group? + Chiar doriți să eliminaţi acest grup de parametrii? + + + Existing sub-group + Subgrup existent + + + The sub-group '%1' already exists. + Subgroupul '%1' există deja. + + + Export parameter to file + Exportă parametru într-un fişier + + + XML (*.FCParam) + XML (*.FCParam) + + + Import parameter from file + Importă parametrul din fişier + + + Import Error + Eroare de import + + + Reading from '%1' failed. + Citirea din '%1' nu a reușit. + + + + Gui::Dialog::ParameterValue + + Change value + Modificaţi valoarea + + + Remove key + Eliminați cheie + + + Rename key + Redenumiţi cheie + + + New + Nou + + + New string item + Element şir nou + + + New float item + Element float nou + + + New integer item + Element întreg nou + + + New unsigned item + Element unsigned nou + + + New Boolean item + Element Boolean nou + + + Existing item + Element existent + + + The item '%1' already exists. + Elementul '%1' există deja. + + + + Gui::Dialog::Placement + + Placement + Amplasare + + + OK + OK + + + Translation: + Traducere: + + + Z: + Z: + + + Y: + Y: + + + X: + X: + + + Rotation: + Rotaţie: + + + Angle: + Unghiul: + + + Axis: + Axa: + + + Center: + Center: + + + Pitch: + Pitch: + + + Roll: + Roll: + + + Yaw: + Yaw: + + + Rotation axis with angle + Rotation axis with angle + + + Euler angles + Euler angles + + + Apply placement changes immediately + Apply placement changes immediately + + + Apply incremental changes to object placement + Apply incremental changes to object placement + + + Apply + Aplică + + + Reset + Reset + + + Close + Închide + + + + Gui::Dialog::PrintModel + + Button + Button + + + Command + Comanda + + + + Gui::Dialog::SceneInspector + + Dialog + Dialog + + + Close + Închide + + + Refresh + Reîmprospătare + + + + Gui::Dialog::SceneModel + + Inventor Tree + Arbore tip Inventor + + + Nodes + Noduri + + + + Gui::Dialog::TextureMapping + + Texture + Texture + + + Texture mapping + Texture mapping + + + Global + Global + + + Environment + Environment + + + Image files (%1) + Image files (%1) + + + No image + No image + + + The specified file is not a valid image file. + The specified file is not a valid image file. + + + No 3d view + No 3d view + + + No active 3d view found. + No active 3d view found. + + + + Gui::Dialog::Transform + + Cancel + Renunţă + + + Transform + Transform + + + + Gui::DlgTreeWidget + + Dialog + Dialog + + + Items + Elemente + + + OK + OK + + + Cancel + Renunţă + + + + + + + + Gui::DockWnd::CombiView + + CombiView + Vedere combi + + + Project + Proiect + + + Tasks + Sarcini + + + + Gui::DockWnd::HelpView + + Previous + Anterior + + + Next + Următor + + + Home + Acasă + + + Open + Deschide + + + Open file + Deschide fişier + + + All HTML files (*.html *.htm) + Toate fişierele HTML (*.html *.htm) + + + External browser + Browser-ul extern + + + No external browser found. Specify in preferences, please + Nici un browser extern găsit. Vă rugăm să specificaţi unul în Preferinţe + + + Starting of %1 failed + Inceputul %1 nu a reușit + + + + Gui::DockWnd::PropertyDockView + + Property View + Vizualizare proprietăţi + + + + Gui::DockWnd::ReportOutput + + Logging + Logare + + + Warning + Avertizare + + + Error + Eroare + + + Options + Opţiuni + + + Clear + Eliberează + + + Save As... + Salvare ca... + + + Save Report Output + Salvaţi raportul de ieşire + + + Plain Text Files (*.txt *.log) + Fișierele Text (*.txt * .log) + + + Go to end + Go to end + + + Redirect Python output + Redirect Python output + + + Redirect Python errors + Redirect Python errors + + + + Gui::DockWnd::ReportView + + Output + Ieşire + + + Python console + Consola Python + + + + Gui::DockWnd::SelectionView + + Property View + Vizualizare proprietăţi + + + + Gui::DockWnd::TaskPanelView + + Task View + Vizualizare activitate + + + + Gui::DockWnd::TextBrowser + + Could not open file. + Imposibil de deschis fișierul. + + + You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. + Aţi încercat să accesaţi adresa %1 care este momentan indisponibilă. Vă rugăm să asiguraţi-vă că URL-ul există şi încercaţi reîncărcarea paginii. + + + Connecting to %1 + Conectare la %1 + + + Sending to %1 + Se trimite la %1 + + + Reading from %1 + Se citeşte din %1 + + + Download failed: %1. + Descărcare nereuşită: %1. + + + Previous + Anterior + + + Forward + Înainte + + + Home + Acasă + + + Refresh + Reîmprospătare + + + Copy + Copiere + + + Select all + Selectează tot + + + No description for + Nici o descriere pentru + + + + Gui::DocumentModel + + Application + Aplicație + + + Labels & Attributes + Etichete & Atribute + + + + Gui::EditorView + + Modified file + Fişier modificat + + + %1. + +This has been modified outside of the source editor. Do you want to reload it? + %1. +A fost modificat în afara editorului. Vrei să-l reîncărcaţi? + + + Unsaved document + Document nesalvat + + + The document has been modified. +Do you want to save your changes? + Documentul a fost modificat. +Doriți să salvați modificările? + + + FreeCAD macro (*.FCMacro);;Python (*.py) + Macrocomandă FreeCAD (*.FCMacro);;Python (*.py) + + + Export PDF + Exportă PDF + + + PDF file (*.pdf) + Fişier PDF (*.pdf) + + + untitled[*] + fără titlu [*] + + + - Editor + - Editor + + + %1 chars removed + %1 caractere eliminate + + + %1 chars added + %1 caractere adăugate + + + Formatted + Formatat + + + + Gui::FileChooser + + Select a file + Selectaţi un fişier + + + Select a directory + Selectaţi un director + + + + Gui::FileDialog + + Save as + Salvare ca + + + Open + Deschide + + + + Gui::FileOptionsDialog + + Extended + Extins + + + All files (*.*) + Toate fişierele (*.*) + + + + Gui::Flag + + Top left + Stânga sus + + + Bottom left + Stânga jos + + + Top right + Dreapta sus + + + Bottom right + Dreapta jos + + + Remove + Elimină + + + + Gui::InventorNavigationStyle + + Press CTRL and left mouse button + Press CTRL and left mouse button + + + Press middle mouse button + Press middle mouse button + + + Press left mouse button + Press left mouse button + + + Scroll middle mouse button + Scroll middle mouse button + + + + Gui::LocationDialog + + Wrong direction + Direcţie greşită + + + Direction must not be the null vector + Direcţia nu trebuie să fie vectorul nul + + + X + X + + + Y + Y + + + Z + Z + + + User defined... + Definit de utilizator... + + + + Gui::LocationWidget + + X: + X: + + + Y: + Y: + + + Z: + Z: + + + Direction: + Direction: + + + + Gui::MacroCommand + + Macros + Macro-uri + + + + Gui::MainWindow + + Dimension + Dimensiune + + + Ready + Gata + + + Toggles this toolbar + Comută această bară de instrumente + + + Toggles this dockable window + Comută această fereastră fixabilă + + + Close All + Close All + + + + Gui::ManualAlignment + + Manual alignment + Manual alignment + + + The alignment is already in progress. + The alignment is already in progress. + + + Alignment[*] + Alignment[*] + + + Please, select at least one point in the left and the right view + Please, select at least one point in the left and the right view + + + Please, select at least %1 points in the left and the right view + Please, select at least %1 points in the left and the right view + + + Please pick points in the left and right view + Please pick points in the left and right view + + + The alignment has finished + The alignment has finished + + + The alignment has been canceled + The alignment has been canceled + + + Too few points picked in the left view. At least %1 points are needed. + Too few points picked in the left view. At least %1 points are needed. + + + Too few points picked in the right view. At least %1 points are needed. + Too few points picked in the right view. At least %1 points are needed. + + + Different number of points picked in left and right view. +On the left view %1 points are picked, +on the right view %2 points are picked. + Different number of points picked in left and right view. +On the left view %1 points are picked, +on the right view %2 points are picked. + + + Try to align group of views + Try to align group of views + + + The alignment failed. +How do you want to proceed? + The alignment failed. +How do you want to proceed? + + + Retry + Retry + + + Ignore + Ignoră + + + Abort + Abort + + + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + + + Point picked at (%1,%2,%3) + Point picked at (%1,%2,%3) + + + No point was picked + No point was picked + + + + Gui::NetworkRetriever + + Download started... + + Descărcarea a început... + + + + Gui::ProgressBar + + Remaining: %1 + Rămas:%1 + + + Aborting + Se anulează + + + Do you really want to abort the operation? + Chiar doriţi abandonarea operațiunii? + + + + Gui::ProgressDialog + + Remaining: %1 + Rămas:%1 + + + Aborting + Se anulează + + + Do you really want to abort the operation? + Chiar doriţi abandonarea operațiunii? + + + + Gui::PropertyEditor::PropertyModel + + Property + Proprietate + + + Value + Valoare + + + + Gui::PropertyView + + View + Vizualizare + + + Data + Date + + + + Gui::PythonConsole + + System exit + Ieşire din sistem + + + The application is still running. +Do you want to exit without saving your data? + Aplicaţia încă rulează. +Doriți să ieşiți fără a salva datele dumneavoastră? + + + Python console + Consola Python + + + Unhandled PyCXX exception. + Excepție netratată PyCXX. + + + Unhandled FreeCAD exception. + Excepție netratată FreeCAD. + + + Unhandled unknown C++ exception. + Excepție netratată necunoscută C++. + + + &Copy command + &Copiaţi comanda + + + &Copy history + &Copiaţi istoria + + + Save history as... + Salvaţi istoria ca... + + + Insert file name... + Introduceţi nume fişier... + + + Save History + Salvează Istoria + + + Macro Files (*.FCMacro *.py) + Fișiere de macrocomenzi (*.FCMacro *.py) + + + Insert file name + Inserați nume fişier + + + All Files (*.*) + Toate fișierele (*.*) + + + Python Input Dialog + Dialog de intrare Python + + + Unhandled std C++ exception. + Unhandled std C++ exception. + + + Word wrap + Word wrap + + + &Copy + &Copie + + + &Paste + &Lipire + + + Select All + Selectaţi tot + + + Clear console + Clear console + + + + Gui::PythonEditor + + Comment + Comentariu + + + Uncomment + Decomentaţi + + + + Gui::PythonInputField + + OK + OK + + + Clear + Eliberează + + + + Gui::RecentFilesAction + + Open file %1 + Deschide fişierul %1 + + + File not found + Fișier nu a fost găsit + + + The file '%1' cannot be opened. + Fișierul '%1' nu poate fi deschis. + + + + Gui::SelectModule + + Select module + Selectaţi modulul + + + Open %1 as + Deschide '%1' ca + + + Select + Selectaţi + + + + Gui::StdCmdDescription + + Help + Ajutor + + + Des&cription + Des&criere + + + Long description of commands + Descrierea exstinsă a comenzilor + + + + Gui::StdCmdDownloadOnlineHelp + + Help + Ajutor + + + Download online help + Descărcaţi ajutorul online + + + Download %1's online help + Descarcă %1 din ajutorul online + + + Non-existing directory + Director inexistent + + + The directory '%1' does not exist. + +Do you want to specify an existing directory? + Directorul '%1' nu există. +Doriţi să specificaţi un director existent? + + + Missing permission + Permisiunea lipsă + + + You don't have write permission to '%1' + +Do you want to specify another directory? + Nu aveţi permisiunea de a scrie în '%1' +Doriţi să specificaţi un alt director? + + + Stop downloading + Opriţi descărcarea + + + + Gui::StdCmdPythonHelp + + Tools + Instrumente + + + Python Modules + Module Python + + + Opens a browser to show the Python modules + Se deschide un browser pentru a afișa modulele Python + + + + Gui::TaskBoxAngle + + Angle + Angle + + + + Gui::TaskBoxPosition + + Position + Position + + + + Gui::TaskView::TaskAppearance + + Plot mode: + Mod de tipărire: + + + Point size: + Dimensiunea punctelor: + + + Line width: + Lățimea liniei: + + + Transparency: + Transparenţă: + + + Appearance + Aspect + + + Document window: + Document window: + + + + Gui::TaskView::TaskEditControl + + Edit + Editare + + + + Gui::TaskView::TaskSelectLinkProperty + + Appearance + Aspect + + + ... + ... + + + edit selection + edit selection + + + + Gui::TouchpadNavigationStyle + + Press left mouse button + Press left mouse button + + + Press SHIFT button + Press SHIFT button + + + Press ALT button + Press ALT button + + + Press PgUp/PgDown button + Press PgUp/PgDown button + + + + Gui::TreeDockWidget + + Tree view + Vizualizare arborescentă + + + + Gui::TreeWidget + + Create group... + Creazã grup... + + + Create a group + Creează un grup + + + Group + Grup + + + Rename + Redenumire + + + Rename object + Redenumire obiect + + + Labels & Attributes + Etichete & Atribute + + + Application + Aplicație + + + Finish editing + Finish editing + + + Finish editing object + Finish editing object + + + Activate document + Activate document + + + Activate document %1 + Activate document %1 + + + + Gui::View3DInventor + + Export PDF + Exportă PDF + + + PDF file (*.pdf) + Fişier PDF (*.pdf) + + + + Gui::WorkbenchGroup + + Select the '%1' workbench + Selectaţi bancul de lucru '%1' + + + + Position + + Form + Form + + + X: + X: + + + Y: + Y: + + + Z: + Z: + + + 0.1 mm + 0.1 mm + + + 0.5 mm + 0.5 mm + + + 1 mm + 1 mm + + + 2 mm + 2 mm + + + 5 mm + 5 mm + + + 10 mm + 10 mm + + + 20 mm + 20 mm + + + 50 mm + 50 mm + + + 100 mm + 100 mm + + + 200 mm + 200 mm + + + 500 mm + 500 mm + + + 1 m + 1 m + + + 2 m + 2 m + + + 5 m + 5 m + + + Grid Snap in + Grid Snap in + + + + QDockWidget + + Tree view + Vizualizare arborescentă + + + Property view + Vizualizare proprietăţi + + + Selection view + Vizualizare selecție + + + Report view + Vezualizare raport + + + Task View + Vizualizare activitate + + + Combo View + Vizualizare combo + + + Toolbox + Toolbox + + + Python console + Consola Python + + + Display properties + Afișare proprietăți + + + + QObject + + General + General + + + Display + Afișare + + + Unknown filetype + Tip de fișier necunoscut + + + Cannot open unknown filetype: %1 + Imposibil de deschis fişierul în format necunoscut:%1 + + + Cannot save to unknown filetype: %1 + Nu se poate salva într-un format de fişier necunoscut:%1 + + + Workbench failure + Bancul de lucru a eşuat + + + %1 + %1 + + + Unable to launch Qt Assistant (%1) + Nu se poate lansa Asistentul Qt (%1) + + + Exception + Excepţie + + + Open document + Deschidere document + + + Import file + Importă fişier + + + Export file + Exportă fişier + + + Printing... + Imprimare... + + + Cannot load workbench + Imposibil de încărcat bancul de lucru + + + A general error occurred while loading the workbench + O eroare generală a apărut în timpul încărcării bancului de lucru + + + Save views... + Salvare vederi... + + + Load views... + Încarcă vederi... + + + Freeze view + Îngheaţă vederi + + + Clear views + Eliberează vederile + + + Restore view &%1 + Restaurează vederile &%1 + + + Save frozen views + Salvează vederile îngheţate + + + Frozen views (*.cam) + Vederile îngheţate (*.cam) + + + Restore views + Restaurează vederile + + + Importing the restored views would clear the already stored views. +Do you want to continue? + Importul vederilor restaurate ar elimina vederile deja salvate. +Doriţi să continuaţi? + + + Restore frozen views + Restaurează vederile îngheţate + + + Cannot open file '%1'. + Imposibil de deschis fișierul '%1'. + + + Docked + Fixat + + + Undocked + Nefixată + + + Fullscreen + Ecran complet + + + files + fişiere + + + Save picture + Salvează imaginea + + + New sub-group + Subgrup noi + + + Enter the name: + Introduceți numele: + + + New text item + Text nou + + + Enter your text: + Introduceţi textul: + + + New integer item + Element întreg nou + + + Enter your number: + Introduceți numărul: + + + New unsigned item + Element unsigned nou + + + New float item + Element float nou + + + New Boolean item + Element Boolean nou + + + Choose an item: + Alegeţi un element: + + + Rename group + Redenumire grup + + + The group '%1' cannot be renamed. + Grupul '%1' nu poate fi redenumit. + + + Existing group + Grup existent + + + The group '%1' already exists. + Grupul '%1' există deja. + + + Change value + Modificaţi valoarea + + + Save document under new filename... + Salvaţi documentul sub un nume nou... + + + Saving aborted + Salvarea a fost anulată + + + Unsaved document + Document nesalvat + + + Save document before close? + Salvați documentul înainte de a închide? + + + Save Macro + Salvaţi macrocomanda + + + Finish + Terminare + + + Clear + Eliberează + + + Cancel + Renunţă + + + Inner + Interior + + + Outer + Exterior + + + No Browser + Nici un Browser + + + Unable to open your browser. + +Please open a browser window and type in: http://localhost:%1. + Imposibil de deschis browser-ul dumneavoastră. Vă rugăm să deschideţi o fereastră de browser şi tastaţi: http://localhost:%1. + + + No Server + Nici un server + + + Unable to start the server to port %1: %2. + Imposibil de pornit serverul pentru pe portul %1:%2. + + + Unable to open your system browser. + Imposibil de deschis browser-ul de sistem. + + + Options... + Opţiuni... + + + Out of memory + Memorie insuficientă + + + Not enough memory available to display the data. + Insuficientă memorie disponibilă pentru a afişa datele. + + + Cannot find file %1 + Imposibil de găsit fișierul %1 + + + Cannot find file %1 neither in %2 nor in %3 + Imposibil de găsit fișierul %1 la %2 nici în %3 + + + Save %1 Document + Salvaţi documentul %1 + + + %1 document (*.FCStd) + Documentul %1 (*.FCStd) + + + Save As + Salvaţi ca + + + %1 already exists. +Do you want to replace it? + %1 există deja. +Doriţi să-l înlocuiţi? + + + Document not closable + Documentul nu se poate închide + + + The document is not closable for the moment. + Documentul nu se poate închide momentan. + + + No OpenGL + No OpenGL + + + This system does not support OpenGL + This system does not support OpenGL + + + Help + Ajutor + + + Unable to load documentation. +In order to load it Qt 4.4 or higher is required. + Unable to load documentation. +In order to load it Qt 4.4 or higher is required. + + + %1 Help + %1 Help + + + Exporting PDF... + Exporting PDF... + + + Wrong selection + Selecţie greşită + + + Only one object selected. Please select two objects. +Be aware the point where you click matters. + Only one object selected. Please select two objects. +Be aware the point where you click matters. + + + Please select two objects. +Be aware the point where you click matters. + Please select two objects. +Be aware the point where you click matters. + + + New boolean item + New boolean item + + + Navigation styles + Navigation styles + + + %1 navigation + %1 navigation + + + Move annotation + Move annotation + + + Transform + Transform + + + The document is in editing mode and thus cannot be closed for the moment. +You either have to finish or cancel the editing in the task panel. + Documentul este în modul de editare şi astfel nu poate fi închis pentru moment. +Trebuie fie să terminaţi sau să anulaţi editarea în panoul de activitate. + + + + StdBoxSelection + + Standard-View + Vedere standard + + + Box selection + Box selection + + + + StdCmdAbout + + Help + Ajutor + + + &About %1 + &Despre %1 + + + About %1 + Despre %1 + + + + StdCmdAboutQt + + Help + Ajutor + + + About &Qt + Despre &Qt + + + About Qt + Despre Qt + + + + StdCmdActivateNextWindow + + Window + Fereastră + + + Ne&xt + &Următor + + + Activate next window + Activaţi fereastra următoare + + + + StdCmdActivatePrevWindow + + Window + Fereastră + + + Pre&vious + &Anterior + + + Activate previous window + Activaţi fereastra anterioară + + + + StdCmdAlignment + + Edit + Editare + + + Alignment... + Alignment... + + + Align the selected objects + Align the selected objects + + + + StdCmdArrangeIcons + + Window + Fereastră + + + Arrange &Icons + Aranjare p&ictograme + + + Arrange Icons + Aranjare pictograme + + + + StdCmdAxisCross + + Standard-View + Vedere standard + + + Toggle axis cross + Toggle axis cross + + + + StdCmdCascadeWindows + + Window + Fereastră + + + &Cascade + &Cascadă + + + Tile pragmatic + Tile pragmatic + + + + StdCmdCloseActiveWindow + + Window + Fereastră + + + Cl&ose + În&chide + + + Close active window + Închidere fereastră activă + + + + StdCmdCloseAllWindows + + Window + Fereastră + + + Close Al&l + Închidere Al&l + + + Close all windows + Închideţi toate ferestrele + + + + StdCmdCommandLine + + Tools + Instrumente + + + Start command &line... + Pornire &liniei de comandă... + + + Opens the command line in the console + Deschide linia de comandă în consolă + + + + StdCmdCopy + + Edit + Editare + + + C&opy + C&opiază + + + Copy operation + Operația de copiere + + + + StdCmdCut + + Edit + Editare + + + &Cut + &Taiere + + + Cut out + Decupare + + + + StdCmdDelete + + Edit + Editare + + + &Delete + Ş&tergeţi + + + Deletes the selected objects + Ştergeţi obiectele selectate + + + + StdCmdDemoMode + + Standard-View + Vedere standard + + + View turntable... + View turntable... + + + View turntable + View turntable + + + + StdCmdDlgCustomize + + Tools + Instrumente + + + Cu&stomize... + &Particularizare... + + + Customize toolbars and command bars + Particularizează barele de instrumente şi barele de comandă + + + + StdCmdDlgMacroExecute + + Macros ... + Macro-uri ... + + + Opens a dialog to let you execute a recorded macro + Deschide oferestră care vă permite execuţia unui macro înregistrat + + + Macro + Macrocomandă + + + + StdCmdDlgMacroExecuteDirect + + Macro + Macrocomandă + + + Execute macro + Executare macrocomandă + + + Execute the macro in the editor + Execute the macro in the editor + + + + StdCmdDlgMacroRecord + + &Macro recording ... + Înregistrare &macro... + + + Opens a dialog to record a macro + Deschide o fereastră care vă permite înregistrarea unui macro + + + Macro + Macrocomandă + + + + StdCmdDlgParameter + + Tools + Instrumente + + + E&dit parameters ... + E&ditare parametrii... + + + Opens a Dialog to edit the parameters + Deschide o fereastră care vă permite editarea parametrilor + + + + StdCmdDlgPreferences + + Tools + Instrumente + + + &Preferences ... + &Preferinţe... + + + Opens a Dialog to edit the preferences + Deschide o fereastră care vă permite editarea preferinţelor + + + + StdCmdDockViewMenu + + View + Vizualizare + + + Vie&ws + Vi&zualizări + + + Toggles this window + Comută această fereastră + + + + StdCmdDrawStyle + + Standard-View + Vedere standard + + + Draw style + Draw style + + + + StdCmdDuplicateSelection + + Edit + Editare + + + Duplicate selection + Duplicate selection + + + Put duplicates of the selected objects to the active document + Put duplicates of the selected objects to the active document + + + + StdCmdEdit + + Edit + Editare + + + Toggle &Edit mode + Comută modul de &editare + + + Toggles the selected object's edit mode + Comută modul de editare pentru obiectul selectat + + + Enters or leaves the selected object's edit mode + Intră sau iese din modul de editare pentru obiectul selectat + + + + StdCmdExport + + File + Fişier + + + &Export... + &Export... + + + Export an object in the active document + Exportați un obiect din documentul activ + + + No selection + Nici o selecţie + + + Please select first the objects you want to export. + Please select first the objects you want to export. + + + + StdCmdExportGraphviz + + Tools + Instrumente + + + Dependency graph... + Dependency graph... + + + Show the dependency graph of the objects in the active document + Show the dependency graph of the objects in the active document + + + + StdCmdFeatRecompute + + File + Fişier + + + &Recompute + &Recalculare + + + Recompute feature or document + Recalculare caracteristică sau document + + + + StdCmdFreeCADWebsite + + Help + Ajutor + + + FreeCAD Website + Site-ul FreeCAD + + + The FreeCAD website + Site-ul FreeCAD + + + + StdCmdFreezeViews + + Standard-View + Vedere standard + + + Freeze display + Îngheaţă ecranul + + + Freezes the current view position + Îngheaţă poziţia curentă a vederii + + + + StdCmdHideObjects + + Standard-View + Vedere standard + + + Hide all objects + Ascunde toate obiectele + + + Hide all objects in the document + Ascunde toate obiectele din document + + + + StdCmdHideSelection + + Standard-View + Vedere standard + + + Hide selection + Ascunde selecţia + + + Hide all selected objects + Ascunde toate obiectele selectate + + + + StdCmdImport + + File + Fişier + + + &Import... + &Import... + + + Import a file in the active document + Importă un fişier în documentul activ + + + Supported formats + Formate acceptate + + + All files (*.*) + Toate fişierele (*.*) + + + + StdCmdMacroStartDebug + + Macro + Macrocomandă + + + Debug macro + Debug macro + + + Start debugging of macro + Start debugging of macro + + + + StdCmdMacroStepOver + + Macro + Macrocomandă + + + Step over + Step over + + + + StdCmdMacroStopDebug + + Macro + Macrocomandă + + + Stop debugging + Stop debugging + + + Stop debugging of macro + Stop debugging of macro + + + + StdCmdMacroStopRecord + + Macro + Macrocomandă + + + S&top macro recording + Opreşte înregistrarea macrocomenzii + + + Stop the macro recording session + Opriţi sesiunea de înregistrare macrocomenzi + + + + StdCmdMeasureDistance + + View + Vizualizare + + + Measure distance + Măsoară distanţa + + + + StdCmdMeasurementSimple + + Tools + Instrumente + + + Measures distance between two selected objects + Measures distance between two selected objects + + + Measure distance + Măsoară distanţa + + + + StdCmdMergeProjects + + File + Fişier + + + Merge project... + Merge project... + + + Merge project + Merge project + + + %1 document (*.fcstd) + %1 document (*.fcstd) + + + Cannot merge project with itself. + Cannot merge project with itself. + + + + StdCmdNew + + File + Fişier + + + &New + &Nou + + + Create a new empty document + Creaţi un nou document gol + + + + StdCmdOnlineHelp + + Help + Ajutor + + + Show help to the application + Arată ghidul de Ajutor al aplicaţiei + + + + StdCmdOnlineHelpWebsite + + Help + Ajutor + + + Help Website + Site-ul de ajutor + + + The website where the help is maintained + Site-ul unde este întreţinut ghidul de ajutor + + + + StdCmdOpen + + File + Fişier + + + &Open... + &Deschideţi... + + + Open a document or import files + Deschideţi un document sau importaţi fişiere + + + Supported formats + Formate acceptate + + + All files (*.*) + Toate fişierele (*.*) + + + + StdCmdPaste + + Edit + Editare + + + &Paste + &Lipire + + + Paste operation + Lipiţi operaţia + + + + StdCmdPlacement + + Edit + Editare + + + Placement... + Placement... + + + Place the selected objects + Place the selected objects + + + + StdCmdPrint + + File + Fişier + + + &Print... + Im&primare... + + + Print the document + Imprimaţi documentul + + + + StdCmdPrintPdf + + File + Fişier + + + &Export PDF... + &Exportaţi PDF... + + + Export the document as PDF + Exportaţi documentul ca PDF + + + + StdCmdPrintPreview + + File + Fişier + + + &Print preview... + &Print preview... + + + Print the document + Imprimaţi documentul + + + Print preview + Print preview + + + + StdCmdProjectInfo + + File + Fişier + + + Project i&nformation... + &Informații de proiect... + + + Show details of the currently active project + Afişează detaliile proiectului activ + + + + StdCmdProjectUtil + + Tools + Instrumente + + + Project utility... + Project utility... + + + Utility to extract or create project files + Utility to extract or create project files + + + + StdCmdPythonWebsite + + Help + Ajutor + + + Python Website + Site-ul Python + + + The official Python website + Site-ul oficial Python + + + + StdCmdQuit + + File + Fişier + + + E&xit + &Ieşire + + + Quits the application + Închide aplicaţia + + + + StdCmdRandomColor + + File + Fişier + + + Random color + Culoare aleatorie + + + + StdCmdRecentFiles + + File + Fişier + + + Recent files + Fişiere recente + + + Recent file list + Lista de fişiere recente + + + + StdCmdRedo + + Edit + Editare + + + &Redo + &Refacere + + + Redoes a previously undone action + Reface o acţiune anulată anterior + + + + StdCmdRefresh + + Edit + Editare + + + &Refresh + &Reîmprospătare + + + Recomputes the current active document + Recalculează documentul activ + + + + StdCmdSave + + File + Fişier + + + &Save + &Salvaţi + + + Save the active document + Salvaţi documentul activ + + + + StdCmdSaveAs + + File + Fişier + + + Save &As... + S&alvaţi ca... + + + Save the active document under a new file name + Salvare documentul activ sub un nou nume de fişier + + + + StdCmdSceneInspector + + Tools + Instrumente + + + Scene inspector... + Inspectorul de scena... + + + Scene inspector + Inspectorul de scena + + + + StdCmdSelectAll + + Edit + Editare + + + Select &All + Select&aţi tot + + + Select all + Selectează tot + + + + StdCmdSetAppearance + + Standard-View + Vedere standard + + + Appearance... + Aspect... + + + Sets the display properties of the selected object + Defineşte proprietăţile de afişare a obiectului selectat + + + + StdCmdShowObjects + + Standard-View + Vedere standard + + + Show all objects + Arată toate obiectele + + + Show all objects in the document + Arată toate obiectele din document + + + + StdCmdShowSelection + + Standard-View + Vedere standard + + + Show selection + Arăta de selecţia + + + Show all selected objects + Arată toate obiectele selectate + + + + StdCmdStatusBar + + View + Vizualizare + + + Status bar + Bara de stare + + + Toggles the status bar + Comută bara de stare + + + + StdCmdTextureMapping + + Tools + Instrumente + + + Texture mapping... + Texture mapping... + + + Texture mapping + Texture mapping + + + + StdCmdTileWindows + + Window + Fereastră + + + &Tile + &Tile + + + Tile the windows + Tile the windows + + + + StdCmdToggleBreakpoint + + Macro + Macrocomandă + + + Toggle breakpoint + Toggle breakpoint + + + + StdCmdToggleClipPlane + + Standard-View + Vedere standard + + + Clipping plane + Planul de tăiere + + + Toggles clipping plane for active view + Comută planul de tăiere pentru vederea activă + + + + StdCmdToggleNavigation + + Standard-View + Vedere standard + + + Toggle navigation/Edit mode + Comutare mod de navigare/editare + + + Toggle between navigation and edit mode + Comuta între modul de editare şi modul de navigare + + + + StdCmdToggleObjects + + Standard-View + Vedere standard + + + Toggle all objects + Comutare toate obiectele + + + Toggles visibility of all objects in the active document + Comută vizibilitatea tuturor obiectelor din documentul activ + + + + StdCmdToggleSelectability + + Standard-View + Vedere standard + + + Toggle selectability + Toggle selectability + + + Toggles the property of the objects to get selected in the 3D-View + Toggles the property of the objects to get selected in the 3D-View + + + + StdCmdToggleVisibility + + Standard-View + Vedere standard + + + Toggle visibility + Comutare vizibilitate + + + Toggles visibility + Comută vizibilitatea + + + + StdCmdToolBarMenu + + View + Vizualizare + + + Tool&bars + &Bare de instrumente + + + Toggles this window + Comută această fereastră + + + + StdCmdTransform + + Edit + Editare + + + Transform... + Transform... + + + Transform the geometry of selected objects + Transform the geometry of selected objects + + + + StdCmdTreeSelection + + View + Vizualizare + + + Go to selection + Du-te la selecție + + + Scroll to first selected item + Scroll to first selected item + + + + StdCmdUndo + + Edit + Editare + + + &Undo + &Anulare + + + Undo exactly one action + Undo exactly one action + + + + StdCmdUserInterface + + View + Vizualizare + + + Dock views + Dock views + + + Dock all top-level views + Dock all top-level views + + + + StdCmdViewAxo + + Standard-View + Vedere standard + + + Axometric + Axometric + + + Set to axometric view + Set to axometric view + + + + StdCmdViewBottom + + Standard-View + Vedere standard + + + Bottom + Bottom + + + Set to bottom view + Set to bottom view + + + + StdCmdViewCreate + + Standard-View + Vedere standard + + + Create new view + Create new view + + + Creates a new view window for the active document + Creates a new view window for the active document + + + + StdCmdViewExample1 + + Standard-View + Vedere standard + + + Inventor example #1 + Inventor example #1 + + + Shows a 3D texture with manipulator + Shows a 3D texture with manipulator + + + + StdCmdViewExample2 + + Standard-View + Vedere standard + + + Inventor example #2 + Inventor example #2 + + + Shows spheres and drag-lights + Shows spheres and drag-lights + + + + StdCmdViewExample3 + + Standard-View + Vedere standard + + + Inventor example #3 + Inventor example #3 + + + Shows a animated texture + Shows a animated texture + + + + StdCmdViewFitAll + + Standard-View + Vedere standard + + + Fit all + Fit all + + + Fits the whole content on the screen + Fits the whole content on the screen + + + + StdCmdViewFitSelection + + Standard-View + Vedere standard + + + Fit selection + Fit selection + + + Fits the selected content on the screen + Fits the selected content on the screen + + + + StdCmdViewFront + + Standard-View + Vedere standard + + + Front + Front + + + Set to front view + Set to front view + + + + StdCmdViewIvIssueCamPos + + Standard-View + Vedere standard + + + Issue camera position + Issue camera position + + + Issue the camera position to the console and to a macro, to easily recall this position + Issue the camera position to the console and to a macro, to easily recall this position + + + + StdCmdViewIvStereoInterleavedColumns + + Standard-View + Vedere standard + + + Stereo Interleaved Columns + Stereo Interleaved Columns + + + Switch stereo viewing to Interleaved Columns + Switch stereo viewing to Interleaved Columns + + + + StdCmdViewIvStereoInterleavedRows + + Standard-View + Vedere standard + + + Stereo Interleaved Rows + Stereo Interleaved Rows + + + Switch stereo viewing to Interleaved Rows + Switch stereo viewing to Interleaved Rows + + + + StdCmdViewIvStereoOff + + Standard-View + Vedere standard + + + Stereo Off + Stereo Off + + + Switch stereo viewing off + Switch stereo viewing off + + + + StdCmdViewIvStereoQuadBuff + + Standard-View + Vedere standard + + + Stereo quad buffer + Stereo quad buffer + + + Switch stereo viewing to quad buffer + Switch stereo viewing to quad buffer + + + + StdCmdViewIvStereoRedGreen + + Standard-View + Vedere standard + + + Stereo red/green + Stereo red/green + + + Switch stereo viewing to red/green + Switch stereo viewing to red/green + + + + StdCmdViewLeft + + Standard-View + Vedere standard + + + Left + Left + + + Set to left view + Set to left view + + + + StdCmdViewRear + + Standard-View + Vedere standard + + + Rear + Rear + + + Set to rear view + Set to rear view + + + + StdCmdViewRight + + Standard-View + Vedere standard + + + Right + Right + + + Set to right view + Set to right view + + + + StdCmdViewRotateLeft + + Standard-View + Vedere standard + + + Rotate Left + Rotate Left + + + Rotate the view by 90° counter-clockwise + Rotate the view by 90° counter-clockwise + + + + StdCmdViewRotateRight + + Standard-View + Vedere standard + + + Rotate Right + Rotate Right + + + Rotate the view by 90° clockwise + Rotate the view by 90° clockwise + + + + StdCmdViewTop + + Standard-View + Vedere standard + + + Top + Top + + + Set to top view + Set to top view + + + + StdCmdWhatsThis + + Help + Ajutor + + + &What's This? + &What's This? + + + What's This + What's This + + + + StdCmdWindows + + Window + Fereastră + + + &Windows... + &Windows... + + + Windows list + Windows list + + + + StdCmdWindowsMenu + + Window + Fereastră + + + Activates this window + Activates this window + + + + StdCmdWorkbench + + View + Vizualizare + + + Workbench + Banc de lucru + + + Switch between workbenches + Comută între bancurile de lucru + + + + StdOrthographicCamera + + Standard-View + Vedere standard + + + Orthographic view + Orthographic view + + + Switches to orthographic view mode + Switches to orthographic view mode + + + + StdPerspectiveCamera + + Standard-View + Vedere standard + + + Perspective view + Perspective view + + + Switches to perspective view mode + Switches to perspective view mode + + + + StdViewBoxZoom + + Standard-View + Vedere standard + + + Box zoom + Box zoom + + + + StdViewDockUndockFullscreen + + Standard-View + Vedere standard + + + Document window + Document window + + + Display the active view either in fullscreen, in undocked or docked mode + Display the active view either in fullscreen, in undocked or docked mode + + + + StdViewScreenShot + + Standard-View + Vedere standard + + + Save picture... + Save picture... + + + Creates a screenshot of the active view + Creates a screenshot of the active view + + + + StdViewZoomIn + + Standard-View + Vedere standard + + + Zoom In + Zoom In + + + + StdViewZoomOut + + Standard-View + Vedere standard + + + Zoom Out + Zoom Out + + + + Std_DrawStyle + + As is + As is + + + Normal mode + Normal mode + + + Wireframe + Wireframe + + + Wireframe mode + Modul wireframe + + + + Std_ExportGraphviz + + Graphviz not found + Graphviz not found + + + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + + + Graphviz installation path + Graphviz installation path + + + Dependency graph + Dependency graph + + + Graphviz failed + Graphviz failed + + + Graphviz failed to create an image file + Graphviz failed to create an image file + + + + Workbench + + &File + &Fişier + + + &Edit + &Editare + + + Standard views + Vederi standard + + + &Stereo + &Stereo + + + &Zoom + &Zoom + + + Visibility + Vizibilitate + + + &View + &Vedere + + + &Tools + Ins&trumente + + + &Macro + &Macro + + + &Windows + &Ferestre + + + &On-line help + Ajut&or on-line + + + &Help + &Ajutor + + + File + Fişier + + + Macro + Macrocomandă + + + View + Vizualizare + + + Special Ops + Operaţii speciale + + + + testClass + + test + test + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + + + Choose the style of the Task Panel + Choose the style of the Task Panel + + + Default + Default + + + Windows XP + Windows XP + + + diff --git a/src/Gui/Language/FreeCAD_ru.qm b/src/Gui/Language/FreeCAD_ru.qm index 58af46a22..9bb031e39 100644 Binary files a/src/Gui/Language/FreeCAD_ru.qm and b/src/Gui/Language/FreeCAD_ru.qm differ diff --git a/src/Gui/Language/FreeCAD_ru.ts b/src/Gui/Language/FreeCAD_ru.ts index a8e56df61..074ba9069 100644 --- a/src/Gui/Language/FreeCAD_ru.ts +++ b/src/Gui/Language/FreeCAD_ru.ts @@ -1,5899 +1,5826 @@ - - + + Angle - Form - Форма + Form + Форма - A: - A: + A: + A: - B: - B: + B: + B: - C: - C: + C: + C: - Angle Snap - Угол оснастки + Angle Snap + Угол оснастки - - 1 ° - 1 ° + + 1 ° + 1 ° - - 2 ° - false + + 2 ° + false - - 5 ° - 5 ° + + 5 ° + 5 ° - - 10 ° - 10 ° + + 10 ° + 10 ° - - 20 ° - 20 ° + + 20 ° + 20 ° - - 45 ° - 45 ° + + 45 ° + 45 ° - - 90 ° - 90 ° + + 90 ° + 90 ° - - 180 ° - 180 ° + + 180 ° + 180 ° - - + + Gui::AccelLineEdit - none - Отсутствует + none + Отсутствует - - + + Gui::ActionSelector - Available: - + Available: + Доступны: - Selected: - + Selected: + Выбранные: - Add - Добавить + Add + Добавить - Remove - Удалить + Remove + Удалить - Move up - Переместить вверх + Move up + Переместить вверх - Move down - Переместить вниз + Move down + Переместить вниз - - + + Gui::AlignmentView - Movable object - + Movable object + Перемещаемый объект - Fixed object - + Fixed object + Фиксированный объект - - + + Gui::BlenderNavigationStyle - Press left mouse button - Нажмите левую кнопку мыши + Press left mouse button + Нажмите левую кнопку мыши - Press SHIFT and middle mouse button - Нажмите клавишу SHIFT и среднюю кнопку мыши + Press SHIFT and middle mouse button + Нажмите клавишу SHIFT и среднюю кнопку мыши - Press middle mouse button - Нажмите среднюю кнопку мыши + Press middle mouse button + Нажмите среднюю кнопку мыши - Scroll middle mouse button - Прокрутите среднюю кнопку мыши + Scroll middle mouse button + Прокрутите среднюю кнопку мыши - - + + Gui::CADNavigationStyle - Press left mouse button - Нажмите левую кнопку мыши + Press left mouse button + Нажмите левую кнопку мыши - Press middle mouse button - Нажмите среднюю кнопку мыши + Press middle mouse button + Нажмите среднюю кнопку мыши - Press left and middle mouse button - Нажмите левую и среднюю кнопку мыши + Press left and middle mouse button + Нажмите левую и среднюю кнопку мыши - Scroll middle mouse button - Прокрутите среднюю кнопку мыши + Scroll middle mouse button + Прокрутите среднюю кнопку мыши - - + + Gui::Command - Standard - По умолчанию + Standard + По умолчанию - - + + Gui::ContainerDialog - &OK - &OK + &OK + &OK - &Cancel - &Cancel + &Cancel + О&тмена - - + + Gui::ControlSingleton - Task panel - Панель задач + Task panel + Панель задач - - + + Gui::Dialog::AboutApplication - About - О программе + About + О программе - Revision number - Версия + Revision number + Редакция - Version - Версия + Version + Версия - OK - OK + OK + OK - - О программе + + О программе - Release date - Дата выпуска + Release date + Дата выпуска - Platform - Платформа + Platform + Платформа - License... - Лицензия ... + License... + Лицензия ... - Copy to clipboard - + Copy to clipboard + Скопировать в буфер обмена - - + + Gui::Dialog::ButtonModel - Button %1 - Кнопка %1 + Button %1 + Кнопка %1 - Out Of Range - За пределами допустимого диапазона + Out Of Range + За пределами допустимого диапазона - - + + Gui::Dialog::CommandModel - Commands - Команды + Commands + Команды - - + + Gui::Dialog::DemoMode - View Turntable - Поворотный просмотр + View Turntable + Поворотный просмотр - Speed - Скорость + Speed + Скорость - Maximum - Максимум + Maximum + Максимум - Minimum - Минимум + Minimum + Минимум - Fullscreen - На весь экран + Fullscreen + На весь экран - Enable timer - Включить таймер + Enable timer + Включить таймер - s - s + s + s - Angle - Угол - - - 90° - 90 ° - - - -90° - -90 ° + Angle + Угол - Play - Воспроизвести + 90° + 90 ° - Stop - Остановить + -90° + -90 ° - Close - Закрыть + Play + Воспроизвести - - + + Stop + Остановить + + + Close + Закрыть + + + Gui::Dialog::DlgActivateWindow - Choose Window - Выберите окно + Choose Window + Выберите окно - &Activate - &Aктивировать + &Activate + &Aктивировать - Alt+A - Alt + A + Alt+A + Alt + A - &Cancel - &Cancel + &Cancel + О&тмена - - О программе + + О программе - - + + Gui::Dialog::DlgActivateWindowImp - Windows - Windows + Windows + Windows - - + + Gui::Dialog::DlgAuthorization - Authorization - Авторизация + Authorization + Авторизация - &OK - &OK + &OK + &OK - &Cancel - &Cancel + &Cancel + О&тмена - Password: - Пароль: + Password: + Пароль: - User name: - Имя пользователя: + User name: + Имя пользователя: - - О программе + + О программе - - + + Gui::Dialog::DlgChooseIcon - Choose Icon - Выберите иконку + Choose Icon + Выберите иконку - OK - OK + OK + OK - Cancel - Отменить + Cancel + Отмена - Add icons... - Добавить иконки... + Add icons... + Добавить иконки... - - + + Gui::Dialog::DlgCustomActions - Macros - Макрос + Macros + Макрос - Setup Custom Macros - Настройка пользовательских макросов + Setup Custom Macros + Настройка пользовательских макросов - Macro: - Макрос: + Macro: + Макрос: - ... - ... + ... + ... - Pixmap - Изображение + Pixmap + Изображение - Accelerator: - Ускоритель: + Accelerator: + Ускоритель: - What's this: - Что это: + What's this: + Что это: - Status text: - Текст состояния: + Status text: + Текст состояния: - Tool tip: - Подсказка: + Tool tip: + Подсказка: - Menu text: - Текст меню: + Menu text: + Текст меню: - Add - Добавить + Add + Добавить - Remove - Удалить + Remove + Удалить - Replace - Заменить + Replace + Заменить - - + + Gui::Dialog::DlgCustomActionsImp - Icons - Иконки + Icons + Иконки - Macros - Макрос + Macros + Макрос - No macro - Нет макроса + No macro + Нет макроса - No macros found. - Макросы не найдены. + No macros found. + Макросы не найдены. - Macro not found - Макрос не найден + Macro not found + Макрос не найден - Sorry, couldn't find macro file '%1'. - К сожалению не удалось найти файл '% 1' макроса. + Sorry, couldn't find macro file '%1'. + К сожалению не удалось найти файл '% 1' макроса. - Empty macro - Пустой макрос + Empty macro + Пустой макрос - Please specify the macro first. - Сначала укажите макрос. + Please specify the macro first. + Сначала укажите макрос. - Empty text - Пустой текст + Empty text + Пустой текст - Please specify the menu text first. - Пожалуйста, укажите сначала текст в меню. + Please specify the menu text first. + Пожалуйста, укажите сначала текст в меню. - No item selected - Ни один пункт выбран + No item selected + Ни один пункт выбран - Please select a macro item first. - Пожалуйста, выберите сначала макрос. + Please select a macro item first. + Пожалуйста, выберите сначала макрос. - - + + Gui::Dialog::DlgCustomCommands - Commands - Команды + Commands + Команды - - О программе + + О программе - - + + Gui::Dialog::DlgCustomCommandsImp - Category - Категория + Category + Категория - Icon - Иконка + Icon + Иконка - Command - Команда + Command + Команда - - + + Gui::Dialog::DlgCustomKeyboard - Keyboard - Клавиатура + Keyboard + Клавиатура - Description: - Описание: + Description: + Описание: - &Category: - &Категория: + &Category: + &Категория: - C&ommands: - К&оманды: + C&ommands: + К&оманды: - Current shortcut: - Текущая комбинация клавиш: + Current shortcut: + Текущая комбинация клавиш: - Press &new shortcut: - Нажмите &новую комбинацию клавиш: + Press &new shortcut: + Нажмите &новую комбинацию клавиш: - Currently assigned to: - Сейчас назначено для: + Currently assigned to: + Сейчас назначено для: - &Assign - &Назначить + &Assign + &Назначить - Alt+A - Alt + A + Alt+A + Alt + A - &Reset - &Сбросить + &Reset + &Сбросить - Alt+R - Alt+R + Alt+R + Alt+R - Re&set All - Сб&росить все + Re&set All + Сб&росить все - Alt+S - Alt+S + Alt+S + Alt+S - - О программе + + О программе - - + + Gui::Dialog::DlgCustomKeyboardImp - Icon - Иконка + Icon + Иконка - Command - Команда + Command + Команда - none - Отсутствует + none + Отсутствует - Multiple defined shortcut - Несколько ссылок + Multiple defined shortcut + Несколько ссылок - The shortcut '%1' is defined more than once. This could result into unexpected behaviour. - '%1' клавиша быстрого доступа определена более одного раза. Это может привести к неожиданному поведению. + The shortcut '%1' is defined more than once. This could result into unexpected behaviour. + '%1' клавиша быстрого доступа определена более одного раза. Это может привести к неожиданному поведению. - Already defined shortcut - Ярлык уже определен + Already defined shortcut + Ярлык уже определен - The shortcut '%1' is already assigned to '%2'. + The shortcut '%1' is already assigned to '%2'. Please define another shortcut. - Клавиша быстрого доступа '%1' уже назначена для '%2'. + Клавиша быстрого доступа '%1' уже назначена для '%2'. Пожалуйста, определите другое значение клавиши быстрого доступа. - - + + Gui::Dialog::DlgCustomToolBoxbarsImp - Toolbox bars - Панели инструментов + Toolbox bars + Панели инструментов - - + + Gui::Dialog::DlgCustomToolbars - Toolbars - Панели инструментов + Toolbars + Панели инструментов - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> - Move right - Перейти вправо + Move right + Перейти вправо - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Перемещение выбранного элемента на один уровень вниз.</b> <p> Это повлечет за собой изменение уровня родительского элемента. </p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Перемещение выбранного элемента на один уровень вниз.</b> <p> Это повлечет за собой изменение уровня родительского элемента. </p> - Move left - Перейти влево + Move left + Перейти влево - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Перемещение выбранного элемента на один уровень вниз.</b> <p> Это повлечет за собой изменение уровня родительского элемента. </p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Перемещение выбранного элемента на один уровень вниз.</b> <p> Это повлечет за собой изменение уровня родительского элемента. </p> - Move down - Переместить вниз + Move down + Переместить вниз - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - Move up - Переместить вверх + Move up + Переместить вверх - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - New... - Новый... + New... + Создать... - Rename... - Переименовать... + Rename... + Переименовать... - Delete - Удалить + Delete + Удалить - Icon - Иконка + Icon + Иконка - Command - Команда + Command + Команда - <Separator> - <Separator> + <Separator> + <Разделитель> - New toolbar - Новая панель инструментов + New toolbar + Новая панель инструментов - Toolbar name: - Имя панели инструментов: + Toolbar name: + Имя панели инструментов: - Duplicated name - Повторяющееся имя + Duplicated name + Повторяющееся имя - The toolbar name '%1' is already used - Имя панели инструментов '%1' уже используется + The toolbar name '%1' is already used + Имя панели инструментов '%1' уже используется - Rename toolbar - Переименовать панель + Rename toolbar + Переименовать панель - - О программе + + О программе - - + + Gui::Dialog::DlgCustomizeImp - Customize - Настроить + Customize + Настроить - &Help - &Справка + &Help + &Справка - &Close - &Закрыть + &Close + &Закрыть - - + + Gui::Dialog::DlgCustomizeSpaceball - Spaceball - Spaceball + Spaceball + Spaceball - No Spaceball Present - Spaceball не присутствует + No Spaceball Present + Spaceball не присутствует - Buttons - Кнопки + Buttons + Кнопки - Clear - Очистить + Clear + Очистить - Print Reference - Руководство по печати + Print Reference + Руководство по печати - - + + Gui::Dialog::DlgDisplayProperties - Display properties - Отобразить свойства + Display properties + Отобразить свойства - Display - Отобразить + Display + Отобразить - Transparency: - Прозрачность: + Transparency: + Прозрачность: - Line width: - Толщина линии: + Line width: + Толщина линии: - Point size: - Размер точки: + Point size: + Размер точки: - Material - Материал + Material + Материал - ... - ... + ... + ... - Close - Закрыть + Close + Закрыть - Viewing mode - Режим просмотра + Viewing mode + Режим просмотра - Display mode: - Режим отображения: + Plot mode: + Режим вывода на печать: - Plot mode: - Режим вывода на печать: + + О программе - - О программе + Line transparency: + Прозрачность линии: - Line transparency: - Прозрачность линии: + Line color: + Цвет линии: - Line color: - Цвет линии: + Shape color: + Цвет фигуры: - Shape color: - Цвет фигуры: + Color plot: + Цветной рисунок: - Color plot: - Цветной рисунок: + Document window: + Окно документа: - - Document window: - - - - + + Gui::Dialog::DlgEditorSettings - Editor - Редактор + Editor + Редактор - Options - Параметры + Options + Параметры - Enable line numbers - Включить номера строк + Enable line numbers + Включить номера строк - Enable folding - Включить сворачивание + Enable folding + Включить сворачивание - Indentation - Отступ + Indentation + Отступ - Insert spaces - Вставить пробелы + Insert spaces + Вставить пробелы - Tab size: - Размер табуляции: + Tab size: + Размер табуляции: - Indent size: - Размер отступа: + Indent size: + Размер отступа: - Keep tabs - Сохранить вкладки + Keep tabs + Сохранить вкладки - Display Items - Отобразить элементы + Display Items + Отобразить элементы - Family: - Семейство: + Family: + Семейство: - Size: - Размер: + Size: + Размер: - Preview: - Предпросмотр: + Preview: + Предпросмотр: - - О программе + + О программе - - + + Gui::Dialog::DlgGeneral - General - Основные + General + Основные - Start up - Запуск + Start up + Запуск - Enable splash screen at start up - Включить заставку при запуске + Enable splash screen at start up + Включить заставку при запуске - Switch to tab of report window: - Переключитесь на вкладку окна отчета: + Switch to tab of report window: + Переключитесь на вкладку окна отчета: - Auto load module after start up: - Автоматическая загрузка модуля после запуска: + Auto load module after start up: + Автоматическая загрузка модуля после запуска: - Language - Язык + Language + Язык - Change language: - Изменить язык: + Change language: + Изменить язык: - Main window - Главное окно + Main window + Главное окно - Size of recent file list - Размер списка последних файлов + Size of recent file list + Размер списка последних файлов - Window style: - Стиль окна: + Window style: + Стиль окна: - Size of toolbar icons: - Размер значков на панели инструментов: + Size of toolbar icons: + Размер значков на панели инструментов: - - + + Gui::Dialog::DlgGeneralImp - Default (%1 x %1) - По умолчанию (%1х%1) + Default (%1 x %1) + По умолчанию (%1х%1) - Small (%1 x %1) - Маленький (%1%х%1) + Small (%1 x %1) + Маленький (%1%х%1) - Large (%1 x %1) - Большой (%1x%1) + Large (%1 x %1) + Большой (%1x%1) - Extra large (%1 x %1) - Очень большой (%1х%1) + Extra large (%1 x %1) + Очень большой (%1х%1) - - + + Gui::Dialog::DlgInputDialog - Input - Ввод + Input + Ввод - OK - OK + OK + OK - Cancel - Отменить + Cancel + Отмена - - О программе + + О программе - - + + Gui::Dialog::DlgInspector - Scene Inspector - Инспектор сцены + Scene Inspector + Инспектор сцены - - + + Gui::Dialog::DlgMacroExecute - Execute macro - Выполнить макрос + Execute macro + Выполнить макрос - Macro name: - Имя макроса: + Macro name: + Имя макроса: - Macro destination: - Назначение макроса: + Macro destination: + Назначение макроса: - Execute - Выполнить + Execute + Выполнить - Close - Закрыть + Close + Закрыть - Create - Создать + Create + Создать - Delete - Удалить + Delete + Удалить - Edit - Редактировать + Edit + Правка - - + + Gui::Dialog::DlgMacroExecuteImp - Macros - Макрос + Macros + Макрос - Macro file - Файл макроса + Macro file + Файл макроса - Enter a file name, please: - Введите имя файла, пожалуйста: + Enter a file name, please: + Введите имя файла, пожалуйста: - Existing file - Существующий файл + Existing file + Существующий файл - '%1'. + '%1'. This file already exists. - '%1'. Этот файл уже существует. + '%1'. Этот файл уже существует. - Delete macro - Удалить макрос + Delete macro + Удалить макрос - Do you really want to delete the macro '%1'? - Вы действительно хотите удалить макрос '%1' ? + Do you really want to delete the macro '%1'? + Вы действительно хотите удалить макрос '%1' ? - Cannot create file - Не удается создать файл + Cannot create file + Не удается создать файл - Creation of file '%1' failed. - Не удалось создать файл '%1'. + Creation of file '%1' failed. + Не удалось создать файл '%1'. - - + + Gui::Dialog::DlgMacroRecord - Macro recording - Запись макроса + Macro recording + Запись макроса - Macro name: - Имя макроса: + Macro name: + Имя макроса: - Stop - Остановить + Stop + Остановить - Cancel - Отменить + Cancel + Отмена - Macro path: - Путь к Макросу: + Macro path: + Путь к Макросу: - ... - ... + ... + ... - Record - Запись + Record + Запись - - + + Gui::Dialog::DlgMacroRecordImp - Macro recorder - Средство записи макросов + Macro recorder + Средство записи макросов - Specify first a place to save. - Сначала укажите место для сохранения. + Specify first a place to save. + Сначала укажите место для сохранения. - Existing macro - Существующие макросы + Existing macro + Существующие макросы - The macro '%1' already exists. Do you want to overwrite? - Макрос '% 1' уже существует. Вы хотите переписать? + The macro '%1' already exists. Do you want to overwrite? + Макрос '% 1' уже существует. Вы хотите переписать? - The macro directory doesn't exist. Please, choose another one. - Макрос каталог не существует. Пожалуйста выберите другой. + The macro directory doesn't exist. Please, choose another one. + Макрос каталог не существует. Пожалуйста выберите другой. - Choose macro directory - Выберите каталог макросов + Choose macro directory + Выберите каталог макросов - - + + Gui::Dialog::DlgMaterialProperties - Material properties - Свoйства материала + Material properties + Свoйства материала - &Close - &Закрыть + &Close + &Закрыть - Alt+C - ALT + C + Alt+C + ALT + C - Material - Материал + Material + Материал - Diffuse color: - Рассеянный цвет: + Diffuse color: + Рассеянный цвет: - Specular color: - Отраженный цвет: + Specular color: + Отраженный цвет: - Shininess: - Яркость: + Shininess: + Яркость: - % - % + % + % - Ambient color: - Окружающий цвет: + Ambient color: + Окружающий цвет: - - О программе + + О программе - Emissive color: - Воздействующий цвет: + Emissive color: + Воздействующий цвет: - - + + Gui::Dialog::DlgOnlineHelp - On-line help - Он-лайн помощь + On-line help + Он-лайн помощь - Help viewer - программа просмотра справки + Help viewer + Программа просмотра справки - Location of start page - Расположение стартовой страницы + Location of start page + Расположение стартовой страницы - - + + Gui::Dialog::DlgOnlineHelpImp - HTML files (*.html *.htm) - HTML-файлы (*.html *.htm) + HTML files (*.html *.htm) + HTML-файлы (*.html *.htm) - Access denied - Доступ запрещен + Access denied + Доступ запрещен - Access denied to '%1' + Access denied to '%1' Specify another directory, please. - Отказано в доступе к '% 1' + Отказано в доступе к '% 1' Укажите другой каталог, пожалуйста. - - + + Gui::Dialog::DlgParameter - Parameter Editor - Параметры редактора + Parameter Editor + Параметры редактора - Save to disk - Сохранить на диск + Save to disk + Сохранить на диск - Alt+C - ALT + C + Alt+C + ALT + C - &Close - &Закрыть + &Close + &Закрыть - - + + Gui::Dialog::DlgParameterImp - Group - Группа + Group + Группа - Name - Название + Name + Название - Type - Тип + Type + Тип - Value - Значение + Value + Значение - User parameter - Пользовательские параметры + User parameter + Пользовательские параметры - Invalid input - Неправильный ввод + Invalid input + Неправильный ввод - Invalid key name '%1' - Недопустимое имя ключа '% 1' + Invalid key name '%1' + Недопустимое имя ключа '% 1' - System parameter - Параметры системы + System parameter + Параметры системы - - + + Gui::Dialog::DlgPreferences - Preferences - Настройка + Preferences + Настройка - &Help - &Справка + &Help + &Справка - Alt+H - Alt + H + Alt+H + Alt + H - &OK - &OK + &OK + &OK - &Apply - & Применить + &Apply + & Применить - Alt+A - Alt + A + Alt+A + Alt + A - &Cancel - &Cancel + &Cancel + О&тмена - - О программе + + О программе - - + + Gui::Dialog::DlgPreferencesImp - Wrong parameter - Неверный параметр + Wrong parameter + Неверный параметр - - + + Gui::Dialog::DlgProjectInformation - Project information - Информация о проекте + Project information + Информация о проекте - Information - Сведения + Information + Сведения - &Name: - &Имя: + &Name: + &Имя: - Commen&t: - Коммен&тарий: + Commen&t: + Коммен&тарий: - Path: - Путь: + Path: + Путь: - &Last modified by: - &Последние изменения внесены: + &Last modified by: + &Последние изменения внесены: - Created &by: - Создатели: + Created &by: + Создатели: - Com&pany: - Организация: + Com&pany: + Организация: - Last &modification date: - Дата последнего изменения: + Last &modification date: + Дата последнего изменения: - Creation &date: - &Дата создания: + Creation &date: + &Дата создания: - &OK - &OK + &OK + &OK - &Cancel - &Cancel + &Cancel + О&тмена - - О программе + + О программе - - + + Gui::Dialog::DlgProjectUtility - Project utility - Утилита проекта + Project utility + Утилита проекта - Extract project - извлечь проект + Extract project + извлечь проект - Source - Источник + Source + Источник - Project file (*.fcstd) - Файл проекта (*.fcstd) + Project file (*.fcstd) + Файл проекта (*.fcstd) - Destination - Назначение + Destination + Назначение - Extract - Извлечь + Extract + Извлечь - Create project - Создать проект + Create project + Создать проект - Document.xml - Document.xml + Document.xml + Document.xml - Create - Создать + Create + Создать - Load project file after creation - Загрузить файл проекта после создания + Load project file after creation + Загрузить файл проекта после создания - Empty source - Пустой источник + Empty source + Пустой источник - No source is defined. - Источник не определён. + No source is defined. + Источник не определён. - Empty destination - Назначение пусто + Empty destination + Назначение пусто - No destination is defined. - Назначение не определено. + No destination is defined. + Назначение не определено. - - + + Gui::Dialog::DlgReportView - Output window - Окно вывода + Output window + Окно вывода - Output - Вывод + Output + Вывод - Record log messages - Запись журнала + Record log messages + Запись журнала - Record warnings - Запись предупреждений + Record warnings + Запись предупреждений - Record error messages - Запись сообщений об ошибках + Record error messages + Запись сообщений об ошибках - Colors - Цвета + Colors + Цвета - Normal messages: - Обычные сообщения: + Normal messages: + Обычные сообщения: - Log messages: - Журнал сообщений: + Log messages: + Журнал сообщений: - Warnings: - Предупреждения: + Warnings: + Предупреждения: - Errors: - Ошибки: + Errors: + Ошибки: - - О программе + + О программе - Redirect internal Python errors to report view - Перенаправить внутренние ошибки Python для представления отчета + Redirect internal Python errors to report view + Перенаправить внутренние ошибки Python для представления отчета - Redirect internal Python output to report view - Перенаправить внутренний выход Python в информационное окно + Redirect internal Python output to report view + Перенаправить внутренний выход Python в информационное окно - - + + Gui::Dialog::DlgRunExternal - Running external program - Запуск внешней программы + Running external program + Запуск внешней программы - TextLabel - Текстовая метка + TextLabel + Текстовая метка - Advanced >> - Дополнительно >> + Advanced >> + Дополнительно >> - ... - ... + ... + ... - Accept changes - Принять изменения + Accept changes + Принять изменения - Discard changes - Отменить изменения + Discard changes + Отменить изменения - Abort program - Прервать программу + Abort program + Прервать программу - Help - Справка + Help + Справка - Select a file - Выберите файл + Select a file + Выберите файл - - + + Gui::Dialog::DlgSettings3DView - 3D View - 3D Вид + 3D View + 3D Вид - 3D View settings - Настройки 3D просмотра + 3D View settings + Настройки 3D просмотра - Show coordinate system in the corner - Показать систему координат в углу + Show coordinate system in the corner + Показать систему координат в углу - Show counter of frames per second - Показать счетчик кадров в секунду + Show counter of frames per second + Показать счетчик кадров в секунду - Enable animation - Включить анимацию + Enable animation + Включить анимацию - Enable anti-aliasing (slower) - Включить сглаживание (медленный способ) + Enable anti-aliasing (slower) + Включить сглаживание (медленный способ) - Eye to eye distance for stereo modes: - Расстояние между глаз для стерео режима: + Eye to eye distance for stereo modes: + Расстояние между глаз для стерео режима: - Camera type - Тип камеры + Camera type + Тип камеры - Orthographic rendering - Ортогональный рендеринг + Orthographic rendering + Ортогональный рендеринг - Perspective rendering - Рендер в перспективе + Perspective rendering + Рендер в перспективе - - О программе + + О программе - 3D Navigation - 3D Навигация + 3D Navigation + 3D-навигация - Mouse... - Мышь... + Mouse... + Мышь... - Intensity of backlight - Интенсивность подсветки + Intensity of backlight + Интенсивность подсветки - Enable backlight color - Включить цвет подсветки + Enable backlight color + Включить цвет подсветки - Orbit style - Стиль орбиты + Orbit style + Стиль орбиты - Turntable - Поворотный круг + Turntable + Поворотный круг - Trackball - Trackball + Trackball + Trackball - Invert zoom - Инвертировать зум + Invert zoom + Инвертировать зум - Zoom at cursor - + Zoom at cursor + Масштабирование курсора - Zoom step - + Zoom step + Шаг масштабирования - - + + Gui::Dialog::DlgSettings3DViewImp - %1 navigation - %1 навигация + %1 navigation + Навигация в стиле %1 - - + + Gui::Dialog::DlgSettingsColorGradient - Color model - Цветовая модель + Color model + Цветовая модель - &Gradient: - & Градиент: + &Gradient: + & Градиент: - red-yellow-green-cyan-blue - красный-желтый-зеленый-голубой-синий + red-yellow-green-cyan-blue + красный-желтый-зеленый-голубой-синий - blue-cyan-green-yellow-red - синий-голубой-зеленый-желтый-красный + blue-cyan-green-yellow-red + синий-голубой-зеленый-желтый-красный - white-black - бело-черный + white-black + бело-черный - black-white - черно-белый + black-white + черно-белый - Visibility - Видимость + Visibility + Видимость - Out g&rayed - Из серого + Out g&rayed + Из серого - Alt+R - Alt+R + Alt+R + Alt+R - Out &invisible - Из &невидимого + Out &invisible + Из &невидимого - Alt+I - Alt+I + Alt+I + Alt+I - Style - Стиль + Style + Стиль - &Zero - & Ноль + &Zero + & Ноль - Alt+Z - Alt+Z + Alt+Z + Alt+Z - &Flow - & Поток + &Flow + & Поток - Alt+F - Alt+F + Alt+F + Alt+F - &OK - &OK + &OK + &OK - &Cancel - &Cancel + &Cancel + О&тмена - Parameter range - Диапазон значений параметра + Parameter range + Диапазон значений параметра - Mi&nimum: - Ми&нимум: + Mi&nimum: + Ми&нимум: - Ma&ximum: - Ма&ксимум: + Ma&ximum: + Ма&ксимум: - &Labels: - Ярлыки: + &Labels: + Ярлыки: - &Decimals: - & Десятичные: + &Decimals: + & Десятичные: - - О программе + + О программе - Color-gradient settings - Настройки цветового градиента + Color-gradient settings + Настройки цветового градиента - - + + Gui::Dialog::DlgSettingsColorGradientImp - Wrong parameter - Неверный параметр + Wrong parameter + Неверный параметр - The maximum value must be higher than the minimum value. - Максимальное значение должно быть больше минимального значения. + The maximum value must be higher than the minimum value. + Максимальное значение должно быть больше минимального значения. - - + + Gui::Dialog::DlgSettingsDocument - Document - Документ + Document + Документ - General - Основные + General + Основные - Document save compression level + Document save compression level (0 = none, 9 = highest, 3 = default) - Уровень сжатия сохраняемого документа + Уровень сжатия сохраняемого документа (0 = нет, 9 = высокий, 3 = по умолчанию) - Create new document at start up - Создание нового документа при запуске + Create new document at start up + Создание нового документа при запуске - Storage - Хранилище + Storage + Хранилище - Saving transactions (Auto-save) - Сохранение операций (Автосохранение) + Saving transactions (Auto-save) + Сохранение операций (Автосохранение) - Discard saved transaction after saving document - Удалять сохраненные операции после сохранения документа + Discard saved transaction after saving document + Удалять сохраненные операции после сохранения документа - Save thumbnail into project file when saving document - Сохранить миниатюру в файл проекта при сохранении документа + Save thumbnail into project file when saving document + Сохранить миниатюру в файл проекта при сохранении документа - Create up to backup files when resaving document - Создать резервную копию файлов, когда сохраняется документ + Create up to backup files when resaving document + Создать резервную копию файлов, когда сохраняется документ - Document objects - Объекты документа + Document objects + Объекты документа - Allow duplicate object labels in one document - Разрешить создавать дубликат этикетки в одном документе + Allow duplicate object labels in one document + Разрешить создавать дубликат этикетки в одном документе - Maximum Undo/Redo steps - Максимальная Отмена/Повтор шагов + Maximum Undo/Redo steps + Максимальная Отмена/Повтор шагов - Using Undo/Redo on documents - Использование Undo/Redo на документах + Using Undo/Redo on documents + Использование Undo/Redo на документах - - + + Gui::Dialog::DlgSettingsEditorImp - Text - Текст + Text + Текст - Bookmark - Закладки + Bookmark + Закладки - Breakpoint - Точка останова + Breakpoint + Точка останова - Keyword - Ключевое слово + Keyword + Ключевое слово - Comment - Комментарий + Comment + Комментарий - Block comment - Блок комментариев + Block comment + Блок комментариев - Number - Число + Number + Число - String - Строка + String + Строка - Character - Символ + Character + Символ - Class name - Имя класса + Class name + Имя класса - Define name - Задать имя + Define name + Задать имя - Operator - Оператор + Operator + Оператор - Python output - Вывод Python + Python output + Вывод Python - Python error - Ошибка Python + Python error + Ошибка Python - Items - Элементы + Items + Элементы - Current line highlight - + Current line highlight + Выделение текущей строки - - + + Gui::Dialog::DlgSettingsImage - Image settings - Настройки изображения + Image settings + Настройки изображения - Image properties - Свойства изображения + Image properties + Свойства изображения - Back&ground: - Фон: + Back&ground: + Фон: - Current - Текущий + Current + Текущий - White - Белый + White + Белый - Black - Чёрный + Black + Чёрный - Transparent - Прозрачный + Transparent + Прозрачный - Image dimensions - Размеры изображения + Image dimensions + Размеры изображения - Pixel - Пиксель + Pixel + Пиксель - &Width: - &Ширина: + &Width: + &Ширина: - Current screen - Текущий экран + Current screen + Текущий экран - Icon 32 x 32 - Иконка 32х32 + Icon 32 x 32 + Иконка 32х32 - Icon 64 x 64 - Иконка 64х64 + Icon 64 x 64 + Иконка 64х64 - Icon 128 x 128 - Иконка 128х128 + Icon 128 x 128 + Иконка 128х128 - CGA 320 x 200 - CGA 320 x 200 + CGA 320 x 200 + CGA 320 x 200 - QVGA 320 x 240 - QVGA 320 x 240 + QVGA 320 x 240 + QVGA 320 x 240 - VGA 640 x 480 - VGA 640 x 480 + VGA 640 x 480 + VGA 640 x 480 - NTSC 720 x 480 - NTSC 720 x 480 + NTSC 720 x 480 + NTSC 720 x 480 - PAL 768 x 578 - PAL 768 x 578 + PAL 768 x 578 + PAL 768 x 578 - SVGA 800 x 600 - SVGA 800 x 600 + SVGA 800 x 600 + SVGA 800 x 600 - XGA 1024 x 768 - XGA 1024 x 768 + XGA 1024 x 768 + XGA 1024 x 768 - HD720 1280 x 720 - HD720 1280 x 720 + HD720 1280 x 720 + HD720 1280 x 720 - SXGA 1280 x 1024 - SXGA 1280 x 1024 + SXGA 1280 x 1024 + SXGA 1280 x 1024 - SXGA+ 1400 x 1050 - SXGA+ 1400 x 1050 + SXGA+ 1400 x 1050 + SXGA+ 1400 x 1050 - UXGA 1600 x 1200 - UXGA 1600 x 1200 + UXGA 1600 x 1200 + UXGA 1600 x 1200 - HD1080 1920 x 1080 - HD1080 1920 x 1080 + HD1080 1920 x 1080 + HD1080 1920 x 1080 - WUXGA 1920 x 1200 - WUXGA 1920 x 1200 + WUXGA 1920 x 1200 + WUXGA 1920 x 1200 - QXGA 2048 x 1538 - QXGA 2048 x 1538 + QXGA 2048 x 1538 + QXGA 2048 x 1538 - WQXGA 2560 x 1600 - WQXGA 2560 x 1600 + WQXGA 2560 x 1600 + WQXGA 2560 x 1600 - QSXGA 2560 x 2048 - QSXGA 2560 x 2048 - - - QUXGA 3200 × 2400 - QUXGA 3200 x 2400 - - - HUXGA 6400 × 4800 - HUXGA 6400 x 4800 + QSXGA 2560 x 2048 + QSXGA 2560 x 2048 - !!! 10000 x 10000 - !!! 10000 x 10000 + QUXGA 3200 × 2400 + QUXGA 3200 x 2400 - Standard sizes: - Стандартные размеры: + HUXGA 6400 × 4800 + HUXGA 6400 x 4800 - &Height: - & Высота: + !!! 10000 x 10000 + !!! 10000 x 10000 - Aspect ratio: - Соотношение сторон: + Standard sizes: + Стандартные размеры: - &Screen - &Экрана + &Height: + & Высота: - Alt+S - Alt+S + Aspect ratio: + Соотношение сторон: - &4:3 - &4:3 + &Screen + &Экрана - Alt+4 - Alt+4 + Alt+S + Alt+S - 1&6:9 - 1&6:9 + &4:3 + &4:3 - Alt+6 - Alt+6 + Alt+4 + Alt+4 - &1:1 - &1:1 + 1&6:9 + 1&6:9 - Alt+1 - Alt+1 + Alt+6 + Alt+6 - Image comment - Комментарий к изображению + &1:1 + &1:1 - Insert MIBA - Вставка MIBA + Alt+1 + Alt+1 - Insert comment - Вставить комментарий + Image comment + Комментарий к изображению - - + + Insert MIBA + Вставка MIBA + + + Insert comment + Вставить комментарий + + + Gui::Dialog::DlgSettingsMacro - Macro - Макро + Macro + Макрос - Macro recording settings - Настройки записи макросов + Macro recording settings + Настройки записи макросов - Logging Commands - Ведение журнала команд + Logging Commands + Ведение журнала команд - Show script commands in python console - Показывать команды скриптов в консоли Python + Show script commands in python console + Показывать команды скриптов в консоли Python - Log all commands issued by menus to file: - Регистрация всех команд, вызванных при помощи меню, в файле: + Log all commands issued by menus to file: + Регистрация всех команд, вызванных при помощи меню, в файле: - FullScript.FCScript - FullScript.FCScript + FullScript.FCScript + FullScript.FCScript - Gui commands - Gui команды + Gui commands + Gui команды - Recording GUI commands - Запись GUI команды + Recording GUI commands + Запись команд GUI - Record as comment - Регистрировать в качестве комментария + Record as comment + Регистрировать в качестве комментария - Macro path - Путь к Макросу + Macro path + Путь к Макросу - General macro settings - + General macro settings + Параметры общих макросов - Run macros in local environment - + Run macros in local environment + Запуск макросов в локальном окружении - - + + Gui::Dialog::DlgSettingsUnits - Units - Единицы + Units + Единицы - Units settings - Настройка единиц измерения + Units settings + Настройка единиц измерения - Standard (mm/kg/s/degree) - Стандарт (мм/кг/с/град) + Standard (mm/kg/s/degree) + Стандарт (мм/кг/с/град) - MKS (m/kg/s/degree) - МКС (м/кг/с/степень) + MKS (m/kg/s/degree) + МКС (м/кг/с/степень) - Magnitude - Величина + Magnitude + Величина - Unit - Юнит + Unit + Юнит - User system: - Пользовательская система: + User system: + Пользовательская система: - Imperial (in/lb) - Imperial (in/lb) + Imperial (in/lb) + Imperial (in/lb) - - + + Gui::Dialog::DlgSettingsViewColor - Colors - Цвета + Colors + Цвета - Selection - Выделение + Selection + Выделение - Enable selection highlighting - Включить подсвечивание выделенного + Enable selection highlighting + Включить подсвечивание выделенного - Enable preselection highlighting - Включить подсвечивание предварительного выделения + Enable preselection highlighting + Включить подсвечивание предварительного выделения - Background color - Цвет фона + Background color + Цвет фона - Middle color - Средний цвет + Middle color + Средний цвет - Color gradient - Цветовой градиент + Color gradient + Цветовой градиент - Simple color - Простые цвета + Simple color + Простые цвета - Default colors - Цвета по умолчанию + Default colors + Цвета по умолчанию - Edited edge color - цвет отредактированной грани + Edited edge color + цвет отредактированной грани - Edited vertex color - Цвет отредактированный вершины + Edited vertex color + Цвет отредактированный вершины - Construction geometry - вспомогательная геометрия + Construction geometry + вспомогательная геометрия - Fully constrained geometry - Полностью связанная геометрия + Fully constrained geometry + Полностью связанная геометрия - The color of construction geometry in editmode - Цвет вспомогательной геометрии в режиме редактирования + The color of vertices being edited + Цвет редактируемых вершин - The color of fully constrained geometry in editmode - Цвет полностью связанной геометрии в режиме редактирования + The color of edges being edited + цвет редактируемых граней - The color of vertices being edited - Цвет редактируемых вершин + The color of construction geometry in edit mode + Цвет вспомогательной геометрии в режиме редактирования - The color of edges being edited - цвет редактируемых граней + The color of fully constrained geometry in edit mode + Цвет полностью связанной геометрии в режиме редактирования - The color of construction geometry in edit mode - + Cursor text color + Цвет текста курсора - The color of fully constrained geometry in edit mode - + Default shape color + Цвет формы по умолчанию - Cursor text color - + The default color for new shapes + Цвет новых фигур по умолчанию - Default shape color - + Default line width and color + Ширина и цвет линии по умолчанию - The default color for new shapes - + The default line color for new shapes + Цвет линии по умолчанию для новых фигур - Default line width and color - + The default line thickness for new shapes + Толщина линии для новых фигур по умолчанию - The default line color for new shapes - + px + пиксел - - The default line thickness for new shapes - - - - px - - - - + + Gui::Dialog::DlgTipOfTheDay - Tip of the day - Полезный совет + Tip of the day + Полезный совет - <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> - <b><font face="Times New Roman"><font size="+3">Знаете ли вы...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Знаете ли вы...</font></font></b> - &Show tips at start up - &Показывать советы при запуске + &Show tips at start up + &Показывать советы при запуске - Alt+S - Alt+S + Alt+S + Alt+S - &Next Tip - &Следующий совет + &Next Tip + &Следующий совет - Alt+N - Alt+N + Alt+N + Alt+N - &Close - &Закрыть + &Close + &Закрыть - Alt+C - ALT + C + Alt+C + ALT + C - - О программе + + О программе - - + + Gui::Dialog::DlgTipOfTheDayImp - Download failed: %1 + Download failed: %1 - Ошибка загрузки: %1 + Ошибка загрузки: %1 - If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. - Если вы хотите узнать больше о FreeCAD вам необходимо обратиться в %1 или нажмите пункт Справка в меню Справка. + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + Если вы хотите узнать больше о FreeCAD, вам необходимо посетить %1 или выбрать пункт «Содержание» в меню «Справка». - - + + Gui::Dialog::DockablePlacement - Placement - Расположение + Placement + Расположение - - + + Gui::Dialog::DownloadDialog - Canceled. - Отменен. + Download + Скачать - Download - + Cancel + Отмена - Cancel - Отменить + Close + Закрыть - Close - Закрыть + There already exists a file called %1 in the current directory. Overwrite? + Файл с именем %1 уже существует в текущем каталоге. Перезаписать? - There already exists a file called %1 in the current directory. Overwrite? - + Unable to save the file %1: %2. + Не удается сохранить файл %1: %2. - Unable to save the file %1: %2. - + Downloading %1. + Загрузка %1. - Downloading %1. - + Download canceled. + Загрузка отменена. - Download canceled. - + Download failed: %1. + Ошибка загрузки: %1. - Download failed: %1. - Ошибка загрузки: %1. + Downloaded %1 to current directory. + Загружено %1 в текущий каталог. - - Downloaded %1 to current directory. - - - - + + Gui::Dialog::IconDialog - Add icon - Добавить иконку + Add icon + Добавить иконку - - + + Gui::Dialog::InputVector - Input vector - Входной вектор + Input vector + Входной вектор - Vector - Вектор + Vector + Вектор - Z: - Z: + Z: + Z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - OK - OK + OK + OK - - + + Gui::Dialog::LicenseDialog - Copyright - + Copyright + Авторское право - - + + Gui::Dialog::MouseButtons - Mouse buttons - Кнопки мыши + Mouse buttons + Кнопки мыши - Configuration - Конфигурация + Configuration + Конфигурация - Selection: - Выделение: + Selection: + Выделение: - Panning - Панорамирование + Panning + Панорамирование - Rotation: - Вращение: + Rotation: + Вращение: - Zooming: - Масштабирование: + Zooming: + Масштабирование: - - + + Gui::Dialog::ParameterGroup - Expand - Развернуть + Expand + Развернуть - Add sub-group - Добавить подгруппу + Add sub-group + Добавить подгруппу - Remove group - Удалить группу + Remove group + Удалить группу - Rename group - Переименовать группу + Rename group + Переименовать группу - Export parameter - Экспортировать параметр + Export parameter + Экспортировать параметр - Import parameter - Параметры импорта + Import parameter + Параметры импорта - Collapse - Свернуть + Collapse + Свернуть - Do really want to remove this parameter group? - Действительно хотите удалить эту группу параметров? + Do really want to remove this parameter group? + Действительно хотите удалить эту группу параметров? - Existing sub-group - Существующие подгруппы + Existing sub-group + Существующие подгруппы - The sub-group '%1' already exists. - Подгруппа '%1' уже существует. + The sub-group '%1' already exists. + Подгруппа '%1' уже существует. - Export parameter to file - Экспорт параметров в файл + Export parameter to file + Экспорт параметров в файл - XML (*.FCParam) - XML(*.FCParam) + XML (*.FCParam) + XML(*.FCParam) - Import parameter from file - Импорт параметров из файла + Import parameter from file + Импорт параметров из файла - Import Error - Ошибка импорта + Import Error + Ошибка импорта - Reading from '%1' failed. - Не удалось выполнить чтение из '%1'. + Reading from '%1' failed. + Не удалось выполнить чтение из '%1'. - - + + Gui::Dialog::ParameterValue - Change value - Изменить значение + Change value + Изменить значение - Remove key - Удалить ключ + Remove key + Удалить ключ - Rename key - Переименовать ключ + Rename key + Переименовать ключ - New - Новый + New + Новый - New string item - Новый элемент строки + New string item + Новый элемент строки - New float item - Новый вещественный элемент + New float item + Новый вещественный элемент - New integer item - Новый целочисленный элемент + New integer item + Новый целочисленный элемент - New unsigned item - Новый беззнаковый элемент + New unsigned item + Новый беззнаковый элемент - New Boolean item - Новый логический элемент + New Boolean item + Новый логический элемент - Existing item - Существующий элемент + Existing item + Существующий элемент - The item '%1' already exists. - Элемент '%1' уже существует. + The item '%1' already exists. + Элемент '%1' уже существует. - - + + Gui::Dialog::Placement - Placement - Расположение + Placement + Расположение - OK - OK + OK + OK - Translation: - Перемещение: + Translation: + Перемещение: - Z: - Z: + Z: + Z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - Rotation: - Вращение: + Rotation: + Вращение: - Angle: - Угол: + Angle: + Угол: - Axis: - Оси: + Axis: + Оси: - Center: - Центр: + Center: + Центр: - Pitch: - Шаг: + Pitch: + Шаг: - Roll: - Рулон: + Roll: + Рулон: - Yaw: - Отклонение: + Yaw: + Отклонение: - Rotation axis with angle - Rotation axis with angle + Rotation axis with angle + Ось вращения с углом - Euler angles - Углы Эйлера + Euler angles + Углы Эйлера - Apply placement changes immediately - Немедленно применить изменения размещений + Apply placement changes immediately + Немедленно применить изменения размещений - Apply incremental changes to object placement - Применить дополнительные изменения к объекту размещения + Apply incremental changes to object placement + Наращивать изменения в позиции объекта - Apply - Применить + Apply + Применить - Reset - Сброс + Reset + Сброс - Close - Закрыть + Close + Закрыть - - + + Gui::Dialog::PrintModel - Button - Кнопка + Button + Кнопка - Command - Команда + Command + Команда - - + + Gui::Dialog::SceneInspector - Dialog - Диалог + Dialog + Диалог - Close - Закрыть + Close + Закрыть - Refresh - Обновить + Refresh + Обновить - - + + Gui::Dialog::SceneModel - Inventor Tree - Создатель дерева + Inventor Tree + Создатель дерева - Nodes - Узлы + Nodes + Узлы - - + + Gui::Dialog::TextureMapping - Texture - Текстура + Texture + Текстура - Texture mapping - Текстуры + Texture mapping + Проекция текстуры - Global - Глобальный + Global + Глобальный - Environment - Окружение + Environment + Окружение - Image files (%1) - Файлы изображений (%1) + Image files (%1) + Файлы изображений (%1) - No image - Нет изображения + No image + Нет изображения - The specified file is not a valid image file. - Указанный файл не является допустимым. + The specified file is not a valid image file. + Указанный файл не является допустимым. - No 3d view - Нет 3d просмотра + No 3d view + Нет 3d просмотра - No active 3d view found. - Активный 3d вид не найден. + No active 3d view found. + Активный 3d вид не найден. - - + + Gui::Dialog::Transform - Cancel - Отменить + Cancel + Отмена - Transform - Преобразовать + Transform + Преобразовать - - + + Gui::DlgTreeWidget - Dialog - Диалог + Dialog + Диалог - Items - Элементы + Items + Элементы - OK - OK + OK + OK - Cancel - Отменить + Cancel + Отмена - - О программе + + О программе - - + + Gui::DockWnd::CombiView - CombiView - КомбинированныВид + CombiView + КомбинированныВид - Project - Проект + Project + Проект - Tasks - Задачи + Tasks + Задачи - - + + Gui::DockWnd::HelpView - Previous - Предыдущий + Previous + Предыдущий - Next - Следующий + Next + Следующий - Home - В начало + Home + В начало - Open - Открыть + Open + Открыть - Open file - Открыть файл + Open file + Открыть файл - All HTML files (*.html *.htm) - Все HTML-файлы (*.html *.htm) + All HTML files (*.html *.htm) + Все файлы HTML (*.html *.htm) - External browser - Внешний браузер + External browser + Внешний браузер - No external browser found. Specify in preferences, please - Внешний браузер не найден. Пожалуйста, укажите в настройках, + No external browser found. Specify in preferences, please + Внешний браузер не найден. Пожалуйста, укажите в настройках, - Starting of %1 failed - Запуск %1 невозможен + Starting of %1 failed + Запуск %1 невозможен - - + + Gui::DockWnd::PropertyDockView - Property View - Вид собственности + Property View + Просмотр свойств - - + + Gui::DockWnd::ReportOutput - Logging - Ведение журнала + Logging + Ведение журнала - Warning - Внимание + Warning + Внимание - Error - Ошибка + Error + Ошибка - Options - Параметры + Options + Параметры - Clear - Очистить + Clear + Очистить - Save As... - Сохранить как... + Save As... + Сохранить как... - Save Report Output - Сохранить отчет + Save Report Output + Сохранить отчет - Plain Text Files (*.txt *.log) - Текстовые файлы (*.txt,*.log) + Plain Text Files (*.txt *.log) + Текстовые файлы (*.txt,*.log) - Go to end - Переход к концу + Go to end + Переход к концу - Redirect Python output - Перенаправить вывод Python-a + Redirect Python output + Перенаправить вывод Python-a - Redirect Python errors - Сообщить об ошибке Python + Redirect Python errors + Сообщить об ошибке Python - - + + Gui::DockWnd::ReportView - Output - Вывод + Output + Вывод - Python console - Консоль Python + Python console + Консоль Python - - + + Gui::DockWnd::SelectionView - Property View - Вид собственности + Property View + Просмотр свойств - - + + Gui::DockWnd::TaskPanelView - Task View - Просмотр задач + Task View + Просмотр задач - - + + Gui::DockWnd::TextBrowser - Could not open file. - Невозможно открыть файл. + Could not open file. + Невозможно открыть файл. - You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. - Вы попытались получить доступ к адресу %1, который в настоящее время недоступен. Пожалуйста, убедитесь, что URL-адрес существует и попробуйте перезагрузить страницу. + You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. + Вы попытались получить доступ к адресу %1, который в настоящее время недоступен. Пожалуйста, убедитесь, что URL-адрес существует и попробуйте перезагрузить страницу. - Connecting to %1 - Подключение к %1 + Connecting to %1 + Подключение к %1 - Sending to %1 - Отправить %1 + Sending to %1 + Отправить %1 - Reading from %1 - Чтение из %1 + Reading from %1 + Чтение из %1 - Download failed: %1. - Ошибка загрузки: %1. + Download failed: %1. + Ошибка загрузки: %1. - Previous - Предыдущий + Previous + Предыдущий - Forward - Вперед + Forward + Вперед - Home - В начало + Home + В начало - Refresh - Обновить + Refresh + Обновить - Copy - Скопировать + Copy + Скопировать - Select all - Выделить все + Select all + Выделить все - No description for - Нет описания для + No description for + Нет описания для - - + + Gui::DocumentModel - Application - Приложение + Application + Приложение - Labels & Attributes - Метки и атрибуты + Labels & Attributes + Метки и атрибуты - - + + Gui::EditorView - Modified file - Измененный файл + Modified file + Измененный файл - %1. + %1. This has been modified outside of the source editor. Do you want to reload it? - %1. + %1. Это было изменено вне редактора исходного кода. Вы хотите перезагрузить его? - Unsaved document - Документ несохранен + Unsaved document + Документ несохранен - The document has been modified. + The document has been modified. Do you want to save your changes? - Этот документ был изменен. Вы хотите сохранить изменения? + Этот документ был изменен. Вы хотите сохранить изменения? - FreeCAD macro (*.FCMacro);;Python (*.py) - FreeCAD macro (*.FCMacro);;Python (*.ру) + FreeCAD macro (*.FCMacro);;Python (*.py) + Макрос FreeCAD (*.FCMacro);;Python (*.ру) - Export PDF - Экспортировать PDF + Export PDF + Экспортировать PDF - PDF file (*.pdf) - Документ PDF (*.pdf) + PDF file (*.pdf) + Документ PDF (*.pdf) - untitled[*] - безымянный[*] + untitled[*] + безымянный[*] - - Editor - -Редактор + - Editor + -Редактор - %1 chars removed - %1 символов удалено + %1 chars removed + Удалено символов: %1 - %1 chars added - %1 символов добавлено + %1 chars added + %1 символов добавлено - Formatted - Форматированный + Formatted + Форматированный - - + + Gui::FileChooser - Select a file - Выберите файл + Select a file + Выберите файл - Select a directory - Выберите папку + Select a directory + Выберите папку - - + + Gui::FileDialog - Save as - Сохранить как + Save as + Сохранить как - Open - Открыть + Open + Открыть - - + + Gui::FileOptionsDialog - Extended - Расширенный + Extended + Расширенный - All files (*.*) - Все файлы (*.*) + All files (*.*) + Все файлы (*.*) - - + + Gui::Flag - Top left - Верхний левый + Top left + Верхний левый - Bottom left - Нижний левый + Bottom left + Нижний левый - Top right - Верхний правый + Top right + Верхний правый - Bottom right - Нижний правый + Bottom right + Нижний правый - Remove - Удалить + Remove + Удалить - - + + Gui::InventorNavigationStyle - Press CTRL and left mouse button - Нажмите клавишу CTRL и левую кнопку мыши + Press CTRL and left mouse button + Нажмите клавишу CTRL и левую кнопку мыши - Press middle mouse button - Нажмите среднюю кнопку мыши + Press middle mouse button + Нажмите среднюю кнопку мыши - Press left mouse button - Нажмите левую кнопку мыши + Press left mouse button + Нажмите левую кнопку мыши - Scroll middle mouse button - Прокрутите среднюю кнопку мыши + Scroll middle mouse button + Прокрутите среднюю кнопку мыши - - + + Gui::LocationDialog - Wrong direction - Неправильное направление + Wrong direction + Неправильное направление - Direction must not be the null vector - Направление не должно быть нулевым вектором + Direction must not be the null vector + Направление не должно быть нулевым вектором - X - X + X + X - Y - Y + Y + Y - Z - Z + Z + Z - User defined... - Пользовательские... + User defined... + Пользовательские... - - + + Gui::LocationWidget - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - Z: + Z: + Z: - Direction: - + Direction: + Направление: - - + + Gui::MacroCommand - Macros - Макрос + Macros + Макрос - - + + Gui::MainWindow - Dimension - Размер + Dimension + Размер - Ready - Готово + Ready + Готово - Toggles this toolbar - Переключение этой панели инструментов + Toggles this toolbar + Переключение этой панели инструментов - Toggles this dockable window - Переключить закрепляемое окно + Toggles this dockable window + Переключить закрепляемое окно - Close All - Закрыть все + Close All + Закрыть все - - + + Gui::ManualAlignment - Manual alignment - + Manual alignment + Ручное выравнивание - The alignment is already in progress. - + The alignment is already in progress. + Выравнивание выполняется. - Alignment[*] - + Alignment[*] + Выравнивание[*] - Please, select at least one point in the left and the right view - + Please, select at least one point in the left and the right view + Пожалуйста, выберите хотя одну точку на левом и правом виде - Please, select at least %1 points in the left and the right view - + Please, select at least %1 points in the left and the right view + Пожалуйста, выберите хотя бы %1 точек на левом и правом виде - Please pick points in the left and right view - + Please pick points in the left and right view + Пожалуйста, выберите точки на левом и правом виде - The alignment has finished - + The alignment has finished + Выравнивание завершено - The alignment has been canceled - + The alignment has been canceled + Выравнивание было отменено - Too few points picked in the left view. At least %1 points are needed. - + Too few points picked in the left view. At least %1 points are needed. + Слишком мало точек на левом виде По крайней мере %1 точек необходимо. - Too few points picked in the right view. At least %1 points are needed. - + Too few points picked in the right view. At least %1 points are needed. + Слишком мало точек на правом виде. По крайней мере %1 точек необходимо. - Different number of points picked in left and right view. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Выбрано различное количество точек на виде слева и справа. На левом виде выбрано %1 точек, а на виде справа %2. - Try to align group of views - + Try to align group of views + Попытайтесь выровнять группу видов - The alignment failed. + The alignment failed. How do you want to proceed? - + Выравнивание не удалось. Как вы хотите продолжить? - Retry - + Retry + Повторить - Ignore - + Ignore + Игнорировать - Abort - + Abort + Прервать - Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + Выбрано различное количество точек на виде слева и справа. На левом виде выбрано %1 точек, а на виде справа %2. - Point picked at (%1,%2,%3) - + Point picked at (%1,%2,%3) + Выбрана точка (%1, %2, %3) - No point was picked - + No point was picked + Ни одна точка не выбрана - - + + Gui::NetworkRetriever - Download started... + Download started... - Загрузка началась... + Загрузка началась... - - + + Gui::ProgressBar - Remaining: %1 - Осталось:%1 + Remaining: %1 + Осталось: %1 - Aborting - Прерывание + Aborting + Прерывание - Do you really want to abort the operation? - Вы действительно хотите прервать операцию? + Do you really want to abort the operation? + Вы действительно хотите прервать операцию? - - + + Gui::ProgressDialog - Remaining: %1 - Осталось:%1 + Remaining: %1 + Осталось: %1 - Aborting - Прерывание + Aborting + Прерывание - Do you really want to abort the operation? - Вы действительно хотите прервать операцию? + Do you really want to abort the operation? + Вы действительно хотите прервать операцию? - - + + Gui::PropertyEditor::PropertyModel - Property - Свойство + Property + Свойство - Value - Значение + Value + Значение - - + + Gui::PropertyView - View - Вид + View + Вид - Data - Данные + Data + Данные - - + + Gui::PythonConsole - System exit - Выход из системы + System exit + Выход из системы - The application is still running. + The application is still running. Do you want to exit without saving your data? - Приложение по-прежнему выполняеться. Вы хотите, выйти без сохранения ваших данных? + Приложение по-прежнему выполняеться. Вы хотите, выйти без сохранения ваших данных? - Python console - Консоль Python + Python console + Консоль Python - Unhandled PyCXX exception. - Необработанное исключение PyCXX. + Unhandled PyCXX exception. + Необработанное исключение PyCXX. - Unhandled FreeCAD exception. - Необработанное исключение FreeCAD. + Unhandled FreeCAD exception. + Необработанное прерывание FreeCAD. - Unhandled unknown C++ exception. - Необработанное неизвестное исключение C++. + Unhandled unknown C++ exception. + Необработанное неизвестное исключение C++. - &Copy command - Команда копирования + &Copy command + Команда копирования - &Copy history - Скопировать историю + &Copy history + Скопировать историю - Save history as... - Сохранить историю как... + Save history as... + Сохранить историю как... - Insert file name... - Введите имя файла... + Insert file name... + Введите имя файла... - Save History - Сохранить историю + Save History + Сохранить историю - Macro Files (*.FCMacro *.py) - Макрос файлы (*.FCMacro *.py) + Macro Files (*.FCMacro *.py) + Файлы макросов (*.FCMacro *.py) - Insert file name - Введите имя файла + Insert file name + Введите имя файла - All Files (*.*) - Все файлы (*.*) + All Files (*.*) + Все файлы (*.*) - Python Input Dialog - Диалоговое окно ввода Python + Python Input Dialog + Диалоговое окно ввода Python - Unhandled std C++ exception. - Необработанное исключение, std C++. + Unhandled std C++ exception. + Необработанное исключение, std C++. - Word wrap - Перенос слов + Word wrap + Перенос слов - &Copy - Копировать + &Copy + &Копировать - &Paste - &Вставить + &Paste + &Вставить - Select All - Выбрать всё + Select All + Выбрать всё - Clear console - + Clear console + Очистить консоль - - + + Gui::PythonEditor - Comment - Комментарий + Comment + Комментарий - Uncomment - Раскомментировать + Uncomment + Раскомментировать - - + + Gui::PythonInputField - OK - OK + OK + OK - Clear - Очистить + Clear + Очистить - - + + Gui::RecentFilesAction - Open file %1 - Открыть файл %1 + Open file %1 + Открыть файл %1 - File not found - Файл не найден + File not found + Файл не найден - The file '%1' cannot be opened. - '%1' файл не может быть открыт. + The file '%1' cannot be opened. + '%1' файл не может быть открыт. - - + + Gui::SelectModule - Select module - Выбрать модуль + Select module + Выбрать модуль - Open %1 as - Открыть %1 как + Open %1 as + Открыть %1 как - Select - Выбрать + Select + Выбрать - - + + Gui::StdCmdDescription - Help - Справка + Help + Справка - Des&cription - Опи&сание + Des&cription + Опи&сание - Long description of commands - Подробное описание команд + Long description of commands + Подробное описание команд - - + + Gui::StdCmdDownloadOnlineHelp - Help - Справка + Help + Справка - Download online help - Загрузить интерактивную справку + Download online help + Загрузить интерактивную справку - Download %1's online help - Скачать %1 из онлайн справки + Download %1's online help + Скачать %1 из онлайн справки - Non-existing directory - Не существующий каталог + Non-existing directory + Не существующий каталог - The directory '%1' does not exist. + The directory '%1' does not exist. Do you want to specify an existing directory? - Каталог '%1' не существует. Вы хотите указать существующий каталог? + Каталог '%1' не существует. Вы хотите указать существующий каталог? - Missing permission - Отсутствует разрешение + Missing permission + Отсутствует разрешение - You don't have write permission to '%1' + You don't have write permission to '%1' Do you want to specify another directory? - У вас нет прав на запись в '%1' + У вас нет прав на запись в '%1' Вы хотите указать другой каталог? - Stop downloading - Остановить загрузку + Stop downloading + Остановить загрузку - - + + Gui::StdCmdPythonHelp - Tools - Инструменты + Tools + Инструменты - Python Modules - Модули Python + Python Modules + Модули Python - Opens a browser to show the Python modules - Открыть браузер для просмотра модулей Python + Opens a browser to show the Python modules + Открыть браузер для просмотра модулей Python - - + + Gui::TaskBoxAngle - Angle - Угол + Angle + Угол - - + + Gui::TaskBoxPosition - Position - Положение + Position + Положение - - + + Gui::TaskView::TaskAppearance - Display mode: - Режим отображения: + Plot mode: + Режим вывода на печать: - Plot mode: - Режим вывода на печать: + Point size: + Размер точки: - Point size: - Размер точки: + Line width: + Толщина линии: - Line width: - Толщина линии: + Transparency: + Прозрачность: - Transparency: - Прозрачность: + Appearance + Представление - Appearance - Представление + Document window: + Окно документа: - - Document window: - - - - + + Gui::TaskView::TaskEditControl - Edit - Редактировать + Edit + Правка - - + + Gui::TaskView::TaskSelectLinkProperty - Appearance - Представление + Appearance + Представление - ... - ... + ... + ... - edit selection - изменить выбор + edit selection + изменить выбор - - + + Gui::TouchpadNavigationStyle - Press left mouse button - Нажмите левую кнопку мыши + Press left mouse button + Нажмите левую кнопку мыши - Press SHIFT button - + Press SHIFT button + Нажмите клавишу SHIFT - Press ALT button - + Press ALT button + Нажмите кнопку ALT - Press PgUp/PgDown button - + Press PgUp/PgDown button + Нажмите PgUp/PgDown - - - Gui::Translator - - English - Английский - - - + + Gui::TreeDockWidget - Tree view - Древовидное представление + Tree view + Древовидное представление - - + + Gui::TreeWidget - Create group... - Создать группу... + Create group... + Создать группу... - Create a group - Создать группу + Create a group + Создать группу - Group - Группа + Group + Группа - Rename - Переименовать + Rename + Переименовать - Rename object - Переименовать объект + Rename object + Переименовать объект - Labels & Attributes - Метки и атрибуты + Labels & Attributes + Метки и атрибуты - Application - Приложение + Application + Приложение - Finish editing - Завершить редактирование + Finish editing + Завершить редактирование - Finish editing object - Завершить редактирование объекта + Finish editing object + Завершить редактирование объекта - Activate document - Активировать документ + Activate document + Активировать документ - Activate document %1 - Включить документ %1 + Activate document %1 + Включить документ %1 - - + + Gui::View3DInventor - Export PDF - Экспортировать PDF + Export PDF + Экспортировать PDF - PDF file (*.pdf) - Документ PDF (*.pdf) + PDF file (*.pdf) + Документ PDF (*.pdf) - - + + Gui::WorkbenchGroup - Select the '%1' workbench - Выберите верстак '%1' + Select the '%1' workbench + Выберите верстак '%1' - - + + Position - Form - Форма + Form + Форма - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - Z: + Z: + Z: - 0.1 mm - 0,1 мм + 0.1 mm + 0,1 мм - 0.5 mm - 0,5 мм + 0.5 mm + 0,5 мм - 1 mm - 1 мм + 1 mm + 1 мм - 2 mm - 2 мм + 2 mm + 2 мм - 5 mm - 5 мм + 5 mm + 5 мм - 10 mm - 10 мм + 10 mm + 10 мм - 20 mm - 20 мм + 20 mm + 20 мм - 50 mm - 50 мм + 50 mm + 50 мм - 100 mm - 100 мм + 100 mm + 100 мм - 200 mm - 200 мм + 200 mm + 200 мм - 500 mm - 500 мм + 500 mm + 500 мм - 1 m - 1 м + 1 m + 1 м - 2 m - 2 м + 2 m + 2 м - 5 m - 5 м + 5 m + 5 м - Grid Snap in - Захват сетки в + Grid Snap in + Захват сетки в - - + + QDockWidget - Tree view - Древовидное представление + Tree view + Древовидное представление - Property view - Вид собственности + Property view + Просмотр свойств - Selection view - Выбор зрения + Selection view + Просмотр выделения - Report view - Отчет + Report view + Отчет - Task View - Просмотр задач + Task View + Просмотр задач - Combo View - Комбинированный вид + Combo View + Комбинированный вид - Toolbox - Панель инструментов + Toolbox + Панель инструментов - Python console - Консоль Python + Python console + Консоль Python - Display properties - Отобразить свойства + Display properties + Отобразить свойства - - + + QObject - General - Основные + General + Основные - Display - Отобразить + Display + Отобразить - Unknown filetype - Неизвестный тип файла + Unknown filetype + Неизвестный тип файла - Cannot open unknown filetype: %1 - Не удается открыть неизвестный файл: %1 + Cannot open unknown filetype: %1 + Не удается открыть неизвестный файл: %1 - Cannot save to unknown filetype: %1 - Не удалось сохранить в неизвестном файле: %1 + Cannot save to unknown filetype: %1 + Не удалось сохранить в неизвестном файле: %1 - Workbench failure - Рабочее окружение отказало + Workbench failure + Рабочее окружение отказало - %1 - %1 + %1 + %1 - Unable to launch Qt Assistant (%1) - Невозможно запустить QtAssistant(%1) + Unable to launch Qt Assistant (%1) + Невозможно запустить QtAssistant(%1) - Exception - Исключение + Exception + Исключение - Open document - Открыть документ + Open document + Открыть документ - Import file - Импорт файла + Import file + Импорт файла - Export file - Экспорт файла + Export file + Экспорт файла - Printing... - Печать... + Printing... + Печать... - Cannot load workbench - Не удается загрузить инструментарий + Cannot load workbench + Не удается загрузить инструментарий - A general error occurred while loading the workbench - Общая ошибка при загрузке инструментария + A general error occurred while loading the workbench + Общая ошибка при загрузке инструментария - File not found - Файл не найден + Save views... + Сохранение видов... - Cannot open file %1 - Не удается открыть файл %1 + Load views... + Загрузить виды... - Save views... - Сохранение видов... + Freeze view + Заморозить виды - Load views... - Загрузить виды... + Clear views + Очистить виды - Freeze view - Заморозить виды + Restore view &%1 + Восстановить вид &%1 - Clear views - Очистить виды + Save frozen views + Сохранить замороженные виды - Restore view &%1 - Восстановить вид &%1 + Frozen views (*.cam) + Замороженные виды (*.cam) - Save frozen views - Сохранить замороженные виды + Restore views + Восстановить просмотры - Frozen views (*.cam) - Замороженные виды (*.cam) - - - Restore views - Восстановить просмотры - - - Importing the restored views would clear the already stored views. + Importing the restored views would clear the already stored views. Do you want to continue? - Восстановление видов очисит храняшиеся виды. + Восстановление видов очисит храняшиеся виды. Вы хотите продолжить? - Restore frozen views - Восстановить замороженный вид + Restore frozen views + Восстановить замороженный вид - Cannot open file '%1'. - Не удается открыть файл '%1'. + Cannot open file '%1'. + Не удается открыть файл '%1'. - Docked - Закрепленный + Docked + Закрепленный - Undocked - Открепить + Undocked + Открепить - Fullscreen - На весь экран + Fullscreen + На весь экран - files - файлы + files + файлы - Save picture - Сохранить изображение + Save picture + Сохранить изображение - New sub-group - Новая подгруппа + New sub-group + Новая подгруппа - Enter the name: - Введите имя: + Enter the name: + Введите имя: - New text item - Новый текстовый элемент + New text item + Новый текстовый элемент - Enter your text: - Введите текст: + Enter your text: + Введите текст: - New integer item - Новый целочисленный элемент + New integer item + Новый целочисленный элемент - Enter your number: - Введите номер: + Enter your number: + Введите номер: - New unsigned item - Новый беззнаковый элемент + New unsigned item + Новый беззнаковый элемент - New float item - Новый вещественный элемент + New float item + Новый вещественный элемент - New Boolean item - Новый логический элемент + New Boolean item + Новый логический элемент - Choose an item: - Выберите элемент: + Choose an item: + Выберите элемент: - Rename group - Переименовать группу + Rename group + Переименовать группу - The group '%1' cannot be renamed. - Группа '%1' не может быть переименована. + The group '%1' cannot be renamed. + Группа '%1' не может быть переименована. - Existing group - Существующая группа + Existing group + Существующая группа - The group '%1' already exists. - Группа '%1' уже существует. + The group '%1' already exists. + Группа '%1' уже существует. - Change value - Изменить значение + Change value + Изменить значение - Save document under new filename... - Сохранить документ под новым именем... + Save document under new filename... + Сохранить документ под новым именем... - Saving aborted - Сохранение прервано + Saving aborted + Сохранение прервано - Unsaved document - Документ несохранен + Unsaved document + Документ несохранен - Save document before close? - Сохранить документ перед закрытием? + Save document before close? + Сохранить документ перед закрытием? - Save Macro - Сохранить Макрос + Save Macro + Сохранить Макрос - Finish - Завершить + Finish + Завершить - Clear - Очистить + Clear + Очистить - Cancel - Отменить + Cancel + Отмена - Inner - Внутренний + Inner + Внутренний - Outer - Внешний + Outer + Внешний - No Browser - Нет браузера + No Browser + Нет браузера - Unable to open your browser. + Unable to open your browser. Please open a browser window and type in: http://localhost:%1. - Не удается открыть браузер. Пожалуйста, откройте окно браузера и введите: http://localhost:%1. + Не удается открыть браузер. Пожалуйста, откройте окно браузера и введите: http://localhost:%1. - No Server - Нет сервера + No Server + Нет сервера - Unable to start the server to port %1: %2. - Не удается запустить сервер на порту %1: %2. + Unable to start the server to port %1: %2. + Не удается запустить сервер на порту %1: %2. - Unable to open your system browser. - Не удается открыть ваш системный браузере. + Unable to open your system browser. + Не удается открыть ваш системный браузере. - Options... - Параметры... + Options... + Параметры... - Out of memory - Недостаточно памяти + Out of memory + Недостаточно памяти - Not enough memory available to display the data. - Недостаточно памяти для отображения данных. + Not enough memory available to display the data. + Недостаточно памяти для отображения данных. - Cannot find file %1 - Не удалось найти файл '%1' + Cannot find file %1 + Не удалось найти файл '%1' - Cannot find file %1 neither in %2 nor in %3 - Не удается найти файл %1, ни в %2 ни в %3 + Cannot find file %1 neither in %2 nor in %3 + Не удается найти файл %1, ни в %2 ни в %3 - Save %1 Document - Сохранить документ %1 + Save %1 Document + Сохранить документ %1 - %1 document (*.FCStd) - документ %1 (*.FCStd) + %1 document (*.FCStd) + документ %1 (*.FCStd) - Save As - Сохранить как + Save As + Сохранить как - %1 already exists. + %1 already exists. Do you want to replace it? - %1 уже существует. Хотите заменить его? + %1 уже существует. Хотите заменить его? - Document not closable - Документ не закрываем + Document not closable + Документ не закрываем - The document is not closable for the moment. - Этот документ не закрываемый на данный момент. + The document is not closable for the moment. + Этот документ не закрываемый на данный момент. - No OpenGL - Нет OpenGL + No OpenGL + Нет OpenGL - This system does not support OpenGL - Эта система не поддерживает OpenGL + This system does not support OpenGL + Эта система не поддерживает OpenGL - Help - Справка + Help + Справка - Unable to load documentation. + Unable to load documentation. In order to load it Qt 4.4 or higher is required. - Не удается загрузить документацию. Чтобы загрузить это требуется Qt 4.4 или выше. + Не удается загрузить документацию. Чтобы загрузить это требуется Qt 4.4 или выше. - %1 Help - %1 Справка + %1 Help + Справка по %1 - Exporting PDF... - Экспорт PDF... + Exporting PDF... + Экспорт PDF... - Wrong selection - Неправильный выбор + Wrong selection + Неправильный выбор - Only one object selected. Please select two objects. + Only one object selected. Please select two objects. Be aware the point where you click matters. - Только один объект выбран. Пожалуйста, выберите два объекта. Будте уверены, что точка которую вы выбираете важна. + Только один объект выбран. Пожалуйста, выберите два объекта. Будте уверены, что точка которую вы выбираете важна. - Please select two objects. + Please select two objects. Be aware the point where you click matters. - Пожалуйста, выберите два объекта. Будте уверены, что точка которую вы выбираете важна. + Пожалуйста, выберите два объекта. Будте уверены, что точка которую вы выбираете важна. - New boolean item - Новый логический элемент + New boolean item + Новый логический элемент - Navigation styles - Стили навигации + Navigation styles + Стили навигации - %1 navigation - %1 навигация + %1 navigation + Навигация в стиле %1 - Move annotation - Переместить заметку + Move annotation + Переместить заметку - Transform - Преобразовать + Transform + Преобразовать - The document is in editing mode and thus cannot be closed for the moment. + The document is in editing mode and thus cannot be closed for the moment. You either have to finish or cancel the editing in the task panel. - Документ находится в режиме редактирования, и поэтому не может быть закрыт на данный момент. Вы либо должны закончить или отменить редактирование в панели задач. + Документ находится в режиме редактирования, и поэтому не может быть закрыт на данный момент. Вы либо должны закончить или отменить редактирование в панели задач. - - + + StdBoxSelection - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Box selection - + Box selection + Объемное выделение - - + + StdCmdAbout - Help - Справка + Help + Справка - &About %1 - &О %1 + &About %1 + &О %1 - About %1 - О %1 + About %1 + О %1 - - + + StdCmdAboutQt - Help - Справка + Help + Справка - About &Qt - О &Qt + About &Qt + О &Qt - About Qt - О Qt + About Qt + О Qt - - + + StdCmdActivateNextWindow - Window - Окно + Window + Окно - Ne&xt - Сл&едующий + Ne&xt + Сл&едующее - Activate next window - Активировать следующее окно + Activate next window + Активировать следующее окно - - + + StdCmdActivatePrevWindow - Window - Окно + Window + Окно - Pre&vious - Пре&дыдущий + Pre&vious + Пре&дыдущее - Activate previous window - Активировать предыдущее окно + Activate previous window + Активировать предыдущее окно - - + + StdCmdAlignment - Edit - Редактировать + Edit + Правка - Alignment... - + Alignment... + Выравнивание... - Align the selected objects - + Align the selected objects + Выравнять выбранные объекты - - + + StdCmdArrangeIcons - Window - Окно + Window + Окно - Arrange &Icons - Упорядочить &иконки + Arrange &Icons + Упорядочить &иконки - Arrange Icons - Упорядочить иконки + Arrange Icons + Упорядочить иконки - - + + StdCmdAxisCross - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Toggle axis cross - включить/выключить оси координат + Toggle axis cross + Индикатор начала координат - - + + StdCmdCascadeWindows - Window - Окно + Window + Окно - &Cascade - & Каскад + &Cascade + &Каскад - Tile pragmatic - Прагматичная плитка + Tile pragmatic + Прагматичная плитка - - + + StdCmdCloseActiveWindow - Window - Окно + Window + Окно - Cl&ose - За&крыть + Cl&ose + За&крыть - Close active window - Закрыть активное окно + Close active window + Закрыть активное окно - - + + StdCmdCloseAllWindows - Window - Окно + Window + Окно - Close Al&l - Закрыть вс&ё + Close Al&l + Закрыть вс&ё - Close all windows - Закрыть все окна + Close all windows + Закрыть все окна - - + + StdCmdCommandLine - Tools - Инструменты + Tools + Инструменты - Start command &line... - Запустить командную &строку... + Start command &line... + Запустить командную &строку... - Opens the command line in the console - Открывает командную строку + Opens the command line in the console + Открывает командную строку - - + + StdCmdCopy - Edit - Редактировать + Edit + Правка - C&opy - Ко&пировать + C&opy + Ко&пировать - Copy operation - Операция копирования + Copy operation + Операция копирования - - + + StdCmdCut - Edit - Редактировать + Edit + Правка - &Cut - & Вырезать + &Cut + & Вырезать - Cut out - Вырезать + Cut out + Вырезать - - - StdCmdDDuplicateSelection - - Edit - Редактировать - - - Duplicate selection - Двойное выделение - - - Put duplicates of the selected objects to the active document - Вложить дубликаты выбранных объектов в активный документ - - - + + StdCmdDelete - Edit - Редактировать + Edit + Правка - &Delete - & Удалить + &Delete + &Удалить - Deletes the selected objects - Удаляет выбранные объекты + Deletes the selected objects + Удаляет выбранные объекты - - + + StdCmdDemoMode - Standard-View - Стандартный вид + Standard-View + Стандартный вид - View turntable... - Поворотный просмотр... + View turntable... + Поворотный просмотр... - View turntable - Поворотный просмотр + View turntable + Поворотный просмотр - - + + StdCmdDlgCustomize - Tools - Инструменты + Tools + Инструменты - Cu&stomize... - На&стройка... + Cu&stomize... + На&стройка... - Customize toolbars and command bars - Настройка панелей инструментов и панели команд + Customize toolbars and command bars + Настройка панелей инструментов и панели команд - - + + StdCmdDlgMacroExecute - Macros ... - Макрос... + Macros ... + Макрос... - Opens a dialog to let you execute a recorded macro - Открывает диалоговое окно, чтобы выполнить написанный макрос + Opens a dialog to let you execute a recorded macro + Открывает диалоговое окно, чтобы выполнить написанный макрос - Macro - Макро + Macro + Макрос - - + + StdCmdDlgMacroExecuteDirect - Macro - Макро + Macro + Макрос - Execute macro - Выполнить макрос + Execute macro + Выполнить макрос - Execute the macro in the editor - Выполнить макрос в редакторе + Execute the macro in the editor + Выполнить макрос в редакторе - - + + StdCmdDlgMacroRecord - &Macro recording ... - &Запись макроса ... + &Macro recording ... + &Запись макроса ... - Opens a dialog to record a macro - Открывает диалоговое окно для записи макросов + Opens a dialog to record a macro + Открывает диалоговое окно для записи макросов - Macro - Макро + Macro + Макрос - - + + StdCmdDlgParameter - Tools - Инструменты + Tools + Инструменты - E&dit parameters ... - &Параметры редактирования... + E&dit parameters ... + &Параметры редактирования... - Opens a Dialog to edit the parameters - Открывает диалоговое окно для изменения параметров + Opens a Dialog to edit the parameters + Открывает диалоговое окно для изменения параметров - - + + StdCmdDlgPreferences - Tools - Инструменты + Tools + Инструменты - &Preferences ... - &Настройки ... + &Preferences ... + &Параметры... - Opens a Dialog to edit the preferences - Открывает диалоговое окно для изменения настроек + Opens a Dialog to edit the preferences + Открывает диалоговое окно для изменения настроек - - + + StdCmdDockViewMenu - View - Вид + View + Вид - Vie&ws - Ви&ды + Vie&ws + Ви&ды - Toggles this window - Переключите это окно + Toggles this window + Переключите это окно - - + + StdCmdDrawStyle - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Draw style - Draw style + Draw style + Стиль представления - - + + StdCmdDuplicateSelection - Edit - Редактировать + Edit + Правка - Duplicate selection - Двойное выделение + Duplicate selection + Двойное выделение - Put duplicates of the selected objects to the active document - Вложить дубликаты выбранных объектов в активный документ + Put duplicates of the selected objects to the active document + Вложить дубликаты выбранных объектов в активный документ - - + + StdCmdEdit - Edit - Редактировать + Edit + Правка - Toggle &Edit mode - + Toggle &Edit mode + Переключение в режим редактирования - Toggles the selected object's edit mode - + Toggles the selected object's edit mode + Переключить выбранные объекты в режим редактирования - Enters or leaves the selected object's edit mode - + Enters or leaves the selected object's edit mode + Добавьте или уберите выбранные объекты из режима редактирования - - + + StdCmdExport - File - Файл + File + Файл - &Export... - & Экспорт... + &Export... + &Экспортировать... - Export an object in the active document - Экспорт объекта в активный документ + Export an object in the active document + Экспорт объекта в активный документ - Supported formats - Поддерживаемые форматы + No selection + Нет выбора - No selection - + Please select first the objects you want to export. + Пожалуйста, сначала выберите объекты, которые вы хотите экспортировать. - - Please select first the objects you want to export. - - - - + + StdCmdExportGraphviz - Tools - Инструменты + Tools + Инструменты - Dependency graph... - + Dependency graph... + Граф зависимостей... - Show the dependency graph of the objects in the active document - + Show the dependency graph of the objects in the active document + Показать граф зависимостей объектов в активном документе - - + + StdCmdFeatRecompute - File - Файл + File + Файл - &Recompute - &Пересчитать + &Recompute + &Пересчитать - Recompute feature or document - Пересчитать функцию или документ + Recompute feature or document + Пересчитать функцию или документ - - + + StdCmdFreeCADWebsite - Help - Справка + Help + Справка - FreeCAD Website - Сайт FreeCAD + FreeCAD Website + Сайт FreeCAD - The FreeCAD website - Web-сайт FreeCAD + The FreeCAD website + Сайт FreeCAD - - + + StdCmdFreezeViews - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Freeze display - Заморозить экран + Freeze display + Заморозить экран - Freezes the current view position - Замораживает текущую позицию просмотра + Freezes the current view position + Замораживает текущую позицию просмотра - - + + StdCmdHideObjects - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Hide all objects - Скрыть все объекты + Hide all objects + Скрыть все объекты - Hide all objects in the document - Скрыть все объекты в документе + Hide all objects in the document + Скрыть все объекты в документе - - + + StdCmdHideSelection - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Hide selection - Скрыть выделение + Hide selection + Скрыть выделение - Hide all selected objects - Скрыть все выбранные объекты + Hide all selected objects + Скрыть все выбранные объекты - - + + StdCmdImport - File - Файл + File + Файл - &Import... - & Импорт... + &Import... + &Импортировать... - Import a file in the active document - Импорт файла в активный документ + Import a file in the active document + Импорт файла в активный документ - Supported formats - Поддерживаемые форматы + Supported formats + Поддерживаемые форматы - All files (*.*) - Все файлы (*.*) + All files (*.*) + Все файлы (*.*) - - + + StdCmdMacroStartDebug - Macro - Макро + Macro + Макрос - Debug macro - Отладка макросов + Debug macro + Отладка макросов - Start debugging of macro - Начать отладку макроса + Start debugging of macro + Начать отладку макроса - - + + StdCmdMacroStepOver - Macro - Макро + Macro + Макрос - Step over - За шаг + Step over + За шаг - - + + StdCmdMacroStopDebug - Macro - Макро + Macro + Макрос - Stop debugging - Остановить отладку + Stop debugging + Остановить отладку - Stop debugging of macro - Остановить отладку макроса + Stop debugging of macro + Остановить отладку макроса - - + + StdCmdMacroStopRecord - Macro - Макро + Macro + Макрос - S&top macro recording - О&становить запись макроса + S&top macro recording + О&становить запись макроса - Stop the macro recording session - Остановить сессию записи макроса + Stop the macro recording session + Остановить сессию записи макроса - - + + StdCmdMeasureDistance - View - Вид + View + Вид - Measure distance - Измерить расстояние + Measure distance + Измерить расстояние - - + + StdCmdMeasurementSimple - Tools - Инструменты + Tools + Инструменты - Mesure distance - Измерить дистанцию + Measures distance between two selected objects + Измерить дистанцию между двумя выбранными обьектами - Measures distance between two selected objects - Измерить дистанцию между двумя выбранными обьектами + Measure distance + Измерить расстояние - - Measure distance - Измерить расстояние - - - + + StdCmdMergeProjects - File - Файл + File + Файл - Merge project... - Объединить проект... + Merge project... + Объединить проект... - Merge project - Объединить проект + Merge project + Объединить проект - %1 document (*.fcstd) - %1 документ (*.fcstd) + %1 document (*.fcstd) + %1 документ (*.fcstd) - Cannot merge project with itself. - Нельзя объединить проект с самим собой. + Cannot merge project with itself. + Нельзя объединить проект с самим собой. - - + + StdCmdNew - File - Файл + File + Файл - &New - &Новый + &New + &Создать - Create a new empty document - Создайте новый пустой документ + Create a new empty document + Создайте новый пустой документ - - + + StdCmdOnlineHelp - Help - Справка + Help + Справка - Show help to the application - Показать справку для приложения + Show help to the application + Показать справку для приложения - - - StdCmdOnlineHelpPython - - Help - Справка - - - Python Manuals - Руководство Python - - - Show the Python documentation - Показать документацию Python - - - + + StdCmdOnlineHelpWebsite - Help - Справка + Help + Справка - Help Website - Веб-Помощь + Help Website + Веб-Помощь - The website where the help is maintained - Веб-сайт, где поддерживается помощь + The website where the help is maintained + Веб-сайт, где поддерживается помощь - - + + StdCmdOpen - File - Файл + File + Файл - &Open... - &Открыть... + &Open... + &Открыть... - Open a document or import files - Открыть документ или импортировать файлы + Open a document or import files + Открыть документ или импортировать файлы - Supported formats - Поддерживаемые форматы + Supported formats + Поддерживаемые форматы - All files (*.*) - Все файлы (*.*) + All files (*.*) + Все файлы (*.*) - - + + StdCmdPaste - Edit - Редактировать + Edit + Правка - &Paste - &Вставить + &Paste + &Вставить - Paste operation - Операция вставки + Paste operation + Операция вставки - - + + StdCmdPlacement - Edit - Редактировать + Edit + Правка - Placement... - Расположение... + Placement... + Расположение... - Place the selected objects - Поместить выделенные объекты + Place the selected objects + Поместить выделенные объекты - - + + StdCmdPrint - File - Файл + File + Файл - &Print... - &Печать... + &Print... + &Печать... - Print the document - Печать документа + Print the document + Печать документа - - + + StdCmdPrintPdf - File - Файл + File + Файл - &Export PDF... - & Экспорт PDF... + &Export PDF... + Э&кспортировать PDF... - Export the document as PDF - Экспорт документа в формат PDF + Export the document as PDF + Экспорт документа в формат PDF - - + + StdCmdPrintPreview - File - Файл + File + Файл - &Print preview... - &Предварительный просмотр... + &Print preview... + &Предварительный просмотр... - Print the document - Печать документа + Print the document + Печать документа - Print preview - Предварительный просмотр + Print preview + Предварительный просмотр - - + + StdCmdProjectInfo - File - Файл + File + Файл - Project i&nformation... - Информация о про&екте... + Project i&nformation... + Информация о про&екте... - Show details of the currently active project - Показать детали в текущего активного проекта + Show details of the currently active project + Показать детали в текущего активного проекта - - + + StdCmdProjectUtil - Tools - Инструменты + Tools + Инструменты - Project utility... - Утилита проекта... + Project utility... + Утилита проекта... - Utility to extract or create project files - Утилита для извлечения или создания файлов проекта + Utility to extract or create project files + Утилита для извлечения или создания файлов проекта - - + + StdCmdPythonWebsite - Help - Справка + Help + Справка - Python Website - Сайт Python + Python Website + Сайт Python - The official Python website - Официальный сайт Python + The official Python website + Официальный сайт Python - - + + StdCmdQuit - File - Файл + File + Файл - E&xit - В&ыход + E&xit + В&ыход - Quits the application - Выйти из приложения + Quits the application + Выйти из приложения - - + + StdCmdRandomColor - File - Файл + File + Файл - Random color - Случайный цвет + Random color + Случайный цвет - - + + StdCmdRecentFiles - File - Файл + File + Файл - Recent files - Последние файлы + Recent files + Последние файлы - Recent file list - Список последних файлов + Recent file list + Список последних файлов - - + + StdCmdRedo - Edit - Редактировать + Edit + Правка - &Redo - &Повторить + &Redo + &Повторить - Redoes a previously undone action - Повторить последнее отмененное действие + Redoes a previously undone action + Повторить последнее отмененное действие - - + + StdCmdRefresh - Edit - Редактировать + Edit + Правка - &Refresh - &Обновить + &Refresh + &Обновить - Recomputes the current active document - Пересчитывает текущий документ + Recomputes the current active document + Пересчитывает текущий документ - - + + StdCmdSave - File - Файл + File + Файл - &Save - &Сохранить + &Save + &Сохранить - Save the active document - Сохранить активный документ + Save the active document + Сохранить активный документ - - + + StdCmdSaveAs - File - Файл + File + Файл - Save &As... - Сохранить &как... + Save &As... + Сохранить &как... - Save the active document under a new file name - Сохранить текущий документ под новым именем + Save the active document under a new file name + Сохранить текущий документ под новым именем - - + + StdCmdSceneInspector - Tools - Инструменты + Tools + Инструменты - Scene inspector... - Инспектор сцены... + Scene inspector... + Инспектор сцены... - Scene inspector - Инспектор сцены + Scene inspector + Инспектор сцены - - + + StdCmdSelectAll - Edit - Редактировать + Edit + Правка - Select &All - Выбрать &всё + Select &All + Выбрать &всё - Select all - Выделить все + Select all + Выделить все - - + + StdCmdSetAppearance - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Appearance... - Внешний вид ... + Appearance... + Внешний вид ... - Sets the display properties of the selected object - Устанавливает свойства отображения выбранного объекта + Sets the display properties of the selected object + Устанавливает свойства отображения выбранного объекта - - + + StdCmdShowObjects - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Show all objects - Показать все объекты + Show all objects + Показать все объекты - Show all objects in the document - Показать все объекты в документе + Show all objects in the document + Показать все объекты в документе - - + + StdCmdShowSelection - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Show selection - Показывать выделение + Show selection + Показывать выделение - Show all selected objects - Показать все выделенные объекты + Show all selected objects + Показать все выделенные объекты - - + + StdCmdStatusBar - View - Вид + View + Вид - Status bar - Строка состояния + Status bar + Строка состояния - Toggles the status bar - Включает или выключает строку состояния + Toggles the status bar + Включает или выключает строку состояния - - + + StdCmdTextureMapping - Tools - Инструменты + Tools + Инструменты - Texture mapping... - Текстуры... + Texture mapping... + Текстуры... - Texture mapping - Текстуры + Texture mapping + Проекция текстуры - - + + StdCmdTileWindows - Window - Окно + Window + Окно - &Tile - &Заголовок + &Tile + &Заголовок - Tile the windows - Расположить рядом окна + Tile the windows + Расположить рядом окна - - + + StdCmdToggleBreakpoint - Macro - Макро + Macro + Макрос - Toggle breakpoint - Установить/снять точку останова + Toggle breakpoint + Установить/снять точку останова - - + + StdCmdToggleClipPlane - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Clipping plane - Показать плоскости + Clipping plane + Показать плоскости - Toggles clipping plane for active view - Переключает плоскости для активного просмотра + Toggles clipping plane for active view + Переключает плоскости для активного просмотра - - + + StdCmdToggleNavigation - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Toggle navigation/Edit mode - Переключить режим навигации / редактирования + Toggle navigation/Edit mode + Переключить режим навигации / редактирования - Toggle between navigation and edit mode - Переключение между режимом навигации и редактирования + Toggle between navigation and edit mode + Переключение между режимом навигации и редактирования - - + + StdCmdToggleObjects - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Toggle all objects - Переключить все объекты + Toggle all objects + Переключить все объекты - Toggles visibility of all objects in the active document - Переключает видимость всех объектов в активном документе + Toggles visibility of all objects in the active document + Переключает видимость всех объектов в активном документе - - + + StdCmdToggleSelectability - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Toggle selectability - Переключить возможность выбора + Toggle selectability + Переключить возможность выбора - Toggles the property of the objects to get selected in the 3D-View - Переключает свойство выбранных объектов в 3D-режим + Toggles the property of the objects to get selected in the 3D-View + Переключает свойство выбранных объектов в 3D-режим - - + + StdCmdToggleVisibility - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Toggle visibility - Переключить видимость + Toggle visibility + Переключить видимость - Toggles visibility - Переключает видимость + Toggles visibility + Переключает видимость - - + + StdCmdToolBarMenu - View - Вид + View + Вид - Tool&bars - Инстру&менты + Tool&bars + Инстру&менты - Toggles this window - Переключите это окно + Toggles this window + Переключите это окно - - + + StdCmdTransform - Edit - Редактировать + Edit + Правка - Transform... - Преобразовать... + Transform... + Преобразовать... - Transform the geometry of selected objects - Преобразование геометрии выделенных объектов + Transform the geometry of selected objects + Преобразование геометрии выделенных объектов - - + + StdCmdTreeSelection - View - Вид + View + Вид - Go to selection - Перейти к выделенному + Go to selection + Перейти к выделенному - Scroll to first selected item - Прокрутите до первого выбранного элемента + Scroll to first selected item + Прокрутите до первого выбранного элемента - - + + StdCmdUndo - Edit - Редактировать + Edit + Правка - &Undo - &Отменить + &Undo + &Отменить - Undo exactly one action - Отменить ровно одно действие + Undo exactly one action + Отменить ровно одно действие - - + + StdCmdUserInterface - View - Вид + View + Вид - Dock views - Заморозить вид + Dock views + Заморозить вид - Dock all top-level views - Закрепить все виды верхнего уровня + Dock all top-level views + Закрепить все виды верхнего уровня - - + + StdCmdViewAxo - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Axometric - Axometric + Axometric + Аксонометрический - Set to axometric view - Установить вид в axometric + Set to axometric view + Переключиться на аксонометрический вид - - + + StdCmdViewBottom - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Bottom - Дно + Bottom + Дно - Set to bottom view - Установить вид снизу + Set to bottom view + Установить вид снизу - - + + StdCmdViewCreate - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Create new view - Cоздать новый вид + Create new view + Cоздать новый вид - Creates a new view window for the active document - Создать новое окно просмотра для активного документа + Creates a new view window for the active document + Создать новое окно просмотра для активного документа - - + + StdCmdViewExample1 - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Inventor example #1 - Создать пример #1 + Inventor example #1 + Создать пример #1 - Shows a 3D texture with manipulator - Показывает 3D текстуры с манипулятором + Shows a 3D texture with manipulator + Показывает 3D текстуры с манипулятором - - + + StdCmdViewExample2 - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Inventor example #2 - Создать пример #1 + Inventor example #2 + Создать пример #1 - Shows spheres and drag-lights - Показывает сферы и перетаскивающиеся огни + Shows spheres and drag-lights + Показывает сферы и перетаскивающиеся огни - - + + StdCmdViewExample3 - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Inventor example #3 - Создать пример #3 + Inventor example #3 + Создать пример #3 - Shows a animated texture - Показывает анимированные текстуры + Shows a animated texture + Показывает анимированные текстуры - - + + StdCmdViewFitAll - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Fit all - Заполнить всё + Fit all + Заполнить всё - Fits the whole content on the screen - Устанавливается все содержимое на экране + Fits the whole content on the screen + Устанавливается все содержимое на экране - - + + StdCmdViewFitSelection - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Fit selection - Заполнить выделенное + Fit selection + Заполнить выделенное - Fits the selected content on the screen - Устанавливается выбранное содержимое на экране + Fits the selected content on the screen + Устанавливается выбранное содержимое на экране - - + + StdCmdViewFront - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Front - Спереди + Front + Спереди - Set to front view - Задать вид спереди + Set to front view + Задать вид спереди - - + + StdCmdViewIvIssueCamPos - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Issue camera position - Выделение позиции камеры + Issue camera position + Выделение позиции камеры - Issue the camera position to the console and to a macro, to easily recall this position - Выделение положения камеры на консоль и макрос для легкого воспроизведения позиции + Issue the camera position to the console and to a macro, to easily recall this position + Выделение положения камеры на консоль и макрос для легкого воспроизведения позиции - - + + StdCmdViewIvStereoInterleavedColumns - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Stereo Interleaved Columns - Стерео чередование столбцов + Stereo Interleaved Columns + Стерео чередование столбцов - Switch stereo viewing to Interleaved Columns - Переключить стерео просмотр в чередующиеся столбцы + Switch stereo viewing to Interleaved Columns + Переключить стерео просмотр в чередующиеся столбцы - - + + StdCmdViewIvStereoInterleavedRows - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Stereo Interleaved Rows - Стерео с чередованием строк + Stereo Interleaved Rows + Стерео с чередованием строк - Switch stereo viewing to Interleaved Rows - Переключить стерео в упорядоченные строки + Switch stereo viewing to Interleaved Rows + Переключить стерео в упорядоченные строки - - + + StdCmdViewIvStereoOff - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Stereo Off - Выключить стерео + Stereo Off + Выключить стерео - Switch stereo viewing off - Выключить стерео показ + Switch stereo viewing off + Выключить стерео показ - - + + StdCmdViewIvStereoQuadBuff - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Stereo quad buffer - Стерео квадро-буфер + Stereo quad buffer + Стерео квадро-буфер - Switch stereo viewing to quad buffer - Переключить стерео просмотр в квадро-буфер + Switch stereo viewing to quad buffer + Переключить стерео просмотр в квадро-буфер - - + + StdCmdViewIvStereoRedGreen - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Stereo red/green - Стерео красный / зеленый + Stereo red/green + Стерео красный / зеленый - Switch stereo viewing to red/green - Переключить стерео просмотр на красный / зеленый + Switch stereo viewing to red/green + Переключить стерео просмотр на красный / зеленый - - + + StdCmdViewLeft - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Left - Слева + Left + Слева - Set to left view - Установить вид слева + Set to left view + Установить вид слева - - + + StdCmdViewRear - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Rear - Сзади + Rear + Сзади - Set to rear view - Установить вид сзади + Set to rear view + Установить вид сзади - - + + StdCmdViewRight - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Right - Право + Right + Вправо - Set to right view - Установить вид справа + Set to right view + Установить вид справа - - + + StdCmdViewRotateLeft - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Rotate Left - + Rotate Left + Повернуть влево - Rotate the view by 90° counter-clockwise - + Rotate the view by 90° counter-clockwise + Повернуть вид на 90° против часовой стрелки - - + + StdCmdViewRotateRight - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Rotate Right - + Rotate Right + Повернуть вправо - Rotate the view by 90° clockwise - + Rotate the view by 90° clockwise + Повернуть вид на 90° по часовой стрелке - - + + StdCmdViewTop - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Top - Вверх + Top + Вверх - Set to top view - Установить вид сверху + Set to top view + Установить вид сверху - - + + StdCmdWhatsThis - Help - Справка + Help + Справка - &What's This? - &Что это? + &What's This? + &Что это? - What's This - Что это + What's This + Что это - - + + StdCmdWindows - Window - Окно + Window + Окно - &Windows... - &Окна... + &Windows... + &Окна... - Windows list - Список окон + Windows list + Список окон - - + + StdCmdWindowsMenu - Window - Окно + Window + Окно - Activates this window - Активировать это окно + Activates this window + Активировать это окно - - + + StdCmdWorkbench - View - Вид + View + Вид - Workbench - Рабочий стол + Workbench + Рабочий стол - Switch between workbenches - Переключение между рабочими столами + Switch between workbenches + Переключение между рабочими столами - - + + StdOrthographicCamera - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Orthographic view - Ортогональный вид + Orthographic view + Ортогональный вид - Switches to orthographic view mode - Переключение в ортогональный режим + Switches to orthographic view mode + Переключение в ортогональный режим - - + + StdPerspectiveCamera - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Perspective view - Перспективный вид + Perspective view + Перспективный вид - Switches to perspective view mode - Переключение в перспективный просмотр + Switches to perspective view mode + Переключение в перспективный просмотр - - + + StdViewBoxZoom - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Box zoom - Масштаб поля + Box zoom + Масштаб поля - - + + StdViewDockUndockFullscreen - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Document window - окно документа + Document window + Окно документа - Display the active view either in fullscreen, in undocked or docked mode - Отображать активный вид в полноэкранном, закрепленном или не закрепленном режиме + Display the active view either in fullscreen, in undocked or docked mode + Отображать активный вид в полноэкранном, закрепленном или не закрепленном режиме - - + + StdViewScreenShot - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Save picture... - Сохранить изображение ... + Save picture... + Сохранить изображение ... - Creates a screenshot of the active view - Создает скриншот активного просмотра + Creates a screenshot of the active view + Создает скриншот активного просмотра - - + + StdViewZoomIn - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Zoom In - Увеличить + Zoom In + Увеличить - - + + StdViewZoomOut - Standard-View - Стандартный вид + Standard-View + Стандартный вид - Zoom Out - Уменьшить + Zoom Out + Уменьшить - - + + Std_DrawStyle - As is - As is + As is + Как есть - Normal mode - Normal mode + Normal mode + Обычный режим - Wireframe - Wireframe + Wireframe + Каркас - Wireframe mode - Wireframe mode + Wireframe mode + Каркасный режим - - + + Std_ExportGraphviz - Graphviz not found - + Graphviz not found + GraphViz не найден - Graphviz couldn't be found on your system. -Do you want to specify its installation path if it's already installed? - + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + GraphViz не найден. Хотите указать путь установки, если он уже установлен? - Graphviz installation path - + Graphviz installation path + Путь установки GraphViz - Dependency graph - + Dependency graph + Граф зависимостей - Graphviz failed - + Graphviz failed + Ошибка GraphViz - Graphviz failed to create an image file - + Graphviz failed to create an image file + GraphViz не удалось создать файл образа - - + + Workbench - &File - &Файл + &File + &Файл - &Edit - &Правка + &Edit + &Правка - Standard views - Стандартные виды + Standard views + Стандартные виды - &Stereo - &Стерео + &Stereo + &Стерео - &Zoom - Масштаб + &Zoom + Масштаб - Visibility - Видимость + Visibility + Видимость - &View - &Вид + &View + &Вид - &Tools - Инструменты + &Tools + Инструменты - &Macro - Макро + &Macro + Макро - &Windows - Окна + &Windows + Окна - &On-line help - Помощь онлайн + &On-line help + Справка в Сети - &Help - &Справка + &Help + &Справка - File - Файл + File + Файл - Macro - Макро + Macro + Макрос - View - Вид + View + Вид - Special Ops - Специальные операции + Special Ops + Специальные операции - - + + testClass - test - тест + test + тест - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - Choose the style of the Task Panel - Выберите стиль панели задач + Choose the style of the Task Panel + Выберите стиль панели задач - Default - По умолчанию + Default + По умолчанию - Windows XP - Windows XP + Windows XP + Windows XP - + diff --git a/src/Gui/Language/FreeCAD_se.ts b/src/Gui/Language/FreeCAD_se.ts deleted file mode 100644 index 424413e1e..000000000 --- a/src/Gui/Language/FreeCAD_se.ts +++ /dev/null @@ -1,5913 +0,0 @@ - - - - - Angle - - Form - Form - - - A: - A: - - - B: - B: - - - C: - C: - - - Angle Snap - Vinkel Snäpp - - - 1 ° - - - - 2 ° - - - - 5 ° - - - - 10 ° - 10° - - - 20 ° - 20° - - - 45 ° - 45° - - - 90 ° - 90° - - - 180 ° - 180° - - - - Gui::AccelLineEdit - - none - inget - - - - Gui::ActionSelector - - Available: - - - - Selected: - - - - Add - Lägg till - - - Remove - Ta bort - - - Move up - Flytta upp - - - Move down - Flytta ned - - - - Gui::AlignmentView - - Movable object - - - - Fixed object - - - - - Gui::BlenderNavigationStyle - - Press left mouse button - Tryck på vänster musknapp - - - Press SHIFT and middle mouse button - Tryck på SKIFT och mellersta musknappen - - - Press middle mouse button - Tryck på mittre musknapp - - - Scroll middle mouse button - Bläddra mittre musknapp - - - - Gui::CADNavigationStyle - - Press left mouse button - Tryck på vänster musknapp - - - Press middle mouse button - Tryck på mittre musknapp - - - Press left and middle mouse button - Tryck på vänster och mittre musknapp - - - Scroll middle mouse button - Bläddra mittre musknapp - - - - Gui::Command - - Standard - Standard - - - - Gui::ContainerDialog - - &OK - &Ok - - - &Cancel - &Avbryt - - - - Gui::ControlSingleton - - Task panel - Uppgiftspanel - - - - Gui::Dialog::AboutApplication - - About - Om - - - Revision number - Revisionsnummer - - - Version - Version - - - OK - OK - - - - - - - Release date - Utgivningsdatum - - - Platform - Plattform - - - License... - Licens ... - - - Copy to clipboard - - - - - Gui::Dialog::ButtonModel - - Button %1 - Knapp %1 - - - Out Of Range - Utanför område - - - - Gui::Dialog::CommandModel - - Commands - Kommandon - - - - Gui::Dialog::DemoMode - - View Turntable - Visa vridbord - - - Speed - Hastighet - - - Maximum - Maximum - - - Minimum - Minimum - - - Fullscreen - Fullskärm - - - Enable timer - Aktivera timer - - - s - s - - - Angle - Vinkel - - - 90° - 90° - - - -90° - -90° - - - Play - Spela upp - - - Stop - Stopp - - - Close - Stäng - - - - Gui::Dialog::DlgActivateWindow - - Choose Window - Välj fönster - - - &Activate - &Aktivera - - - Alt+A - Alt+A - - - &Cancel - &Avbryt - - - - - - - - Gui::Dialog::DlgActivateWindowImp - - Windows - Fönster - - - - Gui::Dialog::DlgAuthorization - - Authorization - Auktorisering - - - &OK - &Ok - - - &Cancel - &Avbryt - - - Password: - Lösenord: - - - User name: - Användarnamn: - - - - - - - - Gui::Dialog::DlgChooseIcon - - Choose Icon - Välj ikon - - - OK - OK - - - Cancel - Avbryt - - - Add icons... - Lägg till ikoner ... - - - - Gui::Dialog::DlgCustomActions - - Macros - Makron - - - Setup Custom Macros - Inställningar för anpassade makron - - - Macro: - Makro: - - - ... - ... - - - Pixmap - Pixelkarta - - - Accelerator: - Snabbtangent: - - - What's this: - Förklaring: - - - Status text: - Statustext: - - - Tool tip: - Verktygstips: - - - Menu text: - Menytext: - - - Add - Lägg till - - - Remove - Ta bort - - - Replace - Ersätt - - - - Gui::Dialog::DlgCustomActionsImp - - Icons - Ikoner - - - Macros - Makron - - - No macro - Inget makro - - - No macros found. - Inga makron funna. - - - Macro not found - Makro ej funnet - - - Sorry, couldn't find macro file '%1'. - Ledsen, kunde inte hitta makrofil '%1'. - - - Empty macro - Tomt makro - - - Please specify the macro first. - Specificera makrot först. - - - Empty text - Tom text - - - Please specify the menu text first. - Specificera menytexten först. - - - No item selected - Ingen sak vald - - - Please select a macro item first. - Välj ett makro först. - - - - Gui::Dialog::DlgCustomCommands - - Commands - Kommandon - - - - - - - - Gui::Dialog::DlgCustomCommandsImp - - Category - Kategori - - - Icon - Ikon - - - Command - Kommando - - - - Gui::Dialog::DlgCustomKeyboard - - Keyboard - Tangentbord - - - Description: - Beskrivning: - - - &Category: - &Kategori: - - - C&ommands: - K&ommandon: - - - Current shortcut: - Nuvarande genväg: - - - Press &new shortcut: - Tryck på &ny genväg: - - - Currently assigned to: - För närvarande tilldelat till: - - - &Assign - &Tilldela - - - Alt+A - Alt+A - - - &Reset - &Återställ - - - Alt+R - Alt+R - - - Re&set All - Åte&rställ allt - - - Alt+S - Alt+S - - - - - - - - Gui::Dialog::DlgCustomKeyboardImp - - Icon - Ikon - - - Command - Kommando - - - none - inget - - - Multiple defined shortcut - multipel definierad genväg - - - The shortcut '%1' is defined more than once. This could result into unexpected behaviour. - Genvägen '%1' är definierad mer än en gång. Detta kan leda till oväntat beteende. - - - Already defined shortcut - Genvägen är redan definierad - - - The shortcut '%1' is already assigned to '%2'. - -Please define another shortcut. - Genvägen '%1' är redan tilldelad '%2'. - -Definiera en annan genväg. - - - - Gui::Dialog::DlgCustomToolBoxbarsImp - - Toolbox bars - Verktygslådor - - - - Gui::Dialog::DlgCustomToolbars - - Toolbars - Verktygslådor - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> Ändringarna blir aktiva nästa gång du laddar passande arbetsbänk</p></body></html> - - - Move right - Flytta till höger - - - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Flytta den valda saken en nivå ned.</b><p>Detta kommer även att ändra nivån på sakens förälder.</p> - - - Move left - Flytta till vänster - - - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Flytta den valda saken en nivå upp.</b><p>Detta kommer även att ändra nivån på sakens förälder.</p> - - - Move down - Flytta ned - - - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Flytta ned den valda saken.</b><p>Saken kommer att flyttas inom hierarki nivån.</p> - - - Move up - Flytta upp - - - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Flytta upp den valda saken.</b><p>Saken kommer att flyttas inom hierarki nivån.</p> - - - New... - Ny... - - - Rename... - Döp om... - - - Delete - Radera - - - Icon - Ikon - - - Command - Kommando - - - <Separator> - <Separator> - - - New toolbar - Ny verktygsrad - - - Toolbar name: - Namn på verktygsraden: - - - Duplicated name - Duplicerat namn - - - The toolbar name '%1' is already used - Verktygsradens namn '%1' används redan - - - Rename toolbar - Döp om verktygsraden - - - - - - - - Gui::Dialog::DlgCustomizeImp - - Customize - Anpassa - - - &Help - &Hjälp - - - &Close - &Stäng - - - - Gui::Dialog::DlgCustomizeSpaceball - - Spaceball - Spaceball - - - No Spaceball Present - Ingen spaceball finns - - - Buttons - Knappar - - - Clear - Rensa - - - Print Reference - Utskriftsreferens - - - - Gui::Dialog::DlgDisplayProperties - - Display properties - Fönsteregenskaper - - - Display - Fönster - - - Transparency: - Transparens: - - - Line width: - Linjebredd: - - - Point size: - Punktstorlek: - - - Material - Material - - - ... - ... - - - Close - Stäng - - - Viewing mode - Visningsläge - - - Display mode: - Visningsläge: - - - Plot mode: - Plottningsläge: - - - - - - - Line transparency: - Linjegenomskinlighet: - - - Line color: - linjefärg: - - - Shape color: - Form färg: - - - Color plot: - Färgplottning: - - - Document window: - - - - - Gui::Dialog::DlgEditorSettings - - Editor - Redigerare - - - Options - Alternativ - - - Enable line numbers - Aktivera radnummer - - - Enable folding - Aktivera vikning - - - Indentation - Indrag - - - Insert spaces - Sätt in mellanslag - - - Tab size: - Tabulatorstorlek: - - - Indent size: - Storlek på indrag: - - - Keep tabs - Behåll tabulatorer - - - Display Items - Visa saker - - - Family: - Familj: - - - Size: - Storlek: - - - Preview: - Förhandsgranskning: - - - - - - - - Gui::Dialog::DlgGeneral - - General - Allmänt - - - Start up - Uppstart - - - Enable splash screen at start up - Aktivera splashfönster vid uppstart - - - Switch to tab of report window: - Växla till rapportfönstrets tabb: - - - Auto load module after start up: - Autoladda modul efter uppstart: - - - Language - Språk - - - Change language: - Ändra språk: - - - Main window - Huvudfönster - - - Size of recent file list - Storlek på listan för senast öppnade filer - - - Window style: - Fönsterstil: - - - Size of toolbar icons: - Storlek på verktygsfältsikonerna: - - - - Gui::Dialog::DlgGeneralImp - - Default (%1 x %1) - Standard (%1 x %1) - - - Small (%1 x %1) - Liten (%1 x %1) - - - Large (%1 x %1) - Stor (%1 x %1) - - - Extra large (%1 x %1) - Extra stor (%1 x %1) - - - - Gui::Dialog::DlgInputDialog - - Input - Inmatning - - - OK - OK - - - Cancel - Avbryt - - - - - - - - Gui::Dialog::DlgInspector - - Scene Inspector - Sceninspektör - - - - Gui::Dialog::DlgMacroExecute - - Execute macro - Utför makro - - - Macro name: - Makronamn: - - - Macro destination: - Makro destination: - - - Execute - Utför - - - Close - Stäng - - - Create - Skapa - - - Delete - Radera - - - Edit - Redigera - - - - Gui::Dialog::DlgMacroExecuteImp - - Macros - Makron - - - Macro file - Makro fil - - - Enter a file name, please: - Skriv in ett filnamn: - - - Existing file - Filen finns - - - '%1'. -This file already exists. - '%1'. -Denna fil finns redan. - - - Delete macro - Radera makro - - - Do you really want to delete the macro '%1'? - Vill du verkligen radera makrot '%1'? - - - Cannot create file - Kan inte skapa fil - - - Creation of file '%1' failed. - Skapandet av filen %1' misslyckades. - - - - Gui::Dialog::DlgMacroRecord - - Macro recording - Makroinspelning - - - Macro name: - Makronamn: - - - Stop - Stopp - - - Cancel - Avbryt - - - Macro path: - sökväg för makro: - - - ... - ... - - - Record - Spela in - - - - Gui::Dialog::DlgMacroRecordImp - - Macro recorder - Makroinspelare - - - Specify first a place to save. - Specificera först en plats att spara på. - - - Existing macro - Makrot finns - - - The macro '%1' already exists. Do you want to overwrite? - Makrot '%1' finns redan. Vill du skriva över den? - - - The macro directory doesn't exist. Please, choose another one. - Makrokatalogen finns inte. Var snäll och välj en annan. - - - Choose macro directory - Välj makro katalog - - - - Gui::Dialog::DlgMaterialProperties - - Material properties - Materialegenskaper - - - &Close - &Stäng - - - Alt+C - Alt+C - - - Material - Material - - - Diffuse color: - Diffuseringsfärg: - - - Specular color: - Speglingsfärg: - - - Shininess: - Blänkvärde: - - - % - % - - - Ambient color: - Omgivningsfärg: - - - - - - - Emissive color: - Emissiv färg: - - - - Gui::Dialog::DlgOnlineHelp - - On-line help - On-line hjälp - - - Help viewer - Hjälpvisare - - - Location of start page - Startsidans adress - - - - Gui::Dialog::DlgOnlineHelpImp - - HTML files (*.html *.htm) - HTML filer (*.html *.htm) - - - Access denied - Åtkomst nekad - - - Access denied to '%1' - -Specify another directory, please. - Åtkomst nekad till '%1' - -Ange en annan katalog. - - - - Gui::Dialog::DlgParameter - - Parameter Editor - Parameter redigerare - - - Save to disk - Spara till disk - - - Alt+C - Alt+C - - - &Close - &Stäng - - - - Gui::Dialog::DlgParameterImp - - Group - Grupp - - - Name - Namn - - - Type - Typ - - - Value - Värde - - - User parameter - Användarparameter - - - Invalid input - Ogiltig inmatning - - - Invalid key name '%1' - Ogiltigt nyckelnamn '%1' - - - System parameter - Systemparameter - - - - Gui::Dialog::DlgPreferences - - Preferences - Inställningar - - - &Help - &Hjälp - - - Alt+H - Alt+H - - - &OK - &Ok - - - &Apply - &Verkställ - - - Alt+A - Alt+A - - - &Cancel - &Avbryt - - - - - - - - Gui::Dialog::DlgPreferencesImp - - Wrong parameter - Fel parameter - - - - Gui::Dialog::DlgProjectInformation - - Project information - Projektinformation - - - Information - Information - - - &Name: - &Namn: - - - Commen&t: - Kommen&tar: - - - Path: - Sökväg: - - - &Last modified by: - S&ist ändrad av: - - - Created &by: - &Skapad av: - - - Com&pany: - &Företag: - - - Last &modification date: - Sista ändringsdatu&m: - - - Creation &date: - Skapad &datum: - - - &OK - &Ok - - - &Cancel - &Avbryt - - - - - - - - Gui::Dialog::DlgProjectUtility - - Project utility - Projekt verktyg - - - Extract project - Extrahera projekt - - - Source - Källa - - - Project file (*.fcstd) - Projektfil (*. fcstd) - - - Destination - Destination - - - Extract - Extrahera - - - Create project - Skapa projekt - - - Document.xml - Dokument.xml - - - Create - Skapa - - - Load project file after creation - Ladda projektfil efter skapelsen - - - Empty source - Tom källa - - - No source is defined. - Ingen källa är definierad. - - - Empty destination - Tom destination - - - No destination is defined. - Ingen destination är definierad. - - - - Gui::Dialog::DlgReportView - - Output window - Utmatningsfönster - - - Output - Utmatning - - - Record log messages - spela in logg meddelanden - - - Record warnings - Spela in varningar - - - Record error messages - Spela in felmeddelanden - - - Colors - Färger - - - Normal messages: - Normala meddelanden: - - - Log messages: - Loggmeddelanden: - - - Warnings: - Varningar: - - - Errors: - Fel: - - - - - - - Redirect internal Python errors to report view - Omdirigera interna Pythonfel till rapportvy - - - Redirect internal Python output to report view - Dirigera om intern Pythonutmatning till rapportvyn - - - - Gui::Dialog::DlgRunExternal - - Running external program - Kör externt program - - - TextLabel - TextLabel - - - Advanced >> - Avancerat >> - - - ... - ... - - - Accept changes - Acceptera förändringar - - - Discard changes - Förkasta ändringar - - - Abort program - Avbryt programmet - - - Help - Hjälp - - - Select a file - Välj en fil - - - - Gui::Dialog::DlgSettings3DView - - 3D View - 3D Vy - - - 3D View settings - Inställningar för 3D Vy - - - Show coordinate system in the corner - Visa koordinatsystemet i hörnet - - - Show counter of frames per second - Visa räknaren för bilder per sekund - - - Enable animation - Aktivera animering - - - Enable anti-aliasing (slower) - Aktivera antialiasing (långsammare) - - - Eye to eye distance for stereo modes: - Ögonavstånd för stereolägen: - - - Camera type - Kameratyp - - - Orthographic rendering - Ortografisk rendering - - - Perspective rendering - Perspektivrendering - - - - - - - 3D Navigation - 3D Navigering - - - Mouse... - Mus... - - - Intensity of backlight - Intensiteten i bakgrundsbelysningen - - - Enable backlight color - Aktivera bakgrundsbelysningsfärg - - - Orbit style - Orbit stil - - - Turntable - Skivtallrik - - - Trackball - Trackball - - - Invert zoom - Invertera zoom - - - Zoom at cursor - - - - Zoom step - - - - - Gui::Dialog::DlgSettings3DViewImp - - %1 navigation - %1 navigering - - - - Gui::Dialog::DlgSettingsColorGradient - - Color model - Färgmodell - - - &Gradient: - &Gradient: - - - red-yellow-green-cyan-blue - röd-gul-grön-cyan-blå - - - blue-cyan-green-yellow-red - blå-cyan-grön-gul-röd - - - white-black - vit-svart - - - black-white - svart-vit - - - Visibility - Synlighet - - - Out g&rayed - Ut g&rå - - - Alt+R - Alt+R - - - Out &invisible - Ut osynl&ig - - - Alt+I - Alt+I - - - Style - Stil - - - &Zero - &Noll - - - Alt+Z - Alt+Z - - - &Flow - &Flöde - - - Alt+F - Alt+F - - - &OK - &Ok - - - &Cancel - &Avbryt - - - Parameter range - Parameterområde - - - Mi&nimum: - Mi&nimum: - - - Ma&ximum: - Ma&ximum: - - - &Labels: - &Etiketter: - - - &Decimals: - &Decimaler: - - - - - - - Color-gradient settings - Färggradient inställningar - - - - Gui::Dialog::DlgSettingsColorGradientImp - - Wrong parameter - Fel parameter - - - The maximum value must be higher than the minimum value. - Maximumvärdet måste vara större än minimumvärdet. - - - - Gui::Dialog::DlgSettingsDocument - - Document - Dokument - - - General - Allmänt - - - Document save compression level -(0 = none, 9 = highest, 3 = default) - Komprimeringsgrad när dokument sparas -(0 = ingen, 9 = högst, 3 = standard) - - - Create new document at start up - Skapa nytt dokument vid uppstart - - - Storage - Lagring - - - Saving transactions (Auto-save) - Spara transaktionerna (autospara) - - - Discard saved transaction after saving document - Förstör sparad transaktion efter att ha sparat dokumentet - - - Save thumbnail into project file when saving document - Spara minibild i projektfilen när dokumentet sparas - - - Create up to backup files when resaving document - Skapa upp till säkerhetskopior när dokumentet omsparas - - - Document objects - Dokumentobjekt - - - Allow duplicate object labels in one document - Tillåt duplicerade objektetiketter i ett dokument - - - Maximum Undo/Redo steps - Maximalt Ångra / Gör om steg - - - Using Undo/Redo on documents - Använder Ångra / Gör om på dokument - - - - Gui::Dialog::DlgSettingsEditorImp - - Text - Text - - - Bookmark - Bokmärke - - - Breakpoint - Brytpunkt - - - Keyword - Nyckelord - - - Comment - Kommentar - - - Block comment - Blockkommentar - - - Number - Nummer - - - String - Sträng - - - Character - Tecken - - - Class name - Klassnamn - - - Define name - Definiera namn - - - Operator - Operator - - - Python output - Python utmatning - - - Python error - Python fel - - - Items - Saker - - - Current line highlight - - - - - Gui::Dialog::DlgSettingsImage - - Image settings - Bildinställningar - - - Image properties - Bildegenskaper - - - Back&ground: - Bak&grund: - - - Current - Nuvarande - - - White - Vit - - - Black - Svart - - - Transparent - Transparent - - - Image dimensions - Bildstorlek - - - Pixel - Pixel - - - &Width: - &Bredd: - - - Current screen - Nuvarande fönster - - - Icon 32 x 32 - Ikon 32 x 32 - - - Icon 64 x 64 - Ikon 64 x 64 - - - Icon 128 x 128 - Ikon 128 .x. 128 - - - CGA 320 x 200 - CGA 320 x 200 - - - QVGA 320 x 240 - QVGA 320 x 240 - - - VGA 640 x 480 - VGA 640 x 480 - - - NTSC 720 x 480 - NTSC 720 x 480 - - - PAL 768 x 578 - PAL 768 x 578 - - - SVGA 800 x 600 - SVGA 800 x 600 - - - XGA 1024 x 768 - XGA 1024 x 768 - - - HD720 1280 x 720 - HD720 1280 x 720 - - - SXGA 1280 x 1024 - SXGA 1280 x 1024 - - - SXGA+ 1400 x 1050 - SXGA+ 1400 x 1050 - - - UXGA 1600 x 1200 - UXGA 1600 x 1200 - - - HD1080 1920 x 1080 - HD1080 1920 x 1080 - - - WUXGA 1920 x 1200 - WUXGA 1920 x 1200 - - - QXGA 2048 x 1538 - QXGA 2048 x 1538 - - - WQXGA 2560 x 1600 - WQXGA 2560 x 1600 - - - QSXGA 2560 x 2048 - QSXGA 2560 x 2048 - - - QUXGA 3200 × 2400 - QUXGA 3200 × 2400 - - - HUXGA 6400 × 4800 - HUXGA 6400 × 4800 - - - !!! 10000 x 10000 - !!! 10000 x 10000 - - - Standard sizes: - Standardstorlekar: - - - &Height: - &Höjd: - - - Aspect ratio: - Bildförhållande: - - - &Screen - &Skärm - - - Alt+S - Alt+S - - - &4:3 - &4:3 - - - Alt+4 - Alt+4 - - - 1&6:9 - 1&6:9 - - - Alt+6 - Alt+6 - - - &1:1 - &1:1 - - - Alt+1 - Alt+1 - - - Image comment - Bildkommentar - - - Insert MIBA - Sätt in MIBA - - - Insert comment - Sätt in kommentar - - - - Gui::Dialog::DlgSettingsMacro - - Macro - Makro - - - Macro recording settings - Inställningar för makroinspelning - - - Logging Commands - Loggkommandon - - - Show script commands in python console - Visa skriptkommandon i python konsolen - - - Log all commands issued by menus to file: - Logga alla kommandon startade av menyer till fil: - - - FullScript.FCScript - FullScript.FCScript - - - Gui commands - Gui kommandon - - - Recording GUI commands - Spelar in GUI kommandon - - - Record as comment - Spela in som kommentar - - - Macro path - sökväg för makro - - - General macro settings - - - - Run macros in local environment - - - - - Gui::Dialog::DlgSettingsUnits - - Units - Enheter - - - Units settings - Inställningar för enheter - - - Standard (mm/kg/s/degree) - Standard (mm/kg/s/grad) - - - MKS (m/kg/s/degree) - MKS (m/kg/s/grad) - - - Magnitude - Magnitud - - - Unit - Enhet - - - User system: - Användarsystem: - - - Imperial (in/lb) - Brittiska mått (in/lb) - - - - Gui::Dialog::DlgSettingsViewColor - - Colors - Färger - - - Selection - Markering - - - Enable selection highlighting - Aktivera valmarkering - - - Enable preselection highlighting - Aktivera förvalsmarkering - - - Background color - Bakgrundsfärg - - - Middle color - Mellanfärg - - - Color gradient - Färggradient - - - Simple color - Enkel färg - - - Default colors - Standard färger - - - Edited edge color - Redigerad kantfärg - - - Edited vertex color - Redigerad hörnfärg - - - Construction geometry - Konstruktionsgeometri - - - Fully constrained geometry - Helt begränsad geometri - - - The color of construction geometry in editmode - Färgen på konstruktionsgeometri i redigeringsläge - - - The color of fully constrained geometry in editmode - Färgen på fullt begränsad geometri i redigeringsläge - - - The color of vertices being edited - Färgen på hörn som redigeras - - - The color of edges being edited - Färgen på kanter som redigeras - - - The color of construction geometry in edit mode - - - - The color of fully constrained geometry in edit mode - - - - Cursor text color - - - - Default shape color - - - - The default color for new shapes - - - - Default line width and color - - - - The default line color for new shapes - - - - The default line thickness for new shapes - - - - px - - - - - Gui::Dialog::DlgTipOfTheDay - - Tip of the day - Dagens tips - - - <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> - <b><font face="Times New Roman"><font size="+3">Visste du...</font></font></b> - - - &Show tips at start up - Vi&sa tips vid uppstart - - - Alt+S - Alt+S - - - &Next Tip - &Nästa tips - - - Alt+N - Alt+N - - - &Close - &Stäng - - - Alt+C - Alt+C - - - - - - - - Gui::Dialog::DlgTipOfTheDayImp - - Download failed: %1 - - Nedladdning misslyckades:%1 - - - - If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. - Om du vill läradig mer om FreeCAD så måste du gå till %1 eller klicka på Hjälp i Hjälp-menyn. - - - - Gui::Dialog::DockablePlacement - - Placement - Placering - - - - Gui::Dialog::DownloadDialog - - Canceled. - Avbruten - - - Download - - - - Cancel - Avbryt - - - Close - Stäng - - - There already exists a file called %1 in the current directory. Overwrite? - - - - Unable to save the file %1: %2. - - - - Downloading %1. - - - - Download canceled. - - - - Download failed: %1. - Nedladdning misslyckades: %1. - - - Downloaded %1 to current directory. - - - - - Gui::Dialog::IconDialog - - Add icon - Lägg till ikon - - - - Gui::Dialog::InputVector - - Input vector - Inmatningsvektor - - - Vector - Vektor - - - Z: - Z: - - - Y: - Y: - - - X: - X: - - - OK - OK - - - - Gui::Dialog::LicenseDialog - - Copyright - - - - - Gui::Dialog::MouseButtons - - Mouse buttons - Musknappar - - - Configuration - Konfiguration - - - Selection: - Markering: - - - Panning - Panorering - - - Rotation: - Rotation: - - - Zooming: - Zoomning: - - - - Gui::Dialog::ParameterGroup - - Expand - Expandera - - - Add sub-group - Lägg till undergrupp - - - Remove group - Ta bort grupp - - - Rename group - Döp om grupp - - - Export parameter - Exportera parameter - - - Import parameter - Importera parameter - - - Collapse - Minimera - - - Do really want to remove this parameter group? - Vill du verkligen to bort denna parametergrupp? - - - Existing sub-group - Existerande undergrupp - - - The sub-group '%1' already exists. - Undergruppen '%1' finns redan. - - - Export parameter to file - exportera parameter till fil - - - XML (*.FCParam) - XML(*.FCParam) - - - Import parameter from file - Importera parameter från fil - - - Import Error - Importfel - - - Reading from '%1' failed. - Läsning från '%1' misslyckades. - - - - Gui::Dialog::ParameterValue - - Change value - Ändra värde - - - Remove key - Ta bort nyckel - - - Rename key - Döp om nyckel - - - New - Ny - - - New string item - Ny sträng - - - New float item - Nytt flyttal - - - New integer item - Nytt heltal - - - New unsigned item - Nytt osignerat tal - - - New Boolean item - Nytt booleskt värde - - - Existing item - Existerar - - - The item '%1' already exists. - Saken '%1' finns redan. - - - - Gui::Dialog::Placement - - Placement - Placering - - - OK - OK - - - Translation: - Förflyttning: - - - Z: - Z: - - - Y: - Y: - - - X: - X: - - - Rotation: - Rotation: - - - Angle: - Vinkel: - - - Axis: - Axel: - - - Center: - Centrum: - - - Pitch: - Lutning: - - - Roll: - Rullning: - - - Yaw: - Girning: - - - Rotation axis with angle - Rotation axis with angle - - - Euler angles - Eulervinklar - - - Apply placement changes immediately - Applicera placeringsförändringar omedelbart - - - Apply incremental changes to object placement - applicera stegvisa förändringar på objektplacering - - - Apply - Verkställ - - - Reset - Återställ - - - Close - Stäng - - - - Gui::Dialog::PrintModel - - Button - Knapp - - - Command - Kommando - - - - Gui::Dialog::SceneInspector - - Dialog - Dialog - - - Close - Stäng - - - Refresh - Uppdatera - - - - Gui::Dialog::SceneModel - - Inventor Tree - Inventor träd - - - Nodes - Noder - - - - Gui::Dialog::TextureMapping - - Texture - Struktur - - - Texture mapping - strukturmappning - - - Global - Global - - - Environment - Miljö - - - Image files (%1) - Bildfiler (%1) - - - No image - Ingen bild - - - The specified file is not a valid image file. - Den angivna filen är inte en giltig bildfil. - - - No 3d view - Ingen 3d vy - - - No active 3d view found. - Ingen aktiv 3D-vy hittades. - - - - Gui::Dialog::Transform - - Cancel - Avbryt - - - Transform - Omvandla - - - - Gui::DlgTreeWidget - - Dialog - Dialog - - - Items - Saker - - - OK - OK - - - Cancel - Avbryt - - - - - - - - Gui::DockWnd::CombiView - - CombiView - Kombivy - - - Project - Projekt - - - Tasks - Uppgifter - - - - Gui::DockWnd::HelpView - - Previous - Föregående - - - Next - Nästa - - - Home - Hem - - - Open - Öppna - - - Open file - Öppna fil - - - All HTML files (*.html *.htm) - Alla HTML filer (*.html *.htm) - - - External browser - Extern webbläsare - - - No external browser found. Specify in preferences, please - Någon extern webbläsare hittades inte. Specificera en i inställningarna - - - Starting of %1 failed - Start av %1 misslyckades - - - - Gui::DockWnd::PropertyDockView - - Property View - Egenskapsvy - - - - Gui::DockWnd::ReportOutput - - Logging - Loggning - - - Warning - Varning - - - Error - Fel - - - Options - Alternativ - - - Clear - Rensa - - - Save As... - Spara som... - - - Save Report Output - Spara rapport utmatning - - - Plain Text Files (*.txt *.log) - Rena textfiler (*.txt *.log) - - - Go to end - Gå till slutet - - - Redirect Python output - Dirigera om Pythonutmatning - - - Redirect Python errors - Omdirigera Python fel - - - - Gui::DockWnd::ReportView - - Output - Utmatning - - - Python console - Python konsoll - - - - Gui::DockWnd::SelectionView - - Property View - Egenskapsvy - - - - Gui::DockWnd::TaskPanelView - - Task View - Uppgiftsvy - - - - Gui::DockWnd::TextBrowser - - Could not open file. - Kunde inte öppna fil. - - - You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. - Du försökte öppna adress %1, som för tillfället är otillgänglig. Försäkra dig om att URL:en finns och försök att ladda om sidan. - - - Connecting to %1 - Ansluter till %1 - - - Sending to %1 - Sänder till %1 - - - Reading from %1 - Läser från %1 - - - Download failed: %1. - Nedladdning misslyckades: %1. - - - Previous - Föregående - - - Forward - Framåt - - - Home - Hem - - - Refresh - Uppdatera - - - Copy - Kopiera - - - Select all - Markera allt - - - No description for - Ingen beskrivning för - - - - Gui::DocumentModel - - Application - Applikation - - - Labels & Attributes - Etiketter & attribut - - - - Gui::EditorView - - Modified file - Ändrad fil - - - %1. - -This has been modified outside of the source editor. Do you want to reload it? - %1. - -Denna har ändrats utanför källredigeraren. Vill du ladda om den? - - - Unsaved document - Osparat dokument - - - The document has been modified. -Do you want to save your changes? - Dokumentet har ändrats. -Vill du spara ändringarna? - - - FreeCAD macro (*.FCMacro);;Python (*.py) - FreeCAD makro (*.FCMacro);;Python (*.py) - - - Export PDF - Exportera PDF - - - PDF file (*.pdf) - PDF fil (*.pdf) - - - untitled[*] - utan namn[*] - - - - Editor - - Redigerare - - - %1 chars removed - %1 tecken borttagna - - - %1 chars added - %1 tecken tillagda - - - Formatted - Formatterad - - - - Gui::FileChooser - - Select a file - Välj en fil - - - Select a directory - Välj en katalog - - - - Gui::FileDialog - - Save as - Spara som - - - Open - Öppna - - - - Gui::FileOptionsDialog - - Extended - Utökad - - - All files (*.*) - Alla filer (*.*) - - - - Gui::Flag - - Top left - Topp vänster - - - Bottom left - Botten vänster - - - Top right - Topp höger - - - Bottom right - Botten höger - - - Remove - Ta bort - - - - Gui::InventorNavigationStyle - - Press CTRL and left mouse button - Tryck CTRL och vänster musknapp - - - Press middle mouse button - Tryck på mittre musknapp - - - Press left mouse button - Tryck på vänster musknapp - - - Scroll middle mouse button - Bläddra mittre musknapp - - - - Gui::LocationDialog - - Wrong direction - Fel riktning - - - Direction must not be the null vector - Riktningen får inte vara noll vektorn - - - X - X - - - Y - Y - - - Z - Z - - - User defined... - Användardefinierad... - - - - Gui::LocationWidget - - X: - X: - - - Y: - Y: - - - Z: - Z: - - - Direction: - - - - - Gui::MacroCommand - - Macros - Makron - - - - Gui::MainWindow - - Dimension - Dimension - - - Ready - Klar - - - Toggles this toolbar - Växlar denna verktygsrad - - - Toggles this dockable window - Växlar detta dockningsbara fönster - - - Close All - Stäng alla - - - - Gui::ManualAlignment - - Manual alignment - - - - The alignment is already in progress. - - - - Alignment[*] - - - - Please, select at least one point in the left and the right view - - - - Please, select at least %1 points in the left and the right view - - - - Please pick points in the left and right view - - - - The alignment has finished - - - - The alignment has been canceled - - - - Too few points picked in the left view. At least %1 points are needed. - - - - Too few points picked in the right view. At least %1 points are needed. - - - - Different number of points picked in left and right view. -On the left view %1 points are picked, -on the right view %2 points are picked. - - - - Try to align group of views - - - - The alignment failed. -How do you want to proceed? - - - - Retry - - - - Ignore - - - - Abort - - - - Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - - - - Point picked at (%1,%2,%3) - - - - No point was picked - - - - - Gui::NetworkRetriever - - Download started... - - Nedladdning startad... - - - - Gui::ProgressBar - - Remaining: %1 - Kvarvarande: %1 - - - Aborting - Avbryter - - - Do you really want to abort the operation? - Vill du verkligen avbryta operationen? - - - - Gui::ProgressDialog - - Remaining: %1 - Kvarvarande: %1 - - - Aborting - Avbryter - - - Do you really want to abort the operation? - Vill du verkligen avbryta operationen? - - - - Gui::PropertyEditor::PropertyModel - - Property - Egenskap - - - Value - Värde - - - - Gui::PropertyView - - View - Vy - - - Data - Data - - - - Gui::PythonConsole - - System exit - Avsluta systemet - - - The application is still running. -Do you want to exit without saving your data? - Applikationen körs fortfarande. -Vill du avsluta utan att spara din data? - - - Python console - Python konsoll - - - Unhandled PyCXX exception. - Ohanterat PyCXX undantag. - - - Unhandled FreeCAD exception. - Ohanterat FreeCAD undantag. - - - Unhandled unknown C++ exception. - Ohanterat okänt C++ undantag. - - - &Copy command - &Kopiera kommando - - - &Copy history - &Kopieringshistorik - - - Save history as... - Spara historik som... - - - Insert file name... - Mata in filnamn... - - - Save History - Spara historik - - - Macro Files (*.FCMacro *.py) - Makrofiler (*.FCMacro *.py) - - - Insert file name - Mata in filnamn - - - All Files (*.*) - Alla filer (*.*) - - - Python Input Dialog - Python inmatningsdialog - - - Unhandled std C++ exception. - Std C++ undantag utan hantering. - - - Word wrap - Radbrytning - - - &Copy - K&opiera - - - &Paste - Klistra &in - - - Select All - Markera allt - - - Clear console - - - - - Gui::PythonEditor - - Comment - Kommentar - - - Uncomment - Bortkommentera - - - - Gui::PythonInputField - - OK - OK - - - Clear - Rensa - - - - Gui::RecentFilesAction - - Open file %1 - Öppna fil %1 - - - File not found - Fil ej funnen - - - The file '%1' cannot be opened. - Filen '%1' kan inte öppnas. - - - - Gui::SelectModule - - Select module - Välj modul - - - Open %1 as - Öppna %1 som - - - Select - Markera - - - - Gui::StdCmdDescription - - Help - Hjälp - - - Des&cription - Bes&krivning - - - Long description of commands - Lång beskriving av kommandon - - - - Gui::StdCmdDownloadOnlineHelp - - Help - Hjälp - - - Download online help - Ladda ned online hjälp - - - Download %1's online help - Ladda ned online hjälp för %1 - - - Non-existing directory - Katalogen existerar inte - - - The directory '%1' does not exist. - -Do you want to specify an existing directory? - Katalogen '%1' existerar inte. - -Vill du ange en existerande katalog? - - - Missing permission - Behörighet saknas - - - You don't have write permission to '%1' - -Do you want to specify another directory? - Du har inte behörighet att skriva till '%1' - -Vill du ange en annan katalog? - - - Stop downloading - Stoppa nedladdning - - - - Gui::StdCmdPythonHelp - - Tools - Verktyg - - - Python Modules - Python moduler - - - Opens a browser to show the Python modules - Öppnar en webbläsare för att visa Python modulerna - - - - Gui::TaskBoxAngle - - Angle - Vinkel - - - - Gui::TaskBoxPosition - - Position - Position - - - - Gui::TaskView::TaskAppearance - - Display mode: - Visningsläge: - - - Plot mode: - Plottningsläge: - - - Point size: - Punktstorlek: - - - Line width: - Linjebredd: - - - Transparency: - Transparens: - - - Appearance - Utseende - - - Document window: - - - - - Gui::TaskView::TaskEditControl - - Edit - Redigera - - - - Gui::TaskView::TaskSelectLinkProperty - - Appearance - Utseende - - - ... - ... - - - edit selection - redigera val - - - - Gui::TouchpadNavigationStyle - - Press left mouse button - Tryck på vänster musknapp - - - Press SHIFT button - - - - Press ALT button - - - - Press PgUp/PgDown button - - - - - Gui::Translator - - English - Engelska - - - - Gui::TreeDockWidget - - Tree view - Trädvy - - - - Gui::TreeWidget - - Create group... - Skapa grupp... - - - Create a group - Skapa en grupp - - - Group - Grupp - - - Rename - Döp om - - - Rename object - Döp om objekt - - - Labels & Attributes - Etiketter & attribut - - - Application - Applikation - - - Finish editing - Slutför redigering - - - Finish editing object - Slutför redigering av objekt - - - Activate document - Aktivera dokument - - - Activate document %1 - Aktivera dokument %1 - - - - Gui::View3DInventor - - Export PDF - Exportera PDF - - - PDF file (*.pdf) - PDF fil (*.pdf) - - - - Gui::WorkbenchGroup - - Select the '%1' workbench - Välj arbetsbänken '%1' - - - - Position - - Form - Form - - - X: - X: - - - Y: - Y: - - - Z: - Z: - - - 0.1 mm - 0,1 mm - - - 0.5 mm - 0,5 mm - - - 1 mm - 1 mm - - - 2 mm - 2 mm - - - 5 mm - 5 mm - - - 10 mm - 10 mm - - - 20 mm - 20 mm - - - 50 mm - 50 mm - - - 100 mm - 100 mm - - - 200 mm - 200 mm - - - 500 mm - 500 mm - - - 1 m - 1 m - - - 2 m - 2 m - - - 5 m - 5 m - - - Grid Snap in - Snäpp i rutnät på - - - - QDockWidget - - Tree view - Trädvy - - - Property view - Egenskapsvy - - - Selection view - Markeringsvy - - - Report view - Rapportvy - - - Task View - Uppgiftsvy - - - Combo View - Kombinerad vy - - - Toolbox - Verktygslåda - - - Python console - Python konsoll - - - Display properties - Fönsteregenskaper - - - - QObject - - General - Allmänt - - - Display - Fönster - - - Unknown filetype - Okänd filtyp - - - Cannot open unknown filetype: %1 - Kan inte öppna okänd filtyp: %1 - - - Cannot save to unknown filetype: %1 - Kan inte spara till okänd filtyp: %1 - - - Workbench failure - Fel på arbetsbänk - - - %1 - %1 - - - Unable to launch Qt Assistant (%1) - Kan inte starta Qt assistent (%1) - - - Exception - Undantag - - - Open document - Öppna dokument - - - Import file - importera fil - - - Export file - Exportera fil - - - Printing... - Skriver ut... - - - Cannot load workbench - Kan inte ladda arbetsbänk - - - A general error occurred while loading the workbench - Ett allmänt fel uppstod medan arbetsbänken laddades - - - File not found - Fil ej funnen - - - Cannot open file %1 - Kan inte öppna fil %1 - - - Save views... - Spara vyer... - - - Load views... - Ladda vyer... - - - Freeze view - Frys vy - - - Clear views - Rensa vyer - - - Restore view &%1 - Återställ vy &%1 - - - Save frozen views - Spara frusna vyer - - - Frozen views (*.cam) - Frusna vyer (*.cam) - - - Restore views - Återställ vyer - - - Importing the restored views would clear the already stored views. -Do you want to continue? - Att importera de återställda vyerna kommer att förstöra de vyer som sparats. -vill du fortsätta? - - - Restore frozen views - Återställ frusna vyer - - - Cannot open file '%1'. - Kan inte öppna fil '%1'. - - - Docked - Dockad - - - Undocked - Odockad - - - Fullscreen - Fullskärm - - - files - Filer - - - Save picture - Spara bild - - - New sub-group - Ny undergrupp - - - Enter the name: - Skriv in namnet: - - - New text item - Ny text - - - Enter your text: - Mata in din text: - - - New integer item - Nytt heltal - - - Enter your number: - Mata in ditt nummer: - - - New unsigned item - Nytt osignerat tal - - - New float item - Nytt flyttal - - - New Boolean item - Nytt booleskt värde - - - Choose an item: - Välj en sak: - - - Rename group - Döp om grupp - - - The group '%1' cannot be renamed. - Gruppen '%1' kan inte döpas om. - - - Existing group - Gruppen existerar redan - - - The group '%1' already exists. - Gruppen '%1' existerar redan. - - - Change value - Ändra värde - - - Save document under new filename... - Spara dokumentet med ett nytt filnamn... - - - Saving aborted - Sparning avbruten - - - Unsaved document - Osparat dokument - - - Save document before close? - Spara dokument innan stängning? - - - Save Macro - Spara Makro - - - Finish - Gör klart - - - Clear - Rensa - - - Cancel - Avbryt - - - Inner - Inre - - - Outer - Yttre - - - No Browser - Ingen webbläsare - - - Unable to open your browser. - -Please open a browser window and type in: http://localhost:%1. - Kan inte öppna din webbläsare. - -Öppna ett fönster i en webbläsare och skriv in : hppt://localhost:%1. - - - No Server - Ingen server - - - Unable to start the server to port %1: %2. - Kan inte starta server till port %1: %2. - - - Unable to open your system browser. - Kan inte öppna din systemwebbläsare. - - - Options... - Alternativ... - - - Out of memory - Slut på minne - - - Not enough memory available to display the data. - Det finns inte tillräckligt med minne för att visa datan. - - - Cannot find file %1 - Kan inte finna fil %1 - - - Cannot find file %1 neither in %2 nor in %3 - Kan inte finna fil %1, varken i %2 eller i %3 - - - Save %1 Document - Spara %1 dokument - - - %1 document (*.FCStd) - %1 dokument (*.FCStd) - - - Save As - Spara som - - - %1 already exists. -Do you want to replace it? - %1 finns redan. -Vill du ersätta den? - - - Document not closable - Dokumentet kan ej stängas - - - The document is not closable for the moment. - Dokumentet kan inte stängas för tillfället. - - - No OpenGL - Inga OpenGL - - - This system does not support OpenGL - Detta system har inte stöd för OpenGL - - - Help - Hjälp - - - Unable to load documentation. -In order to load it Qt 4.4 or higher is required. - Det gick inte att ladda dokumentationen. -För att läsa in den så krävs Qt 4.4 eller högre. - - - %1 Help - %1 Hjälp - - - Exporting PDF... - Exporterar PDF ... - - - Wrong selection - Fel val - - - Only one object selected. Please select two objects. -Be aware the point where you click matters. - Endast ett objekt markerat. Välj två objekt. -Tänk på det har betydelse var du klickar. - - - Please select two objects. -Be aware the point where you click matters. - Välj två objekt. -Tänk på att det har betydelse var du klickar. - - - New boolean item - Nytt booleskt objekt - - - Navigation styles - Navigationsstilar - - - %1 navigation - %1 navigering - - - Move annotation - Flytta annotering - - - Transform - Omvandla - - - The document is in editing mode and thus cannot be closed for the moment. -You either have to finish or cancel the editing in the task panel. - Dokumentet är i redigeringsläge och kan därför inte stängas för tillfället. Du måste antingen avsluta eller avbryta redigeringen i uppgiftspanelen. - - - - StdBoxSelection - - Standard-View - Standardvy - - - Box selection - - - - - StdCmdAbout - - Help - Hjälp - - - &About %1 - O&m %1 - - - About %1 - Om %1 - - - - StdCmdAboutQt - - Help - Hjälp - - - About &Qt - Om &Qt - - - About Qt - Om Qt - - - - StdCmdActivateNextWindow - - Window - Fönster - - - Ne&xt - &Nästa - - - Activate next window - Aktivera nästa fönster - - - - StdCmdActivatePrevWindow - - Window - Fönster - - - Pre&vious - &Föregående - - - Activate previous window - Aktivera föregående fönster - - - - StdCmdAlignment - - Edit - Redigera - - - Alignment... - - - - Align the selected objects - - - - - StdCmdArrangeIcons - - Window - Fönster - - - Arrange &Icons - Arrangera &Ikoner - - - Arrange Icons - Arrangera Ikoner - - - - StdCmdAxisCross - - Standard-View - Standardvy - - - Toggle axis cross - Växla axelkors - - - - StdCmdCascadeWindows - - Window - Fönster - - - &Cascade - &Överlappande - - - Tile pragmatic - Överlappa pragmatiskt - - - - StdCmdCloseActiveWindow - - Window - Fönster - - - Cl&ose - S&täng - - - Close active window - Stäng aktivt fönster - - - - StdCmdCloseAllWindows - - Window - Fönster - - - Close Al&l - Stäng a&llt - - - Close all windows - Stäng alla fönster - - - - StdCmdCommandLine - - Tools - Verktyg - - - Start command &line... - Starta kommando&rad... - - - Opens the command line in the console - Öppnar kommandoraden i konsollen - - - - StdCmdCopy - - Edit - Redigera - - - C&opy - K&opiera - - - Copy operation - Kopiera operation - - - - StdCmdCut - - Edit - Redigera - - - &Cut - &Klipp ut - - - Cut out - Klipp ut - - - - StdCmdDDuplicateSelection - - Edit - Redigera - - - Duplicate selection - Dubblerad markering - - - Put duplicates of the selected objects to the active document - Lägg kopior av de markerade objekten till det aktiva dokumentet - - - - StdCmdDelete - - Edit - Redigera - - - &Delete - Ra&dera - - - Deletes the selected objects - Raderar de valda objekten - - - - StdCmdDemoMode - - Standard-View - Standardvy - - - View turntable... - Visa vridbord... - - - View turntable - Visa vridbord - - - - StdCmdDlgCustomize - - Tools - Verktyg - - - Cu&stomize... - Anpa&ssa... - - - Customize toolbars and command bars - Anpassa verktygs- och kommandorader - - - - StdCmdDlgMacroExecute - - Macros ... - Makron... - - - Opens a dialog to let you execute a recorded macro - Öppnar en dialog som låter dig utföra ett inspelat makro - - - Macro - Makro - - - - StdCmdDlgMacroExecuteDirect - - Macro - Makro - - - Execute macro - Utför makro - - - Execute the macro in the editor - Kör makrot i redigeraren - - - - StdCmdDlgMacroRecord - - &Macro recording ... - &Makroinspelning... - - - Opens a dialog to record a macro - Öppnar en dialog för att spela in ett makro - - - Macro - Makro - - - - StdCmdDlgParameter - - Tools - Verktyg - - - E&dit parameters ... - Re&digera parametrar... - - - Opens a Dialog to edit the parameters - Öppnar en dialog för att redigera parametrarna - - - - StdCmdDlgPreferences - - Tools - Verktyg - - - &Preferences ... - Alt&ernativ... - - - Opens a Dialog to edit the preferences - Öppnar en dialogför att redigera alternativen - - - - StdCmdDockViewMenu - - View - Vy - - - Vie&ws - &Vyer - - - Toggles this window - Växlar detta fönster - - - - StdCmdDrawStyle - - Standard-View - Standardvy - - - Draw style - Draw style - - - - StdCmdDuplicateSelection - - Edit - Redigera - - - Duplicate selection - Dubblerad markering - - - Put duplicates of the selected objects to the active document - Lägg kopior av de markerade objekten till det aktiva dokumentet - - - - StdCmdEdit - - Edit - Redigera - - - Toggle &Edit mode - - - - Toggles the selected object's edit mode - - - - Enters or leaves the selected object's edit mode - - - - - StdCmdExport - - File - Fil - - - &Export... - &Exportera... - - - Export an object in the active document - Exportera ett objekt i det aktiva dokumentet - - - Supported formats - Stödda format - - - No selection - - - - Please select first the objects you want to export. - - - - - StdCmdExportGraphviz - - Tools - Verktyg - - - Dependency graph... - - - - Show the dependency graph of the objects in the active document - - - - - StdCmdFeatRecompute - - File - Fil - - - &Recompute - Be&räkna om - - - Recompute feature or document - Omberäkna föremål eller dokument - - - - StdCmdFreeCADWebsite - - Help - Hjälp - - - FreeCAD Website - FreeCAD webbplats - - - The FreeCAD website - FreeCAD's webbplats - - - - StdCmdFreezeViews - - Standard-View - Standardvy - - - Freeze display - Frys skärmen - - - Freezes the current view position - Fryser den nuvarande vypositionen - - - - StdCmdHideObjects - - Standard-View - Standardvy - - - Hide all objects - Dölj alla objekt - - - Hide all objects in the document - Dölj alla objekt i dokumentet - - - - StdCmdHideSelection - - Standard-View - Standardvy - - - Hide selection - Dölj markering - - - Hide all selected objects - Dölj alla markerade objekt - - - - StdCmdImport - - File - Fil - - - &Import... - &Importera... - - - Import a file in the active document - Importera en fil i det aktiva dokumentet - - - Supported formats - Stödda format - - - All files (*.*) - Alla filer (*.*) - - - - StdCmdMacroStartDebug - - Macro - Makro - - - Debug macro - Felsök makro - - - Start debugging of macro - Starta felsökning av makro - - - - StdCmdMacroStepOver - - Macro - Makro - - - Step over - Stega förbi - - - - StdCmdMacroStopDebug - - Macro - Makro - - - Stop debugging - Stoppa felsökning - - - Stop debugging of macro - Stoppa felsökning av makro - - - - StdCmdMacroStopRecord - - Macro - Makro - - - S&top macro recording - S&toppa makroinspelning - - - Stop the macro recording session - Stoppa makroinspelningssessionen - - - - StdCmdMeasureDistance - - View - Vy - - - Measure distance - Mät avstånd - - - - StdCmdMeasurementSimple - - Tools - Verktyg - - - Mesure distance - Mät avstånd - - - Measures distance between two selected objects - Mäter avståndet mellan två valda objekt - - - Measure distance - Mät avstånd - - - - StdCmdMergeProjects - - File - Fil - - - Merge project... - Sammanfoga projekt ... - - - Merge project - Sammanfoga projekt - - - %1 document (*.fcstd) - %1 dokument (*.fcstd) - - - Cannot merge project with itself. - Kan inte slå samman projektet med sig själv. - - - - StdCmdNew - - File - Fil - - - &New - &Ny - - - Create a new empty document - Skapa ett nytt tomt dokument - - - - StdCmdOnlineHelp - - Help - Hjälp - - - Show help to the application - Visa hjälp för applikationen - - - - StdCmdOnlineHelpPython - - Help - Hjälp - - - Python Manuals - Python manualer - - - Show the Python documentation - Visa Python dokumentationen - - - - StdCmdOnlineHelpWebsite - - Help - Hjälp - - - Help Website - Hjälpwebbplats - - - The website where the help is maintained - Den webbplats där hjälp erhålls - - - - StdCmdOpen - - File - Fil - - - &Open... - &Öppna... - - - Open a document or import files - Öppna ett dokument eller importera filer - - - Supported formats - Stödda format - - - All files (*.*) - Alla filer (*.*) - - - - StdCmdPaste - - Edit - Redigera - - - &Paste - Klistra &in - - - Paste operation - Klistra in operation - - - - StdCmdPlacement - - Edit - Redigera - - - Placement... - Placering... - - - Place the selected objects - Placera de markerade objekten - - - - StdCmdPrint - - File - Fil - - - &Print... - S&kriv ut... - - - Print the document - Skriv ut dokumentet - - - - StdCmdPrintPdf - - File - Fil - - - &Export PDF... - Exportera &PDF... - - - Export the document as PDF - Exportera dokumentet som PDF - - - - StdCmdPrintPreview - - File - Fil - - - &Print preview... - &Förhandsgranska ... - - - Print the document - Skriv ut dokumentet - - - Print preview - Förhandsgranska - - - - StdCmdProjectInfo - - File - Fil - - - Project i&nformation... - Projekti&nformation... - - - Show details of the currently active project - Visar detaljer om det aktiva projektet - - - - StdCmdProjectUtil - - Tools - Verktyg - - - Project utility... - Projekt verktyg... - - - Utility to extract or create project files - Verktyg för att extrahera eller skapa projektfiler - - - - StdCmdPythonWebsite - - Help - Hjälp - - - Python Website - Python webbplats - - - The official Python website - Den officiella Python webbplatsen - - - - StdCmdQuit - - File - Fil - - - E&xit - A&vsluta - - - Quits the application - Avslutar applikationen - - - - StdCmdRandomColor - - File - Fil - - - Random color - Slumpmässig färg - - - - StdCmdRecentFiles - - File - Fil - - - Recent files - Nyligen öppnade filer - - - Recent file list - Lista över nyligen öppnade filer - - - - StdCmdRedo - - Edit - Redigera - - - &Redo - Gö&r om - - - Redoes a previously undone action - Gör om en tidigare ångrad aktion - - - - StdCmdRefresh - - Edit - Redigera - - - &Refresh - &Uppdatera - - - Recomputes the current active document - Beräknar om det aktiva dokumentet - - - - StdCmdSave - - File - Fil - - - &Save - &Spara - - - Save the active document - Spara det aktiva dokumentet - - - - StdCmdSaveAs - - File - Fil - - - Save &As... - Spara s&om... - - - Save the active document under a new file name - Sparar det aktiva dokumentet med ett nytt filnamn - - - - StdCmdSceneInspector - - Tools - Verktyg - - - Scene inspector... - Sceninspektör... - - - Scene inspector - Sceninspektör - - - - StdCmdSelectAll - - Edit - Redigera - - - Select &All - Markera &allt - - - Select all - Markera allt - - - - StdCmdSetAppearance - - Standard-View - Standardvy - - - Appearance... - Utseende... - - - Sets the display properties of the selected object - Ställer in det markerade objektets visningsegenskaper - - - - StdCmdShowObjects - - Standard-View - Standardvy - - - Show all objects - Visa alla objekt - - - Show all objects in the document - Visa alla objekt i dokumentet - - - - StdCmdShowSelection - - Standard-View - Standardvy - - - Show selection - Visa markering - - - Show all selected objects - Visa alla markerade objekt - - - - StdCmdStatusBar - - View - Vy - - - Status bar - statusfält - - - Toggles the status bar - Växlar statusfältet - - - - StdCmdTextureMapping - - Tools - Verktyg - - - Texture mapping... - strukturmappning... - - - Texture mapping - strukturmappning - - - - StdCmdTileWindows - - Window - Fönster - - - &Tile - &Överlappa - - - Tile the windows - Överlappa fönstren - - - - StdCmdToggleBreakpoint - - Macro - Makro - - - Toggle breakpoint - Växla brytpunkt - - - - StdCmdToggleClipPlane - - Standard-View - Standardvy - - - Clipping plane - Klippningsplan - - - Toggles clipping plane for active view - Växlar klippningsplan för den aktiva vyn - - - - StdCmdToggleNavigation - - Standard-View - Standardvy - - - Toggle navigation/Edit mode - Växla navigations/redigeringsläge - - - Toggle between navigation and edit mode - Växla mellan navigering och redigeringsläge - - - - StdCmdToggleObjects - - Standard-View - Standardvy - - - Toggle all objects - Växla alla objekt - - - Toggles visibility of all objects in the active document - Växlar alla objektens synlighet i det aktiva dokumentet - - - - StdCmdToggleSelectability - - Standard-View - Standardvy - - - Toggle selectability - Växla Valbarhet - - - Toggles the property of the objects to get selected in the 3D-View - Växlar objektens egenskaper för att bli markerade i 3D-vyn - - - - StdCmdToggleVisibility - - Standard-View - Standardvy - - - Toggle visibility - Växla synlighet - - - Toggles visibility - Växlar synligheten - - - - StdCmdToolBarMenu - - View - Vy - - - Tool&bars - &Verktygslådor - - - Toggles this window - Växlar detta fönster - - - - StdCmdTransform - - Edit - Redigera - - - Transform... - Omvandla... - - - Transform the geometry of selected objects - Omvandla geometrin för markerade objekt - - - - StdCmdTreeSelection - - View - Vy - - - Go to selection - Gå till markering - - - Scroll to first selected item - Rulla till den först valda saken - - - - StdCmdUndo - - Edit - Redigera - - - &Undo - Ån&gra - - - Undo exactly one action - Ångra exakt en aktion - - - - StdCmdUserInterface - - View - Vy - - - Dock views - Docka vyer - - - Dock all top-level views - Docka alla toppnivå vyer - - - - StdCmdViewAxo - - Standard-View - Standardvy - - - Axometric - Axonometrisk - - - Set to axometric view - Ställ in till axonometrisk vy - - - - StdCmdViewBottom - - Standard-View - Standardvy - - - Bottom - Botten - - - Set to bottom view - Ställ in till bottenvy - - - - StdCmdViewCreate - - Standard-View - Standardvy - - - Create new view - Skapa ny vy - - - Creates a new view window for the active document - Skapar ett nytt visningsfönster för det aktiva dokumentet - - - - StdCmdViewExample1 - - Standard-View - Standardvy - - - Inventor example #1 - Inventor exempel #1 - - - Shows a 3D texture with manipulator - Visar en 3D struktur med manipulator - - - - StdCmdViewExample2 - - Standard-View - Standardvy - - - Inventor example #2 - Inventor exempel #2 - - - Shows spheres and drag-lights - Visar sfärer och släpljus - - - - StdCmdViewExample3 - - Standard-View - Standardvy - - - Inventor example #3 - Inventor exempel #3 - - - Shows a animated texture - Visar en animerad struktur - - - - StdCmdViewFitAll - - Standard-View - Standardvy - - - Fit all - Passa allt - - - Fits the whole content on the screen - Anpassar så allt får plats på skärmen - - - - StdCmdViewFitSelection - - Standard-View - Standardvy - - - Fit selection - Passa markering - - - Fits the selected content on the screen - Anpassar det markerade innehållet på skärmen - - - - StdCmdViewFront - - Standard-View - Standardvy - - - Front - Front - - - Set to front view - Ställ in till frontvy - - - - StdCmdViewIvIssueCamPos - - Standard-View - Standardvy - - - Issue camera position - Tilldela kameraposition - - - Issue the camera position to the console and to a macro, to easily recall this position - Tilldela kamerapositionen till konsolen och till ett makro, för att lätt återkalla denna position - - - - StdCmdViewIvStereoInterleavedColumns - - Standard-View - Standardvy - - - Stereo Interleaved Columns - Stereo interfolierade kolumner - - - Switch stereo viewing to Interleaved Columns - Växla stereovisning till interfolierade kolumner - - - - StdCmdViewIvStereoInterleavedRows - - Standard-View - Standardvy - - - Stereo Interleaved Rows - Stereo interfolierade rader - - - Switch stereo viewing to Interleaved Rows - Växla stereovisning till interfolierade rader - - - - StdCmdViewIvStereoOff - - Standard-View - Standardvy - - - Stereo Off - Stereo av - - - Switch stereo viewing off - Stänger av stereovisning - - - - StdCmdViewIvStereoQuadBuff - - Standard-View - Standardvy - - - Stereo quad buffer - Stereo quad buffer - - - Switch stereo viewing to quad buffer - Växla stereovisning till quad buffer - - - - StdCmdViewIvStereoRedGreen - - Standard-View - Standardvy - - - Stereo red/green - Stereo röd/grön - - - Switch stereo viewing to red/green - Ändra stereovisning till röd/grön - - - - StdCmdViewLeft - - Standard-View - Standardvy - - - Left - Vänster - - - Set to left view - Ställ in till vänstervy - - - - StdCmdViewRear - - Standard-View - Standardvy - - - Rear - Bak - - - Set to rear view - Ställ in till bakvy - - - - StdCmdViewRight - - Standard-View - Standardvy - - - Right - Höger - - - Set to right view - Ställ in till högervy - - - - StdCmdViewRotateLeft - - Standard-View - Standardvy - - - Rotate Left - - - - Rotate the view by 90° counter-clockwise - - - - - StdCmdViewRotateRight - - Standard-View - Standardvy - - - Rotate Right - - - - Rotate the view by 90° clockwise - - - - - StdCmdViewTop - - Standard-View - Standardvy - - - Top - Topp - - - Set to top view - Ställ in till toppvy - - - - StdCmdWhatsThis - - Help - Hjälp - - - &What's This? - &Förklaring? - - - What's This - Förklaring - - - - StdCmdWindows - - Window - Fönster - - - &Windows... - &Fönster... - - - Windows list - Fönsterlista - - - - StdCmdWindowsMenu - - Window - Fönster - - - Activates this window - Aktiverar detta fönster - - - - StdCmdWorkbench - - View - Vy - - - Workbench - Arbetsbänk - - - Switch between workbenches - Växla mellan arbetsbänkar - - - - StdOrthographicCamera - - Standard-View - Standardvy - - - Orthographic view - Ortografisk vy - - - Switches to orthographic view mode - Växlar till ortografiskt visningsläge - - - - StdPerspectiveCamera - - Standard-View - Standardvy - - - Perspective view - Perspektiv vy - - - Switches to perspective view mode - Växlar till perspektivt visningsläge - - - - StdViewBoxZoom - - Standard-View - Standardvy - - - Box zoom - Låd zoom - - - - StdViewDockUndockFullscreen - - Standard-View - Standardvy - - - Document window - Dokumentfönstret - - - Display the active view either in fullscreen, in undocked or docked mode - Visa den aktiva vyn i fullskärm, i odockat eller i dockat läge - - - - StdViewScreenShot - - Standard-View - Standardvy - - - Save picture... - Spara bild... - - - Creates a screenshot of the active view - Ta en skärmbild på den aktiva vyn - - - - StdViewZoomIn - - Standard-View - Standardvy - - - Zoom In - Zooma in - - - - StdViewZoomOut - - Standard-View - Standardvy - - - Zoom Out - Zooma ut - - - - Std_DrawStyle - - As is - As is - - - Normal mode - Normal mode - - - Wireframe - Wireframe - - - Wireframe mode - Wireframe mode - - - - Std_ExportGraphviz - - Graphviz not found - - - - Graphviz couldn't be found on your system. -Do you want to specify its installation path if it's already installed? - - - - Graphviz installation path - - - - Dependency graph - - - - Graphviz failed - - - - Graphviz failed to create an image file - - - - - Workbench - - &File - &Arkiv - - - &Edit - R&edigera - - - Standard views - Standardvyer - - - &Stereo - &Stereo - - - &Zoom - &Zoom - - - Visibility - Synlighet - - - &View - &Visa - - - &Tools - &Verktyg - - - &Macro - &Makro - - - &Windows - &Fönster - - - &On-line help - &Online hjälp - - - &Help - &Hjälp - - - File - Fil - - - Macro - Makro - - - View - Vy - - - Special Ops - Special operationer - - - - testClass - - test - Test - - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Skapad för Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - - - Choose the style of the Task Panel - Välj stil på uppgiftspanelen - - - Default - Standard - - - Windows XP - Windows XP - - - diff --git a/src/Gui/Language/FreeCAD_sk.qm b/src/Gui/Language/FreeCAD_sk.qm new file mode 100644 index 000000000..cb2c02bb4 Binary files /dev/null and b/src/Gui/Language/FreeCAD_sk.qm differ diff --git a/src/Gui/Language/FreeCAD_sk.ts b/src/Gui/Language/FreeCAD_sk.ts new file mode 100644 index 000000000..cfd5044c9 --- /dev/null +++ b/src/Gui/Language/FreeCAD_sk.ts @@ -0,0 +1,5844 @@ + + + + + Angle + + Form + Forma + + + A: + A: + + + B: + B: + + + C: + C: + + + Angle Snap + Zistiť uhol + + + 1 ° + + + + 2 ° + + + + 5 ° + + + + 10 ° + 10° + + + 20 ° + 20° + + + 45 ° + 45° + + + 90 ° + 90° + + + 180 ° + 180° + + + + Gui::AccelLineEdit + + none + nič + + + + Gui::ActionSelector + + Available: + Available: + + + Selected: + Selected: + + + Add + Pridať + + + Remove + Odstrániť + + + Move up + Posunúť hore + + + Move down + Posunúť dole + + + + Gui::AlignmentView + + Movable object + Movable object + + + Fixed object + Fixed object + + + + Gui::BlenderNavigationStyle + + Press left mouse button + Stlačte ľavé tlačidlo myši + + + Press SHIFT and middle mouse button + Stlačte Shift a stredné tlačidlo myši + + + Press middle mouse button + Stlačte stredné tlačidlo myši + + + Scroll middle mouse button + Otočte koliečkom myši + + + + Gui::CADNavigationStyle + + Press left mouse button + Stlačte ľavé tlačidlo myši + + + Press middle mouse button + Stlačte stredné tlačidlo myši + + + Press left and middle mouse button + Stlačte ľavé a stredné tlačidlo myši + + + Scroll middle mouse button + Otočte koliečkom myši + + + + Gui::Command + + Standard + Štandard + + + + Gui::ContainerDialog + + &OK + &OK + + + &Cancel + Zrušiť + + + + Gui::ControlSingleton + + Task panel + Panel úloh + + + + Gui::Dialog::AboutApplication + + About + O aplikácií + + + Revision number + Číslo revízie + + + Version + Verzia + + + OK + OK + + + + + + + Release date + Dátum vydania + + + Platform + Platforma + + + License... + Licencia... + + + Copy to clipboard + Copy to clipboard + + + + Gui::Dialog::ButtonModel + + Button %1 + Tlačidlo %1 + + + Out Of Range + Mimo rozsahu + + + + Gui::Dialog::CommandModel + + Commands + Príkazy + + + + Gui::Dialog::DemoMode + + View Turntable + Zobraziť točňu + + + Speed + Rýchlosť + + + Maximum + Maximum + + + Minimum + Minimum + + + Fullscreen + Celá obrazovka + + + Enable timer + Povoliť časovač + + + s + s + + + Angle + Uhol + + + 90° + 90° + + + -90° + -90° + + + Play + Spustiť + + + Stop + Stop + + + Close + Zavrieť + + + + Gui::Dialog::DlgActivateWindow + + Choose Window + Vyberte okno + + + &Activate + &Aktivovať + + + Alt+A + Alt + A + + + &Cancel + Zrušiť + + + + + + + + Gui::Dialog::DlgActivateWindowImp + + Windows + Okná + + + + Gui::Dialog::DlgAuthorization + + Authorization + Autorizácia + + + &OK + &OK + + + &Cancel + Zrušiť + + + Password: + Heslo: + + + User name: + Užívateľské meno: + + + + + + + + Gui::Dialog::DlgChooseIcon + + Choose Icon + Vyberte ikonu + + + OK + OK + + + Cancel + Zrušiť + + + Add icons... + Pridať ikony... + + + + Gui::Dialog::DlgCustomActions + + Macros + Makrá + + + Setup Custom Macros + Nastaviť vlastné Makrá + + + Macro: + Makro: + + + ... + ... + + + Pixmap + Raster pixelov + + + Accelerator: + Urýchľovač: + + + What's this: + Čo je toto: + + + Status text: + Text stavového riadka: + + + Tool tip: + Nápoveda: + + + Menu text: + Text ponuky: + + + Add + Pridať + + + Remove + Odstrániť + + + Replace + Nahradiť + + + + Gui::Dialog::DlgCustomActionsImp + + Icons + Ikony + + + Macros + Makrá + + + No macro + Žiadne makro + + + No macros found. + Žiadne makrá sa nenašli. + + + Macro not found + Makro sa nenašlo + + + Sorry, couldn't find macro file '%1'. + Ľutujeme, ale nenašiel sa súbor makra '%1'. + + + Empty macro + Prázdne makro + + + Please specify the macro first. + Najskôr určite makro. + + + Empty text + Prázdny text + + + Please specify the menu text first. + Najskôr určite text menu. + + + No item selected + Žiadna vybratá položka + + + Please select a macro item first. + Najskôr vyberte položku makra. + + + + Gui::Dialog::DlgCustomCommands + + Commands + Príkazy + + + + + + + + Gui::Dialog::DlgCustomCommandsImp + + Category + Kategória + + + Icon + Ikona + + + Command + Príkaz + + + + Gui::Dialog::DlgCustomKeyboard + + Keyboard + Klávesnica + + + Description: + Popis: + + + &Category: + Kategória: + + + C&ommands: + Príkazy: + + + Current shortcut: + Aktuálny zástupca: + + + Press &new shortcut: + Zvoľte &nového zástupcu: + + + Currently assigned to: + Aktuálne priradené k: + + + &Assign + Prir&adiť + + + Alt+A + Alt + A + + + &Reset + Obnoviť + + + Alt+R + Alt+R + + + Re&set All + Obnoviť všetko + + + Alt+S + ALT+S + + + + + + + + Gui::Dialog::DlgCustomKeyboardImp + + Icon + Ikona + + + Command + Príkaz + + + none + nič + + + Multiple defined shortcut + Viacnásobná definícia zástupcu + + + The shortcut '%1' is defined more than once. This could result into unexpected behaviour. + Zástupca '%1' je definovaný viac krát. Môže to spôsobiť neočakávané správanie. + + + Already defined shortcut + Zástupca je už definovaný + + + The shortcut '%1' is already assigned to '%2'. + +Please define another shortcut. + Zástupca '%1' je už priradený k '%2'. + +Definujte iného zástupcu, prosím. + + + + Gui::Dialog::DlgCustomToolBoxbarsImp + + Toolbox bars + Lišty panelov nástrojov + + + + Gui::Dialog::DlgCustomToolbars + + Toolbars + Panely nástrojov + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Pozn.:</span> Zmeny budú aktívne po reštarte príslušného pracovného prostredia</p></body></html> + + + Move right + Posun vpravo + + + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Posunúť vybratú položku o úroveň dole.</b><p>To taktiež zmení úroveň rodičovskej položky.</p> + + + Move left + Posunúť vľavo + + + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Posunúť vybratú položku o úroveň hore.</b><p>To taktiež zmení úroveň rodičovskej položky.</p> + + + Move down + Posunúť dole + + + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Posunúť vybratú položku dole.</b><p>Položka sa posunie aj v hierarchií.</p> + + + Move up + Posunúť hore + + + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Posunúť vybratú položku hore.</b><p>Položka sa posunie aj v hierarchií.</p> + + + New... + Nový... + + + Rename... + Premenovať... + + + Delete + Odstrániť + + + Icon + Ikona + + + Command + Príkaz + + + <Separator> + <Oddeľovač> + + + New toolbar + Nový panel nástrojov + + + Toolbar name: + Názov panela nástrojov: + + + Duplicated name + Duplicitný názov + + + The toolbar name '%1' is already used + Názov panela nástrojov '%1' sa už používa + + + Rename toolbar + Premenovať panel nástrojov + + + + + + + + Gui::Dialog::DlgCustomizeImp + + Customize + Prispôsobiť + + + &Help + Pomoc + + + &Close + &Zavrieť + + + + Gui::Dialog::DlgCustomizeSpaceball + + Spaceball + Spaceball + + + No Spaceball Present + Spaceball nenájdený + + + Buttons + Tlačidlá + + + Clear + Vyčistiť + + + Print Reference + Tlač odkazu + + + + Gui::Dialog::DlgDisplayProperties + + Display properties + Vlastnosti obrazovky + + + Display + Obrazovka + + + Transparency: + Priesvitnosť: + + + Line width: + Šírka čiary: + + + Point size: + Veľkosť bodu: + + + Material + Materiál + + + ... + ... + + + Close + Zavrieť + + + Viewing mode + Prezerací mód + + + Plot mode: + Kresliaci mód: + + + + + + + Line transparency: + Priesvitnosť čiary: + + + Line color: + Farba čiary: + + + Shape color: + Farba tvaru: + + + Color plot: + Farba kreslenia: + + + Document window: + Document window: + + + + Gui::Dialog::DlgEditorSettings + + Editor + Editor + + + Options + Možnosti + + + Enable line numbers + Povoliť čísla riadkov + + + Enable folding + Povoliť rozkladanie + + + Indentation + Odsadenie + + + Insert spaces + Vložiť medzery + + + Tab size: + Veľkosť karty: + + + Indent size: + Veľkosť zarážky: + + + Keep tabs + Pamätať si karty + + + Display Items + Zobraziť položky + + + Family: + Skupina: + + + Size: + Veľkosť: + + + Preview: + Náhľad: + + + + + + + + Gui::Dialog::DlgGeneral + + General + Všeobecné + + + Start up + Po spustení + + + Enable splash screen at start up + Pri štarte povoliť úvodnú obrazovku + + + Switch to tab of report window: + Prepnúť do záložky okna správ: + + + Auto load module after start up: + Po štarte automaticky nahrať modul: + + + Language + Jazyk + + + Change language: + Zmeniť jazyk: + + + Main window + Hlavné okno + + + Size of recent file list + Veľkosť zoznamu obľúbených: + + + Window style: + Štýl okna: + + + Size of toolbar icons: + Veľkosť ikon panela nástrojov: + + + + Gui::Dialog::DlgGeneralImp + + Default (%1 x %1) + Predvolené (%1 x %1) + + + Small (%1 x %1) + Malé (%1 x %1) + + + Large (%1 x %1) + Veľké (%1 x %1) + + + Extra large (%1 x %1) + Extra veľké (%1 x %1) + + + + Gui::Dialog::DlgInputDialog + + Input + Vstup + + + OK + OK + + + Cancel + Zrušiť + + + + + + + + Gui::Dialog::DlgInspector + + Scene Inspector + Prehliadač scény + + + + Gui::Dialog::DlgMacroExecute + + Execute macro + Spustiť makro + + + Macro name: + Názov makra: + + + Macro destination: + Umiestnenie makra: + + + Execute + Vykonať + + + Close + Zavrieť + + + Create + Vytvoriť + + + Delete + Odstrániť + + + Edit + Upraviť + + + + Gui::Dialog::DlgMacroExecuteImp + + Macros + Makrá + + + Macro file + Súbor makra + + + Enter a file name, please: + Zadajte názov súboru: + + + Existing file + Existujúci súbor + + + '%1'. +This file already exists. + '%1'. +Tento súbor už existuje. + + + Delete macro + Odstrániť makro + + + Do you really want to delete the macro '%1'? + Skutočne chcete odstrániť makro '%1'? + + + Cannot create file + Nemôžem vytvoriť súbor + + + Creation of file '%1' failed. + Vytvorenie súboru '%1' zlyhalo. + + + + Gui::Dialog::DlgMacroRecord + + Macro recording + Zaznamenávanie makra + + + Macro name: + Názov makra: + + + Stop + Stop + + + Cancel + Zrušiť + + + Macro path: + Cesta k makru: + + + ... + ... + + + Record + Záznam + + + + Gui::Dialog::DlgMacroRecordImp + + Macro recorder + Záznam makra + + + Specify first a place to save. + Najskôr určite miesto pre uloženie. + + + Existing macro + Existujúce makrá + + + The macro '%1' already exists. Do you want to overwrite? + Makro '%1' už existuje. Chcete ho prepísať? + + + The macro directory doesn't exist. Please, choose another one. + Adresár pre makro neexistuje. Vyberte prosím iný. + + + Choose macro directory + Vybrať adresár pre makro + + + + Gui::Dialog::DlgMaterialProperties + + Material properties + Vlastnosti materiálu + + + &Close + &Zavrieť + + + Alt+C + Alt+C + + + Material + Materiál + + + Diffuse color: + Difúzna farba: + + + Specular color: + Zrkadlová farba: + + + Shininess: + Lesk: + + + % + % + + + Ambient color: + Farba okolia: + + + + + + + Emissive color: + Emisná farba: + + + + Gui::Dialog::DlgOnlineHelp + + On-line help + On-line nápoveda + + + Help viewer + Prehliadač nápovedy + + + Location of start page + Umiestnenie úvodnej stránky + + + + Gui::Dialog::DlgOnlineHelpImp + + HTML files (*.html *.htm) + HTML súbory(*.html *.htm) + + + Access denied + Prístup odmietnutý + + + Access denied to '%1' + +Specify another directory, please. + Prístup pre '%1' odmietnutý. + +Určite iný adresár. + + + + Gui::Dialog::DlgParameter + + Parameter Editor + Editor Parametra + + + Save to disk + Uložiť na disk + + + Alt+C + Alt+C + + + &Close + &Zavrieť + + + + Gui::Dialog::DlgParameterImp + + Group + Skupina + + + Name + Názov + + + Type + Typ + + + Value + Hodnota + + + User parameter + Užívateľský parameter + + + Invalid input + Neplatný vstup + + + Invalid key name '%1' + Nesprávny názov kľúča '%1' + + + System parameter + Systémový parameter + + + + Gui::Dialog::DlgPreferences + + Preferences + Predvoľby + + + &Help + Pomoc + + + Alt+H + ALT+H + + + &OK + &OK + + + &Apply + Použiť + + + Alt+A + Alt + A + + + &Cancel + Zrušiť + + + + + + + + Gui::Dialog::DlgPreferencesImp + + Wrong parameter + Chybný parameter + + + + Gui::Dialog::DlgProjectInformation + + Project information + Informácie o projekte + + + Information + Informácie + + + &Name: + Me&no: + + + Commen&t: + Komen&tár: + + + Path: + Cesta: + + + &Last modified by: + Napos&ledy zmenené: + + + Created &by: + Autor: + + + Com&pany: + Spoločnosť: + + + Last &modification date: + Dátu&m poslednej zmeny: + + + Creation &date: + &Dátum vytvorenia: + + + &OK + &OK + + + &Cancel + Zrušiť + + + + + + + + Gui::Dialog::DlgProjectUtility + + Project utility + Pomôcky projektu + + + Extract project + Extrahovať projekt + + + Source + Zdroj + + + Project file (*.fcstd) + Súbor projektu(*.fcstd) + + + Destination + Destinácia + + + Extract + Extrahovať + + + Create project + Vytvoriť projekt + + + Document.xml + Dokument.xml + + + Create + Vytvoriť + + + Load project file after creation + Po vytvorení nahrať projekt + + + Empty source + Prázdny zdroj + + + No source is defined. + Zdroj nie je definovaný. + + + Empty destination + Prázdna destinácia + + + No destination is defined. + Nebola určená destinácia. + + + + Gui::Dialog::DlgReportView + + Output window + Okno výstupu + + + Output + Výstup + + + Record log messages + Záznam Log správ + + + Record warnings + Záznam upozornení + + + Record error messages + Záznam chybových hlásení + + + Colors + Farby + + + Normal messages: + Normálne správy: + + + Log messages: + Správy Log: + + + Warnings: + Upozornenia: + + + Errors: + Chyby: + + + + + + + Redirect internal Python errors to report view + Do zobrazenia pre report presmerovať interné chyby Python + + + Redirect internal Python output to report view + Do zobrazenia pre report presmerovať interný výstup Python + + + + Gui::Dialog::DlgRunExternal + + Running external program + Spustenie externého programu + + + TextLabel + Popisok + + + Advanced >> + Rozšírené >> + + + ... + ... + + + Accept changes + Akceptovať zmeny + + + Discard changes + Zahodiť zmeny + + + Abort program + Prerušiť program + + + Help + Pomoc + + + Select a file + Vyberte súbor + + + + Gui::Dialog::DlgSettings3DView + + 3D View + 3D pohľad + + + 3D View settings + Nastavenia 3D pohľadu + + + Show coordinate system in the corner + Koordináty zobrazovať v rohu + + + Show counter of frames per second + Zobrazovať počítadlo (fps) snímky za sekundu + + + Enable animation + Povoliť animáciu + + + Enable anti-aliasing (slower) + Povoliť anti-aliasing (pomalšie) + + + Eye to eye distance for stereo modes: + Pre stereo módy vzdialenosť Eye to Eye: + + + Camera type + Typ kamery + + + Orthographic rendering + Ortografické vykresľovanie + + + Perspective rendering + Perspektívne vykresľovanie + + + + + + + 3D Navigation + 3D navigácia + + + Mouse... + Myš... + + + Intensity of backlight + Intenzita podsvietenia + + + Enable backlight color + Povoliť farbu podsvietenia + + + Orbit style + Štýl Orbit + + + Turntable + Točňa + + + Trackball + Trackball + + + Invert zoom + Invertovať priblíženie + + + Zoom at cursor + Zoom at cursor + + + Zoom step + Zoom step + + + + Gui::Dialog::DlgSettings3DViewImp + + %1 navigation + %1 navigácia + + + + Gui::Dialog::DlgSettingsColorGradient + + Color model + Farebný model + + + &Gradient: + Prechod: + + + red-yellow-green-cyan-blue + červená-žltá-zelená-azúrová-modrá + + + blue-cyan-green-yellow-red + modrá-azúrová-zelená-žltá-červená + + + white-black + biela-čierna + + + black-white + čierna-biela + + + Visibility + Viditeľnosť + + + Out g&rayed + Do šedej + + + Alt+R + Alt+R + + + Out &invisible + Do priesvitna + + + Alt+I + Alt+I + + + Style + Štýl + + + &Zero + Nula + + + Alt+Z + Alt+Z + + + &Flow + Tok + + + Alt+F + Alt+F + + + &OK + &OK + + + &Cancel + Zrušiť + + + Parameter range + Rozsah parametra + + + Mi&nimum: + Mi&nimum: + + + Ma&ximum: + Ma&ximum: + + + &Labels: + Menovky: + + + &Decimals: + Desatinné miesta: + + + + + + + Color-gradient settings + Nastavenia farebného prechodu + + + + Gui::Dialog::DlgSettingsColorGradientImp + + Wrong parameter + Chybný parameter + + + The maximum value must be higher than the minimum value. + Maximálna hodnota musí byť vyššia ako minimálna hodnota. + + + + Gui::Dialog::DlgSettingsDocument + + Document + Dokument + + + General + Všeobecné + + + Document save compression level +(0 = none, 9 = highest, 3 = default) + Úroveň kompresie ukladaného súboru +(0=nie, 9=najvyššia, 3=predvolená) + + + Create new document at start up + Pri štarte vytvoriť nový dokument + + + Storage + Skladovanie + + + Saving transactions (Auto-save) + Ukladanie transakcií (Auto-uloženie) + + + Discard saved transaction after saving document + Po uložení dokumentu zrušiť uložené transakcie + + + Save thumbnail into project file when saving document + Pri ukladaní projektu uložiť aj miniatúry + + + Create up to backup files when resaving document + Vytvoriť zálohu pri opätovnom ukladaní súboru + + + Document objects + Objekty dokumentu + + + Allow duplicate object labels in one document + V dokumente povoliť duplikovať menovky objektu + + + Maximum Undo/Redo steps + Maximálny počet krokov Vrátiť/Napred + + + Using Undo/Redo on documents + Použiť Vrátiť/Nazad v dokumente + + + + Gui::Dialog::DlgSettingsEditorImp + + Text + Text + + + Bookmark + Záložka + + + Breakpoint + Bod zastavenia + + + Keyword + Kľúčové slovo + + + Comment + Komentár + + + Block comment + Blok komentára + + + Number + Číslo + + + String + Reťazec + + + Character + Znak + + + Class name + Názov Triedy + + + Define name + Definovať názov + + + Operator + Prevádzkovateľ + + + Python output + Python výstup + + + Python error + Python chyby + + + Items + Položky + + + Current line highlight + Current line highlight + + + + Gui::Dialog::DlgSettingsImage + + Image settings + Nastavenie obrázka + + + Image properties + Vlastnosti obrázka + + + Back&ground: + Pozadie: + + + Current + Aktuálny + + + White + Biela + + + Black + Čierna + + + Transparent + Priesvitná + + + Image dimensions + Rozmery obrázka + + + Pixel + Pixel + + + &Width: + Šírka: + + + Current screen + Aktuálna obrazovka + + + Icon 32 x 32 + Ikona 32 x 32 + + + Icon 64 x 64 + Ikona 64 x 64 + + + Icon 128 x 128 + Ikona 128 x 128 + + + CGA 320 x 200 + CGA 320 x 200 + + + QVGA 320 x 240 + QVGA 320 x 240 + + + VGA 640 x 480 + VGA 640 x 480 + + + NTSC 720 x 480 + NTSC 720 x 480 + + + PAL 768 x 578 + PAL 768 x 578 + + + SVGA 800 x 600 + SVGA 800 x 600 + + + XGA 1024 x 768 + XGA 1024 x 768 + + + HD720 1280 x 720 + HD720 1280 x 720 + + + SXGA 1280 x 1024 + SXGA 1280 x 1024 + + + SXGA+ 1400 x 1050 + SXGA+ 1400 x 1050 + + + UXGA 1600 x 1200 + UXGA 1600 x 1200 + + + HD1080 1920 x 1080 + HD1080 1920 x 1080 + + + WUXGA 1920 x 1200 + WUXGA 1920 x 1200 + + + QXGA 2048 x 1538 + QXGA 2048 x 1538 + + + WQXGA 2560 x 1600 + WQXGA 2560 x 1600 + + + QSXGA 2560 x 2048 + QSXGA 2560 x 2048 + + + QUXGA 3200 × 2400 + QUXGA 3200 × 2400 + + + HUXGA 6400 × 4800 + HUXGA 6400 × 4800 + + + !!! 10000 x 10000 + !!! 10000 x 10000 + + + Standard sizes: + Štandardné veľkosti: + + + &Height: + Výška: + + + Aspect ratio: + Pomer strán: + + + &Screen + Obrazovka + + + Alt+S + ALT+S + + + &4:3 + &4:3 + + + Alt+4 + ALT+4 + + + 1&6:9 + 1&6:9 + + + Alt+6 + ALT+6 + + + &1:1 + &1:1 + + + Alt+1 + ALT+1 + + + Image comment + Komentár obrázku + + + Insert MIBA + Vložiť MIBA + + + Insert comment + Vložiť komentár + + + + Gui::Dialog::DlgSettingsMacro + + Macro + Makro + + + Macro recording settings + Nastavenia záznamu makra + + + Logging Commands + Záznam príkazov + + + Show script commands in python console + Zobraziť skript príkazov na konzole python + + + Log all commands issued by menus to file: + Všetky príkazy vydané z menu zaznamenaj do Log súboru: + + + FullScript.FCScript + FullScript.FCScript + + + Gui commands + Užívateľské "GUI" príkazy + + + Recording GUI commands + Zaznamenať GUI príkazy + + + Record as comment + Zaznamenať ako komentár + + + Macro path + Cesta k makru + + + General macro settings + General macro settings + + + Run macros in local environment + Run macros in local environment + + + + Gui::Dialog::DlgSettingsUnits + + Units + Jednotky + + + Units settings + Nastavenie jednotiek + + + Standard (mm/kg/s/degree) + Štandard (mm/kg/s/°) + + + MKS (m/kg/s/degree) + MKS (m/kg/s/°) + + + Magnitude + Veľkosť + + + Unit + Jednotka + + + User system: + Užívateľský systém: + + + Imperial (in/lb) + Imperiálne (in/lb) + + + + Gui::Dialog::DlgSettingsViewColor + + Colors + Farby + + + Selection + Výber + + + Enable selection highlighting + Povoliť zvýraznenie výberu + + + Enable preselection highlighting + Povoliť zvýraznenie predvoľby + + + Background color + Farba pozadia + + + Middle color + Stredná farba + + + Color gradient + Farebný prechod + + + Simple color + Jednoduchá farba + + + Default colors + Predvolené farby + + + Edited edge color + Farba editovaného okraja + + + Edited vertex color + Farba editovaného vrcholu + + + Construction geometry + Konštrukčná geometria + + + Fully constrained geometry + Vynútená geometria + + + The color of vertices being edited + Farba vrcholov počas editácie + + + The color of edges being edited + Farba hrany počas editácie + + + The color of construction geometry in edit mode + The color of construction geometry in edit mode + + + The color of fully constrained geometry in edit mode + The color of fully constrained geometry in edit mode + + + Cursor text color + Cursor text color + + + Default shape color + Default shape color + + + The default color for new shapes + The default color for new shapes + + + Default line width and color + Default line width and color + + + The default line color for new shapes + The default line color for new shapes + + + The default line thickness for new shapes + The default line thickness for new shapes + + + px + px + + + + Gui::Dialog::DlgTipOfTheDay + + Tip of the day + Tip dňa + + + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Vedeli ste, že...</font></font></b> + + + &Show tips at start up + Zobraziť tipy pri &spustení + + + Alt+S + ALT+S + + + &Next Tip + Ďalší Tip + + + Alt+N + Alt+N + + + &Close + &Zavrieť + + + Alt+C + Alt+C + + + + + + + + Gui::Dialog::DlgTipOfTheDayImp + + Download failed: %1 + + Sťahovanie zlyhalo: %1 + + + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + Ak sa chcete dozvedieť viac o FreeCAD musíte prejsť na %1 alebo stlačte položku Nápoveda v ponuke Nápoveda. + + + + Gui::Dialog::DockablePlacement + + Placement + Umiestnenie + + + + Gui::Dialog::DownloadDialog + + Download + Download + + + Cancel + Zrušiť + + + Close + Zavrieť + + + There already exists a file called %1 in the current directory. Overwrite? + There already exists a file called %1 in the current directory. Overwrite? + + + Unable to save the file %1: %2. + Unable to save the file %1: %2. + + + Downloading %1. + Downloading %1. + + + Download canceled. + Download canceled. + + + Download failed: %1. + Sťahovanie zlyhalo: %1. + + + Downloaded %1 to current directory. + Downloaded %1 to current directory. + + + + Gui::Dialog::IconDialog + + Add icon + Pridať ikonu + + + + Gui::Dialog::InputVector + + Input vector + Vstupný vektor + + + Vector + Vektor + + + Z: + Z: + + + Y: + Y: + + + X: + X: + + + OK + OK + + + + Gui::Dialog::LicenseDialog + + Copyright + Copyright + + + + Gui::Dialog::MouseButtons + + Mouse buttons + Tlačidlá myši + + + Configuration + Konfigurácia + + + Selection: + Výber: + + + Panning + Panorámovanie + + + Rotation: + Rotácia: + + + Zooming: + Približovanie: + + + + Gui::Dialog::ParameterGroup + + Expand + Rozbaliť + + + Add sub-group + Pridať podskupinu + + + Remove group + Odstrániť skupinu + + + Rename group + Premenovať skupinu + + + Export parameter + Exportovať parameter + + + Import parameter + Importovať parameter + + + Collapse + Zbaliť + + + Do really want to remove this parameter group? + Naozaj chcete odstrániť tento parameter skupiny? + + + Existing sub-group + Existujúca podskupina + + + The sub-group '%1' already exists. + Podskupina '%1' už existuje. + + + Export parameter to file + Exportovať parameter do súboru + + + XML (*.FCParam) + XML (*.FCParam) + + + Import parameter from file + Importovať parameter zo súboru + + + Import Error + Chyba importu + + + Reading from '%1' failed. + Čítanie z '%1' zlyhalo. + + + + Gui::Dialog::ParameterValue + + Change value + Zmeňte hodnotu + + + Remove key + Odstrániť kľúč + + + Rename key + Premenovať kľúč + + + New + Nový + + + New string item + Nová položka reťazca + + + New float item + Nová položka čísla s desatinnými + + + New integer item + Nová celočíselná položka + + + New unsigned item + Nová neoznačená položka + + + New Boolean item + Nová položka Boolean + + + Existing item + Existujúca položka + + + The item '%1' already exists. + Položka '%1' už existuje. + + + + Gui::Dialog::Placement + + Placement + Umiestnenie + + + OK + OK + + + Translation: + Preklad: + + + Z: + Z: + + + Y: + Y: + + + X: + X: + + + Rotation: + Rotácia: + + + Angle: + Uhol: + + + Axis: + Os: + + + Center: + Stred: + + + Pitch: + Rozstup: + + + Roll: + Valec: + + + Yaw: + Odchýlka: + + + Rotation axis with angle + Os otáčania s uhlom + + + Euler angles + Eulerové uhly + + + Apply placement changes immediately + Okamžite použiť zmeny umiestnenia + + + Apply incremental changes to object placement + Použiť postupné číslovanie zmien pri umiestnení objektu + + + Apply + Použiť + + + Reset + Reset + + + Close + Zavrieť + + + + Gui::Dialog::PrintModel + + Button + Tlačidlo + + + Command + Príkaz + + + + Gui::Dialog::SceneInspector + + Dialog + Dialógové okno + + + Close + Zavrieť + + + Refresh + Obnoviť + + + + Gui::Dialog::SceneModel + + Inventor Tree + Strom vynálezu + + + Nodes + Uzly + + + + Gui::Dialog::TextureMapping + + Texture + Textúra + + + Texture mapping + Mapovanie textúry + + + Global + Všeobecné + + + Environment + Prostredie + + + Image files (%1) + Obrazové súbory (%1) + + + No image + Žiadny obrázok + + + The specified file is not a valid image file. + Zadaný súbor nie je platným obrázkom. + + + No 3d view + Nie je 3D zobrazenie + + + No active 3d view found. + Nebolo nájdené aktívne 3D zobrazenie. + + + + Gui::Dialog::Transform + + Cancel + Zrušiť + + + Transform + Transformácia + + + + Gui::DlgTreeWidget + + Dialog + Dialógové okno + + + Items + Položky + + + OK + OK + + + Cancel + Zrušiť + + + + + + + + Gui::DockWnd::CombiView + + CombiView + Kombinovaný pohľad + + + Project + Projekt + + + Tasks + Úlohy + + + + Gui::DockWnd::HelpView + + Previous + Predchádzajúce + + + Next + Ďalšie + + + Home + Domov + + + Open + Otvoriť + + + Open file + Otvoriť súbor + + + All HTML files (*.html *.htm) + Všetky súbory HTML (*.html *.htm) + + + External browser + Externý prehliadač + + + No external browser found. Specify in preferences, please + Externý prehliadač nenájdený. Špecifikujte ho v predvoľbách, prosím + + + Starting of %1 failed + Spustenie %1 zlyhalo + + + + Gui::DockWnd::PropertyDockView + + Property View + Zobrazenie vlastností + + + + Gui::DockWnd::ReportOutput + + Logging + Logovanie + + + Warning + Upozornenie + + + Error + Chyba + + + Options + Možnosti + + + Clear + Vyčistiť + + + Save As... + Uložiť ako... + + + Save Report Output + Uložiť Výstupnú správu + + + Plain Text Files (*.txt *.log) + Obyčajné textové súbory (*.txt *.log) + + + Go to end + Prejsť na koniec + + + Redirect Python output + Presmerovať výstup Python + + + Redirect Python errors + Presmerovať chyby Python + + + + Gui::DockWnd::ReportView + + Output + Výstup + + + Python console + Konzola Python + + + + Gui::DockWnd::SelectionView + + Property View + Zobrazenie vlastností + + + + Gui::DockWnd::TaskPanelView + + Task View + Zobrazenie úloh + + + + Gui::DockWnd::TextBrowser + + Could not open file. + Súbor sa nedá otvoriť. + + + You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. + Skúsili ste prejsť na adresu %1, ktorá je momentálne nedostupná. Prosím uistite sa, že adresa URL existuje a skúste ju znova načítať. + + + Connecting to %1 + Pripájanie k %1 + + + Sending to %1 + Odosielanie do %1 + + + Reading from %1 + Čítanie z %1 + + + Download failed: %1. + Sťahovanie zlyhalo: %1. + + + Previous + Predchádzajúce + + + Forward + Nasledujúce + + + Home + Domov + + + Refresh + Obnoviť + + + Copy + Kópia + + + Select all + Vybrať všetko + + + No description for + Žiadny popis pre + + + + Gui::DocumentModel + + Application + Program + + + Labels & Attributes + Menovky & Atribúty + + + + Gui::EditorView + + Modified file + Modifikovaný súbor + + + %1. + +This has been modified outside of the source editor. Do you want to reload it? + %1. + +Toto bolo upravené mimo editora zdroja. Chcete to načítať? + + + Unsaved document + Neuložený dokument + + + The document has been modified. +Do you want to save your changes? + Dokument bol upravovaný. +Chcete uložiť zmeny? + + + FreeCAD macro (*.FCMacro);;Python (*.py) + Makro FreeCAD (*.FCMacro);;Python(*.py) + + + Export PDF + Export do PDF + + + PDF file (*.pdf) + Súbor PDF (*.pdf) + + + untitled[*] + všetky[*] + + + - Editor + -Editor + + + %1 chars removed + %1 znakov odstránené + + + %1 chars added + %1 znakov pridané + + + Formatted + Formátované + + + + Gui::FileChooser + + Select a file + Vyberte súbor + + + Select a directory + Vyberte adresár + + + + Gui::FileDialog + + Save as + Uložiť ako + + + Open + Otvoriť + + + + Gui::FileOptionsDialog + + Extended + Rozšírené + + + All files (*.*) + Všetky súbory (*.*) + + + + Gui::Flag + + Top left + Vľavo hore + + + Bottom left + Vľavo dole + + + Top right + Vpravo hore + + + Bottom right + Vpravo dole + + + Remove + Odstrániť + + + + Gui::InventorNavigationStyle + + Press CTRL and left mouse button + Stlačte CTRL a ľavé tlačidlo myši + + + Press middle mouse button + Stlačte stredné tlačidlo myši + + + Press left mouse button + Stlačte ľavé tlačidlo myši + + + Scroll middle mouse button + Otočte koliečkom myši + + + + Gui::LocationDialog + + Wrong direction + Chybný smer + + + Direction must not be the null vector + Smer nesmie byť nulový vektor + + + X + X + + + Y + Y + + + Z + Z + + + User defined... + Užívateľom definované... + + + + Gui::LocationWidget + + X: + X: + + + Y: + Y: + + + Z: + Z: + + + Direction: + Smer: + + + + Gui::MacroCommand + + Macros + Makrá + + + + Gui::MainWindow + + Dimension + Kóta + + + Ready + Pripravený + + + Toggles this toolbar + Prepína tento panel s nástrojmi + + + Toggles this dockable window + Prepína toto prichytené okno + + + Close All + Zavrieť všetko + + + + Gui::ManualAlignment + + Manual alignment + Manual alignment + + + The alignment is already in progress. + The alignment is already in progress. + + + Alignment[*] + Alignment[*] + + + Please, select at least one point in the left and the right view + Please, select at least one point in the left and the right view + + + Please, select at least %1 points in the left and the right view + Please, select at least %1 points in the left and the right view + + + Please pick points in the left and right view + Please pick points in the left and right view + + + The alignment has finished + The alignment has finished + + + The alignment has been canceled + The alignment has been canceled + + + Too few points picked in the left view. At least %1 points are needed. + Too few points picked in the left view. At least %1 points are needed. + + + Too few points picked in the right view. At least %1 points are needed. + Too few points picked in the right view. At least %1 points are needed. + + + Different number of points picked in left and right view. +On the left view %1 points are picked, +on the right view %2 points are picked. + Different number of points picked in left and right view. +On the left view %1 points are picked, +on the right view %2 points are picked. + + + Try to align group of views + Try to align group of views + + + The alignment failed. +How do you want to proceed? + The alignment failed. +How do you want to proceed? + + + Retry + Retry + + + Ignore + Ignorovať + + + Abort + Abort + + + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + + + Point picked at (%1,%2,%3) + Point picked at (%1,%2,%3) + + + No point was picked + No point was picked + + + + Gui::NetworkRetriever + + Download started... + + Sťahovanie začalo... + + + + Gui::ProgressBar + + Remaining: %1 + Zostáva: %1 + + + Aborting + Prerušuje sa + + + Do you really want to abort the operation? + Naozaj chcete prerušiť túto operáciu? + + + + Gui::ProgressDialog + + Remaining: %1 + Zostáva: %1 + + + Aborting + Prerušuje sa + + + Do you really want to abort the operation? + Naozaj chcete prerušiť túto operáciu? + + + + Gui::PropertyEditor::PropertyModel + + Property + Vlastnosti + + + Value + Hodnota + + + + Gui::PropertyView + + View + Pohľad + + + Data + Údaje + + + + Gui::PythonConsole + + System exit + Systémové ukončenie + + + The application is still running. +Do you want to exit without saving your data? + Aplikácia je stále spustená. +Chcete skončiť bez uloženia vašich údajov? + + + Python console + Konzola Python + + + Unhandled PyCXX exception. + Nespracovaná výnimka PyCXX. + + + Unhandled FreeCAD exception. + Nespracovaná výnimka FreeCAD. + + + Unhandled unknown C++ exception. + Nespracovaná výnimka neznámeho C++. + + + &Copy command + Príkaz Kopírovať + + + &Copy history + Kopírovať Históriu + + + Save history as... + Uložiť históriu ako... + + + Insert file name... + Vložiť názov súboru... + + + Save History + Uložiť históriu + + + Macro Files (*.FCMacro *.py) + Makro súbory (*.FCMacro *.py) + + + Insert file name + Vložte názov súboru + + + All Files (*.*) + Všetky súbory (*.*) + + + Python Input Dialog + Vstupný dialóg Python + + + Unhandled std C++ exception. + Nespracovaná výnimka std C++. + + + Word wrap + Zalamovanie slov + + + &Copy + &Kopírovať + + + &Paste + &Prilepiť + + + Select All + Vybrať všetko + + + Clear console + Clear console + + + + Gui::PythonEditor + + Comment + Komentár + + + Uncomment + Bez komentára + + + + Gui::PythonInputField + + OK + OK + + + Clear + Vyčistiť + + + + Gui::RecentFilesAction + + Open file %1 + Otvoriť súbor %1 + + + File not found + Súbor sa nenašiel + + + The file '%1' cannot be opened. + Súbor '%1' nemožno otvoriť. + + + + Gui::SelectModule + + Select module + Vyberte modul + + + Open %1 as + Otvorte %1 ako + + + Select + Výber + + + + Gui::StdCmdDescription + + Help + Pomoc + + + Des&cription + Popis + + + Long description of commands + Dlhý popis príkazov + + + + Gui::StdCmdDownloadOnlineHelp + + Help + Pomoc + + + Download online help + Stiahnuť online Pomoc + + + Download %1's online help + Stiahnuť online Pomoc pre %1 + + + Non-existing directory + Neexistujúci adresár + + + The directory '%1' does not exist. + +Do you want to specify an existing directory? + Adresár '%1' neexistuje. + +Prajete si zadať existujúci adresár? + + + Missing permission + Chýba oprávnenie + + + You don't have write permission to '%1' + +Do you want to specify another directory? + Nemáte povolenie pre zápis do '%1' + +Prajete si zadať iný adresár? + + + Stop downloading + Zastaviť sťahovanie + + + + Gui::StdCmdPythonHelp + + Tools + Nástroje + + + Python Modules + Moduly Pythonu + + + Opens a browser to show the Python modules + Pre ukážku modulov Pythonu sa otvorí prehliadač + + + + Gui::TaskBoxAngle + + Angle + Uhol + + + + Gui::TaskBoxPosition + + Position + Pozícia + + + + Gui::TaskView::TaskAppearance + + Plot mode: + Kresliaci mód: + + + Point size: + Veľkosť bodu: + + + Line width: + Šírka čiary: + + + Transparency: + Priesvitnosť: + + + Appearance + Vzhľad + + + Document window: + Document window: + + + + Gui::TaskView::TaskEditControl + + Edit + Upraviť + + + + Gui::TaskView::TaskSelectLinkProperty + + Appearance + Vzhľad + + + ... + ... + + + edit selection + upraviť výber + + + + Gui::TouchpadNavigationStyle + + Press left mouse button + Stlačte ľavé tlačidlo myši + + + Press SHIFT button + Press SHIFT button + + + Press ALT button + Press ALT button + + + Press PgUp/PgDown button + Press PgUp/PgDown button + + + + Gui::TreeDockWidget + + Tree view + Zobraziť Strom + + + + Gui::TreeWidget + + Create group... + Vytvoriť skupinu... + + + Create a group + Vytvoriť skupinu + + + Group + Skupina + + + Rename + Premenovať + + + Rename object + Premenovať objekt + + + Labels & Attributes + Menovky & Atribúty + + + Application + Program + + + Finish editing + Koniec editácie + + + Finish editing object + Dokončiť editáciu objektu + + + Activate document + Aktivovať dokument + + + Activate document %1 + Aktivovať dokument %1 + + + + Gui::View3DInventor + + Export PDF + Export do PDF + + + PDF file (*.pdf) + Súbor PDF (*.pdf) + + + + Gui::WorkbenchGroup + + Select the '%1' workbench + Vyberte pracovné prostredie '%1' + + + + Position + + Form + Forma + + + X: + X: + + + Y: + Y: + + + Z: + Z: + + + 0.1 mm + 0,1 mm + + + 0.5 mm + 0,5 mm + + + 1 mm + 1 mm + + + 2 mm + 2 mm + + + 5 mm + 5 mm + + + 10 mm + 10 mm + + + 20 mm + 20 mm + + + 50 mm + 50 mm + + + 100 mm + 100 mm + + + 200 mm + 200 mm + + + 500 mm + 500 mm + + + 1 m + 1 m + + + 2 m + 2 m + + + 5 m + 5 m + + + Grid Snap in + Prichytiť do mriežky + + + + QDockWidget + + Tree view + Zobraziť Strom + + + Property view + Zobrazenie vlastností + + + Selection view + Zobrazenie výberu + + + Report view + Zobrazenie zostavy + + + Task View + Zobrazenie úloh + + + Combo View + Zobraziť Pole so zoznamom + + + Toolbox + Panel nástrojov + + + Python console + Konzola Python + + + Display properties + Vlastnosti obrazovky + + + + QObject + + General + Všeobecné + + + Display + Obrazovka + + + Unknown filetype + Neznámy typ súboru + + + Cannot open unknown filetype: %1 + Nedá sa otvoriť neznámy typ súboru: %1 + + + Cannot save to unknown filetype: %1 + Nedá sa uložiť neznámy typ súboru: %1 + + + Workbench failure + Zlyhanie pracovného prostredia + + + %1 + %1 + + + Unable to launch Qt Assistant (%1) + Nepodarilo sa spustiť asistenta Qt(%1) + + + Exception + Výnimka + + + Open document + Otvoriť dokument + + + Import file + Import súboru + + + Export file + Export súboru + + + Printing... + Tlač... + + + Cannot load workbench + Nedá sa načítať pracovné prostredie + + + A general error occurred while loading the workbench + Počas načítania pracovného prostredia prišlo k zásadnej chybe + + + Save views... + Uložiť zobrazenia... + + + Load views... + Načítať zobrazenia... + + + Freeze view + Zmraziť zobrazenie + + + Clear views + Vyčistiť zobrazenia + + + Restore view &%1 + Obnoviť zobrazenie &%1 + + + Save frozen views + Uložiť zmrazené zobrazenia + + + Frozen views (*.cam) + Zmrazené zobrazenia (*.cam) + + + Restore views + Obnovenie zobrazenia + + + Importing the restored views would clear the already stored views. +Do you want to continue? + Importovanie obnovených zobrazení môže zmazať predtým uložené zobrazenia. +Chcete pokračovať? + + + Restore frozen views + Obnoviť zmrazené zobrazenia + + + Cannot open file '%1'. + Nedá sa otvoriť súbor '%1'. + + + Docked + Prichytené + + + Undocked + Uvoľnené + + + Fullscreen + Celá obrazovka + + + files + súbory + + + Save picture + Uložiť obrázok + + + New sub-group + Nová podskupina + + + Enter the name: + Zadajte názov: + + + New text item + Nová textová položka + + + Enter your text: + Zadajte text: + + + New integer item + Nová celočíselná položka + + + Enter your number: + Zadajte číslo: + + + New unsigned item + Nová neoznačená položka + + + New float item + Nová položka čísla s desatinnými + + + New Boolean item + Nová položka Boolean + + + Choose an item: + Vyberte položku: + + + Rename group + Premenovať skupinu + + + The group '%1' cannot be renamed. + Nemožno premenovať skupinu '%1'. + + + Existing group + Existujúca skupina + + + The group '%1' already exists. + Skupina '%1' už existuje. + + + Change value + Zmeňte hodnotu + + + Save document under new filename... + Uloží dokument pod novým názvom súboru... + + + Saving aborted + Ukladanie prerušené + + + Unsaved document + Neuložený dokument + + + Save document before close? + Uložiť dokument pred jeho zatvorením? + + + Save Macro + Uložiť makro + + + Finish + Dokončiť + + + Clear + Vyčistiť + + + Cancel + Zrušiť + + + Inner + Vnútorné + + + Outer + Vonkajšie + + + No Browser + Nie je prehliadač + + + Unable to open your browser. + +Please open a browser window and type in: http://localhost:%1. + Nepodarilo sa otvoriť Váš prehliadač. + +Prosím otvorte okno prehliadača a zadajte tam: http://localhost:%1. + + + No Server + Nie je Server + + + Unable to start the server to port %1: %2. + Nemôžem spustiť server na porte %1: %2. + + + Unable to open your system browser. + Nepodarilo sa otvoriť systémový prehliadač. + + + Options... + Možnosti... + + + Out of memory + Nedostatok pamäti + + + Not enough memory available to display the data. + Na zobrazenie údajov nie je dostatok pamäti. + + + Cannot find file %1 + Súbor %1 sa nedá nájsť + + + Cannot find file %1 neither in %2 nor in %3 + Súbor %1 nemôžem nájsť v %2 ani v %3 + + + Save %1 Document + Uložiť dokument %1 + + + %1 document (*.FCStd) + dokument %1 (*.FCStd) + + + Save As + Uložiť ako + + + %1 already exists. +Do you want to replace it? + %1 už existuje. +Chcete ho nahradiť? + + + Document not closable + Dokument nie je možné zavrieť + + + The document is not closable for the moment. + V tejto chvíli nie je možné zavrieť dokument. + + + No OpenGL + Nie je OpenGL + + + This system does not support OpenGL + Váš systém nepodporuje OpenGL + + + Help + Pomoc + + + Unable to load documentation. +In order to load it Qt 4.4 or higher is required. + Nedá sa načítať dokumentácia. +Pre jej načítanie je potrebné Qt 4.4 alebo vyššie. + + + %1 Help + %1 Pomoc + + + Exporting PDF... + Exportujem PDF... + + + Wrong selection + Chybný výber + + + Only one object selected. Please select two objects. +Be aware the point where you click matters. + Je vybraný len jeden objekt. Prosím, vyberte dva objekty. +Buďte opatrní pri klikaní na body. + + + Please select two objects. +Be aware the point where you click matters. + Vyberte prosím dva objekty. +Buďte opatrní pri klikaní na body. + + + New boolean item + Nová položka Boolean + + + Navigation styles + Navigačné štýly + + + %1 navigation + %1 navigácia + + + Move annotation + Presunúť komentár + + + Transform + Transformácia + + + The document is in editing mode and thus cannot be closed for the moment. +You either have to finish or cancel the editing in the task panel. + Dokument je v režime úprav a preto v tejto chvíli nemôže byť uzatvorený. +Najskôr musíte buď dokončiť úpravy alebo zrušiť úpravy na paneli úloh. + + + + StdBoxSelection + + Standard-View + Štandardné zobrazenie + + + Box selection + Box selection + + + + StdCmdAbout + + Help + Pomoc + + + &About %1 + O &aplikácií %1 + + + About %1 + O aplikácií %1 + + + + StdCmdAboutQt + + Help + Pomoc + + + About &Qt + O aplikácií &Qt + + + About Qt + O aplikácií Qt + + + + StdCmdActivateNextWindow + + Window + Okno + + + Ne&xt + Ďalej + + + Activate next window + Aktivuje ďalšie okno + + + + StdCmdActivatePrevWindow + + Window + Okno + + + Pre&vious + Predchádzajúce + + + Activate previous window + Zobrazí predchádzajúce okno + + + + StdCmdAlignment + + Edit + Upraviť + + + Alignment... + Alignment... + + + Align the selected objects + Align the selected objects + + + + StdCmdArrangeIcons + + Window + Okno + + + Arrange &Icons + Usporiadať &Ikony + + + Arrange Icons + Usporiadať Ikony + + + + StdCmdAxisCross + + Standard-View + Štandardné zobrazenie + + + Toggle axis cross + Prepína osový kríž + + + + StdCmdCascadeWindows + + Window + Okno + + + &Cascade + Kaskáda + + + Tile pragmatic + Dlaždice + + + + StdCmdCloseActiveWindow + + Window + Okno + + + Cl&ose + Zatvoriť + + + Close active window + Zavrieť aktívne okno + + + + StdCmdCloseAllWindows + + Window + Okno + + + Close Al&l + Zavrieť všetko + + + Close all windows + Zatvoriť všetky okná + + + + StdCmdCommandLine + + Tools + Nástroje + + + Start command &line... + Spustiť príkazový riadok... + + + Opens the command line in the console + Otvorí príkazový riadok v konzole + + + + StdCmdCopy + + Edit + Upraviť + + + C&opy + K&opírovať + + + Copy operation + Operácia kopírovania + + + + StdCmdCut + + Edit + Upraviť + + + &Cut + Vystrihnúť + + + Cut out + Vystrihnuté + + + + StdCmdDelete + + Edit + Upraviť + + + &Delete + O&dstrániť + + + Deletes the selected objects + Odstráni vybrané objekty + + + + StdCmdDemoMode + + Standard-View + Štandardné zobrazenie + + + View turntable... + Zobraziť točňu... + + + View turntable + Zobraziť točňu + + + + StdCmdDlgCustomize + + Tools + Nástroje + + + Cu&stomize... + Prispôs&obenie... + + + Customize toolbars and command bars + Prispôsobí panely nástrojov a panely príkazov + + + + StdCmdDlgMacroExecute + + Macros ... + Makrá ... + + + Opens a dialog to let you execute a recorded macro + Otvorí dialógové okno a umožní spustiť nahrané makro + + + Macro + Makro + + + + StdCmdDlgMacroExecuteDirect + + Macro + Makro + + + Execute macro + Spustiť makro + + + Execute the macro in the editor + Spustiť makro v editore + + + + StdCmdDlgMacroRecord + + &Macro recording ... + Zaznamenávanie &makra... + + + Opens a dialog to record a macro + Otvorí dialógové okno pre záznam makra + + + Macro + Makro + + + + StdCmdDlgParameter + + Tools + Nástroje + + + E&dit parameters ... + E&ditovať parametre... + + + Opens a Dialog to edit the parameters + Otvorí dialógové okno pre úpravu parametrov + + + + StdCmdDlgPreferences + + Tools + Nástroje + + + &Preferences ... + &Predvoľby ... + + + Opens a Dialog to edit the preferences + Otvorí dialógové okno pre úpravu predvolieb + + + + StdCmdDockViewMenu + + View + Pohľad + + + Vie&ws + Zobrazenia + + + Toggles this window + Prepína toto okno + + + + StdCmdDrawStyle + + Standard-View + Štandardné zobrazenie + + + Draw style + Štýl kreslenia + + + + StdCmdDuplicateSelection + + Edit + Upraviť + + + Duplicate selection + Duplikovať výber + + + Put duplicates of the selected objects to the active document + Vloží duplikáty vybraných objektov do aktívneho dokumentu + + + + StdCmdEdit + + Edit + Upraviť + + + Toggle &Edit mode + Toggle &Edit mode + + + Toggles the selected object's edit mode + Toggles the selected object's edit mode + + + Enters or leaves the selected object's edit mode + Enters or leaves the selected object's edit mode + + + + StdCmdExport + + File + Súbor + + + &Export... + &Export... + + + Export an object in the active document + Export objektu v aktívnom dokumente + + + No selection + bez výberu + + + Please select first the objects you want to export. + Please select first the objects you want to export. + + + + StdCmdExportGraphviz + + Tools + Nástroje + + + Dependency graph... + Dependency graph... + + + Show the dependency graph of the objects in the active document + Show the dependency graph of the objects in the active document + + + + StdCmdFeatRecompute + + File + Súbor + + + &Recompute + P&repočítať + + + Recompute feature or document + Prepočítať funkciu alebo dokument + + + + StdCmdFreeCADWebsite + + Help + Pomoc + + + FreeCAD Website + Webová stránka FreeCAD + + + The FreeCAD website + Internetová stránka programu FreeCAD + + + + StdCmdFreezeViews + + Standard-View + Štandardné zobrazenie + + + Freeze display + Zmraziť zobrazenie + + + Freezes the current view position + Zmrazí aktuálnu pozíciu zobrazenia + + + + StdCmdHideObjects + + Standard-View + Štandardné zobrazenie + + + Hide all objects + Skryť všetky objekty + + + Hide all objects in the document + Skryje všetky objekty v dokumente + + + + StdCmdHideSelection + + Standard-View + Štandardné zobrazenie + + + Hide selection + Skryť výber + + + Hide all selected objects + Skryje všetky vybrané objekty + + + + StdCmdImport + + File + Súbor + + + &Import... + &Import... + + + Import a file in the active document + Importuje súbor do aktívneho dokumentu + + + Supported formats + Podporované formáty + + + All files (*.*) + Všetky súbory (*.*) + + + + StdCmdMacroStartDebug + + Macro + Makro + + + Debug macro + Ladiť Makro + + + Start debugging of macro + Zaháji ladenie Makra + + + + StdCmdMacroStepOver + + Macro + Makro + + + Step over + Preskočiť + + + + StdCmdMacroStopDebug + + Macro + Makro + + + Stop debugging + Zastaviť ladenie + + + Stop debugging of macro + Zastaviť ladenie Makra + + + + StdCmdMacroStopRecord + + Macro + Makro + + + S&top macro recording + S&topnúť nahrávanie Makra + + + Stop the macro recording session + Zastaví reláciu nahrávania Makra + + + + StdCmdMeasureDistance + + View + Pohľad + + + Measure distance + Meranie vzdialenosti + + + + StdCmdMeasurementSimple + + Tools + Nástroje + + + Measures distance between two selected objects + Meria vzdialenosť medzi dvoma vybranými objektmi + + + Measure distance + Meranie vzdialenosti + + + + StdCmdMergeProjects + + File + Súbor + + + Merge project... + Zlúčiť projekt... + + + Merge project + Zlúčiť projekt + + + %1 document (*.fcstd) + dokument %1 (*.FCStd) + + + Cannot merge project with itself. + Nie je možné zlúčiť projekt sám so sebou. + + + + StdCmdNew + + File + Súbor + + + &New + &Nový + + + Create a new empty document + Vytvoriť nový prázdny dokument + + + + StdCmdOnlineHelp + + Help + Pomoc + + + Show help to the application + Zobraziť Pomocníka programu + + + + StdCmdOnlineHelpWebsite + + Help + Pomoc + + + Help Website + Web stránka Pomoci + + + The website where the help is maintained + Priebežne udržiavané Web stránky s Pomocou + + + + StdCmdOpen + + File + Súbor + + + &Open... + &Otvoriť... + + + Open a document or import files + Otvorí dokument alebo importuje súbory + + + Supported formats + Podporované formáty + + + All files (*.*) + Všetky súbory (*.*) + + + + StdCmdPaste + + Edit + Upraviť + + + &Paste + &Prilepiť + + + Paste operation + Operácia prilepenia + + + + StdCmdPlacement + + Edit + Upraviť + + + Placement... + Umiestnenie... + + + Place the selected objects + Umiestní vybrané objekty + + + + StdCmdPrint + + File + Súbor + + + &Print... + &Tlač... + + + Print the document + Vytlačí dokument + + + + StdCmdPrintPdf + + File + Súbor + + + &Export PDF... + &Export do PDF... + + + Export the document as PDF + Export dokumentu do formátu PDF + + + + StdCmdPrintPreview + + File + Súbor + + + &Print preview... + Náhľad tlače... + + + Print the document + Vytlačí dokument + + + Print preview + Náhľad tlače + + + + StdCmdProjectInfo + + File + Súbor + + + Project i&nformation... + &Informácie o projekte... + + + Show details of the currently active project + Zobraziť podrobnosti o práve aktívnom projekte + + + + StdCmdProjectUtil + + Tools + Nástroje + + + Project utility... + Pomôcky projektu... + + + Utility to extract or create project files + Pomôcky na extrakciu alebo vytvorenie súborov projektu + + + + StdCmdPythonWebsite + + Help + Pomoc + + + Python Website + Web stránka Python + + + The official Python website + Oficiálne web stránky pre Python + + + + StdCmdQuit + + File + Súbor + + + E&xit + Koniec + + + Quits the application + Ukončí program + + + + StdCmdRandomColor + + File + Súbor + + + Random color + Náhodná farba + + + + StdCmdRecentFiles + + File + Súbor + + + Recent files + Obľúbené súbory + + + Recent file list + Zoznam obľúbených súborov + + + + StdCmdRedo + + Edit + Upraviť + + + &Redo + Znova + + + Redoes a previously undone action + Znova vykoná vrátenú akciu + + + + StdCmdRefresh + + Edit + Upraviť + + + &Refresh + Obnoviť + + + Recomputes the current active document + Prepočíta aktuálny a aktívny dokument + + + + StdCmdSave + + File + Súbor + + + &Save + Uložiť + + + Save the active document + Uloží aktívny dokument + + + + StdCmdSaveAs + + File + Súbor + + + Save &As... + Uložiť &ako... + + + Save the active document under a new file name + Uloží aktívny dokument pod novým názvom súboru + + + + StdCmdSceneInspector + + Tools + Nástroje + + + Scene inspector... + Prehliadač scény... + + + Scene inspector + Prehliadač scény + + + + StdCmdSelectAll + + Edit + Upraviť + + + Select &All + Vybr&ať všetko + + + Select all + Vybrať všetko + + + + StdCmdSetAppearance + + Standard-View + Štandardné zobrazenie + + + Appearance... + Vzhľad... + + + Sets the display properties of the selected object + Nastaví zobrazenie vlastností vybratého objektu + + + + StdCmdShowObjects + + Standard-View + Štandardné zobrazenie + + + Show all objects + Zobraziť všetky objekty + + + Show all objects in the document + Zobrazí všetky objekty v dokumente + + + + StdCmdShowSelection + + Standard-View + Štandardné zobrazenie + + + Show selection + Zobraziť výber + + + Show all selected objects + Zobrazí všetky vybraté objekty + + + + StdCmdStatusBar + + View + Pohľad + + + Status bar + Stavový riadok + + + Toggles the status bar + Prepína stavový riadok + + + + StdCmdTextureMapping + + Tools + Nástroje + + + Texture mapping... + Mapovanie textúry... + + + Texture mapping + Mapovanie textúry + + + + StdCmdTileWindows + + Window + Okno + + + &Tile + Dlaždice + + + Tile the windows + Uloží okná ako dlaždice + + + + StdCmdToggleBreakpoint + + Macro + Makro + + + Toggle breakpoint + Prepnúť bod prerušenia + + + + StdCmdToggleClipPlane + + Standard-View + Štandardné zobrazenie + + + Clipping plane + Strihacia rovina + + + Toggles clipping plane for active view + Prepne strihaciu rovinu pre aktívne zobrazenie + + + + StdCmdToggleNavigation + + Standard-View + Štandardné zobrazenie + + + Toggle navigation/Edit mode + Prepína Navigačný/Editovací mód + + + Toggle between navigation and edit mode + Prepína medzi režimom navigácie a režimom úpravy + + + + StdCmdToggleObjects + + Standard-View + Štandardné zobrazenie + + + Toggle all objects + Prepnúť všetky objekty + + + Toggles visibility of all objects in the active document + Prepína viditeľnosť všetkých objektov v aktívnom dokumente + + + + StdCmdToggleSelectability + + Standard-View + Štandardné zobrazenie + + + Toggle selectability + Prepínač výberu + + + Toggles the property of the objects to get selected in the 3D-View + Prepína vlastnosť objektu či môže byť vybraný v 3D pohľade + + + + StdCmdToggleVisibility + + Standard-View + Štandardné zobrazenie + + + Toggle visibility + Prepínač viditeľnosti + + + Toggles visibility + Prepína viditeľnosť + + + + StdCmdToolBarMenu + + View + Pohľad + + + Tool&bars + Panely nástrojov + + + Toggles this window + Prepína toto okno + + + + StdCmdTransform + + Edit + Upraviť + + + Transform... + Transformácia... + + + Transform the geometry of selected objects + Transformuje geometriu vybraných objektov + + + + StdCmdTreeSelection + + View + Pohľad + + + Go to selection + Choď do výberu + + + Scroll to first selected item + Prejsť na prvú z vybraných položiek + + + + StdCmdUndo + + Edit + Upraviť + + + &Undo + &Späť + + + Undo exactly one action + Vráti sa o jednu akciu nazad + + + + StdCmdUserInterface + + View + Pohľad + + + Dock views + Ukotviť zobrazenia + + + Dock all top-level views + Ukotviť všetky zobrazenia najvyššej úrovne + + + + StdCmdViewAxo + + Standard-View + Štandardné zobrazenie + + + Axometric + Axometrický + + + Set to axometric view + Nastaviť axometrické zobrazenie + + + + StdCmdViewBottom + + Standard-View + Štandardné zobrazenie + + + Bottom + Spodok + + + Set to bottom view + Nastaví na pohľad z dola + + + + StdCmdViewCreate + + Standard-View + Štandardné zobrazenie + + + Create new view + Vytvoriť nové zobrazenie + + + Creates a new view window for the active document + Vytvorí nové zobrazenie pre aktívny dokument + + + + StdCmdViewExample1 + + Standard-View + Štandardné zobrazenie + + + Inventor example #1 + Príklad návrhu #1 + + + Shows a 3D texture with manipulator + Zobrazuje 3D textúru s manipulátorom + + + + StdCmdViewExample2 + + Standard-View + Štandardné zobrazenie + + + Inventor example #2 + Príklad návrhu #2 + + + Shows spheres and drag-lights + Ukazuje návrh gule a tieňovanie + + + + StdCmdViewExample3 + + Standard-View + Štandardné zobrazenie + + + Inventor example #3 + Príklad návrhu #3 + + + Shows a animated texture + Ukazuje animovanú tuxtúru + + + + StdCmdViewFitAll + + Standard-View + Štandardné zobrazenie + + + Fit all + Ukáž všetko + + + Fits the whole content on the screen + Prispôsobí zobrazenie celého obsahu a ukáže na obrazovke + + + + StdCmdViewFitSelection + + Standard-View + Štandardné zobrazenie + + + Fit selection + Napasovať výber + + + Fits the selected content on the screen + Prispôsobí zobrazenie vybraného obsahu a ukáže na obrazovke + + + + StdCmdViewFront + + Standard-View + Štandardné zobrazenie + + + Front + Predok + + + Set to front view + Nastaví na pohľad z predu + + + + StdCmdViewIvIssueCamPos + + Standard-View + Štandardné zobrazenie + + + Issue camera position + Východzie postavenie kamery + + + Issue the camera position to the console and to a macro, to easily recall this position + Východzie nastavenie pozície kamery v konzole a v Makre pre jednoduchšie vyvolanie tejto pozície + + + + StdCmdViewIvStereoInterleavedColumns + + Standard-View + Štandardné zobrazenie + + + Stereo Interleaved Columns + Stereo prekladané stĺpce + + + Switch stereo viewing to Interleaved Columns + Prepínať stereo prezeranie prekladaných stĺpcov + + + + StdCmdViewIvStereoInterleavedRows + + Standard-View + Štandardné zobrazenie + + + Stereo Interleaved Rows + Stereo prekladané riadky + + + Switch stereo viewing to Interleaved Rows + Prepínať stereo prezeranie prekladaných riadkov + + + + StdCmdViewIvStereoOff + + Standard-View + Štandardné zobrazenie + + + Stereo Off + Vypnúť stereo + + + Switch stereo viewing off + Vypnúť stereo zobrazenie + + + + StdCmdViewIvStereoQuadBuff + + Standard-View + Štandardné zobrazenie + + + Stereo quad buffer + Quad Stereo vyrovnávanie + + + Switch stereo viewing to quad buffer + Prepne stereo zobrazenie na quadrofónne vyrovnávanie + + + + StdCmdViewIvStereoRedGreen + + Standard-View + Štandardné zobrazenie + + + Stereo red/green + Stereo červená/zelená + + + Switch stereo viewing to red/green + Prepne stereo zobrazenie na červená/zelená + + + + StdCmdViewLeft + + Standard-View + Štandardné zobrazenie + + + Left + Vľavo + + + Set to left view + Nastaviť pohľad z ľava + + + + StdCmdViewRear + + Standard-View + Štandardné zobrazenie + + + Rear + Vzadu + + + Set to rear view + Nastaví pohľad zo zadu + + + + StdCmdViewRight + + Standard-View + Štandardné zobrazenie + + + Right + Vpravo + + + Set to right view + Nastaví pohľad z prava + + + + StdCmdViewRotateLeft + + Standard-View + Štandardné zobrazenie + + + Rotate Left + Rotate Left + + + Rotate the view by 90° counter-clockwise + Rotate the view by 90° counter-clockwise + + + + StdCmdViewRotateRight + + Standard-View + Štandardné zobrazenie + + + Rotate Right + Rotate Right + + + Rotate the view by 90° clockwise + Rotate the view by 90° clockwise + + + + StdCmdViewTop + + Standard-View + Štandardné zobrazenie + + + Top + Zhora + + + Set to top view + Nastaví pohľad z hora + + + + StdCmdWhatsThis + + Help + Pomoc + + + &What's This? + Čo je toto? + + + What's This + Čo je toto + + + + StdCmdWindows + + Window + Okno + + + &Windows... + Okná... + + + Windows list + Zoznam okien + + + + StdCmdWindowsMenu + + Window + Okno + + + Activates this window + Aktivuje toto okno + + + + StdCmdWorkbench + + View + Pohľad + + + Workbench + Pracovné prostredie + + + Switch between workbenches + Prepne medzi pracovnými prostrediami + + + + StdOrthographicCamera + + Standard-View + Štandardné zobrazenie + + + Orthographic view + Priestorový pohľad + + + Switches to orthographic view mode + Prepne do priestorového zobrazenia + + + + StdPerspectiveCamera + + Standard-View + Štandardné zobrazenie + + + Perspective view + Perspektívne zobrazenie + + + Switches to perspective view mode + Prepne do perspektívneho zobrazenia + + + + StdViewBoxZoom + + Standard-View + Štandardné zobrazenie + + + Box zoom + Priblíženie Boxu + + + + StdViewDockUndockFullscreen + + Standard-View + Štandardné zobrazenie + + + Document window + Document window + + + Display the active view either in fullscreen, in undocked or docked mode + Zobrazuje aktívny pohľad v celo-obrazovom režime buď neukotvené, alebo ukotvené + + + + StdViewScreenShot + + Standard-View + Štandardné zobrazenie + + + Save picture... + Uložiť obrázok... + + + Creates a screenshot of the active view + Vytvorí snímok z aktívneho zobrazenia + + + + StdViewZoomIn + + Standard-View + Štandardné zobrazenie + + + Zoom In + Priblížiť + + + + StdViewZoomOut + + Standard-View + Štandardné zobrazenie + + + Zoom Out + Vzdialiť + + + + Std_DrawStyle + + As is + Ako je + + + Normal mode + Normálny režim + + + Wireframe + Drôtový model + + + Wireframe mode + Drôtený režim + + + + Std_ExportGraphviz + + Graphviz not found + Graphviz not found + + + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + + + Graphviz installation path + Graphviz installation path + + + Dependency graph + Dependency graph + + + Graphviz failed + Graphviz failed + + + Graphviz failed to create an image file + Graphviz failed to create an image file + + + + Workbench + + &File + Súbor + + + &Edit + &Editovať + + + Standard views + Štandardné zobrazenia + + + &Stereo + &Stereo + + + &Zoom + &Zväčšenie + + + Visibility + Viditeľnosť + + + &View + Zobrazenie + + + &Tools + Nás&troje + + + &Macro + &Makro + + + &Windows + Okná + + + &On-line help + &On-line Pomoc + + + &Help + Pomoc + + + File + Súbor + + + Macro + Makro + + + View + Pohľad + + + Special Ops + Špeciálne Operácie + + + + testClass + + test + test + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisPanelÚloh</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Vytvorené pre Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + + + Choose the style of the Task Panel + Vyberte štýl Panela úloh + + + Default + Predvolené + + + Windows XP + Windows XP + + + diff --git a/src/Gui/Language/FreeCAD_se.qm b/src/Gui/Language/FreeCAD_sv-SE.qm similarity index 72% rename from src/Gui/Language/FreeCAD_se.qm rename to src/Gui/Language/FreeCAD_sv-SE.qm index b0e66252f..c8539808e 100644 Binary files a/src/Gui/Language/FreeCAD_se.qm and b/src/Gui/Language/FreeCAD_sv-SE.qm differ diff --git a/src/Gui/Language/FreeCAD_sv-SE.ts b/src/Gui/Language/FreeCAD_sv-SE.ts new file mode 100644 index 000000000..0d0ac6f38 --- /dev/null +++ b/src/Gui/Language/FreeCAD_sv-SE.ts @@ -0,0 +1,5843 @@ + + + + + Angle + + Form + Form + + + A: + A: + + + B: + B: + + + C: + C: + + + Angle Snap + Vinkel Snäpp + + + 1 ° + + + + 2 ° + + + + 5 ° + + + + 10 ° + 10° + + + 20 ° + 20° + + + 45 ° + 45° + + + 90 ° + 90° + + + 180 ° + 180° + + + + Gui::AccelLineEdit + + none + inget + + + + Gui::ActionSelector + + Available: + Tillgängliga: + + + Selected: + Vald: + + + Add + Lägg till + + + Remove + Ta bort + + + Move up + Flytta upp + + + Move down + Flytta ned + + + + Gui::AlignmentView + + Movable object + Flyttbart objekt + + + Fixed object + Fasta objekt + + + + Gui::BlenderNavigationStyle + + Press left mouse button + Tryck på vänster musknapp + + + Press SHIFT and middle mouse button + Tryck på SKIFT och mellersta musknappen + + + Press middle mouse button + Tryck på mittre musknapp + + + Scroll middle mouse button + Bläddra mittre musknapp + + + + Gui::CADNavigationStyle + + Press left mouse button + Tryck på vänster musknapp + + + Press middle mouse button + Tryck på mittre musknapp + + + Press left and middle mouse button + Tryck på vänster och mittre musknapp + + + Scroll middle mouse button + Bläddra mittre musknapp + + + + Gui::Command + + Standard + Standard + + + + Gui::ContainerDialog + + &OK + &Ok + + + &Cancel + &Avbryt + + + + Gui::ControlSingleton + + Task panel + Uppgiftspanel + + + + Gui::Dialog::AboutApplication + + About + Om + + + Revision number + Revisionsnummer + + + Version + Version + + + OK + OK + + + + + + + Release date + Utgivningsdatum + + + Platform + Plattform + + + License... + Licens ... + + + Copy to clipboard + Kopiera till Urklipp + + + + Gui::Dialog::ButtonModel + + Button %1 + Knapp %1 + + + Out Of Range + Utanför område + + + + Gui::Dialog::CommandModel + + Commands + Kommandon + + + + Gui::Dialog::DemoMode + + View Turntable + Visa vridbord + + + Speed + Hastighet + + + Maximum + Maximum + + + Minimum + Minimum + + + Fullscreen + Fullskärm + + + Enable timer + Aktivera timer + + + s + s + + + Angle + Vinkel + + + 90° + 90° + + + -90° + -90° + + + Play + Spela upp + + + Stop + Stopp + + + Close + Stäng + + + + Gui::Dialog::DlgActivateWindow + + Choose Window + Välj fönster + + + &Activate + &Aktivera + + + Alt+A + Alt+A + + + &Cancel + &Avbryt + + + + + + + + Gui::Dialog::DlgActivateWindowImp + + Windows + Fönster + + + + Gui::Dialog::DlgAuthorization + + Authorization + Auktorisering + + + &OK + &Ok + + + &Cancel + &Avbryt + + + Password: + Lösenord: + + + User name: + Användarnamn: + + + + + + + + Gui::Dialog::DlgChooseIcon + + Choose Icon + Välj ikon + + + OK + OK + + + Cancel + Avbryt + + + Add icons... + Lägg till ikoner ... + + + + Gui::Dialog::DlgCustomActions + + Macros + Makron + + + Setup Custom Macros + Inställningar för anpassade makron + + + Macro: + Makro: + + + ... + ... + + + Pixmap + Pixelkarta + + + Accelerator: + Snabbtangent: + + + What's this: + Förklaring: + + + Status text: + Statustext: + + + Tool tip: + Verktygstips: + + + Menu text: + Menytext: + + + Add + Lägg till + + + Remove + Ta bort + + + Replace + Ersätt + + + + Gui::Dialog::DlgCustomActionsImp + + Icons + Ikoner + + + Macros + Makron + + + No macro + Inget makro + + + No macros found. + Inga makron funna. + + + Macro not found + Makro ej funnet + + + Sorry, couldn't find macro file '%1'. + Ledsen, kunde inte hitta makrofil '%1'. + + + Empty macro + Tomt makro + + + Please specify the macro first. + Specificera makrot först. + + + Empty text + Tom text + + + Please specify the menu text first. + Specificera menytexten först. + + + No item selected + Ingen sak vald + + + Please select a macro item first. + Välj ett makro först. + + + + Gui::Dialog::DlgCustomCommands + + Commands + Kommandon + + + + + + + + Gui::Dialog::DlgCustomCommandsImp + + Category + Kategori + + + Icon + Ikon + + + Command + Kommando + + + + Gui::Dialog::DlgCustomKeyboard + + Keyboard + Tangentbord + + + Description: + Beskrivning: + + + &Category: + &Kategori: + + + C&ommands: + K&ommandon: + + + Current shortcut: + Nuvarande genväg: + + + Press &new shortcut: + Tryck på &ny genväg: + + + Currently assigned to: + För närvarande tilldelat till: + + + &Assign + &Tilldela + + + Alt+A + Alt+A + + + &Reset + &Återställ + + + Alt+R + Alt+R + + + Re&set All + Åte&rställ allt + + + Alt+S + Alt+S + + + + + + + + Gui::Dialog::DlgCustomKeyboardImp + + Icon + Ikon + + + Command + Kommando + + + none + inget + + + Multiple defined shortcut + multipel definierad genväg + + + The shortcut '%1' is defined more than once. This could result into unexpected behaviour. + Genvägen '%1' är definierad mer än en gång. Detta kan leda till oväntat beteende. + + + Already defined shortcut + Genvägen är redan definierad + + + The shortcut '%1' is already assigned to '%2'. + +Please define another shortcut. + Genvägen '%1' är redan tilldelad '%2'. + +Definiera en annan genväg. + + + + Gui::Dialog::DlgCustomToolBoxbarsImp + + Toolbox bars + Verktygslådor + + + + Gui::Dialog::DlgCustomToolbars + + Toolbars + Verktygslådor + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> Ändringarna blir aktiva nästa gång du laddar passande arbetsbänk</p></body></html> + + + Move right + Flytta till höger + + + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Flytta den valda saken en nivå ned.</b><p>Detta kommer även att ändra nivån på sakens förälder.</p> + + + Move left + Flytta till vänster + + + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Flytta den valda saken en nivå upp.</b><p>Detta kommer även att ändra nivån på sakens förälder.</p> + + + Move down + Flytta ned + + + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Flytta ned den valda saken.</b><p>Saken kommer att flyttas inom hierarki nivån.</p> + + + Move up + Flytta upp + + + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Flytta upp den valda saken.</b><p>Saken kommer att flyttas inom hierarki nivån.</p> + + + New... + Ny... + + + Rename... + Döp om... + + + Delete + Radera + + + Icon + Ikon + + + Command + Kommando + + + <Separator> + <Separator> + + + New toolbar + Ny verktygsrad + + + Toolbar name: + Namn på verktygsraden: + + + Duplicated name + Duplicerat namn + + + The toolbar name '%1' is already used + Verktygsradens namn '%1' används redan + + + Rename toolbar + Döp om verktygsraden + + + + + + + + Gui::Dialog::DlgCustomizeImp + + Customize + Anpassa + + + &Help + &Hjälp + + + &Close + S&täng + + + + Gui::Dialog::DlgCustomizeSpaceball + + Spaceball + Spaceball + + + No Spaceball Present + Ingen spaceball finns + + + Buttons + Knappar + + + Clear + Rensa + + + Print Reference + Utskriftsreferens + + + + Gui::Dialog::DlgDisplayProperties + + Display properties + Fönsteregenskaper + + + Display + Fönster + + + Transparency: + Transparens: + + + Line width: + Linjebredd: + + + Point size: + Punktstorlek: + + + Material + Material + + + ... + ... + + + Close + Stäng + + + Viewing mode + Visningsläge + + + Plot mode: + Plottningsläge: + + + + + + + Line transparency: + Linjegenomskinlighet: + + + Line color: + linjefärg: + + + Shape color: + Form färg: + + + Color plot: + Färgplottning: + + + Document window: + Dokumentfönstret: + + + + Gui::Dialog::DlgEditorSettings + + Editor + Redigerare + + + Options + Alternativ + + + Enable line numbers + Aktivera radnummer + + + Enable folding + Aktivera vikning + + + Indentation + Indrag + + + Insert spaces + Sätt in mellanslag + + + Tab size: + Tabulatorstorlek: + + + Indent size: + Storlek på indrag: + + + Keep tabs + Behåll tabulatorer + + + Display Items + Visa saker + + + Family: + Familj: + + + Size: + Storlek: + + + Preview: + Förhandsgranskning: + + + + + + + + Gui::Dialog::DlgGeneral + + General + Allmänt + + + Start up + Uppstart + + + Enable splash screen at start up + Aktivera splashfönster vid uppstart + + + Switch to tab of report window: + Växla till rapportfönstrets tabb: + + + Auto load module after start up: + Autoladda modul efter uppstart: + + + Language + Språk + + + Change language: + Ändra språk: + + + Main window + Huvudfönster + + + Size of recent file list + Storlek på listan för senast öppnade filer + + + Window style: + Fönsterstil: + + + Size of toolbar icons: + Storlek på verktygsfältsikonerna: + + + + Gui::Dialog::DlgGeneralImp + + Default (%1 x %1) + Standard (%1 x %1) + + + Small (%1 x %1) + Liten (%1 x %1) + + + Large (%1 x %1) + Stor (%1 x %1) + + + Extra large (%1 x %1) + Extra stor (%1 x %1) + + + + Gui::Dialog::DlgInputDialog + + Input + Inmatning + + + OK + OK + + + Cancel + Avbryt + + + + + + + + Gui::Dialog::DlgInspector + + Scene Inspector + Sceninspektör + + + + Gui::Dialog::DlgMacroExecute + + Execute macro + Utför makro + + + Macro name: + Makronamn: + + + Macro destination: + Makro destination: + + + Execute + Utför + + + Close + Stäng + + + Create + Skapa + + + Delete + Radera + + + Edit + Redigera + + + + Gui::Dialog::DlgMacroExecuteImp + + Macros + Makron + + + Macro file + Makro fil + + + Enter a file name, please: + Skriv in ett filnamn: + + + Existing file + Filen finns + + + '%1'. +This file already exists. + '%1'. +Denna fil finns redan. + + + Delete macro + Radera makro + + + Do you really want to delete the macro '%1'? + Vill du verkligen radera makrot '%1'? + + + Cannot create file + Kan inte skapa fil + + + Creation of file '%1' failed. + Skapandet av filen %1' misslyckades. + + + + Gui::Dialog::DlgMacroRecord + + Macro recording + Makroinspelning + + + Macro name: + Makronamn: + + + Stop + Stopp + + + Cancel + Avbryt + + + Macro path: + sökväg för makro: + + + ... + ... + + + Record + Spela in + + + + Gui::Dialog::DlgMacroRecordImp + + Macro recorder + Makroinspelare + + + Specify first a place to save. + Specificera först en plats att spara på. + + + Existing macro + Makrot finns + + + The macro '%1' already exists. Do you want to overwrite? + Makrot '%1' finns redan. Vill du skriva över den? + + + The macro directory doesn't exist. Please, choose another one. + Makrokatalogen finns inte. Var snäll och välj en annan. + + + Choose macro directory + Välj makro katalog + + + + Gui::Dialog::DlgMaterialProperties + + Material properties + Materialegenskaper + + + &Close + S&täng + + + Alt+C + Alt+C + + + Material + Material + + + Diffuse color: + Diffuseringsfärg: + + + Specular color: + Speglingsfärg: + + + Shininess: + Blänkvärde: + + + % + % + + + Ambient color: + Omgivningsfärg: + + + + + + + Emissive color: + Emissiv färg: + + + + Gui::Dialog::DlgOnlineHelp + + On-line help + On-line hjälp + + + Help viewer + Hjälpvisare + + + Location of start page + Startsidans adress + + + + Gui::Dialog::DlgOnlineHelpImp + + HTML files (*.html *.htm) + HTML filer (*.html *.htm) + + + Access denied + Åtkomst nekad + + + Access denied to '%1' + +Specify another directory, please. + Åtkomst nekad till '%1' + +Ange en annan katalog. + + + + Gui::Dialog::DlgParameter + + Parameter Editor + Parameter redigerare + + + Save to disk + Spara till disk + + + Alt+C + Alt+C + + + &Close + S&täng + + + + Gui::Dialog::DlgParameterImp + + Group + Grupp + + + Name + Namn + + + Type + Typ + + + Value + Värde + + + User parameter + Användarparameter + + + Invalid input + Ogiltig inmatning + + + Invalid key name '%1' + Ogiltigt nyckelnamn '%1' + + + System parameter + Systemparameter + + + + Gui::Dialog::DlgPreferences + + Preferences + Inställningar + + + &Help + &Hjälp + + + Alt+H + Alt+H + + + &OK + &Ok + + + &Apply + &Verkställ + + + Alt+A + Alt+A + + + &Cancel + &Avbryt + + + + + + + + Gui::Dialog::DlgPreferencesImp + + Wrong parameter + Fel parameter + + + + Gui::Dialog::DlgProjectInformation + + Project information + Projektinformation + + + Information + Information + + + &Name: + &Namn: + + + Commen&t: + Kommen&tar: + + + Path: + Sökväg: + + + &Last modified by: + S&ist ändrad av: + + + Created &by: + &Skapad av: + + + Com&pany: + &Företag: + + + Last &modification date: + Sista ändringsdatu&m: + + + Creation &date: + Skapad &datum: + + + &OK + &Ok + + + &Cancel + &Avbryt + + + + + + + + Gui::Dialog::DlgProjectUtility + + Project utility + Projekt verktyg + + + Extract project + Extrahera projekt + + + Source + Källa + + + Project file (*.fcstd) + Projektfil (*. fcstd) + + + Destination + Destination + + + Extract + Extrahera + + + Create project + Skapa projekt + + + Document.xml + Dokument.xml + + + Create + Skapa + + + Load project file after creation + Ladda projektfil efter skapelsen + + + Empty source + Tom källa + + + No source is defined. + Ingen källa är definierad. + + + Empty destination + Tom destination + + + No destination is defined. + Ingen destination är definierad. + + + + Gui::Dialog::DlgReportView + + Output window + Utmatningsfönster + + + Output + Utmatning + + + Record log messages + spela in logg meddelanden + + + Record warnings + Spela in varningar + + + Record error messages + Spela in felmeddelanden + + + Colors + Färger + + + Normal messages: + Normala meddelanden: + + + Log messages: + Loggmeddelanden: + + + Warnings: + Varningar: + + + Errors: + Fel: + + + + + + + Redirect internal Python errors to report view + Omdirigera interna Pythonfel till rapportvy + + + Redirect internal Python output to report view + Dirigera om intern Pythonutmatning till rapportvyn + + + + Gui::Dialog::DlgRunExternal + + Running external program + Kör externt program + + + TextLabel + TextLabel + + + Advanced >> + Avancerat >> + + + ... + ... + + + Accept changes + Acceptera förändringar + + + Discard changes + Förkasta ändringar + + + Abort program + Avbryt programmet + + + Help + Hjälp + + + Select a file + Välj en fil + + + + Gui::Dialog::DlgSettings3DView + + 3D View + 3D Vy + + + 3D View settings + Inställningar för 3D Vy + + + Show coordinate system in the corner + Visa koordinatsystemet i hörnet + + + Show counter of frames per second + Visa räknaren för bilder per sekund + + + Enable animation + Aktivera animering + + + Enable anti-aliasing (slower) + Aktivera antialiasing (långsammare) + + + Eye to eye distance for stereo modes: + Ögonavstånd för stereolägen: + + + Camera type + Kameratyp + + + Orthographic rendering + Ortografisk rendering + + + Perspective rendering + Perspektivrendering + + + + + + + 3D Navigation + 3D Navigering + + + Mouse... + Mus... + + + Intensity of backlight + Intensiteten i bakgrundsbelysningen + + + Enable backlight color + Aktivera bakgrundsbelysningsfärg + + + Orbit style + Orbit stil + + + Turntable + Skivtallrik + + + Trackball + Trackball + + + Invert zoom + Invertera zoom + + + Zoom at cursor + Zooma vid markören + + + Zoom step + Zoom steg + + + + Gui::Dialog::DlgSettings3DViewImp + + %1 navigation + %1 navigering + + + + Gui::Dialog::DlgSettingsColorGradient + + Color model + Färgmodell + + + &Gradient: + &Gradient: + + + red-yellow-green-cyan-blue + röd-gul-grön-cyan-blå + + + blue-cyan-green-yellow-red + blå-cyan-grön-gul-röd + + + white-black + vit-svart + + + black-white + svart-vit + + + Visibility + Synlighet + + + Out g&rayed + Ut g&rå + + + Alt+R + Alt+R + + + Out &invisible + Ut osynl&ig + + + Alt+I + Alt+I + + + Style + Stil + + + &Zero + &Noll + + + Alt+Z + Alt+Z + + + &Flow + &Flöde + + + Alt+F + Alt+F + + + &OK + &Ok + + + &Cancel + &Avbryt + + + Parameter range + Parameterområde + + + Mi&nimum: + Mi&nimum: + + + Ma&ximum: + Ma&ximum: + + + &Labels: + &Etiketter: + + + &Decimals: + &Decimaler: + + + + + + + Color-gradient settings + Färggradient inställningar + + + + Gui::Dialog::DlgSettingsColorGradientImp + + Wrong parameter + Fel parameter + + + The maximum value must be higher than the minimum value. + Maximumvärdet måste vara större än minimumvärdet. + + + + Gui::Dialog::DlgSettingsDocument + + Document + Dokument + + + General + Allmänt + + + Document save compression level +(0 = none, 9 = highest, 3 = default) + Komprimeringsgrad när dokument sparas +(0 = ingen, 9 = högst, 3 = standard) + + + Create new document at start up + Skapa nytt dokument vid uppstart + + + Storage + Lagring + + + Saving transactions (Auto-save) + Spara transaktionerna (autospara) + + + Discard saved transaction after saving document + Förstör sparad transaktion efter att ha sparat dokumentet + + + Save thumbnail into project file when saving document + Spara minibild i projektfilen när dokumentet sparas + + + Create up to backup files when resaving document + Skapa upp till säkerhetskopior när dokumentet omsparas + + + Document objects + Dokumentobjekt + + + Allow duplicate object labels in one document + Tillåt duplicerade objektetiketter i ett dokument + + + Maximum Undo/Redo steps + Maximalt Ångra / Gör om steg + + + Using Undo/Redo on documents + Använder Ångra / Gör om på dokument + + + + Gui::Dialog::DlgSettingsEditorImp + + Text + Text + + + Bookmark + Bokmärke + + + Breakpoint + Brytpunkt + + + Keyword + Nyckelord + + + Comment + Kommentar + + + Block comment + Blockkommentar + + + Number + Nummer + + + String + Sträng + + + Character + Tecken + + + Class name + Klassnamn + + + Define name + Definiera namn + + + Operator + Operator + + + Python output + Python utmatning + + + Python error + Python fel + + + Items + Saker + + + Current line highlight + Nuvarande radmarkering + + + + Gui::Dialog::DlgSettingsImage + + Image settings + Bildinställningar + + + Image properties + Bildegenskaper + + + Back&ground: + Bak&grund: + + + Current + Nuvarande + + + White + Vit + + + Black + Svart + + + Transparent + Transparent + + + Image dimensions + Bildstorlek + + + Pixel + Pixel + + + &Width: + &Bredd: + + + Current screen + Nuvarande fönster + + + Icon 32 x 32 + Ikon 32 x 32 + + + Icon 64 x 64 + Ikon 64 x 64 + + + Icon 128 x 128 + Ikon 128 .x. 128 + + + CGA 320 x 200 + CGA 320 x 200 + + + QVGA 320 x 240 + QVGA 320 x 240 + + + VGA 640 x 480 + VGA 640 x 480 + + + NTSC 720 x 480 + NTSC 720 x 480 + + + PAL 768 x 578 + PAL 768 x 578 + + + SVGA 800 x 600 + SVGA 800 x 600 + + + XGA 1024 x 768 + XGA 1024 x 768 + + + HD720 1280 x 720 + HD720 1280 x 720 + + + SXGA 1280 x 1024 + SXGA 1280 x 1024 + + + SXGA+ 1400 x 1050 + SXGA+ 1400 x 1050 + + + UXGA 1600 x 1200 + UXGA 1600 x 1200 + + + HD1080 1920 x 1080 + HD1080 1920 x 1080 + + + WUXGA 1920 x 1200 + WUXGA 1920 x 1200 + + + QXGA 2048 x 1538 + QXGA 2048 x 1538 + + + WQXGA 2560 x 1600 + WQXGA 2560 x 1600 + + + QSXGA 2560 x 2048 + QSXGA 2560 x 2048 + + + QUXGA 3200 × 2400 + QUXGA 3200 × 2400 + + + HUXGA 6400 × 4800 + HUXGA 6400 × 4800 + + + !!! 10000 x 10000 + !!! 10000 x 10000 + + + Standard sizes: + Standardstorlekar: + + + &Height: + &Höjd: + + + Aspect ratio: + Bildförhållande: + + + &Screen + &Skärm + + + Alt+S + Alt+S + + + &4:3 + &4:3 + + + Alt+4 + Alt+4 + + + 1&6:9 + 1&6:9 + + + Alt+6 + Alt+6 + + + &1:1 + &1:1 + + + Alt+1 + Alt+1 + + + Image comment + Bildkommentar + + + Insert MIBA + Sätt in MIBA + + + Insert comment + Sätt in kommentar + + + + Gui::Dialog::DlgSettingsMacro + + Macro + Makro + + + Macro recording settings + Inställningar för makroinspelning + + + Logging Commands + Loggkommandon + + + Show script commands in python console + Visa skriptkommandon i python konsolen + + + Log all commands issued by menus to file: + Logga alla kommandon startade av menyer till fil: + + + FullScript.FCScript + FullScript.FCScript + + + Gui commands + Gui kommandon + + + Recording GUI commands + Spelar in GUI kommandon + + + Record as comment + Spela in som kommentar + + + Macro path + sökväg för makro + + + General macro settings + Allmänna makroinställningar + + + Run macros in local environment + Kör makron i lokala miljön + + + + Gui::Dialog::DlgSettingsUnits + + Units + Enheter + + + Units settings + Inställningar för enheter + + + Standard (mm/kg/s/degree) + Standard (mm/kg/s/grad) + + + MKS (m/kg/s/degree) + MKS (m/kg/s/grad) + + + Magnitude + Magnitud + + + Unit + Enhet + + + User system: + Användarsystem: + + + Imperial (in/lb) + Brittiska mått (in/lb) + + + + Gui::Dialog::DlgSettingsViewColor + + Colors + Färger + + + Selection + Markering + + + Enable selection highlighting + Aktivera valmarkering + + + Enable preselection highlighting + Aktivera förvalsmarkering + + + Background color + Bakgrundsfärg + + + Middle color + Mellanfärg + + + Color gradient + Färggradient + + + Simple color + Enkel färg + + + Default colors + Standard färger + + + Edited edge color + Redigerad kantfärg + + + Edited vertex color + Redigerad hörnfärg + + + Construction geometry + Konstruktionsgeometri + + + Fully constrained geometry + Helt begränsad geometri + + + The color of vertices being edited + Färgen på hörn som redigeras + + + The color of edges being edited + Färgen på kanter som redigeras + + + The color of construction geometry in edit mode + Färgen på konstruktionsgeometri i redigeringsläget + + + The color of fully constrained geometry in edit mode + Färgen på helt begränsad geometri i redigeringsläge + + + Cursor text color + Markör textfärg + + + Default shape color + Standard formfärg + + + The default color for new shapes + Standardfärgen för nya former + + + Default line width and color + Standard linjebredd och färg + + + The default line color for new shapes + Standard linjefärg för nya former + + + The default line thickness for new shapes + Standard linjetjocklek för nya former + + + px + px + + + + Gui::Dialog::DlgTipOfTheDay + + Tip of the day + Dagens tips + + + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Visste du...</font></font></b> + + + &Show tips at start up + Vi&sa tips vid uppstart + + + Alt+S + Alt+S + + + &Next Tip + &Nästa tips + + + Alt+N + Alt+N + + + &Close + S&täng + + + Alt+C + Alt+C + + + + + + + + Gui::Dialog::DlgTipOfTheDayImp + + Download failed: %1 + + Nedladdning misslyckades:%1 + + + + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + Om du vill läradig mer om FreeCAD så måste du gå till %1 eller klicka på Hjälp i Hjälp-menyn. + + + + Gui::Dialog::DockablePlacement + + Placement + Placering + + + + Gui::Dialog::DownloadDialog + + Download + Hämta + + + Cancel + Avbryt + + + Close + Stäng + + + There already exists a file called %1 in the current directory. Overwrite? + Det finns redan en fil med namnet %1 i den aktuella katalogen. Vill du ersätta den? + + + Unable to save the file %1: %2. + Det gick inte att spara filen %1: %2. + + + Downloading %1. + Ladda ned %1. + + + Download canceled. + Nedladdning avbruten. + + + Download failed: %1. + Nedladdning misslyckades: %1. + + + Downloaded %1 to current directory. + Laddade ned %1 till aktuell katalog. + + + + Gui::Dialog::IconDialog + + Add icon + Lägg till ikon + + + + Gui::Dialog::InputVector + + Input vector + Inmatningsvektor + + + Vector + Vektor + + + Z: + Z: + + + Y: + Y: + + + X: + X: + + + OK + OK + + + + Gui::Dialog::LicenseDialog + + Copyright + Upphovsrätt + + + + Gui::Dialog::MouseButtons + + Mouse buttons + Musknappar + + + Configuration + Konfiguration + + + Selection: + Markering: + + + Panning + Panorering + + + Rotation: + Rotation: + + + Zooming: + Zoomning: + + + + Gui::Dialog::ParameterGroup + + Expand + Expandera + + + Add sub-group + Lägg till undergrupp + + + Remove group + Ta bort grupp + + + Rename group + Döp om grupp + + + Export parameter + Exportera parameter + + + Import parameter + Importera parameter + + + Collapse + Minimera + + + Do really want to remove this parameter group? + Vill du verkligen to bort denna parametergrupp? + + + Existing sub-group + Existerande undergrupp + + + The sub-group '%1' already exists. + Undergruppen '%1' finns redan. + + + Export parameter to file + exportera parameter till fil + + + XML (*.FCParam) + XML(*.FCParam) + + + Import parameter from file + Importera parameter från fil + + + Import Error + Importfel + + + Reading from '%1' failed. + Läsning från '%1' misslyckades. + + + + Gui::Dialog::ParameterValue + + Change value + Ändra värde + + + Remove key + Ta bort nyckel + + + Rename key + Döp om nyckel + + + New + Ny + + + New string item + Ny sträng + + + New float item + Nytt flyttal + + + New integer item + Nytt heltal + + + New unsigned item + Nytt osignerat tal + + + New Boolean item + Nytt booleskt värde + + + Existing item + Existerar + + + The item '%1' already exists. + Saken '%1' finns redan. + + + + Gui::Dialog::Placement + + Placement + Placering + + + OK + OK + + + Translation: + Förflyttning: + + + Z: + Z: + + + Y: + Y: + + + X: + X: + + + Rotation: + Rotation: + + + Angle: + Vinkel: + + + Axis: + Axel: + + + Center: + Centrum: + + + Pitch: + Lutning: + + + Roll: + Rullning: + + + Yaw: + Girning: + + + Rotation axis with angle + Rotera axeln med vinkel + + + Euler angles + Eulervinklar + + + Apply placement changes immediately + Applicera placeringsförändringar omedelbart + + + Apply incremental changes to object placement + applicera stegvisa förändringar på objektplacering + + + Apply + Verkställ + + + Reset + Återställ + + + Close + Stäng + + + + Gui::Dialog::PrintModel + + Button + Knapp + + + Command + Kommando + + + + Gui::Dialog::SceneInspector + + Dialog + Dialog + + + Close + Stäng + + + Refresh + Uppdatera + + + + Gui::Dialog::SceneModel + + Inventor Tree + Inventor träd + + + Nodes + Noder + + + + Gui::Dialog::TextureMapping + + Texture + Struktur + + + Texture mapping + strukturmappning + + + Global + Global + + + Environment + Miljö + + + Image files (%1) + Bildfiler (%1) + + + No image + Ingen bild + + + The specified file is not a valid image file. + Den angivna filen är inte en giltig bildfil. + + + No 3d view + Ingen 3d vy + + + No active 3d view found. + Ingen aktiv 3D-vy hittades. + + + + Gui::Dialog::Transform + + Cancel + Avbryt + + + Transform + Omvandla + + + + Gui::DlgTreeWidget + + Dialog + Dialog + + + Items + Saker + + + OK + OK + + + Cancel + Avbryt + + + + + + + + Gui::DockWnd::CombiView + + CombiView + Kombivy + + + Project + Projekt + + + Tasks + Uppgifter + + + + Gui::DockWnd::HelpView + + Previous + Föregående + + + Next + Nästa + + + Home + Hem + + + Open + Öppna + + + Open file + Öppna fil + + + All HTML files (*.html *.htm) + Alla HTML filer (*.html *.htm) + + + External browser + Extern webbläsare + + + No external browser found. Specify in preferences, please + Någon extern webbläsare hittades inte. Specificera en i inställningarna + + + Starting of %1 failed + Start av %1 misslyckades + + + + Gui::DockWnd::PropertyDockView + + Property View + Egenskapsvy + + + + Gui::DockWnd::ReportOutput + + Logging + Loggning + + + Warning + Varning + + + Error + Fel + + + Options + Alternativ + + + Clear + Rensa + + + Save As... + Spara som... + + + Save Report Output + Spara rapport utmatning + + + Plain Text Files (*.txt *.log) + Rena textfiler (*.txt *.log) + + + Go to end + Gå till slutet + + + Redirect Python output + Dirigera om Pythonutmatning + + + Redirect Python errors + Omdirigera Python fel + + + + Gui::DockWnd::ReportView + + Output + Utmatning + + + Python console + Python konsoll + + + + Gui::DockWnd::SelectionView + + Property View + Egenskapsvy + + + + Gui::DockWnd::TaskPanelView + + Task View + Uppgiftsvy + + + + Gui::DockWnd::TextBrowser + + Could not open file. + Kunde inte öppna fil. + + + You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. + Du försökte öppna adress %1, som för tillfället är otillgänglig. Försäkra dig om att URL:en finns och försök att ladda om sidan. + + + Connecting to %1 + Ansluter till %1 + + + Sending to %1 + Sänder till %1 + + + Reading from %1 + Läser från %1 + + + Download failed: %1. + Nedladdning misslyckades: %1. + + + Previous + Föregående + + + Forward + Framåt + + + Home + Hem + + + Refresh + Uppdatera + + + Copy + Kopiera + + + Select all + Markera allt + + + No description for + Ingen beskrivning för + + + + Gui::DocumentModel + + Application + Applikation + + + Labels & Attributes + Etiketter & attribut + + + + Gui::EditorView + + Modified file + Ändrad fil + + + %1. + +This has been modified outside of the source editor. Do you want to reload it? + %1. + +Denna har ändrats utanför källredigeraren. Vill du ladda om den? + + + Unsaved document + Osparat dokument + + + The document has been modified. +Do you want to save your changes? + Dokumentet har ändrats. +Vill du spara ändringarna? + + + FreeCAD macro (*.FCMacro);;Python (*.py) + FreeCAD makro (*.FCMacro);;Python (*.py) + + + Export PDF + Exportera PDF + + + PDF file (*.pdf) + PDF fil (*.pdf) + + + untitled[*] + utan namn[*] + + + - Editor + - Redigerare + + + %1 chars removed + %1 tecken borttagna + + + %1 chars added + %1 tecken tillagda + + + Formatted + Formatterad + + + + Gui::FileChooser + + Select a file + Välj en fil + + + Select a directory + Välj en katalog + + + + Gui::FileDialog + + Save as + Spara som + + + Open + Öppna + + + + Gui::FileOptionsDialog + + Extended + Utökad + + + All files (*.*) + Alla filer (*.*) + + + + Gui::Flag + + Top left + Topp vänster + + + Bottom left + Botten vänster + + + Top right + Topp höger + + + Bottom right + Botten höger + + + Remove + Ta bort + + + + Gui::InventorNavigationStyle + + Press CTRL and left mouse button + Tryck CTRL och vänster musknapp + + + Press middle mouse button + Tryck på mittre musknapp + + + Press left mouse button + Tryck på vänster musknapp + + + Scroll middle mouse button + Bläddra mittre musknapp + + + + Gui::LocationDialog + + Wrong direction + Fel riktning + + + Direction must not be the null vector + Riktningen får inte vara noll vektorn + + + X + X + + + Y + Y + + + Z + Z + + + User defined... + Användardefinierad... + + + + Gui::LocationWidget + + X: + X: + + + Y: + Y: + + + Z: + Z: + + + Direction: + Riktning: + + + + Gui::MacroCommand + + Macros + Makron + + + + Gui::MainWindow + + Dimension + Dimension + + + Ready + Klar + + + Toggles this toolbar + Växlar denna verktygsrad + + + Toggles this dockable window + Växlar detta dockningsbara fönster + + + Close All + Stäng alla + + + + Gui::ManualAlignment + + Manual alignment + Manuell justering + + + The alignment is already in progress. + Justeringen pågår redan. + + + Alignment[*] + Justering[*] + + + Please, select at least one point in the left and the right view + Välj minst en punkt i den vänstra och den högra vyn + + + Please, select at least %1 points in the left and the right view + Välj minst %1 punkter i den vänstra och den högra vyn + + + Please pick points in the left and right view + Markera punkter i den vänstra och den högra vyn + + + The alignment has finished + Justeringen är klar + + + The alignment has been canceled + Justeringen har avbrutits + + + Too few points picked in the left view. At least %1 points are needed. + För få punkter har markerats i den vänstra vyn. Minst %1 punkter behövs. + + + Too few points picked in the right view. At least %1 points are needed. + För få punkter har markerats i den högra vyn Minst %1 punkter behövs. + + + Different number of points picked in left and right view. +On the left view %1 points are picked, +on the right view %2 points are picked. + Olika antal punkter har markerats i vänster respektive höger vy. +I vänstra vyn har %1 punkter markerats, +I högra vyn har %2 punkter markerats. + + + Try to align group of views + Försök att anpassa vygrupper + + + The alignment failed. +How do you want to proceed? + Anpassningen misslyckades. +Hur vill du fortsätta? + + + Retry + Försök igen + + + Ignore + Ignorera + + + Abort + Avbryt + + + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + Olika antal punkter har markerats i vänster respektive höger vy. I vänstra vyn har %1 punkter markerats, i högra vyn har %2 punkter markerats. + + + Point picked at (%1,%2,%3) + Punkt markerad vid (%1, %2, %3) + + + No point was picked + Ingen punkt markerades + + + + Gui::NetworkRetriever + + Download started... + + Nedladdning startad... + + + + Gui::ProgressBar + + Remaining: %1 + Kvarvarande: %1 + + + Aborting + Avbryter + + + Do you really want to abort the operation? + Vill du verkligen avbryta operationen? + + + + Gui::ProgressDialog + + Remaining: %1 + Kvarvarande: %1 + + + Aborting + Avbryter + + + Do you really want to abort the operation? + Vill du verkligen avbryta operationen? + + + + Gui::PropertyEditor::PropertyModel + + Property + Egenskap + + + Value + Värde + + + + Gui::PropertyView + + View + Vy + + + Data + Data + + + + Gui::PythonConsole + + System exit + Avsluta systemet + + + The application is still running. +Do you want to exit without saving your data? + Applikationen körs fortfarande. +Vill du avsluta utan att spara din data? + + + Python console + Python konsoll + + + Unhandled PyCXX exception. + Ohanterat PyCXX undantag. + + + Unhandled FreeCAD exception. + Ohanterat FreeCAD undantag. + + + Unhandled unknown C++ exception. + Ohanterat okänt C++ undantag. + + + &Copy command + &Kopiera kommando + + + &Copy history + &Kopieringshistorik + + + Save history as... + Spara historik som... + + + Insert file name... + Mata in filnamn... + + + Save History + Spara historik + + + Macro Files (*.FCMacro *.py) + Makrofiler (*.FCMacro *.py) + + + Insert file name + Mata in filnamn + + + All Files (*.*) + Alla filer (*.*) + + + Python Input Dialog + Python inmatningsdialog + + + Unhandled std C++ exception. + Std C++ undantag utan hantering. + + + Word wrap + Radbrytning + + + &Copy + K&opiera + + + &Paste + Klistra &in + + + Select All + Markera allt + + + Clear console + Rensa konsolen + + + + Gui::PythonEditor + + Comment + Kommentar + + + Uncomment + Bortkommentera + + + + Gui::PythonInputField + + OK + OK + + + Clear + Rensa + + + + Gui::RecentFilesAction + + Open file %1 + Öppna fil %1 + + + File not found + Fil ej funnen + + + The file '%1' cannot be opened. + Filen '%1' kan inte öppnas. + + + + Gui::SelectModule + + Select module + Välj modul + + + Open %1 as + Öppna %1 som + + + Select + Markera + + + + Gui::StdCmdDescription + + Help + Hjälp + + + Des&cription + Bes&krivning + + + Long description of commands + Lång beskriving av kommandon + + + + Gui::StdCmdDownloadOnlineHelp + + Help + Hjälp + + + Download online help + Ladda ned online hjälp + + + Download %1's online help + Ladda ned online hjälp för %1 + + + Non-existing directory + Katalogen existerar inte + + + The directory '%1' does not exist. + +Do you want to specify an existing directory? + Katalogen '%1' existerar inte. + +Vill du ange en existerande katalog? + + + Missing permission + Behörighet saknas + + + You don't have write permission to '%1' + +Do you want to specify another directory? + Du har inte behörighet att skriva till '%1' + +Vill du ange en annan katalog? + + + Stop downloading + Stoppa nedladdning + + + + Gui::StdCmdPythonHelp + + Tools + Verktyg + + + Python Modules + Python moduler + + + Opens a browser to show the Python modules + Öppnar en webbläsare för att visa Python modulerna + + + + Gui::TaskBoxAngle + + Angle + Vinkel + + + + Gui::TaskBoxPosition + + Position + Position + + + + Gui::TaskView::TaskAppearance + + Plot mode: + Plottningsläge: + + + Point size: + Punktstorlek: + + + Line width: + Linjebredd: + + + Transparency: + Transparens: + + + Appearance + Utseende + + + Document window: + Dokumentfönstret: + + + + Gui::TaskView::TaskEditControl + + Edit + Redigera + + + + Gui::TaskView::TaskSelectLinkProperty + + Appearance + Utseende + + + ... + ... + + + edit selection + redigera val + + + + Gui::TouchpadNavigationStyle + + Press left mouse button + Tryck på vänster musknapp + + + Press SHIFT button + Tryck på SKIFT-tangenten + + + Press ALT button + Tryck på ALT tangenten + + + Press PgUp/PgDown button + Tryck på PgUp/PgDown tangenten + + + + Gui::TreeDockWidget + + Tree view + Trädvy + + + + Gui::TreeWidget + + Create group... + Skapa grupp... + + + Create a group + Skapa en grupp + + + Group + Grupp + + + Rename + Döp om + + + Rename object + Döp om objekt + + + Labels & Attributes + Etiketter & attribut + + + Application + Applikation + + + Finish editing + Slutför redigering + + + Finish editing object + Slutför redigering av objekt + + + Activate document + Aktivera dokument + + + Activate document %1 + Aktivera dokument %1 + + + + Gui::View3DInventor + + Export PDF + Exportera PDF + + + PDF file (*.pdf) + PDF fil (*.pdf) + + + + Gui::WorkbenchGroup + + Select the '%1' workbench + Välj arbetsbänken '%1' + + + + Position + + Form + Form + + + X: + X: + + + Y: + Y: + + + Z: + Z: + + + 0.1 mm + 0,1 mm + + + 0.5 mm + 0,5 mm + + + 1 mm + 1 mm + + + 2 mm + 2 mm + + + 5 mm + 5 mm + + + 10 mm + 10 mm + + + 20 mm + 20 mm + + + 50 mm + 50 mm + + + 100 mm + 100 mm + + + 200 mm + 200 mm + + + 500 mm + 500 mm + + + 1 m + 1 m + + + 2 m + 2 m + + + 5 m + 5 m + + + Grid Snap in + Snäpp i rutnät på + + + + QDockWidget + + Tree view + Trädvy + + + Property view + Egenskapsvy + + + Selection view + Markeringsvy + + + Report view + Rapportvy + + + Task View + Uppgiftsvy + + + Combo View + Kombinerad vy + + + Toolbox + Verktygslåda + + + Python console + Python konsoll + + + Display properties + Fönsteregenskaper + + + + QObject + + General + Allmänt + + + Display + Fönster + + + Unknown filetype + Okänd filtyp + + + Cannot open unknown filetype: %1 + Kan inte öppna okänd filtyp: %1 + + + Cannot save to unknown filetype: %1 + Kan inte spara till okänd filtyp: %1 + + + Workbench failure + Fel på arbetsbänk + + + %1 + %1 + + + Unable to launch Qt Assistant (%1) + Kan inte starta Qt assistent (%1) + + + Exception + Undantag + + + Open document + Öppna dokument + + + Import file + importera fil + + + Export file + Exportera fil + + + Printing... + Skriver ut... + + + Cannot load workbench + Kan inte ladda arbetsbänk + + + A general error occurred while loading the workbench + Ett allmänt fel uppstod medan arbetsbänken laddades + + + Save views... + Spara vyer... + + + Load views... + Ladda vyer... + + + Freeze view + Frys vy + + + Clear views + Rensa vyer + + + Restore view &%1 + Återställ vy &%1 + + + Save frozen views + Spara frusna vyer + + + Frozen views (*.cam) + Frusna vyer (*.cam) + + + Restore views + Återställ vyer + + + Importing the restored views would clear the already stored views. +Do you want to continue? + Att importera de återställda vyerna kommer att förstöra de vyer som sparats. +vill du fortsätta? + + + Restore frozen views + Återställ frusna vyer + + + Cannot open file '%1'. + Kan inte öppna fil '%1'. + + + Docked + Dockad + + + Undocked + Odockad + + + Fullscreen + Fullskärm + + + files + Filer + + + Save picture + Spara bild + + + New sub-group + Ny undergrupp + + + Enter the name: + Skriv in namnet: + + + New text item + Ny text + + + Enter your text: + Mata in din text: + + + New integer item + Nytt heltal + + + Enter your number: + Mata in ditt nummer: + + + New unsigned item + Nytt osignerat tal + + + New float item + Nytt flyttal + + + New Boolean item + Nytt booleskt värde + + + Choose an item: + Välj en sak: + + + Rename group + Döp om grupp + + + The group '%1' cannot be renamed. + Gruppen '%1' kan inte döpas om. + + + Existing group + Gruppen existerar redan + + + The group '%1' already exists. + Gruppen '%1' existerar redan. + + + Change value + Ändra värde + + + Save document under new filename... + Spara dokumentet med ett nytt filnamn... + + + Saving aborted + Sparning avbruten + + + Unsaved document + Osparat dokument + + + Save document before close? + Spara dokument innan stängning? + + + Save Macro + Spara Makro + + + Finish + Gör klart + + + Clear + Rensa + + + Cancel + Avbryt + + + Inner + Inre + + + Outer + Yttre + + + No Browser + Ingen webbläsare + + + Unable to open your browser. + +Please open a browser window and type in: http://localhost:%1. + Kan inte öppna din webbläsare. + +Öppna ett fönster i en webbläsare och skriv in : hppt://localhost:%1. + + + No Server + Ingen server + + + Unable to start the server to port %1: %2. + Kan inte starta server till port %1: %2. + + + Unable to open your system browser. + Kan inte öppna din systemwebbläsare. + + + Options... + Alternativ... + + + Out of memory + Slut på minne + + + Not enough memory available to display the data. + Det finns inte tillräckligt med minne för att visa datan. + + + Cannot find file %1 + Kan inte finna fil %1 + + + Cannot find file %1 neither in %2 nor in %3 + Kan inte finna fil %1, varken i %2 eller i %3 + + + Save %1 Document + Spara %1 dokument + + + %1 document (*.FCStd) + %1 dokument (*.FCStd) + + + Save As + Spara som + + + %1 already exists. +Do you want to replace it? + %1 finns redan. +Vill du ersätta den? + + + Document not closable + Dokumentet kan ej stängas + + + The document is not closable for the moment. + Dokumentet kan inte stängas för tillfället. + + + No OpenGL + Inga OpenGL + + + This system does not support OpenGL + Detta system har inte stöd för OpenGL + + + Help + Hjälp + + + Unable to load documentation. +In order to load it Qt 4.4 or higher is required. + Det gick inte att ladda dokumentationen. +För att läsa in den så krävs Qt 4.4 eller högre. + + + %1 Help + %1 Hjälp + + + Exporting PDF... + Exporterar PDF ... + + + Wrong selection + Fel val + + + Only one object selected. Please select two objects. +Be aware the point where you click matters. + Endast ett objekt markerat. Välj två objekt. +Tänk på det har betydelse var du klickar. + + + Please select two objects. +Be aware the point where you click matters. + Välj två objekt. +Tänk på att det har betydelse var du klickar. + + + New boolean item + Nytt booleskt objekt + + + Navigation styles + Navigationsstilar + + + %1 navigation + %1 navigering + + + Move annotation + Flytta annotering + + + Transform + Omvandla + + + The document is in editing mode and thus cannot be closed for the moment. +You either have to finish or cancel the editing in the task panel. + Dokumentet är i redigeringsläge och kan därför inte stängas för tillfället. Du måste antingen avsluta eller avbryta redigeringen i uppgiftspanelen. + + + + StdBoxSelection + + Standard-View + Standardvy + + + Box selection + Lådmarkering + + + + StdCmdAbout + + Help + Hjälp + + + &About %1 + O&m %1 + + + About %1 + Om %1 + + + + StdCmdAboutQt + + Help + Hjälp + + + About &Qt + Om &Qt + + + About Qt + Om Qt + + + + StdCmdActivateNextWindow + + Window + Fönster + + + Ne&xt + &Nästa + + + Activate next window + Aktivera nästa fönster + + + + StdCmdActivatePrevWindow + + Window + Fönster + + + Pre&vious + &Föregående + + + Activate previous window + Aktivera föregående fönster + + + + StdCmdAlignment + + Edit + Redigera + + + Alignment... + Justering... + + + Align the selected objects + Justera de markerade objekten + + + + StdCmdArrangeIcons + + Window + Fönster + + + Arrange &Icons + Arrangera &Ikoner + + + Arrange Icons + Arrangera Ikoner + + + + StdCmdAxisCross + + Standard-View + Standardvy + + + Toggle axis cross + Växla axelkors + + + + StdCmdCascadeWindows + + Window + Fönster + + + &Cascade + &Överlappande + + + Tile pragmatic + Överlappa pragmatiskt + + + + StdCmdCloseActiveWindow + + Window + Fönster + + + Cl&ose + S&täng + + + Close active window + Stäng aktivt fönster + + + + StdCmdCloseAllWindows + + Window + Fönster + + + Close Al&l + Stäng a&llt + + + Close all windows + Stäng alla fönster + + + + StdCmdCommandLine + + Tools + Verktyg + + + Start command &line... + Starta kommando&rad... + + + Opens the command line in the console + Öppnar kommandoraden i konsollen + + + + StdCmdCopy + + Edit + Redigera + + + C&opy + K&opiera + + + Copy operation + Kopiera operation + + + + StdCmdCut + + Edit + Redigera + + + &Cut + &Klipp ut + + + Cut out + Klipp ut + + + + StdCmdDelete + + Edit + Redigera + + + &Delete + Ra&dera + + + Deletes the selected objects + Raderar de valda objekten + + + + StdCmdDemoMode + + Standard-View + Standardvy + + + View turntable... + Visa vridbord... + + + View turntable + Visa vridbord + + + + StdCmdDlgCustomize + + Tools + Verktyg + + + Cu&stomize... + Anpa&ssa... + + + Customize toolbars and command bars + Anpassa verktygs- och kommandorader + + + + StdCmdDlgMacroExecute + + Macros ... + Makron... + + + Opens a dialog to let you execute a recorded macro + Öppnar en dialog som låter dig utföra ett inspelat makro + + + Macro + Makro + + + + StdCmdDlgMacroExecuteDirect + + Macro + Makro + + + Execute macro + Utför makro + + + Execute the macro in the editor + Kör makrot i redigeraren + + + + StdCmdDlgMacroRecord + + &Macro recording ... + &Makroinspelning... + + + Opens a dialog to record a macro + Öppnar en dialog för att spela in ett makro + + + Macro + Makro + + + + StdCmdDlgParameter + + Tools + Verktyg + + + E&dit parameters ... + Re&digera parametrar... + + + Opens a Dialog to edit the parameters + Öppnar en dialog för att redigera parametrarna + + + + StdCmdDlgPreferences + + Tools + Verktyg + + + &Preferences ... + Alt&ernativ... + + + Opens a Dialog to edit the preferences + Öppnar en dialogför att redigera alternativen + + + + StdCmdDockViewMenu + + View + Vy + + + Vie&ws + &Vyer + + + Toggles this window + Växlar detta fönster + + + + StdCmdDrawStyle + + Standard-View + Standardvy + + + Draw style + Ritstil + + + + StdCmdDuplicateSelection + + Edit + Redigera + + + Duplicate selection + Dubblerad markering + + + Put duplicates of the selected objects to the active document + Lägg kopior av de markerade objekten till det aktiva dokumentet + + + + StdCmdEdit + + Edit + Redigera + + + Toggle &Edit mode + Växla R&edigera läge + + + Toggles the selected object's edit mode + Växlar det markerade objektets redigeringsläge + + + Enters or leaves the selected object's edit mode + Går in i eller lämnar det markerade objektets redigeringsläge + + + + StdCmdExport + + File + Fil + + + &Export... + &Exportera... + + + Export an object in the active document + Exportera ett objekt i det aktiva dokumentet + + + No selection + Inget val + + + Please select first the objects you want to export. + Markera först de objekt som du vill exportera. + + + + StdCmdExportGraphviz + + Tools + Verktyg + + + Dependency graph... + Beroende diagram... + + + Show the dependency graph of the objects in the active document + Visa objektens beroendediagram i det aktiva dokumentet + + + + StdCmdFeatRecompute + + File + Fil + + + &Recompute + Be&räkna om + + + Recompute feature or document + Omberäkna föremål eller dokument + + + + StdCmdFreeCADWebsite + + Help + Hjälp + + + FreeCAD Website + FreeCAD webbplats + + + The FreeCAD website + FreeCAD's webbplats + + + + StdCmdFreezeViews + + Standard-View + Standardvy + + + Freeze display + Frys skärmen + + + Freezes the current view position + Fryser den nuvarande vypositionen + + + + StdCmdHideObjects + + Standard-View + Standardvy + + + Hide all objects + Dölj alla objekt + + + Hide all objects in the document + Dölj alla objekt i dokumentet + + + + StdCmdHideSelection + + Standard-View + Standardvy + + + Hide selection + Dölj markering + + + Hide all selected objects + Dölj alla markerade objekt + + + + StdCmdImport + + File + Fil + + + &Import... + &Importera... + + + Import a file in the active document + Importera en fil i det aktiva dokumentet + + + Supported formats + Stödda format + + + All files (*.*) + Alla filer (*.*) + + + + StdCmdMacroStartDebug + + Macro + Makro + + + Debug macro + Felsök makro + + + Start debugging of macro + Starta felsökning av makro + + + + StdCmdMacroStepOver + + Macro + Makro + + + Step over + Stega förbi + + + + StdCmdMacroStopDebug + + Macro + Makro + + + Stop debugging + Stoppa felsökning + + + Stop debugging of macro + Stoppa felsökning av makro + + + + StdCmdMacroStopRecord + + Macro + Makro + + + S&top macro recording + S&toppa makroinspelning + + + Stop the macro recording session + Stoppa makroinspelningssessionen + + + + StdCmdMeasureDistance + + View + Vy + + + Measure distance + Mät avstånd + + + + StdCmdMeasurementSimple + + Tools + Verktyg + + + Measures distance between two selected objects + Mäter avståndet mellan två valda objekt + + + Measure distance + Mät avstånd + + + + StdCmdMergeProjects + + File + Fil + + + Merge project... + Sammanfoga projekt ... + + + Merge project + Sammanfoga projekt + + + %1 document (*.fcstd) + %1 dokument (*.fcstd) + + + Cannot merge project with itself. + Kan inte slå samman projektet med sig själv. + + + + StdCmdNew + + File + Fil + + + &New + &Ny + + + Create a new empty document + Skapa ett nytt tomt dokument + + + + StdCmdOnlineHelp + + Help + Hjälp + + + Show help to the application + Visa hjälp för applikationen + + + + StdCmdOnlineHelpWebsite + + Help + Hjälp + + + Help Website + Hjälpwebbplats + + + The website where the help is maintained + Den webbplats där hjälp erhålls + + + + StdCmdOpen + + File + Fil + + + &Open... + &Öppna... + + + Open a document or import files + Öppna ett dokument eller importera filer + + + Supported formats + Stödda format + + + All files (*.*) + Alla filer (*.*) + + + + StdCmdPaste + + Edit + Redigera + + + &Paste + Klistra &in + + + Paste operation + Klistra in operation + + + + StdCmdPlacement + + Edit + Redigera + + + Placement... + Placering... + + + Place the selected objects + Placera de markerade objekten + + + + StdCmdPrint + + File + Fil + + + &Print... + S&kriv ut... + + + Print the document + Skriv ut dokumentet + + + + StdCmdPrintPdf + + File + Fil + + + &Export PDF... + Exportera &PDF... + + + Export the document as PDF + Exportera dokumentet som PDF + + + + StdCmdPrintPreview + + File + Fil + + + &Print preview... + &Förhandsgranska ... + + + Print the document + Skriv ut dokumentet + + + Print preview + Förhandsgranska + + + + StdCmdProjectInfo + + File + Fil + + + Project i&nformation... + Projekti&nformation... + + + Show details of the currently active project + Visar detaljer om det aktiva projektet + + + + StdCmdProjectUtil + + Tools + Verktyg + + + Project utility... + Projekt verktyg... + + + Utility to extract or create project files + Verktyg för att extrahera eller skapa projektfiler + + + + StdCmdPythonWebsite + + Help + Hjälp + + + Python Website + Python webbplats + + + The official Python website + Den officiella Python webbplatsen + + + + StdCmdQuit + + File + Fil + + + E&xit + A&vsluta + + + Quits the application + Avslutar applikationen + + + + StdCmdRandomColor + + File + Fil + + + Random color + Slumpmässig färg + + + + StdCmdRecentFiles + + File + Fil + + + Recent files + Nyligen öppnade filer + + + Recent file list + Lista över nyligen öppnade filer + + + + StdCmdRedo + + Edit + Redigera + + + &Redo + Gö&r om + + + Redoes a previously undone action + Gör om en tidigare ångrad aktion + + + + StdCmdRefresh + + Edit + Redigera + + + &Refresh + &Uppdatera + + + Recomputes the current active document + Beräknar om det aktiva dokumentet + + + + StdCmdSave + + File + Fil + + + &Save + &Spara + + + Save the active document + Spara det aktiva dokumentet + + + + StdCmdSaveAs + + File + Fil + + + Save &As... + Spara s&om... + + + Save the active document under a new file name + Sparar det aktiva dokumentet med ett nytt filnamn + + + + StdCmdSceneInspector + + Tools + Verktyg + + + Scene inspector... + Sceninspektör... + + + Scene inspector + Sceninspektör + + + + StdCmdSelectAll + + Edit + Redigera + + + Select &All + Markera &allt + + + Select all + Markera allt + + + + StdCmdSetAppearance + + Standard-View + Standardvy + + + Appearance... + Utseende... + + + Sets the display properties of the selected object + Ställer in det markerade objektets visningsegenskaper + + + + StdCmdShowObjects + + Standard-View + Standardvy + + + Show all objects + Visa alla objekt + + + Show all objects in the document + Visa alla objekt i dokumentet + + + + StdCmdShowSelection + + Standard-View + Standardvy + + + Show selection + Visa markering + + + Show all selected objects + Visa alla markerade objekt + + + + StdCmdStatusBar + + View + Vy + + + Status bar + statusfält + + + Toggles the status bar + Växlar statusfältet + + + + StdCmdTextureMapping + + Tools + Verktyg + + + Texture mapping... + strukturmappning... + + + Texture mapping + strukturmappning + + + + StdCmdTileWindows + + Window + Fönster + + + &Tile + &Överlappa + + + Tile the windows + Överlappa fönstren + + + + StdCmdToggleBreakpoint + + Macro + Makro + + + Toggle breakpoint + Växla brytpunkt + + + + StdCmdToggleClipPlane + + Standard-View + Standardvy + + + Clipping plane + Klippningsplan + + + Toggles clipping plane for active view + Växlar klippningsplan för den aktiva vyn + + + + StdCmdToggleNavigation + + Standard-View + Standardvy + + + Toggle navigation/Edit mode + Växla navigations/redigeringsläge + + + Toggle between navigation and edit mode + Växla mellan navigering och redigeringsläge + + + + StdCmdToggleObjects + + Standard-View + Standardvy + + + Toggle all objects + Växla alla objekt + + + Toggles visibility of all objects in the active document + Växlar alla objektens synlighet i det aktiva dokumentet + + + + StdCmdToggleSelectability + + Standard-View + Standardvy + + + Toggle selectability + Växla Valbarhet + + + Toggles the property of the objects to get selected in the 3D-View + Växlar objektens egenskaper för att bli markerade i 3D-vyn + + + + StdCmdToggleVisibility + + Standard-View + Standardvy + + + Toggle visibility + Växla synlighet + + + Toggles visibility + Växlar synligheten + + + + StdCmdToolBarMenu + + View + Vy + + + Tool&bars + &Verktygslådor + + + Toggles this window + Växlar detta fönster + + + + StdCmdTransform + + Edit + Redigera + + + Transform... + Omvandla... + + + Transform the geometry of selected objects + Omvandla geometrin för markerade objekt + + + + StdCmdTreeSelection + + View + Vy + + + Go to selection + Gå till markering + + + Scroll to first selected item + Rulla till den först valda saken + + + + StdCmdUndo + + Edit + Redigera + + + &Undo + Ån&gra + + + Undo exactly one action + Ångra exakt en aktion + + + + StdCmdUserInterface + + View + Vy + + + Dock views + Docka vyer + + + Dock all top-level views + Docka alla toppnivå vyer + + + + StdCmdViewAxo + + Standard-View + Standardvy + + + Axometric + Axonometrisk + + + Set to axometric view + Ställ in till axonometrisk vy + + + + StdCmdViewBottom + + Standard-View + Standardvy + + + Bottom + Botten + + + Set to bottom view + Ställ in till bottenvy + + + + StdCmdViewCreate + + Standard-View + Standardvy + + + Create new view + Skapa ny vy + + + Creates a new view window for the active document + Skapar ett nytt visningsfönster för det aktiva dokumentet + + + + StdCmdViewExample1 + + Standard-View + Standardvy + + + Inventor example #1 + Inventor exempel #1 + + + Shows a 3D texture with manipulator + Visar en 3D struktur med manipulator + + + + StdCmdViewExample2 + + Standard-View + Standardvy + + + Inventor example #2 + Inventor exempel #2 + + + Shows spheres and drag-lights + Visar sfärer och släpljus + + + + StdCmdViewExample3 + + Standard-View + Standardvy + + + Inventor example #3 + Inventor exempel #3 + + + Shows a animated texture + Visar en animerad struktur + + + + StdCmdViewFitAll + + Standard-View + Standardvy + + + Fit all + Passa allt + + + Fits the whole content on the screen + Anpassar så allt får plats på skärmen + + + + StdCmdViewFitSelection + + Standard-View + Standardvy + + + Fit selection + Passa markering + + + Fits the selected content on the screen + Anpassar det markerade innehållet på skärmen + + + + StdCmdViewFront + + Standard-View + Standardvy + + + Front + Front + + + Set to front view + Ställ in till frontvy + + + + StdCmdViewIvIssueCamPos + + Standard-View + Standardvy + + + Issue camera position + Tilldela kameraposition + + + Issue the camera position to the console and to a macro, to easily recall this position + Tilldela kamerapositionen till konsolen och till ett makro, för att lätt återkalla denna position + + + + StdCmdViewIvStereoInterleavedColumns + + Standard-View + Standardvy + + + Stereo Interleaved Columns + Stereo interfolierade kolumner + + + Switch stereo viewing to Interleaved Columns + Växla stereovisning till interfolierade kolumner + + + + StdCmdViewIvStereoInterleavedRows + + Standard-View + Standardvy + + + Stereo Interleaved Rows + Stereo interfolierade rader + + + Switch stereo viewing to Interleaved Rows + Växla stereovisning till interfolierade rader + + + + StdCmdViewIvStereoOff + + Standard-View + Standardvy + + + Stereo Off + Stereo av + + + Switch stereo viewing off + Stänger av stereovisning + + + + StdCmdViewIvStereoQuadBuff + + Standard-View + Standardvy + + + Stereo quad buffer + Stereo quad buffer + + + Switch stereo viewing to quad buffer + Växla stereovisning till quad buffer + + + + StdCmdViewIvStereoRedGreen + + Standard-View + Standardvy + + + Stereo red/green + Stereo röd/grön + + + Switch stereo viewing to red/green + Ändra stereovisning till röd/grön + + + + StdCmdViewLeft + + Standard-View + Standardvy + + + Left + Vänster + + + Set to left view + Ställ in till vänstervy + + + + StdCmdViewRear + + Standard-View + Standardvy + + + Rear + Bak + + + Set to rear view + Ställ in till bakvy + + + + StdCmdViewRight + + Standard-View + Standardvy + + + Right + Höger + + + Set to right view + Ställ in till högervy + + + + StdCmdViewRotateLeft + + Standard-View + Standardvy + + + Rotate Left + Rotera vänster + + + Rotate the view by 90° counter-clockwise + Rotera vyn 90° moturs + + + + StdCmdViewRotateRight + + Standard-View + Standardvy + + + Rotate Right + Rotera höger + + + Rotate the view by 90° clockwise + Rotera vyn 90° medurs + + + + StdCmdViewTop + + Standard-View + Standardvy + + + Top + Topp + + + Set to top view + Ställ in till toppvy + + + + StdCmdWhatsThis + + Help + Hjälp + + + &What's This? + &Förklaring? + + + What's This + Förklaring + + + + StdCmdWindows + + Window + Fönster + + + &Windows... + &Fönster... + + + Windows list + Fönsterlista + + + + StdCmdWindowsMenu + + Window + Fönster + + + Activates this window + Aktiverar detta fönster + + + + StdCmdWorkbench + + View + Vy + + + Workbench + Arbetsbänk + + + Switch between workbenches + Växla mellan arbetsbänkar + + + + StdOrthographicCamera + + Standard-View + Standardvy + + + Orthographic view + Ortografisk vy + + + Switches to orthographic view mode + Växlar till ortografiskt visningsläge + + + + StdPerspectiveCamera + + Standard-View + Standardvy + + + Perspective view + Perspektiv vy + + + Switches to perspective view mode + Växlar till perspektivt visningsläge + + + + StdViewBoxZoom + + Standard-View + Standardvy + + + Box zoom + Låd zoom + + + + StdViewDockUndockFullscreen + + Standard-View + Standardvy + + + Document window + Dokumentfönstret + + + Display the active view either in fullscreen, in undocked or docked mode + Visa den aktiva vyn i fullskärm, i odockat eller i dockat läge + + + + StdViewScreenShot + + Standard-View + Standardvy + + + Save picture... + Spara bild... + + + Creates a screenshot of the active view + Ta en skärmbild på den aktiva vyn + + + + StdViewZoomIn + + Standard-View + Standardvy + + + Zoom In + Zooma in + + + + StdViewZoomOut + + Standard-View + Standardvy + + + Zoom Out + Zooma ut + + + + Std_DrawStyle + + As is + Som är + + + Normal mode + Normalt läge + + + Wireframe + Trådram + + + Wireframe mode + Trådramsläge + + + + Std_ExportGraphviz + + Graphviz not found + Graphviz hittades inte + + + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + Graphviz kunde inte hittas på datorn. Vill du ange dess installationssökväg om det redan är installerat? + + + Graphviz installation path + Graphviz installationssökväg + + + Dependency graph + Beroendediagram + + + Graphviz failed + Graphviz misslyckades + + + Graphviz failed to create an image file + Graphviz lyckades inte skapa en avbildningsfil + + + + Workbench + + &File + &Arkiv + + + &Edit + R&edigera + + + Standard views + Standardvyer + + + &Stereo + &Stereo + + + &Zoom + &Zoom + + + Visibility + Synlighet + + + &View + &Visa + + + &Tools + &Verktyg + + + &Macro + &Makro + + + &Windows + &Fönster + + + &On-line help + &Online hjälp + + + &Help + &Hjälp + + + File + Fil + + + Macro + Makro + + + View + Vy + + + Special Ops + Special operationer + + + + testClass + + test + Test + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Skapad för Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + + + Choose the style of the Task Panel + Välj stil på uppgiftspanelen + + + Default + Standard + + + Windows XP + Windows XP + + + diff --git a/src/Gui/Language/FreeCAD_tr.qm b/src/Gui/Language/FreeCAD_tr.qm new file mode 100644 index 000000000..fe5b97072 Binary files /dev/null and b/src/Gui/Language/FreeCAD_tr.qm differ diff --git a/src/Gui/Language/FreeCAD_tr.ts b/src/Gui/Language/FreeCAD_tr.ts new file mode 100644 index 000000000..8bb95b66a --- /dev/null +++ b/src/Gui/Language/FreeCAD_tr.ts @@ -0,0 +1,5827 @@ + + + + + Angle + + Form + Şekil: + + + A: + A: + + + B: + B: + + + C: + C: + + + Angle Snap + Angle Snap + + + 1 ° + 1 ° + + + 2 ° + 2 ° + + + 5 ° + 5 ° + + + 10 ° + 10 ° + + + 20 ° + 20 ° + + + 45 ° + 45 ° + + + 90 ° + 90 ° + + + 180 ° + 180 ° + + + + Gui::AccelLineEdit + + none + hiçbiri + + + + Gui::ActionSelector + + Available: + Available: + + + Selected: + Selected: + + + Add + Ekle + + + Remove + Kaldır + + + Move up + Yukarı taşı + + + Move down + Aşağı taşı + + + + Gui::AlignmentView + + Movable object + Movable object + + + Fixed object + Fixed object + + + + Gui::BlenderNavigationStyle + + Press left mouse button + Sol fare düğmesine basın + + + Press SHIFT and middle mouse button + SHIFT ve farenin ortadaki düğmesine basın + + + Press middle mouse button + Orta fare düğmesine basın + + + Scroll middle mouse button + Fare tekerleğini kaydırın + + + + Gui::CADNavigationStyle + + Press left mouse button + Sol fare düğmesine basın + + + Press middle mouse button + Orta fare düğmesine basın + + + Press left and middle mouse button + Sağ ve orta fare düğmesine basma + + + Scroll middle mouse button + Fare tekerleğini kaydırın + + + + Gui::Command + + Standard + Standart + + + + Gui::ContainerDialog + + &OK + &Tamam + + + &Cancel + &İptal + + + + Gui::ControlSingleton + + Task panel + Görev paneli + + + + Gui::Dialog::AboutApplication + + About + Hakkında + + + Revision number + Sürüm numarası + + + Version + Sürüm + + + OK + Tamam + + + + + + + Release date + Yayım tarihi + + + Platform + Platform + + + License... + Lisans... + + + Copy to clipboard + Copy to clipboard + + + + Gui::Dialog::ButtonModel + + Button %1 + Düğme %1 + + + Out Of Range + Aralığın dışında + + + + Gui::Dialog::CommandModel + + Commands + Komutlar + + + + Gui::Dialog::DemoMode + + View Turntable + Döner tablayı göster + + + Speed + Hız + + + Maximum + Maksimum + + + Minimum + minimum + + + Fullscreen + Tam ekran + + + Enable timer + geri sayım sayacını etkinleştir + + + s + s + + + Angle + Angle + + + 90° + 90° + + + -90° + -90° + + + Play + Play + + + Stop + Dur + + + Close + Kapat + + + + Gui::Dialog::DlgActivateWindow + + Choose Window + Pencere Seç + + + &Activate + &Etkinleştir + + + Alt+A + Alt+A + + + &Cancel + &İptal + + + + + + + + Gui::Dialog::DlgActivateWindowImp + + Windows + Pencereler + + + + Gui::Dialog::DlgAuthorization + + Authorization + Yetkilendirme + + + &OK + &Tamam + + + &Cancel + &İptal + + + Password: + Şifre: + + + User name: + Kullanıcı adı: + + + + + + + + Gui::Dialog::DlgChooseIcon + + Choose Icon + Simge Seç + + + OK + Tamam + + + Cancel + İptal et + + + Add icons... + Simge Ekle... + + + + Gui::Dialog::DlgCustomActions + + Macros + Makrolar + + + Setup Custom Macros + Özel Makroları Kur + + + Macro: + Makro: + + + ... + ... + + + Pixmap + Benek haritası + + + Accelerator: + Hızlandırıcı: + + + What's this: + Bu nedir: + + + Status text: + Durum metni: + + + Tool tip: + Araçlar için ipucu: + + + Menu text: + Menü metni: + + + Add + Ekle + + + Remove + Kaldır + + + Replace + Değiştir + + + + Gui::Dialog::DlgCustomActionsImp + + Icons + Simgeler + + + Macros + Makrolar + + + No macro + Makro yok + + + No macros found. + Hiç makro bulunamadı. + + + Macro not found + Makro bulunamadı + + + Sorry, couldn't find macro file '%1'. + Üzgünüm, makro dosyası '% 1' bulunamadı. + + + Empty macro + Boş makro + + + Please specify the macro first. + Lütfen önce makro belirtin. + + + Empty text + Boş metin + + + Please specify the menu text first. + Lütfen önce menü metnini belirtin. + + + No item selected + Öğe seçilmedi + + + Please select a macro item first. + Lütfen önce bir makro öğesini seçin. + + + + Gui::Dialog::DlgCustomCommands + + Commands + Komutlar + + + + + + + + Gui::Dialog::DlgCustomCommandsImp + + Category + Kategori + + + Icon + Simge + + + Command + Komut + + + + Gui::Dialog::DlgCustomKeyboard + + Keyboard + Klavye + + + Description: + Açıklama: + + + &Category: + Kategori: + + + C&ommands: + Komutlar + + + Current shortcut: + Geçerli kısayol: + + + Press &new shortcut: + &new yeni kısayolu: + + + Currently assigned to: + Şu anda atanan: + + + &Assign + & Ata + + + Alt+A + Alt+A + + + &Reset + &Sıfırla + + + Alt+R + Alt+R + + + Re&set All + Hepsini tekrar &set + + + Alt+S + Alt+S + + + + + + + + Gui::Dialog::DlgCustomKeyboardImp + + Icon + Simge + + + Command + Komut + + + none + hiçbiri + + + Multiple defined shortcut + Birden fazla kere tanımlanmış kısayol + + + The shortcut '%1' is defined more than once. This could result into unexpected behaviour. + Kısayol '% 1' den fazla kez tanımlanır. Bu beklenmedik davranışlara neden olabilir. + + + Already defined shortcut + Önceden tanımlanmış kısayol + + + The shortcut '%1' is already assigned to '%2'. + +Please define another shortcut. + '%1' kısayolu zaten '%2' kısayoluna atanmış. + + + + Gui::Dialog::DlgCustomToolBoxbarsImp + + Toolbox bars + Araç kutusu çubukları + + + + Gui::Dialog::DlgCustomToolbars + + Toolbars + Araç çubukları + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head> <body style="white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style="font-weight:600;"> Not:</span> değişiklikler uygun tezgah yükledikten sonra aktif hale gelecek</p></body></html> + + + Move right + Sağa hareket + + + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Seçili öğeyi bir düzey yukarıya taşı</b><p>Bu da üst öğe düzeyini değiştirecek.</p> + + + Move left + Sola hareket + + + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Seçili öğeyi bir düzey yukarıya taşı</b><p>Bu da üst öğe düzeyini değiştirecek.</p> + + + Move down + Aşağı taşı + + + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Seçili öğeyi aşağı taşı.</b><p>Öğe hiyerarşi düzeyi içinde taşınacak.</p> + + + Move up + Yukarı taşı + + + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Seçili öğeyi aşağı taşı.</b><p>Öğe hiyerarşi düzeyi içinde taşınacak.</p> + + + New... + Yeni... + + + Rename... + Yeniden adlandır... + + + Delete + Sil + + + Icon + Simge + + + Command + Komut + + + <Separator> + <Ayraç> + + + New toolbar + Yeni araç çubuğu + + + Toolbar name: + Araç çubuğu adı: + + + Duplicated name + Yinelenen isim + + + The toolbar name '%1' is already used + Araç çubuğu adı '% 1' zaten kullanılıyor + + + Rename toolbar + Araç çubuğu yeniden adlandırın + + + + + + + + Gui::Dialog::DlgCustomizeImp + + Customize + Özelleştir + + + &Help + &Yardım + + + &Close + Kapat + + + + Gui::Dialog::DlgCustomizeSpaceball + + Spaceball + Spaceball + + + No Spaceball Present + Spaceball yok + + + Buttons + Düğmeler + + + Clear + Temizle + + + Print Reference + Print Reference + + + + Gui::Dialog::DlgDisplayProperties + + Display properties + Görüntü özellikleri + + + Display + Ekran + + + Transparency: + Şeffaflık: + + + Line width: + Çizgi genişliği: + + + Point size: + Nokta boyutu: + + + Material + Malzeme + + + ... + ... + + + Close + Kapat + + + Viewing mode + Görüntüleme kipi + + + Plot mode: + Çizim kipi: + + + + + + + Line transparency: + Line transparency: + + + Line color: + Line color: + + + Shape color: + Shape color: + + + Color plot: + Renkli çizim: + + + Document window: + Document window: + + + + Gui::Dialog::DlgEditorSettings + + Editor + Düzenleyici + + + Options + Seçenekler + + + Enable line numbers + Satır numaralarını etkinleştir + + + Enable folding + Katlamayı etkinleştir + + + Indentation + Girinti + + + Insert spaces + Boşluk ekle + + + Tab size: + Sekme boyutu: + + + Indent size: + Girinti boyutu: + + + Keep tabs + Sekmeleri tutun + + + Display Items + Öğeleri görüntüle + + + Family: + Ailesi: + + + Size: + Boyut: + + + Preview: + Önizleme: + + + + + + + + Gui::Dialog::DlgGeneral + + General + Genel + + + Start up + Başlangıç + + + Enable splash screen at start up + Giriş ekranını başlangıçta etkinleştir + + + Switch to tab of report window: + Rapor sekmesine geçin: + + + Auto load module after start up: + Tekrar başlattıktan sonra kitaplığı çalıştır: + + + Language + Dil + + + Change language: + Dili değiştir: + + + Main window + Ana pencere + + + Size of recent file list + En son dosyalar listesinin uzunluğu + + + Window style: + Pencere stili: + + + Size of toolbar icons: + Araç çubuğu simgeleri Boyutu: + + + + Gui::Dialog::DlgGeneralImp + + Default (%1 x %1) + Default (%1 x %1) + + + Small (%1 x %1) + Small (%1 x %1) + + + Large (%1 x %1) + Large (%1 x %1) + + + Extra large (%1 x %1) + Extra large (%1 x %1) + + + + Gui::Dialog::DlgInputDialog + + Input + Girdi + + + OK + Tamam + + + Cancel + İptal et + + + + + + + + Gui::Dialog::DlgInspector + + Scene Inspector + Sahne denetçisi + + + + Gui::Dialog::DlgMacroExecute + + Execute macro + Makroyu çalıştır + + + Macro name: + Makro adı: + + + Macro destination: + Makro konumu: + + + Execute + Çalıştır + + + Close + Kapat + + + Create + Oluştur + + + Delete + Sil + + + Edit + Düzenle + + + + Gui::Dialog::DlgMacroExecuteImp + + Macros + Makrolar + + + Macro file + Makro dosyası + + + Enter a file name, please: + Lütfen bir dosyası adı girin: + + + Existing file + Varolan dosya + + + '%1'. +This file already exists. + '%1!. +Bu dosya zaten var. + + + Delete macro + Makroyu sil + + + Do you really want to delete the macro '%1'? + Gerçekten '%1' makrosunu silmek istiyor musunuz? + + + Cannot create file + Cannot create file + + + Creation of file '%1' failed. + Creation of file '%1' failed. + + + + Gui::Dialog::DlgMacroRecord + + Macro recording + Makro kaydı + + + Macro name: + Makro adı: + + + Stop + Dur + + + Cancel + İptal et + + + Macro path: + Macro path: + + + ... + ... + + + Record + Record + + + + Gui::Dialog::DlgMacroRecordImp + + Macro recorder + Makro kaydedici + + + Specify first a place to save. + Kaydedecek ilk yeri belirleyin. + + + Existing macro + Varolan makro + + + The macro '%1' already exists. Do you want to overwrite? + '%1' makrosu zaten var. Üzerine yazmak ister misiniz? + + + The macro directory doesn't exist. Please, choose another one. + The macro directory doesn't exist. Please, choose another one. + + + Choose macro directory + Choose macro directory + + + + Gui::Dialog::DlgMaterialProperties + + Material properties + Malzeme özellikleri + + + &Close + Kapat + + + Alt+C + Alt + C + + + Material + Malzeme + + + Diffuse color: + Diffuse color: + + + Specular color: + Specular color: + + + Shininess: + Parlaklık: + + + % + % + + + Ambient color: + Ortam rengi: + + + + + + + Emissive color: + Emissive color: + + + + Gui::Dialog::DlgOnlineHelp + + On-line help + Çevrimiçi Yardım + + + Help viewer + Yardım Görüntüleyici + + + Location of start page + Başlangıç ​​sayfası yeri + + + + Gui::Dialog::DlgOnlineHelpImp + + HTML files (*.html *.htm) + HTML dosyaları (*. html *. htm) + + + Access denied + Erişim engellendi + + + Access denied to '%1' + +Specify another directory, please. + Erişim reddedildi '% 1' lütfen başka bir dizin belirtin. + + + + Gui::Dialog::DlgParameter + + Parameter Editor + Parametre Düzenleyicisi + + + Save to disk + Diske kaydet + + + Alt+C + Alt + C + + + &Close + Kapat + + + + Gui::Dialog::DlgParameterImp + + Group + Grup + + + Name + Isim + + + Type + Türü + + + Value + Değer + + + User parameter + Kullanıcı parametresi + + + Invalid input + Geçersiz giriş + + + Invalid key name '%1' + Geçersiz anahtar adı '% 1&#39; + + + System parameter + Sistem parametresi + + + + Gui::Dialog::DlgPreferences + + Preferences + Tercihler + + + &Help + &Yardım + + + Alt+H + Alt + H + + + &OK + &Tamam + + + &Apply + Uygula + + + Alt+A + Alt+A + + + &Cancel + &İptal + + + + + + + + Gui::Dialog::DlgPreferencesImp + + Wrong parameter + Yanlış parametre + + + + Gui::Dialog::DlgProjectInformation + + Project information + Proje bilgileri + + + Information + Bilgi + + + &Name: + & Adı: + + + Commen&t: + Yorum: + + + Path: + Yol: + + + &Last modified by: + Son Değiştiren: + + + Created &by: + Oluşturan : + + + Com&pany: + Firma: + + + Last &modification date: + Son değişiklik tarihi: + + + Creation &date: + Oluşturma tarihi: + + + &OK + &Tamam + + + &Cancel + &İptal + + + + + + + + Gui::Dialog::DlgProjectUtility + + Project utility + Project utility + + + Extract project + Extract project + + + Source + Source + + + Project file (*.fcstd) + Project file (*.fcstd) + + + Destination + Destination + + + Extract + Extract + + + Create project + Create project + + + Document.xml + Document.xml + + + Create + Oluştur + + + Load project file after creation + Load project file after creation + + + Empty source + Empty source + + + No source is defined. + No source is defined. + + + Empty destination + Empty destination + + + No destination is defined. + No destination is defined. + + + + Gui::Dialog::DlgReportView + + Output window + Çıktı penceresi + + + Output + Çıktı + + + Record log messages + Günlük iletileri kaydet + + + Record warnings + Uyarıları kaydet + + + Record error messages + Hata iletilerini kaydet + + + Colors + Renkler + + + Normal messages: + Normal iletiler: + + + Log messages: + İşlem kaydı mesajları: + + + Warnings: + Uyarılar: + + + Errors: + Hatalar: + + + + + + + Redirect internal Python errors to report view + Redirect internal Python errors to report view + + + Redirect internal Python output to report view + Redirect internal Python output to report view + + + + Gui::Dialog::DlgRunExternal + + Running external program + Running external program + + + TextLabel + TextLabel + + + Advanced >> + Advanced >> + + + ... + ... + + + Accept changes + Accept changes + + + Discard changes + Discard changes + + + Abort program + Abort program + + + Help + Help + + + Select a file + Bir dosya seçin + + + + Gui::Dialog::DlgSettings3DView + + 3D View + 3D Görünüm + + + 3D View settings + 3D Görünüm ayarları + + + Show coordinate system in the corner + Koordinat sistemini köşede göster + + + Show counter of frames per second + Kare/sn sayacını göster + + + Enable animation + Animasyonu etkinleştir + + + Enable anti-aliasing (slower) + Örtüşme önlemeyi etkinleştir (yavaş) + + + Eye to eye distance for stereo modes: + stereo (çift kanallı) modlarda gözden göze uzaklık: + + + Camera type + kamera tipi + + + Orthographic rendering + Ortografik işleme + + + Perspective rendering + derinlikli işleme + + + + + + + 3D Navigation + 3D Navigation + + + Mouse... + Mouse... + + + Intensity of backlight + Intensity of backlight + + + Enable backlight color + Enable backlight color + + + Orbit style + Orbit style + + + Turntable + Turntable + + + Trackball + Trackball + + + Invert zoom + Invert zoom + + + Zoom at cursor + Zoom at cursor + + + Zoom step + Zoom step + + + + Gui::Dialog::DlgSettings3DViewImp + + %1 navigation + %1 navigation + + + + Gui::Dialog::DlgSettingsColorGradient + + Color model + Renk modeli + + + &Gradient: + & Gradyan: + + + red-yellow-green-cyan-blue + Kırmızı-Sarı-yeşil-cyan-mavi + + + blue-cyan-green-yellow-red + mavi-cyan-yeşil-sarı-kırmızı + + + white-black + beyaz-siyah + + + black-white + siyah-beyaz + + + Visibility + Görünürlük + + + Out g&rayed + Dışarı & ışınlandırılmış + + + Alt+R + Alt+R + + + Out &invisible + Dışarı & görünmez + + + Alt+I + Alt + ı + + + Style + Stil(tarz) + + + &Zero + &Zero + + + Alt+Z + Alt + z + + + &Flow + & Akış + + + Alt+F + Alt + D + + + &OK + &Tamam + + + &Cancel + &İptal + + + Parameter range + Parametre aralığı + + + Mi&nimum: + Mi&nimum: + + + Ma&ximum: + Ma&ximum: + + + &Labels: + &Labels: + + + &Decimals: + &Decimals: + + + + + + + Color-gradient settings + Color-gradient settings + + + + Gui::Dialog::DlgSettingsColorGradientImp + + Wrong parameter + Yanlış parametre + + + The maximum value must be higher than the minimum value. + The maximum value must be higher than the minimum value. + + + + Gui::Dialog::DlgSettingsDocument + + Document + Document + + + General + Genel + + + Document save compression level +(0 = none, 9 = highest, 3 = default) + Belge kaydındaki sıkıştırma seviyesi +(0=hiç,9=en yüksek,3=varsayılan) + + + Create new document at start up + Başlangıçta yeni bir belge oluştur + + + Storage + Depolama + + + Saving transactions (Auto-save) + Ara geçişleri kaydet (Özdeviniml-kayıt) + + + Discard saved transaction after saving document + Ara geçişleri belge kaydedildikten sonra sil + + + Save thumbnail into project file when saving document + Belgeyi kaydederken küçük resmini proje dosyası içine kaydet + + + Create up to backup files when resaving document + Create up to backup files when resaving document + + + Document objects + Document objects + + + Allow duplicate object labels in one document + Allow duplicate object labels in one document + + + Maximum Undo/Redo steps + Maksimum Geri Al / Yinele adımları + + + Using Undo/Redo on documents + Using Undo/Redo on documents + + + + Gui::Dialog::DlgSettingsEditorImp + + Text + Metin + + + Bookmark + Yer işareti + + + Breakpoint + Kesme noktası + + + Keyword + Anahtar kelime + + + Comment + Yorum + + + Block comment + Blok yorum + + + Number + Sayı + + + String + Dize + + + Character + Karakter + + + Class name + Sınıf adı + + + Define name + Ad tanımla + + + Operator + İşleç + + + Python output + Python çıktısı + + + Python error + Python hatası + + + Items + Öğeler + + + Current line highlight + Current line highlight + + + + Gui::Dialog::DlgSettingsImage + + Image settings + Resim ayarları + + + Image properties + Resim özellikleri + + + Back&ground: + Arka&plan: + + + Current + Geçerli + + + White + Beyaz + + + Black + Siyah + + + Transparent + Saydam + + + Image dimensions + Resim boyutları + + + Pixel + Benek + + + &Width: + &Genişlik: + + + Current screen + Geçerli ekran + + + Icon 32 x 32 + Simge 32 x 32 + + + Icon 64 x 64 + Simge 64 x 64 + + + Icon 128 x 128 + Simge 128 x 128 + + + CGA 320 x 200 + CGA 320 x 200 + + + QVGA 320 x 240 + QVGA 320 x 240 + + + VGA 640 x 480 + VGA 640 x 480 + + + NTSC 720 x 480 + NTSC 720 x 480 + + + PAL 768 x 578 + PAL 768 x 578 + + + SVGA 800 x 600 + SVGA 800 x 600 + + + XGA 1024 x 768 + XGA 1024 x 768 + + + HD720 1280 x 720 + HD720 1280 x 720 + + + SXGA 1280 x 1024 + SXGA 1280 x 1024 + + + SXGA+ 1400 x 1050 + SXGA+ 1400 x 1050 + + + UXGA 1600 x 1200 + UXGA 1600 x 1200 + + + HD1080 1920 x 1080 + HD1080 1920 x 1080 + + + WUXGA 1920 x 1200 + WUXGA 1920 x 1200 + + + QXGA 2048 x 1538 + QXGA 2048 x 1538 + + + WQXGA 2560 x 1600 + WQXGA 2560 x 1600 + + + QSXGA 2560 x 2048 + QSXGA 2560 x 2048 + + + QUXGA 3200 × 2400 + QUXGA 3200 × 2400 + + + HUXGA 6400 × 4800 + HUXGA 6400 × 4800 + + + !!! 10000 x 10000 + !!! 10000 x 10000 + + + Standard sizes: + Standart boyutları: + + + &Height: + &Height: + + + Aspect ratio: + Görünüş oranı: + + + &Screen + &Screen + + + Alt+S + Alt+S + + + &4:3 + &4:3 + + + Alt+4 + Alt+4 + + + 1&6:9 + 1&6:9 + + + Alt+6 + Alt+6 + + + &1:1 + &1:1 + + + Alt+1 + Alt+1 + + + Image comment + Resim yorumu + + + Insert MIBA + Insert MIBA + + + Insert comment + Insert comment + + + + Gui::Dialog::DlgSettingsMacro + + Macro + Macro + + + Macro recording settings + Macro recording settings + + + Logging Commands + Logging Commands + + + Show script commands in python console + Show script commands in python console + + + Log all commands issued by menus to file: + Log all commands issued by menus to file: + + + FullScript.FCScript + FullScript.FCScript + + + Gui commands + Gui commands + + + Recording GUI commands + Recording GUI commands + + + Record as comment + Record as comment + + + Macro path + Macro path + + + General macro settings + General macro settings + + + Run macros in local environment + Run macros in local environment + + + + Gui::Dialog::DlgSettingsUnits + + Units + Units + + + Units settings + Units settings + + + Standard (mm/kg/s/degree) + Standard (mm/kg/s/degree) + + + MKS (m/kg/s/degree) + MKS (m/kg/s/degree) + + + Magnitude + Magnitude + + + Unit + Unit + + + User system: + User system: + + + Imperial (in/lb) + Imperial (in/lb) + + + + Gui::Dialog::DlgSettingsViewColor + + Colors + Renkler + + + Selection + seçim + + + Enable selection highlighting + seçim vurgulamayı etkinleştir + + + Enable preselection highlighting + önseçim vurgulamayı etkinleştir + + + Background color + Arka plan rengi + + + Middle color + Orta renk + + + Color gradient + Renk gradyanı + + + Simple color + Basit renk + + + Default colors + Default colors + + + Edited edge color + Düzenlenen kenarın rengi + + + Edited vertex color + Düzenlenen köşenin rengi + + + Construction geometry + Construction geometry + + + Fully constrained geometry + Fully constrained geometry + + + The color of vertices being edited + The color of vertices being edited + + + The color of edges being edited + Düzenlenen kenarların renkleri + + + The color of construction geometry in edit mode + The color of construction geometry in edit mode + + + The color of fully constrained geometry in edit mode + The color of fully constrained geometry in edit mode + + + Cursor text color + Cursor text color + + + Default shape color + Default shape color + + + The default color for new shapes + The default color for new shapes + + + Default line width and color + Default line width and color + + + The default line color for new shapes + The default line color for new shapes + + + The default line thickness for new shapes + The default line thickness for new shapes + + + px + px + + + + Gui::Dialog::DlgTipOfTheDay + + Tip of the day + Tip of the day + + + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + + + &Show tips at start up + &Show tips at start up + + + Alt+S + Alt+S + + + &Next Tip + &Next Tip + + + Alt+N + Alt+N + + + &Close + Kapat + + + Alt+C + Alt + C + + + + + + + + Gui::Dialog::DlgTipOfTheDayImp + + Download failed: %1 + + Download failed: %1 + + + + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + + + + Gui::Dialog::DockablePlacement + + Placement + Yerleştirme + + + + Gui::Dialog::DownloadDialog + + Download + Download + + + Cancel + İptal et + + + Close + Kapat + + + There already exists a file called %1 in the current directory. Overwrite? + There already exists a file called %1 in the current directory. Overwrite? + + + Unable to save the file %1: %2. + Unable to save the file %1: %2. + + + Downloading %1. + Downloading %1. + + + Download canceled. + Download canceled. + + + Download failed: %1. + Yükleme başarısız oldu: % 1. + + + Downloaded %1 to current directory. + Downloaded %1 to current directory. + + + + Gui::Dialog::IconDialog + + Add icon + Add icon + + + + Gui::Dialog::InputVector + + Input vector + Input vector + + + Vector + Vector + + + Z: + Z: + + + Y: + Y: + + + X: + X: + + + OK + Tamam + + + + Gui::Dialog::LicenseDialog + + Copyright + Copyright + + + + Gui::Dialog::MouseButtons + + Mouse buttons + Fare düğmeleri + + + Configuration + Yapılandır + + + Selection: + Seçim: + + + Panning + Yatay kaydırma + + + Rotation: + Döndürme: + + + Zooming: + Zooming: + + + + Gui::Dialog::ParameterGroup + + Expand + Expand + + + Add sub-group + Add sub-group + + + Remove group + Remove group + + + Rename group + Rename group + + + Export parameter + Export parameter + + + Import parameter + içeri Parametre aktar + + + Collapse + Daralt + + + Do really want to remove this parameter group? + Bu parametre grubunu kaldırmak istediğinizden emin misiniz? + + + Existing sub-group + Varolan alt grup + + + The sub-group '%1' already exists. + The sub-group '%1' already exists. + + + Export parameter to file + Parametre dosyaya (dışarı) aktar + + + XML (*.FCParam) + XML (*.FCParam) + + + Import parameter from file + Dosyadan önemli değişkeni içeri aktar + + + Import Error + İçeri aktarma hatası + + + Reading from '%1' failed. + '%1'den okuma başarısız oldu. + + + + Gui::Dialog::ParameterValue + + Change value + Değeri değiştir + + + Remove key + Anahtarı kaldır + + + Rename key + Anahtarı yeniden adlandır + + + New + Yeni + + + New string item + Yeni dize öğesi + + + New float item + Yeni float öğesi + + + New integer item + Yeni tamsayı öğesi + + + New unsigned item + Yeni mutlak değerli öğe + + + New Boolean item + Yeni Boolean (mantıksal) öğesi + + + Existing item + Varsayılan öğe + + + The item '%1' already exists. + '%1' öğesi zaten var. + + + + Gui::Dialog::Placement + + Placement + Yerleştirme + + + OK + Tamam + + + Translation: + Çeviri: + + + Z: + Z: + + + Y: + Y: + + + X: + X: + + + Rotation: + Döndürme: + + + Angle: + Açı: + + + Axis: + Eksen: + + + Center: + Merkez: + + + Pitch: + Pitch: + + + Roll: + yuvarla(sar) + + + Yaw: + rotadan çıkma: + + + Rotation axis with angle + Rotation axis with angle + + + Euler angles + Euler açıları + + + Apply placement changes immediately + Yerleştirme değişikliklerini hemen uygula + + + Apply incremental changes to object placement + Nesne yerleştirme için artımlı değişiklikleri Uygula + + + Apply + Uygula + + + Reset + Sıfırla + + + Close + Kapat + + + + Gui::Dialog::PrintModel + + Button + Button + + + Command + Komut + + + + Gui::Dialog::SceneInspector + + Dialog + Pencere + + + Close + Kapat + + + Refresh + Yenile + + + + Gui::Dialog::SceneModel + + Inventor Tree + Inventor Tree + + + Nodes + Düğümler + + + + Gui::Dialog::TextureMapping + + Texture + Doku + + + Texture mapping + Doku eşlemesi + + + Global + Küresel + + + Environment + Çevre + + + Image files (%1) + Görüntü dosyalarını (% 1) + + + No image + Resim yok + + + The specified file is not a valid image file. + Belirtilen dosya geçerli bir görüntü dosyası değil. + + + No 3d view + 3D görünüm yok + + + No active 3d view found. + Bulunan aktif 3d görünüm yok. + + + + Gui::Dialog::Transform + + Cancel + İptal et + + + Transform + Transform + + + + Gui::DlgTreeWidget + + Dialog + Pencere + + + Items + Öğeler + + + OK + Tamam + + + Cancel + İptal et + + + + + + + + Gui::DockWnd::CombiView + + CombiView + kombi görünümü + + + Project + Proje + + + Tasks + Görevler + + + + Gui::DockWnd::HelpView + + Previous + Önceki + + + Next + Sonraki + + + Home + Ana sayfa + + + Open + + + + Open file + Dosya aç + + + All HTML files (*.html *.htm) + Tüm html dosyaları (*.htm, *.html) + + + External browser + Harici tarayıcı + + + No external browser found. Specify in preferences, please + No external browser found. Specify in preferences, please + + + Starting of %1 failed + Starting of %1 failed + + + + Gui::DockWnd::PropertyDockView + + Property View + Özellik görünümü + + + + Gui::DockWnd::ReportOutput + + Logging + Logging + + + Warning + Uyarı + + + Error + Hata + + + Options + Seçenekler + + + Clear + Temizle + + + Save As... + Farklı Kaydet... + + + Save Report Output + Rapor çıktısını kaydet + + + Plain Text Files (*.txt *.log) + Düz metin dosyaları (*.txt * .log) + + + Go to end + Sona git + + + Redirect Python output + Redirect Python output + + + Redirect Python errors + Redirect Python errors + + + + Gui::DockWnd::ReportView + + Output + Çıktı + + + Python console + Python konsolu + + + + Gui::DockWnd::SelectionView + + Property View + Özellik görünümü + + + + Gui::DockWnd::TaskPanelView + + Task View + Görev görünümü + + + + Gui::DockWnd::TextBrowser + + Could not open file. + Dosya açılamadı. + + + You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. + Şu anda erişilemeyen %1 adresine erişmeye çalıştım. Lütfen URL'nin varolduğundan emin olun ve sayfayı yeniden yüklemeyi deneyin. + + + Connecting to %1 + %1 e bağlanıyor + + + Sending to %1 + %1 e gönderiyor + + + Reading from %1 + %1 den okunuyor + + + Download failed: %1. + Yükleme başarısız oldu: % 1. + + + Previous + Önceki + + + Forward + İlet + + + Home + Ana sayfa + + + Refresh + Yenile + + + Copy + Kopyala + + + Select all + Tümünü Seç + + + No description for + Açıklama yok + + + + Gui::DocumentModel + + Application + Uygulama + + + Labels & Attributes + Etiketler & öznitelikleri + + + + Gui::EditorView + + Modified file + Değiştirilmiş dosya + + + %1. + +This has been modified outside of the source editor. Do you want to reload it? + % 1. Bu kaynak Düzenleyicisi dışında değiştirildi. Yeniden yüklemek istiyor musunuz? + + + Unsaved document + Kaydedilmemiş belge + + + The document has been modified. +Do you want to save your changes? + Belge değiştirildi. Yaptığınız değişiklikleri kaydetmek istiyor musunuz? + + + FreeCAD macro (*.FCMacro);;Python (*.py) + FreeCAD makro (*.FCMacro);Python (*.py) + + + Export PDF + pdf oluştur + + + PDF file (*.pdf) + pdf dosyası (*.pdf) + + + untitled[*] + Adsız [*] + + + - Editor + -Editör(Düzenleyici) + + + %1 chars removed + %1 karakter kaldırıldı + + + %1 chars added + %1 karakter eklendi + + + Formatted + Biçimlendirilmiş + + + + Gui::FileChooser + + Select a file + Bir dosya seçin + + + Select a directory + Dizin Seç + + + + Gui::FileDialog + + Save as + Farklı Kaydet + + + Open + + + + + Gui::FileOptionsDialog + + Extended + Extended + + + All files (*.*) + All files (*.*) + + + + Gui::Flag + + Top left + Top left + + + Bottom left + Bottom left + + + Top right + Top right + + + Bottom right + Bottom right + + + Remove + Kaldır + + + + Gui::InventorNavigationStyle + + Press CTRL and left mouse button + ctrl ve sol fare düğmesine basın + + + Press middle mouse button + Orta fare düğmesine basın + + + Press left mouse button + Sol fare düğmesine basın + + + Scroll middle mouse button + Fare tekerleğini kaydırın + + + + Gui::LocationDialog + + Wrong direction + Wrong direction + + + Direction must not be the null vector + Direction must not be the null vector + + + X + X + + + Y + Y + + + Z + Z + + + User defined... + Kullanıcı tanımlı... + + + + Gui::LocationWidget + + X: + X: + + + Y: + Y: + + + Z: + Z: + + + Direction: + Direction: + + + + Gui::MacroCommand + + Macros + Makrolar + + + + Gui::MainWindow + + Dimension + Boyut + + + Ready + Ready + + + Toggles this toolbar + Toggles this toolbar + + + Toggles this dockable window + Toggles this dockable window + + + Close All + Tümünü Kapat + + + + Gui::ManualAlignment + + Manual alignment + Manual alignment + + + The alignment is already in progress. + The alignment is already in progress. + + + Alignment[*] + Alignment[*] + + + Please, select at least one point in the left and the right view + Please, select at least one point in the left and the right view + + + Please, select at least %1 points in the left and the right view + Please, select at least %1 points in the left and the right view + + + Please pick points in the left and right view + Please pick points in the left and right view + + + The alignment has finished + The alignment has finished + + + The alignment has been canceled + The alignment has been canceled + + + Too few points picked in the left view. At least %1 points are needed. + Too few points picked in the left view. At least %1 points are needed. + + + Too few points picked in the right view. At least %1 points are needed. + Too few points picked in the right view. At least %1 points are needed. + + + Different number of points picked in left and right view. +On the left view %1 points are picked, +on the right view %2 points are picked. + Different number of points picked in left and right view. +On the left view %1 points are picked, +on the right view %2 points are picked. + + + Try to align group of views + Try to align group of views + + + The alignment failed. +How do you want to proceed? + The alignment failed. +How do you want to proceed? + + + Retry + Retry + + + Ignore + Yoksay + + + Abort + Abort + + + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + + + Point picked at (%1,%2,%3) + Point picked at (%1,%2,%3) + + + No point was picked + No point was picked + + + + Gui::NetworkRetriever + + Download started... + + Download started... + + + + + Gui::ProgressBar + + Remaining: %1 + Remaining: %1 + + + Aborting + Aborting + + + Do you really want to abort the operation? + Do you really want to abort the operation? + + + + Gui::ProgressDialog + + Remaining: %1 + Remaining: %1 + + + Aborting + Aborting + + + Do you really want to abort the operation? + Do you really want to abort the operation? + + + + Gui::PropertyEditor::PropertyModel + + Property + Property + + + Value + Değer + + + + Gui::PropertyView + + View + Görünüm + + + Data + Veri + + + + Gui::PythonConsole + + System exit + System exit + + + The application is still running. +Do you want to exit without saving your data? + The application is still running. +Do you want to exit without saving your data? + + + Python console + Python konsolu + + + Unhandled PyCXX exception. + Unhandled PyCXX exception. + + + Unhandled FreeCAD exception. + Unhandled FreeCAD exception. + + + Unhandled unknown C++ exception. + Unhandled unknown C++ exception. + + + &Copy command + &Copy command + + + &Copy history + &Copy history + + + Save history as... + Save history as... + + + Insert file name... + Insert file name... + + + Save History + Save History + + + Macro Files (*.FCMacro *.py) + Macro Files (*.FCMacro *.py) + + + Insert file name + Insert file name + + + All Files (*.*) + All Files (*.*) + + + Python Input Dialog + Python Input Dialog + + + Unhandled std C++ exception. + İşlenmemiş std c++ özel durum. + + + Word wrap + Word wrap + + + &Copy + &amp; Kopyala + + + &Paste + & Yapıştır + + + Select All + Tümünü Seç + + + Clear console + Clear console + + + + Gui::PythonEditor + + Comment + Yorum + + + Uncomment + Uncomment + + + + Gui::PythonInputField + + OK + Tamam + + + Clear + Temizle + + + + Gui::RecentFilesAction + + Open file %1 + Open file %1 + + + File not found + File not found + + + The file '%1' cannot be opened. + The file '%1' cannot be opened. + + + + Gui::SelectModule + + Select module + Select module + + + Open %1 as + Open %1 as + + + Select + Select + + + + Gui::StdCmdDescription + + Help + Help + + + Des&cription + Des&cription + + + Long description of commands + Long description of commands + + + + Gui::StdCmdDownloadOnlineHelp + + Help + Help + + + Download online help + Download online help + + + Download %1's online help + Download %1's online help + + + Non-existing directory + Non-existing directory + + + The directory '%1' does not exist. + +Do you want to specify an existing directory? + The directory '%1' does not exist. + +Do you want to specify an existing directory? + + + Missing permission + Missing permission + + + You don't have write permission to '%1' + +Do you want to specify another directory? + You don't have write permission to '%1' + +Do you want to specify another directory? + + + Stop downloading + Stop downloading + + + + Gui::StdCmdPythonHelp + + Tools + Tools + + + Python Modules + Python Modules + + + Opens a browser to show the Python modules + Opens a browser to show the Python modules + + + + Gui::TaskBoxAngle + + Angle + Angle + + + + Gui::TaskBoxPosition + + Position + Position + + + + Gui::TaskView::TaskAppearance + + Plot mode: + Çizim kipi: + + + Point size: + Nokta boyutu: + + + Line width: + Çizgi genişliği: + + + Transparency: + Şeffaflık: + + + Appearance + Görünüm + + + Document window: + Document window: + + + + Gui::TaskView::TaskEditControl + + Edit + Düzenle + + + + Gui::TaskView::TaskSelectLinkProperty + + Appearance + Görünüm + + + ... + ... + + + edit selection + edit selection + + + + Gui::TouchpadNavigationStyle + + Press left mouse button + Sol fare düğmesine basın + + + Press SHIFT button + Press SHIFT button + + + Press ALT button + Press ALT button + + + Press PgUp/PgDown button + Press PgUp/PgDown button + + + + Gui::TreeDockWidget + + Tree view + Ağaç görünümü + + + + Gui::TreeWidget + + Create group... + Grup Oluştur... + + + Create a group + Bir Grup oluşturma + + + Group + Grup + + + Rename + Yeniden Adlandır + + + Rename object + Nesneyi yeniden adlandır + + + Labels & Attributes + Etiketler & öznitelikleri + + + Application + Uygulama + + + Finish editing + Düzenlemeyi tamamla + + + Finish editing object + Nesneyi düzenlemeyi tamamla + + + Activate document + Belgeyi etkinleştir + + + Activate document %1 + %1 Belgesini etkinleştir + + + + Gui::View3DInventor + + Export PDF + pdf oluştur + + + PDF file (*.pdf) + pdf dosyası (*.pdf) + + + + Gui::WorkbenchGroup + + Select the '%1' workbench + '% 1' Tezgah seçin + + + + Position + + Form + Şekil: + + + X: + X: + + + Y: + Y: + + + Z: + Z: + + + 0.1 mm + 0.1 mm + + + 0.5 mm + 0.5 mm + + + 1 mm + 1 mm + + + 2 mm + 2 mm + + + 5 mm + 5 mm + + + 10 mm + 10 mm + + + 20 mm + 20 mm + + + 50 mm + 50 mm + + + 100 mm + 100 mm + + + 200 mm + 200 mm + + + 500 mm + 500 mm + + + 1 m + 1 m + + + 2 m + 2 m + + + 5 m + 5 m + + + Grid Snap in + Grid Snap in + + + + QDockWidget + + Tree view + Ağaç görünümü + + + Property view + Özellik görünümü + + + Selection view + Seçim görünümü + + + Report view + Rapor Görünümü + + + Task View + Görev görünümü + + + Combo View + Birleşik görünüm + + + Toolbox + Araç kutusu + + + Python console + Python konsolu + + + Display properties + Görüntü özellikleri + + + + QObject + + General + Genel + + + Display + Ekran + + + Unknown filetype + Bilinmeyen dosya türü + + + Cannot open unknown filetype: %1 + Bilinmeyen dosya türünü açamıyor: %1 + + + Cannot save to unknown filetype: %1 + Bilinmeyen dosya türü kaydedilemiyor: %1 + + + Workbench failure + Tezgah hatası + + + %1 + %1 + + + Unable to launch Qt Assistant (%1) + Qt Assistant (% 1) başlatılamadı + + + Exception + Özel durum(İstisna) + + + Open document + Belgeyi aç + + + Import file + Dosyayı içe aktar + + + Export file + dosyayı dışa aktar + + + Printing... + Baskıda... + + + Cannot load workbench + Tezgah yüklenemiyor + + + A general error occurred while loading the workbench + Tezgah yükleme sırasında genel bir hata oluştu + + + Save views... + Görünümleri kaydet... + + + Load views... + Görünümleri yükle... + + + Freeze view + Görünümü Dondur + + + Clear views + Görünümleri Temizle + + + Restore view &%1 + Görüş & %1 geri yükleme + + + Save frozen views + Dondurulmuş görünümleri Kaydet + + + Frozen views (*.cam) + Dondurulmuş görünümler (* .cam) + + + Restore views + Görünümleri Geri Yükle + + + Importing the restored views would clear the already stored views. +Do you want to continue? + Geri yüklenen görünümleri içeri aktarmak kaydedilmiş görünümleri temizleyecek. Devam etmek istiyor musunuz? + + + Restore frozen views + Dondurulmuş görünümleri geri yükle + + + Cannot open file '%1'. + '% 1' Dosyasını açamıyor. + + + Docked + Yuvalanmış + + + Undocked + yuvalanmamış + + + Fullscreen + Tam ekran + + + files + dosyalar + + + Save picture + Resmi kaydet + + + New sub-group + Yeni alt grup + + + Enter the name: + Adı girin: + + + New text item + Yeni metin öğesi + + + Enter your text: + Metninizi girin: + + + New integer item + Yeni tamsayı öğesi + + + Enter your number: + Numaranızı girin: + + + New unsigned item + Yeni mutlak değerli öğe + + + New float item + Yeni float öğesi + + + New Boolean item + Yeni Boolean (mantıksal) öğesi + + + Choose an item: + Bir öğe seçin: + + + Rename group + Rename group + + + The group '%1' cannot be renamed. + '% 1' Grubu yeniden adlandırılamaz. + + + Existing group + Mevcut grup + + + The group '%1' already exists. + '% 1' Grubu zaten var. + + + Change value + Değeri değiştir + + + Save document under new filename... + Belgeyi yeni bir dosya adı altında kaydedin... + + + Saving aborted + Kaydetme iptal edildi + + + Unsaved document + Kaydedilmemiş belge + + + Save document before close? + Kapatmadan önce belge kaydedilsin mi? + + + Save Macro + Makroyu kaydet + + + Finish + Bitir + + + Clear + Temizle + + + Cancel + İptal et + + + Inner + İç + + + Outer + Dış + + + No Browser + Tarayıcı yok + + + Unable to open your browser. + +Please open a browser window and type in: http://localhost:%1. + Tarayıcınız açılamıyor. Lütfen bir tarayıcı penceresi açın ve yazın: http://localhost:%1. + + + No Server + Sunucu yok + + + Unable to start the server to port %1: %2. + % 2: port% 1 sunucusu başlatılamıyor. + + + Unable to open your system browser. + Sistem tarayıcı açılamıyor. + + + Options... + Seçenekler... + + + Out of memory + Yetersiz bellek + + + Not enough memory available to display the data. + Verileri görüntülemek için yetersiz bellek. + + + Cannot find file %1 + %1 Dosyası bulunamıyor + + + Cannot find file %1 neither in %2 nor in %3 + %1 Dosyası %2 veya %3 içinde bulunamıyor + + + Save %1 Document + % 1 Belgeyi Kaydet + + + %1 document (*.FCStd) + % 1 belgesi (*. FCStd) + + + Save As + Farklı Kaydet + + + %1 already exists. +Do you want to replace it? + % 1 zaten var. Değiştirmek istiyor musunuz? + + + Document not closable + Belge kapatılamıyor + + + The document is not closable for the moment. + Belge şu an için kapatılamıyor. + + + No OpenGL + OpenGL yok + + + This system does not support OpenGL + Bu sistem OpenGL desteklemiyor + + + Help + Help + + + Unable to load documentation. +In order to load it Qt 4.4 or higher is required. + Belgeler yüklenemiyor. Bunu yüklemek için Qt 4.4 veya üstü gereklidir. + + + %1 Help + %1 Yardım + + + Exporting PDF... + pdf dışa aktarma... + + + Wrong selection + Wrong selection + + + Only one object selected. Please select two objects. +Be aware the point where you click matters. + Only one object selected. Please select two objects. +Be aware the point where you click matters. + + + Please select two objects. +Be aware the point where you click matters. + Please select two objects. +Be aware the point where you click matters. + + + New boolean item + New boolean item + + + Navigation styles + Navigation styles + + + %1 navigation + %1 navigation + + + Move annotation + Move annotation + + + Transform + Transform + + + The document is in editing mode and thus cannot be closed for the moment. +You either have to finish or cancel the editing in the task panel. + The document is in editing mode and thus cannot be closed for the moment. +You either have to finish or cancel the editing in the task panel. + + + + StdBoxSelection + + Standard-View + Standard-View + + + Box selection + Box selection + + + + StdCmdAbout + + Help + Help + + + &About %1 + %1 &Hakkında + + + About %1 + %1 Hakkında + + + + StdCmdAboutQt + + Help + Help + + + About &Qt + Hakkında & Qt + + + About Qt + Qt Hakkında + + + + StdCmdActivateNextWindow + + Window + Pencere + + + Ne&xt + Ne&xt + + + Activate next window + Activate next window + + + + StdCmdActivatePrevWindow + + Window + Pencere + + + Pre&vious + Pre&vious + + + Activate previous window + Activate previous window + + + + StdCmdAlignment + + Edit + Düzenle + + + Alignment... + Alignment... + + + Align the selected objects + Align the selected objects + + + + StdCmdArrangeIcons + + Window + Pencere + + + Arrange &Icons + Arrange &Icons + + + Arrange Icons + Arrange Icons + + + + StdCmdAxisCross + + Standard-View + Standard-View + + + Toggle axis cross + Toggle axis cross + + + + StdCmdCascadeWindows + + Window + Pencere + + + &Cascade + &Cascade + + + Tile pragmatic + Tile pragmatic + + + + StdCmdCloseActiveWindow + + Window + Pencere + + + Cl&ose + Cl&ose + + + Close active window + Close active window + + + + StdCmdCloseAllWindows + + Window + Pencere + + + Close Al&l + Close Al&l + + + Close all windows + Close all windows + + + + StdCmdCommandLine + + Tools + Tools + + + Start command &line... + Start command &line... + + + Opens the command line in the console + Opens the command line in the console + + + + StdCmdCopy + + Edit + Düzenle + + + C&opy + C&opy + + + Copy operation + Copy operation + + + + StdCmdCut + + Edit + Düzenle + + + &Cut + &Cut + + + Cut out + Cut out + + + + StdCmdDelete + + Edit + Düzenle + + + &Delete + &Delete + + + Deletes the selected objects + Deletes the selected objects + + + + StdCmdDemoMode + + Standard-View + Standard-View + + + View turntable... + View turntable... + + + View turntable + View turntable + + + + StdCmdDlgCustomize + + Tools + Tools + + + Cu&stomize... + Cu&stomize... + + + Customize toolbars and command bars + Customize toolbars and command bars + + + + StdCmdDlgMacroExecute + + Macros ... + Macros ... + + + Opens a dialog to let you execute a recorded macro + Opens a dialog to let you execute a recorded macro + + + Macro + Macro + + + + StdCmdDlgMacroExecuteDirect + + Macro + Macro + + + Execute macro + Makroyu çalıştır + + + Execute the macro in the editor + Execute the macro in the editor + + + + StdCmdDlgMacroRecord + + &Macro recording ... + &Macro recording ... + + + Opens a dialog to record a macro + Opens a dialog to record a macro + + + Macro + Macro + + + + StdCmdDlgParameter + + Tools + Tools + + + E&dit parameters ... + E&dit parameters ... + + + Opens a Dialog to edit the parameters + Opens a Dialog to edit the parameters + + + + StdCmdDlgPreferences + + Tools + Tools + + + &Preferences ... + &Preferences ... + + + Opens a Dialog to edit the preferences + Opens a Dialog to edit the preferences + + + + StdCmdDockViewMenu + + View + Görünüm + + + Vie&ws + Vie&ws + + + Toggles this window + Toggles this window + + + + StdCmdDrawStyle + + Standard-View + Standard-View + + + Draw style + Draw style + + + + StdCmdDuplicateSelection + + Edit + Düzenle + + + Duplicate selection + Duplicate selection + + + Put duplicates of the selected objects to the active document + Put duplicates of the selected objects to the active document + + + + StdCmdEdit + + Edit + Düzenle + + + Toggle &Edit mode + Toggle &Edit mode + + + Toggles the selected object's edit mode + Toggles the selected object's edit mode + + + Enters or leaves the selected object's edit mode + Enters or leaves the selected object's edit mode + + + + StdCmdExport + + File + Dosya + + + &Export... + &Export... + + + Export an object in the active document + Export an object in the active document + + + No selection + Seçim yok + + + Please select first the objects you want to export. + Please select first the objects you want to export. + + + + StdCmdExportGraphviz + + Tools + Tools + + + Dependency graph... + Dependency graph... + + + Show the dependency graph of the objects in the active document + Show the dependency graph of the objects in the active document + + + + StdCmdFeatRecompute + + File + Dosya + + + &Recompute + &Recompute + + + Recompute feature or document + Recompute feature or document + + + + StdCmdFreeCADWebsite + + Help + Help + + + FreeCAD Website + FreeCAD Website + + + The FreeCAD website + The FreeCAD website + + + + StdCmdFreezeViews + + Standard-View + Standard-View + + + Freeze display + Görüntüyü Dondur + + + Freezes the current view position + Geçerli görünüm duruşunu dondur + + + + StdCmdHideObjects + + Standard-View + Standard-View + + + Hide all objects + Tüm nesneleri gizle + + + Hide all objects in the document + Belgedeki bütün nesneler gizle + + + + StdCmdHideSelection + + Standard-View + Standard-View + + + Hide selection + Seçimi Gizle + + + Hide all selected objects + Tüm Seçili nesneleri gizle + + + + StdCmdImport + + File + Dosya + + + &Import... + & Al... + + + Import a file in the active document + Etkin belgedeki bir dosyayı içe aktar + + + Supported formats + Supported formats + + + All files (*.*) + All files (*.*) + + + + StdCmdMacroStartDebug + + Macro + Macro + + + Debug macro + Debug macro + + + Start debugging of macro + Start debugging of macro + + + + StdCmdMacroStepOver + + Macro + Macro + + + Step over + Step over + + + + StdCmdMacroStopDebug + + Macro + Macro + + + Stop debugging + Stop debugging + + + Stop debugging of macro + Stop debugging of macro + + + + StdCmdMacroStopRecord + + Macro + Macro + + + S&top macro recording + S&top macro recording + + + Stop the macro recording session + makro kayıt oturumunu Durdur + + + + StdCmdMeasureDistance + + View + Görünüm + + + Measure distance + Mesafeyi Ölç + + + + StdCmdMeasurementSimple + + Tools + Tools + + + Measures distance between two selected objects + Measures distance between two selected objects + + + Measure distance + Mesafeyi Ölç + + + + StdCmdMergeProjects + + File + Dosya + + + Merge project... + Merge project... + + + Merge project + Merge project + + + %1 document (*.fcstd) + %1 document (*.fcstd) + + + Cannot merge project with itself. + Cannot merge project with itself. + + + + StdCmdNew + + File + Dosya + + + &New + & Yeni + + + Create a new empty document + Yeni, boş bir belge oluştur + + + + StdCmdOnlineHelp + + Help + Help + + + Show help to the application + Uygulama yardımını göster + + + + StdCmdOnlineHelpWebsite + + Help + Help + + + Help Website + Yardım Web sitesi + + + The website where the help is maintained + Yardım sağlanan Web sitesi + + + + StdCmdOpen + + File + Dosya + + + &Open... + & Aç... + + + Open a document or import files + Bir belge aç veya dosya içe aktar + + + Supported formats + Supported formats + + + All files (*.*) + All files (*.*) + + + + StdCmdPaste + + Edit + Düzenle + + + &Paste + & Yapıştır + + + Paste operation + Yapıştırma işlemi + + + + StdCmdPlacement + + Edit + Düzenle + + + Placement... + Placement... + + + Place the selected objects + Place the selected objects + + + + StdCmdPrint + + File + Dosya + + + &Print... + & Yazdır... + + + Print the document + Belgeyi Yazdır + + + + StdCmdPrintPdf + + File + Dosya + + + &Export PDF... + &pdf oluştur... + + + Export the document as PDF + Belgeyi PDF Olarak dışa aktar + + + + StdCmdPrintPreview + + File + Dosya + + + &Print preview... + Baskı Önizleme... + + + Print the document + Belgeyi Yazdır + + + Print preview + Baskı Önizleme + + + + StdCmdProjectInfo + + File + Dosya + + + Project i&nformation... + Proje & özellikler... + + + Show details of the currently active project + Show details of the currently active project + + + + StdCmdProjectUtil + + Tools + Tools + + + Project utility... + Project utility... + + + Utility to extract or create project files + Utility to extract or create project files + + + + StdCmdPythonWebsite + + Help + Help + + + Python Website + Python Web sitesi + + + The official Python website + Resmi Python Web sitesi + + + + StdCmdQuit + + File + Dosya + + + E&xit + E&xit + + + Quits the application + Uygulamadan çıkar + + + + StdCmdRandomColor + + File + Dosya + + + Random color + Rasgele renk + + + + StdCmdRecentFiles + + File + Dosya + + + Recent files + Son dosyalar + + + Recent file list + Son kullanılan dosya listesi + + + + StdCmdRedo + + Edit + Düzenle + + + &Redo + & Yinele + + + Redoes a previously undone action + Önceden geri alınan eylemi yineler + + + + StdCmdRefresh + + Edit + Düzenle + + + &Refresh + & Yenile + + + Recomputes the current active document + Geçerli etkin belgeyi yeniden hesaplar + + + + StdCmdSave + + File + Dosya + + + &Save + & Kaydet + + + Save the active document + Etkin belgeyi Kaydet + + + + StdCmdSaveAs + + File + Dosya + + + Save &As... + Farklı Kaydet... + + + Save the active document under a new file name + Etkin belgeyi yeni bir dosya adıyla kaydet + + + + StdCmdSceneInspector + + Tools + Tools + + + Scene inspector... + Sahne Denetmeni... + + + Scene inspector + Sahne Denetmeni + + + + StdCmdSelectAll + + Edit + Düzenle + + + Select &All + Seç & Tümü + + + Select all + Tümünü Seç + + + + StdCmdSetAppearance + + Standard-View + Standard-View + + + Appearance... + Görünüm... + + + Sets the display properties of the selected object + Seçili nesneyi görüntüleme özelliklerini ayarlar + + + + StdCmdShowObjects + + Standard-View + Standard-View + + + Show all objects + Tüm nesneleri göster + + + Show all objects in the document + Belgedeki tüm nesneleri göster + + + + StdCmdShowSelection + + Standard-View + Standard-View + + + Show selection + Seçimi göster + + + Show all selected objects + Tüm Seçili nesneleri göster + + + + StdCmdStatusBar + + View + Görünüm + + + Status bar + Durum çubuğu + + + Toggles the status bar + Toggles the status bar + + + + StdCmdTextureMapping + + Tools + Tools + + + Texture mapping... + Texture mapping... + + + Texture mapping + Doku eşlemesi + + + + StdCmdTileWindows + + Window + Pencere + + + &Tile + &Tile + + + Tile the windows + Tile the windows + + + + StdCmdToggleBreakpoint + + Macro + Macro + + + Toggle breakpoint + Toggle breakpoint + + + + StdCmdToggleClipPlane + + Standard-View + Standard-View + + + Clipping plane + Clipping plane + + + Toggles clipping plane for active view + Toggles clipping plane for active view + + + + StdCmdToggleNavigation + + Standard-View + Standard-View + + + Toggle navigation/Edit mode + Toggle navigation/Edit mode + + + Toggle between navigation and edit mode + Toggle between navigation and edit mode + + + + StdCmdToggleObjects + + Standard-View + Standard-View + + + Toggle all objects + Toggle all objects + + + Toggles visibility of all objects in the active document + Toggles visibility of all objects in the active document + + + + StdCmdToggleSelectability + + Standard-View + Standard-View + + + Toggle selectability + Toggle selectability + + + Toggles the property of the objects to get selected in the 3D-View + Toggles the property of the objects to get selected in the 3D-View + + + + StdCmdToggleVisibility + + Standard-View + Standard-View + + + Toggle visibility + Toggle visibility + + + Toggles visibility + Toggles visibility + + + + StdCmdToolBarMenu + + View + Görünüm + + + Tool&bars + Tool&bars + + + Toggles this window + Toggles this window + + + + StdCmdTransform + + Edit + Düzenle + + + Transform... + Transform... + + + Transform the geometry of selected objects + Transform the geometry of selected objects + + + + StdCmdTreeSelection + + View + Görünüm + + + Go to selection + Go to selection + + + Scroll to first selected item + Scroll to first selected item + + + + StdCmdUndo + + Edit + Düzenle + + + &Undo + Gerial + + + Undo exactly one action + Undo exactly one action + + + + StdCmdUserInterface + + View + Görünüm + + + Dock views + Dock views + + + Dock all top-level views + Dock all top-level views + + + + StdCmdViewAxo + + Standard-View + Standard-View + + + Axometric + Axometric + + + Set to axometric view + Set to axometric view + + + + StdCmdViewBottom + + Standard-View + Standard-View + + + Bottom + Bottom + + + Set to bottom view + Set to bottom view + + + + StdCmdViewCreate + + Standard-View + Standard-View + + + Create new view + Create new view + + + Creates a new view window for the active document + Creates a new view window for the active document + + + + StdCmdViewExample1 + + Standard-View + Standard-View + + + Inventor example #1 + Inventor example #1 + + + Shows a 3D texture with manipulator + Shows a 3D texture with manipulator + + + + StdCmdViewExample2 + + Standard-View + Standard-View + + + Inventor example #2 + Inventor example #2 + + + Shows spheres and drag-lights + Shows spheres and drag-lights + + + + StdCmdViewExample3 + + Standard-View + Standard-View + + + Inventor example #3 + Inventor example #3 + + + Shows a animated texture + Shows a animated texture + + + + StdCmdViewFitAll + + Standard-View + Standard-View + + + Fit all + Fit all + + + Fits the whole content on the screen + Fits the whole content on the screen + + + + StdCmdViewFitSelection + + Standard-View + Standard-View + + + Fit selection + Fit selection + + + Fits the selected content on the screen + Fits the selected content on the screen + + + + StdCmdViewFront + + Standard-View + Standard-View + + + Front + Front + + + Set to front view + Set to front view + + + + StdCmdViewIvIssueCamPos + + Standard-View + Standard-View + + + Issue camera position + Issue camera position + + + Issue the camera position to the console and to a macro, to easily recall this position + Issue the camera position to the console and to a macro, to easily recall this position + + + + StdCmdViewIvStereoInterleavedColumns + + Standard-View + Standard-View + + + Stereo Interleaved Columns + Stereo Interleaved Columns + + + Switch stereo viewing to Interleaved Columns + Switch stereo viewing to Interleaved Columns + + + + StdCmdViewIvStereoInterleavedRows + + Standard-View + Standard-View + + + Stereo Interleaved Rows + Stereo Interleaved Rows + + + Switch stereo viewing to Interleaved Rows + Switch stereo viewing to Interleaved Rows + + + + StdCmdViewIvStereoOff + + Standard-View + Standard-View + + + Stereo Off + Stereo Off + + + Switch stereo viewing off + Switch stereo viewing off + + + + StdCmdViewIvStereoQuadBuff + + Standard-View + Standard-View + + + Stereo quad buffer + Stereo quad buffer + + + Switch stereo viewing to quad buffer + Switch stereo viewing to quad buffer + + + + StdCmdViewIvStereoRedGreen + + Standard-View + Standard-View + + + Stereo red/green + Stereo red/green + + + Switch stereo viewing to red/green + Switch stereo viewing to red/green + + + + StdCmdViewLeft + + Standard-View + Standard-View + + + Left + Left + + + Set to left view + Set to left view + + + + StdCmdViewRear + + Standard-View + Standard-View + + + Rear + Arka + + + Set to rear view + Arka görünüm için ayarla + + + + StdCmdViewRight + + Standard-View + Standard-View + + + Right + Sağ + + + Set to right view + sağdan görünüm için ayarla + + + + StdCmdViewRotateLeft + + Standard-View + Standard-View + + + Rotate Left + Rotate Left + + + Rotate the view by 90° counter-clockwise + Rotate the view by 90° counter-clockwise + + + + StdCmdViewRotateRight + + Standard-View + Standard-View + + + Rotate Right + Rotate Right + + + Rotate the view by 90° clockwise + Rotate the view by 90° clockwise + + + + StdCmdViewTop + + Standard-View + Standard-View + + + Top + üst + + + Set to top view + üstten görünüm için ayarla + + + + StdCmdWhatsThis + + Help + Help + + + &What's This? + & Bu nedir? + + + What's This + Bu nedir + + + + StdCmdWindows + + Window + Pencere + + + &Windows... + & Pencereler... + + + Windows list + Pencere listesi + + + + StdCmdWindowsMenu + + Window + Pencere + + + Activates this window + Bu pencereyi etkinleştirir + + + + StdCmdWorkbench + + View + Görünüm + + + Workbench + Tezgah + + + Switch between workbenches + İş tezgahları arasında geçiş yap + + + + StdOrthographicCamera + + Standard-View + Standard-View + + + Orthographic view + Ortografik görünüm + + + Switches to orthographic view mode + Ortografik görünüm moduna geçirir + + + + StdPerspectiveCamera + + Standard-View + Standard-View + + + Perspective view + Perspective view + + + Switches to perspective view mode + Perspektif görünüm moduna geçirir + + + + StdViewBoxZoom + + Standard-View + Standard-View + + + Box zoom + Kutu Yakınlaştır + + + + StdViewDockUndockFullscreen + + Standard-View + Standard-View + + + Document window + Document window + + + Display the active view either in fullscreen, in undocked or docked mode + Etkin görünüm tam ekran, birinde yerleşik olmayan ya da yerleşik modunda görüntüleme + + + + StdViewScreenShot + + Standard-View + Standard-View + + + Save picture... + Resmi Kaydet... + + + Creates a screenshot of the active view + Etkin görünümün bir görüntüsünü yakalar + + + + StdViewZoomIn + + Standard-View + Standard-View + + + Zoom In + Yakınlaştır + + + + StdViewZoomOut + + Standard-View + Standard-View + + + Zoom Out + Uzaklaştır + + + + Std_DrawStyle + + As is + As is + + + Normal mode + Normal mode + + + Wireframe + Wireframe + + + Wireframe mode + Wireframe mode + + + + Std_ExportGraphviz + + Graphviz not found + Graphviz not found + + + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + + + Graphviz installation path + Graphviz installation path + + + Dependency graph + Dependency graph + + + Graphviz failed + Graphviz failed + + + Graphviz failed to create an image file + Graphviz failed to create an image file + + + + Workbench + + &File + &File + + + &Edit + & Düzenle + + + Standard views + Standart görünümler + + + &Stereo + &Stereo + + + &Zoom + &Zoom + + + Visibility + Görünürlük + + + &View + & Görünüm + + + &Tools + & Araçlar + + + &Macro + &Macro + + + &Windows + & Pencere + + + &On-line help + & On-line yardım + + + &Help + &Yardım + + + File + Dosya + + + Macro + Macro + + + View + Görünüm + + + Special Ops + Özel Ops + + + + testClass + + test + Test et + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + <html><head><meta name="qrichtext" content="1" /> <style type="text/css"> p, li {boşluk: pre-wrap;}</style></head><body style="font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style="font-size:20pt; font-weight:600;"> iisTaskPanel</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"> <span style="font-size:12pt;"> Qt 4.3.x için yaratıldı</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"> www.ii-system.com</p></body></html> + + + Choose the style of the Task Panel + Görev Paneli stilini seçin + + + Default + Varsayılan + + + Windows XP + Windows xp + + + diff --git a/src/Gui/Language/FreeCAD_uk.qm b/src/Gui/Language/FreeCAD_uk.qm index 9ca25e8e0..8ae8d1fcb 100644 Binary files a/src/Gui/Language/FreeCAD_uk.qm and b/src/Gui/Language/FreeCAD_uk.qm differ diff --git a/src/Gui/Language/FreeCAD_uk.ts b/src/Gui/Language/FreeCAD_uk.ts index e41f2b5b8..12eeb30a0 100644 --- a/src/Gui/Language/FreeCAD_uk.ts +++ b/src/Gui/Language/FreeCAD_uk.ts @@ -1,5914 +1,5842 @@ - - + + Angle - Form - Форма + Form + Форма - A: - A: + A: + A: - B: - B: + B: + B: - C: - C: + C: + C: - Angle Snap - Кут + Angle Snap + Кут - - 1 ° - 1 ° + + 1 ° + 1 ° - - 2 ° - 2 ° + + 2 ° + 2 ° - - 5 ° - 5 ° + + 5 ° + 5 ° - - 10 ° - 10 ° + + 10 ° + 10 ° - - 20 ° - 20 ° + + 20 ° + 20 ° - - 45 ° - 45 ° + + 45 ° + 45 ° - - 90 ° - 90 ° + + 90 ° + 90 ° - - 180 ° - 180 ° + + 180 ° + 180 ° - - + + Gui::AccelLineEdit - none - немає + none + немає - - + + Gui::ActionSelector - Available: - + Available: + Available: - Selected: - + Selected: + Selected: - Add - Додати + Add + Додати - Remove - Видалити + Remove + Видалити - Move up - Перемістити вгору + Move up + Перемістити вгору - Move down - Перемістити вниз + Move down + Перемістити вниз - - + + Gui::AlignmentView - Movable object - + Movable object + Movable object - Fixed object - + Fixed object + Fixed object - - + + Gui::BlenderNavigationStyle - Press left mouse button - Натиснути ліву кнопку миші + Press left mouse button + Натиснути ліву кнопку миші - Press SHIFT and middle mouse button - Press SHIFT and middle mouse button + Press SHIFT and middle mouse button + Натисніть клавішу SHIFT та середню кнопку миші - Press middle mouse button - Натиснути середню кнопку миші + Press middle mouse button + Натиснути середню кнопку миші - Scroll middle mouse button - Прокручування середньою кнопкою миші + Scroll middle mouse button + Прокручування середньою кнопкою миші - - + + Gui::CADNavigationStyle - Press left mouse button - Натиснути ліву кнопку миші + Press left mouse button + Натиснути ліву кнопку миші - Press middle mouse button - Натиснути середню кнопку миші + Press middle mouse button + Натиснути середню кнопку миші - Press left and middle mouse button - Натиснути ліву і середню кнопку миші + Press left and middle mouse button + Натиснути ліву і середню кнопку миші - Scroll middle mouse button - Прокручування середньою кнопкою миші + Scroll middle mouse button + Прокручування середньою кнопкою миші - - + + Gui::Command - Standard - Стандартно + Standard + Стандартно - - + + Gui::ContainerDialog - &OK - &Гаразд + &OK + &Гаразд - &Cancel - &Відміна + &Cancel + &Відміна - - + + Gui::ControlSingleton - Task panel - Панель завдань + Task panel + Панель завдань - - + + Gui::Dialog::AboutApplication - About - Про + About + Про - Revision number - Номер редакції + Revision number + Номер редакції - Version - Версія + Version + Версія - OK - Гаразд + OK + Гаразд - - Про програму + + Про програму - Release date - Дата випуску + Release date + Дата випуску - Platform - Platform + Platform + Платформа - License... - License... + License... + Ліцензії... - Copy to clipboard - + Copy to clipboard + Copy to clipboard - - + + Gui::Dialog::ButtonModel - Button %1 - Button %1 + Button %1 + Кнопка %1 - Out Of Range - Out Of Range + Out Of Range + Поза межами припустимого діапазону - - + + Gui::Dialog::CommandModel - Commands - Команди + Commands + Команди - - + + Gui::Dialog::DemoMode - View Turntable - Показати програвач + View Turntable + Показати програвач - Speed - Швидкість + Speed + Швидкість - Maximum - Максимум + Maximum + Максимум - Minimum - Мінімум + Minimum + Мінімум - Fullscreen - На весь екран + Fullscreen + На весь екран - Enable timer - Увімкнути таймер + Enable timer + Увімкнути таймер - s - s + s + s - Angle - Кут - - - 90° - 90° - - - -90° - -90° + Angle + Кут - Play - Грати + 90° + 90° - Stop - Стоп + -90° + -90° - Close - Закрити + Play + Грати - - + + Stop + Стоп + + + Close + Закрити + + + Gui::Dialog::DlgActivateWindow - Choose Window - Виберіть вікно + Choose Window + Виберіть вікно - &Activate - &Активувати + &Activate + &Активувати - Alt+A - Alt+A + Alt+A + Alt+A - &Cancel - &Відміна + &Cancel + &Відміна - - Про програму + + Про програму - - + + Gui::Dialog::DlgActivateWindowImp - Windows - Вікна + Windows + Вікна - - + + Gui::Dialog::DlgAuthorization - Authorization - Авторизація + Authorization + Авторизація - &OK - &Гаразд + &OK + &Гаразд - &Cancel - &Відміна + &Cancel + &Відміна - Password: - Пароль: + Password: + Пароль: - User name: - Ім'я користувача: + User name: + Ім'я користувача: - - Про програму + + Про програму - - + + Gui::Dialog::DlgChooseIcon - Choose Icon - Оберіть значок + Choose Icon + Оберіть значок - OK - Гаразд + OK + Гаразд - Cancel - Скасувати + Cancel + Скасувати - Add icons... - Add icons... + Add icons... + Додати іконки... - - + + Gui::Dialog::DlgCustomActions - Macros - Макроси + Macros + Макроси - Setup Custom Macros - Налаштування власних макросів + Setup Custom Macros + Налаштування власних макросів - Macro: - Макрос: + Macro: + Макрос: - ... - ... + ... + ... - Pixmap - Малюнок + Pixmap + Малюнок - Accelerator: - Прискорювач: + Accelerator: + Прискорювач: - What's this: - Що це: + What's this: + Що це: - Status text: - Статус тексту: + Status text: + Статус тексту: - Tool tip: - Підказка: + Tool tip: + Підказка: - Menu text: - Текст меню: + Menu text: + Текст меню: - Add - Додати + Add + Додати - Remove - Видалити + Remove + Видалити - Replace - Замінити + Replace + Замінити - - + + Gui::Dialog::DlgCustomActionsImp - Icons - Значки + Icons + Значки - Macros - Макроси + Macros + Макроси - No macro - Макрос відсутній + No macro + Макрос відсутній - No macros found. - Макросів не знайдено. + No macros found. + Макросів не знайдено. - Macro not found - Макрос не знайдено + Macro not found + Макрос не знайдено - Sorry, couldn't find macro file '%1'. - На жаль, не вдалось знайти файл "%1" макросу. + Sorry, couldn't find macro file '%1'. + На жаль, не вдалось знайти файл "%1" макросу. - Empty macro - Порожній макрос + Empty macro + Порожній макрос - Please specify the macro first. - Спочатку вкажіть макрос. + Please specify the macro first. + Спочатку вкажіть макрос. - Empty text - Пустий текст + Empty text + Пустий текст - Please specify the menu text first. - Спочатку вкажіть текст меню. + Please specify the menu text first. + Спочатку вкажіть текст меню. - No item selected - Нічого не вибрано + No item selected + Нічого не вибрано - Please select a macro item first. - Спочатку виберіть макрос. + Please select a macro item first. + Спочатку виберіть макрос. - - + + Gui::Dialog::DlgCustomCommands - Commands - Команди + Commands + Команди - - Про програму + + Про програму - - + + Gui::Dialog::DlgCustomCommandsImp - Category - Категорія + Category + Категорія - Icon - Піктограма + Icon + Піктограма - Command - Команда + Command + Команда - - + + Gui::Dialog::DlgCustomKeyboard - Keyboard - Клавіатура + Keyboard + Клавіатура - Description: - Опис: + Description: + Опис: - &Category: - &Категорія: + &Category: + &Категорія: - C&ommands: - К&оманди: + C&ommands: + К&оманди: - Current shortcut: - Поточні клавіатурні скорочення: + Current shortcut: + Поточні клавіатурні скорочення: - Press &new shortcut: - Натисніть нове скорочення: + Press &new shortcut: + Натисніть нове скорочення: - Currently assigned to: - Зараз призначено для: + Currently assigned to: + Зараз призначено для: - &Assign - &Призначити + &Assign + &Призначити - Alt+A - Alt+A + Alt+A + Alt+A - &Reset - &Скинути + &Reset + &Скинути - Alt+R - Alt+R + Alt+R + Alt+R - Re&set All - Скинути все + Re&set All + Скинути все - Alt+S - Alt+S + Alt+S + Alt+S - - Про програму + + Про програму - - + + Gui::Dialog::DlgCustomKeyboardImp - Icon - Піктограма + Icon + Піктограма - Command - Команда + Command + Команда - none - немає + none + немає - Multiple defined shortcut - Визначені декілька скорочень + Multiple defined shortcut + Визначені декілька скорочень - The shortcut '%1' is defined more than once. This could result into unexpected behaviour. - Скорочення '%1' призначене більш як одній дії. Це може призвести до непередбачуваних результатів. + The shortcut '%1' is defined more than once. This could result into unexpected behaviour. + Скорочення '%1' призначене більш як одній дії. Це може призвести до непередбачуваних результатів. - Already defined shortcut - Скорочення вже призначено + Already defined shortcut + Скорочення вже призначено - The shortcut '%1' is already assigned to '%2'. + The shortcut '%1' is already assigned to '%2'. Please define another shortcut. - Скорочення '%1' вже призначено для '%2'. + Скорочення '%1' вже призначено для '%2'. Будь ласка оберіть інше сполучення. - - + + Gui::Dialog::DlgCustomToolBoxbarsImp - Toolbox bars - Панель інструментів + Toolbox bars + Панель інструментів - - + + Gui::Dialog::DlgCustomToolbars - Toolbars - Панелі інструментів + Toolbars + Панелі інструментів - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Замітка:</span> Зміни вступлять в дію при наступному завантаженні відповідних інструментальних засобів</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Замітка:</span> Зміни вступлять в дію при наступному завантаженні відповідних інструментальних засобів</p></body></html> - Move right - Перемістити праворуч + Move right + Перемістити праворуч - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Переміщення обраного елемента на один рівень вниз.</b><p>Це також призведе до зміни рівня батьківського елемента.</p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Переміщення обраного елемента на один рівень вниз.</b><p>Це також призведе до зміни рівня батьківського елемента.</p> - Move left - Перемістити ліворуч + Move left + Перемістити ліворуч - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Переміщення обраного елемента на один рівень вгору.</b><p>Це також призведе до зміни рівня батьківського елемента.</p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Переміщення обраного елемента на один рівень вгору.</b><p>Це також призведе до зміни рівня батьківського елемента.</p> - Move down - Перемістити вниз + Move down + Перемістити вниз - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Перемістити обраний елемент вниз.</b><p>Елемент буде переміщено в межах ієрархії рівня.</p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Перемістити обраний елемент вниз.</b><p>Елемент буде переміщено в межах ієрархії рівня.</p> - Move up - Перемістити вгору + Move up + Перемістити вгору - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Перемістити обраний елемент вгору.</b><p>Елемент буде переміщено в межах ієрархії рівня.</p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Перемістити обраний елемент вгору.</b><p>Елемент буде переміщено в межах ієрархії рівня.</p> - New... - Новий... + New... + Новий... - Rename... - Перейменувати... + Rename... + Перейменувати... - Delete - Видалити + Delete + Видалити - Icon - Піктограма + Icon + Піктограма - Command - Команда + Command + Команда - <Separator> - <Розділювач> + <Separator> + <Розділювач> - New toolbar - Нова панель інструментів + New toolbar + Нова панель інструментів - Toolbar name: - Назва панелі: + Toolbar name: + Назва панелі: - Duplicated name - Повторення назви + Duplicated name + Повторення назви - The toolbar name '%1' is already used - Назва '%1' для панелі інструментів уже використовується + The toolbar name '%1' is already used + Назва '%1' для панелі інструментів уже використовується - Rename toolbar - Перейменувати панель + Rename toolbar + Перейменувати панель - - Про програму + + Про програму - - + + Gui::Dialog::DlgCustomizeImp - Customize - Налаштування + Customize + Налаштування - &Help - &Довідка + &Help + &Довідка - &Close - &Закрити + &Close + &Закрити - - + + Gui::Dialog::DlgCustomizeSpaceball - Spaceball - Spaceball + Spaceball + Spaceball - No Spaceball Present - No Spaceball Present + No Spaceball Present + No Spaceball Present - Buttons - Buttons + Buttons + Кнопки - Clear - Очистити + Clear + Очистити - Print Reference - Print Reference + Print Reference + Друкувати посилання - - + + Gui::Dialog::DlgDisplayProperties - Display properties - Показати властивості + Display properties + Показати властивості - Display - Відображення + Display + Відображення - Transparency: - Прозорість: + Transparency: + Прозорість: - Line width: - Ширина лінії: + Line width: + Ширина лінії: - Point size: - Розмір пункту: + Point size: + Розмір пункту: - Material - Матеріал + Material + Матеріал - ... - ... + ... + ... - Close - Закрити + Close + Закрити - Viewing mode - Режим перегляду + Viewing mode + Режим перегляду - Display mode: - Режим показу: + Plot mode: + Режим друку: - Plot mode: - Plot mode: + + Про програму - - Про програму + Line transparency: + Прозорість лінії: - Line transparency: - Прозорість лінії: + Line color: + Колір лінії: - Line color: - Колір лінії: + Shape color: + Колір форми: - Shape color: - Колір форми: + Color plot: + Кольоровий друк: - Color plot: - Color plot: + Document window: + Document window: - - Document window: - - - - + + Gui::Dialog::DlgEditorSettings - Editor - Редактор + Editor + Редактор - Options - Параметри + Options + Параметри - Enable line numbers - Показувати нумерацію рядків + Enable line numbers + Показувати нумерацію рядків - Enable folding - Увімкнути складання + Enable folding + Увімкнути складання - Indentation - Відступ + Indentation + Відступ - Insert spaces - Вставляти пробіли + Insert spaces + Вставляти пробіли - Tab size: - Розмір табуляції: + Tab size: + Розмір табуляції: - Indent size: - Розмір відступу: + Indent size: + Розмір відступу: - Keep tabs - Зберегти вкладки + Keep tabs + Зберегти вкладки - Display Items - Відображення елементів + Display Items + Відображення елементів - Family: - Сімейство: + Family: + Сімейство: - Size: - Розмір: + Size: + Розмір: - Preview: - Попередній перегляд: + Preview: + Попередній перегляд: - - Про програму + + Про програму - - + + Gui::Dialog::DlgGeneral - General - Загальне + General + Загальне - Start up - Запуск + Start up + Запуск - Enable splash screen at start up - Увімкнути заставку при запуску + Enable splash screen at start up + Увімкнути заставку при запуску - Switch to tab of report window: - Перейти на вкладку вікна звіту: + Switch to tab of report window: + Перейти на вкладку вікна звіту: - Auto load module after start up: - Автоматичне завантаження модуля після запуску: + Auto load module after start up: + Автоматичне завантаження модуля після запуску: - Language - Мова + Language + Мова - Change language: - Змінити мову: + Change language: + Змінити мову: - Main window - Головне вікно + Main window + Головне вікно - Size of recent file list - Розмір списку останніх файлів + Size of recent file list + Розмір списку останніх файлів - Window style: - Стиль вікна: + Window style: + Стиль вікна: - Size of toolbar icons: - Size of toolbar icons: + Size of toolbar icons: + Розмір піктограм на панелі інструментів: - - + + Gui::Dialog::DlgGeneralImp - Default (%1 x %1) - Default (%1 x %1) + Default (%1 x %1) + За замовчуванням (%1 x %1) - Small (%1 x %1) - Small (%1 x %1) + Small (%1 x %1) + Малий (%1 x %1) - Large (%1 x %1) - Large (%1 x %1) + Large (%1 x %1) + Великий (%1 x %1) - Extra large (%1 x %1) - Extra large (%1 x %1) + Extra large (%1 x %1) + Дуже великий (%1 x %1) - - + + Gui::Dialog::DlgInputDialog - Input - Ввід + Input + Ввід - OK - Гаразд + OK + Гаразд - Cancel - Скасувати + Cancel + Скасувати - - Про програму + + Про програму - - + + Gui::Dialog::DlgInspector - Scene Inspector - Інспектор сцени + Scene Inspector + Інспектор сцени - - + + Gui::Dialog::DlgMacroExecute - Execute macro - Виконати макрос + Execute macro + Виконати макрос - Macro name: - Назва макросу: + Macro name: + Назва макросу: - Macro destination: - Призначення макросу: + Macro destination: + Призначення макросу: - Execute - Виконати + Execute + Виконати - Close - Закрити + Close + Закрити - Create - Створити + Create + Створити - Delete - Видалити + Delete + Видалити - Edit - Редагувати + Edit + Правка - - + + Gui::Dialog::DlgMacroExecuteImp - Macros - Макроси + Macros + Макроси - Macro file - Файл макросу + Macro file + Файл макросу - Enter a file name, please: - Будь ласка, введіть ім'я файлу: + Enter a file name, please: + Будь ласка, введіть ім'я файлу: - Existing file - Існуючий файл + Existing file + Існуючий файл - '%1'. + '%1'. This file already exists. - '%1'. + '%1'. Цей файл вже існує. - Delete macro - Видалити макрос + Delete macro + Видалити макрос - Do you really want to delete the macro '%1'? - Ви дійсно бажаєте видалити макрос "%1"? + Do you really want to delete the macro '%1'? + Ви дійсно бажаєте видалити макрос "%1"? - Cannot create file - Не вдається створити файл + Cannot create file + Не вдається створити файл - Creation of file '%1' failed. - Створення файлу '%1' не вдалося. + Creation of file '%1' failed. + Створення файлу '%1' не вдалося. - - + + Gui::Dialog::DlgMacroRecord - Macro recording - Запис макросу + Macro recording + Запис макросу - Macro name: - Назва макросу: + Macro name: + Назва макросу: - Stop - Стоп + Stop + Стоп - Cancel - Скасувати + Cancel + Скасувати - Macro path: - Шлях до макросу: + Macro path: + Шлях до макросу: - ... - ... + ... + ... - Record - Запис + Record + Запис - - + + Gui::Dialog::DlgMacroRecordImp - Macro recorder - Засіб запису макросу + Macro recorder + Засіб запису макросу - Specify first a place to save. - Спочатку вкажіть місце для збереження. + Specify first a place to save. + Спочатку вкажіть місце для збереження. - Existing macro - Наявні макроси + Existing macro + Наявні макроси - The macro '%1' already exists. Do you want to overwrite? - Макрос "%1" уже існує. Бажаєте замінити? + The macro '%1' already exists. Do you want to overwrite? + Макрос "%1" уже існує. Бажаєте замінити? - The macro directory doesn't exist. Please, choose another one. - Каталог макросів не існує. Будь ласка, оберіть інший. + The macro directory doesn't exist. Please, choose another one. + Каталог макросів не існує. Будь ласка, оберіть інший. - Choose macro directory - Вибрати каталог макросів + Choose macro directory + Вибрати каталог макросів - - + + Gui::Dialog::DlgMaterialProperties - Material properties - Властивості матеріалу + Material properties + Властивості матеріалу - &Close - &Закрити + &Close + &Закрити - Alt+C - Alt+C + Alt+C + Alt+C - Material - Матеріал + Material + Матеріал - Diffuse color: - Колір дифузії: + Diffuse color: + Колір дифузії: - Specular color: - Колір відбиття: + Specular color: + Колір відбиття: - Shininess: - Яскравість: + Shininess: + Яскравість: - % - % + % + % - Ambient color: - Колір оточення: + Ambient color: + Колір оточення: - - Про програму + + Про програму - Emissive color: - Колір емісії: + Emissive color: + Колір емісії: - - + + Gui::Dialog::DlgOnlineHelp - On-line help - Он-лайн допомога + On-line help + Он-лайн допомога - Help viewer - Перегляд допомоги + Help viewer + Перегляд допомоги - Location of start page - Розташування початкової сторінки + Location of start page + Розташування початкової сторінки - - + + Gui::Dialog::DlgOnlineHelpImp - HTML files (*.html *.htm) - HTML файли (*.html *.htm) + HTML files (*.html *.htm) + HTML файли (*.html *.htm) - Access denied - Доступ заборонено + Access denied + Доступ заборонено - Access denied to '%1' + Access denied to '%1' Specify another directory, please. - Відмовлено в доступі до '%1' + Відмовлено в доступі до '%1' Вкажіть інший каталог, будь ласка. - - + + Gui::Dialog::DlgParameter - Parameter Editor - Параметри редактора + Parameter Editor + Параметри редактора - Save to disk - Зберегти на диск + Save to disk + Зберегти на диск - Alt+C - Alt+C + Alt+C + Alt+C - &Close - &Закрити + &Close + &Закрити - - + + Gui::Dialog::DlgParameterImp - Group - Група + Group + Група - Name - Назва + Name + Назва - Type - Тип + Type + Тип - Value - Значення + Value + Значення - User parameter - Параметри користувача + User parameter + Параметри користувача - Invalid input - Некоректний ввід + Invalid input + Некоректний ввід - Invalid key name '%1' - Невірне ім'я ключа '%1' + Invalid key name '%1' + Невірне ім'я ключа '%1' - System parameter - Системні параметри + System parameter + Системні параметри - - + + Gui::Dialog::DlgPreferences - Preferences - Налаштування + Preferences + Налаштування - &Help - &Довідка + &Help + &Довідка - Alt+H - Alt+H + Alt+H + Alt+H - &OK - &Гаразд + &OK + &Гаразд - &Apply - Застосувати + &Apply + Застосувати - Alt+A - Alt+A + Alt+A + Alt+A - &Cancel - &Відміна + &Cancel + &Відміна - - Про програму + + Про програму - - + + Gui::Dialog::DlgPreferencesImp - Wrong parameter - Неправильний параметр + Wrong parameter + Неправильний параметр - - + + Gui::Dialog::DlgProjectInformation - Project information - Інформація про проект + Project information + Інформація про проект - Information - Інформація + Information + Інформація - &Name: - Назва: + &Name: + Назва: - Commen&t: - Коментар: + Commen&t: + Коментар: - Path: - Шлях: + Path: + Шлях: - &Last modified by: - І останні зміни внесені: + &Last modified by: + І останні зміни внесені: - Created &by: - Створено: + Created &by: + Створено: - Com&pany: - Компанія: + Com&pany: + Компанія: - Last &modification date: - Дата останньої зміни: + Last &modification date: + Дата останньої зміни: - Creation &date: - Дата створення: + Creation &date: + Дата створення: - &OK - &Гаразд + &OK + &Гаразд - &Cancel - &Відміна + &Cancel + &Відміна - - Про програму + + Про програму - - + + Gui::Dialog::DlgProjectUtility - Project utility - Project utility + Project utility + Утиліта проекту - Extract project - Extract project + Extract project + Extract project - Source - Source + Source + Джерело - Project file (*.fcstd) - Project file (*.fcstd) + Project file (*.fcstd) + Файл проекту (*.fcstd) - Destination - Destination + Destination + Призначення - Extract - Extract + Extract + Витяг - Create project - Create project + Create project + Створити проект - Document.xml - Document.xml + Document.xml + Document.xml - Create - Створити + Create + Створити - Load project file after creation - Load project file after creation + Load project file after creation + Завантажити файл проекту після створення - Empty source - Empty source + Empty source + Порожнє джерело - No source is defined. - No source is defined. + No source is defined. + Немає визначеного джерела. - Empty destination - Empty destination + Empty destination + Empty destination - No destination is defined. - No destination is defined. + No destination is defined. + No destination is defined. - - + + Gui::Dialog::DlgReportView - Output window - Вікно виводу + Output window + Вікно виводу - Output - Вивід + Output + Вивід - Record log messages - Запис повідомлень журналу (log) + Record log messages + Запис повідомлень журналу (log) - Record warnings - Запис попереджень + Record warnings + Запис попереджень - Record error messages - Запис повідомлень про помилки + Record error messages + Запис повідомлень про помилки - Colors - Кольори + Colors + Кольори - Normal messages: - Звичайні повідомлення: + Normal messages: + Звичайні повідомлення: - Log messages: - Повідомлення журналу: + Log messages: + Повідомлення журналу: - Warnings: - Попередження: + Warnings: + Попередження: - Errors: - Помилки: + Errors: + Помилки: - - Про програму + + Про програму - Redirect internal Python errors to report view - Redirect internal Python errors to report view + Redirect internal Python errors to report view + Переспрямувати внутрішні помилки Python у вид повідомлень - Redirect internal Python output to report view - Redirect internal Python output to report view + Redirect internal Python output to report view + Redirect internal Python output to report view - - + + Gui::Dialog::DlgRunExternal - Running external program - Запуск зовнішньої програми + Running external program + Запуск зовнішньої програми - TextLabel - ТекстовийНадпис + TextLabel + ТекстовийНадпис - Advanced >> - Додатково >> + Advanced >> + Додатково >> - ... - ... + ... + ... - Accept changes - Прийняти зміни + Accept changes + Прийняти зміни - Discard changes - Скасувати зміни + Discard changes + Скасувати зміни - Abort program - Перервати програму + Abort program + Перервати програму - Help - Довідка + Help + Довідка - Select a file - Виберіть файл + Select a file + Виберіть файл - - + + Gui::Dialog::DlgSettings3DView - 3D View - 3D вигляд + 3D View + 3D вигляд - 3D View settings - Налаштування 3D вигляду + 3D View settings + Налаштування 3D вигляду - Show coordinate system in the corner - Показувати систему координат в кутку + Show coordinate system in the corner + Показувати систему координат в кутку - Show counter of frames per second - Показувати кількість кадрів в секунду + Show counter of frames per second + Показувати кількість кадрів в секунду - Enable animation - Увімкнути анімацію + Enable animation + Увімкнути анімацію - Enable anti-aliasing (slower) - Включити згладжування (сповільнення роботи) + Enable anti-aliasing (slower) + Включити згладжування (сповільнення роботи) - Eye to eye distance for stereo modes: - Відстань між точками огляду: + Eye to eye distance for stereo modes: + Відстань між точками огляду: - Camera type - Тип камери + Camera type + Тип камери - Orthographic rendering - Ортогональна візуалізація + Orthographic rendering + Ортогональна візуалізація - Perspective rendering - Візуалізація в перспективі + Perspective rendering + Візуалізація в перспективі - - Про програму + + Про програму - 3D Navigation - 3D Навігація + 3D Navigation + 3D Навігація - Mouse... - Мишка... + Mouse... + Мишка... - Intensity of backlight - Інтенсивність підсвітки + Intensity of backlight + Інтенсивність підсвітки - Enable backlight color - Увімкнути колір підсвітки + Enable backlight color + Увімкнути колір підсвітки - Orbit style - Orbit style + Orbit style + Orbit style - Turntable - Turntable + Turntable + Turntable - Trackball - Trackball + Trackball + Trackball - Invert zoom - Invert zoom + Invert zoom + Invert zoom - Zoom at cursor - + Zoom at cursor + Zoom at cursor - Zoom step - + Zoom step + Zoom step - - + + Gui::Dialog::DlgSettings3DViewImp - %1 navigation - %1 навігація + %1 navigation + %1 навігація - - + + Gui::Dialog::DlgSettingsColorGradient - Color model - Колірна модель + Color model + Колірна модель - &Gradient: - &Градієнт: + &Gradient: + &Градієнт: - red-yellow-green-cyan-blue - червоний-жовтий-зелений-блакитний-синій + red-yellow-green-cyan-blue + червоний-жовтий-зелений-блакитний-синій - blue-cyan-green-yellow-red - синій-блакитний-зелений-жовтий-червоний + blue-cyan-green-yellow-red + синій-блакитний-зелений-жовтий-червоний - white-black - білий-чорний + white-black + білий-чорний - black-white - чорний-білий + black-white + чорний-білий - Visibility - Видимість + Visibility + Видимість - Out g&rayed - З сірого + Out g&rayed + З сірого - Alt+R - Alt+R + Alt+R + Alt+R - Out &invisible - З прозорого + Out &invisible + З прозорого - Alt+I - Alt+I + Alt+I + Alt+I - Style - Стиль + Style + Стиль - &Zero - &Нуль + &Zero + &Нуль - Alt+Z - Alt+Z + Alt+Z + Alt+Z - &Flow - &Потік + &Flow + &Потік - Alt+F - Alt+F + Alt+F + Alt+F - &OK - &Гаразд + &OK + &Гаразд - &Cancel - &Відміна + &Cancel + &Відміна - Parameter range - Значення діапазону + Parameter range + Значення діапазону - Mi&nimum: - Мінімум: + Mi&nimum: + Мінімум: - Ma&ximum: - Максимум: + Ma&ximum: + Максимум: - &Labels: - &Позначки: + &Labels: + &Позначки: - &Decimals: - &Десяткові: + &Decimals: + &Десяткові: - - Про програму + + Про програму - Color-gradient settings - Налаштування кольору градієнта + Color-gradient settings + Налаштування кольору градієнта - - + + Gui::Dialog::DlgSettingsColorGradientImp - Wrong parameter - Неправильний параметр + Wrong parameter + Неправильний параметр - The maximum value must be higher than the minimum value. - Максимальне значення має бути вище, ніж мінімальне значення. + The maximum value must be higher than the minimum value. + Максимальне значення має бути вище, ніж мінімальне значення. - - + + Gui::Dialog::DlgSettingsDocument - Document - Документ + Document + Документ - General - Загальне + General + Загальне - Document save compression level + Document save compression level (0 = none, 9 = highest, 3 = default) - Рівень стиснення документу + Рівень стиснення документу (0 = немає, 9 = високий, 3 = за замовчуванням) - Create new document at start up - Створення нового документа при запуску + Create new document at start up + Створення нового документа при запуску - Storage - Сховище + Storage + Сховище - Saving transactions (Auto-save) - Збереження операцій (Автозбереження) + Saving transactions (Auto-save) + Збереження операцій (Автозбереження) - Discard saved transaction after saving document - Очищати збережені операції після збереження документа + Discard saved transaction after saving document + Очищати збережені операції після збереження документа - Save thumbnail into project file when saving document - Зберегти мініатюру у файл проекту при збереженні документа + Save thumbnail into project file when saving document + Зберегти мініатюру у файл проекту при збереженні документа - Create up to backup files when resaving document - Створення резервної копії файлів під час повторного збереження документу + Create up to backup files when resaving document + Створення резервної копії файлів під час повторного збереження документу - Document objects - Об'єкти документу + Document objects + Об'єкти документу - Allow duplicate object labels in one document - Дозволити дублювання підписів для об'єктів в одному документі + Allow duplicate object labels in one document + Дозволити дублювання підписів для об'єктів в одному документі - Maximum Undo/Redo steps - Maximum Undo/Redo steps + Maximum Undo/Redo steps + Максимальна кількість кроків скасування/повторення дій - Using Undo/Redo on documents - Using Undo/Redo on documents + Using Undo/Redo on documents + Використання скасування/повторення дій у документах - - + + Gui::Dialog::DlgSettingsEditorImp - Text - Текст + Text + Текст - Bookmark - Закладка + Bookmark + Закладка - Breakpoint - Точка зупинки + Breakpoint + Точка зупинки - Keyword - Ключове слово + Keyword + Ключове слово - Comment - Коментар + Comment + Коментар - Block comment - Блок коментаря + Block comment + Блок коментаря - Number - Число + Number + Число - String - Рядок + String + Рядок - Character - Символ + Character + Символ - Class name - Назва класу + Class name + Назва класу - Define name - Вказати назву + Define name + Вказати назву - Operator - Оператор + Operator + Оператор - Python output - Вивід Python + Python output + Вивід Python - Python error - Помилка Python + Python error + Помилка Python - Items - Елементи + Items + Елементи - Current line highlight - + Current line highlight + Current line highlight - - + + Gui::Dialog::DlgSettingsImage - Image settings - Параметри зображення + Image settings + Параметри зображення - Image properties - Властивості зображення + Image properties + Властивості зображення - Back&ground: - Фон: + Back&ground: + Фон: - Current - Поточне + Current + Поточне - White - Білий + White + Білий - Black - Чорний + Black + Чорний - Transparent - Прозорість + Transparent + Прозорість - Image dimensions - Розміри зображення + Image dimensions + Розміри зображення - Pixel - Піксель + Pixel + Піксель - &Width: - Ширина: + &Width: + Ширина: - Current screen - Поточний екран + Current screen + Поточний екран - Icon 32 x 32 - Іконка 32 х 32 + Icon 32 x 32 + Іконка 32 х 32 - Icon 64 x 64 - Іконка 64 х 64 + Icon 64 x 64 + Іконка 64 х 64 - Icon 128 x 128 - Іконка 128 х 128 + Icon 128 x 128 + Іконка 128 х 128 - CGA 320 x 200 - CGA 320 x 200 + CGA 320 x 200 + CGA 320 x 200 - QVGA 320 x 240 - QVGA 320 x 240 + QVGA 320 x 240 + QVGA 320 x 240 - VGA 640 x 480 - VGA 640 x 480 + VGA 640 x 480 + VGA 640 x 480 - NTSC 720 x 480 - NTSC 720 x 480 + NTSC 720 x 480 + NTSC 720 x 480 - PAL 768 x 578 - PAL 768 x 578 + PAL 768 x 578 + PAL 768 x 578 - SVGA 800 x 600 - SVGA 800 x 600 + SVGA 800 x 600 + SVGA 800 x 600 - XGA 1024 x 768 - XGA 1024 x 768 + XGA 1024 x 768 + XGA 1024 x 768 - HD720 1280 x 720 - HD720 1280 x 720 + HD720 1280 x 720 + HD720 1280 x 720 - SXGA 1280 x 1024 - SXGA 1280 x 1024 + SXGA 1280 x 1024 + SXGA 1280 x 1024 - SXGA+ 1400 x 1050 - SXGA+ 1400 x 1050 + SXGA+ 1400 x 1050 + SXGA+ 1400 x 1050 - UXGA 1600 x 1200 - UXGA 1600 x 1200 + UXGA 1600 x 1200 + UXGA 1600 x 1200 - HD1080 1920 x 1080 - HD1080 1920 x 1080 + HD1080 1920 x 1080 + HD1080 1920 x 1080 - WUXGA 1920 x 1200 - WUXGA 1920 x 1200 + WUXGA 1920 x 1200 + WUXGA 1920 x 1200 - QXGA 2048 x 1538 - QXGA 2048 x 1538 + QXGA 2048 x 1538 + QXGA 2048 x 1538 - WQXGA 2560 x 1600 - WQXGA 2560 x 1600 + WQXGA 2560 x 1600 + WQXGA 2560 x 1600 - QSXGA 2560 x 2048 - QSXGA 2560 x 2048 - - - QUXGA 3200 × 2400 - QUXGA 3200 × 2400 - - - HUXGA 6400 × 4800 - HUXGA 6400 × 4800 + QSXGA 2560 x 2048 + QSXGA 2560 x 2048 - !!! 10000 x 10000 - !!! 10000 x 10000 + QUXGA 3200 × 2400 + QUXGA 3200 × 2400 - Standard sizes: - Стандартні розміри: + HUXGA 6400 × 4800 + HUXGA 6400 × 4800 - &Height: - Висота: + !!! 10000 x 10000 + !!! 10000 x 10000 - Aspect ratio: - Відношення сторін: + Standard sizes: + Стандартні розміри: - &Screen - Екран + &Height: + Висота: - Alt+S - Alt+S + Aspect ratio: + Відношення сторін: - &4:3 - &4:3 + &Screen + Екран - Alt+4 - Alt+4 + Alt+S + Alt+S - 1&6:9 - 1&6:9 + &4:3 + &4:3 - Alt+6 - Alt+6 + Alt+4 + Alt+4 - &1:1 - &1:1 + 1&6:9 + 1&6:9 - Alt+1 - Alt+1 + Alt+6 + Alt+6 - Image comment - Коментар до зображення + &1:1 + &1:1 - Insert MIBA - Вставити MIBA + Alt+1 + Alt+1 - Insert comment - Вставити коментар + Image comment + Коментар до зображення - - + + Insert MIBA + Вставити MIBA + + + Insert comment + Вставити коментар + + + Gui::Dialog::DlgSettingsMacro - Macro - Макрос + Macro + Макрос - Macro recording settings - Установки запису макросів + Macro recording settings + Установки запису макросів - Logging Commands - Ведення журналу команд + Logging Commands + Ведення журналу команд - Show script commands in python console - Показувати команди сценарію в консолі Python + Show script commands in python console + Показувати команди сценарію в консолі Python - Log all commands issued by menus to file: - Реєстрація всіх команд (викликаних з допомогою меню) у файл: + Log all commands issued by menus to file: + Реєстрація всіх команд (викликаних з допомогою меню) у файл: - FullScript.FCScript - FullScript.FCScript + FullScript.FCScript + FullScript.FCScript - Gui commands - Команди GUI + Gui commands + Команди GUI - Recording GUI commands - Запис команд GUI + Recording GUI commands + Запис команд GUI - Record as comment - Записати як коментар + Record as comment + Записати як коментар - Macro path - Шлях до макросу + Macro path + Шлях до макросу - General macro settings - + General macro settings + General macro settings - Run macros in local environment - + Run macros in local environment + Run macros in local environment - - + + Gui::Dialog::DlgSettingsUnits - Units - Одиниці + Units + Одиниці - Units settings - Налаштування одиниць + Units settings + Налаштування одиниць - Standard (mm/kg/s/degree) - Стандарт (мм/кг/с/град) + Standard (mm/kg/s/degree) + Стандарт (мм/кг/с/град) - MKS (m/kg/s/degree) - МКС (м/кг/с/град) + MKS (m/kg/s/degree) + МКС (м/кг/с/град) - Magnitude - Величина + Magnitude + Величина - Unit - Одиниця + Unit + Одиниця - User system: - Користувач системи: + User system: + Користувач системи: - Imperial (in/lb) - Імперська (in/lb) + Imperial (in/lb) + Імперська (in/lb) - - + + Gui::Dialog::DlgSettingsViewColor - Colors - Кольори + Colors + Кольори - Selection - Вибір + Selection + Вибір - Enable selection highlighting - Увімкнути підсвічування виділеного + Enable selection highlighting + Увімкнути підсвічування виділеного - Enable preselection highlighting - Увімкнути підсвічування виділеного + Enable preselection highlighting + Увімкнути підсвічування виділеного - Background color - Колір фону + Background color + Колір фону - Middle color - Середній колір + Middle color + Середній колір - Color gradient - Градієнт кольору + Color gradient + Градієнт кольору - Simple color - Прості кольори + Simple color + Прості кольори - Default colors - Default colors + Default colors + Кольори за замовчуванням - Edited edge color - Edited edge color + Edited edge color + Редагований колір ребра - Edited vertex color - Edited vertex color + Edited vertex color + Редагований колір вершини - Construction geometry - Construction geometry + Construction geometry + Допоміжна геометрія - Fully constrained geometry - Fully constrained geometry + Fully constrained geometry + Повністю обмежена геометрія - The color of construction geometry in editmode - The color of construction geometry in editmode + The color of vertices being edited + Колір вершини редагувався - The color of fully constrained geometry in editmode - The color of fully constrained geometry in editmode + The color of edges being edited + Колір ребер був змінений - The color of vertices being edited - The color of vertices being edited + The color of construction geometry in edit mode + The color of construction geometry in edit mode - The color of edges being edited - The color of edges being edited + The color of fully constrained geometry in edit mode + The color of fully constrained geometry in edit mode - The color of construction geometry in edit mode - + Cursor text color + Cursor text color - The color of fully constrained geometry in edit mode - + Default shape color + Default shape color - Cursor text color - + The default color for new shapes + The default color for new shapes - Default shape color - + Default line width and color + Default line width and color - The default color for new shapes - + The default line color for new shapes + The default line color for new shapes - Default line width and color - + The default line thickness for new shapes + The default line thickness for new shapes - The default line color for new shapes - + px + px - - The default line thickness for new shapes - - - - px - - - - + + Gui::Dialog::DlgTipOfTheDay - Tip of the day - Порада дня + Tip of the day + Порада дня - <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> - <b><font face="Times New Roman"><font size="+3">Чи знаєте Ви ...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <b><font face="Times New Roman"><font size="+3">Чи знаєте Ви ...</font></font></b> - &Show tips at start up - &Показувати поради при запуску + &Show tips at start up + &Показувати поради при запуску - Alt+S - Alt+S + Alt+S + Alt+S - &Next Tip - &Наступна порада + &Next Tip + &Наступна порада - Alt+N - Alt+N + Alt+N + Alt+N - &Close - &Закрити + &Close + &Закрити - Alt+C - Alt+C + Alt+C + Alt+C - - Про програму + + Про програму - - + + Gui::Dialog::DlgTipOfTheDayImp - Download failed: %1 + Download failed: %1 - Помилка під час завантаження: %1 + Помилка під час завантаження: %1 - If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. - Якщо Ви бажаєте дізнатися більше про FreeCAD слід перейти до %1 або натиснути пункт Довідка в Меню довідки. + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + Якщо Ви бажаєте дізнатися більше про FreeCAD слід перейти до %1 або натиснути пункт Довідка в Меню довідки. - - + + Gui::Dialog::DockablePlacement - Placement - Розташування + Placement + Розташування - - + + Gui::Dialog::DownloadDialog - Canceled. - Canceled. + Download + Download - Download - + Cancel + Скасувати - Cancel - Скасувати + Close + Закрити - Close - Закрити + There already exists a file called %1 in the current directory. Overwrite? + There already exists a file called %1 in the current directory. Overwrite? - There already exists a file called %1 in the current directory. Overwrite? - + Unable to save the file %1: %2. + Unable to save the file %1: %2. - Unable to save the file %1: %2. - + Downloading %1. + Downloading %1. - Downloading %1. - + Download canceled. + Download canceled. - Download canceled. - + Download failed: %1. + Помилка завантаження: %1. - Download failed: %1. - Помилка завантаження: %1. + Downloaded %1 to current directory. + Downloaded %1 to current directory. - - Downloaded %1 to current directory. - - - - + + Gui::Dialog::IconDialog - Add icon - Add icon + Add icon + Додати іконку - - + + Gui::Dialog::InputVector - Input vector - Вхідний вектор + Input vector + Вхідний вектор - Vector - Вектор + Vector + Вектор - Z: - Z: + Z: + Z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - OK - Гаразд + OK + Гаразд - - + + Gui::Dialog::LicenseDialog - Copyright - + Copyright + Copyright - - + + Gui::Dialog::MouseButtons - Mouse buttons - Кнопки мишки + Mouse buttons + Кнопки мишки - Configuration - Налаштування + Configuration + Налаштування - Selection: - Вибір: + Selection: + Вибір: - Panning - Панорамування + Panning + Панорамування - Rotation: - Обертання: + Rotation: + Обертання: - Zooming: - Масштабування: + Zooming: + Масштабування: - - + + Gui::Dialog::ParameterGroup - Expand - Розгорнути + Expand + Розгорнути - Add sub-group - Додати підгрупу + Add sub-group + Додати підгрупу - Remove group - Видалити групу + Remove group + Видалити групу - Rename group - Перейменувати групу + Rename group + Перейменувати групу - Export parameter - Параметри експорту + Export parameter + Параметри експорту - Import parameter - Параметр імпорту + Import parameter + Параметр імпорту - Collapse - Згорнути + Collapse + Згорнути - Do really want to remove this parameter group? - Дійсно бажаєте видалити групу параметрів ? + Do really want to remove this parameter group? + Дійсно бажаєте видалити групу параметрів ? - Existing sub-group - Існуючі підгрупи + Existing sub-group + Існуючі підгрупи - The sub-group '%1' already exists. - Підгрупа "%1" вже існує. + The sub-group '%1' already exists. + Підгрупа "%1" вже існує. - Export parameter to file - Експорт параметрів до файлу + Export parameter to file + Експорт параметрів до файлу - XML (*.FCParam) - XML (*.FCParam) + XML (*.FCParam) + XML (*.FCParam) - Import parameter from file - Імпорт параметрів з файлу + Import parameter from file + Імпорт параметрів з файлу - Import Error - Помилка імпорту + Import Error + Помилка імпорту - Reading from '%1' failed. - Помилка читання з '%1'. + Reading from '%1' failed. + Помилка читання з '%1'. - - + + Gui::Dialog::ParameterValue - Change value - Змінити значення + Change value + Змінити значення - Remove key - Видалити ключ + Remove key + Видалити ключ - Rename key - Перейменувати ключ + Rename key + Перейменувати ключ - New - Новий + New + Новий - New string item - Новий рядок елементу + New string item + Новий рядок елементу - New float item - New float item + New float item + New float item - New integer item - Новий елемент, ціле число + New integer item + Новий елемент, ціле число - New unsigned item - Новий непідписаний елемент + New unsigned item + Новий непідписаний елемент - New Boolean item - Новий логічний елемент + New Boolean item + Новий логічний елемент - Existing item - Існуючий елемент + Existing item + Існуючий елемент - The item '%1' already exists. - Елемент '%1' вже існує. + The item '%1' already exists. + Елемент '%1' вже існує. - - + + Gui::Dialog::Placement - Placement - Розташування + Placement + Розташування - OK - Гаразд + OK + Гаразд - Translation: - Переміщення: + Translation: + Переміщення: - Z: - Z: + Z: + Z: - Y: - Y: + Y: + Y: - X: - X: + X: + X: - Rotation: - Обертання: + Rotation: + Обертання: - Angle: - Кут: + Angle: + Кут: - Axis: - Вісь: + Axis: + Вісь: - Center: - Центр: + Center: + Центр: - Pitch: - Крок: + Pitch: + Крок: - Roll: - Кинути: + Roll: + Кинути: - Yaw: - Відхилення: + Yaw: + Відхилення: - Rotation axis with angle - Rotation axis with angle + Rotation axis with angle + Rotation axis with angle - Euler angles - Кути Ейлера + Euler angles + Кути Ейлера - Apply placement changes immediately - Apply placement changes immediately + Apply placement changes immediately + Застосувати зміни розміщення негайно - Apply incremental changes to object placement - Apply incremental changes to object placement + Apply incremental changes to object placement + Apply incremental changes to object placement - Apply - Застосувати + Apply + Застосувати - Reset - Скинути + Reset + Скинути - Close - Закрити + Close + Закрити - - + + Gui::Dialog::PrintModel - Button - Button + Button + Кнопка - Command - Команда + Command + Команда - - + + Gui::Dialog::SceneInspector - Dialog - Діалогове вікно + Dialog + Діалогове вікно - Close - Закрити + Close + Закрити - Refresh - Оновити + Refresh + Оновити - - + + Gui::Dialog::SceneModel - Inventor Tree - Винахідник дерева + Inventor Tree + Винахідник дерева - Nodes - Вузли + Nodes + Вузли - - + + Gui::Dialog::TextureMapping - Texture - Текстура + Texture + Текстура - Texture mapping - Текстури + Texture mapping + Текстури - Global - Глобальна + Global + Глобальна - Environment - Середовище + Environment + Середовище - Image files (%1) - Файли зображень (%1) + Image files (%1) + Файли зображень (%1) - No image - Зображення відсутнє + No image + Зображення відсутнє - The specified file is not a valid image file. - Вказаний файл не є допустимим файлом зображення. + The specified file is not a valid image file. + Вказаний файл не є допустимим файлом зображення. - No 3d view - 3d вигляд відсутній + No 3d view + 3d вигляд відсутній - No active 3d view found. - Не знайдено активного 3d вигляду. + No active 3d view found. + Не знайдено активного 3d вигляду. - - + + Gui::Dialog::Transform - Cancel - Скасувати + Cancel + Скасувати - Transform - Перетворення + Transform + Перетворення - - + + Gui::DlgTreeWidget - Dialog - Діалогове вікно + Dialog + Діалогове вікно - Items - Елементи + Items + Елементи - OK - Гаразд + OK + Гаразд - Cancel - Скасувати + Cancel + Скасувати - - Про програму + + Про програму - - + + Gui::DockWnd::CombiView - CombiView - КомбінованийВигляд + CombiView + КомбінованийВигляд - Project - Проект + Project + Проект - Tasks - Завдання + Tasks + Завдання - - + + Gui::DockWnd::HelpView - Previous - Назад + Previous + Назад - Next - Вперед + Next + Вперед - Home - Додому + Home + Додому - Open - Відкрити + Open + Відкрити - Open file - Відкрити файл + Open file + Відкрити файл - All HTML files (*.html *.htm) - Всі HTML-файли (*.HTML *.HTM) + All HTML files (*.html *.htm) + Всі HTML-файли (*.HTML *.HTM) - External browser - Зовнішній браузер + External browser + Зовнішній браузер - No external browser found. Specify in preferences, please - Не знайдено зовнішній браузер. Вкажіть його в настройках, будь ласка, + No external browser found. Specify in preferences, please + Не знайдено зовнішній браузер. Вкажіть його в настройках, будь ласка, - Starting of %1 failed - Старт з %1 не вдався + Starting of %1 failed + Старт з %1 не вдався - - + + Gui::DockWnd::PropertyDockView - Property View - Перегляд властивостей + Property View + Перегляд властивостей - - + + Gui::DockWnd::ReportOutput - Logging - Ведення журналу + Logging + Ведення журналу - Warning - Попередження + Warning + Попередження - Error - Помилка + Error + Помилка - Options - Параметри + Options + Параметри - Clear - Очистити + Clear + Очистити - Save As... - Зберегти як... + Save As... + Зберегти як... - Save Report Output - Зберегти звіт + Save Report Output + Зберегти звіт - Plain Text Files (*.txt *.log) - Текстові файли (*.txt *.log) + Plain Text Files (*.txt *.log) + Текстові файли (*.txt *.log) - Go to end - Перейти в кінець + Go to end + Перейти в кінець - Redirect Python output - Redirect Python output + Redirect Python output + Переспрямувати вивід Python - Redirect Python errors - Перенаправлення помилок Python + Redirect Python errors + Перенаправлення помилок Python - - + + Gui::DockWnd::ReportView - Output - Вивід + Output + Вивід - Python console - Консоль python + Python console + Консоль python - - + + Gui::DockWnd::SelectionView - Property View - Перегляд властивостей + Property View + Перегляд властивостей - - + + Gui::DockWnd::TaskPanelView - Task View - Вигляд завдання + Task View + Вигляд завдання - - + + Gui::DockWnd::TextBrowser - Could not open file. - Неможливо відкрити файл. + Could not open file. + Неможливо відкрити файл. - You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. - Ви спробували отримати доступ до адреси %1, яка в даний час недоступна. Будь ласка, переконайтеся, що URL-адреса існує і спробуйте перезавантажити сторінку. + You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. + Ви спробували отримати доступ до адреси %1, яка в даний час недоступна. Будь ласка, переконайтеся, що URL-адреса існує і спробуйте перезавантажити сторінку. - Connecting to %1 - З'єднання з %1 + Connecting to %1 + З'єднання з %1 - Sending to %1 - Надсилання до %1 + Sending to %1 + Надсилання до %1 - Reading from %1 - Читання з %1 + Reading from %1 + Читання з %1 - Download failed: %1. - Помилка завантаження: %1. + Download failed: %1. + Помилка завантаження: %1. - Previous - Назад + Previous + Назад - Forward - Далі + Forward + Далі - Home - Додому + Home + Додому - Refresh - Оновити + Refresh + Оновити - Copy - Копіювати + Copy + Копіювати - Select all - Виділити все + Select all + Виділити все - No description for - Нема опису для + No description for + Нема опису для - - + + Gui::DocumentModel - Application - Програма + Application + Програма - Labels & Attributes - Етикетки та атрибути + Labels & Attributes + Етикетки та атрибути - - + + Gui::EditorView - Modified file - Змінений файл + Modified file + Змінений файл - %1. + %1. This has been modified outside of the source editor. Do you want to reload it? - %1. + %1. Файл було змінено поза редактором. Бажаєте перезавантаити його? - Unsaved document - Незбережений документ + Unsaved document + Незбережений документ - The document has been modified. + The document has been modified. Do you want to save your changes? - Документ було змінено. + Документ було змінено. Бажаєте зберегти внесені зміни? - FreeCAD macro (*.FCMacro);;Python (*.py) - FreeCAD макрос (*.FCMacro);;Python (*.py) + FreeCAD macro (*.FCMacro);;Python (*.py) + FreeCAD макрос (*.FCMacro);;Python (*.py) - Export PDF - Експорт в PDF + Export PDF + Експорт в PDF - PDF file (*.pdf) - Файл PDF (*.pdf) + PDF file (*.pdf) + Файл PDF (*.pdf) - untitled[*] - без імені [*] + untitled[*] + без імені [*] - - Editor - - Редактор + - Editor + - Редактор - %1 chars removed - %1 символів видалено + %1 chars removed + %1 символів видалено - %1 chars added - %1 символів додано + %1 chars added + %1 символів додано - Formatted - Форматований + Formatted + Форматований - - + + Gui::FileChooser - Select a file - Виберіть файл + Select a file + Виберіть файл - Select a directory - Виберіть каталог + Select a directory + Виберіть каталог - - + + Gui::FileDialog - Save as - Зберегти як + Save as + Зберегти як - Open - Відкрити + Open + Відкрити - - + + Gui::FileOptionsDialog - Extended - Розширений + Extended + Розширений - All files (*.*) - Усі файли (*.*) + All files (*.*) + Усі файли (*.*) - - + + Gui::Flag - Top left - Вгорі ліворуч + Top left + Вгорі ліворуч - Bottom left - Внизу ліворуч + Bottom left + Внизу ліворуч - Top right - Вгорі праворуч + Top right + Вгорі праворуч - Bottom right - Внизу праворуч + Bottom right + Внизу праворуч - Remove - Видалити + Remove + Видалити - - + + Gui::InventorNavigationStyle - Press CTRL and left mouse button - Натисніть CTRL та ліву кнопку миші + Press CTRL and left mouse button + Натисніть CTRL та ліву кнопку миші - Press middle mouse button - Натиснути середню кнопку миші + Press middle mouse button + Натиснути середню кнопку миші - Press left mouse button - Натиснути ліву кнопку миші + Press left mouse button + Натиснути ліву кнопку миші - Scroll middle mouse button - Прокручування середньою кнопкою миші + Scroll middle mouse button + Прокручування середньою кнопкою миші - - + + Gui::LocationDialog - Wrong direction - Неправильний напрямок + Wrong direction + Неправильний напрямок - Direction must not be the null vector - Напрям не може мати нульовий вектор + Direction must not be the null vector + Напрям не може мати нульовий вектор - X - X + X + X - Y - Y + Y + Y - Z - Z + Z + Z - User defined... - Визначено користувачем... + User defined... + Визначено користувачем... - - + + Gui::LocationWidget - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - Z: + Z: + Z: - Direction: - + Direction: + Напрям: - - + + Gui::MacroCommand - Macros - Макроси + Macros + Макроси - - + + Gui::MainWindow - Dimension - Розмірність + Dimension + Розмірність - Ready - Готово + Ready + Готово - Toggles this toolbar - Переключення цієї панелі + Toggles this toolbar + Переключення цієї панелі - Toggles this dockable window - Переключення цього закріплюваного вікна + Toggles this dockable window + Переключення цього закріплюваного вікна - Close All - Закрити все + Close All + Закрити все - - + + Gui::ManualAlignment - Manual alignment - + Manual alignment + Manual alignment - The alignment is already in progress. - + The alignment is already in progress. + The alignment is already in progress. - Alignment[*] - + Alignment[*] + Alignment[*] - Please, select at least one point in the left and the right view - + Please, select at least one point in the left and the right view + Please, select at least one point in the left and the right view - Please, select at least %1 points in the left and the right view - + Please, select at least %1 points in the left and the right view + Please, select at least %1 points in the left and the right view - Please pick points in the left and right view - + Please pick points in the left and right view + Please pick points in the left and right view - The alignment has finished - + The alignment has finished + The alignment has finished - The alignment has been canceled - + The alignment has been canceled + The alignment has been canceled - Too few points picked in the left view. At least %1 points are needed. - + Too few points picked in the left view. At least %1 points are needed. + Too few points picked in the left view. At least %1 points are needed. - Too few points picked in the right view. At least %1 points are needed. - + Too few points picked in the right view. At least %1 points are needed. + Too few points picked in the right view. At least %1 points are needed. - Different number of points picked in left and right view. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Different number of points picked in left and right view. +On the left view %1 points are picked, +on the right view %2 points are picked. - Try to align group of views - + Try to align group of views + Try to align group of views - The alignment failed. + The alignment failed. How do you want to proceed? - + The alignment failed. +How do you want to proceed? - Retry - + Retry + Retry - Ignore - + Ignore + Ігнорувати - Abort - + Abort + Abort - Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - Point picked at (%1,%2,%3) - + Point picked at (%1,%2,%3) + Point picked at (%1,%2,%3) - No point was picked - + No point was picked + No point was picked - - + + Gui::NetworkRetriever - Download started... + Download started... - Завантаження розпочато... + Завантаження розпочато... - - + + Gui::ProgressBar - Remaining: %1 - Залишилося:%1 + Remaining: %1 + Залишилося:%1 - Aborting - Переривання + Aborting + Переривання - Do you really want to abort the operation? - Ви дійсно бажаєте перервати операцію? + Do you really want to abort the operation? + Ви дійсно бажаєте перервати операцію? - - + + Gui::ProgressDialog - Remaining: %1 - Залишилося:%1 + Remaining: %1 + Залишилося:%1 - Aborting - Переривання + Aborting + Переривання - Do you really want to abort the operation? - Ви дійсно бажаєте перервати операцію? + Do you really want to abort the operation? + Ви дійсно бажаєте перервати операцію? - - + + Gui::PropertyEditor::PropertyModel - Property - Властивість + Property + Властивість - Value - Значення + Value + Значення - - + + Gui::PropertyView - View - Вигляд + View + Вигляд - Data - Дані + Data + Дані - - + + Gui::PythonConsole - System exit - Вихід із системи + System exit + Вихід із системи - The application is still running. + The application is still running. Do you want to exit without saving your data? - Програма, досі працює. + Програма, досі працює. Бажаєте вийти без збереження даних? - Python console - Консоль python + Python console + Консоль python - Unhandled PyCXX exception. - Необроблене виключення PyCXX. + Unhandled PyCXX exception. + Необроблене виключення PyCXX. - Unhandled FreeCAD exception. - Необроблене виключення FreeCAD. + Unhandled FreeCAD exception. + Необроблене виключення FreeCAD. - Unhandled unknown C++ exception. - Необроблений невідомий виняток C++. + Unhandled unknown C++ exception. + Необроблений невідомий виняток C++. - &Copy command - &Копіювати команду + &Copy command + &Копіювати команду - &Copy history - &Копіювати історію + &Copy history + &Копіювати історію - Save history as... - Зберегти історію як... + Save history as... + Зберегти історію як... - Insert file name... - Введіть ім'я файлу ... + Insert file name... + Введіть ім'я файлу ... - Save History - Зберегти історію + Save History + Зберегти історію - Macro Files (*.FCMacro *.py) - Файли макросів (*.FCMacro *.ру) + Macro Files (*.FCMacro *.py) + Файли макросів (*.FCMacro *.ру) - Insert file name - Введіть ім'я файлу + Insert file name + Введіть ім'я файлу - All Files (*.*) - Всі файли (*.*) + All Files (*.*) + Всі файли (*.*) - Python Input Dialog - Діалогове віконце вводу Python + Python Input Dialog + Діалогове віконце вводу Python - Unhandled std C++ exception. - Необроблений виняток C++. + Unhandled std C++ exception. + Необроблений виняток C++. - Word wrap - Перенесення слів + Word wrap + Перенесення слів - &Copy - &Копіювати + &Copy + &Копіювати - &Paste - &Вставити + &Paste + &Вставити - Select All - Вибрати все + Select All + Вибрати все - Clear console - + Clear console + Clear console - - + + Gui::PythonEditor - Comment - Коментар + Comment + Коментар - Uncomment - Розкоментувати + Uncomment + Розкоментувати - - + + Gui::PythonInputField - OK - Гаразд + OK + Гаразд - Clear - Очистити + Clear + Очистити - - + + Gui::RecentFilesAction - Open file %1 - Відкрити файл %1 + Open file %1 + Відкрити файл %1 - File not found - Файл не знайдено + File not found + Файл не знайдено - The file '%1' cannot be opened. - Файл '%1' не може бути відкритий. + The file '%1' cannot be opened. + Файл '%1' не може бути відкритий. - - + + Gui::SelectModule - Select module - Виберіть модуль + Select module + Виберіть модуль - Open %1 as - Відкрити %1 як + Open %1 as + Відкрити %1 як - Select - Вибрати + Select + Вибрати - - + + Gui::StdCmdDescription - Help - Довідка + Help + Довідка - Des&cription - Опис + Des&cription + Опис - Long description of commands - Детальний опис команд + Long description of commands + Детальний опис команд - - + + Gui::StdCmdDownloadOnlineHelp - Help - Довідка + Help + Довідка - Download online help - Завантажити довідку з інтернету + Download online help + Завантажити довідку з інтернету - Download %1's online help - Завантаження %1's довідки з інтернету + Download %1's online help + Завантаження %1's довідки з інтернету - Non-existing directory - Неіснуючий каталог + Non-existing directory + Неіснуючий каталог - The directory '%1' does not exist. + The directory '%1' does not exist. Do you want to specify an existing directory? - Каталог '%1' не існує. + Каталог '%1' не існує. Бажаєте призначити існуючий каталог? - Missing permission - Відсутній дозвіл + Missing permission + Відсутній дозвіл - You don't have write permission to '%1' + You don't have write permission to '%1' Do you want to specify another directory? - Ви не маєте дозволу на запис до '%1' + Ви не маєте дозволу на запис до '%1' Бажаєте вказати інший каталог? - Stop downloading - Зупинка завантаження + Stop downloading + Зупинка завантаження - - + + Gui::StdCmdPythonHelp - Tools - Інструменти + Tools + Інструменти - Python Modules - Модулі Python + Python Modules + Модулі Python - Opens a browser to show the Python modules - Відкрити браузер для перегляду модулів Python + Opens a browser to show the Python modules + Відкрити браузер для перегляду модулів Python - - + + Gui::TaskBoxAngle - Angle - Кут + Angle + Кут - - + + Gui::TaskBoxPosition - Position - Позиція + Position + Позиція - - + + Gui::TaskView::TaskAppearance - Display mode: - Режим показу: + Plot mode: + Режим друку: - Plot mode: - Plot mode: + Point size: + Розмір пункту: - Point size: - Розмір пункту: + Line width: + Ширина лінії: - Line width: - Ширина лінії: + Transparency: + Прозорість: - Transparency: - Прозорість: + Appearance + Зовнішній вигляд - Appearance - Зовнішній вигляд + Document window: + Document window: - - Document window: - - - - + + Gui::TaskView::TaskEditControl - Edit - Редагувати + Edit + Правка - - + + Gui::TaskView::TaskSelectLinkProperty - Appearance - Зовнішній вигляд + Appearance + Зовнішній вигляд - ... - ... + ... + ... - edit selection - редагувати вибір + edit selection + редагувати вибір - - + + Gui::TouchpadNavigationStyle - Press left mouse button - Натиснути ліву кнопку миші + Press left mouse button + Натиснути ліву кнопку миші - Press SHIFT button - + Press SHIFT button + Press SHIFT button - Press ALT button - + Press ALT button + Press ALT button - Press PgUp/PgDown button - + Press PgUp/PgDown button + Press PgUp/PgDown button - - - Gui::Translator - - English - Англійська - - - + + Gui::TreeDockWidget - Tree view - У вигляді дерева + Tree view + У вигляді дерева - - + + Gui::TreeWidget - Create group... - Створити групу... + Create group... + Створити групу... - Create a group - Створити групу + Create a group + Створити групу - Group - Група + Group + Група - Rename - Перейменувати + Rename + Перейменувати - Rename object - Перейменувати об'єкт + Rename object + Перейменувати об'єкт - Labels & Attributes - Етикетки та атрибути + Labels & Attributes + Етикетки та атрибути - Application - Програма + Application + Програма - Finish editing - Завершити редагування + Finish editing + Завершити редагування - Finish editing object - Завершити редагування об'єкту + Finish editing object + Завершити редагування об'єкту - Activate document - Активувати документ + Activate document + Активувати документ - Activate document %1 - Активувати документ %1 + Activate document %1 + Активувати документ %1 - - + + Gui::View3DInventor - Export PDF - Експорт в PDF + Export PDF + Експорт в PDF - PDF file (*.pdf) - Файл PDF (*.pdf) + PDF file (*.pdf) + Файл PDF (*.pdf) - - + + Gui::WorkbenchGroup - Select the '%1' workbench - Оберіть '%1' робочу область + Select the '%1' workbench + Оберіть '%1' робочу область - - + + Position - Form - Форма + Form + Форма - X: - X: + X: + X: - Y: - Y: + Y: + Y: - Z: - Z: + Z: + Z: - 0.1 mm - 0.1 мм + 0.1 mm + 0.1 мм - 0.5 mm - 0.5 мм + 0.5 mm + 0.5 мм - 1 mm - 1 мм + 1 mm + 1 мм - 2 mm - 2 мм + 2 mm + 2 мм - 5 mm - 5 мм + 5 mm + 5 мм - 10 mm - 10 мм + 10 mm + 10 мм - 20 mm - 20 мм + 20 mm + 20 мм - 50 mm - 50 мм + 50 mm + 50 мм - 100 mm - 100 мм + 100 mm + 100 мм - 200 mm - 200 мм + 200 mm + 200 мм - 500 mm - 500 мм + 500 mm + 500 мм - 1 m - 1 м + 1 m + 1 м - 2 m - 2 м + 2 m + 2 м - 5 m - 5 м + 5 m + 5 м - Grid Snap in - Захват сітки в + Grid Snap in + Захват сітки в - - + + QDockWidget - Tree view - У вигляді дерева + Tree view + У вигляді дерева - Property view - Властивості вигляду + Property view + Властивості вигляду - Selection view - Вибір вигляду + Selection view + Вибір вигляду - Report view - Вигляд звіту + Report view + Вигляд звіту - Task View - Вигляд завдання + Task View + Вигляд завдання - Combo View - Комбінований вигляд + Combo View + Комбінований вигляд - Toolbox - Панель інструментів + Toolbox + Панель інструментів - Python console - Консоль python + Python console + Консоль python - Display properties - Показати властивості + Display properties + Показати властивості - - + + QObject - General - Загальне + General + Загальне - Display - Відображення + Display + Відображення - Unknown filetype - Невідомий тип файлу + Unknown filetype + Невідомий тип файлу - Cannot open unknown filetype: %1 - Не вдається відкрити невідомий тип файлу: %1 + Cannot open unknown filetype: %1 + Не вдається відкрити невідомий тип файлу: %1 - Cannot save to unknown filetype: %1 - Не вдається зберегти в невідомий тип файлу: %1 + Cannot save to unknown filetype: %1 + Не вдається зберегти в невідомий тип файлу: %1 - Workbench failure - Крах робочої області + Workbench failure + Крах робочої області - %1 - %1 + %1 + %1 - Unable to launch Qt Assistant (%1) - Неможливо запустити Qt Assistant (%1) + Unable to launch Qt Assistant (%1) + Неможливо запустити Qt Assistant (%1) - Exception - Виняток + Exception + Виняток - Open document - Відкрити документ + Open document + Відкрити документ - Import file - Імпорт файлу + Import file + Імпорт файлу - Export file - Експорт файлу + Export file + Експорт файлу - Printing... - Друк... + Printing... + Друк... - Cannot load workbench - Не вдається завантажити робочу область + Cannot load workbench + Не вдається завантажити робочу область - A general error occurred while loading the workbench - Загальна помилка при завантаженні робочої області + A general error occurred while loading the workbench + Загальна помилка при завантаженні робочої області - File not found - Файл не знайдено + Save views... + Зберегти вигляд... - Cannot open file %1 - Не вдається відкрити файл %1 + Load views... + Завантажити вигляд... - Save views... - Зберегти вигляд... + Freeze view + Заморозити вигляд - Load views... - Завантажити вигляд... + Clear views + Очистити вигляд - Freeze view - Заморозити вигляд + Restore view &%1 + Відновити вигляд &%1 - Clear views - Очистити вигляд + Save frozen views + Зберегти заморожені вигляди - Restore view &%1 - Відновити вигляд &%1 + Frozen views (*.cam) + Заморожені вигляди (*.cam) - Save frozen views - Зберегти заморожені вигляди + Restore views + Відновити вигляди - Frozen views (*.cam) - Заморожені вигляди (*.cam) - - - Restore views - Відновити вигляди - - - Importing the restored views would clear the already stored views. + Importing the restored views would clear the already stored views. Do you want to continue? - При імпорті виглядів очиститься поточний вигляд. + При імпорті виглядів очиститься поточний вигляд. Бажаєте продовжити? - Restore frozen views - Відновлення заморожених виглядів + Restore frozen views + Відновлення заморожених виглядів - Cannot open file '%1'. - Не вдається відкрити файл %1. + Cannot open file '%1'. + Не вдається відкрити файл %1. - Docked - Закріплено + Docked + Закріплено - Undocked - Не закріплено + Undocked + Не закріплено - Fullscreen - На весь екран + Fullscreen + На весь екран - files - Файли + files + Файли - Save picture - Зберегти зображення + Save picture + Зберегти зображення - New sub-group - Нова підгрупа + New sub-group + Нова підгрупа - Enter the name: - Введіть назву: + Enter the name: + Введіть назву: - New text item - Новий текстовий елемент + New text item + Новий текстовий елемент - Enter your text: - Введіть текст: + Enter your text: + Введіть текст: - New integer item - Новий елемент, ціле число + New integer item + Новий елемент, ціле число - Enter your number: - Введіть номер: + Enter your number: + Введіть номер: - New unsigned item - Новий непідписаний елемент + New unsigned item + Новий непідписаний елемент - New float item - New float item + New float item + New float item - New Boolean item - Новий логічний елемент + New Boolean item + Новий логічний елемент - Choose an item: - Виберіть елемент: + Choose an item: + Виберіть елемент: - Rename group - Перейменувати групу + Rename group + Перейменувати групу - The group '%1' cannot be renamed. - Групу '%1' неможливо перейменувати. + The group '%1' cannot be renamed. + Групу '%1' неможливо перейменувати. - Existing group - Існуюча група + Existing group + Існуюча група - The group '%1' already exists. - Група '%1' вже існує. + The group '%1' already exists. + Група '%1' вже існує. - Change value - Змінити значення + Change value + Змінити значення - Save document under new filename... - Зберегти документ під новим ім'ям ... + Save document under new filename... + Зберегти документ під новим ім'ям ... - Saving aborted - Збереження перервано + Saving aborted + Збереження перервано - Unsaved document - Незбережений документ + Unsaved document + Незбережений документ - Save document before close? - Зберегти документ перед закриттям? + Save document before close? + Зберегти документ перед закриттям? - Save Macro - Зберегти макрос + Save Macro + Зберегти макрос - Finish - Завершити + Finish + Завершити - Clear - Очистити + Clear + Очистити - Cancel - Скасувати + Cancel + Скасувати - Inner - Внутрішній + Inner + Внутрішній - Outer - Зовнішній + Outer + Зовнішній - No Browser - Браузер відсутній + No Browser + Браузер відсутній - Unable to open your browser. + Unable to open your browser. Please open a browser window and type in: http://localhost:%1. - Не вдається відкрити браузер. + Не вдається відкрити браузер. Будь ласка, відкрийте вікно браузера та введіть адресу: http://localhost:%1. - No Server - Сервер відсутній + No Server + Сервер відсутній - Unable to start the server to port %1: %2. - Не вдалося запустити сервер з портом %1: %2. + Unable to start the server to port %1: %2. + Не вдалося запустити сервер з портом %1: %2. - Unable to open your system browser. - Не вдається відкрити Ваш системний браузер. + Unable to open your system browser. + Не вдається відкрити Ваш системний браузер. - Options... - Параметри... + Options... + Параметри... - Out of memory - Не вистачає пам'яті + Out of memory + Не вистачає пам'яті - Not enough memory available to display the data. - Недостатньо пам'яті для відображення даних. + Not enough memory available to display the data. + Недостатньо пам'яті для відображення даних. - Cannot find file %1 - Не вдається знайти файл %1 + Cannot find file %1 + Не вдається знайти файл %1 - Cannot find file %1 neither in %2 nor in %3 - Не вдається знайти файл %1 ні в %2 , ні в %3 + Cannot find file %1 neither in %2 nor in %3 + Не вдається знайти файл %1 ні в %2 , ні в %3 - Save %1 Document - Зберегти %1 документ + Save %1 Document + Зберегти %1 документ - %1 document (*.FCStd) - Документ %1 (*.FCStd) + %1 document (*.FCStd) + Документ %1 (*.FCStd) - Save As - Зберегти як + Save As + Зберегти як - %1 already exists. + %1 already exists. Do you want to replace it? - %1 вже існує. + %1 вже існує. Бажаєте замінити? - Document not closable - Документ не закривається + Document not closable + Документ не закривається - The document is not closable for the moment. - Документ не може бути закритим в даний час. + The document is not closable for the moment. + Документ не може бути закритим в даний час. - No OpenGL - Без OpenGL + No OpenGL + Без OpenGL - This system does not support OpenGL - Ця система не підтримує OpenGL + This system does not support OpenGL + Ця система не підтримує OpenGL - Help - Довідка + Help + Довідка - Unable to load documentation. + Unable to load documentation. In order to load it Qt 4.4 or higher is required. - Неможливо завантажити документацію. + Неможливо завантажити документацію. Щоб завантажити це потрібно Qt 4.4 або вище. - %1 Help - %1 Довідка + %1 Help + %1 Довідка - Exporting PDF... - Експорт в PDF ... + Exporting PDF... + Експорт в PDF ... - Wrong selection - Невірний вибір + Wrong selection + Невірний вибір - Only one object selected. Please select two objects. + Only one object selected. Please select two objects. Be aware the point where you click matters. - Only one object selected. Please select two objects. -Be aware the point where you click matters. + Обрано лише один об'єкт. Будь ласка, виберіть два об'єкти. Майте на увазі, що має значення місце, де ви робите вибір. - Please select two objects. + Please select two objects. Be aware the point where you click matters. - Please select two objects. -Be aware the point where you click matters. + Будь ласка, виберіть два об'єкти. Майте на увазі, що має значення місце, де ви робите вибір. - New boolean item - Новий логічний елемент + New boolean item + Новий логічний елемент - Navigation styles - Стилі навігації + Navigation styles + Стилі навігації - %1 navigation - %1 навігація + %1 navigation + %1 навігація - Move annotation - Переміщення анотації + Move annotation + Переміщення анотації - Transform - Перетворення + Transform + Перетворення - The document is in editing mode and thus cannot be closed for the moment. + The document is in editing mode and thus cannot be closed for the moment. You either have to finish or cancel the editing in the task panel. - The document is in editing mode and thus cannot be closed for the moment. -You either have to finish or cancel the editing in the task panel. + Документ знаходиться в режимі редагування і тому його зараз не можна закрити. Ви повинні або завершити, або скасувати редагування на панелі завдань. - - + + StdBoxSelection - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Box selection - + Box selection + Box selection - - + + StdCmdAbout - Help - Довідка + Help + Довідка - &About %1 - Про %1 + &About %1 + Про %1 - About %1 - Про %1 + About %1 + Про %1 - - + + StdCmdAboutQt - Help - Довідка + Help + Довідка - About &Qt - Про &Qt + About &Qt + Про &Qt - About Qt - Про Qt + About Qt + Про Qt - - + + StdCmdActivateNextWindow - Window - Вікно + Window + Вікно - Ne&xt - Далі + Ne&xt + Далі - Activate next window - Активувати наступне вікно + Activate next window + Активувати наступне вікно - - + + StdCmdActivatePrevWindow - Window - Вікно + Window + Вікно - Pre&vious - Назад + Pre&vious + Назад - Activate previous window - Активувати попереднє вікно + Activate previous window + Активувати попереднє вікно - - + + StdCmdAlignment - Edit - Редагувати + Edit + Правка - Alignment... - + Alignment... + Alignment... - Align the selected objects - + Align the selected objects + Align the selected objects - - + + StdCmdArrangeIcons - Window - Вікно + Window + Вікно - Arrange &Icons - Організувати &Ікони + Arrange &Icons + Організувати &Ікони - Arrange Icons - Організувати Ікони + Arrange Icons + Організувати Ікони - - + + StdCmdAxisCross - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Toggle axis cross - Toggle axis cross + Toggle axis cross + Toggle axis cross - - + + StdCmdCascadeWindows - Window - Вікно + Window + Вікно - &Cascade - &Каскадом + &Cascade + &Каскадом - Tile pragmatic - Tile pragmatic + Tile pragmatic + Tile pragmatic - - + + StdCmdCloseActiveWindow - Window - Вікно + Window + Вікно - Cl&ose - Зак&рити + Cl&ose + Зак&рити - Close active window - Закрити активне вікно + Close active window + Закрити активне вікно - - + + StdCmdCloseAllWindows - Window - Вікно + Window + Вікно - Close Al&l - Закрити всі + Close Al&l + Закрити всі - Close all windows - Закрити всі вікна + Close all windows + Закрити всі вікна - - + + StdCmdCommandLine - Tools - Інструменти + Tools + Інструменти - Start command &line... - Запуск командного рядка... + Start command &line... + Запуск командного рядка... - Opens the command line in the console - Відкриття командного рядка в консолі + Opens the command line in the console + Відкриття командного рядка в консолі - - + + StdCmdCopy - Edit - Редагувати + Edit + Правка - C&opy - Копіювати + C&opy + Копіювати - Copy operation - Операції копіювання + Copy operation + Операції копіювання - - + + StdCmdCut - Edit - Редагувати + Edit + Правка - &Cut - Вирізати + &Cut + Вирізати - Cut out - Вирізати + Cut out + Вирізати - - - StdCmdDDuplicateSelection - - Edit - Редагувати - - - Duplicate selection - Дублювання виділеного - - - Put duplicates of the selected objects to the active document - Put duplicates of the selected objects to the active document - - - + + StdCmdDelete - Edit - Редагувати + Edit + Правка - &Delete - Видалити + &Delete + Видалити - Deletes the selected objects - Видаляє вибрані об'єкти + Deletes the selected objects + Видаляє вибрані об'єкти - - + + StdCmdDemoMode - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - View turntable... - Відкрити програвач ... + View turntable... + Відкрити програвач ... - View turntable - Відкрити програвач + View turntable + Відкрити програвач - - + + StdCmdDlgCustomize - Tools - Інструменти + Tools + Інструменти - Cu&stomize... - Власні установки... + Cu&stomize... + Власні установки... - Customize toolbars and command bars - Налаштування панелі інструментів та панелі команд + Customize toolbars and command bars + Налаштування панелі інструментів та панелі команд - - + + StdCmdDlgMacroExecute - Macros ... - Макроси ... + Macros ... + Макроси ... - Opens a dialog to let you execute a recorded macro - Відкриває діалогове вікно, щоб виконати записаний макрос + Opens a dialog to let you execute a recorded macro + Відкриває діалогове вікно, щоб виконати записаний макрос - Macro - Макрос + Macro + Макрос - - + + StdCmdDlgMacroExecuteDirect - Macro - Макрос + Macro + Макрос - Execute macro - Виконати макрос + Execute macro + Виконати макрос - Execute the macro in the editor - Виконати макрос у редакторі + Execute the macro in the editor + Виконати макрос у редакторі - - + + StdCmdDlgMacroRecord - &Macro recording ... - Запис макросу ... + &Macro recording ... + Запис макросу ... - Opens a dialog to record a macro - Відкриває діалогове вікно для запису макросів + Opens a dialog to record a macro + Відкриває діалогове вікно для запису макросів - Macro - Макрос + Macro + Макрос - - + + StdCmdDlgParameter - Tools - Інструменти + Tools + Інструменти - E&dit parameters ... - Редагування параметрів ... + E&dit parameters ... + Редагування параметрів ... - Opens a Dialog to edit the parameters - Відкриває діалогове вікно для зміни параметрів + Opens a Dialog to edit the parameters + Відкриває діалогове вікно для зміни параметрів - - + + StdCmdDlgPreferences - Tools - Інструменти + Tools + Інструменти - &Preferences ... - &Установки ... + &Preferences ... + &Установки ... - Opens a Dialog to edit the preferences - Відкриває діалогове вікно для зміни установок + Opens a Dialog to edit the preferences + Відкриває діалогове вікно для зміни установок - - + + StdCmdDockViewMenu - View - Вигляд + View + Вигляд - Vie&ws - Відображення + Vie&ws + Відображення - Toggles this window - Перемкнути це вікно + Toggles this window + Перемкнути це вікно - - + + StdCmdDrawStyle - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Draw style - Draw style + Draw style + Стиль малювання - - + + StdCmdDuplicateSelection - Edit - Редагувати + Edit + Правка - Duplicate selection - Дублювання виділеного + Duplicate selection + Дублювання виділеного - Put duplicates of the selected objects to the active document - Put duplicates of the selected objects to the active document + Put duplicates of the selected objects to the active document + Вставити дублікати обраних об'єктів у активний документ - - + + StdCmdEdit - Edit - Редагувати + Edit + Правка - Toggle &Edit mode - + Toggle &Edit mode + Toggle &Edit mode - Toggles the selected object's edit mode - + Toggles the selected object's edit mode + Toggles the selected object's edit mode - Enters or leaves the selected object's edit mode - + Enters or leaves the selected object's edit mode + Enters or leaves the selected object's edit mode - - + + StdCmdExport - File - Файл + File + Файл - &Export... - &Експорт... + &Export... + &Експорт... - Export an object in the active document - Експорт об'єкта в активний документ + Export an object in the active document + Експорт об'єкта в активний документ - Supported formats - Підтримувані формати + No selection + Нічого не вибрано - No selection - + Please select first the objects you want to export. + Please select first the objects you want to export. - - Please select first the objects you want to export. - - - - + + StdCmdExportGraphviz - Tools - Інструменти + Tools + Інструменти - Dependency graph... - + Dependency graph... + Dependency graph... - Show the dependency graph of the objects in the active document - + Show the dependency graph of the objects in the active document + Show the dependency graph of the objects in the active document - - + + StdCmdFeatRecompute - File - Файл + File + Файл - &Recompute - &Перерахувати + &Recompute + &Перерахувати - Recompute feature or document - Перерахувати функцію або документ + Recompute feature or document + Перерахувати функцію або документ - - + + StdCmdFreeCADWebsite - Help - Довідка + Help + Довідка - FreeCAD Website - Сайт FreeCAD + FreeCAD Website + Сайт FreeCAD - The FreeCAD website - Сайт FreeCAD + The FreeCAD website + Сайт FreeCAD - - + + StdCmdFreezeViews - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Freeze display - Замороження дисплею + Freeze display + Замороження дисплею - Freezes the current view position - Замерзає поточну позицію перегляду + Freezes the current view position + Замерзає поточну позицію перегляду - - + + StdCmdHideObjects - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Hide all objects - Сховати всі об'єкти + Hide all objects + Сховати всі об'єкти - Hide all objects in the document - Сховати всі об'єкти в документі + Hide all objects in the document + Сховати всі об'єкти в документі - - + + StdCmdHideSelection - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Hide selection - Сховати вибране + Hide selection + Сховати вибране - Hide all selected objects - Приховати всі вибрані об'єкти + Hide all selected objects + Приховати всі вибрані об'єкти - - + + StdCmdImport - File - Файл + File + Файл - &Import... - &Імпорт... + &Import... + &Імпорт... - Import a file in the active document - Імпорт файлу в активний документ + Import a file in the active document + Імпорт файлу в активний документ - Supported formats - Підтримувані формати + Supported formats + Підтримувані формати - All files (*.*) - Усі файли (*.*) + All files (*.*) + Усі файли (*.*) - - + + StdCmdMacroStartDebug - Macro - Макрос + Macro + Макрос - Debug macro - Відлагодження макросу + Debug macro + Відлагодження макросу - Start debugging of macro - Почати налагодження макросу + Start debugging of macro + Почати налагодження макросу - - + + StdCmdMacroStepOver - Macro - Макрос + Macro + Макрос - Step over - Переступити + Step over + Переступити - - + + StdCmdMacroStopDebug - Macro - Макрос + Macro + Макрос - Stop debugging - Зупинити налагодження + Stop debugging + Зупинити налагодження - Stop debugging of macro - Зупинити відлагодження макросу + Stop debugging of macro + Зупинити відлагодження макросу - - + + StdCmdMacroStopRecord - Macro - Макрос + Macro + Макрос - S&top macro recording - Зупинити запис макросу + S&top macro recording + Зупинити запис макросу - Stop the macro recording session - Зупинка запису макросу + Stop the macro recording session + Зупинка запису макросу - - + + StdCmdMeasureDistance - View - Вигляд + View + Вигляд - Measure distance - Виміряти відстань + Measure distance + Виміряти відстань - - + + StdCmdMeasurementSimple - Tools - Інструменти + Tools + Інструменти - Mesure distance - Виміряти відстань + Measures distance between two selected objects + Виміряти відстань між двома обраними об'єктами - Measures distance between two selected objects - Виміряти відстань між двома обраними об'єктами + Measure distance + Виміряти відстань - - Measure distance - Виміряти відстань - - - + + StdCmdMergeProjects - File - Файл + File + Файл - Merge project... - Злиття проекту ... + Merge project... + Злиття проекту ... - Merge project - Злиття проекту + Merge project + Злиття проекту - %1 document (*.fcstd) - %1 документ (*.fcstd) + %1 document (*.fcstd) + %1 документ (*.fcstd) - Cannot merge project with itself. - Неможливо злити проекту з самим собою. + Cannot merge project with itself. + Неможливо злити проекту з самим собою. - - + + StdCmdNew - File - Файл + File + Файл - &New - Новий + &New + Новий - Create a new empty document - Створити новий порожній документ + Create a new empty document + Створити новий порожній документ - - + + StdCmdOnlineHelp - Help - Довідка + Help + Довідка - Show help to the application - Показати довідку по програмі + Show help to the application + Показати довідку по програмі - - - StdCmdOnlineHelpPython - - Help - Довідка - - - Python Manuals - Керівництво по Python - - - Show the Python documentation - Показати документацію по Python - - - + + StdCmdOnlineHelpWebsite - Help - Довідка + Help + Довідка - Help Website - Сайт довідки + Help Website + Сайт довідки - The website where the help is maintained - Сайт де можна отримати допомогу від розробників + The website where the help is maintained + Сайт де можна отримати допомогу від розробників - - + + StdCmdOpen - File - Файл + File + Файл - &Open... - &Відкрити... + &Open... + &Відкрити... - Open a document or import files - Відкрити документ або імпортувати файли + Open a document or import files + Відкрити документ або імпортувати файли - Supported formats - Підтримувані формати + Supported formats + Підтримувані формати - All files (*.*) - Усі файли (*.*) + All files (*.*) + Усі файли (*.*) - - + + StdCmdPaste - Edit - Редагувати + Edit + Правка - &Paste - &Вставити + &Paste + &Вставити - Paste operation - Операція вставки + Paste operation + Операція вставки - - + + StdCmdPlacement - Edit - Редагувати + Edit + Правка - Placement... - Розташування... + Placement... + Розташування... - Place the selected objects - Розміщення вибраних об'єктів + Place the selected objects + Розміщення вибраних об'єктів - - + + StdCmdPrint - File - Файл + File + Файл - &Print... - &Друк... + &Print... + &Друк... - Print the document - Друк документа + Print the document + Друк документа - - + + StdCmdPrintPdf - File - Файл + File + Файл - &Export PDF... - &Експорт до PDF... + &Export PDF... + &Експорт до PDF... - Export the document as PDF - Експорт документа в PDF + Export the document as PDF + Експорт документа в PDF - - + + StdCmdPrintPreview - File - Файл + File + Файл - &Print preview... - &Print preview... + &Print preview... + &Попередній перегляд... - Print the document - Друк документа + Print the document + Друк документа - Print preview - Print preview + Print preview + Попередній перегляд - - + + StdCmdProjectInfo - File - Файл + File + Файл - Project i&nformation... - Інформація про проект... + Project i&nformation... + Інформація про проект... - Show details of the currently active project - Показати подробиці про поточний проект + Show details of the currently active project + Показати подробиці про поточний проект - - + + StdCmdProjectUtil - Tools - Інструменти + Tools + Інструменти - Project utility... - Project utility... + Project utility... + Project utility... - Utility to extract or create project files - Utility to extract or create project files + Utility to extract or create project files + Утиліта для видобування або створення файлів проекту - - + + StdCmdPythonWebsite - Help - Довідка + Help + Довідка - Python Website - Сайт Python + Python Website + Сайт Python - The official Python website - Офіційний сайт Python + The official Python website + Офіційний сайт Python - - + + StdCmdQuit - File - Файл + File + Файл - E&xit - Вихід + E&xit + Вихід - Quits the application - Вихід з програми + Quits the application + Вихід з програми - - + + StdCmdRandomColor - File - Файл + File + Файл - Random color - Випадковий колір + Random color + Випадковий колір - - + + StdCmdRecentFiles - File - Файл + File + Файл - Recent files - Нещодавні файли + Recent files + Нещодавні файли - Recent file list - Список останніх файлів + Recent file list + Список останніх файлів - - + + StdCmdRedo - Edit - Редагувати + Edit + Правка - &Redo - Повторити + &Redo + Повторити - Redoes a previously undone action - Повторює останню скасовану дію + Redoes a previously undone action + Повторює останню скасовану дію - - + + StdCmdRefresh - Edit - Редагувати + Edit + Правка - &Refresh - Оновити + &Refresh + Оновити - Recomputes the current active document - Перераховує поточного активного документ + Recomputes the current active document + Перераховує поточного активного документ - - + + StdCmdSave - File - Файл + File + Файл - &Save - &Зберегти + &Save + &Зберегти - Save the active document - Зберегти активний документ + Save the active document + Зберегти активний документ - - + + StdCmdSaveAs - File - Файл + File + Файл - Save &As... - Зберегти як... + Save &As... + Зберегти як... - Save the active document under a new file name - Зберегти поточний документ під новим ім'ям + Save the active document under a new file name + Зберегти поточний документ під новим ім'ям - - + + StdCmdSceneInspector - Tools - Інструменти + Tools + Інструменти - Scene inspector... - Інспектор сцени... + Scene inspector... + Інспектор сцени... - Scene inspector - Інспектор сцени + Scene inspector + Інспектор сцени - - + + StdCmdSelectAll - Edit - Редагувати + Edit + Правка - Select &All - Вибрати усе + Select &All + Вибрати усе - Select all - Виділити все + Select all + Виділити все - - + + StdCmdSetAppearance - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Appearance... - Зовнішній вигляд... + Appearance... + Зовнішній вигляд... - Sets the display properties of the selected object - Задає вигляд виділеного об'єкта + Sets the display properties of the selected object + Задає вигляд виділеного об'єкта - - + + StdCmdShowObjects - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Show all objects - Показати всі об'єкти + Show all objects + Показати всі об'єкти - Show all objects in the document - Показати всі об'єкти в документі + Show all objects in the document + Показати всі об'єкти в документі - - + + StdCmdShowSelection - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Show selection - Показати віділене + Show selection + Показати віділене - Show all selected objects - Показати всі виділені об'єкти + Show all selected objects + Показати всі виділені об'єкти - - + + StdCmdStatusBar - View - Вигляд + View + Вигляд - Status bar - Рядок стану + Status bar + Рядок стану - Toggles the status bar - Перемикнути рядок стану + Toggles the status bar + Перемикнути рядок стану - - + + StdCmdTextureMapping - Tools - Інструменти + Tools + Інструменти - Texture mapping... - Відображення текстури... + Texture mapping... + Відображення текстури... - Texture mapping - Текстури + Texture mapping + Текстури - - + + StdCmdTileWindows - Window - Вікно + Window + Вікно - &Tile - Плитка + &Tile + Плитка - Tile the windows - Вікна плиткою + Tile the windows + Вікна плиткою - - + + StdCmdToggleBreakpoint - Macro - Макрос + Macro + Макрос - Toggle breakpoint - Поміняти точку зупинки + Toggle breakpoint + Поміняти точку зупинки - - + + StdCmdToggleClipPlane - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Clipping plane - Площини обрізання + Clipping plane + Площини обрізання - Toggles clipping plane for active view - Переключення площину відсікання для активного перегляду + Toggles clipping plane for active view + Переключення площину відсікання для активного перегляду - - + + StdCmdToggleNavigation - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Toggle navigation/Edit mode - Перемкнути навігацію/Змінити режим + Toggle navigation/Edit mode + Перемкнути навігацію/Змінити режим - Toggle between navigation and edit mode - Переключення між навігацією і режимом редагування + Toggle between navigation and edit mode + Переключення між навігацією і режимом редагування - - + + StdCmdToggleObjects - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Toggle all objects - Перемкнути всі об'єкти + Toggle all objects + Перемкнути всі об'єкти - Toggles visibility of all objects in the active document - Вмикає/вимикає видимість всіх об'єктів в активному документі + Toggles visibility of all objects in the active document + Вмикає/вимикає видимість всіх об'єктів в активному документі - - + + StdCmdToggleSelectability - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Toggle selectability - Toggle selectability + Toggle selectability + Перемикач можливостей вибору - Toggles the property of the objects to get selected in the 3D-View - Toggles the property of the objects to get selected in the 3D-View + Toggles the property of the objects to get selected in the 3D-View + Toggles the property of the objects to get selected in the 3D-View - - + + StdCmdToggleVisibility - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Toggle visibility - Перемикнути видимість + Toggle visibility + Перемикнути видимість - Toggles visibility - Вмикає/вимикає видимість + Toggles visibility + Вмикає/вимикає видимість - - + + StdCmdToolBarMenu - View - Вигляд + View + Вигляд - Tool&bars - Панелі інструментів + Tool&bars + Панелі інструментів - Toggles this window - Перемкнути це вікно + Toggles this window + Перемкнути це вікно - - + + StdCmdTransform - Edit - Редагувати + Edit + Правка - Transform... - Перетворення... + Transform... + Перетворення... - Transform the geometry of selected objects - Перетворення геометрії вибраних об'єктів + Transform the geometry of selected objects + Перетворення геометрії вибраних об'єктів - - + + StdCmdTreeSelection - View - Вигляд + View + Вигляд - Go to selection - Перейти до вибраного + Go to selection + Перейти до вибраного - Scroll to first selected item - Прокрутити до першого виділеного елемента + Scroll to first selected item + Прокрутити до першого виділеного елемента - - + + StdCmdUndo - Edit - Редагувати + Edit + Правка - &Undo - Відмінити + &Undo + &Скасувати - Undo exactly one action - Скасувати рівно одну дію + Undo exactly one action + Скасувати рівно одну дію - - + + StdCmdUserInterface - View - Вигляд + View + Вигляд - Dock views - Dock views + Dock views + Зафіксувати види - Dock all top-level views - Dock all top-level views + Dock all top-level views + Зафіксувати всі види верхнього рівня - - + + StdCmdViewAxo - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Axometric - Аксонометрія + Axometric + Аксонометрія - Set to axometric view - Встановити аксонометричну проекцію + Set to axometric view + Встановити аксонометричну проекцію - - + + StdCmdViewBottom - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Bottom - Внизу + Bottom + Внизу - Set to bottom view - Встановити вид знизу + Set to bottom view + Встановити вид знизу - - + + StdCmdViewCreate - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Create new view - Створити новий вигляд + Create new view + Створити новий вигляд - Creates a new view window for the active document - Створення нового вікна перегляду для активного документа + Creates a new view window for the active document + Створення нового вікна перегляду для активного документа - - + + StdCmdViewExample1 - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Inventor example #1 - Винахідник Приклад #1 + Inventor example #1 + Винахідник Приклад #1 - Shows a 3D texture with manipulator - Показує 3D текстури з маніпулятором + Shows a 3D texture with manipulator + Показує 3D текстури з маніпулятором - - + + StdCmdViewExample2 - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Inventor example #2 - Винахідник Приклад #2 + Inventor example #2 + Винахідник Приклад #2 - Shows spheres and drag-lights - Показ сфер та перетягувані ліхтарі + Shows spheres and drag-lights + Показ сфер та перетягувані ліхтарі - - + + StdCmdViewExample3 - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Inventor example #3 - Винахідник Приклад #3 + Inventor example #3 + Винахідник Приклад #3 - Shows a animated texture - Показ анімованих текстур + Shows a animated texture + Показ анімованих текстур - - + + StdCmdViewFitAll - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Fit all - Вмістити все + Fit all + Вмістити все - Fits the whole content on the screen - Вмістити весь вміст на екрані + Fits the whole content on the screen + Вмістити весь вміст на екрані - - + + StdCmdViewFitSelection - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Fit selection - Вмістити вибране + Fit selection + Вмістити вибране - Fits the selected content on the screen - Вмістити вибране на екрані + Fits the selected content on the screen + Вмістити вибране на екрані - - + + StdCmdViewFront - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Front - Фронт + Front + Фронт - Set to front view - Показ вигляду з переду + Set to front view + Показ вигляду з переду - - + + StdCmdViewIvIssueCamPos - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Issue camera position - Вихідне положення камери + Issue camera position + Вихідне положення камери - Issue the camera position to the console and to a macro, to easily recall this position - Вихідне положення камери для консолі і макросів, щоб потім швидко відновити цю позицію + Issue the camera position to the console and to a macro, to easily recall this position + Вихідне положення камери для консолі і макросів, щоб потім швидко відновити цю позицію - - + + StdCmdViewIvStereoInterleavedColumns - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Stereo Interleaved Columns - Стерео стовпці + Stereo Interleaved Columns + Стерео стовпці - Switch stereo viewing to Interleaved Columns - Switch stereo viewing to Interleaved Columns + Switch stereo viewing to Interleaved Columns + Switch stereo viewing to Interleaved Columns - - + + StdCmdViewIvStereoInterleavedRows - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Stereo Interleaved Rows - Стерео рядки + Stereo Interleaved Rows + Стерео рядки - Switch stereo viewing to Interleaved Rows - Switch stereo viewing to Interleaved Rows + Switch stereo viewing to Interleaved Rows + Switch stereo viewing to Interleaved Rows - - + + StdCmdViewIvStereoOff - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Stereo Off - Вимкнути стерео + Stereo Off + Вимкнути стерео - Switch stereo viewing off - Вимкнути стерео вигляд + Switch stereo viewing off + Вимкнути стерео вигляд - - + + StdCmdViewIvStereoQuadBuff - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Stereo quad buffer - Stereo quad buffer + Stereo quad buffer + Stereo quad buffer - Switch stereo viewing to quad buffer - Switch stereo viewing to quad buffer + Switch stereo viewing to quad buffer + Switch stereo viewing to quad buffer - - + + StdCmdViewIvStereoRedGreen - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Stereo red/green - Стерео червоний/зелений + Stereo red/green + Стерео червоний/зелений - Switch stereo viewing to red/green - Перемикнути стерео перегляд у червоний/зелений + Switch stereo viewing to red/green + Перемикнути стерео перегляд у червоний/зелений - - + + StdCmdViewLeft - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Left - Ліворуч + Left + Ліворуч - Set to left view - Встановити вид зліва + Set to left view + Встановити вид зліва - - + + StdCmdViewRear - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Rear - Тил + Rear + Тил - Set to rear view - Встановити вид ззаду + Set to rear view + Встановити вид ззаду - - + + StdCmdViewRight - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Right - Праворуч + Right + Направо - Set to right view - Встановити вигляд з права + Set to right view + Встановити вигляд з права - - + + StdCmdViewRotateLeft - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Rotate Left - + Rotate Left + Rotate Left - Rotate the view by 90° counter-clockwise - + Rotate the view by 90° counter-clockwise + Rotate the view by 90° counter-clockwise - - + + StdCmdViewRotateRight - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Rotate Right - + Rotate Right + Rotate Right - Rotate the view by 90° clockwise - + Rotate the view by 90° clockwise + Rotate the view by 90° clockwise - - + + StdCmdViewTop - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Top - Згори + Top + Згори - Set to top view - Встановити вигляд зверху + Set to top view + Встановити вигляд зверху - - + + StdCmdWhatsThis - Help - Довідка + Help + Довідка - &What's This? - &Що це? + &What's This? + &Що це? - What's This - Що це таке + What's This + Що це таке - - + + StdCmdWindows - Window - Вікно + Window + Вікно - &Windows... - Вікна... + &Windows... + Вікна... - Windows list - Список вікон + Windows list + Список вікон - - + + StdCmdWindowsMenu - Window - Вікно + Window + Вікно - Activates this window - Активувати це вікно + Activates this window + Активувати це вікно - - + + StdCmdWorkbench - View - Вигляд + View + Вигляд - Workbench - Робочий простір + Workbench + Робочий простір - Switch between workbenches - Перемикання між робочими областями + Switch between workbenches + Перемикання між робочими областями - - + + StdOrthographicCamera - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Orthographic view - Ортогональний вигляд + Orthographic view + Ортогональний вигляд - Switches to orthographic view mode - Перемкнутись до режиму Ортогональна подання + Switches to orthographic view mode + Перемкнутись до режиму Ортогональна подання - - + + StdPerspectiveCamera - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Perspective view - Перспектива + Perspective view + Перспектива - Switches to perspective view mode - Переключення в режим перегляду перспективи + Switches to perspective view mode + Переключення в режим перегляду перспективи - - + + StdViewBoxZoom - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Box zoom - Поле маштабування + Box zoom + Поле маштабування - - + + StdViewDockUndockFullscreen - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Document window - вікно документа + Document window + Document window - Display the active view either in fullscreen, in undocked or docked mode - Показати активний вид в повноекранному режимі, у відстикованому, або зістикуваваному режимі + Display the active view either in fullscreen, in undocked or docked mode + Показати активний вид в повноекранному режимі, у відстикованому, або зістикуваваному режимі - - + + StdViewScreenShot - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Save picture... - Зберегти зображення... + Save picture... + Зберегти зображення... - Creates a screenshot of the active view - Створити знімок активного вигляду + Creates a screenshot of the active view + Створити знімок активного вигляду - - + + StdViewZoomIn - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Zoom In - Збільшити + Zoom In + Збільшити - - + + StdViewZoomOut - Standard-View - Стандартні вигляди + Standard-View + Стандартні вигляди - Zoom Out - Зменшити + Zoom Out + Зменшити - - + + Std_DrawStyle - As is - As is + As is + Як є - Normal mode - Normal mode + Normal mode + Звичайний режим - Wireframe - Wireframe + Wireframe + Wireframe - Wireframe mode - Wireframe mode + Wireframe mode + Каркасний режим - - + + Std_ExportGraphviz - Graphviz not found - + Graphviz not found + Graphviz not found - Graphviz couldn't be found on your system. -Do you want to specify its installation path if it's already installed? - + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? - Graphviz installation path - + Graphviz installation path + Graphviz installation path - Dependency graph - + Dependency graph + Dependency graph - Graphviz failed - + Graphviz failed + Graphviz failed - Graphviz failed to create an image file - + Graphviz failed to create an image file + Graphviz failed to create an image file - - + + Workbench - &File - &Файл + &File + &Файл - &Edit - &Редагувати + &Edit + &Редагувати - Standard views - Стандартні вигляди + Standard views + Стандартні вигляди - &Stereo - &Стерео + &Stereo + &Стерео - &Zoom - &Збільшення + &Zoom + &Збільшення - Visibility - Видимість + Visibility + Видимість - &View - &Вигляд + &View + &Вигляд - &Tools - &Інструменти + &Tools + &Інструменти - &Macro - Макрос + &Macro + Макрос - &Windows - &Вікна + &Windows + &Вікна - &On-line help - &Он-лайн допомога + &On-line help + &Он-лайн допомога - &Help - &Довідка + &Help + &Довідка - File - Файл + File + Файл - Macro - Макрос + Macro + Макрос - View - Вигляд + View + Вигляд - Special Ops - Спеціальні операції + Special Ops + Спеціальні операції - - + + testClass - test - Тест + test + Тест - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - Choose the style of the Task Panel - Виберіть стиль панелі завдань + Choose the style of the Task Panel + Виберіть стиль панелі завдань - Default - За замовчуванням + Default + За замовчуванням - Windows XP - Windows XP + Windows XP + Windows XP - + diff --git a/src/Gui/Language/FreeCAD_zh.qm b/src/Gui/Language/FreeCAD_zh-CN.qm similarity index 71% rename from src/Gui/Language/FreeCAD_zh.qm rename to src/Gui/Language/FreeCAD_zh-CN.qm index 0c6b78b6c..5bb2f7695 100644 Binary files a/src/Gui/Language/FreeCAD_zh.qm and b/src/Gui/Language/FreeCAD_zh-CN.qm differ diff --git a/src/Gui/Language/FreeCAD_zh-CN.ts b/src/Gui/Language/FreeCAD_zh-CN.ts new file mode 100644 index 000000000..54fd9ba0b --- /dev/null +++ b/src/Gui/Language/FreeCAD_zh-CN.ts @@ -0,0 +1,5829 @@ + + + + + Angle + + Form + 窗体 + + + A: + A: + + + B: + B: + + + C: + C: + + + Angle Snap + 角度捕捉 + + + 1 ° + 1 ° + + + 2 ° + 2 ° + + + 5 ° + 5 ° + + + 10 ° + 10 ° + + + 20 ° + 20 ° + + + 45 ° + 45 ° + + + 90 ° + 90 ° + + + 180 ° + 180 ° + + + + Gui::AccelLineEdit + + none + + + + + Gui::ActionSelector + + Available: + 可用: + + + Selected: + 已选择: + + + Add + 添加 + + + Remove + 删除 + + + Move up + 上移 + + + Move down + 下移 + + + + Gui::AlignmentView + + Movable object + 可移动对象 + + + Fixed object + 固定的对象 + + + + Gui::BlenderNavigationStyle + + Press left mouse button + 按鼠标左键 + + + Press SHIFT and middle mouse button + 按SHIFT和鼠标中键 + + + Press middle mouse button + 按鼠标中键 + + + Scroll middle mouse button + 滚动鼠标中键 + + + + Gui::CADNavigationStyle + + Press left mouse button + 按鼠标左键 + + + Press middle mouse button + 按鼠标中键 + + + Press left and middle mouse button + 按鼠标左键和中键 + + + Scroll middle mouse button + 滚动鼠标中键 + + + + Gui::Command + + Standard + 标准 + + + + Gui::ContainerDialog + + &OK + 确定(&O) + + + &Cancel + 取消(&C) + + + + Gui::ControlSingleton + + Task panel + 任务面板 + + + + Gui::Dialog::AboutApplication + + About + 关于 + + + Revision number + 修订号 + + + Version + 版本 + + + OK + 确定 + + + + 关于 + + + Release date + 发布日期 + + + Platform + 平台 + + + License... + 许可... + + + Copy to clipboard + 复制到剪贴板 + + + + Gui::Dialog::ButtonModel + + Button %1 + 按钮 %1 + + + Out Of Range + 超出范围 + + + + Gui::Dialog::CommandModel + + Commands + 命令 + + + + Gui::Dialog::DemoMode + + View Turntable + 视图罗盘 + + + Speed + 速度 + + + Maximum + 最大值 + + + Minimum + 最小值 + + + Fullscreen + 全屏 + + + Enable timer + 启用计时器 + + + s + s + + + Angle + 角度 + + + 90° + 90° + + + -90° + -90° + + + Play + 播放 + + + Stop + 停止 + + + Close + 关闭 + + + + Gui::Dialog::DlgActivateWindow + + Choose Window + 选择窗口 + + + &Activate + 激活(&A) + + + Alt+A + Alt+A + + + &Cancel + 取消(&C) + + + + 关于 + + + + Gui::Dialog::DlgActivateWindowImp + + Windows + 窗口 + + + + Gui::Dialog::DlgAuthorization + + Authorization + 身份验证 + + + &OK + 确定(&O) + + + &Cancel + 取消(&C) + + + Password: + 密码: + + + User name: + 用户名: + + + + 关于 + + + + Gui::Dialog::DlgChooseIcon + + Choose Icon + 选择图标 + + + OK + 确定 + + + Cancel + 取消 + + + Add icons... + 添加图标... + + + + Gui::Dialog::DlgCustomActions + + Macros + + + + Setup Custom Macros + 设置自定义宏 + + + Macro: + 宏: + + + ... + ... + + + Pixmap + 位图 + + + Accelerator: + 快捷键: + + + What's this: + 这是什么: + + + Status text: + 状态文字: + + + Tool tip: + 工具提示: + + + Menu text: + 菜单文本: + + + Add + 添加 + + + Remove + 删除 + + + Replace + 替换 + + + + Gui::Dialog::DlgCustomActionsImp + + Icons + 图标 + + + Macros + + + + No macro + 无宏定义 + + + No macros found. + 未发现宏. + + + Macro not found + 未找到宏 + + + Sorry, couldn't find macro file '%1'. + 对不起,无法找到宏文件 '%1'. + + + Empty macro + 空白宏 + + + Please specify the macro first. + 请先指定宏. + + + Empty text + 空文本 + + + Please specify the menu text first. + 请先指定菜单文本. + + + No item selected + 未选中对象 + + + Please select a macro item first. + 请先选择一个宏项目. + + + + Gui::Dialog::DlgCustomCommands + + Commands + 命令 + + + + 关于 + + + + Gui::Dialog::DlgCustomCommandsImp + + Category + 类别 + + + Icon + 图标 + + + Command + 命令 + + + + Gui::Dialog::DlgCustomKeyboard + + Keyboard + 键盘 + + + Description: + 说明: + + + &Category: + 分类(&C): + + + C&ommands: + 命令(&C): + + + Current shortcut: + 当前快捷键: + + + Press &new shortcut: + 按下新快捷键(&N): + + + Currently assigned to: + 当前分配给: + + + &Assign + 分配(&A) + + + Alt+A + Alt+A + + + &Reset + 重置(&R) + + + Alt+R + Alt+R + + + Re&set All + 全部重设(&S) + + + Alt+S + Alt+S + + + + 关于 + + + + Gui::Dialog::DlgCustomKeyboardImp + + Icon + 图标 + + + Command + 命令 + + + none + + + + Multiple defined shortcut + 多重定义快捷键 + + + The shortcut '%1' is defined more than once. This could result into unexpected behaviour. + 快捷键'%1'不唯一.这将导致不可预料的结果. + + + Already defined shortcut + 已定义快捷键 + + + The shortcut '%1' is already assigned to '%2'. + +Please define another shortcut. + 快捷键'%1'已经分配给了'%2'. +请重新定义. + + + + Gui::Dialog::DlgCustomToolBoxbarsImp + + Toolbox bars + 工具条 + + + + Gui::Dialog::DlgCustomToolbars + + Toolbars + 工具栏 + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> 改动将在你下一次加载工作台时生效</p></body></html> + + + Move right + 右移 + + + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>移动选中对象到下一层级.</b><p>这将同时改变父级对象.</p> + + + Move left + 左移 + + + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>移动选中对象到上一层级.</b><p>这将同时改变父级对象.</p> + + + Move down + 下移 + + + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>下移选中对象.</b><p>仅在层级中移动.</p> + + + Move up + 上移 + + + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>上移选中对象.</b><p>仅在层级中移动.</p> + + + New... + 新建... + + + Rename... + 重命名... + + + Delete + 删除 + + + Icon + 图标 + + + Command + 命令 + + + <Separator> + <分隔符> + + + New toolbar + 新建工具栏 + + + Toolbar name: + 工具栏名称: + + + Duplicated name + 重复命名 + + + The toolbar name '%1' is already used + 工具栏名称'%1'已被使用 + + + Rename toolbar + 重命名工具栏 + + + + 关于 + + + + Gui::Dialog::DlgCustomizeImp + + Customize + 自定义 + + + &Help + 帮助(&H) + + + &Close + 闭合(&C) + + + + Gui::Dialog::DlgCustomizeSpaceball + + Spaceball + 轨迹球 + + + No Spaceball Present + 当前无轨迹球 + + + Buttons + 按钮 + + + Clear + 清除 + + + Print Reference + 打印参考 + + + + Gui::Dialog::DlgDisplayProperties + + Display properties + 显示属性 + + + Display + 显示 + + + Transparency: + 透明度: + + + Line width: + 线宽: + + + Point size: + 点大小: + + + Material + 材质 + + + ... + ... + + + Close + 关闭 + + + Viewing mode + 查看模式 + + + Plot mode: + 绘制模式: + + + + 关于 + + + Line transparency: + 线条透明度: + + + Line color: + 线条颜色: + + + Shape color: + 形状颜色: + + + Color plot: + 颜色出图: + + + Document window: + 文档窗口: + + + + Gui::Dialog::DlgEditorSettings + + Editor + 编辑器 + + + Options + 选项 + + + Enable line numbers + 启用行号 + + + Enable folding + 启用折叠 + + + Indentation + 缩进 + + + Insert spaces + 插入空格 + + + Tab size: + 制表符长度: + + + Indent size: + 缩进大小: + + + Keep tabs + 保留制表符 + + + Display Items + 显示项目 + + + Family: + 字体族: + + + Size: + 大小: + + + Preview: + 预览: + + + + 关于 + + + + Gui::Dialog::DlgGeneral + + General + 常规 + + + Start up + 启动 + + + Enable splash screen at start up + 打开软件启动界面 + + + Switch to tab of report window: + 切换到报告窗口标签: + + + Auto load module after start up: + 启动后自动加载模块: + + + Language + 语言 + + + Change language: + 更改语言: + + + Main window + 主窗口 + + + Size of recent file list + 最近文件列表大小 + + + Window style: + 窗口风格: + + + Size of toolbar icons: + 工具栏图标大小: + + + + Gui::Dialog::DlgGeneralImp + + Default (%1 x %1) + 默认(%1 x %1) + + + Small (%1 x %1) + 小(%1 x %1) + + + Large (%1 x %1) + 大(%1 x %1) + + + Extra large (%1 x %1) + 特大(%1 x %1) + + + + Gui::Dialog::DlgInputDialog + + Input + 输入 + + + OK + 确定 + + + Cancel + 取消 + + + + 关于 + + + + Gui::Dialog::DlgInspector + + Scene Inspector + 场景检索 + + + + Gui::Dialog::DlgMacroExecute + + Execute macro + 执行宏 + + + Macro name: + 宏名称: + + + Macro destination: + 宏目录: + + + Execute + 执行 + + + Close + 关闭 + + + Create + 创建 + + + Delete + 删除 + + + Edit + 编辑 + + + + Gui::Dialog::DlgMacroExecuteImp + + Macros + + + + Macro file + 宏文件 + + + Enter a file name, please: + 请输入文件名称: + + + Existing file + 已存在文件 + + + '%1'. +This file already exists. + '%1'. +此文件已经存在. + + + Delete macro + 删除宏 + + + Do you really want to delete the macro '%1'? + 你真的要删除宏'%1'? + + + Cannot create file + 无法创建文件 + + + Creation of file '%1' failed. + 文件 '%1' 创建失败. + + + + Gui::Dialog::DlgMacroRecord + + Macro recording + 宏录制 + + + Macro name: + 宏名称: + + + Stop + 停止 + + + Cancel + 取消 + + + Macro path: + 宏路径: + + + ... + ... + + + Record + 录制 + + + + Gui::Dialog::DlgMacroRecordImp + + Macro recorder + 宏记录器 + + + Specify first a place to save. + 首先指定保存位置. + + + Existing macro + 已有的宏 + + + The macro '%1' already exists. Do you want to overwrite? + 宏'%1'已经存在.是否要覆盖? + + + The macro directory doesn't exist. Please, choose another one. + 宏目录不存在.请重新选择. + + + Choose macro directory + 选择宏目录 + + + + Gui::Dialog::DlgMaterialProperties + + Material properties + 材质属性 + + + &Close + 闭合(&C) + + + Alt+C + Alt+C + + + Material + 材质 + + + Diffuse color: + 漫射颜色: + + + Specular color: + 高光颜色: + + + Shininess: + 反光度: + + + % + % + + + Ambient color: + 环境色: + + + + 关于 + + + Emissive color: + 发光颜色: + + + + Gui::Dialog::DlgOnlineHelp + + On-line help + 联机帮助 + + + Help viewer + 帮助阅读器 + + + Location of start page + 起始页的位置 + + + + Gui::Dialog::DlgOnlineHelpImp + + HTML files (*.html *.htm) + HTML文件(*.html *.htm) + + + Access denied + 拒绝访问 + + + Access denied to '%1' + +Specify another directory, please. + 访问'%1'被拒绝,请指定另一个目录. + + + + Gui::Dialog::DlgParameter + + Parameter Editor + 参数编辑器 + + + Save to disk + 保存到磁盘 + + + Alt+C + Alt+C + + + &Close + 闭合(&C) + + + + Gui::Dialog::DlgParameterImp + + Group + + + + Name + 名称 + + + Type + 类型 + + + Value + + + + User parameter + 用户参数 + + + Invalid input + 输入无效 + + + Invalid key name '%1' + 无效的键名'%1' + + + System parameter + 系统参数 + + + + Gui::Dialog::DlgPreferences + + Preferences + 首选项 + + + &Help + 帮助(&H) + + + Alt+H + Alt+H + + + &OK + 确定(&O) + + + &Apply + 应用(&A) + + + Alt+A + Alt+A + + + &Cancel + 取消(&C) + + + + 关于 + + + + Gui::Dialog::DlgPreferencesImp + + Wrong parameter + 参数错误 + + + + Gui::Dialog::DlgProjectInformation + + Project information + 项目信息 + + + Information + 信息 + + + &Name: + 名称(&N): + + + Commen&t: + 注释(&T): + + + Path: + 路径: + + + &Last modified by: + 上次修改(&L): + + + Created &by: + 作者(&B): + + + Com&pany: + 公司(&p): + + + Last &modification date: + 最后修改日期(&M): + + + Creation &date: + 创建日期(&D): + + + &OK + 确定(&O) + + + &Cancel + 取消(&C) + + + + 关于 + + + + Gui::Dialog::DlgProjectUtility + + Project utility + 项目工具 + + + Extract project + 提取项目 + + + Source + 来源 + + + Project file (*.fcstd) + 项目文件(*.fcstd) + + + Destination + 目标 + + + Extract + 提取 + + + Create project + 创建项目 + + + Document.xml + Document.xml + + + Create + 创建 + + + Load project file after creation + 创建项目文件后即加载 + + + Empty source + 来源为空 + + + No source is defined. + 未定义来源. + + + Empty destination + 目标为空 + + + No destination is defined. + 未定义目标. + + + + Gui::Dialog::DlgReportView + + Output window + 输出窗口 + + + Output + 输出 + + + Record log messages + 记录日志 + + + Record warnings + 记录警告 + + + Record error messages + 记录错误 + + + Colors + 颜色 + + + Normal messages: + 正常的消息: + + + Log messages: + 日志信息: + + + Warnings: + 警告: + + + Errors: + 错误: + + + + 关于 + + + Redirect internal Python errors to report view + Python的错误重定向到报告浏览器 + + + Redirect internal Python output to report view + 内部Python输出重定向至报表浏览器 + + + + Gui::Dialog::DlgRunExternal + + Running external program + 运行外部程序 + + + TextLabel + 文本标签 + + + Advanced >> + 高级 >> + + + ... + ... + + + Accept changes + 接受更改 + + + Discard changes + 放弃修改 + + + Abort program + 终止程序 + + + Help + 帮助 + + + Select a file + 选择一个文件 + + + + Gui::Dialog::DlgSettings3DView + + 3D View + 3D 视图 + + + 3D View settings + 3D 视图设置 + + + Show coordinate system in the corner + 坐标系统显示在边角 + + + Show counter of frames per second + 显示每秒运行帧数 + + + Enable animation + 启用动画 + + + Enable anti-aliasing (slower) + 启用抗锯齿(慢) + + + Eye to eye distance for stereo modes: + 立体模式的双眼距离: + + + Camera type + 相机类型 + + + Orthographic rendering + 等轴侧渲染 + + + Perspective rendering + 透视渲染 + + + + 关于 + + + 3D Navigation + 3D 导航 + + + Mouse... + 鼠标... + + + Intensity of backlight + 背光强度 + + + Enable backlight color + 启用背光颜色 + + + Orbit style + 导航模式 + + + Turntable + 转盘 + + + Trackball + 轨迹球 + + + Invert zoom + 反向缩放 + + + Zoom at cursor + 以光标为中心缩放 + + + Zoom step + 缩放步长 + + + + Gui::Dialog::DlgSettings3DViewImp + + %1 navigation + %1 导航 + + + + Gui::Dialog::DlgSettingsColorGradient + + Color model + 颜色模式 + + + &Gradient: + 渐变(&G): + + + red-yellow-green-cyan-blue + 红-黄-绿-青-蓝 + + + blue-cyan-green-yellow-red + 蓝-青-绿-黄-红 + + + white-black + 白黑 + + + black-white + 黑白 + + + Visibility + 可见性 + + + Out g&rayed + 灰度(&R) + + + Alt+R + Alt+R + + + Out &invisible + 不可见(&I) + + + Alt+I + Alt+I + + + Style + 样式 + + + &Zero + 零 (&Z) + + + Alt+Z + Alt+Z + + + &Flow + 流(&F) + + + Alt+F + Alt+F + + + &OK + 确定(&O) + + + &Cancel + 取消(&C) + + + Parameter range + 参数范围 + + + Mi&nimum: + 最小值(&N): + + + Ma&ximum: + 最大值(&X): + + + &Labels: + 标签(&L): + + + &Decimals: + 小数位数(&D): + + + + 关于 + + + Color-gradient settings + 颜色渐变设置 + + + + Gui::Dialog::DlgSettingsColorGradientImp + + Wrong parameter + 参数错误 + + + The maximum value must be higher than the minimum value. + 最大值必须大于最小值. + + + + Gui::Dialog::DlgSettingsDocument + + Document + 文档 + + + General + 常规 + + + Document save compression level +(0 = none, 9 = highest, 3 = default) + 保存文件的压缩级别(0 = 无,9 = 最高,3 = 默认) + + + Create new document at start up + 启动时创建新文档 + + + Storage + 存储 + + + Saving transactions (Auto-save) + 保存交互记录(自动保存) + + + Discard saved transaction after saving document + 保存文件后放弃保存历史记录 + + + Save thumbnail into project file when saving document + 保存文件时同时保存缩略图到项目文件 + + + Create up to backup files when resaving document + 重新保存文件时创建备份 + + + Document objects + 文档对象 + + + Allow duplicate object labels in one document + 在一个文档中允许重复的对象标签 + + + Maximum Undo/Redo steps + 最大撤消/重做步数 + + + Using Undo/Redo on documents + 在文档上使用撤消/重做 + + + + Gui::Dialog::DlgSettingsEditorImp + + Text + 文本 + + + Bookmark + 书签 + + + Breakpoint + 断点 + + + Keyword + 关键字 + + + Comment + 注释 + + + Block comment + 块注释 + + + Number + + + + String + 字符串 + + + Character + 字符 + + + Class name + 类名称 + + + Define name + 定义名称 + + + Operator + 运算符 + + + Python output + Python 输出 + + + Python error + Python 错误 + + + Items + 项目 + + + Current line highlight + 当前行亮显 + + + + Gui::Dialog::DlgSettingsImage + + Image settings + 图像设置 + + + Image properties + 图片属性 + + + Back&ground: + 背景(&G): + + + Current + 当前 + + + White + 白色 + + + Black + 黑色 + + + Transparent + 透明 + + + Image dimensions + 图像大小 + + + Pixel + 像素 + + + &Width: + 宽度(&W): + + + Current screen + 当前屏幕 + + + Icon 32 x 32 + 图标32x32 + + + Icon 64 x 64 + 图标64x62 + + + Icon 128 x 128 + 图标128x128 + + + CGA 320 x 200 + CGA 320x320 + + + QVGA 320 x 240 + QVGA 320x240 + + + VGA 640 x 480 + VGA 640x480 + + + NTSC 720 x 480 + NTSC 720x480 + + + PAL 768 x 578 + PAL 768x578 + + + SVGA 800 x 600 + SVGA 800x600 + + + XGA 1024 x 768 + XGA 1024x768 + + + HD720 1280 x 720 + HD720 1280 x 720 + + + SXGA 1280 x 1024 + SXGA 1280 x 1024 + + + SXGA+ 1400 x 1050 + SXGA+ 1400 x 1050 + + + UXGA 1600 x 1200 + UXGA 1600 x 1200 + + + HD1080 1920 x 1080 + HD1080 1920 x 1080 + + + WUXGA 1920 x 1200 + WUXGA 1920 x 1200 + + + QXGA 2048 x 1538 + QXGA 2048 x 1538 + + + WQXGA 2560 x 1600 + WQXGA 2560 x 1600 + + + QSXGA 2560 x 2048 + QSXGA 2560 x 2048 + + + QUXGA 3200 × 2400 + QUXGA 3200 × 2400 + + + HUXGA 6400 × 4800 + HUXGA 6400 × 4800 + + + !!! 10000 x 10000 + !!! 10000 x 10000 + + + Standard sizes: + 标准尺寸: + + + &Height: + 高度(&H): + + + Aspect ratio: + 高宽比: + + + &Screen + 屏幕(&S) + + + Alt+S + Alt+S + + + &4:3 + &4:3 + + + Alt+4 + Alt+4 + + + 1&6:9 + 1&6:9 + + + Alt+6 + Alt+6 + + + &1:1 + &1:1 + + + Alt+1 + Alt+1 + + + Image comment + 图像备注 + + + Insert MIBA + 插入 MIBA + + + Insert comment + 插入批注 + + + + Gui::Dialog::DlgSettingsMacro + + Macro + + + + Macro recording settings + 宏录制设置 + + + Logging Commands + 记录命令 + + + Show script commands in python console + 在Python控制台显示脚本 + + + Log all commands issued by menus to file: + 记录所有菜单执行命令到文件: + + + FullScript.FCScript + FullScript.FCScript + + + Gui commands + GUI命令 + + + Recording GUI commands + 记录GUI命令 + + + Record as comment + 录制为注释 + + + Macro path + 宏路径 + + + General macro settings + 宏全局设置 + + + Run macros in local environment + 在本地环境中运行宏 + + + + Gui::Dialog::DlgSettingsUnits + + Units + 单位 + + + Units settings + 单位设置 + + + Standard (mm/kg/s/degree) + 标准(mm/kg/s/degree) + + + MKS (m/kg/s/degree) + 公制(m/kg/s/degree) + + + Magnitude + 量纲 + + + Unit + 单位 + + + User system: + 用户系统: + + + Imperial (in/lb) + 英制 (in/lb) + + + + Gui::Dialog::DlgSettingsViewColor + + Colors + 颜色 + + + Selection + 选择 + + + Enable selection highlighting + 启用选择高亮 + + + Enable preselection highlighting + 启用预选高亮 + + + Background color + 背景颜色 + + + Middle color + 中间色 + + + Color gradient + 渐变颜色 + + + Simple color + 简单颜色 + + + Default colors + 默认颜色 + + + Edited edge color + 编辑的边颜色 + + + Edited vertex color + 编辑的顶点颜色 + + + Construction geometry + 构造几何体 + + + Fully constrained geometry + 完全约束几何体 + + + The color of vertices being edited + 编辑状态顶点的颜色 + + + The color of edges being edited + 编辑状态的边颜色 + + + The color of construction geometry in edit mode + 编辑模式下构造几何体的颜色 + + + The color of fully constrained geometry in edit mode + 编辑模式下完全约束几何体的颜色 + + + Cursor text color + 光标处文本颜色 + + + Default shape color + 默认形状颜色 + + + The default color for new shapes + 新形状的的默认颜色 + + + Default line width and color + 默认线宽和颜色 + + + The default line color for new shapes + 新形状的默认线条颜色 + + + The default line thickness for new shapes + 新形状的默认线条宽度 + + + px + px + + + + Gui::Dialog::DlgTipOfTheDay + + Tip of the day + 每日一帖 + + + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <b><font face="Times New Roman"><font size="+3">你知道么...</font></font></b> + + + &Show tips at start up + 启动时提示(&S) + + + Alt+S + Alt+S + + + &Next Tip + 下一个(&N) + + + Alt+N + Alt+N + + + &Close + 闭合(&C) + + + Alt+C + Alt+C + + + + 关于 + + + + Gui::Dialog::DlgTipOfTheDayImp + + Download failed: %1 + + 下载失败: %1 + + + + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + 如果您想了解更多有关FreeCAD,请访问 %1 或点击帮助菜单中的帮助文件. + + + + Gui::Dialog::DockablePlacement + + Placement + 定位 + + + + Gui::Dialog::DownloadDialog + + Download + 下载 + + + Cancel + 取消 + + + Close + 关闭 + + + There already exists a file called %1 in the current directory. Overwrite? + 在当前目录中已经存在名为 %1 的文件. 覆盖吗? + + + Unable to save the file %1: %2. + 无法保存文件 %1: %2. + + + Downloading %1. + 正在下载 %1. + + + Download canceled. + 下载已取消. + + + Download failed: %1. + 下载失败: %1. + + + Downloaded %1 to current directory. + 下载 %1 到当前目录. + + + + Gui::Dialog::IconDialog + + Add icon + 添加图标 + + + + Gui::Dialog::InputVector + + Input vector + 输入向量 + + + Vector + 向量 + + + Z: + Z: + + + Y: + Y: + + + X: + X: + + + OK + 确定 + + + + Gui::Dialog::LicenseDialog + + Copyright + Copyright + + + + Gui::Dialog::MouseButtons + + Mouse buttons + 鼠标按键 + + + Configuration + 配置 + + + Selection: + 选择: + + + Panning + 平移 + + + Rotation: + 旋转: + + + Zooming: + 缩放: + + + + Gui::Dialog::ParameterGroup + + Expand + 展开 + + + Add sub-group + 添加子组 + + + Remove group + 删除组 + + + Rename group + 重命名组 + + + Export parameter + 导出参数 + + + Import parameter + 导入参数 + + + Collapse + 折叠 + + + Do really want to remove this parameter group? + 是否真的删除此参数组? + + + Existing sub-group + 已存在子组 + + + The sub-group '%1' already exists. + 子组'%1'已经存在. + + + Export parameter to file + 导出参数到文件 + + + XML (*.FCParam) + XML (*.FCParam) + + + Import parameter from file + 从文件中导入参数 + + + Import Error + 导入错误 + + + Reading from '%1' failed. + 读取'%1'失败. + + + + Gui::Dialog::ParameterValue + + Change value + 更改值 + + + Remove key + 删除键 + + + Rename key + 重命名键 + + + New + 新建 + + + New string item + 新字符串项 + + + New float item + 新浮点数 + + + New integer item + 新整数 + + + New unsigned item + 新无符号数 + + + New Boolean item + 新布尔值 + + + Existing item + 已存在项目 + + + The item '%1' already exists. + 对象'%1'已经存在. + + + + Gui::Dialog::Placement + + Placement + 定位 + + + OK + 确定 + + + Translation: + 变换: + + + Z: + Z: + + + Y: + Y: + + + X: + X: + + + Rotation: + 旋转: + + + Angle: + 角度: + + + Axis: + 轴: + + + Center: + 中心: + + + Pitch: + 间距: + + + Roll: + 卷: + + + Yaw: + 偏: + + + Rotation axis with angle + 按角度旋转轴 + + + Euler angles + 欧拉角 + + + Apply placement changes immediately + 立即应用更改 + + + Apply incremental changes to object placement + 应用更改到对象 + + + Apply + 应用 + + + Reset + 重设 + + + Close + 关闭 + + + + Gui::Dialog::PrintModel + + Button + 按钮 + + + Command + 命令 + + + + Gui::Dialog::SceneInspector + + Dialog + 对话框 + + + Close + 关闭 + + + Refresh + 刷新 + + + + Gui::Dialog::SceneModel + + Inventor Tree + 结构树 + + + Nodes + 节点 + + + + Gui::Dialog::TextureMapping + + Texture + 纹理 + + + Texture mapping + 纹理映射 + + + Global + 全局 + + + Environment + 环境 + + + Image files (%1) + 图像文件(%1) + + + No image + 无图片 + + + The specified file is not a valid image file. + 指定的文件不是有效的图像文件. + + + No 3d view + 无3D视图 + + + No active 3d view found. + 未发现活动的3d视图. + + + + Gui::Dialog::Transform + + Cancel + 取消 + + + Transform + 变换 + + + + Gui::DlgTreeWidget + + Dialog + 对话框 + + + Items + 项目 + + + OK + 确定 + + + Cancel + 取消 + + + + 关于 + + + + Gui::DockWnd::CombiView + + CombiView + 组合视图 + + + Project + 项目 + + + Tasks + 任务 + + + + Gui::DockWnd::HelpView + + Previous + 上一个 + + + Next + 下一个 + + + Home + 主页 + + + Open + 打开 + + + Open file + 打开文件 + + + All HTML files (*.html *.htm) + 所有HTML文件(*.html *.htm) + + + External browser + 外部浏览器 + + + No external browser found. Specify in preferences, please + 未发现外部浏览器.请在首选项中设置 + + + Starting of %1 failed + 启动 %1 失败 + + + + Gui::DockWnd::PropertyDockView + + Property View + 属性浏览器 + + + + Gui::DockWnd::ReportOutput + + Logging + 日志 + + + Warning + 警告 + + + Error + 错误 + + + Options + 选项 + + + Clear + 清除 + + + Save As... + 另存为... + + + Save Report Output + 保存输出报告 + + + Plain Text Files (*.txt *.log) + 文本文件(*.txt *.log) + + + Go to end + 转到结束 + + + Redirect Python output + 重定向Python输出 + + + Redirect Python errors + Python错误重定向 + + + + Gui::DockWnd::ReportView + + Output + 输出 + + + Python console + Python控制台 + + + + Gui::DockWnd::SelectionView + + Property View + 属性浏览器 + + + + Gui::DockWnd::TaskPanelView + + Task View + 任务浏览器 + + + + Gui::DockWnd::TextBrowser + + Could not open file. + 无法打开文件. + + + You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. + 您试图访问地址'%1',当前不可用。请确保URL存在,并重新尝试加载该页面. + + + Connecting to %1 + 连接到 %1 + + + Sending to %1 + 发送到 %1 + + + Reading from %1 + 读取'%1' + + + Download failed: %1. + 下载失败: %1. + + + Previous + 上一个 + + + Forward + 向前 + + + Home + 主页 + + + Refresh + 刷新 + + + Copy + 复制 + + + Select all + 全选 + + + No description for + 无说明 + + + + Gui::DocumentModel + + Application + 工程 + + + Labels & Attributes + 标签 & 属性 + + + + Gui::EditorView + + Modified file + 修改后的文件 + + + %1. + +This has been modified outside of the source editor. Do you want to reload it? + %1. +它已被代码编辑器之外的程序修改.是否重新加载? + + + Unsaved document + 未保存的文件 + + + The document has been modified. +Do you want to save your changes? + 该文件已被修改. +是否要保存更改? + + + FreeCAD macro (*.FCMacro);;Python (*.py) + FreeCAD 宏(*.FCMacro);;Python(*.py) + + + Export PDF + 导出PDF + + + PDF file (*.pdf) + PDF 文件(*.pdf) + + + untitled[*] + 无标题[*] + + + - Editor + - Editor + + + %1 chars removed + 删除了 %1 个字符 + + + %1 chars added + 增加了 %1 个字符 + + + Formatted + 已格式化 + + + + Gui::FileChooser + + Select a file + 选择一个文件 + + + Select a directory + 选择一个目录 + + + + Gui::FileDialog + + Save as + 另存为 + + + Open + 打开 + + + + Gui::FileOptionsDialog + + Extended + 扩展 + + + All files (*.*) + 所有文件(*.*) + + + + Gui::Flag + + Top left + 左上 + + + Bottom left + 左下 + + + Top right + 右上 + + + Bottom right + 右下 + + + Remove + 删除 + + + + Gui::InventorNavigationStyle + + Press CTRL and left mouse button + 按CTRL和鼠标左键 + + + Press middle mouse button + 按鼠标中键 + + + Press left mouse button + 按鼠标左键 + + + Scroll middle mouse button + 滚动鼠标中键 + + + + Gui::LocationDialog + + Wrong direction + 方向错误 + + + Direction must not be the null vector + 方向不能是零向量 + + + X + X + + + Y + Y + + + Z + Z + + + User defined... + 用户定义... + + + + Gui::LocationWidget + + X: + X: + + + Y: + Y: + + + Z: + Z: + + + Direction: + 方向: + + + + Gui::MacroCommand + + Macros + + + + + Gui::MainWindow + + Dimension + 尺寸标注 + + + Ready + 就绪 + + + Toggles this toolbar + 切换此工具栏 + + + Toggles this dockable window + 切换此可停靠的窗口 + + + Close All + 全部关闭 + + + + Gui::ManualAlignment + + Manual alignment + 手动对齐 + + + The alignment is already in progress. + 对齐方式已在进行中。 + + + Alignment[*] + 对齐方式[*] + + + Please, select at least one point in the left and the right view + 请选择至少 %1 点左和右视图 + + + Please, select at least %1 points in the left and the right view + 请选择至少 %1 点左和右视图 + + + Please pick points in the left and right view + 请在左、 右视图中选取点 + + + The alignment has finished + 对齐方式已完成 + + + The alignment has been canceled + 对齐方式已被取消 + + + Too few points picked in the left view. At least %1 points are needed. + 挑在右视图的点太少。至少需要 %1 点。 + + + Too few points picked in the right view. At least %1 points are needed. + 挑在右视图的点太少。至少需要 %1 点。 + + + Different number of points picked in left and right view. +On the left view %1 points are picked, +on the right view %2 points are picked. + 不同数量的左、 右视图中选取的点。对左视图 %1 点被挑选,右视图 %2 上点被挑选. + + + Try to align group of views + 尝试对齐组的意见 + + + The alignment failed. +How do you want to proceed? + 对齐方式失败。您希望如何进行? + + + Retry + 请重试 + + + Ignore + 忽略 + + + Abort + 中止 + + + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + 不同数量的左、 右视图中选取的点。对左视图 %1 点被挑选,右视图 %2 上点被挑选。 + + + Point picked at (%1,%2,%3) + 选择点(%1,%2,%3) + + + No point was picked + 没有点被选 + + + + Gui::NetworkRetriever + + Download started... + + 下载开始... + + + + Gui::ProgressBar + + Remaining: %1 + 剩余:%1 + + + Aborting + 异常终止 + + + Do you really want to abort the operation? + 你真的想中止运行么? + + + + Gui::ProgressDialog + + Remaining: %1 + 剩余:%1 + + + Aborting + 异常终止 + + + Do you really want to abort the operation? + 你真的想中止运行么? + + + + Gui::PropertyEditor::PropertyModel + + Property + 属性 + + + Value + + + + + Gui::PropertyView + + View + 视图 + + + Data + 数据 + + + + Gui::PythonConsole + + System exit + 系统退出 + + + The application is still running. +Do you want to exit without saving your data? + 应用程序仍在运行. +是否要退出而不保存数据? + + + Python console + Python控制台 + + + Unhandled PyCXX exception. + 未处理的PyCXX异常. + + + Unhandled FreeCAD exception. + 未处理的FreeCAD异常. + + + Unhandled unknown C++ exception. + 未处理的未知c++异常. + + + &Copy command + 复制命令(&C) + + + &Copy history + 复制历史(&C) + + + Save history as... + 历史记录另存为... + + + Insert file name... + 插入文件名... + + + Save History + 保存历史记录 + + + Macro Files (*.FCMacro *.py) + 宏文件(*.FCMacro *.py) + + + Insert file name + 插入文件名 + + + All Files (*.*) + 所有文件(*.*) + + + Python Input Dialog + Python输入对话框 + + + Unhandled std C++ exception. + 未处理的标准c++异常. + + + Word wrap + 自动换行 + + + &Copy + 复制(&C) + + + &Paste + 粘贴(&P) + + + Select All + 全选 + + + Clear console + 清除控制台 + + + + Gui::PythonEditor + + Comment + 注释 + + + Uncomment + 取消注释 + + + + Gui::PythonInputField + + OK + 确定 + + + Clear + 清除 + + + + Gui::RecentFilesAction + + Open file %1 + 打开文件%1 + + + File not found + 文件未找到 + + + The file '%1' cannot be opened. + 无法打开文件'%1'. + + + + Gui::SelectModule + + Select module + 选择模块 + + + Open %1 as + 打开 %1 作为 + + + Select + 选择 + + + + Gui::StdCmdDescription + + Help + 帮助 + + + Des&cription + 描述(&C) + + + Long description of commands + 命令的详细描述 + + + + Gui::StdCmdDownloadOnlineHelp + + Help + 帮助 + + + Download online help + 下载在线帮助 + + + Download %1's online help + 下载 %1 的联机帮助 + + + Non-existing directory + 不存在的目录 + + + The directory '%1' does not exist. + +Do you want to specify an existing directory? + 目录'%1'不存在. +你要指定一个现有的目录? + + + Missing permission + 缺少权限 + + + You don't have write permission to '%1' + +Do you want to specify another directory? + 您没有写入'%1'权限 +要指定另一个目录? + + + Stop downloading + 停止下载 + + + + Gui::StdCmdPythonHelp + + Tools + 工具 + + + Python Modules + Python模块 + + + Opens a browser to show the Python modules + 打开浏览器来查看Python模块 + + + + Gui::TaskBoxAngle + + Angle + 角度 + + + + Gui::TaskBoxPosition + + Position + 位置 + + + + Gui::TaskView::TaskAppearance + + Plot mode: + 绘制模式: + + + Point size: + 点大小: + + + Line width: + 线宽: + + + Transparency: + 透明度: + + + Appearance + 外观 + + + Document window: + 文档窗口: + + + + Gui::TaskView::TaskEditControl + + Edit + 编辑 + + + + Gui::TaskView::TaskSelectLinkProperty + + Appearance + 外观 + + + ... + ... + + + edit selection + 编辑选择 + + + + Gui::TouchpadNavigationStyle + + Press left mouse button + 按鼠标左键 + + + Press SHIFT button + 按SHIFT键 + + + Press ALT button + 按 ALT 键 + + + Press PgUp/PgDown button + 按 PgUp/PgDown 按钮 + + + + Gui::TreeDockWidget + + Tree view + 结构树浏览器 + + + + Gui::TreeWidget + + Create group... + 创建组... + + + Create a group + 创建组 + + + Group + + + + Rename + 重命名 + + + Rename object + 重命名对象 + + + Labels & Attributes + 标签 & 属性 + + + Application + 工程 + + + Finish editing + 完成编辑 + + + Finish editing object + 完成编辑对象 + + + Activate document + 激活文档 + + + Activate document %1 + 激活文档 %1 + + + + Gui::View3DInventor + + Export PDF + 导出PDF + + + PDF file (*.pdf) + PDF 文件(*.pdf) + + + + Gui::WorkbenchGroup + + Select the '%1' workbench + 选择'%1'工作台 + + + + Position + + Form + 窗体 + + + X: + X: + + + Y: + Y: + + + Z: + Z: + + + 0.1 mm + 0.1 mm + + + 0.5 mm + 0.5 mm + + + 1 mm + 1 mm + + + 2 mm + 2 mm + + + 5 mm + 5 mm + + + 10 mm + 10 mm + + + 20 mm + 20 mm + + + 50 mm + 50 mm + + + 100 mm + 100 mm + + + 200 mm + 100 mm + + + 500 mm + 500 mm + + + 1 m + 1 m + + + 2 m + 2 m + + + 5 m + 5 m + + + Grid Snap in + 网格捕捉开 + + + + QDockWidget + + Tree view + 结构树浏览器 + + + Property view + 属性浏览器 + + + Selection view + 选择浏览器 + + + Report view + 报告浏览器 + + + Task View + 任务浏览器 + + + Combo View + 组合浏览器 + + + Toolbox + 工具箱 + + + Python console + Python控制台 + + + Display properties + 显示属性 + + + + QObject + + General + 常规 + + + Display + 显示 + + + Unknown filetype + 未知文件类型 + + + Cannot open unknown filetype: %1 + 无法打开未知文件类型: %1 + + + Cannot save to unknown filetype: %1 + 无法保存为未知的文件类型: %1 + + + Workbench failure + 工作台故障 + + + %1 + %1 + + + Unable to launch Qt Assistant (%1) + 无法启动Qt助手(%1) + + + Exception + 异常 + + + Open document + 打开文档 + + + Import file + 导入文件 + + + Export file + 导出文件 + + + Printing... + 打印... + + + Cannot load workbench + 无法加载工作台 + + + A general error occurred while loading the workbench + 加载工作台时出错 + + + Save views... + 保存视图... + + + Load views... + 加载视图... + + + Freeze view + 冻结视图 + + + Clear views + 清除视图 + + + Restore view &%1 + 还原视图 &%1 + + + Save frozen views + 保存冻结视图 + + + Frozen views (*.cam) + 冻结视图(*.cam) + + + Restore views + 还原视图 + + + Importing the restored views would clear the already stored views. +Do you want to continue? + 导入还原视图将清除已存储的视图.是否继续? + + + Restore frozen views + 回复冻结视图 + + + Cannot open file '%1'. + 无法打开文件'%1'. + + + Docked + 停靠 + + + Undocked + 不停靠 + + + Fullscreen + 全屏 + + + files + 文件 + + + Save picture + 保存图片 + + + New sub-group + 新次级组 + + + Enter the name: + 输入名称: + + + New text item + 新文本 + + + Enter your text: + 输入文本: + + + New integer item + 新整数 + + + Enter your number: + 输入数字: + + + New unsigned item + 新无符号数 + + + New float item + 新浮点数 + + + New Boolean item + 新布尔值 + + + Choose an item: + 选择对象: + + + Rename group + 重命名组 + + + The group '%1' cannot be renamed. + 组'%1'无法重命名. + + + Existing group + 已存在组 + + + The group '%1' already exists. + 组'%1'已存在. + + + Change value + 更改值 + + + Save document under new filename... + 使用新的文件名保存文档... + + + Saving aborted + 保存中止 + + + Unsaved document + 未保存的文件 + + + Save document before close? + 关闭前保存文档? + + + Save Macro + 保存宏 + + + Finish + 完成 + + + Clear + 清除 + + + Cancel + 取消 + + + Inner + + + + Outer + + + + No Browser + 无浏览器 + + + Unable to open your browser. + +Please open a browser window and type in: http://localhost:%1. + 无法打开您的浏览器。请打开浏览器窗口并输入:http://localhost:%1. + + + No Server + 无服务器 + + + Unable to start the server to port %1: %2. + 无法从端口“%1:%2”启动服务器. + + + Unable to open your system browser. + 无法打开您的系统浏览器. + + + Options... + 选项... + + + Out of memory + 内存不足 + + + Not enough memory available to display the data. + 没有足够的可用内存来显示数据. + + + Cannot find file %1 + 找不到文件 %1 + + + Cannot find file %1 neither in %2 nor in %3 + 在 %2 或 %3 中找不到文件 %1 + + + Save %1 Document + 保存%1文件 + + + %1 document (*.FCStd) + %1 文档(*.FCStd) + + + Save As + 另存为 + + + %1 already exists. +Do you want to replace it? + %1 已存在.想覆盖它吗? + + + Document not closable + 文档不可关闭 + + + The document is not closable for the moment. + 文档当前无法关闭. + + + No OpenGL + 无 OpenGL + + + This system does not support OpenGL + 此系统不支持 OpenGL + + + Help + 帮助 + + + Unable to load documentation. +In order to load it Qt 4.4 or higher is required. + 无法加载文档. +加载它需要Qt4.4或更高版本. + + + %1 Help + %1 帮助 + + + Exporting PDF... + 导出 PDF... + + + Wrong selection + 选择错误 + + + Only one object selected. Please select two objects. +Be aware the point where you click matters. + 只有一个对象选中.请选择两个对象. +请注意您的点击位置. + + + Please select two objects. +Be aware the point where you click matters. + 请选择两个对象. +请注意您的点击位置. + + + New boolean item + 新布尔值 + + + Navigation styles + 导航样式 + + + %1 navigation + %1 导航 + + + Move annotation + 移动批注 + + + Transform + 变换 + + + The document is in editing mode and thus cannot be closed for the moment. +You either have to finish or cancel the editing in the task panel. + 文档处于编辑模式,当前无法关闭. 您可选择在任务面板中完成或取消编辑. + + + + StdBoxSelection + + Standard-View + 标准视图 + + + Box selection + 框选 + + + + StdCmdAbout + + Help + 帮助 + + + &About %1 + 关于%1(&A) + + + About %1 + 关于 %1 + + + + StdCmdAboutQt + + Help + 帮助 + + + About &Qt + 关于Qt(&Q) + + + About Qt + 关于Qt + + + + StdCmdActivateNextWindow + + Window + 窗口 + + + Ne&xt + 下一个(&X) + + + Activate next window + 激活下一个窗口 + + + + StdCmdActivatePrevWindow + + Window + 窗口 + + + Pre&vious + 上一个(&V) + + + Activate previous window + 激活上一个窗口 + + + + StdCmdAlignment + + Edit + 编辑 + + + Alignment... + 对齐方式... + + + Align the selected objects + 对齐选定的对象 + + + + StdCmdArrangeIcons + + Window + 窗口 + + + Arrange &Icons + 排列图标(&I) + + + Arrange Icons + 排列图标 + + + + StdCmdAxisCross + + Standard-View + 标准视图 + + + Toggle axis cross + 切换轴交叉 + + + + StdCmdCascadeWindows + + Window + 窗口 + + + &Cascade + 层叠(&C) + + + Tile pragmatic + 完整平铺 + + + + StdCmdCloseActiveWindow + + Window + 窗口 + + + Cl&ose + 关闭 + + + Close active window + 关闭当前窗口 + + + + StdCmdCloseAllWindows + + Window + 窗口 + + + Close Al&l + 全部关闭(&L) + + + Close all windows + 关闭所有窗口 + + + + StdCmdCommandLine + + Tools + 工具 + + + Start command &line... + 启动命令行(&L)... + + + Opens the command line in the console + 在控制台打开命令行 + + + + StdCmdCopy + + Edit + 编辑 + + + C&opy + 复制(&C) + + + Copy operation + 复制操作 + + + + StdCmdCut + + Edit + 编辑 + + + &Cut + 剪切(&C) + + + Cut out + 剪出 + + + + StdCmdDelete + + Edit + 编辑 + + + &Delete + 删除(&D) + + + Deletes the selected objects + 删除选中的对象 + + + + StdCmdDemoMode + + Standard-View + 标准视图 + + + View turntable... + 视图罗盘... + + + View turntable + 视图罗盘 + + + + StdCmdDlgCustomize + + Tools + 工具 + + + Cu&stomize... + 自定义(&S)... + + + Customize toolbars and command bars + 自定义工具栏和命令栏 + + + + StdCmdDlgMacroExecute + + Macros ... + 宏 ... + + + Opens a dialog to let you execute a recorded macro + 打开一个对话框,执行一个录制的宏 + + + Macro + + + + + StdCmdDlgMacroExecuteDirect + + Macro + + + + Execute macro + 执行宏 + + + Execute the macro in the editor + 在编辑器中运行宏 + + + + StdCmdDlgMacroRecord + + &Macro recording ... + 宏录制(&M)... + + + Opens a dialog to record a macro + 打开一个对话框,录制宏 + + + Macro + + + + + StdCmdDlgParameter + + Tools + 工具 + + + E&dit parameters ... + 编辑参数(&E)... + + + Opens a Dialog to edit the parameters + 打开一个对话框编辑参数 + + + + StdCmdDlgPreferences + + Tools + 工具 + + + &Preferences ... + 选项(&P)... + + + Opens a Dialog to edit the preferences + 打开一个对话框编辑首选项 + + + + StdCmdDockViewMenu + + View + 视图 + + + Vie&ws + 视图(&W) + + + Toggles this window + 切换窗口 + + + + StdCmdDrawStyle + + Standard-View + 标准视图 + + + Draw style + 绘制样式 + + + + StdCmdDuplicateSelection + + Edit + 编辑 + + + Duplicate selection + 复制选择 + + + Put duplicates of the selected objects to the active document + 把选中对象的复制副本放到当前文档 + + + + StdCmdEdit + + Edit + 编辑 + + + Toggle &Edit mode + 切换编辑(&E)模式 + + + Toggles the selected object's edit mode + 切换所选对象的编辑模式 + + + Enters or leaves the selected object's edit mode + 进入或离开所选的对象的编辑模式 + + + + StdCmdExport + + File + 文件 + + + &Export... + 导出(&E)... + + + Export an object in the active document + 导出当前文档中的一个对象 + + + No selection + 未选择任何内容 + + + Please select first the objects you want to export. + 请先选择要导出的对象. + + + + StdCmdExportGraphviz + + Tools + 工具 + + + Dependency graph... + 依赖关系图... + + + Show the dependency graph of the objects in the active document + 在活动文档中显示对象的依赖关系图 + + + + StdCmdFeatRecompute + + File + 文件 + + + &Recompute + 重新计算(&R) + + + Recompute feature or document + 重新计算"特征"或"文档" + + + + StdCmdFreeCADWebsite + + Help + 帮助 + + + FreeCAD Website + FreeCAD网站 + + + The FreeCAD website + FreeCAD 网站 + + + + StdCmdFreezeViews + + Standard-View + 标准视图 + + + Freeze display + 冻结显示 + + + Freezes the current view position + 冻结当前视图位置 + + + + StdCmdHideObjects + + Standard-View + 标准视图 + + + Hide all objects + 隐藏所有对象 + + + Hide all objects in the document + 隐藏文档中的所有对象 + + + + StdCmdHideSelection + + Standard-View + 标准视图 + + + Hide selection + 隐藏选中对象 + + + Hide all selected objects + 隐藏所有选定的对象 + + + + StdCmdImport + + File + 文件 + + + &Import... + 导入(&I)... + + + Import a file in the active document + 在当前文档中导入文件 + + + Supported formats + 支持的格式 + + + All files (*.*) + 所有文件(*.*) + + + + StdCmdMacroStartDebug + + Macro + + + + Debug macro + 调试宏 + + + Start debugging of macro + 开始调试宏 + + + + StdCmdMacroStepOver + + Macro + + + + Step over + 步进 + + + + StdCmdMacroStopDebug + + Macro + + + + Stop debugging + 停止调试 + + + Stop debugging of macro + 停止调试宏 + + + + StdCmdMacroStopRecord + + Macro + + + + S&top macro recording + 停止宏录制(&T) + + + Stop the macro recording session + 停止宏录制进程 + + + + StdCmdMeasureDistance + + View + 视图 + + + Measure distance + 测量距离 + + + + StdCmdMeasurementSimple + + Tools + 工具 + + + Measures distance between two selected objects + 测量两个选中物体间距离 + + + Measure distance + 测量距离 + + + + StdCmdMergeProjects + + File + 文件 + + + Merge project... + 合并项目... + + + Merge project + 合并项目 + + + %1 document (*.fcstd) + %1 文档(*.fcstd) + + + Cannot merge project with itself. + 不能合并项目本身. + + + + StdCmdNew + + File + 文件 + + + &New + 新建(&N) + + + Create a new empty document + 创建一个新空白文档 + + + + StdCmdOnlineHelp + + Help + 帮助 + + + Show help to the application + 显示程序帮助 + + + + StdCmdOnlineHelpWebsite + + Help + 帮助 + + + Help Website + 帮助网站 + + + The website where the help is maintained + 帮助文件所在网站 + + + + StdCmdOpen + + File + 文件 + + + &Open... + 打开(&O)... + + + Open a document or import files + 打开一个文档或导入文件 + + + Supported formats + 支持的格式 + + + All files (*.*) + 所有文件(*.*) + + + + StdCmdPaste + + Edit + 编辑 + + + &Paste + 粘贴(&P) + + + Paste operation + 粘贴操作 + + + + StdCmdPlacement + + Edit + 编辑 + + + Placement... + 定位... + + + Place the selected objects + 放置所选对象 + + + + StdCmdPrint + + File + 文件 + + + &Print... + 打印(&P)... + + + Print the document + 打印文档 + + + + StdCmdPrintPdf + + File + 文件 + + + &Export PDF... + 导出PDF(&E)... + + + Export the document as PDF + 将文档导出为 PDF + + + + StdCmdPrintPreview + + File + 文件 + + + &Print preview... + 打印预览(&P)... + + + Print the document + 打印文档 + + + Print preview + 打印预览 + + + + StdCmdProjectInfo + + File + 文件 + + + Project i&nformation... + 项目信息(&N)... + + + Show details of the currently active project + 显示当前项目详情 + + + + StdCmdProjectUtil + + Tools + 工具 + + + Project utility... + 项目工具... + + + Utility to extract or create project files + 提取或创建项目文件的工具 + + + + StdCmdPythonWebsite + + Help + 帮助 + + + Python Website + Python网站 + + + The official Python website + Python官方网站 + + + + StdCmdQuit + + File + 文件 + + + E&xit + 退出(&X) + + + Quits the application + 退出程序 + + + + StdCmdRandomColor + + File + 文件 + + + Random color + 随机颜色 + + + + StdCmdRecentFiles + + File + 文件 + + + Recent files + 最近打开的文件 + + + Recent file list + 最近文件列表 + + + + StdCmdRedo + + Edit + 编辑 + + + &Redo + 重做(&R) + + + Redoes a previously undone action + 重做上次撤消的操作 + + + + StdCmdRefresh + + Edit + 编辑 + + + &Refresh + 刷新(&R) + + + Recomputes the current active document + 重新计算当前文档 + + + + StdCmdSave + + File + 文件 + + + &Save + 保存(&S) + + + Save the active document + 保存当前文当 + + + + StdCmdSaveAs + + File + 文件 + + + Save &As... + 另存为(&A)... + + + Save the active document under a new file name + 使用新文件名保存当前文档 + + + + StdCmdSceneInspector + + Tools + 工具 + + + Scene inspector... + 场景检索... + + + Scene inspector + 场景检索 + + + + StdCmdSelectAll + + Edit + 编辑 + + + Select &All + 全选(&A) + + + Select all + 全选 + + + + StdCmdSetAppearance + + Standard-View + 标准视图 + + + Appearance... + 外观... + + + Sets the display properties of the selected object + 设置选中对象的显示属性 + + + + StdCmdShowObjects + + Standard-View + 标准视图 + + + Show all objects + 显示所有对象 + + + Show all objects in the document + 显示文档中的所有对象 + + + + StdCmdShowSelection + + Standard-View + 标准视图 + + + Show selection + 显示选择 + + + Show all selected objects + 显示所有选择的对象 + + + + StdCmdStatusBar + + View + 视图 + + + Status bar + 状态栏 + + + Toggles the status bar + 切换状态栏 + + + + StdCmdTextureMapping + + Tools + 工具 + + + Texture mapping... + 纹理映射... + + + Texture mapping + 纹理映射 + + + + StdCmdTileWindows + + Window + 窗口 + + + &Tile + 平铺(&T) + + + Tile the windows + 平铺窗口 + + + + StdCmdToggleBreakpoint + + Macro + + + + Toggle breakpoint + 切换断点 + + + + StdCmdToggleClipPlane + + Standard-View + 标准视图 + + + Clipping plane + 修剪平面 + + + Toggles clipping plane for active view + 切换当前视图的平面裁剪 + + + + StdCmdToggleNavigation + + Standard-View + 标准视图 + + + Toggle navigation/Edit mode + 切换导航/编辑模式 + + + Toggle between navigation and edit mode + 在导航和编辑模式之间切换 + + + + StdCmdToggleObjects + + Standard-View + 标准视图 + + + Toggle all objects + 切换所有对象 + + + Toggles visibility of all objects in the active document + 切换当前文档中所有对象的可见性 + + + + StdCmdToggleSelectability + + Standard-View + 标准视图 + + + Toggle selectability + 切换可选择性 + + + Toggles the property of the objects to get selected in the 3D-View + 切换属性以在三维视图中选定对象 + + + + StdCmdToggleVisibility + + Standard-View + 标准视图 + + + Toggle visibility + 切换可见性 + + + Toggles visibility + 切换可见性 + + + + StdCmdToolBarMenu + + View + 视图 + + + Tool&bars + 工具栏(&B) + + + Toggles this window + 切换窗口 + + + + StdCmdTransform + + Edit + 编辑 + + + Transform... + 变换... + + + Transform the geometry of selected objects + 几何变换选中对象 + + + + StdCmdTreeSelection + + View + 视图 + + + Go to selection + 转到选择 + + + Scroll to first selected item + 滚动到第一选择的对象 + + + + StdCmdUndo + + Edit + 编辑 + + + &Undo + 撤消(&U) + + + Undo exactly one action + 仅撤消一个操作 + + + + StdCmdUserInterface + + View + 视图 + + + Dock views + 停靠视图 + + + Dock all top-level views + 停靠所有顶级视图 + + + + StdCmdViewAxo + + Standard-View + 标准视图 + + + Axometric + 轴侧 + + + Set to axometric view + 设置为轴侧视图 + + + + StdCmdViewBottom + + Standard-View + 标准视图 + + + Bottom + 底视 + + + Set to bottom view + 设置为底视图 + + + + StdCmdViewCreate + + Standard-View + 标准视图 + + + Create new view + 创建新视图 + + + Creates a new view window for the active document + 为当前文档创建一个新的视图窗口 + + + + StdCmdViewExample1 + + Standard-View + 标准视图 + + + Inventor example #1 + Inventor 实例#1 + + + Shows a 3D texture with manipulator + 自动控制显示3D纹理 + + + + StdCmdViewExample2 + + Standard-View + 标准视图 + + + Inventor example #2 + Inventor 实例#2 + + + Shows spheres and drag-lights + 显示操控球和拖放指示 + + + + StdCmdViewExample3 + + Standard-View + 标准视图 + + + Inventor example #3 + Inventor 实例#3 + + + Shows a animated texture + 显示一个动画纹理 + + + + StdCmdViewFitAll + + Standard-View + 标准视图 + + + Fit all + 适合所有 + + + Fits the whole content on the screen + 在屏幕上容纳全部内容 + + + + StdCmdViewFitSelection + + Standard-View + 标准视图 + + + Fit selection + 适合选中 + + + Fits the selected content on the screen + 适合在屏幕上选取的内容 + + + + StdCmdViewFront + + Standard-View + 标准视图 + + + Front + 前视 + + + Set to front view + 设置为前视图 + + + + StdCmdViewIvIssueCamPos + + Standard-View + 标准视图 + + + Issue camera position + 发布相机位置 + + + Issue the camera position to the console and to a macro, to easily recall this position + 发布相机位置至控制台或宏,以便重新访问 + + + + StdCmdViewIvStereoInterleavedColumns + + Standard-View + 标准视图 + + + Stereo Interleaved Columns + 三维成像列扫描 + + + Switch stereo viewing to Interleaved Columns + 切换三维成像视图为列扫描显示 + + + + StdCmdViewIvStereoInterleavedRows + + Standard-View + 标准视图 + + + Stereo Interleaved Rows + 三维成像行扫描 + + + Switch stereo viewing to Interleaved Rows + 切换三维成像视图为行扫描显示 + + + + StdCmdViewIvStereoOff + + Standard-View + 标准视图 + + + Stereo Off + 关闭三维成像 + + + Switch stereo viewing off + 关闭三维成像视图 + + + + StdCmdViewIvStereoQuadBuff + + Standard-View + 标准视图 + + + Stereo quad buffer + 三维成像缓存 + + + Switch stereo viewing to quad buffer + 切换三维成像视图为缓存显示 + + + + StdCmdViewIvStereoRedGreen + + Standard-View + 标准视图 + + + Stereo red/green + 三维成像 红/绿 + + + Switch stereo viewing to red/green + 切换三维成像视图为红/绿显示 + + + + StdCmdViewLeft + + Standard-View + 标准视图 + + + Left + 左视 + + + Set to left view + 设置为左视图 + + + + StdCmdViewRear + + Standard-View + 标准视图 + + + Rear + 后视 + + + Set to rear view + 设置为后视图 + + + + StdCmdViewRight + + Standard-View + 标准视图 + + + Right + + + + Set to right view + 设置为右视图 + + + + StdCmdViewRotateLeft + + Standard-View + 标准视图 + + + Rotate Left + 向左旋转 + + + Rotate the view by 90° counter-clockwise + 旋转 90 ° 逆时针旋转视图 + + + + StdCmdViewRotateRight + + Standard-View + 标准视图 + + + Rotate Right + 向右旋转 + + + Rotate the view by 90° clockwise + 按顺时针旋转90°旋转视图 + + + + StdCmdViewTop + + Standard-View + 标准视图 + + + Top + 顶视 + + + Set to top view + 设置为顶视图 + + + + StdCmdWhatsThis + + Help + 帮助 + + + &What's This? + 这是什么(&W)? + + + What's This + 这是什么 + + + + StdCmdWindows + + Window + 窗口 + + + &Windows... + 窗口(&W)... + + + Windows list + 窗口列表 + + + + StdCmdWindowsMenu + + Window + 窗口 + + + Activates this window + 激活此窗口 + + + + StdCmdWorkbench + + View + 视图 + + + Workbench + 工作台 + + + Switch between workbenches + 工作台之间切换 + + + + StdOrthographicCamera + + Standard-View + 标准视图 + + + Orthographic view + 平行视图 + + + Switches to orthographic view mode + 切换到正交视图模式 + + + + StdPerspectiveCamera + + Standard-View + 标准视图 + + + Perspective view + 透视视图 + + + Switches to perspective view mode + 切换到透视视图模式 + + + + StdViewBoxZoom + + Standard-View + 标准视图 + + + Box zoom + 框选缩放 + + + + StdViewDockUndockFullscreen + + Standard-View + 标准视图 + + + Document window + 文档窗口 + + + Display the active view either in fullscreen, in undocked or docked mode + 当前视图显示模式:1.全屏,2.不停靠,3.停靠 + + + + StdViewScreenShot + + Standard-View + 标准视图 + + + Save picture... + 保存图片... + + + Creates a screenshot of the active view + 创建当前视图的屏幕截图 + + + + StdViewZoomIn + + Standard-View + 标准视图 + + + Zoom In + 放大 + + + + StdViewZoomOut + + Standard-View + 标准视图 + + + Zoom Out + 缩小 + + + + Std_DrawStyle + + As is + 正如 + + + Normal mode + 普通模式 + + + Wireframe + 线框 + + + Wireframe mode + 线框模式 + + + + Std_ExportGraphviz + + Graphviz not found + 找不到Graphviz + + + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + 您的系统上找不到 Graphviz.您要指定其安装路径,如果已经安装了它? + + + Graphviz installation path + Graphviz的安装路径 + + + Dependency graph + 依赖关系图 + + + Graphviz failed + Graphviz 失败 + + + Graphviz failed to create an image file + Graphviz 创建图像失败 + + + + Workbench + + &File + 文件(&F) + + + &Edit + 编辑(&E) + + + Standard views + 标准视图 + + + &Stereo + 立体成像(&S) + + + &Zoom + 缩放(&Z) + + + Visibility + 可见性 + + + &View + 视图(&V) + + + &Tools + 工具(&T) + + + &Macro + 宏(&M) + + + &Windows + 窗口(&W) + + + &On-line help + 在线帮助(&O) + + + &Help + 帮助(&H) + + + File + 文件 + + + Macro + + + + View + 视图 + + + Special Ops + 特殊Ops + + + + testClass + + test + 测试 + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + + + Choose the style of the Task Panel + 选择任务面板的样式 + + + Default + 默认 + + + Windows XP + Windows XP + + + diff --git a/src/Gui/Language/FreeCAD_zh-TW.qm b/src/Gui/Language/FreeCAD_zh-TW.qm new file mode 100644 index 000000000..f9e65c6c4 Binary files /dev/null and b/src/Gui/Language/FreeCAD_zh-TW.qm differ diff --git a/src/Gui/Language/FreeCAD_zh-TW.ts b/src/Gui/Language/FreeCAD_zh-TW.ts new file mode 100644 index 000000000..9854daab6 --- /dev/null +++ b/src/Gui/Language/FreeCAD_zh-TW.ts @@ -0,0 +1,5821 @@ + + + + + Angle + + Form + 格式 + + + A: + A: + + + B: + B: + + + C: + C: + + + Angle Snap + 角度貼齊 + + + 1 ° + 1 ° + + + 2 ° + 2 ° + + + 5 ° + 5 ° + + + 10 ° + 10 ° + + + 20 ° + 20 ° + + + 45 ° + 45 ° + + + 90 ° + 90 ° + + + 180 ° + 180 ° + + + + Gui::AccelLineEdit + + none + + + + + Gui::ActionSelector + + Available: + 可用: + + + Selected: + 已選: + + + Add + 新增 + + + Remove + 移除 + + + Move up + 上移 + + + Move down + 下移 + + + + Gui::AlignmentView + + Movable object + 可移動物件 + + + Fixed object + 固定物件 + + + + Gui::BlenderNavigationStyle + + Press left mouse button + 按滑鼠左鍵 + + + Press SHIFT and middle mouse button + 按下 shift 鍵和滑鼠中鍵 + + + Press middle mouse button + 按滑鼠中鍵 + + + Scroll middle mouse button + 滾動滑鼠中鍵 + + + + Gui::CADNavigationStyle + + Press left mouse button + 按滑鼠左鍵 + + + Press middle mouse button + 按滑鼠中鍵 + + + Press left and middle mouse button + 按滑鼠左鍵和中鍵 + + + Scroll middle mouse button + 滾動滑鼠中鍵 + + + + Gui::Command + + Standard + 標準 + + + + Gui::ContainerDialog + + &OK + 確定(&O) + + + &Cancel + 取消(&C) + + + + Gui::ControlSingleton + + Task panel + 工作面板 + + + + Gui::Dialog::AboutApplication + + About + 關於 + + + Revision number + 修訂版次 + + + Version + 版本 + + + OK + 確定 + + + + + + + Release date + 發行日期 + + + Platform + 平臺 + + + License... + 許可證... + + + Copy to clipboard + 複製至剪貼簿 + + + + Gui::Dialog::ButtonModel + + Button %1 + 按鈕 %1 + + + Out Of Range + 超出範圍 + + + + Gui::Dialog::CommandModel + + Commands + 命令 + + + + Gui::Dialog::DemoMode + + View Turntable + 視景轉台 + + + Speed + 速度 + + + Maximum + 最大值 + + + Minimum + 最小值 + + + Fullscreen + 全螢幕 + + + Enable timer + 啟用計時器 + + + s + s + + + Angle + 角度 + + + 90° + 90° + + + -90° + -90° + + + Play + 播放 + + + Stop + 停止 + + + Close + 關閉 + + + + Gui::Dialog::DlgActivateWindow + + Choose Window + 選擇視窗 + + + &Activate + 啟動(&A) + + + Alt+A + Alt + A + + + &Cancel + 取消(&C) + + + + + + + + Gui::Dialog::DlgActivateWindowImp + + Windows + 視窗 + + + + Gui::Dialog::DlgAuthorization + + Authorization + 授權 + + + &OK + 確定(&O) + + + &Cancel + 取消(&C) + + + Password: + 密碼: + + + User name: + 使用者名稱: + + + + + + + + Gui::Dialog::DlgChooseIcon + + Choose Icon + 選擇圖示 + + + OK + 確定 + + + Cancel + 取消 + + + Add icons... + 添加圖示... + + + + Gui::Dialog::DlgCustomActions + + Macros + 巨集 + + + Setup Custom Macros + 設置自訂巨集 + + + Macro: + 巨集: + + + ... + ... + + + Pixmap + 點陣圖 + + + Accelerator: + 加速器: + + + What's this: + 這是什麼: + + + Status text: + 狀態文字: + + + Tool tip: + 工具提示: + + + Menu text: + 選項文字: + + + Add + 新增 + + + Remove + 移除 + + + Replace + 取代 + + + + Gui::Dialog::DlgCustomActionsImp + + Icons + 圖示 + + + Macros + 巨集 + + + No macro + 無巨集 + + + No macros found. + 找不到巨集 + + + Macro not found + 找不到巨集 + + + Sorry, couldn't find macro file '%1'. + 抱歉,找不到巨集檔案 '%1'。 + + + Empty macro + 空白巨集 + + + Please specify the macro first. + 請先指定巨集。 + + + Empty text + 空白文字 + + + Please specify the menu text first. + 請先指定選項文字。 + + + No item selected + 未選擇任何項目 + + + Please select a macro item first. + 請先選擇一個巨集項目。 + + + + Gui::Dialog::DlgCustomCommands + + Commands + 命令 + + + + + + + + Gui::Dialog::DlgCustomCommandsImp + + Category + 類別 + + + Icon + 圖示 + + + Command + 指令 + + + + Gui::Dialog::DlgCustomKeyboard + + Keyboard + 鍵盤 + + + Description: + 說明: + + + &Category: + 類別(&C): + + + C&ommands: + 指令(&O): + + + Current shortcut: + 目前快速鍵: + + + Press &new shortcut: + 設定新的快捷鍵(&N): + + + Currently assigned to: + 目前已分配給: + + + &Assign + 分配(&A) + + + Alt+A + Alt + A + + + &Reset + 重設(&R) + + + Alt+R + Alt+R + + + Re&set All + 全部重設(&S) + + + Alt+S + Alt+S + + + + + + + + Gui::Dialog::DlgCustomKeyboardImp + + Icon + 圖示 + + + Command + 指令 + + + none + + + + Multiple defined shortcut + 多重定義快捷鍵 + + + The shortcut '%1' is defined more than once. This could result into unexpected behaviour. + 該快捷鍵'%1'已定義超過一次。這可能導致意外的情況。 + + + Already defined shortcut + 已定義的快捷鍵 + + + The shortcut '%1' is already assigned to '%2'. + +Please define another shortcut. + 該快捷鍵'%1'已分配給'%2'。請另定義一組快捷鍵。 + + + + Gui::Dialog::DlgCustomToolBoxbarsImp + + Toolbox bars + 工具箱列 + + + + Gui::Dialog::DlgCustomToolbars + + Toolbars + 工具列 + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">注意:</span> 下次您載入合適的工作台時改變才會發生作用</p></body></html> + + + Move right + 向右移動 + + + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>移動所選項目向下一級。</b><p>這也將改變父項的級別。</p> + + + Move left + 左移 + + + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>移動選定的項目上一級。</b> <p>這也將改變父項的級別。 </p> + + + Move down + 下移 + + + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>向下移動所選的項目。</b><p>該項目將被移動至層級中。</p> + + + Move up + 上移 + + + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>向上移動所選的項目。</b><p>該項目將被移動至層級中。</p> + + + New... + 新增... + + + Rename... + 重新命名... + + + Delete + 刪除 + + + Icon + 圖示 + + + Command + 指令 + + + <Separator> + <分隔線> + + + New toolbar + 新工具列 + + + Toolbar name: + 工具列名稱: + + + Duplicated name + 重複的名稱 + + + The toolbar name '%1' is already used + '%1' 的工具列名稱已被使用 + + + Rename toolbar + 重新命名工具列 + + + + + + + + Gui::Dialog::DlgCustomizeImp + + Customize + 自訂 + + + &Help + &H説明 + + + &Close + 關閉(&C) + + + + Gui::Dialog::DlgCustomizeSpaceball + + Spaceball + Spaceball + + + No Spaceball Present + 無顯示Spaceball + + + Buttons + 按鈕 + + + Clear + 清除 + + + Print Reference + 列印參考 + + + + Gui::Dialog::DlgDisplayProperties + + Display properties + 顯示屬性 + + + Display + 顯示 + + + Transparency: + 透明度: + + + Line width: + 線寬: + + + Point size: + 點大小: + + + Material + 材料 + + + ... + ... + + + Close + 關閉 + + + Viewing mode + 瀏覽模式 + + + Plot mode: + 出圖模式: + + + + + + + Line transparency: + 線的透明度: + + + Line color: + 線條顏色: + + + Shape color: + 形狀的顏色: + + + Color plot: + 彩色: + + + Document window: + 檔案視窗: + + + + Gui::Dialog::DlgEditorSettings + + Editor + 編輯器 + + + Options + 選項 + + + Enable line numbers + 啟用行號 + + + Enable folding + 啟用折疊 + + + Indentation + 縮排 + + + Insert spaces + 插入空格 + + + Tab size: + 標籤尺寸: + + + Indent size: + 縮排尺寸: + + + Keep tabs + 保留字元符號 + + + Display Items + 顯示項目 + + + Family: + 家族: + + + Size: + 尺寸: + + + Preview: + 預覽: + + + + + + + + Gui::Dialog::DlgGeneral + + General + 一般 + + + Start up + 啟動 + + + Enable splash screen at start up + 在開啟時使用啟動畫面 + + + Switch to tab of report window: + 切換到報告視窗標籤: + + + Auto load module after start up: + 啟動後自動載入模組: + + + Language + 語言 + + + Change language: + 更改語言: + + + Main window + 主視窗 + + + Size of recent file list + 最近檔案清單尺寸 + + + Window style: + 視窗樣式: + + + Size of toolbar icons: + 工具列圖示尺寸: + + + + Gui::Dialog::DlgGeneralImp + + Default (%1 x %1) + 預設值 (%1 0x %1) + + + Small (%1 x %1) + 小 (%1 0x %1) + + + Large (%1 x %1) + 大 (%1 0x %1) + + + Extra large (%1 x %1) + 特大(%1 x %1) + + + + Gui::Dialog::DlgInputDialog + + Input + 輸入 + + + OK + 確定 + + + Cancel + 取消 + + + + + + + + Gui::Dialog::DlgInspector + + Scene Inspector + 場景檢查器 + + + + Gui::Dialog::DlgMacroExecute + + Execute macro + 執行巨集 + + + Macro name: + 巨集名稱: + + + Macro destination: + 巨集目標: + + + Execute + 執行 + + + Close + 關閉 + + + Create + 建立 + + + Delete + 刪除 + + + Edit + 編輯 + + + + Gui::Dialog::DlgMacroExecuteImp + + Macros + 巨集 + + + Macro file + 巨集檔案 + + + Enter a file name, please: + 請輸入檔案名稱: + + + Existing file + 現有檔案 + + + '%1'. +This file already exists. + '%1'.該檔案已存在。 + + + Delete macro + 刪除巨集 + + + Do you really want to delete the macro '%1'? + 您確定要刪除 '%1' 的巨集嗎? + + + Cannot create file + 無法創建檔案 + + + Creation of file '%1' failed. + 檔案 '%1' 創建失敗。 + + + + Gui::Dialog::DlgMacroRecord + + Macro recording + 巨集錄製 + + + Macro name: + 巨集名稱: + + + Stop + 停止 + + + Cancel + 取消 + + + Macro path: + 巨集路徑: + + + ... + ... + + + Record + 錄製 + + + + Gui::Dialog::DlgMacroRecordImp + + Macro recorder + 巨集錄製器 + + + Specify first a place to save. + 首先指定存檔位置。 + + + Existing macro + 現有的巨集 + + + The macro '%1' already exists. Do you want to overwrite? + 巨集 '%1' 已存在。是否要改寫? + + + The macro directory doesn't exist. Please, choose another one. + 巨集目錄不存在。請另選一個。 + + + Choose macro directory + 選擇巨集目錄 + + + + Gui::Dialog::DlgMaterialProperties + + Material properties + 材料特性 + + + &Close + 關閉(&C) + + + Alt+C + Alt+C + + + Material + 材料 + + + Diffuse color: + 外觀色彩: + + + Specular color: + 反射色彩: + + + Shininess: + 光澤度: + + + % + + + + Ambient color: + 環境色彩: + + + + + + + Emissive color: + 自發光顏色: + + + + Gui::Dialog::DlgOnlineHelp + + On-line help + 線上說明 + + + Help viewer + 説明檢視器 + + + Location of start page + 首頁位置 + + + + Gui::Dialog::DlgOnlineHelpImp + + HTML files (*.html *.htm) + HTML 檔 (*.html *.htm) + + + Access denied + 訪問被拒絕 + + + Access denied to '%1' + +Specify another directory, please. + 訪問'%1'被拒絕 + + + + Gui::Dialog::DlgParameter + + Parameter Editor + 參數編輯器 + + + Save to disk + 儲存到磁碟 + + + Alt+C + Alt+C + + + &Close + 關閉(&C) + + + + Gui::Dialog::DlgParameterImp + + Group + 群組 + + + Name + 名稱 + + + Type + 類型 + + + Value + + + + User parameter + 使用者參數 + + + Invalid input + 無效的輸入 + + + Invalid key name '%1' + 無效的鍵名'%1' + + + System parameter + 系統參數 + + + + Gui::Dialog::DlgPreferences + + Preferences + 偏好選項 + + + &Help + &H説明 + + + Alt+H + Alt+H + + + &OK + 確定(&O) + + + &Apply + 應用(&A) + + + Alt+A + Alt + A + + + &Cancel + 取消(&C) + + + + + + + + Gui::Dialog::DlgPreferencesImp + + Wrong parameter + 錯誤的參數 + + + + Gui::Dialog::DlgProjectInformation + + Project information + 專案資訊 + + + Information + 資訊 + + + &Name: + 名稱(&N): + + + Commen&t: + 意見(&T): + + + Path: + 路徑: + + + &Last modified by: + &L最後修改: + + + Created &by: + 創建者(&B): + + + Com&pany: + &P公司: + + + Last &modification date: + &m最後修改日期: + + + Creation &date: + &D建立日期: + + + &OK + 確定(&O) + + + &Cancel + 取消(&C) + + + + + + + + Gui::Dialog::DlgProjectUtility + + Project utility + 專案工具 + + + Extract project + 提取專案 + + + Source + 來源 + + + Project file (*.fcstd) + 專案檔(*.fcstd) + + + Destination + 目標 + + + Extract + 萃取 + + + Create project + 建立專案 + + + Document.xml + xml檔 + + + Create + 建立 + + + Load project file after creation + 於建立後載入專案 + + + Empty source + 無指定來源 + + + No source is defined. + 無指定來源 + + + Empty destination + 無目的地 + + + No destination is defined. + 未定義目的地 + + + + Gui::Dialog::DlgReportView + + Output window + 輸出視窗 + + + Output + 輸出 + + + Record log messages + 日誌記錄訊息 + + + Record warnings + 記錄警告 + + + Record error messages + 記錄錯誤訊息 + + + Colors + 顏色 + + + Normal messages: + 正常消息: + + + Log messages: + 日誌訊息: + + + Warnings: + 警告: + + + Errors: + 錯誤: + + + + + + + Redirect internal Python errors to report view + 將內部 Python 錯誤重定向到報表視景 + + + Redirect internal Python output to report view + 內部Python重新輸出至報告視圖 + + + + Gui::Dialog::DlgRunExternal + + Running external program + 執行外部程式 + + + TextLabel + 文字標籤 + + + Advanced >> + 進階 >> + + + ... + ... + + + Accept changes + 接受更改 + + + Discard changes + 放棄更改 + + + Abort program + 中止程式 + + + Help + 説明 + + + Select a file + 選擇一個檔案 + + + + Gui::Dialog::DlgSettings3DView + + 3D View + 3D視圖 + + + 3D View settings + 3D視圖設置 + + + Show coordinate system in the corner + 在角落顯示坐標系統 + + + Show counter of frames per second + 顯示每秒影格計數器 + + + Enable animation + 啟用動畫 + + + Enable anti-aliasing (slower) + 啟用消除鋸齒 (慢) + + + Eye to eye distance for stereo modes: + 立體聲模式左右兩眼間的距離 + + + Camera type + 相機類型 + + + Orthographic rendering + 正視圖角度的彩現 + + + Perspective rendering + 透視彩現 + + + + + + + 3D Navigation + 3D 導航 + + + Mouse... + 滑鼠... + + + Intensity of backlight + 背光強度 + + + Enable backlight color + 啟用背光顏色 + + + Orbit style + 環繞模式 + + + Turntable + 可旋轉 + + + Trackball + 軌跡球 + + + Invert zoom + 反相縮放 + + + Zoom at cursor + 游標處放大 + + + Zoom step + 縮放步驟 + + + + Gui::Dialog::DlgSettings3DViewImp + + %1 navigation + %1 導航 + + + + Gui::Dialog::DlgSettingsColorGradient + + Color model + 色彩模型 + + + &Gradient: + 漸層(&G): + + + red-yellow-green-cyan-blue + 紅-黃-綠-青-藍 + + + blue-cyan-green-yellow-red + 藍-青-綠-黃-紅 + + + white-black + 白-黑 + + + black-white + 黑-白 + + + Visibility + 可見性 + + + Out g&rayed + 外部&呈灰色 + + + Alt+R + Alt+R + + + Out &invisible + &外部不顯示 + + + Alt+I + Alt+I + + + Style + 風格 + + + &Zero + 零(&Z) + + + Alt+Z + Alt+Z + + + &Flow + &流程 + + + Alt+F + Alt+F + + + &OK + 確定(&O) + + + &Cancel + 取消(&C) + + + Parameter range + 參數範圍 + + + Mi&nimum: + &N最小化: + + + Ma&ximum: + &x最大化: + + + &Labels: + 標籤(&S): + + + &Decimals: + 小數(&D): + + + + + + + Color-gradient settings + 顏色-漸層設定 + + + + Gui::Dialog::DlgSettingsColorGradientImp + + Wrong parameter + 錯誤的參數 + + + The maximum value must be higher than the minimum value. + 最高值必須高於最低值。 + + + + Gui::Dialog::DlgSettingsDocument + + Document + 文件 + + + General + 一般 + + + Document save compression level +(0 = none, 9 = highest, 3 = default) + 儲存文件的壓縮級別(0 =無,9 =最高,3 =預設) + + + Create new document at start up + 啟動時創建新檔 + + + Storage + 儲存 + + + Saving transactions (Auto-save) + 儲存交易(自動儲存) + + + Discard saved transaction after saving document + 儲存文件後拋棄儲存的交易 + + + Save thumbnail into project file when saving document + 儲存文件時縮圖儲存到專案檔 + + + Create up to backup files when resaving document + 重新存檔時並建立備份檔案 + + + Document objects + 檔案物件 + + + Allow duplicate object labels in one document + 在一個檔案中允許重複的物件標籤 + + + Maximum Undo/Redo steps + 最大撤銷/重做步驟 + + + Using Undo/Redo on documents + 使用復元/重做於此檔案 + + + + Gui::Dialog::DlgSettingsEditorImp + + Text + 文字 + + + Bookmark + 書籤 + + + Breakpoint + 斷點 + + + Keyword + 關鍵字 + + + Comment + 評論 + + + Block comment + 阻止評論 + + + Number + 數目 + + + String + 字串 + + + Character + 字符 + + + Class name + 類別名稱 + + + Define name + 定義名稱 + + + Operator + 操作 + + + Python output + Python 輸出 + + + Python error + Python 錯誤 + + + Items + 項目 + + + Current line highlight + 強調此行 + + + + Gui::Dialog::DlgSettingsImage + + Image settings + 影像設定 + + + Image properties + 影像屬性 + + + Back&ground: + &G背景: + + + Current + 目前 + + + White + 白色 + + + Black + 黑色 + + + Transparent + 透明 + + + Image dimensions + 影像尺寸 + + + Pixel + 像素 + + + &Width: + 寬度(&W): + + + Current screen + 目前螢幕 + + + Icon 32 x 32 + 圖示 32 x 32 + + + Icon 64 x 64 + 圖示 64 × 64 + + + Icon 128 x 128 + 圖示 128x128 + + + CGA 320 x 200 + CGA 320 x 200 + + + QVGA 320 x 240 + QVGA 320 x 240 + + + VGA 640 x 480 + VGA 640 x 480 + + + NTSC 720 x 480 + NTSC 720 x 480 + + + PAL 768 x 578 + PAL 768 x 578 + + + SVGA 800 x 600 + SVGA 800 x 600 + + + XGA 1024 x 768 + XGA 1024 x 768 + + + HD720 1280 x 720 + HD720 1280 x 720 + + + SXGA 1280 x 1024 + SXGA 1280 x 1024 + + + SXGA+ 1400 x 1050 + SXGA + 1400 x 1050 + + + UXGA 1600 x 1200 + UXGA 1600 x 1200 + + + HD1080 1920 x 1080 + HD1080 1920 x 1080 + + + WUXGA 1920 x 1200 + WUXGA 1920 x 1200 + + + QXGA 2048 x 1538 + QXGA 2048 x 1538 + + + WQXGA 2560 x 1600 + WQXGA 2560 x 1600 + + + QSXGA 2560 x 2048 + QSXGA 2560 x 2048 + + + QUXGA 3200 × 2400 + QUXGA 3200 × 2400 + + + HUXGA 6400 × 4800 + HUXGA 6400 × 4800 + + + !!! 10000 x 10000 + !!!10000 × 10000 + + + Standard sizes: + 標準尺寸: + + + &Height: + 高度(&H): + + + Aspect ratio: + 長寬比: + + + &Screen + 螢幕(&S) + + + Alt+S + Alt+S + + + &4:3 + 4:3(&4) + + + Alt+4 + Alt + 4 + + + 1&6:9 + 16:9(&6) + + + Alt+6 + Alt+6 + + + &1:1 + 1:1(&1) + + + Alt+1 + Alt+1 + + + Image comment + 影像註解 + + + Insert MIBA + 插入MIBA + + + Insert comment + 插入評論 + + + + Gui::Dialog::DlgSettingsMacro + + Macro + 巨集 + + + Macro recording settings + 巨集錄製設定 + + + Logging Commands + 記錄命令 + + + Show script commands in python console + 在python控制台顯示腳本指令 + + + Log all commands issued by menus to file: + 記錄所有功能表所發出的指令檔: + + + FullScript.FCScript + FullScript.FCScript + + + Gui commands + Gui 指令 + + + Recording GUI commands + 錄製 GUI 指令 + + + Record as comment + 記錄為評論 + + + Macro path + 巨集路徑 + + + General macro settings + 一般巨集設定 + + + Run macros in local environment + 於此環境執行巨集 + + + + Gui::Dialog::DlgSettingsUnits + + Units + 單位 + + + Units settings + 單位設定 + + + Standard (mm/kg/s/degree) + 標準(mm/kg/s/degree) + + + MKS (m/kg/s/degree) + MKS (m/kg/s/度) + + + Magnitude + 等級 + + + Unit + 單位 + + + User system: + 使用者系統: + + + Imperial (in/lb) + 英制(吋/磅) + + + + Gui::Dialog::DlgSettingsViewColor + + Colors + 顏色 + + + Selection + 選擇 + + + Enable selection highlighting + 啟用選擇突出顯示 + + + Enable preselection highlighting + 啟用強調預選 + + + Background color + 背景顏色 + + + Middle color + 中間色 + + + Color gradient + 顏色漸層 + + + Simple color + 簡單顏色 + + + Default colors + 預設顏色 + + + Edited edge color + 已編輯的邊顏色 + + + Edited vertex color + 已編輯的頂點顏色 + + + Construction geometry + 構造幾何 + + + Fully constrained geometry + 完全約束的幾何 + + + The color of vertices being edited + 頂點色彩已被編輯 + + + The color of edges being edited + 邊緣色彩正在編輯中 + + + The color of construction geometry in edit mode + 編輯模式中構造幾何之顏色 + + + The color of fully constrained geometry in edit mode + 編輯模式中完全約束幾何之顏色 + + + Cursor text color + 游標文字色彩 + + + Default shape color + 預設物件色彩 + + + The default color for new shapes + 新物件預設色彩 + + + Default line width and color + 預設線寬及色彩 + + + The default line color for new shapes + 新物件之預設線條色彩 + + + The default line thickness for new shapes + 新物件之預設線寬 + + + px + px + + + + Gui::Dialog::DlgTipOfTheDay + + Tip of the day + 每日提示 + + + <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> + <b><font face="Times New Roman"><font size="+3">你知道嗎...</font></font></b> + + + &Show tips at start up + 啟動時顯示提示(&S) + + + Alt+S + Alt+S + + + &Next Tip + 下一個提示(&N) + + + Alt+N + Alt+N + + + &Close + 關閉(&C) + + + Alt+C + Alt+C + + + + + + + + Gui::Dialog::DlgTipOfTheDayImp + + Download failed: %1 + + 下載失敗:%1 + + + If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. + 如果您想瞭解更多有關 FreeCAD 您必須到 %1,或按説明功能表中的説明項目。 + + + + Gui::Dialog::DockablePlacement + + Placement + 佈置 + + + + Gui::Dialog::DownloadDialog + + Download + 下載 + + + Cancel + 取消 + + + Close + 關閉 + + + There already exists a file called %1 in the current directory. Overwrite? + 於此位置已有%1檔案,是否覆寫? + + + Unable to save the file %1: %2. + 無法下載檔案%1:%2 + + + Downloading %1. + %1下載中 + + + Download canceled. + 取消下載 + + + Download failed: %1. + 下載失敗: %1。 + + + Downloaded %1 to current directory. + 下載%1於目前位置 + + + + Gui::Dialog::IconDialog + + Add icon + 添加圖示 + + + + Gui::Dialog::InputVector + + Input vector + 輸入向量 + + + Vector + 向量 + + + Z: + Z: + + + Y: + Y: + + + X: + X: + + + OK + 確定 + + + + Gui::Dialog::LicenseDialog + + Copyright + 版權 + + + + Gui::Dialog::MouseButtons + + Mouse buttons + 滑鼠按鈕 + + + Configuration + 配置 + + + Selection: + 選擇: + + + Panning + 平移 + + + Rotation: + 旋轉: + + + Zooming: + 縮放: + + + + Gui::Dialog::ParameterGroup + + Expand + 展開 + + + Add sub-group + 新增子群組 + + + Remove group + 移除群組 + + + Rename group + 重命名群組 + + + Export parameter + 匯出參數 + + + Import parameter + 匯入參數 + + + Collapse + 瓦解 + + + Do really want to remove this parameter group? + 確定要移除此參數群組嗎? + + + Existing sub-group + 現有子群組 + + + The sub-group '%1' already exists. + 子群組'%1'已經存在。 + + + Export parameter to file + 匯出參數到檔案 + + + XML (*.FCParam) + XML (*.FCParam) + + + Import parameter from file + 從檔案中匯入參數 + + + Import Error + 匯入錯誤 + + + Reading from '%1' failed. + 讀取'%1'失敗。 + + + + Gui::Dialog::ParameterValue + + Change value + 變更值 + + + Remove key + 移除鍵 + + + Rename key + 重命名鍵 + + + New + 新增 + + + New string item + 新增字串項目 + + + New float item + 新增浮點項目 + + + New integer item + 新增整數項目 + + + New unsigned item + 新的無符號項目 + + + New Boolean item + 新增布林項目 + + + Existing item + 現有項目 + + + The item '%1' already exists. + 該項目'%1'已存在。 + + + + Gui::Dialog::Placement + + Placement + 佈置 + + + OK + 確定 + + + Translation: + 翻譯: + + + Z: + Z: + + + Y: + Y: + + + X: + X: + + + Rotation: + 旋轉: + + + Angle: + 角度: + + + Axis: + 軸: + + + Center: + 中心: + + + Pitch: + 俯仰: + + + Roll: + 滾轉: + + + Yaw: + 偏航: + + + Rotation axis with angle + 依角度旋轉軸線 + + + Euler angles + 歐拉角 + + + Apply placement changes immediately + 立即應用位置的變更 + + + Apply incremental changes to object placement + 應用增量變更於物件位置 + + + Apply + 應用 + + + Reset + 重設 + + + Close + 關閉 + + + + Gui::Dialog::PrintModel + + Button + 按鈕 + + + Command + 指令 + + + + Gui::Dialog::SceneInspector + + Dialog + 對話方塊 + + + Close + 關閉 + + + Refresh + 重新整理 + + + + Gui::Dialog::SceneModel + + Inventor Tree + 發明人目錄 + + + Nodes + 節點 + + + + Gui::Dialog::TextureMapping + + Texture + 材質 + + + Texture mapping + 材質貼圖 + + + Global + 全局的 + + + Environment + 環境 + + + Image files (%1) + 影像檔 (%1) + + + No image + 無影像 + + + The specified file is not a valid image file. + 指定的檔案不是有效的影像檔。 + + + No 3d view + 沒有 3d 視景 + + + No active 3d view found. + 找不到作用中的 3d 視景。 + + + + Gui::Dialog::Transform + + Cancel + 取消 + + + Transform + 轉換 + + + + Gui::DlgTreeWidget + + Dialog + 對話方塊 + + + Items + 項目 + + + OK + 確定 + + + Cancel + 取消 + + + + + + + + Gui::DockWnd::CombiView + + CombiView + 組合檢視 + + + Project + 專案 + + + Tasks + 任務 + + + + Gui::DockWnd::HelpView + + Previous + 上一步 + + + Next + 下一步 + + + Home + 首頁 + + + Open + 開啟 + + + Open file + 開啟檔案 + + + All HTML files (*.html *.htm) + 所有 HTML檔案(*.html *.htm) + + + External browser + 外部瀏覽器 + + + No external browser found. Specify in preferences, please + 沒有找到外部瀏覽器,請在選項指定 + + + Starting of %1 failed + 啟動 %1 失敗 + + + + Gui::DockWnd::PropertyDockView + + Property View + 屬性檢視 + + + + Gui::DockWnd::ReportOutput + + Logging + 登錄 + + + Warning + 警告 + + + Error + 錯誤 + + + Options + 選項 + + + Clear + 清除 + + + Save As... + 另存新檔... + + + Save Report Output + 儲存報表輸出 + + + Plain Text Files (*.txt *.log) + 純文字檔 (*.txt *.log) + + + Go to end + 至最末端 + + + Redirect Python output + Python輸出重新指定 + + + Redirect Python errors + 重定向Python的錯誤 + + + + Gui::DockWnd::ReportView + + Output + 輸出 + + + Python console + Python 控制台 + + + + Gui::DockWnd::SelectionView + + Property View + 屬性檢視 + + + + Gui::DockWnd::TaskPanelView + + Task View + 任務檢視 + + + + Gui::DockWnd::TextBrowser + + Could not open file. + 無法開啟檔案。 + + + You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. + 您試圖訪問的位址 %1 目前無法使用。請確認該 URL 存在,並嘗試重新載入頁面。 + + + Connecting to %1 + 連接到 %1 + + + Sending to %1 + 傳送到 %1 + + + Reading from %1 + 讀取 %1 + + + Download failed: %1. + 下載失敗: %1。 + + + Previous + 上一步 + + + Forward + 前進 + + + Home + 首頁 + + + Refresh + 重新整理 + + + Copy + 複製 + + + Select all + 全選 + + + No description for + 沒有說明 + + + + Gui::DocumentModel + + Application + 應用程式 + + + Labels & Attributes + 標籤和屬性 + + + + Gui::EditorView + + Modified file + 已修改檔案 + + + %1. + +This has been modified outside of the source editor. Do you want to reload it? + %1. + +這已在源碼編輯器之外被修改過。您想重新載入它嗎? + + + Unsaved document + 未儲存文件 + + + The document has been modified. +Do you want to save your changes? + 該文件已被修改。您想儲存您的變更嗎? + + + FreeCAD macro (*.FCMacro);;Python (*.py) + FreeCAD巨集(*.FCMacro);;的Python(*.PY) + + + Export PDF + 匯出 PDF + + + PDF file (*.pdf) + PDF檔(*.PDF) + + + untitled[*] + 未命名[*] + + + - Editor + -編輯器 + + + %1 chars removed + 移除 %1 字元 + + + %1 chars added + 添加 %1 字元 + + + Formatted + 格式化了的 + + + + Gui::FileChooser + + Select a file + 選擇一個檔案 + + + Select a directory + 選擇一個目錄 + + + + Gui::FileDialog + + Save as + 另存新檔 + + + Open + 開啟 + + + + Gui::FileOptionsDialog + + Extended + 延伸的 + + + All files (*.*) + 所有檔案(*.*) + + + + Gui::Flag + + Top left + 左上 + + + Bottom left + 左下 + + + Top right + 右上 + + + Bottom right + 右下 + + + Remove + 移除 + + + + Gui::InventorNavigationStyle + + Press CTRL and left mouse button + 請按 ctrl 鍵和滑鼠左鍵 + + + Press middle mouse button + 按滑鼠中鍵 + + + Press left mouse button + 按滑鼠左鍵 + + + Scroll middle mouse button + 滾動滑鼠中鍵 + + + + Gui::LocationDialog + + Wrong direction + 錯誤的方向 + + + Direction must not be the null vector + 方向不可為空向量 + + + X + X + + + Y + Y + + + Z + Z + + + User defined... + 使用者定義... + + + + Gui::LocationWidget + + X: + X: + + + Y: + Y: + + + Z: + Z: + + + Direction: + 方向: + + + + Gui::MacroCommand + + Macros + 巨集 + + + + Gui::MainWindow + + Dimension + 標註 + + + Ready + 就緒 + + + Toggles this toolbar + 切換此工具列 + + + Toggles this dockable window + 切換此可停靠的視窗 + + + Close All + 全部關閉 + + + + Gui::ManualAlignment + + Manual alignment + 手動對齊 + + + The alignment is already in progress. + 正在對齊中 + + + Alignment[*] + 對齊[*] + + + Please, select at least one point in the left and the right view + 請於左和右視圖至少選擇一點 + + + Please, select at least %1 points in the left and the right view + 請於左和右視圖至少選擇%1點 + + + Please pick points in the left and right view + 請於左和右視圖中選擇點 + + + The alignment has finished + 已對齊結束 + + + The alignment has been canceled + 已取消對齊 + + + Too few points picked in the left view. At least %1 points are needed. + 左側視圖選擇點過少,至少要%1點 + + + Too few points picked in the right view. At least %1 points are needed. + 右側視圖選擇點過少,至少要%1點 + + + Different number of points picked in left and right view. +On the left view %1 points are picked, +on the right view %2 points are picked. + 左右視圖所選點數不同,左側視圖選擇%1點,右側視圖選擇%2點 + + + Try to align group of views + 嘗試對齊視圖群組 + + + The alignment failed. +How do you want to proceed? + 無法對齊,您要如何進行? + + + Retry + 重試 + + + Ignore + 忽略 + + + Abort + 關於 + + + Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. + 左右視圖所選點數不同 + + + Point picked at (%1,%2,%3) + 選取點(%1,%2,%3) + + + No point was picked + 無選定點 + + + + Gui::NetworkRetriever + + Download started... + + 下載開始 ... + + + + Gui::ProgressBar + + Remaining: %1 + 剩餘: %1 + + + Aborting + 中止 + + + Do you really want to abort the operation? + 您確實要中止操作嗎? + + + + Gui::ProgressDialog + + Remaining: %1 + 剩餘: %1 + + + Aborting + 中止 + + + Do you really want to abort the operation? + 您確實要中止操作嗎? + + + + Gui::PropertyEditor::PropertyModel + + Property + 屬性 + + + Value + + + + + Gui::PropertyView + + View + 檢視 + + + Data + 資料 + + + + Gui::PythonConsole + + System exit + 離開系統 + + + The application is still running. +Do you want to exit without saving your data? + 該程式仍在執行, +您要離開而不儲存資料嗎? + + + Python console + Python 控制台 + + + Unhandled PyCXX exception. + 未處理 PyCXX例外。 + + + Unhandled FreeCAD exception. + 未處理FreeCAD例外。 + + + Unhandled unknown C++ exception. + 未處理未知的C++例外。 + + + &Copy command + 複製指令(&C) + + + &Copy history + 複製歷史(&C) + + + Save history as... + 另存歷史為新檔... + + + Insert file name... + 插入檔案名稱... + + + Save History + 儲存歷史記錄 + + + Macro Files (*.FCMacro *.py) + 巨集檔案 (*.FCMacro *.py) + + + Insert file name + 插入檔案名稱 + + + All Files (*.*) + 所有檔 (*.*) + + + Python Input Dialog + Python輸入對話框 + + + Unhandled std C++ exception. + 未處理的標準 c + + 異常。 + + + Word wrap + 自動換行 + + + &Copy + 複製(&C) + + + &Paste + &貼上 + + + Select All + 全選 + + + Clear console + 清除工作台 + + + + Gui::PythonEditor + + Comment + 評論 + + + Uncomment + 取消註釋 + + + + Gui::PythonInputField + + OK + 確定 + + + Clear + 清除 + + + + Gui::RecentFilesAction + + Open file %1 + 打開檔案 %1 + + + File not found + 找不到檔案 + + + The file '%1' cannot be opened. + 無法打開'%1'檔案。 + + + + Gui::SelectModule + + Select module + 選擇模組 + + + Open %1 as + 開啟%1為 + + + Select + 選擇 + + + + Gui::StdCmdDescription + + Help + 説明 + + + Des&cription + &C描述 + + + Long description of commands + 詳述命令 + + + + Gui::StdCmdDownloadOnlineHelp + + Help + 説明 + + + Download online help + 下載線上說明 + + + Download %1's online help + 下載 %1 的線上說明 + + + Non-existing directory + 非現有目錄 + + + The directory '%1' does not exist. + +Do you want to specify an existing directory? + 目錄 '%1' 不存在。您想指定現有的目錄嗎? + + + Missing permission + 缺少權限 + + + You don't have write permission to '%1' + +Do you want to specify another directory? + 您沒有寫入 '%1' 的權限,您要指定其他目錄嗎? + + + Stop downloading + 停止下載 + + + + Gui::StdCmdPythonHelp + + Tools + 工具 + + + Python Modules + Python 模組 + + + Opens a browser to show the Python modules + 由瀏覽器顯示Python模組 + + + + Gui::TaskBoxAngle + + Angle + 角度 + + + + Gui::TaskBoxPosition + + Position + 位置 + + + + Gui::TaskView::TaskAppearance + + Plot mode: + 出圖模式: + + + Point size: + 點大小: + + + Line width: + 線寬: + + + Transparency: + 透明度: + + + Appearance + 外觀 + + + Document window: + 檔案視窗: + + + + Gui::TaskView::TaskEditControl + + Edit + 編輯 + + + + Gui::TaskView::TaskSelectLinkProperty + + Appearance + 外觀 + + + ... + ... + + + edit selection + 編輯所選物件 + + + + Gui::TouchpadNavigationStyle + + Press left mouse button + 按滑鼠左鍵 + + + Press SHIFT button + 使用SHIFT按鈕 + + + Press ALT button + 使用ALT按鈕 + + + Press PgUp/PgDown button + 使用PgUp/PgDown按鈕 + + + + Gui::TreeDockWidget + + Tree view + 樹狀選單 + + + + Gui::TreeWidget + + Create group... + 創建群組... + + + Create a group + 創建一個群組 + + + Group + 群組 + + + Rename + 重新命名 + + + Rename object + 重新命名物件 + + + Labels & Attributes + 標籤和屬性 + + + Application + 應用程式 + + + Finish editing + 完成編輯 + + + Finish editing object + 完成編輯物件 + + + Activate document + 啟動檔案 + + + Activate document %1 + 啟動檔案 %1 + + + + Gui::View3DInventor + + Export PDF + 匯出 PDF + + + PDF file (*.pdf) + PDF檔(*.PDF) + + + + Gui::WorkbenchGroup + + Select the '%1' workbench + 選擇 '%1' 工作台 + + + + Position + + Form + 格式 + + + X: + X: + + + Y: + Y: + + + Z: + Z: + + + 0.1 mm + 0.1 mm + + + 0.5 mm + 0.5 mm + + + 1 mm + 1 mm + + + 2 mm + 2 mm + + + 5 mm + 5 mm + + + 10 mm + 10 mm + + + 20 mm + 20 mm + + + 50 mm + 50 mm + + + 100 mm + 100 mm + + + 200 mm + 200 mm + + + 500 mm + 500 mm + + + 1 m + 1 m + + + 2 m + 2 m + + + 5 m + 5 m + + + Grid Snap in + 貼齊網格 + + + + QDockWidget + + Tree view + 樹狀選單 + + + Property view + 屬性檢視 + + + Selection view + 選擇視圖 + + + Report view + 報表檢視 + + + Task View + 任務檢視 + + + Combo View + 複合檢視 + + + Toolbox + 工具箱 + + + Python console + Python 控制台 + + + Display properties + 顯示屬性 + + + + QObject + + General + 一般 + + + Display + 顯示 + + + Unknown filetype + 未知檔案類型 + + + Cannot open unknown filetype: %1 + 無法開啟未知文件類型:%1 + + + Cannot save to unknown filetype: %1 + 無法儲存為未知的檔案類型:%1 + + + Workbench failure + 工作台故障 + + + %1 + %1 + + + Unable to launch Qt Assistant (%1) + 無法啟動 Qt 助理 (%1) + + + Exception + 異常 + + + Open document + 開啟文件 + + + Import file + 匯入檔案 + + + Export file + 匯出檔案 + + + Printing... + 列印... + + + Cannot load workbench + 無法載入工作平台 + + + A general error occurred while loading the workbench + 載入工作平台出現一般錯誤 + + + Save views... + 保存視圖... + + + Load views... + 載入視圖... + + + Freeze view + 凍結視圖 + + + Clear views + 清除視圖 + + + Restore view &%1 + 還原視圖 &%1 + + + Save frozen views + 保存凍結的視圖 + + + Frozen views (*.cam) + 凍結試圖(*.cam) + + + Restore views + 還原試圖 + + + Importing the restored views would clear the already stored views. +Do you want to continue? + 導入恢復的視圖將清除已存儲的視圖。您要繼續嗎? + + + Restore frozen views + 還原凍結的視圖 + + + Cannot open file '%1'. + 無法開啟檔案'%1' + + + Docked + 停靠 + + + Undocked + 未嵌入 + + + Fullscreen + 全螢幕 + + + files + 檔案 + + + Save picture + 儲存圖片 + + + New sub-group + 新的分組 + + + Enter the name: + 輸入名稱: + + + New text item + 新增文字項 + + + Enter your text: + 輸入您的文字: + + + New integer item + 新增整數項目 + + + Enter your number: + 輸入您的號碼: + + + New unsigned item + 新的無符號項目 + + + New float item + 新增浮點項目 + + + New Boolean item + 新增布林項目 + + + Choose an item: + 選擇一個項目: + + + Rename group + 重命名群組 + + + The group '%1' cannot be renamed. + '%1'群組法重新命名 + + + Existing group + 現有群組 + + + The group '%1' already exists. + 該群組'%1'已存在。 + + + Change value + 變更值 + + + Save document under new filename... + 以新檔名儲存文件 + + + Saving aborted + 終止存檔 + + + Unsaved document + 未儲存文件 + + + Save document before close? + 關閉之前先存檔? + + + Save Macro + 儲存巨集 + + + Finish + 結束 + + + Clear + 清除 + + + Cancel + 取消 + + + Inner + 內部 + + + Outer + 外部 + + + No Browser + 無瀏覽器 + + + Unable to open your browser. + +Please open a browser window and type in: http://localhost:%1. + 無法打開您的流覽器。請打開流覽器視窗,並在鍵入: http://localhost:%1。 + + + No Server + 沒有伺服器 + + + Unable to start the server to port %1: %2. + 無法啟動伺服器埠 %1:%2。 + + + Unable to open your system browser. + 無法打開您的系統瀏覽器。 + + + Options... + 選項 ... + + + Out of memory + 記憶體不足 + + + Not enough memory available to display the data. + 沒有足夠的記憶體可用來顯示資料。 + + + Cannot find file %1 + 找不到檔案%1 + + + Cannot find file %1 neither in %2 nor in %3 + 在%2與%3中找不到檔案 %1 + + + Save %1 Document + 儲存文件 %1 + + + %1 document (*.FCStd) + %1文件(*.FCStd) + + + Save As + 另存為 + + + %1 already exists. +Do you want to replace it? + %1檔案已經存在.要取代它嗎? + + + Document not closable + 文件無法關閉 + + + The document is not closable for the moment. + 目前文件無法關閉 + + + No OpenGL + 不使用OoenGL + + + This system does not support OpenGL + 此系統不支援OpenGL + + + Help + 説明 + + + Unable to load documentation. +In order to load it Qt 4.4 or higher is required. + 無法載入此檔案,其需要Qt4.4或以上版本 + + + %1 Help + %1 的説明 + + + Exporting PDF... + 匯出 PDF... + + + Wrong selection + 錯誤的選取 + + + Only one object selected. Please select two objects. +Be aware the point where you click matters. + 僅選擇一個物件,請選擇兩個物件,請注意您所點物件之何點 + + + Please select two objects. +Be aware the point where you click matters. + 請選擇兩個物件,請注意您所點物件之何點 + + + New boolean item + 新布林項目 + + + Navigation styles + 導航模式 + + + %1 navigation + %1 導航 + + + Move annotation + 移動標註 + + + Transform + 轉換 + + + The document is in editing mode and thus cannot be closed for the moment. +You either have to finish or cancel the editing in the task panel. + 您需要於工作列中結束或取消編輯,否則無法關閉於編輯模式中之檔案 + + + + StdBoxSelection + + Standard-View + 標準視景 + + + Box selection + 窗選 + + + + StdCmdAbout + + Help + 説明 + + + &About %1 + 關於 %1(&A) + + + About %1 + 關於%1 + + + + StdCmdAboutQt + + Help + 説明 + + + About &Qt + 關於 Qt(&Q) + + + About Qt + 關於 Qt + + + + StdCmdActivateNextWindow + + Window + 視窗 + + + Ne&xt + 下一個(&X) + + + Activate next window + 啟動下一個視窗 + + + + StdCmdActivatePrevWindow + + Window + 視窗 + + + Pre&vious + 前一個(&V) + + + Activate previous window + 啟動前一個視窗 + + + + StdCmdAlignment + + Edit + 編輯 + + + Alignment... + 對齊... + + + Align the selected objects + 對齊選定物件 + + + + StdCmdArrangeIcons + + Window + 視窗 + + + Arrange &Icons + 排列圖示(&I) + + + Arrange Icons + 排列圖示 + + + + StdCmdAxisCross + + Standard-View + 標準視景 + + + Toggle axis cross + 切換軸交錯 + + + + StdCmdCascadeWindows + + Window + 視窗 + + + &Cascade + 重疊顯示(&C) + + + Tile pragmatic + 實用背景 + + + + StdCmdCloseActiveWindow + + Window + 視窗 + + + Cl&ose + &關閉 + + + Close active window + 關閉使用中視窗 + + + + StdCmdCloseAllWindows + + Window + 視窗 + + + Close Al&l + 全部關閉(&L) + + + Close all windows + 關閉所有視窗 + + + + StdCmdCommandLine + + Tools + 工具 + + + Start command &line... + 啟動指令和列(&L)... + + + Opens the command line in the console + 在主控台中開啟指令列 + + + + StdCmdCopy + + Edit + 編輯 + + + C&opy + 複製(&C) + + + Copy operation + 複製操作 + + + + StdCmdCut + + Edit + 編輯 + + + &Cut + 剪下(&C) + + + Cut out + 切出 + + + + StdCmdDelete + + Edit + 編輯 + + + &Delete + 刪除(&D) + + + Deletes the selected objects + 刪除所選的物件 + + + + StdCmdDemoMode + + Standard-View + 標準視景 + + + View turntable... + 可旋轉視圖... + + + View turntable + 可旋轉視圖 + + + + StdCmdDlgCustomize + + Tools + 工具 + + + Cu&stomize... + 自訂(&S)... + + + Customize toolbars and command bars + 自訂工具列和指令列 + + + + StdCmdDlgMacroExecute + + Macros ... + 巨集... + + + Opens a dialog to let you execute a recorded macro + 打開一個對話框,讓您執行所錄製的巨集 + + + Macro + 巨集 + + + + StdCmdDlgMacroExecuteDirect + + Macro + 巨集 + + + Execute macro + 執行巨集 + + + Execute the macro in the editor + 在編輯器中執行巨集 + + + + StdCmdDlgMacroRecord + + &Macro recording ... + 巨集錄製(&M)... + + + Opens a dialog to record a macro + 打開一個對話框,錄製巨集 + + + Macro + 巨集 + + + + StdCmdDlgParameter + + Tools + 工具 + + + E&dit parameters ... + 編輯參數(&D)... + + + Opens a Dialog to edit the parameters + 打開一個對話框來編輯參數 + + + + StdCmdDlgPreferences + + Tools + 工具 + + + &Preferences ... + 偏好選項(&P)... + + + Opens a Dialog to edit the preferences + 打開一個對話框以編輯偏好選項 + + + + StdCmdDockViewMenu + + View + 檢視 + + + Vie&ws + 檢視(&W) + + + Toggles this window + 切換此視窗 + + + + StdCmdDrawStyle + + Standard-View + 標準視景 + + + Draw style + 繪製樣式 + + + + StdCmdDuplicateSelection + + Edit + 編輯 + + + Duplicate selection + 複製選定物件 + + + Put duplicates of the selected objects to the active document + 於目前文件中貼上所複製之物件 + + + + StdCmdEdit + + Edit + 編輯 + + + Toggle &Edit mode + 切換&編輯模式 + + + Toggles the selected object's edit mode + 切換所選的物件的編輯模式 + + + Enters or leaves the selected object's edit mode + 進入或離開所選的物件的編輯模式 + + + + StdCmdExport + + File + 檔案 + + + &Export... + 匯出(&E) + + + Export an object in the active document + 從作用檔案中匯出物件 + + + No selection + 未選取 + + + Please select first the objects you want to export. + 請選擇您想輸出之第一個物件 + + + + StdCmdExportGraphviz + + Tools + 工具 + + + Dependency graph... + 關係圖... + + + Show the dependency graph of the objects in the active document + 顯示目前文件中物件相依圖 + + + + StdCmdFeatRecompute + + File + 檔案 + + + &Recompute + 重新計算(&R) + + + Recompute feature or document + 重新計算功能或文件 + + + + StdCmdFreeCADWebsite + + Help + 説明 + + + FreeCAD Website + FreeCAD網站 + + + The FreeCAD website + FreeCAD 網站 + + + + StdCmdFreezeViews + + Standard-View + 標準視景 + + + Freeze display + 凍結顯示 + + + Freezes the current view position + 凍結當前視景的位置 + + + + StdCmdHideObjects + + Standard-View + 標準視景 + + + Hide all objects + 隱藏所有物件 + + + Hide all objects in the document + 隱藏檔案中的所有物件 + + + + StdCmdHideSelection + + Standard-View + 標準視景 + + + Hide selection + 隱藏選取內容 + + + Hide all selected objects + 隱藏所有選取的物件 + + + + StdCmdImport + + File + 檔案 + + + &Import... + 匯入(&I) + + + Import a file in the active document + 於作用檔案中匯入檔案 + + + Supported formats + 支援的格式 + + + All files (*.*) + 所有檔案(*.*) + + + + StdCmdMacroStartDebug + + Macro + 巨集 + + + Debug macro + 除錯 + + + Start debugging of macro + 開始除錯 + + + + StdCmdMacroStepOver + + Macro + 巨集 + + + Step over + 跨越 + + + + StdCmdMacroStopDebug + + Macro + 巨集 + + + Stop debugging + 停止除錯 + + + Stop debugging of macro + 停止巨集除錯 + + + + StdCmdMacroStopRecord + + Macro + 巨集 + + + S&top macro recording + 停止巨集錄製(&T) + + + Stop the macro recording session + 停止巨集錄製時間 + + + + StdCmdMeasureDistance + + View + 檢視 + + + Measure distance + 測量距離 + + + + StdCmdMeasurementSimple + + Tools + 工具 + + + Measures distance between two selected objects + 測量兩個選定物件之間的距離 + + + Measure distance + 測量距離 + + + + StdCmdMergeProjects + + File + 檔案 + + + Merge project... + 合併專案... + + + Merge project + 合併專案 + + + %1 document (*.fcstd) + %1 檔案(*.fcstd) + + + Cannot merge project with itself. + 不能合併專案本身。 + + + + StdCmdNew + + File + 檔案 + + + &New + 開新檔案(&N) + + + Create a new empty document + 創建一個新的空白檔案 + + + + StdCmdOnlineHelp + + Help + 説明 + + + Show help to the application + 顯示應用程式的説明 + + + + StdCmdOnlineHelpWebsite + + Help + 説明 + + + Help Website + 説明網站 + + + The website where the help is maintained + 說明的網站在進行維護 + + + + StdCmdOpen + + File + 檔案 + + + &Open... + 開啟(&O)... + + + Open a document or import files + 開啟文件或匯入檔案 + + + Supported formats + 支援的格式 + + + All files (*.*) + 所有檔案(*.*) + + + + StdCmdPaste + + Edit + 編輯 + + + &Paste + &貼上 + + + Paste operation + 粘貼操作 + + + + StdCmdPlacement + + Edit + 編輯 + + + Placement... + 放置... + + + Place the selected objects + 放置所選物件 + + + + StdCmdPrint + + File + 檔案 + + + &Print... + 列印(&P)... + + + Print the document + 列印文件 + + + + StdCmdPrintPdf + + File + 檔案 + + + &Export PDF... + 匯出PDF(&E)... + + + Export the document as PDF + 將文件匯出為 PDF + + + + StdCmdPrintPreview + + File + 檔案 + + + &Print preview... + &預覽列印 + + + Print the document + 列印文件 + + + Print preview + 預覽列印 + + + + StdCmdProjectInfo + + File + 檔案 + + + Project i&nformation... + 專案訊息(&N)... + + + Show details of the currently active project + 顯示目前活動中專案的詳細資訊 + + + + StdCmdProjectUtil + + Tools + 工具 + + + Project utility... + 專案工具... + + + Utility to extract or create project files + 讀取或建立專案檔之功能 + + + + StdCmdPythonWebsite + + Help + 説明 + + + Python Website + Python網站 + + + The official Python website + Python官方網站 + + + + StdCmdQuit + + File + 檔案 + + + E&xit + 退出(&E) + + + Quits the application + 退出應用程式 + + + + StdCmdRandomColor + + File + 檔案 + + + Random color + 隨機顏色 + + + + StdCmdRecentFiles + + File + 檔案 + + + Recent files + 最近使用的檔案 + + + Recent file list + 最近檔案清單 + + + + StdCmdRedo + + Edit + 編輯 + + + &Redo + 重作(&R) + + + Redoes a previously undone action + 重做上次撤銷的操作 + + + + StdCmdRefresh + + Edit + 編輯 + + + &Refresh + 重新整理 + + + Recomputes the current active document + 重新計算當前作用的檔案 + + + + StdCmdSave + + File + 檔案 + + + &Save + 儲存(&S) + + + Save the active document + 儲存作用中檔案 + + + + StdCmdSaveAs + + File + 檔案 + + + Save &As... + 另存新檔(&A)... + + + Save the active document under a new file name + 將作用中檔案以新的檔名儲存 + + + + StdCmdSceneInspector + + Tools + 工具 + + + Scene inspector... + 場景檢查器... + + + Scene inspector + 場景檢查器 + + + + StdCmdSelectAll + + Edit + 編輯 + + + Select &All + 全選(&A) + + + Select all + 全選 + + + + StdCmdSetAppearance + + Standard-View + 標準視景 + + + Appearance... + 外觀... + + + Sets the display properties of the selected object + 設置所選物件的顯示屬性 + + + + StdCmdShowObjects + + Standard-View + 標準視景 + + + Show all objects + 顯示所有物件 + + + Show all objects in the document + 在檔案中顯示所有物件 + + + + StdCmdShowSelection + + Standard-View + 標準視景 + + + Show selection + 顯示選取內容 + + + Show all selected objects + 顯示所有選取的物件 + + + + StdCmdStatusBar + + View + 檢視 + + + Status bar + 狀態列 + + + Toggles the status bar + 切換狀態列 + + + + StdCmdTextureMapping + + Tools + 工具 + + + Texture mapping... + 紋理映射... + + + Texture mapping + 材質貼圖 + + + + StdCmdTileWindows + + Window + 視窗 + + + &Tile + 並排(&T) + + + Tile the windows + 並排視窗 + + + + StdCmdToggleBreakpoint + + Macro + 巨集 + + + Toggle breakpoint + 切換中斷點 + + + + StdCmdToggleClipPlane + + Standard-View + 標準視景 + + + Clipping plane + 裁剪平面 + + + Toggles clipping plane for active view + 為目前視圖切換剪裁面板 + + + + StdCmdToggleNavigation + + Standard-View + 標準視景 + + + Toggle navigation/Edit mode + 切換導航/編輯模式 + + + Toggle between navigation and edit mode + 導航和編輯模式之間切換 + + + + StdCmdToggleObjects + + Standard-View + 標準視景 + + + Toggle all objects + 切換所有物件 + + + Toggles visibility of all objects in the active document + 切換顯示活動文檔中的所有物件的可見性 + + + + StdCmdToggleSelectability + + Standard-View + 標準視景 + + + Toggle selectability + 切換可能選項 + + + Toggles the property of the objects to get selected in the 3D-View + 切換物件性質於3D視圖中選取 + + + + StdCmdToggleVisibility + + Standard-View + 標準視景 + + + Toggle visibility + 切換可見性 + + + Toggles visibility + 切換可見性 + + + + StdCmdToolBarMenu + + View + 檢視 + + + Tool&bars + 工具列(&B) + + + Toggles this window + 切換此視窗 + + + + StdCmdTransform + + Edit + 編輯 + + + Transform... + 變換... + + + Transform the geometry of selected objects + 所選物件的幾何變換 + + + + StdCmdTreeSelection + + View + 檢視 + + + Go to selection + 進行選擇 + + + Scroll to first selected item + 滾動到第一個選擇的項目 + + + + StdCmdUndo + + Edit + 編輯 + + + &Undo + 復原(&U) + + + Undo exactly one action + 完全撤消一個動作 + + + + StdCmdUserInterface + + View + 檢視 + + + Dock views + 停泊視圖 + + + Dock all top-level views + 停泊所有頂層的視圖 + + + + StdCmdViewAxo + + Standard-View + 標準視景 + + + Axometric + 等角圖 + + + Set to axometric view + 設為等角視圖 + + + + StdCmdViewBottom + + Standard-View + 標準視景 + + + Bottom + 底部 + + + Set to bottom view + 設置為底部視圖 + + + + StdCmdViewCreate + + Standard-View + 標準視景 + + + Create new view + 創建新視圖 + + + Creates a new view window for the active document + 創建活動文檔的一個新視圖視窗 + + + + StdCmdViewExample1 + + Standard-View + 標準視景 + + + Inventor example #1 + 創作範例 #1 + + + Shows a 3D texture with manipulator + 顯示3D紋理及控制面板 + + + + StdCmdViewExample2 + + Standard-View + 標準視景 + + + Inventor example #2 + 創作範例 #2 + + + Shows spheres and drag-lights + 顯示範圍和拖燈 + + + + StdCmdViewExample3 + + Standard-View + 標準視景 + + + Inventor example #3 + 創作範例 #3 + + + Shows a animated texture + 顯示動畫的紋理 + + + + StdCmdViewFitAll + + Standard-View + 標準視景 + + + Fit all + 顯示全部 + + + Fits the whole content on the screen + 在螢幕上容納整個內容 + + + + StdCmdViewFitSelection + + Standard-View + 標準視景 + + + Fit selection + 顯示所選區域 + + + Fits the selected content on the screen + 顯示所選內容於螢幕 + + + + StdCmdViewFront + + Standard-View + 標準視景 + + + Front + 前視圖 + + + Set to front view + 設置為前視圖 + + + + StdCmdViewIvIssueCamPos + + Standard-View + 標準視景 + + + Issue camera position + 設置攝影位置 + + + Issue the camera position to the console and to a macro, to easily recall this position + 於控制台及巨集中紀錄攝影機位置,以方便回復 + + + + StdCmdViewIvStereoInterleavedColumns + + Standard-View + 標準視景 + + + Stereo Interleaved Columns + 立體插入列 + + + Switch stereo viewing to Interleaved Columns + 轉換立體視圖為行交錯 + + + + StdCmdViewIvStereoInterleavedRows + + Standard-View + 標準視景 + + + Stereo Interleaved Rows + 立體列交錯 + + + Switch stereo viewing to Interleaved Rows + 轉換立體視圖為列交錯 + + + + StdCmdViewIvStereoOff + + Standard-View + 標準視景 + + + Stereo Off + 關閉立體影像 + + + Switch stereo viewing off + 關閉立體影像 + + + + StdCmdViewIvStereoQuadBuff + + Standard-View + 標準視景 + + + Stereo quad buffer + 四組立體緩衝功能 + + + Switch stereo viewing to quad buffer + 轉換立體視圖為四組緩衝功能 + + + + StdCmdViewIvStereoRedGreen + + Standard-View + 標準視景 + + + Stereo red/green + 立體紅/綠 + + + Switch stereo viewing to red/green + 轉換立體視圖為紅/綠 + + + + StdCmdViewLeft + + Standard-View + 標準視景 + + + Left + + + + Set to left view + 設置為左視圖 + + + + StdCmdViewRear + + Standard-View + 標準視景 + + + Rear + + + + Set to rear view + 設置為後視圖 + + + + StdCmdViewRight + + Standard-View + 標準視景 + + + Right + + + + Set to right view + 設置為右視圖 + + + + StdCmdViewRotateLeft + + Standard-View + 標準視景 + + + Rotate Left + 向左旋轉 + + + Rotate the view by 90° counter-clockwise + 逆時針旋轉視圖90° + + + + StdCmdViewRotateRight + + Standard-View + 標準視景 + + + Rotate Right + 向右旋轉 + + + Rotate the view by 90° clockwise + 依順時針旋轉視圖90° + + + + StdCmdViewTop + + Standard-View + 標準視景 + + + Top + + + + Set to top view + 設置為上視圖 + + + + StdCmdWhatsThis + + Help + 説明 + + + &What's This? + 這是什麼(&W)? + + + What's This + 這是什麼 + + + + StdCmdWindows + + Window + 視窗 + + + &Windows... + 視窗(&W) + + + Windows list + 視窗清單 + + + + StdCmdWindowsMenu + + Window + 視窗 + + + Activates this window + 啟動此視窗 + + + + StdCmdWorkbench + + View + 檢視 + + + Workbench + 工作台 + + + Switch between workbenches + 工作台之間切換 + + + + StdOrthographicCamera + + Standard-View + 標準視景 + + + Orthographic view + 正交視景 + + + Switches to orthographic view mode + 切換到正交視景模式 + + + + StdPerspectiveCamera + + Standard-View + 標準視景 + + + Perspective view + 透視視景 + + + Switches to perspective view mode + 切換到透視視景模式 + + + + StdViewBoxZoom + + Standard-View + 標準視景 + + + Box zoom + 框選縮放 + + + + StdViewDockUndockFullscreen + + Standard-View + 標準視景 + + + Document window + 檔案視窗 + + + Display the active view either in fullscreen, in undocked or docked mode + 無論是在全螢幕,在浮動式或固定式的模式中均顯示當前視景 + + + + StdViewScreenShot + + Standard-View + 標準視景 + + + Save picture... + 儲存圖片 ... + + + Creates a screenshot of the active view + 創建當前視景的截圖 + + + + StdViewZoomIn + + Standard-View + 標準視景 + + + Zoom In + 放大 + + + + StdViewZoomOut + + Standard-View + 標準視景 + + + Zoom Out + 縮小 + + + + Std_DrawStyle + + As is + 如同 + + + Normal mode + 正常模式 + + + Wireframe + 線框 + + + Wireframe mode + 線框模式 + + + + Std_ExportGraphviz + + Graphviz not found + 未發現Graphviz + + + Graphviz couldn't be found on your system. +Do you want to specify its installation path if it's already installed? + 於您的系統上未發現Graphviz,若已有安裝,您要指定安裝位置嗎? + + + Graphviz installation path + Graphviz安裝路徑 + + + Dependency graph + 關係圖 + + + Graphviz failed + Graphviz錯誤 + + + Graphviz failed to create an image file + Graphviz建立影像失敗 + + + + Workbench + + &File + 檔案(&F) + + + &Edit + 編輯(&E) + + + Standard views + 標準視景 + + + &Stereo + 立體聲(&S) + + + &Zoom + 縮放(&Z) + + + Visibility + 可見性 + + + &View + 檢視(&V) + + + &Tools + 工具(&T) + + + &Macro + &巨集 + + + &Windows + 視窗(&W) + + + &On-line help + 線上說明(&O) + + + &Help + &H説明 + + + File + 檔案 + + + Macro + 巨集 + + + View + 檢視 + + + Special Ops + 特別行動 + + + + testClass + + test + 測試 + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> + + + Choose the style of the Task Panel + 選擇任務面板的樣式 + + + Default + 預設 + + + Windows XP + Windows XP + + + diff --git a/src/Gui/Language/FreeCAD_zh.ts b/src/Gui/Language/FreeCAD_zh.ts deleted file mode 100644 index 42b80a62e..000000000 --- a/src/Gui/Language/FreeCAD_zh.ts +++ /dev/null @@ -1,5902 +0,0 @@ - - - - - Angle - - Form - 窗体 - - - A: - A: - - - B: - B: - - - C: - C: - - - Angle Snap - 角度捕捉 - - - 1 ° - 1 ° - - - 2 ° - 2 ° - - - 5 ° - 5 ° - - - 10 ° - 10 ° - - - 20 ° - 20 ° - - - 45 ° - 45 ° - - - 90 ° - 90 ° - - - 180 ° - 180 ° - - - - Gui::AccelLineEdit - - none - - - - - Gui::ActionSelector - - Available: - - - - Selected: - - - - Add - 添加 - - - Remove - 删除 - - - Move up - 上移 - - - Move down - 下移 - - - - Gui::AlignmentView - - Movable object - - - - Fixed object - - - - - Gui::BlenderNavigationStyle - - Press left mouse button - 按鼠标左键 - - - Press SHIFT and middle mouse button - 按SHIFT和鼠标中键 - - - Press middle mouse button - 按鼠标中键 - - - Scroll middle mouse button - 滚动鼠标中键 - - - - Gui::CADNavigationStyle - - Press left mouse button - 按鼠标左键 - - - Press middle mouse button - 按鼠标中键 - - - Press left and middle mouse button - 按鼠标左键和中键 - - - Scroll middle mouse button - 滚动鼠标中键 - - - - Gui::Command - - Standard - 标准 - - - - Gui::ContainerDialog - - &OK - 确定(&O) - - - &Cancel - 取消(&C) - - - - Gui::ControlSingleton - - Task panel - 任务面板 - - - - Gui::Dialog::AboutApplication - - About - 关于 - - - Revision number - 修订号 - - - Version - 版本 - - - OK - 确定 - - - - 关于 - - - Release date - 发布日期 - - - Platform - 平台 - - - License... - 许可... - - - Copy to clipboard - - - - - Gui::Dialog::ButtonModel - - Button %1 - 按钮 %1 - - - Out Of Range - 超出范围 - - - - Gui::Dialog::CommandModel - - Commands - 命令 - - - - Gui::Dialog::DemoMode - - View Turntable - 视图罗盘 - - - Speed - 速度 - - - Maximum - 最大值 - - - Minimum - 最小值 - - - Fullscreen - 全屏 - - - Enable timer - 启用计时器 - - - s - s - - - Angle - 角度 - - - 90° - 90° - - - -90° - -90° - - - Play - 播放 - - - Stop - 停止 - - - Close - 关闭 - - - - Gui::Dialog::DlgActivateWindow - - Choose Window - 选择窗口 - - - &Activate - 激活(&A) - - - Alt+A - Alt+A - - - &Cancel - 取消(&C) - - - - 关于 - - - - Gui::Dialog::DlgActivateWindowImp - - Windows - 窗口 - - - - Gui::Dialog::DlgAuthorization - - Authorization - 身份验证 - - - &OK - 确定(&O) - - - &Cancel - 取消(&C) - - - Password: - 密码: - - - User name: - 用户名: - - - - 关于 - - - - Gui::Dialog::DlgChooseIcon - - Choose Icon - 选择图标 - - - OK - 确定 - - - Cancel - 取消 - - - Add icons... - 添加图标... - - - - Gui::Dialog::DlgCustomActions - - Macros - - - - Setup Custom Macros - 设置自定义宏 - - - Macro: - 宏: - - - ... - ... - - - Pixmap - 位图 - - - Accelerator: - 快捷键: - - - What's this: - 这是什么: - - - Status text: - 状态文字: - - - Tool tip: - 工具提示: - - - Menu text: - 菜单文本: - - - Add - 添加 - - - Remove - 删除 - - - Replace - 替换 - - - - Gui::Dialog::DlgCustomActionsImp - - Icons - 图标 - - - Macros - - - - No macro - 无宏定义 - - - No macros found. - 未发现宏. - - - Macro not found - 未找到宏 - - - Sorry, couldn't find macro file '%1'. - 对不起,无法找到宏文件 '%1'. - - - Empty macro - 空白宏 - - - Please specify the macro first. - 请先指定宏. - - - Empty text - 空文本 - - - Please specify the menu text first. - 请先指定菜单文本. - - - No item selected - 未选中对象 - - - Please select a macro item first. - 请先选择一个宏项目. - - - - Gui::Dialog::DlgCustomCommands - - Commands - 命令 - - - - 关于 - - - - Gui::Dialog::DlgCustomCommandsImp - - Category - 类别 - - - Icon - 图标 - - - Command - 命令 - - - - Gui::Dialog::DlgCustomKeyboard - - Keyboard - 键盘 - - - Description: - 说明: - - - &Category: - 分类(&C): - - - C&ommands: - 命令(&C): - - - Current shortcut: - 当前快捷键: - - - Press &new shortcut: - 按下新快捷键(&N): - - - Currently assigned to: - 当前分配给: - - - &Assign - 分配(&A) - - - Alt+A - Alt+A - - - &Reset - 重置(&R) - - - Alt+R - Alt+R - - - Re&set All - 全部重设(&S) - - - Alt+S - Alt+S - - - - 关于 - - - - Gui::Dialog::DlgCustomKeyboardImp - - Icon - 图标 - - - Command - 命令 - - - none - - - - Multiple defined shortcut - 多重定义快捷键 - - - The shortcut '%1' is defined more than once. This could result into unexpected behaviour. - 快捷键'%1'不唯一.这将导致不可预料的结果. - - - Already defined shortcut - 已定义快捷键 - - - The shortcut '%1' is already assigned to '%2'. - -Please define another shortcut. - 快捷键'%1'已经分配给了'%2'. -请重新定义. - - - - Gui::Dialog::DlgCustomToolBoxbarsImp - - Toolbox bars - 工具条 - - - - Gui::Dialog::DlgCustomToolbars - - Toolbars - 工具栏 - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> The changes become active the next time you load the appropriate workbench</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Note:</span> 改动将在你下一次加载工作台时生效</p></body></html> - - - Move right - 右移 - - - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>移动选中对象到下一层级.</b><p>这将同时改变父级对象.</p> - - - Move left - 左移 - - - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>移动选中对象到上一层级.</b><p>这将同时改变父级对象.</p> - - - Move down - 下移 - - - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>下移选中对象.</b><p>仅在层级中移动.</p> - - - Move up - 上移 - - - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>上移选中对象.</b><p>仅在层级中移动.</p> - - - New... - 新建... - - - Rename... - 重命名... - - - Delete - 删除 - - - Icon - 图标 - - - Command - 命令 - - - <Separator> - <分隔符> - - - New toolbar - 新建工具栏 - - - Toolbar name: - 工具栏名称: - - - Duplicated name - 重复命名 - - - The toolbar name '%1' is already used - 工具栏名称'%1'已被使用 - - - Rename toolbar - 重命名工具栏 - - - - 关于 - - - - Gui::Dialog::DlgCustomizeImp - - Customize - 自定义 - - - &Help - 帮助(&H) - - - &Close - 关闭(&C) - - - - Gui::Dialog::DlgCustomizeSpaceball - - Spaceball - 轨迹球 - - - No Spaceball Present - 当前无轨迹球 - - - Buttons - 按钮 - - - Clear - 清除 - - - Print Reference - Print Reference - - - - Gui::Dialog::DlgDisplayProperties - - Display properties - 显示属性 - - - Display - 显示 - - - Transparency: - 透明度: - - - Line width: - 线宽: - - - Point size: - 点大小: - - - Material - 材质 - - - ... - ... - - - Close - 关闭 - - - Viewing mode - 查看模式 - - - Display mode: - 显示模式: - - - Plot mode: - 绘制模式: - - - - 关于 - - - Line transparency: - 线条透明度: - - - Line color: - 线条颜色: - - - Shape color: - 形状颜色: - - - Color plot: - Color plot: - - - Document window: - - - - - Gui::Dialog::DlgEditorSettings - - Editor - 编辑器 - - - Options - 选项 - - - Enable line numbers - 启用行号 - - - Enable folding - 启用折叠 - - - Indentation - 缩进 - - - Insert spaces - 插入空格 - - - Tab size: - 制表符长度: - - - Indent size: - 缩进大小: - - - Keep tabs - 保留制表符 - - - Display Items - 显示项目 - - - Family: - 字体族: - - - Size: - 大小: - - - Preview: - 预览: - - - - 关于 - - - - Gui::Dialog::DlgGeneral - - General - 常规 - - - Start up - 启动 - - - Enable splash screen at start up - 打开软件启动界面 - - - Switch to tab of report window: - 切换到报告窗口标签: - - - Auto load module after start up: - 启动后自动加载模块: - - - Language - 语言 - - - Change language: - 更改语言: - - - Main window - 主窗口 - - - Size of recent file list - 最近文件列表大小 - - - Window style: - 窗口风格: - - - Size of toolbar icons: - 工具栏图标大小: - - - - Gui::Dialog::DlgGeneralImp - - Default (%1 x %1) - 默认(%1 x %1) - - - Small (%1 x %1) - 小(%1 x %1) - - - Large (%1 x %1) - 大(%1 x %1) - - - Extra large (%1 x %1) - 特大(%1 x %1) - - - - Gui::Dialog::DlgInputDialog - - Input - 输入 - - - OK - 确定 - - - Cancel - 取消 - - - - 关于 - - - - Gui::Dialog::DlgInspector - - Scene Inspector - 场景检索 - - - - Gui::Dialog::DlgMacroExecute - - Execute macro - 执行宏 - - - Macro name: - 宏名称: - - - Macro destination: - 宏目录: - - - Execute - 执行 - - - Close - 关闭 - - - Create - 创建 - - - Delete - 删除 - - - Edit - 编辑 - - - - Gui::Dialog::DlgMacroExecuteImp - - Macros - - - - Macro file - 宏文件 - - - Enter a file name, please: - 请输入文件名称: - - - Existing file - 已存在文件 - - - '%1'. -This file already exists. - '%1'. -此文件已经存在. - - - Delete macro - 删除宏 - - - Do you really want to delete the macro '%1'? - 你真的要删除宏'%1'? - - - Cannot create file - 无法创建文件 - - - Creation of file '%1' failed. - 文件 '%1' 创建失败. - - - - Gui::Dialog::DlgMacroRecord - - Macro recording - 宏录制 - - - Macro name: - 宏名称: - - - Stop - 停止 - - - Cancel - 取消 - - - Macro path: - 宏路径: - - - ... - ... - - - Record - 录制 - - - - Gui::Dialog::DlgMacroRecordImp - - Macro recorder - 宏记录器 - - - Specify first a place to save. - 首先指定保存位置. - - - Existing macro - 已有的宏 - - - The macro '%1' already exists. Do you want to overwrite? - 宏'%1'已经存在.是否要覆盖? - - - The macro directory doesn't exist. Please, choose another one. - 宏目录不存在.请重新选择. - - - Choose macro directory - 选择宏目录 - - - - Gui::Dialog::DlgMaterialProperties - - Material properties - 材质属性 - - - &Close - 关闭(&C) - - - Alt+C - Alt+C - - - Material - 材质 - - - Diffuse color: - 漫射颜色: - - - Specular color: - 高光颜色: - - - Shininess: - 反光度: - - - % - % - - - Ambient color: - 环境色: - - - - 关于 - - - Emissive color: - 发光颜色: - - - - Gui::Dialog::DlgOnlineHelp - - On-line help - 联机帮助 - - - Help viewer - 帮助阅读器 - - - Location of start page - 起始页的位置 - - - - Gui::Dialog::DlgOnlineHelpImp - - HTML files (*.html *.htm) - HTML文件(*.html *.htm) - - - Access denied - 拒绝访问 - - - Access denied to '%1' - -Specify another directory, please. - 访问'%1'被拒绝,请指定另一个目录. - - - - Gui::Dialog::DlgParameter - - Parameter Editor - 参数编辑器 - - - Save to disk - 保存到磁盘 - - - Alt+C - Alt+C - - - &Close - 关闭(&C) - - - - Gui::Dialog::DlgParameterImp - - Group - - - - Name - 名称 - - - Type - 类型 - - - Value - - - - User parameter - 用户参数 - - - Invalid input - 输入无效 - - - Invalid key name '%1' - 无效的键名'%1' - - - System parameter - 系统参数 - - - - Gui::Dialog::DlgPreferences - - Preferences - 首选项 - - - &Help - 帮助(&H) - - - Alt+H - Alt+H - - - &OK - 确定(&O) - - - &Apply - 应用(&A) - - - Alt+A - Alt+A - - - &Cancel - 取消(&C) - - - - 关于 - - - - Gui::Dialog::DlgPreferencesImp - - Wrong parameter - 参数错误 - - - - Gui::Dialog::DlgProjectInformation - - Project information - 项目信息 - - - Information - 信息 - - - &Name: - 名称(&N): - - - Commen&t: - 注释(&T): - - - Path: - 路径: - - - &Last modified by: - 上次修改(&L): - - - Created &by: - 作者(&B): - - - Com&pany: - 公司(&p): - - - Last &modification date: - 最后修改日期(&M): - - - Creation &date: - 创建日期(&D): - - - &OK - 确定(&O) - - - &Cancel - 取消(&C) - - - - 关于 - - - - Gui::Dialog::DlgProjectUtility - - Project utility - 项目工具 - - - Extract project - 提取项目 - - - Source - 来源 - - - Project file (*.fcstd) - 项目文件(*.fcstd) - - - Destination - 目标 - - - Extract - 提取 - - - Create project - 创建项目 - - - Document.xml - Document.xml - - - Create - 创建 - - - Load project file after creation - 创建项目文件后即加载 - - - Empty source - 来源为空 - - - No source is defined. - 未定义来源. - - - Empty destination - 目标为空 - - - No destination is defined. - 未定义目标. - - - - Gui::Dialog::DlgReportView - - Output window - 输出窗口 - - - Output - 输出 - - - Record log messages - 记录日志 - - - Record warnings - 记录警告 - - - Record error messages - 记录错误 - - - Colors - 颜色 - - - Normal messages: - 正常的消息: - - - Log messages: - 日志信息: - - - Warnings: - 警告: - - - Errors: - 错误: - - - - 关于 - - - Redirect internal Python errors to report view - Python的错误重定向到报告浏览器 - - - Redirect internal Python output to report view - 内部Python输出重定向至报表浏览器 - - - - Gui::Dialog::DlgRunExternal - - Running external program - 运行外部程序 - - - TextLabel - 文本标签 - - - Advanced >> - 高级 >> - - - ... - ... - - - Accept changes - 接受更改 - - - Discard changes - 放弃修改 - - - Abort program - 终止程序 - - - Help - 帮助 - - - Select a file - 选择一个文件 - - - - Gui::Dialog::DlgSettings3DView - - 3D View - 3D 视图 - - - 3D View settings - 3D 视图设置 - - - Show coordinate system in the corner - 坐标系统显示在边角 - - - Show counter of frames per second - 显示每秒运行帧数 - - - Enable animation - 启用动画 - - - Enable anti-aliasing (slower) - 启用抗锯齿(慢) - - - Eye to eye distance for stereo modes: - 立体模式的双眼距离: - - - Camera type - 相机类型 - - - Orthographic rendering - 等轴侧渲染 - - - Perspective rendering - 透视渲染 - - - - 关于 - - - 3D Navigation - 3D 导航 - - - Mouse... - 鼠标... - - - Intensity of backlight - 背光强度 - - - Enable backlight color - 启用背光颜色 - - - Orbit style - 导航模式 - - - Turntable - 转盘 - - - Trackball - 轨迹球 - - - Invert zoom - 反向缩放 - - - Zoom at cursor - - - - Zoom step - - - - - Gui::Dialog::DlgSettings3DViewImp - - %1 navigation - %1 导航 - - - - Gui::Dialog::DlgSettingsColorGradient - - Color model - 颜色模式 - - - &Gradient: - 渐变(&G): - - - red-yellow-green-cyan-blue - 红-黄-绿-青-蓝 - - - blue-cyan-green-yellow-red - 蓝-青-绿-黄-红 - - - white-black - 白黑 - - - black-white - 黑白 - - - Visibility - 可见性 - - - Out g&rayed - 灰度(&R) - - - Alt+R - Alt+R - - - Out &invisible - 不可见(&I) - - - Alt+I - Alt+I - - - Style - 样式 - - - &Zero - 零 (&Z) - - - Alt+Z - Alt+Z - - - &Flow - 流(&F) - - - Alt+F - Alt+F - - - &OK - 确定(&O) - - - &Cancel - 取消(&C) - - - Parameter range - 参数范围 - - - Mi&nimum: - 最小值(&N): - - - Ma&ximum: - 最大值(&X): - - - &Labels: - 标签(&L): - - - &Decimals: - 小数位数(&D): - - - - 关于 - - - Color-gradient settings - 颜色渐变设置 - - - - Gui::Dialog::DlgSettingsColorGradientImp - - Wrong parameter - 参数错误 - - - The maximum value must be higher than the minimum value. - 最大值必须大于最小值. - - - - Gui::Dialog::DlgSettingsDocument - - Document - 文档 - - - General - 常规 - - - Document save compression level -(0 = none, 9 = highest, 3 = default) - 保存文件的压缩级别(0 = 无,9 = 最高,3 = 默认) - - - Create new document at start up - 启动时创建新文档 - - - Storage - 存储 - - - Saving transactions (Auto-save) - 保存交互记录(自动保存) - - - Discard saved transaction after saving document - 保存文件后放弃保存历史记录 - - - Save thumbnail into project file when saving document - 保存文件时同时保存缩略图到项目文件 - - - Create up to backup files when resaving document - 重新保存文件时创建备份 - - - Document objects - 文档对象 - - - Allow duplicate object labels in one document - 在一个文档中允许重复的对象标签 - - - Maximum Undo/Redo steps - 最大撤消/重做步数 - - - Using Undo/Redo on documents - 在文档上使用撤消/重做 - - - - Gui::Dialog::DlgSettingsEditorImp - - Text - 文本 - - - Bookmark - 书签 - - - Breakpoint - 断点 - - - Keyword - 关键字 - - - Comment - 注释 - - - Block comment - 块注释 - - - Number - - - - String - 字符串 - - - Character - 字符 - - - Class name - 类名称 - - - Define name - 定义名称 - - - Operator - 运算符 - - - Python output - Python 输出 - - - Python error - Python 错误 - - - Items - 项目 - - - Current line highlight - - - - - Gui::Dialog::DlgSettingsImage - - Image settings - 图像设置 - - - Image properties - 图片属性 - - - Back&ground: - 背景(&G): - - - Current - 当前 - - - White - 白色 - - - Black - 黑色 - - - Transparent - 透明 - - - Image dimensions - 图像大小 - - - Pixel - 像素 - - - &Width: - 宽度(&W): - - - Current screen - 当前屏幕 - - - Icon 32 x 32 - 图标32x32 - - - Icon 64 x 64 - 图标64x62 - - - Icon 128 x 128 - 图标128x128 - - - CGA 320 x 200 - CGA 320x320 - - - QVGA 320 x 240 - QVGA 320x240 - - - VGA 640 x 480 - VGA 640x480 - - - NTSC 720 x 480 - NTSC 720x480 - - - PAL 768 x 578 - PAL 768x578 - - - SVGA 800 x 600 - SVGA 800x600 - - - XGA 1024 x 768 - XGA 1024x768 - - - HD720 1280 x 720 - HD720 1280 x 720 - - - SXGA 1280 x 1024 - SXGA 1280 x 1024 - - - SXGA+ 1400 x 1050 - SXGA+ 1400 x 1050 - - - UXGA 1600 x 1200 - UXGA 1600 x 1200 - - - HD1080 1920 x 1080 - HD1080 1920 x 1080 - - - WUXGA 1920 x 1200 - WUXGA 1920 x 1200 - - - QXGA 2048 x 1538 - QXGA 2048 x 1538 - - - WQXGA 2560 x 1600 - WQXGA 2560 x 1600 - - - QSXGA 2560 x 2048 - QSXGA 2560 x 2048 - - - QUXGA 3200 × 2400 - QUXGA 3200 × 2400 - - - HUXGA 6400 × 4800 - HUXGA 6400 × 4800 - - - !!! 10000 x 10000 - !!! 10000 x 10000 - - - Standard sizes: - 标准尺寸: - - - &Height: - 高度(&H): - - - Aspect ratio: - 高宽比: - - - &Screen - 屏幕(&S) - - - Alt+S - Alt+S - - - &4:3 - &4:3 - - - Alt+4 - Alt+4 - - - 1&6:9 - 1&6:9 - - - Alt+6 - Alt+6 - - - &1:1 - &1:1 - - - Alt+1 - Alt+1 - - - Image comment - 图像备注 - - - Insert MIBA - 插入 MIBA - - - Insert comment - 插入批注 - - - - Gui::Dialog::DlgSettingsMacro - - Macro - - - - Macro recording settings - 宏录制设置 - - - Logging Commands - 记录命令 - - - Show script commands in python console - 在Python控制台显示脚本 - - - Log all commands issued by menus to file: - 记录所有菜单执行命令到文件: - - - FullScript.FCScript - FullScript.FCScript - - - Gui commands - GUI命令 - - - Recording GUI commands - 记录GUI命令 - - - Record as comment - 录制为注释 - - - Macro path - 宏路径 - - - General macro settings - - - - Run macros in local environment - - - - - Gui::Dialog::DlgSettingsUnits - - Units - 单位 - - - Units settings - 单位设置 - - - Standard (mm/kg/s/degree) - 标准(mm/kg/s/degree) - - - MKS (m/kg/s/degree) - 公制(m/kg/s/degree) - - - Magnitude - 量纲 - - - Unit - 单位 - - - User system: - 用户系统: - - - Imperial (in/lb) - 英制 (in/lb) - - - - Gui::Dialog::DlgSettingsViewColor - - Colors - 颜色 - - - Selection - 选择 - - - Enable selection highlighting - 启用选择高亮 - - - Enable preselection highlighting - 启用预选高亮 - - - Background color - 背景颜色 - - - Middle color - 中间色 - - - Color gradient - 渐变颜色 - - - Simple color - 简单颜色 - - - Default colors - 默认颜色 - - - Edited edge color - Edited edge color - - - Edited vertex color - Edited vertex color - - - Construction geometry - 构造几何体 - - - Fully constrained geometry - 完全约束几何体 - - - The color of construction geometry in editmode - 编辑模式下构造几何体的颜色 - - - The color of fully constrained geometry in editmode - 编辑模式下完全约束几何体的颜色 - - - The color of vertices being edited - 编辑状态顶点的颜色 - - - The color of edges being edited - The color of edges being edited - - - The color of construction geometry in edit mode - - - - The color of fully constrained geometry in edit mode - - - - Cursor text color - - - - Default shape color - - - - The default color for new shapes - - - - Default line width and color - - - - The default line color for new shapes - - - - The default line thickness for new shapes - - - - px - - - - - Gui::Dialog::DlgTipOfTheDay - - Tip of the day - 每日一帖 - - - <b><font face="Times New Roman"><font size="+3">Did you know...</font></font></b> - <b><font face="Times New Roman"><font size="+3">你知道么...</font></font></b> - - - &Show tips at start up - 启动时提示(&S) - - - Alt+S - Alt+S - - - &Next Tip - 下一个(&N) - - - Alt+N - Alt+N - - - &Close - 关闭(&C) - - - Alt+C - Alt+C - - - - 关于 - - - - Gui::Dialog::DlgTipOfTheDayImp - - Download failed: %1 - - 下载失败: %1 - - - - If you want to learn more about FreeCAD you must go to %1 or press the Help item in the Help menu. - 如果您想了解更多有关FreeCAD,请访问 %1 或点击帮助菜单中的帮助文件. - - - - Gui::Dialog::DockablePlacement - - Placement - 定位 - - - - Gui::Dialog::DownloadDialog - - Canceled. - 取消. - - - Download - - - - Cancel - 取消 - - - Close - 关闭 - - - There already exists a file called %1 in the current directory. Overwrite? - - - - Unable to save the file %1: %2. - - - - Downloading %1. - - - - Download canceled. - - - - Download failed: %1. - 下载失败: %1. - - - Downloaded %1 to current directory. - - - - - Gui::Dialog::IconDialog - - Add icon - 添加图标 - - - - Gui::Dialog::InputVector - - Input vector - 输入向量 - - - Vector - 向量 - - - Z: - Z: - - - Y: - Y: - - - X: - X: - - - OK - 确定 - - - - Gui::Dialog::LicenseDialog - - Copyright - - - - - Gui::Dialog::MouseButtons - - Mouse buttons - 鼠标按键 - - - Configuration - 配置 - - - Selection: - 选择: - - - Panning - 平移 - - - Rotation: - 旋转: - - - Zooming: - 缩放: - - - - Gui::Dialog::ParameterGroup - - Expand - 展开 - - - Add sub-group - 添加子组 - - - Remove group - 删除组 - - - Rename group - 重命名组 - - - Export parameter - 导出参数 - - - Import parameter - 导入参数 - - - Collapse - 折叠 - - - Do really want to remove this parameter group? - 是否真的删除此参数组? - - - Existing sub-group - 已存在子组 - - - The sub-group '%1' already exists. - 子组'%1'已经存在. - - - Export parameter to file - 导出参数到文件 - - - XML (*.FCParam) - XML (*.FCParam) - - - Import parameter from file - 从文件中导入参数 - - - Import Error - 导入错误 - - - Reading from '%1' failed. - 读取'%1'失败. - - - - Gui::Dialog::ParameterValue - - Change value - 更改值 - - - Remove key - 删除键 - - - Rename key - 重命名键 - - - New - 新建 - - - New string item - 新字符串项 - - - New float item - 新浮点数 - - - New integer item - 新整数 - - - New unsigned item - 新无符号数 - - - New Boolean item - 新布尔值 - - - Existing item - 已存在项目 - - - The item '%1' already exists. - 对象'%1'已经存在. - - - - Gui::Dialog::Placement - - Placement - 定位 - - - OK - 确定 - - - Translation: - 变换: - - - Z: - Z: - - - Y: - Y: - - - X: - X: - - - Rotation: - 旋转: - - - Angle: - 角度: - - - Axis: - 轴: - - - Center: - 中心: - - - Pitch: - 间距: - - - Roll: - 卷: - - - Yaw: - 偏: - - - Rotation axis with angle - Rotation axis with angle - - - Euler angles - 欧拉角 - - - Apply placement changes immediately - 立即应用更改 - - - Apply incremental changes to object placement - 应用更改到对象 - - - Apply - 应用 - - - Reset - 重设 - - - Close - 关闭 - - - - Gui::Dialog::PrintModel - - Button - 按钮 - - - Command - 命令 - - - - Gui::Dialog::SceneInspector - - Dialog - 对话框 - - - Close - 关闭 - - - Refresh - 刷新 - - - - Gui::Dialog::SceneModel - - Inventor Tree - 结构树 - - - Nodes - 节点 - - - - Gui::Dialog::TextureMapping - - Texture - 纹理 - - - Texture mapping - 纹理映射 - - - Global - 全局 - - - Environment - 环境 - - - Image files (%1) - 图像文件(%1) - - - No image - 无图片 - - - The specified file is not a valid image file. - 指定的文件不是有效的图像文件. - - - No 3d view - 无3D视图 - - - No active 3d view found. - 未发现活动的3d视图. - - - - Gui::Dialog::Transform - - Cancel - 取消 - - - Transform - 变换 - - - - Gui::DlgTreeWidget - - Dialog - 对话框 - - - Items - 项目 - - - OK - 确定 - - - Cancel - 取消 - - - - 关于 - - - - Gui::DockWnd::CombiView - - CombiView - 组合视图 - - - Project - 项目 - - - Tasks - 任务 - - - - Gui::DockWnd::HelpView - - Previous - 上一个 - - - Next - 下一个 - - - Home - 主页 - - - Open - 打开 - - - Open file - 打开文件 - - - All HTML files (*.html *.htm) - 所有HTML文件(*.html *.htm) - - - External browser - 外部浏览器 - - - No external browser found. Specify in preferences, please - 未发现外部浏览器.请在首选项中设置 - - - Starting of %1 failed - 启动 %1 失败 - - - - Gui::DockWnd::PropertyDockView - - Property View - 属性浏览器 - - - - Gui::DockWnd::ReportOutput - - Logging - 日志 - - - Warning - 警告 - - - Error - 错误 - - - Options - 选项 - - - Clear - 清除 - - - Save As... - 另存为... - - - Save Report Output - 保存输出报告 - - - Plain Text Files (*.txt *.log) - 文本文件(*.txt *.log) - - - Go to end - 转到结束 - - - Redirect Python output - 重定向Python输出 - - - Redirect Python errors - Python错误重定向 - - - - Gui::DockWnd::ReportView - - Output - 输出 - - - Python console - Python控制台 - - - - Gui::DockWnd::SelectionView - - Property View - 属性浏览器 - - - - Gui::DockWnd::TaskPanelView - - Task View - 任务浏览器 - - - - Gui::DockWnd::TextBrowser - - Could not open file. - 无法打开文件. - - - You tried to access the address %1 which is currently unavailable. Please make sure that the URL exists and try reloading the page. - 您试图访问地址'%1',当前不可用。请确保URL存在,并重新尝试加载该页面. - - - Connecting to %1 - 连接到 %1 - - - Sending to %1 - 发送到 %1 - - - Reading from %1 - 读取'%1' - - - Download failed: %1. - 下载失败: %1. - - - Previous - 上一个 - - - Forward - 向前 - - - Home - 主页 - - - Refresh - 刷新 - - - Copy - 复制 - - - Select all - 全选 - - - No description for - 无说明 - - - - Gui::DocumentModel - - Application - 工程 - - - Labels & Attributes - 标签 & 属性 - - - - Gui::EditorView - - Modified file - 修改后的文件 - - - %1. - -This has been modified outside of the source editor. Do you want to reload it? - %1. -它已被代码编辑器之外的程序修改.是否重新加载? - - - Unsaved document - 未保存的文件 - - - The document has been modified. -Do you want to save your changes? - 该文件已被修改. -是否要保存更改? - - - FreeCAD macro (*.FCMacro);;Python (*.py) - FreeCAD 宏(*.FCMacro);;Python(*.py) - - - Export PDF - 导出PDF - - - PDF file (*.pdf) - PDF 文件(*.pdf) - - - untitled[*] - 无标题[*] - - - - Editor - - Editor - - - %1 chars removed - 删除了 %1 个字符 - - - %1 chars added - 增加了 %1 个字符 - - - Formatted - 已格式化 - - - - Gui::FileChooser - - Select a file - 选择一个文件 - - - Select a directory - 选择一个目录 - - - - Gui::FileDialog - - Save as - 另存为 - - - Open - 打开 - - - - Gui::FileOptionsDialog - - Extended - 扩展 - - - All files (*.*) - 所有文件(*.*) - - - - Gui::Flag - - Top left - 左上 - - - Bottom left - 左下 - - - Top right - 右上 - - - Bottom right - 右下 - - - Remove - 删除 - - - - Gui::InventorNavigationStyle - - Press CTRL and left mouse button - 按CTRL和鼠标左键 - - - Press middle mouse button - 按鼠标中键 - - - Press left mouse button - 按鼠标左键 - - - Scroll middle mouse button - 滚动鼠标中键 - - - - Gui::LocationDialog - - Wrong direction - 方向错误 - - - Direction must not be the null vector - 方向不能是零向量 - - - X - X - - - Y - Y - - - Z - Z - - - User defined... - 用户定义... - - - - Gui::LocationWidget - - X: - X: - - - Y: - Y: - - - Z: - Z: - - - Direction: - - - - - Gui::MacroCommand - - Macros - - - - - Gui::MainWindow - - Dimension - 尺寸标注 - - - Ready - 就绪 - - - Toggles this toolbar - 切换此工具栏 - - - Toggles this dockable window - 切换此可停靠的窗口 - - - Close All - 全部关闭 - - - - Gui::ManualAlignment - - Manual alignment - - - - The alignment is already in progress. - - - - Alignment[*] - - - - Please, select at least one point in the left and the right view - - - - Please, select at least %1 points in the left and the right view - - - - Please pick points in the left and right view - - - - The alignment has finished - - - - The alignment has been canceled - - - - Too few points picked in the left view. At least %1 points are needed. - - - - Too few points picked in the right view. At least %1 points are needed. - - - - Different number of points picked in left and right view. -On the left view %1 points are picked, -on the right view %2 points are picked. - - - - Try to align group of views - - - - The alignment failed. -How do you want to proceed? - - - - Retry - - - - Ignore - - - - Abort - - - - Different number of points picked in left and right view. On the left view %1 points are picked, on the right view %2 points are picked. - - - - Point picked at (%1,%2,%3) - - - - No point was picked - - - - - Gui::NetworkRetriever - - Download started... - - 下载开始... - - - - Gui::ProgressBar - - Remaining: %1 - 剩余:%1 - - - Aborting - 异常终止 - - - Do you really want to abort the operation? - 你真的想中止运行么? - - - - Gui::ProgressDialog - - Remaining: %1 - 剩余:%1 - - - Aborting - 异常终止 - - - Do you really want to abort the operation? - 你真的想中止运行么? - - - - Gui::PropertyEditor::PropertyModel - - Property - 属性 - - - Value - - - - - Gui::PropertyView - - View - 视图 - - - Data - 数据 - - - - Gui::PythonConsole - - System exit - 系统退出 - - - The application is still running. -Do you want to exit without saving your data? - 应用程序仍在运行. -是否要退出而不保存数据? - - - Python console - Python控制台 - - - Unhandled PyCXX exception. - 未处理的PyCXX异常. - - - Unhandled FreeCAD exception. - 未处理的FreeCAD异常. - - - Unhandled unknown C++ exception. - 未处理的未知c++异常. - - - &Copy command - 复制命令(&C) - - - &Copy history - 复制历史(&C) - - - Save history as... - 历史记录另存为... - - - Insert file name... - 插入文件名... - - - Save History - 保存历史记录 - - - Macro Files (*.FCMacro *.py) - 宏文件(*.FCMacro *.py) - - - Insert file name - 插入文件名 - - - All Files (*.*) - 所有文件(*.*) - - - Python Input Dialog - Python输入对话框 - - - Unhandled std C++ exception. - 未处理的标准c++异常. - - - Word wrap - 自动换行 - - - &Copy - 复制(&C) - - - &Paste - 粘贴(&P) - - - Select All - 全选 - - - Clear console - - - - - Gui::PythonEditor - - Comment - 注释 - - - Uncomment - 取消注释 - - - - Gui::PythonInputField - - OK - 确定 - - - Clear - 清除 - - - - Gui::RecentFilesAction - - Open file %1 - 打开文件%1 - - - File not found - 文件未找到 - - - The file '%1' cannot be opened. - 无法打开文件'%1'. - - - - Gui::SelectModule - - Select module - 选择模块 - - - Open %1 as - 打开 %1 作为 - - - Select - 选择 - - - - Gui::StdCmdDescription - - Help - 帮助 - - - Des&cription - 描述(&C) - - - Long description of commands - 命令的详细描述 - - - - Gui::StdCmdDownloadOnlineHelp - - Help - 帮助 - - - Download online help - 下载在线帮助 - - - Download %1's online help - 下载 %1 的联机帮助 - - - Non-existing directory - 不存在的目录 - - - The directory '%1' does not exist. - -Do you want to specify an existing directory? - 目录'%1'不存在. -你要指定一个现有的目录? - - - Missing permission - 缺少权限 - - - You don't have write permission to '%1' - -Do you want to specify another directory? - 您没有写入'%1'权限 -要指定另一个目录? - - - Stop downloading - 停止下载 - - - - Gui::StdCmdPythonHelp - - Tools - 工具 - - - Python Modules - Python模块 - - - Opens a browser to show the Python modules - 打开浏览器来查看Python模块 - - - - Gui::TaskBoxAngle - - Angle - 角度 - - - - Gui::TaskBoxPosition - - Position - 位置 - - - - Gui::TaskView::TaskAppearance - - Display mode: - 显示模式: - - - Plot mode: - 绘制模式: - - - Point size: - 点大小: - - - Line width: - 线宽: - - - Transparency: - 透明度: - - - Appearance - 外观 - - - Document window: - - - - - Gui::TaskView::TaskEditControl - - Edit - 编辑 - - - - Gui::TaskView::TaskSelectLinkProperty - - Appearance - 外观 - - - ... - ... - - - edit selection - 编辑选择 - - - - Gui::TouchpadNavigationStyle - - Press left mouse button - 按鼠标左键 - - - Press SHIFT button - - - - Press ALT button - - - - Press PgUp/PgDown button - - - - - Gui::Translator - - English - 英语 - - - - Gui::TreeDockWidget - - Tree view - 结构树浏览器 - - - - Gui::TreeWidget - - Create group... - 创建组... - - - Create a group - 创建组 - - - Group - - - - Rename - 重命名 - - - Rename object - 重命名对象 - - - Labels & Attributes - 标签 & 属性 - - - Application - 工程 - - - Finish editing - 完成编辑 - - - Finish editing object - 完成编辑对象 - - - Activate document - 激活文档 - - - Activate document %1 - 激活文档 %1 - - - - Gui::View3DInventor - - Export PDF - 导出PDF - - - PDF file (*.pdf) - PDF 文件(*.pdf) - - - - Gui::WorkbenchGroup - - Select the '%1' workbench - 选择'%1'工作台 - - - - Position - - Form - 窗体 - - - X: - X: - - - Y: - Y: - - - Z: - Z: - - - 0.1 mm - 0.1 mm - - - 0.5 mm - 0.5 mm - - - 1 mm - 1 mm - - - 2 mm - 2 mm - - - 5 mm - 5 mm - - - 10 mm - 10 mm - - - 20 mm - 20 mm - - - 50 mm - 50 mm - - - 100 mm - 100 mm - - - 200 mm - 100 mm - - - 500 mm - 500 mm - - - 1 m - 1 m - - - 2 m - 2 m - - - 5 m - 5 m - - - Grid Snap in - 网格捕捉开 - - - - QDockWidget - - Tree view - 结构树浏览器 - - - Property view - 属性浏览器 - - - Selection view - 选择浏览器 - - - Report view - 报告浏览器 - - - Task View - 任务浏览器 - - - Combo View - 组合浏览器 - - - Toolbox - 工具箱 - - - Python console - Python控制台 - - - Display properties - 显示属性 - - - - QObject - - General - 常规 - - - Display - 显示 - - - Unknown filetype - 未知文件类型 - - - Cannot open unknown filetype: %1 - 无法打开未知文件类型: %1 - - - Cannot save to unknown filetype: %1 - 无法保存为未知的文件类型: %1 - - - Workbench failure - 工作台故障 - - - %1 - %1 - - - Unable to launch Qt Assistant (%1) - 无法启动Qt助手(%1) - - - Exception - 异常 - - - Open document - 打开文档 - - - Import file - 导入文件 - - - Export file - 导出文件 - - - Printing... - 打印... - - - Cannot load workbench - 无法加载工作台 - - - A general error occurred while loading the workbench - 加载工作台时出错 - - - File not found - 文件未找到 - - - Cannot open file %1 - 无法打开文件 %1 - - - Save views... - 保存视图... - - - Load views... - 加载视图... - - - Freeze view - 冻结视图 - - - Clear views - 清除视图 - - - Restore view &%1 - 还原视图 &%1 - - - Save frozen views - 保存冻结视图 - - - Frozen views (*.cam) - 冻结视图(*.cam) - - - Restore views - 还原视图 - - - Importing the restored views would clear the already stored views. -Do you want to continue? - 导入还原视图将清除已存储的视图.是否继续? - - - Restore frozen views - 回复冻结视图 - - - Cannot open file '%1'. - 无法打开文件'%1'. - - - Docked - 停靠 - - - Undocked - 不停靠 - - - Fullscreen - 全屏 - - - files - 文件 - - - Save picture - 保存图片 - - - New sub-group - 新次级组 - - - Enter the name: - 输入名称: - - - New text item - 新文本 - - - Enter your text: - 输入文本: - - - New integer item - 新整数 - - - Enter your number: - 输入数字: - - - New unsigned item - 新无符号数 - - - New float item - 新浮点数 - - - New Boolean item - 新布尔值 - - - Choose an item: - 选择对象: - - - Rename group - 重命名组 - - - The group '%1' cannot be renamed. - 组'%1'无法重命名. - - - Existing group - 已存在组 - - - The group '%1' already exists. - 组'%1'已存在. - - - Change value - 更改值 - - - Save document under new filename... - 使用新的文件名保存文档... - - - Saving aborted - 保存中止 - - - Unsaved document - 未保存的文件 - - - Save document before close? - 关闭前保存文档? - - - Save Macro - 保存宏 - - - Finish - 完成 - - - Clear - 清除 - - - Cancel - 取消 - - - Inner - - - - Outer - - - - No Browser - 无浏览器 - - - Unable to open your browser. - -Please open a browser window and type in: http://localhost:%1. - 无法打开您的浏览器。请打开浏览器窗口并输入:http://localhost:%1. - - - No Server - 无服务器 - - - Unable to start the server to port %1: %2. - 无法从端口“%1:%2”启动服务器. - - - Unable to open your system browser. - 无法打开您的系统浏览器. - - - Options... - 选项... - - - Out of memory - 内存不足 - - - Not enough memory available to display the data. - 没有足够的可用内存来显示数据. - - - Cannot find file %1 - 找不到文件 %1 - - - Cannot find file %1 neither in %2 nor in %3 - 在 %2 或 %3 中找不到文件 %1 - - - Save %1 Document - 保存%1文件 - - - %1 document (*.FCStd) - %1 文档(*.FCStd) - - - Save As - 另存为 - - - %1 already exists. -Do you want to replace it? - %1 已存在.想覆盖它吗? - - - Document not closable - 文档不可关闭 - - - The document is not closable for the moment. - 文档当前无法关闭. - - - No OpenGL - 无 OpenGL - - - This system does not support OpenGL - 此系统不支持 OpenGL - - - Help - 帮助 - - - Unable to load documentation. -In order to load it Qt 4.4 or higher is required. - 无法加载文档. -加载它需要Qt4.4或更高版本. - - - %1 Help - %1 帮助 - - - Exporting PDF... - 导出 PDF... - - - Wrong selection - 选择错误 - - - Only one object selected. Please select two objects. -Be aware the point where you click matters. - 只有一个对象选中.请选择两个对象. -请注意您的点击位置. - - - Please select two objects. -Be aware the point where you click matters. - 请选择两个对象. -请注意您的点击位置. - - - New boolean item - 新布尔值 - - - Navigation styles - 导航样式 - - - %1 navigation - %1 导航 - - - Move annotation - 移动批注 - - - Transform - 变换 - - - The document is in editing mode and thus cannot be closed for the moment. -You either have to finish or cancel the editing in the task panel. - 文档处于编辑模式,当前无法关闭. 您可选择在任务面板中完成或取消编辑. - - - - StdBoxSelection - - Standard-View - 标准视图 - - - Box selection - - - - - StdCmdAbout - - Help - 帮助 - - - &About %1 - 关于%1(&A) - - - About %1 - 关于 %1 - - - - StdCmdAboutQt - - Help - 帮助 - - - About &Qt - 关于Qt(&Q) - - - About Qt - 关于Qt - - - - StdCmdActivateNextWindow - - Window - 窗口 - - - Ne&xt - 下一个(&X) - - - Activate next window - 激活下一个窗口 - - - - StdCmdActivatePrevWindow - - Window - 窗口 - - - Pre&vious - 上一个(&V) - - - Activate previous window - 激活上一个窗口 - - - - StdCmdAlignment - - Edit - 编辑 - - - Alignment... - - - - Align the selected objects - - - - - StdCmdArrangeIcons - - Window - 窗口 - - - Arrange &Icons - 排列图标(&I) - - - Arrange Icons - 排列图标 - - - - StdCmdAxisCross - - Standard-View - 标准视图 - - - Toggle axis cross - Toggle axis cross - - - - StdCmdCascadeWindows - - Window - 窗口 - - - &Cascade - 层叠(&C) - - - Tile pragmatic - 完整平铺 - - - - StdCmdCloseActiveWindow - - Window - 窗口 - - - Cl&ose - 关闭 - - - Close active window - 关闭当前窗口 - - - - StdCmdCloseAllWindows - - Window - 窗口 - - - Close Al&l - 全部关闭(&L) - - - Close all windows - 关闭所有窗口 - - - - StdCmdCommandLine - - Tools - 工具 - - - Start command &line... - 启动命令行(&L)... - - - Opens the command line in the console - 在控制台打开命令行 - - - - StdCmdCopy - - Edit - 编辑 - - - C&opy - 复制(&C) - - - Copy operation - 复制操作 - - - - StdCmdCut - - Edit - 编辑 - - - &Cut - 剪切(&C) - - - Cut out - 剪出 - - - - StdCmdDDuplicateSelection - - Edit - 编辑 - - - Duplicate selection - 复制选择 - - - Put duplicates of the selected objects to the active document - 把选中对象的复制副本放到当前文档 - - - - StdCmdDelete - - Edit - 编辑 - - - &Delete - 删除(&D) - - - Deletes the selected objects - 删除选中的对象 - - - - StdCmdDemoMode - - Standard-View - 标准视图 - - - View turntable... - 视图罗盘... - - - View turntable - 视图罗盘 - - - - StdCmdDlgCustomize - - Tools - 工具 - - - Cu&stomize... - 自定义(&S)... - - - Customize toolbars and command bars - 自定义工具栏和命令栏 - - - - StdCmdDlgMacroExecute - - Macros ... - 宏 ... - - - Opens a dialog to let you execute a recorded macro - 打开一个对话框,执行一个录制的宏 - - - Macro - - - - - StdCmdDlgMacroExecuteDirect - - Macro - - - - Execute macro - 执行宏 - - - Execute the macro in the editor - 在编辑器中运行宏 - - - - StdCmdDlgMacroRecord - - &Macro recording ... - 宏录制(&M)... - - - Opens a dialog to record a macro - 打开一个对话框,录制宏 - - - Macro - - - - - StdCmdDlgParameter - - Tools - 工具 - - - E&dit parameters ... - 编辑参数(&E)... - - - Opens a Dialog to edit the parameters - 打开一个对话框编辑参数 - - - - StdCmdDlgPreferences - - Tools - 工具 - - - &Preferences ... - 选项(&P)... - - - Opens a Dialog to edit the preferences - 打开一个对话框编辑首选项 - - - - StdCmdDockViewMenu - - View - 视图 - - - Vie&ws - 视图(&W) - - - Toggles this window - 切换窗口 - - - - StdCmdDrawStyle - - Standard-View - 标准视图 - - - Draw style - Draw style - - - - StdCmdDuplicateSelection - - Edit - 编辑 - - - Duplicate selection - 复制选择 - - - Put duplicates of the selected objects to the active document - 把选中对象的复制副本放到当前文档 - - - - StdCmdEdit - - Edit - 编辑 - - - Toggle &Edit mode - - - - Toggles the selected object's edit mode - - - - Enters or leaves the selected object's edit mode - - - - - StdCmdExport - - File - 文件 - - - &Export... - 导出(&E)... - - - Export an object in the active document - 导出当前文档中的一个对象 - - - Supported formats - 支持的格式 - - - No selection - - - - Please select first the objects you want to export. - - - - - StdCmdExportGraphviz - - Tools - 工具 - - - Dependency graph... - - - - Show the dependency graph of the objects in the active document - - - - - StdCmdFeatRecompute - - File - 文件 - - - &Recompute - 重新计算(&R) - - - Recompute feature or document - 重新计算"特征"或"文档" - - - - StdCmdFreeCADWebsite - - Help - 帮助 - - - FreeCAD Website - FreeCAD网站 - - - The FreeCAD website - FreeCAD 网站 - - - - StdCmdFreezeViews - - Standard-View - 标准视图 - - - Freeze display - 冻结显示 - - - Freezes the current view position - 冻结当前视图位置 - - - - StdCmdHideObjects - - Standard-View - 标准视图 - - - Hide all objects - 隐藏所有对象 - - - Hide all objects in the document - 隐藏文档中的所有对象 - - - - StdCmdHideSelection - - Standard-View - 标准视图 - - - Hide selection - 隐藏选中对象 - - - Hide all selected objects - 隐藏所有选定的对象 - - - - StdCmdImport - - File - 文件 - - - &Import... - 导入(&I)... - - - Import a file in the active document - 在当前文档中导入文件 - - - Supported formats - 支持的格式 - - - All files (*.*) - 所有文件(*.*) - - - - StdCmdMacroStartDebug - - Macro - - - - Debug macro - 调试宏 - - - Start debugging of macro - 开始调试宏 - - - - StdCmdMacroStepOver - - Macro - - - - Step over - 步进 - - - - StdCmdMacroStopDebug - - Macro - - - - Stop debugging - 停止调试 - - - Stop debugging of macro - 停止调试宏 - - - - StdCmdMacroStopRecord - - Macro - - - - S&top macro recording - 停止宏录制(&T) - - - Stop the macro recording session - 停止宏录制进程 - - - - StdCmdMeasureDistance - - View - 视图 - - - Measure distance - 测量距离 - - - - StdCmdMeasurementSimple - - Tools - 工具 - - - Mesure distance - 测量距离 - - - Measures distance between two selected objects - 测量两个选中物体间距离 - - - Measure distance - 测量距离 - - - - StdCmdMergeProjects - - File - 文件 - - - Merge project... - 合并项目... - - - Merge project - 合并项目 - - - %1 document (*.fcstd) - %1 文档(*.fcstd) - - - Cannot merge project with itself. - 不能合并项目本身. - - - - StdCmdNew - - File - 文件 - - - &New - 新建(&N) - - - Create a new empty document - 创建一个新空白文档 - - - - StdCmdOnlineHelp - - Help - 帮助 - - - Show help to the application - 显示程序帮助 - - - - StdCmdOnlineHelpPython - - Help - 帮助 - - - Python Manuals - Python手册 - - - Show the Python documentation - 显示 Python 文档 - - - - StdCmdOnlineHelpWebsite - - Help - 帮助 - - - Help Website - 帮助网站 - - - The website where the help is maintained - 帮助文件所在网站 - - - - StdCmdOpen - - File - 文件 - - - &Open... - 打开(&O)... - - - Open a document or import files - 打开一个文档或导入文件 - - - Supported formats - 支持的格式 - - - All files (*.*) - 所有文件(*.*) - - - - StdCmdPaste - - Edit - 编辑 - - - &Paste - 粘贴(&P) - - - Paste operation - 粘贴操作 - - - - StdCmdPlacement - - Edit - 编辑 - - - Placement... - 定位... - - - Place the selected objects - 放置所选对象 - - - - StdCmdPrint - - File - 文件 - - - &Print... - 打印(&P)... - - - Print the document - 打印文档 - - - - StdCmdPrintPdf - - File - 文件 - - - &Export PDF... - 导出PDF(&E)... - - - Export the document as PDF - 将文档导出为 PDF - - - - StdCmdPrintPreview - - File - 文件 - - - &Print preview... - 打印预览(&P)... - - - Print the document - 打印文档 - - - Print preview - 打印预览 - - - - StdCmdProjectInfo - - File - 文件 - - - Project i&nformation... - 项目信息(&N)... - - - Show details of the currently active project - 显示当前项目详情 - - - - StdCmdProjectUtil - - Tools - 工具 - - - Project utility... - 项目工具... - - - Utility to extract or create project files - 提取或创建项目文件的工具 - - - - StdCmdPythonWebsite - - Help - 帮助 - - - Python Website - Python网站 - - - The official Python website - Python官方网站 - - - - StdCmdQuit - - File - 文件 - - - E&xit - 退出(&X) - - - Quits the application - 退出程序 - - - - StdCmdRandomColor - - File - 文件 - - - Random color - 随机颜色 - - - - StdCmdRecentFiles - - File - 文件 - - - Recent files - 最近打开的文件 - - - Recent file list - 最近文件列表 - - - - StdCmdRedo - - Edit - 编辑 - - - &Redo - 重做(&R) - - - Redoes a previously undone action - 重做上次撤消的操作 - - - - StdCmdRefresh - - Edit - 编辑 - - - &Refresh - 刷新(&R) - - - Recomputes the current active document - 重新计算当前文档 - - - - StdCmdSave - - File - 文件 - - - &Save - 保存(&S) - - - Save the active document - 保存当前文当 - - - - StdCmdSaveAs - - File - 文件 - - - Save &As... - 另存为(&A)... - - - Save the active document under a new file name - 使用新文件名保存当前文档 - - - - StdCmdSceneInspector - - Tools - 工具 - - - Scene inspector... - 场景检索... - - - Scene inspector - 场景检索 - - - - StdCmdSelectAll - - Edit - 编辑 - - - Select &All - 全选(&A) - - - Select all - 全选 - - - - StdCmdSetAppearance - - Standard-View - 标准视图 - - - Appearance... - 外观... - - - Sets the display properties of the selected object - 设置选中对象的显示属性 - - - - StdCmdShowObjects - - Standard-View - 标准视图 - - - Show all objects - 显示所有对象 - - - Show all objects in the document - 显示文档中的所有对象 - - - - StdCmdShowSelection - - Standard-View - 标准视图 - - - Show selection - 显示选择 - - - Show all selected objects - 显示所有选择的对象 - - - - StdCmdStatusBar - - View - 视图 - - - Status bar - 状态栏 - - - Toggles the status bar - 切换状态栏 - - - - StdCmdTextureMapping - - Tools - 工具 - - - Texture mapping... - 纹理映射... - - - Texture mapping - 纹理映射 - - - - StdCmdTileWindows - - Window - 窗口 - - - &Tile - 平铺(&T) - - - Tile the windows - 平铺窗口 - - - - StdCmdToggleBreakpoint - - Macro - - - - Toggle breakpoint - 切换断点 - - - - StdCmdToggleClipPlane - - Standard-View - 标准视图 - - - Clipping plane - 修剪平面 - - - Toggles clipping plane for active view - 切换当前视图的平面裁剪 - - - - StdCmdToggleNavigation - - Standard-View - 标准视图 - - - Toggle navigation/Edit mode - 切换导航/编辑模式 - - - Toggle between navigation and edit mode - 在导航和编辑模式之间切换 - - - - StdCmdToggleObjects - - Standard-View - 标准视图 - - - Toggle all objects - 切换所有对象 - - - Toggles visibility of all objects in the active document - 切换当前文档中所有对象的可见性 - - - - StdCmdToggleSelectability - - Standard-View - 标准视图 - - - Toggle selectability - 切换可选择性 - - - Toggles the property of the objects to get selected in the 3D-View - 切换属性以在三维视图中选定对象 - - - - StdCmdToggleVisibility - - Standard-View - 标准视图 - - - Toggle visibility - 切换可见性 - - - Toggles visibility - 切换可见性 - - - - StdCmdToolBarMenu - - View - 视图 - - - Tool&bars - 工具栏(&B) - - - Toggles this window - 切换窗口 - - - - StdCmdTransform - - Edit - 编辑 - - - Transform... - 变换... - - - Transform the geometry of selected objects - 几何变换选中对象 - - - - StdCmdTreeSelection - - View - 视图 - - - Go to selection - 转到选择 - - - Scroll to first selected item - 滚动到第一选择的对象 - - - - StdCmdUndo - - Edit - 编辑 - - - &Undo - 撤消(&U) - - - Undo exactly one action - 仅撤消一个操作 - - - - StdCmdUserInterface - - View - 视图 - - - Dock views - 停靠视图 - - - Dock all top-level views - 停靠所有顶级视图 - - - - StdCmdViewAxo - - Standard-View - 标准视图 - - - Axometric - 轴侧 - - - Set to axometric view - 设置为轴侧视图 - - - - StdCmdViewBottom - - Standard-View - 标准视图 - - - Bottom - 底视 - - - Set to bottom view - 设置为底视图 - - - - StdCmdViewCreate - - Standard-View - 标准视图 - - - Create new view - 创建新视图 - - - Creates a new view window for the active document - 为当前文档创建一个新的视图窗口 - - - - StdCmdViewExample1 - - Standard-View - 标准视图 - - - Inventor example #1 - Inventor 实例#1 - - - Shows a 3D texture with manipulator - 自动控制显示3D纹理 - - - - StdCmdViewExample2 - - Standard-View - 标准视图 - - - Inventor example #2 - Inventor 实例#2 - - - Shows spheres and drag-lights - 显示操控球和拖放指示 - - - - StdCmdViewExample3 - - Standard-View - 标准视图 - - - Inventor example #3 - Inventor 实例#3 - - - Shows a animated texture - 显示一个动画纹理 - - - - StdCmdViewFitAll - - Standard-View - 标准视图 - - - Fit all - 适合所有 - - - Fits the whole content on the screen - 在屏幕上容纳全部内容 - - - - StdCmdViewFitSelection - - Standard-View - 标准视图 - - - Fit selection - 适合选中 - - - Fits the selected content on the screen - 适合在屏幕上选取的内容 - - - - StdCmdViewFront - - Standard-View - 标准视图 - - - Front - 前视 - - - Set to front view - 设置为前视图 - - - - StdCmdViewIvIssueCamPos - - Standard-View - 标准视图 - - - Issue camera position - 发布相机位置 - - - Issue the camera position to the console and to a macro, to easily recall this position - 发布相机位置至控制台或宏,以便重新访问 - - - - StdCmdViewIvStereoInterleavedColumns - - Standard-View - 标准视图 - - - Stereo Interleaved Columns - 三维成像列扫描 - - - Switch stereo viewing to Interleaved Columns - 切换三维成像视图为列扫描显示 - - - - StdCmdViewIvStereoInterleavedRows - - Standard-View - 标准视图 - - - Stereo Interleaved Rows - 三维成像行扫描 - - - Switch stereo viewing to Interleaved Rows - 切换三维成像视图为行扫描显示 - - - - StdCmdViewIvStereoOff - - Standard-View - 标准视图 - - - Stereo Off - 关闭三维成像 - - - Switch stereo viewing off - 关闭三维成像视图 - - - - StdCmdViewIvStereoQuadBuff - - Standard-View - 标准视图 - - - Stereo quad buffer - 三维成像缓存 - - - Switch stereo viewing to quad buffer - 切换三维成像视图为缓存显示 - - - - StdCmdViewIvStereoRedGreen - - Standard-View - 标准视图 - - - Stereo red/green - 三维成像 红/绿 - - - Switch stereo viewing to red/green - 切换三维成像视图为红/绿显示 - - - - StdCmdViewLeft - - Standard-View - 标准视图 - - - Left - 左视 - - - Set to left view - 设置为左视图 - - - - StdCmdViewRear - - Standard-View - 标准视图 - - - Rear - 后视 - - - Set to rear view - 设置为后视图 - - - - StdCmdViewRight - - Standard-View - 标准视图 - - - Right - - - - Set to right view - 设置为右视图 - - - - StdCmdViewRotateLeft - - Standard-View - 标准视图 - - - Rotate Left - - - - Rotate the view by 90° counter-clockwise - - - - - StdCmdViewRotateRight - - Standard-View - 标准视图 - - - Rotate Right - - - - Rotate the view by 90° clockwise - - - - - StdCmdViewTop - - Standard-View - 标准视图 - - - Top - 顶视 - - - Set to top view - 设置为顶视图 - - - - StdCmdWhatsThis - - Help - 帮助 - - - &What's This? - 这是什么(&W)? - - - What's This - 这是什么 - - - - StdCmdWindows - - Window - 窗口 - - - &Windows... - 窗口(&W)... - - - Windows list - 窗口列表 - - - - StdCmdWindowsMenu - - Window - 窗口 - - - Activates this window - 激活此窗口 - - - - StdCmdWorkbench - - View - 视图 - - - Workbench - 工作台 - - - Switch between workbenches - 工作台之间切换 - - - - StdOrthographicCamera - - Standard-View - 标准视图 - - - Orthographic view - 平行视图 - - - Switches to orthographic view mode - 切换到正交视图模式 - - - - StdPerspectiveCamera - - Standard-View - 标准视图 - - - Perspective view - 透视视图 - - - Switches to perspective view mode - 切换到透视视图模式 - - - - StdViewBoxZoom - - Standard-View - 标准视图 - - - Box zoom - 框选缩放 - - - - StdViewDockUndockFullscreen - - Standard-View - 标准视图 - - - Document window - 文档窗口 - - - Display the active view either in fullscreen, in undocked or docked mode - 当前视图显示模式:1.全屏,2.不停靠,3.停靠 - - - - StdViewScreenShot - - Standard-View - 标准视图 - - - Save picture... - 保存图片... - - - Creates a screenshot of the active view - 创建当前视图的屏幕截图 - - - - StdViewZoomIn - - Standard-View - 标准视图 - - - Zoom In - 放大 - - - - StdViewZoomOut - - Standard-View - 标准视图 - - - Zoom Out - 缩小 - - - - Std_DrawStyle - - As is - As is - - - Normal mode - Normal mode - - - Wireframe - Wireframe - - - Wireframe mode - Wireframe mode - - - - Std_ExportGraphviz - - Graphviz not found - - - - Graphviz couldn't be found on your system. -Do you want to specify its installation path if it's already installed? - - - - Graphviz installation path - - - - Dependency graph - - - - Graphviz failed - - - - Graphviz failed to create an image file - - - - - Workbench - - &File - 文件(&F) - - - &Edit - 编辑(&E) - - - Standard views - 标准视图 - - - &Stereo - 立体成像(&S) - - - &Zoom - 缩放(&Z) - - - Visibility - 可见性 - - - &View - 视图(&V) - - - &Tools - 工具(&T) - - - &Macro - 宏(&M) - - - &Windows - 窗口(&W) - - - &On-line help - 在线帮助(&O) - - - &Help - 帮助(&H) - - - File - 文件 - - - Macro - - - - View - 视图 - - - Special Ops - 特殊Ops - - - - testClass - - test - 测试 - - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:20pt; font-weight:600;">iisTaskPanel</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:20pt; font-weight:600;"><span style=" font-size:12pt;">Created for Qt 4.3.x</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;">www.ii-system.com</p></body></html> - - - Choose the style of the Task Panel - 选择任务面板的样式 - - - Default - 默认 - - - Windows XP - Windows XP - - - diff --git a/src/Gui/Language/Makefile.am b/src/Gui/Language/Makefile.am index a72ca473f..1033bb0ff 100644 --- a/src/Gui/Language/Makefile.am +++ b/src/Gui/Language/Makefile.am @@ -16,7 +16,7 @@ EXTRA_DIST = \ FreeCAD.po \ FreeCAD_af.qm \ FreeCAD_de.qm \ - FreeCAD_es.qm \ + FreeCAD_es-ES.qm \ FreeCAD_fi.qm \ FreeCAD_fr.qm \ FreeCAD_hr.qm \ @@ -24,14 +24,21 @@ EXTRA_DIST = \ FreeCAD_nl.qm \ FreeCAD_no.qm \ FreeCAD_pl.qm \ - FreeCAD_pt.qm \ + FreeCAD_pt-BR.qm \ FreeCAD_ru.qm \ - FreeCAD_se.qm \ + FreeCAD_sv-SE.qm \ FreeCAD_uk.qm \ - FreeCAD_zh.qm \ + FreeCAD_zh-CN.qm \ + FreeCAD_zh-TW.qm \ + FreeCAD_cs.qm \ + FreeCAD_tr.qm \ + FreeCAD_hu.qm \ + FreeCAD_ja.qm \ + FreeCAD_ro.qm \ + FreeCAD_sk.qm \ FreeCAD_af.ts \ FreeCAD_de.ts \ - FreeCAD_es.ts \ + FreeCAD_es-ES.ts \ FreeCAD_fi.ts \ FreeCAD_fr.ts \ FreeCAD_hr.ts \ @@ -39,22 +46,29 @@ EXTRA_DIST = \ FreeCAD_nl.ts \ FreeCAD_no.ts \ FreeCAD_pl.ts \ - FreeCAD_pt.ts \ + FreeCAD_pt-BR.ts \ FreeCAD_ru.ts \ - FreeCAD_se.ts \ + FreeCAD_sv-SE.ts \ FreeCAD_uk.ts \ - FreeCAD_zh.ts \ + FreeCAD_zh-CN.ts \ + FreeCAD_zh-TW.ts \ + FreeCAD_cs.ts \ + FreeCAD_tr.ts \ + FreeCAD_hu.ts \ + FreeCAD_ja.ts \ + FreeCAD_ro.ts \ + FreeCAD_sk.ts \ qt_de.qm \ - qt_es.qm \ + qt_es-ES.qm \ qt_fr.qm \ qt_it.qm \ qt_jp.qm \ qt_pl.qm \ - qt_pt.qm \ + qt_pt-BR.qm \ qt_ru.qm \ - qt_se.qm \ + qt_sv-SE.qm \ qt_uk.qm \ - qt_zh.qm + qt_zh-CN.qm # rule for Qt MetaObject Compiler: diff --git a/src/Gui/Language/Translator.cpp b/src/Gui/Language/Translator.cpp index d48c1ec3f..3a25165c9 100644 --- a/src/Gui/Language/Translator.cpp +++ b/src/Gui/Language/Translator.cpp @@ -129,24 +129,30 @@ Translator::Translator() { // This is needed for Qt's lupdate d = new TranslatorP; - d->mapLanguageTopLevelDomain[QT_TR_NOOP("English" )] = "en"; - d->mapLanguageTopLevelDomain[QT_TR_NOOP("German" )] = "de"; - d->mapLanguageTopLevelDomain[QT_TR_NOOP("Spanish" )] = "es"; - d->mapLanguageTopLevelDomain[QT_TR_NOOP("French" )] = "fr"; - d->mapLanguageTopLevelDomain[QT_TR_NOOP("Italian" )] = "it"; - d->mapLanguageTopLevelDomain[QT_TR_NOOP("Japanese" )] = "jp"; - d->mapLanguageTopLevelDomain[QT_TR_NOOP("Chinese" )] = "zh"; - d->mapLanguageTopLevelDomain[QT_TR_NOOP("Korean" )] = "kr"; - d->mapLanguageTopLevelDomain[QT_TR_NOOP("Russian" )] = "ru"; - d->mapLanguageTopLevelDomain[QT_TR_NOOP("Swedish" )] = "se"; - d->mapLanguageTopLevelDomain[QT_TR_NOOP("Afrikaans" )] = "af"; - d->mapLanguageTopLevelDomain[QT_TR_NOOP("Norwegian" )] = "no"; - d->mapLanguageTopLevelDomain[QT_TR_NOOP("Portuguese")] = "pt"; - d->mapLanguageTopLevelDomain[QT_TR_NOOP("Dutch" )] = "nl"; - d->mapLanguageTopLevelDomain[QT_TR_NOOP("Ukrainian" )] = "uk"; - d->mapLanguageTopLevelDomain[QT_TR_NOOP("Finnish" )] = "fi"; - d->mapLanguageTopLevelDomain[QT_TR_NOOP("Croatian" )] = "hr"; - d->mapLanguageTopLevelDomain[QT_TR_NOOP("Polish" )] = "pl"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("English" )] = "en"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("German" )] = "de"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("Spanish" )] = "es-ES"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("French" )] = "fr"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("Italian" )] = "it"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("Japanese" )] = "ja"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("Chinese Simplified" )] = "zh-CN"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("Chinese Traditional" )] = "zh-TW"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("Korean" )] = "kr"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("Russian" )] = "ru"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("Swedish" )] = "sv-SE"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("Afrikaans" )] = "af"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("Norwegian" )] = "no"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("Portuguese" )] = "pt-BR"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("Dutch" )] = "nl"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("Ukrainian" )] = "uk"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("Finnish" )] = "fi"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("Croatian" )] = "hr"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("Polish" )] = "pl"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("Czech" )] = "cs"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("Hungarian" )] = "hu"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("Romanian" )] = "ro"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("Slovak" )] = "sk"; + d->mapLanguageTopLevelDomain[QT_TR_NOOP("Turkish" )] = "tr"; d->activatedLanguage = "English"; d->paths = directories(); diff --git a/src/Gui/Language/qt_es.qm b/src/Gui/Language/qt_es-ES.qm similarity index 100% rename from src/Gui/Language/qt_es.qm rename to src/Gui/Language/qt_es-ES.qm diff --git a/src/Gui/Language/qt_pt.qm b/src/Gui/Language/qt_pt-BR.qm similarity index 100% rename from src/Gui/Language/qt_pt.qm rename to src/Gui/Language/qt_pt-BR.qm diff --git a/src/Gui/Language/qt_se.qm b/src/Gui/Language/qt_sv-SE.qm similarity index 100% rename from src/Gui/Language/qt_se.qm rename to src/Gui/Language/qt_sv-SE.qm diff --git a/src/Gui/Language/qt_zh.qm b/src/Gui/Language/qt_zh-CN.qm similarity index 100% rename from src/Gui/Language/qt_zh.qm rename to src/Gui/Language/qt_zh-CN.qm diff --git a/src/Gui/Language/translation.qrc b/src/Gui/Language/translation.qrc index e2e81ad1e..3832bc2ef 100644 --- a/src/Gui/Language/translation.qrc +++ b/src/Gui/Language/translation.qrc @@ -1,8 +1,18 @@ + qt_de.qm + qt_es-ES.qm + qt_fr.qm + qt_it.qm + qt_jp.qm + qt_pl.qm + qt_pt-BR.qm + qt_ru.qm + qt_sv-SE.qm + qt_uk.qm + qt_zh-CN.qm FreeCAD_af.qm FreeCAD_de.qm - FreeCAD_es.qm FreeCAD_fi.qm FreeCAD_fr.qm FreeCAD_hr.qm @@ -10,21 +20,18 @@ FreeCAD_nl.qm FreeCAD_no.qm FreeCAD_pl.qm - FreeCAD_pt.qm FreeCAD_ru.qm - FreeCAD_se.qm FreeCAD_uk.qm - FreeCAD_zh.qm - qt_de.qm - qt_es.qm - qt_fr.qm - qt_it.qm - qt_jp.qm - qt_pl.qm - qt_pt.qm - qt_ru.qm - qt_se.qm - qt_uk.qm - qt_zh.qm + FreeCAD_tr.qm + FreeCAD_sv-SE.qm + FreeCAD_zh-TW.qm + FreeCAD_pt-BR.qm + FreeCAD_cs.qm + FreeCAD_sk.qm + FreeCAD_es-ES.qm + FreeCAD_zh-CN.qm + FreeCAD_ja.qm + FreeCAD_ro.qm + FreeCAD_hu.qm diff --git a/src/Gui/PythonDebugger.cpp b/src/Gui/PythonDebugger.cpp index 48a688a35..fc7b432c8 100644 --- a/src/Gui/PythonDebugger.cpp +++ b/src/Gui/PythonDebugger.cpp @@ -184,9 +184,10 @@ Py::Object PythonDebugStdout::repr() Py::Object PythonDebugStdout::write(const Py::Tuple& args) { char *msg; - PyObject* pObj; - //args contains a single parameter which is the string to write. - if (!PyArg_ParseTuple(args.ptr(), "Os:OutputString", &pObj, &msg)) + //PyObject* pObj; + ////args contains a single parameter which is the string to write. + //if (!PyArg_ParseTuple(args.ptr(), "Os:OutputString", &pObj, &msg)) + if (!PyArg_ParseTuple(args.ptr(), "s:OutputString", &msg)) throw Py::Exception(); if (strlen(msg) > 0) @@ -340,6 +341,7 @@ struct PythonDebuggerP { PyObject* out_n; PyObject* err_n; PyObject* exc_n; + PythonDebugExcept* pypde; bool init, trystop, running; QEventLoop loop; PyObject* pydbg; @@ -351,17 +353,18 @@ struct PythonDebuggerP { Base::PyGILStateLocker lock; out_n = new PythonDebugStdout(); err_n = new PythonDebugStderr(); - PythonDebugExcept* err = new PythonDebugExcept(); - Py::Object func = err->getattr("fc_excepthook"); + pypde = new PythonDebugExcept(); + Py::Object func = pypde->getattr("fc_excepthook"); exc_n = Py::new_reference_to(func); - Py_DECREF(err); pydbg = new PythonDebuggerPy(that); } ~PythonDebuggerP() { + Base::PyGILStateLocker lock; Py_DECREF(out_n); Py_DECREF(err_n); Py_DECREF(exc_n); + Py_DECREF(pypde); Py_DECREF(pydbg); } }; diff --git a/src/Gui/PythonEditor.cpp b/src/Gui/PythonEditor.cpp index 14db48db7..f735b581f 100644 --- a/src/Gui/PythonEditor.cpp +++ b/src/Gui/PythonEditor.cpp @@ -25,13 +25,16 @@ #ifndef _PreComp_ # include # include +# include # include # include #endif #include "PythonEditor.h" +#include "PythonDebugger.h" #include "Application.h" #include "BitmapFactory.h" +#include "Macro.h" #include "FileDialog.h" #include "DlgEditorImp.h" @@ -45,8 +48,19 @@ namespace Gui { struct PythonEditorP { QMap colormap; // Color map + int debugLine; + QRect debugRect; + QPixmap breakpoint; + QPixmap debugMarker; + QString filename; + PythonDebugger* debugger; PythonEditorP() + : debugLine(-1), + breakpoint(QLatin1String(":/icons/breakpoint.png")), + debugMarker(QLatin1String(":/icons/debug-marker.png")) { + debugger = Application::Instance->macroManager()->debugger(); + colormap[QLatin1String("Text")] = Qt::black; colormap[QLatin1String("Bookmark")] = Qt::cyan; colormap[QLatin1String("Breakpoint")] = Qt::red; @@ -98,18 +112,61 @@ PythonEditor::~PythonEditor() delete d; } +void PythonEditor::setFileName(const QString& fn) +{ + d->filename = fn; +} + +void PythonEditor::startDebug() +{ + if (d->debugger->start()) { + d->debugger->runFile(d->filename); + d->debugger->stop(); + } +} + +void PythonEditor::toggleBreakpoint() +{ + QTextCursor cursor = textCursor(); + int line = cursor.blockNumber() + 1; + d->debugger->toggleBreakpoint(line, d->filename); + getMarker()->update(); +} + +void PythonEditor::showDebugMarker(int line) +{ + d->debugLine = line; + getMarker()->update(); + QTextCursor cursor = textCursor(); + cursor.movePosition(QTextCursor::StartOfBlock); + int cur = cursor.blockNumber() + 1; + if (cur > line) { + for (int i=line; idebugLine = -1; + getMarker()->update(); +} + void PythonEditor::drawMarker(int line, int x, int y, QPainter* p) { -#if 0 - Breakpoint bp = _dbg->getBreakpoint(fileName()); + Breakpoint bp = d->debugger->getBreakpoint(d->filename); if (bp.checkLine(line)) { - p->drawPixmap(x, y, breakpoint); + p->drawPixmap(x, y, d->breakpoint); } - if (m_debugLine == line) { - p->drawPixmap(x, y+2, debugMarker); - debugRect = QRect(x, y+2, debugMarker.width(), debugMarker.height()); + if (d->debugLine == line) { + p->drawPixmap(x, y+2, d->debugMarker); + d->debugRect = QRect(x, y+2, d->debugMarker.width(), d->debugMarker.height()); } -#endif } void PythonEditor::contextMenuEvent ( QContextMenuEvent * e ) diff --git a/src/Gui/PythonEditor.h b/src/Gui/PythonEditor.h index 8e5b71e2e..f64e9ddf5 100644 --- a/src/Gui/PythonEditor.h +++ b/src/Gui/PythonEditor.h @@ -45,6 +45,11 @@ public: PythonEditor(QWidget *parent = 0); ~PythonEditor(); + void startDebug(); + void toggleBreakpoint(); + void showDebugMarker(int line); + void hideDebugMarker(); + public Q_SLOTS: /** Inserts a '#' at the beginning of each selected line or the current line if * nothing is selected @@ -56,6 +61,7 @@ public Q_SLOTS: * this line is skipped. */ void onUncomment(); + void setFileName(const QString&); protected: /** Pops up the context menu with some extensions */ diff --git a/src/Gui/TextEdit.h b/src/Gui/TextEdit.h index f14ca65cf..2ad2a7fa8 100644 --- a/src/Gui/TextEdit.h +++ b/src/Gui/TextEdit.h @@ -99,6 +99,8 @@ protected: /** Draw a beam in the line where the cursor is. */ void paintEvent (QPaintEvent * e); void resizeEvent(QResizeEvent* e); + QWidget* getMarker() const + { return lineNumberArea; } virtual void drawMarker(int line, int x, int y, QPainter*); private: diff --git a/src/Gui/ViewProviderPythonFeature.h b/src/Gui/ViewProviderPythonFeature.h index 693a6c448..220ada2fe 100644 --- a/src/Gui/ViewProviderPythonFeature.h +++ b/src/Gui/ViewProviderPythonFeature.h @@ -188,6 +188,9 @@ public: short attr=0, bool ro=false, bool hidden=false) { return props->addDynamicProperty(type, name, group, doc, attr, ro, hidden); } + virtual bool removeDynamicProperty(const char* name) { + return props->removeDynamicProperty(name); + } std::vector getDynamicPropertyNames() const { return props->getDynamicPropertyNames(); } diff --git a/src/Gui/ViewProviderPythonFeaturePy.xml b/src/Gui/ViewProviderPythonFeaturePy.xml index c5457663a..02413d2ee 100644 --- a/src/Gui/ViewProviderPythonFeaturePy.xml +++ b/src/Gui/ViewProviderPythonFeaturePy.xml @@ -27,6 +27,14 @@ + + + + removeProperty(string) -- Remove a generic property. + Note, you can only remove user-defined properties but not built-in ones. + + + A list of supported property types diff --git a/src/Gui/ViewProviderPythonFeaturePyImp.cpp b/src/Gui/ViewProviderPythonFeaturePyImp.cpp index 234c468f4..badd7a56f 100644 --- a/src/Gui/ViewProviderPythonFeaturePyImp.cpp +++ b/src/Gui/ViewProviderPythonFeaturePyImp.cpp @@ -84,6 +84,16 @@ PyObject* ViewProviderPythonFeaturePy::addProperty(PyObject *args) return Py::new_reference_to(this); } +PyObject* ViewProviderPythonFeaturePy::removeProperty(PyObject *args) +{ + char *sName; + if (!PyArg_ParseTuple(args, "s", &sName)) + return NULL; + + bool ok = getViewProviderPythonFeaturePtr()->removeDynamicProperty(sName); + return Py_BuildValue("O", (ok ? Py_True : Py_False)); +} + PyObject* ViewProviderPythonFeaturePy::supportedProperties(PyObject *args) { if (!PyArg_ParseTuple(args, "")) // convert args: Python->C diff --git a/src/Mod/Arch/Arch_rc.py b/src/Mod/Arch/Arch_rc.py index f6b175977..23b09eca9 100644 --- a/src/Mod/Arch/Arch_rc.py +++ b/src/Mod/Arch/Arch_rc.py @@ -2,7 +2,7 @@ # Resource object code # -# Created: Sun Aug 5 16:52:51 2012 +# Created: Mon Oct 29 15:19:34 2012 # by: The Resource Compiler for PyQt (Qt v4.8.2) # # WARNING! All changes made in this file will be lost! @@ -10,6 +10,12001 @@ from PyQt4 import QtCore qt_resource_data = "\ +\x00\x00\x49\xa9\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x04\xf8\x00\x00\x47\xa4\x00\x00\x00\x49\x00\x04\x8e\xc3\ +\x00\x00\x01\x5d\x00\x04\x8f\x03\x00\x00\x02\x10\x00\x04\x8f\x03\ +\x00\x00\x25\x84\x00\x04\x9c\x2c\x00\x00\x27\x0c\x00\x04\xbb\x04\ +\x00\x00\x07\xb8\x00\x05\x48\x35\x00\x00\x0c\xb5\x00\x05\x67\xd5\ +\x00\x00\x0e\xc3\x00\x05\x96\x56\x00\x00\x0f\x0b\x00\x05\x96\x56\ +\x00\x00\x2e\x9a\x00\x05\xa0\xa5\x00\x00\x0f\x30\x00\x05\xa0\xa5\ +\x00\x00\x32\x33\x00\x05\xc0\x65\x00\x00\x1d\x0b\x00\x05\xd8\x2c\ +\x00\x00\x1e\x9e\x00\x05\xd8\x2c\x00\x00\x35\xe9\x00\x32\x23\xa5\ +\x00\x00\x41\xea\x00\x39\xdf\x33\x00\x00\x3a\xab\x00\x48\x4e\x25\ +\x00\x00\x01\x3b\x00\x49\xeb\x9b\x00\x00\x27\xe4\x00\x4b\x55\x33\ +\x00\x00\x3b\xc3\x00\x4d\x36\x62\x00\x00\x0a\x0b\x00\x4d\x36\x62\ +\x00\x00\x2a\x54\x00\x5d\xfb\xa8\x00\x00\x1f\x2e\x00\x5e\x08\xc3\ +\x00\x00\x1f\x7f\x00\x61\xb0\x33\x00\x00\x16\x7f\x00\x62\x9b\xa8\ +\x00\x00\x0f\xb9\x00\x62\x9b\xa8\x00\x00\x32\x5d\x00\x8a\x92\x57\ +\x00\x00\x00\x00\x00\xaa\x80\x25\x00\x00\x07\x17\x00\xc9\x7b\xf3\ +\x00\x00\x12\x72\x00\xfb\x72\xf3\x00\x00\x3a\x3b\x01\x19\x4e\x85\ +\x00\x00\x05\xa1\x01\x55\x2b\xf5\x00\x00\x05\x12\x01\x79\x17\x94\ +\x00\x00\x22\x48\x01\x8e\x84\xa6\x00\x00\x11\x2e\x01\xad\x7d\xe3\ +\x00\x00\x43\x61\x01\xaf\x41\x84\x00\x00\x21\x34\x01\xf7\xa8\x83\ +\x00\x00\x40\xd9\x02\x01\x7f\xd3\x00\x00\x10\x24\x02\x29\xb3\xc4\ +\x00\x00\x2d\xd1\x02\x5a\x4a\x53\x00\x00\x15\x9d\x02\x5f\xc9\x59\ +\x00\x00\x34\xd5\x02\x66\x7f\x7e\x00\x00\x0d\x9b\x02\x6a\x77\x99\ +\x00\x00\x3d\x0b\x02\x80\x5f\x17\x00\x00\x23\x19\x02\x82\x88\x3a\ +\x00\x00\x04\x2e\x02\x85\x4f\xf5\x00\x00\x19\x05\x02\x90\x40\x65\ +\x00\x00\x0c\x75\x02\x90\x40\x65\x00\x00\x2a\x7a\x02\x94\x16\x35\ +\x00\x00\x10\x61\x02\xab\x87\xd4\x00\x00\x42\x2a\x02\xb8\xae\x74\ +\x00\x00\x2b\x72\x02\xc3\x91\x93\x00\x00\x3e\x6c\x02\xcd\x05\xa3\ +\x00\x00\x2a\xc6\x02\xdd\x14\x14\x00\x00\x2b\xc2\x03\x13\x15\x3e\ +\x00\x00\x0b\x21\x03\x1b\xda\x15\x00\x00\x1e\xfa\x03\x1d\xe8\xe3\ +\x00\x00\x38\xc4\x03\x29\x7a\x34\x00\x00\x00\xd1\x03\x2c\xe9\xb3\ +\x00\x00\x16\xe6\x03\x92\x51\xe0\x00\x00\x0f\x55\x03\xa2\xec\x23\ +\x00\x00\x1e\xbd\x03\xbe\xb0\x34\x00\x00\x1d\xd2\x03\xce\x98\xe5\ +\x00\x00\x03\xb8\x03\xd4\x22\x74\x00\x00\x24\x90\x04\x35\xfa\x55\ +\x00\x00\x11\xe7\x04\xc3\x75\x44\x00\x00\x19\x5a\x04\xdb\x21\x3e\ +\x00\x00\x31\x82\x04\xeb\xfd\xf4\x00\x00\x0a\x5c\x05\x14\x5b\x83\ +\x00\x00\x07\x3c\x05\x18\xda\xa3\x00\x00\x29\xa2\x05\x5f\x3d\x83\ +\x00\x00\x39\xbf\x05\x8c\x46\xc5\x00\x00\x0e\xe8\x05\x90\xba\xe3\ +\x00\x00\x0e\x95\x05\xc0\x56\xe3\x00\x00\x3e\xf1\x05\xc7\xeb\xc7\ +\x00\x00\x3d\xbd\x05\xe0\x4b\x67\x00\x00\x1f\x56\x05\xe0\x4b\x67\ +\x00\x00\x37\x0b\x05\xef\x78\x4a\x00\x00\x22\x85\x06\x1f\x6f\xa4\ +\x00\x00\x20\x94\x06\x32\xe3\xe3\x00\x00\x43\xa7\x06\x5b\x01\x15\ +\x00\x00\x03\x87\x06\x69\xd0\x04\x00\x00\x20\x2a\x06\x9f\x6f\xd4\ +\x00\x00\x06\xb9\x06\xd6\x3f\xa4\x00\x00\x22\x08\x06\xe6\x2f\x43\ +\x00\x00\x11\x89\x07\x00\xcc\xc4\x00\x00\x3b\x74\x07\x07\x84\xba\ +\x00\x00\x43\xd9\x07\x08\x43\x0e\x00\x00\x25\xae\x07\x16\x58\x05\ +\x00\x00\x37\x90\x07\x25\x74\x53\x00\x00\x28\xa9\x07\x28\xff\x15\ +\x00\x00\x0d\x25\x07\x36\x51\x26\x00\x00\x13\x54\x07\x5c\xdc\x04\ +\x00\x00\x1f\xa7\x07\x60\x23\xf3\x00\x00\x02\xec\x07\xca\xf8\x87\ +\x00\x00\x37\x3b\x08\x25\x81\xc4\x00\x00\x06\x64\x08\x4a\x45\xd9\ +\x00\x00\x36\x0d\x08\x65\x4c\x95\x00\x00\x1b\x8e\x08\xc5\xe3\x35\ +\x00\x00\x1a\xd9\x08\xca\xc9\x74\x00\x00\x14\x7c\x08\xfb\xb8\xa4\ +\x00\x00\x09\xa4\x09\x69\xac\xa7\x00\x00\x1e\x39\x09\x6c\x6c\xa7\ +\x00\x00\x0a\x2b\x09\x9f\xcc\xde\x00\x00\x21\x98\x09\xba\xe6\x35\ +\x00\x00\x0f\xf0\x09\xba\xe6\x35\x00\x00\x34\x97\x09\xc5\xbe\xca\ +\x00\x00\x09\x04\x09\xe3\x98\xe4\x00\x00\x24\xd4\x09\xed\x98\x55\ +\x00\x00\x2f\xa4\x0a\x3e\x06\x83\x00\x00\x04\x9e\x0a\x3f\x1f\xd6\ +\x00\x00\x04\xd8\x0a\x3f\x2b\x25\x00\x00\x05\x67\x0a\x3f\x5d\xac\ +\x00\x00\x05\xea\x0a\x7f\xee\xa3\x00\x00\x42\x55\x0a\xb6\xc8\x9a\ +\x00\x00\x0a\x87\x0a\xbf\x46\x0e\x00\x00\x1d\x2e\x0a\xd6\x07\x84\ +\x00\x00\x1f\xd8\x0b\x0a\xc3\xf3\x00\x00\x00\x69\x0b\x51\x30\xa8\ +\x00\x00\x2c\xd8\x0b\x65\xda\xb3\x00\x00\x39\x49\x0b\x8d\x97\x93\ +\x00\x00\x40\x0f\x0b\x9c\x5b\xe7\x00\x00\x08\x67\x0b\xb9\xe8\x93\ +\x00\x00\x2d\x31\x0b\xc4\xb1\x23\x00\x00\x27\x36\x0c\x02\xac\xd7\ +\x00\x00\x02\xbb\x0c\x02\xac\xd7\x00\x00\x26\x11\x0c\x25\x3e\x53\ +\x00\x00\x30\x6d\x0c\x3c\x8b\x33\x00\x00\x42\x8c\x0c\x41\x0a\x83\ +\x00\x00\x42\xd8\x0c\x4e\x9b\x23\x00\x00\x2f\xf1\x0c\x98\x80\x23\ +\x00\x00\x43\x18\x0c\xc4\xd0\x80\x00\x00\x23\xc8\x0c\xdf\x5a\x1e\ +\x00\x00\x01\x82\x0c\xfc\x97\x06\x00\x00\x1e\x70\x0d\x03\x26\xb4\ +\x00\x00\x02\x78\x0d\x08\x90\xf3\x00\x00\x1a\x6c\x0d\x1e\xda\xa4\ +\x00\x00\x03\x23\x0d\x3b\x3b\x49\x00\x00\x33\x57\x0d\xa8\x3a\x35\ +\x00\x00\x17\x41\x0d\xc1\x7d\x47\x00\x00\x24\x20\x0d\xfa\x53\xe5\ +\x00\x00\x07\xd9\x0e\x69\x87\x13\x00\x00\x2e\xc4\x0e\x8c\xd7\x43\ +\x00\x00\x32\x9e\x0e\x98\x0a\xd6\x00\x00\x1d\x74\x0e\xab\x8d\x1f\ +\x00\x00\x38\x39\x0e\xb9\x1b\xf2\x00\x00\x14\x1b\x0e\xec\x0b\x9e\ +\x00\x00\x26\x4b\x0f\x16\x4a\x24\x00\x00\x1c\x9b\x0f\x17\xc7\xa3\ +\x00\x00\x28\x12\x0f\x55\xc1\x57\x00\x00\x06\x24\x0f\x78\x41\x05\ +\x00\x00\x41\x62\x0f\x79\xe3\xf3\x00\x00\x28\xee\x0f\x95\xd5\x09\ +\x00\x00\x17\xf9\x0f\xa2\x16\x43\x00\x00\x1c\x67\x0f\xc0\xb8\xb4\ +\x00\x00\x0c\xd6\x0f\xd0\x39\x44\x00\x00\x02\x35\x0f\xe5\x74\x74\ +\x00\x00\x00\x9d\x0f\xf3\xe8\x33\x00\x00\x3a\xf8\x69\x00\x00\x44\ +\x97\x03\x00\x00\x00\x20\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x42\x00\x75\x00\x69\x00\x6c\x00\x64\ +\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x20\x43\x72\x65\x61\x74\x65\x20\x42\x75\x69\x6c\x64\x69\x6e\x67\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x8f\ +\xfd\x52\xa0\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\x64\x64\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\ +\x41\x00\x64\x00\x64\x00\x69\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x41\x64\x64\x69\x74\ +\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x12\x00\x41\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x41\ +\x6c\x69\x67\x6e\x6d\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x36\x00\x41\x00\x6c\x00\x6c\x00\x20\x00\ +\x67\x00\x6f\x00\x6f\x00\x64\x00\x21\x00\x20\x00\x6e\x00\x6f\x00\ +\x20\x00\x70\x00\x72\x00\x6f\x00\x62\x00\x6c\x00\x65\x00\x6d\x00\ +\x73\x00\x20\x00\x66\x00\x6f\x00\x75\x00\x6e\x00\x64\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1b\x41\x6c\x6c\x20\x67\x6f\x6f\x64\x21\ +\x20\x6e\x6f\x20\x70\x72\x6f\x62\x6c\x65\x6d\x73\x20\x66\x6f\x75\ +\x6e\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x04\x89\xd2\x5e\xa6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\ +\x6e\x67\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x08\x00\x41\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x04\x41\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x4e\x00\x41\x00\x78\x00\x65\x00\x73\ +\x00\x20\x00\x73\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x73\ +\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\x00\x74\ +\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\ +\x00\x69\x00\x73\x00\x20\x00\x62\x00\x75\x00\x69\x00\x6c\x00\x74\ +\x00\x20\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\ +\x41\x78\x65\x73\x20\x73\x79\x73\x74\x65\x6d\x73\x20\x74\x68\x69\ +\x73\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x69\x73\x20\x62\ +\x75\x69\x6c\x74\x20\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x08\x00\x41\x00\x78\x00\x69\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\x69\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x00\x42\x00\x61\x00\ +\x73\x00\x65\x00\x20\x00\x32\x00\x44\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0e\x42\x61\x73\x65\x20\x32\x44\x20\x6f\x62\x6a\x65\x63\x74\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x00\x42\ +\x00\x61\x00\x73\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0e\x42\x61\x73\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\ +\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x10\x00\x42\x00\x75\x00\x69\x00\x6c\x00\x64\x00\x69\x00\x6e\x00\ +\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\x6c\x64\ +\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x14\x00\x43\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ +\x00\x6e\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\ +\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x43\x00\x6f\x00\x6d\x00\ +\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x19\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\ +\x6f\x66\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x43\x00\ +\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x43\x6f\x6e\x74\x69\x6e\x75\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x43\ +\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x75\x00\x74\x00\x65\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\ +\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1f\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x63\ +\x6f\x6d\x70\x75\x74\x65\x20\x74\x68\x65\x20\x77\x61\x6c\x6c\x20\ +\x73\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x3a\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\ +\x00\x27\x00\x74\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x74\ +\x00\x65\x00\x20\x00\x49\x00\x66\x00\x63\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x0a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1d\x43\x6f\x75\x6c\x64\x6e\x27\x74\ +\x20\x6c\x6f\x63\x61\x74\x65\x20\x49\x66\x63\x4f\x70\x65\x6e\x53\ +\x68\x65\x6c\x6c\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x16\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ +\x00\x20\x00\x41\x00\x78\x00\x69\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x41\x78\x69\x73\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x43\ +\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x52\x00\x6f\ +\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\ +\x65\x61\x74\x65\x20\x52\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x28\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x53\x00\x65\x00\x63\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x6e\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\x74\x65\ +\x20\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x43\x00\ +\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\x69\x00\ +\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\ +\x61\x74\x65\x20\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x20\x00\x53\x00\x74\x00\x72\x00\x75\x00\x63\x00\ +\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x10\x43\x72\x65\x61\x74\x65\x20\x53\x74\x72\x75\x63\x74\x75\x72\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x57\ +\x00\x61\x00\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ +\x43\x72\x65\x61\x74\x65\x20\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x20\x00\x57\x00\x69\x00\x6e\x00\x64\ +\x00\x6f\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x72\ +\x65\x61\x74\x65\x20\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\ +\x74\x65\x20\x6e\x65\x77\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\ +\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x2f\x00\x75\x00\ +\x70\x00\x64\x00\x61\x00\x74\x00\x65\x00\x20\x00\x63\x00\x6f\x00\ +\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\x74\x65\x2f\x75\x70\ +\x64\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x8d\xdd\x96\ +\xe2\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\ +\x6e\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x42\x00\x44\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x63\ +\x00\x65\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\ +\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x62\x00\x65\ +\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x78\ +\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x44\x69\ +\x73\x74\x61\x6e\x63\x65\x73\x20\x61\x6e\x64\x20\x61\x6e\x67\x6c\ +\x65\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x61\x78\x65\x73\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x7d\xe8\ +\x96\xc6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4e\x00\ +\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x20\x00\x72\x00\x65\x00\ +\x6d\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\ +\x70\x00\x6c\x00\x69\x00\x74\x00\x74\x00\x65\x00\x72\x00\x20\x00\ +\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x77\x00\x61\x00\x6c\x00\ +\x6c\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x27\x45\x72\x72\x6f\x72\x20\x72\x65\x6d\ +\x6f\x76\x69\x6e\x67\x20\x73\x70\x6c\x69\x74\x74\x65\x72\x20\x66\ +\x72\x6f\x6d\x20\x77\x61\x6c\x6c\x20\x73\x68\x61\x70\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x58\x00\x45\x00\ +\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x43\x00\x6f\x00\ +\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x64\x00\ +\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x65\x00\ +\x20\x00\x63\x00\x68\x00\x61\x00\x72\x00\x61\x00\x63\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\x64\x00\ +\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x45\ +\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x64\ +\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\x61\x72\x61\x63\x74\ +\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5a\x00\x45\x00\x72\x00\x72\ +\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x43\x00\x6f\x00\x75\x00\x6c\ +\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x64\x00\x65\x00\x74\ +\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x63\ +\x00\x68\x00\x61\x00\x72\x00\x61\x00\x63\x00\x74\x00\x65\x00\x72\ +\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\x64\x00\x69\x00\x6e\ +\x00\x67\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x45\x72\ +\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x64\x65\ +\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\ +\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x0a\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\x45\x00\x72\x00\x72\ +\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x49\x00\x6e\x00\x76\x00\x61\ +\x00\x6c\x00\x69\x00\x64\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1a\x45\x72\x72\x6f\x72\x3a\x20\x49\ +\x6e\x76\x61\x6c\x69\x64\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\ +\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x02\x5e\x8a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\ +\x6f\x72\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x10\x00\x47\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x69\x00\x6e\x00\ +\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x47\x72\x6f\x75\x70\ +\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0c\x00\x48\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x48\x65\x69\x67\x68\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x56\x00\x49\x00\ +\x46\x00\x43\x00\x20\x00\x53\x00\x63\x00\x68\x00\x65\x00\x6d\x00\ +\x61\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\x6f\x00\ +\x75\x00\x6e\x00\x64\x00\x2c\x00\x20\x00\x49\x00\x46\x00\x43\x00\ +\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\ +\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x64\x00\ +\x2e\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\x46\x43\ +\x20\x53\x63\x68\x65\x6d\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\ +\x64\x2c\x20\x49\x46\x43\x20\x69\x6d\x70\x6f\x72\x74\x20\x64\x69\ +\x73\x61\x62\x6c\x65\x64\x2e\x0a\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\xd2\x00\x49\x00\x66\x00\x20\x00\x54\x00\ +\x72\x00\x75\x00\x65\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\ +\x6c\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\ +\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\ +\x66\x00\x61\x00\x63\x00\x65\x00\x2c\x00\x20\x00\x69\x00\x74\x00\ +\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x75\x00\x73\x00\ +\x65\x00\x20\x00\x69\x00\x74\x00\x73\x00\x20\x00\x62\x00\x6f\x00\ +\x72\x00\x64\x00\x65\x00\x72\x00\x20\x00\x77\x00\x69\x00\x72\x00\ +\x65\x00\x20\x00\x61\x00\x73\x00\x20\x00\x74\x00\x72\x00\x61\x00\ +\x63\x00\x65\x00\x2c\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\ +\x64\x00\x69\x00\x73\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\ +\x64\x00\x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x66\x00\x61\x00\x63\x00\x65\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x69\x49\x66\x20\x54\x72\x75\x65\x2c\x20\x69\x66\x20\x74\ +\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\ +\x64\x20\x6f\x6e\x20\x61\x20\x66\x61\x63\x65\x2c\x20\x69\x74\x20\ +\x77\x69\x6c\x6c\x20\x75\x73\x65\x20\x69\x74\x73\x20\x62\x6f\x72\ +\x64\x65\x72\x20\x77\x69\x72\x65\x20\x61\x73\x20\x74\x72\x61\x63\ +\x65\x2c\x20\x61\x6e\x64\x20\x64\x69\x73\x63\x6f\x6e\x73\x69\x64\ +\x65\x72\x20\x74\x68\x65\x20\x66\x61\x63\x65\x2e\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x4d\x00\x65\x00\ +\x73\x00\x68\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x53\x00\x68\x00\ +\x61\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\ +\x65\x73\x68\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x54\x0d\x52\x4d\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\x61\x6d\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x24\x00\x4e\x00\x6f\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\ +\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4e\x6f\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x4e\x00\x6f\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\ +\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x63\x00\x75\x00\x74\x00\ +\x20\x00\x62\x00\x79\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1f\x4e\x6f\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x72\ +\x65\x20\x63\x75\x74\x20\x62\x79\x20\x74\x68\x65\x20\x70\x6c\x61\ +\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x96\x00\x4e\x00\x6f\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\ +\x65\x00\x20\x00\x68\x00\x61\x00\x73\x00\x20\x00\x62\x00\x65\x00\ +\x65\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x75\x00\ +\x74\x00\x65\x00\x64\x00\x20\x00\x79\x00\x65\x00\x74\x00\x2c\x00\ +\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\ +\x77\x00\x69\x00\x72\x00\x65\x00\x66\x00\x72\x00\x61\x00\x6d\x00\ +\x65\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\ +\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x61\x00\ +\x67\x00\x61\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x4b\x4e\x6f\x20\x73\x68\x61\x70\x65\x20\x68\x61\x73\x20\x62\x65\ +\x65\x6e\x20\x63\x6f\x6d\x70\x75\x74\x65\x64\x20\x79\x65\x74\x2c\ +\x20\x73\x65\x6c\x65\x63\x74\x20\x77\x69\x72\x65\x66\x72\x61\x6d\ +\x65\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x20\x61\x6e\x64\x20\ +\x72\x65\x6e\x64\x65\x72\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x4f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x07\x4f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x50\x00\x61\x00\x67\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x50\x61\x67\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x52\x4a\ +\x96\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x65\x6d\x6f\ +\x76\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x08\x00\x52\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x08\x00\x53\x00\x69\x00\x74\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x53\x00\x6b\x00\ +\x69\x00\x70\x00\x70\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x69\x00\ +\x6e\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x3a\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x19\x53\x6b\x69\x70\x70\x69\x6e\x67\x20\ +\x69\x6e\x76\x61\x6c\x69\x64\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\ +\x53\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x20\x00\x4d\x00\x65\x00\ +\x73\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\ +\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x12\x00\x53\x00\x74\x00\x72\x00\x75\x00\x63\ +\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x53\x00\x75\x00\x62\ +\x00\x74\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x75\x62\x74\ +\x72\x61\x63\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x78\x00\x54\x00\x68\x00\x65\x00\x20\x00\ +\x61\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\ +\x6e\x00\x20\x00\x69\x00\x74\x00\x73\x00\x20\x00\x62\x00\x61\x00\ +\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\x61\x00\x70\x00\ +\x70\x00\x6c\x00\x69\x00\x63\x00\x61\x00\x62\x00\x6c\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x3c\x54\x68\x65\x20\x61\x6c\x69\ +\x67\x6e\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\ +\x61\x6c\x6c\x20\x6f\x6e\x20\x69\x74\x73\x20\x62\x61\x73\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x2c\x20\x69\x66\x20\x61\x70\x70\x6c\x69\ +\x63\x61\x62\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x2c\x00\x54\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6e\ +\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x72\x00\x6f\x00\x6f\x00\x66\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x68\x65\x20\x61\x6e\ +\x67\x6c\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x72\x6f\x6f\x66\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\ +\x65\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x65\x00\x61\x00\ +\x63\x00\x68\x00\x20\x00\x61\x00\x78\x00\x69\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\ +\x73\x20\x6f\x66\x20\x65\x61\x63\x68\x20\x61\x78\x69\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4c\x00\x54\x00\ +\x68\x00\x65\x00\x20\x00\x64\x00\x69\x00\x73\x00\x70\x00\x6c\x00\ +\x61\x00\x79\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ +\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x26\x54\x68\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x73\ +\x69\x7a\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\ +\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x86\x00\x54\x00\x68\x00\x65\x00\x20\ +\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\ +\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x73\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x65\x00\x78\x00\x63\x00\x6c\x00\x75\ +\x00\x64\x00\x65\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\ +\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\x00\x74\x00\x72\ +\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x69\ +\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\ +\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x43\x54\x68\x65\x20\x65\x6c\x65\x6d\ +\x65\x6e\x74\x20\x6e\x75\x6d\x62\x65\x72\x73\x20\x74\x6f\x20\x65\ +\x78\x63\x6c\x75\x64\x65\x20\x77\x68\x65\x6e\x20\x74\x68\x69\x73\ +\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x69\x73\x20\x62\x61\ +\x73\x65\x64\x20\x6f\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x74\x00\x54\x00\x68\x00\x65\ +\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6e\x00\x75\ +\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\ +\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\ +\x00\x62\x00\x75\x00\x69\x00\x6c\x00\x64\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x72\x00\x6f\x00\x6f\x00\x66\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x3a\x54\x68\x65\x20\x66\x61\x63\x65\ +\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x74\x68\x65\x20\x62\ +\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x75\x73\x65\x64\x20\ +\x74\x6f\x20\x62\x75\x69\x6c\x64\x20\x74\x68\x69\x73\x20\x72\x6f\ +\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x30\x00\x54\x00\x68\x00\x65\x00\x20\x00\x68\x00\x65\x00\x69\x00\ +\x67\x00\x68\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x66\x00\x6c\x00\x6f\x00\x6f\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x54\x68\x65\x20\x68\ +\x65\x69\x67\x68\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x66\x6c\ +\x6f\x6f\x72\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\xb0\x00\x54\x00\x68\x00\x65\x00\x20\x00\x68\x00\x65\x00\x69\ +\x00\x67\x00\x68\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\ +\x00\x2e\x00\x20\x00\x4b\x00\x65\x00\x65\x00\x70\x00\x20\x00\x30\ +\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\ +\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x2e\x00\x20\ +\x00\x4e\x00\x6f\x00\x74\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\ +\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x73\ +\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\ +\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\ +\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x58\x54\x68\x65\x20\ +\x68\x65\x69\x67\x68\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\ +\x61\x6c\x6c\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\x20\ +\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x2e\x20\x4e\x6f\x74\x20\x75\ +\x73\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\ +\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x73\ +\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x86\x00\x54\x00\x68\x00\x65\x00\x20\x00\x68\x00\x65\x00\ +\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\ +\x65\x00\x78\x00\x74\x00\x72\x00\x75\x00\x73\x00\x69\x00\x6f\x00\ +\x6e\x00\x20\x00\x64\x00\x65\x00\x70\x00\x74\x00\x68\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\ +\x20\x00\x4b\x00\x65\x00\x65\x00\x70\x00\x20\x00\x30\x00\x20\x00\ +\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\ +\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x43\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\x6f\x72\ +\x20\x65\x78\x74\x72\x75\x73\x69\x6f\x6e\x20\x64\x65\x70\x74\x68\ +\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\ +\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\x20\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x34\x00\x54\x00\x68\x00\x65\x00\x20\x00\x69\x00\ +\x6e\x00\x74\x00\x65\x00\x72\x00\x76\x00\x61\x00\x6c\x00\x73\x00\ +\x20\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\ +\x20\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1a\x54\x68\x65\x20\x69\x6e\x74\x65\x72\x76\x61\x6c\x73\ +\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2c\x00\x54\x00\x68\ +\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x16\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\ +\x74\x68\x65\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x6a\x00\x54\x00\x68\x00\x65\x00\x20\x00\ +\x6c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x65\x00\ +\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2c\x00\x20\x00\ +\x69\x00\x66\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x62\x00\ +\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\ +\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x66\x00\x69\x00\x6c\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x54\x68\x65\x20\x6c\ +\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\ +\x65\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\x6e\x6f\x74\x20\x62\x61\ +\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\x72\x6f\x66\x69\x6c\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xa2\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\ +\x61\x00\x6c\x00\x20\x00\x65\x00\x78\x00\x74\x00\x72\x00\x75\x00\ +\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x72\x00\ +\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x28\x00\x6b\x00\ +\x65\x00\x65\x00\x70\x00\x20\x00\x28\x00\x30\x00\x2c\x00\x30\x00\ +\x2c\x00\x30\x00\x29\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\ +\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\ +\x63\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\ +\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x54\x68\x65\x20\x6e\ +\x6f\x72\x6d\x61\x6c\x20\x65\x78\x74\x72\x75\x73\x69\x6f\x6e\x20\ +\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x69\ +\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x6b\x65\x65\x70\x20\x28\ +\x30\x2c\x30\x2c\x30\x29\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\ +\x61\x74\x69\x63\x20\x6e\x6f\x72\x6d\x61\x6c\x29\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x54\x00\x68\x00\ +\x65\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x65\x00\x72\x00\x61\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x73\x00\x74\x00\x79\x00\ +\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\ +\x20\x6e\x75\x6d\x65\x72\x61\x74\x69\x6f\x6e\x20\x73\x74\x79\x6c\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xa6\ +\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x73\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\ +\x00\x20\x00\x6d\x00\x75\x00\x73\x00\x74\x00\x20\x00\x62\x00\x65\ +\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\ +\x00\x72\x00\x65\x00\x64\x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\ +\x00\x65\x00\x2e\x00\x20\x00\x45\x00\x6d\x00\x70\x00\x74\x00\x79\ +\x00\x20\x00\x6d\x00\x65\x00\x61\x00\x6e\x00\x73\x00\x20\x00\x61\ +\x00\x6c\x00\x6c\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\ +\x54\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x74\x68\x61\x74\ +\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\ +\x72\x65\x64\x20\x62\x79\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\ +\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x2e\x20\x45\x6d\x70\x74\x79\ +\x20\x6d\x65\x61\x6e\x73\x20\x61\x6c\x6c\x20\x64\x6f\x63\x75\x6d\ +\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x38\x00\x54\x00\x68\x00\x65\x00\x20\x00\x73\x00\x69\x00\x7a\ +\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x61\x00\x78\x00\x69\x00\x73\x00\x20\x00\x62\x00\x75\ +\x00\x62\x00\x62\x00\x6c\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1c\x54\x68\x65\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\ +\x74\x68\x65\x20\x61\x78\x69\x73\x20\x62\x75\x62\x62\x6c\x65\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x68\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\ +\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\x6e\x00\x6f\x00\ +\x74\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\ +\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x66\x00\x69\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x34\x54\x68\x65\x20\x77\x69\x64\x74\x68\x20\x6f\x66\x20\x74\x68\ +\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\x6e\ +\x6f\x74\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\x72\ +\x6f\x66\x69\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x80\x00\x54\x00\x68\x00\x65\x00\x20\x00\x77\x00\x69\ +\x00\x64\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\ +\x00\x2e\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x20\x00\x75\x00\x73\ +\x00\x65\x00\x64\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\ +\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\ +\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\ +\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x40\x54\x68\ +\x65\x20\x77\x69\x64\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x77\x61\x6c\x6c\x2e\x20\x4e\x6f\x74\x20\x75\x73\x65\x64\x20\x69\ +\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\ +\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x66\x61\x63\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x54\x00\ +\x68\x00\x69\x00\x63\x00\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\x68\x69\x63\x6b\x6e\x65\ +\x73\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x3a\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6d\x00\x65\x00\ +\x73\x00\x68\x00\x20\x00\x69\x00\x73\x00\x20\x00\x61\x00\x6e\x00\ +\x20\x00\x69\x00\x6e\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\ +\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1d\x54\x68\x69\x73\x20\x6d\x65\x73\x68\x20\x69\ +\x73\x20\x61\x6e\x20\x69\x6e\x76\x61\x6c\x69\x64\x20\x73\x6f\x6c\ +\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x06\x30\xbf\x30\xa4\x30\xd7\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x54\x79\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x1e\x00\x54\x00\x79\x00\x70\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x54\x79\x70\x65\ +\x20\x63\x6f\x6e\x76\x65\x72\x73\x69\x6f\x6e\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x55\x00\x6e\x00\x61\ +\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\ +\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x61\x00\x20\ +\x00\x72\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x17\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\ +\x74\x65\x20\x61\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x34\x00\x55\x00\x6e\x00\x61\x00\x62\ +\x00\x6c\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1a\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\ +\x63\x72\x65\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\ +\x55\x00\x6e\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x69\x00\ +\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x55\x6e\x67\ +\x72\x6f\x75\x70\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x0e\x00\x56\x00\x69\x00\x65\x00\x77\x00\x20\ +\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x56\x69\ +\x65\x77\x20\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x02\x58\xc1\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x18\x00\x57\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\ +\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0c\x57\x61\x6c\x6c\x20\x6f\x70\x74\x69\x6f\x6e\ +\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\ +\x00\x57\x00\x61\x00\x6c\x00\x6c\x00\x54\x00\x72\x00\x61\x00\x63\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x57\x61\x6c\x6c\ +\x54\x72\x61\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x0a\x00\x57\x00\x69\x00\x64\x00\x74\x00\x68\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x57\x69\x64\x74\x68\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x30\xa6\x30\xa3\ +\x30\xf3\x30\xc9\x30\xa6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x0a\x00\x57\x00\x69\x00\x72\x00\x65\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x05\x57\x69\x72\x65\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x5a\x00\ +\x20\x00\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x5a\x20\x6f\x66\x66\x73\x65\x74\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x26\x00\x63\ +\x00\x6c\x00\x6f\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x53\ +\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x20\x00\x65\x00\x64\ +\x00\x69\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x63\x6c\ +\x6f\x73\x69\x6e\x67\x20\x53\x6b\x65\x74\x63\x68\x20\x65\x64\x69\ +\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x36\ +\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x73\ +\x00\x20\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x63\ +\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x20\x00\x73\x00\x6f\ +\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\ +\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x61\x20\x6e\x6f\x6e\x2d\x63\ +\x6c\x6f\x73\x65\x64\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5a\x00\x63\x00\x6f\x00\x6e\ +\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x20\x00\x66\x00\x61\ +\x00\x63\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\ +\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x6f\x00\x6c\ +\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x63\x6f\ +\x6e\x74\x61\x69\x6e\x73\x20\x66\x61\x63\x65\x73\x20\x74\x68\x61\ +\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x70\x61\x72\x74\x20\x6f\ +\x66\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x64\x00\x6f\x00\x65\ +\x00\x73\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6e\ +\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x61\x00\x6e\x00\x79\ +\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x19\x64\x6f\x65\x73\x6e\x27\x74\x20\x63\x6f\ +\x6e\x74\x61\x69\x6e\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x66\ +\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x25\x00\x73\x00\x20\x00\x73\ +\x00\x75\x00\x63\x00\x63\x00\x65\x00\x73\x00\x73\x00\x66\x00\x75\ +\x00\x6c\x00\x6c\x00\x79\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x64\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1d\x66\x69\x6c\x65\x20\x25\x73\x20\x73\x75\x63\x63\x65\x73\ +\x73\x66\x75\x6c\x6c\x79\x20\x63\x72\x65\x61\x74\x65\x64\x2e\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x69\ +\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x63\x00\x6c\ +\x00\x6f\x00\x73\x00\x65\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x69\x73\x20\x6e\x6f\x74\x20\x63\x6c\x6f\x73\x65\x64\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x69\ +\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x76\x00\x61\ +\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x69\x73\x20\x6e\x6f\x74\x20\x76\x61\x6c\x69\x64\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x52\x00\x70\x00\x79\x00\ +\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\ +\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\x6f\x00\x75\x00\x6e\x00\ +\x64\x00\x2c\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\ +\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x73\x00\x75\x00\ +\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x2e\x00\x0a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x29\x70\x79\x63\x6f\x6c\x6c\x61\x64\x61\ +\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x6e\x6f\x20\x63\ +\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\x6f\x72\x74\x2e\x0a\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x64\x00\ +\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x20\x00\ +\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\ +\x74\x00\x6f\x00\x20\x00\x61\x00\x76\x00\x6f\x00\x69\x00\x64\x00\ +\x20\x00\x63\x00\x72\x00\x6f\x00\x73\x00\x73\x00\x2d\x00\x72\x00\ +\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x69\x00\ +\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x72\x65\x6d\ +\x6f\x76\x69\x6e\x67\x20\x73\x6b\x65\x74\x63\x68\x20\x73\x75\x70\ +\x70\x6f\x72\x74\x20\x74\x6f\x20\x61\x76\x6f\x69\x64\x20\x63\x72\ +\x6f\x73\x73\x2d\x72\x65\x66\x65\x72\x65\x6e\x63\x69\x6e\x67\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x73\ +\x00\x75\x00\x63\x00\x63\x00\x65\x00\x73\x00\x73\x00\x66\x00\x75\ +\x00\x6c\x00\x6c\x00\x79\x00\x20\x00\x77\x00\x72\x00\x69\x00\x74\ +\x00\x74\x00\x65\x00\x6e\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x15\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x77\ +\x72\x69\x74\x74\x65\x6e\x20\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x3a\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\ +\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x74\x68\x65\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\ +\x20\x77\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x1a\x00\x41\x00\x64\x00\x64\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\ +\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x62\x00\x41\x00\x64\x00\x64\ +\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x31\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\ +\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x08\x00\x41\x00\x78\x00\x69\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\x69\x73\ +\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x41\x78\x69\x73\x01\x03\ +\x00\x00\x00\x2e\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ +\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x69\ +\x00\x73\x00\x20\x00\x73\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\ +\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x6e\x20\x61\x78\x69\x73\x20\x73\x79\x73\x74\ +\x65\x6d\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x41\x78\x69\ +\x73\x01\x03\x00\x00\x00\x10\x00\x42\x00\x75\x00\x69\x00\x6c\x00\ +\x64\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x0d\x41\x72\ +\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\ +\x6a\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\ +\x20\x00\x61\x00\x20\x00\x62\x00\x75\x00\x69\x00\x6c\x00\x64\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\ +\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x2e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x35\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x62\ +\x75\x69\x6c\x64\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\ +\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x0d\x41\ +\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\ +\x00\x08\x00\x43\x00\x65\x00\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x43\x65\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\ +\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x60\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\ +\x00\x63\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\ +\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ +\x63\x65\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\ +\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\ +\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x0a\x00\x43\x00\x68\x00\x65\ +\x00\x63\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x43\x68\ +\x65\x63\x6b\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\ +\x63\x6b\x01\x03\x00\x00\x00\x50\x00\x43\x00\x68\x00\x65\x00\x63\ +\x00\x6b\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\ +\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\ +\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x62\ +\x00\x6c\x00\x65\x00\x6d\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x28\x43\x68\x65\x63\x6b\x73\x20\x74\x68\x65\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x6f\ +\x72\x20\x70\x72\x6f\x62\x6c\x65\x6d\x73\x07\x00\x00\x00\x0a\x41\ +\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\x01\x03\x00\x00\x00\x16\x00\ +\x43\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x68\x00\x6f\x00\ +\x6c\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\ +\x6c\x6f\x73\x65\x20\x68\x6f\x6c\x65\x73\x07\x00\x00\x00\x0f\x41\ +\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\x01\x03\ +\x00\x00\x00\x60\x00\x43\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x73\ +\x00\x20\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x69\ +\x00\x6e\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x73\ +\x00\x68\x00\x61\x00\x70\x00\x65\x00\x73\x00\x2c\x00\x20\x00\x74\ +\x00\x75\x00\x72\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x6d\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\ +\x00\x64\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x6c\ +\x6f\x73\x65\x73\x20\x68\x6f\x6c\x65\x73\x20\x69\x6e\x20\x6f\x70\ +\x65\x6e\x20\x73\x68\x61\x70\x65\x73\x2c\x20\x74\x75\x72\x6e\x69\ +\x6e\x67\x20\x74\x68\x65\x6d\x20\x73\x6f\x6c\x69\x64\x73\x07\x00\ +\x00\x00\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\ +\x65\x73\x01\x03\x00\x00\x00\x62\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x66\x00\x6c\ +\x00\x6f\x00\x6f\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\ +\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x65\x00\x6c\ +\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x66\x6c\ +\x6f\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\ +\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\ +\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x02\x5e\x8a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x0a\ +\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x1a\ +\x00\x4d\x00\x65\x00\x73\x00\x68\x00\x20\x00\x74\x00\x6f\x00\x20\ +\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x74\x6f\x20\x53\x68\x61\x70\ +\x65\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\ +\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x5a\x00\x54\x00\x75\ +\x00\x72\x00\x6e\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\ +\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6d\x00\x65\x00\x73\ +\x00\x68\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\ +\x00\x20\x00\x50\x00\x61\x00\x72\x00\x74\x00\x20\x00\x53\x00\x68\ +\x00\x61\x00\x70\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\ +\x54\x75\x72\x6e\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\ +\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x50\x61\x72\x74\x20\ +\x53\x68\x61\x70\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ +\x00\x10\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\ +\x70\x65\x01\x03\x00\x00\x00\x20\x00\x52\x00\x65\x00\x6d\x00\x6f\ +\x00\x76\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\ +\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x10\x52\x65\x6d\x6f\x76\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\ +\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\ +\x76\x65\x01\x03\x00\x00\x00\xa4\x00\x52\x00\x65\x00\x6d\x00\x6f\ +\x00\x76\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\ +\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ +\x00\x74\x00\x73\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x69\x00\x72\x00\x20\x00\x70\x00\x61\ +\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x2c\x00\x20\x00\x6f\ +\x00\x72\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ +\x00\x20\x00\x61\x00\x20\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x20\ +\x00\x69\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x52\x52\x65\x6d\x6f\x76\x65\x20\x74\x68\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\ +\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x69\x72\x20\ +\x70\x61\x72\x65\x6e\x74\x73\x2c\x20\x6f\x72\x20\x63\x72\x65\x61\ +\x74\x65\x20\x61\x20\x68\x6f\x6c\x65\x20\x69\x6e\x20\x61\x20\x63\ +\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\ +\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\x1e\x00\x41\ +\x00\x72\x00\x63\x00\x68\x30\x4b\x30\x89\x56\xf3\x5f\x62\x30\x92\ +\x52\x4a\x96\x64\x30\x57\x30\x7e\x30\x59\x30\x02\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x16\x52\x65\x6d\x6f\x76\x65\x20\x53\x68\x61\ +\x70\x65\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x07\x00\x00\x00\ +\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\ +\x65\x01\x03\x00\x00\x00\x52\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\ +\x76\x00\x65\x00\x73\x00\x20\x00\x63\x00\x75\x00\x62\x00\x69\x00\ +\x63\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x00\x73\x00\ +\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x41\x00\x72\x00\ +\x63\x00\x68\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\ +\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x29\x52\x65\x6d\x6f\x76\x65\x73\x20\x63\x75\x62\x69\x63\ +\x20\x73\x68\x61\x70\x65\x73\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\ +\x68\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\ +\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\ +\x65\x01\x03\x00\x00\x00\x72\x00\x43\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x72\x00\x6f\x00\ +\x6f\x00\x66\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x65\x00\x64\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x39\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x72\x6f\x6f\ +\x66\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x74\x68\ +\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x66\x61\x63\x65\x20\ +\x6f\x66\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ +\x09\x41\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x08\ +\x00\x52\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\ +\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x7c\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x73\ +\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x70\ +\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\x00\x69\x00\x6e\x00\x63\ +\x00\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\ +\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3e\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x65\x63\x74\x69\x6f\ +\x6e\x20\x70\x6c\x61\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\ +\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ +\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\ +\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x1a\x00\x53\x00\x65\x00\x63\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x50\x00\x6c\x00\x61\ +\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\ +\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\ +\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\ +\x65\x01\x03\x00\x00\x00\x34\x00\x53\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x6d\x00\ +\x61\x00\x6e\x00\x69\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\ +\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\x6e\x6f\x6e\x2d\ +\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x07\ +\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\ +\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\ +\x00\x00\x9a\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x73\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\ +\x6e\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\x66\x00\x6f\x00\ +\x6c\x00\x64\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\ +\x73\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\ +\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ +\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4d\x53\x65\x6c\x65\x63\x74\x73\x20\x61\ +\x6c\x6c\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\ +\x6d\x65\x73\x68\x65\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\ +\x64\x6f\x63\x75\x6d\x65\x6e\x74\x20\x6f\x72\x20\x66\x72\x6f\x6d\ +\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x67\x72\ +\x6f\x75\x70\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\ +\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\ +\x65\x73\x01\x03\x00\x00\x00\x62\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x73\x00\x69\ +\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x64\ +\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\ +\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x69\ +\x74\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\ +\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\ +\x69\x74\x65\x01\x03\x00\x00\x00\x08\x00\x53\x00\x69\x00\x74\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\ +\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\ +\x00\x00\x14\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x20\x00\ +\x4d\x00\x65\x00\x73\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x0e\ +\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\ +\x00\x00\x00\x64\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x73\ +\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\ +\x00\x64\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\ +\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x69\x00\x6e\ +\x00\x64\x00\x65\x00\x70\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\ +\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ +\x00\x65\x00\x6e\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x32\x53\x70\x6c\x69\x74\x73\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x69\x6e\ +\x64\x65\x70\x65\x6e\x64\x65\x6e\x74\x20\x63\x6f\x6d\x70\x6f\x6e\ +\x65\x6e\x74\x73\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\ +\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\xbe\x00\x43\x00\ +\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\ +\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\ +\x72\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x73\x00\ +\x63\x00\x72\x00\x61\x00\x74\x00\x63\x00\x68\x00\x20\x00\x6f\x00\ +\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\ +\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\ +\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x28\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\ +\x2c\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x2c\x00\x20\x00\ +\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\ +\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x5f\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\ +\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\ +\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x28\x73\x6b\x65\x74\x63\x68\x2c\x20\ +\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\ +\x6c\x69\x64\x29\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\ +\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\x12\x00\x53\x00\ +\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\x75\x63\x74\x75\ +\x72\x65\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\ +\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\xa4\x00\x43\x00\x72\x00\ +\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\ +\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ +\x20\x00\x73\x00\x63\x00\x72\x00\x61\x00\x74\x00\x63\x00\x68\x00\ +\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ +\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x28\x00\x77\x00\x69\x00\x72\x00\x65\x00\ +\x2c\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6f\x00\ +\x72\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x52\x43\x72\x65\x61\x74\x65\x73\ +\x20\x61\x20\x77\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\ +\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\ +\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x66\x61\x63\ +\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x09\ +\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\x02\x58\ +\xc1\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\ +\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\ +\x00\x00\x94\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\ +\x73\x00\x20\x00\x61\x00\x20\x00\x77\x00\x69\x00\x6e\x00\x64\x00\ +\x6f\x00\x77\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\ +\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\ +\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x28\x00\x77\x00\x69\x00\x72\x00\x65\x00\x2c\x00\x20\x00\ +\x72\x00\x65\x00\x63\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\ +\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x6b\x00\x65\x00\ +\x74\x00\x63\x00\x68\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x4a\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\x69\x6e\x64\x6f\ +\x77\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x61\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x28\x77\x69\x72\x65\x2c\x20\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\ +\x20\x6f\x72\x20\x73\x6b\x65\x74\x63\x68\x29\x07\x00\x00\x00\x0b\ +\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ +\x0a\x30\xa6\x30\xa3\x30\xf3\x30\xc9\x30\xa6\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x0b\ +\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ +\x18\x00\x32\x00\x44\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\ +\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0c\x32\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\ +\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x50\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\ +\x00\x65\x00\x73\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\ +\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x61\ +\x00\x63\x00\x68\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x74\ +\x00\x79\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\ +\x43\x72\x65\x61\x74\x65\x73\x20\x67\x72\x6f\x75\x70\x73\x20\x66\ +\x6f\x72\x20\x65\x61\x63\x68\x20\x41\x72\x63\x68\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x74\x79\x70\x65\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3c\x00\ +\x43\x00\x75\x00\x74\x00\x20\x00\x61\x00\x72\x00\x65\x00\x61\x00\ +\x73\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x63\x00\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x00\ +\x20\x00\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1e\x43\x75\x74\x20\x61\x72\x65\x61\x73\x20\x6c\ +\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\x73\x20\x72\x61\ +\x74\x69\x6f\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\x00\x44\x00\x65\x00\x66\ +\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\ +\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x73\ +\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x44\x65\x66\x61\ +\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x74\ +\x72\x75\x63\x74\x75\x72\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\ +\x44\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\ +\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x44\x65\x66\x61\x75\x6c\x74\x20\x63\ +\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\x61\x6c\x6c\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x32\x00\x44\x00\x65\x00\x66\x00\x61\x00\x75\x00\ +\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ +\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x77\x00\x69\x00\x6e\x00\ +\x64\x00\x6f\x00\x77\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x19\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\ +\x6f\x72\x20\x77\x69\x6e\x64\x6f\x77\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x2a\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\ +\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x53\x00\x65\x00\ +\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\x20\x41\x72\x63\ +\x68\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x0c\x51\x68\x82\x2c\x76\x84\x30\x6a\x8a\x2d\x5b\x9a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\ +\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x47\ +\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\ +\x00\x62\x00\x79\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x72\x6f\x75\x70\x20\ +\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x62\x79\x20\x74\x79\ +\x70\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x49\x00\x46\x00\x43\ +\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\x49\x46\x43\x20\x69\x6d\x70\x6f\ +\x72\x74\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\xba\x00\x49\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x49\x00\x46\x00\x43\x00\ +\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\ +\x6c\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\ +\x62\x00\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x61\x00\x6c\x00\x6c\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x69\x00\x6d\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x72\x00\x65\x00\ +\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\x74\x00\x79\x00\x70\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x49\x66\x20\ +\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x74\x68\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\ +\x6c\x20\x69\x6d\x70\x6f\x72\x74\x65\x72\x20\x77\x69\x6c\x6c\x20\ +\x62\x65\x20\x75\x73\x65\x64\x2c\x20\x61\x6c\x6c\x6f\x77\x69\x6e\ +\x67\x20\x74\x6f\x20\x69\x6d\x70\x6f\x72\x74\x20\x6d\x6f\x72\x65\ +\x20\x49\x46\x43\x20\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x56\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\ +\x66\x00\x75\x00\x72\x00\x6e\x00\x69\x00\x74\x00\x75\x00\x72\x00\ +\x65\x00\x20\x00\x28\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x6d\x00\ +\x61\x00\x6b\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x6d\x00\x6f\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x68\x00\x65\x00\ +\x61\x00\x76\x00\x79\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2b\x49\x6d\x70\x6f\x72\x74\x20\x66\x75\x72\x6e\x69\x74\x75\x72\ +\x65\x20\x28\x63\x61\x6e\x20\x6d\x61\x6b\x65\x20\x74\x68\x65\x20\ +\x6d\x6f\x64\x65\x6c\x20\x68\x65\x61\x76\x79\x29\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x54\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x64\x00\ +\x65\x00\x62\x00\x75\x00\x67\x00\x20\x00\x69\x00\x6e\x00\x66\x00\ +\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x20\x00\x64\x00\x75\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x32\x00\x44\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\ +\x72\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2a\x53\x68\x6f\x77\x20\x64\x65\x62\x75\x67\x20\x69\x6e\x66\x6f\ +\x72\x6d\x61\x74\x69\x6f\x6e\x20\x64\x75\x72\x69\x6e\x67\x20\x32\ +\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x38\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x72\x00\x65\ +\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x65\x00\x72\x00\x20\x00\x64\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x20\x00\x6d\x00\x65\x00\x73\ +\x00\x73\x00\x61\x00\x67\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1c\x53\x68\x6f\x77\x20\x72\x65\x6e\x64\x65\x72\x65\ +\x72\x20\x64\x65\x62\x75\x67\x20\x6d\x65\x73\x73\x61\x67\x65\x73\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x9e\x00\x53\x00\x70\x00\x65\x00\x63\x00\ +\x69\x00\x66\x00\x69\x00\x65\x00\x73\x00\x20\x00\x68\x00\x6f\x00\ +\x77\x00\x20\x00\x6d\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x74\x00\ +\x69\x00\x6d\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x76\x00\x69\x00\x65\x00\x77\x00\x65\x00\x64\x00\x20\x00\ +\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x63\x00\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x00\x20\x00\x6d\x00\ +\x75\x00\x73\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x61\x00\ +\x70\x00\x70\x00\x6c\x00\x69\x00\x65\x00\x64\x00\x20\x00\x74\x00\ +\x6f\x00\x20\x00\x63\x00\x75\x00\x74\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x53\ +\x70\x65\x63\x69\x66\x69\x65\x73\x20\x68\x6f\x77\x20\x6d\x61\x6e\ +\x79\x20\x74\x69\x6d\x65\x73\x20\x74\x68\x65\x20\x76\x69\x65\x77\ +\x65\x64\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\ +\x73\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x70\x70\x6c\x69\x65\ +\x64\x20\x74\x6f\x20\x63\x75\x74\x20\x6c\x69\x6e\x65\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x66\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\ +\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\ +\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\x53\x00\x74\x00\x72\x00\ +\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x33\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\ +\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\ +\x6f\x72\x20\x6e\x65\x77\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x65\ +\xb0\x30\x57\x30\x44\x58\xc1\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\ +\xaf\x30\xc8\x30\x6e\x30\xc7\x30\xd5\x30\xa9\x30\xeb\x30\xc8\x30\ +\x6e\x82\x72\x30\x67\x30\x59\x30\x02\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\ +\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ +\x20\x6e\x65\x77\x20\x57\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x55\x00\x73\x00\x65\x00\x20\ +\x00\x49\x00\x46\x00\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\ +\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x66\x00\x20\ +\x00\x61\x00\x76\x00\x61\x00\x69\x00\x6c\x00\x61\x00\x62\x00\x6c\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\x65\x20\ +\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\x69\x66\x20\ +\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x07\x00\x00\x00\x1c\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\ +\x00\x26\x00\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\x74\x00\x65\ +\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0d\x26\x41\x72\x63\x68\x69\x74\x65\x63\x74\x75\x72\ +\x65\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x0c\ +\x00\x26\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x26\x44\x72\x61\x66\x74\x07\x00\x00\x00\ +\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x41\x00\x72\x00\ +\x63\x00\x68\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x41\x72\x63\x68\x20\x74\x6f\ +\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\ +\x00\x22\x00\x43\x00\x61\x00\x6c\x00\x63\x00\x75\x00\x6c\x00\x61\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x54\x00\x6f\x00\x6f\ +\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x43\x61\ +\x6c\x63\x75\x6c\x61\x74\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\ +\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x43\ +\x00\x6f\x00\x6e\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\x00\x54\ +\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x43\x6f\x6e\x74\x65\x78\x74\x20\x54\x6f\x6f\x6c\x73\x07\ +\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x20\x00\x43\ +\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x10\x43\x6f\x6e\x76\x65\x72\x73\x69\ +\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\ +\x68\x01\x03\x00\x00\x00\x1e\x00\x44\x00\x72\x00\x61\x00\x66\x00\ +\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x20\x00\x74\x00\x6f\x00\ +\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x44\ +\x72\x61\x66\x74\x20\x6d\x6f\x64\x20\x74\x6f\x6f\x6c\x73\x07\x00\ +\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x30\xc9\x30\ +\xe9\x30\xd5\x30\xc8\x30\xc4\x30\xfc\x30\xeb\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\ +\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x6e\x00\ +\x70\x00\x79\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\ +\x61\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\x6f\x00\ +\x75\x00\x6e\x00\x64\x00\x2c\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\ +\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x73\x00\x75\x00\x70\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x64\x00\x69\x00\x73\x00\ +\x61\x00\x62\x00\x6c\x00\x65\x00\x64\x00\x2e\x00\x0a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x37\x70\x79\x63\x6f\x6c\x6c\x61\x64\x61\ +\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x63\x6f\x6c\x6c\ +\x61\x64\x61\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x77\x69\x6c\x6c\ +\x20\x62\x65\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x2e\x0a\x07\x00\ +\x00\x00\x04\x61\x72\x63\x68\x01\ +\x00\x00\x4a\x51\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x04\xf8\x00\x00\x47\xa4\x00\x00\x00\x49\x00\x04\x8e\xc3\ +\x00\x00\x01\x69\x00\x04\x8f\x03\x00\x00\x02\x1c\x00\x04\x8f\x03\ +\x00\x00\x25\xc0\x00\x04\x9c\x2c\x00\x00\x27\x48\x00\x04\xbb\x04\ +\x00\x00\x07\xcc\x00\x05\x48\x35\x00\x00\x0c\xdb\x00\x05\x67\xd5\ +\x00\x00\x0e\xef\x00\x05\x96\x56\x00\x00\x0f\x45\x00\x05\x96\x56\ +\x00\x00\x2e\xf2\x00\x05\xa0\xa5\x00\x00\x0f\x6a\x00\x05\xa0\xa5\ +\x00\x00\x32\x8b\x00\x05\xc0\x65\x00\x00\x1d\x45\x00\x05\xd8\x2c\ +\x00\x00\x1e\xd8\x00\x05\xd8\x2c\x00\x00\x36\x41\x00\x32\x23\xa5\ +\x00\x00\x42\x8a\x00\x39\xdf\x33\x00\x00\x3b\x05\x00\x48\x4e\x25\ +\x00\x00\x01\x43\x00\x49\xeb\x9b\x00\x00\x28\x20\x00\x4b\x55\x33\ +\x00\x00\x3c\x31\x00\x4d\x36\x62\x00\x00\x0a\x29\x00\x4d\x36\x62\ +\x00\x00\x2a\x90\x00\x5d\xfb\xa8\x00\x00\x1f\x6c\x00\x5e\x08\xc3\ +\x00\x00\x1f\xbb\x00\x61\xb0\x33\x00\x00\x16\xb9\x00\x62\x9b\xa8\ +\x00\x00\x0f\xf3\x00\x62\x9b\xa8\x00\x00\x32\xb5\x00\x8a\x92\x57\ +\x00\x00\x00\x00\x00\xaa\x80\x25\x00\x00\x07\x1f\x00\xc9\x7b\xf3\ +\x00\x00\x12\xac\x00\xfb\x72\xf3\x00\x00\x3a\x95\x01\x19\x4e\x85\ +\x00\x00\x05\xa9\x01\x55\x2b\xf5\x00\x00\x05\x1a\x01\x79\x17\x94\ +\x00\x00\x22\x84\x01\x8e\x84\xa6\x00\x00\x11\x68\x01\xad\x7d\xe3\ +\x00\x00\x44\x01\x01\xaf\x41\x84\x00\x00\x21\x70\x01\xf7\xa8\x83\ +\x00\x00\x41\x47\x02\x01\x7f\xd3\x00\x00\x10\x5e\x02\x29\xb3\xc4\ +\x00\x00\x2e\x29\x02\x5a\x4a\x53\x00\x00\x15\xd7\x02\x5f\xc9\x59\ +\x00\x00\x35\x2d\x02\x66\x7f\x7e\x00\x00\x0d\xc7\x02\x6a\x77\x99\ +\x00\x00\x3d\x79\x02\x80\x5f\x17\x00\x00\x23\x55\x02\x82\x88\x3a\ +\x00\x00\x04\x36\x02\x85\x4f\xf5\x00\x00\x19\x3f\x02\x90\x40\x65\ +\x00\x00\x0c\x9b\x02\x90\x40\x65\x00\x00\x2a\xbe\x02\x94\x16\x35\ +\x00\x00\x10\x9b\x02\xab\x87\xd4\x00\x00\x42\xca\x02\xb8\xae\x74\ +\x00\x00\x2b\xb6\x02\xc3\x91\x93\x00\x00\x3e\xda\x02\xcd\x05\xa3\ +\x00\x00\x2b\x0a\x02\xdd\x14\x14\x00\x00\x2c\x0c\x03\x13\x15\x3e\ +\x00\x00\x0b\x47\x03\x1b\xda\x15\x00\x00\x1f\x38\x03\x1d\xe8\xe3\ +\x00\x00\x39\x1e\x03\x29\x7a\x34\x00\x00\x00\xd9\x03\x2c\xe9\xb3\ +\x00\x00\x17\x20\x03\x92\x51\xe0\x00\x00\x0f\x8f\x03\xa2\xec\x23\ +\x00\x00\x1e\xfb\x03\xbe\xb0\x34\x00\x00\x1e\x0c\x03\xce\x98\xe5\ +\x00\x00\x03\xc0\x03\xd4\x22\x74\x00\x00\x24\xcc\x04\x35\xfa\x55\ +\x00\x00\x12\x21\x04\xc3\x75\x44\x00\x00\x19\x94\x04\xdb\x21\x3e\ +\x00\x00\x31\xda\x04\xeb\xfd\xf4\x00\x00\x0a\x82\x05\x14\x5b\x83\ +\x00\x00\x07\x50\x05\x18\xda\xa3\x00\x00\x29\xde\x05\x5f\x3d\x83\ +\x00\x00\x3a\x19\x05\x8c\x46\xc5\x00\x00\x0f\x14\x05\x90\xba\xe3\ +\x00\x00\x0e\xc1\x05\xc0\x56\xe3\x00\x00\x3f\x5f\x05\xc7\xeb\xc7\ +\x00\x00\x3e\x2b\x05\xe0\x4b\x67\x00\x00\x1f\x94\x05\xe0\x4b\x67\ +\x00\x00\x37\x67\x05\xef\x78\x4a\x00\x00\x22\xc1\x06\x1f\x6f\xa4\ +\x00\x00\x20\xd0\x06\x32\xe3\xe3\x00\x00\x44\x47\x06\x5b\x01\x15\ +\x00\x00\x03\x8f\x06\x69\xd0\x04\x00\x00\x20\x66\x06\x9f\x6f\xd4\ +\x00\x00\x06\xc1\x06\xd6\x3f\xa4\x00\x00\x22\x44\x06\xe6\x2f\x43\ +\x00\x00\x11\xc3\x07\x00\xcc\xc4\x00\x00\x3b\xe2\x07\x07\x84\xba\ +\x00\x00\x44\x81\x07\x08\x43\x0e\x00\x00\x25\xea\x07\x16\x58\x05\ +\x00\x00\x37\xea\x07\x25\x74\x53\x00\x00\x28\xe5\x07\x28\xff\x15\ +\x00\x00\x0d\x51\x07\x36\x51\x26\x00\x00\x13\x8e\x07\x5c\xdc\x04\ +\x00\x00\x1f\xe3\x07\x60\x23\xf3\x00\x00\x02\xf8\x07\xca\xf8\x87\ +\x00\x00\x37\x95\x08\x25\x81\xc4\x00\x00\x06\x6c\x08\x4a\x45\xd9\ +\x00\x00\x36\x69\x08\x65\x4c\x95\x00\x00\x1b\xc8\x08\xc5\xe3\x35\ +\x00\x00\x1b\x13\x08\xca\xc9\x74\x00\x00\x14\xb6\x08\xfb\xb8\xa4\ +\x00\x00\x09\xc2\x09\x69\xac\xa7\x00\x00\x1e\x73\x09\x6c\x6c\xa7\ +\x00\x00\x0a\x51\x09\x9f\xcc\xde\x00\x00\x21\xd4\x09\xba\xe6\x35\ +\x00\x00\x10\x2a\x09\xba\xe6\x35\x00\x00\x34\xef\x09\xc5\xbe\xca\ +\x00\x00\x09\x22\x09\xe3\x98\xe4\x00\x00\x25\x10\x09\xed\x98\x55\ +\x00\x00\x2f\xfc\x0a\x3e\x06\x83\x00\x00\x04\xa6\x0a\x3f\x1f\xd6\ +\x00\x00\x04\xe0\x0a\x3f\x2b\x25\x00\x00\x05\x6f\x0a\x3f\x5d\xac\ +\x00\x00\x05\xf2\x0a\x7f\xee\xa3\x00\x00\x42\xf5\x0a\xb6\xc8\x9a\ +\x00\x00\x0a\xad\x0a\xbf\x46\x0e\x00\x00\x1d\x68\x0a\xd6\x07\x84\ +\x00\x00\x20\x14\x0b\x0a\xc3\xf3\x00\x00\x00\x71\x0b\x51\x30\xa8\ +\x00\x00\x2d\x22\x0b\x65\xda\xb3\x00\x00\x39\xa3\x0b\x8d\x97\x93\ +\x00\x00\x40\x7d\x0b\x9c\x5b\xe7\x00\x00\x08\x85\x0b\xb9\xe8\x93\ +\x00\x00\x2d\x89\x0b\xc4\xb1\x23\x00\x00\x27\x72\x0c\x02\xac\xd7\ +\x00\x00\x02\xc7\x0c\x02\xac\xd7\x00\x00\x26\x4d\x0c\x25\x3e\x53\ +\x00\x00\x30\xc5\x0c\x3c\x8b\x33\x00\x00\x43\x2c\x0c\x41\x0a\x83\ +\x00\x00\x43\x78\x0c\x4e\x9b\x23\x00\x00\x30\x49\x0c\x98\x80\x23\ +\x00\x00\x43\xb8\x0c\xc4\xd0\x80\x00\x00\x24\x04\x0c\xdf\x5a\x1e\ +\x00\x00\x01\x8e\x0c\xfc\x97\x06\x00\x00\x1e\xaa\x0d\x03\x26\xb4\ +\x00\x00\x02\x84\x0d\x08\x90\xf3\x00\x00\x1a\xa6\x0d\x1e\xda\xa4\ +\x00\x00\x03\x2f\x0d\x3b\x3b\x49\x00\x00\x33\xaf\x0d\xa8\x3a\x35\ +\x00\x00\x17\x7b\x0d\xc1\x7d\x47\x00\x00\x24\x5c\x0d\xfa\x53\xe5\ +\x00\x00\x07\xf7\x0e\x69\x87\x13\x00\x00\x2f\x1c\x0e\x8c\xd7\x43\ +\x00\x00\x32\xf6\x0e\x98\x0a\xd6\x00\x00\x1d\xae\x0e\xab\x8d\x1f\ +\x00\x00\x38\x93\x0e\xb9\x1b\xf2\x00\x00\x14\x55\x0e\xec\x0b\x9e\ +\x00\x00\x26\x87\x0f\x16\x4a\x24\x00\x00\x1c\xd5\x0f\x17\xc7\xa3\ +\x00\x00\x28\x4e\x0f\x55\xc1\x57\x00\x00\x06\x2c\x0f\x78\x41\x05\ +\x00\x00\x42\x02\x0f\x79\xe3\xf3\x00\x00\x29\x2a\x0f\x95\xd5\x09\ +\x00\x00\x18\x33\x0f\xa2\x16\x43\x00\x00\x1c\xa1\x0f\xc0\xb8\xb4\ +\x00\x00\x0d\x02\x0f\xd0\x39\x44\x00\x00\x02\x41\x0f\xe5\x74\x74\ +\x00\x00\x00\xa5\x0f\xf3\xe8\x33\x00\x00\x3b\x66\x69\x00\x00\x45\ +\x3f\x03\x00\x00\x00\x20\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x42\x00\x75\x00\x69\x00\x6c\x00\x64\ +\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x20\x43\x72\x65\x61\x74\x65\x20\x42\x75\x69\x6c\x64\x69\x6e\x67\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\ +\x50\x01\x59\x00\x69\x00\x64\x00\x61\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x03\x41\x64\x64\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x12\x00\x41\x00\x64\x00\x64\x00\x69\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x41\x64\x64\x69\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x41\x00\x6c\x00\ +\x69\x00\x67\x00\x6e\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x41\x6c\x69\x67\x6e\x6d\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x36\x00\ +\x41\x00\x6c\x00\x6c\x00\x20\x00\x67\x00\x6f\x00\x6f\x00\x64\x00\ +\x21\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x62\x00\x6c\x00\x65\x00\x6d\x00\x73\x00\x20\x00\x66\x00\x6f\x00\ +\x75\x00\x6e\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x41\ +\x6c\x6c\x20\x67\x6f\x6f\x64\x21\x20\x6e\x6f\x20\x70\x72\x6f\x62\ +\x6c\x65\x6d\x73\x20\x66\x6f\x75\x6e\x64\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\xda\x00\x68\x00\x65\x00\ +\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x6e\x67\x6c\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\ +\x41\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x41\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x4e\x00\x41\x00\x78\x00\x65\x00\x73\x00\x20\x00\x73\ +\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x73\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\ +\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x69\x00\x73\ +\x00\x20\x00\x62\x00\x75\x00\x69\x00\x6c\x00\x74\x00\x20\x00\x6f\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x41\x78\x65\x73\ +\x20\x73\x79\x73\x74\x65\x6d\x73\x20\x74\x68\x69\x73\x20\x73\x74\ +\x72\x75\x63\x74\x75\x72\x65\x20\x69\x73\x20\x62\x75\x69\x6c\x74\ +\x20\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x08\x00\x41\x00\x78\x00\x69\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x41\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x1c\x00\x42\x00\x61\x00\x73\x00\x65\x00\ +\x20\x00\x32\x00\x44\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x42\x61\x73\ +\x65\x20\x32\x44\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x00\x42\x00\x61\x00\x73\ +\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ +\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ +\x42\x61\x73\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x42\x00\ +\x75\x00\x69\x00\x6c\x00\x64\x00\x69\x00\x6e\x00\x67\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x4b\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\x6d\x70\ +\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x2e\x00\x53\x00\x6f\x00\x75\x01\x0d\x00\xe1\x00\ +\x73\x00\x74\x00\xed\x00\x20\x00\x74\x00\x6f\x00\x68\x00\x6f\x00\ +\x74\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x43\x6f\x6d\ +\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x10\x00\x43\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\ +\x6e\x00\x75\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\ +\x6f\x6e\x74\x69\x6e\x75\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x3e\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\ +\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x75\x00\x74\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x73\x00\x68\x00\x61\ +\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x43\x6f\ +\x75\x6c\x64\x6e\x27\x74\x20\x63\x6f\x6d\x70\x75\x74\x65\x20\x74\ +\x68\x65\x20\x77\x61\x6c\x6c\x20\x73\x68\x61\x70\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x43\x00\x6f\ +\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x6c\ +\x00\x6f\x00\x63\x00\x61\x00\x74\x00\x65\x00\x20\x00\x49\x00\x66\ +\x00\x63\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\ +\x00\x6c\x00\x6c\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\ +\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x6c\x6f\x63\x61\x74\x65\x20\ +\x49\x66\x63\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x0a\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x41\x00\x78\x00\x69\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\ +\x74\x65\x20\x41\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x16\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\ +\x00\x65\x00\x20\x00\x52\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x52\x6f\x6f\ +\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x53\ +\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x50\ +\x00\x6c\x00\x61\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x14\x43\x72\x65\x61\x74\x65\x20\x53\x65\x63\x74\x69\x6f\x6e\ +\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x16\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\ +\x65\x00\x20\x00\x53\x00\x69\x00\x74\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x53\x69\x74\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x20\x00\ +\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\ +\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\x74\x65\x20\ +\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x16\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x57\x00\x61\x00\x6c\x00\x6c\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x57\ +\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x1a\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\ +\x00\x57\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x43\x72\x65\x61\x74\x65\x20\x57\x69\x6e\ +\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x28\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\ +\x00\x6e\x00\x65\x00\x77\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x14\x43\x72\x65\x61\x74\x65\x20\x6e\x65\x77\x20\x63\ +\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x2e\x00\x43\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x2f\x00\x75\x00\x70\x00\x64\x00\x61\x00\x74\x00\ +\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\ +\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\ +\x72\x65\x61\x74\x65\x2f\x75\x70\x64\x61\x74\x65\x20\x63\x6f\x6d\ +\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x10\x00\x44\x00\x69\x00\x73\x00\x74\x00\x61\x00\ +\x6e\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x44\ +\x69\x73\x74\x61\x6e\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x42\x00\x44\x00\x69\x00\x73\x00\x74\x00\x61\ +\x00\x6e\x00\x63\x00\x65\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\ +\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x73\x00\x20\ +\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\ +\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x21\x44\x69\x73\x74\x61\x6e\x63\x65\x73\x20\x61\x6e\x64\x20\ +\x61\x6e\x67\x6c\x65\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x61\ +\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0e\x00\x55\x00\x70\x00\x72\x00\x61\x00\x76\x00\x69\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4e\x00\x45\x00\ +\x72\x00\x72\x00\x6f\x00\x72\x00\x20\x00\x72\x00\x65\x00\x6d\x00\ +\x6f\x00\x76\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x70\x00\ +\x6c\x00\x69\x00\x74\x00\x74\x00\x65\x00\x72\x00\x20\x00\x66\x00\ +\x72\x00\x6f\x00\x6d\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\ +\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x27\x45\x72\x72\x6f\x72\x20\x72\x65\x6d\x6f\x76\ +\x69\x6e\x67\x20\x73\x70\x6c\x69\x74\x74\x65\x72\x20\x66\x72\x6f\ +\x6d\x20\x77\x61\x6c\x6c\x20\x73\x68\x61\x70\x65\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x58\x00\x45\x00\x72\x00\ +\x72\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x43\x00\x6f\x00\x75\x00\ +\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x64\x00\x65\x00\ +\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x65\x00\x20\x00\ +\x63\x00\x68\x00\x61\x00\x72\x00\x61\x00\x63\x00\x74\x00\x65\x00\ +\x72\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\x64\x00\x69\x00\ +\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x45\x72\x72\ +\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x64\x65\x74\ +\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\ +\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x5a\x00\x45\x00\x72\x00\x72\x00\x6f\ +\x00\x72\x00\x3a\x00\x20\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\ +\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x64\x00\x65\x00\x74\x00\x65\ +\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x63\x00\x68\ +\x00\x61\x00\x72\x00\x61\x00\x63\x00\x74\x00\x65\x00\x72\x00\x20\ +\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\x64\x00\x69\x00\x6e\x00\x67\ +\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x45\x72\x72\x6f\ +\x72\x3a\x20\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x64\x65\x74\x65\ +\x72\x6d\x69\x6e\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\ +\x65\x6e\x63\x6f\x64\x69\x6e\x67\x0a\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x34\x00\x45\x00\x72\x00\x72\x00\x6f\ +\x00\x72\x00\x3a\x00\x20\x00\x49\x00\x6e\x00\x76\x00\x61\x00\x6c\ +\x00\x69\x00\x64\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1a\x45\x72\x72\x6f\x72\x3a\x20\x49\x6e\x76\ +\x61\x6c\x69\x64\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\ +\x46\x00\x6c\x00\x6f\x00\x6f\x00\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x10\x00\x47\x00\x72\x00\x6f\x00\x75\x00\ +\x70\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x08\x47\x72\x6f\x75\x70\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x48\x00\x65\x00\x69\x00\x67\ +\x00\x68\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x48\x65\ +\x69\x67\x68\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x56\x00\x49\x00\x46\x00\x43\x00\x20\x00\x53\x00\x63\x00\ +\x68\x00\x65\x00\x6d\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\ +\x20\x00\x66\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x2c\x00\x20\x00\ +\x49\x00\x46\x00\x43\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x20\x00\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\ +\x6c\x00\x65\x00\x64\x00\x2e\x00\x0a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2b\x49\x46\x43\x20\x53\x63\x68\x65\x6d\x61\x20\x6e\x6f\ +\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x49\x46\x43\x20\x69\x6d\x70\ +\x6f\x72\x74\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x2e\x0a\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xd2\x00\x49\x00\ +\x66\x00\x20\x00\x54\x00\x72\x00\x75\x00\x65\x00\x2c\x00\x20\x00\ +\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\ +\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x2c\x00\ +\x20\x00\x69\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\ +\x20\x00\x75\x00\x73\x00\x65\x00\x20\x00\x69\x00\x74\x00\x73\x00\ +\x20\x00\x62\x00\x6f\x00\x72\x00\x64\x00\x65\x00\x72\x00\x20\x00\ +\x77\x00\x69\x00\x72\x00\x65\x00\x20\x00\x61\x00\x73\x00\x20\x00\ +\x74\x00\x72\x00\x61\x00\x63\x00\x65\x00\x2c\x00\x20\x00\x61\x00\ +\x6e\x00\x64\x00\x20\x00\x64\x00\x69\x00\x73\x00\x63\x00\x6f\x00\ +\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x2e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x69\x49\x66\x20\x54\x72\x75\x65\ +\x2c\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\ +\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x66\x61\x63\ +\x65\x2c\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x75\x73\x65\x20\x69\ +\x74\x73\x20\x62\x6f\x72\x64\x65\x72\x20\x77\x69\x72\x65\x20\x61\ +\x73\x20\x74\x72\x61\x63\x65\x2c\x20\x61\x6e\x64\x20\x64\x69\x73\ +\x63\x6f\x6e\x73\x69\x64\x65\x72\x20\x74\x68\x65\x20\x66\x61\x63\ +\x65\x2e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x1a\x00\x4d\x00\x65\x00\x73\x00\x68\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x74\x6f\x20\x53\x68\x61\ +\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x0a\x00\x4a\x00\x6d\x00\xe9\x00\x6e\x00\x6f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x04\x4e\x61\x6d\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x24\x00\x4e\x00\x6f\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x12\x4e\x6f\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x3e\x00\x4e\x00\x6f\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\ +\x72\x00\x65\x00\x20\x00\x63\x00\x75\x00\x74\x00\x20\x00\x62\x00\ +\x79\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x70\x00\x6c\x00\ +\x61\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x4e\ +\x6f\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x72\x65\x20\x63\x75\ +\x74\x20\x62\x79\x20\x74\x68\x65\x20\x70\x6c\x61\x6e\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x96\x00\x4e\x00\ +\x6f\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\ +\x68\x00\x61\x00\x73\x00\x20\x00\x62\x00\x65\x00\x65\x00\x6e\x00\ +\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x75\x00\x74\x00\x65\x00\ +\x64\x00\x20\x00\x79\x00\x65\x00\x74\x00\x2c\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x77\x00\x69\x00\ +\x72\x00\x65\x00\x66\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x20\x00\ +\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x72\x00\x65\x00\ +\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x61\x00\x67\x00\x61\x00\ +\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4b\x4e\x6f\x20\ +\x73\x68\x61\x70\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x63\ +\x6f\x6d\x70\x75\x74\x65\x64\x20\x79\x65\x74\x2c\x20\x73\x65\x6c\ +\x65\x63\x74\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\x72\x65\ +\x6e\x64\x65\x72\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x65\x6e\x64\ +\x65\x72\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x0e\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x4f\ +\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x08\x00\x50\x00\x61\x00\x67\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x50\x61\x67\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x4f\x00\x64\x00\x73\ +\x00\x74\x00\x72\x00\x61\x00\x6e\x00\x69\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x52\x65\x6d\x6f\x76\x65\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x52\x00\x6f\x00\ +\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\ +\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\ +\x00\x53\x00\x69\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x32\x00\x53\x00\x6b\x00\x69\x00\x70\x00\x70\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x69\x00\x6e\x00\x76\x00\x61\x00\ +\x6c\x00\x69\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x19\x53\x6b\x69\x70\x70\x69\x6e\x67\x20\x69\x6e\x76\x61\x6c\x69\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x53\x00\x70\x00\x6c\x00\ +\x69\x00\x74\x00\x20\x00\x4d\x00\x65\x00\x73\x00\x68\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\ +\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\ +\x00\x53\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x72\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\x75\ +\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x18\x00\x53\x00\x75\x00\x62\x00\x74\x00\x72\x00\x61\ +\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x53\x75\x62\x74\x72\x61\x63\x74\x69\x6f\ +\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x78\x00\x54\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x69\x00\ +\x67\x00\x6e\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\ +\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x69\x00\ +\x74\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\x00\ +\x69\x00\x66\x00\x20\x00\x61\x00\x70\x00\x70\x00\x6c\x00\x69\x00\ +\x63\x00\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x3c\x54\x68\x65\x20\x61\x6c\x69\x67\x6e\x6d\x65\x6e\x74\ +\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x6f\x6e\ +\x20\x69\x74\x73\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x2c\x20\x69\x66\x20\x61\x70\x70\x6c\x69\x63\x61\x62\x6c\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2c\x00\x54\ +\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x72\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x16\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x54\x00\x68\x00\x65\x00\ +\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x73\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x65\x00\x61\x00\x63\x00\x68\x00\x20\x00\ +\x61\x00\x78\x00\x69\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x17\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\x73\x20\x6f\x66\x20\x65\ +\x61\x63\x68\x20\x61\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x4c\x00\x54\x00\x68\x00\x65\x00\x20\x00\ +\x64\x00\x69\x00\x73\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x20\x00\ +\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\x00\x65\x00\x63\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\ +\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x26\x54\x68\x65\ +\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x73\x69\x7a\x65\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\ +\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x86\x00\x54\x00\x68\x00\x65\x00\x20\x00\x65\x00\x6c\x00\x65\ +\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6e\x00\x75\x00\x6d\ +\x00\x62\x00\x65\x00\x72\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\ +\x00\x65\x00\x78\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x65\x00\x20\ +\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x69\ +\x00\x73\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\ +\x00\x75\x00\x72\x00\x65\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\ +\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\ +\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x43\x54\x68\x65\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\x6e\x75\ +\x6d\x62\x65\x72\x73\x20\x74\x6f\x20\x65\x78\x63\x6c\x75\x64\x65\ +\x20\x77\x68\x65\x6e\x20\x74\x68\x69\x73\x20\x73\x74\x72\x75\x63\ +\x74\x75\x72\x65\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\ +\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x74\x00\x54\x00\x68\x00\x65\x00\x20\x00\x66\x00\x61\ +\x00\x63\x00\x65\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\ +\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x75\x00\x73\x00\x65\ +\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x75\x00\x69\ +\x00\x6c\x00\x64\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x72\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x3a\x54\x68\x65\x20\x66\x61\x63\x65\x20\x6e\x75\x6d\x62\x65\ +\x72\x20\x6f\x66\x20\x74\x68\x65\x20\x62\x61\x73\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x62\x75\x69\ +\x6c\x64\x20\x74\x68\x69\x73\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x30\x00\x54\x00\x68\x00\ +\x65\x00\x20\x00\x68\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x66\x00\x6c\x00\x6f\x00\x6f\x00\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x18\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\ +\x6f\x66\x20\x74\x68\x69\x73\x20\x66\x6c\x6f\x6f\x72\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xb0\x00\x54\x00\x68\ +\x00\x65\x00\x20\x00\x68\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x2e\x00\x20\x00\x4b\ +\x00\x65\x00\x65\x00\x70\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\ +\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\ +\x00\x74\x00\x69\x00\x63\x00\x2e\x00\x20\x00\x4e\x00\x6f\x00\x74\ +\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\x00\x69\x00\x66\ +\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\ +\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\ +\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\ +\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x58\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\ +\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x2e\x20\x4b\ +\x65\x65\x70\x20\x30\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\ +\x74\x69\x63\x2e\x20\x4e\x6f\x74\x20\x75\x73\x65\x64\x20\x69\x66\ +\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\ +\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x73\x6f\x6c\x69\x64\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x86\x00\x54\x00\ +\x68\x00\x65\x00\x20\x00\x68\x00\x65\x00\x69\x00\x67\x00\x68\x00\ +\x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\ +\x72\x00\x75\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\ +\x65\x00\x70\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x65\x00\x6c\x00\x65\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x20\x00\x4b\x00\x65\x00\ +\x65\x00\x70\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\ +\x69\x00\x63\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\x54\x68\x65\ +\x20\x68\x65\x69\x67\x68\x74\x20\x6f\x72\x20\x65\x78\x74\x72\x75\ +\x73\x69\x6f\x6e\x20\x64\x65\x70\x74\x68\x20\x6f\x66\x20\x74\x68\ +\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2e\x20\x4b\x65\x65\x70\ +\x20\x30\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\ +\x72\x00\x76\x00\x61\x00\x6c\x00\x73\x00\x20\x00\x62\x00\x65\x00\ +\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x78\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x54\x68\x65\ +\x20\x69\x6e\x74\x65\x72\x76\x61\x6c\x73\x20\x62\x65\x74\x77\x65\ +\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x2c\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6c\ +\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\x00\x78\x00\x65\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x68\x65\x20\ +\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\ +\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x6a\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x6e\x00\ +\x67\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\ +\x6e\x00\x6f\x00\x74\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\ +\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x70\x00\ +\x72\x00\x6f\x00\x66\x00\x69\x00\x6c\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x35\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\x20\ +\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\ +\x20\x69\x66\x20\x6e\x6f\x74\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\ +\x20\x61\x20\x70\x72\x6f\x66\x69\x6c\x65\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\xa2\x00\x54\x00\x68\x00\x65\x00\ +\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x20\x00\ +\x65\x00\x78\x00\x74\x00\x72\x00\x75\x00\x73\x00\x69\x00\x6f\x00\ +\x6e\x00\x20\x00\x64\x00\x69\x00\x72\x00\x65\x00\x63\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x28\x00\x6b\x00\x65\x00\x65\x00\x70\x00\ +\x20\x00\x28\x00\x30\x00\x2c\x00\x30\x00\x2c\x00\x30\x00\x29\x00\ +\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\ +\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x20\x00\x6e\x00\ +\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x51\x54\x68\x65\x20\x6e\x6f\x72\x6d\x61\x6c\x20\ +\x65\x78\x74\x72\x75\x73\x69\x6f\x6e\x20\x64\x69\x72\x65\x63\x74\ +\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x28\x6b\x65\x65\x70\x20\x28\x30\x2c\x30\x2c\x30\x29\ +\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x20\x6e\ +\x6f\x72\x6d\x61\x6c\x29\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x28\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6e\x00\ +\x75\x00\x6d\x00\x65\x00\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x20\x00\x73\x00\x74\x00\x79\x00\x6c\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\x20\x6e\x75\x6d\x65\x72\ +\x61\x74\x69\x6f\x6e\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\xa6\x00\x54\x00\x68\x00\x65\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\ +\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x6d\x00\x75\ +\x00\x73\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x63\x00\x6f\ +\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\x65\x00\x64\ +\x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x2e\x00\x20\ +\x00\x45\x00\x6d\x00\x70\x00\x74\x00\x79\x00\x20\x00\x6d\x00\x65\ +\x00\x61\x00\x6e\x00\x73\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\ +\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\x54\x68\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x74\x68\x61\x74\x20\x6d\x75\x73\x74\x20\ +\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x62\x79\ +\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\ +\x61\x6e\x65\x2e\x20\x45\x6d\x70\x74\x79\x20\x6d\x65\x61\x6e\x73\ +\x20\x61\x6c\x6c\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\x00\x54\x00\x68\ +\x00\x65\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x6f\ +\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\x00\x78\ +\x00\x69\x00\x73\x00\x20\x00\x62\x00\x75\x00\x62\x00\x62\x00\x6c\ +\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x54\x68\ +\x65\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\ +\x69\x73\x20\x62\x75\x62\x62\x6c\x65\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x68\x00\x54\x00\x68\x00\x65\x00\ +\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x65\x00\ +\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2c\x00\x20\x00\ +\x69\x00\x66\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x62\x00\ +\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\ +\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x66\x00\x69\x00\x6c\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x54\x68\x65\x20\x77\ +\x69\x64\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\ +\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\x6e\x6f\x74\x20\x62\x61\x73\ +\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\x72\x6f\x66\x69\x6c\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x80\x00\x54\ +\x00\x68\x00\x65\x00\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x2e\x00\x20\x00\x4e\ +\x00\x6f\x00\x74\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\ +\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x73\x00\x20\ +\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\ +\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x40\x54\x68\x65\x20\x77\x69\x64\x74\ +\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x2e\x20\ +\x4e\x6f\x74\x20\x75\x73\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\ +\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\ +\x6e\x20\x61\x20\x66\x61\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x12\x00\x54\x00\x68\x00\x69\x00\x63\x00\ +\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x54\x68\x69\x63\x6b\x6e\x65\x73\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x54\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x20\x00\ +\x69\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\ +\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x20\x00\x73\x00\x6f\x00\ +\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x54\ +\x68\x69\x73\x20\x6d\x65\x73\x68\x20\x69\x73\x20\x61\x6e\x20\x69\ +\x6e\x76\x61\x6c\x69\x64\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x06\x00\x54\x00\x79\x00\ +\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\x79\x70\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x00\x54\ +\x00\x79\x00\x70\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\ +\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0f\x54\x79\x70\x65\x20\x63\x6f\x6e\x76\x65\ +\x72\x73\x69\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x2e\x00\x55\x00\x6e\x00\x61\x00\x62\x00\x6c\x00\x65\ +\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x61\x00\x20\x00\x72\x00\x6f\x00\x6f\ +\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x55\x6e\x61\x62\ +\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x72\ +\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x34\x00\x55\x00\x6e\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\ +\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ +\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\ +\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\ +\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x55\x00\x6e\x00\x67\x00\ +\x72\x00\x6f\x00\x75\x00\x70\x00\x69\x00\x6e\x00\x67\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x55\x6e\x67\x72\x6f\x75\x70\x69\x6e\ +\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\ +\x00\x56\x00\x69\x00\x65\x00\x77\x00\x20\x00\x6f\x00\x66\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x07\x56\x69\x65\x77\x20\x6f\x66\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x06\x00\x5a\ +\x00\x65\x01\x0f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\ +\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x18\x00\x57\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x70\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0c\x57\x61\x6c\x6c\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x57\ +\x00\x61\x00\x6c\x00\x6c\x00\x54\x00\x72\x00\x61\x00\x63\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x57\x61\x6c\x6c\x54\x72\ +\x61\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0a\x00\x57\x00\x69\x00\x64\x00\x74\x00\x68\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x05\x57\x69\x64\x74\x68\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x4f\x00\x6b\x00\x6e\ +\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\ +\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x0a\x00\x57\x00\x69\x00\x72\x00\x65\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x05\x57\x69\x72\x65\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x5a\x00\x20\x00\x6f\x00\ +\x66\x00\x66\x00\x73\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x5a\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x26\x00\x63\x00\x6c\x00\x6f\ +\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x53\x00\x6b\x00\x65\ +\x00\x74\x00\x63\x00\x68\x00\x20\x00\x65\x00\x64\x00\x69\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x63\x6c\x6f\x73\x69\x6e\ +\x67\x20\x53\x6b\x65\x74\x63\x68\x20\x65\x64\x69\x74\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x36\x00\x63\x00\x6f\ +\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x20\x00\x61\ +\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x63\x00\x6c\x00\x6f\ +\x00\x73\x00\x65\x00\x64\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\ +\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x63\x6f\x6e\x74\ +\x61\x69\x6e\x73\x20\x61\x20\x6e\x6f\x6e\x2d\x63\x6c\x6f\x73\x65\ +\x64\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x5a\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\ +\x00\x69\x00\x6e\x00\x73\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\ +\x00\x73\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x61\ +\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x70\ +\x00\x61\x00\x72\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\ +\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x63\x6f\x6e\x74\x61\x69\ +\x6e\x73\x20\x66\x61\x63\x65\x73\x20\x74\x68\x61\x74\x20\x61\x72\ +\x65\x20\x6e\x6f\x74\x20\x70\x61\x72\x74\x20\x6f\x66\x20\x61\x6e\ +\x79\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x32\x00\x64\x00\x6f\x00\x65\x00\x73\x00\x6e\ +\x00\x27\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\ +\x00\x69\x00\x6e\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x73\ +\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x19\x64\x6f\x65\x73\x6e\x27\x74\x20\x63\x6f\x6e\x74\x61\x69\ +\x6e\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x66\x00\x69\x00\x6c\ +\x00\x65\x00\x20\x00\x25\x00\x73\x00\x20\x00\x73\x00\x75\x00\x63\ +\x00\x63\x00\x65\x00\x73\x00\x73\x00\x66\x00\x75\x00\x6c\x00\x6c\ +\x00\x79\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ +\x00\x64\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x66\x69\ +\x6c\x65\x20\x25\x73\x20\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\ +\x6c\x79\x20\x63\x72\x65\x61\x74\x65\x64\x2e\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x69\x00\x73\x00\x20\ +\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\ +\x00\x65\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x69\x73\ +\x20\x6e\x6f\x74\x20\x63\x6c\x6f\x73\x65\x64\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x69\x00\x73\x00\x20\ +\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\ +\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x69\x73\x20\x6e\ +\x6f\x74\x20\x76\x61\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x52\x00\x70\x00\x79\x00\x63\x00\x6f\x00\ +\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\ +\x74\x00\x20\x00\x66\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x2c\x00\ +\x20\x00\x6e\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\ +\x61\x00\x64\x00\x61\x00\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x00\x2e\x00\x0a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x29\x70\x79\x63\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\ +\x20\x66\x6f\x75\x6e\x64\x2c\x20\x6e\x6f\x20\x63\x6f\x6c\x6c\x61\ +\x64\x61\x20\x73\x75\x70\x70\x6f\x72\x74\x2e\x0a\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x64\x00\x72\x00\x65\x00\ +\x6d\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\ +\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x20\x00\x73\x00\x75\x00\ +\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x61\x00\x76\x00\x6f\x00\x69\x00\x64\x00\x20\x00\x63\x00\ +\x72\x00\x6f\x00\x73\x00\x73\x00\x2d\x00\x72\x00\x65\x00\x66\x00\ +\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x69\x00\x6e\x00\x67\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x32\x72\x65\x6d\x6f\x76\x69\x6e\ +\x67\x20\x73\x6b\x65\x74\x63\x68\x20\x73\x75\x70\x70\x6f\x72\x74\ +\x20\x74\x6f\x20\x61\x76\x6f\x69\x64\x20\x63\x72\x6f\x73\x73\x2d\ +\x72\x65\x66\x65\x72\x65\x6e\x63\x69\x6e\x67\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x73\x00\x75\x00\x63\ +\x00\x63\x00\x65\x00\x73\x00\x73\x00\x66\x00\x75\x00\x6c\x00\x6c\ +\x00\x79\x00\x20\x00\x77\x00\x72\x00\x69\x00\x74\x00\x74\x00\x65\ +\x00\x6e\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x73\x75\ +\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x77\x72\x69\x74\x74\ +\x65\x6e\x20\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x3a\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\ +\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x77\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1d\x74\x68\x65\x20\x63\x6f\x6d\x70\x6f\x6e\ +\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x69\x6e\ +\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x1a\x00\x41\x00\x64\x00\x64\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\x63\x6f\x6d\x70\x6f\x6e\ +\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\ +\x01\x03\x00\x00\x00\x62\x00\x41\x00\x64\x00\x64\x00\x73\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\ +\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\ +\x00\x63\x00\x74\x00\x69\x00\x76\x00\x65\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x31\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x74\ +\x6f\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\ +\x01\x03\x00\x00\x00\x08\x00\x41\x00\x78\x00\x69\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\x69\x73\x07\x00\x00\x00\ +\x09\x41\x72\x63\x68\x5f\x41\x78\x69\x73\x01\x03\x00\x00\x00\x2e\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\ +\x00\x61\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x69\x00\x73\x00\x20\ +\x00\x73\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x2e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x6e\x20\x61\x78\x69\x73\x20\x73\x79\x73\x74\x65\x6d\x2e\x07\ +\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x41\x78\x69\x73\x01\x03\x00\ +\x00\x00\x10\x00\x42\x00\x75\x00\x69\x00\x6c\x00\x64\x00\x69\x00\ +\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\ +\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\ +\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x6a\x00\x43\x00\ +\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\ +\x20\x00\x62\x00\x75\x00\x69\x00\x6c\x00\x64\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x35\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x62\x75\x69\x6c\x64\ +\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\ +\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\ +\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x08\x00\x43\ +\x00\x65\x00\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x43\x65\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\ +\x6c\x6c\x01\x03\x00\x00\x00\x60\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x63\x00\x65\ +\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x64\ +\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\ +\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x65\x6c\x6c\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\ +\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\ +\x01\x03\x00\x00\x00\x0a\x00\x43\x00\x68\x00\x65\x00\x63\x00\x6b\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x43\x68\x65\x63\x6b\x07\ +\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\x01\x03\ +\x00\x00\x00\x50\x00\x43\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x73\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\ +\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x66\x00\x6f\ +\x00\x72\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x62\x00\x6c\x00\x65\ +\x00\x6d\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x43\x68\ +\x65\x63\x6b\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x6f\x72\x20\x70\x72\ +\x6f\x62\x6c\x65\x6d\x73\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\ +\x43\x68\x65\x63\x6b\x01\x03\x00\x00\x00\x16\x00\x43\x00\x6c\x00\ +\x6f\x00\x73\x00\x65\x00\x20\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x6c\x6f\x73\x65\ +\x20\x68\x6f\x6c\x65\x73\x07\x00\x00\x00\x0f\x41\x72\x63\x68\x5f\ +\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\x01\x03\x00\x00\x00\x60\ +\x00\x43\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x73\x00\x20\x00\x68\ +\x00\x6f\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x20\ +\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x68\x00\x61\ +\x00\x70\x00\x65\x00\x73\x00\x2c\x00\x20\x00\x74\x00\x75\x00\x72\ +\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x6d\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x6c\x6f\x73\x65\x73\ +\x20\x68\x6f\x6c\x65\x73\x20\x69\x6e\x20\x6f\x70\x65\x6e\x20\x73\ +\x68\x61\x70\x65\x73\x2c\x20\x74\x75\x72\x6e\x69\x6e\x67\x20\x74\ +\x68\x65\x6d\x20\x73\x6f\x6c\x69\x64\x73\x07\x00\x00\x00\x0f\x41\ +\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\x01\x03\ +\x00\x00\x00\x62\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ +\x00\x73\x00\x20\x00\x61\x00\x20\x00\x66\x00\x6c\x00\x6f\x00\x6f\ +\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x69\ +\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\ +\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x66\x6c\x6f\x6f\x72\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\ +\x01\x03\x00\x00\x00\x0a\x00\x46\x00\x6c\x00\x6f\x00\x6f\x00\x72\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\ +\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\ +\x00\x00\x00\x1a\x00\x4d\x00\x65\x00\x73\x00\x68\x00\x20\x00\x74\ +\x00\x6f\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x74\x6f\x20\ +\x53\x68\x61\x70\x65\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\ +\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x5a\ +\x00\x54\x00\x75\x00\x72\x00\x6e\x00\x73\x00\x20\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6d\ +\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\ +\x00\x74\x00\x6f\x00\x20\x00\x50\x00\x61\x00\x72\x00\x74\x00\x20\ +\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2d\x54\x75\x72\x6e\x73\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x50\ +\x61\x72\x74\x20\x53\x68\x61\x70\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\ +\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x26\x00\x4f\x00\x64\ +\x00\x73\x00\x74\x00\x72\x00\x61\x00\x6e\x00\x69\x00\x74\x00\x20\ +\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\x6d\x6f\ +\x76\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\ +\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\ +\x00\xa4\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\ +\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\ +\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x69\x00\x72\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x6e\ +\x00\x74\x00\x73\x00\x2c\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x63\ +\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x61\x00\x20\ +\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x20\ +\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ +\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\ +\x52\x65\x6d\x6f\x76\x65\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x66\ +\x72\x6f\x6d\x20\x74\x68\x65\x69\x72\x20\x70\x61\x72\x65\x6e\x74\ +\x73\x2c\x20\x6f\x72\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x68\ +\x6f\x6c\x65\x20\x69\x6e\x20\x61\x20\x63\x6f\x6d\x70\x6f\x6e\x65\ +\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\ +\x76\x65\x01\x03\x00\x00\x00\x2c\x00\x52\x00\x65\x00\x6d\x00\x6f\ +\x00\x76\x00\x65\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\ +\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x41\x00\x72\ +\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x52\x65\ +\x6d\x6f\x76\x65\x20\x53\x68\x61\x70\x65\x20\x66\x72\x6f\x6d\x20\ +\x41\x72\x63\x68\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\ +\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x52\x00\ +\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x73\x00\x20\x00\ +\x63\x00\x75\x00\x62\x00\x69\x00\x63\x00\x20\x00\x73\x00\x68\x00\ +\x61\x00\x70\x00\x65\x00\x73\x00\x20\x00\x66\x00\x72\x00\x6f\x00\ +\x6d\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x63\x00\ +\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x52\x65\x6d\x6f\x76\ +\x65\x73\x20\x63\x75\x62\x69\x63\x20\x73\x68\x61\x70\x65\x73\x20\ +\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x20\x63\x6f\x6d\x70\x6f\x6e\ +\x65\x6e\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\ +\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x72\x00\ +\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\ +\x61\x00\x20\x00\x72\x00\x6f\x00\x6f\x00\x66\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\ +\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\ +\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x61\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x39\x43\x72\x65\x61\x74\ +\x65\x73\x20\x61\x20\x72\x6f\x6f\x66\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x66\x61\x63\x65\x20\x6f\x66\x20\x61\x6e\x20\x6f\x62\ +\x6a\x65\x63\x74\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x52\x6f\ +\x6f\x66\x01\x03\x00\x00\x00\x08\x00\x52\x00\x6f\x00\x6f\x00\x66\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\x66\x07\x00\ +\x00\x00\x09\x41\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\x00\x00\ +\x00\x7c\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\ +\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x2c\ +\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x69\ +\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\ +\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x3e\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x2c\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\ +\x67\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x11\x41\x72\x63\x68\x5f\ +\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\ +\x00\x1a\x00\x53\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x6e\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\ +\x61\x6e\x65\x07\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\x63\ +\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x34\x00\ +\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x6e\x00\ +\x6f\x00\x6e\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\x66\x00\ +\x6f\x00\x6c\x00\x64\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\x65\x6c\ +\x65\x63\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\ +\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\ +\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\ +\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x9a\x00\x53\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6c\x00\ +\x6c\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x6d\x00\x61\x00\ +\x6e\x00\x69\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x6d\x00\ +\x65\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\x66\x00\x72\x00\ +\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\ +\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\ +\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x67\x00\x72\x00\x6f\x00\ +\x75\x00\x70\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x53\ +\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6e\x6f\x6e\x2d\x6d\ +\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x66\ +\x72\x6f\x6d\x20\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\ +\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x67\x72\x6f\x75\x70\x73\x07\x00\x00\x00\ +\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\ +\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x62\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\ +\x00\x61\x00\x20\x00\x73\x00\x69\x00\x74\x00\x65\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\ +\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\ +\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\ +\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x73\x69\x74\x65\x20\x6f\x62\x6a\x65\x63\ +\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\ +\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\ +\x08\x00\x53\x00\x69\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x53\x69\x74\x65\x07\x00\x00\x00\x09\x41\x72\x63\x68\ +\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\x14\x00\x53\x00\x70\x00\ +\x6c\x00\x69\x00\x74\x00\x20\x00\x4d\x00\x65\x00\x73\x00\x68\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\ +\x65\x73\x68\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\ +\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\x64\x00\x53\x00\x70\ +\x00\x6c\x00\x69\x00\x74\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\ +\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6d\x00\x65\ +\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\ +\x00\x6f\x00\x20\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x70\x00\x65\ +\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x63\x00\x6f\ +\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x53\x70\x6c\x69\x74\x73\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\ +\x20\x69\x6e\x74\x6f\x20\x69\x6e\x64\x65\x70\x65\x6e\x64\x65\x6e\ +\x74\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\ +\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\ +\x03\x00\x00\x00\xbe\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\ +\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x73\x00\x74\x00\x72\x00\ +\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\ +\x6f\x00\x6d\x00\x20\x00\x73\x00\x63\x00\x72\x00\x61\x00\x74\x00\ +\x63\x00\x68\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\ +\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x28\x00\x73\x00\x6b\x00\ +\x65\x00\x74\x00\x63\x00\x68\x00\x2c\x00\x20\x00\x77\x00\x69\x00\ +\x72\x00\x65\x00\x2c\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\ +\x20\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\ +\x64\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5f\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\ +\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\ +\x73\x6b\x65\x74\x63\x68\x2c\x20\x77\x69\x72\x65\x2c\x20\x66\x61\ +\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\ +\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\ +\x03\x00\x00\x00\x12\x00\x53\x00\x74\x00\x72\x00\x75\x00\x6b\x00\ +\x74\x00\x75\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x0e\x41\ +\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\ +\x00\x00\xa4\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\ +\x73\x00\x20\x00\x61\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ +\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x73\x00\x63\x00\x72\x00\ +\x61\x00\x74\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x72\x00\x20\x00\ +\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x28\x00\ +\x77\x00\x69\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x66\x00\x61\x00\ +\x63\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x6f\x00\ +\x6c\x00\x69\x00\x64\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x52\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\x61\x6c\x6c\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\ +\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\ +\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\ +\x69\x64\x29\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\ +\x6c\x01\x03\x00\x00\x00\x06\x00\x5a\x00\x65\x01\x0f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x09\ +\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\x94\x00\ +\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\ +\x61\x00\x20\x00\x77\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ +\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x28\x00\ +\x77\x00\x69\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x72\x00\x65\x00\ +\x63\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\ +\x6f\x00\x72\x00\x20\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\ +\x68\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4a\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x77\x69\x6e\x64\x6f\x77\x20\x6f\x62\ +\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\ +\x65\x2c\x20\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\x20\x6f\x72\x20\ +\x73\x6b\x65\x74\x63\x68\x29\x07\x00\x00\x00\x0b\x41\x72\x63\x68\ +\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x08\x00\x4f\x00\ +\x6b\x00\x6e\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\ +\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\ +\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x32\x00\x44\x00\ +\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x69\x00\ +\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x32\x44\x20\ +\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x50\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\ +\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x73\x00\x20\x00\x66\ +\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x61\x00\x63\x00\x68\x00\x20\ +\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x43\x72\x65\x61\x74\x65\ +\x73\x20\x67\x72\x6f\x75\x70\x73\x20\x66\x6f\x72\x20\x65\x61\x63\ +\x68\x20\x41\x72\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\ +\x70\x65\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x3c\x00\x43\x00\x75\x00\x74\x00\ +\x20\x00\x61\x00\x72\x00\x65\x00\x61\x00\x73\x00\x20\x00\x6c\x00\ +\x69\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x68\x00\x69\x00\x63\x00\ +\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x00\x20\x00\x72\x00\x61\x00\ +\x74\x00\x69\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x43\ +\x75\x74\x20\x61\x72\x65\x61\x73\x20\x6c\x69\x6e\x65\x20\x74\x68\ +\x69\x63\x6b\x6e\x65\x73\x73\x20\x72\x61\x74\x69\x6f\x07\x00\x00\ +\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x38\x00\x44\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\ +\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\ +\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\ +\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1c\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\ +\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x74\x72\x75\x63\x74\x75\x72\ +\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x44\x00\x65\x00\x66\x00\ +\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\ +\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x77\x00\ +\x61\x00\x6c\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x17\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\ +\x6f\x72\x20\x77\x61\x6c\x6c\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\ +\x44\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\ +\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x20\x00\x77\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x44\x65\x66\x61\x75\ +\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\x69\x6e\ +\x64\x6f\x77\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x47\x00\x65\x00\ +\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\x00\x41\x00\x72\x00\ +\x63\x00\x68\x00\x20\x00\x53\x00\x65\x00\x74\x00\x74\x00\x69\x00\ +\x6e\x00\x67\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x47\ +\x65\x6e\x65\x72\x61\x6c\x20\x41\x72\x63\x68\x20\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x20\x00\x4f\x00\x62\x00\ +\x65\x00\x63\x00\x6e\x00\xe1\x00\x20\x00\x6e\x00\x61\x00\x73\x00\ +\x74\x00\x61\x00\x76\x00\x65\x00\x6e\x00\xed\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\ +\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x47\x00\x72\ +\x00\x6f\x00\x75\x00\x70\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x62\ +\x00\x79\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x19\x47\x72\x6f\x75\x70\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x62\x79\x20\x74\x79\x70\x65\ +\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x14\x00\x49\x00\x46\x00\x43\x00\x20\ +\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0a\x49\x46\x43\x20\x69\x6d\x70\x6f\x72\x74\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\xba\x00\x49\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\ +\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x49\x00\x46\x00\x43\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\ +\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\ +\x72\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\ +\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ +\x61\x00\x6c\x00\x6c\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x74\x00\x6f\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x72\x00\x65\x00\x20\x00\ +\x49\x00\x46\x00\x43\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x49\x66\x20\x74\x68\ +\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\ +\x68\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\ +\x69\x6d\x70\x6f\x72\x74\x65\x72\x20\x77\x69\x6c\x6c\x20\x62\x65\ +\x20\x75\x73\x65\x64\x2c\x20\x61\x6c\x6c\x6f\x77\x69\x6e\x67\x20\ +\x74\x6f\x20\x69\x6d\x70\x6f\x72\x74\x20\x6d\x6f\x72\x65\x20\x49\ +\x46\x43\x20\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x56\x00\ +\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x66\x00\ +\x75\x00\x72\x00\x6e\x00\x69\x00\x74\x00\x75\x00\x72\x00\x65\x00\ +\x20\x00\x28\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x6d\x00\x61\x00\ +\x6b\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6d\x00\ +\x6f\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x68\x00\x65\x00\x61\x00\ +\x76\x00\x79\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\ +\x6d\x70\x6f\x72\x74\x20\x66\x75\x72\x6e\x69\x74\x75\x72\x65\x20\ +\x28\x63\x61\x6e\x20\x6d\x61\x6b\x65\x20\x74\x68\x65\x20\x6d\x6f\ +\x64\x65\x6c\x20\x68\x65\x61\x76\x79\x29\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x54\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x64\x00\x65\x00\ +\x62\x00\x75\x00\x67\x00\x20\x00\x69\x00\x6e\x00\x66\x00\x6f\x00\ +\x72\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ +\x64\x00\x75\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x32\x00\ +\x44\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\ +\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x53\ +\x68\x6f\x77\x20\x64\x65\x62\x75\x67\x20\x69\x6e\x66\x6f\x72\x6d\ +\x61\x74\x69\x6f\x6e\x20\x64\x75\x72\x69\x6e\x67\x20\x32\x44\x20\ +\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\ +\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x72\x00\x65\x00\x6e\ +\x00\x64\x00\x65\x00\x72\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\ +\x00\x62\x00\x75\x00\x67\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x73\ +\x00\x61\x00\x67\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1c\x53\x68\x6f\x77\x20\x72\x65\x6e\x64\x65\x72\x65\x72\x20\ +\x64\x65\x62\x75\x67\x20\x6d\x65\x73\x73\x61\x67\x65\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x9e\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\x00\ +\x66\x00\x69\x00\x65\x00\x73\x00\x20\x00\x68\x00\x6f\x00\x77\x00\ +\x20\x00\x6d\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x74\x00\x69\x00\ +\x6d\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x76\x00\x69\x00\x65\x00\x77\x00\x65\x00\x64\x00\x20\x00\x6c\x00\ +\x69\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x68\x00\x69\x00\x63\x00\ +\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x00\x20\x00\x6d\x00\x75\x00\ +\x73\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x61\x00\x70\x00\ +\x70\x00\x6c\x00\x69\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x63\x00\x75\x00\x74\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x53\x70\x65\ +\x63\x69\x66\x69\x65\x73\x20\x68\x6f\x77\x20\x6d\x61\x6e\x79\x20\ +\x74\x69\x6d\x65\x73\x20\x74\x68\x65\x20\x76\x69\x65\x77\x65\x64\ +\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\x73\x20\ +\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x70\x70\x6c\x69\x65\x64\x20\ +\x74\x6f\x20\x63\x75\x74\x20\x6c\x69\x6e\x65\x73\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x66\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\x65\x00\ +\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\ +\x6c\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\ +\x6e\x00\x65\x00\x77\x00\x20\x00\x53\x00\x74\x00\x72\x00\x75\x00\ +\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x33\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\ +\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ +\x20\x6e\x65\x77\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5c\x00\x54\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x64\x00\x65\x00\x66\x00\x61\x00\x75\x00\ +\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ +\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x77\x00\ +\x20\x00\x57\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\ +\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ +\x20\x6e\x65\x77\x20\x57\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x55\x00\x73\x00\x65\x00\x20\ +\x00\x49\x00\x46\x00\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\ +\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x66\x00\x20\ +\x00\x61\x00\x76\x00\x61\x00\x69\x00\x6c\x00\x61\x00\x62\x00\x6c\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\x65\x20\ +\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\x69\x66\x20\ +\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x07\x00\x00\x00\x1c\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\ +\x00\x26\x00\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\x74\x00\x65\ +\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0d\x26\x41\x72\x63\x68\x69\x74\x65\x63\x74\x75\x72\ +\x65\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x0c\ +\x00\x26\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x26\x44\x72\x61\x66\x74\x07\x00\x00\x00\ +\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x41\x00\x72\x00\ +\x63\x00\x68\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x41\x72\x63\x68\x20\x74\x6f\ +\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\ +\x00\x22\x00\x43\x00\x61\x00\x6c\x00\x63\x00\x75\x00\x6c\x00\x61\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x54\x00\x6f\x00\x6f\ +\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x43\x61\ +\x6c\x63\x75\x6c\x61\x74\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\ +\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x43\ +\x00\x6f\x00\x6e\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\x00\x54\ +\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x43\x6f\x6e\x74\x65\x78\x74\x20\x54\x6f\x6f\x6c\x73\x07\ +\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x20\x00\x43\ +\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x10\x43\x6f\x6e\x76\x65\x72\x73\x69\ +\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\ +\x68\x01\x03\x00\x00\x00\x1e\x00\x44\x00\x72\x00\x61\x00\x66\x00\ +\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x20\x00\x74\x00\x6f\x00\ +\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x44\ +\x72\x61\x66\x74\x20\x6d\x6f\x64\x20\x74\x6f\x6f\x6c\x73\x07\x00\ +\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x44\x00\ +\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\ +\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x72\x61\ +\x66\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\ +\x68\x01\x03\x00\x00\x00\x6e\x00\x70\x00\x79\x00\x63\x00\x6f\x00\ +\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\ +\x74\x00\x20\x00\x66\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x2c\x00\ +\x20\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\ +\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\ +\x20\x00\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\ +\x64\x00\x2e\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x70\ +\x79\x63\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\ +\x6e\x64\x2c\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\ +\x6f\x72\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x69\x73\x61\ +\x62\x6c\x65\x64\x2e\x0a\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ +\ +\x00\x00\x4f\xe1\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x04\xf8\x00\x00\x47\xa4\x00\x00\x00\x4f\x00\x04\x8e\xc3\ +\x00\x00\x01\x6f\x00\x04\x8f\x03\x00\x00\x02\x42\x00\x04\x8f\x03\ +\x00\x00\x28\x2a\x00\x04\x9c\x2c\x00\x00\x29\xde\x00\x04\xbb\x04\ +\x00\x00\x08\x7c\x00\x05\x48\x35\x00\x00\x0d\xf1\x00\x05\x67\xd5\ +\x00\x00\x10\x3f\x00\x05\x96\x56\x00\x00\x10\x91\x00\x05\x96\x56\ +\x00\x00\x32\x52\x00\x05\xa0\xa5\x00\x00\x10\xb6\x00\x05\xa0\xa5\ +\x00\x00\x36\x39\x00\x05\xc0\x65\x00\x00\x1e\xa7\x00\x05\xd8\x2c\ +\x00\x00\x20\x54\x00\x05\xd8\x2c\x00\x00\x3a\x39\x00\x32\x23\xa5\ +\x00\x00\x47\xc8\x00\x39\xdf\x33\x00\x00\x3f\x69\x00\x48\x4e\x25\ +\x00\x00\x01\x49\x00\x49\xeb\x9b\x00\x00\x2a\xd8\x00\x4b\x55\x33\ +\x00\x00\x40\xc5\x00\x4d\x36\x62\x00\x00\x0a\xf3\x00\x4d\x36\x62\ +\x00\x00\x2d\x9a\x00\x5d\xfb\xa8\x00\x00\x20\xf0\x00\x5e\x08\xc3\ +\x00\x00\x21\x49\x00\x61\xb0\x33\x00\x00\x18\x17\x00\x62\x9b\xa8\ +\x00\x00\x11\x4f\x00\x62\x9b\xa8\x00\x00\x36\x65\x00\x8a\x92\x57\ +\x00\x00\x00\x00\x00\xaa\x80\x25\x00\x00\x07\xc7\x00\xc9\x7b\xf3\ +\x00\x00\x14\x26\x00\xfb\x72\xf3\x00\x00\x3e\xf5\x01\x19\x4e\x85\ +\x00\x00\x06\x17\x01\x55\x2b\xf5\x00\x00\x05\x76\x01\x79\x17\x94\ +\x00\x00\x24\xa0\x01\x8e\x84\xa6\x00\x00\x12\xc0\x01\xad\x7d\xe3\ +\x00\x00\x49\x67\x01\xaf\x41\x84\x00\x00\x23\x54\x01\xf7\xa8\x83\ +\x00\x00\x46\x69\x02\x01\x7f\xd3\x00\x00\x11\xbe\x02\x29\xb3\xc4\ +\x00\x00\x31\x85\x02\x5a\x4a\x53\x00\x00\x17\x2d\x02\x5f\xc9\x59\ +\x00\x00\x39\x09\x02\x66\x7f\x7e\x00\x00\x0f\x0b\x02\x6a\x77\x99\ +\x00\x00\x42\x27\x02\x80\x5f\x17\x00\x00\x25\x83\x02\x82\x88\x3a\ +\x00\x00\x04\x70\x02\x85\x4f\xf5\x00\x00\x1a\xa3\x02\x90\x40\x65\ +\x00\x00\x0d\xa5\x02\x90\x40\x65\x00\x00\x2d\xc8\x02\x94\x16\x35\ +\x00\x00\x11\xf1\x02\xab\x87\xd4\x00\x00\x48\x08\x02\xb8\xae\x74\ +\x00\x00\x2e\xda\x02\xc3\x91\x93\x00\x00\x43\xb0\x02\xcd\x05\xa3\ +\x00\x00\x2e\x20\x02\xdd\x14\x14\x00\x00\x2f\x2c\x03\x13\x15\x3e\ +\x00\x00\x0c\x27\x03\x1b\xda\x15\x00\x00\x20\xba\x03\x1d\xe8\xe3\ +\x00\x00\x3d\x5c\x03\x29\x7a\x34\x00\x00\x00\xe3\x03\x2c\xe9\xb3\ +\x00\x00\x18\x94\x03\x92\x51\xe0\x00\x00\x10\xdd\x03\xa2\xec\x23\ +\x00\x00\x20\x77\x03\xbe\xb0\x34\x00\x00\x1f\x76\x03\xce\x98\xe5\ +\x00\x00\x03\xe8\x03\xd4\x22\x74\x00\x00\x27\x1e\x04\x35\xfa\x55\ +\x00\x00\x13\x81\x04\xc3\x75\x44\x00\x00\x1a\xf6\x04\xdb\x21\x3e\ +\x00\x00\x35\x68\x04\xeb\xfd\xf4\x00\x00\x0b\x56\x05\x14\x5b\x83\ +\x00\x00\x07\xf8\x05\x18\xda\xa3\x00\x00\x2c\xca\x05\x5f\x3d\x83\ +\x00\x00\x3e\x6b\x05\x8c\x46\xc5\x00\x00\x10\x66\x05\x90\xba\xe3\ +\x00\x00\x10\x0b\x05\xc0\x56\xe3\x00\x00\x44\x5f\x05\xc7\xeb\xc7\ +\x00\x00\x42\xdf\x05\xe0\x4b\x67\x00\x00\x21\x20\x05\xe0\x4b\x67\ +\x00\x00\x3b\x6d\x05\xef\x78\x4a\x00\x00\x24\xdb\x06\x1f\x6f\xa4\ +\x00\x00\x22\x86\x06\x32\xe3\xe3\x00\x00\x49\xbb\x06\x5b\x01\x15\ +\x00\x00\x03\xb5\x06\x69\xd0\x04\x00\x00\x22\x0a\x06\x9f\x6f\xd4\ +\x00\x00\x07\x57\x06\xd6\x3f\xa4\x00\x00\x24\x60\x06\xe6\x2f\x43\ +\x00\x00\x13\x1d\x07\x00\xcc\xc4\x00\x00\x40\x5e\x07\x07\x84\xba\ +\x00\x00\x4a\x03\x07\x08\x43\x0e\x00\x00\x28\x5a\x07\x16\x58\x05\ +\x00\x00\x3b\xf2\x07\x25\x74\x53\x00\x00\x2b\xab\x07\x28\xff\x15\ +\x00\x00\x0e\x6d\x07\x36\x51\x26\x00\x00\x14\xe6\x07\x5c\xdc\x04\ +\x00\x00\x21\x75\x07\x60\x23\xf3\x00\x00\x03\x28\x07\xca\xf8\x87\ +\x00\x00\x3b\x9d\x08\x25\x81\xc4\x00\x00\x06\xf4\x08\x4a\x45\xd9\ +\x00\x00\x3a\x61\x08\x65\x4c\x95\x00\x00\x1d\x0a\x08\xc5\xe3\x35\ +\x00\x00\x1c\x59\x08\xca\xc9\x74\x00\x00\x15\xf6\x08\xfb\xb8\xa4\ +\x00\x00\x0a\x82\x09\x69\xac\xa7\x00\x00\x1f\xe7\x09\x6c\x6c\xa7\ +\x00\x00\x0b\x1b\x09\x9f\xcc\xde\x00\x00\x23\xd8\x09\xba\xe6\x35\ +\x00\x00\x11\x8a\x09\xba\xe6\x35\x00\x00\x38\xcb\x09\xc5\xbe\xca\ +\x00\x00\x09\xe4\x09\xe3\x98\xe4\x00\x00\x27\x70\x09\xed\x98\x55\ +\x00\x00\x33\x6c\x0a\x3e\x06\x83\x00\x00\x04\xe4\x0a\x3f\x1f\xd6\ +\x00\x00\x05\x32\x0a\x3f\x2b\x25\x00\x00\x05\xd1\x0a\x3f\x5d\xac\ +\x00\x00\x06\x6a\x0a\x7f\xee\xa3\x00\x00\x48\x37\x0a\xb6\xc8\x9a\ +\x00\x00\x0b\x85\x0a\xbf\x46\x0e\x00\x00\x1e\xce\x0a\xd6\x07\x84\ +\x00\x00\x21\xa8\x0b\x0a\xc3\xf3\x00\x00\x00\x79\x0b\x51\x30\xa8\ +\x00\x00\x30\x4a\x0b\x65\xda\xb3\x00\x00\x3d\xed\x0b\x8d\x97\x93\ +\x00\x00\x45\x9b\x0b\x9c\x5b\xe7\x00\x00\x09\x49\x0b\xb9\xe8\x93\ +\x00\x00\x30\xc1\x0b\xc4\xb1\x23\x00\x00\x2a\x0a\x0c\x02\xac\xd7\ +\x00\x00\x02\xfb\x0c\x02\xac\xd7\x00\x00\x28\xcd\x0c\x25\x3e\x53\ +\x00\x00\x34\x3d\x0c\x3c\x8b\x33\x00\x00\x48\x84\x0c\x41\x0a\x83\ +\x00\x00\x48\xd2\x0c\x4e\x9b\x23\x00\x00\x33\xaf\x0c\x98\x80\x23\ +\x00\x00\x49\x1e\x0c\xc4\xd0\x80\x00\x00\x26\x50\x0c\xdf\x5a\x1e\ +\x00\x00\x01\x9e\x0c\xfc\x97\x06\x00\x00\x20\x24\x0d\x03\x26\xb4\ +\x00\x00\x02\xb8\x0d\x08\x90\xf3\x00\x00\x1b\xf0\x0d\x1e\xda\xa4\ +\x00\x00\x03\x5f\x0d\x3b\x3b\x49\x00\x00\x37\x63\x0d\xa8\x3a\x35\ +\x00\x00\x18\xe7\x0d\xc1\x7d\x47\x00\x00\x26\xb0\x0d\xfa\x53\xe5\ +\x00\x00\x08\xaf\x0e\x69\x87\x13\x00\x00\x32\x7c\x0e\x8c\xd7\x43\ +\x00\x00\x36\xaa\x0e\x98\x0a\xd6\x00\x00\x1f\x12\x0e\xab\x8d\x1f\ +\x00\x00\x3c\xb5\x0e\xb9\x1b\xf2\x00\x00\x15\x89\x0e\xec\x0b\x9e\ +\x00\x00\x29\x03\x0f\x16\x4a\x24\x00\x00\x1e\x2b\x0f\x17\xc7\xa3\ +\x00\x00\x2b\x10\x0f\x55\xc1\x57\x00\x00\x06\xac\x0f\x78\x41\x05\ +\x00\x00\x47\x26\x0f\x79\xe3\xf3\x00\x00\x2b\xf8\x0f\x95\xd5\x09\ +\x00\x00\x19\x91\x0f\xa2\x16\x43\x00\x00\x1d\xf7\x0f\xc0\xb8\xb4\ +\x00\x00\x0e\x14\x0f\xd0\x39\x44\x00\x00\x02\x6d\x0f\xe5\x74\x74\ +\x00\x00\x00\xb1\x0f\xf3\xe8\x33\x00\x00\x3f\xd4\x69\x00\x00\x4a\ +\xcf\x03\x00\x00\x00\x26\x00\x20\x00\xc9\x00\x70\x00\xfc\x00\x6c\ +\x00\x65\x00\x74\x00\x20\x00\x6c\x00\xe9\x00\x74\x00\x72\x00\x65\ +\x00\x68\x00\x6f\x00\x7a\x00\xe1\x00\x73\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x10\x20\x43\x72\x65\x61\x74\x65\x20\x42\x75\ +\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x0e\x00\x48\x00\x6f\x00\x7a\x00\x7a\x00\xe1\x00\ +\x61\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\x64\x64\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\ +\x4b\x00\x69\x00\x65\x00\x67\x00\xe9\x00\x73\x00\x7a\x00\xed\x00\ +\x74\x01\x51\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x41\ +\x64\x64\x69\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x10\x00\x49\x00\x67\x00\x61\x00\x7a\x00\ +\xed\x00\x74\x00\xe1\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x09\x41\x6c\x69\x67\x6e\x6d\x65\x6e\x74\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x4d\x00\x69\x00\x6e\x00\ +\x64\x00\x65\x00\x6e\x00\x20\x00\x6a\x00\xf3\x00\x21\x00\x20\x00\ +\x6e\x00\x69\x00\x6e\x00\x63\x00\x73\x00\x20\x00\x70\x00\x72\x00\ +\x6f\x00\x62\x00\x6c\x00\xe9\x00\x6d\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1b\x41\x6c\x6c\x20\x67\x6f\x6f\x64\x21\x20\x6e\ +\x6f\x20\x70\x72\x6f\x62\x6c\x65\x6d\x73\x20\x66\x6f\x75\x6e\x64\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\ +\x53\x00\x7a\x00\xf6\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x05\x41\x6e\x67\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x12\x00\x54\x00\x65\x00\x6e\x00\x67\x00\x65\x00\ +\x6c\x00\x79\x00\x65\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x41\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x64\x00\x45\x00\x7a\x00\x20\x00\x61\x00\x20\x00\x73\ +\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\xfa\x00\x72\x00\xe1\ +\x00\x6e\x00\x61\x00\x6b\x00\x20\x00\x65\x00\x72\x00\x72\x00\x65\ +\x00\x20\x00\x61\x00\x20\x00\x74\x00\x65\x00\x6e\x00\x67\x00\x65\ +\x00\x6c\x00\x79\x00\x65\x00\x6b\x00\x20\x00\x72\x00\x65\x00\x6e\ +\x00\x64\x00\x73\x00\x7a\x00\x65\x00\x72\x00\x72\x00\x65\x00\x20\ +\x00\xe9\x00\x70\x00\xfc\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x27\x41\x78\x65\x73\x20\x73\x79\x73\x74\x65\x6d\x73\x20\x74\ +\x68\x69\x73\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x69\x73\ +\x20\x62\x75\x69\x6c\x74\x20\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x54\x00\x65\x00\x6e\x00\x67\ +\x00\x65\x00\x6c\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x41\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x24\x00\x41\x00\x6c\x00\x61\x00\x70\x00\x20\x00\x32\x00\ +\x44\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x75\x00\x6d\x00\x6f\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0e\x42\x61\x73\x65\x20\x32\x44\x20\x6f\x62\x6a\x65\x63\x74\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x00\x41\ +\x00\x6c\x00\x61\x00\x70\x00\x2d\x00\xf6\x00\x73\x00\x73\x00\x7a\ +\x00\x65\x00\x74\x00\x65\x00\x76\x01\x51\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0e\x42\x61\x73\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\ +\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x0c\x00\xc9\x00\x70\x00\xfc\x00\x6c\x00\x65\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\xd6\ +\x00\x73\x00\x73\x00\x7a\x00\x65\x00\x74\x00\x65\x00\x76\x01\x51\ +\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\x6d\x70\ +\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x24\x00\x41\x00\x7a\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x20\x00\x65\x00\ +\x6c\x00\x65\x00\x6d\x00\x65\x00\x69\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x19\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x46\x00\x6f\x00\ +\x6c\x00\x79\x00\x74\x00\x61\x00\x74\x00\xe1\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x43\x6f\x6e\x74\x69\x6e\x75\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x50\x00\x4e\ +\x00\x65\x00\x6d\x00\x20\x00\x73\x00\x69\x00\x6b\x00\x65\x00\x72\ +\x00\xfc\x00\x6c\x00\x74\x00\x20\x00\x6b\x00\x69\x00\x73\x00\x7a\ +\x00\xe1\x00\x6d\x00\xed\x00\x74\x00\x61\x00\x6e\x00\x69\x00\x20\ +\x00\x61\x00\x20\x00\x66\x00\x61\x00\x6c\x00\x20\x00\x61\x00\x6c\ +\x00\x61\x00\x6b\x00\x7a\x00\x61\x00\x74\x00\x6f\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1f\x43\x6f\x75\x6c\x64\x6e\x27\x74\ +\x20\x63\x6f\x6d\x70\x75\x74\x65\x20\x74\x68\x65\x20\x77\x61\x6c\ +\x6c\x20\x73\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x3e\x00\x4e\x00\x65\x00\x6d\x00\x20\x00\x74\ +\x00\x61\x00\x6c\x00\xe1\x00\x6c\x00\x74\x00\x61\x00\x20\x00\x6d\ +\x00\x65\x00\x67\x00\x20\x00\x61\x00\x20\x00\x49\x00\x66\x00\x63\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\ +\x00\x6c\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x43\x6f\ +\x75\x6c\x64\x6e\x27\x74\x20\x6c\x6f\x63\x61\x74\x65\x20\x49\x66\ +\x63\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x0a\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x54\x00\x65\x00\x6e\ +\x00\x67\x00\x65\x00\x6c\x00\x79\x00\x65\x00\x6b\x00\x20\x00\x6c\ +\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\xe1\ +\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\ +\x65\x61\x74\x65\x20\x41\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x20\x00\x54\x00\x65\x00\x74\x01\x51\ +\x00\x20\x00\x6c\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\ +\x00\x7a\x00\xe1\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x52\x6f\x6f\x66\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x53\x00\x7a\ +\x00\x61\x00\x6b\x00\x61\x00\x73\x00\x7a\x00\x20\x00\x73\x00\xed\ +\x00\x6b\x00\x20\x00\x6c\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\ +\x00\x6f\x00\x7a\x00\xe1\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x14\x43\x72\x65\x61\x74\x65\x20\x53\x65\x63\x74\x69\ +\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x22\x00\x4f\x00\x6c\x00\x64\x00\x61\x00\ +\x6c\x00\x20\x00\x6c\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\ +\x6f\x00\x7a\x00\xe1\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x53\x69\x74\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x53\x00\ +\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\xfa\x00\x72\x00\x61\x00\ +\x20\x00\x6c\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\ +\x7a\x00\xe1\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x10\x43\x72\x65\x61\x74\x65\x20\x53\x74\x72\x75\x63\x74\x75\x72\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1e\ +\x00\x46\x00\x61\x00\x6c\x00\x20\x00\x6c\x00\xe9\x00\x74\x00\x72\ +\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\xe1\x00\x73\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x57\ +\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x22\x00\x41\x00\x62\x00\x6c\x00\x61\x00\x6b\x00\x20\x00\x6c\ +\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\xe1\ +\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x72\ +\x65\x61\x74\x65\x20\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x36\x00\xda\x00\x6a\x00\x20\ +\x00\xf6\x00\x73\x00\x73\x00\x7a\x00\x65\x00\x74\x00\x65\x00\x76\ +\x01\x51\x00\x20\x00\x6c\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\ +\x00\x6f\x00\x7a\x00\xe1\x00\x73\x00\xe1\x00\x68\x00\x6f\x00\x7a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\x74\x65\ +\x20\x6e\x65\x77\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x40\x00\x4c\x00\ +\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\x6e\x00\ +\x69\x00\x2f\x00\x66\x00\x72\x00\x69\x00\x73\x00\x73\x00\xed\x00\ +\x74\x00\x65\x00\x6e\x00\x69\x00\x20\x00\xf6\x00\x73\x00\x73\x00\ +\x7a\x00\x65\x00\x74\x00\x65\x00\x76\x01\x51\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\x74\x65\x2f\x75\x70\ +\x64\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x54\x00\ +\xe1\x00\x76\x00\x6f\x00\x6c\x00\x73\x00\xe1\x00\x67\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4a\x00\x54\ +\x00\xe1\x00\x76\x00\x6f\x00\x6c\x00\x73\x00\xe1\x00\x67\x00\x6f\ +\x00\x6b\x00\x20\x00\xe9\x00\x73\x00\x20\x00\x73\x00\x7a\x00\xf6\ +\x00\x67\x00\x65\x00\x6b\x00\x20\x00\x74\x00\x65\x00\x6e\x00\x67\ +\x00\x65\x00\x6c\x00\x79\x00\x65\x00\x6b\x00\x20\x00\x6b\x00\xf6\ +\x00\x7a\x00\xf6\x00\x74\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x21\x44\x69\x73\x74\x61\x6e\x63\x65\x73\x20\x61\x6e\x64\x20\ +\x61\x6e\x67\x6c\x65\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x61\ +\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x16\x00\x53\x00\x7a\x00\x65\x00\x72\x00\x6b\x00\x65\x00\x73\ +\x00\x7a\x00\x74\x00\xe9\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x5a\x00\x48\x00\x69\x00\x62\x00\x61\x00\x20\x00\ +\x61\x00\x20\x00\x66\x00\x61\x00\x6c\x00\x20\x00\x61\x00\x6c\x00\ +\x61\x00\x6b\x00\x7a\x00\x61\x00\x74\x00\x20\x00\x6f\x00\x73\x00\ +\x7a\x00\x74\x00\xf3\x00\x6a\x00\xe1\x00\x6e\x00\x61\x00\x6b\x00\ +\x20\x00\x6c\x00\x65\x00\x76\x00\xe9\x00\x74\x00\x65\x00\x6c\x00\ +\x65\x00\x20\x00\x6b\x00\xf6\x00\x7a\x00\x62\x00\x65\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x27\x45\x72\x72\x6f\x72\x20\x72\ +\x65\x6d\x6f\x76\x69\x6e\x67\x20\x73\x70\x6c\x69\x74\x74\x65\x72\ +\x20\x66\x72\x6f\x6d\x20\x77\x61\x6c\x6c\x20\x73\x68\x61\x70\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x56\x00\ +\x48\x00\x69\x00\x62\x00\x61\x00\x3a\x00\x20\x00\x4e\x00\x65\x00\ +\x6d\x00\x20\x00\xe1\x00\x6c\x00\x6c\x00\x61\x00\x70\x00\xed\x00\ +\x74\x00\x68\x00\x61\x00\x74\x00\xf3\x00\x20\x00\x6d\x00\x65\x00\ +\x67\x00\x20\x00\x61\x00\x20\x00\x6b\x00\x61\x00\x72\x00\x61\x00\ +\x6b\x00\x74\x00\x65\x00\x72\x00\x6b\x00\xf3\x00\x64\x00\x6f\x00\ +\x6c\x00\xe1\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x45\ +\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x64\ +\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\x61\x72\x61\x63\x74\ +\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x58\x00\x48\x00\x69\x00\x62\ +\x00\x61\x00\x3a\x00\x20\x00\x4e\x00\x65\x00\x6d\x00\x20\x00\xe1\ +\x00\x6c\x00\x6c\x00\x61\x00\x70\x00\xed\x00\x74\x00\x68\x00\x61\ +\x00\x74\x00\xf3\x00\x20\x00\x6d\x00\x65\x00\x67\x00\x20\x00\x61\ +\x00\x20\x00\x6b\x00\x61\x00\x72\x00\x61\x00\x6b\x00\x74\x00\x65\ +\x00\x72\x00\x6b\x00\xf3\x00\x64\x00\x6f\x00\x6c\x00\xe1\x00\x73\ +\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x45\x72\x72\x6f\ +\x72\x3a\x20\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x64\x65\x74\x65\ +\x72\x6d\x69\x6e\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\ +\x65\x6e\x63\x6f\x64\x69\x6e\x67\x0a\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x48\x00\x69\x00\x62\x00\x61\ +\x00\x3a\x00\x20\x00\xc9\x00\x72\x00\x76\x00\xe9\x00\x6e\x00\x79\ +\x00\x74\x00\x65\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x6c\ +\x00\x61\x00\x70\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x75\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\ +\x45\x72\x72\x6f\x72\x3a\x20\x49\x6e\x76\x61\x6c\x69\x64\x20\x62\ +\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x53\x00\x7a\x00\x69\x00\ +\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\ +\x6f\x72\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x1a\x00\x43\x00\x73\x00\x6f\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x6f\x00\x73\x00\xed\x00\x74\x00\xe1\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x47\x72\x6f\x75\x70\x69\x6e\x67\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x4d\x00\x61\ +\x00\x67\x00\x61\x00\x73\x00\x73\x00\xe1\x00\x67\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x48\x65\x69\x67\x68\x74\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5e\x00\x49\x00\x46\x00\ +\x43\x00\x2d\x00\x73\x00\xe9\x00\x6d\x00\x61\x00\x20\x00\x6e\x00\ +\x65\x00\x6d\x00\x20\x00\x74\x00\x61\x00\x6c\x00\xe1\x00\x6c\x00\ +\x68\x00\x61\x00\x74\x00\xf3\x00\x2c\x00\x20\x00\x61\x00\x7a\x00\ +\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\x69\x00\x6d\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x00\x20\x00\x6c\x00\x65\x00\x74\x00\x69\x00\ +\x6c\x00\x74\x00\x76\x00\x61\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2b\x49\x46\x43\x20\x53\x63\x68\x65\x6d\x61\x20\x6e\x6f\ +\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x49\x46\x43\x20\x69\x6d\x70\ +\x6f\x72\x74\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x2e\x0a\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xfc\x00\x48\x00\ +\x61\x00\x20\x00\x69\x00\x67\x00\x61\x00\x7a\x00\x2c\x00\x20\x00\ +\x68\x00\x61\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\x6c\x00\ +\x20\x00\x65\x00\x67\x00\x79\x00\x20\x00\x66\x00\x65\x00\x6c\x00\ +\xfc\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x66\x00\ +\x65\x00\x6b\x00\x73\x00\x7a\x00\x69\x00\x6b\x00\x2c\x00\x20\x00\ +\x61\x00\x6b\x00\x6b\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x20\x00\ +\x68\x00\x61\x00\x74\x00\xe1\x00\x72\x00\x6f\x00\x6c\x00\xf3\x00\ +\x20\x00\x73\x00\x7a\x00\x65\x00\x67\x00\xe9\x00\x6c\x00\x79\x00\ +\x65\x00\x69\x00\x74\x00\x20\x00\x6b\x00\xf6\x00\x76\x00\x65\x00\ +\x74\x00\xe9\x00\x73\x00\x72\x00\x65\x00\x20\x00\x68\x00\x61\x00\ +\x73\x00\x7a\x00\x6e\x00\xe1\x00\x6c\x00\x6a\x00\x61\x00\x2c\x00\ +\x20\x00\xe9\x00\x73\x00\x20\x00\x6e\x00\x65\x00\x6d\x00\x20\x00\ +\x76\x00\x65\x00\x73\x00\x7a\x00\x69\x00\x20\x00\x66\x00\x69\x00\ +\x67\x00\x79\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x62\x00\x65\x00\ +\x20\x00\x61\x00\x20\x00\x66\x00\x65\x00\x6c\x00\xfc\x00\x6c\x00\ +\x65\x00\x74\x00\x65\x00\x74\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x69\x49\x66\x20\x54\x72\x75\x65\x2c\x20\x69\x66\x20\x74\ +\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\ +\x64\x20\x6f\x6e\x20\x61\x20\x66\x61\x63\x65\x2c\x20\x69\x74\x20\ +\x77\x69\x6c\x6c\x20\x75\x73\x65\x20\x69\x74\x73\x20\x62\x6f\x72\ +\x64\x65\x72\x20\x77\x69\x72\x65\x20\x61\x73\x20\x74\x72\x61\x63\ +\x65\x2c\x20\x61\x6e\x64\x20\x64\x69\x73\x63\x6f\x6e\x73\x69\x64\ +\x65\x72\x20\x74\x68\x65\x20\x66\x61\x63\x65\x2e\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x26\x00\x48\x00\xe1\x00\ +\x6c\x00\xf3\x00\x6b\x00\x61\x00\x74\x00\x20\x00\x61\x00\x6c\x00\ +\x61\x00\x6b\x00\x7a\x00\x61\x00\x74\x00\x6f\x00\x6b\x00\x6b\x00\ +\xe1\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\ +\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x06\x00\x4e\x00\xe9\x00\x76\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x4e\x61\x6d\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x4e\x00\x69\x00\x6e\ +\x00\x63\x00\x73\x00\x20\x00\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\ +\x00\xf6\x00\x6c\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x75\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x12\x4e\x6f\x20\x6f\x62\x6a\x65\x63\x74\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x66\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x75\x00\x6d\x00\x6f\x00\x6b\x00\x20\x00\x6e\x00\x65\x00\x6d\x00\ +\x20\x00\x6c\x00\x65\x00\x74\x00\x74\x00\x65\x00\x6b\x00\x20\x00\ +\x6b\x00\x69\x00\x76\x00\xe1\x00\x67\x00\x76\x00\x61\x00\x20\x00\ +\x61\x00\x20\x00\x6b\x00\x69\x00\x76\x00\xe1\x00\x67\x00\xe1\x00\ +\x73\x00\x73\x00\x61\x00\x6c\x00\x20\x00\x61\x00\x20\x00\x73\x00\ +\xed\x00\x6b\x00\x6b\x00\x61\x00\x6c\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1f\x4e\x6f\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x72\ +\x65\x20\x63\x75\x74\x20\x62\x79\x20\x74\x68\x65\x20\x70\x6c\x61\ +\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x9c\x00\x4e\x00\x69\x00\x6e\x00\x63\x00\x73\x00\x20\x00\x61\x00\ +\x6c\x00\x61\x00\x6b\x00\x7a\x00\x61\x00\x74\x00\x20\x00\x73\x00\ +\x7a\x00\xe1\x00\x6d\x00\xed\x00\x74\x00\x76\x00\x61\x00\x2c\x00\ +\x20\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x6a\x00\x65\x00\ +\x20\x00\x6b\x00\x69\x00\x20\x00\x61\x00\x20\x00\x64\x00\x72\x00\ +\xf3\x00\x74\x00\x76\x00\xe1\x00\x7a\x00\x61\x00\x73\x00\x20\x00\ +\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x65\x00\x6c\x00\ +\xe9\x00\x73\x00\x74\x00\x20\x00\xe9\x00\x73\x00\x20\x00\xfa\x00\ +\x6a\x00\x72\x00\x61\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\ +\x65\x00\x72\x00\x65\x00\x6c\x00\x6a\x00\x65\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4b\x4e\x6f\x20\x73\x68\x61\x70\x65\x20\ +\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x63\x6f\x6d\x70\x75\x74\x65\ +\x64\x20\x79\x65\x74\x2c\x20\x73\x65\x6c\x65\x63\x74\x20\x77\x69\ +\x72\x65\x66\x72\x61\x6d\x65\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\ +\x67\x20\x61\x6e\x64\x20\x72\x65\x6e\x64\x65\x72\x20\x61\x67\x61\ +\x69\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x14\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\ +\x6d\x00\x6f\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x4f\ +\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x0a\x00\x4f\x00\x6c\x00\x64\x00\x61\x00\x6c\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x50\x61\x67\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x54\x00\xf6\ +\x00\x72\x00\x6c\x00\xe9\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x06\x52\x65\x6d\x6f\x76\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x08\x00\x54\x00\x65\x00\x74\x01\x51\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x4f\x00\x6c\ +\x00\x64\x00\x61\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x40\x00\xc9\x00\x72\x00\x76\x00\xe9\x00\x6e\x00\x79\x00\ +\x74\x00\x65\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x20\x00\x6b\x00\ +\x69\x00\x68\x00\x61\x00\x67\x00\x79\x00\xe1\x00\x73\x00\x61\x00\ +\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x53\x6b\x69\ +\x70\x70\x69\x6e\x67\x20\x69\x6e\x76\x61\x6c\x69\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x3a\x20\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x18\x00\x48\x00\xe1\x00\x6c\x00\xf3\x00\x20\x00\ +\x6f\x00\x73\x00\x7a\x00\x74\x00\xe1\x00\x73\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\ +\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\ +\x00\x46\x00\x65\x00\x6c\x00\xe9\x00\x70\x00\xed\x00\x74\x00\xe9\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\x75\ +\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x0e\x00\x4b\x00\x69\x00\x76\x00\x6f\x00\x6e\x00\xe1\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x75\x62\x74\ +\x72\x61\x63\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x7a\x00\x45\x00\x6e\x00\x6e\x00\x65\x00\ +\x6b\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\x6c\x00\x6e\x00\ +\x61\x00\x6b\x00\x20\x00\x61\x00\x7a\x00\x20\x00\x69\x00\x67\x00\ +\x61\x00\x7a\x00\xed\x00\x74\x00\xe1\x00\x73\x00\x61\x00\x20\x00\ +\x61\x00\x7a\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x70\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x72\x00\ +\x61\x00\x2c\x00\x20\x00\x68\x00\x61\x00\x20\x00\x61\x00\x7a\x00\ +\x20\x00\x65\x00\x6c\x00\xe9\x00\x72\x00\x68\x00\x65\x00\x74\x01\ +\x51\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3c\x54\x68\x65\x20\x61\ +\x6c\x69\x67\x6e\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x69\x73\ +\x20\x77\x61\x6c\x6c\x20\x6f\x6e\x20\x69\x74\x73\x20\x62\x61\x73\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x69\x66\x20\x61\x70\x70\ +\x6c\x69\x63\x61\x62\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x2e\x00\x45\x00\x6e\x00\x6e\x00\x65\x00\x6b\ +\x00\x20\x00\x61\x00\x20\x00\x74\x00\x65\x00\x74\x01\x51\x00\x6e\ +\x00\x65\x00\x6b\x00\x20\x00\x61\x00\x20\x00\x73\x00\x7a\x00\xf6\ +\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x68\ +\x65\x20\x61\x6e\x67\x6c\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x34\x00\x4d\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\ +\x20\x00\x65\x00\x67\x00\x79\x00\x65\x00\x73\x00\x20\x00\x74\x00\ +\x65\x00\x6e\x00\x67\x00\x65\x00\x6c\x00\x79\x00\x20\x00\x73\x00\ +\x7a\x00\xf6\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x17\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\x73\x20\x6f\x66\x20\x65\ +\x61\x63\x68\x20\x61\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x66\x00\x45\x00\x6e\x00\x6e\x00\x65\x00\ +\x6b\x00\x20\x00\x61\x00\x20\x00\x6b\x00\x69\x00\x76\x00\xe1\x00\ +\x6c\x00\x61\x00\x73\x00\x7a\x00\x74\x00\x6f\x00\x74\x00\x74\x00\ +\x20\x00\x73\x00\xed\x00\x6b\x00\x6e\x00\x61\x00\x6b\x00\x20\x00\ +\x61\x00\x20\x00\x6d\x00\x65\x00\x67\x00\x6a\x00\x65\x00\x6c\x00\ +\x65\x00\x6e\x00\xed\x00\x74\x00\xe9\x00\x73\x00\x69\x00\x20\x00\ +\x6d\x00\xe9\x00\x72\x00\x65\x00\x74\x00\x65\x00\x69\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x26\x54\x68\x65\x20\x64\x69\x73\x70\x6c\ +\x61\x79\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x64\x00\x41\x00\x20\ +\x00\x6b\x00\x69\x00\x68\x00\xfa\x00\x7a\x00\x61\x00\x6e\x00\x64\ +\x00\xf3\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6b\ +\x00\x20\x00\x73\x00\x7a\x00\xe1\x00\x6d\x00\x61\x00\x2c\x00\x20\ +\x00\x68\x00\x61\x00\x20\x00\x61\x00\x7a\x00\x20\x00\x74\x00\x65\ +\x00\x6e\x00\x67\x00\x65\x00\x6c\x00\x79\x00\x65\x00\x6b\x00\x65\ +\x00\x6e\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x70\x00\x75\x00\x6c\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\x54\x68\x65\x20\x65\x6c\ +\x65\x6d\x65\x6e\x74\x20\x6e\x75\x6d\x62\x65\x72\x73\x20\x74\x6f\ +\x20\x65\x78\x63\x6c\x75\x64\x65\x20\x77\x68\x65\x6e\x20\x74\x68\ +\x69\x73\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x69\x73\x20\ +\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x78\x65\x73\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x50\x00\x41\x00\x20\ +\x00\x74\x00\x65\x00\x74\x01\x51\x00\x20\x00\xe9\x00\x70\x00\xed\ +\x00\x74\x01\x51\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x70\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\ +\x00\x20\x00\x66\x00\x65\x00\x6c\x00\xfc\x00\x6c\x00\x65\x00\x74\ +\x00\x20\x00\x73\x00\x7a\x00\xe1\x00\x6d\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x3a\x54\x68\x65\x20\x66\x61\x63\x65\x20\x6e\ +\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x74\x68\x65\x20\x62\x61\x73\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x75\x73\x65\x64\x20\x74\x6f\ +\x20\x62\x75\x69\x6c\x64\x20\x74\x68\x69\x73\x20\x72\x6f\x6f\x66\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3c\x00\ +\x45\x00\x6e\x00\x6e\x00\x65\x00\x6b\x00\x20\x00\x61\x00\x7a\x00\ +\x20\x00\x65\x00\x6d\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x6e\x00\ +\x65\x00\x6b\x00\x20\x00\x61\x00\x20\x00\x6d\x00\x61\x00\x67\x00\ +\x61\x00\x73\x00\x73\x00\xe1\x00\x67\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x18\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\ +\x6f\x66\x20\x74\x68\x69\x73\x20\x66\x6c\x6f\x6f\x72\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xc6\x00\x45\x00\x6e\ +\x00\x6e\x00\x65\x00\x6b\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\ +\x00\x6c\x00\x6e\x00\x61\x00\x6b\x00\x20\x00\x6d\x00\x61\x00\x67\ +\x00\x61\x00\x73\x00\x73\x00\xe1\x00\x67\x00\x61\x00\x2e\x00\x20\ +\x00\x30\x00\x20\x00\xe9\x00\x72\x00\x74\x00\xe9\x00\x6b\x00\x20\ +\x00\x61\x00\x6b\x00\x6b\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x75\ +\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x6b\x00\x75\ +\x00\x73\x00\x2e\x00\x20\x00\x4e\x00\x65\x00\x6d\x00\x20\x00\x68\ +\x00\x61\x00\x73\x00\x7a\x00\x6e\x00\xe1\x00\x6c\x00\x6a\x00\x61\ +\x00\x20\x00\x68\x00\x61\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\ +\x00\x6c\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x70\x00\x6a\x00\x61\ +\x00\x20\x00\x65\x00\x67\x00\x79\x00\x20\x00\x73\x00\x7a\x00\x69\ +\x00\x6c\x00\xe1\x00\x72\x00\x64\x00\x20\x00\x74\x00\x65\x00\x73\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x58\x54\x68\x65\x20\ +\x68\x65\x69\x67\x68\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\ +\x61\x6c\x6c\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\x20\ +\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x2e\x20\x4e\x6f\x74\x20\x75\ +\x73\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\ +\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x73\ +\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x8e\x00\x45\x00\x7a\x00\x20\x00\x61\x00\x7a\x00\x20\x00\ +\x65\x00\x6c\x00\x65\x00\x6d\x00\x20\x00\x6d\x00\x61\x00\x67\x00\ +\x61\x00\x73\x00\x73\x00\xe1\x00\x67\x00\x61\x00\x20\x00\x76\x00\ +\x61\x00\x67\x00\x79\x00\x20\x00\x6b\x00\x69\x00\x68\x00\xfa\x00\ +\x7a\x00\xe1\x00\x73\x00\x20\x00\x6e\x00\x61\x00\x67\x00\x79\x00\ +\x73\x00\xe1\x00\x67\x00\x61\x00\x2e\x00\x20\x00\x30\x00\x20\x00\ +\x6d\x00\x65\x00\x67\x00\x74\x00\x61\x00\x72\x00\x74\x00\xe1\x00\ +\x73\x00\x61\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\ +\x61\x00\x74\x00\x69\x00\x6b\x00\x75\x00\x73\x00\x68\x00\x6f\x00\ +\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\x54\x68\x65\x20\x68\ +\x65\x69\x67\x68\x74\x20\x6f\x72\x20\x65\x78\x74\x72\x75\x73\x69\ +\x6f\x6e\x20\x64\x65\x70\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\ +\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2e\x20\x4b\x65\x65\x70\x20\x30\ +\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4a\x00\x54\x00\ +\x65\x00\x6e\x00\x67\x00\x65\x00\x6c\x00\x79\x00\x65\x00\x6b\x00\ +\x20\x00\x6b\x00\xf6\x00\x7a\x00\xf6\x00\x74\x00\x74\x00\x69\x00\ +\x20\x00\x6d\x00\x65\x00\x67\x00\x68\x00\x61\x00\x74\x00\xe1\x00\ +\x72\x00\x6f\x00\x7a\x00\x6f\x00\x74\x00\x74\x00\x20\x00\x6b\x00\ +\xf6\x00\x7a\x00\xf6\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1a\x54\x68\x65\x20\x69\x6e\x74\x65\x72\x76\x61\x6c\x73\x20\x62\ +\x65\x74\x77\x65\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x24\x00\x41\x00\x20\x00\x74\ +\x00\x65\x00\x6e\x00\x67\x00\x65\x00\x6c\x00\x79\x00\x65\x00\x6b\ +\x00\x20\x00\x68\x00\x6f\x00\x73\x00\x73\x00\x7a\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x16\x54\x68\x65\x20\x6c\x65\x6e\x67\ +\x74\x68\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\x65\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5c\x00\x45\x00\ +\x6e\x00\x6e\x00\x65\x00\x6b\x00\x20\x00\x61\x00\x7a\x00\x20\x00\ +\x65\x00\x6c\x00\x65\x00\x6d\x00\x6e\x00\x65\x00\x6b\x00\x20\x00\ +\x61\x00\x20\x00\x68\x00\x6f\x00\x73\x00\x73\x00\x7a\x00\x61\x00\ +\x2c\x00\x20\x00\x68\x00\x61\x00\x20\x00\x6e\x00\x65\x00\x6d\x00\ +\x20\x00\x70\x00\x72\x00\x6f\x00\x66\x00\x69\x00\x6c\x00\x6f\x00\ +\x6e\x00\x20\x00\xe1\x00\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x35\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\x20\x69\ +\x66\x20\x6e\x6f\x74\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\ +\x20\x70\x72\x6f\x66\x69\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\xa8\x00\x45\x00\x6e\x00\x6e\x00\x65\x00\ +\x6b\x00\x20\x00\x61\x00\x7a\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x6e\x00\x61\x00\x6b\x00\ +\x20\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\xe1\x00\ +\x6c\x00\x20\x00\x6b\x00\x69\x00\x68\x00\xfa\x00\x7a\x00\xe1\x00\ +\x73\x00\x20\x00\x69\x00\x72\x00\xe1\x00\x6e\x00\x79\x00\x61\x00\ +\x20\x00\x28\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\ +\x74\x00\x69\x00\x6b\x00\x75\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\ +\x72\x00\x6d\x00\xe1\x00\x6c\x00\x20\x00\x28\x00\x30\x00\x2c\x00\ +\x30\x00\x2c\x00\x30\x00\x29\x00\x20\x00\x6d\x00\x65\x00\x67\x00\ +\x74\x00\x61\x00\x72\x00\x74\x00\xe1\x00\x73\x00\x61\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x51\x54\x68\x65\x20\x6e\x6f\x72\ +\x6d\x61\x6c\x20\x65\x78\x74\x72\x75\x73\x69\x6f\x6e\x20\x64\x69\ +\x72\x65\x63\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x28\x6b\x65\x65\x70\x20\x28\x30\x2c\ +\x30\x2c\x30\x29\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\ +\x69\x63\x20\x6e\x6f\x72\x6d\x61\x6c\x29\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x26\x00\x41\x00\x20\x00\x73\x00\ +\x7a\x00\xe1\x00\x6d\x00\x6c\x00\xe1\x00\x6c\x00\xe1\x00\x73\x00\ +\x69\x00\x20\x00\x73\x00\x74\x00\xed\x00\x6c\x00\x75\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\x20\x6e\x75\x6d\ +\x65\x72\x61\x74\x69\x6f\x6e\x20\x73\x74\x79\x6c\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x8e\x00\x4f\x00\x62\ +\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x20\x00\x61\ +\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x73\x00\x7a\x00\xe9\x00\x73\ +\x00\x20\x00\x6e\x00\xe9\x00\x7a\x00\x65\x00\x74\x00\x68\x00\x65\ +\x00\x7a\x00\x2e\x00\x20\x00\xdc\x00\x72\x00\x65\x00\x73\x00\x65\ +\x00\x6e\x00\x20\x00\x68\x00\x61\x00\x67\x00\x79\x00\x76\x00\x61\ +\x00\x20\x00\x61\x00\x7a\x00\x20\x00\x65\x00\x67\x00\xe9\x00\x73\ +\x00\x7a\x00\x20\x00\x64\x00\x6f\x00\x6b\x00\x75\x00\x6d\x00\x65\ +\x00\x6e\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x74\x00\x20\x00\x6a\ +\x00\x65\x00\x6c\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x53\x54\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x74\x68\x61\x74\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x63\x6f\x6e\ +\x73\x69\x64\x65\x72\x65\x64\x20\x62\x79\x20\x74\x68\x69\x73\x20\ +\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x2e\x20\x45\ +\x6d\x70\x74\x79\x20\x6d\x65\x61\x6e\x73\x20\x61\x6c\x6c\x20\x64\ +\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x34\x00\x41\x00\x20\x00\x74\x00\x65\x00\x6e\ +\x00\x67\x00\x65\x00\x6c\x00\x79\x00\x20\x00\x62\x00\x75\x00\x62\ +\x00\x6f\x00\x72\x00\xe9\x00\x6b\x00\x6f\x00\x6b\x00\x20\x00\x6d\ +\x00\xe9\x00\x72\x00\x65\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1c\x54\x68\x65\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\ +\x74\x68\x65\x20\x61\x78\x69\x73\x20\x62\x75\x62\x62\x6c\x65\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x64\x00\ +\x45\x00\x6e\x00\x6e\x00\x65\x00\x6b\x00\x20\x00\x61\x00\x7a\x00\ +\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x6e\x00\x65\x00\x6b\x00\ +\x20\x00\x61\x00\x20\x00\x73\x00\x7a\x00\xe9\x00\x6c\x00\x65\x00\ +\x73\x00\x73\x00\xe9\x00\x67\x00\x65\x00\x2c\x00\x20\x00\x68\x00\ +\x61\x00\x20\x00\x6e\x00\x65\x00\x6d\x00\x20\x00\x70\x00\x72\x00\ +\x6f\x00\x66\x00\x69\x00\x6c\x00\x6f\x00\x6e\x00\x20\x00\xe1\x00\ +\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x54\x68\x65\ +\x20\x77\x69\x64\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\ +\x6c\x65\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\x6e\x6f\x74\x20\x62\ +\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\x72\x6f\x66\x69\x6c\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x94\ +\x00\x45\x00\x6e\x00\x6e\x00\x65\x00\x6b\x00\x20\x00\x61\x00\x20\ +\x00\x66\x00\x61\x00\x6c\x00\x6e\x00\x61\x00\x6b\x00\x20\x00\x73\ +\x00\x7a\x00\xe9\x00\x6c\x00\x65\x00\x73\x00\x73\x00\xe9\x00\x67\ +\x00\x65\x00\x2e\x00\x20\x00\x4e\x00\x65\x00\x6d\x00\x20\x00\x68\ +\x00\x61\x00\x73\x00\x7a\x00\x6e\x00\xe1\x00\x6c\x00\x61\x00\x74\ +\x00\x6f\x00\x73\x00\x2c\x00\x20\x00\x68\x00\x61\x00\x20\x00\x61\ +\x00\x20\x00\x66\x00\x61\x00\x6c\x00\x20\x00\x65\x00\x67\x00\x79\ +\x00\x20\x00\x66\x00\x65\x00\x6c\x00\xfc\x00\x6c\x00\x65\x00\x74\ +\x00\x65\x00\x6e\x00\x20\x00\x66\x00\x65\x00\x6b\x00\x73\x00\x7a\ +\x00\x69\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x40\x54\x68\ +\x65\x20\x77\x69\x64\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x77\x61\x6c\x6c\x2e\x20\x4e\x6f\x74\x20\x75\x73\x65\x64\x20\x69\ +\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\ +\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x66\x61\x63\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x56\x00\ +\x61\x00\x73\x00\x74\x00\x61\x00\x67\x00\x73\x00\xe1\x00\x67\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\x68\x69\x63\x6b\x6e\x65\ +\x73\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x46\x00\x41\x00\x20\x00\x68\x00\xe1\x00\x6c\x00\xf3\x00\x20\x00\ +\x65\x00\x67\x00\x79\x00\x20\x00\xe9\x00\x72\x00\x76\x00\xe9\x00\ +\x6e\x00\x79\x00\x74\x00\x65\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\ +\x73\x00\x7a\x00\x69\x00\x6c\x00\xe1\x00\x72\x00\x64\x00\x20\x00\ +\x74\x00\x65\x00\x73\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1d\x54\x68\x69\x73\x20\x6d\x65\x73\x68\x20\x69\x73\x20\x61\x6e\ +\x20\x69\x6e\x76\x61\x6c\x69\x64\x20\x73\x6f\x6c\x69\x64\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x54\x00\ +\xed\x00\x70\x00\x75\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x54\x79\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x1c\x00\x54\x00\xed\x00\x70\x00\x75\x00\x73\x00\x6b\ +\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x7a\x00\x69\x00\xf3\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x54\x79\x70\x65\x20\x63\ +\x6f\x6e\x76\x65\x72\x73\x69\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x34\x00\x4e\x00\x65\x00\x6d\x00\x20\ +\x00\x6c\x00\x65\x00\x68\x00\x65\x00\x74\x00\x20\x00\x6c\x00\xe9\ +\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\x6e\x00\x69\ +\x00\x20\x00\x74\x00\x65\x00\x74\x01\x51\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x17\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\ +\x63\x72\x65\x61\x74\x65\x20\x61\x20\x72\x6f\x6f\x66\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x4e\x00\x65\ +\x00\x6d\x00\x20\x00\x6c\x00\x65\x00\x68\x00\x65\x00\x74\x00\x20\ +\x00\x6c\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\ +\x00\x6e\x00\x69\x00\x20\x00\xf6\x00\x73\x00\x73\x00\x7a\x00\x65\ +\x00\x74\x00\x65\x00\x76\x01\x51\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1a\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\ +\x65\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x43\x00\ +\x73\x00\x6f\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x62\x00\x6f\x00\ +\x6e\x00\x74\x00\xe1\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x55\x6e\x67\x72\x6f\x75\x70\x69\x6e\x67\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x4e\x00\xe9\x00\x7a\ +\x00\x65\x00\x74\x00\x65\x00\x20\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x07\x56\x69\x65\x77\x20\x6f\x66\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x06\x00\x46\x00\x61\x00\x6c\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x00\x46\x00\ +\x61\x00\x6c\x00\x20\x00\x62\x00\x65\x00\xe1\x00\x6c\x00\x6c\x00\ +\xed\x00\x74\x00\xe1\x00\x73\x00\x6f\x00\x6b\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0c\x57\x61\x6c\x6c\x20\x6f\x70\x74\x69\x6f\x6e\ +\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\ +\x00\x46\x00\x61\x00\x6c\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\ +\x00\xe9\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x57\x61\ +\x6c\x6c\x54\x72\x61\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x12\x00\x53\x00\x7a\x00\xe9\x00\x6c\x00\x65\ +\x00\x73\x00\x73\x00\xe9\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x57\x69\x64\x74\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x0a\x00\x41\x00\x62\x00\x6c\x00\x61\x00\x6b\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\ +\x56\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x61\x00\x6b\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x05\x57\x69\x72\x65\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x5a\x00\x2d\x00\ +\x65\x00\x6c\x00\x74\x00\x6f\x00\x6c\x00\xe1\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x5a\x20\x6f\x66\x66\x73\x65\x74\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x36\x00\x56\ +\x00\xe1\x00\x7a\x00\x6c\x00\x61\x00\x74\x00\x20\x00\x73\x00\x7a\ +\x00\x65\x00\x72\x00\x6b\x00\x65\x00\x73\x00\x7a\x00\x74\x00\xe9\ +\x00\x73\x00\x20\x00\x62\x00\x65\x00\x7a\x00\xe1\x00\x72\x00\xe1\ +\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x63\x6c\ +\x6f\x73\x69\x6e\x67\x20\x53\x6b\x65\x74\x63\x68\x20\x65\x64\x69\ +\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x48\ +\x00\x6c\x00\x65\x00\x20\x00\x6e\x00\x65\x00\x6d\x00\x20\x00\x7a\ +\x00\xe1\x00\x72\x00\x74\x00\x20\x00\x73\x00\x7a\x00\x69\x00\x6c\ +\x00\xe1\x00\x72\x00\x64\x00\x20\x00\x74\x00\x65\x00\x73\x00\x74\ +\x00\x65\x00\x74\x00\x20\x00\x74\x00\x61\x00\x72\x00\x74\x00\x61\ +\x00\x6c\x00\x6d\x00\x61\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1b\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x61\x20\x6e\x6f\x6e\ +\x2d\x63\x6c\x6f\x73\x65\x64\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x88\x00\x74\x00\x61\ +\x00\x72\x00\x74\x00\x61\x00\x6c\x00\x6d\x00\x61\x00\x7a\x00\x20\ +\x00\x66\x00\x65\x00\x6c\x00\xfc\x00\x6c\x00\x65\x00\x74\x00\x65\ +\x00\x74\x00\x2c\x00\x20\x00\x61\x00\x6d\x00\x65\x00\x6c\x00\x79\ +\x00\x65\x00\x6b\x00\x20\x00\x6e\x00\x65\x00\x6d\x00\x20\x00\x74\ +\x00\x61\x00\x72\x00\x74\x00\x6f\x00\x7a\x00\x6e\x00\x61\x00\x6b\ +\x00\x20\x00\x73\x00\x65\x00\x6d\x00\x6d\x00\x69\x00\x6c\x00\x79\ +\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x7a\x00\x69\x00\x6c\x00\xe1\ +\x00\x72\x00\x64\x00\x20\x00\x74\x00\x65\x00\x73\x00\x74\x00\x68\ +\x00\x65\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x63\x6f\ +\x6e\x74\x61\x69\x6e\x73\x20\x66\x61\x63\x65\x73\x20\x74\x68\x61\ +\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x70\x61\x72\x74\x20\x6f\ +\x66\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x52\x00\x6e\x00\x65\x00\x6d\ +\x00\x20\x00\x74\x00\x61\x00\x72\x00\x74\x00\x61\x00\x6c\x00\x6d\ +\x00\x61\x00\x7a\x00\x68\x00\x61\x00\x74\x00\x20\x00\x73\x00\x65\ +\x00\x6d\x00\x6d\x00\x69\x00\x6c\x00\x79\x00\x65\x00\x6e\x00\x20\ +\x00\x73\x00\x7a\x00\x69\x00\x6c\x00\xe1\x00\x72\x00\x64\x00\x20\ +\x00\x74\x00\x65\x00\x73\x00\x74\x00\x65\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x19\x64\x6f\x65\x73\x6e\x27\x74\x20\x63\x6f\ +\x6e\x74\x61\x69\x6e\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x52\x00\x61\ +\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x6d\ +\x00\x20\x00\x73\x00\x69\x00\x6b\x00\x65\x00\x72\x00\x65\x00\x73\ +\x00\x65\x00\x6e\x00\x20\x00\x6c\x00\xe9\x00\x74\x00\x72\x00\x65\ +\x00\x68\x00\x6f\x00\x7a\x00\x74\x00\x61\x00\x20\x00\x61\x00\x20\ +\x00\x25\x00\x73\x00\x20\x00\x66\x00\xe1\x00\x6a\x00\x6c\x00\x2e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x66\x69\x6c\x65\x20\x25\ +\x73\x20\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x63\ +\x72\x65\x61\x74\x65\x64\x2e\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x1a\x00\x6e\x00\x69\x00\x6e\x00\x63\x00\x73\ +\x00\x20\x00\x6c\x00\x65\x00\x7a\x00\xe1\x00\x72\x00\x76\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x69\x73\x20\x6e\x6f\x74\ +\x20\x63\x6c\x6f\x73\x65\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x16\x00\xc9\x00\x72\x00\x76\x00\xe9\x00\x6e\ +\x00\x79\x00\x74\x00\x65\x00\x6c\x00\x65\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x69\x73\x20\x6e\x6f\x74\x20\x76\x61\x6c\ +\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x66\x00\x61\x00\x20\x00\x70\x00\x79\x00\x63\x00\x6f\x00\x6c\x00\ +\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x6e\x00\x65\x00\x6d\x00\ +\x20\x00\x74\x00\x61\x00\x6c\x00\xe1\x00\x6c\x00\x68\x00\x61\x00\ +\x74\x00\xf3\x00\x2c\x00\x20\x00\x6e\x00\x69\x00\x6e\x00\x63\x00\ +\x73\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\ +\x61\x00\x20\x00\x74\x00\xe1\x00\x6d\x00\x6f\x00\x67\x00\x61\x00\ +\x74\x00\xe1\x00\x73\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x29\x70\x79\x63\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\ +\x6f\x75\x6e\x64\x2c\x20\x6e\x6f\x20\x63\x6f\x6c\x6c\x61\x64\x61\ +\x20\x73\x75\x70\x70\x6f\x72\x74\x2e\x0a\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x82\x00\x56\x00\xe1\x00\x7a\x00\ +\x6c\x00\x61\x00\x74\x00\x20\x00\x74\x00\xe1\x00\x6d\x00\x6f\x00\ +\x67\x00\x61\x00\x74\x00\xe1\x00\x73\x00\x20\x00\x65\x00\x6c\x00\ +\x74\x00\xe1\x00\x76\x00\x6f\x00\x6c\x00\xed\x00\x74\x00\xe1\x00\ +\x73\x00\x61\x00\x20\x00\x6b\x00\x65\x00\x72\x00\x65\x00\x73\x00\ +\x7a\x00\x74\x00\x68\x00\x69\x00\x76\x00\x61\x00\x74\x00\x6b\x00\ +\x6f\x00\x7a\x00\xe1\x00\x73\x00\x20\x00\x65\x00\x6c\x00\x6b\x00\ +\x65\x00\x72\x00\xfc\x00\x6c\x00\xe9\x00\x73\x00\x65\x00\x20\x00\ +\x76\x00\xe9\x00\x67\x00\x65\x00\x74\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x32\x72\x65\x6d\x6f\x76\x69\x6e\x67\x20\x73\x6b\ +\x65\x74\x63\x68\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x74\x6f\x20\ +\x61\x76\x6f\x69\x64\x20\x63\x72\x6f\x73\x73\x2d\x72\x65\x66\x65\ +\x72\x65\x6e\x63\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x32\x00\xed\x00\x72\x00\xe1\x00\x73\x00\x20\ +\x00\x73\x00\x69\x00\x6b\x00\x65\x00\x72\x00\x65\x00\x73\x00\x65\ +\x00\x6e\x00\x20\x00\x65\x00\x6c\x00\x76\x00\xe9\x00\x67\x00\x65\ +\x00\x7a\x00\x76\x00\x65\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x15\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x77\ +\x72\x69\x74\x74\x65\x6e\x20\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x38\x00\xd6\x00\x73\x00\x73\x00\x7a\x00\x65\ +\x00\x74\x00\x65\x00\x76\x01\x51\x00\x6b\x00\x20\x00\x65\x00\x62\ +\x00\x62\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x7a\x00\x20\x00\x61\ +\x00\x62\x00\x6c\x00\x61\x00\x6b\x00\x62\x00\x61\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1d\x74\x68\x65\x20\x63\x6f\x6d\x70\ +\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\ +\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x28\x00\xd6\x00\x73\x00\x73\x00\x7a\x00\x65\x00\x74\ +\x00\x65\x00\x76\x01\x51\x00\x20\x00\x68\x00\x6f\x00\x7a\x00\x7a\ +\x00\xe1\x00\x61\x00\x64\x00\xe1\x00\x73\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\x63\x6f\x6d\x70\x6f\x6e\ +\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\ +\x01\x03\x00\x00\x00\x6c\x00\x41\x00\x20\x00\x6b\x00\x69\x00\x6a\ +\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x74\x00\x20\x00\xf6\x00\x73\ +\x00\x73\x00\x7a\x00\x65\x00\x74\x00\x65\x00\x76\x01\x51\x00\x6b\ +\x00\x65\x00\x74\x00\x20\x00\x68\x00\x6f\x00\x7a\x00\x7a\x00\xe1\ +\x00\x61\x00\x64\x00\x6a\x00\x61\x00\x20\x00\x61\x00\x7a\x00\x20\ +\x00\x61\x00\x6b\x00\x74\x00\xed\x00\x76\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x68\x00\x6f\ +\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x41\x64\x64\x73\ +\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\ +\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\ +\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x0e\ +\x00\x54\x00\x65\x00\x6e\x00\x67\x00\x65\x00\x6c\x00\x79\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\x69\x73\x07\x00\x00\x00\ +\x09\x41\x72\x63\x68\x5f\x41\x78\x69\x73\x01\x03\x00\x00\x00\x3e\ +\x00\x4c\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\ +\x00\x20\x00\x65\x00\x67\x00\x79\x00\x20\x00\x74\x00\x65\x00\x6e\ +\x00\x67\x00\x65\x00\x6c\x00\x79\x00\x20\x00\x72\x00\x65\x00\x6e\ +\x00\x64\x00\x73\x00\x7a\x00\x65\x00\x72\x00\x74\x00\x2e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x6e\x20\x61\x78\x69\x73\x20\x73\x79\x73\x74\x65\x6d\x2e\x07\ +\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x41\x78\x69\x73\x01\x03\x00\ +\x00\x00\x0c\x00\xc9\x00\x70\x00\xfc\x00\x6c\x00\x65\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\ +\x67\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\ +\x69\x6e\x67\x01\x03\x00\x00\x00\x84\x00\x4c\x00\xe9\x00\x74\x00\ +\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\x20\x00\x65\x00\x67\x00\ +\x79\x00\x20\x00\xe9\x00\x70\x00\xfc\x00\x6c\x00\x65\x00\x74\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\ +\x6d\x00\x6f\x00\x74\x00\x2c\x00\x20\x00\x62\x00\x65\x00\x6c\x00\ +\x65\x00\xe9\x00\x72\x00\x74\x00\x76\x00\x65\x00\x20\x00\x61\x00\ +\x20\x00\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\ +\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x75\x00\x6d\x00\x6f\x00\x6b\x00\x61\x00\x74\x00\x2e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x35\x43\x72\x65\x61\x74\x65\x73\x20\x61\ +\x20\x62\x75\x69\x6c\x64\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\ +\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\ +\x00\x00\x00\x0a\x00\x43\x00\x65\x00\x6c\x00\x6c\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x43\x65\x6c\x6c\x07\x00\x00\x00\ +\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x80\ +\x00\x4c\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\ +\x00\x20\x00\x65\x00\x67\x00\x79\x00\x20\x00\x63\x00\x65\x00\x6c\ +\x00\x6c\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x74\x00\x2c\x00\x20\x00\x62\ +\x00\x65\x00\x6c\x00\x65\x00\xe9\x00\x72\x00\x74\x00\x76\x00\x65\ +\x00\x20\x00\x61\x00\x20\x00\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\ +\x00\xf6\x00\x6c\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x6b\x00\x61\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\ +\x73\x20\x61\x20\x63\x65\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x09\x41\ +\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x14\x00\x45\ +\x00\x6c\x00\x6c\x00\x65\x00\x6e\x01\x51\x00\x72\x00\x7a\x00\xe9\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x43\x68\x65\x63\ +\x6b\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\ +\x01\x03\x00\x00\x00\x54\x00\x45\x00\x6c\x00\x6c\x00\x65\x00\x6e\ +\x01\x51\x00\x72\x00\x7a\x00\x69\x00\x20\x00\x61\x00\x20\x00\x6b\ +\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x74\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\ +\x00\x6f\x00\x6b\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x62\x00\x6c\ +\x00\xe9\x00\x6d\x00\xe1\x00\x69\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x28\x43\x68\x65\x63\x6b\x73\x20\x74\x68\x65\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x66\x6f\x72\x20\x70\x72\x6f\x62\x6c\x65\x6d\x73\x07\x00\x00\x00\ +\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\x01\x03\x00\x00\x00\ +\x1e\x00\x4c\x00\x79\x00\x75\x00\x6b\x00\x61\x00\x6b\x00\x20\x00\ +\x62\x00\x65\x00\x7a\x00\xe1\x00\x72\x00\xe1\x00\x73\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x6c\x6f\x73\x65\x20\x68\ +\x6f\x6c\x65\x73\x07\x00\x00\x00\x0f\x41\x72\x63\x68\x5f\x43\x6c\ +\x6f\x73\x65\x48\x6f\x6c\x65\x73\x01\x03\x00\x00\x00\x7e\x00\x42\ +\x00\x65\x00\x7a\x00\xe1\x00\x72\x00\x6a\x00\x61\x00\x20\x00\x61\ +\x00\x20\x00\x6e\x00\x79\x00\x69\x00\x74\x00\x6f\x00\x74\x00\x74\ +\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x6b\x00\x7a\x00\x61\x00\x74\ +\x00\x6f\x00\x6b\x00\x61\x00\x74\x00\x2c\x00\x20\x00\x73\x00\x7a\ +\x00\x69\x00\x6c\x00\xe1\x00\x72\x00\x64\x00\x20\x00\x74\x00\x65\ +\x00\x73\x00\x74\x00\xe9\x00\x20\x00\x76\x00\xe1\x00\x6c\x00\x74\ +\x00\x6f\x00\x7a\x00\x74\x00\x61\x00\x74\x00\x6a\x00\x61\x00\x20\ +\x00\x61\x00\x7a\x00\x6f\x00\x6b\x00\x61\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x30\x43\x6c\x6f\x73\x65\x73\x20\x68\x6f\x6c\ +\x65\x73\x20\x69\x6e\x20\x6f\x70\x65\x6e\x20\x73\x68\x61\x70\x65\ +\x73\x2c\x20\x74\x75\x72\x6e\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\ +\x73\x6f\x6c\x69\x64\x73\x07\x00\x00\x00\x0f\x41\x72\x63\x68\x5f\ +\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\x01\x03\x00\x00\x00\x80\ +\x00\x4c\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\ +\x00\x20\x00\x65\x00\x67\x00\x79\x00\x20\x00\x53\x00\x7a\x00\x69\ +\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x74\x00\x2c\x00\x20\x00\x62\ +\x00\x65\x00\x6c\x00\x65\x00\xe9\x00\x72\x00\x74\x00\x76\x00\x65\ +\x00\x20\x00\x61\x00\x20\x00\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\ +\x00\xf6\x00\x6c\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x6b\x00\x61\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\ +\x73\x20\x61\x20\x66\x6c\x6f\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0a\ +\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x0a\ +\x00\x53\x00\x7a\x00\x69\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x0a\x41\x72\ +\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x26\x00\x48\ +\x00\xe1\x00\x6c\x00\xf3\x00\x6b\x00\x61\x00\x74\x00\x20\x00\x61\ +\x00\x6c\x00\x61\x00\x6b\x00\x7a\x00\x61\x00\x74\x00\x6f\x00\x6b\ +\x00\x6b\x00\xe1\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\ +\x73\x68\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x10\ +\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\ +\x01\x03\x00\x00\x00\x68\x00\x41\x00\x20\x00\x6b\x00\x69\x00\x76\ +\x00\xe1\x00\x6c\x00\x61\x00\x73\x00\x7a\x00\x74\x00\x6f\x00\x74\ +\x00\x74\x00\x20\x00\x68\x00\xe1\x00\x6c\x00\xf3\x00\x6b\x00\x61\ +\x00\x74\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x6b\x00\x7a\x00\x61\ +\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\ +\x00\x75\x00\x6d\x00\x6f\x00\x6b\x00\x6b\x00\xe1\x00\x20\x00\x61\ +\x00\x6c\x00\x61\x00\x6b\x00\xed\x00\x74\x00\x6a\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x2d\x54\x75\x72\x6e\x73\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\ +\x74\x6f\x20\x50\x61\x72\x74\x20\x53\x68\x61\x70\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\ +\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x22\ +\x00\xd6\x00\x73\x00\x73\x00\x7a\x00\x65\x00\x74\x00\x65\x00\x76\ +\x01\x51\x00\x20\x00\x74\x00\xf6\x00\x72\x00\x6c\x00\xe9\x00\x73\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\x6d\x6f\ +\x76\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\ +\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\ +\x00\xac\x00\x41\x00\x20\x00\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\ +\x00\xf6\x00\x6c\x00\x74\x00\x20\x00\x61\x00\x6c\x00\x6b\x00\x61\ +\x00\x74\x00\x72\x00\xe9\x00\x73\x00\x7a\x00\x65\x00\x6b\x00\x20\ +\x00\x65\x00\x6c\x00\x74\x00\xe1\x00\x76\x00\x6f\x00\x6c\x00\xed\ +\x00\x74\x00\xe1\x00\x73\x00\x61\x00\x20\x00\x61\x00\x20\x00\x73\ +\x00\x7a\x00\xfc\x00\x6c\x01\x51\x00\x6b\x00\x74\x01\x51\x00\x6c\ +\x00\x2c\x00\x20\x00\x76\x00\x61\x00\x67\x00\x79\x00\x20\x00\x65\ +\x00\x67\x00\x79\x00\x20\x00\x6c\x00\x79\x00\x75\x00\x6b\x00\x20\ +\x00\x6c\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\ +\x00\xe1\x00\x73\x00\x61\x00\x20\x00\x61\x00\x6c\x00\x6b\x00\x61\ +\x00\x74\x00\x72\x00\xe9\x00\x73\x00\x7a\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x52\x52\x65\x6d\x6f\x76\x65\x20\x74\ +\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\ +\x6f\x6e\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x69\ +\x72\x20\x70\x61\x72\x65\x6e\x74\x73\x2c\x20\x6f\x72\x20\x63\x72\ +\x65\x61\x74\x65\x20\x61\x20\x68\x6f\x6c\x65\x20\x69\x6e\x20\x61\ +\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\ +\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\x3c\ +\x00\x41\x00\x6c\x00\x61\x00\x6b\x00\x7a\x00\x61\x00\x74\x00\x20\ +\x00\x65\x00\x6c\x00\x68\x00\x61\x00\x67\x00\x79\x00\xe1\x00\x73\ +\x00\x61\x00\x20\x00\x61\x00\x7a\x00\x20\x00\x20\x00\x41\x00\x72\ +\x00\x63\x00\x68\x00\x2d\x00\x62\x00\xf3\x00\x6c\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x16\x52\x65\x6d\x6f\x76\x65\x20\x53\x68\x61\ +\x70\x65\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x07\x00\x00\x00\ +\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\ +\x65\x01\x03\x00\x00\x00\x76\x00\x45\x00\x6c\x00\x74\x00\xe1\x00\ +\x76\x00\x6f\x00\x6c\x00\xed\x00\x74\x00\x6a\x00\x61\x00\x20\x00\ +\x61\x00\x20\x00\x68\x00\x61\x00\x72\x00\x6d\x00\x61\x00\x64\x00\ +\x66\x00\x6f\x00\x6b\x00\xfa\x00\x20\x00\x61\x00\x6c\x00\x61\x00\ +\x6b\x00\x7a\x00\x61\x00\x74\x00\x6f\x00\x6b\x00\x61\x00\x74\x00\ +\x20\x00\x61\x00\x7a\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\ +\x20\x00\x61\x00\x6c\x00\x6b\x00\x61\x00\x74\x00\x72\x00\xe9\x00\ +\x73\x00\x7a\x00\x65\x00\x6b\x00\x62\x01\x51\x00\x6c\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x29\x52\x65\x6d\x6f\x76\x65\x73\x20\x63\ +\x75\x62\x69\x63\x20\x73\x68\x61\x70\x65\x73\x20\x66\x72\x6f\x6d\ +\x20\x41\x72\x63\x68\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\ +\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\ +\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x76\x00\x4c\x00\xe9\x00\ +\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\x20\x00\x65\x00\ +\x67\x00\x79\x00\x20\x00\x74\x00\x65\x00\x74\x01\x51\x00\x2d\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\ +\x6f\x00\x74\x00\x20\x00\x61\x00\x20\x00\x6b\x00\x69\x00\x6a\x00\ +\x65\x00\x6c\x00\xf6\x00\x6c\x00\x74\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x20\x00\x66\x00\ +\x65\x00\x6c\x00\xfc\x00\x6c\x00\x65\x00\x74\x00\x72\x01\x51\x00\ +\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x39\x43\x72\x65\x61\x74\ +\x65\x73\x20\x61\x20\x72\x6f\x6f\x66\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x66\x61\x63\x65\x20\x6f\x66\x20\x61\x6e\x20\x6f\x62\ +\x6a\x65\x63\x74\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x52\x6f\ +\x6f\x66\x01\x03\x00\x00\x00\x08\x00\x54\x00\x65\x00\x74\x01\x51\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\x66\x07\x00\ +\x00\x00\x09\x41\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\x00\x00\ +\x00\x8c\x00\x4c\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\ +\x00\x7a\x00\x20\x00\x65\x00\x67\x00\x79\x00\x20\x00\x73\x00\x7a\ +\x00\x61\x00\x6b\x00\x61\x00\x73\x00\x7a\x00\x20\x00\x73\x00\xed\ +\x00\x6b\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\ +\x00\x75\x00\x6d\x00\x6f\x00\x74\x00\x2c\x00\x20\x00\x62\x00\x65\ +\x00\x6c\x00\x65\x00\xe9\x00\x72\x00\x74\x00\x76\x00\x65\x00\x20\ +\x00\x61\x00\x20\x00\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\xf6\ +\x00\x6c\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x6b\x00\x61\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x3e\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x2c\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\ +\x67\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x11\x41\x72\x63\x68\x5f\ +\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\ +\x00\x10\x00\x52\x00\xe9\x00\x73\x00\x7a\x00\x20\x00\x73\x00\xed\ +\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\x63\x74\ +\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x41\x72\ +\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\ +\x03\x00\x00\x00\x46\x00\x56\x00\xe1\x00\x6c\x00\x61\x00\x73\x00\ +\x73\x00\x7a\x00\x61\x00\x20\x00\x6b\x00\x69\x00\x20\x00\x61\x00\ +\x20\x00\x6e\x00\x65\x00\x6d\x00\x2d\x00\x73\x00\x6f\x00\x6b\x00\ +\x72\x00\xe9\x00\x74\x01\x71\x00\x20\x00\x68\x00\xe1\x00\x6c\x00\ +\xf3\x00\x7a\x00\x61\x00\x74\x00\x6f\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\x6e\x6f\x6e\x2d\ +\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x07\ +\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\ +\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\ +\x00\x00\xb0\x00\x4b\x00\x69\x00\x76\x00\xe1\x00\x6c\x00\x61\x00\ +\x73\x00\x7a\x00\x74\x00\x6a\x00\x61\x00\x20\x00\x61\x00\x7a\x00\ +\x20\x00\xf6\x00\x73\x00\x73\x00\x7a\x00\x65\x00\x73\x00\x20\x00\ +\x6e\x00\x65\x00\x6d\x00\x2d\x00\x73\x00\x6f\x00\x6b\x00\x72\x00\ +\xe9\x00\x74\x01\x71\x00\x20\x00\x68\x00\xe1\x00\x6c\x00\xf3\x00\ +\x7a\x00\x61\x00\x74\x00\x6f\x00\x74\x00\x20\x00\x61\x00\x20\x00\ +\x64\x00\x6f\x00\x6b\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x75\x00\x6d\x00\x62\x00\xf3\x00\x6c\x00\x20\x00\x76\x00\x61\x00\ +\x67\x00\x79\x00\x20\x00\x61\x00\x20\x00\x6b\x00\x69\x00\x6a\x00\ +\x65\x00\x6c\x00\xf6\x00\x6c\x00\x74\x00\x20\x00\x63\x00\x73\x00\ +\x6f\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x6f\x00\x6b\x00\x62\x00\ +\xf3\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x53\x65\x6c\ +\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\ +\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x66\x72\x6f\ +\x6d\x20\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x20\x6f\ +\x72\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x67\x72\x6f\x75\x70\x73\x07\x00\x00\x00\x19\x41\ +\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\ +\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x82\x00\x4c\ +\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\x20\ +\x00\x65\x00\x67\x00\x79\x00\x20\x00\x4f\x00\x6c\x00\x64\x00\x61\ +\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\ +\x00\x75\x00\x6d\x00\x6f\x00\x74\x00\x2c\x00\x20\x00\x62\x00\x65\ +\x00\x6c\x00\x65\x00\xe9\x00\x72\x00\x74\x00\x76\x00\x65\x00\x20\ +\x00\x61\x00\x20\x00\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\xf6\ +\x00\x6c\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x6b\x00\x61\x00\x74\x00\x2e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\ +\x73\x20\x61\x20\x73\x69\x74\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x09\ +\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\x0a\x00\ +\x4f\x00\x6c\x00\x64\x00\x61\x00\x6c\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x53\x69\x74\x65\x07\x00\x00\x00\x09\x41\x72\x63\x68\ +\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\x18\x00\x48\x00\xe1\x00\ +\x6c\x00\xf3\x00\x20\x00\x6f\x00\x73\x00\x7a\x00\x74\x00\xe1\x00\ +\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\ +\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x0e\x41\x72\x63\x68\ +\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\x64\ +\x00\x41\x00\x20\x00\x6b\x00\x69\x00\x76\x00\xe1\x00\x6c\x00\x61\ +\x00\x73\x00\x7a\x00\x74\x00\x6f\x00\x74\x00\x74\x00\x20\x00\x68\ +\x00\xe1\x00\x6c\x00\xf3\x00\x74\x00\x20\x00\x66\x00\xfc\x00\x67\ +\x00\x67\x00\x65\x00\x74\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\xf6\ +\x00\x73\x00\x73\x00\x7a\x00\x65\x00\x74\x00\x65\x00\x76\x01\x51\ +\x00\x6b\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x73\x00\x7a\x00\x74\ +\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x53\x70\ +\x6c\x69\x74\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\ +\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x69\x6e\x64\x65\x70\x65\ +\x6e\x64\x65\x6e\x74\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\ +\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\ +\x65\x73\x68\x01\x03\x00\x00\x00\xe6\x00\x4c\x00\xe9\x00\x74\x00\ +\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\x20\x00\x65\x00\x67\x00\ +\x79\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x75\x00\x6d\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\ +\x74\x00\xfa\x00\x72\x00\xe1\x00\x74\x00\x20\x00\x76\x00\xe1\x00\ +\x7a\x00\x6c\x00\x61\x00\x74\x00\x62\x00\xf3\x00\x6c\x00\x20\x00\ +\x76\x00\x61\x00\x67\x00\x79\x00\x20\x00\x65\x00\x67\x00\x79\x00\ +\x20\x00\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\ +\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x75\x00\x6d\x00\x62\x00\xf3\x00\x6c\x00\x20\x00\x28\x00\x76\x00\ +\xe1\x00\x7a\x00\x6c\x00\x61\x00\x74\x00\x2c\x00\x20\x00\x76\x00\ +\x6f\x00\x6e\x00\x61\x00\x6c\x00\x2c\x00\x20\x00\x66\x00\x65\x00\ +\x6c\x00\xfc\x00\x6c\x00\x65\x00\x74\x00\x20\x00\x76\x00\x61\x00\ +\x67\x00\x79\x00\x20\x00\x73\x00\x7a\x00\x69\x00\x6c\x00\xe1\x00\ +\x72\x00\x64\x00\x20\x00\x74\x00\x65\x00\x73\x00\x74\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x5f\x43\x72\x65\x61\x74\x65\x73\ +\x20\x61\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\ +\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x73\x6b\x65\x74\ +\x63\x68\x2c\x20\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\ +\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x0e\x41\x72\x63\ +\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\ +\x12\x00\x46\x00\x65\x00\x6c\x00\xe9\x00\x70\x00\xed\x00\x74\x00\ +\xe9\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\ +\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\ +\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\xc0\x00\ +\x4c\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\ +\x20\x00\x65\x00\x67\x00\x79\x00\x20\x00\x66\x00\x61\x00\x6c\x00\ +\x61\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x75\x00\x6d\x00\x6f\x00\x74\x00\x20\x00\x76\x00\xe1\x00\ +\x7a\x00\x6c\x00\x61\x00\x74\x00\x62\x00\xf3\x00\x6c\x00\x20\x00\ +\x76\x00\x61\x00\x67\x00\x79\x00\x20\x00\x65\x00\x67\x00\x79\x00\ +\x20\x00\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\ +\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x75\x00\x6d\x00\x62\x00\xf3\x00\x6c\x00\x20\x00\x28\x00\x76\x00\ +\x6f\x00\x6e\x00\x61\x00\x6c\x00\x2c\x00\x20\x00\x66\x00\x65\x00\ +\x6c\x00\xfc\x00\x6c\x00\x65\x00\x74\x00\x20\x00\x76\x00\x61\x00\ +\x67\x00\x79\x00\x20\x00\x74\x00\x65\x00\x73\x00\x74\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x52\x43\x72\x65\x61\x74\x65\x73\ +\x20\x61\x20\x77\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\ +\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\ +\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x66\x61\x63\ +\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x09\ +\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\x06\x00\ +\x46\x00\x61\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\ +\x61\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\ +\x6c\x01\x03\x00\x00\x00\xa2\x00\x41\x00\x62\x00\x6c\x00\x61\x00\ +\x6b\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x75\x00\x6d\x00\x6f\x00\x74\x00\x20\x00\x68\x00\x6f\x00\x7a\x00\ +\x20\x00\x6c\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x20\x00\x61\x00\ +\x20\x00\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\ +\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x75\x00\x6d\x00\x62\x00\xf3\x00\x6c\x00\x20\x00\x28\x00\x76\x00\ +\x6f\x00\x6e\x00\x61\x00\x6c\x00\x61\x00\x73\x00\x2c\x00\x20\x00\ +\x74\x00\xe9\x00\x67\x00\x6c\x00\x61\x00\x6c\x00\x61\x00\x70\x00\ +\x20\x00\x76\x00\x61\x00\x67\x00\x79\x00\x20\x00\x76\x00\xe1\x00\ +\x7a\x00\x6c\x00\x61\x00\x74\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x4a\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\x69\x6e\ +\x64\x6f\x77\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\ +\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x72\x65\x63\x74\x61\x6e\x67\ +\x6c\x65\x20\x6f\x72\x20\x73\x6b\x65\x74\x63\x68\x29\x07\x00\x00\ +\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ +\x00\x00\x0a\x00\x41\x00\x62\x00\x6c\x00\x61\x00\x6b\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\ +\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ +\x00\x00\x18\x00\x32\x00\x44\x00\x2d\x00\x6c\x00\x65\x00\x6b\x00\ +\xe9\x00\x70\x00\x65\x00\x7a\x00\xe9\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0c\x32\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\ +\x67\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x6a\x00\x4d\x00\x69\x00\x6e\x00\x64\ +\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x67\x00\x79\x00\x65\x00\x73\ +\x00\x20\x00\x54\x00\x65\x00\x72\x00\x76\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x74\x00\xed\ +\x00\x70\x00\x75\x00\x73\x00\x72\x00\x61\x00\x20\x00\x63\x00\x73\ +\x00\x6f\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x6f\x00\x74\x00\x20\ +\x00\x68\x00\x6f\x00\x7a\x00\x20\x00\x6c\x00\xe9\x00\x74\x00\x72\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x43\x72\x65\x61\ +\x74\x65\x73\x20\x67\x72\x6f\x75\x70\x73\x20\x66\x6f\x72\x20\x65\ +\x61\x63\x68\x20\x41\x72\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x74\x79\x70\x65\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x58\x00\x54\x00\x65\x00\ +\x72\x00\xfc\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x6b\x00\x20\x00\ +\x76\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x76\x00\x61\x00\ +\x73\x00\x74\x00\x61\x00\x67\x00\x73\x00\xe1\x00\x67\x00\x20\x00\ +\x61\x00\x72\x00\xe1\x00\x6e\x00\x79\x00\xe1\x00\x6e\x00\x61\x00\ +\x6b\x00\x20\x00\x6c\x00\x65\x00\x76\x00\xe1\x00\x67\x00\xe1\x00\ +\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x43\x75\x74\ +\x20\x61\x72\x65\x61\x73\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\ +\x6b\x6e\x65\x73\x73\x20\x72\x61\x74\x69\x6f\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x44\x00\x41\x00\x6c\x00\x61\x00\x70\x00\xe9\x00\x72\x00\x74\ +\x00\x65\x00\x6c\x00\x6d\x00\x65\x00\x7a\x00\x65\x00\x74\x00\x74\ +\x00\x20\x00\x73\x00\x7a\x00\x65\x00\x72\x00\x6b\x00\x65\x00\x7a\ +\x00\x65\x00\x74\x00\x65\x00\x69\x00\x20\x00\x73\x00\x7a\x00\xed\ +\x00\x6e\x00\x65\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\ +\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\ +\x72\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x73\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x36\x00\x46\x00\x61\x00\x6c\x00\x61\x00\x6b\x00\x20\x00\ +\x61\x00\x6c\x00\x61\x00\x70\x00\xe9\x00\x72\x00\x74\x00\x65\x00\ +\x6c\x00\x6d\x00\x65\x00\x7a\x00\x65\x00\x74\x00\x74\x00\x20\x00\ +\x73\x00\x7a\x00\xed\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x17\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\ +\x20\x66\x6f\x72\x20\x77\x61\x6c\x6c\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x40\x00\x41\x00\x7a\x00\x20\x00\x61\x00\x62\x00\x6c\x00\x61\x00\ +\x6b\x00\x6f\x00\x6b\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x70\x00\ +\xe9\x00\x72\x00\x74\x00\x65\x00\x6c\x00\x6d\x00\x65\x00\x7a\x00\ +\x65\x00\x74\x00\x74\x00\x20\x00\x73\x00\x7a\x00\xed\x00\x6e\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x44\x65\x66\x61\x75\ +\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\x69\x6e\ +\x64\x6f\x77\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\xc1\x00\x6c\x00\ +\x74\x00\x61\x00\x6c\x00\xe1\x00\x6e\x00\x6f\x00\x73\x00\x20\x00\ +\xed\x00\x76\x00\x62\x00\x65\x00\xe1\x00\x6c\x00\x6c\x00\xed\x00\ +\x74\x00\xe1\x00\x73\x00\x6f\x00\x6b\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\x20\x41\x72\x63\x68\x20\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\ +\xc1\x00\x6c\x00\x74\x00\x61\x00\x6c\x00\xe1\x00\x6e\x00\x6f\x00\ +\x73\x00\x20\x00\x62\x00\x65\x00\xe1\x00\x6c\x00\x6c\x00\xed\x00\ +\x74\x00\xe1\x00\x73\x00\x6f\x00\x6b\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\ +\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x40\x00\x43\x00\x73\x00\x6f\ +\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\xf6\x00\x73\x00\x73\ +\x00\x7a\x00\x65\x00\x74\x00\x65\x00\x76\x01\x51\x00\x6b\x00\x20\ +\x00\x74\x00\xed\x00\x70\x00\x75\x00\x73\x00\x20\x00\x73\x00\x7a\ +\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x19\x47\x72\x6f\x75\x70\x20\x63\x6f\x6d\x70\x6f\x6e\ +\x65\x6e\x74\x73\x20\x62\x79\x20\x74\x79\x70\x65\x73\x07\x00\x00\ +\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x2c\x00\x49\x00\x46\x00\x43\x00\x2d\x00\x61\x00\x64\ +\x00\x61\x00\x74\x00\x6f\x00\x6b\x00\x20\x00\x69\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\xe1\x00\x6c\x00\xe1\x00\x73\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x49\x46\x43\x20\x69\x6d\ +\x70\x6f\x72\x74\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\xd4\x00\x48\x00\x61\x00\ +\x20\x00\x62\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\ +\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x76\x00\x65\x00\x2c\x00\ +\x20\x00\x61\x00\x20\x00\x49\x00\x46\x00\x43\x00\x4f\x00\x70\x00\ +\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\ +\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x6f\x00\x74\x00\ +\x20\x00\x66\x00\x6f\x00\x67\x00\x20\x00\x68\x00\x61\x00\x73\x00\ +\x7a\x00\x6e\x00\xe1\x00\x6c\x00\x6e\x00\x69\x00\x2c\x00\x20\x00\ +\x61\x00\x6d\x00\x65\x00\x6c\x00\x79\x00\x20\x00\x6c\x00\x65\x00\ +\x68\x00\x65\x00\x74\x01\x51\x00\x76\x00\xe9\x00\x20\x00\x74\x00\ +\x65\x00\x73\x00\x7a\x00\x69\x00\x20\x00\x74\x00\xf6\x00\x62\x00\ +\x62\x00\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\x74\x00\xed\x00\ +\x70\x00\x75\x00\x73\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\xe1\x00\x6c\x00\xe1\x00\x73\x00\xe1\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x49\x66\x20\x74\x68\x69\x73\ +\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\ +\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\x69\x6d\ +\x70\x6f\x72\x74\x65\x72\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x75\ +\x73\x65\x64\x2c\x20\x61\x6c\x6c\x6f\x77\x69\x6e\x67\x20\x74\x6f\ +\x20\x69\x6d\x70\x6f\x72\x74\x20\x6d\x6f\x72\x65\x20\x49\x46\x43\ +\x20\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5c\x00\x42\x00\ +\xfa\x00\x74\x00\x6f\x00\x72\x00\x20\x00\x69\x00\x6d\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x00\xe1\x00\x6c\x00\xe1\x00\x73\x00\x61\x00\ +\x20\x00\x28\x00\x61\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\ +\x6c\x00\x6c\x00\x74\x00\x20\x00\x6e\x00\x65\x00\x68\x00\xe9\x00\ +\x7a\x00\x6b\x00\x65\x00\x73\x00\x73\x00\xe9\x00\x20\x00\x74\x00\ +\x65\x00\x73\x00\x7a\x00\x69\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2b\x49\x6d\x70\x6f\x72\x74\x20\x66\x75\x72\x6e\x69\x74\ +\x75\x72\x65\x20\x28\x63\x61\x6e\x20\x6d\x61\x6b\x65\x20\x74\x68\ +\x65\x20\x6d\x6f\x64\x65\x6c\x20\x68\x65\x61\x76\x79\x29\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x76\x00\x48\x00\x69\x00\x62\x00\x61\x00\x6b\x00\ +\x65\x00\x72\x00\x65\x00\x73\x00\xe9\x00\x73\x00\x69\x00\x20\x00\ +\x69\x00\x6e\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\xe1\x00\x63\x00\ +\x69\x00\xf3\x00\x20\x00\x6d\x00\x65\x00\x67\x00\x6a\x00\x65\x00\ +\x6c\x00\x65\x00\x6e\x00\xed\x00\x74\x00\xe9\x00\x73\x00\x65\x00\ +\x20\x00\x61\x00\x20\x00\x32\x00\x44\x00\x20\x00\x76\x00\x69\x00\ +\x73\x00\x73\x00\x7a\x00\x61\x00\x61\x00\x64\x00\xe1\x00\x73\x00\ +\x20\x00\x73\x00\x6f\x00\x72\x00\xe1\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2a\x53\x68\x6f\x77\x20\x64\x65\x62\x75\x67\x20\ +\x69\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x20\x64\x75\x72\x69\ +\x6e\x67\x20\x32\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\ +\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x62\x00\x48\x00\x69\x00\x62\x00\x61\x00\x6b\ +\x00\x65\x00\x72\x00\x65\x00\x73\x00\xe9\x00\x73\x00\x69\x00\x20\ +\x00\xfc\x00\x7a\x00\x65\x00\x6e\x00\x65\x00\x74\x00\x65\x00\x6b\ +\x00\x20\x00\x6d\x00\x65\x00\x67\x00\x6a\x00\x65\x00\x6c\x00\x65\ +\x00\x6e\x00\xed\x00\x74\x00\xe9\x00\x73\x00\x65\x00\x20\x00\x61\ +\x00\x20\x00\x6c\x00\x65\x00\x6b\x00\xe9\x00\x70\x00\x7a\x00\xe9\ +\x00\x73\x00\x68\x00\x65\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1c\x53\x68\x6f\x77\x20\x72\x65\x6e\x64\x65\x72\x65\x72\x20\ +\x64\x65\x62\x75\x67\x20\x6d\x65\x73\x73\x61\x67\x65\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\xbc\x00\x49\x00\x74\x00\x74\x00\x20\x00\x61\x00\ +\x64\x00\x68\x00\x61\x00\x74\x00\xf3\x00\x20\x00\x6d\x00\x65\x00\ +\x67\x00\x2c\x00\x20\x00\x61\x00\x20\x00\x6c\x00\xe1\x00\x74\x00\ +\x68\x00\x61\x00\x74\x00\xf3\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\ +\x61\x00\x6c\x00\x20\x00\x76\x00\x61\x00\x73\x00\x74\x00\x61\x00\ +\x67\x00\x73\x00\xe1\x00\x67\x00\x62\x00\xf3\x00\x6c\x00\x20\x00\ +\x68\x00\xe1\x00\x6e\x00\x79\x00\x61\x00\x74\x00\x20\x00\x6b\x00\ +\x65\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\x6c\x00\x6b\x00\x61\x00\ +\x6c\x00\x6d\x00\x61\x00\x7a\x00\x6e\x00\x69\x00\x20\x00\x61\x00\ +\x20\x00\x6b\x00\x69\x00\x76\x00\xe1\x00\x67\x00\xe1\x00\x73\x00\ +\x20\x00\x76\x00\xe9\x00\x67\x00\x72\x00\x65\x00\x68\x00\x61\x00\ +\x6c\x00\x79\x00\x74\x00\xe1\x00\x73\x00\xe1\x00\x68\x00\x6f\x00\ +\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x53\x70\x65\x63\x69\ +\x66\x69\x65\x73\x20\x68\x6f\x77\x20\x6d\x61\x6e\x79\x20\x74\x69\ +\x6d\x65\x73\x20\x74\x68\x65\x20\x76\x69\x65\x77\x65\x64\x20\x6c\ +\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\x73\x20\x6d\x75\ +\x73\x74\x20\x62\x65\x20\x61\x70\x70\x6c\x69\x65\x64\x20\x74\x6f\ +\x20\x63\x75\x74\x20\x6c\x69\x6e\x65\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x6a\x00\x45\x00\x7a\x00\x20\x00\x61\x00\x7a\x00\x20\x00\x61\x00\ +\x6c\x00\x61\x00\x70\x00\xe9\x00\x72\x00\x74\x00\x65\x00\x6c\x00\ +\x6d\x00\x65\x00\x7a\x00\x65\x00\x74\x00\x74\x00\x20\x00\x73\x00\ +\x7a\x00\xed\x00\x6e\x00\x20\x00\x61\x00\x7a\x00\x20\x00\xfa\x00\ +\x6a\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\ +\xfa\x00\x72\x00\x61\x00\x20\x00\x74\x00\xe1\x00\x72\x00\x67\x00\ +\x79\x00\x61\x00\x6b\x00\x68\x00\x6f\x00\x7a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x33\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\ +\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\ +\x6f\x72\x20\x6e\x65\x77\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5e\x00\ +\x45\x00\x7a\x00\x20\x00\x61\x00\x7a\x00\x20\x00\x61\x00\x6c\x00\ +\x61\x00\x70\x00\xe9\x00\x72\x00\x74\x00\x65\x00\x6c\x00\x6d\x00\ +\x65\x00\x7a\x00\x65\x00\x74\x00\x74\x00\x20\x00\x73\x00\x7a\x00\ +\xed\x00\x6e\x00\x20\x00\x61\x00\x7a\x00\x20\x00\xfa\x00\x6a\x00\ +\x20\x00\x66\x00\x61\x00\x6c\x00\x20\x00\x74\x00\xe1\x00\x72\x00\ +\x67\x00\x79\x00\x61\x00\x6b\x00\x6e\x00\x61\x00\x6b\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x2e\x54\x68\x69\x73\x20\x69\x73\x20\x74\ +\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\ +\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x57\x61\x6c\x6c\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x54\x00\x49\x00\x46\ +\x00\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\ +\x00\x6c\x00\x6c\x00\x20\x00\x68\x00\x61\x00\x73\x00\x7a\x00\x6e\ +\x00\xe1\x00\x6c\x00\x2c\x00\x20\x00\x68\x00\x61\x00\x20\x00\x72\ +\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6c\x00\x6b\x00\x65\x00\x7a\ +\x00\xe9\x00\x73\x00\x72\x00\x65\x00\x20\x00\xe1\x00\x6c\x00\x6c\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\x65\x20\x49\x46\ +\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\x69\x66\x20\x61\x76\ +\x61\x69\x6c\x61\x62\x6c\x65\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x26\ +\x00\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\x74\x00\x65\x00\x6b\ +\x00\x74\x00\xfa\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x26\x41\x72\x63\x68\x69\x74\x65\x63\x74\x75\x72\x65\x07\ +\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x52\ +\x00\x61\x00\x6a\x00\x7a\x00\x6f\x00\x6c\x00\xe1\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x26\x44\x72\x61\x66\x74\x07\x00\ +\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x53\x00\ +\x7a\x00\x65\x00\x72\x00\x6b\x00\x65\x00\x73\x00\x7a\x00\x74\x00\ +\xe9\x00\x73\x00\x69\x00\x20\x00\x65\x00\x73\x00\x7a\x00\x6b\x00\ +\xf6\x00\x7a\x00\xf6\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x41\x72\x63\x68\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\ +\x61\x72\x63\x68\x01\x03\x00\x00\x00\x24\x00\x53\x00\x7a\x00\xe1\ +\x00\x6d\x00\xed\x00\x74\x00\xe1\x00\x73\x00\x69\x00\x20\x00\x65\ +\x00\x73\x00\x7a\x00\x6b\x00\xf6\x00\x7a\x00\xf6\x00\x6b\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x11\x43\x61\x6c\x63\x75\x6c\x61\x74\ +\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\ +\x63\x68\x01\x03\x00\x00\x00\x26\x00\x4b\x00\xf6\x00\x72\x00\x6e\ +\x00\x79\x00\x65\x00\x7a\x00\x65\x00\x74\x00\x69\x00\x20\x00\x65\ +\x00\x73\x00\x7a\x00\x6b\x00\xf6\x00\x7a\x00\xf6\x00\x6b\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x74\x65\x78\x74\x20\ +\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\ +\x00\x00\x00\x20\x00\x46\x00\x6f\x00\x72\x00\x64\x00\xed\x00\x74\ +\x00\xf3\x00\x20\x00\x65\x00\x73\x00\x7a\x00\x6b\x00\xf6\x00\x7a\ +\x00\xf6\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x6f\ +\x6e\x76\x65\x72\x73\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\x00\ +\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x2c\x00\x54\x00\ +\x65\x00\x72\x00\x76\x00\x65\x00\x7a\x00\xe9\x00\x73\x00\x69\x00\ +\x20\x00\x6d\x00\xf3\x00\x64\x00\x20\x00\x65\x00\x73\x00\x7a\x00\ +\x6b\x00\xf6\x00\x7a\x00\xf6\x00\x6b\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\x20\x74\x6f\x6f\ +\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\ +\x24\x00\x52\x00\x61\x00\x6a\x00\x7a\x00\x6f\x00\x6c\x00\xe1\x00\ +\x73\x00\x69\x00\x20\x00\x65\x00\x73\x00\x7a\x00\x6b\x00\xf6\x00\ +\x7a\x00\xf6\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\ +\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\ +\x72\x63\x68\x01\x03\x00\x00\x00\x7c\x00\x6e\x00\x65\x00\x6d\x00\ +\x20\x00\x74\x00\x61\x00\x6c\x00\xe1\x00\x6c\x00\x68\x00\x61\x00\ +\x74\x00\xf3\x00\x20\x00\x61\x00\x20\x00\x70\x00\x79\x00\x63\x00\ +\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x2c\x00\x20\x00\ +\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\ +\x74\x00\xe1\x00\x6d\x00\x6f\x00\x67\x00\x61\x00\x74\x00\xe1\x00\ +\x73\x00\x20\x00\x6c\x00\x65\x00\x74\x00\x69\x00\x6c\x00\x74\x00\ +\xe1\x00\x73\x00\x72\x00\x61\x00\x20\x00\x6b\x00\x65\x00\x72\x00\ +\xfc\x00\x6c\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x70\ +\x79\x63\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\ +\x6e\x64\x2c\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\ +\x6f\x72\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x69\x73\x61\ +\x62\x6c\x65\x64\x2e\x0a\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ +\ +\x00\x00\x50\xbb\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x04\xf8\x00\x00\x47\xa4\x00\x00\x00\x55\x00\x04\x8e\xc3\ +\x00\x00\x01\x99\x00\x04\x8f\x03\x00\x00\x02\x6a\x00\x04\x8f\x03\ +\x00\x00\x29\xda\x00\x04\x9c\x2c\x00\x00\x2b\x66\x00\x04\xbb\x04\ +\x00\x00\x08\xee\x00\x05\x48\x35\x00\x00\x0e\x97\x00\x05\x67\xd5\ +\x00\x00\x10\xdb\x00\x05\x96\x56\x00\x00\x11\x33\x00\x05\x96\x56\ +\x00\x00\x33\x94\x00\x05\xa0\xa5\x00\x00\x11\x5e\x00\x05\xa0\xa5\ +\x00\x00\x37\x53\x00\x05\xc0\x65\x00\x00\x20\x4d\x00\x05\xd8\x2c\ +\x00\x00\x22\x06\x00\x05\xd8\x2c\x00\x00\x3b\x57\x00\x32\x23\xa5\ +\x00\x00\x48\xa8\x00\x39\xdf\x33\x00\x00\x40\x6f\x00\x48\x4e\x25\ +\x00\x00\x01\x71\x00\x49\xeb\x9b\x00\x00\x2c\x50\x00\x4b\x55\x33\ +\x00\x00\x41\xb7\x00\x4d\x36\x62\x00\x00\x0b\x99\x00\x4d\x36\x62\ +\x00\x00\x2f\x18\x00\x5d\xfb\xa8\x00\x00\x22\xa0\x00\x5e\x08\xc3\ +\x00\x00\x22\xf9\x00\x61\xb0\x33\x00\x00\x19\x45\x00\x62\x9b\xa8\ +\x00\x00\x11\xe3\x00\x62\x9b\xa8\x00\x00\x37\x7d\x00\x8a\x92\x57\ +\x00\x00\x00\x00\x00\xaa\x80\x25\x00\x00\x08\x3f\x00\xc9\x7b\xf3\ +\x00\x00\x14\xb6\x00\xfb\x72\xf3\x00\x00\x3f\xf9\x01\x19\x4e\x85\ +\x00\x00\x06\x77\x01\x55\x2b\xf5\x00\x00\x05\xcc\x01\x79\x17\x94\ +\x00\x00\x26\x14\x01\x8e\x84\xa6\x00\x00\x13\x6c\x01\xad\x7d\xe3\ +\x00\x00\x4a\x37\x01\xaf\x41\x84\x00\x00\x24\xec\x01\xf7\xa8\x83\ +\x00\x00\x47\x49\x02\x01\x7f\xd3\x00\x00\x12\x60\x02\x29\xb3\xc4\ +\x00\x00\x32\xdb\x02\x5a\x4a\x53\x00\x00\x18\x4d\x02\x5f\xc9\x59\ +\x00\x00\x3a\x2d\x02\x66\x7f\x7e\x00\x00\x0f\x91\x02\x6a\x77\x99\ +\x00\x00\x42\xff\x02\x80\x5f\x17\x00\x00\x27\x1d\x02\x82\x88\x3a\ +\x00\x00\x04\xa2\x02\x85\x4f\xf5\x00\x00\x1b\xed\x02\x90\x40\x65\ +\x00\x00\x0e\x4b\x02\x90\x40\x65\x00\x00\x2f\x46\x02\x94\x16\x35\ +\x00\x00\x12\x9f\x02\xab\x87\xd4\x00\x00\x48\xe8\x02\xb8\xae\x74\ +\x00\x00\x30\x50\x02\xc3\x91\x93\x00\x00\x44\x96\x02\xcd\x05\xa3\ +\x00\x00\x2f\x9e\x02\xdd\x14\x14\x00\x00\x30\xac\x03\x13\x15\x3e\ +\x00\x00\x0c\xf5\x03\x1b\xda\x15\x00\x00\x22\x6a\x03\x1d\xe8\xe3\ +\x00\x00\x3e\x64\x03\x29\x7a\x34\x00\x00\x00\xe9\x03\x2c\xe9\xb3\ +\x00\x00\x19\xb4\x03\x92\x51\xe0\x00\x00\x11\x83\x03\xa2\xec\x23\ +\x00\x00\x22\x29\x03\xbe\xb0\x34\x00\x00\x21\x2c\x03\xce\x98\xe5\ +\x00\x00\x04\x18\x03\xd4\x22\x74\x00\x00\x28\xd6\x04\x35\xfa\x55\ +\x00\x00\x14\x2b\x04\xc3\x75\x44\x00\x00\x1c\x4a\x04\xdb\x21\x3e\ +\x00\x00\x36\x9c\x04\xeb\xfd\xf4\x00\x00\x0b\xfa\x05\x14\x5b\x83\ +\x00\x00\x08\x70\x05\x18\xda\xa3\x00\x00\x2e\x60\x05\x5f\x3d\x83\ +\x00\x00\x3f\x71\x05\x8c\x46\xc5\x00\x00\x11\x06\x05\x90\xba\xe3\ +\x00\x00\x10\xaf\x05\xc0\x56\xe3\x00\x00\x45\x31\x05\xc7\xeb\xc7\ +\x00\x00\x43\xc9\x05\xe0\x4b\x67\x00\x00\x22\xcc\x05\xe0\x4b\x67\ +\x00\x00\x3c\x8b\x05\xef\x78\x4a\x00\x00\x26\x59\x06\x1f\x6f\xa4\ +\x00\x00\x24\x3c\x06\x32\xe3\xe3\x00\x00\x4a\x97\x06\x5b\x01\x15\ +\x00\x00\x03\xe5\x06\x69\xd0\x04\x00\x00\x23\xd0\x06\x9f\x6f\xd4\ +\x00\x00\x07\xc9\x06\xd6\x3f\xa4\x00\x00\x25\xd0\x06\xe6\x2f\x43\ +\x00\x00\x13\xcb\x07\x00\xcc\xc4\x00\x00\x41\x5e\x07\x07\x84\xba\ +\x00\x00\x4a\xd3\x07\x08\x43\x0e\x00\x00\x2a\x02\x07\x16\x58\x05\ +\x00\x00\x3d\x0c\x07\x25\x74\x53\x00\x00\x2d\x3d\x07\x28\xff\x15\ +\x00\x00\x0f\x13\x07\x36\x51\x26\x00\x00\x15\xc2\x07\x5c\xdc\x04\ +\x00\x00\x23\x27\x07\x60\x23\xf3\x00\x00\x03\x4e\x07\xca\xf8\x87\ +\x00\x00\x3c\xbf\x08\x25\x81\xc4\x00\x00\x07\x68\x08\x4a\x45\xd9\ +\x00\x00\x3b\x7f\x08\x65\x4c\x95\x00\x00\x1e\xba\x08\xc5\xe3\x35\ +\x00\x00\x1d\xf3\x08\xca\xc9\x74\x00\x00\x17\x20\x08\xfb\xb8\xa4\ +\x00\x00\x0b\x24\x09\x69\xac\xa7\x00\x00\x21\x9f\x09\x6c\x6c\xa7\ +\x00\x00\x0b\xc1\x09\x9f\xcc\xde\x00\x00\x25\x4e\x09\xba\xe6\x35\ +\x00\x00\x12\x2c\x09\xba\xe6\x35\x00\x00\x39\xef\x09\xc5\xbe\xca\ +\x00\x00\x0a\x68\x09\xe3\x98\xe4\x00\x00\x29\x28\x09\xed\x98\x55\ +\x00\x00\x34\x94\x0a\x3e\x06\x83\x00\x00\x05\x20\x0a\x3f\x1f\xd6\ +\x00\x00\x05\x7c\x0a\x3f\x2b\x25\x00\x00\x06\x2f\x0a\x3f\x5d\xac\ +\x00\x00\x06\xd0\x0a\x7f\xee\xa3\x00\x00\x49\x13\x0a\xb6\xc8\x9a\ +\x00\x00\x0c\x27\x0a\xbf\x46\x0e\x00\x00\x20\x72\x0a\xd6\x07\x84\ +\x00\x00\x23\x5c\x0b\x0a\xc3\xf3\x00\x00\x00\x7f\x0b\x51\x30\xa8\ +\x00\x00\x31\xce\x0b\x65\xda\xb3\x00\x00\x3e\xf3\x0b\x8d\x97\x93\ +\x00\x00\x46\x6d\x0b\x9c\x5b\xe7\x00\x00\x09\xaf\x0b\xb9\xe8\x93\ +\x00\x00\x32\x2d\x0b\xc4\xb1\x23\x00\x00\x2b\x96\x0c\x02\xac\xd7\ +\x00\x00\x03\x1d\x0c\x02\xac\xd7\x00\x00\x2a\x65\x0c\x25\x3e\x53\ +\x00\x00\x35\x7b\x0c\x3c\x8b\x33\x00\x00\x49\x60\x0c\x41\x0a\x83\ +\x00\x00\x49\xaa\x0c\x4e\x9b\x23\x00\x00\x34\xe5\x0c\x98\x80\x23\ +\x00\x00\x49\xe6\x0c\xc4\xd0\x80\x00\x00\x28\x06\x0c\xdf\x5a\x1e\ +\x00\x00\x01\xbe\x0c\xfc\x97\x06\x00\x00\x21\xda\x0d\x03\x26\xb4\ +\x00\x00\x02\xd4\x0d\x08\x90\xf3\x00\x00\x1d\x8a\x0d\x1e\xda\xa4\ +\x00\x00\x03\x85\x0d\x3b\x3b\x49\x00\x00\x38\x9f\x0d\xa8\x3a\x35\ +\x00\x00\x1a\x0b\x0d\xc1\x7d\x47\x00\x00\x28\x62\x0d\xfa\x53\xe5\ +\x00\x00\x09\x17\x0e\x69\x87\x13\x00\x00\x33\xc4\x0e\x8c\xd7\x43\ +\x00\x00\x37\xce\x0e\x98\x0a\xd6\x00\x00\x20\xbe\x0e\xab\x8d\x1f\ +\x00\x00\x3d\xc1\x0e\xb9\x1b\xf2\x00\x00\x16\xc1\x0e\xec\x0b\x9e\ +\x00\x00\x2a\x9f\x0f\x16\x4a\x24\x00\x00\x1f\xcb\x0f\x17\xc7\xa3\ +\x00\x00\x2c\x84\x0f\x55\xc1\x57\x00\x00\x07\x16\x0f\x78\x41\x05\ +\x00\x00\x48\x14\x0f\x79\xe3\xf3\x00\x00\x2d\x8c\x0f\x95\xd5\x09\ +\x00\x00\x1a\xd5\x0f\xa2\x16\x43\x00\x00\x1f\x97\x0f\xc0\xb8\xb4\ +\x00\x00\x0e\xba\x0f\xd0\x39\x44\x00\x00\x02\x8d\x0f\xe5\x74\x74\ +\x00\x00\x00\xb3\x0f\xf3\xe8\x33\x00\x00\x40\xd6\x69\x00\x00\x4b\ +\xa9\x03\x00\x00\x00\x2c\x00\x43\x00\x72\x00\xe9\x00\x61\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x27\x00\x75\x00\x6e\ +\x00\x20\x00\x62\x00\xe2\x00\x74\x00\x69\x00\x6d\x00\x65\x00\x6e\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x20\x43\x72\x65\ +\x61\x74\x65\x20\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x41\x00\x6a\x00\ +\x6f\x00\x75\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x03\x41\x64\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x12\x00\x41\x00\x64\x00\x64\x00\x69\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x09\x41\x64\x64\x69\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x41\x00\x6c\x00\x69\x00\ +\x67\x00\x6e\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x41\x6c\x69\x67\x6e\x6d\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x54\x00\ +\x54\x00\x6f\x00\x75\x00\x74\x00\x20\x00\x65\x00\x73\x00\x74\x00\ +\x20\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x72\x00\x64\x00\x72\x00\ +\x65\x00\x21\x00\x20\x00\x61\x00\x75\x00\x63\x00\x75\x00\x6e\x00\ +\x20\x00\x70\x00\x72\x00\x6f\x00\x62\x00\x6c\x00\xe8\x00\x6d\x00\ +\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x61\x00\ +\x74\x00\xe9\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x41\x6c\x6c\ +\x20\x67\x6f\x6f\x64\x21\x20\x6e\x6f\x20\x70\x72\x6f\x62\x6c\x65\ +\x6d\x73\x20\x66\x6f\x75\x6e\x64\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x0a\x00\x41\x00\x6e\x00\x67\x00\x6c\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x6e\x67\x6c\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\ +\x41\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x41\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x6c\x00\x53\x00\x79\x00\x73\x00\x74\x00\xe8\x00\x6d\ +\x00\x65\x00\x73\x00\x20\x00\x64\x00\x27\x00\x61\x00\x78\x00\x65\ +\x00\x73\x00\x20\x00\x73\x00\x75\x00\x72\x00\x20\x00\x6c\x00\x65\ +\x00\x73\x00\x71\x00\x75\x00\x65\x00\x6c\x00\x73\x00\x20\x00\x63\ +\x00\x65\x00\x74\x00\x74\x00\x65\x00\x20\x00\x73\x00\x74\x00\x72\ +\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x65\ +\x00\x73\x00\x74\x00\x20\x00\x62\x00\x61\x00\x73\x00\xe9\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x41\x78\x65\x73\x20\x73\ +\x79\x73\x74\x65\x6d\x73\x20\x74\x68\x69\x73\x20\x73\x74\x72\x75\ +\x63\x74\x75\x72\x65\x20\x69\x73\x20\x62\x75\x69\x6c\x74\x20\x6f\ +\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x06\ +\x00\x41\x00\x78\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x41\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x20\x00\ +\x32\x00\x44\x00\x20\x00\x64\x00\x65\x00\x20\x00\x62\x00\x61\x00\ +\x73\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x42\x61\x73\ +\x65\x20\x32\x44\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x22\x00\x43\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x73\x00\x61\x00\x6e\x00\x74\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0e\x42\x61\x73\x65\x20\x63\x6f\x6d\x70\x6f\ +\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x10\x00\x42\x00\xe2\x00\x74\x00\x69\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\ +\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x14\x00\x43\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x73\ +\x00\x61\x00\x6e\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0a\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x43\x00\x6f\x00\ +\x6d\x00\x70\x00\x6f\x00\x73\x00\x61\x00\x6e\x00\x74\x00\x73\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x65\x00\x74\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x19\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x43\x00\x6f\x00\ +\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x65\x00\x72\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x43\x6f\x6e\x74\x69\x6e\x75\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x52\x00\x49\ +\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x73\x00\x69\x00\x62\x00\x6c\ +\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x61\x00\x6c\ +\x00\x63\x00\x75\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x61\ +\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x65\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x63\x00\x65\x00\x20\x00\x6d\x00\x75\x00\x72\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x43\x6f\x75\x6c\x64\x6e\ +\x27\x74\x20\x63\x6f\x6d\x70\x75\x74\x65\x20\x74\x68\x65\x20\x77\ +\x61\x6c\x6c\x20\x73\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x48\x00\x49\x00\x6d\x00\x70\x00\x6f\ +\x00\x73\x00\x73\x00\x69\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x69\ +\x00\x73\x00\x65\x00\x72\x00\x20\x00\x49\x00\x66\x00\x63\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x43\x6f\x75\x6c\x64\x6e\ +\x27\x74\x20\x6c\x6f\x63\x61\x74\x65\x20\x49\x66\x63\x4f\x70\x65\ +\x6e\x53\x68\x65\x6c\x6c\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x38\x00\x43\x00\x72\x00\xe9\x00\x61\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x27\x00\x75\x00\x6e\ +\x00\x20\x00\x73\x00\x79\x00\x73\x00\x74\x00\xe8\x00\x6d\x00\x65\ +\x00\x20\x00\x64\x00\x27\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x41\ +\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x2c\x00\x43\x00\x72\x00\xe9\x00\x61\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x64\x00\x27\x00\x75\x00\x6e\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x00\x69\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x52\ +\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x36\x00\x43\x00\x72\x00\xe9\x00\x61\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x64\x00\x27\x00\x75\x00\x6e\x00\x20\x00\x70\ +\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x75\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x14\x43\x72\x65\x61\x74\x65\x20\x53\x65\x63\x74\x69\x6f\x6e\ +\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x24\x00\x43\x00\x72\x00\xe9\x00\x61\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x27\x00\x75\x00\x6e\x00\ +\x20\x00\x53\x00\x69\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x53\x69\x74\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x30\x00\x43\x00\ +\x72\x00\xe9\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ +\x64\x00\x27\x00\x75\x00\x6e\x00\x65\x00\x20\x00\x73\x00\x74\x00\ +\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\x74\x65\x20\x53\x74\ +\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x22\x00\x43\x00\x72\x00\xe9\x00\x61\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x27\x00\x75\x00\x6e\ +\x00\x20\x00\x6d\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x57\x61\x6c\x6c\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2c\x00\x43\x00\x72\ +\x00\xe9\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\ +\x00\x27\x00\x75\x00\x6e\x00\x65\x00\x20\x00\x66\x00\x65\x00\x6e\ +\x00\xea\x00\x74\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x43\x72\x65\x61\x74\x65\x20\x57\x69\x6e\x64\x6f\x77\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\x43\ +\x00\x72\x00\xe9\x00\x65\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x20\ +\x00\x6e\x00\x6f\x00\x75\x00\x76\x00\x65\x00\x61\x00\x75\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x61\x00\x6e\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\ +\x74\x65\x20\x6e\x65\x77\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x46\x00\ +\x43\x00\x72\x00\xe9\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x75\x00\ +\x20\x00\x6d\x00\x65\x00\x74\x00\x74\x00\x72\x00\x65\x00\x20\x00\ +\x6c\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\ +\x73\x00\x61\x00\x6e\x00\x74\x00\x20\x00\xe0\x00\x20\x00\x6a\x00\ +\x6f\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\ +\x72\x65\x61\x74\x65\x2f\x75\x70\x64\x61\x74\x65\x20\x63\x6f\x6d\ +\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x10\x00\x44\x00\x69\x00\x73\x00\x74\x00\x61\x00\ +\x6e\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x44\ +\x69\x73\x74\x61\x6e\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x44\x00\x44\x00\x69\x00\x73\x00\x74\x00\x61\ +\x00\x6e\x00\x63\x00\x65\x00\x73\x00\x20\x00\x65\x00\x74\x00\x20\ +\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x65\ +\x00\x6e\x00\x74\x00\x72\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x73\ +\x00\x20\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x21\x44\x69\x73\x74\x61\x6e\x63\x65\x73\x20\x61\x6e\ +\x64\x20\x61\x6e\x67\x6c\x65\x73\x20\x62\x65\x74\x77\x65\x65\x6e\ +\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x0c\x00\xc9\x00\x64\x00\x69\x00\x74\x00\x65\x00\x72\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x58\x00\x45\x00\ +\x72\x00\x72\x00\x65\x00\x75\x00\x72\x00\x20\x00\x6c\x00\x6f\x00\ +\x72\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x27\x00\ +\x61\x00\x66\x00\x66\x00\x69\x00\x6e\x00\x61\x00\x67\x00\x65\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x66\x00\ +\x6f\x00\x72\x00\x6d\x00\x65\x00\x20\x00\x64\x00\x75\x00\x20\x00\ +\x6d\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x45\ +\x72\x72\x6f\x72\x20\x72\x65\x6d\x6f\x76\x69\x6e\x67\x20\x73\x70\ +\x6c\x69\x74\x74\x65\x72\x20\x66\x72\x6f\x6d\x20\x77\x61\x6c\x6c\ +\x20\x73\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x74\x00\x45\x00\x72\x00\x72\x00\x65\x00\x75\x00\ +\x72\x00\x20\x00\x3a\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\ +\x73\x00\x73\x00\x69\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x64\x00\xe9\x00\x74\x00\x65\x00\x72\x00\x6d\x00\ +\x69\x00\x6e\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x27\x00\x65\x00\ +\x6e\x00\x63\x00\x6f\x00\x64\x00\x61\x00\x67\x00\x65\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x63\x00\x61\x00\x72\x00\x61\x00\x63\x00\ +\x74\x00\xe8\x00\x72\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2c\x45\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\x6e\ +\x27\x74\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\x61\ +\x72\x61\x63\x74\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x76\x00\x45\ +\x00\x72\x00\x72\x00\x65\x00\x75\x00\x72\x00\x20\x00\x3a\x00\x20\ +\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x73\x00\x69\x00\x62\ +\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\x00\xe9\ +\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x65\x00\x72\ +\x00\x20\x00\x6c\x00\x27\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\x64\ +\x00\x61\x00\x67\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\ +\x00\x61\x00\x72\x00\x61\x00\x63\x00\x74\x00\xe8\x00\x72\x00\x65\ +\x00\x73\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x45\x72\ +\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x64\x65\ +\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\ +\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x0a\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x42\x00\x45\x00\x72\x00\x72\ +\x00\x65\x00\x75\x00\x72\x00\x20\x00\x3a\x00\x20\x00\x4f\x00\x62\ +\x00\x6a\x00\x65\x00\x74\x00\x20\x00\x64\x00\x65\x00\x20\x00\x62\ +\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x20\ +\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1a\x45\x72\x72\x6f\x72\x3a\x20\x49\x6e\x76\ +\x61\x6c\x69\x64\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\ +\xc9\x00\x74\x00\x61\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x18\x00\x52\x00\x65\x00\x67\x00\x72\x00\ +\x6f\x00\x75\x00\x70\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x47\x72\x6f\x75\x70\x69\x6e\ +\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\ +\x00\x48\x00\x61\x00\x75\x00\x74\x00\x65\x00\x75\x00\x72\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x48\x65\x69\x67\x68\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x8a\x00\x73\x00\ +\x63\x00\x68\x00\xe9\x00\x6d\x00\x61\x00\x20\x00\x49\x00\x46\x00\ +\x43\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x72\x00\x6f\x00\x75\x00\ +\x76\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x2c\x00\x20\x00\x6c\x00\ +\x27\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x66\x00\x69\x00\x63\x00\x68\x00\x69\x00\x65\x00\x72\x00\x73\x00\ +\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\x65\x00\x73\x00\x74\x00\ +\x20\x00\x64\x00\xe9\x00\x73\x00\x61\x00\x63\x00\x74\x00\x69\x00\ +\x76\x00\xe9\x00\x65\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2b\x49\x46\x43\x20\x53\x63\x68\x65\x6d\x61\x20\x6e\x6f\x74\x20\ +\x66\x6f\x75\x6e\x64\x2c\x20\x49\x46\x43\x20\x69\x6d\x70\x6f\x72\ +\x74\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x2e\x0a\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xd4\x00\x53\x00\x69\x00\ +\x20\x00\x76\x00\x72\x00\x61\x00\x69\x00\x2c\x00\x20\x00\x73\x00\ +\x69\x00\x20\x00\x63\x00\x65\x00\x20\x00\x6d\x00\x75\x00\x72\x00\ +\x20\x00\x65\x00\x73\x00\x74\x00\x20\x00\x62\x00\x61\x00\x73\x00\ +\xe9\x00\x20\x00\x73\x00\x75\x00\x72\x00\x20\x00\x75\x00\x6e\x00\ +\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x2c\x00\x20\x00\ +\x6c\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\ +\x75\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x65\x00\ +\x74\x00\x74\x00\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\ +\x20\x00\x73\x00\x65\x00\x72\x00\x61\x00\x20\x00\x75\x00\x74\x00\ +\x69\x00\x6c\x00\x69\x00\x73\x00\xe9\x00\x2c\x00\x20\x00\x65\x00\ +\x74\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x20\x00\x6c\x00\x61\x00\ +\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x65\x00\x6c\x00\ +\x6c\x00\x65\x00\x2d\x00\x6d\x00\xea\x00\x6d\x00\x65\x00\x2e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x69\x49\x66\x20\x54\x72\x75\x65\ +\x2c\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\ +\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x66\x61\x63\ +\x65\x2c\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x75\x73\x65\x20\x69\ +\x74\x73\x20\x62\x6f\x72\x64\x65\x72\x20\x77\x69\x72\x65\x20\x61\ +\x73\x20\x74\x72\x61\x63\x65\x2c\x20\x61\x6e\x64\x20\x64\x69\x73\ +\x63\x6f\x6e\x73\x69\x64\x65\x72\x20\x74\x68\x65\x20\x66\x61\x63\ +\x65\x2e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x26\x00\x4d\x00\x61\x00\x69\x00\x6c\x00\x6c\x00\x61\x00\x67\x00\ +\x65\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\x00\x20\x00\x46\x00\ +\x6f\x00\x72\x00\x6d\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0d\x4d\x65\x73\x68\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x06\x00\x4e\x00\ +\x6f\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\x61\x6d\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\ +\x00\x41\x00\x75\x00\x63\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x74\x00\x20\x00\x73\x00\xe9\x00\x6c\x00\x65\ +\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x12\x4e\x6f\x20\x6f\x62\x6a\x65\x63\ +\x74\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x46\x00\x41\x00\x75\x00\x63\x00\ +\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x20\x00\x6e\x00\x27\x00\x65\x00\x73\x00\x74\x00\x20\x00\x63\x00\ +\x6f\x00\x75\x00\x70\x00\xe9\x00\x20\x00\x70\x00\x61\x00\x72\x00\ +\x20\x00\x63\x00\x65\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x4e\x6f\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x20\x61\x72\x65\x20\x63\x75\x74\x20\x62\x79\x20\x74\ +\x68\x65\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\xba\x00\x41\x00\x75\x00\x63\x00\x75\x00\ +\x6e\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x65\x00\ +\x20\x00\x6e\x00\x27\x00\x61\x00\x20\x00\x65\x00\x6e\x00\x63\x00\ +\x6f\x00\x72\x00\x65\x00\x20\x00\xe9\x00\x74\x00\xe9\x00\x20\x00\ +\x63\x00\x61\x00\x6c\x00\x63\x00\x75\x00\x6c\x00\xe9\x00\x65\x00\ +\x2c\x00\x20\x00\x73\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x7a\x00\x20\x00\x22\x00\ +\x72\x00\x65\x00\x6e\x00\x64\x00\x75\x00\x20\x00\x66\x00\x69\x00\ +\x6c\x00\x61\x00\x69\x00\x72\x00\x65\x00\x22\x00\x20\x00\x65\x00\ +\x74\x00\x20\x00\x66\x00\x61\x00\x69\x00\x74\x00\x65\x00\x73\x00\ +\x20\x00\x75\x00\x6e\x00\x20\x00\x6e\x00\x6f\x00\x75\x00\x76\x00\ +\x65\x00\x61\x00\x75\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\ +\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4b\x4e\x6f\x20\x73\x68\ +\x61\x70\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x63\x6f\x6d\ +\x70\x75\x74\x65\x64\x20\x79\x65\x74\x2c\x20\x73\x65\x6c\x65\x63\ +\x74\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\x72\x65\x6e\x64\ +\x65\x72\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x65\x6e\x64\x65\x72\ +\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x0c\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x4f\x62\x6a\x65\x63\ +\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x0e\x00\x46\x00\x65\x00\x75\x00\x69\x00\x6c\x00\x6c\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x50\x61\x67\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x45\x00\x6e\ +\x00\x6c\x00\x65\x00\x76\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x52\x65\x6d\x6f\x76\x65\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x54\x00\x6f\x00\x69\x00\ +\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x08\x00\x53\x00\x69\x00\x74\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x4f\x00\x62\x00\x6a\x00\ +\x65\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x76\x00\x61\x00\x6c\x00\ +\x69\x00\x64\x00\x65\x00\x20\x00\x72\x00\x65\x00\x6a\x00\x65\x00\ +\x74\x00\xe9\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x19\x53\x6b\x69\x70\x70\x69\x6e\x67\x20\x69\x6e\x76\x61\x6c\x69\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x26\x00\x44\x00\x69\x00\x76\x00\ +\x69\x00\x73\x00\x65\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x20\x00\ +\x6d\x00\x61\x00\x69\x00\x6c\x00\x6c\x00\x61\x00\x67\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\ +\x65\x73\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x12\x00\x53\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\ +\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x74\ +\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x1a\x00\x53\x00\x6f\x00\x75\x00\x73\x00\x74\ +\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x75\x62\x74\x72\x61\ +\x63\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x78\x00\x4c\x00\x27\x00\x61\x00\x6c\x00\x69\x00\ +\x67\x00\x6e\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x63\x00\x65\x00\x20\x00\x6d\x00\x75\x00\ +\x72\x00\x20\x00\x73\x00\x75\x00\x72\x00\x20\x00\x73\x00\x6f\x00\ +\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x2c\x00\ +\x20\x00\x6c\x00\x65\x00\x20\x00\x63\x00\x61\x00\x73\x00\x20\x00\ +\xe9\x00\x63\x00\x68\x00\xe9\x00\x61\x00\x6e\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x3c\x54\x68\x65\x20\x61\x6c\x69\x67\x6e\ +\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\ +\x6c\x20\x6f\x6e\x20\x69\x74\x73\x20\x62\x61\x73\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x2c\x20\x69\x66\x20\x61\x70\x70\x6c\x69\x63\x61\ +\x62\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x30\x00\x4c\x00\x27\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x65\x00\x74\x00\x74\ +\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x69\x00\x74\x00\x75\x00\x72\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x68\x65\x20\ +\x61\x6e\x67\x6c\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x72\x6f\ +\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x30\x00\x4c\x00\x65\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x67\x00\ +\x6c\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\ +\x68\x00\x61\x00\x71\x00\x75\x00\x65\x00\x20\x00\x61\x00\x78\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x54\x68\x65\x20\x61\ +\x6e\x67\x6c\x65\x73\x20\x6f\x66\x20\x65\x61\x63\x68\x20\x61\x78\ +\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x4c\x00\x4c\x00\x61\x00\x20\x00\x74\x00\x61\x00\x69\x00\x6c\x00\ +\x6c\x00\x65\x00\x20\x00\x64\x00\x27\x00\x61\x00\x66\x00\x66\x00\ +\x69\x00\x63\x00\x68\x00\x61\x00\x67\x00\x65\x00\x20\x00\x64\x00\ +\x75\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x63\x00\x6f\x00\x75\x00\x70\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x26\x54\x68\x65\x20\x64\x69\x73\x70\x6c\ +\x61\x79\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xb0\x00\x4c\x00\x65\ +\x00\x73\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\xe9\x00\x72\x00\x6f\ +\x00\x73\x00\x20\x00\x64\x00\x27\x00\x6f\x00\x72\x00\x64\x00\x72\ +\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\xe9\ +\x00\x6c\x00\xe9\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\ +\x00\xe0\x00\x20\x00\x65\x00\x78\x00\x63\x00\x6c\x00\x75\x00\x72\ +\x00\x65\x00\x20\x00\x71\x00\x75\x00\x61\x00\x6e\x00\x64\x00\x20\ +\x00\x63\x00\x65\x00\x74\x00\x74\x00\x65\x00\x20\x00\x73\x00\x74\ +\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\ +\x00\x65\x00\x73\x00\x74\x00\x20\x00\x62\x00\x61\x00\x73\x00\xe9\ +\x00\x65\x00\x20\x00\x73\x00\x75\x00\x72\x00\x20\x00\x64\x00\x65\ +\x00\x73\x00\x20\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x43\x54\x68\x65\x20\x65\x6c\x65\x6d\x65\x6e\ +\x74\x20\x6e\x75\x6d\x62\x65\x72\x73\x20\x74\x6f\x20\x65\x78\x63\ +\x6c\x75\x64\x65\x20\x77\x68\x65\x6e\x20\x74\x68\x69\x73\x20\x73\ +\x74\x72\x75\x63\x74\x75\x72\x65\x20\x69\x73\x20\x62\x61\x73\x65\ +\x64\x20\x6f\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\xac\x00\x4c\x00\x65\x00\x20\x00\x6e\ +\x00\x75\x00\x6d\x00\xe9\x00\x72\x00\x6f\x00\x20\x00\x64\x00\x27\ +\x00\x6f\x00\x72\x00\x64\x00\x72\x00\x65\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x27\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x74\x00\x20\x00\x64\x00\x65\x00\x20\x00\x62\ +\x00\x61\x00\x73\x00\x65\x00\x20\x00\x75\x00\x74\x00\x69\x00\x6c\ +\x00\x69\x00\x73\x00\xe9\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x75\ +\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\ +\x00\x75\x00\x69\x00\x72\x00\x65\x00\x20\x00\x63\x00\x65\x00\x74\ +\x00\x74\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x69\x00\x74\x00\x75\ +\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3a\x54\x68\ +\x65\x20\x66\x61\x63\x65\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\ +\x20\x74\x68\x65\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x62\x75\x69\x6c\x64\x20\x74\ +\x68\x69\x73\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x2e\x00\x4c\x00\x61\x00\x20\x00\x68\x00\ +\x61\x00\x75\x00\x74\x00\x65\x00\x75\x00\x72\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x63\x00\x65\x00\x74\x00\x20\x00\xe9\x00\x74\x00\ +\x61\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x54\ +\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\x6f\x66\x20\x74\x68\x69\ +\x73\x20\x66\x6c\x6f\x6f\x72\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\xbc\x00\x4c\x00\x61\x00\x20\x00\x68\x00\x61\ +\x00\x75\x00\x74\x00\x65\x00\x75\x00\x72\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x63\x00\x65\x00\x20\x00\x6d\x00\x75\x00\x72\x00\x2e\ +\x00\x20\x00\x4d\x00\x65\x00\x74\x00\x74\x00\x72\x00\x65\x00\x20\ +\x00\x30\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x61\ +\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x71\ +\x00\x75\x00\x65\x00\x2e\x00\x20\x00\x50\x00\x61\x00\x73\x00\x20\ +\x00\x75\x00\x74\x00\x69\x00\x6c\x00\x69\x00\x73\x00\xe9\x00\x73\ +\x00\x20\x00\x73\x00\x69\x00\x20\x00\x63\x00\x65\x00\x20\x00\x6d\ +\x00\x75\x00\x72\x00\x20\x00\x65\x00\x73\x00\x74\x00\x20\x00\x62\ +\x00\x61\x00\x73\x00\xe9\x00\x20\x00\x73\x00\x75\x00\x72\x00\x20\ +\x00\x75\x00\x6e\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x58\x54\x68\x65\x20\ +\x68\x65\x69\x67\x68\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\ +\x61\x6c\x6c\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\x20\ +\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x2e\x20\x4e\x6f\x74\x20\x75\ +\x73\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\ +\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x73\ +\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x9c\x00\x4c\x00\x61\x00\x20\x00\x68\x00\x61\x00\x75\x00\ +\x74\x00\x65\x00\x75\x00\x72\x00\x20\x00\x6f\x00\x75\x00\x20\x00\ +\x70\x00\x72\x00\x6f\x00\x66\x00\x6f\x00\x6e\x00\x64\x00\x65\x00\ +\x75\x00\x72\x00\x20\x00\x64\x00\x27\x00\x65\x00\x78\x00\x74\x00\ +\x72\x00\x75\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x63\x00\x65\x00\x74\x00\x20\x00\xe9\x00\x6c\x00\ +\xe9\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x20\x00\x4d\x00\ +\x65\x00\x74\x00\x74\x00\x72\x00\x65\x00\x20\x00\x30\x00\x20\x00\ +\x70\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\ +\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x71\x00\x75\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x43\x54\x68\x65\x20\x68\x65\x69\ +\x67\x68\x74\x20\x6f\x72\x20\x65\x78\x74\x72\x75\x73\x69\x6f\x6e\ +\x20\x64\x65\x70\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\ +\x6c\x65\x6d\x65\x6e\x74\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\ +\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3c\x00\x4c\x00\x65\x00\ +\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x76\x00\ +\x61\x00\x6c\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x65\x00\x6e\x00\ +\x74\x00\x72\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\ +\x61\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1a\x54\x68\x65\x20\x69\x6e\x74\x65\x72\x76\x61\x6c\x73\x20\x62\ +\x65\x74\x77\x65\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x4c\x00\x61\x00\x20\ +\x00\x6c\x00\x6f\x00\x6e\x00\x67\x00\x75\x00\x65\x00\x75\x00\x72\ +\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x61\x00\x78\x00\x65\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x68\x65\x20\ +\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\ +\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x7c\x00\x4c\x00\x61\x00\x20\x00\x6c\x00\x6f\x00\x6e\x00\x67\x00\ +\x75\x00\x65\x00\x75\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x63\x00\x65\x00\x74\x00\x20\x00\xe9\x00\x6c\x00\xe9\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x2c\x00\x20\x00\x73\x00\x69\x00\x20\x00\ +\x69\x00\x6c\x00\x20\x00\x6e\x00\x27\x00\x65\x00\x73\x00\x74\x00\ +\x20\x00\x70\x00\x61\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\ +\xe9\x00\x20\x00\x73\x00\x75\x00\x72\x00\x20\x00\x75\x00\x6e\x00\ +\x20\x00\x70\x00\x72\x00\x6f\x00\x66\x00\x69\x00\x6c\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x35\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\ +\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\ +\x74\x2c\x20\x69\x66\x20\x6e\x6f\x74\x20\x62\x61\x73\x65\x64\x20\ +\x6f\x6e\x20\x61\x20\x70\x72\x6f\x66\x69\x6c\x65\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xae\x00\x4c\x00\x61\x00\ +\x20\x00\x64\x00\x69\x00\x72\x00\x65\x00\x63\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x00\x20\x00\x64\x00\x27\x00\x65\x00\x78\x00\x74\x00\ +\x72\x00\x75\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6e\x00\ +\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x65\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x63\x00\x65\x00\x74\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x20\x00\x28\x00\x6d\x00\x65\x00\x74\x00\ +\x74\x00\x72\x00\x65\x00\x20\x00\x28\x00\x30\x00\x2c\x00\x30\x00\ +\x2c\x00\x30\x00\x29\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\x00\ +\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x65\x00\ +\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\ +\x69\x00\x71\x00\x75\x00\x65\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x51\x54\x68\x65\x20\x6e\x6f\x72\x6d\x61\x6c\x20\x65\x78\ +\x74\x72\x75\x73\x69\x6f\x6e\x20\x64\x69\x72\x65\x63\x74\x69\x6f\ +\x6e\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x28\x6b\x65\x65\x70\x20\x28\x30\x2c\x30\x2c\x30\x29\x20\x66\ +\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x20\x6e\x6f\x72\ +\x6d\x61\x6c\x29\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x30\x00\x4c\x00\x65\x00\x20\x00\x73\x00\x74\x00\x79\x00\ +\x6c\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6e\x00\x75\x00\ +\x6d\x00\xe9\x00\x72\x00\x6f\x00\x74\x00\x61\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\ +\x20\x6e\x75\x6d\x65\x72\x61\x74\x69\x6f\x6e\x20\x73\x74\x79\x6c\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xd4\ +\x00\x4c\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x74\x00\x73\x00\x20\x00\x71\x00\x75\x00\x69\x00\x20\x00\x64\ +\x00\x6f\x00\x69\x00\x76\x00\x65\x00\x6e\x00\x74\x00\x20\x00\xea\ +\x00\x74\x00\x72\x00\x65\x00\x20\x00\x70\x00\x72\x00\x69\x00\x73\ +\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x74\x00\x65\x00\x20\x00\x70\x00\x61\x00\x72\x00\x20\x00\x63\ +\x00\x65\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x75\x00\x70\x00\x65\x00\x2e\ +\x00\x20\x00\x56\x00\x69\x00\x64\x00\x65\x00\x20\x00\x73\x00\x69\ +\x00\x67\x00\x6e\x00\x69\x00\x66\x00\x69\x00\x65\x00\x20\x00\x74\ +\x00\x6f\x00\x75\x00\x73\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x20\x00\x64\ +\x00\x75\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\ +\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\x54\x68\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x74\x68\x61\x74\x20\x6d\ +\x75\x73\x74\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\ +\x64\x20\x62\x79\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\ +\x6e\x20\x70\x6c\x61\x6e\x65\x2e\x20\x45\x6d\x70\x74\x79\x20\x6d\ +\x65\x61\x6e\x73\x20\x61\x6c\x6c\x20\x64\x6f\x63\x75\x6d\x65\x6e\ +\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\ +\x00\x4c\x00\x61\x00\x20\x00\x74\x00\x61\x00\x69\x00\x6c\x00\x6c\ +\x00\x65\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x62\x00\x75\ +\x00\x6c\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x64\x00\x27\x00\x61\ +\x00\x78\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x54\x68\ +\x65\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\ +\x69\x73\x20\x62\x75\x62\x62\x6c\x65\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x7a\x00\x4c\x00\x61\x00\x20\x00\ +\x6c\x00\x61\x00\x72\x00\x67\x00\x65\x00\x75\x00\x72\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x63\x00\x65\x00\x74\x00\x20\x00\xe9\x00\ +\x6c\x00\xe9\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2c\x00\x20\x00\ +\x73\x00\x69\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x6e\x00\x27\x00\ +\x65\x00\x73\x00\x74\x00\x20\x00\x70\x00\x61\x00\x73\x00\x20\x00\ +\x62\x00\x61\x00\x73\x00\xe9\x00\x20\x00\x73\x00\x75\x00\x72\x00\ +\x20\x00\x75\x00\x6e\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x66\x00\ +\x69\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x54\x68\x65\ +\x20\x77\x69\x64\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\ +\x6c\x65\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\x6e\x6f\x74\x20\x62\ +\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\x72\x6f\x66\x69\x6c\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x84\ +\x00\x4c\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x72\x00\x67\x00\x65\ +\x00\x75\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x65\ +\x00\x20\x00\x6d\x00\x75\x00\x72\x00\x2e\x00\x20\x00\x50\x00\x61\ +\x00\x73\x00\x20\x00\x75\x00\x74\x00\x69\x00\x6c\x00\x69\x00\x73\ +\x00\xe9\x00\x65\x00\x20\x00\x73\x00\x69\x00\x20\x00\x63\x00\x65\ +\x00\x20\x00\x6d\x00\x75\x00\x72\x00\x20\x00\x65\x00\x73\x00\x74\ +\x00\x20\x00\x62\x00\x61\x00\x73\x00\xe9\x00\x20\x00\x73\x00\x75\ +\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x65\x00\x20\x00\x66\x00\x61\ +\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x40\x54\x68\ +\x65\x20\x77\x69\x64\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x77\x61\x6c\x6c\x2e\x20\x4e\x6f\x74\x20\x75\x73\x65\x64\x20\x69\ +\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\ +\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x66\x61\x63\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\xc9\x00\ +\x70\x00\x61\x00\x69\x00\x73\x00\x73\x00\x65\x00\x75\x00\x72\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\x68\x69\x63\x6b\x6e\x65\ +\x73\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x4c\x00\x43\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x69\x00\x6c\x00\ +\x6c\x00\x61\x00\x67\x00\x65\x00\x20\x00\x6e\x00\x27\x00\x65\x00\ +\x73\x00\x74\x00\x20\x00\x70\x00\x61\x00\x73\x00\x20\x00\x75\x00\ +\x6e\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x65\x00\ +\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1d\x54\x68\x69\x73\x20\x6d\x65\x73\x68\ +\x20\x69\x73\x20\x61\x6e\x20\x69\x6e\x76\x61\x6c\x69\x64\x20\x73\ +\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x08\x00\x54\x00\x79\x00\x70\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x04\x54\x79\x70\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x24\x00\x43\x00\x6f\x00\x6e\x00\x76\ +\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0f\x54\x79\x70\x65\x20\x63\x6f\x6e\x76\x65\ +\x72\x73\x69\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x3e\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x73\ +\x00\x69\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x63\x00\x72\x00\xe9\x00\x65\x00\x72\x00\x20\x00\x75\x00\x6e\ +\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x69\x00\x74\x00\x75\x00\x72\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x55\x6e\x61\x62\ +\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x72\ +\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x40\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x73\x00\x69\ +\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\ +\x00\x72\x00\xe9\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x65\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x61\x00\x6e\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x55\x6e\x61\x62\ +\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\x20\x63\x6f\x6d\ +\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x18\x00\x44\x00\xe9\x00\x67\x00\x72\x00\x6f\x00\ +\x75\x00\x70\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x55\x6e\x67\x72\x6f\x75\x70\x69\x6e\ +\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\ +\x00\x56\x00\x75\x00\x65\x00\x20\x00\x64\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x07\x56\x69\x65\x77\x20\x6f\x66\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x06\x00\x4d\x00\x75\ +\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\x6c\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x00\ +\x4f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x6d\x00\x75\x00\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0c\x57\x61\x6c\x6c\x20\x6f\x70\x74\x69\x6f\x6e\ +\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\ +\x00\x54\x00\x72\x00\x61\x00\x63\x00\x65\x00\x44\x00\x75\x00\x4d\ +\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x57\x61\ +\x6c\x6c\x54\x72\x61\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x0e\x00\x4c\x00\x61\x00\x72\x00\x67\x00\x65\ +\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x57\x69\ +\x64\x74\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0e\x00\x46\x00\x65\x00\x6e\x00\xea\x00\x74\x00\x72\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\ +\x46\x00\x69\x00\x6c\x00\x61\x00\x69\x00\x72\x00\x65\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x05\x57\x69\x72\x65\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x44\x00\ +\xe9\x00\x63\x00\x61\x00\x6c\x00\x61\x00\x67\x00\x65\x00\x20\x00\ +\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x5a\x20\x6f\x66\x66\ +\x73\x65\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x48\x00\x66\x00\x65\x00\x72\x00\x6d\x00\x65\x00\x74\x00\x75\ +\x00\x72\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x27\ +\x00\xe9\x00\x64\x00\x69\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x27\x00\x65\x00\x73\x00\x71\ +\x00\x75\x00\x69\x00\x73\x00\x73\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x13\x63\x6c\x6f\x73\x69\x6e\x67\x20\x53\x6b\x65\x74\ +\x63\x68\x20\x65\x64\x69\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x38\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x69\ +\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x73\ +\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x65\x00\x20\x00\x6e\x00\x6f\ +\x00\x6e\x00\x20\x00\x66\x00\x65\x00\x72\x00\x6d\x00\xe9\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1b\x63\x6f\x6e\x74\x61\x69\x6e\x73\ +\x20\x61\x20\x6e\x6f\x6e\x2d\x63\x6c\x6f\x73\x65\x64\x20\x73\x6f\ +\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x6a\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x65\x00\x6e\ +\x00\x74\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x66\x00\x61\ +\x00\x63\x00\x65\x00\x73\x00\x20\x00\x71\x00\x75\x00\x69\x00\x20\ +\x00\x6e\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x20\ +\x00\x70\x00\x61\x00\x73\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\ +\x00\x69\x00\x65\x00\x20\x00\x64\x00\x27\x00\x75\x00\x6e\x00\x20\ +\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x2d\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x66\ +\x61\x63\x65\x73\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\x6e\x6f\ +\x74\x20\x70\x61\x72\x74\x20\x6f\x66\x20\x61\x6e\x79\x20\x73\x6f\ +\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x30\x00\x6e\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\ +\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x61\x00\x75\x00\x63\ +\x00\x75\x00\x6e\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x64\x6f\x65\x73\ +\x6e\x27\x74\x20\x63\x6f\x6e\x74\x61\x69\x6e\x20\x61\x6e\x79\x20\ +\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x4c\x00\x4c\x00\x65\x00\x20\x00\x66\x00\x69\x00\x63\ +\x00\x68\x00\x69\x00\x65\x00\x72\x00\x20\x00\x25\x00\x73\x00\x20\ +\x00\x61\x00\x20\x00\xe9\x00\x74\x00\xe9\x00\x20\x00\x63\x00\x6f\ +\x00\x72\x00\x72\x00\x65\x00\x63\x00\x74\x00\x65\x00\x6d\x00\x65\ +\x00\x6e\x00\x74\x00\x20\x00\x63\x00\x72\x00\xe9\x00\xe9\x00\x2e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x66\x69\x6c\x65\x20\x25\ +\x73\x20\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x63\ +\x72\x65\x61\x74\x65\x64\x2e\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x1e\x00\x6e\x00\x27\x00\x65\x00\x73\x00\x74\ +\x00\x20\x00\x70\x00\x61\x00\x73\x00\x20\x00\x66\x00\x65\x00\x72\ +\x00\x6d\x00\xe9\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x69\x73\ +\x20\x6e\x6f\x74\x20\x63\x6c\x6f\x73\x65\x64\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x20\x00\x6e\x00\x27\x00\x65\ +\x00\x73\x00\x74\x00\x20\x00\x70\x00\x61\x00\x73\x00\x20\x00\x76\ +\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x69\x73\x20\x6e\x6f\x74\x20\x76\x61\x6c\x69\x64\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x82\x00\ +\x70\x00\x79\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\ +\x61\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x72\x00\x6f\x00\x75\x00\ +\x76\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x2c\x00\x20\x00\x6c\x00\ +\x65\x00\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x00\x20\x00\x61\x00\x75\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x6d\x00\x61\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\ +\x61\x00\x64\x00\x61\x00\x20\x00\x65\x00\x73\x00\x74\x00\x20\x00\ +\x64\x00\xe9\x00\x73\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\ +\xe9\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x70\x79\x63\x6f\x6c\ +\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\ +\x6e\x6f\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\x6f\ +\x72\x74\x2e\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x9e\x00\x4c\x00\x65\x00\x20\x00\x73\x00\x75\x00\x70\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x6c\x00\x27\x00\x65\x00\x73\x00\x71\x00\x75\x00\x69\x00\x73\x00\ +\x73\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x62\x00\x61\x00\ +\x73\x00\x65\x00\x20\x00\x61\x00\x20\x00\xe9\x00\x74\x00\xe9\x00\ +\x20\x00\x72\x00\x65\x00\x74\x00\x69\x00\x72\x00\xe9\x00\x20\x00\ +\x70\x00\x6f\x00\x75\x00\x72\x00\x20\x00\xe9\x00\x76\x00\x69\x00\ +\x74\x00\x65\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x65\x00\x20\x00\ +\x72\x00\xe9\x00\x66\x00\xe9\x00\x72\x00\x65\x00\x6e\x00\x63\x00\ +\x65\x00\x20\x00\x63\x00\x72\x00\x6f\x00\x69\x00\x73\x00\xe9\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x72\x65\x6d\x6f\x76\ +\x69\x6e\x67\x20\x73\x6b\x65\x74\x63\x68\x20\x73\x75\x70\x70\x6f\ +\x72\x74\x20\x74\x6f\x20\x61\x76\x6f\x69\x64\x20\x63\x72\x6f\x73\ +\x73\x2d\x72\x65\x66\x65\x72\x65\x6e\x63\x69\x6e\x67\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x65\x00\x6e\ +\x00\x72\x00\x65\x00\x67\x00\x69\x00\x73\x00\x74\x00\x72\x00\xe9\ +\x00\x20\x00\x61\x00\x76\x00\x65\x00\x63\x00\x20\x00\x73\x00\x75\ +\x00\x63\x00\x63\x00\xe8\x00\x73\x00\x20\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x15\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\ +\x20\x77\x72\x69\x74\x74\x65\x6e\x20\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x6c\x00\x65\x00\x73\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x61\x00\x6e\ +\x00\x74\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x65\ +\x00\x74\x00\x74\x00\x65\x00\x20\x00\x66\x00\x65\x00\x6e\x00\xea\ +\x00\x74\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\ +\x74\x68\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\ +\x66\x20\x74\x68\x69\x73\x20\x77\x69\x6e\x64\x6f\x77\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x41\x00\x6a\ +\x00\x6f\x00\x75\x00\x74\x00\x65\x00\x72\x00\x20\x00\x75\x00\x6e\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x61\ +\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x41\x64\ +\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x08\ +\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x64\x00\x41\ +\x00\x6a\x00\x6f\x00\x75\x00\x74\x00\x65\x00\x20\x00\x6c\x00\x65\ +\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x73\ +\x00\x61\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x73\x00\xe9\x00\x6c\ +\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\xe9\ +\x00\x73\x00\x20\x00\xe0\x00\x20\x00\x6c\x00\x27\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x74\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\ +\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x41\x64\x64\x73\ +\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\ +\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\ +\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x06\ +\x00\x41\x00\x78\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x41\x78\x69\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x41\x78\ +\x69\x73\x01\x03\x00\x00\x00\x2e\x00\x43\x00\x72\x00\xe9\x00\x65\ +\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x73\x00\x79\x00\x73\x00\x74\ +\x00\xe8\x00\x6d\x00\x65\x00\x20\x00\x64\x00\x27\x00\x61\x00\x78\ +\x00\x65\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x78\x69\x73\x20\ +\x73\x79\x73\x74\x65\x6d\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\ +\x5f\x41\x78\x69\x73\x01\x03\x00\x00\x00\x10\x00\x42\x00\xe2\x00\ +\x74\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\ +\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\ +\x03\x00\x00\x00\x70\x00\x43\x00\x72\x00\xe9\x00\x65\x00\x20\x00\ +\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x20\x00\x62\x00\xe2\x00\x74\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x20\x00\xe0\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\ +\x69\x00\x72\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x20\x00\x73\x00\xe9\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\ +\xe9\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x43\ +\x72\x65\x61\x74\x65\x73\x20\x61\x20\x62\x75\x69\x6c\x64\x69\x6e\ +\x67\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\ +\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x2e\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\ +\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x0e\x00\x43\x00\x65\ +\x00\x6c\x00\x6c\x00\x75\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x43\x65\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\ +\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x6c\x00\x43\x00\x72\ +\x00\xe9\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x74\x00\x20\x00\x63\x00\x65\x00\x6c\x00\x6c\ +\x00\x75\x00\x6c\x00\x65\x00\x20\x00\xe0\x00\x20\x00\x70\x00\x61\ +\x00\x72\x00\x74\x00\x69\x00\x72\x00\x20\x00\x64\x00\x65\x00\x73\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x20\ +\x00\x73\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x6e\x00\xe9\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x65\x6c\x6c\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\ +\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\ +\x01\x03\x00\x00\x00\x10\x00\x56\x00\xe9\x00\x72\x00\x69\x00\x66\ +\x00\x69\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x43\x68\x65\x63\x6b\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\ +\x68\x65\x63\x6b\x01\x03\x00\x00\x00\x72\x00\x56\x00\xe9\x00\x72\ +\x00\x69\x00\x66\x00\x69\x00\x65\x00\x20\x00\x73\x00\x69\x00\x20\ +\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x74\x00\x73\x00\x20\x00\x73\x00\xe9\x00\x6c\x00\x65\x00\x63\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x00\x73\x00\x20\ +\x00\x70\x00\x72\x00\xe9\x00\x73\x00\x65\x00\x6e\x00\x74\x00\x65\ +\x00\x6e\x00\x74\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x70\x00\x72\ +\x00\x6f\x00\x62\x00\x6c\x00\xe8\x00\x6d\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x28\x43\x68\x65\x63\x6b\x73\x20\x74\x68\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x66\x6f\x72\x20\x70\x72\x6f\x62\x6c\x65\x6d\x73\x07\x00\ +\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\x01\x03\x00\ +\x00\x00\x20\x00\x46\x00\x65\x00\x72\x00\x6d\x00\x65\x00\x72\x00\ +\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x74\x00\x72\x00\x6f\x00\ +\x75\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x6c\x6f\ +\x73\x65\x20\x68\x6f\x6c\x65\x73\x07\x00\x00\x00\x0f\x41\x72\x63\ +\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\x01\x03\x00\x00\ +\x00\x80\x00\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\ +\x00\x69\x00\x74\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x66\ +\x00\x6f\x00\x72\x00\x6d\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x75\ +\x00\x76\x00\x65\x00\x72\x00\x74\x00\x65\x00\x73\x00\x20\x00\x65\ +\x00\x6e\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x65\ +\x00\x73\x00\x2c\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x66\x00\x65\ +\x00\x72\x00\x6d\x00\x61\x00\x6e\x00\x74\x00\x20\x00\x6c\x00\x65\ +\x00\x75\x00\x72\x00\x73\x00\x20\x00\x74\x00\x72\x00\x6f\x00\x75\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x6c\x6f\x73\ +\x65\x73\x20\x68\x6f\x6c\x65\x73\x20\x69\x6e\x20\x6f\x70\x65\x6e\ +\x20\x73\x68\x61\x70\x65\x73\x2c\x20\x74\x75\x72\x6e\x69\x6e\x67\ +\x20\x74\x68\x65\x6d\x20\x73\x6f\x6c\x69\x64\x73\x07\x00\x00\x00\ +\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\ +\x01\x03\x00\x00\x00\x68\x00\x43\x00\x72\x00\xe9\x00\x65\x00\x20\ +\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\ +\x00\x20\x00\xe9\x00\x74\x00\x61\x00\x67\x00\x65\x00\x20\x00\xe0\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\x69\x00\x72\x00\x20\ +\x00\x64\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x74\x00\x73\x00\x20\x00\x73\x00\xe9\x00\x6c\x00\x65\x00\x63\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x20\x66\x6c\x6f\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\ +\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0a\x41\x72\ +\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x0a\x00\xc9\ +\x00\x74\x00\x61\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x0a\x41\x72\x63\x68\ +\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x26\x00\x4d\x00\x61\ +\x00\x69\x00\x6c\x00\x6c\x00\x61\x00\x67\x00\x65\x00\x20\x00\x76\ +\x00\x65\x00\x72\x00\x73\x00\x20\x00\x46\x00\x6f\x00\x72\x00\x6d\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\ +\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x10\x41\x72\ +\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\ +\x00\x00\x00\x60\x00\x54\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x66\ +\x00\x6f\x00\x72\x00\x6d\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x73\ +\x00\x20\x00\x6d\x00\x61\x00\x69\x00\x6c\x00\x6c\x00\x61\x00\x67\ +\x00\x65\x00\x73\x00\x20\x00\x73\x00\xe9\x00\x6c\x00\x65\x00\x63\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x00\x65\x00\x73\ +\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\ +\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x54\x75\ +\x72\x6e\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\ +\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x50\x61\x72\x74\x20\x53\x68\ +\x61\x70\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x10\ +\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\ +\x01\x03\x00\x00\x00\x2c\x00\x45\x00\x6e\x00\x6c\x00\x65\x00\x76\ +\x00\x65\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x61\x00\x6e\x00\x74\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\x6d\x6f\ +\x76\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\ +\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\ +\x00\xb0\x00\x52\x00\x65\x00\x74\x00\x69\x00\x72\x00\x65\x00\x72\ +\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x73\x00\x61\x00\x6e\x00\x74\x00\x73\x00\x20\ +\x00\x73\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x6e\x00\xe9\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x73\x00\x20\x00\x70\x00\x61\ +\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x2c\x00\x20\x00\x6f\ +\x00\x75\x00\x20\x00\x63\x00\x72\x00\xe9\x00\x65\x00\x72\x00\x20\ +\x00\x75\x00\x6e\x00\x20\x00\x74\x00\x72\x00\x6f\x00\x75\x00\x20\ +\x00\x64\x00\x61\x00\x6e\x00\x73\x00\x20\x00\x75\x00\x6e\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x61\x00\x6e\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x65\x6d\x6f\ +\x76\x65\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\ +\x74\x68\x65\x69\x72\x20\x70\x61\x72\x65\x6e\x74\x73\x2c\x20\x6f\ +\x72\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x68\x6f\x6c\x65\x20\ +\x69\x6e\x20\x61\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\ +\x00\x00\x00\x24\x00\x53\x00\x75\x00\x70\x00\x70\x00\x72\x00\x69\ +\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x66\ +\x00\x6f\x00\x72\x00\x6d\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x16\x52\x65\x6d\x6f\x76\x65\x20\x53\x68\x61\x70\x65\x20\x66\ +\x72\x6f\x6d\x20\x41\x72\x63\x68\x07\x00\x00\x00\x10\x41\x72\x63\ +\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\ +\x00\x00\x60\x00\x53\x00\x75\x00\x70\x00\x70\x00\x72\x00\x69\x00\ +\x6d\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x66\x00\ +\x6f\x00\x72\x00\x6d\x00\x65\x00\x73\x00\x20\x00\x63\x00\x75\x00\ +\x62\x00\x69\x00\x71\x00\x75\x00\x65\x00\x73\x00\x20\x00\x64\x00\ +\x65\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\ +\x73\x00\x61\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x41\x00\x72\x00\ +\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x52\x65\x6d\ +\x6f\x76\x65\x73\x20\x63\x75\x62\x69\x63\x20\x73\x68\x61\x70\x65\ +\x73\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x20\x63\x6f\x6d\x70\ +\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\ +\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\ +\x62\x00\x43\x00\x72\x00\xe9\x00\x65\x00\x20\x00\x75\x00\x6e\x00\ +\x65\x00\x20\x00\x74\x00\x6f\x00\x69\x00\x74\x00\x75\x00\x72\x00\ +\x65\x00\x20\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\ +\x69\x00\x72\x00\x20\x00\x64\x00\x27\x00\x75\x00\x6e\x00\x65\x00\ +\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x73\x00\xe9\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\ +\xe9\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x39\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x72\x6f\x6f\x66\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x66\x61\x63\x65\x20\x6f\x66\x20\x61\x6e\x20\ +\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\ +\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x0e\x00\x54\x00\x6f\x00\x69\ +\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\ +\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x6c\x00\x43\x00\x72\x00\xe9\ +\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\ +\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x75\ +\x00\x70\x00\x65\x00\x20\x00\xe0\x00\x20\x00\x70\x00\x61\x00\x72\ +\x00\x74\x00\x69\x00\x72\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x20\x00\x73\ +\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x00\x6e\x00\xe9\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3e\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x65\x63\x74\x69\x6f\ +\x6e\x20\x70\x6c\x61\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\ +\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ +\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\ +\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x1e\x00\x50\x00\x6c\x00\x61\ +\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\x73\x00\x65\x00\x63\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\ +\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\ +\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x4e\x00\x53\x00\xe9\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\ +\x65\x00\x72\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x6d\x00\ +\x61\x00\x69\x00\x6c\x00\x6c\x00\x61\x00\x67\x00\x65\x00\x73\x00\ +\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\ +\x69\x00\x66\x00\x6f\x00\x6c\x00\x64\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\ +\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\ +\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\ +\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\ +\xa6\x00\x53\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x75\x00\ +\x73\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x6d\x00\x61\x00\ +\x69\x00\x6c\x00\x6c\x00\x61\x00\x67\x00\x65\x00\x73\x00\x20\x00\ +\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\ +\x66\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x64\x00\x75\x00\x20\x00\ +\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x20\x00\x6f\x00\x75\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\ +\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x65\x00\x73\x00\x20\x00\ +\x73\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x6e\x00\xe9\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x4d\x53\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6e\x6f\x6e\ +\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\ +\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\ +\x6e\x74\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x67\x72\x6f\x75\x70\x73\x07\x00\ +\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\ +\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\ +\x00\x68\x00\x43\x00\x72\x00\xe9\x00\x65\x00\x20\x00\x75\x00\x6e\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x20\x00\x73\ +\x00\x69\x00\x74\x00\x65\x00\x20\x00\xe0\x00\x20\x00\x70\x00\x61\ +\x00\x72\x00\x74\x00\x69\x00\x72\x00\x20\x00\x64\x00\x65\x00\x73\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x20\ +\x00\x73\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x6e\x00\xe9\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x69\ +\x74\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\ +\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\ +\x69\x74\x65\x01\x03\x00\x00\x00\x08\x00\x53\x00\x69\x00\x74\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\ +\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\ +\x00\x00\x24\x00\x44\x00\x69\x00\x76\x00\x69\x00\x73\x00\x65\x00\ +\x72\x00\x20\x00\x75\x00\x6e\x00\x65\x00\x20\x00\x6d\x00\x61\x00\ +\x69\x00\x6c\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x0e\ +\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\ +\x00\x00\x00\x7c\x00\x44\x00\x69\x00\x76\x00\x69\x00\x73\x00\x65\ +\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x6d\x00\x61\x00\x69\ +\x00\x6c\x00\x6c\x00\x61\x00\x67\x00\x65\x00\x73\x00\x20\x00\x73\ +\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x00\x6e\x00\xe9\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x61\x00\x6e\x00\x74\ +\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x64\x00\xe9\x00\x70\ +\x00\x65\x00\x6e\x00\x64\x00\x61\x00\x6e\x00\x74\x00\x65\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x53\x70\x6c\x69\x74\x73\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\ +\x20\x69\x6e\x74\x6f\x20\x69\x6e\x64\x65\x70\x65\x6e\x64\x65\x6e\ +\x74\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\ +\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\ +\x03\x00\x00\x00\xce\x00\x43\x00\x72\x00\xe9\x00\x65\x00\x20\x00\ +\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\ +\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\xe0\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\x74\x00\x69\x00\x72\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x7a\x00\xe9\x00\x72\x00\x6f\x00\x20\x00\x6f\x00\ +\x75\x00\x20\x00\x64\x00\x27\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x74\x00\x20\x00\x73\x00\xe9\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x00\ +\x20\x00\x28\x00\x65\x00\x73\x00\x71\x00\x75\x00\x69\x00\x73\x00\ +\x73\x00\x65\x00\x2c\x00\x20\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\ +\x65\x00\x2c\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\ +\x6f\x00\x75\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\ +\x65\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5f\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\ +\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\ +\x73\x6b\x65\x74\x63\x68\x2c\x20\x77\x69\x72\x65\x2c\x20\x66\x61\ +\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\ +\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\ +\x03\x00\x00\x00\x12\x00\x53\x00\x74\x00\x72\x00\x75\x00\x63\x00\ +\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x0e\x41\ +\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\ +\x00\x00\xba\x00\x43\x00\x72\x00\xe9\x00\x65\x00\x20\x00\x75\x00\ +\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x20\x00\ +\x6d\x00\x75\x00\x72\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\ +\x69\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x7a\x00\xe9\x00\ +\x72\x00\x6f\x00\x20\x00\x6f\x00\x75\x00\x20\x00\x64\x00\x27\x00\ +\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x20\x00\x73\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x00\x6e\x00\xe9\x00\x20\x00\x28\x00\x75\x00\x6e\x00\ +\x65\x00\x20\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\x65\x00\x2c\x00\ +\x20\x00\x75\x00\x6e\x00\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\ +\x65\x00\x20\x00\x6f\x00\x75\x00\x20\x00\x75\x00\x6e\x00\x20\x00\ +\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x65\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x52\x43\x72\x65\x61\x74\x65\x73\x20\x61\ +\x20\x77\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\ +\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\ +\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\ +\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x09\x41\x72\ +\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\x06\x00\x4d\x00\ +\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\ +\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\ +\x03\x00\x00\x00\xa2\x00\x43\x00\x72\x00\xe9\x00\x65\x00\x20\x00\ +\x75\x00\x6e\x00\x65\x00\x20\x00\x66\x00\x65\x00\x6e\x00\xea\x00\ +\x74\x00\x72\x00\x65\x00\x20\x00\x61\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x74\x00\x69\x00\x72\x00\x20\x00\x64\x00\x27\x00\x75\x00\ +\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x20\x00\ +\x73\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x6e\x00\xe9\x00\x20\x00\x28\x00\x66\x00\x69\x00\x6c\x00\ +\x61\x00\x69\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x72\x00\x65\x00\ +\x63\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\ +\x6f\x00\x75\x00\x20\x00\x65\x00\x73\x00\x71\x00\x75\x00\x69\x00\ +\x73\x00\x73\x00\x65\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x4a\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\x69\x6e\x64\x6f\ +\x77\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x61\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x28\x77\x69\x72\x65\x2c\x20\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\ +\x20\x6f\x72\x20\x73\x6b\x65\x74\x63\x68\x29\x07\x00\x00\x00\x0b\ +\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ +\x0e\x00\x46\x00\x65\x00\x6e\x00\xea\x00\x74\x00\x72\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x07\ +\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\ +\x03\x00\x00\x00\x10\x00\x52\x00\x65\x00\x6e\x00\x64\x00\x75\x00\ +\x20\x00\x32\x00\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x32\ +\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x5c\x00\x43\x00\x72\x00\xe9\x00\x65\x00\x20\x00\x64\x00\x65\ +\x00\x73\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x65\ +\x00\x73\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x63\ +\x00\x68\x00\x61\x00\x71\x00\x75\x00\x65\x00\x20\x00\x74\x00\x79\ +\x00\x70\x00\x65\x00\x20\x00\x64\x00\x27\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x74\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x28\x43\x72\x65\x61\x74\x65\x73\x20\ +\x67\x72\x6f\x75\x70\x73\x20\x66\x6f\x72\x20\x65\x61\x63\x68\x20\ +\x41\x72\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x54\x00\x50\x00\x72\x00\x6f\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\ +\x27\x00\xe9\x00\x70\x00\x61\x00\x69\x00\x73\x00\x73\x00\x65\x00\ +\x75\x00\x72\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x6c\x00\ +\x69\x00\x67\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x65\x00\x6e\x00\ +\x20\x00\x63\x00\x6f\x00\x75\x00\x70\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1e\x43\x75\x74\x20\x61\x72\x65\x61\x73\x20\x6c\ +\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\x73\x20\x72\x61\ +\x74\x69\x6f\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x42\x00\x43\x00\x6f\x00\x75\ +\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x70\x00\x61\x00\x72\ +\x00\x20\x00\x64\x00\xe9\x00\x66\x00\x61\x00\x75\x00\x74\x00\x20\ +\x00\x64\x00\x65\x00\x73\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\ +\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1c\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\ +\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x74\x72\x75\x63\x74\x75\x72\ +\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x36\x00\x43\x00\x6f\x00\x75\x00\ +\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x70\x00\x61\x00\x72\x00\ +\x20\x00\x64\x00\xe9\x00\x66\x00\x61\x00\x75\x00\x74\x00\x20\x00\ +\x64\x00\x65\x00\x73\x00\x20\x00\x6d\x00\x75\x00\x72\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x17\x44\x65\x66\x61\x75\x6c\x74\ +\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\x61\x6c\x6c\x73\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x3e\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\ +\x65\x00\x75\x00\x72\x00\x20\x00\x70\x00\x61\x00\x72\x00\x20\x00\ +\x64\x00\xe9\x00\x66\x00\x61\x00\x75\x00\x74\x00\x20\x00\x64\x00\ +\x65\x00\x73\x00\x20\x00\x66\x00\x65\x00\x6e\x00\xea\x00\x74\x00\ +\x72\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x44\ +\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ +\x20\x77\x69\x6e\x64\x6f\x77\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x30\x00\ +\x50\x00\x61\x00\x72\x00\x61\x00\x6d\x00\xe8\x00\x74\x00\x72\x00\ +\x65\x00\x73\x00\x20\x00\x67\x00\xe9\x00\x6e\x00\xe9\x00\x72\x00\ +\x61\x00\x75\x00\x78\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\ +\x20\x41\x72\x63\x68\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x26\x00\x50\x00\x61\x00\x72\x00\x61\x00\x6d\x00\ +\xe8\x00\x74\x00\x72\x00\x65\x00\x73\x00\x20\x00\x67\x00\xe9\x00\ +\x6e\x00\xe9\x00\x72\x00\x61\x00\x75\x00\x78\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\ +\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x47\x00\x72\ +\x00\x6f\x00\x75\x00\x70\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x65\ +\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x73\ +\x00\x61\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x70\x00\x61\x00\x72\ +\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x19\x47\x72\x6f\x75\x70\x20\x63\x6f\x6d\x70\x6f\x6e\ +\x65\x6e\x74\x73\x20\x62\x79\x20\x74\x79\x70\x65\x73\x07\x00\x00\ +\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x1e\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\ +\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x49\x00\x46\ +\x00\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x49\x46\x43\x20\ +\x69\x6d\x70\x6f\x72\x74\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\xba\x00\x53\x00\ +\x69\x00\x20\x00\x63\x00\x6f\x00\x63\x00\x68\x00\xe9\x00\x2c\x00\ +\x20\x00\x6c\x00\x27\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x00\x61\x00\x74\x00\x65\x00\x75\x00\x72\x00\x20\x00\x49\x00\ +\x46\x00\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\ +\x65\x00\x6c\x00\x6c\x00\x20\x00\x73\x00\x65\x00\x72\x00\x61\x00\ +\x20\x00\x75\x00\x74\x00\x69\x00\x6c\x00\x69\x00\x73\x00\xe9\x00\ +\x2c\x00\x20\x00\x63\x00\x65\x00\x20\x00\x71\x00\x75\x00\x69\x00\ +\x20\x00\x70\x00\x65\x00\x72\x00\x6d\x00\x65\x00\x74\x00\x20\x00\ +\x64\x00\x27\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x70\x00\x6c\x00\x75\x00\x73\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x00\x73\x00\ +\x20\x00\x49\x00\x46\x00\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x5d\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\ +\x53\x68\x65\x6c\x6c\x20\x69\x6d\x70\x6f\x72\x74\x65\x72\x20\x77\ +\x69\x6c\x6c\x20\x62\x65\x20\x75\x73\x65\x64\x2c\x20\x61\x6c\x6c\ +\x6f\x77\x69\x6e\x67\x20\x74\x6f\x20\x69\x6d\x70\x6f\x72\x74\x20\ +\x6d\x6f\x72\x65\x20\x49\x46\x43\x20\x74\x79\x70\x65\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x6e\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x65\x00\x20\x00\x6d\x00\ +\x6f\x00\x62\x00\x69\x00\x6c\x00\x69\x00\x65\x00\x72\x00\x20\x00\ +\x28\x00\x63\x00\x65\x00\x63\x00\x69\x00\x20\x00\x70\x00\x65\x00\ +\x75\x00\x74\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x72\x00\ +\x65\x00\x20\x00\x6c\x00\x65\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\ +\xe8\x00\x6c\x00\x65\x00\x20\x00\x6c\x00\x6f\x00\x75\x00\x72\x00\ +\x64\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\x6d\x70\ +\x6f\x72\x74\x20\x66\x75\x72\x6e\x69\x74\x75\x72\x65\x20\x28\x63\ +\x61\x6e\x20\x6d\x61\x6b\x65\x20\x74\x68\x65\x20\x6d\x6f\x64\x65\ +\x6c\x20\x68\x65\x61\x76\x79\x29\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x72\x00\ +\x41\x00\x66\x00\x66\x00\x69\x00\x63\x00\x68\x00\x65\x00\x72\x00\ +\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x66\x00\ +\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\x00\xe9\x00\x62\x00\ +\x6f\x00\x67\x00\x61\x00\x67\x00\x65\x00\x20\x00\x70\x00\x65\x00\ +\x6e\x00\x64\x00\x61\x00\x6e\x00\x74\x00\x20\x00\x6c\x00\x65\x00\ +\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x75\x00\x20\x00\x32\x00\ +\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x53\x68\x6f\x77\x20\ +\x64\x65\x62\x75\x67\x20\x69\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\ +\x6e\x20\x64\x75\x72\x69\x6e\x67\x20\x32\x44\x20\x72\x65\x6e\x64\ +\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4e\x00\x4d\x00\x65\ +\x00\x73\x00\x73\x00\x61\x00\x67\x00\x65\x00\x73\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x64\x00\xe9\x00\x62\x00\x6f\x00\x67\x00\x61\ +\x00\x67\x00\x65\x00\x20\x00\x64\x00\x75\x00\x20\x00\x6d\x00\x6f\ +\x00\x74\x00\x65\x00\x75\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x75\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1c\x53\x68\x6f\x77\x20\x72\x65\x6e\x64\x65\x72\x65\ +\x72\x20\x64\x65\x62\x75\x67\x20\x6d\x65\x73\x73\x61\x67\x65\x73\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\xbc\x00\x53\x00\x70\x00\xe9\x00\x63\x00\ +\x69\x00\x66\x00\x69\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\ +\x62\x00\x69\x00\x65\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x66\x00\x6f\x00\x69\x00\x73\x00\x20\x00\x6c\x00\x27\x00\xe9\x00\ +\x70\x00\x61\x00\x69\x00\x73\x00\x73\x00\x65\x00\x75\x00\x72\x00\ +\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x67\x00\ +\x6e\x00\x65\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x76\x00\ +\x75\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x69\x00\x74\x00\x20\x00\ +\xea\x00\x74\x00\x72\x00\x65\x00\x20\x00\x61\x00\x70\x00\x70\x00\ +\x6c\x00\x69\x00\x71\x00\x75\x00\xe9\x00\x65\x00\x20\x00\x61\x00\ +\x75\x00\x78\x00\x20\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\x65\x00\ +\x73\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x75\x00\ +\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x53\x70\x65\ +\x63\x69\x66\x69\x65\x73\x20\x68\x6f\x77\x20\x6d\x61\x6e\x79\x20\ +\x74\x69\x6d\x65\x73\x20\x74\x68\x65\x20\x76\x69\x65\x77\x65\x64\ +\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\x73\x20\ +\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x70\x70\x6c\x69\x65\x64\x20\ +\x74\x6f\x20\x63\x75\x74\x20\x6c\x69\x6e\x65\x73\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x78\x00\x43\x00\x65\x00\x63\x00\x69\x00\x20\x00\x65\x00\ +\x73\x00\x74\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x63\x00\x6f\x00\ +\x75\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x20\x00\x64\x00\xe9\x00\x66\x00\x61\x00\x75\x00\x74\x00\ +\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x75\x00\ +\x76\x00\x65\x00\x61\x00\x75\x00\x78\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x73\x00\x20\x00\x53\x00\x74\x00\x72\x00\ +\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x33\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\ +\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\ +\x6f\x72\x20\x6e\x65\x77\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x6c\x00\ +\x43\x00\x65\x00\x63\x00\x69\x00\x20\x00\x65\x00\x73\x00\x74\x00\ +\x20\x00\x6c\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x75\x00\x6c\x00\ +\x65\x00\x75\x00\x72\x00\x20\x00\x70\x00\x61\x00\x72\x00\x20\x00\ +\x64\x00\xe9\x00\x66\x00\x61\x00\x75\x00\x74\x00\x20\x00\x64\x00\ +\x65\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x75\x00\x76\x00\x65\x00\ +\x61\x00\x75\x00\x78\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x74\x00\x73\x00\x20\x00\x4d\x00\x75\x00\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\ +\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\ +\x6f\x72\x20\x6e\x65\x77\x20\x57\x61\x6c\x6c\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x46\x00\x55\x00\x74\x00\x69\ +\x00\x6c\x00\x69\x00\x73\x00\x65\x00\x72\x00\x20\x00\x49\x00\x46\ +\x00\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\ +\x00\x6c\x00\x6c\x00\x20\x00\x73\x00\x69\x00\x20\x00\x64\x00\x69\ +\x00\x73\x00\x70\x00\x6f\x00\x6e\x00\x69\x00\x62\x00\x6c\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\x65\x20\x49\x46\ +\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\x69\x66\x20\x61\x76\ +\x61\x69\x6c\x61\x62\x6c\x65\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x26\ +\x00\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\x74\x00\x65\x00\x63\ +\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x26\x41\x72\x63\x68\x69\x74\x65\x63\x74\x75\x72\x65\x07\ +\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x26\ +\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x26\x44\x72\x61\x66\x74\x07\x00\x00\x00\x04\x61\ +\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x4f\x00\x75\x00\x74\x00\ +\x69\x00\x6c\x00\x73\x00\x20\x00\x64\x00\x27\x00\x61\x00\x72\x00\ +\x63\x00\x68\x00\x69\x00\x74\x00\x65\x00\x63\x00\x74\x00\x75\x00\ +\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x41\x72\x63\ +\x68\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\ +\x01\x03\x00\x00\x00\x20\x00\x4f\x00\x75\x00\x74\x00\x69\x00\x6c\ +\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x61\x00\x6c\ +\x00\x63\x00\x75\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\ +\x43\x61\x6c\x63\x75\x6c\x61\x74\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\ +\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x16\ +\x00\x55\x00\x74\x00\x69\x00\x6c\x00\x69\x00\x74\x00\x61\x00\x69\ +\x00\x72\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ +\x43\x6f\x6e\x74\x65\x78\x74\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\ +\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x4f\x00\x75\ +\x00\x74\x00\x69\x00\x6c\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\ +\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x6f\ +\x6e\x76\x65\x72\x73\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\x00\ +\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x38\x00\x4f\x00\ +\x75\x00\x74\x00\x69\x00\x6c\x00\x73\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\ +\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x44\x00\x72\x00\ +\x61\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x44\ +\x72\x61\x66\x74\x20\x6d\x6f\x64\x20\x74\x6f\x6f\x6c\x73\x07\x00\ +\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x4f\x00\ +\x75\x00\x74\x00\x69\x00\x6c\x00\x73\x00\x20\x00\x44\x00\x72\x00\ +\x61\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\ +\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\ +\x72\x63\x68\x01\x03\x00\x00\x00\x86\x00\x70\x00\x79\x00\x63\x00\ +\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x69\x00\ +\x6e\x00\x74\x00\x72\x00\x6f\x00\x75\x00\x76\x00\x61\x00\x62\x00\ +\x6c\x00\x65\x00\x2c\x00\x20\x00\x6c\x00\x65\x00\x20\x00\x73\x00\ +\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x61\x00\ +\x75\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\ +\x20\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\ +\x20\x00\x73\x00\x65\x00\x72\x00\x61\x00\x20\x00\x64\x00\xe9\x00\ +\x73\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\xe9\x00\x2e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x37\x70\x79\x63\x6f\x6c\x6c\x61\ +\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x63\x6f\ +\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x77\x69\ +\x6c\x6c\x20\x62\x65\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x2e\x0a\ +\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ +\x00\x00\x3d\x2f\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x04\xf8\x00\x00\x47\xa4\x00\x00\x00\x31\x00\x04\x8e\xc3\ +\x00\x00\x01\x3b\x00\x04\x8f\x03\x00\x00\x01\xea\x00\x04\x8f\x03\ +\x00\x00\x1f\x70\x00\x04\x9c\x2c\x00\x00\x20\x74\x00\x04\xbb\x04\ +\x00\x00\x06\x58\x00\x05\x48\x35\x00\x00\x0a\xe3\x00\x05\x67\xd5\ +\x00\x00\x0c\xa1\x00\x05\x96\x56\x00\x00\x0c\xe9\x00\x05\x96\x56\ +\x00\x00\x26\x7c\x00\x05\xa0\xa5\x00\x00\x0d\x0a\x00\x05\xa0\xa5\ +\x00\x00\x29\x17\x00\x05\xc0\x65\x00\x00\x19\x01\x00\x05\xd8\x2c\ +\x00\x00\x1a\x40\x00\x05\xd8\x2c\x00\x00\x2b\x5d\x00\x32\x23\xa5\ +\x00\x00\x36\x0c\x00\x39\xdf\x33\x00\x00\x2f\x79\x00\x48\x4e\x25\ +\x00\x00\x01\x19\x00\x49\xeb\x9b\x00\x00\x20\xfe\x00\x4b\x55\x33\ +\x00\x00\x30\x61\x00\x4d\x36\x62\x00\x00\x08\x89\x00\x4d\x36\x62\ +\x00\x00\x23\x1c\x00\x5d\xfb\xa8\x00\x00\x1a\xc0\x00\x5e\x08\xc3\ +\x00\x00\x1b\x05\x00\x61\xb0\x33\x00\x00\x13\x17\x00\x62\x9b\xa8\ +\x00\x00\x0d\x6b\x00\x62\x9b\xa8\x00\x00\x29\x3d\x00\x8a\x92\x57\ +\x00\x00\x00\x00\x00\xaa\x80\x25\x00\x00\x05\xb7\x00\xc9\x7b\xf3\ +\x00\x00\x0f\x8a\x00\xfb\x72\xf3\x00\x00\x2f\x27\x01\x19\x4e\x85\ +\x00\x00\x04\x99\x01\x55\x2b\xf5\x00\x00\x04\x36\x01\x79\x17\x94\ +\x00\x00\x1d\x2a\x01\x8e\x84\xa6\x00\x00\x0e\xc6\x01\xad\x7d\xe3\ +\x00\x00\x37\x27\x01\xaf\x41\x84\x00\x00\x1c\x54\x01\xf7\xa8\x83\ +\x00\x00\x35\x27\x02\x01\x7f\xd3\x00\x00\x0d\xbc\x02\x29\xb3\xc4\ +\x00\x00\x25\xb3\x02\x5a\x4a\x53\x00\x00\x12\x35\x02\x5f\xc9\x59\ +\x00\x00\x2a\xc1\x02\x66\x7f\x7e\x00\x00\x0b\x83\x02\x6a\x77\x99\ +\x00\x00\x31\xa9\x02\x80\x5f\x17\x00\x00\x1d\xcb\x02\x82\x88\x3a\ +\x00\x00\x03\x6e\x02\x85\x4f\xf5\x00\x00\x15\x4d\x02\x90\x40\x65\ +\x00\x00\x0a\xaf\x02\x90\x40\x65\x00\x00\x23\x44\x02\x94\x16\x35\ +\x00\x00\x0d\xf9\x02\xab\x87\xd4\x00\x00\x36\x3e\x02\xb8\xae\x74\ +\x00\x00\x24\x30\x02\xc3\x91\x93\x00\x00\x33\x0a\x02\xcd\x05\xa3\ +\x00\x00\x23\x84\x02\xdd\x14\x14\x00\x00\x24\x68\x03\x13\x15\x3e\ +\x00\x00\x09\x5b\x03\x1b\xda\x15\x00\x00\x1a\x8c\x03\x1d\xe8\xe3\ +\x00\x00\x2e\x22\x03\x29\x7a\x34\x00\x00\x00\xaf\x03\x2c\xe9\xb3\ +\x00\x00\x13\x52\x03\x92\x51\xe0\x00\x00\x0d\x2b\x03\xa2\xec\x23\ +\x00\x00\x1a\x5f\x03\xbe\xb0\x34\x00\x00\x19\x8e\x03\xce\x98\xe5\ +\x00\x00\x03\x26\x03\xd4\x22\x74\x00\x00\x1e\xd6\x04\x35\xfa\x55\ +\x00\x00\x0f\x3b\x04\xc3\x75\x44\x00\x00\x15\x86\x04\xdb\x21\x3e\ +\x00\x00\x28\xb2\x04\xeb\xfd\xf4\x00\x00\x08\xd0\x05\x14\x5b\x83\ +\x00\x00\x05\xdc\x05\x18\xda\xa3\x00\x00\x22\xb6\x05\x5f\x3d\x83\ +\x00\x00\x2e\xd1\x05\x8c\x46\xc5\x00\x00\x0c\xc6\x05\x90\xba\xe3\ +\x00\x00\x0c\x7d\x05\xc0\x56\xe3\x00\x00\x33\x8f\x05\xc7\xeb\xc7\ +\x00\x00\x32\x5b\x05\xe0\x4b\x67\x00\x00\x1a\xe2\x05\xe0\x4b\x67\ +\x00\x00\x2c\x7f\x05\xef\x78\x4a\x00\x00\x1d\x53\x06\x1f\x6f\xa4\ +\x00\x00\x1b\xf8\x06\x32\xe3\xe3\x00\x00\x37\x6d\x06\x5b\x01\x15\ +\x00\x00\x02\xf5\x06\x69\xd0\x04\x00\x00\x1b\x8e\x06\x9f\x6f\xd4\ +\x00\x00\x05\x59\x06\xd6\x3f\xa4\x00\x00\x1c\xfe\x06\xe6\x2f\x43\ +\x00\x00\x0e\xfd\x07\x00\xcc\xc4\x00\x00\x30\x1c\x07\x07\x84\xba\ +\x00\x00\x37\x99\x07\x08\x43\x0e\x00\x00\x1f\x96\x07\x16\x58\x05\ +\x00\x00\x2c\xee\x07\x25\x74\x53\x00\x00\x21\xbd\x07\x28\xff\x15\ +\x00\x00\x0b\x3b\x07\x36\x51\x26\x00\x00\x10\x6c\x07\x5c\xdc\x04\ +\x00\x00\x1b\x2d\x07\x60\x23\xf3\x00\x00\x02\x90\x07\xca\xf8\x87\ +\x00\x00\x2c\xa7\x08\x25\x81\xc4\x00\x00\x05\x22\x08\x4a\x45\xd9\ +\x00\x00\x2b\x81\x08\x65\x4c\x95\x00\x00\x17\x92\x08\xc5\xe3\x35\ +\x00\x00\x16\xdd\x08\xca\xc9\x74\x00\x00\x11\x14\x08\xfb\xb8\xa4\ +\x00\x00\x08\x44\x09\x69\xac\xa7\x00\x00\x19\xf5\x09\x6c\x6c\xa7\ +\x00\x00\x08\xab\x09\x9f\xcc\xde\x00\x00\x1c\x8e\x09\xba\xe6\x35\ +\x00\x00\x0d\x96\x09\xba\xe6\x35\x00\x00\x2a\x91\x09\xc5\xbe\xca\ +\x00\x00\x07\xa4\x09\xe3\x98\xe4\x00\x00\x1f\x08\x09\xed\x98\x55\ +\x00\x00\x27\x82\x0a\x3e\x06\x83\x00\x00\x03\xde\x0a\x3f\x1f\xd6\ +\x00\x00\x04\x0a\x0a\x3f\x2b\x25\x00\x00\x04\x6d\x0a\x3f\x5d\xac\ +\x00\x00\x04\xcc\x0a\x7f\xee\xa3\x00\x00\x36\x69\x0a\xb6\xc8\x9a\ +\x00\x00\x08\xf3\x0a\xbf\x46\x0e\x00\x00\x19\x22\x0a\xd6\x07\x84\ +\x00\x00\x1b\x56\x0b\x0a\xc3\xf3\x00\x00\x00\x51\x0b\x51\x30\xa8\ +\x00\x00\x25\x02\x0b\x65\xda\xb3\x00\x00\x2e\x7d\x0b\x8d\x97\x93\ +\x00\x00\x34\xad\x0b\x9c\x5b\xe7\x00\x00\x07\x07\x0b\xb9\xe8\x93\ +\x00\x00\x25\x51\x0b\xc4\xb1\x23\x00\x00\x20\x9a\x0c\x02\xac\xd7\ +\x00\x00\x02\x6b\x0c\x02\xac\xd7\x00\x00\x1f\xd9\x0c\x25\x3e\x53\ +\x00\x00\x28\x13\x0c\x3c\x8b\x33\x00\x00\x36\x94\x0c\x41\x0a\x83\ +\x00\x00\x36\xc6\x0c\x4e\x9b\x23\x00\x00\x27\xbd\x0c\x98\x80\x23\ +\x00\x00\x36\xf6\x0c\xc4\xd0\x80\x00\x00\x1e\x30\x0c\xdf\x5a\x1e\ +\x00\x00\x01\x5c\x0c\xfc\x97\x06\x00\x00\x1a\x1c\x0d\x03\x26\xb4\ +\x00\x00\x02\x3c\x0d\x08\x90\xf3\x00\x00\x16\x98\x0d\x1e\xda\xa4\ +\x00\x00\x02\xb7\x0d\x3b\x3b\x49\x00\x00\x29\xe1\x0d\xa8\x3a\x35\ +\x00\x00\x13\x89\x0d\xc1\x7d\x47\x00\x00\x1e\x66\x0d\xfa\x53\xe5\ +\x00\x00\x06\x79\x0e\x69\x87\x13\x00\x00\x26\xa2\x0e\x8c\xd7\x43\ +\x00\x00\x29\x72\x0e\x98\x0a\xd6\x00\x00\x19\x52\x0e\xab\x8d\x1f\ +\x00\x00\x2d\x97\x0e\xb9\x1b\xf2\x00\x00\x10\xdb\x0e\xec\x0b\x9e\ +\x00\x00\x20\x07\x0f\x16\x4a\x24\x00\x00\x18\x91\x0f\x17\xc7\xa3\ +\x00\x00\x21\x26\x0f\x55\xc1\x57\x00\x00\x04\xf6\x0f\x78\x41\x05\ +\x00\x00\x35\x9a\x0f\x79\xe3\xf3\x00\x00\x22\x02\x0f\x95\xd5\x09\ +\x00\x00\x14\x41\x0f\xa2\x16\x43\x00\x00\x18\x6b\x0f\xc0\xb8\xb4\ +\x00\x00\x0b\x04\x0f\xd0\x39\x44\x00\x00\x02\x0b\x0f\xe5\x74\x74\ +\x00\x00\x00\x85\x0f\xf3\xe8\x33\x00\x00\x2f\xc2\x69\x00\x00\x38\ +\x1d\x03\x00\x00\x00\x08\x52\x1b\x5e\xfa\x5e\xfa\x7b\x51\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x10\x20\x43\x72\x65\x61\x74\x65\x20\ +\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x04\x6d\xfb\x52\xa0\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x03\x41\x64\x64\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x12\x00\x41\x00\x64\x00\x64\x00\x69\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x41\x64\x64\x69\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x5b\xf9\x9f\x50\x65\ +\xb9\x5f\x0f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x41\x6c\x69\ +\x67\x6e\x6d\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x36\x00\x41\x00\x6c\x00\x6c\x00\x20\x00\x67\x00\ +\x6f\x00\x6f\x00\x64\x00\x21\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\ +\x70\x00\x72\x00\x6f\x00\x62\x00\x6c\x00\x65\x00\x6d\x00\x73\x00\ +\x20\x00\x66\x00\x6f\x00\x75\x00\x6e\x00\x64\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1b\x41\x6c\x6c\x20\x67\x6f\x6f\x64\x21\x20\x6e\ +\x6f\x20\x70\x72\x6f\x62\x6c\x65\x6d\x73\x20\x66\x6f\x75\x6e\x64\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x89\ +\xd2\x5e\xa6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x6e\x67\ +\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x04\x8f\x74\x7e\xbf\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\ +\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x4e\x00\x41\x00\x78\x00\x65\x00\x73\x00\x20\x00\x73\x00\x79\ +\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x73\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\ +\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x69\x00\x73\x00\x20\ +\x00\x62\x00\x75\x00\x69\x00\x6c\x00\x74\x00\x20\x00\x6f\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x41\x78\x65\x73\x20\x73\ +\x79\x73\x74\x65\x6d\x73\x20\x74\x68\x69\x73\x20\x73\x74\x72\x75\ +\x63\x74\x75\x72\x65\x20\x69\x73\x20\x62\x75\x69\x6c\x74\x20\x6f\ +\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\ +\x8f\x74\x7e\xbf\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\ +\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x0a\x4e\x8c\x7e\xf4\x57\xfa\x5b\xf9\x8c\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0e\x42\x61\x73\x65\x20\x32\x44\x20\x6f\x62\x6a\ +\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x08\x57\xfa\x78\x40\x7e\xc4\x4e\xf6\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0e\x42\x61\x73\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\ +\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x04\x5e\xfa\x7b\x51\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\ +\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x04\x7e\xc4\x4e\xf6\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0a\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x6b\x64\x5b\ +\xf9\x8c\x61\x76\x84\x7e\xc4\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x19\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x43\x00\x6f\x00\ +\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x43\x6f\x6e\x74\x69\x6e\x75\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x65\xe0\x6c\xd5\ +\x8b\xa1\x7b\x97\x58\x99\x4f\x53\x5f\x62\x72\xb6\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1f\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x63\ +\x6f\x6d\x70\x75\x74\x65\x20\x74\x68\x65\x20\x77\x61\x6c\x6c\x20\ +\x73\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x3a\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\ +\x00\x27\x00\x74\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x74\ +\x00\x65\x00\x20\x00\x49\x00\x66\x00\x63\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x0a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1d\x43\x6f\x75\x6c\x64\x6e\x27\x74\ +\x20\x6c\x6f\x63\x61\x74\x65\x20\x49\x66\x63\x4f\x70\x65\x6e\x53\ +\x68\x65\x6c\x6c\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x08\x52\x1b\x5e\xfa\x8f\x74\x7e\xbf\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x41\x78\x69\ +\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\ +\x52\x1b\x5e\xfa\x5c\x4b\x98\x76\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x52\x6f\x6f\x66\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x52\x1b\x5e\xfa\ +\x52\x56\x52\x07\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\ +\x43\x72\x65\x61\x74\x65\x20\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\ +\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x08\x52\x1b\x5e\xfa\x57\x3a\x57\x30\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x53\x69\x74\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x52\ +\x1b\x5e\xfa\x7e\xd3\x67\x84\x4f\x53\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x10\x43\x72\x65\x61\x74\x65\x20\x53\x74\x72\x75\x63\x74\ +\x75\x72\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x06\x52\x1b\x5e\xfa\x58\x99\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x57\x61\x6c\x6c\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x06\x52\x1b\x5e\xfa\ +\x7a\x97\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x72\x65\x61\ +\x74\x65\x20\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x0a\x52\x1b\x5e\xfa\x65\xb0\x7e\xc4\ +\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\ +\x74\x65\x20\x6e\x65\x77\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\ +\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x2f\x00\x75\x00\ +\x70\x00\x64\x00\x61\x00\x74\x00\x65\x00\x20\x00\x63\x00\x6f\x00\ +\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\x74\x65\x2f\x75\x70\ +\x64\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x8d\xdd\x79\ +\xbb\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\ +\x6e\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x42\x00\x44\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x63\ +\x00\x65\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\ +\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x62\x00\x65\ +\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x78\ +\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x44\x69\ +\x73\x74\x61\x6e\x63\x65\x73\x20\x61\x6e\x64\x20\x61\x6e\x67\x6c\ +\x65\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x61\x78\x65\x73\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x7f\x16\ +\x8f\x91\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4e\x00\ +\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x20\x00\x72\x00\x65\x00\ +\x6d\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\ +\x70\x00\x6c\x00\x69\x00\x74\x00\x74\x00\x65\x00\x72\x00\x20\x00\ +\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x77\x00\x61\x00\x6c\x00\ +\x6c\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x27\x45\x72\x72\x6f\x72\x20\x72\x65\x6d\ +\x6f\x76\x69\x6e\x67\x20\x73\x70\x6c\x69\x74\x74\x65\x72\x20\x66\ +\x72\x6f\x6d\x20\x77\x61\x6c\x6c\x20\x73\x68\x61\x70\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x58\x00\x45\x00\ +\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x43\x00\x6f\x00\ +\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x64\x00\ +\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x65\x00\ +\x20\x00\x63\x00\x68\x00\x61\x00\x72\x00\x61\x00\x63\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\x64\x00\ +\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x45\ +\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x64\ +\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\x61\x72\x61\x63\x74\ +\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5a\x00\x45\x00\x72\x00\x72\ +\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x43\x00\x6f\x00\x75\x00\x6c\ +\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x64\x00\x65\x00\x74\ +\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x63\ +\x00\x68\x00\x61\x00\x72\x00\x61\x00\x63\x00\x74\x00\x65\x00\x72\ +\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\x64\x00\x69\x00\x6e\ +\x00\x67\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x45\x72\ +\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x64\x65\ +\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\ +\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x0a\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x95\x19\x8b\xef\x00\x3a\ +\x65\xe0\x65\x48\x76\x84\x57\xfa\x5b\xf9\x8c\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1a\x45\x72\x72\x6f\x72\x3a\x20\x49\x6e\x76\ +\x61\x6c\x69\x64\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x69\ +\x7c\x67\x7f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\ +\x6f\x72\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x04\x62\x10\x7e\xc4\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x47\ +\x72\x6f\x75\x70\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x04\x9a\xd8\x5e\xa6\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x48\x65\x69\x67\x68\x74\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x24\x67\x2a\x53\xd1\x73\xb0\x00\ +\x49\x00\x46\x00\x43\x67\xb6\x67\x84\x00\x2c\x00\x20\x79\x81\x75\ +\x28\x00\x49\x00\x46\x00\x43\x5b\xfc\x51\x65\x00\x2e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x2b\x49\x46\x43\x20\x53\x63\x68\x65\x6d\ +\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x49\x46\x43\ +\x20\x69\x6d\x70\x6f\x72\x74\x20\x64\x69\x73\x61\x62\x6c\x65\x64\ +\x2e\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\xd2\x00\x49\x00\x66\x00\x20\x00\x54\x00\x72\x00\x75\x00\x65\x00\ +\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\ +\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\ +\x65\x00\x2c\x00\x20\x00\x69\x00\x74\x00\x20\x00\x77\x00\x69\x00\ +\x6c\x00\x6c\x00\x20\x00\x75\x00\x73\x00\x65\x00\x20\x00\x69\x00\ +\x74\x00\x73\x00\x20\x00\x62\x00\x6f\x00\x72\x00\x64\x00\x65\x00\ +\x72\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x20\x00\x61\x00\ +\x73\x00\x20\x00\x74\x00\x72\x00\x61\x00\x63\x00\x65\x00\x2c\x00\ +\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x64\x00\x69\x00\x73\x00\ +\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\ +\x65\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x69\x49\x66\x20\ +\x54\x72\x75\x65\x2c\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\ +\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\ +\x20\x66\x61\x63\x65\x2c\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x75\ +\x73\x65\x20\x69\x74\x73\x20\x62\x6f\x72\x64\x65\x72\x20\x77\x69\ +\x72\x65\x20\x61\x73\x20\x74\x72\x61\x63\x65\x2c\x20\x61\x6e\x64\ +\x20\x64\x69\x73\x63\x6f\x6e\x73\x69\x64\x65\x72\x20\x74\x68\x65\ +\x20\x66\x61\x63\x65\x2e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x0e\x7f\x51\x68\x3c\x8f\x6c\x63\x62\x4e\x3a\x5f\ +\x62\x4f\x53\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\ +\x68\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x04\x54\x0d\x79\xf0\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x4e\x61\x6d\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x6c\xa1\x67\x09\x90\x09\ +\x5b\x9a\x5b\xf9\x8c\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\ +\x4e\x6f\x20\x6f\x62\x6a\x65\x63\x74\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x10\x5e\x73\x97\x62\x67\x2a\x4e\x0e\x5b\xf9\x8c\x61\x76\xf8\x4e\ +\xa4\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x4e\x6f\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x61\x72\x65\x20\x63\x75\x74\x20\x62\x79\ +\x20\x74\x68\x65\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x96\x00\x4e\x00\x6f\x00\x20\x00\ +\x73\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x68\x00\x61\x00\ +\x73\x00\x20\x00\x62\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x63\x00\ +\x6f\x00\x6d\x00\x70\x00\x75\x00\x74\x00\x65\x00\x64\x00\x20\x00\ +\x79\x00\x65\x00\x74\x00\x2c\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\ +\x66\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x72\x00\x65\x00\ +\x6e\x00\x64\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x61\x00\x6e\x00\x64\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\ +\x65\x00\x72\x00\x20\x00\x61\x00\x67\x00\x61\x00\x69\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x4b\x4e\x6f\x20\x73\x68\x61\x70\ +\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x63\x6f\x6d\x70\x75\ +\x74\x65\x64\x20\x79\x65\x74\x2c\x20\x73\x65\x6c\x65\x63\x74\x20\ +\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\x72\x65\x6e\x64\x65\x72\ +\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x65\x6e\x64\x65\x72\x20\x61\ +\x67\x61\x69\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x04\x5b\xf9\x8c\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x07\x4f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x08\x00\x50\x00\x61\x00\x67\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x50\x61\x67\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x52\x20\x96\x64\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x65\x6d\x6f\x76\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x5c\ +\x4b\x98\x76\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\ +\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\ +\x57\x3a\x57\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\ +\x74\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x0e\x8d\xf3\x8f\xc7\x65\xe0\x65\x48\x5b\xf9\x8c\x61\x00\x3a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x19\x53\x6b\x69\x70\x70\x69\x6e\ +\x67\x20\x69\x6e\x76\x61\x6c\x69\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x3a\x20\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x08\x62\xc6\x52\x06\x7f\x51\x68\x3c\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x7e\xd3\x67\x84\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\x75\x63\x74\ +\x75\x72\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x18\x00\x53\x00\x75\x00\x62\x00\x74\x00\x72\x00\x61\x00\x63\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x53\x75\x62\x74\x72\x61\x63\x74\x69\x6f\x6e\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x78\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x69\x00\x67\x00\ +\x6e\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x66\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\ +\x6c\x00\x6c\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x69\x00\x74\x00\ +\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\x00\x69\x00\ +\x66\x00\x20\x00\x61\x00\x70\x00\x70\x00\x6c\x00\x69\x00\x63\x00\ +\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x3c\x54\x68\x65\x20\x61\x6c\x69\x67\x6e\x6d\x65\x6e\x74\x20\x6f\ +\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x6f\x6e\x20\x69\ +\x74\x73\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\ +\x69\x66\x20\x61\x70\x70\x6c\x69\x63\x61\x62\x6c\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x5c\x4b\x98\x76\ +\x89\xd2\x5e\xa6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x68\ +\x65\x20\x61\x6e\x67\x6c\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x0e\x6b\xcf\x4e\x2a\x8f\x74\x7e\xbf\x76\x84\x89\xd2\x5e\ +\xa6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x54\x68\x65\x20\x61\ +\x6e\x67\x6c\x65\x73\x20\x6f\x66\x20\x65\x61\x63\x68\x20\x61\x78\ +\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x10\x52\x56\x52\x07\x97\x62\x76\x84\x66\x3e\x79\x3a\x5c\x3a\x5b\ +\xf8\x08\x00\x00\x00\x00\x06\x00\x00\x00\x26\x54\x68\x65\x20\x64\ +\x69\x73\x70\x6c\x61\x79\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\x74\ +\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x86\ +\x00\x54\x00\x68\x00\x65\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\ +\x00\x65\x00\x72\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x65\ +\x00\x78\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x65\x00\x20\x00\x77\ +\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\ +\x00\x72\x00\x65\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\ +\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\ +\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\ +\x54\x68\x65\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\x6e\x75\x6d\x62\ +\x65\x72\x73\x20\x74\x6f\x20\x65\x78\x63\x6c\x75\x64\x65\x20\x77\ +\x68\x65\x6e\x20\x74\x68\x69\x73\x20\x73\x74\x72\x75\x63\x74\x75\ +\x72\x65\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\ +\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x1c\x75\x28\x67\x65\x75\x1f\x62\x10\x5c\x4b\x98\x76\x76\x84\ +\x57\xfa\x5b\xf9\x8c\x61\x76\x84\x97\x62\x65\x70\x91\xcf\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x3a\x54\x68\x65\x20\x66\x61\x63\x65\ +\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x74\x68\x65\x20\x62\ +\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x75\x73\x65\x64\x20\ +\x74\x6f\x20\x62\x75\x69\x6c\x64\x20\x74\x68\x69\x73\x20\x72\x6f\ +\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x08\x69\x7c\x67\x7f\x68\x07\x9a\xd8\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x18\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x66\x6c\x6f\x6f\x72\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\xb0\x00\x54\x00\x68\x00\x65\ +\x00\x20\x00\x68\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\ +\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x2e\x00\x20\x00\x4b\x00\x65\ +\x00\x65\x00\x70\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\x72\ +\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\ +\x00\x69\x00\x63\x00\x2e\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x20\ +\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\x00\x69\x00\x66\x00\x20\ +\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\ +\x00\x6c\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\ +\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\ +\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x58\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\x6f\ +\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x2e\x20\x4b\x65\x65\ +\x70\x20\x30\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\ +\x63\x2e\x20\x4e\x6f\x74\x20\x75\x73\x65\x64\x20\x69\x66\x20\x74\ +\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\ +\x64\x20\x6f\x6e\x20\x61\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x86\x00\x54\x00\x68\x00\ +\x65\x00\x20\x00\x68\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x00\ +\x20\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\x72\x00\ +\x75\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x65\x00\ +\x70\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x2e\x00\x20\x00\x4b\x00\x65\x00\x65\x00\ +\x70\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\ +\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\ +\x63\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\x54\x68\x65\x20\x68\ +\x65\x69\x67\x68\x74\x20\x6f\x72\x20\x65\x78\x74\x72\x75\x73\x69\ +\x6f\x6e\x20\x64\x65\x70\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\ +\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2e\x20\x4b\x65\x65\x70\x20\x30\ +\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x8f\x74\x7e\ +\xbf\x95\xf4\x8d\xdd\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x54\ +\x68\x65\x20\x69\x6e\x74\x65\x72\x76\x61\x6c\x73\x20\x62\x65\x74\ +\x77\x65\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x08\x8f\x74\x7e\xbf\x95\x7f\x5e\xa6\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x68\x65\x20\x6c\x65\ +\x6e\x67\x74\x68\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\x65\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x6a\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x6e\x00\x67\x00\ +\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\x6e\x00\ +\x6f\x00\x74\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\ +\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x70\x00\x72\x00\ +\x6f\x00\x66\x00\x69\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x35\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\x20\x69\ +\x66\x20\x6e\x6f\x74\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\ +\x20\x70\x72\x6f\x66\x69\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\xa2\x00\x54\x00\x68\x00\x65\x00\x20\x00\ +\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x20\x00\x65\x00\ +\x78\x00\x74\x00\x72\x00\x75\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\ +\x20\x00\x64\x00\x69\x00\x72\x00\x65\x00\x63\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x20\x00\x28\x00\x6b\x00\x65\x00\x65\x00\x70\x00\x20\x00\ +\x28\x00\x30\x00\x2c\x00\x30\x00\x2c\x00\x30\x00\x29\x00\x20\x00\ +\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\ +\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x20\x00\x6e\x00\x6f\x00\ +\x72\x00\x6d\x00\x61\x00\x6c\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x51\x54\x68\x65\x20\x6e\x6f\x72\x6d\x61\x6c\x20\x65\x78\ +\x74\x72\x75\x73\x69\x6f\x6e\x20\x64\x69\x72\x65\x63\x74\x69\x6f\ +\x6e\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x28\x6b\x65\x65\x70\x20\x28\x30\x2c\x30\x2c\x30\x29\x20\x66\ +\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x20\x6e\x6f\x72\ +\x6d\x61\x6c\x29\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x0c\x8f\x74\x7e\xbf\x7f\x16\x53\xf7\x68\x37\x5f\x0f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\x20\x6e\x75\x6d\ +\x65\x72\x61\x74\x69\x6f\x6e\x20\x73\x74\x79\x6c\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xa6\x00\x54\x00\x68\ +\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x73\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x6d\ +\x00\x75\x00\x73\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\x65\ +\x00\x64\x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\x00\x68\x00\x69\ +\x00\x73\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x2e\ +\x00\x20\x00\x45\x00\x6d\x00\x70\x00\x74\x00\x79\x00\x20\x00\x6d\ +\x00\x65\x00\x61\x00\x6e\x00\x73\x00\x20\x00\x61\x00\x6c\x00\x6c\ +\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\x54\x68\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x74\x68\x61\x74\x20\x6d\x75\x73\ +\x74\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\ +\x62\x79\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\ +\x70\x6c\x61\x6e\x65\x2e\x20\x45\x6d\x70\x74\x79\x20\x6d\x65\x61\ +\x6e\x73\x20\x61\x6c\x6c\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x8f\x74\ +\x7e\xbf\x67\x2b\x7a\xef\x57\x06\x57\x08\x59\x27\x5c\x0f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1c\x54\x68\x65\x20\x73\x69\x7a\x65\ +\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\x69\x73\x20\x62\x75\x62\ +\x62\x6c\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x68\x00\x54\x00\x68\x00\x65\x00\x20\x00\x77\x00\x69\x00\ +\x64\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\ +\x6e\x00\x6f\x00\x74\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\ +\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x70\x00\ +\x72\x00\x6f\x00\x66\x00\x69\x00\x6c\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x34\x54\x68\x65\x20\x77\x69\x64\x74\x68\x20\x6f\ +\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\x20\ +\x69\x66\x20\x6e\x6f\x74\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\ +\x61\x20\x70\x72\x6f\x66\x69\x6c\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x80\x00\x54\x00\x68\x00\x65\x00\x20\ +\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\ +\x00\x6c\x00\x6c\x00\x2e\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x20\ +\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\x00\x69\x00\x66\x00\x20\ +\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\ +\x00\x6c\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\ +\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\ +\x00\x66\x00\x61\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x40\x54\x68\x65\x20\x77\x69\x64\x74\x68\x20\x6f\x66\x20\x74\ +\x68\x69\x73\x20\x77\x61\x6c\x6c\x2e\x20\x4e\x6f\x74\x20\x75\x73\ +\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\ +\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x66\x61\ +\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x04\x53\x9a\x5e\xa6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\ +\x68\x69\x63\x6b\x6e\x65\x73\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x3a\x00\x54\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x20\x00\x69\x00\x73\x00\ +\x20\x00\x61\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x76\x00\x61\x00\ +\x6c\x00\x69\x00\x64\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\ +\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x54\x68\x69\x73\x20\ +\x6d\x65\x73\x68\x20\x69\x73\x20\x61\x6e\x20\x69\x6e\x76\x61\x6c\ +\x69\x64\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x04\x7c\x7b\x57\x8b\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x04\x54\x79\x70\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x08\x7c\x7b\x57\x8b\x8f\x6c\x63\x62\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x54\x79\x70\x65\x20\x63\ +\x6f\x6e\x76\x65\x72\x73\x69\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x0c\x65\xe0\x6c\xd5\x52\x1b\x5e\xfa\ +\x5c\x4b\x98\x76\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x55\x6e\ +\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\x20\x61\ +\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x34\x00\x55\x00\x6e\x00\x61\x00\x62\x00\x6c\x00\x65\ +\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\ +\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1a\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\ +\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x89\xe3\x7e\xc4\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x55\x6e\x67\x72\x6f\x75\x70\ +\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x04\x89\xc6\x56\xfe\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ +\x56\x69\x65\x77\x20\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x02\x58\x99\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x08\x58\x99\x4f\x53\x90\x09\x98\x79\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0c\x57\x61\x6c\x6c\x20\x6f\x70\x74\x69\ +\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x12\x00\x57\x00\x61\x00\x6c\x00\x6c\x00\x54\x00\x72\x00\x61\ +\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x57\x61\ +\x6c\x6c\x54\x72\x61\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x04\x5b\xbd\x5e\xa6\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x57\x69\x64\x74\x68\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x04\x7a\x97\x53\xe3\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x57\x00\x69\x00\ +\x72\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x57\ +\x69\x72\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x08\x00\x5a\x50\x4f\x79\xfb\x91\xcf\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x5a\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x51\x73\x95\xed\ +\x83\x49\x7e\xd8\x7f\x16\x8f\x91\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x13\x63\x6c\x6f\x73\x69\x6e\x67\x20\x53\x6b\x65\x74\x63\x68\ +\x20\x65\x64\x69\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x36\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\ +\x00\x6e\x00\x73\x00\x20\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x6e\ +\x00\x2d\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x20\ +\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1b\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x61\x20\x6e\ +\x6f\x6e\x2d\x63\x6c\x6f\x73\x65\x64\x20\x73\x6f\x6c\x69\x64\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x53\x05\ +\x54\x2b\x4e\x0d\x5c\x5e\x4e\x8e\x4e\xfb\x4f\x55\x5b\x9e\x4f\x53\ +\x76\x84\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x63\x6f\ +\x6e\x74\x61\x69\x6e\x73\x20\x66\x61\x63\x65\x73\x20\x74\x68\x61\ +\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x70\x61\x72\x74\x20\x6f\ +\x66\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x4e\x0d\x54\x2b\x5b\x9e\ +\x4f\x53\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x64\x6f\x65\x73\ +\x6e\x27\x74\x20\x63\x6f\x6e\x74\x61\x69\x6e\x20\x61\x6e\x79\x20\ +\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x3a\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x25\ +\x00\x73\x00\x20\x00\x73\x00\x75\x00\x63\x00\x63\x00\x65\x00\x73\ +\x00\x73\x00\x66\x00\x75\x00\x6c\x00\x6c\x00\x79\x00\x20\x00\x63\ +\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x64\x00\x2e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1d\x66\x69\x6c\x65\x20\x25\x73\x20\ +\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x63\x72\x65\ +\x61\x74\x65\x64\x2e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x06\x4e\x0d\x95\xed\x54\x08\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0d\x69\x73\x20\x6e\x6f\x74\x20\x63\x6c\x6f\x73\x65\ +\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\ +\x65\xe0\x65\x48\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x69\x73\ +\x20\x6e\x6f\x74\x20\x76\x61\x6c\x69\x64\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x36\x67\x2a\x62\x7e\x52\x30\x00\ +\x70\x00\x79\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\ +\x61\x00\x2c\x00\x20\x4e\x0d\x65\x2f\x63\x01\x00\x63\x00\x6f\x00\ +\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x68\x3c\x5f\x0f\x00\x2e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x29\x70\x79\x63\x6f\x6c\x6c\x61\ +\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x6e\x6f\ +\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\x6f\x72\x74\ +\x2e\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x1a\x79\xfb\x96\x64\x83\x49\x7e\xd8\x65\x2f\x63\x01\x4e\xe5\x90\ +\x7f\x51\x4d\x4e\xa4\x53\xc9\x5f\x15\x75\x28\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x32\x72\x65\x6d\x6f\x76\x69\x6e\x67\x20\x73\x6b\ +\x65\x74\x63\x68\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x74\x6f\x20\ +\x61\x76\x6f\x69\x64\x20\x63\x72\x6f\x73\x73\x2d\x72\x65\x66\x65\ +\x72\x65\x6e\x63\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x08\x62\x10\x52\x9f\x51\x99\x51\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x15\x73\x75\x63\x63\x65\x73\x73\x66\ +\x75\x6c\x6c\x79\x20\x77\x72\x69\x74\x74\x65\x6e\x20\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x74\x00\x68\ +\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ +\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\ +\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6e\ +\x00\x64\x00\x6f\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\ +\x74\x68\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\ +\x66\x20\x74\x68\x69\x73\x20\x77\x69\x6e\x64\x6f\x77\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x6d\xfb\x52\xa0\ +\x7e\xc4\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x41\x64\ +\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x08\ +\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x1a\x5c\x06\ +\x90\x09\x5b\x9a\x76\x84\x7e\xc4\x4e\xf6\x6d\xfb\x52\xa0\x52\x30\ +\x5f\x53\x52\x4d\x5b\xf9\x8c\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x31\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x74\ +\x6f\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\ +\x01\x03\x00\x00\x00\x04\x8f\x74\x7e\xbf\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x41\x78\x69\x73\x07\x00\x00\x00\x09\x41\x72\x63\ +\x68\x5f\x41\x78\x69\x73\x01\x03\x00\x00\x00\x0e\x52\x1b\x5e\xfa\ +\x8f\x74\x7f\x51\x7c\xfb\x7e\xdf\x00\x2e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x17\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\ +\x78\x69\x73\x20\x73\x79\x73\x74\x65\x6d\x2e\x07\x00\x00\x00\x09\ +\x41\x72\x63\x68\x5f\x41\x78\x69\x73\x01\x03\x00\x00\x00\x04\x5e\ +\xfa\x7b\x51\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\ +\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\ +\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x16\x52\x1b\x5e\ +\xfa\x5e\xfa\x7b\x51\x00\x2c\x53\x05\x54\x2b\x90\x09\x5b\x9a\x5b\ +\xf9\x8c\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x62\x75\x69\x6c\x64\x69\x6e\x67\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x2e\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\ +\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x04\x53\x55\x51\x43\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x43\x65\x6c\x6c\x07\x00\x00\x00\ +\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x16\ +\x52\x1b\x5e\xfa\x53\x55\x51\x43\x00\x2c\x53\x05\x54\x2b\x90\x09\ +\x5b\x9a\x5b\xf9\x8c\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x65\x6c\x6c\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\ +\x00\x00\x00\x04\x68\xc0\x67\xe5\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x43\x68\x65\x63\x6b\x07\x00\x00\x00\x0a\x41\x72\x63\x68\ +\x5f\x43\x68\x65\x63\x6b\x01\x03\x00\x00\x00\x50\x00\x43\x00\x68\ +\x00\x65\x00\x63\x00\x6b\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\ +\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x72\ +\x00\x6f\x00\x62\x00\x6c\x00\x65\x00\x6d\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x28\x43\x68\x65\x63\x6b\x73\x20\x74\x68\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x66\x6f\x72\x20\x70\x72\x6f\x62\x6c\x65\x6d\x73\x07\x00\ +\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\x01\x03\x00\ +\x00\x00\x16\x00\x43\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x20\x00\ +\x68\x00\x6f\x00\x6c\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0b\x43\x6c\x6f\x73\x65\x20\x68\x6f\x6c\x65\x73\x07\x00\ +\x00\x00\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\ +\x65\x73\x01\x03\x00\x00\x00\x60\x00\x43\x00\x6c\x00\x6f\x00\x73\ +\x00\x65\x00\x73\x00\x20\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x73\ +\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x6e\ +\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x00\x73\x00\x2c\ +\x00\x20\x00\x74\x00\x75\x00\x72\x00\x6e\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x20\x00\x73\x00\x6f\ +\x00\x6c\x00\x69\x00\x64\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x30\x43\x6c\x6f\x73\x65\x73\x20\x68\x6f\x6c\x65\x73\x20\x69\ +\x6e\x20\x6f\x70\x65\x6e\x20\x73\x68\x61\x70\x65\x73\x2c\x20\x74\ +\x75\x72\x6e\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\x73\x6f\x6c\x69\ +\x64\x73\x07\x00\x00\x00\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\ +\x65\x48\x6f\x6c\x65\x73\x01\x03\x00\x00\x00\x16\x52\x1b\x5e\xfa\ +\x69\x7c\x67\x7f\x00\x2c\x53\x05\x54\x2b\x90\x09\x5b\x9a\x5b\xf9\ +\x8c\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x66\x6c\x6f\x6f\x72\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ +\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\ +\x00\x04\x69\x7c\x67\x7f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\ +\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x0e\x7f\x51\x68\x3c\x8f\x6c\ +\x63\x62\x4e\x3a\x5f\x62\x4f\x53\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x4d\x65\x73\x68\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\ +\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\ +\x68\x61\x70\x65\x01\x03\x00\x00\x00\x5a\x00\x54\x00\x75\x00\x72\ +\x00\x6e\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\ +\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\ +\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\ +\x00\x50\x00\x61\x00\x72\x00\x74\x00\x20\x00\x53\x00\x68\x00\x61\ +\x00\x70\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x54\x75\ +\x72\x6e\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\ +\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x50\x61\x72\x74\x20\x53\x68\ +\x61\x70\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x10\ +\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\ +\x01\x03\x00\x00\x00\x08\x52\x20\x96\x64\x7e\xc4\x4e\xf6\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\x6d\x6f\x76\x65\x20\x63\ +\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\ +\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\x28\x4e\xce\ +\x72\x36\x5b\xf9\x8c\x61\x4e\x2d\x52\x20\x96\x64\x90\x09\x5b\x9a\ +\x7e\xc4\x4e\xf6\x00\x2c\x62\x16\x57\x28\x7e\xc4\x4e\xf6\x4e\x0a\ +\x52\x1b\x5e\xfa\x5b\x54\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\ +\x52\x65\x6d\x6f\x76\x65\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x66\ +\x72\x6f\x6d\x20\x74\x68\x65\x69\x72\x20\x70\x61\x72\x65\x6e\x74\ +\x73\x2c\x20\x6f\x72\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x68\ +\x6f\x6c\x65\x20\x69\x6e\x20\x61\x20\x63\x6f\x6d\x70\x6f\x6e\x65\ +\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\ +\x76\x65\x01\x03\x00\x00\x00\x14\x4e\xce\x5e\xfa\x7b\x51\x51\x43\ +\x7d\x20\x4e\x2d\x79\xfb\x96\x64\x5f\x62\x4f\x53\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x16\x52\x65\x6d\x6f\x76\x65\x20\x53\x68\x61\ +\x70\x65\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x07\x00\x00\x00\ +\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\ +\x65\x01\x03\x00\x00\x00\x14\x4e\xce\x5e\xfa\x7b\x51\x7e\xc4\x4e\ +\xf6\x79\xfb\x96\x64\x7a\xcb\x65\xb9\x4f\x53\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x29\x52\x65\x6d\x6f\x76\x65\x73\x20\x63\x75\x62\ +\x69\x63\x20\x73\x68\x61\x70\x65\x73\x20\x66\x72\x6f\x6d\x20\x41\ +\x72\x63\x68\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\ +\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\ +\x61\x70\x65\x01\x03\x00\x00\x00\x72\x00\x43\x00\x72\x00\x65\x00\ +\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x72\x00\ +\x6f\x00\x6f\x00\x66\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x66\x00\x61\x00\x63\x00\ +\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x6e\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x39\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x72\ +\x6f\x6f\x66\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\ +\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x66\x61\x63\ +\x65\x20\x6f\x66\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x09\x41\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\x00\x00\ +\x00\x04\x5c\x4b\x98\x76\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x52\x6f\x6f\x66\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x52\x6f\ +\x6f\x66\x01\x03\x00\x00\x00\x7c\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\ +\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\x6c\ +\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x2c\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\ +\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\ +\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\ +\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3e\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\ +\x70\x6c\x61\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x69\x6e\ +\x63\x6c\x75\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\ +\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\ +\x6e\x65\x01\x03\x00\x00\x00\x08\x52\x56\x52\x07\x5e\x73\x97\x62\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\x63\x74\x69\x6f\ +\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x41\x72\x63\x68\ +\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\ +\x00\x00\x0e\x90\x09\x62\xe9\x97\x5e\x6d\x41\x5f\x62\x7f\x51\x68\ +\x3c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\x65\x6c\x65\x63\ +\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\ +\x65\x73\x68\x65\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\ +\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\ +\x68\x65\x73\x01\x03\x00\x00\x00\x24\x90\x09\x62\xe9\x65\x87\x68\ +\x63\x4e\x2d\x62\x16\x62\x40\x90\x09\x7e\xc4\x4e\x2d\x76\x84\x62\ +\x40\x67\x09\x97\x5e\x6d\x41\x5f\x62\x7f\x51\x68\x3c\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4d\x53\x65\x6c\x65\x63\x74\x73\x20\x61\ +\x6c\x6c\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\ +\x6d\x65\x73\x68\x65\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\ +\x64\x6f\x63\x75\x6d\x65\x6e\x74\x20\x6f\x72\x20\x66\x72\x6f\x6d\ +\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x67\x72\ +\x6f\x75\x70\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\ +\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\ +\x65\x73\x01\x03\x00\x00\x00\x16\x52\x1b\x5e\xfa\x57\x3a\x57\x30\ +\x00\x2c\x53\x05\x54\x2b\x90\x09\x5b\x9a\x5b\xf9\x8c\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x20\x73\x69\x74\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\ +\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x09\x41\x72\ +\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\x04\x57\x3a\x57\ +\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\ +\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\ +\x00\x00\x08\x62\xc6\x52\x06\x7f\x51\x68\x3c\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\ +\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\ +\x73\x68\x01\x03\x00\x00\x00\x1a\x5c\x06\x90\x09\x5b\x9a\x76\x84\ +\x7f\x51\x68\x3c\x62\xc6\x52\x06\x4e\x3a\x72\xec\x7a\xcb\x7e\xc4\ +\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x53\x70\x6c\x69\ +\x74\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\ +\x65\x73\x20\x69\x6e\x74\x6f\x20\x69\x6e\x64\x65\x70\x65\x6e\x64\ +\x65\x6e\x74\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\ +\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\ +\x68\x01\x03\x00\x00\x00\x2e\x4e\xce\x96\xf6\x5f\x00\x59\xcb\x62\ +\x16\x4e\xce\x90\x09\x5b\x9a\x76\x84\x5b\xf9\x8c\x61\x00\x28\x7e\ +\xbf\x00\x2c\x97\x62\x62\x16\x4f\x53\x00\x29\x52\x1b\x5e\xfa\x7e\ +\xd3\x67\x84\x4f\x53\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5f\x43\ +\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x74\x72\x75\x63\x74\x75\ +\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\ +\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x28\x73\x6b\x65\x74\x63\x68\x2c\x20\x77\x69\x72\x65\x2c\x20\ +\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\ +\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\ +\x65\x01\x03\x00\x00\x00\x04\x7e\xd3\x67\x84\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\ +\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\ +\x65\x01\x03\x00\x00\x00\x2c\x4e\xce\x96\xf6\x5f\x00\x59\xcb\x62\ +\x16\x4e\xce\x90\x09\x5b\x9a\x76\x84\x5b\xf9\x8c\x61\x00\x28\x7e\ +\xbf\x00\x2c\x97\x62\x62\x16\x4f\x53\x00\x29\x52\x1b\x5e\xfa\x58\ +\x99\x4f\x53\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x77\x61\x6c\x6c\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\ +\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\ +\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\ +\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\ +\x00\x00\x02\x58\x99\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\ +\x61\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\ +\x6c\x01\x03\x00\x00\x00\x94\x00\x43\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x77\x00\x69\x00\ +\x6e\x00\x64\x00\x6f\x00\x77\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ +\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x28\x00\x77\x00\x69\x00\x72\x00\x65\x00\ +\x2c\x00\x20\x00\x72\x00\x65\x00\x63\x00\x74\x00\x61\x00\x6e\x00\ +\x67\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x73\x00\ +\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x4a\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\ +\x69\x6e\x64\x6f\x77\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\ +\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x72\x65\x63\x74\x61\ +\x6e\x67\x6c\x65\x20\x6f\x72\x20\x73\x6b\x65\x74\x63\x68\x29\x07\ +\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\ +\x03\x00\x00\x00\x02\x7a\x97\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x0b\x41\x72\x63\x68\ +\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0a\x00\x32\x00\ +\x44\x00\x20\x6e\x32\x67\xd3\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0c\x32\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\ +\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x50\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ +\x00\x73\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x73\ +\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x61\x00\x63\ +\x00\x68\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x74\x00\x79\ +\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x43\x72\ +\x65\x61\x74\x65\x73\x20\x67\x72\x6f\x75\x70\x73\x20\x66\x6f\x72\ +\x20\x65\x61\x63\x68\x20\x41\x72\x63\x68\x20\x6f\x62\x6a\x65\x63\ +\x74\x20\x74\x79\x70\x65\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3c\x00\x43\x00\ +\x75\x00\x74\x00\x20\x00\x61\x00\x72\x00\x65\x00\x61\x00\x73\x00\ +\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x68\x00\ +\x69\x00\x63\x00\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x00\x20\x00\ +\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1e\x43\x75\x74\x20\x61\x72\x65\x61\x73\x20\x6c\x69\x6e\ +\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\x73\x20\x72\x61\x74\x69\ +\x6f\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x0e\x7e\xd3\x67\x84\x4f\x53\x9e\xd8\ +\x8b\xa4\x98\x9c\x82\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\ +\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\ +\x72\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x73\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x0c\x58\x99\x4f\x53\x9e\xd8\x8b\xa4\x98\x9c\x82\x72\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x17\x44\x65\x66\x61\x75\x6c\x74\ +\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\x61\x6c\x6c\x73\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x0c\x7a\x97\x76\x84\x9e\xd8\x8b\xa4\x98\ +\x9c\x82\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x44\x65\x66\ +\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\ +\x69\x6e\x64\x6f\x77\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x5e\xfa\x7b\ +\x51\x5e\x38\x89\xc4\x8b\xbe\x7f\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\x20\x41\x72\x63\x68\x20\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x5e\ +\x38\x89\xc4\x8b\xbe\x7f\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\ +\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x10\x68\x39\x63\x6e\x7c\x7b\x57\x8b\ +\x7e\xc4\x54\x08\x7e\xc4\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x19\x47\x72\x6f\x75\x70\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x20\x62\x79\x20\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0a\x5b\xfc\x51\x65\x00\x49\x00\x46\x00\x43\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0a\x49\x46\x43\x20\x69\x6d\x70\x6f\x72\x74\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\xba\x00\x49\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\ +\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x49\x00\x46\x00\x43\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\ +\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\ +\x72\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\ +\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ +\x61\x00\x6c\x00\x6c\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x74\x00\x6f\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x72\x00\x65\x00\x20\x00\ +\x49\x00\x46\x00\x43\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x49\x66\x20\x74\x68\ +\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\ +\x68\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\ +\x69\x6d\x70\x6f\x72\x74\x65\x72\x20\x77\x69\x6c\x6c\x20\x62\x65\ +\x20\x75\x73\x65\x64\x2c\x20\x61\x6c\x6c\x6f\x77\x69\x6e\x67\x20\ +\x74\x6f\x20\x69\x6d\x70\x6f\x72\x74\x20\x6d\x6f\x72\x65\x20\x49\ +\x46\x43\x20\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x56\x00\ +\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x66\x00\ +\x75\x00\x72\x00\x6e\x00\x69\x00\x74\x00\x75\x00\x72\x00\x65\x00\ +\x20\x00\x28\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x6d\x00\x61\x00\ +\x6b\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6d\x00\ +\x6f\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x68\x00\x65\x00\x61\x00\ +\x76\x00\x79\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\ +\x6d\x70\x6f\x72\x74\x20\x66\x75\x72\x6e\x69\x74\x75\x72\x65\x20\ +\x28\x63\x61\x6e\x20\x6d\x61\x6b\x65\x20\x74\x68\x65\x20\x6d\x6f\ +\x64\x65\x6c\x20\x68\x65\x61\x76\x79\x29\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x54\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x64\x00\x65\x00\ +\x62\x00\x75\x00\x67\x00\x20\x00\x69\x00\x6e\x00\x66\x00\x6f\x00\ +\x72\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ +\x64\x00\x75\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x32\x00\ +\x44\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\ +\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x53\ +\x68\x6f\x77\x20\x64\x65\x62\x75\x67\x20\x69\x6e\x66\x6f\x72\x6d\ +\x61\x74\x69\x6f\x6e\x20\x64\x75\x72\x69\x6e\x67\x20\x32\x44\x20\ +\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\ +\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x72\x00\x65\x00\x6e\ +\x00\x64\x00\x65\x00\x72\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\ +\x00\x62\x00\x75\x00\x67\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x73\ +\x00\x61\x00\x67\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1c\x53\x68\x6f\x77\x20\x72\x65\x6e\x64\x65\x72\x65\x72\x20\ +\x64\x65\x62\x75\x67\x20\x6d\x65\x73\x73\x61\x67\x65\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x9e\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\x00\ +\x66\x00\x69\x00\x65\x00\x73\x00\x20\x00\x68\x00\x6f\x00\x77\x00\ +\x20\x00\x6d\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x74\x00\x69\x00\ +\x6d\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x76\x00\x69\x00\x65\x00\x77\x00\x65\x00\x64\x00\x20\x00\x6c\x00\ +\x69\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x68\x00\x69\x00\x63\x00\ +\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x00\x20\x00\x6d\x00\x75\x00\ +\x73\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x61\x00\x70\x00\ +\x70\x00\x6c\x00\x69\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x63\x00\x75\x00\x74\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x53\x70\x65\ +\x63\x69\x66\x69\x65\x73\x20\x68\x6f\x77\x20\x6d\x61\x6e\x79\x20\ +\x74\x69\x6d\x65\x73\x20\x74\x68\x65\x20\x76\x69\x65\x77\x65\x64\ +\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\x73\x20\ +\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x70\x70\x6c\x69\x65\x64\x20\ +\x74\x6f\x20\x63\x75\x74\x20\x6c\x69\x6e\x65\x73\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x16\x65\xb0\x5e\xfa\x7e\xd3\x67\x84\x5b\xf9\x8c\x61\x76\ +\x84\x9e\xd8\x8b\xa4\x98\x9c\x82\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x33\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\ +\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ +\x20\x6e\x65\x77\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x65\xb0\x5e\ +\xfa\x58\x99\x5b\xf9\x8c\x61\x76\x84\x9e\xd8\x8b\xa4\x98\x9c\x82\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x54\x68\x69\x73\x20\ +\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\ +\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x57\x61\x6c\ +\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x24\ +\x59\x82\x67\x9c\x53\xef\x80\xfd\x4f\x7f\x75\x28\x00\x49\x00\x46\ +\x00\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\ +\x00\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\ +\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\x69\ +\x66\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0c\x5e\xfa\x7b\x51\x00\x28\x00\x26\x00\x41\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0d\x26\x41\x72\x63\x68\x69\x74\x65\ +\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\ +\x00\x00\x00\x0c\x7e\xd8\x56\xfe\x00\x28\x00\x26\x00\x44\x00\x29\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x26\x44\x72\x61\x66\x74\ +\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x08\x5e\ +\xfa\x7b\x51\x5d\xe5\x51\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x41\x72\x63\x68\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\ +\x61\x72\x63\x68\x01\x03\x00\x00\x00\x08\x8b\xa1\x7b\x97\x5d\xe5\ +\x51\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x43\x61\x6c\x63\ +\x75\x6c\x61\x74\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\ +\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x4e\x0a\x4e\x0b\ +\x65\x87\x5d\xe5\x51\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ +\x43\x6f\x6e\x74\x65\x78\x74\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\ +\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x08\x8f\x6c\x63\x62\ +\x5d\xe5\x51\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x6f\ +\x6e\x76\x65\x72\x73\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\x00\ +\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x00\x44\x00\ +\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\ +\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\x20\x74\ +\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\ +\x00\x00\x08\x83\x49\x7e\xd8\x5d\xe5\x51\x77\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\ +\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x34\x62\ +\x7e\x4e\x0d\x52\x30\x00\x70\x00\x79\x00\x63\x00\x6f\x00\x6c\x00\ +\x6c\x00\x61\x00\x64\x00\x61\x00\x2c\x00\x20\x79\x81\x75\x28\x00\ +\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x65\x2f\x63\ +\x01\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x70\x79\x63\ +\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\ +\x2c\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\x6f\x72\ +\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x69\x73\x61\x62\x6c\ +\x65\x64\x2e\x0a\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ +\x00\x00\x4b\x2d\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x04\xf8\x00\x00\x47\xa4\x00\x00\x00\x45\x00\x04\x8e\xc3\ +\x00\x00\x01\x79\x00\x04\x8f\x03\x00\x00\x02\x32\x00\x04\x8f\x03\ +\x00\x00\x26\x38\x00\x04\x9c\x2c\x00\x00\x27\xbc\x00\x04\xbb\x04\ +\x00\x00\x07\xdc\x00\x05\x48\x35\x00\x00\x0c\xef\x00\x05\x67\xd5\ +\x00\x00\x0e\xf1\x00\x05\x96\x56\x00\x00\x0f\x43\x00\x05\x96\x56\ +\x00\x00\x2f\x72\x00\x05\xa0\xa5\x00\x00\x0f\x66\x00\x05\xa0\xa5\ +\x00\x00\x32\xfb\x00\x05\xc0\x65\x00\x00\x1d\x69\x00\x05\xd8\x2c\ +\x00\x00\x1f\x08\x00\x05\xd8\x2c\x00\x00\x36\xb9\x00\x32\x23\xa5\ +\x00\x00\x43\x1e\x00\x39\xdf\x33\x00\x00\x3b\x8f\x00\x48\x4e\x25\ +\x00\x00\x01\x4f\x00\x49\xeb\x9b\x00\x00\x28\x92\x00\x4b\x55\x33\ +\x00\x00\x3c\xc7\x00\x4d\x36\x62\x00\x00\x0a\x3b\x00\x4d\x36\x62\ +\x00\x00\x2b\x04\x00\x5d\xfb\xa8\x00\x00\x1f\xac\x00\x5e\x08\xc3\ +\x00\x00\x20\x01\x00\x61\xb0\x33\x00\x00\x16\xd1\x00\x62\x9b\xa8\ +\x00\x00\x0f\xf9\x00\x62\x9b\xa8\x00\x00\x33\x27\x00\x8a\x92\x57\ +\x00\x00\x00\x00\x00\xaa\x80\x25\x00\x00\x07\x33\x00\xc9\x7b\xf3\ +\x00\x00\x12\xac\x00\xfb\x72\xf3\x00\x00\x3b\x13\x01\x19\x4e\x85\ +\x00\x00\x05\xc3\x01\x55\x2b\xf5\x00\x00\x05\x3e\x01\x79\x17\x94\ +\x00\x00\x22\xda\x01\x8e\x84\xa6\x00\x00\x11\x70\x01\xad\x7d\xe3\ +\x00\x00\x44\xa7\x01\xaf\x41\x84\x00\x00\x21\xc0\x01\xf7\xa8\x83\ +\x00\x00\x41\xe3\x02\x01\x7f\xd3\x00\x00\x10\x64\x02\x29\xb3\xc4\ +\x00\x00\x2e\xa9\x02\x5a\x4a\x53\x00\x00\x15\xed\x02\x5f\xc9\x59\ +\x00\x00\x35\x99\x02\x66\x7f\x7e\x00\x00\x0d\xd5\x02\x6a\x77\x99\ +\x00\x00\x3e\x0f\x02\x80\x5f\x17\x00\x00\x23\xaf\x02\x82\x88\x3a\ +\x00\x00\x04\x60\x02\x85\x4f\xf5\x00\x00\x19\x67\x02\x90\x40\x65\ +\x00\x00\x0c\xaf\x02\x90\x40\x65\x00\x00\x2b\x30\x02\x94\x16\x35\ +\x00\x00\x10\xa3\x02\xab\x87\xd4\x00\x00\x43\x5a\x02\xb8\xae\x74\ +\x00\x00\x2c\x28\x02\xc3\x91\x93\x00\x00\x3f\x70\x02\xcd\x05\xa3\ +\x00\x00\x2b\x7c\x02\xdd\x14\x14\x00\x00\x2c\x7a\x03\x13\x15\x3e\ +\x00\x00\x0b\x5b\x03\x1b\xda\x15\x00\x00\x1f\x78\x03\x1d\xe8\xe3\ +\x00\x00\x39\x9e\x03\x29\x7a\x34\x00\x00\x00\xdd\x03\x2c\xe9\xb3\ +\x00\x00\x17\x38\x03\x92\x51\xe0\x00\x00\x0f\x8d\x03\xa2\xec\x23\ +\x00\x00\x1f\x2d\x03\xbe\xb0\x34\x00\x00\x1e\x40\x03\xce\x98\xe5\ +\x00\x00\x03\xe0\x03\xd4\x22\x74\x00\x00\x25\x24\x04\x35\xfa\x55\ +\x00\x00\x12\x25\x04\xc3\x75\x44\x00\x00\x19\xbc\x04\xdb\x21\x3e\ +\x00\x00\x32\x4a\x04\xeb\xfd\xf4\x00\x00\x0a\x96\x05\x14\x5b\x83\ +\x00\x00\x07\x62\x05\x18\xda\xa3\x00\x00\x2a\x50\x05\x5f\x3d\x83\ +\x00\x00\x3a\x97\x05\x8c\x46\xc5\x00\x00\x0f\x16\x05\x90\xba\xe3\ +\x00\x00\x0e\xc5\x05\xc0\x56\xe3\x00\x00\x3f\xf5\x05\xc7\xeb\xc7\ +\x00\x00\x3e\xc1\x05\xe0\x4b\x67\x00\x00\x1f\xd4\x05\xe0\x4b\x67\ +\x00\x00\x37\xe1\x05\xef\x78\x4a\x00\x00\x23\x1b\x06\x1f\x6f\xa4\ +\x00\x00\x21\x20\x06\x32\xe3\xe3\x00\x00\x44\xf9\x06\x5b\x01\x15\ +\x00\x00\x03\xaf\x06\x69\xd0\x04\x00\x00\x20\xb6\x06\x9f\x6f\xd4\ +\x00\x00\x06\xd5\x06\xd6\x3f\xa4\x00\x00\x22\x98\x06\xe6\x2f\x43\ +\x00\x00\x11\xc7\x07\x00\xcc\xc4\x00\x00\x3c\x78\x07\x07\x84\xba\ +\x00\x00\x45\x35\x07\x08\x43\x0e\x00\x00\x26\x62\x07\x16\x58\x05\ +\x00\x00\x38\x6a\x07\x25\x74\x53\x00\x00\x29\x57\x07\x28\xff\x15\ +\x00\x00\x0d\x67\x07\x36\x51\x26\x00\x00\x13\x9a\x07\x5c\xdc\x04\ +\x00\x00\x20\x29\x07\x60\x23\xf3\x00\x00\x03\x08\x07\xca\xf8\x87\ +\x00\x00\x38\x15\x08\x25\x81\xc4\x00\x00\x06\x80\x08\x4a\x45\xd9\ +\x00\x00\x36\xe3\x08\x65\x4c\x95\x00\x00\x1b\xec\x08\xc5\xe3\x35\ +\x00\x00\x1b\x29\x08\xca\xc9\x74\x00\x00\x14\xcc\x08\xfb\xb8\xa4\ +\x00\x00\x09\xd4\x09\x69\xac\xa7\x00\x00\x1e\xa7\x09\x6c\x6c\xa7\ +\x00\x00\x0a\x61\x09\x9f\xcc\xde\x00\x00\x22\x28\x09\xba\xe6\x35\ +\x00\x00\x10\x32\x09\xba\xe6\x35\x00\x00\x35\x5d\x09\xc5\xbe\xca\ +\x00\x00\x09\x34\x09\xe3\x98\xe4\x00\x00\x25\x74\x09\xed\x98\x55\ +\x00\x00\x30\x7a\x0a\x3e\x06\x83\x00\x00\x04\xd0\x0a\x3f\x1f\xd6\ +\x00\x00\x05\x08\x0a\x3f\x2b\x25\x00\x00\x05\x89\x0a\x3f\x5d\xac\ +\x00\x00\x06\x08\x0a\x7f\xee\xa3\x00\x00\x43\x85\x0a\xb6\xc8\x9a\ +\x00\x00\x0a\xc1\x0a\xbf\x46\x0e\x00\x00\x1d\x8c\x0a\xd6\x07\x84\ +\x00\x00\x20\x5a\x0b\x0a\xc3\xf3\x00\x00\x00\x73\x0b\x51\x30\xa8\ +\x00\x00\x2d\x9a\x0b\x65\xda\xb3\x00\x00\x3a\x21\x0b\x8d\x97\x93\ +\x00\x00\x41\x23\x0b\x9c\x5b\xe7\x00\x00\x08\x97\x0b\xb9\xe8\x93\ +\x00\x00\x2e\x01\x0b\xc4\xb1\x23\x00\x00\x27\xe6\x0c\x02\xac\xd7\ +\x00\x00\x02\xd9\x0c\x02\xac\xd7\x00\x00\x26\xc5\x0c\x25\x3e\x53\ +\x00\x00\x31\x39\x0c\x3c\x8b\x33\x00\x00\x43\xc0\x0c\x41\x0a\x83\ +\x00\x00\x44\x0c\x0c\x4e\x9b\x23\x00\x00\x30\xc5\x0c\x98\x80\x23\ +\x00\x00\x44\x56\x0c\xc4\xd0\x80\x00\x00\x24\x5c\x0c\xdf\x5a\x1e\ +\x00\x00\x01\xa0\x0c\xfc\x97\x06\x00\x00\x1e\xda\x0d\x03\x26\xb4\ +\x00\x00\x02\x9a\x0d\x08\x90\xf3\x00\x00\x1a\xbe\x0d\x1e\xda\xa4\ +\x00\x00\x03\x41\x0d\x3b\x3b\x49\x00\x00\x34\x15\x0d\xa8\x3a\x35\ +\x00\x00\x17\x8b\x0d\xc1\x7d\x47\x00\x00\x24\xb4\x0d\xfa\x53\xe5\ +\x00\x00\x08\x09\x0e\x69\x87\x13\x00\x00\x2f\x9a\x0e\x8c\xd7\x43\ +\x00\x00\x33\x6a\x0e\x98\x0a\xd6\x00\x00\x1d\xd2\x0e\xab\x8d\x1f\ +\x00\x00\x39\x13\x0e\xb9\x1b\xf2\x00\x00\x14\x6b\x0e\xec\x0b\x9e\ +\x00\x00\x26\xfd\x0f\x16\x4a\x24\x00\x00\x1c\xf9\x0f\x17\xc7\xa3\ +\x00\x00\x28\xc0\x0f\x55\xc1\x57\x00\x00\x06\x40\x0f\x78\x41\x05\ +\x00\x00\x42\x96\x0f\x79\xe3\xf3\x00\x00\x29\x9c\x0f\x95\xd5\x09\ +\x00\x00\x18\x4f\x0f\xa2\x16\x43\x00\x00\x1c\xc5\x0f\xc0\xb8\xb4\ +\x00\x00\x0d\x14\x0f\xd0\x39\x44\x00\x00\x02\x57\x0f\xe5\x74\x74\ +\x00\x00\x00\xa9\x0f\xf3\xe8\x33\x00\x00\x3b\xfc\x69\x00\x00\x46\ +\x1b\x03\x00\x00\x00\x1c\x00\x20\x00\x53\x00\x6b\x00\x61\x00\x70\ +\x00\x61\x00\x20\x00\x62\x00\x79\x00\x67\x00\x67\x00\x6e\x00\x61\ +\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x20\x43\x72\x65\ +\x61\x74\x65\x20\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x4c\x00\xe4\x00\ +\x67\x00\x67\x00\x20\x00\x74\x00\x69\x00\x6c\x00\x6c\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x03\x41\x64\x64\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x41\x00\x64\x00\x64\x00\ +\x69\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x72\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x41\x64\x64\x69\x74\x69\x6f\x6e\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\ +\x41\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x41\x6c\x69\x67\x6e\ +\x6d\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x3e\x00\x41\x00\x6c\x00\x6c\x00\x74\x00\x20\x00\x62\x00\ +\x72\x00\x61\x00\x21\x00\x20\x00\x69\x00\x6e\x00\x67\x00\x61\x00\ +\x20\x00\x70\x00\x72\x00\x6f\x00\x62\x00\x6c\x00\x65\x00\x6d\x00\ +\x20\x00\x68\x00\x69\x00\x74\x00\x74\x00\x61\x00\x64\x00\x65\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x41\x6c\x6c\x20\x67\ +\x6f\x6f\x64\x21\x20\x6e\x6f\x20\x70\x72\x6f\x62\x6c\x65\x6d\x73\ +\x20\x66\x6f\x75\x6e\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x0c\x00\x56\x00\x69\x00\x6e\x00\x6b\x00\x65\x00\ +\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x6e\x67\x6c\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\ +\x41\x00\x78\x00\x6c\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x41\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x52\x00\x41\x00\x78\x00\x65\x00\x6c\x00\x73\ +\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x20\x00\x73\x00\x6f\ +\x00\x6d\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x6e\x00\x61\x00\x20\ +\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x72\ +\x00\x20\x00\xe4\x00\x72\x00\x20\x00\x62\x00\x79\x00\x67\x00\x67\ +\x00\x64\x00\x20\x00\x70\x00\xe5\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x27\x41\x78\x65\x73\x20\x73\x79\x73\x74\x65\x6d\x73\x20\x74\ +\x68\x69\x73\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x69\x73\ +\x20\x62\x75\x69\x6c\x74\x20\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x08\x00\x41\x00\x78\x00\x65\x00\x6c\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\x69\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x00\x42\x00\ +\x61\x00\x73\x00\x65\x00\x20\x00\x32\x00\x44\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0e\x42\x61\x73\x65\x20\x32\x44\x20\x6f\x62\x6a\x65\x63\ +\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\ +\x00\x42\x00\x61\x00\x73\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\ +\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0e\x42\x61\x73\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\ +\x42\x00\x79\x00\x67\x00\x67\x00\x6e\x00\x61\x00\x64\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x4b\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x3c\x00\x4b\x00\x6f\x00\x6d\x00\x70\x00\ +\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x20\x00\ +\x69\x00\x20\x00\x64\x00\x65\x00\x74\x00\x20\x00\x68\x00\xe4\x00\ +\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x43\x6f\x6d\ +\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x10\x00\x43\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\ +\x6e\x00\x75\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\ +\x6f\x6e\x74\x69\x6e\x75\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x48\x00\x44\x00\x65\x00\x74\x00\x20\x00\x67\ +\x00\x69\x00\x63\x00\x6b\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\ +\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\x62\x00\x65\x00\x72\ +\x00\xe4\x00\x6b\x00\x6e\x00\x61\x00\x20\x00\x76\x00\xe4\x00\x67\ +\x00\x67\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1f\x43\x6f\x75\x6c\x64\x6e\x27\x74\ +\x20\x63\x6f\x6d\x70\x75\x74\x65\x20\x74\x68\x65\x20\x77\x61\x6c\ +\x6c\x20\x73\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x3a\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\ +\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x49\x00\x66\x00\x63\x00\x4f\x00\x70\ +\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x0a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x43\x6f\x75\x6c\x64\x6e\ +\x27\x74\x20\x6c\x6f\x63\x61\x74\x65\x20\x49\x66\x63\x4f\x70\x65\ +\x6e\x53\x68\x65\x6c\x6c\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x14\x00\x53\x00\x6b\x00\x61\x00\x70\x00\x61\ +\x00\x20\x00\x61\x00\x78\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x41\x78\x69\x73\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x53\ +\x00\x6b\x00\x61\x00\x70\x00\x61\x00\x20\x00\x74\x00\x61\x00\x6b\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\ +\x20\x52\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x1e\x00\x53\x00\x6b\x00\x61\x00\x70\x00\x61\x00\x20\ +\x00\x73\x00\x6e\x00\x69\x00\x74\x00\x74\x00\x70\x00\x6c\x00\x61\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\ +\x74\x65\x20\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\ +\x53\x00\x6b\x00\x61\x00\x70\x00\x61\x00\x20\x00\x70\x00\x6c\x00\ +\x61\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\ +\x72\x65\x61\x74\x65\x20\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x00\x53\x00\x6b\x00\x61\x00\ +\x70\x00\x61\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\ +\x74\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\ +\x72\x65\x61\x74\x65\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x53\ +\x00\x6b\x00\x61\x00\x70\x00\x61\x00\x20\x00\x76\x00\xe4\x00\x67\ +\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\ +\x74\x65\x20\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x1a\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\ +\x00\x65\x00\x20\x00\x57\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x72\x65\x61\x74\x65\ +\x20\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x28\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\ +\x00\x65\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\x63\x00\x6f\ +\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\x74\x65\x20\x6e\ +\x65\x77\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x43\x00\x72\x00\ +\x65\x00\x61\x00\x74\x00\x65\x00\x2f\x00\x75\x00\x70\x00\x64\x00\ +\x61\x00\x74\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\ +\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x17\x43\x72\x65\x61\x74\x65\x2f\x75\x70\x64\x61\x74\x65\ +\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x44\x00\x69\x00\x73\x00\ +\x74\x00\x61\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x40\x00\x41\x00\x76\x00\x73\x00\x74\ +\x00\xe5\x00\x6e\x00\x64\x00\x20\x00\x6f\x00\x63\x00\x68\x00\x20\ +\x00\x76\x00\x69\x00\x6e\x00\x6b\x00\x6c\x00\x61\x00\x72\x00\x20\ +\x00\x6d\x00\x65\x00\x6c\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\x61\ +\x00\x78\x00\x6c\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x21\x44\x69\x73\x74\x61\x6e\x63\x65\x73\x20\x61\x6e\x64\x20\ +\x61\x6e\x67\x6c\x65\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x61\ +\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x10\x00\x52\x00\x65\x00\x64\x00\x69\x00\x67\x00\x65\x00\x72\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4e\x00\ +\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x20\x00\x72\x00\x65\x00\ +\x6d\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\ +\x70\x00\x6c\x00\x69\x00\x74\x00\x74\x00\x65\x00\x72\x00\x20\x00\ +\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x77\x00\x61\x00\x6c\x00\ +\x6c\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x27\x45\x72\x72\x6f\x72\x20\x72\x65\x6d\ +\x6f\x76\x69\x6e\x67\x20\x73\x70\x6c\x69\x74\x74\x65\x72\x20\x66\ +\x72\x6f\x6d\x20\x77\x61\x6c\x6c\x20\x73\x68\x61\x70\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x58\x00\x45\x00\ +\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x43\x00\x6f\x00\ +\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x64\x00\ +\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x65\x00\ +\x20\x00\x63\x00\x68\x00\x61\x00\x72\x00\x61\x00\x63\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\x64\x00\ +\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x45\ +\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x64\ +\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\x61\x72\x61\x63\x74\ +\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5a\x00\x45\x00\x72\x00\x72\ +\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x43\x00\x6f\x00\x75\x00\x6c\ +\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x64\x00\x65\x00\x74\ +\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x63\ +\x00\x68\x00\x61\x00\x72\x00\x61\x00\x63\x00\x74\x00\x65\x00\x72\ +\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\x64\x00\x69\x00\x6e\ +\x00\x67\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x45\x72\ +\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x64\x65\ +\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\ +\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x0a\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\x45\x00\x72\x00\x72\ +\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x49\x00\x6e\x00\x76\x00\x61\ +\x00\x6c\x00\x69\x00\x64\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1a\x45\x72\x72\x6f\x72\x3a\x20\x49\ +\x6e\x76\x61\x6c\x69\x64\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\ +\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x08\x00\x47\x00\x6f\x00\x6c\x00\x76\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x14\x00\x47\x00\x72\x00\x75\x00\x70\x00\ +\x70\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x47\x72\x6f\x75\x70\x69\x6e\x67\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x48\x00\x65\ +\x00\x69\x00\x67\x00\x68\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x06\x48\x65\x69\x67\x68\x74\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x56\x00\x49\x00\x46\x00\x43\x00\x20\x00\ +\x53\x00\x63\x00\x68\x00\x65\x00\x6d\x00\x61\x00\x20\x00\x6e\x00\ +\x6f\x00\x74\x00\x20\x00\x66\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\ +\x2c\x00\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\x69\x00\x6d\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x64\x00\x69\x00\x73\x00\ +\x61\x00\x62\x00\x6c\x00\x65\x00\x64\x00\x2e\x00\x0a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x2b\x49\x46\x43\x20\x53\x63\x68\x65\x6d\ +\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x49\x46\x43\ +\x20\x69\x6d\x70\x6f\x72\x74\x20\x64\x69\x73\x61\x62\x6c\x65\x64\ +\x2e\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\xd2\x00\x49\x00\x66\x00\x20\x00\x54\x00\x72\x00\x75\x00\x65\x00\ +\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\ +\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\ +\x65\x00\x2c\x00\x20\x00\x69\x00\x74\x00\x20\x00\x77\x00\x69\x00\ +\x6c\x00\x6c\x00\x20\x00\x75\x00\x73\x00\x65\x00\x20\x00\x69\x00\ +\x74\x00\x73\x00\x20\x00\x62\x00\x6f\x00\x72\x00\x64\x00\x65\x00\ +\x72\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x20\x00\x61\x00\ +\x73\x00\x20\x00\x74\x00\x72\x00\x61\x00\x63\x00\x65\x00\x2c\x00\ +\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x64\x00\x69\x00\x73\x00\ +\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\ +\x65\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x69\x49\x66\x20\ +\x54\x72\x75\x65\x2c\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\ +\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\ +\x20\x66\x61\x63\x65\x2c\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x75\ +\x73\x65\x20\x69\x74\x73\x20\x62\x6f\x72\x64\x65\x72\x20\x77\x69\ +\x72\x65\x20\x61\x73\x20\x74\x72\x61\x63\x65\x2c\x20\x61\x6e\x64\ +\x20\x64\x69\x73\x63\x6f\x6e\x73\x69\x64\x65\x72\x20\x74\x68\x65\ +\x20\x66\x61\x63\x65\x2e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x1a\x00\x4e\x00\xe4\x00\x74\x00\x20\x00\x74\x00\ +\x69\x00\x6c\x00\x6c\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x74\x6f\ +\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x08\x00\x4e\x00\x61\x00\x6d\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x4e\x61\x6d\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x49\x00\x6e\x00\x67\ +\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\ +\x00\x20\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x65\x00\x72\x00\x61\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4e\x6f\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x36\x00\x49\x00\ +\x6e\x00\x67\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x20\x00\x73\x00\x6b\x00\xe4\x00\x72\x00\x73\x00\ +\x20\x00\x61\x00\x76\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\ +\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x4e\x6f\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x72\x65\x20\x63\x75\x74\x20\ +\x62\x79\x20\x74\x68\x65\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x8c\x00\x49\x00\x6e\x00\ +\x67\x00\x65\x00\x6e\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\ +\x20\x00\x68\x00\x61\x00\x72\x00\x20\x00\x62\x00\x65\x00\x72\x00\ +\xe4\x00\x6b\x00\x6e\x00\x61\x00\x74\x00\x73\x00\x20\x00\xe4\x00\ +\x6e\x00\x6e\x00\x75\x00\x2c\x00\x20\x00\x76\x00\xe4\x00\x6c\x00\ +\x6a\x00\x20\x00\x74\x00\x72\x00\xe5\x00\x64\x00\x72\x00\x61\x00\ +\x6d\x00\x73\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x63\x00\x68\x00\x20\x00\ +\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x61\x00\x20\x00\ +\x69\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x4b\x4e\x6f\x20\x73\x68\x61\x70\x65\x20\x68\x61\x73\x20\x62\x65\ +\x65\x6e\x20\x63\x6f\x6d\x70\x75\x74\x65\x64\x20\x79\x65\x74\x2c\ +\x20\x73\x65\x6c\x65\x63\x74\x20\x77\x69\x72\x65\x66\x72\x61\x6d\ +\x65\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x20\x61\x6e\x64\x20\ +\x72\x65\x6e\x64\x65\x72\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x4f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x07\x4f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x08\x00\x53\x00\x69\x00\x64\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x50\x61\x67\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x54\x00\x61\ +\x00\x20\x00\x62\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x52\x65\x6d\x6f\x76\x65\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x06\x00\x54\x00\x61\x00\x6b\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x50\x00\x6c\ +\x00\x61\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x3a\x00\x48\x00\x6f\x00\x70\x00\x70\x00\x61\x00\x72\x00\ +\x20\x00\xf6\x00\x76\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x67\x00\ +\x69\x00\x6c\x00\x74\x00\x69\x00\x67\x00\x74\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x3a\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x19\x53\x6b\x69\x70\x70\x69\x6e\x67\x20\ +\x69\x6e\x76\x61\x6c\x69\x64\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\ +\x53\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x74\x00\x61\x00\x20\x00\ +\x6e\x00\xe4\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\ +\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x10\x00\x53\x00\x74\x00\x72\x00\x75\ +\x00\x6b\x00\x74\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x53\x00\x75\x00\x62\ +\x00\x74\x00\x72\x00\x61\x00\x6b\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x75\ +\x62\x74\x72\x61\x63\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x78\x00\x54\x00\x68\x00\x65\x00\ +\x20\x00\x61\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\ +\x6f\x00\x6e\x00\x20\x00\x69\x00\x74\x00\x73\x00\x20\x00\x62\x00\ +\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\x61\x00\ +\x70\x00\x70\x00\x6c\x00\x69\x00\x63\x00\x61\x00\x62\x00\x6c\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3c\x54\x68\x65\x20\x61\ +\x6c\x69\x67\x6e\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x69\x73\ +\x20\x77\x61\x6c\x6c\x20\x6f\x6e\x20\x69\x74\x73\x20\x62\x61\x73\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x69\x66\x20\x61\x70\x70\ +\x6c\x69\x63\x61\x62\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x28\x00\x56\x00\x69\x00\x6e\x00\x6b\x00\x65\ +\x00\x6c\x00\x6e\x00\x20\x00\x70\x00\xe5\x00\x20\x00\x64\x00\x65\ +\x00\x74\x00\x74\x00\x61\x00\x20\x00\x74\x00\x61\x00\x6b\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x16\x54\x68\x65\x20\x61\x6e\x67\x6c\ +\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x72\x6f\x6f\x66\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x56\x00\ +\x69\x00\x6e\x00\x6b\x00\x6c\x00\x61\x00\x72\x00\x6e\x00\x61\x00\ +\x20\x00\x70\x00\xe5\x00\x20\x00\x76\x00\x61\x00\x72\x00\x6a\x00\ +\x65\x00\x20\x00\x61\x00\x78\x00\x65\x00\x6c\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x17\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\x73\x20\ +\x6f\x66\x20\x65\x61\x63\x68\x20\x61\x78\x69\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x48\x00\x56\x00\x69\x00\ +\x73\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x73\x00\x74\x00\ +\x6f\x00\x72\x00\x6c\x00\x65\x00\x6b\x00\x65\x00\x6e\x00\x20\x00\ +\x70\x00\xe5\x00\x20\x00\x64\x00\x65\x00\x74\x00\x74\x00\x61\x00\ +\x20\x00\x73\x00\x6e\x00\x69\x00\x74\x00\x74\x00\x70\x00\x6c\x00\ +\x61\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x26\x54\x68\x65\ +\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x73\x69\x7a\x65\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\ +\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x92\x00\x44\x00\x65\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x6e\x00\x75\x00\x6d\x00\x6d\x00\x65\ +\x00\x72\x00\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\x73\x00\x6b\ +\x00\x61\x00\x20\x00\x75\x00\x74\x00\x65\x00\x73\x00\x6c\x00\x75\ +\x00\x74\x00\x61\x00\x73\x00\x20\x00\x6e\x00\xe4\x00\x72\x00\x20\ +\x00\x64\x00\x65\x00\x6e\x00\x6e\x00\x61\x00\x20\x00\x73\x00\x74\ +\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x72\x00\x20\x00\xe4\ +\x00\x72\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x72\x00\x61\ +\x00\x64\x00\x20\x00\x70\x00\xe5\x00\x20\x00\x61\x00\x78\x00\x6c\ +\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\x54\x68\ +\x65\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\x6e\x75\x6d\x62\x65\x72\ +\x73\x20\x74\x6f\x20\x65\x78\x63\x6c\x75\x64\x65\x20\x77\x68\x65\ +\x6e\x20\x74\x68\x69\x73\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\ +\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x78\x65\ +\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x7e\ +\x00\x59\x00\x74\x00\x61\x00\x6e\x00\x74\x00\x61\x00\x6c\x00\x65\ +\x00\x74\x00\x20\x00\x70\x00\xe5\x00\x20\x00\x64\x00\x65\x00\x74\ +\x00\x20\x00\x62\x00\x61\x00\x73\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\x61\ +\x00\x6e\x00\x76\x00\xe4\x00\x6e\x00\x64\x00\x65\x00\x73\x00\x20\ +\x00\x66\x00\xf6\x00\x72\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\ +\x00\x73\x00\x6b\x00\x61\x00\x70\x00\x61\x00\x20\x00\x64\x00\x65\ +\x00\x74\x00\x74\x00\x61\x00\x20\x00\x74\x00\x61\x00\x6b\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x3a\x54\x68\x65\x20\x66\x61\x63\x65\ +\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x74\x68\x65\x20\x62\ +\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x75\x73\x65\x64\x20\ +\x74\x6f\x20\x62\x75\x69\x6c\x64\x20\x74\x68\x69\x73\x20\x72\x6f\ +\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x30\x00\x48\x00\xf6\x00\x6a\x00\x64\x00\x65\x00\x6e\x00\x20\x00\ +\x70\x00\xe5\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x6e\x00\x61\x00\ +\x20\x00\x76\x00\xe5\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x65\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x54\x68\x65\x20\x68\ +\x65\x69\x67\x68\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x66\x6c\ +\x6f\x6f\x72\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\xb0\x00\x54\x00\x68\x00\x65\x00\x20\x00\x68\x00\x65\x00\x69\ +\x00\x67\x00\x68\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\ +\x00\x2e\x00\x20\x00\x4b\x00\x65\x00\x65\x00\x70\x00\x20\x00\x30\ +\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\ +\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x2e\x00\x20\ +\x00\x4e\x00\x6f\x00\x74\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\ +\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x73\ +\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\ +\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\ +\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x58\x54\x68\x65\x20\ +\x68\x65\x69\x67\x68\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\ +\x61\x6c\x6c\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\x20\ +\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x2e\x20\x4e\x6f\x74\x20\x75\ +\x73\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\ +\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x73\ +\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x88\x00\x48\x00\xf6\x00\x6a\x00\x64\x00\x20\x00\x65\x00\ +\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\ +\x72\x00\x75\x00\x64\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x00\ +\x73\x00\x64\x00\x6a\x00\x75\x00\x70\x00\x20\x00\x70\x00\xe5\x00\ +\x20\x00\x64\x00\x65\x00\x74\x00\x74\x00\x61\x00\x20\x00\x65\x00\ +\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x20\x00\ +\x42\x00\x65\x00\x68\x00\xe5\x00\x6c\x00\x6c\x00\x20\x00\x30\x00\ +\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\ +\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x6b\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x43\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\ +\x6f\x72\x20\x65\x78\x74\x72\x75\x73\x69\x6f\x6e\x20\x64\x65\x70\ +\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\ +\x6e\x74\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\x20\x61\ +\x75\x74\x6f\x6d\x61\x74\x69\x63\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x34\x00\x49\x00\x6e\x00\x74\x00\x65\x00\ +\x72\x00\x76\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x74\x00\x20\x00\ +\x6d\x00\x65\x00\x6c\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\x61\x00\ +\x78\x00\x6c\x00\x61\x00\x72\x00\x6e\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1a\x54\x68\x65\x20\x69\x6e\x74\x65\x72\x76\x61\ +\x6c\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x61\x78\x65\x73\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x24\x00\x4c\ +\x00\xe4\x00\x6e\x00\x67\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x70\ +\x00\xe5\x00\x20\x00\x61\x00\x78\x00\x6c\x00\x61\x00\x72\x00\x6e\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x68\x65\x20\ +\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\ +\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x76\x00\x4c\x00\xe4\x00\x6e\x00\x67\x00\x64\x00\x65\x00\x6e\x00\ +\x20\x00\x70\x00\xe5\x00\x20\x00\x64\x00\x65\x00\x74\x00\x74\x00\ +\x61\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x2c\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x64\x00\x65\x00\ +\x74\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x62\x00\ +\x61\x00\x73\x00\x65\x00\x72\x00\x61\x00\x74\x00\x73\x00\x20\x00\ +\x70\x00\xe5\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x70\x00\x72\x00\ +\x6f\x00\x66\x00\x69\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x35\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x74\ +\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\ +\x6e\x6f\x74\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\ +\x72\x6f\x66\x69\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\xae\x00\x44\x00\x65\x00\x6e\x00\x20\x00\x6e\x00\ +\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x61\x00\x20\x00\x65\x00\ +\x78\x00\x74\x00\x72\x00\x75\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\ +\x73\x00\x72\x00\x69\x00\x6b\x00\x74\x00\x6e\x00\x69\x00\x6e\x00\ +\x67\x00\x65\x00\x6e\x00\x20\x00\x70\x00\xe5\x00\x20\x00\x64\x00\ +\x65\x00\x74\x00\x74\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x20\x00\x28\x00\x42\x00\x65\x00\x68\x00\ +\xe5\x00\x6c\x00\x6c\x00\x20\x00\x28\x00\x30\x00\x2c\x00\x30\x00\ +\x2c\x00\x30\x00\x29\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\ +\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\ +\x73\x00\x6b\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\ +\x6c\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x54\x68\x65\ +\x20\x6e\x6f\x72\x6d\x61\x6c\x20\x65\x78\x74\x72\x75\x73\x69\x6f\ +\x6e\x20\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\ +\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x6b\x65\x65\x70\ +\x20\x28\x30\x2c\x30\x2c\x30\x29\x20\x66\x6f\x72\x20\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x20\x6e\x6f\x72\x6d\x61\x6c\x29\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x54\x00\ +\x68\x00\x65\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x65\x00\x72\x00\ +\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x73\x00\x74\x00\ +\x79\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\ +\x68\x65\x20\x6e\x75\x6d\x65\x72\x61\x74\x69\x6f\x6e\x20\x73\x74\ +\x79\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x96\x00\x44\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\x6d\ +\x00\xe5\x00\x73\x00\x74\x00\x65\x00\x20\x00\x62\x00\x65\x00\x61\ +\x00\x6b\x00\x74\x00\x61\x00\x73\x00\x20\x00\x61\x00\x76\x00\x20\ +\x00\x64\x00\x65\x00\x74\x00\x74\x00\x61\x00\x20\x00\x73\x00\x6e\ +\x00\x69\x00\x74\x00\x74\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x2e\ +\x00\x20\x00\x54\x00\x6f\x00\x6d\x00\x20\x00\x69\x00\x6e\x00\x6e\ +\x00\x65\x00\x62\x00\xe4\x00\x72\x00\x20\x00\x68\x00\x65\x00\x6c\ +\x00\x61\x00\x20\x00\x64\x00\x6f\x00\x6b\x00\x75\x00\x6d\x00\x65\ +\x00\x6e\x00\x74\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x53\x54\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x74\x68\ +\x61\x74\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\ +\x64\x65\x72\x65\x64\x20\x62\x79\x20\x74\x68\x69\x73\x20\x73\x65\ +\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x2e\x20\x45\x6d\x70\ +\x74\x79\x20\x6d\x65\x61\x6e\x73\x20\x61\x6c\x6c\x20\x64\x6f\x63\ +\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x36\x00\x53\x00\x74\x00\x6f\x00\x72\x00\x6c\x00\x65\ +\x00\x6b\x00\x65\x00\x6e\x00\x20\x00\x70\x00\xe5\x00\x20\x00\x61\ +\x00\x78\x00\x65\x00\x6c\x00\x2d\x00\x62\x00\x75\x00\x62\x00\x62\ +\x00\x6c\x00\x6f\x00\x72\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1c\x54\x68\x65\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\ +\x74\x68\x65\x20\x61\x78\x69\x73\x20\x62\x75\x62\x62\x6c\x65\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x76\x00\ +\x42\x00\x72\x00\x65\x00\x64\x00\x64\x00\x65\x00\x6e\x00\x20\x00\ +\x70\x00\xe5\x00\x20\x00\x64\x00\x65\x00\x74\x00\x74\x00\x61\x00\ +\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x2c\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x64\x00\x65\x00\x74\x00\ +\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x62\x00\x61\x00\ +\x73\x00\x65\x00\x72\x00\x61\x00\x74\x00\x73\x00\x20\x00\x70\x00\ +\xe5\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x66\x00\x69\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x54\ +\x68\x65\x20\x77\x69\x64\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\ +\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\x6e\x6f\x74\ +\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\x72\x6f\x66\ +\x69\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x80\x00\x54\x00\x68\x00\x65\x00\x20\x00\x77\x00\x69\x00\x64\ +\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x2e\ +\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x20\x00\x75\x00\x73\x00\x65\ +\x00\x64\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\ +\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\ +\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\ +\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x40\x54\x68\x65\x20\ +\x77\x69\x64\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\ +\x6c\x6c\x2e\x20\x4e\x6f\x74\x20\x75\x73\x65\x64\x20\x69\x66\x20\ +\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\ +\x65\x64\x20\x6f\x6e\x20\x61\x20\x66\x61\x63\x65\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x54\x00\x68\x00\ +\x69\x00\x63\x00\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x54\x68\x69\x63\x6b\x6e\x65\x73\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\ +\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6d\x00\x65\x00\x73\x00\ +\x68\x00\x20\x00\x69\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x20\x00\ +\x69\x00\x6e\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x20\x00\ +\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1d\x54\x68\x69\x73\x20\x6d\x65\x73\x68\x20\x69\x73\x20\ +\x61\x6e\x20\x69\x6e\x76\x61\x6c\x69\x64\x20\x73\x6f\x6c\x69\x64\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x06\x00\ +\x54\x00\x79\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\ +\x79\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x1e\x00\x54\x00\x79\x00\x70\x00\x6b\x00\x6f\x00\x6e\x00\x76\ +\x00\x65\x00\x72\x00\x74\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x54\x79\x70\x65\x20\x63\ +\x6f\x6e\x76\x65\x72\x73\x69\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x44\x00\x65\x00\x74\x00\x20\ +\x00\x67\x00\x69\x00\x63\x00\x6b\x00\x20\x00\x69\x00\x6e\x00\x74\ +\x00\x65\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\x73\x00\x6b\ +\x00\x61\x00\x70\x00\x61\x00\x20\x00\x65\x00\x74\x00\x74\x00\x20\ +\x00\x74\x00\x61\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\ +\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\ +\x20\x61\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x34\x00\x55\x00\x6e\x00\x61\x00\x62\x00\x6c\ +\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1a\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\ +\x65\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x44\x00\ +\x65\x00\x6c\x00\x61\x00\x20\x00\x75\x00\x70\x00\x70\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x55\x6e\x67\x72\x6f\x75\x70\x69\x6e\ +\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\ +\x00\x56\x00\x79\x00\x20\x00\xf6\x00\x76\x00\x65\x00\x72\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x07\x56\x69\x65\x77\x20\x6f\x66\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x56\ +\x00\xe4\x00\x67\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x26\x00\x41\x00\x6c\x00\x74\x00\x65\x00\x72\x00\x6e\x00\ +\x61\x00\x74\x00\x69\x00\x76\x00\x20\x00\x66\x00\xf6\x00\x72\x00\ +\x20\x00\x76\x00\xe4\x00\x67\x00\x67\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0c\x57\x61\x6c\x6c\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x57\ +\x00\x61\x00\x6c\x00\x6c\x00\x54\x00\x72\x00\x61\x00\x63\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x57\x61\x6c\x6c\x54\x72\ +\x61\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0a\x00\x42\x00\x72\x00\x65\x00\x64\x00\x64\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x05\x57\x69\x64\x74\x68\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x46\x00\xf6\x00\x6e\ +\x00\x73\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x0a\x00\x57\x00\x69\x00\x72\x00\x65\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x57\x69\x72\x65\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\ +\x5a\x00\x20\x00\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x5a\x20\x6f\x66\x66\x73\x65\ +\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x30\ +\x00\x53\x00\x74\x00\xe4\x00\x6e\x00\x67\x00\x65\x00\x72\x00\x20\ +\x00\x53\x00\x6b\x00\x69\x00\x73\x00\x73\x00\x20\x00\x72\x00\x65\ +\x00\x64\x00\x69\x00\x67\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x63\x6c\x6f\x73\x69\x6e\ +\x67\x20\x53\x6b\x65\x74\x63\x68\x20\x65\x64\x69\x74\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x36\x00\x63\x00\x6f\ +\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x20\x00\x61\ +\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x63\x00\x6c\x00\x6f\ +\x00\x73\x00\x65\x00\x64\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\ +\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x63\x6f\x6e\x74\ +\x61\x69\x6e\x73\x20\x61\x20\x6e\x6f\x6e\x2d\x63\x6c\x6f\x73\x65\ +\x64\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x5a\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\ +\x00\x69\x00\x6e\x00\x73\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\ +\x00\x73\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x61\ +\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x70\ +\x00\x61\x00\x72\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\ +\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x63\x6f\x6e\x74\x61\x69\ +\x6e\x73\x20\x66\x61\x63\x65\x73\x20\x74\x68\x61\x74\x20\x61\x72\ +\x65\x20\x6e\x6f\x74\x20\x70\x61\x72\x74\x20\x6f\x66\x20\x61\x6e\ +\x79\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x36\x00\x69\x00\x6e\x00\x6e\x00\x65\x00\x68\ +\x00\xe5\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x69\x00\x6e\ +\x00\x74\x00\x65\x00\x20\x00\x6e\x00\xe5\x00\x67\x00\x6f\x00\x6e\ +\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x19\x64\x6f\x65\x73\x6e\x27\x74\x20\x63\x6f\ +\x6e\x74\x61\x69\x6e\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x66\ +\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x25\x00\x73\x00\x20\x00\x73\ +\x00\x75\x00\x63\x00\x63\x00\x65\x00\x73\x00\x73\x00\x66\x00\x75\ +\x00\x6c\x00\x6c\x00\x79\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x64\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1d\x66\x69\x6c\x65\x20\x25\x73\x20\x73\x75\x63\x63\x65\x73\ +\x73\x66\x75\x6c\x6c\x79\x20\x63\x72\x65\x61\x74\x65\x64\x2e\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x00\xe4\ +\x00\x72\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x73\ +\x00\x74\x00\xe4\x00\x6e\x00\x67\x00\x64\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0d\x69\x73\x20\x6e\x6f\x74\x20\x63\x6c\x6f\x73\x65\ +\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1c\ +\x00\xe4\x00\x72\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x20\ +\x00\x67\x00\x69\x00\x6c\x00\x74\x00\x69\x00\x67\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x69\x73\x20\x6e\x6f\x74\x20\x76\x61\x6c\ +\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x52\x00\x70\x00\x79\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\ +\x64\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\ +\x6f\x00\x75\x00\x6e\x00\x64\x00\x2c\x00\x20\x00\x6e\x00\x6f\x00\ +\x20\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\ +\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x2e\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x70\x79\x63\ +\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\ +\x2c\x20\x6e\x6f\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\ +\x70\x6f\x72\x74\x2e\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x62\x00\x74\x00\x61\x00\x20\x00\x62\x00\x6f\x00\ +\x72\x00\x74\x00\x20\x00\x73\x00\x6b\x00\x69\x00\x73\x00\x73\x00\ +\x20\x00\x73\x00\x74\x00\xf6\x00\x64\x00\x20\x00\x66\x00\xf6\x00\ +\x72\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\x75\x00\x6e\x00\ +\x64\x00\x76\x00\x69\x00\x6b\x00\x61\x00\x20\x00\x6b\x00\x6f\x00\ +\x72\x00\x73\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\ +\x6e\x00\x73\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x32\x72\x65\x6d\x6f\x76\x69\x6e\x67\x20\x73\x6b\x65\x74\x63\x68\ +\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x74\x6f\x20\x61\x76\x6f\x69\ +\x64\x20\x63\x72\x6f\x73\x73\x2d\x72\x65\x66\x65\x72\x65\x6e\x63\ +\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x2a\x00\x73\x00\x75\x00\x63\x00\x63\x00\x65\x00\x73\x00\x73\ +\x00\x66\x00\x75\x00\x6c\x00\x6c\x00\x79\x00\x20\x00\x77\x00\x72\ +\x00\x69\x00\x74\x00\x74\x00\x65\x00\x6e\x00\x20\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x15\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\ +\x6c\x79\x20\x77\x72\x69\x74\x74\x65\x6e\x20\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ +\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6e\x00\x64\ +\x00\x6f\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x74\x68\ +\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\ +\x74\x68\x69\x73\x20\x77\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x26\x00\x4c\x00\xe4\x00\x67\ +\x00\x67\x00\x20\x00\x74\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x6b\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\ +\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x76\x00\x4c\x00\xe4\x00\x67\ +\x00\x67\x00\x65\x00\x72\x00\x20\x00\x74\x00\x69\x00\x6c\x00\x6c\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x64\ +\x00\x61\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ +\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\x20\ +\x00\x74\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x64\x00\x65\x00\x74\ +\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x69\x00\x76\x00\x61\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x41\x64\x64\x73\x20\x74\ +\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\ +\x6f\x6e\x65\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x61\x63\ +\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\ +\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x08\x00\x41\ +\x00\x78\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x41\x78\x69\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x41\x78\ +\x69\x73\x01\x03\x00\x00\x00\x2e\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x61\ +\x00\x78\x00\x69\x00\x73\x00\x20\x00\x73\x00\x79\x00\x73\x00\x74\ +\x00\x65\x00\x6d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x78\x69\x73\x20\ +\x73\x79\x73\x74\x65\x6d\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\ +\x5f\x41\x78\x69\x73\x01\x03\x00\x00\x00\x0e\x00\x42\x00\x79\x00\ +\x67\x00\x67\x00\x6e\x00\x61\x00\x64\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x0d\ +\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\ +\x00\x00\x68\x00\x53\x00\x6b\x00\x61\x00\x70\x00\x61\x00\x72\x00\ +\x20\x00\x65\x00\x74\x00\x74\x00\x20\x00\x62\x00\x79\x00\x67\x00\ +\x67\x00\x6e\x00\x61\x00\x64\x00\x73\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x6b\x00\x6c\x00\ +\x75\x00\x64\x00\x65\x00\x72\x00\x61\x00\x6e\x00\x64\x00\x65\x00\ +\x20\x00\x76\x00\x61\x00\x6c\x00\x64\x00\x61\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x2e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x35\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x62\ +\x75\x69\x6c\x64\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\ +\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x0d\x41\ +\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\ +\x00\x08\x00\x43\x00\x65\x00\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x43\x65\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\ +\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x5e\x00\x53\x00\x6b\ +\x00\x61\x00\x70\x00\x61\x00\x72\x00\x20\x00\x65\x00\x74\x00\x74\ +\x00\x20\x00\x63\x00\x65\x00\x6c\x00\x6c\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x6b\x00\x6c\ +\x00\x75\x00\x64\x00\x65\x00\x72\x00\x61\x00\x6e\x00\x64\x00\x65\ +\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x64\x00\x61\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x65\ +\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\ +\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\ +\x6c\x6c\x01\x03\x00\x00\x00\x0a\x00\x43\x00\x68\x00\x65\x00\x63\ +\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x43\x68\x65\x63\ +\x6b\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\ +\x01\x03\x00\x00\x00\x50\x00\x43\x00\x68\x00\x65\x00\x63\x00\x6b\ +\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x66\ +\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x62\x00\x6c\ +\x00\x65\x00\x6d\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\ +\x43\x68\x65\x63\x6b\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x6f\x72\x20\ +\x70\x72\x6f\x62\x6c\x65\x6d\x73\x07\x00\x00\x00\x0a\x41\x72\x63\ +\x68\x5f\x43\x68\x65\x63\x6b\x01\x03\x00\x00\x00\x16\x00\x43\x00\ +\x6c\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x68\x00\x6f\x00\x6c\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x6c\x6f\ +\x73\x65\x20\x68\x6f\x6c\x65\x73\x07\x00\x00\x00\x0f\x41\x72\x63\ +\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\x01\x03\x00\x00\ +\x00\x60\x00\x43\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x73\x00\x20\ +\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\ +\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x68\ +\x00\x61\x00\x70\x00\x65\x00\x73\x00\x2c\x00\x20\x00\x74\x00\x75\ +\x00\x72\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\ +\x00\x65\x00\x6d\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x6c\x6f\x73\ +\x65\x73\x20\x68\x6f\x6c\x65\x73\x20\x69\x6e\x20\x6f\x70\x65\x6e\ +\x20\x73\x68\x61\x70\x65\x73\x2c\x20\x74\x75\x72\x6e\x69\x6e\x67\ +\x20\x74\x68\x65\x6d\x20\x73\x6f\x6c\x69\x64\x73\x07\x00\x00\x00\ +\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\ +\x01\x03\x00\x00\x00\x64\x00\x53\x00\x6b\x00\x61\x00\x70\x00\x61\ +\x00\x72\x00\x20\x00\x65\x00\x74\x00\x74\x00\x20\x00\x67\x00\x6f\ +\x00\x6c\x00\x76\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\ +\x00\x20\x00\x69\x00\x6e\x00\x6b\x00\x6c\x00\x75\x00\x64\x00\x65\ +\x00\x72\x00\x61\x00\x74\x00\x20\x00\x64\x00\x65\x00\x20\x00\x76\ +\x00\x61\x00\x6c\x00\x64\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x66\x6c\ +\x6f\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\ +\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\ +\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x08\x00\x47\x00\x6f\x00\x6c\ +\x00\x76\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\ +\x72\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\ +\x01\x03\x00\x00\x00\x1a\x00\x4e\x00\xe4\x00\x74\x00\x20\x00\x74\ +\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x74\ +\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x10\x41\x72\x63\x68\ +\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\ +\x00\x5a\x00\x54\x00\x75\x00\x72\x00\x6e\x00\x73\x00\x20\x00\x73\ +\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\ +\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\x69\ +\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x50\x00\x61\x00\x72\x00\x74\ +\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x2d\x54\x75\x72\x6e\x73\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\ +\x20\x50\x61\x72\x74\x20\x53\x68\x61\x70\x65\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\x65\x73\ +\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x22\x00\x54\ +\x00\x61\x00\x20\x00\x62\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x6b\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\x6d\x6f\x76\x65\ +\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\ +\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\xae\ +\x00\x54\x00\x61\x00\x20\x00\x62\x00\x6f\x00\x72\x00\x74\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x64\x00\x61\ +\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ +\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\x20\x00\x66\ +\x00\x72\x00\xe5\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x72\x00\x61\ +\x00\x73\x00\x20\x00\x66\x00\xf6\x00\x72\x00\xe4\x00\x6c\x00\x64\ +\x00\x72\x00\x61\x00\x72\x00\x2c\x00\x20\x00\x65\x00\x6c\x00\x6c\ +\x00\x65\x00\x72\x00\x20\x00\x73\x00\x6b\x00\x61\x00\x70\x00\x61\ +\x00\x20\x00\x65\x00\x74\x00\x74\x00\x20\x00\x68\x00\xe5\x00\x6c\ +\x00\x20\x00\x69\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x6b\x00\x6f\ +\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x52\x52\x65\x6d\x6f\x76\x65\x20\x74\ +\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\ +\x6f\x6e\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x69\ +\x72\x20\x70\x61\x72\x65\x6e\x74\x73\x2c\x20\x6f\x72\x20\x63\x72\ +\x65\x61\x74\x65\x20\x61\x20\x68\x6f\x6c\x65\x20\x69\x6e\x20\x61\ +\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\ +\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\x2c\ +\x00\x54\x00\x61\x00\x20\x00\x62\x00\x6f\x00\x72\x00\x74\x00\x20\ +\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x20\x00\x66\x00\x72\x00\xe5\ +\x00\x6e\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x16\x52\x65\x6d\x6f\x76\x65\x20\x53\x68\x61\ +\x70\x65\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x07\x00\x00\x00\ +\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\ +\x65\x01\x03\x00\x00\x00\x5a\x00\x54\x00\x61\x00\x72\x00\x20\x00\ +\x62\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x6b\x00\x75\x00\x62\x00\ +\x69\x00\x73\x00\x6b\x00\x61\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x6d\x00\x65\x00\x72\x00\x20\x00\x66\x00\x72\x00\xe5\x00\x6e\x00\ +\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x6b\x00\x6f\x00\ +\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x52\x65\x6d\x6f\x76\ +\x65\x73\x20\x63\x75\x62\x69\x63\x20\x73\x68\x61\x70\x65\x73\x20\ +\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x20\x63\x6f\x6d\x70\x6f\x6e\ +\x65\x6e\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\ +\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x72\x00\ +\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\ +\x61\x00\x20\x00\x72\x00\x6f\x00\x6f\x00\x66\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\ +\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\ +\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x61\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x39\x43\x72\x65\x61\x74\ +\x65\x73\x20\x61\x20\x72\x6f\x6f\x66\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x66\x61\x63\x65\x20\x6f\x66\x20\x61\x6e\x20\x6f\x62\ +\x6a\x65\x63\x74\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x52\x6f\ +\x6f\x66\x01\x03\x00\x00\x00\x06\x00\x54\x00\x61\x00\x6b\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\ +\x09\x41\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x7c\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\ +\x00\x61\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\ +\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x3e\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ +\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x2c\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\ +\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x07\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\ +\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x18\ +\x00\x53\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\ +\x00\x70\x00\x6c\x00\x61\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\ +\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\ +\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x2c\x00\x56\x00\xe4\x00\ +\x6c\x00\x6a\x00\x20\x00\x69\x00\x63\x00\x6b\x00\x65\x00\x2d\x00\ +\x6d\x00\x61\x00\x6e\x00\x69\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\ +\x20\x00\x6e\x00\xe4\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1a\x53\x65\x6c\x65\x63\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\ +\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\x00\x19\ +\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\ +\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x96\x00\ +\x56\x00\xe4\x00\x6c\x00\x6a\x00\x65\x00\x72\x00\x20\x00\x61\x00\ +\x6c\x00\x6c\x00\x61\x00\x20\x00\x69\x00\x63\x00\x6b\x00\x65\x00\ +\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\x66\x00\x6f\x00\x6c\x00\ +\x64\x00\x20\x00\x6e\x00\xe4\x00\x74\x00\x20\x00\x66\x00\x72\x00\ +\xe5\x00\x6e\x00\x20\x00\x64\x00\x6f\x00\x6b\x00\x75\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x65\x00\x74\x00\x20\x00\x65\x00\x6c\x00\ +\x6c\x00\x65\x00\x72\x00\x20\x00\x66\x00\x72\x00\xe5\x00\x6e\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x64\x00\ +\x61\x00\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\x00\ +\x72\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x53\ +\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6e\x6f\x6e\x2d\x6d\ +\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x66\ +\x72\x6f\x6d\x20\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\ +\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x67\x72\x6f\x75\x70\x73\x07\x00\x00\x00\ +\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\ +\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x62\ +\x00\x53\x00\x6b\x00\x61\x00\x70\x00\x61\x00\x72\x00\x20\x00\x65\ +\x00\x74\x00\x74\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x74\x00\x73\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x69\ +\x00\x6e\x00\x6b\x00\x6c\x00\x75\x00\x64\x00\x65\x00\x72\x00\x61\ +\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x64\ +\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\ +\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x73\x69\x74\x65\x20\x6f\x62\x6a\x65\x63\ +\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\ +\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\ +\x0a\x00\x50\x00\x6c\x00\x61\x00\x74\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\x00\x00\x00\x09\x41\x72\ +\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\x16\x00\x53\x00\ +\x70\x00\x6c\x00\x69\x00\x74\x00\x74\x00\x61\x00\x20\x00\x6e\x00\ +\xe4\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\ +\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x0e\x41\x72\x63\x68\ +\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\x56\ +\x00\x44\x00\x65\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x76\x00\x61\ +\x00\x6c\x00\x64\x00\x61\x00\x20\x00\x6e\x00\xe4\x00\x74\x00\x20\ +\x00\x69\x00\x20\x00\x73\x00\x6a\x00\xe4\x00\x6c\x00\x76\x00\x73\ +\x00\x74\x00\xe4\x00\x6e\x00\x64\x00\x69\x00\x67\x00\x61\x00\x20\ +\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ +\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\ +\x53\x70\x6c\x69\x74\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x69\x6e\x64\x65\ +\x70\x65\x6e\x64\x65\x6e\x74\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\ +\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\xc6\x00\x53\x00\x6b\x00\ +\x61\x00\x70\x00\x61\x00\x72\x00\x20\x00\x65\x00\x74\x00\x74\x00\ +\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\ +\x72\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\ +\x66\x00\x72\x00\xe5\x00\x6e\x00\x20\x00\x62\x00\xf6\x00\x72\x00\ +\x6a\x00\x61\x00\x6e\x00\x20\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\ +\x72\x00\x20\x00\x66\x00\x72\x00\xe5\x00\x6e\x00\x20\x00\x65\x00\ +\x74\x00\x74\x00\x20\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x65\x00\ +\x72\x00\x61\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x20\x00\x28\x00\x73\x00\x6b\x00\x69\x00\x73\x00\ +\x73\x00\x2c\x00\x20\x00\x74\x00\x72\x00\xe5\x00\x64\x00\x2c\x00\ +\x20\x00\x79\x00\x74\x00\x61\x00\x20\x00\x65\x00\x6c\x00\x6c\x00\ +\x65\x00\x72\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\ +\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5f\x43\x72\x65\x61\x74\ +\x65\x73\x20\x61\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\ +\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x73\x6b\ +\x65\x74\x63\x68\x2c\x20\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\ +\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x0e\x41\ +\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\ +\x00\x00\x10\x00\x53\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\ +\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\ +\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\ +\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\xb0\x00\ +\x53\x00\x6b\x00\x61\x00\x70\x00\x61\x00\x72\x00\x20\x00\x65\x00\ +\x74\x00\x74\x00\x20\x00\x76\x00\xe4\x00\x67\x00\x67\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x66\x00\x72\x00\ +\xe5\x00\x6e\x00\x20\x00\x62\x00\xf6\x00\x72\x00\x6a\x00\x61\x00\ +\x6e\x00\x20\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\x00\ +\x66\x00\x72\x00\xe5\x00\x6e\x00\x20\x00\x65\x00\x74\x00\x74\x00\ +\x20\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x65\x00\x72\x00\x61\x00\ +\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x20\x00\x28\x00\x74\x00\x72\x00\xe5\x00\x64\x00\x2c\x00\x20\x00\ +\x79\x00\x74\x00\x61\x00\x20\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\ +\x72\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x52\x43\x72\x65\x61\x74\x65\x73\ +\x20\x61\x20\x77\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\ +\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\ +\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x66\x61\x63\ +\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x09\ +\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\x08\x00\ +\x56\x00\xe4\x00\x67\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\ +\x61\x6c\x6c\x01\x03\x00\x00\x00\x94\x00\x43\x00\x72\x00\x65\x00\ +\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x77\x00\ +\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\ +\x6d\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x20\x00\x28\x00\x77\x00\x69\x00\x72\x00\ +\x65\x00\x2c\x00\x20\x00\x72\x00\x65\x00\x63\x00\x74\x00\x61\x00\ +\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\ +\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4a\x43\x72\x65\x61\x74\x65\x73\x20\x61\ +\x20\x77\x69\x6e\x64\x6f\x77\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\ +\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x72\x65\x63\ +\x74\x61\x6e\x67\x6c\x65\x20\x6f\x72\x20\x73\x6b\x65\x74\x63\x68\ +\x29\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\ +\x77\x01\x03\x00\x00\x00\x0e\x00\x46\x00\xf6\x00\x6e\x00\x73\x00\ +\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\ +\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\ +\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x32\x00\x44\x00\ +\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x69\x00\ +\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x32\x44\x20\ +\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x50\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\ +\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x73\x00\x20\x00\x66\ +\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x61\x00\x63\x00\x68\x00\x20\ +\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x43\x72\x65\x61\x74\x65\ +\x73\x20\x67\x72\x6f\x75\x70\x73\x20\x66\x6f\x72\x20\x65\x61\x63\ +\x68\x20\x41\x72\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\ +\x70\x65\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x3c\x00\x43\x00\x75\x00\x74\x00\ +\x20\x00\x61\x00\x72\x00\x65\x00\x61\x00\x73\x00\x20\x00\x6c\x00\ +\x69\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x68\x00\x69\x00\x63\x00\ +\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x00\x20\x00\x72\x00\x61\x00\ +\x74\x00\x69\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x43\ +\x75\x74\x20\x61\x72\x65\x61\x73\x20\x6c\x69\x6e\x65\x20\x74\x68\ +\x69\x63\x6b\x6e\x65\x73\x73\x20\x72\x61\x74\x69\x6f\x07\x00\x00\ +\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x36\x00\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\ +\x00\x72\x00\x64\x00\x66\x00\xe4\x00\x72\x00\x67\x00\x20\x00\x66\ +\x00\xf6\x00\x72\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\ +\x00\x74\x00\x75\x00\x72\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1c\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\ +\x72\x20\x66\x6f\x72\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x73\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x2e\x00\x53\x00\x74\x00\x61\x00\x6e\x00\ +\x64\x00\x61\x00\x72\x00\x64\x00\x66\x00\xe4\x00\x72\x00\x67\x00\ +\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\x76\x00\xe4\x00\x67\x00\ +\x67\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x44\ +\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ +\x20\x77\x61\x6c\x6c\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x44\x00\ +\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\ +\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x20\x00\x77\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x19\x44\x65\x66\x61\x75\x6c\x74\ +\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\x69\x6e\x64\x6f\ +\x77\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x36\x00\x41\x00\x6c\x00\x6c\x00\ +\x6d\x00\xe4\x00\x6e\x00\x6e\x00\x61\x00\x20\x00\x41\x00\x72\x00\ +\x63\x00\x68\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\xe4\x00\ +\x6c\x00\x6c\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x61\x00\x72\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\ +\x20\x41\x72\x63\x68\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x2c\x00\x41\x00\x6c\x00\x6c\x00\x6d\x00\xe4\x00\ +\x6e\x00\x6e\x00\x61\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\ +\xe4\x00\x6c\x00\x6c\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x61\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\ +\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x32\x00\x47\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x00\x73\x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\x00\x79\x00\x70\ +\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x72\ +\x6f\x75\x70\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x62\ +\x79\x20\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x49\ +\x00\x46\x00\x43\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x49\x46\x43\x20\ +\x69\x6d\x70\x6f\x72\x74\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\xba\x00\x49\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\ +\x64\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x49\x00\ +\x46\x00\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\ +\x65\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x65\x00\x72\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\ +\x64\x00\x2c\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x6f\x00\x77\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x69\x00\ +\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\ +\x72\x00\x65\x00\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\x74\x00\ +\x79\x00\x70\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x5d\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\ +\x53\x68\x65\x6c\x6c\x20\x69\x6d\x70\x6f\x72\x74\x65\x72\x20\x77\ +\x69\x6c\x6c\x20\x62\x65\x20\x75\x73\x65\x64\x2c\x20\x61\x6c\x6c\ +\x6f\x77\x69\x6e\x67\x20\x74\x6f\x20\x69\x6d\x70\x6f\x72\x74\x20\ +\x6d\x6f\x72\x65\x20\x49\x46\x43\x20\x74\x79\x70\x65\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x56\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x00\x20\x00\x66\x00\x75\x00\x72\x00\x6e\x00\x69\x00\x74\x00\ +\x75\x00\x72\x00\x65\x00\x20\x00\x28\x00\x63\x00\x61\x00\x6e\x00\ +\x20\x00\x6d\x00\x61\x00\x6b\x00\x65\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x6c\x00\x20\x00\ +\x68\x00\x65\x00\x61\x00\x76\x00\x79\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2b\x49\x6d\x70\x6f\x72\x74\x20\x66\x75\x72\x6e\ +\x69\x74\x75\x72\x65\x20\x28\x63\x61\x6e\x20\x6d\x61\x6b\x65\x20\ +\x74\x68\x65\x20\x6d\x6f\x64\x65\x6c\x20\x68\x65\x61\x76\x79\x29\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x54\x00\x53\x00\x68\x00\x6f\x00\x77\x00\ +\x20\x00\x64\x00\x65\x00\x62\x00\x75\x00\x67\x00\x20\x00\x69\x00\ +\x6e\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x00\x20\x00\x64\x00\x75\x00\x72\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x32\x00\x44\x00\x20\x00\x72\x00\x65\x00\x6e\x00\ +\x64\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2a\x53\x68\x6f\x77\x20\x64\x65\x62\x75\x67\x20\ +\x69\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x20\x64\x75\x72\x69\ +\x6e\x67\x20\x32\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\ +\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x38\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\ +\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x65\x00\x72\ +\x00\x20\x00\x64\x00\x65\x00\x62\x00\x75\x00\x67\x00\x20\x00\x6d\ +\x00\x65\x00\x73\x00\x73\x00\x61\x00\x67\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1c\x53\x68\x6f\x77\x20\x72\x65\x6e\ +\x64\x65\x72\x65\x72\x20\x64\x65\x62\x75\x67\x20\x6d\x65\x73\x73\ +\x61\x67\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\xae\x00\x41\x00\x6e\x00\ +\x67\x00\x65\x00\x72\x00\x20\x00\x68\x00\x75\x00\x72\x00\x20\x00\ +\x6d\x00\xe5\x00\x6e\x00\x67\x00\x61\x00\x20\x00\x67\x00\xe5\x00\ +\x6e\x00\x67\x00\x65\x00\x72\x00\x20\x00\x73\x00\x6f\x00\x6d\x00\ +\x20\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x69\x00\x73\x00\ +\x61\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x6a\x00\ +\x65\x00\x74\x00\x6a\x00\x6f\x00\x63\x00\x6b\x00\x6c\x00\x65\x00\ +\x6b\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\xe5\x00\x73\x00\x74\x00\ +\x65\x00\x20\x00\x74\x00\x69\x00\x6c\x00\x6c\x00\xe4\x00\x6d\x00\ +\x70\x00\x61\x00\x73\x00\x20\x00\x70\x00\xe5\x00\x20\x00\x6b\x00\ +\x6c\x00\x69\x00\x70\x00\x70\x00\x74\x00\x61\x00\x20\x00\x6c\x00\ +\x69\x00\x6e\x00\x6a\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x4f\x53\x70\x65\x63\x69\x66\x69\x65\x73\x20\x68\x6f\x77\ +\x20\x6d\x61\x6e\x79\x20\x74\x69\x6d\x65\x73\x20\x74\x68\x65\x20\ +\x76\x69\x65\x77\x65\x64\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\ +\x6b\x6e\x65\x73\x73\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x70\ +\x70\x6c\x69\x65\x64\x20\x74\x6f\x20\x63\x75\x74\x20\x6c\x69\x6e\ +\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x5c\x00\x44\x00\x65\x00\x74\x00\ +\x74\x00\x61\x00\x20\x00\xe4\x00\x72\x00\x20\x00\x73\x00\x74\x00\ +\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x66\x00\xe4\x00\ +\x72\x00\x67\x00\x65\x00\x6e\x00\x20\x00\x66\x00\xf6\x00\x72\x00\ +\x20\x00\x6e\x00\x79\x00\x61\x00\x20\x00\x73\x00\x74\x00\x72\x00\ +\x75\x00\x6b\x00\x74\x00\x75\x00\x72\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x54\ +\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\ +\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\ +\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x54\x00\x44\x00\x65\x00\x74\x00\ +\x74\x00\x61\x00\x20\x00\xe4\x00\x72\x00\x20\x00\x73\x00\x74\x00\ +\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x66\x00\xe4\x00\ +\x72\x00\x67\x00\x65\x00\x6e\x00\x20\x00\x66\x00\xf6\x00\x72\x00\ +\x20\x00\x6e\x00\x79\x00\x61\x00\x20\x00\x56\x00\xe4\x00\x67\x00\ +\x67\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x2e\x54\x68\x69\x73\x20\x69\x73\x20\x74\ +\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\ +\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x57\x61\x6c\x6c\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x55\x00\x73\ +\x00\x65\x00\x20\x00\x49\x00\x46\x00\x43\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\x69\ +\x00\x66\x00\x20\x00\x61\x00\x76\x00\x61\x00\x69\x00\x6c\x00\x61\ +\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\ +\x55\x73\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\ +\x20\x69\x66\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x07\x00\x00\ +\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x16\x00\x26\x00\x41\x00\x72\x00\x6b\x00\x69\x00\x74\ +\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0d\x26\x41\x72\x63\x68\x69\x74\x65\x63\x74\x75\x72\ +\x65\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x0c\ +\x00\x26\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x26\x44\x72\x61\x66\x74\x07\x00\x00\x00\ +\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x41\x00\x72\x00\ +\x63\x00\x68\x00\x20\x00\x76\x00\x65\x00\x72\x00\x6b\x00\x74\x00\ +\x79\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x41\x72\x63\ +\x68\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\ +\x01\x03\x00\x00\x00\x22\x00\x42\x00\x65\x00\x72\x00\xe4\x00\x6b\ +\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x76\x00\x65\x00\x72\ +\x00\x6b\x00\x74\x00\x79\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x11\x43\x61\x6c\x63\x75\x6c\x61\x74\x69\x6f\x6e\x20\x54\x6f\ +\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\ +\x00\x24\x00\x53\x00\x61\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x68\ +\x00\x61\x00\x6e\x00\x67\x00\x73\x00\x76\x00\x65\x00\x72\x00\x6b\ +\x00\x74\x00\x79\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ +\x43\x6f\x6e\x74\x65\x78\x74\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\ +\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x4b\x00\x6f\ +\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x65\x00\x72\x00\x69\ +\x00\x6e\x00\x67\x00\x73\x00\x76\x00\x65\x00\x72\x00\x6b\x00\x74\ +\x00\x79\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x6f\ +\x6e\x76\x65\x72\x73\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\x00\ +\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x56\x00\ +\x65\x00\x72\x00\x6b\x00\x74\x00\x79\x00\x67\x00\x20\x00\x66\x00\ +\xf6\x00\x72\x00\x20\x00\x73\x00\x6b\x00\x69\x00\x73\x00\x73\x00\ +\x6c\x00\xe4\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0f\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\x20\x74\x6f\x6f\x6c\x73\ +\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\ +\x53\x00\x6b\x00\x69\x00\x73\x00\x73\x00\x76\x00\x65\x00\x72\x00\ +\x6b\x00\x74\x00\x79\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0b\x44\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\ +\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x96\x00\x70\x00\x79\x00\ +\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\ +\x6b\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x69\x00\x6e\x00\ +\x74\x00\x65\x00\x20\x00\x68\x00\x69\x00\x74\x00\x74\x00\x61\x00\ +\x73\x00\x2c\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\ +\x64\x00\x61\x00\x20\x00\x73\x00\x74\x00\xf6\x00\x64\x00\x65\x00\ +\x74\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x72\x00\ +\x20\x00\x64\x00\xe4\x00\x72\x00\x66\x00\xf6\x00\x72\x00\x20\x00\ +\x61\x00\x74\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x61\x00\x6b\x00\ +\x74\x00\x69\x00\x76\x00\x65\x00\x72\x00\x61\x00\x73\x00\x2e\x00\ +\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x70\x79\x63\x6f\x6c\ +\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\ +\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\x6f\x72\x74\x20\ +\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x69\x73\x61\x62\x6c\x65\x64\ +\x2e\x0a\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ +\x00\x00\x4b\x57\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x04\xf8\x00\x00\x47\xa4\x00\x00\x00\x49\x00\x04\x8e\xc3\ +\x00\x00\x01\x6f\x00\x04\x8f\x03\x00\x00\x02\x22\x00\x04\x8f\x03\ +\x00\x00\x26\x04\x00\x04\x9c\x2c\x00\x00\x27\x8e\x00\x04\xbb\x04\ +\x00\x00\x07\xd2\x00\x05\x48\x35\x00\x00\x0c\xed\x00\x05\x67\xd5\ +\x00\x00\x0e\xff\x00\x05\x96\x56\x00\x00\x0f\x59\x00\x05\x96\x56\ +\x00\x00\x2f\x54\x00\x05\xa0\xa5\x00\x00\x0f\x7e\x00\x05\xa0\xa5\ +\x00\x00\x33\x25\x00\x05\xc0\x65\x00\x00\x1d\x5f\x00\x05\xd8\x2c\ +\x00\x00\x1e\xf4\x00\x05\xd8\x2c\x00\x00\x36\xf7\x00\x32\x23\xa5\ +\x00\x00\x43\x7c\x00\x39\xdf\x33\x00\x00\x3b\xdd\x00\x48\x4e\x25\ +\x00\x00\x01\x49\x00\x49\xeb\x9b\x00\x00\x28\x68\x00\x4b\x55\x33\ +\x00\x00\x3d\x13\x00\x4d\x36\x62\x00\x00\x0a\x31\x00\x4d\x36\x62\ +\x00\x00\x2a\xde\x00\x5d\xfb\xa8\x00\x00\x1f\x8a\x00\x5e\x08\xc3\ +\x00\x00\x1f\xdf\x00\x61\xb0\x33\x00\x00\x16\xd3\x00\x62\x9b\xa8\ +\x00\x00\x10\x09\x00\x62\x9b\xa8\x00\x00\x33\x51\x00\x8a\x92\x57\ +\x00\x00\x00\x00\x00\xaa\x80\x25\x00\x00\x07\x27\x00\xc9\x7b\xf3\ +\x00\x00\x12\xc6\x00\xfb\x72\xf3\x00\x00\x3b\x63\x01\x19\x4e\x85\ +\x00\x00\x05\xb1\x01\x55\x2b\xf5\x00\x00\x05\x22\x01\x79\x17\x94\ +\x00\x00\x22\xa8\x01\x8e\x84\xa6\x00\x00\x11\x82\x01\xad\x7d\xe3\ +\x00\x00\x44\xfd\x01\xaf\x41\x84\x00\x00\x21\x94\x01\xf7\xa8\x83\ +\x00\x00\x42\x31\x02\x01\x7f\xd3\x00\x00\x10\x78\x02\x29\xb3\xc4\ +\x00\x00\x2e\x8b\x02\x5a\x4a\x53\x00\x00\x15\xf1\x02\x5f\xc9\x59\ +\x00\x00\x35\xdf\x02\x66\x7f\x7e\x00\x00\x0d\xd7\x02\x6a\x77\x99\ +\x00\x00\x3e\x5b\x02\x80\x5f\x17\x00\x00\x23\x79\x02\x82\x88\x3a\ +\x00\x00\x04\x3e\x02\x85\x4f\xf5\x00\x00\x19\x59\x02\x90\x40\x65\ +\x00\x00\x0c\xad\x02\x90\x40\x65\x00\x00\x2b\x16\x02\x94\x16\x35\ +\x00\x00\x10\xb5\x02\xab\x87\xd4\x00\x00\x43\xbc\x02\xb8\xae\x74\ +\x00\x00\x2c\x0e\x02\xc3\x91\x93\x00\x00\x3f\xbc\x02\xcd\x05\xa3\ +\x00\x00\x2b\x62\x02\xdd\x14\x14\x00\x00\x2c\x68\x03\x13\x15\x3e\ +\x00\x00\x0b\x59\x03\x1b\xda\x15\x00\x00\x1f\x56\x03\x1d\xe8\xe3\ +\x00\x00\x39\xdc\x03\x29\x7a\x34\x00\x00\x00\xdf\x03\x2c\xe9\xb3\ +\x00\x00\x17\x3a\x03\x92\x51\xe0\x00\x00\x0f\xa5\x03\xa2\xec\x23\ +\x00\x00\x1f\x19\x03\xbe\xb0\x34\x00\x00\x1e\x28\x03\xce\x98\xe5\ +\x00\x00\x03\xc8\x03\xd4\x22\x74\x00\x00\x24\xf0\x04\x35\xfa\x55\ +\x00\x00\x12\x3b\x04\xc3\x75\x44\x00\x00\x19\xae\x04\xdb\x21\x3e\ +\x00\x00\x32\x50\x04\xeb\xfd\xf4\x00\x00\x0a\x94\x05\x14\x5b\x83\ +\x00\x00\x07\x56\x05\x18\xda\xa3\x00\x00\x2a\x26\x05\x5f\x3d\x83\ +\x00\x00\x3a\xe7\x05\x8c\x46\xc5\x00\x00\x0f\x24\x05\x90\xba\xe3\ +\x00\x00\x0e\xd1\x05\xc0\x56\xe3\x00\x00\x40\x41\x05\xc7\xeb\xc7\ +\x00\x00\x3f\x0d\x05\xe0\x4b\x67\x00\x00\x1f\xb2\x05\xe0\x4b\x67\ +\x00\x00\x38\x1f\x05\xef\x78\x4a\x00\x00\x22\xe5\x06\x1f\x6f\xa4\ +\x00\x00\x20\xf4\x06\x32\xe3\xe3\x00\x00\x45\x43\x06\x5b\x01\x15\ +\x00\x00\x03\x97\x06\x69\xd0\x04\x00\x00\x20\x8a\x06\x9f\x6f\xd4\ +\x00\x00\x06\xc9\x06\xd6\x3f\xa4\x00\x00\x22\x68\x06\xe6\x2f\x43\ +\x00\x00\x11\xdd\x07\x00\xcc\xc4\x00\x00\x3c\xc4\x07\x07\x84\xba\ +\x00\x00\x45\x87\x07\x08\x43\x0e\x00\x00\x26\x2e\x07\x16\x58\x05\ +\x00\x00\x38\xa8\x07\x25\x74\x53\x00\x00\x29\x2d\x07\x28\xff\x15\ +\x00\x00\x0d\x61\x07\x36\x51\x26\x00\x00\x13\xa8\x07\x5c\xdc\x04\ +\x00\x00\x20\x07\x07\x60\x23\xf3\x00\x00\x02\xfa\x07\xca\xf8\x87\ +\x00\x00\x38\x53\x08\x25\x81\xc4\x00\x00\x06\x74\x08\x4a\x45\xd9\ +\x00\x00\x37\x21\x08\x65\x4c\x95\x00\x00\x1b\xe2\x08\xc5\xe3\x35\ +\x00\x00\x1b\x2d\x08\xca\xc9\x74\x00\x00\x14\xd0\x08\xfb\xb8\xa4\ +\x00\x00\x09\xca\x09\x69\xac\xa7\x00\x00\x1e\x8f\x09\x6c\x6c\xa7\ +\x00\x00\x0a\x63\x09\x9f\xcc\xde\x00\x00\x21\xf8\x09\xba\xe6\x35\ +\x00\x00\x10\x44\x09\xba\xe6\x35\x00\x00\x35\xa1\x09\xc5\xbe\xca\ +\x00\x00\x09\x2a\x09\xe3\x98\xe4\x00\x00\x25\x3e\x09\xed\x98\x55\ +\x00\x00\x30\x5e\x0a\x3e\x06\x83\x00\x00\x04\xae\x0a\x3f\x1f\xd6\ +\x00\x00\x04\xe8\x0a\x3f\x2b\x25\x00\x00\x05\x77\x0a\x3f\x5d\xac\ +\x00\x00\x05\xfa\x0a\x7f\xee\xa3\x00\x00\x43\xe7\x0a\xb6\xc8\x9a\ +\x00\x00\x0a\xbf\x0a\xbf\x46\x0e\x00\x00\x1d\x84\x0a\xd6\x07\x84\ +\x00\x00\x20\x38\x0b\x0a\xc3\xf3\x00\x00\x00\x77\x0b\x51\x30\xa8\ +\x00\x00\x2d\x86\x0b\x65\xda\xb3\x00\x00\x3a\x65\x0b\x8d\x97\x93\ +\x00\x00\x41\x5f\x0b\x9c\x5b\xe7\x00\x00\x08\x8d\x0b\xb9\xe8\x93\ +\x00\x00\x2d\xe1\x0b\xc4\xb1\x23\x00\x00\x27\xb6\x0c\x02\xac\xd7\ +\x00\x00\x02\xcd\x0c\x02\xac\xd7\x00\x00\x26\x91\x0c\x25\x3e\x53\ +\x00\x00\x31\x2b\x0c\x3c\x8b\x33\x00\x00\x44\x28\x0c\x41\x0a\x83\ +\x00\x00\x44\x74\x0c\x4e\x9b\x23\x00\x00\x30\xa5\x0c\x98\x80\x23\ +\x00\x00\x44\xb4\x0c\xc4\xd0\x80\x00\x00\x24\x28\x0c\xdf\x5a\x1e\ +\x00\x00\x01\x94\x0c\xfc\x97\x06\x00\x00\x1e\xc6\x0d\x03\x26\xb4\ +\x00\x00\x02\x8a\x0d\x08\x90\xf3\x00\x00\x1a\xc0\x0d\x1e\xda\xa4\ +\x00\x00\x03\x33\x0d\x3b\x3b\x49\x00\x00\x34\x5d\x0d\xa8\x3a\x35\ +\x00\x00\x17\x95\x0d\xc1\x7d\x47\x00\x00\x24\x80\x0d\xfa\x53\xe5\ +\x00\x00\x07\xff\x0e\x69\x87\x13\x00\x00\x2f\x7e\x0e\x8c\xd7\x43\ +\x00\x00\x33\x96\x0e\x98\x0a\xd6\x00\x00\x1d\xca\x0e\xab\x8d\x1f\ +\x00\x00\x39\x51\x0e\xb9\x1b\xf2\x00\x00\x14\x6f\x0e\xec\x0b\x9e\ +\x00\x00\x26\xc7\x0f\x16\x4a\x24\x00\x00\x1c\xef\x0f\x17\xc7\xa3\ +\x00\x00\x28\x96\x0f\x55\xc1\x57\x00\x00\x06\x34\x0f\x78\x41\x05\ +\x00\x00\x42\xf4\x0f\x79\xe3\xf3\x00\x00\x29\x72\x0f\x95\xd5\x09\ +\x00\x00\x18\x4d\x0f\xa2\x16\x43\x00\x00\x1c\xbb\x0f\xc0\xb8\xb4\ +\x00\x00\x0d\x12\x0f\xd0\x39\x44\x00\x00\x02\x47\x0f\xe5\x74\x74\ +\x00\x00\x00\xab\x0f\xf3\xe8\x33\x00\x00\x3c\x48\x69\x00\x00\x46\ +\x45\x03\x00\x00\x00\x20\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x42\x00\x75\x00\x69\x00\x6c\x00\x64\ +\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x20\x43\x72\x65\x61\x74\x65\x20\x42\x75\x69\x6c\x64\x69\x6e\x67\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\ +\x54\x00\x6f\x00\x65\x00\x76\x00\x6f\x00\x65\x00\x67\x00\x65\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\x64\x64\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x41\x00\ +\x64\x00\x64\x00\x69\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x41\x64\x64\x69\x74\x69\x6f\ +\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x12\x00\x41\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x41\x6c\x69\ +\x67\x6e\x6d\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x36\x00\x41\x00\x6c\x00\x6c\x00\x20\x00\x67\x00\ +\x6f\x00\x6f\x00\x64\x00\x21\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\ +\x70\x00\x72\x00\x6f\x00\x62\x00\x6c\x00\x65\x00\x6d\x00\x73\x00\ +\x20\x00\x66\x00\x6f\x00\x75\x00\x6e\x00\x64\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1b\x41\x6c\x6c\x20\x67\x6f\x6f\x64\x21\x20\x6e\ +\x6f\x20\x70\x72\x6f\x62\x6c\x65\x6d\x73\x20\x66\x6f\x75\x6e\x64\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\ +\x48\x00\x6f\x00\x65\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x05\x41\x6e\x67\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x08\x00\x41\x00\x78\x00\x65\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x41\x78\x65\x73\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4e\x00\x41\x00\x78\x00\x65\ +\x00\x73\x00\x20\x00\x73\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\ +\x00\x73\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\ +\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\ +\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x75\x00\x69\x00\x6c\ +\x00\x74\x00\x20\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x27\x41\x78\x65\x73\x20\x73\x79\x73\x74\x65\x6d\x73\x20\x74\ +\x68\x69\x73\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x69\x73\ +\x20\x62\x75\x69\x6c\x74\x20\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x08\x00\x41\x00\x78\x00\x69\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\x69\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x00\x42\x00\ +\x61\x00\x73\x00\x65\x00\x20\x00\x32\x00\x44\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0e\x42\x61\x73\x65\x20\x32\x44\x20\x6f\x62\x6a\x65\x63\ +\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1c\ +\x00\x42\x00\x61\x00\x73\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0e\x42\x61\x73\x65\x20\x63\x6f\x6d\x70\x6f\ +\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x0c\x00\x47\x00\x65\x00\x62\x00\x6f\x00\x75\x00\x77\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\ +\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\ +\x00\x43\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ +\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\ +\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x4f\x00\x6e\x00\x64\x00\ +\x65\x00\x72\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\ +\x76\x00\x61\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x74\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x19\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\ +\x6f\x66\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x43\x00\ +\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x43\x6f\x6e\x74\x69\x6e\x75\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x43\ +\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x75\x00\x74\x00\x65\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\ +\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1f\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x63\ +\x6f\x6d\x70\x75\x74\x65\x20\x74\x68\x65\x20\x77\x61\x6c\x6c\x20\ +\x73\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x3a\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\ +\x00\x27\x00\x74\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x74\ +\x00\x65\x00\x20\x00\x49\x00\x66\x00\x63\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x0a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1d\x43\x6f\x75\x6c\x64\x6e\x27\x74\ +\x20\x6c\x6f\x63\x61\x74\x65\x20\x49\x66\x63\x4f\x70\x65\x6e\x53\ +\x68\x65\x6c\x6c\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x16\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ +\x00\x20\x00\x41\x00\x78\x00\x69\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x41\x78\x69\x73\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x43\ +\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x52\x00\x6f\ +\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\ +\x65\x61\x74\x65\x20\x52\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x28\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x53\x00\x65\x00\x63\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x6e\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\x74\x65\ +\x20\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x43\x00\ +\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\x69\x00\ +\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\ +\x61\x74\x65\x20\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x20\x00\x53\x00\x74\x00\x72\x00\x75\x00\x63\x00\ +\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x10\x43\x72\x65\x61\x74\x65\x20\x53\x74\x72\x75\x63\x74\x75\x72\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x57\ +\x00\x61\x00\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ +\x43\x72\x65\x61\x74\x65\x20\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x20\x00\x57\x00\x69\x00\x6e\x00\x64\ +\x00\x6f\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x72\ +\x65\x61\x74\x65\x20\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\ +\x74\x65\x20\x6e\x65\x77\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\ +\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x2f\x00\x75\x00\ +\x70\x00\x64\x00\x61\x00\x74\x00\x65\x00\x20\x00\x63\x00\x6f\x00\ +\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\x74\x65\x2f\x75\x70\ +\x64\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x41\x00\ +\x66\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x42\x00\x44\x00\x69\ +\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x63\x00\x65\x00\x73\x00\x20\ +\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\ +\x00\x65\x00\x73\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\ +\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x21\x44\x69\x73\x74\x61\x6e\x63\x65\ +\x73\x20\x61\x6e\x64\x20\x61\x6e\x67\x6c\x65\x73\x20\x62\x65\x74\ +\x77\x65\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x10\x00\x42\x00\x65\x00\x77\x00\x65\ +\x00\x72\x00\x6b\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x4e\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\ +\x20\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\ +\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x73\x00\x68\x00\x61\x00\ +\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x45\x72\x72\ +\x6f\x72\x20\x72\x65\x6d\x6f\x76\x69\x6e\x67\x20\x73\x70\x6c\x69\ +\x74\x74\x65\x72\x20\x66\x72\x6f\x6d\x20\x77\x61\x6c\x6c\x20\x73\ +\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x58\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\ +\x20\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\ +\x74\x00\x20\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\ +\x69\x00\x6e\x00\x65\x00\x20\x00\x63\x00\x68\x00\x61\x00\x72\x00\ +\x61\x00\x63\x00\x74\x00\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\ +\x63\x00\x6f\x00\x64\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2c\x45\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\ +\x64\x6e\x27\x74\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\ +\x68\x61\x72\x61\x63\x74\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\ +\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5a\ +\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x43\ +\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\ +\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\ +\x00\x65\x00\x20\x00\x63\x00\x68\x00\x61\x00\x72\x00\x61\x00\x63\ +\x00\x74\x00\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\ +\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x0a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2d\x45\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\ +\x6e\x27\x74\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\ +\x61\x72\x61\x63\x74\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\ +\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\ +\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x49\ +\x00\x6e\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x20\x00\x62\ +\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x45\x72\ +\x72\x6f\x72\x3a\x20\x49\x6e\x76\x61\x6c\x69\x64\x20\x62\x61\x73\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x14\x00\x56\x00\x65\x00\x72\x00\x64\x00\ +\x69\x00\x65\x00\x70\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x47\x00\x72\x00\x6f\x00\ +\x75\x00\x70\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x47\x72\x6f\x75\x70\x69\x6e\x67\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x48\x00\x65\x00\x69\ +\x00\x67\x00\x68\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x48\x65\x69\x67\x68\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x56\x00\x49\x00\x46\x00\x43\x00\x20\x00\x53\x00\ +\x63\x00\x68\x00\x65\x00\x6d\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\ +\x74\x00\x20\x00\x66\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x2c\x00\ +\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\x69\x00\x6d\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x00\x20\x00\x64\x00\x69\x00\x73\x00\x61\x00\ +\x62\x00\x6c\x00\x65\x00\x64\x00\x2e\x00\x0a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2b\x49\x46\x43\x20\x53\x63\x68\x65\x6d\x61\x20\ +\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x49\x46\x43\x20\x69\ +\x6d\x70\x6f\x72\x74\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x2e\x0a\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xd2\x00\ +\x49\x00\x66\x00\x20\x00\x54\x00\x72\x00\x75\x00\x65\x00\x2c\x00\ +\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x73\x00\ +\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\ +\x6e\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\ +\x2c\x00\x20\x00\x69\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x75\x00\x73\x00\x65\x00\x20\x00\x69\x00\x74\x00\ +\x73\x00\x20\x00\x62\x00\x6f\x00\x72\x00\x64\x00\x65\x00\x72\x00\ +\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x20\x00\x61\x00\x73\x00\ +\x20\x00\x74\x00\x72\x00\x61\x00\x63\x00\x65\x00\x2c\x00\x20\x00\ +\x61\x00\x6e\x00\x64\x00\x20\x00\x64\x00\x69\x00\x73\x00\x63\x00\ +\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\ +\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x69\x49\x66\x20\x54\x72\ +\x75\x65\x2c\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\ +\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x66\ +\x61\x63\x65\x2c\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x75\x73\x65\ +\x20\x69\x74\x73\x20\x62\x6f\x72\x64\x65\x72\x20\x77\x69\x72\x65\ +\x20\x61\x73\x20\x74\x72\x61\x63\x65\x2c\x20\x61\x6e\x64\x20\x64\ +\x69\x73\x63\x6f\x6e\x73\x69\x64\x65\x72\x20\x74\x68\x65\x20\x66\ +\x61\x63\x65\x2e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x1a\x00\x4e\x00\x65\x00\x74\x00\x20\x00\x6e\x00\x61\x00\ +\x61\x00\x72\x00\x20\x00\x56\x00\x6f\x00\x72\x00\x6d\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x74\x6f\x20\x53\ +\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x08\x00\x4e\x00\x61\x00\x61\x00\x6d\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x04\x4e\x61\x6d\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x24\x00\x4e\x00\x6f\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x12\x4e\x6f\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x3e\x00\x4e\x00\x6f\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\ +\x72\x00\x65\x00\x20\x00\x63\x00\x75\x00\x74\x00\x20\x00\x62\x00\ +\x79\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x70\x00\x6c\x00\ +\x61\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x4e\ +\x6f\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x72\x65\x20\x63\x75\ +\x74\x20\x62\x79\x20\x74\x68\x65\x20\x70\x6c\x61\x6e\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x96\x00\x4e\x00\ +\x6f\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\ +\x68\x00\x61\x00\x73\x00\x20\x00\x62\x00\x65\x00\x65\x00\x6e\x00\ +\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x75\x00\x74\x00\x65\x00\ +\x64\x00\x20\x00\x79\x00\x65\x00\x74\x00\x2c\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x77\x00\x69\x00\ +\x72\x00\x65\x00\x66\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x20\x00\ +\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x72\x00\x65\x00\ +\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x61\x00\x67\x00\x61\x00\ +\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4b\x4e\x6f\x20\ +\x73\x68\x61\x70\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x63\ +\x6f\x6d\x70\x75\x74\x65\x64\x20\x79\x65\x74\x2c\x20\x73\x65\x6c\ +\x65\x63\x74\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\x72\x65\ +\x6e\x64\x65\x72\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x65\x6e\x64\ +\x65\x72\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x0e\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x4f\ +\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x08\x00\x50\x00\x61\x00\x67\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x50\x61\x67\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x56\x00\x65\x00\x72\ +\x00\x77\x00\x69\x00\x6a\x00\x64\x00\x65\x00\x72\x00\x65\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x65\x6d\x6f\x76\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\ +\x52\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x0a\x00\x5a\x00\x69\x00\x6a\x00\x64\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x53\x00\x6b\x00\ +\x69\x00\x70\x00\x70\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x69\x00\ +\x6e\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x3a\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x19\x53\x6b\x69\x70\x70\x69\x6e\x67\x20\ +\x69\x6e\x76\x61\x6c\x69\x64\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\ +\x4e\x00\x65\x00\x74\x00\x20\x00\x73\x00\x70\x00\x6c\x00\x69\x00\ +\x74\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x53\x00\x74\x00\x72\ +\x00\x75\x00\x63\x00\x74\x00\x75\x00\x75\x00\x72\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x53\ +\x00\x75\x00\x62\x00\x74\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x53\x75\x62\x74\x72\x61\x63\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x78\x00\x54\x00\x68\x00\ +\x65\x00\x20\x00\x61\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\ +\x20\x00\x6f\x00\x6e\x00\x20\x00\x69\x00\x74\x00\x73\x00\x20\x00\ +\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\ +\x61\x00\x70\x00\x70\x00\x6c\x00\x69\x00\x63\x00\x61\x00\x62\x00\ +\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3c\x54\x68\x65\ +\x20\x61\x6c\x69\x67\x6e\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\ +\x69\x73\x20\x77\x61\x6c\x6c\x20\x6f\x6e\x20\x69\x74\x73\x20\x62\ +\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x69\x66\x20\x61\ +\x70\x70\x6c\x69\x63\x61\x62\x6c\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x2c\x00\x54\x00\x68\x00\x65\x00\x20\ +\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x72\x00\x6f\ +\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x68\ +\x65\x20\x61\x6e\x67\x6c\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x2e\x00\x54\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6e\x00\ +\x67\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x65\x00\x61\x00\x63\x00\x68\x00\x20\x00\x61\x00\x78\x00\x69\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x54\x68\x65\x20\x61\ +\x6e\x67\x6c\x65\x73\x20\x6f\x66\x20\x65\x61\x63\x68\x20\x61\x78\ +\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x4c\x00\x54\x00\x68\x00\x65\x00\x20\x00\x64\x00\x69\x00\x73\x00\ +\x70\x00\x6c\x00\x61\x00\x79\x00\x20\x00\x73\x00\x69\x00\x7a\x00\ +\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x26\x54\x68\x65\x20\x64\x69\x73\x70\x6c\ +\x61\x79\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x86\x00\x54\x00\x68\ +\x00\x65\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\ +\x00\x74\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\ +\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x65\x00\x78\x00\x63\ +\x00\x6c\x00\x75\x00\x64\x00\x65\x00\x20\x00\x77\x00\x68\x00\x65\ +\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\ +\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\ +\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\ +\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x65\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\x54\x68\x65\x20\ +\x65\x6c\x65\x6d\x65\x6e\x74\x20\x6e\x75\x6d\x62\x65\x72\x73\x20\ +\x74\x6f\x20\x65\x78\x63\x6c\x75\x64\x65\x20\x77\x68\x65\x6e\x20\ +\x74\x68\x69\x73\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x69\ +\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x78\x65\x73\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x74\x00\x54\ +\x00\x68\x00\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\ +\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\ +\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x62\x00\x61\ +\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\x00\x74\ +\x00\x6f\x00\x20\x00\x62\x00\x75\x00\x69\x00\x6c\x00\x64\x00\x20\ +\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x72\x00\x6f\x00\x6f\ +\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3a\x54\x68\x65\x20\ +\x66\x61\x63\x65\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x74\ +\x68\x65\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x75\ +\x73\x65\x64\x20\x74\x6f\x20\x62\x75\x69\x6c\x64\x20\x74\x68\x69\ +\x73\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x30\x00\x54\x00\x68\x00\x65\x00\x20\x00\x68\x00\ +\x65\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x6f\x00\x66\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x66\x00\x6c\x00\ +\x6f\x00\x6f\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x54\ +\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\x6f\x66\x20\x74\x68\x69\ +\x73\x20\x66\x6c\x6f\x6f\x72\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\xb0\x00\x54\x00\x68\x00\x65\x00\x20\x00\x68\ +\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\ +\x00\x6c\x00\x6c\x00\x2e\x00\x20\x00\x4b\x00\x65\x00\x65\x00\x70\ +\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\ +\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\ +\x00\x2e\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x20\x00\x75\x00\x73\ +\x00\x65\x00\x64\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\ +\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\ +\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x73\x00\x6f\ +\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x58\ +\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\x6f\x66\x20\x74\x68\ +\x69\x73\x20\x77\x61\x6c\x6c\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\ +\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x2e\x20\x4e\ +\x6f\x74\x20\x75\x73\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\x20\ +\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\ +\x20\x61\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x86\x00\x54\x00\x68\x00\x65\x00\x20\x00\ +\x68\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x6f\x00\ +\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\x72\x00\x75\x00\x73\x00\ +\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x70\x00\x74\x00\ +\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x2e\x00\x20\x00\x4b\x00\x65\x00\x65\x00\x70\x00\x20\x00\ +\x30\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x75\x00\ +\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x43\x54\x68\x65\x20\x68\x65\x69\x67\x68\ +\x74\x20\x6f\x72\x20\x65\x78\x74\x72\x75\x73\x69\x6f\x6e\x20\x64\ +\x65\x70\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\ +\x6d\x65\x6e\x74\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\ +\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\x54\x00\x68\x00\x65\x00\ +\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x76\x00\x61\x00\ +\x6c\x00\x73\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\x00\ +\x65\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1a\x54\x68\x65\x20\x69\x6e\x74\x65\x72\ +\x76\x61\x6c\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x61\x78\x65\ +\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2c\ +\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x6e\x00\x67\ +\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\ +\x00\x65\x00\x20\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x16\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\ +\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\x65\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x6a\x00\x54\x00\x68\x00\ +\x65\x00\x20\x00\x6c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\ +\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\ +\x6e\x00\x20\x00\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x66\x00\ +\x69\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x54\ +\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x74\x68\x69\ +\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\x6e\x6f\ +\x74\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\x72\x6f\ +\x66\x69\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\xa2\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\ +\x72\x00\x6d\x00\x61\x00\x6c\x00\x20\x00\x65\x00\x78\x00\x74\x00\ +\x72\x00\x75\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\ +\x69\x00\x72\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ +\x28\x00\x6b\x00\x65\x00\x65\x00\x70\x00\x20\x00\x28\x00\x30\x00\ +\x2c\x00\x30\x00\x2c\x00\x30\x00\x29\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\ +\x74\x00\x69\x00\x63\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\ +\x61\x00\x6c\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x54\ +\x68\x65\x20\x6e\x6f\x72\x6d\x61\x6c\x20\x65\x78\x74\x72\x75\x73\ +\x69\x6f\x6e\x20\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x6b\x65\ +\x65\x70\x20\x28\x30\x2c\x30\x2c\x30\x29\x20\x66\x6f\x72\x20\x61\ +\x75\x74\x6f\x6d\x61\x74\x69\x63\x20\x6e\x6f\x72\x6d\x61\x6c\x29\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x65\x00\ +\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x73\x00\ +\x74\x00\x79\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x14\x54\x68\x65\x20\x6e\x75\x6d\x65\x72\x61\x74\x69\x6f\x6e\x20\ +\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\xa6\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x74\x00\x68\ +\x00\x61\x00\x74\x00\x20\x00\x6d\x00\x75\x00\x73\x00\x74\x00\x20\ +\x00\x62\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\ +\x00\x64\x00\x65\x00\x72\x00\x65\x00\x64\x00\x20\x00\x62\x00\x79\ +\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\x00\x65\ +\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\x6c\ +\x00\x61\x00\x6e\x00\x65\x00\x2e\x00\x20\x00\x45\x00\x6d\x00\x70\ +\x00\x74\x00\x79\x00\x20\x00\x6d\x00\x65\x00\x61\x00\x6e\x00\x73\ +\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x64\x00\x6f\x00\x63\ +\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x53\x54\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x74\x68\x61\x74\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x63\x6f\x6e\ +\x73\x69\x64\x65\x72\x65\x64\x20\x62\x79\x20\x74\x68\x69\x73\x20\ +\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x2e\x20\x45\ +\x6d\x70\x74\x79\x20\x6d\x65\x61\x6e\x73\x20\x61\x6c\x6c\x20\x64\ +\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x38\x00\x54\x00\x68\x00\x65\x00\x20\x00\x73\ +\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x61\x00\x78\x00\x69\x00\x73\x00\x20\ +\x00\x62\x00\x75\x00\x62\x00\x62\x00\x6c\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1c\x54\x68\x65\x20\x73\x69\x7a\x65\ +\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\x69\x73\x20\x62\x75\x62\ +\x62\x6c\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x68\x00\x54\x00\x68\x00\x65\x00\x20\x00\x77\x00\x69\x00\ +\x64\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\ +\x6e\x00\x6f\x00\x74\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\ +\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x70\x00\ +\x72\x00\x6f\x00\x66\x00\x69\x00\x6c\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x34\x54\x68\x65\x20\x77\x69\x64\x74\x68\x20\x6f\ +\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\x20\ +\x69\x66\x20\x6e\x6f\x74\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\ +\x61\x20\x70\x72\x6f\x66\x69\x6c\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x80\x00\x54\x00\x68\x00\x65\x00\x20\ +\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\ +\x00\x6c\x00\x6c\x00\x2e\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x20\ +\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\x00\x69\x00\x66\x00\x20\ +\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\ +\x00\x6c\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\ +\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\ +\x00\x66\x00\x61\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x40\x54\x68\x65\x20\x77\x69\x64\x74\x68\x20\x6f\x66\x20\x74\ +\x68\x69\x73\x20\x77\x61\x6c\x6c\x2e\x20\x4e\x6f\x74\x20\x75\x73\ +\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\ +\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x66\x61\ +\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x12\x00\x54\x00\x68\x00\x69\x00\x63\x00\x6b\x00\x6e\x00\x65\x00\ +\x73\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\x68\x69\ +\x63\x6b\x6e\x65\x73\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x3a\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x6d\x00\x65\x00\x73\x00\x68\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x61\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x76\x00\x61\x00\x6c\x00\ +\x69\x00\x64\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x54\x68\x69\x73\x20\x6d\x65\ +\x73\x68\x20\x69\x73\x20\x61\x6e\x20\x69\x6e\x76\x61\x6c\x69\x64\ +\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x08\x00\x54\x00\x79\x00\x70\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x54\x79\x70\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x00\x54\x00\x79\x00\x70\ +\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\ +\x00\x73\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0f\x54\x79\x70\x65\x20\x63\x6f\x6e\x76\x65\x72\x73\x69\x6f\ +\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\ +\x00\x55\x00\x6e\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x74\ +\x00\x6f\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ +\x00\x20\x00\x61\x00\x20\x00\x72\x00\x6f\x00\x6f\x00\x66\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x17\x55\x6e\x61\x62\x6c\x65\x20\x74\ +\x6f\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x72\x6f\x6f\x66\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\x55\ +\x00\x6e\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x74\x00\x6f\ +\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x55\x6e\x61\x62\ +\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\x20\x63\x6f\x6d\ +\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x14\x00\x55\x00\x6e\x00\x67\x00\x72\x00\x6f\x00\ +\x75\x00\x70\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0a\x55\x6e\x67\x72\x6f\x75\x70\x69\x6e\x67\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x56\x00\x69\ +\x00\x65\x00\x77\x00\x20\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x07\x56\x69\x65\x77\x20\x6f\x66\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x4d\x00\x75\x00\x75\ +\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\x6c\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\ +\x57\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x70\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0c\x57\x61\x6c\x6c\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x57\x00\x61\ +\x00\x6c\x00\x6c\x00\x54\x00\x72\x00\x61\x00\x63\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x57\x61\x6c\x6c\x54\x72\x61\x63\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\ +\x00\x57\x00\x69\x00\x64\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x57\x69\x64\x74\x68\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x56\x00\x65\x00\x6e\x00\x73\ +\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x0a\x00\x57\x00\x69\x00\x72\x00\x65\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x05\x57\x69\x72\x65\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x5a\x00\ +\x20\x00\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x5a\x20\x6f\x66\x66\x73\x65\x74\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x26\x00\x63\ +\x00\x6c\x00\x6f\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x53\ +\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x20\x00\x65\x00\x64\ +\x00\x69\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x63\x6c\ +\x6f\x73\x69\x6e\x67\x20\x53\x6b\x65\x74\x63\x68\x20\x65\x64\x69\ +\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x36\ +\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x73\ +\x00\x20\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x63\ +\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x20\x00\x73\x00\x6f\ +\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\ +\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x61\x20\x6e\x6f\x6e\x2d\x63\ +\x6c\x6f\x73\x65\x64\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5a\x00\x63\x00\x6f\x00\x6e\ +\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x20\x00\x66\x00\x61\ +\x00\x63\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\ +\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x6f\x00\x6c\ +\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x63\x6f\ +\x6e\x74\x61\x69\x6e\x73\x20\x66\x61\x63\x65\x73\x20\x74\x68\x61\ +\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x70\x61\x72\x74\x20\x6f\ +\x66\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x64\x00\x6f\x00\x65\ +\x00\x73\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6e\ +\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x61\x00\x6e\x00\x79\ +\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x19\x64\x6f\x65\x73\x6e\x27\x74\x20\x63\x6f\ +\x6e\x74\x61\x69\x6e\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x66\ +\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x25\x00\x73\x00\x20\x00\x73\ +\x00\x75\x00\x63\x00\x63\x00\x65\x00\x73\x00\x73\x00\x66\x00\x75\ +\x00\x6c\x00\x6c\x00\x79\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x64\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1d\x66\x69\x6c\x65\x20\x25\x73\x20\x73\x75\x63\x63\x65\x73\ +\x73\x66\x75\x6c\x6c\x79\x20\x63\x72\x65\x61\x74\x65\x64\x2e\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x69\ +\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x63\x00\x6c\ +\x00\x6f\x00\x73\x00\x65\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x69\x73\x20\x6e\x6f\x74\x20\x63\x6c\x6f\x73\x65\x64\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x69\ +\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x76\x00\x61\ +\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x69\x73\x20\x6e\x6f\x74\x20\x76\x61\x6c\x69\x64\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x52\x00\x70\x00\x79\x00\ +\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\ +\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\x6f\x00\x75\x00\x6e\x00\ +\x64\x00\x2c\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\ +\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x73\x00\x75\x00\ +\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x2e\x00\x0a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x29\x70\x79\x63\x6f\x6c\x6c\x61\x64\x61\ +\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x6e\x6f\x20\x63\ +\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\x6f\x72\x74\x2e\x0a\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x64\x00\ +\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x20\x00\ +\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\ +\x74\x00\x6f\x00\x20\x00\x61\x00\x76\x00\x6f\x00\x69\x00\x64\x00\ +\x20\x00\x63\x00\x72\x00\x6f\x00\x73\x00\x73\x00\x2d\x00\x72\x00\ +\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x69\x00\ +\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x72\x65\x6d\ +\x6f\x76\x69\x6e\x67\x20\x73\x6b\x65\x74\x63\x68\x20\x73\x75\x70\ +\x70\x6f\x72\x74\x20\x74\x6f\x20\x61\x76\x6f\x69\x64\x20\x63\x72\ +\x6f\x73\x73\x2d\x72\x65\x66\x65\x72\x65\x6e\x63\x69\x6e\x67\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x73\ +\x00\x75\x00\x63\x00\x63\x00\x65\x00\x73\x00\x73\x00\x66\x00\x75\ +\x00\x6c\x00\x6c\x00\x79\x00\x20\x00\x77\x00\x72\x00\x69\x00\x74\ +\x00\x74\x00\x65\x00\x6e\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x15\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x77\ +\x72\x69\x74\x74\x65\x6e\x20\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x3a\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\ +\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x74\x68\x65\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\ +\x20\x77\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x24\x00\x56\x00\x6f\x00\x65\x00\x67\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ +\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0d\x41\x64\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\ +\x00\x00\x00\x78\x00\x44\x00\x65\x00\x20\x00\x67\x00\x65\x00\x73\ +\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x65\x00\x72\ +\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x6e\x00\x64\x00\x65\x00\x72\ +\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x6f\ +\x00\x65\x00\x76\x00\x6f\x00\x65\x00\x67\x00\x65\x00\x6e\x00\x20\ +\x00\x61\x00\x61\x00\x6e\x00\x20\x00\x68\x00\x65\x00\x74\x00\x20\ +\x00\x61\x00\x63\x00\x74\x00\x69\x00\x65\x00\x76\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x31\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\ +\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x08\x00\x41\x00\x78\x00\x69\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\x69\x73\ +\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x41\x78\x69\x73\x01\x03\ +\x00\x00\x00\x2e\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ +\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x69\ +\x00\x73\x00\x20\x00\x73\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\ +\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x6e\x20\x61\x78\x69\x73\x20\x73\x79\x73\x74\ +\x65\x6d\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x41\x78\x69\ +\x73\x01\x03\x00\x00\x00\x0c\x00\x47\x00\x65\x00\x62\x00\x6f\x00\ +\x75\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\ +\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\ +\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x70\x00\x4d\x00\ +\x61\x00\x61\x00\x6b\x00\x74\x00\x20\x00\x65\x00\x65\x00\x6e\x00\ +\x20\x00\x67\x00\x65\x00\x62\x00\x6f\x00\x75\x00\x77\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\ +\x63\x00\x6c\x00\x75\x00\x73\x00\x69\x00\x65\x00\x66\x00\x20\x00\ +\x67\x00\x65\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x65\x00\x65\x00\x72\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x00\x2e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x35\x43\x72\x65\x61\x74\x65\x73\x20\x61\ +\x20\x62\x75\x69\x6c\x64\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\ +\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\ +\x00\x00\x00\x06\x00\x43\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x43\x65\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\ +\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x64\x00\x4d\x00\x61\ +\x00\x61\x00\x6b\x00\x74\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\ +\x00\x63\x00\x65\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x75\x00\x69\ +\x00\x74\x00\x20\x00\x67\x00\x65\x00\x73\x00\x65\x00\x6c\x00\x65\ +\x00\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x64\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x65\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\ +\x73\x20\x61\x20\x63\x65\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x09\x41\ +\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x0a\x00\x43\ +\x00\x68\x00\x65\x00\x63\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x43\x68\x65\x63\x6b\x07\x00\x00\x00\x0a\x41\x72\x63\x68\ +\x5f\x43\x68\x65\x63\x6b\x01\x03\x00\x00\x00\x50\x00\x43\x00\x68\ +\x00\x65\x00\x63\x00\x6b\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\ +\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x72\ +\x00\x6f\x00\x62\x00\x6c\x00\x65\x00\x6d\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x28\x43\x68\x65\x63\x6b\x73\x20\x74\x68\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x66\x6f\x72\x20\x70\x72\x6f\x62\x6c\x65\x6d\x73\x07\x00\ +\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\x01\x03\x00\ +\x00\x00\x16\x00\x43\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x20\x00\ +\x68\x00\x6f\x00\x6c\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0b\x43\x6c\x6f\x73\x65\x20\x68\x6f\x6c\x65\x73\x07\x00\ +\x00\x00\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\ +\x65\x73\x01\x03\x00\x00\x00\x60\x00\x43\x00\x6c\x00\x6f\x00\x73\ +\x00\x65\x00\x73\x00\x20\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x73\ +\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x6e\ +\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x00\x73\x00\x2c\ +\x00\x20\x00\x74\x00\x75\x00\x72\x00\x6e\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x20\x00\x73\x00\x6f\ +\x00\x6c\x00\x69\x00\x64\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x30\x43\x6c\x6f\x73\x65\x73\x20\x68\x6f\x6c\x65\x73\x20\x69\ +\x6e\x20\x6f\x70\x65\x6e\x20\x73\x68\x61\x70\x65\x73\x2c\x20\x74\ +\x75\x72\x6e\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\x73\x6f\x6c\x69\ +\x64\x73\x07\x00\x00\x00\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\ +\x65\x48\x6f\x6c\x65\x73\x01\x03\x00\x00\x00\x68\x00\x4d\x00\x61\ +\x00\x61\x00\x6b\x00\x74\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\ +\x00\x76\x00\x6c\x00\x6f\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x76\x00\x61\x00\x6e\ +\x00\x75\x00\x69\x00\x74\x00\x20\x00\x67\x00\x65\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x64\ +\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x20\x66\x6c\x6f\x6f\x72\x20\x6f\x62\ +\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\ +\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\ +\x00\x00\x00\x14\x00\x56\x00\x65\x00\x72\x00\x64\x00\x69\x00\x65\ +\x00\x70\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x0a\x41\x72\x63\x68\ +\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x1a\x00\x4e\x00\x65\ +\x00\x74\x00\x20\x00\x6e\x00\x61\x00\x61\x00\x72\x00\x20\x00\x56\ +\x00\x6f\x00\x72\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ +\x4d\x65\x73\x68\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\ +\x00\x10\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\ +\x70\x65\x01\x03\x00\x00\x00\x5a\x00\x54\x00\x75\x00\x72\x00\x6e\ +\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\ +\x00\x65\x00\x64\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\ +\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x50\ +\x00\x61\x00\x72\x00\x74\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\ +\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x54\x75\x72\x6e\ +\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\ +\x73\x20\x69\x6e\x74\x6f\x20\x50\x61\x72\x74\x20\x53\x68\x61\x70\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x10\x41\x72\ +\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\ +\x00\x00\x00\x2a\x00\x56\x00\x65\x00\x72\x00\x77\x00\x69\x00\x6a\ +\x00\x64\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x63\x00\x6f\ +\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\x6d\x6f\x76\x65\x20\x63\ +\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\ +\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\xac\x00\x56\ +\x00\x65\x00\x72\x00\x77\x00\x69\x00\x6a\x00\x64\x00\x65\x00\x72\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x67\x00\x65\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x64\ +\x00\x65\x00\x20\x00\x6f\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x64\ +\x00\x65\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x6e\ +\x00\x20\x00\x68\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x75\x00\x64\ +\x00\x65\x00\x72\x00\x73\x00\x2c\x00\x20\x00\x6f\x00\x66\x00\x20\ +\x00\x6d\x00\x61\x00\x61\x00\x6b\x00\x20\x00\x65\x00\x65\x00\x6e\ +\x00\x20\x00\x67\x00\x61\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x20\ +\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x52\x52\x65\x6d\x6f\x76\x65\x20\x74\x68\x65\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x69\x72\x20\x70\x61\ +\x72\x65\x6e\x74\x73\x2c\x20\x6f\x72\x20\x63\x72\x65\x61\x74\x65\ +\x20\x61\x20\x68\x6f\x6c\x65\x20\x69\x6e\x20\x61\x20\x63\x6f\x6d\ +\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\ +\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\x20\x00\x56\x00\x6f\ +\x00\x72\x00\x6d\x00\x20\x00\x76\x00\x65\x00\x72\x00\x77\x00\x69\ +\x00\x6a\x00\x64\x00\x65\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x16\x52\x65\x6d\x6f\x76\x65\x20\x53\x68\x61\ +\x70\x65\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x07\x00\x00\x00\ +\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\ +\x65\x01\x03\x00\x00\x00\x5c\x00\x56\x00\x65\x00\x72\x00\x77\x00\ +\x69\x00\x6a\x00\x64\x00\x65\x00\x72\x00\x74\x00\x20\x00\x6b\x00\ +\x75\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x65\x00\x20\x00\x76\x00\ +\x6f\x00\x72\x00\x6d\x00\x65\x00\x6e\x00\x20\x00\x75\x00\x69\x00\ +\x74\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x2d\x00\x63\x00\ +\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\ +\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x52\x65\x6d\ +\x6f\x76\x65\x73\x20\x63\x75\x62\x69\x63\x20\x73\x68\x61\x70\x65\ +\x73\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x20\x63\x6f\x6d\x70\ +\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\ +\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\ +\x72\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\ +\x20\x00\x61\x00\x20\x00\x72\x00\x6f\x00\x6f\x00\x66\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\ +\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ +\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6f\x00\x66\x00\ +\x20\x00\x61\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x39\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x72\x6f\x6f\x66\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x66\x61\x63\x65\x20\x6f\x66\x20\x61\x6e\x20\ +\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\ +\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x08\x00\x52\x00\x6f\x00\x6f\ +\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\x66\ +\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\ +\x00\x00\x00\x7c\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ +\x00\x73\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\ +\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x2c\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x64\ +\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3e\x43\x72\x65\x61\x74\x65\ +\x73\x20\x61\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x69\x6e\x63\x6c\x75\x64\ +\x69\x6e\x67\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x11\x41\x72\x63\ +\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\ +\x00\x00\x00\x14\x00\x53\x00\x65\x00\x63\x00\x74\x00\x69\x00\x65\ +\x00\x70\x00\x6c\x00\x61\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\ +\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\ +\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x3e\x00\x4e\x00\x69\x00\ +\x65\x00\x74\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\x66\x00\ +\x6f\x00\x6c\x00\x64\x00\x20\x00\x6e\x00\x65\x00\x74\x00\x74\x00\ +\x65\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x65\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\ +\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\ +\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\ +\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\ +\xaa\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\ +\x65\x00\x72\x00\x74\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\ +\x20\x00\x6e\x00\x69\x00\x65\x00\x74\x00\x2d\x00\x6d\x00\x61\x00\ +\x6e\x00\x69\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x6e\x00\ +\x65\x00\x74\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x61\x00\ +\x6e\x00\x20\x00\x68\x00\x65\x00\x74\x00\x20\x00\x64\x00\x6f\x00\ +\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x67\x00\x65\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x65\x00\x65\x00\x72\x00\x64\x00\x65\x00\x20\x00\x67\x00\ +\x72\x00\x6f\x00\x65\x00\x70\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x4d\x53\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\ +\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\ +\x73\x68\x65\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x64\x6f\ +\x63\x75\x6d\x65\x6e\x74\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x74\ +\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x67\x72\x6f\x75\ +\x70\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\ +\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\ +\x01\x03\x00\x00\x00\x86\x00\x4d\x00\x61\x00\x61\x00\x6b\x00\x74\ +\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x62\x00\x6f\x00\x75\ +\x00\x77\x00\x74\x00\x65\x00\x72\x00\x72\x00\x65\x00\x69\x00\x6e\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\ +\x00\x6d\x00\x65\x00\x74\x00\x20\x00\x67\x00\x65\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x64\ +\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x65\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x62\x00\x65\x00\x67\ +\x00\x72\x00\x65\x00\x70\x00\x65\x00\x6e\x00\x2e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ +\x73\x69\x74\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\ +\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\ +\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\x0a\x00\x5a\x00\x69\x00\ +\x6a\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\ +\x69\x74\x65\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\ +\x65\x01\x03\x00\x00\x00\x18\x00\x4e\x00\x65\x00\x74\x00\x20\x00\ +\x73\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x74\x00\x65\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\ +\x65\x73\x68\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\ +\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\x72\x00\x53\x00\x70\ +\x00\x6c\x00\x69\x00\x74\x00\x73\x00\x20\x00\x67\x00\x65\x00\x73\ +\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x65\x00\x72\ +\x00\x64\x00\x65\x00\x20\x00\x6e\x00\x65\x00\x74\x00\x74\x00\x65\ +\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x6f\x00\x6e\x00\x61\ +\x00\x66\x00\x68\x00\x61\x00\x6e\x00\x6b\x00\x65\x00\x6c\x00\x69\ +\x00\x6a\x00\x6b\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x32\x53\x70\x6c\x69\x74\x73\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\ +\x6e\x74\x6f\x20\x69\x6e\x64\x65\x70\x65\x6e\x64\x65\x6e\x74\x20\ +\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x0e\x41\ +\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\ +\x00\x00\xc2\x00\x4d\x00\x61\x00\x61\x00\x6b\x00\x20\x00\x65\x00\ +\x65\x00\x6e\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\ +\x74\x00\x75\x00\x75\x00\x72\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x61\x00\x66\x00\ +\x20\x00\x6e\x00\x75\x00\x6c\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x76\x00\x61\x00\x6e\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\ +\x67\x00\x65\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x65\x00\x65\x00\x72\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x20\x00\x28\x00\x73\x00\x63\x00\x68\x00\ +\x65\x00\x74\x00\x73\x00\x2c\x00\x20\x00\x64\x00\x72\x00\x61\x00\ +\x61\x00\x64\x00\x2c\x00\x20\x00\x76\x00\x6c\x00\x61\x00\x6b\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x76\x00\x6f\x00\x6c\x00\x75\x00\ +\x6d\x00\x65\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5f\x43\ +\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x74\x72\x75\x63\x74\x75\ +\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\ +\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x28\x73\x6b\x65\x74\x63\x68\x2c\x20\x77\x69\x72\x65\x2c\x20\ +\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\ +\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\ +\x65\x01\x03\x00\x00\x00\x12\x00\x53\x00\x74\x00\x72\x00\x75\x00\ +\x63\x00\x74\x00\x75\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\ +\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\ +\x03\x00\x00\x00\xa8\x00\x4d\x00\x61\x00\x61\x00\x6b\x00\x20\x00\ +\x65\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x75\x00\x75\x00\x72\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x76\x00\ +\x61\x00\x6e\x00\x61\x00\x66\x00\x20\x00\x6e\x00\x75\x00\x6c\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\ +\x65\x00\x65\x00\x6e\x00\x20\x00\x67\x00\x65\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x64\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ +\x28\x00\x64\x00\x72\x00\x61\x00\x61\x00\x64\x00\x2c\x00\x20\x00\ +\x76\x00\x6c\x00\x61\x00\x6b\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x76\x00\x6f\x00\x6c\x00\x75\x00\x6d\x00\x65\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x52\x43\x72\x65\x61\x74\x65\x73\x20\x61\ +\x20\x77\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\ +\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\ +\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\ +\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x09\x41\x72\ +\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\x08\x00\x4d\x00\ +\x75\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\ +\x61\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\ +\x6c\x01\x03\x00\x00\x00\x94\x00\x43\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x77\x00\x69\x00\ +\x6e\x00\x64\x00\x6f\x00\x77\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ +\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x28\x00\x77\x00\x69\x00\x72\x00\x65\x00\ +\x2c\x00\x20\x00\x72\x00\x65\x00\x63\x00\x74\x00\x61\x00\x6e\x00\ +\x67\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x73\x00\ +\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x4a\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\ +\x69\x6e\x64\x6f\x77\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\ +\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x72\x65\x63\x74\x61\ +\x6e\x67\x6c\x65\x20\x6f\x72\x20\x73\x6b\x65\x74\x63\x68\x29\x07\ +\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\ +\x03\x00\x00\x00\x0e\x00\x56\x00\x65\x00\x6e\x00\x73\x00\x74\x00\ +\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\ +\x64\x6f\x77\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\ +\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x32\x00\x44\x00\x20\x00\ +\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x69\x00\x6e\x00\ +\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x32\x44\x20\x72\x65\ +\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x50\x00\x43\ +\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x67\ +\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x73\x00\x20\x00\x66\x00\x6f\ +\x00\x72\x00\x20\x00\x65\x00\x61\x00\x63\x00\x68\x00\x20\x00\x41\ +\x00\x72\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x28\x43\x72\x65\x61\x74\x65\x73\x20\ +\x67\x72\x6f\x75\x70\x73\x20\x66\x6f\x72\x20\x65\x61\x63\x68\x20\ +\x41\x72\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x3c\x00\x43\x00\x75\x00\x74\x00\x20\x00\ +\x61\x00\x72\x00\x65\x00\x61\x00\x73\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x65\x00\x20\x00\x74\x00\x68\x00\x69\x00\x63\x00\x6b\x00\ +\x6e\x00\x65\x00\x73\x00\x73\x00\x20\x00\x72\x00\x61\x00\x74\x00\ +\x69\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x43\x75\x74\ +\x20\x61\x72\x65\x61\x73\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\ +\x6b\x6e\x65\x73\x73\x20\x72\x61\x74\x69\x6f\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x3c\x00\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x61\ +\x00\x72\x00\x64\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\ +\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x74\x00\x72\ +\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1c\x44\x65\x66\x61\x75\x6c\x74\x20\ +\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x74\x72\x75\x63\x74\ +\x75\x72\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x53\x00\x74\x00\ +\x61\x00\x6e\x00\x64\x00\x61\x00\x61\x00\x72\x00\x64\x00\x20\x00\ +\x6b\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x76\x00\x6f\x00\ +\x6f\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6d\x00\x75\x00\ +\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x44\ +\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ +\x20\x77\x61\x6c\x6c\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x44\x00\ +\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\ +\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x20\x00\x77\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x19\x44\x65\x66\x61\x75\x6c\x74\ +\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\x69\x6e\x64\x6f\ +\x77\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\x41\x00\x6c\x00\x67\x00\ +\x65\x00\x6d\x00\x65\x00\x6e\x00\x65\x00\x20\x00\x41\x00\x72\x00\ +\x63\x00\x68\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\x00\ +\x6c\x00\x6c\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\x20\x41\ +\x72\x63\x68\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x2a\x00\x41\x00\x6c\x00\x67\x00\x65\x00\x6d\x00\x65\x00\ +\x6e\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\x00\ +\x6c\x00\x6c\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\ +\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x47\ +\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\ +\x00\x62\x00\x79\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x72\x6f\x75\x70\x20\ +\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x62\x79\x20\x74\x79\ +\x70\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x49\x00\x46\x00\x43\ +\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\x49\x46\x43\x20\x69\x6d\x70\x6f\ +\x72\x74\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\xba\x00\x49\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x49\x00\x46\x00\x43\x00\ +\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\ +\x6c\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\ +\x62\x00\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x61\x00\x6c\x00\x6c\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x69\x00\x6d\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x72\x00\x65\x00\ +\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\x74\x00\x79\x00\x70\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x49\x66\x20\ +\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x74\x68\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\ +\x6c\x20\x69\x6d\x70\x6f\x72\x74\x65\x72\x20\x77\x69\x6c\x6c\x20\ +\x62\x65\x20\x75\x73\x65\x64\x2c\x20\x61\x6c\x6c\x6f\x77\x69\x6e\ +\x67\x20\x74\x6f\x20\x69\x6d\x70\x6f\x72\x74\x20\x6d\x6f\x72\x65\ +\x20\x49\x46\x43\x20\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x56\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\ +\x66\x00\x75\x00\x72\x00\x6e\x00\x69\x00\x74\x00\x75\x00\x72\x00\ +\x65\x00\x20\x00\x28\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x6d\x00\ +\x61\x00\x6b\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x6d\x00\x6f\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x68\x00\x65\x00\ +\x61\x00\x76\x00\x79\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2b\x49\x6d\x70\x6f\x72\x74\x20\x66\x75\x72\x6e\x69\x74\x75\x72\ +\x65\x20\x28\x63\x61\x6e\x20\x6d\x61\x6b\x65\x20\x74\x68\x65\x20\ +\x6d\x6f\x64\x65\x6c\x20\x68\x65\x61\x76\x79\x29\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x54\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x64\x00\ +\x65\x00\x62\x00\x75\x00\x67\x00\x20\x00\x69\x00\x6e\x00\x66\x00\ +\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x20\x00\x64\x00\x75\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x32\x00\x44\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\ +\x72\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2a\x53\x68\x6f\x77\x20\x64\x65\x62\x75\x67\x20\x69\x6e\x66\x6f\ +\x72\x6d\x61\x74\x69\x6f\x6e\x20\x64\x75\x72\x69\x6e\x67\x20\x32\ +\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x38\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x72\x00\x65\ +\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x65\x00\x72\x00\x20\x00\x64\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x20\x00\x6d\x00\x65\x00\x73\ +\x00\x73\x00\x61\x00\x67\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1c\x53\x68\x6f\x77\x20\x72\x65\x6e\x64\x65\x72\x65\ +\x72\x20\x64\x65\x62\x75\x67\x20\x6d\x65\x73\x73\x61\x67\x65\x73\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x9e\x00\x53\x00\x70\x00\x65\x00\x63\x00\ +\x69\x00\x66\x00\x69\x00\x65\x00\x73\x00\x20\x00\x68\x00\x6f\x00\ +\x77\x00\x20\x00\x6d\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x74\x00\ +\x69\x00\x6d\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x76\x00\x69\x00\x65\x00\x77\x00\x65\x00\x64\x00\x20\x00\ +\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x63\x00\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x00\x20\x00\x6d\x00\ +\x75\x00\x73\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x61\x00\ +\x70\x00\x70\x00\x6c\x00\x69\x00\x65\x00\x64\x00\x20\x00\x74\x00\ +\x6f\x00\x20\x00\x63\x00\x75\x00\x74\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x53\ +\x70\x65\x63\x69\x66\x69\x65\x73\x20\x68\x6f\x77\x20\x6d\x61\x6e\ +\x79\x20\x74\x69\x6d\x65\x73\x20\x74\x68\x65\x20\x76\x69\x65\x77\ +\x65\x64\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\ +\x73\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x70\x70\x6c\x69\x65\ +\x64\x20\x74\x6f\x20\x63\x75\x74\x20\x6c\x69\x6e\x65\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x6e\x00\x44\x00\x69\x00\x74\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x73\x00\x74\x00\x61\x00\ +\x6e\x00\x64\x00\x61\x00\x61\x00\x72\x00\x64\x00\x6b\x00\x6c\x00\ +\x65\x00\x75\x00\x72\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\ +\x20\x00\x6e\x00\x69\x00\x65\x00\x75\x00\x77\x00\x65\x00\x20\x00\ +\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x75\x00\ +\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x54\x68\x69\ +\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\ +\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x53\ +\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x64\x00\x44\x00\x69\x00\x74\x00\x20\x00\ +\x69\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x73\x00\x74\x00\ +\x61\x00\x6e\x00\x64\x00\x61\x00\x61\x00\x72\x00\x64\x00\x6b\x00\ +\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\ +\x72\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x75\x00\x77\x00\x65\x00\ +\x20\x00\x6d\x00\x75\x00\x75\x00\x72\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\ +\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\ +\x6f\x72\x20\x6e\x65\x77\x20\x57\x61\x6c\x6c\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x55\x00\x73\x00\x65\ +\x00\x20\x00\x49\x00\x46\x00\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\ +\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x66\ +\x00\x20\x00\x61\x00\x76\x00\x61\x00\x69\x00\x6c\x00\x61\x00\x62\ +\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\ +\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\x69\ +\x66\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x1a\x00\x26\x00\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\x74\ +\x00\x65\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x26\x41\x72\x63\x68\x69\x74\x65\x63\x74\ +\x75\x72\x65\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0c\x00\x26\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x26\x44\x72\x61\x66\x74\x07\x00\ +\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x00\x41\x00\ +\x72\x00\x63\x00\x68\x00\x20\x00\x77\x00\x65\x00\x72\x00\x6b\x00\ +\x74\x00\x75\x00\x69\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0a\x41\x72\x63\x68\x20\x74\x6f\x6f\x6c\x73\x07\ +\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x22\x00\x43\ +\x00\x61\x00\x6c\x00\x63\x00\x75\x00\x6c\x00\x61\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x20\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x43\x61\x6c\x63\x75\x6c\ +\x61\x74\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\ +\x61\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x43\x00\x6f\x00\x6e\ +\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\x00\x54\x00\x6f\x00\x6f\ +\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\ +\x6e\x74\x65\x78\x74\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\ +\x61\x72\x63\x68\x01\x03\x00\x00\x00\x20\x00\x43\x00\x6f\x00\x6e\ +\x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\ +\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x43\x6f\x6e\x76\x65\x72\x73\x69\x6f\x6e\x20\x54\ +\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\ +\x00\x00\x1e\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\ +\x6d\x00\x6f\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x44\x72\x61\x66\x74\ +\x20\x6d\x6f\x64\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\ +\x72\x63\x68\x01\x03\x00\x00\x00\x20\x00\x44\x00\x72\x00\x61\x00\ +\x66\x00\x74\x00\x20\x00\x77\x00\x65\x00\x72\x00\x6b\x00\x74\x00\ +\x75\x00\x69\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0b\x44\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\ +\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x6e\x00\x70\x00\ +\x79\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\ +\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\x6f\x00\x75\x00\ +\x6e\x00\x64\x00\x2c\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\ +\x61\x00\x64\x00\x61\x00\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\ +\x20\x00\x62\x00\x65\x00\x20\x00\x64\x00\x69\x00\x73\x00\x61\x00\ +\x62\x00\x6c\x00\x65\x00\x64\x00\x2e\x00\x0a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x37\x70\x79\x63\x6f\x6c\x6c\x61\x64\x61\x20\x6e\ +\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x63\x6f\x6c\x6c\x61\x64\ +\x61\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x77\x69\x6c\x6c\x20\x62\ +\x65\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x2e\x0a\x07\x00\x00\x00\ +\x04\x61\x72\x63\x68\x01\ +\x00\x00\x4a\x8d\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x04\xf8\x00\x00\x47\xa4\x00\x00\x00\x49\x00\x04\x8e\xc3\ +\x00\x00\x01\x67\x00\x04\x8f\x03\x00\x00\x02\x1a\x00\x04\x8f\x03\ +\x00\x00\x25\xc2\x00\x04\x9c\x2c\x00\x00\x27\x56\x00\x04\xbb\x04\ +\x00\x00\x07\xca\x00\x05\x48\x35\x00\x00\x0c\xd1\x00\x05\x67\xd5\ +\x00\x00\x0e\xe5\x00\x05\x96\x56\x00\x00\x0f\x39\x00\x05\x96\x56\ +\x00\x00\x2e\xfc\x00\x05\xa0\xa5\x00\x00\x0f\x5e\x00\x05\xa0\xa5\ +\x00\x00\x32\x7d\x00\x05\xc0\x65\x00\x00\x1d\x45\x00\x05\xd8\x2c\ +\x00\x00\x1e\xd8\x00\x05\xd8\x2c\x00\x00\x36\x1b\x00\x32\x23\xa5\ +\x00\x00\x42\x96\x00\x39\xdf\x33\x00\x00\x3a\xff\x00\x48\x4e\x25\ +\x00\x00\x01\x43\x00\x49\xeb\x9b\x00\x00\x28\x36\x00\x4b\x55\x33\ +\x00\x00\x3c\x2f\x00\x4d\x36\x62\x00\x00\x0a\x25\x00\x4d\x36\x62\ +\x00\x00\x2a\xa4\x00\x5d\xfb\xa8\x00\x00\x1f\x70\x00\x5e\x08\xc3\ +\x00\x00\x1f\xc1\x00\x61\xb0\x33\x00\x00\x16\xb9\x00\x62\x9b\xa8\ +\x00\x00\x0f\xed\x00\x62\x9b\xa8\x00\x00\x32\xad\x00\x8a\x92\x57\ +\x00\x00\x00\x00\x00\xaa\x80\x25\x00\x00\x07\x1d\x00\xc9\x7b\xf3\ +\x00\x00\x12\xac\x00\xfb\x72\xf3\x00\x00\x3a\x8b\x01\x19\x4e\x85\ +\x00\x00\x05\xa7\x01\x55\x2b\xf5\x00\x00\x05\x18\x01\x79\x17\x94\ +\x00\x00\x22\x8a\x01\x8e\x84\xa6\x00\x00\x11\x68\x01\xad\x7d\xe3\ +\x00\x00\x44\x29\x01\xaf\x41\x84\x00\x00\x21\x76\x01\xf7\xa8\x83\ +\x00\x00\x41\x4b\x02\x01\x7f\xd3\x00\x00\x10\x5e\x02\x29\xb3\xc4\ +\x00\x00\x2e\x33\x02\x5a\x4a\x53\x00\x00\x15\xd7\x02\x5f\xc9\x59\ +\x00\x00\x35\x09\x02\x66\x7f\x7e\x00\x00\x0d\xbd\x02\x6a\x77\x99\ +\x00\x00\x3d\x77\x02\x80\x5f\x17\x00\x00\x23\x5b\x02\x82\x88\x3a\ +\x00\x00\x04\x34\x02\x85\x4f\xf5\x00\x00\x19\x3f\x02\x90\x40\x65\ +\x00\x00\x0c\x95\x02\x90\x40\x65\x00\x00\x2a\xd0\x02\x94\x16\x35\ +\x00\x00\x10\x9b\x02\xab\x87\xd4\x00\x00\x42\xd6\x02\xb8\xae\x74\ +\x00\x00\x2b\xc4\x02\xc3\x91\x93\x00\x00\x3e\xd8\x02\xcd\x05\xa3\ +\x00\x00\x2b\x18\x02\xdd\x14\x14\x00\x00\x2c\x18\x03\x13\x15\x3e\ +\x00\x00\x0b\x41\x03\x1b\xda\x15\x00\x00\x1f\x3c\x03\x1d\xe8\xe3\ +\x00\x00\x38\xfe\x03\x29\x7a\x34\x00\x00\x00\xd9\x03\x2c\xe9\xb3\ +\x00\x00\x17\x20\x03\x92\x51\xe0\x00\x00\x0f\x89\x03\xa2\xec\x23\ +\x00\x00\x1e\xff\x03\xbe\xb0\x34\x00\x00\x1e\x0c\x03\xce\x98\xe5\ +\x00\x00\x03\xbe\x03\xd4\x22\x74\x00\x00\x24\xd2\x04\x35\xfa\x55\ +\x00\x00\x12\x21\x04\xc3\x75\x44\x00\x00\x19\x94\x04\xdb\x21\x3e\ +\x00\x00\x31\xc6\x04\xeb\xfd\xf4\x00\x00\x0a\x7c\x05\x14\x5b\x83\ +\x00\x00\x07\x4e\x05\x18\xda\xa3\x00\x00\x29\xf4\x05\x5f\x3d\x83\ +\x00\x00\x3a\x0f\x05\x8c\x46\xc5\x00\x00\x0f\x0a\x05\x90\xba\xe3\ +\x00\x00\x0e\xb7\x05\xc0\x56\xe3\x00\x00\x3f\x5d\x05\xc7\xeb\xc7\ +\x00\x00\x3e\x29\x05\xe0\x4b\x67\x00\x00\x1f\x98\x05\xe0\x4b\x67\ +\x00\x00\x37\x45\x05\xef\x78\x4a\x00\x00\x22\xc7\x06\x1f\x6f\xa4\ +\x00\x00\x20\xd6\x06\x32\xe3\xe3\x00\x00\x44\x6f\x06\x5b\x01\x15\ +\x00\x00\x03\x8d\x06\x69\xd0\x04\x00\x00\x20\x6c\x06\x9f\x6f\xd4\ +\x00\x00\x06\xbf\x06\xd6\x3f\xa4\x00\x00\x22\x4a\x06\xe6\x2f\x43\ +\x00\x00\x11\xc3\x07\x00\xcc\xc4\x00\x00\x3b\xe0\x07\x07\x84\xba\ +\x00\x00\x44\xbd\x07\x08\x43\x0e\x00\x00\x25\xec\x07\x16\x58\x05\ +\x00\x00\x37\xca\x07\x25\x74\x53\x00\x00\x28\xfb\x07\x28\xff\x15\ +\x00\x00\x0d\x47\x07\x36\x51\x26\x00\x00\x13\x8e\x07\x5c\xdc\x04\ +\x00\x00\x1f\xe9\x07\x60\x23\xf3\x00\x00\x02\xf4\x07\xca\xf8\x87\ +\x00\x00\x37\x75\x08\x25\x81\xc4\x00\x00\x06\x6a\x08\x4a\x45\xd9\ +\x00\x00\x36\x47\x08\x65\x4c\x95\x00\x00\x1b\xc8\x08\xc5\xe3\x35\ +\x00\x00\x1b\x13\x08\xca\xc9\x74\x00\x00\x14\xb6\x08\xfb\xb8\xa4\ +\x00\x00\x09\xbe\x09\x69\xac\xa7\x00\x00\x1e\x73\x09\x6c\x6c\xa7\ +\x00\x00\x0a\x4b\x09\x9f\xcc\xde\x00\x00\x21\xda\x09\xba\xe6\x35\ +\x00\x00\x10\x2a\x09\xba\xe6\x35\x00\x00\x34\xcb\x09\xc5\xbe\xca\ +\x00\x00\x09\x1e\x09\xe3\x98\xe4\x00\x00\x25\x1c\x09\xed\x98\x55\ +\x00\x00\x30\x06\x0a\x3e\x06\x83\x00\x00\x04\xa4\x0a\x3f\x1f\xd6\ +\x00\x00\x04\xde\x0a\x3f\x2b\x25\x00\x00\x05\x6d\x0a\x3f\x5d\xac\ +\x00\x00\x05\xf0\x0a\x7f\xee\xa3\x00\x00\x43\x01\x0a\xb6\xc8\x9a\ +\x00\x00\x0a\xa7\x0a\xbf\x46\x0e\x00\x00\x1d\x68\x0a\xd6\x07\x84\ +\x00\x00\x20\x1a\x0b\x0a\xc3\xf3\x00\x00\x00\x71\x0b\x51\x30\xa8\ +\x00\x00\x2d\x2c\x0b\x65\xda\xb3\x00\x00\x39\x91\x0b\x8d\x97\x93\ +\x00\x00\x40\x7b\x0b\x9c\x5b\xe7\x00\x00\x08\x81\x0b\xb9\xe8\x93\ +\x00\x00\x2d\x93\x0b\xc4\xb1\x23\x00\x00\x27\x84\x0c\x02\xac\xd7\ +\x00\x00\x02\xc5\x0c\x02\xac\xd7\x00\x00\x26\x4f\x0c\x25\x3e\x53\ +\x00\x00\x30\xd5\x0c\x3c\x8b\x33\x00\x00\x43\x54\x0c\x41\x0a\x83\ +\x00\x00\x43\xa0\x0c\x4e\x9b\x23\x00\x00\x30\x5b\x0c\x98\x80\x23\ +\x00\x00\x43\xe0\x0c\xc4\xd0\x80\x00\x00\x24\x0a\x0c\xdf\x5a\x1e\ +\x00\x00\x01\x8c\x0c\xfc\x97\x06\x00\x00\x1e\xaa\x0d\x03\x26\xb4\ +\x00\x00\x02\x82\x0d\x08\x90\xf3\x00\x00\x1a\xa6\x0d\x1e\xda\xa4\ +\x00\x00\x03\x2b\x0d\x3b\x3b\x49\x00\x00\x33\x91\x0d\xa8\x3a\x35\ +\x00\x00\x17\x7b\x0d\xc1\x7d\x47\x00\x00\x24\x62\x0d\xfa\x53\xe5\ +\x00\x00\x07\xf3\x0e\x69\x87\x13\x00\x00\x2f\x26\x0e\x8c\xd7\x43\ +\x00\x00\x32\xf4\x0e\x98\x0a\xd6\x00\x00\x1d\xae\x0e\xab\x8d\x1f\ +\x00\x00\x38\x73\x0e\xb9\x1b\xf2\x00\x00\x14\x55\x0e\xec\x0b\x9e\ +\x00\x00\x26\x87\x0f\x16\x4a\x24\x00\x00\x1c\xd5\x0f\x17\xc7\xa3\ +\x00\x00\x28\x64\x0f\x55\xc1\x57\x00\x00\x06\x2a\x0f\x78\x41\x05\ +\x00\x00\x42\x0e\x0f\x79\xe3\xf3\x00\x00\x29\x40\x0f\x95\xd5\x09\ +\x00\x00\x18\x33\x0f\xa2\x16\x43\x00\x00\x1c\xa1\x0f\xc0\xb8\xb4\ +\x00\x00\x0c\xf8\x0f\xd0\x39\x44\x00\x00\x02\x3f\x0f\xe5\x74\x74\ +\x00\x00\x00\xa5\x0f\xf3\xe8\x33\x00\x00\x3b\x64\x69\x00\x00\x45\ +\x7b\x03\x00\x00\x00\x20\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x42\x00\x75\x00\x69\x00\x6c\x00\x64\ +\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x20\x43\x72\x65\x61\x74\x65\x20\x42\x75\x69\x6c\x64\x69\x6e\x67\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x04\ +\x14\x04\x3e\x04\x34\x04\x30\x04\x42\x04\x38\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x03\x41\x64\x64\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x12\x00\x41\x00\x64\x00\x64\x00\x69\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x41\x64\x64\x69\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x41\x00\x6c\x00\ +\x69\x00\x67\x00\x6e\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x41\x6c\x69\x67\x6e\x6d\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x36\x00\ +\x41\x00\x6c\x00\x6c\x00\x20\x00\x67\x00\x6f\x00\x6f\x00\x64\x00\ +\x21\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x62\x00\x6c\x00\x65\x00\x6d\x00\x73\x00\x20\x00\x66\x00\x6f\x00\ +\x75\x00\x6e\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x41\ +\x6c\x6c\x20\x67\x6f\x6f\x64\x21\x20\x6e\x6f\x20\x70\x72\x6f\x62\ +\x6c\x65\x6d\x73\x20\x66\x6f\x75\x6e\x64\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x06\x04\x1a\x04\x43\x04\x42\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x6e\x67\x6c\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x41\x00\ +\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\ +\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x4e\x00\x41\x00\x78\x00\x65\x00\x73\x00\x20\x00\x73\x00\x79\ +\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x73\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\ +\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x69\x00\x73\x00\x20\ +\x00\x62\x00\x75\x00\x69\x00\x6c\x00\x74\x00\x20\x00\x6f\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x41\x78\x65\x73\x20\x73\ +\x79\x73\x74\x65\x6d\x73\x20\x74\x68\x69\x73\x20\x73\x74\x72\x75\ +\x63\x74\x75\x72\x65\x20\x69\x73\x20\x62\x75\x69\x6c\x74\x20\x6f\ +\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\ +\x00\x41\x00\x78\x00\x69\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x41\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x1c\x00\x42\x00\x61\x00\x73\x00\x65\x00\x20\x00\ +\x32\x00\x44\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x42\x61\x73\x65\x20\ +\x32\x44\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x1c\x00\x42\x00\x61\x00\x73\x00\x65\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ +\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x42\x61\ +\x73\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x04\x11\x04\x43\x04\ +\x34\x04\x56\x04\x32\x04\x3b\x04\x4f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x04\x1a\x04\x3e\x04\x3c\ +\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\x04\x42\x04\x38\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x30\x04\x1a\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\ +\x3d\x04\x42\x04\x38\x00\x20\x04\x46\x04\x4c\x04\x3e\x04\x33\x04\ +\x3e\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\x04\x42\x04\ +\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x43\x6f\x6d\x70\x6f\ +\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6f\x62\ +\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x10\x00\x43\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\ +\x75\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x6f\x6e\ +\x74\x69\x6e\x75\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x3e\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\ +\x00\x27\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x75\ +\x00\x74\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x77\ +\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x43\x6f\x75\x6c\ +\x64\x6e\x27\x74\x20\x63\x6f\x6d\x70\x75\x74\x65\x20\x74\x68\x65\ +\x20\x77\x61\x6c\x6c\x20\x73\x68\x61\x70\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x43\x00\x6f\x00\x75\ +\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x6c\x00\x6f\ +\x00\x63\x00\x61\x00\x74\x00\x65\x00\x20\x00\x49\x00\x66\x00\x63\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\ +\x00\x6c\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x43\x6f\ +\x75\x6c\x64\x6e\x27\x74\x20\x6c\x6f\x63\x61\x74\x65\x20\x49\x66\ +\x63\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x0a\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x20\x00\x41\x00\x78\x00\x69\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\ +\x20\x41\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x16\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ +\x00\x20\x00\x52\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x52\x6f\x6f\x66\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x43\ +\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\x65\ +\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x50\x00\x6c\ +\x00\x61\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\ +\x43\x72\x65\x61\x74\x65\x20\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\ +\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x16\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\ +\x20\x00\x53\x00\x69\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x53\x69\x74\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x20\x00\x43\x00\ +\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\x74\x00\ +\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\x74\x65\x20\x53\x74\ +\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x16\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\ +\x00\x65\x00\x20\x00\x57\x00\x61\x00\x6c\x00\x6c\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x57\x61\x6c\ +\x6c\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x57\ +\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0d\x43\x72\x65\x61\x74\x65\x20\x57\x69\x6e\x64\x6f\ +\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x6e\ +\x00\x65\x00\x77\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\ +\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x14\x43\x72\x65\x61\x74\x65\x20\x6e\x65\x77\x20\x63\x6f\x6d\ +\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x2e\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\ +\x65\x00\x2f\x00\x75\x00\x70\x00\x64\x00\x61\x00\x74\x00\x65\x00\ +\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\ +\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\ +\x61\x74\x65\x2f\x75\x70\x64\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\ +\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x10\x04\x12\x04\x56\x04\x34\x04\x41\x04\x42\x04\x30\x04\ +\x3d\x04\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x44\x69\x73\ +\x74\x61\x6e\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x42\x00\x44\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6e\ +\x00\x63\x00\x65\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\ +\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x62\ +\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x61\ +\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\ +\x44\x69\x73\x74\x61\x6e\x63\x65\x73\x20\x61\x6e\x64\x20\x61\x6e\ +\x67\x6c\x65\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x61\x78\x65\ +\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\ +\x04\x1f\x04\x40\x04\x30\x04\x32\x04\x3a\x04\x30\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x4e\x00\x45\x00\x72\x00\x72\x00\ +\x6f\x00\x72\x00\x20\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x70\x00\x6c\x00\x69\x00\ +\x74\x00\x74\x00\x65\x00\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\ +\x6d\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x73\x00\ +\x68\x00\x61\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x27\x45\x72\x72\x6f\x72\x20\x72\x65\x6d\x6f\x76\x69\x6e\x67\x20\ +\x73\x70\x6c\x69\x74\x74\x65\x72\x20\x66\x72\x6f\x6d\x20\x77\x61\ +\x6c\x6c\x20\x73\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x58\x00\x45\x00\x72\x00\x72\x00\x6f\x00\ +\x72\x00\x3a\x00\x20\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\ +\x6e\x00\x27\x00\x74\x00\x20\x00\x64\x00\x65\x00\x74\x00\x65\x00\ +\x72\x00\x6d\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x63\x00\x68\x00\ +\x61\x00\x72\x00\x61\x00\x63\x00\x74\x00\x65\x00\x72\x00\x20\x00\ +\x65\x00\x6e\x00\x63\x00\x6f\x00\x64\x00\x69\x00\x6e\x00\x67\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x45\x72\x72\x6f\x72\x3a\x20\ +\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x64\x65\x74\x65\x72\x6d\x69\ +\x6e\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\x65\x6e\x63\ +\x6f\x64\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x5a\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\ +\x00\x20\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\ +\x00\x74\x00\x20\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\ +\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x63\x00\x68\x00\x61\x00\x72\ +\x00\x61\x00\x63\x00\x74\x00\x65\x00\x72\x00\x20\x00\x65\x00\x6e\ +\x00\x63\x00\x6f\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x0a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x2d\x45\x72\x72\x6f\x72\x3a\x20\x43\ +\x6f\x75\x6c\x64\x6e\x27\x74\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\ +\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\x65\x6e\x63\x6f\ +\x64\x69\x6e\x67\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x34\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\ +\x00\x20\x00\x49\x00\x6e\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\ +\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1a\x45\x72\x72\x6f\x72\x3a\x20\x49\x6e\x76\x61\x6c\x69\x64\ +\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x04\x2f\x04\x40\x04\ +\x43\x04\x41\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\ +\x6f\x72\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x10\x00\x47\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x69\x00\x6e\x00\ +\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x47\x72\x6f\x75\x70\ +\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0c\x00\x48\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x48\x65\x69\x67\x68\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x56\x00\x49\x00\ +\x46\x00\x43\x00\x20\x00\x53\x00\x63\x00\x68\x00\x65\x00\x6d\x00\ +\x61\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\x6f\x00\ +\x75\x00\x6e\x00\x64\x00\x2c\x00\x20\x00\x49\x00\x46\x00\x43\x00\ +\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\ +\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x64\x00\ +\x2e\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\x46\x43\ +\x20\x53\x63\x68\x65\x6d\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\ +\x64\x2c\x20\x49\x46\x43\x20\x69\x6d\x70\x6f\x72\x74\x20\x64\x69\ +\x73\x61\x62\x6c\x65\x64\x2e\x0a\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\xd2\x00\x49\x00\x66\x00\x20\x00\x54\x00\ +\x72\x00\x75\x00\x65\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\ +\x6c\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\ +\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\ +\x66\x00\x61\x00\x63\x00\x65\x00\x2c\x00\x20\x00\x69\x00\x74\x00\ +\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x75\x00\x73\x00\ +\x65\x00\x20\x00\x69\x00\x74\x00\x73\x00\x20\x00\x62\x00\x6f\x00\ +\x72\x00\x64\x00\x65\x00\x72\x00\x20\x00\x77\x00\x69\x00\x72\x00\ +\x65\x00\x20\x00\x61\x00\x73\x00\x20\x00\x74\x00\x72\x00\x61\x00\ +\x63\x00\x65\x00\x2c\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\ +\x64\x00\x69\x00\x73\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\ +\x64\x00\x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x66\x00\x61\x00\x63\x00\x65\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x69\x49\x66\x20\x54\x72\x75\x65\x2c\x20\x69\x66\x20\x74\ +\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\ +\x64\x20\x6f\x6e\x20\x61\x20\x66\x61\x63\x65\x2c\x20\x69\x74\x20\ +\x77\x69\x6c\x6c\x20\x75\x73\x65\x20\x69\x74\x73\x20\x62\x6f\x72\ +\x64\x65\x72\x20\x77\x69\x72\x65\x20\x61\x73\x20\x74\x72\x61\x63\ +\x65\x2c\x20\x61\x6e\x64\x20\x64\x69\x73\x63\x6f\x6e\x73\x69\x64\ +\x65\x72\x20\x74\x68\x65\x20\x66\x61\x63\x65\x2e\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x04\x1c\x04\x35\x04\ +\x48\x00\x20\x04\x43\x00\x20\x04\x44\x04\x3e\x04\x40\x04\x3c\x04\ +\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\ +\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x0a\x04\x1d\x04\x30\x04\x37\x04\x32\x04\ +\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\x61\x6d\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x24\x00\x4e\ +\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\ +\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4e\x6f\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x4e\x00\ +\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x73\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x63\x00\x75\x00\ +\x74\x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1f\x4e\x6f\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x61\x72\x65\x20\x63\x75\x74\x20\x62\x79\x20\x74\x68\x65\x20\x70\ +\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x96\x00\x4e\x00\x6f\x00\x20\x00\x73\x00\x68\x00\x61\x00\ +\x70\x00\x65\x00\x20\x00\x68\x00\x61\x00\x73\x00\x20\x00\x62\x00\ +\x65\x00\x65\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\ +\x75\x00\x74\x00\x65\x00\x64\x00\x20\x00\x79\x00\x65\x00\x74\x00\ +\x2c\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x66\x00\x72\x00\x61\x00\ +\x6d\x00\x65\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\ +\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x6e\x00\x64\x00\ +\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\ +\x61\x00\x67\x00\x61\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x4b\x4e\x6f\x20\x73\x68\x61\x70\x65\x20\x68\x61\x73\x20\ +\x62\x65\x65\x6e\x20\x63\x6f\x6d\x70\x75\x74\x65\x64\x20\x79\x65\ +\x74\x2c\x20\x73\x65\x6c\x65\x63\x74\x20\x77\x69\x72\x65\x66\x72\ +\x61\x6d\x65\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x20\x61\x6e\ +\x64\x20\x72\x65\x6e\x64\x65\x72\x20\x61\x67\x61\x69\x6e\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x4f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x07\x4f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x50\x00\x61\x00\ +\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x50\x61\x67\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\ +\x04\x12\x04\x38\x04\x34\x04\x30\x04\x3b\x04\x38\x04\x42\x04\x38\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x65\x6d\x6f\x76\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\ +\x52\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x0e\x04\x14\x04\x56\x04\x3b\x04\x4f\x04\x3d\x04\x3a\ +\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\ +\x53\x00\x6b\x00\x69\x00\x70\x00\x70\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x69\x00\x6e\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x3a\x00\ +\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x53\x6b\x69\x70\x70\ +\x69\x6e\x67\x20\x69\x6e\x76\x61\x6c\x69\x64\x20\x6f\x62\x6a\x65\ +\x63\x74\x3a\x20\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x1a\x04\x20\x04\x3e\x04\x37\x04\x34\x04\x56\x04\x3b\x04\ +\x38\x04\x42\x04\x38\x00\x20\x04\x3c\x04\x35\x04\x48\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\ +\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\ +\x04\x21\x04\x42\x04\x40\x04\x43\x04\x3a\x04\x42\x04\x43\x04\x40\ +\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\x75\ +\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x18\x00\x53\x00\x75\x00\x62\x00\x74\x00\x72\x00\x61\ +\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x53\x75\x62\x74\x72\x61\x63\x74\x69\x6f\ +\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x78\x00\x54\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x69\x00\ +\x67\x00\x6e\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\ +\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x69\x00\ +\x74\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\x00\ +\x69\x00\x66\x00\x20\x00\x61\x00\x70\x00\x70\x00\x6c\x00\x69\x00\ +\x63\x00\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x3c\x54\x68\x65\x20\x61\x6c\x69\x67\x6e\x6d\x65\x6e\x74\ +\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x6f\x6e\ +\x20\x69\x74\x73\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x2c\x20\x69\x66\x20\x61\x70\x70\x6c\x69\x63\x61\x62\x6c\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2c\x00\x54\ +\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x72\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x16\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x54\x00\x68\x00\x65\x00\ +\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x73\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x65\x00\x61\x00\x63\x00\x68\x00\x20\x00\ +\x61\x00\x78\x00\x69\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x17\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\x73\x20\x6f\x66\x20\x65\ +\x61\x63\x68\x20\x61\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x4c\x00\x54\x00\x68\x00\x65\x00\x20\x00\ +\x64\x00\x69\x00\x73\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x20\x00\ +\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\x00\x65\x00\x63\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\ +\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x26\x54\x68\x65\ +\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x73\x69\x7a\x65\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\ +\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x86\x00\x54\x00\x68\x00\x65\x00\x20\x00\x65\x00\x6c\x00\x65\ +\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6e\x00\x75\x00\x6d\ +\x00\x62\x00\x65\x00\x72\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\ +\x00\x65\x00\x78\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x65\x00\x20\ +\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x69\ +\x00\x73\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\ +\x00\x75\x00\x72\x00\x65\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\ +\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\ +\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x43\x54\x68\x65\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\x6e\x75\ +\x6d\x62\x65\x72\x73\x20\x74\x6f\x20\x65\x78\x63\x6c\x75\x64\x65\ +\x20\x77\x68\x65\x6e\x20\x74\x68\x69\x73\x20\x73\x74\x72\x75\x63\ +\x74\x75\x72\x65\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\ +\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x74\x00\x54\x00\x68\x00\x65\x00\x20\x00\x66\x00\x61\ +\x00\x63\x00\x65\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\ +\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x75\x00\x73\x00\x65\ +\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x75\x00\x69\ +\x00\x6c\x00\x64\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x72\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x3a\x54\x68\x65\x20\x66\x61\x63\x65\x20\x6e\x75\x6d\x62\x65\ +\x72\x20\x6f\x66\x20\x74\x68\x65\x20\x62\x61\x73\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x62\x75\x69\ +\x6c\x64\x20\x74\x68\x69\x73\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x30\x00\x54\x00\x68\x00\ +\x65\x00\x20\x00\x68\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x66\x00\x6c\x00\x6f\x00\x6f\x00\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x18\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\ +\x6f\x66\x20\x74\x68\x69\x73\x20\x66\x6c\x6f\x6f\x72\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xb0\x00\x54\x00\x68\ +\x00\x65\x00\x20\x00\x68\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x2e\x00\x20\x00\x4b\ +\x00\x65\x00\x65\x00\x70\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\ +\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\ +\x00\x74\x00\x69\x00\x63\x00\x2e\x00\x20\x00\x4e\x00\x6f\x00\x74\ +\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\x00\x69\x00\x66\ +\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\ +\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\ +\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\ +\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x58\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\ +\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x2e\x20\x4b\ +\x65\x65\x70\x20\x30\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\ +\x74\x69\x63\x2e\x20\x4e\x6f\x74\x20\x75\x73\x65\x64\x20\x69\x66\ +\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\ +\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x73\x6f\x6c\x69\x64\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x86\x00\x54\x00\ +\x68\x00\x65\x00\x20\x00\x68\x00\x65\x00\x69\x00\x67\x00\x68\x00\ +\x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\ +\x72\x00\x75\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\ +\x65\x00\x70\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x65\x00\x6c\x00\x65\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x20\x00\x4b\x00\x65\x00\ +\x65\x00\x70\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\ +\x69\x00\x63\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\x54\x68\x65\ +\x20\x68\x65\x69\x67\x68\x74\x20\x6f\x72\x20\x65\x78\x74\x72\x75\ +\x73\x69\x6f\x6e\x20\x64\x65\x70\x74\x68\x20\x6f\x66\x20\x74\x68\ +\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2e\x20\x4b\x65\x65\x70\ +\x20\x30\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\ +\x72\x00\x76\x00\x61\x00\x6c\x00\x73\x00\x20\x00\x62\x00\x65\x00\ +\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x78\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x54\x68\x65\ +\x20\x69\x6e\x74\x65\x72\x76\x61\x6c\x73\x20\x62\x65\x74\x77\x65\ +\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x2c\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6c\ +\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\x00\x78\x00\x65\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x68\x65\x20\ +\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\ +\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x6a\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x6e\x00\ +\x67\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\ +\x6e\x00\x6f\x00\x74\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\ +\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x70\x00\ +\x72\x00\x6f\x00\x66\x00\x69\x00\x6c\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x35\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\x20\ +\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\ +\x20\x69\x66\x20\x6e\x6f\x74\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\ +\x20\x61\x20\x70\x72\x6f\x66\x69\x6c\x65\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\xa2\x00\x54\x00\x68\x00\x65\x00\ +\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x20\x00\ +\x65\x00\x78\x00\x74\x00\x72\x00\x75\x00\x73\x00\x69\x00\x6f\x00\ +\x6e\x00\x20\x00\x64\x00\x69\x00\x72\x00\x65\x00\x63\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x28\x00\x6b\x00\x65\x00\x65\x00\x70\x00\ +\x20\x00\x28\x00\x30\x00\x2c\x00\x30\x00\x2c\x00\x30\x00\x29\x00\ +\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\ +\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x20\x00\x6e\x00\ +\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x51\x54\x68\x65\x20\x6e\x6f\x72\x6d\x61\x6c\x20\ +\x65\x78\x74\x72\x75\x73\x69\x6f\x6e\x20\x64\x69\x72\x65\x63\x74\ +\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x28\x6b\x65\x65\x70\x20\x28\x30\x2c\x30\x2c\x30\x29\ +\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x20\x6e\ +\x6f\x72\x6d\x61\x6c\x29\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x28\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6e\x00\ +\x75\x00\x6d\x00\x65\x00\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x20\x00\x73\x00\x74\x00\x79\x00\x6c\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\x20\x6e\x75\x6d\x65\x72\ +\x61\x74\x69\x6f\x6e\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\xa6\x00\x54\x00\x68\x00\x65\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\ +\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x6d\x00\x75\ +\x00\x73\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x63\x00\x6f\ +\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\x65\x00\x64\ +\x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x2e\x00\x20\ +\x00\x45\x00\x6d\x00\x70\x00\x74\x00\x79\x00\x20\x00\x6d\x00\x65\ +\x00\x61\x00\x6e\x00\x73\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\ +\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\x54\x68\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x74\x68\x61\x74\x20\x6d\x75\x73\x74\x20\ +\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x62\x79\ +\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\ +\x61\x6e\x65\x2e\x20\x45\x6d\x70\x74\x79\x20\x6d\x65\x61\x6e\x73\ +\x20\x61\x6c\x6c\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\x00\x54\x00\x68\ +\x00\x65\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x6f\ +\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\x00\x78\ +\x00\x69\x00\x73\x00\x20\x00\x62\x00\x75\x00\x62\x00\x62\x00\x6c\ +\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x54\x68\ +\x65\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\ +\x69\x73\x20\x62\x75\x62\x62\x6c\x65\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x68\x00\x54\x00\x68\x00\x65\x00\ +\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x65\x00\ +\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2c\x00\x20\x00\ +\x69\x00\x66\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x62\x00\ +\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\ +\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x66\x00\x69\x00\x6c\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x54\x68\x65\x20\x77\ +\x69\x64\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\ +\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\x6e\x6f\x74\x20\x62\x61\x73\ +\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\x72\x6f\x66\x69\x6c\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x80\x00\x54\ +\x00\x68\x00\x65\x00\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x2e\x00\x20\x00\x4e\ +\x00\x6f\x00\x74\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\ +\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x73\x00\x20\ +\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\ +\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x40\x54\x68\x65\x20\x77\x69\x64\x74\ +\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x2e\x20\ +\x4e\x6f\x74\x20\x75\x73\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\ +\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\ +\x6e\x20\x61\x20\x66\x61\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x12\x00\x54\x00\x68\x00\x69\x00\x63\x00\ +\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x54\x68\x69\x63\x6b\x6e\x65\x73\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x54\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x20\x00\ +\x69\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\ +\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x20\x00\x73\x00\x6f\x00\ +\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x54\ +\x68\x69\x73\x20\x6d\x65\x73\x68\x20\x69\x73\x20\x61\x6e\x20\x69\ +\x6e\x76\x61\x6c\x69\x64\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x06\x04\x22\x04\x38\x04\ +\x3f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\x79\x70\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x00\x54\ +\x00\x79\x00\x70\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\ +\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0f\x54\x79\x70\x65\x20\x63\x6f\x6e\x76\x65\ +\x72\x73\x69\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x2e\x00\x55\x00\x6e\x00\x61\x00\x62\x00\x6c\x00\x65\ +\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x61\x00\x20\x00\x72\x00\x6f\x00\x6f\ +\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x55\x6e\x61\x62\ +\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x72\ +\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x34\x00\x55\x00\x6e\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\ +\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ +\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\ +\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\ +\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x55\x00\x6e\x00\x67\x00\ +\x72\x00\x6f\x00\x75\x00\x70\x00\x69\x00\x6e\x00\x67\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x55\x6e\x67\x72\x6f\x75\x70\x69\x6e\ +\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\ +\x00\x56\x00\x69\x00\x65\x00\x77\x00\x20\x00\x6f\x00\x66\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x07\x56\x69\x65\x77\x20\x6f\x66\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x04\x21\ +\x04\x42\x04\x56\x04\x3d\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x18\x00\x57\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\ +\x6f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0c\x57\x61\x6c\x6c\x20\x6f\x70\x74\x69\ +\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x12\x00\x57\x00\x61\x00\x6c\x00\x6c\x00\x54\x00\x72\x00\x61\ +\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x57\x61\ +\x6c\x6c\x54\x72\x61\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x0a\x00\x57\x00\x69\x00\x64\x00\x74\x00\x68\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x57\x69\x64\x74\x68\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x04\x12\ +\x04\x56\x04\x3a\x04\x3d\x04\x3e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x0a\x00\x57\x00\x69\x00\x72\x00\x65\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x57\x69\x72\x65\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\ +\x5a\x00\x20\x00\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x5a\x20\x6f\x66\x66\x73\x65\ +\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x26\ +\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\ +\x00\x53\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x20\x00\x65\ +\x00\x64\x00\x69\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\ +\x63\x6c\x6f\x73\x69\x6e\x67\x20\x53\x6b\x65\x74\x63\x68\x20\x65\ +\x64\x69\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x36\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\ +\x00\x73\x00\x20\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\ +\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x20\x00\x73\ +\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1b\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x61\x20\x6e\x6f\x6e\ +\x2d\x63\x6c\x6f\x73\x65\x64\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5a\x00\x63\x00\x6f\ +\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x20\x00\x66\ +\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x61\ +\x00\x74\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\ +\x00\x74\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\x20\x00\x6f\ +\x00\x66\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x6f\ +\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\ +\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x66\x61\x63\x65\x73\x20\x74\ +\x68\x61\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x70\x61\x72\x74\ +\x20\x6f\x66\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x64\x00\x6f\ +\x00\x65\x00\x73\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x63\x00\x6f\ +\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x61\x00\x6e\ +\x00\x79\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x19\x64\x6f\x65\x73\x6e\x27\x74\x20\ +\x63\x6f\x6e\x74\x61\x69\x6e\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\ +\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\ +\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x25\x00\x73\x00\x20\ +\x00\x73\x00\x75\x00\x63\x00\x63\x00\x65\x00\x73\x00\x73\x00\x66\ +\x00\x75\x00\x6c\x00\x6c\x00\x79\x00\x20\x00\x63\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x64\x00\x2e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1d\x66\x69\x6c\x65\x20\x25\x73\x20\x73\x75\x63\x63\ +\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x63\x72\x65\x61\x74\x65\x64\ +\x2e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\ +\x00\x69\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x63\ +\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0d\x69\x73\x20\x6e\x6f\x74\x20\x63\x6c\x6f\x73\x65\ +\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\ +\x00\x69\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x76\ +\x00\x61\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0c\x69\x73\x20\x6e\x6f\x74\x20\x76\x61\x6c\x69\x64\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x52\x00\x70\x00\ +\x79\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\ +\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\x6f\x00\x75\x00\ +\x6e\x00\x64\x00\x2c\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x63\x00\ +\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x73\x00\ +\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x2e\x00\x0a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x29\x70\x79\x63\x6f\x6c\x6c\x61\ +\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x6e\x6f\ +\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\x6f\x72\x74\ +\x2e\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x64\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\ +\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x76\x00\x6f\x00\x69\x00\ +\x64\x00\x20\x00\x63\x00\x72\x00\x6f\x00\x73\x00\x73\x00\x2d\x00\ +\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\ +\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x72\ +\x65\x6d\x6f\x76\x69\x6e\x67\x20\x73\x6b\x65\x74\x63\x68\x20\x73\ +\x75\x70\x70\x6f\x72\x74\x20\x74\x6f\x20\x61\x76\x6f\x69\x64\x20\ +\x63\x72\x6f\x73\x73\x2d\x72\x65\x66\x65\x72\x65\x6e\x63\x69\x6e\ +\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2a\ +\x00\x73\x00\x75\x00\x63\x00\x63\x00\x65\x00\x73\x00\x73\x00\x66\ +\x00\x75\x00\x6c\x00\x6c\x00\x79\x00\x20\x00\x77\x00\x72\x00\x69\ +\x00\x74\x00\x74\x00\x65\x00\x6e\x00\x20\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x15\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\ +\x20\x77\x72\x69\x74\x74\x65\x6e\x20\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ +\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6e\x00\x64\x00\x6f\ +\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x74\x68\x65\x20\ +\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\ +\x69\x73\x20\x77\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x20\x04\x14\x04\x3e\x04\x34\x04\x30\ +\x04\x42\x04\x38\x00\x20\x04\x3a\x04\x3e\x04\x3c\x04\x3f\x04\x3e\ +\x04\x3d\x04\x35\x04\x3d\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x41\x64\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\ +\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\ +\x00\x58\x04\x14\x04\x3e\x04\x34\x04\x30\x04\x54\x00\x20\x04\x3e\ +\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x38\x04\x39\x00\x20\x04\x3a\ +\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\x04\x42\ +\x00\x20\x04\x34\x04\x3e\x00\x20\x04\x30\x04\x3a\x04\x42\x04\x38\ +\x04\x32\x04\x3d\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\x3e\x04\x31\ +\x20\x19\x04\x54\x04\x3a\x04\x42\x04\x43\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x31\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\ +\x20\x74\x6f\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\ +\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\ +\x64\x64\x01\x03\x00\x00\x00\x08\x00\x41\x00\x78\x00\x69\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\x69\x73\x07\x00\ +\x00\x00\x09\x41\x72\x63\x68\x5f\x41\x78\x69\x73\x01\x03\x00\x00\ +\x00\x2e\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\ +\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x69\x00\x73\ +\x00\x20\x00\x73\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x2e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\x74\x65\ +\x73\x20\x61\x6e\x20\x61\x78\x69\x73\x20\x73\x79\x73\x74\x65\x6d\ +\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x41\x78\x69\x73\x01\ +\x03\x00\x00\x00\x0e\x04\x11\x04\x43\x04\x34\x04\x56\x04\x32\x04\ +\x3b\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\ +\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\ +\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x78\x04\x21\x04\ +\x42\x04\x32\x04\x3e\x04\x40\x04\x4e\x04\x54\x00\x20\x04\x3e\x04\ +\x31\x20\x19\x04\x54\x04\x3a\x04\x42\x00\x20\x04\x31\x04\x43\x04\ +\x34\x04\x56\x04\x32\x04\x3b\x04\x56\x00\x20\x04\x3f\x04\x40\x04\ +\x38\x00\x20\x04\x46\x04\x4c\x04\x3e\x04\x3c\x04\x43\x00\x20\x04\ +\x32\x04\x3a\x04\x3b\x04\x4e\x04\x47\x04\x30\x04\x54\x00\x20\x04\ +\x42\x04\x43\x04\x34\x04\x38\x00\x20\x04\x3e\x04\x31\x04\x40\x04\ +\x30\x04\x3d\x04\x56\x00\x20\x04\x3e\x04\x31\x20\x19\x04\x54\x04\ +\x3a\x04\x42\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x43\ +\x72\x65\x61\x74\x65\x73\x20\x61\x20\x62\x75\x69\x6c\x64\x69\x6e\ +\x67\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\ +\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x2e\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\ +\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x0c\x04\x21\x04\x35\ +\x04\x3a\x04\x46\x04\x56\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x43\x65\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\ +\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x64\x04\x21\x04\x42\x04\x32\ +\x04\x3e\x04\x40\x04\x4e\x04\x54\x00\x20\x04\x3e\x04\x31\x20\x19\ +\x04\x54\x04\x3a\x04\x42\x00\x20\x04\x41\x04\x35\x04\x3a\x04\x46\ +\x04\x56\x04\x57\x00\x2c\x00\x20\x04\x4f\x04\x3a\x04\x38\x04\x39\ +\x00\x20\x04\x32\x04\x3a\x04\x3b\x04\x4e\x04\x47\x04\x30\x04\x54\ +\x00\x20\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x56\x00\x20\ +\x04\x3e\x04\x31\x20\x19\x04\x54\x04\x3a\x04\x42\x04\x38\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x20\x63\x65\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\ +\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x09\x41\x72\x63\ +\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x0a\x00\x43\x00\x68\ +\x00\x65\x00\x63\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x43\x68\x65\x63\x6b\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\ +\x68\x65\x63\x6b\x01\x03\x00\x00\x00\x50\x00\x43\x00\x68\x00\x65\ +\x00\x63\x00\x6b\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\ +\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x72\x00\x6f\ +\x00\x62\x00\x6c\x00\x65\x00\x6d\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x28\x43\x68\x65\x63\x6b\x73\x20\x74\x68\x65\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x66\x6f\x72\x20\x70\x72\x6f\x62\x6c\x65\x6d\x73\x07\x00\x00\x00\ +\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\x01\x03\x00\x00\x00\ +\x16\x00\x43\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x68\x00\ +\x6f\x00\x6c\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0b\x43\x6c\x6f\x73\x65\x20\x68\x6f\x6c\x65\x73\x07\x00\x00\x00\ +\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\ +\x01\x03\x00\x00\x00\x60\x00\x43\x00\x6c\x00\x6f\x00\x73\x00\x65\ +\x00\x73\x00\x20\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x73\x00\x20\ +\x00\x69\x00\x6e\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x20\ +\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x00\x73\x00\x2c\x00\x20\ +\x00\x74\x00\x75\x00\x72\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x20\x00\x73\x00\x6f\x00\x6c\ +\x00\x69\x00\x64\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\ +\x43\x6c\x6f\x73\x65\x73\x20\x68\x6f\x6c\x65\x73\x20\x69\x6e\x20\ +\x6f\x70\x65\x6e\x20\x73\x68\x61\x70\x65\x73\x2c\x20\x74\x75\x72\ +\x6e\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\x73\x6f\x6c\x69\x64\x73\ +\x07\x00\x00\x00\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\ +\x6f\x6c\x65\x73\x01\x03\x00\x00\x00\x60\x04\x21\x04\x42\x04\x32\ +\x04\x3e\x04\x40\x04\x4e\x04\x54\x00\x20\x04\x3e\x04\x31\x20\x19\ +\x04\x54\x04\x3a\x04\x42\x00\x20\x04\x4f\x04\x40\x04\x43\x04\x41\ +\x00\x2c\x00\x20\x04\x4f\x04\x3a\x04\x38\x04\x39\x00\x20\x04\x32\ +\x04\x3a\x04\x3b\x04\x4e\x04\x47\x04\x30\x04\x54\x00\x20\x04\x3e\ +\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x56\x00\x20\x04\x3e\x04\x31\ +\x20\x19\x04\x54\x04\x3a\x04\x42\x04\x38\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x66\x6c\ +\x6f\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\ +\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\ +\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x08\x04\x2f\x04\x40\x04\x43\ +\x04\x41\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\ +\x72\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\ +\x01\x03\x00\x00\x00\x16\x04\x1c\x04\x35\x04\x48\x00\x20\x04\x43\ +\x00\x20\x04\x44\x04\x3e\x04\x40\x04\x3c\x04\x43\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x74\x6f\x20\x53\x68\ +\x61\x70\x65\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\x65\x73\ +\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x5a\x00\x54\ +\x00\x75\x00\x72\x00\x6e\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\ +\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6d\x00\x65\ +\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\ +\x00\x6f\x00\x20\x00\x50\x00\x61\x00\x72\x00\x74\x00\x20\x00\x53\ +\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x2d\x54\x75\x72\x6e\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ +\x20\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x50\x61\x72\ +\x74\x20\x53\x68\x61\x70\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\ +\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\ +\x68\x61\x70\x65\x01\x03\x00\x00\x00\x24\x04\x12\x04\x38\x04\x34\ +\x04\x30\x04\x3b\x04\x38\x04\x42\x04\x38\x00\x20\x04\x3a\x04\x3e\ +\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\x04\x42\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\x6d\x6f\x76\x65\x20\x63\ +\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\ +\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\xa2\x04\x12\ +\x04\x38\x04\x34\x04\x30\x04\x3b\x04\x35\x04\x3d\x04\x3d\x04\x4f\ +\x00\x20\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x38\x04\x45\ +\x00\x20\x04\x3a\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\ +\x04\x3d\x04\x42\x04\x56\x04\x32\x00\x20\x04\x32\x04\x56\x04\x34\ +\x00\x20\x04\x41\x04\x32\x04\x3e\x04\x57\x04\x45\x00\x20\x04\x31\ +\x04\x30\x04\x42\x04\x4c\x04\x3a\x04\x56\x04\x32\x00\x2c\x00\x20\ +\x04\x30\x04\x31\x04\x3e\x00\x20\x04\x41\x04\x42\x04\x32\x04\x3e\ +\x04\x40\x04\x38\x04\x42\x04\x38\x00\x20\x00\x20\x04\x3e\x04\x42\ +\x04\x32\x04\x56\x04\x40\x00\x20\x04\x32\x00\x20\x04\x3a\x04\x3e\ +\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\x04\x42\x04\x56\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x65\x6d\x6f\x76\x65\ +\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\ +\x65\x69\x72\x20\x70\x61\x72\x65\x6e\x74\x73\x2c\x20\x6f\x72\x20\ +\x63\x72\x65\x61\x74\x65\x20\x61\x20\x68\x6f\x6c\x65\x20\x69\x6e\ +\x20\x61\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\ +\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\ +\x00\x2c\x04\x12\x04\x38\x04\x34\x04\x30\x04\x3b\x04\x38\x04\x42\ +\x04\x38\x00\x20\x04\x44\x04\x56\x04\x33\x04\x43\x04\x40\x04\x43\ +\x00\x20\x04\x37\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x16\x52\x65\x6d\x6f\x76\x65\x20\x53\ +\x68\x61\x70\x65\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x07\x00\ +\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\ +\x61\x70\x65\x01\x03\x00\x00\x00\x52\x04\x12\x04\x38\x04\x34\x04\ +\x30\x04\x3b\x04\x4f\x04\x54\x00\x20\x04\x37\x00\x20\x04\x3a\x04\ +\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\x04\x42\x04\ +\x56\x04\x32\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x04\ +\x3a\x04\x43\x04\x31\x04\x56\x04\x47\x04\x3d\x04\x56\x00\x20\x04\ +\x44\x04\x56\x04\x33\x04\x43\x04\x40\x04\x38\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x29\x52\x65\x6d\x6f\x76\x65\x73\x20\x63\x75\x62\ +\x69\x63\x20\x73\x68\x61\x70\x65\x73\x20\x66\x72\x6f\x6d\x20\x41\ +\x72\x63\x68\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\ +\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\ +\x61\x70\x65\x01\x03\x00\x00\x00\x72\x00\x43\x00\x72\x00\x65\x00\ +\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x72\x00\ +\x6f\x00\x6f\x00\x66\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x66\x00\x61\x00\x63\x00\ +\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x6e\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x39\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x72\ +\x6f\x6f\x66\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\ +\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x66\x61\x63\ +\x65\x20\x6f\x66\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x09\x41\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\x00\x00\ +\x00\x08\x00\x52\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\x09\x41\x72\x63\ +\x68\x5f\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x7c\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\ +\x00\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\ +\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\x00\x69\x00\x6e\ +\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\ +\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x3e\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x65\x63\x74\ +\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x2c\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x74\x68\x65\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x07\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\ +\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x22\x04\x1f\x04\x3e\ +\x04\x32\x04\x35\x04\x40\x04\x45\x04\x3d\x04\x4f\x00\x20\x04\x3f\ +\x04\x35\x04\x40\x04\x35\x04\x40\x04\x56\x04\x37\x04\x43\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\x63\x74\x69\x6f\x6e\x20\ +\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\ +\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\ +\x32\x04\x1e\x04\x31\x04\x40\x04\x30\x04\x42\x04\x38\x00\x20\x04\ +\x3d\x04\x35\x04\x3c\x04\x3d\x04\x3e\x04\x33\x04\x3e\x04\x32\x04\ +\x38\x04\x34\x04\x3d\x04\x56\x00\x20\x04\x41\x04\x56\x04\x42\x04\ +\x3a\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\x65\x6c\ +\x65\x63\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\ +\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\ +\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\ +\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x76\x04\x12\x04\x38\x04\ +\x34\x04\x56\x04\x3b\x04\x4f\x04\x54\x00\x20\x04\x32\x04\x41\x04\ +\x56\x00\x20\x04\x3d\x04\x35\x04\x3c\x04\x3d\x04\x3e\x04\x33\x04\ +\x3e\x04\x32\x04\x38\x04\x34\x04\x3d\x04\x56\x00\x20\x04\x41\x04\ +\x56\x04\x42\x04\x3a\x04\x38\x00\x20\x04\x37\x00\x20\x04\x34\x04\ +\x3e\x04\x3a\x04\x43\x04\x3c\x04\x35\x04\x3d\x04\x42\x04\x43\x00\ +\x20\x04\x30\x04\x31\x04\x3e\x00\x20\x04\x3e\x04\x31\x04\x40\x04\ +\x30\x04\x3d\x04\x38\x04\x45\x00\x20\x04\x33\x04\x40\x04\x43\x04\ +\x3f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x53\x65\x6c\x65\x63\ +\x74\x73\x20\x61\x6c\x6c\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\ +\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x66\x72\x6f\x6d\x20\ +\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x20\x6f\x72\x20\ +\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x67\x72\x6f\x75\x70\x73\x07\x00\x00\x00\x19\x41\x72\x63\ +\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\ +\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x68\x04\x21\x04\x42\ +\x04\x32\x04\x3e\x04\x40\x04\x4e\x04\x54\x00\x20\x04\x3e\x04\x31\ +\x20\x19\x04\x54\x04\x3a\x04\x42\x00\x20\x04\x3f\x04\x3e\x04\x32\ +\x04\x35\x04\x40\x04\x45\x04\x3d\x04\x56\x00\x2c\x00\x20\x04\x4f\ +\x04\x3a\x04\x38\x04\x39\x00\x20\x04\x32\x04\x3a\x04\x3b\x04\x4e\ +\x04\x47\x04\x30\x04\x54\x00\x20\x04\x3e\x04\x31\x04\x40\x04\x30\ +\x04\x3d\x04\x56\x00\x20\x04\x3e\x04\x31\x20\x19\x04\x54\x04\x3a\ +\x04\x42\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x20\x73\x69\x74\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\ +\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\ +\x00\x00\x0e\x04\x14\x04\x56\x04\x3b\x04\x4f\x04\x3d\x04\x3a\x04\ +\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\ +\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\ +\x00\x00\x1a\x04\x20\x04\x3e\x04\x37\x04\x34\x04\x56\x04\x3b\x04\ +\x38\x04\x42\x04\x38\x00\x20\x04\x3c\x04\x35\x04\x48\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\ +\x68\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\ +\x4d\x65\x73\x68\x01\x03\x00\x00\x00\x48\x04\x20\x04\x3e\x04\x37\ +\x04\x31\x04\x38\x04\x32\x04\x30\x04\x54\x00\x20\x04\x3c\x04\x35\ +\x04\x48\x00\x20\x04\x3d\x04\x30\x00\x20\x04\x3d\x04\x35\x04\x37\ +\x04\x30\x04\x3b\x04\x35\x04\x36\x04\x3d\x04\x56\x00\x20\x04\x3a\ +\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\x04\x42\ +\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x53\x70\x6c\x69\ +\x74\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\ +\x65\x73\x20\x69\x6e\x74\x6f\x20\x69\x6e\x64\x65\x70\x65\x6e\x64\ +\x65\x6e\x74\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\ +\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\ +\x68\x01\x03\x00\x00\x00\xb8\x04\x21\x04\x42\x04\x32\x04\x3e\x04\ +\x40\x04\x4e\x04\x54\x00\x20\x04\x3e\x04\x31\x20\x19\x04\x54\x04\ +\x3a\x04\x42\x00\x20\x04\x41\x04\x42\x04\x40\x04\x43\x04\x3a\x04\ +\x42\x04\x43\x04\x40\x04\x43\x00\x20\x04\x37\x00\x20\x04\x3d\x04\ +\x43\x04\x3b\x04\x4f\x00\x2c\x00\x20\x04\x30\x04\x31\x04\x3e\x00\ +\x20\x04\x37\x00\x20\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x3d\x04\ +\x3e\x04\x33\x04\x3e\x00\x20\x04\x3e\x04\x31\x20\x19\x04\x54\x04\ +\x3a\x04\x42\x04\x43\x00\x20\x00\x28\x04\x35\x04\x41\x04\x3a\x04\ +\x56\x04\x37\x00\x2c\x00\x20\x04\x34\x04\x40\x04\x56\x04\x42\x00\ +\x2c\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\x35\x04\x40\x04\x45\x04\ +\x3d\x04\x4f\x00\x20\x04\x30\x04\x31\x04\x3e\x00\x20\x04\x41\x04\ +\x43\x04\x46\x04\x56\x04\x3b\x04\x4c\x04\x3d\x04\x30\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x5f\x43\x72\x65\x61\x74\x65\x73\ +\x20\x61\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\ +\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x73\x6b\x65\x74\ +\x63\x68\x2c\x20\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\ +\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x0e\x41\x72\x63\ +\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\ +\x12\x04\x21\x04\x42\x04\x40\x04\x43\x04\x3a\x04\x42\x04\x43\x04\ +\x40\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\ +\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\ +\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\xa2\x04\ +\x21\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x4e\x04\x54\x00\x20\x04\ +\x3e\x04\x31\x20\x19\x04\x54\x04\x3a\x04\x42\x00\x20\x04\x41\x04\ +\x42\x04\x56\x04\x3d\x04\x38\x00\x20\x04\x37\x00\x20\x04\x3d\x04\ +\x43\x04\x3b\x04\x4f\x00\x2c\x00\x20\x04\x30\x04\x31\x04\x3e\x00\ +\x20\x04\x37\x00\x20\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x3d\x04\ +\x3e\x04\x33\x04\x3e\x00\x20\x04\x3e\x04\x31\x20\x19\x04\x54\x04\ +\x3a\x04\x42\x04\x43\x00\x20\x00\x28\x04\x34\x04\x40\x04\x56\x04\ +\x42\x00\x2c\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\x35\x04\x40\x04\ +\x45\x04\x3d\x04\x4f\x00\x20\x04\x30\x04\x31\x04\x3e\x00\x20\x04\ +\x41\x04\x43\x04\x46\x04\x56\x04\x3b\x04\x4c\x04\x3d\x04\x30\x00\ +\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x43\x72\x65\x61\x74\ +\x65\x73\x20\x61\x20\x77\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\ +\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x66\ +\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\ +\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\ +\x0a\x04\x21\x04\x42\x04\x56\x04\x3d\x04\x30\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\ +\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\x94\x00\x43\x00\ +\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\ +\x20\x00\x77\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\ +\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x28\x00\x77\x00\ +\x69\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x72\x00\x65\x00\x63\x00\ +\x74\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\ +\x72\x00\x20\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\ +\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4a\x43\x72\x65\x61\x74\ +\x65\x73\x20\x61\x20\x77\x69\x6e\x64\x6f\x77\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\ +\x20\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\x20\x6f\x72\x20\x73\x6b\ +\x65\x74\x63\x68\x29\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\ +\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0a\x04\x12\x04\x56\x04\ +\x3a\x04\x3d\x04\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\ +\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\ +\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x32\x00\x44\x00\ +\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x69\x00\ +\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x32\x44\x20\ +\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x50\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\ +\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x73\x00\x20\x00\x66\ +\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x61\x00\x63\x00\x68\x00\x20\ +\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x43\x72\x65\x61\x74\x65\ +\x73\x20\x67\x72\x6f\x75\x70\x73\x20\x66\x6f\x72\x20\x65\x61\x63\ +\x68\x20\x41\x72\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\ +\x70\x65\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x3c\x00\x43\x00\x75\x00\x74\x00\ +\x20\x00\x61\x00\x72\x00\x65\x00\x61\x00\x73\x00\x20\x00\x6c\x00\ +\x69\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x68\x00\x69\x00\x63\x00\ +\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x00\x20\x00\x72\x00\x61\x00\ +\x74\x00\x69\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x43\ +\x75\x74\x20\x61\x72\x65\x61\x73\x20\x6c\x69\x6e\x65\x20\x74\x68\ +\x69\x63\x6b\x6e\x65\x73\x73\x20\x72\x61\x74\x69\x6f\x07\x00\x00\ +\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x46\x04\x1a\x04\x3e\x04\x3b\x04\x56\x04\x40\x00\x20\ +\x04\x37\x04\x30\x00\x20\x04\x37\x04\x30\x04\x3c\x04\x3e\x04\x32\ +\x04\x47\x04\x43\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4f\x04\x3c\ +\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x41\x04\x42\x04\x40\ +\x04\x43\x04\x3a\x04\x42\x04\x43\x04\x40\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1c\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\ +\x72\x20\x66\x6f\x72\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x73\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x36\x04\x1a\x04\x3e\x04\x3b\x04\x56\x04\ +\x40\x00\x20\x04\x41\x04\x42\x04\x56\x04\x3d\x00\x20\x04\x37\x04\ +\x30\x00\x20\x04\x37\x04\x30\x04\x3c\x04\x3e\x04\x32\x04\x47\x04\ +\x43\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4f\x04\x3c\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x44\x65\x66\x61\x75\x6c\x74\x20\x63\ +\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\x61\x6c\x6c\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x32\x00\x44\x00\x65\x00\x66\x00\x61\x00\x75\x00\ +\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ +\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x77\x00\x69\x00\x6e\x00\ +\x64\x00\x6f\x00\x77\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x19\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\ +\x6f\x72\x20\x77\x69\x6e\x64\x6f\x77\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x2e\x04\x17\x04\x30\x04\x33\x04\x30\x04\x3b\x04\x4c\x04\x3d\x04\ +\x56\x00\x20\x04\x3f\x04\x30\x04\x40\x04\x30\x04\x3c\x04\x35\x04\ +\x42\x04\x40\x04\x38\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\ +\x20\x41\x72\x63\x68\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x24\x04\x17\x04\x30\x04\x33\x04\x30\x04\x3b\x04\ +\x4c\x04\x3d\x04\x56\x00\x20\x04\x3f\x04\x30\x04\x40\x04\x30\x04\ +\x3c\x04\x35\x04\x42\x04\x40\x04\x38\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\ +\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x47\x00\x72\x00\x6f\ +\x00\x75\x00\x70\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\ +\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x62\x00\x79\ +\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x19\x47\x72\x6f\x75\x70\x20\x63\x6f\x6d\x70\ +\x6f\x6e\x65\x6e\x74\x73\x20\x62\x79\x20\x74\x79\x70\x65\x73\x07\ +\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x14\x00\x49\x00\x46\x00\x43\x00\x20\x00\x69\ +\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0a\x49\x46\x43\x20\x69\x6d\x70\x6f\x72\x74\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\xba\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\ +\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x49\x00\x46\x00\x43\x00\x4f\x00\x70\x00\ +\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\ +\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x00\ +\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\ +\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x61\x00\ +\x6c\x00\x6c\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x74\x00\x6f\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x00\x20\x00\x6d\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x49\x00\ +\x46\x00\x43\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x49\x66\x20\x74\x68\x69\x73\ +\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\ +\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\x69\x6d\ +\x70\x6f\x72\x74\x65\x72\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x75\ +\x73\x65\x64\x2c\x20\x61\x6c\x6c\x6f\x77\x69\x6e\x67\x20\x74\x6f\ +\x20\x69\x6d\x70\x6f\x72\x74\x20\x6d\x6f\x72\x65\x20\x49\x46\x43\ +\x20\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x56\x00\x49\x00\ +\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x66\x00\x75\x00\ +\x72\x00\x6e\x00\x69\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\ +\x28\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\ +\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6d\x00\x6f\x00\ +\x64\x00\x65\x00\x6c\x00\x20\x00\x68\x00\x65\x00\x61\x00\x76\x00\ +\x79\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\x6d\x70\ +\x6f\x72\x74\x20\x66\x75\x72\x6e\x69\x74\x75\x72\x65\x20\x28\x63\ +\x61\x6e\x20\x6d\x61\x6b\x65\x20\x74\x68\x65\x20\x6d\x6f\x64\x65\ +\x6c\x20\x68\x65\x61\x76\x79\x29\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x54\x00\ +\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x64\x00\x65\x00\x62\x00\ +\x75\x00\x67\x00\x20\x00\x69\x00\x6e\x00\x66\x00\x6f\x00\x72\x00\ +\x6d\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\ +\x75\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x32\x00\x44\x00\ +\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x69\x00\ +\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x53\x68\x6f\ +\x77\x20\x64\x65\x62\x75\x67\x20\x69\x6e\x66\x6f\x72\x6d\x61\x74\ +\x69\x6f\x6e\x20\x64\x75\x72\x69\x6e\x67\x20\x32\x44\x20\x72\x65\ +\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\x00\x53\ +\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\ +\x00\x65\x00\x72\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\x00\x62\ +\x00\x75\x00\x67\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x73\x00\x61\ +\x00\x67\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\ +\x53\x68\x6f\x77\x20\x72\x65\x6e\x64\x65\x72\x65\x72\x20\x64\x65\ +\x62\x75\x67\x20\x6d\x65\x73\x73\x61\x67\x65\x73\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x9e\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\ +\x69\x00\x65\x00\x73\x00\x20\x00\x68\x00\x6f\x00\x77\x00\x20\x00\ +\x6d\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x74\x00\x69\x00\x6d\x00\ +\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x76\x00\ +\x69\x00\x65\x00\x77\x00\x65\x00\x64\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x65\x00\x20\x00\x74\x00\x68\x00\x69\x00\x63\x00\x6b\x00\ +\x6e\x00\x65\x00\x73\x00\x73\x00\x20\x00\x6d\x00\x75\x00\x73\x00\ +\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x61\x00\x70\x00\x70\x00\ +\x6c\x00\x69\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ +\x63\x00\x75\x00\x74\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x53\x70\x65\x63\x69\ +\x66\x69\x65\x73\x20\x68\x6f\x77\x20\x6d\x61\x6e\x79\x20\x74\x69\ +\x6d\x65\x73\x20\x74\x68\x65\x20\x76\x69\x65\x77\x65\x64\x20\x6c\ +\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\x73\x20\x6d\x75\ +\x73\x74\x20\x62\x65\x20\x61\x70\x70\x6c\x69\x65\x64\x20\x74\x6f\ +\x20\x63\x75\x74\x20\x6c\x69\x6e\x65\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x6c\x04\x26\x04\x35\x00\x20\x04\x3a\x04\x3e\x04\x3b\x04\x56\x04\ +\x40\x00\x20\x04\x37\x04\x30\x00\x20\x04\x37\x04\x30\x04\x3c\x04\ +\x3e\x04\x32\x04\x47\x04\x43\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\ +\x4f\x04\x3c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3d\x04\ +\x3e\x04\x32\x04\x38\x04\x45\x00\x20\x04\x3e\x04\x31\x00\x27\x04\ +\x54\x04\x3a\x04\x42\x04\x56\x04\x32\x00\x20\x04\x21\x04\x42\x04\ +\x40\x04\x43\x04\x3a\x04\x42\x04\x43\x04\x40\x04\x30\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x33\x54\x68\x69\x73\x20\x69\x73\x20\x74\ +\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\ +\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x53\x74\x72\x75\x63\x74\x75\ +\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x64\x04\x26\x04\x35\x00\x20\x04\x3a\x04\x3e\x04\x3b\x04\x56\x04\ +\x40\x00\x20\x04\x37\x04\x30\x00\x20\x04\x37\x04\x30\x04\x3c\x04\ +\x3e\x04\x32\x04\x47\x04\x43\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\ +\x4f\x04\x3c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3d\x04\ +\x3e\x04\x32\x04\x38\x04\x45\x00\x20\x04\x3e\x04\x31\x00\x27\x04\ +\x54\x04\x3a\x04\x42\x04\x56\x04\x32\x00\x20\x04\x21\x04\x42\x04\ +\x56\x04\x3d\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x54\ +\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\ +\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\ +\x20\x57\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ +\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x3a\x00\x55\x00\x73\x00\x65\x00\x20\x00\x49\x00\x46\ +\x00\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\ +\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x66\x00\x20\x00\x61\x00\x76\ +\x00\x61\x00\x69\x00\x6c\x00\x61\x00\x62\x00\x6c\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\x65\x20\x49\x46\x43\x4f\ +\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\x69\x66\x20\x61\x76\x61\x69\ +\x6c\x61\x62\x6c\x65\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x26\x00\x41\ +\x00\x72\x00\x63\x00\x68\x00\x69\x00\x74\x00\x65\x00\x63\x00\x74\ +\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ +\x26\x41\x72\x63\x68\x69\x74\x65\x63\x74\x75\x72\x65\x07\x00\x00\ +\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x26\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x06\x26\x44\x72\x61\x66\x74\x07\x00\x00\x00\x04\x61\x72\x63\ +\x68\x01\x03\x00\x00\x00\x30\x04\x10\x04\x40\x04\x45\x04\x56\x04\ +\x42\x04\x35\x04\x3a\x04\x42\x04\x43\x04\x40\x04\x3d\x04\x56\x00\ +\x20\x04\x56\x04\x3d\x04\x41\x04\x42\x04\x40\x04\x43\x04\x3c\x04\ +\x35\x04\x3d\x04\x42\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x41\x72\x63\x68\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\ +\x61\x72\x63\x68\x01\x03\x00\x00\x00\x22\x00\x43\x00\x61\x00\x6c\ +\x00\x63\x00\x75\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x00\x20\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x11\x43\x61\x6c\x63\x75\x6c\x61\x74\x69\x6f\ +\x6e\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\ +\x01\x03\x00\x00\x00\x1a\x00\x43\x00\x6f\x00\x6e\x00\x74\x00\x65\ +\x00\x78\x00\x74\x00\x20\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x74\x65\x78\ +\x74\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\ +\x01\x03\x00\x00\x00\x20\x00\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\ +\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x54\x00\x6f\ +\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x43\x6f\x6e\x76\x65\x72\x73\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\ +\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x00\ +\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\ +\x64\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\ +\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ +\x03\x00\x00\x00\x2a\x04\x06\x04\x3d\x04\x41\x04\x42\x04\x40\x04\ +\x43\x04\x3c\x04\x35\x04\x3d\x04\x42\x04\x38\x00\x20\x04\x3a\x04\ +\x40\x04\x35\x04\x41\x04\x3b\x04\x35\x04\x3d\x04\x3d\x04\x4f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x20\x74\ +\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\ +\x00\x00\x6e\x00\x70\x00\x79\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\ +\x61\x00\x64\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\ +\x66\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x2c\x00\x20\x00\x63\x00\ +\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x73\x00\ +\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x77\x00\ +\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x64\x00\ +\x69\x00\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x64\x00\x2e\x00\ +\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x70\x79\x63\x6f\x6c\ +\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\ +\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\x6f\x72\x74\x20\ +\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x69\x73\x61\x62\x6c\x65\x64\ +\x2e\x0a\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ +\x00\x00\x4a\x63\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x04\xf8\x00\x00\x47\xa4\x00\x00\x00\x49\x00\x04\x8e\xc3\ +\x00\x00\x01\x71\x00\x04\x8f\x03\x00\x00\x02\x24\x00\x04\x8f\x03\ +\x00\x00\x25\xc4\x00\x04\x9c\x2c\x00\x00\x27\x4c\x00\x04\xbb\x04\ +\x00\x00\x07\xd4\x00\x05\x48\x35\x00\x00\x0c\xe3\x00\x05\x67\xd5\ +\x00\x00\x0e\xf5\x00\x05\x96\x56\x00\x00\x0f\x43\x00\x05\x96\x56\ +\x00\x00\x2e\xf0\x00\x05\xa0\xa5\x00\x00\x0f\x68\x00\x05\xa0\xa5\ +\x00\x00\x32\x89\x00\x05\xc0\x65\x00\x00\x1d\x43\x00\x05\xd8\x2c\ +\x00\x00\x1e\xd8\x00\x05\xd8\x2c\x00\x00\x36\x3f\x00\x32\x23\xa5\ +\x00\x00\x42\x9c\x00\x39\xdf\x33\x00\x00\x3b\x09\x00\x48\x4e\x25\ +\x00\x00\x01\x47\x00\x49\xeb\x9b\x00\x00\x28\x24\x00\x4b\x55\x33\ +\x00\x00\x3c\x43\x00\x4d\x36\x62\x00\x00\x0a\x31\x00\x4d\x36\x62\ +\x00\x00\x2a\x94\x00\x5d\xfb\xa8\x00\x00\x1f\x6e\x00\x5e\x08\xc3\ +\x00\x00\x1f\xbf\x00\x61\xb0\x33\x00\x00\x16\xb7\x00\x62\x9b\xa8\ +\x00\x00\x0f\xf1\x00\x62\x9b\xa8\x00\x00\x32\xb3\x00\x8a\x92\x57\ +\x00\x00\x00\x00\x00\xaa\x80\x25\x00\x00\x07\x29\x00\xc9\x7b\xf3\ +\x00\x00\x12\xaa\x00\xfb\x72\xf3\x00\x00\x3a\x99\x01\x19\x4e\x85\ +\x00\x00\x05\xb3\x01\x55\x2b\xf5\x00\x00\x05\x24\x01\x79\x17\x94\ +\x00\x00\x22\x88\x01\x8e\x84\xa6\x00\x00\x11\x66\x01\xad\x7d\xe3\ +\x00\x00\x44\x13\x01\xaf\x41\x84\x00\x00\x21\x74\x01\xf7\xa8\x83\ +\x00\x00\x41\x59\x02\x01\x7f\xd3\x00\x00\x10\x5c\x02\x29\xb3\xc4\ +\x00\x00\x2e\x27\x02\x5a\x4a\x53\x00\x00\x15\xd5\x02\x5f\xc9\x59\ +\x00\x00\x35\x2b\x02\x66\x7f\x7e\x00\x00\x0d\xcd\x02\x6a\x77\x99\ +\x00\x00\x3d\x8b\x02\x80\x5f\x17\x00\x00\x23\x59\x02\x82\x88\x3a\ +\x00\x00\x04\x40\x02\x85\x4f\xf5\x00\x00\x19\x3d\x02\x90\x40\x65\ +\x00\x00\x0c\xa3\x02\x90\x40\x65\x00\x00\x2a\xc2\x02\x94\x16\x35\ +\x00\x00\x10\x99\x02\xab\x87\xd4\x00\x00\x42\xdc\x02\xb8\xae\x74\ +\x00\x00\x2b\xba\x02\xc3\x91\x93\x00\x00\x3e\xec\x02\xcd\x05\xa3\ +\x00\x00\x2b\x0e\x02\xdd\x14\x14\x00\x00\x2c\x0a\x03\x13\x15\x3e\ +\x00\x00\x0b\x4f\x03\x1b\xda\x15\x00\x00\x1f\x3a\x03\x1d\xe8\xe3\ +\x00\x00\x39\x20\x03\x29\x7a\x34\x00\x00\x00\xdd\x03\x2c\xe9\xb3\ +\x00\x00\x17\x1e\x03\x92\x51\xe0\x00\x00\x0f\x8d\x03\xa2\xec\x23\ +\x00\x00\x1e\xfd\x03\xbe\xb0\x34\x00\x00\x1e\x0c\x03\xce\x98\xe5\ +\x00\x00\x03\xca\x03\xd4\x22\x74\x00\x00\x24\xd0\x04\x35\xfa\x55\ +\x00\x00\x12\x1f\x04\xc3\x75\x44\x00\x00\x19\x92\x04\xdb\x21\x3e\ +\x00\x00\x31\xd8\x04\xeb\xfd\xf4\x00\x00\x0a\x8a\x05\x14\x5b\x83\ +\x00\x00\x07\x58\x05\x18\xda\xa3\x00\x00\x29\xe2\x05\x5f\x3d\x83\ +\x00\x00\x3a\x1d\x05\x8c\x46\xc5\x00\x00\x0f\x1a\x05\x90\xba\xe3\ +\x00\x00\x0e\xc7\x05\xc0\x56\xe3\x00\x00\x3f\x71\x05\xc7\xeb\xc7\ +\x00\x00\x3e\x3d\x05\xe0\x4b\x67\x00\x00\x1f\x96\x05\xe0\x4b\x67\ +\x00\x00\x37\x67\x05\xef\x78\x4a\x00\x00\x22\xc5\x06\x1f\x6f\xa4\ +\x00\x00\x20\xd4\x06\x32\xe3\xe3\x00\x00\x44\x59\x06\x5b\x01\x15\ +\x00\x00\x03\x99\x06\x69\xd0\x04\x00\x00\x20\x6a\x06\x9f\x6f\xd4\ +\x00\x00\x06\xcb\x06\xd6\x3f\xa4\x00\x00\x22\x48\x06\xe6\x2f\x43\ +\x00\x00\x11\xc1\x07\x00\xcc\xc4\x00\x00\x3b\xf4\x07\x07\x84\xba\ +\x00\x00\x44\x93\x07\x08\x43\x0e\x00\x00\x25\xee\x07\x16\x58\x05\ +\x00\x00\x37\xec\x07\x25\x74\x53\x00\x00\x28\xe9\x07\x28\xff\x15\ +\x00\x00\x0d\x57\x07\x36\x51\x26\x00\x00\x13\x8c\x07\x5c\xdc\x04\ +\x00\x00\x1f\xe7\x07\x60\x23\xf3\x00\x00\x03\x00\x07\xca\xf8\x87\ +\x00\x00\x37\x97\x08\x25\x81\xc4\x00\x00\x06\x76\x08\x4a\x45\xd9\ +\x00\x00\x36\x69\x08\x65\x4c\x95\x00\x00\x1b\xc6\x08\xc5\xe3\x35\ +\x00\x00\x1b\x11\x08\xca\xc9\x74\x00\x00\x14\xb4\x08\xfb\xb8\xa4\ +\x00\x00\x09\xca\x09\x69\xac\xa7\x00\x00\x1e\x73\x09\x6c\x6c\xa7\ +\x00\x00\x0a\x59\x09\x9f\xcc\xde\x00\x00\x21\xd8\x09\xba\xe6\x35\ +\x00\x00\x10\x28\x09\xba\xe6\x35\x00\x00\x34\xed\x09\xc5\xbe\xca\ +\x00\x00\x09\x2a\x09\xe3\x98\xe4\x00\x00\x25\x14\x09\xed\x98\x55\ +\x00\x00\x2f\xfa\x0a\x3e\x06\x83\x00\x00\x04\xb0\x0a\x3f\x1f\xd6\ +\x00\x00\x04\xea\x0a\x3f\x2b\x25\x00\x00\x05\x79\x0a\x3f\x5d\xac\ +\x00\x00\x05\xfc\x0a\x7f\xee\xa3\x00\x00\x43\x07\x0a\xb6\xc8\x9a\ +\x00\x00\x0a\xb5\x0a\xbf\x46\x0e\x00\x00\x1d\x68\x0a\xd6\x07\x84\ +\x00\x00\x20\x18\x0b\x0a\xc3\xf3\x00\x00\x00\x75\x0b\x51\x30\xa8\ +\x00\x00\x2d\x20\x0b\x65\xda\xb3\x00\x00\x39\xa5\x0b\x8d\x97\x93\ +\x00\x00\x40\x8f\x0b\x9c\x5b\xe7\x00\x00\x08\x8d\x0b\xb9\xe8\x93\ +\x00\x00\x2d\x87\x0b\xc4\xb1\x23\x00\x00\x27\x76\x0c\x02\xac\xd7\ +\x00\x00\x02\xcf\x0c\x02\xac\xd7\x00\x00\x26\x51\x0c\x25\x3e\x53\ +\x00\x00\x30\xc3\x0c\x3c\x8b\x33\x00\x00\x43\x3e\x0c\x41\x0a\x83\ +\x00\x00\x43\x8a\x0c\x4e\x9b\x23\x00\x00\x30\x47\x0c\x98\x80\x23\ +\x00\x00\x43\xca\x0c\xc4\xd0\x80\x00\x00\x24\x08\x0c\xdf\x5a\x1e\ +\x00\x00\x01\x96\x0c\xfc\x97\x06\x00\x00\x1e\xaa\x0d\x03\x26\xb4\ +\x00\x00\x02\x8c\x0d\x08\x90\xf3\x00\x00\x1a\xa4\x0d\x1e\xda\xa4\ +\x00\x00\x03\x35\x0d\x3b\x3b\x49\x00\x00\x33\xad\x0d\xa8\x3a\x35\ +\x00\x00\x17\x79\x0d\xc1\x7d\x47\x00\x00\x24\x60\x0d\xfa\x53\xe5\ +\x00\x00\x07\xff\x0e\x69\x87\x13\x00\x00\x2f\x1a\x0e\x8c\xd7\x43\ +\x00\x00\x32\xf4\x0e\x98\x0a\xd6\x00\x00\x1d\xae\x0e\xab\x8d\x1f\ +\x00\x00\x38\x95\x0e\xb9\x1b\xf2\x00\x00\x14\x53\x0e\xec\x0b\x9e\ +\x00\x00\x26\x8b\x0f\x16\x4a\x24\x00\x00\x1c\xd3\x0f\x17\xc7\xa3\ +\x00\x00\x28\x52\x0f\x55\xc1\x57\x00\x00\x06\x36\x0f\x78\x41\x05\ +\x00\x00\x42\x14\x0f\x79\xe3\xf3\x00\x00\x29\x2e\x0f\x95\xd5\x09\ +\x00\x00\x18\x31\x0f\xa2\x16\x43\x00\x00\x1c\x9f\x0f\xc0\xb8\xb4\ +\x00\x00\x0d\x08\x0f\xd0\x39\x44\x00\x00\x02\x49\x0f\xe5\x74\x74\ +\x00\x00\x00\xa9\x0f\xf3\xe8\x33\x00\x00\x3b\x78\x69\x00\x00\x45\ +\x51\x03\x00\x00\x00\x20\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x42\x00\x75\x00\x69\x00\x6c\x00\x64\ +\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x20\x43\x72\x65\x61\x74\x65\x20\x42\x75\x69\x6c\x64\x69\x6e\x67\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\ +\x4c\x00\x65\x00\x67\x00\x67\x00\x20\x00\x74\x00\x69\x00\x6c\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\x64\x64\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x41\x00\x64\x00\ +\x64\x00\x69\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x41\x64\x64\x69\x74\x69\x6f\x6e\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\ +\x41\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x41\x6c\x69\x67\x6e\ +\x6d\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x36\x00\x41\x00\x6c\x00\x6c\x00\x20\x00\x67\x00\x6f\x00\ +\x6f\x00\x64\x00\x21\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x70\x00\ +\x72\x00\x6f\x00\x62\x00\x6c\x00\x65\x00\x6d\x00\x73\x00\x20\x00\ +\x66\x00\x6f\x00\x75\x00\x6e\x00\x64\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1b\x41\x6c\x6c\x20\x67\x6f\x6f\x64\x21\x20\x6e\x6f\x20\ +\x70\x72\x6f\x62\x6c\x65\x6d\x73\x20\x66\x6f\x75\x6e\x64\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x56\x00\ +\x69\x00\x6e\x00\x6b\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x05\x41\x6e\x67\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x08\x00\x41\x00\x78\x00\x65\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\x65\x73\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4e\x00\x41\x00\x78\ +\x00\x65\x00\x73\x00\x20\x00\x73\x00\x79\x00\x73\x00\x74\x00\x65\ +\x00\x6d\x00\x73\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\ +\x00\x65\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x75\x00\x69\ +\x00\x6c\x00\x74\x00\x20\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x27\x41\x78\x65\x73\x20\x73\x79\x73\x74\x65\x6d\x73\ +\x20\x74\x68\x69\x73\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\ +\x69\x73\x20\x62\x75\x69\x6c\x74\x20\x6f\x6e\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x41\x00\x78\x00\x69\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\x69\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x00\ +\x42\x00\x61\x00\x73\x00\x65\x00\x20\x00\x32\x00\x44\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0e\x42\x61\x73\x65\x20\x32\x44\x20\x6f\x62\x6a\ +\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x1c\x00\x42\x00\x61\x00\x73\x00\x65\x00\x20\x00\x63\x00\x6f\ +\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0e\x42\x61\x73\x65\x20\x63\x6f\x6d\ +\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x10\x00\x42\x00\x75\x00\x69\x00\x6c\x00\x64\x00\ +\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\ +\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x12\x00\x45\x00\x6c\x00\x65\x00\x6d\x00\x65\ +\x00\x6e\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0a\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x43\x00\x6f\x00\ +\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x19\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\ +\x43\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x6f\x6e\x74\x69\x6e\x75\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\ +\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x75\x00\x74\x00\x65\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x77\x00\x61\x00\x6c\ +\x00\x6c\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1f\x43\x6f\x75\x6c\x64\x6e\x27\x74\ +\x20\x63\x6f\x6d\x70\x75\x74\x65\x20\x74\x68\x65\x20\x77\x61\x6c\ +\x6c\x20\x73\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x3a\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\ +\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x49\x00\x66\x00\x63\x00\x4f\x00\x70\ +\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x0a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x43\x6f\x75\x6c\x64\x6e\ +\x27\x74\x20\x6c\x6f\x63\x61\x74\x65\x20\x49\x66\x63\x4f\x70\x65\ +\x6e\x53\x68\x65\x6c\x6c\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x16\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\ +\x00\x65\x00\x20\x00\x41\x00\x78\x00\x69\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x41\x78\x69\ +\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x52\ +\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ +\x43\x72\x65\x61\x74\x65\x20\x52\x6f\x6f\x66\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\x65\x00\x63\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x6e\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\ +\x74\x65\x20\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\ +\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\ +\x69\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\ +\x72\x65\x61\x74\x65\x20\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x20\x00\x43\x00\x72\x00\x65\x00\ +\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\x74\x00\x72\x00\x75\x00\ +\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x10\x43\x72\x65\x61\x74\x65\x20\x53\x74\x72\x75\x63\x74\ +\x75\x72\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x16\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\ +\x00\x57\x00\x61\x00\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x57\x61\x6c\x6c\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x57\x00\x69\x00\x6e\ +\x00\x64\x00\x6f\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ +\x43\x72\x65\x61\x74\x65\x20\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x6e\x00\x65\x00\x77\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ +\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\ +\x65\x61\x74\x65\x20\x6e\x65\x77\x20\x63\x6f\x6d\x70\x6f\x6e\x65\ +\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x2e\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x2f\x00\ +\x75\x00\x70\x00\x64\x00\x61\x00\x74\x00\x65\x00\x20\x00\x63\x00\ +\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\x74\x65\x2f\ +\x75\x70\x64\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\ +\x41\x00\x76\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x42\x00\x44\ +\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x63\x00\x65\x00\x73\ +\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x6e\x00\x67\ +\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\ +\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x65\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x44\x69\x73\x74\x61\x6e\ +\x63\x65\x73\x20\x61\x6e\x64\x20\x61\x6e\x67\x6c\x65\x73\x20\x62\ +\x65\x74\x77\x65\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x52\x00\x65\x00\x64\ +\x00\x69\x00\x67\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x4e\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\ +\x20\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\ +\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x73\x00\x68\x00\x61\x00\ +\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x45\x72\x72\ +\x6f\x72\x20\x72\x65\x6d\x6f\x76\x69\x6e\x67\x20\x73\x70\x6c\x69\ +\x74\x74\x65\x72\x20\x66\x72\x6f\x6d\x20\x77\x61\x6c\x6c\x20\x73\ +\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x58\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\ +\x20\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\ +\x74\x00\x20\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\ +\x69\x00\x6e\x00\x65\x00\x20\x00\x63\x00\x68\x00\x61\x00\x72\x00\ +\x61\x00\x63\x00\x74\x00\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\ +\x63\x00\x6f\x00\x64\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2c\x45\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\ +\x64\x6e\x27\x74\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\ +\x68\x61\x72\x61\x63\x74\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\ +\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5a\ +\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x43\ +\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\ +\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\ +\x00\x65\x00\x20\x00\x63\x00\x68\x00\x61\x00\x72\x00\x61\x00\x63\ +\x00\x74\x00\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\ +\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x0a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2d\x45\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\ +\x6e\x27\x74\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\ +\x61\x72\x61\x63\x74\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\ +\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\ +\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x49\ +\x00\x6e\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x20\x00\x62\ +\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x45\x72\ +\x72\x6f\x72\x3a\x20\x49\x6e\x76\x61\x6c\x69\x64\x20\x62\x61\x73\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x0a\x00\x46\x00\x6c\x00\x6f\x00\x6f\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\x72\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\ +\x47\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x69\x00\x6e\x00\x67\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x47\x72\x6f\x75\x70\x69\x6e\ +\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\ +\x00\x48\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x48\x65\x69\x67\x68\x74\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x56\x00\x49\x00\x46\x00\ +\x43\x00\x20\x00\x53\x00\x63\x00\x68\x00\x65\x00\x6d\x00\x61\x00\ +\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\x6f\x00\x75\x00\ +\x6e\x00\x64\x00\x2c\x00\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\ +\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x64\x00\ +\x69\x00\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x64\x00\x2e\x00\ +\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\x46\x43\x20\x53\ +\x63\x68\x65\x6d\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\ +\x20\x49\x46\x43\x20\x69\x6d\x70\x6f\x72\x74\x20\x64\x69\x73\x61\ +\x62\x6c\x65\x64\x2e\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\xd2\x00\x49\x00\x66\x00\x20\x00\x54\x00\x72\x00\ +\x75\x00\x65\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\ +\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\ +\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x66\x00\ +\x61\x00\x63\x00\x65\x00\x2c\x00\x20\x00\x69\x00\x74\x00\x20\x00\ +\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x75\x00\x73\x00\x65\x00\ +\x20\x00\x69\x00\x74\x00\x73\x00\x20\x00\x62\x00\x6f\x00\x72\x00\ +\x64\x00\x65\x00\x72\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\ +\x20\x00\x61\x00\x73\x00\x20\x00\x74\x00\x72\x00\x61\x00\x63\x00\ +\x65\x00\x2c\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x64\x00\ +\x69\x00\x73\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\ +\x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x66\x00\ +\x61\x00\x63\x00\x65\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x69\x49\x66\x20\x54\x72\x75\x65\x2c\x20\x69\x66\x20\x74\x68\x69\ +\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\ +\x6f\x6e\x20\x61\x20\x66\x61\x63\x65\x2c\x20\x69\x74\x20\x77\x69\ +\x6c\x6c\x20\x75\x73\x65\x20\x69\x74\x73\x20\x62\x6f\x72\x64\x65\ +\x72\x20\x77\x69\x72\x65\x20\x61\x73\x20\x74\x72\x61\x63\x65\x2c\ +\x20\x61\x6e\x64\x20\x64\x69\x73\x63\x6f\x6e\x73\x69\x64\x65\x72\ +\x20\x74\x68\x65\x20\x66\x61\x63\x65\x2e\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x4d\x00\x65\x00\x73\x00\ +\x68\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x53\x00\x68\x00\x61\x00\ +\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\ +\x68\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x4e\x00\x61\x00\x76\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\x61\x6d\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x24\x00\x4e\ +\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\ +\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4e\x6f\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x4e\x00\ +\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x73\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x63\x00\x75\x00\ +\x74\x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1f\x4e\x6f\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x61\x72\x65\x20\x63\x75\x74\x20\x62\x79\x20\x74\x68\x65\x20\x70\ +\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x96\x00\x4e\x00\x6f\x00\x20\x00\x73\x00\x68\x00\x61\x00\ +\x70\x00\x65\x00\x20\x00\x68\x00\x61\x00\x73\x00\x20\x00\x62\x00\ +\x65\x00\x65\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\ +\x75\x00\x74\x00\x65\x00\x64\x00\x20\x00\x79\x00\x65\x00\x74\x00\ +\x2c\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x66\x00\x72\x00\x61\x00\ +\x6d\x00\x65\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\ +\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x6e\x00\x64\x00\ +\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\ +\x61\x00\x67\x00\x61\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x4b\x4e\x6f\x20\x73\x68\x61\x70\x65\x20\x68\x61\x73\x20\ +\x62\x65\x65\x6e\x20\x63\x6f\x6d\x70\x75\x74\x65\x64\x20\x79\x65\ +\x74\x2c\x20\x73\x65\x6c\x65\x63\x74\x20\x77\x69\x72\x65\x66\x72\ +\x61\x6d\x65\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x20\x61\x6e\ +\x64\x20\x72\x65\x6e\x64\x65\x72\x20\x61\x67\x61\x69\x6e\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x4f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x07\x4f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x50\x00\x61\x00\ +\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x50\x61\x67\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\ +\x00\x46\x00\x6a\x00\x65\x00\x72\x00\x6e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x52\x65\x6d\x6f\x76\x65\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x52\x00\x6f\x00\x6f\x00\ +\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\x66\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x53\ +\x00\x69\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x32\x00\x53\x00\x6b\x00\x69\x00\x70\x00\x70\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x69\x00\x6e\x00\x76\x00\x61\x00\x6c\x00\ +\x69\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x53\ +\x6b\x69\x70\x70\x69\x6e\x67\x20\x69\x6e\x76\x61\x6c\x69\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x3a\x20\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x14\x00\x53\x00\x70\x00\x6c\x00\x69\x00\ +\x74\x00\x20\x00\x4d\x00\x65\x00\x73\x00\x68\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x53\ +\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\x75\x63\x74\ +\x75\x72\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x18\x00\x53\x00\x75\x00\x62\x00\x74\x00\x72\x00\x61\x00\x63\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x53\x75\x62\x74\x72\x61\x63\x74\x69\x6f\x6e\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x78\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x69\x00\x67\x00\ +\x6e\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x66\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\ +\x6c\x00\x6c\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x69\x00\x74\x00\ +\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\x00\x69\x00\ +\x66\x00\x20\x00\x61\x00\x70\x00\x70\x00\x6c\x00\x69\x00\x63\x00\ +\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x3c\x54\x68\x65\x20\x61\x6c\x69\x67\x6e\x6d\x65\x6e\x74\x20\x6f\ +\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x6f\x6e\x20\x69\ +\x74\x73\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\ +\x69\x66\x20\x61\x70\x70\x6c\x69\x63\x61\x62\x6c\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2c\x00\x54\x00\x68\ +\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\ +\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x72\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x16\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\x20\x6f\x66\x20\x74\ +\x68\x69\x73\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x2e\x00\x54\x00\x68\x00\x65\x00\x20\x00\ +\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x65\x00\x61\x00\x63\x00\x68\x00\x20\x00\x61\x00\ +\x78\x00\x69\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x54\ +\x68\x65\x20\x61\x6e\x67\x6c\x65\x73\x20\x6f\x66\x20\x65\x61\x63\ +\x68\x20\x61\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x4c\x00\x54\x00\x68\x00\x65\x00\x20\x00\x64\x00\ +\x69\x00\x73\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x20\x00\x73\x00\ +\x69\x00\x7a\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x26\x54\x68\x65\x20\x64\ +\x69\x73\x70\x6c\x61\x79\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\x74\ +\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x86\ +\x00\x54\x00\x68\x00\x65\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\ +\x00\x65\x00\x72\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x65\ +\x00\x78\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x65\x00\x20\x00\x77\ +\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\ +\x00\x72\x00\x65\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\ +\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\ +\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\ +\x54\x68\x65\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\x6e\x75\x6d\x62\ +\x65\x72\x73\x20\x74\x6f\x20\x65\x78\x63\x6c\x75\x64\x65\x20\x77\ +\x68\x65\x6e\x20\x74\x68\x69\x73\x20\x73\x74\x72\x75\x63\x74\x75\ +\x72\x65\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\ +\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x74\x00\x54\x00\x68\x00\x65\x00\x20\x00\x66\x00\x61\x00\x63\ +\x00\x65\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\ +\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x75\x00\x69\x00\x6c\ +\x00\x64\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x72\ +\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3a\ +\x54\x68\x65\x20\x66\x61\x63\x65\x20\x6e\x75\x6d\x62\x65\x72\x20\ +\x6f\x66\x20\x74\x68\x65\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x62\x75\x69\x6c\x64\ +\x20\x74\x68\x69\x73\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x30\x00\x54\x00\x68\x00\x65\x00\ +\x20\x00\x68\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x66\x00\x6c\x00\x6f\x00\x6f\x00\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x18\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x66\x6c\x6f\x6f\x72\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\xb0\x00\x54\x00\x68\x00\x65\ +\x00\x20\x00\x68\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\ +\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x2e\x00\x20\x00\x4b\x00\x65\ +\x00\x65\x00\x70\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\x72\ +\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\ +\x00\x69\x00\x63\x00\x2e\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x20\ +\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\x00\x69\x00\x66\x00\x20\ +\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\ +\x00\x6c\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\ +\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\ +\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x58\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\x6f\ +\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x2e\x20\x4b\x65\x65\ +\x70\x20\x30\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\ +\x63\x2e\x20\x4e\x6f\x74\x20\x75\x73\x65\x64\x20\x69\x66\x20\x74\ +\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\ +\x64\x20\x6f\x6e\x20\x61\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x86\x00\x54\x00\x68\x00\ +\x65\x00\x20\x00\x68\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x00\ +\x20\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\x72\x00\ +\x75\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x65\x00\ +\x70\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x2e\x00\x20\x00\x4b\x00\x65\x00\x65\x00\ +\x70\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\ +\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\ +\x63\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\x54\x68\x65\x20\x68\ +\x65\x69\x67\x68\x74\x20\x6f\x72\x20\x65\x78\x74\x72\x75\x73\x69\ +\x6f\x6e\x20\x64\x65\x70\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\ +\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2e\x20\x4b\x65\x65\x70\x20\x30\ +\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\x54\x00\ +\x68\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\ +\x76\x00\x61\x00\x6c\x00\x73\x00\x20\x00\x62\x00\x65\x00\x74\x00\ +\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x65\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x54\x68\x65\x20\x69\ +\x6e\x74\x65\x72\x76\x61\x6c\x73\x20\x62\x65\x74\x77\x65\x65\x6e\ +\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x2c\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6c\x00\x65\ +\x00\x6e\x00\x67\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\x00\x78\x00\x65\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x68\x65\x20\x6c\x65\ +\x6e\x67\x74\x68\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\x65\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x6a\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x6e\x00\x67\x00\ +\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\x6e\x00\ +\x6f\x00\x74\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\ +\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x70\x00\x72\x00\ +\x6f\x00\x66\x00\x69\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x35\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\x20\x69\ +\x66\x20\x6e\x6f\x74\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\ +\x20\x70\x72\x6f\x66\x69\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\xa2\x00\x54\x00\x68\x00\x65\x00\x20\x00\ +\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x20\x00\x65\x00\ +\x78\x00\x74\x00\x72\x00\x75\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\ +\x20\x00\x64\x00\x69\x00\x72\x00\x65\x00\x63\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x20\x00\x28\x00\x6b\x00\x65\x00\x65\x00\x70\x00\x20\x00\ +\x28\x00\x30\x00\x2c\x00\x30\x00\x2c\x00\x30\x00\x29\x00\x20\x00\ +\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\ +\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x20\x00\x6e\x00\x6f\x00\ +\x72\x00\x6d\x00\x61\x00\x6c\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x51\x54\x68\x65\x20\x6e\x6f\x72\x6d\x61\x6c\x20\x65\x78\ +\x74\x72\x75\x73\x69\x6f\x6e\x20\x64\x69\x72\x65\x63\x74\x69\x6f\ +\x6e\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x28\x6b\x65\x65\x70\x20\x28\x30\x2c\x30\x2c\x30\x29\x20\x66\ +\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x20\x6e\x6f\x72\ +\x6d\x61\x6c\x29\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x28\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6e\x00\x75\x00\ +\x6d\x00\x65\x00\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x20\x00\x73\x00\x74\x00\x79\x00\x6c\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x14\x54\x68\x65\x20\x6e\x75\x6d\x65\x72\x61\x74\ +\x69\x6f\x6e\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\xa6\x00\x54\x00\x68\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\ +\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x6d\x00\x75\x00\x73\ +\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\ +\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\x65\x00\x64\x00\x20\ +\x00\x62\x00\x79\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\ +\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x2e\x00\x20\x00\x45\ +\x00\x6d\x00\x70\x00\x74\x00\x79\x00\x20\x00\x6d\x00\x65\x00\x61\ +\x00\x6e\x00\x73\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x64\ +\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x53\x54\x68\x65\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x20\x74\x68\x61\x74\x20\x6d\x75\x73\x74\x20\x62\x65\ +\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x62\x79\x20\x74\ +\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\ +\x65\x2e\x20\x45\x6d\x70\x74\x79\x20\x6d\x65\x61\x6e\x73\x20\x61\ +\x6c\x6c\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\x00\x54\x00\x68\x00\x65\ +\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\x00\x78\x00\x69\ +\x00\x73\x00\x20\x00\x62\x00\x75\x00\x62\x00\x62\x00\x6c\x00\x65\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x54\x68\x65\x20\ +\x73\x69\x7a\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\x69\x73\ +\x20\x62\x75\x62\x62\x6c\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x68\x00\x54\x00\x68\x00\x65\x00\x20\x00\ +\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x65\x00\x6c\x00\ +\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2c\x00\x20\x00\x69\x00\ +\x66\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x62\x00\x61\x00\ +\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\ +\x20\x00\x70\x00\x72\x00\x6f\x00\x66\x00\x69\x00\x6c\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x34\x54\x68\x65\x20\x77\x69\x64\ +\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\ +\x6e\x74\x2c\x20\x69\x66\x20\x6e\x6f\x74\x20\x62\x61\x73\x65\x64\ +\x20\x6f\x6e\x20\x61\x20\x70\x72\x6f\x66\x69\x6c\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x80\x00\x54\x00\x68\ +\x00\x65\x00\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x20\ +\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x2e\x00\x20\x00\x4e\x00\x6f\ +\x00\x74\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\x00\x69\ +\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\ +\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\ +\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\ +\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x40\x54\x68\x65\x20\x77\x69\x64\x74\x68\x20\ +\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x2e\x20\x4e\x6f\ +\x74\x20\x75\x73\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\ +\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\ +\x61\x20\x66\x61\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x12\x00\x54\x00\x68\x00\x69\x00\x63\x00\x6b\x00\ +\x6e\x00\x65\x00\x73\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x09\x54\x68\x69\x63\x6b\x6e\x65\x73\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x54\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x76\x00\ +\x61\x00\x6c\x00\x69\x00\x64\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\ +\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x54\x68\x69\ +\x73\x20\x6d\x65\x73\x68\x20\x69\x73\x20\x61\x6e\x20\x69\x6e\x76\ +\x61\x6c\x69\x64\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x54\x00\x79\x00\x70\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\x79\x70\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x00\x54\ +\x00\x79\x00\x70\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\ +\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0f\x54\x79\x70\x65\x20\x63\x6f\x6e\x76\x65\ +\x72\x73\x69\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x2e\x00\x55\x00\x6e\x00\x61\x00\x62\x00\x6c\x00\x65\ +\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x61\x00\x20\x00\x72\x00\x6f\x00\x6f\ +\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x55\x6e\x61\x62\ +\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x72\ +\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x34\x00\x55\x00\x6e\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\ +\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ +\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\ +\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\ +\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x55\x00\x6e\x00\x67\x00\ +\x72\x00\x6f\x00\x75\x00\x70\x00\x69\x00\x6e\x00\x67\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x55\x6e\x67\x72\x6f\x75\x70\x69\x6e\ +\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\ +\x00\x56\x00\x69\x00\x65\x00\x77\x00\x20\x00\x6f\x00\x66\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x07\x56\x69\x65\x77\x20\x6f\x66\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x57\ +\x00\x61\x00\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x18\x00\x57\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\ +\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0c\x57\x61\x6c\x6c\x20\x6f\x70\x74\x69\x6f\x6e\ +\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\ +\x00\x57\x00\x61\x00\x6c\x00\x6c\x00\x54\x00\x72\x00\x61\x00\x63\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x57\x61\x6c\x6c\ +\x54\x72\x61\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x0a\x00\x57\x00\x69\x00\x64\x00\x74\x00\x68\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x57\x69\x64\x74\x68\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x56\x00\x69\ +\x00\x6e\x00\x64\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x0a\x00\x57\x00\x69\x00\x72\x00\x65\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x05\x57\x69\x72\x65\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x5a\x00\ +\x20\x00\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x5a\x20\x6f\x66\x66\x73\x65\x74\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x26\x00\x63\ +\x00\x6c\x00\x6f\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x53\ +\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x20\x00\x65\x00\x64\ +\x00\x69\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x63\x6c\ +\x6f\x73\x69\x6e\x67\x20\x53\x6b\x65\x74\x63\x68\x20\x65\x64\x69\ +\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x36\ +\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x73\ +\x00\x20\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x63\ +\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x20\x00\x73\x00\x6f\ +\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\ +\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x61\x20\x6e\x6f\x6e\x2d\x63\ +\x6c\x6f\x73\x65\x64\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5a\x00\x63\x00\x6f\x00\x6e\ +\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x20\x00\x66\x00\x61\ +\x00\x63\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\ +\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x6f\x00\x6c\ +\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x63\x6f\ +\x6e\x74\x61\x69\x6e\x73\x20\x66\x61\x63\x65\x73\x20\x74\x68\x61\ +\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x70\x61\x72\x74\x20\x6f\ +\x66\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x64\x00\x6f\x00\x65\ +\x00\x73\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6e\ +\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x61\x00\x6e\x00\x79\ +\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x19\x64\x6f\x65\x73\x6e\x27\x74\x20\x63\x6f\ +\x6e\x74\x61\x69\x6e\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x66\ +\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x25\x00\x73\x00\x20\x00\x73\ +\x00\x75\x00\x63\x00\x63\x00\x65\x00\x73\x00\x73\x00\x66\x00\x75\ +\x00\x6c\x00\x6c\x00\x79\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x64\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1d\x66\x69\x6c\x65\x20\x25\x73\x20\x73\x75\x63\x63\x65\x73\ +\x73\x66\x75\x6c\x6c\x79\x20\x63\x72\x65\x61\x74\x65\x64\x2e\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x69\ +\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x63\x00\x6c\ +\x00\x6f\x00\x73\x00\x65\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x69\x73\x20\x6e\x6f\x74\x20\x63\x6c\x6f\x73\x65\x64\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x69\ +\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x76\x00\x61\ +\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x69\x73\x20\x6e\x6f\x74\x20\x76\x61\x6c\x69\x64\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x52\x00\x70\x00\x79\x00\ +\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\ +\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\x6f\x00\x75\x00\x6e\x00\ +\x64\x00\x2c\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\ +\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x73\x00\x75\x00\ +\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x2e\x00\x0a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x29\x70\x79\x63\x6f\x6c\x6c\x61\x64\x61\ +\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x6e\x6f\x20\x63\ +\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\x6f\x72\x74\x2e\x0a\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x64\x00\ +\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x20\x00\ +\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\ +\x74\x00\x6f\x00\x20\x00\x61\x00\x76\x00\x6f\x00\x69\x00\x64\x00\ +\x20\x00\x63\x00\x72\x00\x6f\x00\x73\x00\x73\x00\x2d\x00\x72\x00\ +\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x69\x00\ +\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x72\x65\x6d\ +\x6f\x76\x69\x6e\x67\x20\x73\x6b\x65\x74\x63\x68\x20\x73\x75\x70\ +\x70\x6f\x72\x74\x20\x74\x6f\x20\x61\x76\x6f\x69\x64\x20\x63\x72\ +\x6f\x73\x73\x2d\x72\x65\x66\x65\x72\x65\x6e\x63\x69\x6e\x67\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x73\ +\x00\x75\x00\x63\x00\x63\x00\x65\x00\x73\x00\x73\x00\x66\x00\x75\ +\x00\x6c\x00\x6c\x00\x79\x00\x20\x00\x77\x00\x72\x00\x69\x00\x74\ +\x00\x74\x00\x65\x00\x6e\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x15\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x77\ +\x72\x69\x74\x74\x65\x6e\x20\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x3a\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\ +\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x74\x68\x65\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\ +\x20\x77\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x1a\x00\x41\x00\x64\x00\x64\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\ +\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x62\x00\x41\x00\x64\x00\x64\ +\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x31\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\ +\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x08\x00\x41\x00\x78\x00\x69\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\x69\x73\ +\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x41\x78\x69\x73\x01\x03\ +\x00\x00\x00\x2e\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ +\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x69\ +\x00\x73\x00\x20\x00\x73\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\ +\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x6e\x20\x61\x78\x69\x73\x20\x73\x79\x73\x74\ +\x65\x6d\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x41\x78\x69\ +\x73\x01\x03\x00\x00\x00\x10\x00\x42\x00\x75\x00\x69\x00\x6c\x00\ +\x64\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x0d\x41\x72\ +\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\ +\x6a\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\ +\x20\x00\x61\x00\x20\x00\x62\x00\x75\x00\x69\x00\x6c\x00\x64\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\ +\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x2e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x35\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x62\ +\x75\x69\x6c\x64\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\ +\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x0d\x41\ +\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\ +\x00\x08\x00\x43\x00\x65\x00\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x43\x65\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\ +\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x60\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\ +\x00\x63\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\ +\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ +\x63\x65\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\ +\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\ +\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x0a\x00\x43\x00\x68\x00\x65\ +\x00\x63\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x43\x68\ +\x65\x63\x6b\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\ +\x63\x6b\x01\x03\x00\x00\x00\x50\x00\x43\x00\x68\x00\x65\x00\x63\ +\x00\x6b\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\ +\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\ +\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x62\ +\x00\x6c\x00\x65\x00\x6d\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x28\x43\x68\x65\x63\x6b\x73\x20\x74\x68\x65\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x6f\ +\x72\x20\x70\x72\x6f\x62\x6c\x65\x6d\x73\x07\x00\x00\x00\x0a\x41\ +\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\x01\x03\x00\x00\x00\x16\x00\ +\x43\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x68\x00\x6f\x00\ +\x6c\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\ +\x6c\x6f\x73\x65\x20\x68\x6f\x6c\x65\x73\x07\x00\x00\x00\x0f\x41\ +\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\x01\x03\ +\x00\x00\x00\x60\x00\x43\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x73\ +\x00\x20\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x69\ +\x00\x6e\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x73\ +\x00\x68\x00\x61\x00\x70\x00\x65\x00\x73\x00\x2c\x00\x20\x00\x74\ +\x00\x75\x00\x72\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x6d\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\ +\x00\x64\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x6c\ +\x6f\x73\x65\x73\x20\x68\x6f\x6c\x65\x73\x20\x69\x6e\x20\x6f\x70\ +\x65\x6e\x20\x73\x68\x61\x70\x65\x73\x2c\x20\x74\x75\x72\x6e\x69\ +\x6e\x67\x20\x74\x68\x65\x6d\x20\x73\x6f\x6c\x69\x64\x73\x07\x00\ +\x00\x00\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\ +\x65\x73\x01\x03\x00\x00\x00\x62\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x66\x00\x6c\ +\x00\x6f\x00\x6f\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\ +\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x65\x00\x6c\ +\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x66\x6c\ +\x6f\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\ +\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\ +\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x0a\x00\x46\x00\x6c\x00\x6f\ +\x00\x6f\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\ +\x6f\x6f\x72\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\ +\x6f\x72\x01\x03\x00\x00\x00\x1a\x00\x4d\x00\x65\x00\x73\x00\x68\ +\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\ +\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x10\x41\x72\ +\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\ +\x00\x00\x00\x5a\x00\x54\x00\x75\x00\x72\x00\x6e\x00\x73\x00\x20\ +\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\ +\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\ +\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x50\x00\x61\x00\x72\ +\x00\x74\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x2d\x54\x75\x72\x6e\x73\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\ +\x74\x6f\x20\x50\x61\x72\x74\x20\x53\x68\x61\x70\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\ +\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x20\ +\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\x6d\x6f\x76\x65\ +\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\ +\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\xa4\ +\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\ +\x00\x74\x00\x65\x00\x64\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x66\ +\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x69\ +\x00\x72\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x6e\x00\x74\ +\x00\x73\x00\x2c\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x63\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x61\x00\x20\x00\x68\ +\x00\x6f\x00\x6c\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x61\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ +\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x65\ +\x6d\x6f\x76\x65\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x66\x72\x6f\ +\x6d\x20\x74\x68\x65\x69\x72\x20\x70\x61\x72\x65\x6e\x74\x73\x2c\ +\x20\x6f\x72\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x68\x6f\x6c\ +\x65\x20\x69\x6e\x20\x61\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\ +\x01\x03\x00\x00\x00\x2c\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\ +\x00\x65\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\ +\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x41\x00\x72\x00\x63\ +\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x52\x65\x6d\x6f\ +\x76\x65\x20\x53\x68\x61\x70\x65\x20\x66\x72\x6f\x6d\x20\x41\x72\ +\x63\x68\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\ +\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x52\x00\x52\x00\ +\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x73\x00\x20\x00\x63\x00\ +\x75\x00\x62\x00\x69\x00\x63\x00\x20\x00\x73\x00\x68\x00\x61\x00\ +\x70\x00\x65\x00\x73\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ +\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x63\x00\x6f\x00\ +\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x29\x52\x65\x6d\x6f\x76\x65\x73\ +\x20\x63\x75\x62\x69\x63\x20\x73\x68\x61\x70\x65\x73\x20\x66\x72\ +\x6f\x6d\x20\x41\x72\x63\x68\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\ +\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x72\x00\x43\x00\ +\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\ +\x20\x00\x72\x00\x6f\x00\x6f\x00\x66\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\ +\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x66\x00\ +\x61\x00\x63\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\ +\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x39\x43\x72\x65\x61\x74\x65\x73\ +\x20\x61\x20\x72\x6f\x6f\x66\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\ +\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ +\x20\x66\x61\x63\x65\x20\x6f\x66\x20\x61\x6e\x20\x6f\x62\x6a\x65\ +\x63\x74\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x52\x6f\x6f\x66\ +\x01\x03\x00\x00\x00\x08\x00\x52\x00\x6f\x00\x6f\x00\x66\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\ +\x09\x41\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x7c\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\ +\x00\x61\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\ +\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x3e\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ +\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x2c\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\ +\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x07\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\ +\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x1a\ +\x00\x53\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\ +\x00\x50\x00\x6c\x00\x61\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0d\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\ +\x65\x07\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\ +\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x34\x00\x53\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x6e\x00\x6f\x00\ +\x6e\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\x66\x00\x6f\x00\ +\x6c\x00\x64\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\x65\x6c\x65\x63\ +\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\ +\x65\x73\x68\x65\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\ +\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\ +\x68\x65\x73\x01\x03\x00\x00\x00\x9a\x00\x53\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\ +\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\ +\x69\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x6d\x00\x65\x00\ +\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\x66\x00\x72\x00\x6f\x00\ +\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\x6f\x00\ +\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\ +\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x65\x00\x64\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\ +\x70\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x53\x65\x6c\ +\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\ +\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x66\x72\x6f\ +\x6d\x20\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x20\x6f\ +\x72\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x67\x72\x6f\x75\x70\x73\x07\x00\x00\x00\x19\x41\ +\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\ +\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x62\x00\x43\ +\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\ +\x00\x20\x00\x73\x00\x69\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x63\ +\x00\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\ +\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x2e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\ +\x73\x20\x61\x20\x73\x69\x74\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x09\ +\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\x08\x00\ +\x53\x00\x69\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x53\x69\x74\x65\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\ +\x69\x74\x65\x01\x03\x00\x00\x00\x14\x00\x53\x00\x70\x00\x6c\x00\ +\x69\x00\x74\x00\x20\x00\x4d\x00\x65\x00\x73\x00\x68\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\ +\x68\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\ +\x4d\x65\x73\x68\x01\x03\x00\x00\x00\x64\x00\x53\x00\x70\x00\x6c\ +\x00\x69\x00\x74\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\ +\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6d\x00\x65\x00\x73\ +\x00\x68\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\ +\x00\x20\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x70\x00\x65\x00\x6e\ +\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x32\x53\x70\x6c\x69\x74\x73\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\ +\x6e\x74\x6f\x20\x69\x6e\x64\x65\x70\x65\x6e\x64\x65\x6e\x74\x20\ +\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x0e\x41\ +\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\ +\x00\x00\xbe\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\ +\x73\x00\x20\x00\x61\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\ +\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\ +\x6d\x00\x20\x00\x73\x00\x63\x00\x72\x00\x61\x00\x74\x00\x63\x00\ +\x68\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\ +\x6d\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x20\x00\x28\x00\x73\x00\x6b\x00\x65\x00\ +\x74\x00\x63\x00\x68\x00\x2c\x00\x20\x00\x77\x00\x69\x00\x72\x00\ +\x65\x00\x2c\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\ +\x6f\x00\x72\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\ +\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5f\x43\x72\x65\x61\x74\ +\x65\x73\x20\x61\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\ +\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x73\x6b\ +\x65\x74\x63\x68\x2c\x20\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\ +\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x0e\x41\ +\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\ +\x00\x00\x12\x00\x53\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\ +\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\ +\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x0e\x41\x72\x63\ +\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\ +\xa4\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\ +\x20\x00\x61\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\ +\x72\x00\x6f\x00\x6d\x00\x20\x00\x73\x00\x63\x00\x72\x00\x61\x00\ +\x74\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\ +\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x28\x00\x77\x00\ +\x69\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x66\x00\x61\x00\x63\x00\ +\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\ +\x69\x00\x64\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x43\ +\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\x61\x6c\x6c\x20\x6f\x62\ +\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\ +\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\ +\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\ +\x29\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\ +\x03\x00\x00\x00\x08\x00\x57\x00\x61\x00\x6c\x00\x6c\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x09\ +\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\x94\x00\ +\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\ +\x61\x00\x20\x00\x77\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ +\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x28\x00\ +\x77\x00\x69\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x72\x00\x65\x00\ +\x63\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\ +\x6f\x00\x72\x00\x20\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\ +\x68\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4a\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x77\x69\x6e\x64\x6f\x77\x20\x6f\x62\ +\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\ +\x65\x2c\x20\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\x20\x6f\x72\x20\ +\x73\x6b\x65\x74\x63\x68\x29\x07\x00\x00\x00\x0b\x41\x72\x63\x68\ +\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0a\x00\x56\x00\ +\x69\x00\x6e\x00\x64\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x0b\x41\x72\x63\x68\ +\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x32\x00\ +\x44\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\ +\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x32\ +\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x50\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\ +\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x73\x00\x20\ +\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x61\x00\x63\x00\x68\ +\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x74\x00\x79\x00\x70\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x43\x72\x65\x61\ +\x74\x65\x73\x20\x67\x72\x6f\x75\x70\x73\x20\x66\x6f\x72\x20\x65\ +\x61\x63\x68\x20\x41\x72\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x74\x79\x70\x65\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3c\x00\x43\x00\x75\x00\ +\x74\x00\x20\x00\x61\x00\x72\x00\x65\x00\x61\x00\x73\x00\x20\x00\ +\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x63\x00\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x00\x20\x00\x72\x00\ +\x61\x00\x74\x00\x69\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1e\x43\x75\x74\x20\x61\x72\x65\x61\x73\x20\x6c\x69\x6e\x65\x20\ +\x74\x68\x69\x63\x6b\x6e\x65\x73\x73\x20\x72\x61\x74\x69\x6f\x07\ +\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x38\x00\x44\x00\x65\x00\x66\x00\x61\x00\x75\ +\x00\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\ +\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x74\x00\x72\ +\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1c\x44\x65\x66\x61\x75\x6c\x74\x20\ +\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x74\x72\x75\x63\x74\ +\x75\x72\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x30\x00\x53\x00\x74\x00\ +\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x66\x00\x61\x00\ +\x72\x00\x67\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\ +\x76\x00\x65\x00\x67\x00\x67\x00\x65\x00\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x17\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ +\x6f\x72\x20\x66\x6f\x72\x20\x77\x61\x6c\x6c\x73\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x32\x00\x44\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\ +\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\ +\x66\x00\x6f\x00\x72\x00\x20\x00\x77\x00\x69\x00\x6e\x00\x64\x00\ +\x6f\x00\x77\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x44\ +\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ +\x20\x77\x69\x6e\x64\x6f\x77\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\ +\x47\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\x00\ +\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x53\x00\x65\x00\x74\x00\ +\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\x20\x41\x72\x63\x68\x20\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\ +\x47\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x65\x00\x6c\x00\x6c\x00\ +\x65\x00\x20\x00\x69\x00\x6e\x00\x6e\x00\x73\x00\x74\x00\x69\x00\ +\x6c\x00\x6c\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x72\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\ +\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x47\ +\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\ +\x00\x62\x00\x79\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x72\x6f\x75\x70\x20\ +\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x62\x79\x20\x74\x79\ +\x70\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x49\x00\x46\x00\x43\ +\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\x49\x46\x43\x20\x69\x6d\x70\x6f\ +\x72\x74\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\xba\x00\x49\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x49\x00\x46\x00\x43\x00\ +\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\ +\x6c\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\ +\x62\x00\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x61\x00\x6c\x00\x6c\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x69\x00\x6d\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x72\x00\x65\x00\ +\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\x74\x00\x79\x00\x70\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x49\x66\x20\ +\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x74\x68\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\ +\x6c\x20\x69\x6d\x70\x6f\x72\x74\x65\x72\x20\x77\x69\x6c\x6c\x20\ +\x62\x65\x20\x75\x73\x65\x64\x2c\x20\x61\x6c\x6c\x6f\x77\x69\x6e\ +\x67\x20\x74\x6f\x20\x69\x6d\x70\x6f\x72\x74\x20\x6d\x6f\x72\x65\ +\x20\x49\x46\x43\x20\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x56\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\ +\x66\x00\x75\x00\x72\x00\x6e\x00\x69\x00\x74\x00\x75\x00\x72\x00\ +\x65\x00\x20\x00\x28\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x6d\x00\ +\x61\x00\x6b\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x6d\x00\x6f\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x68\x00\x65\x00\ +\x61\x00\x76\x00\x79\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2b\x49\x6d\x70\x6f\x72\x74\x20\x66\x75\x72\x6e\x69\x74\x75\x72\ +\x65\x20\x28\x63\x61\x6e\x20\x6d\x61\x6b\x65\x20\x74\x68\x65\x20\ +\x6d\x6f\x64\x65\x6c\x20\x68\x65\x61\x76\x79\x29\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x54\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x64\x00\ +\x65\x00\x62\x00\x75\x00\x67\x00\x20\x00\x69\x00\x6e\x00\x66\x00\ +\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x20\x00\x64\x00\x75\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x32\x00\x44\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\ +\x72\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2a\x53\x68\x6f\x77\x20\x64\x65\x62\x75\x67\x20\x69\x6e\x66\x6f\ +\x72\x6d\x61\x74\x69\x6f\x6e\x20\x64\x75\x72\x69\x6e\x67\x20\x32\ +\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x38\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x72\x00\x65\ +\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x65\x00\x72\x00\x20\x00\x64\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x20\x00\x6d\x00\x65\x00\x73\ +\x00\x73\x00\x61\x00\x67\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1c\x53\x68\x6f\x77\x20\x72\x65\x6e\x64\x65\x72\x65\ +\x72\x20\x64\x65\x62\x75\x67\x20\x6d\x65\x73\x73\x61\x67\x65\x73\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x9e\x00\x53\x00\x70\x00\x65\x00\x63\x00\ +\x69\x00\x66\x00\x69\x00\x65\x00\x73\x00\x20\x00\x68\x00\x6f\x00\ +\x77\x00\x20\x00\x6d\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x74\x00\ +\x69\x00\x6d\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x76\x00\x69\x00\x65\x00\x77\x00\x65\x00\x64\x00\x20\x00\ +\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x63\x00\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x00\x20\x00\x6d\x00\ +\x75\x00\x73\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x61\x00\ +\x70\x00\x70\x00\x6c\x00\x69\x00\x65\x00\x64\x00\x20\x00\x74\x00\ +\x6f\x00\x20\x00\x63\x00\x75\x00\x74\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x53\ +\x70\x65\x63\x69\x66\x69\x65\x73\x20\x68\x6f\x77\x20\x6d\x61\x6e\ +\x79\x20\x74\x69\x6d\x65\x73\x20\x74\x68\x65\x20\x76\x69\x65\x77\ +\x65\x64\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\ +\x73\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x70\x70\x6c\x69\x65\ +\x64\x20\x74\x6f\x20\x63\x75\x74\x20\x6c\x69\x6e\x65\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x66\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\ +\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\ +\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\x53\x00\x74\x00\x72\x00\ +\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x33\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\ +\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\ +\x6f\x72\x20\x6e\x65\x77\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5c\x00\ +\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\x65\x00\x66\x00\x61\x00\ +\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\ +\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x65\x00\ +\x77\x00\x20\x00\x57\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\ +\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\ +\x6f\x72\x20\x6e\x65\x77\x20\x57\x61\x6c\x6c\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x55\x00\x73\x00\x65\ +\x00\x20\x00\x49\x00\x46\x00\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\ +\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x66\ +\x00\x20\x00\x61\x00\x76\x00\x61\x00\x69\x00\x6c\x00\x61\x00\x62\ +\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\ +\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\x69\ +\x66\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x1a\x00\x26\x00\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\x74\ +\x00\x65\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x26\x41\x72\x63\x68\x69\x74\x65\x63\x74\ +\x75\x72\x65\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0c\x00\x26\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x26\x44\x72\x61\x66\x74\x07\x00\ +\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x41\x00\ +\x72\x00\x63\x00\x68\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x41\x72\x63\x68\x20\ +\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\ +\x00\x00\x00\x22\x00\x43\x00\x61\x00\x6c\x00\x63\x00\x75\x00\x6c\ +\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x54\x00\x6f\ +\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\ +\x43\x61\x6c\x63\x75\x6c\x61\x74\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\ +\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x1a\ +\x00\x43\x00\x6f\x00\x6e\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\ +\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0d\x43\x6f\x6e\x74\x65\x78\x74\x20\x54\x6f\x6f\x6c\ +\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x20\ +\x00\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\ +\x00\x6f\x00\x6e\x00\x20\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x6f\x6e\x76\x65\x72\ +\x73\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\ +\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x00\x44\x00\x72\x00\x61\x00\ +\x66\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x20\x00\x74\x00\ +\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0f\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\x20\x74\x6f\x6f\x6c\x73\ +\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\ +\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\x00\x6f\x00\ +\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\ +\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\ +\x72\x63\x68\x01\x03\x00\x00\x00\x6e\x00\x70\x00\x79\x00\x63\x00\ +\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x6e\x00\ +\x6f\x00\x74\x00\x20\x00\x66\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\ +\x2c\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\ +\x61\x00\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\ +\x65\x00\x20\x00\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\x6c\x00\ +\x65\x00\x64\x00\x2e\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x37\x70\x79\x63\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\ +\x6f\x75\x6e\x64\x2c\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\ +\x70\x70\x6f\x72\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x69\ +\x73\x61\x62\x6c\x65\x64\x2e\x0a\x07\x00\x00\x00\x04\x61\x72\x63\ +\x68\x01\ +\x00\x00\x4e\xe3\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x04\xf8\x00\x00\x47\xa4\x00\x00\x00\x47\x00\x04\x8e\xc3\ +\x00\x00\x01\x87\x00\x04\x8f\x03\x00\x00\x02\x5c\x00\x04\x8f\x03\ +\x00\x00\x28\x6a\x00\x04\x9c\x2c\x00\x00\x29\xf2\x00\x04\xbb\x04\ +\x00\x00\x08\x50\x00\x05\x48\x35\x00\x00\x0d\xdf\x00\x05\x67\xd5\ +\x00\x00\x10\x2d\x00\x05\x96\x56\x00\x00\x10\x83\x00\x05\x96\x56\ +\x00\x00\x31\xf8\x00\x05\xa0\xa5\x00\x00\x10\xae\x00\x05\xa0\xa5\ +\x00\x00\x35\xaf\x00\x05\xc0\x65\x00\x00\x1f\x4f\x00\x05\xd8\x2c\ +\x00\x00\x21\x08\x00\x05\xd8\x2c\x00\x00\x39\x81\x00\x32\x23\xa5\ +\x00\x00\x46\x94\x00\x39\xdf\x33\x00\x00\x3e\x8b\x00\x48\x4e\x25\ +\x00\x00\x01\x5d\x00\x49\xeb\x9b\x00\x00\x2a\xd2\x00\x4b\x55\x33\ +\x00\x00\x3f\xcd\x00\x4d\x36\x62\x00\x00\x0a\xff\x00\x4d\x36\x62\ +\x00\x00\x2d\x6a\x00\x5d\xfb\xa8\x00\x00\x21\xaa\x00\x5e\x08\xc3\ +\x00\x00\x22\x01\x00\x61\xb0\x33\x00\x00\x18\x53\x00\x62\x9b\xa8\ +\x00\x00\x11\x43\x00\x62\x9b\xa8\x00\x00\x35\xdf\x00\x8a\x92\x57\ +\x00\x00\x00\x00\x00\xaa\x80\x25\x00\x00\x07\xa3\x00\xc9\x7b\xf3\ +\x00\x00\x14\x0c\x00\xfb\x72\xf3\x00\x00\x3d\xff\x01\x19\x4e\x85\ +\x00\x00\x06\x27\x01\x55\x2b\xf5\x00\x00\x05\x98\x01\x79\x17\x94\ +\x00\x00\x24\xf8\x01\x8e\x84\xa6\x00\x00\x12\xc0\x01\xad\x7d\xe3\ +\x00\x00\x48\x49\x01\xaf\x41\x84\x00\x00\x23\xdc\x01\xf7\xa8\x83\ +\x00\x00\x45\x5d\x02\x01\x7f\xd3\x00\x00\x11\xb4\x02\x29\xb3\xc4\ +\x00\x00\x31\x2d\x02\x5a\x4a\x53\x00\x00\x17\x5d\x02\x5f\xc9\x59\ +\x00\x00\x38\x6b\x02\x66\x7f\x7e\x00\x00\x0e\xe5\x02\x6a\x77\x99\ +\x00\x00\x41\x33\x02\x80\x5f\x17\x00\x00\x25\xdf\x02\x82\x88\x3a\ +\x00\x00\x04\x9c\x02\x85\x4f\xf5\x00\x00\x1a\xf1\x02\x90\x40\x65\ +\x00\x00\x0d\x99\x02\x90\x40\x65\x00\x00\x2d\x96\x02\x94\x16\x35\ +\x00\x00\x11\xed\x02\xab\x87\xd4\x00\x00\x46\xd4\x02\xb8\xae\x74\ +\x00\x00\x2e\xac\x02\xc3\x91\x93\x00\x00\x42\xb6\x02\xcd\x05\xa3\ +\x00\x00\x2d\xe8\x02\xdd\x14\x14\x00\x00\x2f\x00\x03\x13\x15\x3e\ +\x00\x00\x0c\x49\x03\x1b\xda\x15\x00\x00\x21\x76\x03\x1d\xe8\xe3\ +\x00\x00\x3c\x90\x03\x29\x7a\x34\x00\x00\x00\xdd\x03\x2c\xe9\xb3\ +\x00\x00\x18\xb8\x03\x92\x51\xe0\x00\x00\x10\xd9\x03\xa2\xec\x23\ +\x00\x00\x21\x31\x03\xbe\xb0\x34\x00\x00\x20\x2c\x03\xce\x98\xe5\ +\x00\x00\x04\x0e\x03\xd4\x22\x74\x00\x00\x27\x62\x04\x35\xfa\x55\ +\x00\x00\x13\x79\x04\xc3\x75\x44\x00\x00\x1b\x48\x04\xdb\x21\x3e\ +\x00\x00\x34\xfc\x04\xeb\xfd\xf4\x00\x00\x0b\x5c\x05\x14\x5b\x83\ +\x00\x00\x07\xd6\x05\x18\xda\xa3\x00\x00\x2c\xbc\x05\x5f\x3d\x83\ +\x00\x00\x3d\x87\x05\x8c\x46\xc5\x00\x00\x10\x56\x05\x90\xba\xe3\ +\x00\x00\x0f\xff\x05\xc0\x56\xe3\x00\x00\x43\x5f\x05\xc7\xeb\xc7\ +\x00\x00\x41\xe7\x05\xe0\x4b\x67\x00\x00\x21\xd6\x05\xe0\x4b\x67\ +\x00\x00\x3a\xc1\x05\xef\x78\x4a\x00\x00\x25\x35\x06\x1f\x6f\xa4\ +\x00\x00\x23\x38\x06\x32\xe3\xe3\x00\x00\x48\xb7\x06\x5b\x01\x15\ +\x00\x00\x03\xdb\x06\x69\xd0\x04\x00\x00\x22\xcc\x06\x9f\x6f\xd4\ +\x00\x00\x07\x3f\x06\xd6\x3f\xa4\x00\x00\x24\xb8\x06\xe6\x2f\x43\ +\x00\x00\x13\x1b\x07\x00\xcc\xc4\x00\x00\x3f\x76\x07\x07\x84\xba\ +\x00\x00\x49\x09\x07\x08\x43\x0e\x00\x00\x28\x94\x07\x16\x58\x05\ +\x00\x00\x3b\x4e\x07\x25\x74\x53\x00\x00\x2b\xab\x07\x28\xff\x15\ +\x00\x00\x0e\x61\x07\x36\x51\x26\x00\x00\x14\xfc\x07\x5c\xdc\x04\ +\x00\x00\x22\x27\x07\x60\x23\xf3\x00\x00\x03\x40\x07\xca\xf8\x87\ +\x00\x00\x3a\xf3\x08\x25\x81\xc4\x00\x00\x06\xe8\x08\x4a\x45\xd9\ +\x00\x00\x39\xaf\x08\x65\x4c\x95\x00\x00\x1d\xc2\x08\xc5\xe3\x35\ +\x00\x00\x1c\xf9\x08\xca\xc9\x74\x00\x00\x16\x28\x08\xfb\xb8\xa4\ +\x00\x00\x0a\x98\x09\x69\xac\xa7\x00\x00\x20\x9d\x09\x6c\x6c\xa7\ +\x00\x00\x0b\x25\x09\x9f\xcc\xde\x00\x00\x24\x42\x09\xba\xe6\x35\ +\x00\x00\x11\x80\x09\xba\xe6\x35\x00\x00\x38\x2d\x09\xc5\xbe\xca\ +\x00\x00\x09\xd6\x09\xe3\x98\xe4\x00\x00\x27\xb4\x09\xed\x98\x55\ +\x00\x00\x33\x12\x0a\x3e\x06\x83\x00\x00\x05\x22\x0a\x3f\x1f\xd6\ +\x00\x00\x05\x5a\x0a\x3f\x2b\x25\x00\x00\x05\xed\x0a\x3f\x5d\xac\ +\x00\x00\x06\x6e\x0a\x7f\xee\xa3\x00\x00\x46\xff\x0a\xb6\xc8\x9a\ +\x00\x00\x0b\x87\x0a\xbf\x46\x0e\x00\x00\x1f\x74\x0a\xd6\x07\x84\ +\x00\x00\x22\x6a\x0b\x0a\xc3\xf3\x00\x00\x00\x75\x0b\x51\x30\xa8\ +\x00\x00\x30\x28\x0b\x65\xda\xb3\x00\x00\x3d\x11\x0b\x8d\x97\x93\ +\x00\x00\x44\x93\x0b\x9c\x5b\xe7\x00\x00\x09\x17\x0b\xb9\xe8\x93\ +\x00\x00\x30\x8d\x0b\xc4\xb1\x23\x00\x00\x2a\x20\x0c\x02\xac\xd7\ +\x00\x00\x03\x0f\x0c\x02\xac\xd7\x00\x00\x28\xf9\x0c\x25\x3e\x53\ +\x00\x00\x33\xe5\x0c\x3c\x8b\x33\x00\x00\x47\x46\x0c\x41\x0a\x83\ +\x00\x00\x47\x9c\x0c\x4e\x9b\x23\x00\x00\x33\x61\x0c\x98\x80\x23\ +\x00\x00\x47\xf0\x0c\xc4\xd0\x80\x00\x00\x26\xa4\x0c\xdf\x5a\x1e\ +\x00\x00\x01\xae\x0c\xfc\x97\x06\x00\x00\x20\xd8\x0d\x03\x26\xb4\ +\x00\x00\x02\xc4\x0d\x08\x90\xf3\x00\x00\x1c\x8c\x0d\x1e\xda\xa4\ +\x00\x00\x03\x79\x0d\x3b\x3b\x49\x00\x00\x36\xef\x0d\xa8\x3a\x35\ +\x00\x00\x19\x15\x0d\xc1\x7d\x47\x00\x00\x26\xf6\x0d\xfa\x53\xe5\ +\x00\x00\x08\x79\x0e\x69\x87\x13\x00\x00\x32\x28\x0e\x8c\xd7\x43\ +\x00\x00\x36\x26\x0e\x98\x0a\xd6\x00\x00\x1f\xbe\x0e\xab\x8d\x1f\ +\x00\x00\x3b\xf9\x0e\xb9\x1b\xf2\x00\x00\x15\xd1\x0e\xec\x0b\x9e\ +\x00\x00\x29\x33\x0f\x16\x4a\x24\x00\x00\x1e\xdb\x0f\x17\xc7\xa3\ +\x00\x00\x2b\x0c\x0f\x55\xc1\x57\x00\x00\x06\xaa\x0f\x78\x41\x05\ +\x00\x00\x46\x08\x0f\x79\xe3\xf3\x00\x00\x2b\xf6\x0f\x95\xd5\x09\ +\x00\x00\x19\xdf\x0f\xa2\x16\x43\x00\x00\x1e\xa7\x0f\xc0\xb8\xb4\ +\x00\x00\x0e\x04\x0f\xd0\x39\x44\x00\x00\x02\x81\x0f\xe5\x74\x74\ +\x00\x00\x00\xa5\x0f\xf3\xe8\x33\x00\x00\x3e\xf4\x69\x00\x00\x49\ +\xd1\x03\x00\x00\x00\x1e\x00\x20\x00\x43\x00\x72\x00\x69\x00\x61\ +\x00\x72\x00\x20\x00\x65\x00\x64\x00\x69\x00\x66\x00\xed\x00\x63\ +\x00\x69\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x20\x43\ +\x72\x65\x61\x74\x65\x20\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x41\x00\ +\x64\x00\x69\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\x64\x64\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x41\x00\x64\x00\ +\x69\x00\xe7\x00\xf5\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x41\x64\x64\x69\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x41\x00\x6c\x00\ +\x69\x00\x6e\x00\x68\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x41\x6c\x69\x67\x6e\ +\x6d\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x4c\x00\x54\x00\x75\x00\x64\x00\x6f\x00\x20\x00\xf3\x00\ +\x74\x00\x69\x00\x6d\x00\x6f\x00\x21\x00\x20\x00\x6e\x00\x65\x00\ +\x6e\x00\x68\x00\x75\x00\x6d\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x62\x00\x6c\x00\x65\x00\x6d\x00\x61\x00\x20\x00\x65\x00\x6e\x00\ +\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x64\x00\x6f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x41\x6c\x6c\x20\x67\x6f\x6f\ +\x64\x21\x20\x6e\x6f\x20\x70\x72\x6f\x62\x6c\x65\x6d\x73\x20\x66\ +\x6f\x75\x6e\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x0c\x00\xc2\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x6f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x6e\x67\x6c\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x45\x00\ +\x69\x00\x78\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x41\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x6e\x00\x53\x00\x69\x00\x73\x00\x74\x00\x65\x00\x6d\ +\x00\x61\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x65\x00\x69\ +\x00\x78\x00\x6f\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x73\x00\x20\ +\x00\x71\x00\x75\x00\x61\x00\x69\x00\x73\x00\x20\x00\x65\x00\x73\ +\x00\x74\x00\x61\x00\x20\x00\x65\x00\x73\x00\x74\x00\x72\x00\x75\ +\x00\x74\x00\x75\x00\x72\x00\x61\x00\x20\x00\xe9\x00\x20\x00\x63\ +\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\xed\x00\x64\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x41\x78\x65\x73\ +\x20\x73\x79\x73\x74\x65\x6d\x73\x20\x74\x68\x69\x73\x20\x73\x74\ +\x72\x75\x63\x74\x75\x72\x65\x20\x69\x73\x20\x62\x75\x69\x6c\x74\ +\x20\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x08\x00\x45\x00\x69\x00\x78\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x41\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x1c\x00\x42\x00\x61\x00\x73\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\ +\x32\x00\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x42\x61\x73\ +\x65\x20\x32\x44\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x24\x00\x43\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0e\x42\x61\x73\x65\x20\x63\x6f\x6d\ +\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x10\x00\x45\x00\x64\x00\x69\x00\x66\x00\xed\x00\ +\x63\x00\x69\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\ +\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x16\x00\x43\x00\x6f\x00\x6d\x00\x70\x00\x6f\ +\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0a\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x30\x00\ +\x43\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\ +\x74\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x73\x00\x74\x00\ +\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x19\x43\x6f\x6d\x70\x6f\x6e\x65\ +\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\ +\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x12\x00\x43\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\ +\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x6f\x6e\ +\x74\x69\x6e\x75\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x56\x00\x4e\x00\xe3\x00\x6f\x00\x20\x00\x66\x00\x6f\ +\x00\x69\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x73\x00\xed\x00\x76\ +\x00\x65\x00\x6c\x00\x20\x00\x63\x00\x61\x00\x6c\x00\x63\x00\x75\ +\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x61\x00\x20\x00\x66\x00\x6f\ +\x00\x72\x00\x6d\x00\x61\x00\x20\x00\x64\x00\x61\x00\x20\x00\x70\ +\x00\x61\x00\x72\x00\x65\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1f\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x63\x6f\x6d\ +\x70\x75\x74\x65\x20\x74\x68\x65\x20\x77\x61\x6c\x6c\x20\x73\x68\ +\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x50\x00\x4e\x00\xe3\x00\x6f\x00\x20\x00\x66\x00\x6f\x00\x69\ +\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x73\x00\xed\x00\x76\x00\x65\ +\x00\x6c\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x69\ +\x00\x7a\x00\x61\x00\x72\x00\x20\x00\x49\x00\x66\x00\x63\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\ +\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x43\x6f\x75\x6c\ +\x64\x6e\x27\x74\x20\x6c\x6f\x63\x61\x74\x65\x20\x49\x66\x63\x4f\ +\x70\x65\x6e\x53\x68\x65\x6c\x6c\x0a\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x14\x00\x43\x00\x72\x00\x69\x00\x61\ +\x00\x72\x00\x20\x00\x65\x00\x69\x00\x78\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x41\x78\x69\ +\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\ +\x00\x43\x00\x72\x00\x69\x00\x61\x00\x72\x00\x20\x00\x74\x00\x65\ +\x00\x6c\x00\x68\x00\x61\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x52\x6f\x6f\x66\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x43\ +\x00\x72\x00\x69\x00\x61\x00\x72\x00\x20\x00\x70\x00\x6c\x00\x61\ +\x00\x6e\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\ +\x00\x72\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\ +\x43\x72\x65\x61\x74\x65\x20\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\ +\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x16\x00\x43\x00\x72\x00\x69\x00\x61\x00\x72\x00\x20\x00\ +\x73\x00\xed\x00\x74\x00\x69\x00\x6f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x53\x69\x74\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x00\x43\x00\ +\x72\x00\x69\x00\x61\x00\x72\x00\x20\x00\x65\x00\x73\x00\x74\x00\ +\x72\x00\x75\x00\x74\x00\x75\x00\x72\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x10\x43\x72\x65\x61\x74\x65\x20\x53\x74\x72\x75\ +\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x18\x00\x43\x00\x72\x00\x69\x00\x61\x00\x72\x00\x20\ +\x00\x70\x00\x61\x00\x72\x00\x65\x00\x64\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x57\x61\x6c\ +\x6c\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\ +\x00\x43\x00\x72\x00\x69\x00\x61\x00\x72\x00\x20\x00\x6a\x00\x61\ +\x00\x6e\x00\x65\x00\x6c\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x43\x72\x65\x61\x74\x65\x20\x57\x69\x6e\x64\x6f\x77\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x43\ +\x00\x72\x00\x69\x00\x61\x00\x72\x00\x20\x00\x6e\x00\x6f\x00\x76\ +\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ +\x00\x65\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x14\x43\x72\x65\x61\x74\x65\x20\x6e\x65\x77\x20\x63\x6f\x6d\ +\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x34\x00\x43\x00\x72\x00\x69\x00\x61\x00\x72\x00\ +\x2f\x00\x61\x00\x74\x00\x75\x00\x61\x00\x6c\x00\x69\x00\x7a\x00\ +\x61\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\ +\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x17\x43\x72\x65\x61\x74\x65\x2f\x75\x70\x64\x61\x74\x65\ +\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x44\x00\x69\x00\x73\x00\ +\x74\x00\xe2\x00\x6e\x00\x63\x00\x69\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x40\x00\x44\x00\x69\ +\x00\x73\x00\x74\x00\xe2\x00\x6e\x00\x63\x00\x69\x00\x61\x00\x73\ +\x00\x20\x00\x65\x00\x20\x00\xe2\x00\x6e\x00\x67\x00\x75\x00\x6c\ +\x00\x6f\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x72\x00\x65\ +\x00\x20\x00\x65\x00\x69\x00\x78\x00\x6f\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x21\x44\x69\x73\x74\x61\x6e\x63\x65\x73\x20\ +\x61\x6e\x64\x20\x61\x6e\x67\x6c\x65\x73\x20\x62\x65\x74\x77\x65\ +\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x0c\x00\x45\x00\x64\x00\x69\x00\x74\x00\x61\ +\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5e\x00\ +\x45\x00\x72\x00\x72\x00\x6f\x00\x20\x00\x6e\x00\x61\x00\x20\x00\ +\x72\x00\x65\x00\x6d\x00\x6f\x00\xe7\x00\xe3\x00\x6f\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x64\x00\x69\x00\x76\x00\x69\x00\x73\x00\ +\x6f\x00\x72\x00\x65\x00\x73\x00\x20\x00\x6e\x00\x61\x00\x20\x00\ +\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x20\x00\x64\x00\x61\x00\ +\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x64\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x27\x45\x72\x72\x6f\x72\x20\x72\x65\x6d\ +\x6f\x76\x69\x6e\x67\x20\x73\x70\x6c\x69\x74\x74\x65\x72\x20\x66\ +\x72\x6f\x6d\x20\x77\x61\x6c\x6c\x20\x73\x68\x61\x70\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x7a\x00\x45\x00\ +\x72\x00\x72\x00\x6f\x00\x3a\x00\x20\x00\x4e\x00\xe3\x00\x6f\x00\ +\x20\x00\x66\x00\x6f\x00\x69\x00\x20\x00\x70\x00\x6f\x00\x73\x00\ +\x73\x00\xed\x00\x76\x00\x65\x00\x6c\x00\x20\x00\x64\x00\x65\x00\ +\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x72\x00\ +\x20\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x64\x00\x69\x00\x66\x00\ +\x69\x00\x63\x00\x61\x00\xe7\x00\xe3\x00\x6f\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x63\x00\x61\x00\x72\x00\x61\x00\x63\x00\x74\x00\ +\x65\x00\x72\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2c\x45\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\x6e\x27\x74\ +\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\x61\x72\x61\ +\x63\x74\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x7c\x00\x45\x00\x72\ +\x00\x72\x00\x6f\x00\x3a\x00\x20\x00\x4e\x00\xe3\x00\x6f\x00\x20\ +\x00\x66\x00\x6f\x00\x69\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x73\ +\x00\xed\x00\x76\x00\x65\x00\x6c\x00\x20\x00\x64\x00\x65\x00\x74\ +\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x72\x00\x20\ +\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\ +\x00\x63\x00\x61\x00\xe7\x00\xe3\x00\x6f\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x63\x00\x61\x00\x72\x00\x61\x00\x63\x00\x74\x00\x65\ +\x00\x72\x00\x65\x00\x73\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x2d\x45\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\x6e\x27\ +\x74\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\x61\x72\ +\x61\x63\x74\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x0a\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\x45\ +\x00\x72\x00\x72\x00\x6f\x00\x3a\x00\x20\x00\x4f\x00\x62\x00\x6a\ +\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\ +\x00\x20\x00\x69\x00\x6e\x00\x76\x00\xe1\x00\x6c\x00\x69\x00\x64\ +\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x45\x72\x72\x6f\ +\x72\x3a\x20\x49\x6e\x76\x61\x6c\x69\x64\x20\x62\x61\x73\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x08\x00\x50\x00\x69\x00\x73\x00\x6f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x41\x00\x67\x00\ +\x72\x00\x75\x00\x70\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x47\x72\x6f\x75\x70\ +\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0c\x00\x41\x00\x6c\x00\x74\x00\x75\x00\x72\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x48\x65\x69\x67\x68\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x7e\x00\x45\x00\ +\x73\x00\x71\x00\x75\x00\x65\x00\x6d\x00\x61\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\x6e\x00\xe3\x00\ +\x6f\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\ +\x72\x00\x61\x00\x64\x00\x6f\x00\x2c\x00\x20\x00\x49\x00\x6d\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\xe7\x00\xe3\x00\x6f\x00\ +\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\x73\x00\x65\x00\x72\x00\ +\xe1\x00\x20\x00\x64\x00\x65\x00\x73\x00\x61\x00\x74\x00\x69\x00\ +\x76\x00\x61\x00\x64\x00\x61\x00\x2e\x00\x0a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2b\x49\x46\x43\x20\x53\x63\x68\x65\x6d\x61\x20\ +\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x49\x46\x43\x20\x69\ +\x6d\x70\x6f\x72\x74\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x2e\x0a\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xce\x00\ +\x53\x00\x65\x00\x20\x00\x54\x00\x72\x00\x75\x00\x65\x00\x2c\x00\ +\x20\x00\x65\x00\x20\x00\x73\x00\x65\x00\x20\x00\x65\x00\x73\x00\ +\x74\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x64\x00\ +\x65\x00\x20\x00\xe9\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\ +\x61\x00\x64\x00\x61\x00\x20\x00\x65\x00\x6d\x00\x20\x00\x75\x00\ +\x6d\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x2c\x00\ +\x20\x00\x61\x00\x20\x00\x62\x00\x6f\x00\x72\x00\x64\x00\x61\x00\ +\x20\x00\x64\x00\x65\x00\x6c\x00\x61\x00\x20\x00\x73\x00\x65\x00\ +\x72\x00\xe1\x00\x20\x00\x75\x00\x73\x00\x61\x00\x64\x00\x61\x00\ +\x2c\x00\x20\x00\x65\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\ +\x63\x00\x65\x00\x20\x00\x73\x00\x65\x00\x72\x00\xe1\x00\x20\x00\ +\x64\x00\x65\x00\x73\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\ +\x64\x00\x65\x00\x72\x00\x61\x00\x64\x00\x61\x00\x2e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x69\x49\x66\x20\x54\x72\x75\x65\x2c\x20\ +\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\ +\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x66\x61\x63\x65\x2c\ +\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x75\x73\x65\x20\x69\x74\x73\ +\x20\x62\x6f\x72\x64\x65\x72\x20\x77\x69\x72\x65\x20\x61\x73\x20\ +\x74\x72\x61\x63\x65\x2c\x20\x61\x6e\x64\x20\x64\x69\x73\x63\x6f\ +\x6e\x73\x69\x64\x65\x72\x20\x74\x68\x65\x20\x66\x61\x63\x65\x2e\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x20\x00\ +\x4d\x00\x61\x00\x6c\x00\x68\x00\x61\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x61\x00\x20\x00\x46\x00\x6f\x00\x72\x00\x6d\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x74\x6f\ +\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x08\x00\x4e\x00\x6f\x00\x6d\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x4e\x61\x6d\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x4e\x00\x65\x00\x6e\ +\x00\x68\x00\x75\x00\x6d\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\ +\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x12\x4e\x6f\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x4c\x00\x4e\x00\xe3\x00\x6f\x00\x20\x00\ +\x68\x00\xe1\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x6f\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x72\x00\x74\x00\x61\x00\ +\x64\x00\x6f\x00\x73\x00\x20\x00\x70\x00\x6f\x00\x72\x00\x20\x00\ +\x65\x00\x73\x00\x74\x00\x65\x00\x20\x00\x70\x00\x6c\x00\x61\x00\ +\x6e\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x4e\x6f\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x72\x65\x20\x63\x75\x74\x20\ +\x62\x79\x20\x74\x68\x65\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xb6\x00\x4e\x00\x65\x00\ +\x6e\x00\x68\x00\x75\x00\x6d\x00\x61\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x6d\x00\x61\x00\x20\x00\x66\x00\x6f\x00\x69\x00\x20\x00\ +\x63\x00\x61\x00\x6c\x00\x63\x00\x75\x00\x6c\x00\x61\x00\x64\x00\ +\x6f\x00\x20\x00\x61\x00\x69\x00\x6e\x00\x64\x00\x61\x00\x2c\x00\ +\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\ +\x6e\x00\x65\x00\x20\x00\x61\x00\x20\x00\x72\x00\x65\x00\x6e\x00\ +\x64\x00\x65\x00\x72\x00\x69\x00\x7a\x00\x61\x00\xe7\x00\xe3\x00\ +\x6f\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x66\x00\x72\x00\ +\x61\x00\x6d\x00\x65\x00\x20\x00\x65\x00\x20\x00\x72\x00\x65\x00\ +\x6e\x00\x64\x00\x65\x00\x72\x00\x69\x00\x7a\x00\x65\x00\x20\x00\ +\x6e\x00\x6f\x00\x76\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4b\x4e\x6f\x20\x73\x68\ +\x61\x70\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x63\x6f\x6d\ +\x70\x75\x74\x65\x64\x20\x79\x65\x74\x2c\x20\x73\x65\x6c\x65\x63\ +\x74\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\x72\x65\x6e\x64\ +\x65\x72\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x65\x6e\x64\x65\x72\ +\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x0e\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x4f\x62\x6a\ +\x65\x63\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x0c\x00\x50\x00\xe1\x00\x67\x00\x69\x00\x6e\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x50\x61\x67\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x52\x00\x65\ +\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x52\x65\x6d\x6f\x76\x65\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x54\x00\x65\x00\x6c\x00\ +\x68\x00\x61\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x0e\x00\x54\x00\x65\x00\x72\x00\x72\x00\x65\x00\x6e\ +\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\x00\ +\x50\x00\x75\x00\x6c\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\ +\x75\x00\x6d\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x6f\x00\x20\x00\x69\x00\x6e\x00\x76\x00\xe1\x00\x6c\x00\x69\x00\ +\x64\x00\x6f\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x19\x53\x6b\x69\x70\x70\x69\x6e\x67\x20\x69\x6e\x76\x61\x6c\x69\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x44\x00\x69\x00\x76\x00\ +\x69\x00\x64\x00\x69\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x6c\x00\ +\x68\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\ +\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x12\x00\x45\x00\x73\x00\x74\x00\x72\x00\x75\ +\x00\x74\x00\x75\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x53\x00\x75\x00\x62\ +\x00\x74\x00\x72\x00\x61\x00\xe7\x00\xf5\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x75\x62\x74\x72\x61\x63\x74\ +\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x7e\x00\x4f\x00\x20\x00\x61\x00\x6c\x00\x69\x00\x6e\x00\ +\x68\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\ +\x64\x00\x65\x00\x73\x00\x74\x00\x61\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x65\x00\x64\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\ +\x73\x00\x65\x00\x75\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x62\x00\x61\x00\ +\x73\x00\x65\x00\x2c\x00\x20\x00\x73\x00\x65\x00\x20\x00\x66\x00\ +\x6f\x00\x72\x00\x20\x00\x6f\x00\x20\x00\x63\x00\x61\x00\x73\x00\ +\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3c\x54\x68\x65\x20\x61\ +\x6c\x69\x67\x6e\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x69\x73\ +\x20\x77\x61\x6c\x6c\x20\x6f\x6e\x20\x69\x74\x73\x20\x62\x61\x73\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x69\x66\x20\x61\x70\x70\ +\x6c\x69\x63\x61\x62\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x2c\x00\x4f\x00\x20\x00\xe2\x00\x6e\x00\x67\ +\x00\x75\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x73\x00\x74\ +\x00\x65\x00\x20\x00\x74\x00\x65\x00\x6c\x00\x68\x00\x61\x00\x64\ +\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x68\x65\x20\ +\x61\x6e\x67\x6c\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x72\x6f\ +\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x2e\x00\x4f\x00\x73\x00\x20\x00\xe2\x00\x6e\x00\x67\x00\x75\x00\ +\x6c\x00\x6f\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\ +\x61\x00\x64\x00\x61\x00\x20\x00\x65\x00\x69\x00\x78\x00\x6f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x17\x54\x68\x65\x20\x61\x6e\x67\ +\x6c\x65\x73\x20\x6f\x66\x20\x65\x61\x63\x68\x20\x61\x78\x69\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x54\x00\ +\x4f\x00\x20\x00\x74\x00\x61\x00\x6d\x00\x61\x00\x6e\x00\x68\x00\ +\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x65\x00\x78\x00\x69\x00\ +\x62\x00\x69\x00\xe7\x00\xe3\x00\x6f\x00\x20\x00\x64\x00\x65\x00\ +\x73\x00\x74\x00\x65\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\ +\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x73\x00\x65\x00\xe7\x00\ +\xe3\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x26\x54\x68\x65\ +\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x73\x69\x7a\x65\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\ +\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x94\x00\x4f\x00\x73\x00\x20\x00\xed\x00\x6e\x00\x64\x00\x69\ +\x00\x63\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x65\ +\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x73\ +\x00\x20\x00\x61\x00\x20\x00\x65\x00\x78\x00\x63\x00\x6c\x00\x75\ +\x00\x69\x00\x72\x00\x20\x00\x71\x00\x75\x00\x61\x00\x6e\x00\x64\ +\x00\x6f\x00\x20\x00\x65\x00\x73\x00\x73\x00\x61\x00\x20\x00\x65\ +\x00\x73\x00\x74\x00\x72\x00\x75\x00\x74\x00\x75\x00\x72\x00\x61\ +\x00\x20\x00\xe9\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x61\ +\x00\x64\x00\x61\x00\x20\x00\x65\x00\x6d\x00\x20\x00\x65\x00\x69\ +\x00\x78\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\ +\x54\x68\x65\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\x6e\x75\x6d\x62\ +\x65\x72\x73\x20\x74\x6f\x20\x65\x78\x63\x6c\x75\x64\x65\x20\x77\ +\x68\x65\x6e\x20\x74\x68\x69\x73\x20\x73\x74\x72\x75\x63\x74\x75\ +\x72\x65\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\ +\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x82\x00\x4f\x00\x20\x00\xed\x00\x6e\x00\x64\x00\x69\x00\x63\ +\x00\x65\x00\x20\x00\x64\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\ +\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x62\ +\x00\x61\x00\x73\x00\x65\x00\x20\x00\x75\x00\x73\x00\x61\x00\x64\ +\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x63\ +\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x69\x00\x72\ +\x00\x20\x00\x6f\x00\x20\x00\x74\x00\x65\x00\x6c\x00\x68\x00\x61\ +\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3a\x54\x68\ +\x65\x20\x66\x61\x63\x65\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\ +\x20\x74\x68\x65\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x62\x75\x69\x6c\x64\x20\x74\ +\x68\x69\x73\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x26\x00\x41\x00\x20\x00\x61\x00\x6c\x00\ +\x74\x00\x75\x00\x72\x00\x61\x00\x20\x00\x64\x00\x65\x00\x73\x00\ +\x74\x00\x65\x00\x20\x00\x70\x00\x69\x00\x73\x00\x6f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x18\x54\x68\x65\x20\x68\x65\x69\x67\x68\ +\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x66\x6c\x6f\x6f\x72\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xc4\x00\x41\ +\x00\x20\x00\x61\x00\x6c\x00\x74\x00\x75\x00\x72\x00\x61\x00\x20\ +\x00\x64\x00\x65\x00\x73\x00\x74\x00\x61\x00\x20\x00\x70\x00\x61\ +\x00\x72\x00\x65\x00\x64\x00\x65\x00\x2e\x00\x20\x00\x4d\x00\x61\ +\x00\x6e\x00\x74\x00\x65\x00\x6e\x00\x68\x00\x61\x00\x20\x00\x30\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x61\x00\x75\ +\x00\x74\x00\x6f\x00\x6d\x00\xe1\x00\x74\x00\x69\x00\x63\x00\x6f\ +\x00\x2e\x00\x20\x00\x4e\x00\xe3\x00\x6f\x00\x20\x00\x75\x00\x73\ +\x00\x61\x00\x64\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x20\x00\x65\ +\x00\x73\x00\x74\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\ +\x00\x64\x00\x65\x00\x20\x00\xe9\x00\x20\x00\x62\x00\x61\x00\x73\ +\x00\x65\x00\x61\x00\x64\x00\x61\x00\x20\x00\x65\x00\x6d\x00\x20\ +\x00\x75\x00\x6d\x00\x20\x00\x73\x00\xf3\x00\x6c\x00\x69\x00\x64\ +\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x58\x54\x68\x65\x20\ +\x68\x65\x69\x67\x68\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\ +\x61\x6c\x6c\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\x20\ +\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x2e\x20\x4e\x6f\x74\x20\x75\ +\x73\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\ +\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x73\ +\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x9a\x00\x41\x00\x20\x00\x61\x00\x6c\x00\x74\x00\x75\x00\ +\x72\x00\x61\x00\x20\x00\x6f\x00\x75\x00\x20\x00\x70\x00\x72\x00\ +\x6f\x00\x66\x00\x75\x00\x6e\x00\x64\x00\x69\x00\x64\x00\x61\x00\ +\x64\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x65\x00\x78\x00\ +\x74\x00\x72\x00\x75\x00\x73\x00\xe3\x00\x6f\x00\x20\x00\x64\x00\ +\x65\x00\x73\x00\x74\x00\x65\x00\x20\x00\x65\x00\x6c\x00\x65\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x2e\x00\x20\x00\x4d\x00\ +\x61\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x20\x00\x30\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x61\x00\x75\x00\x74\x00\ +\x6f\x00\x6d\x00\xe1\x00\x74\x00\x69\x00\x63\x00\x6f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x43\x54\x68\x65\x20\x68\x65\x69\x67\x68\ +\x74\x20\x6f\x72\x20\x65\x78\x74\x72\x75\x73\x69\x6f\x6e\x20\x64\ +\x65\x70\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\ +\x6d\x65\x6e\x74\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\ +\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x4f\x00\x73\x00\x20\x00\ +\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x76\x00\x61\x00\x6c\x00\ +\x6f\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x72\x00\x65\x00\ +\x20\x00\x65\x00\x69\x00\x78\x00\x6f\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1a\x54\x68\x65\x20\x69\x6e\x74\x65\x72\x76\x61\ +\x6c\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x61\x78\x65\x73\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x4f\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x72\x00\x69\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x6f\x00\x73\ +\x00\x20\x00\x65\x00\x69\x00\x78\x00\x6f\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x16\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\ +\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\x65\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x7c\x00\x4f\x00\x20\x00\ +\x63\x00\x6f\x00\x6d\x00\x70\x00\x72\x00\x69\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x73\x00\x74\x00\ +\x65\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x6f\x00\x2c\x00\x20\x00\x73\x00\x65\x00\x20\x00\x6e\x00\ +\xe3\x00\x6f\x00\x20\x00\x65\x00\x73\x00\x74\x00\xe1\x00\x20\x00\ +\x62\x00\x61\x00\x73\x00\x65\x00\x61\x00\x64\x00\x6f\x00\x20\x00\ +\x65\x00\x6d\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x70\x00\x65\x00\ +\x72\x00\x66\x00\x69\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x35\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x74\ +\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\ +\x6e\x6f\x74\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\ +\x72\x6f\x66\x69\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\xa8\x00\x41\x00\x20\x00\x64\x00\x69\x00\x72\x00\ +\x65\x00\xe7\x00\xe3\x00\x6f\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\ +\x6d\x00\x61\x00\x6c\x00\x20\x00\x64\x00\x65\x00\x20\x00\x65\x00\ +\x78\x00\x74\x00\x72\x00\x75\x00\x73\x00\xe3\x00\x6f\x00\x20\x00\ +\x64\x00\x65\x00\x73\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x28\x00\x6d\x00\x61\x00\ +\x6e\x00\x74\x00\x65\x00\x6e\x00\x68\x00\x61\x00\x20\x00\x28\x00\ +\x30\x00\x2c\x00\x20\x00\x30\x00\x2c\x00\x30\x00\x29\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\ +\x6d\x00\x61\x00\x6c\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\ +\x6d\x00\xe1\x00\x74\x00\x69\x00\x63\x00\x61\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x51\x54\x68\x65\x20\x6e\x6f\x72\x6d\x61\ +\x6c\x20\x65\x78\x74\x72\x75\x73\x69\x6f\x6e\x20\x64\x69\x72\x65\ +\x63\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6f\x62\ +\x6a\x65\x63\x74\x20\x28\x6b\x65\x65\x70\x20\x28\x30\x2c\x30\x2c\ +\x30\x29\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\ +\x20\x6e\x6f\x72\x6d\x61\x6c\x29\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x2a\x00\x4f\x00\x20\x00\x65\x00\x73\x00\ +\x74\x00\x69\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x6e\x00\x75\x00\x6d\x00\x65\x00\x72\x00\x61\x00\xe7\x00\xe3\x00\ +\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\x20\x6e\ +\x75\x6d\x65\x72\x61\x74\x69\x6f\x6e\x20\x73\x74\x79\x6c\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xd8\x00\x4f\ +\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\ +\x00\x73\x00\x20\x00\x71\x00\x75\x00\x65\x00\x20\x00\x64\x00\x65\ +\x00\x76\x00\x65\x00\x6d\x00\x20\x00\x73\x00\x65\x00\x72\x00\x20\ +\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\ +\x00\x61\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x70\x00\x6f\x00\x72\ +\x00\x20\x00\x65\x00\x73\x00\x74\x00\x65\x00\x20\x00\x70\x00\x6c\ +\x00\x61\x00\x6e\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x2e\x00\x20\x00\x56\x00\x61\ +\x00\x7a\x00\x69\x00\x6f\x00\x20\x00\x73\x00\x69\x00\x67\x00\x6e\ +\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x20\x00\x74\x00\x6f\ +\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x73\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x64\ +\x00\x6f\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\ +\x00\x6e\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\ +\x54\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x74\x68\x61\x74\ +\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\ +\x72\x65\x64\x20\x62\x79\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\ +\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x2e\x20\x45\x6d\x70\x74\x79\ +\x20\x6d\x65\x61\x6e\x73\x20\x61\x6c\x6c\x20\x64\x6f\x63\x75\x6d\ +\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x38\x00\x4f\x00\x20\x00\x74\x00\x61\x00\x6d\x00\x61\x00\x6e\ +\x00\x68\x00\x6f\x00\x20\x00\x64\x00\x61\x00\x73\x00\x20\x00\x62\ +\x00\x6f\x00\x6c\x00\x68\x00\x61\x00\x73\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x65\x00\x69\x00\x78\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1c\x54\x68\x65\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\ +\x74\x68\x65\x20\x61\x78\x69\x73\x20\x62\x75\x62\x62\x6c\x65\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x7c\x00\ +\x4f\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x72\x00\x69\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\ +\x73\x00\x74\x00\x65\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x6f\x00\x2c\x00\x20\x00\x73\x00\x65\x00\ +\x20\x00\x6e\x00\xe3\x00\x6f\x00\x20\x00\x65\x00\x73\x00\x74\x00\ +\xe1\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x61\x00\x64\x00\ +\x6f\x00\x20\x00\x65\x00\x6d\x00\x20\x00\x75\x00\x6d\x00\x20\x00\ +\x70\x00\x65\x00\x72\x00\x66\x00\x69\x00\x6c\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x34\x54\x68\x65\x20\x77\x69\x64\x74\x68\x20\x6f\ +\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\x20\ +\x69\x66\x20\x6e\x6f\x74\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\ +\x61\x20\x70\x72\x6f\x66\x69\x6c\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x8c\x00\x41\x00\x20\x00\x6c\x00\x61\ +\x00\x72\x00\x67\x00\x75\x00\x72\x00\x61\x00\x20\x00\x64\x00\x65\ +\x00\x73\x00\x74\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\ +\x00\x64\x00\x65\x00\x2e\x00\x20\x00\x4e\x00\xe3\x00\x6f\x00\x20\ +\x00\x75\x00\x73\x00\x61\x00\x64\x00\x6f\x00\x20\x00\x73\x00\x65\ +\x00\x20\x00\x65\x00\x73\x00\x74\x00\x61\x00\x20\x00\x70\x00\x61\ +\x00\x72\x00\x65\x00\x64\x00\x65\x00\x20\x00\xe9\x00\x20\x00\x62\ +\x00\x61\x00\x73\x00\x65\x00\x61\x00\x64\x00\x61\x00\x20\x00\x65\ +\x00\x6d\x00\x20\x00\x75\x00\x6d\x00\x61\x00\x20\x00\x66\x00\x61\ +\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x40\x54\x68\ +\x65\x20\x77\x69\x64\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x77\x61\x6c\x6c\x2e\x20\x4e\x6f\x74\x20\x75\x73\x65\x64\x20\x69\ +\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\ +\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x66\x61\x63\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x45\x00\ +\x73\x00\x70\x00\x65\x00\x73\x00\x73\x00\x75\x00\x72\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\x68\x69\x63\x6b\x6e\x65\ +\x73\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x3e\x00\x45\x00\x73\x00\x74\x00\x61\x00\x20\x00\x6d\x00\x61\x00\ +\x6c\x00\x68\x00\x61\x00\x20\x00\xe9\x00\x20\x00\x75\x00\x6d\x00\ +\x20\x00\x73\x00\xf3\x00\x6c\x00\x69\x00\x64\x00\x6f\x00\x20\x00\ +\x69\x00\x6e\x00\x76\x00\xe1\x00\x6c\x00\x69\x00\x64\x00\x6f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x54\x68\x69\x73\x20\x6d\x65\ +\x73\x68\x20\x69\x73\x20\x61\x6e\x20\x69\x6e\x76\x61\x6c\x69\x64\ +\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x08\x00\x54\x00\x69\x00\x70\x00\x6f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x54\x79\x70\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x22\x00\x43\x00\x6f\x00\x6e\ +\x00\x76\x00\x65\x00\x72\x00\x73\x00\xe3\x00\x6f\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x74\x00\x69\x00\x70\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0f\x54\x79\x70\x65\x20\x63\x6f\x6e\x76\x65\ +\x72\x73\x69\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x3e\x00\x4e\x00\xe3\x00\x6f\x00\x20\x00\xe9\x00\x20\ +\x00\x70\x00\x6f\x00\x73\x00\x73\x00\xed\x00\x76\x00\x65\x00\x6c\ +\x00\x20\x00\x63\x00\x72\x00\x69\x00\x61\x00\x72\x00\x20\x00\x75\ +\x00\x6d\x00\x20\x00\x74\x00\x65\x00\x6c\x00\x68\x00\x61\x00\x64\ +\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x55\x6e\x61\x62\ +\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x72\ +\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x3e\x00\x4e\x00\xe3\x00\x6f\x00\x20\x00\xe9\x00\x20\x00\x70\ +\x00\x6f\x00\x73\x00\x73\x00\xed\x00\x76\x00\x65\x00\x6c\x00\x20\ +\x00\x63\x00\x72\x00\x69\x00\x61\x00\x72\x00\x20\x00\x63\x00\x6f\ +\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x55\x6e\x61\x62\x6c\x65\ +\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\ +\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x18\x00\x44\x00\x65\x00\x73\x00\x61\x00\x67\x00\x72\x00\ +\x75\x00\x70\x00\x61\x00\x6e\x00\x64\x00\x6f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0a\x55\x6e\x67\x72\x6f\x75\x70\x69\x6e\x67\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x56\ +\x00\x69\x00\x73\x00\x74\x00\x61\x00\x20\x00\x64\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x07\x56\x69\x65\x77\x20\x6f\x66\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x50\ +\x00\x61\x00\x72\x00\x65\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x20\x00\x4f\x00\x70\x00\xe7\x00\xf5\x00\ +\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x65\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0c\x57\x61\x6c\x6c\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x57\x00\x61\ +\x00\x6c\x00\x6c\x00\x54\x00\x72\x00\x61\x00\x63\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x57\x61\x6c\x6c\x54\x72\x61\x63\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\ +\x00\x4c\x00\x61\x00\x72\x00\x67\x00\x75\x00\x72\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x57\x69\x64\x74\x68\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x4a\x00\x61\ +\x00\x6e\x00\x65\x00\x6c\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x08\x00\x46\x00\x69\x00\x6f\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x05\x57\x69\x72\x65\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x22\x00\x44\x00\ +\x65\x00\x73\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x6f\x00\x20\x00\x65\x00\x6d\x00\x20\x00\x7a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x5a\x20\x6f\x66\x66\x73\x65\ +\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x36\ +\x00\x66\x00\x65\x00\x63\x00\x68\x00\x61\x00\x6e\x00\x64\x00\x6f\ +\x00\x20\x00\x61\x00\x20\x00\x65\x00\x64\x00\x69\x00\xe7\x00\xe3\ +\x00\x6f\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x65\x00\x73\x00\x62\ +\x00\x6f\x00\xe7\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\ +\x63\x6c\x6f\x73\x69\x6e\x67\x20\x53\x6b\x65\x74\x63\x68\x20\x65\ +\x64\x69\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x38\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\xe9\x00\x6d\x00\x20\ +\x00\x75\x00\x6d\x00\x20\x00\x73\x00\xf3\x00\x6c\x00\x69\x00\x64\ +\x00\x6f\x00\x20\x00\x6e\x00\xe3\x00\x6f\x00\x20\x00\x66\x00\x65\ +\x00\x63\x00\x68\x00\x61\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1b\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x61\x20\x6e\ +\x6f\x6e\x2d\x63\x6c\x6f\x73\x65\x64\x20\x73\x6f\x6c\x69\x64\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5e\x00\x63\ +\x00\x6f\x00\x6e\x00\x74\x00\xe9\x00\x6d\x00\x20\x00\x66\x00\x61\ +\x00\x63\x00\x65\x00\x73\x00\x20\x00\x71\x00\x75\x00\x65\x00\x20\ +\x00\x6e\x00\xe3\x00\x6f\x00\x20\x00\x73\x00\xe3\x00\x6f\x00\x20\ +\x00\x70\x00\x61\x00\x72\x00\x74\x00\x65\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x6e\x00\x65\x00\x6e\x00\x68\x00\x75\x00\x6d\x00\x20\ +\x00\x73\x00\xf3\x00\x6c\x00\x69\x00\x64\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x2d\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x66\ +\x61\x63\x65\x73\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\x6e\x6f\ +\x74\x20\x70\x61\x72\x74\x20\x6f\x66\x20\x61\x6e\x79\x20\x73\x6f\ +\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x34\x00\x6e\x00\xe3\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6e\ +\x00\x74\x00\xe9\x00\x6d\x00\x20\x00\x71\x00\x75\x00\x61\x00\x6c\ +\x00\x71\x00\x75\x00\x65\x00\x72\x00\x20\x00\x73\x00\xf3\x00\x6c\ +\x00\x69\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\ +\x64\x6f\x65\x73\x6e\x27\x74\x20\x63\x6f\x6e\x74\x61\x69\x6e\x20\ +\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x40\x00\x61\x00\x72\x00\x71\x00\x75\ +\x00\x69\x00\x76\x00\x6f\x00\x20\x00\x25\x00\x73\x00\x20\x00\x66\ +\x00\x6f\x00\x69\x00\x20\x00\x63\x00\x72\x00\x69\x00\x61\x00\x64\ +\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x20\x00\xea\x00\x78\ +\x00\x69\x00\x74\x00\x6f\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1d\x66\x69\x6c\x65\x20\x25\x73\x20\x73\x75\x63\x63\x65\x73\ +\x73\x66\x75\x6c\x6c\x79\x20\x63\x72\x65\x61\x74\x65\x64\x2e\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x6e\ +\x00\xe3\x00\x6f\x00\x20\x00\xe9\x00\x20\x00\x66\x00\x65\x00\x63\ +\x00\x68\x00\x61\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x69\x73\x20\x6e\x6f\x74\x20\x63\x6c\x6f\x73\x65\x64\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x6e\ +\x00\xe3\x00\x6f\x00\x20\x00\xe9\x00\x20\x00\x76\x00\xe1\x00\x6c\ +\x00\x69\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x69\x73\x20\x6e\x6f\x74\x20\x76\x61\x6c\x69\x64\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x68\x00\x70\x00\x79\x00\ +\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\ +\x6e\x00\xe3\x00\x6f\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\ +\x6e\x00\x74\x00\x72\x00\x61\x00\x64\x00\x6f\x00\x2c\x00\x20\x00\ +\x6e\x00\xe3\x00\x6f\x00\x20\x00\x68\x00\xe1\x00\x20\x00\x73\x00\ +\x75\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\ +\x61\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x70\x79\x63\ +\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\ +\x2c\x20\x6e\x6f\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\ +\x70\x6f\x72\x74\x2e\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x7a\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\ +\x65\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x6f\x00\x20\x00\x65\x00\ +\x73\x00\x62\x00\x6f\x00\xe7\x00\x6f\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x73\x00\x75\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\ +\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x65\x00\x76\x00\ +\x69\x00\x74\x00\x61\x00\x72\x00\x20\x00\x72\x00\x65\x00\x66\x00\ +\x65\x00\x72\x00\xea\x00\x6e\x00\xe7\x00\x61\x00\x73\x00\x20\x00\ +\x63\x00\x72\x00\x75\x00\x7a\x00\x61\x00\x64\x00\x61\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x32\x72\x65\x6d\x6f\x76\x69\x6e\ +\x67\x20\x73\x6b\x65\x74\x63\x68\x20\x73\x75\x70\x70\x6f\x72\x74\ +\x20\x74\x6f\x20\x61\x76\x6f\x69\x64\x20\x63\x72\x6f\x73\x73\x2d\ +\x72\x65\x66\x65\x72\x65\x6e\x63\x69\x6e\x67\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x24\x00\x67\x00\x72\x00\x61\ +\x00\x76\x00\x61\x00\x64\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x20\x00\xea\x00\x78\x00\x69\x00\x74\x00\x6f\x00\x20\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x15\x73\x75\x63\x63\x65\x73\x73\x66\ +\x75\x6c\x6c\x79\x20\x77\x72\x69\x74\x74\x65\x6e\x20\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x36\x00\x6f\x00\x73\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ +\x00\x6e\x00\x74\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x73\ +\x00\x74\x00\x61\x00\x20\x00\x6a\x00\x61\x00\x6e\x00\x65\x00\x6c\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x74\x68\x65\x20\ +\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\ +\x69\x73\x20\x77\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x28\x00\x41\x00\x64\x00\x69\x00\x63\ +\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x63\x00\x6f\ +\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\ +\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x68\x00\x41\x00\x64\x00\x69\ +\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\x73\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ +\x00\x6e\x00\x74\x00\x65\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\ +\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\ +\x00\x73\x00\x20\x00\x61\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x74\x00\x69\x00\x76\ +\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x41\x64\x64\x73\ +\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\ +\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\ +\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x08\ +\x00\x45\x00\x69\x00\x78\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x41\x78\x69\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\ +\x41\x78\x69\x73\x01\x03\x00\x00\x00\x30\x00\x43\x00\x72\x00\x69\ +\x00\x61\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x73\x00\x69\x00\x73\ +\x00\x74\x00\x65\x00\x6d\x00\x61\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x65\x00\x69\x00\x78\x00\x6f\x00\x2e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x17\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\ +\x78\x69\x73\x20\x73\x79\x73\x74\x65\x6d\x2e\x07\x00\x00\x00\x09\ +\x41\x72\x63\x68\x5f\x41\x78\x69\x73\x01\x03\x00\x00\x00\x10\x00\ +\x45\x00\x64\x00\x69\x00\x66\x00\xed\x00\x63\x00\x69\x00\x6f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\ +\x67\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\ +\x69\x6e\x67\x01\x03\x00\x00\x00\x68\x00\x43\x00\x72\x00\x69\x00\ +\x61\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x65\x00\x64\x00\x69\x00\ +\x66\x00\xed\x00\x63\x00\x69\x00\x6f\x00\x2c\x00\x20\x00\x69\x00\ +\x6e\x00\x63\x00\x6c\x00\x75\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\ +\x20\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x74\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x73\x00\ +\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x43\x72\x65\x61\x74\ +\x65\x73\x20\x61\x20\x62\x75\x69\x6c\x64\x69\x6e\x67\x20\x6f\x62\ +\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\ +\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\ +\x6e\x67\x01\x03\x00\x00\x00\x0c\x00\x43\x00\xe9\x00\x6c\x00\x75\ +\x00\x6c\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x43\x65\ +\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\ +\x01\x03\x00\x00\x00\x64\x00\x43\x00\x72\x00\x69\x00\x61\x00\x20\ +\x00\x75\x00\x6d\x00\x61\x00\x20\x00\x63\x00\xe9\x00\x6c\x00\x75\ +\x00\x6c\x00\x61\x00\x2c\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\ +\x00\x75\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x6f\x00\x73\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\ +\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\ +\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x65\ +\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\ +\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\ +\x6c\x6c\x01\x03\x00\x00\x00\x16\x00\x56\x00\x65\x00\x72\x00\x69\ +\x00\x66\x00\x69\x00\x63\x00\x61\x00\xe7\x00\xe3\x00\x6f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x43\x68\x65\x63\x6b\x07\x00\x00\ +\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\x01\x03\x00\x00\ +\x00\x58\x00\x56\x00\x65\x00\x72\x00\x69\x00\x66\x00\x69\x00\x63\ +\x00\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x62\x00\x6c\x00\x65\ +\x00\x6d\x00\x61\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x73\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x73\ +\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\ +\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x28\x43\x68\x65\x63\x6b\x73\x20\x74\x68\x65\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x66\x6f\x72\x20\x70\x72\x6f\x62\x6c\x65\x6d\x73\x07\x00\x00\x00\ +\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\x01\x03\x00\x00\x00\ +\x1c\x00\x46\x00\x65\x00\x63\x00\x68\x00\x61\x00\x72\x00\x20\x00\ +\x62\x00\x75\x00\x72\x00\x61\x00\x63\x00\x6f\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0b\x43\x6c\x6f\x73\x65\x20\x68\x6f\x6c\ +\x65\x73\x07\x00\x00\x00\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\ +\x65\x48\x6f\x6c\x65\x73\x01\x03\x00\x00\x00\x72\x00\x46\x00\x65\ +\x00\x63\x00\x68\x00\x61\x00\x20\x00\x62\x00\x75\x00\x72\x00\x61\ +\x00\x63\x00\x6f\x00\x73\x00\x20\x00\x65\x00\x6d\x00\x20\x00\x66\ +\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x73\x00\x20\x00\x61\x00\x62\ +\x00\x65\x00\x72\x00\x74\x00\x61\x00\x73\x00\x2c\x00\x20\x00\x74\ +\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x66\x00\x6f\x00\x72\x00\x6d\ +\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x2d\x00\x6f\x00\x73\x00\x20\ +\x00\x73\x00\xf3\x00\x6c\x00\x69\x00\x64\x00\x6f\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x30\x43\x6c\x6f\x73\x65\x73\x20\x68\ +\x6f\x6c\x65\x73\x20\x69\x6e\x20\x6f\x70\x65\x6e\x20\x73\x68\x61\ +\x70\x65\x73\x2c\x20\x74\x75\x72\x6e\x69\x6e\x67\x20\x74\x68\x65\ +\x6d\x20\x73\x6f\x6c\x69\x64\x73\x07\x00\x00\x00\x0f\x41\x72\x63\ +\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\x01\x03\x00\x00\ +\x00\x5e\x00\x43\x00\x72\x00\x69\x00\x61\x00\x20\x00\x75\x00\x6d\ +\x00\x20\x00\x70\x00\x69\x00\x73\x00\x6f\x00\x2c\x00\x20\x00\x69\ +\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x69\x00\x6e\x00\x64\x00\x6f\ +\x00\x20\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\ +\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\ +\x73\x20\x61\x20\x66\x6c\x6f\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0a\ +\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x08\ +\x00\x50\x00\x69\x00\x73\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x0a\x41\x72\x63\x68\ +\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x20\x00\x4d\x00\x61\ +\x00\x6c\x00\x68\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\ +\x00\x20\x00\x46\x00\x6f\x00\x72\x00\x6d\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x74\x6f\x20\x53\x68\ +\x61\x70\x65\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\x65\x73\ +\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x72\x00\x54\ +\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x66\x00\x6f\x00\x72\x00\x6d\ +\x00\x61\x00\x20\x00\x61\x00\x73\x00\x20\x00\x6d\x00\x61\x00\x6c\ +\x00\x68\x00\x61\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\ +\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x61\x00\x73\ +\x00\x20\x00\x65\x00\x6d\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\ +\x00\x61\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x74\x00\x69\ +\x00\x70\x00\x6f\x00\x20\x00\x50\x00\x61\x00\x72\x00\x74\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x54\x75\x72\x6e\x73\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\ +\x69\x6e\x74\x6f\x20\x50\x61\x72\x74\x20\x53\x68\x61\x70\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\ +\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\ +\x00\x24\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x72\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ +\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x52\x65\x6d\x6f\x76\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\ +\x01\x03\x00\x00\x00\xb6\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\ +\x00\x65\x00\x20\x00\x6f\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x73\ +\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\ +\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x73\x00\x65\x00\x75\x00\x73\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x2d\x00\x70\x00\x61\ +\x00\x69\x00\x73\x00\x2c\x00\x20\x00\x6f\x00\x75\x00\x20\x00\x63\ +\x00\x72\x00\x69\x00\x61\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x62\ +\x00\x75\x00\x72\x00\x61\x00\x63\x00\x6f\x00\x20\x00\x65\x00\x6d\ +\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x52\x52\x65\x6d\x6f\x76\x65\x20\x74\x68\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\ +\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x69\x72\x20\ +\x70\x61\x72\x65\x6e\x74\x73\x2c\x20\x6f\x72\x20\x63\x72\x65\x61\ +\x74\x65\x20\x61\x20\x68\x6f\x6c\x65\x20\x69\x6e\x20\x61\x20\x63\ +\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\ +\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\x2a\x00\x52\ +\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x72\x00\x20\x00\x66\ +\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x41\x00\x72\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x16\x52\x65\x6d\x6f\x76\x65\x20\x53\x68\x61\x70\x65\x20\x66\ +\x72\x6f\x6d\x20\x41\x72\x63\x68\x07\x00\x00\x00\x10\x41\x72\x63\ +\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\ +\x00\x00\x52\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\ +\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x73\x00\x20\x00\ +\x63\x00\xfa\x00\x62\x00\x69\x00\x63\x00\x61\x00\x73\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\ +\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x73\x00\x20\x00\x41\x00\ +\x72\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x52\ +\x65\x6d\x6f\x76\x65\x73\x20\x63\x75\x62\x69\x63\x20\x73\x68\x61\ +\x70\x65\x73\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\ +\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\ +\x00\x00\x74\x00\x43\x00\x72\x00\x69\x00\x61\x00\x20\x00\x75\x00\ +\x6d\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x74\x00\x65\x00\x6c\x00\x68\x00\ +\x61\x00\x64\x00\x6f\x00\x20\x00\x61\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x74\x00\x69\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x75\x00\x6d\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\ +\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\ +\x6e\x00\x61\x00\x64\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x39\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x72\x6f\x6f\x66\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x66\x61\x63\x65\x20\x6f\x66\ +\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x09\x41\ +\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x0e\x00\x54\ +\x00\x65\x00\x6c\x00\x68\x00\x61\x00\x64\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\x09\x41\ +\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x86\x00\x43\ +\x00\x72\x00\x69\x00\x61\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x6f\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x2c\ +\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x69\x00\x6e\ +\x00\x64\x00\x6f\x00\x20\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\ +\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3e\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\ +\x70\x6c\x61\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x69\x6e\ +\x63\x6c\x75\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\ +\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\ +\x6e\x65\x01\x03\x00\x00\x00\x1c\x00\x50\x00\x6c\x00\x61\x00\x6e\ +\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x73\x00\x65\x00\xe7\ +\x00\xe3\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\ +\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\ +\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\ +\x65\x01\x03\x00\x00\x00\x3c\x00\x53\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x6d\x00\ +\x61\x00\x6c\x00\x68\x00\x61\x00\x73\x00\x20\x00\x6e\x00\xe3\x00\ +\x6f\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\x66\x00\x6f\x00\ +\x6c\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\x65\x6c\ +\x65\x63\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\ +\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\ +\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\ +\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x9c\x00\x53\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x20\x00\ +\x74\x00\x6f\x00\x64\x00\x61\x00\x73\x00\x20\x00\x61\x00\x73\x00\ +\x20\x00\x6d\x00\x61\x00\x6c\x00\x68\x00\x61\x00\x73\x00\x20\x00\ +\x6e\x00\xe3\x00\x6f\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\ +\x66\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x64\x00\x6f\x00\x20\x00\ +\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x6f\x00\x20\x00\x6f\x00\x75\x00\x20\x00\x64\x00\x6f\x00\x73\x00\ +\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\x6f\x00\x73\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\ +\x61\x00\x64\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x4d\x53\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6e\x6f\x6e\ +\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\ +\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\ +\x6e\x74\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x67\x72\x6f\x75\x70\x73\x07\x00\ +\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\ +\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\ +\x00\x64\x00\x43\x00\x72\x00\x69\x00\x61\x00\x20\x00\x75\x00\x6d\ +\x00\x20\x00\x74\x00\x65\x00\x72\x00\x72\x00\x65\x00\x6e\x00\x6f\ +\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x69\x00\x6e\ +\x00\x64\x00\x6f\x00\x20\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\ +\x00\x6f\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x69\x74\x65\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\ +\x03\x00\x00\x00\x0e\x00\x54\x00\x65\x00\x72\x00\x72\x00\x65\x00\ +\x6e\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\x74\ +\x65\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\ +\x03\x00\x00\x00\x1a\x00\x44\x00\x69\x00\x76\x00\x69\x00\x64\x00\ +\x69\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x6c\x00\x68\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\ +\x65\x73\x68\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\ +\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\x74\x00\x44\x00\x69\ +\x00\x76\x00\x69\x00\x64\x00\x65\x00\x20\x00\x61\x00\x73\x00\x20\ +\x00\x6d\x00\x61\x00\x6c\x00\x68\x00\x61\x00\x73\x00\x20\x00\x73\ +\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\ +\x00\x64\x00\x61\x00\x73\x00\x20\x00\x65\x00\x6d\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x70\ +\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x53\x70\x6c\x69\x74\x73\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\ +\x20\x69\x6e\x74\x6f\x20\x69\x6e\x64\x65\x70\x65\x6e\x64\x65\x6e\ +\x74\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\ +\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\ +\x03\x00\x00\x00\xbc\x00\x43\x00\x72\x00\x69\x00\x61\x00\x20\x00\ +\x75\x00\x6d\x00\x61\x00\x20\x00\x65\x00\x73\x00\x74\x00\x72\x00\ +\x75\x00\x74\x00\x75\x00\x72\x00\x61\x00\x20\x00\x61\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\x74\x00\x69\x00\x72\x00\x20\x00\x64\x00\ +\x6f\x00\x20\x00\x7a\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x6f\x00\ +\x75\x00\x20\x00\x64\x00\x65\x00\x20\x00\x75\x00\x6d\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\ +\x64\x00\x6f\x00\x20\x00\x28\x00\x65\x00\x73\x00\x62\x00\x6f\x00\ +\xe7\x00\x6f\x00\x2c\x00\x20\x00\x63\x00\x61\x00\x62\x00\x6f\x00\ +\x2c\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6f\x00\ +\x75\x00\x20\x00\x73\x00\xf3\x00\x6c\x00\x69\x00\x64\x00\x6f\x00\ +\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5f\x43\x72\x65\x61\x74\ +\x65\x73\x20\x61\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\ +\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x73\x6b\ +\x65\x74\x63\x68\x2c\x20\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\ +\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x0e\x41\ +\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\ +\x00\x00\x12\x00\x45\x00\x73\x00\x74\x00\x72\x00\x75\x00\x74\x00\ +\x75\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\ +\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x0e\x41\x72\x63\ +\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\ +\xa6\x00\x43\x00\x72\x00\x69\x00\x61\x00\x20\x00\x75\x00\x6d\x00\ +\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x64\x00\x65\x00\ +\x20\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\x69\x00\ +\x72\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x7a\x00\x65\x00\x72\x00\ +\x6f\x00\x20\x00\x6f\x00\x75\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x75\x00\x6d\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x6f\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\ +\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x20\x00\x28\x00\x66\x00\ +\x61\x00\x63\x00\x65\x00\x2c\x00\x20\x00\x63\x00\x61\x00\x62\x00\ +\x6f\x00\x20\x00\x6f\x00\x75\x00\x20\x00\x73\x00\xf3\x00\x6c\x00\ +\x69\x00\x64\x00\x6f\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x52\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\x61\x6c\x6c\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\ +\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\ +\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\ +\x69\x64\x29\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\ +\x6c\x01\x03\x00\x00\x00\x0c\x00\x50\x00\x61\x00\x72\x00\x65\x00\ +\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\ +\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\ +\x03\x00\x00\x00\xa8\x00\x43\x00\x72\x00\x69\x00\x61\x00\x20\x00\ +\x75\x00\x6d\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6a\x00\x61\x00\x6e\x00\ +\x65\x00\x6c\x00\x61\x00\x20\x00\x61\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x74\x00\x69\x00\x72\x00\x20\x00\x64\x00\x6f\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\ +\x64\x00\x6f\x00\x20\x00\x28\x00\x61\x00\x72\x00\x61\x00\x6d\x00\ +\x65\x00\x2c\x00\x20\x00\x72\x00\x65\x00\x74\x00\xe2\x00\x6e\x00\ +\x67\x00\x75\x00\x6c\x00\x6f\x00\x20\x00\x6f\x00\x75\x00\x20\x00\ +\x65\x00\x73\x00\x62\x00\x6f\x00\xe7\x00\x6f\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4a\x43\x72\x65\x61\x74\x65\x73\x20\x61\ +\x20\x77\x69\x6e\x64\x6f\x77\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\ +\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x72\x65\x63\ +\x74\x61\x6e\x67\x6c\x65\x20\x6f\x72\x20\x73\x6b\x65\x74\x63\x68\ +\x29\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\ +\x77\x01\x03\x00\x00\x00\x0c\x00\x4a\x00\x61\x00\x6e\x00\x65\x00\ +\x6c\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\ +\x64\x6f\x77\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\ +\x64\x6f\x77\x01\x03\x00\x00\x00\x1e\x00\x52\x00\x65\x00\x6e\x00\ +\x64\x00\x65\x00\x72\x00\x69\x00\x7a\x00\x61\x00\xe7\x00\xe3\x00\ +\x6f\x00\x20\x00\x32\x00\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0c\x32\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\ +\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x52\x00\x43\x00\x72\x00\x69\x00\x61\x00\x20\x00\x67\ +\x00\x72\x00\x75\x00\x70\x00\x6f\x00\x73\x00\x20\x00\x70\x00\x61\ +\x00\x72\x00\x61\x00\x20\x00\x63\x00\x61\x00\x64\x00\x61\x00\x20\ +\x00\x74\x00\x69\x00\x70\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x41\ +\x00\x72\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\ +\x43\x72\x65\x61\x74\x65\x73\x20\x67\x72\x6f\x75\x70\x73\x20\x66\ +\x6f\x72\x20\x65\x61\x63\x68\x20\x41\x72\x63\x68\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x74\x79\x70\x65\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x48\x00\ +\x45\x00\x73\x00\x70\x00\x65\x00\x73\x00\x73\x00\x75\x00\x72\x00\ +\x61\x00\x20\x00\x64\x00\x65\x00\x20\x00\xe1\x00\x72\x00\x65\x00\ +\x61\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x68\x00\x61\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\ +\x6f\x00\x72\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1e\x43\x75\x74\x20\x61\x72\x65\x61\x73\x20\x6c\x69\x6e\x65\x20\ +\x74\x68\x69\x63\x6b\x6e\x65\x73\x73\x20\x72\x61\x74\x69\x6f\x07\ +\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x34\x00\x43\x00\x6f\x00\x72\x00\x20\x00\x70\ +\x00\x61\x00\x64\x00\x72\x00\xe3\x00\x6f\x00\x20\x00\x70\x00\x61\ +\x00\x72\x00\x61\x00\x20\x00\x65\x00\x73\x00\x74\x00\x72\x00\x75\ +\x00\x74\x00\x75\x00\x72\x00\x61\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1c\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\ +\x72\x20\x66\x6f\x72\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x73\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x2e\x00\x43\x00\x6f\x00\x72\x00\x20\x00\ +\x70\x00\x61\x00\x64\x00\x72\x00\xe3\x00\x6f\x00\x20\x00\x70\x00\ +\x61\x00\x72\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\ +\x64\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x44\ +\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ +\x20\x77\x61\x6c\x6c\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x43\x00\ +\x6f\x00\x72\x00\x20\x00\x70\x00\x61\x00\x64\x00\x72\x00\xe3\x00\ +\x6f\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x6a\x00\ +\x61\x00\x6e\x00\x65\x00\x6c\x00\x61\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x19\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ +\x6f\x72\x20\x66\x6f\x72\x20\x77\x69\x6e\x64\x6f\x77\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x46\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\ +\x67\x00\x75\x00\x72\x00\x61\x00\xe7\x00\xf5\x00\x65\x00\x73\x00\ +\x20\x00\x67\x00\x65\x00\x72\x00\x61\x00\x69\x00\x73\x00\x20\x00\ +\x64\x00\x6f\x00\x20\x00\x6d\x00\xf3\x00\x64\x00\x75\x00\x6c\x00\ +\x6f\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\x20\x41\x72\x63\ +\x68\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x28\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\ +\x72\x00\x61\x00\xe7\x00\xf5\x00\x65\x00\x73\x00\x20\x00\x67\x00\ +\x65\x00\x72\x00\x61\x00\x69\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\ +\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\x00\x41\x00\x67\x00\x72\ +\x00\x75\x00\x70\x00\x61\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x73\ +\x00\x20\x00\x70\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x69\x00\x70\ +\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x72\x6f\x75\ +\x70\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x62\x79\x20\ +\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x00\x49\x00\x6d\ +\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\xe7\x00\xe3\x00\x6f\ +\x00\x20\x00\x49\x00\x46\x00\x43\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0a\x49\x46\x43\x20\x69\x6d\x70\x6f\x72\x74\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\xd8\x00\x53\x00\x65\x00\x20\x00\x65\x00\x73\x00\x74\x00\ +\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6d\x00\x61\x00\ +\x72\x00\x63\x00\x61\x00\x64\x00\x6f\x00\x2c\x00\x20\x00\x6f\x00\ +\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\ +\x64\x00\x6f\x00\x72\x00\x20\x00\x49\x00\x46\x00\x43\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\ +\x20\x00\x73\x00\x65\x00\x72\x00\xe1\x00\x20\x00\x75\x00\x74\x00\ +\x69\x00\x6c\x00\x69\x00\x7a\x00\x61\x00\x64\x00\x6f\x00\x2c\x00\ +\x20\x00\x70\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x74\x00\x69\x00\ +\x6e\x00\x64\x00\x6f\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x61\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x69\x00\ +\x73\x00\x20\x00\x74\x00\x69\x00\x70\x00\x6f\x00\x73\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x6f\x00\x73\x00\x20\x00\x49\x00\x46\x00\x43\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x5d\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\ +\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x49\x46\x43\ +\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\x69\x6d\x70\x6f\x72\x74\ +\x65\x72\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x75\x73\x65\x64\x2c\ +\x20\x61\x6c\x6c\x6f\x77\x69\x6e\x67\x20\x74\x6f\x20\x69\x6d\x70\ +\x6f\x72\x74\x20\x6d\x6f\x72\x65\x20\x49\x46\x43\x20\x74\x79\x70\ +\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x58\x00\x49\x00\x6d\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x00\x61\x00\x72\x00\x20\x00\x6d\x00\xf3\x00\ +\x76\x00\x65\x00\x69\x00\x73\x00\x20\x00\x28\x00\x6f\x00\x20\x00\ +\x6d\x00\x6f\x00\x64\x00\x65\x00\x6c\x00\x6f\x00\x20\x00\x70\x00\ +\x6f\x00\x64\x00\x65\x00\x20\x00\x66\x00\x69\x00\x63\x00\x61\x00\ +\x72\x00\x20\x00\x70\x00\x65\x00\x73\x00\x61\x00\x64\x00\x6f\x00\ +\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\x6d\x70\x6f\x72\ +\x74\x20\x66\x75\x72\x6e\x69\x74\x75\x72\x65\x20\x28\x63\x61\x6e\ +\x20\x6d\x61\x6b\x65\x20\x74\x68\x65\x20\x6d\x6f\x64\x65\x6c\x20\ +\x68\x65\x61\x76\x79\x29\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x74\x00\x4d\x00\ +\x6f\x00\x73\x00\x74\x00\x72\x00\x61\x00\x72\x00\x20\x00\x69\x00\ +\x6e\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\xe7\x00\xf5\x00\ +\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\x00\x65\x00\ +\x70\x00\x75\x00\x72\x00\x61\x00\xe7\x00\xe3\x00\x6f\x00\x20\x00\ +\x64\x00\x75\x00\x72\x00\x61\x00\x6e\x00\x74\x00\x65\x00\x20\x00\ +\x61\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\ +\x69\x00\x7a\x00\x61\x00\xe7\x00\xe3\x00\x6f\x00\x20\x00\x32\x00\ +\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x53\x68\x6f\x77\x20\ +\x64\x65\x62\x75\x67\x20\x69\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\ +\x6e\x20\x64\x75\x72\x69\x6e\x67\x20\x32\x44\x20\x72\x65\x6e\x64\ +\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5c\x00\x4d\x00\x6f\ +\x00\x73\x00\x74\x00\x72\x00\x61\x00\x72\x00\x20\x00\x6d\x00\x65\ +\x00\x6e\x00\x73\x00\x61\x00\x67\x00\x65\x00\x6e\x00\x73\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x64\x00\x65\x00\x70\x00\x75\x00\x72\ +\x00\x61\x00\xe7\x00\xe3\x00\x6f\x00\x20\x00\x64\x00\x6f\x00\x20\ +\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x69\x00\x7a\ +\x00\x61\x00\x64\x00\x6f\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1c\x53\x68\x6f\x77\x20\x72\x65\x6e\x64\x65\x72\x65\x72\x20\ +\x64\x65\x62\x75\x67\x20\x6d\x65\x73\x73\x61\x67\x65\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\xb4\x00\x45\x00\x73\x00\x70\x00\x65\x00\x63\x00\ +\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x20\x00\x71\x00\x75\x00\ +\x61\x00\x6e\x00\x74\x00\x61\x00\x73\x00\x20\x00\x76\x00\x65\x00\ +\x7a\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x65\x00\x73\x00\ +\x70\x00\x65\x00\x73\x00\x73\x00\x75\x00\x72\x00\x61\x00\x20\x00\ +\x64\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x68\x00\x61\x00\ +\x20\x00\x76\x00\x69\x00\x73\x00\x74\x00\x61\x00\x20\x00\x64\x00\ +\x65\x00\x76\x00\x65\x00\x20\x00\x73\x00\x65\x00\x72\x00\x20\x00\ +\x61\x00\x70\x00\x6c\x00\x69\x00\x63\x00\x61\x00\x64\x00\x61\x00\ +\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x68\x00\x61\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x63\x00\x6f\x00\x72\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x4f\x53\x70\x65\x63\x69\x66\x69\x65\x73\x20\x68\x6f\x77\ +\x20\x6d\x61\x6e\x79\x20\x74\x69\x6d\x65\x73\x20\x74\x68\x65\x20\ +\x76\x69\x65\x77\x65\x64\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\ +\x6b\x6e\x65\x73\x73\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x70\ +\x70\x6c\x69\x65\x64\x20\x74\x6f\x20\x63\x75\x74\x20\x6c\x69\x6e\ +\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x66\x00\x45\x00\x73\x00\x74\x00\ +\x61\x00\x20\x00\xe9\x00\x20\x00\x61\x00\x20\x00\x63\x00\x6f\x00\ +\x72\x00\x20\x00\x70\x00\x61\x00\x64\x00\x72\x00\xe3\x00\x6f\x00\ +\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\ +\x76\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x74\x00\x6f\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x65\x00\ +\x73\x00\x74\x00\x72\x00\x75\x00\x74\x00\x75\x00\x72\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x33\x54\x68\x69\x73\x20\x69\x73\ +\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ +\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x53\x74\x72\x75\x63\ +\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x4c\x00\x45\x00\x73\x00\x74\x00\x61\x00\x20\x00\xe9\x00\ +\x20\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x72\x00\x20\x00\x70\x00\ +\x61\x00\x64\x00\x72\x00\xe3\x00\x6f\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x76\x00\x61\x00\x73\x00\ +\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x64\x00\x65\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x54\x68\x69\x73\x20\x69\x73\ +\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ +\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x57\x61\x6c\x6c\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x55\ +\x00\x73\x00\x61\x00\x72\x00\x20\x00\x49\x00\x46\x00\x43\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\ +\x00\x20\x00\x73\x00\x65\x00\x20\x00\x64\x00\x69\x00\x73\x00\x70\ +\x00\x6f\x00\x6e\x00\xed\x00\x76\x00\x65\x00\x6c\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1d\x55\x73\x65\x20\x49\x46\x43\x4f\x70\x65\ +\x6e\x53\x68\x65\x6c\x6c\x20\x69\x66\x20\x61\x76\x61\x69\x6c\x61\ +\x62\x6c\x65\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x26\x00\x20\x00\x41\ +\x00\x72\x00\x71\x00\x75\x00\x69\x00\x74\x00\x65\x00\x74\x00\x75\ +\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x26\x41\ +\x72\x63\x68\x69\x74\x65\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\ +\x61\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x26\x00\x44\x00\x72\ +\x00\x61\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x26\x44\x72\x61\x66\x74\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ +\x03\x00\x00\x00\x24\x00\x46\x00\x65\x00\x72\x00\x72\x00\x61\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x73\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x41\x00\x72\x00\x71\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0a\x41\x72\x63\x68\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\ +\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x2c\x00\x46\x00\x65\ +\x00\x72\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x61\ +\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\xe1\x00\x6c\ +\x00\x63\x00\x75\x00\x6c\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x11\x43\x61\x6c\x63\x75\x6c\x61\x74\x69\x6f\x6e\x20\x54\x6f\ +\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\ +\x00\x2e\x00\x46\x00\x65\x00\x72\x00\x72\x00\x61\x00\x6d\x00\x65\ +\x00\x6e\x00\x74\x00\x61\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x65\x00\x78\x00\x74\x00\x6f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x74\x65\x78\ +\x74\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\ +\x01\x03\x00\x00\x00\x30\x00\x46\x00\x65\x00\x72\x00\x72\x00\x61\ +\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x73\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\ +\x00\x73\x00\xe3\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x43\x6f\x6e\x76\x65\x72\x73\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\ +\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x46\x00\ +\x46\x00\x65\x00\x72\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x61\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6d\x00\ +\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\xe7\x00\ +\xe3\x00\x6f\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x44\x00\x72\x00\ +\x61\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x44\ +\x72\x61\x66\x74\x20\x6d\x6f\x64\x20\x74\x6f\x6f\x6c\x73\x07\x00\ +\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x46\x00\ +\x65\x00\x72\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x61\x00\x73\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x72\x00\x61\x00\ +\x73\x00\x63\x00\x75\x00\x6e\x00\x68\x00\x6f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\ +\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x78\x00\ +\x70\x00\x79\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\ +\x61\x00\x20\x00\x6e\x00\xe3\x00\x6f\x00\x20\x00\x65\x00\x6e\x00\ +\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x64\x00\x6f\x00\ +\x2c\x00\x20\x00\x6f\x00\x20\x00\x73\x00\x75\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\ +\x61\x00\x64\x00\x61\x00\x20\x00\x73\x00\x65\x00\x72\x00\xe1\x00\ +\x20\x00\x64\x00\x65\x00\x73\x00\x61\x00\x74\x00\x69\x00\x76\x00\ +\x61\x00\x64\x00\x6f\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x37\x70\x79\x63\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\ +\x6f\x75\x6e\x64\x2c\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\ +\x70\x70\x6f\x72\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x69\ +\x73\x61\x62\x6c\x65\x64\x2e\x0a\x07\x00\x00\x00\x04\x61\x72\x63\ +\x68\x01\ \x00\x00\x0e\xf2\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ @@ -252,388 +12247,3691 @@ qt_resource_data = "\ \x00\x00\x00\x04\x5d\xe5\x51\x77\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x05\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\ \x01\ -\x00\x00\x17\xba\ +\x00\x00\x4a\xd1\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ -\x00\x00\x01\x50\x00\x04\x9c\x2c\x00\x00\x02\xf5\x00\x05\xa0\xa5\ -\x00\x00\x0c\x23\x00\x05\xd8\x2c\x00\x00\x10\x23\x00\x39\xdf\x33\ -\x00\x00\x13\x56\x00\x4b\x87\xd4\x00\x00\x15\xc0\x00\x4d\x36\x62\ -\x00\x00\x04\xbf\x00\x5b\x66\x33\x00\x00\x16\x22\x00\x62\x9b\xa8\ -\x00\x00\x0c\x4f\x00\xfb\x72\xf3\x00\x00\x12\xe0\x01\xf7\xa8\x83\ -\x00\x00\x14\x8f\x02\x5f\xc9\x59\x00\x00\x0e\xf3\x02\x90\x40\x65\ -\x00\x00\x05\xa4\x02\xb8\xae\x74\x00\x00\x05\xfe\x02\xcd\x05\xa3\ -\x00\x00\x04\xed\x02\xdd\x14\x14\x00\x00\x06\x50\x02\xe5\xaa\xe4\ -\x00\x00\x00\x8d\x03\x1d\xe8\xe3\x00\x00\x11\xc9\x03\xd4\x22\x74\ -\x00\x00\x00\xd8\x04\xdb\x21\x3e\x00\x00\x0b\x52\x05\x18\xda\xa3\ -\x00\x00\x03\xef\x05\xe0\x4b\x67\x00\x00\x11\x99\x06\x32\xe3\xe3\ -\x00\x00\x15\xe8\x07\x60\x23\xf3\x00\x00\x00\x00\x09\x13\xce\x39\ -\x00\x00\x10\x4b\x09\xba\xe6\x35\x00\x00\x0e\xb5\x09\xe3\x98\xe4\ -\x00\x00\x01\x2a\x09\xed\x98\x55\x00\x00\x09\x56\x0a\x7f\xee\xa3\ -\x00\x00\x15\x4c\x0b\x51\x30\xa8\x00\x00\x07\x6e\x0b\x65\xda\xb3\ -\x00\x00\x12\x5c\x0b\x8d\x97\x93\x00\x00\x13\xc1\x0b\xb9\xe8\x93\ -\x00\x00\x07\xe5\x0b\xc4\xb1\x23\x00\x00\x03\x21\x0b\xe2\xc4\x04\ -\x00\x00\x08\xa9\x0c\x02\xac\xd7\x00\x00\x01\xe4\x0c\x25\x3e\x53\ -\x00\x00\x0a\x27\x0c\x4e\x9b\x23\x00\x00\x09\x99\x0d\x1e\xda\xa4\ -\x00\x00\x00\x37\x0d\x3b\x3b\x49\x00\x00\x0d\x4d\x0e\x32\x23\x85\ -\x00\x00\x15\x83\x0e\x8c\xd7\x43\x00\x00\x0c\x94\x0e\xec\x0b\x9e\ -\x00\x00\x02\x1a\x69\x00\x00\x16\x50\x03\x00\x00\x00\x14\x00\xd6\ -\x00\x73\x00\x73\x00\x7a\x00\x65\x00\x74\x00\x65\x00\x76\x01\x51\ -\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\x6d\x70\ -\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ -\x03\x00\x00\x00\x24\x00\x41\x00\x7a\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x20\x00\x65\x00\ -\x6c\x00\x65\x00\x6d\x00\x65\x00\x69\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\xf8\x00\x00\x47\xa4\x00\x00\x00\x49\x00\x04\x8e\xc3\ +\x00\x00\x01\x6b\x00\x04\x8f\x03\x00\x00\x02\x1e\x00\x04\x8f\x03\ +\x00\x00\x25\xf4\x00\x04\x9c\x2c\x00\x00\x27\x7c\x00\x04\xbb\x04\ +\x00\x00\x07\xd2\x00\x05\x48\x35\x00\x00\x0c\xe1\x00\x05\x67\xd5\ +\x00\x00\x0f\x17\x00\x05\x96\x56\x00\x00\x0f\x69\x00\x05\x96\x56\ +\x00\x00\x2f\x20\x00\x05\xa0\xa5\x00\x00\x0f\x8e\x00\x05\xa0\xa5\ +\x00\x00\x32\xc3\x00\x05\xc0\x65\x00\x00\x1d\x69\x00\x05\xd8\x2c\ +\x00\x00\x1e\xfc\x00\x05\xd8\x2c\x00\x00\x36\x9d\x00\x32\x23\xa5\ +\x00\x00\x43\x08\x00\x39\xdf\x33\x00\x00\x3b\x6b\x00\x48\x4e\x25\ +\x00\x00\x01\x43\x00\x49\xeb\x9b\x00\x00\x28\x54\x00\x4b\x55\x33\ +\x00\x00\x3c\x95\x00\x4d\x36\x62\x00\x00\x0a\x2f\x00\x4d\x36\x62\ +\x00\x00\x2a\xc4\x00\x5d\xfb\xa8\x00\x00\x1f\x96\x00\x5e\x08\xc3\ +\x00\x00\x1f\xef\x00\x61\xb0\x33\x00\x00\x16\xdd\x00\x62\x9b\xa8\ +\x00\x00\x10\x17\x00\x62\x9b\xa8\x00\x00\x32\xed\x00\x8a\x92\x57\ +\x00\x00\x00\x00\x00\xaa\x80\x25\x00\x00\x07\x25\x00\xc9\x7b\xf3\ +\x00\x00\x12\xd0\x00\xfb\x72\xf3\x00\x00\x3a\xfb\x01\x19\x4e\x85\ +\x00\x00\x05\xaf\x01\x55\x2b\xf5\x00\x00\x05\x20\x01\x79\x17\x94\ +\x00\x00\x22\xb8\x01\x8e\x84\xa6\x00\x00\x11\x8c\x01\xad\x7d\xe3\ +\x00\x00\x44\x81\x01\xaf\x41\x84\x00\x00\x21\xa4\x01\xf7\xa8\x83\ +\x00\x00\x41\xc5\x02\x01\x7f\xd3\x00\x00\x10\x82\x02\x29\xb3\xc4\ +\x00\x00\x2e\x57\x02\x5a\x4a\x53\x00\x00\x15\xfb\x02\x5f\xc9\x59\ +\x00\x00\x35\x7d\x02\x66\x7f\x7e\x00\x00\x0d\xcb\x02\x6a\x77\x99\ +\x00\x00\x3d\xdd\x02\x80\x5f\x17\x00\x00\x23\x89\x02\x82\x88\x3a\ +\x00\x00\x04\x3c\x02\x85\x4f\xf5\x00\x00\x19\x63\x02\x90\x40\x65\ +\x00\x00\x0c\xa1\x02\x90\x40\x65\x00\x00\x2a\xf2\x02\x94\x16\x35\ +\x00\x00\x10\xbf\x02\xab\x87\xd4\x00\x00\x43\x48\x02\xb8\xae\x74\ +\x00\x00\x2b\xea\x02\xc3\x91\x93\x00\x00\x3f\x58\x02\xcd\x05\xa3\ +\x00\x00\x2b\x3e\x02\xdd\x14\x14\x00\x00\x2c\x3a\x03\x13\x15\x3e\ +\x00\x00\x0b\x4d\x03\x1b\xda\x15\x00\x00\x1f\x62\x03\x1d\xe8\xe3\ +\x00\x00\x39\x84\x03\x29\x7a\x34\x00\x00\x00\xd9\x03\x2c\xe9\xb3\ +\x00\x00\x17\x44\x03\x92\x51\xe0\x00\x00\x0f\xb3\x03\xa2\xec\x23\ +\x00\x00\x1f\x25\x03\xbe\xb0\x34\x00\x00\x1e\x30\x03\xce\x98\xe5\ +\x00\x00\x03\xc6\x03\xd4\x22\x74\x00\x00\x25\x00\x04\x35\xfa\x55\ +\x00\x00\x12\x45\x04\xc3\x75\x44\x00\x00\x19\xb8\x04\xdb\x21\x3e\ +\x00\x00\x32\x08\x04\xeb\xfd\xf4\x00\x00\x0a\x88\x05\x14\x5b\x83\ +\x00\x00\x07\x56\x05\x18\xda\xa3\x00\x00\x2a\x12\x05\x5f\x3d\x83\ +\x00\x00\x3a\x7f\x05\x8c\x46\xc5\x00\x00\x0f\x3c\x05\x90\xba\xe3\ +\x00\x00\x0e\xe9\x05\xc0\x56\xe3\x00\x00\x3f\xdd\x05\xc7\xeb\xc7\ +\x00\x00\x3e\x8f\x05\xe0\x4b\x67\x00\x00\x1f\xbe\x05\xe0\x4b\x67\ +\x00\x00\x37\xc9\x05\xef\x78\x4a\x00\x00\x22\xf5\x06\x1f\x6f\xa4\ +\x00\x00\x21\x04\x06\x32\xe3\xe3\x00\x00\x44\xc7\x06\x5b\x01\x15\ +\x00\x00\x03\x95\x06\x69\xd0\x04\x00\x00\x20\x9a\x06\x9f\x6f\xd4\ +\x00\x00\x06\xc7\x06\xd6\x3f\xa4\x00\x00\x22\x78\x06\xe6\x2f\x43\ +\x00\x00\x11\xe7\x07\x00\xcc\xc4\x00\x00\x3c\x46\x07\x07\x84\xba\ +\x00\x00\x45\x01\x07\x08\x43\x0e\x00\x00\x26\x1e\x07\x16\x58\x05\ +\x00\x00\x38\x50\x07\x25\x74\x53\x00\x00\x29\x19\x07\x28\xff\x15\ +\x00\x00\x0d\x55\x07\x36\x51\x26\x00\x00\x13\xb2\x07\x5c\xdc\x04\ +\x00\x00\x20\x17\x07\x60\x23\xf3\x00\x00\x02\xfa\x07\xca\xf8\x87\ +\x00\x00\x38\x01\x08\x25\x81\xc4\x00\x00\x06\x72\x08\x4a\x45\xd9\ +\x00\x00\x36\xcb\x08\x65\x4c\x95\x00\x00\x1b\xec\x08\xc5\xe3\x35\ +\x00\x00\x1b\x37\x08\xca\xc9\x74\x00\x00\x14\xda\x08\xfb\xb8\xa4\ +\x00\x00\x09\xc8\x09\x69\xac\xa7\x00\x00\x1e\x97\x09\x6c\x6c\xa7\ +\x00\x00\x0a\x57\x09\x9f\xcc\xde\x00\x00\x22\x08\x09\xba\xe6\x35\ +\x00\x00\x10\x4e\x09\xba\xe6\x35\x00\x00\x35\x3f\x09\xc5\xbe\xca\ +\x00\x00\x09\x28\x09\xe3\x98\xe4\x00\x00\x25\x44\x09\xed\x98\x55\ +\x00\x00\x30\x2a\x0a\x3e\x06\x83\x00\x00\x04\xac\x0a\x3f\x1f\xd6\ +\x00\x00\x04\xe6\x0a\x3f\x2b\x25\x00\x00\x05\x75\x0a\x3f\x5d\xac\ +\x00\x00\x05\xf8\x0a\x7f\xee\xa3\x00\x00\x43\x75\x0a\xb6\xc8\x9a\ +\x00\x00\x0a\xb3\x0a\xbf\x46\x0e\x00\x00\x1d\x8c\x0a\xd6\x07\x84\ +\x00\x00\x20\x48\x0b\x0a\xc3\xf3\x00\x00\x00\x71\x0b\x51\x30\xa8\ +\x00\x00\x2d\x50\x0b\x65\xda\xb3\x00\x00\x3a\x09\x0b\x8d\x97\x93\ +\x00\x00\x40\xfb\x0b\x9c\x5b\xe7\x00\x00\x08\x8b\x0b\xb9\xe8\x93\ +\x00\x00\x2d\xb7\x0b\xc4\xb1\x23\x00\x00\x27\xa6\x0c\x02\xac\xd7\ +\x00\x00\x02\xc9\x0c\x02\xac\xd7\x00\x00\x26\x81\x0c\x25\x3e\x53\ +\x00\x00\x30\xf3\x0c\x3c\x8b\x33\x00\x00\x43\xac\x0c\x41\x0a\x83\ +\x00\x00\x43\xf8\x0c\x4e\x9b\x23\x00\x00\x30\x77\x0c\x98\x80\x23\ +\x00\x00\x44\x38\x0c\xc4\xd0\x80\x00\x00\x24\x38\x0c\xdf\x5a\x1e\ +\x00\x00\x01\x90\x0c\xfc\x97\x06\x00\x00\x1e\xce\x0d\x03\x26\xb4\ +\x00\x00\x02\x86\x0d\x08\x90\xf3\x00\x00\x1a\xca\x0d\x1e\xda\xa4\ +\x00\x00\x03\x31\x0d\x3b\x3b\x49\x00\x00\x33\xf5\x0d\xa8\x3a\x35\ +\x00\x00\x17\x9f\x0d\xc1\x7d\x47\x00\x00\x24\x90\x0d\xfa\x53\xe5\ +\x00\x00\x07\xfd\x0e\x69\x87\x13\x00\x00\x2f\x4a\x0e\x8c\xd7\x43\ +\x00\x00\x33\x2e\x0e\x98\x0a\xd6\x00\x00\x1d\xd2\x0e\xab\x8d\x1f\ +\x00\x00\x38\xf9\x0e\xb9\x1b\xf2\x00\x00\x14\x79\x0e\xec\x0b\x9e\ +\x00\x00\x26\xbb\x0f\x16\x4a\x24\x00\x00\x1c\xf9\x0f\x17\xc7\xa3\ +\x00\x00\x28\x82\x0f\x55\xc1\x57\x00\x00\x06\x32\x0f\x78\x41\x05\ +\x00\x00\x42\x80\x0f\x79\xe3\xf3\x00\x00\x29\x5e\x0f\x95\xd5\x09\ +\x00\x00\x18\x57\x0f\xa2\x16\x43\x00\x00\x1c\xc5\x0f\xc0\xb8\xb4\ +\x00\x00\x0d\x06\x0f\xd0\x39\x44\x00\x00\x02\x43\x0f\xe5\x74\x74\ +\x00\x00\x00\xa5\x0f\xf3\xe8\x33\x00\x00\x3b\xca\x69\x00\x00\x45\ +\xbf\x03\x00\x00\x00\x20\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x42\x00\x75\x00\x69\x00\x6c\x00\x64\ +\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x20\x43\x72\x65\x61\x74\x65\x20\x42\x75\x69\x6c\x64\x69\x6e\x67\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\ +\x41\x00\x64\x00\x61\x00\x75\x00\x67\x01\x03\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x03\x41\x64\x64\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x12\x00\x41\x00\x64\x00\x64\x00\x69\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x41\x64\x64\x69\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x41\x00\x6c\x00\ +\x69\x00\x67\x00\x6e\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x41\x6c\x69\x67\x6e\x6d\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x36\x00\ +\x41\x00\x6c\x00\x6c\x00\x20\x00\x67\x00\x6f\x00\x6f\x00\x64\x00\ +\x21\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x62\x00\x6c\x00\x65\x00\x6d\x00\x73\x00\x20\x00\x66\x00\x6f\x00\ +\x75\x00\x6e\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x41\ +\x6c\x6c\x20\x67\x6f\x6f\x64\x21\x20\x6e\x6f\x20\x70\x72\x6f\x62\ +\x6c\x65\x6d\x73\x20\x66\x6f\x75\x6e\x64\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x41\x00\x6e\x00\x67\x00\ +\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x6e\x67\ +\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x08\x00\x41\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x41\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x4e\x00\x41\x00\x78\x00\x65\x00\x73\x00\x20\ +\x00\x73\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x73\x00\x20\ +\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\x00\x74\x00\x72\ +\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x69\ +\x00\x73\x00\x20\x00\x62\x00\x75\x00\x69\x00\x6c\x00\x74\x00\x20\ +\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x41\x78\ +\x65\x73\x20\x73\x79\x73\x74\x65\x6d\x73\x20\x74\x68\x69\x73\x20\ +\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x69\x73\x20\x62\x75\x69\ +\x6c\x74\x20\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x08\x00\x41\x00\x78\x00\x69\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x41\x78\x69\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x00\x42\x00\x61\x00\x73\x00\ +\x65\x00\x20\x00\x32\x00\x44\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x42\ +\x61\x73\x65\x20\x32\x44\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x00\x42\x00\x61\ +\x00\x73\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\ +\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0e\x42\x61\x73\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\ +\x42\x00\x75\x00\x69\x00\x6c\x00\x64\x00\x69\x00\x6e\x00\x67\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\ +\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\ +\x00\x43\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ +\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x32\x00\x43\x00\x6f\x00\x6d\x00\x70\x00\ +\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x19\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\ \x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ -\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x26\x00\x47\x00\x79\x00\ -\x65\x00\x72\x00\x65\x00\x6b\x00\x20\x00\x6c\x00\x65\x00\x76\x00\ -\xe1\x00\x6c\x00\x61\x00\x73\x00\x7a\x00\x74\x00\xe1\x00\x73\x00\ -\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x52\x65\x6d\x6f\x76\ -\x65\x20\x63\x68\x69\x6c\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\ -\x01\x03\x00\x00\x00\x28\x00\xd6\x00\x73\x00\x73\x00\x7a\x00\x65\ -\x00\x74\x00\x65\x00\x76\x01\x51\x00\x20\x00\x68\x00\x6f\x00\x7a\ -\x00\x7a\x00\xe1\x00\x61\x00\x64\x00\xe1\x00\x73\x00\x61\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\x63\x6f\x6d\x70\ -\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\ -\x64\x64\x01\x03\x00\x00\x00\x6c\x00\x41\x00\x20\x00\x6b\x00\x69\ -\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x74\x00\x20\x00\xf6\ -\x00\x73\x00\x73\x00\x7a\x00\x65\x00\x74\x00\x65\x00\x76\x01\x51\ -\x00\x6b\x00\x65\x00\x74\x00\x20\x00\x68\x00\x6f\x00\x7a\x00\x7a\ -\x00\xe1\x00\x61\x00\x64\x00\x6a\x00\x61\x00\x20\x00\x61\x00\x7a\ -\x00\x20\x00\x61\x00\x6b\x00\x74\x00\xed\x00\x76\x00\x20\x00\x6f\ -\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x68\ -\x00\x6f\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x41\x64\ -\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ -\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\ -\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\ -\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\ -\x00\x0c\x00\xc9\x00\x70\x00\xfc\x00\x6c\x00\x65\x00\x74\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\ -\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\ -\x6e\x67\x01\x03\x00\x00\x00\x84\x00\x4c\x00\xe9\x00\x74\x00\x72\ -\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\x20\x00\x65\x00\x67\x00\x79\ -\x00\x20\x00\xe9\x00\x70\x00\xfc\x00\x6c\x00\x65\x00\x74\x00\x20\ -\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\ -\x00\x6f\x00\x74\x00\x2c\x00\x20\x00\x62\x00\x65\x00\x6c\x00\x65\ -\x00\xe9\x00\x72\x00\x74\x00\x76\x00\x65\x00\x20\x00\x61\x00\x20\ -\x00\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x74\ -\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\ -\x00\x6d\x00\x6f\x00\x6b\x00\x61\x00\x74\x00\x2e\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x35\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ -\x62\x75\x69\x6c\x64\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x20\ -\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\ -\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x0d\ -\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\ -\x00\x00\x0a\x00\x43\x00\x65\x00\x6c\x00\x6c\x00\x61\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x04\x43\x65\x6c\x6c\x07\x00\x00\x00\x09\ -\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x80\x00\ -\x4c\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\ -\x20\x00\x65\x00\x67\x00\x79\x00\x20\x00\x63\x00\x65\x00\x6c\x00\ -\x6c\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ -\x74\x00\x75\x00\x6d\x00\x6f\x00\x74\x00\x2c\x00\x20\x00\x62\x00\ -\x65\x00\x6c\x00\x65\x00\xe9\x00\x72\x00\x74\x00\x76\x00\x65\x00\ -\x20\x00\x61\x00\x20\x00\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\ -\xf6\x00\x6c\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x6b\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x6b\x00\x61\x00\x74\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\ -\x20\x61\x20\x63\x65\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x43\x00\x6f\x00\ +\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x43\x6f\x6e\x74\x69\x6e\x75\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x43\x00\x6f\ +\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x75\x00\x74\x00\x65\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\ +\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1f\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x63\x6f\x6d\ +\x70\x75\x74\x65\x20\x74\x68\x65\x20\x77\x61\x6c\x6c\x20\x73\x68\ +\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x3a\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\ +\x00\x74\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x74\x00\x65\ +\x00\x20\x00\x49\x00\x66\x00\x63\x00\x4f\x00\x70\x00\x65\x00\x6e\ +\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x0a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1d\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x6c\ +\x6f\x63\x61\x74\x65\x20\x49\x66\x63\x4f\x70\x65\x6e\x53\x68\x65\ +\x6c\x6c\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x16\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\ +\x00\x41\x00\x78\x00\x69\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x41\x78\x69\x73\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x52\x00\x6f\x00\x6f\ +\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\ +\x74\x65\x20\x52\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x28\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\ +\x00\x65\x00\x20\x00\x53\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x6e\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\x74\x65\x20\x53\ +\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x43\x00\x72\x00\ +\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\x69\x00\x74\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\ +\x65\x20\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\ +\x65\x00\x20\x00\x53\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\ +\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\ +\x72\x65\x61\x74\x65\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x43\ +\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x57\x00\x61\ +\x00\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\ +\x65\x61\x74\x65\x20\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x57\x00\x69\x00\x6e\x00\x64\x00\x6f\ +\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x72\x65\x61\ +\x74\x65\x20\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x28\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\x74\x65\ +\x20\x6e\x65\x77\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x43\x00\ +\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x2f\x00\x75\x00\x70\x00\ +\x64\x00\x61\x00\x74\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\ +\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x17\x43\x72\x65\x61\x74\x65\x2f\x75\x70\x64\x61\ +\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x44\x00\x69\x00\ +\x73\x00\x74\x00\x61\x00\x6e\x00\x63\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x42\x00\x44\x00\x69\ +\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x63\x00\x65\x00\x73\x00\x20\ +\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\ +\x00\x65\x00\x73\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\ +\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x21\x44\x69\x73\x74\x61\x6e\x63\x65\ +\x73\x20\x61\x6e\x64\x20\x61\x6e\x67\x6c\x65\x73\x20\x62\x65\x74\ +\x77\x65\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x45\x00\x64\x00\x69\x00\x74\ +\x00\x61\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x45\x64\x69\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x4e\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x20\x00\ +\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x74\x00\x65\x00\ +\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x77\x00\ +\x61\x00\x6c\x00\x6c\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x45\x72\x72\x6f\x72\ +\x20\x72\x65\x6d\x6f\x76\x69\x6e\x67\x20\x73\x70\x6c\x69\x74\x74\ +\x65\x72\x20\x66\x72\x6f\x6d\x20\x77\x61\x6c\x6c\x20\x73\x68\x61\ +\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x58\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\ +\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\ +\x20\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\ +\x6e\x00\x65\x00\x20\x00\x63\x00\x68\x00\x61\x00\x72\x00\x61\x00\ +\x63\x00\x74\x00\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x63\x00\ +\x6f\x00\x64\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2c\x45\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\x6e\ +\x27\x74\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\x61\ +\x72\x61\x63\x74\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5a\x00\x45\ +\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x43\x00\x6f\ +\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x64\ +\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x65\ +\x00\x20\x00\x63\x00\x68\x00\x61\x00\x72\x00\x61\x00\x63\x00\x74\ +\x00\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\x64\ +\x00\x69\x00\x6e\x00\x67\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x2d\x45\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\x6e\x27\ +\x74\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\x61\x72\ +\x61\x63\x74\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x0a\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\x45\ +\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x49\x00\x6e\ +\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x20\x00\x62\x00\x61\ +\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x45\x72\x72\x6f\ +\x72\x3a\x20\x49\x6e\x76\x61\x6c\x69\x64\x20\x62\x61\x73\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x0a\x00\x46\x00\x6c\x00\x6f\x00\x6f\x00\x72\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x47\x00\ +\x72\x00\x6f\x00\x75\x00\x70\x00\x69\x00\x6e\x00\x67\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x47\x72\x6f\x75\x70\x69\x6e\x67\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x48\ +\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x48\x65\x69\x67\x68\x74\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x56\x00\x49\x00\x46\x00\x43\x00\ +\x20\x00\x53\x00\x63\x00\x68\x00\x65\x00\x6d\x00\x61\x00\x20\x00\ +\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\x6f\x00\x75\x00\x6e\x00\ +\x64\x00\x2c\x00\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\x69\x00\ +\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x64\x00\x69\x00\ +\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x64\x00\x2e\x00\x0a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\x46\x43\x20\x53\x63\x68\ +\x65\x6d\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x49\ +\x46\x43\x20\x69\x6d\x70\x6f\x72\x74\x20\x64\x69\x73\x61\x62\x6c\ +\x65\x64\x2e\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\xd2\x00\x49\x00\x66\x00\x20\x00\x54\x00\x72\x00\x75\x00\ +\x65\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\ +\x69\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\ +\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\ +\x63\x00\x65\x00\x2c\x00\x20\x00\x69\x00\x74\x00\x20\x00\x77\x00\ +\x69\x00\x6c\x00\x6c\x00\x20\x00\x75\x00\x73\x00\x65\x00\x20\x00\ +\x69\x00\x74\x00\x73\x00\x20\x00\x62\x00\x6f\x00\x72\x00\x64\x00\ +\x65\x00\x72\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x20\x00\ +\x61\x00\x73\x00\x20\x00\x74\x00\x72\x00\x61\x00\x63\x00\x65\x00\ +\x2c\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x64\x00\x69\x00\ +\x73\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\ +\x72\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x66\x00\x61\x00\ +\x63\x00\x65\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x69\x49\ +\x66\x20\x54\x72\x75\x65\x2c\x20\x69\x66\x20\x74\x68\x69\x73\x20\ +\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\ +\x20\x61\x20\x66\x61\x63\x65\x2c\x20\x69\x74\x20\x77\x69\x6c\x6c\ +\x20\x75\x73\x65\x20\x69\x74\x73\x20\x62\x6f\x72\x64\x65\x72\x20\ +\x77\x69\x72\x65\x20\x61\x73\x20\x74\x72\x61\x63\x65\x2c\x20\x61\ +\x6e\x64\x20\x64\x69\x73\x63\x6f\x6e\x73\x69\x64\x65\x72\x20\x74\ +\x68\x65\x20\x66\x61\x63\x65\x2e\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x1a\x00\x4d\x00\x65\x00\x73\x00\x68\x00\ +\x20\x00\x74\x00\x6f\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\ +\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x08\x00\x4e\x00\x75\x00\x6d\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\x61\x6d\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x24\x00\x4e\x00\x6f\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\ +\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4e\x6f\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x4e\x00\x6f\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\ +\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x63\x00\x75\x00\x74\x00\ +\x20\x00\x62\x00\x79\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1f\x4e\x6f\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x72\ +\x65\x20\x63\x75\x74\x20\x62\x79\x20\x74\x68\x65\x20\x70\x6c\x61\ +\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\xba\x00\x4e\x00\x69\x00\x63\x00\x69\x00\x20\x00\x6f\x00\x20\x00\ +\x66\x00\x6f\x00\x72\x00\x6d\x01\x03\x00\x20\x00\x61\x00\x20\x00\ +\x66\x00\x6f\x00\x73\x00\x74\x00\x20\x00\x63\x00\x61\x00\x6c\x00\ +\x63\x00\x75\x00\x6c\x00\x61\x00\x74\x01\x03\x00\x20\x00\xee\x00\ +\x6e\x00\x63\x01\x03\x00\x2c\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x61\x01\x63\x00\x69\x00\x20\x00\x77\x00\ +\x69\x00\x72\x00\x65\x00\x66\x00\x72\x00\x61\x00\x6d\x00\x65\x00\ +\x2d\x00\x75\x00\x6c\x00\x20\x00\x70\x00\x65\x00\x6e\x00\x74\x00\ +\x72\x00\x75\x00\x20\x00\x72\x00\x65\x00\x64\x00\x61\x00\x72\x00\ +\x65\x00\x20\x01\x5f\x00\x69\x00\x20\x00\xee\x00\x6e\x00\x63\x00\ +\x65\x00\x72\x00\x63\x00\x61\x01\x63\x00\x69\x00\x20\x00\x64\x00\ +\x69\x00\x6e\x00\x20\x00\x6e\x00\x6f\x00\x75\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x4b\x4e\x6f\x20\x73\x68\x61\x70\x65\x20\x68\x61\ +\x73\x20\x62\x65\x65\x6e\x20\x63\x6f\x6d\x70\x75\x74\x65\x64\x20\ +\x79\x65\x74\x2c\x20\x73\x65\x6c\x65\x63\x74\x20\x77\x69\x72\x65\ +\x66\x72\x61\x6d\x65\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x20\ +\x61\x6e\x64\x20\x72\x65\x6e\x64\x65\x72\x20\x61\x67\x61\x69\x6e\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\ +\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x07\x4f\x62\x6a\x65\x63\x74\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x50\x00\ +\x61\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x50\ +\x61\x67\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0e\x00\x45\x00\x6c\x00\x69\x00\x6d\x00\x69\x00\x6e\x01\x03\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x65\x6d\x6f\x76\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\ +\x52\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x08\x00\x53\x00\x69\x00\x74\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x53\x00\x6b\x00\x69\x00\ +\x70\x00\x70\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x69\x00\x6e\x00\ +\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x3a\x00\x20\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x19\x53\x6b\x69\x70\x70\x69\x6e\x67\x20\x69\x6e\ +\x76\x61\x6c\x69\x64\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x53\x00\ +\x70\x00\x6c\x00\x69\x00\x74\x00\x20\x00\x4d\x00\x65\x00\x73\x00\ +\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\ +\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x12\x00\x53\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\ +\x00\x75\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x18\x00\x53\x00\x75\x00\x62\x00\x74\ +\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x75\x62\x74\x72\x61\ +\x63\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x78\x00\x54\x00\x68\x00\x65\x00\x20\x00\x61\x00\ +\x6c\x00\x69\x00\x67\x00\x6e\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x6e\x00\ +\x20\x00\x69\x00\x74\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\ +\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\x61\x00\x70\x00\x70\x00\ +\x6c\x00\x69\x00\x63\x00\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x3c\x54\x68\x65\x20\x61\x6c\x69\x67\x6e\ +\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\ +\x6c\x20\x6f\x6e\x20\x69\x74\x73\x20\x62\x61\x73\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x2c\x20\x69\x66\x20\x61\x70\x70\x6c\x69\x63\x61\ +\x62\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x2c\x00\x54\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x67\ +\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x72\x00\x6f\x00\x6f\x00\x66\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x16\x54\x68\x65\x20\x61\x6e\x67\x6c\ +\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x72\x6f\x6f\x66\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x54\x00\ +\x68\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\ +\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x65\x00\x61\x00\x63\x00\ +\x68\x00\x20\x00\x61\x00\x78\x00\x69\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x17\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\x73\x20\ +\x6f\x66\x20\x65\x61\x63\x68\x20\x61\x78\x69\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4c\x00\x54\x00\x68\x00\ +\x65\x00\x20\x00\x64\x00\x69\x00\x73\x00\x70\x00\x6c\x00\x61\x00\ +\x79\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\x00\ +\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\ +\x6c\x00\x61\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x26\x54\x68\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x73\x69\x7a\ +\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\ +\x6e\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x86\x00\x54\x00\x68\x00\x65\x00\x20\x00\x65\ +\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6e\ +\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x73\x00\x20\x00\x74\ +\x00\x6f\x00\x20\x00\x65\x00\x78\x00\x63\x00\x6c\x00\x75\x00\x64\ +\x00\x65\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\ +\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x69\x00\x73\ +\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\ +\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x43\x54\x68\x65\x20\x65\x6c\x65\x6d\x65\x6e\ +\x74\x20\x6e\x75\x6d\x62\x65\x72\x73\x20\x74\x6f\x20\x65\x78\x63\ +\x6c\x75\x64\x65\x20\x77\x68\x65\x6e\x20\x74\x68\x69\x73\x20\x73\ +\x74\x72\x75\x63\x74\x75\x72\x65\x20\x69\x73\x20\x62\x61\x73\x65\ +\x64\x20\x6f\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x74\x00\x54\x00\x68\x00\x65\x00\x20\ +\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6e\x00\x75\x00\x6d\ +\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x75\ +\x00\x73\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\ +\x00\x75\x00\x69\x00\x6c\x00\x64\x00\x20\x00\x74\x00\x68\x00\x69\ +\x00\x73\x00\x20\x00\x72\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x3a\x54\x68\x65\x20\x66\x61\x63\x65\x20\x6e\ +\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x74\x68\x65\x20\x62\x61\x73\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x75\x73\x65\x64\x20\x74\x6f\ +\x20\x62\x75\x69\x6c\x64\x20\x74\x68\x69\x73\x20\x72\x6f\x6f\x66\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x30\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x68\x00\x65\x00\x69\x00\x67\x00\ +\x68\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x66\x00\x6c\x00\x6f\x00\x6f\x00\x72\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x18\x54\x68\x65\x20\x68\x65\x69\ +\x67\x68\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x66\x6c\x6f\x6f\ +\x72\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xb0\ +\x00\x54\x00\x68\x00\x65\x00\x20\x00\x68\x00\x65\x00\x69\x00\x67\ +\x00\x68\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x2e\ +\x00\x20\x00\x4b\x00\x65\x00\x65\x00\x70\x00\x20\x00\x30\x00\x20\ +\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\ +\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x2e\x00\x20\x00\x4e\ +\x00\x6f\x00\x74\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\ +\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x73\x00\x20\ +\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\ +\x00\x20\x00\x61\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x58\x54\x68\x65\x20\x68\x65\ +\x69\x67\x68\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\ +\x6c\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\x20\x61\x75\ +\x74\x6f\x6d\x61\x74\x69\x63\x2e\x20\x4e\x6f\x74\x20\x75\x73\x65\ +\x64\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\ +\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x73\x6f\x6c\ +\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x86\x00\x54\x00\x68\x00\x65\x00\x20\x00\x68\x00\x65\x00\x69\x00\ +\x67\x00\x68\x00\x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x65\x00\ +\x78\x00\x74\x00\x72\x00\x75\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\ +\x20\x00\x64\x00\x65\x00\x70\x00\x74\x00\x68\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x65\x00\ +\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x20\x00\ +\x4b\x00\x65\x00\x65\x00\x70\x00\x20\x00\x30\x00\x20\x00\x66\x00\ +\x6f\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\ +\x61\x00\x74\x00\x69\x00\x63\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x43\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\x6f\x72\x20\x65\ +\x78\x74\x72\x75\x73\x69\x6f\x6e\x20\x64\x65\x70\x74\x68\x20\x6f\ +\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2e\x20\ +\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\ +\x61\x74\x69\x63\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x34\x00\x54\x00\x68\x00\x65\x00\x20\x00\x69\x00\x6e\x00\ +\x74\x00\x65\x00\x72\x00\x76\x00\x61\x00\x6c\x00\x73\x00\x20\x00\ +\x62\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\ +\x61\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1a\x54\x68\x65\x20\x69\x6e\x74\x65\x72\x76\x61\x6c\x73\x20\x62\ +\x65\x74\x77\x65\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2c\x00\x54\x00\x68\x00\x65\ +\x00\x20\x00\x6c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x00\x20\ +\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\ +\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\ +\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x74\x68\ +\x65\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x6a\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6c\x00\ +\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x65\x00\x6c\x00\ +\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2c\x00\x20\x00\x69\x00\ +\x66\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x62\x00\x61\x00\ +\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\ +\x20\x00\x70\x00\x72\x00\x6f\x00\x66\x00\x69\x00\x6c\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x35\x54\x68\x65\x20\x6c\x65\x6e\ +\x67\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\ +\x65\x6e\x74\x2c\x20\x69\x66\x20\x6e\x6f\x74\x20\x62\x61\x73\x65\ +\x64\x20\x6f\x6e\x20\x61\x20\x70\x72\x6f\x66\x69\x6c\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xa2\x00\x54\x00\ +\x68\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\ +\x6c\x00\x20\x00\x65\x00\x78\x00\x74\x00\x72\x00\x75\x00\x73\x00\ +\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x72\x00\x65\x00\ +\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\x66\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x28\x00\x6b\x00\x65\x00\ +\x65\x00\x70\x00\x20\x00\x28\x00\x30\x00\x2c\x00\x30\x00\x2c\x00\ +\x30\x00\x29\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\ +\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\ +\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x51\x54\x68\x65\x20\x6e\x6f\x72\ +\x6d\x61\x6c\x20\x65\x78\x74\x72\x75\x73\x69\x6f\x6e\x20\x64\x69\ +\x72\x65\x63\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x28\x6b\x65\x65\x70\x20\x28\x30\x2c\ +\x30\x2c\x30\x29\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\ +\x69\x63\x20\x6e\x6f\x72\x6d\x61\x6c\x29\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x54\x00\x68\x00\x65\x00\ +\x20\x00\x6e\x00\x75\x00\x6d\x00\x65\x00\x72\x00\x61\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x00\x20\x00\x73\x00\x74\x00\x79\x00\x6c\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\x20\x6e\ +\x75\x6d\x65\x72\x61\x74\x69\x6f\x6e\x20\x73\x74\x79\x6c\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xa6\x00\x54\ +\x00\x68\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x73\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\ +\x00\x6d\x00\x75\x00\x73\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\ +\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\ +\x00\x65\x00\x64\x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\ +\x00\x2e\x00\x20\x00\x45\x00\x6d\x00\x70\x00\x74\x00\x79\x00\x20\ +\x00\x6d\x00\x65\x00\x61\x00\x6e\x00\x73\x00\x20\x00\x61\x00\x6c\ +\x00\x6c\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\ +\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\x54\x68\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x74\x68\x61\x74\x20\x6d\ +\x75\x73\x74\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\ +\x64\x20\x62\x79\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\ +\x6e\x20\x70\x6c\x61\x6e\x65\x2e\x20\x45\x6d\x70\x74\x79\x20\x6d\ +\x65\x61\x6e\x73\x20\x61\x6c\x6c\x20\x64\x6f\x63\x75\x6d\x65\x6e\ +\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\ +\x00\x54\x00\x68\x00\x65\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x61\x00\x78\x00\x69\x00\x73\x00\x20\x00\x62\x00\x75\x00\x62\ +\x00\x62\x00\x6c\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1c\x54\x68\x65\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\x74\x68\ +\x65\x20\x61\x78\x69\x73\x20\x62\x75\x62\x62\x6c\x65\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x68\x00\x54\x00\ +\x68\x00\x65\x00\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\ +\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\ +\x6e\x00\x20\x00\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x66\x00\ +\x69\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x54\ +\x68\x65\x20\x77\x69\x64\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\ +\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\x6e\x6f\x74\ +\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\x72\x6f\x66\ +\x69\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x80\x00\x54\x00\x68\x00\x65\x00\x20\x00\x77\x00\x69\x00\x64\ +\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x2e\ +\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x20\x00\x75\x00\x73\x00\x65\ +\x00\x64\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\ +\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\ +\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\ +\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x40\x54\x68\x65\x20\ +\x77\x69\x64\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\ +\x6c\x6c\x2e\x20\x4e\x6f\x74\x20\x75\x73\x65\x64\x20\x69\x66\x20\ +\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\ +\x65\x64\x20\x6f\x6e\x20\x61\x20\x66\x61\x63\x65\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x54\x00\x68\x00\ +\x69\x00\x63\x00\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x54\x68\x69\x63\x6b\x6e\x65\x73\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\ +\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6d\x00\x65\x00\x73\x00\ +\x68\x00\x20\x00\x69\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x20\x00\ +\x69\x00\x6e\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x20\x00\ +\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1d\x54\x68\x69\x73\x20\x6d\x65\x73\x68\x20\x69\x73\x20\ +\x61\x6e\x20\x69\x6e\x76\x61\x6c\x69\x64\x20\x73\x6f\x6c\x69\x64\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x06\x00\ +\x54\x00\x69\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\ +\x79\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x1e\x00\x54\x00\x79\x00\x70\x00\x65\x00\x20\x00\x63\x00\x6f\ +\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x54\x79\x70\x65\x20\x63\ +\x6f\x6e\x76\x65\x72\x73\x69\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x55\x00\x6e\x00\x61\x00\x62\ +\x00\x6c\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x61\x00\x20\x00\x72\ +\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\ +\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\ +\x20\x61\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x34\x00\x55\x00\x6e\x00\x61\x00\x62\x00\x6c\ +\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1a\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\ +\x65\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x55\x00\ +\x6e\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x69\x00\x6e\x00\ +\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x55\x6e\x67\x72\x6f\ +\x75\x70\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x0e\x00\x56\x00\x69\x00\x65\x00\x77\x00\x20\x00\x6f\ +\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x56\x69\x65\x77\ +\x20\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0c\x00\x50\x00\x65\x00\x72\x00\x65\x00\x74\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x57\x00\x61\x00\ +\x6c\x00\x6c\x00\x20\x00\x6f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x57\x61\x6c\ +\x6c\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x12\x00\x57\x00\x61\x00\x6c\x00\x6c\ +\x00\x54\x00\x72\x00\x61\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x57\x61\x6c\x6c\x54\x72\x61\x63\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x57\x00\x69\ +\x00\x64\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x57\x69\x64\x74\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x12\x00\x46\x00\x65\x00\x72\x00\x65\x00\x61\x00\x73\ +\x00\x74\x00\x72\x01\x03\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x0a\x00\x57\x00\x69\x00\x72\x00\x65\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x05\x57\x69\x72\x65\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x5a\x00\ +\x20\x00\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x5a\x20\x6f\x66\x66\x73\x65\x74\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x26\x00\x63\ +\x00\x6c\x00\x6f\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x53\ +\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x20\x00\x65\x00\x64\ +\x00\x69\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x63\x6c\ +\x6f\x73\x69\x6e\x67\x20\x53\x6b\x65\x74\x63\x68\x20\x65\x64\x69\ +\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x36\ +\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x73\ +\x00\x20\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x63\ +\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x20\x00\x73\x00\x6f\ +\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\ +\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x61\x20\x6e\x6f\x6e\x2d\x63\ +\x6c\x6f\x73\x65\x64\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5a\x00\x63\x00\x6f\x00\x6e\ +\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x20\x00\x66\x00\x61\ +\x00\x63\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\ +\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x6f\x00\x6c\ +\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x63\x6f\ +\x6e\x74\x61\x69\x6e\x73\x20\x66\x61\x63\x65\x73\x20\x74\x68\x61\ +\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x70\x61\x72\x74\x20\x6f\ +\x66\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x64\x00\x6f\x00\x65\ +\x00\x73\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6e\ +\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x61\x00\x6e\x00\x79\ +\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x19\x64\x6f\x65\x73\x6e\x27\x74\x20\x63\x6f\ +\x6e\x74\x61\x69\x6e\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x66\ +\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x25\x00\x73\x00\x20\x00\x73\ +\x00\x75\x00\x63\x00\x63\x00\x65\x00\x73\x00\x73\x00\x66\x00\x75\ +\x00\x6c\x00\x6c\x00\x79\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x64\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1d\x66\x69\x6c\x65\x20\x25\x73\x20\x73\x75\x63\x63\x65\x73\ +\x73\x66\x75\x6c\x6c\x79\x20\x63\x72\x65\x61\x74\x65\x64\x2e\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x69\ +\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x63\x00\x6c\ +\x00\x6f\x00\x73\x00\x65\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x69\x73\x20\x6e\x6f\x74\x20\x63\x6c\x6f\x73\x65\x64\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x69\ +\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x76\x00\x61\ +\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x69\x73\x20\x6e\x6f\x74\x20\x76\x61\x6c\x69\x64\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x52\x00\x70\x00\x79\x00\ +\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\ +\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\x6f\x00\x75\x00\x6e\x00\ +\x64\x00\x2c\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\ +\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x73\x00\x75\x00\ +\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x2e\x00\x0a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x29\x70\x79\x63\x6f\x6c\x6c\x61\x64\x61\ +\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x6e\x6f\x20\x63\ +\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\x6f\x72\x74\x2e\x0a\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x64\x00\ +\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x20\x00\ +\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\ +\x74\x00\x6f\x00\x20\x00\x61\x00\x76\x00\x6f\x00\x69\x00\x64\x00\ +\x20\x00\x63\x00\x72\x00\x6f\x00\x73\x00\x73\x00\x2d\x00\x72\x00\ +\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x69\x00\ +\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x72\x65\x6d\ +\x6f\x76\x69\x6e\x67\x20\x73\x6b\x65\x74\x63\x68\x20\x73\x75\x70\ +\x70\x6f\x72\x74\x20\x74\x6f\x20\x61\x76\x6f\x69\x64\x20\x63\x72\ +\x6f\x73\x73\x2d\x72\x65\x66\x65\x72\x65\x6e\x63\x69\x6e\x67\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x73\ +\x00\x75\x00\x63\x00\x63\x00\x65\x00\x73\x00\x73\x00\x66\x00\x75\ +\x00\x6c\x00\x6c\x00\x79\x00\x20\x00\x77\x00\x72\x00\x69\x00\x74\ +\x00\x74\x00\x65\x00\x6e\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x15\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x77\ +\x72\x69\x74\x74\x65\x6e\x20\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x3a\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\ +\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x74\x68\x65\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\ +\x20\x77\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x1a\x00\x41\x00\x64\x00\x64\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\ +\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x62\x00\x41\x00\x64\x00\x64\ +\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x31\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\ +\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x08\x00\x41\x00\x78\x00\x69\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\x69\x73\ +\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x41\x78\x69\x73\x01\x03\ +\x00\x00\x00\x2e\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ +\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x69\ +\x00\x73\x00\x20\x00\x73\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\ +\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x6e\x20\x61\x78\x69\x73\x20\x73\x79\x73\x74\ +\x65\x6d\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x41\x78\x69\ +\x73\x01\x03\x00\x00\x00\x10\x00\x42\x00\x75\x00\x69\x00\x6c\x00\ +\x64\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x0d\x41\x72\ +\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\ +\x6a\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\ +\x20\x00\x61\x00\x20\x00\x62\x00\x75\x00\x69\x00\x6c\x00\x64\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\ +\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x2e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x35\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x62\ +\x75\x69\x6c\x64\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\ \x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\ -\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x09\x41\x72\ -\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x80\x00\x4c\x00\ -\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\x20\x00\ -\x65\x00\x67\x00\x79\x00\x20\x00\x53\x00\x7a\x00\x69\x00\x6e\x00\ -\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ -\x75\x00\x6d\x00\x6f\x00\x74\x00\x2c\x00\x20\x00\x62\x00\x65\x00\ -\x6c\x00\x65\x00\xe9\x00\x72\x00\x74\x00\x76\x00\x65\x00\x20\x00\ -\x61\x00\x20\x00\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\ -\x6c\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ -\x74\x00\x75\x00\x6d\x00\x6f\x00\x6b\x00\x61\x00\x74\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\ -\x20\x66\x6c\x6f\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x0d\x41\ +\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\ +\x00\x08\x00\x43\x00\x65\x00\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x43\x65\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\ +\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x60\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\ +\x00\x63\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\ +\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ +\x63\x65\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\ +\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\ +\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x0a\x00\x43\x00\x68\x00\x65\ +\x00\x63\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x43\x68\ +\x65\x63\x6b\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\ +\x63\x6b\x01\x03\x00\x00\x00\x50\x00\x43\x00\x68\x00\x65\x00\x63\ +\x00\x6b\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\ +\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\ +\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x62\ +\x00\x6c\x00\x65\x00\x6d\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x28\x43\x68\x65\x63\x6b\x73\x20\x74\x68\x65\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x6f\ +\x72\x20\x70\x72\x6f\x62\x6c\x65\x6d\x73\x07\x00\x00\x00\x0a\x41\ +\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\x01\x03\x00\x00\x00\x16\x00\ +\x43\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x68\x00\x6f\x00\ +\x6c\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\ +\x6c\x6f\x73\x65\x20\x68\x6f\x6c\x65\x73\x07\x00\x00\x00\x0f\x41\ +\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\x01\x03\ +\x00\x00\x00\x60\x00\x43\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x73\ +\x00\x20\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x69\ +\x00\x6e\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x73\ +\x00\x68\x00\x61\x00\x70\x00\x65\x00\x73\x00\x2c\x00\x20\x00\x74\ +\x00\x75\x00\x72\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x6d\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\ +\x00\x64\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x6c\ +\x6f\x73\x65\x73\x20\x68\x6f\x6c\x65\x73\x20\x69\x6e\x20\x6f\x70\ +\x65\x6e\x20\x73\x68\x61\x70\x65\x73\x2c\x20\x74\x75\x72\x6e\x69\ +\x6e\x67\x20\x74\x68\x65\x6d\x20\x73\x6f\x6c\x69\x64\x73\x07\x00\ +\x00\x00\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\ +\x65\x73\x01\x03\x00\x00\x00\x62\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x66\x00\x6c\ +\x00\x6f\x00\x6f\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\ +\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x65\x00\x6c\ +\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x66\x6c\ +\x6f\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\ +\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\ +\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x0a\x00\x46\x00\x6c\x00\x6f\ +\x00\x6f\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\ +\x6f\x6f\x72\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\ +\x6f\x72\x01\x03\x00\x00\x00\x1a\x00\x4d\x00\x65\x00\x73\x00\x68\ +\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\ +\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x10\x41\x72\ +\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\ +\x00\x00\x00\x5a\x00\x54\x00\x75\x00\x72\x00\x6e\x00\x73\x00\x20\ +\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\ +\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\ +\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x50\x00\x61\x00\x72\ +\x00\x74\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x2d\x54\x75\x72\x6e\x73\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\ +\x74\x6f\x20\x50\x61\x72\x74\x20\x53\x68\x61\x70\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\ +\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x20\ +\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\x6d\x6f\x76\x65\ +\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\ +\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\xa4\ +\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\ +\x00\x74\x00\x65\x00\x64\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x66\ +\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x69\ +\x00\x72\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x6e\x00\x74\ +\x00\x73\x00\x2c\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x63\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x61\x00\x20\x00\x68\ +\x00\x6f\x00\x6c\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x61\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ +\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x65\ +\x6d\x6f\x76\x65\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x66\x72\x6f\ +\x6d\x20\x74\x68\x65\x69\x72\x20\x70\x61\x72\x65\x6e\x74\x73\x2c\ +\x20\x6f\x72\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x68\x6f\x6c\ +\x65\x20\x69\x6e\x20\x61\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\ +\x01\x03\x00\x00\x00\x2c\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\ +\x00\x65\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\ +\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x41\x00\x72\x00\x63\ +\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x52\x65\x6d\x6f\ +\x76\x65\x20\x53\x68\x61\x70\x65\x20\x66\x72\x6f\x6d\x20\x41\x72\ +\x63\x68\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\ +\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x52\x00\x52\x00\ +\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x73\x00\x20\x00\x63\x00\ +\x75\x00\x62\x00\x69\x00\x63\x00\x20\x00\x73\x00\x68\x00\x61\x00\ +\x70\x00\x65\x00\x73\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ +\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x63\x00\x6f\x00\ +\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x29\x52\x65\x6d\x6f\x76\x65\x73\ +\x20\x63\x75\x62\x69\x63\x20\x73\x68\x61\x70\x65\x73\x20\x66\x72\ +\x6f\x6d\x20\x41\x72\x63\x68\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\ +\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x72\x00\x43\x00\ +\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\ +\x20\x00\x72\x00\x6f\x00\x6f\x00\x66\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\ +\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x66\x00\ +\x61\x00\x63\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\ +\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x39\x43\x72\x65\x61\x74\x65\x73\ +\x20\x61\x20\x72\x6f\x6f\x66\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\ +\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ +\x20\x66\x61\x63\x65\x20\x6f\x66\x20\x61\x6e\x20\x6f\x62\x6a\x65\ +\x63\x74\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x52\x6f\x6f\x66\ +\x01\x03\x00\x00\x00\x08\x00\x52\x00\x6f\x00\x6f\x00\x66\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\ +\x09\x41\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x7c\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\ +\x00\x61\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\ +\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x3e\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ +\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x2c\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\ +\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x07\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\ +\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x1a\ +\x00\x53\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\ +\x00\x50\x00\x6c\x00\x61\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0d\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\ +\x65\x07\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\ +\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x34\x00\x53\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x6e\x00\x6f\x00\ +\x6e\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\x66\x00\x6f\x00\ +\x6c\x00\x64\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\x65\x6c\x65\x63\ +\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\ +\x65\x73\x68\x65\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\ +\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\ +\x68\x65\x73\x01\x03\x00\x00\x00\x9a\x00\x53\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\ +\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\ +\x69\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x6d\x00\x65\x00\ +\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\x66\x00\x72\x00\x6f\x00\ +\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\x6f\x00\ +\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\ +\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x65\x00\x64\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\ +\x70\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x53\x65\x6c\ +\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\ +\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x66\x72\x6f\ +\x6d\x20\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x20\x6f\ +\x72\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x67\x72\x6f\x75\x70\x73\x07\x00\x00\x00\x19\x41\ +\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\ +\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x6c\x00\x43\ +\x00\x72\x00\x65\x00\x65\x00\x61\x00\x7a\x01\x03\x00\x20\x00\x75\ +\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x63\x00\x74\ +\x00\x20\x00\x73\x00\x69\x00\x74\x00\x65\x00\x2c\x00\x20\x00\x69\ +\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x7a\x00\xe2\x00\x6e\x00\x64\ +\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x63\x00\x74\x00\x65\ +\x00\x6c\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\ +\x00\x74\x00\x61\x00\x74\x00\x65\x00\x2e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x69\ +\x74\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\ +\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\ +\x69\x74\x65\x01\x03\x00\x00\x00\x08\x00\x53\x00\x69\x00\x74\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\ +\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\ +\x00\x00\x14\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x20\x00\ +\x4d\x00\x65\x00\x73\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x0e\ +\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\ +\x00\x00\x00\x72\x00\x49\x00\x6d\x00\x70\x00\x61\x00\x72\x00\x74\ +\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x63\x00\x74\ +\x00\x75\x00\x6c\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x20\ +\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x61\x00\x74\ +\x00\x20\x00\xee\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x69\ +\x00\x6e\x00\x64\x00\x65\x00\x70\x00\x65\x00\x6e\x00\x64\x00\x65\ +\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\ +\x53\x70\x6c\x69\x74\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x69\x6e\x64\x65\ +\x70\x65\x6e\x64\x65\x6e\x74\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\ +\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\xc8\x00\x43\x00\x72\x00\ +\x65\x00\x65\x00\x61\x00\x7a\x01\x03\x00\x20\x00\x75\x00\x6e\x00\ +\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x63\x00\x74\x00\x20\x00\ +\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\ +\x61\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\ +\x7a\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x73\x00\x61\x00\x75\x00\ +\x20\x00\x64\x00\x69\x00\x6e\x00\x74\x00\x72\x00\x2d\x00\x75\x00\ +\x6e\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x61\x00\ +\x74\x00\x20\x00\x28\x00\x73\x00\x63\x00\x68\x00\x69\x00\x74\x00\ +\x61\x00\x2c\x00\x20\x00\x73\x00\xe2\x00\x72\x00\x6d\x01\x03\x00\ +\x2c\x00\x20\x00\x66\x00\x61\x00\x74\x00\x61\x00\x20\x00\x73\x00\ +\x61\x00\x75\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\ +\x65\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5f\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\ +\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\ +\x73\x6b\x65\x74\x63\x68\x2c\x20\x77\x69\x72\x65\x2c\x20\x66\x61\ +\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\ +\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\ +\x03\x00\x00\x00\x12\x00\x53\x00\x74\x00\x72\x00\x75\x00\x63\x00\ +\x74\x00\x75\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x0e\x41\ +\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\ +\x00\x00\xb0\x00\x43\x00\x72\x00\x65\x00\x65\x00\x61\x00\x7a\x01\ +\x03\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x69\x00\ +\x65\x00\x63\x00\x74\x00\x20\x00\x70\x00\x65\x00\x72\x00\x65\x00\ +\x74\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x61\x00\ +\x20\x00\x7a\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x73\x00\x61\x00\ +\x75\x00\x20\x00\x64\x00\x69\x00\x6e\x00\x74\x00\x72\x00\x2d\x00\ +\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x63\x00\ +\x74\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x61\x00\x74\x00\x20\x00\x28\x00\x73\x00\xe2\x00\x72\x00\x6d\x01\ +\x03\x00\x2c\x00\x20\x00\x66\x00\x61\x00\x74\x00\x61\x00\x20\x00\ +\x73\x00\x61\x00\x75\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\ +\x64\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x77\x61\x6c\x6c\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\ +\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\ +\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\ +\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\ +\x00\x00\x0c\x00\x50\x00\x65\x00\x72\x00\x65\x00\x74\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\ +\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\ +\x94\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\ +\x20\x00\x61\x00\x20\x00\x77\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\ +\x77\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ +\x28\x00\x77\x00\x69\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x72\x00\ +\x65\x00\x63\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\ +\x20\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x6b\x00\x65\x00\x74\x00\ +\x63\x00\x68\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4a\x43\ +\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\x69\x6e\x64\x6f\x77\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\ +\x69\x72\x65\x2c\x20\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\x20\x6f\ +\x72\x20\x73\x6b\x65\x74\x63\x68\x29\x07\x00\x00\x00\x0b\x41\x72\ +\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x12\x00\ +\x46\x00\x65\x00\x72\x00\x65\x00\x61\x00\x73\x00\x74\x00\x72\x01\ +\x03\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\ +\x77\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\ +\x77\x01\x03\x00\x00\x00\x12\x00\x52\x00\x65\x00\x64\x00\x61\x00\ +\x72\x00\x65\x00\x20\x00\x32\x00\x44\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0c\x32\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\ +\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x50\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\ +\x00\x65\x00\x73\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\ +\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x61\ +\x00\x63\x00\x68\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x74\ +\x00\x79\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\ +\x43\x72\x65\x61\x74\x65\x73\x20\x67\x72\x6f\x75\x70\x73\x20\x66\ +\x6f\x72\x20\x65\x61\x63\x68\x20\x41\x72\x63\x68\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x74\x79\x70\x65\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3c\x00\ +\x43\x00\x75\x00\x74\x00\x20\x00\x61\x00\x72\x00\x65\x00\x61\x00\ +\x73\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x63\x00\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x00\ +\x20\x00\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1e\x43\x75\x74\x20\x61\x72\x65\x61\x73\x20\x6c\ +\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\x73\x20\x72\x61\ +\x74\x69\x6f\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\x00\x44\x00\x65\x00\x66\ +\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\ +\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x73\ +\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x44\x65\x66\x61\ +\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x74\ +\x72\x75\x63\x74\x75\x72\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\ +\x44\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\ +\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x44\x65\x66\x61\x75\x6c\x74\x20\x63\ +\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\x61\x6c\x6c\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x32\x00\x44\x00\x65\x00\x66\x00\x61\x00\x75\x00\ +\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ +\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x77\x00\x69\x00\x6e\x00\ +\x64\x00\x6f\x00\x77\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x19\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\ +\x6f\x72\x20\x77\x69\x6e\x64\x6f\x77\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x2a\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\ +\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x53\x00\x65\x00\ +\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\x20\x41\x72\x63\ +\x68\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x1e\x00\x53\x00\x65\x00\x74\x01\x03\x00\x72\x00\x69\x00\x20\x00\ +\x67\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\ +\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\ +\x00\x47\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x20\x00\x63\x00\x6f\ +\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\ +\x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x72\x6f\x75\ +\x70\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x62\x79\x20\ +\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x49\x00\x46\ +\x00\x43\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x49\x46\x43\x20\x69\x6d\ +\x70\x6f\x72\x74\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\xba\x00\x49\x00\x66\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\ +\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\ +\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x49\x00\x46\x00\ +\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\ +\x6c\x00\x6c\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x00\x65\x00\x72\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\ +\x20\x00\x62\x00\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\ +\x2c\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x6f\x00\x77\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x69\x00\x6d\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x72\x00\ +\x65\x00\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\x74\x00\x79\x00\ +\x70\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x49\ +\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\ +\x64\x2c\x20\x74\x68\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\ +\x65\x6c\x6c\x20\x69\x6d\x70\x6f\x72\x74\x65\x72\x20\x77\x69\x6c\ +\x6c\x20\x62\x65\x20\x75\x73\x65\x64\x2c\x20\x61\x6c\x6c\x6f\x77\ +\x69\x6e\x67\x20\x74\x6f\x20\x69\x6d\x70\x6f\x72\x74\x20\x6d\x6f\ +\x72\x65\x20\x49\x46\x43\x20\x74\x79\x70\x65\x73\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x56\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x20\x00\x66\x00\x75\x00\x72\x00\x6e\x00\x69\x00\x74\x00\x75\x00\ +\x72\x00\x65\x00\x20\x00\x28\x00\x63\x00\x61\x00\x6e\x00\x20\x00\ +\x6d\x00\x61\x00\x6b\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x68\x00\ +\x65\x00\x61\x00\x76\x00\x79\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2b\x49\x6d\x70\x6f\x72\x74\x20\x66\x75\x72\x6e\x69\x74\ +\x75\x72\x65\x20\x28\x63\x61\x6e\x20\x6d\x61\x6b\x65\x20\x74\x68\ +\x65\x20\x6d\x6f\x64\x65\x6c\x20\x68\x65\x61\x76\x79\x29\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x6e\x00\x41\x00\x66\x00\x69\x01\x5f\x00\x65\x00\ +\x61\x00\x7a\x01\x03\x00\x20\x00\x69\x00\x6e\x00\x66\x00\x6f\x00\ +\x72\x00\x6d\x00\x61\x02\x1b\x00\x69\x00\x69\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x64\x00\x65\x00\x70\x00\x61\x00\x6e\x00\x61\x00\ +\x72\x00\x65\x00\x20\x00\xee\x00\x6e\x00\x20\x00\x74\x00\x69\x00\ +\x6d\x00\x70\x00\x75\x00\x6c\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x72\x00\x65\x00\x64\x01\x03\x00\x72\x00\x69\x00\x69\x00\x20\x00\ +\x32\x00\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x53\x68\x6f\ +\x77\x20\x64\x65\x62\x75\x67\x20\x69\x6e\x66\x6f\x72\x6d\x61\x74\ +\x69\x6f\x6e\x20\x64\x75\x72\x69\x6e\x67\x20\x32\x44\x20\x72\x65\ +\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\x00\x53\ +\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\ +\x00\x65\x00\x72\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\x00\x62\ +\x00\x75\x00\x67\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x73\x00\x61\ +\x00\x67\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\ +\x53\x68\x6f\x77\x20\x72\x65\x6e\x64\x65\x72\x65\x72\x20\x64\x65\ +\x62\x75\x67\x20\x6d\x65\x73\x73\x61\x67\x65\x73\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x9e\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\ +\x69\x00\x65\x00\x73\x00\x20\x00\x68\x00\x6f\x00\x77\x00\x20\x00\ +\x6d\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x74\x00\x69\x00\x6d\x00\ +\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x76\x00\ +\x69\x00\x65\x00\x77\x00\x65\x00\x64\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x65\x00\x20\x00\x74\x00\x68\x00\x69\x00\x63\x00\x6b\x00\ +\x6e\x00\x65\x00\x73\x00\x73\x00\x20\x00\x6d\x00\x75\x00\x73\x00\ +\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x61\x00\x70\x00\x70\x00\ +\x6c\x00\x69\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ +\x63\x00\x75\x00\x74\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x53\x70\x65\x63\x69\ +\x66\x69\x65\x73\x20\x68\x6f\x77\x20\x6d\x61\x6e\x79\x20\x74\x69\ +\x6d\x65\x73\x20\x74\x68\x65\x20\x76\x69\x65\x77\x65\x64\x20\x6c\ +\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\x73\x20\x6d\x75\ +\x73\x74\x20\x62\x65\x20\x61\x70\x70\x6c\x69\x65\x64\x20\x74\x6f\ +\x20\x63\x75\x74\x20\x6c\x69\x6e\x65\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x66\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\x65\x00\x66\x00\ +\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\ +\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\ +\x65\x00\x77\x00\x20\x00\x53\x00\x74\x00\x72\x00\x75\x00\x63\x00\ +\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x33\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\ +\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\ +\x65\x77\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5c\x00\x54\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x64\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\ +\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\ +\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\ +\x57\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\ +\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\ +\x65\x77\x20\x57\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\ +\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x3a\x00\x55\x00\x73\x00\x65\x00\x20\x00\x49\ +\x00\x46\x00\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\ +\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x66\x00\x20\x00\x61\ +\x00\x76\x00\x61\x00\x69\x00\x6c\x00\x61\x00\x62\x00\x6c\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\x65\x20\x49\x46\ +\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\x69\x66\x20\x61\x76\ +\x61\x69\x6c\x61\x62\x6c\x65\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x26\ +\x00\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\x74\x00\x65\x00\x63\ +\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x26\x41\x72\x63\x68\x69\x74\x65\x63\x74\x75\x72\x65\x07\ +\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x26\ +\x00\x53\x00\x63\x00\x68\x00\x69\x01\x63\x01\x03\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x26\x44\x72\x61\x66\x74\x07\x00\x00\x00\ +\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x41\x00\x72\x00\ +\x63\x00\x68\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x41\x72\x63\x68\x20\x74\x6f\ +\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\ +\x00\x22\x00\x43\x00\x61\x00\x6c\x00\x63\x00\x75\x00\x6c\x00\x61\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x54\x00\x6f\x00\x6f\ +\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x43\x61\ +\x6c\x63\x75\x6c\x61\x74\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\ +\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x43\ +\x00\x6f\x00\x6e\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\x00\x54\ +\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x43\x6f\x6e\x74\x65\x78\x74\x20\x54\x6f\x6f\x6c\x73\x07\ +\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x20\x00\x43\ +\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x10\x43\x6f\x6e\x76\x65\x72\x73\x69\ +\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\ +\x68\x01\x03\x00\x00\x00\x1e\x00\x44\x00\x72\x00\x61\x00\x66\x00\ +\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x20\x00\x74\x00\x6f\x00\ +\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x44\ +\x72\x61\x66\x74\x20\x6d\x6f\x64\x20\x74\x6f\x6f\x6c\x73\x07\x00\ +\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x44\x00\ +\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\ +\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x72\x61\ +\x66\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\ +\x68\x01\x03\x00\x00\x00\x6e\x00\x70\x00\x79\x00\x63\x00\x6f\x00\ +\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\ +\x74\x00\x20\x00\x66\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x2c\x00\ +\x20\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\ +\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\ +\x20\x00\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\ +\x64\x00\x2e\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x70\ +\x79\x63\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\ +\x6e\x64\x2c\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\ +\x6f\x72\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x69\x73\x61\ +\x62\x6c\x65\x64\x2e\x0a\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ +\ +\x00\x00\x4a\xa9\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x04\xf8\x00\x00\x47\xa4\x00\x00\x00\x49\x00\x04\x8e\xc3\ +\x00\x00\x01\x6b\x00\x04\x8f\x03\x00\x00\x02\x1e\x00\x04\x8f\x03\ +\x00\x00\x25\xd6\x00\x04\x9c\x2c\x00\x00\x27\x54\x00\x04\xbb\x04\ +\x00\x00\x07\xd2\x00\x05\x48\x35\x00\x00\x0c\xdb\x00\x05\x67\xd5\ +\x00\x00\x0e\xed\x00\x05\x96\x56\x00\x00\x0f\x41\x00\x05\x96\x56\ +\x00\x00\x2f\x18\x00\x05\xa0\xa5\x00\x00\x0f\x66\x00\x05\xa0\xa5\ +\x00\x00\x32\xc3\x00\x05\xc0\x65\x00\x00\x1d\x45\x00\x05\xd8\x2c\ +\x00\x00\x1e\xdc\x00\x05\xd8\x2c\x00\x00\x36\x73\x00\x32\x23\xa5\ +\x00\x00\x42\xda\x00\x39\xdf\x33\x00\x00\x3b\x3d\x00\x48\x4e\x25\ +\x00\x00\x01\x45\x00\x49\xeb\x9b\x00\x00\x28\x32\x00\x4b\x55\x33\ +\x00\x00\x3c\x71\x00\x4d\x36\x62\x00\x00\x0a\x2b\x00\x4d\x36\x62\ +\x00\x00\x2a\xac\x00\x5d\xfb\xa8\x00\x00\x1f\x72\x00\x5e\x08\xc3\ +\x00\x00\x1f\xc7\x00\x61\xb0\x33\x00\x00\x16\xb9\x00\x62\x9b\xa8\ +\x00\x00\x0f\xef\x00\x62\x9b\xa8\x00\x00\x32\xed\x00\x8a\x92\x57\ +\x00\x00\x00\x00\x00\xaa\x80\x25\x00\x00\x07\x27\x00\xc9\x7b\xf3\ +\x00\x00\x12\xac\x00\xfb\x72\xf3\x00\x00\x3a\xc7\x01\x19\x4e\x85\ +\x00\x00\x05\xb1\x01\x55\x2b\xf5\x00\x00\x05\x22\x01\x79\x17\x94\ +\x00\x00\x22\x90\x01\x8e\x84\xa6\x00\x00\x11\x68\x01\xad\x7d\xe3\ +\x00\x00\x44\x55\x01\xaf\x41\x84\x00\x00\x21\x7c\x01\xf7\xa8\x83\ +\x00\x00\x41\x8f\x02\x01\x7f\xd3\x00\x00\x10\x5e\x02\x29\xb3\xc4\ +\x00\x00\x2e\x4f\x02\x5a\x4a\x53\x00\x00\x15\xd7\x02\x5f\xc9\x59\ +\x00\x00\x35\x61\x02\x66\x7f\x7e\x00\x00\x0d\xc5\x02\x6a\x77\x99\ +\x00\x00\x3d\xb9\x02\x80\x5f\x17\x00\x00\x23\x61\x02\x82\x88\x3a\ +\x00\x00\x04\x3e\x02\x85\x4f\xf5\x00\x00\x19\x3f\x02\x90\x40\x65\ +\x00\x00\x0c\x9d\x02\x90\x40\x65\x00\x00\x2a\xda\x02\x94\x16\x35\ +\x00\x00\x10\x9b\x02\xab\x87\xd4\x00\x00\x43\x1a\x02\xb8\xae\x74\ +\x00\x00\x2b\xd0\x02\xc3\x91\x93\x00\x00\x3f\x1a\x02\xcd\x05\xa3\ +\x00\x00\x2b\x24\x02\xdd\x14\x14\x00\x00\x2c\x24\x03\x13\x15\x3e\ +\x00\x00\x0b\x49\x03\x1b\xda\x15\x00\x00\x1f\x3e\x03\x1d\xe8\xe3\ +\x00\x00\x39\x58\x03\x29\x7a\x34\x00\x00\x00\xdb\x03\x2c\xe9\xb3\ +\x00\x00\x17\x20\x03\x92\x51\xe0\x00\x00\x0f\x8b\x03\xa2\xec\x23\ +\x00\x00\x1f\x01\x03\xbe\xb0\x34\x00\x00\x1e\x10\x03\xce\x98\xe5\ +\x00\x00\x03\xc8\x03\xd4\x22\x74\x00\x00\x24\xd8\x04\x35\xfa\x55\ +\x00\x00\x12\x21\x04\xc3\x75\x44\x00\x00\x19\x94\x04\xdb\x21\x3e\ +\x00\x00\x31\xfc\x04\xeb\xfd\xf4\x00\x00\x0a\x84\x05\x14\x5b\x83\ +\x00\x00\x07\x56\x05\x18\xda\xa3\x00\x00\x29\xf0\x05\x5f\x3d\x83\ +\x00\x00\x3a\x4b\x05\x8c\x46\xc5\x00\x00\x0f\x12\x05\x90\xba\xe3\ +\x00\x00\x0e\xbf\x05\xc0\x56\xe3\x00\x00\x3f\x9f\x05\xc7\xeb\xc7\ +\x00\x00\x3e\x6b\x05\xe0\x4b\x67\x00\x00\x1f\x9a\x05\xe0\x4b\x67\ +\x00\x00\x37\x9b\x05\xef\x78\x4a\x00\x00\x22\xcd\x06\x1f\x6f\xa4\ +\x00\x00\x20\xdc\x06\x32\xe3\xe3\x00\x00\x44\x9b\x06\x5b\x01\x15\ +\x00\x00\x03\x97\x06\x69\xd0\x04\x00\x00\x20\x72\x06\x9f\x6f\xd4\ +\x00\x00\x06\xc9\x06\xd6\x3f\xa4\x00\x00\x22\x50\x06\xe6\x2f\x43\ +\x00\x00\x11\xc3\x07\x00\xcc\xc4\x00\x00\x3c\x22\x07\x07\x84\xba\ +\x00\x00\x44\xd9\x07\x08\x43\x0e\x00\x00\x26\x00\x07\x16\x58\x05\ +\x00\x00\x38\x24\x07\x25\x74\x53\x00\x00\x28\xf7\x07\x28\xff\x15\ +\x00\x00\x0d\x4f\x07\x36\x51\x26\x00\x00\x13\x8e\x07\x5c\xdc\x04\ +\x00\x00\x1f\xef\x07\x60\x23\xf3\x00\x00\x02\xf0\x07\xca\xf8\x87\ +\x00\x00\x37\xcf\x08\x25\x81\xc4\x00\x00\x06\x74\x08\x4a\x45\xd9\ +\x00\x00\x36\x9d\x08\x65\x4c\x95\x00\x00\x1b\xc8\x08\xc5\xe3\x35\ +\x00\x00\x1b\x13\x08\xca\xc9\x74\x00\x00\x14\xb6\x08\xfb\xb8\xa4\ +\x00\x00\x09\xc4\x09\x69\xac\xa7\x00\x00\x1e\x77\x09\x6c\x6c\xa7\ +\x00\x00\x0a\x53\x09\x9f\xcc\xde\x00\x00\x21\xe0\x09\xba\xe6\x35\ +\x00\x00\x10\x2a\x09\xba\xe6\x35\x00\x00\x35\x23\x09\xc5\xbe\xca\ +\x00\x00\x09\x24\x09\xe3\x98\xe4\x00\x00\x25\x24\x09\xed\x98\x55\ +\x00\x00\x30\x22\x0a\x3e\x06\x83\x00\x00\x04\xae\x0a\x3f\x1f\xd6\ +\x00\x00\x04\xe8\x0a\x3f\x2b\x25\x00\x00\x05\x77\x0a\x3f\x5d\xac\ +\x00\x00\x05\xfa\x0a\x7f\xee\xa3\x00\x00\x43\x45\x0a\xb6\xc8\x9a\ +\x00\x00\x0a\xaf\x0a\xbf\x46\x0e\x00\x00\x1d\x6c\x0a\xd6\x07\x84\ +\x00\x00\x20\x20\x0b\x0a\xc3\xf3\x00\x00\x00\x73\x0b\x51\x30\xa8\ +\x00\x00\x2d\x48\x0b\x65\xda\xb3\x00\x00\x39\xd9\x0b\x8d\x97\x93\ +\x00\x00\x40\xbd\x0b\x9c\x5b\xe7\x00\x00\x08\x87\x0b\xb9\xe8\x93\ +\x00\x00\x2d\xaf\x0b\xc4\xb1\x23\x00\x00\x27\x7c\x0c\x02\xac\xd7\ +\x00\x00\x02\xc9\x0c\x02\xac\xd7\x00\x00\x26\x63\x0c\x25\x3e\x53\ +\x00\x00\x30\xe1\x0c\x3c\x8b\x33\x00\x00\x43\x80\x0c\x41\x0a\x83\ +\x00\x00\x43\xcc\x0c\x4e\x9b\x23\x00\x00\x30\x65\x0c\x98\x80\x23\ +\x00\x00\x44\x0c\x0c\xc4\xd0\x80\x00\x00\x24\x10\x0c\xdf\x5a\x1e\ +\x00\x00\x01\x90\x0c\xfc\x97\x06\x00\x00\x1e\xae\x0d\x03\x26\xb4\ +\x00\x00\x02\x86\x0d\x08\x90\xf3\x00\x00\x1a\xa6\x0d\x1e\xda\xa4\ +\x00\x00\x03\x27\x0d\x3b\x3b\x49\x00\x00\x33\xe3\x0d\xa8\x3a\x35\ +\x00\x00\x17\x7b\x0d\xc1\x7d\x47\x00\x00\x24\x68\x0d\xfa\x53\xe5\ +\x00\x00\x07\xf9\x0e\x69\x87\x13\x00\x00\x2f\x42\x0e\x8c\xd7\x43\ +\x00\x00\x33\x32\x0e\x98\x0a\xd6\x00\x00\x1d\xb2\x0e\xab\x8d\x1f\ +\x00\x00\x38\xcd\x0e\xb9\x1b\xf2\x00\x00\x14\x55\x0e\xec\x0b\x9e\ +\x00\x00\x26\x93\x0f\x16\x4a\x24\x00\x00\x1c\xd5\x0f\x17\xc7\xa3\ +\x00\x00\x28\x60\x0f\x55\xc1\x57\x00\x00\x06\x34\x0f\x78\x41\x05\ +\x00\x00\x42\x52\x0f\x79\xe3\xf3\x00\x00\x29\x3c\x0f\x95\xd5\x09\ +\x00\x00\x18\x33\x0f\xa2\x16\x43\x00\x00\x1c\xa1\x0f\xc0\xb8\xb4\ +\x00\x00\x0d\x00\x0f\xd0\x39\x44\x00\x00\x02\x43\x0f\xe5\x74\x74\ +\x00\x00\x00\xa7\x0f\xf3\xe8\x33\x00\x00\x3b\xa6\x69\x00\x00\x45\ +\x97\x03\x00\x00\x00\x20\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x42\x00\x75\x00\x69\x00\x6c\x00\x64\ +\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x20\x43\x72\x65\x61\x74\x65\x20\x42\x75\x69\x6c\x64\x69\x6e\x67\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\ +\x56\x00\x6f\x00\x65\x00\x67\x00\x20\x00\x62\x00\x79\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x03\x41\x64\x64\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x41\x00\x64\x00\x64\x00\ +\x69\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x09\x41\x64\x64\x69\x74\x69\x6f\x6e\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x41\x00\ +\x6c\x00\x69\x00\x67\x00\x6e\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x41\x6c\x69\x67\x6e\x6d\x65\ +\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x36\x00\x41\x00\x6c\x00\x6c\x00\x20\x00\x67\x00\x6f\x00\x6f\x00\ +\x64\x00\x21\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x70\x00\x72\x00\ +\x6f\x00\x62\x00\x6c\x00\x65\x00\x6d\x00\x73\x00\x20\x00\x66\x00\ +\x6f\x00\x75\x00\x6e\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1b\x41\x6c\x6c\x20\x67\x6f\x6f\x64\x21\x20\x6e\x6f\x20\x70\x72\ +\x6f\x62\x6c\x65\x6d\x73\x20\x66\x6f\x75\x6e\x64\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x48\x00\x6f\x00\ +\x65\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x6e\x67\ +\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x08\x00\x41\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x41\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x4e\x00\x41\x00\x78\x00\x65\x00\x73\x00\x20\ +\x00\x73\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x73\x00\x20\ +\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\x00\x74\x00\x72\ +\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x69\ +\x00\x73\x00\x20\x00\x62\x00\x75\x00\x69\x00\x6c\x00\x74\x00\x20\ +\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x41\x78\ +\x65\x73\x20\x73\x79\x73\x74\x65\x6d\x73\x20\x74\x68\x69\x73\x20\ +\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x69\x73\x20\x62\x75\x69\ +\x6c\x74\x20\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x08\x00\x41\x00\x78\x00\x69\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x41\x78\x69\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x00\x42\x00\x61\x00\x73\x00\ +\x65\x00\x20\x00\x32\x00\x44\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x42\ +\x61\x73\x65\x20\x32\x44\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x00\x42\x00\x61\ +\x00\x73\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\ +\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0e\x42\x61\x73\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x06\x00\ +\x42\x00\x6f\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\ +\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x14\x00\x4b\x00\x6f\x00\x6d\x00\x70\x00\x6f\ +\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0a\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x4b\x00\ +\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\ +\x65\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x68\x00\x69\x00\ +\x65\x00\x72\x00\x64\x00\x69\x00\x65\x00\x20\x00\x76\x00\x6f\x00\ +\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x19\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\ +\x6f\x66\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x43\x00\ +\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x43\x6f\x6e\x74\x69\x6e\x75\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x43\ +\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x75\x00\x74\x00\x65\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\ +\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1f\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x63\ +\x6f\x6d\x70\x75\x74\x65\x20\x74\x68\x65\x20\x77\x61\x6c\x6c\x20\ +\x73\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x3a\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\ +\x00\x27\x00\x74\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x74\ +\x00\x65\x00\x20\x00\x49\x00\x66\x00\x63\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x0a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1d\x43\x6f\x75\x6c\x64\x6e\x27\x74\ +\x20\x6c\x6f\x63\x61\x74\x65\x20\x49\x66\x63\x4f\x70\x65\x6e\x53\ +\x68\x65\x6c\x6c\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x16\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ +\x00\x20\x00\x41\x00\x78\x00\x69\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x41\x78\x69\x73\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x43\ +\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x52\x00\x6f\ +\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\ +\x65\x61\x74\x65\x20\x52\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x28\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x53\x00\x65\x00\x63\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x6e\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\x74\x65\ +\x20\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x43\x00\ +\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\x69\x00\ +\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\ +\x61\x74\x65\x20\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x20\x00\x53\x00\x74\x00\x72\x00\x75\x00\x63\x00\ +\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x10\x43\x72\x65\x61\x74\x65\x20\x53\x74\x72\x75\x63\x74\x75\x72\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x57\ +\x00\x61\x00\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ +\x43\x72\x65\x61\x74\x65\x20\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x20\x00\x57\x00\x69\x00\x6e\x00\x64\ +\x00\x6f\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x72\ +\x65\x61\x74\x65\x20\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\ +\x74\x65\x20\x6e\x65\x77\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\ +\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x2f\x00\x75\x00\ +\x70\x00\x64\x00\x61\x00\x74\x00\x65\x00\x20\x00\x63\x00\x6f\x00\ +\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\x74\x65\x2f\x75\x70\ +\x64\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x41\x00\ +\x66\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x42\x00\x44\x00\x69\ +\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x63\x00\x65\x00\x73\x00\x20\ +\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\ +\x00\x65\x00\x73\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\ +\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x21\x44\x69\x73\x74\x61\x6e\x63\x65\ +\x73\x20\x61\x6e\x64\x20\x61\x6e\x67\x6c\x65\x73\x20\x62\x65\x74\ +\x77\x65\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x57\x00\x79\x00\x73\x00\x69\ +\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4e\x00\ +\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x20\x00\x72\x00\x65\x00\ +\x6d\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\ +\x70\x00\x6c\x00\x69\x00\x74\x00\x74\x00\x65\x00\x72\x00\x20\x00\ +\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x77\x00\x61\x00\x6c\x00\ +\x6c\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x27\x45\x72\x72\x6f\x72\x20\x72\x65\x6d\ +\x6f\x76\x69\x6e\x67\x20\x73\x70\x6c\x69\x74\x74\x65\x72\x20\x66\ +\x72\x6f\x6d\x20\x77\x61\x6c\x6c\x20\x73\x68\x61\x70\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x58\x00\x45\x00\ +\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x43\x00\x6f\x00\ +\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x64\x00\ +\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x65\x00\ +\x20\x00\x63\x00\x68\x00\x61\x00\x72\x00\x61\x00\x63\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\x64\x00\ +\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x45\ +\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x64\ +\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\x61\x72\x61\x63\x74\ +\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5a\x00\x45\x00\x72\x00\x72\ +\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x43\x00\x6f\x00\x75\x00\x6c\ +\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x64\x00\x65\x00\x74\ +\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x63\ +\x00\x68\x00\x61\x00\x72\x00\x61\x00\x63\x00\x74\x00\x65\x00\x72\ +\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\x64\x00\x69\x00\x6e\ +\x00\x67\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x45\x72\ +\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x64\x65\ +\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\ +\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x0a\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\x45\x00\x72\x00\x72\ +\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x49\x00\x6e\x00\x76\x00\x61\ +\x00\x6c\x00\x69\x00\x64\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1a\x45\x72\x72\x6f\x72\x3a\x20\x49\ +\x6e\x76\x61\x6c\x69\x64\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\ +\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x0a\x00\x56\x00\x6c\x00\x6f\x00\x65\x00\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x47\x00\x72\x00\x6f\x00\ +\x75\x00\x70\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x47\x72\x6f\x75\x70\x69\x6e\x67\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x48\x00\x65\x00\x69\ +\x00\x67\x00\x68\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x48\x65\x69\x67\x68\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x56\x00\x49\x00\x46\x00\x43\x00\x20\x00\x53\x00\ +\x63\x00\x68\x00\x65\x00\x6d\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\ +\x74\x00\x20\x00\x66\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x2c\x00\ +\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\x69\x00\x6d\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x00\x20\x00\x64\x00\x69\x00\x73\x00\x61\x00\ +\x62\x00\x6c\x00\x65\x00\x64\x00\x2e\x00\x0a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2b\x49\x46\x43\x20\x53\x63\x68\x65\x6d\x61\x20\ +\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x49\x46\x43\x20\x69\ +\x6d\x70\x6f\x72\x74\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x2e\x0a\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xd2\x00\ +\x49\x00\x66\x00\x20\x00\x54\x00\x72\x00\x75\x00\x65\x00\x2c\x00\ +\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x73\x00\ +\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\ +\x6e\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\ +\x2c\x00\x20\x00\x69\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x75\x00\x73\x00\x65\x00\x20\x00\x69\x00\x74\x00\ +\x73\x00\x20\x00\x62\x00\x6f\x00\x72\x00\x64\x00\x65\x00\x72\x00\ +\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x20\x00\x61\x00\x73\x00\ +\x20\x00\x74\x00\x72\x00\x61\x00\x63\x00\x65\x00\x2c\x00\x20\x00\ +\x61\x00\x6e\x00\x64\x00\x20\x00\x64\x00\x69\x00\x73\x00\x63\x00\ +\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\ +\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x69\x49\x66\x20\x54\x72\ +\x75\x65\x2c\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\ +\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x66\ +\x61\x63\x65\x2c\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x75\x73\x65\ +\x20\x69\x74\x73\x20\x62\x6f\x72\x64\x65\x72\x20\x77\x69\x72\x65\ +\x20\x61\x73\x20\x74\x72\x61\x63\x65\x2c\x20\x61\x6e\x64\x20\x64\ +\x69\x73\x63\x6f\x6e\x73\x69\x64\x65\x72\x20\x74\x68\x65\x20\x66\ +\x61\x63\x65\x2e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x18\x00\x4d\x00\x61\x00\x61\x00\x73\x00\x20\x00\x6e\x00\ +\x61\x00\x20\x00\x56\x00\x6f\x00\x72\x00\x6d\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x74\x6f\x20\x53\x68\x61\ +\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x08\x00\x4e\x00\x61\x00\x61\x00\x6d\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x4e\x61\x6d\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x24\x00\x4e\x00\x6f\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x73\x00\x65\x00\x6c\ +\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x12\x4e\x6f\x20\x6f\x62\x6a\x65\x63\x74\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x3e\x00\x4e\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x72\x00\ +\x65\x00\x20\x00\x63\x00\x75\x00\x74\x00\x20\x00\x62\x00\x79\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x70\x00\x6c\x00\x61\x00\ +\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x4e\x6f\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x72\x65\x20\x63\x75\x74\x20\ +\x62\x79\x20\x74\x68\x65\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x96\x00\x4e\x00\x6f\x00\ +\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x68\x00\ +\x61\x00\x73\x00\x20\x00\x62\x00\x65\x00\x65\x00\x6e\x00\x20\x00\ +\x63\x00\x6f\x00\x6d\x00\x70\x00\x75\x00\x74\x00\x65\x00\x64\x00\ +\x20\x00\x79\x00\x65\x00\x74\x00\x2c\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x77\x00\x69\x00\x72\x00\ +\x65\x00\x66\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x72\x00\ +\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x72\x00\x65\x00\x6e\x00\ +\x64\x00\x65\x00\x72\x00\x20\x00\x61\x00\x67\x00\x61\x00\x69\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4b\x4e\x6f\x20\x73\x68\ +\x61\x70\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x63\x6f\x6d\ +\x70\x75\x74\x65\x64\x20\x79\x65\x74\x2c\x20\x73\x65\x6c\x65\x63\ +\x74\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\x72\x65\x6e\x64\ +\x65\x72\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x65\x6e\x64\x65\x72\ +\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x0e\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x4f\x62\x6a\ +\x65\x63\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x08\x00\x50\x00\x61\x00\x67\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x04\x50\x61\x67\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x10\x00\x56\x00\x65\x00\x72\x00\x77\ +\x00\x79\x00\x64\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x06\x52\x65\x6d\x6f\x76\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x08\x00\x52\x00\x6f\x00\x6f\x00\x66\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x50\x00\x6c\ +\x00\x65\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\ +\x74\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x32\x00\x53\x00\x6b\x00\x69\x00\x70\x00\x70\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x69\x00\x6e\x00\x76\x00\x61\x00\x6c\x00\x69\x00\ +\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x53\x6b\x69\ +\x70\x70\x69\x6e\x67\x20\x69\x6e\x76\x61\x6c\x69\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x3a\x20\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x18\x00\x44\x00\x65\x00\x65\x00\x6c\x00\x20\x00\ +\x6d\x00\x61\x00\x61\x00\x73\x00\x20\x00\x6f\x00\x70\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\ +\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\ +\x00\x53\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x75\ +\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\x75\ +\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x18\x00\x53\x00\x75\x00\x62\x00\x74\x00\x72\x00\x61\ +\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x53\x75\x62\x74\x72\x61\x63\x74\x69\x6f\ +\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x78\x00\x54\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x69\x00\ +\x67\x00\x6e\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\ +\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x69\x00\ +\x74\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\x00\ +\x69\x00\x66\x00\x20\x00\x61\x00\x70\x00\x70\x00\x6c\x00\x69\x00\ +\x63\x00\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x3c\x54\x68\x65\x20\x61\x6c\x69\x67\x6e\x6d\x65\x6e\x74\ +\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x6f\x6e\ +\x20\x69\x74\x73\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x2c\x20\x69\x66\x20\x61\x70\x70\x6c\x69\x63\x61\x62\x6c\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2c\x00\x54\ +\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x72\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x16\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x54\x00\x68\x00\x65\x00\ +\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x73\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x65\x00\x61\x00\x63\x00\x68\x00\x20\x00\ +\x61\x00\x78\x00\x69\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x17\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\x73\x20\x6f\x66\x20\x65\ +\x61\x63\x68\x20\x61\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x4c\x00\x54\x00\x68\x00\x65\x00\x20\x00\ +\x64\x00\x69\x00\x73\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x20\x00\ +\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\x00\x65\x00\x63\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\ +\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x26\x54\x68\x65\ +\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x73\x69\x7a\x65\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\ +\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x86\x00\x54\x00\x68\x00\x65\x00\x20\x00\x65\x00\x6c\x00\x65\ +\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6e\x00\x75\x00\x6d\ +\x00\x62\x00\x65\x00\x72\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\ +\x00\x65\x00\x78\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x65\x00\x20\ +\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x69\ +\x00\x73\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\ +\x00\x75\x00\x72\x00\x65\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\ +\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\ +\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x43\x54\x68\x65\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\x6e\x75\ +\x6d\x62\x65\x72\x73\x20\x74\x6f\x20\x65\x78\x63\x6c\x75\x64\x65\ +\x20\x77\x68\x65\x6e\x20\x74\x68\x69\x73\x20\x73\x74\x72\x75\x63\ +\x74\x75\x72\x65\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\ +\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x74\x00\x54\x00\x68\x00\x65\x00\x20\x00\x66\x00\x61\ +\x00\x63\x00\x65\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\ +\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x75\x00\x73\x00\x65\ +\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x75\x00\x69\ +\x00\x6c\x00\x64\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x72\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x3a\x54\x68\x65\x20\x66\x61\x63\x65\x20\x6e\x75\x6d\x62\x65\ +\x72\x20\x6f\x66\x20\x74\x68\x65\x20\x62\x61\x73\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x62\x75\x69\ +\x6c\x64\x20\x74\x68\x69\x73\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x30\x00\x54\x00\x68\x00\ +\x65\x00\x20\x00\x68\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x66\x00\x6c\x00\x6f\x00\x6f\x00\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x18\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\ +\x6f\x66\x20\x74\x68\x69\x73\x20\x66\x6c\x6f\x6f\x72\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xb0\x00\x54\x00\x68\ +\x00\x65\x00\x20\x00\x68\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x2e\x00\x20\x00\x4b\ +\x00\x65\x00\x65\x00\x70\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\ +\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\ +\x00\x74\x00\x69\x00\x63\x00\x2e\x00\x20\x00\x4e\x00\x6f\x00\x74\ +\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\x00\x69\x00\x66\ +\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\ +\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\ +\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\ +\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x58\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\ +\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x2e\x20\x4b\ +\x65\x65\x70\x20\x30\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\ +\x74\x69\x63\x2e\x20\x4e\x6f\x74\x20\x75\x73\x65\x64\x20\x69\x66\ +\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\ +\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x73\x6f\x6c\x69\x64\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x86\x00\x54\x00\ +\x68\x00\x65\x00\x20\x00\x68\x00\x65\x00\x69\x00\x67\x00\x68\x00\ +\x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\ +\x72\x00\x75\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\ +\x65\x00\x70\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x65\x00\x6c\x00\x65\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x20\x00\x4b\x00\x65\x00\ +\x65\x00\x70\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\ +\x69\x00\x63\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\x54\x68\x65\ +\x20\x68\x65\x69\x67\x68\x74\x20\x6f\x72\x20\x65\x78\x74\x72\x75\ +\x73\x69\x6f\x6e\x20\x64\x65\x70\x74\x68\x20\x6f\x66\x20\x74\x68\ +\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2e\x20\x4b\x65\x65\x70\ +\x20\x30\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\ +\x72\x00\x76\x00\x61\x00\x6c\x00\x73\x00\x20\x00\x62\x00\x65\x00\ +\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x78\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x54\x68\x65\ +\x20\x69\x6e\x74\x65\x72\x76\x61\x6c\x73\x20\x62\x65\x74\x77\x65\ +\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x2c\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6c\ +\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\x00\x78\x00\x65\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x68\x65\x20\ +\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\ +\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x6a\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x6e\x00\ +\x67\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\ +\x6e\x00\x6f\x00\x74\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\ +\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x70\x00\ +\x72\x00\x6f\x00\x66\x00\x69\x00\x6c\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x35\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\x20\ +\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\ +\x20\x69\x66\x20\x6e\x6f\x74\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\ +\x20\x61\x20\x70\x72\x6f\x66\x69\x6c\x65\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\xa2\x00\x54\x00\x68\x00\x65\x00\ +\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x20\x00\ +\x65\x00\x78\x00\x74\x00\x72\x00\x75\x00\x73\x00\x69\x00\x6f\x00\ +\x6e\x00\x20\x00\x64\x00\x69\x00\x72\x00\x65\x00\x63\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x28\x00\x6b\x00\x65\x00\x65\x00\x70\x00\ +\x20\x00\x28\x00\x30\x00\x2c\x00\x30\x00\x2c\x00\x30\x00\x29\x00\ +\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\ +\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x20\x00\x6e\x00\ +\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x51\x54\x68\x65\x20\x6e\x6f\x72\x6d\x61\x6c\x20\ +\x65\x78\x74\x72\x75\x73\x69\x6f\x6e\x20\x64\x69\x72\x65\x63\x74\ +\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x28\x6b\x65\x65\x70\x20\x28\x30\x2c\x30\x2c\x30\x29\ +\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x20\x6e\ +\x6f\x72\x6d\x61\x6c\x29\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x28\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6e\x00\ +\x75\x00\x6d\x00\x65\x00\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x20\x00\x73\x00\x74\x00\x79\x00\x6c\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\x20\x6e\x75\x6d\x65\x72\ +\x61\x74\x69\x6f\x6e\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\xa6\x00\x54\x00\x68\x00\x65\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\ +\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x6d\x00\x75\ +\x00\x73\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x63\x00\x6f\ +\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\x65\x00\x64\ +\x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x2e\x00\x20\ +\x00\x45\x00\x6d\x00\x70\x00\x74\x00\x79\x00\x20\x00\x6d\x00\x65\ +\x00\x61\x00\x6e\x00\x73\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\ +\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\x54\x68\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x74\x68\x61\x74\x20\x6d\x75\x73\x74\x20\ +\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x62\x79\ +\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\ +\x61\x6e\x65\x2e\x20\x45\x6d\x70\x74\x79\x20\x6d\x65\x61\x6e\x73\ +\x20\x61\x6c\x6c\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\x00\x54\x00\x68\ +\x00\x65\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x6f\ +\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\x00\x78\ +\x00\x69\x00\x73\x00\x20\x00\x62\x00\x75\x00\x62\x00\x62\x00\x6c\ +\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x54\x68\ +\x65\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\ +\x69\x73\x20\x62\x75\x62\x62\x6c\x65\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x68\x00\x54\x00\x68\x00\x65\x00\ +\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x65\x00\ +\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2c\x00\x20\x00\ +\x69\x00\x66\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x62\x00\ +\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\ +\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x66\x00\x69\x00\x6c\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x54\x68\x65\x20\x77\ +\x69\x64\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\ +\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\x6e\x6f\x74\x20\x62\x61\x73\ +\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\x72\x6f\x66\x69\x6c\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x80\x00\x54\ +\x00\x68\x00\x65\x00\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x2e\x00\x20\x00\x4e\ +\x00\x6f\x00\x74\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\ +\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x73\x00\x20\ +\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\ +\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x40\x54\x68\x65\x20\x77\x69\x64\x74\ +\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x2e\x20\ +\x4e\x6f\x74\x20\x75\x73\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\ +\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\ +\x6e\x20\x61\x20\x66\x61\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x12\x00\x54\x00\x68\x00\x69\x00\x63\x00\ +\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x54\x68\x69\x63\x6b\x6e\x65\x73\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x54\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x20\x00\ +\x69\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\ +\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x20\x00\x73\x00\x6f\x00\ +\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x54\ +\x68\x69\x73\x20\x6d\x65\x73\x68\x20\x69\x73\x20\x61\x6e\x20\x69\ +\x6e\x76\x61\x6c\x69\x64\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x53\x00\x6f\x00\ +\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\ +\x79\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x1e\x00\x54\x00\x79\x00\x70\x00\x65\x00\x20\x00\x63\x00\x6f\ +\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x54\x79\x70\x65\x20\x63\ +\x6f\x6e\x76\x65\x72\x73\x69\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x55\x00\x6e\x00\x61\x00\x62\ +\x00\x6c\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x61\x00\x20\x00\x72\ +\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\ +\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\ +\x20\x61\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x34\x00\x55\x00\x6e\x00\x61\x00\x62\x00\x6c\ +\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1a\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\ +\x65\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x55\x00\ +\x6e\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x69\x00\x6e\x00\ +\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x55\x6e\x67\x72\x6f\ +\x75\x70\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x0e\x00\x56\x00\x69\x00\x65\x00\x77\x00\x20\x00\x6f\ +\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x56\x69\x65\x77\ +\x20\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x08\x00\x4d\x00\x75\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x18\x00\x57\x00\x61\x00\x6c\x00\x6c\x00\ +\x20\x00\x6f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x57\x61\x6c\x6c\x20\x6f\x70\ +\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x12\x00\x57\x00\x61\x00\x6c\x00\x6c\x00\x54\x00\x72\ +\x00\x61\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x57\x61\x6c\x6c\x54\x72\x61\x63\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x57\x00\x69\x00\x64\x00\x74\ +\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x57\x69\x64\x74\ +\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\ +\x00\x56\x00\x65\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x72\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x57\x00\ +\x69\x00\x72\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x05\x57\x69\x72\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x10\x00\x5a\x00\x20\x00\x6f\x00\x66\x00\x66\x00\ +\x73\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x5a\ +\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x26\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x69\ +\x00\x6e\x00\x67\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\x00\x63\ +\x00\x68\x00\x20\x00\x65\x00\x64\x00\x69\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x13\x63\x6c\x6f\x73\x69\x6e\x67\x20\x53\x6b\ +\x65\x74\x63\x68\x20\x65\x64\x69\x74\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x36\x00\x63\x00\x6f\x00\x6e\x00\x74\ +\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x20\x00\x61\x00\x20\x00\x6e\ +\x00\x6f\x00\x6e\x00\x2d\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\ +\x00\x64\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1b\x63\x6f\x6e\x74\x61\x69\x6e\x73\ +\x20\x61\x20\x6e\x6f\x6e\x2d\x63\x6c\x6f\x73\x65\x64\x20\x73\x6f\ +\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x5a\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\ +\x00\x73\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\ +\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x61\x00\x72\x00\x65\ +\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x70\x00\x61\x00\x72\ +\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x6e\x00\x79\ +\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x2d\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x66\ +\x61\x63\x65\x73\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\x6e\x6f\ +\x74\x20\x70\x61\x72\x74\x20\x6f\x66\x20\x61\x6e\x79\x20\x73\x6f\ +\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x32\x00\x64\x00\x6f\x00\x65\x00\x73\x00\x6e\x00\x27\x00\x74\ +\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\ +\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x6f\x00\x6c\ +\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x64\x6f\ +\x65\x73\x6e\x27\x74\x20\x63\x6f\x6e\x74\x61\x69\x6e\x20\x61\x6e\ +\x79\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x3a\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x20\ +\x00\x25\x00\x73\x00\x20\x00\x73\x00\x75\x00\x63\x00\x63\x00\x65\ +\x00\x73\x00\x73\x00\x66\x00\x75\x00\x6c\x00\x6c\x00\x79\x00\x20\ +\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x64\x00\x2e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x66\x69\x6c\x65\x20\x25\ +\x73\x20\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x63\ +\x72\x65\x61\x74\x65\x64\x2e\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x1a\x00\x69\x00\x73\x00\x20\x00\x6e\x00\x6f\ +\x00\x74\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x69\x73\x20\x6e\x6f\x74\ +\x20\x63\x6c\x6f\x73\x65\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x18\x00\x69\x00\x73\x00\x20\x00\x6e\x00\x6f\ +\x00\x74\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0c\x69\x73\x20\x6e\x6f\x74\x20\x76\ +\x61\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x52\x00\x70\x00\x79\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\ +\x61\x00\x64\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\ +\x66\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x2c\x00\x20\x00\x6e\x00\ +\x6f\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\ +\x61\x00\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x00\x2e\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x70\ +\x79\x63\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\ +\x6e\x64\x2c\x20\x6e\x6f\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\ +\x75\x70\x70\x6f\x72\x74\x2e\x0a\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x64\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\ +\x76\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x6b\x00\x65\x00\ +\x74\x00\x63\x00\x68\x00\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\ +\x76\x00\x6f\x00\x69\x00\x64\x00\x20\x00\x63\x00\x72\x00\x6f\x00\ +\x73\x00\x73\x00\x2d\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\ +\x65\x00\x6e\x00\x63\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x32\x72\x65\x6d\x6f\x76\x69\x6e\x67\x20\x73\x6b\ +\x65\x74\x63\x68\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x74\x6f\x20\ +\x61\x76\x6f\x69\x64\x20\x63\x72\x6f\x73\x73\x2d\x72\x65\x66\x65\ +\x72\x65\x6e\x63\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x2a\x00\x73\x00\x75\x00\x63\x00\x63\x00\x65\ +\x00\x73\x00\x73\x00\x66\x00\x75\x00\x6c\x00\x6c\x00\x79\x00\x20\ +\x00\x77\x00\x72\x00\x69\x00\x74\x00\x74\x00\x65\x00\x6e\x00\x20\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x73\x75\x63\x63\x65\x73\ +\x73\x66\x75\x6c\x6c\x79\x20\x77\x72\x69\x74\x74\x65\x6e\x20\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\ +\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x69\ +\x00\x6e\x00\x64\x00\x6f\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1d\x74\x68\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\ +\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x69\x6e\x64\x6f\x77\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x22\x00\x56\ +\x00\x6f\x00\x65\x00\x67\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x62\x00\x79\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\ +\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x64\x00\x56\x00\x6f\x00\x65\ +\x00\x67\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x67\x00\x65\ +\x00\x6b\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x20\ +\x00\x62\x00\x79\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x61\ +\x00\x6b\x00\x74\x00\x69\x00\x65\x00\x77\x00\x65\x00\x20\x00\x76\ +\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x31\x41\x64\x64\x73\x20\x74\x68\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\ +\x65\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x61\x63\x74\x69\ +\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x41\x72\ +\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x08\x00\x41\x00\x78\ +\x00\x69\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\ +\x69\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x41\x78\x69\x73\ +\x01\x03\x00\x00\x00\x2e\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\ +\x00\x65\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x61\x00\x78\ +\x00\x69\x00\x73\x00\x20\x00\x73\x00\x79\x00\x73\x00\x74\x00\x65\ +\x00\x6d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x78\x69\x73\x20\x73\x79\ +\x73\x74\x65\x6d\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x41\ +\x78\x69\x73\x01\x03\x00\x00\x00\x06\x00\x42\x00\x6f\x00\x75\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\ +\x67\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\ +\x69\x6e\x67\x01\x03\x00\x00\x00\x6a\x00\x53\x00\x6b\x00\x65\x00\ +\x70\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x62\x00\x6f\x00\x75\x00\ +\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\ +\x20\x00\x77\x00\x61\x00\x74\x00\x20\x00\x64\x00\x69\x00\x65\x00\ +\x20\x00\x67\x00\x65\x00\x6b\x00\x6f\x00\x73\x00\x65\x00\x20\x00\ +\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\ +\x65\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x6c\x00\x75\x00\x69\x00\ +\x74\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x62\x75\x69\x6c\x64\x69\x6e\x67\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x2e\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\ +\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x06\x00\x53\x00\x65\x00\x6c\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x43\x65\x6c\x6c\x07\x00\ +\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\ +\x00\x68\x00\x53\x00\x6b\x00\x65\x00\x70\x00\x20\x00\x27\x00\x6e\ +\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x76\x00\x6f\x00\x6f\x00\x72\ +\x00\x77\x00\x65\x00\x72\x00\x70\x00\x20\x00\x77\x00\x61\x00\x74\ +\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x67\x00\x65\x00\x6b\ +\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\ +\x00\x77\x00\x65\x00\x72\x00\x70\x00\x65\x00\x20\x00\x69\x00\x6e\ +\x00\x73\x00\x6c\x00\x75\x00\x69\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x65\ +\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\ +\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\ +\x6c\x6c\x01\x03\x00\x00\x00\x0a\x00\x43\x00\x68\x00\x65\x00\x63\ +\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x43\x68\x65\x63\ +\x6b\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\ +\x01\x03\x00\x00\x00\x50\x00\x43\x00\x68\x00\x65\x00\x63\x00\x6b\ +\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x66\ +\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x62\x00\x6c\ +\x00\x65\x00\x6d\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\ +\x43\x68\x65\x63\x6b\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x6f\x72\x20\ +\x70\x72\x6f\x62\x6c\x65\x6d\x73\x07\x00\x00\x00\x0a\x41\x72\x63\ +\x68\x5f\x43\x68\x65\x63\x6b\x01\x03\x00\x00\x00\x16\x00\x43\x00\ +\x6c\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x68\x00\x6f\x00\x6c\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x6c\x6f\ +\x73\x65\x20\x68\x6f\x6c\x65\x73\x07\x00\x00\x00\x0f\x41\x72\x63\ +\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\x01\x03\x00\x00\ +\x00\x60\x00\x43\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x73\x00\x20\ +\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\ +\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x68\ +\x00\x61\x00\x70\x00\x65\x00\x73\x00\x2c\x00\x20\x00\x74\x00\x75\ +\x00\x72\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\ +\x00\x65\x00\x6d\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x6c\x6f\x73\ +\x65\x73\x20\x68\x6f\x6c\x65\x73\x20\x69\x6e\x20\x6f\x70\x65\x6e\ +\x20\x73\x68\x61\x70\x65\x73\x2c\x20\x74\x75\x72\x6e\x69\x6e\x67\ +\x20\x74\x68\x65\x6d\x20\x73\x6f\x6c\x69\x64\x73\x07\x00\x00\x00\ +\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\ +\x01\x03\x00\x00\x00\x6c\x00\x53\x00\x6b\x00\x65\x00\x70\x00\x20\ +\x00\x27\x00\x6e\x00\x20\x00\x76\x00\x6c\x00\x6f\x00\x65\x00\x72\ +\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\ +\x00\x20\x00\x77\x00\x61\x00\x74\x00\x20\x00\x64\x00\x69\x00\x65\ +\x00\x20\x00\x67\x00\x65\x00\x6b\x00\x6f\x00\x73\x00\x65\x00\x20\ +\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\ +\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x6c\x00\x75\x00\x69\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x66\x6c\x6f\x6f\x72\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ +\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\ +\x00\x0a\x00\x56\x00\x6c\x00\x6f\x00\x65\x00\x72\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x0a\ +\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x18\ +\x00\x4d\x00\x61\x00\x61\x00\x73\x00\x20\x00\x6e\x00\x61\x00\x20\ +\x00\x56\x00\x6f\x00\x72\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x4d\x65\x73\x68\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\ +\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\ +\x68\x61\x70\x65\x01\x03\x00\x00\x00\x5a\x00\x54\x00\x75\x00\x72\ +\x00\x6e\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\ +\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\ +\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\ +\x00\x50\x00\x61\x00\x72\x00\x74\x00\x20\x00\x53\x00\x68\x00\x61\ +\x00\x70\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x54\x75\ +\x72\x6e\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\ +\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x50\x61\x72\x74\x20\x53\x68\ +\x61\x70\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x10\ +\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\ +\x01\x03\x00\x00\x00\x24\x00\x56\x00\x65\x00\x72\x00\x77\x00\x79\ +\x00\x64\x00\x65\x00\x72\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x52\x65\x6d\x6f\x76\x65\x20\x63\x6f\x6d\x70\x6f\ +\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\ +\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\xb2\x00\x56\x00\x65\x00\x72\ +\x00\x77\x00\x79\x00\x64\x00\x65\x00\x72\x00\x20\x00\x64\x00\x69\ +\x00\x65\x00\x20\x00\x67\x00\x65\x00\x6b\x00\x6f\x00\x73\x00\x65\ +\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ +\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\ +\x00\x68\x00\x75\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x6d\x00\x6f\ +\x00\x65\x00\x64\x00\x65\x00\x72\x00\x6b\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x2c\x00\x20\ +\x00\x6f\x00\x66\x00\x20\x00\x73\x00\x6b\x00\x65\x00\x70\x00\x20\ +\x00\x27\x00\x6e\x00\x20\x00\x67\x00\x61\x00\x74\x00\x20\x00\x69\ +\x00\x6e\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x6b\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x52\x52\x65\x6d\x6f\x76\x65\x20\x74\x68\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\ +\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x69\x72\x20\ +\x70\x61\x72\x65\x6e\x74\x73\x2c\x20\x6f\x72\x20\x63\x72\x65\x61\ +\x74\x65\x20\x61\x20\x68\x6f\x6c\x65\x20\x69\x6e\x20\x61\x20\x63\ +\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\ +\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\x2c\x00\x56\ +\x00\x65\x00\x72\x00\x77\x00\x79\x00\x64\x00\x65\x00\x72\x00\x20\ +\x00\x56\x00\x6f\x00\x72\x00\x6d\x00\x20\x00\x76\x00\x61\x00\x6e\ +\x00\x20\x00\x42\x00\x6f\x00\x6f\x00\x67\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x16\x52\x65\x6d\x6f\x76\x65\x20\x53\x68\x61\x70\x65\ +\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x07\x00\x00\x00\x10\x41\ +\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\ +\x03\x00\x00\x00\x52\x00\x56\x00\x65\x00\x72\x00\x77\x00\x79\x00\ +\x64\x00\x65\x00\x72\x00\x20\x00\x6b\x00\x75\x00\x62\x00\x69\x00\ +\x65\x00\x73\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x72\x00\x6d\x00\ +\x73\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x62\x00\x6f\x00\ +\x6f\x00\x67\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\ +\x65\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x29\x52\x65\x6d\x6f\x76\x65\x73\x20\x63\x75\x62\x69\x63\x20\x73\ +\x68\x61\x70\x65\x73\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x20\ +\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x10\x41\ +\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\ +\x03\x00\x00\x00\x72\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\ +\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x72\x00\x6f\x00\x6f\x00\ +\x66\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x65\x00\x64\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x39\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x72\x6f\x6f\x66\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x66\x61\x63\x65\x20\x6f\x66\ +\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x09\x41\ +\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x08\x00\x52\ +\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x52\x6f\x6f\x66\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x52\x6f\ +\x6f\x66\x01\x03\x00\x00\x00\x7c\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\ +\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\x6c\ +\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x2c\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\ +\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\ +\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\ +\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3e\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\ +\x70\x6c\x61\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x69\x6e\ +\x63\x6c\x75\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\ +\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\ +\x6e\x65\x01\x03\x00\x00\x00\x10\x00\x53\x00\x6e\x00\x69\x00\x74\ +\x00\x76\x00\x6c\x00\x61\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\ +\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\ +\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x34\x00\x4b\x00\x69\x00\ +\x65\x00\x73\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x2d\x00\x6d\x00\ +\x65\x00\x6e\x00\x69\x00\x67\x00\x76\x00\x6f\x00\x75\x00\x64\x00\ +\x69\x00\x67\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x73\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\ +\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\ +\x68\x65\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\ +\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\ +\x73\x01\x03\x00\x00\x00\xa0\x00\x53\x00\x65\x00\x6c\x00\x65\x00\ +\x6b\x00\x74\x00\x65\x00\x65\x00\x72\x00\x20\x00\x61\x00\x6c\x00\ +\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x6e\x00\x69\x00\x65\x00\ +\x2d\x00\x6d\x00\x65\x00\x6e\x00\x69\x00\x67\x00\x76\x00\x6f\x00\ +\x75\x00\x64\x00\x69\x00\x67\x00\x65\x00\x20\x00\x6d\x00\x61\x00\ +\x73\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x64\x00\ +\x69\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x6b\x00\x75\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x76\x00\ +\x61\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x67\x00\ +\x65\x00\x6b\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x67\x00\x72\x00\ +\x6f\x00\x65\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x4d\x53\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6e\x6f\x6e\ +\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\ +\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\ +\x6e\x74\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x67\x72\x6f\x75\x70\x73\x07\x00\ +\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\ +\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\ +\x00\x78\x00\x53\x00\x6b\x00\x65\x00\x70\x00\x20\x00\x27\x00\x6e\ +\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x61\x00\x73\x00\x6c\x00\x69\ +\x00\x6b\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\ +\x00\x65\x00\x72\x00\x70\x00\x20\x00\x77\x00\x61\x00\x74\x00\x20\ +\x00\x64\x00\x69\x00\x65\x00\x20\x00\x67\x00\x65\x00\x6b\x00\x6f\ +\x00\x73\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\ +\x00\x65\x00\x72\x00\x70\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x73\ +\x00\x6c\x00\x75\x00\x69\x00\x74\x00\x2e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x69\ +\x74\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\ +\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\ +\x69\x74\x65\x01\x03\x00\x00\x00\x08\x00\x50\x00\x6c\x00\x65\x00\ +\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\ +\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\ +\x00\x00\x18\x00\x44\x00\x65\x00\x65\x00\x6c\x00\x20\x00\x6d\x00\ +\x61\x00\x61\x00\x73\x00\x20\x00\x6f\x00\x70\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\ +\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\ +\x73\x68\x01\x03\x00\x00\x00\x5c\x00\x44\x00\x65\x00\x65\x00\x6c\ +\x00\x20\x00\x67\x00\x65\x00\x6b\x00\x6f\x00\x73\x00\x65\x00\x20\ +\x00\x6d\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x70\x00\x20\ +\x00\x69\x00\x6e\x00\x20\x00\x6f\x00\x6e\x00\x61\x00\x66\x00\x68\ +\x00\x61\x00\x6e\x00\x6b\x00\x6c\x00\x69\x00\x6b\x00\x65\x00\x20\ +\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ +\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x53\x70\ +\x6c\x69\x74\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\ +\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x69\x6e\x64\x65\x70\x65\ +\x6e\x64\x65\x6e\x74\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\ +\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\ +\x65\x73\x68\x01\x03\x00\x00\x00\xbe\x00\x53\x00\x6b\x00\x65\x00\ +\x70\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x73\x00\x74\x00\x72\x00\ +\x75\x00\x6b\x00\x74\x00\x75\x00\x75\x00\x72\x00\x76\x00\x6f\x00\ +\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\x20\x00\x6f\x00\ +\x70\x00\x6e\x00\x75\x00\x75\x00\x74\x00\x20\x00\x6f\x00\x66\x00\ +\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x27\x00\x6e\x00\x20\x00\ +\x67\x00\x65\x00\x6b\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x76\x00\ +\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\x20\x00\ +\x28\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x73\x00\x2c\x00\x20\x00\ +\x64\x00\x72\x00\x61\x00\x61\x00\x64\x00\x2c\x00\x20\x00\x6f\x00\ +\x70\x00\x70\x00\x65\x00\x72\x00\x76\x00\x6c\x00\x61\x00\x6b\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\ +\x65\x00\x64\x00\x65\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x5f\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x74\x72\x75\x63\ +\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\ +\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\ +\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x28\x73\x6b\x65\x74\x63\x68\x2c\x20\x77\x69\x72\x65\ +\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\ +\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\ +\x75\x72\x65\x01\x03\x00\x00\x00\x12\x00\x53\x00\x74\x00\x72\x00\ +\x75\x00\x6b\x00\x74\x00\x75\x00\x75\x00\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\ +\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\ +\x65\x01\x03\x00\x00\x00\xa2\x00\x53\x00\x6b\x00\x65\x00\x70\x00\ +\x20\x00\x27\x00\x6e\x00\x20\x00\x6d\x00\x75\x00\x75\x00\x72\x00\ +\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\ +\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x6e\x00\x75\x00\x75\x00\ +\x74\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x76\x00\x61\x00\ +\x6e\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x67\x00\x65\x00\x6b\x00\ +\x6f\x00\x73\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\ +\x77\x00\x65\x00\x72\x00\x70\x00\x20\x00\x28\x00\x64\x00\x72\x00\ +\x61\x00\x61\x00\x64\x00\x2c\x00\x20\x00\x76\x00\x6c\x00\x61\x00\ +\x6b\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\ +\x69\x00\x65\x00\x64\x00\x65\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x52\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\x61\x6c\ +\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\ +\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x28\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\ +\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\ +\x61\x6c\x6c\x01\x03\x00\x00\x00\x08\x00\x4d\x00\x75\x00\x75\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\ +\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\ +\x00\x00\x94\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\ +\x73\x00\x20\x00\x61\x00\x20\x00\x77\x00\x69\x00\x6e\x00\x64\x00\ +\x6f\x00\x77\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\ +\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\ +\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x28\x00\x77\x00\x69\x00\x72\x00\x65\x00\x2c\x00\x20\x00\ +\x72\x00\x65\x00\x63\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\ +\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x6b\x00\x65\x00\ +\x74\x00\x63\x00\x68\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x4a\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\x69\x6e\x64\x6f\ +\x77\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x61\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x28\x77\x69\x72\x65\x2c\x20\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\ +\x20\x6f\x72\x20\x73\x6b\x65\x74\x63\x68\x29\x07\x00\x00\x00\x0b\ +\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ +\x0e\x00\x56\x00\x65\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x72\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x07\ +\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\ +\x03\x00\x00\x00\x18\x00\x32\x00\x44\x00\x20\x00\x72\x00\x65\x00\ +\x6e\x00\x64\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0c\x32\x44\x20\x72\x65\x6e\x64\x65\x72\ +\x69\x6e\x67\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x50\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x67\x00\x72\x00\x6f\ +\x00\x75\x00\x70\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ +\x00\x65\x00\x61\x00\x63\x00\x68\x00\x20\x00\x41\x00\x72\x00\x63\ +\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x28\x43\x72\x65\x61\x74\x65\x73\x20\x67\x72\x6f\x75\ +\x70\x73\x20\x66\x6f\x72\x20\x65\x61\x63\x68\x20\x41\x72\x63\x68\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x3c\x00\x43\x00\x75\x00\x74\x00\x20\x00\x61\x00\x72\x00\ +\x65\x00\x61\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x63\x00\x6b\x00\x6e\x00\x65\x00\ +\x73\x00\x73\x00\x20\x00\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x43\x75\x74\x20\x61\x72\x65\ +\x61\x73\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\ +\x73\x20\x72\x61\x74\x69\x6f\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\x56\ +\x00\x65\x00\x72\x00\x73\x00\x74\x00\x65\x00\x6b\x00\x6b\x00\x6c\ +\x00\x65\x00\x75\x00\x72\x00\x20\x00\x76\x00\x69\x00\x72\x00\x20\ +\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x72\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x44\x65\x66\x61\ +\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x74\ +\x72\x75\x63\x74\x75\x72\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\ +\x56\x00\x65\x00\x72\x00\x73\x00\x74\x00\x65\x00\x6b\x00\x6b\x00\ +\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x76\x00\x69\x00\x72\x00\ +\x20\x00\x6d\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x17\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\ +\x20\x66\x6f\x72\x20\x77\x61\x6c\x6c\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x32\x00\x44\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\ +\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x66\x00\ +\x6f\x00\x72\x00\x20\x00\x77\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\ +\x77\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x44\x65\x66\ +\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\ +\x69\x6e\x64\x6f\x77\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x30\x00\x41\x00\ +\x6c\x00\x67\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x65\x00\x20\x00\ +\x42\x00\x6f\x00\x6f\x00\x67\x00\x69\x00\x6e\x00\x73\x00\x74\x00\ +\x65\x00\x6c\x00\x6c\x00\x69\x00\x6e\x00\x67\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\x20\x41\ +\x72\x63\x68\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x28\x00\x41\x00\x6c\x00\x67\x00\x65\x00\x6d\x00\x65\x00\ +\x6e\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\x00\ +\x6c\x00\x6c\x00\x69\x00\x6e\x00\x67\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\ +\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x47\x00\x72\ +\x00\x6f\x00\x75\x00\x70\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x62\ +\x00\x79\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x19\x47\x72\x6f\x75\x70\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x62\x79\x20\x74\x79\x70\x65\ +\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x14\x00\x49\x00\x46\x00\x43\x00\x20\ +\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0a\x49\x46\x43\x20\x69\x6d\x70\x6f\x72\x74\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\xba\x00\x49\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\ +\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x49\x00\x46\x00\x43\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\ +\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\ +\x72\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\ +\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ +\x61\x00\x6c\x00\x6c\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x74\x00\x6f\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x72\x00\x65\x00\x20\x00\ +\x49\x00\x46\x00\x43\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x49\x66\x20\x74\x68\ +\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\ +\x68\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\ +\x69\x6d\x70\x6f\x72\x74\x65\x72\x20\x77\x69\x6c\x6c\x20\x62\x65\ +\x20\x75\x73\x65\x64\x2c\x20\x61\x6c\x6c\x6f\x77\x69\x6e\x67\x20\ +\x74\x6f\x20\x69\x6d\x70\x6f\x72\x74\x20\x6d\x6f\x72\x65\x20\x49\ +\x46\x43\x20\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x56\x00\ +\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x66\x00\ +\x75\x00\x72\x00\x6e\x00\x69\x00\x74\x00\x75\x00\x72\x00\x65\x00\ +\x20\x00\x28\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x6d\x00\x61\x00\ +\x6b\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6d\x00\ +\x6f\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x68\x00\x65\x00\x61\x00\ +\x76\x00\x79\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\ +\x6d\x70\x6f\x72\x74\x20\x66\x75\x72\x6e\x69\x74\x75\x72\x65\x20\ +\x28\x63\x61\x6e\x20\x6d\x61\x6b\x65\x20\x74\x68\x65\x20\x6d\x6f\ +\x64\x65\x6c\x20\x68\x65\x61\x76\x79\x29\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x54\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x64\x00\x65\x00\ +\x62\x00\x75\x00\x67\x00\x20\x00\x69\x00\x6e\x00\x66\x00\x6f\x00\ +\x72\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ +\x64\x00\x75\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x32\x00\ +\x44\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\ +\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x53\ +\x68\x6f\x77\x20\x64\x65\x62\x75\x67\x20\x69\x6e\x66\x6f\x72\x6d\ +\x61\x74\x69\x6f\x6e\x20\x64\x75\x72\x69\x6e\x67\x20\x32\x44\x20\ +\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\ +\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x72\x00\x65\x00\x6e\ +\x00\x64\x00\x65\x00\x72\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\ +\x00\x62\x00\x75\x00\x67\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x73\ +\x00\x61\x00\x67\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1c\x53\x68\x6f\x77\x20\x72\x65\x6e\x64\x65\x72\x65\x72\x20\ +\x64\x65\x62\x75\x67\x20\x6d\x65\x73\x73\x61\x67\x65\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x9e\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\x00\ +\x66\x00\x69\x00\x65\x00\x73\x00\x20\x00\x68\x00\x6f\x00\x77\x00\ +\x20\x00\x6d\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x74\x00\x69\x00\ +\x6d\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x76\x00\x69\x00\x65\x00\x77\x00\x65\x00\x64\x00\x20\x00\x6c\x00\ +\x69\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x68\x00\x69\x00\x63\x00\ +\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x00\x20\x00\x6d\x00\x75\x00\ +\x73\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x61\x00\x70\x00\ +\x70\x00\x6c\x00\x69\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x63\x00\x75\x00\x74\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x53\x70\x65\ +\x63\x69\x66\x69\x65\x73\x20\x68\x6f\x77\x20\x6d\x61\x6e\x79\x20\ +\x74\x69\x6d\x65\x73\x20\x74\x68\x65\x20\x76\x69\x65\x77\x65\x64\ +\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\x73\x20\ +\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x70\x70\x6c\x69\x65\x64\x20\ +\x74\x6f\x20\x63\x75\x74\x20\x6c\x69\x6e\x65\x73\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x6e\x00\x48\x00\x69\x00\x65\x00\x72\x00\x64\x00\x69\x00\ +\x65\x00\x20\x00\x69\x00\x73\x00\x20\x00\x64\x00\x69\x00\x65\x00\ +\x20\x00\x76\x00\x65\x00\x72\x00\x73\x00\x74\x00\x65\x00\x6b\x00\ +\x6b\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x76\x00\x69\x00\ +\x72\x00\x20\x00\x6e\x00\x75\x00\x77\x00\x65\x00\x20\x00\x73\x00\ +\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x75\x00\x72\x00\ +\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x54\x68\x69\x73\x20\ +\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\ +\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x53\x74\x72\ +\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x64\x00\x48\x00\x69\x00\x65\x00\x72\x00\x64\x00\ +\x69\x00\x65\x00\x20\x00\x69\x00\x73\x00\x20\x00\x64\x00\x69\x00\ +\x65\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\x00\x74\x00\x65\x00\ +\x6b\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x76\x00\ +\x69\x00\x72\x00\x20\x00\x6e\x00\x75\x00\x77\x00\x65\x00\x20\x00\ +\x6d\x00\x75\x00\x75\x00\x72\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\ +\x77\x00\x65\x00\x72\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\ +\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ +\x20\x6e\x65\x77\x20\x57\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x55\x00\x73\x00\x65\x00\x20\ +\x00\x49\x00\x46\x00\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\ +\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x66\x00\x20\ +\x00\x61\x00\x76\x00\x61\x00\x69\x00\x6c\x00\x61\x00\x62\x00\x6c\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\x65\x20\ +\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\x69\x66\x20\ +\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x07\x00\x00\x00\x1c\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\ +\x00\x26\x00\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\x74\x00\x65\ +\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0d\x26\x41\x72\x63\x68\x69\x74\x65\x63\x74\x75\x72\ +\x65\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x0c\ +\x00\x26\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x26\x44\x72\x61\x66\x74\x07\x00\x00\x00\ +\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x42\x00\x6f\x00\ +\x6f\x00\x67\x00\x77\x00\x65\x00\x72\x00\x6b\x00\x74\x00\x75\x00\ +\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x41\x72\x63\ +\x68\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\ +\x01\x03\x00\x00\x00\x22\x00\x43\x00\x61\x00\x6c\x00\x63\x00\x75\ +\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x54\ +\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x11\x43\x61\x6c\x63\x75\x6c\x61\x74\x69\x6f\x6e\x20\x54\x6f\ +\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\ +\x00\x1a\x00\x43\x00\x6f\x00\x6e\x00\x74\x00\x65\x00\x78\x00\x74\ +\x00\x20\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x74\x65\x78\x74\x20\x54\x6f\ +\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\ +\x00\x20\x00\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x73\ +\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x54\x00\x6f\x00\x6f\x00\x6c\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x6f\x6e\x76\ +\x65\x72\x73\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\ +\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x00\x44\x00\x72\x00\ +\x61\x00\x66\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x20\x00\ +\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\x20\x74\x6f\x6f\ +\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\ +\x1a\x00\x54\x00\x65\x00\x6b\x00\x65\x00\x6e\x00\x77\x00\x65\x00\ +\x72\x00\x6b\x00\x74\x00\x75\x00\x69\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\ +\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x6e\x00\ +\x70\x00\x79\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\ +\x61\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\x6f\x00\ +\x75\x00\x6e\x00\x64\x00\x2c\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\ +\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x73\x00\x75\x00\x70\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x64\x00\x69\x00\x73\x00\ +\x61\x00\x62\x00\x6c\x00\x65\x00\x64\x00\x2e\x00\x0a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x37\x70\x79\x63\x6f\x6c\x6c\x61\x64\x61\ +\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x63\x6f\x6c\x6c\ +\x61\x64\x61\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x77\x69\x6c\x6c\ +\x20\x62\x65\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x2e\x0a\x07\x00\ +\x00\x00\x04\x61\x72\x63\x68\x01\ +\x00\x00\x50\x51\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x04\xf8\x00\x00\x47\xa4\x00\x00\x00\x4b\x00\x04\x8e\xc3\ +\x00\x00\x01\x8d\x00\x04\x8f\x03\x00\x00\x02\x54\x00\x04\x8f\x03\ +\x00\x00\x28\xe2\x00\x04\x9c\x2c\x00\x00\x2a\x8a\x00\x04\xbb\x04\ +\x00\x00\x08\x88\x00\x05\x48\x35\x00\x00\x0d\xe5\x00\x05\x67\xd5\ +\x00\x00\x10\x1f\x00\x05\x96\x56\x00\x00\x10\x77\x00\x05\x96\x56\ +\x00\x00\x33\x28\x00\x05\xa0\xa5\x00\x00\x10\x9c\x00\x05\xa0\xa5\ +\x00\x00\x36\xdb\x00\x05\xc0\x65\x00\x00\x1f\x73\x00\x05\xd8\x2c\ +\x00\x00\x21\x3c\x00\x05\xd8\x2c\x00\x00\x3b\x13\x00\x32\x23\xa5\ +\x00\x00\x48\x1c\x00\x39\xdf\x33\x00\x00\x40\x21\x00\x48\x4e\x25\ +\x00\x00\x01\x63\x00\x49\xeb\x9b\x00\x00\x2b\x86\x00\x4b\x55\x33\ +\x00\x00\x41\x6b\x00\x4d\x36\x62\x00\x00\x0b\x11\x00\x4d\x36\x62\ +\x00\x00\x2e\x54\x00\x5d\xfb\xa8\x00\x00\x21\xd2\x00\x5e\x08\xc3\ +\x00\x00\x22\x29\x00\x61\xb0\x33\x00\x00\x18\x63\x00\x62\x9b\xa8\ +\x00\x00\x11\x33\x00\x62\x9b\xa8\x00\x00\x37\x07\x00\x8a\x92\x57\ +\x00\x00\x00\x00\x00\xaa\x80\x25\x00\x00\x07\xd9\x00\xc9\x7b\xf3\ +\x00\x00\x14\x1a\x00\xfb\x72\xf3\x00\x00\x3f\x93\x01\x19\x4e\x85\ +\x00\x00\x06\x37\x01\x55\x2b\xf5\x00\x00\x05\x9e\x01\x79\x17\x94\ +\x00\x00\x25\x54\x01\x8e\x84\xa6\x00\x00\x12\xbe\x01\xad\x7d\xe3\ +\x00\x00\x49\xb7\x01\xaf\x41\x84\x00\x00\x24\x2a\x01\xf7\xa8\x83\ +\x00\x00\x46\xc5\x02\x01\x7f\xd3\x00\x00\x11\xa2\x02\x29\xb3\xc4\ +\x00\x00\x32\x51\x02\x5a\x4a\x53\x00\x00\x17\x8d\x02\x5f\xc9\x59\ +\x00\x00\x39\xc1\x02\x66\x7f\x7e\x00\x00\x0e\xdb\x02\x6a\x77\x99\ +\x00\x00\x42\xb5\x02\x80\x5f\x17\x00\x00\x26\x39\x02\x82\x88\x3a\ +\x00\x00\x04\x96\x02\x85\x4f\xf5\x00\x00\x1a\xfb\x02\x90\x40\x65\ +\x00\x00\x0d\x9d\x02\x90\x40\x65\x00\x00\x2e\x82\x02\x94\x16\x35\ +\x00\x00\x11\xe1\x02\xab\x87\xd4\x00\x00\x48\x5a\x02\xb8\xae\x74\ +\x00\x00\x2f\x88\x02\xc3\x91\x93\x00\x00\x44\x46\x02\xcd\x05\xa3\ +\x00\x00\x2e\xd6\x02\xdd\x14\x14\x00\x00\x2f\xe0\x03\x13\x15\x3e\ +\x00\x00\x0c\x49\x03\x1b\xda\x15\x00\x00\x21\x9e\x03\x1d\xe8\xe3\ +\x00\x00\x3e\x26\x03\x29\x7a\x34\x00\x00\x00\xeb\x03\x2c\xe9\xb3\ +\x00\x00\x18\xda\x03\x92\x51\xe0\x00\x00\x10\xc3\x03\xa2\xec\x23\ +\x00\x00\x21\x61\x03\xbe\xb0\x34\x00\x00\x20\x3e\x03\xce\x98\xe5\ +\x00\x00\x04\x08\x03\xd4\x22\x74\x00\x00\x27\xd8\x04\x35\xfa\x55\ +\x00\x00\x13\x93\x04\xc3\x75\x44\x00\x00\x1b\x4e\x04\xdb\x21\x3e\ +\x00\x00\x36\x12\x04\xeb\xfd\xf4\x00\x00\x0b\x70\x05\x14\x5b\x83\ +\x00\x00\x08\x08\x05\x18\xda\xa3\x00\x00\x2d\x80\x05\x5f\x3d\x83\ +\x00\x00\x3f\x17\x05\x8c\x46\xc5\x00\x00\x10\x46\x05\x90\xba\xe3\ +\x00\x00\x0f\xf1\x05\xc0\x56\xe3\x00\x00\x44\xd9\x05\xc7\xeb\xc7\ +\x00\x00\x43\x85\x05\xe0\x4b\x67\x00\x00\x21\xfc\x05\xe0\x4b\x67\ +\x00\x00\x3c\x53\x05\xef\x78\x4a\x00\x00\x25\x99\x06\x1f\x6f\xa4\ +\x00\x00\x23\x7a\x06\x32\xe3\xe3\x00\x00\x4a\x1b\x06\x5b\x01\x15\ +\x00\x00\x03\xd3\x06\x69\xd0\x04\x00\x00\x22\xe8\x06\x9f\x6f\xd4\ +\x00\x00\x07\x65\x06\xd6\x3f\xa4\x00\x00\x25\x04\x06\xe6\x2f\x43\ +\x00\x00\x13\x25\x07\x00\xcc\xc4\x00\x00\x41\x1c\x07\x07\x84\xba\ +\x00\x00\x4a\x5f\x07\x08\x43\x0e\x00\x00\x29\x0e\x07\x16\x58\x05\ +\x00\x00\x3c\xdc\x07\x25\x74\x53\x00\x00\x2c\x65\x07\x28\xff\x15\ +\x00\x00\x0e\x61\x07\x36\x51\x26\x00\x00\x15\x06\x07\x5c\xdc\x04\ +\x00\x00\x22\x53\x07\x60\x23\xf3\x00\x00\x03\x32\x07\xca\xf8\x87\ +\x00\x00\x3c\x87\x08\x25\x81\xc4\x00\x00\x07\x06\x08\x4a\x45\xd9\ +\x00\x00\x3b\x3d\x08\x65\x4c\x95\x00\x00\x1d\xc4\x08\xc5\xe3\x35\ +\x00\x00\x1c\xf3\x08\xca\xc9\x74\x00\x00\x16\x48\x08\xfb\xb8\xa4\ +\x00\x00\x0a\xa2\x09\x69\xac\xa7\x00\x00\x20\xb3\x09\x6c\x6c\xa7\ +\x00\x00\x0b\x39\x09\x9f\xcc\xde\x00\x00\x24\x92\x09\xba\xe6\x35\ +\x00\x00\x11\x70\x09\xba\xe6\x35\x00\x00\x39\x85\x09\xc5\xbe\xca\ +\x00\x00\x09\xfc\x09\xe3\x98\xe4\x00\x00\x28\x20\x09\xed\x98\x55\ +\x00\x00\x34\x3e\x0a\x3e\x06\x83\x00\x00\x05\x20\x0a\x3f\x1f\xd6\ +\x00\x00\x05\x60\x0a\x3f\x2b\x25\x00\x00\x05\xf5\x0a\x3f\x5d\xac\ +\x00\x00\x06\x82\x0a\x7f\xee\xa3\x00\x00\x48\x89\x0a\xb6\xc8\x9a\ +\x00\x00\x0b\x97\x0a\xbf\x46\x0e\x00\x00\x1f\x96\x0a\xd6\x07\x84\ +\x00\x00\x22\x86\x0b\x0a\xc3\xf3\x00\x00\x00\x7b\x0b\x51\x30\xa8\ +\x00\x00\x31\x22\x0b\x65\xda\xb3\x00\x00\x3e\xab\x0b\x8d\x97\x93\ +\x00\x00\x45\xfb\x0b\x9c\x5b\xe7\x00\x00\x09\x59\x0b\xb9\xe8\x93\ +\x00\x00\x31\x9b\x0b\xc4\xb1\x23\x00\x00\x2a\xb6\x0c\x02\xac\xd7\ +\x00\x00\x03\x03\x0c\x02\xac\xd7\x00\x00\x29\x75\x0c\x25\x3e\x53\ +\x00\x00\x35\x05\x0c\x3c\x8b\x33\x00\x00\x48\xc8\x0c\x41\x0a\x83\ +\x00\x00\x49\x1a\x0c\x4e\x9b\x23\x00\x00\x34\x89\x0c\x98\x80\x23\ +\x00\x00\x49\x60\x0c\xc4\xd0\x80\x00\x00\x27\x06\x0c\xdf\x5a\x1e\ +\x00\x00\x01\xb6\x0c\xfc\x97\x06\x00\x00\x21\x06\x0d\x03\x26\xb4\ +\x00\x00\x02\xbe\x0d\x08\x90\xf3\x00\x00\x1c\x88\x0d\x1e\xda\xa4\ +\x00\x00\x03\x6b\x0d\x3b\x3b\x49\x00\x00\x38\x0b\x0d\xa8\x3a\x35\ +\x00\x00\x19\x31\x0d\xc1\x7d\x47\x00\x00\x27\x64\x0d\xfa\x53\xe5\ +\x00\x00\x08\xb9\x0e\x69\x87\x13\x00\x00\x33\x52\x0e\x8c\xd7\x43\ +\x00\x00\x37\x4e\x0e\x98\x0a\xd6\x00\x00\x1f\xd8\x0e\xab\x8d\x1f\ +\x00\x00\x3d\x85\x0e\xb9\x1b\xf2\x00\x00\x15\xed\x0e\xec\x0b\x9e\ +\x00\x00\x29\xad\x0f\x16\x4a\x24\x00\x00\x1e\xdb\x0f\x17\xc7\xa3\ +\x00\x00\x2b\xc0\x0f\x55\xc1\x57\x00\x00\x06\xc0\x0f\x78\x41\x05\ +\x00\x00\x47\x82\x0f\x79\xe3\xf3\x00\x00\x2c\xb2\x0f\x95\xd5\x09\ +\x00\x00\x1a\x01\x0f\xa2\x16\x43\x00\x00\x1e\xaf\x0f\xc0\xb8\xb4\ +\x00\x00\x0e\x0a\x0f\xd0\x39\x44\x00\x00\x02\x7b\x0f\xe5\x74\x74\ +\x00\x00\x00\xb3\x0f\xf3\xe8\x33\x00\x00\x40\x92\x69\x00\x00\x4b\ +\x3f\x03\x00\x00\x00\x22\x00\x20\x00\x47\x00\x65\x00\x62\x00\xe4\ +\x00\x75\x00\x64\x00\x65\x00\x20\x00\x65\x00\x72\x00\x7a\x00\x65\ +\x00\x75\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x10\x20\x43\x72\x65\x61\x74\x65\x20\x42\x75\x69\x6c\x64\x69\ +\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x14\x00\x48\x00\x69\x00\x6e\x00\x7a\x00\x75\x00\x66\x00\xfc\x00\ +\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\ +\x64\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x16\x00\x45\x00\x72\x00\x67\x00\xe4\x00\x6e\x00\x7a\x00\x75\x00\ +\x6e\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x09\x41\x64\x64\x69\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x41\x00\x75\x00\x73\x00\ +\x72\x00\x69\x00\x63\x00\x68\x00\x74\x00\x75\x00\x6e\x00\x67\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x41\x6c\x69\x67\x6e\x6d\x65\ +\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x44\x00\x41\x00\x6c\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x67\x00\ +\x75\x00\x74\x00\x21\x00\x20\x00\x4b\x00\x65\x00\x69\x00\x6e\x00\ +\x65\x00\x20\x00\x50\x00\x72\x00\x6f\x00\x62\x00\x6c\x00\x65\x00\ +\x6d\x00\x65\x00\x20\x00\x67\x00\x65\x00\x66\x00\x75\x00\x6e\x00\ +\x64\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x41\ +\x6c\x6c\x20\x67\x6f\x6f\x64\x21\x20\x6e\x6f\x20\x70\x72\x6f\x62\ +\x6c\x65\x6d\x73\x20\x66\x6f\x75\x6e\x64\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x57\x00\x69\x00\x6e\x00\ +\x6b\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\ +\x6e\x67\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x0c\x00\x41\x00\x63\x00\x68\x00\x73\x00\x65\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\x65\x73\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5e\x00\x41\x00\x63\ +\x00\x68\x00\x73\x00\x65\x00\x6e\x00\x73\x00\x79\x00\x73\x00\x74\ +\x00\x65\x00\x6d\x00\x65\x00\x2c\x00\x20\x00\x61\x00\x75\x00\x66\ +\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x64\ +\x00\x69\x00\x65\x00\x73\x00\x65\x00\x20\x00\x53\x00\x74\x00\x72\ +\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x72\x00\x20\x00\x62\x00\x61\ +\x00\x73\x00\x69\x00\x65\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x27\x41\x78\x65\x73\x20\x73\x79\x73\x74\x65\x6d\x73\ +\x20\x74\x68\x69\x73\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\ +\x69\x73\x20\x62\x75\x69\x6c\x74\x20\x6f\x6e\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x41\x00\x63\x00\x68\ +\x00\x73\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\ +\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x1c\x00\x32\x00\x44\x00\x20\x00\x42\x00\x61\x00\x73\x00\x69\x00\ +\x73\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0e\x42\x61\x73\x65\x20\x32\x44\x20\x6f\ +\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x1e\x00\x42\x00\x61\x00\x73\x00\x69\x00\x73\x00\x6b\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x42\x61\x73\x65\ +\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x47\x00\x65\x00\x62\x00\ +\xe4\x00\x75\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x16\x00\x4b\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x36\x00\x4b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\ +\x6e\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x65\x00\ +\x73\x00\x65\x00\x73\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x19\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\ +\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x46\x00\x6f\x00\x72\x00\ +\x74\x00\x73\x00\x65\x00\x74\x00\x7a\x00\x65\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x43\x6f\x6e\x74\x69\x6e\x75\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x56\x00\x44\ +\x00\x69\x00\x65\x00\x20\x00\x57\x00\x61\x00\x6e\x00\x64\x00\x2d\ +\x00\x46\x00\x6f\x00\x72\x00\x6d\x00\x20\x00\x6b\x00\x6f\x00\x6e\ +\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\ +\x00\x74\x00\x20\x00\x62\x00\x65\x00\x72\x00\x65\x00\x63\x00\x68\ +\x00\x6e\x00\x65\x00\x74\x00\x20\x00\x77\x00\x65\x00\x72\x00\x64\ +\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x43\x6f\ +\x75\x6c\x64\x6e\x27\x74\x20\x63\x6f\x6d\x70\x75\x74\x65\x20\x74\ +\x68\x65\x20\x77\x61\x6c\x6c\x20\x73\x68\x61\x70\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x54\x00\x49\x00\x66\ +\x00\x63\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\ +\x00\x6c\x00\x6c\x00\x20\x00\x6b\x00\x6f\x00\x6e\x00\x6e\x00\x74\ +\x00\x65\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\x00\x74\x00\x20\ +\x00\x67\x00\x65\x00\x66\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x6e\ +\x00\x20\x00\x77\x00\x65\x00\x72\x00\x64\x00\x65\x00\x6e\x00\x20\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x43\x6f\x75\x6c\x64\x6e\ +\x27\x74\x20\x6c\x6f\x63\x61\x74\x65\x20\x49\x66\x63\x4f\x70\x65\ +\x6e\x53\x68\x65\x6c\x6c\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x1c\x00\x41\x00\x63\x00\x68\x00\x73\x00\x65\ +\x00\x20\x00\x65\x00\x72\x00\x7a\x00\x65\x00\x75\x00\x67\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\ +\x74\x65\x20\x41\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x1a\x00\x44\x00\x61\x00\x63\x00\x68\x00\x20\ +\x00\x65\x00\x72\x00\x7a\x00\x65\x00\x75\x00\x67\x00\x65\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\ +\x20\x52\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x2a\x00\x53\x00\x63\x00\x68\x00\x6e\x00\x69\x00\x74\ +\x00\x74\x00\x65\x00\x62\x00\x65\x00\x6e\x00\x65\x00\x20\x00\x65\ +\x00\x72\x00\x7a\x00\x65\x00\x75\x00\x67\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\x74\x65\x20\x53\ +\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x00\x53\x00\x65\x00\ +\x69\x00\x74\x00\x65\x00\x20\x00\x65\x00\x72\x00\x73\x00\x74\x00\ +\x65\x00\x6c\x00\x6c\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x53\x69\x74\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x22\x00\x53\x00\ +\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x72\x00\x20\x00\ +\x65\x00\x72\x00\x7a\x00\x65\x00\x75\x00\x67\x00\x65\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\x74\x65\x20\ +\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x57\x00\x61\x00\x6e\x00\x64\ +\x00\x20\x00\x65\x00\x72\x00\x7a\x00\x65\x00\x75\x00\x67\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\ +\x74\x65\x20\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x20\x00\x46\x00\x65\x00\x6e\x00\x73\x00\x74\ +\x00\x65\x00\x72\x00\x20\x00\x65\x00\x72\x00\x7a\x00\x65\x00\x75\ +\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ +\x43\x72\x65\x61\x74\x65\x20\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x4e\x00\x65\ +\x00\x75\x00\x65\x00\x20\x00\x4b\x00\x6f\x00\x6d\x00\x70\x00\x6f\ +\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x65\x00\x72\ +\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\x74\x65\x20\x6e\ +\x65\x77\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x44\x00\x45\x00\x72\x00\ +\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x2f\x00\ +\x20\x00\x61\x00\x6b\x00\x74\x00\x75\x00\x61\x00\x6c\x00\x69\x00\ +\x73\x00\x69\x00\x65\x00\x72\x00\x65\x00\x20\x00\x4b\x00\x6f\x00\ +\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\x74\x65\x2f\ +\x75\x70\x64\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\ +\x41\x00\x62\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x46\x00\x41\ +\x00\x62\x00\x73\x00\x74\x00\xe4\x00\x6e\x00\x64\x00\x65\x00\x20\ +\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x57\x00\x69\x00\x6e\x00\x6b\ +\x00\x65\x00\x6c\x00\x20\x00\x7a\x00\x77\x00\x69\x00\x73\x00\x63\ +\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x41\x00\x63\x00\x68\x00\x73\ +\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x44\x69\ +\x73\x74\x61\x6e\x63\x65\x73\x20\x61\x6e\x64\x20\x61\x6e\x67\x6c\ +\x65\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x61\x78\x65\x73\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x42\ +\x00\x65\x00\x61\x00\x72\x00\x62\x00\x65\x00\x69\x00\x74\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x60\x00\ +\x46\x00\x65\x00\x68\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x62\x00\ +\x65\x00\x69\x00\x6d\x00\x20\x00\x45\x00\x6e\x00\x74\x00\x66\x00\ +\x65\x00\x72\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x6f\x00\ +\x6e\x00\x20\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x61\x00\x75\x00\x73\x00\x20\x00\x57\x00\ +\x61\x00\x6e\x00\x64\x00\x20\x00\x46\x00\x6f\x00\x72\x00\x6d\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x27\x45\x72\x72\x6f\x72\x20\x72\ +\x65\x6d\x6f\x76\x69\x6e\x67\x20\x73\x70\x6c\x69\x74\x74\x65\x72\ +\x20\x66\x72\x6f\x6d\x20\x77\x61\x6c\x6c\x20\x73\x68\x61\x70\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5e\x00\ +\x46\x00\x65\x00\x68\x00\x6c\x00\x65\x00\x72\x00\x3a\x00\x20\x00\ +\x4b\x00\x6f\x00\x6e\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x5a\x00\ +\x65\x00\x69\x00\x63\x00\x68\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\ +\x64\x00\x69\x00\x65\x00\x72\x00\x75\x00\x6e\x00\x67\x00\x20\x00\ +\x6e\x00\x69\x00\x63\x00\x68\x00\x74\x00\x20\x00\x62\x00\x65\x00\ +\x73\x00\x74\x00\x69\x00\x6d\x00\x6d\x00\x65\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x2c\x45\x72\x72\x6f\x72\x3a\x20\x43\x6f\ +\x75\x6c\x64\x6e\x27\x74\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\ +\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\x65\x6e\x63\x6f\x64\ +\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x60\x00\x46\x00\x65\x00\x68\x00\x6c\x00\x65\x00\x72\x00\x3a\ +\x00\x20\x00\x4b\x00\x6f\x00\x6e\x00\x6e\x00\x74\x00\x65\x00\x20\ +\x00\x5a\x00\x65\x00\x69\x00\x63\x00\x68\x00\x65\x00\x6e\x00\x63\ +\x00\x6f\x00\x64\x00\x69\x00\x65\x00\x72\x00\x75\x00\x6e\x00\x67\ +\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\x00\x74\x00\x20\x00\x62\ +\x00\x65\x00\x73\x00\x74\x00\x69\x00\x6d\x00\x6d\x00\x65\x00\x6e\ +\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x45\x72\x72\x6f\ +\x72\x3a\x20\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x64\x65\x74\x65\ +\x72\x6d\x69\x6e\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\ +\x65\x6e\x63\x6f\x64\x69\x6e\x67\x0a\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x3c\x00\x46\x00\x65\x00\x68\x00\x6c\ +\x00\x65\x00\x72\x00\x3a\x00\x20\x00\x55\x00\x6e\x00\x67\x00\xfc\ +\x00\x6c\x00\x74\x00\x69\x00\x67\x00\x65\x00\x73\x00\x20\x00\x42\ +\x00\x61\x00\x73\x00\x69\x00\x73\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x45\x72\ +\x72\x6f\x72\x3a\x20\x49\x6e\x76\x61\x6c\x69\x64\x20\x62\x61\x73\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x0a\x00\x42\x00\x6f\x00\x64\x00\x65\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\x72\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\ +\x47\x00\x72\x00\x75\x00\x70\x00\x70\x00\x69\x00\x65\x00\x72\x00\ +\x75\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x47\ +\x72\x6f\x75\x70\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x08\x00\x48\x00\xf6\x00\x68\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x48\x65\x69\x67\x68\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x6e\x00\x49\x00\ +\x46\x00\x43\x00\x20\x00\x53\x00\x63\x00\x68\x00\x65\x00\x6d\x00\ +\x61\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\x00\x74\x00\x20\x00\ +\x67\x00\x65\x00\x66\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\ +\x2c\x00\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\x69\x00\x6d\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x00\x69\x00\x65\x00\x72\x00\x65\x00\ +\x6e\x00\x20\x00\x64\x00\x65\x00\x61\x00\x6b\x00\x74\x00\x69\x00\ +\x76\x00\x69\x00\x65\x00\x72\x00\x74\x00\x20\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2b\x49\x46\x43\x20\x53\x63\x68\x65\x6d\x61\x20\ +\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x49\x46\x43\x20\x69\ +\x6d\x70\x6f\x72\x74\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x2e\x0a\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xd2\x00\ +\x57\x00\x65\x00\x6e\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x65\x00\ +\x73\x00\x65\x00\x20\x00\x57\x00\x61\x00\x6e\x00\x64\x00\x20\x00\ +\x61\x00\x75\x00\x66\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x20\x00\ +\x46\x00\x61\x00\x63\x00\x65\x00\x20\x00\x62\x00\x61\x00\x73\x00\ +\x69\x00\x65\x00\x72\x00\x74\x00\x2c\x00\x20\x00\x77\x00\x69\x00\ +\x72\x00\x64\x00\x20\x00\x73\x00\x65\x00\x69\x00\x6e\x00\x65\x00\ +\x20\x00\x44\x00\x72\x00\x61\x00\x68\x00\x74\x00\x67\x00\x72\x00\ +\x65\x00\x6e\x00\x7a\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x73\x00\ +\x20\x00\x53\x00\x70\x00\x75\x00\x72\x00\x20\x00\x76\x00\x65\x00\ +\x72\x00\x77\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x74\x00\x20\x00\ +\x75\x00\x6e\x00\x64\x00\x20\x00\x46\x00\x61\x00\x63\x00\x65\x00\ +\x20\x00\x6e\x00\x69\x00\x63\x00\x68\x00\x74\x00\x20\x00\x76\x00\ +\x65\x00\x72\x00\x77\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x74\x00\ +\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x69\x49\x66\x20\x54\x72\ +\x75\x65\x2c\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\ +\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x66\ +\x61\x63\x65\x2c\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x75\x73\x65\ +\x20\x69\x74\x73\x20\x62\x6f\x72\x64\x65\x72\x20\x77\x69\x72\x65\ +\x20\x61\x73\x20\x74\x72\x61\x63\x65\x2c\x20\x61\x6e\x64\x20\x64\ +\x69\x73\x63\x6f\x6e\x73\x69\x64\x65\x72\x20\x74\x68\x65\x20\x66\ +\x61\x63\x65\x2e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x22\x00\x56\x00\x65\x00\x72\x00\x6e\x00\x65\x00\x74\x00\ +\x7a\x00\x65\x00\x20\x00\x7a\x00\x75\x00\x72\x00\x20\x00\x46\x00\ +\x6f\x00\x72\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\ +\x65\x73\x68\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x4e\x00\x61\x00\ +\x6d\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\x61\x6d\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2c\ +\x00\x4b\x00\x65\x00\x69\x00\x6e\x00\x20\x00\x4f\x00\x62\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x61\x00\x75\x00\x73\x00\x67\ +\x00\x65\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x12\x4e\x6f\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x42\x00\x44\x00\x69\x00\x65\x00\x20\x00\ +\x45\x00\x62\x00\x65\x00\x6e\x00\x65\x00\x20\x00\x73\x00\x63\x00\ +\x68\x00\x6e\x00\x65\x00\x69\x00\x64\x00\x65\x00\x74\x00\x20\x00\ +\x6b\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x4f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1f\x4e\x6f\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x72\ +\x65\x20\x63\x75\x74\x20\x62\x79\x20\x74\x68\x65\x20\x70\x6c\x61\ +\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\xb2\x00\x45\x00\x73\x00\x20\x00\x77\x00\x75\x00\x72\x00\x64\x00\ +\x65\x00\x20\x00\x6e\x00\x6f\x00\x63\x00\x68\x00\x20\x00\x65\x00\ +\x69\x00\x6e\x00\x65\x00\x20\x00\x46\x00\x6f\x00\x72\x00\x6d\x00\ +\x20\x00\x62\x00\x65\x00\x72\x00\x65\x00\x63\x00\x68\x00\x6e\x00\ +\x65\x00\x74\x00\x2c\x00\x20\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\ +\x65\x00\x6e\x00\x20\x00\x53\x00\x69\x00\x65\x00\x20\x00\x44\x00\ +\x72\x00\x61\x00\x74\x00\x67\x00\x69\x00\x74\x00\x74\x00\x65\x00\ +\x72\x00\x20\x00\x52\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x75\x00\x73\x00\x20\x00\ +\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x6e\x00\x20\x00\ +\x53\x00\x69\x00\x65\x00\x20\x00\x65\x00\x72\x00\x6e\x00\x65\x00\ +\x75\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4b\x4e\x6f\x20\ +\x73\x68\x61\x70\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x63\ +\x6f\x6d\x70\x75\x74\x65\x64\x20\x79\x65\x74\x2c\x20\x73\x65\x6c\ +\x65\x63\x74\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\x72\x65\ +\x6e\x64\x65\x72\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x65\x6e\x64\ +\x65\x72\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x0e\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x4f\ +\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x0a\x00\x53\x00\x65\x00\x69\x00\x74\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x50\x61\x67\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x45\x00\x6e\ +\x00\x74\x00\x66\x00\x65\x00\x72\x00\x6e\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x52\x65\x6d\x6f\x76\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x44\x00\ +\x61\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x52\ +\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0a\x00\x53\x00\x65\x00\x69\x00\x74\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\xdc\x00\x62\x00\x65\x00\ +\x72\x00\x73\x00\x70\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x65\x00\ +\x20\x00\x75\x00\x6e\x00\x67\x00\xfc\x00\x6c\x00\x74\x00\x69\x00\ +\x67\x00\x65\x00\x73\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x19\x53\x6b\x69\x70\x70\x69\x6e\x67\x20\x69\x6e\x76\x61\x6c\x69\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x4e\x00\x65\x00\x74\x00\ +\x7a\x00\x20\x00\x7a\x00\x65\x00\x72\x00\x6c\x00\x65\x00\x67\x00\ +\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\ +\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x10\x00\x53\x00\x74\x00\x72\x00\x75\x00\x6b\ +\x00\x74\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x53\x00\x75\x00\x62\x00\x74\ +\x00\x72\x00\x61\x00\x6b\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x75\x62\x74\ +\x72\x61\x63\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x88\x00\x44\x00\x69\x00\x65\x00\x20\x00\ +\x41\x00\x75\x00\x73\x00\x72\x00\x69\x00\x63\x00\x68\x00\x74\x00\ +\x75\x00\x6e\x00\x67\x00\x20\x00\x64\x00\x69\x00\x65\x00\x73\x00\ +\x65\x00\x72\x00\x20\x00\x4d\x00\x61\x00\x75\x00\x65\x00\x72\x00\ +\x20\x00\x61\x00\x75\x00\x66\x00\x20\x00\x69\x00\x68\x00\x72\x00\ +\x65\x00\x6d\x00\x20\x00\x42\x00\x61\x00\x73\x00\x69\x00\x73\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x2c\x00\x20\x00\ +\x66\x00\x61\x00\x6c\x00\x6c\x00\x73\x00\x20\x00\x7a\x00\x75\x00\ +\x74\x00\x72\x00\x65\x00\x66\x00\x66\x00\x65\x00\x6e\x00\x64\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x3c\x54\x68\x65\x20\x61\x6c\x69\ +\x67\x6e\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\ +\x61\x6c\x6c\x20\x6f\x6e\x20\x69\x74\x73\x20\x62\x61\x73\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x2c\x20\x69\x66\x20\x61\x70\x70\x6c\x69\ +\x63\x61\x62\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x38\x00\x44\x00\x65\x00\x72\x00\x20\x00\x57\x00\x69\ +\x00\x6e\x00\x6b\x00\x65\x00\x6c\x00\x20\x00\x64\x00\x65\x00\x73\ +\x00\x20\x00\x64\x00\x69\x00\x65\x00\x73\x00\x65\x00\x73\x00\x20\ +\x00\x44\x00\x61\x00\x63\x00\x68\x00\x65\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x16\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\x20\ +\x6f\x66\x20\x74\x68\x69\x73\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x44\x00\x69\x00\ +\x65\x00\x20\x00\x57\x00\x69\x00\x6e\x00\x6b\x00\x65\x00\x6c\x00\ +\x20\x00\x64\x00\x65\x00\x72\x00\x20\x00\x65\x00\x69\x00\x6e\x00\ +\x7a\x00\x65\x00\x6c\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x41\x00\ +\x63\x00\x68\x00\x73\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x17\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\x73\x20\x6f\x66\ +\x20\x65\x61\x63\x68\x20\x61\x78\x69\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x48\x00\x44\x00\x69\x00\x65\x00\ +\x20\x00\x44\x00\x69\x00\x73\x00\x70\x00\x6c\x00\x61\x00\x79\x00\ +\x67\x00\x72\x00\xf6\x00\xdf\x00\x65\x00\x20\x00\x64\x00\x69\x00\ +\x65\x00\x73\x00\x65\x00\x72\x00\x20\x00\x53\x00\x63\x00\x68\x00\ +\x6e\x00\x69\x00\x74\x00\x74\x00\x65\x00\x62\x00\x65\x00\x6e\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x26\x54\x68\x65\x20\x64\ +\x69\x73\x70\x6c\x61\x79\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\x74\ +\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x90\ +\x00\x44\x00\x69\x00\x65\x00\x20\x00\x45\x00\x6c\x00\x65\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x2d\x00\x4e\x00\x75\x00\x6d\x00\x6d\ +\x00\x65\x00\x72\x00\x6e\x00\x20\x00\x61\x00\x75\x00\x73\x00\x73\ +\x00\x63\x00\x68\x00\x6c\x00\x69\x00\x65\x00\xdf\x00\x65\x00\x6e\ +\x00\x2c\x00\x20\x00\x77\x00\x65\x00\x6e\x00\x6e\x00\x20\x00\x64\ +\x00\x69\x00\x65\x00\x73\x00\x65\x00\x20\x00\x53\x00\x74\x00\x72\ +\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x72\x00\x20\x00\x61\x00\x75\ +\x00\x66\x00\x20\x00\x41\x00\x63\x00\x68\x00\x73\x00\x65\x00\x6e\ +\x00\x20\x00\x62\x00\x61\x00\x73\x00\x69\x00\x65\x00\x72\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\x54\x68\x65\x20\x65\x6c\ +\x65\x6d\x65\x6e\x74\x20\x6e\x75\x6d\x62\x65\x72\x73\x20\x74\x6f\ +\x20\x65\x78\x63\x6c\x75\x64\x65\x20\x77\x68\x65\x6e\x20\x74\x68\ +\x69\x73\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x69\x73\x20\ +\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x78\x65\x73\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x94\x00\x4e\x00\x75\ +\x00\x6d\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\x00\x72\ +\x00\x20\x00\x4f\x00\x62\x00\x65\x00\x72\x00\x66\x00\x6c\x00\xe4\ +\x00\x63\x00\x68\x00\x65\x00\x20\x00\x61\x00\x75\x00\x66\x00\x20\ +\x00\x64\x00\x65\x00\x6d\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x2c\x00\x20\x00\x61\x00\x75\x00\x73\x00\x20\ +\x00\x64\x00\x65\x00\x6d\x00\x20\x00\x64\x00\x61\x00\x73\x00\x20\ +\x00\x44\x00\x61\x00\x63\x00\x68\x00\x20\x00\x65\x00\x72\x00\x7a\ +\x00\x65\x00\x75\x00\x67\x00\x74\x00\x20\x00\x77\x00\x65\x00\x72\ +\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x6c\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3a\x54\x68\x65\x20\x66\x61\ +\x63\x65\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x74\x68\x65\ +\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x75\x73\x65\ +\x64\x20\x74\x6f\x20\x62\x75\x69\x6c\x64\x20\x74\x68\x69\x73\x20\ +\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x2a\x00\x44\x00\x69\x00\x65\x00\x20\x00\x48\x00\xf6\x00\ +\x68\x00\x65\x00\x20\x00\x64\x00\x69\x00\x65\x00\x73\x00\x65\x00\ +\x72\x00\x20\x00\x45\x00\x74\x00\x61\x00\x67\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x18\x54\x68\x65\x20\x68\x65\x69\x67\x68\ +\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x66\x6c\x6f\x6f\x72\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xd4\x00\x48\ +\x00\xf6\x00\x68\x00\x65\x00\x20\x00\x64\x00\x69\x00\x65\x00\x73\ +\x00\x65\x00\x72\x00\x20\x00\x4d\x00\x61\x00\x75\x00\x65\x00\x72\ +\x00\x20\x00\x28\x00\x30\x00\x20\x00\x66\x00\xfc\x00\x72\x00\x20\ +\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\ +\x00\x73\x00\x63\x00\x68\x00\x29\x00\x2e\x00\x20\x00\x57\x00\x69\ +\x00\x72\x00\x64\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\x00\x74\ +\x00\x20\x00\x76\x00\x65\x00\x72\x00\x77\x00\x65\x00\x6e\x00\x64\ +\x00\x65\x00\x74\x00\x2c\x00\x20\x00\x77\x00\x65\x00\x6e\x00\x6e\ +\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x57\x00\x61\x00\x6e\ +\x00\x64\x00\x20\x00\x61\x00\x75\x00\x66\x00\x20\x00\x65\x00\x69\ +\x00\x6e\x00\x65\x00\x6d\x00\x20\x00\x56\x00\x6f\x00\x6c\x00\x75\ +\x00\x6d\x00\x65\x00\x6e\x00\x6b\x00\xf6\x00\x72\x00\x70\x00\x65\ +\x00\x72\x00\x20\x00\x62\x00\x61\x00\x73\x00\x69\x00\x65\x00\x72\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x58\x54\x68\x65\x20\ +\x68\x65\x69\x67\x68\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\ +\x61\x6c\x6c\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\x20\ +\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x2e\x20\x4e\x6f\x74\x20\x75\ +\x73\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\ +\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x73\ +\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x7a\x00\x48\x00\xf6\x00\x68\x00\x65\x00\x20\x00\x6f\x00\ +\x64\x00\x65\x00\x72\x00\x20\x00\x45\x00\x78\x00\x74\x00\x72\x00\ +\x75\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x69\x00\ +\x65\x00\x66\x00\x65\x00\x20\x00\x64\x00\x69\x00\x65\x00\x73\x00\ +\x65\x00\x73\x00\x20\x00\x45\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x73\x00\x20\x00\x28\x00\x30\x00\x20\x00\x66\x00\ +\xfc\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\ +\x61\x00\x74\x00\x69\x00\x73\x00\x63\x00\x68\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x43\x54\x68\x65\x20\x68\x65\x69\x67\x68\ +\x74\x20\x6f\x72\x20\x65\x78\x74\x72\x75\x73\x69\x6f\x6e\x20\x64\ +\x65\x70\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\ +\x6d\x65\x6e\x74\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\ +\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x44\x00\x44\x00\x69\x00\x65\x00\ +\x20\x00\x49\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x76\x00\x61\x00\ +\x6c\x00\x6c\x00\x65\x00\x20\x00\x7a\x00\x77\x00\x69\x00\x73\x00\ +\x63\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x6e\x00\ +\x20\x00\x41\x00\x63\x00\x68\x00\x73\x00\x65\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1a\x54\x68\x65\x20\x69\x6e\x74\x65\x72\ +\x76\x61\x6c\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x61\x78\x65\ +\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\ +\x00\x44\x00\x69\x00\x65\x00\x20\x00\x4c\x00\xe4\x00\x6e\x00\x67\ +\x00\x65\x00\x20\x00\x64\x00\x65\x00\x72\x00\x20\x00\x41\x00\x63\ +\x00\x68\x00\x73\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x16\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\ +\x74\x68\x65\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x82\x00\x44\x00\x69\x00\x65\x00\x20\x00\ +\x4c\x00\xe4\x00\x6e\x00\x67\x00\x65\x00\x20\x00\x64\x00\x69\x00\ +\x65\x00\x73\x00\x65\x00\x73\x00\x20\x00\x45\x00\x6c\x00\x65\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x2c\x00\x20\x00\x77\x00\ +\x65\x00\x6e\x00\x6e\x00\x20\x00\x65\x00\x73\x00\x20\x00\x6e\x00\ +\x69\x00\x63\x00\x68\x00\x74\x00\x20\x00\x61\x00\x75\x00\x66\x00\ +\x20\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x6d\x00\x20\x00\x50\x00\ +\x72\x00\x6f\x00\x66\x00\x69\x00\x6c\x00\x20\x00\x62\x00\x61\x00\ +\x73\x00\x69\x00\x65\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x35\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\x20\x69\ +\x66\x20\x6e\x6f\x74\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\ +\x20\x70\x72\x6f\x66\x69\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x90\x00\x52\x00\x69\x00\x63\x00\x68\x00\ +\x74\x00\x75\x00\x6e\x00\x67\x00\x20\x00\x64\x00\x65\x00\x72\x00\ +\x20\x00\x4e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x65\x00\ +\x6e\x00\x2d\x00\x45\x00\x78\x00\x74\x00\x72\x00\x75\x00\x73\x00\ +\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x65\x00\x73\x00\ +\x65\x00\x73\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x73\x00\x20\x00\x28\x00\x28\x00\x30\x00\x2c\x00\x30\x00\ +\x2c\x00\x30\x00\x29\x00\x20\x00\x66\x00\xfc\x00\x72\x00\x20\x00\ +\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\ +\x73\x00\x63\x00\x68\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x51\x54\x68\x65\x20\x6e\x6f\x72\x6d\x61\x6c\x20\x65\x78\x74\x72\ +\x75\x73\x69\x6f\x6e\x20\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x20\ +\x6f\x66\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\ +\x6b\x65\x65\x70\x20\x28\x30\x2c\x30\x2c\x30\x29\x20\x66\x6f\x72\ +\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x20\x6e\x6f\x72\x6d\x61\ +\x6c\x29\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x26\x00\x44\x00\x65\x00\x72\x00\x20\x00\x41\x00\x75\x00\x66\x00\ +\x7a\x00\xe4\x00\x68\x00\x6c\x00\x75\x00\x6e\x00\x67\x00\x73\x00\ +\x73\x00\x74\x00\x69\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x14\x54\x68\x65\x20\x6e\x75\x6d\x65\x72\x61\x74\x69\x6f\x6e\x20\ +\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\xce\x00\x44\x00\x69\x00\x65\x00\x20\x00\x4f\x00\x62\ +\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x2c\x00\x20\x00\x64\ +\x00\x69\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x64\ +\x00\x69\x00\x65\x00\x73\x00\x65\x00\x72\x00\x20\x00\x53\x00\x63\ +\x00\x68\x00\x6e\x00\x69\x00\x74\x00\x74\x00\x65\x00\x62\x00\x65\ +\x00\x6e\x00\x65\x00\x20\x00\x62\x00\x65\x00\x72\x00\xfc\x00\x63\ +\x00\x6b\x00\x73\x00\x69\x00\x63\x00\x68\x00\x74\x00\x69\x00\x67\ +\x00\x74\x00\x20\x00\x77\x00\x65\x00\x72\x00\x64\x00\x65\x00\x6e\ +\x00\x20\x00\x6d\x00\xfc\x00\x73\x00\x73\x00\x65\x00\x6e\x00\x2e\ +\x00\x20\x00\x4c\x00\x65\x00\x65\x00\x72\x00\x20\x00\x62\x00\x65\ +\x00\x64\x00\x65\x00\x75\x00\x74\x00\x65\x00\x74\x00\x20\x00\x64\ +\x00\x61\x00\x73\x00\x20\x00\x67\x00\x61\x00\x6e\x00\x7a\x00\x65\ +\x00\x20\x00\x44\x00\x6f\x00\x6b\x00\x75\x00\x6d\x00\x65\x00\x6e\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\x54\x68\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x74\x68\x61\x74\x20\x6d\x75\x73\ +\x74\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\ +\x62\x79\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\ +\x70\x6c\x61\x6e\x65\x2e\x20\x45\x6d\x70\x74\x79\x20\x6d\x65\x61\ +\x6e\x73\x20\x61\x6c\x6c\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x36\x00\x44\ +\x00\x69\x00\x65\x00\x20\x00\x47\x00\x72\x00\xf6\x00\xdf\x00\x65\ +\x00\x20\x00\x64\x00\x65\x00\x72\x00\x20\x00\x41\x00\x63\x00\x68\ +\x00\x73\x00\x65\x00\x6e\x00\x2d\x00\x42\x00\x6c\x00\x61\x00\x73\ +\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x54\x68\ +\x65\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\ +\x69\x73\x20\x62\x75\x62\x62\x6c\x65\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x84\x00\x44\x00\x69\x00\x65\x00\ +\x20\x00\x42\x00\x72\x00\x65\x00\x69\x00\x74\x00\x65\x00\x20\x00\ +\x64\x00\x69\x00\x65\x00\x73\x00\x65\x00\x73\x00\x20\x00\x45\x00\ +\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x2c\x00\ +\x20\x00\x77\x00\x65\x00\x6e\x00\x6e\x00\x20\x00\x65\x00\x73\x00\ +\x20\x00\x6e\x00\x69\x00\x63\x00\x68\x00\x74\x00\x20\x00\x61\x00\ +\x75\x00\x66\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x6d\x00\ +\x20\x00\x50\x00\x72\x00\x6f\x00\x66\x00\x69\x00\x6c\x00\x20\x00\ +\x62\x00\x61\x00\x73\x00\x69\x00\x65\x00\x72\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x34\x54\x68\x65\x20\x77\x69\x64\x74\x68\ +\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\ +\x2c\x20\x69\x66\x20\x6e\x6f\x74\x20\x62\x61\x73\x65\x64\x20\x6f\ +\x6e\x20\x61\x20\x70\x72\x6f\x66\x69\x6c\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x92\x00\x44\x00\x69\x00\x65\ +\x00\x20\x00\x42\x00\x72\x00\x65\x00\x69\x00\x74\x00\x65\x00\x20\ +\x00\x64\x00\x65\x00\x72\x00\x20\x00\x57\x00\x61\x00\x6e\x00\x64\ +\x00\x2e\x00\x20\x00\x4e\x00\x69\x00\x63\x00\x68\x00\x74\x00\x20\ +\x00\x62\x00\x65\x00\x6e\x00\x75\x00\x74\x00\x7a\x00\x74\x00\x20\ +\x00\x77\x00\x65\x00\x6e\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x65\ +\x00\x20\x00\x57\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x75\ +\x00\x66\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x72\x00\x20\ +\x00\x46\x00\x6c\x00\xe4\x00\x63\x00\x68\x00\x65\x00\x20\x00\x62\ +\x00\x61\x00\x73\x00\x69\x00\x65\x00\x72\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x40\x54\x68\x65\x20\x77\x69\x64\x74\x68\x20\ +\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x2e\x20\x4e\x6f\ +\x74\x20\x75\x73\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\ +\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\ +\x61\x20\x66\x61\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x0a\x00\x44\x00\x69\x00\x63\x00\x6b\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\x68\x69\x63\x6b\x6e\x65\ +\x73\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x62\x00\x44\x00\x69\x00\x65\x00\x73\x00\x65\x00\x73\x00\x20\x00\ +\x50\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x6e\x00\ +\x65\x00\x74\x00\x7a\x00\x20\x00\x69\x00\x73\x00\x74\x00\x20\x00\ +\x65\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x67\x00\ +\xfc\x00\x6c\x00\x74\x00\x69\x00\x67\x00\x65\x00\x72\x00\x20\x00\ +\x46\x00\x65\x00\x73\x00\x74\x00\x6b\x00\xf6\x00\x72\x00\x70\x00\ +\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x54\x68\x69\ +\x73\x20\x6d\x65\x73\x68\x20\x69\x73\x20\x61\x6e\x20\x69\x6e\x76\ +\x61\x6c\x69\x64\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x06\x00\x54\x00\x79\x00\x70\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\x79\x70\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x54\x00\x79\ +\x00\x70\x00\x75\x00\x6d\x00\x77\x00\x61\x00\x6e\x00\x64\x00\x6c\ +\x00\x75\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\ +\x54\x79\x70\x65\x20\x63\x6f\x6e\x76\x65\x72\x73\x69\x6f\x6e\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x36\x00\x4b\ +\x00\x6f\x00\x6e\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x44\x00\x61\ +\x00\x63\x00\x68\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\x00\x74\ +\x00\x20\x00\x65\x00\x72\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\ +\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x55\x6e\ +\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\x20\x61\ +\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x42\x00\x4b\x00\x6f\x00\x6e\x00\x6e\x00\x74\x00\x65\ +\x00\x20\x00\x4b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ +\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\ +\x00\x74\x00\x20\x00\x65\x00\x72\x00\x73\x00\x74\x00\x65\x00\x6c\ +\x00\x6c\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\ +\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\ +\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x30\x00\x41\x00\x75\x00\x66\x00\ +\x68\x00\x65\x00\x62\x00\x65\x00\x6e\x00\x20\x00\x64\x00\x65\x00\ +\x72\x00\x20\x00\x47\x00\x72\x00\x75\x00\x70\x00\x70\x00\x69\x00\ +\x65\x00\x72\x00\x75\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0a\x55\x6e\x67\x72\x6f\x75\x70\x69\x6e\x67\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x41\x00\x6e\ +\x00\x73\x00\x69\x00\x63\x00\x68\x00\x74\x00\x20\x00\x76\x00\x6f\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x56\x69\x65\x77\ +\x20\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x08\x00\x57\x00\x61\x00\x6e\x00\x64\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x18\x00\x57\x00\x61\x00\x6e\x00\x64\x00\ +\x6f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x57\x61\x6c\x6c\x20\x6f\x70\ +\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x12\x00\x57\x00\x61\x00\x6c\x00\x6c\x00\x54\x00\x72\ +\x00\x61\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x57\x61\x6c\x6c\x54\x72\x61\x63\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x42\x00\x72\x00\x65\x00\x69\ +\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x57\x69\ +\x64\x74\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0e\x00\x46\x00\x65\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x72\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\ +\x44\x00\x72\x00\xe4\x00\x68\x00\x74\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x05\x57\x69\x72\x65\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x5a\x00\x2d\x00\x41\x00\ +\x62\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x5a\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x36\x00\x53\x00\x63\ +\x00\x68\x00\x6c\x00\x69\x00\x65\x00\xdf\x00\x65\x00\x20\x00\x53\ +\x00\x6b\x00\x69\x00\x7a\x00\x7a\x00\x65\x00\x6e\x00\x62\x00\x65\ +\x00\x61\x00\x72\x00\x62\x00\x65\x00\x69\x00\x74\x00\x75\x00\x6e\ +\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x63\x6c\x6f\x73\ +\x69\x6e\x67\x20\x53\x6b\x65\x74\x63\x68\x20\x65\x64\x69\x74\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5e\x00\x65\ +\x00\x6e\x00\x74\x00\x68\x00\xe4\x00\x6c\x00\x74\x00\x20\x00\x65\ +\x00\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x6e\x00\x69\x00\x63\ +\x00\x68\x00\x74\x00\x20\x00\x67\x00\x65\x00\x73\x00\x63\x00\x68\ +\x00\x6c\x00\x6f\x00\x73\x00\x73\x00\x65\x00\x6e\x00\x65\x00\x6e\ +\x00\x20\x00\x56\x00\x6f\x00\x6c\x00\x75\x00\x6d\x00\x65\x00\x6e\ +\x00\x6b\x00\xf6\x00\x72\x00\x70\x00\x65\x00\x72\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1b\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x61\ +\x20\x6e\x6f\x6e\x2d\x63\x6c\x6f\x73\x65\x64\x20\x73\x6f\x6c\x69\ +\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x6a\ +\x00\x65\x00\x6e\x00\x74\x00\x68\x00\xe4\x00\x6c\x00\x74\x00\x20\ +\x00\x46\x00\x6c\x00\xe4\x00\x63\x00\x68\x00\x65\x00\x6e\x00\x20\ +\x00\x64\x00\x69\x00\x65\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\ +\x00\x74\x00\x20\x00\x54\x00\x65\x00\x69\x00\x6c\x00\x20\x00\x65\ +\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x46\x00\x65\x00\x73\ +\x00\x74\x00\x6b\x00\xf6\x00\x72\x00\x70\x00\x65\x00\x72\x00\x73\ +\x00\x20\x00\x73\x00\x69\x00\x6e\x00\x64\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2d\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x66\x61\x63\ +\x65\x73\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\ +\x70\x61\x72\x74\x20\x6f\x66\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\ +\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x36\ +\x00\x65\x00\x6e\x00\x68\x00\xe4\x00\x6c\x00\x74\x00\x20\x00\x6b\ +\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x56\x00\x6f\ +\x00\x6c\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x6b\x00\xf6\x00\x72\ +\x00\x70\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\ +\x64\x6f\x65\x73\x6e\x27\x74\x20\x63\x6f\x6e\x74\x61\x69\x6e\x20\ +\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x3c\x00\x44\x00\x61\x00\x74\x00\x65\ +\x00\x69\x00\x20\x00\x25\x00\x73\x00\x20\x00\x65\x00\x72\x00\x66\ +\x00\x6f\x00\x6c\x00\x67\x00\x72\x00\x65\x00\x69\x00\x63\x00\x68\ +\x00\x20\x00\x65\x00\x72\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\ +\x00\x74\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x66\x69\ +\x6c\x65\x20\x25\x73\x20\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\ +\x6c\x79\x20\x63\x72\x65\x61\x74\x65\x64\x2e\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x69\x00\x73\x00\x74\ +\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\x00\x74\x00\x20\x00\x67\ +\x00\x65\x00\x73\x00\x63\x00\x68\x00\x6c\x00\x6f\x00\x73\x00\x73\ +\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x69\x73\ +\x20\x6e\x6f\x74\x20\x63\x6c\x6f\x73\x65\x64\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x20\x00\x69\x00\x73\x00\x74\ +\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\x00\x74\x00\x20\x00\x67\ +\x00\xfc\x00\x6c\x00\x74\x00\x69\x00\x67\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x69\x73\x20\x6e\x6f\x74\x20\x76\x61\x6c\x69\x64\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5e\x00\ +\x70\x00\x79\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\ +\x61\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\x00\x74\x00\x20\x00\ +\x67\x00\x65\x00\x66\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\ +\x2c\x00\x20\x00\x6b\x00\x65\x00\x69\x00\x6e\x00\x20\x00\x63\x00\ +\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x53\x00\ +\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x29\x70\x79\x63\x6f\x6c\x6c\x61\x64\x61\ +\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x6e\x6f\x20\x63\ +\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\x6f\x72\x74\x2e\x0a\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x82\x00\ +\x45\x00\x6e\x00\x74\x00\x66\x00\x65\x00\x72\x00\x6e\x00\x65\x00\ +\x6e\x00\x20\x00\x64\x00\x65\x00\x72\x00\x20\x00\x75\x00\x6e\x00\ +\x74\x00\x65\x00\x72\x00\x73\x00\x74\x00\xfc\x00\x74\x00\x7a\x00\ +\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x53\x00\x6b\x00\ +\x69\x00\x7a\x00\x7a\x00\x65\x00\x20\x00\x75\x00\x6d\x00\x20\x00\ +\x51\x00\x75\x00\x65\x00\x72\x00\x76\x00\x65\x00\x72\x00\x77\x00\ +\x65\x00\x69\x00\x73\x00\x65\x00\x20\x00\x7a\x00\x75\x00\x20\x00\ +\x76\x00\x65\x00\x72\x00\x6d\x00\x65\x00\x69\x00\x64\x00\x65\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x72\x65\x6d\x6f\x76\ +\x69\x6e\x67\x20\x73\x6b\x65\x74\x63\x68\x20\x73\x75\x70\x70\x6f\ +\x72\x74\x20\x74\x6f\x20\x61\x76\x6f\x69\x64\x20\x63\x72\x6f\x73\ +\x73\x2d\x72\x65\x66\x65\x72\x65\x6e\x63\x69\x6e\x67\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x30\x00\x65\x00\x72\ +\x00\x66\x00\x6f\x00\x6c\x00\x67\x00\x72\x00\x65\x00\x69\x00\x63\ +\x00\x68\x00\x20\x00\x67\x00\x65\x00\x73\x00\x63\x00\x68\x00\x72\ +\x00\x69\x00\x65\x00\x62\x00\x65\x00\x6e\x00\x20\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x15\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\ +\x6c\x79\x20\x77\x72\x69\x74\x74\x65\x6e\x20\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x64\x00\x69\x00\x65\ +\x00\x20\x00\x4b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ +\x00\x6e\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x65\ +\x00\x73\x00\x65\x00\x73\x00\x20\x00\x46\x00\x65\x00\x6e\x00\x73\ +\x00\x74\x00\x65\x00\x72\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1d\x74\x68\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\ +\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x69\x6e\x64\x6f\x77\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x00\x54\ +\x00\x65\x00\x69\x00\x6c\x00\x20\x00\x68\x00\x69\x00\x6e\x00\x7a\ +\x00\x75\x00\x66\x00\xfc\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\x63\x6f\x6d\x70\x6f\x6e\ +\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\ +\x01\x03\x00\x00\x00\x74\x00\x46\x00\xfc\x00\x67\x00\x74\x00\x20\ +\x00\x61\x00\x75\x00\x73\x00\x67\x00\x65\x00\x77\x00\xe4\x00\x68\ +\x00\x6c\x00\x74\x00\x65\x00\x20\x00\x4b\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x6e\x00\x20\ +\x00\x7a\x00\x75\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x61\ +\x00\x6b\x00\x74\x00\x69\x00\x76\x00\x65\x00\x6e\x00\x20\x00\x4f\ +\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x6e\x00\x20\ +\x00\x68\x00\x69\x00\x6e\x00\x7a\x00\x75\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x31\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\ +\x20\x74\x6f\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\ +\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\ +\x64\x64\x01\x03\x00\x00\x00\x0a\x00\x41\x00\x63\x00\x68\x00\x73\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\x69\x73\ +\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x41\x78\x69\x73\x01\x03\ +\x00\x00\x00\x32\x00\x45\x00\x72\x00\x7a\x00\x65\x00\x75\x00\x67\ +\x00\x74\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x20\x00\x41\x00\x63\ +\x00\x68\x00\x73\x00\x65\x00\x6e\x00\x73\x00\x79\x00\x73\x00\x74\ +\x00\x65\x00\x6d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x78\x69\x73\x20\ +\x73\x79\x73\x74\x65\x6d\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\ +\x5f\x41\x78\x69\x73\x01\x03\x00\x00\x00\x0e\x00\x47\x00\x65\x00\ +\x62\x00\xe4\x00\x75\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x0d\ +\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\ +\x00\x00\x86\x00\x45\x00\x72\x00\x7a\x00\x65\x00\x75\x00\x67\x00\ +\x74\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x20\x00\x47\x00\x65\x00\ +\x62\x00\xe4\x00\x75\x00\x64\x00\x65\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x2c\x00\x20\x00\x65\x00\x69\x00\x6e\x00\ +\x73\x00\x63\x00\x68\x00\x6c\x00\x69\x00\x65\x00\xdf\x00\x6c\x00\ +\x69\x00\x63\x00\x68\x00\x20\x00\x64\x00\x65\x00\x72\x00\x20\x00\ +\x61\x00\x75\x00\x73\x00\x67\x00\x65\x00\x77\x00\xe4\x00\x68\x00\ +\x6c\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x65\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x35\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x62\x75\x69\ +\x6c\x64\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\ +\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x0d\x41\x72\x63\ +\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x0a\ +\x00\x5a\x00\x65\x00\x6c\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x43\x65\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\ +\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x82\x00\x45\x00\x72\ +\x00\x7a\x00\x65\x00\x75\x00\x67\x00\x74\x00\x20\x00\x65\x00\x69\ +\x00\x6e\x00\x20\x00\x5a\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x6e\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x2c\x00\x20\ +\x00\x65\x00\x69\x00\x6e\x00\x73\x00\x63\x00\x68\x00\x6c\x00\x69\ +\x00\x65\x00\xdf\x00\x6c\x00\x69\x00\x63\x00\x68\x00\x20\x00\x64\ +\x00\x65\x00\x72\x00\x20\x00\x61\x00\x75\x00\x73\x00\x67\x00\x65\ +\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x74\x00\x65\x00\x6e\x00\x20\ +\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x20\x63\x65\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\ \x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ -\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0a\x41\x72\x63\ -\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x0a\x00\x53\x00\ -\x7a\x00\x69\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\ -\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x66\x00\x41\x00\x20\x00\ -\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x74\x00\ -\x20\x00\x6e\x00\xe9\x00\x7a\x00\x65\x00\x74\x00\x65\x00\x6b\x00\ -\x65\x00\x74\x00\x20\x00\x61\x00\x6c\x00\x6b\x00\x61\x00\x74\x00\ -\x72\x00\xe9\x00\x73\x00\x7a\x00\x20\x00\x61\x00\x6c\x00\x61\x00\ -\x6b\x00\x7a\x00\x61\x00\x74\x00\x6f\x00\x6b\x00\x6b\x00\xe1\x00\ -\x20\x00\x61\x00\x6c\x00\x61\x00\x6b\x00\xed\x00\x74\x00\x6a\x00\ -\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x54\x75\x72\x6e\x73\ -\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\ -\x20\x69\x6e\x74\x6f\x20\x50\x61\x72\x74\x20\x53\x68\x61\x70\x65\ -\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0f\x41\x72\x63\ -\x68\x5f\x4d\x65\x73\x68\x54\x6f\x50\x61\x72\x74\x01\x03\x00\x00\ -\x00\x28\x00\x4d\x00\x65\x00\x73\x00\x68\x00\x20\x00\x68\x00\xe1\ -\x00\x6c\x00\xf3\x00\x62\x00\xf3\x00\x6c\x00\x20\x00\x41\x00\x6c\ -\x00\x61\x00\x6b\x00\x7a\x00\x61\x00\x74\x08\x00\x00\x00\x00\x06\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x09\x41\x72\x63\ +\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x16\x00\xdc\x00\x62\ +\x00\x65\x00\x72\x00\x70\x00\x72\x00\xfc\x00\x66\x00\x75\x00\x6e\ +\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x43\x68\x65\x63\ +\x6b\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\ +\x01\x03\x00\x00\x00\x5e\x00\xdc\x00\x62\x00\x65\x00\x72\x00\x70\ +\x00\x72\x00\xfc\x00\x66\x00\x74\x00\x20\x00\x64\x00\x69\x00\x65\ +\x00\x20\x00\x61\x00\x75\x00\x73\x00\x67\x00\x65\x00\x77\x00\xe4\ +\x00\x68\x00\x6c\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x4f\x00\x62\ +\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x61\x00\x75\ +\x00\x66\x00\x20\x00\x50\x00\x72\x00\x6f\x00\x62\x00\x6c\x00\x65\ +\x00\x6d\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x43\x68\ +\x65\x63\x6b\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x6f\x72\x20\x70\x72\ +\x6f\x62\x6c\x65\x6d\x73\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\ +\x43\x68\x65\x63\x6b\x01\x03\x00\x00\x00\x1e\x00\x53\x00\x63\x00\ +\x68\x00\x6c\x00\x69\x00\x65\x00\xdf\x00\x74\x00\x20\x00\x4c\x00\ +\xf6\x00\x63\x00\x68\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0b\x43\x6c\x6f\x73\x65\x20\x68\x6f\x6c\x65\x73\x07\x00\ +\x00\x00\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\ +\x65\x73\x01\x03\x00\x00\x00\x7a\x00\x53\x00\x63\x00\x68\x00\x6c\ +\x00\x69\x00\x65\x00\xdf\x00\x74\x00\x20\x00\x4c\x00\xf6\x00\x63\ +\x00\x68\x00\x65\x00\x72\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x46\ +\x00\x6f\x00\x72\x00\x6d\x00\x65\x00\x6e\x00\x20\x00\x75\x00\x6e\ +\x00\x64\x00\x20\x00\x77\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x6c\ +\x00\x74\x00\x20\x00\x73\x00\x69\x00\x65\x00\x20\x00\x75\x00\x6d\ +\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x56\x00\x6f\x00\x6c\x00\x75\ +\x00\x6d\x00\x65\x00\x6e\x00\x6b\x00\xf6\x00\x72\x00\x70\x00\x65\ +\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x6c\x6f\x73\ +\x65\x73\x20\x68\x6f\x6c\x65\x73\x20\x69\x6e\x20\x6f\x70\x65\x6e\ +\x20\x73\x68\x61\x70\x65\x73\x2c\x20\x74\x75\x72\x6e\x69\x6e\x67\ +\x20\x74\x68\x65\x6d\x20\x73\x6f\x6c\x69\x64\x73\x07\x00\x00\x00\ +\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\ +\x01\x03\x00\x00\x00\x84\x00\x45\x00\x72\x00\x73\x00\x74\x00\x65\ +\x00\x6c\x00\x6c\x00\x74\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x20\ +\x00\x42\x00\x6f\x00\x64\x00\x65\x00\x6e\x00\x2d\x00\x4f\x00\x62\ +\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x2c\x00\x20\x00\x65\x00\x69\ +\x00\x6e\x00\x73\x00\x63\x00\x68\x00\x6c\x00\x69\x00\x65\x00\xdf\ +\x00\x6c\x00\x69\x00\x63\x00\x68\x00\x20\x00\x64\x00\x65\x00\x72\ +\x00\x20\x00\x61\x00\x75\x00\x73\x00\x67\x00\x65\x00\x77\x00\xe4\ +\x00\x68\x00\x6c\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x4f\x00\x62\ +\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x66\x6c\ +\x6f\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\ +\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\ +\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x0a\x00\x42\x00\x6f\x00\x64\ +\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\ +\x6f\x6f\x72\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\ +\x6f\x72\x01\x03\x00\x00\x00\x22\x00\x56\x00\x65\x00\x72\x00\x6e\ +\x00\x65\x00\x74\x00\x7a\x00\x65\x00\x20\x00\x7a\x00\x75\x00\x72\ +\x00\x20\x00\x46\x00\x6f\x00\x72\x00\x6d\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x74\x6f\x20\x53\x68\x61\x70\ \x65\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\ -\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x22\x00\xd6\x00\x73\ -\x00\x73\x00\x7a\x00\x65\x00\x74\x00\x65\x00\x76\x01\x51\x00\x20\ -\x00\x74\x00\xf6\x00\x72\x00\x6c\x00\xe9\x00\x73\x00\x65\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\x6d\x6f\x76\x65\x20\x63\ -\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\ -\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\xac\x00\x41\ -\x00\x20\x00\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\ -\x00\x74\x00\x20\x00\x61\x00\x6c\x00\x6b\x00\x61\x00\x74\x00\x72\ -\x00\xe9\x00\x73\x00\x7a\x00\x65\x00\x6b\x00\x20\x00\x65\x00\x6c\ -\x00\x74\x00\xe1\x00\x76\x00\x6f\x00\x6c\x00\xed\x00\x74\x00\xe1\ -\x00\x73\x00\x61\x00\x20\x00\x61\x00\x20\x00\x73\x00\x7a\x00\xfc\ -\x00\x6c\x01\x51\x00\x6b\x00\x74\x01\x51\x00\x6c\x00\x2c\x00\x20\ -\x00\x76\x00\x61\x00\x67\x00\x79\x00\x20\x00\x65\x00\x67\x00\x79\ -\x00\x20\x00\x6c\x00\x79\x00\x75\x00\x6b\x00\x20\x00\x6c\x00\xe9\ -\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\xe1\x00\x73\ -\x00\x61\x00\x20\x00\x61\x00\x6c\x00\x6b\x00\x61\x00\x74\x00\x72\ -\x00\xe9\x00\x73\x00\x7a\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x52\x52\x65\x6d\x6f\x76\x65\x20\x74\x68\x65\x20\x73\ -\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ -\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x69\x72\x20\x70\x61\ -\x72\x65\x6e\x74\x73\x2c\x20\x6f\x72\x20\x63\x72\x65\x61\x74\x65\ -\x20\x61\x20\x68\x6f\x6c\x65\x20\x69\x6e\x20\x61\x20\x63\x6f\x6d\ -\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\ -\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\x3c\x00\x41\x00\x6c\ -\x00\x61\x00\x6b\x00\x7a\x00\x61\x00\x74\x00\x20\x00\x65\x00\x6c\ -\x00\x68\x00\x61\x00\x67\x00\x79\x00\xe1\x00\x73\x00\x61\x00\x20\ -\x00\x61\x00\x7a\x00\x20\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\ -\x00\x2d\x00\x62\x00\xf3\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x16\x52\x65\x6d\x6f\x76\x65\x20\x53\x68\x61\x70\x65\x20\x66\ -\x72\x6f\x6d\x20\x41\x72\x63\x68\x07\x00\x00\x00\x10\x41\x72\x63\ -\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\ -\x00\x00\x76\x00\x45\x00\x6c\x00\x74\x00\xe1\x00\x76\x00\x6f\x00\ -\x6c\x00\xed\x00\x74\x00\x6a\x00\x61\x00\x20\x00\x61\x00\x20\x00\ -\x68\x00\x61\x00\x72\x00\x6d\x00\x61\x00\x64\x00\x66\x00\x6f\x00\ -\x6b\x00\xfa\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x6b\x00\x7a\x00\ -\x61\x00\x74\x00\x6f\x00\x6b\x00\x61\x00\x74\x00\x20\x00\x61\x00\ -\x7a\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x61\x00\ -\x6c\x00\x6b\x00\x61\x00\x74\x00\x72\x00\xe9\x00\x73\x00\x7a\x00\ -\x65\x00\x6b\x00\x62\x01\x51\x00\x6c\x08\x00\x00\x00\x00\x06\x00\ +\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x60\x00\x77\x00\x61\ +\x00\x6e\x00\x64\x00\x65\x00\x6c\x00\x74\x00\x20\x00\x67\x00\x65\ +\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x74\x00\x65\x00\x20\x00\x6d\ +\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\ +\x00\x20\x00\x50\x00\x61\x00\x72\x00\x74\x00\x20\x00\x53\x00\x68\ +\x00\x61\x00\x70\x00\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x75\x00\x6d\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x2d\x54\x75\x72\x6e\x73\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\ +\x20\x50\x61\x72\x74\x20\x53\x68\x61\x70\x65\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\x65\x73\ +\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x28\x00\x4b\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x00\x65\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x66\x00\x65\x00\x72\ +\x00\x6e\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x52\x65\x6d\x6f\x76\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\ +\x01\x03\x00\x00\x00\xd0\x00\x45\x00\x6e\x00\x74\x00\x66\x00\x65\ +\x00\x72\x00\x6e\x00\x65\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\ +\x00\x61\x00\x75\x00\x73\x00\x67\x00\x65\x00\x77\x00\xe4\x00\x68\ +\x00\x6c\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x4b\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x6e\ +\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x69\x00\x68\x00\x72\ +\x00\x65\x00\x6d\x00\x20\x00\x45\x00\x6c\x00\x74\x00\x65\x00\x72\ +\x00\x6e\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x2c\ +\x00\x20\x00\x6f\x00\x64\x00\x65\x00\x72\x00\x20\x00\x65\x00\x72\ +\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x65\ +\x00\x69\x00\x6e\x00\x20\x00\x4c\x00\x6f\x00\x63\x00\x68\x00\x20\ +\x00\x69\x00\x6e\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x72\ +\x00\x20\x00\x4b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ +\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\ +\x52\x65\x6d\x6f\x76\x65\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x66\ +\x72\x6f\x6d\x20\x74\x68\x65\x69\x72\x20\x70\x61\x72\x65\x6e\x74\ +\x73\x2c\x20\x6f\x72\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x68\ +\x6f\x6c\x65\x20\x69\x6e\x20\x61\x20\x63\x6f\x6d\x70\x6f\x6e\x65\ +\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\ +\x76\x65\x01\x03\x00\x00\x00\x3e\x00\x45\x00\x6e\x00\x74\x00\x66\ +\x00\x65\x00\x72\x00\x6e\x00\x74\x00\x20\x00\x46\x00\x6f\x00\x72\ +\x00\x6d\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x75\x00\x73\x00\x20\ +\x00\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\x74\x00\x65\x00\x6b\ +\x00\x74\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\ +\x52\x65\x6d\x6f\x76\x65\x20\x53\x68\x61\x70\x65\x20\x66\x72\x6f\ +\x6d\x20\x41\x72\x63\x68\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\ +\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\ +\x68\x00\x45\x00\x6e\x00\x74\x00\x66\x00\x65\x00\x72\x00\x6e\x00\ +\x74\x00\x20\x00\x6b\x00\x75\x00\x62\x00\x69\x00\x73\x00\x63\x00\ +\x68\x00\x65\x00\x20\x00\x46\x00\x6f\x00\x72\x00\x6d\x00\x65\x00\ +\x6e\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x41\x00\x72\x00\ +\x63\x00\x68\x00\x69\x00\x74\x00\x65\x00\x6b\x00\x74\x00\x75\x00\ +\x72\x00\x2d\x00\x4b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\ +\x65\x00\x6e\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x29\x52\x65\x6d\x6f\x76\x65\x73\x20\x63\x75\x62\x69\x63\ \x20\x73\x68\x61\x70\x65\x73\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\ \x68\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\ \x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\ -\x65\x01\x03\x00\x00\x00\x5c\x00\x48\x00\x6f\x00\x7a\x00\x7a\x00\ -\xe1\x00\x61\x00\x64\x00\x20\x00\x65\x00\x67\x00\x79\x00\x20\x00\ -\x72\x00\xe9\x00\x73\x00\x7a\x00\x20\x00\x73\x00\xed\x00\x6b\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\ -\x6d\x00\x6f\x00\x74\x00\x20\x00\x61\x00\x20\x00\x64\x00\x6f\x00\ -\x6b\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x75\x00\x6d\x00\ -\x62\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x41\x64\x64\ +\x65\x01\x03\x00\x00\x00\x80\x00\x45\x00\x72\x00\x7a\x00\x65\x00\ +\x75\x00\x67\x00\x74\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x20\x00\ +\x44\x00\x61\x00\x63\x00\x68\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x61\x00\x75\x00\x73\x00\x20\x00\x64\x00\ +\x65\x00\x72\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x6b\x00\ +\x74\x00\x69\x00\x65\x00\x72\x00\x74\x00\x65\x00\x6e\x00\x20\x00\ +\x46\x00\x6c\x00\xe4\x00\x63\x00\x68\x00\x65\x00\x20\x00\x65\x00\ +\x69\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x39\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x72\x6f\x6f\x66\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x66\x61\x63\x65\x20\x6f\x66\ +\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x09\x41\ +\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x08\x00\x44\ +\x00\x61\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x52\x6f\x6f\x66\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x52\x6f\ +\x6f\x66\x01\x03\x00\x00\x00\x88\x00\x45\x00\x72\x00\x73\x00\x74\ +\x00\x65\x00\x6c\x00\x6c\x00\x74\x00\x20\x00\x65\x00\x69\x00\x6e\ +\x00\x20\x00\x66\x00\x6c\x00\x61\x00\x63\x00\x68\x00\x65\x00\x73\ +\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x2c\ +\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x73\x00\x63\x00\x68\x00\x6c\ +\x00\x69\x00\x65\x00\xdf\x00\x6c\x00\x69\x00\x63\x00\x68\x00\x20\ +\x00\x64\x00\x65\x00\x72\x00\x20\x00\x61\x00\x75\x00\x73\x00\x67\ +\x00\x65\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x74\x00\x65\x00\x6e\ +\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3e\x43\x72\x65\x61\x74\x65\ \x73\x20\x61\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\ -\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x74\x68\x65\x20\ -\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\x11\x41\x72\x63\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x69\x6e\x63\x6c\x75\x64\ +\x69\x6e\x67\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x11\x41\x72\x63\ \x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\ -\x00\x00\x00\x10\x00\x52\x00\xe9\x00\x73\x00\x7a\x00\x20\x00\x73\ -\x00\xed\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\ -\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\ -\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\ -\x65\x01\x03\x00\x00\x00\x46\x00\x56\x00\xe1\x00\x6c\x00\x61\x00\ -\x73\x00\x73\x00\x7a\x00\x61\x00\x20\x00\x6b\x00\x69\x00\x20\x00\ -\x61\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x73\x00\x6f\x00\ -\x6b\x00\x72\x00\xe9\x00\x74\x01\x71\x00\x20\x00\x68\x00\xe1\x00\ -\x6c\x00\xf3\x00\x7a\x00\x61\x00\x74\x00\x6f\x00\x74\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\x6e\x6f\ -\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\ -\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\ -\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\ -\x03\x00\x00\x00\xb0\x00\x4b\x00\x69\x00\x76\x00\xe1\x00\x6c\x00\ -\x61\x00\x73\x00\x7a\x00\x74\x00\x6a\x00\x61\x00\x20\x00\x61\x00\ -\x7a\x00\x20\x00\xf6\x00\x73\x00\x73\x00\x7a\x00\x65\x00\x73\x00\ -\x20\x00\x6e\x00\x65\x00\x6d\x00\x2d\x00\x73\x00\x6f\x00\x6b\x00\ -\x72\x00\xe9\x00\x74\x01\x71\x00\x20\x00\x68\x00\xe1\x00\x6c\x00\ -\xf3\x00\x7a\x00\x61\x00\x74\x00\x6f\x00\x74\x00\x20\x00\x61\x00\ -\x20\x00\x64\x00\x6f\x00\x6b\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\ -\x74\x00\x75\x00\x6d\x00\x62\x00\xf3\x00\x6c\x00\x20\x00\x76\x00\ -\x61\x00\x67\x00\x79\x00\x20\x00\x61\x00\x20\x00\x6b\x00\x69\x00\ -\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x74\x00\x20\x00\x63\x00\ -\x73\x00\x6f\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x6f\x00\x6b\x00\ -\x62\x00\xf3\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x53\ -\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6e\x6f\x6e\x2d\x6d\ -\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x66\ -\x72\x6f\x6d\x20\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\ -\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\ -\x65\x63\x74\x65\x64\x20\x67\x72\x6f\x75\x70\x73\x07\x00\x00\x00\ -\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\ -\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x82\ -\x00\x4c\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\ -\x00\x20\x00\x65\x00\x67\x00\x79\x00\x20\x00\x4f\x00\x6c\x00\x64\ -\x00\x61\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ -\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x74\x00\x2c\x00\x20\x00\x62\ -\x00\x65\x00\x6c\x00\x65\x00\xe9\x00\x72\x00\x74\x00\x76\x00\x65\ -\x00\x20\x00\x61\x00\x20\x00\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\ -\x00\xf6\x00\x6c\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ -\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x6b\x00\x61\x00\x74\ +\x00\x00\x00\x18\x00\x53\x00\x63\x00\x68\x00\x6e\x00\x69\x00\x74\ +\x00\x74\x00\x65\x00\x62\x00\x65\x00\x6e\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\ +\x61\x6e\x65\x07\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\x63\ +\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x34\x00\ +\x57\x00\xe4\x00\x68\x00\x6c\x00\x65\x00\x20\x00\x6e\x00\x69\x00\ +\x63\x00\x68\x00\x74\x00\x2d\x00\x6d\x00\x65\x00\x68\x00\x72\x00\ +\x66\x00\x61\x00\x63\x00\x68\x00\x20\x00\x4e\x00\x65\x00\x74\x00\ +\x7a\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\x65\x6c\ +\x65\x63\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\ +\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\ +\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\ +\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x92\x00\x57\x00\xe4\x00\ +\x68\x00\x6c\x00\x74\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\ +\x20\x00\x6e\x00\x69\x00\x63\x00\x68\x00\x74\x00\x2d\x00\x6d\x00\ +\x65\x00\x68\x00\x72\x00\x66\x00\x61\x00\x63\x00\x68\x00\x20\x00\ +\x4e\x00\x65\x00\x74\x00\x7a\x00\x65\x00\x20\x00\x61\x00\x75\x00\ +\x73\x00\x20\x00\x44\x00\x6f\x00\x6b\x00\x75\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x20\x00\x6f\x00\x64\x00\x65\x00\x72\x00\x20\x00\ +\x61\x00\x75\x00\x73\x00\x20\x00\x61\x00\x75\x00\x73\x00\x67\x00\ +\x65\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x74\x00\x65\x00\x72\x00\ +\x20\x00\x47\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4d\x53\x65\x6c\x65\x63\x74\x73\x20\x61\ +\x6c\x6c\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\ +\x6d\x65\x73\x68\x65\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\ +\x64\x6f\x63\x75\x6d\x65\x6e\x74\x20\x6f\x72\x20\x66\x72\x6f\x6d\ +\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x67\x72\ +\x6f\x75\x70\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\ +\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\ +\x65\x73\x01\x03\x00\x00\x00\x7a\x00\x45\x00\x69\x00\x6e\x00\x20\ +\x00\x4e\x00\x65\x00\x62\x00\x65\x00\x6e\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x6b\x00\x6c\ +\x00\x75\x00\x73\x00\x69\x00\x76\x00\x65\x00\x20\x00\x64\x00\x65\ +\x00\x72\x00\x20\x00\x61\x00\x75\x00\x73\x00\x67\x00\x65\x00\x77\ +\x00\xe4\x00\x68\x00\x6c\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x4f\ +\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x65\ +\x00\x72\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x6e\ \x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\ \x74\x65\x73\x20\x61\x20\x73\x69\x74\x65\x20\x6f\x62\x6a\x65\x63\ \x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\ \x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\ \x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\ -\x0a\x00\x4f\x00\x6c\x00\x64\x00\x61\x00\x6c\x08\x00\x00\x00\x00\ +\x0a\x00\x53\x00\x65\x00\x69\x00\x74\x00\x65\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\x00\x00\x00\x09\x41\x72\ -\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\x18\x00\x48\x00\ -\xe1\x00\x6c\x00\xf3\x00\x20\x00\x6f\x00\x73\x00\x7a\x00\x74\x00\ -\xe1\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\ -\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x0e\x41\x72\ -\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\ -\x00\x64\x00\x41\x00\x20\x00\x6b\x00\x69\x00\x76\x00\xe1\x00\x6c\ -\x00\x61\x00\x73\x00\x7a\x00\x74\x00\x6f\x00\x74\x00\x74\x00\x20\ -\x00\x68\x00\xe1\x00\x6c\x00\xf3\x00\x74\x00\x20\x00\x66\x00\xfc\ -\x00\x67\x00\x67\x00\x65\x00\x74\x00\x6c\x00\x65\x00\x6e\x00\x20\ -\x00\xf6\x00\x73\x00\x73\x00\x7a\x00\x65\x00\x74\x00\x65\x00\x76\ -\x01\x51\x00\x6b\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x73\x00\x7a\ -\x00\x74\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\ -\x53\x70\x6c\x69\x74\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ -\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x69\x6e\x64\x65\ -\x70\x65\x6e\x64\x65\x6e\x74\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ -\x74\x73\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\ -\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\xe6\x00\x4c\x00\xe9\x00\ -\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\x20\x00\x65\x00\ -\x67\x00\x79\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ -\x74\x00\x75\x00\x6d\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\ -\x6b\x00\x74\x00\xfa\x00\x72\x00\xe1\x00\x74\x00\x20\x00\x76\x00\ -\xe1\x00\x7a\x00\x6c\x00\x61\x00\x74\x00\x62\x00\xf3\x00\x6c\x00\ -\x20\x00\x76\x00\x61\x00\x67\x00\x79\x00\x20\x00\x65\x00\x67\x00\ -\x79\x00\x20\x00\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\ -\x6c\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ -\x74\x00\x75\x00\x6d\x00\x62\x00\xf3\x00\x6c\x00\x20\x00\x28\x00\ -\x76\x00\xe1\x00\x7a\x00\x6c\x00\x61\x00\x74\x00\x2c\x00\x20\x00\ -\x76\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x2c\x00\x20\x00\x66\x00\ -\x65\x00\x6c\x00\xfc\x00\x6c\x00\x65\x00\x74\x00\x20\x00\x76\x00\ -\x61\x00\x67\x00\x79\x00\x20\x00\x73\x00\x7a\x00\x69\x00\x6c\x00\ -\xe1\x00\x72\x00\x64\x00\x20\x00\x74\x00\x65\x00\x73\x00\x74\x00\ -\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5f\x43\x72\x65\x61\x74\ -\x65\x73\x20\x61\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\ -\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\ -\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\ -\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x73\x6b\ -\x65\x74\x63\x68\x2c\x20\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\ -\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x0e\x41\ -\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\ -\x00\x00\x12\x00\x46\x00\x65\x00\x6c\x00\xe9\x00\x70\x00\xed\x00\ -\x74\x00\xe9\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\ -\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x0e\x41\x72\x63\ -\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\ -\xc0\x00\x4c\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\ -\x7a\x00\x20\x00\x65\x00\x67\x00\x79\x00\x20\x00\x66\x00\x61\x00\ -\x6c\x00\x61\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x6b\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x74\x00\x20\x00\x76\x00\ -\xe1\x00\x7a\x00\x6c\x00\x61\x00\x74\x00\x62\x00\xf3\x00\x6c\x00\ -\x20\x00\x76\x00\x61\x00\x67\x00\x79\x00\x20\x00\x65\x00\x67\x00\ -\x79\x00\x20\x00\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\ -\x6c\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ -\x74\x00\x75\x00\x6d\x00\x62\x00\xf3\x00\x6c\x00\x20\x00\x28\x00\ -\x76\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x2c\x00\x20\x00\x66\x00\ -\x65\x00\x6c\x00\xfc\x00\x6c\x00\x65\x00\x74\x00\x20\x00\x76\x00\ -\x61\x00\x67\x00\x79\x00\x20\x00\x74\x00\x65\x00\x73\x00\x74\x00\ -\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x43\x72\x65\x61\x74\ -\x65\x73\x20\x61\x20\x77\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\ -\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\ +\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\x1a\x00\x4e\x00\ +\x65\x00\x74\x00\x7a\x00\x20\x00\x7a\x00\x65\x00\x72\x00\x6c\x00\ +\x65\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x0e\ +\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\ +\x00\x00\x00\x68\x00\x5a\x00\x65\x00\x72\x00\x6c\x00\x65\x00\x67\ +\x00\x74\x00\x20\x00\x61\x00\x75\x00\x73\x00\x67\x00\x65\x00\x77\ +\x00\xe4\x00\x68\x00\x6c\x00\x74\x00\x65\x00\x20\x00\x4e\x00\x65\ +\x00\x74\x00\x7a\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x75\ +\x00\x6e\x00\x61\x00\x62\x00\x68\x00\xe4\x00\x6e\x00\x67\x00\x69\ +\x00\x67\x00\x65\x00\x20\x00\x4b\x00\x6f\x00\x6d\x00\x70\x00\x6f\ +\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x32\x53\x70\x6c\x69\x74\x73\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\ +\x6f\x20\x69\x6e\x64\x65\x70\x65\x6e\x64\x65\x6e\x74\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x0e\x41\x72\x63\ +\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\ +\xf8\x00\x45\x00\x72\x00\x7a\x00\x65\x00\x75\x00\x67\x00\x74\x00\ +\x20\x00\x65\x00\x69\x00\x6e\x00\x20\x00\x53\x00\x74\x00\x72\x00\ +\x75\x00\x6b\x00\x74\x00\x75\x00\x72\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x20\x00\ +\x47\x00\x72\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x75\x00\ +\x66\x00\x20\x00\x6e\x00\x65\x00\x75\x00\x20\x00\x6f\x00\x64\x00\ +\x65\x00\x72\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x65\x00\ +\x69\x00\x6e\x00\x65\x00\x6d\x00\x20\x00\x61\x00\x75\x00\x73\x00\ +\x67\x00\x65\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x74\x00\x65\x00\ +\x6e\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x20\x00\x28\x00\x53\x00\x6b\x00\x69\x00\x7a\x00\x7a\x00\x65\x00\ +\x2c\x00\x44\x00\x72\x00\x61\x00\x68\x00\x74\x00\x2c\x00\x4f\x00\ +\x62\x00\x65\x00\x72\x00\x66\x00\x6c\x00\xe4\x00\x63\x00\x68\x00\ +\x65\x00\x20\x00\x6f\x00\x64\x00\x65\x00\x72\x00\x20\x00\x56\x00\ +\x6f\x00\x6c\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x6b\x00\xf6\x00\ +\x72\x00\x70\x00\x65\x00\x72\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x5f\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x74\x72\ +\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\ +\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\ +\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x20\x28\x73\x6b\x65\x74\x63\x68\x2c\x20\x77\x69\ +\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\ +\x64\x29\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\ +\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\x10\x00\x53\x00\x74\x00\ +\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\ +\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\ +\x65\x01\x03\x00\x00\x00\xe2\x00\x45\x00\x72\x00\x7a\x00\x65\x00\ +\x75\x00\x67\x00\x65\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x20\x00\ +\x57\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x47\x00\ +\x72\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x75\x00\x66\x00\ +\x20\x00\x6e\x00\x65\x00\x75\x00\x20\x00\x6f\x00\x64\x00\x65\x00\ +\x72\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x65\x00\x69\x00\ +\x6e\x00\x65\x00\x6d\x00\x20\x00\x61\x00\x75\x00\x73\x00\x67\x00\ +\x65\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x74\x00\x65\x00\x6e\x00\ +\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\ +\x28\x00\x44\x00\x72\x00\x61\x00\x68\x00\x74\x00\x2c\x00\x4f\x00\ +\x62\x00\x65\x00\x72\x00\x66\x00\x6c\x00\xe4\x00\x63\x00\x68\x00\ +\x65\x00\x20\x00\x6f\x00\x64\x00\x65\x00\x72\x00\x20\x00\x56\x00\ +\x6f\x00\x6c\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x6b\x00\xf6\x00\ +\x72\x00\x70\x00\x65\x00\x72\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x52\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\x61\x6c\ +\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\ +\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x28\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\ +\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\ +\x61\x6c\x6c\x01\x03\x00\x00\x00\x08\x00\x57\x00\x61\x00\x6e\x00\ +\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\ +\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\ +\x00\x00\xac\x00\x45\x00\x72\x00\x73\x00\x74\x00\x65\x00\x6c\x00\ +\x6c\x00\x74\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x20\x00\x46\x00\ +\x65\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x72\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\ +\x20\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x6d\x00\x20\x00\x61\x00\ +\x75\x00\x73\x00\x67\x00\x65\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\ +\x74\x00\x65\x00\x6e\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x20\x00\x28\x00\x44\x00\x72\x00\x61\x00\x68\x00\ +\x74\x00\x2c\x00\x20\x00\x52\x00\x65\x00\x63\x00\x68\x00\x74\x00\ +\x65\x00\x63\x00\x6b\x00\x20\x00\x6f\x00\x64\x00\x65\x00\x72\x00\ +\x20\x00\x53\x00\x6b\x00\x69\x00\x7a\x00\x7a\x00\x65\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x4a\x43\x72\x65\x61\x74\x65\x73\ +\x20\x61\x20\x77\x69\x6e\x64\x6f\x77\x20\x6f\x62\x6a\x65\x63\x74\ \x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ -\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x66\ -\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\ -\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\ -\x06\x00\x46\x00\x61\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\ -\x61\x6c\x6c\x01\x03\x00\x00\x00\xd4\x00\x4c\x00\xe9\x00\x74\x00\ -\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\x20\x00\x65\x00\x67\x00\ -\x79\x00\x20\x00\x61\x00\x62\x00\x6c\x00\x61\x00\x6b\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\ -\x6f\x00\x74\x00\x20\x00\x61\x00\x20\x00\x76\x00\xe1\x00\x7a\x00\ -\x6c\x00\x61\x00\x74\x00\x62\x00\xf3\x00\x6c\x00\x2c\x00\x20\x00\ -\x76\x00\x61\x00\x67\x00\x79\x00\x20\x00\x65\x00\x67\x00\x79\x00\ -\x20\x00\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\ -\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ -\x75\x00\x6d\x00\x62\x00\xf3\x00\x6c\x00\x20\x00\x28\x00\x76\x00\ -\x65\x00\x7a\x00\x65\x00\x74\x00\xe9\x00\x6b\x00\x65\x00\x73\x00\ -\x2c\x00\x20\x00\x74\x00\xe9\x00\x67\x00\x6c\x00\x61\x00\x6c\x00\ -\x61\x00\x70\x00\x20\x00\x76\x00\x61\x00\x67\x00\x79\x00\x20\x00\ -\x76\x00\xe1\x00\x7a\x00\x6c\x00\x61\x00\x74\x00\x29\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x5a\x43\x72\x65\x61\x74\x65\x73\x20\x61\ -\x20\x77\x69\x6e\x64\x6f\x77\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\ -\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\ -\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ -\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x72\x65\x63\ -\x74\x61\x6e\x67\x6c\x65\x20\x6f\x72\x20\x73\x6b\x65\x74\x63\x68\ -\x29\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\ -\x77\x01\x03\x00\x00\x00\x0a\x00\x41\x00\x62\x00\x6c\x00\x61\x00\ -\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\ -\x77\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\ -\x77\x01\x03\x00\x00\x00\x46\x00\x41\x00\x6c\x00\x61\x00\x70\x00\ -\xe9\x00\x72\x00\x74\x00\x65\x00\x6c\x00\x6d\x00\x65\x00\x7a\x00\ -\x65\x00\x74\x00\x74\x00\x20\x00\x20\x00\x73\x00\x7a\x00\x65\x00\ -\x72\x00\x6b\x00\x65\x00\x7a\x00\x65\x00\x74\x00\x65\x00\x69\x00\ -\x20\x00\x73\x00\x7a\x00\xed\x00\x6e\x00\x65\x00\x6b\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x1c\x44\x65\x66\x61\x75\x6c\x74\x20\x63\ -\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x74\x72\x75\x63\x74\x75\ -\x72\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3c\x00\x41\x00\x20\x00\x66\ -\x00\x61\x00\x6c\x00\x61\x00\x6b\x00\x20\x00\x61\x00\x6c\x00\x61\ -\x00\x70\x00\xe9\x00\x72\x00\x74\x00\x65\x00\x6c\x00\x6d\x00\x65\ -\x00\x7a\x00\x65\x00\x74\x00\x74\x00\x20\x00\x73\x00\x7a\x00\xed\ -\x00\x6e\x00\x65\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\ -\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\ -\x72\x20\x77\x61\x6c\x6c\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x30\x00\xc1\ -\x00\x6c\x00\x74\x00\x61\x00\x6c\x00\xe1\x00\x6e\x00\x6f\x00\x73\ -\x00\x20\x00\xed\x00\x76\x00\x20\x00\x62\x00\x65\x00\xe1\x00\x6c\ -\x00\x6c\x00\xed\x00\x74\x00\xe1\x00\x73\x00\x6f\x00\x6b\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\x20\ -\x41\x72\x63\x68\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\ -\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ -\x00\x00\x00\x2a\x00\xc1\x00\x6c\x00\x74\x00\x61\x00\x6c\x00\xe1\ -\x00\x6e\x00\x6f\x00\x73\x00\x20\x00\x62\x00\x65\x00\xe1\x00\x6c\ -\x00\x6c\x00\xed\x00\x74\x00\xe1\x00\x73\x00\x6f\x00\x6b\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\ -\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x6a\x00\ -\x45\x00\x7a\x00\x20\x00\x61\x00\x7a\x00\x20\x00\x61\x00\x6c\x00\ -\x61\x00\x70\x00\xe9\x00\x72\x00\x74\x00\x65\x00\x6c\x00\x6d\x00\ -\x65\x00\x7a\x00\x65\x00\x74\x00\x74\x00\x20\x00\x73\x00\x7a\x00\ -\xed\x00\x6e\x00\x20\x00\x61\x00\x7a\x00\x20\x00\xfa\x00\x6a\x00\ -\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\xfa\x00\ -\x72\x00\x61\x00\x20\x00\x74\x00\xe1\x00\x72\x00\x67\x00\x79\x00\ -\x61\x00\x6b\x00\x68\x00\x6f\x00\x7a\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x33\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x72\ +\x65\x63\x74\x61\x6e\x67\x6c\x65\x20\x6f\x72\x20\x73\x6b\x65\x74\ +\x63\x68\x29\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\ +\x64\x6f\x77\x01\x03\x00\x00\x00\x0e\x00\x46\x00\x65\x00\x6e\x00\ +\x73\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x0b\x41\x72\x63\x68\ +\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x32\x00\ +\x44\x00\x20\x00\x52\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\ +\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x32\ +\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x50\x00\x45\x00\x72\x00\x7a\x00\x65\x00\x75\x00\x67\x00\x65\ +\x00\x20\x00\x47\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\x00\x6e\ +\x00\x20\x00\x66\x00\xfc\x00\x72\x00\x20\x00\x6a\x00\x65\x00\x64\ +\x00\x65\x00\x6e\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x2d\ +\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x74\x00\x79\ +\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x43\x72\x65\x61\ +\x74\x65\x73\x20\x67\x72\x6f\x75\x70\x73\x20\x66\x6f\x72\x20\x65\ +\x61\x63\x68\x20\x41\x72\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x74\x79\x70\x65\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x52\x00\x46\x00\x6c\x00\ +\xe4\x00\x63\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x4c\x00\x69\x00\ +\x6e\x00\x69\x00\x65\x00\x6e\x00\x20\x00\x44\x00\x69\x00\x63\x00\ +\x6b\x00\x65\x00\x20\x00\x56\x00\x65\x00\x72\x00\x68\x00\xe4\x00\ +\x6c\x00\x74\x00\x6e\x00\x69\x00\x73\x00\x20\x00\x73\x00\x63\x00\ +\x68\x00\x6e\x00\x65\x00\x69\x00\x64\x00\x65\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1e\x43\x75\x74\x20\x61\x72\x65\x61\x73\ +\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\x73\x20\ +\x72\x61\x74\x69\x6f\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\x00\x53\x00\x74\ +\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x66\x00\x61\ +\x00\x72\x00\x62\x00\x65\x00\x20\x00\x66\x00\xfc\x00\x72\x00\x20\ +\x00\x53\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x72\ +\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x44\x65\ +\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\ +\x73\x74\x72\x75\x63\x74\x75\x72\x65\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x24\x00\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\ +\x64\x00\x20\x00\x57\x00\x61\x00\x6e\x00\x64\x00\x66\x00\x61\x00\ +\x72\x00\x62\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x44\ \x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ -\x20\x6e\x65\x77\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\ -\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x20\x77\x61\x6c\x6c\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ \x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5e\x00\x45\x00\ -\x7a\x00\x20\x00\x61\x00\x7a\x00\x20\x00\x61\x00\x6c\x00\x61\x00\ -\x70\x00\xe9\x00\x72\x00\x74\x00\x65\x00\x6c\x00\x6d\x00\x65\x00\ -\x7a\x00\x65\x00\x74\x00\x74\x00\x20\x00\x73\x00\x7a\x00\xed\x00\ -\x6e\x00\x20\x00\x61\x00\x7a\x00\x20\x00\xfa\x00\x6a\x00\x20\x00\ -\x66\x00\x61\x00\x6c\x00\x20\x00\x74\x00\xe1\x00\x72\x00\x67\x00\ -\x79\x00\x61\x00\x6b\x00\x6e\x00\x61\x00\x6b\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x2e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\ -\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\ -\x6f\x72\x20\x6e\x65\x77\x20\x57\x61\x6c\x6c\x20\x6f\x62\x6a\x65\ -\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x41\x00\x72\x00\x63\ -\x00\x68\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0a\x41\x72\x63\x68\x20\x74\x6f\x6f\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x53\x00\ +\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x66\x00\ +\x61\x00\x72\x00\x62\x00\x65\x00\x20\x00\x66\x00\xfc\x00\x72\x00\ +\x20\x00\x46\x00\x65\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x72\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x19\x44\x65\x66\x61\x75\x6c\x74\ +\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\x69\x6e\x64\x6f\ +\x77\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x48\x00\x41\x00\x6c\x00\x6c\x00\ +\x67\x00\x65\x00\x6d\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x20\x00\ +\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\x74\x00\x65\x00\x6b\x00\ +\x74\x00\x75\x00\x72\x00\x2d\x00\x45\x00\x69\x00\x6e\x00\x73\x00\ +\x74\x00\x65\x00\x6c\x00\x6c\x00\x75\x00\x6e\x00\x67\x00\x65\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x47\x65\x6e\x65\x72\ +\x61\x6c\x20\x41\x72\x63\x68\x20\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x30\x00\x41\x00\x6c\x00\x6c\x00\x67\x00\ +\x65\x00\x6d\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x45\x00\ +\x69\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x75\x00\ +\x6e\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\ +\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x40\x00\x47\x00\x72\x00\x75\x00\x70\ +\x00\x70\x00\x69\x00\x65\x00\x72\x00\x65\x00\x20\x00\x4b\x00\x6f\ +\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\ +\x00\x6e\x00\x20\x00\x6e\x00\x61\x00\x63\x00\x68\x00\x20\x00\x54\ +\x00\x79\x00\x70\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x19\x47\x72\x6f\x75\x70\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x20\x62\x79\x20\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x14\x00\x49\x00\x46\x00\x43\x00\x2d\x00\x49\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\ +\x49\x46\x43\x20\x69\x6d\x70\x6f\x72\x74\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\xbc\x00\x57\x00\x65\x00\x6e\x00\x6e\x00\x20\x00\x67\x00\x65\x00\ +\x73\x00\x65\x00\x74\x00\x7a\x00\x74\x00\x2c\x00\x20\x00\x77\x00\ +\x69\x00\x72\x00\x64\x00\x20\x00\x64\x00\x65\x00\x72\x00\x20\x00\ +\x49\x00\x46\x00\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\ +\x68\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\x49\x00\x6d\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x00\x20\x00\x76\x00\x65\x00\ +\x72\x00\x77\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x74\x00\x2c\x00\ +\x20\x00\x64\x00\x65\x00\x72\x00\x20\x00\x65\x00\x72\x00\x6c\x00\ +\x61\x00\x75\x00\x62\x00\x74\x00\x20\x00\x77\x00\x65\x00\x69\x00\ +\x74\x00\x65\x00\x72\x00\x65\x00\x20\x00\x49\x00\x46\x00\x43\x00\ +\x20\x00\x7a\x00\x75\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x69\x00\x65\x00\x72\x00\x65\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x5d\x49\x66\x20\x74\x68\x69\x73\x20\x69\ +\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x49\ +\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\x69\x6d\x70\x6f\ +\x72\x74\x65\x72\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x75\x73\x65\ +\x64\x2c\x20\x61\x6c\x6c\x6f\x77\x69\x6e\x67\x20\x74\x6f\x20\x69\ +\x6d\x70\x6f\x72\x74\x20\x6d\x6f\x72\x65\x20\x49\x46\x43\x20\x74\ +\x79\x70\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x74\x00\x4d\x00\xf6\x00\ +\x62\x00\x65\x00\x6c\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x69\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x20\x00\ +\x28\x00\x6b\x00\x61\x00\x6e\x00\x6e\x00\x20\x00\x64\x00\x61\x00\ +\x73\x00\x20\x00\x4d\x00\x6f\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\ +\x20\x00\x73\x00\x63\x00\x68\x00\x77\x00\x65\x00\x72\x00\x67\x00\ +\x65\x00\x77\x00\x69\x00\x63\x00\x68\x00\x74\x00\x69\x00\x67\x00\ +\x20\x00\x6d\x00\x61\x00\x63\x00\x68\x00\x65\x00\x6e\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\x6d\x70\x6f\x72\x74\x20\ +\x66\x75\x72\x6e\x69\x74\x75\x72\x65\x20\x28\x63\x61\x6e\x20\x6d\ +\x61\x6b\x65\x20\x74\x68\x65\x20\x6d\x6f\x64\x65\x6c\x20\x68\x65\ +\x61\x76\x79\x29\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x66\x00\x44\x00\x65\x00\ +\x62\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x66\x00\x6f\x00\x72\x00\ +\x6d\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\ +\x20\x00\x77\x00\xe4\x00\x68\x00\x72\x00\x65\x00\x6e\x00\x64\x00\ +\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x32\x00\x44\x00\x2d\x00\ +\x52\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x6e\x00\x73\x00\ +\x20\x00\x61\x00\x6e\x00\x7a\x00\x65\x00\x69\x00\x67\x00\x65\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x53\x68\x6f\x77\x20\ +\x64\x65\x62\x75\x67\x20\x69\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\ +\x6e\x20\x64\x75\x72\x69\x6e\x67\x20\x32\x44\x20\x72\x65\x6e\x64\ +\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x46\x00\x52\x00\x65\ +\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x65\x00\x72\x00\x2d\x00\x44\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x2d\x00\x4e\x00\x61\x00\x63\ +\x00\x68\x00\x72\x00\x69\x00\x63\x00\x68\x00\x74\x00\x65\x00\x6e\ +\x00\x20\x00\x61\x00\x6e\x00\x7a\x00\x65\x00\x69\x00\x67\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x53\x68\x6f\x77\ +\x20\x72\x65\x6e\x64\x65\x72\x65\x72\x20\x64\x65\x62\x75\x67\x20\ +\x6d\x65\x73\x73\x61\x67\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\xa2\x00\ +\x47\x00\x69\x00\x62\x00\x74\x00\x20\x00\x61\x00\x6e\x00\x20\x00\ +\x77\x00\x69\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x74\x00\x20\x00\ +\x64\x00\x69\x00\x65\x00\x20\x00\x4c\x00\x69\x00\x6e\x00\x69\x00\ +\x65\x00\x6e\x00\x73\x00\x74\x00\xe4\x00\x72\x00\x6b\x00\x65\x00\ +\x20\x00\x61\x00\x6e\x00\x67\x00\x65\x00\x77\x00\x65\x00\x6e\x00\ +\x64\x00\x65\x00\x74\x00\x20\x00\x77\x00\x65\x00\x72\x00\x64\x00\ +\x65\x00\x6e\x00\x20\x00\x6d\x00\x75\x00\x73\x00\x73\x00\x20\x00\ +\x75\x00\x6d\x00\x20\x00\x4c\x00\x69\x00\x6e\x00\x69\x00\x65\x00\ +\x6e\x00\x20\x00\x7a\x00\x75\x00\x20\x00\x64\x00\x75\x00\x72\x00\ +\x63\x00\x68\x00\x74\x00\x72\x00\x65\x00\x6e\x00\x6e\x00\x65\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x53\x70\x65\x63\x69\ +\x66\x69\x65\x73\x20\x68\x6f\x77\x20\x6d\x61\x6e\x79\x20\x74\x69\ +\x6d\x65\x73\x20\x74\x68\x65\x20\x76\x69\x65\x77\x65\x64\x20\x6c\ +\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\x73\x20\x6d\x75\ +\x73\x74\x20\x62\x65\x20\x61\x70\x70\x6c\x69\x65\x64\x20\x74\x6f\ +\x20\x63\x75\x74\x20\x6c\x69\x6e\x65\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x66\x00\x44\x00\x69\x00\x65\x00\x73\x00\x20\x00\x69\x00\x73\x00\ +\x74\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x53\x00\x74\x00\ +\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x66\x00\x61\x00\ +\x72\x00\x62\x00\x65\x00\x20\x00\x66\x00\xfc\x00\x72\x00\x20\x00\ +\x6e\x00\x65\x00\x75\x00\x65\x00\x20\x00\x53\x00\x74\x00\x72\x00\ +\x75\x00\x6b\x00\x74\x00\x75\x00\x72\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x33\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\ +\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\ +\x65\x77\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5e\x00\x44\x00\x69\x00\ +\x65\x00\x73\x00\x20\x00\x69\x00\x73\x00\x74\x00\x20\x00\x64\x00\ +\x69\x00\x65\x00\x20\x00\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\ +\x61\x00\x72\x00\x64\x00\x66\x00\x61\x00\x72\x00\x62\x00\x65\x00\ +\x20\x00\x66\x00\xfc\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x75\x00\ +\x65\x00\x20\x00\x57\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\ +\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ +\x20\x6e\x65\x77\x20\x57\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x4c\x00\x56\x00\x65\x00\x72\x00\x77\ +\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x49\x00\x46\x00\x43\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\ +\x00\x6c\x00\x2c\x00\x20\x00\x66\x00\x61\x00\x6c\x00\x6c\x00\x73\ +\x00\x20\x00\x76\x00\x6f\x00\x72\x00\x68\x00\x61\x00\x6e\x00\x64\ +\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\ +\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\x69\ +\x66\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x18\x00\x26\x00\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\x74\ +\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0d\x26\x41\x72\x63\x68\x69\x74\x65\x63\x74\x75\x72\ +\x65\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x10\ +\x00\x26\x00\x45\x00\x6e\x00\x74\x00\x77\x00\x75\x00\x72\x00\x66\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x26\x44\x72\x61\x66\x74\ +\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x00\ +\x42\x00\x6f\x00\x67\x00\x65\x00\x6e\x00\x77\x00\x65\x00\x72\x00\ +\x6b\x00\x7a\x00\x65\x00\x75\x00\x67\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0a\x41\x72\x63\x68\x20\x74\x6f\x6f\x6c\x73\x07\ +\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x42\ +\x00\x65\x00\x72\x00\x65\x00\x63\x00\x68\x00\x6e\x00\x75\x00\x6e\ +\x00\x67\x00\x73\x00\x77\x00\x65\x00\x72\x00\x6b\x00\x7a\x00\x65\ +\x00\x75\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\ +\x43\x61\x6c\x63\x75\x6c\x61\x74\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\ +\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x20\ +\x00\x4b\x00\x6f\x00\x6e\x00\x74\x00\x65\x00\x78\x00\x74\x00\x77\ +\x00\x65\x00\x72\x00\x6b\x00\x7a\x00\x65\x00\x75\x00\x67\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x74\x65\x78\ +\x74\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\ +\x01\x03\x00\x00\x00\x2e\x00\x4b\x00\x6f\x00\x6e\x00\x76\x00\x65\ +\x00\x72\x00\x74\x00\x69\x00\x65\x00\x72\x00\x75\x00\x6e\x00\x67\ +\x00\x73\x00\x77\x00\x65\x00\x72\x00\x6b\x00\x7a\x00\x65\x00\x75\ +\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x6f\ +\x6e\x76\x65\x72\x73\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\x00\ +\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x3c\x00\x45\x00\ +\x6e\x00\x74\x00\x77\x00\x75\x00\x72\x00\x66\x00\x2d\x00\x4d\x00\ +\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x6b\x00\x61\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x00\x73\x00\x77\x00\x65\x00\x72\x00\x6b\x00\ +\x7a\x00\x65\x00\x75\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\x20\x74\x6f\x6f\ \x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\ -\x18\x00\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\x74\x00\x65\x00\ -\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0c\x41\x72\x63\x68\x69\x74\x65\x63\x74\x75\x72\x65\x07\ -\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x44\ -\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x05\x44\x72\x61\x66\x74\x07\x00\x00\x00\x04\x61\x72\x63\x68\ -\x01\x03\x00\x00\x00\x16\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\ -\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\ -\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x10\ -\x00\x45\x00\x73\x00\x7a\x00\x6b\x00\xf6\x00\x7a\x00\xf6\x00\x6b\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x54\x6f\x6f\x6c\x73\x07\ -\x00\x00\x00\x04\x61\x72\x63\x68\x01\ +\x20\x00\x5a\x00\x65\x00\x69\x00\x63\x00\x68\x00\x65\x00\x6e\x00\ +\x77\x00\x65\x00\x72\x00\x6b\x00\x7a\x00\x65\x00\x75\x00\x67\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x72\x61\x66\x74\ +\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ +\x03\x00\x00\x00\x90\x00\x50\x00\x79\x00\x63\x00\x6f\x00\x6c\x00\ +\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x77\x00\x75\x00\x72\x00\ +\x64\x00\x65\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\x00\x74\x00\ +\x20\x00\x67\x00\x65\x00\x66\x00\x75\x00\x6e\x00\x64\x00\x65\x00\ +\x6e\x00\x2c\x00\x20\x00\x43\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\ +\x64\x00\x61\x00\x20\x00\x55\x00\x6e\x00\x74\x00\x65\x00\x72\x00\ +\x73\x00\x74\x00\xfc\x00\x74\x00\x7a\x00\x75\x00\x6e\x00\x67\x00\ +\x20\x00\x77\x00\x69\x00\x72\x00\x64\x00\x20\x00\x64\x00\x65\x00\ +\x61\x00\x6b\x00\x74\x00\x69\x00\x76\x00\x69\x00\x65\x00\x72\x00\ +\x74\x00\x2e\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x70\ +\x79\x63\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\ +\x6e\x64\x2c\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\ +\x6f\x72\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x69\x73\x61\ +\x62\x6c\x65\x64\x2e\x0a\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ +\ \x00\x00\x17\x78\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ @@ -1012,1996 +16310,886 @@ qt_resource_data = "\ \x00\x6d\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x73\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x05\x54\x6f\x6f\x6c\x73\x07\x00\x00\ \x00\x04\x61\x72\x63\x68\x01\ -\x00\x00\x16\xec\ +\x00\x00\x4a\xd5\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ -\x00\x00\x01\x50\x00\x04\x9c\x2c\x00\x00\x02\xef\x00\x05\xa0\xa5\ -\x00\x00\x0b\x95\x00\x05\xd8\x2c\x00\x00\x0f\x67\x00\x39\xdf\x33\ -\x00\x00\x12\x66\x00\x4b\x87\xd4\x00\x00\x14\xe4\x00\x4d\x36\x62\ -\x00\x00\x04\x81\x00\x5b\x66\x33\x00\x00\x15\x50\x00\x62\x9b\xa8\ -\x00\x00\x0b\xc1\x00\xfb\x72\xf3\x00\x00\x11\xec\x01\xf7\xa8\x83\ -\x00\x00\x13\xa3\x02\x5f\xc9\x59\x00\x00\x0e\x4f\x02\x90\x40\x65\ -\x00\x00\x05\x5c\x02\xb8\xae\x74\x00\x00\x05\xa8\x02\xcd\x05\xa3\ -\x00\x00\x04\xb9\x02\xdd\x14\x14\x00\x00\x06\x02\x02\xe5\xaa\xe4\ -\x00\x00\x00\x9d\x03\x1d\xe8\xe3\x00\x00\x10\xe1\x03\xd4\x22\x74\ -\x00\x00\x00\xde\x04\xdb\x21\x3e\x00\x00\x0a\xc0\x05\x18\xda\xa3\ -\x00\x00\x03\xc9\x05\xe0\x4b\x67\x00\x00\x10\xad\x06\x32\xe3\xe3\ -\x00\x00\x15\x0c\x07\x60\x23\xf3\x00\x00\x00\x00\x09\x13\xce\x39\ -\x00\x00\x0f\x91\x09\xba\xe6\x35\x00\x00\x0e\x11\x09\xe3\x98\xe4\ -\x00\x00\x01\x2c\x09\xed\x98\x55\x00\x00\x08\xce\x0a\x7f\xee\xa3\ -\x00\x00\x14\x66\x0b\x51\x30\xa8\x00\x00\x07\x20\x0b\x65\xda\xb3\ -\x00\x00\x11\x6a\x0b\x8d\x97\x93\x00\x00\x12\xd1\x0b\xb9\xe8\x93\ -\x00\x00\x07\x7b\x0b\xc4\xb1\x23\x00\x00\x03\x17\x0b\xe2\xc4\x04\ -\x00\x00\x08\x25\x0c\x02\xac\xd7\x00\x00\x01\xf2\x0c\x25\x3e\x53\ -\x00\x00\x09\x9b\x0c\x4e\x9b\x23\x00\x00\x09\x15\x0d\x1e\xda\xa4\ -\x00\x00\x00\x39\x0d\x3b\x3b\x49\x00\x00\x0c\xcd\x0e\x32\x23\x85\ -\x00\x00\x14\xa7\x0e\x8c\xd7\x43\x00\x00\x0c\x06\x0e\xec\x0b\x9e\ -\x00\x00\x02\x28\x69\x00\x00\x15\x82\x03\x00\x00\x00\x16\x00\x43\ -\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ -\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\ -\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\ -\x68\x01\x03\x00\x00\x00\x32\x00\x4f\x00\x6e\x00\x64\x00\x65\x00\ -\x72\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x76\x00\ -\x61\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x74\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x19\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\ -\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ -\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x00\x56\x00\x65\x00\ -\x72\x00\x77\x00\x69\x00\x6a\x00\x64\x00\x65\x00\x72\x00\x20\x00\ -\x6b\x00\x69\x00\x6e\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0c\x52\x65\x6d\x6f\x76\x65\x20\x63\x68\x69\x6c\x64\x07\x00\x00\ -\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x24\x00\x56\x00\x6f\ -\x00\x65\x00\x67\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\ -\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x65\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\x63\x6f\ -\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\ -\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x78\x00\x44\x00\x65\x00\x20\ -\x00\x67\x00\x65\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\ -\x00\x65\x00\x65\x00\x72\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x6e\ -\x00\x64\x00\x65\x00\x72\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x6e\ -\x00\x20\x00\x74\x00\x6f\x00\x65\x00\x76\x00\x6f\x00\x65\x00\x67\ -\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x61\x00\x6e\x00\x20\x00\x68\ -\x00\x65\x00\x74\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x65\ -\x00\x76\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ -\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x41\x64\x64\x73\ -\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\ -\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\ -\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\ -\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x0c\ -\x00\x47\x00\x65\x00\x62\x00\x6f\x00\x75\x00\x77\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\ -\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\ -\x01\x03\x00\x00\x00\x70\x00\x4d\x00\x61\x00\x61\x00\x6b\x00\x74\ -\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x67\x00\x65\x00\x62\ -\x00\x6f\x00\x75\x00\x77\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ -\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x73\ -\x00\x69\x00\x65\x00\x66\x00\x20\x00\x67\x00\x65\x00\x73\x00\x65\ -\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x64\ -\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ -\x00\x65\x00\x6e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\ -\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x62\x75\x69\x6c\x64\x69\ -\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\ -\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ -\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\ -\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x06\x00\x43\x00\ -\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x43\x65\x6c\ -\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\ -\x03\x00\x00\x00\x64\x00\x4d\x00\x61\x00\x61\x00\x6b\x00\x74\x00\ -\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x63\x00\x65\x00\x6c\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ -\x76\x00\x61\x00\x6e\x00\x75\x00\x69\x00\x74\x00\x20\x00\x67\x00\ -\x65\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\ -\x65\x00\x72\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x65\x6c\ -\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\ -\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ -\x63\x74\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\ -\x6c\x01\x03\x00\x00\x00\x68\x00\x4d\x00\x61\x00\x61\x00\x6b\x00\ -\x74\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x6c\x00\ -\x6f\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x63\x00\x74\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x75\x00\x69\x00\ -\x74\x00\x20\x00\x67\x00\x65\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ -\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x64\x00\x65\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\ -\x20\x61\x20\x66\x6c\x6f\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x20\ -\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\ -\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0a\x41\ -\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x14\x00\ -\x56\x00\x65\x00\x72\x00\x64\x00\x69\x00\x65\x00\x70\x00\x69\x00\ -\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\ -\x6f\x72\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\ -\x72\x01\x03\x00\x00\x00\x52\x00\x4f\x00\x6d\x00\x7a\x00\x65\x00\ -\x74\x00\x20\x00\x67\x00\x65\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ -\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x64\x00\x65\x00\x20\x00\ -\x6e\x00\x65\x00\x74\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x69\x00\ -\x6e\x00\x20\x00\x44\x00\x65\x00\x65\x00\x6c\x00\x20\x00\x76\x00\ -\x6f\x00\x72\x00\x6d\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x2d\x54\x75\x72\x6e\x73\x20\x73\x65\x6c\x65\x63\x74\x65\ -\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x50\x61\ -\x72\x74\x20\x53\x68\x61\x70\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x07\x00\x00\x00\x0f\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\ -\x50\x61\x72\x74\x01\x03\x00\x00\x00\x1a\x00\x4e\x00\x65\x00\x74\ -\x00\x20\x00\x6e\x00\x61\x00\x61\x00\x72\x00\x20\x00\x56\x00\x6f\ -\x00\x72\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\ -\x73\x68\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x10\ -\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\ -\x01\x03\x00\x00\x00\x2a\x00\x56\x00\x65\x00\x72\x00\x77\x00\x69\ -\x00\x6a\x00\x64\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x63\ -\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\x6d\x6f\x76\x65\ -\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\ -\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\xac\ -\x00\x56\x00\x65\x00\x72\x00\x77\x00\x69\x00\x6a\x00\x64\x00\x65\ -\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x67\x00\x65\x00\x73\ -\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x65\x00\x72\ -\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x6e\x00\x64\x00\x65\x00\x72\ -\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x61\ -\x00\x6e\x00\x20\x00\x68\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x75\ -\x00\x64\x00\x65\x00\x72\x00\x73\x00\x2c\x00\x20\x00\x6f\x00\x66\ -\x00\x20\x00\x6d\x00\x61\x00\x61\x00\x6b\x00\x20\x00\x65\x00\x65\ -\x00\x6e\x00\x20\x00\x67\x00\x61\x00\x74\x00\x20\x00\x69\x00\x6e\ -\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x6d\ -\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x52\x52\x65\x6d\x6f\x76\x65\x20\x74\x68\x65\ -\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\ -\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x69\x72\x20\ -\x70\x61\x72\x65\x6e\x74\x73\x2c\x20\x6f\x72\x20\x63\x72\x65\x61\ -\x74\x65\x20\x61\x20\x68\x6f\x6c\x65\x20\x69\x6e\x20\x61\x20\x63\ -\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\ -\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\x20\x00\x56\ -\x00\x6f\x00\x72\x00\x6d\x00\x20\x00\x76\x00\x65\x00\x72\x00\x77\ -\x00\x69\x00\x6a\x00\x64\x00\x65\x00\x72\x00\x65\x00\x6e\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x16\x52\x65\x6d\x6f\x76\x65\x20\x53\ -\x68\x61\x70\x65\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x07\x00\ -\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\ -\x61\x70\x65\x01\x03\x00\x00\x00\x5c\x00\x56\x00\x65\x00\x72\x00\ -\x77\x00\x69\x00\x6a\x00\x64\x00\x65\x00\x72\x00\x74\x00\x20\x00\ -\x6b\x00\x75\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x65\x00\x20\x00\ -\x76\x00\x6f\x00\x72\x00\x6d\x00\x65\x00\x6e\x00\x20\x00\x75\x00\ -\x69\x00\x74\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x2d\x00\ -\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\ -\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x52\ -\x65\x6d\x6f\x76\x65\x73\x20\x63\x75\x62\x69\x63\x20\x73\x68\x61\ -\x70\x65\x73\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x20\x63\x6f\ -\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\ -\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\ -\x00\x00\x58\x00\x56\x00\x6f\x00\x65\x00\x67\x00\x74\x00\x20\x00\ -\x65\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\x00\ -\x69\x00\x65\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x61\x00\x61\x00\ -\x6e\x00\x20\x00\x68\x00\x65\x00\x74\x00\x20\x00\x64\x00\x6f\x00\ -\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x2b\x41\x64\x64\x73\x20\x61\x20\x73\x65\x63\x74\ -\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\ -\x20\x74\x6f\x20\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\ -\x07\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\ -\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x14\x00\x53\x00\x65\ -\x00\x63\x00\x74\x00\x69\x00\x65\x00\x70\x00\x6c\x00\x61\x00\x6e\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\x63\x74\x69\x6f\ -\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x41\x72\x63\x68\ -\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\ -\x00\x00\x3e\x00\x4e\x00\x69\x00\x65\x00\x74\x00\x2d\x00\x6d\x00\ -\x61\x00\x6e\x00\x69\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\ -\x6e\x00\x65\x00\x74\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x73\x00\ -\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x72\x00\x65\x00\ -\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\x65\x6c\x65\x63\ -\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\ -\x65\x73\x68\x65\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\ -\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\ -\x68\x65\x73\x01\x03\x00\x00\x00\xaa\x00\x53\x00\x65\x00\x6c\x00\ -\x65\x00\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x74\x00\x20\x00\ -\x61\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x6e\x00\x69\x00\x65\x00\ -\x74\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\x66\x00\x6f\x00\ -\x6c\x00\x64\x00\x20\x00\x6e\x00\x65\x00\x74\x00\x74\x00\x65\x00\ -\x6e\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x68\x00\x65\x00\ -\x74\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\ -\x6e\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x76\x00\x61\x00\ -\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\x67\x00\x65\x00\x73\x00\ -\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\ -\x64\x00\x65\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x65\x00\x70\x00\ -\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x53\x65\x6c\ -\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\ -\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x66\x72\x6f\ -\x6d\x20\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x20\x6f\ -\x72\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ -\x74\x65\x64\x20\x67\x72\x6f\x75\x70\x73\x07\x00\x00\x00\x19\x41\ -\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\ -\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x86\x00\x4d\ -\x00\x61\x00\x61\x00\x6b\x00\x74\x00\x20\x00\x65\x00\x65\x00\x6e\ -\x00\x20\x00\x62\x00\x6f\x00\x75\x00\x77\x00\x74\x00\x65\x00\x72\ -\x00\x72\x00\x65\x00\x69\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\ -\x00\x65\x00\x63\x00\x74\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x20\ -\x00\x67\x00\x65\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\ -\x00\x65\x00\x65\x00\x72\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x62\ -\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x69\ -\x00\x6e\x00\x62\x00\x65\x00\x67\x00\x72\x00\x65\x00\x70\x00\x65\ -\x00\x6e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\ -\x65\x61\x74\x65\x73\x20\x61\x20\x73\x69\x74\x65\x20\x6f\x62\x6a\ -\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\ -\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\ -\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\ -\x00\x00\x0a\x00\x5a\x00\x69\x00\x6a\x00\x64\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\x00\x00\x00\x09\ -\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\x18\x00\ -\x4e\x00\x65\x00\x74\x00\x20\x00\x73\x00\x70\x00\x6c\x00\x69\x00\ -\x74\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x0e\ -\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\ -\x00\x00\x00\x72\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x73\ -\x00\x20\x00\x67\x00\x65\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\ -\x00\x74\x00\x65\x00\x65\x00\x72\x00\x64\x00\x65\x00\x20\x00\x6e\ -\x00\x65\x00\x74\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x69\x00\x6e\ -\x00\x20\x00\x6f\x00\x6e\x00\x61\x00\x66\x00\x68\x00\x61\x00\x6e\ -\x00\x6b\x00\x65\x00\x6c\x00\x69\x00\x6a\x00\x6b\x00\x65\x00\x20\ -\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ -\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\ -\x53\x70\x6c\x69\x74\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ -\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x69\x6e\x64\x65\ -\x70\x65\x6e\x64\x65\x6e\x74\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ -\x74\x73\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\ -\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\xc2\x00\x4d\x00\x61\x00\ -\x61\x00\x6b\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x73\x00\ -\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x75\x00\x72\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x76\x00\ -\x61\x00\x6e\x00\x61\x00\x66\x00\x20\x00\x6e\x00\x75\x00\x6c\x00\ -\x20\x00\x6f\x00\x66\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\ -\x65\x00\x65\x00\x6e\x00\x20\x00\x67\x00\x65\x00\x73\x00\x65\x00\ -\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x64\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ -\x28\x00\x73\x00\x63\x00\x68\x00\x65\x00\x74\x00\x73\x00\x2c\x00\ -\x20\x00\x64\x00\x72\x00\x61\x00\x61\x00\x64\x00\x2c\x00\x20\x00\ -\x76\x00\x6c\x00\x61\x00\x6b\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ -\x76\x00\x6f\x00\x6c\x00\x75\x00\x6d\x00\x65\x00\x29\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x5f\x43\x72\x65\x61\x74\x65\x73\x20\x61\ -\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\ -\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\ -\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\ -\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x73\x6b\x65\x74\x63\x68\ -\x2c\x20\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\ -\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\ -\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\x12\x00\ -\x53\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x75\x00\ -\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\x75\x63\ -\x74\x75\x72\x65\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\ -\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\xa8\x00\x4d\x00\ -\x61\x00\x61\x00\x6b\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\ -\x6d\x00\x75\x00\x75\x00\x72\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x63\x00\x74\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x61\x00\x66\x00\ -\x20\x00\x6e\x00\x75\x00\x6c\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ -\x76\x00\x61\x00\x6e\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\ -\x67\x00\x65\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ -\x65\x00\x65\x00\x72\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x63\x00\x74\x00\x20\x00\x28\x00\x64\x00\x72\x00\x61\x00\ -\x61\x00\x64\x00\x2c\x00\x20\x00\x76\x00\x6c\x00\x61\x00\x6b\x00\ -\x20\x00\x6f\x00\x66\x00\x20\x00\x76\x00\x6f\x00\x6c\x00\x75\x00\ -\x6d\x00\x65\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x43\ -\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\x61\x6c\x6c\x20\x6f\x62\ -\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\ -\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\ -\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\ -\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\ -\x29\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\ -\x03\x00\x00\x00\x08\x00\x4d\x00\x75\x00\x75\x00\x72\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x09\ -\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\xa2\x00\ -\x4d\x00\x61\x00\x61\x00\x6b\x00\x74\x00\x20\x00\x65\x00\x65\x00\ -\x6e\x00\x20\x00\x76\x00\x65\x00\x6e\x00\x73\x00\x74\x00\x65\x00\ -\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ -\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x65\x00\x65\x00\x6e\x00\ -\x20\x00\x67\x00\x65\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ -\x74\x00\x65\x00\x65\x00\x72\x00\x64\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x28\x00\x64\x00\x72\x00\ -\x61\x00\x61\x00\x64\x00\x2c\x00\x20\x00\x72\x00\x65\x00\x63\x00\ -\x68\x00\x74\x00\x68\x00\x6f\x00\x65\x00\x6b\x00\x20\x00\x6f\x00\ -\x66\x00\x20\x00\x73\x00\x63\x00\x68\x00\x65\x00\x74\x00\x73\x00\ -\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5a\x43\x72\x65\x61\x74\ -\x65\x73\x20\x61\x20\x77\x69\x6e\x64\x6f\x77\x20\x6f\x62\x6a\x65\ -\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\ -\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\ -\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\ -\x20\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\x20\x6f\x72\x20\x73\x6b\ -\x65\x74\x63\x68\x29\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\ -\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0e\x00\x56\x00\x65\x00\ -\x6e\x00\x73\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x0b\x41\x72\ -\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x3c\x00\ -\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x61\x00\x72\x00\ -\x64\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x76\x00\ -\x6f\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\ -\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x1c\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ -\x6f\x72\x20\x66\x6f\x72\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\ -\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ -\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x53\x00\x74\x00\x61\x00\x6e\ -\x00\x64\x00\x61\x00\x61\x00\x72\x00\x64\x00\x20\x00\x6b\x00\x6c\ -\x00\x65\x00\x75\x00\x72\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\ -\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6d\x00\x75\x00\x72\x00\x65\ -\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x44\x65\x66\x61\ -\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\x61\ -\x6c\x6c\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\x41\x00\x6c\x00\x67\ -\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x65\x00\x20\x00\x41\x00\x72\ -\x00\x63\x00\x68\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\ -\x00\x6c\x00\x6c\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x6e\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\x20\ -\x41\x72\x63\x68\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\ -\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ -\x00\x00\x00\x2a\x00\x41\x00\x6c\x00\x67\x00\x65\x00\x6d\x00\x65\ -\x00\x6e\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\ -\x00\x6c\x00\x6c\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x6e\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\ -\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x6e\x00\ -\x44\x00\x69\x00\x74\x00\x20\x00\x69\x00\x73\x00\x20\x00\x64\x00\ -\x65\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\ -\x61\x00\x72\x00\x64\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\x72\x00\ -\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x69\x00\ -\x65\x00\x75\x00\x77\x00\x65\x00\x20\x00\x73\x00\x74\x00\x72\x00\ -\x75\x00\x63\x00\x74\x00\x75\x00\x75\x00\x72\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x33\x54\x68\x69\x73\x20\x69\x73\x20\x74\ -\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\ -\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x53\x74\x72\x75\x63\x74\x75\ -\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ -\x64\x00\x44\x00\x69\x00\x74\x00\x20\x00\x69\x00\x73\x00\x20\x00\ -\x64\x00\x65\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\ -\x61\x00\x61\x00\x72\x00\x64\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\ -\x72\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\ -\x69\x00\x65\x00\x75\x00\x77\x00\x65\x00\x20\x00\x6d\x00\x75\x00\ -\x75\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ -\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x54\ -\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\ -\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\ -\x20\x57\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ -\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ -\x00\x00\x00\x1e\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x77\ -\x00\x65\x00\x72\x00\x6b\x00\x74\x00\x75\x00\x69\x00\x67\x00\x65\ -\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x41\x72\x63\x68\ -\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ -\x03\x00\x00\x00\x18\x00\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\ -\x74\x00\x65\x00\x63\x00\x74\x00\x75\x00\x75\x00\x72\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0c\x41\x72\x63\x68\x69\x74\x65\x63\x74\ -\x75\x72\x65\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\ -\x00\x0a\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x05\x44\x72\x61\x66\x74\x07\x00\x00\x00\x04\ -\x61\x72\x63\x68\x01\x03\x00\x00\x00\x20\x00\x44\x00\x72\x00\x61\ -\x00\x66\x00\x74\x00\x20\x00\x77\x00\x65\x00\x72\x00\x6b\x00\x74\ -\x00\x75\x00\x69\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x07\ -\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x57\ -\x00\x65\x00\x72\x00\x6b\x00\x74\x00\x75\x00\x69\x00\x67\x00\x65\ -\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x54\x6f\x6f\x6c\ -\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ -\x00\x00\x17\x5a\ -\x3c\ -\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ -\x00\x00\x01\x50\x00\x04\x9c\x2c\x00\x00\x02\xe1\x00\x05\xa0\xa5\ -\x00\x00\x0b\xb3\x00\x05\xd8\x2c\x00\x00\x0f\xb7\x00\x39\xdf\x33\ -\x00\x00\x12\xca\x00\x4b\x87\xd4\x00\x00\x15\x62\x00\x4d\x36\x62\ -\x00\x00\x04\x83\x00\x5b\x66\x33\x00\x00\x15\xc6\x00\x62\x9b\xa8\ -\x00\x00\x0b\xdd\x00\xfb\x72\xf3\x00\x00\x12\x54\x01\xf7\xa8\x83\ -\x00\x00\x14\x0d\x02\x5f\xc9\x59\x00\x00\x0e\x8d\x02\x90\x40\x65\ -\x00\x00\x05\x6a\x02\xb8\xae\x74\x00\x00\x05\xc2\x02\xcd\x05\xa3\ -\x00\x00\x04\xb1\x02\xdd\x14\x14\x00\x00\x06\x1e\x02\xe5\xaa\xe4\ -\x00\x00\x00\x97\x03\x1d\xe8\xe3\x00\x00\x11\x47\x03\xd4\x22\x74\ -\x00\x00\x00\xdc\x04\xdb\x21\x3e\x00\x00\x0a\xfc\x05\x18\xda\xa3\ -\x00\x00\x03\xcb\x05\xe0\x4b\x67\x00\x00\x11\x13\x06\x32\xe3\xe3\ -\x00\x00\x15\x8a\x07\x60\x23\xf3\x00\x00\x00\x00\x09\x13\xce\x39\ -\x00\x00\x0f\xdf\x09\xba\xe6\x35\x00\x00\x0e\x4f\x09\xe3\x98\xe4\ -\x00\x00\x01\x2e\x09\xed\x98\x55\x00\x00\x08\xf4\x0a\x7f\xee\xa3\ -\x00\x00\x14\xd8\x0b\x51\x30\xa8\x00\x00\x07\x40\x0b\x65\xda\xb3\ -\x00\x00\x11\xd6\x0b\x8d\x97\x93\x00\x00\x13\x31\x0b\xb9\xe8\x93\ -\x00\x00\x07\x9f\x0b\xc4\xb1\x23\x00\x00\x03\x11\x0b\xe2\xc4\x04\ -\x00\x00\x08\x4d\x0c\x02\xac\xd7\x00\x00\x01\xe0\x0c\x25\x3e\x53\ -\x00\x00\x09\xdb\x0c\x4e\x9b\x23\x00\x00\x09\x45\x0d\x1e\xda\xa4\ -\x00\x00\x00\x37\x0d\x3b\x3b\x49\x00\x00\x0c\xff\x0e\x32\x23\x85\ -\x00\x00\x15\x25\x0e\x8c\xd7\x43\x00\x00\x0c\x2e\x0e\xec\x0b\x9e\ -\x00\x00\x02\x1a\x69\x00\x00\x15\xf0\x03\x00\x00\x00\x14\x00\x43\ -\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x61\x00\x6e\x00\x74\ -\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\x6d\x70\ -\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ -\x03\x00\x00\x00\x2e\x00\x43\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\ -\x73\x00\x61\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x64\x00\x65\x00\ -\x20\x00\x63\x00\x65\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x43\x6f\x6d\ -\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ -\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ -\x03\x00\x00\x00\x20\x00\x52\x00\x65\x00\x74\x00\x69\x00\x72\x00\ -\x65\x00\x72\x00\x20\x00\x6c\x00\x27\x00\x65\x00\x6e\x00\x66\x00\ -\x61\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x52\ -\x65\x6d\x6f\x76\x65\x20\x63\x68\x69\x6c\x64\x07\x00\x00\x00\x04\ -\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x41\x00\x6a\x00\x6f\ -\x00\x75\x00\x74\x00\x65\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x20\ -\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x61\x00\x6e\ -\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\ -\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\ -\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x64\x00\x41\x00\x6a\ -\x00\x6f\x00\x75\x00\x74\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x73\ -\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x61\ -\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x73\x00\xe9\x00\x6c\x00\x65\ -\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x00\x73\ -\x00\x20\x00\xe0\x00\x20\x00\x6c\x00\x27\x00\x6f\x00\x62\x00\x6a\ -\x00\x65\x00\x74\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x66\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x41\x64\x64\x73\x20\x74\ -\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\ -\x6f\x6e\x65\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x61\x63\ -\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\ -\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x10\x00\x42\ -\x00\xe2\x00\x74\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\ -\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\ -\x6e\x67\x01\x03\x00\x00\x00\x70\x00\x43\x00\x72\x00\xe9\x00\x65\ -\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ -\x00\x74\x00\x20\x00\x62\x00\xe2\x00\x74\x00\x69\x00\x6d\x00\x65\ -\x00\x6e\x00\x74\x00\x20\x00\xe0\x00\x20\x00\x70\x00\x61\x00\x72\ -\x00\x74\x00\x69\x00\x72\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\ -\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x20\x00\x73\ -\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\ -\x00\x6e\x00\xe9\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x35\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x62\x75\x69\x6c\ -\x64\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\ -\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ -\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x0d\x41\x72\x63\x68\ -\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x0e\x00\ -\x43\x00\x65\x00\x6c\x00\x6c\x00\x75\x00\x6c\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x04\x43\x65\x6c\x6c\x07\x00\x00\x00\x09\ -\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x6c\x00\ -\x43\x00\x72\x00\xe9\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x20\x00\x63\x00\x65\x00\ -\x6c\x00\x6c\x00\x75\x00\x6c\x00\x65\x00\x20\x00\xe0\x00\x20\x00\ -\x70\x00\x61\x00\x72\x00\x74\x00\x69\x00\x72\x00\x20\x00\x64\x00\ -\x65\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ -\x73\x00\x20\x00\x73\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ -\x69\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x00\x73\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\ -\x65\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\ -\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ -\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\ -\x65\x6c\x6c\x01\x03\x00\x00\x00\x68\x00\x43\x00\x72\x00\xe9\x00\ -\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x74\x00\x20\x00\xe9\x00\x74\x00\x61\x00\x67\x00\x65\x00\ -\x20\x00\xe0\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\x69\x00\ -\x72\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x74\x00\x73\x00\x20\x00\x73\x00\xe9\x00\x6c\x00\ -\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x00\ -\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\x74\ -\x65\x73\x20\x61\x20\x66\x6c\x6f\x6f\x72\x20\x6f\x62\x6a\x65\x63\ -\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\ -\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\ -\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\ -\x0a\x00\xc9\x00\x74\x00\x61\x00\x67\x00\x65\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x0a\x41\ -\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x68\x00\ -\x54\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x66\x00\x6f\x00\x72\x00\ -\x6d\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x6d\x00\ -\x61\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x73\x00\ -\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ -\x6e\x00\xe9\x00\x65\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x20\x00\x46\x00\ -\x6f\x00\x72\x00\x6d\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x2d\x54\x75\x72\x6e\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ -\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x50\x61\x72\x74\ -\x20\x53\x68\x61\x70\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ -\x00\x00\x0f\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x50\x61\ -\x72\x74\x01\x03\x00\x00\x00\x26\x00\x4d\x00\x61\x00\x69\x00\x6c\ -\x00\x6c\x00\x61\x00\x67\x00\x65\x00\x20\x00\x76\x00\x65\x00\x72\ -\x00\x73\x00\x20\x00\x46\x00\x6f\x00\x72\x00\x6d\x00\x65\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x74\x6f\x20\ -\x53\x68\x61\x70\x65\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\ -\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x2c\ -\x00\x45\x00\x6e\x00\x6c\x00\x65\x00\x76\x00\x65\x00\x72\x00\x20\ -\x00\x75\x00\x6e\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ -\x00\x6f\x00\x73\x00\x61\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x10\x52\x65\x6d\x6f\x76\x65\x20\x63\x6f\x6d\ -\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\ -\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\xb0\x00\x52\x00\x65\ -\x00\x74\x00\x69\x00\x72\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x65\ -\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x73\ -\x00\x61\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x73\x00\xe9\x00\x6c\ -\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\xe9\ -\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x75\ -\x00\x72\x00\x73\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x6e\ -\x00\x74\x00\x73\x00\x2c\x00\x20\x00\x6f\x00\x75\x00\x20\x00\x63\ -\x00\x72\x00\xe9\x00\x65\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x20\ -\x00\x74\x00\x72\x00\x6f\x00\x75\x00\x20\x00\x64\x00\x61\x00\x6e\ -\x00\x73\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x6d\ -\x00\x70\x00\x6f\x00\x73\x00\x61\x00\x6e\x00\x74\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x52\x52\x65\x6d\x6f\x76\x65\x20\x74\x68\x65\ -\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\ -\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x69\x72\x20\ -\x70\x61\x72\x65\x6e\x74\x73\x2c\x20\x6f\x72\x20\x63\x72\x65\x61\ -\x74\x65\x20\x61\x20\x68\x6f\x6c\x65\x20\x69\x6e\x20\x61\x20\x63\ -\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\ -\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\x24\x00\x53\ -\x00\x75\x00\x70\x00\x70\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x72\ -\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\ -\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x52\x65\x6d\x6f\ -\x76\x65\x20\x53\x68\x61\x70\x65\x20\x66\x72\x6f\x6d\x20\x41\x72\ -\x63\x68\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\ -\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x60\x00\x53\x00\ -\x75\x00\x70\x00\x70\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x20\x00\ -\x6c\x00\x65\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\ -\x65\x00\x73\x00\x20\x00\x63\x00\x75\x00\x62\x00\x69\x00\x71\x00\ -\x75\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\ -\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x61\x00\x6e\x00\ -\x74\x00\x73\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x29\x52\x65\x6d\x6f\x76\x65\x73\x20\x63\ -\x75\x62\x69\x63\x20\x73\x68\x61\x70\x65\x73\x20\x66\x72\x6f\x6d\ -\x20\x41\x72\x63\x68\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\ -\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\ -\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x56\x00\x41\x00\x6a\x00\ -\x6f\x00\x75\x00\x74\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x20\x00\x70\x00\x6c\x00\ -\x61\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\x73\x00\x65\x00\ -\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x75\x00\ -\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\ -\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x41\x64\x64\x73\x20\ -\x61\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x20\ -\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x74\x68\x65\x20\x64\x6f\ -\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\x11\x41\x72\x63\x68\x5f\ -\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\ -\x00\x1e\x00\x50\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\x64\x00\x65\ -\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\x63\x74\x69\x6f\ -\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x41\x72\x63\x68\ -\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\ -\x00\x00\x4e\x00\x53\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ -\x69\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x72\x00\x20\x00\x6c\x00\ -\x65\x00\x73\x00\x20\x00\x6d\x00\x61\x00\x69\x00\x6c\x00\x6c\x00\ -\x61\x00\x67\x00\x65\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\ -\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\x66\x00\x6f\x00\x6c\x00\ -\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\x65\x6c\x65\x63\ -\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\ -\x65\x73\x68\x65\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\ -\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\ -\x68\x65\x73\x01\x03\x00\x00\x00\xa6\x00\x53\x00\xe9\x00\x6c\x00\ -\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\ -\x20\x00\x74\x00\x6f\x00\x75\x00\x73\x00\x20\x00\x6c\x00\x65\x00\ -\x73\x00\x20\x00\x6d\x00\x61\x00\x69\x00\x6c\x00\x6c\x00\x61\x00\ -\x67\x00\x65\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\ -\x6d\x00\x61\x00\x6e\x00\x69\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\ -\x20\x00\x64\x00\x75\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\ -\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x75\x00\x20\x00\ -\x64\x00\x65\x00\x73\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\ -\x70\x00\x65\x00\x73\x00\x20\x00\x73\x00\xe9\x00\x6c\x00\x65\x00\ -\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x00\x73\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x53\x65\x6c\x65\x63\x74\x73\ -\x20\x61\x6c\x6c\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\ -\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\ -\x65\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x20\x6f\x72\x20\x66\x72\ -\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ -\x67\x72\x6f\x75\x70\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\ -\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\ -\x73\x68\x65\x73\x01\x03\x00\x00\x00\x68\x00\x43\x00\x72\x00\xe9\ -\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\ -\x00\x65\x00\x74\x00\x20\x00\x73\x00\x69\x00\x74\x00\x65\x00\x20\ -\x00\xe0\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\x69\x00\x72\ -\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\ -\x00\x65\x00\x74\x00\x73\x00\x20\x00\x73\x00\xe9\x00\x6c\x00\x65\ -\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x00\x73\ -\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\ -\x74\x65\x73\x20\x61\x20\x73\x69\x74\x65\x20\x6f\x62\x6a\x65\x63\ -\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\ -\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\ -\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\ -\x08\x00\x53\x00\x69\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x04\x53\x69\x74\x65\x07\x00\x00\x00\x09\x41\x72\x63\x68\ -\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\x24\x00\x44\x00\x69\x00\ -\x76\x00\x69\x00\x73\x00\x65\x00\x72\x00\x20\x00\x75\x00\x6e\x00\ -\x65\x00\x20\x00\x6d\x00\x61\x00\x69\x00\x6c\x00\x6c\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\ -\x65\x73\x68\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\ -\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\x7c\x00\x44\x00\x69\ -\x00\x76\x00\x69\x00\x73\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x73\ -\x00\x20\x00\x6d\x00\x61\x00\x69\x00\x6c\x00\x6c\x00\x61\x00\x67\ -\x00\x65\x00\x73\x00\x20\x00\x73\x00\xe9\x00\x6c\x00\x65\x00\x63\ -\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x00\x73\x00\x20\ -\x00\x65\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\ -\x00\x73\x00\x61\x00\x6e\x00\x74\x00\x65\x00\x73\x00\x20\x00\x69\ -\x00\x6e\x00\x64\x00\xe9\x00\x70\x00\x65\x00\x6e\x00\x64\x00\x61\ -\x00\x6e\x00\x74\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x32\x53\x70\x6c\x69\x74\x73\x20\x73\x65\x6c\x65\x63\x74\x65\ -\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x69\x6e\ -\x64\x65\x70\x65\x6e\x64\x65\x6e\x74\x20\x63\x6f\x6d\x70\x6f\x6e\ -\x65\x6e\x74\x73\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\ -\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\xce\x00\x43\x00\ -\x72\x00\xe9\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x74\x00\x20\x00\x64\x00\x65\x00\x20\x00\ -\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\ -\x65\x00\x20\x00\xe0\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\ -\x69\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x7a\x00\xe9\x00\ -\x72\x00\x6f\x00\x20\x00\x6f\x00\x75\x00\x20\x00\x64\x00\x27\x00\ -\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ -\x20\x00\x73\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\ -\x6f\x00\x6e\x00\x6e\x00\xe9\x00\x20\x00\x28\x00\x65\x00\x73\x00\ -\x71\x00\x75\x00\x69\x00\x73\x00\x73\x00\x65\x00\x2c\x00\x20\x00\ -\x6c\x00\x69\x00\x67\x00\x6e\x00\x65\x00\x2c\x00\x20\x00\x66\x00\ -\x61\x00\x63\x00\x65\x00\x20\x00\x6f\x00\x75\x00\x20\x00\x73\x00\ -\x6f\x00\x6c\x00\x69\x00\x64\x00\x65\x00\x29\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x5f\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\ -\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\ -\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\ -\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ -\x6f\x62\x6a\x65\x63\x74\x20\x28\x73\x6b\x65\x74\x63\x68\x2c\x20\ -\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\ -\x6c\x69\x64\x29\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\ -\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\x12\x00\x53\x00\ -\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\x75\x63\x74\x75\ -\x72\x65\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\ -\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\xba\x00\x43\x00\x72\x00\ -\xe9\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x74\x00\x20\x00\x6d\x00\x75\x00\x72\x00\x20\x00\ -\x70\x00\x61\x00\x72\x00\x74\x00\x69\x00\x72\x00\x20\x00\x64\x00\ -\x65\x00\x20\x00\x7a\x00\xe9\x00\x72\x00\x6f\x00\x20\x00\x6f\x00\ -\x75\x00\x20\x00\x64\x00\x27\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x74\x00\x20\x00\x73\x00\xe9\x00\x6c\x00\ -\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x00\ -\x20\x00\x28\x00\x75\x00\x6e\x00\x65\x00\x20\x00\x6c\x00\x69\x00\ -\x67\x00\x6e\x00\x65\x00\x2c\x00\x20\x00\x75\x00\x6e\x00\x65\x00\ -\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6f\x00\x75\x00\ -\x20\x00\x75\x00\x6e\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\ -\x64\x00\x65\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x43\ -\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\x61\x6c\x6c\x20\x6f\x62\ -\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\ -\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\ -\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\ -\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\ -\x29\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\ -\x03\x00\x00\x00\x06\x00\x4d\x00\x75\x00\x72\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\ -\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\xba\x00\x43\x00\ -\x72\x00\xe9\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x74\x00\x20\x00\x66\x00\x65\x00\x6e\x00\ -\xea\x00\x74\x00\x72\x00\x65\x00\x20\x00\xe0\x00\x20\x00\x70\x00\ -\x61\x00\x72\x00\x74\x00\x69\x00\x72\x00\x20\x00\x64\x00\x65\x00\ -\x20\x00\x7a\x00\xe9\x00\x72\x00\x6f\x00\x20\x00\x6f\x00\x75\x00\ -\x20\x00\x64\x00\x27\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x74\x00\x20\x00\x73\x00\xe9\x00\x6c\x00\x65\x00\ -\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x00\x20\x00\ -\x28\x00\x66\x00\x69\x00\x6c\x00\x2c\x00\x20\x00\x72\x00\x65\x00\ -\x63\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\ -\x6f\x00\x75\x00\x20\x00\x65\x00\x73\x00\x71\x00\x75\x00\x69\x00\ -\x73\x00\x73\x00\x65\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x5a\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\x69\x6e\x64\x6f\ -\x77\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\ -\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\ -\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\ -\x28\x77\x69\x72\x65\x2c\x20\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\ -\x20\x6f\x72\x20\x73\x6b\x65\x74\x63\x68\x29\x07\x00\x00\x00\x0b\ -\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ -\x0e\x00\x46\x00\x65\x00\x6e\x00\xea\x00\x74\x00\x72\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x07\ -\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\ -\x03\x00\x00\x00\x42\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x65\x00\ -\x75\x00\x72\x00\x20\x00\x70\x00\x61\x00\x72\x00\x20\x00\x64\x00\ -\xe9\x00\x66\x00\x61\x00\x75\x00\x74\x00\x20\x00\x64\x00\x65\x00\ -\x73\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\ -\x75\x00\x72\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x1c\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\ -\x6f\x72\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x73\x07\x00\x00\ -\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ -\x00\x00\x00\x36\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x65\x00\x75\ -\x00\x72\x00\x20\x00\x70\x00\x61\x00\x72\x00\x20\x00\x64\x00\xe9\ -\x00\x66\x00\x61\x00\x75\x00\x74\x00\x20\x00\x64\x00\x65\x00\x73\ -\x00\x20\x00\x6d\x00\x75\x00\x72\x00\x73\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x17\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\ -\x72\x20\x66\x6f\x72\x20\x77\x61\x6c\x6c\x73\x07\x00\x00\x00\x1c\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ -\x00\x30\x00\x50\x00\x61\x00\x72\x00\x61\x00\x6d\x00\xe8\x00\x74\ -\x00\x72\x00\x65\x00\x73\x00\x20\x00\x67\x00\xe9\x00\x6e\x00\xe9\ -\x00\x72\x00\x61\x00\x75\x00\x78\x00\x20\x00\x41\x00\x72\x00\x63\ -\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x47\x65\x6e\x65\ -\x72\x61\x6c\x20\x41\x72\x63\x68\x20\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ -\x63\x68\x01\x03\x00\x00\x00\x26\x00\x50\x00\x61\x00\x72\x00\x61\ -\x00\x6d\x00\xe8\x00\x74\x00\x72\x00\x65\x00\x73\x00\x20\x00\x67\ -\x00\xe9\x00\x6e\x00\xe9\x00\x72\x00\x61\x00\x75\x00\x78\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\ -\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x78\x00\ -\x43\x00\x65\x00\x63\x00\x69\x00\x20\x00\x65\x00\x73\x00\x74\x00\ -\x20\x00\x6c\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x75\x00\x6c\x00\ -\x65\x00\x75\x00\x72\x00\x20\x00\x70\x00\x61\x00\x72\x00\x20\x00\ -\x64\x00\xe9\x00\x66\x00\x61\x00\x75\x00\x74\x00\x20\x00\x64\x00\ -\x65\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x75\x00\x76\x00\x65\x00\ -\x61\x00\x75\x00\x78\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x74\x00\x73\x00\x20\x00\x53\x00\x74\x00\x72\x00\x75\x00\x63\x00\ -\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x33\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\ -\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\ -\x65\x77\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\ -\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x6c\x00\x43\x00\x65\x00\ -\x63\x00\x69\x00\x20\x00\x65\x00\x73\x00\x74\x00\x20\x00\x6c\x00\ -\x61\x00\x20\x00\x63\x00\x6f\x00\x75\x00\x6c\x00\x65\x00\x75\x00\ -\x72\x00\x20\x00\x70\x00\x61\x00\x72\x00\x20\x00\x64\x00\xe9\x00\ -\x66\x00\x61\x00\x75\x00\x74\x00\x20\x00\x64\x00\x65\x00\x73\x00\ -\x20\x00\x6e\x00\x6f\x00\x75\x00\x76\x00\x65\x00\x61\x00\x75\x00\ -\x78\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\ -\x20\x00\x4d\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x2e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\ -\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\ -\x65\x77\x20\x57\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\ -\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\ -\x01\x03\x00\x00\x00\x2a\x00\x4f\x00\x75\x00\x74\x00\x69\x00\x6c\ -\x00\x73\x00\x20\x00\x64\x00\x27\x00\x61\x00\x72\x00\x63\x00\x68\ -\x00\x69\x00\x74\x00\x65\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x41\x72\x63\x68\x20\x74\ -\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\ -\x00\x00\x18\x00\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\x74\x00\ -\x65\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x0c\x41\x72\x63\x68\x69\x74\x65\x63\x74\x75\x72\ -\x65\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x0a\ -\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x05\x44\x72\x61\x66\x74\x07\x00\x00\x00\x04\x61\x72\ -\x63\x68\x01\x03\x00\x00\x00\x18\x00\x4f\x00\x75\x00\x74\x00\x69\ -\x00\x6c\x00\x73\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x20\ -\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\ -\x00\x00\x00\x0c\x00\x4f\x00\x75\x00\x74\x00\x69\x00\x6c\x00\x73\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x54\x6f\x6f\x6c\x73\x07\ -\x00\x00\x00\x04\x61\x72\x63\x68\x01\ -\x00\x00\x15\x62\ -\x3c\ -\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ -\x00\x00\x01\x50\x00\x04\x9c\x2c\x00\x00\x02\xa5\x00\x05\xa0\xa5\ -\x00\x00\x0b\x01\x00\x05\xd8\x2c\x00\x00\x0e\x87\x00\x39\xdf\x33\ -\x00\x00\x11\x22\x00\x4b\x87\xd4\x00\x00\x13\x66\x00\x4d\x36\x62\ -\x00\x00\x04\x25\x00\x5b\x66\x33\x00\x00\x13\xc8\x00\x62\x9b\xa8\ -\x00\x00\x0b\x2d\x00\xfb\x72\xf3\x00\x00\x10\xb0\x01\xf7\xa8\x83\ -\x00\x00\x12\x43\x02\x5f\xc9\x59\x00\x00\x0d\xb7\x02\x90\x40\x65\ -\x00\x00\x05\x00\x02\xb8\xae\x74\x00\x00\x05\x56\x02\xcd\x05\xa3\ -\x00\x00\x04\x55\x02\xdd\x14\x14\x00\x00\x05\xa0\x02\xe5\xaa\xe4\ -\x00\x00\x00\x8b\x03\x1d\xe8\xe3\x00\x00\x0f\xb7\x03\xd4\x22\x74\ -\x00\x00\x00\xc8\x04\xdb\x21\x3e\x00\x00\x0a\x56\x05\x18\xda\xa3\ -\x00\x00\x03\x77\x05\xe0\x4b\x67\x00\x00\x0f\x89\x06\x32\xe3\xe3\ -\x00\x00\x13\x8e\x07\x60\x23\xf3\x00\x00\x00\x00\x09\x13\xce\x39\ -\x00\x00\x0e\xb5\x09\xba\xe6\x35\x00\x00\x0d\x75\x09\xe3\x98\xe4\ -\x00\x00\x01\x0e\x09\xed\x98\x55\x00\x00\x08\x68\x0a\x7f\xee\xa3\ -\x00\x00\x12\xf2\x0b\x51\x30\xa8\x00\x00\x06\xb6\x0b\x65\xda\xb3\ -\x00\x00\x10\x40\x0b\x8d\x97\x93\x00\x00\x11\x85\x0b\xb9\xe8\x93\ -\x00\x00\x07\x17\x0b\xc4\xb1\x23\x00\x00\x02\xcf\x0b\xe2\xc4\x04\ -\x00\x00\x07\xb7\x0c\x02\xac\xd7\x00\x00\x01\xb6\x0c\x25\x3e\x53\ -\x00\x00\x09\x41\x0c\x4e\x9b\x23\x00\x00\x08\xc5\x0d\x1e\xda\xa4\ -\x00\x00\x00\x37\x0d\x3b\x3b\x49\x00\x00\x0c\x2d\x0e\x32\x23\x85\ -\x00\x00\x13\x29\x0e\x8c\xd7\x43\x00\x00\x0b\x78\x0e\xec\x0b\x9e\ -\x00\x00\x01\xee\x69\x00\x00\x13\xf8\x03\x00\x00\x00\x14\x00\x6b\ -\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ -\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\x6d\x70\ -\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ -\x03\x00\x00\x00\x22\x00\x53\x00\x6b\x01\x42\x00\x61\x00\x64\x00\ -\x6e\x00\x69\x00\x6b\x00\x69\x00\x20\x00\x6f\x00\x62\x00\x69\x00\ -\x65\x00\x6b\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x19\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\ -\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\ -\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x52\x00\x65\x00\x6d\x00\ -\x6f\x00\x76\x00\x65\x00\x20\x00\x63\x00\x68\x00\x69\x00\x6c\x00\ -\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x52\x65\x6d\x6f\x76\ -\x65\x20\x63\x68\x69\x6c\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\ -\x01\x03\x00\x00\x00\x1c\x00\x44\x00\x6f\x00\x64\x00\x61\x00\x6a\ -\x00\x20\x00\x73\x00\x6b\x01\x42\x00\x61\x00\x64\x00\x6e\x00\x69\ -\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\ -\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\ -\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x5a\x00\x44\x00\x6f\ -\x00\x64\x00\x61\x00\x6a\x00\x65\x00\x20\x00\x77\x00\x79\x00\x62\ -\x00\x72\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x73\x00\x6b\x01\x42\ -\x00\x61\x00\x64\x00\x6e\x00\x69\x00\x6b\x00\x69\x00\x20\x00\x64\ -\x00\x6f\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x79\x00\x77\x00\x6e\ -\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\ -\x00\x6b\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\ -\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ -\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x74\x6f\x20\ -\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\ -\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\ -\x00\x00\x00\x0e\x00\x42\x00\x75\x00\x64\x00\x79\x00\x6e\x00\x65\ -\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\x6c\ -\x64\x69\x6e\x67\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\ -\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x60\x00\x54\x00\x77\ -\x00\x6f\x00\x72\x00\x7a\x00\x79\x00\x20\x00\x6f\x00\x62\x00\x69\ -\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x42\x00\x75\x00\x64\x00\x79\ -\x00\x6e\x00\x65\x00\x6b\x00\x20\x00\x77\x00\x72\x00\x61\x00\x7a\ -\x00\x20\x00\x7a\x00\x20\x00\x77\x00\x79\x00\x62\x00\x72\x00\x61\ -\x00\x6e\x00\x79\x00\x6d\x00\x69\x00\x20\x00\x6f\x00\x62\x00\x69\ -\x00\x65\x00\x6b\x00\x74\x00\x61\x00\x6d\x00\x69\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x35\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ -\x62\x75\x69\x6c\x64\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x20\ -\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\ -\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x0d\ -\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\ -\x00\x00\x08\x00\x43\x00\x65\x00\x6c\x00\x6c\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x04\x43\x65\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\ -\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x5a\x00\x54\x00\ -\x77\x00\x6f\x00\x72\x00\x7a\x00\x79\x00\x20\x00\x6f\x00\x62\x00\ -\x69\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x43\x00\x65\x00\x6c\x00\ -\x6c\x00\x20\x00\x77\x00\x72\x00\x61\x00\x7a\x00\x20\x00\x7a\x00\ -\x20\x00\x77\x00\x79\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x79\x00\ -\x6d\x00\x69\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\ -\x74\x00\x61\x00\x6d\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x65\x6c\x6c\x20\ -\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\ -\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ -\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\ -\x03\x00\x00\x00\x5e\x00\x54\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\ -\x79\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\ -\x20\x00\x50\x00\x69\x01\x19\x00\x74\x00\x72\x00\x6f\x00\x20\x00\ -\x77\x00\x72\x00\x61\x00\x7a\x00\x20\x00\x7a\x00\x20\x00\x77\x00\ -\x79\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x79\x00\x6d\x00\x69\x00\ -\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x61\x00\ -\x6d\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\ -\x61\x74\x65\x73\x20\x61\x20\x66\x6c\x6f\x6f\x72\x20\x6f\x62\x6a\ -\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\ -\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ -\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\ -\x00\x00\x0c\x00\x50\x00\x69\x01\x19\x00\x74\x00\x72\x00\x6f\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\ -\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\ -\x00\x00\x5a\x00\x54\x00\x75\x00\x72\x00\x6e\x00\x73\x00\x20\x00\ -\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ -\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\ -\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x50\x00\x61\x00\x72\x00\ -\x74\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x2d\x54\x75\x72\x6e\x73\x20\x73\x65\x6c\ -\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\ -\x6f\x20\x50\x61\x72\x74\x20\x53\x68\x61\x70\x65\x20\x6f\x62\x6a\ -\x65\x63\x74\x73\x07\x00\x00\x00\x0f\x41\x72\x63\x68\x5f\x4d\x65\ -\x73\x68\x54\x6f\x50\x61\x72\x74\x01\x03\x00\x00\x00\x24\x00\x53\ -\x00\x69\x00\x61\x00\x74\x00\x6b\x00\x61\x00\x20\x00\x64\x00\x6f\ -\x00\x20\x00\x4b\x00\x73\x00\x7a\x00\x74\x00\x61\x01\x42\x00\x74\ -\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\ -\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x10\x41\x72\ -\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\ -\x00\x00\x00\x1a\x00\x55\x00\x73\x00\x75\x01\x44\x00\x20\x00\x73\ -\x00\x6b\x01\x42\x00\x61\x00\x64\x00\x6e\x00\x69\x00\x6b\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\x6d\x6f\x76\x65\x20\x63\ -\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\ -\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\xa4\x00\x52\ -\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x74\x00\x68\ -\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\ -\x00\x65\x00\x64\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\ -\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x66\x00\x72\ -\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x69\x00\x72\ -\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x73\ -\x00\x2c\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x63\x00\x72\x00\x65\ -\x00\x61\x00\x74\x00\x65\x00\x20\x00\x61\x00\x20\x00\x68\x00\x6f\ -\x00\x6c\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x61\x00\x20\ -\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ -\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x65\x6d\x6f\ -\x76\x65\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ -\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\ -\x74\x68\x65\x69\x72\x20\x70\x61\x72\x65\x6e\x74\x73\x2c\x20\x6f\ -\x72\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x68\x6f\x6c\x65\x20\ -\x69\x6e\x20\x61\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ -\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\ -\x00\x00\x00\x26\x00\x55\x00\x73\x00\x75\x01\x44\x00\x20\x00\x4b\ -\x00\x73\x00\x7a\x00\x74\x00\x61\x01\x42\x00\x74\x00\x20\x00\x7a\ -\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x16\x52\x65\x6d\x6f\x76\x65\x20\x53\x68\x61\x70\x65\ -\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x07\x00\x00\x00\x10\x41\ -\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\ -\x03\x00\x00\x00\x52\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\ -\x65\x00\x73\x00\x20\x00\x63\x00\x75\x00\x62\x00\x69\x00\x63\x00\ -\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x00\x73\x00\x20\x00\ -\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x41\x00\x72\x00\x63\x00\ -\x68\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\ -\x65\x00\x6e\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x29\x52\x65\x6d\x6f\x76\x65\x73\x20\x63\x75\x62\x69\x63\x20\x73\ -\x68\x61\x70\x65\x73\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x20\ -\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x10\x41\ -\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\ -\x03\x00\x00\x00\x60\x00\x44\x00\x6f\x00\x64\x00\x61\x00\x6a\x00\ -\x65\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\ -\x20\x00\x50\x01\x42\x00\x61\x00\x73\x00\x7a\x00\x63\x00\x7a\x00\ -\x79\x00\x7a\x00\x6e\x00\x61\x00\x20\x00\x50\x00\x72\x00\x7a\x00\ -\x65\x00\x6b\x00\x72\x00\x6f\x00\x6a\x00\x75\x00\x20\x00\x64\x00\ -\x6f\x00\x20\x00\x64\x00\x6f\x00\x6b\x00\x75\x00\x6d\x00\x65\x00\ -\x6e\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x41\ -\x64\x64\x73\x20\x61\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\ -\x61\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x74\x68\ -\x65\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\x11\x41\ -\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\ -\x01\x03\x00\x00\x00\x2a\x00\x50\x01\x42\x00\x61\x00\x73\x00\x7a\ -\x00\x63\x00\x7a\x00\x79\x00\x7a\x00\x6e\x00\x61\x00\x20\x00\x70\ -\x00\x72\x00\x7a\x00\x65\x00\x6b\x00\x72\x00\x6f\x00\x6a\x00\x75\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\x63\x74\x69\x6f\ -\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x41\x72\x63\x68\ -\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\ -\x00\x00\x34\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ -\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\ -\x69\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x6d\x00\x65\x00\ -\x73\x00\x68\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x1a\x53\x65\x6c\x65\x63\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\ -\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\x00\x19\ -\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\ -\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x9a\x00\ -\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ -\x61\x00\x6c\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\ -\x6d\x00\x61\x00\x6e\x00\x69\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\ -\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\ -\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\ -\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\ -\x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\ -\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\ -\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x67\x00\ -\x72\x00\x6f\x00\x75\x00\x70\x00\x73\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x4d\x53\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6e\ -\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\ -\x65\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x64\x6f\x63\x75\ -\x6d\x65\x6e\x74\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\ -\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x67\x72\x6f\x75\x70\x73\ -\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\ -\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\ -\x00\x00\x00\x5c\x00\x54\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\x79\ -\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x20\ -\x00\x54\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x77\x00\x72\ -\x00\x61\x00\x7a\x00\x20\x00\x7a\x00\x20\x00\x77\x00\x79\x00\x62\ -\x00\x72\x00\x61\x00\x6e\x00\x79\x00\x6d\x00\x69\x00\x20\x00\x6f\ -\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x61\x00\x6d\x00\x69\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\ -\x73\x20\x61\x20\x73\x69\x74\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\ -\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\ -\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x09\ -\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\x0a\x00\ -\x54\x00\x65\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x04\x53\x69\x74\x65\x07\x00\x00\x00\x09\x41\x72\x63\x68\ -\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\x1e\x00\x52\x00\x6f\x00\ -\x7a\x00\x64\x00\x7a\x00\x69\x00\x65\x00\x6c\x00\x20\x00\x73\x00\ -\x69\x00\x61\x00\x74\x00\x6b\x01\x19\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\ -\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\ -\x01\x03\x00\x00\x00\x60\x00\x52\x00\x6f\x00\x7a\x00\x64\x00\x7a\ -\x00\x69\x00\x65\x00\x6c\x00\x61\x00\x20\x00\x77\x00\x79\x00\x62\ -\x00\x72\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x73\x00\x69\x00\x61\ -\x00\x74\x00\x6b\x00\x69\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x6e\ -\x00\x69\x00\x65\x00\x7a\x00\x61\x00\x6c\x00\x65\x01\x7c\x00\x6e\ -\x00\x65\x00\x20\x00\x73\x00\x6b\x01\x42\x00\x61\x00\x64\x00\x6e\ -\x00\x69\x00\x6b\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\ -\x53\x70\x6c\x69\x74\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ -\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x69\x6e\x64\x65\ -\x70\x65\x6e\x64\x65\x6e\x74\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ -\x74\x73\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\ -\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\xc6\x00\x55\x00\x74\x00\ -\x77\x00\xf3\x00\x72\x00\x7a\x00\x20\x00\x6f\x00\x62\x00\x69\x00\ -\x65\x00\x6b\x00\x74\x00\x20\x00\x4b\x00\x6f\x00\x6e\x00\x73\x00\ -\x74\x00\x72\x00\x75\x00\x6b\x00\x63\x00\x6a\x00\x61\x00\x20\x00\ -\x6f\x00\x64\x00\x20\x00\x70\x00\x6f\x00\x63\x00\x7a\x01\x05\x00\ -\x74\x00\x6b\x00\x75\x00\x20\x00\x6c\x00\x75\x00\x62\x00\x20\x00\ -\x7a\x00\x20\x00\x77\x00\x79\x00\x62\x00\x72\x00\x61\x00\x6e\x00\ -\x79\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\ -\x6b\x00\x74\x00\xf3\x00\x77\x00\x20\x00\x28\x00\x73\x00\x7a\x00\ -\x6b\x00\x69\x00\x63\x00\x2c\x00\x20\x00\x73\x00\x7a\x00\x6b\x00\ -\x69\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x2c\x00\x20\x00\x66\x00\ -\x61\x00\x73\x00\x65\x00\x74\x00\x6b\x00\x61\x00\x20\x00\x6c\x00\ -\x75\x00\x62\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\ -\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5f\x43\x72\x65\x61\x74\ -\x65\x73\x20\x61\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\ -\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\ -\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\ -\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x73\x6b\ -\x65\x74\x63\x68\x2c\x20\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\ -\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x0e\x41\ -\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\ -\x00\x00\x16\x00\x4b\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\ -\x75\x00\x6b\x00\x63\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\ -\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\ -\x03\x00\x00\x00\x60\x00\x54\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\ -\x79\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\ -\x20\x01\x5a\x00\x63\x00\x69\x00\x61\x00\x6e\x00\x61\x00\x20\x00\ -\x6f\x00\x64\x00\x20\x00\x70\x00\x6f\x00\x63\x00\x7a\x01\x05\x00\ -\x74\x00\x6b\x00\x75\x00\x20\x00\x6c\x00\x75\x00\x62\x00\x20\x00\ -\x7a\x00\x20\x00\x77\x00\x79\x00\x62\x00\x72\x00\x61\x00\x6e\x00\ -\x79\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x43\ -\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\x61\x6c\x6c\x20\x6f\x62\ -\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\ -\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\ -\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\ -\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\ -\x29\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\ -\x03\x00\x00\x00\x0c\x01\x5a\x00\x63\x00\x69\x00\x61\x00\x6e\x00\ -\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\ -\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\ -\x00\x00\x5a\x00\x54\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\x20\x00\ -\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x4f\x00\ -\x6b\x00\x6e\x00\x6f\x00\x20\x00\x6f\x00\x64\x00\x20\x00\x70\x00\ -\x6f\x00\x63\x00\x7a\x01\x05\x00\x74\x00\x6b\x00\x75\x00\x20\x00\ -\x6c\x00\x75\x00\x62\x00\x20\x00\x7a\x00\x20\x00\x77\x00\x79\x00\ -\x62\x00\x72\x00\x61\x00\x6e\x00\x79\x00\x63\x00\x68\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x5a\x43\x72\x65\x61\x74\x65\x73\x20\x61\ -\x20\x77\x69\x6e\x64\x6f\x77\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\ -\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\ -\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ -\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x72\x65\x63\ -\x74\x61\x6e\x67\x6c\x65\x20\x6f\x72\x20\x73\x6b\x65\x74\x63\x68\ -\x29\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\ -\x77\x01\x03\x00\x00\x00\x08\x00\x4f\x00\x6b\x00\x6e\x00\x6f\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x07\ -\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\ -\x03\x00\x00\x00\x3c\x00\x4b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ -\x20\x00\x64\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\ -\x79\x00\x20\x00\x64\x00\x6c\x00\x61\x00\x20\x00\x6b\x00\x6f\x00\ -\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x63\x00\x6a\x00\ -\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x44\x65\x66\x61\x75\ -\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x74\x72\ -\x75\x63\x74\x75\x72\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x44\ -\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x79\x00\x20\ -\x00\x6b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x01\x5b\x00\x63\ -\x00\x69\x00\x61\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\ -\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\ -\x72\x20\x77\x61\x6c\x6c\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2c\x00\x55\ -\x00\x73\x00\x74\x00\x61\x00\x77\x00\x69\x00\x65\x00\x6e\x00\x69\ -\x00\x61\x00\x20\x00\x6f\x00\x67\x00\xf3\x00\x6c\x00\x6e\x00\x65\ -\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\x20\x41\x72\x63\x68\ -\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x22\ -\x00\x55\x00\x73\x00\x74\x00\x61\x00\x77\x00\x69\x00\x65\x00\x6e\ -\x00\x69\x00\x61\x00\x20\x00\x6f\x00\x67\x00\xf3\x00\x6c\x00\x6e\ -\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\ -\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\ -\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ -\x00\x00\x5a\x00\x4b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\ -\x64\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x79\x00\ -\x20\x00\x64\x00\x6c\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x77\x00\ -\x65\x00\x67\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\ -\x6b\x00\x74\x00\x75\x00\x20\x00\x4b\x00\x6f\x00\x6e\x00\x73\x00\ -\x74\x00\x72\x00\x75\x00\x6b\x00\x63\x00\x6a\x00\x61\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x33\x54\x68\x69\x73\x20\x69\x73\x20\x74\ -\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\ -\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x53\x74\x72\x75\x63\x74\x75\ -\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ -\x50\x00\x4b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x64\x00\ -\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x79\x00\x20\x00\ -\x64\x00\x6c\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x77\x00\x65\x00\ -\x67\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\ -\x74\x00\x75\x00\x20\x01\x5a\x00\x63\x00\x69\x00\x61\x00\x6e\x00\ -\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x54\x68\x69\x73\x20\ -\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\ -\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x57\x61\x6c\ -\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\ -\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x74\x00\x6f\x00\x6f\ -\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x41\x72\ -\x63\x68\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\ -\x68\x01\x03\x00\x00\x00\x18\x00\x41\x00\x72\x00\x63\x00\x68\x00\ -\x69\x00\x74\x00\x65\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x41\x72\x63\x68\x69\x74\x65\ -\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\ -\x00\x00\x00\x0a\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x05\x44\x72\x61\x66\x74\x07\x00\x00\ -\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x44\x00\x72\ -\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\ -\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x72\x61\x66\ -\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\ -\x01\x03\x00\x00\x00\x12\x00\x4e\x00\x61\x00\x72\x00\x7a\x01\x19\ -\x00\x64\x00\x7a\x00\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x05\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\ -\x01\ -\x00\x00\x17\x20\ -\x3c\ -\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ -\x00\x00\x01\x50\x00\x04\x9c\x2c\x00\x00\x02\xfb\x00\x05\xa0\xa5\ -\x00\x00\x0b\xb5\x00\x05\xd8\x2c\x00\x00\x0f\x75\x00\x39\xdf\x33\ -\x00\x00\x12\x98\x00\x4b\x87\xd4\x00\x00\x15\x24\x00\x4d\x36\x62\ -\x00\x00\x04\xad\x00\x5b\x66\x33\x00\x00\x15\x86\x00\x62\x9b\xa8\ -\x00\x00\x0b\xdf\x00\xfb\x72\xf3\x00\x00\x12\x1e\x01\xf7\xa8\x83\ -\x00\x00\x13\xdf\x02\x5f\xc9\x59\x00\x00\x0e\x61\x02\x90\x40\x65\ -\x00\x00\x05\x96\x02\xb8\xae\x74\x00\x00\x05\xe6\x02\xcd\x05\xa3\ -\x00\x00\x04\xdb\x02\xdd\x14\x14\x00\x00\x06\x3a\x02\xe5\xaa\xe4\ -\x00\x00\x00\xa1\x03\x1d\xe8\xe3\x00\x00\x11\x03\x03\xd4\x22\x74\ -\x00\x00\x00\xe8\x04\xdb\x21\x3e\x00\x00\x0a\xf2\x05\x18\xda\xa3\ -\x00\x00\x03\xe9\x05\xe0\x4b\x67\x00\x00\x10\xcd\x06\x32\xe3\xe3\ -\x00\x00\x15\x4c\x07\x60\x23\xf3\x00\x00\x00\x00\x09\x13\xce\x39\ -\x00\x00\x0f\xa3\x09\xba\xe6\x35\x00\x00\x0e\x23\x09\xe3\x98\xe4\ -\x00\x00\x01\x38\x09\xed\x98\x55\x00\x00\x09\x0a\x0a\x7f\xee\xa3\ -\x00\x00\x14\xb0\x0b\x51\x30\xa8\x00\x00\x07\x4c\x0b\x65\xda\xb3\ -\x00\x00\x11\x96\x0b\x8d\x97\x93\x00\x00\x13\x03\x0b\xb9\xe8\x93\ -\x00\x00\x07\xb1\x0b\xc4\xb1\x23\x00\x00\x03\x27\x0b\xe2\xc4\x04\ -\x00\x00\x08\x57\x0c\x02\xac\xd7\x00\x00\x01\xee\x0c\x25\x3e\x53\ -\x00\x00\x09\xe1\x0c\x4e\x9b\x23\x00\x00\x09\x5d\x0d\x1e\xda\xa4\ -\x00\x00\x00\x37\x0d\x3b\x3b\x49\x00\x00\x0c\xe5\x0e\x32\x23\x85\ -\x00\x00\x14\xe7\x0e\x8c\xd7\x43\x00\x00\x0c\x22\x0e\xec\x0b\x9e\ -\x00\x00\x02\x28\x69\x00\x00\x15\xb6\x03\x00\x00\x00\x14\x00\x43\ -\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ -\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\x6d\x70\ -\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ -\x03\x00\x00\x00\x38\x00\x43\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\ -\x6e\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x20\x00\x64\x00\x69\x00\ -\x20\x00\x71\x00\x75\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\x00\ -\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x08\x00\x00\ +\x00\x00\x04\xf8\x00\x00\x47\xa4\x00\x00\x00\x49\x00\x04\x8e\xc3\ +\x00\x00\x01\x67\x00\x04\x8f\x03\x00\x00\x02\x1a\x00\x04\x8f\x03\ +\x00\x00\x25\xc0\x00\x04\x9c\x2c\x00\x00\x27\x62\x00\x04\xbb\x04\ +\x00\x00\x07\xd4\x00\x05\x48\x35\x00\x00\x0c\xf1\x00\x05\x67\xd5\ +\x00\x00\x0f\x03\x00\x05\x96\x56\x00\x00\x0f\x53\x00\x05\x96\x56\ +\x00\x00\x2f\x5a\x00\x05\xa0\xa5\x00\x00\x0f\x78\x00\x05\xa0\xa5\ +\x00\x00\x33\x09\x00\x05\xc0\x65\x00\x00\x1d\x57\x00\x05\xd8\x2c\ +\x00\x00\x1e\xec\x00\x05\xd8\x2c\x00\x00\x36\xb7\x00\x32\x23\xa5\ +\x00\x00\x43\x06\x00\x39\xdf\x33\x00\x00\x3b\x8b\x00\x48\x4e\x25\ +\x00\x00\x01\x3f\x00\x49\xeb\x9b\x00\x00\x28\x56\x00\x4b\x55\x33\ +\x00\x00\x3c\xb1\x00\x4d\x36\x62\x00\x00\x0a\x31\x00\x4d\x36\x62\ +\x00\x00\x2a\xd2\x00\x5d\xfb\xa8\x00\x00\x1f\x84\x00\x5e\x08\xc3\ +\x00\x00\x1f\xd9\x00\x61\xb0\x33\x00\x00\x16\xcb\x00\x62\x9b\xa8\ +\x00\x00\x10\x01\x00\x62\x9b\xa8\x00\x00\x33\x33\x00\x8a\x92\x57\ +\x00\x00\x00\x00\x00\xaa\x80\x25\x00\x00\x07\x29\x00\xc9\x7b\xf3\ +\x00\x00\x12\xbe\x00\xfb\x72\xf3\x00\x00\x3b\x21\x01\x19\x4e\x85\ +\x00\x00\x05\xb3\x01\x55\x2b\xf5\x00\x00\x05\x24\x01\x79\x17\x94\ +\x00\x00\x22\xa2\x01\x8e\x84\xa6\x00\x00\x11\x7a\x01\xad\x7d\xe3\ +\x00\x00\x44\x85\x01\xaf\x41\x84\x00\x00\x21\x8e\x01\xf7\xa8\x83\ +\x00\x00\x41\xbf\x02\x01\x7f\xd3\x00\x00\x10\x70\x02\x29\xb3\xc4\ +\x00\x00\x2e\x91\x02\x5a\x4a\x53\x00\x00\x15\xe9\x02\x5f\xc9\x59\ +\x00\x00\x35\xaf\x02\x66\x7f\x7e\x00\x00\x0d\xdb\x02\x6a\x77\x99\ +\x00\x00\x3d\xf9\x02\x80\x5f\x17\x00\x00\x23\x73\x02\x82\x88\x3a\ +\x00\x00\x04\x40\x02\x85\x4f\xf5\x00\x00\x19\x51\x02\x90\x40\x65\ +\x00\x00\x0c\xa3\x02\x90\x40\x65\x00\x00\x2b\x00\x02\x94\x16\x35\ +\x00\x00\x10\xad\x02\xab\x87\xd4\x00\x00\x43\x46\x02\xb8\xae\x74\ +\x00\x00\x2c\x06\x02\xc3\x91\x93\x00\x00\x3f\x5a\x02\xcd\x05\xa3\ +\x00\x00\x2b\x5a\x02\xdd\x14\x14\x00\x00\x2c\x54\x03\x13\x15\x3e\ +\x00\x00\x0b\x4f\x03\x1b\xda\x15\x00\x00\x1f\x50\x03\x1d\xe8\xe3\ +\x00\x00\x39\x9e\x03\x29\x7a\x34\x00\x00\x00\xd5\x03\x2c\xe9\xb3\ +\x00\x00\x17\x32\x03\x92\x51\xe0\x00\x00\x0f\x9d\x03\xa2\xec\x23\ +\x00\x00\x1f\x13\x03\xbe\xb0\x34\x00\x00\x1e\x20\x03\xce\x98\xe5\ +\x00\x00\x03\xca\x03\xd4\x22\x74\x00\x00\x24\xea\x04\x35\xfa\x55\ +\x00\x00\x12\x33\x04\xc3\x75\x44\x00\x00\x19\xa6\x04\xdb\x21\x3e\ +\x00\x00\x32\x3c\x04\xeb\xfd\xf4\x00\x00\x0a\x8a\x05\x14\x5b\x83\ +\x00\x00\x07\x58\x05\x18\xda\xa3\x00\x00\x2a\x14\x05\x5f\x3d\x83\ +\x00\x00\x3a\xa5\x05\x8c\x46\xc5\x00\x00\x0f\x28\x05\x90\xba\xe3\ +\x00\x00\x0e\xd5\x05\xc0\x56\xe3\x00\x00\x3f\xdf\x05\xc7\xeb\xc7\ +\x00\x00\x3e\xab\x05\xe0\x4b\x67\x00\x00\x1f\xac\x05\xe0\x4b\x67\ +\x00\x00\x37\xe1\x05\xef\x78\x4a\x00\x00\x22\xdf\x06\x1f\x6f\xa4\ +\x00\x00\x20\xee\x06\x32\xe3\xe3\x00\x00\x44\xcb\x06\x5b\x01\x15\ +\x00\x00\x03\x99\x06\x69\xd0\x04\x00\x00\x20\x84\x06\x9f\x6f\xd4\ +\x00\x00\x06\xcb\x06\xd6\x3f\xa4\x00\x00\x22\x62\x06\xe6\x2f\x43\ +\x00\x00\x11\xd5\x07\x00\xcc\xc4\x00\x00\x3c\x62\x07\x07\x84\xba\ +\x00\x00\x45\x05\x07\x08\x43\x0e\x00\x00\x25\xea\x07\x16\x58\x05\ +\x00\x00\x38\x6a\x07\x25\x74\x53\x00\x00\x29\x1b\x07\x28\xff\x15\ +\x00\x00\x0d\x65\x07\x36\x51\x26\x00\x00\x13\xa0\x07\x5c\xdc\x04\ +\x00\x00\x20\x01\x07\x60\x23\xf3\x00\x00\x03\x00\x07\xca\xf8\x87\ +\x00\x00\x38\x15\x08\x25\x81\xc4\x00\x00\x06\x76\x08\x4a\x45\xd9\ +\x00\x00\x36\xe3\x08\x65\x4c\x95\x00\x00\x1b\xda\x08\xc5\xe3\x35\ +\x00\x00\x1b\x25\x08\xca\xc9\x74\x00\x00\x14\xc8\x08\xfb\xb8\xa4\ +\x00\x00\x09\xca\x09\x69\xac\xa7\x00\x00\x1e\x87\x09\x6c\x6c\xa7\ +\x00\x00\x0a\x59\x09\x9f\xcc\xde\x00\x00\x21\xf2\x09\xba\xe6\x35\ +\x00\x00\x10\x46\x09\xba\xe6\x35\x00\x00\x35\x7b\x09\xc5\xbe\xca\ +\x00\x00\x09\x2a\x09\xe3\x98\xe4\x00\x00\x25\x28\x09\xed\x98\x55\ +\x00\x00\x30\x64\x0a\x3e\x06\x83\x00\x00\x04\xb0\x0a\x3f\x1f\xd6\ +\x00\x00\x04\xea\x0a\x3f\x2b\x25\x00\x00\x05\x79\x0a\x3f\x5d\xac\ +\x00\x00\x05\xfc\x0a\x7f\xee\xa3\x00\x00\x43\x71\x0a\xb6\xc8\x9a\ +\x00\x00\x0a\xb5\x0a\xbf\x46\x0e\x00\x00\x1d\x7c\x0a\xd6\x07\x84\ +\x00\x00\x20\x32\x0b\x0a\xc3\xf3\x00\x00\x00\x6d\x0b\x51\x30\xa8\ +\x00\x00\x2d\x86\x0b\x65\xda\xb3\x00\x00\x3a\x23\x0b\x8d\x97\x93\ +\x00\x00\x40\xfd\x0b\x9c\x5b\xe7\x00\x00\x08\x8d\x0b\xb9\xe8\x93\ +\x00\x00\x2d\xf1\x0b\xc4\xb1\x23\x00\x00\x27\x8e\x0c\x02\xac\xd7\ +\x00\x00\x02\xc5\x0c\x02\xac\xd7\x00\x00\x26\x4d\x0c\x25\x3e\x53\ +\x00\x00\x31\x2b\x0c\x3c\x8b\x33\x00\x00\x43\xb0\x0c\x41\x0a\x83\ +\x00\x00\x43\xfc\x0c\x4e\x9b\x23\x00\x00\x30\xb1\x0c\x98\x80\x23\ +\x00\x00\x44\x3c\x0c\xc4\xd0\x80\x00\x00\x24\x22\x0c\xdf\x5a\x1e\ +\x00\x00\x01\x8c\x0c\xfc\x97\x06\x00\x00\x1e\xbe\x0d\x03\x26\xb4\ +\x00\x00\x02\x82\x0d\x08\x90\xf3\x00\x00\x1a\xb8\x0d\x1e\xda\xa4\ +\x00\x00\x03\x37\x0d\x3b\x3b\x49\x00\x00\x34\x31\x0d\xa8\x3a\x35\ +\x00\x00\x17\x8d\x0d\xc1\x7d\x47\x00\x00\x24\x7a\x0d\xfa\x53\xe5\ +\x00\x00\x07\xff\x0e\x69\x87\x13\x00\x00\x2f\x84\x0e\x8c\xd7\x43\ +\x00\x00\x33\x82\x0e\x98\x0a\xd6\x00\x00\x1d\xc2\x0e\xab\x8d\x1f\ +\x00\x00\x39\x13\x0e\xb9\x1b\xf2\x00\x00\x14\x67\x0e\xec\x0b\x9e\ +\x00\x00\x26\x91\x0f\x16\x4a\x24\x00\x00\x1c\xe7\x0f\x17\xc7\xa3\ +\x00\x00\x28\x84\x0f\x55\xc1\x57\x00\x00\x06\x36\x0f\x78\x41\x05\ +\x00\x00\x42\x7e\x0f\x79\xe3\xf3\x00\x00\x29\x60\x0f\x95\xd5\x09\ +\x00\x00\x18\x45\x0f\xa2\x16\x43\x00\x00\x1c\xb3\x0f\xc0\xb8\xb4\ +\x00\x00\x0d\x16\x0f\xd0\x39\x44\x00\x00\x02\x3f\x0f\xe5\x74\x74\ +\x00\x00\x00\xa1\x0f\xf3\xe8\x33\x00\x00\x3b\xe6\x69\x00\x00\x45\ +\xc3\x03\x00\x00\x00\x20\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x42\x00\x75\x00\x69\x00\x6c\x00\x64\ +\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x20\x43\x72\x65\x61\x74\x65\x20\x42\x75\x69\x6c\x64\x69\x6e\x67\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\ +\x45\x00\x6b\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x03\x41\x64\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x12\x00\x41\x00\x64\x00\x64\x00\x69\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x41\ +\x64\x64\x69\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x12\x00\x41\x00\x6c\x00\x69\x00\x67\x00\ +\x6e\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x41\x6c\x69\x67\x6e\x6d\x65\x6e\x74\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x36\x00\x41\x00\x6c\x00\ +\x6c\x00\x20\x00\x67\x00\x6f\x00\x6f\x00\x64\x00\x21\x00\x20\x00\ +\x6e\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x62\x00\x6c\x00\ +\x65\x00\x6d\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x75\x00\x6e\x00\ +\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x41\x6c\x6c\x20\x67\ +\x6f\x6f\x64\x21\x20\x6e\x6f\x20\x70\x72\x6f\x62\x6c\x65\x6d\x73\ +\x20\x66\x6f\x75\x6e\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x0a\x00\x41\x00\x6e\x00\x67\x00\x6c\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x6e\x67\x6c\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x41\x00\ +\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\ +\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x4e\x00\x41\x00\x78\x00\x65\x00\x73\x00\x20\x00\x73\x00\x79\ +\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x73\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\ +\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x69\x00\x73\x00\x20\ +\x00\x62\x00\x75\x00\x69\x00\x6c\x00\x74\x00\x20\x00\x6f\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x41\x78\x65\x73\x20\x73\ +\x79\x73\x74\x65\x6d\x73\x20\x74\x68\x69\x73\x20\x73\x74\x72\x75\ +\x63\x74\x75\x72\x65\x20\x69\x73\x20\x62\x75\x69\x6c\x74\x20\x6f\ +\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\ +\x00\x41\x00\x78\x00\x69\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x41\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x1c\x00\x42\x00\x61\x00\x73\x00\x65\x00\x20\x00\ +\x32\x00\x44\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x42\x61\x73\x65\x20\ +\x32\x44\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x1c\x00\x42\x00\x61\x00\x73\x00\x65\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ +\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x42\x61\ +\x73\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x01\x30\x00\x6e\x01\ +\x5f\x00\x61\x00\x20\x00\x65\x00\x64\x00\x69\x00\x6c\x00\x69\x00\ +\x79\x00\x6f\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\ +\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x14\x00\x42\x00\x69\x00\x6c\x00\x65\x01\x5f\ +\x00\x65\x00\x6e\x00\x6c\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0a\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x30\x00\x42\x00\ +\x75\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x6e\x00\ +\x69\x00\x6e\x00\x20\x00\x70\x00\x61\x00\x72\x00\xe7\x00\x61\x00\ +\x63\x01\x31\x00\x6b\x00\x6c\x00\x61\x00\x72\x01\x31\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x19\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ \x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\ -\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x22\x00\ -\x52\x00\x69\x00\x6d\x00\x75\x00\x6f\x00\x76\x00\x69\x00\x20\x00\ -\x69\x00\x6c\x00\x20\x00\x66\x00\x69\x00\x67\x00\x6c\x00\x69\x00\ -\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x52\x65\x6d\x6f\x76\ -\x65\x20\x63\x68\x69\x6c\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\ -\x01\x03\x00\x00\x00\x26\x00\x41\x00\x67\x00\x67\x00\x69\x00\x75\ -\x00\x6e\x00\x67\x00\x69\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ -\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\x63\x6f\x6d\x70\x6f\x6e\ -\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\ -\x01\x03\x00\x00\x00\x68\x00\x41\x00\x67\x00\x67\x00\x69\x00\x75\ -\x00\x6e\x00\x67\x00\x65\x00\x20\x00\x69\x00\x20\x00\x63\x00\x6f\ -\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x69\ -\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\ -\x00\x6e\x00\x61\x00\x74\x00\x69\x00\x20\x00\x61\x00\x6c\x00\x6c\ -\x00\x27\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\ -\x00\x20\x00\x61\x00\x74\x00\x74\x00\x69\x00\x76\x00\x6f\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x31\x41\x64\x64\x73\x20\x74\x68\x65\ -\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\ -\x65\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x61\x63\x74\x69\ -\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x41\x72\ -\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x10\x00\x45\x00\x64\ -\x00\x69\x00\x66\x00\x69\x00\x63\x00\x69\x00\x6f\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\ -\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\ -\x01\x03\x00\x00\x00\x7c\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\ -\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\ -\x00\x74\x00\x6f\x00\x20\x00\x45\x00\x64\x00\x69\x00\x66\x00\x69\ -\x00\x63\x00\x69\x00\x6f\x00\x20\x00\x63\x00\x68\x00\x65\x00\x20\ -\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x65\x00\x6e\x00\x65\ -\x00\x20\x00\x67\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\x67\x00\x67\ -\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\x73\x00\x65\x00\x6c\ -\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\x69\ -\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x43\x72\x65\x61\ -\x74\x65\x73\x20\x61\x20\x62\x75\x69\x6c\x64\x69\x6e\x67\x20\x6f\ -\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\ -\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x2e\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\ -\x69\x6e\x67\x01\x03\x00\x00\x00\x0a\x00\x43\x00\x65\x00\x6c\x00\ -\x6c\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x43\x65\x6c\ -\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\ -\x03\x00\x00\x00\x74\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\ -\x75\x00\x6e\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\ -\x74\x00\x6f\x00\x20\x00\x43\x00\x65\x00\x6c\x00\x6c\x00\x61\x00\ -\x20\x00\x63\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\ -\x74\x00\x69\x00\x65\x00\x6e\x00\x65\x00\x20\x00\x67\x00\x6c\x00\ -\x69\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\ -\x69\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\ -\x6f\x00\x6e\x00\x61\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x65\x6c\ -\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\ -\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ -\x63\x74\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\ -\x6c\x01\x03\x00\x00\x00\x74\x00\x43\x00\x72\x00\x65\x00\x61\x00\ -\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\ -\x74\x00\x74\x00\x6f\x00\x20\x00\x50\x00\x69\x00\x61\x00\x6e\x00\ -\x6f\x00\x20\x00\x63\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6f\x00\ -\x6e\x00\x74\x00\x69\x00\x65\x00\x6e\x00\x65\x00\x20\x00\x67\x00\ -\x6c\x00\x69\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\ -\x74\x00\x69\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\ -\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\x69\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x66\ -\x6c\x6f\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\ -\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ -\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\ -\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x0a\x00\x50\x00\x69\x00\ -\x61\x00\x6e\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\ -\x6c\x6f\x6f\x72\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\ -\x6f\x6f\x72\x01\x03\x00\x00\x00\x6a\x00\x54\x00\x72\x00\x61\x00\ -\x73\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x20\x00\x6c\x00\ -\x65\x00\x20\x00\x4d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x00\ -\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\ -\x6e\x00\x61\x00\x74\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x20\x00\ -\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\ -\x50\x00\x61\x00\x72\x00\x74\x00\x20\x00\x53\x00\x68\x00\x61\x00\ -\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x54\x75\x72\ -\x6e\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\ -\x65\x73\x20\x69\x6e\x74\x6f\x20\x50\x61\x72\x74\x20\x53\x68\x61\ -\x70\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0f\x41\ -\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x50\x61\x72\x74\x01\x03\ -\x00\x00\x00\x1e\x00\x44\x00\x61\x00\x20\x00\x4d\x00\x65\x00\x73\ -\x00\x68\x00\x20\x00\x61\x00\x20\x00\x46\x00\x6f\x00\x72\x00\x6d\ -\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\ -\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x10\x41\x72\ -\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\ -\x00\x00\x00\x24\x00\x52\x00\x69\x00\x6d\x00\x75\x00\x6f\x00\x76\ -\x00\x69\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ -\x00\x65\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x10\x52\x65\x6d\x6f\x76\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\ -\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\ -\x76\x65\x01\x03\x00\x00\x00\xa0\x00\x52\x00\x69\x00\x6d\x00\x75\ -\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x69\x00\x20\x00\x63\x00\x6f\ -\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x69\ -\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\ -\x00\x6e\x00\x61\x00\x74\x00\x69\x00\x20\x00\x64\x00\x61\x00\x69\ -\x00\x20\x00\x6c\x00\x6f\x00\x72\x00\x6f\x00\x20\x00\x70\x00\x61\ -\x00\x64\x00\x72\x00\x69\x00\x2c\x00\x20\x00\x6f\x00\x20\x00\x63\ -\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x62\ -\x00\x75\x00\x63\x00\x6f\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x75\ -\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ -\x00\x65\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x52\x52\x65\x6d\x6f\x76\x65\x20\x74\x68\x65\x20\x73\x65\x6c\ -\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\ -\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x69\x72\x20\x70\x61\x72\x65\ -\x6e\x74\x73\x2c\x20\x6f\x72\x20\x63\x72\x65\x61\x74\x65\x20\x61\ -\x20\x68\x6f\x6c\x65\x20\x69\x6e\x20\x61\x20\x63\x6f\x6d\x70\x6f\ -\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\ -\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\x2a\x00\x52\x00\x69\x00\x6d\ -\x00\x75\x00\x6f\x00\x76\x00\x69\x00\x20\x00\x46\x00\x6f\x00\x72\ -\x00\x6d\x00\x61\x00\x20\x00\x64\x00\x61\x00\x20\x00\x41\x00\x72\ -\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x52\x65\ -\x6d\x6f\x76\x65\x20\x53\x68\x61\x70\x65\x20\x66\x72\x6f\x6d\x20\ -\x41\x72\x63\x68\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\ -\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x58\x00\ -\x52\x00\x69\x00\x6d\x00\x75\x00\x6f\x00\x76\x00\x65\x00\x20\x00\ -\x6c\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x65\x00\ -\x20\x00\x63\x00\x75\x00\x62\x00\x69\x00\x63\x00\x68\x00\x65\x00\ -\x20\x00\x64\x00\x61\x00\x69\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\ -\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x20\x00\ -\x41\x00\x72\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x29\x52\x65\x6d\x6f\x76\x65\x73\x20\x63\x75\x62\x69\x63\x20\x73\ -\x68\x61\x70\x65\x73\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x20\ -\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x10\x41\ -\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\ -\x03\x00\x00\x00\x62\x00\x41\x00\x67\x00\x67\x00\x69\x00\x75\x00\ -\x6e\x00\x67\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\ -\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\x70\x00\ -\x69\x00\x61\x00\x6e\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x20\x00\ -\x73\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\ -\x61\x00\x6c\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\ -\x65\x00\x6e\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x2b\x41\x64\x64\x73\x20\x61\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\ -\x70\x6c\x61\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\ -\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\ -\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\ -\x6e\x65\x01\x03\x00\x00\x00\x20\x00\x50\x00\x69\x00\x61\x00\x6e\ -\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x20\x00\x73\x00\x65\x00\x7a\ -\x00\x69\x00\x6f\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0d\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\ -\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\ -\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x3c\x00\x53\x00\x65\x00\ -\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x20\x00\ -\x6c\x00\x65\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x20\x00\ -\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\ -\x66\x00\x6f\x00\x6c\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x1a\x53\x65\x6c\x65\x63\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\ -\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\x00\x19\ -\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\ -\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x96\x00\ -\x53\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\ -\x61\x00\x20\x00\x74\x00\x75\x00\x74\x00\x74\x00\x65\x00\x20\x00\ -\x6c\x00\x65\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x20\x00\ -\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\ -\x66\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x6e\x00\x65\x00\x6c\x00\ -\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\ -\x74\x00\x6f\x00\x20\x00\x6f\x00\x20\x00\x6e\x00\x65\x00\x69\x00\ -\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\x69\x00\x20\x00\ -\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\ -\x61\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x53\ -\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6e\x6f\x6e\x2d\x6d\ -\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x66\ -\x72\x6f\x6d\x20\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\ -\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\ -\x65\x63\x74\x65\x64\x20\x67\x72\x6f\x75\x70\x73\x07\x00\x00\x00\ -\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\ -\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x74\ -\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\ -\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\ -\x00\x73\x00\x69\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x68\x00\x65\ -\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x65\x00\x6e\ -\x00\x65\x00\x20\x00\x67\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\x67\ -\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\x73\x00\x65\ -\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\ -\x00\x69\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\ -\x65\x61\x74\x65\x73\x20\x61\x20\x73\x69\x74\x65\x20\x6f\x62\x6a\ -\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\ -\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\ -\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\ -\x00\x00\x08\x00\x53\x00\x69\x00\x74\x00\x6f\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\x00\x00\x00\x09\x41\x72\ -\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\x16\x00\x44\x00\ -\x69\x00\x76\x00\x69\x00\x64\x00\x69\x00\x20\x00\x4d\x00\x65\x00\ -\x73\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\ -\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x0e\x41\x72\x63\x68\ -\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\x6e\ -\x00\x44\x00\x69\x00\x76\x00\x69\x00\x64\x00\x65\x00\x20\x00\x6c\ -\x00\x65\x00\x20\x00\x4d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\ -\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\ -\x00\x6e\x00\x61\x00\x74\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x20\ -\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ -\x00\x74\x00\x69\x00\x20\x00\x69\x00\x6e\x00\x64\x00\x69\x00\x70\ -\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x69\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x32\x53\x70\x6c\x69\x74\x73\x20\x73\ -\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\ -\x6e\x74\x6f\x20\x69\x6e\x64\x65\x70\x65\x6e\x64\x65\x6e\x74\x20\ -\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x0e\x41\ -\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\ -\x00\x00\xbc\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\ -\x6e\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\ -\x6f\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x74\x00\x74\x00\ -\x75\x00\x72\x00\x61\x00\x20\x00\x64\x00\x61\x00\x20\x00\x7a\x00\ -\x65\x00\x72\x00\x6f\x00\x20\x00\x6f\x00\x20\x00\x64\x00\x61\x00\ -\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\ -\x74\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ -\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\x6f\x00\x20\x00\ -\x28\x00\x73\x00\x63\x00\x68\x00\x69\x00\x7a\x00\x7a\x00\x6f\x00\ -\x2c\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x2c\x00\x20\x00\ -\x66\x00\x61\x00\x63\x00\x63\x00\x69\x00\x61\x00\x20\x00\x6f\x00\ -\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x6f\x00\x29\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x5f\x43\x72\x65\x61\x74\x65\x73\ -\x20\x61\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\ -\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\ -\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\ -\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x73\x6b\x65\x74\ -\x63\x68\x2c\x20\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\ -\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x0e\x41\x72\x63\ -\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\ -\x12\x00\x53\x00\x74\x00\x72\x00\x75\x00\x74\x00\x74\x00\x75\x00\ -\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\ -\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\ -\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\xa4\x00\ -\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\ -\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\ -\x50\x00\x61\x00\x72\x00\x65\x00\x74\x00\x65\x00\x20\x00\x64\x00\ -\x61\x00\x20\x00\x7a\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x6f\x00\ -\x20\x00\x64\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\ -\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\x73\x00\ -\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\ -\x74\x00\x6f\x00\x20\x00\x28\x00\x77\x00\x69\x00\x72\x00\x65\x00\ -\x2c\x00\x20\x00\x66\x00\x61\x00\x63\x00\x63\x00\x69\x00\x61\x00\ -\x20\x00\x6f\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\ -\x6f\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x43\x72\x65\ -\x61\x74\x65\x73\x20\x61\x20\x77\x61\x6c\x6c\x20\x6f\x62\x6a\x65\ -\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\ -\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\ -\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\ -\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\ -\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\ -\x00\x00\x0c\x00\x50\x00\x61\x00\x72\x00\x65\x00\x74\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\ -\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\ -\xb0\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\ -\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\ -\x20\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x74\x00\x72\x00\ -\x61\x00\x20\x00\x64\x00\x61\x00\x20\x00\x7a\x00\x65\x00\x72\x00\ -\x6f\x00\x20\x00\x6f\x00\x20\x00\x64\x00\x61\x00\x20\x00\x75\x00\ -\x6e\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\ -\x6f\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\ -\x6f\x00\x6e\x00\x61\x00\x74\x00\x6f\x00\x20\x00\x28\x00\x77\x00\ -\x69\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x72\x00\x65\x00\x74\x00\ -\x74\x00\x61\x00\x6e\x00\x67\x00\x6f\x00\x6c\x00\x6f\x00\x20\x00\ -\x6f\x00\x20\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\ -\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5a\x43\x72\x65\x61\x74\ -\x65\x73\x20\x61\x20\x77\x69\x6e\x64\x6f\x77\x20\x6f\x62\x6a\x65\ -\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\ -\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\ -\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\ -\x20\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\x20\x6f\x72\x20\x73\x6b\ -\x65\x74\x63\x68\x29\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\ -\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x10\x00\x46\x00\x69\x00\ -\x6e\x00\x65\x00\x73\x00\x74\x00\x72\x00\x61\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x0b\ -\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ -\x46\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x65\x00\x20\x00\ -\x70\x00\x72\x00\x65\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\ -\x69\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\ -\x6c\x00\x65\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x74\x00\ -\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x1c\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\ -\x6f\x72\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x73\x07\x00\x00\ -\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ -\x00\x00\x00\x40\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x65\ -\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\x00\x65\x00\x66\x00\x69\ -\x00\x6e\x00\x69\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x65\x00\x72\ -\x00\x20\x00\x6c\x00\x65\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\ -\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x44\x65\ -\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\ -\x77\x61\x6c\x6c\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\x49\x00\x6d\ -\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x7a\x00\x69\x00\x6f\ -\x00\x6e\x00\x69\x00\x20\x00\x67\x00\x65\x00\x6e\x00\x65\x00\x72\ -\x00\x61\x00\x6c\x00\x69\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x47\x65\x6e\x65\x72\x61\ -\x6c\x20\x41\x72\x63\x68\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\ -\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\ -\x01\x03\x00\x00\x00\x2a\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x73\ -\x00\x74\x00\x61\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x69\x00\x20\ -\x00\x67\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x69\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\ -\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ -\x78\x00\x51\x00\x75\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\x00\ -\xe8\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\ -\x6f\x00\x72\x00\x65\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\x00\ -\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\x6f\x00\x20\x00\ -\x70\x00\x65\x00\x72\x00\x20\x00\x69\x00\x20\x00\x6e\x00\x75\x00\ -\x6f\x00\x76\x00\x69\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\ -\x74\x00\x74\x00\x69\x00\x20\x00\x53\x00\x74\x00\x72\x00\x75\x00\ -\x74\x00\x74\x00\x75\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x33\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\ -\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ -\x20\x6e\x65\x77\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\ -\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x72\x00\x51\x00\ -\x75\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\x00\xe8\x00\x20\x00\ -\x69\x00\x6c\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ -\x65\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\x00\x65\x00\x66\x00\ -\x69\x00\x6e\x00\x69\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x65\x00\ -\x72\x00\x20\x00\x69\x00\x20\x00\x6e\x00\x75\x00\x6f\x00\x76\x00\ -\x69\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\ -\x69\x00\x20\x00\x50\x00\x61\x00\x72\x00\x65\x00\x74\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x54\x68\x69\x73\x20\x69\x73\ -\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ -\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x57\x61\x6c\x6c\x20\ -\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x41\ -\x00\x72\x00\x63\x00\x68\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\ -\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x41\x72\x63\x68\ -\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ -\x03\x00\x00\x00\x18\x00\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\ -\x74\x00\x65\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0c\x41\x72\x63\x68\x69\x74\x65\x63\x74\ -\x75\x72\x65\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\ -\x00\x0a\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x05\x44\x72\x61\x66\x74\x07\x00\x00\x00\x04\ -\x61\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x44\x00\x72\x00\x61\ -\x00\x66\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x20\ -\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\ -\x00\x00\x00\x12\x00\x53\x00\x74\x00\x72\x00\x75\x00\x6d\x00\x65\ -\x00\x6e\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ -\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ -\x00\x00\x15\x60\ -\x3c\ -\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ -\x00\x00\x01\x50\x00\x04\x9c\x2c\x00\x00\x02\xc1\x00\x05\xa0\xa5\ -\x00\x00\x0a\xd1\x00\x05\xd8\x2c\x00\x00\x0e\x7d\x00\x39\xdf\x33\ -\x00\x00\x11\x66\x00\x4b\x87\xd4\x00\x00\x13\x6c\x00\x4d\x36\x62\ -\x00\x00\x04\x33\x00\x5b\x66\x33\x00\x00\x13\xce\x00\x62\x9b\xa8\ -\x00\x00\x0a\xff\x00\xfb\x72\xf3\x00\x00\x10\xfc\x01\xf7\xa8\x83\ -\x00\x00\x12\x67\x02\x5f\xc9\x59\x00\x00\x0d\x71\x02\x90\x40\x65\ -\x00\x00\x05\x0a\x02\xb8\xae\x74\x00\x00\x05\x54\x02\xcd\x05\xa3\ -\x00\x00\x04\x5d\x02\xdd\x14\x14\x00\x00\x05\xa6\x02\xe5\xaa\xe4\ -\x00\x00\x00\x97\x03\x1d\xe8\xe3\x00\x00\x10\x0d\x03\xd4\x22\x74\ -\x00\x00\x00\xee\x04\xdb\x21\x3e\x00\x00\x0a\x2a\x05\x18\xda\xa3\ -\x00\x00\x03\x93\x05\xe0\x4b\x67\x00\x00\x0f\xdb\x06\x32\xe3\xe3\ -\x00\x00\x13\x94\x07\x60\x23\xf3\x00\x00\x00\x00\x09\x13\xce\x39\ -\x00\x00\x0e\xa5\x09\xba\xe6\x35\x00\x00\x0d\x33\x09\xe3\x98\xe4\ -\x00\x00\x01\x38\x09\xed\x98\x55\x00\x00\x08\x52\x0a\x7f\xee\xa3\ -\x00\x00\x12\xf8\x0b\x51\x30\xa8\x00\x00\x06\xb4\x0b\x65\xda\xb3\ -\x00\x00\x10\x8a\x0b\x8d\x97\x93\x00\x00\x11\xc5\x0b\xb9\xe8\x93\ -\x00\x00\x07\x1b\x0b\xc4\xb1\x23\x00\x00\x02\xef\x0b\xe2\xc4\x04\ -\x00\x00\x07\xbf\x0c\x02\xac\xd7\x00\x00\x01\xdc\x0c\x25\x3e\x53\ -\x00\x00\x09\x29\x0c\x4e\x9b\x23\x00\x00\x08\xa5\x0d\x1e\xda\xa4\ -\x00\x00\x00\x37\x0d\x3b\x3b\x49\x00\x00\x0b\xf9\x0e\x32\x23\x85\ -\x00\x00\x13\x2f\x0e\x8c\xd7\x43\x00\x00\x0b\x46\x0e\xec\x0b\x9e\ -\x00\x00\x02\x12\x69\x00\x00\x13\xf6\x03\x00\x00\x00\x14\x00\x4b\ -\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ -\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\x6d\x70\ -\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ -\x03\x00\x00\x00\x2e\x00\x4b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\ -\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x76\x00\ -\x6f\x00\x67\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ -\x74\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x43\x6f\x6d\ -\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ -\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ -\x03\x00\x00\x00\x32\x00\x55\x00\x6b\x00\x6c\x00\x6f\x00\x6e\x00\ -\x69\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ -\x20\x00\x6e\x00\x69\x01\x7e\x00\x65\x00\x20\x00\x72\x00\x61\x00\ -\x7a\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0c\x52\x65\x6d\x6f\x76\x65\x20\x63\x68\x69\x6c\x64\x07\x00\x00\ -\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x20\x00\x44\x00\x6f\ -\x00\x64\x00\x61\x00\x6a\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x70\ -\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x75\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\x63\x6f\x6d\x70\x6f\x6e\ -\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\ -\x01\x03\x00\x00\x00\x56\x00\x44\x00\x6f\x00\x64\x00\x61\x00\x6a\ -\x00\x65\x00\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x72\x00\x61\ -\x00\x6e\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\ -\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x61\x00\x6b\ -\x00\x74\x00\x69\x00\x76\x00\x6e\x00\x6f\x00\x6d\x00\x20\x00\x6f\ -\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x31\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\ -\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ -\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\ -\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\ -\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x0c\x00\x5a\x00\x67\x00\x72\ -\x00\x61\x00\x64\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\ -\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x0d\x41\x72\x63\ -\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x58\ -\x00\x53\x00\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\x20\x00\x5a\ -\x00\x67\x00\x72\x00\x61\x00\x64\x00\x75\x00\x2c\x00\x20\x00\x75\ -\x00\x6b\x00\x6c\x00\x6a\x00\x75\x01\x0d\x00\x75\x00\x6a\x00\x75\ -\x01\x07\x00\x69\x00\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x72\ -\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ -\x00\x6b\x00\x74\x00\x65\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x35\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x62\x75\x69\x6c\ -\x64\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\ -\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ -\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x0d\x41\x72\x63\x68\ -\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x0c\x01\ -\x06\x00\x65\x00\x6c\x00\x69\x00\x6a\x00\x61\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x04\x43\x65\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\ -\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x56\x00\x53\x00\ -\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\x20\x01\x0d\x00\x65\x00\ -\x6c\x00\x69\x00\x6a\x00\x75\x00\x2c\x00\x20\x00\x75\x00\x6b\x00\ -\x6c\x00\x6a\x00\x75\x01\x0d\x00\x75\x00\x6a\x00\x75\x01\x07\x00\ -\x69\x00\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x72\x00\x61\x00\ -\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ -\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x72\x65\ -\x61\x74\x65\x73\x20\x61\x20\x63\x65\x6c\x6c\x20\x6f\x62\x6a\x65\ -\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\ -\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ -\x00\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\ -\x50\x00\x53\x00\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\x20\x00\ -\x4b\x00\x61\x00\x74\x00\x2c\x00\x20\x00\x75\x00\x6b\x00\x6c\x00\ -\x6a\x00\x75\x01\x0d\x00\x75\x00\x6a\x00\x75\x01\x07\x00\x69\x00\ -\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x72\x00\x61\x00\x6e\x00\ -\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ -\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\x74\ -\x65\x73\x20\x61\x20\x66\x6c\x6f\x6f\x72\x20\x6f\x62\x6a\x65\x63\ -\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\ -\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\ -\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\ -\x06\x00\x4b\x00\x61\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\ -\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x5c\x00\x50\x00\x72\x00\ -\x65\x00\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\x20\x00\x6f\x00\ -\x64\x00\x61\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x65\x00\x20\x00\ -\x6d\x00\x72\x00\x65\x01\x7e\x00\x65\x00\x20\x00\x75\x00\x20\x01\ -\x0c\x00\x76\x00\x72\x00\x73\x00\x74\x00\x69\x00\x20\x00\x6f\x00\ -\x62\x00\x6c\x00\x69\x00\x6b\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x6b\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x2d\x54\x75\x72\x6e\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ -\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x50\x61\x72\x74\ -\x20\x53\x68\x61\x70\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ -\x00\x00\x0f\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x50\x61\ -\x72\x74\x01\x03\x00\x00\x00\x18\x00\x4d\x00\x65\x00\x73\x00\x68\ -\x00\x20\x00\x75\x00\x20\x00\x6f\x00\x62\x00\x6c\x00\x69\x00\x6b\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x74\ -\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x10\x41\x72\x63\x68\ -\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\ -\x00\x22\x00\x55\x00\x6b\x00\x6c\x00\x6f\x00\x6e\x00\x69\x00\x20\ -\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ -\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\ -\x6d\x6f\x76\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ -\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\ -\x00\x00\x00\x9c\x00\x55\x00\x6b\x00\x6c\x00\x6f\x00\x6e\x00\x69\ -\x00\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x72\x00\x61\x00\x6e\ -\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ -\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x69\x00\x7a\x00\x20\ -\x00\x6e\x00\x6a\x00\x69\x00\x68\x00\x6f\x00\x76\x00\x69\x00\x68\ -\x00\x20\x00\x72\x00\x6f\x00\x64\x00\x69\x00\x74\x00\x65\x00\x6c\ -\x00\x6a\x00\x61\x00\x2c\x00\x20\x00\x69\x00\x6c\x00\x69\x00\x20\ -\x00\x73\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x69\x00\x20\x00\x72\ -\x00\x75\x00\x70\x00\x75\x00\x20\x00\x75\x00\x20\x00\x6b\x00\x6f\ -\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x69\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x65\x6d\x6f\x76\x65\ -\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\ -\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\ -\x65\x69\x72\x20\x70\x61\x72\x65\x6e\x74\x73\x2c\x20\x6f\x72\x20\ -\x63\x72\x65\x61\x74\x65\x20\x61\x20\x68\x6f\x6c\x65\x20\x69\x6e\ -\x20\x61\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\ -\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\ -\x00\x2c\x00\x55\x00\x6b\x00\x6c\x00\x6f\x00\x6e\x00\x69\x00\x20\ -\x00\x6f\x00\x62\x00\x6c\x00\x69\x00\x6b\x00\x20\x00\x69\x00\x7a\ -\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x2d\x00\x61\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x16\x52\x65\x6d\x6f\x76\x65\x20\x53\ -\x68\x61\x70\x65\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x07\x00\ -\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\ -\x61\x70\x65\x01\x03\x00\x00\x00\x56\x00\x55\x00\x6b\x00\x6c\x00\ -\x61\x00\x6e\x00\x6a\x00\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ -\x73\x00\x74\x00\x6f\x00\x72\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\ -\x62\x00\x6c\x00\x69\x00\x6b\x00\x61\x00\x20\x00\x69\x00\x7a\x00\ -\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x6b\x00\x6f\x00\ -\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x69\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x29\x52\x65\x6d\x6f\x76\x65\x73\ -\x20\x63\x75\x62\x69\x63\x20\x73\x68\x61\x70\x65\x73\x20\x66\x72\ -\x6f\x6d\x20\x41\x72\x63\x68\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ -\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\ -\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x42\x00\x44\x00\ -\x6f\x00\x64\x00\x61\x00\x6a\x00\x65\x00\x20\x00\x72\x00\x61\x00\ -\x76\x00\x6e\x00\x69\x00\x6e\x00\x75\x00\x20\x00\x6f\x00\x64\x00\ -\x6a\x00\x65\x00\x6c\x00\x6a\x00\x6b\x00\x61\x00\x20\x00\x64\x00\ -\x6f\x00\x6b\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x75\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x41\x64\x64\x73\x20\x61\x20\ -\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x20\x6f\x62\ -\x6a\x65\x63\x74\x20\x74\x6f\x20\x74\x68\x65\x20\x64\x6f\x63\x75\ -\x6d\x65\x6e\x74\x07\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\ -\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x20\ -\x00\x52\x00\x61\x00\x76\x00\x6e\x00\x69\x00\x6e\x00\x61\x00\x20\ -\x00\x6f\x00\x64\x00\x6a\x00\x65\x00\x6c\x00\x6a\x00\x6b\x00\x61\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\x63\x74\x69\x6f\ -\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x41\x72\x63\x68\ -\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\ -\x00\x00\x3c\x00\x4f\x00\x64\x00\x61\x00\x62\x00\x65\x00\x72\x00\ -\x69\x00\x74\x00\x65\x00\x20\x00\x6a\x00\x65\x00\x64\x00\x6e\x00\ -\x6f\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x65\x00\x20\x00\ -\x4d\x00\x45\x00\x53\x00\x48\x00\x2d\x00\x65\x00\x76\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\ -\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\ -\x68\x65\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\ -\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\ -\x73\x01\x03\x00\x00\x00\x86\x00\x4f\x00\x64\x00\x61\x00\x62\x00\ -\x69\x00\x72\x00\x65\x00\x20\x00\x73\x00\x76\x00\x65\x00\x20\x00\ -\x6a\x00\x65\x00\x64\x00\x6e\x00\x6f\x00\x73\x00\x74\x00\x72\x00\ -\x75\x00\x6b\x00\x65\x00\x20\x00\x4d\x00\x45\x00\x53\x00\x48\x00\ -\x2d\x00\x65\x00\x76\x00\x65\x00\x20\x00\x69\x00\x7a\x00\x20\x00\ -\x64\x00\x6f\x00\x6b\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ -\x61\x00\x20\x00\x69\x00\x6c\x00\x69\x00\x20\x00\x69\x00\x7a\x00\ -\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x72\x00\x61\x00\x6e\x00\ -\x65\x00\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x4d\x53\x65\x6c\x65\x63\x74\x73\x20\x61\ -\x6c\x6c\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\ -\x6d\x65\x73\x68\x65\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\ -\x64\x6f\x63\x75\x6d\x65\x6e\x74\x20\x6f\x72\x20\x66\x72\x6f\x6d\ -\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x67\x72\ -\x6f\x75\x70\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\ -\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\ -\x65\x73\x01\x03\x00\x00\x00\x58\x00\x53\x00\x74\x00\x76\x00\x61\ -\x00\x72\x00\x61\x00\x20\x00\x4d\x00\x6a\x00\x65\x00\x73\x00\x74\ -\x00\x6f\x00\x2c\x00\x20\x00\x75\x00\x6b\x00\x6c\x00\x6a\x00\x75\ -\x01\x0d\x00\x75\x00\x6a\x00\x75\x01\x07\x00\x69\x00\x20\x00\x6f\ -\x00\x64\x00\x61\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x65\x00\x20\ -\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x2e\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\ -\x73\x20\x61\x20\x73\x69\x74\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\ -\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\ -\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x09\ -\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\x0c\x00\ -\x4d\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x6f\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\x00\x00\x00\x09\x41\x72\ -\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\x1a\x00\x50\x00\ -\x6f\x00\x64\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\x69\x00\x20\x00\ -\x4d\x00\x65\x00\x73\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x0e\ -\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\ -\x00\x00\x00\x5e\x00\x44\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\x69\ -\x00\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x72\x00\x61\x00\x6e\ -\x00\x65\x00\x20\x00\x4d\x00\x45\x00\x53\x00\x48\x00\x2d\x00\x65\ -\x00\x76\x00\x65\x00\x20\x00\x75\x00\x20\x00\x6e\x00\x65\x00\x7a\ -\x00\x61\x00\x76\x00\x69\x00\x73\x00\x6e\x00\x65\x00\x20\x00\x6b\ -\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ -\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x53\x70\x6c\x69\ -\x74\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\ -\x65\x73\x20\x69\x6e\x74\x6f\x20\x69\x6e\x64\x65\x70\x65\x6e\x64\ -\x65\x6e\x74\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\ -\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\ -\x68\x01\x03\x00\x00\x00\xb8\x00\x53\x00\x74\x00\x76\x00\x61\x00\ -\x72\x00\x61\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\ -\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x6b\x00\x74\x00\x61\x00\x20\x00\x6f\x00\x64\x00\x20\x00\ -\x6e\x00\x75\x00\x6c\x00\x65\x00\x20\x00\x69\x00\x6c\x00\x69\x00\ -\x20\x00\x6f\x00\x64\x00\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\ -\x72\x00\x61\x00\x6e\x00\x6f\x00\x67\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x6b\x00\x74\x00\x61\x00\x20\x00\x28\x00\x73\x00\ -\x6b\x00\x69\x00\x63\x00\x61\x00\x2c\x00\x20\x01\x7e\x00\x69\x00\ -\x63\x00\x61\x00\x2c\x00\x20\x00\x70\x00\x6f\x00\x76\x00\x72\x01\ -\x61\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x69\x00\x6c\x00\x69\x00\ -\x20\x00\x74\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\x6f\x00\x29\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x5f\x43\x72\x65\x61\x74\x65\x73\ -\x20\x61\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\ -\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\ -\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\ -\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x73\x6b\x65\x74\ -\x63\x68\x2c\x20\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\ -\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x0e\x41\x72\x63\ -\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\ -\x12\x00\x53\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\ -\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\ -\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\ -\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\x9c\x00\ -\x53\x00\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\x20\x00\x7a\x00\ -\x69\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ -\x74\x00\x20\x00\x6f\x00\x64\x00\x20\x00\x6e\x00\x75\x00\x6c\x00\ -\x65\x00\x20\x00\x69\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\x64\x00\ -\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x72\x00\x61\x00\x6e\x00\ -\x6f\x00\x67\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ -\x74\x00\x61\x00\x20\x00\x28\x01\x7e\x00\x69\x00\x63\x00\x65\x00\ -\x2c\x00\x20\x00\x70\x00\x6f\x00\x76\x00\x72\x01\x61\x00\x69\x00\ -\x6e\x00\x65\x00\x20\x00\x69\x00\x6c\x00\x69\x00\x20\x00\x74\x00\ -\x69\x00\x6a\x00\x65\x00\x6c\x00\x61\x00\x29\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x52\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\ -\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\ -\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\ -\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ -\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\ -\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x09\x41\x72\x63\x68\ -\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\x06\x00\x5a\x00\x69\x00\ -\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\ -\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\ -\x00\x00\xbc\x00\x53\x00\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\ -\x20\x00\x6e\x00\x6f\x00\x76\x00\x69\x00\x20\x00\x70\x00\x72\x00\ -\x6f\x00\x7a\x00\x6f\x00\x72\x00\x20\x00\x69\x00\x6c\x00\x69\x00\ -\x20\x00\x67\x00\x61\x00\x20\x00\x67\x00\x65\x00\x6e\x00\x65\x00\ -\x72\x00\x69\x00\x72\x00\x61\x00\x20\x00\x6e\x00\x61\x00\x20\x00\ -\x74\x00\x65\x00\x6d\x00\x65\x00\x6c\x00\x6a\x00\x75\x00\x20\x00\ -\x6f\x00\x64\x00\x61\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x6f\x00\ -\x67\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ -\x61\x00\x20\x00\x28\x01\x7e\x00\x69\x00\x63\x00\x65\x00\x2c\x00\ -\x20\x00\x70\x00\x72\x00\x61\x00\x76\x00\x6f\x00\x6b\x00\x75\x00\ -\x74\x00\x6e\x00\x69\x00\x6b\x00\x61\x00\x20\x00\x69\x00\x6c\x00\ -\x69\x00\x20\x00\x73\x00\x6b\x00\x69\x00\x63\x00\x65\x00\x29\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x5a\x43\x72\x65\x61\x74\x65\x73\ -\x20\x61\x20\x77\x69\x6e\x64\x6f\x77\x20\x6f\x62\x6a\x65\x63\x74\ -\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\ -\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ -\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x72\ -\x65\x63\x74\x61\x6e\x67\x6c\x65\x20\x6f\x72\x20\x73\x6b\x65\x74\ -\x63\x68\x29\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\ -\x64\x6f\x77\x01\x03\x00\x00\x00\x0c\x00\x50\x00\x72\x00\x6f\x00\ -\x7a\x00\x6f\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\ -\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\ -\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x30\x00\x5a\x00\x61\x00\ -\x64\x00\x61\x00\x6e\x00\x61\x00\x20\x00\x62\x00\x6f\x00\x6a\x00\ -\x61\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x73\x00\x74\x00\x72\x00\ -\x75\x00\x6b\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x1c\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ -\x6f\x72\x20\x66\x6f\x72\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\ -\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ -\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x5a\x00\x61\x00\x64\x00\x61\ -\x00\x6e\x00\x61\x00\x20\x00\x62\x00\x6f\x00\x6a\x00\x61\x00\x20\ -\x00\x7a\x00\x61\x00\x20\x00\x7a\x00\x69\x00\x64\x00\x6f\x00\x76\ -\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x44\x65\x66\x61\ -\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\x61\ -\x6c\x6c\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x41\x72\x63\x68\x01\x03\x00\x00\x00\x24\x00\x4f\x00\x70\x01\x07\ -\x00\x65\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x70\ -\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x76\x00\x6b\x00\x65\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\x20\ -\x41\x72\x63\x68\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\ -\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ -\x00\x00\x00\x1e\x00\x47\x00\x6c\x00\x61\x00\x76\x00\x6e\x00\x65\ -\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x76\x00\x6b\ -\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\ -\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\ -\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ -\x00\x00\x3e\x00\x4f\x00\x76\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\ -\x20\x00\x7a\x00\x61\x00\x64\x00\x61\x00\x6e\x00\x61\x00\x20\x00\ -\x62\x00\x6f\x00\x6a\x00\x61\x00\x20\x00\x7a\x00\x61\x00\x20\x00\ -\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x72\x00\ -\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x54\x68\x69\x73\x20\ -\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\ -\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x53\x74\x72\ -\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ -\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ -\x03\x00\x00\x00\x32\x00\x4f\x00\x76\x00\x6f\x00\x20\x00\x6a\x00\ -\x65\x00\x20\x00\x7a\x00\x61\x00\x64\x00\x61\x00\x6e\x00\x61\x00\ -\x20\x00\x62\x00\x6f\x00\x6a\x00\x61\x00\x20\x00\x7a\x00\x61\x00\ -\x20\x00\x7a\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x2e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\ -\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\ -\x65\x77\x20\x57\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\ -\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\ -\x01\x03\x00\x00\x00\x14\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\ -\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0a\x41\x72\x63\x68\x20\x74\x6f\x6f\x6c\x73\x07\x00\ -\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x41\x00\ -\x72\x00\x63\x00\x68\x00\x69\x00\x74\x00\x65\x00\x63\x00\x74\x00\ -\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x41\ -\x72\x63\x68\x69\x74\x65\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\ -\x61\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x44\x00\x72\x00\x61\ -\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x72\ -\x61\x66\x74\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\ -\x00\x16\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\ -\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0b\x44\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\ -\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x41\x00\x6c\ -\x00\x61\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ -\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ -\x00\x00\x16\x0c\ -\x3c\ -\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ -\x00\x00\x01\x50\x00\x04\x9c\x2c\x00\x00\x02\xcf\x00\x05\xa0\xa5\ -\x00\x00\x0b\x1b\x00\x05\xd8\x2c\x00\x00\x0e\xb9\x00\x39\xdf\x33\ -\x00\x00\x11\xae\x00\x4b\x87\xd4\x00\x00\x14\x0c\x00\x4d\x36\x62\ -\x00\x00\x04\x5f\x00\x5b\x66\x33\x00\x00\x14\x6e\x00\x62\x9b\xa8\ -\x00\x00\x0b\x4b\x00\xfb\x72\xf3\x00\x00\x11\x3e\x01\xf7\xa8\x83\ -\x00\x00\x12\xdd\x02\x5f\xc9\x59\x00\x00\x0d\xa7\x02\x90\x40\x65\ -\x00\x00\x05\x28\x02\xb8\xae\x74\x00\x00\x05\x70\x02\xcd\x05\xa3\ -\x00\x00\x04\x8b\x02\xdd\x14\x14\x00\x00\x05\xc4\x02\xe5\xaa\xe4\ -\x00\x00\x00\x9b\x03\x1d\xe8\xe3\x00\x00\x10\x43\x03\xd4\x22\x74\ -\x00\x00\x00\xd8\x04\xdb\x21\x3e\x00\x00\x0a\x64\x05\x18\xda\xa3\ -\x00\x00\x03\xaf\x05\xe0\x4b\x67\x00\x00\x10\x13\x06\x32\xe3\xe3\ -\x00\x00\x14\x34\x07\x60\x23\xf3\x00\x00\x00\x00\x09\x13\xce\x39\ -\x00\x00\x0e\xe5\x09\xba\xe6\x35\x00\x00\x0d\x69\x09\xe3\x98\xe4\ -\x00\x00\x01\x22\x09\xed\x98\x55\x00\x00\x08\x86\x0a\x7f\xee\xa3\ -\x00\x00\x13\x98\x0b\x51\x30\xa8\x00\x00\x06\xd8\x0b\x65\xda\xb3\ -\x00\x00\x10\xc8\x0b\x8d\x97\x93\x00\x00\x12\x13\x0b\xb9\xe8\x93\ -\x00\x00\x07\x3f\x0b\xc4\xb1\x23\x00\x00\x02\xfd\x0b\xe2\xc4\x04\ -\x00\x00\x07\xdf\x0c\x02\xac\xd7\x00\x00\x01\xc8\x0c\x25\x3e\x53\ -\x00\x00\x09\x4f\x0c\x4e\x9b\x23\x00\x00\x08\xd3\x0d\x1e\xda\xa4\ -\x00\x00\x00\x37\x0d\x3b\x3b\x49\x00\x00\x0c\x2f\x0e\x32\x23\x85\ -\x00\x00\x13\xcf\x0e\x8c\xd7\x43\x00\x00\x0b\x92\x0e\xec\x0b\x9e\ -\x00\x00\x02\x00\x69\x00\x00\x14\xa2\x03\x00\x00\x00\x14\x04\x1a\ -\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\x04\x42\ -\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\x6d\x70\ -\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ -\x03\x00\x00\x00\x32\x00\x43\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\ -\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x66\x00\ -\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x19\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\ -\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\ -\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x52\x00\x65\x00\x6d\x00\ -\x6f\x00\x76\x00\x65\x00\x20\x00\x63\x00\x68\x00\x69\x00\x6c\x00\ -\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x52\x65\x6d\x6f\x76\ -\x65\x20\x63\x68\x69\x6c\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\ -\x01\x03\x00\x00\x00\x20\x04\x14\x04\x3e\x04\x34\x04\x30\x04\x42\ -\x04\x38\x00\x20\x04\x3a\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\ -\x04\x35\x04\x3d\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ -\x41\x64\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\ -\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x58\ -\x04\x14\x04\x3e\x04\x34\x04\x30\x04\x54\x00\x20\x04\x3e\x04\x31\ -\x04\x40\x04\x30\x04\x3d\x04\x38\x04\x39\x00\x20\x04\x3a\x04\x3e\ -\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\x04\x42\x00\x20\ -\x04\x34\x04\x3e\x00\x20\x04\x30\x04\x3a\x04\x42\x04\x38\x04\x32\ -\x04\x3d\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\x3e\x04\x31\x20\x19\ -\x04\x54\x04\x3a\x04\x42\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\ +\x43\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x6f\x6e\x74\x69\x6e\x75\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\ +\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x75\x00\x74\x00\x65\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x77\x00\x61\x00\x6c\ +\x00\x6c\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1f\x43\x6f\x75\x6c\x64\x6e\x27\x74\ +\x20\x63\x6f\x6d\x70\x75\x74\x65\x20\x74\x68\x65\x20\x77\x61\x6c\ +\x6c\x20\x73\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x3a\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\ +\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x49\x00\x66\x00\x63\x00\x4f\x00\x70\ +\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x0a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x43\x6f\x75\x6c\x64\x6e\ +\x27\x74\x20\x6c\x6f\x63\x61\x74\x65\x20\x49\x66\x63\x4f\x70\x65\ +\x6e\x53\x68\x65\x6c\x6c\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x16\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\ +\x00\x65\x00\x20\x00\x41\x00\x78\x00\x69\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x41\x78\x69\ +\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x52\ +\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ +\x43\x72\x65\x61\x74\x65\x20\x52\x6f\x6f\x66\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\x65\x00\x63\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x6e\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\ +\x74\x65\x20\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\ +\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\ +\x69\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\ +\x72\x65\x61\x74\x65\x20\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x20\x00\x43\x00\x72\x00\x65\x00\ +\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\x74\x00\x72\x00\x75\x00\ +\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x10\x43\x72\x65\x61\x74\x65\x20\x53\x74\x72\x75\x63\x74\ +\x75\x72\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x16\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\ +\x00\x57\x00\x61\x00\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x57\x61\x6c\x6c\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x57\x00\x69\x00\x6e\ +\x00\x64\x00\x6f\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ +\x43\x72\x65\x61\x74\x65\x20\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x6e\x00\x65\x00\x77\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ +\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\ +\x65\x61\x74\x65\x20\x6e\x65\x77\x20\x63\x6f\x6d\x70\x6f\x6e\x65\ +\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x2e\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x2f\x00\ +\x75\x00\x70\x00\x64\x00\x61\x00\x74\x00\x65\x00\x20\x00\x63\x00\ +\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\x74\x65\x2f\ +\x75\x70\x64\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\ +\x55\x00\x7a\x00\x61\x00\x6b\x00\x6c\x01\x31\x00\x6b\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x42\x00\x44\ +\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x63\x00\x65\x00\x73\ +\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x6e\x00\x67\ +\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\ +\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x65\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x44\x69\x73\x74\x61\x6e\ +\x63\x65\x73\x20\x61\x6e\x64\x20\x61\x6e\x67\x6c\x65\x73\x20\x62\ +\x65\x74\x77\x65\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x44\x00\xfc\x00\x7a\ +\x00\x65\x00\x6e\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x4e\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\ +\x20\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\ +\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x73\x00\x68\x00\x61\x00\ +\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x45\x72\x72\ +\x6f\x72\x20\x72\x65\x6d\x6f\x76\x69\x6e\x67\x20\x73\x70\x6c\x69\ +\x74\x74\x65\x72\x20\x66\x72\x6f\x6d\x20\x77\x61\x6c\x6c\x20\x73\ +\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x58\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\ +\x20\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\ +\x74\x00\x20\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\ +\x69\x00\x6e\x00\x65\x00\x20\x00\x63\x00\x68\x00\x61\x00\x72\x00\ +\x61\x00\x63\x00\x74\x00\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\ +\x63\x00\x6f\x00\x64\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2c\x45\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\ +\x64\x6e\x27\x74\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\ +\x68\x61\x72\x61\x63\x74\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\ +\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5a\ +\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x43\ +\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\ +\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\ +\x00\x65\x00\x20\x00\x63\x00\x68\x00\x61\x00\x72\x00\x61\x00\x63\ +\x00\x74\x00\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\ +\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x0a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2d\x45\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\ +\x6e\x27\x74\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\ +\x61\x72\x61\x63\x74\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\ +\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\ +\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x49\ +\x00\x6e\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x20\x00\x62\ +\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x45\x72\ +\x72\x6f\x72\x3a\x20\x49\x6e\x76\x61\x6c\x69\x64\x20\x62\x61\x73\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x0a\x00\x5a\x00\x65\x00\x6d\x00\x69\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\x72\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\ +\x47\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x69\x00\x6e\x00\x67\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x47\x72\x6f\x75\x70\x69\x6e\ +\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\ +\x00\x48\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x48\x65\x69\x67\x68\x74\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x56\x00\x49\x00\x46\x00\ +\x43\x00\x20\x00\x53\x00\x63\x00\x68\x00\x65\x00\x6d\x00\x61\x00\ +\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\x6f\x00\x75\x00\ +\x6e\x00\x64\x00\x2c\x00\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\ +\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x64\x00\ +\x69\x00\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x64\x00\x2e\x00\ +\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\x46\x43\x20\x53\ +\x63\x68\x65\x6d\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\ +\x20\x49\x46\x43\x20\x69\x6d\x70\x6f\x72\x74\x20\x64\x69\x73\x61\ +\x62\x6c\x65\x64\x2e\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\xd2\x00\x49\x00\x66\x00\x20\x00\x54\x00\x72\x00\ +\x75\x00\x65\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\ +\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\ +\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x66\x00\ +\x61\x00\x63\x00\x65\x00\x2c\x00\x20\x00\x69\x00\x74\x00\x20\x00\ +\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x75\x00\x73\x00\x65\x00\ +\x20\x00\x69\x00\x74\x00\x73\x00\x20\x00\x62\x00\x6f\x00\x72\x00\ +\x64\x00\x65\x00\x72\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\ +\x20\x00\x61\x00\x73\x00\x20\x00\x74\x00\x72\x00\x61\x00\x63\x00\ +\x65\x00\x2c\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x64\x00\ +\x69\x00\x73\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\ +\x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x66\x00\ +\x61\x00\x63\x00\x65\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x69\x49\x66\x20\x54\x72\x75\x65\x2c\x20\x69\x66\x20\x74\x68\x69\ +\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\ +\x6f\x6e\x20\x61\x20\x66\x61\x63\x65\x2c\x20\x69\x74\x20\x77\x69\ +\x6c\x6c\x20\x75\x73\x65\x20\x69\x74\x73\x20\x62\x6f\x72\x64\x65\ +\x72\x20\x77\x69\x72\x65\x20\x61\x73\x20\x74\x72\x61\x63\x65\x2c\ +\x20\x61\x6e\x64\x20\x64\x69\x73\x63\x6f\x6e\x73\x69\x64\x65\x72\ +\x20\x74\x68\x65\x20\x66\x61\x63\x65\x2e\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x50\x00\x61\x00\x72\x00\ +\xe7\x00\x61\x00\x63\x01\x31\x00\x6b\x00\x6c\x00\x61\x00\x72\x00\ +\x64\x00\x61\x00\x6e\x00\x20\x01\x5f\x00\x65\x00\x6b\x00\x6c\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\ +\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x08\x00\x49\x00\x73\x00\x69\x00\x6d\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\x61\x6d\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x24\x00\x4e\x00\x6f\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\ +\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4e\x6f\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x4e\x00\x6f\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\ +\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x63\x00\x75\x00\x74\x00\ +\x20\x00\x62\x00\x79\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1f\x4e\x6f\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x72\ +\x65\x20\x63\x75\x74\x20\x62\x79\x20\x74\x68\x65\x20\x70\x6c\x61\ +\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x96\x00\x4e\x00\x6f\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\ +\x65\x00\x20\x00\x68\x00\x61\x00\x73\x00\x20\x00\x62\x00\x65\x00\ +\x65\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x75\x00\ +\x74\x00\x65\x00\x64\x00\x20\x00\x79\x00\x65\x00\x74\x00\x2c\x00\ +\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\ +\x77\x00\x69\x00\x72\x00\x65\x00\x66\x00\x72\x00\x61\x00\x6d\x00\ +\x65\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\ +\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x61\x00\ +\x67\x00\x61\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x4b\x4e\x6f\x20\x73\x68\x61\x70\x65\x20\x68\x61\x73\x20\x62\x65\ +\x65\x6e\x20\x63\x6f\x6d\x70\x75\x74\x65\x64\x20\x79\x65\x74\x2c\ +\x20\x73\x65\x6c\x65\x63\x74\x20\x77\x69\x72\x65\x66\x72\x61\x6d\ +\x65\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x20\x61\x6e\x64\x20\ +\x72\x65\x6e\x64\x65\x72\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x4f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x07\x4f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x50\x00\x61\x00\x67\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x50\x61\x67\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x4b\ +\x00\x61\x00\x6c\x00\x64\x01\x31\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x52\x65\x6d\x6f\x76\x65\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x52\x00\x6f\x00\x6f\x00\ +\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\x66\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x41\ +\x00\x6c\x00\x61\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x32\x00\x53\x00\x6b\x00\x69\x00\x70\x00\x70\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x69\x00\x6e\x00\x76\x00\x61\x00\x6c\x00\ +\x69\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x53\ +\x6b\x69\x70\x70\x69\x6e\x67\x20\x69\x6e\x76\x61\x6c\x69\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x3a\x20\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x22\x00\x50\x00\x61\x00\x72\x00\xe7\x00\ +\x61\x00\x63\x01\x31\x00\x6b\x00\x6c\x00\x61\x00\x72\x01\x31\x00\ +\x20\x00\x61\x00\x79\x01\x31\x00\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x59\x00\x61\ +\x00\x70\x01\x31\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x74\ +\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x18\x00\x53\x00\x75\x00\x62\x00\x74\x00\x72\ +\x00\x61\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x75\x62\x74\x72\x61\x63\x74\ +\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x78\x00\x54\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6c\x00\ +\x69\x00\x67\x00\x6e\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\ +\x69\x00\x74\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x2c\x00\ +\x20\x00\x69\x00\x66\x00\x20\x00\x61\x00\x70\x00\x70\x00\x6c\x00\ +\x69\x00\x63\x00\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x3c\x54\x68\x65\x20\x61\x6c\x69\x67\x6e\x6d\x65\ +\x6e\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\ +\x6f\x6e\x20\x69\x74\x73\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\ +\x63\x74\x2c\x20\x69\x66\x20\x61\x70\x70\x6c\x69\x63\x61\x62\x6c\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2c\ +\x00\x54\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\ +\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\ +\x00\x73\x00\x20\x00\x72\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x16\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\x20\ +\x6f\x66\x20\x74\x68\x69\x73\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x54\x00\x68\x00\ +\x65\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x73\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x65\x00\x61\x00\x63\x00\x68\x00\ +\x20\x00\x61\x00\x78\x00\x69\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x17\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\x73\x20\x6f\x66\ +\x20\x65\x61\x63\x68\x20\x61\x78\x69\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x4c\x00\x54\x00\x68\x00\x65\x00\ +\x20\x00\x64\x00\x69\x00\x73\x00\x70\x00\x6c\x00\x61\x00\x79\x00\ +\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x6f\x00\x66\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\x00\x65\x00\ +\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\ +\x61\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x26\x54\ +\x68\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x73\x69\x7a\x65\x20\ +\x6f\x66\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\ +\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x86\x00\x54\x00\x68\x00\x65\x00\x20\x00\x65\x00\x6c\ +\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6e\x00\x75\ +\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x73\x00\x20\x00\x74\x00\x6f\ +\x00\x20\x00\x65\x00\x78\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x65\ +\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\ +\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x69\x00\x73\x00\x20\ +\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\ +\x00\x20\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x43\x54\x68\x65\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\ +\x6e\x75\x6d\x62\x65\x72\x73\x20\x74\x6f\x20\x65\x78\x63\x6c\x75\ +\x64\x65\x20\x77\x68\x65\x6e\x20\x74\x68\x69\x73\x20\x73\x74\x72\ +\x75\x63\x74\x75\x72\x65\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\ +\x6f\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x74\x00\x54\x00\x68\x00\x65\x00\x20\x00\x66\ +\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\ +\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\ +\x00\x65\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x75\x00\x73\ +\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x75\ +\x00\x69\x00\x6c\x00\x64\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x72\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x3a\x54\x68\x65\x20\x66\x61\x63\x65\x20\x6e\x75\x6d\ +\x62\x65\x72\x20\x6f\x66\x20\x74\x68\x65\x20\x62\x61\x73\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x62\ +\x75\x69\x6c\x64\x20\x74\x68\x69\x73\x20\x72\x6f\x6f\x66\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x30\x00\x54\x00\ +\x68\x00\x65\x00\x20\x00\x68\x00\x65\x00\x69\x00\x67\x00\x68\x00\ +\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x66\x00\x6c\x00\x6f\x00\x6f\x00\x72\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x18\x54\x68\x65\x20\x68\x65\x69\x67\x68\ +\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x66\x6c\x6f\x6f\x72\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xb0\x00\x54\ +\x00\x68\x00\x65\x00\x20\x00\x68\x00\x65\x00\x69\x00\x67\x00\x68\ +\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\ +\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x2e\x00\x20\ +\x00\x4b\x00\x65\x00\x65\x00\x70\x00\x20\x00\x30\x00\x20\x00\x66\ +\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\ +\x00\x61\x00\x74\x00\x69\x00\x63\x00\x2e\x00\x20\x00\x4e\x00\x6f\ +\x00\x74\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\x00\x69\ +\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\ +\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\ +\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\ +\x00\x61\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x58\x54\x68\x65\x20\x68\x65\x69\x67\ +\x68\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x2e\ +\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\ +\x6d\x61\x74\x69\x63\x2e\x20\x4e\x6f\x74\x20\x75\x73\x65\x64\x20\ +\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\ +\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x73\x6f\x6c\x69\x64\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x86\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x68\x00\x65\x00\x69\x00\x67\x00\ +\x68\x00\x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x78\x00\ +\x74\x00\x72\x00\x75\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ +\x64\x00\x65\x00\x70\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x65\x00\x6c\x00\ +\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x20\x00\x4b\x00\ +\x65\x00\x65\x00\x70\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\ +\x74\x00\x69\x00\x63\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\x54\ +\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\x6f\x72\x20\x65\x78\x74\ +\x72\x75\x73\x69\x6f\x6e\x20\x64\x65\x70\x74\x68\x20\x6f\x66\x20\ +\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2e\x20\x4b\x65\ +\x65\x70\x20\x30\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\ +\x69\x63\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x34\x00\x54\x00\x68\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x74\x00\ +\x65\x00\x72\x00\x76\x00\x61\x00\x6c\x00\x73\x00\x20\x00\x62\x00\ +\x65\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x61\x00\ +\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x54\ +\x68\x65\x20\x69\x6e\x74\x65\x72\x76\x61\x6c\x73\x20\x62\x65\x74\ +\x77\x65\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x2c\x00\x54\x00\x68\x00\x65\x00\x20\ +\x00\x6c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x00\x20\x00\x6f\ +\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\x00\x78\ +\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x68\ +\x65\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x74\x68\x65\x20\ +\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x6a\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6c\x00\x65\x00\ +\x6e\x00\x67\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x65\x00\x6c\x00\x65\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x2c\x00\x20\x00\x69\x00\x66\x00\ +\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x62\x00\x61\x00\x73\x00\ +\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\ +\x70\x00\x72\x00\x6f\x00\x66\x00\x69\x00\x6c\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x35\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\ +\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\ +\x74\x2c\x20\x69\x66\x20\x6e\x6f\x74\x20\x62\x61\x73\x65\x64\x20\ +\x6f\x6e\x20\x61\x20\x70\x72\x6f\x66\x69\x6c\x65\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xa2\x00\x54\x00\x68\x00\ +\x65\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\ +\x20\x00\x65\x00\x78\x00\x74\x00\x72\x00\x75\x00\x73\x00\x69\x00\ +\x6f\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x72\x00\x65\x00\x63\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x20\x00\x28\x00\x6b\x00\x65\x00\x65\x00\ +\x70\x00\x20\x00\x28\x00\x30\x00\x2c\x00\x30\x00\x2c\x00\x30\x00\ +\x29\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x75\x00\ +\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x20\x00\ +\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x51\x54\x68\x65\x20\x6e\x6f\x72\x6d\x61\ +\x6c\x20\x65\x78\x74\x72\x75\x73\x69\x6f\x6e\x20\x64\x69\x72\x65\ +\x63\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6f\x62\ +\x6a\x65\x63\x74\x20\x28\x6b\x65\x65\x70\x20\x28\x30\x2c\x30\x2c\ +\x30\x29\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\ +\x20\x6e\x6f\x72\x6d\x61\x6c\x29\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x28\x00\x54\x00\x68\x00\x65\x00\x20\x00\ +\x6e\x00\x75\x00\x6d\x00\x65\x00\x72\x00\x61\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x00\x20\x00\x73\x00\x74\x00\x79\x00\x6c\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\x20\x6e\x75\x6d\ +\x65\x72\x61\x74\x69\x6f\x6e\x20\x73\x74\x79\x6c\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xa6\x00\x54\x00\x68\ +\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x73\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x6d\ +\x00\x75\x00\x73\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\x65\ +\x00\x64\x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\x00\x68\x00\x69\ +\x00\x73\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x2e\ +\x00\x20\x00\x45\x00\x6d\x00\x70\x00\x74\x00\x79\x00\x20\x00\x6d\ +\x00\x65\x00\x61\x00\x6e\x00\x73\x00\x20\x00\x61\x00\x6c\x00\x6c\ +\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\x54\x68\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x74\x68\x61\x74\x20\x6d\x75\x73\ +\x74\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\ +\x62\x79\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\ +\x70\x6c\x61\x6e\x65\x2e\x20\x45\x6d\x70\x74\x79\x20\x6d\x65\x61\ +\x6e\x73\x20\x61\x6c\x6c\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\x00\x54\ +\x00\x68\x00\x65\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\ +\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\ +\x00\x78\x00\x69\x00\x73\x00\x20\x00\x62\x00\x75\x00\x62\x00\x62\ +\x00\x6c\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\ +\x54\x68\x65\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\x74\x68\x65\x20\ +\x61\x78\x69\x73\x20\x62\x75\x62\x62\x6c\x65\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x68\x00\x54\x00\x68\x00\ +\x65\x00\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2c\x00\ +\x20\x00\x69\x00\x66\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\ +\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\ +\x20\x00\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x66\x00\x69\x00\ +\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x54\x68\x65\ +\x20\x77\x69\x64\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\ +\x6c\x65\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\x6e\x6f\x74\x20\x62\ +\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\x72\x6f\x66\x69\x6c\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x80\ +\x00\x54\x00\x68\x00\x65\x00\x20\x00\x77\x00\x69\x00\x64\x00\x74\ +\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\ +\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x2e\x00\x20\ +\x00\x4e\x00\x6f\x00\x74\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\ +\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x73\ +\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\ +\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x40\x54\x68\x65\x20\x77\x69\ +\x64\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\ +\x2e\x20\x4e\x6f\x74\x20\x75\x73\x65\x64\x20\x69\x66\x20\x74\x68\ +\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\x64\ +\x20\x6f\x6e\x20\x61\x20\x66\x61\x63\x65\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x54\x00\x68\x00\x69\x00\ +\x63\x00\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x09\x54\x68\x69\x63\x6b\x6e\x65\x73\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x54\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\ +\x20\x00\x69\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x69\x00\ +\x6e\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x20\x00\x73\x00\ +\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1d\x54\x68\x69\x73\x20\x6d\x65\x73\x68\x20\x69\x73\x20\x61\x6e\ +\x20\x69\x6e\x76\x61\x6c\x69\x64\x20\x73\x6f\x6c\x69\x64\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x54\x00\ +\xfc\x00\x72\x00\xfc\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\ +\x79\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x1e\x00\x54\x00\x79\x00\x70\x00\x65\x00\x20\x00\x63\x00\x6f\ +\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x54\x79\x70\x65\x20\x63\ +\x6f\x6e\x76\x65\x72\x73\x69\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x55\x00\x6e\x00\x61\x00\x62\ +\x00\x6c\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x61\x00\x20\x00\x72\ +\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\ +\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\ +\x20\x61\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x34\x00\x55\x00\x6e\x00\x61\x00\x62\x00\x6c\ +\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1a\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\ +\x65\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x55\x00\ +\x6e\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x69\x00\x6e\x00\ +\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x55\x6e\x67\x72\x6f\ +\x75\x70\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x0e\x00\x56\x00\x69\x00\x65\x00\x77\x00\x20\x00\x6f\ +\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x56\x69\x65\x77\ +\x20\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0a\x00\x44\x00\x75\x00\x76\x00\x61\x00\x72\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x57\x00\x61\x00\x6c\x00\ +\x6c\x00\x20\x00\x6f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x57\x61\x6c\x6c\x20\ +\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x12\x00\x57\x00\x61\x00\x6c\x00\x6c\x00\x54\ +\x00\x72\x00\x61\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x09\x57\x61\x6c\x6c\x54\x72\x61\x63\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x57\x00\x69\x00\x64\ +\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x57\x69\ +\x64\x74\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0e\x00\x50\x00\x65\x00\x6e\x00\x63\x00\x65\x00\x72\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\ +\x57\x00\x69\x00\x72\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x05\x57\x69\x72\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x10\x00\x5a\x00\x20\x00\x6f\x00\x66\x00\ +\x66\x00\x73\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x08\x5a\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x26\x00\x63\x00\x6c\x00\x6f\x00\x73\ +\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\ +\x00\x63\x00\x68\x00\x20\x00\x65\x00\x64\x00\x69\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x13\x63\x6c\x6f\x73\x69\x6e\x67\x20\ +\x53\x6b\x65\x74\x63\x68\x20\x65\x64\x69\x74\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x36\x00\x63\x00\x6f\x00\x6e\ +\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x20\x00\x61\x00\x20\ +\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x63\x00\x6c\x00\x6f\x00\x73\ +\x00\x65\x00\x64\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x63\x6f\x6e\x74\x61\x69\ +\x6e\x73\x20\x61\x20\x6e\x6f\x6e\x2d\x63\x6c\x6f\x73\x65\x64\x20\ +\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x5a\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\ +\x00\x6e\x00\x73\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\ +\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x61\x00\x72\ +\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x70\x00\x61\ +\x00\x72\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x6e\ +\x00\x79\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x2d\x63\x6f\x6e\x74\x61\x69\x6e\x73\ +\x20\x66\x61\x63\x65\x73\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\ +\x6e\x6f\x74\x20\x70\x61\x72\x74\x20\x6f\x66\x20\x61\x6e\x79\x20\ +\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x32\x00\x64\x00\x6f\x00\x65\x00\x73\x00\x6e\x00\x27\ +\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\ +\x00\x6e\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x6f\ +\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\ +\x64\x6f\x65\x73\x6e\x27\x74\x20\x63\x6f\x6e\x74\x61\x69\x6e\x20\ +\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x66\x00\x69\x00\x6c\x00\x65\ +\x00\x20\x00\x25\x00\x73\x00\x20\x00\x73\x00\x75\x00\x63\x00\x63\ +\x00\x65\x00\x73\x00\x73\x00\x66\x00\x75\x00\x6c\x00\x6c\x00\x79\ +\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x64\ +\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x66\x69\x6c\x65\ +\x20\x25\x73\x20\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\ +\x20\x63\x72\x65\x61\x74\x65\x64\x2e\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x69\x00\x73\x00\x20\x00\x6e\ +\x00\x6f\x00\x74\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\ +\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x69\x73\x20\x6e\ +\x6f\x74\x20\x63\x6c\x6f\x73\x65\x64\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x18\x00\x69\x00\x73\x00\x20\x00\x6e\ +\x00\x6f\x00\x74\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x69\x73\x20\x6e\x6f\x74\ +\x20\x76\x61\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x52\x00\x70\x00\x79\x00\x63\x00\x6f\x00\x6c\x00\ +\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\ +\x20\x00\x66\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x2c\x00\x20\x00\ +\x6e\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\ +\x64\x00\x61\x00\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x2e\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x29\x70\x79\x63\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\ +\x6f\x75\x6e\x64\x2c\x20\x6e\x6f\x20\x63\x6f\x6c\x6c\x61\x64\x61\ +\x20\x73\x75\x70\x70\x6f\x72\x74\x2e\x0a\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x64\x00\x72\x00\x65\x00\x6d\x00\ +\x6f\x00\x76\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x6b\x00\ +\x65\x00\x74\x00\x63\x00\x68\x00\x20\x00\x73\x00\x75\x00\x70\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ +\x61\x00\x76\x00\x6f\x00\x69\x00\x64\x00\x20\x00\x63\x00\x72\x00\ +\x6f\x00\x73\x00\x73\x00\x2d\x00\x72\x00\x65\x00\x66\x00\x65\x00\ +\x72\x00\x65\x00\x6e\x00\x63\x00\x69\x00\x6e\x00\x67\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x32\x72\x65\x6d\x6f\x76\x69\x6e\x67\x20\ +\x73\x6b\x65\x74\x63\x68\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x74\ +\x6f\x20\x61\x76\x6f\x69\x64\x20\x63\x72\x6f\x73\x73\x2d\x72\x65\ +\x66\x65\x72\x65\x6e\x63\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x73\x00\x75\x00\x63\x00\x63\ +\x00\x65\x00\x73\x00\x73\x00\x66\x00\x75\x00\x6c\x00\x6c\x00\x79\ +\x00\x20\x00\x77\x00\x72\x00\x69\x00\x74\x00\x74\x00\x65\x00\x6e\ +\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x73\x75\x63\x63\ +\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x77\x72\x69\x74\x74\x65\x6e\ +\x20\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\ +\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\ +\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1d\x74\x68\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x69\x6e\x64\x6f\ +\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\ +\x00\x50\x00\x61\x00\x72\x00\xe7\x00\x61\x00\x20\x00\x65\x00\x6b\ +\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x41\x64\ +\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x08\ +\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x4a\x00\x53\ +\x00\x65\x00\xe7\x00\x69\x00\x6c\x00\x69\x00\x20\x00\x62\x00\x69\ +\x00\x6c\x00\x65\x01\x5f\x00\x65\x00\x6e\x00\x6c\x00\x65\x00\x72\ +\x00\x69\x00\x20\x00\x65\x00\x74\x00\x6b\x00\x69\x00\x6e\x00\x20\ +\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x79\x00\x65\x00\x20\ +\x00\x65\x00\x6b\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x31\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ \x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x74\ \x6f\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\ \x65\x63\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\ -\x01\x03\x00\x00\x00\x0e\x04\x11\x04\x43\x04\x34\x04\x56\x04\x32\ -\x04\x3b\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x75\ -\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\ -\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x78\x04\x21\ -\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x4e\x04\x54\x00\x20\x04\x3e\ -\x04\x31\x20\x19\x04\x54\x04\x3a\x04\x42\x00\x20\x04\x31\x04\x43\ -\x04\x34\x04\x56\x04\x32\x04\x3b\x04\x56\x00\x20\x04\x3f\x04\x40\ -\x04\x38\x00\x20\x04\x46\x04\x4c\x04\x3e\x04\x3c\x04\x43\x00\x20\ -\x04\x32\x04\x3a\x04\x3b\x04\x4e\x04\x47\x04\x30\x04\x54\x00\x20\ -\x04\x42\x04\x43\x04\x34\x04\x38\x00\x20\x04\x3e\x04\x31\x04\x40\ -\x04\x30\x04\x3d\x04\x56\x00\x20\x04\x3e\x04\x31\x20\x19\x04\x54\ -\x04\x3a\x04\x42\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\ -\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x62\x75\x69\x6c\x64\x69\ -\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\ -\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ -\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\ -\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x0c\x04\x21\x04\ -\x35\x04\x3a\x04\x46\x04\x56\x04\x4f\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x04\x43\x65\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\ -\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x64\x04\x21\x04\x42\x04\ -\x32\x04\x3e\x04\x40\x04\x4e\x04\x54\x00\x20\x04\x3e\x04\x31\x20\ -\x19\x04\x54\x04\x3a\x04\x42\x00\x20\x04\x41\x04\x35\x04\x3a\x04\ -\x46\x04\x56\x04\x57\x00\x2c\x00\x20\x04\x4f\x04\x3a\x04\x38\x04\ -\x39\x00\x20\x04\x32\x04\x3a\x04\x3b\x04\x4e\x04\x47\x04\x30\x04\ -\x54\x00\x20\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x56\x00\ -\x20\x04\x3e\x04\x31\x20\x19\x04\x54\x04\x3a\x04\x42\x04\x38\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\ -\x20\x61\x20\x63\x65\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\ -\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\ -\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x09\x41\x72\ -\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x60\x04\x21\x04\ -\x42\x04\x32\x04\x3e\x04\x40\x04\x4e\x04\x54\x00\x20\x04\x3e\x04\ -\x31\x20\x19\x04\x54\x04\x3a\x04\x42\x00\x20\x04\x4f\x04\x40\x04\ -\x43\x04\x41\x00\x2c\x00\x20\x04\x4f\x04\x3a\x04\x38\x04\x39\x00\ -\x20\x04\x32\x04\x3a\x04\x3b\x04\x4e\x04\x47\x04\x30\x04\x54\x00\ -\x20\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x56\x00\x20\x04\ -\x3e\x04\x31\x20\x19\x04\x54\x04\x3a\x04\x42\x04\x38\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\ -\x20\x66\x6c\x6f\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\ +\x01\x03\x00\x00\x00\x08\x00\x41\x00\x78\x00\x69\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\x69\x73\x07\x00\x00\x00\ +\x09\x41\x72\x63\x68\x5f\x41\x78\x69\x73\x01\x03\x00\x00\x00\x2e\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\ +\x00\x61\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x69\x00\x73\x00\x20\ +\x00\x73\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x2e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x6e\x20\x61\x78\x69\x73\x20\x73\x79\x73\x74\x65\x6d\x2e\x07\ +\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x41\x78\x69\x73\x01\x03\x00\ +\x00\x00\x1a\x01\x30\x00\x6e\x01\x5f\x00\x61\x00\x20\x00\x65\x00\ +\x64\x00\x69\x00\x6c\x00\x69\x00\x79\x00\x6f\x00\x72\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\ +\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\ +\x67\x01\x03\x00\x00\x00\x7a\x00\x53\x00\x65\x00\xe7\x00\x69\x00\ +\x6c\x00\x69\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\ +\x6c\x00\x65\x00\x72\x00\x69\x00\x20\x00\x69\x00\xe7\x00\x65\x00\ +\x72\x00\x65\x00\x63\x00\x65\x00\x6b\x00\x20\x01\x5f\x00\x65\x00\ +\x6b\x00\x69\x00\x6c\x00\x64\x00\x65\x00\x20\x00\x62\x00\x69\x00\ +\x72\x00\x20\x00\x79\x00\x61\x00\x70\x01\x31\x00\x20\x00\x6e\x00\ +\x65\x00\x73\x00\x6e\x00\x65\x00\x73\x00\x69\x00\x20\x00\x6f\x00\ +\x6c\x00\x75\x01\x5f\x00\x74\x00\x75\x00\x72\x00\x75\x00\x72\x00\ +\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x43\x72\x65\x61\x74\ +\x65\x73\x20\x61\x20\x62\x75\x69\x6c\x64\x69\x6e\x67\x20\x6f\x62\ +\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\ +\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\ +\x6e\x67\x01\x03\x00\x00\x00\x0a\x00\x48\x00\xfc\x00\x63\x00\x72\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x43\x65\x6c\x6c\ +\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\ +\x00\x00\x00\x7a\x00\x53\x00\x65\x00\xe7\x00\x69\x00\x6c\x00\x69\ +\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x6c\x00\x65\ +\x00\x72\x00\x69\x00\x20\x00\x69\x00\xe7\x00\x65\x00\x72\x00\x65\ +\x00\x63\x00\x65\x00\x6b\x00\x20\x01\x5f\x00\x65\x00\x6b\x00\x69\ +\x00\x6c\x00\x64\x00\x65\x00\x20\x00\x62\x00\x69\x00\x72\x00\x20\ +\x00\x68\x00\xfc\x00\x63\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x65\ +\x00\x73\x00\x6e\x00\x65\x00\x73\x00\x69\x00\x20\x00\x6f\x00\x6c\ +\x00\x75\x01\x5f\x00\x74\x00\x75\x00\x72\x00\x75\x00\x72\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x20\x63\x65\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\ \x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ -\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0a\x41\x72\x63\ -\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x08\x04\x2f\x04\ -\x40\x04\x43\x04\x41\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\ -\x6c\x6f\x6f\x72\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\ -\x6f\x6f\x72\x01\x03\x00\x00\x00\x4c\x04\x1f\x04\x35\x04\x40\x04\ -\x35\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x4e\x04\x54\x00\x20\x04\ -\x3e\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x56\x00\x20\x04\x3c\x04\ -\x35\x04\x48\x04\x56\x00\x20\x04\x32\x00\x20\x04\x27\x04\x30\x04\ -\x41\x04\x42\x04\x38\x04\x3d\x04\x43\x00\x20\x04\x44\x04\x3e\x04\ -\x40\x04\x3c\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x54\ -\x75\x72\x6e\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\ -\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x50\x61\x72\x74\x20\x53\ -\x68\x61\x70\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\ -\x0f\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x50\x61\x72\x74\ -\x01\x03\x00\x00\x00\x16\x04\x1c\x04\x35\x04\x48\x00\x20\x04\x43\ -\x00\x20\x04\x44\x04\x3e\x04\x40\x04\x3c\x04\x43\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x74\x6f\x20\x53\x68\ -\x61\x70\x65\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\x65\x73\ -\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x24\x04\x12\ -\x04\x38\x04\x34\x04\x30\x04\x3b\x04\x38\x04\x42\x04\x38\x00\x20\ -\x04\x3a\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\ -\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\x6d\x6f\ -\x76\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\ -\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\ -\x00\xa2\x04\x12\x04\x38\x04\x34\x04\x30\x04\x3b\x04\x35\x04\x3d\ -\x04\x3d\x04\x4f\x00\x20\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x3d\ -\x04\x38\x04\x45\x00\x20\x04\x3a\x04\x3e\x04\x3c\x04\x3f\x04\x3e\ -\x04\x3d\x04\x35\x04\x3d\x04\x42\x04\x56\x04\x32\x00\x20\x04\x32\ -\x04\x56\x04\x34\x00\x20\x04\x41\x04\x32\x04\x3e\x04\x57\x04\x45\ -\x00\x20\x04\x31\x04\x30\x04\x42\x04\x4c\x04\x3a\x04\x56\x04\x32\ -\x00\x2c\x00\x20\x04\x30\x04\x31\x04\x3e\x00\x20\x04\x41\x04\x42\ -\x04\x32\x04\x3e\x04\x40\x04\x38\x04\x42\x04\x38\x00\x20\x00\x20\ -\x04\x3e\x04\x42\x04\x32\x04\x56\x04\x40\x00\x20\x04\x32\x00\x20\ -\x04\x3a\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\ -\x04\x42\x04\x56\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x65\ -\x6d\x6f\x76\x65\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ -\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x66\x72\x6f\ -\x6d\x20\x74\x68\x65\x69\x72\x20\x70\x61\x72\x65\x6e\x74\x73\x2c\ -\x20\x6f\x72\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x68\x6f\x6c\ -\x65\x20\x69\x6e\x20\x61\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ -\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\ -\x01\x03\x00\x00\x00\x2c\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\ -\x00\x65\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\ -\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x41\x00\x72\x00\x63\ -\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x52\x65\x6d\x6f\ -\x76\x65\x20\x53\x68\x61\x70\x65\x20\x66\x72\x6f\x6d\x20\x41\x72\ -\x63\x68\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\ -\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x52\x00\x52\x00\ -\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x73\x00\x20\x00\x63\x00\ -\x75\x00\x62\x00\x69\x00\x63\x00\x20\x00\x73\x00\x68\x00\x61\x00\ -\x70\x00\x65\x00\x73\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ -\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x63\x00\x6f\x00\ -\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x29\x52\x65\x6d\x6f\x76\x65\x73\ -\x20\x63\x75\x62\x69\x63\x20\x73\x68\x61\x70\x65\x73\x20\x66\x72\ -\x6f\x6d\x20\x41\x72\x63\x68\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ -\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\ -\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x56\x00\x41\x00\ -\x64\x00\x64\x00\x73\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\ -\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\ -\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x63\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\ -\x65\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\ -\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x41\x64\x64\ -\x73\x20\x61\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\ -\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x74\x68\x65\x20\ -\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\x11\x41\x72\x63\ -\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\ -\x00\x00\x00\x1a\x00\x53\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\ -\x00\x6e\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x6e\x00\x65\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\x63\x74\x69\x6f\x6e\x20\ -\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\ -\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\ -\x34\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\ -\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\ -\x66\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x6d\x00\x65\x00\x73\x00\ -\x68\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\ -\x65\x6c\x65\x63\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\ -\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\x00\x19\x41\x72\ -\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\ -\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x9a\x00\x53\x00\ -\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\ -\x6c\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x6d\x00\ -\x61\x00\x6e\x00\x69\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\ -\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\x66\x00\ -\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ -\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ -\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ -\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ -\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x67\x00\x72\x00\ -\x6f\x00\x75\x00\x70\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x09\x41\x72\x63\ +\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x0a\x00\x43\x00\x68\ +\x00\x65\x00\x63\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x43\x68\x65\x63\x6b\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\ +\x68\x65\x63\x6b\x01\x03\x00\x00\x00\x50\x00\x43\x00\x68\x00\x65\ +\x00\x63\x00\x6b\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\ +\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x72\x00\x6f\ +\x00\x62\x00\x6c\x00\x65\x00\x6d\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x28\x43\x68\x65\x63\x6b\x73\x20\x74\x68\x65\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x66\x6f\x72\x20\x70\x72\x6f\x62\x6c\x65\x6d\x73\x07\x00\x00\x00\ +\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\x01\x03\x00\x00\x00\ +\x16\x00\x43\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x68\x00\ +\x6f\x00\x6c\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0b\x43\x6c\x6f\x73\x65\x20\x68\x6f\x6c\x65\x73\x07\x00\x00\x00\ +\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\ +\x01\x03\x00\x00\x00\x60\x00\x43\x00\x6c\x00\x6f\x00\x73\x00\x65\ +\x00\x73\x00\x20\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x73\x00\x20\ +\x00\x69\x00\x6e\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x20\ +\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x00\x73\x00\x2c\x00\x20\ +\x00\x74\x00\x75\x00\x72\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x20\x00\x73\x00\x6f\x00\x6c\ +\x00\x69\x00\x64\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\ +\x43\x6c\x6f\x73\x65\x73\x20\x68\x6f\x6c\x65\x73\x20\x69\x6e\x20\ +\x6f\x70\x65\x6e\x20\x73\x68\x61\x70\x65\x73\x2c\x20\x74\x75\x72\ +\x6e\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\x73\x6f\x6c\x69\x64\x73\ +\x07\x00\x00\x00\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\ +\x6f\x6c\x65\x73\x01\x03\x00\x00\x00\x6e\x00\x53\x00\x65\x00\xe7\ +\x00\x69\x00\x6c\x00\x69\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\ +\x00\x65\x00\x6c\x00\x65\x00\x72\x00\x69\x00\x20\x00\x6b\x00\x61\ +\x00\x70\x00\x73\x00\x61\x00\x79\x00\x61\x00\x63\x00\x61\x00\x6b\ +\x00\x20\x01\x5f\x00\x65\x00\x6b\x00\x69\x00\x6c\x00\x64\x00\x65\ +\x00\x20\x00\x7a\x00\x65\x00\x6d\x00\x69\x00\x6e\x00\x20\x00\x6e\ +\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x73\x00\x69\x00\x20\x00\x79\ +\x00\x61\x00\x72\x00\x61\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x66\x6c\x6f\x6f\ +\x72\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\ +\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\ +\x6f\x72\x01\x03\x00\x00\x00\x0a\x00\x5a\x00\x65\x00\x6d\x00\x69\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\ +\x72\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\ +\x01\x03\x00\x00\x00\x28\x00\x50\x00\x61\x00\x72\x00\xe7\x00\x61\ +\x00\x63\x01\x31\x00\x6b\x00\x6c\x00\x61\x00\x72\x00\x64\x00\x61\ +\x00\x6e\x00\x20\x01\x5f\x00\x65\x00\x6b\x00\x6c\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x74\x6f\x20\ +\x53\x68\x61\x70\x65\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\ +\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x5a\ +\x00\x54\x00\x75\x00\x72\x00\x6e\x00\x73\x00\x20\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6d\ +\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\ +\x00\x74\x00\x6f\x00\x20\x00\x50\x00\x61\x00\x72\x00\x74\x00\x20\ +\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2d\x54\x75\x72\x6e\x73\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x50\ +\x61\x72\x74\x20\x53\x68\x61\x70\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\ +\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x1e\x00\x42\x00\x69\ +\x00\x6c\x00\x65\x01\x5f\x00\x65\x00\x6e\x00\x69\x00\x20\x00\x6b\ +\x00\x61\x00\x6c\x00\x64\x01\x31\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x52\x65\x6d\x6f\x76\x65\x20\x63\x6f\x6d\x70\x6f\ +\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\ +\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\xc0\x00\x53\x00\x65\x00\xe7\ +\x00\x69\x00\x6c\x00\x69\x00\x20\x00\x62\x00\x69\x00\x6c\x00\x65\ +\x01\x5f\x00\x65\x00\x6e\x00\x6c\x00\x65\x00\x72\x00\x69\x00\x20\ +\x00\x62\x00\x61\x01\x1f\x00\x6c\x01\x31\x00\x20\x00\x6f\x00\x6c\ +\x00\x64\x00\x75\x00\x6b\x00\x6c\x00\x61\x00\x72\x01\x31\x00\x20\ +\x00\x61\x00\x6e\x00\x61\x00\x20\x00\x62\x00\x69\x00\x6c\x00\x65\ +\x01\x5f\x00\x65\x00\x6e\x00\x6c\x00\x65\x00\x72\x00\x64\x00\x65\ +\x00\x6e\x00\x20\x00\x61\x00\x79\x01\x31\x00\x72\x00\x2c\x00\x20\ +\x00\x76\x00\x65\x00\x79\x00\x61\x00\x20\x00\x62\x00\x69\x00\x6c\ +\x00\x65\x01\x5f\x00\x65\x00\x6e\x00\x20\x00\x69\x00\xe7\x00\x69\ +\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x62\x00\x69\x00\x72\x00\x20\ +\x00\x64\x00\x65\x00\x6c\x00\x69\x00\x6b\x00\x20\x00\x6f\x00\x6c\ +\x00\x75\x01\x5f\x00\x74\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x52\x52\x65\x6d\x6f\x76\x65\x20\x74\x68\x65\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x69\x72\x20\x70\x61\ +\x72\x65\x6e\x74\x73\x2c\x20\x6f\x72\x20\x63\x72\x65\x61\x74\x65\ +\x20\x61\x20\x68\x6f\x6c\x65\x20\x69\x6e\x20\x61\x20\x63\x6f\x6d\ +\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\ +\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\x30\x00\x41\x00\x72\ +\x00\x6b\x00\x74\x00\x61\x00\x6e\x00\x20\x01\x5f\x00\x65\x00\x6b\ +\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x69\x00\x20\x00\xe7\ +\x01\x31\x00\x6b\x00\x61\x00\x72\x01\x31\x00\x72\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x16\x52\x65\x6d\x6f\x76\x65\x20\x53\x68\x61\ +\x70\x65\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x07\x00\x00\x00\ +\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\ +\x65\x01\x03\x00\x00\x00\x52\x00\x41\x00\x72\x00\x6b\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\xe7\x00\x61\x00\x6c\x00\x61\x00\x72\x01\ +\x31\x00\x6e\x00\x64\x00\x61\x00\x6e\x00\x20\x00\x6b\x00\xfc\x00\ +\x62\x00\x69\x00\x6b\x00\x20\x01\x5f\x00\x65\x00\x6b\x00\x69\x00\ +\x6c\x00\x6c\x00\x65\x00\x72\x00\x69\x00\x20\x00\xe7\x01\x31\x00\ +\x6b\x00\x61\x00\x72\x01\x31\x00\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x29\x52\x65\x6d\x6f\x76\x65\x73\x20\x63\x75\x62\x69\x63\ +\x20\x73\x68\x61\x70\x65\x73\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\ +\x68\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\ +\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\ +\x65\x01\x03\x00\x00\x00\x72\x00\x43\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x72\x00\x6f\x00\ +\x6f\x00\x66\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x65\x00\x64\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x39\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x72\x6f\x6f\ +\x66\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x74\x68\ +\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x66\x61\x63\x65\x20\ +\x6f\x66\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ +\x09\x41\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x08\ +\x00\x52\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\ +\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x7c\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x73\ +\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x70\ +\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\x00\x69\x00\x6e\x00\x63\ +\x00\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\ +\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3e\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x65\x63\x74\x69\x6f\ +\x6e\x20\x70\x6c\x61\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\ +\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ +\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\ +\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x1a\x00\x42\x00\xf6\x00\x6c\ +\x00\xfc\x00\x6d\x00\x20\x00\x64\x00\xfc\x00\x7a\x00\x6c\x00\x65\ +\x00\x6d\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\ +\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\ +\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\ +\x65\x01\x03\x00\x00\x00\x32\x00\x44\x00\x61\x00\x6c\x00\x6c\x00\ +\x61\x00\x6e\x00\x6d\x00\x61\x00\x6d\x01\x31\x01\x5f\x00\x20\x00\ +\x6b\x00\x61\x00\x66\x00\x65\x00\x73\x00\x6c\x00\x65\x00\x72\x00\ +\x69\x00\x20\x00\x73\x00\x65\x00\xe7\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\ +\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\ +\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\ +\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\ +\x96\x00\x42\x00\x65\x00\x6c\x00\x67\x00\x65\x00\x64\x00\x65\x00\ +\x6e\x00\x20\x00\x76\x00\x65\x00\x79\x00\x61\x00\x20\x00\x73\x00\ +\x65\x00\xe7\x00\x69\x00\x6c\x00\x69\x00\x20\x00\x67\x00\x72\x00\ +\x75\x00\x70\x00\x20\x00\x69\x00\xe7\x00\x65\x00\x72\x00\x69\x00\ +\x73\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x64\x00\ +\x61\x00\x6c\x00\x6c\x00\x61\x00\x6e\x00\x6d\x00\x61\x00\x6d\x01\ +\x31\x01\x5f\x00\x20\x00\x6b\x00\x61\x00\x66\x00\x65\x00\x73\x00\ +\x6c\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x20\x00\x74\x00\x61\x00\ +\x6d\x00\x61\x00\x6d\x01\x31\x00\x6e\x01\x31\x00\x20\x00\x73\x00\ +\x65\x00\xe7\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x4d\x53\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6e\x6f\x6e\ \x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\ \x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\ @@ -3009,1242 +17197,1535 @@ qt_resource_data = "\ \x65\x6c\x65\x63\x74\x65\x64\x20\x67\x72\x6f\x75\x70\x73\x07\x00\ \x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\ \x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\ -\x00\x68\x04\x21\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x4e\x04\x54\ -\x00\x20\x04\x3e\x04\x31\x20\x19\x04\x54\x04\x3a\x04\x42\x00\x20\ -\x04\x3f\x04\x3e\x04\x32\x04\x35\x04\x40\x04\x45\x04\x3d\x04\x56\ -\x00\x2c\x00\x20\x04\x4f\x04\x3a\x04\x38\x04\x39\x00\x20\x04\x32\ -\x04\x3a\x04\x3b\x04\x4e\x04\x47\x04\x30\x04\x54\x00\x20\x04\x3e\ -\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x56\x00\x20\x04\x3e\x04\x31\ -\x20\x19\x04\x54\x04\x3a\x04\x42\x04\x38\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x69\ -\x74\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\ -\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ -\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\ -\x69\x74\x65\x01\x03\x00\x00\x00\x0e\x04\x14\x04\x56\x04\x3b\x04\ -\x4f\x04\x3d\x04\x3a\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x00\x7e\x00\x42\x00\x69\x00\x72\x00\x20\x00\x61\x00\x6c\x00\x61\ +\x00\x6e\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x73\ +\x00\x69\x00\x6e\x00\x69\x00\x20\x00\x73\x00\x65\x00\xe7\x00\x69\ +\x00\x6c\x00\x69\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\ +\x00\x6c\x00\x65\x00\x72\x00\x69\x00\x20\x00\x69\x00\xe7\x00\x65\ +\x00\x72\x00\x65\x00\x63\x00\x65\x00\x6b\x00\x20\x01\x5f\x00\x65\ +\x00\x6b\x00\x69\x00\x6c\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x6c\ +\x00\x75\x01\x5f\x00\x74\x00\x75\x00\x72\x00\x75\x00\x72\x00\x2e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\ +\x73\x20\x61\x20\x73\x69\x74\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x09\ +\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\x08\x00\ +\x41\x00\x6c\x00\x61\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x04\x53\x69\x74\x65\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\ -\x69\x74\x65\x01\x03\x00\x00\x00\x1a\x04\x20\x04\x3e\x04\x37\x04\ -\x34\x04\x56\x04\x3b\x04\x38\x04\x42\x04\x38\x00\x20\x04\x3c\x04\ -\x35\x04\x48\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\ -\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x0e\x41\x72\x63\x68\ -\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\x48\ -\x04\x20\x04\x3e\x04\x37\x04\x31\x04\x38\x04\x32\x04\x30\x04\x54\ -\x00\x20\x04\x3c\x04\x35\x04\x48\x00\x20\x04\x3d\x04\x30\x00\x20\ -\x04\x3d\x04\x35\x04\x37\x04\x30\x04\x3b\x04\x35\x04\x36\x04\x3d\ -\x04\x56\x00\x20\x04\x3a\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\ -\x04\x35\x04\x3d\x04\x42\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x32\x53\x70\x6c\x69\x74\x73\x20\x73\x65\x6c\x65\x63\x74\x65\ -\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x69\x6e\ -\x64\x65\x70\x65\x6e\x64\x65\x6e\x74\x20\x63\x6f\x6d\x70\x6f\x6e\ -\x65\x6e\x74\x73\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\ -\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\xb8\x04\x21\x04\ -\x42\x04\x32\x04\x3e\x04\x40\x04\x4e\x04\x54\x00\x20\x04\x3e\x04\ -\x31\x20\x19\x04\x54\x04\x3a\x04\x42\x00\x20\x04\x41\x04\x42\x04\ -\x40\x04\x43\x04\x3a\x04\x42\x04\x43\x04\x40\x04\x43\x00\x20\x04\ -\x37\x00\x20\x04\x3d\x04\x43\x04\x3b\x04\x4f\x00\x2c\x00\x20\x04\ -\x30\x04\x31\x04\x3e\x00\x20\x04\x37\x00\x20\x04\x3e\x04\x31\x04\ -\x40\x04\x30\x04\x3d\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\x3e\x04\ -\x31\x20\x19\x04\x54\x04\x3a\x04\x42\x04\x43\x00\x20\x00\x28\x04\ -\x35\x04\x41\x04\x3a\x04\x56\x04\x37\x00\x2c\x00\x20\x04\x34\x04\ -\x40\x04\x56\x04\x42\x00\x2c\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\ -\x35\x04\x40\x04\x45\x04\x3d\x04\x4f\x00\x20\x04\x30\x04\x31\x04\ -\x3e\x00\x20\x04\x41\x04\x43\x04\x46\x04\x56\x04\x3b\x04\x4c\x04\ -\x3d\x04\x30\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5f\x43\ -\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x74\x72\x75\x63\x74\x75\ -\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\ -\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\ -\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ -\x20\x28\x73\x6b\x65\x74\x63\x68\x2c\x20\x77\x69\x72\x65\x2c\x20\ -\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\ -\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\ -\x65\x01\x03\x00\x00\x00\x12\x04\x21\x04\x42\x04\x40\x04\x43\x04\ -\x3a\x04\x42\x04\x43\x04\x40\x04\x30\x08\x00\x00\x00\x00\x06\x00\ +\x69\x74\x65\x01\x03\x00\x00\x00\x22\x00\x50\x00\x61\x00\x72\x00\ +\xe7\x00\x61\x00\x63\x01\x31\x00\x6b\x00\x6c\x00\x61\x00\x72\x01\ +\x31\x00\x20\x00\x61\x00\x79\x01\x31\x00\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\ +\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\ +\x73\x68\x01\x03\x00\x00\x00\x5a\x00\x53\x00\x65\x00\xe7\x00\x69\ +\x00\x6c\x00\x69\x00\x20\x00\x70\x00\x61\x00\x72\x00\xe7\x00\x61\ +\x00\x63\x01\x31\x00\x6b\x00\x6c\x00\x61\x00\x72\x01\x31\x00\x20\ +\x00\x62\x00\x61\x01\x1f\x01\x31\x00\x6d\x00\x73\x01\x31\x00\x7a\ +\x00\x20\x00\x62\x00\x69\x00\x6c\x00\x65\x01\x5f\x00\x65\x00\x6e\ +\x00\x6c\x00\x65\x00\x72\x00\x65\x00\x20\x00\x61\x00\x79\x01\x31\ +\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x53\x70\x6c\x69\ +\x74\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\ +\x65\x73\x20\x69\x6e\x74\x6f\x20\x69\x6e\x64\x65\x70\x65\x6e\x64\ +\x65\x6e\x74\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\ +\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\ +\x68\x01\x03\x00\x00\x00\xc8\x00\x42\x00\x69\x00\x72\x00\x20\x00\ +\x79\x00\x61\x00\x70\x01\x31\x00\x20\x00\x6e\x00\x65\x00\x73\x00\ +\x6e\x00\x65\x00\x73\x00\x69\x00\x6e\x00\x69\x00\x20\x00\x73\x01\ +\x31\x00\x66\x01\x31\x00\x72\x00\x64\x00\x61\x00\x6e\x00\x20\x00\ +\x76\x00\x65\x00\x79\x00\x61\x00\x20\x00\x73\x00\x65\x00\xe7\x00\ +\x69\x00\x6c\x00\x6d\x00\x69\x01\x5f\x00\x20\x00\x62\x00\x69\x00\ +\x72\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x64\x00\ +\x65\x00\x6e\x00\x20\x00\x28\x00\xe7\x00\x69\x00\x7a\x00\x69\x00\ +\x6d\x00\x2c\x00\x20\x00\xe7\x00\x69\x00\x7a\x00\x67\x00\x69\x00\ +\x2c\x00\x20\x00\x79\x00\xfc\x00\x7a\x00\x20\x00\x76\x00\x65\x00\ +\x79\x00\x61\x00\x20\x00\x6b\x00\x61\x00\x74\x01\x31\x00\x20\x00\ +\x63\x00\x69\x00\x73\x00\x69\x00\x6d\x00\x29\x00\x20\x00\x6f\x00\ +\x6c\x00\x75\x01\x5f\x00\x74\x00\x75\x00\x72\x00\x75\x00\x72\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x5f\x43\x72\x65\x61\x74\x65\x73\ +\x20\x61\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\ +\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x73\x6b\x65\x74\ +\x63\x68\x2c\x20\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\ +\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x0e\x41\x72\x63\ +\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\ +\x08\x00\x59\x00\x61\x00\x70\x01\x31\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\ \x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\ -\x03\x00\x00\x00\xa2\x04\x21\x04\x42\x04\x32\x04\x3e\x04\x40\x04\ -\x4e\x04\x54\x00\x20\x04\x3e\x04\x31\x20\x19\x04\x54\x04\x3a\x04\ -\x42\x00\x20\x04\x41\x04\x42\x04\x56\x04\x3d\x04\x38\x00\x20\x04\ -\x37\x00\x20\x04\x3d\x04\x43\x04\x3b\x04\x4f\x00\x2c\x00\x20\x04\ -\x30\x04\x31\x04\x3e\x00\x20\x04\x37\x00\x20\x04\x3e\x04\x31\x04\ -\x40\x04\x30\x04\x3d\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\x3e\x04\ -\x31\x20\x19\x04\x54\x04\x3a\x04\x42\x04\x43\x00\x20\x00\x28\x04\ -\x34\x04\x40\x04\x56\x04\x42\x00\x2c\x00\x20\x04\x3f\x04\x3e\x04\ -\x32\x04\x35\x04\x40\x04\x45\x04\x3d\x04\x4f\x00\x20\x04\x30\x04\ -\x31\x04\x3e\x00\x20\x04\x41\x04\x43\x04\x46\x04\x56\x04\x3b\x04\ -\x4c\x04\x3d\x04\x30\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x52\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\x61\x6c\x6c\x20\ -\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\ -\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\ -\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\ -\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\ -\x69\x64\x29\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\ -\x6c\x01\x03\x00\x00\x00\x0a\x04\x21\x04\x42\x04\x56\x04\x3d\x04\ -\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\ -\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\ -\x00\x00\xb4\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\ -\x73\x00\x20\x00\x61\x00\x20\x00\x77\x00\x69\x00\x6e\x00\x64\x00\ -\x6f\x00\x77\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ -\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x73\x00\ -\x63\x00\x72\x00\x61\x00\x74\x00\x63\x00\x68\x00\x20\x00\x6f\x00\ -\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\ -\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\ -\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ -\x20\x00\x28\x00\x77\x00\x69\x00\x72\x00\x65\x00\x2c\x00\x20\x00\ -\x72\x00\x65\x00\x63\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\ -\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x6b\x00\x65\x00\ -\x74\x00\x63\x00\x68\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x5a\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\x69\x6e\x64\x6f\ -\x77\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\ -\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\ -\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\ -\x28\x77\x69\x72\x65\x2c\x20\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\ -\x20\x6f\x72\x20\x73\x6b\x65\x74\x63\x68\x29\x07\x00\x00\x00\x0b\ -\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ -\x0a\x04\x12\x04\x56\x04\x3a\x04\x3d\x04\x3e\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x0b\ -\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ -\x38\x00\x44\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\ -\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x66\x00\ -\x6f\x00\x72\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\ -\x74\x00\x75\x00\x72\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x1c\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\ -\x20\x66\x6f\x72\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x73\x07\ -\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\ -\x01\x03\x00\x00\x00\x2e\x00\x44\x00\x65\x00\x66\x00\x61\x00\x75\ -\x00\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\ -\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x77\x00\x61\x00\x6c\ -\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x44\x65\ -\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\ -\x77\x61\x6c\x6c\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x47\x00\x65\ -\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\x00\x41\x00\x72\ -\x00\x63\x00\x68\x00\x20\x00\x53\x00\x65\x00\x74\x00\x74\x00\x69\ -\x00\x6e\x00\x67\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\ -\x47\x65\x6e\x65\x72\x61\x6c\x20\x41\x72\x63\x68\x20\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x24\x04\x17\x04\x30\ -\x04\x33\x04\x30\x04\x3b\x04\x4c\x04\x3d\x04\x56\x00\x20\x04\x3f\ -\x04\x30\x04\x40\x04\x30\x04\x3c\x04\x35\x04\x42\x04\x40\x04\x38\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\ -\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ -\x66\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\ -\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\x65\x00\x66\x00\ -\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\ -\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\ -\x65\x00\x77\x00\x20\x00\x53\x00\x74\x00\x72\x00\x75\x00\x63\x00\ -\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x33\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\ -\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\ -\x65\x77\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\ -\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5c\x00\x54\x00\x68\x00\ -\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\ -\x65\x00\x20\x00\x64\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\ -\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\ -\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\ -\x57\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x2e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\ -\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\ -\x65\x77\x20\x57\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\ -\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\ -\x01\x03\x00\x00\x00\x14\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\ -\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0a\x41\x72\x63\x68\x20\x74\x6f\x6f\x6c\x73\x07\x00\ -\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x41\x00\ -\x72\x00\x63\x00\x68\x00\x69\x00\x74\x00\x65\x00\x63\x00\x74\x00\ -\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x41\ -\x72\x63\x68\x69\x74\x65\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\ -\x61\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x44\x00\x72\x00\x61\ -\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x72\ -\x61\x66\x74\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\ -\x00\x16\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\ -\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0b\x44\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\ -\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x16\x04\x06\x04\x3d\ -\x04\x41\x04\x42\x04\x40\x04\x43\x04\x3c\x04\x35\x04\x3d\x04\x42\ -\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x54\x6f\x6f\x6c\ -\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ -\x00\x00\x15\xf8\ -\x3c\ -\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ -\x00\x00\x01\x50\x00\x04\x9c\x2c\x00\x00\x02\xc7\x00\x05\xa0\xa5\ -\x00\x00\x0b\x19\x00\x05\xd8\x2c\x00\x00\x0e\xcf\x00\x39\xdf\x33\ -\x00\x00\x11\xc2\x00\x4b\x87\xd4\x00\x00\x14\x08\x00\x4d\x36\x62\ -\x00\x00\x04\x51\x00\x5b\x66\x33\x00\x00\x14\x6a\x00\x62\x9b\xa8\ -\x00\x00\x0b\x43\x00\xfb\x72\xf3\x00\x00\x11\x52\x01\xf7\xa8\x83\ -\x00\x00\x12\xd9\x02\x5f\xc9\x59\x00\x00\x0d\xbb\x02\x90\x40\x65\ -\x00\x00\x05\x2a\x02\xb8\xae\x74\x00\x00\x05\x76\x02\xcd\x05\xa3\ -\x00\x00\x04\x7f\x02\xdd\x14\x14\x00\x00\x05\xc6\x02\xe5\xaa\xe4\ -\x00\x00\x00\x9b\x03\x1d\xe8\xe3\x00\x00\x10\x57\x03\xd4\x22\x74\ -\x00\x00\x00\xd8\x04\xdb\x21\x3e\x00\x00\x0a\x68\x05\x18\xda\xa3\ -\x00\x00\x03\x9f\x05\xe0\x4b\x67\x00\x00\x10\x27\x06\x32\xe3\xe3\ -\x00\x00\x14\x30\x07\x60\x23\xf3\x00\x00\x00\x00\x09\x13\xce\x39\ -\x00\x00\x0e\xf9\x09\xba\xe6\x35\x00\x00\x0d\x7d\x09\xe3\x98\xe4\ -\x00\x00\x01\x1c\x09\xed\x98\x55\x00\x00\x08\x8a\x0a\x7f\xee\xa3\ -\x00\x00\x13\x94\x0b\x51\x30\xa8\x00\x00\x06\xdc\x0b\x65\xda\xb3\ -\x00\x00\x10\xdc\x0b\x8d\x97\x93\x00\x00\x12\x0f\x0b\xb9\xe8\x93\ -\x00\x00\x07\x43\x0b\xc4\xb1\x23\x00\x00\x02\xf1\x0b\xe2\xc4\x04\ -\x00\x00\x07\xe3\x0c\x02\xac\xd7\x00\x00\x01\xcc\x0c\x25\x3e\x53\ -\x00\x00\x09\x53\x0c\x4e\x9b\x23\x00\x00\x08\xd7\x0d\x1e\xda\xa4\ -\x00\x00\x00\x37\x0d\x3b\x3b\x49\x00\x00\x0c\x3d\x0e\x32\x23\x85\ -\x00\x00\x13\xcb\x0e\x8c\xd7\x43\x00\x00\x0b\x84\x0e\xec\x0b\x9e\ -\x00\x00\x02\x06\x69\x00\x00\x14\x8e\x03\x00\x00\x00\x14\x00\x43\ -\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ -\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\x6d\x70\ -\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ -\x03\x00\x00\x00\x32\x00\x43\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\ -\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x66\x00\ -\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x19\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\ -\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\ -\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x52\x00\x65\x00\x6d\x00\ -\x6f\x00\x76\x00\x65\x00\x20\x00\x63\x00\x68\x00\x69\x00\x6c\x00\ -\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x52\x65\x6d\x6f\x76\ -\x65\x20\x63\x68\x69\x6c\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\ -\x01\x03\x00\x00\x00\x1a\x00\x41\x00\x64\x00\x64\x00\x20\x00\x63\ -\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\x63\x6f\ -\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\ -\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x62\x00\x41\x00\x64\x00\x64\ -\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\ -\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x63\ -\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ -\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\ -\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x65\x00\x20\ -\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x31\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\ -\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ -\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\ -\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\ -\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x10\x00\x42\x00\x75\x00\x69\ -\x00\x6c\x00\x64\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\ -\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\ -\x00\x00\x00\x6a\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ -\x00\x73\x00\x20\x00\x61\x00\x20\x00\x62\x00\x75\x00\x69\x00\x6c\ -\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x62\x00\x6a\ -\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\ -\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x65\ -\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\ -\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x2e\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x35\x43\x72\x65\x61\x74\x65\x73\x20\ -\x61\x20\x62\x75\x69\x6c\x64\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\ -\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\ -\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\ -\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\ -\x03\x00\x00\x00\x08\x00\x43\x00\x65\x00\x6c\x00\x6c\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x04\x43\x65\x6c\x6c\x07\x00\x00\x00\x09\ -\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x60\x00\ -\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\ -\x61\x00\x20\x00\x63\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\ -\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ -\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\ -\x20\x61\x20\x63\x65\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\ -\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\ -\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x09\x41\x72\ -\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x62\x00\x43\x00\ -\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\ -\x20\x00\x66\x00\x6c\x00\x6f\x00\x6f\x00\x72\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\ -\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ -\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\ -\x20\x61\x20\x66\x6c\x6f\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x20\ -\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\ -\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0a\x41\ -\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x0a\x00\ -\x46\x00\x6c\x00\x6f\x00\x6f\x00\x72\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x0a\x41\x72\x63\ -\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x5a\x00\x54\x00\ -\x75\x00\x72\x00\x6e\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ -\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6d\x00\x65\x00\ -\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\ -\x6f\x00\x20\x00\x50\x00\x61\x00\x72\x00\x74\x00\x20\x00\x53\x00\ -\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x2d\x54\x75\x72\x6e\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ -\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x50\x61\x72\x74\ -\x20\x53\x68\x61\x70\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ -\x00\x00\x0f\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x50\x61\ -\x72\x74\x01\x03\x00\x00\x00\x1a\x00\x4d\x00\x65\x00\x73\x00\x68\ -\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\ -\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\ -\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x10\x41\x72\ -\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\ -\x00\x00\x00\x20\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\ -\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ -\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\ -\x6d\x6f\x76\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ -\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\ -\x00\x00\x00\xa4\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\ -\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\ -\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x63\x00\x6f\ -\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\ -\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\ -\x00\x65\x00\x69\x00\x72\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\ -\x00\x6e\x00\x74\x00\x73\x00\x2c\x00\x20\x00\x6f\x00\x72\x00\x20\ -\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x61\ -\x00\x20\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x20\x00\x69\x00\x6e\ -\x00\x20\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\ -\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x52\x52\x65\x6d\x6f\x76\x65\x20\x74\x68\x65\x20\x73\x65\x6c\ -\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\ -\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x69\x72\x20\x70\x61\x72\x65\ -\x6e\x74\x73\x2c\x20\x6f\x72\x20\x63\x72\x65\x61\x74\x65\x20\x61\ -\x20\x68\x6f\x6c\x65\x20\x69\x6e\x20\x61\x20\x63\x6f\x6d\x70\x6f\ -\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\ -\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\x2c\x00\x52\x00\x65\x00\x6d\ -\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\ -\x00\x65\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x41\ -\x00\x72\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\ -\x52\x65\x6d\x6f\x76\x65\x20\x53\x68\x61\x70\x65\x20\x66\x72\x6f\ -\x6d\x20\x41\x72\x63\x68\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\ -\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\ -\x52\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x73\x00\ -\x20\x00\x63\x00\x75\x00\x62\x00\x69\x00\x63\x00\x20\x00\x73\x00\ -\x68\x00\x61\x00\x70\x00\x65\x00\x73\x00\x20\x00\x66\x00\x72\x00\ -\x6f\x00\x6d\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\ -\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\ -\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x52\x65\x6d\ -\x6f\x76\x65\x73\x20\x63\x75\x62\x69\x63\x20\x73\x68\x61\x70\x65\ -\x73\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x20\x63\x6f\x6d\x70\ -\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\ -\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\ -\x56\x00\x41\x00\x64\x00\x64\x00\x73\x00\x20\x00\x61\x00\x20\x00\ -\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ -\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ -\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\ -\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x2b\x41\x64\x64\x73\x20\x61\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\ -\x70\x6c\x61\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\ -\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\ -\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\ -\x6e\x65\x01\x03\x00\x00\x00\x1a\x00\x53\x00\x65\x00\x63\x00\x74\ -\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x6e\ -\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\x63\x74\ -\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x41\x72\ -\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\ -\x03\x00\x00\x00\x34\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ -\x74\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x6d\x00\x61\x00\ -\x6e\x00\x69\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x6d\x00\ -\x65\x00\x73\x00\x68\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\ -\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\ -\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\ -\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\ -\x9a\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x73\x00\ -\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\ -\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\x66\x00\x6f\x00\x6c\x00\ -\x64\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x00\ -\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\ -\x65\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\ -\x6e\x00\x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\ -\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\ -\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\ -\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x73\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x4d\x53\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\ -\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\ -\x73\x68\x65\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x64\x6f\ -\x63\x75\x6d\x65\x6e\x74\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x74\ -\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x67\x72\x6f\x75\ -\x70\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\ -\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\ -\x01\x03\x00\x00\x00\x62\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\ -\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x73\x00\x69\x00\x74\ -\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ -\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x69\ -\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\ -\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ -\x00\x63\x00\x74\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x69\x74\x65\ -\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\ -\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ -\x74\x73\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\ -\x65\x01\x03\x00\x00\x00\x08\x00\x53\x00\x69\x00\x74\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\x00\x00\ -\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\ -\x14\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x20\x00\x4d\x00\ -\x65\x00\x73\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\ -\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x0e\x41\x72\ -\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\ -\x00\x64\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x73\x00\x20\ -\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\ -\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\ -\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x69\x00\x6e\x00\x64\ -\x00\x65\x00\x70\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x74\ -\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ -\x00\x6e\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\ -\x53\x70\x6c\x69\x74\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ -\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x69\x6e\x64\x65\ -\x70\x65\x6e\x64\x65\x6e\x74\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ -\x74\x73\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\ -\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\xbe\x00\x43\x00\x72\x00\ -\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\ -\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\ -\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ -\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x73\x00\x63\x00\ -\x72\x00\x61\x00\x74\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x72\x00\ -\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\ -\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ -\x28\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x2c\x00\ -\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x66\x00\ -\x61\x00\x63\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x73\x00\ -\x6f\x00\x6c\x00\x69\x00\x64\x00\x29\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x5f\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x74\x72\ -\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\ -\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\ -\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ -\x6a\x65\x63\x74\x20\x28\x73\x6b\x65\x74\x63\x68\x2c\x20\x77\x69\ -\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\ -\x64\x29\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\ -\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\x12\x00\x53\x00\x74\x00\ -\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\ -\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\ -\x75\x72\x65\x01\x03\x00\x00\x00\xa4\x00\x43\x00\x72\x00\x65\x00\ -\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x77\x00\ -\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\ -\x73\x00\x63\x00\x72\x00\x61\x00\x74\x00\x63\x00\x68\x00\x20\x00\ -\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\ -\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ -\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ -\x74\x00\x20\x00\x28\x00\x77\x00\x69\x00\x72\x00\x65\x00\x2c\x00\ -\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6f\x00\x72\x00\ -\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x29\x08\x00\x00\ +\x03\x00\x00\x00\x98\x00\x44\x00\x75\x00\x76\x00\x61\x00\x72\x00\ +\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x73\x00\x69\x00\ +\x6e\x00\x69\x00\x20\x00\x62\x00\x61\x01\x5f\x00\x74\x00\x61\x00\ +\x6e\x00\x20\x00\x76\x00\x65\x00\x79\x00\x61\x00\x20\x00\x73\x00\ +\x65\x00\xe7\x00\x69\x00\x6c\x00\x69\x00\x20\x00\x6e\x00\x65\x00\ +\x73\x00\x6e\x00\x65\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x28\x00\ +\x6b\x00\x61\x00\x62\x00\x6c\x00\x6f\x00\x2c\x00\x20\x00\x79\x00\ +\xfc\x00\x7a\x00\x20\x00\x76\x00\x65\x00\x79\x00\x61\x00\x20\x00\ +\x6b\x00\x61\x00\x74\x01\x31\x00\x29\x00\x20\x00\x6f\x00\x6c\x00\ +\x75\x01\x5f\x00\x74\x00\x75\x00\x72\x00\x75\x00\x72\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x52\x43\x72\x65\x61\x74\x65\x73\x20\x61\ \x20\x77\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\ \x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\ \x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ \x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\ \x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x09\x41\x72\ -\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\x08\x00\x57\x00\ -\x61\x00\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\ -\x61\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\ -\x6c\x01\x03\x00\x00\x00\xb4\x00\x43\x00\x72\x00\x65\x00\x61\x00\ -\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x77\x00\x69\x00\ -\x6e\x00\x64\x00\x6f\x00\x77\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ -\x20\x00\x73\x00\x63\x00\x72\x00\x61\x00\x74\x00\x63\x00\x68\x00\ -\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ -\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ -\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x63\x00\x74\x00\x20\x00\x28\x00\x77\x00\x69\x00\x72\x00\x65\x00\ -\x2c\x00\x20\x00\x72\x00\x65\x00\x63\x00\x74\x00\x61\x00\x6e\x00\ -\x67\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x73\x00\ -\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x29\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x5a\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\ -\x69\x6e\x64\x6f\x77\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\ -\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\ -\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ -\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x72\x65\x63\x74\x61\ -\x6e\x67\x6c\x65\x20\x6f\x72\x20\x73\x6b\x65\x74\x63\x68\x29\x07\ -\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\ -\x03\x00\x00\x00\x0a\x30\xa6\x30\xa3\x30\xf3\x30\xc9\x30\xa6\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x07\ -\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\ -\x03\x00\x00\x00\x38\x00\x44\x00\x65\x00\x66\x00\x61\x00\x75\x00\ -\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ -\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x74\x00\x72\x00\ -\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x73\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x1c\x44\x65\x66\x61\x75\x6c\x74\x20\x63\ -\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x74\x72\x75\x63\x74\x75\ -\x72\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x44\x00\x65\x00\x66\ -\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\ -\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x77\ -\x00\x61\x00\x6c\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x17\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\ -\x66\x6f\x72\x20\x77\x61\x6c\x6c\x73\x07\x00\x00\x00\x1c\x47\x75\ +\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\x0a\x00\x44\x00\ +\x75\x00\x76\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\ +\x61\x6c\x6c\x01\x03\x00\x00\x00\x94\x00\x43\x00\x72\x00\x65\x00\ +\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x77\x00\ +\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\ +\x6d\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x20\x00\x28\x00\x77\x00\x69\x00\x72\x00\ +\x65\x00\x2c\x00\x20\x00\x72\x00\x65\x00\x63\x00\x74\x00\x61\x00\ +\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\ +\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4a\x43\x72\x65\x61\x74\x65\x73\x20\x61\ +\x20\x77\x69\x6e\x64\x6f\x77\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\ +\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x72\x65\x63\ +\x74\x61\x6e\x67\x6c\x65\x20\x6f\x72\x20\x73\x6b\x65\x74\x63\x68\ +\x29\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\ +\x77\x01\x03\x00\x00\x00\x0e\x00\x50\x00\x65\x00\x6e\x00\x63\x00\ +\x65\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\ +\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\ +\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x32\x00\x44\x00\ +\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x69\x00\ +\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x32\x44\x20\ +\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\x47\x75\ \x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2a\ -\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\ -\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x53\x00\x65\x00\x74\ -\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\x20\x41\x72\x63\x68\ -\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\ -\x51\x68\x82\x2c\x76\x84\x30\x6a\x8a\x2d\x5b\x9a\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\ -\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x66\x00\x54\x00\ -\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\ -\x68\x00\x65\x00\x20\x00\x64\x00\x65\x00\x66\x00\x61\x00\x75\x00\ -\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ -\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x77\x00\ -\x20\x00\x53\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\ -\x72\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ -\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x54\x68\x69\ -\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\ -\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x53\ -\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x50\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\ +\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x73\x00\x20\x00\x66\ +\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x61\x00\x63\x00\x68\x00\x20\ +\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x43\x72\x65\x61\x74\x65\ +\x73\x20\x67\x72\x6f\x75\x70\x73\x20\x66\x6f\x72\x20\x65\x61\x63\ +\x68\x20\x41\x72\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\ +\x70\x65\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x3c\x00\x43\x00\x75\x00\x74\x00\ +\x20\x00\x61\x00\x72\x00\x65\x00\x61\x00\x73\x00\x20\x00\x6c\x00\ +\x69\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x68\x00\x69\x00\x63\x00\ +\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x00\x20\x00\x72\x00\x61\x00\ +\x74\x00\x69\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x43\ +\x75\x74\x20\x61\x72\x65\x61\x73\x20\x6c\x69\x6e\x65\x20\x74\x68\ +\x69\x63\x6b\x6e\x65\x73\x73\x20\x72\x61\x74\x69\x6f\x07\x00\x00\ +\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x38\x00\x59\x00\x61\x00\x70\x01\x31\x00\x6c\x00\x61\ +\x00\x72\x00\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\x00\x20\x00\x76\ +\x00\x61\x00\x72\x00\x73\x00\x61\x00\x79\x01\x31\x00\x6c\x00\x61\ +\x00\x6e\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x6b\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1c\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\ +\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x74\x72\x75\x63\x74\x75\x72\ +\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x44\x00\x75\x00\x76\x00\ +\x61\x00\x72\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x69\x00\xe7\x00\ +\x69\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x72\x00\x73\x00\x61\x00\ +\x79\x01\x31\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\x72\x00\x65\x00\ +\x6e\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x44\x65\x66\ +\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\ +\x61\x6c\x6c\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x44\x00\x65\x00\ +\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\ +\x6c\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\ +\x77\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x19\x44\x65\x66\x61\x75\x6c\x74\x20\x63\ +\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\x69\x6e\x64\x6f\x77\x73\ \x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ \x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ -\x68\x01\x03\x00\x00\x00\x5c\x00\x54\x00\x68\x00\x69\x00\x73\x00\ -\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ -\x64\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\ -\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\ -\x72\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\x57\x00\x61\x00\ -\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ -\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x54\x68\x69\ -\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\ -\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x57\ -\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ -\x00\x14\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x74\x00\x6f\ -\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\ -\x41\x72\x63\x68\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\ -\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x41\x00\x72\x00\x63\x00\ -\x68\x00\x69\x00\x74\x00\x65\x00\x63\x00\x74\x00\x75\x00\x72\x00\ -\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x41\x72\x63\x68\x69\ -\x74\x65\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x61\x72\x63\x68\ -\x01\x03\x00\x00\x00\x0a\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x72\x61\x66\x74\x07\ -\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x44\ -\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x6f\ -\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x72\ -\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\ -\x63\x68\x01\x03\x00\x00\x00\x06\x30\xc4\x30\xfc\x30\xeb\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x05\x54\x6f\x6f\x6c\x73\x07\x00\x00\ -\x00\x04\x61\x72\x63\x68\x01\ -\x00\x00\x16\x24\ -\x3c\ -\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ -\x00\x00\x01\x50\x00\x04\x9c\x2c\x00\x00\x02\xc7\x00\x05\xa0\xa5\ -\x00\x00\x0b\x19\x00\x05\xd8\x2c\x00\x00\x0e\xcd\x00\x39\xdf\x33\ -\x00\x00\x11\xc4\x00\x4b\x87\xd4\x00\x00\x14\x26\x00\x4d\x36\x62\ -\x00\x00\x04\x51\x00\x5b\x66\x33\x00\x00\x14\x88\x00\x62\x9b\xa8\ -\x00\x00\x0b\x43\x00\xfb\x72\xf3\x00\x00\x11\x54\x01\xf7\xa8\x83\ -\x00\x00\x12\xf7\x02\x5f\xc9\x59\x00\x00\x0d\xbb\x02\x90\x40\x65\ -\x00\x00\x05\x2a\x02\xb8\xae\x74\x00\x00\x05\x76\x02\xcd\x05\xa3\ -\x00\x00\x04\x7f\x02\xdd\x14\x14\x00\x00\x05\xc6\x02\xe5\xaa\xe4\ -\x00\x00\x00\x9b\x03\x1d\xe8\xe3\x00\x00\x10\x59\x03\xd4\x22\x74\ -\x00\x00\x00\xd8\x04\xdb\x21\x3e\x00\x00\x0a\x68\x05\x18\xda\xa3\ -\x00\x00\x03\x9f\x05\xe0\x4b\x67\x00\x00\x10\x25\x06\x32\xe3\xe3\ -\x00\x00\x14\x4e\x07\x60\x23\xf3\x00\x00\x00\x00\x09\x13\xce\x39\ -\x00\x00\x0e\xf7\x09\xba\xe6\x35\x00\x00\x0d\x7d\x09\xe3\x98\xe4\ -\x00\x00\x01\x1c\x09\xed\x98\x55\x00\x00\x08\x8a\x0a\x7f\xee\xa3\ -\x00\x00\x13\xb2\x0b\x51\x30\xa8\x00\x00\x06\xdc\x0b\x65\xda\xb3\ -\x00\x00\x10\xde\x0b\x8d\x97\x93\x00\x00\x12\x2d\x0b\xb9\xe8\x93\ -\x00\x00\x07\x43\x0b\xc4\xb1\x23\x00\x00\x02\xf1\x0b\xe2\xc4\x04\ -\x00\x00\x07\xe3\x0c\x02\xac\xd7\x00\x00\x01\xcc\x0c\x25\x3e\x53\ -\x00\x00\x09\x53\x0c\x4e\x9b\x23\x00\x00\x08\xd7\x0d\x1e\xda\xa4\ -\x00\x00\x00\x37\x0d\x3b\x3b\x49\x00\x00\x0c\x3d\x0e\x32\x23\x85\ -\x00\x00\x13\xe9\x0e\x8c\xd7\x43\x00\x00\x0b\x84\x0e\xec\x0b\x9e\ -\x00\x00\x02\x06\x69\x00\x00\x14\xba\x03\x00\x00\x00\x14\x00\x4b\ -\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ -\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\x6d\x70\ -\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ -\x03\x00\x00\x00\x32\x00\x43\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\ -\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x66\x00\ -\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x19\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\ -\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\ -\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x52\x00\x65\x00\x6d\x00\ -\x6f\x00\x76\x00\x65\x00\x20\x00\x63\x00\x68\x00\x69\x00\x6c\x00\ -\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x52\x65\x6d\x6f\x76\ -\x65\x20\x63\x68\x69\x6c\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\ -\x01\x03\x00\x00\x00\x1a\x00\x41\x00\x64\x00\x64\x00\x20\x00\x63\ -\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\x63\x6f\ -\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\ -\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x62\x00\x41\x00\x64\x00\x64\ -\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\ -\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x63\ -\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ -\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\ -\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x65\x00\x20\ -\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x31\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\ -\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ -\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\ -\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\ -\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x10\x00\x42\x00\x75\x00\x69\ -\x00\x6c\x00\x64\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\ -\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\ -\x00\x00\x00\x6a\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ -\x00\x73\x00\x20\x00\x61\x00\x20\x00\x62\x00\x75\x00\x69\x00\x6c\ -\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x62\x00\x6a\ -\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\ -\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x65\ -\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\ -\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x2e\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x35\x43\x72\x65\x61\x74\x65\x73\x20\ -\x61\x20\x62\x75\x69\x6c\x64\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\ -\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\ -\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\ -\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\ -\x03\x00\x00\x00\x08\x00\x43\x00\x65\x00\x6c\x00\x6c\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x04\x43\x65\x6c\x6c\x07\x00\x00\x00\x09\ -\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x60\x00\ -\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\ -\x61\x00\x20\x00\x63\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\ -\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ -\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\ -\x20\x61\x20\x63\x65\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\ -\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\ -\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x09\x41\x72\ -\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x62\x00\x43\x00\ -\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\ -\x20\x00\x66\x00\x6c\x00\x6f\x00\x6f\x00\x72\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\ -\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ -\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\ -\x20\x61\x20\x66\x6c\x6f\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x20\ -\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\ -\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0a\x41\ -\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x0a\x00\ -\x46\x00\x6c\x00\x6f\x00\x6f\x00\x72\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x0a\x41\x72\x63\ -\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x5a\x00\x54\x00\ -\x75\x00\x72\x00\x6e\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ -\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6d\x00\x65\x00\ -\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\ -\x6f\x00\x20\x00\x50\x00\x61\x00\x72\x00\x74\x00\x20\x00\x53\x00\ -\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x2d\x54\x75\x72\x6e\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ -\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x50\x61\x72\x74\ -\x20\x53\x68\x61\x70\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ -\x00\x00\x0f\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x50\x61\ -\x72\x74\x01\x03\x00\x00\x00\x1a\x00\x4d\x00\x65\x00\x73\x00\x68\ -\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\ -\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\ -\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x10\x41\x72\ -\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\ -\x00\x00\x00\x20\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\ -\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ -\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\ -\x6d\x6f\x76\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ -\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\ -\x00\x00\x00\xa4\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\ -\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\ -\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x63\x00\x6f\ -\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\ -\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\ -\x00\x65\x00\x69\x00\x72\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\ -\x00\x6e\x00\x74\x00\x73\x00\x2c\x00\x20\x00\x6f\x00\x72\x00\x20\ -\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x61\ -\x00\x20\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x20\x00\x69\x00\x6e\ -\x00\x20\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\ -\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x52\x52\x65\x6d\x6f\x76\x65\x20\x74\x68\x65\x20\x73\x65\x6c\ -\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\ -\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x69\x72\x20\x70\x61\x72\x65\ -\x6e\x74\x73\x2c\x20\x6f\x72\x20\x63\x72\x65\x61\x74\x65\x20\x61\ -\x20\x68\x6f\x6c\x65\x20\x69\x6e\x20\x61\x20\x63\x6f\x6d\x70\x6f\ -\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\ -\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\x2c\x00\x52\x00\x65\x00\x6d\ -\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\ -\x00\x65\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x41\ -\x00\x72\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\ -\x52\x65\x6d\x6f\x76\x65\x20\x53\x68\x61\x70\x65\x20\x66\x72\x6f\ -\x6d\x20\x41\x72\x63\x68\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\ -\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\ -\x52\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x73\x00\ -\x20\x00\x63\x00\x75\x00\x62\x00\x69\x00\x63\x00\x20\x00\x73\x00\ -\x68\x00\x61\x00\x70\x00\x65\x00\x73\x00\x20\x00\x66\x00\x72\x00\ -\x6f\x00\x6d\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\ -\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\ -\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x52\x65\x6d\ -\x6f\x76\x65\x73\x20\x63\x75\x62\x69\x63\x20\x73\x68\x61\x70\x65\ -\x73\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x20\x63\x6f\x6d\x70\ -\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\ -\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\ -\x56\x00\x41\x00\x64\x00\x64\x00\x73\x00\x20\x00\x61\x00\x20\x00\ -\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ -\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ -\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\ -\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x2b\x41\x64\x64\x73\x20\x61\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\ -\x70\x6c\x61\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\ -\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\ -\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\ -\x6e\x65\x01\x03\x00\x00\x00\x1a\x00\x53\x00\x65\x00\x63\x00\x74\ -\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x6e\ -\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\x63\x74\ -\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x41\x72\ -\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\ -\x03\x00\x00\x00\x34\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ -\x74\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x6d\x00\x61\x00\ -\x6e\x00\x69\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x6d\x00\ -\x65\x00\x73\x00\x68\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\ -\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\ -\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\ -\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\ -\x9a\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x73\x00\ -\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\ -\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\x66\x00\x6f\x00\x6c\x00\ -\x64\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x00\ -\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\ -\x65\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\ -\x6e\x00\x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\ -\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\ -\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\ -\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x73\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x4d\x53\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\ -\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\ -\x73\x68\x65\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x64\x6f\ -\x63\x75\x6d\x65\x6e\x74\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x74\ -\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x67\x72\x6f\x75\ -\x70\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\ -\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\ -\x01\x03\x00\x00\x00\x62\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\ -\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x73\x00\x69\x00\x74\ -\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ -\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x69\ -\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\ -\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ -\x00\x63\x00\x74\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x69\x74\x65\ -\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\ -\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ -\x74\x73\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\ -\x65\x01\x03\x00\x00\x00\x08\x00\x53\x00\x69\x00\x74\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\x00\x00\ -\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\ -\x14\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x20\x00\x4d\x00\ -\x65\x00\x73\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\ -\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x0e\x41\x72\ -\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\ -\x00\x64\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x73\x00\x20\ -\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\ -\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\ -\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x69\x00\x6e\x00\x64\ -\x00\x65\x00\x70\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x74\ -\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ -\x00\x6e\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\ -\x53\x70\x6c\x69\x74\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ -\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x69\x6e\x64\x65\ -\x70\x65\x6e\x64\x65\x6e\x74\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ -\x74\x73\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\ -\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\xbe\x00\x43\x00\x72\x00\ -\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\ -\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\ -\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ -\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x73\x00\x63\x00\ -\x72\x00\x61\x00\x74\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x72\x00\ -\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\ -\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ -\x28\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x2c\x00\ -\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x66\x00\ -\x61\x00\x63\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x73\x00\ -\x6f\x00\x6c\x00\x69\x00\x64\x00\x29\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x5f\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x74\x72\ -\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\ -\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\ -\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ -\x6a\x65\x63\x74\x20\x28\x73\x6b\x65\x74\x63\x68\x2c\x20\x77\x69\ -\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\ -\x64\x29\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\ -\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\x12\x00\x53\x00\x74\x00\ -\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x75\x00\x72\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\ -\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\ -\x75\x72\x65\x01\x03\x00\x00\x00\xa2\x00\x53\x00\x6b\x00\x65\x00\ -\x70\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x6d\x00\x75\x00\x75\x00\ -\x72\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\ -\x70\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x6e\x00\x75\x00\ -\x75\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x76\x00\ -\x61\x00\x6e\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x67\x00\x65\x00\ -\x6b\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\ -\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\x20\x00\x28\x00\x64\x00\ -\x72\x00\x61\x00\x61\x00\x64\x00\x2c\x00\x20\x00\x76\x00\x6c\x00\ -\x61\x00\x6b\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x73\x00\x6f\x00\ -\x6c\x00\x69\x00\x65\x00\x64\x00\x65\x00\x29\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x52\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\ -\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\ -\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\ -\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ -\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\ -\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x09\x41\x72\x63\x68\ -\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\x08\x00\x4d\x00\x75\x00\ -\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\ -\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\ -\x03\x00\x00\x00\xb4\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\ -\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x77\x00\x69\x00\x6e\x00\ -\x64\x00\x6f\x00\x77\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\ -\x73\x00\x63\x00\x72\x00\x61\x00\x74\x00\x63\x00\x68\x00\x20\x00\ -\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\ -\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ -\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ -\x74\x00\x20\x00\x28\x00\x77\x00\x69\x00\x72\x00\x65\x00\x2c\x00\ -\x20\x00\x72\x00\x65\x00\x63\x00\x74\x00\x61\x00\x6e\x00\x67\x00\ -\x6c\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x6b\x00\ -\x65\x00\x74\x00\x63\x00\x68\x00\x29\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x5a\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\x69\x6e\ -\x64\x6f\x77\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\ -\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\ -\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ -\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x72\x65\x63\x74\x61\x6e\x67\ -\x6c\x65\x20\x6f\x72\x20\x73\x6b\x65\x74\x63\x68\x29\x07\x00\x00\ -\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ -\x00\x00\x0e\x00\x56\x00\x65\x00\x6e\x00\x73\x00\x74\x00\x65\x00\ -\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\ -\x77\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\ -\x77\x01\x03\x00\x00\x00\x38\x00\x44\x00\x65\x00\x66\x00\x61\x00\ -\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\ -\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x74\x00\ -\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x73\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x44\x65\x66\x61\x75\x6c\x74\ -\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x74\x72\x75\x63\ -\x74\x75\x72\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ +\x68\x01\x03\x00\x00\x00\x24\x00\x47\x00\x65\x00\x6e\x00\x65\x00\ +\x6c\x00\x20\x00\x41\x00\x72\x00\x6b\x00\x20\x00\x61\x00\x79\x00\ +\x61\x00\x72\x00\x6c\x00\x61\x00\x72\x01\x31\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\x20\x41\x72\x63\ +\x68\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x1a\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x6c\x00\x20\x00\x61\x00\ +\x79\x00\x61\x00\x72\x00\x6c\x00\x61\x00\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\ +\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ \x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x44\x00\x65\ -\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\ -\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ -\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x17\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\ -\x72\x20\x66\x6f\x72\x20\x77\x61\x6c\x6c\x73\x07\x00\x00\x00\x1c\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ -\x00\x2a\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\ -\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x53\x00\x65\ -\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\x20\x41\x72\ -\x63\x68\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ -\x00\x28\x00\x41\x00\x6c\x00\x67\x00\x65\x00\x6d\x00\x65\x00\x6e\ -\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x6c\ -\x00\x6c\x00\x69\x00\x6e\x00\x67\x00\x73\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\ -\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x66\x00\x54\x00\x68\x00\ -\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\ -\x65\x00\x20\x00\x64\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\ -\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\ -\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\ -\x53\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\ -\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ -\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x54\x68\x69\x73\x20\ +\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x47\x00\x72\ +\x00\x6f\x00\x75\x00\x70\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x62\ +\x00\x79\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x19\x47\x72\x6f\x75\x70\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x62\x79\x20\x74\x79\x70\x65\ +\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x14\x00\x49\x00\x46\x00\x43\x00\x20\ +\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0a\x49\x46\x43\x20\x69\x6d\x70\x6f\x72\x74\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\xba\x00\x49\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\ +\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x49\x00\x46\x00\x43\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\ +\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\ +\x72\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\ +\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ +\x61\x00\x6c\x00\x6c\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x74\x00\x6f\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x72\x00\x65\x00\x20\x00\ +\x49\x00\x46\x00\x43\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x49\x66\x20\x74\x68\ +\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\ +\x68\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\ +\x69\x6d\x70\x6f\x72\x74\x65\x72\x20\x77\x69\x6c\x6c\x20\x62\x65\ +\x20\x75\x73\x65\x64\x2c\x20\x61\x6c\x6c\x6f\x77\x69\x6e\x67\x20\ +\x74\x6f\x20\x69\x6d\x70\x6f\x72\x74\x20\x6d\x6f\x72\x65\x20\x49\ +\x46\x43\x20\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x56\x00\ +\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x66\x00\ +\x75\x00\x72\x00\x6e\x00\x69\x00\x74\x00\x75\x00\x72\x00\x65\x00\ +\x20\x00\x28\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x6d\x00\x61\x00\ +\x6b\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6d\x00\ +\x6f\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x68\x00\x65\x00\x61\x00\ +\x76\x00\x79\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\ +\x6d\x70\x6f\x72\x74\x20\x66\x75\x72\x6e\x69\x74\x75\x72\x65\x20\ +\x28\x63\x61\x6e\x20\x6d\x61\x6b\x65\x20\x74\x68\x65\x20\x6d\x6f\ +\x64\x65\x6c\x20\x68\x65\x61\x76\x79\x29\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x54\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x64\x00\x65\x00\ +\x62\x00\x75\x00\x67\x00\x20\x00\x69\x00\x6e\x00\x66\x00\x6f\x00\ +\x72\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ +\x64\x00\x75\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x32\x00\ +\x44\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\ +\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x53\ +\x68\x6f\x77\x20\x64\x65\x62\x75\x67\x20\x69\x6e\x66\x6f\x72\x6d\ +\x61\x74\x69\x6f\x6e\x20\x64\x75\x72\x69\x6e\x67\x20\x32\x44\x20\ +\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\ +\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x72\x00\x65\x00\x6e\ +\x00\x64\x00\x65\x00\x72\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\ +\x00\x62\x00\x75\x00\x67\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x73\ +\x00\x61\x00\x67\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1c\x53\x68\x6f\x77\x20\x72\x65\x6e\x64\x65\x72\x65\x72\x20\ +\x64\x65\x62\x75\x67\x20\x6d\x65\x73\x73\x61\x67\x65\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x9e\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\x00\ +\x66\x00\x69\x00\x65\x00\x73\x00\x20\x00\x68\x00\x6f\x00\x77\x00\ +\x20\x00\x6d\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x74\x00\x69\x00\ +\x6d\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x76\x00\x69\x00\x65\x00\x77\x00\x65\x00\x64\x00\x20\x00\x6c\x00\ +\x69\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x68\x00\x69\x00\x63\x00\ +\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x00\x20\x00\x6d\x00\x75\x00\ +\x73\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x61\x00\x70\x00\ +\x70\x00\x6c\x00\x69\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x63\x00\x75\x00\x74\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x53\x70\x65\ +\x63\x69\x66\x69\x65\x73\x20\x68\x6f\x77\x20\x6d\x61\x6e\x79\x20\ +\x74\x69\x6d\x65\x73\x20\x74\x68\x65\x20\x76\x69\x65\x77\x65\x64\ +\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\x73\x20\ +\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x70\x70\x6c\x69\x65\x64\x20\ +\x74\x6f\x20\x63\x75\x74\x20\x6c\x69\x6e\x65\x73\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x5e\x00\x42\x00\x75\x00\x2c\x00\x20\x00\x79\x00\x65\x00\ +\x6e\x00\x69\x00\x20\x00\x79\x00\x61\x00\x70\x01\x31\x00\x20\x00\ +\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x6c\x00\x65\x00\x72\x00\ +\x69\x00\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\x00\x20\x00\x76\x00\ +\x61\x00\x72\x00\x73\x00\x61\x00\x79\x01\x31\x00\x6c\x00\x61\x00\ +\x6e\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x6b\x00\x74\x00\x69\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x54\x68\x69\x73\x20\ \x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\ \x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x53\x74\x72\ \x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ \x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ \x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ -\x03\x00\x00\x00\x5c\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\ -\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\ -\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\ -\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ -\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\x57\x00\x61\x00\x6c\x00\ -\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ -\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x54\x68\x69\x73\x20\ -\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\ -\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x57\x61\x6c\ -\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\ -\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x74\x00\x6f\x00\x6f\ -\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x41\x72\ -\x63\x68\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\ -\x68\x01\x03\x00\x00\x00\x18\x00\x41\x00\x72\x00\x63\x00\x68\x00\ -\x69\x00\x74\x00\x65\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x41\x72\x63\x68\x69\x74\x65\ -\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\ -\x00\x00\x00\x0a\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x05\x44\x72\x61\x66\x74\x07\x00\x00\ -\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x44\x00\x72\ -\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\ -\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x72\x61\x66\ -\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\ -\x01\x03\x00\x00\x00\x14\x00\x47\x00\x65\x00\x72\x00\x65\x00\x65\ -\x00\x64\x00\x73\x00\x6b\x00\x61\x00\x70\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x05\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\ -\x63\x68\x01\ -\x00\x00\x16\x64\ +\x03\x00\x00\x00\x60\x00\x42\x00\x75\x00\x2c\x00\x20\x00\x79\x00\ +\x65\x00\x6e\x00\x69\x00\x20\x00\x64\x00\x75\x00\x76\x00\x61\x00\ +\x72\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x6c\x00\ +\x65\x00\x72\x00\x69\x00\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\x00\ +\x20\x00\x76\x00\x61\x00\x72\x00\x73\x00\x61\x00\x79\x01\x31\x00\ +\x6c\x00\x61\x00\x6e\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x6b\x00\ +\x74\x00\x69\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x54\ +\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\ +\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\ +\x20\x57\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ +\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x3a\x00\x55\x00\x73\x00\x65\x00\x20\x00\x49\x00\x46\ +\x00\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\ +\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x66\x00\x20\x00\x61\x00\x76\ +\x00\x61\x00\x69\x00\x6c\x00\x61\x00\x62\x00\x6c\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\x65\x20\x49\x46\x43\x4f\ +\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\x69\x66\x20\x61\x76\x61\x69\ +\x6c\x61\x62\x6c\x65\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x26\x00\x41\ +\x00\x72\x00\x63\x00\x68\x00\x69\x00\x74\x00\x65\x00\x63\x00\x74\ +\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ +\x26\x41\x72\x63\x68\x69\x74\x65\x63\x74\x75\x72\x65\x07\x00\x00\ +\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x26\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x06\x26\x44\x72\x61\x66\x74\x07\x00\x00\x00\x04\x61\x72\x63\ +\x68\x01\x03\x00\x00\x00\x1c\x00\x4b\x00\x65\x00\x6d\x00\x65\x00\ +\x72\x00\x20\x00\x61\x00\x72\x00\x61\x00\xe7\x00\x6c\x00\x61\x00\ +\x72\x01\x31\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x41\x72\x63\ +\x68\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\ +\x01\x03\x00\x00\x00\x22\x00\x43\x00\x61\x00\x6c\x00\x63\x00\x75\ +\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x54\ +\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x11\x43\x61\x6c\x63\x75\x6c\x61\x74\x69\x6f\x6e\x20\x54\x6f\ +\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\ +\x00\x1a\x00\x43\x00\x6f\x00\x6e\x00\x74\x00\x65\x00\x78\x00\x74\ +\x00\x20\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x74\x65\x78\x74\x20\x54\x6f\ +\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\ +\x00\x20\x00\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x73\ +\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x54\x00\x6f\x00\x6f\x00\x6c\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x6f\x6e\x76\ +\x65\x72\x73\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\ +\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x00\x44\x00\x72\x00\ +\x61\x00\x66\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x20\x00\ +\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\x20\x74\x6f\x6f\ +\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\ +\x16\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\x00\ +\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0b\x44\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\ +\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x6e\x00\x70\x00\x79\x00\ +\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\ +\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\x6f\x00\x75\x00\x6e\x00\ +\x64\x00\x2c\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\ +\x64\x00\x61\x00\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\ +\x62\x00\x65\x00\x20\x00\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\ +\x6c\x00\x65\x00\x64\x00\x2e\x00\x0a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x37\x70\x79\x63\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\ +\x20\x66\x6f\x75\x6e\x64\x2c\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\ +\x73\x75\x70\x70\x6f\x72\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\ +\x64\x69\x73\x61\x62\x6c\x65\x64\x2e\x0a\x07\x00\x00\x00\x04\x61\ +\x72\x63\x68\x01\ +\x00\x00\x4b\xd5\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ -\x00\x00\x01\x50\x00\x04\x9c\x2c\x00\x00\x02\xcf\x00\x05\xa0\xa5\ -\x00\x00\x0b\x29\x00\x05\xd8\x2c\x00\x00\x0f\x13\x00\x39\xdf\x33\ -\x00\x00\x12\x0e\x00\x4b\x87\xd4\x00\x00\x14\x64\x00\x4d\x36\x62\ -\x00\x00\x04\x57\x00\x5b\x66\x33\x00\x00\x14\xc6\x00\x62\x9b\xa8\ -\x00\x00\x0b\x55\x00\xfb\x72\xf3\x00\x00\x11\xa0\x01\xf7\xa8\x83\ -\x00\x00\x13\x37\x02\x5f\xc9\x59\x00\x00\x0d\xe3\x02\x90\x40\x65\ -\x00\x00\x05\x2e\x02\xb8\xae\x74\x00\x00\x05\x80\x02\xcd\x05\xa3\ -\x00\x00\x04\x81\x02\xdd\x14\x14\x00\x00\x05\xd2\x02\xe5\xaa\xe4\ -\x00\x00\x00\x99\x03\x1d\xe8\xe3\x00\x00\x10\x9b\x03\xd4\x22\x74\ -\x00\x00\x00\xde\x04\xdb\x21\x3e\x00\x00\x0a\x7c\x05\x18\xda\xa3\ -\x00\x00\x03\xab\x05\xe0\x4b\x67\x00\x00\x10\x6d\x06\x32\xe3\xe3\ -\x00\x00\x14\x8c\x07\x60\x23\xf3\x00\x00\x00\x00\x09\x13\xce\x39\ -\x00\x00\x0f\x3f\x09\xba\xe6\x35\x00\x00\x0d\xa5\x09\xe3\x98\xe4\ -\x00\x00\x01\x2c\x09\xed\x98\x55\x00\x00\x08\x96\x0a\x7f\xee\xa3\ -\x00\x00\x13\xf0\x0b\x51\x30\xa8\x00\x00\x06\xe4\x0b\x65\xda\xb3\ -\x00\x00\x11\x24\x0b\x8d\x97\x93\x00\x00\x12\x6d\x0b\xb9\xe8\x93\ -\x00\x00\x07\x49\x0b\xc4\xb1\x23\x00\x00\x02\xfd\x0b\xe2\xc4\x04\ -\x00\x00\x07\xef\x0c\x02\xac\xd7\x00\x00\x01\xe0\x0c\x25\x3e\x53\ -\x00\x00\x09\x67\x0c\x4e\x9b\x23\x00\x00\x08\xeb\x0d\x1e\xda\xa4\ -\x00\x00\x00\x37\x0d\x3b\x3b\x49\x00\x00\x0c\x5b\x0e\x32\x23\x85\ -\x00\x00\x14\x27\x0e\x8c\xd7\x43\x00\x00\x0b\xa0\x0e\xec\x0b\x9e\ -\x00\x00\x02\x16\x69\x00\x00\x14\xfa\x03\x00\x00\x00\x14\x04\x1a\ -\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\x04\x42\ -\x04\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\x6d\x70\ -\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ -\x03\x00\x00\x00\x30\x04\x1a\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\ -\x3d\x04\x35\x04\x3d\x04\x42\x04\x4b\x00\x20\x04\x4d\x04\x42\x04\ -\x3e\x04\x33\x04\x3e\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\ -\x3a\x04\x42\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x43\ -\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\ -\x73\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\ -\x68\x01\x03\x00\x00\x00\x20\x04\x23\x04\x34\x04\x30\x04\x3b\x04\ -\x35\x04\x3d\x04\x38\x04\x35\x00\x20\x04\x3f\x04\x3e\x04\x42\x04\ -\x3e\x04\x3c\x04\x3a\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0c\x52\x65\x6d\x6f\x76\x65\x20\x63\x68\x69\x6c\x64\x07\x00\x00\ -\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x24\x04\x14\x04\x3e\ -\x04\x31\x04\x30\x04\x32\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x3a\ -\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\x04\x42\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\x63\x6f\ -\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\ -\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x66\x04\x14\x04\x3e\x04\x31\ -\x04\x30\x04\x32\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x32\x04\x4b\ -\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3d\x04\x4b\x04\x35\x00\x20\ -\x04\x3a\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\ -\x04\x42\x04\x4b\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x30\ -\x04\x3a\x04\x42\x04\x38\x04\x32\x04\x3d\x04\x3e\x04\x33\x04\x3e\ -\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x30\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x41\x64\x64\x73\x20\x74\ -\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\ -\x6f\x6e\x65\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x61\x63\ -\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\ -\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x0c\x04\x17\ -\x04\x34\x04\x30\x04\x3d\x04\x38\x04\x35\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\ -\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\ -\x00\x00\x00\x62\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x51\ -\x04\x42\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\ -\x00\x20\x04\x37\x04\x34\x04\x30\x04\x3d\x04\x38\x04\x4f\x00\x2c\ -\x00\x20\x04\x32\x04\x3a\x04\x3b\x04\x4e\x04\x47\x04\x30\x04\x4f\ +\x00\x00\x04\xf8\x00\x00\x47\xa4\x00\x00\x00\x49\x00\x04\x8e\xc3\ +\x00\x00\x01\x81\x00\x04\x8f\x03\x00\x00\x02\x32\x00\x04\x8f\x03\ +\x00\x00\x26\x6e\x00\x04\x9c\x2c\x00\x00\x27\xe4\x00\x04\xbb\x04\ +\x00\x00\x08\x32\x00\x05\x48\x35\x00\x00\x0d\x55\x00\x05\x67\xd5\ +\x00\x00\x0f\x87\x00\x05\x96\x56\x00\x00\x0f\xe1\x00\x05\x96\x56\ +\x00\x00\x2f\x9e\x00\x05\xa0\xa5\x00\x00\x10\x08\x00\x05\xa0\xa5\ +\x00\x00\x33\x2f\x00\x05\xc0\x65\x00\x00\x1d\xdb\x00\x05\xd8\x2c\ +\x00\x00\x1f\x84\x00\x05\xd8\x2c\x00\x00\x37\x19\x00\x32\x23\xa5\ +\x00\x00\x43\x9e\x00\x39\xdf\x33\x00\x00\x3b\xff\x00\x48\x4e\x25\ +\x00\x00\x01\x5b\x00\x49\xeb\x9b\x00\x00\x28\xc0\x00\x4b\x55\x33\ +\x00\x00\x3d\x37\x00\x4d\x36\x62\x00\x00\x0a\x9d\x00\x4d\x36\x62\ +\x00\x00\x2b\x22\x00\x5d\xfb\xa8\x00\x00\x20\x22\x00\x5e\x08\xc3\ +\x00\x00\x20\x73\x00\x61\xb0\x33\x00\x00\x17\x8f\x00\x62\x9b\xa8\ +\x00\x00\x10\x93\x00\x62\x9b\xa8\x00\x00\x33\x5b\x00\x8a\x92\x57\ +\x00\x00\x00\x00\x00\xaa\x80\x25\x00\x00\x07\x89\x00\xc9\x7b\xf3\ +\x00\x00\x13\x62\x00\xfb\x72\xf3\x00\x00\x3b\x83\x01\x19\x4e\x85\ +\x00\x00\x05\xfb\x01\x55\x2b\xf5\x00\x00\x05\x56\x01\x79\x17\x94\ +\x00\x00\x23\x3e\x01\x8e\x84\xa6\x00\x00\x12\x12\x01\xad\x7d\xe3\ +\x00\x00\x45\x5b\x01\xaf\x41\x84\x00\x00\x22\x3a\x01\xf7\xa8\x83\ +\x00\x00\x42\x5d\x02\x01\x7f\xd3\x00\x00\x11\x08\x02\x29\xb3\xc4\ +\x00\x00\x2e\xd5\x02\x5a\x4a\x53\x00\x00\x16\x8d\x02\x5f\xc9\x59\ +\x00\x00\x35\xe9\x02\x66\x7f\x7e\x00\x00\x0e\x5f\x02\x6a\x77\x99\ +\x00\x00\x3e\x7f\x02\x80\x5f\x17\x00\x00\x24\x0d\x02\x82\x88\x3a\ +\x00\x00\x04\x58\x02\x85\x4f\xf5\x00\x00\x19\xe9\x02\x90\x40\x65\ +\x00\x00\x0d\x0f\x02\x90\x40\x65\x00\x00\x2b\x4c\x02\x94\x16\x35\ +\x00\x00\x11\x45\x02\xab\x87\xd4\x00\x00\x43\xdc\x02\xb8\xae\x74\ +\x00\x00\x2c\x4a\x02\xc3\x91\x93\x00\x00\x3f\xf0\x02\xcd\x05\xa3\ +\x00\x00\x2b\x9e\x02\xdd\x14\x14\x00\x00\x2c\x9c\x03\x13\x15\x3e\ +\x00\x00\x0b\xbb\x03\x1b\xda\x15\x00\x00\x1f\xee\x03\x1d\xe8\xe3\ +\x00\x00\x3a\x08\x03\x29\x7a\x34\x00\x00\x00\xe5\x03\x2c\xe9\xb3\ +\x00\x00\x17\xec\x03\x92\x51\xe0\x00\x00\x10\x2f\x03\xa2\xec\x23\ +\x00\x00\x1f\xab\x03\xbe\xb0\x34\x00\x00\x1e\xac\x03\xce\x98\xe5\ +\x00\x00\x03\xe2\x03\xd4\x22\x74\x00\x00\x25\x6c\x04\x35\xfa\x55\ +\x00\x00\x12\xd7\x04\xc3\x75\x44\x00\x00\x1a\x34\x04\xdb\x21\x3e\ +\x00\x00\x32\x82\x04\xeb\xfd\xf4\x00\x00\x0a\xf8\x05\x14\x5b\x83\ +\x00\x00\x07\xbe\x05\x18\xda\xa3\x00\x00\x2a\x76\x05\x5f\x3d\x83\ +\x00\x00\x3b\x0d\x05\x8c\x46\xc5\x00\x00\x0f\xb4\x05\x90\xba\xe3\ +\x00\x00\x0f\x59\x05\xc0\x56\xe3\x00\x00\x40\x8b\x05\xc7\xeb\xc7\ +\x00\x00\x3f\x31\x05\xe0\x4b\x67\x00\x00\x20\x4c\x05\xe0\x4b\x67\ +\x00\x00\x38\x43\x05\xef\x78\x4a\x00\x00\x23\x79\x06\x1f\x6f\xa4\ +\x00\x00\x21\x9a\x06\x32\xe3\xe3\x00\x00\x45\xb9\x06\x5b\x01\x15\ +\x00\x00\x03\xad\x06\x69\xd0\x04\x00\x00\x21\x30\x06\x9f\x6f\xd4\ +\x00\x00\x07\x1d\x06\xd6\x3f\xa4\x00\x00\x23\x04\x06\xe6\x2f\x43\ +\x00\x00\x12\x6f\x07\x00\xcc\xc4\x00\x00\x3c\xe8\x07\x07\x84\xba\ +\x00\x00\x46\x05\x07\x08\x43\x0e\x00\x00\x26\x96\x07\x16\x58\x05\ +\x00\x00\x38\xcc\x07\x25\x74\x53\x00\x00\x29\x73\x07\x28\xff\x15\ +\x00\x00\x0d\xdb\x07\x36\x51\x26\x00\x00\x14\x44\x07\x5c\xdc\x04\ +\x00\x00\x20\xa9\x07\x60\x23\xf3\x00\x00\x03\x14\x07\xca\xf8\x87\ +\x00\x00\x38\x71\x08\x25\x81\xc4\x00\x00\x06\xc2\x08\x4a\x45\xd9\ +\x00\x00\x37\x45\x08\x65\x4c\x95\x00\x00\x1c\x62\x08\xc5\xe3\x35\ +\x00\x00\x1b\xb3\x08\xca\xc9\x74\x00\x00\x15\x6c\x08\xfb\xb8\xa4\ +\x00\x00\x0a\x36\x09\x69\xac\xa7\x00\x00\x1f\x17\x09\x6c\x6c\xa7\ +\x00\x00\x0a\xc1\x09\x9f\xcc\xde\x00\x00\x22\xa0\x09\xba\xe6\x35\ +\x00\x00\x10\xd4\x09\xba\xe6\x35\x00\x00\x35\xab\x09\xc5\xbe\xca\ +\x00\x00\x09\x8e\x09\xe3\x98\xe4\x00\x00\x25\xba\x09\xed\x98\x55\ +\x00\x00\x30\xaa\x0a\x3e\x06\x83\x00\x00\x04\xca\x0a\x3f\x1f\xd6\ +\x00\x00\x05\x18\x0a\x3f\x2b\x25\x00\x00\x05\xb7\x0a\x3f\x5d\xac\ +\x00\x00\x06\x46\x0a\x7f\xee\xa3\x00\x00\x44\x0d\x0a\xb6\xc8\x9a\ +\x00\x00\x0b\x23\x0a\xbf\x46\x0e\x00\x00\x1d\xfe\x0a\xd6\x07\x84\ +\x00\x00\x20\xde\x0b\x0a\xc3\xf3\x00\x00\x00\x75\x0b\x51\x30\xa8\ +\x00\x00\x2d\xae\x0b\x65\xda\xb3\x00\x00\x3a\x91\x0b\x8d\x97\x93\ +\x00\x00\x41\xa9\x0b\x9c\x5b\xe7\x00\x00\x08\xe9\x0b\xb9\xe8\x93\ +\x00\x00\x2e\x21\x0b\xc4\xb1\x23\x00\x00\x28\x12\x0c\x02\xac\xd7\ +\x00\x00\x02\xe7\x0c\x02\xac\xd7\x00\x00\x26\xf5\x0c\x25\x3e\x53\ +\x00\x00\x31\x7f\x0c\x3c\x8b\x33\x00\x00\x44\x5e\x0c\x41\x0a\x83\ +\x00\x00\x44\xae\x0c\x4e\x9b\x23\x00\x00\x30\xff\x0c\x98\x80\x23\ +\x00\x00\x44\xfe\x0c\xc4\xd0\x80\x00\x00\x24\xbc\x0c\xdf\x5a\x1e\ +\x00\x00\x01\xa4\x0c\xfc\x97\x06\x00\x00\x1f\x56\x0d\x03\x26\xb4\ +\x00\x00\x02\x9e\x0d\x08\x90\xf3\x00\x00\x1b\x46\x0d\x1e\xda\xa4\ +\x00\x00\x03\x4b\x0d\x3b\x3b\x49\x00\x00\x34\x61\x0d\xa8\x3a\x35\ +\x00\x00\x18\x2f\x0d\xc1\x7d\x47\x00\x00\x25\x0c\x0d\xfa\x53\xe5\ +\x00\x00\x08\x5b\x0e\x69\x87\x13\x00\x00\x2f\xca\x0e\x8c\xd7\x43\ +\x00\x00\x33\xa6\x0e\x98\x0a\xd6\x00\x00\x1e\x4c\x0e\xab\x8d\x1f\ +\x00\x00\x39\x7d\x0e\xb9\x1b\xf2\x00\x00\x15\x0b\x0e\xec\x0b\x9e\ +\x00\x00\x27\x2b\x0f\x16\x4a\x24\x00\x00\x1d\x6b\x0f\x17\xc7\xa3\ +\x00\x00\x28\xf6\x0f\x55\xc1\x57\x00\x00\x06\x84\x0f\x78\x41\x05\ +\x00\x00\x43\x16\x0f\x79\xe3\xf3\x00\x00\x29\xc2\x0f\x95\xd5\x09\ +\x00\x00\x18\xdd\x0f\xa2\x16\x43\x00\x00\x1d\x3b\x0f\xc0\xb8\xb4\ +\x00\x00\x0d\x82\x0f\xd0\x39\x44\x00\x00\x02\x55\x0f\xe5\x74\x74\ +\x00\x00\x00\xab\x0f\xf3\xe8\x33\x00\x00\x3c\x5e\x69\x00\x00\x46\ +\xc3\x03\x00\x00\x00\x20\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x42\x00\x75\x00\x69\x00\x6c\x00\x64\ +\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x20\x43\x72\x65\x61\x74\x65\x20\x42\x75\x69\x6c\x64\x69\x6e\x67\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x04\ +\x14\x04\x3e\x04\x31\x04\x30\x04\x32\x04\x38\x04\x42\x04\x4c\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\x64\x64\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x04\x14\x04\x3e\x04\ +\x3f\x04\x3e\x04\x3b\x04\x3d\x04\x35\x04\x3d\x04\x38\x04\x4f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x41\x64\x64\x69\x74\x69\x6f\ +\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x18\x04\x12\x04\x4b\x04\x40\x04\x30\x04\x32\x04\x3d\x04\x38\x04\ +\x32\x04\x30\x04\x3d\x04\x38\x04\x35\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x41\x6c\x69\x67\x6e\x6d\x65\x6e\x74\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x42\x04\x12\x04\x41\x04\ +\x35\x00\x20\x04\x32\x00\x20\x04\x3f\x04\x3e\x04\x40\x04\x4f\x04\ +\x34\x04\x3a\x04\x35\x00\x21\x00\x20\x04\x3f\x04\x40\x04\x3e\x04\ +\x31\x04\x3b\x04\x35\x04\x3c\x00\x20\x04\x3d\x04\x35\x00\x20\x04\ +\x3d\x04\x30\x04\x39\x04\x34\x04\x35\x04\x3d\x04\x3e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1b\x41\x6c\x6c\x20\x67\x6f\x6f\x64\x21\ +\x20\x6e\x6f\x20\x70\x72\x6f\x62\x6c\x65\x6d\x73\x20\x66\x6f\x75\ +\x6e\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x08\x04\x23\x04\x33\x04\x3e\x04\x3b\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x05\x41\x6e\x67\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x06\x04\x1e\x04\x41\x04\x38\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x41\x78\x65\x73\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4e\x00\x41\x00\x78\x00\x65\ +\x00\x73\x00\x20\x00\x73\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\ +\x00\x73\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\ +\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\ +\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x75\x00\x69\x00\x6c\ +\x00\x74\x00\x20\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x27\x41\x78\x65\x73\x20\x73\x79\x73\x74\x65\x6d\x73\x20\x74\ +\x68\x69\x73\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x69\x73\ +\x20\x62\x75\x69\x6c\x74\x20\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x06\x04\x1e\x04\x41\x04\x4c\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\x69\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x22\x04\x11\x04\x30\x04\ +\x37\x04\x3e\x04\x32\x04\x4b\x04\x39\x00\x20\x04\x3e\x04\x31\x04\ +\x4a\x04\x35\x04\x3a\x04\x42\x00\x20\x00\x32\x00\x44\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0e\x42\x61\x73\x65\x20\x32\x44\x20\x6f\ +\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x22\x04\x11\x04\x30\x04\x37\x04\x3e\x04\x32\x04\x4b\ +\x04\x39\x00\x20\x04\x3a\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\ +\x04\x35\x04\x3d\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ +\x42\x61\x73\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x04\x17\x04\ +\x34\x04\x30\x04\x3d\x04\x38\x04\x35\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x04\x1a\x04\x3e\x04\x3c\ +\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\x04\x42\x04\x4b\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x30\x04\x1a\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\ +\x3d\x04\x42\x04\x4b\x00\x20\x04\x4d\x04\x42\x04\x3e\x04\x33\x04\ +\x3e\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\ +\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x43\x6f\x6d\x70\x6f\ +\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6f\x62\ +\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x14\x04\x1f\x04\x40\x04\x3e\x04\x34\x04\x3e\x04\x3b\x04\ +\x36\x04\x38\x04\x42\x04\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x08\x43\x6f\x6e\x74\x69\x6e\x75\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x43\x00\x6f\x00\x75\x00\x6c\ +\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x70\x00\x75\x00\x74\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x73\x00\x68\ +\x00\x61\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\ +\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x63\x6f\x6d\x70\x75\x74\x65\ +\x20\x74\x68\x65\x20\x77\x61\x6c\x6c\x20\x73\x68\x61\x70\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3c\x04\x1d\ +\x04\x35\x00\x20\x04\x43\x04\x34\x04\x30\x04\x35\x04\x42\x04\x41\ +\x04\x4f\x00\x20\x04\x3d\x04\x30\x04\x39\x04\x42\x04\x38\x00\x20\ +\x00\x49\x00\x66\x00\x63\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\ +\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x20\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1d\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x6c\x6f\x63\ +\x61\x74\x65\x20\x49\x66\x63\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\ +\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2a\ +\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x42\x04\x4c\x00\x20\ +\x04\x3e\x04\x41\x04\x38\x00\x20\x04\x3a\x04\x3e\x04\x3e\x04\x40\ +\x04\x34\x04\x38\x04\x3d\x04\x30\x04\x42\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x41\x78\x69\x73\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x04\x21\ +\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x3a\ +\x04\x40\x04\x4b\x04\x48\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x52\x6f\x6f\x66\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\x04\x21\x04\x3e\ +\x04\x37\x04\x34\x04\x30\x04\x39\x04\x42\x04\x35\x00\x20\x04\x41\ +\x04\x35\x04\x3a\x04\x43\x04\x49\x04\x43\x04\x4e\x00\x20\x04\x3f\ +\x04\x3b\x04\x3e\x04\x41\x04\x3a\x04\x3e\x04\x41\x04\x42\x04\x4c\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\x74\x65\ +\x20\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x20\x04\x21\x04\ +\x3e\x04\x37\x04\x34\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x3f\x04\ +\x3b\x04\x3e\x04\x49\x04\x30\x04\x34\x04\x3a\x04\x43\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x53\x69\ +\x74\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x22\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x42\x04\x4c\x00\ +\x20\x04\x41\x04\x42\x04\x40\x04\x43\x04\x3a\x04\x42\x04\x43\x04\ +\x40\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\ +\x61\x74\x65\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x04\x21\x04\x3e\ +\x04\x37\x04\x34\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x41\x04\x42\ +\x04\x35\x04\x3d\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ +\x43\x72\x65\x61\x74\x65\x20\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\x04\x21\x04\x3e\x04\x37\ +\x04\x34\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x3e\x04\x3a\x04\x3d\ +\x04\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x72\x65\x61\ +\x74\x65\x20\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x2e\x04\x21\x04\x3e\x04\x37\x04\x34\ +\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x3d\x04\x3e\x04\x32\x04\x4b\ +\x04\x39\x00\x20\x04\x3a\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\ +\x04\x35\x04\x3d\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\ +\x43\x72\x65\x61\x74\x65\x20\x6e\x65\x77\x20\x63\x6f\x6d\x70\x6f\ +\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x3c\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x3d\x04\ +\x38\x04\x35\x00\x2f\x04\x3e\x04\x31\x04\x3d\x04\x3e\x04\x32\x04\ +\x3b\x04\x35\x04\x3d\x04\x38\x04\x35\x00\x20\x04\x3a\x04\x3e\x04\ +\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\x04\x42\x04\x30\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\x74\x65\x2f\ +\x75\x70\x64\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x04\ +\x20\x04\x30\x04\x41\x04\x41\x04\x42\x04\x3e\x04\x4f\x04\x3d\x04\ +\x38\x04\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x44\x69\x73\ +\x74\x61\x6e\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x3a\x04\x20\x04\x30\x04\x41\x04\x41\x04\x42\x04\x3e\ +\x04\x4f\x04\x3d\x04\x38\x04\x4f\x00\x20\x04\x38\x00\x20\x04\x43\ +\x04\x33\x04\x3b\x04\x4b\x00\x20\x04\x3c\x04\x35\x04\x36\x04\x34\ +\x04\x43\x00\x20\x04\x3e\x04\x41\x04\x4f\x04\x3c\x04\x38\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x21\x44\x69\x73\x74\x61\x6e\x63\x65\ +\x73\x20\x61\x6e\x64\x20\x61\x6e\x67\x6c\x65\x73\x20\x62\x65\x74\ +\x77\x65\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x0c\x04\x1f\x04\x40\x04\x30\x04\x32\ +\x04\x3a\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\ +\x69\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x4e\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x20\x00\x72\x00\ +\x65\x00\x6d\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x73\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x74\x00\x65\x00\x72\x00\ +\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x77\x00\x61\x00\ +\x6c\x00\x6c\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x27\x45\x72\x72\x6f\x72\x20\x72\ +\x65\x6d\x6f\x76\x69\x6e\x67\x20\x73\x70\x6c\x69\x74\x74\x65\x72\ +\x20\x66\x72\x6f\x6d\x20\x77\x61\x6c\x6c\x20\x73\x68\x61\x70\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x60\x04\ +\x1e\x04\x48\x04\x38\x04\x31\x04\x3a\x04\x30\x00\x3a\x00\x20\x04\ +\x1d\x04\x35\x00\x20\x04\x43\x04\x34\x04\x30\x04\x3b\x04\x3e\x04\ +\x41\x04\x4c\x00\x20\x04\x3e\x04\x3f\x04\x40\x04\x35\x04\x34\x04\ +\x35\x04\x3b\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x3a\x04\x3e\x04\ +\x34\x04\x38\x04\x40\x04\x3e\x04\x32\x04\x3a\x04\x43\x00\x20\x04\ +\x41\x04\x38\x04\x3c\x04\x32\x04\x3e\x04\x3b\x04\x3e\x04\x32\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x45\x72\x72\x6f\x72\x3a\x20\ +\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x64\x65\x74\x65\x72\x6d\x69\ +\x6e\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\x65\x6e\x63\ +\x6f\x64\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x62\x04\x1e\x04\x48\x04\x38\x04\x31\x04\x3a\x04\x30\ +\x00\x3a\x00\x20\x04\x1d\x04\x35\x00\x20\x04\x43\x04\x34\x04\x30\ +\x04\x3b\x04\x3e\x04\x41\x04\x4c\x00\x20\x04\x3e\x04\x3f\x04\x40\ +\x04\x35\x04\x34\x04\x35\x04\x3b\x04\x38\x04\x42\x04\x4c\x00\x20\ +\x04\x3a\x04\x3e\x04\x34\x04\x38\x04\x40\x04\x3e\x04\x32\x04\x3a\ +\x04\x43\x00\x20\x04\x41\x04\x38\x04\x3c\x04\x32\x04\x3e\x04\x3b\ +\x04\x3e\x04\x32\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\ +\x45\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\ +\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\x61\x72\x61\x63\ +\x74\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x0a\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\x45\x00\x72\ +\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x49\x00\x6e\x00\x76\ +\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x20\x00\x62\x00\x61\x00\x73\ +\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x45\x72\x72\x6f\x72\x3a\ +\x20\x49\x6e\x76\x61\x6c\x69\x64\x20\x62\x61\x73\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x06\x04\x1f\x04\x3e\x04\x3b\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x16\x04\x13\x04\x40\x04\x43\x04\x3f\x04\ +\x3f\x04\x38\x04\x40\x04\x3e\x04\x32\x04\x3a\x04\x30\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x47\x72\x6f\x75\x70\x69\x6e\x67\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x04\x12\ +\x04\x4b\x04\x41\x04\x3e\x04\x42\x04\x30\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x48\x65\x69\x67\x68\x74\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x54\x04\x1c\x04\x24\x04\x1a\x00\ +\x20\x04\x41\x04\x45\x04\x35\x04\x3c\x04\x4b\x00\x20\x04\x3d\x04\ +\x35\x00\x20\x04\x3d\x04\x30\x04\x39\x04\x34\x04\x35\x04\x3d\x04\ +\x30\x00\x2c\x00\x20\x04\x1c\x04\x24\x04\x1a\x00\x20\x04\x38\x04\ +\x3c\x04\x3f\x04\x3e\x04\x40\x04\x42\x00\x20\x04\x3e\x04\x42\x04\ +\x3a\x04\x3b\x04\x4e\x04\x47\x04\x35\x04\x3d\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x2b\x49\x46\x43\x20\x53\x63\x68\x65\x6d\ +\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x49\x46\x43\ +\x20\x69\x6d\x70\x6f\x72\x74\x20\x64\x69\x73\x61\x62\x6c\x65\x64\ +\x2e\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\xd2\x00\x49\x00\x66\x00\x20\x00\x54\x00\x72\x00\x75\x00\x65\x00\ +\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\ +\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\ +\x65\x00\x2c\x00\x20\x00\x69\x00\x74\x00\x20\x00\x77\x00\x69\x00\ +\x6c\x00\x6c\x00\x20\x00\x75\x00\x73\x00\x65\x00\x20\x00\x69\x00\ +\x74\x00\x73\x00\x20\x00\x62\x00\x6f\x00\x72\x00\x64\x00\x65\x00\ +\x72\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x20\x00\x61\x00\ +\x73\x00\x20\x00\x74\x00\x72\x00\x61\x00\x63\x00\x65\x00\x2c\x00\ +\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x64\x00\x69\x00\x73\x00\ +\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\ +\x65\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x69\x49\x66\x20\ +\x54\x72\x75\x65\x2c\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\ +\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\ +\x20\x66\x61\x63\x65\x2c\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x75\ +\x73\x65\x20\x69\x74\x73\x20\x62\x6f\x72\x64\x65\x72\x20\x77\x69\ +\x72\x65\x20\x61\x73\x20\x74\x72\x61\x63\x65\x2c\x20\x61\x6e\x64\ +\x20\x64\x69\x73\x63\x6f\x6e\x73\x69\x64\x65\x72\x20\x74\x68\x65\ +\x20\x66\x61\x63\x65\x2e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x20\x04\x21\x04\x35\x04\x42\x04\x3a\x04\x30\x00\ +\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x44\x04\x38\x04\x33\x04\ +\x43\x04\x40\x04\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\ +\x65\x73\x68\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x04\x1d\x04\x30\x04\ +\x37\x04\x32\x04\x30\x04\x3d\x04\x38\x04\x35\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x04\x4e\x61\x6d\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x2e\x04\x1d\x04\x35\x04\x42\x00\x20\ +\x04\x32\x04\x4b\x04\x34\x04\x35\x04\x3b\x04\x35\x04\x3d\x04\x3d\ +\x04\x4b\x04\x45\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\ +\x04\x42\x04\x3e\x04\x32\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\ +\x4e\x6f\x20\x6f\x62\x6a\x65\x63\x74\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x4c\x04\x1f\x04\x3e\x04\x3b\x04\x41\x04\x3a\x04\x3e\x04\x41\x04\ +\x42\x04\x4c\x00\x20\x04\x3d\x04\x35\x00\x20\x04\x3f\x04\x35\x04\ +\x40\x04\x35\x04\x41\x04\x35\x04\x3a\x04\x30\x04\x35\x04\x42\x00\ +\x20\x04\x3d\x04\x38\x00\x20\x04\x3e\x04\x34\x04\x38\x04\x3d\x00\ +\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1f\x4e\x6f\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x61\x72\x65\x20\x63\x75\x74\x20\x62\x79\x20\x74\x68\x65\ +\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x96\x00\x4e\x00\x6f\x00\x20\x00\x73\x00\x68\x00\ +\x61\x00\x70\x00\x65\x00\x20\x00\x68\x00\x61\x00\x73\x00\x20\x00\ +\x62\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\ +\x70\x00\x75\x00\x74\x00\x65\x00\x64\x00\x20\x00\x79\x00\x65\x00\ +\x74\x00\x2c\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x66\x00\x72\x00\ +\x61\x00\x6d\x00\x65\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\ +\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x6e\x00\ +\x64\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\ +\x20\x00\x61\x00\x67\x00\x61\x00\x69\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x4b\x4e\x6f\x20\x73\x68\x61\x70\x65\x20\x68\x61\ +\x73\x20\x62\x65\x65\x6e\x20\x63\x6f\x6d\x70\x75\x74\x65\x64\x20\ +\x79\x65\x74\x2c\x20\x73\x65\x6c\x65\x63\x74\x20\x77\x69\x72\x65\ +\x66\x72\x61\x6d\x65\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x20\ +\x61\x6e\x64\x20\x72\x65\x6e\x64\x65\x72\x20\x61\x67\x61\x69\x6e\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x04\ +\x1e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x4b\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x07\x4f\x62\x6a\x65\x63\x74\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x04\x21\x04\ +\x42\x04\x40\x04\x30\x04\x3d\x04\x38\x04\x46\x04\x30\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x50\x61\x67\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x04\x23\x04\x34\x04\x30\ +\x04\x3b\x04\x38\x04\x42\x04\x4c\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x06\x52\x65\x6d\x6f\x76\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x0a\x04\x1a\x04\x40\x04\x4b\x04\x48\x04\ +\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\x66\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x04\x1c\ +\x04\x35\x04\x41\x04\x42\x04\x3e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x32\x00\x53\x00\x6b\x00\x69\x00\x70\x00\x70\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x69\x00\x6e\x00\x76\x00\x61\x00\ +\x6c\x00\x69\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x19\x53\x6b\x69\x70\x70\x69\x6e\x67\x20\x69\x6e\x76\x61\x6c\x69\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x04\x20\x04\x30\x04\x37\x04\ +\x34\x04\x35\x04\x3b\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x41\x04\ +\x35\x04\x42\x04\x3a\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x04\x21\x04\x42\x04\x40\ +\x04\x43\x04\x3a\x04\x42\x04\x43\x04\x40\x04\x30\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x53\ +\x00\x75\x00\x62\x00\x74\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x53\x75\x62\x74\x72\x61\x63\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x78\x00\x54\x00\x68\x00\ +\x65\x00\x20\x00\x61\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\ +\x20\x00\x6f\x00\x6e\x00\x20\x00\x69\x00\x74\x00\x73\x00\x20\x00\ +\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\ +\x61\x00\x70\x00\x70\x00\x6c\x00\x69\x00\x63\x00\x61\x00\x62\x00\ +\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3c\x54\x68\x65\ +\x20\x61\x6c\x69\x67\x6e\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\ +\x69\x73\x20\x77\x61\x6c\x6c\x20\x6f\x6e\x20\x69\x74\x73\x20\x62\ +\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x69\x66\x20\x61\ +\x70\x70\x6c\x69\x63\x61\x62\x6c\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x2e\x04\x23\x04\x33\x04\x3e\x04\x3b\ +\x00\x20\x04\x3d\x04\x30\x04\x3a\x04\x3b\x04\x3e\x04\x3d\x04\x30\ +\x00\x20\x04\x4d\x04\x42\x04\x3e\x04\x39\x00\x20\x04\x3a\x04\x40\ +\x04\x4b\x04\x48\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\ +\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\x20\x6f\x66\x20\x74\x68\x69\ +\x73\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x38\x04\x23\x04\x33\x04\x3b\x04\x4b\x00\x20\x04\ +\x3c\x04\x35\x04\x36\x04\x34\x04\x43\x00\x20\x04\x3a\x04\x30\x04\ +\x36\x04\x34\x04\x3e\x04\x39\x00\x20\x04\x3f\x04\x30\x04\x40\x04\ +\x3e\x04\x39\x00\x20\x04\x3e\x04\x41\x04\x35\x04\x39\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\ +\x73\x20\x6f\x66\x20\x65\x61\x63\x68\x20\x61\x78\x69\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4c\x00\x54\x00\ +\x68\x00\x65\x00\x20\x00\x64\x00\x69\x00\x73\x00\x70\x00\x6c\x00\ +\x61\x00\x79\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ +\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x26\x54\x68\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x73\ +\x69\x7a\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\ +\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x86\x00\x54\x00\x68\x00\x65\x00\x20\ +\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\ +\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x73\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x65\x00\x78\x00\x63\x00\x6c\x00\x75\ +\x00\x64\x00\x65\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\ +\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\x00\x74\x00\x72\ +\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x69\ +\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\ +\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x43\x54\x68\x65\x20\x65\x6c\x65\x6d\ +\x65\x6e\x74\x20\x6e\x75\x6d\x62\x65\x72\x73\x20\x74\x6f\x20\x65\ +\x78\x63\x6c\x75\x64\x65\x20\x77\x68\x65\x6e\x20\x74\x68\x69\x73\ +\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x69\x73\x20\x62\x61\ +\x73\x65\x64\x20\x6f\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x74\x00\x54\x00\x68\x00\x65\ +\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6e\x00\x75\ +\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\ +\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\ +\x00\x62\x00\x75\x00\x69\x00\x6c\x00\x64\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x72\x00\x6f\x00\x6f\x00\x66\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x3a\x54\x68\x65\x20\x66\x61\x63\x65\ +\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x74\x68\x65\x20\x62\ +\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x75\x73\x65\x64\x20\ +\x74\x6f\x20\x62\x75\x69\x6c\x64\x20\x74\x68\x69\x73\x20\x72\x6f\ +\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x30\x00\x54\x00\x68\x00\x65\x00\x20\x00\x68\x00\x65\x00\x69\x00\ +\x67\x00\x68\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x66\x00\x6c\x00\x6f\x00\x6f\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x54\x68\x65\x20\x68\ +\x65\x69\x67\x68\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x66\x6c\ +\x6f\x6f\x72\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\xb0\x00\x54\x00\x68\x00\x65\x00\x20\x00\x68\x00\x65\x00\x69\ +\x00\x67\x00\x68\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\ +\x00\x2e\x00\x20\x00\x4b\x00\x65\x00\x65\x00\x70\x00\x20\x00\x30\ +\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\ +\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x2e\x00\x20\ +\x00\x4e\x00\x6f\x00\x74\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\ +\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x73\ +\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\ +\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\ +\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x58\x54\x68\x65\x20\ +\x68\x65\x69\x67\x68\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\ +\x61\x6c\x6c\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\x20\ +\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x2e\x20\x4e\x6f\x74\x20\x75\ +\x73\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\ +\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x73\ +\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\xa6\x04\x12\x04\x4b\x04\x41\x04\x3e\x04\x42\x04\x30\x00\ +\x20\x04\x38\x04\x3b\x04\x38\x00\x20\x04\x33\x04\x3b\x04\x43\x04\ +\x31\x04\x38\x04\x3d\x04\x30\x00\x20\x04\x32\x04\x4b\x04\x34\x04\ +\x30\x04\x32\x04\x3b\x04\x38\x04\x32\x04\x30\x04\x3d\x04\x38\x04\ +\x4f\x00\x20\x04\x4d\x04\x3b\x04\x35\x04\x3c\x04\x35\x04\x3d\x04\ +\x42\x04\x30\x00\x2e\x00\x20\x04\x17\x04\x30\x04\x34\x04\x30\x04\ +\x39\x04\x42\x04\x35\x00\x20\x00\x30\x00\x20\x04\x34\x04\x3b\x04\ +\x4f\x00\x20\x04\x30\x04\x32\x04\x42\x04\x3e\x04\x3c\x04\x30\x04\ +\x42\x04\x38\x04\x47\x04\x35\x04\x41\x04\x3a\x04\x3e\x04\x33\x04\ +\x3e\x00\x20\x04\x3e\x04\x3f\x04\x40\x04\x35\x04\x34\x04\x35\x04\ +\x3b\x04\x35\x04\x3d\x04\x38\x04\x4f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x43\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\x6f\x72\ +\x20\x65\x78\x74\x72\x75\x73\x69\x6f\x6e\x20\x64\x65\x70\x74\x68\ +\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\ +\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\x20\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x2a\x04\x18\x04\x3d\x04\x42\x04\x35\x04\x40\x04\ +\x32\x04\x30\x04\x3b\x04\x4b\x00\x20\x04\x3c\x04\x35\x04\x36\x04\ +\x34\x04\x43\x00\x20\x04\x3e\x04\x41\x04\x4f\x04\x3c\x04\x38\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x54\x68\x65\x20\x69\x6e\x74\ +\x65\x72\x76\x61\x6c\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x61\ +\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x14\x04\x14\x04\x3b\x04\x38\x04\x3d\x04\x30\x00\x20\x04\x3e\ +\x04\x41\x04\x35\x04\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\ +\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x74\x68\ +\x65\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x60\x04\x14\x04\x3b\x04\x38\x04\x3d\x04\x30\x00\ +\x20\x04\x4d\x04\x3b\x04\x35\x04\x3c\x04\x35\x04\x3d\x04\x42\x04\ +\x30\x00\x2c\x00\x20\x04\x35\x04\x41\x04\x3b\x04\x38\x00\x20\x04\ +\x3e\x04\x3d\x04\x30\x00\x20\x04\x3d\x04\x35\x00\x20\x04\x3e\x04\ +\x3f\x04\x40\x04\x35\x04\x34\x04\x35\x04\x3b\x04\x35\x04\x3d\x04\ +\x30\x00\x20\x04\x32\x00\x20\x04\x3f\x04\x40\x04\x3e\x04\x44\x04\ +\x38\x04\x3b\x04\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x54\ +\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x74\x68\x69\ +\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\x6e\x6f\ +\x74\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\x72\x6f\ +\x66\x69\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\xa2\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\ +\x72\x00\x6d\x00\x61\x00\x6c\x00\x20\x00\x65\x00\x78\x00\x74\x00\ +\x72\x00\x75\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\ +\x69\x00\x72\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ +\x28\x00\x6b\x00\x65\x00\x65\x00\x70\x00\x20\x00\x28\x00\x30\x00\ +\x2c\x00\x30\x00\x2c\x00\x30\x00\x29\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\ +\x74\x00\x69\x00\x63\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\ +\x61\x00\x6c\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x54\ +\x68\x65\x20\x6e\x6f\x72\x6d\x61\x6c\x20\x65\x78\x74\x72\x75\x73\ +\x69\x6f\x6e\x20\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x6b\x65\ +\x65\x70\x20\x28\x30\x2c\x30\x2c\x30\x29\x20\x66\x6f\x72\x20\x61\ +\x75\x74\x6f\x6d\x61\x74\x69\x63\x20\x6e\x6f\x72\x6d\x61\x6c\x29\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x04\ +\x21\x04\x42\x04\x38\x04\x3b\x04\x4c\x00\x20\x04\x3d\x04\x43\x04\ +\x3c\x04\x35\x04\x40\x04\x30\x04\x46\x04\x38\x04\x38\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\x20\x6e\x75\x6d\x65\x72\ +\x61\x74\x69\x6f\x6e\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\xa6\x00\x54\x00\x68\x00\x65\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\ +\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x6d\x00\x75\ +\x00\x73\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x63\x00\x6f\ +\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\x65\x00\x64\ +\x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x2e\x00\x20\ +\x00\x45\x00\x6d\x00\x70\x00\x74\x00\x79\x00\x20\x00\x6d\x00\x65\ +\x00\x61\x00\x6e\x00\x73\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\ +\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\x54\x68\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x74\x68\x61\x74\x20\x6d\x75\x73\x74\x20\ +\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x62\x79\ +\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\ +\x61\x6e\x65\x2e\x20\x45\x6d\x70\x74\x79\x20\x6d\x65\x61\x6e\x73\ +\x20\x61\x6c\x6c\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\x00\x54\x00\x68\ +\x00\x65\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x6f\ +\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\x00\x78\ +\x00\x69\x00\x73\x00\x20\x00\x62\x00\x75\x00\x62\x00\x62\x00\x6c\ +\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x54\x68\ +\x65\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\ +\x69\x73\x20\x62\x75\x62\x62\x6c\x65\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x62\x04\x28\x04\x38\x04\x40\x04\ +\x38\x04\x3d\x04\x30\x00\x20\x04\x4d\x04\x3b\x04\x35\x04\x3c\x04\ +\x35\x04\x3d\x04\x42\x04\x30\x00\x2c\x00\x20\x04\x35\x04\x41\x04\ +\x3b\x04\x38\x00\x20\x04\x3e\x04\x3d\x04\x30\x00\x20\x04\x3d\x04\ +\x35\x00\x20\x04\x3e\x04\x3f\x04\x40\x04\x35\x04\x34\x04\x35\x04\ +\x3b\x04\x35\x04\x3d\x04\x30\x00\x20\x04\x32\x00\x20\x04\x3f\x04\ +\x40\x04\x3e\x04\x44\x04\x38\x04\x3b\x04\x35\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x34\x54\x68\x65\x20\x77\x69\x64\x74\x68\x20\x6f\ +\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\x20\ +\x69\x66\x20\x6e\x6f\x74\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\ +\x61\x20\x70\x72\x6f\x66\x69\x6c\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x80\x00\x54\x00\x68\x00\x65\x00\x20\ +\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\ +\x00\x6c\x00\x6c\x00\x2e\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x20\ +\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\x00\x69\x00\x66\x00\x20\ +\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\ +\x00\x6c\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\ +\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\ +\x00\x66\x00\x61\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x40\x54\x68\x65\x20\x77\x69\x64\x74\x68\x20\x6f\x66\x20\x74\ +\x68\x69\x73\x20\x77\x61\x6c\x6c\x2e\x20\x4e\x6f\x74\x20\x75\x73\ +\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\ +\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x66\x61\ +\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x0e\x04\x22\x04\x3e\x04\x3b\x04\x49\x04\x38\x04\x3d\x04\x30\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\x68\x69\x63\x6b\x6e\x65\ +\x73\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x3a\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6d\x00\x65\x00\ +\x73\x00\x68\x00\x20\x00\x69\x00\x73\x00\x20\x00\x61\x00\x6e\x00\ +\x20\x00\x69\x00\x6e\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\ +\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1d\x54\x68\x69\x73\x20\x6d\x65\x73\x68\x20\x69\ +\x73\x20\x61\x6e\x20\x69\x6e\x76\x61\x6c\x69\x64\x20\x73\x6f\x6c\ +\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x06\x04\x22\x04\x38\x04\x3f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x54\x79\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x26\x04\x1f\x04\x40\x04\x35\x04\x3e\x04\x31\x04\x40\ +\x04\x30\x04\x37\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x38\x04\x35\ +\x00\x20\x04\x42\x04\x38\x04\x3f\x04\x30\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0f\x54\x79\x70\x65\x20\x63\x6f\x6e\x76\x65\x72\x73\ +\x69\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x30\x04\x1d\x04\x35\x04\x32\x04\x3e\x04\x37\x04\x3c\x04\x3e\ +\x04\x36\x04\x3d\x04\x3e\x00\x20\x04\x41\x04\x3e\x04\x37\x04\x34\ +\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x3a\x04\x40\x04\x4b\x04\x48\ +\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x55\x6e\x61\x62\ +\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x72\ +\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x38\x04\x1d\x04\x35\x00\x20\x04\x43\x04\x34\x04\x30\x04\x35\ +\x04\x42\x04\x41\x04\x4f\x00\x20\x04\x41\x04\x3e\x04\x37\x04\x34\ +\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x3a\x04\x3e\x04\x3c\x04\x3f\ +\x04\x3e\x04\x3d\x04\x35\x04\x3d\x04\x42\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1a\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\ +\x65\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x04\x20\x04\ +\x30\x04\x37\x04\x33\x04\x40\x04\x43\x04\x3f\x04\x3f\x04\x38\x04\ +\x40\x04\x3e\x04\x32\x04\x3a\x04\x30\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0a\x55\x6e\x67\x72\x6f\x75\x70\x69\x6e\x67\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x56\x00\x69\ +\x00\x65\x00\x77\x00\x20\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x07\x56\x69\x65\x77\x20\x6f\x66\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x04\x21\x04\x42\x04\x35\ +\x04\x3d\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\ +\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x1e\x04\x1f\x04\x30\x04\x40\x04\x30\x04\x3c\x04\x35\x04\x42\x04\ +\x40\x04\x4b\x00\x20\x04\x41\x04\x42\x04\x35\x04\x3d\x04\x4b\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x57\x61\x6c\x6c\x20\x6f\x70\ +\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x12\x00\x57\x00\x61\x00\x6c\x00\x6c\x00\x54\x00\x72\ +\x00\x61\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x57\x61\x6c\x6c\x54\x72\x61\x63\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x0c\x04\x28\x04\x38\x04\x40\x04\x38\ +\x04\x3d\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x57\x69\ +\x64\x74\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x08\x04\x1e\x04\x3a\x04\x3d\x04\x3e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x18\x04\x1d\x04\x30\x04\x3f\x04\ +\x40\x04\x30\x04\x32\x04\x3b\x04\x4f\x04\x4e\x04\x49\x04\x38\x04\ +\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x57\x69\x72\x65\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\ +\x5a\x00\x2d\x04\x41\x04\x3c\x04\x35\x04\x49\x04\x35\x04\x3d\x04\ +\x38\x04\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x5a\x20\x6f\ +\x66\x66\x73\x65\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x26\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\ +\x00\x20\x00\x65\x00\x64\x00\x69\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x13\x63\x6c\x6f\x73\x69\x6e\x67\x20\x53\x6b\x65\x74\ +\x63\x68\x20\x65\x64\x69\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x36\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\ +\x00\x69\x00\x6e\x00\x73\x00\x20\x00\x61\x00\x20\x00\x6e\x00\x6f\ +\x00\x6e\x00\x2d\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\ +\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1b\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x61\ +\x20\x6e\x6f\x6e\x2d\x63\x6c\x6f\x73\x65\x64\x20\x73\x6f\x6c\x69\ +\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5a\ +\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x73\ +\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x74\ +\x00\x68\x00\x61\x00\x74\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\ +\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\ +\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2d\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x66\x61\x63\ +\x65\x73\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\ +\x70\x61\x72\x74\x20\x6f\x66\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\ +\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\ +\x04\x3d\x04\x35\x00\x20\x04\x41\x04\x3e\x04\x34\x04\x35\x04\x40\ +\x04\x36\x04\x38\x04\x42\x00\x20\x04\x3a\x04\x30\x04\x3a\x04\x38\ +\x04\x45\x00\x2d\x04\x3b\x04\x38\x04\x31\x04\x3e\x00\x20\x04\x42\ +\x04\x35\x04\x3b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x64\x6f\ +\x65\x73\x6e\x27\x74\x20\x63\x6f\x6e\x74\x61\x69\x6e\x20\x61\x6e\ +\x79\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x2e\x04\x44\x04\x30\x04\x39\x04\x3b\x00\x20\ +\x00\x25\x00\x73\x00\x20\x04\x43\x04\x41\x04\x3f\x04\x35\x04\x48\ +\x04\x3d\x04\x3e\x00\x20\x04\x41\x04\x3e\x04\x37\x04\x34\x04\x30\ +\x04\x3d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x66\x69\ +\x6c\x65\x20\x25\x73\x20\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\ +\x6c\x79\x20\x63\x72\x65\x61\x74\x65\x64\x2e\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x04\x3d\x04\x35\x00\x20\ +\x04\x37\x04\x30\x04\x3c\x04\x3a\x04\x3d\x04\x43\x04\x42\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0d\x69\x73\x20\x6e\x6f\x74\x20\x63\ +\x6c\x6f\x73\x65\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x16\x04\x3d\x04\x35\x00\x20\x04\x3f\x04\x3e\x04\x34\ +\x04\x45\x04\x3e\x04\x34\x04\x38\x04\x42\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x69\x73\x20\x6e\x6f\x74\x20\x76\x61\x6c\x69\x64\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x52\x00\ +\x70\x00\x79\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\ +\x61\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\x6f\x00\ +\x75\x00\x6e\x00\x64\x00\x2c\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\ +\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\ +\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x2e\x00\ +\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x70\x79\x63\x6f\x6c\ +\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\ +\x6e\x6f\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\x6f\ +\x72\x74\x2e\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x64\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\ +\x68\x00\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x76\x00\x6f\x00\ +\x69\x00\x64\x00\x20\x00\x63\x00\x72\x00\x6f\x00\x73\x00\x73\x00\ +\x2d\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\ +\x63\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x32\x72\x65\x6d\x6f\x76\x69\x6e\x67\x20\x73\x6b\x65\x74\x63\x68\ +\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x74\x6f\x20\x61\x76\x6f\x69\ +\x64\x20\x63\x72\x6f\x73\x73\x2d\x72\x65\x66\x65\x72\x65\x6e\x63\ +\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x22\x04\x43\x04\x41\x04\x3f\x04\x35\x04\x48\x04\x3d\x04\x3e\ +\x00\x20\x04\x37\x04\x30\x04\x3f\x04\x38\x04\x41\x04\x30\x04\x3d\ +\x04\x4b\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x73\x75\ +\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x77\x72\x69\x74\x74\ +\x65\x6e\x20\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x2a\x04\x3a\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\ +\x04\x3d\x04\x42\x04\x4b\x00\x20\x04\x4d\x04\x42\x04\x3e\x04\x33\ +\x04\x3e\x00\x20\x04\x3e\x04\x3a\x04\x3d\x04\x30\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1d\x74\x68\x65\x20\x63\x6f\x6d\x70\x6f\x6e\ +\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x69\x6e\ +\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x24\x04\x14\x04\x3e\x04\x31\x04\x30\x04\x32\x04\x38\x04\x42\ +\x04\x4c\x00\x20\x04\x3a\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\ +\x04\x35\x04\x3d\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ +\x41\x64\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\ +\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x66\ +\x04\x14\x04\x3e\x04\x31\x04\x30\x04\x32\x04\x38\x04\x42\x04\x4c\ \x00\x20\x04\x32\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3d\ -\x04\x4b\x04\x35\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\ -\x04\x42\x04\x4b\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\ -\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x62\x75\x69\x6c\x64\x69\ -\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\ -\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ -\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\ -\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x0c\x04\x2f\x04\ -\x47\x04\x35\x04\x39\x04\x3a\x04\x30\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x04\x43\x65\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\ -\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x60\x04\x21\x04\x3e\x04\ -\x37\x04\x34\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x3e\x04\x31\x04\ -\x4a\x04\x35\x04\x3a\x04\x42\x00\x20\x04\x2f\x04\x47\x04\x35\x04\ -\x39\x04\x3a\x04\x30\x00\x2c\x00\x20\x04\x32\x04\x3a\x04\x3b\x04\ -\x4e\x04\x47\x04\x30\x04\x4f\x00\x20\x04\x32\x04\x4b\x04\x31\x04\ -\x40\x04\x30\x04\x3d\x04\x3d\x04\x4b\x04\x35\x00\x20\x04\x3e\x04\ -\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x4b\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\ -\x65\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\ -\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ -\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\ -\x65\x6c\x6c\x01\x03\x00\x00\x00\x5c\x04\x21\x04\x3e\x04\x37\x04\ -\x34\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\ -\x35\x04\x3a\x04\x42\x00\x20\x04\x3f\x04\x3e\x04\x3b\x04\x30\x00\ -\x2c\x00\x20\x04\x32\x04\x3a\x04\x3b\x04\x4e\x04\x47\x04\x30\x04\ -\x4f\x00\x20\x04\x32\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x04\ -\x3d\x04\x4b\x04\x35\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\ -\x3a\x04\x42\x04\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\ -\x72\x65\x61\x74\x65\x73\x20\x61\x20\x66\x6c\x6f\x6f\x72\x20\x6f\ -\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\ -\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\ -\x03\x00\x00\x00\x06\x04\x1f\x04\x3e\x04\x3b\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x0a\x41\ -\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x5c\x04\ -\x12\x04\x3a\x04\x3b\x04\x4e\x04\x47\x04\x38\x04\x42\x04\x4c\x00\ -\x20\x04\x32\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3d\x04\ -\x4b\x04\x35\x00\x20\x04\x41\x04\x35\x04\x42\x04\x3a\x04\x38\x00\ -\x20\x04\x32\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\ -\x42\x04\x4b\x00\x20\x04\x27\x04\x30\x04\x41\x04\x42\x04\x38\x00\ -\x20\x04\x44\x04\x3e\x04\x40\x04\x3c\x04\x4b\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x2d\x54\x75\x72\x6e\x73\x20\x73\x65\x6c\x65\x63\ -\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\ -\x50\x61\x72\x74\x20\x53\x68\x61\x70\x65\x20\x6f\x62\x6a\x65\x63\ -\x74\x73\x07\x00\x00\x00\x0f\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\ -\x54\x6f\x50\x61\x72\x74\x01\x03\x00\x00\x00\x20\x04\x21\x04\x35\ -\x04\x42\x04\x3a\x04\x30\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\ -\x04\x44\x04\x38\x04\x33\x04\x43\x04\x40\x04\x4b\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x74\x6f\x20\x53\x68\ -\x61\x70\x65\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\x65\x73\ -\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x22\x04\x23\ -\x04\x34\x04\x30\x04\x3b\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x3a\ -\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\x04\x42\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\x6d\x6f\x76\x65\ -\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\ -\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\xa0\ +\x04\x4b\x04\x35\x00\x20\x04\x3a\x04\x3e\x04\x3c\x04\x3f\x04\x3e\ +\x04\x3d\x04\x35\x04\x3d\x04\x42\x04\x4b\x00\x20\x04\x34\x04\x3b\ +\x04\x4f\x00\x20\x04\x30\x04\x3a\x04\x42\x04\x38\x04\x32\x04\x3d\ +\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\ +\x04\x3a\x04\x42\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\ +\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x74\x6f\x20\ +\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\ +\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\ +\x00\x00\x00\x06\x04\x1e\x04\x41\x04\x4c\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x41\x78\x69\x73\x07\x00\x00\x00\x09\x41\x72\x63\ +\x68\x5f\x41\x78\x69\x73\x01\x03\x00\x00\x00\x2a\x04\x21\x04\x3e\ +\x04\x37\x04\x34\x04\x30\x04\x35\x04\x42\x00\x20\x04\x41\x04\x38\ +\x04\x41\x04\x42\x04\x35\x04\x3c\x04\x43\x00\x20\x04\x3e\x04\x41\ +\x04\x35\x04\x39\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x78\x69\x73\x20\ +\x73\x79\x73\x74\x65\x6d\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\ +\x5f\x41\x78\x69\x73\x01\x03\x00\x00\x00\x0c\x04\x17\x04\x34\x04\ +\x30\x04\x3d\x04\x38\x04\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x0d\x41\x72\ +\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\ +\x62\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x51\x04\x42\x00\ +\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x00\x20\x04\ +\x37\x04\x34\x04\x30\x04\x3d\x04\x38\x04\x4f\x00\x2c\x00\x20\x04\ +\x32\x04\x3a\x04\x3b\x04\x4e\x04\x47\x04\x30\x04\x4f\x00\x20\x04\ +\x32\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3d\x04\x4b\x04\ +\x35\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\ +\x4b\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x62\x75\x69\x6c\x64\x69\x6e\x67\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x2e\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\ +\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x0c\x04\x2f\x04\x47\x04\x35\ +\x04\x39\x04\x3a\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x43\x65\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\ +\x6c\x6c\x01\x03\x00\x00\x00\x60\x04\x21\x04\x3e\x04\x37\x04\x34\ +\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\ +\x04\x3a\x04\x42\x00\x20\x04\x2f\x04\x47\x04\x35\x04\x39\x04\x3a\ +\x04\x30\x00\x2c\x00\x20\x04\x32\x04\x3a\x04\x3b\x04\x4e\x04\x47\ +\x04\x30\x04\x4f\x00\x20\x04\x32\x04\x4b\x04\x31\x04\x40\x04\x30\ +\x04\x3d\x04\x3d\x04\x4b\x04\x35\x00\x20\x04\x3e\x04\x31\x04\x4a\ +\x04\x35\x04\x3a\x04\x42\x04\x4b\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x65\x6c\x6c\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\ +\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\ +\x01\x03\x00\x00\x00\x12\x04\x1f\x04\x40\x04\x3e\x04\x32\x04\x35\ +\x04\x40\x04\x38\x04\x42\x04\x4c\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x43\x68\x65\x63\x6b\x07\x00\x00\x00\x0a\x41\x72\x63\x68\ +\x5f\x43\x68\x65\x63\x6b\x01\x03\x00\x00\x00\x36\x04\x1f\x04\x40\ +\x04\x3e\x04\x32\x04\x35\x04\x40\x04\x3a\x04\x30\x00\x20\x04\x32\ +\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3d\x04\x4b\x04\x45\ +\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x3e\ +\x04\x32\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x43\x68\x65\x63\ +\x6b\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x6f\x72\x20\x70\x72\x6f\x62\ +\x6c\x65\x6d\x73\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\ +\x65\x63\x6b\x01\x03\x00\x00\x00\x20\x04\x23\x04\x31\x04\x40\x04\ +\x30\x04\x42\x04\x4c\x00\x20\x04\x3e\x04\x42\x04\x32\x04\x35\x04\ +\x40\x04\x41\x04\x42\x04\x38\x04\x4f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0b\x43\x6c\x6f\x73\x65\x20\x68\x6f\x6c\x65\x73\x07\x00\ +\x00\x00\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\ +\x65\x73\x01\x03\x00\x00\x00\x60\x00\x43\x00\x6c\x00\x6f\x00\x73\ +\x00\x65\x00\x73\x00\x20\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x73\ +\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x6e\ +\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x00\x73\x00\x2c\ +\x00\x20\x00\x74\x00\x75\x00\x72\x00\x6e\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x20\x00\x73\x00\x6f\ +\x00\x6c\x00\x69\x00\x64\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x30\x43\x6c\x6f\x73\x65\x73\x20\x68\x6f\x6c\x65\x73\x20\x69\ +\x6e\x20\x6f\x70\x65\x6e\x20\x73\x68\x61\x70\x65\x73\x2c\x20\x74\ +\x75\x72\x6e\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\x73\x6f\x6c\x69\ +\x64\x73\x07\x00\x00\x00\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\ +\x65\x48\x6f\x6c\x65\x73\x01\x03\x00\x00\x00\x5c\x04\x21\x04\x3e\ +\x04\x37\x04\x34\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x3e\x04\x31\ +\x04\x4a\x04\x35\x04\x3a\x04\x42\x00\x20\x04\x3f\x04\x3e\x04\x3b\ +\x04\x30\x00\x2c\x00\x20\x04\x32\x04\x3a\x04\x3b\x04\x4e\x04\x47\ +\x04\x30\x04\x4f\x00\x20\x04\x32\x04\x4b\x04\x31\x04\x40\x04\x30\ +\x04\x3d\x04\x3d\x04\x4b\x04\x35\x00\x20\x04\x3e\x04\x31\x04\x4a\ +\x04\x35\x04\x3a\x04\x42\x04\x4b\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x66\x6c\x6f\x6f\ +\x72\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\ +\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\ +\x6f\x72\x01\x03\x00\x00\x00\x06\x04\x1f\x04\x3e\x04\x3b\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\ +\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\ +\x00\x20\x04\x21\x04\x35\x04\x42\x04\x3a\x04\x30\x00\x20\x04\x34\ +\x04\x3b\x04\x4f\x00\x20\x04\x44\x04\x38\x04\x33\x04\x43\x04\x40\ +\x04\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\ +\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x10\x41\x72\ +\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\ +\x00\x00\x00\x5a\x00\x54\x00\x75\x00\x72\x00\x6e\x00\x73\x00\x20\ +\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\ +\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\ +\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x50\x00\x61\x00\x72\ +\x00\x74\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x2d\x54\x75\x72\x6e\x73\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\ +\x74\x6f\x20\x50\x61\x72\x74\x20\x53\x68\x61\x70\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\ +\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x22\ \x04\x23\x04\x34\x04\x30\x04\x3b\x04\x38\x04\x42\x04\x4c\x00\x20\ -\x04\x32\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3d\x04\x4b\ -\x04\x35\x00\x20\x04\x3a\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\ -\x04\x35\x04\x3d\x04\x42\x04\x4b\x00\x20\x04\x38\x04\x37\x00\x20\ -\x04\x38\x04\x45\x00\x20\x04\x40\x04\x3e\x04\x34\x04\x38\x04\x42\ -\x04\x35\x04\x3b\x04\x35\x04\x39\x00\x2c\x00\x20\x04\x38\x04\x3b\ -\x04\x38\x00\x20\x04\x41\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x42\ -\x04\x4c\x00\x20\x04\x3e\x04\x42\x04\x32\x04\x35\x04\x40\x04\x41\ -\x04\x42\x04\x38\x04\x35\x00\x20\x04\x32\x00\x20\x04\x3a\x04\x3e\ -\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\x04\x42\x04\x35\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x65\x6d\x6f\x76\x65\ -\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\ -\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\ -\x65\x69\x72\x20\x70\x61\x72\x65\x6e\x74\x73\x2c\x20\x6f\x72\x20\ -\x63\x72\x65\x61\x74\x65\x20\x61\x20\x68\x6f\x6c\x65\x20\x69\x6e\ -\x20\x61\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\ +\x04\x3a\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\ +\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\x6d\x6f\ +\x76\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\ \x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\ -\x00\x2a\x04\x23\x04\x34\x04\x30\x04\x3b\x04\x38\x04\x42\x04\x4c\ -\x00\x20\x04\x44\x04\x3e\x04\x40\x04\x3c\x04\x43\x00\x20\x04\x38\ -\x04\x37\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x08\x00\x00\x00\ +\x00\xa0\x04\x23\x04\x34\x04\x30\x04\x3b\x04\x38\x04\x42\x04\x4c\ +\x00\x20\x04\x32\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3d\ +\x04\x4b\x04\x35\x00\x20\x04\x3a\x04\x3e\x04\x3c\x04\x3f\x04\x3e\ +\x04\x3d\x04\x35\x04\x3d\x04\x42\x04\x4b\x00\x20\x04\x38\x04\x37\ +\x00\x20\x04\x38\x04\x45\x00\x20\x04\x40\x04\x3e\x04\x34\x04\x38\ +\x04\x42\x04\x35\x04\x3b\x04\x35\x04\x39\x00\x2c\x00\x20\x04\x38\ +\x04\x3b\x04\x38\x00\x20\x04\x41\x04\x3e\x04\x37\x04\x34\x04\x30\ +\x04\x42\x04\x4c\x00\x20\x04\x3e\x04\x42\x04\x32\x04\x35\x04\x40\ +\x04\x41\x04\x42\x04\x38\x04\x35\x00\x20\x04\x32\x00\x20\x04\x3a\ +\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\x04\x42\ +\x04\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x65\x6d\x6f\ +\x76\x65\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\ +\x74\x68\x65\x69\x72\x20\x70\x61\x72\x65\x6e\x74\x73\x2c\x20\x6f\ +\x72\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x68\x6f\x6c\x65\x20\ +\x69\x6e\x20\x61\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\ +\x00\x00\x00\x38\x04\x23\x04\x34\x04\x30\x04\x3b\x04\x38\x04\x42\ +\x04\x4c\x00\x20\x04\x44\x04\x3e\x04\x40\x04\x3c\x04\x43\x00\x20\ +\x04\x38\x04\x37\x00\x20\x04\x10\x04\x40\x04\x45\x04\x38\x04\x42\ +\x04\x35\x04\x3a\x04\x42\x04\x43\x04\x40\x04\x4b\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x16\x52\x65\x6d\x6f\x76\x65\x20\x53\x68\x61\ \x70\x65\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x07\x00\x00\x00\ \x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\ -\x65\x01\x03\x00\x00\x00\x58\x04\x23\x04\x34\x04\x30\x04\x3b\x04\ +\x65\x01\x03\x00\x00\x00\x66\x04\x23\x04\x34\x04\x30\x04\x3b\x04\ \x4f\x04\x35\x04\x42\x00\x20\x04\x3a\x04\x43\x04\x31\x04\x38\x04\ \x47\x04\x35\x04\x41\x04\x3a\x04\x38\x04\x35\x00\x20\x04\x44\x04\ -\x3e\x04\x40\x04\x3c\x04\x4b\x00\x20\x04\x38\x04\x37\x00\x20\x00\ -\x41\x00\x72\x00\x63\x00\x68\x00\x20\x04\x3a\x04\x3e\x04\x3c\x04\ -\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\x04\x42\x04\x3e\x04\x32\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x29\x52\x65\x6d\x6f\x76\x65\x73\ -\x20\x63\x75\x62\x69\x63\x20\x73\x68\x61\x70\x65\x73\x20\x66\x72\ -\x6f\x6d\x20\x41\x72\x63\x68\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ -\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\ -\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x56\x00\x41\x00\ -\x64\x00\x64\x00\x73\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\ -\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\ -\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x63\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\ -\x65\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\ -\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x41\x64\x64\ -\x73\x20\x61\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\ -\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x74\x68\x65\x20\ -\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\x11\x41\x72\x63\ -\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\ -\x00\x00\x00\x22\x04\x1f\x04\x3b\x04\x3e\x04\x41\x04\x3a\x04\x3e\ -\x04\x41\x04\x42\x04\x4c\x00\x20\x04\x41\x04\x35\x04\x47\x04\x35\ -\x04\x3d\x04\x38\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ -\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\ -\x00\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\ -\x61\x6e\x65\x01\x03\x00\x00\x00\x34\x00\x53\x00\x65\x00\x6c\x00\ -\x65\x00\x63\x00\x74\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\ -\x6d\x00\x61\x00\x6e\x00\x69\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\ -\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x08\x00\x00\ +\x3e\x04\x40\x04\x3c\x04\x4b\x00\x20\x04\x38\x04\x37\x00\x20\x04\ +\x3a\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\x04\ +\x42\x04\x3e\x04\x32\x00\x20\x04\x10\x04\x40\x04\x45\x04\x38\x04\ +\x42\x04\x35\x04\x3a\x04\x42\x04\x43\x04\x40\x04\x4b\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x29\x52\x65\x6d\x6f\x76\x65\x73\x20\x63\ +\x75\x62\x69\x63\x20\x73\x68\x61\x70\x65\x73\x20\x66\x72\x6f\x6d\ +\x20\x41\x72\x63\x68\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\ +\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\ +\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x72\x00\x43\x00\x72\x00\ +\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\ +\x72\x00\x6f\x00\x6f\x00\x66\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x66\x00\x61\x00\ +\x63\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x6e\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x39\x43\x72\x65\x61\x74\x65\x73\x20\x61\ +\x20\x72\x6f\x6f\x66\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\ +\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x66\ +\x61\x63\x65\x20\x6f\x66\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\ +\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\ +\x00\x00\x00\x0a\x04\x1a\x04\x40\x04\x4b\x04\x48\x04\x30\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\ +\x09\x41\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x7c\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\ +\x00\x61\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\ +\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x3e\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ +\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x2c\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\ +\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x07\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\ +\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x22\ +\x04\x1f\x04\x3b\x04\x3e\x04\x41\x04\x3a\x04\x3e\x04\x41\x04\x42\ +\x04\x4c\x00\x20\x04\x41\x04\x35\x04\x47\x04\x35\x04\x3d\x04\x38\ +\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\x63\x74\ +\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x41\x72\ +\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\ +\x03\x00\x00\x00\x38\x04\x12\x04\x4b\x04\x31\x04\x40\x04\x30\x04\ +\x42\x04\x4c\x00\x20\x04\x3d\x04\x35\x00\x2d\x04\x40\x04\x30\x04\ +\x37\x04\x3d\x04\x3e\x04\x40\x04\x3e\x04\x34\x04\x3d\x04\x4b\x04\ +\x35\x00\x20\x04\x41\x04\x35\x04\x42\x04\x3a\x04\x38\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\x6e\x6f\ \x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\ \x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\ \x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\ -\x03\x00\x00\x00\x9a\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ -\x74\x00\x73\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6e\x00\ -\x6f\x00\x6e\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\x66\x00\ -\x6f\x00\x6c\x00\x64\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\ -\x65\x00\x73\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\ -\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\ -\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\ -\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\ -\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\ -\x64\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x73\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x53\x65\x6c\x65\x63\x74\x73\ -\x20\x61\x6c\x6c\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\ -\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\ -\x65\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x20\x6f\x72\x20\x66\x72\ -\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ -\x67\x72\x6f\x75\x70\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\ -\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\ -\x73\x68\x65\x73\x01\x03\x00\x00\x00\x5e\x04\x21\x04\x3e\x04\x37\ -\x04\x34\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x3e\x04\x31\x04\x4a\ -\x04\x35\x04\x3a\x04\x42\x00\x20\x04\x1c\x04\x35\x04\x41\x04\x42\ -\x04\x3e\x00\x2c\x00\x20\x04\x32\x04\x3a\x04\x3b\x04\x4e\x04\x47\ -\x04\x30\x04\x4f\x00\x20\x04\x32\x04\x4b\x04\x31\x04\x40\x04\x30\ -\x04\x3d\x04\x3d\x04\x4b\x04\x35\x00\x20\x04\x3e\x04\x31\x04\x4a\ -\x04\x35\x04\x3a\x04\x42\x04\x4b\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x69\x74\x65\ -\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\ -\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ -\x74\x73\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\ -\x65\x01\x03\x00\x00\x00\x0a\x04\x1c\x04\x35\x04\x41\x04\x42\x04\ -\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\ -\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\ -\x00\x00\x1e\x04\x20\x04\x30\x04\x37\x04\x34\x04\x35\x04\x3b\x04\ -\x38\x04\x42\x04\x4c\x00\x20\x04\x41\x04\x35\x04\x42\x04\x3a\x04\ -\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\ -\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\ -\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\x66\x04\x20\ -\x04\x30\x04\x37\x04\x34\x04\x35\x04\x3b\x04\x38\x04\x42\x04\x4c\ -\x00\x20\x04\x32\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3d\ -\x04\x4b\x04\x35\x00\x20\x04\x41\x04\x35\x04\x42\x04\x3a\x04\x38\ -\x00\x20\x04\x3d\x04\x30\x00\x20\x04\x3d\x04\x35\x04\x37\x04\x30\ -\x04\x32\x04\x38\x04\x41\x04\x38\x04\x3c\x04\x4b\x04\x35\x00\x20\ -\x04\x3a\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\ -\x04\x42\x04\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x53\x70\ -\x6c\x69\x74\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\ -\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x69\x6e\x64\x65\x70\x65\ -\x6e\x64\x65\x6e\x74\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\ -\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\ -\x65\x73\x68\x01\x03\x00\x00\x00\xc8\x04\x21\x04\x3e\x04\x37\x04\ -\x34\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x41\x04\x42\x04\x40\x04\ -\x43\x04\x3a\x04\x42\x04\x43\x04\x40\x04\x43\x00\x20\x04\x3e\x04\ -\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x30\x00\x20\x04\x41\x00\ -\x20\x04\x3d\x04\x43\x04\x3b\x04\x4f\x00\x2c\x00\x20\x04\x3b\x04\ -\x38\x04\x31\x04\x3e\x00\x20\x04\x38\x04\x37\x00\x20\x04\x32\x04\ -\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3d\x04\x3e\x04\x33\x04\ -\x3e\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\ -\x30\x00\x20\x00\x28\x04\x4d\x04\x41\x04\x3a\x04\x38\x04\x37\x04\ -\x30\x00\x2c\x00\x20\x04\x3f\x04\x40\x04\x3e\x04\x32\x04\x3e\x04\ -\x34\x04\x30\x00\x2c\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\x35\x04\ -\x40\x04\x45\x04\x3d\x04\x3e\x04\x41\x04\x42\x04\x38\x00\x20\x04\ -\x38\x04\x3b\x04\x38\x00\x20\x04\x42\x04\x35\x04\x3b\x04\x30\x00\ -\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5f\x43\x72\x65\x61\x74\ -\x65\x73\x20\x61\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\ -\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\ -\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\ -\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x73\x6b\ -\x65\x74\x63\x68\x2c\x20\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\ -\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x0e\x41\ -\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\ -\x00\x00\x12\x04\x21\x04\x42\x04\x40\x04\x43\x04\x3a\x04\x42\x04\ -\x43\x04\x40\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\ -\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x0e\x41\x72\x63\ -\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\ -\xc0\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x42\x04\x4c\x00\ -\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x00\x20\x04\ -\x21\x04\x42\x04\x35\x04\x3d\x04\x30\x00\x20\x04\x38\x04\x37\x00\ -\x20\x04\x3c\x04\x35\x04\x42\x04\x3e\x04\x3a\x00\x20\x04\x38\x04\ -\x3b\x04\x38\x00\x20\x04\x38\x04\x37\x00\x20\x04\x32\x04\x4b\x04\ +\x03\x00\x00\x00\x88\x04\x12\x04\x4b\x04\x31\x04\x40\x04\x30\x04\ +\x42\x04\x4c\x00\x20\x04\x32\x04\x41\x04\x35\x00\x20\x04\x3d\x04\ +\x35\x00\x2d\x04\x40\x04\x30\x04\x37\x04\x3d\x04\x3e\x04\x40\x04\ +\x3e\x04\x34\x04\x3d\x04\x4b\x04\x35\x00\x20\x04\x41\x04\x35\x04\ +\x42\x04\x3a\x04\x38\x00\x20\x04\x38\x04\x37\x00\x20\x04\x34\x04\ +\x3e\x04\x3a\x04\x43\x04\x3c\x04\x35\x04\x3d\x04\x42\x04\x30\x00\ +\x20\x04\x38\x04\x3b\x04\x38\x00\x20\x04\x38\x04\x37\x00\x20\x04\ +\x32\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3d\x04\x4b\x04\ +\x45\x00\x20\x04\x33\x04\x40\x04\x43\x04\x3f\x04\x3f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4d\x53\x65\x6c\x65\x63\x74\x73\x20\x61\ +\x6c\x6c\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\ +\x6d\x65\x73\x68\x65\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\ +\x64\x6f\x63\x75\x6d\x65\x6e\x74\x20\x6f\x72\x20\x66\x72\x6f\x6d\ +\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x67\x72\ +\x6f\x75\x70\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\ +\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\ +\x65\x73\x01\x03\x00\x00\x00\x5e\x04\x21\x04\x3e\x04\x37\x04\x34\ +\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\ +\x04\x3a\x04\x42\x00\x20\x04\x1c\x04\x35\x04\x41\x04\x42\x04\x3e\ +\x00\x2c\x00\x20\x04\x32\x04\x3a\x04\x3b\x04\x4e\x04\x47\x04\x30\ +\x04\x4f\x00\x20\x04\x32\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\ +\x04\x3d\x04\x4b\x04\x35\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\ +\x04\x3a\x04\x42\x04\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x69\x74\x65\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\ +\x03\x00\x00\x00\x0a\x04\x1c\x04\x35\x04\x41\x04\x42\x04\x3e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\x00\x00\ +\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\ +\x1e\x04\x20\x04\x30\x04\x37\x04\x34\x04\x35\x04\x3b\x04\x38\x04\ +\x42\x04\x4c\x00\x20\x04\x41\x04\x35\x04\x42\x04\x3a\x04\x43\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\ +\x65\x73\x68\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\ +\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\x66\x04\x20\x04\x30\ +\x04\x37\x04\x34\x04\x35\x04\x3b\x04\x38\x04\x42\x04\x4c\x00\x20\ +\x04\x32\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3d\x04\x4b\ +\x04\x35\x00\x20\x04\x41\x04\x35\x04\x42\x04\x3a\x04\x38\x00\x20\ +\x04\x3d\x04\x30\x00\x20\x04\x3d\x04\x35\x04\x37\x04\x30\x04\x32\ +\x04\x38\x04\x41\x04\x38\x04\x3c\x04\x4b\x04\x35\x00\x20\x04\x3a\ +\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\x04\x42\ +\x04\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x53\x70\x6c\x69\ +\x74\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\ +\x65\x73\x20\x69\x6e\x74\x6f\x20\x69\x6e\x64\x65\x70\x65\x6e\x64\ +\x65\x6e\x74\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\ +\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\ +\x68\x01\x03\x00\x00\x00\xc8\x04\x21\x04\x3e\x04\x37\x04\x34\x04\ +\x30\x04\x42\x04\x4c\x00\x20\x04\x41\x04\x42\x04\x40\x04\x43\x04\ +\x3a\x04\x42\x04\x43\x04\x40\x04\x43\x00\x20\x04\x3e\x04\x31\x04\ +\x4a\x04\x35\x04\x3a\x04\x42\x04\x30\x00\x20\x04\x41\x00\x20\x04\ +\x3d\x04\x43\x04\x3b\x04\x4f\x00\x2c\x00\x20\x04\x3b\x04\x38\x04\ +\x31\x04\x3e\x00\x20\x04\x38\x04\x37\x00\x20\x04\x32\x04\x4b\x04\ \x31\x04\x40\x04\x30\x04\x3d\x04\x3d\x04\x3e\x04\x33\x04\x3e\x00\ \x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x30\x00\ -\x20\x00\x28\x04\x3f\x04\x40\x04\x3e\x04\x32\x04\x3e\x04\x34\x00\ -\x2c\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\x35\x04\x40\x04\x45\x04\ -\x3d\x04\x3e\x04\x41\x04\x42\x04\x4c\x00\x20\x04\x38\x04\x3b\x04\ -\x38\x00\x20\x04\x42\x04\x32\x04\x35\x04\x40\x04\x34\x04\x4b\x04\ -\x39\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x00\ -\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x43\x72\x65\x61\x74\ -\x65\x73\x20\x61\x20\x77\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\ -\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\ +\x20\x00\x28\x04\x4d\x04\x41\x04\x3a\x04\x38\x04\x37\x04\x30\x00\ +\x2c\x00\x20\x04\x3f\x04\x40\x04\x3e\x04\x32\x04\x3e\x04\x34\x04\ +\x30\x00\x2c\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\x35\x04\x40\x04\ +\x45\x04\x3d\x04\x3e\x04\x41\x04\x42\x04\x38\x00\x20\x04\x38\x04\ +\x3b\x04\x38\x00\x20\x04\x42\x04\x35\x04\x3b\x04\x30\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x5f\x43\x72\x65\x61\x74\x65\x73\ +\x20\x61\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\ +\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x73\x6b\x65\x74\ +\x63\x68\x2c\x20\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\ +\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x0e\x41\x72\x63\ +\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\ +\x12\x04\x21\x04\x42\x04\x40\x04\x43\x04\x3a\x04\x42\x04\x43\x04\ +\x40\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\ +\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\ +\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\xc0\x04\ +\x21\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x42\x04\x4c\x00\x20\x04\ +\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x00\x20\x04\x21\x04\ +\x42\x04\x35\x04\x3d\x04\x30\x00\x20\x04\x38\x04\x37\x00\x20\x04\ +\x3c\x04\x35\x04\x42\x04\x3e\x04\x3a\x00\x20\x04\x38\x04\x3b\x04\ +\x38\x00\x20\x04\x38\x04\x37\x00\x20\x04\x32\x04\x4b\x04\x31\x04\ +\x40\x04\x30\x04\x3d\x04\x3d\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\ +\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x30\x00\x20\x00\ +\x28\x04\x3f\x04\x40\x04\x3e\x04\x32\x04\x3e\x04\x34\x00\x2c\x00\ +\x20\x04\x3f\x04\x3e\x04\x32\x04\x35\x04\x40\x04\x45\x04\x3d\x04\ +\x3e\x04\x41\x04\x42\x04\x4c\x00\x20\x04\x38\x04\x3b\x04\x38\x00\ +\x20\x04\x42\x04\x32\x04\x35\x04\x40\x04\x34\x04\x4b\x04\x39\x00\ +\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x52\x43\x72\x65\x61\x74\x65\x73\ +\x20\x61\x20\x77\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\ +\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\ +\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x66\x61\x63\ +\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x09\ +\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\x0a\x04\ +\x21\x04\x42\x04\x35\x04\x3d\x04\x30\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\ +\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\x94\x00\x43\x00\x72\x00\ +\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\ +\x77\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\ +\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x28\x00\x77\x00\x69\x00\ +\x72\x00\x65\x00\x2c\x00\x20\x00\x72\x00\x65\x00\x63\x00\x74\x00\ +\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x72\x00\ +\x20\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x4a\x43\x72\x65\x61\x74\x65\x73\ +\x20\x61\x20\x77\x69\x6e\x64\x6f\x77\x20\x6f\x62\x6a\x65\x63\x74\ \x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ -\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x66\ -\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\ -\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\ -\x0a\x04\x21\x04\x42\x04\x35\x04\x3d\x04\x30\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\ -\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\xb4\x00\x43\x00\ -\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\ -\x20\x00\x77\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\ -\x72\x00\x6f\x00\x6d\x00\x20\x00\x73\x00\x63\x00\x72\x00\x61\x00\ -\x74\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\ -\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\ -\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x28\x00\x77\x00\ -\x69\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x72\x00\x65\x00\x63\x00\ -\x74\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\ -\x72\x00\x20\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\ -\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5a\x43\x72\x65\x61\x74\ -\x65\x73\x20\x61\x20\x77\x69\x6e\x64\x6f\x77\x20\x6f\x62\x6a\x65\ -\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\ -\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\ -\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\ -\x20\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\x20\x6f\x72\x20\x73\x6b\ -\x65\x74\x63\x68\x29\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\ -\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x08\x04\x1e\x04\x3a\x04\ -\x3d\x04\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\ -\x64\x6f\x77\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\ -\x64\x6f\x77\x01\x03\x00\x00\x00\x3c\x04\x26\x04\x32\x04\x35\x04\ -\x42\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\ -\x3b\x04\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\x00\x20\x04\x34\x04\ -\x3b\x04\x4f\x00\x20\x04\x41\x04\x42\x04\x40\x04\x43\x04\x3a\x04\ -\x42\x04\x43\x04\x40\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x44\ -\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ -\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x73\x07\x00\x00\x00\x1c\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x72\ +\x65\x63\x74\x61\x6e\x67\x6c\x65\x20\x6f\x72\x20\x73\x6b\x65\x74\ +\x63\x68\x29\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\ +\x64\x6f\x77\x01\x03\x00\x00\x00\x08\x04\x1e\x04\x3a\x04\x3d\x04\ +\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\ +\x77\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\ +\x77\x01\x03\x00\x00\x00\x1e\x00\x32\x00\x44\x00\x20\x04\x32\x04\ +\x38\x04\x37\x04\x43\x04\x30\x04\x3b\x04\x38\x04\x37\x04\x30\x04\ +\x46\x04\x38\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x32\ +\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\ \x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ \x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ -\x00\x34\x04\x26\x04\x32\x04\x35\x04\x42\x00\x20\x04\x3f\x04\x3e\ -\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\ -\x04\x38\x04\x4e\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x41\ -\x04\x42\x04\x35\x04\x3d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\ -\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\ -\x72\x20\x77\x61\x6c\x6c\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ +\x00\x58\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x35\x04\x42\ +\x00\x20\x04\x33\x04\x40\x04\x43\x04\x3f\x04\x3f\x04\x4b\x00\x20\ +\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3a\x04\x30\x04\x36\x04\x34\ +\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\ +\x04\x3a\x04\x42\x04\x30\x00\x20\x04\x42\x04\x38\x04\x3f\x04\x30\ +\x00\x20\x04\x30\x04\x40\x04\x3a\x04\x30\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x28\x43\x72\x65\x61\x74\x65\x73\x20\x67\x72\x6f\x75\ +\x70\x73\x20\x66\x6f\x72\x20\x65\x61\x63\x68\x20\x41\x72\x63\x68\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x3c\x00\x43\x00\x75\x00\x74\x00\x20\x00\x61\x00\x72\x00\ +\x65\x00\x61\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x63\x00\x6b\x00\x6e\x00\x65\x00\ +\x73\x00\x73\x00\x20\x00\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x43\x75\x74\x20\x61\x72\x65\ +\x61\x73\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\ +\x73\x20\x72\x61\x74\x69\x6f\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ \x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x04\x1e\ -\x04\x31\x04\x49\x04\x38\x04\x35\x00\x20\x04\x3d\x04\x30\x04\x41\ -\x04\x42\x04\x40\x04\x3e\x04\x39\x04\x3a\x04\x38\x00\x20\x00\x41\ -\x00\x72\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\ -\x47\x65\x6e\x65\x72\x61\x6c\x20\x41\x72\x63\x68\x20\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x04\x1e\x04\x31\ -\x04\x49\x04\x38\x04\x35\x00\x20\x04\x3d\x04\x30\x04\x41\x04\x42\ -\x04\x40\x04\x3e\x04\x39\x04\x3a\x04\x38\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\ -\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x66\x00\x54\x00\x68\x00\ -\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\ -\x65\x00\x20\x00\x64\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\ -\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\ -\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\ -\x53\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\ -\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ -\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x54\x68\x69\x73\x20\ -\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\ -\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x53\x74\x72\ -\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ +\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3c\x04\x26\ +\x04\x32\x04\x35\x04\x42\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\ +\x04\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\ +\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x41\x04\x42\x04\x40\ +\x04\x43\x04\x3a\x04\x42\x04\x43\x04\x40\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1c\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\ +\x72\x20\x66\x6f\x72\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x73\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x34\x04\x26\x04\x32\x04\x35\x04\x42\x00\ +\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\ +\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\x00\x20\x04\x34\x04\x3b\x04\ +\x4f\x00\x20\x04\x41\x04\x42\x04\x35\x04\x3d\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x17\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ +\x6f\x72\x20\x66\x6f\x72\x20\x77\x61\x6c\x6c\x73\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x2c\x04\x26\x04\x32\x04\x35\x04\x42\x00\x20\x04\x3e\x04\ +\x3a\x04\x3e\x04\x3d\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\ +\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x19\x44\x65\x66\x61\x75\x6c\x74\ +\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\x69\x6e\x64\x6f\ +\x77\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x36\x04\x1e\x04\x31\x04\x49\x04\ +\x38\x04\x35\x00\x20\x04\x3d\x04\x30\x04\x41\x04\x42\x04\x40\x04\ +\x3e\x04\x39\x04\x3a\x04\x38\x00\x20\x04\x10\x04\x40\x04\x45\x04\ +\x38\x04\x42\x04\x35\x04\x3a\x04\x42\x04\x43\x04\x40\x04\x4b\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\ +\x20\x41\x72\x63\x68\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\ \x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ \x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ -\x03\x00\x00\x00\x5a\x04\x2d\x04\x42\x04\x3e\x00\x20\x04\x46\x04\ -\x32\x04\x35\x04\x42\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\ -\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\x00\ -\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3d\x04\x3e\x04\x32\x04\ -\x4b\x04\x45\x00\x20\x04\x41\x04\x42\x04\x35\x04\x3d\x00\x2d\x04\ -\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x3e\x04\x32\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x54\x68\x69\x73\x20\x69\x73\ -\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ -\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x57\x61\x6c\x6c\x20\ -\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ +\x03\x00\x00\x00\x1e\x04\x1e\x04\x31\x04\x49\x04\x38\x04\x35\x00\ +\x20\x04\x3d\x04\x30\x04\x41\x04\x42\x04\x40\x04\x3e\x04\x39\x04\ +\x3a\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\ +\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\ +\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x40\x04\x13\x04\x40\x04\x43\x04\x3f\x04\x3f\x04\x38\ +\x04\x40\x04\x3e\x04\x32\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x3a\ +\x04\x3e\x04\x3c\x04\x3f\x04\x3e\x04\x3d\x04\x35\x04\x3d\x04\x42\ +\x04\x4b\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\x42\x04\x38\x04\x3f\ +\x04\x30\x04\x3c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x72\ +\x6f\x75\x70\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x62\ +\x79\x20\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ \x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x41\ -\x00\x72\x00\x63\x00\x68\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\ -\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x41\x72\x63\x68\ -\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ -\x03\x00\x00\x00\x18\x00\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\ -\x74\x00\x65\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0c\x41\x72\x63\x68\x69\x74\x65\x63\x74\ +\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x49\ +\x00\x46\x00\x43\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x49\x46\x43\x20\ +\x69\x6d\x70\x6f\x72\x74\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\xba\x00\x49\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\ +\x64\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x49\x00\ +\x46\x00\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\ +\x65\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x65\x00\x72\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\ +\x64\x00\x2c\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x6f\x00\x77\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x69\x00\ +\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\ +\x72\x00\x65\x00\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\x74\x00\ +\x79\x00\x70\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x5d\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\ +\x53\x68\x65\x6c\x6c\x20\x69\x6d\x70\x6f\x72\x74\x65\x72\x20\x77\ +\x69\x6c\x6c\x20\x62\x65\x20\x75\x73\x65\x64\x2c\x20\x61\x6c\x6c\ +\x6f\x77\x69\x6e\x67\x20\x74\x6f\x20\x69\x6d\x70\x6f\x72\x74\x20\ +\x6d\x6f\x72\x65\x20\x49\x46\x43\x20\x74\x79\x70\x65\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x56\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x00\x20\x00\x66\x00\x75\x00\x72\x00\x6e\x00\x69\x00\x74\x00\ +\x75\x00\x72\x00\x65\x00\x20\x00\x28\x00\x63\x00\x61\x00\x6e\x00\ +\x20\x00\x6d\x00\x61\x00\x6b\x00\x65\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x6c\x00\x20\x00\ +\x68\x00\x65\x00\x61\x00\x76\x00\x79\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2b\x49\x6d\x70\x6f\x72\x74\x20\x66\x75\x72\x6e\ +\x69\x74\x75\x72\x65\x20\x28\x63\x61\x6e\x20\x6d\x61\x6b\x65\x20\ +\x74\x68\x65\x20\x6d\x6f\x64\x65\x6c\x20\x68\x65\x61\x76\x79\x29\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x64\x04\x1e\x04\x42\x04\x3e\x04\x31\x04\ +\x40\x04\x30\x04\x36\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x3e\x04\ +\x42\x04\x3b\x04\x30\x04\x34\x04\x3e\x04\x47\x04\x3d\x04\x43\x04\ +\x4e\x00\x20\x04\x38\x04\x3d\x04\x44\x04\x3e\x04\x40\x04\x3c\x04\ +\x30\x04\x46\x04\x38\x04\x4e\x00\x20\x04\x32\x00\x20\x00\x32\x00\ +\x44\x00\x20\x04\x32\x04\x38\x04\x37\x04\x43\x04\x30\x04\x3b\x04\ +\x38\x04\x37\x04\x30\x04\x46\x04\x38\x04\x38\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2a\x53\x68\x6f\x77\x20\x64\x65\x62\x75\x67\x20\ +\x69\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x20\x64\x75\x72\x69\ +\x6e\x67\x20\x32\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\ +\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x4e\x04\x1f\x04\x3e\x04\x3a\x04\x30\x04\x37\ +\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x41\x04\x3e\x04\x3e\x04\x31\ +\x04\x49\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\x20\x04\x3e\x04\x42\ +\x04\x3b\x04\x30\x04\x34\x04\x3a\x04\x38\x00\x20\x04\x32\x04\x38\ +\x04\x37\x04\x43\x04\x30\x04\x3b\x04\x38\x04\x37\x04\x30\x04\x46\ +\x04\x38\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x53\x68\ +\x6f\x77\x20\x72\x65\x6e\x64\x65\x72\x65\x72\x20\x64\x65\x62\x75\ +\x67\x20\x6d\x65\x73\x73\x61\x67\x65\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x9e\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x69\x00\ +\x65\x00\x73\x00\x20\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x6d\x00\ +\x61\x00\x6e\x00\x79\x00\x20\x00\x74\x00\x69\x00\x6d\x00\x65\x00\ +\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x76\x00\x69\x00\ +\x65\x00\x77\x00\x65\x00\x64\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\ +\x65\x00\x20\x00\x74\x00\x68\x00\x69\x00\x63\x00\x6b\x00\x6e\x00\ +\x65\x00\x73\x00\x73\x00\x20\x00\x6d\x00\x75\x00\x73\x00\x74\x00\ +\x20\x00\x62\x00\x65\x00\x20\x00\x61\x00\x70\x00\x70\x00\x6c\x00\ +\x69\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\ +\x75\x00\x74\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x53\x70\x65\x63\x69\x66\x69\ +\x65\x73\x20\x68\x6f\x77\x20\x6d\x61\x6e\x79\x20\x74\x69\x6d\x65\ +\x73\x20\x74\x68\x65\x20\x76\x69\x65\x77\x65\x64\x20\x6c\x69\x6e\ +\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\x73\x20\x6d\x75\x73\x74\ +\x20\x62\x65\x20\x61\x70\x70\x6c\x69\x65\x64\x20\x74\x6f\x20\x63\ +\x75\x74\x20\x6c\x69\x6e\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x50\x04\ +\x2d\x04\x42\x04\x3e\x00\x20\x04\x46\x04\x32\x04\x35\x04\x42\x00\ +\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\ +\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\x00\x20\x04\x34\x04\x3b\x04\ +\x4f\x00\x20\x04\x3d\x04\x3e\x04\x32\x04\x4b\x04\x45\x00\x20\x04\ +\x41\x04\x42\x04\x40\x04\x43\x04\x3a\x04\x42\x04\x43\x04\x40\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x33\x54\x68\x69\x73\x20\x69\x73\ +\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ +\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x53\x74\x72\x75\x63\ +\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x5a\x04\x2d\x04\x42\x04\x3e\x00\x20\x04\x46\x04\x32\x04\ +\x35\x04\x42\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\x3c\x04\ +\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\x00\x20\x04\ +\x34\x04\x3b\x04\x4f\x00\x20\x04\x3d\x04\x3e\x04\x32\x04\x4b\x04\ +\x45\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\ +\x3e\x04\x32\x00\x20\x04\x41\x04\x42\x04\x35\x04\x3d\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x2e\x54\x68\x69\x73\x20\x69\x73\x20\x74\ +\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\ +\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x57\x61\x6c\x6c\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x55\x00\x73\ +\x00\x65\x00\x20\x00\x49\x00\x46\x00\x43\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\x69\ +\x00\x66\x00\x20\x00\x61\x00\x76\x00\x61\x00\x69\x00\x6c\x00\x61\ +\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\ +\x55\x73\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\ +\x20\x69\x66\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x07\x00\x00\ +\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x18\x00\x26\x04\x10\x04\x40\x04\x45\x04\x38\x04\x42\ +\x04\x35\x04\x3a\x04\x42\x04\x43\x04\x40\x04\x30\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x26\x41\x72\x63\x68\x69\x74\x65\x63\x74\ \x75\x72\x65\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\ -\x00\x0a\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x05\x44\x72\x61\x66\x74\x07\x00\x00\x00\x04\ -\x61\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x44\x00\x72\x00\x61\ -\x00\x66\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x20\ +\x00\x12\x00\x26\x04\x27\x04\x35\x04\x40\x04\x47\x04\x35\x04\x3d\ +\x04\x38\x04\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x26\x44\ +\x72\x61\x66\x74\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\ +\x00\x00\x2e\x04\x18\x04\x3d\x04\x41\x04\x42\x04\x40\x04\x43\x04\ +\x3c\x04\x35\x04\x3d\x04\x42\x04\x4b\x00\x20\x04\x10\x04\x40\x04\ +\x45\x04\x38\x04\x42\x04\x35\x04\x3a\x04\x42\x04\x43\x04\x40\x04\ +\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x41\x72\x63\x68\x20\ \x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\ -\x00\x00\x00\x16\x04\x18\x04\x3d\x04\x41\x04\x42\x04\x40\x04\x43\ -\x04\x3c\x04\x35\x04\x3d\x04\x42\x04\x4b\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x05\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\ -\x63\x68\x01\ +\x00\x00\x00\x26\x04\x21\x04\x40\x04\x35\x04\x34\x04\x41\x04\x42\ +\x04\x32\x04\x30\x00\x20\x04\x32\x04\x4b\x04\x47\x04\x38\x04\x41\ +\x04\x3b\x04\x35\x04\x3d\x04\x38\x04\x4f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x11\x43\x61\x6c\x63\x75\x6c\x61\x74\x69\x6f\x6e\x20\ +\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\ +\x00\x00\x00\x2a\x04\x18\x04\x3d\x04\x41\x04\x42\x04\x40\x04\x43\ +\x04\x3c\x04\x35\x04\x3d\x04\x42\x04\x4b\x00\x20\x04\x3e\x04\x3a\ +\x04\x40\x04\x43\x04\x36\x04\x35\x04\x3d\x04\x38\x04\x4f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x74\x65\x78\x74\x20\ +\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\ +\x00\x00\x00\x34\x04\x18\x04\x3d\x04\x41\x04\x42\x04\x40\x04\x43\ +\x04\x3c\x04\x35\x04\x3d\x04\x42\x04\x4b\x00\x20\x04\x3f\x04\x40\ +\x04\x35\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x37\x04\x3e\x04\x32\ +\x04\x30\x04\x3d\x04\x38\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x10\x43\x6f\x6e\x76\x65\x72\x73\x69\x6f\x6e\x20\x54\x6f\x6f\ +\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\ +\x36\x04\x18\x04\x3d\x04\x41\x04\x42\x04\x40\x04\x43\x04\x3c\x04\ +\x35\x04\x3d\x04\x42\x04\x4b\x00\x20\x04\x40\x04\x35\x04\x36\x04\ +\x38\x04\x3c\x04\x30\x00\x20\x04\x27\x04\x35\x04\x40\x04\x3d\x04\ +\x3e\x04\x32\x04\x38\x04\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0f\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\x20\x74\x6f\x6f\x6c\x73\ +\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x28\x04\ +\x18\x04\x3d\x04\x41\x04\x42\x04\x40\x04\x43\x04\x3c\x04\x35\x04\ +\x3d\x04\x42\x04\x4b\x00\x20\x04\x1f\x04\x40\x04\x3e\x04\x35\x04\ +\x3a\x04\x42\x04\x3e\x04\x32\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0b\x44\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\ +\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x6e\x00\x70\x00\x79\x00\ +\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x04\ +\x3d\x04\x35\x00\x20\x04\x3d\x04\x30\x04\x39\x04\x34\x04\x35\x04\ +\x3d\x00\x2c\x00\x20\x04\x3f\x04\x3e\x04\x34\x04\x34\x04\x35\x04\ +\x40\x04\x36\x04\x3a\x04\x30\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\ +\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x04\x31\x04\x43\x04\x34\x04\ +\x35\x04\x42\x00\x20\x04\x3e\x04\x42\x04\x3a\x04\x3b\x04\x4e\x04\ +\x47\x04\x35\x04\x3d\x04\x30\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x37\x70\x79\x63\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\ +\x20\x66\x6f\x75\x6e\x64\x2c\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\ +\x73\x75\x70\x70\x6f\x72\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\ +\x64\x69\x73\x61\x62\x6c\x65\x64\x2e\x0a\x07\x00\x00\x00\x04\x61\ +\x72\x63\x68\x01\ \x00\x00\x16\x62\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ @@ -4606,6 +19087,8312 @@ qt_resource_data = "\ \x00\x6b\x00\x74\x00\x79\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x05\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\ \x01\ +\x00\x00\x4a\x81\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x04\xf8\x00\x00\x47\xa4\x00\x00\x00\x45\x00\x04\x8e\xc3\ +\x00\x00\x01\x77\x00\x04\x8f\x03\x00\x00\x02\x3a\x00\x04\x8f\x03\ +\x00\x00\x26\x5c\x00\x04\x9c\x2c\x00\x00\x27\xdc\x00\x04\xbb\x04\ +\x00\x00\x08\x02\x00\x05\x48\x35\x00\x00\x0d\x61\x00\x05\x67\xd5\ +\x00\x00\x0f\x99\x00\x05\x96\x56\x00\x00\x0f\xf5\x00\x05\x96\x56\ +\x00\x00\x2f\x5e\x00\x05\xa0\xa5\x00\x00\x10\x1a\x00\x05\xa0\xa5\ +\x00\x00\x32\xd1\x00\x05\xc0\x65\x00\x00\x1d\x7d\x00\x05\xd8\x2c\ +\x00\x00\x1f\x1e\x00\x05\xd8\x2c\x00\x00\x36\x7d\x00\x32\x23\xa5\ +\x00\x00\x42\x7a\x00\x39\xdf\x33\x00\x00\x3b\x1f\x00\x48\x4e\x25\ +\x00\x00\x01\x53\x00\x49\xeb\x9b\x00\x00\x28\xae\x00\x4b\x55\x33\ +\x00\x00\x3c\x51\x00\x4d\x36\x62\x00\x00\x0a\x7f\x00\x4d\x36\x62\ +\x00\x00\x2b\x34\x00\x5d\xfb\xa8\x00\x00\x1f\xb6\x00\x5e\x08\xc3\ +\x00\x00\x20\x0b\x00\x61\xb0\x33\x00\x00\x17\x41\x00\x62\x9b\xa8\ +\x00\x00\x10\xb5\x00\x62\x9b\xa8\x00\x00\x32\xff\x00\x8a\x92\x57\ +\x00\x00\x00\x00\x00\xaa\x80\x25\x00\x00\x07\x5d\x00\xc9\x7b\xf3\ +\x00\x00\x13\x34\x00\xfb\x72\xf3\x00\x00\x3a\xb5\x01\x19\x4e\x85\ +\x00\x00\x05\xdb\x01\x55\x2b\xf5\x00\x00\x05\x42\x01\x79\x17\x94\ +\x00\x00\x23\x04\x01\x8e\x84\xa6\x00\x00\x12\x14\x01\xad\x7d\xe3\ +\x00\x00\x44\x07\x01\xaf\x41\x84\x00\x00\x21\xd6\x01\xf7\xa8\x83\ +\x00\x00\x41\x57\x02\x01\x7f\xd3\x00\x00\x11\x26\x02\x29\xb3\xc4\ +\x00\x00\x2e\xb7\x02\x5a\x4a\x53\x00\x00\x16\x6f\x02\x5f\xc9\x59\ +\x00\x00\x35\x71\x02\x66\x7f\x7e\x00\x00\x0e\x6f\x02\x6a\x77\x99\ +\x00\x00\x3d\x97\x02\x80\x5f\x17\x00\x00\x23\xe3\x02\x82\x88\x3a\ +\x00\x00\x04\x5e\x02\x85\x4f\xf5\x00\x00\x19\x83\x02\x90\x40\x65\ +\x00\x00\x0d\x23\x02\x90\x40\x65\x00\x00\x2b\x5e\x02\x94\x16\x35\ +\x00\x00\x11\x5f\x02\xab\x87\xd4\x00\x00\x42\xb8\x02\xb8\xae\x74\ +\x00\x00\x2c\x4c\x02\xc3\x91\x93\x00\x00\x3f\x04\x02\xcd\x05\xa3\ +\x00\x00\x2b\xa8\x02\xdd\x14\x14\x00\x00\x2c\x9e\x03\x13\x15\x3e\ +\x00\x00\x0b\xad\x03\x1b\xda\x15\x00\x00\x1f\x7c\x03\x1d\xe8\xe3\ +\x00\x00\x39\x56\x03\x29\x7a\x34\x00\x00\x00\xd5\x03\x2c\xe9\xb3\ +\x00\x00\x17\x9e\x03\x92\x51\xe0\x00\x00\x10\x43\x03\xa2\xec\x23\ +\x00\x00\x1f\x41\x03\xbe\xb0\x34\x00\x00\x1e\x44\x03\xce\x98\xe5\ +\x00\x00\x03\xe8\x03\xd4\x22\x74\x00\x00\x25\x6e\x04\x35\xfa\x55\ +\x00\x00\x12\xa9\x04\xc3\x75\x44\x00\x00\x19\xd0\x04\xdb\x21\x3e\ +\x00\x00\x32\x2a\x04\xeb\xfd\xf4\x00\x00\x0a\xd8\x05\x14\x5b\x83\ +\x00\x00\x07\x92\x05\x18\xda\xa3\x00\x00\x2a\x94\x05\x5f\x3d\x83\ +\x00\x00\x3a\x45\x05\x8c\x46\xc5\x00\x00\x0f\xc6\x05\x90\xba\xe3\ +\x00\x00\x0f\x6b\x05\xc0\x56\xe3\x00\x00\x3f\x8d\x05\xc7\xeb\xc7\ +\x00\x00\x3e\x47\x05\xe0\x4b\x67\x00\x00\x1f\xe0\x05\xe0\x4b\x67\ +\x00\x00\x37\x95\x05\xef\x78\x4a\x00\x00\x23\x41\x06\x1f\x6f\xa4\ +\x00\x00\x21\x30\x06\x32\xe3\xe3\x00\x00\x44\x69\x06\x5b\x01\x15\ +\x00\x00\x03\xb9\x06\x69\xd0\x04\x00\x00\x20\xc2\x06\x9f\x6f\xd4\ +\x00\x00\x06\xf9\x06\xd6\x3f\xa4\x00\x00\x22\xc4\x06\xe6\x2f\x43\ +\x00\x00\x12\x5f\x07\x00\xcc\xc4\x00\x00\x3c\x06\x07\x07\x84\xba\ +\x00\x00\x44\xa5\x07\x08\x43\x0e\x00\x00\x26\x84\x07\x16\x58\x05\ +\x00\x00\x38\x22\x07\x25\x74\x53\x00\x00\x29\x83\x07\x28\xff\x15\ +\x00\x00\x0d\xe3\x07\x36\x51\x26\x00\x00\x14\x16\x07\x5c\xdc\x04\ +\x00\x00\x20\x31\x07\x60\x23\xf3\x00\x00\x03\x22\x07\xca\xf8\x87\ +\x00\x00\x37\xc7\x08\x25\x81\xc4\x00\x00\x06\x9e\x08\x4a\x45\xd9\ +\x00\x00\x36\xa5\x08\x65\x4c\x95\x00\x00\x1c\x0a\x08\xc5\xe3\x35\ +\x00\x00\x1b\x59\x08\xca\xc9\x74\x00\x00\x15\x38\x08\xfb\xb8\xa4\ +\x00\x00\x0a\x0c\x09\x69\xac\xa7\x00\x00\x1e\xaf\x09\x6c\x6c\xa7\ +\x00\x00\x0a\xa3\x09\x9f\xcc\xde\x00\x00\x22\x4c\x09\xba\xe6\x35\ +\x00\x00\x10\xf2\x09\xba\xe6\x35\x00\x00\x35\x33\x09\xc5\xbe\xca\ +\x00\x00\x09\x68\x09\xe3\x98\xe4\x00\x00\x25\xb8\x09\xed\x98\x55\ +\x00\x00\x30\x52\x0a\x3e\x06\x83\x00\x00\x04\xd0\x0a\x3f\x1f\xd6\ +\x00\x00\x05\x08\x0a\x3f\x2b\x25\x00\x00\x05\x9d\x0a\x3f\x5d\xac\ +\x00\x00\x06\x24\x0a\x7f\xee\xa3\x00\x00\x42\xe3\x0a\xb6\xc8\x9a\ +\x00\x00\x0b\x03\x0a\xbf\x46\x0e\x00\x00\x1d\xa0\x0a\xd6\x07\x84\ +\x00\x00\x20\x60\x0b\x0a\xc3\xf3\x00\x00\x00\x6b\x0b\x51\x30\xa8\ +\x00\x00\x2d\xac\x0b\x65\xda\xb3\x00\x00\x39\xd3\x0b\x8d\x97\x93\ +\x00\x00\x40\xb5\x0b\x9c\x5b\xe7\x00\x00\x08\xc7\x0b\xb9\xe8\x93\ +\x00\x00\x2e\x13\x0b\xc4\xb1\x23\x00\x00\x28\x0a\x0c\x02\xac\xd7\ +\x00\x00\x02\xf5\x0c\x02\xac\xd7\x00\x00\x26\xf7\x0c\x25\x3e\x53\ +\x00\x00\x31\x29\x0c\x3c\x8b\x33\x00\x00\x43\x28\x0c\x41\x0a\x83\ +\x00\x00\x43\x76\x0c\x4e\x9b\x23\x00\x00\x30\xa5\x0c\x98\x80\x23\ +\x00\x00\x43\xb8\x0c\xc4\xd0\x80\x00\x00\x24\xba\x0c\xdf\x5a\x1e\ +\x00\x00\x01\x9a\x0c\xfc\x97\x06\x00\x00\x1e\xec\x0d\x03\x26\xb4\ +\x00\x00\x02\xa8\x0d\x08\x90\xf3\x00\x00\x1a\xf2\x0d\x1e\xda\xa4\ +\x00\x00\x03\x59\x0d\x3b\x3b\x49\x00\x00\x33\xf9\x0d\xa8\x3a\x35\ +\x00\x00\x17\xe3\x0d\xc1\x7d\x47\x00\x00\x25\x0a\x0d\xfa\x53\xe5\ +\x00\x00\x08\x29\x0e\x69\x87\x13\x00\x00\x2f\x88\x0e\x8c\xd7\x43\ +\x00\x00\x33\x46\x0e\x98\x0a\xd6\x00\x00\x1d\xe8\x0e\xab\x8d\x1f\ +\x00\x00\x38\xc7\x0e\xb9\x1b\xf2\x00\x00\x14\xe7\x0e\xec\x0b\x9e\ +\x00\x00\x27\x2d\x0f\x16\x4a\x24\x00\x00\x1d\x0b\x0f\x17\xc7\xa3\ +\x00\x00\x28\xe2\x0f\x55\xc1\x57\x00\x00\x06\x5c\x0f\x78\x41\x05\ +\x00\x00\x41\xe8\x0f\x79\xe3\xf3\x00\x00\x29\xca\x0f\x95\xd5\x09\ +\x00\x00\x18\x97\x0f\xa2\x16\x43\x00\x00\x1c\xd9\x0f\xc0\xb8\xb4\ +\x00\x00\x0d\x84\x0f\xd0\x39\x44\x00\x00\x02\x5d\x0f\xe5\x74\x74\ +\x00\x00\x00\x9b\x0f\xf3\xe8\x33\x00\x00\x3b\x7e\x69\x00\x00\x45\ +\x6f\x03\x00\x00\x00\x1c\x00\x20\x00\x53\x00\x74\x00\x76\x00\x6f\ +\x00\x72\x00\x69\x00\x20\x00\x7a\x00\x67\x00\x72\x00\x61\x00\x64\ +\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x20\x43\x72\x65\ +\x61\x74\x65\x20\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x44\x00\x6f\x00\ +\x64\x00\x61\x00\x6a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\ +\x64\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x0e\x00\x44\x00\x6f\x00\x64\x00\x61\x00\x74\x00\x63\x00\x69\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x41\x64\x64\x69\x74\x69\x6f\ +\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x18\x00\x50\x00\x6f\x00\x72\x00\x61\x00\x76\x00\x6e\x00\x61\x00\ +\x76\x00\x61\x00\x6e\x00\x6a\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x41\x6c\x69\x67\x6e\x6d\x65\x6e\x74\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4a\x00\x53\x00\x76\x00\ +\x65\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x62\x00\ +\x72\x00\x6f\x00\x21\x00\x20\x00\x50\x00\x72\x00\x6f\x00\x62\x00\ +\x6c\x00\x65\x00\x6d\x00\x69\x00\x20\x00\x6e\x00\x69\x00\x73\x00\ +\x75\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x6e\x00\x61\x01\x11\x00\ +\x65\x00\x6e\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x41\ +\x6c\x6c\x20\x67\x6f\x6f\x64\x21\x20\x6e\x6f\x20\x70\x72\x6f\x62\ +\x6c\x65\x6d\x73\x20\x66\x6f\x75\x6e\x64\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x06\x00\x4b\x00\x75\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x6e\x67\x6c\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x06\x00\x4f\x00\ +\x73\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\x65\ +\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x60\ +\x00\x4b\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x69\x00\x6e\x00\x61\ +\x00\x74\x00\x6e\x00\x69\x00\x20\x00\x73\x00\x75\x00\x73\x00\x74\ +\x00\x61\x00\x76\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x6b\x00\x6f\ +\x00\x6a\x00\x65\x00\x6d\x00\x20\x00\x73\x00\x65\x00\x20\x00\x74\ +\x00\x65\x00\x6d\x00\x65\x00\x6c\x00\x6a\x00\x69\x00\x20\x00\x73\ +\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x72\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x41\x78\x65\x73\x20\x73\ +\x79\x73\x74\x65\x6d\x73\x20\x74\x68\x69\x73\x20\x73\x74\x72\x75\ +\x63\x74\x75\x72\x65\x20\x69\x73\x20\x62\x75\x69\x6c\x74\x20\x6f\ +\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x06\ +\x00\x4f\x00\x73\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x41\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x24\x00\x54\x00\x65\x00\x6d\x00\x65\x00\x6c\x00\x6a\x00\ +\x6e\x00\x69\x00\x20\x00\x32\x00\x44\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0e\x42\x61\x73\x65\x20\x32\x44\x20\x6f\x62\x6a\x65\x63\x74\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x26\x00\x54\ +\x00\x65\x00\x6d\x00\x65\x00\x6c\x00\x6a\x00\x6e\x00\x61\x00\x20\ +\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ +\x00\x74\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x42\x61\ +\x73\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x5a\x00\x67\x00\ +\x72\x00\x61\x00\x64\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x14\x00\x4b\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0a\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\ +\x4b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\ +\x74\x00\x65\x00\x20\x00\x6f\x00\x76\x00\x6f\x00\x67\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x19\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\ +\x4e\x00\x61\x00\x73\x00\x74\x00\x61\x00\x76\x00\x69\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x43\x6f\x6e\x74\x69\x6e\x75\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x4e\ +\x00\x65\x00\x6d\x00\x6f\x00\x67\x00\x75\x01\x07\x00\x65\x00\x20\ +\x00\x70\x00\x72\x00\x6f\x00\x72\x00\x61\x01\x0d\x00\x75\x00\x6e\ +\x00\x61\x00\x74\x00\x69\x00\x20\x00\x6f\x00\x62\x00\x6c\x00\x69\ +\x00\x6b\x00\x20\x00\x7a\x00\x69\x00\x64\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1f\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x63\ +\x6f\x6d\x70\x75\x74\x65\x20\x74\x68\x65\x20\x77\x61\x6c\x6c\x20\ +\x73\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x3c\x00\x4e\x00\x65\x00\x6d\x00\x6f\x00\x67\x00\x75\ +\x01\x07\x00\x65\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x6e\x00\x61\ +\x01\x07\x00\x69\x00\x20\x00\x49\x00\x66\x00\x63\x00\x4f\x00\x70\ +\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x20\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x43\x6f\x75\x6c\x64\x6e\ +\x27\x74\x20\x6c\x6f\x63\x61\x74\x65\x20\x49\x66\x63\x4f\x70\x65\ +\x6e\x53\x68\x65\x6c\x6c\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x14\x00\x4b\x00\x72\x00\x65\x00\x69\x00\x72\ +\x00\x61\x00\x6a\x00\x20\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x41\x78\x69\x73\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x53\ +\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x69\x00\x20\x00\x6b\x00\x72\ +\x00\x6f\x00\x76\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\ +\x65\x61\x74\x65\x20\x52\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x4b\x00\x72\x00\x65\x00\x69\ +\x00\x72\x00\x61\x00\x20\x00\x72\x00\x61\x00\x76\x00\x6e\x00\x69\ +\x00\x6e\x00\x75\x00\x20\x00\x70\x00\x72\x00\x65\x00\x73\x00\x6a\ +\x00\x65\x00\x6b\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\ +\x43\x72\x65\x61\x74\x65\x20\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\ +\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x1a\x00\x53\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x69\x00\ +\x20\x00\x4d\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x6f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x53\x69\ +\x74\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x20\x00\x53\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x69\x00\x20\x00\ +\x53\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x72\x00\ +\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\x74\ +\x65\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x53\x00\x74\x00\x76\ +\x00\x6f\x00\x72\x00\x69\x00\x20\x00\x7a\x00\x69\x00\x64\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x57\ +\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x1c\x00\x4e\x00\x61\x00\x70\x00\x72\x00\x61\x00\x76\x00\x69\ +\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x7a\x00\x6f\x00\x72\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x72\x65\x61\x74\x65\x20\x57\ +\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x2e\x00\x4b\x00\x72\x00\x65\x00\x69\x00\x72\x00\x61\ +\x00\x6a\x00\x20\x00\x6e\x00\x6f\x00\x76\x00\x75\x00\x20\x00\x6b\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\ +\x74\x65\x20\x6e\x65\x77\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\ +\x4b\x00\x72\x00\x65\x00\x69\x00\x72\x00\x61\x00\x6a\x00\x2f\x00\ +\x6f\x00\x73\x00\x76\x00\x6a\x00\x65\x01\x7e\x00\x69\x00\x20\x00\ +\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\ +\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\ +\x61\x74\x65\x2f\x75\x70\x64\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\ +\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x14\x00\x55\x00\x64\x00\x61\x00\x6c\x00\x6a\x00\x65\x00\ +\x6e\x00\x6f\x00\x73\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x36\x00\x55\x00\x64\x00\x61\x00\x6c\ +\x00\x6a\x00\x65\x00\x6e\x00\x6f\x00\x73\x00\x74\x00\x20\x00\x69\ +\x00\x20\x00\x6b\x00\x75\x00\x74\x00\x20\x00\x69\x00\x7a\x00\x6d\ +\x00\x65\x01\x11\x00\x75\x00\x20\x00\x6f\x00\x73\x00\x69\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x21\x44\x69\x73\x74\x61\x6e\x63\x65\ +\x73\x20\x61\x6e\x64\x20\x61\x6e\x67\x6c\x65\x73\x20\x62\x65\x74\ +\x77\x65\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x55\x00\x72\x00\x65\x00\x64\ +\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5e\x00\ +\x50\x00\x6f\x00\x67\x00\x72\x00\x65\x01\x61\x00\x6b\x00\x61\x00\ +\x20\x00\x70\x00\x72\x00\x69\x00\x6c\x00\x69\x00\x6b\x00\x6f\x00\ +\x6d\x00\x20\x00\x75\x00\x6b\x00\x6c\x00\x61\x00\x6e\x00\x6a\x00\ +\x61\x00\x6e\x00\x6a\x00\x61\x00\x20\x00\x64\x00\x6a\x00\x65\x00\ +\x6c\x00\x69\x00\x74\x00\x65\x00\x6c\x00\x6a\x00\x61\x00\x20\x00\ +\x6f\x00\x64\x00\x20\x00\x7a\x00\x69\x00\x64\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x27\x45\x72\x72\x6f\x72\x20\x72\x65\x6d\ +\x6f\x76\x69\x6e\x67\x20\x73\x70\x6c\x69\x74\x74\x65\x72\x20\x66\ +\x72\x6f\x6d\x20\x77\x61\x6c\x6c\x20\x73\x68\x61\x70\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5c\x00\x47\x00\ +\x72\x00\x65\x01\x61\x00\x6b\x00\x61\x00\x3a\x00\x20\x00\x4e\x00\ +\x69\x00\x6a\x00\x65\x00\x20\x00\x6d\x00\x6f\x00\x67\x00\x75\x01\ +\x07\x00\x65\x00\x20\x00\x6f\x00\x64\x00\x72\x00\x65\x00\x64\x00\ +\x69\x00\x74\x00\x69\x00\x20\x00\x6e\x00\x61\x01\x0d\x00\x69\x00\ +\x6e\x00\x20\x00\x65\x00\x6e\x00\x6b\x00\x6f\x00\x64\x00\x69\x00\ +\x72\x00\x61\x00\x6e\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2c\x45\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\x6e\ +\x27\x74\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\x61\ +\x72\x61\x63\x74\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5e\x00\x47\ +\x00\x72\x00\x65\x01\x61\x00\x6b\x00\x61\x00\x3a\x00\x20\x00\x4e\ +\x00\x69\x00\x6a\x00\x65\x00\x20\x00\x6d\x00\x6f\x00\x67\x00\x75\ +\x01\x07\x00\x65\x00\x20\x00\x6f\x00\x64\x00\x72\x00\x65\x00\x64\ +\x00\x69\x00\x74\x00\x69\x00\x20\x00\x6e\x00\x61\x01\x0d\x00\x69\ +\x00\x6e\x00\x20\x00\x65\x00\x6e\x00\x6b\x00\x6f\x00\x64\x00\x69\ +\x00\x72\x00\x61\x00\x6e\x00\x6a\x00\x61\x00\x0a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x2d\x45\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\ +\x6c\x64\x6e\x27\x74\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\ +\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\ +\x6e\x67\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x40\x00\x47\x00\x72\x00\x65\x01\x61\x00\x6b\x00\x61\x00\x3a\ +\x00\x20\x00\x4e\x00\x61\x00\x76\x00\x61\x00\x6c\x00\x6a\x00\x61\ +\x00\x6e\x00\x20\x00\x74\x00\x65\x00\x6d\x00\x65\x00\x6c\x00\x6a\ +\x00\x6e\x00\x69\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x45\x72\x72\x6f\ +\x72\x3a\x20\x49\x6e\x76\x61\x6c\x69\x64\x20\x62\x61\x73\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x06\x00\x4b\x00\x61\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x47\x00\x72\x00\x75\x00\ +\x70\x00\x69\x00\x72\x00\x61\x00\x6e\x00\x6a\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x47\x72\x6f\x75\x70\x69\x6e\x67\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x56\ +\x00\x69\x00\x73\x00\x69\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x48\x65\x69\x67\x68\x74\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x66\x00\x49\x00\x46\x00\x43\x00\ +\x20\x00\x53\x00\x63\x00\x68\x00\x65\x00\x6d\x00\x61\x00\x20\x00\ +\x6e\x00\x69\x00\x6a\x00\x65\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x6e\x00\x61\x01\x11\x00\x65\x00\x6e\x00\x61\x00\x2c\x00\x20\x00\ +\x49\x00\x46\x00\x43\x00\x20\x00\x75\x00\x76\x00\x6f\x00\x7a\x00\ +\x20\x00\x6a\x00\x65\x00\x20\x00\x6f\x00\x6e\x00\x65\x00\x6d\x00\ +\x6f\x00\x67\x00\x75\x01\x07\x00\x65\x00\x6e\x00\x2e\x00\x20\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\x46\x43\x20\x53\x63\x68\ +\x65\x6d\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x49\ +\x46\x43\x20\x69\x6d\x70\x6f\x72\x74\x20\x64\x69\x73\x61\x62\x6c\ +\x65\x64\x2e\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\xf4\x00\x41\x00\x6b\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\ +\x20\x00\x69\x00\x73\x00\x74\x00\x69\x00\x6e\x00\x69\x00\x74\x00\ +\x6f\x00\x20\x00\x69\x00\x20\x00\x61\x00\x6b\x00\x6f\x00\x20\x00\ +\x6a\x00\x65\x00\x20\x00\x6f\x00\x76\x00\x61\x00\x6a\x00\x20\x00\ +\x7a\x00\x69\x00\x64\x00\x20\x00\x62\x00\x69\x00\x6f\x00\x20\x00\ +\x74\x00\x65\x00\x6d\x00\x65\x00\x6c\x00\x6a\x00\x65\x00\x6e\x00\ +\x20\x00\x6e\x00\x61\x00\x20\x00\x70\x00\x6c\x00\x6f\x00\x68\x00\ +\x69\x00\x2c\x00\x20\x00\x6b\x00\x6f\x00\x72\x00\x69\x00\x73\x00\ +\x74\x00\x69\x00\x74\x00\x69\x00\x20\x01\x07\x00\x65\x00\x20\x00\ +\x73\x00\x65\x00\x20\x00\x72\x00\x75\x00\x62\x00\x6e\x00\x65\x00\ +\x20\x01\x7e\x00\x69\x00\x63\x00\x65\x00\x20\x00\x6b\x00\x61\x00\ +\x6f\x00\x20\x00\x70\x00\x75\x00\x74\x00\x61\x00\x6e\x00\x6a\x00\ +\x61\x00\x2c\x00\x20\x00\x61\x00\x20\x00\x70\x00\x6c\x00\x6f\x00\ +\x68\x00\x61\x00\x20\x01\x07\x00\x65\x00\x20\x00\x73\x00\x65\x00\ +\x20\x00\x7a\x00\x61\x00\x6e\x00\x65\x00\x6d\x00\x61\x00\x72\x00\ +\x69\x00\x74\x00\x69\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x69\x49\x66\x20\x54\x72\x75\x65\x2c\x20\x69\x66\x20\x74\x68\x69\ +\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\ +\x6f\x6e\x20\x61\x20\x66\x61\x63\x65\x2c\x20\x69\x74\x20\x77\x69\ +\x6c\x6c\x20\x75\x73\x65\x20\x69\x74\x73\x20\x62\x6f\x72\x64\x65\ +\x72\x20\x77\x69\x72\x65\x20\x61\x73\x20\x74\x72\x61\x63\x65\x2c\ +\x20\x61\x6e\x64\x20\x64\x69\x73\x63\x6f\x6e\x73\x69\x64\x65\x72\ +\x20\x74\x68\x65\x20\x66\x61\x63\x65\x2e\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x4d\x00\x65\x00\x73\x00\ +\x68\x00\x20\x00\x75\x00\x20\x00\x6f\x00\x62\x00\x6c\x00\x69\x00\ +\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\ +\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x06\x00\x49\x00\x6d\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x4e\x61\x6d\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\x4e\x00\x65\x00\x6d\ +\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x6b\x00\x74\ +\x00\x69\x00\x72\x00\x61\x00\x6e\x00\x69\x00\x68\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x61\x00\x74\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x12\x4e\x6f\x20\x6f\x62\x6a\x65\x63\ +\x74\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x54\x00\x4e\x00\x69\x00\x20\x00\ +\x6a\x00\x65\x00\x64\x00\x61\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x6e\x00\x69\x00\x6a\x00\ +\x65\x00\x20\x00\x70\x00\x72\x00\x65\x00\x73\x00\x6a\x00\x65\x01\ +\x0d\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x61\x00\x20\x00\x72\x00\ +\x61\x00\x76\x00\x6e\x00\x69\x00\x6e\x00\x6f\x00\x6d\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1f\x4e\x6f\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x61\x72\x65\x20\x63\x75\x74\x20\x62\x79\x20\x74\x68\x65\ +\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x98\x00\x4f\x00\x62\x00\x6c\x00\x69\x00\x6b\x00\ +\x20\x00\x6a\x00\x6f\x01\x61\x00\x20\x00\x6e\x00\x69\x00\x6a\x00\ +\x65\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x72\x00\x61\x01\x0d\x00\ +\x75\x00\x6e\x00\x61\x00\x74\x00\x2c\x00\x20\x00\x6f\x00\x64\x00\ +\x61\x00\x62\x00\x65\x00\x72\x00\x69\x00\x20\x00\x22\x00\x77\x00\ +\x69\x00\x72\x00\x65\x00\x66\x00\x72\x00\x61\x00\x6d\x00\x65\x00\ +\x22\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\ +\x69\x00\x72\x00\x61\x00\x6e\x00\x6a\x00\x65\x00\x20\x00\x69\x00\ +\x20\x00\x70\x00\x6f\x00\x6b\x00\x75\x01\x61\x00\x61\x00\x6a\x00\ +\x20\x00\x70\x00\x6f\x00\x6e\x00\x6f\x00\x76\x00\x6f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4b\x4e\x6f\x20\x73\x68\x61\x70\x65\x20\ +\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x63\x6f\x6d\x70\x75\x74\x65\ +\x64\x20\x79\x65\x74\x2c\x20\x73\x65\x6c\x65\x63\x74\x20\x77\x69\ +\x72\x65\x66\x72\x61\x6d\x65\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\ +\x67\x20\x61\x6e\x64\x20\x72\x65\x6e\x64\x65\x72\x20\x61\x67\x61\ +\x69\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x0e\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x07\x4f\x62\x6a\x65\x63\x74\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\ +\x53\x00\x74\x00\x72\x00\x61\x00\x6e\x00\x69\x00\x63\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x50\x61\x67\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x55\x00\x6b\ +\x00\x6c\x00\x6f\x00\x6e\x00\x69\x00\x74\x00\x69\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x52\x65\x6d\x6f\x76\x65\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x4b\x00\x72\x00\ +\x6f\x00\x76\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\ +\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\ +\x00\x4d\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x40\x00\x50\x00\x72\x00\x65\x00\ +\x73\x00\x6b\x00\x61\x00\x6b\x00\x61\x00\x6e\x00\x6a\x00\x65\x00\ +\x20\x00\x6e\x00\x65\x00\x70\x00\x72\x00\x61\x00\x69\x00\x6c\x00\ +\x6e\x00\x6f\x00\x67\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x61\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x19\x53\x6b\x69\x70\x70\x69\x6e\x67\x20\x69\x6e\x76\x61\ +\x6c\x69\x64\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x50\x00\x6f\x00\ +\x64\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\x69\x00\x20\x00\x4d\x00\ +\x65\x00\x73\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\ +\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x12\x00\x53\x00\x74\x00\x72\x00\x75\ +\x00\x6b\x00\x74\x00\x75\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x4f\x00\x64\ +\x00\x75\x00\x7a\x00\x69\x00\x6d\x00\x61\x00\x6e\x00\x6a\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x75\x62\x74\x72\x61\ +\x63\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x60\x00\x50\x00\x6f\x00\x72\x00\x61\x00\x76\x00\ +\x6e\x00\x61\x00\x76\x00\x61\x00\x6e\x00\x6a\x00\x65\x00\x20\x00\ +\x7a\x00\x69\x00\x64\x00\x61\x00\x20\x00\x6e\x00\x61\x00\x20\x00\ +\x6e\x00\x6a\x00\x65\x00\x67\x00\x6f\x00\x76\x00\x75\x00\x20\x00\ +\x62\x00\x61\x00\x7a\x00\x75\x00\x2c\x00\x20\x00\x61\x00\x6b\x00\ +\x6f\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x6d\x00\x6f\x00\x67\x00\ +\x75\x01\x07\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3c\x54\ +\x68\x65\x20\x61\x6c\x69\x67\x6e\x6d\x65\x6e\x74\x20\x6f\x66\x20\ +\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x6f\x6e\x20\x69\x74\x73\ +\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x69\x66\ +\x20\x61\x70\x70\x6c\x69\x63\x61\x62\x6c\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x00\x4b\x00\x75\x00\x74\ +\x00\x20\x00\x6f\x00\x76\x00\x6f\x00\x67\x00\x20\x00\x6b\x00\x72\ +\x00\x6f\x00\x76\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\ +\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\x20\x6f\x66\x20\x74\x68\x69\ +\x73\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x1a\x00\x6b\x00\x75\x00\x74\x00\x20\x00\x73\x00\ +\x76\x00\x61\x00\x6b\x00\x65\x00\x20\x00\x6f\x00\x73\x00\x69\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x17\x54\x68\x65\x20\x61\x6e\x67\ +\x6c\x65\x73\x20\x6f\x66\x20\x65\x61\x63\x68\x20\x61\x78\x69\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4c\x00\ +\x56\x00\x65\x00\x6c\x00\x69\x01\x0d\x00\x69\x00\x6e\x00\x61\x00\ +\x20\x00\x70\x00\x72\x00\x69\x00\x6b\x00\x61\x00\x7a\x00\x61\x00\ +\x20\x00\x6f\x00\x76\x00\x6f\x00\x65\x00\x20\x00\x72\x00\x61\x00\ +\x76\x00\x6e\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x70\x00\x72\x00\ +\x65\x00\x73\x00\x6a\x00\x65\x00\x6b\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x26\x54\x68\x65\x20\x64\x69\x73\x70\x6c\x61\x79\ +\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x73\x65\ +\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x86\x00\x42\x00\x72\x00\x6f\ +\x00\x6a\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\ +\x00\x61\x00\x74\x00\x61\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x7a\ +\x00\x61\x00\x6e\x00\x65\x00\x6d\x00\x61\x00\x72\x00\x69\x00\x74\ +\x00\x69\x00\x20\x00\x6b\x00\x61\x00\x64\x00\x61\x00\x20\x00\x73\ +\x00\x65\x00\x20\x00\x6f\x00\x76\x00\x61\x00\x20\x00\x73\x00\x74\ +\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x72\x00\x61\x00\x20\ +\x00\x74\x00\x65\x00\x6d\x00\x65\x00\x6c\x00\x6a\x00\x69\x00\x20\ +\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\x73\x00\x69\x00\x6d\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\x54\x68\x65\x20\x65\x6c\ +\x65\x6d\x65\x6e\x74\x20\x6e\x75\x6d\x62\x65\x72\x73\x20\x74\x6f\ +\x20\x65\x78\x63\x6c\x75\x64\x65\x20\x77\x68\x65\x6e\x20\x74\x68\ +\x69\x73\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x69\x73\x20\ +\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x78\x65\x73\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x7e\x00\x42\x00\x72\ +\x00\x6f\x00\x6a\x00\x20\x00\x70\x00\x6c\x00\x6f\x00\x68\x00\x65\ +\x00\x20\x00\x62\x00\x61\x00\x7a\x00\x6e\x00\x6f\x00\x67\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x61\x00\x20\ +\x00\x6b\x00\x6f\x00\x6a\x00\x69\x00\x20\x00\x6a\x00\x65\x00\x20\ +\x00\x6b\x00\x6f\x00\x72\x00\x69\x01\x61\x00\x74\x00\x65\x00\x6e\ +\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x69\x00\x7a\x00\x72\x00\x61\ +\x00\x64\x00\x75\x00\x20\x00\x6f\x00\x76\x00\x6f\x00\x67\x00\x20\ +\x00\x6b\x00\x72\x00\x6f\x00\x76\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x3a\x54\x68\x65\x20\x66\x61\x63\x65\x20\x6e\x75\x6d\ +\x62\x65\x72\x20\x6f\x66\x20\x74\x68\x65\x20\x62\x61\x73\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x62\ +\x75\x69\x6c\x64\x20\x74\x68\x69\x73\x20\x72\x6f\x6f\x66\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x20\x00\x56\x00\ +\x69\x00\x73\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\x76\x00\ +\x6f\x00\x67\x00\x20\x00\x70\x00\x6f\x00\x64\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x18\x54\x68\x65\x20\x68\x65\x69\x67\x68\ +\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x66\x6c\x6f\x6f\x72\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xc6\x00\x56\ +\x00\x69\x00\x73\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\x76\ +\x00\x6f\x00\x67\x00\x20\x00\x7a\x00\x69\x00\x64\x00\x61\x00\x2e\ +\x00\x20\x00\x4f\x00\x73\x00\x74\x00\x61\x00\x76\x00\x69\x00\x20\ +\x00\x30\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x61\x00\x75\x00\x74\ +\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x73\x00\x6b\x00\x69\x00\x20\ +\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x69\x00\x72\x00\x2e\x00\x20\ +\x00\x4e\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x72\x00\x69\x00\x73\ +\x00\x74\x00\x69\x00\x20\x00\x73\x00\x65\x00\x20\x00\x61\x00\x6b\ +\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x20\x00\x7a\x00\x69\x00\x64\ +\x00\x20\x00\x74\x00\x65\x00\x6d\x00\x65\x00\x6c\x00\x6a\x00\x69\ +\x00\x20\x00\x6e\x00\x61\x00\x20\x01\x0d\x00\x76\x00\x72\x00\x73\ +\x00\x74\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x69\x00\x6a\x00\x65\ +\x00\x6c\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x58\x54\x68\ +\x65\x20\x68\x65\x69\x67\x68\x74\x20\x6f\x66\x20\x74\x68\x69\x73\ +\x20\x77\x61\x6c\x6c\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\ +\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x2e\x20\x4e\x6f\x74\ +\x20\x75\x73\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\ +\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\ +\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x76\x00\x56\x00\x69\x00\x73\x00\x69\x00\x6e\x00\ +\x61\x00\x20\x00\x69\x00\x6c\x00\x69\x00\x20\x00\x65\x00\x6b\x00\ +\x73\x00\x74\x00\x72\x00\x75\x00\x7a\x00\x69\x00\x6a\x00\x61\x00\ +\x20\x00\x6f\x00\x76\x00\x6f\x00\x67\x00\x20\x00\x65\x00\x6c\x00\ +\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x2e\x00\x20\x00\ +\x4f\x00\x73\x00\x74\x00\x61\x00\x76\x00\x69\x00\x20\x00\x30\x00\ +\x20\x00\x7a\x00\x61\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\ +\x6d\x00\x61\x00\x74\x00\x73\x00\x6b\x00\x69\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x43\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\ +\x6f\x72\x20\x65\x78\x74\x72\x75\x73\x69\x6f\x6e\x20\x64\x65\x70\ +\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\ +\x6e\x74\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\x20\x61\ +\x75\x74\x6f\x6d\x61\x74\x69\x63\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x2a\x00\x69\x00\x69\x00\x6e\x00\x74\x00\ +\x65\x00\x72\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x20\x00\x69\x00\ +\x7a\x00\x6d\x00\x65\x01\x11\x00\x75\x00\x20\x00\x6f\x00\x73\x00\ +\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x54\x68\x65\x20\x69\ +\x6e\x74\x65\x72\x76\x61\x6c\x73\x20\x62\x65\x74\x77\x65\x65\x6e\ +\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x16\x00\x44\x00\x75\x00\x6c\x00\x6a\x00\x69\x00\x6e\ +\x00\x61\x00\x20\x00\x6f\x00\x73\x00\x69\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x16\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\ +\x66\x20\x74\x68\x65\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x66\x00\x44\x00\x75\x00\x6c\x00\ +\x6a\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\x76\x00\x6f\x00\ +\x67\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x61\x00\x2c\x00\x20\x00\x61\x00\x6b\x00\x6f\x00\x20\x00\ +\x73\x00\x65\x00\x20\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x65\x00\ +\x6d\x00\x65\x00\x6c\x00\x6a\x00\x69\x00\x20\x00\x6e\x00\x61\x00\ +\x20\x00\x70\x00\x72\x00\x6f\x00\x66\x00\x69\x00\x6c\x00\x75\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x35\x54\x68\x65\x20\x6c\x65\x6e\ +\x67\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\ +\x65\x6e\x74\x2c\x20\x69\x66\x20\x6e\x6f\x74\x20\x62\x61\x73\x65\ +\x64\x20\x6f\x6e\x20\x61\x20\x70\x72\x6f\x66\x69\x6c\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x82\x00\x4e\x00\ +\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x61\x00\x20\x00\x7a\x00\ +\x61\x00\x20\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x72\x00\x75\x00\ +\x7a\x00\x69\x00\x6a\x00\x75\x00\x20\x00\x6f\x00\x76\x00\x6f\x00\ +\x67\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x61\x00\x20\x00\x28\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x76\x00\ +\x69\x00\x20\x00\x28\x00\x30\x00\x2c\x00\x30\x00\x2c\x00\x30\x00\ +\x29\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x61\x00\x75\x00\x74\x00\ +\x6f\x00\x6d\x00\x61\x00\x74\x00\x73\x00\x6b\x00\x6f\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x51\x54\x68\x65\x20\x6e\x6f\x72\ +\x6d\x61\x6c\x20\x65\x78\x74\x72\x75\x73\x69\x6f\x6e\x20\x64\x69\ +\x72\x65\x63\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x28\x6b\x65\x65\x70\x20\x28\x30\x2c\ +\x30\x2c\x30\x29\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\ +\x69\x63\x20\x6e\x6f\x72\x6d\x61\x6c\x29\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x20\x00\x53\x00\x74\x00\x69\x00\ +\x6c\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x65\x00\x72\x00\x69\x00\ +\x72\x00\x61\x00\x6e\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x14\x54\x68\x65\x20\x6e\x75\x6d\x65\x72\x61\x74\x69\x6f\ +\x6e\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\xb6\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x69\x00\x20\x00\x6b\x00\x6f\x00\x6a\x00\x69\x00\x20\ +\x00\x6d\x00\x6f\x00\x72\x00\x61\x00\x6a\x00\x75\x00\x20\x00\x62\ +\x00\x69\x00\x74\x00\x69\x00\x20\x00\x72\x00\x61\x00\x7a\x00\x6d\ +\x00\x6f\x00\x74\x00\x72\x00\x65\x00\x6e\x00\x69\x00\x20\x00\x73\ +\x00\x61\x00\x20\x00\x6f\x00\x76\x00\x69\x00\x6f\x00\x6d\x00\x20\ +\x00\x72\x00\x61\x00\x76\x00\x6e\x00\x69\x00\x6e\x00\x6f\x00\x6d\ +\x00\x20\x00\x70\x00\x72\x00\x65\x00\x73\x00\x6a\x00\x65\x00\x6b\ +\x00\x61\x00\x2e\x00\x20\x00\x50\x00\x72\x00\x61\x00\x7a\x00\x6e\ +\x00\x6f\x00\x20\x00\x72\x00\x61\x00\x7a\x00\x6d\x00\x61\x00\x74\ +\x00\x72\x00\x61\x00\x20\x00\x73\x00\x76\x00\x65\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x53\x54\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x74\x68\x61\x74\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x63\ +\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x62\x79\x20\x74\x68\x69\ +\x73\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x2e\ +\x20\x45\x6d\x70\x74\x79\x20\x6d\x65\x61\x6e\x73\x20\x61\x6c\x6c\ +\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x32\x00\x56\x00\x65\x00\x6c\x00\x69\ +\x01\x0d\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x6d\x00\x6a\x00\x65\ +\x00\x68\x00\x75\x00\x72\x00\x69\x01\x07\x00\x61\x00\x20\x00\x6e\ +\x00\x61\x00\x20\x00\x6f\x00\x73\x00\x69\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1c\x54\x68\x65\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\ +\x74\x68\x65\x20\x61\x78\x69\x73\x20\x62\x75\x62\x62\x6c\x65\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x64\x01\ +\x60\x00\x69\x00\x72\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\ +\x76\x00\x6f\x00\x67\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x61\x00\x2c\x00\x20\x00\x61\x00\x6b\x00\ +\x6f\x00\x20\x00\x73\x00\x65\x00\x20\x00\x6e\x00\x65\x00\x20\x00\ +\x74\x00\x65\x00\x6d\x00\x65\x00\x6c\x00\x6a\x00\x69\x00\x20\x00\ +\x6e\x00\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x66\x00\x69\x00\ +\x6c\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x54\x68\x65\ +\x20\x77\x69\x64\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\ +\x6c\x65\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\x6e\x6f\x74\x20\x62\ +\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\x72\x6f\x66\x69\x6c\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x76\ +\x01\x60\x00\x69\x00\x72\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x6f\ +\x00\x76\x00\x6f\x00\x67\x00\x20\x00\x7a\x00\x69\x00\x64\x00\x61\ +\x00\x2e\x00\x20\x00\x4e\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x72\ +\x00\x69\x00\x73\x00\x74\x00\x69\x00\x20\x00\x73\x00\x65\x00\x20\ +\x00\x61\x00\x6b\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x20\x00\x7a\ +\x00\x69\x00\x64\x00\x20\x00\x74\x00\x65\x00\x6d\x00\x65\x00\x6c\ +\x00\x6a\x00\x69\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x70\x00\x6c\ +\x00\x6f\x00\x68\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x40\ +\x54\x68\x65\x20\x77\x69\x64\x74\x68\x20\x6f\x66\x20\x74\x68\x69\ +\x73\x20\x77\x61\x6c\x6c\x2e\x20\x4e\x6f\x74\x20\x75\x73\x65\x64\ +\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\ +\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x66\x61\x63\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\ +\x44\x00\x65\x00\x62\x00\x6c\x00\x6a\x00\x69\x00\x6e\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\x68\x69\x63\x6b\x6e\x65\ +\x73\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x3c\x00\x4f\x00\x76\x00\x61\x00\x20\x00\x6d\x00\x72\x00\x65\x01\ +\x7e\x00\x61\x00\x20\x00\x6e\x00\x69\x00\x6a\x00\x65\x00\x20\x00\ +\x69\x00\x73\x00\x70\x00\x72\x00\x61\x00\x76\x00\x6e\x00\x6f\x00\ +\x20\x00\x74\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\x6f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1d\x54\x68\x69\x73\x20\x6d\x65\x73\x68\ +\x20\x69\x73\x20\x61\x6e\x20\x69\x6e\x76\x61\x6c\x69\x64\x20\x73\ +\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x06\x00\x54\x00\x69\x00\x70\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x54\x79\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x20\x00\x50\x00\x72\x00\x65\x00\x74\x00\x76\ +\x00\x61\x00\x72\x00\x61\x00\x6e\x00\x6a\x00\x65\x00\x20\x00\x74\ +\x00\x69\x00\x70\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\ +\x54\x79\x70\x65\x20\x63\x6f\x6e\x76\x65\x72\x73\x69\x6f\x6e\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2c\x00\x4e\ +\x00\x65\x00\x6d\x00\x6f\x00\x67\x00\x75\x01\x07\x00\x65\x00\x20\ +\x00\x6b\x00\x72\x00\x65\x00\x69\x00\x72\x00\x61\x00\x74\x00\x69\ +\x00\x20\x00\x6b\x00\x72\x00\x6f\x00\x76\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x17\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\ +\x65\x61\x74\x65\x20\x61\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\x00\x4e\x00\x65\x00\x6d\ +\x00\x6f\x00\x67\x00\x75\x01\x07\x00\x65\x00\x20\x00\x73\x00\x74\ +\x00\x76\x00\x6f\x00\x72\x00\x69\x00\x74\x00\x69\x00\x20\x00\x6b\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x55\x6e\x61\x62\ +\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\x20\x63\x6f\x6d\ +\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x1a\x00\x52\x00\x61\x00\x7a\x00\x67\x00\x72\x00\ +\x75\x00\x70\x00\x69\x00\x72\x00\x61\x00\x6e\x00\x6a\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x55\x6e\x67\x72\x6f\x75\x70\ +\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x12\x00\x50\x00\x6f\x00\x67\x00\x6c\x00\x65\x00\x64\x00\x20\ +\x00\x6f\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x56\x69\ +\x65\x77\x20\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x06\x00\x5a\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x16\x00\x4f\x00\x70\x00\x63\x00\x69\x00\ +\x6a\x00\x65\x00\x20\x00\x7a\x00\x69\x00\x64\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0c\x57\x61\x6c\x6c\x20\x6f\x70\x74\x69\ +\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x18\x00\x50\x00\x75\x00\x74\x00\x61\x00\x6e\x00\x6a\x00\x61\ +\x00\x20\x00\x7a\x00\x69\x00\x64\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x57\x61\x6c\x6c\x54\x72\x61\x63\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x01\x60\x00\x69\ +\x00\x72\x00\x69\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x57\x69\x64\x74\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x0c\x00\x50\x00\x72\x00\x6f\x00\x7a\x00\x6f\ +\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\ +\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x08\x01\x7d\x00\x69\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x05\x57\x69\x72\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x0e\x00\x5a\x00\x20\x00\x6f\x00\x64\x00\ +\x6d\x00\x61\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x5a\ +\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x36\x00\x5a\x00\x61\x00\x74\x00\x76\x00\x61\ +\x00\x72\x00\x61\x00\x6e\x00\x6a\x00\x65\x00\x20\x00\x75\x00\x72\ +\x00\x65\x01\x11\x00\x69\x00\x76\x00\x61\x00\x6e\x00\x6a\x00\x61\ +\x00\x20\x00\x73\x00\x6b\x00\x69\x00\x63\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x13\x63\x6c\x6f\x73\x69\x6e\x67\x20\x53\x6b\ +\x65\x74\x63\x68\x20\x65\x64\x69\x74\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x53\x00\x61\x00\x64\x00\x72\ +\x01\x7e\x00\x69\x00\x20\x00\x6f\x00\x74\x00\x76\x00\x6f\x00\x72\ +\x00\x65\x00\x6e\x00\x6f\x00\x20\x01\x0d\x00\x76\x00\x72\x00\x73\ +\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x69\x00\x6a\x00\x65\x00\x6c\ +\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x63\x6f\x6e\x74\ +\x61\x69\x6e\x73\x20\x61\x20\x6e\x6f\x6e\x2d\x63\x6c\x6f\x73\x65\ +\x64\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x60\x00\x73\x00\x61\x00\x64\x00\x72\x01\x7e\ +\x00\x69\x00\x20\x00\x70\x00\x6f\x00\x76\x00\x72\x01\x61\x00\x69\ +\x00\x6e\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x6a\x00\x65\x00\x20\ +\x00\x6e\x00\x69\x00\x73\x00\x75\x00\x20\x00\x64\x00\x69\x00\x6f\ +\x00\x20\x00\x6e\x00\x69\x00\x74\x00\x69\x00\x20\x00\x6a\x00\x65\ +\x00\x64\x00\x6e\x00\x6f\x00\x67\x00\x20\x00\x74\x00\x69\x00\x6a\ +\x00\x65\x00\x6c\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\ +\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x66\x61\x63\x65\x73\x20\x74\ +\x68\x61\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x70\x61\x72\x74\ +\x20\x6f\x66\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x44\x00\x6e\x00\x65\ +\x00\x20\x00\x73\x00\x61\x00\x64\x00\x72\x01\x7e\x00\x69\x00\x20\ +\x00\x6e\x00\x69\x00\x74\x00\x69\x00\x20\x00\x6a\x00\x65\x00\x64\ +\x00\x6e\x00\x6f\x00\x20\x01\x0d\x00\x76\x00\x72\x00\x73\x00\x74\ +\x00\x6f\x00\x20\x00\x74\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\x6f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x64\x6f\x65\x73\x6e\x27\ +\x74\x20\x63\x6f\x6e\x74\x61\x69\x6e\x20\x61\x6e\x79\x20\x73\x6f\ +\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x42\x00\x64\x00\x61\x00\x74\x00\x6f\x00\x74\x00\x65\x00\x6b\ +\x00\x61\x00\x20\x00\x25\x00\x73\x00\x20\x00\x6a\x00\x65\x00\x20\ +\x00\x75\x00\x73\x00\x70\x00\x6a\x00\x65\x01\x61\x00\x6e\x00\x6f\ +\x00\x20\x00\x6b\x00\x72\x00\x65\x00\x69\x00\x72\x00\x61\x00\x6e\ +\x00\x61\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x66\x69\ +\x6c\x65\x20\x25\x73\x20\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\ +\x6c\x79\x20\x63\x72\x65\x61\x74\x65\x64\x2e\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x6e\x00\x69\x00\x6a\ +\x00\x65\x00\x20\x00\x7a\x00\x61\x00\x74\x00\x76\x00\x6f\x00\x72\ +\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x69\x73\ +\x20\x6e\x6f\x74\x20\x63\x6c\x6f\x73\x65\x64\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x6e\x00\x69\x00\x6a\ +\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x6a\x00\x61\x00\x6e\ +\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x69\x73\x20\x6e\ +\x6f\x74\x20\x76\x61\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x60\x00\x70\x00\x79\x00\x63\x00\x6f\x00\ +\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x6e\x00\x69\x00\ +\x6a\x00\x65\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x6e\x00\x61\x01\ +\x11\x00\x65\x00\x6e\x00\x61\x00\x2c\x00\x20\x00\x6e\x00\x65\x00\ +\x6d\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\ +\x64\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x64\x00\x72\x01\x61\x00\ +\x6b\x00\x65\x00\x2e\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x29\x70\x79\x63\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\ +\x6f\x75\x6e\x64\x2c\x20\x6e\x6f\x20\x63\x6f\x6c\x6c\x61\x64\x61\ +\x20\x73\x75\x70\x70\x6f\x72\x74\x2e\x0a\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x8c\x00\x75\x00\x6b\x00\x6c\x00\ +\x61\x00\x6e\x00\x6a\x00\x61\x00\x6e\x00\x6a\x00\x65\x00\x20\x00\ +\x70\x00\x6f\x00\x64\x00\x72\x01\x61\x00\x6b\x00\x65\x00\x20\x00\ +\x7a\x00\x61\x00\x20\x00\x73\x00\x6b\x00\x69\x00\x63\x00\x75\x00\ +\x20\x00\x7a\x00\x62\x00\x6f\x00\x67\x00\x20\x00\x69\x00\x7a\x00\ +\x62\x00\x6a\x00\x65\x00\x67\x00\x61\x00\x76\x00\x61\x00\x6e\x00\ +\x6a\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x61\x00\x6b\x00\x72\x00\ +\x7a\x00\x6e\x00\x6f\x00\x67\x00\x20\x00\x72\x00\x65\x00\x66\x00\ +\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x69\x00\x72\x00\x61\x00\ +\x6e\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x72\ +\x65\x6d\x6f\x76\x69\x6e\x67\x20\x73\x6b\x65\x74\x63\x68\x20\x73\ +\x75\x70\x70\x6f\x72\x74\x20\x74\x6f\x20\x61\x76\x6f\x69\x64\x20\ +\x63\x72\x6f\x73\x73\x2d\x72\x65\x66\x65\x72\x65\x6e\x63\x69\x6e\ +\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x22\ +\x00\x75\x00\x73\x00\x70\x00\x6a\x00\x65\x01\x61\x00\x6e\x00\x6f\ +\x00\x20\x00\x7a\x00\x61\x00\x70\x00\x69\x00\x73\x00\x61\x00\x6e\ +\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x73\x75\x63\x63\ +\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x77\x72\x69\x74\x74\x65\x6e\ +\x20\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\ +\x00\x4b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ +\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x76\x00\x6f\x00\x67\x00\x20\ +\x00\x70\x00\x72\x00\x6f\x00\x7a\x00\x6f\x00\x72\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1d\x74\x68\x65\x20\x63\x6f\x6d\x70\ +\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\ +\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x20\x00\x44\x00\x6f\x00\x64\x00\x61\x00\x6a\x00\x20\ +\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ +\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x41\x64\ +\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x08\ +\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x56\x00\x44\ +\x00\x6f\x00\x64\x00\x61\x00\x6a\x00\x65\x00\x20\x00\x6f\x00\x64\ +\x00\x61\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6b\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x00\x65\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x69\x00\x76\x00\x6e\ +\x00\x6f\x00\x6d\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x41\x64\ +\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\ +\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\ +\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\ +\x00\x06\x00\x4f\x00\x73\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x41\x78\x69\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\ +\x41\x78\x69\x73\x01\x03\x00\x00\x00\x3e\x00\x4b\x00\x72\x00\x65\ +\x00\x69\x00\x72\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x76\x00\x69\ +\x00\x20\x00\x6b\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x69\x00\x6e\ +\x00\x61\x00\x74\x00\x6e\x00\x69\x00\x20\x00\x73\x00\x75\x00\x73\ +\x00\x74\x00\x61\x00\x76\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x17\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x78\x69\ +\x73\x20\x73\x79\x73\x74\x65\x6d\x2e\x07\x00\x00\x00\x09\x41\x72\ +\x63\x68\x5f\x41\x78\x69\x73\x01\x03\x00\x00\x00\x0c\x00\x5a\x00\ +\x67\x00\x72\x00\x61\x00\x64\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x0d\ +\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\ +\x00\x00\x58\x00\x53\x00\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\ +\x20\x00\x5a\x00\x67\x00\x72\x00\x61\x00\x64\x00\x75\x00\x2c\x00\ +\x20\x00\x75\x00\x6b\x00\x6c\x00\x6a\x00\x75\x01\x0d\x00\x75\x00\ +\x6a\x00\x75\x01\x07\x00\x69\x00\x20\x00\x6f\x00\x64\x00\x61\x00\ +\x62\x00\x72\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x2e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x35\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x62\ +\x75\x69\x6c\x64\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\ +\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x0d\x41\ +\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\ +\x00\x0c\x01\x06\x00\x65\x00\x6c\x00\x69\x00\x6a\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x43\x65\x6c\x6c\x07\x00\x00\x00\ +\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x56\ +\x00\x53\x00\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\x20\x01\x0d\ +\x00\x65\x00\x6c\x00\x69\x00\x6a\x00\x75\x00\x2c\x00\x20\x00\x75\ +\x00\x6b\x00\x6c\x00\x6a\x00\x75\x01\x0d\x00\x75\x00\x6a\x00\x75\ +\x01\x07\x00\x69\x00\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x72\ +\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x65\x6c\x6c\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\ +\x00\x00\x00\x10\x00\x50\x00\x72\x00\x6f\x00\x76\x00\x6a\x00\x65\ +\x00\x72\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x43\x68\ +\x65\x63\x6b\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\ +\x63\x6b\x01\x03\x00\x00\x00\x5a\x00\x50\x00\x72\x00\x6f\x00\x76\ +\x00\x6a\x00\x65\x00\x72\x00\x61\x00\x76\x00\x61\x00\x20\x00\x70\ +\x00\x72\x00\x6f\x00\x62\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x20\ +\x00\x6e\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x6b\ +\x00\x74\x00\x69\x00\x72\x00\x61\x00\x6e\x00\x69\x00\x6d\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x6d\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x43\x68\x65\x63\ +\x6b\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x6f\x72\x20\x70\x72\x6f\x62\ +\x6c\x65\x6d\x73\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\ +\x65\x63\x6b\x01\x03\x00\x00\x00\x18\x00\x5a\x00\x61\x00\x74\x00\ +\x76\x00\x6f\x00\x72\x00\x69\x00\x20\x00\x72\x00\x75\x00\x70\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x6c\x6f\x73\x65\ +\x20\x68\x6f\x6c\x65\x73\x07\x00\x00\x00\x0f\x41\x72\x63\x68\x5f\ +\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\x01\x03\x00\x00\x00\x76\ +\x00\x5a\x00\x61\x00\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\x20\ +\x00\x72\x00\x75\x00\x70\x00\x65\x00\x20\x00\x75\x00\x20\x00\x6f\ +\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x65\x00\x6e\x00\x69\x00\x6d\ +\x00\x20\x00\x6f\x00\x62\x00\x6c\x00\x69\x00\x63\x00\x69\x00\x6d\ +\x00\x61\x00\x20\x00\x69\x00\x20\x00\x70\x00\x72\x00\x65\x00\x74\ +\x00\x76\x00\x61\x00\x72\x00\x61\x00\x20\x00\x69\x00\x68\x00\x20\ +\x00\x75\x00\x20\x00\x33\x00\x44\x00\x20\x00\x74\x00\x69\x00\x6a\ +\x00\x65\x00\x6c\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\ +\x43\x6c\x6f\x73\x65\x73\x20\x68\x6f\x6c\x65\x73\x20\x69\x6e\x20\ +\x6f\x70\x65\x6e\x20\x73\x68\x61\x70\x65\x73\x2c\x20\x74\x75\x72\ +\x6e\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\x73\x6f\x6c\x69\x64\x73\ +\x07\x00\x00\x00\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\ +\x6f\x6c\x65\x73\x01\x03\x00\x00\x00\x50\x00\x53\x00\x74\x00\x76\ +\x00\x61\x00\x72\x00\x61\x00\x20\x00\x4b\x00\x61\x00\x74\x00\x2c\ +\x00\x20\x00\x75\x00\x6b\x00\x6c\x00\x6a\x00\x75\x01\x0d\x00\x75\ +\x00\x6a\x00\x75\x01\x07\x00\x69\x00\x20\x00\x6f\x00\x64\x00\x61\ +\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x66\x6c\ +\x6f\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\ +\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\ +\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x06\x00\x4b\x00\x61\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\ +\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\ +\x00\x00\x00\x18\x00\x4d\x00\x65\x00\x73\x00\x68\x00\x20\x00\x75\ +\x00\x20\x00\x6f\x00\x62\x00\x6c\x00\x69\x00\x6b\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x74\x6f\x20\x53\x68\ +\x61\x70\x65\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\x65\x73\ +\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x52\x00\x50\ +\x00\x72\x00\x65\x00\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\x20\ +\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x65\ +\x00\x20\x00\x6d\x00\x72\x00\x65\x01\x7e\x00\x65\x00\x20\x00\x75\ +\x00\x20\x01\x0d\x00\x76\x00\x72\x00\x73\x00\x74\x00\x65\x00\x20\ +\x00\x64\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\x6f\x00\x76\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x54\x75\x72\x6e\x73\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\ +\x69\x6e\x74\x6f\x20\x50\x61\x72\x74\x20\x53\x68\x61\x70\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\ +\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\ +\x00\x22\x00\x55\x00\x6b\x00\x6c\x00\x6f\x00\x6e\x00\x69\x00\x20\ +\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ +\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\ +\x6d\x6f\x76\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\ +\x00\x00\x00\x9c\x00\x55\x00\x6b\x00\x6c\x00\x6f\x00\x6e\x00\x69\ +\x00\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x72\x00\x61\x00\x6e\ +\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ +\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x69\x00\x7a\x00\x20\ +\x00\x6e\x00\x6a\x00\x69\x00\x68\x00\x6f\x00\x76\x00\x69\x00\x68\ +\x00\x20\x00\x72\x00\x6f\x00\x64\x00\x69\x00\x74\x00\x65\x00\x6c\ +\x00\x6a\x00\x61\x00\x2c\x00\x20\x00\x69\x00\x6c\x00\x69\x00\x20\ +\x00\x73\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x69\x00\x20\x00\x72\ +\x00\x75\x00\x70\x00\x75\x00\x20\x00\x75\x00\x20\x00\x6b\x00\x6f\ +\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x69\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x65\x6d\x6f\x76\x65\ +\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\ +\x65\x69\x72\x20\x70\x61\x72\x65\x6e\x74\x73\x2c\x20\x6f\x72\x20\ +\x63\x72\x65\x61\x74\x65\x20\x61\x20\x68\x6f\x6c\x65\x20\x69\x6e\ +\x20\x61\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\ +\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\ +\x00\x2c\x00\x55\x00\x6b\x00\x6c\x00\x6f\x00\x6e\x00\x69\x00\x20\ +\x00\x6f\x00\x62\x00\x6c\x00\x69\x00\x6b\x00\x20\x00\x69\x00\x7a\ +\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x2d\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x16\x52\x65\x6d\x6f\x76\x65\x20\x53\ +\x68\x61\x70\x65\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x07\x00\ +\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\ +\x61\x70\x65\x01\x03\x00\x00\x00\x56\x00\x55\x00\x6b\x00\x6c\x00\ +\x61\x00\x6e\x00\x6a\x00\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x73\x00\x74\x00\x6f\x00\x72\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\ +\x62\x00\x6c\x00\x69\x00\x6b\x00\x61\x00\x20\x00\x69\x00\x7a\x00\ +\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x6b\x00\x6f\x00\ +\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x69\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x29\x52\x65\x6d\x6f\x76\x65\x73\ +\x20\x63\x75\x62\x69\x63\x20\x73\x68\x61\x70\x65\x73\x20\x66\x72\ +\x6f\x6d\x20\x41\x72\x63\x68\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\ +\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x50\x00\x4b\x00\ +\x72\x00\x65\x00\x69\x00\x72\x00\x61\x00\x20\x00\x6b\x00\x72\x00\ +\x6f\x00\x76\x00\x20\x00\x6f\x00\x64\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x72\x00\x61\x00\x6e\x00\ +\x65\x00\x20\x00\x70\x00\x6c\x00\x6f\x00\x68\x00\x65\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x39\x43\x72\x65\x61\x74\x65\x73\x20\x61\ +\x20\x72\x6f\x6f\x66\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\ +\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x66\ +\x61\x63\x65\x20\x6f\x66\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\ +\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\ +\x00\x00\x00\x08\x00\x4b\x00\x72\x00\x6f\x00\x76\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\x09\x41\ +\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x66\x00\x4b\ +\x00\x72\x00\x65\x00\x69\x00\x72\x00\x61\x00\x20\x00\x70\x00\x6c\ +\x00\x6f\x00\x68\x00\x75\x00\x20\x00\x70\x00\x72\x00\x65\x00\x73\ +\x00\x6a\x00\x65\x00\x6b\x00\x61\x00\x2c\x00\x20\x00\x75\x00\x6b\ +\x00\x6c\x00\x6a\x00\x75\x01\x07\x00\x75\x00\x6a\x00\x75\x01\x07\ +\x00\x69\x00\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x72\x00\x61\ +\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3e\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\ +\x70\x6c\x61\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x69\x6e\ +\x63\x6c\x75\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\ +\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\ +\x6e\x65\x01\x03\x00\x00\x00\x20\x00\x52\x00\x61\x00\x76\x00\x6e\ +\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\x64\x00\x6a\x00\x65\ +\x00\x6c\x00\x6a\x00\x6b\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\ +\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\ +\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x3c\x00\x4f\x00\x64\x00\ +\x61\x00\x62\x00\x65\x00\x72\x00\x69\x00\x74\x00\x65\x00\x20\x00\ +\x6a\x00\x65\x00\x64\x00\x6e\x00\x6f\x00\x73\x00\x74\x00\x72\x00\ +\x75\x00\x6b\x00\x65\x00\x20\x00\x4d\x00\x45\x00\x53\x00\x48\x00\ +\x2d\x00\x65\x00\x76\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1a\x53\x65\x6c\x65\x63\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\ +\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\x00\x19\ +\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\ +\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x86\x00\ +\x4f\x00\x64\x00\x61\x00\x62\x00\x69\x00\x72\x00\x65\x00\x20\x00\ +\x73\x00\x76\x00\x65\x00\x20\x00\x6a\x00\x65\x00\x64\x00\x6e\x00\ +\x6f\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x65\x00\x20\x00\ +\x4d\x00\x45\x00\x53\x00\x48\x00\x2d\x00\x65\x00\x76\x00\x65\x00\ +\x20\x00\x69\x00\x7a\x00\x20\x00\x64\x00\x6f\x00\x6b\x00\x75\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x20\x00\x69\x00\x6c\x00\ +\x69\x00\x20\x00\x69\x00\x7a\x00\x20\x00\x6f\x00\x64\x00\x61\x00\ +\x62\x00\x72\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x67\x00\x72\x00\ +\x75\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x53\ +\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6e\x6f\x6e\x2d\x6d\ +\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x66\ +\x72\x6f\x6d\x20\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\ +\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x67\x72\x6f\x75\x70\x73\x07\x00\x00\x00\ +\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\ +\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x58\ +\x00\x53\x00\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\x20\x00\x4d\ +\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x2c\x00\x20\x00\x75\ +\x00\x6b\x00\x6c\x00\x6a\x00\x75\x01\x0d\x00\x75\x00\x6a\x00\x75\ +\x01\x07\x00\x69\x00\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x72\ +\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x65\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x69\x74\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\ +\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\ +\x65\x01\x03\x00\x00\x00\x0c\x00\x4d\x00\x6a\x00\x65\x00\x73\x00\ +\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\x74\ +\x65\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\ +\x03\x00\x00\x00\x1a\x00\x50\x00\x6f\x00\x64\x00\x69\x00\x6a\x00\ +\x65\x00\x6c\x00\x69\x00\x20\x00\x4d\x00\x65\x00\x73\x00\x68\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\ +\x65\x73\x68\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\ +\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\x5e\x00\x44\x00\x69\ +\x00\x6a\x00\x65\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\x64\x00\x61\ +\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x4d\x00\x45\ +\x00\x53\x00\x48\x00\x2d\x00\x65\x00\x76\x00\x65\x00\x20\x00\x75\ +\x00\x20\x00\x6e\x00\x65\x00\x7a\x00\x61\x00\x76\x00\x69\x00\x73\ +\x00\x6e\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\ +\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x32\x53\x70\x6c\x69\x74\x73\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\ +\x69\x6e\x64\x65\x70\x65\x6e\x64\x65\x6e\x74\x20\x63\x6f\x6d\x70\ +\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\ +\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\xb8\x00\ +\x53\x00\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\x20\x00\x73\x00\ +\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x72\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x61\x00\ +\x20\x00\x6f\x00\x64\x00\x20\x00\x6e\x00\x75\x00\x6c\x00\x65\x00\ +\x20\x00\x69\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\x64\x00\x20\x00\ +\x6f\x00\x64\x00\x61\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x6f\x00\ +\x67\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x61\x00\x20\x00\x28\x00\x73\x00\x6b\x00\x69\x00\x63\x00\x61\x00\ +\x2c\x00\x20\x01\x7e\x00\x69\x00\x63\x00\x61\x00\x2c\x00\x20\x00\ +\x70\x00\x6f\x00\x76\x00\x72\x01\x61\x00\x69\x00\x6e\x00\x61\x00\ +\x20\x00\x69\x00\x6c\x00\x69\x00\x20\x00\x74\x00\x69\x00\x6a\x00\ +\x65\x00\x6c\x00\x6f\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x5f\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x74\x72\x75\x63\ +\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\ +\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\ +\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x28\x73\x6b\x65\x74\x63\x68\x2c\x20\x77\x69\x72\x65\ +\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\ +\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\ +\x75\x72\x65\x01\x03\x00\x00\x00\x12\x00\x53\x00\x74\x00\x72\x00\ +\x75\x00\x6b\x00\x74\x00\x75\x00\x72\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\ +\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\ +\x65\x01\x03\x00\x00\x00\x9c\x00\x53\x00\x74\x00\x76\x00\x61\x00\ +\x72\x00\x61\x00\x20\x00\x7a\x00\x69\x00\x64\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x6f\x00\x64\x00\ +\x20\x00\x6e\x00\x75\x00\x6c\x00\x65\x00\x20\x00\x69\x00\x6c\x00\ +\x69\x00\x20\x00\x6f\x00\x64\x00\x20\x00\x6f\x00\x64\x00\x61\x00\ +\x62\x00\x72\x00\x61\x00\x6e\x00\x6f\x00\x67\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x61\x00\x20\x00\x28\x01\ +\x7e\x00\x69\x00\x63\x00\x65\x00\x2c\x00\x20\x00\x70\x00\x6f\x00\ +\x76\x00\x72\x01\x61\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x69\x00\ +\x6c\x00\x69\x00\x20\x00\x74\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\ +\x61\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x77\x61\x6c\x6c\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\ +\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\ +\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\ +\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\ +\x00\x00\x06\x00\x5a\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\ +\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\x86\x00\x4b\x00\x72\x00\ +\x65\x00\x69\x00\x72\x00\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x7a\x00\x6f\x00\x72\x00\x20\x00\x6f\x00\x64\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x72\x00\x61\x00\ +\x6e\x00\x6f\x00\x67\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x61\x00\x20\x00\x28\x01\x7e\x00\x69\x00\x63\x00\ +\x61\x00\x2c\x00\x20\x00\x70\x00\x72\x00\x61\x00\x76\x00\x6f\x00\ +\x6b\x00\x75\x00\x74\x00\x6e\x00\x69\x00\x6b\x00\x20\x00\x69\x00\ +\x6c\x00\x69\x00\x20\x00\x73\x00\x6b\x00\x69\x00\x63\x00\x61\x00\ +\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4a\x43\x72\x65\x61\x74\ +\x65\x73\x20\x61\x20\x77\x69\x6e\x64\x6f\x77\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\ +\x20\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\x20\x6f\x72\x20\x73\x6b\ +\x65\x74\x63\x68\x29\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\ +\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0c\x00\x50\x00\x72\x00\ +\x6f\x00\x7a\x00\x6f\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x0b\x41\x72\x63\x68\ +\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1e\x00\x32\x00\ +\x44\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\ +\x69\x00\x72\x00\x61\x00\x6e\x00\x6a\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0c\x32\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\ +\x67\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x4c\x00\x4b\x00\x72\x00\x65\x00\x69\ +\x00\x72\x00\x61\x00\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\x75\ +\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x73\x00\x76\x00\x61\x00\x6b\ +\x00\x69\x00\x20\x00\x74\x00\x69\x00\x70\x00\x20\x00\x41\x00\x72\ +\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x43\x72\ +\x65\x61\x74\x65\x73\x20\x67\x72\x6f\x75\x70\x73\x20\x66\x6f\x72\ +\x20\x65\x61\x63\x68\x20\x41\x72\x63\x68\x20\x6f\x62\x6a\x65\x63\ +\x74\x20\x74\x79\x70\x65\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x40\x00\x44\x00\ +\x65\x00\x62\x00\x6c\x00\x6a\x00\x69\x00\x6e\x00\x61\x00\x20\x00\ +\x6c\x00\x69\x00\x6e\x00\x69\x00\x6a\x00\x65\x00\x20\x00\x70\x00\ +\x72\x00\x69\x00\x6c\x00\x69\x00\x6b\x00\x6f\x00\x6d\x00\x20\x00\ +\x72\x00\x65\x00\x7a\x00\x61\x00\x6e\x00\x6a\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1e\x43\x75\x74\x20\x61\x72\x65\x61\x73\ +\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\x73\x20\ +\x72\x61\x74\x69\x6f\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x30\x00\x5a\x00\x61\ +\x00\x64\x00\x61\x00\x6e\x00\x61\x00\x20\x00\x62\x00\x6f\x00\x6a\ +\x00\x61\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x73\x00\x74\x00\x72\ +\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1c\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\ +\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x74\x72\x75\x63\x74\x75\x72\ +\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x5a\x00\x61\x00\x64\x00\ +\x61\x00\x6e\x00\x61\x00\x20\x00\x62\x00\x6f\x00\x6a\x00\x61\x00\ +\x20\x00\x7a\x00\x61\x00\x20\x00\x7a\x00\x69\x00\x64\x00\x6f\x00\ +\x76\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x44\x65\x66\ +\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\ +\x61\x6c\x6c\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x26\x00\x5a\x00\x61\x00\ +\x64\x00\x61\x00\x6e\x00\x61\x00\x20\x00\x62\x00\x6f\x00\x6a\x00\ +\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x7a\x00\x6f\x00\x72\x00\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x44\x65\x66\x61\x75\ +\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\x69\x6e\ +\x64\x6f\x77\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x24\x00\x4f\x00\x70\x01\ +\x07\x00\x65\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\ +\x70\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x76\x00\x6b\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\ +\x20\x41\x72\x63\x68\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x1e\x00\x47\x00\x6c\x00\x61\x00\x76\x00\x6e\x00\ +\x65\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x76\x00\ +\x6b\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\ +\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\ +\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x3e\x00\x47\x00\x72\x00\x75\x00\x70\x00\x69\x00\x72\ +\x00\x61\x00\x6a\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\ +\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x70\x00\x6f\ +\x00\x20\x00\x74\x00\x69\x00\x70\x00\x6f\x00\x76\x00\x69\x00\x6d\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x72\x6f\x75\ +\x70\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x62\x79\x20\ +\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x49\x00\x46\ +\x00\x43\x00\x20\x00\x75\x00\x76\x00\x6f\x00\x7a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0a\x49\x46\x43\x20\x69\x6d\x70\x6f\x72\x74\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\xb8\x00\x61\x00\x6b\x00\x6f\x00\x20\x00\ +\x6a\x00\x65\x00\x20\x00\x6f\x00\x76\x00\x6f\x00\x20\x00\x75\x00\ +\x6b\x00\x6c\x00\x6a\x00\x75\x01\x0d\x00\x65\x00\x6e\x00\x6f\x00\ +\x2c\x00\x20\x00\x49\x00\x46\x00\x43\x00\x4f\x00\x70\x00\x65\x00\ +\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\x75\x00\ +\x76\x00\x6f\x00\x7a\x00\x20\x01\x07\x00\x65\x00\x20\x00\x62\x00\ +\x69\x00\x74\x00\x69\x00\x20\x00\x6b\x00\x6f\x00\x72\x00\x69\x01\ +\x61\x00\x74\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x6f\x00\x6d\x00\ +\x6f\x00\x67\x00\x75\x01\x0d\x00\x61\x00\x76\x00\x61\x00\x6a\x00\ +\x75\x01\x07\x00\x69\x00\x20\x00\x75\x00\x76\x00\x6f\x00\x7a\x00\ +\x20\x00\x76\x00\x69\x01\x61\x00\x65\x00\x20\x00\x49\x00\x46\x00\ +\x43\x00\x20\x00\x74\x00\x69\x00\x70\x00\x6f\x00\x76\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x49\x66\x20\x74\x68\x69\x73\ +\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\ +\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\x69\x6d\ +\x70\x6f\x72\x74\x65\x72\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x75\ +\x73\x65\x64\x2c\x20\x61\x6c\x6c\x6f\x77\x69\x6e\x67\x20\x74\x6f\ +\x20\x69\x6d\x70\x6f\x72\x74\x20\x6d\x6f\x72\x65\x20\x49\x46\x43\ +\x20\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x54\x00\x55\x00\ +\x76\x00\x65\x00\x7a\x00\x69\x00\x20\x00\x70\x00\x6f\x00\x6b\x00\ +\x75\x01\x07\x00\x73\x00\x74\x00\x76\x00\x6f\x00\x20\x00\x28\x00\ +\x6d\x00\x6f\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x6d\x00\x6f\x01\ +\x7e\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x61\x00\ +\x74\x00\x69\x00\x20\x00\x76\x00\x65\x00\x6c\x00\x69\x00\x6b\x00\ +\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\x6d\x70\x6f\x72\ +\x74\x20\x66\x75\x72\x6e\x69\x74\x75\x72\x65\x20\x28\x63\x61\x6e\ +\x20\x6d\x61\x6b\x65\x20\x74\x68\x65\x20\x6d\x6f\x64\x65\x6c\x20\ +\x68\x65\x61\x76\x79\x29\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x62\x00\x50\x00\ +\x72\x00\x69\x00\x6b\x00\x61\x01\x7e\x00\x69\x00\x20\x00\x64\x00\ +\x65\x00\x62\x00\x75\x00\x67\x00\x20\x00\x69\x00\x6e\x00\x66\x00\ +\x6f\x00\x72\x00\x6d\x00\x61\x00\x63\x00\x69\x00\x6a\x00\x65\x00\ +\x20\x00\x74\x00\x69\x00\x6a\x00\x65\x00\x6b\x00\x6f\x00\x6d\x00\ +\x20\x00\x32\x00\x44\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\ +\x65\x00\x72\x00\x69\x00\x72\x00\x61\x00\x6e\x00\x6a\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x53\x68\x6f\x77\x20\x64\x65\ +\x62\x75\x67\x20\x69\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x20\ +\x64\x75\x72\x69\x6e\x67\x20\x32\x44\x20\x72\x65\x6e\x64\x65\x72\ +\x69\x6e\x67\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3c\x00\x50\x00\x72\x00\x69\ +\x00\x6b\x00\x61\x01\x7e\x00\x69\x00\x20\x00\x64\x00\x65\x00\x62\ +\x00\x75\x00\x67\x00\x20\x00\x70\x00\x6f\x00\x72\x00\x75\x00\x6b\ +\x00\x65\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\ +\x00\x65\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\ +\x53\x68\x6f\x77\x20\x72\x65\x6e\x64\x65\x72\x65\x72\x20\x64\x65\ +\x62\x75\x67\x20\x6d\x65\x73\x73\x61\x67\x65\x73\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\xa8\x00\x4f\x00\x7a\x00\x6e\x00\x61\x01\x0d\x00\x61\x00\ +\x76\x00\x61\x00\x20\x00\x6b\x00\x6f\x00\x6c\x00\x69\x00\x6b\x00\ +\x6f\x00\x20\x00\x70\x00\x75\x00\x74\x00\x61\x00\x20\x00\x64\x00\ +\x65\x00\x62\x00\x6c\x00\x6a\x00\x69\x00\x6e\x00\x61\x00\x20\x00\ +\x6c\x00\x69\x00\x6e\x00\x69\x00\x6a\x00\x65\x00\x20\x00\x6d\x00\ +\x6f\x00\x72\x00\x61\x00\x20\x00\x62\x00\x69\x00\x74\x00\x69\x00\ +\x20\x00\x70\x00\x72\x00\x69\x00\x6d\x00\x6a\x00\x65\x00\x6e\x00\ +\x6a\x00\x65\x00\x6e\x00\x61\x00\x20\x00\x64\x00\x61\x00\x20\x00\ +\x62\x00\x69\x00\x20\x00\x73\x00\x65\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x69\x00\x6a\x00\x61\x00\x20\x00\x70\x00\x72\x00\x65\x00\ +\x73\x00\x6a\x00\x65\x00\x6b\x00\x6c\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x4f\x53\x70\x65\x63\x69\x66\x69\x65\x73\x20\x68\ +\x6f\x77\x20\x6d\x61\x6e\x79\x20\x74\x69\x6d\x65\x73\x20\x74\x68\ +\x65\x20\x76\x69\x65\x77\x65\x64\x20\x6c\x69\x6e\x65\x20\x74\x68\ +\x69\x63\x6b\x6e\x65\x73\x73\x20\x6d\x75\x73\x74\x20\x62\x65\x20\ +\x61\x70\x70\x6c\x69\x65\x64\x20\x74\x6f\x20\x63\x75\x74\x20\x6c\ +\x69\x6e\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x4f\x00\x76\x00\ +\x6f\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x7a\x00\x61\x00\x64\x00\ +\x61\x00\x6e\x00\x61\x00\x20\x00\x62\x00\x6f\x00\x6a\x00\x61\x00\ +\x20\x00\x7a\x00\x61\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\ +\x6b\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x33\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\ +\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ +\x20\x6e\x65\x77\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x4f\x00\ +\x76\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x7a\x00\x61\x00\ +\x64\x00\x61\x00\x6e\x00\x61\x00\x20\x00\x62\x00\x6f\x00\x6a\x00\ +\x61\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x7a\x00\x69\x00\x64\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x54\x68\x69\x73\x20\x69\x73\ +\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ +\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x57\x61\x6c\x6c\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x44\x00\x4b\ +\x00\x6f\x00\x72\x00\x69\x00\x73\x00\x74\x00\x69\x00\x20\x00\x49\ +\x00\x46\x00\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\ +\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\x6b\x00\x6f\x00\x20\ +\x00\x6a\x00\x65\x00\x20\x00\x6d\x00\x6f\x00\x67\x00\x75\x01\x07\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\x65\x20\ +\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\x69\x66\x20\ +\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x07\x00\x00\x00\x1c\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\ +\x00\x26\x00\x41\x00\x72\x00\x68\x00\x69\x00\x74\x00\x65\x00\x6b\ +\x00\x74\x00\x75\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x26\x41\x72\x63\x68\x69\x74\x65\x63\x74\x75\x72\x65\x07\ +\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x26\ +\x00\x4e\x00\x61\x00\x63\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x26\x44\x72\x61\x66\x74\x07\x00\x00\x00\x04\x61\ +\x72\x63\x68\x01\x03\x00\x00\x00\x22\x00\x41\x00\x6c\x00\x61\x00\ +\x74\x00\x69\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\ +\x6d\x00\x6f\x00\x64\x00\x75\x00\x6c\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0a\x41\x72\x63\x68\x20\x74\x6f\x6f\x6c\x73\x07\ +\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x24\x00\x41\ +\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x20\x00\x7a\x00\x61\x00\x20\ +\x00\x72\x00\x61\x01\x0d\x00\x75\x00\x6e\x00\x61\x00\x6e\x00\x6a\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x43\x61\x6c\x63\ +\x75\x6c\x61\x74\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\ +\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x00\x50\x00\x6f\ +\x00\x76\x00\x65\x00\x7a\x00\x61\x00\x6e\x00\x69\x00\x20\x00\x61\ +\x00\x6c\x00\x61\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x43\x6f\x6e\x74\x65\x78\x74\x20\x54\x6f\x6f\x6c\x73\x07\ +\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x26\x00\x41\ +\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x20\x00\x7a\x00\x61\x00\x20\ +\x00\x70\x00\x72\x00\x65\x00\x76\x00\x6f\x01\x11\x00\x65\x00\x6e\ +\x00\x6a\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x6f\ +\x6e\x76\x65\x72\x73\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\x00\ +\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x41\x00\ +\x6c\x00\x61\x00\x74\x00\x69\x00\x20\x00\x7a\x00\x61\x00\x20\x00\ +\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\x69\x00\ +\x72\x00\x61\x00\x6e\x00\x6a\x00\x65\x00\x20\x00\x6e\x00\x61\x00\ +\x63\x00\x72\x00\x74\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0f\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\x20\x74\x6f\x6f\x6c\x73\ +\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\ +\x41\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x20\x00\x4e\x00\x61\x00\ +\x63\x00\x72\x00\x74\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0b\x44\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\ +\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x7a\x00\x70\x00\x79\x00\ +\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\ +\x6e\x00\x69\x00\x6a\x00\x65\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x6e\x00\x61\x01\x11\x00\x65\x00\x6e\x00\x61\x00\x2c\x00\x20\x00\ +\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\ +\x70\x00\x6f\x00\x64\x00\x72\x01\x61\x00\x6b\x00\x61\x00\x20\x01\ +\x07\x00\x65\x00\x20\x00\x62\x00\x69\x00\x74\x00\x69\x00\x20\x00\ +\x69\x00\x73\x00\x6b\x00\x6c\x00\x6a\x00\x75\x01\x0d\x00\x65\x00\ +\x6e\x00\x61\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x70\ +\x79\x63\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\ +\x6e\x64\x2c\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\ +\x6f\x72\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x69\x73\x61\ +\x62\x6c\x65\x64\x2e\x0a\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ +\ +\x00\x00\x50\x11\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x04\xf8\x00\x00\x47\xa4\x00\x00\x00\x45\x00\x04\x8e\xc3\ +\x00\x00\x01\x89\x00\x04\x8f\x03\x00\x00\x02\x54\x00\x04\x8f\x03\ +\x00\x00\x29\x3c\x00\x04\x9c\x2c\x00\x00\x2a\xd8\x00\x04\xbb\x04\ +\x00\x00\x08\x30\x00\x05\x48\x35\x00\x00\x0e\x01\x00\x05\x67\xd5\ +\x00\x00\x10\x67\x00\x05\x96\x56\x00\x00\x10\xbd\x00\x05\x96\x56\ +\x00\x00\x32\xe6\x00\x05\xa0\xa5\x00\x00\x10\xe4\x00\x05\xa0\xa5\ +\x00\x00\x36\xad\x00\x05\xc0\x65\x00\x00\x20\x2b\x00\x05\xd8\x2c\ +\x00\x00\x21\xd6\x00\x05\xd8\x2c\x00\x00\x3a\x6d\x00\x32\x23\xa5\ +\x00\x00\x47\xec\x00\x39\xdf\x33\x00\x00\x3f\xa7\x00\x48\x4e\x25\ +\x00\x00\x01\x5f\x00\x49\xeb\x9b\x00\x00\x2b\xc6\x00\x4b\x55\x33\ +\x00\x00\x40\xe7\x00\x4d\x36\x62\x00\x00\x0b\x01\x00\x4d\x36\x62\ +\x00\x00\x2e\x70\x00\x5d\xfb\xa8\x00\x00\x22\x7e\x00\x5e\x08\xc3\ +\x00\x00\x22\xdd\x00\x61\xb0\x33\x00\x00\x19\x01\x00\x62\x9b\xa8\ +\x00\x00\x11\x73\x00\x62\x9b\xa8\x00\x00\x36\xd7\x00\x8a\x92\x57\ +\x00\x00\x00\x00\x00\xaa\x80\x25\x00\x00\x07\x89\x00\xc9\x7b\xf3\ +\x00\x00\x14\x76\x00\xfb\x72\xf3\x00\x00\x3f\x2d\x01\x19\x4e\x85\ +\x00\x00\x06\x0f\x01\x55\x2b\xf5\x00\x00\x05\x82\x01\x79\x17\x94\ +\x00\x00\x25\xb6\x01\x8e\x84\xa6\x00\x00\x12\xfe\x01\xad\x7d\xe3\ +\x00\x00\x49\x91\x01\xaf\x41\x84\x00\x00\x24\xa6\x01\xf7\xa8\x83\ +\x00\x00\x46\x7f\x02\x01\x7f\xd3\x00\x00\x11\xe0\x02\x29\xb3\xc4\ +\x00\x00\x32\x17\x02\x5a\x4a\x53\x00\x00\x17\xfb\x02\x5f\xc9\x59\ +\x00\x00\x39\x59\x02\x66\x7f\x7e\x00\x00\x0f\x0f\x02\x6a\x77\x99\ +\x00\x00\x42\x39\x02\x80\x5f\x17\x00\x00\x26\x99\x02\x82\x88\x3a\ +\x00\x00\x04\x94\x02\x85\x4f\xf5\x00\x00\x1b\xb7\x02\x90\x40\x65\ +\x00\x00\x0d\xbd\x02\x90\x40\x65\x00\x00\x2e\x9e\x02\x94\x16\x35\ +\x00\x00\x12\x1b\x02\xab\x87\xd4\x00\x00\x48\x2c\x02\xb8\xae\x74\ +\x00\x00\x2f\xa6\x02\xc3\x91\x93\x00\x00\x43\xbe\x02\xcd\x05\xa3\ +\x00\x00\x2e\xee\x02\xdd\x14\x14\x00\x00\x2f\xfa\x03\x13\x15\x3e\ +\x00\x00\x0c\x39\x03\x1b\xda\x15\x00\x00\x22\x40\x03\x1d\xe8\xe3\ +\x00\x00\x3d\x84\x03\x29\x7a\x34\x00\x00\x00\xdd\x03\x2c\xe9\xb3\ +\x00\x00\x19\x6a\x03\x92\x51\xe0\x00\x00\x11\x09\x03\xa2\xec\x23\ +\x00\x00\x21\xff\x03\xbe\xb0\x34\x00\x00\x21\x04\x03\xce\x98\xe5\ +\x00\x00\x04\x06\x03\xd4\x22\x74\x00\x00\x28\x36\x04\x35\xfa\x55\ +\x00\x00\x13\xc1\x04\xc3\x75\x44\x00\x00\x1c\x12\x04\xdb\x21\x3e\ +\x00\x00\x35\xea\x04\xeb\xfd\xf4\x00\x00\x0b\x5c\x05\x14\x5b\x83\ +\x00\x00\x07\xba\x05\x18\xda\xa3\x00\x00\x2d\xac\x05\x5f\x3d\x83\ +\x00\x00\x3e\x9f\x05\x8c\x46\xc5\x00\x00\x10\x90\x05\x90\xba\xe3\ +\x00\x00\x10\x39\x05\xc0\x56\xe3\x00\x00\x44\x5b\x05\xc7\xeb\xc7\ +\x00\x00\x42\xf3\x05\xe0\x4b\x67\x00\x00\x22\xae\x05\xe0\x4b\x67\ +\x00\x00\x3b\xa1\x05\xef\x78\x4a\x00\x00\x25\xf3\x06\x1f\x6f\xa4\ +\x00\x00\x23\xfa\x06\x32\xe3\xe3\x00\x00\x49\xef\x06\x5b\x01\x15\ +\x00\x00\x03\xd5\x06\x69\xd0\x04\x00\x00\x23\x8c\x06\x9f\x6f\xd4\ +\x00\x00\x07\x25\x06\xd6\x3f\xa4\x00\x00\x25\x78\x06\xe6\x2f\x43\ +\x00\x00\x13\x5d\x07\x00\xcc\xc4\x00\x00\x40\x96\x07\x07\x84\xba\ +\x00\x00\x4a\x31\x07\x08\x43\x0e\x00\x00\x29\x66\x07\x16\x58\x05\ +\x00\x00\x3c\x2c\x07\x25\x74\x53\x00\x00\x2c\x9f\x07\x28\xff\x15\ +\x00\x00\x0e\x85\x07\x36\x51\x26\x00\x00\x15\x6a\x07\x5c\xdc\x04\ +\x00\x00\x23\x03\x07\x60\x23\xf3\x00\x00\x03\x34\x07\xca\xf8\x87\ +\x00\x00\x3b\xd7\x08\x25\x81\xc4\x00\x00\x06\xce\x08\x4a\x45\xd9\ +\x00\x00\x3a\x9b\x08\x65\x4c\x95\x00\x00\x1e\x86\x08\xc5\xe3\x35\ +\x00\x00\x1d\xbf\x08\xca\xc9\x74\x00\x00\x16\xbc\x08\xfb\xb8\xa4\ +\x00\x00\x0a\x8a\x09\x69\xac\xa7\x00\x00\x21\x77\x09\x6c\x6c\xa7\ +\x00\x00\x0b\x29\x09\x9f\xcc\xde\x00\x00\x25\x0a\x09\xba\xe6\x35\ +\x00\x00\x11\xac\x09\xba\xe6\x35\x00\x00\x39\x1b\x09\xc5\xbe\xca\ +\x00\x00\x09\xd0\x09\xe3\x98\xe4\x00\x00\x28\x86\x09\xed\x98\x55\ +\x00\x00\x34\x02\x0a\x3e\x06\x83\x00\x00\x05\x14\x0a\x3f\x1f\xd6\ +\x00\x00\x05\x4a\x0a\x3f\x2b\x25\x00\x00\x05\xd9\x0a\x3f\x5d\xac\ +\x00\x00\x06\x54\x0a\x7f\xee\xa3\x00\x00\x48\x57\x0a\xb6\xc8\x9a\ +\x00\x00\x0b\x89\x0a\xbf\x46\x0e\x00\x00\x20\x50\x0a\xd6\x07\x84\ +\x00\x00\x23\x34\x0b\x0a\xc3\xf3\x00\x00\x00\x71\x0b\x51\x30\xa8\ +\x00\x00\x31\x0c\x0b\x65\xda\xb3\x00\x00\x3e\x17\x0b\x8d\x97\x93\ +\x00\x00\x45\xa3\x0b\x9c\x5b\xe7\x00\x00\x09\x19\x0b\xb9\xe8\x93\ +\x00\x00\x31\x71\x0b\xc4\xb1\x23\x00\x00\x2b\x04\x0c\x02\xac\xd7\ +\x00\x00\x03\x03\x0c\x02\xac\xd7\x00\x00\x29\xcb\x0c\x25\x3e\x53\ +\x00\x00\x34\xd9\x0c\x3c\x8b\x33\x00\x00\x48\x96\x0c\x41\x0a\x83\ +\x00\x00\x48\xe8\x0c\x4e\x9b\x23\x00\x00\x34\x55\x0c\x98\x80\x23\ +\x00\x00\x49\x38\x0c\xc4\xd0\x80\x00\x00\x27\x68\x0c\xdf\x5a\x1e\ +\x00\x00\x01\xae\x0c\xfc\x97\x06\x00\x00\x21\xa6\x0d\x03\x26\xb4\ +\x00\x00\x02\xbe\x0d\x08\x90\xf3\x00\x00\x1d\x4e\x0d\x1e\xda\xa4\ +\x00\x00\x03\x6b\x0d\x3b\x3b\x49\x00\x00\x37\xdd\x0d\xa8\x3a\x35\ +\x00\x00\x19\xc7\x0d\xc1\x7d\x47\x00\x00\x27\xc2\x0d\xfa\x53\xe5\ +\x00\x00\x08\x5d\x0e\x69\x87\x13\x00\x00\x33\x12\x0e\x8c\xd7\x43\ +\x00\x00\x37\x1a\x0e\x98\x0a\xd6\x00\x00\x20\x9e\x0e\xab\x8d\x1f\ +\x00\x00\x3c\xd7\x0e\xb9\x1b\xf2\x00\x00\x16\x59\x0e\xec\x0b\x9e\ +\x00\x00\x2a\x05\x0f\x16\x4a\x24\x00\x00\x1f\xb1\x0f\x17\xc7\xa3\ +\x00\x00\x2b\xfc\x0f\x55\xc1\x57\x00\x00\x06\x8e\x0f\x78\x41\x05\ +\x00\x00\x47\x50\x0f\x79\xe3\xf3\x00\x00\x2c\xe4\x0f\x95\xd5\x09\ +\x00\x00\x1a\x8f\x0f\xa2\x16\x43\x00\x00\x1f\x7f\x0f\xc0\xb8\xb4\ +\x00\x00\x0e\x26\x0f\xd0\x39\x44\x00\x00\x02\x79\x0f\xe5\x74\x74\ +\x00\x00\x00\xa3\x0f\xf3\xe8\x33\x00\x00\x40\x12\x69\x00\x00\x4a\ +\xff\x03\x00\x00\x00\x1c\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x20\x00\x45\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\x69\ +\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x20\x43\x72\x65\ +\x61\x74\x65\x20\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x41\x00\x67\x00\ +\x67\x00\x69\x00\x75\x00\x6e\x00\x67\x00\x69\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x03\x41\x64\x64\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x10\x00\x41\x00\x67\x00\x67\x00\x69\x00\ +\x75\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x09\x41\x64\x64\x69\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x41\x00\x6c\x00\x6c\x00\ +\x69\x00\x6e\x00\x65\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x41\x6c\x69\x67\x6e\ +\x6d\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x4e\x00\x54\x00\x75\x00\x74\x00\x74\x00\x6f\x00\x20\x00\ +\x62\x00\x65\x00\x6e\x00\x65\x00\x21\x00\x20\x00\x6e\x00\x65\x00\ +\x73\x00\x73\x00\x75\x00\x6e\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x62\x00\x6c\x00\x65\x00\x6d\x00\x61\x00\x20\x00\x72\x00\x69\x00\ +\x73\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x74\x00\ +\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x41\x6c\x6c\x20\x67\ +\x6f\x6f\x64\x21\x20\x6e\x6f\x20\x70\x72\x6f\x62\x6c\x65\x6d\x73\ +\x20\x66\x6f\x75\x6e\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x0c\x00\x41\x00\x6e\x00\x67\x00\x6f\x00\x6c\x00\ +\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x6e\x67\x6c\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\ +\x41\x00\x73\x00\x73\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x41\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x66\x00\x53\x00\x69\x00\x73\x00\x74\x00\x65\x00\x6d\ +\x00\x69\x00\x20\x00\x64\x00\x69\x00\x20\x00\x61\x00\x73\x00\x73\ +\x00\x69\x00\x20\x00\x73\x00\x75\x00\x20\x00\x63\x00\x75\x00\x69\ +\x00\x20\x00\x71\x00\x75\x00\x65\x00\x73\x00\x74\x00\x61\x00\x20\ +\x00\x73\x00\x74\x00\x72\x00\x75\x00\x74\x00\x74\x00\x75\x00\x72\ +\x00\x61\x00\x20\x00\xe8\x00\x20\x00\x63\x00\x6f\x00\x73\x00\x74\ +\x00\x72\x00\x75\x00\x69\x00\x74\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x27\x41\x78\x65\x73\x20\x73\x79\x73\x74\x65\x6d\x73\ +\x20\x74\x68\x69\x73\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\ +\x69\x73\x20\x62\x75\x69\x6c\x74\x20\x6f\x6e\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x41\x00\x73\x00\x73\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\x69\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x00\ +\x4f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\ +\x32\x00\x44\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0e\x42\x61\x73\x65\x20\x32\x44\x20\x6f\ +\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x1e\x00\x43\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ +\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x62\x00\x61\x00\x73\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x42\x61\x73\x65\ +\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x45\x00\x64\x00\x69\x00\ +\x66\x00\x69\x00\x63\x00\x69\x00\x6f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x43\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x69\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x38\x00\x43\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\ +\x6e\x00\x74\x00\x69\x00\x20\x00\x64\x00\x69\x00\x20\x00\x71\x00\ +\x75\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\x00\x6f\x00\x67\x00\ +\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x19\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x43\x00\x6f\x00\ +\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x43\x6f\x6e\x74\x69\x6e\x75\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x56\x00\x49\x00\x6d\ +\x00\x70\x00\x6f\x00\x73\x00\x73\x00\x69\x00\x62\x00\x69\x00\x6c\ +\x00\x65\x00\x20\x00\x63\x00\x61\x00\x6c\x00\x63\x00\x6f\x00\x6c\ +\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x66\ +\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x20\x00\x64\x00\x65\x00\x6c\ +\x00\x6c\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x74\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x43\x6f\x75\x6c\ +\x64\x6e\x27\x74\x20\x63\x6f\x6d\x70\x75\x74\x65\x20\x74\x68\x65\ +\x20\x77\x61\x6c\x6c\x20\x73\x68\x61\x70\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4a\x00\x49\x00\x6d\x00\x70\ +\x00\x6f\x00\x73\x00\x73\x00\x69\x00\x62\x00\x69\x00\x6c\x00\x65\ +\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x69\x00\x7a\ +\x00\x7a\x00\x61\x00\x72\x00\x65\x00\x20\x00\x49\x00\x66\x00\x63\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\ +\x00\x6c\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x43\x6f\ +\x75\x6c\x64\x6e\x27\x74\x20\x6c\x6f\x63\x61\x74\x65\x20\x49\x66\ +\x63\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x0a\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x20\x00\x41\x00\x73\x00\x73\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x41\x78\x69\ +\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x54\x00\x65\x00\x74\ +\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\ +\x65\x61\x74\x65\x20\x52\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x20\x00\x50\x00\x69\x00\x61\x00\x6e\x00\x6f\x00\x20\x00\x64\ +\x00\x69\x00\x20\x00\x53\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\ +\x74\x65\x20\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\ +\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x53\x00\x69\x00\x74\x00\ +\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\ +\x65\x20\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x1c\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\ +\x53\x00\x74\x00\x72\x00\x75\x00\x74\x00\x74\x00\x75\x00\x72\x00\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\x74\ +\x65\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x20\x00\x50\x00\x61\x00\x72\x00\x65\x00\x74\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\ +\x20\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x1a\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x46\ +\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x74\x00\x72\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x72\x65\x61\x74\x65\x20\x57\ +\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x2a\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x6e\ +\x00\x75\x00\x6f\x00\x76\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\x74\x65\x20\x6e\ +\x65\x77\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\x43\x00\x72\x00\ +\x65\x00\x61\x00\x20\x00\x6f\x00\x20\x00\x61\x00\x67\x00\x67\x00\ +\x69\x00\x6f\x00\x72\x00\x6e\x00\x61\x00\x20\x00\x63\x00\x6f\x00\ +\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\x74\x65\x2f\ +\x75\x70\x64\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\ +\x44\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x7a\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3c\ +\x00\x44\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x7a\x00\x65\ +\x00\x20\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x6f\x00\x6c\ +\x00\x69\x00\x20\x00\x74\x00\x72\x00\x61\x00\x20\x00\x67\x00\x6c\ +\x00\x69\x00\x20\x00\x61\x00\x73\x00\x73\x00\x69\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x21\x44\x69\x73\x74\x61\x6e\x63\x65\x73\x20\ +\x61\x6e\x64\x20\x61\x6e\x67\x6c\x65\x73\x20\x62\x65\x74\x77\x65\ +\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x10\x00\x4d\x00\x6f\x00\x64\x00\x69\x00\x66\ +\x00\x69\x00\x63\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x45\x64\x69\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x7c\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x65\x00\ +\x20\x00\x64\x00\x75\x00\x72\x00\x61\x00\x6e\x00\x74\x00\x65\x00\ +\x20\x00\x6c\x00\x61\x00\x20\x00\x72\x00\x69\x00\x6d\x00\x6f\x00\ +\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x64\x00\x69\x00\ +\x20\x00\x75\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x76\x00\x69\x00\ +\x73\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x64\x00\x61\x00\x20\x00\ +\x75\x00\x6e\x00\x61\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\ +\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x74\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x27\x45\x72\x72\x6f\x72\x20\x72\ +\x65\x6d\x6f\x76\x69\x6e\x67\x20\x73\x70\x6c\x69\x74\x74\x65\x72\ +\x20\x66\x72\x6f\x6d\x20\x77\x61\x6c\x6c\x20\x73\x68\x61\x70\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x72\x00\ +\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x65\x00\x3a\x00\x20\x00\ +\x69\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x73\x00\x69\x00\x62\x00\ +\x69\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x65\x00\x74\x00\x65\x00\ +\x72\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x72\x00\x65\x00\x20\x00\ +\x6c\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x64\x00\x69\x00\x66\x00\ +\x69\x00\x63\x00\x61\x00\x20\x00\x64\x00\x65\x00\x69\x00\x20\x00\ +\x63\x00\x61\x00\x72\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\ +\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x45\x72\x72\x6f\x72\ +\x3a\x20\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x64\x65\x74\x65\x72\ +\x6d\x69\x6e\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\x65\ +\x6e\x63\x6f\x64\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x74\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\ +\x00\x65\x00\x3a\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x73\ +\x00\x73\x00\x69\x00\x62\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x64\ +\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x61\ +\x00\x72\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x63\x00\x6f\ +\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x20\x00\x64\ +\x00\x65\x00\x69\x00\x20\x00\x63\x00\x61\x00\x72\x00\x61\x00\x74\ +\x00\x74\x00\x65\x00\x72\x00\x69\x00\x0a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2d\x45\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\ +\x6e\x27\x74\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\ +\x61\x72\x61\x63\x74\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\ +\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x44\ +\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x65\x00\x3a\x00\x20\ +\x00\x4f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\ +\x00\x64\x00\x69\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\ +\x00\x6e\x00\x6f\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\ +\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x45\x72\ +\x72\x6f\x72\x3a\x20\x49\x6e\x76\x61\x6c\x69\x64\x20\x62\x61\x73\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x0a\x00\x50\x00\x69\x00\x61\x00\x6e\x00\ +\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\x72\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\ +\x52\x00\x61\x00\x67\x00\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x47\x72\x6f\x75\x70\ +\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0e\x00\x41\x00\x6c\x00\x74\x00\x65\x00\x7a\x00\x7a\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x48\x65\x69\x67\x68\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x6c\x00\ +\x53\x00\x63\x00\x68\x00\x65\x00\x6d\x00\x61\x00\x20\x00\x49\x00\ +\x46\x00\x43\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x20\x00\x74\x00\ +\x72\x00\x6f\x00\x76\x00\x61\x00\x74\x00\x6f\x00\x2c\x00\x20\x00\ +\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x7a\x00\ +\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x49\x00\x46\x00\x43\x00\ +\x20\x00\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\x69\x00\x6c\x00\ +\x69\x00\x74\x00\x61\x00\x74\x00\x61\x00\x2e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2b\x49\x46\x43\x20\x53\x63\x68\x65\x6d\x61\x20\ +\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x49\x46\x43\x20\x69\ +\x6d\x70\x6f\x72\x74\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x2e\x0a\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x01\x02\x00\ +\x53\x00\x65\x00\x20\x00\x56\x00\x65\x00\x72\x00\x6f\x00\x2c\x00\ +\x20\x00\x73\x00\x65\x00\x20\x00\x71\x00\x75\x00\x65\x00\x73\x00\ +\x74\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x74\x00\ +\x65\x00\x20\x00\xe8\x00\x20\x00\x62\x00\x61\x00\x73\x00\x61\x00\ +\x74\x00\x61\x00\x20\x00\x73\x00\x75\x00\x20\x00\x75\x00\x6e\x00\ +\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x63\x00\x69\x00\x61\x00\ +\x2c\x00\x20\x00\x73\x00\x61\x00\x72\x00\xe0\x00\x20\x00\x75\x00\ +\x74\x00\x69\x00\x6c\x00\x69\x00\x7a\x00\x7a\x00\x61\x00\x74\x00\ +\x6f\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x62\x00\x6f\x00\x72\x00\ +\x64\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\x61\x00\ +\x20\x00\x66\x00\x61\x00\x63\x00\x63\x00\x69\x00\x61\x00\x20\x00\ +\x63\x00\x6f\x00\x6d\x00\x65\x00\x20\x00\x74\x00\x72\x00\x61\x00\ +\x63\x00\x63\x00\x69\x00\x61\x00\x20\x00\x65\x00\x20\x00\x73\x00\ +\x61\x00\x72\x00\xe0\x00\x20\x00\x74\x00\x72\x00\x61\x00\x73\x00\ +\x63\x00\x75\x00\x72\x00\x61\x00\x74\x00\x61\x00\x20\x00\x6c\x00\ +\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x63\x00\x69\x00\x61\x00\ +\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x69\x49\x66\x20\x54\x72\ +\x75\x65\x2c\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\ +\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x66\ +\x61\x63\x65\x2c\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x75\x73\x65\ +\x20\x69\x74\x73\x20\x62\x6f\x72\x64\x65\x72\x20\x77\x69\x72\x65\ +\x20\x61\x73\x20\x74\x72\x61\x63\x65\x2c\x20\x61\x6e\x64\x20\x64\ +\x69\x73\x63\x6f\x6e\x73\x69\x64\x65\x72\x20\x74\x68\x65\x20\x66\ +\x61\x63\x65\x2e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x1e\x00\x44\x00\x61\x00\x20\x00\x4d\x00\x65\x00\x73\x00\ +\x68\x00\x20\x00\x61\x00\x20\x00\x46\x00\x6f\x00\x72\x00\x6d\x00\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\ +\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x08\x00\x4e\x00\x6f\x00\x6d\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\x61\x6d\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\x4e\x00\x65\ +\x00\x73\x00\x73\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x67\x00\x67\ +\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x6c\ +\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\x6f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4e\x6f\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x52\x00\x4e\x00\x65\x00\ +\x73\x00\x73\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x67\x00\x67\x00\ +\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\xe8\x00\x20\x00\x73\x00\ +\x74\x00\x61\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x61\x00\x67\x00\ +\x6c\x00\x69\x00\x61\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x61\x00\ +\x6c\x00\x20\x00\x70\x00\x69\x00\x61\x00\x6e\x00\x6f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1f\x4e\x6f\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x61\x72\x65\x20\x63\x75\x74\x20\x62\x79\x20\x74\x68\x65\ +\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\xc6\x00\x4e\x00\x65\x00\x73\x00\x73\x00\x75\x00\ +\x6e\x00\x61\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\ +\x20\x00\xe8\x00\x20\x00\x73\x00\x74\x00\x61\x00\x74\x00\x61\x00\ +\x20\x00\x63\x00\x61\x00\x6c\x00\x63\x00\x6f\x00\x6c\x00\x61\x00\ +\x74\x00\x61\x00\x20\x00\x61\x00\x6e\x00\x63\x00\x6f\x00\x72\x00\ +\x61\x00\x2c\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\ +\x69\x00\x6f\x00\x6e\x00\x61\x00\x20\x00\x72\x00\x65\x00\x6e\x00\ +\x64\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x77\x00\ +\x69\x00\x72\x00\x65\x00\x66\x00\x72\x00\x61\x00\x6d\x00\x65\x00\ +\x20\x00\x65\x00\x20\x00\x65\x00\x73\x00\x65\x00\x67\x00\x75\x00\ +\x69\x00\x72\x00\x65\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x72\x00\ +\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x64\x00\x69\x00\ +\x20\x00\x6e\x00\x75\x00\x6f\x00\x76\x00\x6f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x4b\x4e\x6f\x20\x73\x68\x61\x70\x65\x20\x68\x61\ +\x73\x20\x62\x65\x65\x6e\x20\x63\x6f\x6d\x70\x75\x74\x65\x64\x20\ +\x79\x65\x74\x2c\x20\x73\x65\x6c\x65\x63\x74\x20\x77\x69\x72\x65\ +\x66\x72\x61\x6d\x65\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x20\ +\x61\x6e\x64\x20\x72\x65\x6e\x64\x65\x72\x20\x61\x67\x61\x69\x6e\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\ +\x4f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x07\x4f\x62\x6a\x65\x63\x74\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x50\x00\ +\x61\x00\x67\x00\x69\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x50\x61\x67\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x0e\x00\x52\x00\x69\x00\x6d\x00\x75\x00\x6f\ +\x00\x76\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x65\ +\x6d\x6f\x76\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x0a\x00\x54\x00\x65\x00\x74\x00\x74\x00\x6f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x53\x00\x69\x00\x74\ +\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\x00\ +\x53\x00\x61\x00\x6c\x00\x74\x00\x61\x00\x72\x00\x65\x00\x20\x00\ +\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\ +\x6e\x00\x6f\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\ +\x64\x00\x6f\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x19\x53\x6b\x69\x70\x70\x69\x6e\x67\x20\x69\x6e\x76\x61\x6c\x69\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x44\x00\x69\x00\x76\x00\ +\x69\x00\x64\x00\x69\x00\x20\x00\x4d\x00\x65\x00\x73\x00\x68\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\ +\x65\x73\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x12\x00\x53\x00\x74\x00\x72\x00\x75\x00\x74\x00\x74\x00\x75\ +\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x74\ +\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x16\x00\x53\x00\x6f\x00\x74\x00\x74\x00\x72\ +\x00\x61\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x69\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x53\x75\x62\x74\x72\x61\x63\x74\x69\x6f\ +\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x8e\x00\x4c\x00\x27\x00\x61\x00\x6c\x00\x6c\x00\x69\x00\x6e\x00\ +\x65\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\ +\x64\x00\x69\x00\x20\x00\x71\x00\x75\x00\x65\x00\x73\x00\x74\x00\ +\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x74\x00\x65\x00\ +\x20\x00\x73\x00\x75\x00\x6c\x00\x20\x00\x73\x00\x75\x00\x6f\x00\ +\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\ +\x20\x00\x64\x00\x69\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\ +\x2c\x00\x20\x00\x73\x00\x65\x00\x20\x00\x61\x00\x70\x00\x70\x00\ +\x6c\x00\x69\x00\x63\x00\x61\x00\x62\x00\x69\x00\x6c\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x3c\x54\x68\x65\x20\x61\x6c\x69\ +\x67\x6e\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\ +\x61\x6c\x6c\x20\x6f\x6e\x20\x69\x74\x73\x20\x62\x61\x73\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x2c\x20\x69\x66\x20\x61\x70\x70\x6c\x69\ +\x63\x61\x62\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x30\x00\x4c\x00\x27\x00\x61\x00\x6e\x00\x67\x00\x6f\ +\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x20\x00\x71\x00\x75\ +\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x65\x00\x74\ +\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x68\ +\x65\x20\x61\x6e\x67\x6c\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x34\x00\x47\x00\x6c\x00\x69\x00\x20\x00\x61\x00\x6e\x00\ +\x67\x00\x6f\x00\x6c\x00\x69\x00\x20\x00\x64\x00\x69\x00\x20\x00\ +\x63\x00\x69\x00\x61\x00\x73\x00\x63\x00\x75\x00\x6e\x00\x20\x00\ +\x61\x00\x73\x00\x73\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x17\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\x73\x20\x6f\x66\x20\x65\ +\x61\x63\x68\x20\x61\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x76\x00\x4c\x00\x61\x00\x20\x00\x64\x00\ +\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\ +\x65\x00\x20\x00\x64\x00\x69\x00\x20\x00\x76\x00\x69\x00\x73\x00\ +\x75\x00\x61\x00\x6c\x00\x69\x00\x7a\x00\x7a\x00\x61\x00\x7a\x00\ +\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x64\x00\x69\x00\x20\x00\ +\x71\x00\x75\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\x00\x70\x00\ +\x69\x00\x61\x00\x6e\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x20\x00\ +\x73\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x26\x54\x68\x65\x20\x64\x69\x73\x70\x6c\ +\x61\x79\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x98\x00\x49\x00\x20\ +\x00\x6e\x00\x75\x00\x6d\x00\x65\x00\x72\x00\x69\x00\x20\x00\x64\ +\x00\x65\x00\x6c\x00\x6c\x00\x27\x00\x65\x00\x6c\x00\x65\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x61\x00\x20\ +\x00\x65\x00\x73\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x65\x00\x72\ +\x00\x65\x00\x20\x00\x71\x00\x75\x00\x61\x00\x6e\x00\x64\x00\x6f\ +\x00\x20\x00\x71\x00\x75\x00\x65\x00\x73\x00\x74\x00\x61\x00\x20\ +\x00\x73\x00\x74\x00\x72\x00\x75\x00\x74\x00\x74\x00\x75\x00\x72\ +\x00\x61\x00\x20\x00\xe8\x00\x20\x00\x62\x00\x61\x00\x73\x00\x61\ +\x00\x74\x00\x61\x00\x20\x00\x73\x00\x75\x00\x20\x00\x61\x00\x73\ +\x00\x73\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\x54\x68\ +\x65\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\x6e\x75\x6d\x62\x65\x72\ +\x73\x20\x74\x6f\x20\x65\x78\x63\x6c\x75\x64\x65\x20\x77\x68\x65\ +\x6e\x20\x74\x68\x69\x73\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\ +\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x78\x65\ +\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x9c\ +\x00\x49\x00\x6c\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x65\x00\x72\ +\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x20\x00\x66\x00\x61\x00\x63\ +\x00\x63\x00\x69\x00\x61\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x6c\ +\x00\x27\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\ +\x00\x20\x00\x64\x00\x69\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\ +\x00\x20\x00\x75\x00\x74\x00\x69\x00\x6c\x00\x69\x00\x7a\x00\x7a\ +\x00\x61\x00\x74\x00\x61\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\ +\x00\x63\x00\x6f\x00\x73\x00\x74\x00\x72\x00\x75\x00\x69\x00\x72\ +\x00\x65\x00\x20\x00\x71\x00\x75\x00\x65\x00\x73\x00\x74\x00\x6f\ +\x00\x20\x00\x74\x00\x65\x00\x74\x00\x74\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x3a\x54\x68\x65\x20\x66\x61\x63\x65\x20\x6e\ +\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x74\x68\x65\x20\x62\x61\x73\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x75\x73\x65\x64\x20\x74\x6f\ +\x20\x62\x75\x69\x6c\x64\x20\x74\x68\x69\x73\x20\x72\x6f\x6f\x66\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\ +\x4c\x00\x27\x00\x61\x00\x6c\x00\x74\x00\x65\x00\x7a\x00\x7a\x00\ +\x61\x00\x20\x00\x64\x00\x69\x00\x20\x00\x71\x00\x75\x00\x65\x00\ +\x73\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x69\x00\x61\x00\x6e\x00\ +\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x54\x68\x65\x20\x68\ +\x65\x69\x67\x68\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x66\x6c\ +\x6f\x6f\x72\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\xce\x00\x4c\x00\x27\x00\x61\x00\x6c\x00\x74\x00\x65\x00\x7a\ +\x00\x7a\x00\x61\x00\x20\x00\x64\x00\x69\x00\x20\x00\x71\x00\x75\ +\x00\x65\x00\x73\x00\x74\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\ +\x00\x65\x00\x74\x00\x65\x00\x2e\x00\x20\x00\x4c\x00\x61\x00\x73\ +\x00\x63\x00\x69\x00\x61\x00\x72\x00\x65\x00\x20\x00\x30\x00\x20\ +\x00\x70\x00\x65\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\ +\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x6f\x00\x2e\x00\x20\ +\x00\x4e\x00\x6f\x00\x6e\x00\x20\x00\x75\x00\x73\x00\x61\x00\x74\ +\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x20\x00\x71\x00\x75\x00\x65\ +\x00\x73\x00\x74\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\ +\x00\x74\x00\x65\x00\x20\x00\xe8\x00\x20\x00\x62\x00\x61\x00\x73\ +\x00\x61\x00\x74\x00\x61\x00\x20\x00\x73\x00\x75\x00\x20\x00\x75\ +\x00\x6e\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x6f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x58\x54\x68\x65\x20\x68\x65\ +\x69\x67\x68\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\ +\x6c\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\x20\x61\x75\ +\x74\x6f\x6d\x61\x74\x69\x63\x2e\x20\x4e\x6f\x74\x20\x75\x73\x65\ +\x64\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\ +\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x73\x6f\x6c\ +\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\xaa\x00\x4c\x00\x27\x00\x61\x00\x6c\x00\x74\x00\x65\x00\x7a\x00\ +\x7a\x00\x61\x00\x20\x00\x6f\x00\x20\x00\x6c\x00\x61\x00\x20\x00\ +\x70\x00\x72\x00\x6f\x00\x66\x00\x6f\x00\x6e\x00\x64\x00\x69\x00\ +\x74\x00\xe0\x00\x20\x00\x64\x00\x69\x00\x20\x00\x65\x00\x73\x00\ +\x74\x00\x72\x00\x75\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\ +\x20\x00\x64\x00\x69\x00\x20\x00\x71\x00\x75\x00\x65\x00\x73\x00\ +\x74\x00\x6f\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x6f\x00\x2e\x00\x20\x00\x4c\x00\x61\x00\x73\x00\ +\x63\x00\x69\x00\x61\x00\x72\x00\x65\x00\x20\x00\x30\x00\x20\x00\ +\x70\x00\x65\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\ +\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x6f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x43\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\ +\x6f\x72\x20\x65\x78\x74\x72\x75\x73\x69\x6f\x6e\x20\x64\x65\x70\ +\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\ +\x6e\x74\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\x20\x61\ +\x75\x74\x6f\x6d\x61\x74\x69\x63\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x36\x00\x47\x00\x6c\x00\x69\x00\x20\x00\ +\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x76\x00\x61\x00\x6c\x00\ +\x6c\x00\x69\x00\x20\x00\x74\x00\x72\x00\x61\x00\x20\x00\x67\x00\ +\x6c\x00\x69\x00\x20\x00\x61\x00\x73\x00\x73\x00\x69\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1a\x54\x68\x65\x20\x69\x6e\x74\x65\x72\ +\x76\x61\x6c\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x61\x78\x65\ +\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\ +\x00\x4c\x00\x61\x00\x20\x00\x6c\x00\x75\x00\x6e\x00\x67\x00\x68\ +\x00\x65\x00\x7a\x00\x7a\x00\x61\x00\x20\x00\x64\x00\x65\x00\x67\ +\x00\x6c\x00\x69\x00\x20\x00\x61\x00\x73\x00\x73\x00\x69\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x16\x54\x68\x65\x20\x6c\x65\x6e\x67\ +\x74\x68\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\x65\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x7a\x00\x4c\x00\ +\x61\x00\x20\x00\x6c\x00\x75\x00\x6e\x00\x67\x00\x68\x00\x65\x00\ +\x7a\x00\x7a\x00\x61\x00\x20\x00\x64\x00\x69\x00\x20\x00\x71\x00\ +\x75\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\x00\x65\x00\x6c\x00\ +\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x2c\x00\x20\x00\ +\x73\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x20\x00\x73\x00\ +\x69\x00\x20\x00\x62\x00\x61\x00\x73\x00\x61\x00\x20\x00\x73\x00\ +\x75\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x66\x00\x69\x00\x6c\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x35\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x74\ +\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\ +\x6e\x6f\x74\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\ +\x72\x6f\x66\x69\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\xbe\x00\x4c\x00\x61\x00\x20\x00\x64\x00\x69\x00\ +\x72\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\ +\x64\x00\x69\x00\x20\x00\x65\x00\x73\x00\x74\x00\x72\x00\x75\x00\ +\x73\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\ +\x72\x00\x6d\x00\x61\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x69\x00\ +\x20\x00\x71\x00\x75\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\x00\ +\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\ +\x28\x00\x6c\x00\x61\x00\x73\x00\x63\x00\x69\x00\x61\x00\x72\x00\ +\x65\x00\x20\x00\x28\x00\x30\x00\x2c\x00\x20\x00\x30\x00\x2c\x00\ +\x30\x00\x29\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x6e\x00\ +\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x65\x00\x20\x00\x61\x00\ +\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\ +\x61\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x54\x68\x65\ +\x20\x6e\x6f\x72\x6d\x61\x6c\x20\x65\x78\x74\x72\x75\x73\x69\x6f\ +\x6e\x20\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\ +\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x6b\x65\x65\x70\ +\x20\x28\x30\x2c\x30\x2c\x30\x29\x20\x66\x6f\x72\x20\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x20\x6e\x6f\x72\x6d\x61\x6c\x29\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x4c\x00\ +\x6f\x00\x20\x00\x73\x00\x74\x00\x69\x00\x6c\x00\x65\x00\x20\x00\ +\x64\x00\x69\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x65\x00\x72\x00\ +\x61\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x14\x54\x68\x65\x20\x6e\x75\x6d\x65\x72\x61\x74\ +\x69\x6f\x6e\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\xd0\x00\x47\x00\x6c\x00\x69\x00\x20\ +\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\ +\x00\x63\x00\x68\x00\x65\x00\x20\x00\x64\x00\x65\x00\x76\x00\x6f\ +\x00\x6e\x00\x6f\x00\x20\x00\x65\x00\x73\x00\x73\x00\x65\x00\x72\ +\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\ +\x00\x65\x00\x72\x00\x61\x00\x74\x00\x69\x00\x20\x00\x64\x00\x61\ +\x00\x20\x00\x71\x00\x75\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\ +\x00\x70\x00\x69\x00\x61\x00\x6e\x00\x6f\x00\x20\x00\x64\x00\x69\ +\x00\x20\x00\x73\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\ +\x00\x2e\x00\x20\x00\x56\x00\x75\x00\x6f\x00\x74\x00\x6f\x00\x20\ +\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x69\x00\x66\x00\x69\x00\x63\ +\x00\x61\x00\x20\x00\x74\x00\x75\x00\x74\x00\x74\x00\x6f\x00\x20\ +\x00\x69\x00\x6c\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x53\x54\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x74\x68\ +\x61\x74\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\ +\x64\x65\x72\x65\x64\x20\x62\x79\x20\x74\x68\x69\x73\x20\x73\x65\ +\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x2e\x20\x45\x6d\x70\ +\x74\x79\x20\x6d\x65\x61\x6e\x73\x20\x61\x6c\x6c\x20\x64\x6f\x63\ +\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x3c\x00\x4c\x00\x61\x00\x20\x00\x64\x00\x69\x00\x6d\ +\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\ +\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x62\x00\x6f\ +\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x61\x00\x73\x00\x73\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x54\x68\x65\x20\x73\x69\ +\x7a\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\x69\x73\x20\x62\ +\x75\x62\x62\x6c\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x7a\x00\x4c\x00\x61\x00\x20\x00\x6c\x00\x61\x00\ +\x72\x00\x67\x00\x68\x00\x65\x00\x7a\x00\x7a\x00\x61\x00\x20\x00\ +\x64\x00\x69\x00\x20\x00\x71\x00\x75\x00\x65\x00\x73\x00\x74\x00\ +\x6f\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x6f\x00\x2c\x00\x20\x00\x73\x00\x65\x00\x20\x00\x6e\x00\ +\x6f\x00\x6e\x00\x20\x00\x73\x00\x69\x00\x20\x00\x62\x00\x61\x00\ +\x73\x00\x61\x00\x20\x00\x73\x00\x75\x00\x20\x00\x75\x00\x6e\x00\ +\x20\x00\x70\x00\x72\x00\x6f\x00\x66\x00\x69\x00\x6c\x00\x6f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x34\x54\x68\x65\x20\x77\x69\x64\ +\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\ +\x6e\x74\x2c\x20\x69\x66\x20\x6e\x6f\x74\x20\x62\x61\x73\x65\x64\ +\x20\x6f\x6e\x20\x61\x20\x70\x72\x6f\x66\x69\x6c\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xa0\x00\x4c\x00\x61\ +\x00\x20\x00\x6c\x00\x61\x00\x72\x00\x67\x00\x68\x00\x65\x00\x7a\ +\x00\x7a\x00\x61\x00\x20\x00\x64\x00\x69\x00\x20\x00\x71\x00\x75\ +\x00\x65\x00\x73\x00\x74\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\ +\x00\x65\x00\x74\x00\x65\x00\x2e\x00\x20\x00\x4e\x00\x6f\x00\x6e\ +\x00\x20\x00\x75\x00\x73\x00\x61\x00\x74\x00\x6f\x00\x20\x00\x73\ +\x00\x65\x00\x20\x00\x71\x00\x75\x00\x65\x00\x73\x00\x74\x00\x61\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x74\x00\x65\x00\x20\ +\x00\xe8\x00\x20\x00\x62\x00\x61\x00\x73\x00\x61\x00\x74\x00\x61\ +\x00\x20\x00\x73\x00\x75\x00\x20\x00\x75\x00\x6e\x00\x61\x00\x20\ +\x00\x66\x00\x61\x00\x63\x00\x63\x00\x69\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x40\x54\x68\x65\x20\x77\x69\x64\x74\x68\x20\ +\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x2e\x20\x4e\x6f\ +\x74\x20\x75\x73\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\ +\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\ +\x61\x20\x66\x61\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x10\x00\x53\x00\x70\x00\x65\x00\x73\x00\x73\x00\ +\x6f\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\ +\x68\x69\x63\x6b\x6e\x65\x73\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x44\x00\x51\x00\x75\x00\x65\x00\x73\x00\ +\x74\x00\x61\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x20\x00\ +\x6e\x00\x6f\x00\x6e\x00\x20\x00\xe8\x00\x20\x00\x75\x00\x6e\x00\ +\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x6f\x00\x20\x00\ +\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x6f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1d\x54\x68\x69\x73\x20\x6d\x65\x73\x68\x20\x69\ +\x73\x20\x61\x6e\x20\x69\x6e\x76\x61\x6c\x69\x64\x20\x73\x6f\x6c\ +\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x08\x00\x54\x00\x69\x00\x70\x00\x6f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x54\x79\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x26\x00\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\ +\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x64\ +\x00\x69\x00\x20\x00\x74\x00\x69\x00\x70\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0f\x54\x79\x70\x65\x20\x63\x6f\x6e\x76\x65\ +\x72\x73\x69\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x36\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x73\ +\x00\x69\x00\x62\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x63\x00\x72\ +\x00\x65\x00\x61\x00\x72\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\ +\x00\x74\x00\x65\x00\x74\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x17\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\ +\x65\x61\x74\x65\x20\x61\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x40\x00\x49\x00\x6d\x00\x70\ +\x00\x6f\x00\x73\x00\x73\x00\x69\x00\x62\x00\x69\x00\x6c\x00\x65\ +\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x72\x00\x65\x00\x20\ +\x00\x69\x00\x6c\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\ +\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1a\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\ +\x65\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x53\x00\ +\x65\x00\x70\x00\x61\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0a\x55\x6e\x67\x72\x6f\x75\x70\x69\x6e\x67\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x56\x00\x69\ +\x00\x73\x00\x74\x00\x61\x00\x20\x00\x64\x00\x69\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x07\x56\x69\x65\x77\x20\x6f\x66\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x50\x00\x61\ +\x00\x72\x00\x65\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x1c\x00\x4f\x00\x70\x00\x7a\x00\x69\x00\x6f\x00\ +\x6e\x00\x69\x00\x20\x00\x50\x00\x61\x00\x72\x00\x65\x00\x74\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x57\x61\x6c\x6c\x20\ +\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x1c\x00\x54\x00\x72\x00\x61\x00\x63\x00\x63\ +\x00\x69\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x74\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x57\x61\x6c\x6c\ +\x54\x72\x61\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x12\x00\x4c\x00\x61\x00\x72\x00\x67\x00\x68\x00\x65\ +\x00\x7a\x00\x7a\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x57\x69\x64\x74\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x10\x00\x46\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x74\ +\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\x69\ +\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x08\x00\x57\x00\x69\x00\x72\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x05\x57\x69\x72\x65\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x4f\x00\x66\x00\x66\x00\ +\x73\x00\x65\x00\x74\x00\x20\x00\x5a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x5a\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2c\x00\x43\x00\x68\x00\x69\ +\x00\x75\x00\x64\x00\x69\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\ +\x00\x66\x00\x69\x00\x63\x00\x61\x00\x20\x00\x53\x00\x6b\x00\x65\ +\x00\x74\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\ +\x63\x6c\x6f\x73\x69\x6e\x67\x20\x53\x6b\x65\x74\x63\x68\x20\x65\ +\x64\x69\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x3a\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x65\x00\x6e\ +\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x73\x00\x6f\x00\x6c\ +\x00\x69\x00\x64\x00\x6f\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x20\ +\x00\x63\x00\x68\x00\x69\x00\x75\x00\x73\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1b\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x61\ +\x20\x6e\x6f\x6e\x2d\x63\x6c\x6f\x73\x65\x64\x20\x73\x6f\x6c\x69\ +\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x66\ +\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x65\x00\x6e\x00\x65\ +\x00\x20\x00\x66\x00\x61\x00\x63\x00\x63\x00\x65\x00\x20\x00\x63\ +\x00\x68\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x20\x00\x66\ +\x00\x61\x00\x6e\x00\x6e\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x72\ +\x00\x74\x00\x65\x00\x20\x00\x64\x00\x69\x00\x20\x00\x6e\x00\x65\ +\x00\x73\x00\x73\x00\x75\x00\x6e\x00\x20\x00\x73\x00\x6f\x00\x6c\ +\x00\x69\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\ +\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x66\x61\x63\x65\x73\x20\x74\ +\x68\x61\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x70\x61\x72\x74\ +\x20\x6f\x66\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x6e\x00\x6f\ +\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x65\ +\x00\x6e\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x63\x00\x75\x00\x6e\ +\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x6f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x19\x64\x6f\x65\x73\x6e\x27\x74\x20\ +\x63\x6f\x6e\x74\x61\x69\x6e\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\ +\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\ +\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x25\x00\x73\x00\x20\ +\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x6f\x00\x20\x00\x63\ +\x00\x6f\x00\x6e\x00\x20\x00\x73\x00\x75\x00\x63\x00\x63\x00\x65\ +\x00\x73\x00\x73\x00\x6f\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1d\x66\x69\x6c\x65\x20\x25\x73\x20\x73\x75\x63\x63\x65\x73\ +\x73\x66\x75\x6c\x6c\x79\x20\x63\x72\x65\x61\x74\x65\x64\x2e\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x6e\ +\x00\x6f\x00\x6e\x00\x20\x00\xe8\x00\x20\x00\x63\x00\x68\x00\x69\ +\x00\x75\x00\x73\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ +\x69\x73\x20\x6e\x6f\x74\x20\x63\x6c\x6f\x73\x65\x64\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x6e\x00\x6f\ +\x00\x6e\x00\x20\x00\xe8\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\ +\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x69\x73\ +\x20\x6e\x6f\x74\x20\x76\x61\x6c\x69\x64\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x64\x00\x70\x00\x79\x00\x63\x00\ +\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x6e\x00\ +\x6f\x00\x6e\x00\x20\x00\x74\x00\x72\x00\x6f\x00\x76\x00\x61\x00\ +\x74\x00\x6f\x00\x2c\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x73\x00\ +\x75\x00\x6e\x00\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x20\x00\x63\x00\x6f\x00\ +\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x2e\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x29\x70\x79\x63\x6f\x6c\x6c\x61\x64\x61\ +\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x6e\x6f\x20\x63\ +\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\x6f\x72\x74\x2e\x0a\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x84\x00\ +\x72\x00\x69\x00\x6d\x00\x6f\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\ +\x65\x00\x20\x00\x64\x00\x69\x00\x20\x00\x73\x00\x6b\x00\x65\x00\ +\x74\x00\x63\x00\x68\x00\x20\x00\x64\x00\x69\x00\x20\x00\x73\x00\ +\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x6f\x00\x20\x00\ +\x70\x00\x65\x00\x72\x00\x20\x00\x65\x00\x76\x00\x69\x00\x74\x00\ +\x61\x00\x72\x00\x65\x00\x20\x00\x72\x00\x69\x00\x66\x00\x65\x00\ +\x72\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x20\x00\ +\x69\x00\x6e\x00\x63\x00\x72\x00\x6f\x00\x63\x00\x69\x00\x61\x00\ +\x74\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x72\x65\x6d\ +\x6f\x76\x69\x6e\x67\x20\x73\x6b\x65\x74\x63\x68\x20\x73\x75\x70\ +\x70\x6f\x72\x74\x20\x74\x6f\x20\x61\x76\x6f\x69\x64\x20\x63\x72\ +\x6f\x73\x73\x2d\x72\x65\x66\x65\x72\x65\x6e\x63\x69\x6e\x67\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2c\x00\x73\ +\x00\x63\x00\x72\x00\x69\x00\x74\x00\x74\x00\x6f\x00\x20\x00\x63\ +\x00\x6f\x00\x72\x00\x72\x00\x65\x00\x74\x00\x74\x00\x61\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x20\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x15\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\ +\x20\x77\x72\x69\x74\x74\x65\x6e\x20\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x69\x00\x20\x00\x63\x00\x6f\ +\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x69\ +\x00\x20\x00\x64\x00\x69\x00\x20\x00\x71\x00\x75\x00\x65\x00\x73\ +\x00\x74\x00\x61\x00\x20\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x73\ +\x00\x74\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\ +\x74\x68\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\ +\x66\x20\x74\x68\x69\x73\x20\x77\x69\x6e\x64\x6f\x77\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x26\x00\x41\x00\x67\ +\x00\x67\x00\x69\x00\x75\x00\x6e\x00\x67\x00\x69\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\ +\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\ +\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x68\x00\x41\x00\x67\ +\x00\x67\x00\x69\x00\x75\x00\x6e\x00\x67\x00\x65\x00\x20\x00\x69\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ +\x00\x6e\x00\x74\x00\x69\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\ +\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\x69\x00\x20\ +\x00\x61\x00\x6c\x00\x6c\x00\x27\x00\x6f\x00\x67\x00\x67\x00\x65\ +\x00\x74\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x74\x00\x74\x00\x69\ +\x00\x76\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x41\x64\ +\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\ +\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\ +\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\ +\x00\x08\x00\x41\x00\x73\x00\x73\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x41\x78\x69\x73\x07\x00\x00\x00\x09\x41\x72\x63\ +\x68\x5f\x41\x78\x69\x73\x01\x03\x00\x00\x00\x30\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x73\x00\x69\ +\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x61\x00\x20\x00\x64\x00\x69\ +\x00\x20\x00\x61\x00\x73\x00\x73\x00\x69\x00\x2e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\ +\x20\x61\x78\x69\x73\x20\x73\x79\x73\x74\x65\x6d\x2e\x07\x00\x00\ +\x00\x09\x41\x72\x63\x68\x5f\x41\x78\x69\x73\x01\x03\x00\x00\x00\ +\x10\x00\x45\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\x69\x00\ +\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\x6c\x64\ +\x69\x6e\x67\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\ +\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x7c\x00\x43\x00\x72\x00\ +\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x67\x00\ +\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\x45\x00\x64\x00\ +\x69\x00\x66\x00\x69\x00\x63\x00\x69\x00\x6f\x00\x20\x00\x63\x00\ +\x68\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\ +\x65\x00\x6e\x00\x65\x00\x20\x00\x67\x00\x6c\x00\x69\x00\x20\x00\ +\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\ +\x61\x00\x74\x00\x69\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x35\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x62\x75\x69\x6c\x64\ +\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\ +\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\ +\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x0a\x00\x43\ +\x00\x65\x00\x6c\x00\x6c\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x43\x65\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\ +\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x74\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x67\x00\x67\ +\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\x43\x00\x65\x00\x6c\ +\x00\x6c\x00\x61\x00\x20\x00\x63\x00\x68\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x65\x00\x6e\x00\x65\x00\x20\ +\x00\x67\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\ +\x00\x74\x00\x74\x00\x69\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\ +\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\x69\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x20\x63\x65\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\ +\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x09\x41\x72\x63\ +\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x12\x00\x43\x00\x6f\ +\x00\x6e\x00\x74\x00\x72\x00\x6f\x00\x6c\x00\x6c\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x43\x68\x65\x63\x6b\x07\x00\x00\ +\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\x01\x03\x00\x00\ +\x00\x5c\x00\x43\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x6f\x00\x6c\ +\x00\x6c\x00\x61\x00\x20\x00\x67\x00\x6c\x00\x69\x00\x20\x00\x6f\ +\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\x73\ +\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\ +\x00\x74\x00\x69\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x70\ +\x00\x72\x00\x6f\x00\x62\x00\x6c\x00\x65\x00\x6d\x00\x69\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x28\x43\x68\x65\x63\x6b\x73\x20\x74\ +\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x20\x66\x6f\x72\x20\x70\x72\x6f\x62\x6c\x65\x6d\x73\ +\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\x01\ +\x03\x00\x00\x00\x16\x00\x43\x00\x68\x00\x69\x00\x75\x00\x64\x00\ +\x69\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x69\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0b\x43\x6c\x6f\x73\x65\x20\x68\x6f\x6c\x65\x73\ +\x07\x00\x00\x00\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\ +\x6f\x6c\x65\x73\x01\x03\x00\x00\x00\x74\x00\x43\x00\x68\x00\x69\ +\x00\x75\x00\x64\x00\x65\x00\x20\x00\x69\x00\x20\x00\x66\x00\x6f\ +\x00\x72\x00\x69\x00\x20\x00\x6e\x00\x65\x00\x6c\x00\x6c\x00\x65\ +\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x65\x00\x20\x00\x61\ +\x00\x70\x00\x65\x00\x72\x00\x74\x00\x65\x00\x2c\x00\x20\x00\x74\ +\x00\x72\x00\x61\x00\x73\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\ +\x00\x6e\x00\x64\x00\x6f\x00\x6c\x00\x65\x00\x20\x00\x69\x00\x6e\ +\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x69\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x30\x43\x6c\x6f\x73\x65\x73\x20\x68\ +\x6f\x6c\x65\x73\x20\x69\x6e\x20\x6f\x70\x65\x6e\x20\x73\x68\x61\ +\x70\x65\x73\x2c\x20\x74\x75\x72\x6e\x69\x6e\x67\x20\x74\x68\x65\ +\x6d\x20\x73\x6f\x6c\x69\x64\x73\x07\x00\x00\x00\x0f\x41\x72\x63\ +\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\x01\x03\x00\x00\ +\x00\x74\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\ +\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\ +\x00\x20\x00\x50\x00\x69\x00\x61\x00\x6e\x00\x6f\x00\x20\x00\x63\ +\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x69\ +\x00\x65\x00\x6e\x00\x65\x00\x20\x00\x67\x00\x6c\x00\x69\x00\x20\ +\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\ +\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\ +\x00\x61\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x66\x6c\x6f\x6f\x72\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\ +\x01\x03\x00\x00\x00\x0a\x00\x50\x00\x69\x00\x61\x00\x6e\x00\x6f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\ +\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\ +\x00\x00\x00\x1e\x00\x44\x00\x61\x00\x20\x00\x4d\x00\x65\x00\x73\ +\x00\x68\x00\x20\x00\x61\x00\x20\x00\x46\x00\x6f\x00\x72\x00\x6d\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\ +\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x10\x41\x72\ +\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\ +\x00\x00\x00\x66\x00\x54\x00\x72\x00\x61\x00\x73\x00\x66\x00\x6f\ +\x00\x72\x00\x6d\x00\x61\x00\x20\x00\x6c\x00\x65\x00\x20\x00\x6d\ +\x00\x65\x00\x73\x00\x68\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\ +\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\x65\x00\x20\ +\x00\x69\x00\x6e\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\ +\x00\x74\x00\x69\x00\x20\x00\x50\x00\x61\x00\x72\x00\x74\x00\x20\ +\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2d\x54\x75\x72\x6e\x73\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x50\ +\x61\x72\x74\x20\x53\x68\x61\x70\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\ +\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x24\x00\x52\x00\x69\ +\x00\x6d\x00\x75\x00\x6f\x00\x76\x00\x69\x00\x20\x00\x63\x00\x6f\ +\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\x6d\x6f\x76\x65\ +\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\ +\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\xa0\ +\x00\x52\x00\x69\x00\x6d\x00\x75\x00\x6f\x00\x76\x00\x65\x00\x20\ +\x00\x69\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ +\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x20\x00\x73\x00\x65\x00\x6c\ +\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\x69\ +\x00\x20\x00\x64\x00\x61\x00\x69\x00\x20\x00\x6c\x00\x6f\x00\x72\ +\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x64\x00\x72\x00\x69\x00\x2c\ +\x00\x20\x00\x6f\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x20\ +\x00\x75\x00\x6e\x00\x20\x00\x62\x00\x75\x00\x63\x00\x6f\x00\x20\ +\x00\x69\x00\x6e\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x63\x00\x6f\ +\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x65\x6d\x6f\x76\x65\ +\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\ +\x65\x69\x72\x20\x70\x61\x72\x65\x6e\x74\x73\x2c\x20\x6f\x72\x20\ +\x63\x72\x65\x61\x74\x65\x20\x61\x20\x68\x6f\x6c\x65\x20\x69\x6e\ +\x20\x61\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\ +\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\ +\x00\x2a\x00\x52\x00\x69\x00\x6d\x00\x75\x00\x6f\x00\x76\x00\x69\ +\x00\x20\x00\x46\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x20\x00\x64\ +\x00\x61\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x16\x52\x65\x6d\x6f\x76\x65\x20\x53\x68\x61\ +\x70\x65\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x07\x00\x00\x00\ +\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\ +\x65\x01\x03\x00\x00\x00\x58\x00\x52\x00\x69\x00\x6d\x00\x75\x00\ +\x6f\x00\x76\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x20\x00\x66\x00\ +\x6f\x00\x72\x00\x6d\x00\x65\x00\x20\x00\x63\x00\x75\x00\x62\x00\ +\x69\x00\x63\x00\x68\x00\x65\x00\x20\x00\x64\x00\x61\x00\x69\x00\ +\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\ +\x6e\x00\x74\x00\x69\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x29\x52\x65\x6d\x6f\x76\x65\x73\ +\x20\x63\x75\x62\x69\x63\x20\x73\x68\x61\x70\x65\x73\x20\x66\x72\ +\x6f\x6d\x20\x41\x72\x63\x68\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\ +\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x78\x00\x43\x00\ +\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\ +\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\x74\x00\ +\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x61\x00\x6c\x00\ +\x6c\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x63\x00\x69\x00\ +\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\ +\x6f\x00\x6e\x00\x61\x00\x74\x00\x61\x00\x20\x00\x64\x00\x69\x00\ +\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\ +\x74\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x39\x43\ +\x72\x65\x61\x74\x65\x73\x20\x61\x20\x72\x6f\x6f\x66\x20\x6f\x62\ +\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x66\x61\x63\x65\x20\x6f\x66\x20\x61\ +\x6e\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x09\x41\x72\x63\ +\x68\x5f\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x0a\x00\x54\x00\x65\ +\x00\x74\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x52\x6f\x6f\x66\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x52\x6f\ +\x6f\x66\x01\x03\x00\x00\x00\x8c\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\ +\x00\x74\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x69\x00\x61\x00\x6e\ +\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x20\x00\x73\x00\x65\x00\x7a\ +\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x63\x00\x68\x00\x65\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x72\x00\x65\x00\x6e\ +\x00\x64\x00\x65\x00\x20\x00\x67\x00\x6c\x00\x69\x00\x20\x00\x6f\ +\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\x73\ +\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\ +\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3e\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\ +\x70\x6c\x61\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x69\x6e\ +\x63\x6c\x75\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\ +\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\ +\x6e\x65\x01\x03\x00\x00\x00\x20\x00\x50\x00\x69\x00\x61\x00\x6e\ +\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x20\x00\x73\x00\x65\x00\x7a\ +\x00\x69\x00\x6f\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\ +\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\ +\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x3c\x00\x53\x00\x65\x00\ +\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x20\x00\ +\x6c\x00\x65\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x20\x00\ +\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\ +\x66\x00\x6f\x00\x6c\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1a\x53\x65\x6c\x65\x63\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\ +\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\x00\x19\ +\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\ +\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x96\x00\ +\x53\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\ +\x61\x00\x20\x00\x74\x00\x75\x00\x74\x00\x74\x00\x65\x00\x20\x00\ +\x6c\x00\x65\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x20\x00\ +\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\ +\x66\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x6e\x00\x65\x00\x6c\x00\ +\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x6f\x00\x20\x00\x6f\x00\x20\x00\x6e\x00\x65\x00\x69\x00\ +\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\x69\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\ +\x61\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x53\ +\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6e\x6f\x6e\x2d\x6d\ +\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x66\ +\x72\x6f\x6d\x20\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\ +\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x67\x72\x6f\x75\x70\x73\x07\x00\x00\x00\ +\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\ +\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x74\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\ +\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\ +\x00\x73\x00\x69\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x68\x00\x65\ +\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x65\x00\x6e\ +\x00\x65\x00\x20\x00\x67\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\x67\ +\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\ +\x00\x69\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x20\x73\x69\x74\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\ +\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\ +\x00\x00\x08\x00\x53\x00\x69\x00\x74\x00\x6f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\x00\x00\x00\x09\x41\x72\ +\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\x16\x00\x44\x00\ +\x69\x00\x76\x00\x69\x00\x64\x00\x69\x00\x20\x00\x4d\x00\x65\x00\ +\x73\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\ +\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x0e\x41\x72\x63\x68\ +\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\x6e\ +\x00\x44\x00\x69\x00\x76\x00\x69\x00\x64\x00\x65\x00\x20\x00\x6c\ +\x00\x65\x00\x20\x00\x4d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\ +\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\ +\x00\x6e\x00\x61\x00\x74\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ +\x00\x74\x00\x69\x00\x20\x00\x69\x00\x6e\x00\x64\x00\x69\x00\x70\ +\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x69\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x32\x53\x70\x6c\x69\x74\x73\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\ +\x6e\x74\x6f\x20\x69\x6e\x64\x65\x70\x65\x6e\x64\x65\x6e\x74\x20\ +\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x0e\x41\ +\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\ +\x00\x00\xbc\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\ +\x6e\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\ +\x6f\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x74\x00\x74\x00\ +\x75\x00\x72\x00\x61\x00\x20\x00\x64\x00\x61\x00\x20\x00\x7a\x00\ +\x65\x00\x72\x00\x6f\x00\x20\x00\x6f\x00\x20\x00\x64\x00\x61\x00\ +\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\ +\x74\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\x6f\x00\x20\x00\ +\x28\x00\x73\x00\x63\x00\x68\x00\x69\x00\x7a\x00\x7a\x00\x6f\x00\ +\x2c\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x2c\x00\x20\x00\ +\x66\x00\x61\x00\x63\x00\x63\x00\x69\x00\x61\x00\x20\x00\x6f\x00\ +\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x6f\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x5f\x43\x72\x65\x61\x74\x65\x73\ +\x20\x61\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\ +\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x73\x6b\x65\x74\ +\x63\x68\x2c\x20\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\ +\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x0e\x41\x72\x63\ +\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\ +\x12\x00\x53\x00\x74\x00\x72\x00\x75\x00\x74\x00\x74\x00\x75\x00\ +\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\ +\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\ +\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\xa4\x00\ +\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\ +\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\ +\x50\x00\x61\x00\x72\x00\x65\x00\x74\x00\x65\x00\x20\x00\x64\x00\ +\x61\x00\x20\x00\x7a\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x6f\x00\ +\x20\x00\x64\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\ +\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\ +\x74\x00\x6f\x00\x20\x00\x28\x00\x77\x00\x69\x00\x72\x00\x65\x00\ +\x2c\x00\x20\x00\x66\x00\x61\x00\x63\x00\x63\x00\x69\x00\x61\x00\ +\x20\x00\x6f\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\ +\x6f\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x77\x61\x6c\x6c\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\ +\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\ +\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\ +\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\ +\x00\x00\x0c\x00\x50\x00\x61\x00\x72\x00\x65\x00\x74\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\ +\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\ +\x9c\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\ +\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\ +\x20\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x74\x00\x72\x00\ +\x61\x00\x20\x00\x64\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\ +\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\ +\x61\x00\x74\x00\x6f\x00\x20\x00\x28\x00\x77\x00\x69\x00\x72\x00\ +\x65\x00\x2c\x00\x20\x00\x72\x00\x65\x00\x74\x00\x74\x00\x61\x00\ +\x6e\x00\x67\x00\x6f\x00\x6c\x00\x6f\x00\x20\x00\x6f\x00\x20\x00\ +\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4a\x43\x72\x65\x61\x74\x65\x73\x20\x61\ +\x20\x77\x69\x6e\x64\x6f\x77\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\ +\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x72\x65\x63\ +\x74\x61\x6e\x67\x6c\x65\x20\x6f\x72\x20\x73\x6b\x65\x74\x63\x68\ +\x29\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\ +\x77\x01\x03\x00\x00\x00\x10\x00\x46\x00\x69\x00\x6e\x00\x65\x00\ +\x73\x00\x74\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x0b\x41\x72\x63\x68\ +\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x52\x00\ +\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x32\x00\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x32\ +\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x52\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x67\x00\x72\ +\x00\x75\x00\x70\x00\x70\x00\x69\x00\x20\x00\x70\x00\x65\x00\x72\ +\x00\x20\x00\x6f\x00\x67\x00\x6e\x00\x69\x00\x20\x00\x74\x00\x69\ +\x00\x70\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x20\x00\x6f\x00\x67\ +\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\x41\x00\x72\ +\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x43\x72\ +\x65\x61\x74\x65\x73\x20\x67\x72\x6f\x75\x70\x73\x20\x66\x6f\x72\ +\x20\x65\x61\x63\x68\x20\x41\x72\x63\x68\x20\x6f\x62\x6a\x65\x63\ +\x74\x20\x74\x79\x70\x65\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5e\x00\x52\x00\ +\x61\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x6f\x00\x20\x00\ +\x64\x00\x69\x00\x20\x00\x73\x00\x70\x00\x65\x00\x73\x00\x73\x00\ +\x6f\x00\x72\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\ +\x65\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\ +\x61\x00\x72\x00\x65\x00\x65\x00\x20\x00\x64\x00\x69\x00\x20\x00\ +\x74\x00\x61\x00\x67\x00\x6c\x00\x69\x00\x6f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1e\x43\x75\x74\x20\x61\x72\x65\x61\x73\x20\x6c\ +\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\x73\x20\x72\x61\ +\x74\x69\x6f\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x46\x00\x43\x00\x6f\x00\x6c\ +\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\ +\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\x6f\x00\x20\ +\x00\x70\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x65\x00\x20\x00\x73\ +\x00\x74\x00\x72\x00\x75\x00\x74\x00\x74\x00\x75\x00\x72\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x44\x65\x66\x61\x75\x6c\ +\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x74\x72\x75\ +\x63\x74\x75\x72\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x40\x00\x43\x00\ +\x6f\x00\x6c\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x70\x00\x72\x00\ +\x65\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\ +\x6f\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x65\x00\ +\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x74\x00\x69\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x44\x65\x66\x61\x75\x6c\x74\x20\x63\ +\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\x61\x6c\x6c\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x44\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ +\x65\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\x00\x65\x00\x66\x00\ +\x69\x00\x6e\x00\x69\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x65\x00\ +\x72\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x66\x00\x69\x00\x6e\x00\ +\x65\x00\x73\x00\x74\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x19\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\ +\x20\x66\x6f\x72\x20\x77\x69\x6e\x64\x6f\x77\x73\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x34\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x74\x00\ +\x61\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x69\x00\x20\x00\x67\x00\ +\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x69\x00\x20\x00\ +\x41\x00\x72\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x15\x47\x65\x6e\x65\x72\x61\x6c\x20\x41\x72\x63\x68\x20\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x49\x00\ +\x6d\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x7a\x00\x69\x00\ +\x6f\x00\x6e\x00\x69\x00\x20\x00\x67\x00\x65\x00\x6e\x00\x65\x00\ +\x72\x00\x61\x00\x6c\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\ +\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x52\x00\x61\x00\x67\x00\x67\ +\x00\x72\x00\x75\x00\x70\x00\x70\x00\x61\x00\x20\x00\x63\x00\x6f\ +\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x69\ +\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x74\x00\x69\x00\x70\ +\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x72\x6f\x75\ +\x70\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x62\x79\x20\ +\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x49\x00\x6d\ +\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x20\x00\x49\x00\x46\ +\x00\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x49\x46\x43\x20\ +\x69\x6d\x70\x6f\x72\x74\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\xc4\x00\x53\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\ +\x6f\x00\x6e\x00\x61\x00\x74\x00\x61\x00\x2c\x00\x20\x00\x73\x00\ +\x61\x00\x72\x00\x72\x00\xe0\x00\x20\x00\x75\x00\x74\x00\x69\x00\ +\x6c\x00\x69\x00\x7a\x00\x7a\x00\x61\x00\x74\x00\x6f\x00\x20\x00\ +\x6c\x00\x27\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x61\x00\x74\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x49\x00\x46\x00\ +\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\ +\x6c\x00\x6c\x00\x2c\x00\x20\x00\x70\x00\x65\x00\x72\x00\x6d\x00\ +\x65\x00\x74\x00\x74\x00\x65\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\ +\x64\x00\x69\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x00\x61\x00\x72\x00\x65\x00\x20\x00\x70\x00\x69\x00\xf9\x00\ +\x20\x00\x74\x00\x69\x00\x70\x00\x69\x00\x20\x00\x49\x00\x46\x00\ +\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x49\x66\x20\x74\x68\ +\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\ +\x68\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\ +\x69\x6d\x70\x6f\x72\x74\x65\x72\x20\x77\x69\x6c\x6c\x20\x62\x65\ +\x20\x75\x73\x65\x64\x2c\x20\x61\x6c\x6c\x6f\x77\x69\x6e\x67\x20\ +\x74\x6f\x20\x69\x6d\x70\x6f\x72\x74\x20\x6d\x6f\x72\x65\x20\x49\ +\x46\x43\x20\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5e\x00\ +\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x20\x00\ +\x6d\x00\x6f\x00\x62\x00\x69\x00\x6c\x00\x69\x00\x20\x00\x28\x00\ +\x70\x00\x75\x00\xf2\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\ +\x65\x00\x72\x00\x65\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x6d\x00\ +\x6f\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\x6f\x00\x20\x00\x70\x00\ +\x65\x00\x73\x00\x61\x00\x6e\x00\x74\x00\x65\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x2b\x49\x6d\x70\x6f\x72\x74\x20\x66\x75\ +\x72\x6e\x69\x74\x75\x72\x65\x20\x28\x63\x61\x6e\x20\x6d\x61\x6b\ +\x65\x20\x74\x68\x65\x20\x6d\x6f\x64\x65\x6c\x20\x68\x65\x61\x76\ +\x79\x29\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x70\x00\x56\x00\x69\x00\x73\x00\ +\x75\x00\x61\x00\x6c\x00\x69\x00\x7a\x00\x7a\x00\x61\x00\x20\x00\ +\x69\x00\x6e\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x7a\x00\ +\x69\x00\x6f\x00\x6e\x00\x69\x00\x20\x00\x64\x00\x69\x00\x20\x00\ +\x64\x00\x65\x00\x62\x00\x75\x00\x67\x00\x20\x00\x64\x00\x75\x00\ +\x72\x00\x61\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x69\x00\x6c\x00\ +\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x32\x00\x44\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2a\x53\x68\x6f\x77\x20\x64\x65\x62\x75\x67\x20\x69\x6e\ +\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x20\x64\x75\x72\x69\x6e\x67\ +\x20\x32\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\ +\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x50\x00\x56\x00\x69\x00\x73\x00\x75\x00\x61\x00\x6c\ +\x00\x69\x00\x7a\x00\x7a\x00\x61\x00\x20\x00\x69\x00\x20\x00\x6d\ +\x00\x65\x00\x73\x00\x73\x00\x61\x00\x67\x00\x67\x00\x69\x00\x20\ +\x00\x64\x00\x69\x00\x20\x00\x64\x00\x65\x00\x62\x00\x75\x00\x67\ +\x00\x20\x00\x64\x00\x69\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\ +\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x53\x68\ +\x6f\x77\x20\x72\x65\x6e\x64\x65\x72\x65\x72\x20\x64\x65\x62\x75\ +\x67\x20\x6d\x65\x73\x73\x61\x67\x65\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\xc8\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x69\x00\ +\x63\x00\x61\x00\x20\x00\x71\x00\x75\x00\x61\x00\x6e\x00\x74\x00\ +\x65\x00\x20\x00\x76\x00\x6f\x00\x6c\x00\x74\x00\x65\x00\x20\x00\ +\x6c\x00\x6f\x00\x20\x00\x73\x00\x70\x00\x65\x00\x73\x00\x73\x00\ +\x6f\x00\x72\x00\x65\x00\x20\x00\x64\x00\x69\x00\x20\x00\x6c\x00\ +\x69\x00\x6e\x00\x65\x00\x61\x00\x20\x00\x76\x00\x69\x00\x73\x00\ +\x75\x00\x61\x00\x6c\x00\x69\x00\x7a\x00\x7a\x00\x61\x00\x74\x00\ +\x6f\x00\x20\x00\x64\x00\x65\x00\x76\x00\x65\x00\x20\x00\x65\x00\ +\x73\x00\x73\x00\x65\x00\x72\x00\x65\x00\x20\x00\x61\x00\x70\x00\ +\x70\x00\x6c\x00\x69\x00\x63\x00\x61\x00\x74\x00\x6f\x00\x20\x00\ +\x70\x00\x65\x00\x72\x00\x20\x00\x74\x00\x61\x00\x67\x00\x6c\x00\ +\x69\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x20\x00\ +\x6c\x00\x69\x00\x6e\x00\x65\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x4f\x53\x70\x65\x63\x69\x66\x69\x65\x73\x20\x68\x6f\x77\ +\x20\x6d\x61\x6e\x79\x20\x74\x69\x6d\x65\x73\x20\x74\x68\x65\x20\ +\x76\x69\x65\x77\x65\x64\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\ +\x6b\x6e\x65\x73\x73\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x70\ +\x70\x6c\x69\x65\x64\x20\x74\x6f\x20\x63\x75\x74\x20\x6c\x69\x6e\ +\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x78\x00\x51\x00\x75\x00\x65\x00\ +\x73\x00\x74\x00\x6f\x00\x20\x00\xe8\x00\x20\x00\x69\x00\x6c\x00\ +\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x65\x00\x20\x00\ +\x70\x00\x72\x00\x65\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\ +\x69\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\ +\x69\x00\x20\x00\x6e\x00\x75\x00\x6f\x00\x76\x00\x69\x00\x20\x00\ +\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\ +\x53\x00\x74\x00\x72\x00\x75\x00\x74\x00\x74\x00\x75\x00\x72\x00\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x54\x68\x69\x73\x20\ +\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\ +\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x53\x74\x72\ +\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x72\x00\x51\x00\x75\x00\x65\x00\x73\x00\x74\x00\ +\x6f\x00\x20\x00\xe8\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x63\x00\ +\x6f\x00\x6c\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x70\x00\x72\x00\ +\x65\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\ +\x6f\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x69\x00\x20\x00\ +\x6e\x00\x75\x00\x6f\x00\x76\x00\x69\x00\x20\x00\x6f\x00\x67\x00\ +\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\x50\x00\x61\x00\ +\x72\x00\x65\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\ +\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\ +\x65\x77\x20\x57\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\ +\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x4e\x00\x53\x00\x65\x00\x20\x00\x64\x00\x69\ +\x00\x73\x00\x70\x00\x6f\x00\x6e\x00\x69\x00\x62\x00\x69\x00\x6c\ +\x00\x65\x00\x2c\x00\x20\x00\x75\x00\x74\x00\x69\x00\x6c\x00\x69\ +\x00\x7a\x00\x7a\x00\x61\x00\x72\x00\x65\x00\x20\x00\x49\x00\x46\ +\x00\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\ +\x00\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\ +\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\x69\ +\x66\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x1a\x00\x26\x00\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\x74\ +\x00\x65\x00\x74\x00\x74\x00\x75\x00\x72\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x26\x41\x72\x63\x68\x69\x74\x65\x63\x74\ +\x75\x72\x65\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0c\x00\x26\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x26\x44\x72\x61\x66\x74\x07\x00\ +\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x00\x53\x00\ +\x74\x00\x72\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x69\x00\ +\x20\x00\x41\x00\x72\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0a\x41\x72\x63\x68\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\ +\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x53\x00\x74\ +\x00\x72\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x20\ +\x00\x64\x00\x69\x00\x20\x00\x63\x00\x61\x00\x6c\x00\x63\x00\x6f\ +\x00\x6c\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x43\x61\ +\x6c\x63\x75\x6c\x61\x74\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\ +\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x53\ +\x00\x74\x00\x72\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x69\ +\x00\x20\x00\x64\x00\x69\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\ +\x00\x65\x00\x73\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x43\x6f\x6e\x74\x65\x78\x74\x20\x54\x6f\x6f\x6c\x73\x07\ +\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x30\x00\x53\ +\x00\x74\x00\x72\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x69\ +\x00\x20\x00\x64\x00\x69\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\ +\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x10\x43\x6f\x6e\x76\x65\x72\x73\x69\ +\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\ +\x68\x01\x03\x00\x00\x00\x36\x00\x53\x00\x74\x00\x72\x00\x75\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x20\x00\x64\x00\x69\x00\ +\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\ +\x61\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\ +\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ +\x03\x00\x00\x00\x1e\x00\x53\x00\x74\x00\x72\x00\x75\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x69\x00\x20\x00\x44\x00\x72\x00\x61\x00\ +\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x72\x61\ +\x66\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\ +\x68\x01\x03\x00\x00\x00\x7e\x00\x70\x00\x79\x00\x63\x00\x6f\x00\ +\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\ +\x6e\x00\x20\x00\x74\x00\x72\x00\x6f\x00\x76\x00\x61\x00\x74\x00\ +\x6f\x00\x2c\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x73\x00\x75\x00\ +\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x6f\x00\x20\x00\x61\x00\ +\x20\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\ +\x20\x00\x73\x00\x61\x00\x72\x00\xe0\x00\x20\x00\x64\x00\x69\x00\ +\x73\x00\x61\x00\x62\x00\x69\x00\x6c\x00\x69\x00\x74\x00\x61\x00\ +\x74\x00\x6f\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x70\ +\x79\x63\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\ +\x6e\x64\x2c\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\ +\x6f\x72\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x69\x73\x61\ +\x62\x6c\x65\x64\x2e\x0a\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ +\ +\x00\x00\x3b\x2f\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x04\xf8\x00\x00\x47\xa4\x00\x00\x00\x33\x00\x04\x8e\xc3\ +\x00\x00\x01\x07\x00\x04\x8f\x03\x00\x00\x01\xb4\x00\x04\x8f\x03\ +\x00\x00\x1d\x80\x00\x04\x9c\x2c\x00\x00\x1e\x86\x00\x04\xbb\x04\ +\x00\x00\x05\xd6\x00\x05\x48\x35\x00\x00\x0a\x0b\x00\x05\x67\xd5\ +\x00\x00\x0b\x59\x00\x05\x96\x56\x00\x00\x0b\x9b\x00\x05\x96\x56\ +\x00\x00\x24\x84\x00\x05\xa0\xa5\x00\x00\x0b\xbc\x00\x05\xa0\xa5\ +\x00\x00\x27\xbb\x00\x05\xc0\x65\x00\x00\x16\xdd\x00\x05\xd8\x2c\ +\x00\x00\x17\xf8\x00\x05\xd8\x2c\x00\x00\x2a\x09\x00\x32\x23\xa5\ +\x00\x00\x33\xf2\x00\x39\xdf\x33\x00\x00\x2d\xf1\x00\x48\x4e\x25\ +\x00\x00\x00\xe5\x00\x49\xeb\x9b\x00\x00\x1f\x14\x00\x4b\x55\x33\ +\x00\x00\x2e\xd7\x00\x4d\x36\x62\x00\x00\x07\x83\x00\x4d\x36\x62\ +\x00\x00\x21\x28\x00\x5d\xfb\xa8\x00\x00\x18\x7a\x00\x5e\x08\xc3\ +\x00\x00\x18\xbf\x00\x61\xb0\x33\x00\x00\x11\xb7\x00\x62\x9b\xa8\ +\x00\x00\x0c\x1d\x00\x62\x9b\xa8\x00\x00\x27\xe1\x00\x8a\x92\x57\ +\x00\x00\x00\x00\x00\xaa\x80\x25\x00\x00\x05\x69\x00\xc9\x7b\xf3\ +\x00\x00\x0e\x2e\x00\xfb\x72\xf3\x00\x00\x2d\x9f\x01\x19\x4e\x85\ +\x00\x00\x04\x69\x01\x55\x2b\xf5\x00\x00\x03\xfa\x01\x79\x17\x94\ +\x00\x00\x1a\xd8\x01\x8e\x84\xa6\x00\x00\x0d\x68\x01\xad\x7d\xe3\ +\x00\x00\x34\xff\x01\xaf\x41\x84\x00\x00\x1a\x28\x01\xf7\xa8\x83\ +\x00\x00\x33\x07\x02\x01\x7f\xd3\x00\x00\x0c\x72\x02\x29\xb3\xc4\ +\x00\x00\x23\xbb\x02\x5a\x4a\x53\x00\x00\x10\xd5\x02\x5f\xc9\x59\ +\x00\x00\x29\x6d\x02\x66\x7f\x7e\x00\x00\x0a\xb1\x02\x6a\x77\x99\ +\x00\x00\x30\x1f\x02\x80\x5f\x17\x00\x00\x1b\x95\x02\x82\x88\x3a\ +\x00\x00\x03\x34\x02\x85\x4f\xf5\x00\x00\x14\x19\x02\x90\x40\x65\ +\x00\x00\x09\xdb\x02\x90\x40\x65\x00\x00\x21\x50\x02\x94\x16\x35\ +\x00\x00\x0c\x9b\x02\xab\x87\xd4\x00\x00\x34\x1e\x02\xb8\xae\x74\ +\x00\x00\x22\x38\x02\xc3\x91\x93\x00\x00\x31\x0e\x02\xcd\x05\xa3\ +\x00\x00\x21\x8c\x02\xdd\x14\x14\x00\x00\x22\x70\x03\x13\x15\x3e\ +\x00\x00\x08\x87\x03\x1b\xda\x15\x00\x00\x18\x46\x03\x1d\xe8\xe3\ +\x00\x00\x2c\x9c\x03\x29\x7a\x34\x00\x00\x00\x9f\x03\x2c\xe9\xb3\ +\x00\x00\x12\x1e\x03\x92\x51\xe0\x00\x00\x0b\xdd\x03\xa2\xec\x23\ +\x00\x00\x18\x19\x03\xbe\xb0\x34\x00\x00\x17\x6a\x03\xce\x98\xe5\ +\x00\x00\x02\xea\x03\xd4\x22\x74\x00\x00\x1c\xea\x04\x35\xfa\x55\ +\x00\x00\x0d\xdb\x04\xc3\x75\x44\x00\x00\x14\x6e\x04\xdb\x21\x3e\ +\x00\x00\x27\x52\x04\xeb\xfd\xf4\x00\x00\x07\xca\x05\x14\x5b\x83\ +\x00\x00\x05\x8e\x05\x18\xda\xa3\x00\x00\x20\xbe\x05\x5f\x3d\x83\ +\x00\x00\x2d\x49\x05\x8c\x46\xc5\x00\x00\x0b\x78\x05\x90\xba\xe3\ +\x00\x00\x0b\x35\x05\xc0\x56\xe3\x00\x00\x31\x6d\x05\xc7\xeb\xc7\ +\x00\x00\x30\x9b\x05\xe0\x4b\x67\x00\x00\x18\x9c\x05\xe0\x4b\x67\ +\x00\x00\x2b\x2d\x05\xef\x78\x4a\x00\x00\x1b\x01\x06\x1f\x6f\xa4\ +\x00\x00\x19\x88\x06\x32\xe3\xe3\x00\x00\x35\x33\x06\x5b\x01\x15\ +\x00\x00\x02\xc5\x06\x69\xd0\x04\x00\x00\x19\x42\x06\x9f\x6f\xd4\ +\x00\x00\x05\x2b\x06\xd6\x3f\xa4\x00\x00\x1a\xac\x06\xe6\x2f\x43\ +\x00\x00\x0d\x9f\x07\x00\xcc\xc4\x00\x00\x2e\x92\x07\x07\x84\xba\ +\x00\x00\x35\x5f\x07\x08\x43\x0e\x00\x00\x1d\xa4\x07\x16\x58\x05\ +\x00\x00\x2b\x9e\x07\x25\x74\x53\x00\x00\x1f\xd3\x07\x28\xff\x15\ +\x00\x00\x0a\x65\x07\x36\x51\x26\x00\x00\x0f\x10\x07\x5c\xdc\x04\ +\x00\x00\x18\xdf\x07\x60\x23\xf3\x00\x00\x02\x60\x07\xca\xf8\x87\ +\x00\x00\x2b\x57\x08\x25\x81\xc4\x00\x00\x04\xf4\x08\x4a\x45\xd9\ +\x00\x00\x2a\x2f\x08\x65\x4c\x95\x00\x00\x15\xfa\x08\xc5\xe3\x35\ +\x00\x00\x15\x45\x08\xca\xc9\x74\x00\x00\x0f\xb4\x08\xfb\xb8\xa4\ +\x00\x00\x07\x3c\x09\x69\xac\xa7\x00\x00\x17\xa9\x09\x6c\x6c\xa7\ +\x00\x00\x07\xa5\x09\x9f\xcc\xde\x00\x00\x1a\x68\x09\xba\xe6\x35\ +\x00\x00\x0c\x4c\x09\xba\xe6\x35\x00\x00\x29\x3d\x09\xc5\xbe\xca\ +\x00\x00\x06\xe0\x09\xe3\x98\xe4\x00\x00\x1d\x1c\x09\xed\x98\x55\ +\x00\x00\x25\x8a\x0a\x3e\x06\x83\x00\x00\x03\xa4\x0a\x3f\x1f\xd6\ +\x00\x00\x03\xce\x0a\x3f\x2b\x25\x00\x00\x04\x2f\x0a\x3f\x5d\xac\ +\x00\x00\x04\x9a\x0a\x7f\xee\xa3\x00\x00\x34\x43\x0a\xb6\xc8\x9a\ +\x00\x00\x07\xed\x0a\xbf\x46\x0e\x00\x00\x16\xfe\x0a\xd6\x07\x84\ +\x00\x00\x19\x0a\x0b\x0a\xc3\xf3\x00\x00\x00\x53\x0b\x51\x30\xa8\ +\x00\x00\x23\x0a\x0b\x65\xda\xb3\x00\x00\x2c\xf5\x0b\x8d\x97\x93\ +\x00\x00\x32\x8b\x0b\x9c\x5b\xe7\x00\x00\x06\x85\x0b\xb9\xe8\x93\ +\x00\x00\x23\x55\x0b\xc4\xb1\x23\x00\x00\x1e\xac\x0c\x02\xac\xd7\ +\x00\x00\x02\x39\x0c\x02\xac\xd7\x00\x00\x1d\xe5\x0c\x25\x3e\x53\ +\x00\x00\x26\x3d\x0c\x3c\x8b\x33\x00\x00\x34\x6e\x0c\x41\x0a\x83\ +\x00\x00\x34\xa0\x0c\x4e\x9b\x23\x00\x00\x25\xc1\x0c\x98\x80\x23\ +\x00\x00\x34\xce\x0c\xc4\xd0\x80\x00\x00\x1c\x44\x0c\xdf\x5a\x1e\ +\x00\x00\x01\x26\x0c\xfc\x97\x06\x00\x00\x17\xd4\x0d\x03\x26\xb4\ +\x00\x00\x02\x0a\x0d\x08\x90\xf3\x00\x00\x15\x04\x0d\x1e\xda\xa4\ +\x00\x00\x02\x87\x0d\x3b\x3b\x49\x00\x00\x28\x89\x0d\xa8\x3a\x35\ +\x00\x00\x12\x55\x0d\xc1\x7d\x47\x00\x00\x1c\x7a\x0d\xfa\x53\xe5\ +\x00\x00\x05\xf7\x0e\x69\x87\x13\x00\x00\x24\xaa\x0e\x8c\xd7\x43\ +\x00\x00\x28\x1a\x0e\x98\x0a\xd6\x00\x00\x17\x2e\x0e\xab\x8d\x1f\ +\x00\x00\x2c\x11\x0e\xb9\x1b\xf2\x00\x00\x0f\x7b\x0e\xec\x0b\x9e\ +\x00\x00\x1e\x15\x0f\x16\x4a\x24\x00\x00\x16\x97\x0f\x17\xc7\xa3\ +\x00\x00\x1f\x3c\x0f\x55\xc1\x57\x00\x00\x04\xc6\x0f\x78\x41\x05\ +\x00\x00\x33\x7c\x0f\x79\xe3\xf3\x00\x00\x20\x0a\x0f\x95\xd5\x09\ +\x00\x00\x13\x0d\x0f\xa2\x16\x43\x00\x00\x16\x71\x0f\xc0\xb8\xb4\ +\x00\x00\x0a\x2c\x0f\xd0\x39\x44\x00\x00\x01\xd3\x0f\xe5\x74\x74\ +\x00\x00\x00\x79\x0f\xf3\xe8\x33\x00\x00\x2e\x3a\x69\x00\x00\x36\ +\x1d\x03\x00\x00\x00\x0a\x5e\xfa\x7a\xcb\x5e\xfa\x7b\xc9\x72\x69\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x20\x43\x72\x65\x61\x74\ +\x65\x20\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x04\x65\xb0\x58\x9e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x03\x41\x64\x64\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x04\x58\x9e\x52\xa0\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x41\x64\x64\x69\x74\x69\x6f\x6e\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x5c\ +\x0d\x9f\x4a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x41\x6c\x69\ +\x67\x6e\x6d\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x12\x5b\x8c\x51\x68\x6b\x63\x78\xba\xff\x01\x6c\ +\x92\x67\x09\x93\x2f\x8a\xa4\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1b\x41\x6c\x6c\x20\x67\x6f\x6f\x64\x21\x20\x6e\x6f\x20\x70\x72\ +\x6f\x62\x6c\x65\x6d\x73\x20\x66\x6f\x75\x6e\x64\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x89\xd2\x5e\xa6\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x6e\x67\x6c\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x02\x8e\xf8\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\x65\x73\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4e\x00\x41\x00\x78\ +\x00\x65\x00\x73\x00\x20\x00\x73\x00\x79\x00\x73\x00\x74\x00\x65\ +\x00\x6d\x00\x73\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\ +\x00\x65\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x75\x00\x69\ +\x00\x6c\x00\x74\x00\x20\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x27\x41\x78\x65\x73\x20\x73\x79\x73\x74\x65\x6d\x73\ +\x20\x74\x68\x69\x73\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\ +\x69\x73\x20\x62\x75\x69\x6c\x74\x20\x6f\x6e\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x02\x8e\xf8\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x41\x78\x69\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x10\x57\xfa\x79\x0e\x00\x20\x00\ +\x32\x00\x44\x00\x20\x72\x69\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0e\x42\x61\x73\x65\x20\x32\x44\x20\x6f\x62\x6a\x65\x63\ +\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\ +\x57\xfa\x79\x0e\x51\x43\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0e\x42\x61\x73\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x06\x5e\ +\xfa\x7b\xc9\x72\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\ +\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x04\x7d\x44\x4e\xf6\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0a\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x6b\x64\x72\ +\x69\x4e\xf6\x4e\x4b\x7d\x44\x62\x10\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x19\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x7e\x7c\x7e\x8c\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x6f\x6e\x74\x69\x6e\x75\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\ +\x71\x21\x6c\xd5\x8a\x08\x7b\x97\x6b\x64\x72\x46\x97\x62\x90\x20\ +\x57\x8b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x43\x6f\x75\x6c\ +\x64\x6e\x27\x74\x20\x63\x6f\x6d\x70\x75\x74\x65\x20\x74\x68\x65\ +\x20\x77\x61\x6c\x6c\x20\x73\x68\x61\x70\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x43\x00\x6f\x00\x75\ +\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x6c\x00\x6f\ +\x00\x63\x00\x61\x00\x74\x00\x65\x00\x20\x00\x49\x00\x66\x00\x63\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\ +\x00\x6c\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x43\x6f\ +\x75\x6c\x64\x6e\x27\x74\x20\x6c\x6f\x63\x61\x74\x65\x20\x49\x66\ +\x63\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x0a\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x06\x5e\xfa\x7a\xcb\x8e\xf8\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\ +\x20\x41\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x08\x5e\xfa\x7a\xcb\x5c\x4b\x98\x02\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x52\x6f\x6f\ +\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\ +\x5e\xfa\x7a\xcb\x52\x56\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x14\x43\x72\x65\x61\x74\x65\x20\x53\x65\x63\x74\x69\x6f\x6e\ +\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x16\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\ +\x65\x00\x20\x00\x53\x00\x69\x00\x74\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x53\x69\x74\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x5e\ +\xfa\x7a\xcb\x7d\x50\x69\xcb\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x10\x43\x72\x65\x61\x74\x65\x20\x53\x74\x72\x75\x63\x74\x75\x72\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\ +\x5e\xfa\x7a\xcb\x72\x46\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x57\x61\x6c\x6c\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x5e\xfa\x7a\xcb\ +\x89\x96\x7a\x97\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x72\ +\x65\x61\x74\x65\x20\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x5e\xfa\x7a\xcb\x65\xb0\ +\x51\x43\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\ +\x65\x61\x74\x65\x20\x6e\x65\x77\x20\x63\x6f\x6d\x70\x6f\x6e\x65\ +\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x0e\x5e\xfa\x7a\xcb\x00\x2f\x66\xf4\x65\xb0\x51\x43\x4e\xf6\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\x74\x65\x2f\ +\x75\x70\x64\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x8d\ +\xdd\x96\xe2\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x44\x69\x73\ +\x74\x61\x6e\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x0e\x8e\xf8\x95\x93\x8d\xdd\x96\xe2\x53\xca\x89\xd2\ +\x5e\xa6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x44\x69\x73\x74\ +\x61\x6e\x63\x65\x73\x20\x61\x6e\x64\x20\x61\x6e\x67\x6c\x65\x73\ +\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x7d\xe8\x8f\x2f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4e\x00\x45\x00\ +\x72\x00\x72\x00\x6f\x00\x72\x00\x20\x00\x72\x00\x65\x00\x6d\x00\ +\x6f\x00\x76\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x70\x00\ +\x6c\x00\x69\x00\x74\x00\x74\x00\x65\x00\x72\x00\x20\x00\x66\x00\ +\x72\x00\x6f\x00\x6d\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\ +\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x27\x45\x72\x72\x6f\x72\x20\x72\x65\x6d\x6f\x76\ +\x69\x6e\x67\x20\x73\x70\x6c\x69\x74\x74\x65\x72\x20\x66\x72\x6f\ +\x6d\x20\x77\x61\x6c\x6c\x20\x73\x68\x61\x70\x65\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x93\x2f\x8a\xa4\x00\ +\x3a\x71\x21\x6c\xd5\x5b\x9a\x7f\xa9\x5b\x57\x51\x43\x7d\xe8\x78\ +\xbc\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x45\x72\x72\x6f\x72\ +\x3a\x20\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x64\x65\x74\x65\x72\ +\x6d\x69\x6e\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\x65\ +\x6e\x63\x6f\x64\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x16\x93\x2f\x8a\xa4\x00\x3a\x71\x21\x6c\xd5\ +\x5b\x9a\x7f\xa9\x5b\x57\x51\x43\x7d\xe8\x78\xbc\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x2d\x45\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\ +\x6c\x64\x6e\x27\x74\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\ +\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\ +\x6e\x67\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x14\x93\x2f\x8a\xa4\xff\x1a\x93\x2f\x8a\xa4\x76\x84\x57\xfa\ +\x79\x0e\x72\x69\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\ +\x45\x72\x72\x6f\x72\x3a\x20\x49\x6e\x76\x61\x6c\x69\x64\x20\x62\ +\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x04\x57\x30\x97\x62\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x7f\xa4\x7d\x44\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x47\x72\x6f\x75\x70\x69\x6e\ +\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\ +\x9a\xd8\x5e\xa6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x48\x65\ +\x69\x67\x68\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x56\x00\x49\x00\x46\x00\x43\x00\x20\x00\x53\x00\x63\x00\ +\x68\x00\x65\x00\x6d\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\ +\x20\x00\x66\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x2c\x00\x20\x00\ +\x49\x00\x46\x00\x43\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x20\x00\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\ +\x6c\x00\x65\x00\x64\x00\x2e\x00\x0a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2b\x49\x46\x43\x20\x53\x63\x68\x65\x6d\x61\x20\x6e\x6f\ +\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x49\x46\x43\x20\x69\x6d\x70\ +\x6f\x72\x74\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x2e\x0a\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xd2\x00\x49\x00\ +\x66\x00\x20\x00\x54\x00\x72\x00\x75\x00\x65\x00\x2c\x00\x20\x00\ +\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\ +\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x2c\x00\ +\x20\x00\x69\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\ +\x20\x00\x75\x00\x73\x00\x65\x00\x20\x00\x69\x00\x74\x00\x73\x00\ +\x20\x00\x62\x00\x6f\x00\x72\x00\x64\x00\x65\x00\x72\x00\x20\x00\ +\x77\x00\x69\x00\x72\x00\x65\x00\x20\x00\x61\x00\x73\x00\x20\x00\ +\x74\x00\x72\x00\x61\x00\x63\x00\x65\x00\x2c\x00\x20\x00\x61\x00\ +\x6e\x00\x64\x00\x20\x00\x64\x00\x69\x00\x73\x00\x63\x00\x6f\x00\ +\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x2e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x69\x49\x66\x20\x54\x72\x75\x65\ +\x2c\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\ +\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x66\x61\x63\ +\x65\x2c\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x75\x73\x65\x20\x69\ +\x74\x73\x20\x62\x6f\x72\x64\x65\x72\x20\x77\x69\x72\x65\x20\x61\ +\x73\x20\x74\x72\x61\x63\x65\x2c\x20\x61\x6e\x64\x20\x64\x69\x73\ +\x63\x6f\x6e\x73\x69\x64\x65\x72\x20\x74\x68\x65\x20\x66\x61\x63\ +\x65\x2e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x0a\x5f\x62\x72\xc0\x76\x84\x7d\xb2\x68\x3c\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x74\x6f\x20\x53\x68\x61\ +\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x04\x54\x0d\x7a\x31\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\ +\x61\x6d\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0e\x6c\x92\x67\x09\x90\x78\x5b\x9a\x4e\x4b\x72\x69\x4e\xf6\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4e\x6f\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x71\x21\x4e\xe5\x6b\ +\x64\x5e\x73\x97\x62\x52\x07\x52\x72\x4e\x4b\x72\x69\x4e\xf6\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x4e\x6f\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x20\x61\x72\x65\x20\x63\x75\x74\x20\x62\x79\x20\x74\ +\x68\x65\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x20\x71\x21\x4e\xfb\x4f\x55\x90\x20\x57\ +\x8b\x5d\xf2\x88\xab\x8a\x08\x7b\x97\x00\x2c\x8a\xcb\x90\x78\x64\ +\xc7\x7d\xda\x67\xb6\x69\xcb\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x4b\x4e\x6f\x20\x73\x68\x61\x70\x65\x20\x68\x61\x73\x20\x62\x65\ +\x65\x6e\x20\x63\x6f\x6d\x70\x75\x74\x65\x64\x20\x79\x65\x74\x2c\ +\x20\x73\x65\x6c\x65\x63\x74\x20\x77\x69\x72\x65\x66\x72\x61\x6d\ +\x65\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x20\x61\x6e\x64\x20\ +\x72\x65\x6e\x64\x65\x72\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x72\x69\x4e\xf6\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x07\x4f\x62\x6a\x65\x63\x74\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x02\x98\ +\x01\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x50\x61\x67\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x79\xfb\ +\x96\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x65\x6d\x6f\ +\x76\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x04\x5c\x4b\x98\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x52\ +\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x04\x4f\x4d\x7f\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x0e\x5f\xfd\x75\x65\x93\x2f\x8a\xa4\x72\x69\x4e\xf6\xff\ +\x1a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x53\x6b\x69\x70\x70\ +\x69\x6e\x67\x20\x69\x6e\x76\x61\x6c\x69\x64\x20\x6f\x62\x6a\x65\ +\x63\x74\x3a\x20\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x0c\x52\x06\x52\x72\x00\x4d\x00\x65\x00\x73\x00\x68\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\ +\x65\x73\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x04\x7d\x50\x69\xcb\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x04\x62\x63\x96\x64\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x53\x75\x62\x74\x72\x61\x63\x74\x69\x6f\ +\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x78\x00\x54\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x69\x00\ +\x67\x00\x6e\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\ +\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x69\x00\ +\x74\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\x00\ +\x69\x00\x66\x00\x20\x00\x61\x00\x70\x00\x70\x00\x6c\x00\x69\x00\ +\x63\x00\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x3c\x54\x68\x65\x20\x61\x6c\x69\x67\x6e\x6d\x65\x6e\x74\ +\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x6f\x6e\ +\x20\x69\x74\x73\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x2c\x20\x69\x66\x20\x61\x70\x70\x6c\x69\x63\x61\x62\x6c\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x5c\x4b\ +\x98\x02\x89\xd2\x5e\xa6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\ +\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\x20\x6f\x66\x20\x74\x68\x69\ +\x73\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x0c\x54\x04\x8e\xf8\x95\x93\x4e\x4b\x89\xd2\x5e\ +\xa6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x54\x68\x65\x20\x61\ +\x6e\x67\x6c\x65\x73\x20\x6f\x66\x20\x65\x61\x63\x68\x20\x61\x78\ +\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x14\x6b\x64\x72\x47\x6b\xb5\x5e\x73\x97\x62\x4e\x4b\x98\x6f\x79\ +\x3a\x5c\x3a\x5b\xf8\x08\x00\x00\x00\x00\x06\x00\x00\x00\x26\x54\ +\x68\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x73\x69\x7a\x65\x20\ +\x6f\x66\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\ +\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x86\x00\x54\x00\x68\x00\x65\x00\x20\x00\x65\x00\x6c\ +\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6e\x00\x75\ +\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x73\x00\x20\x00\x74\x00\x6f\ +\x00\x20\x00\x65\x00\x78\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x65\ +\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\ +\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x69\x00\x73\x00\x20\ +\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\ +\x00\x20\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x43\x54\x68\x65\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\ +\x6e\x75\x6d\x62\x65\x72\x73\x20\x74\x6f\x20\x65\x78\x63\x6c\x75\ +\x64\x65\x20\x77\x68\x65\x6e\x20\x74\x68\x69\x73\x20\x73\x74\x72\ +\x75\x63\x74\x75\x72\x65\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\ +\x6f\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x18\x5e\xfa\x7a\xcb\x6b\x64\x5c\x4b\x98\x02\ +\x4e\x4b\x57\xfa\x79\x0e\x72\x69\x4e\xf6\x97\x62\x65\x78\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x3a\x54\x68\x65\x20\x66\x61\x63\x65\ +\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x74\x68\x65\x20\x62\ +\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x75\x73\x65\x64\x20\ +\x74\x6f\x20\x62\x75\x69\x6c\x64\x20\x74\x68\x69\x73\x20\x72\x6f\ +\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x08\x6a\x13\x67\x7f\x9a\xd8\x5e\xa6\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x18\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x66\x6c\x6f\x6f\x72\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\xb0\x00\x54\x00\x68\x00\x65\ +\x00\x20\x00\x68\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\ +\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x2e\x00\x20\x00\x4b\x00\x65\ +\x00\x65\x00\x70\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\x72\ +\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\ +\x00\x69\x00\x63\x00\x2e\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x20\ +\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\x00\x69\x00\x66\x00\x20\ +\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\ +\x00\x6c\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\ +\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\ +\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x58\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\x6f\ +\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x2e\x20\x4b\x65\x65\ +\x70\x20\x30\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\ +\x63\x2e\x20\x4e\x6f\x74\x20\x75\x73\x65\x64\x20\x69\x66\x20\x74\ +\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\ +\x64\x20\x6f\x6e\x20\x61\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x86\x00\x54\x00\x68\x00\ +\x65\x00\x20\x00\x68\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x00\ +\x20\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\x72\x00\ +\x75\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x65\x00\ +\x70\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x2e\x00\x20\x00\x4b\x00\x65\x00\x65\x00\ +\x70\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\ +\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\ +\x63\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\x54\x68\x65\x20\x68\ +\x65\x69\x67\x68\x74\x20\x6f\x72\x20\x65\x78\x74\x72\x75\x73\x69\ +\x6f\x6e\x20\x64\x65\x70\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\ +\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2e\x20\x4b\x65\x65\x70\x20\x30\ +\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\x54\x00\ +\x68\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\ +\x76\x00\x61\x00\x6c\x00\x73\x00\x20\x00\x62\x00\x65\x00\x74\x00\ +\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x65\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x54\x68\x65\x20\x69\ +\x6e\x74\x65\x72\x76\x61\x6c\x73\x20\x62\x65\x74\x77\x65\x65\x6e\ +\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x08\x8e\xf8\x4e\x4b\x95\x77\x5e\xa6\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x16\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\ +\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\x65\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x6a\x00\x54\x00\x68\x00\ +\x65\x00\x20\x00\x6c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\ +\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\ +\x6e\x00\x20\x00\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x66\x00\ +\x69\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x54\ +\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x74\x68\x69\ +\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\x6e\x6f\ +\x74\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\x72\x6f\ +\x66\x69\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\xa2\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\ +\x72\x00\x6d\x00\x61\x00\x6c\x00\x20\x00\x65\x00\x78\x00\x74\x00\ +\x72\x00\x75\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\ +\x69\x00\x72\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ +\x28\x00\x6b\x00\x65\x00\x65\x00\x70\x00\x20\x00\x28\x00\x30\x00\ +\x2c\x00\x30\x00\x2c\x00\x30\x00\x29\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\ +\x74\x00\x69\x00\x63\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\ +\x61\x00\x6c\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x54\ +\x68\x65\x20\x6e\x6f\x72\x6d\x61\x6c\x20\x65\x78\x74\x72\x75\x73\ +\x69\x6f\x6e\x20\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x6b\x65\ +\x65\x70\x20\x28\x30\x2c\x30\x2c\x30\x29\x20\x66\x6f\x72\x20\x61\ +\x75\x74\x6f\x6d\x61\x74\x69\x63\x20\x6e\x6f\x72\x6d\x61\x6c\x29\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x65\x00\ +\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x73\x00\ +\x74\x00\x79\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x14\x54\x68\x65\x20\x6e\x75\x6d\x65\x72\x61\x74\x69\x6f\x6e\x20\ +\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x2a\x5f\xc5\x98\x08\x88\xab\x6b\x64\x52\x56\x97\x62\ +\x62\x40\x53\xc3\x80\x03\x4e\x4b\x72\x69\x4e\xf6\xff\x0c\x7a\x7a\ +\x76\x7d\x88\x68\x79\x3a\x51\x68\x90\xe8\x72\x69\x4e\xf6\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x53\x54\x68\x65\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x20\x74\x68\x61\x74\x20\x6d\x75\x73\x74\x20\x62\x65\ +\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x62\x79\x20\x74\ +\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\ +\x65\x2e\x20\x45\x6d\x70\x74\x79\x20\x6d\x65\x61\x6e\x73\x20\x61\ +\x6c\x6c\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x8e\xf8\x4e\x4b\x6a\x19\ +\x79\x3a\x59\x27\x5c\x0f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\ +\x54\x68\x65\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\x74\x68\x65\x20\ +\x61\x78\x69\x73\x20\x62\x75\x62\x62\x6c\x65\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x68\x00\x54\x00\x68\x00\ +\x65\x00\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2c\x00\ +\x20\x00\x69\x00\x66\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\ +\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\ +\x20\x00\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x66\x00\x69\x00\ +\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x54\x68\x65\ +\x20\x77\x69\x64\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\ +\x6c\x65\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\x6e\x6f\x74\x20\x62\ +\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\x72\x6f\x66\x69\x6c\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1e\ +\x6b\x64\x72\x46\x5b\xec\x5e\xa6\x00\x2c\x82\xe5\x6b\x64\x72\x46\ +\x57\xfa\x65\xbc\x97\x62\x52\x47\x4e\x0d\x63\xa1\x75\x28\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x40\x54\x68\x65\x20\x77\x69\x64\x74\ +\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x2e\x20\ +\x4e\x6f\x74\x20\x75\x73\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\ +\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\ +\x6e\x20\x61\x20\x66\x61\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x04\x53\x9a\x5e\xa6\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x09\x54\x68\x69\x63\x6b\x6e\x65\x73\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x6b\x64\x7d\ +\xb2\x68\x3c\x70\xba\x71\x21\x65\x48\x5b\xe6\x9a\xd4\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1d\x54\x68\x69\x73\x20\x6d\x65\x73\x68\ +\x20\x69\x73\x20\x61\x6e\x20\x69\x6e\x76\x61\x6c\x69\x64\x20\x73\ +\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x04\x98\x5e\x57\x8b\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x54\x79\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x08\x8f\x49\x63\xdb\x98\x5e\x57\x8b\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0f\x54\x79\x70\x65\x20\x63\x6f\x6e\x76\x65\ +\x72\x73\x69\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x0c\x71\x21\x6c\xd5\x5e\xfa\x7a\xcb\x5c\x4b\x98\x02\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x55\x6e\x61\x62\x6c\x65\ +\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x72\x6f\x6f\ +\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\ +\x71\x21\x6c\xd5\x5e\xfa\x7a\xcb\x51\x43\x4e\xf6\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1a\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\ +\x63\x72\x65\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x53\ +\xd6\x6d\x88\x7f\xa4\x7d\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x55\x6e\x67\x72\x6f\x75\x70\x69\x6e\x67\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x89\x96\x57\x16\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x07\x56\x69\x65\x77\x20\x6f\x66\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x72\x46\ +\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\x6c\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x72\ +\x46\x4e\x4b\x8a\x2d\x5b\x9a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0c\x57\x61\x6c\x6c\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x57\x00\x61\ +\x00\x6c\x00\x6c\x00\x54\x00\x72\x00\x61\x00\x63\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x57\x61\x6c\x6c\x54\x72\x61\x63\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\ +\x5b\xec\x5e\xa6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x57\x69\ +\x64\x74\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x04\x89\x96\x7a\x97\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x02\x7d\xda\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x05\x57\x69\x72\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x0a\x00\x5a\x65\xb9\x54\x11\x50\x4f\x79\xfb\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x5a\x20\x6f\x66\x66\x73\x65\ +\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\ +\x95\xdc\x95\x89\x7d\x20\x63\xcf\x7d\xe8\x8f\x2f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x13\x63\x6c\x6f\x73\x69\x6e\x67\x20\x53\x6b\ +\x65\x74\x63\x68\x20\x65\x64\x69\x74\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x12\x53\x05\x54\x2b\x4e\x00\x50\x0b\ +\x67\x2a\x5c\x01\x95\x89\x72\x69\x9a\xd4\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1b\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x61\x20\x6e\ +\x6f\x6e\x2d\x63\x6c\x6f\x73\x65\x64\x20\x73\x6f\x6c\x69\x64\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5a\x00\x63\ +\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x20\ +\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\ +\x00\x61\x00\x74\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6e\ +\x00\x6f\x00\x74\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\x20\ +\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x73\ +\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x2d\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x66\x61\x63\x65\x73\ +\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x70\x61\ +\x72\x74\x20\x6f\x66\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x67\x2a\ +\x53\x05\x54\x2b\x4e\xfb\x4f\x55\x72\x69\x9a\xd4\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x19\x64\x6f\x65\x73\x6e\x27\x74\x20\x63\x6f\ +\x6e\x74\x61\x69\x6e\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x62\x10\ +\x52\x9f\x5e\xfa\x7a\xcb\x00\x25\x00\x73\x6a\x94\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1d\x66\x69\x6c\x65\x20\x25\x73\x20\x73\x75\ +\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x63\x72\x65\x61\x74\ +\x65\x64\x2e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x06\x67\x2a\x5c\x01\x95\x89\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x69\x73\x20\x6e\x6f\x74\x20\x63\x6c\x6f\x73\x65\x64\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x93\x2f\ +\x8a\xa4\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x69\x73\x20\x6e\ +\x6f\x74\x20\x76\x61\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x52\x00\x70\x00\x79\x00\x63\x00\x6f\x00\ +\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\ +\x74\x00\x20\x00\x66\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x2c\x00\ +\x20\x00\x6e\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\ +\x61\x00\x64\x00\x61\x00\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x00\x2e\x00\x0a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x29\x70\x79\x63\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\ +\x20\x66\x6f\x75\x6e\x64\x2c\x20\x6e\x6f\x20\x63\x6f\x6c\x6c\x61\ +\x64\x61\x20\x73\x75\x70\x70\x6f\x72\x74\x2e\x0a\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x64\x00\x72\x00\x65\x00\ +\x6d\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\ +\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x20\x00\x73\x00\x75\x00\ +\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x61\x00\x76\x00\x6f\x00\x69\x00\x64\x00\x20\x00\x63\x00\ +\x72\x00\x6f\x00\x73\x00\x73\x00\x2d\x00\x72\x00\x65\x00\x66\x00\ +\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x69\x00\x6e\x00\x67\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x32\x72\x65\x6d\x6f\x76\x69\x6e\ +\x67\x20\x73\x6b\x65\x74\x63\x68\x20\x73\x75\x70\x70\x6f\x72\x74\ +\x20\x74\x6f\x20\x61\x76\x6f\x69\x64\x20\x63\x72\x6f\x73\x73\x2d\ +\x72\x65\x66\x65\x72\x65\x6e\x63\x69\x6e\x67\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x5b\xeb\x51\x65\x62\x10\ +\x52\x9f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x73\x75\x63\x63\ +\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x77\x72\x69\x74\x74\x65\x6e\ +\x20\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\ +\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\ +\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1d\x74\x68\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x69\x6e\x64\x6f\ +\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\ +\x58\x9e\x52\xa0\x7d\x44\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x41\x64\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\ +\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\ +\x00\x16\x58\x9e\x52\xa0\x90\x78\x5b\x9a\x7d\x44\x4e\xf6\x81\xf3\ +\x76\xee\x52\x4d\x72\x69\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x31\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x74\ +\x6f\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\ +\x01\x03\x00\x00\x00\x02\x8e\xf8\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x41\x78\x69\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\ +\x41\x78\x69\x73\x01\x03\x00\x00\x00\x0c\x5e\xfa\x7a\xcb\x57\x16\ +\x8e\xf8\x7c\xfb\x7d\x71\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x78\x69\x73\x20\ +\x73\x79\x73\x74\x65\x6d\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\ +\x5f\x41\x78\x69\x73\x01\x03\x00\x00\x00\x06\x5e\xfa\x7b\xc9\x72\ +\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\x6c\x64\ +\x69\x6e\x67\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\ +\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x1a\x5e\xfa\x7a\xcb\x53\ +\x05\x54\x2b\x90\x78\x5b\x9a\x72\x69\x4e\xf6\x4e\x4b\x5e\xfa\x7b\ +\xc9\x72\x69\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x43\ +\x72\x65\x61\x74\x65\x73\x20\x61\x20\x62\x75\x69\x6c\x64\x69\x6e\ +\x67\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\ +\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x2e\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\ +\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x04\x55\xae\x51\x43\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x43\x65\x6c\x6c\x07\x00\ +\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\ +\x00\x1a\x5e\xfa\x7a\xcb\x53\x05\x54\x2b\x90\x78\x5b\x9a\x72\x69\ +\x4e\xf6\x4e\x4b\x55\xae\x51\x43\x72\x69\x4e\xf6\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ +\x63\x65\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\ +\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\ +\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x04\x78\xba\x8a\x8d\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x43\x68\x65\x63\x6b\x07\x00\x00\ +\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\x01\x03\x00\x00\ +\x00\x50\x00\x43\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x73\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\ +\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\ +\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x62\x00\x6c\x00\x65\x00\x6d\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x43\x68\x65\x63\ +\x6b\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x6f\x72\x20\x70\x72\x6f\x62\ +\x6c\x65\x6d\x73\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\ +\x65\x63\x6b\x01\x03\x00\x00\x00\x08\x5c\x01\x95\x89\x7a\x7a\x6d\ +\x1e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x6c\x6f\x73\x65\ +\x20\x68\x6f\x6c\x65\x73\x07\x00\x00\x00\x0f\x41\x72\x63\x68\x5f\ +\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\x01\x03\x00\x00\x00\x60\ +\x00\x43\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x73\x00\x20\x00\x68\ +\x00\x6f\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x20\ +\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x68\x00\x61\ +\x00\x70\x00\x65\x00\x73\x00\x2c\x00\x20\x00\x74\x00\x75\x00\x72\ +\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x6d\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x6c\x6f\x73\x65\x73\ +\x20\x68\x6f\x6c\x65\x73\x20\x69\x6e\x20\x6f\x70\x65\x6e\x20\x73\ +\x68\x61\x70\x65\x73\x2c\x20\x74\x75\x72\x6e\x69\x6e\x67\x20\x74\ +\x68\x65\x6d\x20\x73\x6f\x6c\x69\x64\x73\x07\x00\x00\x00\x0f\x41\ +\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\x01\x03\ +\x00\x00\x00\x1a\x5e\xfa\x7a\xcb\x54\x2b\x67\x09\x90\x78\x5b\x9a\ +\x72\x69\x4e\xf6\x4e\x4b\x57\x30\x97\x62\x72\x69\x4e\xf6\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x20\x66\x6c\x6f\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\ +\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0a\x41\x72\ +\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x04\x57\x30\ +\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\ +\x72\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\ +\x01\x03\x00\x00\x00\x0a\x5f\x62\x72\xc0\x76\x84\x7d\xb2\x68\x3c\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x74\ +\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x10\x41\x72\x63\x68\ +\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\ +\x00\x5a\x00\x54\x00\x75\x00\x72\x00\x6e\x00\x73\x00\x20\x00\x73\ +\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\ +\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\x69\ +\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x50\x00\x61\x00\x72\x00\x74\ +\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x2d\x54\x75\x72\x6e\x73\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\ +\x20\x50\x61\x72\x74\x20\x53\x68\x61\x70\x65\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\x65\x73\ +\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x08\x79\xfb\ +\x96\x64\x53\x9f\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x52\x65\x6d\x6f\x76\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\ +\x01\x03\x00\x00\x00\x28\x75\x31\x51\x76\x5b\xb6\x65\xcf\x4e\x2d\ +\x79\xfb\x96\x64\x90\x78\x5b\x9a\x72\x69\x4e\xf6\x62\x16\x65\xbc\ +\x72\x69\x5e\xfa\x4e\x2d\x5e\xfa\x7a\xcb\x7a\x7a\x6d\x1e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x52\x52\x65\x6d\x6f\x76\x65\x20\x74\ +\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\ +\x6f\x6e\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x69\ +\x72\x20\x70\x61\x72\x65\x6e\x74\x73\x2c\x20\x6f\x72\x20\x63\x72\ +\x65\x61\x74\x65\x20\x61\x20\x68\x6f\x6c\x65\x20\x69\x6e\x20\x61\ +\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\ +\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\x10\ +\x75\x31\x5e\xfa\x7b\xc9\x4e\x2d\x79\xfb\x96\x64\x90\x20\x57\x8b\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x52\x65\x6d\x6f\x76\x65\ +\x20\x53\x68\x61\x70\x65\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\ +\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\ +\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x18\x79\xfb\x96\x64\x5e\ +\xfa\x7b\xc9\x51\x43\x4e\xf6\x4e\x2d\x4e\x4b\x65\xb9\x58\x4a\x5f\ +\x62\x72\xc0\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x52\x65\x6d\ +\x6f\x76\x65\x73\x20\x63\x75\x62\x69\x63\x20\x73\x68\x61\x70\x65\ +\x73\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x20\x63\x6f\x6d\x70\ +\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\ +\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\ +\x72\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\ +\x20\x00\x61\x00\x20\x00\x72\x00\x6f\x00\x6f\x00\x66\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\ +\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ +\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6f\x00\x66\x00\ +\x20\x00\x61\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x39\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x72\x6f\x6f\x66\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x66\x61\x63\x65\x20\x6f\x66\x20\x61\x6e\x20\ +\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\ +\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x04\x5c\x4b\x98\x02\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\ +\x09\x41\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x7c\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\ +\x00\x61\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\ +\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x3e\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ +\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x2c\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\ +\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x07\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\ +\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x04\ +\x52\x56\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\ +\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\ +\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\ +\x65\x01\x03\x00\x00\x00\x34\x00\x53\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x6d\x00\ +\x61\x00\x6e\x00\x69\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\ +\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\x6e\x6f\x6e\x2d\ +\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x07\ +\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\ +\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\ +\x00\x00\x9a\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x73\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\ +\x6e\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\x66\x00\x6f\x00\ +\x6c\x00\x64\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\ +\x73\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\ +\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ +\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4d\x53\x65\x6c\x65\x63\x74\x73\x20\x61\ +\x6c\x6c\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\ +\x6d\x65\x73\x68\x65\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\ +\x64\x6f\x63\x75\x6d\x65\x6e\x74\x20\x6f\x72\x20\x66\x72\x6f\x6d\ +\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x67\x72\ +\x6f\x75\x70\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\ +\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\ +\x65\x73\x01\x03\x00\x00\x00\x1a\x5e\xfa\x7a\xcb\x53\x05\x54\x2b\ +\x90\x78\x5b\x9a\x72\x69\x4e\xf6\x4e\x4b\x4f\x4d\x7f\x6e\x72\x69\ +\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x73\x69\x74\x65\x20\x6f\x62\x6a\x65\x63\ +\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\ +\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\ +\x04\x4f\x4d\x7f\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\ +\x69\x74\x65\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\ +\x65\x01\x03\x00\x00\x00\x0c\x52\x06\x52\x72\x00\x4d\x00\x65\x00\ +\x73\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\ +\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x0e\x41\x72\x63\x68\ +\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\x1a\ +\x52\x06\x52\x72\x90\x78\x5b\x9a\x00\x4d\x00\x65\x00\x73\x00\x68\ +\x70\xba\x73\x68\x7a\xcb\x72\x69\x4e\xf6\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x32\x53\x70\x6c\x69\x74\x73\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\ +\x69\x6e\x64\x65\x70\x65\x6e\x64\x65\x6e\x74\x20\x63\x6f\x6d\x70\ +\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\ +\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\x32\x75\ +\x31\x83\x49\x57\x16\x62\x16\x90\x78\x5b\x9a\x72\x69\x4e\xf6\x00\ +\x28\x83\x49\x57\x16\x00\x2c\x7d\xda\x00\x2c\x97\x62\x62\x16\x56\ +\xfa\x9a\xd4\x00\x29\x5e\xfa\x7a\xcb\x7d\x50\x69\xcb\x72\x69\x4e\ +\xf6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5f\x43\x72\x65\x61\x74\ +\x65\x73\x20\x61\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\ +\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x73\x6b\ +\x65\x74\x63\x68\x2c\x20\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\ +\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x0e\x41\ +\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\ +\x00\x00\x04\x7d\x50\x69\xcb\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x0e\x41\ +\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\ +\x00\x00\x2c\x75\x31\x83\x49\x57\x16\x62\x16\x90\x78\x5b\x9a\x72\ +\x69\x4e\xf6\x00\x28\x7d\xda\x00\x2c\x97\x62\x62\x16\x56\xfa\x9a\ +\xd4\x00\x29\x5e\xfa\x7a\xcb\x5f\x37\x97\x62\x72\x69\x4e\xf6\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x52\x43\x72\x65\x61\x74\x65\x73\ +\x20\x61\x20\x77\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\ +\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\ +\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x66\x61\x63\ +\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x09\ +\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\x04\x72\ +\x46\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\ +\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\ +\x03\x00\x00\x00\x94\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\ +\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x77\x00\x69\x00\x6e\x00\ +\x64\x00\x6f\x00\x77\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\ +\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x20\x00\x28\x00\x77\x00\x69\x00\x72\x00\x65\x00\x2c\x00\ +\x20\x00\x72\x00\x65\x00\x63\x00\x74\x00\x61\x00\x6e\x00\x67\x00\ +\x6c\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x6b\x00\ +\x65\x00\x74\x00\x63\x00\x68\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x4a\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\x69\x6e\ +\x64\x6f\x77\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\ +\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x72\x65\x63\x74\x61\x6e\x67\ +\x6c\x65\x20\x6f\x72\x20\x73\x6b\x65\x74\x63\x68\x29\x07\x00\x00\ +\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ +\x00\x00\x04\x89\x96\x7a\x97\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x0b\x41\x72\x63\x68\ +\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0a\x00\x32\x00\ +\x44\x00\x20\x6e\x32\x67\xd3\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0c\x32\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\ +\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x1a\x70\xba\x6b\xcf\x50\x0b\x5e\xfa\x7b\xc9\x72\x69\ +\x4e\xf6\x98\x5e\x52\x25\x5e\xfa\x7a\xcb\x7f\xa4\x7d\x44\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x28\x43\x72\x65\x61\x74\x65\x73\x20\ +\x67\x72\x6f\x75\x70\x73\x20\x66\x6f\x72\x20\x65\x61\x63\x68\x20\ +\x41\x72\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x3c\x00\x43\x00\x75\x00\x74\x00\x20\x00\ +\x61\x00\x72\x00\x65\x00\x61\x00\x73\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x65\x00\x20\x00\x74\x00\x68\x00\x69\x00\x63\x00\x6b\x00\ +\x6e\x00\x65\x00\x73\x00\x73\x00\x20\x00\x72\x00\x61\x00\x74\x00\ +\x69\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x43\x75\x74\ +\x20\x61\x72\x65\x61\x73\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\ +\x6b\x6e\x65\x73\x73\x20\x72\x61\x74\x69\x6f\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0c\x7d\x50\x69\xcb\x98\x10\x8a\x2d\x82\x72\x5f\x69\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1c\x44\x65\x66\x61\x75\x6c\x74\x20\ +\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x74\x72\x75\x63\x74\ +\x75\x72\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x72\x46\x97\x62\x98\ +\x10\x8a\x2d\x82\x72\x5f\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x17\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\ +\x6f\x72\x20\x77\x61\x6c\x6c\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x7a\ +\x97\x62\x36\x98\x10\x8a\x2d\x82\x72\x5f\x69\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x19\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ +\x6f\x72\x20\x66\x6f\x72\x20\x77\x69\x6e\x64\x6f\x77\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x0c\x4e\x00\x82\x2c\x5e\xfa\x7b\xc9\x8a\x2d\x5b\ +\x9a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x47\x65\x6e\x65\x72\ +\x61\x6c\x20\x41\x72\x63\x68\x20\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x08\x4e\x00\x82\x2c\x8a\x2d\x5b\x9a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\ +\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\ +\x4f\x9d\x57\x8b\x5f\x0f\x6b\x78\x98\x5e\x51\x43\x4e\xf6\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x19\x47\x72\x6f\x75\x70\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x62\x79\x20\x74\x79\x70\x65\ +\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x49\x00\x46\x00\x43\x53\x2f\ +\x51\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x49\x46\x43\x20\ +\x69\x6d\x70\x6f\x72\x74\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\xba\x00\x49\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\ +\x64\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x49\x00\ +\x46\x00\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\ +\x65\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x65\x00\x72\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\ +\x64\x00\x2c\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x6f\x00\x77\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x69\x00\ +\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\ +\x72\x00\x65\x00\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\x74\x00\ +\x79\x00\x70\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x5d\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\ +\x53\x68\x65\x6c\x6c\x20\x69\x6d\x70\x6f\x72\x74\x65\x72\x20\x77\ +\x69\x6c\x6c\x20\x62\x65\x20\x75\x73\x65\x64\x2c\x20\x61\x6c\x6c\ +\x6f\x77\x69\x6e\x67\x20\x74\x6f\x20\x69\x6d\x70\x6f\x72\x74\x20\ +\x6d\x6f\x72\x65\x20\x49\x46\x43\x20\x74\x79\x70\x65\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x20\x53\x2f\x51\x65\x50\xa2\x4f\xf1\x00\x28\x67\ +\x03\x5c\x0e\x81\xf4\x6b\x64\x6a\x21\x57\x8b\x8c\xa0\x64\xd4\x58\ +\x9e\x52\xa0\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\ +\x6d\x70\x6f\x72\x74\x20\x66\x75\x72\x6e\x69\x74\x75\x72\x65\x20\ +\x28\x63\x61\x6e\x20\x6d\x61\x6b\x65\x20\x74\x68\x65\x20\x6d\x6f\ +\x64\x65\x6c\x20\x68\x65\x61\x76\x79\x29\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x18\x65\xbc\x00\x32\x00\x44\x6e\x32\x67\xd3\x66\x42\x98\x6f\x79\ +\x3a\x96\x64\x93\x2f\x8a\x0a\x60\x6f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2a\x53\x68\x6f\x77\x20\x64\x65\x62\x75\x67\x20\x69\x6e\ +\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x20\x64\x75\x72\x69\x6e\x67\ +\x20\x32\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\ +\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x12\x98\x6f\x79\x3a\x6e\x32\x67\xd3\x56\x68\x93\x2f\ +\x8a\xa4\x8a\x0a\x60\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\ +\x53\x68\x6f\x77\x20\x72\x65\x6e\x64\x65\x72\x65\x72\x20\x64\x65\ +\x62\x75\x67\x20\x6d\x65\x73\x73\x61\x67\x65\x73\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x9e\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\ +\x69\x00\x65\x00\x73\x00\x20\x00\x68\x00\x6f\x00\x77\x00\x20\x00\ +\x6d\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x74\x00\x69\x00\x6d\x00\ +\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x76\x00\ +\x69\x00\x65\x00\x77\x00\x65\x00\x64\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x65\x00\x20\x00\x74\x00\x68\x00\x69\x00\x63\x00\x6b\x00\ +\x6e\x00\x65\x00\x73\x00\x73\x00\x20\x00\x6d\x00\x75\x00\x73\x00\ +\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x61\x00\x70\x00\x70\x00\ +\x6c\x00\x69\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ +\x63\x00\x75\x00\x74\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x53\x70\x65\x63\x69\ +\x66\x69\x65\x73\x20\x68\x6f\x77\x20\x6d\x61\x6e\x79\x20\x74\x69\ +\x6d\x65\x73\x20\x74\x68\x65\x20\x76\x69\x65\x77\x65\x64\x20\x6c\ +\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\x73\x20\x6d\x75\ +\x73\x74\x20\x62\x65\x20\x61\x70\x70\x6c\x69\x65\x64\x20\x74\x6f\ +\x20\x63\x75\x74\x20\x6c\x69\x6e\x65\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x18\x6b\x64\x70\xba\x65\xb0\x7d\x50\x69\xcb\x72\x69\x4e\xf6\x4e\ +\x4b\x98\x10\x8a\x2d\x82\x72\x5f\x69\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x33\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\ +\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ +\x20\x6e\x65\x77\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x6b\x64\x70\ +\xba\x65\xb0\x72\x46\x97\x62\x72\x69\x4e\xf6\x98\x10\x8a\x2d\x82\ +\x72\x5f\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x54\x68\x69\ +\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\ +\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x57\ +\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x28\x59\x82\x67\x9c\x53\xef\x4e\xe5\x8a\xcb\x4f\x7f\x75\x28\ +\x00\x20\x00\x49\x00\x46\x00\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\ +\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1d\x55\x73\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\ +\x68\x65\x6c\x6c\x20\x69\x66\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\ +\x65\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x06\x00\x26\x5e\xfa\x7b\xc9\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0d\x26\x41\x72\x63\x68\x69\x74\x65\ +\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\ +\x00\x00\x00\x06\x00\x26\x83\x49\x57\x16\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x26\x44\x72\x61\x66\x74\x07\x00\x00\x00\x04\x61\ +\x72\x63\x68\x01\x03\x00\x00\x00\x08\x5e\xfa\x7b\xc9\x5d\xe5\x51\ +\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x41\x72\x63\x68\x20\ +\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\ +\x00\x00\x00\x08\x8a\x08\x7b\x97\x5d\xe5\x51\x77\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x11\x43\x61\x6c\x63\x75\x6c\x61\x74\x69\x6f\ +\x6e\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\ +\x01\x03\x00\x00\x00\x08\x8a\x3b\x91\xcb\x5d\xe5\x51\x77\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x74\x65\x78\x74\x20\ +\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\ +\x00\x00\x00\x08\x8f\x49\x63\xdb\x5d\xe5\x51\x77\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x10\x43\x6f\x6e\x76\x65\x72\x73\x69\x6f\x6e\ +\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ +\x03\x00\x00\x00\x0c\x83\x49\x57\x16\x6a\x21\x5f\x0f\x5d\xe5\x51\ +\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x44\x72\x61\x66\x74\ +\x20\x6d\x6f\x64\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\ +\x72\x63\x68\x01\x03\x00\x00\x00\x08\x83\x49\x57\x16\x5d\xe5\x51\ +\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x72\x61\x66\x74\ +\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ +\x03\x00\x00\x00\x6e\x00\x70\x00\x79\x00\x63\x00\x6f\x00\x6c\x00\ +\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\ +\x20\x00\x66\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x2c\x00\x20\x00\ +\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\ +\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\ +\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\ +\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x64\x00\ +\x2e\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x70\x79\x63\ +\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\ +\x2c\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\x6f\x72\ +\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x69\x73\x61\x62\x6c\ +\x65\x64\x2e\x0a\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ +\x00\x00\x4a\xad\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x04\xf8\x00\x00\x47\xa4\x00\x00\x00\x49\x00\x04\x8e\xc3\ +\x00\x00\x01\x69\x00\x04\x8f\x03\x00\x00\x02\x1c\x00\x04\x8f\x03\ +\x00\x00\x25\xae\x00\x04\x9c\x2c\x00\x00\x27\x34\x00\x04\xbb\x04\ +\x00\x00\x07\xc4\x00\x05\x48\x35\x00\x00\x0c\xd9\x00\x05\x67\xd5\ +\x00\x00\x0e\xeb\x00\x05\x96\x56\x00\x00\x0f\x3b\x00\x05\x96\x56\ +\x00\x00\x2e\xf0\x00\x05\xa0\xa5\x00\x00\x0f\x60\x00\x05\xa0\xa5\ +\x00\x00\x32\x81\x00\x05\xc0\x65\x00\x00\x1d\x3f\x00\x05\xd8\x2c\ +\x00\x00\x1e\xd8\x00\x05\xd8\x2c\x00\x00\x36\x33\x00\x32\x23\xa5\ +\x00\x00\x42\xbe\x00\x39\xdf\x33\x00\x00\x3b\x25\x00\x48\x4e\x25\ +\x00\x00\x01\x41\x00\x49\xeb\x9b\x00\x00\x28\x0c\x00\x4b\x55\x33\ +\x00\x00\x3c\x53\x00\x4d\x36\x62\x00\x00\x0a\x21\x00\x4d\x36\x62\ +\x00\x00\x2a\x80\x00\x5d\xfb\xa8\x00\x00\x1f\x70\x00\x5e\x08\xc3\ +\x00\x00\x1f\xc3\x00\x61\xb0\x33\x00\x00\x16\xb3\x00\x62\x9b\xa8\ +\x00\x00\x0f\xf1\x00\x62\x9b\xa8\x00\x00\x32\xb3\x00\x8a\x92\x57\ +\x00\x00\x00\x00\x00\xaa\x80\x25\x00\x00\x07\x17\x00\xc9\x7b\xf3\ +\x00\x00\x12\xa6\x00\xfb\x72\xf3\x00\x00\x3a\x9f\x01\x19\x4e\x85\ +\x00\x00\x05\xa1\x01\x55\x2b\xf5\x00\x00\x05\x12\x01\x79\x17\x94\ +\x00\x00\x22\x8c\x01\x8e\x84\xa6\x00\x00\x11\x62\x01\xad\x7d\xe3\ +\x00\x00\x44\x4d\x01\xaf\x41\x84\x00\x00\x21\x78\x01\xf7\xa8\x83\ +\x00\x00\x41\x6f\x02\x01\x7f\xd3\x00\x00\x10\x58\x02\x29\xb3\xc4\ +\x00\x00\x2e\x27\x02\x5a\x4a\x53\x00\x00\x15\xd1\x02\x5f\xc9\x59\ +\x00\x00\x35\x21\x02\x66\x7f\x7e\x00\x00\x0d\xc3\x02\x6a\x77\x99\ +\x00\x00\x3d\x9b\x02\x80\x5f\x17\x00\x00\x23\x5d\x02\x82\x88\x3a\ +\x00\x00\x04\x2e\x02\x85\x4f\xf5\x00\x00\x19\x39\x02\x90\x40\x65\ +\x00\x00\x0c\x95\x02\x90\x40\x65\x00\x00\x2a\xb0\x02\x94\x16\x35\ +\x00\x00\x10\x95\x02\xab\x87\xd4\x00\x00\x42\xfe\x02\xb8\xae\x74\ +\x00\x00\x2b\xac\x02\xc3\x91\x93\x00\x00\x3e\xfc\x02\xcd\x05\xa3\ +\x00\x00\x2b\x00\x02\xdd\x14\x14\x00\x00\x2b\xf0\x03\x13\x15\x3e\ +\x00\x00\x0b\x41\x03\x1b\xda\x15\x00\x00\x1f\x3c\x03\x1d\xe8\xe3\ +\x00\x00\x39\x18\x03\x29\x7a\x34\x00\x00\x00\xd7\x03\x2c\xe9\xb3\ +\x00\x00\x17\x1a\x03\x92\x51\xe0\x00\x00\x0f\x8d\x03\xa2\xec\x23\ +\x00\x00\x1e\xff\x03\xbe\xb0\x34\x00\x00\x1e\x0c\x03\xce\x98\xe5\ +\x00\x00\x03\xb8\x03\xd4\x22\x74\x00\x00\x24\xd4\x04\x35\xfa\x55\ +\x00\x00\x12\x1b\x04\xc3\x75\x44\x00\x00\x19\x8e\x04\xdb\x21\x3e\ +\x00\x00\x31\xcc\x04\xeb\xfd\xf4\x00\x00\x0a\x7c\x05\x14\x5b\x83\ +\x00\x00\x07\x48\x05\x18\xda\xa3\x00\x00\x29\xca\x05\x5f\x3d\x83\ +\x00\x00\x3a\x23\x05\x8c\x46\xc5\x00\x00\x0f\x10\x05\x90\xba\xe3\ +\x00\x00\x0e\xbd\x05\xc0\x56\xe3\x00\x00\x3f\x81\x05\xc7\xeb\xc7\ +\x00\x00\x3e\x4d\x05\xe0\x4b\x67\x00\x00\x1f\x98\x05\xe0\x4b\x67\ +\x00\x00\x37\x5d\x05\xef\x78\x4a\x00\x00\x22\xc9\x06\x1f\x6f\xa4\ +\x00\x00\x20\xd8\x06\x32\xe3\xe3\x00\x00\x44\x93\x06\x5b\x01\x15\ +\x00\x00\x03\x87\x06\x69\xd0\x04\x00\x00\x20\x6e\x06\x9f\x6f\xd4\ +\x00\x00\x06\xb9\x06\xd6\x3f\xa4\x00\x00\x22\x4c\x06\xe6\x2f\x43\ +\x00\x00\x11\xbd\x07\x00\xcc\xc4\x00\x00\x3c\x04\x07\x07\x84\xba\ +\x00\x00\x44\xdd\x07\x08\x43\x0e\x00\x00\x25\xd8\x07\x16\x58\x05\ +\x00\x00\x37\xe4\x07\x25\x74\x53\x00\x00\x28\xd1\x07\x28\xff\x15\ +\x00\x00\x0d\x4d\x07\x36\x51\x26\x00\x00\x13\x88\x07\x5c\xdc\x04\ +\x00\x00\x1f\xeb\x07\x60\x23\xf3\x00\x00\x02\xf8\x07\xca\xf8\x87\ +\x00\x00\x37\x8f\x08\x25\x81\xc4\x00\x00\x06\x64\x08\x4a\x45\xd9\ +\x00\x00\x36\x5f\x08\x65\x4c\x95\x00\x00\x1b\xc2\x08\xc5\xe3\x35\ +\x00\x00\x1b\x0d\x08\xca\xc9\x74\x00\x00\x14\xb0\x08\xfb\xb8\xa4\ +\x00\x00\x09\xba\x09\x69\xac\xa7\x00\x00\x1e\x73\x09\x6c\x6c\xa7\ +\x00\x00\x0a\x4b\x09\x9f\xcc\xde\x00\x00\x21\xdc\x09\xba\xe6\x35\ +\x00\x00\x10\x28\x09\xba\xe6\x35\x00\x00\x34\xe7\x09\xc5\xbe\xca\ +\x00\x00\x09\x1a\x09\xe3\x98\xe4\x00\x00\x25\x10\x09\xed\x98\x55\ +\x00\x00\x2f\xfa\x0a\x3e\x06\x83\x00\x00\x04\x9e\x0a\x3f\x1f\xd6\ +\x00\x00\x04\xd8\x0a\x3f\x2b\x25\x00\x00\x05\x67\x0a\x3f\x5d\xac\ +\x00\x00\x05\xea\x0a\x7f\xee\xa3\x00\x00\x43\x29\x0a\xb6\xc8\x9a\ +\x00\x00\x0a\xa7\x0a\xbf\x46\x0e\x00\x00\x1d\x68\x0a\xd6\x07\x84\ +\x00\x00\x20\x1c\x0b\x0a\xc3\xf3\x00\x00\x00\x6f\x0b\x51\x30\xa8\ +\x00\x00\x2c\xec\x0b\x65\xda\xb3\x00\x00\x39\xa3\x0b\x8d\x97\x93\ +\x00\x00\x40\x9f\x0b\x9c\x5b\xe7\x00\x00\x08\x7d\x0b\xb9\xe8\x93\ +\x00\x00\x2d\x6d\x0b\xc4\xb1\x23\x00\x00\x27\x5e\x0c\x02\xac\xd7\ +\x00\x00\x02\xc7\x0c\x02\xac\xd7\x00\x00\x26\x3b\x0c\x25\x3e\x53\ +\x00\x00\x30\xbf\x0c\x3c\x8b\x33\x00\x00\x43\x78\x0c\x41\x0a\x83\ +\x00\x00\x43\xc4\x0c\x4e\x9b\x23\x00\x00\x30\x3f\x0c\x98\x80\x23\ +\x00\x00\x44\x04\x0c\xc4\xd0\x80\x00\x00\x24\x0c\x0c\xdf\x5a\x1e\ +\x00\x00\x01\x8e\x0c\xfc\x97\x06\x00\x00\x1e\xaa\x0d\x03\x26\xb4\ +\x00\x00\x02\x84\x0d\x08\x90\xf3\x00\x00\x1a\xa0\x0d\x1e\xda\xa4\ +\x00\x00\x03\x2f\x0d\x3b\x3b\x49\x00\x00\x33\xb1\x0d\xa8\x3a\x35\ +\x00\x00\x17\x75\x0d\xc1\x7d\x47\x00\x00\x24\x64\x0d\xfa\x53\xe5\ +\x00\x00\x07\xef\x0e\x69\x87\x13\x00\x00\x2f\x1a\x0e\x8c\xd7\x43\ +\x00\x00\x32\xf4\x0e\x98\x0a\xd6\x00\x00\x1d\xae\x0e\xab\x8d\x1f\ +\x00\x00\x38\x8d\x0e\xb9\x1b\xf2\x00\x00\x14\x4f\x0e\xec\x0b\x9e\ +\x00\x00\x26\x75\x0f\x16\x4a\x24\x00\x00\x1c\xcf\x0f\x17\xc7\xa3\ +\x00\x00\x28\x3a\x0f\x55\xc1\x57\x00\x00\x06\x24\x0f\x78\x41\x05\ +\x00\x00\x42\x36\x0f\x79\xe3\xf3\x00\x00\x29\x16\x0f\x95\xd5\x09\ +\x00\x00\x18\x2d\x0f\xa2\x16\x43\x00\x00\x1c\x9b\x0f\xc0\xb8\xb4\ +\x00\x00\x0c\xfe\x0f\xd0\x39\x44\x00\x00\x02\x41\x0f\xe5\x74\x74\ +\x00\x00\x00\xa3\x0f\xf3\xe8\x33\x00\x00\x3b\x88\x69\x00\x00\x45\ +\x9b\x03\x00\x00\x00\x20\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x42\x00\x75\x00\x69\x00\x6c\x00\x64\ +\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x20\x43\x72\x65\x61\x74\x65\x20\x42\x75\x69\x6c\x64\x69\x6e\x67\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\ +\x4c\x00\x69\x00\x73\x00\xe4\x00\xe4\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x03\x41\x64\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x12\x00\x41\x00\x64\x00\x64\x00\x69\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x09\x41\x64\x64\x69\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x41\x00\x6c\x00\x69\x00\ +\x67\x00\x6e\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x09\x41\x6c\x69\x67\x6e\x6d\x65\x6e\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x36\x00\x41\x00\ +\x6c\x00\x6c\x00\x20\x00\x67\x00\x6f\x00\x6f\x00\x64\x00\x21\x00\ +\x20\x00\x6e\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x62\x00\ +\x6c\x00\x65\x00\x6d\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x75\x00\ +\x6e\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x41\x6c\x6c\ +\x20\x67\x6f\x6f\x64\x21\x20\x6e\x6f\x20\x70\x72\x6f\x62\x6c\x65\ +\x6d\x73\x20\x66\x6f\x75\x6e\x64\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x0a\x00\x41\x00\x6e\x00\x67\x00\x6c\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x6e\x67\x6c\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\ +\x41\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x41\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x4e\x00\x41\x00\x78\x00\x65\x00\x73\x00\x20\x00\x73\ +\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x73\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\ +\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x69\x00\x73\ +\x00\x20\x00\x62\x00\x75\x00\x69\x00\x6c\x00\x74\x00\x20\x00\x6f\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x41\x78\x65\x73\ +\x20\x73\x79\x73\x74\x65\x6d\x73\x20\x74\x68\x69\x73\x20\x73\x74\ +\x72\x75\x63\x74\x75\x72\x65\x20\x69\x73\x20\x62\x75\x69\x6c\x74\ +\x20\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x08\x00\x41\x00\x78\x00\x69\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x41\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x1c\x00\x42\x00\x61\x00\x73\x00\x65\x00\ +\x20\x00\x32\x00\x44\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x42\x61\x73\ +\x65\x20\x32\x44\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x00\x42\x00\x61\x00\x73\ +\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ +\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ +\x42\x61\x73\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x52\x00\ +\x61\x00\x6b\x00\x65\x00\x6e\x00\x6e\x00\x75\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x43\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\x6d\x70\ +\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x26\x00\x54\x00\xe4\x00\x6d\x00\xe4\x00\x6e\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\ +\x6e\x00\x20\x00\x6f\x00\x73\x00\x61\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x19\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\ +\x6f\x66\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x43\x00\ +\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x43\x6f\x6e\x74\x69\x6e\x75\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x43\ +\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x75\x00\x74\x00\x65\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\ +\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1f\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x63\ +\x6f\x6d\x70\x75\x74\x65\x20\x74\x68\x65\x20\x77\x61\x6c\x6c\x20\ +\x73\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x3a\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\ +\x00\x27\x00\x74\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x74\ +\x00\x65\x00\x20\x00\x49\x00\x66\x00\x63\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x0a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1d\x43\x6f\x75\x6c\x64\x6e\x27\x74\ +\x20\x6c\x6f\x63\x61\x74\x65\x20\x49\x66\x63\x4f\x70\x65\x6e\x53\ +\x68\x65\x6c\x6c\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x16\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ +\x00\x20\x00\x41\x00\x78\x00\x69\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x41\x78\x69\x73\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x43\ +\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x52\x00\x6f\ +\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\ +\x65\x61\x74\x65\x20\x52\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x28\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x53\x00\x65\x00\x63\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x6e\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\x74\x65\ +\x20\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x43\x00\ +\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\x69\x00\ +\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\ +\x61\x74\x65\x20\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x20\x00\x53\x00\x74\x00\x72\x00\x75\x00\x63\x00\ +\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x10\x43\x72\x65\x61\x74\x65\x20\x53\x74\x72\x75\x63\x74\x75\x72\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x57\ +\x00\x61\x00\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ +\x43\x72\x65\x61\x74\x65\x20\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x20\x00\x57\x00\x69\x00\x6e\x00\x64\ +\x00\x6f\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x72\ +\x65\x61\x74\x65\x20\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\ +\x74\x65\x20\x6e\x65\x77\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\ +\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x2f\x00\x75\x00\ +\x70\x00\x64\x00\x61\x00\x74\x00\x65\x00\x20\x00\x63\x00\x6f\x00\ +\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\x74\x65\x2f\x75\x70\ +\x64\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x45\x00\ +\x74\x00\xe4\x00\x69\x00\x73\x00\x79\x00\x79\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x42\x00\x44\ +\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x63\x00\x65\x00\x73\ +\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x6e\x00\x67\ +\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\ +\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x65\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x44\x69\x73\x74\x61\x6e\ +\x63\x65\x73\x20\x61\x6e\x64\x20\x61\x6e\x67\x6c\x65\x73\x20\x62\ +\x65\x74\x77\x65\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x4d\x00\x75\x00\x6f\ +\x00\x6b\x00\x6b\x00\x61\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x4e\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\ +\x20\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\ +\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x73\x00\x68\x00\x61\x00\ +\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x45\x72\x72\ +\x6f\x72\x20\x72\x65\x6d\x6f\x76\x69\x6e\x67\x20\x73\x70\x6c\x69\ +\x74\x74\x65\x72\x20\x66\x72\x6f\x6d\x20\x77\x61\x6c\x6c\x20\x73\ +\x68\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x58\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\ +\x20\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\ +\x74\x00\x20\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\ +\x69\x00\x6e\x00\x65\x00\x20\x00\x63\x00\x68\x00\x61\x00\x72\x00\ +\x61\x00\x63\x00\x74\x00\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\ +\x63\x00\x6f\x00\x64\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2c\x45\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\ +\x64\x6e\x27\x74\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\ +\x68\x61\x72\x61\x63\x74\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\ +\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5a\ +\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x43\ +\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\ +\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\ +\x00\x65\x00\x20\x00\x63\x00\x68\x00\x61\x00\x72\x00\x61\x00\x63\ +\x00\x74\x00\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\ +\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x0a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2d\x45\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\ +\x6e\x27\x74\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\ +\x61\x72\x61\x63\x74\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\ +\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\ +\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x49\ +\x00\x6e\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x20\x00\x62\ +\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x45\x72\ +\x72\x6f\x72\x3a\x20\x49\x6e\x76\x61\x6c\x69\x64\x20\x62\x61\x73\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x0c\x00\x4c\x00\x61\x00\x74\x00\x74\x00\ +\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\ +\x6f\x72\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x10\x00\x47\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x69\x00\x6e\x00\ +\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x47\x72\x6f\x75\x70\ +\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0c\x00\x48\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x48\x65\x69\x67\x68\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x56\x00\x49\x00\ +\x46\x00\x43\x00\x20\x00\x53\x00\x63\x00\x68\x00\x65\x00\x6d\x00\ +\x61\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\x6f\x00\ +\x75\x00\x6e\x00\x64\x00\x2c\x00\x20\x00\x49\x00\x46\x00\x43\x00\ +\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\ +\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x64\x00\ +\x2e\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\x46\x43\ +\x20\x53\x63\x68\x65\x6d\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\ +\x64\x2c\x20\x49\x46\x43\x20\x69\x6d\x70\x6f\x72\x74\x20\x64\x69\ +\x73\x61\x62\x6c\x65\x64\x2e\x0a\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\xd2\x00\x49\x00\x66\x00\x20\x00\x54\x00\ +\x72\x00\x75\x00\x65\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\ +\x6c\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\ +\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\ +\x66\x00\x61\x00\x63\x00\x65\x00\x2c\x00\x20\x00\x69\x00\x74\x00\ +\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x75\x00\x73\x00\ +\x65\x00\x20\x00\x69\x00\x74\x00\x73\x00\x20\x00\x62\x00\x6f\x00\ +\x72\x00\x64\x00\x65\x00\x72\x00\x20\x00\x77\x00\x69\x00\x72\x00\ +\x65\x00\x20\x00\x61\x00\x73\x00\x20\x00\x74\x00\x72\x00\x61\x00\ +\x63\x00\x65\x00\x2c\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\ +\x64\x00\x69\x00\x73\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\ +\x64\x00\x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x66\x00\x61\x00\x63\x00\x65\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x69\x49\x66\x20\x54\x72\x75\x65\x2c\x20\x69\x66\x20\x74\ +\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\ +\x64\x20\x6f\x6e\x20\x61\x20\x66\x61\x63\x65\x2c\x20\x69\x74\x20\ +\x77\x69\x6c\x6c\x20\x75\x73\x65\x20\x69\x74\x73\x20\x62\x6f\x72\ +\x64\x65\x72\x20\x77\x69\x72\x65\x20\x61\x73\x20\x74\x72\x61\x63\ +\x65\x2c\x20\x61\x6e\x64\x20\x64\x69\x73\x63\x6f\x6e\x73\x69\x64\ +\x65\x72\x20\x74\x68\x65\x20\x66\x61\x63\x65\x2e\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x00\x56\x00\x65\x00\ +\x72\x00\x6b\x00\x6b\x00\x6f\x00\x20\x00\x4d\x00\x75\x00\x6f\x00\ +\x64\x00\x6f\x00\x6c\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x4d\x65\x73\x68\x20\x74\x6f\x20\x53\x68\x61\x70\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\ +\x4e\x00\x69\x00\x6d\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x4e\x61\x6d\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x24\x00\x4e\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\ +\x00\x63\x00\x74\x00\x65\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x12\x4e\x6f\x20\x6f\x62\x6a\x65\x63\x74\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x3e\x00\x4e\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x72\x00\x65\x00\ +\x20\x00\x63\x00\x75\x00\x74\x00\x20\x00\x62\x00\x79\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x4e\x6f\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x61\x72\x65\x20\x63\x75\x74\x20\x62\x79\ +\x20\x74\x68\x65\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x96\x00\x4e\x00\x6f\x00\x20\x00\ +\x73\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x68\x00\x61\x00\ +\x73\x00\x20\x00\x62\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x63\x00\ +\x6f\x00\x6d\x00\x70\x00\x75\x00\x74\x00\x65\x00\x64\x00\x20\x00\ +\x79\x00\x65\x00\x74\x00\x2c\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\ +\x66\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x72\x00\x65\x00\ +\x6e\x00\x64\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x61\x00\x6e\x00\x64\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\ +\x65\x00\x72\x00\x20\x00\x61\x00\x67\x00\x61\x00\x69\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x4b\x4e\x6f\x20\x73\x68\x61\x70\ +\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x63\x6f\x6d\x70\x75\ +\x74\x65\x64\x20\x79\x65\x74\x2c\x20\x73\x65\x6c\x65\x63\x74\x20\ +\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\x72\x65\x6e\x64\x65\x72\ +\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x65\x6e\x64\x65\x72\x20\x61\ +\x67\x61\x69\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x0e\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x4f\x62\x6a\x65\x63\ +\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x08\x00\x50\x00\x61\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x50\x61\x67\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x0c\x00\x50\x00\x6f\x00\x69\x00\x73\x00\x74\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x65\x6d\x6f\ +\x76\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x08\x00\x52\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x10\x00\x53\x00\x69\x00\x6a\x00\x61\x00\x69\ +\x00\x6e\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x32\x00\x53\x00\x6b\x00\x69\x00\x70\x00\x70\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x69\x00\x6e\x00\x76\x00\x61\x00\x6c\x00\ +\x69\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x53\ +\x6b\x69\x70\x70\x69\x6e\x67\x20\x69\x6e\x76\x61\x6c\x69\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x3a\x20\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x14\x00\x4a\x00\x61\x00\x61\x00\x20\x00\ +\x76\x00\x65\x00\x72\x00\x6b\x00\x6b\x00\x6f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x52\ +\x00\x61\x00\x6b\x00\x65\x00\x6e\x00\x6e\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x53\ +\x00\x75\x00\x62\x00\x74\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x53\x75\x62\x74\x72\x61\x63\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x78\x00\x54\x00\x68\x00\ +\x65\x00\x20\x00\x61\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\ +\x20\x00\x6f\x00\x6e\x00\x20\x00\x69\x00\x74\x00\x73\x00\x20\x00\ +\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\ +\x61\x00\x70\x00\x70\x00\x6c\x00\x69\x00\x63\x00\x61\x00\x62\x00\ +\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3c\x54\x68\x65\ +\x20\x61\x6c\x69\x67\x6e\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\ +\x69\x73\x20\x77\x61\x6c\x6c\x20\x6f\x6e\x20\x69\x74\x73\x20\x62\ +\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x69\x66\x20\x61\ +\x70\x70\x6c\x69\x63\x61\x62\x6c\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x2c\x00\x54\x00\x68\x00\x65\x00\x20\ +\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x72\x00\x6f\ +\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x68\ +\x65\x20\x61\x6e\x67\x6c\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x2e\x00\x54\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6e\x00\ +\x67\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x65\x00\x61\x00\x63\x00\x68\x00\x20\x00\x61\x00\x78\x00\x69\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x54\x68\x65\x20\x61\ +\x6e\x67\x6c\x65\x73\x20\x6f\x66\x20\x65\x61\x63\x68\x20\x61\x78\ +\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x4c\x00\x54\x00\x68\x00\x65\x00\x20\x00\x64\x00\x69\x00\x73\x00\ +\x70\x00\x6c\x00\x61\x00\x79\x00\x20\x00\x73\x00\x69\x00\x7a\x00\ +\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x26\x54\x68\x65\x20\x64\x69\x73\x70\x6c\ +\x61\x79\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x86\x00\x54\x00\x68\ +\x00\x65\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\ +\x00\x74\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\ +\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x65\x00\x78\x00\x63\ +\x00\x6c\x00\x75\x00\x64\x00\x65\x00\x20\x00\x77\x00\x68\x00\x65\ +\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\ +\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\ +\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\ +\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x65\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\x54\x68\x65\x20\ +\x65\x6c\x65\x6d\x65\x6e\x74\x20\x6e\x75\x6d\x62\x65\x72\x73\x20\ +\x74\x6f\x20\x65\x78\x63\x6c\x75\x64\x65\x20\x77\x68\x65\x6e\x20\ +\x74\x68\x69\x73\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x69\ +\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x78\x65\x73\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x74\x00\x54\ +\x00\x68\x00\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\ +\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\ +\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x62\x00\x61\ +\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\x00\x74\ +\x00\x6f\x00\x20\x00\x62\x00\x75\x00\x69\x00\x6c\x00\x64\x00\x20\ +\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x72\x00\x6f\x00\x6f\ +\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3a\x54\x68\x65\x20\ +\x66\x61\x63\x65\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x74\ +\x68\x65\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x75\ +\x73\x65\x64\x20\x74\x6f\x20\x62\x75\x69\x6c\x64\x20\x74\x68\x69\ +\x73\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x30\x00\x54\x00\x68\x00\x65\x00\x20\x00\x68\x00\ +\x65\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x6f\x00\x66\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x66\x00\x6c\x00\ +\x6f\x00\x6f\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x54\ +\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\x6f\x66\x20\x74\x68\x69\ +\x73\x20\x66\x6c\x6f\x6f\x72\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\xb0\x00\x54\x00\x68\x00\x65\x00\x20\x00\x68\ +\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\ +\x00\x6c\x00\x6c\x00\x2e\x00\x20\x00\x4b\x00\x65\x00\x65\x00\x70\ +\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\ +\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\ +\x00\x2e\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x20\x00\x75\x00\x73\ +\x00\x65\x00\x64\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\ +\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\ +\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x73\x00\x6f\ +\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x58\ +\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\x6f\x66\x20\x74\x68\ +\x69\x73\x20\x77\x61\x6c\x6c\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\ +\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x2e\x20\x4e\ +\x6f\x74\x20\x75\x73\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\x20\ +\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\ +\x20\x61\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x86\x00\x54\x00\x68\x00\x65\x00\x20\x00\ +\x68\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x6f\x00\ +\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\x72\x00\x75\x00\x73\x00\ +\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x70\x00\x74\x00\ +\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x2e\x00\x20\x00\x4b\x00\x65\x00\x65\x00\x70\x00\x20\x00\ +\x30\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x75\x00\ +\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x43\x54\x68\x65\x20\x68\x65\x69\x67\x68\ +\x74\x20\x6f\x72\x20\x65\x78\x74\x72\x75\x73\x69\x6f\x6e\x20\x64\ +\x65\x70\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\ +\x6d\x65\x6e\x74\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\ +\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\x54\x00\x68\x00\x65\x00\ +\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x76\x00\x61\x00\ +\x6c\x00\x73\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\x00\ +\x65\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1a\x54\x68\x65\x20\x69\x6e\x74\x65\x72\ +\x76\x61\x6c\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x61\x78\x65\ +\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2c\ +\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x6e\x00\x67\ +\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\ +\x00\x65\x00\x20\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x16\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\ +\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\x65\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x6a\x00\x54\x00\x68\x00\ +\x65\x00\x20\x00\x6c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\ +\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\ +\x6e\x00\x20\x00\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x66\x00\ +\x69\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x54\ +\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x74\x68\x69\ +\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\x6e\x6f\ +\x74\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\x72\x6f\ +\x66\x69\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\xa2\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\ +\x72\x00\x6d\x00\x61\x00\x6c\x00\x20\x00\x65\x00\x78\x00\x74\x00\ +\x72\x00\x75\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\ +\x69\x00\x72\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ +\x28\x00\x6b\x00\x65\x00\x65\x00\x70\x00\x20\x00\x28\x00\x30\x00\ +\x2c\x00\x30\x00\x2c\x00\x30\x00\x29\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\ +\x74\x00\x69\x00\x63\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\ +\x61\x00\x6c\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x54\ +\x68\x65\x20\x6e\x6f\x72\x6d\x61\x6c\x20\x65\x78\x74\x72\x75\x73\ +\x69\x6f\x6e\x20\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x6b\x65\ +\x65\x70\x20\x28\x30\x2c\x30\x2c\x30\x29\x20\x66\x6f\x72\x20\x61\ +\x75\x74\x6f\x6d\x61\x74\x69\x63\x20\x6e\x6f\x72\x6d\x61\x6c\x29\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x65\x00\ +\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x73\x00\ +\x74\x00\x79\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x14\x54\x68\x65\x20\x6e\x75\x6d\x65\x72\x61\x74\x69\x6f\x6e\x20\ +\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\xa6\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x74\x00\x68\ +\x00\x61\x00\x74\x00\x20\x00\x6d\x00\x75\x00\x73\x00\x74\x00\x20\ +\x00\x62\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\ +\x00\x64\x00\x65\x00\x72\x00\x65\x00\x64\x00\x20\x00\x62\x00\x79\ +\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\x00\x65\ +\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\x6c\ +\x00\x61\x00\x6e\x00\x65\x00\x2e\x00\x20\x00\x45\x00\x6d\x00\x70\ +\x00\x74\x00\x79\x00\x20\x00\x6d\x00\x65\x00\x61\x00\x6e\x00\x73\ +\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x64\x00\x6f\x00\x63\ +\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x53\x54\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x74\x68\x61\x74\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x63\x6f\x6e\ +\x73\x69\x64\x65\x72\x65\x64\x20\x62\x79\x20\x74\x68\x69\x73\x20\ +\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x2e\x20\x45\ +\x6d\x70\x74\x79\x20\x6d\x65\x61\x6e\x73\x20\x61\x6c\x6c\x20\x64\ +\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x38\x00\x54\x00\x68\x00\x65\x00\x20\x00\x73\ +\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x61\x00\x78\x00\x69\x00\x73\x00\x20\ +\x00\x62\x00\x75\x00\x62\x00\x62\x00\x6c\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1c\x54\x68\x65\x20\x73\x69\x7a\x65\ +\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\x69\x73\x20\x62\x75\x62\ +\x62\x6c\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x68\x00\x54\x00\x68\x00\x65\x00\x20\x00\x77\x00\x69\x00\ +\x64\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\ +\x6e\x00\x6f\x00\x74\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\ +\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x70\x00\ +\x72\x00\x6f\x00\x66\x00\x69\x00\x6c\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x34\x54\x68\x65\x20\x77\x69\x64\x74\x68\x20\x6f\ +\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\x20\ +\x69\x66\x20\x6e\x6f\x74\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\ +\x61\x20\x70\x72\x6f\x66\x69\x6c\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x80\x00\x54\x00\x68\x00\x65\x00\x20\ +\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\ +\x00\x6c\x00\x6c\x00\x2e\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x20\ +\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\x00\x69\x00\x66\x00\x20\ +\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\ +\x00\x6c\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\ +\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\ +\x00\x66\x00\x61\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x40\x54\x68\x65\x20\x77\x69\x64\x74\x68\x20\x6f\x66\x20\x74\ +\x68\x69\x73\x20\x77\x61\x6c\x6c\x2e\x20\x4e\x6f\x74\x20\x75\x73\ +\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\ +\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x66\x61\ +\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x12\x00\x54\x00\x68\x00\x69\x00\x63\x00\x6b\x00\x6e\x00\x65\x00\ +\x73\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\x68\x69\ +\x63\x6b\x6e\x65\x73\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x3a\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x6d\x00\x65\x00\x73\x00\x68\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x61\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x76\x00\x61\x00\x6c\x00\ +\x69\x00\x64\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x54\x68\x69\x73\x20\x6d\x65\ +\x73\x68\x20\x69\x73\x20\x61\x6e\x20\x69\x6e\x76\x61\x6c\x69\x64\ +\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x0c\x00\x54\x00\x79\x00\x79\x00\x70\x00\x70\x00\ +\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\x79\x70\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x00\x54\ +\x00\x79\x00\x70\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\ +\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0f\x54\x79\x70\x65\x20\x63\x6f\x6e\x76\x65\ +\x72\x73\x69\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x2e\x00\x55\x00\x6e\x00\x61\x00\x62\x00\x6c\x00\x65\ +\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x61\x00\x20\x00\x72\x00\x6f\x00\x6f\ +\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x55\x6e\x61\x62\ +\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x72\ +\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x34\x00\x55\x00\x6e\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\ +\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ +\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\ +\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\ +\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x55\x00\x6e\x00\x67\x00\ +\x72\x00\x6f\x00\x75\x00\x70\x00\x69\x00\x6e\x00\x67\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x55\x6e\x67\x72\x6f\x75\x70\x69\x6e\ +\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\ +\x00\x56\x00\x69\x00\x65\x00\x77\x00\x20\x00\x6f\x00\x66\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x07\x56\x69\x65\x77\x20\x6f\x66\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x53\ +\x00\x65\x00\x69\x00\x6e\x00\xe4\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x18\x00\x57\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\ +\x6f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0c\x57\x61\x6c\x6c\x20\x6f\x70\x74\x69\ +\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x12\x00\x57\x00\x61\x00\x6c\x00\x6c\x00\x54\x00\x72\x00\x61\ +\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x57\x61\ +\x6c\x6c\x54\x72\x61\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x0a\x00\x57\x00\x69\x00\x64\x00\x74\x00\x68\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x57\x69\x64\x74\x68\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x49\ +\x00\x6b\x00\x6b\x00\x75\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x57\x00\x69\x00\x72\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x57\x69\x72\ +\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x10\x00\x5a\x00\x20\x00\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x5a\x20\x6f\x66\x66\ +\x73\x65\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x26\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x20\ +\x00\x65\x00\x64\x00\x69\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x13\x63\x6c\x6f\x73\x69\x6e\x67\x20\x53\x6b\x65\x74\x63\x68\ +\x20\x65\x64\x69\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x36\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\ +\x00\x6e\x00\x73\x00\x20\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x6e\ +\x00\x2d\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x20\ +\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1b\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x61\x20\x6e\ +\x6f\x6e\x2d\x63\x6c\x6f\x73\x65\x64\x20\x73\x6f\x6c\x69\x64\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5a\x00\x63\ +\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x20\ +\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\ +\x00\x61\x00\x74\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6e\ +\x00\x6f\x00\x74\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\x20\ +\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x73\ +\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x2d\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x66\x61\x63\x65\x73\ +\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x70\x61\ +\x72\x74\x20\x6f\x66\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x64\ +\x00\x6f\x00\x65\x00\x73\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x63\ +\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x61\ +\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x64\x6f\x65\x73\x6e\x27\ +\x74\x20\x63\x6f\x6e\x74\x61\x69\x6e\x20\x61\x6e\x79\x20\x73\x6f\ +\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x3a\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x25\x00\x73\ +\x00\x20\x00\x73\x00\x75\x00\x63\x00\x63\x00\x65\x00\x73\x00\x73\ +\x00\x66\x00\x75\x00\x6c\x00\x6c\x00\x79\x00\x20\x00\x63\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x64\x00\x2e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1d\x66\x69\x6c\x65\x20\x25\x73\x20\x73\x75\ +\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x63\x72\x65\x61\x74\ +\x65\x64\x2e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x1a\x00\x69\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\ +\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x69\x73\x20\x6e\x6f\x74\x20\x63\x6c\x6f\ +\x73\x65\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x18\x00\x69\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\ +\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x69\x73\x20\x6e\x6f\x74\x20\x76\x61\x6c\x69\x64\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x52\x00\ +\x70\x00\x79\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\ +\x61\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\x6f\x00\ +\x75\x00\x6e\x00\x64\x00\x2c\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\ +\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\ +\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x2e\x00\ +\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x70\x79\x63\x6f\x6c\ +\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\ +\x6e\x6f\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\x6f\ +\x72\x74\x2e\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x64\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\ +\x68\x00\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x76\x00\x6f\x00\ +\x69\x00\x64\x00\x20\x00\x63\x00\x72\x00\x6f\x00\x73\x00\x73\x00\ +\x2d\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\ +\x63\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x32\x72\x65\x6d\x6f\x76\x69\x6e\x67\x20\x73\x6b\x65\x74\x63\x68\ +\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x74\x6f\x20\x61\x76\x6f\x69\ +\x64\x20\x63\x72\x6f\x73\x73\x2d\x72\x65\x66\x65\x72\x65\x6e\x63\ +\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x2a\x00\x73\x00\x75\x00\x63\x00\x63\x00\x65\x00\x73\x00\x73\ +\x00\x66\x00\x75\x00\x6c\x00\x6c\x00\x79\x00\x20\x00\x77\x00\x72\ +\x00\x69\x00\x74\x00\x74\x00\x65\x00\x6e\x00\x20\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x15\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\ +\x6c\x79\x20\x77\x72\x69\x74\x74\x65\x6e\x20\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ +\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6e\x00\x64\ +\x00\x6f\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x74\x68\ +\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\ +\x74\x68\x69\x73\x20\x77\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x4c\x00\x69\x00\x73\ +\x00\xe4\x00\xe4\x00\x20\x00\x6f\x00\x73\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\x63\x6f\x6d\x70\x6f\x6e\ +\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\ +\x01\x03\x00\x00\x00\x50\x00\x4c\x00\x69\x00\x73\x00\xe4\x00\xe4\ +\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x75\x00\x74\ +\x00\x20\x00\x6f\x00\x73\x00\x61\x00\x74\x00\x20\x00\x41\x00\x6b\ +\x00\x74\x00\x69\x00\x69\x00\x76\x00\x69\x00\x73\x00\x65\x00\x65\ +\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\ +\x00\x69\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\ +\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x74\x6f\x20\ +\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\ +\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\ +\x00\x00\x00\x08\x00\x41\x00\x78\x00\x69\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x41\x78\x69\x73\x07\x00\x00\x00\x09\x41\ +\x72\x63\x68\x5f\x41\x78\x69\x73\x01\x03\x00\x00\x00\x2e\x00\x43\ +\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\ +\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x69\x00\x73\x00\x20\x00\x73\ +\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x2e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\ +\x20\x61\x78\x69\x73\x20\x73\x79\x73\x74\x65\x6d\x2e\x07\x00\x00\ +\x00\x09\x41\x72\x63\x68\x5f\x41\x78\x69\x73\x01\x03\x00\x00\x00\ +\x10\x00\x52\x00\x61\x00\x6b\x00\x65\x00\x6e\x00\x6e\x00\x75\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\x6c\x64\ +\x69\x6e\x67\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\ +\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x68\x00\x4c\x00\x75\x00\ +\x6f\x00\x20\x00\x72\x00\x61\x00\x6b\x00\x65\x00\x6e\x00\x6e\x00\ +\x75\x00\x6b\x00\x73\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x2c\x00\x20\x00\x73\x00\ +\x69\x00\x73\x00\xe4\x00\x6c\x00\x74\x00\xe4\x00\x65\x00\x6e\x00\ +\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x75\x00\x74\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\ +\x74\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x62\x75\x69\x6c\x64\x69\x6e\x67\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x2e\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\ +\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x08\x00\x53\x00\x6f\x00\x6c\ +\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x43\x65\x6c\x6c\ +\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\ +\x00\x00\x00\x60\x00\x4c\x00\x75\x00\x6f\x00\x20\x00\x73\x00\x6f\ +\x00\x6c\x00\x75\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x69\x00\x2c\x00\x20\x00\x6d\x00\x75\x00\x6b\x00\x61\ +\x00\x61\x00\x6e\x00\x20\x00\x6c\x00\x75\x00\x6b\x00\x69\x00\x65\ +\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x75\ +\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\ +\x00\x69\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x20\x63\x65\x6c\x6c\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ +\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\ +\x00\x0a\x00\x43\x00\x68\x00\x65\x00\x63\x00\x6b\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x05\x43\x68\x65\x63\x6b\x07\x00\x00\x00\x0a\ +\x41\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\x01\x03\x00\x00\x00\x50\ +\x00\x43\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x73\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\ +\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ +\x00\x70\x00\x72\x00\x6f\x00\x62\x00\x6c\x00\x65\x00\x6d\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x43\x68\x65\x63\x6b\x73\ +\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x66\x6f\x72\x20\x70\x72\x6f\x62\x6c\x65\ +\x6d\x73\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\x63\ +\x6b\x01\x03\x00\x00\x00\x16\x00\x43\x00\x6c\x00\x6f\x00\x73\x00\ +\x65\x00\x20\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0b\x43\x6c\x6f\x73\x65\x20\x68\x6f\x6c\ +\x65\x73\x07\x00\x00\x00\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\ +\x65\x48\x6f\x6c\x65\x73\x01\x03\x00\x00\x00\x60\x00\x43\x00\x6c\ +\x00\x6f\x00\x73\x00\x65\x00\x73\x00\x20\x00\x68\x00\x6f\x00\x6c\ +\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x6f\x00\x70\ +\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\ +\x00\x73\x00\x2c\x00\x20\x00\x74\x00\x75\x00\x72\x00\x6e\x00\x69\ +\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x20\ +\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x30\x43\x6c\x6f\x73\x65\x73\x20\x68\x6f\x6c\ +\x65\x73\x20\x69\x6e\x20\x6f\x70\x65\x6e\x20\x73\x68\x61\x70\x65\ +\x73\x2c\x20\x74\x75\x72\x6e\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\ +\x73\x6f\x6c\x69\x64\x73\x07\x00\x00\x00\x0f\x41\x72\x63\x68\x5f\ +\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\x01\x03\x00\x00\x00\x66\ +\x00\x4c\x00\x75\x00\x6f\x00\x20\x00\x6c\x00\x61\x00\x74\x00\x74\ +\x00\x69\x00\x61\x00\x2d\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x69\x00\x6e\x00\x2c\x00\x20\x00\x6d\x00\x75\x00\x6b\ +\x00\x61\x00\x61\x00\x6e\x00\x20\x00\x6c\x00\x75\x00\x6b\x00\x69\ +\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\ +\x00\x75\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x69\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x66\x6c\x6f\x6f\x72\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\ +\x01\x03\x00\x00\x00\x0c\x00\x4c\x00\x61\x00\x74\x00\x74\x00\x69\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\ +\x72\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\ +\x01\x03\x00\x00\x00\x1e\x00\x56\x00\x65\x00\x72\x00\x6b\x00\x6b\ +\x00\x6f\x00\x20\x00\x4d\x00\x75\x00\x6f\x00\x64\x00\x6f\x00\x6c\ +\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\ +\x73\x68\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x10\ +\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\ +\x01\x03\x00\x00\x00\x5a\x00\x54\x00\x75\x00\x72\x00\x6e\x00\x73\ +\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\ +\x00\x64\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\ +\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x50\x00\x61\ +\x00\x72\x00\x74\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x54\x75\x72\x6e\x73\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\ +\x69\x6e\x74\x6f\x20\x50\x61\x72\x74\x20\x53\x68\x61\x70\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\ +\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\ +\x00\x14\x00\x50\x00\x6f\x00\x69\x00\x73\x00\x74\x00\x61\x00\x20\ +\x00\x6f\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x52\x65\x6d\x6f\x76\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\ +\x01\x03\x00\x00\x00\x8a\x00\x50\x00\x6f\x00\x69\x00\x73\x00\x74\ +\x00\x61\x00\x61\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\ +\x00\x75\x00\x74\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\ +\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x74\x00\x20\x00\x76\ +\x00\x61\x00\x6e\x00\x68\x00\x65\x00\x6d\x00\x6d\x00\x69\x00\x6c\ +\x00\x74\x00\x61\x00\x61\x00\x6e\x00\x20\x00\x74\x00\x61\x00\x69\ +\x00\x20\x00\x6c\x00\x75\x00\x6f\x00\x20\x00\x72\x00\x65\x00\x69\ +\x00\xe4\x00\x6e\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\ +\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x73\x00\x73\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x65\x6d\x6f\x76\x65\ +\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\ +\x65\x69\x72\x20\x70\x61\x72\x65\x6e\x74\x73\x2c\x20\x6f\x72\x20\ +\x63\x72\x65\x61\x74\x65\x20\x61\x20\x68\x6f\x6c\x65\x20\x69\x6e\ +\x20\x61\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\ +\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\ +\x00\x46\x00\x4d\x00\x75\x00\x6f\x00\x64\x00\x6f\x00\x6e\x00\x20\ +\x00\x70\x00\x6f\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6d\x00\x69\ +\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x41\x00\x72\x00\x6b\x00\x6b\ +\x00\x69\x00\x74\x00\x65\x00\x68\x00\x74\x00\x75\x00\x75\x00\x72\ +\x00\x69\x00\x73\x00\x74\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x16\x52\x65\x6d\x6f\x76\x65\x20\x53\x68\x61\x70\x65\x20\x66\ +\x72\x6f\x6d\x20\x41\x72\x63\x68\x07\x00\x00\x00\x10\x41\x72\x63\ +\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\ +\x00\x00\x6c\x00\x50\x00\x6f\x00\x69\x00\x73\x00\x74\x00\x61\x00\ +\x61\x00\x20\x00\x6b\x00\x75\x00\x75\x00\x74\x00\x69\x00\x6f\x00\ +\x6d\x00\x75\x00\x6f\x00\x64\x00\x6f\x00\x74\x00\x20\x00\x41\x00\ +\x72\x00\x6b\x00\x6b\x00\x69\x00\x74\x00\x65\x00\x68\x00\x74\x00\ +\x75\x00\x75\x00\x72\x00\x69\x00\x73\x00\x69\x00\x73\x00\x74\x00\ +\x61\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\ +\x65\x00\x6e\x00\x74\x00\x65\x00\x69\x00\x73\x00\x74\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x29\x52\x65\x6d\x6f\x76\x65\x73\ +\x20\x63\x75\x62\x69\x63\x20\x73\x68\x61\x70\x65\x73\x20\x66\x72\ +\x6f\x6d\x20\x41\x72\x63\x68\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\ +\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x72\x00\x43\x00\ +\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\ +\x20\x00\x72\x00\x6f\x00\x6f\x00\x66\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\ +\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x66\x00\ +\x61\x00\x63\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\ +\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x39\x43\x72\x65\x61\x74\x65\x73\ +\x20\x61\x20\x72\x6f\x6f\x66\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\ +\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ +\x20\x66\x61\x63\x65\x20\x6f\x66\x20\x61\x6e\x20\x6f\x62\x6a\x65\ +\x63\x74\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x52\x6f\x6f\x66\ +\x01\x03\x00\x00\x00\x08\x00\x52\x00\x6f\x00\x6f\x00\x66\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\ +\x09\x41\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x7c\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\ +\x00\x61\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\ +\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x3e\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ +\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x2c\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\ +\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x07\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\ +\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x12\ +\x00\x4f\x00\x73\x00\x61\x00\x6e\x00\x20\x00\x74\x00\x61\x00\x73\ +\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\x63\x74\ +\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x41\x72\ +\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\ +\x03\x00\x00\x00\x38\x00\x56\x00\x61\x00\x6c\x00\x69\x00\x74\x00\ +\x73\x00\x65\x00\x20\x00\x65\x00\x69\x00\x2d\x00\x6d\x00\x6f\x00\ +\x6e\x00\x69\x00\x6e\x00\x61\x00\x69\x00\x73\x00\x65\x00\x74\x00\ +\x20\x00\x76\x00\x65\x00\x72\x00\x6b\x00\x6f\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\x6e\x6f\ +\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\ +\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\ +\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\ +\x03\x00\x00\x00\x92\x00\x56\x00\x61\x00\x6c\x00\x69\x00\x74\x00\ +\x73\x00\x65\x00\x65\x00\x20\x00\x6b\x00\x61\x00\x69\x00\x6b\x00\ +\x6b\x00\x69\x00\x20\x00\x65\x00\x69\x00\x2d\x00\x6d\x00\x6f\x00\ +\x6e\x00\x69\x00\x6e\x00\x61\x00\x69\x00\x73\x00\x65\x00\x74\x00\ +\x20\x00\x76\x00\x65\x00\x72\x00\x6b\x00\x6f\x00\x74\x00\x20\x00\ +\x61\x00\x73\x00\x69\x00\x61\x00\x6b\x00\x69\x00\x72\x00\x6a\x00\ +\x61\x00\x73\x00\x74\x00\x61\x00\x20\x00\x74\x00\x61\x00\x69\x00\ +\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x75\x00\x69\x00\ +\x73\x00\x74\x00\x61\x00\x20\x00\x72\x00\x79\x00\x68\x00\x6d\x00\ +\x69\x00\x73\x00\x74\x00\xe4\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x4d\x53\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6e\x6f\x6e\ +\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\ +\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\ +\x6e\x74\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x67\x72\x6f\x75\x70\x73\x07\x00\ +\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\ +\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\ +\x00\x66\x00\x4c\x00\x75\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x6e\x00\x20\x00\x73\x00\x69\ +\x00\x6a\x00\x61\x00\x69\x00\x6e\x00\x6e\x00\x69\x00\x6e\x00\x2c\ +\x00\x20\x00\x73\x00\x69\x00\x73\x00\xe4\x00\x6c\x00\x74\x00\xe4\ +\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\ +\x00\x75\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x69\x00\x74\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x69\x74\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\ +\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\ +\x65\x01\x03\x00\x00\x00\x10\x00\x53\x00\x69\x00\x6a\x00\x61\x00\ +\x69\x00\x6e\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x53\x69\x74\x65\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\ +\x69\x74\x65\x01\x03\x00\x00\x00\x14\x00\x4a\x00\x61\x00\x61\x00\ +\x20\x00\x76\x00\x65\x00\x72\x00\x6b\x00\x6b\x00\x6f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\ +\x68\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\ +\x4d\x65\x73\x68\x01\x03\x00\x00\x00\x68\x00\x4a\x00\x61\x00\x6b\ +\x00\x61\x00\x61\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\ +\x00\x75\x00\x74\x00\x20\x00\x76\x00\x65\x00\x72\x00\x6b\x00\x6f\ +\x00\x74\x00\x20\x00\x72\x00\x69\x00\x69\x00\x70\x00\x70\x00\x75\ +\x00\x6d\x00\x61\x00\x74\x00\x74\x00\x6f\x00\x6d\x00\x69\x00\x69\ +\x00\x6e\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ +\x00\x65\x00\x6e\x00\x74\x00\x74\x00\x65\x00\x69\x00\x68\x00\x69\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x53\x70\x6c\x69\ +\x74\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\ +\x65\x73\x20\x69\x6e\x74\x6f\x20\x69\x6e\x64\x65\x70\x65\x6e\x64\ +\x65\x6e\x74\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\ +\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\ +\x68\x01\x03\x00\x00\x00\xb4\x00\x4c\x00\x75\x00\x6f\x00\x20\x00\ +\x72\x00\x61\x00\x6b\x00\x65\x00\x6e\x00\x6e\x00\x65\x00\x2d\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x6e\x00\ +\x20\x00\x70\x00\x69\x00\x69\x00\x72\x00\x72\x00\x6f\x00\x73\x00\ +\x74\x00\x61\x00\x20\x00\x74\x00\x61\x00\x69\x00\x20\x00\x76\x00\ +\x61\x00\x6c\x00\x69\x00\x74\x00\x75\x00\x73\x00\x74\x00\x61\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\ +\x73\x00\x74\x00\x61\x00\x20\x00\x28\x00\x73\x00\x6b\x00\x65\x00\ +\x74\x00\x73\x00\x69\x00\x2c\x00\x20\x00\x6c\x00\x61\x00\x6e\x00\ +\x6b\x00\x61\x00\x2c\x00\x20\x00\x70\x00\x69\x00\x6e\x00\x74\x00\ +\x61\x00\x20\x00\x74\x00\x61\x00\x69\x00\x20\x00\x6b\x00\x69\x00\ +\x69\x00\x6e\x00\x74\x00\x65\x00\xe4\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x5f\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\ +\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\ +\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x28\x73\x6b\x65\x74\x63\x68\x2c\x20\ +\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\ +\x6c\x69\x64\x29\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\ +\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\x0e\x00\x52\x00\ +\x61\x00\x6b\x00\x65\x00\x6e\x00\x6e\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\ +\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\ +\x65\x01\x03\x00\x00\x00\xa2\x00\x4c\x00\x75\x00\x6f\x00\x20\x00\ +\x73\x00\x65\x00\x69\x00\x6e\x00\xe4\x00\x2d\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x6e\x00\x20\x00\x70\x00\ +\x69\x00\x69\x00\x72\x00\x72\x00\x6f\x00\x69\x00\x73\x00\x74\x00\ +\x61\x00\x20\x00\x74\x00\x61\x00\x69\x00\x20\x00\x76\x00\x61\x00\ +\x6c\x00\x69\x00\x74\x00\x75\x00\x73\x00\x74\x00\x61\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x73\x00\ +\x74\x00\x61\x00\x20\x00\x28\x00\x6c\x00\x61\x00\x6e\x00\x6b\x00\ +\x61\x00\x2c\x00\x20\x00\x70\x00\x69\x00\x6e\x00\x74\x00\x61\x00\ +\x20\x00\x74\x00\x61\x00\x69\x00\x20\x00\x6b\x00\x69\x00\x69\x00\ +\x6e\x00\x74\x00\x65\x00\xe4\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x52\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\x61\x6c\ +\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\ +\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x28\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\ +\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\ +\x61\x6c\x6c\x01\x03\x00\x00\x00\x0a\x00\x53\x00\x65\x00\x69\x00\ +\x6e\x00\xe4\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\ +\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\ +\x03\x00\x00\x00\x94\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\ +\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x77\x00\x69\x00\x6e\x00\ +\x64\x00\x6f\x00\x77\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\ +\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x20\x00\x28\x00\x77\x00\x69\x00\x72\x00\x65\x00\x2c\x00\ +\x20\x00\x72\x00\x65\x00\x63\x00\x74\x00\x61\x00\x6e\x00\x67\x00\ +\x6c\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x6b\x00\ +\x65\x00\x74\x00\x63\x00\x68\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x4a\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\x69\x6e\ +\x64\x6f\x77\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\ +\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x72\x65\x63\x74\x61\x6e\x67\ +\x6c\x65\x20\x6f\x72\x20\x73\x6b\x65\x74\x63\x68\x29\x07\x00\x00\ +\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ +\x00\x00\x0c\x00\x49\x00\x6b\x00\x6b\x00\x75\x00\x6e\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x07\ +\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\ +\x03\x00\x00\x00\x18\x00\x32\x00\x44\x00\x20\x00\x72\x00\x65\x00\ +\x6e\x00\x64\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0c\x32\x44\x20\x72\x65\x6e\x64\x65\x72\ +\x69\x6e\x67\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x50\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x67\x00\x72\x00\x6f\ +\x00\x75\x00\x70\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ +\x00\x65\x00\x61\x00\x63\x00\x68\x00\x20\x00\x41\x00\x72\x00\x63\ +\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x28\x43\x72\x65\x61\x74\x65\x73\x20\x67\x72\x6f\x75\ +\x70\x73\x20\x66\x6f\x72\x20\x65\x61\x63\x68\x20\x41\x72\x63\x68\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x3c\x00\x43\x00\x75\x00\x74\x00\x20\x00\x61\x00\x72\x00\ +\x65\x00\x61\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x63\x00\x6b\x00\x6e\x00\x65\x00\ +\x73\x00\x73\x00\x20\x00\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x43\x75\x74\x20\x61\x72\x65\ +\x61\x73\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\ +\x73\x20\x72\x61\x74\x69\x6f\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x4f\ +\x00\x6c\x00\x65\x00\x74\x00\x75\x00\x73\x00\x61\x00\x72\x00\x76\ +\x00\x6f\x00\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x76\x00\xe4\ +\x00\x72\x00\x69\x00\x20\x00\x72\x00\x61\x00\x6b\x00\x65\x00\x6e\ +\x00\x74\x00\x65\x00\x69\x00\x6c\x00\x6c\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1c\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\ +\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x74\x72\x75\x63\x74\x75\x72\ +\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x38\x00\x4f\x00\x6c\x00\x65\x00\ +\x74\x00\x75\x00\x73\x00\x61\x00\x72\x00\x76\x00\x6f\x00\x69\x00\ +\x6e\x00\x65\x00\x6e\x00\x20\x00\x76\x00\xe4\x00\x72\x00\x69\x00\ +\x20\x00\x73\x00\x65\x00\x69\x00\x6e\x00\x69\x00\x6c\x00\x6c\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x44\x65\x66\x61\x75\ +\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\x61\x6c\ +\x6c\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x44\x00\x65\x00\x66\x00\ +\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\ +\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x77\x00\ +\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x19\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ +\x6f\x72\x20\x66\x6f\x72\x20\x77\x69\x6e\x64\x6f\x77\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x40\x00\x41\x00\x72\x00\x6b\x00\x6b\x00\x69\x00\ +\x74\x00\x65\x00\x68\x00\x74\x00\x75\x00\x75\x00\x72\x00\x69\x00\ +\x6e\x00\x20\x00\x59\x00\x6c\x00\x65\x00\x69\x00\x73\x00\x65\x00\ +\x74\x00\x20\x00\x61\x00\x73\x00\x65\x00\x74\x00\x75\x00\x6b\x00\ +\x73\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x47\ +\x65\x6e\x65\x72\x61\x6c\x20\x41\x72\x63\x68\x20\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x22\x00\x59\x00\x6c\x00\ +\x65\x00\x69\x00\x73\x00\x65\x00\x74\x00\x20\x00\x61\x00\x73\x00\ +\x65\x00\x74\x00\x75\x00\x6b\x00\x73\x00\x65\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\ +\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x47\ +\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\ +\x00\x62\x00\x79\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x72\x6f\x75\x70\x20\ +\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x62\x79\x20\x74\x79\ +\x70\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x49\x00\x46\x00\x43\ +\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\x49\x46\x43\x20\x69\x6d\x70\x6f\ +\x72\x74\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\xba\x00\x49\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x49\x00\x46\x00\x43\x00\ +\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\ +\x6c\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\ +\x62\x00\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x61\x00\x6c\x00\x6c\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x69\x00\x6d\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x72\x00\x65\x00\ +\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\x74\x00\x79\x00\x70\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x49\x66\x20\ +\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x74\x68\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\ +\x6c\x20\x69\x6d\x70\x6f\x72\x74\x65\x72\x20\x77\x69\x6c\x6c\x20\ +\x62\x65\x20\x75\x73\x65\x64\x2c\x20\x61\x6c\x6c\x6f\x77\x69\x6e\ +\x67\x20\x74\x6f\x20\x69\x6d\x70\x6f\x72\x74\x20\x6d\x6f\x72\x65\ +\x20\x49\x46\x43\x20\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x56\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\ +\x66\x00\x75\x00\x72\x00\x6e\x00\x69\x00\x74\x00\x75\x00\x72\x00\ +\x65\x00\x20\x00\x28\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x6d\x00\ +\x61\x00\x6b\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x6d\x00\x6f\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x68\x00\x65\x00\ +\x61\x00\x76\x00\x79\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2b\x49\x6d\x70\x6f\x72\x74\x20\x66\x75\x72\x6e\x69\x74\x75\x72\ +\x65\x20\x28\x63\x61\x6e\x20\x6d\x61\x6b\x65\x20\x74\x68\x65\x20\ +\x6d\x6f\x64\x65\x6c\x20\x68\x65\x61\x76\x79\x29\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x54\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x64\x00\ +\x65\x00\x62\x00\x75\x00\x67\x00\x20\x00\x69\x00\x6e\x00\x66\x00\ +\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x20\x00\x64\x00\x75\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x32\x00\x44\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\ +\x72\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2a\x53\x68\x6f\x77\x20\x64\x65\x62\x75\x67\x20\x69\x6e\x66\x6f\ +\x72\x6d\x61\x74\x69\x6f\x6e\x20\x64\x75\x72\x69\x6e\x67\x20\x32\ +\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x38\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x72\x00\x65\ +\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x65\x00\x72\x00\x20\x00\x64\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x20\x00\x6d\x00\x65\x00\x73\ +\x00\x73\x00\x61\x00\x67\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1c\x53\x68\x6f\x77\x20\x72\x65\x6e\x64\x65\x72\x65\ +\x72\x20\x64\x65\x62\x75\x67\x20\x6d\x65\x73\x73\x61\x67\x65\x73\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x9e\x00\x53\x00\x70\x00\x65\x00\x63\x00\ +\x69\x00\x66\x00\x69\x00\x65\x00\x73\x00\x20\x00\x68\x00\x6f\x00\ +\x77\x00\x20\x00\x6d\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x74\x00\ +\x69\x00\x6d\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x76\x00\x69\x00\x65\x00\x77\x00\x65\x00\x64\x00\x20\x00\ +\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x63\x00\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x00\x20\x00\x6d\x00\ +\x75\x00\x73\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x61\x00\ +\x70\x00\x70\x00\x6c\x00\x69\x00\x65\x00\x64\x00\x20\x00\x74\x00\ +\x6f\x00\x20\x00\x63\x00\x75\x00\x74\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x53\ +\x70\x65\x63\x69\x66\x69\x65\x73\x20\x68\x6f\x77\x20\x6d\x61\x6e\ +\x79\x20\x74\x69\x6d\x65\x73\x20\x74\x68\x65\x20\x76\x69\x65\x77\ +\x65\x64\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\ +\x73\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x70\x70\x6c\x69\x65\ +\x64\x20\x74\x6f\x20\x63\x75\x74\x20\x6c\x69\x6e\x65\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x6c\x00\x54\x00\xe4\x00\x6d\x00\xe4\x00\x20\x00\ +\x6f\x00\x6e\x00\x20\x00\x6f\x00\x6c\x00\x65\x00\x74\x00\x75\x00\ +\x73\x00\x61\x00\x72\x00\x76\x00\x6f\x00\x69\x00\x6e\x00\x65\x00\ +\x6e\x00\x20\x00\x76\x00\xe4\x00\x72\x00\x69\x00\x20\x00\x75\x00\ +\x75\x00\x73\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x72\x00\ +\x61\x00\x6b\x00\x65\x00\x6e\x00\x6e\x00\x65\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x69\x00\x6c\x00\x6c\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x54\x68\x69\x73\x20\ +\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\ +\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x53\x74\x72\ +\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x68\x00\x54\x00\xe4\x00\x6d\x00\xe4\x00\x20\x00\ +\x6f\x00\x6e\x00\x20\x00\x6f\x00\x6c\x00\x65\x00\x74\x00\x75\x00\ +\x73\x00\x61\x00\x72\x00\x76\x00\x6f\x00\x69\x00\x6e\x00\x65\x00\ +\x6e\x00\x20\x00\x76\x00\xe4\x00\x72\x00\x69\x00\x20\x00\x75\x00\ +\x75\x00\x73\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x73\x00\ +\x65\x00\x69\x00\x6e\x00\xe4\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x65\x00\x69\x00\x6c\x00\x6c\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x2e\x54\x68\x69\x73\x20\x69\x73\x20\x74\ +\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\ +\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x57\x61\x6c\x6c\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x55\x00\x73\ +\x00\x65\x00\x20\x00\x49\x00\x46\x00\x43\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\x69\ +\x00\x66\x00\x20\x00\x61\x00\x76\x00\x61\x00\x69\x00\x6c\x00\x61\ +\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\ +\x55\x73\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\ +\x20\x69\x66\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x07\x00\x00\ +\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x1a\x00\x26\x00\x41\x00\x72\x00\x63\x00\x68\x00\x69\ +\x00\x74\x00\x65\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0d\x26\x41\x72\x63\x68\x69\x74\x65\ +\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\ +\x00\x00\x00\x0c\x00\x26\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x26\x44\x72\x61\x66\x74\ +\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x2c\x00\ +\x41\x00\x72\x00\x6b\x00\x6b\x00\x69\x00\x74\x00\x65\x00\x68\x00\ +\x74\x00\x75\x00\x75\x00\x72\x00\x69\x00\x20\x00\x74\x00\x79\x00\ +\xf6\x00\x6b\x00\x61\x00\x6c\x00\x75\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0a\x41\x72\x63\x68\x20\x74\x6f\x6f\x6c\x73\x07\ +\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x22\x00\x43\ +\x00\x61\x00\x6c\x00\x63\x00\x75\x00\x6c\x00\x61\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x20\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x43\x61\x6c\x63\x75\x6c\ +\x61\x74\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\ +\x61\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x43\x00\x6f\x00\x6e\ +\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\x00\x54\x00\x6f\x00\x6f\ +\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\ +\x6e\x74\x65\x78\x74\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\ +\x61\x72\x63\x68\x01\x03\x00\x00\x00\x20\x00\x43\x00\x6f\x00\x6e\ +\x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\ +\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x43\x6f\x6e\x76\x65\x72\x73\x69\x6f\x6e\x20\x54\ +\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\ +\x00\x00\x1e\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\ +\x6d\x00\x6f\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x44\x72\x61\x66\x74\ +\x20\x6d\x6f\x64\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\ +\x72\x63\x68\x01\x03\x00\x00\x00\x26\x00\x48\x00\x61\x00\x68\x00\ +\x6d\x00\x6f\x00\x74\x00\x65\x00\x6c\x00\x6d\x00\x61\x00\x20\x00\ +\x74\x00\x79\x00\xf6\x00\x6b\x00\x61\x00\x6c\x00\x75\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x20\x74\ +\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\ +\x00\x00\x6e\x00\x70\x00\x79\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\ +\x61\x00\x64\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\ +\x66\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x2c\x00\x20\x00\x63\x00\ +\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x73\x00\ +\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x77\x00\ +\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x64\x00\ +\x69\x00\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x64\x00\x2e\x00\ +\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x70\x79\x63\x6f\x6c\ +\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\ +\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\x6f\x72\x74\x20\ +\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x69\x73\x61\x62\x6c\x65\x64\ +\x2e\x0a\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ +\x00\x00\x4b\x8f\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x04\xf8\x00\x00\x47\xa4\x00\x00\x00\x4d\x00\x04\x8e\xc3\ +\x00\x00\x01\x9b\x00\x04\x8f\x03\x00\x00\x02\x56\x00\x04\x8f\x03\ +\x00\x00\x26\x98\x00\x04\x9c\x2c\x00\x00\x28\x06\x00\x04\xbb\x04\ +\x00\x00\x08\x46\x00\x05\x48\x35\x00\x00\x0d\x99\x00\x05\x67\xd5\ +\x00\x00\x0f\xd1\x00\x05\x96\x56\x00\x00\x10\x21\x00\x05\x96\x56\ +\x00\x00\x2f\xba\x00\x05\xa0\xa5\x00\x00\x10\x46\x00\x05\xa0\xa5\ +\x00\x00\x33\x51\x00\x05\xc0\x65\x00\x00\x1d\xdb\x00\x05\xd8\x2c\ +\x00\x00\x1f\x74\x00\x05\xd8\x2c\x00\x00\x36\xd7\x00\x32\x23\xa5\ +\x00\x00\x43\x5a\x00\x39\xdf\x33\x00\x00\x3b\x99\x00\x48\x4e\x25\ +\x00\x00\x01\x77\x00\x49\xeb\x9b\x00\x00\x28\xde\x00\x4b\x55\x33\ +\x00\x00\x3c\xc7\x00\x4d\x36\x62\x00\x00\x0a\xc7\x00\x4d\x36\x62\ +\x00\x00\x2b\x7c\x00\x5d\xfb\xa8\x00\x00\x20\x0e\x00\x5e\x08\xc3\ +\x00\x00\x20\x65\x00\x61\xb0\x33\x00\x00\x17\x7f\x00\x62\x9b\xa8\ +\x00\x00\x10\xdb\x00\x62\x9b\xa8\x00\x00\x33\x7d\x00\x8a\x92\x57\ +\x00\x00\x00\x00\x00\xaa\x80\x25\x00\x00\x07\x97\x00\xc9\x7b\xf3\ +\x00\x00\x13\x70\x00\xfb\x72\xf3\x00\x00\x3b\x27\x01\x19\x4e\x85\ +\x00\x00\x06\x11\x01\x55\x2b\xf5\x00\x00\x05\x76\x01\x79\x17\x94\ +\x00\x00\x23\x50\x01\x8e\x84\xa6\x00\x00\x12\x54\x01\xad\x7d\xe3\ +\x00\x00\x45\x07\x01\xaf\x41\x84\x00\x00\x22\x30\x01\xf7\xa8\x83\ +\x00\x00\x42\x13\x02\x01\x7f\xd3\x00\x00\x11\x54\x02\x29\xb3\xc4\ +\x00\x00\x2f\x05\x02\x5a\x4a\x53\x00\x00\x16\x9d\x02\x5f\xc9\x59\ +\x00\x00\x36\x07\x02\x66\x7f\x7e\x00\x00\x0e\xa9\x02\x6a\x77\x99\ +\x00\x00\x3e\x0f\x02\x80\x5f\x17\x00\x00\x24\x4b\x02\x82\x88\x3a\ +\x00\x00\x04\x7c\x02\x85\x4f\xf5\x00\x00\x19\xe7\x02\x90\x40\x65\ +\x00\x00\x0d\x4f\x02\x90\x40\x65\x00\x00\x2b\xac\x02\x94\x16\x35\ +\x00\x00\x11\x87\x02\xab\x87\xd4\x00\x00\x43\x9a\x02\xb8\xae\x74\ +\x00\x00\x2c\xae\x02\xc3\x91\x93\x00\x00\x3f\x88\x02\xcd\x05\xa3\ +\x00\x00\x2c\x02\x02\xdd\x14\x14\x00\x00\x2c\xf8\x03\x13\x15\x3e\ +\x00\x00\x0b\xff\x03\x1b\xda\x15\x00\x00\x1f\xda\x03\x1d\xe8\xe3\ +\x00\x00\x39\xbc\x03\x29\x7a\x34\x00\x00\x00\xd9\x03\x2c\xe9\xb3\ +\x00\x00\x17\xde\x03\x92\x51\xe0\x00\x00\x10\x6d\x03\xa2\xec\x23\ +\x00\x00\x1f\x9d\x03\xbe\xb0\x34\x00\x00\x1e\xa0\x03\xce\x98\xe5\ +\x00\x00\x04\x00\x03\xd4\x22\x74\x00\x00\x25\xaa\x04\x35\xfa\x55\ +\x00\x00\x12\xe3\x04\xc3\x75\x44\x00\x00\x1a\x30\x04\xdb\x21\x3e\ +\x00\x00\x32\xa6\x04\xeb\xfd\xf4\x00\x00\x0b\x26\x05\x14\x5b\x83\ +\x00\x00\x07\xca\x05\x18\xda\xa3\x00\x00\x2a\xce\x05\x5f\x3d\x83\ +\x00\x00\x3a\xb5\x05\x8c\x46\xc5\x00\x00\x0f\xfa\x05\x90\xba\xe3\ +\x00\x00\x0f\xa3\x05\xc0\x56\xe3\x00\x00\x40\x37\x05\xc7\xeb\xc7\ +\x00\x00\x3e\xc1\x05\xe0\x4b\x67\x00\x00\x20\x3e\x05\xe0\x4b\x67\ +\x00\x00\x38\x03\x05\xef\x78\x4a\x00\x00\x23\x9b\x06\x1f\x6f\xa4\ +\x00\x00\x21\x82\x06\x32\xe3\xe3\x00\x00\x45\x4d\x06\x5b\x01\x15\ +\x00\x00\x03\xcd\x06\x69\xd0\x04\x00\x00\x21\x1a\x06\x9f\x6f\xd4\ +\x00\x00\x07\x31\x06\xd6\x3f\xa4\x00\x00\x23\x06\x06\xe6\x2f\x43\ +\x00\x00\x12\x95\x07\x00\xcc\xc4\x00\x00\x3c\x78\x07\x07\x84\xba\ +\x00\x00\x45\x91\x07\x08\x43\x0e\x00\x00\x26\xbe\x07\x16\x58\x05\ +\x00\x00\x38\x8c\x07\x25\x74\x53\x00\x00\x29\xbf\x07\x28\xff\x15\ +\x00\x00\x0e\x11\x07\x36\x51\x26\x00\x00\x14\x52\x07\x5c\xdc\x04\ +\x00\x00\x20\x93\x07\x60\x23\xf3\x00\x00\x03\x42\x07\xca\xf8\x87\ +\x00\x00\x38\x31\x08\x25\x81\xc4\x00\x00\x06\xda\x08\x4a\x45\xd9\ +\x00\x00\x37\x05\x08\x65\x4c\x95\x00\x00\x1c\x54\x08\xc5\xe3\x35\ +\x00\x00\x1b\x9f\x08\xca\xc9\x74\x00\x00\x15\x7c\x08\xfb\xb8\xa4\ +\x00\x00\x0a\x4a\x09\x69\xac\xa7\x00\x00\x1f\x0d\x09\x6c\x6c\xa7\ +\x00\x00\x0a\xf1\x09\x9f\xcc\xde\x00\x00\x22\x98\x09\xba\xe6\x35\ +\x00\x00\x11\x1c\x09\xba\xe6\x35\x00\x00\x35\xc5\x09\xc5\xbe\xca\ +\x00\x00\x09\xb0\x09\xe3\x98\xe4\x00\x00\x25\xf0\x09\xed\x98\x55\ +\x00\x00\x30\xc4\x0a\x3e\x06\x83\x00\x00\x04\xfa\x0a\x3f\x1f\xd6\ +\x00\x00\x05\x34\x0a\x3f\x2b\x25\x00\x00\x05\xcb\x0a\x3f\x5d\xac\ +\x00\x00\x06\x60\x0a\x7f\xee\xa3\x00\x00\x43\xc7\x0a\xb6\xc8\x9a\ +\x00\x00\x0b\x55\x0a\xbf\x46\x0e\x00\x00\x1d\xfe\x0a\xd6\x07\x84\ +\x00\x00\x20\xc4\x0b\x0a\xc3\xf3\x00\x00\x00\x73\x0b\x51\x30\xa8\ +\x00\x00\x2d\xee\x0b\x65\xda\xb3\x00\x00\x3a\x45\x0b\x8d\x97\x93\ +\x00\x00\x41\x55\x0b\x9c\x5b\xe7\x00\x00\x09\x19\x0b\xb9\xe8\x93\ +\x00\x00\x2e\x4f\x0b\xc4\xb1\x23\x00\x00\x28\x36\x0c\x02\xac\xd7\ +\x00\x00\x03\x13\x0c\x02\xac\xd7\x00\x00\x27\x17\x0c\x25\x3e\x53\ +\x00\x00\x31\xa1\x0c\x3c\x8b\x33\x00\x00\x44\x16\x0c\x41\x0a\x83\ +\x00\x00\x44\x68\x0c\x4e\x9b\x23\x00\x00\x31\x21\x0c\x98\x80\x23\ +\x00\x00\x44\xb8\x0c\xc4\xd0\x80\x00\x00\x24\xfa\x0c\xdf\x5a\x1e\ +\x00\x00\x01\xc0\x0c\xfc\x97\x06\x00\x00\x1f\x4a\x0d\x03\x26\xb4\ +\x00\x00\x02\xc6\x0d\x08\x90\xf3\x00\x00\x1b\x42\x0d\x1e\xda\xa4\ +\x00\x00\x03\x79\x0d\x3b\x3b\x49\x00\x00\x34\x7d\x0d\xa8\x3a\x35\ +\x00\x00\x18\x23\x0d\xc1\x7d\x47\x00\x00\x25\x4e\x0d\xfa\x53\xe5\ +\x00\x00\x08\x6f\x0e\x69\x87\x13\x00\x00\x2f\xe4\x0e\x8c\xd7\x43\ +\x00\x00\x33\xc8\x0e\x98\x0a\xd6\x00\x00\x1e\x40\x0e\xab\x8d\x1f\ +\x00\x00\x39\x35\x0e\xb9\x1b\xf2\x00\x00\x15\x2d\x0e\xec\x0b\x9e\ +\x00\x00\x27\x4f\x0f\x16\x4a\x24\x00\x00\x1d\x6f\x0f\x17\xc7\xa3\ +\x00\x00\x29\x10\x0f\x55\xc1\x57\x00\x00\x06\x9e\x0f\x78\x41\x05\ +\x00\x00\x42\xc2\x0f\x79\xe3\xf3\x00\x00\x2a\x0a\x0f\x95\xd5\x09\ +\x00\x00\x18\xdb\x0f\xa2\x16\x43\x00\x00\x1d\x3f\x0f\xc0\xb8\xb4\ +\x00\x00\x0d\xc0\x0f\xd0\x39\x44\x00\x00\x02\x77\x0f\xe5\x74\x74\ +\x00\x00\x00\xa3\x0f\xf3\xe8\x33\x00\x00\x3b\xfc\x69\x00\x00\x46\ +\x7d\x03\x00\x00\x00\x24\x00\x20\x00\x54\x00\x77\x00\x6f\x00\x72\ +\x00\x7a\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x62\x00\x75\ +\x00\x64\x00\x79\x00\x6e\x00\x6b\x00\x75\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x20\x43\x72\x65\x61\x74\x65\x20\x42\x75\x69\x6c\ +\x64\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x0a\x00\x44\x00\x6f\x00\x64\x00\x61\x00\x6a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x03\x41\x64\x64\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x44\x00\x6f\x00\x64\x00\ +\x61\x00\x74\x00\x6b\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x09\x41\x64\x64\x69\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x57\x00\x79\x00\x72\x00\ +\xf3\x00\x77\x00\x6e\x00\x61\x00\x6e\x00\x69\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x41\x6c\x69\x67\x6e\x6d\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x6a\x00\ +\x57\x00\x73\x00\x7a\x00\x79\x00\x73\x00\x74\x00\x6b\x00\x6f\x00\ +\x20\x00\x77\x00\x20\x00\x70\x00\x6f\x00\x72\x00\x7a\x01\x05\x00\ +\x64\x00\x6b\x00\x75\x00\x21\x00\x20\x00\x4e\x00\x69\x00\x65\x00\ +\x20\x00\x7a\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\ +\x6f\x00\x6e\x00\x6f\x00\x20\x01\x7c\x00\x61\x00\x64\x00\x6e\x00\ +\x79\x00\x63\x00\x68\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x62\x00\ +\x6c\x00\x65\x00\x6d\x00\xf3\x00\x77\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1b\x41\x6c\x6c\x20\x67\x6f\x6f\x64\x21\x20\x6e\x6f\x20\ +\x70\x72\x6f\x62\x6c\x65\x6d\x73\x20\x66\x6f\x75\x6e\x64\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x06\x00\x4b\x01\ +\x05\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x6e\x67\ +\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x08\x00\x4f\x00\x73\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x41\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x56\x00\x53\x00\x79\x00\x73\x00\x74\x00\x65\ +\x00\x6d\x00\x79\x00\x20\x00\x6f\x00\x73\x00\x69\x00\x2c\x00\x20\ +\x00\x74\x00\x61\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\ +\x00\x74\x00\x75\x00\x72\x00\x61\x00\x20\x00\x6a\x00\x65\x00\x73\ +\x00\x74\x00\x20\x00\x7a\x00\x62\x00\x75\x00\x64\x00\x6f\x00\x77\ +\x00\x61\x00\x6e\x00\x61\x00\x20\x00\x6e\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x27\x41\x78\x65\x73\x20\x73\x79\x73\x74\x65\ +\x6d\x73\x20\x74\x68\x69\x73\x20\x73\x74\x72\x75\x63\x74\x75\x72\ +\x65\x20\x69\x73\x20\x62\x75\x69\x6c\x74\x20\x6f\x6e\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x04\x00\x4f\x01\x5b\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\x69\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x50\x00\ +\x6f\x00\x64\x00\x73\x00\x74\x00\x61\x00\x77\x00\x6f\x00\x77\x00\ +\x79\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\ +\x20\x00\x32\x00\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x42\ +\x61\x73\x65\x20\x32\x44\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x26\x00\x50\x00\x6f\ +\x00\x64\x00\x73\x00\x74\x00\x61\x00\x77\x00\x6f\x00\x77\x00\x79\ +\x00\x20\x00\x73\x00\x6b\x01\x42\x00\x61\x00\x64\x00\x6e\x00\x69\ +\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x42\x61\x73\x65\ +\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x42\x00\x75\x00\x64\x00\ +\x79\x00\x6e\x00\x65\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x14\x00\x6b\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x79\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0a\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x22\x00\ +\x53\x00\x6b\x01\x42\x00\x61\x00\x64\x00\x6e\x00\x69\x00\x6b\x00\ +\x69\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\ +\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x43\x6f\x6d\x70\x6f\ +\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6f\x62\ +\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x12\x00\x4b\x00\x6f\x00\x6e\x00\x74\x00\x79\x00\x6e\x00\ +\x75\x00\x75\x00\x6a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\ +\x6f\x6e\x74\x69\x6e\x75\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x44\x00\x4e\x00\x69\x00\x65\x00\x20\x00\x6d\ +\x00\x6f\x01\x7c\x00\x6e\x00\x61\x00\x20\x00\x77\x00\x79\x00\x6c\ +\x00\x69\x00\x63\x00\x7a\x00\x79\x01\x07\x00\x20\x00\x6b\x00\x73\ +\x00\x7a\x00\x74\x00\x61\x01\x42\x00\x74\x00\x75\x00\x20\x01\x5b\ +\x00\x63\x00\x69\x00\x61\x00\x6e\x00\x79\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1f\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x63\x6f\x6d\ +\x70\x75\x74\x65\x20\x74\x68\x65\x20\x77\x61\x6c\x6c\x20\x73\x68\ +\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x48\x00\x4e\x00\x69\x00\x65\x00\x20\x00\x6d\x00\x6f\x01\x7c\ +\x00\x6e\x00\x61\x00\x20\x00\x7a\x00\x6c\x00\x6f\x00\x6b\x00\x61\ +\x00\x6c\x00\x69\x00\x7a\x00\x6f\x00\x77\x00\x61\x01\x07\x00\x20\ +\x00\x49\x00\x66\x00\x63\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\ +\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x20\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1d\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x6c\x6f\x63\ +\x61\x74\x65\x20\x49\x66\x63\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\ +\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\ +\x00\x55\x00\x74\x00\x77\x00\xf3\x00\x72\x00\x7a\x00\x20\x00\x4f\ +\x00\x73\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ +\x43\x72\x65\x61\x74\x65\x20\x41\x78\x69\x73\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x00\x54\x00\x77\x00\x6f\ +\x00\x72\x00\x7a\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x64\ +\x00\x61\x00\x63\x00\x68\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x52\x6f\x6f\x66\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\x65\x00\x63\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x50\x00\x6c\x00\x61\ +\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\ +\x65\x61\x74\x65\x20\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\ +\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x22\x00\x54\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\x65\x00\x6e\x00\ +\x69\x00\x65\x00\x20\x00\x77\x00\x69\x00\x74\x00\x72\x00\x79\x00\ +\x6e\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\ +\x61\x74\x65\x20\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x26\x00\x54\x00\x77\x00\x6f\x00\x72\x00\ +\x7a\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x73\x00\x74\x00\ +\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x72\x00\x79\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\x74\x65\x20\x53\x74\ +\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x1a\x00\x55\x00\x74\x00\x77\x00\xf3\x00\x72\ +\x00\x7a\x00\x20\x01\x5b\x00\x63\x00\x69\x00\x61\x00\x6e\x01\x19\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\ +\x20\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x16\x00\x55\x00\x74\x00\x77\x00\xf3\x00\x72\x00\x7a\ +\x00\x20\x00\x4f\x00\x6b\x00\x6e\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0d\x43\x72\x65\x61\x74\x65\x20\x57\x69\x6e\x64\x6f\ +\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2a\ +\x00\x55\x00\x74\x00\x77\x00\xf3\x00\x72\x00\x7a\x00\x20\x00\x6e\ +\x00\x6f\x00\x77\x00\x79\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x14\x43\x72\x65\x61\x74\x65\x20\x6e\x65\x77\x20\x63\ +\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x36\x00\x55\x00\x74\x00\x77\x00\xf3\x00\ +\x72\x00\x7a\x00\x2f\x00\x75\x00\x61\x00\x6b\x00\x74\x00\x75\x00\ +\x61\x00\x6c\x00\x6e\x00\x69\x00\x6a\x00\x20\x00\x6b\x00\x6f\x00\ +\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\x74\x65\x2f\x75\x70\ +\x64\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x4f\x00\ +\x64\x00\x6c\x00\x65\x00\x67\x01\x42\x00\x6f\x01\x5b\x01\x07\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x42\ +\x00\x44\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x63\x00\x65\ +\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x6e\ +\x00\x67\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x62\x00\x65\x00\x74\ +\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x65\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x44\x69\x73\x74\ +\x61\x6e\x63\x65\x73\x20\x61\x6e\x64\x20\x61\x6e\x67\x6c\x65\x73\ +\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x45\x00\x64\ +\x00\x79\x00\x74\x00\x75\x00\x6a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x6a\x00\x42\x01\x42\x01\x05\x00\x64\x00\x20\x00\ +\x70\x00\x6f\x00\x64\x00\x63\x00\x7a\x00\x61\x00\x73\x00\x20\x00\ +\x75\x00\x73\x00\x75\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x61\x00\ +\x20\x00\x72\x00\x6f\x00\x7a\x00\x64\x00\x7a\x00\x69\x00\x65\x00\ +\x6c\x00\x61\x00\x63\x00\x7a\x00\x61\x00\x20\x00\x6f\x00\x64\x00\ +\x20\x00\x6b\x00\x73\x00\x7a\x00\x74\x00\x61\x01\x42\x00\x74\x00\ +\x75\x00\x20\x01\x5b\x00\x63\x00\x69\x00\x61\x00\x6e\x00\x79\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x27\x45\x72\x72\x6f\x72\x20\x72\ +\x65\x6d\x6f\x76\x69\x6e\x67\x20\x73\x70\x6c\x69\x74\x74\x65\x72\ +\x20\x66\x72\x6f\x6d\x20\x77\x61\x6c\x6c\x20\x73\x68\x61\x70\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x52\x00\ +\x42\x01\x42\x01\x05\x00\x64\x00\x3a\x00\x20\x00\x4e\x00\x69\x00\ +\x65\x00\x20\x00\x6d\x00\x6f\x01\x7c\x00\x6e\x00\x61\x00\x20\x00\ +\x6f\x00\x6b\x00\x72\x00\x65\x01\x5b\x00\x6c\x00\x69\x01\x07\x00\ +\x20\x00\x6b\x00\x6f\x00\x64\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\ +\x69\x00\x61\x00\x20\x00\x7a\x00\x6e\x00\x61\x00\x6b\x00\xf3\x00\ +\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x45\x72\x72\x6f\x72\ +\x3a\x20\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x64\x65\x74\x65\x72\ +\x6d\x69\x6e\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\x65\ +\x6e\x63\x6f\x64\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x54\x00\x42\x01\x42\x01\x05\x00\x64\x00\x3a\ +\x00\x20\x00\x4e\x00\x69\x00\x65\x00\x20\x00\x6d\x00\x6f\x01\x7c\ +\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\x6b\x00\x72\x00\x65\x01\x5b\ +\x00\x6c\x00\x69\x01\x07\x00\x20\x00\x6b\x00\x6f\x00\x64\x00\x6f\ +\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x61\x00\x20\x00\x7a\x00\x6e\ +\x00\x61\x00\x6b\x00\xf3\x00\x77\x00\x0a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2d\x45\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\ +\x6e\x27\x74\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\ +\x61\x72\x61\x63\x74\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\ +\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4a\ +\x00\x42\x01\x42\x01\x05\x00\x64\x00\x3a\x00\x20\x00\x4e\x00\x69\ +\x00\x65\x00\x70\x00\x72\x00\x61\x00\x77\x00\x69\x00\x64\x01\x42\ +\x00\x6f\x00\x77\x00\x79\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\ +\x00\x6b\x00\x74\x00\x20\x00\x70\x00\x6f\x00\x64\x00\x73\x00\x74\ +\x00\x61\x00\x77\x00\x6f\x00\x77\x00\x79\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1a\x45\x72\x72\x6f\x72\x3a\x20\x49\x6e\x76\x61\x6c\ +\x69\x64\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x50\x00\ +\x69\x01\x19\x00\x74\x00\x72\x00\x6f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x14\x00\x47\x00\x72\x00\x75\x00\x70\x00\ +\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x47\x72\x6f\x75\x70\x69\x6e\x67\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x57\x00\x79\ +\x00\x73\x00\x6f\x00\x6b\x00\x6f\x01\x5b\x01\x07\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x48\x65\x69\x67\x68\x74\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x66\x00\x6e\x00\x69\x00\ +\x65\x00\x20\x00\x7a\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\x00\ +\x69\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\x73\x00\x63\x00\x68\x00\ +\x65\x00\x6d\x00\x61\x00\x74\x00\x75\x00\x20\x00\x49\x00\x46\x00\ +\x43\x00\x2c\x00\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\x7a\x00\ +\x6f\x00\x73\x00\x74\x00\x61\x01\x42\x00\x20\x00\x77\x00\x79\x01\ +\x42\x01\x05\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x79\x00\x2e\x00\ +\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\x46\x43\x20\x53\ +\x63\x68\x65\x6d\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\ +\x20\x49\x46\x43\x20\x69\x6d\x70\x6f\x72\x74\x20\x64\x69\x73\x61\ +\x62\x6c\x65\x64\x2e\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\xce\x00\x4a\x00\x65\x01\x5b\x00\x6c\x00\x69\x00\ +\x20\x00\x70\x00\x72\x00\x61\x00\x77\x00\x64\x00\x61\x00\x20\x00\ +\x6f\x00\x72\x00\x61\x00\x7a\x00\x20\x01\x5b\x00\x63\x00\x69\x00\ +\x61\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\x70\x00\x61\x00\x72\x00\ +\x74\x00\x61\x00\x20\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x20\x00\ +\x6f\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\ +\x74\x00\x6f\x00\x20\x00\x7a\x00\x6f\x00\x73\x00\x74\x00\x61\x00\ +\x6e\x00\x69\x00\x65\x00\x20\x00\x75\x01\x7c\x00\x79\x00\x74\x00\ +\x79\x00\x20\x00\x62\x00\x72\x00\x7a\x00\x65\x00\x67\x00\x20\x01\ +\x5b\x00\x63\x00\x69\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x61\x00\ +\x20\x00\x66\x00\x72\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x7a\x00\ +\x6f\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x69\x00\x65\x00\x20\x00\ +\x70\x00\x6f\x00\x6d\x00\x69\x00\x6e\x00\x69\x01\x19\x00\x74\x00\ +\x79\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x69\x49\x66\x20\ +\x54\x72\x75\x65\x2c\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\ +\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\ +\x20\x66\x61\x63\x65\x2c\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x75\ +\x73\x65\x20\x69\x74\x73\x20\x62\x6f\x72\x64\x65\x72\x20\x77\x69\ +\x72\x65\x20\x61\x73\x20\x74\x72\x61\x63\x65\x2c\x20\x61\x6e\x64\ +\x20\x64\x69\x73\x63\x6f\x6e\x73\x69\x64\x65\x72\x20\x74\x68\x65\ +\x20\x66\x61\x63\x65\x2e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x24\x00\x53\x00\x69\x00\x61\x00\x74\x00\x6b\x00\ +\x61\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x4b\x00\x73\x00\x7a\x00\ +\x74\x00\x61\x01\x42\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x4d\x65\x73\x68\x20\x74\x6f\x20\x53\x68\x61\x70\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\ +\x4e\x00\x61\x00\x7a\x00\x77\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x4e\x61\x6d\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x26\x00\x4e\x00\x69\x00\x65\x00\x20\x00\x77\ +\x00\x79\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x6f\x00\x20\x00\x6f\ +\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x75\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x12\x4e\x6f\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x60\x01\x7b\x00\x61\x00\x64\x00\x65\x00\ +\x6e\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\ +\x20\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x6a\x00\x65\x00\x73\x00\ +\x74\x00\x20\x00\x77\x00\x79\x00\x63\x00\x69\x00\x6e\x00\x61\x00\ +\x6e\x00\x79\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x65\x00\x7a\x00\ +\x20\x00\x70\x01\x42\x00\x61\x00\x73\x00\x7a\x00\x63\x00\x7a\x00\ +\x79\x00\x7a\x00\x6e\x01\x19\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1f\x4e\x6f\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x72\x65\x20\ +\x63\x75\x74\x20\x62\x79\x20\x74\x68\x65\x20\x70\x6c\x61\x6e\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x96\x00\ +\x4e\x00\x6f\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x00\ +\x20\x00\x68\x00\x61\x00\x73\x00\x20\x00\x62\x00\x65\x00\x65\x00\ +\x6e\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x75\x00\x74\x00\ +\x65\x00\x64\x00\x20\x00\x79\x00\x65\x00\x74\x00\x2c\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x77\x00\ +\x69\x00\x72\x00\x65\x00\x66\x00\x72\x00\x61\x00\x6d\x00\x65\x00\ +\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x72\x00\ +\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x61\x00\x67\x00\ +\x61\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4b\x4e\ +\x6f\x20\x73\x68\x61\x70\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\ +\x20\x63\x6f\x6d\x70\x75\x74\x65\x64\x20\x79\x65\x74\x2c\x20\x73\ +\x65\x6c\x65\x63\x74\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\ +\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x65\ +\x6e\x64\x65\x72\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x4f\x00\x62\x00\x69\x00\ +\x65\x00\x6b\x00\x74\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x07\x4f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x0c\x00\x53\x00\x74\x00\x72\x00\x6f\x00\ +\x6e\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x50\x61\x67\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\ +\x00\x55\x00\x73\x00\x75\x01\x44\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x06\x52\x65\x6d\x6f\x76\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x08\x00\x44\x00\x61\x00\x63\x00\x68\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x54\x00\x65\ +\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x3c\x00\x50\x00\x6f\x00\x6d\x00\x69\x00\x6a\x00\x61\x00\ +\x6d\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x70\x00\x72\x00\x61\x00\ +\x77\x00\x69\x00\x64\x01\x42\x00\x6f\x00\x77\x00\x79\x00\x20\x00\ +\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x3a\x00\x20\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x19\x53\x6b\x69\x70\x70\x69\x6e\ +\x67\x20\x69\x6e\x76\x61\x6c\x69\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x3a\x20\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x1e\x00\x52\x00\x6f\x00\x7a\x00\x64\x00\x7a\x00\x69\x00\x65\x00\ +\x6c\x00\x20\x00\x73\x00\x69\x00\x61\x00\x74\x00\x6b\x01\x19\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\ +\x65\x73\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x16\x00\x4b\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\ +\x00\x6b\x00\x63\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x52\x00\xf3\x01\x7c\ +\x00\x6e\x00\x69\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0c\x53\x75\x62\x74\x72\x61\x63\x74\x69\x6f\x6e\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x78\x00\x54\x00\ +\x68\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\ +\x6c\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x69\x00\x74\x00\x73\x00\ +\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\x00\x69\x00\x66\x00\ +\x20\x00\x61\x00\x70\x00\x70\x00\x6c\x00\x69\x00\x63\x00\x61\x00\ +\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3c\x54\ +\x68\x65\x20\x61\x6c\x69\x67\x6e\x6d\x65\x6e\x74\x20\x6f\x66\x20\ +\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x6f\x6e\x20\x69\x74\x73\ +\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x69\x66\ +\x20\x61\x70\x70\x6c\x69\x63\x61\x62\x6c\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x4b\x01\x05\x00\x74\ +\x00\x20\x00\x64\x00\x61\x00\x63\x00\x68\x00\x75\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x16\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\x20\ +\x6f\x66\x20\x74\x68\x69\x73\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x00\x4b\x01\x05\x00\ +\x74\x00\x79\x00\x20\x00\x6b\x00\x61\x01\x7c\x00\x64\x00\x65\x00\ +\x6a\x00\x20\x00\x6f\x00\x73\x00\x69\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x17\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\x73\x20\x6f\x66\ +\x20\x65\x61\x63\x68\x20\x61\x78\x69\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x4e\x00\x52\x00\x6f\x00\x7a\x00\ +\x6d\x00\x69\x00\x61\x00\x72\x00\x20\x00\x77\x00\x79\x01\x5b\x00\ +\x77\x00\x69\x00\x65\x00\x74\x00\x6c\x00\x61\x00\x6e\x00\x69\x00\ +\x61\x00\x20\x00\x70\x01\x42\x00\x61\x00\x73\x00\x7a\x00\x63\x00\ +\x7a\x00\x79\x00\x7a\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x65\x00\ +\x6b\x00\x63\x00\x6a\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x26\x54\x68\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x73\x69\x7a\ +\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\ +\x6e\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x86\x00\x54\x00\x68\x00\x65\x00\x20\x00\x65\ +\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6e\ +\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x73\x00\x20\x00\x74\ +\x00\x6f\x00\x20\x00\x65\x00\x78\x00\x63\x00\x6c\x00\x75\x00\x64\ +\x00\x65\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\ +\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x69\x00\x73\ +\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\ +\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x43\x54\x68\x65\x20\x65\x6c\x65\x6d\x65\x6e\ +\x74\x20\x6e\x75\x6d\x62\x65\x72\x73\x20\x74\x6f\x20\x65\x78\x63\ +\x6c\x75\x64\x65\x20\x77\x68\x65\x6e\x20\x74\x68\x69\x73\x20\x73\ +\x74\x72\x75\x63\x74\x75\x72\x65\x20\x69\x73\x20\x62\x61\x73\x65\ +\x64\x20\x6f\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x88\x00\x4c\x00\x69\x00\x63\x00\x7a\ +\x00\x62\x00\x61\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6e\x00\x74\ +\x00\xf3\x00\x77\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\ +\x00\x74\x00\x75\x00\x20\x00\x70\x00\x6f\x00\x64\x00\x73\x00\x74\ +\x00\x61\x00\x77\x00\x6f\x00\x77\x00\x65\x00\x67\x00\x6f\x00\x20\ +\x00\x75\x01\x7c\x00\x79\x00\x74\x00\x79\x00\x63\x00\x68\x00\x20\ +\x00\x64\x00\x6f\x00\x20\x00\x7a\x00\x62\x00\x75\x00\x64\x00\x6f\ +\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x61\x00\x20\x00\x74\x00\x65\ +\x00\x67\x00\x6f\x00\x20\x00\x64\x00\x61\x00\x63\x00\x68\x00\x75\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3a\x54\x68\x65\x20\x66\x61\ +\x63\x65\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x74\x68\x65\ +\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x75\x73\x65\ +\x64\x20\x74\x6f\x20\x62\x75\x69\x6c\x64\x20\x74\x68\x69\x73\x20\ +\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x1e\x00\x57\x00\x79\x00\x73\x00\x6f\x00\x6b\x00\x6f\x01\ +\x5b\x01\x07\x00\x20\x00\x70\x00\x69\x01\x19\x00\x74\x00\x72\x00\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x54\x68\x65\x20\x68\ +\x65\x69\x67\x68\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x66\x6c\ +\x6f\x6f\x72\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\xb0\x00\x54\x00\x68\x00\x65\x00\x20\x00\x68\x00\x65\x00\x69\ +\x00\x67\x00\x68\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\ +\x00\x2e\x00\x20\x00\x4b\x00\x65\x00\x65\x00\x70\x00\x20\x00\x30\ +\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\ +\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x2e\x00\x20\ +\x00\x4e\x00\x6f\x00\x74\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\ +\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x73\ +\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\ +\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\ +\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x58\x54\x68\x65\x20\ +\x68\x65\x69\x67\x68\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\ +\x61\x6c\x6c\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\x20\ +\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x2e\x20\x4e\x6f\x74\x20\x75\ +\x73\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\ +\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x73\ +\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x86\x00\x54\x00\x68\x00\x65\x00\x20\x00\x68\x00\x65\x00\ +\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\ +\x65\x00\x78\x00\x74\x00\x72\x00\x75\x00\x73\x00\x69\x00\x6f\x00\ +\x6e\x00\x20\x00\x64\x00\x65\x00\x70\x00\x74\x00\x68\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\ +\x20\x00\x4b\x00\x65\x00\x65\x00\x70\x00\x20\x00\x30\x00\x20\x00\ +\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\ +\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x43\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\x6f\x72\ +\x20\x65\x78\x74\x72\x75\x73\x69\x6f\x6e\x20\x64\x65\x70\x74\x68\ +\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\ +\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\x20\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x2c\x00\x4f\x00\x64\x00\x73\x00\x74\x01\x19\x00\ +\x70\x00\x20\x00\x70\x00\x6f\x00\x6d\x00\x69\x01\x19\x00\x64\x00\ +\x7a\x00\x79\x00\x20\x00\x6f\x00\x73\x00\x69\x00\x61\x00\x6d\x00\ +\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x54\x68\x65\x20\x69\ +\x6e\x74\x65\x72\x76\x61\x6c\x73\x20\x62\x65\x74\x77\x65\x65\x6e\ +\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x16\x00\x44\x01\x42\x00\x75\x00\x67\x00\x6f\x01\x5b\ +\x01\x07\x00\x20\x00\x6f\x00\x73\x00\x69\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x16\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\ +\x66\x20\x74\x68\x65\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x6a\x00\x54\x00\x68\x00\x65\x00\ +\x20\x00\x6c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2c\x00\ +\x20\x00\x69\x00\x66\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\ +\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\ +\x20\x00\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x66\x00\x69\x00\ +\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x54\x68\x65\ +\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x65\x6c\x65\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\x6e\x6f\x74\x20\ +\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\x72\x6f\x66\x69\ +\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\xa2\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\ +\x6d\x00\x61\x00\x6c\x00\x20\x00\x65\x00\x78\x00\x74\x00\x72\x00\ +\x75\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x69\x00\ +\x72\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x28\x00\ +\x6b\x00\x65\x00\x65\x00\x70\x00\x20\x00\x28\x00\x30\x00\x2c\x00\ +\x30\x00\x2c\x00\x30\x00\x29\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\ +\x69\x00\x63\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\ +\x6c\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x54\x68\x65\ +\x20\x6e\x6f\x72\x6d\x61\x6c\x20\x65\x78\x74\x72\x75\x73\x69\x6f\ +\x6e\x20\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\ +\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x6b\x65\x65\x70\ +\x20\x28\x30\x2c\x30\x2c\x30\x29\x20\x66\x6f\x72\x20\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x20\x6e\x6f\x72\x6d\x61\x6c\x29\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x00\x53\x00\ +\x74\x00\x79\x00\x6c\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x65\x00\ +\x72\x00\x61\x00\x63\x00\x6a\x00\x69\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x14\x54\x68\x65\x20\x6e\x75\x6d\x65\x72\x61\x74\x69\x6f\ +\x6e\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\xa6\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x74\ +\x00\x68\x00\x61\x00\x74\x00\x20\x00\x6d\x00\x75\x00\x73\x00\x74\ +\x00\x20\x00\x62\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\ +\x00\x69\x00\x64\x00\x65\x00\x72\x00\x65\x00\x64\x00\x20\x00\x62\ +\x00\x79\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\ +\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x70\ +\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x2e\x00\x20\x00\x45\x00\x6d\ +\x00\x70\x00\x74\x00\x79\x00\x20\x00\x6d\x00\x65\x00\x61\x00\x6e\ +\x00\x73\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x64\x00\x6f\ +\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x53\x54\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x74\x68\x61\x74\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x63\ +\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x62\x79\x20\x74\x68\x69\ +\x73\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x2e\ +\x20\x45\x6d\x70\x74\x79\x20\x6d\x65\x61\x6e\x73\x20\x61\x6c\x6c\ +\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x28\x00\x52\x00\x6f\x00\x7a\x00\x6d\ +\x00\x69\x00\x61\x00\x72\x00\x20\x00\x62\x01\x05\x00\x62\x00\x65\ +\x00\x6c\x00\x6b\x00\xf3\x00\x77\x00\x20\x00\x6f\x00\x73\x00\x69\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x54\x68\x65\x20\x73\x69\ +\x7a\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\x69\x73\x20\x62\ +\x75\x62\x62\x6c\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x68\x00\x54\x00\x68\x00\x65\x00\x20\x00\x77\x00\ +\x69\x00\x64\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x65\x00\x6c\x00\x65\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x2c\x00\x20\x00\x69\x00\x66\x00\ +\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x62\x00\x61\x00\x73\x00\ +\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\ +\x70\x00\x72\x00\x6f\x00\x66\x00\x69\x00\x6c\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x34\x54\x68\x65\x20\x77\x69\x64\x74\x68\ +\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\ +\x2c\x20\x69\x66\x20\x6e\x6f\x74\x20\x62\x61\x73\x65\x64\x20\x6f\ +\x6e\x20\x61\x20\x70\x72\x6f\x66\x69\x6c\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x92\x00\x53\x00\x7a\x00\x65\ +\x00\x72\x00\x6f\x00\x6b\x00\x6f\x01\x5b\x01\x07\x00\x20\x00\x74\ +\x00\x65\x00\x6a\x00\x20\x01\x5b\x00\x63\x00\x69\x00\x61\x00\x6e\ +\x00\x79\x00\x2e\x00\x20\x00\x4e\x00\x69\x00\x65\x00\x75\x01\x7c\ +\x00\x79\x00\x77\x00\x61\x00\x6e\x00\x65\x00\x2c\x00\x20\x00\x6a\ +\x00\x65\x01\x7c\x00\x65\x00\x6c\x00\x69\x00\x20\x01\x5b\x00\x63\ +\x00\x69\x00\x61\x00\x6e\x00\x61\x00\x20\x00\x74\x00\x61\x00\x20\ +\x00\x6f\x00\x70\x00\x61\x00\x72\x00\x74\x00\x61\x00\x20\x00\x6a\ +\x00\x65\x00\x73\x00\x74\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x66\ +\x00\x72\x00\x6f\x00\x6e\x00\x63\x00\x69\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x40\x54\x68\x65\x20\x77\x69\x64\x74\x68\x20\ +\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x2e\x20\x4e\x6f\ +\x74\x20\x75\x73\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\ +\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\ +\x61\x20\x66\x61\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x0e\x00\x47\x00\x72\x00\x75\x00\x62\x00\x6f\x01\ +\x5b\x01\x07\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\x68\x69\ +\x63\x6b\x6e\x65\x73\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x36\x00\x54\x00\x61\x00\x20\x00\x73\x00\x69\x00\ +\x61\x00\x74\x00\x6b\x00\x61\x00\x20\x00\x6e\x00\x69\x00\x65\x00\ +\x20\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x20\x00\x70\x00\x6f\x00\ +\x70\x00\x72\x00\x61\x00\x77\x00\x6e\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1d\x54\x68\x69\x73\x20\x6d\x65\x73\x68\x20\x69\ +\x73\x20\x61\x6e\x20\x69\x6e\x76\x61\x6c\x69\x64\x20\x73\x6f\x6c\ +\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x06\x00\x54\x00\x79\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x54\x79\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x1a\x00\x54\x00\x79\x00\x70\x00\x20\x00\x6b\x00\x6f\ +\x00\x6e\x00\x77\x00\x65\x00\x72\x00\x73\x00\x6a\x00\x69\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0f\x54\x79\x70\x65\x20\x63\x6f\x6e\ +\x76\x65\x72\x73\x69\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x30\x00\x4e\x00\x69\x00\x65\x00\x20\x00\x6d\ +\x00\x6f\x01\x7c\x00\x6e\x00\x61\x00\x20\x00\x75\x00\x74\x00\x77\ +\x00\x6f\x00\x72\x00\x7a\x00\x79\x01\x07\x00\x20\x00\x64\x00\x61\ +\x00\x63\x00\x68\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\ +\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\ +\x20\x61\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x3a\x00\x4e\x00\x69\x00\x65\x00\x20\x00\x6d\ +\x00\x6f\x01\x7c\x00\x6e\x00\x61\x00\x20\x00\x75\x00\x74\x00\x77\ +\x00\x6f\x00\x72\x00\x7a\x00\x79\x01\x07\x00\x20\x00\x6b\x00\x6f\ +\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x75\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x55\x6e\x61\x62\x6c\x65\ +\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\ +\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x1a\x00\x52\x00\x6f\x00\x7a\x00\x67\x00\x72\x00\x75\x00\ +\x70\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x55\x6e\x67\x72\x6f\x75\x70\x69\x6e\ +\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\ +\x00\x57\x00\x69\x00\x64\x00\x6f\x00\x6b\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x07\x56\x69\x65\x77\x20\x6f\x66\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x01\x5a\x00\x63\x00\x69\ +\x00\x61\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x18\x00\x4f\x00\x70\x00\x63\x00\x6a\x00\x65\x00\x20\x01\ +\x5b\x00\x63\x00\x69\x00\x61\x00\x6e\x00\x79\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0c\x57\x61\x6c\x6c\x20\x6f\x70\x74\x69\x6f\x6e\ +\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\ +\x00\x57\x00\x61\x00\x6c\x00\x6c\x00\x54\x00\x72\x00\x61\x00\x63\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x57\x61\x6c\x6c\ +\x54\x72\x61\x63\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x12\x00\x53\x00\x7a\x00\x65\x00\x72\x00\x6f\x00\x6b\ +\x00\x6f\x01\x5b\x01\x07\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x57\x69\x64\x74\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x08\x00\x4f\x00\x6b\x00\x6e\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x50\x00\x72\x00\ +\x7a\x00\x65\x00\x77\x00\x6f\x00\x64\x00\x79\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x05\x57\x69\x72\x65\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x6f\x00\x66\x00\x66\x00\ +\x73\x00\x65\x00\x74\x00\x20\x00\x5a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x5a\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x7a\x00\x61\x00\x6d\ +\x00\x79\x00\x6b\x00\x61\x00\x6d\x00\x20\x00\x65\x00\x64\x00\x79\ +\x00\x63\x00\x6a\x01\x19\x00\x20\x00\x73\x00\x7a\x00\x6b\x00\x69\ +\x00\x63\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x63\x6c\ +\x6f\x73\x69\x6e\x67\x20\x53\x6b\x65\x74\x63\x68\x20\x65\x64\x69\ +\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\ +\x00\x7a\x00\x61\x00\x77\x00\x69\x00\x65\x00\x72\x00\x61\x00\x20\ +\x00\x6e\x00\x69\x00\x65\x00\x7a\x00\x61\x00\x6d\x00\x6b\x00\x6e\ +\x00\x69\x01\x19\x00\x74\x00\x65\x00\x20\x00\x73\x00\x74\x00\x61\ +\x01\x42\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x63\x6f\ +\x6e\x74\x61\x69\x6e\x73\x20\x61\x20\x6e\x6f\x6e\x2d\x63\x6c\x6f\ +\x73\x65\x64\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x68\x00\x7a\x00\x61\x00\x77\x00\x69\ +\x00\x65\x00\x72\x00\x61\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6e\ +\x00\x74\x00\x79\x00\x2c\x00\x20\x00\x6b\x00\x74\x00\xf3\x00\x72\ +\x00\x65\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x73\x01\x05\ +\x00\x20\x00\x63\x00\x7a\x01\x19\x01\x5b\x00\x63\x00\x69\x01\x05\ +\x00\x20\x01\x7c\x00\x61\x00\x64\x00\x6e\x00\x79\x00\x63\x00\x68\ +\x00\x20\x00\x73\x00\x74\x00\x61\x01\x42\x00\x79\x00\x63\x00\x68\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x63\x6f\x6e\x74\x61\x69\ +\x6e\x73\x20\x66\x61\x63\x65\x73\x20\x74\x68\x61\x74\x20\x61\x72\ +\x65\x20\x6e\x6f\x74\x20\x70\x61\x72\x74\x20\x6f\x66\x20\x61\x6e\ +\x79\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x36\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x7a\ +\x00\x61\x00\x77\x00\x69\x00\x65\x00\x72\x00\x61\x00\x20\x01\x7c\ +\x00\x61\x00\x64\x00\x6e\x00\x79\x00\x63\x00\x68\x00\x20\x00\x73\ +\x00\x74\x00\x61\x01\x42\x00\x79\x00\x63\x00\x68\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x19\x64\x6f\x65\x73\x6e\x27\x74\x20\x63\x6f\ +\x6e\x74\x61\x69\x6e\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\x00\x70\ +\x00\x6c\x00\x69\x00\x6b\x00\x20\x00\x25\x00\x73\x00\x20\x00\x75\ +\x00\x74\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\x6f\x00\x6e\x00\x79\ +\x00\x20\x00\x70\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\ +\x00\x69\x00\x65\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\ +\x66\x69\x6c\x65\x20\x25\x73\x20\x73\x75\x63\x63\x65\x73\x73\x66\ +\x75\x6c\x6c\x79\x20\x63\x72\x65\x61\x74\x65\x64\x2e\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x24\x00\x6e\x00\x69\ +\x00\x65\x00\x20\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x20\x00\x7a\ +\x00\x61\x00\x6d\x00\x6b\x00\x6e\x00\x69\x01\x19\x00\x74\x00\x79\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x69\x73\x20\x6e\x6f\x74\ +\x20\x63\x6c\x6f\x73\x65\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x26\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x6a\ +\x00\x65\x00\x73\x00\x74\x00\x20\x00\x70\x00\x72\x00\x61\x00\x77\ +\x00\x69\x00\x64\x01\x42\x00\x6f\x00\x77\x00\x79\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x69\x73\x20\x6e\x6f\x74\x20\x76\x61\x6c\ +\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x6e\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x7a\x00\x6e\x00\x61\x00\ +\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\ +\x70\x00\x61\x00\x6b\x00\x69\x00\x65\x00\x74\x00\x75\x00\x20\x00\ +\x70\x00\x79\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\ +\x61\x00\x2c\x00\x20\x00\x62\x00\x72\x00\x61\x00\x6b\x00\x20\x00\ +\x6f\x00\x62\x00\x73\x01\x42\x00\x75\x00\x67\x00\x69\x00\x20\x00\ +\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x29\x70\x79\x63\x6f\x6c\x6c\x61\ +\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x6e\x6f\ +\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\x6f\x72\x74\ +\x2e\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x64\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\ +\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x76\x00\x6f\x00\x69\x00\ +\x64\x00\x20\x00\x63\x00\x72\x00\x6f\x00\x73\x00\x73\x00\x2d\x00\ +\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\ +\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x72\ +\x65\x6d\x6f\x76\x69\x6e\x67\x20\x73\x6b\x65\x74\x63\x68\x20\x73\ +\x75\x70\x70\x6f\x72\x74\x20\x74\x6f\x20\x61\x76\x6f\x69\x64\x20\ +\x63\x72\x6f\x73\x73\x2d\x72\x65\x66\x65\x72\x65\x6e\x63\x69\x6e\ +\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x26\ +\x00\x7a\x00\x61\x00\x70\x00\x69\x00\x73\x00\x61\x00\x6e\x00\x6f\ +\x00\x20\x00\x70\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\ +\x00\x69\x00\x65\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\ +\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x77\x72\x69\ +\x74\x74\x65\x6e\x20\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x26\x00\x73\x00\x6b\x01\x42\x00\x61\x00\x64\x00\x6e\ +\x00\x69\x00\x6b\x00\x69\x00\x20\x00\x74\x00\x65\x00\x67\x00\x6f\ +\x00\x20\x00\x6f\x00\x6b\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1d\x74\x68\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\x69\x6e\x64\x6f\ +\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1c\ +\x00\x44\x00\x6f\x00\x64\x00\x61\x00\x6a\x00\x20\x00\x73\x00\x6b\ +\x01\x42\x00\x61\x00\x64\x00\x6e\x00\x69\x00\x6b\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\x63\x6f\x6d\x70\x6f\x6e\ +\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\ +\x01\x03\x00\x00\x00\x5a\x00\x44\x00\x6f\x00\x64\x00\x61\x00\x6a\ +\x00\x65\x00\x20\x00\x77\x00\x79\x00\x62\x00\x72\x00\x61\x00\x6e\ +\x00\x65\x00\x20\x00\x73\x00\x6b\x01\x42\x00\x61\x00\x64\x00\x6e\ +\x00\x69\x00\x6b\x00\x69\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x61\ +\x00\x6b\x00\x74\x00\x79\x00\x77\x00\x6e\x00\x65\x00\x67\x00\x6f\ +\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x75\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x41\x64\x64\x73\x20\x74\ +\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\ +\x6f\x6e\x65\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x61\x63\ +\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\ +\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x04\x00\x4f\ +\x01\x5b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\x69\x73\ +\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x41\x78\x69\x73\x01\x03\ +\x00\x00\x00\x24\x00\x54\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\x79\ +\x00\x20\x00\x73\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x20\ +\x00\x6f\x00\x73\x00\x69\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x17\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x78\x69\ +\x73\x20\x73\x79\x73\x74\x65\x6d\x2e\x07\x00\x00\x00\x09\x41\x72\ +\x63\x68\x5f\x41\x78\x69\x73\x01\x03\x00\x00\x00\x0e\x00\x42\x00\ +\x75\x00\x64\x00\x79\x00\x6e\x00\x65\x00\x6b\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\ +\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\ +\x03\x00\x00\x00\x60\x00\x54\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\ +\x79\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\ +\x20\x00\x42\x00\x75\x00\x64\x00\x79\x00\x6e\x00\x65\x00\x6b\x00\ +\x20\x00\x77\x00\x72\x00\x61\x00\x7a\x00\x20\x00\x7a\x00\x20\x00\ +\x77\x00\x79\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x79\x00\x6d\x00\ +\x69\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\ +\x61\x00\x6d\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x43\ +\x72\x65\x61\x74\x65\x73\x20\x61\x20\x62\x75\x69\x6c\x64\x69\x6e\ +\x67\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\ +\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x2e\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\ +\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x0e\x00\x4b\x00\x6f\ +\x00\x6d\x00\xf3\x00\x72\x00\x6b\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x43\x65\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\ +\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x5a\x00\x54\x00\x77\ +\x00\x6f\x00\x72\x00\x7a\x00\x79\x00\x20\x00\x6f\x00\x62\x00\x69\ +\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x43\x00\x65\x00\x6c\x00\x6c\ +\x00\x20\x00\x77\x00\x72\x00\x61\x00\x7a\x00\x20\x00\x7a\x00\x20\ +\x00\x77\x00\x79\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x79\x00\x6d\ +\x00\x69\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\ +\x00\x61\x00\x6d\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x65\x6c\x6c\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\ +\x00\x00\x00\x0e\x00\x53\x00\x70\x00\x72\x00\x61\x00\x77\x00\x64\ +\x01\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x43\x68\x65\x63\ +\x6b\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\ +\x01\x03\x00\x00\x00\x68\x00\x53\x00\x70\x00\x72\x00\x61\x00\x77\ +\x00\x64\x00\x7a\x00\x61\x00\x20\x00\x7a\x00\x61\x00\x7a\x00\x6e\ +\x00\x61\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x6f\ +\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x20\x00\x63\ +\x00\x7a\x00\x79\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x7a\ +\x00\x61\x00\x77\x00\x69\x00\x65\x00\x72\x00\x61\x00\x6a\x01\x05\ +\x00\x20\x00\x62\x01\x42\x01\x19\x00\x64\x00\xf3\x00\x77\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x28\x43\x68\x65\x63\x6b\x73\x20\x74\ +\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x20\x66\x6f\x72\x20\x70\x72\x6f\x62\x6c\x65\x6d\x73\ +\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\x01\ +\x03\x00\x00\x00\x1c\x00\x5a\x00\x61\x00\x6d\x00\x6b\x00\x6e\x00\ +\x69\x00\x6a\x00\x20\x00\x6f\x00\x74\x00\x77\x00\x6f\x00\x72\x00\ +\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x6c\x6f\x73\x65\ +\x20\x68\x6f\x6c\x65\x73\x07\x00\x00\x00\x0f\x41\x72\x63\x68\x5f\ +\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\x01\x03\x00\x00\x00\x70\ +\x00\x5a\x00\x61\x00\x6d\x00\x79\x00\x6b\x00\x61\x00\x20\x00\x6f\ +\x00\x74\x00\x77\x00\x6f\x00\x72\x00\x79\x00\x20\x00\x6b\x00\x73\ +\x00\x7a\x00\x74\x00\x61\x01\x42\x00\x74\x00\xf3\x00\x77\x00\x20\ +\x00\x6f\x00\x74\x00\x77\x00\x61\x00\x72\x00\x74\x00\x79\x00\x63\ +\x00\x68\x00\x2c\x00\x20\x00\x7a\x00\x6d\x00\x69\x00\x65\x00\x6e\ +\x00\x69\x00\x61\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x64\x00\x6f\ +\x00\x20\x00\x73\x00\x74\x00\x61\x01\x42\x00\x79\x00\x63\x00\x68\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x6c\x6f\x73\x65\x73\ +\x20\x68\x6f\x6c\x65\x73\x20\x69\x6e\x20\x6f\x70\x65\x6e\x20\x73\ +\x68\x61\x70\x65\x73\x2c\x20\x74\x75\x72\x6e\x69\x6e\x67\x20\x74\ +\x68\x65\x6d\x20\x73\x6f\x6c\x69\x64\x73\x07\x00\x00\x00\x0f\x41\ +\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\x01\x03\ +\x00\x00\x00\x5e\x00\x54\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\x79\ +\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x20\ +\x00\x50\x00\x69\x01\x19\x00\x74\x00\x72\x00\x6f\x00\x20\x00\x77\ +\x00\x72\x00\x61\x00\x7a\x00\x20\x00\x7a\x00\x20\x00\x77\x00\x79\ +\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x79\x00\x6d\x00\x69\x00\x20\ +\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x61\x00\x6d\ +\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x66\x6c\x6f\x6f\x72\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ +\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\ +\x00\x0c\x00\x50\x00\x69\x01\x19\x00\x74\x00\x72\x00\x6f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\ +\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\ +\x00\x24\x00\x53\x00\x69\x00\x61\x00\x74\x00\x6b\x00\x61\x00\x20\ +\x00\x64\x00\x6f\x00\x20\x00\x4b\x00\x73\x00\x7a\x00\x74\x00\x61\ +\x01\x42\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ +\x4d\x65\x73\x68\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\ +\x00\x10\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\ +\x70\x65\x01\x03\x00\x00\x00\x5a\x00\x54\x00\x75\x00\x72\x00\x6e\ +\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\ +\x00\x65\x00\x64\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\ +\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x50\ +\x00\x61\x00\x72\x00\x74\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\ +\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x54\x75\x72\x6e\ +\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\ +\x73\x20\x69\x6e\x74\x6f\x20\x50\x61\x72\x74\x20\x53\x68\x61\x70\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x10\x41\x72\ +\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\ +\x00\x00\x00\x1a\x00\x55\x00\x73\x00\x75\x01\x44\x00\x20\x00\x73\ +\x00\x6b\x01\x42\x00\x61\x00\x64\x00\x6e\x00\x69\x00\x6b\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\x6d\x6f\x76\x65\x20\x63\ +\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\ +\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\x84\x00\x55\ +\x00\x73\x00\x75\x01\x44\x00\x20\x00\x77\x00\x79\x00\x62\x00\x72\ +\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x73\x00\x6b\x01\x42\x00\x61\ +\x00\x64\x00\x6e\x00\x69\x00\x6b\x00\x69\x00\x20\x00\x7a\x00\x20\ +\x00\x69\x00\x63\x00\x68\x00\x20\x00\x72\x00\x6f\x00\x64\x00\x7a\ +\x00\x69\x00\x63\x00\xf3\x00\x77\x00\x20\x00\x6c\x00\x75\x00\x62\ +\x00\x20\x00\x75\x00\x74\x00\x77\x00\xf3\x00\x72\x00\x7a\x00\x20\ +\x00\x6f\x00\x74\x00\x77\x00\xf3\x00\x72\x00\x20\x00\x77\x00\x20\ +\x00\x73\x00\x6b\x01\x42\x00\x61\x00\x64\x00\x6e\x00\x69\x00\x6b\ +\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x65\x6d\x6f\ +\x76\x65\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\ +\x74\x68\x65\x69\x72\x20\x70\x61\x72\x65\x6e\x74\x73\x2c\x20\x6f\ +\x72\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x68\x6f\x6c\x65\x20\ +\x69\x6e\x20\x61\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\ +\x00\x00\x00\x26\x00\x55\x00\x73\x00\x75\x01\x44\x00\x20\x00\x4b\ +\x00\x73\x00\x7a\x00\x74\x00\x61\x01\x42\x00\x74\x00\x20\x00\x7a\ +\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x16\x52\x65\x6d\x6f\x76\x65\x20\x53\x68\x61\x70\x65\ +\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x07\x00\x00\x00\x10\x41\ +\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\ +\x03\x00\x00\x00\x68\x00\x55\x00\x73\x00\x75\x00\x77\x00\x61\x00\ +\x20\x00\x73\x00\x7a\x00\x65\x01\x5b\x00\x63\x00\x69\x00\x65\x00\ +\x6e\x00\x6e\x00\x65\x00\x20\x00\x6b\x00\x73\x00\x7a\x00\x74\x00\ +\x61\x01\x42\x00\x74\x00\x79\x00\x20\x00\x7a\x00\x65\x00\x20\x00\ +\x73\x00\x6b\x01\x42\x00\x61\x00\x64\x00\x6e\x00\x69\x00\x6b\x00\ +\xf3\x00\x77\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\ +\x74\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x72\x00\x79\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x29\x52\x65\x6d\x6f\x76\x65\x73\x20\x63\ +\x75\x62\x69\x63\x20\x73\x68\x61\x70\x65\x73\x20\x66\x72\x6f\x6d\ +\x20\x41\x72\x63\x68\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\ +\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\ +\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x5e\x00\x54\x00\x77\x00\ +\x6f\x00\x72\x00\x7a\x00\x79\x00\x20\x00\x6f\x00\x62\x00\x69\x00\ +\x65\x00\x6b\x00\x74\x00\x20\x00\x64\x00\x61\x00\x63\x00\x68\x00\ +\x75\x00\x20\x00\x6f\x00\x64\x00\x20\x00\x77\x00\x79\x00\x62\x00\ +\x72\x00\x61\x00\x6e\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x66\x00\ +\x72\x00\x6f\x00\x6e\x00\x74\x00\x75\x00\x20\x00\x6f\x00\x62\x00\ +\x69\x00\x65\x00\x6b\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x39\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x72\x6f\x6f\ +\x66\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x74\x68\ +\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x66\x61\x63\x65\x20\ +\x6f\x66\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ +\x09\x41\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x08\ +\x00\x44\x00\x61\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\ +\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x7c\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x73\ +\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x70\ +\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\x00\x69\x00\x6e\x00\x63\ +\x00\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\ +\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3e\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x65\x63\x74\x69\x6f\ +\x6e\x20\x70\x6c\x61\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\ +\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ +\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\ +\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x2a\x00\x50\x01\x42\x00\x61\ +\x00\x73\x00\x7a\x00\x63\x00\x7a\x00\x79\x00\x7a\x00\x6e\x00\x61\ +\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x65\x00\x6b\x00\x72\x00\x6f\ +\x00\x6a\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\ +\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\ +\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\ +\x65\x01\x03\x00\x00\x00\x38\x00\x57\x00\x79\x00\x62\x00\x69\x00\ +\x65\x00\x72\x00\x7a\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x72\x00\ +\xf3\x01\x7c\x00\x6e\x00\x6f\x00\x72\x00\x6f\x00\x64\x00\x6e\x00\ +\x65\x00\x20\x00\x73\x00\x69\x00\x61\x00\x74\x00\x6b\x00\x69\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\ +\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\ +\x68\x65\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\ +\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\ +\x73\x01\x03\x00\x00\x00\x8a\x00\x57\x00\x79\x00\x62\x00\x69\x00\ +\x65\x00\x72\x00\x61\x00\x20\x00\x77\x00\x73\x00\x7a\x00\x79\x00\ +\x73\x00\x74\x00\x6b\x00\x69\x00\x65\x00\x20\x00\x6e\x00\x69\x00\ +\x65\x00\x72\x00\xf3\x01\x7c\x00\x6e\x00\x6f\x00\x72\x00\x6f\x00\ +\x64\x00\x6e\x00\x65\x00\x20\x00\x73\x00\x69\x00\x61\x00\x74\x00\ +\x6b\x00\x69\x00\x20\x00\x7a\x00\x20\x00\x64\x00\x6f\x00\x6b\x00\ +\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x75\x00\x20\x00\x6c\x00\ +\x75\x00\x62\x00\x20\x00\x77\x00\x79\x00\x62\x00\x72\x00\x61\x00\ +\x6e\x00\x79\x00\x63\x00\x68\x00\x20\x00\x67\x00\x72\x00\x75\x00\ +\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x53\x65\x6c\x65\x63\ +\x74\x73\x20\x61\x6c\x6c\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\ +\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x66\x72\x6f\x6d\x20\ +\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x20\x6f\x72\x20\ +\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x67\x72\x6f\x75\x70\x73\x07\x00\x00\x00\x19\x41\x72\x63\ +\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\ +\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x5c\x00\x54\x00\x77\ +\x00\x6f\x00\x72\x00\x7a\x00\x79\x00\x20\x00\x6f\x00\x62\x00\x69\ +\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x54\x00\x65\x00\x72\x00\x65\ +\x00\x6e\x00\x20\x00\x77\x00\x72\x00\x61\x00\x7a\x00\x20\x00\x7a\ +\x00\x20\x00\x77\x00\x79\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x79\ +\x00\x6d\x00\x69\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\ +\x00\x74\x00\x61\x00\x6d\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x69\x74\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\ +\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\ +\x65\x01\x03\x00\x00\x00\x0a\x00\x54\x00\x65\x00\x72\x00\x65\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\ +\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\ +\x00\x00\x1e\x00\x52\x00\x6f\x00\x7a\x00\x64\x00\x7a\x00\x69\x00\ +\x65\x00\x6c\x00\x20\x00\x73\x00\x69\x00\x61\x00\x74\x00\x6b\x01\ +\x19\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\ +\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\ +\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\x60\x00\x52\ +\x00\x6f\x00\x7a\x00\x64\x00\x7a\x00\x69\x00\x65\x00\x6c\x00\x61\ +\x00\x20\x00\x77\x00\x79\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x65\ +\x00\x20\x00\x73\x00\x69\x00\x61\x00\x74\x00\x6b\x00\x69\x00\x20\ +\x00\x6e\x00\x61\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x7a\x00\x61\ +\x00\x6c\x00\x65\x01\x7c\x00\x6e\x00\x65\x00\x20\x00\x73\x00\x6b\ +\x01\x42\x00\x61\x00\x64\x00\x6e\x00\x69\x00\x6b\x00\x69\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x32\x53\x70\x6c\x69\x74\x73\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\ +\x6e\x74\x6f\x20\x69\x6e\x64\x65\x70\x65\x6e\x64\x65\x6e\x74\x20\ +\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x0e\x41\ +\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\ +\x00\x00\xc6\x00\x55\x00\x74\x00\x77\x00\xf3\x00\x72\x00\x7a\x00\ +\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x20\x00\ +\x4b\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\ +\x63\x00\x6a\x00\x61\x00\x20\x00\x6f\x00\x64\x00\x20\x00\x70\x00\ +\x6f\x00\x63\x00\x7a\x01\x05\x00\x74\x00\x6b\x00\x75\x00\x20\x00\ +\x6c\x00\x75\x00\x62\x00\x20\x00\x7a\x00\x20\x00\x77\x00\x79\x00\ +\x62\x00\x72\x00\x61\x00\x6e\x00\x79\x00\x63\x00\x68\x00\x20\x00\ +\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\xf3\x00\x77\x00\ +\x20\x00\x28\x00\x73\x00\x7a\x00\x6b\x00\x69\x00\x63\x00\x2c\x00\ +\x20\x00\x73\x00\x7a\x00\x6b\x00\x69\x00\x65\x00\x6c\x00\x65\x00\ +\x74\x00\x2c\x00\x20\x00\x66\x00\x61\x00\x73\x00\x65\x00\x74\x00\ +\x6b\x00\x61\x00\x20\x00\x6c\x00\x75\x00\x62\x00\x20\x00\x73\x00\ +\x6f\x00\x6c\x00\x69\x00\x64\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x5f\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x74\x72\ +\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\ +\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\ +\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x20\x28\x73\x6b\x65\x74\x63\x68\x2c\x20\x77\x69\ +\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\ +\x64\x29\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\ +\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\x16\x00\x4b\x00\x6f\x00\ +\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x63\x00\x6a\x00\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\x75\x63\ +\x74\x75\x72\x65\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\ +\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\x60\x00\x54\x00\ +\x77\x00\x6f\x00\x72\x00\x7a\x00\x79\x00\x20\x00\x6f\x00\x62\x00\ +\x69\x00\x65\x00\x6b\x00\x74\x00\x20\x01\x5a\x00\x63\x00\x69\x00\ +\x61\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\x64\x00\x20\x00\x70\x00\ +\x6f\x00\x63\x00\x7a\x01\x05\x00\x74\x00\x6b\x00\x75\x00\x20\x00\ +\x6c\x00\x75\x00\x62\x00\x20\x00\x7a\x00\x20\x00\x77\x00\x79\x00\ +\x62\x00\x72\x00\x61\x00\x6e\x00\x79\x00\x63\x00\x68\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x52\x43\x72\x65\x61\x74\x65\x73\x20\x61\ +\x20\x77\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\ +\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\ +\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\ +\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x09\x41\x72\ +\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\x0c\x01\x5a\x00\ +\x63\x00\x69\x00\x61\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\ +\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\x94\x00\x43\x00\x72\x00\ +\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\ +\x77\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\ +\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x28\x00\x77\x00\x69\x00\ +\x72\x00\x65\x00\x2c\x00\x20\x00\x72\x00\x65\x00\x63\x00\x74\x00\ +\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x72\x00\ +\x20\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x4a\x43\x72\x65\x61\x74\x65\x73\ +\x20\x61\x20\x77\x69\x6e\x64\x6f\x77\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x72\ +\x65\x63\x74\x61\x6e\x67\x6c\x65\x20\x6f\x72\x20\x73\x6b\x65\x74\ +\x63\x68\x29\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\ +\x64\x6f\x77\x01\x03\x00\x00\x00\x08\x00\x4f\x00\x6b\x00\x6e\x00\ +\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\ +\x77\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\ +\x77\x01\x03\x00\x00\x00\x1e\x00\x72\x00\x65\x00\x6e\x00\x64\x00\ +\x65\x00\x72\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x65\x00\ +\x20\x00\x32\x00\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x32\ +\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x50\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\ +\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x73\x00\x20\ +\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x61\x00\x63\x00\x68\ +\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x74\x00\x79\x00\x70\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x43\x72\x65\x61\ +\x74\x65\x73\x20\x67\x72\x6f\x75\x70\x73\x20\x66\x6f\x72\x20\x65\ +\x61\x63\x68\x20\x41\x72\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x74\x79\x70\x65\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\x00\x47\x00\x72\x00\ +\x75\x00\x62\x00\x6f\x01\x5b\x01\x07\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x69\x00\x69\x00\x20\x00\x6f\x00\x62\x00\x73\x00\x7a\x00\ +\x61\x00\x72\x00\x75\x00\x20\x00\x63\x00\x69\x01\x19\x00\x63\x00\ +\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x43\x75\x74\ +\x20\x61\x72\x65\x61\x73\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\ +\x6b\x6e\x65\x73\x73\x20\x72\x61\x74\x69\x6f\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x3c\x00\x4b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x64\ +\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x79\x00\x20\ +\x00\x64\x00\x6c\x00\x61\x00\x20\x00\x6b\x00\x6f\x00\x6e\x00\x73\ +\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x63\x00\x6a\x00\x69\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1c\x44\x65\x66\x61\x75\x6c\x74\x20\ +\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x74\x72\x75\x63\x74\ +\x75\x72\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x44\x00\x6f\x00\ +\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x79\x00\x20\x00\x6b\x00\ +\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x01\x5b\x00\x63\x00\x69\x00\ +\x61\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x44\x65\x66\ +\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\ +\x61\x6c\x6c\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x44\x00\x6f\x00\ +\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x79\x00\x20\x00\x6b\x00\ +\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x6f\x00\x6b\x00\x69\x00\ +\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x44\x65\x66\ +\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\ +\x69\x6e\x64\x6f\x77\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2c\x00\x55\x00\ +\x73\x00\x74\x00\x61\x00\x77\x00\x69\x00\x65\x00\x6e\x00\x69\x00\ +\x61\x00\x20\x00\x6f\x00\x67\x00\xf3\x00\x6c\x00\x6e\x00\x65\x00\ +\x20\x00\x41\x00\x72\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\x20\x41\x72\x63\x68\x20\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x22\x00\ +\x55\x00\x73\x00\x74\x00\x61\x00\x77\x00\x69\x00\x65\x00\x6e\x00\ +\x69\x00\x61\x00\x20\x00\x6f\x00\x67\x00\xf3\x00\x6c\x00\x6e\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\ +\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x32\x00\x47\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x00\x73\x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\x00\x79\x00\x70\ +\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x72\ +\x6f\x75\x70\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x62\ +\x79\x20\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x69\ +\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x49\x00\x46\ +\x00\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x49\x46\x43\x20\ +\x69\x6d\x70\x6f\x72\x74\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\xba\x00\x49\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\ +\x64\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x49\x00\ +\x46\x00\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\ +\x65\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x65\x00\x72\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\ +\x64\x00\x2c\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x6f\x00\x77\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x69\x00\ +\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\ +\x72\x00\x65\x00\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\x74\x00\ +\x79\x00\x70\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x5d\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\ +\x53\x68\x65\x6c\x6c\x20\x69\x6d\x70\x6f\x72\x74\x65\x72\x20\x77\ +\x69\x6c\x6c\x20\x62\x65\x20\x75\x73\x65\x64\x2c\x20\x61\x6c\x6c\ +\x6f\x77\x69\x6e\x67\x20\x74\x6f\x20\x69\x6d\x70\x6f\x72\x74\x20\ +\x6d\x6f\x72\x65\x20\x49\x46\x43\x20\x74\x79\x70\x65\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x56\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x00\x75\x00\x6a\x00\x20\x00\x6d\x00\x65\x00\x62\x00\x65\x00\ +\x6c\x00\x28\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x6c\x00\x20\x00\ +\x6d\x00\x6f\x01\x7c\x00\x65\x00\x20\x00\x73\x00\x74\x00\x61\x01\ +\x07\x00\x20\x00\x73\x00\x69\x01\x19\x00\x20\x00\x63\x00\x69\x01\ +\x19\x01\x7c\x00\x73\x00\x7a\x00\x79\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2b\x49\x6d\x70\x6f\x72\x74\x20\x66\x75\x72\x6e\ +\x69\x74\x75\x72\x65\x20\x28\x63\x61\x6e\x20\x6d\x61\x6b\x65\x20\ +\x74\x68\x65\x20\x6d\x6f\x64\x65\x6c\x20\x68\x65\x61\x76\x79\x29\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x6c\x00\x50\x00\x6f\x00\x6b\x00\x61\x01\ +\x7c\x00\x20\x00\x69\x00\x6e\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\ +\x61\x00\x63\x00\x6a\x00\x65\x00\x20\x00\x6f\x00\x20\x00\x64\x00\ +\x65\x00\x62\x00\x75\x00\x67\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\ +\x69\x00\x75\x00\x20\x00\x70\x00\x6f\x00\x64\x00\x63\x00\x7a\x00\ +\x61\x00\x73\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\ +\x72\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x61\x00\x20\x00\ +\x32\x00\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x53\x68\x6f\ +\x77\x20\x64\x65\x62\x75\x67\x20\x69\x6e\x66\x6f\x72\x6d\x61\x74\ +\x69\x6f\x6e\x20\x64\x75\x72\x69\x6e\x67\x20\x32\x44\x20\x72\x65\ +\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x62\x00\x50\ +\x00\x6f\x00\x6b\x00\x61\x01\x7c\x00\x20\x00\x77\x00\x69\x00\x61\ +\x00\x64\x00\x6f\x00\x6d\x00\x6f\x01\x5b\x00\x63\x00\x69\x00\x20\ +\x00\x64\x00\x65\x00\x62\x00\x75\x00\x67\x00\x6f\x00\x77\x00\x61\ +\x00\x6e\x00\x69\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x64\x00\x63\ +\x00\x7a\x00\x61\x00\x73\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\ +\x00\x65\x00\x72\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x53\x68\x6f\x77\x20\x72\ +\x65\x6e\x64\x65\x72\x65\x72\x20\x64\x65\x62\x75\x67\x20\x6d\x65\ +\x73\x73\x61\x67\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x9e\x00\x53\x00\ +\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x69\x00\x65\x00\x73\x00\ +\x20\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x6d\x00\x61\x00\x6e\x00\ +\x79\x00\x20\x00\x74\x00\x69\x00\x6d\x00\x65\x00\x73\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x76\x00\x69\x00\x65\x00\x77\x00\ +\x65\x00\x64\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x63\x00\x6b\x00\x6e\x00\x65\x00\x73\x00\ +\x73\x00\x20\x00\x6d\x00\x75\x00\x73\x00\x74\x00\x20\x00\x62\x00\ +\x65\x00\x20\x00\x61\x00\x70\x00\x70\x00\x6c\x00\x69\x00\x65\x00\ +\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x75\x00\x74\x00\ +\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x4f\x53\x70\x65\x63\x69\x66\x69\x65\x73\x20\x68\ +\x6f\x77\x20\x6d\x61\x6e\x79\x20\x74\x69\x6d\x65\x73\x20\x74\x68\ +\x65\x20\x76\x69\x65\x77\x65\x64\x20\x6c\x69\x6e\x65\x20\x74\x68\ +\x69\x63\x6b\x6e\x65\x73\x73\x20\x6d\x75\x73\x74\x20\x62\x65\x20\ +\x61\x70\x70\x6c\x69\x65\x64\x20\x74\x6f\x20\x63\x75\x74\x20\x6c\ +\x69\x6e\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5a\x00\x4b\x00\x6f\x00\ +\x6c\x00\x6f\x00\x72\x00\x20\x00\x64\x00\x6f\x00\x6d\x00\x79\x01\ +\x5b\x00\x6c\x00\x6e\x00\x79\x00\x20\x00\x64\x00\x6c\x00\x61\x00\ +\x20\x00\x6e\x00\x6f\x00\x77\x00\x65\x00\x67\x00\x6f\x00\x20\x00\ +\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x20\x00\ +\x4b\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\ +\x63\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x54\ +\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\ +\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\ +\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x50\x00\x4b\x00\x6f\x00\x6c\x00\ +\x6f\x00\x72\x00\x20\x00\x64\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\ +\x6c\x00\x6e\x00\x79\x00\x20\x00\x64\x00\x6c\x00\x61\x00\x20\x00\ +\x6e\x00\x6f\x00\x77\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x6f\x00\ +\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x20\x01\x5a\x00\ +\x63\x00\x69\x00\x61\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\ +\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ +\x20\x6e\x65\x77\x20\x57\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x4a\x00\x55\x01\x7c\x00\x79\x00\x6a\ +\x00\x20\x00\x49\x00\x46\x00\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\ +\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\x6a\x00\x65\ +\x01\x5b\x00\x6c\x00\x69\x00\x20\x00\x6a\x00\x65\x00\x73\x00\x74\ +\x00\x20\x00\x64\x00\x6f\x00\x73\x00\x74\x01\x19\x00\x70\x00\x6e\ +\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\x65\x20\ +\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\x69\x66\x20\ +\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x07\x00\x00\x00\x1c\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\ +\x00\x26\x00\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\x74\x00\x65\ +\x00\x6b\x00\x74\x00\x75\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0d\x26\x41\x72\x63\x68\x69\x74\x65\x63\x74\x75\x72\ +\x65\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x0e\ +\x00\x52\x00\x79\x00\x73\x00\x75\x00\x6e\x00\x65\x00\x6b\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x26\x44\x72\x61\x66\x74\x07\x00\ +\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x2c\x00\x4e\x00\ +\x61\x00\x72\x00\x7a\x01\x19\x00\x64\x00\x7a\x00\x69\x00\x61\x00\ +\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\x74\x00\x65\x00\ +\x6b\x00\x74\x00\x75\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0a\x41\x72\x63\x68\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\ +\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x4e\x00\x61\ +\x00\x72\x00\x7a\x01\x19\x00\x64\x00\x7a\x00\x69\x00\x61\x00\x20\ +\x00\x4b\x00\x61\x00\x6c\x00\x6b\x00\x75\x00\x6c\x00\x61\x00\x63\ +\x00\x6a\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x43\x61\ +\x6c\x63\x75\x6c\x61\x74\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\ +\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x4e\ +\x00\x61\x00\x72\x00\x7a\x01\x19\x00\x64\x00\x7a\x00\x69\x00\x61\ +\x00\x20\x00\x4b\x00\x6f\x00\x6e\x00\x74\x00\x65\x00\x6b\x00\x73\ +\x00\x74\x00\x6f\x00\x77\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x43\x6f\x6e\x74\x65\x78\x74\x20\x54\x6f\x6f\x6c\x73\x07\ +\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x26\x00\x4e\ +\x00\x61\x00\x72\x00\x7a\x01\x19\x00\x64\x00\x7a\x00\x69\x00\x61\ +\x00\x20\x00\x6b\x00\x6f\x00\x6e\x00\x77\x00\x65\x00\x72\x00\x73\ +\x00\x6a\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x6f\ +\x6e\x76\x65\x72\x73\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\x00\ +\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x00\x44\x00\ +\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\ +\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\x20\x74\ +\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\ +\x00\x00\x20\x00\x4e\x00\x61\x00\x72\x00\x7a\x01\x19\x00\x64\x00\ +\x7a\x00\x69\x00\x61\x00\x20\x00\x73\x00\x7a\x00\x6b\x00\x69\x00\ +\x63\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x72\x61\ +\x66\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\ +\x68\x01\x03\x00\x00\x00\x9c\x00\x6e\x00\x69\x00\x65\x00\x20\x00\ +\x6d\x00\x6f\x01\x7c\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\x64\x00\ +\x6e\x00\x61\x00\x6c\x00\x65\x01\x7a\x01\x07\x00\x20\x00\x70\x00\ +\x61\x00\x6b\x00\x69\x00\x65\x00\x74\x00\x75\x00\x20\x00\x70\x00\ +\x79\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\ +\x2c\x00\x20\x00\x77\x00\x73\x00\x70\x00\x61\x00\x72\x00\x63\x00\ +\x69\x00\x65\x00\x20\x00\x64\x00\x6c\x00\x61\x00\x20\x00\x63\x00\ +\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x7a\x00\ +\x6f\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x69\x00\x65\x00\x20\x00\ +\x77\x00\x79\x01\x42\x01\x05\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\ +\x65\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x70\x79\x63\ +\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\ +\x2c\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\x6f\x72\ +\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x69\x73\x61\x62\x6c\ +\x65\x64\x2e\x0a\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ +\x00\x00\x4a\xa1\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x04\xf8\x00\x00\x47\xa4\x00\x00\x00\x49\x00\x04\x8e\xc3\ +\x00\x00\x01\x69\x00\x04\x8f\x03\x00\x00\x02\x1c\x00\x04\x8f\x03\ +\x00\x00\x25\xd8\x00\x04\x9c\x2c\x00\x00\x27\x56\x00\x04\xbb\x04\ +\x00\x00\x07\xd2\x00\x05\x48\x35\x00\x00\x0c\xe5\x00\x05\x67\xd5\ +\x00\x00\x0e\xf9\x00\x05\x96\x56\x00\x00\x0f\x4f\x00\x05\x96\x56\ +\x00\x00\x2f\x1c\x00\x05\xa0\xa5\x00\x00\x0f\x74\x00\x05\xa0\xa5\ +\x00\x00\x32\x9d\x00\x05\xc0\x65\x00\x00\x1d\x5b\x00\x05\xd8\x2c\ +\x00\x00\x1e\xee\x00\x05\xd8\x2c\x00\x00\x36\x65\x00\x32\x23\xa5\ +\x00\x00\x42\xcc\x00\x39\xdf\x33\x00\x00\x3b\x3f\x00\x48\x4e\x25\ +\x00\x00\x01\x43\x00\x49\xeb\x9b\x00\x00\x28\x30\x00\x4b\x55\x33\ +\x00\x00\x3c\x71\x00\x4d\x36\x62\x00\x00\x0a\x2f\x00\x4d\x36\x62\ +\x00\x00\x2a\xa2\x00\x5d\xfb\xa8\x00\x00\x1f\x86\x00\x5e\x08\xc3\ +\x00\x00\x1f\xd5\x00\x61\xb0\x33\x00\x00\x16\xcf\x00\x62\x9b\xa8\ +\x00\x00\x0f\xff\x00\x62\x9b\xa8\x00\x00\x32\xc9\x00\x8a\x92\x57\ +\x00\x00\x00\x00\x00\xaa\x80\x25\x00\x00\x07\x1f\x00\xc9\x7b\xf3\ +\x00\x00\x12\xc2\x00\xfb\x72\xf3\x00\x00\x3a\xc3\x01\x19\x4e\x85\ +\x00\x00\x05\xa9\x01\x55\x2b\xf5\x00\x00\x05\x1a\x01\x79\x17\x94\ +\x00\x00\x22\x9e\x01\x8e\x84\xa6\x00\x00\x11\x7e\x01\xad\x7d\xe3\ +\x00\x00\x44\x49\x01\xaf\x41\x84\x00\x00\x21\x8a\x01\xf7\xa8\x83\ +\x00\x00\x41\x89\x02\x01\x7f\xd3\x00\x00\x10\x74\x02\x29\xb3\xc4\ +\x00\x00\x2e\x53\x02\x5a\x4a\x53\x00\x00\x15\xed\x02\x5f\xc9\x59\ +\x00\x00\x35\x49\x02\x66\x7f\x7e\x00\x00\x0d\xd1\x02\x6a\x77\x99\ +\x00\x00\x3d\xb9\x02\x80\x5f\x17\x00\x00\x23\x6f\x02\x82\x88\x3a\ +\x00\x00\x04\x36\x02\x85\x4f\xf5\x00\x00\x19\x55\x02\x90\x40\x65\ +\x00\x00\x0c\xa5\x02\x90\x40\x65\x00\x00\x2a\xd4\x02\x94\x16\x35\ +\x00\x00\x10\xb1\x02\xab\x87\xd4\x00\x00\x43\x0c\x02\xb8\xae\x74\ +\x00\x00\x2b\xcc\x02\xc3\x91\x93\x00\x00\x3f\x1a\x02\xcd\x05\xa3\ +\x00\x00\x2b\x20\x02\xdd\x14\x14\x00\x00\x2c\x18\x03\x13\x15\x3e\ +\x00\x00\x0b\x51\x03\x1b\xda\x15\x00\x00\x1f\x52\x03\x1d\xe8\xe3\ +\x00\x00\x39\x46\x03\x29\x7a\x34\x00\x00\x00\xd9\x03\x2c\xe9\xb3\ +\x00\x00\x17\x36\x03\x92\x51\xe0\x00\x00\x0f\x9b\x03\xa2\xec\x23\ +\x00\x00\x1f\x15\x03\xbe\xb0\x34\x00\x00\x1e\x22\x03\xce\x98\xe5\ +\x00\x00\x03\xc0\x03\xd4\x22\x74\x00\x00\x24\xe6\x04\x35\xfa\x55\ +\x00\x00\x12\x37\x04\xc3\x75\x44\x00\x00\x19\xaa\x04\xdb\x21\x3e\ +\x00\x00\x31\xee\x04\xeb\xfd\xf4\x00\x00\x0a\x8c\x05\x14\x5b\x83\ +\x00\x00\x07\x56\x05\x18\xda\xa3\x00\x00\x29\xee\x05\x5f\x3d\x83\ +\x00\x00\x3a\x47\x05\x8c\x46\xc5\x00\x00\x0f\x1e\x05\x90\xba\xe3\ +\x00\x00\x0e\xcb\x05\xc0\x56\xe3\x00\x00\x3f\x9f\x05\xc7\xeb\xc7\ +\x00\x00\x3e\x6b\x05\xe0\x4b\x67\x00\x00\x1f\xae\x05\xe0\x4b\x67\ +\x00\x00\x37\x8f\x05\xef\x78\x4a\x00\x00\x22\xdb\x06\x1f\x6f\xa4\ +\x00\x00\x20\xea\x06\x32\xe3\xe3\x00\x00\x44\x8f\x06\x5b\x01\x15\ +\x00\x00\x03\x8f\x06\x69\xd0\x04\x00\x00\x20\x80\x06\x9f\x6f\xd4\ +\x00\x00\x06\xc1\x06\xd6\x3f\xa4\x00\x00\x22\x5e\x06\xe6\x2f\x43\ +\x00\x00\x11\xd9\x07\x00\xcc\xc4\x00\x00\x3c\x22\x07\x07\x84\xba\ +\x00\x00\x44\xd1\x07\x08\x43\x0e\x00\x00\x26\x02\x07\x16\x58\x05\ +\x00\x00\x38\x12\x07\x25\x74\x53\x00\x00\x28\xf5\x07\x28\xff\x15\ +\x00\x00\x0d\x5b\x07\x36\x51\x26\x00\x00\x13\xa4\x07\x5c\xdc\x04\ +\x00\x00\x1f\xfd\x07\x60\x23\xf3\x00\x00\x02\xf4\x07\xca\xf8\x87\ +\x00\x00\x37\xbd\x08\x25\x81\xc4\x00\x00\x06\x6c\x08\x4a\x45\xd9\ +\x00\x00\x36\x91\x08\x65\x4c\x95\x00\x00\x1b\xde\x08\xc5\xe3\x35\ +\x00\x00\x1b\x29\x08\xca\xc9\x74\x00\x00\x14\xcc\x08\xfb\xb8\xa4\ +\x00\x00\x09\xc8\x09\x69\xac\xa7\x00\x00\x1e\x89\x09\x6c\x6c\xa7\ +\x00\x00\x0a\x5b\x09\x9f\xcc\xde\x00\x00\x21\xee\x09\xba\xe6\x35\ +\x00\x00\x10\x3c\x09\xba\xe6\x35\x00\x00\x35\x07\x09\xc5\xbe\xca\ +\x00\x00\x09\x28\x09\xe3\x98\xe4\x00\x00\x25\x30\x09\xed\x98\x55\ +\x00\x00\x30\x26\x0a\x3e\x06\x83\x00\x00\x04\xa6\x0a\x3f\x1f\xd6\ +\x00\x00\x04\xe0\x0a\x3f\x2b\x25\x00\x00\x05\x6f\x0a\x3f\x5d\xac\ +\x00\x00\x05\xf2\x0a\x7f\xee\xa3\x00\x00\x43\x37\x0a\xb6\xc8\x9a\ +\x00\x00\x0a\xb7\x0a\xbf\x46\x0e\x00\x00\x1d\x7e\x0a\xd6\x07\x84\ +\x00\x00\x20\x2e\x0b\x0a\xc3\xf3\x00\x00\x00\x71\x0b\x51\x30\xa8\ +\x00\x00\x2d\x3e\x0b\x65\xda\xb3\x00\x00\x39\xd3\x0b\x8d\x97\x93\ +\x00\x00\x40\xbd\x0b\x9c\x5b\xe7\x00\x00\x08\x8b\x0b\xb9\xe8\x93\ +\x00\x00\x2d\xa7\x0b\xc4\xb1\x23\x00\x00\x27\x82\x0c\x02\xac\xd7\ +\x00\x00\x02\xc7\x0c\x02\xac\xd7\x00\x00\x26\x65\x0c\x25\x3e\x53\ +\x00\x00\x30\xe7\x0c\x3c\x8b\x33\x00\x00\x43\x74\x0c\x41\x0a\x83\ +\x00\x00\x43\xc0\x0c\x4e\x9b\x23\x00\x00\x30\x6f\x0c\x98\x80\x23\ +\x00\x00\x44\x00\x0c\xc4\xd0\x80\x00\x00\x24\x1e\x0c\xdf\x5a\x1e\ +\x00\x00\x01\x8e\x0c\xfc\x97\x06\x00\x00\x1e\xc0\x0d\x03\x26\xb4\ +\x00\x00\x02\x84\x0d\x08\x90\xf3\x00\x00\x1a\xbc\x0d\x1e\xda\xa4\ +\x00\x00\x03\x2b\x0d\x3b\x3b\x49\x00\x00\x33\xc1\x0d\xa8\x3a\x35\ +\x00\x00\x17\x91\x0d\xc1\x7d\x47\x00\x00\x24\x76\x0d\xfa\x53\xe5\ +\x00\x00\x07\xfd\x0e\x69\x87\x13\x00\x00\x2f\x46\x0e\x8c\xd7\x43\ +\x00\x00\x33\x10\x0e\x98\x0a\xd6\x00\x00\x1d\xc4\x0e\xab\x8d\x1f\ +\x00\x00\x38\xbb\x0e\xb9\x1b\xf2\x00\x00\x14\x6b\x0e\xec\x0b\x9e\ +\x00\x00\x26\x9b\x0f\x16\x4a\x24\x00\x00\x1c\xeb\x0f\x17\xc7\xa3\ +\x00\x00\x28\x5e\x0f\x55\xc1\x57\x00\x00\x06\x2c\x0f\x78\x41\x05\ +\x00\x00\x42\x44\x0f\x79\xe3\xf3\x00\x00\x29\x3a\x0f\x95\xd5\x09\ +\x00\x00\x18\x49\x0f\xa2\x16\x43\x00\x00\x1c\xb7\x0f\xc0\xb8\xb4\ +\x00\x00\x0d\x0c\x0f\xd0\x39\x44\x00\x00\x02\x41\x0f\xe5\x74\x74\ +\x00\x00\x00\xa5\x0f\xf3\xe8\x33\x00\x00\x3b\xa6\x69\x00\x00\x45\ +\x8f\x03\x00\x00\x00\x20\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x42\x00\x75\x00\x69\x00\x6c\x00\x64\ +\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x20\x43\x72\x65\x61\x74\x65\x20\x42\x75\x69\x6c\x64\x69\x6e\x67\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\ +\x50\x00\x72\x00\x69\x00\x64\x00\x61\x01\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x03\x41\x64\x64\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x12\x00\x41\x00\x64\x00\x64\x00\x69\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x41\x64\x64\x69\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x41\x00\x6c\x00\ +\x69\x00\x67\x00\x6e\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x41\x6c\x69\x67\x6e\x6d\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x36\x00\ +\x41\x00\x6c\x00\x6c\x00\x20\x00\x67\x00\x6f\x00\x6f\x00\x64\x00\ +\x21\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x62\x00\x6c\x00\x65\x00\x6d\x00\x73\x00\x20\x00\x66\x00\x6f\x00\ +\x75\x00\x6e\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x41\ +\x6c\x6c\x20\x67\x6f\x6f\x64\x21\x20\x6e\x6f\x20\x70\x72\x6f\x62\ +\x6c\x65\x6d\x73\x20\x66\x6f\x75\x6e\x64\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x55\x00\x68\x00\x6f\x00\ +\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x6e\x67\x6c\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\ +\x41\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x41\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x4e\x00\x41\x00\x78\x00\x65\x00\x73\x00\x20\x00\x73\ +\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x73\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\ +\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x69\x00\x73\ +\x00\x20\x00\x62\x00\x75\x00\x69\x00\x6c\x00\x74\x00\x20\x00\x6f\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x41\x78\x65\x73\ +\x20\x73\x79\x73\x74\x65\x6d\x73\x20\x74\x68\x69\x73\x20\x73\x74\ +\x72\x75\x63\x74\x75\x72\x65\x20\x69\x73\x20\x62\x75\x69\x6c\x74\ +\x20\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x08\x00\x41\x00\x78\x00\x69\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x41\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x1c\x00\x42\x00\x61\x00\x73\x00\x65\x00\ +\x20\x00\x32\x00\x44\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x42\x61\x73\ +\x65\x20\x32\x44\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1c\x00\x42\x00\x61\x00\x73\ +\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ +\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ +\x42\x61\x73\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x42\x00\ +\x75\x00\x64\x00\x6f\x00\x76\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x4b\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x79\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x32\x00\x4b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\ +\x6e\x00\x74\x00\x79\x00\x20\x00\x74\x00\x6f\x00\x68\x00\x6f\x00\ +\x74\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x43\x6f\x6d\ +\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x10\x00\x43\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\ +\x6e\x00\x75\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\ +\x6f\x6e\x74\x69\x6e\x75\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x3e\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\ +\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x75\x00\x74\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x73\x00\x68\x00\x61\ +\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x43\x6f\ +\x75\x6c\x64\x6e\x27\x74\x20\x63\x6f\x6d\x70\x75\x74\x65\x20\x74\ +\x68\x65\x20\x77\x61\x6c\x6c\x20\x73\x68\x61\x70\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x43\x00\x6f\ +\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x6c\ +\x00\x6f\x00\x63\x00\x61\x00\x74\x00\x65\x00\x20\x00\x49\x00\x66\ +\x00\x63\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\ +\x00\x6c\x00\x6c\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\ +\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x6c\x6f\x63\x61\x74\x65\x20\ +\x49\x66\x63\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x0a\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x41\x00\x78\x00\x69\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\ +\x74\x65\x20\x41\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x16\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\ +\x00\x65\x00\x20\x00\x52\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x52\x6f\x6f\ +\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x53\ +\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x50\ +\x00\x6c\x00\x61\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x14\x43\x72\x65\x61\x74\x65\x20\x53\x65\x63\x74\x69\x6f\x6e\ +\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x16\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\ +\x65\x00\x20\x00\x53\x00\x69\x00\x74\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x53\x69\x74\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x20\x00\ +\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\ +\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\x74\x65\x20\ +\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x16\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x57\x00\x61\x00\x6c\x00\x6c\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x57\ +\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x1a\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\ +\x00\x57\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x43\x72\x65\x61\x74\x65\x20\x57\x69\x6e\ +\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x28\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\ +\x00\x6e\x00\x65\x00\x77\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x14\x43\x72\x65\x61\x74\x65\x20\x6e\x65\x77\x20\x63\ +\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x2e\x00\x43\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x2f\x00\x75\x00\x70\x00\x64\x00\x61\x00\x74\x00\ +\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\ +\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\ +\x72\x65\x61\x74\x65\x2f\x75\x70\x64\x61\x74\x65\x20\x63\x6f\x6d\ +\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x16\x00\x56\x00\x7a\x00\x64\x00\x69\x00\x61\x00\ +\x6c\x00\x65\x00\x6e\x00\x6f\x00\x73\x01\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x42\x00\x44\x00\x69\ +\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x63\x00\x65\x00\x73\x00\x20\ +\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\ +\x00\x65\x00\x73\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\ +\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x21\x44\x69\x73\x74\x61\x6e\x63\x65\ +\x73\x20\x61\x6e\x64\x20\x61\x6e\x67\x6c\x65\x73\x20\x62\x65\x74\ +\x77\x65\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x55\x00\x70\x00\x72\x00\x61\ +\x00\x76\x00\x69\x01\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x45\x64\x69\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x4e\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x20\x00\ +\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x74\x00\x65\x00\ +\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x77\x00\ +\x61\x00\x6c\x00\x6c\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x45\x72\x72\x6f\x72\ +\x20\x72\x65\x6d\x6f\x76\x69\x6e\x67\x20\x73\x70\x6c\x69\x74\x74\ +\x65\x72\x20\x66\x72\x6f\x6d\x20\x77\x61\x6c\x6c\x20\x73\x68\x61\ +\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x58\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\ +\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\ +\x20\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\ +\x6e\x00\x65\x00\x20\x00\x63\x00\x68\x00\x61\x00\x72\x00\x61\x00\ +\x63\x00\x74\x00\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x63\x00\ +\x6f\x00\x64\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2c\x45\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\x6e\ +\x27\x74\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\x61\ +\x72\x61\x63\x74\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5a\x00\x45\ +\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x43\x00\x6f\ +\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x64\ +\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x65\ +\x00\x20\x00\x63\x00\x68\x00\x61\x00\x72\x00\x61\x00\x63\x00\x74\ +\x00\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\x64\ +\x00\x69\x00\x6e\x00\x67\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x2d\x45\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\x6c\x64\x6e\x27\ +\x74\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x63\x68\x61\x72\ +\x61\x63\x74\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x0a\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x34\x00\x45\ +\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x49\x00\x6e\ +\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x20\x00\x62\x00\x61\ +\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x45\x72\x72\x6f\ +\x72\x3a\x20\x49\x6e\x76\x61\x6c\x69\x64\x20\x62\x61\x73\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x0e\x00\x50\x00\x6f\x00\x64\x00\x6c\x00\x61\x00\ +\x68\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\ +\x6f\x72\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x10\x00\x47\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x69\x00\x6e\x00\ +\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x47\x72\x6f\x75\x70\ +\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0c\x00\x48\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x48\x65\x69\x67\x68\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x56\x00\x49\x00\ +\x46\x00\x43\x00\x20\x00\x53\x00\x63\x00\x68\x00\x65\x00\x6d\x00\ +\x61\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\x6f\x00\ +\x75\x00\x6e\x00\x64\x00\x2c\x00\x20\x00\x49\x00\x46\x00\x43\x00\ +\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\ +\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x64\x00\ +\x2e\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\x46\x43\ +\x20\x53\x63\x68\x65\x6d\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\ +\x64\x2c\x20\x49\x46\x43\x20\x69\x6d\x70\x6f\x72\x74\x20\x64\x69\ +\x73\x61\x62\x6c\x65\x64\x2e\x0a\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\xd2\x00\x49\x00\x66\x00\x20\x00\x54\x00\ +\x72\x00\x75\x00\x65\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\ +\x6c\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\ +\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\ +\x66\x00\x61\x00\x63\x00\x65\x00\x2c\x00\x20\x00\x69\x00\x74\x00\ +\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x75\x00\x73\x00\ +\x65\x00\x20\x00\x69\x00\x74\x00\x73\x00\x20\x00\x62\x00\x6f\x00\ +\x72\x00\x64\x00\x65\x00\x72\x00\x20\x00\x77\x00\x69\x00\x72\x00\ +\x65\x00\x20\x00\x61\x00\x73\x00\x20\x00\x74\x00\x72\x00\x61\x00\ +\x63\x00\x65\x00\x2c\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\ +\x64\x00\x69\x00\x73\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\ +\x64\x00\x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x66\x00\x61\x00\x63\x00\x65\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x69\x49\x66\x20\x54\x72\x75\x65\x2c\x20\x69\x66\x20\x74\ +\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\ +\x64\x20\x6f\x6e\x20\x61\x20\x66\x61\x63\x65\x2c\x20\x69\x74\x20\ +\x77\x69\x6c\x6c\x20\x75\x73\x65\x20\x69\x74\x73\x20\x62\x6f\x72\ +\x64\x65\x72\x20\x77\x69\x72\x65\x20\x61\x73\x20\x74\x72\x61\x63\ +\x65\x2c\x20\x61\x6e\x64\x20\x64\x69\x73\x63\x6f\x6e\x73\x69\x64\ +\x65\x72\x20\x74\x68\x65\x20\x66\x61\x63\x65\x2e\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x53\x00\x69\x00\ +\x65\x01\x65\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x74\x00\x76\x00\ +\x61\x00\x72\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\ +\x65\x73\x68\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x4e\x00\xe1\x00\ +\x7a\x00\x6f\x00\x76\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\ +\x61\x6d\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x24\x00\x4e\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\ +\x00\x74\x00\x65\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\ +\x4e\x6f\x20\x6f\x62\x6a\x65\x63\x74\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x3e\x00\x4e\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\ +\x63\x00\x75\x00\x74\x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x4e\x6f\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x20\x61\x72\x65\x20\x63\x75\x74\x20\x62\x79\x20\x74\ +\x68\x65\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x96\x00\x4e\x00\x6f\x00\x20\x00\x73\x00\ +\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x68\x00\x61\x00\x73\x00\ +\x20\x00\x62\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\ +\x6d\x00\x70\x00\x75\x00\x74\x00\x65\x00\x64\x00\x20\x00\x79\x00\ +\x65\x00\x74\x00\x2c\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x66\x00\ +\x72\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x72\x00\x65\x00\x6e\x00\ +\x64\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\ +\x6e\x00\x64\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\ +\x72\x00\x20\x00\x61\x00\x67\x00\x61\x00\x69\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4b\x4e\x6f\x20\x73\x68\x61\x70\x65\x20\ +\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x63\x6f\x6d\x70\x75\x74\x65\ +\x64\x20\x79\x65\x74\x2c\x20\x73\x65\x6c\x65\x63\x74\x20\x77\x69\ +\x72\x65\x66\x72\x61\x6d\x65\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\ +\x67\x20\x61\x6e\x64\x20\x72\x65\x6e\x64\x65\x72\x20\x61\x67\x61\ +\x69\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x0e\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x07\x4f\x62\x6a\x65\x63\x74\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\ +\x50\x00\x61\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x50\x61\x67\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x12\x00\x4f\x00\x64\x00\x73\x00\x74\x00\x72\x00\xe1\ +\x00\x6e\x00\x69\x01\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x52\x65\x6d\x6f\x76\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x08\x00\x52\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x54\x00\x65\x00\x72\ +\x00\xe9\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\ +\x74\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x32\x00\x53\x00\x6b\x00\x69\x00\x70\x00\x70\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x69\x00\x6e\x00\x76\x00\x61\x00\x6c\x00\x69\x00\ +\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x53\x6b\x69\ +\x70\x70\x69\x6e\x67\x20\x69\x6e\x76\x61\x6c\x69\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x3a\x20\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x1a\x00\x52\x00\x6f\x00\x7a\x00\x64\x00\x65\x00\ +\x6c\x00\x69\x01\x65\x00\x20\x00\x73\x00\x69\x00\x65\x01\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\ +\x65\x73\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x16\x00\x4b\x00\x6f\x00\x6e\x01\x61\x00\x74\x00\x72\x00\x75\ +\x00\x6b\x00\x63\x00\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x53\x00\x75\x00\x62\ +\x00\x74\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x75\x62\x74\ +\x72\x61\x63\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x78\x00\x54\x00\x68\x00\x65\x00\x20\x00\ +\x61\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\ +\x6e\x00\x20\x00\x69\x00\x74\x00\x73\x00\x20\x00\x62\x00\x61\x00\ +\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\x61\x00\x70\x00\ +\x70\x00\x6c\x00\x69\x00\x63\x00\x61\x00\x62\x00\x6c\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x3c\x54\x68\x65\x20\x61\x6c\x69\ +\x67\x6e\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\ +\x61\x6c\x6c\x20\x6f\x6e\x20\x69\x74\x73\x20\x62\x61\x73\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x2c\x20\x69\x66\x20\x61\x70\x70\x6c\x69\ +\x63\x61\x62\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x2c\x00\x54\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6e\ +\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x72\x00\x6f\x00\x6f\x00\x66\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x68\x65\x20\x61\x6e\ +\x67\x6c\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x72\x6f\x6f\x66\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\ +\x65\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x65\x00\x61\x00\ +\x63\x00\x68\x00\x20\x00\x61\x00\x78\x00\x69\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\ +\x73\x20\x6f\x66\x20\x65\x61\x63\x68\x20\x61\x78\x69\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4c\x00\x54\x00\ +\x68\x00\x65\x00\x20\x00\x64\x00\x69\x00\x73\x00\x70\x00\x6c\x00\ +\x61\x00\x79\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ +\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x26\x54\x68\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x73\ +\x69\x7a\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\ +\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x86\x00\x54\x00\x68\x00\x65\x00\x20\ +\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\ +\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x73\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x65\x00\x78\x00\x63\x00\x6c\x00\x75\ +\x00\x64\x00\x65\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\ +\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\x00\x74\x00\x72\ +\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x69\ +\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\ +\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x43\x54\x68\x65\x20\x65\x6c\x65\x6d\ +\x65\x6e\x74\x20\x6e\x75\x6d\x62\x65\x72\x73\x20\x74\x6f\x20\x65\ +\x78\x63\x6c\x75\x64\x65\x20\x77\x68\x65\x6e\x20\x74\x68\x69\x73\ +\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x69\x73\x20\x62\x61\ +\x73\x65\x64\x20\x6f\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x74\x00\x54\x00\x68\x00\x65\ +\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6e\x00\x75\ +\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\ +\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\ +\x00\x62\x00\x75\x00\x69\x00\x6c\x00\x64\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x72\x00\x6f\x00\x6f\x00\x66\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x3a\x54\x68\x65\x20\x66\x61\x63\x65\ +\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x74\x68\x65\x20\x62\ +\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x75\x73\x65\x64\x20\ +\x74\x6f\x20\x62\x75\x69\x6c\x64\x20\x74\x68\x69\x73\x20\x72\x6f\ +\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x30\x00\x54\x00\x68\x00\x65\x00\x20\x00\x68\x00\x65\x00\x69\x00\ +\x67\x00\x68\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x66\x00\x6c\x00\x6f\x00\x6f\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x54\x68\x65\x20\x68\ +\x65\x69\x67\x68\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x66\x6c\ +\x6f\x6f\x72\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\xb0\x00\x54\x00\x68\x00\x65\x00\x20\x00\x68\x00\x65\x00\x69\ +\x00\x67\x00\x68\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\ +\x00\x2e\x00\x20\x00\x4b\x00\x65\x00\x65\x00\x70\x00\x20\x00\x30\ +\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\ +\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x2e\x00\x20\ +\x00\x4e\x00\x6f\x00\x74\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\ +\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x73\ +\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\ +\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\ +\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x58\x54\x68\x65\x20\ +\x68\x65\x69\x67\x68\x74\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x77\ +\x61\x6c\x6c\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\x20\ +\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x2e\x20\x4e\x6f\x74\x20\x75\ +\x73\x65\x64\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\ +\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x73\ +\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x86\x00\x54\x00\x68\x00\x65\x00\x20\x00\x68\x00\x65\x00\ +\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\ +\x65\x00\x78\x00\x74\x00\x72\x00\x75\x00\x73\x00\x69\x00\x6f\x00\ +\x6e\x00\x20\x00\x64\x00\x65\x00\x70\x00\x74\x00\x68\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\ +\x20\x00\x4b\x00\x65\x00\x65\x00\x70\x00\x20\x00\x30\x00\x20\x00\ +\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\ +\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x43\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\x6f\x72\ +\x20\x65\x78\x74\x72\x75\x73\x69\x6f\x6e\x20\x64\x65\x70\x74\x68\ +\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\ +\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\x6f\x72\x20\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x34\x00\x54\x00\x68\x00\x65\x00\x20\x00\x69\x00\ +\x6e\x00\x74\x00\x65\x00\x72\x00\x76\x00\x61\x00\x6c\x00\x73\x00\ +\x20\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\ +\x20\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1a\x54\x68\x65\x20\x69\x6e\x74\x65\x72\x76\x61\x6c\x73\ +\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2c\x00\x54\x00\x68\ +\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x16\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\ +\x74\x68\x65\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x6a\x00\x54\x00\x68\x00\x65\x00\x20\x00\ +\x6c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x65\x00\ +\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2c\x00\x20\x00\ +\x69\x00\x66\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x62\x00\ +\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\ +\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x66\x00\x69\x00\x6c\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x54\x68\x65\x20\x6c\ +\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x6c\ +\x65\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\x6e\x6f\x74\x20\x62\x61\ +\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\x72\x6f\x66\x69\x6c\x65\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xa2\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\ +\x61\x00\x6c\x00\x20\x00\x65\x00\x78\x00\x74\x00\x72\x00\x75\x00\ +\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x72\x00\ +\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x28\x00\x6b\x00\ +\x65\x00\x65\x00\x70\x00\x20\x00\x28\x00\x30\x00\x2c\x00\x30\x00\ +\x2c\x00\x30\x00\x29\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\ +\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\ +\x63\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\ +\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x54\x68\x65\x20\x6e\ +\x6f\x72\x6d\x61\x6c\x20\x65\x78\x74\x72\x75\x73\x69\x6f\x6e\x20\ +\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x69\ +\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x6b\x65\x65\x70\x20\x28\ +\x30\x2c\x30\x2c\x30\x29\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\ +\x61\x74\x69\x63\x20\x6e\x6f\x72\x6d\x61\x6c\x29\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x54\x00\x68\x00\ +\x65\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x65\x00\x72\x00\x61\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x73\x00\x74\x00\x79\x00\ +\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\ +\x20\x6e\x75\x6d\x65\x72\x61\x74\x69\x6f\x6e\x20\x73\x74\x79\x6c\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xa6\ +\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x73\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\ +\x00\x20\x00\x6d\x00\x75\x00\x73\x00\x74\x00\x20\x00\x62\x00\x65\ +\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\ +\x00\x72\x00\x65\x00\x64\x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\ +\x00\x65\x00\x2e\x00\x20\x00\x45\x00\x6d\x00\x70\x00\x74\x00\x79\ +\x00\x20\x00\x6d\x00\x65\x00\x61\x00\x6e\x00\x73\x00\x20\x00\x61\ +\x00\x6c\x00\x6c\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\ +\x54\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x74\x68\x61\x74\ +\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\ +\x72\x65\x64\x20\x62\x79\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\ +\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x2e\x20\x45\x6d\x70\x74\x79\ +\x20\x6d\x65\x61\x6e\x73\x20\x61\x6c\x6c\x20\x64\x6f\x63\x75\x6d\ +\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x38\x00\x54\x00\x68\x00\x65\x00\x20\x00\x73\x00\x69\x00\x7a\ +\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x61\x00\x78\x00\x69\x00\x73\x00\x20\x00\x62\x00\x75\ +\x00\x62\x00\x62\x00\x6c\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1c\x54\x68\x65\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\ +\x74\x68\x65\x20\x61\x78\x69\x73\x20\x62\x75\x62\x62\x6c\x65\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x68\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\ +\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\x6e\x00\x6f\x00\ +\x74\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\ +\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x66\x00\x69\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x34\x54\x68\x65\x20\x77\x69\x64\x74\x68\x20\x6f\x66\x20\x74\x68\ +\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\x6e\ +\x6f\x74\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\x72\ +\x6f\x66\x69\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x80\x00\x54\x00\x68\x00\x65\x00\x20\x00\x77\x00\x69\ +\x00\x64\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\ +\x00\x2e\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x20\x00\x75\x00\x73\ +\x00\x65\x00\x64\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\ +\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\ +\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\ +\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x40\x54\x68\ +\x65\x20\x77\x69\x64\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x77\x61\x6c\x6c\x2e\x20\x4e\x6f\x74\x20\x75\x73\x65\x64\x20\x69\ +\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\ +\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x66\x61\x63\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x54\x00\ +\x68\x00\x69\x00\x63\x00\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\x68\x69\x63\x6b\x6e\x65\ +\x73\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x3a\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6d\x00\x65\x00\ +\x73\x00\x68\x00\x20\x00\x69\x00\x73\x00\x20\x00\x61\x00\x6e\x00\ +\x20\x00\x69\x00\x6e\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\ +\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1d\x54\x68\x69\x73\x20\x6d\x65\x73\x68\x20\x69\ +\x73\x20\x61\x6e\x20\x69\x6e\x76\x61\x6c\x69\x64\x20\x73\x6f\x6c\ +\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x06\x00\x54\x00\x79\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x54\x79\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x1e\x00\x54\x00\x79\x00\x70\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x54\x79\x70\x65\ +\x20\x63\x6f\x6e\x76\x65\x72\x73\x69\x6f\x6e\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x55\x00\x6e\x00\x61\ +\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\ +\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x61\x00\x20\ +\x00\x72\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x17\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\ +\x74\x65\x20\x61\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x34\x00\x55\x00\x6e\x00\x61\x00\x62\ +\x00\x6c\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1a\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\ +\x63\x72\x65\x61\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\ +\x55\x00\x6e\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x69\x00\ +\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x55\x6e\x67\ +\x72\x6f\x75\x70\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x0e\x00\x56\x00\x69\x00\x65\x00\x77\x00\x20\ +\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x56\x69\ +\x65\x77\x20\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x0a\x00\x53\x00\x74\x00\x65\x00\x6e\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x57\x00\x61\x00\ +\x6c\x00\x6c\x00\x20\x00\x6f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x57\x61\x6c\ +\x6c\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x12\x00\x57\x00\x61\x00\x6c\x00\x6c\ +\x00\x54\x00\x72\x00\x61\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x57\x61\x6c\x6c\x54\x72\x61\x63\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x57\x00\x69\ +\x00\x64\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x57\x69\x64\x74\x68\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x08\x00\x4f\x00\x6b\x00\x6e\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x57\x00\x69\x00\ +\x72\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x57\ +\x69\x72\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x10\x00\x5a\x00\x20\x00\x6f\x00\x66\x00\x66\x00\x73\x00\ +\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x5a\x20\x6f\ +\x66\x66\x73\x65\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x26\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\ +\x00\x20\x00\x65\x00\x64\x00\x69\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x13\x63\x6c\x6f\x73\x69\x6e\x67\x20\x53\x6b\x65\x74\ +\x63\x68\x20\x65\x64\x69\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x36\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\ +\x00\x69\x00\x6e\x00\x73\x00\x20\x00\x61\x00\x20\x00\x6e\x00\x6f\ +\x00\x6e\x00\x2d\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\ +\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1b\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x61\ +\x20\x6e\x6f\x6e\x2d\x63\x6c\x6f\x73\x65\x64\x20\x73\x6f\x6c\x69\ +\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5a\ +\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x73\ +\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x74\ +\x00\x68\x00\x61\x00\x74\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\ +\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x6e\x00\x79\x00\x20\ +\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2d\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x66\x61\x63\ +\x65\x73\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\ +\x70\x61\x72\x74\x20\x6f\x66\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\ +\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\ +\x00\x64\x00\x6f\x00\x65\x00\x73\x00\x6e\x00\x27\x00\x74\x00\x20\ +\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x20\ +\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\ +\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x64\x6f\x65\x73\ +\x6e\x27\x74\x20\x63\x6f\x6e\x74\x61\x69\x6e\x20\x61\x6e\x79\x20\ +\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x3a\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x25\ +\x00\x73\x00\x20\x00\x73\x00\x75\x00\x63\x00\x63\x00\x65\x00\x73\ +\x00\x73\x00\x66\x00\x75\x00\x6c\x00\x6c\x00\x79\x00\x20\x00\x63\ +\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x64\x00\x2e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1d\x66\x69\x6c\x65\x20\x25\x73\x20\ +\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x63\x72\x65\ +\x61\x74\x65\x64\x2e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x1a\x00\x69\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x74\ +\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0d\x69\x73\x20\x6e\x6f\x74\x20\x63\ +\x6c\x6f\x73\x65\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x18\x00\x69\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x74\ +\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x69\x73\x20\x6e\x6f\x74\x20\x76\x61\x6c\ +\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x52\x00\x70\x00\x79\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\ +\x64\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\ +\x6f\x00\x75\x00\x6e\x00\x64\x00\x2c\x00\x20\x00\x6e\x00\x6f\x00\ +\x20\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\ +\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x2e\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x70\x79\x63\ +\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\ +\x2c\x20\x6e\x6f\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\ +\x70\x6f\x72\x74\x2e\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x64\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x6b\x00\x65\x00\x74\x00\ +\x63\x00\x68\x00\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x76\x00\ +\x6f\x00\x69\x00\x64\x00\x20\x00\x63\x00\x72\x00\x6f\x00\x73\x00\ +\x73\x00\x2d\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\ +\x6e\x00\x63\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x32\x72\x65\x6d\x6f\x76\x69\x6e\x67\x20\x73\x6b\x65\x74\ +\x63\x68\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x74\x6f\x20\x61\x76\ +\x6f\x69\x64\x20\x63\x72\x6f\x73\x73\x2d\x72\x65\x66\x65\x72\x65\ +\x6e\x63\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x2a\x00\x73\x00\x75\x00\x63\x00\x63\x00\x65\x00\x73\ +\x00\x73\x00\x66\x00\x75\x00\x6c\x00\x6c\x00\x79\x00\x20\x00\x77\ +\x00\x72\x00\x69\x00\x74\x00\x74\x00\x65\x00\x6e\x00\x20\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x15\x73\x75\x63\x63\x65\x73\x73\x66\ +\x75\x6c\x6c\x79\x20\x77\x72\x69\x74\x74\x65\x6e\x20\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x74\x00\x68\ +\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ +\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\ +\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6e\ +\x00\x64\x00\x6f\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\ +\x74\x68\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\ +\x66\x20\x74\x68\x69\x73\x20\x77\x69\x6e\x64\x6f\x77\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x20\x00\x50\x00\x72\ +\x00\x69\x00\x64\x00\x61\x00\x6a\x00\x20\x00\x6b\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\x63\x6f\x6d\x70\x6f\x6e\ +\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\ +\x01\x03\x00\x00\x00\x5a\x00\x50\x00\x72\x00\x69\x00\x64\x00\x61\ +\x01\x65\x00\x20\x00\x76\x00\x79\x00\x62\x00\x72\x00\x61\x00\x74\ +\x00\xe9\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ +\x00\x65\x00\x6e\x00\x74\x00\x79\x00\x20\x00\x6b\x00\x20\x00\x61\ +\x00\x6b\x00\x74\x00\xed\x00\x76\x00\x6e\x00\x79\x00\x6d\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x6f\x00\x6d\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x41\x64\x64\x73\x20\x74\ +\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\ +\x6f\x6e\x65\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x61\x63\ +\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\ +\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x08\x00\x41\ +\x00\x78\x00\x69\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x41\x78\x69\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x41\x78\ +\x69\x73\x01\x03\x00\x00\x00\x2e\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x61\ +\x00\x78\x00\x69\x00\x73\x00\x20\x00\x73\x00\x79\x00\x73\x00\x74\ +\x00\x65\x00\x6d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x78\x69\x73\x20\ +\x73\x79\x73\x74\x65\x6d\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\ +\x5f\x41\x78\x69\x73\x01\x03\x00\x00\x00\x0c\x00\x42\x00\x75\x00\ +\x64\x00\x6f\x00\x76\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x0d\x41\x72\ +\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\ +\x64\x00\x56\x00\x79\x00\x74\x00\x76\x00\x6f\x00\x72\x00\xed\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\ +\x62\x00\x75\x00\x64\x00\x6f\x00\x76\x00\x79\x00\x2c\x00\x20\x00\ +\x76\x00\x72\x00\xe1\x00\x74\x00\x61\x00\x6e\x00\x65\x00\x20\x00\ +\x76\x00\x79\x00\x62\x00\x72\x00\x61\x00\x74\x00\xfd\x00\x63\x00\ +\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x6f\x00\x76\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x43\ +\x72\x65\x61\x74\x65\x73\x20\x61\x20\x62\x75\x69\x6c\x64\x69\x6e\ +\x67\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\ +\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x2e\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\ +\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x0a\x00\x42\x00\x75\ +\x00\x6e\x00\x6b\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x43\x65\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\ +\x6c\x6c\x01\x03\x00\x00\x00\x60\x00\x56\x00\x79\x00\x74\x00\x76\ +\x00\x6f\x00\x72\x00\xed\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x20\x00\x42\x00\x75\x00\x6e\x00\x6b\x00\x61\ +\x00\x20\x00\x76\x00\x72\x00\xe1\x00\x74\x00\x61\x00\x6e\x00\x65\ +\x00\x20\x00\x6f\x00\x7a\x00\x6e\x00\x61\x01\x0d\x00\x65\x00\x6e\ +\x00\xfd\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x6f\x00\x76\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x65\x6c\x6c\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\ +\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\ +\x01\x03\x00\x00\x00\x0a\x00\x43\x00\x68\x00\x65\x00\x63\x00\x6b\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x43\x68\x65\x63\x6b\x07\ +\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\x01\x03\ +\x00\x00\x00\x50\x00\x43\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x73\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\ +\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x66\x00\x6f\ +\x00\x72\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x62\x00\x6c\x00\x65\ +\x00\x6d\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x43\x68\ +\x65\x63\x6b\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x6f\x72\x20\x70\x72\ +\x6f\x62\x6c\x65\x6d\x73\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\ +\x43\x68\x65\x63\x6b\x01\x03\x00\x00\x00\x16\x00\x43\x00\x6c\x00\ +\x6f\x00\x73\x00\x65\x00\x20\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x6c\x6f\x73\x65\ +\x20\x68\x6f\x6c\x65\x73\x07\x00\x00\x00\x0f\x41\x72\x63\x68\x5f\ +\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\x01\x03\x00\x00\x00\x60\ +\x00\x43\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x73\x00\x20\x00\x68\ +\x00\x6f\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x20\ +\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x68\x00\x61\ +\x00\x70\x00\x65\x00\x73\x00\x2c\x00\x20\x00\x74\x00\x75\x00\x72\ +\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x6d\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x6c\x6f\x73\x65\x73\ +\x20\x68\x6f\x6c\x65\x73\x20\x69\x6e\x20\x6f\x70\x65\x6e\x20\x73\ +\x68\x61\x70\x65\x73\x2c\x20\x74\x75\x72\x6e\x69\x6e\x67\x20\x74\ +\x68\x65\x6d\x20\x73\x6f\x6c\x69\x64\x73\x07\x00\x00\x00\x0f\x41\ +\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\x65\x73\x01\x03\ +\x00\x00\x00\x64\x00\x56\x00\x79\x00\x74\x00\x76\x00\x6f\x00\x72\ +\x00\xed\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\ +\x00\x20\x00\x50\x00\x6f\x00\x64\x00\x6c\x00\x61\x00\x68\x00\x79\ +\x00\x2c\x00\x20\x00\x76\x00\x72\x00\xe1\x00\x74\x00\x61\x00\x6e\ +\x00\x65\x00\x20\x00\x76\x00\x79\x00\x62\x00\x72\x00\x61\x00\x6e\ +\x00\xfd\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x6f\x00\x76\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x66\x6c\x6f\x6f\ +\x72\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\ +\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\ +\x6f\x72\x01\x03\x00\x00\x00\x0e\x00\x50\x00\x6f\x00\x64\x00\x6c\ +\x00\x61\x00\x68\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\ +\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x1a\x00\x53\x00\x69\x00\x65\ +\x01\x65\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x74\x00\x76\x00\x61\ +\x00\x72\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\ +\x73\x68\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x10\ +\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\ +\x01\x03\x00\x00\x00\x5a\x00\x54\x00\x75\x00\x72\x00\x6e\x00\x73\ +\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\ +\x00\x64\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\ +\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x50\x00\x61\ +\x00\x72\x00\x74\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x54\x75\x72\x6e\x73\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\ +\x69\x6e\x74\x6f\x20\x50\x61\x72\x74\x20\x53\x68\x61\x70\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\ +\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\ +\x00\x1c\x00\x4f\x00\x64\x00\x73\x00\x74\x00\x72\x00\xe1\x00\x6e\ +\x00\x69\x01\x65\x00\x20\x01\x0d\x00\x61\x00\x73\x01\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\x6d\x6f\x76\x65\x20\x63\ +\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\ +\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\xb4\x00\x4f\ +\x00\x64\x00\x73\x00\x74\x00\x72\x00\xe1\x00\x6e\x00\x69\x01\x65\ +\x00\x20\x00\x76\x00\x79\x00\x62\x00\x72\x00\x61\x00\x6e\x00\xe9\ +\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ +\x00\x6e\x00\x74\x00\x79\x00\x20\x00\x6f\x00\x64\x00\x20\x00\x73\ +\x00\x76\x00\x6f\x00\x6a\x00\x69\x00\x63\x00\x68\x00\x20\x00\x6e\ +\x00\x61\x00\x64\x00\x72\x00\x61\x00\x64\x00\x65\x00\x6e\x00\xfd\ +\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x6f\x00\x76\x00\x2c\x00\x20\x00\x61\x00\x6c\x00\x65\ +\x00\x62\x00\x6f\x00\x20\x00\x76\x00\x79\x00\x74\x00\x76\x00\x6f\ +\x00\x72\x00\x69\x01\x65\x00\x20\x00\x64\x00\x69\x00\x65\x00\x72\ +\x00\x75\x00\x20\x00\x76\x00\x20\x01\x0d\x00\x61\x00\x73\x00\x74\ +\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x65\x6d\x6f\ +\x76\x65\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\ +\x74\x68\x65\x69\x72\x20\x70\x61\x72\x65\x6e\x74\x73\x2c\x20\x6f\ +\x72\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x68\x6f\x6c\x65\x20\ +\x69\x6e\x20\x61\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ +\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\ +\x00\x00\x00\x2e\x00\x4f\x00\x64\x00\x73\x00\x74\x00\x72\x00\xe1\ +\x00\x6e\x00\x69\x01\x65\x00\x20\x00\x74\x00\x76\x00\x61\x00\x72\ +\x00\x20\x00\x7a\x00\x20\x00\x6f\x00\x62\x00\x6c\x00\xfa\x00\x6b\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x52\x65\x6d\x6f\ +\x76\x65\x20\x53\x68\x61\x70\x65\x20\x66\x72\x6f\x6d\x20\x41\x72\ +\x63\x68\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\ +\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x5e\x00\x4f\x00\ +\x64\x00\x73\x00\x74\x00\x72\x00\xe1\x00\x6e\x00\x69\x00\x20\x00\ +\x6b\x00\x6f\x00\x63\x00\x6b\x00\x6f\x00\x76\x00\xe9\x00\x20\x00\ +\x74\x00\x76\x00\x61\x00\x72\x00\x79\x00\x20\x00\x7a\x00\x20\x00\ +\x6f\x00\x62\x00\x6c\x00\xfa\x00\x6b\x00\x6f\x00\x76\x00\x79\x00\ +\x63\x00\x68\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\ +\x6e\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x76\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x29\x52\x65\x6d\x6f\x76\x65\x73\x20\x63\x75\x62\ +\x69\x63\x20\x73\x68\x61\x70\x65\x73\x20\x66\x72\x6f\x6d\x20\x41\ +\x72\x63\x68\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\ +\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\ +\x61\x70\x65\x01\x03\x00\x00\x00\x72\x00\x43\x00\x72\x00\x65\x00\ +\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x72\x00\ +\x6f\x00\x6f\x00\x66\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x66\x00\x61\x00\x63\x00\ +\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x6e\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x39\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x72\ +\x6f\x6f\x66\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\ +\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x66\x61\x63\ +\x65\x20\x6f\x66\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x09\x41\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\x00\x00\ +\x00\x08\x00\x52\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\x09\x41\x72\x63\ +\x68\x5f\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x7c\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\ +\x00\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\ +\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\x00\x69\x00\x6e\ +\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\ +\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x3e\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x65\x63\x74\ +\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x2c\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x74\x68\x65\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x07\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\ +\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x16\x00\x52\x00\x6f\ +\x00\x76\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x72\x00\x65\x00\x7a\ +\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\x63\x74\ +\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x41\x72\ +\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\ +\x03\x00\x00\x00\x30\x00\x4f\x00\x7a\x00\x6e\x00\x61\x01\x0d\x00\ +\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\ +\x69\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x73\x00\x69\x00\ +\x65\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\ +\x65\x6c\x65\x63\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\ +\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\x00\x19\x41\x72\ +\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\ +\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x8c\x00\x56\x00\ +\x79\x00\x62\x00\x65\x00\x72\x00\x69\x00\x65\x00\x20\x00\x76\x01\ +\x61\x00\x65\x00\x74\x00\x6b\x00\x79\x00\x20\x00\x6e\x00\x6f\x00\ +\x6e\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\x66\x00\x6f\x00\ +\x6c\x00\x64\x00\x20\x00\x73\x00\x69\x00\x65\x00\x74\x00\x65\x00\ +\x20\x00\x7a\x00\x20\x00\x64\x00\x6f\x00\x6b\x00\x75\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x75\x00\x20\x00\x61\x00\x6c\x00\x65\x00\ +\x62\x00\x6f\x00\x20\x00\x7a\x00\x20\x00\x76\x00\x79\x00\x62\x00\ +\x72\x00\x61\x00\x6e\x00\x65\x00\x6a\x00\x20\x00\x73\x00\x6b\x00\ +\x75\x00\x70\x00\x69\x00\x6e\x00\x79\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x4d\x53\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6e\ +\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\ +\x65\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x64\x6f\x63\x75\ +\x6d\x65\x6e\x74\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x67\x72\x6f\x75\x70\x73\ +\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\ +\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\ +\x00\x00\x00\x60\x00\x56\x00\x79\x00\x74\x00\x76\x00\x6f\x00\x72\ +\x00\xed\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\ +\x00\x20\x00\x54\x00\x65\x00\x72\x00\xe9\x00\x6e\x00\x20\x00\x76\ +\x00\x72\x00\xe1\x00\x74\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\ +\x00\x7a\x00\x6e\x00\x61\x01\x0d\x00\x65\x00\x6e\x00\xfd\x00\x63\ +\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\ +\x00\x6f\x00\x76\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x20\x73\x69\x74\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\ +\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\ +\x00\x00\x0a\x00\x54\x00\x65\x00\x72\x00\xe9\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\x00\x00\x00\x09\ +\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\x1a\x00\ +\x52\x00\x6f\x00\x7a\x00\x64\x00\x65\x00\x6c\x00\x69\x01\x65\x00\ +\x20\x00\x73\x00\x69\x00\x65\x01\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\ +\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\ +\x01\x03\x00\x00\x00\x5c\x00\x52\x00\x6f\x00\x7a\x00\x64\x00\x65\ +\x00\x6c\x00\xed\x00\x20\x00\x6f\x00\x7a\x00\x6e\x00\x61\x01\x0d\ +\x00\x65\x00\x6e\x00\xe9\x00\x20\x00\x73\x00\x69\x00\x65\x00\x74\ +\x00\x65\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x6e\x00\x65\x00\x7a\ +\x00\xe1\x00\x76\x00\x69\x00\x73\x00\x6c\x00\xe9\x00\x20\x00\x6b\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ +\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x53\x70\x6c\x69\ +\x74\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\ +\x65\x73\x20\x69\x6e\x74\x6f\x20\x69\x6e\x64\x65\x70\x65\x6e\x64\ +\x65\x6e\x74\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\ +\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\ +\x68\x01\x03\x00\x00\x00\xc4\x00\x56\x00\x79\x00\x74\x00\x76\x00\ +\x6f\x00\x72\x00\xed\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x20\x00\x4b\x00\x6f\x00\x6e\x01\x61\x00\x74\x00\ +\x72\x00\x75\x00\x6b\x00\x63\x00\x69\x00\x65\x00\x2c\x00\x20\x00\ +\x6f\x00\x64\x00\x20\x00\x6e\x00\x75\x00\x6c\x00\x79\x00\x20\x00\ +\x61\x00\x6c\x00\x65\x00\x62\x00\x6f\x00\x20\x00\x7a\x00\x20\x00\ +\x76\x00\x79\x00\x62\x00\x72\x00\x61\x00\x74\x00\xe9\x00\x68\x00\ +\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x75\x00\x20\x00\x28\x00\x6e\x00\xe1\x01\x0d\x00\x72\x00\x74\x00\ +\x2c\x00\x20\x00\x64\x00\x72\x00\xf4\x00\x74\x00\x6f\x00\x76\x00\ +\xfd\x00\x2c\x00\x20\x00\x70\x00\x6c\x00\x6f\x00\x63\x00\x68\x00\ +\x61\x00\x20\x00\x61\x00\x6c\x00\x65\x00\x62\x00\x6f\x00\x20\x00\ +\x70\x00\x65\x00\x76\x00\x6e\x00\xfd\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x5f\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\ +\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\ +\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x28\x73\x6b\x65\x74\x63\x68\x2c\x20\ +\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\ +\x6c\x69\x64\x29\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\ +\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\x16\x00\x4b\x00\ +\x6f\x00\x6e\x01\x61\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x63\x00\ +\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\ +\x75\x63\x74\x75\x72\x65\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\ +\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\xac\x00\ +\x56\x00\x79\x00\x74\x00\x76\x00\x6f\x00\x72\x00\xed\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x73\x00\ +\x74\x00\x65\x00\x6e\x00\x79\x00\x2c\x00\x20\x00\x6f\x00\x64\x00\ +\x20\x00\x6e\x00\x75\x00\x6c\x00\x79\x00\x20\x00\x61\x00\x6c\x00\ +\x65\x00\x62\x00\x6f\x00\x20\x00\x7a\x00\x20\x00\x76\x00\x79\x00\ +\x62\x00\x72\x00\x61\x00\x74\x00\xe9\x00\x68\x00\x6f\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x20\x00\ +\x28\x00\x64\x00\x72\x00\xf4\x00\x74\x00\x6f\x00\x76\x00\x2c\x00\ +\x20\x00\x70\x00\x6c\x00\x6f\x00\x63\x00\x68\x00\x79\x00\x20\x00\ +\x61\x00\x6c\x00\x65\x00\x62\x00\x6f\x00\x20\x00\x70\x00\x65\x00\ +\x76\x00\x6e\x00\xe9\x00\x68\x00\x6f\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x52\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\ +\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\ +\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\ +\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\ +\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x09\x41\x72\x63\x68\ +\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\x0a\x00\x53\x00\x74\x00\ +\x65\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\ +\x61\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\ +\x6c\x01\x03\x00\x00\x00\x94\x00\x43\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x77\x00\x69\x00\ +\x6e\x00\x64\x00\x6f\x00\x77\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ +\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x28\x00\x77\x00\x69\x00\x72\x00\x65\x00\ +\x2c\x00\x20\x00\x72\x00\x65\x00\x63\x00\x74\x00\x61\x00\x6e\x00\ +\x67\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x73\x00\ +\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x4a\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\ +\x69\x6e\x64\x6f\x77\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\ +\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x72\x65\x63\x74\x61\ +\x6e\x67\x6c\x65\x20\x6f\x72\x20\x73\x6b\x65\x74\x63\x68\x29\x07\ +\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\ +\x03\x00\x00\x00\x08\x00\x4f\x00\x6b\x00\x6e\x00\x6f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\ +\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ +\x00\x00\x18\x00\x32\x00\x44\x00\x20\x00\x72\x00\x65\x00\x6e\x00\ +\x64\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0c\x32\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\ +\x67\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x50\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x73\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\ +\x00\x70\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x65\ +\x00\x61\x00\x63\x00\x68\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\ +\x00\x74\x00\x79\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x28\x43\x72\x65\x61\x74\x65\x73\x20\x67\x72\x6f\x75\x70\x73\ +\x20\x66\x6f\x72\x20\x65\x61\x63\x68\x20\x41\x72\x63\x68\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x3c\x00\x43\x00\x75\x00\x74\x00\x20\x00\x61\x00\x72\x00\x65\x00\ +\x61\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x63\x00\x6b\x00\x6e\x00\x65\x00\x73\x00\ +\x73\x00\x20\x00\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1e\x43\x75\x74\x20\x61\x72\x65\x61\x73\ +\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\x73\x20\ +\x72\x61\x74\x69\x6f\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x40\x00\x50\x00\x72\ +\x00\x65\x00\x64\x00\x76\x00\x6f\x00\x6c\x00\x65\x00\x6e\x00\xe1\ +\x00\x20\x00\x66\x00\x61\x00\x72\x00\x62\x00\x61\x00\x20\x00\x70\ +\x00\x72\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x6e\x01\x61\x00\x74\ +\x00\x72\x00\x75\x00\x6b\x00\x63\x00\x69\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1c\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\ +\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x74\x72\x75\x63\x74\x75\x72\ +\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x2c\x00\x50\x00\x72\x00\x65\x00\ +\x64\x00\x76\x00\x6f\x00\x6c\x00\x65\x00\x6e\x00\xe1\x00\x20\x00\ +\x66\x00\x61\x00\x72\x00\x62\x00\x61\x00\x20\x00\x73\x00\x74\x00\ +\x69\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x44\ +\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ +\x20\x77\x61\x6c\x6c\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x44\x00\ +\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\ +\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x20\x00\x77\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x19\x44\x65\x66\x61\x75\x6c\x74\ +\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\x69\x6e\x64\x6f\ +\x77\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x36\x00\x56\x01\x61\x00\x65\x00\ +\x6f\x00\x62\x00\x65\x00\x63\x00\x6e\x00\xe9\x00\x20\x00\x6e\x00\ +\x61\x00\x73\x00\x74\x00\x61\x00\x76\x00\x65\x00\x6e\x00\x69\x00\ +\x61\x00\x20\x00\x6f\x00\x62\x00\x6c\x00\xfa\x00\x6b\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\ +\x20\x41\x72\x63\x68\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x26\x00\x5a\x00\xe1\x00\x6b\x00\x6c\x00\x61\x00\ +\x64\x00\x6e\x00\xe9\x00\x20\x00\x6e\x00\x61\x00\x73\x00\x74\x00\ +\x61\x00\x76\x00\x65\x00\x6e\x00\x69\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\ +\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x47\x00\x72\ +\x00\x6f\x00\x75\x00\x70\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x62\ +\x00\x79\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x19\x47\x72\x6f\x75\x70\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x62\x79\x20\x74\x79\x70\x65\ +\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x14\x00\x49\x00\x46\x00\x43\x00\x20\ +\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0a\x49\x46\x43\x20\x69\x6d\x70\x6f\x72\x74\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\xba\x00\x49\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\ +\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x49\x00\x46\x00\x43\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\ +\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\ +\x72\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\ +\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ +\x61\x00\x6c\x00\x6c\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x74\x00\x6f\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x72\x00\x65\x00\x20\x00\ +\x49\x00\x46\x00\x43\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x49\x66\x20\x74\x68\ +\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\ +\x68\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\ +\x69\x6d\x70\x6f\x72\x74\x65\x72\x20\x77\x69\x6c\x6c\x20\x62\x65\ +\x20\x75\x73\x65\x64\x2c\x20\x61\x6c\x6c\x6f\x77\x69\x6e\x67\x20\ +\x74\x6f\x20\x69\x6d\x70\x6f\x72\x74\x20\x6d\x6f\x72\x65\x20\x49\ +\x46\x43\x20\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x56\x00\ +\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x66\x00\ +\x75\x00\x72\x00\x6e\x00\x69\x00\x74\x00\x75\x00\x72\x00\x65\x00\ +\x20\x00\x28\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x6d\x00\x61\x00\ +\x6b\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6d\x00\ +\x6f\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x68\x00\x65\x00\x61\x00\ +\x76\x00\x79\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\ +\x6d\x70\x6f\x72\x74\x20\x66\x75\x72\x6e\x69\x74\x75\x72\x65\x20\ +\x28\x63\x61\x6e\x20\x6d\x61\x6b\x65\x20\x74\x68\x65\x20\x6d\x6f\ +\x64\x65\x6c\x20\x68\x65\x61\x76\x79\x29\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x54\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x64\x00\x65\x00\ +\x62\x00\x75\x00\x67\x00\x20\x00\x69\x00\x6e\x00\x66\x00\x6f\x00\ +\x72\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ +\x64\x00\x75\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x32\x00\ +\x44\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\ +\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x53\ +\x68\x6f\x77\x20\x64\x65\x62\x75\x67\x20\x69\x6e\x66\x6f\x72\x6d\ +\x61\x74\x69\x6f\x6e\x20\x64\x75\x72\x69\x6e\x67\x20\x32\x44\x20\ +\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\x00\x00\x00\x1c\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x38\ +\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x72\x00\x65\x00\x6e\ +\x00\x64\x00\x65\x00\x72\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\ +\x00\x62\x00\x75\x00\x67\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x73\ +\x00\x61\x00\x67\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1c\x53\x68\x6f\x77\x20\x72\x65\x6e\x64\x65\x72\x65\x72\x20\ +\x64\x65\x62\x75\x67\x20\x6d\x65\x73\x73\x61\x67\x65\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x9e\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\x00\ +\x66\x00\x69\x00\x65\x00\x73\x00\x20\x00\x68\x00\x6f\x00\x77\x00\ +\x20\x00\x6d\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x74\x00\x69\x00\ +\x6d\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x76\x00\x69\x00\x65\x00\x77\x00\x65\x00\x64\x00\x20\x00\x6c\x00\ +\x69\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x68\x00\x69\x00\x63\x00\ +\x6b\x00\x6e\x00\x65\x00\x73\x00\x73\x00\x20\x00\x6d\x00\x75\x00\ +\x73\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x61\x00\x70\x00\ +\x70\x00\x6c\x00\x69\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x63\x00\x75\x00\x74\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x53\x70\x65\ +\x63\x69\x66\x69\x65\x73\x20\x68\x6f\x77\x20\x6d\x61\x6e\x79\x20\ +\x74\x69\x6d\x65\x73\x20\x74\x68\x65\x20\x76\x69\x65\x77\x65\x64\ +\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\x73\x20\ +\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x70\x70\x6c\x69\x65\x64\x20\ +\x74\x6f\x20\x63\x75\x74\x20\x6c\x69\x6e\x65\x73\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x68\x00\x54\x00\x6f\x00\x74\x00\x6f\x00\x20\x00\x6a\x00\ +\x65\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\x00\x76\x00\x6f\x00\ +\x6c\x00\x65\x00\x6e\x00\xe1\x00\x20\x00\x66\x00\x61\x00\x72\x00\ +\x62\x00\x61\x00\x20\x00\x70\x00\x72\x00\x65\x00\x20\x00\x6e\x00\ +\x6f\x00\x76\x00\xfd\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x20\x00\x4b\x00\x6f\x00\x6e\x01\x61\x00\x74\x00\ +\x72\x00\x75\x00\x6b\x00\x63\x00\x69\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x33\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\ +\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\ +\x6f\x72\x20\x6e\x65\x77\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5c\x00\ +\x54\x00\x6f\x00\x74\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\x20\x00\ +\x70\x00\x72\x00\x65\x00\x64\x00\x76\x00\x6f\x00\x6c\x00\x65\x00\ +\x6e\x00\xe1\x00\x20\x00\x66\x00\x61\x00\x72\x00\x62\x00\x61\x00\ +\x20\x00\x70\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x76\x00\ +\xfd\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x20\x00\x53\x00\x74\x00\x65\x00\x6e\x00\x79\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\ +\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\ +\x6f\x72\x20\x6e\x65\x77\x20\x57\x61\x6c\x6c\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3a\x00\x55\x00\x73\x00\x65\ +\x00\x20\x00\x49\x00\x46\x00\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\ +\x00\x53\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x66\ +\x00\x20\x00\x61\x00\x76\x00\x61\x00\x69\x00\x6c\x00\x61\x00\x62\ +\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\ +\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x20\x69\ +\x66\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x07\x00\x00\x00\x1c\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x1a\x00\x26\x00\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\x74\ +\x00\x65\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x26\x41\x72\x63\x68\x69\x74\x65\x63\x74\ +\x75\x72\x65\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\ +\x00\x0c\x00\x26\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x26\x44\x72\x61\x66\x74\x07\x00\ +\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x41\x00\ +\x72\x00\x63\x00\x68\x00\x20\x00\x6e\x00\xe1\x00\x73\x00\x74\x00\ +\x72\x00\x6f\x00\x6a\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x41\x72\x63\x68\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\ +\x61\x72\x63\x68\x01\x03\x00\x00\x00\x22\x00\x43\x00\x61\x00\x6c\ +\x00\x63\x00\x75\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x00\x20\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x11\x43\x61\x6c\x63\x75\x6c\x61\x74\x69\x6f\ +\x6e\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\ +\x01\x03\x00\x00\x00\x1a\x00\x43\x00\x6f\x00\x6e\x00\x74\x00\x65\ +\x00\x78\x00\x74\x00\x20\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x74\x65\x78\ +\x74\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\ +\x01\x03\x00\x00\x00\x20\x00\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\ +\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x54\x00\x6f\ +\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x43\x6f\x6e\x76\x65\x72\x73\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\ +\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x1e\x00\ +\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\ +\x64\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\ +\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ +\x03\x00\x00\x00\x1e\x00\x4e\x00\xe1\x00\x73\x00\x74\x00\x72\x00\ +\x6f\x00\x6a\x00\x65\x00\x20\x00\x4e\x00\xe1\x00\x76\x00\x72\x00\ +\x68\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x72\x61\ +\x66\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\ +\x68\x01\x03\x00\x00\x00\x6e\x00\x70\x00\x79\x00\x63\x00\x6f\x00\ +\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\ +\x74\x00\x20\x00\x66\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x2c\x00\ +\x20\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\ +\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\ +\x20\x00\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\ +\x64\x00\x2e\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x70\ +\x79\x63\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\ +\x6e\x64\x2c\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\ +\x6f\x72\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x69\x73\x61\ +\x62\x6c\x65\x64\x2e\x0a\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ +\ +\x00\x00\x4f\x67\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x04\xf8\x00\x00\x47\xa4\x00\x00\x00\x47\x00\x04\x8e\xc3\ +\x00\x00\x01\x85\x00\x04\x8f\x03\x00\x00\x02\x5a\x00\x04\x8f\x03\ +\x00\x00\x27\x74\x00\x04\x9c\x2c\x00\x00\x29\x24\x00\x04\xbb\x04\ +\x00\x00\x08\x40\x00\x05\x48\x35\x00\x00\x0d\xab\x00\x05\x67\xd5\ +\x00\x00\x0f\xe9\x00\x05\x96\x56\x00\x00\x10\x3d\x00\x05\x96\x56\ +\x00\x00\x31\x4e\x00\x05\xa0\xa5\x00\x00\x10\x64\x00\x05\xa0\xa5\ +\x00\x00\x35\x3d\x00\x05\xc0\x65\x00\x00\x1e\x5f\x00\x05\xd8\x2c\ +\x00\x00\x20\x0c\x00\x05\xd8\x2c\x00\x00\x39\x5d\x00\x32\x23\xa5\ +\x00\x00\x46\xb2\x00\x39\xdf\x33\x00\x00\x3e\x9b\x00\x48\x4e\x25\ +\x00\x00\x01\x5b\x00\x49\xeb\x9b\x00\x00\x2a\x18\x00\x4b\x55\x33\ +\x00\x00\x3f\xe3\x00\x4d\x36\x62\x00\x00\x0a\xd7\x00\x4d\x36\x62\ +\x00\x00\x2c\xda\x00\x5d\xfb\xa8\x00\x00\x20\xaa\x00\x5e\x08\xc3\ +\x00\x00\x20\xff\x00\x61\xb0\x33\x00\x00\x17\xc5\x00\x62\x9b\xa8\ +\x00\x00\x10\xf7\x00\x62\x9b\xa8\x00\x00\x35\x71\x00\x8a\x92\x57\ +\x00\x00\x00\x00\x00\xaa\x80\x25\x00\x00\x07\x95\x00\xc9\x7b\xf3\ +\x00\x00\x13\xbc\x00\xfb\x72\xf3\x00\x00\x3e\x21\x01\x19\x4e\x85\ +\x00\x00\x06\x0f\x01\x55\x2b\xf5\x00\x00\x05\x76\x01\x79\x17\x94\ +\x00\x00\x24\x0e\x01\x8e\x84\xa6\x00\x00\x12\x76\x01\xad\x7d\xe3\ +\x00\x00\x48\x7b\x01\xaf\x41\x84\x00\x00\x22\xf0\x01\xf7\xa8\x83\ +\x00\x00\x45\x45\x02\x01\x7f\xd3\x00\x00\x11\x6a\x02\x29\xb3\xc4\ +\x00\x00\x30\x7f\x02\x5a\x4a\x53\x00\x00\x16\xe3\x02\x5f\xc9\x59\ +\x00\x00\x38\x33\x02\x66\x7f\x7e\x00\x00\x0e\xc1\x02\x6a\x77\x99\ +\x00\x00\x41\x2b\x02\x80\x5f\x17\x00\x00\x24\xdf\x02\x82\x88\x3a\ +\x00\x00\x04\x8c\x02\x85\x4f\xf5\x00\x00\x1a\x4b\x02\x90\x40\x65\ +\x00\x00\x0d\x6b\x02\x90\x40\x65\x00\x00\x2d\x08\x02\x94\x16\x35\ +\x00\x00\x11\xa9\x02\xab\x87\xd4\x00\x00\x46\xf2\x02\xb8\xae\x74\ +\x00\x00\x2e\x00\x02\xc3\x91\x93\x00\x00\x42\xa0\x02\xcd\x05\xa3\ +\x00\x00\x2d\x54\x02\xdd\x14\x14\x00\x00\x2e\x56\x03\x13\x15\x3e\ +\x00\x00\x0c\x17\x03\x1b\xda\x15\x00\x00\x20\x76\x03\x1d\xe8\xe3\ +\x00\x00\x3c\x78\x03\x29\x7a\x34\x00\x00\x00\xd9\x03\x2c\xe9\xb3\ +\x00\x00\x18\x2a\x03\x92\x51\xe0\x00\x00\x10\x93\x03\xa2\xec\x23\ +\x00\x00\x20\x31\x03\xbe\xb0\x34\x00\x00\x1f\x34\x03\xce\x98\xe5\ +\x00\x00\x04\x16\x03\xd4\x22\x74\x00\x00\x26\x70\x04\x35\xfa\x55\ +\x00\x00\x13\x31\x04\xc3\x75\x44\x00\x00\x1a\xa6\x04\xdb\x21\x3e\ +\x00\x00\x34\x6a\x04\xeb\xfd\xf4\x00\x00\x0b\x34\x05\x14\x5b\x83\ +\x00\x00\x07\xc8\x05\x18\xda\xa3\x00\x00\x2c\x12\x05\x5f\x3d\x83\ +\x00\x00\x3d\x99\x05\x8c\x46\xc5\x00\x00\x10\x12\x05\x90\xba\xe3\ +\x00\x00\x0f\xbb\x05\xc0\x56\xe3\x00\x00\x43\x25\x05\xc7\xeb\xc7\ +\x00\x00\x41\xf1\x05\xe0\x4b\x67\x00\x00\x20\xd2\x05\xe0\x4b\x67\ +\x00\x00\x3a\x97\x05\xef\x78\x4a\x00\x00\x24\x4b\x06\x1f\x6f\xa4\ +\x00\x00\x22\x4a\x06\x32\xe3\xe3\x00\x00\x48\xf5\x06\x5b\x01\x15\ +\x00\x00\x03\xe3\x06\x69\xd0\x04\x00\x00\x21\xdc\x06\x9f\x6f\xd4\ +\x00\x00\x07\x2f\x06\xd6\x3f\xa4\x00\x00\x23\xca\x06\xe6\x2f\x43\ +\x00\x00\x12\xd3\x07\x00\xcc\xc4\x00\x00\x3f\x8a\x07\x07\x84\xba\ +\x00\x00\x49\x47\x07\x08\x43\x0e\x00\x00\x27\x9c\x07\x16\x58\x05\ +\x00\x00\x3b\x20\x07\x25\x74\x53\x00\x00\x2a\xf3\x07\x28\xff\x15\ +\x00\x00\x0e\x41\x07\x36\x51\x26\x00\x00\x14\x9e\x07\x5c\xdc\x04\ +\x00\x00\x21\x2d\x07\x60\x23\xf3\x00\x00\x03\x44\x07\xca\xf8\x87\ +\x00\x00\x3a\xcb\x08\x25\x81\xc4\x00\x00\x06\xd6\x08\x4a\x45\xd9\ +\x00\x00\x39\x87\x08\x65\x4c\x95\x00\x00\x1c\xde\x08\xc5\xe3\x35\ +\x00\x00\x1c\x29\x08\xca\xc9\x74\x00\x00\x15\xc2\x08\xfb\xb8\xa4\ +\x00\x00\x0a\x6c\x09\x69\xac\xa7\x00\x00\x1f\xa5\x09\x6c\x6c\xa7\ +\x00\x00\x0a\xff\x09\x9f\xcc\xde\x00\x00\x23\x54\x09\xba\xe6\x35\ +\x00\x00\x11\x34\x09\xba\xe6\x35\x00\x00\x37\xf3\x09\xc5\xbe\xca\ +\x00\x00\x09\xb0\x09\xe3\x98\xe4\x00\x00\x26\xbe\x09\xed\x98\x55\ +\x00\x00\x32\x6e\x0a\x3e\x06\x83\x00\x00\x05\x06\x0a\x3f\x1f\xd6\ +\x00\x00\x05\x3c\x0a\x3f\x2b\x25\x00\x00\x05\xd5\x0a\x3f\x5d\xac\ +\x00\x00\x06\x58\x0a\x7f\xee\xa3\x00\x00\x47\x23\x0a\xb6\xc8\x9a\ +\x00\x00\x0b\x5f\x0a\xbf\x46\x0e\x00\x00\x1e\x84\x0a\xd6\x07\x84\ +\x00\x00\x21\x7c\x0b\x0a\xc3\xf3\x00\x00\x00\x6f\x0b\x51\x30\xa8\ +\x00\x00\x2f\x7a\x0b\x65\xda\xb3\x00\x00\x3d\x0f\x0b\x8d\x97\x93\ +\x00\x00\x44\x5d\x0b\x9c\x5b\xe7\x00\x00\x08\xf7\x0b\xb9\xe8\x93\ +\x00\x00\x2f\xe1\x0b\xc4\xb1\x23\x00\x00\x29\x50\x0c\x02\xac\xd7\ +\x00\x00\x03\x0b\x0c\x02\xac\xd7\x00\x00\x28\x01\x0c\x25\x3e\x53\ +\x00\x00\x33\x47\x0c\x3c\x8b\x33\x00\x00\x47\x6e\x0c\x41\x0a\x83\ +\x00\x00\x47\xc6\x0c\x4e\x9b\x23\x00\x00\x32\xc1\x0c\x98\x80\x23\ +\x00\x00\x48\x1e\x0c\xc4\xd0\x80\x00\x00\x25\xa4\x0c\xdf\x5a\x1e\ +\x00\x00\x01\xaa\x0c\xfc\x97\x06\x00\x00\x1f\xdc\x0d\x03\x26\xb4\ +\x00\x00\x02\xc0\x0d\x08\x90\xf3\x00\x00\x1b\xb8\x0d\x1e\xda\xa4\ +\x00\x00\x03\x7d\x0d\x3b\x3b\x49\x00\x00\x36\x87\x0d\xa8\x3a\x35\ +\x00\x00\x18\x87\x0d\xc1\x7d\x47\x00\x00\x25\xfc\x0d\xfa\x53\xe5\ +\x00\x00\x08\x69\x0e\x69\x87\x13\x00\x00\x31\x7a\x0e\x8c\xd7\x43\ +\x00\x00\x35\xb8\x0e\x98\x0a\xd6\x00\x00\x1e\xd0\x0e\xab\x8d\x1f\ +\x00\x00\x3b\xc9\x0e\xb9\x1b\xf2\x00\x00\x15\x65\x0e\xec\x0b\x9e\ +\x00\x00\x28\x43\x0f\x16\x4a\x24\x00\x00\x1d\xe7\x0f\x17\xc7\xa3\ +\x00\x00\x2a\x4c\x0f\x55\xc1\x57\x00\x00\x06\x90\x0f\x78\x41\x05\ +\x00\x00\x46\x1e\x0f\x79\xe3\xf3\x00\x00\x2b\x42\x0f\x95\xd5\x09\ +\x00\x00\x19\x3f\x0f\xa2\x16\x43\x00\x00\x1d\xb7\x0f\xc0\xb8\xb4\ +\x00\x00\x0d\xd4\x0f\xd0\x39\x44\x00\x00\x02\x7d\x0f\xe5\x74\x74\ +\x00\x00\x00\xa3\x0f\xf3\xe8\x33\x00\x00\x3f\x00\x69\x00\x00\x4a\ +\x55\x03\x00\x00\x00\x1e\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x72\x00\x20\x00\x65\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\ +\x00\x69\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x20\x43\ +\x72\x65\x61\x74\x65\x20\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x41\x00\ +\xf1\x00\x61\x00\x64\x00\x69\x00\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x03\x41\x64\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x12\x00\x41\x00\x67\x00\x72\x00\x65\x00\x67\x00\ +\x61\x00\x64\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x09\x41\x64\x64\x69\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x41\x00\x6c\x00\x69\x00\ +\x6e\x00\x65\x00\x61\x00\x63\x00\x69\x00\xf3\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x41\x6c\x69\x67\x6e\x6d\x65\x6e\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4e\x00\ +\xa1\x00\x54\x00\x6f\x00\x64\x00\x6f\x00\x20\x00\x62\x00\x69\x00\ +\x65\x00\x6e\x00\x21\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x73\x00\ +\x65\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\ +\x72\x00\x61\x00\x72\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\x72\x00\ +\x6f\x00\x62\x00\x6c\x00\x65\x00\x6d\x00\x61\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1b\x41\x6c\x6c\x20\x67\x6f\x6f\x64\x21\ +\x20\x6e\x6f\x20\x70\x72\x6f\x62\x6c\x65\x6d\x73\x20\x66\x6f\x75\ +\x6e\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x0c\x00\xc1\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x6f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x05\x41\x6e\x67\x6c\x65\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x08\x00\x45\x00\x6a\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\x65\ +\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x70\ +\x00\x4c\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x69\x00\x73\x00\x74\ +\x00\x65\x00\x6d\x00\x61\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x65\x00\x6a\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x65\x00\x73\x00\x74\x00\x61\x00\x20\x00\x65\x00\x73\x00\x74\ +\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x61\x00\x20\ +\x00\x65\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x20\x00\x62\x00\x61\ +\x00\x73\x00\x61\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x65\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x41\x78\x65\x73\x20\x73\ +\x79\x73\x74\x65\x6d\x73\x20\x74\x68\x69\x73\x20\x73\x74\x72\x75\ +\x63\x74\x75\x72\x65\x20\x69\x73\x20\x62\x75\x69\x6c\x74\x20\x6f\ +\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x06\ +\x00\x45\x00\x6a\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x41\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x1c\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\ +\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x32\x00\x44\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x42\x61\x73\x65\x20\x32\x44\ +\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x24\x00\x43\x00\x6f\x00\x6d\x00\x70\x00\x6f\ +\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0e\x42\x61\x73\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\ +\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x18\x00\x43\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\ +\x63\x00\x63\x00\x69\x00\xf3\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x43\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\x6d\x70\x6f\x6e\ +\x65\x6e\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x34\x00\x43\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\ +\x65\x00\x6e\x00\x74\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x65\x00\x73\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x19\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\ +\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x43\x00\x6f\x00\x6e\x00\ +\x74\x00\x69\x00\x6e\x00\x75\x00\x61\x00\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x43\x6f\x6e\x74\x69\x6e\x75\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x43\x00\x6f\ +\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x75\x00\x74\x00\x65\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\ +\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1f\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x63\x6f\x6d\ +\x70\x75\x74\x65\x20\x74\x68\x65\x20\x77\x61\x6c\x6c\x20\x73\x68\ +\x61\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x44\x00\x4e\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x20\x00\x70\ +\x00\x75\x00\x64\x00\x6f\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\ +\x00\x6c\x00\x69\x00\x7a\x00\x61\x00\x72\x00\x20\x00\x49\x00\x66\ +\x00\x63\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\ +\x00\x6c\x00\x6c\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\ +\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x6c\x6f\x63\x61\x74\x65\x20\ +\x49\x66\x63\x4f\x70\x65\x6e\x53\x68\x65\x6c\x6c\x0a\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x72\x00\x20\x00\x65\x00\x6a\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x41\ +\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x16\x00\x43\x00\x72\x00\x65\x00\x61\x00\x72\x00\x20\x00\x74\ +\x00\x65\x00\x63\x00\x68\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x52\x6f\x6f\x66\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x72\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x70\ +\x00\x6c\x00\x61\x00\x6e\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x73\x00\x65\x00\x63\x00\x63\x00\x69\x00\xf3\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x14\x43\x72\x65\x61\x74\x65\x20\x53\ +\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x43\x00\x72\x00\ +\x65\x00\x61\x00\x72\x00\x20\x00\x73\x00\x69\x00\x74\x00\x69\x00\ +\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\ +\x65\x20\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\x00\x72\x00\ +\x20\x00\x65\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\ +\x75\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\ +\x72\x65\x61\x74\x65\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x43\ +\x00\x72\x00\x65\x00\x61\x00\x72\x00\x20\x00\x6d\x00\x75\x00\x72\ +\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\ +\x74\x65\x20\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\x00\x72\ +\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x76\x00\x65\x00\x6e\x00\x74\ +\x00\x61\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ +\x43\x72\x65\x61\x74\x65\x20\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2c\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x72\x00\x20\x00\x6e\x00\x75\x00\x65\x00\x76\ +\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ +\x00\x65\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x14\x43\x72\x65\x61\x74\x65\x20\x6e\x65\x77\x20\x63\x6f\x6d\ +\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x36\x00\x43\x00\x72\x00\x65\x00\x61\x00\x72\x00\ +\x2f\x00\x61\x00\x63\x00\x74\x00\x75\x00\x61\x00\x6c\x00\x69\x00\ +\x7a\x00\x61\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\ +\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x17\x43\x72\x65\x61\x74\x65\x2f\x75\x70\x64\x61\ +\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x44\x00\x69\x00\ +\x73\x00\x74\x00\x61\x00\x6e\x00\x63\x00\x69\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x44\ +\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x63\x00\x69\x00\x61\ +\x00\x73\x00\x20\x00\x79\x00\x20\x00\xe1\x00\x6e\x00\x67\x00\x75\ +\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x72\ +\x00\x65\x00\x20\x00\x65\x00\x6a\x00\x65\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x21\x44\x69\x73\x74\x61\x6e\x63\x65\x73\x20\ +\x61\x6e\x64\x20\x61\x6e\x67\x6c\x65\x73\x20\x62\x65\x74\x77\x65\ +\x65\x6e\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x0c\x00\x45\x00\x64\x00\x69\x00\x74\x00\x61\ +\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4e\x00\ +\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x20\x00\x72\x00\x65\x00\ +\x6d\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\ +\x70\x00\x6c\x00\x69\x00\x74\x00\x74\x00\x65\x00\x72\x00\x20\x00\ +\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x77\x00\x61\x00\x6c\x00\ +\x6c\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x27\x45\x72\x72\x6f\x72\x20\x72\x65\x6d\ +\x6f\x76\x69\x6e\x67\x20\x73\x70\x6c\x69\x74\x74\x65\x72\x20\x66\ +\x72\x6f\x6d\x20\x77\x61\x6c\x6c\x20\x73\x68\x61\x70\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x74\x00\x45\x00\ +\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x4e\x00\x6f\x00\ +\x20\x00\x73\x00\x65\x00\x20\x00\x70\x00\x75\x00\x64\x00\x6f\x00\ +\x20\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\ +\x6e\x00\x61\x00\x72\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x63\x00\ +\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x63\x00\ +\x69\x00\xf3\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\ +\x61\x00\x72\x00\x61\x00\x63\x00\x74\x00\x65\x00\x72\x00\x65\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x45\x72\x72\x6f\x72\ +\x3a\x20\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x64\x65\x74\x65\x72\ +\x6d\x69\x6e\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\x65\ +\x6e\x63\x6f\x64\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x76\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\ +\x00\x3a\x00\x20\x00\x4e\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x20\ +\x00\x70\x00\x75\x00\x64\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x74\ +\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x72\x00\x20\ +\x00\x6c\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x64\x00\x69\x00\x66\ +\x00\x69\x00\x63\x00\x61\x00\x63\x00\x69\x00\xf3\x00\x6e\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x63\x00\x61\x00\x72\x00\x61\x00\x63\ +\x00\x74\x00\x65\x00\x72\x00\x65\x00\x73\x00\x0a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x2d\x45\x72\x72\x6f\x72\x3a\x20\x43\x6f\x75\ +\x6c\x64\x6e\x27\x74\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\ +\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\x65\x6e\x63\x6f\x64\x69\ +\x6e\x67\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x38\x00\x45\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x3a\x00\x20\ +\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x62\ +\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x76\ +\x00\xe1\x00\x6c\x00\x69\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1a\x45\x72\x72\x6f\x72\x3a\x20\x49\x6e\x76\x61\x6c\ +\x69\x64\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x53\x00\ +\x75\x00\x65\x00\x6c\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x14\x00\x41\x00\x67\x00\x72\x00\x75\x00\x70\x00\ +\x61\x00\x63\x00\x69\x00\xf3\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x47\x72\x6f\x75\x70\x69\x6e\x67\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x41\x00\x6c\x00\x74\ +\x00\x75\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x48\x65\x69\x67\x68\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x74\x00\x45\x00\x73\x00\x71\x00\x75\x00\x65\x00\ +\x6d\x00\x61\x00\x20\x00\x64\x00\x65\x00\x20\x00\x49\x00\x46\x00\ +\x43\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x65\x00\x6e\x00\x63\x00\ +\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x64\x00\x6f\x00\x2c\x00\ +\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\ +\x72\x00\x20\x00\x61\x00\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\ +\x64\x00\x65\x00\x73\x00\x61\x00\x62\x00\x69\x00\x6c\x00\x69\x00\ +\x74\x00\x61\x00\x64\x00\x6f\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2b\x49\x46\x43\x20\x53\x63\x68\x65\x6d\x61\x20\x6e\x6f\ +\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x49\x46\x43\x20\x69\x6d\x70\ +\x6f\x72\x74\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x2e\x0a\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xd2\x00\x49\x00\ +\x66\x00\x20\x00\x54\x00\x72\x00\x75\x00\x65\x00\x2c\x00\x20\x00\ +\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\ +\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x2c\x00\ +\x20\x00\x69\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\ +\x20\x00\x75\x00\x73\x00\x65\x00\x20\x00\x69\x00\x74\x00\x73\x00\ +\x20\x00\x62\x00\x6f\x00\x72\x00\x64\x00\x65\x00\x72\x00\x20\x00\ +\x77\x00\x69\x00\x72\x00\x65\x00\x20\x00\x61\x00\x73\x00\x20\x00\ +\x74\x00\x72\x00\x61\x00\x63\x00\x65\x00\x2c\x00\x20\x00\x61\x00\ +\x6e\x00\x64\x00\x20\x00\x64\x00\x69\x00\x73\x00\x63\x00\x6f\x00\ +\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x2e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x69\x49\x66\x20\x54\x72\x75\x65\ +\x2c\x20\x69\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\ +\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x66\x61\x63\ +\x65\x2c\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x75\x73\x65\x20\x69\ +\x74\x73\x20\x62\x6f\x72\x64\x65\x72\x20\x77\x69\x72\x65\x20\x61\ +\x73\x20\x74\x72\x61\x63\x65\x2c\x20\x61\x6e\x64\x20\x64\x69\x73\ +\x63\x6f\x6e\x73\x69\x64\x65\x72\x20\x74\x68\x65\x20\x66\x61\x63\ +\x65\x2e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x1a\x00\x4d\x00\x61\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x61\x00\ +\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x74\x6f\x20\x53\x68\x61\ +\x70\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x0c\x00\x4e\x00\x6f\x00\x6d\x00\x62\x00\x72\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x4e\x61\x6d\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x42\x00\x4e\x00\x6f\x00\x20\ +\x00\x68\x00\x61\x00\x79\x00\x20\x00\x6e\x00\x69\x00\x6e\x00\x67\ +\x00\xfa\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\ +\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\ +\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x12\x4e\x6f\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x48\x00\x4e\x00\x6f\x00\x20\x00\x68\x00\ +\x61\x00\x79\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x6f\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x72\x00\x74\x00\x61\x00\ +\x64\x00\x6f\x00\x73\x00\x20\x00\x70\x00\x6f\x00\x72\x00\x20\x00\ +\x65\x00\x6c\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x6f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x4e\x6f\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x20\x61\x72\x65\x20\x63\x75\x74\x20\x62\x79\x20\x74\ +\x68\x65\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x96\x00\x4e\x00\x6f\x00\x20\x00\x73\x00\ +\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x68\x00\x61\x00\x73\x00\ +\x20\x00\x62\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\ +\x6d\x00\x70\x00\x75\x00\x74\x00\x65\x00\x64\x00\x20\x00\x79\x00\ +\x65\x00\x74\x00\x2c\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x66\x00\ +\x72\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x72\x00\x65\x00\x6e\x00\ +\x64\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\ +\x6e\x00\x64\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\ +\x72\x00\x20\x00\x61\x00\x67\x00\x61\x00\x69\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4b\x4e\x6f\x20\x73\x68\x61\x70\x65\x20\ +\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x63\x6f\x6d\x70\x75\x74\x65\ +\x64\x20\x79\x65\x74\x2c\x20\x73\x65\x6c\x65\x63\x74\x20\x77\x69\ +\x72\x65\x66\x72\x61\x6d\x65\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\ +\x67\x20\x61\x6e\x64\x20\x72\x65\x6e\x64\x65\x72\x20\x61\x67\x61\ +\x69\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x0e\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x07\x4f\x62\x6a\x65\x63\x74\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0c\x00\ +\x50\x00\xe1\x00\x67\x00\x69\x00\x6e\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x04\x50\x61\x67\x65\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x51\x00\x75\x00\x69\x00\x74\ +\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x65\ +\x6d\x6f\x76\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x0a\x00\x54\x00\x65\x00\x63\x00\x68\x00\x6f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x53\x00\x69\x00\x74\ +\x00\x75\x00\x61\x00\x63\x00\x69\x00\xf3\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x53\x00\x61\x00\x6c\x00\ +\x74\x00\x61\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x74\x00\x6f\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x76\x00\xe1\x00\ +\x6c\x00\x69\x00\x64\x00\x6f\x00\x3a\x00\x20\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x19\x53\x6b\x69\x70\x70\x69\x6e\x67\x20\x69\x6e\ +\x76\x61\x6c\x69\x64\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x44\x00\ +\x69\x00\x76\x00\x69\x00\x64\x00\x69\x00\x72\x00\x20\x00\x6d\x00\ +\x61\x00\x6c\x00\x6c\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x45\x00\x73\x00\x74\ +\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\x75\x63\x74\x75\x72\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1a\ +\x00\x53\x00\x75\x00\x73\x00\x74\x00\x72\x00\x61\x00\x63\x00\x63\ +\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x53\x75\x62\x74\x72\x61\x63\x74\x69\x6f\x6e\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x78\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x69\x00\x67\x00\ +\x6e\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x66\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\ +\x6c\x00\x6c\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x69\x00\x74\x00\ +\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\x00\x69\x00\ +\x66\x00\x20\x00\x61\x00\x70\x00\x70\x00\x6c\x00\x69\x00\x63\x00\ +\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x3c\x54\x68\x65\x20\x61\x6c\x69\x67\x6e\x6d\x65\x6e\x74\x20\x6f\ +\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x6f\x6e\x20\x69\ +\x74\x73\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\ +\x69\x66\x20\x61\x70\x70\x6c\x69\x63\x61\x62\x6c\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x45\x00\x6c\ +\x00\x20\x00\xe1\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x6f\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x65\x00\x73\x00\x74\x00\x65\x00\x20\ +\x00\x74\x00\x65\x00\x63\x00\x68\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x16\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x4c\x00\x6f\x00\x73\x00\ +\x20\x00\xe1\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x6f\x00\x73\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x61\x00\x64\x00\x61\x00\ +\x20\x00\x65\x00\x6a\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x17\x54\x68\x65\x20\x61\x6e\x67\x6c\x65\x73\x20\x6f\x66\x20\x65\ +\x61\x63\x68\x20\x61\x78\x69\x73\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x4c\x00\x54\x00\x68\x00\x65\x00\x20\x00\ +\x64\x00\x69\x00\x73\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x20\x00\ +\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x73\x00\x65\x00\x63\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\ +\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x26\x54\x68\x65\ +\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x73\x69\x7a\x65\x20\x6f\x66\ +\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\ +\x61\x6e\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x86\x00\x54\x00\x68\x00\x65\x00\x20\x00\x65\x00\x6c\x00\x65\ +\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6e\x00\x75\x00\x6d\ +\x00\x62\x00\x65\x00\x72\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\ +\x00\x65\x00\x78\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x65\x00\x20\ +\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x69\ +\x00\x73\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\ +\x00\x75\x00\x72\x00\x65\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\ +\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\ +\x00\x61\x00\x78\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x43\x54\x68\x65\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\x6e\x75\ +\x6d\x62\x65\x72\x73\x20\x74\x6f\x20\x65\x78\x63\x6c\x75\x64\x65\ +\x20\x77\x68\x65\x6e\x20\x74\x68\x69\x73\x20\x73\x74\x72\x75\x63\ +\x74\x75\x72\x65\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\ +\x20\x61\x78\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x74\x00\x54\x00\x68\x00\x65\x00\x20\x00\x66\x00\x61\ +\x00\x63\x00\x65\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\ +\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x75\x00\x73\x00\x65\ +\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x75\x00\x69\ +\x00\x6c\x00\x64\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x72\x00\x6f\x00\x6f\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x3a\x54\x68\x65\x20\x66\x61\x63\x65\x20\x6e\x75\x6d\x62\x65\ +\x72\x20\x6f\x66\x20\x74\x68\x65\x20\x62\x61\x73\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x62\x75\x69\ +\x6c\x64\x20\x74\x68\x69\x73\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2c\x00\x4c\x00\x61\x00\ +\x20\x00\x61\x00\x6c\x00\x74\x00\x75\x00\x72\x00\x61\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x65\x00\x73\x00\x74\x00\x65\x00\x20\x00\ +\x70\x00\x69\x00\x73\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x18\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\x6f\x66\x20\x74\ +\x68\x69\x73\x20\x66\x6c\x6f\x6f\x72\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\xb0\x00\x54\x00\x68\x00\x65\x00\x20\ +\x00\x68\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x6f\ +\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\ +\x00\x61\x00\x6c\x00\x6c\x00\x2e\x00\x20\x00\x4b\x00\x65\x00\x65\ +\x00\x70\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ +\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\ +\x00\x63\x00\x2e\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x20\x00\x75\ +\x00\x73\x00\x65\x00\x64\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\ +\x00\x20\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\ +\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x73\ +\x00\x6f\x00\x6c\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x58\x54\x68\x65\x20\x68\x65\x69\x67\x68\x74\x20\x6f\x66\x20\ +\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x2e\x20\x4b\x65\x65\x70\x20\ +\x30\x20\x66\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x2e\ +\x20\x4e\x6f\x74\x20\x75\x73\x65\x64\x20\x69\x66\x20\x74\x68\x69\ +\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\x61\x73\x65\x64\x20\ +\x6f\x6e\x20\x61\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\x86\x00\x54\x00\x68\x00\x65\x00\ +\x20\x00\x68\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\ +\x6f\x00\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\x72\x00\x75\x00\ +\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x70\x00\ +\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x2e\x00\x20\x00\x4b\x00\x65\x00\x65\x00\x70\x00\ +\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\ +\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x43\x54\x68\x65\x20\x68\x65\x69\ +\x67\x68\x74\x20\x6f\x72\x20\x65\x78\x74\x72\x75\x73\x69\x6f\x6e\ +\x20\x64\x65\x70\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\ +\x6c\x65\x6d\x65\x6e\x74\x2e\x20\x4b\x65\x65\x70\x20\x30\x20\x66\ +\x6f\x72\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x4c\x00\x6f\x00\ +\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x76\x00\ +\x61\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x74\x00\ +\x72\x00\x65\x00\x20\x00\x65\x00\x6a\x00\x65\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1a\x54\x68\x65\x20\x69\x6e\x74\x65\x72\ +\x76\x61\x6c\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x61\x78\x65\ +\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\ +\x00\x4c\x00\x61\x00\x20\x00\x6c\x00\x6f\x00\x6e\x00\x67\x00\x69\ +\x00\x74\x00\x75\x00\x64\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\ +\x00\x6f\x00\x73\x00\x20\x00\x65\x00\x6a\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x16\x54\x68\x65\x20\x6c\x65\x6e\x67\ +\x74\x68\x20\x6f\x66\x20\x74\x68\x65\x20\x61\x78\x65\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x6a\x00\x54\x00\ +\x68\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\ +\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\x6e\x00\x6f\x00\ +\x74\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\ +\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x66\x00\x69\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x35\x54\x68\x65\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x74\ +\x68\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\ +\x6e\x6f\x74\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\ +\x72\x6f\x66\x69\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\xa2\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6e\x00\ +\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x20\x00\x65\x00\x78\x00\ +\x74\x00\x72\x00\x75\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ +\x64\x00\x69\x00\x72\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x28\x00\x6b\x00\x65\x00\x65\x00\x70\x00\x20\x00\x28\x00\ +\x30\x00\x2c\x00\x30\x00\x2c\x00\x30\x00\x29\x00\x20\x00\x66\x00\ +\x6f\x00\x72\x00\x20\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\ +\x61\x00\x74\x00\x69\x00\x63\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\ +\x6d\x00\x61\x00\x6c\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x51\x54\x68\x65\x20\x6e\x6f\x72\x6d\x61\x6c\x20\x65\x78\x74\x72\ +\x75\x73\x69\x6f\x6e\x20\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x20\ +\x6f\x66\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\ +\x6b\x65\x65\x70\x20\x28\x30\x2c\x30\x2c\x30\x29\x20\x66\x6f\x72\ +\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x20\x6e\x6f\x72\x6d\x61\ +\x6c\x29\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x2e\x00\x45\x00\x6c\x00\x20\x00\x65\x00\x73\x00\x74\x00\x69\x00\ +\x6c\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6e\x00\x75\x00\ +\x6d\x00\x65\x00\x72\x00\x61\x00\x63\x00\x69\x00\xf3\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\x20\x6e\x75\x6d\ +\x65\x72\x61\x74\x69\x6f\x6e\x20\x73\x74\x79\x6c\x65\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\xa6\x00\x54\x00\x68\ +\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x73\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x6d\ +\x00\x75\x00\x73\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\x65\ +\x00\x64\x00\x20\x00\x62\x00\x79\x00\x20\x00\x74\x00\x68\x00\x69\ +\x00\x73\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x2e\ +\x00\x20\x00\x45\x00\x6d\x00\x70\x00\x74\x00\x79\x00\x20\x00\x6d\ +\x00\x65\x00\x61\x00\x6e\x00\x73\x00\x20\x00\x61\x00\x6c\x00\x6c\ +\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\x54\x68\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x74\x68\x61\x74\x20\x6d\x75\x73\ +\x74\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\ +\x62\x79\x20\x74\x68\x69\x73\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\ +\x70\x6c\x61\x6e\x65\x2e\x20\x45\x6d\x70\x74\x79\x20\x6d\x65\x61\ +\x6e\x73\x20\x61\x6c\x6c\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\ +\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3c\x00\x45\ +\x00\x6c\x00\x20\x00\x74\x00\x61\x00\x6d\x00\x61\x00\xf1\x00\x6f\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\ +\x00\x67\x00\x6c\x00\x6f\x00\x62\x00\x6f\x00\x73\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x65\x00\x6a\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1c\x54\x68\x65\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\ +\x74\x68\x65\x20\x61\x78\x69\x73\x20\x62\x75\x62\x62\x6c\x65\x73\ +\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x68\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\ +\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x2c\x00\x20\x00\x69\x00\x66\x00\x20\x00\x6e\x00\x6f\x00\ +\x74\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\x00\x20\x00\ +\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x66\x00\x69\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x34\x54\x68\x65\x20\x77\x69\x64\x74\x68\x20\x6f\x66\x20\x74\x68\ +\x69\x73\x20\x65\x6c\x65\x6d\x65\x6e\x74\x2c\x20\x69\x66\x20\x6e\ +\x6f\x74\x20\x62\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x70\x72\ +\x6f\x66\x69\x6c\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x80\x00\x54\x00\x68\x00\x65\x00\x20\x00\x77\x00\x69\ +\x00\x64\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\ +\x00\x2e\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x20\x00\x75\x00\x73\ +\x00\x65\x00\x64\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\ +\x00\x69\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x64\ +\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\ +\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x40\x54\x68\ +\x65\x20\x77\x69\x64\x74\x68\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x77\x61\x6c\x6c\x2e\x20\x4e\x6f\x74\x20\x75\x73\x65\x64\x20\x69\ +\x66\x20\x74\x68\x69\x73\x20\x77\x61\x6c\x6c\x20\x69\x73\x20\x62\ +\x61\x73\x65\x64\x20\x6f\x6e\x20\x61\x20\x66\x61\x63\x65\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x45\x00\ +\x73\x00\x70\x00\x65\x00\x73\x00\x6f\x00\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x09\x54\x68\x69\x63\x6b\x6e\x65\x73\x73\x07\x00\ +\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x42\x00\x45\x00\ +\x73\x00\x74\x00\x61\x00\x20\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\ +\x61\x00\x20\x00\x65\x00\x73\x00\x20\x00\x75\x00\x6e\x00\x20\x00\ +\x73\x00\xf3\x00\x6c\x00\x69\x00\x64\x00\x6f\x00\x20\x00\x6e\x00\ +\x6f\x00\x20\x00\x76\x00\xe1\x00\x6c\x00\x69\x00\x64\x00\x6f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x54\x68\x69\x73\x20\x6d\x65\ +\x73\x68\x20\x69\x73\x20\x61\x6e\x20\x69\x6e\x76\x61\x6c\x69\x64\ +\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x08\x00\x54\x00\x69\x00\x70\x00\x6f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x54\x79\x70\x65\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x24\x00\x54\x00\x69\x00\x70\ +\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\ +\x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\x00\xf3\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0f\x54\x79\x70\x65\x20\x63\x6f\x6e\ +\x76\x65\x72\x73\x69\x6f\x6e\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x34\x00\x4e\x00\x6f\x00\x20\x00\x73\x00\x65\ +\x00\x20\x00\x70\x00\x75\x00\x65\x00\x64\x00\x65\x00\x20\x00\x63\ +\x00\x72\x00\x65\x00\x61\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x20\ +\x00\x74\x00\x65\x00\x63\x00\x68\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x17\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\ +\x65\x61\x74\x65\x20\x61\x20\x72\x6f\x6f\x66\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\x4e\x00\x6f\x00\x20\ +\x00\x73\x00\x65\x00\x20\x00\x70\x00\x75\x00\x65\x00\x64\x00\x65\ +\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x72\x00\x20\x00\x65\ +\x00\x6c\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ +\x00\x65\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1a\x55\x6e\x61\x62\x6c\x65\x20\x74\x6f\x20\x63\x72\x65\x61\ +\x74\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\ +\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x44\x00\x65\x00\ +\x73\x00\x61\x00\x67\x00\x72\x00\x75\x00\x70\x00\x61\x00\x72\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x55\x6e\x67\x72\x6f\x75\x70\ +\x69\x6e\x67\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x10\x00\x56\x00\x69\x00\x73\x00\x74\x00\x61\x00\x20\x00\x64\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x56\x69\x65\x77\ +\x20\x6f\x66\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x08\x00\x4d\x00\x75\x00\x72\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x04\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x20\x00\x4f\x00\x70\x00\x63\x00\x69\x00\ +\x6f\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x6d\x00\x75\x00\x72\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0c\x57\x61\x6c\x6c\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\ +\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x12\x00\x57\x00\x61\ +\x00\x6c\x00\x6c\x00\x54\x00\x72\x00\x61\x00\x63\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x57\x61\x6c\x6c\x54\x72\x61\x63\ +\x65\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x0a\ +\x00\x41\x00\x6e\x00\x63\x00\x68\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x57\x69\x64\x74\x68\x07\x00\x00\x00\x04\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x56\x00\x65\x00\x6e\x00\x74\ +\x00\x61\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x10\x00\x41\x00\x6c\x00\x61\x00\x6d\x00\x62\x00\ +\x72\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x57\ +\x69\x72\x65\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x2e\x00\x44\x00\x65\x00\x73\x00\x70\x00\x6c\x00\x61\x00\ +\x7a\x00\x61\x00\x6d\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\ +\x20\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x6a\x00\x65\x00\x20\x00\ +\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x5a\x20\x6f\x66\x66\ +\x73\x65\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x34\x00\x63\x00\x65\x00\x72\x00\x72\x00\x61\x00\x6e\x00\x64\ +\x00\x6f\x00\x20\x00\x65\x00\x64\x00\x69\x00\x63\x00\x69\x00\xf3\ +\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\x44\x00\x69\x00\x62\ +\x00\x75\x00\x6a\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\ +\x63\x6c\x6f\x73\x69\x6e\x67\x20\x53\x6b\x65\x74\x63\x68\x20\x65\ +\x64\x69\x74\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x3a\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x65\x00\x6e\ +\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x73\x00\xf3\x00\x6c\ +\x00\x69\x00\x64\x00\x6f\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x63\ +\x00\x65\x00\x72\x00\x72\x00\x61\x00\x64\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1b\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x61\ +\x20\x6e\x6f\x6e\x2d\x63\x6c\x6f\x73\x65\x64\x20\x73\x6f\x6c\x69\ +\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x60\ +\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x65\x00\x6e\x00\x65\ +\x00\x20\x00\x63\x00\x61\x00\x72\x00\x61\x00\x73\x00\x20\x00\x71\ +\x00\x75\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x73\x00\x6f\ +\x00\x6e\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\x65\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\xfa\ +\x00\x6e\x00\x20\x00\x73\x00\xf3\x00\x6c\x00\x69\x00\x64\x00\x6f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x63\x6f\x6e\x74\x61\x69\ +\x6e\x73\x20\x66\x61\x63\x65\x73\x20\x74\x68\x61\x74\x20\x61\x72\ +\x65\x20\x6e\x6f\x74\x20\x70\x61\x72\x74\x20\x6f\x66\x20\x61\x6e\ +\x79\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x32\x00\x6e\x00\x6f\x00\x20\x00\x63\x00\x6f\ +\x00\x6e\x00\x74\x00\x69\x00\x65\x00\x6e\x00\x65\x00\x20\x00\x6e\ +\x00\x69\x00\x6e\x00\x67\x00\xfa\x00\x6e\x00\x20\x00\x73\x00\xf3\ +\x00\x6c\x00\x69\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x19\x64\x6f\x65\x73\x6e\x27\x74\x20\x63\x6f\x6e\x74\x61\x69\ +\x6e\x20\x61\x6e\x79\x20\x73\x6f\x6c\x69\x64\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x40\x00\x61\x00\x72\x00\x63\ +\x00\x68\x00\x69\x00\x76\x00\x6f\x00\x20\x00\x25\x00\x73\x00\x20\ +\x00\x63\x00\x72\x00\x65\x00\x61\x00\x64\x00\x6f\x00\x20\x00\x63\ +\x00\x6f\x00\x72\x00\x72\x00\x65\x00\x63\x00\x74\x00\x61\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x2e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1d\x66\x69\x6c\x65\x20\x25\x73\x20\x73\x75\x63\x63\ +\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x63\x72\x65\x61\x74\x65\x64\ +\x2e\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1e\ +\x00\x6e\x00\x6f\x00\x20\x00\x65\x00\x73\x00\x74\x00\xe1\x00\x20\ +\x00\x63\x00\x65\x00\x72\x00\x72\x00\x61\x00\x64\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0d\x69\x73\x20\x6e\x6f\x74\x20\x63\ +\x6c\x6f\x73\x65\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x18\x00\x6e\x00\x6f\x00\x20\x00\x65\x00\x73\x00\x20\ +\x00\x76\x00\xe1\x00\x6c\x00\x69\x00\x64\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x69\x73\x20\x6e\x6f\x74\x20\x76\x61\x6c\ +\x69\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x52\x00\x70\x00\x79\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\ +\x64\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\ +\x6f\x00\x75\x00\x6e\x00\x64\x00\x2c\x00\x20\x00\x6e\x00\x6f\x00\ +\x20\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\ +\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x2e\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x70\x79\x63\ +\x6f\x6c\x6c\x61\x64\x61\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\ +\x2c\x20\x6e\x6f\x20\x63\x6f\x6c\x6c\x61\x64\x61\x20\x73\x75\x70\ +\x70\x6f\x72\x74\x2e\x0a\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x7a\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\ +\x69\x00\x65\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x64\x00\x69\x00\ +\x62\x00\x75\x00\x6a\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x73\x00\x6f\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x65\x00\x76\x00\x69\x00\ +\x74\x00\x61\x00\x72\x00\x20\x00\x72\x00\x65\x00\x66\x00\x65\x00\ +\x72\x00\x65\x00\x6e\x00\x63\x00\x69\x00\x61\x00\x73\x00\x20\x00\ +\x63\x00\x72\x00\x75\x00\x7a\x00\x61\x00\x64\x00\x61\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x32\x72\x65\x6d\x6f\x76\x69\x6e\ +\x67\x20\x73\x6b\x65\x74\x63\x68\x20\x73\x75\x70\x70\x6f\x72\x74\ +\x20\x74\x6f\x20\x61\x76\x6f\x69\x64\x20\x63\x72\x6f\x73\x73\x2d\ +\x72\x65\x66\x65\x72\x65\x6e\x63\x69\x6e\x67\x07\x00\x00\x00\x04\ +\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x65\x00\x73\x00\x63\ +\x00\x72\x00\x69\x00\x74\x00\x6f\x00\x20\x00\x65\x00\x78\x00\x69\ +\x00\x74\x00\x6f\x00\x73\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x00\x65\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x73\x75\ +\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x77\x72\x69\x74\x74\ +\x65\x6e\x20\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\x00\ +\x00\x3e\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x73\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x65\x00\x73\x00\x74\x00\x61\ +\x00\x20\x00\x76\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x6e\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x74\x68\x65\x20\x63\x6f\ +\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\ +\x20\x77\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x04\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x24\x00\x41\x00\x67\x00\x72\x00\x65\x00\x67\ +\x00\x61\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\ +\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0d\x41\x64\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\ +\x00\x00\x00\x68\x00\x41\x00\xf1\x00\x61\x00\x64\x00\x65\x00\x20\ +\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x73\x00\x20\ +\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\ +\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x61\x00\x6c\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\ +\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x31\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ +\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\ +\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x06\x00\x45\x00\x6a\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x41\x78\x69\x73\x07\x00\ +\x00\x00\x09\x41\x72\x63\x68\x5f\x41\x78\x69\x73\x01\x03\x00\x00\ +\x00\x30\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\ +\x00\x20\x00\x73\x00\x69\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x61\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x65\x00\x6a\x00\x65\x00\x73\ +\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x6e\x20\x61\x78\x69\x73\x20\x73\x79\x73\x74\ +\x65\x6d\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x41\x78\x69\ +\x73\x01\x03\x00\x00\x00\x18\x00\x43\x00\x6f\x00\x6e\x00\x73\x00\ +\x74\x00\x72\x00\x75\x00\x63\x00\x63\x00\x69\x00\xf3\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\ +\x67\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\ +\x69\x6e\x67\x01\x03\x00\x00\x00\x8a\x00\x43\x00\x72\x00\x65\x00\ +\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\ +\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x63\x00\ +\x69\x00\xf3\x00\x6e\x00\x2c\x00\x20\x00\x69\x00\x6e\x00\x63\x00\ +\x6c\x00\x75\x00\x79\x00\x65\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\ +\x6c\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x74\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\ +\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x62\x75\x69\x6c\x64\x69\x6e\x67\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x2e\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\ +\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x0a\x00\x43\x00\x65\x00\x6c\ +\x00\x64\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x43\x65\ +\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\ +\x01\x03\x00\x00\x00\x7a\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\ +\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\ +\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x65\x00\x6c\ +\x00\x64\x00\x61\x00\x2c\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\ +\x00\x75\x00\x79\x00\x65\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x6c\ +\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\ +\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\ +\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\ +\x73\x20\x61\x20\x63\x65\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x09\x41\ +\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x10\x00\x56\ +\x00\x65\x00\x72\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x43\x68\x65\x63\x6b\x07\x00\x00\ +\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\x65\x63\x6b\x01\x03\x00\x00\ +\x00\x60\x00\x56\x00\x65\x00\x72\x00\x69\x00\x66\x00\x69\x00\x63\ +\x00\x61\x00\x72\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x62\x00\x6c\ +\x00\x65\x00\x6d\x00\x61\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\ +\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x43\x68\x65\x63\ +\x6b\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x6f\x72\x20\x70\x72\x6f\x62\ +\x6c\x65\x6d\x73\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x43\x68\ +\x65\x63\x6b\x01\x03\x00\x00\x00\x20\x00\x43\x00\x65\x00\x72\x00\ +\x72\x00\x61\x00\x72\x00\x20\x00\x6f\x00\x72\x00\x69\x00\x66\x00\ +\x69\x00\x63\x00\x69\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0b\x43\x6c\x6f\x73\x65\x20\x68\x6f\x6c\x65\x73\x07\x00\ +\x00\x00\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\ +\x65\x73\x01\x03\x00\x00\x00\x7c\x00\x43\x00\x69\x00\x65\x00\x72\ +\x00\x72\x00\x61\x00\x20\x00\x61\x00\x67\x00\x75\x00\x6a\x00\x65\ +\x00\x72\x00\x6f\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x66\ +\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x73\x00\x20\x00\x61\x00\x62\ +\x00\x69\x00\x65\x00\x72\x00\x74\x00\x61\x00\x73\x00\x2c\x00\x20\ +\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x69\x00\x72\x00\x74\x00\x69\ +\x00\xe9\x00\x6e\x00\x64\x00\x6f\x00\x6c\x00\x61\x00\x73\x00\x20\ +\x00\x65\x00\x6e\x00\x20\x00\x73\x00\xf3\x00\x6c\x00\x69\x00\x64\ +\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x6c\ +\x6f\x73\x65\x73\x20\x68\x6f\x6c\x65\x73\x20\x69\x6e\x20\x6f\x70\ +\x65\x6e\x20\x73\x68\x61\x70\x65\x73\x2c\x20\x74\x75\x72\x6e\x69\ +\x6e\x67\x20\x74\x68\x65\x6d\x20\x73\x6f\x6c\x69\x64\x73\x07\x00\ +\x00\x00\x0f\x41\x72\x63\x68\x5f\x43\x6c\x6f\x73\x65\x48\x6f\x6c\ +\x65\x73\x01\x03\x00\x00\x00\x78\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x73\x00\x75\ +\x00\x65\x00\x6c\x00\x6f\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\ +\x00\x75\x00\x79\x00\x65\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x6c\ +\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\ +\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\ +\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\ +\x73\x20\x61\x20\x66\x6c\x6f\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0a\ +\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x0a\ +\x00\x53\x00\x75\x00\x65\x00\x6c\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x0a\x41\x72\ +\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x1a\x00\x4d\ +\x00\x61\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x61\x00\x20\x00\x66\ +\x00\x6f\x00\x72\x00\x6d\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x4d\x65\x73\x68\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\ +\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\ +\x68\x61\x70\x65\x01\x03\x00\x00\x00\x5a\x00\x54\x00\x75\x00\x72\ +\x00\x6e\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\ +\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\ +\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\ +\x00\x50\x00\x61\x00\x72\x00\x74\x00\x20\x00\x53\x00\x68\x00\x61\ +\x00\x70\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x54\x75\ +\x72\x6e\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\x73\ +\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x50\x61\x72\x74\x20\x53\x68\ +\x61\x70\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x10\ +\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\ +\x01\x03\x00\x00\x00\x26\x00\x45\x00\x6c\x00\x69\x00\x6d\x00\x69\ +\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x10\x52\x65\x6d\x6f\x76\x65\x20\x63\x6f\x6d\ +\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\ +\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\xb2\x00\x45\x00\x6c\ +\x00\x69\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x6c\ +\x00\x6f\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\ +\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x73\x00\x20\x00\x73\ +\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\ +\x00\x61\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x73\x00\x75\x00\x73\x00\x20\x00\x70\x00\x61\x00\x64\x00\x72\ +\x00\x65\x00\x73\x00\x2c\x00\x20\x00\x6f\x00\x20\x00\x63\x00\x72\ +\x00\x65\x00\x61\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x61\ +\x00\x67\x00\x75\x00\x6a\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x65\ +\x00\x6e\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x52\x52\x65\x6d\x6f\x76\x65\x20\x74\ +\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\ +\x6f\x6e\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x69\ +\x72\x20\x70\x61\x72\x65\x6e\x74\x73\x2c\x20\x6f\x72\x20\x63\x72\ +\x65\x61\x74\x65\x20\x61\x20\x68\x6f\x6c\x65\x20\x69\x6e\x20\x61\ +\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\ +\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\x2c\ +\x00\x45\x00\x6c\x00\x69\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x72\ +\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x61\x00\x72\x00\x63\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x16\x52\x65\x6d\x6f\x76\x65\x20\x53\x68\x61\ +\x70\x65\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x07\x00\x00\x00\ +\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\ +\x65\x01\x03\x00\x00\x00\x50\x00\x51\x00\x75\x00\x69\x00\x74\x00\ +\x61\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x73\x00\ +\x20\x00\x63\x00\xfa\x00\x62\x00\x69\x00\x63\x00\x61\x00\x73\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\ +\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x73\x00\x20\x00\ +\x41\x00\x72\x00\x63\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x29\x52\x65\x6d\x6f\x76\x65\x73\x20\x63\x75\x62\x69\x63\x20\x73\ +\x68\x61\x70\x65\x73\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x20\ +\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x10\x41\ +\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\ +\x03\x00\x00\x00\x78\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\ +\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x6f\x00\x20\x00\x74\x00\x65\x00\x63\x00\x68\x00\x6f\x00\x20\x00\ +\x64\x00\x65\x00\x73\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x61\x00\ +\x20\x00\x63\x00\x61\x00\x72\x00\x61\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\ +\x64\x00\x61\x00\x20\x00\x64\x00\x65\x00\x20\x00\x75\x00\x6e\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x39\x43\x72\x65\x61\x74\x65\x73\x20\x61\ +\x20\x72\x6f\x6f\x66\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\ +\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x66\ +\x61\x63\x65\x20\x6f\x66\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\ +\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\ +\x00\x00\x00\x0a\x00\x54\x00\x65\x00\x63\x00\x68\x00\x6f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x52\x6f\x6f\x66\x07\x00\x00\x00\ +\x09\x41\x72\x63\x68\x5f\x52\x6f\x6f\x66\x01\x03\x00\x00\x00\x90\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x61\ +\x00\x20\x00\x73\x00\x65\x00\x63\x00\x63\x00\x69\x00\xf3\x00\x6e\ +\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x61\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x74\x00\x6f\x00\x2c\x00\x20\x00\x69\x00\x6e\x00\x63\ +\x00\x6c\x00\x75\x00\x69\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x6c\ +\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\ +\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\ +\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3e\x43\x72\x65\x61\x74\x65\ +\x73\x20\x61\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x69\x6e\x63\x6c\x75\x64\ +\x69\x6e\x67\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x11\x41\x72\x63\ +\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\ +\x00\x00\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x6e\x00\x6f\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x73\x00\x65\x00\x63\x00\x63\x00\x69\ +\x00\xf3\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\ +\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\ +\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\ +\x65\x01\x03\x00\x00\x00\x3e\x00\x53\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x20\x00\ +\x6d\x00\x61\x00\x6c\x00\x6c\x00\x61\x00\x73\x00\x20\x00\x6e\x00\ +\x6f\x00\x2d\x00\x6d\x00\xfa\x00\x6c\x00\x74\x00\x69\x00\x70\x00\ +\x6c\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\ +\x65\x6c\x65\x63\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\ +\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\x00\x19\x41\x72\ +\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\ +\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\xa8\x00\x53\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\ +\x61\x00\x20\x00\x74\x00\x6f\x00\x64\x00\x61\x00\x73\x00\x20\x00\ +\x6c\x00\x61\x00\x73\x00\x20\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\ +\x61\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x2d\x00\x6d\x00\xfa\x00\ +\x6c\x00\x74\x00\x69\x00\x70\x00\x6c\x00\x65\x00\x73\x00\x20\x00\ +\x64\x00\x65\x00\x6c\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x6f\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x67\x00\ +\x72\x00\x75\x00\x70\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\ +\x64\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x53\ +\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6e\x6f\x6e\x2d\x6d\ +\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x66\ +\x72\x6f\x6d\x20\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\ +\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x67\x72\x6f\x75\x70\x73\x07\x00\x00\x00\ +\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\ +\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x84\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x73\x00\x69\x00\x74\x00\x75\x00\x61\x00\x63\ +\x00\x69\x00\xf3\x00\x6e\x00\x2c\x00\x20\x00\x69\x00\x6e\x00\x63\ +\x00\x6c\x00\x75\x00\x79\x00\x65\x00\x6e\x00\x64\x00\x6f\x00\x20\ +\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\ +\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\ +\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x20\x73\x69\x74\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\ +\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\ +\x00\x00\x12\x00\x53\x00\x69\x00\x74\x00\x75\x00\x61\x00\x63\x00\ +\x69\x00\xf3\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\ +\x69\x74\x65\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\ +\x65\x01\x03\x00\x00\x00\x1a\x00\x44\x00\x69\x00\x76\x00\x69\x00\ +\x64\x00\x69\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\ +\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\ +\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\x7a\x00\x44\ +\x00\x69\x00\x76\x00\x69\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x61\ +\x00\x73\x00\x20\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\x61\x00\x73\ +\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\ +\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x61\x00\x73\x00\x20\x00\x65\ +\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ +\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\ +\x00\x64\x00\x65\x00\x70\x00\x65\x00\x6e\x00\x64\x00\x69\x00\x65\ +\x00\x6e\x00\x74\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x32\x53\x70\x6c\x69\x74\x73\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x69\x6e\ +\x64\x65\x70\x65\x6e\x64\x65\x6e\x74\x20\x63\x6f\x6d\x70\x6f\x6e\ +\x65\x6e\x74\x73\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\ +\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\xea\x00\x43\x00\ +\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x65\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\ +\x75\x00\x72\x00\x61\x00\x20\x00\x61\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x74\x00\x69\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x63\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x6f\x00\x20\x00\x61\x00\ +\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\x69\x00\x72\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\ +\x6f\x00\x20\x00\x28\x00\x63\x00\x72\x00\x6f\x00\x71\x00\x75\x00\ +\x69\x00\x73\x00\x2c\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\ +\x6f\x00\x72\x00\x6e\x00\x6f\x00\x2c\x00\x20\x00\x63\x00\x61\x00\ +\x72\x00\x61\x00\x20\x00\x6f\x00\x20\x00\x73\x00\xf3\x00\x6c\x00\ +\x69\x00\x64\x00\x6f\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x5f\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x74\x72\x75\x63\ +\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\ +\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\ +\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x28\x73\x6b\x65\x74\x63\x68\x2c\x20\x77\x69\x72\x65\ +\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\ +\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\ +\x75\x72\x65\x01\x03\x00\x00\x00\x14\x00\x45\x00\x73\x00\x74\x00\ +\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\ +\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\ +\x75\x72\x65\x01\x03\x00\x00\x00\xba\x00\x43\x00\x72\x00\x65\x00\ +\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x74\x00\x6f\x00\x20\x00\x6d\x00\x75\x00\x72\x00\x6f\x00\ +\x20\x00\x64\x00\x65\x00\x73\x00\x64\x00\x65\x00\x20\x00\x63\x00\ +\x65\x00\x72\x00\x6f\x00\x20\x00\x6f\x00\x20\x00\x61\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\x74\x00\x69\x00\x72\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\ +\x20\x00\x28\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x72\x00\ +\x6e\x00\x6f\x00\x2c\x00\x20\x00\x63\x00\x61\x00\x72\x00\x61\x00\ +\x20\x00\x6f\x00\x20\x00\x73\x00\xf3\x00\x6c\x00\x69\x00\x64\x00\ +\x6f\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x77\x61\x6c\x6c\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\ +\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\ +\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\ +\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\ +\x00\x00\x08\x00\x4d\x00\x75\x00\x72\x00\x6f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\ +\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\xa6\x00\x43\x00\ +\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x61\x00\x20\x00\ +\x76\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x6e\x00\x61\x00\x20\x00\ +\x61\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\ +\x61\x00\x64\x00\x6f\x00\x20\x00\x28\x00\x61\x00\x6c\x00\x61\x00\ +\x6d\x00\x62\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x72\x00\x65\x00\ +\x63\x00\x74\x00\xe1\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x6f\x00\ +\x20\x00\x6f\x00\x20\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\ +\x68\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4a\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x77\x69\x6e\x64\x6f\x77\x20\x6f\x62\ +\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\ +\x65\x2c\x20\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\x20\x6f\x72\x20\ +\x73\x6b\x65\x74\x63\x68\x29\x07\x00\x00\x00\x0b\x41\x72\x63\x68\ +\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0e\x00\x56\x00\ +\x65\x00\x6e\x00\x74\x00\x61\x00\x6e\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x0b\ +\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ +\x18\x00\x32\x00\x44\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\ +\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0c\x32\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\ +\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x50\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\ +\x00\x65\x00\x73\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\ +\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x61\ +\x00\x63\x00\x68\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x74\ +\x00\x79\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\ +\x43\x72\x65\x61\x74\x65\x73\x20\x67\x72\x6f\x75\x70\x73\x20\x66\ +\x6f\x72\x20\x65\x61\x63\x68\x20\x41\x72\x63\x68\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x74\x79\x70\x65\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x60\x00\ +\x52\x00\x65\x00\x6c\x00\x61\x00\x63\x00\x69\x00\xf3\x00\x6e\x00\ +\x20\x00\x65\x00\x6e\x00\x74\x00\x72\x00\x65\x00\x20\x00\x61\x00\ +\x6e\x00\x63\x00\x68\x00\x6f\x00\x73\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x6c\x00\xed\x00\x6e\x00\x65\x00\x61\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\xe1\x00\x72\x00\x65\x00\x61\x00\x73\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x72\x00\x74\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x43\x75\x74\x20\x61\x72\x65\ +\x61\x73\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\ +\x73\x20\x72\x61\x74\x69\x6f\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x4a\x00\x43\ +\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x72\x00\x65\ +\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\ +\x00\x61\x00\x64\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\ +\x00\x20\x00\x65\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\ +\x00\x75\x00\x72\x00\x61\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1c\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\ +\x66\x6f\x72\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x73\x07\x00\ +\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\ +\x03\x00\x00\x00\x42\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ +\x20\x00\x70\x00\x72\x00\x65\x00\x64\x00\x65\x00\x74\x00\x65\x00\ +\x72\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\ +\x65\x00\x64\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x17\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\ +\x6f\x72\x20\x77\x61\x6c\x6c\x73\x07\x00\x00\x00\x1c\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x3e\x00\ +\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x6f\x00\ +\x72\x00\x20\x00\x64\x00\x65\x00\x66\x00\x65\x00\x63\x00\x74\x00\ +\x6f\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x76\x00\ +\x65\x00\x6e\x00\x74\x00\x61\x00\x6e\x00\x61\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x19\x44\x65\x66\x61\x75\x6c\x74\x20\x63\ +\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\x69\x6e\x64\x6f\x77\x73\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x34\x00\x41\x00\x6a\x00\x75\x00\x65\x00\ +\x73\x00\x74\x00\x65\x00\x73\x00\x20\x00\x67\x00\x65\x00\x6e\x00\ +\x65\x00\x72\x00\x61\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x41\x00\x72\x00\x63\x00\x6f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\x20\x41\x72\x63\ +\x68\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x24\x00\x4f\x00\x70\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\ +\x73\x00\x20\x00\x67\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\ +\x6c\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\ +\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\ +\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x40\xfe\xff\x00\x43\x00\x6f\x00\x6d\x00\x70\ +\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x73\x00\x20\ +\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x67\x00\x72\x00\x75\x00\x70\ +\x00\x6f\x00\x20\x00\x70\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x69\ +\x00\x70\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\ +\x47\x72\x6f\x75\x70\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\ +\x20\x62\x79\x20\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x1e\ +\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x63\ +\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\x49\x00\x46\x00\x43\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\x49\x46\x43\x20\x69\x6d\x70\x6f\ +\x72\x74\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ +\x72\x63\x68\x01\x03\x00\x00\x00\xba\x00\x49\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x49\x00\x46\x00\x43\x00\ +\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\x00\x6c\x00\ +\x6c\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\ +\x62\x00\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x61\x00\x6c\x00\x6c\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x69\x00\x6d\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x72\x00\x65\x00\ +\x20\x00\x49\x00\x46\x00\x43\x00\x20\x00\x74\x00\x79\x00\x70\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x49\x66\x20\ +\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x74\x68\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\x68\x65\x6c\ +\x6c\x20\x69\x6d\x70\x6f\x72\x74\x65\x72\x20\x77\x69\x6c\x6c\x20\ +\x62\x65\x20\x75\x73\x65\x64\x2c\x20\x61\x6c\x6c\x6f\x77\x69\x6e\ +\x67\x20\x74\x6f\x20\x69\x6d\x70\x6f\x72\x74\x20\x6d\x6f\x72\x65\ +\x20\x49\x46\x43\x20\x74\x79\x70\x65\x73\x07\x00\x00\x00\x1c\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\ +\x6a\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\ +\x63\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x6d\x00\x75\x00\x65\x00\x62\x00\x6c\x00\x65\x00\x73\x00\x20\x00\ +\x28\x00\x70\x00\x75\x00\x65\x00\x64\x00\x65\x00\x20\x00\x68\x00\ +\x61\x00\x63\x00\x65\x00\x72\x00\x20\x00\x65\x00\x6c\x00\x20\x00\ +\x6d\x00\x6f\x00\x64\x00\x65\x00\x6c\x00\x6f\x00\x20\x00\x70\x00\ +\x65\x00\x73\x00\x61\x00\x64\x00\x6f\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2b\x49\x6d\x70\x6f\x72\x74\x20\x66\x75\x72\x6e\ +\x69\x74\x75\x72\x65\x20\x28\x63\x61\x6e\x20\x6d\x61\x6b\x65\x20\ +\x74\x68\x65\x20\x6d\x6f\x64\x65\x6c\x20\x68\x65\x61\x76\x79\x29\ +\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ +\x68\x01\x03\x00\x00\x00\x54\x00\x53\x00\x68\x00\x6f\x00\x77\x00\ +\x20\x00\x64\x00\x65\x00\x62\x00\x75\x00\x67\x00\x20\x00\x69\x00\ +\x6e\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x00\x20\x00\x64\x00\x75\x00\x72\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x32\x00\x44\x00\x20\x00\x72\x00\x65\x00\x6e\x00\ +\x64\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2a\x53\x68\x6f\x77\x20\x64\x65\x62\x75\x67\x20\ +\x69\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x20\x64\x75\x72\x69\ +\x6e\x67\x20\x32\x44\x20\x72\x65\x6e\x64\x65\x72\x69\x6e\x67\x07\ +\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\ +\x01\x03\x00\x00\x00\x38\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\ +\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x65\x00\x72\ +\x00\x20\x00\x64\x00\x65\x00\x62\x00\x75\x00\x67\x00\x20\x00\x6d\ +\x00\x65\x00\x73\x00\x73\x00\x61\x00\x67\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1c\x53\x68\x6f\x77\x20\x72\x65\x6e\ +\x64\x65\x72\x65\x72\x20\x64\x65\x62\x75\x67\x20\x6d\x65\x73\x73\ +\x61\x67\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\xb8\x00\x45\x00\x73\x00\ +\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\ +\x20\x00\x63\x00\x75\x00\xe1\x00\x6e\x00\x74\x00\x61\x00\x73\x00\ +\x20\x00\x76\x00\x65\x00\x63\x00\x65\x00\x73\x00\x20\x00\x65\x00\ +\x6c\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x73\x00\x6f\x00\x72\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\ +\xed\x00\x6e\x00\x65\x00\x61\x00\x20\x00\x76\x00\x69\x00\x73\x00\ +\x75\x00\x61\x00\x6c\x00\x69\x00\x7a\x00\x61\x00\x64\x00\x61\x00\ +\x20\x00\x64\x00\x65\x00\x62\x00\x65\x00\x20\x00\x61\x00\x70\x00\ +\x6c\x00\x69\x00\x63\x00\x61\x00\x72\x00\x73\x00\x65\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x72\x00\ +\x74\x00\x61\x00\x72\x00\x20\x00\x6c\x00\xed\x00\x6e\x00\x65\x00\ +\x61\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x53\x70\x65\ +\x63\x69\x66\x69\x65\x73\x20\x68\x6f\x77\x20\x6d\x61\x6e\x79\x20\ +\x74\x69\x6d\x65\x73\x20\x74\x68\x65\x20\x76\x69\x65\x77\x65\x64\ +\x20\x6c\x69\x6e\x65\x20\x74\x68\x69\x63\x6b\x6e\x65\x73\x73\x20\ +\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x70\x70\x6c\x69\x65\x64\x20\ +\x74\x6f\x20\x63\x75\x74\x20\x6c\x69\x6e\x65\x73\x07\x00\x00\x00\ +\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ +\x00\x00\x84\x00\x45\x00\x73\x00\x74\x00\x65\x00\x20\x00\x65\x00\ +\x73\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\ +\x6f\x00\x72\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\x00\x65\x00\ +\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x64\x00\ +\x6f\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x6c\x00\ +\x6f\x00\x73\x00\x20\x00\x6e\x00\x75\x00\x65\x00\x76\x00\x6f\x00\ +\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\ +\x73\x00\x20\x00\x45\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\ +\x74\x00\x75\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x33\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\ +\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\ +\x65\x77\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x7a\x00\x45\x00\x73\x00\ +\x74\x00\x65\x00\x20\x00\x65\x00\x73\x00\x20\x00\x65\x00\x6c\x00\ +\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x70\x00\ +\x72\x00\x65\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\ +\x69\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x61\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x6e\x00\ +\x75\x00\x65\x00\x76\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x50\x00\x61\x00\ +\x72\x00\x65\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x54\ +\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\ +\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\ +\x20\x57\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ +\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\ +\x00\x00\x00\x46\x00\x55\x00\x73\x00\x65\x00\x20\x00\x49\x00\x46\ +\x00\x43\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x68\x00\x65\ +\x00\x6c\x00\x6c\x00\x20\x00\x73\x00\x69\x00\x20\x00\x65\x00\x73\ +\x00\x74\x00\xe1\x00\x20\x00\x64\x00\x69\x00\x73\x00\x70\x00\x6f\ +\x00\x6e\x00\x69\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1d\x55\x73\x65\x20\x49\x46\x43\x4f\x70\x65\x6e\x53\ +\x68\x65\x6c\x6c\x20\x69\x66\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\ +\x65\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ +\x63\x68\x01\x03\x00\x00\x00\x1a\x00\x26\x00\x41\x00\x72\x00\x71\ +\x00\x75\x00\x69\x00\x74\x00\x65\x00\x63\x00\x74\x00\x75\x00\x72\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x26\x41\x72\x63\ +\x68\x69\x74\x65\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x61\x72\ +\x63\x68\x01\x03\x00\x00\x00\x12\x00\x26\x00\x42\x00\x6f\x00\x73\ +\x00\x71\x00\x75\x00\x65\x00\x6a\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x26\x44\x72\x61\x66\x74\x07\x00\x00\x00\x04\x61\ +\x72\x63\x68\x01\x03\x00\x00\x00\x28\x00\x48\x00\x65\x00\x72\x00\ +\x72\x00\x61\x00\x6d\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x61\x00\ +\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x61\x00\x72\x00\x63\x00\ +\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x41\x72\x63\x68\x20\ +\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\ +\x00\x00\x00\x2e\x00\x48\x00\x65\x00\x72\x00\x72\x00\x61\x00\x6d\ +\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x73\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x63\x00\xe1\x00\x6c\x00\x63\x00\x75\x00\x6c\ +\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x43\x61\x6c\x63\ +\x75\x6c\x61\x74\x69\x6f\x6e\x20\x54\x6f\x6f\x6c\x73\x07\x00\x00\ +\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x32\x00\x48\x00\x65\ +\x00\x72\x00\x72\x00\x61\x00\x6d\x00\x69\x00\x65\x00\x6e\x00\x74\ +\x00\x61\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x65\ +\x00\x78\x00\x74\x00\x75\x00\x61\x00\x6c\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x74\x65\x78\x74\x20\ +\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\ +\x00\x00\x00\x34\x00\x48\x00\x65\x00\x72\x00\x72\x00\x61\x00\x6d\ +\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x73\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\ +\x00\x73\x00\x69\x00\xf3\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x10\x43\x6f\x6e\x76\x65\x72\x73\x69\x6f\x6e\x20\x54\x6f\x6f\ +\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\ +\x52\x00\x48\x00\x65\x00\x72\x00\x72\x00\x61\x00\x6d\x00\x69\x00\ +\x65\x00\x6e\x00\x74\x00\x61\x00\x73\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x61\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\ +\x69\x00\x63\x00\x61\x00\x63\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x63\x00\x72\x00\x6f\x00\x71\x00\x75\x00\ +\x69\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x44\x72\x61\ +\x66\x74\x20\x6d\x6f\x64\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\ +\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x48\x00\x65\x00\ +\x72\x00\x72\x00\x61\x00\x6d\x00\x69\x00\x65\x00\x6e\x00\x74\x00\ +\x61\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x72\x00\ +\x6f\x00\x71\x00\x75\x00\x69\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0b\x44\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\ +\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\xbe\x00\x4e\x00\ +\x6f\x00\x20\x00\x73\x00\x65\x00\x20\x00\x65\x00\x6e\x00\x63\x00\ +\x75\x00\x65\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x20\x00\x6c\x00\ +\x61\x00\x20\x00\x62\x00\x69\x00\x62\x00\x6c\x00\x69\x00\x6f\x00\ +\x74\x00\x65\x00\x63\x00\x61\x00\x20\x00\x70\x00\x79\x00\x63\x00\ +\x6f\x00\x6c\x00\x6c\x00\x61\x00\x64\x00\x61\x00\x3b\x00\x20\x00\ +\x6e\x00\x6f\x00\x20\x00\x65\x00\x73\x00\x74\x00\x61\x00\x72\x00\ +\xe1\x00\x20\x00\x68\x00\x61\x00\x62\x00\x69\x00\x6c\x00\x69\x00\ +\x74\x00\x61\x00\x64\x00\x6f\x00\x20\x00\x65\x00\x6c\x00\x20\x00\ +\x73\x00\x6f\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x61\x00\x72\x00\x63\x00\ +\x68\x00\x69\x00\x76\x00\x6f\x00\x73\x00\x20\x00\x43\x00\x4f\x00\ +\x4c\x00\x4c\x00\x41\x00\x44\x00\x41\x00\x2e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x37\x70\x79\x63\x6f\x6c\x6c\x61\x64\x61\x20\x6e\ +\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x63\x6f\x6c\x6c\x61\x64\ +\x61\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x77\x69\x6c\x6c\x20\x62\ +\x65\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x2e\x0a\x07\x00\x00\x00\ +\x04\x61\x72\x63\x68\x01\ \x00\x00\x16\xc6\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ @@ -4973,1075 +27760,6 @@ qt_resource_data = "\ \x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x73\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x05\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\ \x61\x72\x63\x68\x01\ -\x00\x00\x16\x20\ -\x3c\ -\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ -\x00\x00\x01\x50\x00\x04\x9c\x2c\x00\x00\x02\xc5\x00\x05\xa0\xa5\ -\x00\x00\x0b\x17\x00\x05\xd8\x2c\x00\x00\x0e\xcd\x00\x39\xdf\x33\ -\x00\x00\x11\xc0\x00\x4b\x87\xd4\x00\x00\x14\x28\x00\x4d\x36\x62\ -\x00\x00\x04\x4f\x00\x5b\x66\x33\x00\x00\x14\x8a\x00\x62\x9b\xa8\ -\x00\x00\x0b\x41\x00\xfb\x72\xf3\x00\x00\x11\x50\x01\xf7\xa8\x83\ -\x00\x00\x12\xf9\x02\x5f\xc9\x59\x00\x00\x0d\xb9\x02\x90\x40\x65\ -\x00\x00\x05\x28\x02\xb8\xae\x74\x00\x00\x05\x74\x02\xcd\x05\xa3\ -\x00\x00\x04\x7d\x02\xdd\x14\x14\x00\x00\x05\xc4\x02\xe5\xaa\xe4\ -\x00\x00\x00\x99\x03\x1d\xe8\xe3\x00\x00\x10\x55\x03\xd4\x22\x74\ -\x00\x00\x00\xd6\x04\xdb\x21\x3e\x00\x00\x0a\x66\x05\x18\xda\xa3\ -\x00\x00\x03\x9d\x05\xe0\x4b\x67\x00\x00\x10\x25\x06\x32\xe3\xe3\ -\x00\x00\x14\x50\x07\x60\x23\xf3\x00\x00\x00\x00\x09\x13\xce\x39\ -\x00\x00\x0e\xf7\x09\xba\xe6\x35\x00\x00\x0d\x7b\x09\xe3\x98\xe4\ -\x00\x00\x01\x1a\x09\xed\x98\x55\x00\x00\x08\x88\x0a\x7f\xee\xa3\ -\x00\x00\x13\xb4\x0b\x51\x30\xa8\x00\x00\x06\xda\x0b\x65\xda\xb3\ -\x00\x00\x10\xda\x0b\x8d\x97\x93\x00\x00\x12\x2f\x0b\xb9\xe8\x93\ -\x00\x00\x07\x41\x0b\xc4\xb1\x23\x00\x00\x02\xef\x0b\xe2\xc4\x04\ -\x00\x00\x07\xe1\x0c\x02\xac\xd7\x00\x00\x01\xca\x0c\x25\x3e\x53\ -\x00\x00\x09\x51\x0c\x4e\x9b\x23\x00\x00\x08\xd5\x0d\x1e\xda\xa4\ -\x00\x00\x00\x35\x0d\x3b\x3b\x49\x00\x00\x0c\x3b\x0e\x32\x23\x85\ -\x00\x00\x13\xeb\x0e\x8c\xd7\x43\x00\x00\x0b\x82\x0e\xec\x0b\x9e\ -\x00\x00\x02\x04\x69\x00\x00\x14\xb6\x03\x00\x00\x00\x12\x00\x45\ -\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x72\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\x6d\x70\x6f\x6e\ -\x65\x6e\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\x00\ -\x00\x00\x32\x00\x43\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\ -\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ -\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x43\ -\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\ -\x73\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\x72\x63\ -\x68\x01\x03\x00\x00\x00\x18\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\ -\x76\x00\x65\x00\x20\x00\x63\x00\x68\x00\x69\x00\x6c\x00\x64\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x52\x65\x6d\x6f\x76\x65\x20\ -\x63\x68\x69\x6c\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\x03\ -\x00\x00\x00\x1a\x00\x41\x00\x64\x00\x64\x00\x20\x00\x63\x00\x6f\ -\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\x63\x6f\x6d\x70\ -\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\ -\x64\x64\x01\x03\x00\x00\x00\x62\x00\x41\x00\x64\x00\x64\x00\x73\ -\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\ -\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x63\x00\x6f\ -\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\ -\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ -\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x65\x00\x20\x00\x6f\ -\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x31\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\ -\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\ -\x20\x74\x6f\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\ -\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\x5f\x41\ -\x64\x64\x01\x03\x00\x00\x00\x10\x00\x42\x00\x75\x00\x69\x00\x6c\ -\x00\x64\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\x0d\x41\ -\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\ -\x00\x6a\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\ -\x00\x20\x00\x61\x00\x20\x00\x62\x00\x75\x00\x69\x00\x6c\x00\x64\ -\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ -\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\ -\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x65\x00\x6c\ -\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\ -\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x2e\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x35\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ -\x62\x75\x69\x6c\x64\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x20\ -\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\ -\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x0d\ -\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\x00\ -\x00\x00\x08\x00\x43\x00\x65\x00\x6c\x00\x6c\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x04\x43\x65\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\ -\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x60\x00\x43\x00\ -\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\ -\x20\x00\x63\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x63\x00\ -\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\ -\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\ -\x20\x63\x65\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\ -\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ -\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x09\x41\x72\x63\x68\ -\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x62\x00\x43\x00\x72\x00\ -\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\ -\x66\x00\x6c\x00\x6f\x00\x6f\x00\x72\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x63\x00\ -\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\ -\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\ -\x20\x66\x6c\x6f\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\ -\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ -\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0a\x41\x72\x63\ -\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x0a\x00\x46\x00\ -\x6c\x00\x6f\x00\x6f\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\ -\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x5a\x00\x54\x00\x75\x00\ -\x72\x00\x6e\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ -\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6d\x00\x65\x00\x73\x00\ -\x68\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\ -\x20\x00\x50\x00\x61\x00\x72\x00\x74\x00\x20\x00\x53\x00\x68\x00\ -\x61\x00\x70\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x54\ -\x75\x72\x6e\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\ -\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x50\x61\x72\x74\x20\x53\ -\x68\x61\x70\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\ -\x0f\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x50\x61\x72\x74\ -\x01\x03\x00\x00\x00\x1a\x00\x4d\x00\x65\x00\x73\x00\x68\x00\x20\ -\x00\x74\x00\x6f\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x74\ -\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x10\x41\x72\x63\x68\ -\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\x00\x00\ -\x00\x20\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x20\ -\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ -\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\x6d\x6f\ -\x76\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\ -\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\ -\x00\xa4\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x20\ -\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\ -\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x63\x00\x6f\x00\x6d\ -\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\ -\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\ -\x00\x69\x00\x72\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x6e\ -\x00\x74\x00\x73\x00\x2c\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x63\ -\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x61\x00\x20\ -\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x20\ -\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ -\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\ -\x52\x65\x6d\x6f\x76\x65\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ -\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x66\ -\x72\x6f\x6d\x20\x74\x68\x65\x69\x72\x20\x70\x61\x72\x65\x6e\x74\ -\x73\x2c\x20\x6f\x72\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x68\ -\x6f\x6c\x65\x20\x69\x6e\x20\x61\x20\x63\x6f\x6d\x70\x6f\x6e\x65\ -\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\ -\x76\x65\x01\x03\x00\x00\x00\x2c\x00\x52\x00\x65\x00\x6d\x00\x6f\ -\x00\x76\x00\x65\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\ -\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x41\x00\x72\ -\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x52\x65\ -\x6d\x6f\x76\x65\x20\x53\x68\x61\x70\x65\x20\x66\x72\x6f\x6d\x20\ -\x41\x72\x63\x68\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\ -\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x52\x00\ -\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x73\x00\x20\x00\ -\x63\x00\x75\x00\x62\x00\x69\x00\x63\x00\x20\x00\x73\x00\x68\x00\ -\x61\x00\x70\x00\x65\x00\x73\x00\x20\x00\x66\x00\x72\x00\x6f\x00\ -\x6d\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x63\x00\ -\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\ -\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x52\x65\x6d\x6f\x76\ -\x65\x73\x20\x63\x75\x62\x69\x63\x20\x73\x68\x61\x70\x65\x73\x20\ -\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x20\x63\x6f\x6d\x70\x6f\x6e\ -\x65\x6e\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x52\x65\ -\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\x56\x00\ -\x41\x00\x64\x00\x64\x00\x73\x00\x20\x00\x61\x00\x20\x00\x73\x00\ -\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\ -\x6c\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x63\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\ -\x68\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\ -\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x41\ -\x64\x64\x73\x20\x61\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\x70\x6c\ -\x61\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x74\x68\ -\x65\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\x11\x41\ -\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\ -\x01\x03\x00\x00\x00\x1a\x00\x53\x00\x65\x00\x63\x00\x74\x00\x69\ -\x00\x6f\x00\x6e\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x6e\x00\x65\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\x63\x74\x69\x6f\ -\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x41\x72\x63\x68\ -\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\ -\x00\x00\x34\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ -\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\ -\x69\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x6d\x00\x65\x00\ -\x73\x00\x68\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x1a\x53\x65\x6c\x65\x63\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\ -\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\x00\x19\ -\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\ -\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x9a\x00\ -\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ -\x61\x00\x6c\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\ -\x6d\x00\x61\x00\x6e\x00\x69\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\ -\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\ -\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\ -\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\ -\x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\ -\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\ -\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x67\x00\ -\x72\x00\x6f\x00\x75\x00\x70\x00\x73\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x4d\x53\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6e\ -\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\ -\x65\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x64\x6f\x63\x75\ -\x6d\x65\x6e\x74\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\ -\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x67\x72\x6f\x75\x70\x73\ -\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\ -\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\ -\x00\x00\x00\x62\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ -\x00\x73\x00\x20\x00\x61\x00\x20\x00\x73\x00\x69\x00\x74\x00\x65\ -\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\ -\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\ -\x00\x67\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\ -\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ -\x00\x74\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\ -\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x69\x74\x65\x20\x6f\ -\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\ -\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\ -\x03\x00\x00\x00\x08\x00\x53\x00\x69\x00\x74\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\x00\x00\x00\x09\ -\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\x14\x00\ -\x53\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x20\x00\x4d\x00\x65\x00\ -\x73\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x70\x6c\ -\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x0e\x41\x72\x63\x68\ -\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\x64\ -\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x73\x00\x20\x00\x73\ -\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\ -\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\x69\ -\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x69\x00\x6e\x00\x64\x00\x65\ -\x00\x70\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x20\ -\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\ -\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\x53\x70\ -\x6c\x69\x74\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6d\x65\ -\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x69\x6e\x64\x65\x70\x65\ -\x6e\x64\x65\x6e\x74\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\ -\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\ -\x65\x73\x68\x01\x03\x00\x00\x00\xbe\x00\x43\x00\x72\x00\x65\x00\ -\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x73\x00\ -\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ -\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x73\x00\x63\x00\x72\x00\ -\x61\x00\x74\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x72\x00\x20\x00\ -\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\x73\x00\ -\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x28\x00\ -\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x2c\x00\x20\x00\ -\x77\x00\x69\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x66\x00\x61\x00\ -\x63\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x6f\x00\ -\x6c\x00\x69\x00\x64\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x5f\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x74\x72\x75\x63\ -\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\ -\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\ -\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ -\x63\x74\x20\x28\x73\x6b\x65\x74\x63\x68\x2c\x20\x77\x69\x72\x65\ -\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\ -\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\ -\x75\x72\x65\x01\x03\x00\x00\x00\x12\x00\x53\x00\x74\x00\x72\x00\ -\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\x07\x00\ -\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\ -\x65\x01\x03\x00\x00\x00\xa4\x00\x43\x00\x72\x00\x65\x00\x61\x00\ -\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x77\x00\x61\x00\ -\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ -\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x73\x00\ -\x63\x00\x72\x00\x61\x00\x74\x00\x63\x00\x68\x00\x20\x00\x6f\x00\ -\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\ -\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\ -\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ -\x20\x00\x28\x00\x77\x00\x69\x00\x72\x00\x65\x00\x2c\x00\x20\x00\ -\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\ -\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x29\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x52\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\ -\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\ -\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\ -\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ -\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\ -\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x09\x41\x72\x63\x68\ -\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\x08\x00\x57\x00\x61\x00\ -\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x61\x6c\ -\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\ -\x03\x00\x00\x00\xb4\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\ -\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x77\x00\x69\x00\x6e\x00\ -\x64\x00\x6f\x00\x77\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\ -\x73\x00\x63\x00\x72\x00\x61\x00\x74\x00\x63\x00\x68\x00\x20\x00\ -\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\ -\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ -\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ -\x74\x00\x20\x00\x28\x00\x77\x00\x69\x00\x72\x00\x65\x00\x2c\x00\ -\x20\x00\x72\x00\x65\x00\x63\x00\x74\x00\x61\x00\x6e\x00\x67\x00\ -\x6c\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x6b\x00\ -\x65\x00\x74\x00\x63\x00\x68\x00\x29\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x5a\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\x69\x6e\ -\x64\x6f\x77\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\ -\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\ -\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ -\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x72\x65\x63\x74\x61\x6e\x67\ -\x6c\x65\x20\x6f\x72\x20\x73\x6b\x65\x74\x63\x68\x29\x07\x00\x00\ -\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ -\x00\x00\x0a\x00\x56\x00\x69\x00\x6e\x00\x64\x00\x75\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\ -\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ -\x00\x00\x38\x00\x44\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\ -\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\ -\x66\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\ -\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x73\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x1c\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ -\x6f\x72\x20\x66\x6f\x72\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\ -\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ -\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x44\x00\x65\x00\x66\x00\x61\ -\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\ -\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x77\x00\x61\ -\x00\x6c\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\ -\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\ -\x72\x20\x77\x61\x6c\x6c\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x47\ -\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\x00\x41\ -\x00\x72\x00\x63\x00\x68\x00\x20\x00\x53\x00\x65\x00\x74\x00\x74\ -\x00\x69\x00\x6e\x00\x67\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\x20\x41\x72\x63\x68\x20\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x47\ -\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x65\x00\x6c\x00\x6c\x00\x65\ -\x00\x20\x00\x69\x00\x6e\x00\x6e\x00\x73\x00\x74\x00\x69\x00\x6c\ -\x00\x6c\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x72\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\ -\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x66\x00\x54\x00\ -\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\ -\x68\x00\x65\x00\x20\x00\x64\x00\x65\x00\x66\x00\x61\x00\x75\x00\ -\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ -\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x77\x00\ -\x20\x00\x53\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\ -\x72\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ -\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x54\x68\x69\ -\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\ -\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x53\ -\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\ -\x68\x01\x03\x00\x00\x00\x5c\x00\x54\x00\x68\x00\x69\x00\x73\x00\ -\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ -\x64\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\ -\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\ -\x72\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\x57\x00\x61\x00\ -\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ -\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x54\x68\x69\ -\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\ -\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x57\ -\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ -\x00\x14\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x74\x00\x6f\ -\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\ -\x41\x72\x63\x68\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\ -\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x41\x00\x72\x00\x63\x00\ -\x68\x00\x69\x00\x74\x00\x65\x00\x63\x00\x74\x00\x75\x00\x72\x00\ -\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x41\x72\x63\x68\x69\ -\x74\x65\x63\x74\x75\x72\x65\x07\x00\x00\x00\x04\x61\x72\x63\x68\ -\x01\x03\x00\x00\x00\x0a\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x72\x61\x66\x74\x07\ -\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x44\ -\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x6f\ -\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x72\ -\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\ -\x63\x68\x01\x03\x00\x00\x00\x0e\x00\x56\x00\x65\x00\x72\x00\x6b\ -\x00\x74\x00\xf8\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ -\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ -\x00\x00\x16\x18\ -\x3c\ -\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ -\x00\x00\x01\x50\x00\x04\x9c\x2c\x00\x00\x02\xc7\x00\x05\xa0\xa5\ -\x00\x00\x0b\x19\x00\x05\xd8\x2c\x00\x00\x0e\xcf\x00\x39\xdf\x33\ -\x00\x00\x11\xc4\x00\x4b\x87\xd4\x00\x00\x14\x1e\x00\x4d\x36\x62\ -\x00\x00\x04\x51\x00\x5b\x66\x33\x00\x00\x14\x80\x00\x62\x9b\xa8\ -\x00\x00\x0b\x43\x00\xfb\x72\xf3\x00\x00\x11\x54\x01\xf7\xa8\x83\ -\x00\x00\x12\xef\x02\x5f\xc9\x59\x00\x00\x0d\xbb\x02\x90\x40\x65\ -\x00\x00\x05\x2a\x02\xb8\xae\x74\x00\x00\x05\x76\x02\xcd\x05\xa3\ -\x00\x00\x04\x7f\x02\xdd\x14\x14\x00\x00\x05\xc6\x02\xe5\xaa\xe4\ -\x00\x00\x00\x9b\x03\x1d\xe8\xe3\x00\x00\x10\x59\x03\xd4\x22\x74\ -\x00\x00\x00\xd8\x04\xdb\x21\x3e\x00\x00\x0a\x68\x05\x18\xda\xa3\ -\x00\x00\x03\x9f\x05\xe0\x4b\x67\x00\x00\x10\x27\x06\x32\xe3\xe3\ -\x00\x00\x14\x46\x07\x60\x23\xf3\x00\x00\x00\x00\x09\x13\xce\x39\ -\x00\x00\x0e\xf9\x09\xba\xe6\x35\x00\x00\x0d\x7d\x09\xe3\x98\xe4\ -\x00\x00\x01\x1c\x09\xed\x98\x55\x00\x00\x08\x8a\x0a\x7f\xee\xa3\ -\x00\x00\x13\xaa\x0b\x51\x30\xa8\x00\x00\x06\xdc\x0b\x65\xda\xb3\ -\x00\x00\x10\xde\x0b\x8d\x97\x93\x00\x00\x12\x25\x0b\xb9\xe8\x93\ -\x00\x00\x07\x43\x0b\xc4\xb1\x23\x00\x00\x02\xf1\x0b\xe2\xc4\x04\ -\x00\x00\x07\xe3\x0c\x02\xac\xd7\x00\x00\x01\xcc\x0c\x25\x3e\x53\ -\x00\x00\x09\x53\x0c\x4e\x9b\x23\x00\x00\x08\xd7\x0d\x1e\xda\xa4\ -\x00\x00\x00\x37\x0d\x3b\x3b\x49\x00\x00\x0c\x3d\x0e\x32\x23\x85\ -\x00\x00\x13\xe1\x0e\x8c\xd7\x43\x00\x00\x0b\x84\x0e\xec\x0b\x9e\ -\x00\x00\x02\x06\x69\x00\x00\x14\xae\x03\x00\x00\x00\x14\x00\x43\ -\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ -\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\x6d\x70\ -\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\x68\x01\ -\x03\x00\x00\x00\x32\x00\x43\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\ -\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x66\x00\ -\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x19\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\ -\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x04\x41\ -\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x52\x00\x65\x00\x6d\x00\ -\x6f\x00\x76\x00\x65\x00\x20\x00\x63\x00\x68\x00\x69\x00\x6c\x00\ -\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x52\x65\x6d\x6f\x76\ -\x65\x20\x63\x68\x69\x6c\x64\x07\x00\x00\x00\x04\x41\x72\x63\x68\ -\x01\x03\x00\x00\x00\x1a\x00\x41\x00\x64\x00\x64\x00\x20\x00\x63\ -\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x41\x64\x64\x20\x63\x6f\ -\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\ -\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x62\x00\x41\x00\x64\x00\x64\ -\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\ -\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x63\ -\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ -\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\ -\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x65\x00\x20\ -\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x31\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\ -\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ -\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\ -\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x41\x72\x63\x68\ -\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x10\x00\x42\x00\x75\x00\x69\ -\x00\x6c\x00\x64\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x08\x42\x75\x69\x6c\x64\x69\x6e\x67\x07\x00\x00\x00\ -\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\x03\ -\x00\x00\x00\x6a\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ -\x00\x73\x00\x20\x00\x61\x00\x20\x00\x62\x00\x75\x00\x69\x00\x6c\ -\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x62\x00\x6a\ -\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\ -\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x65\ -\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\ -\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x2e\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x35\x43\x72\x65\x61\x74\x65\x73\x20\ -\x61\x20\x62\x75\x69\x6c\x64\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\ -\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\ -\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\ -\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\x64\x69\x6e\x67\x01\ -\x03\x00\x00\x00\x08\x00\x43\x00\x65\x00\x6c\x00\x6c\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x04\x43\x65\x6c\x6c\x07\x00\x00\x00\x09\ -\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x60\x00\ -\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\ -\x61\x00\x20\x00\x63\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\ -\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ -\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\ -\x20\x61\x20\x63\x65\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\ -\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\ -\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x09\x41\x72\ -\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\x00\x00\x62\x00\x43\x00\ -\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\ -\x20\x00\x66\x00\x6c\x00\x6f\x00\x6f\x00\x72\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\ -\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ -\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\ -\x20\x61\x20\x66\x6c\x6f\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x20\ -\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\ -\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0a\x41\ -\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x0a\x00\ -\x46\x00\x6c\x00\x6f\x00\x6f\x00\x72\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\x00\x00\x0a\x41\x72\x63\ -\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\x00\x00\x5a\x00\x54\x00\ -\x75\x00\x72\x00\x6e\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ -\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6d\x00\x65\x00\ -\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\ -\x6f\x00\x20\x00\x50\x00\x61\x00\x72\x00\x74\x00\x20\x00\x53\x00\ -\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x2d\x54\x75\x72\x6e\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ -\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x50\x61\x72\x74\ -\x20\x53\x68\x61\x70\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ -\x00\x00\x0f\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x50\x61\ -\x72\x74\x01\x03\x00\x00\x00\x1a\x00\x4d\x00\x65\x00\x73\x00\x68\ -\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\ -\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\ -\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\x00\x00\x00\x10\x41\x72\ -\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\x68\x61\x70\x65\x01\x03\ -\x00\x00\x00\x20\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\ -\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ -\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x65\ -\x6d\x6f\x76\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\ -\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\ -\x00\x00\x00\xa4\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\ -\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\ -\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x63\x00\x6f\ -\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\ -\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\ -\x00\x65\x00\x69\x00\x72\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\ -\x00\x6e\x00\x74\x00\x73\x00\x2c\x00\x20\x00\x6f\x00\x72\x00\x20\ -\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x61\ -\x00\x20\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x20\x00\x69\x00\x6e\ -\x00\x20\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\ -\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x52\x52\x65\x6d\x6f\x76\x65\x20\x74\x68\x65\x20\x73\x65\x6c\ -\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\ -\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x69\x72\x20\x70\x61\x72\x65\ -\x6e\x74\x73\x2c\x20\x6f\x72\x20\x63\x72\x65\x61\x74\x65\x20\x61\ -\x20\x68\x6f\x6c\x65\x20\x69\x6e\x20\x61\x20\x63\x6f\x6d\x70\x6f\ -\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\ -\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\x2c\x00\x52\x00\x65\x00\x6d\ -\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\ -\x00\x65\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x41\ -\x00\x72\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\ -\x52\x65\x6d\x6f\x76\x65\x20\x53\x68\x61\x70\x65\x20\x66\x72\x6f\ -\x6d\x20\x41\x72\x63\x68\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\ -\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\ -\x52\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x73\x00\ -\x20\x00\x63\x00\x75\x00\x62\x00\x69\x00\x63\x00\x20\x00\x73\x00\ -\x68\x00\x61\x00\x70\x00\x65\x00\x73\x00\x20\x00\x66\x00\x72\x00\ -\x6f\x00\x6d\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\ -\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\ -\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x52\x65\x6d\ -\x6f\x76\x65\x73\x20\x63\x75\x62\x69\x63\x20\x73\x68\x61\x70\x65\ -\x73\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x20\x63\x6f\x6d\x70\ -\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x10\x41\x72\x63\x68\x5f\ -\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\x65\x01\x03\x00\x00\x00\ -\x56\x00\x41\x00\x64\x00\x64\x00\x73\x00\x20\x00\x61\x00\x20\x00\ -\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ -\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ -\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\ -\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x2b\x41\x64\x64\x73\x20\x61\x20\x73\x65\x63\x74\x69\x6f\x6e\x20\ -\x70\x6c\x61\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\ -\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\ -\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\ -\x6e\x65\x01\x03\x00\x00\x00\x1a\x00\x53\x00\x65\x00\x63\x00\x74\ -\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x6e\ -\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x65\x63\x74\ -\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x41\x72\ -\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\ -\x03\x00\x00\x00\x34\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ -\x74\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x6d\x00\x61\x00\ -\x6e\x00\x69\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x6d\x00\ -\x65\x00\x73\x00\x68\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\x6e\x6f\x6e\x2d\x6d\x61\ -\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\ -\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\ -\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\ -\x9a\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x73\x00\ -\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\ -\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\x66\x00\x6f\x00\x6c\x00\ -\x64\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x00\ -\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\ -\x65\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\ -\x6e\x00\x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\ -\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\ -\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\ -\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x73\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x4d\x53\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\ -\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\ -\x73\x68\x65\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x64\x6f\ -\x63\x75\x6d\x65\x6e\x74\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x74\ -\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x67\x72\x6f\x75\ -\x70\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\x65\ -\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\x73\ -\x01\x03\x00\x00\x00\x62\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\ -\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x73\x00\x69\x00\x74\ -\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ -\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x69\ -\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\ -\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ -\x00\x63\x00\x74\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x69\x74\x65\ -\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\ -\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ -\x74\x73\x2e\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\ -\x65\x01\x03\x00\x00\x00\x08\x00\x53\x00\x69\x00\x74\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\x69\x74\x65\x07\x00\x00\ -\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\ -\x14\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x20\x00\x4d\x00\ -\x65\x00\x73\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\ -\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\x00\x00\x00\x0e\x41\x72\ -\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\ -\x00\x64\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x73\x00\x20\ -\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\ -\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\ -\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x69\x00\x6e\x00\x64\ -\x00\x65\x00\x70\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x74\ -\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ -\x00\x6e\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x32\ -\x53\x70\x6c\x69\x74\x73\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ -\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x69\x6e\x64\x65\ -\x70\x65\x6e\x64\x65\x6e\x74\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\ -\x74\x73\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\ -\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\xbe\x00\x43\x00\x72\x00\ -\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\ -\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\ -\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ -\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x73\x00\x63\x00\ -\x72\x00\x61\x00\x74\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x72\x00\ -\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\ -\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ -\x28\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x2c\x00\ -\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x66\x00\ -\x61\x00\x63\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x73\x00\ -\x6f\x00\x6c\x00\x69\x00\x64\x00\x29\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x5f\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x73\x74\x72\ -\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\ -\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\ -\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ -\x6a\x65\x63\x74\x20\x28\x73\x6b\x65\x74\x63\x68\x2c\x20\x77\x69\ -\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\ -\x64\x29\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\ -\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\x12\x00\x53\x00\x74\x00\ -\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\x75\x63\x74\x75\x72\x65\ -\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\x72\x75\x63\x74\ -\x75\x72\x65\x01\x03\x00\x00\x00\xa4\x00\x43\x00\x72\x00\x65\x00\ -\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x77\x00\ -\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\ -\x73\x00\x63\x00\x72\x00\x61\x00\x74\x00\x63\x00\x68\x00\x20\x00\ -\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\ -\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ -\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ -\x74\x00\x20\x00\x28\x00\x77\x00\x69\x00\x72\x00\x65\x00\x2c\x00\ -\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6f\x00\x72\x00\ -\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x29\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x52\x43\x72\x65\x61\x74\x65\x73\x20\x61\ -\x20\x77\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\ -\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\ -\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ -\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\ -\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x09\x41\x72\ -\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\x08\x00\x57\x00\ -\x61\x00\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\ -\x61\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\ -\x6c\x01\x03\x00\x00\x00\xb4\x00\x43\x00\x72\x00\x65\x00\x61\x00\ -\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x77\x00\x69\x00\ -\x6e\x00\x64\x00\x6f\x00\x77\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ -\x20\x00\x73\x00\x63\x00\x72\x00\x61\x00\x74\x00\x63\x00\x68\x00\ -\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ -\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ -\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x63\x00\x74\x00\x20\x00\x28\x00\x77\x00\x69\x00\x72\x00\x65\x00\ -\x2c\x00\x20\x00\x72\x00\x65\x00\x63\x00\x74\x00\x61\x00\x6e\x00\ -\x67\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x73\x00\ -\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x29\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x5a\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x77\ -\x69\x6e\x64\x6f\x77\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x72\x6f\ -\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\x20\x66\x72\x6f\ -\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ -\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x72\x65\x63\x74\x61\ -\x6e\x67\x6c\x65\x20\x6f\x72\x20\x73\x6b\x65\x74\x63\x68\x29\x07\ -\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\x77\x01\ -\x03\x00\x00\x00\x0c\x00\x49\x00\x6b\x00\x6b\x00\x75\x00\x6e\x00\ -\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\ -\x77\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\x64\x6f\ -\x77\x01\x03\x00\x00\x00\x38\x00\x44\x00\x65\x00\x66\x00\x61\x00\ -\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\ -\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x74\x00\ -\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x73\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x44\x65\x66\x61\x75\x6c\x74\ -\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x74\x72\x75\x63\ -\x74\x75\x72\x65\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x2e\x00\x44\x00\x65\ -\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\ -\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ -\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x17\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\ -\x72\x20\x66\x6f\x72\x20\x77\x61\x6c\x6c\x73\x07\x00\x00\x00\x1c\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ -\x00\x2a\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\ -\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x53\x00\x65\ -\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x15\x47\x65\x6e\x65\x72\x61\x6c\x20\x41\x72\ -\x63\x68\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1c\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ -\x00\x20\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\ -\x00\x20\x00\x73\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\ -\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\ -\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\ -\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ -\x00\x00\x66\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\ -\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\x65\x00\ -\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\ -\x6c\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\ -\x6e\x00\x65\x00\x77\x00\x20\x00\x53\x00\x74\x00\x72\x00\x75\x00\ -\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x33\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\ -\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ -\x20\x6e\x65\x77\x20\x53\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\ -\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x5c\x00\x54\x00\ -\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\ -\x68\x00\x65\x00\x20\x00\x64\x00\x65\x00\x66\x00\x61\x00\x75\x00\ -\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ -\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x77\x00\ -\x20\x00\x57\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x2e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\ -\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ -\x20\x6e\x65\x77\x20\x57\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\ -\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ -\x63\x68\x01\x03\x00\x00\x00\x14\x00\x41\x00\x72\x00\x63\x00\x68\ -\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0a\x41\x72\x63\x68\x20\x74\x6f\x6f\x6c\x73\ -\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\ -\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\x74\x00\x65\x00\x63\x00\ -\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0c\x41\x72\x63\x68\x69\x74\x65\x63\x74\x75\x72\x65\x07\x00\x00\ -\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x0a\x00\x44\x00\x72\ -\x00\x61\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ -\x44\x72\x61\x66\x74\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\ -\x00\x00\x00\x16\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\ -\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x07\ -\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\x00\x10\x00\x54\ -\x00\x79\x00\xf6\x00\x6b\x00\x61\x00\x6c\x00\x75\x00\x74\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x05\x54\x6f\x6f\x6c\x73\x07\x00\x00\ -\x00\x04\x61\x72\x63\x68\x01\ -\x00\x00\x16\x30\ -\x3c\ -\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ -\x00\x00\x01\x50\x00\x04\x9c\x2c\x00\x00\x02\xcd\x00\x05\xa0\xa5\ -\x00\x00\x0b\x1f\x00\x05\xd8\x2c\x00\x00\x0e\xd3\x00\x39\xdf\x33\ -\x00\x00\x11\xca\x00\x4b\x87\xd4\x00\x00\x14\x34\x00\x4d\x36\x62\ -\x00\x00\x04\x57\x00\x5b\x66\x33\x00\x00\x14\x96\x00\x62\x9b\xa8\ -\x00\x00\x0b\x49\x00\xfb\x72\xf3\x00\x00\x11\x5a\x01\xf7\xa8\x83\ -\x00\x00\x13\x05\x02\x5f\xc9\x59\x00\x00\x0d\xbf\x02\x90\x40\x65\ -\x00\x00\x05\x30\x02\xb8\xae\x74\x00\x00\x05\x7c\x02\xcd\x05\xa3\ -\x00\x00\x04\x85\x02\xdd\x14\x14\x00\x00\x05\xcc\x02\xe5\xaa\xe4\ -\x00\x00\x00\x9d\x03\x1d\xe8\xe3\x00\x00\x10\x5f\x03\xd4\x22\x74\ -\x00\x00\x00\xda\x04\xdb\x21\x3e\x00\x00\x0a\x6e\x05\x18\xda\xa3\ -\x00\x00\x03\xa5\x05\xe0\x4b\x67\x00\x00\x10\x2b\x06\x32\xe3\xe3\ -\x00\x00\x14\x5c\x07\x60\x23\xf3\x00\x00\x00\x00\x09\x13\xce\x39\ -\x00\x00\x0e\xfd\x09\xba\xe6\x35\x00\x00\x0d\x83\x09\xe3\x98\xe4\ -\x00\x00\x01\x22\x09\xed\x98\x55\x00\x00\x08\x90\x0a\x7f\xee\xa3\ -\x00\x00\x13\xc0\x0b\x51\x30\xa8\x00\x00\x06\xe2\x0b\x65\xda\xb3\ -\x00\x00\x10\xe4\x0b\x8d\x97\x93\x00\x00\x12\x3b\x0b\xb9\xe8\x93\ -\x00\x00\x07\x49\x0b\xc4\xb1\x23\x00\x00\x02\xf7\x0b\xe2\xc4\x04\ -\x00\x00\x07\xe9\x0c\x02\xac\xd7\x00\x00\x01\xd2\x0c\x25\x3e\x53\ -\x00\x00\x09\x59\x0c\x4e\x9b\x23\x00\x00\x08\xdd\x0d\x1e\xda\xa4\ -\x00\x00\x00\x39\x0d\x3b\x3b\x49\x00\x00\x0c\x43\x0e\x32\x23\x85\ -\x00\x00\x13\xf7\x0e\x8c\xd7\x43\x00\x00\x0b\x8a\x0e\xec\x0b\x9e\ -\x00\x00\x02\x0c\x69\x00\x00\x14\xc6\x03\x00\x00\x00\x16\x00\x4b\ -\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\ -\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6f\ -\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x04\x41\x72\x63\ -\x68\x01\x03\x00\x00\x00\x32\x00\x43\x00\x6f\x00\x6d\x00\x70\x00\ -\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\x00\ -\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x19\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x6f\x66\ -\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ -\x04\x41\x72\x63\x68\x01\x03\x00\x00\x00\x18\x00\x52\x00\x65\x00\ -\x6d\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x63\x00\x68\x00\x69\x00\ -\x6c\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x52\x65\x6d\ -\x6f\x76\x65\x20\x63\x68\x69\x6c\x64\x07\x00\x00\x00\x04\x41\x72\ -\x63\x68\x01\x03\x00\x00\x00\x1e\x00\x54\x00\x65\x00\x69\x00\x6c\ -\x00\x20\x00\x68\x00\x69\x00\x6e\x00\x7a\x00\x75\x00\x66\x00\xfc\ -\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ -\x41\x64\x64\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\ -\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x62\ -\x00\x41\x00\x64\x00\x64\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\ -\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\ -\x00\x64\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\ -\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\ -\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\ -\x00\x76\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ -\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x41\x64\x64\x73\ -\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\ -\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\ -\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\ -\x00\x08\x41\x72\x63\x68\x5f\x41\x64\x64\x01\x03\x00\x00\x00\x10\ -\x00\x42\x00\x75\x00\x69\x00\x6c\x00\x64\x00\x69\x00\x6e\x00\x67\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x75\x69\x6c\x64\x69\ -\x6e\x67\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\x6c\ -\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x6a\x00\x43\x00\x72\x00\x65\ -\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x62\ -\x00\x75\x00\x69\x00\x6c\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\ -\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\ -\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\ -\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\ -\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ -\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x43\x72\ -\x65\x61\x74\x65\x73\x20\x61\x20\x62\x75\x69\x6c\x64\x69\x6e\x67\ -\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\ -\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ -\x74\x73\x2e\x07\x00\x00\x00\x0d\x41\x72\x63\x68\x5f\x42\x75\x69\ -\x6c\x64\x69\x6e\x67\x01\x03\x00\x00\x00\x08\x00\x43\x00\x65\x00\ -\x6c\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x43\x65\x6c\ -\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\ -\x03\x00\x00\x00\x60\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\ -\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x63\x00\x65\x00\x6c\x00\ -\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ -\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\ -\x6e\x00\x67\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ -\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\ -\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x65\x6c\x6c\x20\x6f\x62\ -\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\ -\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\ -\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x43\x65\x6c\x6c\x01\x03\x00\ -\x00\x00\x62\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\ -\x73\x00\x20\x00\x61\x00\x20\x00\x66\x00\x6c\x00\x6f\x00\x6f\x00\ -\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ -\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x64\x00\x69\x00\ -\x6e\x00\x67\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ -\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x31\x43\ -\x72\x65\x61\x74\x65\x73\x20\x61\x20\x66\x6c\x6f\x6f\x72\x20\x6f\ -\x62\x6a\x65\x63\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\ -\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x07\x00\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\ -\x03\x00\x00\x00\x0a\x00\x42\x00\x6f\x00\x64\x00\x65\x00\x6e\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x05\x46\x6c\x6f\x6f\x72\x07\x00\ -\x00\x00\x0a\x41\x72\x63\x68\x5f\x46\x6c\x6f\x6f\x72\x01\x03\x00\ -\x00\x00\x5a\x00\x54\x00\x75\x00\x72\x00\x6e\x00\x73\x00\x20\x00\ -\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ -\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\ -\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x50\x00\x61\x00\x72\x00\ -\x74\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x2d\x54\x75\x72\x6e\x73\x20\x73\x65\x6c\ -\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\ -\x6f\x20\x50\x61\x72\x74\x20\x53\x68\x61\x70\x65\x20\x6f\x62\x6a\ -\x65\x63\x74\x73\x07\x00\x00\x00\x0f\x41\x72\x63\x68\x5f\x4d\x65\ -\x73\x68\x54\x6f\x50\x61\x72\x74\x01\x03\x00\x00\x00\x1a\x00\x4d\ -\x00\x65\x00\x73\x00\x68\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x53\ -\x00\x68\x00\x61\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0d\x4d\x65\x73\x68\x20\x74\x6f\x20\x53\x68\x61\x70\x65\x07\ -\x00\x00\x00\x10\x41\x72\x63\x68\x5f\x4d\x65\x73\x68\x54\x6f\x53\ -\x68\x61\x70\x65\x01\x03\x00\x00\x00\x20\x00\x52\x00\x65\x00\x6d\ -\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ -\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x10\x52\x65\x6d\x6f\x76\x65\x20\x63\x6f\x6d\x70\x6f\ -\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x52\x65\ -\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\xa4\x00\x52\x00\x65\x00\x6d\ -\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ -\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\ -\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\ -\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\ -\x00\x20\x00\x74\x00\x68\x00\x65\x00\x69\x00\x72\x00\x20\x00\x70\ -\x00\x61\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x2c\x00\x20\ -\x00\x6f\x00\x72\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\ -\x00\x65\x00\x20\x00\x61\x00\x20\x00\x68\x00\x6f\x00\x6c\x00\x65\ -\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x63\x00\x6f\ -\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x52\x52\x65\x6d\x6f\x76\x65\x20\x74\ -\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x63\x6f\x6d\x70\ -\x6f\x6e\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x69\ -\x72\x20\x70\x61\x72\x65\x6e\x74\x73\x2c\x20\x6f\x72\x20\x63\x72\ -\x65\x61\x74\x65\x20\x61\x20\x68\x6f\x6c\x65\x20\x69\x6e\x20\x61\ -\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x07\x00\x00\x00\x0b\x41\ -\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x01\x03\x00\x00\x00\x2c\ -\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x53\ -\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x66\x00\x72\x00\x6f\ -\x00\x6d\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x16\x52\x65\x6d\x6f\x76\x65\x20\x53\x68\x61\ -\x70\x65\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\x68\x07\x00\x00\x00\ -\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\ -\x65\x01\x03\x00\x00\x00\x52\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\ -\x76\x00\x65\x00\x73\x00\x20\x00\x63\x00\x75\x00\x62\x00\x69\x00\ -\x63\x00\x20\x00\x73\x00\x68\x00\x61\x00\x70\x00\x65\x00\x73\x00\ -\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x41\x00\x72\x00\ -\x63\x00\x68\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\ -\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x29\x52\x65\x6d\x6f\x76\x65\x73\x20\x63\x75\x62\x69\x63\ -\x20\x73\x68\x61\x70\x65\x73\x20\x66\x72\x6f\x6d\x20\x41\x72\x63\ -\x68\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\ -\x10\x41\x72\x63\x68\x5f\x52\x65\x6d\x6f\x76\x65\x53\x68\x61\x70\ -\x65\x01\x03\x00\x00\x00\x56\x00\x41\x00\x64\x00\x64\x00\x73\x00\ -\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x63\x00\x74\x00\x69\x00\ -\x6f\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ -\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\ -\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x2b\x41\x64\x64\x73\x20\x61\x20\x73\x65\ -\x63\x74\x69\x6f\x6e\x20\x70\x6c\x61\x6e\x65\x20\x6f\x62\x6a\x65\ -\x63\x74\x20\x74\x6f\x20\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\ -\x6e\x74\x07\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\ -\x69\x6f\x6e\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x1a\x00\x53\ -\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x50\ -\x00\x6c\x00\x61\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0d\x53\x65\x63\x74\x69\x6f\x6e\x20\x50\x6c\x61\x6e\x65\x07\ -\x00\x00\x00\x11\x41\x72\x63\x68\x5f\x53\x65\x63\x74\x69\x6f\x6e\ -\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x34\x00\x53\x00\x65\x00\ -\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\ -\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\x66\x00\x6f\x00\x6c\x00\ -\x64\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\ -\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\x6f\x6c\x64\x20\x6d\x65\x73\ -\x68\x65\x73\x07\x00\x00\x00\x19\x41\x72\x63\x68\x5f\x53\x65\x6c\ -\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\x4d\x65\x73\x68\x65\ -\x73\x01\x03\x00\x00\x00\x9a\x00\x53\x00\x65\x00\x6c\x00\x65\x00\ -\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\ -\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x6d\x00\x61\x00\x6e\x00\x69\x00\ -\x66\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x6d\x00\x65\x00\x73\x00\ -\x68\x00\x65\x00\x73\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ -\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x63\x00\ -\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x72\x00\ -\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\ -\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ -\x65\x00\x64\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\ -\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x53\x65\x6c\x65\x63\ -\x74\x73\x20\x61\x6c\x6c\x20\x6e\x6f\x6e\x2d\x6d\x61\x6e\x69\x66\ -\x6f\x6c\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x66\x72\x6f\x6d\x20\ -\x74\x68\x65\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x20\x6f\x72\x20\ -\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ -\x64\x20\x67\x72\x6f\x75\x70\x73\x07\x00\x00\x00\x19\x41\x72\x63\ -\x68\x5f\x53\x65\x6c\x65\x63\x74\x4e\x6f\x6e\x53\x6f\x6c\x69\x64\ -\x4d\x65\x73\x68\x65\x73\x01\x03\x00\x00\x00\x62\x00\x43\x00\x72\ -\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\ -\x00\x73\x00\x69\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\ -\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x63\x00\x6c\ -\x00\x75\x00\x64\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x65\ -\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\ -\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x2e\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x31\x43\x72\x65\x61\x74\x65\x73\x20\ -\x61\x20\x73\x69\x74\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\ -\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ -\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x09\x41\x72\ -\x63\x68\x5f\x53\x69\x74\x65\x01\x03\x00\x00\x00\x08\x00\x53\x00\ -\x69\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x53\ -\x69\x74\x65\x07\x00\x00\x00\x09\x41\x72\x63\x68\x5f\x53\x69\x74\ -\x65\x01\x03\x00\x00\x00\x14\x00\x53\x00\x70\x00\x6c\x00\x69\x00\ -\x74\x00\x20\x00\x4d\x00\x65\x00\x73\x00\x68\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x0a\x53\x70\x6c\x69\x74\x20\x4d\x65\x73\x68\x07\ -\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\ -\x73\x68\x01\x03\x00\x00\x00\x64\x00\x53\x00\x70\x00\x6c\x00\x69\ -\x00\x74\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\ -\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\ -\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\ -\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x70\x00\x65\x00\x6e\x00\x64\ -\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ -\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x73\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x32\x53\x70\x6c\x69\x74\x73\x20\x73\x65\x6c\ -\x65\x63\x74\x65\x64\x20\x6d\x65\x73\x68\x65\x73\x20\x69\x6e\x74\ -\x6f\x20\x69\x6e\x64\x65\x70\x65\x6e\x64\x65\x6e\x74\x20\x63\x6f\ -\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x07\x00\x00\x00\x0e\x41\x72\x63\ -\x68\x5f\x53\x70\x6c\x69\x74\x4d\x65\x73\x68\x01\x03\x00\x00\x00\ -\xbe\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\ -\x20\x00\x61\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\ -\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ -\x20\x00\x73\x00\x63\x00\x72\x00\x61\x00\x74\x00\x63\x00\x68\x00\ -\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ -\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ -\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x63\x00\x74\x00\x20\x00\x28\x00\x73\x00\x6b\x00\x65\x00\x74\x00\ -\x63\x00\x68\x00\x2c\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\ -\x2c\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6f\x00\ -\x72\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x29\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x5f\x43\x72\x65\x61\x74\x65\x73\ -\x20\x61\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6f\x62\x6a\ -\x65\x63\x74\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\ -\x20\x6f\x72\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\ -\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x73\x6b\x65\x74\ -\x63\x68\x2c\x20\x77\x69\x72\x65\x2c\x20\x66\x61\x63\x65\x20\x6f\ -\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\x00\x0e\x41\x72\x63\ -\x68\x5f\x53\x74\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\ -\x10\x00\x53\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\ -\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x53\x74\x72\x75\x63\ -\x74\x75\x72\x65\x07\x00\x00\x00\x0e\x41\x72\x63\x68\x5f\x53\x74\ -\x72\x75\x63\x74\x75\x72\x65\x01\x03\x00\x00\x00\xa4\x00\x43\x00\ -\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\ -\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\ -\x6d\x00\x20\x00\x73\x00\x63\x00\x72\x00\x61\x00\x74\x00\x63\x00\ -\x68\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\x6f\x00\ -\x6d\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ -\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x63\x00\x74\x00\x20\x00\x28\x00\x77\x00\x69\x00\x72\x00\ -\x65\x00\x2c\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\ -\x6f\x00\x72\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\ -\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x43\x72\x65\x61\x74\ -\x65\x73\x20\x61\x20\x77\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\ -\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\ -\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ -\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x66\ -\x61\x63\x65\x20\x6f\x72\x20\x73\x6f\x6c\x69\x64\x29\x07\x00\x00\ -\x00\x09\x41\x72\x63\x68\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\ -\x08\x00\x57\x00\x61\x00\x6e\x00\x64\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x04\x57\x61\x6c\x6c\x07\x00\x00\x00\x09\x41\x72\x63\x68\ -\x5f\x57\x61\x6c\x6c\x01\x03\x00\x00\x00\xb4\x00\x43\x00\x72\x00\ -\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\ -\x77\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x77\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x66\x00\x72\x00\ -\x6f\x00\x6d\x00\x20\x00\x73\x00\x63\x00\x72\x00\x61\x00\x74\x00\ -\x63\x00\x68\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\ -\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ -\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x28\x00\x77\x00\x69\x00\ -\x72\x00\x65\x00\x2c\x00\x20\x00\x72\x00\x65\x00\x63\x00\x74\x00\ -\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x72\x00\ -\x20\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x29\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x5a\x43\x72\x65\x61\x74\x65\x73\ -\x20\x61\x20\x77\x69\x6e\x64\x6f\x77\x20\x6f\x62\x6a\x65\x63\x74\ -\x20\x66\x72\x6f\x6d\x20\x73\x63\x72\x61\x74\x63\x68\x20\x6f\x72\ -\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ -\x20\x6f\x62\x6a\x65\x63\x74\x20\x28\x77\x69\x72\x65\x2c\x20\x72\ -\x65\x63\x74\x61\x6e\x67\x6c\x65\x20\x6f\x72\x20\x73\x6b\x65\x74\ -\x63\x68\x29\x07\x00\x00\x00\x0b\x41\x72\x63\x68\x5f\x57\x69\x6e\ -\x64\x6f\x77\x01\x03\x00\x00\x00\x0e\x00\x46\x00\x65\x00\x6e\x00\ -\x73\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x06\x57\x69\x6e\x64\x6f\x77\x07\x00\x00\x00\x0b\x41\x72\x63\x68\ -\x5f\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x38\x00\x44\x00\ -\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\ -\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ -\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\ -\x72\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x44\ -\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ -\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x73\x07\x00\x00\x00\x1c\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\ -\x00\x2e\x00\x44\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\ -\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x66\ -\x00\x6f\x00\x72\x00\x20\x00\x77\x00\x61\x00\x6c\x00\x6c\x00\x73\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x44\x65\x66\x61\x75\x6c\ -\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x77\x61\x6c\x6c\ -\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ -\x63\x68\x01\x03\x00\x00\x00\x2a\x00\x47\x00\x65\x00\x6e\x00\x65\ -\x00\x72\x00\x61\x00\x6c\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\ -\x00\x20\x00\x53\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\ -\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x47\x65\x6e\x65\ -\x72\x61\x6c\x20\x41\x72\x63\x68\x20\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\ -\x63\x68\x01\x03\x00\x00\x00\x30\x00\x41\x00\x6c\x00\x6c\x00\x67\ -\x00\x65\x00\x6d\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x45\ -\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x75\ -\x00\x6e\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\ -\x67\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\ -\x72\x63\x68\x01\x03\x00\x00\x00\x66\x00\x54\x00\x68\x00\x69\x00\ -\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\ -\x20\x00\x64\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\ -\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x66\x00\ -\x6f\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\x53\x00\ -\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x33\x54\x68\x69\x73\x20\x69\x73\ -\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ -\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x53\x74\x72\x75\x63\ -\x74\x75\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\ -\x1c\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\ -\x00\x00\x5c\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\ -\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\x65\x00\ -\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\ -\x6c\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\ -\x6e\x00\x65\x00\x77\x00\x20\x00\x57\x00\x61\x00\x6c\x00\x6c\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x54\x68\x69\x73\x20\x69\x73\ -\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ -\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x57\x61\x6c\x6c\x20\ -\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1c\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x41\x72\x63\x68\x01\x03\x00\x00\x00\x14\x00\x41\ -\x00\x72\x00\x63\x00\x68\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\ -\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x41\x72\x63\x68\ -\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ -\x03\x00\x00\x00\x18\x00\x41\x00\x72\x00\x63\x00\x68\x00\x69\x00\ -\x74\x00\x65\x00\x63\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0c\x41\x72\x63\x68\x69\x74\x65\x63\x74\ -\x75\x72\x65\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\x00\x00\ -\x00\x0a\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x05\x44\x72\x61\x66\x74\x07\x00\x00\x00\x04\ -\x61\x72\x63\x68\x01\x03\x00\x00\x00\x16\x00\x44\x00\x72\x00\x61\ -\x00\x66\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x20\ -\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\x03\ -\x00\x00\x00\x12\x00\x57\x00\x65\x00\x72\x00\x6b\x00\x7a\x00\x65\ -\x00\x75\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ -\x54\x6f\x6f\x6c\x73\x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ \x00\x00\x05\xb5\ \x00\ \x00\x27\xfd\x78\x9c\xed\x5a\x6d\x4f\xe3\x38\x10\xfe\xce\xaf\xb0\ @@ -11155,50 +32873,70 @@ qt_resource_name = "\ \x00\x74\ \x00\x72\x00\x61\x00\x6e\x00\x73\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\ \x00\x0a\ -\x0e\x79\xa4\x5d\ +\x0e\x69\x54\x5d\ \x00\x41\ -\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x7a\x00\x68\x00\x2e\x00\x71\x00\x6d\ +\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x6a\x00\x61\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ +\x0e\x53\x74\x5d\ +\x00\x41\ +\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x63\x00\x73\x00\x2e\x00\x71\x00\x6d\ \x00\x0a\ \x0e\x56\x94\x5d\ \x00\x41\ \x00\x72\x00\x63\x00\x68\x00\x5f\x00\x68\x00\x75\x00\x2e\x00\x71\x00\x6d\ \x00\x0a\ -\x0e\x55\x74\x5d\ +\x0e\x54\x44\x5d\ \x00\x41\ -\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x65\x00\x73\x00\x2e\x00\x71\x00\x6d\ +\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x66\x00\x72\x00\x2e\x00\x71\x00\x6d\ +\x00\x0d\ +\x0a\x07\xda\x5d\ +\x00\x41\ +\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x7a\x00\x68\x00\x2d\x00\x43\x00\x4e\x00\x2e\x00\x71\x00\x6d\ +\x00\x0d\ +\x08\x34\xc9\x1d\ +\x00\x41\ +\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x73\x00\x76\x00\x2d\x00\x53\x00\x45\x00\x2e\x00\x71\x00\x6d\ \x00\x0a\ \x0e\x6d\xe4\x5d\ \x00\x41\ \x00\x72\x00\x63\x00\x68\x00\x5f\x00\x6e\x00\x6c\x00\x2e\x00\x71\x00\x6d\ \x00\x0a\ -\x0e\x54\x44\x5d\ -\x00\x41\ -\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x66\x00\x72\x00\x2e\x00\x71\x00\x6d\ -\x00\x0a\ -\x0e\x6f\xe4\x5d\ -\x00\x41\ -\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x70\x00\x6c\x00\x2e\x00\x71\x00\x6d\ -\x00\x0a\ -\x0e\x69\x64\x5d\ -\x00\x41\ -\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x69\x00\x74\x00\x2e\x00\x71\x00\x6d\ -\x00\x0a\ -\x0e\x56\x44\x5d\ -\x00\x41\ -\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x68\x00\x72\x00\x2e\x00\x71\x00\x6d\ -\x00\x0a\ \x0e\x62\xf4\x5d\ \x00\x41\ \x00\x72\x00\x63\x00\x68\x00\x5f\x00\x75\x00\x6b\x00\x2e\x00\x71\x00\x6d\ \x00\x0a\ -\x0e\x69\x54\x5d\ +\x0e\x6c\x34\x5d\ \x00\x41\ -\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x6a\x00\x61\x00\x2e\x00\x71\x00\x6d\ +\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x6e\x00\x6f\x00\x2e\x00\x71\x00\x6d\ +\x00\x0d\ +\x06\x04\x98\xbd\ +\x00\x41\ +\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x70\x00\x74\x00\x2d\x00\x42\x00\x52\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ +\x0e\x79\xa4\x5d\ +\x00\x41\ +\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x7a\x00\x68\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ +\x0e\x60\x34\x5d\ +\x00\x41\ +\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x72\x00\x6f\x00\x2e\x00\x71\x00\x6d\ \x00\x0a\ \x0e\x5e\x84\x5d\ \x00\x41\ \x00\x72\x00\x63\x00\x68\x00\x5f\x00\x61\x00\x66\x00\x2e\x00\x71\x00\x6d\ \x00\x0a\ +\x0e\x53\x94\x5d\ +\x00\x41\ +\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x64\x00\x65\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ +\x0e\x55\x74\x5d\ +\x00\x41\ +\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x65\x00\x73\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ +\x0e\x62\x44\x5d\ +\x00\x41\ +\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x74\x00\x72\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ \x0e\x60\x94\x5d\ \x00\x41\ \x00\x72\x00\x63\x00\x68\x00\x5f\x00\x72\x00\x75\x00\x2e\x00\x71\x00\x6d\ @@ -11207,21 +32945,37 @@ qt_resource_name = "\ \x00\x41\ \x00\x72\x00\x63\x00\x68\x00\x5f\x00\x73\x00\x65\x00\x2e\x00\x71\x00\x6d\ \x00\x0a\ -\x0e\x6e\x64\x5d\ +\x0e\x56\x44\x5d\ \x00\x41\ -\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x70\x00\x74\x00\x2e\x00\x71\x00\x6d\ +\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x68\x00\x72\x00\x2e\x00\x71\x00\x6d\ \x00\x0a\ -\x0e\x6c\x34\x5d\ +\x0e\x69\x64\x5d\ \x00\x41\ -\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x6e\x00\x6f\x00\x2e\x00\x71\x00\x6d\ +\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x69\x00\x74\x00\x2e\x00\x71\x00\x6d\ +\x00\x0d\ +\x0a\x3a\x6a\x5d\ +\x00\x41\ +\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x7a\x00\x68\x00\x2d\x00\x54\x00\x57\x00\x2e\x00\x71\x00\x6d\ \x00\x0a\ \x0e\x55\xd4\x5d\ \x00\x41\ \x00\x72\x00\x63\x00\x68\x00\x5f\x00\x66\x00\x69\x00\x2e\x00\x71\x00\x6d\ \x00\x0a\ -\x0e\x53\x94\x5d\ +\x0e\x6f\xe4\x5d\ \x00\x41\ -\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x64\x00\x65\x00\x2e\x00\x71\x00\x6d\ +\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x70\x00\x6c\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ +\x0e\x60\xf4\x5d\ +\x00\x41\ +\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x73\x00\x6b\x00\x2e\x00\x71\x00\x6d\ +\x00\x0d\ +\x07\x09\xaf\xdd\ +\x00\x41\ +\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x65\x00\x73\x00\x2d\x00\x45\x00\x53\x00\x2e\x00\x71\x00\x6d\ +\x00\x0a\ +\x0e\x6e\x64\x5d\ +\x00\x41\ +\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x70\x00\x74\x00\x2e\x00\x71\x00\x6d\ \x00\x11\ \x06\x3d\x16\x19\ \x00\x61\ @@ -11366,56 +33120,65 @@ qt_resource_name = "\ qt_resource_struct = "\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x01\ -\x00\x00\x00\x10\x00\x02\x00\x00\x00\x01\x00\x00\x00\x32\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x1d\x00\x00\x00\x15\ -\x00\x00\x00\x1a\x00\x02\x00\x00\x00\x11\x00\x00\x00\x04\ -\x00\x00\x01\xd8\x00\x00\x00\x00\x00\x01\x00\x01\x60\x78\ -\x00\x00\x00\xa0\x00\x00\x00\x00\x00\x01\x00\x00\x55\x20\ -\x00\x00\x00\x6c\x00\x00\x00\x00\x00\x01\x00\x00\x26\xb4\ -\x00\x00\x01\xbe\x00\x00\x00\x00\x00\x01\x00\x01\x4a\x5c\ -\x00\x00\x00\xee\x00\x00\x00\x00\x00\x01\x00\x00\x99\x08\ -\x00\x00\x00\x52\x00\x00\x00\x00\x00\x01\x00\x00\x0e\xf6\ -\x00\x00\x01\x3c\x00\x00\x00\x00\x00\x01\x00\x00\xda\x78\ -\x00\x00\x01\x56\x00\x00\x00\x00\x00\x01\x00\x00\xf0\xa0\ -\x00\x00\x01\x70\x00\x00\x00\x00\x00\x01\x00\x01\x07\x08\ -\x00\x00\x01\x08\x00\x00\x00\x00\x00\x01\x00\x00\xae\x6c\ -\x00\x00\x01\x22\x00\x00\x00\x00\x00\x01\x00\x00\xc4\x7c\ -\x00\x00\x00\xd4\x00\x00\x00\x00\x00\x01\x00\x00\x81\xe4\ -\x00\x00\x01\xa4\x00\x00\x00\x00\x00\x01\x00\x01\x34\x38\ -\x00\x00\x00\x86\x00\x00\x00\x00\x00\x01\x00\x00\x3e\x30\ -\x00\x00\x01\x8a\x00\x00\x00\x00\x00\x01\x00\x01\x1d\x6e\ -\x00\x00\x00\xba\x00\x00\x00\x00\x00\x01\x00\x00\x6c\x7e\ +\x00\x00\x00\x10\x00\x02\x00\x00\x00\x01\x00\x00\x00\x3b\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x1d\x00\x00\x00\x1e\ +\x00\x00\x00\x1a\x00\x02\x00\x00\x00\x1a\x00\x00\x00\x04\ +\x00\x00\x01\x2e\x00\x00\x00\x00\x00\x01\x00\x02\x9d\x5d\ +\x00\x00\x02\xc0\x00\x00\x00\x00\x00\x01\x00\x06\x5c\x5b\ +\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x01\x00\x01\x71\xd9\ +\x00\x00\x00\xa0\x00\x00\x00\x00\x00\x01\x00\x01\x34\xa6\ +\x00\x00\x02\x52\x00\x00\x00\x00\x00\x01\x00\x05\x40\x3f\ +\x00\x00\x00\x52\x00\x00\x00\x00\x00\x01\x00\x00\x49\xad\ +\x00\x00\x01\x9c\x00\x00\x00\x00\x00\x01\x00\x03\x90\xbc\ +\x00\x00\x00\x86\x00\x00\x00\x00\x00\x01\x00\x00\xe3\xe7\ +\x00\x00\x01\xb6\x00\x00\x00\x00\x00\x01\x00\x03\xe1\x11\ +\x00\x00\x02\x72\x00\x00\x00\x00\x00\x01\x00\x05\x7b\x72\ +\x00\x00\x02\x1e\x00\x00\x00\x00\x00\x01\x00\x04\xa5\xa5\ +\x00\x00\x00\x6c\x00\x00\x00\x00\x00\x01\x00\x00\x94\x02\ +\x00\x00\x01\x82\x00\x00\x00\x00\x00\x01\x00\x03\x46\x0f\ +\x00\x00\x01\x68\x00\x00\x00\x00\x00\x01\x00\x02\xfb\x3a\ +\x00\x00\x01\xea\x00\x00\x00\x00\x00\x01\x00\x04\x43\x66\ +\x00\x00\x02\x04\x00\x00\x00\x00\x00\x01\x00\x04\x8f\x3f\ +\x00\x00\x02\xa6\x00\x00\x00\x00\x00\x01\x00\x06\x11\xb6\ +\x00\x00\x01\xd0\x00\x00\x00\x00\x00\x01\x00\x03\xf8\x8d\ +\x00\x00\x00\xfa\x00\x00\x00\x00\x00\x01\x00\x02\x08\x65\ \x00\x00\x00\x38\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00\x05\x6e\x00\x01\x00\x00\x00\x01\x00\x02\x53\xc3\ -\x00\x00\x04\x7a\x00\x00\x00\x00\x00\x01\x00\x02\x15\xf4\ -\x00\x00\x03\x16\x00\x00\x00\x00\x00\x01\x00\x01\xb7\xf8\ -\x00\x00\x06\x9e\x00\x01\x00\x00\x00\x01\x00\x02\xaa\x2d\ -\x00\x00\x05\x40\x00\x01\x00\x00\x00\x01\x00\x02\x4c\xf1\ -\x00\x00\x03\x50\x00\x01\x00\x00\x00\x01\x00\x01\xc6\x67\ -\x00\x00\x03\xa2\x00\x01\x00\x00\x00\x01\x00\x01\xd9\xee\ -\x00\x00\x02\xba\x00\x01\x00\x00\x00\x01\x00\x01\x9d\x56\ -\x00\x00\x06\x38\x00\x00\x00\x00\x00\x01\x00\x02\x86\xe9\ -\x00\x00\x04\xba\x00\x00\x00\x00\x00\x01\x00\x02\x2f\xce\ -\x00\x00\x04\x5a\x00\x01\x00\x00\x00\x01\x00\x02\x0e\x2c\ -\x00\x00\x02\x98\x00\x01\x00\x00\x00\x01\x00\x01\x94\x5d\ -\x00\x00\x06\x0e\x00\x01\x00\x00\x00\x01\x00\x02\x7f\x54\ -\x00\x00\x03\x7e\x00\x01\x00\x00\x00\x01\x00\x01\xcf\xbf\ -\x00\x00\x02\x4e\x00\x01\x00\x00\x00\x01\x00\x01\x83\xb5\ -\x00\x00\x02\x78\x00\x01\x00\x00\x00\x01\x00\x01\x8d\x5d\ -\x00\x00\x04\xea\x00\x01\x00\x00\x00\x01\x00\x02\x3f\x3c\ -\x00\x00\x04\x0e\x00\x00\x00\x00\x00\x01\x00\x01\xf5\xe9\ -\x00\x00\x05\x18\x00\x01\x00\x00\x00\x01\x00\x02\x44\x8c\ -\x00\x00\x04\x38\x00\x01\x00\x00\x00\x01\x00\x02\x06\x6a\ -\x00\x00\x05\x98\x00\x00\x00\x00\x00\x01\x00\x02\x5a\x9d\ -\x00\x00\x03\xc6\x00\x01\x00\x00\x00\x01\x00\x01\xdf\x05\ -\x00\x00\x05\xe2\x00\x01\x00\x00\x00\x01\x00\x02\x76\xda\ -\x00\x00\x05\xc2\x00\x01\x00\x00\x00\x01\x00\x02\x6c\xa0\ -\x00\x00\x04\x9a\x00\x01\x00\x00\x00\x01\x00\x02\x29\xb6\ -\x00\x00\x06\x64\x00\x00\x00\x00\x00\x01\x00\x02\x98\xb8\ -\x00\x00\x02\xec\x00\x00\x00\x00\x00\x01\x00\x01\xa5\x98\ -\x00\x00\x03\xf0\x00\x00\x00\x00\x00\x01\x00\x01\xe6\xed\ -\x00\x00\x02\x1a\x00\x01\x00\x00\x00\x01\x00\x01\x7c\x65\ -\x00\x00\x01\xf2\x00\x01\x00\x00\x00\x01\x00\x01\x76\xac\ +\x00\x00\x02\x38\x00\x00\x00\x00\x00\x01\x00\x04\xf0\x2a\ +\x00\x00\x01\x14\x00\x00\x00\x00\x00\x01\x00\x02\x52\xf6\ +\x00\x00\x00\xe0\x00\x00\x00\x00\x00\x01\x00\x01\xbd\x0a\ +\x00\x00\x02\xe0\x00\x00\x00\x00\x00\x01\x00\x06\xab\xc6\ +\x00\x00\x02\x8c\x00\x00\x00\x00\x00\x01\x00\x05\xc6\x23\ +\x00\x00\x01\x4e\x00\x00\x00\x00\x00\x01\x00\x02\xec\x44\ +\x00\x00\x06\x76\x00\x01\x00\x00\x00\x01\x00\x07\x9f\xa7\ +\x00\x00\x05\x82\x00\x00\x00\x00\x00\x01\x00\x07\x61\xd8\ +\x00\x00\x04\x1e\x00\x00\x00\x00\x00\x01\x00\x07\x03\xdc\ +\x00\x00\x07\xa6\x00\x01\x00\x00\x00\x01\x00\x07\xf6\x11\ +\x00\x00\x06\x48\x00\x01\x00\x00\x00\x01\x00\x07\x98\xd5\ +\x00\x00\x04\x58\x00\x01\x00\x00\x00\x01\x00\x07\x12\x4b\ +\x00\x00\x04\xaa\x00\x01\x00\x00\x00\x01\x00\x07\x25\xd2\ +\x00\x00\x03\xc2\x00\x01\x00\x00\x00\x01\x00\x06\xe9\x3a\ +\x00\x00\x07\x40\x00\x00\x00\x00\x00\x01\x00\x07\xd2\xcd\ +\x00\x00\x05\xc2\x00\x00\x00\x00\x00\x01\x00\x07\x7b\xb2\ +\x00\x00\x05\x62\x00\x01\x00\x00\x00\x01\x00\x07\x5a\x10\ +\x00\x00\x03\xa0\x00\x01\x00\x00\x00\x01\x00\x06\xe0\x41\ +\x00\x00\x07\x16\x00\x01\x00\x00\x00\x01\x00\x07\xcb\x38\ +\x00\x00\x04\x86\x00\x01\x00\x00\x00\x01\x00\x07\x1b\xa3\ +\x00\x00\x03\x56\x00\x01\x00\x00\x00\x01\x00\x06\xcf\x99\ +\x00\x00\x03\x80\x00\x01\x00\x00\x00\x01\x00\x06\xd9\x41\ +\x00\x00\x05\xf2\x00\x01\x00\x00\x00\x01\x00\x07\x8b\x20\ +\x00\x00\x05\x16\x00\x00\x00\x00\x00\x01\x00\x07\x41\xcd\ +\x00\x00\x06\x20\x00\x01\x00\x00\x00\x01\x00\x07\x90\x70\ +\x00\x00\x05\x40\x00\x01\x00\x00\x00\x01\x00\x07\x52\x4e\ +\x00\x00\x06\xa0\x00\x00\x00\x00\x00\x01\x00\x07\xa6\x81\ +\x00\x00\x04\xce\x00\x01\x00\x00\x00\x01\x00\x07\x2a\xe9\ +\x00\x00\x06\xea\x00\x01\x00\x00\x00\x01\x00\x07\xc2\xbe\ +\x00\x00\x06\xca\x00\x01\x00\x00\x00\x01\x00\x07\xb8\x84\ +\x00\x00\x05\xa2\x00\x01\x00\x00\x00\x01\x00\x07\x75\x9a\ +\x00\x00\x07\x6c\x00\x00\x00\x00\x00\x01\x00\x07\xe4\x9c\ +\x00\x00\x03\xf4\x00\x00\x00\x00\x00\x01\x00\x06\xf1\x7c\ +\x00\x00\x04\xf8\x00\x00\x00\x00\x00\x01\x00\x07\x32\xd1\ +\x00\x00\x03\x22\x00\x01\x00\x00\x00\x01\x00\x06\xc8\x49\ +\x00\x00\x02\xfa\x00\x01\x00\x00\x00\x01\x00\x06\xc2\x90\ " def qInitResources(): diff --git a/src/Mod/Arch/Resources/Arch.qrc b/src/Mod/Arch/Resources/Arch.qrc index 63e079000..dd016bbb1 100644 --- a/src/Mod/Arch/Resources/Arch.qrc +++ b/src/Mod/Arch/Resources/Arch.qrc @@ -32,20 +32,25 @@ ui/archprefs-base.ui translations/Arch_af.qm translations/Arch_de.qm - translations/Arch_es.qm translations/Arch_fi.qm translations/Arch_fr.qm translations/Arch_it.qm translations/Arch_nl.qm translations/Arch_no.qm translations/Arch_ru.qm - translations/Arch_se.qm translations/Arch_uk.qm translations/Arch_pl.qm - translations/Arch_pt.qm translations/Arch_hr.qm - translations/Arch_zh.qm translations/Arch_ja.qm translations/Arch_hu.qm + translations/Arch_tr.qm + translations/Arch_sv-SE.qm + translations/Arch_zh-TW.qm + translations/Arch_pt-BR.qm + translations/Arch_cs.qm + translations/Arch_sk.qm + translations/Arch_es-ES.qm + translations/Arch_zh-CN.qm + translations/Arch_ro.qm diff --git a/src/Mod/Arch/Resources/translations/Arch_af.qm b/src/Mod/Arch/Resources/translations/Arch_af.qm index b669624f3..02a042c41 100644 Binary files a/src/Mod/Arch/Resources/translations/Arch_af.qm and b/src/Mod/Arch/Resources/translations/Arch_af.qm differ diff --git a/src/Mod/Arch/Resources/translations/Arch_af.ts b/src/Mod/Arch/Resources/translations/Arch_af.ts index fd9a51b9a..cb0bf3f73 100644 --- a/src/Mod/Arch/Resources/translations/Arch_af.ts +++ b/src/Mod/Arch/Resources/translations/Arch_af.ts @@ -4,189 +4,711 @@ Arch - + Components Komponente - - Remove child - Remove child + + Components of this object + Komponente van hierdie voorwerp - - Components of this object - Components of this object + + Axes + Axes + + + + Create Axis + Create Axis + + + + The intervals between axes + The intervals between axes + + + + The angles of each axis + The angles of each axis + + + + The length of the axes + The length of the axes + + + + The size of the axis bubbles + The size of the axis bubbles + + + + The numeration style + The numeration style + + + + Remove + Verwyder + + + + Add + Voeg by + + + + Distances and angles between axes + Distances and angles between axes + + + + Axis + Axis + + + + Distance + Afstand + + + + Angle + Hoek + + + + Building + Bou + + + + Type conversion + Type conversion + + + + Create Building + Create Building + + + + Floor + Vloer + + + + removing sketch support to avoid cross-referencing + removing sketch support to avoid cross-referencing + + + + No objects are cut by the plane + No objects are cut by the plane + + + + is not closed + is not closed + + + + is not valid + is not valid + + + + doesn't contain any solid + doesn't contain any solid + + + + contains a non-closed solid + contains a non-closed solid + + + + contains faces that are not part of any solid + contains faces that are not part of any solid + + + + Grouping + Grouping + + + + Ungrouping + Ungrouping + + + + Split Mesh + Deel maas op + + + + Mesh to Shape + Maas na Vorm + + + + All good! no problems found + All good! no problems found + + + + Base component + Base component + + + + Additions + Additions + + + + Subtractions + Subtractions + + + + Objects + Objects + + + + closing Sketch edit + closing Sketch edit + + + + The height of this floor + The height of this floor + + + + Roof + Roof + + + + Create Roof + Create Roof + + + + Unable to create a roof + Unable to create a roof + + + + No object selected + No object selected + + + + The angle of this roof + The angle of this roof + + + + The face number of the base object used to build this roof + The face number of the base object used to build this roof + + + + Page + Page + + + + View of + View of + + + + Create Section Plane + Create Section Plane + + + + The objects that must be considered by this section plane. Empty means all document + The objects that must be considered by this section plane. Empty means all document + + + + The display size of this section plane + The display size of this section plane + + + + No shape has been computed yet, select wireframe rendering and render again + No shape has been computed yet, select wireframe rendering and render again + + + + Skipping invalid object: + Skipping invalid object: + + + + Site + Plek + + + + Create Site + Create Site + + + + Structure + Struktuur + + + + Create Structure + Create Structure + + + + The length of this element, if not based on a profile + The length of this element, if not based on a profile + + + + The width of this element, if not based on a profile + The width of this element, if not based on a profile + + + + The height or extrusion depth of this element. Keep 0 for automatic + The height or extrusion depth of this element. Keep 0 for automatic + + + + Axes systems this structure is built on + Axes systems this structure is built on + + + + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + + + + The element numbers to exclude when this structure is based on axes + The element numbers to exclude when this structure is based on axes + + + + Couldn't compute the wall shape + Couldn't compute the wall shape + + + + Wall + Muur + + + + Create Wall + Create Wall + + + + WallTrace + WallTrace + + + + Wall options + Wall options + + + + Width + Width + + + + Height + Height + + + + Alignment + Alignment + + + + Continue + Continue + + + + The width of this wall. Not used if this wall is based on a face + The width of this wall. Not used if this wall is based on a face + + + + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + + + + The alignment of this wall on its base object, if applicable + The alignment of this wall on its base object, if applicable + + + + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + + + + Error: Invalid base object + Error: Invalid base object + + + + This mesh is an invalid solid + This mesh is an invalid solid + + + + Error removing splitter from wall shape + Error removing splitter from wall shape + + + + Window + Venster + + + + Create Window + Create Window + + + + the components of this window + the components of this window + + + + Unable to create component + Unable to create component + + + + Edit + Wysig + + + + Create/update component + Create/update component + + + + Base 2D object + Base 2D object + + + + Wires + Wires + + + + Create new component + Create new component + + + + Name + Naam + + + + Type + Soort + + + + Thickness + Thickness + + + + Z offset + Z offset + + + + pycollada not found, no collada support. + + pycollada not found, no collada support. + + + + + Error: Couldn't determine character encoding + Error: Couldn't determine character encoding + + + + file %s successfully created. + file %s successfully created. + + + + Error: Couldn't determine character encoding + + Error: Couldn't determine character encoding + + + + + Couldn't locate IfcOpenShell + + Couldn't locate IfcOpenShell + + + + + IFC Schema not found, IFC import disabled. + + IFC Schema not found, IFC import disabled. + + + + + successfully written + successfully written Arch_Add - + Add component - Add component + Voeg komponent by - + Adds the selected components to the active object - Adds the selected components to the active object + Voeg die gekose komponente by die aktiewe voorwerp + + + + Arch_Axis + + + Axis + Axis + + + + Creates an axis system. + Creates an axis system. Arch_Building - + Building - Building + Bou - + Creates a building object including selected objects. - Creates a building object including selected objects. + Skep 'n bouvoorwerp wat die gekose voorwerpe insluit. Arch_Cell - + Cell - Cell + Sel - + Creates a cell object including selected objects - Creates a cell object including selected objects + Skep 'n selvoorwerp wat die gekose voorwerpe insluit + + + + Arch_Check + + + Check + Check + + + + Checks the selected objects for problems + Checks the selected objects for problems + + + + Arch_CloseHoles + + + Close holes + Close holes + + + + Closes holes in open shapes, turning them solids + Closes holes in open shapes, turning them solids Arch_Floor - + Floor - Floor + Vloer - + Creates a floor object including selected objects - Creates a floor object including selected objects - - - - Arch_MeshToPart - - - Turns selected meshes into Part Shape objects - Turns selected meshes into Part Shape objects + Skep 'n vloervoorwerp wat die gekose voorwerpe insluit Arch_MeshToShape - + Mesh to Shape - Mesh to Shape + Maas na Vorm + + + + Turns selected meshes into Part Shape objects + Turns selected meshes into Part Shape objects Arch_Remove - + Remove component - Remove component + Verwyder komponent - + Remove the selected components from their parents, or create a hole in a component - Remove the selected components from their parents, or create a hole in a component + Verwyder die gekose komponente van hulle moederkomponente, of skep 'n gat in 'n komponent Arch_RemoveShape - + Remove Shape from Arch - Remove Shape from Arch + Verwyder Vorm van Boog - + Removes cubic shapes from Arch components - Removes cubic shapes from Arch components + Verwyder kubiese vorms van boogkomponente + + + + Arch_Roof + + + Roof + Roof + + + + Creates a roof object from the selected face of an object + Creates a roof object from the selected face of an object Arch_SectionPlane - + Section Plane - Section Plane + Snitvlak - - Adds a section plane object to the document - Adds a section plane object to the document + + Creates a section plane object, including the selected objects + Creates a section plane object, including the selected objects Arch_SelectNonSolidMeshes - + Select non-manifold meshes - Select non-manifold meshes + Kies nie-menigvoudige mase - + Selects all non-manifold meshes from the document or from the selected groups - Selects all non-manifold meshes from the document or from the selected groups + Selekteer al die nie-menigvoudige mase van die dokument of van die gekose groepe Arch_Site - + Site - Site + Plek - + Creates a site object including selected objects. - Creates a site object including selected objects. + Skep 'n plaaslike voorwerp wat die gekose voorwerpe insluit. Arch_SplitMesh - + Split Mesh - Split Mesh + Deel maas op - + Splits selected meshes into independent components - Splits selected meshes into independent components + Deel gekose mase op in onafhanklike komponente Arch_Structure - + Structure Struktuur - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) - Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) + Skep 'n struktuurvoorwerp opnuut of van 'n gekose voorwerp (skets, draad, oppervlak of soliede) Arch_Wall - + Wall Muur - + Creates a wall object from scratch or from a selected object (wire, face or solid) Skep 'n muurvoorwerp van nuuts of van 'n gekose voorwerp (draad, vlak of soliede) @@ -194,14 +716,14 @@ Arch_Window - + Window Venster - - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) + + Creates a window object from a selected object (wire, rectangle or sketch) + Creates a window object from a selected object (wire, rectangle or sketch) @@ -214,55 +736,137 @@ General Arch Settings - General Arch Settings + Algemene Booginstellings Default color for walls - Default color for walls + Verstekkleur vir mure This is the default color for new Wall objects - This is the default color for new Wall objects + Hierdie is die verstekkleur vir nuwe muurvoorwerpe Default color for structures - Default color for structures + Verstekkleur vir strukture This is the default color for new Structure objects - This is the default color for new Structure objects + Hierdie is die verstekkleur vir nuwe struktuurvoorwerpe + + + + Default color for windows + Default color for windows + + + + IFC import + IFC import + + + + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + + + + Use IFCOpenShell if available + Use IFCOpenShell if available + + + + Creates groups for each Arch object type + Creates groups for each Arch object type + + + + Group components by types + Group components by types + + + + Import furniture (can make the model heavy) + Import furniture (can make the model heavy) + + + + 2D rendering + 2D rendering + + + + Show debug information during 2D rendering + Show debug information during 2D rendering + + + + Show renderer debug messages + Show renderer debug messages + + + + Cut areas line thickness ratio + Cut areas line thickness ratio + + + + Specifies how many times the viewed line thickness must be applied to cut lines + Specifies how many times the viewed line thickness must be applied to cut lines arch - + Arch tools - Arch tools + Boogwerktuie - + Draft tools - Draft tools + Tekenwerktuie - - Architecture - Architecture + + Draft mod tools + Draft mod tools - - Tools - Gereedskap + + &Architecture + &Architecture - - Draft - Draft + + Conversion Tools + Conversion Tools + + + + Calculation Tools + Calculation Tools + + + + &Draft + &Draft + + + + Context Tools + Context Tools + + + + pycollada not found, collada support will be disabled. + + pycollada not found, collada support will be disabled. + diff --git a/src/Mod/Arch/Resources/translations/Arch_cs.qm b/src/Mod/Arch/Resources/translations/Arch_cs.qm new file mode 100644 index 000000000..ae3aa0b28 Binary files /dev/null and b/src/Mod/Arch/Resources/translations/Arch_cs.qm differ diff --git a/src/Mod/Arch/Resources/translations/Arch_cs.ts b/src/Mod/Arch/Resources/translations/Arch_cs.ts new file mode 100644 index 000000000..1522d3a5c --- /dev/null +++ b/src/Mod/Arch/Resources/translations/Arch_cs.ts @@ -0,0 +1,872 @@ + + + + + Arch + + + Components + Komponenty + + + + Components of this object + Součástí tohoto objektu + + + + Axes + Axes + + + + Create Axis + Create Axis + + + + The intervals between axes + The intervals between axes + + + + The angles of each axis + The angles of each axis + + + + The length of the axes + The length of the axes + + + + The size of the axis bubbles + The size of the axis bubbles + + + + The numeration style + The numeration style + + + + Remove + Odstranit + + + + Add + Přidat + + + + Distances and angles between axes + Distances and angles between axes + + + + Axis + Axis + + + + Distance + Distance + + + + Angle + Úhel + + + + Building + Building + + + + Type conversion + Type conversion + + + + Create Building + Create Building + + + + Floor + Floor + + + + removing sketch support to avoid cross-referencing + removing sketch support to avoid cross-referencing + + + + No objects are cut by the plane + No objects are cut by the plane + + + + is not closed + is not closed + + + + is not valid + is not valid + + + + doesn't contain any solid + doesn't contain any solid + + + + contains a non-closed solid + contains a non-closed solid + + + + contains faces that are not part of any solid + contains faces that are not part of any solid + + + + Grouping + Grouping + + + + Ungrouping + Ungrouping + + + + Split Mesh + Split Mesh + + + + Mesh to Shape + Mesh to Shape + + + + All good! no problems found + All good! no problems found + + + + Base component + Base component + + + + Additions + Additions + + + + Subtractions + Subtractions + + + + Objects + Objects + + + + closing Sketch edit + closing Sketch edit + + + + The height of this floor + The height of this floor + + + + Roof + Roof + + + + Create Roof + Create Roof + + + + Unable to create a roof + Unable to create a roof + + + + No object selected + No object selected + + + + The angle of this roof + The angle of this roof + + + + The face number of the base object used to build this roof + The face number of the base object used to build this roof + + + + Page + Page + + + + View of + View of + + + + Create Section Plane + Create Section Plane + + + + The objects that must be considered by this section plane. Empty means all document + The objects that must be considered by this section plane. Empty means all document + + + + The display size of this section plane + The display size of this section plane + + + + No shape has been computed yet, select wireframe rendering and render again + No shape has been computed yet, select wireframe rendering and render again + + + + Skipping invalid object: + Skipping invalid object: + + + + Site + Site + + + + Create Site + Create Site + + + + Structure + Struktura + + + + Create Structure + Create Structure + + + + The length of this element, if not based on a profile + The length of this element, if not based on a profile + + + + The width of this element, if not based on a profile + The width of this element, if not based on a profile + + + + The height or extrusion depth of this element. Keep 0 for automatic + The height or extrusion depth of this element. Keep 0 for automatic + + + + Axes systems this structure is built on + Axes systems this structure is built on + + + + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + + + + The element numbers to exclude when this structure is based on axes + The element numbers to exclude when this structure is based on axes + + + + Couldn't compute the wall shape + Couldn't compute the wall shape + + + + Wall + Zeď + + + + Create Wall + Create Wall + + + + WallTrace + WallTrace + + + + Wall options + Wall options + + + + Width + Width + + + + Height + Height + + + + Alignment + Alignment + + + + Continue + Continue + + + + The width of this wall. Not used if this wall is based on a face + The width of this wall. Not used if this wall is based on a face + + + + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + + + + The alignment of this wall on its base object, if applicable + The alignment of this wall on its base object, if applicable + + + + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + + + + Error: Invalid base object + Error: Invalid base object + + + + This mesh is an invalid solid + This mesh is an invalid solid + + + + Error removing splitter from wall shape + Error removing splitter from wall shape + + + + Window + Okno + + + + Create Window + Create Window + + + + the components of this window + the components of this window + + + + Unable to create component + Unable to create component + + + + Edit + Upravit + + + + Create/update component + Create/update component + + + + Base 2D object + Base 2D object + + + + Wires + Wires + + + + Create new component + Create new component + + + + Name + Jméno + + + + Type + Typ + + + + Thickness + Thickness + + + + Z offset + Z offset + + + + pycollada not found, no collada support. + + pycollada not found, no collada support. + + + + + Error: Couldn't determine character encoding + Error: Couldn't determine character encoding + + + + file %s successfully created. + file %s successfully created. + + + + Error: Couldn't determine character encoding + + Error: Couldn't determine character encoding + + + + + Couldn't locate IfcOpenShell + + Couldn't locate IfcOpenShell + + + + + IFC Schema not found, IFC import disabled. + + IFC Schema not found, IFC import disabled. + + + + + successfully written + successfully written + + + + Arch_Add + + + Add component + Add component + + + + Adds the selected components to the active object + Adds the selected components to the active object + + + + Arch_Axis + + + Axis + Axis + + + + Creates an axis system. + Creates an axis system. + + + + Arch_Building + + + Building + Building + + + + Creates a building object including selected objects. + Creates a building object including selected objects. + + + + Arch_Cell + + + Cell + Cell + + + + Creates a cell object including selected objects + Creates a cell object including selected objects + + + + Arch_Check + + + Check + Check + + + + Checks the selected objects for problems + Checks the selected objects for problems + + + + Arch_CloseHoles + + + Close holes + Close holes + + + + Closes holes in open shapes, turning them solids + Closes holes in open shapes, turning them solids + + + + Arch_Floor + + + Floor + Floor + + + + Creates a floor object including selected objects + Creates a floor object including selected objects + + + + Arch_MeshToShape + + + Mesh to Shape + Mesh to Shape + + + + Turns selected meshes into Part Shape objects + Turns selected meshes into Part Shape objects + + + + Arch_Remove + + + Remove component + Odstranit komponent + + + + Remove the selected components from their parents, or create a hole in a component + Remove the selected components from their parents, or create a hole in a component + + + + Arch_RemoveShape + + + Remove Shape from Arch + Remove Shape from Arch + + + + Removes cubic shapes from Arch components + Removes cubic shapes from Arch components + + + + Arch_Roof + + + Roof + Roof + + + + Creates a roof object from the selected face of an object + Creates a roof object from the selected face of an object + + + + Arch_SectionPlane + + + Section Plane + Section Plane + + + + Creates a section plane object, including the selected objects + Creates a section plane object, including the selected objects + + + + Arch_SelectNonSolidMeshes + + + Select non-manifold meshes + Select non-manifold meshes + + + + Selects all non-manifold meshes from the document or from the selected groups + Selects all non-manifold meshes from the document or from the selected groups + + + + Arch_Site + + + Site + Site + + + + Creates a site object including selected objects. + Creates a site object including selected objects. + + + + Arch_SplitMesh + + + Split Mesh + Split Mesh + + + + Splits selected meshes into independent components + Splits selected meshes into independent components + + + + Arch_Structure + + + Structure + Struktura + + + + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) + + + + Arch_Wall + + + Wall + Zeď + + + + Creates a wall object from scratch or from a selected object (wire, face or solid) + Creates a wall object from scratch or from a selected object (wire, face or solid) + + + + Arch_Window + + + Window + Okno + + + + Creates a window object from a selected object (wire, rectangle or sketch) + Creates a window object from a selected object (wire, rectangle or sketch) + + + + Gui::Dialog::DlgSettingsArch + + + General settings + Obecná nastavení + + + + General Arch Settings + General Arch Settings + + + + Default color for walls + Default color for walls + + + + This is the default color for new Wall objects + This is the default color for new Wall objects + + + + Default color for structures + Default color for structures + + + + This is the default color for new Structure objects + This is the default color for new Structure objects + + + + Default color for windows + Default color for windows + + + + IFC import + IFC import + + + + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + + + + Use IFCOpenShell if available + Use IFCOpenShell if available + + + + Creates groups for each Arch object type + Creates groups for each Arch object type + + + + Group components by types + Group components by types + + + + Import furniture (can make the model heavy) + Import furniture (can make the model heavy) + + + + 2D rendering + 2D rendering + + + + Show debug information during 2D rendering + Show debug information during 2D rendering + + + + Show renderer debug messages + Show renderer debug messages + + + + Cut areas line thickness ratio + Cut areas line thickness ratio + + + + Specifies how many times the viewed line thickness must be applied to cut lines + Specifies how many times the viewed line thickness must be applied to cut lines + + + + arch + + + Arch tools + Arch tools + + + + Draft tools + Draft tools + + + + Draft mod tools + Draft mod tools + + + + &Architecture + &Architecture + + + + Conversion Tools + Conversion Tools + + + + Calculation Tools + Calculation Tools + + + + &Draft + &Draft + + + + Context Tools + Context Tools + + + + pycollada not found, collada support will be disabled. + + pycollada not found, collada support will be disabled. + + + + diff --git a/src/Mod/Arch/Resources/translations/Arch_de.qm b/src/Mod/Arch/Resources/translations/Arch_de.qm index c7cb8cb24..25ff129a1 100644 Binary files a/src/Mod/Arch/Resources/translations/Arch_de.qm and b/src/Mod/Arch/Resources/translations/Arch_de.qm differ diff --git a/src/Mod/Arch/Resources/translations/Arch_de.ts b/src/Mod/Arch/Resources/translations/Arch_de.ts index 088615682..dd29ef2fb 100644 --- a/src/Mod/Arch/Resources/translations/Arch_de.ts +++ b/src/Mod/Arch/Resources/translations/Arch_de.ts @@ -4,204 +4,723 @@ Arch - + Components Komponenten - - Remove child - Remove child + + Components of this object + Komponenten dieses Objektes - - Components of this object - Components of this object + + Axes + Achsen + + + + Create Axis + Achse erzeugen + + + + The intervals between axes + Die Intervalle zwischen den Achsen + + + + The angles of each axis + Die Winkel der einzelnen Achsen + + + + The length of the axes + Die Länge der Achsen + + + + The size of the axis bubbles + Die Größe der Achsen-Blasen + + + + The numeration style + Der Aufzählungsstil + + + + Remove + Entfernen + + + + Add + Hinzufügen + + + + Distances and angles between axes + Abstände und Winkel zwischen Achsen + + + + Axis + Achse + + + + Distance + Abstand + + + + Angle + Winkel + + + + Building + Gebäude + + + + Type conversion + Typumwandlung + + + + Create Building + Gebäude erzeugen + + + + Floor + Boden + + + + removing sketch support to avoid cross-referencing + Entfernen der unterstützenden Skizze um Querverweise zu vermeiden + + + + No objects are cut by the plane + Die Ebene schneidet keine Objekte + + + + is not closed + ist nicht geschlossen + + + + is not valid + ist nicht gültig + + + + doesn't contain any solid + enhält keinen Volumenkörper + + + + contains a non-closed solid + enthält einen nicht geschlossenen Volumenkörper + + + + contains faces that are not part of any solid + enthält Flächen die nicht Teil eines Festkörpers sind + + + + Grouping + Gruppierung + + + + Ungrouping + Aufheben der Gruppierung + + + + Split Mesh + Netz zerlegen + + + + Mesh to Shape + Vernetze zur Form + + + + All good! no problems found + Alles gut! Keine Probleme gefunden + + + + Base component + Basiskomponente + + + + Additions + Ergänzungen + + + + Subtractions + Subtraktionen + + + + Objects + Objekte + + + + closing Sketch edit + Schließe Skizzenbearbeitung + + + + The height of this floor + Die Höhe dieser Etage + + + + Roof + Dach + + + + Create Roof + Dach erzeugen + + + + Unable to create a roof + Konnte Dach nicht erstellen + + + + No object selected + Kein Objekt ausgewählt + + + + The angle of this roof + Der Winkel des dieses Daches + + + + The face number of the base object used to build this roof + Nummer der Oberfläche auf dem Objekt, aus dem das Dach erzeugt werden soll + + + + Page + Seite + + + + View of + Ansicht von + + + + Create Section Plane + Schnittebene erzeugen + + + + The objects that must be considered by this section plane. Empty means all document + Die Objekte, die von dieser Schnittebene berücksichtigt werden müssen. Leer bedeutet das ganze Dokument + + + + The display size of this section plane + Die Displaygröße dieser Schnittebene + + + + No shape has been computed yet, select wireframe rendering and render again + Es wurde noch eine Form berechnet, wählen Sie Dratgitter Rendering aus rendern Sie erneut + + + + Skipping invalid object: + Überspringe ungültiges Objekt: + + + + Site + Seite + + + + Create Site + Seite erstellen + + + + Structure + Struktur + + + + Create Structure + Struktur erzeugen + + + + The length of this element, if not based on a profile + Die Länge dieses Elements, wenn es nicht auf einem Profil basiert + + + + The width of this element, if not based on a profile + Die Breite dieses Elements, wenn es nicht auf einem Profil basiert + + + + The height or extrusion depth of this element. Keep 0 for automatic + Höhe oder Extrusionstiefe dieses Elements (0 für automatisch) + + + + Axes systems this structure is built on + Achsensysteme, auf denen diese Struktur basiert + + + + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + Richtung der Normalen-Extrusion dieses Objekts ((0,0,0) für automatisch) + + + + The element numbers to exclude when this structure is based on axes + Die Element-Nummern ausschließen, wenn diese Struktur auf Achsen basiert + + + + Couldn't compute the wall shape + Die Wand-Form konnte nicht berechnet werden + + + + Wall + Wand + + + + Create Wall + Wand erzeugen + + + + WallTrace + WallTrace + + + + Wall options + Wandoptionen + + + + Width + Breite + + + + Height + Höhe + + + + Alignment + Ausrichtung + + + + Continue + Fortsetzen + + + + The width of this wall. Not used if this wall is based on a face + Die Breite der Wand. Nicht benutzt wenn die Wand auf einer Fläche basiert + + + + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + Höhe dieser Mauer (0 für automatisch). Wird nicht verwendet, wenn die Wand auf einem Volumenkörper basiert + + + + The alignment of this wall on its base object, if applicable + Die Ausrichtung dieser Mauer auf ihrem Basisobjekt, falls zutreffend + + + + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + Wenn diese Wand auf ein Face basiert, wird seine Drahtgrenze als Spur verwendet und Face nicht verwendet. + + + + Error: Invalid base object + Fehler: Ungültiges Basisobjekt + + + + This mesh is an invalid solid + Dieses Polygonnetz ist eine ungültiger Festkörper + + + + Error removing splitter from wall shape + Fehler beim Entfernen von Splitter aus Wand Form + + + + Window + Fenster + + + + Create Window + Fenster erzeugen + + + + the components of this window + die Komponenten dieses Fensters + + + + Unable to create component + Konnte Komponente nicht erstellen + + + + Edit + Bearbeiten + + + + Create/update component + Erstelle / aktualisiere Komponente + + + + Base 2D object + 2D Basisobjekt + + + + Wires + Drähte + + + + Create new component + Neue Komponente erstellen + + + + Name + Name + + + + Type + Typ + + + + Thickness + Dicke + + + + Z offset + Z-Abstand + + + + pycollada not found, no collada support. + + pycollada nicht gefunden, kein collada Support + + + + Error: Couldn't determine character encoding + Fehler: Konnte Zeichencodierung nicht bestimmen + + + + file %s successfully created. + Datei %s erfolgreich erstellt. + + + + Error: Couldn't determine character encoding + + Fehler: Konnte Zeichencodierung nicht bestimmen + + + + + Couldn't locate IfcOpenShell + + IfcOpenShell konnte nicht gefunden werden + + + + IFC Schema not found, IFC import disabled. + + IFC Schema nicht gefunden, IFC importieren deaktiviert + + + + successfully written + erfolgreich geschrieben Arch_Add - + Add component Teil hinzufügen - + Adds the selected components to the active object - Adds the selected components to the active object + Fügt ausgewählte Komponenten zu den aktiven Objekten hinzu + + + + Arch_Axis + + + Axis + Achse + + + + Creates an axis system. + Erzeugt ein Achsensystem. Arch_Building - + Building - Building + Gebäude - + Creates a building object including selected objects. - Creates a building object including selected objects. + Erzeugt ein Gebäudeobjekt, einschließlich der ausgewählten Objekte. Arch_Cell - + Cell - Cell + Zelle - + Creates a cell object including selected objects - Creates a cell object including selected objects + Erzeugt ein Zellenobjekt, einschließlich der ausgewählten Objekte + + + + Arch_Check + + + Check + Überprüfung + + + + Checks the selected objects for problems + Überprüft die ausgewählten Objekte auf Probleme + + + + Arch_CloseHoles + + + Close holes + Schließt Löcher + + + + Closes holes in open shapes, turning them solids + Schließt Löcher in Formen und wandelt sie um in Volumenkörper Arch_Floor - + Floor Boden - + Creates a floor object including selected objects - Creates a floor object including selected objects - - - - Arch_MeshToPart - - - Turns selected meshes into Part Shape objects - Turns selected meshes into Part Shape objects + Erstellt ein Boden-Objekt, einschließlich der ausgewählten Objekte Arch_MeshToShape - + Mesh to Shape - Mesh to Shape + Vernetze zur Form + + + + Turns selected meshes into Part Shape objects + wandelt gewählte meshes in Part Shape Objekte um Arch_Remove - + Remove component - Remove component + Komponente entfernen - + Remove the selected components from their parents, or create a hole in a component - Remove the selected components from their parents, or create a hole in a component + Entferne die ausgewählten Komponenten von ihrem Elternobjekt, oder erstelle ein Loch in einer Komponente Arch_RemoveShape - + Remove Shape from Arch - Remove Shape from Arch + Entfernt Formen aus Architektur - + Removes cubic shapes from Arch components - Removes cubic shapes from Arch components + Entfernt kubische Formen von Architektur-Komponenten + + + + Arch_Roof + + + Roof + Dach + + + + Creates a roof object from the selected face of an object + Erzeugt ein Dachobject aus der selektierten Fläche eines Objekts Arch_SectionPlane - + Section Plane - Section Plane + Schnittebene - - Adds a section plane object to the document - Adds a section plane object to the document + + Creates a section plane object, including the selected objects + Erstellt ein flaches Objekt, einschließlich der ausgewählten Objekte Arch_SelectNonSolidMeshes - + Select non-manifold meshes - Select non-manifold meshes + Wähle nicht-mehrfach Netze - + Selects all non-manifold meshes from the document or from the selected groups - Selects all non-manifold meshes from the document or from the selected groups + Wählt alle nicht-mehrfach Netze aus Dokument oder aus ausgewählter Gruppe Arch_Site - + Site - Site + Seite - + Creates a site object including selected objects. - Creates a site object including selected objects. + Ein Nebenobjekt inklusive der ausgewählten Objekte erstellen. Arch_SplitMesh - + Split Mesh - Split Mesh + Netz zerlegen - + Splits selected meshes into independent components - Splits selected meshes into independent components + Zerlegt ausgewählte Netze in unabhängige Komponenten Arch_Structure - + Structure Struktur - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) - Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) + Erzeugt ein Strukturobjekt von Grund auf neu oder von einem ausgewählten Objekt (Skizze,Draht,Oberfläche oder Volumenkörper) Arch_Wall - + Wall Wand - + Creates a wall object from scratch or from a selected object (wire, face or solid) - Creates a wall object from scratch or from a selected object (wire, face or solid) + Erzeuge ein Wandobjekt von Grund auf neu oder von einem ausgewählten Objekt (Draht,Oberfläche oder Volumenkörper) Arch_Window - + Window Fenster - - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) + + Creates a window object from a selected object (wire, rectangle or sketch) + Erstellt ein Fensterobjekt von einem ausgewählten Objekt (Draht, Rechteck oder Skizze) @@ -214,55 +733,136 @@ General Arch Settings - General Arch Settings + Allgemeine Architektur-Einstellungen Default color for walls - Default color for walls + Standard Wandfarbe This is the default color for new Wall objects - This is the default color for new Wall objects + Dies ist die Standardfarbe für neue Wandobjekte Default color for structures - Default color for structures + Standardfarbe für Strukturen This is the default color for new Structure objects - This is the default color for new Structure objects + Dies ist die Standardfarbe für neue Strukturobjekte + + + + Default color for windows + Standardfarbe für Fenster + + + + IFC import + IFC-Import + + + + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + Wenn gesetzt, wird der IFCOpenShell Importer verwendet, der erlaubt weitere IFC zu importieren + + + + Use IFCOpenShell if available + Verwende IFCOpenShell, falls vorhanden + + + + Creates groups for each Arch object type + Erzeuge Gruppen für jeden Arch-Objekttyp + + + + Group components by types + Gruppiere Komponenten nach Typen + + + + Import furniture (can make the model heavy) + Möbel importieren (kann das Modell schwergewichtig machen) + + + + 2D rendering + 2D Rendering + + + + Show debug information during 2D rendering + Debuginformationen während des 2D-Renderns anzeigen + + + + Show renderer debug messages + Renderer-Debug-Nachrichten anzeigen + + + + Cut areas line thickness ratio + Flächen Linien Dicke Verhältnis schneiden + + + + Specifies how many times the viewed line thickness must be applied to cut lines + Gibt an wie oft die Linienstärke angewendet werden muss um Linien zu durchtrennen arch - + Arch tools - Arch tools + Bogenwerkzeuge - + Draft tools - Draft tools + Zeichenwerkzeuge - - Architecture - Architecture + + Draft mod tools + Entwurf-Modifikationswerkzeuge - - Tools - Werkzeuge + + &Architecture + &Architektur - - Draft - Draft + + Conversion Tools + Konvertierungswerkzeuge + + + + Calculation Tools + Berechnungswerkzeuge + + + + &Draft + &Entwurf + + + + Context Tools + Kontextwerkzeuge + + + + pycollada not found, collada support will be disabled. + + Pycollada wurde nicht gefunden, Collada Unterstützung wird deaktiviert. diff --git a/src/Mod/Arch/Resources/translations/Arch_es-ES.qm b/src/Mod/Arch/Resources/translations/Arch_es-ES.qm new file mode 100644 index 000000000..650476003 Binary files /dev/null and b/src/Mod/Arch/Resources/translations/Arch_es-ES.qm differ diff --git a/src/Mod/Arch/Resources/translations/Arch_es-ES.ts b/src/Mod/Arch/Resources/translations/Arch_es-ES.ts new file mode 100644 index 000000000..57c1e9f7a --- /dev/null +++ b/src/Mod/Arch/Resources/translations/Arch_es-ES.ts @@ -0,0 +1,869 @@ + + + + + Arch + + + Components + Componentes + + + + Components of this object + Componentes de este objeto + + + + Axes + Ejes + + + + Create Axis + Crear eje + + + + The intervals between axes + Los intervalos entre ejes + + + + The angles of each axis + Los ángulos de cada eje + + + + The length of the axes + La longitud de los ejes + + + + The size of the axis bubbles + El tamaño de los globos de eje + + + + The numeration style + El estilo de numeración + + + + Remove + Quitar + + + + Add + Añadir + + + + Distances and angles between axes + Distancias y ángulos entre ejes + + + + Axis + Eje + + + + Distance + Distancia + + + + Angle + Ángulo + + + + Building + Construcción + + + + Type conversion + Tipo de conversión + + + + Create Building + Crear edificio + + + + Floor + Suelo + + + + removing sketch support to avoid cross-referencing + removiendo dibujo de soporte para evitar referencias cruzadas + + + + No objects are cut by the plane + No hay objetos cortados por el plano + + + + is not closed + no está cerrada + + + + is not valid + no es válido + + + + doesn't contain any solid + no contiene ningún sólido + + + + contains a non-closed solid + contiene un sólido no cerrado + + + + contains faces that are not part of any solid + contiene caras que no son parte de ningún sólido + + + + Grouping + Agrupación + + + + Ungrouping + Desagrupar + + + + Split Mesh + Dividir malla + + + + Mesh to Shape + Malla a forma + + + + All good! no problems found + ¡Todo bien! no se encontraron problemas + + + + Base component + Componente de base + + + + Additions + Agregados + + + + Subtractions + Sustracciones + + + + Objects + Objetos + + + + closing Sketch edit + cerrando edición de Dibujo + + + + The height of this floor + La altura de este piso + + + + Roof + Techo + + + + Create Roof + Crear techo + + + + Unable to create a roof + No se puede crear un techo + + + + No object selected + No hay ningún objeto seleccionado + + + + The angle of this roof + El ángulo de este techo + + + + The face number of the base object used to build this roof + The face number of the base object used to build this roof + + + + Page + Página + + + + View of + Vista de + + + + Create Section Plane + Crear el plano de sección + + + + The objects that must be considered by this section plane. Empty means all document + The objects that must be considered by this section plane. Empty means all document + + + + The display size of this section plane + The display size of this section plane + + + + No shape has been computed yet, select wireframe rendering and render again + No shape has been computed yet, select wireframe rendering and render again + + + + Skipping invalid object: + Saltar objeto no válido: + + + + Site + Situación + + + + Create Site + Crear sitio + + + + Structure + Estructura + + + + Create Structure + Crear estructura + + + + The length of this element, if not based on a profile + The length of this element, if not based on a profile + + + + The width of this element, if not based on a profile + The width of this element, if not based on a profile + + + + The height or extrusion depth of this element. Keep 0 for automatic + The height or extrusion depth of this element. Keep 0 for automatic + + + + Axes systems this structure is built on + Los sistemas de ejes de esta estructura estan basados en + + + + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + + + + The element numbers to exclude when this structure is based on axes + The element numbers to exclude when this structure is based on axes + + + + Couldn't compute the wall shape + Couldn't compute the wall shape + + + + Wall + Muro + + + + Create Wall + Crear muro + + + + WallTrace + WallTrace + + + + Wall options + Opciones de muro + + + + Width + Ancho + + + + Height + Altura + + + + Alignment + Alineación + + + + Continue + Continuar + + + + The width of this wall. Not used if this wall is based on a face + The width of this wall. Not used if this wall is based on a face + + + + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + + + + The alignment of this wall on its base object, if applicable + The alignment of this wall on its base object, if applicable + + + + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + + + + Error: Invalid base object + Error: Objeto base no válido + + + + This mesh is an invalid solid + Esta malla es un sólido no válido + + + + Error removing splitter from wall shape + Error removing splitter from wall shape + + + + Window + Ventana + + + + Create Window + Crear la ventana + + + + the components of this window + los componentes de esta ventana + + + + Unable to create component + No se puede crear el componente + + + + Edit + Editar + + + + Create/update component + Crear/actualizar componente + + + + Base 2D object + Objeto base 2D + + + + Wires + Alambres + + + + Create new component + Crear nuevo componente + + + + Name + Nombre + + + + Type + Tipo + + + + Thickness + Espesor + + + + Z offset + Desplazamiento en eje z + + + + pycollada not found, no collada support. + + pycollada not found, no collada support. + + + + + Error: Couldn't determine character encoding + Error: No se pudo determinar la codificación de caracteres + + + + file %s successfully created. + archivo %s creado correctamente. + + + + Error: Couldn't determine character encoding + + Error: No se pudo determinar la codificación de caracteres + + + + + Couldn't locate IfcOpenShell + + No se pudo localizar IfcOpenShell + + + + IFC Schema not found, IFC import disabled. + + Esquema de IFC no encontrado, importar a IFC desabilitado. + + + + successfully written + escrito exitosamente + + + + Arch_Add + + + Add component + Agregar componente + + + + Adds the selected components to the active object + Añade los componentes seleccionados al objeto activo + + + + Arch_Axis + + + Axis + Eje + + + + Creates an axis system. + Crea un sistema de ejes. + + + + Arch_Building + + + Building + Construcción + + + + Creates a building object including selected objects. + Crea un objeto de construcción, incluyendo los objetos seleccionados. + + + + Arch_Cell + + + Cell + Celda + + + + Creates a cell object including selected objects + Crea un objeto de celda, incluyendo los objetos seleccionados + + + + Arch_Check + + + Check + Verifica + + + + Checks the selected objects for problems + Verificar problemas de los objetos seleccionados + + + + Arch_CloseHoles + + + Close holes + Cerrar orificios + + + + Closes holes in open shapes, turning them solids + Cierra agujeros en formas abiertas, convirtiéndolas en sólidos + + + + Arch_Floor + + + Floor + Suelo + + + + Creates a floor object including selected objects + Crea un objeto de suelo incluyendo los objetos seleccionados + + + + Arch_MeshToShape + + + Mesh to Shape + Malla a forma + + + + Turns selected meshes into Part Shape objects + Turns selected meshes into Part Shape objects + + + + Arch_Remove + + + Remove component + Eliminar componente + + + + Remove the selected components from their parents, or create a hole in a component + Eliminar los componentes seleccionados de sus padres, o crear un agujero en un componente + + + + Arch_RemoveShape + + + Remove Shape from Arch + Eliminar forma de arco + + + + Removes cubic shapes from Arch components + Quita formas cúbicas de componentes Arco + + + + Arch_Roof + + + Roof + Techo + + + + Creates a roof object from the selected face of an object + Crea un objeto techo desde la cara seleccionada de un objeto + + + + Arch_SectionPlane + + + Section Plane + Plano de sección + + + + Creates a section plane object, including the selected objects + Crea una sección plana de un objeto, incluidos los objetos seleccionados + + + + Arch_SelectNonSolidMeshes + + + Select non-manifold meshes + Seleccionar mallas no-múltiples + + + + Selects all non-manifold meshes from the document or from the selected groups + Selecciona todas las mallas no-múltiples del documento o de los grupos seleccionados + + + + Arch_Site + + + Site + Situación + + + + Creates a site object including selected objects. + Crea un objeto de situación, incluyendo los objetos seleccionados. + + + + Arch_SplitMesh + + + Split Mesh + Dividir malla + + + + Splits selected meshes into independent components + Divide las mallas seleccionadas en componentes independientes + + + + Arch_Structure + + + Structure + Estructura + + + + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) + Crea un objeto de estructura a partir de cero o a partir de un objeto seleccionado (croquis, contorno, cara o sólido) + + + + Arch_Wall + + + Wall + Muro + + + + Creates a wall object from scratch or from a selected object (wire, face or solid) + Crea un objeto muro desde cero o a partir de un objeto seleccionado (contorno, cara o sólido) + + + + Arch_Window + + + Window + Ventana + + + + Creates a window object from a selected object (wire, rectangle or sketch) + Crea una ventana al objeto de un objeto seleccionado (alambre, rectángulo o sketch) + + + + Gui::Dialog::DlgSettingsArch + + + General settings + Opciones generales + + + + General Arch Settings + Ajuestes generales de Arco + + + + Default color for walls + Color predeterminado para paredes + + + + This is the default color for new Wall objects + Este es el color predeterminado para los nuevos objetos Pared + + + + Default color for structures + Color predeterminado para estructuras + + + + This is the default color for new Structure objects + Este es el color predeterminado para los nuevos objetos Estructura + + + + Default color for windows + Color por defecto para ventanas + + + + IFC import + Importación IFC + + + + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + + + + Use IFCOpenShell if available + Use IFCOpenShell si está disponible + + + + Creates groups for each Arch object type + Creates groups for each Arch object type + + + + Group components by types + Componentes del grupo por tipos + + + + Import furniture (can make the model heavy) + Importación de muebles (puede hacer el modelo pesado) + + + + 2D rendering + 2D rendering + + + + Show debug information during 2D rendering + Show debug information during 2D rendering + + + + Show renderer debug messages + Show renderer debug messages + + + + Cut areas line thickness ratio + Relación entre anchos de línea de áreas de corte + + + + Specifies how many times the viewed line thickness must be applied to cut lines + Especifica cuántas veces el grosor de la línea visualizada debe aplicarse para cortar líneas + + + + arch + + + Arch tools + Herramientas de arco + + + + Draft tools + Herramientas de croquis + + + + Draft mod tools + Herramientas para modificación de croquis + + + + &Architecture + &Arquitectura + + + + Conversion Tools + Herramientas de conversión + + + + Calculation Tools + Herramientas de cálculo + + + + &Draft + &Bosquejo + + + + Context Tools + Herramientas contextuales + + + + pycollada not found, collada support will be disabled. + + No se encuentra la biblioteca pycollada; no estará habilitado el soporte para archivos COLLADA. + + + diff --git a/src/Mod/Arch/Resources/translations/Arch_es.qm b/src/Mod/Arch/Resources/translations/Arch_es.qm deleted file mode 100644 index dfa1d7ab6..000000000 Binary files a/src/Mod/Arch/Resources/translations/Arch_es.qm and /dev/null differ diff --git a/src/Mod/Arch/Resources/translations/Arch_es.ts b/src/Mod/Arch/Resources/translations/Arch_es.ts deleted file mode 100644 index c76ab95e3..000000000 --- a/src/Mod/Arch/Resources/translations/Arch_es.ts +++ /dev/null @@ -1,268 +0,0 @@ - - - - - Arch - - - Components - Componentes - - - - Remove child - Remove child - - - - Components of this object - Componentes de este objeto - - - - Arch_Add - - - Add component - Agregar componente - - - - Adds the selected components to the active object - Añade los componentes seleccionados al objeto activo - - - - Arch_Building - - - Building - Construcción - - - - Creates a building object including selected objects. - Crea un objeto de construcción, incluyendo los objetos seleccionados. - - - - Arch_Cell - - - Cell - Celda - - - - Creates a cell object including selected objects - Crea un objeto de celda, incluyendo los objetos seleccionados - - - - Arch_Floor - - - Floor - Suelo - - - - Creates a floor object including selected objects - Crea un objeto de suelo incluyendo los objetos seleccionados - - - - Arch_MeshToPart - - - Turns selected meshes into Part Shape objects - Convierte las mallas seleccionados en objetos forma de Pieza - - - - Arch_MeshToShape - - - Mesh to Shape - Malla a forma - - - - Arch_Remove - - - Remove component - Eliminar componente - - - - Remove the selected components from their parents, or create a hole in a component - Eliminar los componentes seleccionados de sus padres, o crear un agujero en un componente - - - - Arch_RemoveShape - - - Remove Shape from Arch - Remove Shape from Arch - - - - Removes cubic shapes from Arch components - Removes cubic shapes from Arch components - - - - Arch_SectionPlane - - - Section Plane - Section Plane - - - - Adds a section plane object to the document - Adds a section plane object to the document - - - - Arch_SelectNonSolidMeshes - - - Select non-manifold meshes - Select non-manifold meshes - - - - Selects all non-manifold meshes from the document or from the selected groups - Selects all non-manifold meshes from the document or from the selected groups - - - - Arch_Site - - - Site - Situación - - - - Creates a site object including selected objects. - Crea un objeto de situación, incluyendo los objetos seleccionados. - - - - Arch_SplitMesh - - - Split Mesh - Dividir malla - - - - Splits selected meshes into independent components - Divide las mallas seleccionadas en componentes independientes - - - - Arch_Structure - - - Structure - Estructura - - - - Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) - Crea un objeto de estructura a partir de cero o a partir de un objeto seleccionado (croquis, contorno, cara o sólido) - - - - Arch_Wall - - - Wall - Muro - - - - Creates a wall object from scratch or from a selected object (wire, face or solid) - Crea un objeto muro desde cero o a partir de un objeto seleccionado (contorno, cara o sólido) - - - - Arch_Window - - - Window - Ventana - - - - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) - - - - Gui::Dialog::DlgSettingsArch - - - General settings - Opciones generales - - - - General Arch Settings - General Arch Settings - - - - Default color for walls - Color predeterminado para paredes - - - - This is the default color for new Wall objects - This is the default color for new Wall objects - - - - Default color for structures - Color predeterminado para estructuras - - - - This is the default color for new Structure objects - This is the default color for new Structure objects - - - - arch - - - Arch tools - Arch tools - - - - Draft tools - Draft tools - - - - Architecture - Architecture - - - - Tools - Herramientas - - - - Draft - Draft - - - diff --git a/src/Mod/Arch/Resources/translations/Arch_fi.qm b/src/Mod/Arch/Resources/translations/Arch_fi.qm index a3a328bbf..3c6e037cf 100644 Binary files a/src/Mod/Arch/Resources/translations/Arch_fi.qm and b/src/Mod/Arch/Resources/translations/Arch_fi.qm differ diff --git a/src/Mod/Arch/Resources/translations/Arch_fi.ts b/src/Mod/Arch/Resources/translations/Arch_fi.ts index 73170bd69..6342df7fc 100644 --- a/src/Mod/Arch/Resources/translations/Arch_fi.ts +++ b/src/Mod/Arch/Resources/translations/Arch_fi.ts @@ -4,204 +4,726 @@ Arch - + Components Components - - Remove child - Remove child + + Components of this object + Tämän objektin osat - - Components of this object - Components of this object + + Axes + Axes + + + + Create Axis + Create Axis + + + + The intervals between axes + The intervals between axes + + + + The angles of each axis + The angles of each axis + + + + The length of the axes + The length of the axes + + + + The size of the axis bubbles + The size of the axis bubbles + + + + The numeration style + The numeration style + + + + Remove + Poista + + + + Add + Lisää + + + + Distances and angles between axes + Distances and angles between axes + + + + Axis + Axis + + + + Distance + Etäisyys + + + + Angle + Angle + + + + Building + Rakennus + + + + Type conversion + Type conversion + + + + Create Building + Create Building + + + + Floor + Lattia + + + + removing sketch support to avoid cross-referencing + removing sketch support to avoid cross-referencing + + + + No objects are cut by the plane + No objects are cut by the plane + + + + is not closed + is not closed + + + + is not valid + is not valid + + + + doesn't contain any solid + doesn't contain any solid + + + + contains a non-closed solid + contains a non-closed solid + + + + contains faces that are not part of any solid + contains faces that are not part of any solid + + + + Grouping + Grouping + + + + Ungrouping + Ungrouping + + + + Split Mesh + Jaa verkko + + + + Mesh to Shape + Verkko Muodolle + + + + All good! no problems found + All good! no problems found + + + + Base component + Base component + + + + Additions + Additions + + + + Subtractions + Subtractions + + + + Objects + Objects + + + + closing Sketch edit + closing Sketch edit + + + + The height of this floor + The height of this floor + + + + Roof + Roof + + + + Create Roof + Create Roof + + + + Unable to create a roof + Unable to create a roof + + + + No object selected + No object selected + + + + The angle of this roof + The angle of this roof + + + + The face number of the base object used to build this roof + The face number of the base object used to build this roof + + + + Page + Page + + + + View of + View of + + + + Create Section Plane + Create Section Plane + + + + The objects that must be considered by this section plane. Empty means all document + The objects that must be considered by this section plane. Empty means all document + + + + The display size of this section plane + The display size of this section plane + + + + No shape has been computed yet, select wireframe rendering and render again + No shape has been computed yet, select wireframe rendering and render again + + + + Skipping invalid object: + Skipping invalid object: + + + + Site + Sijainti + + + + Create Site + Create Site + + + + Structure + Rakenne + + + + Create Structure + Create Structure + + + + The length of this element, if not based on a profile + The length of this element, if not based on a profile + + + + The width of this element, if not based on a profile + The width of this element, if not based on a profile + + + + The height or extrusion depth of this element. Keep 0 for automatic + The height or extrusion depth of this element. Keep 0 for automatic + + + + Axes systems this structure is built on + Axes systems this structure is built on + + + + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + + + + The element numbers to exclude when this structure is based on axes + The element numbers to exclude when this structure is based on axes + + + + Couldn't compute the wall shape + Couldn't compute the wall shape + + + + Wall + Seinä + + + + Create Wall + Create Wall + + + + WallTrace + WallTrace + + + + Wall options + Wall options + + + + Width + Width + + + + Height + Height + + + + Alignment + Alignment + + + + Continue + Continue + + + + The width of this wall. Not used if this wall is based on a face + The width of this wall. Not used if this wall is based on a face + + + + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + + + + The alignment of this wall on its base object, if applicable + The alignment of this wall on its base object, if applicable + + + + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + + + + Error: Invalid base object + Error: Invalid base object + + + + This mesh is an invalid solid + This mesh is an invalid solid + + + + Error removing splitter from wall shape + Error removing splitter from wall shape + + + + Window + Ikkuna + + + + Create Window + Create Window + + + + the components of this window + the components of this window + + + + Unable to create component + Unable to create component + + + + Edit + Muokkaa + + + + Create/update component + Create/update component + + + + Base 2D object + Base 2D object + + + + Wires + Wires + + + + Create new component + Create new component + + + + Name + Nimi + + + + Type + Tyyppi + + + + Thickness + Thickness + + + + Z offset + Z offset + + + + pycollada not found, no collada support. + + pycollada not found, no collada support. + + + + + Error: Couldn't determine character encoding + Error: Couldn't determine character encoding + + + + file %s successfully created. + file %s successfully created. + + + + Error: Couldn't determine character encoding + + Error: Couldn't determine character encoding + + + + + Couldn't locate IfcOpenShell + + Couldn't locate IfcOpenShell + + + + + IFC Schema not found, IFC import disabled. + + IFC Schema not found, IFC import disabled. + + + + + successfully written + successfully written Arch_Add - + Add component - Add component + Lisää osa - + Adds the selected components to the active object - Adds the selected components to the active object + Lisää valitut osat Aktiiviseen objektiin + + + + Arch_Axis + + + Axis + Axis + + + + Creates an axis system. + Creates an axis system. Arch_Building - + Building - Building + Rakennus - + Creates a building object including selected objects. - Creates a building object including selected objects. + Luo rakennuksen objekti, sisältäen valitut objektit. Arch_Cell - + Cell - Cell + Solu - + Creates a cell object including selected objects - Creates a cell object including selected objects + Luo solu objekti, mukaan lukien valitut objektit + + + + Arch_Check + + + Check + Check + + + + Checks the selected objects for problems + Checks the selected objects for problems + + + + Arch_CloseHoles + + + Close holes + Close holes + + + + Closes holes in open shapes, turning them solids + Closes holes in open shapes, turning them solids Arch_Floor - + Floor - Floor + Lattia - + Creates a floor object including selected objects - Creates a floor object including selected objects - - - - Arch_MeshToPart - - - Turns selected meshes into Part Shape objects - Turns selected meshes into Part Shape objects + Luo lattia-objektin, mukaan lukien valitut objektit Arch_MeshToShape - + Mesh to Shape - Mesh to Shape + Verkko Muodolle + + + + Turns selected meshes into Part Shape objects + Turns selected meshes into Part Shape objects Arch_Remove - + Remove component - Remove component + Poista osa - + Remove the selected components from their parents, or create a hole in a component - Remove the selected components from their parents, or create a hole in a component + Poistaa valitut komponentit vanhemmiltaan tai luo reiän komponentissa Arch_RemoveShape - + Remove Shape from Arch - Remove Shape from Arch + Muodon poistaminen Arkkitehtuurista - + Removes cubic shapes from Arch components - Removes cubic shapes from Arch components + Poistaa kuutiomuodot Arkkitehtuurisista komponenteista + + + + Arch_Roof + + + Roof + Roof + + + + Creates a roof object from the selected face of an object + Creates a roof object from the selected face of an object Arch_SectionPlane - + Section Plane - Section Plane + Osan taso - - Adds a section plane object to the document - Adds a section plane object to the document + + Creates a section plane object, including the selected objects + Creates a section plane object, including the selected objects Arch_SelectNonSolidMeshes - + Select non-manifold meshes - Select non-manifold meshes + Valitse ei-moninaiset verkot - + Selects all non-manifold meshes from the document or from the selected groups - Selects all non-manifold meshes from the document or from the selected groups + Valitsee kaikki ei-moninaiset verkot asiakirjasta tai valituista ryhmistä Arch_Site - + Site - Site + Sijainti - + Creates a site object including selected objects. - Creates a site object including selected objects. + Luo objektin sijainnin, sisältäen valitut objektit. Arch_SplitMesh - + Split Mesh - Split Mesh + Jaa verkko - + Splits selected meshes into independent components - Splits selected meshes into independent components + Jakaa valitut verkot riippumattomiin komponentteihin Arch_Structure - + Structure - Structure + Rakenne - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) - Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) + Luo rakenne-objektin piirrosta tai valitusta objektista (sketsi, lanka, pinta tai kiinteä) Arch_Wall - + Wall - Wall + Seinä - + Creates a wall object from scratch or from a selected object (wire, face or solid) - Creates a wall object from scratch or from a selected object (wire, face or solid) + Luo seinä-objektin piirroista tai valitusta objektista (lanka, pinta tai kiinteä) Arch_Window - + Window Ikkuna - - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) + + Creates a window object from a selected object (wire, rectangle or sketch) + Creates a window object from a selected object (wire, rectangle or sketch) @@ -209,60 +731,142 @@ General settings - General settings + Yleiset asetukset General Arch Settings - General Arch Settings + Arkkitehtuurin Yleiset asetukset Default color for walls - Default color for walls + Oletusarvoinen väri seinille This is the default color for new Wall objects - This is the default color for new Wall objects + Tämä on oletusarvoinen väri uusille seinäobjekteille Default color for structures - Default color for structures + Oletusarvoinen väri rakenteille This is the default color for new Structure objects - This is the default color for new Structure objects + Tämä on oletusarvoinen väri uusille rakenneobjekteille + + + + Default color for windows + Default color for windows + + + + IFC import + IFC import + + + + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + + + + Use IFCOpenShell if available + Use IFCOpenShell if available + + + + Creates groups for each Arch object type + Creates groups for each Arch object type + + + + Group components by types + Group components by types + + + + Import furniture (can make the model heavy) + Import furniture (can make the model heavy) + + + + 2D rendering + 2D rendering + + + + Show debug information during 2D rendering + Show debug information during 2D rendering + + + + Show renderer debug messages + Show renderer debug messages + + + + Cut areas line thickness ratio + Cut areas line thickness ratio + + + + Specifies how many times the viewed line thickness must be applied to cut lines + Specifies how many times the viewed line thickness must be applied to cut lines arch - + Arch tools - Arch tools + Arkkitehtuuri työkalut - + Draft tools - Draft tools + Hahmotelma työkalut - - Architecture - Architecture + + Draft mod tools + Draft mod tools - - Tools - Työkalut + + &Architecture + &Architecture - - Draft - Draft + + Conversion Tools + Conversion Tools + + + + Calculation Tools + Calculation Tools + + + + &Draft + &Draft + + + + Context Tools + Context Tools + + + + pycollada not found, collada support will be disabled. + + pycollada not found, collada support will be disabled. + diff --git a/src/Mod/Arch/Resources/translations/Arch_fr.qm b/src/Mod/Arch/Resources/translations/Arch_fr.qm index 9e3b5b7b3..45d615a08 100644 Binary files a/src/Mod/Arch/Resources/translations/Arch_fr.qm and b/src/Mod/Arch/Resources/translations/Arch_fr.qm differ diff --git a/src/Mod/Arch/Resources/translations/Arch_fr.ts b/src/Mod/Arch/Resources/translations/Arch_fr.ts index 6b42342a6..99bbaa0d9 100644 --- a/src/Mod/Arch/Resources/translations/Arch_fr.ts +++ b/src/Mod/Arch/Resources/translations/Arch_fr.ts @@ -4,43 +4,526 @@ Arch - + Components Composants - - Remove child - Retirer l'enfant - - - + Components of this object Composants de cet objet + + + Axes + Axes + + + + Create Axis + Création d'un système d'axes + + + + The intervals between axes + Les intervalles entre les axes + + + + The angles of each axis + Les angles de chaque axe + + + + The length of the axes + La longueur des axes + + + + The size of the axis bubbles + La taille des bulles d'axe + + + + The numeration style + Le style de numérotation + + + + Remove + Enlever + + + + Add + Ajouter + + + + Distances and angles between axes + Distances et angles entre les axes + + + + Axis + Axe + + + + Distance + Distance + + + + Angle + Angle + + + + Building + Bâtiment + + + + Type conversion + Conversion de type + + + + Create Building + Création d'un bâtiment + + + + Floor + Étage + + + + removing sketch support to avoid cross-referencing + Le support de l'esquisse de base a été retiré pour éviter une référence croisée + + + + No objects are cut by the plane + Aucun objet n'est coupé par ce plan + + + + is not closed + n'est pas fermé + + + + is not valid + n'est pas valide + + + + doesn't contain any solid + ne contient aucun solide + + + + contains a non-closed solid + contient un solide non fermé + + + + contains faces that are not part of any solid + contient des faces qui ne font pas partie d'un solide + + + + Grouping + Regroupement + + + + Ungrouping + Dégroupement + + + + Split Mesh + Diviser un maillage + + + + Mesh to Shape + Maillage vers Forme + + + + All good! no problems found + Tout est en ordre! aucun problème constaté + + + + Base component + Composant de base + + + + Additions + Additions + + + + Subtractions + Soustractions + + + + Objects + Objets + + + + closing Sketch edit + fermeture de l'édition de l'esquisse + + + + The height of this floor + La hauteur de cet étage + + + + Roof + Toiture + + + + Create Roof + Création d'une toiture + + + + Unable to create a roof + Impossible de créer une toiture + + + + No object selected + Aucun objet sélectionné + + + + The angle of this roof + L'angle de cette toiture + + + + The face number of the base object used to build this roof + Le numéro d'ordre de la face de l'objet de base utilisée pour construire cette toiture + + + + Page + Feuille + + + + View of + Vue de + + + + Create Section Plane + Création d'un plan de coupe + + + + The objects that must be considered by this section plane. Empty means all document + Les objets qui doivent être pris en compte par ce plan de coupe. Vide signifie tous les objets du document + + + + The display size of this section plane + La taille d'affichage du plan de coupe + + + + No shape has been computed yet, select wireframe rendering and render again + Aucune forme n'a encore été calculée, sélectionnez "rendu filaire" et faites un nouveau rendu + + + + Skipping invalid object: + Objet invalide rejeté: + + + + Site + Site + + + + Create Site + Création d'un Site + + + + Structure + Structure + + + + Create Structure + Création d'une structure + + + + The length of this element, if not based on a profile + La longueur de cet élément, si il n'est pas basé sur un profil + + + + The width of this element, if not based on a profile + La largeur de cet élément, si il n'est pas basé sur un profil + + + + The height or extrusion depth of this element. Keep 0 for automatic + La hauteur ou profondeur d'extrusion de cet élément. Mettre 0 pour automatique + + + + Axes systems this structure is built on + Systèmes d'axes sur lesquels cette structure est basée + + + + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + La direction d'extrusion normale de cet objet (mettre (0,0,0) pour normale automatique) + + + + The element numbers to exclude when this structure is based on axes + Les numéros d'ordres des éléments à exclure quand cette structure est basée sur des axes + + + + Couldn't compute the wall shape + Impossible de calculer la forme de ce mur + + + + Wall + Mur + + + + Create Wall + Création d'un mur + + + + WallTrace + TraceDuMur + + + + Wall options + Options de mur + + + + Width + Largeur + + + + Height + Hauteur + + + + Alignment + Alignement + + + + Continue + Continuer + + + + The width of this wall. Not used if this wall is based on a face + La largeur de ce mur. Pas utilisée si ce mur est basé sur une face + + + + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + La hauteur de ce mur. Mettre 0 pour automatique. Pas utilisés si ce mur est basé sur un solide + + + + The alignment of this wall on its base object, if applicable + L'alignement de ce mur sur son objet de base, le cas échéant + + + + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + Si vrai, si ce mur est basé sur une face, le contour de cette face sera utilisé, et non la face elle-même. + + + + Error: Invalid base object + Erreur : Objet de base non valide + + + + This mesh is an invalid solid + Ce maillage n'est pas un solide valide + + + + Error removing splitter from wall shape + Erreur lors de l'affinage de la forme du mur + + + + Window + Fenêtre + + + + Create Window + Création d'une fenêtre + + + + the components of this window + les composants de cette fenêtre + + + + Unable to create component + Impossible de créer le composant + + + + Edit + Éditer + + + + Create/update component + Créer ou mettre le composant à jour + + + + Base 2D object + Objet 2D de base + + + + Wires + Filaires + + + + Create new component + Créer un nouveau composant + + + + Name + Nom + + + + Type + Type + + + + Thickness + Épaisseur + + + + Z offset + Décalage Z + + + + pycollada not found, no collada support. + + pycollada introuvable, le support au format collada est désactivé + + + + Error: Couldn't determine character encoding + Erreur : impossible de déterminer l'encodage de caractères + + + + file %s successfully created. + Le fichier %s a été correctement créé. + + + + Error: Couldn't determine character encoding + + Erreur : impossible de déterminer l'encodage de caractères + + + + + Couldn't locate IfcOpenShell + + Impossible de localiser IfcOpenShell + + + + IFC Schema not found, IFC import disabled. + + schéma IFC introuvable, l'importation de fichiers IFC est désactivée. + + + + successfully written + enregistré avec succès + Arch_Add - + Add component Ajouter un composant - + Adds the selected components to the active object Ajoute les composants sélectionnés à l'objet actif + + Arch_Axis + + + Axis + Axe + + + + Creates an axis system. + Crée un système d'axes. + + Arch_Building - + Building Bâtiment - + Creates a building object including selected objects. Crée un objet bâtiment à partir des objets sélectionnés. @@ -48,54 +531,77 @@ Arch_Cell - + Cell Cellule - + Creates a cell object including selected objects Crée un objet cellule à partir des objets sélectionnés + + Arch_Check + + + Check + Vérifier + + + + Checks the selected objects for problems + Vérifie si les objets sélectionnés présentent un problème + + + + Arch_CloseHoles + + + Close holes + Fermer les trous + + + + Closes holes in open shapes, turning them solids + Convertit les formes ouvertes en solides, en fermant leurs trous + + Arch_Floor - + Floor Étage - + Creates a floor object including selected objects Crée un objet étage à partir des objets sélectionnés - - Arch_MeshToPart - - - Turns selected meshes into Part Shape objects - Transforme les mailles sélectionnées en objets Forme - - Arch_MeshToShape - + Mesh to Shape Maillage vers Forme + + + Turns selected meshes into Part Shape objects + Transforme les maillages sélectionnées en formes + Arch_Remove - + Remove component Enlever une composante - + Remove the selected components from their parents, or create a hole in a component Retirer les composants sélectionnés de leurs parents, ou créer un trou dans un composant @@ -103,38 +609,51 @@ Arch_RemoveShape - + Remove Shape from Arch Supprimer la forme - + Removes cubic shapes from Arch components Supprime les formes cubiques des composants Arch + + Arch_Roof + + + Roof + Toiture + + + + Creates a roof object from the selected face of an object + Crée une toiture a partir d'une face sélectionnée + + Arch_SectionPlane - + Section Plane Plan de section - - Adds a section plane object to the document - Ajoute un objet plan de section au document + + Creates a section plane object, including the selected objects + Crée un plan de coupe à partir des objets sélectionnés Arch_SelectNonSolidMeshes - + Select non-manifold meshes Sélectionner les maillages non-manifold - + Selects all non-manifold meshes from the document or from the selected groups Sélectionne tous les maillages non-manifold du document ou des groupes sélectionnés @@ -142,12 +661,12 @@ Arch_Site - + Site Site - + Creates a site object including selected objects. Crée un objet site à partir des objets sélectionnés. @@ -155,12 +674,12 @@ Arch_SplitMesh - + Split Mesh Diviser une maille - + Splits selected meshes into independent components Divise les maillages sélectionnés en composantes indépendantes @@ -168,12 +687,12 @@ Arch_Structure - + Structure Structure - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Crée un objet de structure à partir de zéro ou d'un objet sélectionné (esquisse, ligne, face ou solide) @@ -181,12 +700,12 @@ Arch_Wall - + Wall Mur - + Creates a wall object from scratch or from a selected object (wire, face or solid) Crée un objet mur partir de zéro ou d'un objet sélectionné (une ligne, une face ou un solide) @@ -194,14 +713,14 @@ Arch_Window - + Window Fenêtre - - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) - Crée un objet fenêtre à partir de zéro ou d'un objet sélectionné (fil, rectangle ou esquisse) + + Creates a window object from a selected object (wire, rectangle or sketch) + Crée une fenêtre a partir d'un objet sélectionné (filaire, rectangle ou esquisse) @@ -236,33 +755,114 @@ This is the default color for new Structure objects Ceci est la couleur par défaut des nouveaux objets Structure + + + Default color for windows + Couleur par défaut des fenêtres + + + + IFC import + Importation IFC + + + + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + Si coché, l'importateur IFCOpenShell sera utilisé, ce qui permet d'importer plus de types IFC + + + + Use IFCOpenShell if available + Utiliser IFCOpenShell si disponible + + + + Creates groups for each Arch object type + Crée des groupes pour chaque type d'objet Arch + + + + Group components by types + Grouper les composants par type + + + + Import furniture (can make the model heavy) + Importer le mobilier (ceci peut rendre le modèle lourd) + + + + 2D rendering + Rendu 2D + + + + Show debug information during 2D rendering + Afficher les informations de débogage pendant le rendu 2D + + + + Show renderer debug messages + Messages de débogage du moteur de rendu + + + + Cut areas line thickness ratio + Proportion d'épaisseur des lignes en coupe + + + + Specifies how many times the viewed line thickness must be applied to cut lines + Spécifie combien de fois l'épaisseur des lignes en vue doit être appliquée aux lignes en coupe + arch - + Arch tools Outils d'architecture - + Draft tools Outils Draft - - Architecture - Architecture + + Draft mod tools + Outils de modification Draft - - Tools - Outils + + &Architecture + &Architecture - - Draft - Draft + + Conversion Tools + Outils de conversion + + + + Calculation Tools + Outils de calcul + + + + &Draft + &Draft + + + + Context Tools + Utilitaires + + + + pycollada not found, collada support will be disabled. + + pycollada introuvable, le support au format collada sera désactivé. diff --git a/src/Mod/Arch/Resources/translations/Arch_hr.qm b/src/Mod/Arch/Resources/translations/Arch_hr.qm index 04119532c..30d10b891 100644 Binary files a/src/Mod/Arch/Resources/translations/Arch_hr.qm and b/src/Mod/Arch/Resources/translations/Arch_hr.qm differ diff --git a/src/Mod/Arch/Resources/translations/Arch_hr.ts b/src/Mod/Arch/Resources/translations/Arch_hr.ts index 52e3f082b..c0e5c9f33 100644 --- a/src/Mod/Arch/Resources/translations/Arch_hr.ts +++ b/src/Mod/Arch/Resources/translations/Arch_hr.ts @@ -4,43 +4,526 @@ Arch - + Components Komponente - - Remove child - Ukloni objekt niže razine - - - + Components of this object Komponente ovog objekta + + + Axes + Osi + + + + Create Axis + Kreiraj os + + + + The intervals between axes + iintervali između osi + + + + The angles of each axis + kut svake osi + + + + The length of the axes + Duljina osi + + + + The size of the axis bubbles + Veličina mjehurića na osi + + + + The numeration style + Stil numeriranja + + + + Remove + Ukloniti + + + + Add + Dodaj + + + + Distances and angles between axes + Udaljenost i kut između osi + + + + Axis + Osi + + + + Distance + Udaljenost + + + + Angle + Kut + + + + Building + Zgrada + + + + Type conversion + Pretvaranje tipa + + + + Create Building + Stvori zgradu + + + + Floor + Kat + + + + removing sketch support to avoid cross-referencing + uklanjanje podrške za skicu zbog izbjegavanja unakrznog referenciranja + + + + No objects are cut by the plane + Ni jedan objekt nije presječen sa ravninom + + + + is not closed + nije zatvoren + + + + is not valid + nije valjano + + + + doesn't contain any solid + ne sadrži niti jedno čvrsto tijelo + + + + contains a non-closed solid + Sadrži otvoreno čvrsto tijelo + + + + contains faces that are not part of any solid + sadrži površine koje nisu dio niti jednog tijela + + + + Grouping + Grupiranje + + + + Ungrouping + Razgrupiranje + + + + Split Mesh + Podijeli Mesh + + + + Mesh to Shape + Mesh u oblik + + + + All good! no problems found + Sve je dobro! Problemi nisu pronađeni + + + + Base component + Temeljna komponenta + + + + Additions + Dodatci + + + + Subtractions + Oduzimanje + + + + Objects + Objekti + + + + closing Sketch edit + Zatvaranje uređivanja skice + + + + The height of this floor + Visina ovog poda + + + + Roof + Krov + + + + Create Roof + Stvori krov + + + + Unable to create a roof + Nemoguće kreirati krov + + + + No object selected + Nema selektiranih objekata + + + + The angle of this roof + Kut ovog krova + + + + The face number of the base object used to build this roof + Broj plohe baznog objekta koji je korišten za izradu ovog krova + + + + Page + Stranica + + + + View of + Pogled od + + + + Create Section Plane + Kreira ravninu presjeka + + + + The objects that must be considered by this section plane. Empty means all document + Objekti koji moraju biti razmotreni sa oviom ravninom presjeka. Prazno razmatra sve objekte + + + + The display size of this section plane + Veličina prikaza ovoe ravnine presjeka + + + + No shape has been computed yet, select wireframe rendering and render again + Oblik još nije proračunat, odaberi "wireframe" renderiranje i pokušaj ponovo + + + + Skipping invalid object: + Preskakanje neprailnog objekta: + + + + Site + Mjesto + + + + Create Site + Stvori Mjesto + + + + Structure + Struktura + + + + Create Structure + Stvori Strukturu + + + + The length of this element, if not based on a profile + Duljina ovog elementa, ako se ne temelji na profilu + + + + The width of this element, if not based on a profile + Širina ovog elementa, ako se ne temelji na profilu + + + + The height or extrusion depth of this element. Keep 0 for automatic + Visina ili ekstruzija ovog elementa. Ostavi 0 za automatski + + + + Axes systems this structure is built on + Koordinatni sustav na kojem se temelji struktura + + + + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + Normala za ekstruziju ovog objekta (ostavi (0,0,0) za automatsko) + + + + The element numbers to exclude when this structure is based on axes + Broj elemenata za zanemariti kada se ova struktura temelji na osima + + + + Couldn't compute the wall shape + Nemoguće proračunati oblik zida + + + + Wall + Zid + + + + Create Wall + Stvori zid + + + + WallTrace + Putanja zida + + + + Wall options + Opcije zida + + + + Width + Širina + + + + Height + Visina + + + + Alignment + Poravnavanje + + + + Continue + Nastavi + + + + The width of this wall. Not used if this wall is based on a face + Širina ovog zida. Ne koristi se ako se zid temelji na plohi + + + + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + Visina ovog zida. Ostavi 0 za automatski odabir. Ne koristi se ako se zid temelji na čvrstom tijelu + + + + The alignment of this wall on its base object, if applicable + Poravnavanje zida na njegovu bazu, ako je moguće + + + + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + Ako je istinito i ako je ovaj zid bio temeljen na plohi, koristiti će se rubne žice kao putanja, a ploha će se zanemariti. + + + + Error: Invalid base object + Greška: Navaljan temeljni objekt + + + + This mesh is an invalid solid + Ova mreža nije ispravno tijelo + + + + Error removing splitter from wall shape + Pogreška prilikom uklanjanja djelitelja od zida + + + + Window + Prozor + + + + Create Window + Napravi prozor + + + + the components of this window + Komponente ovog prozora + + + + Unable to create component + Nemoguće stvoriti komponente + + + + Edit + Uredi + + + + Create/update component + Kreiraj/osvježi komponentu + + + + Base 2D object + Temeljni 2D objekt + + + + Wires + Žice + + + + Create new component + Kreiraj novu komponentu + + + + Name + Ime + + + + Type + Tip + + + + Thickness + Debljina + + + + Z offset + Z odmak + + + + pycollada not found, no collada support. + + pycollada nije pronađena, nema collada podrške. + + + + Error: Couldn't determine character encoding + Greška: Nije moguće odrediti način enkodiranja + + + + file %s successfully created. + datoteka %s je uspješno kreirana. + + + + Error: Couldn't determine character encoding + + Greška: Nije moguće odrediti način enkodiranja + + + + + Couldn't locate IfcOpenShell + + Nemoguće pronaći IfcOpenShell + + + + IFC Schema not found, IFC import disabled. + + IFC Schema nije pronađena, IFC uvoz je onemogućen. + + + + successfully written + uspješno zapisano + Arch_Add - + Add component Dodaj komponentu - + Adds the selected components to the active object Dodaje odabrane komponente aktivnom objektu + + Arch_Axis + + + Axis + Osi + + + + Creates an axis system. + Kreira novi koordinatni sustav. + + Arch_Building - + Building Zgrada - + Creates a building object including selected objects. Stvara Zgradu, uključujući odabrane objekte. @@ -48,54 +531,77 @@ Arch_Cell - + Cell Ćelija - + Creates a cell object including selected objects Stvara čeliju, uključujući odabrane objekte + + Arch_Check + + + Check + Provjeri + + + + Checks the selected objects for problems + Provjerava probleme na selektiranim objektima + + + + Arch_CloseHoles + + + Close holes + Zatvori rupe + + + + Closes holes in open shapes, turning them solids + Zatvara rupe u otvorenim oblicima i pretvara ih u 3D tijela + + Arch_Floor - + Floor Kat - + Creates a floor object including selected objects Stvara Kat, uključujući odabrane objekte - - Arch_MeshToPart - - - Turns selected meshes into Part Shape objects - Pretvara odabrane mreže u Čvrsti oblik objekte - - Arch_MeshToShape - + Mesh to Shape Mesh u oblik + + + Turns selected meshes into Part Shape objects + Pretvara odabrane mreže u čvrste dijelove + Arch_Remove - + Remove component Ukloni komponentu - + Remove the selected components from their parents, or create a hole in a component Ukloni odabrane komponente iz njihovih roditelja, ili stvori rupu u komponenti @@ -103,38 +609,51 @@ Arch_RemoveShape - + Remove Shape from Arch Ukloni oblik iz Arch-a - + Removes cubic shapes from Arch components Uklanja prostorne oblika iz Arch komponenti + + Arch_Roof + + + Roof + Krov + + + + Creates a roof object from the selected face of an object + Kreira krov od selektirane plohe objekta + + Arch_SectionPlane - + Section Plane Ravnina odjeljka - - Adds a section plane object to the document - Dodaje ravninu odjeljka dokumentu + + Creates a section plane object, including the selected objects + Kreira plohu presjeka, ukljućujući odabrane objekte Arch_SelectNonSolidMeshes - + Select non-manifold meshes Odaberite jednostruke MESH-eve - + Selects all non-manifold meshes from the document or from the selected groups Odabire sve jednostruke MESH-eve iz dokumenta ili iz odabrane grupe @@ -142,12 +661,12 @@ Arch_Site - + Site Mjesto - + Creates a site object including selected objects. Stvara Mjesto, uključujući odabrane objekte. @@ -155,12 +674,12 @@ Arch_SplitMesh - + Split Mesh Podijeli Mesh - + Splits selected meshes into independent components Dijeli odabrane MESH-eve u nezavisne komponente @@ -168,12 +687,12 @@ Arch_Structure - + Structure Struktura - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Stvara strukture objekta od nule ili od odabranog objekta (skica, žica, površina ili tijelo) @@ -181,12 +700,12 @@ Arch_Wall - + Wall Zid - + Creates a wall object from scratch or from a selected object (wire, face or solid) Stvara zid objekt od nule ili od odabranog objekta (žice, površine ili tijela) @@ -194,14 +713,14 @@ Arch_Window - + Window Prozor - - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) - Stvara novi prozor ili ga generira na temelju odabranog objekta (žice, pravokutnika ili skice) + + Creates a window object from a selected object (wire, rectangle or sketch) + Kreira prozor od selektiranog objekta (žica, pravokutnik ili skica) @@ -236,33 +755,114 @@ This is the default color for new Structure objects Ovo je zadana boja za strukture + + + Default color for windows + Zadana boja prozora + + + + IFC import + IFC uvoz + + + + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + ako je ovo uključeno, IFCOpenShell uvoz će biti korišten, omogučavajući uvoz više IFC tipova + + + + Use IFCOpenShell if available + Koristi IFCOpenShell ako je moguće + + + + Creates groups for each Arch object type + Kreira grupu za svaki tip Arch objekta + + + + Group components by types + Grupiraj komponente po tipovima + + + + Import furniture (can make the model heavy) + Uvezi pokućstvo (model može postati velik) + + + + 2D rendering + 2D renderiranje + + + + Show debug information during 2D rendering + Prikaži debug informacije tijekom 2D renderiranja + + + + Show renderer debug messages + Prikaži debug poruke renderera + + + + Cut areas line thickness ratio + Debljina linije prilikom rezanja + + + + Specifies how many times the viewed line thickness must be applied to cut lines + Označava koliko puta debljina linije mora biti primjenjena da bi se linija presjekla + arch - + Arch tools - Arch tools + Alati Arch modula - + Draft tools - Draft tools + Alati Nacrta - - Architecture - Architecture + + Draft mod tools + Alati za modificiranje nacrta - - Tools - Alati + + &Architecture + &Arhitektura - - Draft - Draft + + Conversion Tools + Alati za prevođenje + + + + Calculation Tools + Alati za računanje + + + + &Draft + &Nacrt + + + + Context Tools + Povezani alati + + + + pycollada not found, collada support will be disabled. + + pycollada nije pronađena, collada podrška će biti isključena diff --git a/src/Mod/Arch/Resources/translations/Arch_hu.qm b/src/Mod/Arch/Resources/translations/Arch_hu.qm index 715fe0295..d399a68cb 100644 Binary files a/src/Mod/Arch/Resources/translations/Arch_hu.qm and b/src/Mod/Arch/Resources/translations/Arch_hu.qm differ diff --git a/src/Mod/Arch/Resources/translations/Arch_hu.ts b/src/Mod/Arch/Resources/translations/Arch_hu.ts index cbf6a44c0..11546d7e6 100644 --- a/src/Mod/Arch/Resources/translations/Arch_hu.ts +++ b/src/Mod/Arch/Resources/translations/Arch_hu.ts @@ -4,43 +4,526 @@ Arch - + Components Összetevők - - Remove child - Gyerek leválasztása - - - + Components of this object Az objektum elemei + + + Axes + Tengelyek + + + + Create Axis + Tengelyek létrehozása + + + + The intervals between axes + Tengelyek közötti meghatározott közök + + + + The angles of each axis + Minden egyes tengely szöge + + + + The length of the axes + A tengelyek hossza + + + + The size of the axis bubbles + A tengely buborékok mérete + + + + The numeration style + A számlálási stílus + + + + Remove + Törlés + + + + Add + Hozzáad + + + + Distances and angles between axes + Távolságok és szögek tengelyek között + + + + Axis + Tengely + + + + Distance + Távolság + + + + Angle + Szög + + + + Building + Épület + + + + Type conversion + Típuskonverzió + + + + Create Building + Épület létrehozása + + + + Floor + Szint + + + + removing sketch support to avoid cross-referencing + Vázlat támogatás eltávolítása kereszthivatkozás elkerülése végett + + + + No objects are cut by the plane + Objektumok nem lettek kivágva a kivágással a síkkal + + + + is not closed + nincs lezárva + + + + is not valid + Érvénytelen + + + + doesn't contain any solid + nem tartalmazhat semmilyen szilárd testet + + + + contains a non-closed solid + le nem zárt szilárd testet tartalmaz + + + + contains faces that are not part of any solid + tartalmaz felületet, amelyek nem tartoznak semmilyen szilárd testhez + + + + Grouping + Csoportosítás + + + + Ungrouping + Csoportbontás + + + + Split Mesh + Háló osztása + + + + Mesh to Shape + Hálókat alakzatokká + + + + All good! no problems found + Minden jó! nincs probléma + + + + Base component + Alap-összetevő + + + + Additions + Kiegészítők + + + + Subtractions + Kivonás + + + + Objects + Objektumok + + + + closing Sketch edit + Vázlat szerkesztés bezárása + + + + The height of this floor + Ennek az emeletnek a magassága + + + + Roof + Tető + + + + Create Roof + Tető létrehozása + + + + Unable to create a roof + Nem lehet létrehozni tetőt + + + + No object selected + Nincs kijelölt objektum + + + + The angle of this roof + Ennek a tetőnek a szöge + + + + The face number of the base object used to build this roof + A tető építő alap objektum felület száma + + + + Page + Oldal + + + + View of + Nézete a + + + + Create Section Plane + Szakasz sík létrehozása + + + + The objects that must be considered by this section plane. Empty means all document + Objektum a metszés nézethez. Üresen hagyva az egész dokumentumot jelent + + + + The display size of this section plane + Ennek a kiválasztott síknak a megjelenítési méretei + + + + No shape has been computed yet, select wireframe rendering and render again + Nincs alakzat számítva, jelölje ki a drótvázas renderelést és újra rendereljen + + + + Skipping invalid object: + Érvénytelen objektum kihagyása: + + + + Site + Oldal + + + + Create Site + Oldal létrehozása + + + + Structure + Felépítés + + + + Create Structure + Struktúra létrehozása + + + + The length of this element, if not based on a profile + Ennek az elemnek a hossza, ha nem profilon áll + + + + The width of this element, if not based on a profile + Ennek az elemnek a szélessége, ha nem profilon áll + + + + The height or extrusion depth of this element. Keep 0 for automatic + Ez az elem magassága vagy kihúzás nagysága. 0 megtartása automatikushoz + + + + Axes systems this structure is built on + Ez a struktúrának erre a tengelyek rendszerre épül + + + + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + Ennek az objektumnak a normál kihúzás iránya (automatikus normál (0,0,0) megtartása) + + + + The element numbers to exclude when this structure is based on axes + A kihúzandó elemek száma, ha az tengelyeken alapul + + + + Couldn't compute the wall shape + Nem sikerült kiszámítani a fal alakzatot + + + + Wall + Fal + + + + Create Wall + Fal létrehozása + + + + WallTrace + Faljelölés + + + + Wall options + Fal beállítások + + + + Width + Szélesség + + + + Height + Magasság + + + + Alignment + Igazítás + + + + Continue + Folytatás + + + + The width of this wall. Not used if this wall is based on a face + Ennek a falnak szélessége. Nem használatos, ha a fal egy felületen fekszik + + + + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + Ennek a falnak magassága. 0 érték akkor automatikus. Nem használja ha a fal alapja egy szilárd test + + + + The alignment of this wall on its base object, if applicable + Ennek a falnak az igazítása az alapobjektumra, ha az elérhető + + + + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + Ha igaz, ha a fal egy felületen fekszik, akkor a határoló szegélyeit követésre használja, és nem veszi figyelembe a felületet. + + + + Error: Invalid base object + Hiba: Érvénytelen alap objektum + + + + This mesh is an invalid solid + A háló egy érvénytelen szilárd test + + + + Error removing splitter from wall shape + Hiba a fal alakzat osztójának levétele közben + + + + Window + Ablak + + + + Create Window + Ablak létrehozása + + + + the components of this window + Összetevők ebben az ablakban + + + + Unable to create component + Nem lehet létrehozni összetevőt + + + + Edit + Szerkesztés + + + + Create/update component + Létrehozni/frissíteni összetevőt + + + + Base 2D object + Alap 2D objektumot + + + + Wires + Vonalak + + + + Create new component + Új összetevő létrehozásához + + + + Name + Név + + + + Type + Típus + + + + Thickness + Vastagság + + + + Z offset + Z-eltolás + + + + pycollada not found, no collada support. + + a pycollada nem található, nincs collada támogatás + + + + Error: Couldn't determine character encoding + Hiba: Nem állapítható meg a karakterkódolás + + + + file %s successfully created. + a program sikeresen létrehozta a %s fájl. + + + + Error: Couldn't determine character encoding + + Hiba: Nem állapítható meg a karakterkódolás + + + + + Couldn't locate IfcOpenShell + + Nem találta meg a IfcOpenShell + + + + IFC Schema not found, IFC import disabled. + + IFC-séma nem található, az IFC import letiltva + + + + successfully written + írás sikeresen elvégezve + Arch_Add - + Add component Összetevő hozzáadása - + Adds the selected components to the active object A kijelölt összetevőket hozzáadja az aktív objektumhoz + + Arch_Axis + + + Axis + Tengely + + + + Creates an axis system. + Létrehoz egy tengely rendszert. + + Arch_Building - + Building Épület - + Creates a building object including selected objects. Létrehoz egy épület objektumot, beleértve a kijelölt objektumokat. @@ -48,54 +531,77 @@ Arch_Cell - + Cell Cella - + Creates a cell object including selected objects Létrehoz egy cella objektumot, beleértve a kijelölt objektumokat + + Arch_Check + + + Check + Ellenőrzés + + + + Checks the selected objects for problems + Ellenőrzi a kijelölt objektumok problémáit + + + + Arch_CloseHoles + + + Close holes + Lyukak bezárása + + + + Closes holes in open shapes, turning them solids + Bezárja a nyitott alakzatokat, szilárd testé változtatja azokat + + Arch_Floor - + Floor Szint - + Creates a floor object including selected objects Létrehoz egy Szint objektumot, beleértve a kijelölt objektumokat - - Arch_MeshToPart - - - Turns selected meshes into Part Shape objects - A kijelölt nézeteket alkatrész alakzatokká alakítja - - Arch_MeshToShape - + Mesh to Shape - Mesh hálóból Alakzat + Hálókat alakzatokká + + + + Turns selected meshes into Part Shape objects + A kiválasztott hálókat alakzat objektumokká alakítja Arch_Remove - + Remove component Összetevő törlése - + Remove the selected components from their parents, or create a hole in a component A kijelölt alkatrészek eltávolítása a szülőktől, vagy egy lyuk létrehozása alkatrészen @@ -103,38 +609,51 @@ Arch_RemoveShape - + Remove Shape from Arch Alakzat elhagyása az Arch-ból - + Removes cubic shapes from Arch components Eltávolítja a harmadfokú alakzatokat az Arch alkatrészekből + + Arch_Roof + + + Roof + Tető + + + + Creates a roof object from the selected face of an object + Létrehoz egy tető-objektumot a kijelölt objektum felületről + + Arch_SectionPlane - + Section Plane Rész sík - - Adds a section plane object to the document - Hozzáad egy rész sík objektumot a dokumentumba + + Creates a section plane object, including the selected objects + Létrehoz egy szakasz sík objektumot, beleértve a kijelölt objektumokat Arch_SelectNonSolidMeshes - + Select non-manifold meshes - Válassza ki a non-sokrétű hálózatot + Válassza ki a nem-sokrétű hálózatot - + Selects all non-manifold meshes from the document or from the selected groups Kiválasztja az összes nem-sokrétű hálózatot a dokumentumból vagy a kijelölt csoportokból @@ -142,12 +661,12 @@ Arch_Site - + Site Oldal - + Creates a site object including selected objects. Létrehoz egy Oldal objektumot, beleértve a kijelölt objektumokat. @@ -155,12 +674,12 @@ Arch_SplitMesh - + Split Mesh Háló osztása - + Splits selected meshes into independent components A kiválasztott hálót független összetevőkre osztja @@ -168,12 +687,12 @@ Arch_Structure - + Structure Felépítés - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Létrehoz egy objektum struktúrát vázlatból vagy egy kijelölt objektumból (vázlat, vonal, felület vagy szilárd test) @@ -181,12 +700,12 @@ Arch_Wall - + Wall Fal - + Creates a wall object from scratch or from a selected object (wire, face or solid) Létrehoz egy falat objektumot vázlatból vagy egy kijelölt objektumból (vonal, felület vagy test) @@ -194,14 +713,14 @@ Arch_Window - + Window Ablak - - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) - Létrehoz egy ablak objektumot a vázlatból, vagy egy kijelölt objektumból (vezetékes, téglalap vagy vázlat) + + Creates a window object from a selected object (wire, rectangle or sketch) + Ablak objektumot hoz létre a kijelölt objektumból (vonalas, téglalap vagy vázlat) @@ -214,12 +733,12 @@ General Arch Settings - Általános ív beállítások + Általános ívbeállítások Default color for walls - A falak alapértelmezett színei + Falak alapértelmezett színe @@ -229,40 +748,121 @@ Default color for structures - Alapértelmezett szerkezetei színek + Alapértelmezett szerkezetei színek This is the default color for new Structure objects Ez az alapértelmezett szín az új struktúra tárgyakhoz + + + Default color for windows + Az ablakok alapértelmezett színe + + + + IFC import + IFC-adatok importálása + + + + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + Ha be van jelölve, a IFCOpenShell importot fog használni, amely lehetővé teszi több IFC típus importálását + + + + Use IFCOpenShell if available + IFCOpenShell használ, ha rendelkezésre áll + + + + Creates groups for each Arch object type + Minden egyes Terv objektumtípusra csoportot hoz létre + + + + Group components by types + Csoport összetevők típus szerint + + + + Import furniture (can make the model heavy) + Bútor importálása (a modellt nehézkessé teszi) + + + + 2D rendering + 2D-leképezés + + + + Show debug information during 2D rendering + Hibakeresési információ megjelenítése a 2D visszaadás során + + + + Show renderer debug messages + Hibakeresési üzenetek megjelenítése a leképzéshez + + + + Cut areas line thickness ratio + Területek vonal vastagság arányának levágása + + + + Specifies how many times the viewed line thickness must be applied to cut lines + Itt adható meg, a látható vonal vastagságból hányat kell alkalmazni a kivágás végrehalytásához + arch - + Arch tools - Arch tools + Szerkesztési eszközök - + Draft tools - Draft tools + Rajzolási eszközök - - Architecture - Architecture + + Draft mod tools + Tervezési mód eszközök - - Tools - Eszközök + + &Architecture + &Architektúra - - Draft - Draft + + Conversion Tools + Fordító eszközök + + + + Calculation Tools + Számítási eszközök + + + + &Draft + Rajzolás + + + + Context Tools + Környezeti eszközök + + + + pycollada not found, collada support will be disabled. + + nem található a pycollada, collada támogatás letiltásra kerül diff --git a/src/Mod/Arch/Resources/translations/Arch_it.qm b/src/Mod/Arch/Resources/translations/Arch_it.qm index 24c03bb36..657d3d1c9 100644 Binary files a/src/Mod/Arch/Resources/translations/Arch_it.qm and b/src/Mod/Arch/Resources/translations/Arch_it.qm differ diff --git a/src/Mod/Arch/Resources/translations/Arch_it.ts b/src/Mod/Arch/Resources/translations/Arch_it.ts index 78b467392..ae35c9fee 100644 --- a/src/Mod/Arch/Resources/translations/Arch_it.ts +++ b/src/Mod/Arch/Resources/translations/Arch_it.ts @@ -4,43 +4,527 @@ Arch - + Components Componenti - - Remove child - Rimuovi il figlio - - - + Components of this object Componenti di questo oggetto + + + Axes + Assi + + + + Create Axis + Crea Asse + + + + The intervals between axes + Gli intervalli tra gli assi + + + + The angles of each axis + Gli angoli di ciascun asse + + + + The length of the axes + La lunghezza degli assi + + + + The size of the axis bubbles + La dimensione delle bolle asse + + + + The numeration style + Lo stile di numerazione + + + + Remove + Rimuovi + + + + Add + Aggiungi + + + + Distances and angles between axes + Distanze e angoli tra gli assi + + + + Axis + Asse + + + + Distance + Distanza + + + + Angle + Angolo + + + + Building + Edificio + + + + Type conversion + Conversione di tipo + + + + Create Building + Crea Edificio + + + + Floor + Piano + + + + removing sketch support to avoid cross-referencing + rimozione di sketch di supporto per evitare riferimenti incrociati + + + + No objects are cut by the plane + Nessun oggetto è stato tagliato dal piano + + + + is not closed + non è chiuso + + + + is not valid + non è valido + + + + doesn't contain any solid + non contiene alcun solido + + + + contains a non-closed solid + contiene un solido non chiuso + + + + contains faces that are not part of any solid + contiene facce che non fanno parte di nessun solido + + + + Grouping + Raggruppa + + + + Ungrouping + Separa + + + + Split Mesh + Dividi Mesh + + + + Mesh to Shape + Da Mesh a Forma + + + + All good! no problems found + Tutto bene! nessun problema riscontrato + + + + Base component + Componente base + + + + Additions + Aggiunte + + + + Subtractions + Sottrazioni + + + + Objects + Oggetti + + + + closing Sketch edit + Chiudi modifica Sketch + + + + The height of this floor + L'altezza di questo piano + + + + Roof + Tetto + + + + Create Roof + Crea Tetto + + + + Unable to create a roof + Impossibile creare un tetto + + + + No object selected + Nessun oggetto selezionato + + + + The angle of this roof + L'angolo di questo tetto + + + + The face number of the base object used to build this roof + Il numero di faccia dell'oggetto di base utilizzata per costruire questo tetto + + + + Page + Pagina + + + + View of + Vista di + + + + Create Section Plane + Crea Piano di Sezione + + + + The objects that must be considered by this section plane. Empty means all document + Gli oggetti che devono essere considerati da questo piano di sezione. Vuoto significa tutto il documento + + + + The display size of this section plane + La dimensione di visualizzazione di questo piano di sezione + + + + No shape has been computed yet, select wireframe rendering and render again + Nessuna forma è stata calcolata ancora, seleziona rendering wireframe e eseguire il render di nuovo + + + + Skipping invalid object: + Saltare oggetto non valido: + + + + Site + Sito + + + + Create Site + Crea Sito + + + + Structure + Struttura + + + + Create Structure + Crea Struttura + + + + The length of this element, if not based on a profile + La lunghezza di questo elemento, se non si basa su un profilo + + + + The width of this element, if not based on a profile + La larghezza di questo elemento, se non si basa su un profilo + + + + The height or extrusion depth of this element. Keep 0 for automatic + L'altezza o la profondità di estrusione di questo elemento. Lasciare 0 per automatico + + + + Axes systems this structure is built on + Sistemi di assi su cui questa struttura è costruita + + + + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + La direzione di estrusione normale di questo oggetto (lasciare (0, 0,0) per normale automatica) + + + + The element numbers to exclude when this structure is based on axes + I numeri dell'elemento da escludere quando questa struttura è basata su assi + + + + Couldn't compute the wall shape + Impossibile calcolare la forma della parete + + + + Wall + Parete + + + + Create Wall + Crea Parete + + + + WallTrace + Traccia parete + + + + Wall options + Opzioni Parete + + + + Width + Larghezza + + + + Height + Altezza + + + + Alignment + Allineamento + + + + Continue + Continua + + + + The width of this wall. Not used if this wall is based on a face + La larghezza di questa parete. Non usato se questa parete è basata su una faccia + + + + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + L'altezza di questa parete. Lasciare 0 per automatico. Non usato se questa parete è basata su un solido + + + + The alignment of this wall on its base object, if applicable + L'allineamento di questa parete sul suo oggetto di base, se applicabile + + + + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + Se Vero, se questa parete è basata su una faccia, sarà utilizzato il bordo della faccia come traccia e sarà trascurata la faccia. + + + + Error: Invalid base object + Errore: Oggetto di base non valido + + + + This mesh is an invalid solid + Questa mesh non è un solido valido + + + + Error removing splitter from wall shape + Errore durante la rimozione di un divisore da una forma parete + + + + Window + Finestra + + + + Create Window + Crea Finestra + + + + the components of this window + i componenti di questa finestra + + + + Unable to create component + Impossibile creare il componente + + + + Edit + Modifica + + + + Create/update component + Crea o aggiorna componente + + + + Base 2D object + Oggetto 2D base + + + + Wires + Wire + + + + Create new component + Crea nuovo componente + + + + Name + Nome + + + + Type + Tipo + + + + Thickness + Spessore + + + + Z offset + Offset Z + + + + pycollada not found, no collada support. + + pycollada non trovato, nessun supporto a collada. + + + + Error: Couldn't determine character encoding + Errore: impossibile determinare la codifica dei caratteri + + + + file %s successfully created. + file %s creato con successo. + + + + Error: Couldn't determine character encoding + + Errore: impossibile determinare la codifica dei caratteri + + + + + Couldn't locate IfcOpenShell + + Impossibile localizzare IfcOpenShell + + + + + IFC Schema not found, IFC import disabled. + + Schema IFC non trovato, importazione IFC disabilitata. + + + + successfully written + scritto correttamente + Arch_Add - + Add component Aggiungi componente - + Adds the selected components to the active object Aggiunge i componenti selezionati all'oggetto attivo + + Arch_Axis + + + Axis + Asse + + + + Creates an axis system. + Crea un sistema di assi. + + Arch_Building - + Building Edificio - + Creates a building object including selected objects. Crea un oggetto Edificio che contiene gli oggetti selezionati. @@ -48,54 +532,77 @@ Arch_Cell - + Cell Cella - + Creates a cell object including selected objects Crea un oggetto Cella che contiene gli oggetti selezionati + + Arch_Check + + + Check + Controlla + + + + Checks the selected objects for problems + Controlla gli oggetti selezionati per problemi + + + + Arch_CloseHoles + + + Close holes + Chiudi fori + + + + Closes holes in open shapes, turning them solids + Chiude i fori nelle forme aperte, trasformandole in solidi + + Arch_Floor - + Floor Piano - + Creates a floor object including selected objects Crea un oggetto Piano che contiene gli oggetti selezionati - - Arch_MeshToPart - - - Turns selected meshes into Part Shape objects - Trasforma le Meshes selezionate in oggetti Part Shape - - Arch_MeshToShape - + Mesh to Shape Da Mesh a Forma + + + Turns selected meshes into Part Shape objects + Trasforma le mesh selezionate in oggetti Part Shape + Arch_Remove - + Remove component Rimuovi componente - + Remove the selected components from their parents, or create a hole in a component Rimuove i componenti selezionati dai loro padri, o crea un buco in un componente @@ -103,38 +610,51 @@ Arch_RemoveShape - + Remove Shape from Arch Rimuovi Forma da Arch - + Removes cubic shapes from Arch components Rimuove le forme cubiche dai componenti Arch + + Arch_Roof + + + Roof + Tetto + + + + Creates a roof object from the selected face of an object + Crea un oggetto tetto dalla faccia selezionata di un oggetto + + Arch_SectionPlane - + Section Plane Piano di sezione - - Adds a section plane object to the document - Aggiunge un oggetto piano di sezione al documento + + Creates a section plane object, including the selected objects + Crea un oggetto piano di sezione che comprende gli oggetti selezionati Arch_SelectNonSolidMeshes - + Select non-manifold meshes Seleziona le mesh non-manifold - + Selects all non-manifold meshes from the document or from the selected groups Seleziona tutte le mesh non-manifold nel documento o nei gruppi selezionati @@ -142,12 +662,12 @@ Arch_Site - + Site Sito - + Creates a site object including selected objects. Crea un oggetto sito che contiene gli oggetti selezionati. @@ -155,12 +675,12 @@ Arch_SplitMesh - + Split Mesh Dividi Mesh - + Splits selected meshes into independent components Divide le Meshes selezionate in componenti indipendenti @@ -168,12 +688,12 @@ Arch_Structure - + Structure Struttura - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Crea un oggetto struttura da zero o da un oggetto selezionato (schizzo, wire, faccia o solido) @@ -181,12 +701,12 @@ Arch_Wall - + Wall Parete - + Creates a wall object from scratch or from a selected object (wire, face or solid) Crea un oggetto Parete da zero o da un oggetto selezionato (wire, faccia o solido) @@ -194,14 +714,14 @@ Arch_Window - + Window Finestra - - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) - Crea un oggetto finestra da zero o da un oggetto selezionato (wire, rettangolo o sketch) + + Creates a window object from a selected object (wire, rectangle or sketch) + Crea un oggetto finestra da un oggetto selezionato (wire, rettangolo o sketch) @@ -236,33 +756,114 @@ This is the default color for new Structure objects Questo è il colore predefinito per i nuovi oggetti Struttura + + + Default color for windows + Colore predefinito per la finestra + + + + IFC import + Importa IFC + + + + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + Se selezionata, sarrà utilizzato l'importatore IFCOpenShell, permettendo di importare più tipi IFC + + + + Use IFCOpenShell if available + Se disponibile, utilizzare IFCOpenShell + + + + Creates groups for each Arch object type + Crea gruppi per ogni tipo di oggetto Arch + + + + Group components by types + Raggruppa componenti per tipo + + + + Import furniture (can make the model heavy) + Importa mobili (può rendere il modello pesante) + + + + 2D rendering + Rendering 2D + + + + Show debug information during 2D rendering + Visualizza informazioni di debug durante il rendering 2D + + + + Show renderer debug messages + Visualizza i messaggi di debug di render + + + + Cut areas line thickness ratio + Rapporto di spessore linee delle aree di taglio + + + + Specifies how many times the viewed line thickness must be applied to cut lines + Specifica quante volte lo spessore di linea visualizzato deve essere applicato per tagliare le linee + arch - + Arch tools - Arch tools + Strumenti Arch - + Draft tools - Draft tools + Strumenti Draft - - Architecture - Architecture + + Draft mod tools + Strumenti di modifica Draft - - Tools - Strumenti + + &Architecture + &Architettura - - Draft - Draft + + Conversion Tools + Strumenti di conversione + + + + Calculation Tools + Strumenti di calcolo + + + + &Draft + &Draft + + + + Context Tools + Strumenti di contesto + + + + pycollada not found, collada support will be disabled. + + pycollada non trovato, il supporto a collada sarà disabilitato. diff --git a/src/Mod/Arch/Resources/translations/Arch_ja.qm b/src/Mod/Arch/Resources/translations/Arch_ja.qm index da6fe2214..4a66c4ef9 100644 Binary files a/src/Mod/Arch/Resources/translations/Arch_ja.qm and b/src/Mod/Arch/Resources/translations/Arch_ja.qm differ diff --git a/src/Mod/Arch/Resources/translations/Arch_ja.ts b/src/Mod/Arch/Resources/translations/Arch_ja.ts index dec33bb3c..36056c479 100644 --- a/src/Mod/Arch/Resources/translations/Arch_ja.ts +++ b/src/Mod/Arch/Resources/translations/Arch_ja.ts @@ -4,43 +4,529 @@ Arch - + Components Components - - Remove child - Remove child - - - + Components of this object Components of this object + + + Axes + Axes + + + + Create Axis + Create Axis + + + + The intervals between axes + The intervals between axes + + + + The angles of each axis + The angles of each axis + + + + The length of the axes + The length of the axes + + + + The size of the axis bubbles + The size of the axis bubbles + + + + The numeration style + The numeration style + + + + Remove + 削除 + + + + Add + 追加 + + + + Distances and angles between axes + Distances and angles between axes + + + + Axis + Axis + + + + Distance + 距離 + + + + Angle + 角度 + + + + Building + Building + + + + Type conversion + Type conversion + + + + Create Building + Create Building + + + + Floor + + + + + removing sketch support to avoid cross-referencing + removing sketch support to avoid cross-referencing + + + + No objects are cut by the plane + No objects are cut by the plane + + + + is not closed + is not closed + + + + is not valid + is not valid + + + + doesn't contain any solid + doesn't contain any solid + + + + contains a non-closed solid + contains a non-closed solid + + + + contains faces that are not part of any solid + contains faces that are not part of any solid + + + + Grouping + Grouping + + + + Ungrouping + Ungrouping + + + + Split Mesh + Split Mesh + + + + Mesh to Shape + Mesh to Shape + + + + All good! no problems found + All good! no problems found + + + + Base component + Base component + + + + Additions + Additions + + + + Subtractions + Subtractions + + + + Objects + Objects + + + + closing Sketch edit + closing Sketch edit + + + + The height of this floor + The height of this floor + + + + Roof + Roof + + + + Create Roof + Create Roof + + + + Unable to create a roof + Unable to create a roof + + + + No object selected + No object selected + + + + The angle of this roof + The angle of this roof + + + + The face number of the base object used to build this roof + The face number of the base object used to build this roof + + + + Page + Page + + + + View of + View of + + + + Create Section Plane + Create Section Plane + + + + The objects that must be considered by this section plane. Empty means all document + The objects that must be considered by this section plane. Empty means all document + + + + The display size of this section plane + The display size of this section plane + + + + No shape has been computed yet, select wireframe rendering and render again + No shape has been computed yet, select wireframe rendering and render again + + + + Skipping invalid object: + Skipping invalid object: + + + + Site + Site + + + + Create Site + Create Site + + + + Structure + Structure + + + + Create Structure + Create Structure + + + + The length of this element, if not based on a profile + The length of this element, if not based on a profile + + + + The width of this element, if not based on a profile + The width of this element, if not based on a profile + + + + The height or extrusion depth of this element. Keep 0 for automatic + The height or extrusion depth of this element. Keep 0 for automatic + + + + Axes systems this structure is built on + Axes systems this structure is built on + + + + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + + + + The element numbers to exclude when this structure is based on axes + The element numbers to exclude when this structure is based on axes + + + + Couldn't compute the wall shape + Couldn't compute the wall shape + + + + Wall + + + + + Create Wall + Create Wall + + + + WallTrace + WallTrace + + + + Wall options + Wall options + + + + Width + Width + + + + Height + Height + + + + Alignment + Alignment + + + + Continue + Continue + + + + The width of this wall. Not used if this wall is based on a face + The width of this wall. Not used if this wall is based on a face + + + + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + + + + The alignment of this wall on its base object, if applicable + The alignment of this wall on its base object, if applicable + + + + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + + + + Error: Invalid base object + Error: Invalid base object + + + + This mesh is an invalid solid + This mesh is an invalid solid + + + + Error removing splitter from wall shape + Error removing splitter from wall shape + + + + Window + ウィンドウ + + + + Create Window + Create Window + + + + the components of this window + the components of this window + + + + Unable to create component + Unable to create component + + + + Edit + 編集 + + + + Create/update component + Create/update component + + + + Base 2D object + Base 2D object + + + + Wires + Wires + + + + Create new component + Create new component + + + + Name + 名前 + + + + Type + タイプ + + + + Thickness + Thickness + + + + Z offset + Z offset + + + + pycollada not found, no collada support. + + pycollada not found, no collada support. + + + + + Error: Couldn't determine character encoding + Error: Couldn't determine character encoding + + + + file %s successfully created. + file %s successfully created. + + + + Error: Couldn't determine character encoding + + Error: Couldn't determine character encoding + + + + + Couldn't locate IfcOpenShell + + Couldn't locate IfcOpenShell + + + + + IFC Schema not found, IFC import disabled. + + IFC Schema not found, IFC import disabled. + + + + + successfully written + successfully written + Arch_Add - + Add component Add component - + Adds the selected components to the active object Adds the selected components to the active object + + Arch_Axis + + + Axis + Axis + + + + Creates an axis system. + Creates an axis system. + + Arch_Building - + Building Building - + Creates a building object including selected objects. Creates a building object including selected objects. @@ -48,54 +534,77 @@ Arch_Cell - + Cell Cell - + Creates a cell object including selected objects Creates a cell object including selected objects - Arch_Floor + Arch_Check - - Floor - Floor + + Check + Check - + + Checks the selected objects for problems + Checks the selected objects for problems + + + + Arch_CloseHoles + + + Close holes + Close holes + + + + Closes holes in open shapes, turning them solids + Closes holes in open shapes, turning them solids + + + + Arch_Floor + + + Floor + + + + Creates a floor object including selected objects Creates a floor object including selected objects - Arch_MeshToPart + Arch_MeshToShape - + + Mesh to Shape + Mesh to Shape + + + Turns selected meshes into Part Shape objects Turns selected meshes into Part Shape objects - - Arch_MeshToShape - - - Mesh to Shape - Mesh to Shape - - Arch_Remove - + Remove component Remove component - + Remove the selected components from their parents, or create a hole in a component Remove the selected components from their parents, or create a hole in a component @@ -103,38 +612,51 @@ Arch_RemoveShape - + Remove Shape from Arch - Remove Shape from Arch + Archから図形を削除します。 - + Removes cubic shapes from Arch components Removes cubic shapes from Arch components + + Arch_Roof + + + Roof + Roof + + + + Creates a roof object from the selected face of an object + Creates a roof object from the selected face of an object + + Arch_SectionPlane - + Section Plane Section Plane - - Adds a section plane object to the document - Adds a section plane object to the document + + Creates a section plane object, including the selected objects + Creates a section plane object, including the selected objects Arch_SelectNonSolidMeshes - + Select non-manifold meshes Select non-manifold meshes - + Selects all non-manifold meshes from the document or from the selected groups Selects all non-manifold meshes from the document or from the selected groups @@ -142,12 +664,12 @@ Arch_Site - + Site Site - + Creates a site object including selected objects. Creates a site object including selected objects. @@ -155,12 +677,12 @@ Arch_SplitMesh - + Split Mesh Split Mesh - + Splits selected meshes into independent components Splits selected meshes into independent components @@ -168,12 +690,12 @@ Arch_Structure - + Structure Structure - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) @@ -181,12 +703,12 @@ Arch_Wall - + Wall - Wall + - + Creates a wall object from scratch or from a selected object (wire, face or solid) Creates a wall object from scratch or from a selected object (wire, face or solid) @@ -194,14 +716,14 @@ Arch_Window - + Window ウィンドウ - - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) + + Creates a window object from a selected object (wire, rectangle or sketch) + Creates a window object from a selected object (wire, rectangle or sketch) @@ -224,7 +746,7 @@ This is the default color for new Wall objects - This is the default color for new Wall objects + 新しい壁オブジェクトのデフォルトの色です。 @@ -236,33 +758,115 @@ This is the default color for new Structure objects This is the default color for new Structure objects + + + Default color for windows + Default color for windows + + + + IFC import + IFC import + + + + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + + + + Use IFCOpenShell if available + Use IFCOpenShell if available + + + + Creates groups for each Arch object type + Creates groups for each Arch object type + + + + Group components by types + Group components by types + + + + Import furniture (can make the model heavy) + Import furniture (can make the model heavy) + + + + 2D rendering + 2D rendering + + + + Show debug information during 2D rendering + Show debug information during 2D rendering + + + + Show renderer debug messages + Show renderer debug messages + + + + Cut areas line thickness ratio + Cut areas line thickness ratio + + + + Specifies how many times the viewed line thickness must be applied to cut lines + Specifies how many times the viewed line thickness must be applied to cut lines + arch - + Arch tools Arch tools - + Draft tools - Draft tools + ドラフトツール - - Architecture - Architecture + + Draft mod tools + Draft mod tools - - Tools - ツール + + &Architecture + &Architecture - - Draft - Draft + + Conversion Tools + Conversion Tools + + + + Calculation Tools + Calculation Tools + + + + &Draft + &Draft + + + + Context Tools + Context Tools + + + + pycollada not found, collada support will be disabled. + + pycollada not found, collada support will be disabled. + diff --git a/src/Mod/Arch/Resources/translations/Arch_nl.qm b/src/Mod/Arch/Resources/translations/Arch_nl.qm index 8be405978..84662ec80 100644 Binary files a/src/Mod/Arch/Resources/translations/Arch_nl.qm and b/src/Mod/Arch/Resources/translations/Arch_nl.qm differ diff --git a/src/Mod/Arch/Resources/translations/Arch_nl.ts b/src/Mod/Arch/Resources/translations/Arch_nl.ts index c10baa221..ea051de66 100644 --- a/src/Mod/Arch/Resources/translations/Arch_nl.ts +++ b/src/Mod/Arch/Resources/translations/Arch_nl.ts @@ -4,43 +4,529 @@ Arch - + Components Componenten - - Remove child - Verwijder kind - - - + Components of this object Onderdelen van dit object + + + Axes + Axes + + + + Create Axis + Create Axis + + + + The intervals between axes + The intervals between axes + + + + The angles of each axis + The angles of each axis + + + + The length of the axes + The length of the axes + + + + The size of the axis bubbles + The size of the axis bubbles + + + + The numeration style + The numeration style + + + + Remove + Verwijderen + + + + Add + Toevoegen + + + + Distances and angles between axes + Distances and angles between axes + + + + Axis + Axis + + + + Distance + Afstand + + + + Angle + Hoek + + + + Building + Gebouw + + + + Type conversion + Type conversion + + + + Create Building + Create Building + + + + Floor + Verdieping + + + + removing sketch support to avoid cross-referencing + removing sketch support to avoid cross-referencing + + + + No objects are cut by the plane + No objects are cut by the plane + + + + is not closed + is not closed + + + + is not valid + is not valid + + + + doesn't contain any solid + doesn't contain any solid + + + + contains a non-closed solid + contains a non-closed solid + + + + contains faces that are not part of any solid + contains faces that are not part of any solid + + + + Grouping + Grouping + + + + Ungrouping + Ungrouping + + + + Split Mesh + Net splitten + + + + Mesh to Shape + Net naar Vorm + + + + All good! no problems found + All good! no problems found + + + + Base component + Base component + + + + Additions + Additions + + + + Subtractions + Subtractions + + + + Objects + Objects + + + + closing Sketch edit + closing Sketch edit + + + + The height of this floor + The height of this floor + + + + Roof + Roof + + + + Create Roof + Create Roof + + + + Unable to create a roof + Unable to create a roof + + + + No object selected + No object selected + + + + The angle of this roof + The angle of this roof + + + + The face number of the base object used to build this roof + The face number of the base object used to build this roof + + + + Page + Page + + + + View of + View of + + + + Create Section Plane + Create Section Plane + + + + The objects that must be considered by this section plane. Empty means all document + The objects that must be considered by this section plane. Empty means all document + + + + The display size of this section plane + The display size of this section plane + + + + No shape has been computed yet, select wireframe rendering and render again + No shape has been computed yet, select wireframe rendering and render again + + + + Skipping invalid object: + Skipping invalid object: + + + + Site + Zijde + + + + Create Site + Create Site + + + + Structure + Structuur + + + + Create Structure + Create Structure + + + + The length of this element, if not based on a profile + The length of this element, if not based on a profile + + + + The width of this element, if not based on a profile + The width of this element, if not based on a profile + + + + The height or extrusion depth of this element. Keep 0 for automatic + The height or extrusion depth of this element. Keep 0 for automatic + + + + Axes systems this structure is built on + Axes systems this structure is built on + + + + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + + + + The element numbers to exclude when this structure is based on axes + The element numbers to exclude when this structure is based on axes + + + + Couldn't compute the wall shape + Couldn't compute the wall shape + + + + Wall + Muur + + + + Create Wall + Create Wall + + + + WallTrace + WallTrace + + + + Wall options + Wall options + + + + Width + Width + + + + Height + Height + + + + Alignment + Alignment + + + + Continue + Continue + + + + The width of this wall. Not used if this wall is based on a face + The width of this wall. Not used if this wall is based on a face + + + + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + + + + The alignment of this wall on its base object, if applicable + The alignment of this wall on its base object, if applicable + + + + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + + + + Error: Invalid base object + Error: Invalid base object + + + + This mesh is an invalid solid + This mesh is an invalid solid + + + + Error removing splitter from wall shape + Error removing splitter from wall shape + + + + Window + Venster + + + + Create Window + Create Window + + + + the components of this window + the components of this window + + + + Unable to create component + Unable to create component + + + + Edit + Bewerken + + + + Create/update component + Create/update component + + + + Base 2D object + Base 2D object + + + + Wires + Wires + + + + Create new component + Create new component + + + + Name + Naam + + + + Type + Type + + + + Thickness + Thickness + + + + Z offset + Z offset + + + + pycollada not found, no collada support. + + pycollada not found, no collada support. + + + + + Error: Couldn't determine character encoding + Error: Couldn't determine character encoding + + + + file %s successfully created. + file %s successfully created. + + + + Error: Couldn't determine character encoding + + Error: Couldn't determine character encoding + + + + + Couldn't locate IfcOpenShell + + Couldn't locate IfcOpenShell + + + + + IFC Schema not found, IFC import disabled. + + IFC Schema not found, IFC import disabled. + + + + + successfully written + successfully written + Arch_Add - + Add component Voeg component toe - + Adds the selected components to the active object De geselecteerde onderdelen toevoegen aan het actieve object + + Arch_Axis + + + Axis + Axis + + + + Creates an axis system. + Creates an axis system. + + Arch_Building - + Building Gebouw - + Creates a building object including selected objects. Maakt een gebouwobject inclusief geselecteerde objecten. @@ -48,54 +534,77 @@ Arch_Cell - + Cell Cel - + Creates a cell object including selected objects Maakt een cel object vanuit geselecteerde objecten + + Arch_Check + + + Check + Check + + + + Checks the selected objects for problems + Checks the selected objects for problems + + + + Arch_CloseHoles + + + Close holes + Close holes + + + + Closes holes in open shapes, turning them solids + Closes holes in open shapes, turning them solids + + Arch_Floor - + Floor Verdieping - + Creates a floor object including selected objects Maakt een vloer object vanuit geselecteerde objecten - - Arch_MeshToPart - - - Turns selected meshes into Part Shape objects - Omzet geselecteerde netten in Deel vormen - - Arch_MeshToShape - + Mesh to Shape Net naar Vorm + + + Turns selected meshes into Part Shape objects + Turns selected meshes into Part Shape objects + Arch_Remove - + Remove component Verwijderen component - + Remove the selected components from their parents, or create a hole in a component Verwijder de geselecteerde onderdelen van hun ouders, of maak een gat in een component @@ -103,38 +612,51 @@ Arch_RemoveShape - + Remove Shape from Arch Vorm verwijderen - + Removes cubic shapes from Arch components Verwijdert kubieke vormen uit Arch-componenten + + Arch_Roof + + + Roof + Roof + + + + Creates a roof object from the selected face of an object + Creates a roof object from the selected face of an object + + Arch_SectionPlane - + Section Plane Sectieplan - - Adds a section plane object to the document - Voegt een sectieplan object aan het document + + Creates a section plane object, including the selected objects + Creates a section plane object, including the selected objects Arch_SelectNonSolidMeshes - + Select non-manifold meshes Niet-manifold netten selecteren - + Selects all non-manifold meshes from the document or from the selected groups Selecteert alle niet-manifold netten van het document of van de geselecteerde groepen @@ -142,12 +664,12 @@ Arch_Site - + Site Zijde - + Creates a site object including selected objects. Maakt een bouwterrein object met geselecteerde objecten inbegrepen. @@ -155,12 +677,12 @@ Arch_SplitMesh - + Split Mesh Net splitten - + Splits selected meshes into independent components Splits geselecteerde netten in onafhankelijke componenten @@ -168,12 +690,12 @@ Arch_Structure - + Structure Structuur - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Maak een structuurobject vanaf nul of van een geselecteerd object (schets, draad, vlak of volume) @@ -181,12 +703,12 @@ Arch_Wall - + Wall Muur - + Creates a wall object from scratch or from a selected object (wire, face or solid) Maak een muurobject vanaf nul of van een geselecteerd object (draad, vlak of volume) @@ -194,14 +716,14 @@ Arch_Window - + Window Venster - - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) - Maakt een venster object van een geselecteerd object (draad, rechthoek of schets) + + Creates a window object from a selected object (wire, rectangle or sketch) + Creates a window object from a selected object (wire, rectangle or sketch) @@ -236,33 +758,115 @@ This is the default color for new Structure objects Dit is de standaardkleur voor nieuwe structuur objecten + + + Default color for windows + Default color for windows + + + + IFC import + IFC import + + + + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + + + + Use IFCOpenShell if available + Use IFCOpenShell if available + + + + Creates groups for each Arch object type + Creates groups for each Arch object type + + + + Group components by types + Group components by types + + + + Import furniture (can make the model heavy) + Import furniture (can make the model heavy) + + + + 2D rendering + 2D rendering + + + + Show debug information during 2D rendering + Show debug information during 2D rendering + + + + Show renderer debug messages + Show renderer debug messages + + + + Cut areas line thickness ratio + Cut areas line thickness ratio + + + + Specifies how many times the viewed line thickness must be applied to cut lines + Specifies how many times the viewed line thickness must be applied to cut lines + arch - + Arch tools Arch werktuigen - + Draft tools Draft werktuigen - - Architecture - Architectuur + + Draft mod tools + Draft mod tools - - Tools - Werktuigen + + &Architecture + &Architecture - - Draft - Draft + + Conversion Tools + Conversion Tools + + + + Calculation Tools + Calculation Tools + + + + &Draft + &Draft + + + + Context Tools + Context Tools + + + + pycollada not found, collada support will be disabled. + + pycollada not found, collada support will be disabled. + diff --git a/src/Mod/Arch/Resources/translations/Arch_no.qm b/src/Mod/Arch/Resources/translations/Arch_no.qm index bbc0952ce..7aed60ba0 100644 Binary files a/src/Mod/Arch/Resources/translations/Arch_no.qm and b/src/Mod/Arch/Resources/translations/Arch_no.qm differ diff --git a/src/Mod/Arch/Resources/translations/Arch_no.ts b/src/Mod/Arch/Resources/translations/Arch_no.ts index d0d899539..38928e28a 100644 --- a/src/Mod/Arch/Resources/translations/Arch_no.ts +++ b/src/Mod/Arch/Resources/translations/Arch_no.ts @@ -4,43 +4,529 @@ Arch - + Components Elementer - - Remove child - Remove child - - - + Components of this object Components of this object + + + Axes + Axes + + + + Create Axis + Create Axis + + + + The intervals between axes + The intervals between axes + + + + The angles of each axis + The angles of each axis + + + + The length of the axes + The length of the axes + + + + The size of the axis bubbles + The size of the axis bubbles + + + + The numeration style + The numeration style + + + + Remove + Fjern + + + + Add + Legg til + + + + Distances and angles between axes + Distances and angles between axes + + + + Axis + Axis + + + + Distance + Avstand + + + + Angle + Vinkel + + + + Building + Building + + + + Type conversion + Type conversion + + + + Create Building + Create Building + + + + Floor + Floor + + + + removing sketch support to avoid cross-referencing + removing sketch support to avoid cross-referencing + + + + No objects are cut by the plane + No objects are cut by the plane + + + + is not closed + is not closed + + + + is not valid + is not valid + + + + doesn't contain any solid + doesn't contain any solid + + + + contains a non-closed solid + contains a non-closed solid + + + + contains faces that are not part of any solid + contains faces that are not part of any solid + + + + Grouping + Grouping + + + + Ungrouping + Ungrouping + + + + Split Mesh + Split Mesh + + + + Mesh to Shape + Mesh to Shape + + + + All good! no problems found + All good! no problems found + + + + Base component + Base component + + + + Additions + Additions + + + + Subtractions + Subtractions + + + + Objects + Objects + + + + closing Sketch edit + closing Sketch edit + + + + The height of this floor + The height of this floor + + + + Roof + Roof + + + + Create Roof + Create Roof + + + + Unable to create a roof + Unable to create a roof + + + + No object selected + No object selected + + + + The angle of this roof + The angle of this roof + + + + The face number of the base object used to build this roof + The face number of the base object used to build this roof + + + + Page + Page + + + + View of + View of + + + + Create Section Plane + Create Section Plane + + + + The objects that must be considered by this section plane. Empty means all document + The objects that must be considered by this section plane. Empty means all document + + + + The display size of this section plane + The display size of this section plane + + + + No shape has been computed yet, select wireframe rendering and render again + No shape has been computed yet, select wireframe rendering and render again + + + + Skipping invalid object: + Skipping invalid object: + + + + Site + Site + + + + Create Site + Create Site + + + + Structure + Structure + + + + Create Structure + Create Structure + + + + The length of this element, if not based on a profile + The length of this element, if not based on a profile + + + + The width of this element, if not based on a profile + The width of this element, if not based on a profile + + + + The height or extrusion depth of this element. Keep 0 for automatic + The height or extrusion depth of this element. Keep 0 for automatic + + + + Axes systems this structure is built on + Axes systems this structure is built on + + + + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + + + + The element numbers to exclude when this structure is based on axes + The element numbers to exclude when this structure is based on axes + + + + Couldn't compute the wall shape + Couldn't compute the wall shape + + + + Wall + Wall + + + + Create Wall + Create Wall + + + + WallTrace + WallTrace + + + + Wall options + Wall options + + + + Width + Width + + + + Height + Height + + + + Alignment + Alignment + + + + Continue + Continue + + + + The width of this wall. Not used if this wall is based on a face + The width of this wall. Not used if this wall is based on a face + + + + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + + + + The alignment of this wall on its base object, if applicable + The alignment of this wall on its base object, if applicable + + + + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + + + + Error: Invalid base object + Error: Invalid base object + + + + This mesh is an invalid solid + This mesh is an invalid solid + + + + Error removing splitter from wall shape + Error removing splitter from wall shape + + + + Window + Vindu + + + + Create Window + Create Window + + + + the components of this window + the components of this window + + + + Unable to create component + Unable to create component + + + + Edit + Rediger + + + + Create/update component + Create/update component + + + + Base 2D object + Base 2D object + + + + Wires + Wires + + + + Create new component + Create new component + + + + Name + Navn + + + + Type + Type + + + + Thickness + Thickness + + + + Z offset + Z offset + + + + pycollada not found, no collada support. + + pycollada not found, no collada support. + + + + + Error: Couldn't determine character encoding + Error: Couldn't determine character encoding + + + + file %s successfully created. + file %s successfully created. + + + + Error: Couldn't determine character encoding + + Error: Couldn't determine character encoding + + + + + Couldn't locate IfcOpenShell + + Couldn't locate IfcOpenShell + + + + + IFC Schema not found, IFC import disabled. + + IFC Schema not found, IFC import disabled. + + + + + successfully written + successfully written + Arch_Add - + Add component Add component - + Adds the selected components to the active object Adds the selected components to the active object + + Arch_Axis + + + Axis + Axis + + + + Creates an axis system. + Creates an axis system. + + Arch_Building - + Building Building - + Creates a building object including selected objects. Creates a building object including selected objects. @@ -48,54 +534,77 @@ Arch_Cell - + Cell Cell - + Creates a cell object including selected objects Creates a cell object including selected objects + + Arch_Check + + + Check + Check + + + + Checks the selected objects for problems + Checks the selected objects for problems + + + + Arch_CloseHoles + + + Close holes + Close holes + + + + Closes holes in open shapes, turning them solids + Closes holes in open shapes, turning them solids + + Arch_Floor - + Floor Floor - + Creates a floor object including selected objects Creates a floor object including selected objects - Arch_MeshToPart + Arch_MeshToShape - + + Mesh to Shape + Mesh to Shape + + + Turns selected meshes into Part Shape objects Turns selected meshes into Part Shape objects - - Arch_MeshToShape - - - Mesh to Shape - Mesh to Shape - - Arch_Remove - + Remove component Remove component - + Remove the selected components from their parents, or create a hole in a component Remove the selected components from their parents, or create a hole in a component @@ -103,38 +612,51 @@ Arch_RemoveShape - + Remove Shape from Arch Remove Shape from Arch - + Removes cubic shapes from Arch components Removes cubic shapes from Arch components + + Arch_Roof + + + Roof + Roof + + + + Creates a roof object from the selected face of an object + Creates a roof object from the selected face of an object + + Arch_SectionPlane - + Section Plane Section Plane - - Adds a section plane object to the document - Adds a section plane object to the document + + Creates a section plane object, including the selected objects + Creates a section plane object, including the selected objects Arch_SelectNonSolidMeshes - + Select non-manifold meshes Select non-manifold meshes - + Selects all non-manifold meshes from the document or from the selected groups Selects all non-manifold meshes from the document or from the selected groups @@ -142,12 +664,12 @@ Arch_Site - + Site Site - + Creates a site object including selected objects. Creates a site object including selected objects. @@ -155,12 +677,12 @@ Arch_SplitMesh - + Split Mesh Split Mesh - + Splits selected meshes into independent components Splits selected meshes into independent components @@ -168,12 +690,12 @@ Arch_Structure - + Structure Structure - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) @@ -181,12 +703,12 @@ Arch_Wall - + Wall Wall - + Creates a wall object from scratch or from a selected object (wire, face or solid) Creates a wall object from scratch or from a selected object (wire, face or solid) @@ -194,14 +716,14 @@ Arch_Window - + Window Vindu - - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) + + Creates a window object from a selected object (wire, rectangle or sketch) + Creates a window object from a selected object (wire, rectangle or sketch) @@ -219,7 +741,7 @@ Default color for walls - Default color for walls + Standardfarge for vegger @@ -236,33 +758,115 @@ This is the default color for new Structure objects This is the default color for new Structure objects + + + Default color for windows + Default color for windows + + + + IFC import + IFC import + + + + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + + + + Use IFCOpenShell if available + Use IFCOpenShell if available + + + + Creates groups for each Arch object type + Creates groups for each Arch object type + + + + Group components by types + Group components by types + + + + Import furniture (can make the model heavy) + Import furniture (can make the model heavy) + + + + 2D rendering + 2D rendering + + + + Show debug information during 2D rendering + Show debug information during 2D rendering + + + + Show renderer debug messages + Show renderer debug messages + + + + Cut areas line thickness ratio + Cut areas line thickness ratio + + + + Specifies how many times the viewed line thickness must be applied to cut lines + Specifies how many times the viewed line thickness must be applied to cut lines + arch - + Arch tools Arch tools - + Draft tools Draft tools - - Architecture - Architecture + + Draft mod tools + Draft mod tools - - Tools - Verktøy + + &Architecture + &Architecture - - Draft - Draft + + Conversion Tools + Conversion Tools + + + + Calculation Tools + Calculation Tools + + + + &Draft + &Draft + + + + Context Tools + Context Tools + + + + pycollada not found, collada support will be disabled. + + pycollada not found, collada support will be disabled. + diff --git a/src/Mod/Arch/Resources/translations/Arch_pl.qm b/src/Mod/Arch/Resources/translations/Arch_pl.qm index 562c9668f..6bb41d8a3 100644 Binary files a/src/Mod/Arch/Resources/translations/Arch_pl.qm and b/src/Mod/Arch/Resources/translations/Arch_pl.qm differ diff --git a/src/Mod/Arch/Resources/translations/Arch_pl.ts b/src/Mod/Arch/Resources/translations/Arch_pl.ts index 0e1bf9faf..99976888b 100644 --- a/src/Mod/Arch/Resources/translations/Arch_pl.ts +++ b/src/Mod/Arch/Resources/translations/Arch_pl.ts @@ -4,43 +4,526 @@ Arch - + Components komponenty - - Remove child - Remove child - - - + Components of this object Składniki obiektu + + + Axes + Osie + + + + Create Axis + Utwórz Osie + + + + The intervals between axes + Odstęp pomiędzy osiami + + + + The angles of each axis + Kąty każdej osi + + + + The length of the axes + Długość osi + + + + The size of the axis bubbles + Rozmiar bąbelków osi + + + + The numeration style + Styl numeracji + + + + Remove + Usuń + + + + Add + Dodaj + + + + Distances and angles between axes + Distances and angles between axes + + + + Axis + + + + + Distance + Odległość + + + + Angle + Kąt + + + + Building + Budynek + + + + Type conversion + Typ konwersji + + + + Create Building + Tworzenie budynku + + + + Floor + Piętro + + + + removing sketch support to avoid cross-referencing + removing sketch support to avoid cross-referencing + + + + No objects are cut by the plane + Żaden obiekt nie jest wycinany przez płaszczyznę + + + + is not closed + nie jest zamknięty + + + + is not valid + nie jest prawidłowy + + + + doesn't contain any solid + nie zawiera żadnych stałych + + + + contains a non-closed solid + zawiera niezamknięte stałe + + + + contains faces that are not part of any solid + zawiera fronty, które nie są częścią żadnych stałych + + + + Grouping + Grupowanie + + + + Ungrouping + Rozgrupowanie + + + + Split Mesh + Rozdziel siatkę + + + + Mesh to Shape + Siatka do Kształtu + + + + All good! no problems found + Wszystko w porządku! Nie znaleziono żadnych problemów + + + + Base component + Podstawowy składnik + + + + Additions + Dodatki + + + + Subtractions + Różnice + + + + Objects + Obiekty + + + + closing Sketch edit + zamykam edycję szkicu + + + + The height of this floor + Wysokość piętra + + + + Roof + Dach + + + + Create Roof + Tworzenie dachu + + + + Unable to create a roof + Nie można utworzyć dachu + + + + No object selected + Nie wybrano obiektu + + + + The angle of this roof + Kąt dachu + + + + The face number of the base object used to build this roof + Liczba frontów obiektu podstawowego użytych do zbudowania tego dachu + + + + Page + Strona + + + + View of + Widok + + + + Create Section Plane + Create Section Plane + + + + The objects that must be considered by this section plane. Empty means all document + The objects that must be considered by this section plane. Empty means all document + + + + The display size of this section plane + Rozmiar wyświetlania płaszczyzny sekcji + + + + No shape has been computed yet, select wireframe rendering and render again + No shape has been computed yet, select wireframe rendering and render again + + + + Skipping invalid object: + Pomijam nieprawidłowy obiekt: + + + + Site + Teren + + + + Create Site + Tworzenie witryny + + + + Structure + Konstrukcja + + + + Create Structure + Tworzenie struktury + + + + The length of this element, if not based on a profile + The length of this element, if not based on a profile + + + + The width of this element, if not based on a profile + The width of this element, if not based on a profile + + + + The height or extrusion depth of this element. Keep 0 for automatic + The height or extrusion depth of this element. Keep 0 for automatic + + + + Axes systems this structure is built on + Systemy osi, ta struktura jest zbudowana na + + + + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + + + + The element numbers to exclude when this structure is based on axes + The element numbers to exclude when this structure is based on axes + + + + Couldn't compute the wall shape + Nie można wyliczyć kształtu ściany + + + + Wall + Ściana + + + + Create Wall + Utwórz ścianę + + + + WallTrace + WallTrace + + + + Wall options + Opcje ściany + + + + Width + Szerokość + + + + Height + Wysokość + + + + Alignment + Wyrównanie + + + + Continue + Kontynuuj + + + + The width of this wall. Not used if this wall is based on a face + Szerokość tej ściany. Nieużywane, jeżeli ściana ta oparta jest na froncie + + + + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + + + + The alignment of this wall on its base object, if applicable + The alignment of this wall on its base object, if applicable + + + + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + Jeśli prawda oraz ściana oparta jest o front to zostanie użyty brzeg ściany a front zostanie pominięty. + + + + Error: Invalid base object + Błąd: Nieprawidłowy obiekt podstawowy + + + + This mesh is an invalid solid + Ta siatka nie jest poprawna + + + + Error removing splitter from wall shape + Błąd podczas usuwania rozdzielacza od kształtu ściany + + + + Window + Okno + + + + Create Window + Utwórz Okno + + + + the components of this window + składniki tego okna + + + + Unable to create component + Nie można utworzyć komponentu + + + + Edit + Edytuj + + + + Create/update component + Utwórz/uaktualnij komponent + + + + Base 2D object + Podstawowy obiekt 2D + + + + Wires + Przewody + + + + Create new component + Utwórz nowy komponent + + + + Name + Nazwa + + + + Type + Typ + + + + Thickness + Grubość + + + + Z offset + offset Z + + + + pycollada not found, no collada support. + + nie znaleziono pakietu pycollada, brak obsługi collada + + + + Error: Couldn't determine character encoding + Błąd: Nie można określić kodowania znaków + + + + file %s successfully created. + plik %s utworzony pomyślnie. + + + + Error: Couldn't determine character encoding + + Błąd: Nie można określić kodowania znaków + + + + + Couldn't locate IfcOpenShell + + Nie można zlokalizować IfcOpenShell + + + + IFC Schema not found, IFC import disabled. + + nie znaleziono schematu IFC, IFC został wyłączony. + + + + successfully written + zapisano pomyślnie + Arch_Add - + Add component Dodaj składnik - + Adds the selected components to the active object Dodaje wybrane składniki do aktywnego obiektu + + Arch_Axis + + + Axis + + + + + Creates an axis system. + Tworzy system osi. + + Arch_Building - + Building Budynek - + Creates a building object including selected objects. Tworzy obiekt Budynek wraz z wybranymi obiektami @@ -48,106 +531,142 @@ Arch_Cell - + Cell - Cell + Komórka - + Creates a cell object including selected objects Tworzy obiekt Cell wraz z wybranymi obiektami + + Arch_Check + + + Check + Sprawdź + + + + Checks the selected objects for problems + Sprawdza zaznaczone obiekty czy nie zawierają błędów + + + + Arch_CloseHoles + + + Close holes + Zamknij otwory + + + + Closes holes in open shapes, turning them solids + Zamyka otwory kształtów otwartych, zmienia je do stałych + + Arch_Floor - + Floor Piętro - + Creates a floor object including selected objects Tworzy obiekt Piętro wraz z wybranymi obiektami - Arch_MeshToPart + Arch_MeshToShape - + + Mesh to Shape + Siatka do Kształtu + + + Turns selected meshes into Part Shape objects Turns selected meshes into Part Shape objects - - Arch_MeshToShape - - - Mesh to Shape - Siatka do Kształtu - - Arch_Remove - + Remove component Usuń składnik - + Remove the selected components from their parents, or create a hole in a component - Remove the selected components from their parents, or create a hole in a component + Usuń wybrane składniki z ich rodziców lub utwórz otwór w składniku Arch_RemoveShape - + Remove Shape from Arch Usuń Kształt z Arch - + Removes cubic shapes from Arch components - Removes cubic shapes from Arch components + Usuwa sześcienne kształty ze składników Architektury + + + + Arch_Roof + + + Roof + Dach + + + + Creates a roof object from the selected face of an object + Tworzy obiekt dachu od wybranego frontu obiektu Arch_SectionPlane - + Section Plane Płaszczyzna przekroju - - Adds a section plane object to the document - Dodaje obiekt Płaszczyzna Przekroju do dokumentu + + Creates a section plane object, including the selected objects + Creates a section plane object, including the selected objects Arch_SelectNonSolidMeshes - + Select non-manifold meshes - Select non-manifold meshes + Wybierz nieróżnorodne siatki - + Selects all non-manifold meshes from the document or from the selected groups - Selects all non-manifold meshes from the document or from the selected groups + Wybiera wszystkie nieróżnorodne siatki z dokumentu lub wybranych grup Arch_Site - + Site Teren - + Creates a site object including selected objects. Tworzy obiekt Teren wraz z wybranymi obiektami @@ -155,12 +674,12 @@ Arch_SplitMesh - + Split Mesh Rozdziel siatkę - + Splits selected meshes into independent components Rozdziela wybrane siatki na niezależne składniki @@ -168,12 +687,12 @@ Arch_Structure - + Structure Konstrukcja - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Utwórz obiekt Konstrukcja od początku lub z wybranych obiektów (szkic, szkielet, fasetka lub solid) @@ -181,12 +700,12 @@ Arch_Wall - + Wall Ściana - + Creates a wall object from scratch or from a selected object (wire, face or solid) Tworzy obiekt Ściana od początku lub z wybranych @@ -194,14 +713,14 @@ Arch_Window - + Window Okno - - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) - Tworz obiekt Okno od początku lub z wybranych + + Creates a window object from a selected object (wire, rectangle or sketch) + Creates a window object from a selected object (wire, rectangle or sketch) @@ -236,33 +755,114 @@ This is the default color for new Structure objects Kolor domyślny dla nowego obiektu Konstrukcja + + + Default color for windows + Domyślny kolor okien + + + + IFC import + import IFC + + + + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + + + + Use IFCOpenShell if available + Użyj IFCOpenShell jeśli jest dostępny + + + + Creates groups for each Arch object type + Creates groups for each Arch object type + + + + Group components by types + Group components by types + + + + Import furniture (can make the model heavy) + Importuj mebel(model może stać się cięższy) + + + + 2D rendering + renderowanie 2D + + + + Show debug information during 2D rendering + Pokaż informacje o debugowaniu podczas renderowania 2D + + + + Show renderer debug messages + Pokaż wiadomości debugowania podczas renderowania + + + + Cut areas line thickness ratio + Grubość linii obszaru cięcia + + + + Specifies how many times the viewed line thickness must be applied to cut lines + Specifies how many times the viewed line thickness must be applied to cut lines + arch - + Arch tools - Arch tools + Narzędzia Architektury - + Draft tools - Draft tools + Narzędzia szkicu - - Architecture - Architecture + + Draft mod tools + Draft mod tools - - Tools - Narzędzia + + &Architecture + &Architektura - - Draft - Draft + + Conversion Tools + Narzędzia konwersji + + + + Calculation Tools + Narzędzia Kalkulacji + + + + &Draft + Rysunek + + + + Context Tools + Narzędzia Kontekstowe + + + + pycollada not found, collada support will be disabled. + + nie można odnaleźć pakietu pycollada, wsparcie dla collada zostanie wyłączone diff --git a/src/Mod/Arch/Resources/translations/Arch_pt-BR.qm b/src/Mod/Arch/Resources/translations/Arch_pt-BR.qm new file mode 100644 index 000000000..142055dbc Binary files /dev/null and b/src/Mod/Arch/Resources/translations/Arch_pt-BR.qm differ diff --git a/src/Mod/Arch/Resources/translations/Arch_pt-BR.ts b/src/Mod/Arch/Resources/translations/Arch_pt-BR.ts new file mode 100644 index 000000000..f533a61b3 --- /dev/null +++ b/src/Mod/Arch/Resources/translations/Arch_pt-BR.ts @@ -0,0 +1,868 @@ + + + + + Arch + + + Components + Componentes + + + + Components of this object + Componentes deste objeto + + + + Axes + Eixos + + + + Create Axis + Criar eixo + + + + The intervals between axes + Os intervalos entre eixos + + + + The angles of each axis + Os ângulos de cada eixo + + + + The length of the axes + O comprimento dos eixos + + + + The size of the axis bubbles + O tamanho das bolhas de eixo + + + + The numeration style + O estilo de numeração + + + + Remove + Remover + + + + Add + Adicionar + + + + Distances and angles between axes + Distâncias e ângulos entre eixos + + + + Axis + Eixo + + + + Distance + Distância + + + + Angle + Ângulo + + + + Building + Edifício + + + + Type conversion + Conversão de tipo + + + + Create Building + Criar edifício + + + + Floor + Piso + + + + removing sketch support to avoid cross-referencing + removendo o esboço de suporte para evitar referênças cruzadas + + + + No objects are cut by the plane + Não há objetos cortados por este plano + + + + is not closed + não é fechado + + + + is not valid + não é válido + + + + doesn't contain any solid + não contém qualquer sólido + + + + contains a non-closed solid + contém um sólido não fechado + + + + contains faces that are not part of any solid + contém faces que não são parte de nenhum sólido + + + + Grouping + Agrupamento + + + + Ungrouping + Desagrupando + + + + Split Mesh + Dividir malha + + + + Mesh to Shape + Malha para Forma + + + + All good! no problems found + Tudo ótimo! nenhum problema encontrado + + + + Base component + Componente de base + + + + Additions + Adições + + + + Subtractions + Subtrações + + + + Objects + Objetos + + + + closing Sketch edit + fechando a edição do esboço + + + + The height of this floor + A altura deste piso + + + + Roof + Telhado + + + + Create Roof + Criar telhado + + + + Unable to create a roof + Não é possível criar um telhado + + + + No object selected + Nenhum objeto selecionado + + + + The angle of this roof + O ângulo deste telhado + + + + The face number of the base object used to build this roof + O índice da face do objeto de base usada para construir o telhado + + + + Page + Página + + + + View of + Vista de + + + + Create Section Plane + Criar plano de corte + + + + The objects that must be considered by this section plane. Empty means all document + Os objetos que devem ser considerados por este plano de corte. Vazio significa todos os objetos do documento + + + + The display size of this section plane + O tamanho de exibição deste plano de seção + + + + No shape has been computed yet, select wireframe rendering and render again + Nenhuma forma foi calculado ainda, selecione a renderização wireframe e renderize novamente + + + + Skipping invalid object: + Pulando um objeto inválido: + + + + Site + Terreno + + + + Create Site + Criar sítio + + + + Structure + Estrutura + + + + Create Structure + Criar estrutura + + + + The length of this element, if not based on a profile + O comprimento deste elemento, se não está baseado em um perfil + + + + The width of this element, if not based on a profile + O comprimento deste elemento, se não está baseado em um perfil + + + + The height or extrusion depth of this element. Keep 0 for automatic + A altura ou profundidade de extrusão deste elemento. Manter 0 para automático + + + + Axes systems this structure is built on + Sistemas de eixos nos quais esta estrutura é construída + + + + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + A direção normal de extrusão deste objeto (mantenha (0, 0,0) para normal automática) + + + + The element numbers to exclude when this structure is based on axes + Os índices de elementos a excluir quando essa estrutura é baseada em eixos + + + + Couldn't compute the wall shape + Não foi possível calcular a forma da parede + + + + Wall + Parede + + + + Create Wall + Criar parede + + + + WallTrace + WallTrace + + + + Wall options + Opções de parede + + + + Width + Largura + + + + Height + Altura + + + + Alignment + Alinhamento + + + + Continue + Continuar + + + + The width of this wall. Not used if this wall is based on a face + A largura desta parede. Não usado se esta parede é baseada em uma face + + + + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + A altura desta parede. Mantenha 0 para automático. Não usado se esta parede é baseada em um sólido + + + + The alignment of this wall on its base object, if applicable + O alinhamento desta parede no seu objeto de base, se for o caso + + + + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + Se True, e se esta parede é baseada em uma face, a borda dela será usada, e a face será desconsiderada. + + + + Error: Invalid base object + Erro: Objeto base inválido + + + + This mesh is an invalid solid + Esta malha é um sólido inválido + + + + Error removing splitter from wall shape + Erro na remoção de divisores na forma da parede + + + + Window + Janela + + + + Create Window + Criar janela + + + + the components of this window + os componentes desta janela + + + + Unable to create component + Não é possível criar componente + + + + Edit + Editar + + + + Create/update component + Criar/atualizar componente + + + + Base 2D object + Base objeto 2D + + + + Wires + Fios + + + + Create new component + Criar novo componente + + + + Name + Nome + + + + Type + Tipo + + + + Thickness + Espessura + + + + Z offset + Deslocamento em z + + + + pycollada not found, no collada support. + + pycollada não encontrado, não há suporte de collada + + + + Error: Couldn't determine character encoding + Erro: Não foi possível determinar a codificação de caracteres + + + + file %s successfully created. + arquivo %s foi criado com êxito. + + + + Error: Couldn't determine character encoding + + Erro: Não foi possível determinar a codificação de caracteres + + + + Couldn't locate IfcOpenShell + + Não foi possível localizar IfcOpenShell + + + + IFC Schema not found, IFC import disabled. + + Esquema de IFC não encontrado, Importação IFC será desativada. + + + + + successfully written + gravado com êxito + + + + Arch_Add + + + Add component + Adicionar componente + + + + Adds the selected components to the active object + Adiciona os componentes selecionados ao objeto ativo + + + + Arch_Axis + + + Axis + Eixo + + + + Creates an axis system. + Cria um sistema de eixo. + + + + Arch_Building + + + Building + Edifício + + + + Creates a building object including selected objects. + Cria um edifício, incluindo os objetos selecionados. + + + + Arch_Cell + + + Cell + Célula + + + + Creates a cell object including selected objects + Cria uma célula, incluindo os objetos selecionados + + + + Arch_Check + + + Check + Verificação + + + + Checks the selected objects for problems + Verifica problemas nos objectos selecionados + + + + Arch_CloseHoles + + + Close holes + Fechar buracos + + + + Closes holes in open shapes, turning them solids + Fecha buracos em formas abertas, transformando-os sólidos + + + + Arch_Floor + + + Floor + Piso + + + + Creates a floor object including selected objects + Cria um piso, incluindo os objetos selecionados + + + + Arch_MeshToShape + + + Mesh to Shape + Malha para Forma + + + + Turns selected meshes into Part Shape objects + Transforma as malhas selecionadas em formas de tipo Parte + + + + Arch_Remove + + + Remove component + Remover componente + + + + Remove the selected components from their parents, or create a hole in a component + Remove os componentes selecionados de seus objetos-pais, ou cria um buraco em um componente + + + + Arch_RemoveShape + + + Remove Shape from Arch + Remover forma de Arch + + + + Removes cubic shapes from Arch components + Remove formas cúbicas de componentes Arch + + + + Arch_Roof + + + Roof + Telhado + + + + Creates a roof object from the selected face of an object + Cria um objeto de telhado a partir de uma face selecionada + + + + Arch_SectionPlane + + + Section Plane + Plano de seção + + + + Creates a section plane object, including the selected objects + Cria um objeto de plano de corte, incluindo os objetos selecionados + + + + Arch_SelectNonSolidMeshes + + + Select non-manifold meshes + Selecionar malhas não-manifold + + + + Selects all non-manifold meshes from the document or from the selected groups + Seleciona todas as malhas não-manifold do documento ou dos grupos selecionados + + + + Arch_Site + + + Site + Terreno + + + + Creates a site object including selected objects. + Cria um terreno incluindo os objetos selecionados. + + + + Arch_SplitMesh + + + Split Mesh + Dividir malha + + + + Splits selected meshes into independent components + Divide as malhas selecionadas em componentes independentes + + + + Arch_Structure + + + Structure + Estrutura + + + + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) + Cria uma estrutura a partir do zero ou de um objeto selecionado (esboço, cabo, face ou sólido) + + + + Arch_Wall + + + Wall + Parede + + + + Creates a wall object from scratch or from a selected object (wire, face or solid) + Cria uma parede a partir do zero ou de um objeto selecionado (face, cabo ou sólido) + + + + Arch_Window + + + Window + Janela + + + + Creates a window object from a selected object (wire, rectangle or sketch) + Cria um objeto de janela a partir do objeto selecionado (arame, retângulo ou esboço) + + + + Gui::Dialog::DlgSettingsArch + + + General settings + Configurações gerais + + + + General Arch Settings + Configurações gerais do módulo Arch + + + + Default color for walls + Cor padrão para paredes + + + + This is the default color for new Wall objects + Esta é a cor padrão para novas paredes + + + + Default color for structures + Cor padrão para estruturas + + + + This is the default color for new Structure objects + Esta é a cor padrão para novos objetos de estrutura + + + + Default color for windows + Cor padrão para janelas + + + + IFC import + Importação IFC + + + + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + Se este for marcado, o importador IFCOpenShell será utilizado, permitindo importar mais tipos de objetos IFC + + + + Use IFCOpenShell if available + Usar IFCOpenShell se disponível + + + + Creates groups for each Arch object type + Cria grupos para cada tipo de objeto Arch + + + + Group components by types + Agrupar componentes por tipo + + + + Import furniture (can make the model heavy) + Importar móveis (o modelo pode ficar pesado) + + + + 2D rendering + Renderização 2D + + + + Show debug information during 2D rendering + Mostrar informações de depuração durante a renderização 2D + + + + Show renderer debug messages + Mostrar mensagens de depuração do renderizador + + + + Cut areas line thickness ratio + Espessura de áreas de linha de corte + + + + Specifies how many times the viewed line thickness must be applied to cut lines + Especifica quantas vezes a espessura da linha vista deve ser aplicada para linhas de corte + + + + arch + + + Arch tools + Ferramentas de Arq + + + + Draft tools + Ferramentas do rascunho + + + + Draft mod tools + Ferramentas de modificação do Draft + + + + &Architecture + & Arquitetura + + + + Conversion Tools + Ferramentas de conversão + + + + Calculation Tools + Ferramentas de cálculo + + + + &Draft + &Draft + + + + Context Tools + Ferramentas de contexto + + + + pycollada not found, collada support will be disabled. + + pycollada não encontrado, o suporte collada será desativado + + + diff --git a/src/Mod/Arch/Resources/translations/Arch_pt.qm b/src/Mod/Arch/Resources/translations/Arch_pt.qm deleted file mode 100644 index b750c3e8c..000000000 Binary files a/src/Mod/Arch/Resources/translations/Arch_pt.qm and /dev/null differ diff --git a/src/Mod/Arch/Resources/translations/Arch_pt.ts b/src/Mod/Arch/Resources/translations/Arch_pt.ts deleted file mode 100644 index 6199eedca..000000000 --- a/src/Mod/Arch/Resources/translations/Arch_pt.ts +++ /dev/null @@ -1,268 +0,0 @@ - - - - - Arch - - - Components - Componentes - - - - Remove child - Remover filho - - - - Components of this object - Componentes deste objeto - - - - Arch_Add - - - Add component - Adicionar componente - - - - Adds the selected components to the active object - Adiciona os componentes selecionados ao objeto ativo - - - - Arch_Building - - - Building - Edifício - - - - Creates a building object including selected objects. - Cria um edifício, incluindo os objetos selecionados. - - - - Arch_Cell - - - Cell - Célula - - - - Creates a cell object including selected objects - Cria uma célula, incluindo os objetos selecionados - - - - Arch_Floor - - - Floor - Piso - - - - Creates a floor object including selected objects - Cria um piso, incluindo os objetos selecionados - - - - Arch_MeshToPart - - - Turns selected meshes into Part Shape objects - Transforma as malhas selecionadas em Formas - - - - Arch_MeshToShape - - - Mesh to Shape - Malha para Forma - - - - Arch_Remove - - - Remove component - Remover componente - - - - Remove the selected components from their parents, or create a hole in a component - Remove os componentes selecionados de seus objetos-pais, ou cria um buraco em um componente - - - - Arch_RemoveShape - - - Remove Shape from Arch - Remover forma de Arch - - - - Removes cubic shapes from Arch components - Remove formas cúbicas de componentes Arch - - - - Arch_SectionPlane - - - Section Plane - Plano de seção - - - - Adds a section plane object to the document - Adiciona um objeto de plano de seção no documento - - - - Arch_SelectNonSolidMeshes - - - Select non-manifold meshes - Selecionar malhas não-manifold - - - - Selects all non-manifold meshes from the document or from the selected groups - Seleciona todas as malhas não-manifold do documento ou dos grupos selecionados - - - - Arch_Site - - - Site - Terreno - - - - Creates a site object including selected objects. - Cria um terreno incluindo os objetos selecionados. - - - - Arch_SplitMesh - - - Split Mesh - Dividir malha - - - - Splits selected meshes into independent components - Divide as malhas selecionadas em componentes independentes - - - - Arch_Structure - - - Structure - Estrutura - - - - Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) - Cria uma estrutura a partir do zero ou de um objeto selecionado (esboço, cabo, face ou sólido) - - - - Arch_Wall - - - Wall - Parede - - - - Creates a wall object from scratch or from a selected object (wire, face or solid) - Cria uma parede a partir do zero ou de um objeto selecionado (face, cabo ou sólido) - - - - Arch_Window - - - Window - Janela - - - - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) - Cria um objeto de janela a partir do zero ou de um objeto selecionado (retângulo, arame, ou esboço) - - - - Gui::Dialog::DlgSettingsArch - - - General settings - Configurações gerais - - - - General Arch Settings - Configurações gerais do módulo Arch - - - - Default color for walls - Cor padrão para paredes - - - - This is the default color for new Wall objects - Esta é a cor padrão para novas paredes - - - - Default color for structures - Cor padrão para estruturas - - - - This is the default color for new Structure objects - Esta é a cor padrão para novos objetos de estrutura - - - - arch - - - Arch tools - Ferramentas de Arq - - - - Draft tools - Ferramentas do Draft - - - - Architecture - Arquitetura - - - - Tools - Ferramentas - - - - Draft - Draft - - - diff --git a/src/Mod/Arch/Resources/translations/Arch_ro.qm b/src/Mod/Arch/Resources/translations/Arch_ro.qm new file mode 100644 index 000000000..bc4b5b489 Binary files /dev/null and b/src/Mod/Arch/Resources/translations/Arch_ro.qm differ diff --git a/src/Mod/Arch/Resources/translations/Arch_ro.ts b/src/Mod/Arch/Resources/translations/Arch_ro.ts new file mode 100644 index 000000000..6bfe95d3d --- /dev/null +++ b/src/Mod/Arch/Resources/translations/Arch_ro.ts @@ -0,0 +1,872 @@ + + + + + Arch + + + Components + Components + + + + Components of this object + Components of this object + + + + Axes + Axes + + + + Create Axis + Create Axis + + + + The intervals between axes + The intervals between axes + + + + The angles of each axis + The angles of each axis + + + + The length of the axes + The length of the axes + + + + The size of the axis bubbles + The size of the axis bubbles + + + + The numeration style + The numeration style + + + + Remove + Elimină + + + + Add + Adaugă + + + + Distances and angles between axes + Distances and angles between axes + + + + Axis + Axis + + + + Distance + Distance + + + + Angle + Angle + + + + Building + Building + + + + Type conversion + Type conversion + + + + Create Building + Create Building + + + + Floor + Floor + + + + removing sketch support to avoid cross-referencing + removing sketch support to avoid cross-referencing + + + + No objects are cut by the plane + No objects are cut by the plane + + + + is not closed + is not closed + + + + is not valid + is not valid + + + + doesn't contain any solid + doesn't contain any solid + + + + contains a non-closed solid + contains a non-closed solid + + + + contains faces that are not part of any solid + contains faces that are not part of any solid + + + + Grouping + Grouping + + + + Ungrouping + Ungrouping + + + + Split Mesh + Split Mesh + + + + Mesh to Shape + Mesh to Shape + + + + All good! no problems found + All good! no problems found + + + + Base component + Base component + + + + Additions + Additions + + + + Subtractions + Subtractions + + + + Objects + Objects + + + + closing Sketch edit + closing Sketch edit + + + + The height of this floor + The height of this floor + + + + Roof + Roof + + + + Create Roof + Create Roof + + + + Unable to create a roof + Unable to create a roof + + + + No object selected + No object selected + + + + The angle of this roof + The angle of this roof + + + + The face number of the base object used to build this roof + The face number of the base object used to build this roof + + + + Page + Page + + + + View of + View of + + + + Create Section Plane + Create Section Plane + + + + The objects that must be considered by this section plane. Empty means all document + The objects that must be considered by this section plane. Empty means all document + + + + The display size of this section plane + The display size of this section plane + + + + No shape has been computed yet, select wireframe rendering and render again + Nici o formă a fost calculată încă, selectaţi wireframe-ul pentru redare şi încercaţi din nou + + + + Skipping invalid object: + Skipping invalid object: + + + + Site + Site + + + + Create Site + Create Site + + + + Structure + Structura + + + + Create Structure + Create Structure + + + + The length of this element, if not based on a profile + The length of this element, if not based on a profile + + + + The width of this element, if not based on a profile + The width of this element, if not based on a profile + + + + The height or extrusion depth of this element. Keep 0 for automatic + The height or extrusion depth of this element. Keep 0 for automatic + + + + Axes systems this structure is built on + Axes systems this structure is built on + + + + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + + + + The element numbers to exclude when this structure is based on axes + The element numbers to exclude when this structure is based on axes + + + + Couldn't compute the wall shape + Couldn't compute the wall shape + + + + Wall + Perete + + + + Create Wall + Create Wall + + + + WallTrace + WallTrace + + + + Wall options + Wall options + + + + Width + Width + + + + Height + Height + + + + Alignment + Alignment + + + + Continue + Continue + + + + The width of this wall. Not used if this wall is based on a face + The width of this wall. Not used if this wall is based on a face + + + + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + + + + The alignment of this wall on its base object, if applicable + The alignment of this wall on its base object, if applicable + + + + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + + + + Error: Invalid base object + Error: Invalid base object + + + + This mesh is an invalid solid + This mesh is an invalid solid + + + + Error removing splitter from wall shape + Error removing splitter from wall shape + + + + Window + Fereastră + + + + Create Window + Create Window + + + + the components of this window + the components of this window + + + + Unable to create component + Unable to create component + + + + Edit + Editare + + + + Create/update component + Create/update component + + + + Base 2D object + Base 2D object + + + + Wires + Wires + + + + Create new component + Create new component + + + + Name + Nume + + + + Type + Tip + + + + Thickness + Thickness + + + + Z offset + Z offset + + + + pycollada not found, no collada support. + + pycollada not found, no collada support. + + + + + Error: Couldn't determine character encoding + Error: Couldn't determine character encoding + + + + file %s successfully created. + file %s successfully created. + + + + Error: Couldn't determine character encoding + + Error: Couldn't determine character encoding + + + + + Couldn't locate IfcOpenShell + + Couldn't locate IfcOpenShell + + + + + IFC Schema not found, IFC import disabled. + + IFC Schema not found, IFC import disabled. + + + + + successfully written + successfully written + + + + Arch_Add + + + Add component + Add component + + + + Adds the selected components to the active object + Adds the selected components to the active object + + + + Arch_Axis + + + Axis + Axis + + + + Creates an axis system. + Creates an axis system. + + + + Arch_Building + + + Building + Building + + + + Creates a building object including selected objects. + Creates a building object including selected objects. + + + + Arch_Cell + + + Cell + Cell + + + + Creates a cell object including selected objects + Creates a cell object including selected objects + + + + Arch_Check + + + Check + Check + + + + Checks the selected objects for problems + Checks the selected objects for problems + + + + Arch_CloseHoles + + + Close holes + Close holes + + + + Closes holes in open shapes, turning them solids + Closes holes in open shapes, turning them solids + + + + Arch_Floor + + + Floor + Floor + + + + Creates a floor object including selected objects + Creates a floor object including selected objects + + + + Arch_MeshToShape + + + Mesh to Shape + Mesh to Shape + + + + Turns selected meshes into Part Shape objects + Turns selected meshes into Part Shape objects + + + + Arch_Remove + + + Remove component + Remove component + + + + Remove the selected components from their parents, or create a hole in a component + Remove the selected components from their parents, or create a hole in a component + + + + Arch_RemoveShape + + + Remove Shape from Arch + Remove Shape from Arch + + + + Removes cubic shapes from Arch components + Removes cubic shapes from Arch components + + + + Arch_Roof + + + Roof + Roof + + + + Creates a roof object from the selected face of an object + Creates a roof object from the selected face of an object + + + + Arch_SectionPlane + + + Section Plane + Section Plane + + + + Creates a section plane object, including the selected objects + Creates a section plane object, including the selected objects + + + + Arch_SelectNonSolidMeshes + + + Select non-manifold meshes + Select non-manifold meshes + + + + Selects all non-manifold meshes from the document or from the selected groups + Selects all non-manifold meshes from the document or from the selected groups + + + + Arch_Site + + + Site + Site + + + + Creates a site object including selected objects. + Creează un obiect site, incluzând obiectele selectate. + + + + Arch_SplitMesh + + + Split Mesh + Split Mesh + + + + Splits selected meshes into independent components + Imparte obiectul mesh selectat în componente independente + + + + Arch_Structure + + + Structure + Structura + + + + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) + Creează un obiect structura de la zero sau dintr-un obiect selectat (schita, sârmă, fata sau solide) + + + + Arch_Wall + + + Wall + Perete + + + + Creates a wall object from scratch or from a selected object (wire, face or solid) + Creează un obiect perete de la zero sau dintr-un obiect selectat (sârmă, fata sau solid) + + + + Arch_Window + + + Window + Fereastră + + + + Creates a window object from a selected object (wire, rectangle or sketch) + Creates a window object from a selected object (wire, rectangle or sketch) + + + + Gui::Dialog::DlgSettingsArch + + + General settings + Setări generale + + + + General Arch Settings + General Arch Settings + + + + Default color for walls + Default color for walls + + + + This is the default color for new Wall objects + This is the default color for new Wall objects + + + + Default color for structures + Default color for structures + + + + This is the default color for new Structure objects + This is the default color for new Structure objects + + + + Default color for windows + Default color for windows + + + + IFC import + IFC import + + + + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + + + + Use IFCOpenShell if available + Use IFCOpenShell if available + + + + Creates groups for each Arch object type + Creates groups for each Arch object type + + + + Group components by types + Group components by types + + + + Import furniture (can make the model heavy) + Import furniture (can make the model heavy) + + + + 2D rendering + Redare 2D + + + + Show debug information during 2D rendering + Afişează informații de depanare în timpul de redării 2D + + + + Show renderer debug messages + Show renderer debug messages + + + + Cut areas line thickness ratio + Cut areas line thickness ratio + + + + Specifies how many times the viewed line thickness must be applied to cut lines + Specifies how many times the viewed line thickness must be applied to cut lines + + + + arch + + + Arch tools + Arch tools + + + + Draft tools + Draft tools + + + + Draft mod tools + Draft mod tools + + + + &Architecture + &Architecture + + + + Conversion Tools + Conversion Tools + + + + Calculation Tools + Calculation Tools + + + + &Draft + &Schiţă + + + + Context Tools + Context Tools + + + + pycollada not found, collada support will be disabled. + + pycollada not found, collada support will be disabled. + + + + diff --git a/src/Mod/Arch/Resources/translations/Arch_ru.qm b/src/Mod/Arch/Resources/translations/Arch_ru.qm index fadf28a93..88dead8cf 100644 Binary files a/src/Mod/Arch/Resources/translations/Arch_ru.qm and b/src/Mod/Arch/Resources/translations/Arch_ru.qm differ diff --git a/src/Mod/Arch/Resources/translations/Arch_ru.ts b/src/Mod/Arch/Resources/translations/Arch_ru.ts index 5e65071b6..9e234b25b 100644 --- a/src/Mod/Arch/Resources/translations/Arch_ru.ts +++ b/src/Mod/Arch/Resources/translations/Arch_ru.ts @@ -4,43 +4,527 @@ Arch - + Components Компоненты - - Remove child - Удаление потомка - - - + Components of this object Компоненты этого объекта + + + Axes + Оси + + + + Create Axis + Создать оси координат + + + + The intervals between axes + Интервалы между осями + + + + The angles of each axis + Углы между каждой парой осей + + + + The length of the axes + Длина осей + + + + The size of the axis bubbles + The size of the axis bubbles + + + + The numeration style + Стиль нумерации + + + + Remove + Удалить + + + + Add + Добавить + + + + Distances and angles between axes + Расстояния и углы между осями + + + + Axis + Ось + + + + Distance + Расстояние + + + + Angle + Угол + + + + Building + Здание + + + + Type conversion + Преобразование типа + + + + Create Building + Create Building + + + + Floor + Пол + + + + removing sketch support to avoid cross-referencing + removing sketch support to avoid cross-referencing + + + + No objects are cut by the plane + Полскость не пересекает ни один объект + + + + is not closed + не замкнут + + + + is not valid + не подходит + + + + doesn't contain any solid + не содержит каких-либо тел + + + + contains a non-closed solid + contains a non-closed solid + + + + contains faces that are not part of any solid + contains faces that are not part of any solid + + + + Grouping + Группировка + + + + Ungrouping + Разгруппировка + + + + Split Mesh + Разделить сетку + + + + Mesh to Shape + Сетка для фигуры + + + + All good! no problems found + Все в порядке! проблем не найдено + + + + Base component + Базовый компонент + + + + Additions + Дополнения + + + + Subtractions + Subtractions + + + + Objects + Объекты + + + + closing Sketch edit + closing Sketch edit + + + + The height of this floor + The height of this floor + + + + Roof + Крыша + + + + Create Roof + Создать крышу + + + + Unable to create a roof + Невозможно создать крышу + + + + No object selected + Нет выделенных объектов + + + + The angle of this roof + Угол наклона этой крыши + + + + The face number of the base object used to build this roof + The face number of the base object used to build this roof + + + + Page + Страница + + + + View of + View of + + + + Create Section Plane + Создайте секущую плоскость + + + + The objects that must be considered by this section plane. Empty means all document + The objects that must be considered by this section plane. Empty means all document + + + + The display size of this section plane + The display size of this section plane + + + + No shape has been computed yet, select wireframe rendering and render again + No shape has been computed yet, select wireframe rendering and render again + + + + Skipping invalid object: + Skipping invalid object: + + + + Site + Место + + + + Create Site + Создать площадку + + + + Structure + Структура + + + + Create Structure + Создать структуру + + + + The length of this element, if not based on a profile + Длина элемента, если она не определена в профиле + + + + The width of this element, if not based on a profile + Ширина элемента, если она не определена в профиле + + + + The height or extrusion depth of this element. Keep 0 for automatic + Высота или глубина выдавливания элемента. Задайте 0 для автоматического определения + + + + Axes systems this structure is built on + Axes systems this structure is built on + + + + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + + + + The element numbers to exclude when this structure is based on axes + The element numbers to exclude when this structure is based on axes + + + + Couldn't compute the wall shape + Couldn't compute the wall shape + + + + Wall + Стена + + + + Create Wall + Создать стену + + + + WallTrace + WallTrace + + + + Wall options + Параметры стены + + + + Width + Ширина + + + + Height + Высота + + + + Alignment + Выравнивание + + + + Continue + Продолжить + + + + The width of this wall. Not used if this wall is based on a face + The width of this wall. Not used if this wall is based on a face + + + + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + + + + The alignment of this wall on its base object, if applicable + The alignment of this wall on its base object, if applicable + + + + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + + + + Error: Invalid base object + Error: Invalid base object + + + + This mesh is an invalid solid + This mesh is an invalid solid + + + + Error removing splitter from wall shape + Error removing splitter from wall shape + + + + Window + Окно + + + + Create Window + Создать окно + + + + the components of this window + компоненты этого окна + + + + Unable to create component + Не удается создать компонент + + + + Edit + Правка + + + + Create/update component + Создание/обновление компонента + + + + Base 2D object + Базовый объект 2D + + + + Wires + Направляющие + + + + Create new component + Создать новый компонент + + + + Name + Название + + + + Type + Тип + + + + Thickness + Толщина + + + + Z offset + Z-смещение + + + + pycollada not found, no collada support. + + pycollada not found, no collada support. + + + + + Error: Couldn't determine character encoding + Ошибка: Не удалось определить кодировку символов + + + + file %s successfully created. + файл %s успешно создан. + + + + Error: Couldn't determine character encoding + + Ошибка: Не удалось определить кодировку символов + + + + + Couldn't locate IfcOpenShell + + Не удается найти IfcOpenShell + + + + IFC Schema not found, IFC import disabled. + + МФК схемы не найдена, МФК импорт отключен + + + + successfully written + успешно записаны + Arch_Add - + Add component Добавить компонент - + Adds the selected components to the active object Добавить выбранные компоненты для активного объекта + + Arch_Axis + + + Axis + Ось + + + + Creates an axis system. + Создает систему осей. + + Arch_Building - + Building Здание - + Creates a building object including selected objects. Создаёт объект здания, включая выбранные объекты. @@ -48,54 +532,77 @@ Arch_Cell - + Cell Ячейка - + Creates a cell object including selected objects Создать объект Ячейка, включая выбранные объекты + + Arch_Check + + + Check + Проверить + + + + Checks the selected objects for problems + Проверка выбранных объектов + + + + Arch_CloseHoles + + + Close holes + Убрать отверстия + + + + Closes holes in open shapes, turning them solids + Closes holes in open shapes, turning them solids + + Arch_Floor - + Floor Пол - + Creates a floor object including selected objects Создать объект пола, включая выбранные объекты - - Arch_MeshToPart - - - Turns selected meshes into Part Shape objects - Включить выбранные сетки в объекты Части формы - - Arch_MeshToShape - + Mesh to Shape Сетка для фигуры + + + Turns selected meshes into Part Shape objects + Turns selected meshes into Part Shape objects + Arch_Remove - + Remove component Удалить компонент - + Remove the selected components from their parents, or create a hole in a component Удалить выбранные компоненты из их родителей, или создать отверстие в компоненте @@ -103,51 +610,64 @@ Arch_RemoveShape - + Remove Shape from Arch - Удалить форму из Arch + Удалить форму из Архитектуры - + Removes cubic shapes from Arch components - Удаляет кубические формы из Arch компонентов + Удаляет кубические формы из компонентов Архитектуры + + + + Arch_Roof + + + Roof + Крыша + + + + Creates a roof object from the selected face of an object + Creates a roof object from the selected face of an object Arch_SectionPlane - + Section Plane Плоскость сечения - - Adds a section plane object to the document - Adds a section plane object to the document + + Creates a section plane object, including the selected objects + Creates a section plane object, including the selected objects Arch_SelectNonSolidMeshes - + Select non-manifold meshes - Select non-manifold meshes + Выбрать не-разнородные сетки - + Selects all non-manifold meshes from the document or from the selected groups - Selects all non-manifold meshes from the document or from the selected groups + Выбрать все не-разнородные сетки из документа или из выбранных групп Arch_Site - + Site Место - + Creates a site object including selected objects. Создать объект Место, включая выбранные объекты @@ -155,12 +675,12 @@ Arch_SplitMesh - + Split Mesh Разделить сетку - + Splits selected meshes into independent components Разделить выбранные сетки на независимые компоненты @@ -168,12 +688,12 @@ Arch_Structure - + Structure Структура - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Создать структуру объекта с нуля, либо из выбранного объекта (эскиза, провода, поверхности или тела) @@ -181,12 +701,12 @@ Arch_Wall - + Wall Стена - + Creates a wall object from scratch or from a selected object (wire, face or solid) Создать объект Стена из меток или из выбранного объекта (провод, поверхность или твердый объект) @@ -194,14 +714,14 @@ Arch_Window - + Window Окно - - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) + + Creates a window object from a selected object (wire, rectangle or sketch) + Creates a window object from a selected object (wire, rectangle or sketch) @@ -214,7 +734,7 @@ General Arch Settings - Общие настройки Arch + Общие настройки Архитектуры @@ -224,7 +744,7 @@ This is the default color for new Wall objects - Это цвет по умолчанию для новых стен-объектов + Это цвет по умолчанию для новых объектов стен @@ -234,35 +754,116 @@ This is the default color for new Structure objects - This is the default color for new Structure objects + Это цвет по умолчанию для новых структур + + + + Default color for windows + Цвет окон по умолчанию + + + + IFC import + IFC import + + + + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + + + + Use IFCOpenShell if available + Use IFCOpenShell if available + + + + Creates groups for each Arch object type + Создает группы для каждого объекта типа арка + + + + Group components by types + Группировать компоненты по типам + + + + Import furniture (can make the model heavy) + Import furniture (can make the model heavy) + + + + 2D rendering + 2D визуализация + + + + Show debug information during 2D rendering + Отображать отладочную информацию в 2D визуализации + + + + Show renderer debug messages + Показать сообщения отладки визуализации + + + + Cut areas line thickness ratio + Cut areas line thickness ratio + + + + Specifies how many times the viewed line thickness must be applied to cut lines + Specifies how many times the viewed line thickness must be applied to cut lines arch - + Arch tools - Arch tools + Инструменты Архитектуры - + Draft tools - Draft tools + Инструменты Проектов - - Architecture - Architecture + + Draft mod tools + Инструменты режима Черновик - - Tools - Инструменты + + &Architecture + &Архитектура - - Draft - Draft + + Conversion Tools + Инструменты преобразования + + + + Calculation Tools + Средства вычисления + + + + &Draft + &Черчение + + + + Context Tools + Инструменты окружения + + + + pycollada not found, collada support will be disabled. + + pycollada не найден, поддержка collada будет отключена diff --git a/src/Mod/Arch/Resources/translations/Arch_se.qm b/src/Mod/Arch/Resources/translations/Arch_se.qm deleted file mode 100644 index 22c6fd44f..000000000 Binary files a/src/Mod/Arch/Resources/translations/Arch_se.qm and /dev/null differ diff --git a/src/Mod/Arch/Resources/translations/Arch_se.ts b/src/Mod/Arch/Resources/translations/Arch_se.ts deleted file mode 100644 index 9280a8fc0..000000000 --- a/src/Mod/Arch/Resources/translations/Arch_se.ts +++ /dev/null @@ -1,268 +0,0 @@ - - - - - Arch - - - Components - Komponenter - - - - Remove child - Ta bort barnet - - - - Components of this object - Komponenter i det här objektet - - - - Arch_Add - - - Add component - Lägg till komponent - - - - Adds the selected components to the active object - Lägger till de valda komponenterna till det aktiva objektet - - - - Arch_Building - - - Building - Byggnad - - - - Creates a building object including selected objects. - Skapar ett byggnadsobjekt inkluderande valda objekt. - - - - Arch_Cell - - - Cell - Cell - - - - Creates a cell object including selected objects - Skapar ett cellobjekt inkluderande valda objekt - - - - Arch_Floor - - - Floor - Golv - - - - Creates a floor object including selected objects - Skapar ett golvobjekt inkluderat de valda objekten - - - - Arch_MeshToPart - - - Turns selected meshes into Part Shape objects - Omvandlar valda nät till Del form objekt - - - - Arch_MeshToShape - - - Mesh to Shape - Nät till form - - - - Arch_Remove - - - Remove component - Ta bort komponent - - - - Remove the selected components from their parents, or create a hole in a component - Ta bort de valda komponenterna från deras föräldrar, eller skapa ett hål i en komponent - - - - Arch_RemoveShape - - - Remove Shape from Arch - Ta bort form från Arch - - - - Removes cubic shapes from Arch components - Tar bort kubiska former från Arch komponenter - - - - Arch_SectionPlane - - - Section Plane - Sektionsplan - - - - Adds a section plane object to the document - Adderar ett sektionsplan objekt till dokumentet - - - - Arch_SelectNonSolidMeshes - - - Select non-manifold meshes - Välj icke-manifold nät - - - - Selects all non-manifold meshes from the document or from the selected groups - Väljer alla icke-manifold nät från dokumentet eller från de valda grupperna - - - - Arch_Site - - - Site - Plats - - - - Creates a site object including selected objects. - Skapar ett platsobjekt inkluderande valda objekt. - - - - Arch_SplitMesh - - - Split Mesh - Splitta nät - - - - Splits selected meshes into independent components - Delar valda nät i självständiga komponenter - - - - Arch_Structure - - - Structure - Struktur - - - - Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) - Skapar ett strukturobjekt från början eller från ett markerat objekt (skiss, tråd, yta eller solid) - - - - Arch_Wall - - - Wall - Vägg - - - - Creates a wall object from scratch or from a selected object (wire, face or solid) - Skapar ett väggobjekt från början eller från ett markerat objekt (tråd, yta eller solid) - - - - Arch_Window - - - Window - Fönster - - - - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) - Skapar ett fönsterobjekt från början eller från ett markerat objekt (tråd, rektangel eller skiss) - - - - Gui::Dialog::DlgSettingsArch - - - General settings - Allmänna inställningar - - - - General Arch Settings - Allmänna Arch inställningar - - - - Default color for walls - Standardfärg för väggar - - - - This is the default color for new Wall objects - Detta är standardfärgen för nya Väggobjekt - - - - Default color for structures - Standardfärg för strukturer - - - - This is the default color for new Structure objects - Detta är standardfärgen för nya strukturobjekt - - - - arch - - - Arch tools - Arch tools - - - - Draft tools - Draft tools - - - - Architecture - Architecture - - - - Tools - Verktyg - - - - Draft - Draft - - - diff --git a/src/Mod/Arch/Resources/translations/Arch_sk.qm b/src/Mod/Arch/Resources/translations/Arch_sk.qm new file mode 100644 index 000000000..39d132e57 Binary files /dev/null and b/src/Mod/Arch/Resources/translations/Arch_sk.qm differ diff --git a/src/Mod/Arch/Resources/translations/Arch_sk.ts b/src/Mod/Arch/Resources/translations/Arch_sk.ts new file mode 100644 index 000000000..e29569567 --- /dev/null +++ b/src/Mod/Arch/Resources/translations/Arch_sk.ts @@ -0,0 +1,872 @@ + + + + + Arch + + + Components + Komponenty + + + + Components of this object + Komponenty tohoto objektu + + + + Axes + Axes + + + + Create Axis + Create Axis + + + + The intervals between axes + The intervals between axes + + + + The angles of each axis + The angles of each axis + + + + The length of the axes + The length of the axes + + + + The size of the axis bubbles + The size of the axis bubbles + + + + The numeration style + The numeration style + + + + Remove + Odstrániť + + + + Add + Pridať + + + + Distances and angles between axes + Distances and angles between axes + + + + Axis + Axis + + + + Distance + Vzdialenosť + + + + Angle + Uhol + + + + Building + Budova + + + + Type conversion + Type conversion + + + + Create Building + Create Building + + + + Floor + Podlaha + + + + removing sketch support to avoid cross-referencing + removing sketch support to avoid cross-referencing + + + + No objects are cut by the plane + No objects are cut by the plane + + + + is not closed + is not closed + + + + is not valid + is not valid + + + + doesn't contain any solid + doesn't contain any solid + + + + contains a non-closed solid + contains a non-closed solid + + + + contains faces that are not part of any solid + contains faces that are not part of any solid + + + + Grouping + Grouping + + + + Ungrouping + Ungrouping + + + + Split Mesh + Rozdeliť sieť + + + + Mesh to Shape + Sieť do tvaru + + + + All good! no problems found + All good! no problems found + + + + Base component + Base component + + + + Additions + Additions + + + + Subtractions + Subtractions + + + + Objects + Objects + + + + closing Sketch edit + closing Sketch edit + + + + The height of this floor + The height of this floor + + + + Roof + Roof + + + + Create Roof + Create Roof + + + + Unable to create a roof + Unable to create a roof + + + + No object selected + No object selected + + + + The angle of this roof + The angle of this roof + + + + The face number of the base object used to build this roof + The face number of the base object used to build this roof + + + + Page + Page + + + + View of + View of + + + + Create Section Plane + Create Section Plane + + + + The objects that must be considered by this section plane. Empty means all document + The objects that must be considered by this section plane. Empty means all document + + + + The display size of this section plane + The display size of this section plane + + + + No shape has been computed yet, select wireframe rendering and render again + No shape has been computed yet, select wireframe rendering and render again + + + + Skipping invalid object: + Skipping invalid object: + + + + Site + Terén + + + + Create Site + Create Site + + + + Structure + Konštrukcia + + + + Create Structure + Create Structure + + + + The length of this element, if not based on a profile + The length of this element, if not based on a profile + + + + The width of this element, if not based on a profile + The width of this element, if not based on a profile + + + + The height or extrusion depth of this element. Keep 0 for automatic + The height or extrusion depth of this element. Keep 0 for automatic + + + + Axes systems this structure is built on + Axes systems this structure is built on + + + + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + + + + The element numbers to exclude when this structure is based on axes + The element numbers to exclude when this structure is based on axes + + + + Couldn't compute the wall shape + Couldn't compute the wall shape + + + + Wall + Stena + + + + Create Wall + Create Wall + + + + WallTrace + WallTrace + + + + Wall options + Wall options + + + + Width + Width + + + + Height + Height + + + + Alignment + Alignment + + + + Continue + Continue + + + + The width of this wall. Not used if this wall is based on a face + The width of this wall. Not used if this wall is based on a face + + + + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + + + + The alignment of this wall on its base object, if applicable + The alignment of this wall on its base object, if applicable + + + + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + + + + Error: Invalid base object + Error: Invalid base object + + + + This mesh is an invalid solid + This mesh is an invalid solid + + + + Error removing splitter from wall shape + Error removing splitter from wall shape + + + + Window + Okno + + + + Create Window + Create Window + + + + the components of this window + the components of this window + + + + Unable to create component + Unable to create component + + + + Edit + Upraviť + + + + Create/update component + Create/update component + + + + Base 2D object + Base 2D object + + + + Wires + Wires + + + + Create new component + Create new component + + + + Name + Názov + + + + Type + Typ + + + + Thickness + Thickness + + + + Z offset + Z offset + + + + pycollada not found, no collada support. + + pycollada not found, no collada support. + + + + + Error: Couldn't determine character encoding + Error: Couldn't determine character encoding + + + + file %s successfully created. + file %s successfully created. + + + + Error: Couldn't determine character encoding + + Error: Couldn't determine character encoding + + + + + Couldn't locate IfcOpenShell + + Couldn't locate IfcOpenShell + + + + + IFC Schema not found, IFC import disabled. + + IFC Schema not found, IFC import disabled. + + + + + successfully written + successfully written + + + + Arch_Add + + + Add component + Pridaj komponent + + + + Adds the selected components to the active object + Pridať vybraté komponenty k aktívnym objektom + + + + Arch_Axis + + + Axis + Axis + + + + Creates an axis system. + Creates an axis system. + + + + Arch_Building + + + Building + Budova + + + + Creates a building object including selected objects. + Vytvorí objekt budovy, vrátane vybratých objektov. + + + + Arch_Cell + + + Cell + Bunka + + + + Creates a cell object including selected objects + Vytvorí objekt Bunka vrátane označených objektov + + + + Arch_Check + + + Check + Check + + + + Checks the selected objects for problems + Checks the selected objects for problems + + + + Arch_CloseHoles + + + Close holes + Close holes + + + + Closes holes in open shapes, turning them solids + Closes holes in open shapes, turning them solids + + + + Arch_Floor + + + Floor + Podlaha + + + + Creates a floor object including selected objects + Vytvorí objekt Podlahy, vrátane vybraných objektov + + + + Arch_MeshToShape + + + Mesh to Shape + Sieť do tvaru + + + + Turns selected meshes into Part Shape objects + Turns selected meshes into Part Shape objects + + + + Arch_Remove + + + Remove component + Odstrániť časť + + + + Remove the selected components from their parents, or create a hole in a component + Odstrániť vybrané komponenty od svojich nadradených objektov, alebo vytvoriť dieru v časti + + + + Arch_RemoveShape + + + Remove Shape from Arch + Odstrániť tvar z oblúka + + + + Removes cubic shapes from Arch components + Odstráni kockové tvary z oblúkovych komponentov + + + + Arch_Roof + + + Roof + Roof + + + + Creates a roof object from the selected face of an object + Creates a roof object from the selected face of an object + + + + Arch_SectionPlane + + + Section Plane + Rovina rezu + + + + Creates a section plane object, including the selected objects + Creates a section plane object, including the selected objects + + + + Arch_SelectNonSolidMeshes + + + Select non-manifold meshes + Označ non-manifold siete + + + + Selects all non-manifold meshes from the document or from the selected groups + Vyberie všetky non-manifold siete z dokumentu alebo z vybranej skupiny + + + + Arch_Site + + + Site + Terén + + + + Creates a site object including selected objects. + Vytvorí objekt Terén vrátane označených objektov + + + + Arch_SplitMesh + + + Split Mesh + Rozdeliť sieť + + + + Splits selected meshes into independent components + Rozdelí označené siete na nezávislé komponenty + + + + Arch_Structure + + + Structure + Konštrukcia + + + + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) + Vytvorí objekt Konštrukcie, od nuly alebo z vybratého objektu (náčrt, drôtový, plocha alebo pevný) + + + + Arch_Wall + + + Wall + Stena + + + + Creates a wall object from scratch or from a selected object (wire, face or solid) + Vytvorí objekt steny, od nuly alebo z vybratého objektu (drôtov, plochy alebo pevného) + + + + Arch_Window + + + Window + Okno + + + + Creates a window object from a selected object (wire, rectangle or sketch) + Creates a window object from a selected object (wire, rectangle or sketch) + + + + Gui::Dialog::DlgSettingsArch + + + General settings + Základné nastavenia + + + + General Arch Settings + Všeobecné nastavenia oblúka + + + + Default color for walls + Predvolená farba stien + + + + This is the default color for new Wall objects + Toto je predvolená farba pre nový objekt Steny + + + + Default color for structures + Predvolená farba pre konštrukcie + + + + This is the default color for new Structure objects + Toto je predvolená farba pre nový objekt Konštrukcie + + + + Default color for windows + Default color for windows + + + + IFC import + IFC import + + + + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + + + + Use IFCOpenShell if available + Use IFCOpenShell if available + + + + Creates groups for each Arch object type + Creates groups for each Arch object type + + + + Group components by types + Group components by types + + + + Import furniture (can make the model heavy) + Import furniture (can make the model heavy) + + + + 2D rendering + 2D rendering + + + + Show debug information during 2D rendering + Show debug information during 2D rendering + + + + Show renderer debug messages + Show renderer debug messages + + + + Cut areas line thickness ratio + Cut areas line thickness ratio + + + + Specifies how many times the viewed line thickness must be applied to cut lines + Specifies how many times the viewed line thickness must be applied to cut lines + + + + arch + + + Arch tools + Arch nástroje + + + + Draft tools + Nástroje Návrhu + + + + Draft mod tools + Draft mod tools + + + + &Architecture + &Architecture + + + + Conversion Tools + Conversion Tools + + + + Calculation Tools + Calculation Tools + + + + &Draft + &Draft + + + + Context Tools + Context Tools + + + + pycollada not found, collada support will be disabled. + + pycollada not found, collada support will be disabled. + + + + diff --git a/src/Mod/Arch/Resources/translations/Arch_sv-SE.qm b/src/Mod/Arch/Resources/translations/Arch_sv-SE.qm new file mode 100644 index 000000000..a05b23b0a Binary files /dev/null and b/src/Mod/Arch/Resources/translations/Arch_sv-SE.qm differ diff --git a/src/Mod/Arch/Resources/translations/Arch_sv-SE.ts b/src/Mod/Arch/Resources/translations/Arch_sv-SE.ts new file mode 100644 index 000000000..7782a13e5 --- /dev/null +++ b/src/Mod/Arch/Resources/translations/Arch_sv-SE.ts @@ -0,0 +1,871 @@ + + + + + Arch + + + Components + Komponenter + + + + Components of this object + Komponenter i det här objektet + + + + Axes + Axlar + + + + Create Axis + Skapa axel + + + + The intervals between axes + Intervallet mellan axlarna + + + + The angles of each axis + Vinklarna på varje axel + + + + The length of the axes + Längden på axlarna + + + + The size of the axis bubbles + Storleken på axel-bubblorna + + + + The numeration style + The numeration style + + + + Remove + Ta bort + + + + Add + Lägg till + + + + Distances and angles between axes + Avstånd och vinklar mellan axlar + + + + Axis + Axel + + + + Distance + Distans + + + + Angle + Vinkel + + + + Building + Byggnad + + + + Type conversion + Typkonvertering + + + + Create Building + Skapa byggnad + + + + Floor + Golv + + + + removing sketch support to avoid cross-referencing + ta bort skiss stöd för att undvika korsreferenser + + + + No objects are cut by the plane + Inga objekt skärs av planet + + + + is not closed + är inte stängd + + + + is not valid + är inte giltig + + + + doesn't contain any solid + innehåller inte någon solid + + + + contains a non-closed solid + contains a non-closed solid + + + + contains faces that are not part of any solid + contains faces that are not part of any solid + + + + Grouping + Gruppering + + + + Ungrouping + Dela upp + + + + Split Mesh + Splitta nät + + + + Mesh to Shape + Nät till form + + + + All good! no problems found + Allt bra! inga problem hittades + + + + Base component + Baskomponent + + + + Additions + Additioner + + + + Subtractions + Subtraktioner + + + + Objects + Objekt + + + + closing Sketch edit + Stänger Skiss redigering + + + + The height of this floor + Höjden på denna våningen + + + + Roof + Tak + + + + Create Roof + Skapa tak + + + + Unable to create a roof + Det gick inte att skapa ett tak + + + + No object selected + Inga objekt markerat + + + + The angle of this roof + Vinkeln på detta tak + + + + The face number of the base object used to build this roof + Ytantalet på det basobjekt som användes för att skapa detta tak + + + + Page + Sida + + + + View of + Vy över + + + + Create Section Plane + Skapa snittplan + + + + The objects that must be considered by this section plane. Empty means all document + De objekt som måste beaktas av detta snittplan. Tom innebär hela dokumentet + + + + The display size of this section plane + Visningsstorleken på detta snittplan + + + + No shape has been computed yet, select wireframe rendering and render again + Ingen form har beräknats ännu, välj trådramsrendering och rendera igen + + + + Skipping invalid object: + Hoppar över ogiltigt objekt: + + + + Site + Plats + + + + Create Site + Skapa plats + + + + Structure + Struktur + + + + Create Structure + Skapa struktur + + + + The length of this element, if not based on a profile + Längden på detta element, om det inte baserats på en profil + + + + The width of this element, if not based on a profile + Bredden på detta element, om det inte baserats på en profil + + + + The height or extrusion depth of this element. Keep 0 for automatic + Höjd eller extruderingsdjup på detta element. Behåll 0 för automatik + + + + Axes systems this structure is built on + Axelsystem som denna struktur är byggd på + + + + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + Den normala extrusionsriktningen på detta objekt (Behåll (0,0,0) för automatisk normal) + + + + The element numbers to exclude when this structure is based on axes + De elementnummer som ska uteslutas när denna struktur är baserad på axlar + + + + Couldn't compute the wall shape + Det gick inte att beräkna väggformen + + + + Wall + Vägg + + + + Create Wall + Skapa vägg + + + + WallTrace + WallTrace + + + + Wall options + Alternativ för vägg + + + + Width + Bredd + + + + Height + Height + + + + Alignment + Alignment + + + + Continue + Continue + + + + The width of this wall. Not used if this wall is based on a face + The width of this wall. Not used if this wall is based on a face + + + + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + + + + The alignment of this wall on its base object, if applicable + The alignment of this wall on its base object, if applicable + + + + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + + + + Error: Invalid base object + Error: Invalid base object + + + + This mesh is an invalid solid + This mesh is an invalid solid + + + + Error removing splitter from wall shape + Error removing splitter from wall shape + + + + Window + Fönster + + + + Create Window + Create Window + + + + the components of this window + the components of this window + + + + Unable to create component + Unable to create component + + + + Edit + Redigera + + + + Create/update component + Create/update component + + + + Base 2D object + Base 2D object + + + + Wires + Wires + + + + Create new component + Create new component + + + + Name + Namn + + + + Type + Typ + + + + Thickness + Thickness + + + + Z offset + Z offset + + + + pycollada not found, no collada support. + + pycollada not found, no collada support. + + + + + Error: Couldn't determine character encoding + Error: Couldn't determine character encoding + + + + file %s successfully created. + file %s successfully created. + + + + Error: Couldn't determine character encoding + + Error: Couldn't determine character encoding + + + + + Couldn't locate IfcOpenShell + + Couldn't locate IfcOpenShell + + + + + IFC Schema not found, IFC import disabled. + + IFC Schema not found, IFC import disabled. + + + + + successfully written + successfully written + + + + Arch_Add + + + Add component + Lägg till komponent + + + + Adds the selected components to the active object + Lägger till de valda komponenterna till det aktiva objektet + + + + Arch_Axis + + + Axis + Axel + + + + Creates an axis system. + Creates an axis system. + + + + Arch_Building + + + Building + Byggnad + + + + Creates a building object including selected objects. + Skapar ett byggnadsobjekt inkluderande valda objekt. + + + + Arch_Cell + + + Cell + Cell + + + + Creates a cell object including selected objects + Skapar ett cellobjekt inkluderande valda objekt + + + + Arch_Check + + + Check + Check + + + + Checks the selected objects for problems + Checks the selected objects for problems + + + + Arch_CloseHoles + + + Close holes + Close holes + + + + Closes holes in open shapes, turning them solids + Closes holes in open shapes, turning them solids + + + + Arch_Floor + + + Floor + Golv + + + + Creates a floor object including selected objects + Skapar ett golvobjekt inkluderat de valda objekten + + + + Arch_MeshToShape + + + Mesh to Shape + Nät till form + + + + Turns selected meshes into Part Shape objects + Turns selected meshes into Part Shape objects + + + + Arch_Remove + + + Remove component + Ta bort komponent + + + + Remove the selected components from their parents, or create a hole in a component + Ta bort de valda komponenterna från deras föräldrar, eller skapa ett hål i en komponent + + + + Arch_RemoveShape + + + Remove Shape from Arch + Ta bort form från Arch + + + + Removes cubic shapes from Arch components + Tar bort kubiska former från Arch komponenter + + + + Arch_Roof + + + Roof + Tak + + + + Creates a roof object from the selected face of an object + Creates a roof object from the selected face of an object + + + + Arch_SectionPlane + + + Section Plane + Sektionsplan + + + + Creates a section plane object, including the selected objects + Creates a section plane object, including the selected objects + + + + Arch_SelectNonSolidMeshes + + + Select non-manifold meshes + Välj icke-manifold nät + + + + Selects all non-manifold meshes from the document or from the selected groups + Väljer alla icke-manifold nät från dokumentet eller från de valda grupperna + + + + Arch_Site + + + Site + Plats + + + + Creates a site object including selected objects. + Skapar ett platsobjekt inkluderande valda objekt. + + + + Arch_SplitMesh + + + Split Mesh + Splitta nät + + + + Splits selected meshes into independent components + Delar valda nät i självständiga komponenter + + + + Arch_Structure + + + Structure + Struktur + + + + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) + Skapar ett strukturobjekt från början eller från ett markerat objekt (skiss, tråd, yta eller solid) + + + + Arch_Wall + + + Wall + Vägg + + + + Creates a wall object from scratch or from a selected object (wire, face or solid) + Skapar ett väggobjekt från början eller från ett markerat objekt (tråd, yta eller solid) + + + + Arch_Window + + + Window + Fönster + + + + Creates a window object from a selected object (wire, rectangle or sketch) + Creates a window object from a selected object (wire, rectangle or sketch) + + + + Gui::Dialog::DlgSettingsArch + + + General settings + Allmänna inställningar + + + + General Arch Settings + Allmänna Arch inställningar + + + + Default color for walls + Standardfärg för väggar + + + + This is the default color for new Wall objects + Detta är standardfärgen för nya Väggobjekt + + + + Default color for structures + Standardfärg för strukturer + + + + This is the default color for new Structure objects + Detta är standardfärgen för nya strukturobjekt + + + + Default color for windows + Default color for windows + + + + IFC import + IFC import + + + + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + + + + Use IFCOpenShell if available + Use IFCOpenShell if available + + + + Creates groups for each Arch object type + Creates groups for each Arch object type + + + + Group components by types + Group components by types + + + + Import furniture (can make the model heavy) + Import furniture (can make the model heavy) + + + + 2D rendering + 2D rendering + + + + Show debug information during 2D rendering + Show debug information during 2D rendering + + + + Show renderer debug messages + Show renderer debug messages + + + + Cut areas line thickness ratio + Cut areas line thickness ratio + + + + Specifies how many times the viewed line thickness must be applied to cut lines + Anger hur många gånger som den visade linjetjockleken måste tillämpas på klippta linjer + + + + arch + + + Arch tools + Arch verktyg + + + + Draft tools + Skissverktyg + + + + Draft mod tools + Verktyg för skissläge + + + + &Architecture + &Arkitektur + + + + Conversion Tools + Konverteringsverktyg + + + + Calculation Tools + Beräkningsverktyg + + + + &Draft + &Draft + + + + Context Tools + Sammanhangsverktyg + + + + pycollada not found, collada support will be disabled. + + pycollada kunde inte hittas, collada stödet kommer därför att inaktiveras. + + + diff --git a/src/Mod/Arch/Resources/translations/Arch_tr.qm b/src/Mod/Arch/Resources/translations/Arch_tr.qm new file mode 100644 index 000000000..961ac3e9a Binary files /dev/null and b/src/Mod/Arch/Resources/translations/Arch_tr.qm differ diff --git a/src/Mod/Arch/Resources/translations/Arch_tr.ts b/src/Mod/Arch/Resources/translations/Arch_tr.ts new file mode 100644 index 000000000..1cf3e9e3d --- /dev/null +++ b/src/Mod/Arch/Resources/translations/Arch_tr.ts @@ -0,0 +1,872 @@ + + + + + Arch + + + Components + Bileşenler + + + + Components of this object + Bu nesnenin parçacıkları + + + + Axes + Axes + + + + Create Axis + Create Axis + + + + The intervals between axes + The intervals between axes + + + + The angles of each axis + The angles of each axis + + + + The length of the axes + The length of the axes + + + + The size of the axis bubbles + The size of the axis bubbles + + + + The numeration style + The numeration style + + + + Remove + Kaldır + + + + Add + Ekle + + + + Distances and angles between axes + Distances and angles between axes + + + + Axis + Axis + + + + Distance + Uzaklık + + + + Angle + Angle + + + + Building + İnşa ediliyor + + + + Type conversion + Type conversion + + + + Create Building + Create Building + + + + Floor + Zemin + + + + removing sketch support to avoid cross-referencing + removing sketch support to avoid cross-referencing + + + + No objects are cut by the plane + No objects are cut by the plane + + + + is not closed + is not closed + + + + is not valid + is not valid + + + + doesn't contain any solid + doesn't contain any solid + + + + contains a non-closed solid + contains a non-closed solid + + + + contains faces that are not part of any solid + contains faces that are not part of any solid + + + + Grouping + Grouping + + + + Ungrouping + Ungrouping + + + + Split Mesh + Parçacıkları ayır + + + + Mesh to Shape + Parçacıklardan şekle + + + + All good! no problems found + All good! no problems found + + + + Base component + Base component + + + + Additions + Additions + + + + Subtractions + Subtractions + + + + Objects + Objects + + + + closing Sketch edit + closing Sketch edit + + + + The height of this floor + The height of this floor + + + + Roof + Roof + + + + Create Roof + Create Roof + + + + Unable to create a roof + Unable to create a roof + + + + No object selected + No object selected + + + + The angle of this roof + The angle of this roof + + + + The face number of the base object used to build this roof + The face number of the base object used to build this roof + + + + Page + Page + + + + View of + View of + + + + Create Section Plane + Create Section Plane + + + + The objects that must be considered by this section plane. Empty means all document + The objects that must be considered by this section plane. Empty means all document + + + + The display size of this section plane + The display size of this section plane + + + + No shape has been computed yet, select wireframe rendering and render again + No shape has been computed yet, select wireframe rendering and render again + + + + Skipping invalid object: + Skipping invalid object: + + + + Site + Alan + + + + Create Site + Create Site + + + + Structure + Yapı + + + + Create Structure + Create Structure + + + + The length of this element, if not based on a profile + The length of this element, if not based on a profile + + + + The width of this element, if not based on a profile + The width of this element, if not based on a profile + + + + The height or extrusion depth of this element. Keep 0 for automatic + The height or extrusion depth of this element. Keep 0 for automatic + + + + Axes systems this structure is built on + Axes systems this structure is built on + + + + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + + + + The element numbers to exclude when this structure is based on axes + The element numbers to exclude when this structure is based on axes + + + + Couldn't compute the wall shape + Couldn't compute the wall shape + + + + Wall + Duvar + + + + Create Wall + Create Wall + + + + WallTrace + WallTrace + + + + Wall options + Wall options + + + + Width + Width + + + + Height + Height + + + + Alignment + Alignment + + + + Continue + Continue + + + + The width of this wall. Not used if this wall is based on a face + The width of this wall. Not used if this wall is based on a face + + + + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + + + + The alignment of this wall on its base object, if applicable + The alignment of this wall on its base object, if applicable + + + + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + + + + Error: Invalid base object + Error: Invalid base object + + + + This mesh is an invalid solid + This mesh is an invalid solid + + + + Error removing splitter from wall shape + Error removing splitter from wall shape + + + + Window + Pencere + + + + Create Window + Create Window + + + + the components of this window + the components of this window + + + + Unable to create component + Unable to create component + + + + Edit + Düzenle + + + + Create/update component + Create/update component + + + + Base 2D object + Base 2D object + + + + Wires + Wires + + + + Create new component + Create new component + + + + Name + Isim + + + + Type + Türü + + + + Thickness + Thickness + + + + Z offset + Z offset + + + + pycollada not found, no collada support. + + pycollada not found, no collada support. + + + + + Error: Couldn't determine character encoding + Error: Couldn't determine character encoding + + + + file %s successfully created. + file %s successfully created. + + + + Error: Couldn't determine character encoding + + Error: Couldn't determine character encoding + + + + + Couldn't locate IfcOpenShell + + Couldn't locate IfcOpenShell + + + + + IFC Schema not found, IFC import disabled. + + IFC Schema not found, IFC import disabled. + + + + + successfully written + successfully written + + + + Arch_Add + + + Add component + Parça ekle + + + + Adds the selected components to the active object + Seçili bileşenleri etkin nesneye ekle + + + + Arch_Axis + + + Axis + Axis + + + + Creates an axis system. + Creates an axis system. + + + + Arch_Building + + + Building + İnşa ediliyor + + + + Creates a building object including selected objects. + Seçili nesneleri içerecek şekilde bir yapı nesnesi oluşturur. + + + + Arch_Cell + + + Cell + Hücre + + + + Creates a cell object including selected objects + Seçili nesneleri içerecek şekilde bir hücre nesnesi oluşturur + + + + Arch_Check + + + Check + Check + + + + Checks the selected objects for problems + Checks the selected objects for problems + + + + Arch_CloseHoles + + + Close holes + Close holes + + + + Closes holes in open shapes, turning them solids + Closes holes in open shapes, turning them solids + + + + Arch_Floor + + + Floor + Zemin + + + + Creates a floor object including selected objects + Seçili nesneleri kapsayacak şekilde zemin nesnesi yarat + + + + Arch_MeshToShape + + + Mesh to Shape + Parçacıklardan şekle + + + + Turns selected meshes into Part Shape objects + Turns selected meshes into Part Shape objects + + + + Arch_Remove + + + Remove component + Bileşeni kaldır + + + + Remove the selected components from their parents, or create a hole in a component + Seçili bileşenleri bağlı oldukları ana bileşenlerden ayır, veya bileşen içinde bir delik oluştur + + + + Arch_RemoveShape + + + Remove Shape from Arch + Arktan şekilleri çıkarır + + + + Removes cubic shapes from Arch components + Ark parçalarından kübik şekilleri çıkarır + + + + Arch_Roof + + + Roof + Roof + + + + Creates a roof object from the selected face of an object + Creates a roof object from the selected face of an object + + + + Arch_SectionPlane + + + Section Plane + Bölüm düzlemi + + + + Creates a section plane object, including the selected objects + Creates a section plane object, including the selected objects + + + + Arch_SelectNonSolidMeshes + + + Select non-manifold meshes + Dallanmamış kafesleri seç + + + + Selects all non-manifold meshes from the document or from the selected groups + Belgeden veya seçili grup içerisinden dallanmamış kafeslerin tamamını seçer + + + + Arch_Site + + + Site + Alan + + + + Creates a site object including selected objects. + Bir alan nesnesini seçili nesneleri içerecek şekilde oluşturur. + + + + Arch_SplitMesh + + + Split Mesh + Parçacıkları ayır + + + + Splits selected meshes into independent components + Seçili parçacıkları bağımsız bileşenlere ayır + + + + Arch_Structure + + + Structure + Yapı + + + + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) + Bir yapı nesnesini sıfırdan veya seçilmiş bir nesneden (çizim, çizgi, yüz veya katı cisim) oluşturur + + + + Arch_Wall + + + Wall + Duvar + + + + Creates a wall object from scratch or from a selected object (wire, face or solid) + Duvar nesnesini baştan veya seçili nesneden (kablo, yüz veya katı) oluşturur + + + + Arch_Window + + + Window + Pencere + + + + Creates a window object from a selected object (wire, rectangle or sketch) + Creates a window object from a selected object (wire, rectangle or sketch) + + + + Gui::Dialog::DlgSettingsArch + + + General settings + Genel ayarlar + + + + General Arch Settings + Genel Ark ayarları + + + + Default color for walls + Duvarlar için varsayılan renk + + + + This is the default color for new Wall objects + Bu, yeni duvar nesneleri için varsayılan renktir + + + + Default color for structures + Yapılar için varsayılan renk + + + + This is the default color for new Structure objects + Bu, yeni yapı nesneleri için varsayılan renktir + + + + Default color for windows + Default color for windows + + + + IFC import + IFC import + + + + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + + + + Use IFCOpenShell if available + Use IFCOpenShell if available + + + + Creates groups for each Arch object type + Creates groups for each Arch object type + + + + Group components by types + Group components by types + + + + Import furniture (can make the model heavy) + Import furniture (can make the model heavy) + + + + 2D rendering + 2D rendering + + + + Show debug information during 2D rendering + Show debug information during 2D rendering + + + + Show renderer debug messages + Show renderer debug messages + + + + Cut areas line thickness ratio + Cut areas line thickness ratio + + + + Specifies how many times the viewed line thickness must be applied to cut lines + Specifies how many times the viewed line thickness must be applied to cut lines + + + + arch + + + Arch tools + Kemer araçları + + + + Draft tools + Draft tools + + + + Draft mod tools + Draft mod tools + + + + &Architecture + &Architecture + + + + Conversion Tools + Conversion Tools + + + + Calculation Tools + Calculation Tools + + + + &Draft + &Draft + + + + Context Tools + Context Tools + + + + pycollada not found, collada support will be disabled. + + pycollada not found, collada support will be disabled. + + + + diff --git a/src/Mod/Arch/Resources/translations/Arch_uk.qm b/src/Mod/Arch/Resources/translations/Arch_uk.qm index e5044a7b0..369116256 100644 Binary files a/src/Mod/Arch/Resources/translations/Arch_uk.qm and b/src/Mod/Arch/Resources/translations/Arch_uk.qm differ diff --git a/src/Mod/Arch/Resources/translations/Arch_uk.ts b/src/Mod/Arch/Resources/translations/Arch_uk.ts index 8580c8f3b..13e7228a8 100644 --- a/src/Mod/Arch/Resources/translations/Arch_uk.ts +++ b/src/Mod/Arch/Resources/translations/Arch_uk.ts @@ -4,43 +4,529 @@ Arch - + Components Компоненти - - Remove child - Remove child + + Components of this object + Компоненти цього об'єкта - - Components of this object - Components of this object + + Axes + Axes + + + + Create Axis + Create Axis + + + + The intervals between axes + The intervals between axes + + + + The angles of each axis + The angles of each axis + + + + The length of the axes + The length of the axes + + + + The size of the axis bubbles + The size of the axis bubbles + + + + The numeration style + The numeration style + + + + Remove + Видалити + + + + Add + Додати + + + + Distances and angles between axes + Distances and angles between axes + + + + Axis + Axis + + + + Distance + Відстань + + + + Angle + Кут + + + + Building + Будівля + + + + Type conversion + Type conversion + + + + Create Building + Create Building + + + + Floor + Ярус + + + + removing sketch support to avoid cross-referencing + removing sketch support to avoid cross-referencing + + + + No objects are cut by the plane + No objects are cut by the plane + + + + is not closed + is not closed + + + + is not valid + is not valid + + + + doesn't contain any solid + doesn't contain any solid + + + + contains a non-closed solid + contains a non-closed solid + + + + contains faces that are not part of any solid + contains faces that are not part of any solid + + + + Grouping + Grouping + + + + Ungrouping + Ungrouping + + + + Split Mesh + Розділити меш + + + + Mesh to Shape + Меш у форму + + + + All good! no problems found + All good! no problems found + + + + Base component + Base component + + + + Additions + Additions + + + + Subtractions + Subtractions + + + + Objects + Objects + + + + closing Sketch edit + closing Sketch edit + + + + The height of this floor + The height of this floor + + + + Roof + Roof + + + + Create Roof + Create Roof + + + + Unable to create a roof + Unable to create a roof + + + + No object selected + No object selected + + + + The angle of this roof + The angle of this roof + + + + The face number of the base object used to build this roof + The face number of the base object used to build this roof + + + + Page + Page + + + + View of + View of + + + + Create Section Plane + Create Section Plane + + + + The objects that must be considered by this section plane. Empty means all document + The objects that must be considered by this section plane. Empty means all document + + + + The display size of this section plane + The display size of this section plane + + + + No shape has been computed yet, select wireframe rendering and render again + No shape has been computed yet, select wireframe rendering and render again + + + + Skipping invalid object: + Skipping invalid object: + + + + Site + Ділянка + + + + Create Site + Create Site + + + + Structure + Структура + + + + Create Structure + Create Structure + + + + The length of this element, if not based on a profile + The length of this element, if not based on a profile + + + + The width of this element, if not based on a profile + The width of this element, if not based on a profile + + + + The height or extrusion depth of this element. Keep 0 for automatic + The height or extrusion depth of this element. Keep 0 for automatic + + + + Axes systems this structure is built on + Axes systems this structure is built on + + + + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + + + + The element numbers to exclude when this structure is based on axes + The element numbers to exclude when this structure is based on axes + + + + Couldn't compute the wall shape + Couldn't compute the wall shape + + + + Wall + Стіна + + + + Create Wall + Create Wall + + + + WallTrace + WallTrace + + + + Wall options + Wall options + + + + Width + Width + + + + Height + Height + + + + Alignment + Alignment + + + + Continue + Continue + + + + The width of this wall. Not used if this wall is based on a face + The width of this wall. Not used if this wall is based on a face + + + + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + + + + The alignment of this wall on its base object, if applicable + The alignment of this wall on its base object, if applicable + + + + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + + + + Error: Invalid base object + Error: Invalid base object + + + + This mesh is an invalid solid + This mesh is an invalid solid + + + + Error removing splitter from wall shape + Error removing splitter from wall shape + + + + Window + Вікно + + + + Create Window + Create Window + + + + the components of this window + the components of this window + + + + Unable to create component + Unable to create component + + + + Edit + Правка + + + + Create/update component + Create/update component + + + + Base 2D object + Base 2D object + + + + Wires + Wires + + + + Create new component + Create new component + + + + Name + Назва + + + + Type + Тип + + + + Thickness + Thickness + + + + Z offset + Z offset + + + + pycollada not found, no collada support. + + pycollada not found, no collada support. + + + + + Error: Couldn't determine character encoding + Error: Couldn't determine character encoding + + + + file %s successfully created. + file %s successfully created. + + + + Error: Couldn't determine character encoding + + Error: Couldn't determine character encoding + + + + + Couldn't locate IfcOpenShell + + Couldn't locate IfcOpenShell + + + + + IFC Schema not found, IFC import disabled. + + IFC Schema not found, IFC import disabled. + + + + + successfully written + successfully written Arch_Add - + Add component Додати компонент - + Adds the selected components to the active object Додає обраний компонент до активного об’єкту + + Arch_Axis + + + Axis + Axis + + + + Creates an axis system. + Creates an axis system. + + Arch_Building - + Building Будівля - + Creates a building object including selected objects. Створює об’єкт будівлі при цьому включає туди обрані об’єкти @@ -48,54 +534,77 @@ Arch_Cell - + Cell Секція - + Creates a cell object including selected objects Створює об’єкт секції, який включає обрані об’єкти + + Arch_Check + + + Check + Check + + + + Checks the selected objects for problems + Checks the selected objects for problems + + + + Arch_CloseHoles + + + Close holes + Close holes + + + + Closes holes in open shapes, turning them solids + Closes holes in open shapes, turning them solids + + Arch_Floor - + Floor Ярус - + Creates a floor object including selected objects Створює об’єкт ярус, який включає обрані об’єкти - - Arch_MeshToPart - - - Turns selected meshes into Part Shape objects - Перетворює обрані меші в Частину форми - - Arch_MeshToShape - + Mesh to Shape Меш у форму + + + Turns selected meshes into Part Shape objects + Turns selected meshes into Part Shape objects + Arch_Remove - + Remove component Видалити компонент - + Remove the selected components from their parents, or create a hole in a component Видалення обраних компонентів від своїх батьків, або створити отвір в компоненті @@ -103,51 +612,64 @@ Arch_RemoveShape - + Remove Shape from Arch - Remove Shape from Arch + Видалити фігуру з Arch - + Removes cubic shapes from Arch components - Removes cubic shapes from Arch components + Видаляє з компонентів Arch кубічні фігури + + + + Arch_Roof + + + Roof + Roof + + + + Creates a roof object from the selected face of an object + Creates a roof object from the selected face of an object Arch_SectionPlane - + Section Plane - Section Plane + Поверхня перерізу - - Adds a section plane object to the document - Adds a section plane object to the document + + Creates a section plane object, including the selected objects + Creates a section plane object, including the selected objects Arch_SelectNonSolidMeshes - + Select non-manifold meshes - Select non-manifold meshes + Обрати немноговидні сітки - + Selects all non-manifold meshes from the document or from the selected groups - Selects all non-manifold meshes from the document or from the selected groups + Виділяє всі немноговидні сітки з документу або обраних груп Arch_Site - + Site Ділянка - + Creates a site object including selected objects. Створює об’єкт поверхні, який включає обрані об’єкти @@ -155,12 +677,12 @@ Arch_SplitMesh - + Split Mesh Розділити меш - + Splits selected meshes into independent components Розбиває меш на незалежні компоненти @@ -168,12 +690,12 @@ Arch_Structure - + Structure Структура - + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) Створює об’єкт структуру з нуля, або з обраного об’єкту (ескіз, дріт, поверхня або суцільна) @@ -181,12 +703,12 @@ Arch_Wall - + Wall Стіна - + Creates a wall object from scratch or from a selected object (wire, face or solid) Створює об’єкт стіни з нуля, або з обраного об’єкту (дріт, поверхня або суцільна) @@ -194,14 +716,14 @@ Arch_Window - + Window Вікно - - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) + + Creates a window object from a selected object (wire, rectangle or sketch) + Creates a window object from a selected object (wire, rectangle or sketch) @@ -214,55 +736,137 @@ General Arch Settings - General Arch Settings + Загальні параметри Arch Default color for walls - Default color for walls + Колір стін за замовчуванням This is the default color for new Wall objects - This is the default color for new Wall objects + Це колір за замовчуванням для нових об'єктів Стіна Default color for structures - Default color for structures + Колір за замовчуванням для структур This is the default color for new Structure objects - This is the default color for new Structure objects + Це колір за замовчуванням для нових об'єктів Структура + + + + Default color for windows + Default color for windows + + + + IFC import + IFC import + + + + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + + + + Use IFCOpenShell if available + Use IFCOpenShell if available + + + + Creates groups for each Arch object type + Creates groups for each Arch object type + + + + Group components by types + Group components by types + + + + Import furniture (can make the model heavy) + Import furniture (can make the model heavy) + + + + 2D rendering + 2D rendering + + + + Show debug information during 2D rendering + Show debug information during 2D rendering + + + + Show renderer debug messages + Show renderer debug messages + + + + Cut areas line thickness ratio + Cut areas line thickness ratio + + + + Specifies how many times the viewed line thickness must be applied to cut lines + Specifies how many times the viewed line thickness must be applied to cut lines arch - + Arch tools - Arch tools + Архітектурні інструменти - + Draft tools - Draft tools + Інструменти креслення - - Architecture - Architecture + + Draft mod tools + Draft mod tools - - Tools - Інструменти + + &Architecture + &Architecture - - Draft - Draft + + Conversion Tools + Conversion Tools + + + + Calculation Tools + Calculation Tools + + + + &Draft + &Draft + + + + Context Tools + Context Tools + + + + pycollada not found, collada support will be disabled. + + pycollada not found, collada support will be disabled. + diff --git a/src/Mod/Arch/Resources/translations/Arch_zh-CN.qm b/src/Mod/Arch/Resources/translations/Arch_zh-CN.qm new file mode 100644 index 000000000..97610cbf9 Binary files /dev/null and b/src/Mod/Arch/Resources/translations/Arch_zh-CN.qm differ diff --git a/src/Mod/Arch/Resources/translations/Arch_zh-CN.ts b/src/Mod/Arch/Resources/translations/Arch_zh-CN.ts new file mode 100644 index 000000000..325b3cfa5 --- /dev/null +++ b/src/Mod/Arch/Resources/translations/Arch_zh-CN.ts @@ -0,0 +1,869 @@ + + + + + Arch + + + Components + 组件 + + + + Components of this object + 此对象的组件 + + + + Axes + 轴线 + + + + Create Axis + 创建轴线 + + + + The intervals between axes + 轴线间距 + + + + The angles of each axis + 每个轴线的角度 + + + + The length of the axes + 轴线长度 + + + + The size of the axis bubbles + 轴线末端圆圈大小 + + + + The numeration style + 轴线编号样式 + + + + Remove + 删除 + + + + Add + 添加 + + + + Distances and angles between axes + Distances and angles between axes + + + + Axis + 轴线 + + + + Distance + 距离 + + + + Angle + 角度 + + + + Building + 建筑 + + + + Type conversion + 类型转换 + + + + Create Building + 创建建筑 + + + + Floor + 楼板 + + + + removing sketch support to avoid cross-referencing + 移除草绘支持以避免交叉引用 + + + + No objects are cut by the plane + 平面未与对象相交 + + + + is not closed + 不闭合 + + + + is not valid + 无效 + + + + doesn't contain any solid + 不含实体 + + + + contains a non-closed solid + contains a non-closed solid + + + + contains faces that are not part of any solid + 包含不属于任何实体的面 + + + + Grouping + 成组 + + + + Ungrouping + 解组 + + + + Split Mesh + 拆分网格 + + + + Mesh to Shape + 网格转换为形体 + + + + All good! no problems found + All good! no problems found + + + + Base component + 基础组件 + + + + Additions + Additions + + + + Subtractions + Subtractions + + + + Objects + 对象 + + + + closing Sketch edit + 关闭草绘编辑 + + + + The height of this floor + 楼板标高 + + + + Roof + 屋顶 + + + + Create Roof + 创建屋顶 + + + + Unable to create a roof + 无法创建屋顶 + + + + No object selected + 没有选定对象 + + + + The angle of this roof + 屋顶角度 + + + + The face number of the base object used to build this roof + 用来生成屋顶的基对象的面数量 + + + + Page + Page + + + + View of + 视图 + + + + Create Section Plane + 创建剖切面 + + + + The objects that must be considered by this section plane. Empty means all document + The objects that must be considered by this section plane. Empty means all document + + + + The display size of this section plane + 剖切面的显示尺寸 + + + + No shape has been computed yet, select wireframe rendering and render again + No shape has been computed yet, select wireframe rendering and render again + + + + Skipping invalid object: + 跳过无效对象: + + + + Site + 场地 + + + + Create Site + 创建场地 + + + + Structure + 结构 + + + + Create Structure + 创建结构体 + + + + The length of this element, if not based on a profile + The length of this element, if not based on a profile + + + + The width of this element, if not based on a profile + The width of this element, if not based on a profile + + + + The height or extrusion depth of this element. Keep 0 for automatic + The height or extrusion depth of this element. Keep 0 for automatic + + + + Axes systems this structure is built on + Axes systems this structure is built on + + + + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + + + + The element numbers to exclude when this structure is based on axes + The element numbers to exclude when this structure is based on axes + + + + Couldn't compute the wall shape + 无法计算墙体形状 + + + + Wall + + + + + Create Wall + 创建墙 + + + + WallTrace + WallTrace + + + + Wall options + 墙体选项 + + + + Width + 宽度 + + + + Height + 高度 + + + + Alignment + 对齐方式 + + + + Continue + Continue + + + + The width of this wall. Not used if this wall is based on a face + The width of this wall. Not used if this wall is based on a face + + + + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + + + + The alignment of this wall on its base object, if applicable + The alignment of this wall on its base object, if applicable + + + + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + + + + Error: Invalid base object + 错误:无效的基对象 + + + + This mesh is an invalid solid + This mesh is an invalid solid + + + + Error removing splitter from wall shape + Error removing splitter from wall shape + + + + Window + 窗口 + + + + Create Window + 创建窗 + + + + the components of this window + the components of this window + + + + Unable to create component + Unable to create component + + + + Edit + 编辑 + + + + Create/update component + Create/update component + + + + Base 2D object + 二维基对象 + + + + Wires + Wires + + + + Create new component + 创建新组件 + + + + Name + 名称 + + + + Type + 类型 + + + + Thickness + 厚度 + + + + Z offset + Z偏移量 + + + + pycollada not found, no collada support. + + 未找到pycollada, 不支持collada格式. + + + + Error: Couldn't determine character encoding + Error: Couldn't determine character encoding + + + + file %s successfully created. + file %s successfully created. + + + + Error: Couldn't determine character encoding + + Error: Couldn't determine character encoding + + + + + Couldn't locate IfcOpenShell + + Couldn't locate IfcOpenShell + + + + + IFC Schema not found, IFC import disabled. + + 未发现IFC架构, 禁用IFC导入. + + + + successfully written + 成功写入 + + + + Arch_Add + + + Add component + 添加组件 + + + + Adds the selected components to the active object + 将选定的组件添加到当前对象 + + + + Arch_Axis + + + Axis + 轴线 + + + + Creates an axis system. + 创建轴网系统. + + + + Arch_Building + + + Building + 建筑 + + + + Creates a building object including selected objects. + 创建建筑,包含选定对象 + + + + Arch_Cell + + + Cell + 单元 + + + + Creates a cell object including selected objects + 创建单元,包含选定对象 + + + + Arch_Check + + + Check + 检查 + + + + Checks the selected objects for problems + Checks the selected objects for problems + + + + Arch_CloseHoles + + + Close holes + Close holes + + + + Closes holes in open shapes, turning them solids + Closes holes in open shapes, turning them solids + + + + Arch_Floor + + + Floor + 楼板 + + + + Creates a floor object including selected objects + 创建楼板,包含选定对象 + + + + Arch_MeshToShape + + + Mesh to Shape + 网格转换为形体 + + + + Turns selected meshes into Part Shape objects + Turns selected meshes into Part Shape objects + + + + Arch_Remove + + + Remove component + 删除组件 + + + + Remove the selected components from their parents, or create a hole in a component + 从父对象中删除选定组件,或在组件上创建孔 + + + + Arch_RemoveShape + + + Remove Shape from Arch + 从建筑元素中移除形体 + + + + Removes cubic shapes from Arch components + 从建筑组件移除立方体 + + + + Arch_Roof + + + Roof + 屋顶 + + + + Creates a roof object from the selected face of an object + Creates a roof object from the selected face of an object + + + + Arch_SectionPlane + + + Section Plane + 剖切平面 + + + + Creates a section plane object, including the selected objects + Creates a section plane object, including the selected objects + + + + Arch_SelectNonSolidMeshes + + + Select non-manifold meshes + 选择非流形网格 + + + + Selects all non-manifold meshes from the document or from the selected groups + 选择文档中或所选组中的所有非流形网格 + + + + Arch_Site + + + Site + 场地 + + + + Creates a site object including selected objects. + 创建场地,包含选定对象 + + + + Arch_SplitMesh + + + Split Mesh + 拆分网格 + + + + Splits selected meshes into independent components + 将选定的网格拆分为独立组件 + + + + Arch_Structure + + + Structure + 结构 + + + + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) + 从零开始或从选定的对象(线,面或体)创建结构体 + + + + Arch_Wall + + + Wall + + + + + Creates a wall object from scratch or from a selected object (wire, face or solid) + 从零开始或从选定的对象(线,面或体)创建墙体 + + + + Arch_Window + + + Window + + + + + Creates a window object from a selected object (wire, rectangle or sketch) + Creates a window object from a selected object (wire, rectangle or sketch) + + + + Gui::Dialog::DlgSettingsArch + + + General settings + 常规设置 + + + + General Arch Settings + 建筑常规设置 + + + + Default color for walls + 墙体默认颜色 + + + + This is the default color for new Wall objects + 新建墙对象的默认颜色 + + + + Default color for structures + 结构体默认颜色 + + + + This is the default color for new Structure objects + 新建结构对象的默认颜色 + + + + Default color for windows + 窗的默认颜色 + + + + IFC import + 导入IFC + + + + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + + + + Use IFCOpenShell if available + 如果可能使用IFCOpenShell + + + + Creates groups for each Arch object type + Creates groups for each Arch object type + + + + Group components by types + 根据类型组合组件 + + + + Import furniture (can make the model heavy) + Import furniture (can make the model heavy) + + + + 2D rendering + 2D 渲染 + + + + Show debug information during 2D rendering + Show debug information during 2D rendering + + + + Show renderer debug messages + Show renderer debug messages + + + + Cut areas line thickness ratio + Cut areas line thickness ratio + + + + Specifies how many times the viewed line thickness must be applied to cut lines + Specifies how many times the viewed line thickness must be applied to cut lines + + + + arch + + + Arch tools + 建筑工具 + + + + Draft tools + 草绘工具 + + + + Draft mod tools + Draft mod tools + + + + &Architecture + 建筑(&A) + + + + Conversion Tools + 转换工具 + + + + Calculation Tools + 计算工具 + + + + &Draft + 绘图(&D) + + + + Context Tools + 上下文工具 + + + + pycollada not found, collada support will be disabled. + + 找不到pycollada, 禁用collada支持. + + + diff --git a/src/Mod/Arch/Resources/translations/Arch_zh-TW.qm b/src/Mod/Arch/Resources/translations/Arch_zh-TW.qm new file mode 100644 index 000000000..dbc86e308 Binary files /dev/null and b/src/Mod/Arch/Resources/translations/Arch_zh-TW.qm differ diff --git a/src/Mod/Arch/Resources/translations/Arch_zh-TW.ts b/src/Mod/Arch/Resources/translations/Arch_zh-TW.ts new file mode 100644 index 000000000..daaf6e5cb --- /dev/null +++ b/src/Mod/Arch/Resources/translations/Arch_zh-TW.ts @@ -0,0 +1,871 @@ + + + + + Arch + + + Components + 組件 + + + + Components of this object + 此物件之組成 + + + + Axes + + + + + Create Axis + 建立軸 + + + + The intervals between axes + The intervals between axes + + + + The angles of each axis + 各軸間之角度 + + + + The length of the axes + 軸之長度 + + + + The size of the axis bubbles + 軸之標示大小 + + + + The numeration style + The numeration style + + + + Remove + 移除 + + + + Add + 新增 + + + + Distances and angles between axes + 軸間距離及角度 + + + + Axis + + + + + Distance + 距離 + + + + Angle + 角度 + + + + Building + 建築物 + + + + Type conversion + 轉換類型 + + + + Create Building + 建立建築物 + + + + Floor + 地面 + + + + removing sketch support to avoid cross-referencing + removing sketch support to avoid cross-referencing + + + + No objects are cut by the plane + 無以此平面切割之物件 + + + + is not closed + 未封閉 + + + + is not valid + 錯誤 + + + + doesn't contain any solid + 未包含任何物體 + + + + contains a non-closed solid + 包含一個未封閉物體 + + + + contains faces that are not part of any solid + contains faces that are not part of any solid + + + + Grouping + 群組 + + + + Ungrouping + 取消群組 + + + + Split Mesh + 分割Mesh + + + + Mesh to Shape + 形狀的網格 + + + + All good! no problems found + 完全正確!沒有錯誤 + + + + Base component + 基礎元件 + + + + Additions + 增加 + + + + Subtractions + 扣除 + + + + Objects + 物件 + + + + closing Sketch edit + 關閉素描編輯 + + + + The height of this floor + 樓板高度 + + + + Roof + 屋頂 + + + + Create Roof + 建立屋頂 + + + + Unable to create a roof + 無法建立屋頂 + + + + No object selected + 沒有選定之物件 + + + + The angle of this roof + 屋頂角度 + + + + The face number of the base object used to build this roof + 建立此屋頂之基礎物件面數 + + + + Page + + + + + View of + 視圖 + + + + Create Section Plane + 建立剖面 + + + + The objects that must be considered by this section plane. Empty means all document + 必須被此剖面所參考之物件,空白表示全部物件 + + + + The display size of this section plane + 此片段平面之顯示尺寸 + + + + No shape has been computed yet, select wireframe rendering and render again + 無任何造型已被計算,請選擇線架構 + + + + Skipping invalid object: + 忽略錯誤物件: + + + + Site + 位置 + + + + Create Site + Create Site + + + + Structure + 結構 + + + + Create Structure + 建立結構 + + + + The length of this element, if not based on a profile + The length of this element, if not based on a profile + + + + The width of this element, if not based on a profile + The width of this element, if not based on a profile + + + + The height or extrusion depth of this element. Keep 0 for automatic + The height or extrusion depth of this element. Keep 0 for automatic + + + + Axes systems this structure is built on + Axes systems this structure is built on + + + + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + The normal extrusion direction of this object (keep (0,0,0) for automatic normal) + + + + The element numbers to exclude when this structure is based on axes + The element numbers to exclude when this structure is based on axes + + + + Couldn't compute the wall shape + 無法計算此牆面造型 + + + + Wall + 牆面 + + + + Create Wall + 建立牆面 + + + + WallTrace + WallTrace + + + + Wall options + 牆之設定 + + + + Width + 寬度 + + + + Height + 高度 + + + + Alignment + 對齊 + + + + Continue + 繼續 + + + + The width of this wall. Not used if this wall is based on a face + 此牆寬度,若此牆基於面則不採用 + + + + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + The height of this wall. Keep 0 for automatic. Not used if this wall is based on a solid + + + + The alignment of this wall on its base object, if applicable + The alignment of this wall on its base object, if applicable + + + + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + If True, if this wall is based on a face, it will use its border wire as trace, and disconsider the face. + + + + Error: Invalid base object + 錯誤:錯誤的基礎物件 + + + + This mesh is an invalid solid + 此網格為無效實體 + + + + Error removing splitter from wall shape + Error removing splitter from wall shape + + + + Window + 視窗 + + + + Create Window + 建立視窗 + + + + the components of this window + the components of this window + + + + Unable to create component + 無法建立元件 + + + + Edit + 編輯 + + + + Create/update component + 建立/更新元件 + + + + Base 2D object + 基礎 2D 物件 + + + + Wires + + + + + Create new component + 建立新元件 + + + + Name + 名稱 + + + + Type + 類型 + + + + Thickness + 厚度 + + + + Z offset + Z方向偏移 + + + + pycollada not found, no collada support. + + pycollada not found, no collada support. + + + + + Error: Couldn't determine character encoding + 錯誤:無法定義字元編碼 + + + + file %s successfully created. + 成功建立%s檔 + + + + Error: Couldn't determine character encoding + + 錯誤:無法定義字元編碼 + + + + Couldn't locate IfcOpenShell + + Couldn't locate IfcOpenShell + + + + + IFC Schema not found, IFC import disabled. + + IFC Schema not found, IFC import disabled. + + + + + successfully written + 寫入成功 + + + + Arch_Add + + + Add component + 增加組件 + + + + Adds the selected components to the active object + 增加選定組件至目前物件 + + + + Arch_Axis + + + Axis + + + + + Creates an axis system. + 建立圖軸系統 + + + + Arch_Building + + + Building + 建築物 + + + + Creates a building object including selected objects. + 建立包含選定物件之建築物件 + + + + Arch_Cell + + + Cell + 單元 + + + + Creates a cell object including selected objects + 建立包含選定物件之單元物件 + + + + Arch_Check + + + Check + 確認 + + + + Checks the selected objects for problems + Checks the selected objects for problems + + + + Arch_CloseHoles + + + Close holes + 封閉空洞 + + + + Closes holes in open shapes, turning them solids + Closes holes in open shapes, turning them solids + + + + Arch_Floor + + + Floor + 地面 + + + + Creates a floor object including selected objects + 建立含有選定物件之地面物件 + + + + Arch_MeshToShape + + + Mesh to Shape + 形狀的網格 + + + + Turns selected meshes into Part Shape objects + Turns selected meshes into Part Shape objects + + + + Arch_Remove + + + Remove component + 移除原件 + + + + Remove the selected components from their parents, or create a hole in a component + 由其家族中移除選定物件或於物建中建立空洞 + + + + Arch_RemoveShape + + + Remove Shape from Arch + 由建築中移除造型 + + + + Removes cubic shapes from Arch components + 移除建築元件中之方塊形狀 + + + + Arch_Roof + + + Roof + 屋頂 + + + + Creates a roof object from the selected face of an object + Creates a roof object from the selected face of an object + + + + Arch_SectionPlane + + + Section Plane + 剖面 + + + + Creates a section plane object, including the selected objects + Creates a section plane object, including the selected objects + + + + Arch_SelectNonSolidMeshes + + + Select non-manifold meshes + Select non-manifold meshes + + + + Selects all non-manifold meshes from the document or from the selected groups + Selects all non-manifold meshes from the document or from the selected groups + + + + Arch_Site + + + Site + 位置 + + + + Creates a site object including selected objects. + 建立包含選定物件之位置物件 + + + + Arch_SplitMesh + + + Split Mesh + 分割Mesh + + + + Splits selected meshes into independent components + 分割選定Mesh為獨立物件 + + + + Arch_Structure + + + Structure + 結構 + + + + Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) + 由草圖或選定物件(草圖,線,面或固體)建立結構物件 + + + + Arch_Wall + + + Wall + 牆面 + + + + Creates a wall object from scratch or from a selected object (wire, face or solid) + 由草圖或選定物件(線,面或固體)建立強面物件 + + + + Arch_Window + + + Window + 視窗 + + + + Creates a window object from a selected object (wire, rectangle or sketch) + Creates a window object from a selected object (wire, rectangle or sketch) + + + + Gui::Dialog::DlgSettingsArch + + + General settings + 一般設定 + + + + General Arch Settings + 一般建築設定 + + + + Default color for walls + 牆面預設色彩 + + + + This is the default color for new Wall objects + 此為新牆面物件預設色彩 + + + + Default color for structures + 結構預設色彩 + + + + This is the default color for new Structure objects + 此為新結構物件之預設色彩 + + + + Default color for windows + 窗戶預設色彩 + + + + IFC import + IFC匯入 + + + + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + If this is checked, the IFCOpenShell importer will be used, allowing to import more IFC types + + + + Use IFCOpenShell if available + 如果可以請使用 IFCOpenShell + + + + Creates groups for each Arch object type + 為每個建築物件類別建立群組 + + + + Group components by types + 依型式歸類元件 + + + + Import furniture (can make the model heavy) + 匯入傢俱(會導致此模型負擔增加) + + + + 2D rendering + 2D 渲染 + + + + Show debug information during 2D rendering + 於2D渲染時顯示除錯訊息 + + + + Show renderer debug messages + 顯示渲染器錯誤訊息 + + + + Cut areas line thickness ratio + Cut areas line thickness ratio + + + + Specifies how many times the viewed line thickness must be applied to cut lines + Specifies how many times the viewed line thickness must be applied to cut lines + + + + arch + + + Arch tools + 建築工具 + + + + Draft tools + 草圖工具 + + + + Draft mod tools + 草圖模式工具 + + + + &Architecture + &建築 + + + + Conversion Tools + 轉換工具 + + + + Calculation Tools + 計算工具 + + + + &Draft + &草圖 + + + + Context Tools + 註釋工具 + + + + pycollada not found, collada support will be disabled. + + pycollada not found, collada support will be disabled. + + + + diff --git a/src/Mod/Arch/Resources/translations/Arch_zh.qm b/src/Mod/Arch/Resources/translations/Arch_zh.qm deleted file mode 100644 index 02ed239c0..000000000 Binary files a/src/Mod/Arch/Resources/translations/Arch_zh.qm and /dev/null differ diff --git a/src/Mod/Arch/Resources/translations/Arch_zh.ts b/src/Mod/Arch/Resources/translations/Arch_zh.ts deleted file mode 100644 index 5367cdfd9..000000000 --- a/src/Mod/Arch/Resources/translations/Arch_zh.ts +++ /dev/null @@ -1,268 +0,0 @@ - - - - - Arch - - - Components - 组件 - - - - Remove child - 删除子项 - - - - Components of this object - 此对象的组件 - - - - Arch_Add - - - Add component - 添加组件 - - - - Adds the selected components to the active object - 将选定的组件添加到当前对象 - - - - Arch_Building - - - Building - 建筑 - - - - Creates a building object including selected objects. - 创建建筑,包含选定对象 - - - - Arch_Cell - - - Cell - 单元 - - - - Creates a cell object including selected objects - 创建单元,包含选定对象 - - - - Arch_Floor - - - Floor - 楼板 - - - - Creates a floor object including selected objects - 创建楼板,包含选定对象 - - - - Arch_MeshToPart - - - Turns selected meshes into Part Shape objects - 将选定的网格转换为零件对象 - - - - Arch_MeshToShape - - - Mesh to Shape - 网格转换为形体 - - - - Arch_Remove - - - Remove component - 删除组件 - - - - Remove the selected components from their parents, or create a hole in a component - 从父对象中删除选定组件,或在组件上创建孔 - - - - Arch_RemoveShape - - - Remove Shape from Arch - Remove Shape from Arch - - - - Removes cubic shapes from Arch components - 从建筑组件移除立方体 - - - - Arch_SectionPlane - - - Section Plane - 剖切平面 - - - - Adds a section plane object to the document - 添加剖切面对象到文档 - - - - Arch_SelectNonSolidMeshes - - - Select non-manifold meshes - 选择非流形网格 - - - - Selects all non-manifold meshes from the document or from the selected groups - 选择文档中或所选组中的所有非流形网格 - - - - Arch_Site - - - Site - 场地 - - - - Creates a site object including selected objects. - 创建场地,包含选定对象 - - - - Arch_SplitMesh - - - Split Mesh - 拆分网格 - - - - Splits selected meshes into independent components - 将选定的网格拆分为独立组件 - - - - Arch_Structure - - - Structure - 结构 - - - - Creates a structure object from scratch or from a selected object (sketch, wire, face or solid) - 从零开始或从选定的对象(线,面或体)创建结构体 - - - - Arch_Wall - - - Wall - - - - - Creates a wall object from scratch or from a selected object (wire, face or solid) - 从零开始或从选定的对象(线,面或体)创建墙体 - - - - Arch_Window - - - Window - - - - - Creates a window object from scratch or from a selected object (wire, rectangle or sketch) - 从零开始或从所选对象(线框,矩形或草绘)创建窗 - - - - Gui::Dialog::DlgSettingsArch - - - General settings - 常规设置 - - - - General Arch Settings - 建筑常规设置 - - - - Default color for walls - 墙体默认颜色 - - - - This is the default color for new Wall objects - 新建墙对象的默认颜色 - - - - Default color for structures - 结构体默认颜色 - - - - This is the default color for new Structure objects - 新建结构对象的默认颜色 - - - - arch - - - Arch tools - Arch tools - - - - Draft tools - Draft tools - - - - Architecture - Architecture - - - - Tools - 工具 - - - - Draft - Draft - - - diff --git a/src/Mod/Assembly/Gui/Resources/Assembly.qrc b/src/Mod/Assembly/Gui/Resources/Assembly.qrc index 4746ac230..cc81d5128 100644 --- a/src/Mod/Assembly/Gui/Resources/Assembly.qrc +++ b/src/Mod/Assembly/Gui/Resources/Assembly.qrc @@ -3,17 +3,25 @@ icons/actions/Axle_constraint.svg translations/Assembly_af.qm translations/Assembly_de.qm - translations/Assembly_es.qm translations/Assembly_fi.qm translations/Assembly_fr.qm translations/Assembly_hr.qm translations/Assembly_it.qm translations/Assembly_nl.qm translations/Assembly_no.qm - translations/Assembly_pt.qm translations/Assembly_ru.qm - translations/Assembly_se.qm translations/Assembly_uk.qm - translations/Assembly_zh.qm + translations/Assembly_tr.qm + translations/Assembly_sv-SE.qm + translations/Assembly_pl.qm + translations/Assembly_zh-TW.qm + translations/Assembly_pt-BR.qm + translations/Assembly_cs.qm + translations/Assembly_sk.qm + translations/Assembly_es-ES.qm + translations/Assembly_zh-CN.qm + translations/Assembly_ja.qm + translations/Assembly_ro.qm + translations/Assembly_hu.qm diff --git a/src/Mod/Assembly/Gui/Resources/Makefile.am b/src/Mod/Assembly/Gui/Resources/Makefile.am index c6339530b..929834cd9 100644 --- a/src/Mod/Assembly/Gui/Resources/Makefile.am +++ b/src/Mod/Assembly/Gui/Resources/Makefile.am @@ -10,7 +10,7 @@ EXTRA_DIST = \ icons/actions/Axle_constraint.svg \ translations/Assembly_af.qm \ translations/Assembly_de.qm \ - translations/Assembly_es.qm \ + translations/Assembly_es-ES.qm \ translations/Assembly_fi.qm \ translations/Assembly_fr.qm \ translations/Assembly_hr.qm \ @@ -20,14 +20,19 @@ EXTRA_DIST = \ translations/Assembly_nl.qm \ translations/Assembly_no.qm \ translations/Assembly_pl.qm \ - translations/Assembly_pt.qm \ + translations/Assembly_pt-BR.qm \ translations/Assembly_ru.qm \ - translations/Assembly_se.qm \ + translations/Assembly_sv-SE.qm \ translations/Assembly_uk.qm \ - translations/Assembly_zh.qm \ + translations/Assembly_zh-CN.qm \ + translations/Assembly_zh-TW.qm \ + translations/Assembly_cs.qm \ + translations/Assembly_tr.qm \ + translations/Assembly_ro.qm \ + translations/Assembly_sk.qm \ translations/Assembly_af.ts \ translations/Assembly_de.ts \ - translations/Assembly_es.ts \ + translations/Assembly_es-ES.ts \ translations/Assembly_fi.ts \ translations/Assembly_fr.ts \ translations/Assembly_hr.ts \ @@ -37,11 +42,16 @@ EXTRA_DIST = \ translations/Assembly_nl.ts \ translations/Assembly_no.ts \ translations/Assembly_pl.ts \ - translations/Assembly_pt.ts \ + translations/Assembly_pt-BR.ts \ translations/Assembly_ru.ts \ - translations/Assembly_se.ts \ + translations/Assembly_sv-SE.ts \ translations/Assembly_uk.ts \ - translations/Assembly_zh.ts \ + translations/Assembly_zh-CN.ts \ + translations/Assembly_zh-TW.ts \ + translations/Assembly_cs.ts \ + translations/Assembly_tr.ts \ + translations/Assembly_ro.ts \ + translations/Assembly_sk.ts \ Assembly.qrc \ UpdateResources.bat diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_af.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_af.ts index 28d2dada1..0432f4b6b 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_af.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_af.ts @@ -1,37 +1,35 @@ - - + + AssemblyGui::Workbench - - Assembly - Samevoeging + + Assembly + Samevoeging - - + + CmdAssemblyConstraintAxle - - Assembly - Samevoeging + + Assembly + Samevoeging - - Constraint Axle... - Beperking met 'n as... + Constraint Axle... + Beperking met 'n as... - - set a axle constraint between two objects - definieer 'n bewegingsbeperking tussen twee voorwerpe met 'n as + set a axle constraint between two objects + definieer 'n bewegingsbeperking tussen twee voorwerpe met 'n as - - + + Workbench - Assembly - Samevoeging + Assembly + Samevoeging - + diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_cs.qm b/src/Mod/Assembly/Gui/Resources/translations/Assembly_cs.qm new file mode 100644 index 000000000..26f3e29fe Binary files /dev/null and b/src/Mod/Assembly/Gui/Resources/translations/Assembly_cs.qm differ diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_cs.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_cs.ts new file mode 100644 index 000000000..eb25c587d --- /dev/null +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_cs.ts @@ -0,0 +1,35 @@ + + + + + AssemblyGui::Workbench + + + Assembly + Sestava + + + + CmdAssemblyConstraintAxle + + + Assembly + Sestava + + + Constraint Axle... + Vazba osy... + + + set a axle constraint between two objects + Vlož osovou vazbu mezi dva objekty + + + + Workbench + + Assembly + Sestava + + + diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_de.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_de.ts index 22a4a0997..f41d0a66c 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_de.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_de.ts @@ -1,37 +1,35 @@ - - + + AssemblyGui::Workbench - - Assembly - Baugruppe + + Assembly + Baugruppe - - + + CmdAssemblyConstraintAxle - - Assembly - Baugruppe + + Assembly + Baugruppe - - Constraint Axle... - Achseneinschränkung... + Constraint Axle... + Achseneinschränkung... - - set a axle constraint between two objects - Festlegen der Achsen-Einschränkung zwischen zwei Objekten + set a axle constraint between two objects + Festlegen der Achsen-Einschränkung zwischen zwei Objekten - - + + Workbench - Assembly - Baugruppe + Assembly + Baugruppe - + diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_es.qm b/src/Mod/Assembly/Gui/Resources/translations/Assembly_es-ES.qm similarity index 100% rename from src/Mod/Assembly/Gui/Resources/translations/Assembly_es.qm rename to src/Mod/Assembly/Gui/Resources/translations/Assembly_es-ES.qm diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_es-ES.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_es-ES.ts new file mode 100644 index 000000000..075dca66a --- /dev/null +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_es-ES.ts @@ -0,0 +1,35 @@ + + + + + AssemblyGui::Workbench + + + Assembly + Ensamblaje + + + + CmdAssemblyConstraintAxle + + + Assembly + Ensamblaje + + + Constraint Axle... + Restricción de eje... + + + set a axle constraint between two objects + definir una restricción de eje entre dos objetos + + + + Workbench + + Assembly + Ensamblaje + + + diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_es.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_es.ts deleted file mode 100644 index f20ddefe9..000000000 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_es.ts +++ /dev/null @@ -1,37 +0,0 @@ - - - - - AssemblyGui::Workbench - - - Assembly - Ensamblaje - - - - CmdAssemblyConstraintAxle - - - Assembly - Ensamblaje - - - - Constraint Axle... - Restricción de eje... - - - - set a axle constraint between two objects - definir una restricción de eje entre dos objetos - - - - Workbench - - Assembly - Ensamblaje - - - diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_fi.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_fi.ts index 23c04c2bf..0caa8a788 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_fi.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_fi.ts @@ -1,37 +1,35 @@ - - + + AssemblyGui::Workbench - - Assembly - Kokoonpano + + Assembly + Kokoonpano - - + + CmdAssemblyConstraintAxle - - Assembly - Kokoonpano + + Assembly + Kokoonpano - - Constraint Axle... - Akseli rajoite... + Constraint Axle... + Akseli rajoite... - - set a axle constraint between two objects - aseta akselirajoite kahden kohteen välille + set a axle constraint between two objects + aseta akselirajoite kahden kohteen välille - - + + Workbench - Assembly - Kokoonpano + Assembly + Kokoonpano - + diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_fr.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_fr.ts index 5496d9185..c4bb42139 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_fr.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_fr.ts @@ -1,37 +1,35 @@ - - + + AssemblyGui::Workbench - - Assembly - Assemblage + + Assembly + Assemblage - - + + CmdAssemblyConstraintAxle - - Assembly - Assemblage + + Assembly + Assemblage - - Constraint Axle... - Contrainte axiale... + Constraint Axle... + Contrainte axiale... - - set a axle constraint between two objects - définir une contrainte axiale entre deux objets + set a axle constraint between two objects + définir une contrainte axiale entre deux objets - - + + Workbench - Assembly - Assemblage + Assembly + Assemblage - + diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_hr.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_hr.ts index 1af4818d3..9d3b0ca20 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_hr.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_hr.ts @@ -1,37 +1,35 @@ - - + + AssemblyGui::Workbench - - Assembly - Montaža + + Assembly + Montaža - - + + CmdAssemblyConstraintAxle - - Assembly - Montaža + + Assembly + Montaža - - Constraint Axle... - Ograničena osovina... + Constraint Axle... + Ograničena osovina... - - set a axle constraint between two objects - postaviti ograničenja osovine između dva objekta + set a axle constraint between two objects + postaviti ograničenja osovine između dva objekta - - + + Workbench - Assembly - Montaža + Assembly + Montaža - + diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_hu.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_hu.ts index ca864f50f..de1da07a5 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_hu.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_hu.ts @@ -1,37 +1,35 @@ - - + + AssemblyGui::Workbench - - Assembly - Összeállítás + + Assembly + Összeállítás - - + + CmdAssemblyConstraintAxle - - Assembly - Összeállítás + + Assembly + Összeállítás - - Constraint Axle... - Tengely menti kötés... + Constraint Axle... + Tengely menti kötés... - - set a axle constraint between two objects - tengely kötést hoz létre két tárgy között + set a axle constraint between two objects + tengely kötést hoz létre két tárgy között - - + + Workbench - Assembly - Összeállítás + Assembly + Összeállítás - + diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_it.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_it.ts index 8b62be0e8..31d6f74b2 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_it.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_it.ts @@ -1,37 +1,35 @@ - - + + AssemblyGui::Workbench - - Assembly - Assembly + + Assembly + Assembly - - + + CmdAssemblyConstraintAxle - - Assembly - Assembly + + Assembly + Assembly - - Constraint Axle... - Vincolo assiale... + Constraint Axle... + Vincolo assiale... - - set a axle constraint between two objects - Imposta un vincolo assiale tra due oggetti + set a axle constraint between two objects + Imposta un vincolo assiale tra due oggetti - - + + Workbench - Assembly - Assembly + Assembly + Assembly - + diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_ja.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_ja.ts index efade504f..40e6ce8bb 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_ja.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_ja.ts @@ -1,37 +1,35 @@ - - + + AssemblyGui::Workbench - - Assembly - アセンブリ + + Assembly + アセンブリ - - + + CmdAssemblyConstraintAxle - - Assembly - アセンブリ + + Assembly + アセンブリ - - Constraint Axle... - 軸拘束の設定... + Constraint Axle... + 軸拘束の設定... - - set a axle constraint between two objects - 二つのオブジェクト間に軸拘束を設定します。 + set a axle constraint between two objects + 二つのオブジェクト間に軸拘束を設定します。 - - + + Workbench - Assembly - アセンブリ + Assembly + アセンブリ - + diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_nl.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_nl.ts index fb67d12d7..22d2f0b98 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_nl.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_nl.ts @@ -1,37 +1,35 @@ - - + + AssemblyGui::Workbench - - Assembly - Samenstelling + + Assembly + Samenstelling - - + + CmdAssemblyConstraintAxle - - Assembly - Samenstelling + + Assembly + Samenstelling - - Constraint Axle... - As-beperking... + Constraint Axle... + As-beperking... - - set a axle constraint between two objects - Stel een as-beperking tussen twee objecten in + set a axle constraint between two objects + Stel een as-beperking tussen twee objecten in - - + + Workbench - Assembly - Samenstelling + Assembly + Samenstelling - + diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_no.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_no.ts index 7ed835a0b..e5d17f48b 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_no.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_no.ts @@ -1,37 +1,35 @@ - - + + AssemblyGui::Workbench - - Assembly - Montering + + Assembly + Montering - - + + CmdAssemblyConstraintAxle - - Assembly - Montering + + Assembly + Montering - - Constraint Axle... - Aksellås... + Constraint Axle... + Aksellås... - - set a axle constraint between two objects - sett en aksellås mellom to objekter + set a axle constraint between two objects + sett en aksellås mellom to objekter - - + + Workbench - Assembly - Montering + Assembly + Montering - + diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_pl.qm b/src/Mod/Assembly/Gui/Resources/translations/Assembly_pl.qm index 1f6b8bf34..7dd9d75c5 100644 Binary files a/src/Mod/Assembly/Gui/Resources/translations/Assembly_pl.qm and b/src/Mod/Assembly/Gui/Resources/translations/Assembly_pl.qm differ diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_pl.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_pl.ts index 175c9be4a..f4890546f 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_pl.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_pl.ts @@ -1,37 +1,35 @@ - - + + AssemblyGui::Workbench - - Assembly - Złożenie + + Assembly + Złożenie - - + + CmdAssemblyConstraintAxle - - Assembly - Złożenie + + Assembly + Złożenie - - Constraint Axle... - Ograniczenie osi ... + Constraint Axle... + Oś wiązania - - set a axle constraint between two objects - ustaw oś graniczną między dwoma obiektami + set a axle constraint between two objects + Ustal wiązanie osiowe pomiędzy dwoma obiektami - - + + Workbench - Assembly - Złożenie + Assembly + Złożenie - + diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_pt.qm b/src/Mod/Assembly/Gui/Resources/translations/Assembly_pt-BR.qm similarity index 100% rename from src/Mod/Assembly/Gui/Resources/translations/Assembly_pt.qm rename to src/Mod/Assembly/Gui/Resources/translations/Assembly_pt-BR.qm diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_pt-BR.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_pt-BR.ts new file mode 100644 index 000000000..1259b1cf2 --- /dev/null +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_pt-BR.ts @@ -0,0 +1,35 @@ + + + + + AssemblyGui::Workbench + + + Assembly + Assemblagem + + + + CmdAssemblyConstraintAxle + + + Assembly + Assemblagem + + + Constraint Axle... + Restrição de eixo... + + + set a axle constraint between two objects + definir uma restrição de eixo entre dois objetos + + + + Workbench + + Assembly + Assemblagem + + + diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_pt.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_pt.ts deleted file mode 100644 index c3792423b..000000000 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_pt.ts +++ /dev/null @@ -1,37 +0,0 @@ - - - - - AssemblyGui::Workbench - - - Assembly - Assemblagem - - - - CmdAssemblyConstraintAxle - - - Assembly - Assemblagem - - - - Constraint Axle... - Restrição de eixo... - - - - set a axle constraint between two objects - definir uma restrição de eixo entre dois objetos - - - - Workbench - - Assembly - Assemblagem - - - diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_ro.qm b/src/Mod/Assembly/Gui/Resources/translations/Assembly_ro.qm new file mode 100644 index 000000000..98808398a Binary files /dev/null and b/src/Mod/Assembly/Gui/Resources/translations/Assembly_ro.qm differ diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_ro.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_ro.ts new file mode 100644 index 000000000..937b77883 --- /dev/null +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_ro.ts @@ -0,0 +1,36 @@ + + + + + AssemblyGui::Workbench + + + Assembly + Ansamblu + + + + CmdAssemblyConstraintAxle + + + Assembly + Ansamblu + + + Constraint Axle... + Axul de restricție... + + + + set a axle constraint between two objects + setează o restricție axială între două obiecte + + + + Workbench + + Assembly + Ansamblu + + + diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_ru.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_ru.ts index 584d6afc2..2501d66f9 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_ru.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_ru.ts @@ -1,37 +1,35 @@ - - + + AssemblyGui::Workbench - - Assembly - Сборка + + Assembly + Сборка - - + + CmdAssemblyConstraintAxle - - Assembly - Сборка + + Assembly + Сборка - - Constraint Axle... - Ограничение оси... + Constraint Axle... + Ограничение оси... - - set a axle constraint between two objects - задать ось, ограниченную двумя объектами + set a axle constraint between two objects + задать ось, ограниченную двумя объектами - - + + Workbench - Assembly - Сборка + Assembly + Сборка - + diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_se.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_se.ts deleted file mode 100644 index 594232f5c..000000000 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_se.ts +++ /dev/null @@ -1,37 +0,0 @@ - - - - - AssemblyGui::Workbench - - - Assembly - Ihopsättning - - - - CmdAssemblyConstraintAxle - - - Assembly - Ihopsättning - - - - Constraint Axle... - Begränsningsaxel... - - - - set a axle constraint between two objects - Sätt en axelbegränsning mellan två objekt - - - - Workbench - - Assembly - Ihopsättning - - - diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_sk.qm b/src/Mod/Assembly/Gui/Resources/translations/Assembly_sk.qm new file mode 100644 index 000000000..8337f687b Binary files /dev/null and b/src/Mod/Assembly/Gui/Resources/translations/Assembly_sk.qm differ diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_sk.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_sk.ts new file mode 100644 index 000000000..439516527 --- /dev/null +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_sk.ts @@ -0,0 +1,35 @@ + + + + + AssemblyGui::Workbench + + + Assembly + Assembly + + + + CmdAssemblyConstraintAxle + + + Assembly + Assembly + + + Constraint Axle... + Os obmedzenia... + + + set a axle constraint between two objects + nastaviť os obmedzenia medzi dvoma objektmi + + + + Workbench + + Assembly + Assembly + + + diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_se.qm b/src/Mod/Assembly/Gui/Resources/translations/Assembly_sv-SE.qm similarity index 100% rename from src/Mod/Assembly/Gui/Resources/translations/Assembly_se.qm rename to src/Mod/Assembly/Gui/Resources/translations/Assembly_sv-SE.qm diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_sv-SE.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_sv-SE.ts new file mode 100644 index 000000000..d8542b6ea --- /dev/null +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_sv-SE.ts @@ -0,0 +1,35 @@ + + + + + AssemblyGui::Workbench + + + Assembly + Ihopsättning + + + + CmdAssemblyConstraintAxle + + + Assembly + Ihopsättning + + + Constraint Axle... + Begränsningsaxel... + + + set a axle constraint between two objects + Sätt en axelbegränsning mellan två objekt + + + + Workbench + + Assembly + Ihopsättning + + + diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_tr.qm b/src/Mod/Assembly/Gui/Resources/translations/Assembly_tr.qm new file mode 100644 index 000000000..025cd74af Binary files /dev/null and b/src/Mod/Assembly/Gui/Resources/translations/Assembly_tr.qm differ diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_tr.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_tr.ts new file mode 100644 index 000000000..db550626e --- /dev/null +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_tr.ts @@ -0,0 +1,35 @@ + + + + + AssemblyGui::Workbench + + + Assembly + Montaj + + + + CmdAssemblyConstraintAxle + + + Assembly + Montaj + + + Constraint Axle... + Sınırlama Mili... + + + set a axle constraint between two objects + İki nesne arasındaki sınırlama milini belirle + + + + Workbench + + Assembly + Montaj + + + diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_uk.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_uk.ts index 7177ff6cb..a164bb182 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_uk.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_uk.ts @@ -1,37 +1,35 @@ - - + + AssemblyGui::Workbench - - Assembly - Збірка + + Assembly + Збірка - - + + CmdAssemblyConstraintAxle - - Assembly - Збірка + + Assembly + Збірка - - Constraint Axle... - Обмеження осі... + Constraint Axle... + Обмеження осі... - - set a axle constraint between two objects - задати вісь обмежену двома об'єктами + set a axle constraint between two objects + задати вісь обмежену двома об'єктами - - + + Workbench - Assembly - Збірка + Assembly + Збірка - + diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_zh.qm b/src/Mod/Assembly/Gui/Resources/translations/Assembly_zh-CN.qm similarity index 100% rename from src/Mod/Assembly/Gui/Resources/translations/Assembly_zh.qm rename to src/Mod/Assembly/Gui/Resources/translations/Assembly_zh-CN.qm diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_zh-CN.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_zh-CN.ts new file mode 100644 index 000000000..66074d644 --- /dev/null +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_zh-CN.ts @@ -0,0 +1,35 @@ + + + + + AssemblyGui::Workbench + + + Assembly + 装配 + + + + CmdAssemblyConstraintAxle + + + Assembly + 装配 + + + Constraint Axle... + 约束轴... + + + set a axle constraint between two objects + 两个对象之间设置轴约束 + + + + Workbench + + Assembly + 装配 + + + diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_zh-TW.qm b/src/Mod/Assembly/Gui/Resources/translations/Assembly_zh-TW.qm new file mode 100644 index 000000000..0beb8a83b Binary files /dev/null and b/src/Mod/Assembly/Gui/Resources/translations/Assembly_zh-TW.qm differ diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_zh-TW.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_zh-TW.ts new file mode 100644 index 000000000..7d48f8f8e --- /dev/null +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_zh-TW.ts @@ -0,0 +1,35 @@ + + + + + AssemblyGui::Workbench + + + Assembly + 程式集 + + + + CmdAssemblyConstraintAxle + + + Assembly + 程式集 + + + Constraint Axle... + 約束軸 ... + + + set a axle constraint between two objects + 在兩個物件之間設置軸約束 + + + + Workbench + + Assembly + 程式集 + + + diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_zh.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_zh.ts deleted file mode 100644 index fb6eda014..000000000 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_zh.ts +++ /dev/null @@ -1,37 +0,0 @@ - - - - - AssemblyGui::Workbench - - - Assembly - 装配 - - - - CmdAssemblyConstraintAxle - - - Assembly - 装配 - - - - Constraint Axle... - 约束轴... - - - - set a axle constraint between two objects - 两个对象之间设置轴约束 - - - - Workbench - - Assembly - 装配 - - - diff --git a/src/Mod/CMakeLists.txt b/src/Mod/CMakeLists.txt index d1f0736ae..19e5d0c48 100644 --- a/src/Mod/CMakeLists.txt +++ b/src/Mod/CMakeLists.txt @@ -48,4 +48,7 @@ add_subdirectory(Surfaces) add_subdirectory(Ship) add_subdirectory(OpenSCAD) +add_subdirectory(Plot) + + diff --git a/src/Mod/Complete/Gui/Resources/Complete.qrc b/src/Mod/Complete/Gui/Resources/Complete.qrc index 97769440c..3a578f834 100644 --- a/src/Mod/Complete/Gui/Resources/Complete.qrc +++ b/src/Mod/Complete/Gui/Resources/Complete.qrc @@ -2,7 +2,6 @@ translations/Complete_af.qm translations/Complete_de.qm - translations/Complete_es.qm translations/Complete_fi.qm translations/Complete_fr.qm translations/Complete_hr.qm @@ -10,10 +9,18 @@ translations/Complete_nl.qm translations/Complete_no.qm translations/Complete_pl.qm - translations/Complete_pt.qm translations/Complete_ru.qm - translations/Complete_se.qm translations/Complete_uk.qm - translations/Complete_zh.qm + translations/Complete_tr.qm + translations/Complete_sv-SE.qm + translations/Complete_zh-TW.qm + translations/Complete_pt-BR.qm + translations/Complete_cs.qm + translations/Complete_sk.qm + translations/Complete_es-ES.qm + translations/Complete_zh-CN.qm + translations/Complete_ja.qm + translations/Complete_ro.qm + translations/Complete_hu.qm diff --git a/src/Mod/Complete/Gui/Resources/Makefile.am b/src/Mod/Complete/Gui/Resources/Makefile.am index 6cfd345e7..38b9b696a 100644 --- a/src/Mod/Complete/Gui/Resources/Makefile.am +++ b/src/Mod/Complete/Gui/Resources/Makefile.am @@ -9,7 +9,7 @@ nodist_libResources_la_SOURCES=\ EXTRA_DIST = \ translations/Complete_af.qm \ translations/Complete_de.qm \ - translations/Complete_es.qm \ + translations/Complete_es-ES.qm \ translations/Complete_fi.qm \ translations/Complete_fr.qm \ translations/Complete_hr.qm \ @@ -17,14 +17,21 @@ EXTRA_DIST = \ translations/Complete_nl.qm \ translations/Complete_no.qm \ translations/Complete_pl.qm \ - translations/Complete_pt.qm \ + translations/Complete_pt-BR.qm \ translations/Complete_ru.qm \ - translations/Complete_se.qm \ + translations/Complete_sv-SE.qm \ translations/Complete_uk.qm \ - translations/Complete_zh.qm \ + translations/Complete_zh-CN.qm \ + translations/Complete_zh-TW.qm \ + translations/Complete_cs.qm \ + translations/Complete_tr.qm \ + translations/Complete_ro.qm \ + translations/Complete_sk.qm \ + translations/Complete_ja.qm \ + translations/Complete_hu.qm \ translations/Complete_af.ts \ translations/Complete_de.ts \ - translations/Complete_es.ts \ + translations/Complete_es-ES.ts \ translations/Complete_fi.ts \ translations/Complete_fr.ts \ translations/Complete_hr.ts \ @@ -32,11 +39,18 @@ EXTRA_DIST = \ translations/Complete_nl.ts \ translations/Complete_no.ts \ translations/Complete_pl.ts \ - translations/Complete_pt.ts \ + translations/Complete_pt-BR.ts \ translations/Complete_ru.ts \ - translations/Complete_se.ts \ + translations/Complete_sv-SE.ts \ translations/Complete_uk.ts \ - translations/Complete_zh.ts \ + translations/Complete_zh-CN.ts \ + translations/Complete_zh-TW.ts \ + translations/Complete_cs.ts \ + translations/Complete_tr.ts \ + translations/Complete_ro.ts \ + translations/Complete_sk.ts \ + translations/Complete_ja.ts \ + translations/Complete_hu.ts \ Complete.qrc \ UpdateResources.bat diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_af.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_af.qm index 4661e9716..eb57fbd3f 100644 Binary files a/src/Mod/Complete/Gui/Resources/translations/Complete_af.qm and b/src/Mod/Complete/Gui/Resources/translations/Complete_af.qm differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_af.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_af.ts index 325201491..246350316 100644 --- a/src/Mod/Complete/Gui/Resources/translations/Complete_af.ts +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_af.ts @@ -1,82 +1,71 @@ - - + + CmdCompleteConstraintAxle - - Complete - Volledig + + Complete + Volledig - - Constraint Axle... - Beperking met 'n as... + Constraint Axle... + Beperking met 'n as... - - set a axle constraint between two objects - definieer 'n bewegingsbeperking tussen twee voorwerpe met 'n as + set a axle constraint between two objects + definieer 'n bewegingsbeperking tussen twee voorwerpe met 'n as - - + + Test_Test - - Self-test... - Self-test... + + Self-test... + Selftoets... - - Runs a self-test to check if the application works properly - Runs a self-test to check if the application works properly + Runs a self-test to check if the application works properly + Loop 'n selftoets om na te gaan dat die toepassing ordentlik werk - - + + Workbench - - Dr&awing - &Teken + Dr&awing + Dr&awing - - S&ketch - &Skets + S&ketch + S&ketch - - &Raytracing - &Straalsporing + &Raytracing + &Straalsporing - - &Drafting - &Teken + &Drafting + &Teken - - Sketch based - Sketsgebaseerd + Sketch based + Sketsgebaseerd - - Primitives - + Primitives + Primitives - Parametric - Parametries + Parametric + Parametries - - Object appearence - Object appearence + Object appearence + Voorwerpvoorkoms - - Wire Tools - Wire Tools + Wire Tools + Draadwerktuie - + diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_cs.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_cs.qm new file mode 100644 index 000000000..b6145db88 Binary files /dev/null and b/src/Mod/Complete/Gui/Resources/translations/Complete_cs.qm differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_cs.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_cs.ts new file mode 100644 index 000000000..d50b63766 --- /dev/null +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_cs.ts @@ -0,0 +1,71 @@ + + + + + CmdCompleteConstraintAxle + + + Complete + Dokončit + + + Constraint Axle... + Vazba osy... + + + set a axle constraint between two objects + Vlož osovou vazbu mezi dva objekty + + + + Test_Test + + + Self-test... + Test sebe sama... + + + Runs a self-test to check if the application works properly + Spustí test sebe sama pro kontrolu jestli aplikace pracuje správně + + + + Workbench + + Dr&awing + M&alování + + + S&ketch + S&kica + + + &Raytracing + Raytracing + + + &Drafting + Návrh + + + Sketch based + Náčrtek + + + Primitives + Základní tvary + + + Parametric + Parametrické + + + Object appearence + Vzhled objektu + + + Wire Tools + Nástroje drátu + + + diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_de.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_de.qm index 11eb3fd4d..1e1338f15 100644 Binary files a/src/Mod/Complete/Gui/Resources/translations/Complete_de.qm and b/src/Mod/Complete/Gui/Resources/translations/Complete_de.qm differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_de.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_de.ts index a9893c602..797a8a378 100644 --- a/src/Mod/Complete/Gui/Resources/translations/Complete_de.ts +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_de.ts @@ -1,82 +1,71 @@ - - + + CmdCompleteConstraintAxle - - Complete - Komplett + + Complete + Komplett - - Constraint Axle... - Achse vorgeben... + Constraint Axle... + Achse vorgeben... - - set a axle constraint between two objects - Eine Achse zwischen zwei Objekten vorgeben + set a axle constraint between two objects + Eine Achse zwischen zwei Objekten vorgeben - - + + Test_Test - - Self-test... - Selbsttest... + + Self-test... + Selbsttest... - - Runs a self-test to check if the application works properly - Führt einen Selbsttest durch, um zu prüfen, ob die Anwendung richtig funktioniert + Runs a self-test to check if the application works properly + Führt einen Selbsttest durch, um zu prüfen, ob die Anwendung richtig funktioniert - - + + Workbench - - Dr&awing - &Zeichnung + Dr&awing + Zeic&hnen - - S&ketch - Ski&zze + S&ketch + S&kizze - - &Raytracing - &Raytracing + &Raytracing + &Raytracing - - &Drafting - &Entwurf + &Drafting + &Entwurf - - Sketch based - skizzenbasiert + Sketch based + skizzenbasiert - - Primitives - + Primitives + Grundkörper - Parametric - Parametrisch + Parametric + Parametrisch - - Object appearence - Objektdarstellung + Object appearence + Objektdarstellung - - Wire Tools - Linien-Werkzeuge + Wire Tools + Linien-Werkzeuge - + diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_es-ES.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_es-ES.qm new file mode 100644 index 000000000..3d2a9e170 Binary files /dev/null and b/src/Mod/Complete/Gui/Resources/translations/Complete_es-ES.qm differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_es-ES.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_es-ES.ts new file mode 100644 index 000000000..33993cda3 --- /dev/null +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_es-ES.ts @@ -0,0 +1,71 @@ + + + + + CmdCompleteConstraintAxle + + + Complete + Completado + + + Constraint Axle... + Restricción de eje... + + + set a axle constraint between two objects + definir una restricción de eje entre dos objetos + + + + Test_Test + + + Self-test... + Auto-prueba... + + + Runs a self-test to check if the application works properly + Ejecuta una auto-prueba para comprobar si la aplicación funciona correctamente + + + + Workbench + + Dr&awing + Dibujar + + + S&ketch + Bosquejo + + + &Raytracing + &Raytracing + + + &Drafting + &Borrador + + + Sketch based + Basado en esbozo + + + Primitives + Primarios + + + Parametric + Paramétrico + + + Object appearence + Apariencia del objeto + + + Wire Tools + Herramientas de alambre + + + diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_es.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_es.qm deleted file mode 100644 index e0609785c..000000000 Binary files a/src/Mod/Complete/Gui/Resources/translations/Complete_es.qm and /dev/null differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_es.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_es.ts deleted file mode 100644 index ab6ed8074..000000000 --- a/src/Mod/Complete/Gui/Resources/translations/Complete_es.ts +++ /dev/null @@ -1,82 +0,0 @@ - - - - - CmdCompleteConstraintAxle - - - Complete - Completado - - - - Constraint Axle... - Restricción de eje... - - - - set a axle constraint between two objects - definir una restricción de eje entre dos objetos - - - - Test_Test - - - Self-test... - Self-test... - - - - Runs a self-test to check if the application works properly - Runs a self-test to check if the application works properly - - - - Workbench - - - Dr&awing - %Dibujo - - - - S&ketch - Boc&eto - - - - &Raytracing - &Raytracing - - - - &Drafting - &Borrador - - - - Sketch based - Basado en esbozo - - - - Primitives - - - - Parametric - Paramétrico - - - - Object appearence - Apariencia del objeto - - - - Wire Tools - Wire Tools - - - diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_fi.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_fi.qm index 3a02f3bd9..775ae6ac8 100644 Binary files a/src/Mod/Complete/Gui/Resources/translations/Complete_fi.qm and b/src/Mod/Complete/Gui/Resources/translations/Complete_fi.qm differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_fi.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_fi.ts index e6201addb..6b471062a 100644 --- a/src/Mod/Complete/Gui/Resources/translations/Complete_fi.ts +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_fi.ts @@ -1,82 +1,71 @@ - - + + CmdCompleteConstraintAxle - - Complete - Valmis + + Complete + Valmis - - Constraint Axle... - Akseli rajoite... + Constraint Axle... + Akseli rajoite... - - set a axle constraint between two objects - Määritä akseli rajoite kahden kohteen välille + set a axle constraint between two objects + Määritä akseli rajoite kahden kohteen välille - - + + Test_Test - - Self-test... - Self-test... + + Self-test... + Itsetestaus... - - Runs a self-test to check if the application works properly - Runs a self-test to check if the application works properly + Runs a self-test to check if the application works properly + Suoritetaan itsetestauksen tarkistaminen, jos sovellus toimii oikein - - + + Workbench - - Dr&awing - &Piirustus + Dr&awing + Dr&awing - - S&ketch - Ske&tch + S&ketch + S&ketch - - &Raytracing - &Raytracing + &Raytracing + &Säteenseuranta - - &Drafting - &Drafting + &Drafting + &Hahmottelu - - Sketch based - Sketch based + Sketch based + Sketsin perusta - - Primitives - + Primitives + Primitives - Parametric - Parametrinen + Parametric + Parametrinen - - Object appearence - Object appearence + Object appearence + Objektin ulkoasu - - Wire Tools - Wire Tools + Wire Tools + Lanka työkalut - + diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_fr.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_fr.qm index 0817a13e8..56d8d3833 100644 Binary files a/src/Mod/Complete/Gui/Resources/translations/Complete_fr.qm and b/src/Mod/Complete/Gui/Resources/translations/Complete_fr.qm differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_fr.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_fr.ts index 7d5537dc6..eaa91c38a 100644 --- a/src/Mod/Complete/Gui/Resources/translations/Complete_fr.ts +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_fr.ts @@ -1,82 +1,71 @@ - - + + CmdCompleteConstraintAxle - - Complete - Complet + + Complete + Complet - - Constraint Axle... - Contrainte axiale... + Constraint Axle... + Contrainte axiale... - - set a axle constraint between two objects - définir une contrainte axiale entre deux objets + set a axle constraint between two objects + définir une contrainte axiale entre deux objets - - + + Test_Test - - Self-test... - Auto-test... + + Self-test... + Auto-test... - - Runs a self-test to check if the application works properly - Exécute un auto-test pour vérifier si l'application fonctionne correctement + Runs a self-test to check if the application works properly + Exécute un auto-test pour vérifier si l'application fonctionne correctement - - + + Workbench - - Dr&awing - &Dessin + Dr&awing + &Mise en plan - - S&ketch - Es&quisse + S&ketch + Es&quisse - - &Raytracing - &Lancer de rayon + &Raytracing + &Lancer de rayon - - &Drafting - &Planche à dessin + &Drafting + &Planche à dessin - - Sketch based - À base d'esquisse + Sketch based + À base d'esquisse - - Primitives - + Primitives + Primitives - Parametric - Paramétrique + Parametric + Paramétrique - - Object appearence - Apparence d'objet + Object appearence + Apparence d'objet - - Wire Tools - Outils filaires + Wire Tools + Outils filaires - + diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_hr.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_hr.qm index 85bf319cd..8e02fad41 100644 Binary files a/src/Mod/Complete/Gui/Resources/translations/Complete_hr.qm and b/src/Mod/Complete/Gui/Resources/translations/Complete_hr.qm differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_hr.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_hr.ts index e72fce00e..887d6d79f 100644 --- a/src/Mod/Complete/Gui/Resources/translations/Complete_hr.ts +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_hr.ts @@ -1,82 +1,71 @@ - - + + CmdCompleteConstraintAxle - - Complete - Kompletan + + Complete + Kompletan - - Constraint Axle... - Ograničena osovina... + Constraint Axle... + Ograničena osovina... - - set a axle constraint between two objects - postaviti ograničenja osovine između dva objekta + set a axle constraint between two objects + postaviti ograničenja osovine između dva objekta - - + + Test_Test - - Self-test... - Samoprovjera ... + + Self-test... + Samoprovjera ... - - Runs a self-test to check if the application works properly - Izvrši samoprovjeru i vidi da li program radi ispravno + Runs a self-test to check if the application works properly + Izvrši samoprovjeru i vidi da li program radi ispravno - - + + Workbench - - Dr&awing - &Crtež + Dr&awing + Cr&tež - - S&ketch - Sk&ica + S&ketch + S&kica - - &Raytracing - Metode trasiranja putem zrake + &Raytracing + Metode trasiranja putem zrake - - &Drafting - &Skica + &Drafting + &Skica - - Sketch based - Na temelju skice + Sketch based + Na temelju skice - - Primitives - + Primitives + Primitivi - Parametric - Parametarski + Parametric + Parametarski - - Object appearence - Izgled objekta + Object appearence + Izgled objekta - - Wire Tools - Alati žice + Wire Tools + Alati žice - + diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_hu.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_hu.qm index 6080e9c88..9738f5358 100644 Binary files a/src/Mod/Complete/Gui/Resources/translations/Complete_hu.qm and b/src/Mod/Complete/Gui/Resources/translations/Complete_hu.qm differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_hu.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_hu.ts index 770a741e0..49bcb2b0f 100644 --- a/src/Mod/Complete/Gui/Resources/translations/Complete_hu.ts +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_hu.ts @@ -1,82 +1,71 @@ - - + + CmdCompleteConstraintAxle - - Complete - Befejez + + Complete + Befejez - - Constraint Axle... - Tengely menti kötés... + Constraint Axle... + Tengely menti kötés... - - set a axle constraint between two objects - tengely menti kötést hoz létre két tárgy között + set a axle constraint between two objects + tengely menti kötést hoz létre két tárgy között - - + + Test_Test - - Self-test... - Ön-teszt... + + Self-test... + Ön-teszt... - - Runs a self-test to check if the application works properly - Fut egy önteszt, hogy ellenőrizze, ha az alkalmazás megfelelően működik + Runs a self-test to check if the application works properly + Fut egy önteszt, hogy ellenőrizze, ha az alkalmazás megfelelően működik - - + + Workbench - - Dr&awing - Rajzolás + Dr&awing + R&ajzolás - - S&ketch - Vázlat + S&ketch + S&kicc - - &Raytracing - Sugáriánynyomvonal + &Raytracing + Sugá&riánynyomvonal - - &Drafting - Vázlatkészítés + &Drafting + Vázlatkészítés &D - - Sketch based - Vázlat alap + Sketch based + Vázlat alap - - Primitives - + Primitives + Primitívek - Parametric - Változós + Parametric + Változós - - Object appearence - Az objektum megjelenése + Object appearence + Az objektum megjelenése - - Wire Tools - Vonal eszköztár + Wire Tools + Vonal eszköztár - + diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_it.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_it.qm index d4157f8fb..7058d047b 100644 Binary files a/src/Mod/Complete/Gui/Resources/translations/Complete_it.qm and b/src/Mod/Complete/Gui/Resources/translations/Complete_it.qm differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_it.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_it.ts index e2306ee8c..c8ceefcbf 100644 --- a/src/Mod/Complete/Gui/Resources/translations/Complete_it.ts +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_it.ts @@ -1,82 +1,71 @@ - - + + CmdCompleteConstraintAxle - - Complete - Completo + + Complete + Completo - - Constraint Axle... - Vincolo assiale... + Constraint Axle... + Vincolo assiale... - - set a axle constraint between two objects - Imposta un vincolo assiale tra due oggetti + set a axle constraint between two objects + Imposta un vincolo assiale tra due oggetti - - + + Test_Test - - Self-test... - Autotest... + + Self-test... + Autotest... - - Runs a self-test to check if the application works properly - Esegue un autotest per verificare se l'applicazione funziona correttamente + Runs a self-test to check if the application works properly + Esegue un autotest per verificare se l'applicazione funziona correttamente - - + + Workbench - - Dr&awing - &Disegno + Dr&awing + D&isegno - - S&ketch - S&ketch + S&ketch + S&ketch - - &Raytracing - &Raytracing + &Raytracing + &Raytracing - - &Drafting - Draf&ting + &Drafting + Draf&ting - - Sketch based - Sketch + Sketch based + Sketch - - Primitives - + Primitives + Primitive - Parametric - Parametrica + Parametric + Parametrica - - Object appearence - Aspetto dell'oggetto + Object appearence + Aspetto dell'oggetto - - Wire Tools - Strumenti Wire + Wire Tools + Strumenti Wire - + diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_ja.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_ja.qm index 495423814..01f3a4266 100644 Binary files a/src/Mod/Complete/Gui/Resources/translations/Complete_ja.qm and b/src/Mod/Complete/Gui/Resources/translations/Complete_ja.qm differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_ja.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_ja.ts index 169eb04fc..672ed0158 100644 --- a/src/Mod/Complete/Gui/Resources/translations/Complete_ja.ts +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_ja.ts @@ -1,82 +1,71 @@ - - + + CmdCompleteConstraintAxle - - Complete - 完了 + + Complete + 完了 - - Constraint Axle... - 軸拘束の設定... + Constraint Axle... + 軸拘束の設定... - - set a axle constraint between two objects - 二つのオブジェクト間に軸拘束を設定します。 + set a axle constraint between two objects + 二つのオブジェクト間に軸拘束を設定します。 - - + + Test_Test - - Self-test... - 自己診断... + + Self-test... + 自己診断... - - Runs a self-test to check if the application works properly - アプリケーションが正常に動作するかどうかを確認する自己診断を実行します。 + Runs a self-test to check if the application works properly + アプリケーションが正常に動作するかどうかを確認する自己診断を実行します。 - - + + Workbench - - Dr&awing - ドローイング (&D) + Dr&awing + Dr&awing - - S&ketch - スケッチ(&T) + S&ketch + S&ketch - - &Raytracing - レイトレーシング (&R) + &Raytracing + レイトレーシング (&R) - - &Drafting - ドラフト (&D) + &Drafting + ドラフト (&D) - - Sketch based - スケッチベース + Sketch based + スケッチベース - - Primitives - + Primitives + Primitives - Parametric - パラメトリック + Parametric + パラメトリック - - Object appearence - オブジェクトの外観 + Object appearence + オブジェクトの外観 - - Wire Tools - ポリラインツール + Wire Tools + ポリラインツール - + diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_nl.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_nl.qm index 51d5ff4fc..1453d97c9 100644 Binary files a/src/Mod/Complete/Gui/Resources/translations/Complete_nl.qm and b/src/Mod/Complete/Gui/Resources/translations/Complete_nl.qm differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_nl.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_nl.ts index 987daf9b2..b954b9955 100644 --- a/src/Mod/Complete/Gui/Resources/translations/Complete_nl.ts +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_nl.ts @@ -1,82 +1,71 @@ - - + + CmdCompleteConstraintAxle - - Complete - Voltooid + + Complete + Voltooid - - Constraint Axle... - As-beperking... + Constraint Axle... + As-beperking... - - set a axle constraint between two objects - Stel een as-beperking in tussen twee objecten + set a axle constraint between two objects + Stel een as-beperking in tussen twee objecten - - + + Test_Test - - Self-test... - Self-test... + + Self-test... + Zelf-test... - - Runs a self-test to check if the application works properly - Runs a self-test to check if the application works properly + Runs a self-test to check if the application works properly + Voert een zelf-test uit, om te controleren of de toepassing correct werkt - - + + Workbench - - Dr&awing - &Tekenen + Dr&awing + Dr&awing - - S&ketch - Sche&ts + S&ketch + S&ketch - - &Raytracing - &Raytracing + &Raytracing + &Realistische Weergave - - &Drafting - &Schetsen + &Drafting + &Schetsen - - Sketch based - Schets gebaseerd + Sketch based + Schets gebaseerd - - Primitives - + Primitives + Primitives - Parametric - Parametrisch + Parametric + Parametrisch - - Object appearence - Object uiterlijk + Object appearence + Object uiterlijk - - Wire Tools - Draad Gereedschap + Wire Tools + Lijn Gereedschap - + diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_no.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_no.qm index 5dd637250..4de0366b9 100644 Binary files a/src/Mod/Complete/Gui/Resources/translations/Complete_no.qm and b/src/Mod/Complete/Gui/Resources/translations/Complete_no.qm differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_no.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_no.ts index af96c4e5c..89fe5fe1f 100644 --- a/src/Mod/Complete/Gui/Resources/translations/Complete_no.ts +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_no.ts @@ -1,82 +1,71 @@ - - + + CmdCompleteConstraintAxle - - Complete - Fullført + + Complete + Fullført - - Constraint Axle... - Aksellås... + Constraint Axle... + Aksellås... - - set a axle constraint between two objects - angi en akselbetingelse mellom to objekter + set a axle constraint between two objects + angi en akselbetingelse mellom to objekter - - + + Test_Test - - Self-test... - Self-test... + + Self-test... + Selvtest... - - Runs a self-test to check if the application works properly - Runs a self-test to check if the application works properly + Runs a self-test to check if the application works properly + Kjører en selvtest for å kontrollere om programmet fungerer riktig - - + + Workbench - - Dr&awing - &Tegning + Dr&awing + T&egning - - S&ketch - Sk&isser + S&ketch + K&ladd - - &Raytracing - &Strålesporing + &Raytracing + &Strålesporing - - &Drafting - &Skissering + &Drafting + &Skissering - - Sketch based - Skissebasert + Sketch based + Skissebasert - - Primitives - + Primitives + Primitiver - Parametric - Parametrisk + Parametric + Parametrisk - - Object appearence - Object appearence + Object appearence + Objektetutseende - - Wire Tools - Wire Tools + Wire Tools + Wire Tools - + diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_pl.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_pl.qm index 959ad6b12..0b014443b 100644 Binary files a/src/Mod/Complete/Gui/Resources/translations/Complete_pl.qm and b/src/Mod/Complete/Gui/Resources/translations/Complete_pl.qm differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_pl.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_pl.ts index 81c60eee9..b53387fea 100644 --- a/src/Mod/Complete/Gui/Resources/translations/Complete_pl.ts +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_pl.ts @@ -1,82 +1,71 @@ - - + + CmdCompleteConstraintAxle - - Complete - Kompletny + + Complete + Kompletny - - Constraint Axle... - Ograniczenie osi... + Constraint Axle... + Ograniczenie osi... - - set a axle constraint between two objects - ustaw ograniczenie osi między dwoma obiektami + set a axle constraint between two objects + ustaw ograniczenie osi między dwoma obiektami - - + + Test_Test - - Self-test... - Autotest... + + Self-test... + Autotest... - - Runs a self-test to check if the application works properly - Wykonanie autotestu w celu sprawdzenia poprawności aplikacji. + Runs a self-test to check if the application works properly + Wykonanie autotestu w celu sprawdzenia poprawności aplikacji. - - + + Workbench - - Dr&awing - &Rysunek + Dr&awing + Rysow&anie - - S&ketch - Szki&c + S&ketch + Sz&kic - - &Raytracing - Raytracing + &Raytracing + Raytracing - - &Drafting - &Kreślenie + &Drafting + &Kreślenie - - Sketch based - Ze szkicu + Sketch based + Ze szkicu - - Primitives - + Primitives + Proste kształty - Parametric - Parametryczny + Parametric + Parametryczny - - Object appearence - Wygląd obiektu + Object appearence + Wygląd obiektu - - Wire Tools - Narzędzia Szkieletu + Wire Tools + Narzędzia Szkieletu - + diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_pt-BR.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_pt-BR.qm new file mode 100644 index 000000000..c4fbd4400 Binary files /dev/null and b/src/Mod/Complete/Gui/Resources/translations/Complete_pt-BR.qm differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_pt-BR.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_pt-BR.ts new file mode 100644 index 000000000..97ba81900 --- /dev/null +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_pt-BR.ts @@ -0,0 +1,71 @@ + + + + + CmdCompleteConstraintAxle + + + Complete + Completo + + + Constraint Axle... + Restrição de eixo... + + + set a axle constraint between two objects + definir uma restrição de eixo entre dois objetos + + + + Test_Test + + + Self-test... + Teste automático... + + + Runs a self-test to check if the application works properly + Executa um teste automático para verificar se o aplicativo funciona corretamente + + + + Workbench + + Dr&awing + Desenhando + + + S&ketch + Rascunho + + + &Raytracing + &Raytracing + + + &Drafting + &Drafting + + + Sketch based + Sketch + + + Primitives + Primitivos + + + Parametric + Paramétrico + + + Object appearence + Aparência do objeto + + + Wire Tools + Ferramentas de arame + + + diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_pt.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_pt.qm deleted file mode 100644 index 55f13d3b7..000000000 Binary files a/src/Mod/Complete/Gui/Resources/translations/Complete_pt.qm and /dev/null differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_pt.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_pt.ts deleted file mode 100644 index 7e034eeb5..000000000 --- a/src/Mod/Complete/Gui/Resources/translations/Complete_pt.ts +++ /dev/null @@ -1,82 +0,0 @@ - - - - - CmdCompleteConstraintAxle - - - Complete - Completo - - - - Constraint Axle... - Restrição de eixo... - - - - set a axle constraint between two objects - definir uma restrição de eixo entre dois objetos - - - - Test_Test - - - Self-test... - Teste automático... - - - - Runs a self-test to check if the application works properly - Executa um teste automático para verificar se o aplicativo funciona corretamente - - - - Workbench - - - Dr&awing - &Desenho - - - - S&ketch - Sk&etch - - - - &Raytracing - &Raytracing - - - - &Drafting - &Drafting - - - - Sketch based - Sketch - - - - Primitives - - - - Parametric - Paramétrico - - - - Object appearence - Aparência do objeto - - - - Wire Tools - Ferramentas de arame - - - diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_ro.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_ro.qm new file mode 100644 index 000000000..88c957850 Binary files /dev/null and b/src/Mod/Complete/Gui/Resources/translations/Complete_ro.qm differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_ro.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_ro.ts new file mode 100644 index 000000000..2c597bc56 --- /dev/null +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_ro.ts @@ -0,0 +1,72 @@ + + + + + CmdCompleteConstraintAxle + + + Complete + Finalizat + + + Constraint Axle... + Axul de restricție... + + + + set a axle constraint between two objects + setează o restricție axială între două obiecte + + + + Test_Test + + + Self-test... + Auto evaluare... + + + Runs a self-test to check if the application works properly + Rulează o auto-evaluare pentru a verifica dacă aplicaţia funcţionează corespunzător + + + + Workbench + + Dr&awing + D&esen + + + S&ketch + S&chiţă + + + &Raytracing + &Raytracing + + + &Drafting + &Schiţare + + + Sketch based + Bazat pe o schiţă + + + Primitives + Primitive + + + Parametric + Parametric + + + Object appearence + Aparenţa obiectului + + + Wire Tools + Wire Tools + + + diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_ru.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_ru.qm index b0977c27c..95d65638a 100644 Binary files a/src/Mod/Complete/Gui/Resources/translations/Complete_ru.qm and b/src/Mod/Complete/Gui/Resources/translations/Complete_ru.qm differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_ru.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_ru.ts index f17d0c220..918a83825 100644 --- a/src/Mod/Complete/Gui/Resources/translations/Complete_ru.ts +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_ru.ts @@ -1,82 +1,71 @@ - - + + CmdCompleteConstraintAxle - - Complete - Выполнено + + Complete + Выполнено - - Constraint Axle... - Ограничение оси... + Constraint Axle... + Ограничение оси... - - set a axle constraint between two objects - задать ось ограниченную двумя объектами + set a axle constraint between two objects + задать ось ограниченную двумя объектами - - + + Test_Test - - Self-test... - Самотестирование ... + + Self-test... + Самотестирование ... - - Runs a self-test to check if the application works properly - Выполняет самопроверку для проверки правильности функционирования приложения + Runs a self-test to check if the application works properly + Выполняет самопроверку для проверки правильности функционирования приложения - - + + Workbench - - Dr&awing - &Рисование + Dr&awing + Рисование - - S&ketch - Эс&киз + S&ketch + Наборосок - - &Raytracing - &Трассировка лучей + &Raytracing + &Трассировка лучей - - &Drafting - &Черчение + &Drafting + &Черчение - - Sketch based - Основанный на эскизе + Sketch based + Основанный на эскизе - - Primitives - + Primitives + Примитивы - Parametric - Параметрический + Parametric + Параметрический - - Object appearence - Внешность объекта + Object appearence + Внешность объекта - - Wire Tools - Wire Tools + Wire Tools + Проволочные инструменты - + diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_se.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_se.qm deleted file mode 100644 index c3fc4c544..000000000 Binary files a/src/Mod/Complete/Gui/Resources/translations/Complete_se.qm and /dev/null differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_se.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_se.ts deleted file mode 100644 index 8dcf347fd..000000000 --- a/src/Mod/Complete/Gui/Resources/translations/Complete_se.ts +++ /dev/null @@ -1,82 +0,0 @@ - - - - - CmdCompleteConstraintAxle - - - Complete - Komplett - - - - Constraint Axle... - Begränsningsaxel... - - - - set a axle constraint between two objects - Sätt en axelbegränsning mellan två objekt - - - - Test_Test - - - Self-test... - Självtest ... - - - - Runs a self-test to check if the application works properly - Kör ett självtest för att kontrollera om programmet fungerar - - - - Workbench - - - Dr&awing - R&itning - - - - S&ketch - S&kiss - - - - &Raytracing - R&endering - - - - &Drafting - &Skissning - - - - Sketch based - Skiss baserad - - - - Primitives - - - - Parametric - Parametrisk - - - - Object appearence - Objekt utseende - - - - Wire Tools - Trådverktyg - - - diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_sk.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_sk.qm new file mode 100644 index 000000000..f647e6c9f Binary files /dev/null and b/src/Mod/Complete/Gui/Resources/translations/Complete_sk.qm differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_sk.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_sk.ts new file mode 100644 index 000000000..a642fd964 --- /dev/null +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_sk.ts @@ -0,0 +1,71 @@ + + + + + CmdCompleteConstraintAxle + + + Complete + Dokončené + + + Constraint Axle... + Os obmedzenia... + + + set a axle constraint between two objects + nastaviť os obmedzenia medzi dvoma objektmi + + + + Test_Test + + + Self-test... + Self-test... + + + Runs a self-test to check if the application works properly + Spustí self-test pre overenie, či aplikácia funguje správne + + + + Workbench + + Dr&awing + Dr&awing + + + S&ketch + S&ketch + + + &Raytracing + &Raytracing + + + &Drafting + &Náčrt + + + Sketch based + Náčrt založený + + + Primitives + Primitives + + + Parametric + Parametrické + + + Object appearence + Vzhľad objektu + + + Wire Tools + Drôtové nástroje + + + diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_sv-SE.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_sv-SE.qm new file mode 100644 index 000000000..65ba759fd Binary files /dev/null and b/src/Mod/Complete/Gui/Resources/translations/Complete_sv-SE.qm differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_sv-SE.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_sv-SE.ts new file mode 100644 index 000000000..61b1d4fbe --- /dev/null +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_sv-SE.ts @@ -0,0 +1,71 @@ + + + + + CmdCompleteConstraintAxle + + + Complete + Komplett + + + Constraint Axle... + Begränsningsaxel... + + + set a axle constraint between two objects + Sätt en axelbegränsning mellan två objekt + + + + Test_Test + + + Self-test... + Självtest ... + + + Runs a self-test to check if the application works properly + Kör ett självtest för att kontrollera om programmet fungerar + + + + Workbench + + Dr&awing + &Ritning + + + S&ketch + S&kiss + + + &Raytracing + R&endering + + + &Drafting + &Skissning + + + Sketch based + Skiss baserad + + + Primitives + Primitiver + + + Parametric + Parametrisk + + + Object appearence + Objekt utseende + + + Wire Tools + Trådverktyg + + + diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_tr.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_tr.qm new file mode 100644 index 000000000..f3996ffaf Binary files /dev/null and b/src/Mod/Complete/Gui/Resources/translations/Complete_tr.qm differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_tr.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_tr.ts new file mode 100644 index 000000000..d7804c319 --- /dev/null +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_tr.ts @@ -0,0 +1,71 @@ + + + + + CmdCompleteConstraintAxle + + + Complete + Tam + + + Constraint Axle... + Sınırlama Mili... + + + set a axle constraint between two objects + İki nesne arasındaki sınırlama milini belirle + + + + Test_Test + + + Self-test... + Otomatik test + + + Runs a self-test to check if the application works properly + Uygulamanın düzgün çalışıp denetlemek için bir sınama çalıştır + + + + Workbench + + Dr&awing + Dr&awing + + + S&ketch + Çiz + + + &Raytracing + &Işınizleme + + + &Drafting + &Çiziliyor + + + Sketch based + Kroki temelli + + + Primitives + Temel öğeler + + + Parametric + Değişken tabanlı (Parametrik) + + + Object appearence + Nesne görünüm + + + Wire Tools + Tel Araçları + + + diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_uk.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_uk.qm index 1aba32e8e..d3b32125b 100644 Binary files a/src/Mod/Complete/Gui/Resources/translations/Complete_uk.qm and b/src/Mod/Complete/Gui/Resources/translations/Complete_uk.qm differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_uk.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_uk.ts index 1fc114b88..67e1a0927 100644 --- a/src/Mod/Complete/Gui/Resources/translations/Complete_uk.ts +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_uk.ts @@ -1,82 +1,71 @@ - - + + CmdCompleteConstraintAxle - - Complete - Виконано + + Complete + Виконано - - Constraint Axle... - Обмеження осі... + Constraint Axle... + Обмеження осі... - - set a axle constraint between two objects - задати вісь обмежену двома об'єктами + set a axle constraint between two objects + задати вісь обмежену двома об'єктами - - + + Test_Test - - Self-test... - Self-test... + + Self-test... + Самотестування... - - Runs a self-test to check if the application works properly - Runs a self-test to check if the application works properly + Runs a self-test to check if the application works properly + Запускає самотестування для перевірки того, що програма працює належним чином - - + + Workbench - - Dr&awing - &Малювання + Dr&awing + Креслення - - S&ketch - Ес&кіз + S&ketch + Ескіз - - &Raytracing - &Трасування променів + &Raytracing + &Трасування променів - - &Drafting - &Креслення + &Drafting + &Креслення - - Sketch based - Базуючись на ескізі + Sketch based + Базуючись на ескізі - - Primitives - + Primitives + Примітиви - Parametric - Параметричний + Parametric + Параметричний - - Object appearence - Object appearence + Object appearence + Поведінка об'єкту - - Wire Tools - Wire Tools + Wire Tools + Інструмент Струна - + diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_zh-CN.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_zh-CN.qm new file mode 100644 index 000000000..c293103da Binary files /dev/null and b/src/Mod/Complete/Gui/Resources/translations/Complete_zh-CN.qm differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_zh-CN.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_zh-CN.ts new file mode 100644 index 000000000..0a2b606a4 --- /dev/null +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_zh-CN.ts @@ -0,0 +1,71 @@ + + + + + CmdCompleteConstraintAxle + + + Complete + 全部 + + + Constraint Axle... + 约束轴... + + + set a axle constraint between two objects + 两对象间设置轴约束 + + + + Test_Test + + + Self-test... + 自检... + + + Runs a self-test to check if the application works properly + 运行自检测试程序是否正常工作 + + + + Workbench + + Dr&awing + 绘图(&a) + + + S&ketch + 草绘(&k) + + + &Raytracing + 光线追踪(&R) + + + &Drafting + 绘图(&D) + + + Sketch based + 基于草绘 + + + Primitives + 基础图元 + + + Parametric + 参数化 + + + Object appearence + 对象外观 + + + Wire Tools + 线框工具 + + + diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_zh-TW.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_zh-TW.qm new file mode 100644 index 000000000..5d3ad20fa Binary files /dev/null and b/src/Mod/Complete/Gui/Resources/translations/Complete_zh-TW.qm differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_zh-TW.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_zh-TW.ts new file mode 100644 index 000000000..fff7e90bb --- /dev/null +++ b/src/Mod/Complete/Gui/Resources/translations/Complete_zh-TW.ts @@ -0,0 +1,71 @@ + + + + + CmdCompleteConstraintAxle + + + Complete + 完成 + + + Constraint Axle... + 約束軸... + + + set a axle constraint between two objects + 在兩個物件之間設置軸約束 + + + + Test_Test + + + Self-test... + 自我檢測 + + + Runs a self-test to check if the application works properly + 執行自我檢查確認程式是否運作良好 + + + + Workbench + + Dr&awing + &繪圖 + + + S&ketch + &素描 + + + &Raytracing + 光跡追踪(&R) + + + &Drafting + 製圖(&D) + + + Sketch based + 基底草圖 + + + Primitives + 元件 + + + Parametric + 參數 + + + Object appearence + 物件顯示 + + + Wire Tools + 線條工具 + + + diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_zh.qm b/src/Mod/Complete/Gui/Resources/translations/Complete_zh.qm deleted file mode 100644 index e770a01e0..000000000 Binary files a/src/Mod/Complete/Gui/Resources/translations/Complete_zh.qm and /dev/null differ diff --git a/src/Mod/Complete/Gui/Resources/translations/Complete_zh.ts b/src/Mod/Complete/Gui/Resources/translations/Complete_zh.ts deleted file mode 100644 index 140bd53f8..000000000 --- a/src/Mod/Complete/Gui/Resources/translations/Complete_zh.ts +++ /dev/null @@ -1,82 +0,0 @@ - - - - - CmdCompleteConstraintAxle - - - Complete - 全部 - - - - Constraint Axle... - 约束轴... - - - - set a axle constraint between two objects - 两对象间设置轴约束 - - - - Test_Test - - - Self-test... - 自检... - - - - Runs a self-test to check if the application works properly - 运行自检测试程序是否正常工作 - - - - Workbench - - - Dr&awing - 图纸(&D) - - - - S&ketch - 草绘(&T) - - - - &Raytracing - 光线追踪(&R) - - - - &Drafting - 绘图(&D) - - - - Sketch based - 基于草绘 - - - - Primitives - - - - Parametric - 参数化 - - - - Object appearence - 对象外观 - - - - Wire Tools - 线框工具 - - - diff --git a/src/Mod/Draft/Draft.py b/src/Mod/Draft/Draft.py index 7939900df..57a53e72a 100644 --- a/src/Mod/Draft/Draft.py +++ b/src/Mod/Draft/Draft.py @@ -1548,12 +1548,12 @@ def makeShape2DView(baseobj,projectionVector=None,facenumbers=[]): select(obj) return obj -def makeSketch(objectslist,autoconstraints=False,addTo=None,name="Sketch"): - '''makeSketch(objectslist,[autoconstraints],[addTo],[name]): makes a Sketch +def makeSketch(objectslist,autoconstraints=False,addTo=None,delete=False,name="Sketch"): + '''makeSketch(objectslist,[autoconstraints],[addTo],[delete],[name]): makes a Sketch objectslist with the given Draft objects. If autoconstraints is True, constraints will be automatically added to wire nodes, rectangles and circles. If addTo is an existing sketch, geometry will be added to it instead of - creating a new one.''' + creating a new one. If delete is True, the original object will be deleted''' import Part, DraftGeomUtils from Sketcher import Constraint @@ -1620,6 +1620,10 @@ def makeSketch(objectslist,autoconstraints=False,addTo=None,name="Sketch"): if not DraftGeomUtils.isPlanar(obj.Shape): print "Error: The given object is not planar and cannot be converted into a sketch." return None + for e in obj.Shape.Edges: + if isinstance(e.Curve,Part.BSplineCurve): + print "Error: One of the selected object contains BSplines, unable to convert" + return None if not addTo: nobj.Placement.Rotation = DraftGeomUtils.calculatePlacement(obj.Shape).Rotation edges = [] @@ -1628,7 +1632,8 @@ def makeSketch(objectslist,autoconstraints=False,addTo=None,name="Sketch"): if g: nobj.addGeometry(g) ok = True - if ok: + formatObject(nobj,obj) + if ok and delete: FreeCAD.ActiveDocument.removeObject(obj.Name) FreeCAD.ActiveDocument.recompute() return nobj diff --git a/src/Mod/Draft/DraftGeomUtils.py b/src/Mod/Draft/DraftGeomUtils.py index 441809d22..7c52a83b7 100755 --- a/src/Mod/Draft/DraftGeomUtils.py +++ b/src/Mod/Draft/DraftGeomUtils.py @@ -381,7 +381,6 @@ def geom(edge,plac=FreeCAD.Placement()): p= Part.ArcOfCircle(cu,a1,a2) return p else: - print edge.Curve return edge.Curve def mirror (point, edge): diff --git a/src/Mod/Draft/Draft_rc.py b/src/Mod/Draft/Draft_rc.py index fce29997b..fd4578d82 100644 --- a/src/Mod/Draft/Draft_rc.py +++ b/src/Mod/Draft/Draft_rc.py @@ -2,7 +2,7 @@ # Resource object code # -# Created: Thu Aug 30 14:59:12 2012 +# Created: Mon Oct 29 15:19:21 2012 # by: The Resource Compiler for PyQt (Qt v4.8.2) # # WARNING! All changes made in this file will be lost! @@ -261,6 +261,38657 @@ qt_resource_data = "\ \x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x70\x61\x74\x74\ \x65\x72\x6e\x3e\x0a\x20\x20\x3c\x2f\x64\x65\x66\x73\x3e\x0a\x3c\ \x2f\x73\x76\x67\x3e\ +\x00\x00\xce\xfd\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x0b\x38\x00\x00\x00\x58\x00\x00\xc1\x0e\x00\x00\x00\x59\ +\x00\x00\xc1\xd7\x00\x00\x00\x5a\x00\x00\xc2\x80\x00\x00\x05\xd9\ +\x00\x00\xc1\x97\x00\x00\x05\xda\x00\x00\xc1\xb7\x00\x00\x05\xea\ +\x00\x00\xc2\x60\x00\x00\x07\x78\x00\x00\x89\xcd\x00\x00\x48\x83\ +\x00\x00\x03\x37\x00\x00\x48\x83\x00\x00\x90\x9b\x00\x00\x68\x34\ +\x00\x00\x82\xe9\x00\x01\xc1\x87\x00\x00\x59\x26\x00\x04\xa6\x79\ +\x00\x00\x94\x42\x00\x04\xbb\x04\x00\x00\x0d\x7c\x00\x04\xbb\x04\ +\x00\x00\x99\xb6\x00\x05\x30\x45\x00\x00\x0f\xef\x00\x05\x30\x45\ +\x00\x00\xac\x27\x00\x05\x46\xc5\x00\x00\x10\x1c\x00\x05\x46\xc5\ +\x00\x00\xac\xc5\x00\x05\x56\x45\x00\x00\x59\xf7\x00\x05\x56\x45\ +\x00\x00\xad\xed\x00\x05\xac\xf4\x00\x00\x1d\xa2\x00\x05\xac\xf4\ +\x00\x00\xbd\xdb\x00\x05\xb8\xfd\x00\x00\xbe\xef\x00\x05\xcf\xc7\ +\x00\x00\xbf\x9f\x00\x06\xab\x8c\x00\x00\x84\x6d\x00\x10\x84\x49\ +\x00\x00\x68\x87\x00\x12\x05\xba\x00\x00\xbb\x35\x00\x16\xc6\xda\ +\x00\x00\xa1\x1a\x00\x1f\xa4\xf7\x00\x00\x2a\xce\x00\x2a\xa6\x79\ +\x00\x00\x8c\xa3\x00\x2b\xc4\xaf\x00\x00\x8d\xb9\x00\x2b\xe0\x65\ +\x00\x00\x8d\xec\x00\x39\xdf\x33\x00\x00\x3b\xb4\x00\x3a\x9e\x1b\ +\x00\x00\x7a\x73\x00\x3d\xa1\x19\x00\x00\x91\xd6\x00\x3e\x93\x83\ +\x00\x00\x3c\xea\x00\x48\x8f\x7c\x00\x00\x2c\x08\x00\x48\x98\x89\ +\x00\x00\x04\x36\x00\x49\xe0\x85\x00\x00\x28\xea\x00\x49\xe0\x85\ +\x00\x00\x97\x1b\x00\x4a\x36\x45\x00\x00\x07\x5c\x00\x4b\x66\x35\ +\x00\x00\x38\x7c\x00\x4b\x66\x37\x00\x00\x38\xc3\x00\x4b\x66\x39\ +\x00\x00\x39\x0a\x00\x57\x60\x54\x00\x00\x13\x52\x00\x57\x60\x54\ +\x00\x00\xb6\xd8\x00\x58\xfd\xf4\x00\x00\x5e\x1a\x00\x59\x98\x25\ +\x00\x00\x17\x03\x00\x59\x98\x25\x00\x00\xb8\x94\x00\x6a\x58\x9a\ +\x00\x00\xb0\xa8\x00\x79\xef\xd4\x00\x00\x8a\x05\x00\x7e\x7f\x0e\ +\x00\x00\x7f\x62\x00\x8a\x23\x95\x00\x00\x2f\x7a\x00\x8a\x23\x97\ +\x00\x00\x2f\xc0\x00\x8a\x23\x99\x00\x00\x30\x06\x00\x91\xbc\xe9\ +\x00\x00\x10\x55\x00\xa6\x37\x3f\x00\x00\x2e\x4f\x00\xaa\x80\x25\ +\x00\x00\x97\xd9\x00\xac\xd6\x04\x00\x00\x48\xee\x00\xc0\xac\x63\ +\x00\x00\x98\x9f\x00\xc6\xe3\x6e\x00\x00\x2a\x3f\x00\xcb\xa8\x14\ +\x00\x00\x88\xeb\x00\xfc\x00\xca\x00\x00\xa7\xce\x01\x19\x8d\xde\ +\x00\x00\x63\x6a\x01\x21\xd6\x39\x00\x00\x67\x7a\x01\x22\xb4\xf9\ +\x00\x00\x17\x42\x01\x2f\x8e\x7e\x00\x00\x72\x12\x01\x48\xfe\xa3\ +\x00\x00\x3d\x60\x01\x53\xf3\xaa\x00\x00\x9d\xa5\x01\x56\x16\x4a\ +\x00\x00\xa7\x4b\x01\x5c\xde\xba\x00\x00\xad\x64\x01\x67\x0d\x8a\ +\x00\x00\xa2\xc1\x01\x69\x11\x7a\x00\x00\xb4\xb5\x01\x69\x97\x98\ +\x00\x00\x3f\xce\x01\x82\x39\x0a\x00\x00\xb1\x42\x01\x8b\x68\x75\ +\x00\x00\xbe\x7c\x01\x8b\x89\x79\x00\x00\x07\x8b\x01\xa1\x7f\x63\ +\x00\x00\x20\x51\x01\xb1\x5d\x09\x00\x00\x7b\x0e\x01\xc1\xd9\xde\ +\x00\x00\x6a\xcc\x01\xd2\x8f\xd3\x00\x00\x5e\xcd\x01\xd4\x10\x23\ +\x00\x00\x47\xff\x01\xdd\x83\xfa\x00\x00\xaf\x2c\x01\xdf\x11\x43\ +\x00\x00\x06\x8a\x01\xe2\xf4\x5a\x00\x00\xba\xc6\x01\xfc\xae\xd3\ +\x00\x00\x8a\x4c\x02\x05\xbe\x25\x00\x00\x96\x88\x02\x2c\xd9\x60\ +\x00\x00\x22\x89\x02\x2f\xb5\x14\x00\x00\x21\xca\x02\x46\x58\x0a\ +\x00\x00\xb3\xfb\x02\x57\xf8\x08\x00\x00\x0c\x46\x02\x65\xad\x62\ +\x00\x00\xc3\x52\x02\x6e\x07\xe2\x00\x00\x62\x06\x02\x76\x24\x13\ +\x00\x00\x45\x17\x02\x7d\xe0\x55\x00\x00\x63\x02\x02\x94\x46\x1a\ +\x00\x00\xb0\xef\x02\x95\xca\xb5\x00\x00\x3a\x6f\x02\xa7\x2c\x15\ +\x00\x00\x05\x36\x02\xaa\x36\x95\x00\x00\x8c\x3a\x02\xab\x87\xd4\ +\x00\x00\x8c\xd6\x02\xb1\xf0\xba\x00\x00\xa4\x74\x02\xbf\xaa\x8e\ +\x00\x00\x41\x1b\x02\xc0\x66\xf2\x00\x00\x6e\x6c\x02\xc8\x3f\xf5\ +\x00\x00\x79\xc9\x02\xd9\xa4\xb9\x00\x00\x82\x98\x02\xdb\x1a\x94\ +\x00\x00\x08\xc3\x03\x01\x84\xc4\x00\x00\xa8\x8f\x03\x12\x97\x6a\ +\x00\x00\xa6\x86\x03\x14\x79\xca\x00\x00\xac\xf9\x03\x1a\x14\x14\ +\x00\x00\x36\x2a\x03\x1a\x16\x59\x00\x00\x64\x7f\x03\x2f\x1a\x6a\ +\x00\x00\x8e\x7d\x03\x7e\xca\xb5\x00\x00\x54\x1a\x03\x85\x74\x48\ +\x00\x00\x4f\x28\x03\x88\x1f\xd4\x00\x00\x54\xfd\x03\x9e\x58\xa5\ +\x00\x00\x00\x44\x03\xb3\x9e\xfa\x00\x00\xb1\xf4\x03\xb5\xc8\x9a\ +\x00\x00\xb3\x46\x03\xbd\xd4\xe4\x00\x00\x8f\x30\x03\xc4\x3c\xf5\ +\x00\x00\x91\x96\x03\xc5\xd5\x5e\x00\x00\x0a\xdd\x03\xc5\xd5\x5e\ +\x00\x00\x97\xa0\x03\xcb\x0d\xe5\x00\x00\xb8\xcd\x03\xdc\x0c\xd4\ +\x00\x00\x8d\x37\x03\xe1\x78\x25\x00\x00\x95\xb0\x03\xf2\x70\x35\ +\x00\x00\x32\x6a\x03\xf2\xbd\x60\x00\x00\x18\x8c\x03\xfb\x0f\x04\ +\x00\x00\x35\xb0\x04\x21\x23\x23\x00\x00\x26\x4d\x04\x2e\x73\x33\ +\x00\x00\x7d\xd7\x04\x56\x06\x93\x00\x00\x33\xc5\x04\x60\x7c\x15\ +\x00\x00\xb7\x66\x04\x79\xef\x9a\x00\x00\xa3\xf7\x04\x82\x77\xf4\ +\x00\x00\x62\xb8\x04\x87\x83\x87\x00\x00\x44\x19\x04\x87\xf9\x9e\ +\x00\x00\xa9\x96\x04\x8c\xd6\xae\x00\x00\x78\x00\x04\x8e\xbd\xda\ +\x00\x00\x9b\xdd\x04\xa0\x8a\x25\x00\x00\x06\x5b\x04\xa0\x8a\x25\ +\x00\x00\x93\x01\x04\xa4\x31\x5a\x00\x00\xab\xb9\x04\xa8\xeb\x85\ +\x00\x00\x39\x51\x04\xbe\x0a\xf8\x00\x00\x5d\x97\x04\xd6\xd6\x12\ +\x00\x00\x60\xb7\x04\xe1\x6e\xe3\x00\x00\x0b\x5d\x04\xe4\x0f\x75\ +\x00\x00\x02\xcb\x04\xeb\x41\xc3\x00\x00\x33\x40\x04\xef\xd9\xa8\ +\x00\x00\x5c\xaa\x05\x03\x83\x95\x00\x00\x86\x12\x05\x05\xcb\x13\ +\x00\x00\x52\x6e\x05\x0f\xf2\x74\x00\x00\xaf\xc1\x05\x1b\x10\x59\ +\x00\x00\x56\xac\x05\x2a\xe5\x97\x00\x00\x5f\x99\x05\x44\x3b\x5f\ +\x00\x00\x87\xfd\x05\x5c\xd9\xc4\x00\x00\x11\xa4\x05\x5c\xd9\xc4\ +\x00\x00\xae\x5e\x05\x63\xf6\x93\x00\x00\x5e\x5f\x05\x65\xee\x65\ +\x00\x00\x9b\xa0\x05\x87\xb0\xc3\x00\x00\xb7\x3a\x05\x96\xa8\xa5\ +\x00\x00\x15\x9d\x05\x96\xa8\xa5\x00\x00\xb8\x62\x05\xad\x4b\xc3\ +\x00\x00\x54\x72\x05\xb2\xa6\xc6\x00\x00\x22\xcf\x05\xb9\x03\xc8\ +\x00\x00\x23\x48\x05\xbd\x0c\xba\x00\x00\x9e\xc9\x05\xbd\x8e\xde\ +\x00\x00\x76\x54\x05\xbe\x56\x93\x00\x00\x5c\x3c\x05\xc5\x50\x04\ +\x00\x00\x0d\xab\x05\xe5\x8e\x2e\x00\x00\x13\x81\x05\xfb\xdc\x83\ +\x00\x00\x52\xca\x06\x1e\xe6\xb5\x00\x00\xbd\xa0\x06\x29\xee\xa9\ +\x00\x00\x93\x6a\x06\x2a\x86\xcd\x00\x00\x62\x62\x06\x57\x19\xf4\ +\x00\x00\x00\x00\x06\x5a\xef\x15\x00\x00\x8c\x6a\x06\x5b\xd2\xb5\ +\x00\x00\x4a\x91\x06\x6c\x88\x8e\x00\x00\x50\xb9\x06\x74\x1d\x55\ +\x00\x00\x6a\x38\x06\x8b\x96\x44\x00\x00\x0e\x69\x06\x97\x58\xc9\ +\x00\x00\x65\x08\x06\xbc\x80\xa5\x00\x00\x21\x4f\x06\xc9\xb8\x05\ +\x00\x00\x8f\xac\x06\xe8\x05\x4e\x00\x00\x08\x4a\x06\xee\xaa\x57\ +\x00\x00\xbc\xa3\x06\xf0\xcb\x25\x00\x00\x1f\x23\x06\xfa\xff\xc3\ +\x00\x00\x53\xbe\x06\xfc\x1a\x14\x00\x00\x3a\xc5\x06\xfc\xa0\x8a\ +\x00\x00\xb0\x04\x07\x08\x90\xe5\x00\x00\x30\xdf\x07\x0d\xb7\xf7\ +\x00\x00\x40\x3c\x07\x0e\x86\x3e\x00\x00\x1f\xa0\x07\x2a\x23\x65\ +\x00\x00\x3f\x39\x07\x35\x68\x6e\x00\x00\x19\xa1\x07\x35\xe8\x9a\ +\x00\x00\xb4\xfa\x07\x44\x41\x2a\x00\x00\x9d\x22\x07\x4a\x1f\x63\ +\x00\x00\x01\xf4\x07\x4d\x73\x22\x00\x00\xac\x4f\x07\x4e\xa6\xf2\ +\x00\x00\x9a\x15\x07\x58\xcb\xe8\x00\x00\xac\x89\x07\x63\xfe\x0e\ +\x00\x00\x14\x66\x07\x63\xfe\x0e\x00\x00\xb7\x01\x07\x71\xad\x43\ +\x00\x00\x1a\x98\x07\x80\xc6\xb3\x00\x00\xc0\xd6\x07\x88\x72\x5a\ +\x00\x00\x90\xef\x07\x91\x78\x5e\x00\x00\x27\xe7\x07\xa7\x30\x05\ +\x00\x00\x90\xc0\x07\xc1\xfc\x13\x00\x00\x34\x94\x07\xe7\xec\x93\ +\x00\x00\x7c\xa5\x08\x27\xb4\xba\x00\x00\xb2\xe5\x08\x32\xc4\xaa\ +\x00\x00\xb5\xb1\x08\x36\x74\x14\x00\x00\x29\xf8\x08\x44\xb9\x83\ +\x00\x00\x3b\x2e\x08\x49\xc9\x30\x00\x00\x18\xd6\x08\x61\x7c\xb3\ +\x00\x00\x23\x7b\x08\xa2\xca\x67\x00\x00\x64\x35\x08\xa3\xe0\x33\ +\x00\x00\x94\xe9\x08\xb1\x15\x28\x00\x00\x35\x3d\x08\xb4\x04\x04\ +\x00\x00\xb7\xdf\x08\xd0\x32\xf4\x00\x00\x99\xe0\x08\xd4\xcd\x69\ +\x00\x00\x9a\x53\x08\xe1\x9b\xbe\x00\x00\x1e\x59\x08\xe1\xc1\xfa\ +\x00\x00\x9c\x6c\x08\xef\x4d\x7a\x00\x00\x97\x44\x09\x20\xda\x24\ +\x00\x00\xc1\xf4\x09\x20\xda\xb4\x00\x00\xc2\x9d\x09\x20\xda\xd4\ +\x00\x00\xc1\x2b\x09\x4d\x96\xd9\x00\x00\x2b\x21\x09\x65\xda\x8a\ +\x00\x00\xa0\xa9\x09\x68\x0d\x29\x00\x00\xaa\x94\x09\x71\x8d\x25\ +\x00\x00\x08\x02\x09\x75\x23\x14\x00\x00\x8e\x1d\x09\x76\xed\x34\ +\x00\x00\x7c\x41\x09\x86\xa6\x05\x00\x00\x29\x18\x09\x8b\x23\xba\ +\x00\x00\xb6\x24\x09\x9e\xfd\x7e\x00\x00\x7d\x37\x09\xb6\x2a\x63\ +\x00\x00\x39\xbf\x09\xcd\x1c\x55\x00\x00\xb9\x0d\x09\xd2\x21\xea\ +\x00\x00\x73\x0f\x09\xe5\x23\x0e\x00\x00\x6d\x6b\x09\xec\x2b\x45\ +\x00\x00\x0e\x1b\x09\xef\x33\xa3\x00\x00\x1b\x66\x09\xf0\x1f\x6e\ +\x00\x00\x03\x60\x09\xfd\x45\x1a\x00\x00\xb1\x95\x0a\x09\xc1\x7a\ +\x00\x00\xb4\x56\x0a\x28\x9a\x65\x00\x00\x61\x37\x0a\x28\x9a\x67\ +\x00\x00\x61\x7c\x0a\x28\x9a\x69\x00\x00\x61\xc1\x0a\x2d\xbe\xe4\ +\x00\x00\x36\x8f\x0a\x35\xa9\xfa\x00\x00\xa5\x08\x0a\x3f\x27\x74\ +\x00\x00\x96\xda\x0a\x40\xa1\xe3\x00\x00\x32\xe1\x0a\x49\xa5\x4a\ +\x00\x00\xbe\x03\x0a\x60\xe0\x15\x00\x00\x2c\x49\x0a\x60\xe0\x17\ +\x00\x00\x2c\xa6\x0a\x60\xe0\x19\x00\x00\x2d\x03\x0a\x65\x9b\xea\ +\x00\x00\xae\x8e\x0a\x78\x05\x80\x00\x00\x01\x37\x0a\x7f\x8f\x65\ +\x00\x00\x46\x46\x0a\x81\xe4\x23\x00\x00\x4c\x21\x0a\x86\x10\x44\ +\x00\x00\x12\xf0\x0a\x98\x86\x18\x00\x00\x30\x4c\x0a\x99\x5c\xaa\ +\x00\x00\xb6\x7e\x0a\xa8\x16\x95\x00\x00\x15\x5a\x0a\xa8\x16\x95\ +\x00\x00\xb7\xa6\x0a\xa9\x89\xec\x00\x00\x55\x58\x0a\xc8\x5c\x59\ +\x00\x00\x11\xdb\x0a\xd0\x50\xb8\x00\x00\x8d\x02\x0a\xd0\xe6\xf5\ +\x00\x00\x1a\x4d\x0a\xd6\xf1\xfa\x00\x00\x99\x57\x0a\xeb\x91\x88\ +\x00\x00\x7b\xa0\x0b\x07\x78\x8a\x00\x00\xa0\x08\x0b\x1b\xe0\x73\ +\x00\x00\x65\x76\x0b\x24\x9d\xb4\x00\x00\x66\x79\x0b\x24\xc5\xc9\ +\x00\x00\x15\xd6\x0b\x26\x7e\x0e\x00\x00\x95\xee\x0b\x2b\x50\xfa\ +\x00\x00\xa3\x62\x0b\x2d\xb3\xf9\x00\x00\x81\xf2\x0b\x37\x73\x69\ +\x00\x00\xbf\xc9\x0b\x40\x40\x3e\x00\x00\x57\x0e\x0b\x43\xcd\x19\ +\x00\x00\x55\xd8\x0b\x4f\x98\xba\x00\x00\xa1\x9a\x0b\x66\x28\xd2\ +\x00\x00\x7a\x14\x0b\x88\xe0\x07\x00\x00\x0c\x9a\x0b\x94\x44\xc5\ +\x00\x00\x37\x04\x0b\x98\x12\xaa\x00\x00\x9e\x4c\x0b\xa0\x84\x94\ +\x00\x00\x04\x65\x0b\xb3\x46\x6a\x00\x00\x94\x72\x0b\xc2\x99\x6a\ +\x00\x00\x9f\x3d\x0b\xd3\x27\xae\x00\x00\x05\x70\x0b\xd4\x7e\x9e\ +\x00\x00\x0c\xd1\x0b\xf5\xee\x53\x00\x00\xae\x15\x0c\x06\x50\x2e\ +\x00\x00\x0e\xf0\x0c\x19\xfa\x99\x00\x00\x9a\xe1\x0c\x21\x0a\x83\ +\x00\x00\x93\x29\x0c\x28\x9b\x45\x00\x00\x8d\x84\x0c\x31\x7e\x4a\ +\x00\x00\xb2\x3b\x0c\x38\x4d\xe5\x00\x00\x09\x0e\x0c\x3a\x16\xd0\ +\x00\x00\x1d\x18\x0c\x5a\xc0\xc8\x00\x00\x91\x66\x0c\x6e\x87\xf5\ +\x00\x00\x27\xac\x0c\x7c\xe0\xa6\x00\x00\x22\x10\x0c\x80\x3b\x33\ +\x00\x00\x98\xf5\x0c\x91\xa0\x7a\x00\x00\xbd\x41\x0c\x96\x90\x59\ +\x00\x00\x56\x3d\x0c\xbe\xa7\x4e\x00\x00\x4d\x8b\x0c\xca\xdd\xfa\ +\x00\x00\xbb\xab\x0c\xd6\xef\x12\x00\x00\x34\x33\x0c\xde\x99\x49\ +\x00\x00\x82\x42\x0c\xe1\x21\x02\x00\x00\x60\x40\x0c\xe2\x77\x73\ +\x00\x00\x84\xab\x0c\xf0\xde\xaa\x00\x00\xa2\x1d\x0d\x1c\xf6\xee\ +\x00\x00\x31\xb0\x0d\x3a\x6c\xba\x00\x00\xb2\x8f\x0d\x45\xe2\x6a\ +\x00\x00\xba\x59\x0d\x59\xa1\x45\x00\x00\x98\x0b\x0d\x5a\xad\x33\ +\x00\x00\x90\x28\x0d\x5e\xe7\x6e\x00\x00\x2d\x60\x0d\x64\xa5\xd9\ +\x00\x00\x71\x5e\x0d\x6d\xf8\xf4\x00\x00\x09\xc1\x0d\x74\xdd\x52\ +\x00\x00\x1c\x5d\x0d\x76\xb5\x92\x00\x00\x32\x04\x0d\x9b\xec\xc9\ +\x00\x00\x69\xc7\x0d\xa5\xd9\x94\x00\x00\x31\x57\x0d\xa6\xda\xa4\ +\x00\x00\x58\x33\x0d\xa7\xb9\xc2\x00\x00\x1c\xaa\x0d\xc6\xc6\x2a\ +\x00\x00\xb5\x53\x0d\xf2\x39\xba\x00\x00\xa5\xbb\x0e\x1a\x1d\xc3\ +\x00\x00\x53\x2c\x0e\x29\x94\x64\x00\x00\x42\x7c\x0e\x2b\x04\x15\ +\x00\x00\x95\x6f\x0e\x2c\xe4\x2a\x00\x00\xb9\xe8\x0e\x4e\xcc\xc5\ +\x00\x00\x0b\x20\x0e\x6f\x9a\x1a\x00\x00\xbc\x31\x0e\x7b\x7a\x2c\ +\x00\x00\x38\x00\x0e\x8f\x6a\x37\x00\x00\x3c\x94\x0e\x91\x65\xf5\ +\x00\x00\x1d\xcf\x0e\xca\xd7\x34\x00\x00\x25\x37\x0e\xcd\x1c\x55\ +\x00\x00\xb9\x56\x0e\xcd\x1c\x65\x00\x00\xb9\x9f\x0e\xcd\x5b\x59\ +\x00\x00\x5d\x3e\x0e\xea\xe5\x03\x00\x00\x8a\xeb\x0e\xed\xe1\xf9\ +\x00\x00\x5a\x37\x0f\x07\x8d\xe3\x00\x00\x8b\x8f\x0f\x0b\x10\x53\ +\x00\x00\x58\xaf\x0f\x17\x82\x4e\x00\x00\x00\xdf\x0f\x1f\x8d\xa5\ +\x00\x00\x95\x27\x0f\x4f\x75\x3a\x00\x00\xc3\x09\x0f\x5f\xca\xd5\ +\x00\x00\x37\x7d\x0f\x77\xc3\xb4\x00\x00\x83\x24\x0f\x89\x0b\xbe\ +\x00\x00\x5a\x95\x0f\x8f\xa8\xa7\x00\x00\x1c\x0a\x0f\x98\x0a\x39\ +\x00\x00\xbf\x1d\x0f\x9e\xec\xa0\x00\x00\x14\xa7\x0f\xbf\x87\xa3\ +\x00\x00\xab\x69\x0f\xcd\xce\x95\x00\x00\x3c\x1a\x0f\xdf\x21\x05\ +\x00\x00\x29\xa3\x0f\xf6\x06\x1e\x00\x00\x25\x9f\x0f\xf6\x29\x0a\ +\x00\x00\x8f\xde\x0f\xfb\x5f\xae\x00\x00\x96\x36\x69\x00\x00\xc3\ +\xab\x03\x00\x00\x00\x18\x04\x14\x04\x3e\x04\x34\x04\x30\x04\x42\ +\x04\x38\x00\x20\x04\x22\x04\x3e\x04\x47\x04\x3a\x04\x43\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x41\x64\x64\x20\x50\x6f\x69\x6e\ +\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x50\ +\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x50\x00\x41\x00\x64\x00\x64\ +\x00\x73\x00\x20\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\ +\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x6e\x00\x20\ +\x00\x65\x00\x78\x00\x69\x00\x73\x00\x74\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x2f\x00\x62\x00\x73\ +\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x28\x41\x64\x64\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\ +\x20\x74\x6f\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\ +\x77\x69\x72\x65\x2f\x62\x73\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\ +\x0e\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x50\x6f\x69\x6e\x74\x01\ +\x03\x00\x00\x00\x24\x04\x14\x04\x3e\x04\x34\x04\x30\x04\x42\x04\ +\x38\x00\x20\x04\x34\x04\x3e\x00\x20\x04\x33\x04\x40\x04\x43\x04\ +\x3f\x04\x38\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x41\x64\x64\x20\x74\x6f\x20\x67\x72\x6f\x75\x70\x2e\ +\x2e\x2e\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x64\x64\ +\x54\x6f\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x68\x04\x14\x04\ +\x3e\x04\x34\x04\x30\x04\x42\x04\x38\x00\x20\x04\x3e\x04\x31\x04\ +\x40\x04\x30\x04\x3d\x04\x38\x04\x39\x00\x28\x04\x3d\x04\x56\x00\ +\x29\x00\x20\x04\x3e\x04\x31\x20\x19\x04\x54\x04\x3a\x04\x42\x00\ +\x28\x04\x42\x04\x38\x00\x29\x00\x20\x04\x34\x04\x3e\x00\x20\x04\ +\x32\x04\x36\x04\x35\x00\x20\x04\x41\x04\x42\x04\x32\x04\x3e\x04\ +\x40\x04\x35\x04\x3d\x04\x3e\x04\x57\x00\x20\x04\x33\x04\x40\x04\ +\x43\x04\x3f\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x41\ +\x64\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ +\x20\x6f\x62\x6a\x65\x63\x74\x28\x73\x29\x20\x74\x6f\x20\x61\x6e\ +\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x67\x72\x6f\x75\x70\x07\ +\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x54\x6f\x47\ +\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x7a\x04\x17\x04\x30\x04\x41\ +\x04\x42\x04\x3e\x04\x41\x04\x43\x04\x32\x04\x30\x04\x42\x04\x38\ +\x00\x20\x04\x3f\x04\x3e\x04\x42\x04\x3e\x04\x47\x04\x3d\x04\x43\ +\x00\x20\x04\x48\x04\x38\x04\x40\x04\x38\x04\x3d\x04\x43\x00\x20\ +\x04\x3b\x04\x56\x04\x3d\x04\x56\x04\x57\x00\x20\x04\x42\x04\x30\ +\x00\x20\x04\x3a\x04\x3e\x04\x3b\x04\x56\x04\x40\x00\x20\x04\x34\ +\x04\x3e\x00\x20\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3e\ +\x04\x33\x04\x3e\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\ +\x04\x42\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x41\x70\ +\x70\x6c\x69\x65\x73\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\ +\x6e\x65\x20\x77\x69\x64\x74\x68\x20\x61\x6e\x64\x20\x63\x6f\x6c\ +\x6f\x72\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\ +\x5f\x41\x70\x70\x6c\x79\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\ +\x34\x04\x17\x04\x30\x04\x41\x04\x42\x04\x3e\x04\x41\x04\x43\x04\ +\x32\x04\x30\x04\x42\x04\x38\x00\x20\x04\x3f\x04\x3e\x04\x42\x04\ +\x3e\x04\x47\x04\x3d\x04\x38\x04\x39\x00\x20\x04\x41\x04\x42\x04\ +\x38\x04\x3b\x04\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x41\ +\x70\x70\x6c\x79\x20\x43\x75\x72\x72\x65\x6e\x74\x20\x53\x74\x79\ +\x6c\x65\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x70\x70\ +\x6c\x79\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\x08\x04\x14\x04\ +\x43\x04\x33\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\ +\x72\x63\x07\x00\x00\x00\x09\x44\x72\x61\x66\x74\x5f\x41\x72\x63\ +\x01\x03\x00\x00\x00\x88\x04\x21\x04\x42\x04\x32\x04\x3e\x04\x40\ +\x04\x4e\x04\x54\x00\x20\x04\x34\x04\x43\x04\x33\x04\x43\x00\x2e\ +\x00\x20\x04\x12\x04\x38\x04\x3a\x04\x3e\x04\x40\x04\x38\x04\x41\ +\x04\x42\x04\x3e\x04\x32\x04\x43\x04\x39\x04\x42\x04\x35\x00\x20\ +\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x04\x34\x04\x3b\x04\x4f\ +\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x00\x27\x04\x4f\x04\x37\ +\x04\x3a\x04\x38\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\ +\x00\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\x31\ +\x04\x3c\x04\x35\x04\x36\x04\x35\x04\x3d\x04\x3d\x04\x4f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x6e\x20\x61\x72\x63\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\ +\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\ +\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x09\x44\x72\x61\ +\x66\x74\x5f\x41\x72\x63\x01\x03\x00\x00\x00\x0a\x00\x41\x00\x72\ +\x00\x72\x00\x61\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x41\x72\x72\x61\x79\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\ +\x41\x72\x72\x61\x79\x01\x03\x00\x00\x00\x76\x00\x43\x00\x72\x00\ +\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\ +\x70\x00\x6f\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x6f\x00\x72\x00\ +\x20\x00\x72\x00\x65\x00\x63\x00\x74\x00\x61\x00\x6e\x00\x67\x00\ +\x75\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x61\x00\x72\x00\x72\x00\ +\x61\x00\x79\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\ +\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3b\x43\x72\x65\x61\x74\ +\x65\x73\x20\x61\x20\x70\x6f\x6c\x61\x72\x20\x6f\x72\x20\x72\x65\ +\x63\x74\x61\x6e\x67\x75\x6c\x61\x72\x20\x61\x72\x72\x61\x79\x20\ +\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\ +\x5f\x41\x72\x72\x61\x79\x01\x03\x00\x00\x00\x10\x00\x42\x00\x2d\ +\x04\x41\x04\x3f\x04\x3b\x04\x30\x04\x39\x04\x3d\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x08\x42\x2d\x53\x70\x6c\x69\x6e\x65\x07\x00\ +\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x42\x53\x70\x6c\x69\x6e\x65\ +\x01\x03\x00\x00\x00\x86\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\ +\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x6d\x00\x75\x00\x6c\ +\x00\x74\x00\x69\x00\x70\x00\x6c\x00\x65\x00\x2d\x00\x70\x00\x6f\ +\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x62\x00\x2d\x00\x73\x00\x70\ +\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x2e\x00\x20\x00\x43\x00\x54\ +\x00\x52\x00\x4c\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x6e\ +\x00\x61\x00\x70\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\ +\x00\x54\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6e\ +\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x43\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ +\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\x70\x6f\x69\x6e\x74\x20\x62\ +\x2d\x73\x70\x6c\x69\x6e\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\ +\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\ +\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0d\x44\x72\ +\x61\x66\x74\x5f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\ +\x08\x04\x1a\x04\x3e\x04\x3b\x04\x3e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x06\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x0c\x44\x72\ +\x61\x66\x74\x5f\x43\x69\x72\x63\x6c\x65\x01\x03\x00\x00\x00\x74\ +\x04\x21\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x4e\x04\x54\x00\x20\ +\x04\x3a\x04\x3e\x04\x3b\x04\x3e\x00\x2e\x00\x20\x00\x43\x00\x54\ +\x00\x52\x00\x4c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\ +\x04\x40\x04\x38\x04\x32\x20\x19\x04\x4f\x04\x37\x04\x3a\x04\x38\ +\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x2c\x00\x20\x04\x34\ +\x04\x3b\x04\x4f\x00\x20\x04\x32\x04\x38\x04\x31\x04\x3e\x04\x40\ +\x04\x43\x00\x20\x04\x34\x04\x3e\x04\x42\x04\x38\x04\x47\x04\x3d\ +\x04\x3e\x04\x57\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3d\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x20\x63\x69\x72\x63\x6c\x65\x2e\x20\ +\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x41\x4c\ +\x54\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x20\x74\x61\x6e\x67\ +\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0c\ +\x44\x72\x61\x66\x74\x5f\x43\x69\x72\x63\x6c\x65\x01\x03\x00\x00\ +\x00\x0a\x00\x43\x00\x6c\x00\x6f\x00\x6e\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x05\x43\x6c\x6f\x6e\x65\x07\x00\x00\x00\x0b\ +\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\x6e\x65\x01\x03\x00\x00\x00\ +\x3a\x00\x43\x00\x6c\x00\x6f\x00\x6e\x00\x65\x00\x73\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x28\x00\x73\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1d\x43\x6c\x6f\x6e\x65\x73\x20\x74\x68\x65\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x28\ +\x73\x29\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\ +\x6e\x65\x01\x03\x00\x00\x00\x1a\x04\x17\x04\x30\x04\x3a\x04\x40\ +\x04\x38\x04\x42\x04\x38\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\x56\ +\x04\x4e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6c\x6f\x73\ +\x65\x20\x4c\x69\x6e\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\ +\x5f\x43\x6c\x6f\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x3a\ +\x04\x17\x04\x30\x04\x3a\x04\x40\x04\x38\x04\x32\x04\x30\x04\x54\ +\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\x56\x04\x4e\x00\x2c\x00\x20\ +\x04\x49\x04\x3e\x00\x20\x04\x3a\x04\x40\x04\x35\x04\x41\x04\x3b\ +\x04\x38\x04\x42\x04\x4c\x04\x41\x04\x4f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1b\x43\x6c\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x6c\ +\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x07\ +\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\x73\x65\x4c\ +\x69\x6e\x65\x01\x03\x00\x00\x00\x1c\x04\x12\x04\x38\x04\x34\x04\ +\x30\x04\x3b\x04\x38\x04\x42\x04\x38\x00\x20\x04\x22\x04\x3e\x04\ +\x47\x04\x3a\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x52\ +\x65\x6d\x6f\x76\x65\x20\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x0e\ +\x44\x72\x61\x66\x74\x5f\x44\x65\x6c\x50\x6f\x69\x6e\x74\x01\x03\ +\x00\x00\x00\x60\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\ +\x00\x73\x00\x20\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\ +\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\ +\x00\x6e\x00\x20\x00\x65\x00\x78\x00\x69\x00\x73\x00\x74\x00\x69\ +\x00\x6e\x00\x67\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x20\ +\x00\x6f\x00\x72\x00\x20\x00\x62\x00\x73\x00\x70\x00\x6c\x00\x69\ +\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x52\x65\ +\x6d\x6f\x76\x65\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x66\x72\ +\x6f\x6d\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x77\ +\x69\x72\x65\x20\x6f\x72\x20\x62\x73\x70\x6c\x69\x6e\x65\x07\x00\ +\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x44\x65\x6c\x50\x6f\x69\x6e\ +\x74\x01\x03\x00\x00\x00\xaa\x04\x21\x04\x42\x04\x32\x04\x3e\x04\ +\x40\x04\x4e\x04\x54\x00\x20\x04\x40\x04\x3e\x04\x37\x04\x3c\x04\ +\x56\x04\x40\x04\x3d\x04\x56\x04\x41\x04\x42\x04\x4c\x00\x2e\x00\ +\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x04\x34\x04\x3b\x04\ +\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x00\x27\x04\x4f\x04\ +\x37\x04\x3a\x04\x38\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\ +\x46\x00\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\ +\x31\x04\x3c\x04\x35\x04\x36\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\ +\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x04\x34\x04\x3b\x04\ +\x4f\x00\x20\x04\x32\x04\x38\x04\x31\x04\x3e\x04\x40\x04\x43\x00\ +\x20\x04\x41\x04\x35\x04\x33\x04\x3c\x04\x35\x04\x3d\x04\x42\x04\ +\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4e\x43\x72\x65\x61\x74\ +\x65\x73\x20\x61\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x2e\x20\ +\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\ +\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\ +\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x20\ +\x61\x20\x73\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x0f\x44\x72\ +\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x01\x03\x00\ +\x00\x00\x16\x04\x20\x04\x3e\x04\x37\x04\x3c\x04\x56\x04\x40\x04\ +\x3d\x04\x56\x04\x41\x04\x42\x04\x4c\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\ +\x0f\x44\x72\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ +\x01\x03\x00\x00\x00\x10\x04\x1f\x04\x3e\x04\x3d\x04\x38\x04\x37\ +\x04\x38\x04\x42\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x07\x00\x00\x00\x0f\x44\x72\ +\x61\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\x03\x00\ +\x00\x00\x80\x04\x20\x04\x3e\x04\x37\x04\x56\x04\x40\x04\x32\x04\ +\x30\x04\x42\x04\x38\x00\x20\x04\x3e\x04\x31\x04\x40\x04\x30\x04\ +\x3d\x04\x38\x04\x39\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\ +\x3a\x04\x42\x00\x20\x04\x3d\x04\x30\x00\x20\x04\x3f\x04\x40\x04\ +\x3e\x04\x41\x04\x42\x04\x56\x00\x20\x04\x3e\x04\x31\x00\x27\x04\ +\x54\x04\x3a\x04\x42\x04\x38\x00\x2c\x00\x20\x04\x30\x04\x31\x04\ +\x3e\x00\x20\x04\x32\x04\x56\x04\x34\x04\x3d\x04\x4f\x04\x42\x04\ +\x38\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\x35\x04\x40\x04\x45\x04\ +\x3d\x04\x56\x08\x00\x00\x00\x00\x06\x00\x00\x00\x45\x45\x78\x70\ +\x6c\x6f\x64\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\ +\x73\x69\x6d\x70\x6c\x65\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x2c\ +\x20\x6f\x72\x20\x73\x75\x62\x74\x72\x61\x63\x74\x20\x66\x61\x63\ +\x65\x73\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x6f\x77\ +\x6e\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x1e\x00\x44\x00\x72\ +\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x53\ +\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x20\x74\x6f\x20\x53\x6b\x65\ +\x74\x63\x68\x07\x00\x00\x00\x12\x44\x72\x61\x66\x74\x5f\x44\x72\ +\x61\x66\x74\x32\x53\x6b\x65\x74\x63\x68\x01\x03\x00\x00\x00\x0e\ +\x04\x1c\x04\x30\x04\x3b\x04\x4e\x04\x3d\x04\x3e\x04\x3a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x07\x44\x72\x61\x77\x69\x6e\x67\x07\ +\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x44\x72\x61\x77\x69\x6e\ +\x67\x01\x03\x00\x00\x00\x5c\x04\x20\x04\x3e\x04\x37\x04\x3c\x04\ +\x56\x04\x41\x04\x42\x04\x38\x04\x42\x04\x38\x00\x20\x04\x3e\x04\ +\x31\x04\x40\x04\x30\x04\x3d\x04\x56\x00\x20\x04\x3e\x04\x31\x00\ +\x27\x04\x54\x04\x3a\x04\x42\x04\x38\x00\x20\x04\x3d\x04\x30\x00\ +\x20\x04\x30\x04\x40\x04\x3a\x04\x43\x04\x48\x04\x56\x00\x20\x04\ +\x3a\x04\x40\x04\x35\x04\x41\x04\x3b\x04\x35\x04\x3d\x04\x3d\x04\ +\x4f\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x50\x75\x74\ +\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x20\x6f\x6e\x20\x61\x20\x44\x72\x61\x77\ +\x69\x6e\x67\x20\x73\x68\x65\x65\x74\x2e\x07\x00\x00\x00\x0d\x44\ +\x72\x61\x66\x74\x5f\x44\x72\x61\x77\x69\x6e\x67\x01\x03\x00\x00\ +\x00\x0c\x04\x1f\x04\x40\x04\x30\x04\x32\x04\x3a\x04\x30\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\ +\x0a\x44\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\ +\x3a\x04\x20\x04\x35\x04\x34\x04\x30\x04\x33\x04\x43\x04\x32\x04\ +\x30\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x30\x04\x3a\x04\x42\x04\ +\x38\x04\x32\x04\x3d\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\x3e\x04\ +\x31\x00\x27\x04\x54\x04\x3a\x04\x42\x04\x30\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x17\x45\x64\x69\x74\x73\x20\x74\x68\x65\x20\x61\ +\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ +\x0a\x44\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\ +\x1e\x04\x17\x04\x30\x04\x32\x04\x35\x04\x40\x04\x48\x04\x38\x04\ +\x42\x04\x38\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\x56\x04\x4e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x46\x69\x6e\x69\x73\x68\x20\ +\x6c\x69\x6e\x65\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x46\ +\x69\x6e\x69\x73\x68\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x40\x04\ +\x17\x04\x30\x04\x32\x04\x35\x04\x40\x04\x48\x04\x35\x04\x3d\x04\ +\x3d\x04\x4f\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\x56\x04\x57\x00\ +\x20\x04\x31\x04\x35\x04\x37\x00\x20\x04\x57\x04\x57\x00\x20\x04\ +\x37\x04\x30\x04\x3a\x04\x40\x04\x38\x04\x42\x04\x42\x04\x4f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x22\x46\x69\x6e\x69\x73\x68\x65\ +\x73\x20\x61\x20\x6c\x69\x6e\x65\x20\x77\x69\x74\x68\x6f\x75\x74\ +\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\x07\x00\x00\x00\x10\ +\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\x69\x73\x68\x4c\x69\x6e\x65\ +\x01\x03\x00\x00\x00\xa8\x04\x21\x04\x42\x04\x32\x04\x3e\x04\x40\ +\x04\x4e\x04\x54\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\x56\x04\x4e\ +\x00\x20\x00\x20\x04\x3f\x04\x3e\x00\x20\x00\x32\x00\x2d\x04\x3c\ +\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x30\x04\x3c\x00\x2e\ +\x00\x20\x04\x12\x04\x38\x04\x3a\x04\x3e\x04\x40\x04\x38\x04\x41\ +\x04\x42\x04\x3e\x04\x32\x04\x43\x04\x39\x04\x42\x04\x35\x00\x20\ +\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x04\x34\x04\x3b\x04\x4f\ +\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x00\x27\x04\x4f\x04\x37\ +\x04\x3a\x04\x38\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\ +\x00\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\x31\ +\x04\x3c\x04\x35\x04\x36\x04\x35\x04\x3d\x04\x3d\x04\x4f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x38\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x20\x32\x2d\x70\x6f\x69\x6e\x74\x20\x6c\x69\x6e\x65\x2e\x20\ +\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\ +\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\ +\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4c\x69\x6e\x65\x01\ +\x03\x00\x00\x00\x0a\x04\x1b\x04\x56\x04\x3d\x04\x56\x04\x4f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4c\x69\x6e\x65\x07\x00\x00\ +\x00\x0a\x44\x72\x61\x66\x74\x5f\x4c\x69\x6e\x65\x01\x03\x00\x00\ +\x00\x16\x04\x1f\x04\x35\x04\x40\x04\x35\x04\x3c\x04\x56\x04\x49\ +\x04\x35\x04\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x4d\x6f\x76\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\ +\x5f\x4d\x6f\x76\x65\x01\x03\x00\x00\x00\xd6\x04\x1f\x04\x35\x04\ +\x40\x04\x35\x04\x3c\x04\x56\x04\x49\x04\x35\x04\x3d\x04\x3d\x04\ +\x4f\x00\x20\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x38\x04\ +\x45\x00\x20\x04\x3e\x04\x31\x20\x19\x04\x54\x04\x3a\x04\x42\x04\ +\x56\x04\x32\x00\x20\x04\x3c\x04\x56\x04\x36\x00\x20\x04\x34\x04\ +\x32\x04\x3e\x04\x3c\x04\x30\x00\x20\x04\x42\x04\x3e\x04\x47\x04\ +\x3a\x04\x30\x04\x3c\x04\x38\x00\x2e\x00\x20\x00\x43\x00\x54\x00\ +\x52\x00\x4c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\ +\x40\x04\x38\x04\x32\x20\x19\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\ +\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x04\ +\x34\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\x31\x04\x3c\x04\x35\x04\ +\x36\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x2c\x00\x20\x00\x41\x00\ +\x4c\x00\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3a\x04\ +\x3e\x04\x3f\x04\x56\x04\x4e\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\ +\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5a\x4d\x6f\x76\x65\x73\ +\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x32\x20\ +\x70\x6f\x69\x6e\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\ +\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\ +\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\ +\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\ +\x4d\x6f\x76\x65\x01\x03\x00\x00\x00\x10\x04\x17\x04\x3c\x04\x56\ +\x04\x49\x04\x35\x04\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x0c\x44\ +\x72\x61\x66\x74\x5f\x4f\x66\x66\x73\x65\x74\x01\x03\x00\x00\x00\ +\xac\x04\x17\x04\x3c\x04\x56\x04\x49\x04\x35\x04\x3d\x04\x3d\x04\ +\x4f\x00\x20\x04\x30\x04\x3a\x04\x42\x04\x38\x04\x32\x04\x3d\x04\ +\x3e\x04\x33\x04\x3e\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\ +\x3a\x04\x42\x04\x30\x00\x2e\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ +\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x04\ +\x32\x00\x27\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\x2c\x00\x20\x00\ +\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x04\x34\x04\x3b\x04\ +\x4f\x00\x20\x04\x3e\x04\x31\x04\x3c\x04\x35\x04\x36\x04\x35\x04\ +\x3d\x04\x3d\x04\x4f\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\ +\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3a\x04\x3e\x04\x3f\x04\ +\x56\x04\x4e\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x48\x4f\x66\x66\x73\x65\x74\x73\x20\x74\ +\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\ +\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\ +\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\ +\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x4f\x66\x66\x73\x65\x74\ +\x01\x03\x00\x00\x00\x2c\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\ +\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x69\ +\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x6f\x62\x6a\x65\ +\x63\x74\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x50\x6f\x69\ +\x6e\x74\x01\x03\x00\x00\x00\x0a\x04\x22\x04\x3e\x04\x47\x04\x3a\ +\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x50\x6f\x69\x6e\ +\x74\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x50\x6f\x69\x6e\ +\x74\x01\x03\x00\x00\x00\x88\x04\x21\x04\x42\x04\x32\x04\x3e\x04\ +\x40\x04\x4e\x04\x54\x00\x20\x04\x32\x04\x56\x04\x40\x04\x3d\x04\ +\x38\x04\x39\x00\x20\x04\x31\x04\x30\x04\x33\x04\x30\x04\x42\x04\ +\x3e\x04\x3a\x04\x43\x04\x42\x04\x3d\x04\x38\x04\x3a\x00\x2e\x00\ +\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x04\x34\x04\x3b\x04\ +\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x00\x27\x04\x4f\x04\ +\x37\x04\x3a\x04\x38\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\ +\x46\x00\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\ +\x31\x04\x3c\x04\x35\x04\x36\x04\x35\x04\x3d\x04\x3d\x04\x4f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x3b\x43\x72\x65\x61\x74\x65\x73\ +\x20\x61\x20\x72\x65\x67\x75\x6c\x61\x72\x20\x70\x6f\x6c\x79\x67\ +\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\ +\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\ +\x72\x61\x69\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x50\ +\x6f\x6c\x79\x67\x6f\x6e\x01\x03\x00\x00\x00\x18\x04\x11\x04\x30\ +\x04\x33\x04\x30\x04\x42\x04\x3e\x04\x3a\x04\x43\x04\x42\x04\x3d\ +\x04\x38\x04\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x50\x6f\ +\x6c\x79\x67\x6f\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\ +\x50\x6f\x6c\x79\x67\x6f\x6e\x01\x03\x00\x00\x00\x66\x04\x21\x04\ +\x42\x04\x32\x04\x3e\x04\x40\x04\x4e\x04\x54\x00\x20\x04\x3f\x04\ +\x40\x04\x4f\x04\x3c\x04\x3e\x04\x3a\x04\x43\x04\x42\x04\x3d\x04\ +\x38\x04\x3a\x00\x20\x04\x3f\x04\x3e\x00\x20\x00\x32\x00\x20\x04\ +\x42\x04\x3e\x04\x47\x04\x3a\x04\x30\x04\x3c\x00\x2e\x00\x20\x00\ +\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\ +\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x00\x27\x04\x4f\x04\x37\x04\ +\x3a\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\x74\x20\x72\ +\x65\x63\x74\x61\x6e\x67\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\ +\x6f\x20\x73\x6e\x61\x70\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\ +\x5f\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\x16\ +\x04\x1f\x04\x40\x04\x4f\x04\x3c\x04\x3e\x04\x3a\x04\x43\x04\x42\ +\x04\x3d\x04\x38\x04\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x0f\x44\x72\ +\x61\x66\x74\x5f\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\ +\x00\x00\x12\x04\x1e\x04\x31\x04\x35\x04\x40\x04\x42\x04\x30\x04\ +\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\ +\x6f\x74\x61\x74\x65\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\ +\x52\x6f\x74\x61\x74\x65\x01\x03\x00\x00\x00\xba\x04\x1e\x04\x31\ +\x04\x35\x04\x40\x04\x42\x04\x30\x04\x3d\x04\x3d\x04\x4f\x00\x20\ +\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x38\x04\x45\x00\x20\ +\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\x04\x42\x04\x56\x04\x32\ +\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x04\x34\ +\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x00\x27\ +\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\x2c\x00\x20\x00\x53\x00\x48\ +\x00\x49\x00\x46\x00\x54\x00\x2c\x00\x20\x04\x34\x04\x3b\x04\x4f\ +\x00\x20\x04\x3e\x04\x31\x04\x3c\x04\x35\x04\x36\x04\x35\x04\x3d\ +\x04\x3d\x04\x4f\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\ +\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x41\x04\x42\x04\x32\x04\x3e\ +\x04\x40\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x3a\x04\x3e\ +\x04\x3f\x04\x56\x04\x57\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\ +\x52\x6f\x74\x61\x74\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x20\x43\x54\ +\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\ +\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\ +\x41\x4c\x54\x20\x63\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x6f\ +\x70\x79\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\ +\x61\x74\x65\x01\x03\x00\x00\x00\x1a\x04\x1c\x04\x30\x04\x41\x04\ +\x48\x04\x42\x04\x30\x04\x31\x04\x43\x04\x32\x04\x30\x04\x3d\x04\ +\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x53\x63\x61\ +\x6c\x65\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x53\x63\x61\ +\x6c\x65\x01\x03\x00\x00\x00\xce\x04\x1c\x04\x30\x04\x41\x04\x48\ +\x04\x42\x04\x30\x04\x31\x04\x43\x04\x54\x00\x20\x04\x3e\x04\x31\ +\x04\x40\x04\x30\x04\x3d\x04\x56\x00\x20\x04\x3e\x04\x31\x00\x27\ +\x04\x54\x04\x3a\x04\x42\x04\x38\x00\x20\x04\x37\x00\x20\x04\x31\ +\x04\x30\x04\x37\x04\x3e\x04\x32\x04\x3e\x04\x57\x00\x20\x04\x42\ +\x04\x3e\x04\x47\x04\x3a\x04\x38\x00\x2e\x00\x20\x00\x43\x00\x54\ +\x00\x52\x00\x4c\x00\x2c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\ +\x04\x3f\x04\x40\x04\x38\x04\x32\x00\x27\x04\x4f\x04\x37\x04\x3a\ +\x04\x38\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\ +\x00\x2c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\x31\ +\x04\x3c\x04\x35\x04\x36\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x2c\ +\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\ +\x00\x20\x04\x3a\x04\x3e\x04\x3f\x04\x56\x04\x4e\x04\x32\x04\x30\ +\x04\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5c\ +\x53\x63\x61\x6c\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x72\x6f\x6d\ +\x20\x61\x20\x62\x61\x73\x65\x20\x70\x6f\x69\x6e\x74\x2e\x20\x43\ +\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\ +\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\ +\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\ +\x0b\x44\x72\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\x01\x03\x00\x00\ +\x00\x18\x04\x1e\x04\x31\x04\x40\x04\x30\x04\x42\x04\x38\x00\x20\ +\x04\x33\x04\x40\x04\x43\x04\x3f\x04\x43\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x53\x65\x6c\x65\x63\x74\x20\x67\x72\x6f\x75\x70\ +\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\ +\x74\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x6e\x00\x53\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6c\ +\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x73\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x73\x00\x61\x00\x6d\x00\x65\x00\x20\ +\x00\x70\x00\x61\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\ +\x00\x61\x00\x73\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x37\x53\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\ +\x20\x73\x61\x6d\x65\x20\x70\x61\x72\x65\x6e\x74\x73\x20\x61\x73\ +\x20\x74\x68\x69\x73\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x11\ +\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x47\x72\x6f\x75\ +\x70\x01\x03\x00\x00\x00\x5a\x04\x12\x04\x38\x04\x31\x04\x56\x04\ +\x40\x00\x20\x04\x40\x04\x3e\x04\x31\x04\x3e\x04\x47\x04\x3e\x04\ +\x57\x00\x20\x04\x3f\x04\x3b\x04\x3e\x04\x49\x04\x38\x04\x3d\x04\ +\x38\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x41\x04\x42\x04\ +\x32\x04\x3e\x04\x40\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\ +\x33\x04\x35\x04\x3e\x04\x3c\x04\x35\x04\x42\x04\x40\x04\x56\x04\ +\x57\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x53\x65\x6c\x65\x63\ +\x74\x20\x61\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\x6c\x61\x6e\ +\x65\x20\x66\x6f\x72\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\x20\x63\ +\x72\x65\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x11\x44\x72\x61\x66\ +\x74\x5f\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x01\x03\x00\ +\x00\x00\x1a\x04\x12\x04\x38\x04\x31\x04\x56\x04\x40\x00\x20\x04\ +\x3f\x04\x3b\x04\x3e\x04\x49\x04\x38\x04\x3d\x04\x38\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0b\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\ +\x6e\x65\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\ +\x65\x63\x74\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x70\x00\x43\ +\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x20\x00\x62\ +\x00\x69\x00\x64\x00\x69\x00\x72\x00\x65\x00\x63\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x6c\x00\x79\x00\x20\x00\x62\ +\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x61\x00\x6e\x00\x64\ +\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x38\x43\x6f\x6e\x76\x65\x72\x74\x20\ +\x62\x69\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x61\x6c\x6c\x79\x20\ +\x62\x65\x74\x77\x65\x65\x6e\x20\x44\x72\x61\x66\x74\x20\x61\x6e\ +\x64\x20\x53\x6b\x65\x74\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x61\x70\x65\ +\x32\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\x54\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x53\x00\x68\ +\x00\x61\x00\x70\x00\x65\x00\x20\x00\x32\x00\x44\x00\x20\x00\x76\ +\x00\x69\x00\x65\x00\x77\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\ +\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x43\x72\x65\x61\x74\x65\ +\x73\x20\x53\x68\x61\x70\x65\x20\x32\x44\x20\x76\x69\x65\x77\x73\ +\x20\x6f\x66\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\ +\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\x20\ +\x00\x32\x00\x44\x00\x20\x04\x32\x04\x38\x04\x33\x04\x3b\x04\x4f\ +\x04\x34\x00\x20\x04\x44\x04\x56\x04\x33\x04\x43\x04\x40\x04\x38\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x68\x61\x70\x65\x20\ +\x32\x44\x20\x76\x69\x65\x77\x07\x00\x00\x00\x11\x44\x72\x61\x66\ +\x74\x5f\x53\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\x00\ +\x00\x00\x1a\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x53\x00\ +\x6e\x00\x61\x00\x70\x00\x20\x00\x42\x00\x61\x00\x72\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0d\x53\x68\x6f\x77\x20\x53\x6e\x61\x70\ +\x20\x42\x61\x72\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\ +\x68\x6f\x77\x53\x6e\x61\x70\x42\x61\x72\x01\x03\x00\x00\x00\x30\ +\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x73\x00\x20\x00\x44\x00\x72\ +\x00\x61\x00\x66\x00\x74\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\ +\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x53\x68\x6f\x77\x73\x20\ +\x44\x72\x61\x66\x74\x20\x73\x6e\x61\x70\x20\x74\x6f\x6f\x6c\x62\ +\x61\x72\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x6f\ +\x77\x53\x6e\x61\x70\x42\x61\x72\x01\x03\x00\x00\x00\x48\x04\x21\ +\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x4e\x04\x54\x00\x20\x04\x30\ +\x04\x3d\x04\x3e\x04\x42\x04\x30\x04\x46\x04\x56\x04\x4e\x00\x2e\ +\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x04\x34\x04\x3b\ +\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x00\x27\x04\x4f\ +\x04\x37\x04\x3a\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x6e\x6e\x6f\x74\ +\x61\x74\x69\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\ +\x6e\x61\x70\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\ +\x78\x74\x01\x03\x00\x00\x00\x0a\x04\x22\x04\x35\x04\x3a\x04\x41\ +\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\x65\x78\x74\ +\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\x78\x74\x01\ +\x03\x00\x00\x00\x42\x04\x1f\x04\x35\x04\x40\x04\x35\x04\x3a\x04\ +\x3b\x04\x4e\x04\x47\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\ +\x40\x04\x35\x04\x36\x04\x38\x04\x3c\x04\x43\x00\x20\x04\x3a\x04\ +\x3e\x04\x3d\x04\x41\x04\x42\x04\x40\x04\x43\x04\x4e\x04\x32\x04\ +\x30\x04\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x17\x54\x6f\x67\x67\x6c\x65\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\ +\x69\x6f\x6e\x20\x4d\x6f\x64\x65\x07\x00\x00\x00\x1c\x44\x72\x61\ +\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x73\x74\x72\x75\ +\x63\x74\x69\x6f\x6e\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x6a\x04\ +\x1f\x04\x35\x04\x40\x04\x35\x04\x45\x04\x56\x04\x34\x00\x20\x04\ +\x32\x00\x20\x04\x40\x04\x35\x04\x36\x04\x38\x04\x3c\x00\x20\x04\ +\x3a\x04\x3e\x04\x3d\x04\x41\x04\x42\x04\x40\x04\x43\x04\x4e\x04\ +\x32\x04\x30\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x34\x04\x3b\x04\ +\x4f\x00\x20\x04\x3d\x04\x30\x04\x41\x04\x42\x04\x43\x04\x3f\x04\ +\x3d\x04\x38\x04\x45\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\ +\x3a\x04\x42\x04\x56\x04\x32\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2f\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\x65\x20\x43\ +\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x65\ +\x20\x66\x6f\x72\x20\x6e\x65\x78\x74\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x2e\x07\x00\x00\x00\x1c\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\ +\x67\x6c\x65\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x4d\ +\x6f\x64\x65\x01\x03\x00\x00\x00\x3c\x04\x1f\x04\x35\x04\x40\x04\ +\x35\x04\x3c\x04\x38\x04\x3a\x04\x30\x04\x3d\x04\x3d\x04\x4f\x00\ +\x20\x04\x40\x04\x35\x04\x36\x04\x38\x04\x3c\x04\x43\x00\x20\x04\ +\x3f\x04\x40\x04\x3e\x04\x34\x04\x3e\x04\x32\x04\x36\x04\x35\x04\ +\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\ +\x6f\x67\x67\x6c\x65\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x20\x4d\ +\x6f\x64\x65\x07\x00\x00\x00\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\ +\x67\x67\x6c\x65\x43\x6f\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\ +\x01\x03\x00\x00\x00\x58\x00\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\ +\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x43\ +\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x65\x00\x20\ +\x00\x4d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\ +\x00\x20\x00\x6e\x00\x65\x00\x78\x00\x74\x00\x20\x00\x63\x00\x6f\ +\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x73\x00\x2e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x2c\x54\x6f\x67\x67\x6c\x65\x73\x20\ +\x74\x68\x65\x20\x43\x6f\x6e\x74\x69\x6e\x75\x65\x20\x4d\x6f\x64\ +\x65\x20\x66\x6f\x72\x20\x6e\x65\x78\x74\x20\x63\x6f\x6d\x6d\x61\ +\x6e\x64\x73\x2e\x07\x00\x00\x00\x18\x44\x72\x61\x66\x74\x5f\x54\ +\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\ +\x65\x01\x03\x00\x00\x00\x8c\x00\x53\x00\x77\x00\x61\x00\x70\x00\ +\x73\x00\x20\x00\x64\x00\x69\x00\x73\x00\x70\x00\x6c\x00\x61\x00\ +\x79\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x73\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\x00\ +\x65\x00\x6e\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x66\x00\ +\x72\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x64\x00\ +\x20\x00\x66\x00\x6c\x00\x61\x00\x74\x00\x6c\x00\x69\x00\x6e\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x46\x53\x77\x61\ +\x70\x73\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x6d\x6f\x64\x65\x20\ +\x6f\x66\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x77\x69\x72\x65\ +\x66\x72\x61\x6d\x65\x20\x61\x6e\x64\x20\x66\x6c\x61\x74\x6c\x69\ +\x6e\x65\x73\x07\x00\x00\x00\x17\x44\x72\x61\x66\x74\x5f\x54\x6f\ +\x67\x67\x6c\x65\x44\x69\x73\x70\x6c\x61\x79\x4d\x6f\x64\x65\x01\ +\x03\x00\x00\x00\x3c\x04\x1f\x04\x35\x04\x40\x04\x35\x04\x3a\x04\ +\x3b\x04\x4e\x04\x47\x04\x38\x04\x42\x04\x38\x00\x20\x04\x40\x04\ +\x35\x04\x36\x04\x38\x04\x3c\x00\x20\x04\x32\x04\x56\x04\x34\x04\ +\x3e\x04\x31\x04\x40\x04\x30\x04\x36\x04\x35\x04\x3d\x04\x3d\x04\ +\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x54\x6f\x67\x67\x6c\ +\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x6d\x6f\x64\x65\x07\x00\ +\x00\x00\x17\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x44\ +\x69\x73\x70\x6c\x61\x79\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x16\ +\x00\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x47\ +\x00\x72\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ +\x54\x6f\x67\x67\x6c\x65\x20\x47\x72\x69\x64\x07\x00\x00\x00\x10\ +\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x47\x72\x69\x64\ +\x01\x03\x00\x00\x00\x38\x00\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\ +\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x67\x00\x69\x00\x64\ +\x00\x20\x00\x6f\x00\x6e\x00\x2f\x00\x6f\x00\x66\x00\x66\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1c\x54\x6f\x67\x67\x6c\x65\x73\x20\ +\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x67\x69\x64\x20\x6f\x6e\ +\x2f\x6f\x66\x66\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x54\ +\x6f\x67\x67\x6c\x65\x47\x72\x69\x64\x01\x03\x00\x00\x00\x16\x00\ +\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x73\x00\ +\x6e\x00\x61\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x54\ +\x6f\x67\x67\x6c\x65\x20\x73\x6e\x61\x70\x07\x00\x00\x00\x10\x44\ +\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x53\x6e\x61\x70\x01\ +\x03\x00\x00\x00\x38\x00\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\ +\x65\x00\x73\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\ +\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6f\x00\x6e\x00\ +\x20\x00\x6f\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x66\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1c\x54\x6f\x67\x67\x6c\x65\x73\x20\x44\ +\x72\x61\x66\x74\x20\x73\x6e\x61\x70\x20\x6f\x6e\x20\x6f\x72\x20\ +\x6f\x66\x66\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x54\x6f\ +\x67\x67\x6c\x65\x53\x6e\x61\x70\x01\x03\x00\x00\x00\x0c\x00\x54\ +\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x78\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x54\x72\x69\x6d\x65\x78\x07\x00\x00\x00\x0c\x44\ +\x72\x61\x66\x74\x5f\x54\x72\x69\x6d\x65\x78\x01\x03\x00\x00\x01\ +\x12\x00\x54\x00\x72\x00\x69\x00\x6d\x00\x73\x00\x20\x00\x6f\x00\ +\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\x65\x00\x6e\x00\x64\x00\ +\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\x00\x6f\x00\ +\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\x72\x00\x75\x00\x64\x00\ +\x65\x00\x73\x00\x20\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x6c\x00\ +\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x2e\x00\ +\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x73\x00\x6e\x00\ +\x61\x00\x70\x00\x73\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\ +\x46\x00\x54\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\ +\x72\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\x74\x00\ +\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x20\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x6e\x00\ +\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x2c\x00\x20\x00\x41\x00\ +\x4c\x00\x54\x00\x20\x00\x69\x00\x6e\x00\x76\x00\x65\x00\x72\x00\ +\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x89\x54\x72\x69\ +\x6d\x73\x20\x6f\x72\x20\x65\x78\x74\x65\x6e\x64\x73\x20\x74\x68\ +\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x2c\x20\x6f\x72\x20\x65\x78\x74\x72\x75\x64\x65\x73\x20\x73\ +\x69\x6e\x67\x6c\x65\x20\x66\x61\x63\x65\x73\x2e\x20\x43\x54\x52\ +\x4c\x20\x73\x6e\x61\x70\x73\x2c\x20\x53\x48\x49\x46\x54\x20\x63\ +\x6f\x6e\x73\x74\x72\x61\x69\x6e\x73\x20\x74\x6f\x20\x63\x75\x72\ +\x72\x65\x6e\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\x72\x20\ +\x74\x6f\x20\x6e\x6f\x72\x6d\x61\x6c\x2c\x20\x41\x4c\x54\x20\x69\ +\x6e\x76\x65\x72\x74\x73\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\ +\x5f\x54\x72\x69\x6d\x65\x78\x01\x03\x00\x00\x00\x34\x04\x21\x04\ +\x3a\x04\x30\x04\x41\x04\x43\x04\x32\x04\x30\x04\x42\x04\x38\x00\ +\x20\x04\x3e\x04\x41\x04\x42\x04\x30\x04\x3d\x04\x3d\x04\x56\x04\ +\x39\x00\x20\x04\x41\x04\x35\x04\x33\x04\x3c\x04\x35\x04\x3d\x04\ +\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x55\x6e\x64\x6f\x20\ +\x6c\x61\x73\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\ +\x0e\x44\x72\x61\x66\x74\x5f\x55\x6e\x64\x6f\x4c\x69\x6e\x65\x01\ +\x03\x00\x00\x00\x56\x04\x21\x04\x3a\x04\x30\x04\x41\x04\x3e\x04\ +\x32\x04\x43\x04\x54\x00\x20\x04\x3e\x04\x41\x04\x42\x04\x30\x04\ +\x3d\x04\x3d\x04\x56\x04\x39\x00\x20\x04\x3d\x04\x30\x04\x3a\x04\ +\x40\x04\x35\x04\x41\x04\x3b\x04\x35\x04\x3d\x04\x38\x04\x39\x00\ +\x20\x04\x41\x04\x35\x04\x33\x04\x3c\x04\x35\x04\x3d\x04\x42\x00\ +\x20\x04\x3b\x04\x56\x04\x3d\x04\x56\x04\x57\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x35\x55\x6e\x64\x6f\x65\x73\x20\x74\x68\x65\x20\ +\x6c\x61\x73\x74\x20\x64\x72\x61\x77\x6e\x20\x73\x65\x67\x6d\x65\ +\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x6c\x69\x6e\x65\x20\x62\ +\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x07\x00\x00\x00\x0e\x44\ +\x72\x61\x66\x74\x5f\x55\x6e\x64\x6f\x4c\x69\x6e\x65\x01\x03\x00\ +\x00\x00\xe0\x04\x1e\x04\x31\x00\x27\x04\x54\x04\x34\x04\x3d\x04\ +\x30\x04\x42\x04\x38\x00\x20\x04\x3e\x04\x31\x04\x40\x04\x30\x04\ +\x3d\x04\x56\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\x04\ +\x42\x04\x38\x00\x20\x04\x32\x00\x20\x04\x3e\x04\x34\x04\x38\x04\ +\x3d\x00\x2c\x00\x20\x04\x30\x04\x31\x04\x3e\x00\x20\x04\x3f\x04\ +\x35\x04\x40\x04\x35\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x38\x04\ +\x42\x04\x38\x00\x20\x04\x37\x04\x30\x04\x3c\x04\x3a\x04\x3d\x04\ +\x35\x04\x3d\x04\x56\x00\x20\x04\x3d\x04\x30\x04\x3f\x04\x40\x04\ +\x4f\x04\x3c\x04\x3d\x04\x56\x00\x20\x04\x32\x00\x20\x04\x37\x04\ +\x30\x04\x3a\x04\x40\x04\x43\x04\x33\x04\x3b\x04\x35\x04\x3d\x04\ +\x56\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\x35\x04\x40\x04\x45\x04\ +\x3d\x04\x56\x00\x2c\x00\x20\x04\x30\x04\x31\x04\x3e\x00\x20\x04\ +\x3e\x04\x31\x00\x27\x04\x54\x04\x34\x04\x3d\x04\x30\x04\x42\x04\ +\x38\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\x35\x04\x40\x04\x45\x04\ +\x3d\x04\x56\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x4a\x6f\x69\ +\x6e\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\x6f\x6e\x65\ +\x2c\x20\x6f\x72\x20\x63\x6f\x6e\x76\x65\x72\x74\x73\x20\x63\x6c\ +\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x73\x20\x74\x6f\x20\x66\x69\ +\x6c\x6c\x65\x64\x20\x66\x61\x63\x65\x73\x2c\x20\x6f\x72\x20\x75\ +\x6e\x69\x74\x65\x20\x66\x61\x63\x65\x73\x07\x00\x00\x00\x0d\x44\ +\x72\x61\x66\x74\x5f\x55\x70\x67\x72\x61\x64\x65\x01\x03\x00\x00\ +\x00\x12\x04\x1e\x04\x3d\x04\x3e\x04\x32\x04\x3b\x04\x35\x04\x3d\ +\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x55\x70\ +\x67\x72\x61\x64\x65\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\ +\x55\x70\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x98\x00\x43\x00\ +\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\ +\x20\x00\x6d\x00\x75\x00\x6c\x00\x74\x00\x69\x00\x70\x00\x6c\x00\ +\x65\x00\x2d\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\ +\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x57\x00\x69\x00\x72\x00\ +\x65\x00\x20\x00\x28\x00\x44\x00\x57\x00\x69\x00\x72\x00\x65\x00\ +\x29\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\ +\x74\x00\x6f\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x2c\x00\ +\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x74\x00\ +\x6f\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\ +\x61\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4c\x43\ +\x72\x65\x61\x74\x65\x73\x20\x61\x20\x6d\x75\x6c\x74\x69\x70\x6c\ +\x65\x2d\x70\x6f\x69\x6e\x74\x20\x44\x72\x61\x66\x74\x57\x69\x72\ +\x65\x20\x28\x44\x57\x69\x72\x65\x29\x2e\x20\x43\x54\x52\x4c\x20\ +\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\ +\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\ +\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x01\x03\x00\x00\x00\x0a\ +\x00\x44\x00\x57\x00\x69\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x44\x57\x69\x72\x65\x07\x00\x00\x00\x0a\x44\x72\ +\x61\x66\x74\x5f\x57\x69\x72\x65\x01\x03\x00\x00\x00\x42\x00\x43\ +\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x73\x00\x20\ +\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\ +\x00\x57\x00\x69\x00\x72\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x64\ +\x00\x20\x00\x42\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x43\x6f\x6e\x76\x65\x72\ +\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x57\x69\x72\x65\x20\ +\x61\x6e\x64\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x13\ +\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x54\x6f\x42\x53\x70\x6c\ +\x69\x6e\x65\x01\x03\x00\x00\x00\x1e\x00\x57\x00\x69\x00\x72\x00\ +\x65\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x42\x00\x53\x00\x70\x00\ +\x6c\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0f\x57\x69\x72\x65\x20\x74\x6f\x20\x42\x53\x70\x6c\x69\x6e\x65\ +\x07\x00\x00\x00\x13\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x54\ +\x6f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x0e\x00\x41\ +\x00\x6c\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x07\x41\x6c\x74\x20\x6d\x6f\x64\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x3e\x00\x41\x00\x6c\x00\x74\x00\x65\x00\x72\x00\ +\x6e\x00\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\x56\x00\x47\x00\ +\x20\x00\x50\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x6e\x00\ +\x73\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x41\x6c\x74\ +\x65\x72\x6e\x61\x74\x65\x20\x53\x56\x47\x20\x50\x61\x74\x74\x65\ +\x72\x6e\x73\x20\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x16\x00\x41\x00\x6c\x00\x77\x00\x61\x00\x79\x00\x73\ +\x00\x20\x00\x73\x00\x68\x00\x6f\x00\x77\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0b\x41\x6c\x77\x61\x79\x73\x20\x73\x68\x6f\x77\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x88\x04\x17\x04\x30\x04\x32\x04\x36\x04\ +\x34\x04\x38\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x00\x27\x04\ +\x4f\x04\x37\x04\x43\x04\x32\x04\x30\x04\x42\x04\x38\x04\x41\x04\ +\x4f\x00\x20\x04\x34\x04\x3e\x00\x20\x04\x3e\x04\x31\x00\x27\x04\ +\x54\x04\x3a\x04\x42\x04\x56\x04\x32\x00\x20\x00\x28\x04\x32\x04\ +\x38\x04\x3c\x04\x3a\x04\x3d\x04\x43\x04\x42\x04\x38\x00\x20\x04\ +\x3a\x04\x3d\x04\x3e\x04\x3f\x04\x3a\x04\x43\x00\x20\x04\x3c\x04\ +\x3e\x04\x34\x04\x43\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\ +\x38\x04\x32\x00\x27\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x41\x6c\x77\x61\x79\x73\x20\ +\x73\x6e\x61\x70\x20\x74\x6f\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x28\x64\x69\x73\x61\x62\x6c\x65\x20\x73\x6e\x61\x70\x20\x6d\x6f\ +\x64\x20\x6b\x65\x79\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x41\ +\x00\x72\x00\x69\x00\x61\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x41\x72\x69\x61\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x04\ +\x17\x04\x32\x04\x3e\x04\x40\x04\x3e\x04\x42\x04\x3d\x04\x56\x04\ +\x39\x00\x20\x04\x41\x04\x3b\x04\x35\x04\x48\x00\x20\x00\x35\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\ +\x73\x68\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x04\x17\x04\x32\ +\x04\x3e\x04\x40\x04\x3e\x04\x42\x04\x3d\x04\x56\x04\x39\x00\x20\ +\x04\x41\x04\x3b\x04\x35\x04\x48\x00\x20\x00\x37\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\ +\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x20\x04\x17\x04\x32\x04\x3e\x04\ +\x40\x04\x3e\x04\x42\x04\x3d\x04\x56\x04\x39\x00\x20\x04\x41\x04\ +\x3b\x04\x35\x04\x48\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x39\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x7e\x00\x43\x00\x68\x00\x65\x00\x63\x00\x6b\ +\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x66\ +\x00\x20\x00\x79\x00\x6f\x00\x75\x00\x20\x00\x77\x00\x61\x00\x6e\ +\x00\x74\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\x00\x72\ +\x00\x65\x00\x61\x00\x73\x00\x20\x00\x28\x00\x33\x00\x44\x00\x20\ +\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x29\x00\x20\x00\x74\ +\x00\x6f\x00\x20\x00\x62\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\ +\x00\x6f\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3f\x43\x68\ +\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x79\x6f\x75\x20\ +\x77\x61\x6e\x74\x20\x74\x68\x65\x20\x61\x72\x65\x61\x73\x20\x28\ +\x33\x44\x20\x66\x61\x63\x65\x73\x29\x20\x74\x6f\x20\x62\x65\x20\ +\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\x2e\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\xa6\x00\x43\x00\x68\x00\x65\x00\x63\x00\x6b\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x66\x00\ +\x20\x00\x79\x00\x6f\x00\x75\x00\x20\x00\x77\x00\x61\x00\x6e\x00\ +\x74\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\ +\x6e\x00\x2d\x00\x6e\x00\x61\x00\x6d\x00\x65\x00\x64\x00\x20\x00\ +\x62\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x73\x00\x20\x00\x28\x00\ +\x62\x00\x65\x00\x67\x00\x69\x00\x6e\x00\x6e\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x61\x00\ +\x20\x00\x2a\x00\x29\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\ +\x65\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x6f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x53\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\ +\x69\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x68\x65\x20\ +\x6e\x6f\x6e\x2d\x6e\x61\x6d\x65\x64\x20\x62\x6c\x6f\x63\x6b\x73\ +\x20\x28\x62\x65\x67\x69\x6e\x6e\x69\x6e\x67\x20\x77\x69\x74\x68\ +\x20\x61\x20\x2a\x29\x20\x74\x6f\x20\x62\x65\x20\x69\x6d\x70\x6f\ +\x72\x74\x65\x64\x20\x74\x6f\x6f\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\ +\x04\x1a\x04\x3e\x04\x3b\x04\x3e\x00\x20\x00\x35\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x35\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0c\x04\x1a\x04\x3e\x04\x3b\x04\x3e\x00\x20\ +\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x69\x72\x63\ +\x6c\x65\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x04\x1a\x04\x3e\ +\x04\x3b\x04\x3e\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x39\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x48\x04\x17\x04\x56\x04\x41\x04\x42\x04\x30\x04\x32\x04\x3b\ +\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x3a\x04\x3e\x04\x3b\ +\x04\x4c\x04\x3e\x04\x40\x04\x43\x00\x20\x04\x37\x00\x20\x04\x42\ +\x04\x3e\x04\x32\x04\x49\x04\x38\x04\x3d\x04\x3e\x04\x4e\x00\x20\ +\x04\x3b\x04\x56\x04\x3d\x04\x56\x04\x57\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x19\x43\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x65\x64\ +\x20\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x34\x04\x24\x04\x30\x04\x39\x04\x3b\x00\x20\x04\ +\x41\x04\x3f\x04\x56\x04\x32\x04\x41\x04\x42\x04\x30\x04\x32\x04\ +\x3b\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x3a\x04\x3e\x04\ +\x3b\x04\x4c\x04\x3e\x04\x40\x04\x43\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x12\x43\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\ +\x20\x66\x69\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x43\x00\ +\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\ +\x20\x00\x6d\x00\x6f\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0d\x43\x6f\x6e\x73\x74\x72\x61\x69\x6e\x20\x6d\x6f\x64\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x16\x04\x1a\x04\x3e\x04\x3d\x04\x41\x04\x42\ +\x04\x40\x04\x43\x04\x3a\x04\x46\x04\x56\x04\x4f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\ +\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x04\x1a\x04\x3e\x04\x3b\ +\x04\x56\x04\x40\x00\x20\x04\x3a\x04\x3e\x04\x3d\x04\x41\x04\x42\ +\x04\x40\x04\x43\x04\x3a\x04\x46\x04\x56\x04\x57\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x12\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\ +\x6f\x6e\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\ +\x00\x43\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x67\x00\x72\x00\x6f\ +\x00\x75\x00\x70\x00\x20\x00\x6e\x00\x61\x00\x6d\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x17\x43\x6f\x6e\x73\x74\x72\x75\x63\ +\x74\x69\x6f\x6e\x20\x67\x72\x6f\x75\x70\x20\x6e\x61\x6d\x65\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x1e\x00\x43\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\x00\x63\x00\ +\x68\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x43\ +\x72\x65\x61\x74\x65\x20\x53\x6b\x65\x74\x63\x68\x65\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x3a\x04\x21\x04\x42\x04\x32\x04\x3e\x04\x40\ +\x04\x38\x04\x42\x04\x38\x00\x20\x04\x3f\x04\x30\x04\x40\x04\x30\ +\x04\x3c\x04\x35\x04\x42\x04\x40\x04\x38\x04\x47\x04\x3d\x04\x38\ +\x04\x39\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\x04\x42\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x43\x72\x65\x61\x74\x65\ +\x20\x70\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x04\x1f\x04\x30\x04\ +\x40\x04\x30\x04\x3c\x04\x35\x04\x42\x04\x40\x04\x38\x00\x20\x00\ +\x44\x00\x58\x00\x46\x00\x20\x04\x44\x04\x3e\x04\x40\x04\x3c\x04\ +\x30\x04\x42\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x44\ +\x58\x46\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\x6f\x6e\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x22\x04\x21\x04\x42\x04\x30\x04\ +\x3d\x04\x34\x04\x30\x04\x40\x04\x42\x04\x3d\x04\x38\x04\x39\x00\ +\x20\x04\x3a\x04\x3e\x04\x3b\x04\x56\x04\x40\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0d\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ +\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x50\x04\x21\x04\x42\x04\x30\ +\x04\x3d\x04\x34\x04\x30\x04\x40\x04\x42\x04\x3d\x04\x30\x00\x20\ +\x04\x32\x04\x38\x04\x41\x04\x3e\x04\x42\x04\x30\x00\x20\x04\x34\ +\x04\x3b\x04\x4f\x00\x20\x04\x42\x04\x35\x04\x3a\x04\x41\x04\x42\ +\x04\x43\x00\x20\x04\x42\x04\x30\x00\x20\x04\x40\x04\x3e\x04\x37\ +\x04\x3c\x04\x56\x04\x40\x04\x56\x04\x32\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x27\x44\x65\x66\x61\x75\x6c\x74\x20\x68\x65\x69\x67\ +\x68\x74\x20\x66\x6f\x72\x20\x74\x65\x78\x74\x73\x20\x61\x6e\x64\ +\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x30\x04\x21\x04\x42\x04\x30\x04\x3d\x04\x34\x04\x30\x04\ +\x40\x04\x42\x04\x3d\x04\x30\x00\x20\x04\x42\x04\x3e\x04\x32\x04\ +\x49\x04\x38\x04\x3d\x04\x30\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\ +\x56\x04\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\x65\x66\ +\x61\x75\x6c\x74\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x32\x04\x21\x04\x42\x04\x30\x04\x3d\x04\x34\ +\x04\x30\x04\x40\x04\x42\x04\x3d\x04\x38\x04\x39\x00\x20\x04\x48\ +\x04\x30\x04\x31\x04\x3b\x04\x3e\x04\x3d\x00\x20\x04\x30\x04\x40\ +\x04\x3a\x04\x43\x04\x48\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x16\x44\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x6d\x70\x6c\x61\ +\x74\x65\x20\x73\x68\x65\x65\x74\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\ +\x04\x21\x04\x42\x04\x30\x04\x3d\x04\x34\x04\x30\x04\x40\x04\x42\ +\x04\x3d\x04\x38\x04\x39\x00\x20\x04\x48\x04\x40\x04\x38\x04\x44\ +\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\x65\x66\x61\ +\x75\x6c\x74\x20\x74\x65\x78\x74\x20\x66\x6f\x6e\x74\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x30\x04\x21\x04\x42\x04\x30\x04\x3d\x04\x34\x04\ +\x30\x04\x40\x04\x42\x04\x3d\x04\x30\x00\x20\x04\x32\x04\x38\x04\ +\x41\x04\x3e\x04\x42\x04\x30\x00\x20\x04\x42\x04\x35\x04\x3a\x04\ +\x41\x04\x42\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x44\ +\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x78\x74\x20\x68\x65\x69\x67\ +\x68\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x04\x21\x04\x42\x04\x30\ +\x04\x3d\x04\x34\x04\x30\x04\x40\x04\x42\x04\x3d\x04\x30\x00\x20\ +\x04\x40\x04\x3e\x04\x31\x04\x3e\x04\x47\x04\x30\x00\x20\x04\x3f\ +\x04\x3b\x04\x3e\x04\x49\x04\x38\x04\x3d\x04\x30\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x15\x44\x65\x66\x61\x75\x6c\x74\x20\x77\x6f\ +\x72\x6b\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x32\x04\x21\x04\x42\x04\x38\x04\x3b\x04\x4c\x00\x20\x04\ +\x20\x04\x3e\x04\x37\x04\x3c\x04\x56\x04\x40\x04\x56\x04\x32\x00\ +\x20\x04\x42\x04\x30\x00\x20\x04\x21\x04\x42\x04\x40\x04\x56\x04\ +\x3b\x04\x3e\x04\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x44\ +\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x26\x20\x4c\x65\x61\x64\ +\x65\x72\x20\x61\x72\x72\x6f\x77\x20\x73\x74\x79\x6c\x65\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x30\x04\x20\x04\x56\x04\x32\x04\x35\x04\x3d\ +\x04\x4c\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3d\x04\x3e\x04\x41\ +\x04\x42\x04\x56\x00\x20\x04\x40\x04\x3e\x04\x37\x04\x3c\x04\x56\ +\x04\x40\x04\x56\x04\x32\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\ +\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x70\x72\x65\x63\x69\ +\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x10\x04\x1a\x04\x40\x04\x30\x04\x3f\x04\x3a\x04\x30\x00\x20\ +\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\ +\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x10\x04\x1a\x04\x40\x04\x30\x04\ +\x3f\x04\x3a\x04\x30\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x05\x44\x6f\x74\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\ +\x04\x1a\x04\x40\x04\x30\x04\x3f\x04\x3a\x04\x30\x00\x20\x00\x39\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\x39\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x28\x00\x44\x00\x72\x00\x61\x00\x66\x00\ +\x74\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x66\x00\ +\x61\x00\x63\x00\x65\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x14\x44\x72\x61\x66\x74\x20\x69\ +\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x6d\x6f\x64\x65\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x5a\x04\x15\x04\x3a\x04\x41\x04\x3f\x04\x3e\x04\ +\x40\x04\x42\x04\x43\x04\x32\x04\x30\x04\x42\x04\x38\x00\x20\x00\ +\x33\x00\x44\x00\x2d\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\x04\ +\x42\x04\x38\x00\x20\x04\x4f\x04\x3a\x00\x20\x04\x31\x04\x30\x04\ +\x33\x04\x30\x04\x42\x04\x3e\x04\x33\x04\x40\x04\x30\x04\x3d\x04\ +\x3d\x04\x56\x00\x20\x04\x41\x04\x56\x04\x42\x04\x3a\x04\x38\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x24\x45\x78\x70\x6f\x72\x74\x20\ +\x33\x44\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x73\x20\x70\x6f\ +\x6c\x79\x66\x61\x63\x65\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x18\x00\x45\x00\x78\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x00\x20\x00\x53\x00\x74\x00\x79\x00\x6c\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0c\x45\x78\x70\x6f\x72\x74\x20\x53\x74\ +\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x04\x17\x04\x30\x04\ +\x3f\x04\x3e\x04\x32\x04\x3d\x04\x4f\x04\x42\x04\x38\x00\x20\x04\ +\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\x04\x42\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x17\x46\x69\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x62\x79\x20\x64\x65\x66\x61\x75\x6c\x74\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x3e\x04\x17\x04\x30\x04\x33\x04\x30\x04\x3b\x04\x4c\ +\x04\x3d\x04\x56\x00\x20\x04\x3d\x04\x30\x04\x3b\x04\x30\x04\x48\ +\x04\x42\x04\x43\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4f\x00\x20\ +\x04\x3a\x04\x40\x04\x35\x04\x41\x04\x3b\x04\x35\x04\x3d\x04\x3d\ +\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x47\x65\x6e\x65\ +\x72\x61\x6c\x20\x44\x72\x61\x66\x74\x20\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x04\x17\x04\x30\x04\x33\ +\x04\x30\x04\x3b\x04\x4c\x04\x3d\x04\x56\x00\x20\x04\x3f\x04\x30\ +\x04\x40\x04\x30\x04\x3c\x04\x35\x04\x42\x04\x40\x04\x38\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\ +\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\ +\x04\x20\x04\x35\x04\x36\x04\x38\x04\x3c\x00\x20\x04\x33\x04\x3b\ +\x04\x3e\x04\x31\x04\x30\x04\x3b\x04\x4c\x04\x3d\x04\x3e\x04\x33\ +\x04\x3e\x00\x20\x04\x3a\x04\x3e\x04\x3f\x04\x56\x04\x4e\x04\x32\ +\x04\x30\x04\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x10\x47\x6c\x6f\x62\x61\x6c\x20\x63\x6f\x70\x79\x20\x6d\x6f\ +\x64\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x04\x20\x04\x3e\x04\x37\ +\x04\x3c\x04\x56\x04\x40\x00\x20\x04\x41\x04\x56\x04\x42\x04\x3a\ +\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x47\x72\x69\x64\ +\x20\x73\x70\x61\x63\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\ +\x04\x13\x04\x40\x04\x43\x04\x3f\x04\x43\x04\x32\x04\x30\x04\x42\ +\x04\x38\x00\x20\x04\x48\x04\x30\x04\x40\x04\x38\x00\x20\x04\x43\ +\x00\x20\x04\x31\x04\x3b\x04\x3e\x04\x3a\x04\x38\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x18\x47\x72\x6f\x75\x70\x20\x6c\x61\x79\x65\ +\x72\x73\x20\x69\x6e\x74\x6f\x20\x62\x6c\x6f\x63\x6b\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x01\x1a\x00\x48\x00\x65\x00\x72\x00\x65\x00\x20\ +\x00\x79\x00\x6f\x00\x75\x00\x20\x00\x63\x00\x61\x00\x6e\x00\x20\ +\x00\x73\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x79\x00\x20\ +\x00\x61\x00\x20\x00\x64\x00\x69\x00\x72\x00\x65\x00\x63\x00\x74\ +\x00\x6f\x00\x72\x00\x79\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\ +\x00\x61\x00\x69\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x53\ +\x00\x56\x00\x47\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x73\ +\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\ +\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x3c\x00\x70\x00\x61\x00\x74\ +\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x3e\x00\x20\x00\x64\x00\x65\ +\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x00\x73\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x63\ +\x00\x61\x00\x6e\x00\x20\x00\x62\x00\x65\x00\x20\x00\x61\x00\x64\ +\x00\x64\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\ +\x00\x61\x00\x72\x00\x64\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\ +\x00\x74\x00\x20\x00\x68\x00\x61\x00\x74\x00\x63\x00\x68\x00\x20\ +\x00\x70\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x8d\x48\x65\x72\x65\x20\x79\ +\x6f\x75\x20\x63\x61\x6e\x20\x73\x70\x65\x63\x69\x66\x79\x20\x61\ +\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x63\x6f\x6e\x74\x61\ +\x69\x6e\x69\x6e\x67\x20\x53\x56\x47\x20\x66\x69\x6c\x65\x73\x20\ +\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x3c\x70\x61\x74\x74\ +\x65\x72\x6e\x3e\x20\x64\x65\x66\x69\x6e\x69\x74\x69\x6f\x6e\x73\ +\x20\x74\x68\x61\x74\x20\x63\x61\x6e\x20\x62\x65\x20\x61\x64\x64\ +\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x20\x73\x74\x61\x6e\x64\x61\ +\x72\x64\x20\x44\x72\x61\x66\x74\x20\x68\x61\x74\x63\x68\x20\x70\ +\x61\x74\x74\x65\x72\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\ +\x48\x00\x69\x00\x64\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\ +\x66\x00\x74\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\ +\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x00\x20\x00\ +\x61\x00\x66\x00\x74\x00\x65\x00\x72\x00\x20\x00\x75\x00\x73\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x48\x69\x64\x65\x20\ +\x44\x72\x61\x66\x74\x20\x73\x6e\x61\x70\x20\x74\x6f\x6f\x6c\x62\ +\x61\x72\x20\x61\x66\x74\x65\x72\x20\x75\x73\x65\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x28\x00\x48\x00\x69\x00\x64\x00\x65\x00\x20\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x77\x00\x6f\x00\x72\ +\x00\x6b\x00\x62\x00\x65\x00\x6e\x00\x63\x00\x68\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x14\x48\x69\x64\x65\x20\x44\x72\x61\x66\x74\ +\x20\x77\x6f\x72\x6b\x62\x65\x6e\x63\x68\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x82\x04\x2f\x04\x3a\x04\x49\x04\x3e\x00\x20\x04\x32\x04\x41\ +\x04\x42\x04\x30\x04\x3d\x04\x3e\x04\x32\x04\x3b\x04\x35\x04\x3d\ +\x04\x3e\x00\x2c\x00\x20\x04\x3f\x04\x40\x04\x38\x00\x20\x04\x32\ +\x04\x38\x04\x3a\x04\x3e\x04\x3d\x04\x30\x04\x3d\x04\x3d\x04\x56\ +\x00\x20\x04\x3a\x04\x40\x04\x35\x04\x41\x04\x3b\x04\x35\x04\x3d\ +\x04\x3d\x04\x4f\x00\x20\x04\x31\x04\x43\x04\x34\x04\x35\x00\x20\ +\x04\x3f\x04\x3e\x04\x3a\x04\x30\x04\x37\x04\x43\x04\x32\x04\x30\ +\x04\x42\x04\x38\x04\x41\x04\x4f\x00\x20\x04\x41\x04\x56\x04\x42\ +\x04\x3a\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\x66\ +\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x20\x67\x72\x69\x64\ +\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x77\x68\x65\ +\x6e\x20\x64\x72\x61\x77\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\xca\x00\x49\x00\x66\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\ +\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x66\x00\x72\x00\x65\x00\ +\x65\x00\x63\x00\x61\x00\x64\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x74\x00\x72\x00\x79\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x6a\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x63\x00\ +\x6f\x00\x69\x00\x6e\x00\x63\x00\x69\x00\x64\x00\x65\x00\x6e\x00\ +\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x77\x00\ +\x69\x00\x72\x00\x65\x00\x73\x00\x2e\x00\x20\x00\x42\x00\x65\x00\ +\x77\x00\x61\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x74\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x74\x00\ +\x61\x00\x6b\x00\x65\x00\x20\x00\x61\x00\x20\x00\x77\x00\x68\x00\ +\x69\x00\x6c\x00\x65\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x65\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x66\x72\x65\x65\x63\x61\x64\x20\x77\x69\x6c\x6c\x20\x74\x72\ +\x79\x20\x74\x6f\x20\x6a\x6f\x69\x6e\x74\x20\x63\x6f\x69\x6e\x63\ +\x69\x64\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\ +\x74\x6f\x20\x77\x69\x72\x65\x73\x2e\x20\x42\x65\x77\x61\x72\x65\ +\x2c\x20\x74\x68\x69\x73\x20\x63\x61\x6e\x20\x74\x61\x6b\x65\x20\ +\x61\x20\x77\x68\x69\x6c\x65\x2e\x2e\x2e\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\xf2\x00\x49\x00\x66\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\ +\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x67\ +\x00\x72\x00\x69\x00\x64\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\ +\x00\x20\x00\x61\x00\x6c\x00\x77\x00\x61\x00\x79\x00\x73\x00\x20\ +\x00\x62\x00\x65\x00\x20\x00\x76\x00\x69\x00\x73\x00\x69\x00\x62\ +\x00\x6c\x00\x65\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\ +\x00\x74\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x62\x00\x65\ +\x00\x6e\x00\x63\x00\x68\x00\x20\x00\x69\x00\x73\x00\x20\x00\x61\ +\x00\x63\x00\x74\x00\x69\x00\x76\x00\x65\x00\x2e\x00\x20\x00\x4f\ +\x00\x74\x00\x68\x00\x65\x00\x72\x00\x77\x00\x69\x00\x73\x00\x65\ +\x00\x20\x00\x6f\x00\x6e\x00\x6c\x00\x79\x00\x20\x00\x77\x00\x68\ +\x00\x65\x00\x6e\x00\x20\x00\x75\x00\x73\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\ +\x00\x6e\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x79\x49\x66\ +\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x44\x72\ +\x61\x66\x74\x20\x67\x72\x69\x64\x20\x77\x69\x6c\x6c\x20\x61\x6c\ +\x77\x61\x79\x73\x20\x62\x65\x20\x76\x69\x73\x69\x62\x6c\x65\x20\ +\x77\x68\x65\x6e\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x77\ +\x6f\x72\x6b\x62\x65\x6e\x63\x68\x20\x69\x73\x20\x61\x63\x74\x69\ +\x76\x65\x2e\x20\x4f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x6f\x6e\ +\x6c\x79\x20\x77\x68\x65\x6e\x20\x75\x73\x69\x6e\x67\x20\x61\x20\ +\x63\x6f\x6d\x6d\x61\x6e\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x88\x00\ +\x49\x00\x66\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\ +\x65\x00\x64\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x53\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\ +\x6c\x00\x62\x00\x61\x00\x72\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x73\x00\x68\x00\x6f\x00\ +\x77\x00\x6e\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x65\x00\ +\x76\x00\x65\x00\x72\x00\x20\x00\x79\x00\x6f\x00\x75\x00\x20\x00\ +\x75\x00\x73\x00\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\ +\x70\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x44\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\ +\x20\x53\x6e\x61\x70\x20\x74\x6f\x6f\x6c\x62\x61\x72\x20\x77\x69\ +\x6c\x6c\x20\x62\x65\x20\x73\x68\x6f\x77\x6e\x20\x77\x68\x65\x6e\ +\x65\x76\x65\x72\x20\x79\x6f\x75\x20\x75\x73\x65\x20\x73\x6e\x61\ +\x70\x70\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xac\x04\x2f\x04\ +\x3a\x04\x49\x04\x3e\x00\x20\x04\x32\x04\x41\x04\x42\x04\x30\x04\ +\x3d\x04\x3e\x04\x32\x04\x3b\x04\x35\x04\x3d\x04\x3e\x00\x2c\x00\ +\x20\x04\x32\x04\x41\x04\x56\x00\x20\x04\x3e\x04\x31\x00\x27\x04\ +\x54\x04\x3a\x04\x42\x04\x38\x00\x2c\x00\x20\x04\x49\x04\x3e\x00\ +\x20\x04\x3c\x04\x30\x04\x4e\x04\x42\x04\x4c\x00\x20\x04\x33\x04\ +\x40\x04\x30\x04\x3d\x04\x56\x00\x2c\x00\x20\x04\x31\x04\x43\x04\ +\x34\x04\x43\x04\x42\x04\x4c\x00\x20\x04\x35\x04\x3a\x04\x41\x04\ +\x3f\x04\x3e\x04\x40\x04\x42\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\ +\x56\x00\x20\x04\x43\x00\x20\x00\x33\x00\x44\x00\x20\x04\x31\x04\ +\x30\x04\x33\x04\x30\x04\x42\x04\x3e\x04\x33\x04\x40\x04\x30\x04\ +\x3d\x04\x3d\x04\x38\x04\x3a\x04\x38\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x51\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\ +\x65\x63\x6b\x65\x64\x2c\x20\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x66\x61\ +\x63\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x65\x78\x70\x6f\ +\x72\x74\x65\x64\x20\x61\x73\x20\x33\x64\x20\x70\x6f\x6c\x79\x66\ +\x61\x63\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x18\x04\x2f\x04\x3a\ +\x04\x49\x04\x3e\x00\x20\x04\x32\x04\x41\x04\x42\x04\x30\x04\x3d\ +\x04\x3e\x04\x32\x04\x3b\x04\x35\x04\x3d\x04\x3e\x00\x2c\x00\x20\ +\x04\x40\x04\x35\x04\x36\x04\x38\x04\x3c\x00\x20\x04\x3a\x04\x3e\ +\x04\x3f\x04\x56\x04\x4e\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4f\ +\x00\x20\x04\x31\x04\x43\x04\x34\x04\x35\x00\x20\x04\x37\x04\x31\ +\x04\x35\x04\x40\x04\x56\x04\x33\x04\x30\x04\x42\x04\x38\x04\x41\ +\x04\x4f\x00\x20\x04\x3c\x04\x56\x04\x36\x00\x20\x04\x3a\x04\x3e\ +\x04\x3c\x04\x30\x04\x3d\x04\x34\x04\x30\x04\x3c\x04\x38\x00\x2c\ +\x00\x20\x04\x32\x00\x20\x04\x56\x04\x3d\x04\x48\x04\x3e\x04\x3c\ +\x04\x43\x00\x20\x04\x32\x04\x38\x04\x3f\x04\x30\x04\x34\x04\x3a\ +\x04\x43\x00\x20\x04\x3a\x04\x3e\x04\x3c\x04\x30\x04\x3d\x04\x34\ +\x04\x38\x00\x20\x04\x31\x04\x43\x04\x34\x04\x43\x04\x42\x04\x4c\ +\x00\x20\x04\x37\x04\x30\x04\x32\x04\x36\x04\x34\x04\x38\x00\x20\ +\x04\x3f\x04\x3e\x04\x47\x04\x38\x04\x3d\x04\x30\x04\x42\x04\x38\ +\x04\x41\x04\x4f\x00\x20\x04\x32\x00\x20\x04\x40\x04\x35\x04\x36\ +\x04\x38\x04\x3c\x04\x56\x00\x20\x00\x22\x04\x3d\x04\x35\x00\x20\ +\x04\x3a\x04\x3e\x04\x3f\x04\x56\x04\x4e\x04\x32\x04\x30\x04\x42\ +\x04\x38\x00\x22\x08\x00\x00\x00\x00\x06\x00\x00\x00\x6f\x49\x66\ +\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\ +\x2c\x20\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\ +\x20\x62\x65\x20\x6b\x65\x70\x74\x20\x61\x63\x72\x6f\x73\x73\x20\ +\x63\x6f\x6d\x6d\x61\x6e\x64\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\ +\x73\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x20\x77\x69\x6c\x6c\ +\x20\x61\x6c\x77\x61\x79\x73\x20\x73\x74\x61\x72\x74\x20\x69\x6e\ +\x20\x6e\x6f\x2d\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x7e\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\ +\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x68\x00\ +\x61\x00\x74\x00\x63\x00\x68\x00\x65\x00\x73\x00\x20\x00\x77\x00\ +\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x63\x00\ +\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x65\x00\x64\x00\ +\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x69\x00\ +\x6d\x00\x70\x00\x6c\x00\x65\x00\x20\x00\x77\x00\x69\x00\x72\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3f\x49\x66\x20\ +\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x68\x61\x74\x63\x68\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\ +\x20\x63\x6f\x6e\x76\x65\x72\x74\x65\x64\x20\x69\x6e\x74\x6f\x20\ +\x73\x69\x6d\x70\x6c\x65\x20\x77\x69\x72\x65\x73\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\xf6\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\ +\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\ +\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x69\x00\x6d\ +\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x64\x00\x20\x00\x74\ +\x00\x65\x00\x78\x00\x74\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\ +\x00\x6c\x00\x20\x00\x67\x00\x65\x00\x74\x00\x20\x00\x74\x00\x68\ +\x00\x65\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\ +\x00\x72\x00\x64\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\ +\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\x00\x73\x00\x69\ +\x00\x7a\x00\x65\x00\x2c\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\ +\x00\x65\x00\x61\x00\x64\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x79\x00\x20\x00\x68\x00\x61\x00\x76\ +\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x44\x00\x58\x00\x46\x00\x20\x00\x64\x00\x6f\x00\x63\ +\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x7b\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\ +\x68\x65\x63\x6b\x65\x64\x2c\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\ +\x20\x74\x65\x78\x74\x73\x20\x77\x69\x6c\x6c\x20\x67\x65\x74\x20\ +\x74\x68\x65\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x44\x72\x61\ +\x66\x74\x20\x74\x65\x78\x74\x20\x73\x69\x7a\x65\x2c\x20\x69\x6e\ +\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x73\x69\x7a\ +\x65\x20\x74\x68\x65\x79\x20\x68\x61\x76\x65\x20\x69\x6e\x20\x74\ +\x68\x65\x20\x44\x58\x46\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\xf8\x04\x2f\x04\x3a\x04\x49\x04\x3e\x00\ +\x20\x04\x46\x04\x35\x00\x20\x04\x3e\x04\x31\x04\x40\x04\x30\x04\ +\x3d\x04\x3e\x00\x2c\x00\x20\x04\x42\x04\x3e\x00\x20\x04\x3f\x04\ +\x3e\x00\x20\x04\x37\x04\x30\x04\x3c\x04\x3e\x04\x32\x04\x47\x04\ +\x43\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4e\x00\x2c\x00\x20\x04\ +\x3e\x04\x31\x20\x19\x04\x54\x04\x3a\x04\x42\x04\x38\x00\x20\x04\ +\x31\x04\x43\x04\x34\x04\x43\x04\x42\x04\x4c\x00\x20\x04\x3c\x04\ +\x30\x04\x42\x04\x38\x00\x20\x04\x32\x04\x38\x04\x33\x04\x3b\x04\ +\x4f\x04\x34\x00\x20\x04\x37\x04\x30\x04\x3f\x04\x3e\x04\x32\x04\ +\x3d\x04\x35\x04\x3d\x04\x38\x04\x45\x00\x2e\x00\x20\x04\x12\x00\ +\x20\x04\x56\x04\x3d\x04\x48\x04\x3e\x04\x3c\x04\x43\x00\x20\x04\ +\x32\x04\x38\x04\x3f\x04\x30\x04\x34\x04\x3a\x04\x43\x00\x2c\x00\ +\x20\x04\x32\x04\x3e\x04\x3d\x04\x38\x00\x20\x04\x31\x04\x43\x04\ +\x34\x04\x43\x04\x42\x04\x4c\x00\x20\x04\x3c\x04\x30\x04\x42\x04\ +\x38\x00\x20\x04\x32\x04\x38\x04\x33\x04\x3b\x04\x4f\x04\x34\x00\ +\x20\x04\x3a\x04\x30\x04\x40\x04\x3a\x04\x30\x04\x41\x04\x43\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x66\x49\x66\x20\x74\x68\x69\x73\ +\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\ +\x20\x61\x73\x20\x66\x69\x6c\x6c\x65\x64\x20\x61\x73\x20\x64\x65\ +\x66\x61\x75\x6c\x74\x2e\x20\x4f\x74\x68\x65\x72\x77\x69\x73\x65\ +\x2c\x20\x74\x68\x65\x79\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\ +\x61\x72\x20\x61\x73\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\xd0\x00\x49\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\ +\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ +\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\ +\x74\x00\x20\x00\x6f\x00\x63\x00\x63\x00\x75\x00\x72\x00\x20\x00\ +\x61\x00\x67\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ +\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x6d\x00\x6f\x00\x72\x00\ +\x65\x00\x20\x00\x74\x00\x68\x00\x61\x00\x6e\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x64\x00\x69\x00\x63\x00\ +\x61\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\ +\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x65\x00\ +\x64\x00\x67\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x68\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x20\x77\x69\ +\x6c\x6c\x20\x6e\x6f\x74\x20\x6f\x63\x63\x75\x72\x20\x61\x67\x61\ +\x69\x6e\x73\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x74\ +\x68\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\x74\x68\x65\x20\ +\x69\x6e\x64\x69\x63\x61\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\ +\x20\x6f\x66\x20\x65\x64\x67\x65\x73\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\xf2\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\ +\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x77\x00\ +\x6f\x00\x72\x00\x6b\x00\x62\x00\x65\x00\x6e\x00\x63\x00\x68\x00\ +\x20\x00\x77\x00\x6f\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x61\x00\ +\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\x2e\x00\x20\x00\x55\x00\ +\x73\x00\x65\x00\x66\x00\x75\x00\x6c\x00\x20\x00\x73\x00\x69\x00\ +\x6e\x00\x63\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\x00\ +\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\ +\x6c\x00\x73\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x61\x00\ +\x6c\x00\x73\x00\x6f\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\ +\x77\x00\x6f\x00\x72\x00\x6b\x00\x62\x00\x65\x00\x6e\x00\x63\x00\ +\x68\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x79\x49\x66\x20\ +\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x77\x6f\x72\x6b\x62\ +\x65\x6e\x63\x68\x20\x77\x6f\x6e\x27\x74\x20\x61\x70\x70\x65\x61\ +\x72\x2e\x20\x55\x73\x65\x66\x75\x6c\x20\x73\x69\x6e\x63\x65\x20\ +\x61\x6c\x6c\x20\x6f\x66\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\ +\x20\x74\x6f\x6f\x6c\x73\x20\x61\x72\x65\x20\x61\x6c\x73\x6f\x20\ +\x69\x6e\x20\x74\x68\x65\x20\x41\x72\x63\x68\x20\x77\x6f\x72\x6b\ +\x62\x65\x6e\x63\x68\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xea\x00\x49\ +\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\ +\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\ +\x00\x64\x00\x2c\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\ +\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x6c\x00\x69\x00\x6e\x00\x65\ +\x00\x73\x00\x20\x00\x68\x00\x61\x00\x76\x00\x65\x00\x20\x00\x61\ +\x00\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x20\x00\x64\ +\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x64\x00\x2c\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x79\x00\x20\x00\x77\x00\x69\x00\x6c\ +\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x72\x00\x65\x00\x6e\ +\x00\x64\x00\x65\x00\x72\x00\x65\x00\x64\x00\x20\x00\x61\x00\x73\ +\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x20\ +\x00\x77\x00\x69\x00\x72\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\ +\x00\x74\x00\x68\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x72\x00\x72\x00\x65\x00\x63\x00\x74\x00\x20\x00\x77\ +\x00\x69\x00\x64\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x75\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\ +\x63\x6b\x65\x64\x2c\x20\x77\x68\x65\x6e\x20\x70\x6f\x6c\x79\x6c\ +\x69\x6e\x65\x73\x20\x68\x61\x76\x65\x20\x61\x20\x77\x69\x64\x74\ +\x68\x20\x64\x65\x66\x69\x6e\x65\x64\x2c\x20\x74\x68\x65\x79\x20\ +\x77\x69\x6c\x6c\x20\x62\x65\x20\x72\x65\x6e\x64\x65\x72\x65\x64\ +\x20\x61\x73\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x73\ +\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x63\x6f\x72\x72\x65\x63\ +\x74\x20\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x02\x00\ +\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\ +\x65\x00\x64\x00\x2c\x00\x20\x00\x79\x00\x6f\x00\x75\x00\x20\x00\ +\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\x6c\x00\x77\x00\ +\x61\x00\x79\x00\x73\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\ +\x20\x00\x74\x00\x6f\x00\x20\x00\x65\x00\x78\x00\x69\x00\x73\x00\ +\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x77\x00\x68\x00\x69\x00\ +\x6c\x00\x65\x00\x20\x00\x64\x00\x72\x00\x61\x00\x77\x00\x69\x00\ +\x6e\x00\x67\x00\x2e\x00\x20\x00\x49\x00\x66\x00\x20\x00\x6e\x00\ +\x6f\x00\x74\x00\x2c\x00\x20\x00\x79\x00\x6f\x00\x75\x00\x20\x00\ +\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\ +\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x6f\x00\x6e\x00\x6c\x00\x79\x00\x20\x00\x77\x00\x68\x00\ +\x65\x00\x6e\x00\x20\x00\x70\x00\x72\x00\x65\x00\x73\x00\x73\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ +\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x81\x49\x66\x20\x74\x68\ +\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x79\ +\x6f\x75\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x73\ +\x6e\x61\x70\x20\x74\x6f\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x68\x69\x6c\x65\x20\x64\x72\ +\x61\x77\x69\x6e\x67\x2e\x20\x49\x66\x20\x6e\x6f\x74\x2c\x20\x79\ +\x6f\x75\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x73\x6e\x61\x70\x70\ +\x69\x6e\x67\x20\x6f\x6e\x6c\x79\x20\x77\x68\x65\x6e\x20\x70\x72\ +\x65\x73\x73\x69\x6e\x67\x20\x43\x54\x52\x4c\x2e\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x1c\x04\x06\x04\x3c\x04\x3f\x04\x3e\x04\x40\x04\x42\ +\x00\x20\x04\x31\x04\x3b\x04\x3e\x04\x3a\x04\x56\x04\x32\x00\x2a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x49\x6d\x70\x6f\x72\x74\ +\x20\x2a\x62\x6c\x6f\x63\x6b\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\ +\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x4f\ +\x00\x43\x00\x41\x00\x20\x00\x61\x00\x72\x00\x65\x00\x61\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x49\x6d\x70\x6f\x72\x74\ +\x20\x4f\x43\x41\x20\x61\x72\x65\x61\x73\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x40\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\ +\x00\x68\x00\x61\x00\x74\x00\x63\x00\x68\x00\x20\x00\x62\x00\x6f\ +\x00\x75\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x69\x00\x65\x00\x73\ +\x00\x20\x00\x61\x00\x73\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x49\x6d\x70\x6f\ +\x72\x74\x20\x68\x61\x74\x63\x68\x20\x62\x6f\x75\x6e\x64\x61\x72\ +\x69\x65\x73\x20\x61\x73\x20\x77\x69\x72\x65\x73\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x1c\x04\x06\x04\x3c\x04\x3f\x04\x3e\x04\x40\x04\x42\ +\x00\x20\x04\x3c\x04\x30\x04\x3a\x04\x35\x04\x42\x04\x56\x04\x32\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x49\x6d\x70\x6f\x72\x74\ +\x20\x6c\x61\x79\x6f\x75\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\ +\x04\x21\x04\x42\x04\x38\x04\x3b\x04\x4c\x00\x20\x04\x56\x04\x3c\ +\x04\x3f\x04\x3e\x04\x40\x04\x42\x04\x43\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x49\x6d\x70\x6f\x72\x74\x20\x73\x74\x79\x6c\x65\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x3e\x04\x06\x04\x3c\x04\x3f\x04\x3e\ +\x04\x40\x04\x42\x04\x43\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4f\ +\x00\x20\x04\x42\x04\x35\x04\x3a\x04\x41\x04\x42\x04\x43\x00\x20\ +\x04\x42\x04\x30\x00\x20\x04\x40\x04\x3e\x04\x37\x04\x3c\x04\x56\ +\x04\x40\x04\x56\x04\x32\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\ +\x49\x6d\x70\x6f\x72\x74\x20\x74\x65\x78\x74\x73\x20\x61\x6e\x64\ +\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x1c\x04\x06\x04\x3c\x04\x3f\x04\x3e\x04\x40\x04\x42\x00\ +\x2f\x04\x15\x04\x3a\x04\x41\x04\x3f\x04\x3e\x04\x40\x04\x42\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x49\x6d\x70\x6f\x72\x74\x2f\ +\x45\x78\x70\x6f\x72\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\x04\x20\ +\x04\x56\x04\x32\x04\x35\x04\x3d\x04\x4c\x00\x20\x04\x32\x04\x3d\ +\x04\x43\x04\x42\x04\x40\x04\x56\x04\x48\x04\x3d\x04\x4c\x04\x3e\ +\x04\x57\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3d\x04\x3e\x04\x41\ +\x04\x42\x04\x56\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x49\x6e\ +\x74\x65\x72\x6e\x61\x6c\x20\x70\x72\x65\x63\x69\x73\x69\x6f\x6e\ +\x20\x6c\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x04\x1e\ +\x04\x31\x00\x27\x04\x54\x04\x34\x04\x3d\x04\x30\x04\x42\x04\x38\ +\x00\x20\x04\x33\x04\x35\x04\x3e\x04\x3c\x04\x35\x04\x42\x04\x40\ +\x04\x56\x04\x4e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4a\x6f\ +\x69\x6e\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x2a\x04\x1d\x04\x30\x04\x3b\x04\x56\x04\x32\x04\x3e\x00\ +\x20\x00\x28\x04\x41\x04\x42\x04\x30\x04\x3d\x04\x34\x04\x30\x04\ +\x40\x04\x42\x00\x20\x00\x49\x00\x53\x00\x4f\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x13\x4c\x65\x66\x74\x20\x28\x49\x53\x4f\ +\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x29\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x20\x00\x4d\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x6c\x00\x69\ +\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x65\x00\x76\x00\x65\x00\x72\ +\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x4d\x61\x69\x6e\ +\x20\x6c\x69\x6e\x65\x73\x20\x65\x76\x65\x72\x79\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\xa2\x00\x4d\x00\x61\x00\x69\x00\x6e\x00\x6c\x00\x69\ +\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\ +\x00\x20\x00\x62\x00\x65\x00\x20\x00\x64\x00\x72\x00\x61\x00\x77\ +\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x69\x00\x63\x00\x6b\x00\x65\ +\x00\x72\x00\x2e\x00\x20\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\ +\x00\x66\x00\x79\x00\x20\x00\x68\x00\x65\x00\x72\x00\x65\x00\x20\ +\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x6d\x00\x61\x00\x6e\x00\x79\ +\x00\x20\x00\x73\x00\x71\x00\x75\x00\x61\x00\x72\x00\x65\x00\x73\ +\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\ +\x00\x20\x00\x6d\x00\x61\x00\x69\x00\x6e\x00\x6c\x00\x69\x00\x6e\ +\x00\x65\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\ +\x4d\x61\x69\x6e\x6c\x69\x6e\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\ +\x65\x20\x64\x72\x61\x77\x6e\x20\x74\x68\x69\x63\x6b\x65\x72\x2e\ +\x20\x53\x70\x65\x63\x69\x66\x79\x20\x68\x65\x72\x65\x20\x68\x6f\ +\x77\x20\x6d\x61\x6e\x79\x20\x73\x71\x75\x61\x72\x65\x73\x20\x62\ +\x65\x74\x77\x65\x65\x6e\x20\x6d\x61\x69\x6e\x6c\x69\x6e\x65\x73\ +\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x38\x04\x1c\x04\x30\x04\x3a\x04\ +\x41\x04\x38\x04\x3c\x04\x30\x04\x3b\x04\x4c\x04\x3d\x04\x38\x04\ +\x39\x00\x20\x04\x41\x04\x35\x04\x33\x04\x3c\x04\x35\x04\x3d\x04\ +\x42\x00\x20\x04\x41\x04\x3f\x04\x3b\x04\x30\x04\x39\x04\x3d\x04\ +\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4d\x61\x78\x20\x53\ +\x70\x6c\x69\x6e\x65\x20\x53\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x2e\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\ +\x75\x00\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\ +\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x65\x00\x64\x00\x67\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x4d\x61\x78\ +\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x65\ +\x64\x67\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6a\x00\x4d\x00\x61\ +\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x6e\x00\x75\ +\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\ +\x00\x65\x00\x64\x00\x67\x00\x65\x00\x73\x00\x20\x00\x74\x00\x6f\ +\x00\x20\x00\x62\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\ +\x00\x69\x00\x64\x00\x65\x00\x72\x00\x65\x00\x64\x00\x20\x00\x66\ +\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\ +\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\ +\x4d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\ +\x66\x20\x65\x64\x67\x65\x73\x20\x74\x6f\x20\x62\x65\x20\x63\x6f\ +\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x66\x6f\x72\x20\x73\x6e\x61\ +\x70\x70\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x04\x1d\x04\ +\x35\x04\x3c\x04\x30\x04\x54\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x04\x16\x04\ +\x3e\x04\x34\x04\x3d\x04\x38\x04\x39\x00\x20\x00\x28\x04\x48\x04\ +\x32\x04\x38\x04\x34\x04\x3a\x04\x3e\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0e\x4e\x6f\x6e\x65\x20\x28\x66\x61\x73\x74\x65\ +\x73\x74\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xf6\x04\x17\x04\x30\x04\ +\x37\x04\x32\x04\x38\x04\x47\x04\x30\x04\x39\x00\x2c\x00\x20\x04\ +\x3f\x04\x56\x04\x41\x04\x3b\x04\x4f\x00\x20\x04\x3a\x04\x3e\x04\ +\x3f\x04\x56\x04\x4e\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4f\x00\ +\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\x04\x42\x04\x56\x04\ +\x32\x00\x2c\x00\x20\x04\x32\x04\x38\x04\x31\x04\x40\x04\x30\x04\ +\x3d\x04\x38\x04\x3c\x04\x38\x00\x20\x04\x41\x04\x42\x04\x30\x04\ +\x4e\x04\x42\x04\x4c\x00\x20\x04\x3a\x04\x3e\x04\x3f\x04\x56\x04\ +\x57\x00\x2e\x00\x20\x04\x2f\x04\x3a\x04\x49\x04\x3e\x00\x20\x04\ +\x32\x04\x41\x04\x42\x04\x30\x04\x3d\x04\x3e\x04\x32\x04\x3b\x04\ +\x35\x04\x3d\x04\x30\x00\x20\x04\x46\x04\x4f\x00\x20\x04\x3e\x04\ +\x3f\x04\x46\x04\x56\x04\x4f\x00\x2c\x00\x20\x04\x32\x04\x38\x04\ +\x31\x04\x40\x04\x30\x04\x3d\x04\x38\x04\x3c\x04\x38\x00\x20\x04\ +\x31\x04\x43\x04\x34\x04\x43\x04\x42\x04\x4c\x00\x20\x04\x3f\x04\ +\x3e\x04\x47\x04\x30\x04\x42\x04\x3a\x04\x3e\x04\x32\x04\x56\x00\ +\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\x04\x42\x04\x38\x00\ +\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7f\x4e\x6f\x72\x6d\x61\ +\x6c\x6c\x79\x2c\x20\x61\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\ +\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x73\x2c\x20\x74\x68\x65\x20\ +\x63\x6f\x70\x69\x65\x73\x20\x67\x65\x74\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x2e\x20\x49\x66\x20\x74\x68\x69\x73\x20\x6f\x70\x74\ +\x69\x6f\x6e\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\ +\x74\x68\x65\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x69\x6e\x73\x74\x65\x61\x64\x2e\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x2a\x04\x1f\x04\x30\x04\x40\x04\x30\x04\x3c\x04\x35\x04\x42\ +\x04\x40\x04\x38\x00\x20\x00\x4f\x00\x43\x00\x41\x00\x20\x04\x44\ +\x04\x3e\x04\x40\x04\x3c\x04\x30\x04\x42\x04\x43\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x12\x4f\x43\x41\x20\x66\x6f\x72\x6d\x61\x74\ +\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\ +\x04\x1e\x04\x40\x04\x38\x04\x33\x04\x56\x04\x3d\x04\x30\x04\x3b\ +\x04\x4c\x04\x3d\x04\x38\x04\x39\x00\x20\x04\x3a\x04\x3e\x04\x3b\ +\x04\x56\x04\x40\x00\x20\x04\x42\x04\x30\x00\x20\x04\x42\x04\x3e\ +\x04\x32\x04\x49\x04\x38\x04\x3d\x04\x30\x00\x20\x04\x3b\x04\x56\ +\x04\x3d\x04\x56\x04\x57\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\ +\x4f\x72\x69\x67\x69\x6e\x61\x6c\x20\x63\x6f\x6c\x6f\x72\x20\x61\ +\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x1a\x00\x52\x00\x61\x00\x77\x00\x20\x00\x28\x00\x66\ +\x00\x6f\x00\x72\x00\x20\x00\x43\x00\x41\x00\x4d\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0d\x52\x61\x77\x20\x28\x66\x6f\x72\ +\x20\x43\x41\x4d\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\x00\x52\x00\ +\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x70\x00\x6f\x00\ +\x6c\x00\x79\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x20\x00\ +\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x77\x00\x69\x00\x64\x00\ +\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x52\x65\x6e\ +\x64\x65\x72\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x73\x20\x77\x69\ +\x74\x68\x20\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\ +\x04\x1d\x04\x30\x04\x3f\x04\x40\x04\x30\x04\x32\x04\x3e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x52\x69\x67\x68\x74\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x2a\x04\x1f\x04\x30\x04\x40\x04\x30\x04\x3c\x04\ +\x35\x04\x42\x04\x40\x04\x38\x00\x20\x00\x53\x00\x56\x00\x47\x00\ +\x20\x04\x44\x04\x3e\x04\x40\x04\x3c\x04\x30\x04\x42\x04\x43\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x12\x53\x56\x47\x20\x66\x6f\x72\ +\x6d\x61\x74\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x6a\x04\x17\x04\x31\x04\x35\x04\x40\x04\x56\x04\x33\x04\ +\x30\x04\x42\x04\x38\x00\x20\x04\x3f\x04\x3e\x04\x42\x04\x3e\x04\ +\x47\x04\x3d\x04\x38\x04\x39\x00\x20\x04\x3a\x04\x3e\x04\x3b\x04\ +\x56\x04\x40\x00\x20\x04\x42\x04\x30\x00\x20\x04\x48\x04\x38\x04\ +\x40\x04\x38\x04\x3d\x04\x43\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\ +\x56\x04\x57\x00\x20\x04\x3c\x04\x56\x04\x36\x00\x20\x04\x41\x04\ +\x35\x04\x30\x04\x3d\x04\x41\x04\x30\x04\x3c\x04\x38\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x30\x53\x61\x76\x65\x20\x63\x75\x72\x72\ +\x65\x6e\x74\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\ +\x6e\x65\x77\x69\x64\x74\x68\x20\x61\x63\x72\x6f\x73\x73\x20\x73\ +\x65\x73\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x54\x04\ +\x1f\x04\x56\x04\x41\x04\x3b\x04\x4f\x00\x20\x04\x3a\x04\x3e\x04\ +\x3f\x04\x56\x04\x4e\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4f\x00\ +\x20\x04\x32\x04\x38\x04\x31\x04\x40\x04\x30\x04\x42\x04\x38\x00\ +\x20\x04\x3f\x04\x3e\x04\x47\x04\x30\x04\x42\x04\x3a\x04\x3e\x04\ +\x32\x04\x56\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\x04\ +\x42\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x53\x65\x6c\ +\x65\x63\x74\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x20\x61\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\x6e\x67\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x2e\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\ +\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x53\x00\x6e\ +\x00\x61\x00\x70\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\ +\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x53\x68\ +\x6f\x77\x20\x44\x72\x61\x66\x74\x20\x53\x6e\x61\x70\x20\x74\x6f\ +\x6f\x6c\x62\x61\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\x00\x53\x00\ +\x68\x00\x6f\x00\x77\x00\x20\x00\x57\x00\x6f\x00\x72\x00\x6b\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x6e\x00\ +\x65\x00\x20\x00\x74\x00\x72\x00\x61\x00\x63\x00\x6b\x00\x65\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\x68\x6f\x77\x20\ +\x57\x6f\x72\x6b\x69\x6e\x67\x20\x50\x6c\x61\x6e\x65\x20\x74\x72\ +\x61\x63\x6b\x65\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x04\x21\x04\ +\x3b\x04\x35\x04\x48\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x07\x53\x6c\x61\x73\x68\x20\x35\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0c\x04\x21\x04\x3b\x04\x35\x04\x48\x00\x20\x00\x37\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\x20\x37\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0c\x04\x21\x04\x3b\x04\x35\x04\x48\x00\ +\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\ +\x73\x68\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x04\x1a\x04\x3e\ +\x04\x3b\x04\x56\x04\x40\x00\x20\x04\x37\x04\x30\x04\x45\x04\x3e\ +\x04\x3f\x04\x3b\x04\x35\x04\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0a\x53\x6e\x61\x70\x20\x63\x6f\x6c\x6f\x72\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x18\x00\x53\x00\x6e\x00\x61\x00\x70\ +\x00\x20\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x6e\x61\x70\x20\x6d\ +\x61\x78\x69\x6d\x75\x6d\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x53\ +\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6d\x00\x6f\x00\x64\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x08\x53\x6e\x61\x70\x20\x6d\x6f\x64\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x2c\x04\x14\x04\x56\x04\x30\x04\x3f\ +\x04\x30\x04\x37\x04\x3e\x04\x3d\x00\x20\x04\x3f\x04\x40\x04\x38\ +\x04\x32\x00\x27\x04\x4f\x04\x37\x04\x43\x04\x32\x04\x30\x04\x3d\ +\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x6e\ +\x61\x70\x20\x72\x61\x6e\x67\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x66\ +\x00\x53\x00\x74\x00\x79\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x66\x00\x69\x00\x6c\ +\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x77\x00\x72\x00\x69\ +\x00\x74\x00\x65\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\ +\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x61\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\ +\x00\x63\x00\x68\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\ +\x53\x74\x79\x6c\x65\x20\x6f\x66\x20\x53\x56\x47\x20\x66\x69\x6c\ +\x65\x20\x74\x6f\x20\x77\x72\x69\x74\x65\x20\x77\x68\x65\x6e\x20\ +\x65\x78\x70\x6f\x72\x74\x69\x6e\x67\x20\x61\x20\x53\x6b\x65\x74\ +\x63\x68\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x54\x00\x61\x00\ +\x73\x00\x6b\x00\x76\x00\x69\x00\x65\x00\x77\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x54\x61\x73\x6b\x76\x69\x65\x77\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x3a\x00\x54\x00\x68\x00\x65\x00\x20\x00\x43\x00\ +\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\ +\x66\x00\x69\x00\x65\x00\x72\x00\x20\x00\x6b\x00\x65\x00\x79\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x54\x68\x65\x20\x43\x6f\x6e\ +\x73\x74\x72\x61\x69\x6e\x69\x6e\x67\x20\x6d\x6f\x64\x69\x66\x69\ +\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x54\ +\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x74\x00\x20\x00\x6d\ +\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x72\x00\x20\ +\x00\x6b\x00\x65\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\ +\x54\x68\x65\x20\x61\x6c\x74\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\ +\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x90\x04\x24\x04\x30\ +\x04\x39\x04\x3b\x00\x20\x04\x41\x04\x3f\x04\x56\x04\x32\x04\x41\ +\x04\x42\x04\x30\x04\x32\x04\x3b\x04\x35\x04\x3d\x04\x3d\x04\x4f\ +\x00\x20\x04\x3a\x04\x3e\x04\x3b\x04\x4c\x04\x3e\x04\x40\x04\x43\ +\x00\x2c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\x35\ +\x04\x40\x04\x35\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x35\x04\x3d\ +\x04\x3d\x04\x4f\x00\x20\x00\x64\x00\x78\x00\x66\x00\x20\x04\x3a\ +\x04\x3e\x04\x3b\x04\x4c\x04\x3e\x04\x40\x04\x56\x04\x32\x00\x20\ +\x04\x32\x00\x20\x04\x48\x04\x38\x04\x40\x04\x38\x04\x3d\x04\x43\ +\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\x56\x04\x39\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x41\x54\x68\x65\x20\x63\x6f\x6c\x6f\x72\x20\ +\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x20\x66\x6f\x72\ +\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6e\x67\x20\x64\x78\x66\ +\x20\x63\x6f\x6c\x6f\x72\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\ +\x65\x77\x69\x64\x74\x68\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x92\x04\ +\x21\x04\x42\x04\x30\x04\x3d\x04\x34\x04\x30\x04\x40\x04\x42\x04\ +\x3d\x04\x38\x04\x39\x00\x20\x04\x48\x04\x30\x04\x31\x04\x3b\x04\ +\x3e\x04\x3d\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x32\x04\ +\x38\x04\x3a\x04\x3e\x04\x40\x04\x38\x04\x41\x04\x42\x04\x30\x04\ +\x3d\x04\x3d\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x00\x20\x04\ +\x41\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x35\x04\x3d\x04\x3d\x04\ +\x56\x00\x20\x04\x3d\x04\x3e\x04\x32\x04\x3e\x04\x33\x04\x3e\x00\ +\x20\x04\x30\x04\x40\x04\x3a\x04\x43\x04\x48\x04\x30\x00\x20\x04\ +\x3a\x04\x40\x04\x35\x04\x41\x04\x3b\x04\x35\x04\x3d\x04\x3d\x04\ +\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3d\x54\x68\x65\x20\x64\ +\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x20\ +\x74\x6f\x20\x75\x73\x65\x20\x77\x68\x65\x6e\x20\x63\x72\x65\x61\ +\x74\x69\x6e\x67\x20\x61\x20\x6e\x65\x77\x20\x64\x72\x61\x77\x69\ +\x6e\x67\x20\x73\x68\x65\x65\x74\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x8e\ +\x04\x1a\x04\x56\x04\x3b\x04\x4c\x04\x3a\x04\x56\x04\x41\x04\x42\ +\x04\x4c\x00\x20\x04\x34\x04\x35\x04\x41\x04\x4f\x04\x42\x04\x38\ +\x04\x3d\x04\x3d\x04\x38\x04\x45\x00\x20\x04\x37\x04\x3d\x04\x30\ +\x04\x3a\x04\x56\x04\x32\x00\x20\x04\x43\x00\x20\x04\x32\x04\x3d\ +\x04\x43\x04\x42\x04\x40\x04\x56\x04\x48\x04\x3d\x04\x56\x04\x45\ +\x00\x20\x04\x3e\x04\x3f\x04\x35\x04\x40\x04\x30\x04\x46\x04\x56\ +\x04\x4f\x04\x45\x00\x20\x00\x28\x04\x3f\x04\x40\x04\x38\x04\x3a\ +\x04\x3b\x04\x30\x04\x34\x00\x3a\x00\x20\x00\x33\x00\x20\x00\x3d\ +\x00\x20\x00\x30\x00\x2c\x00\x30\x00\x30\x00\x31\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x4d\x54\x68\x65\x20\x6e\x75\x6d\x62\ +\x65\x72\x20\x6f\x66\x20\x64\x65\x63\x69\x6d\x61\x6c\x73\x20\x69\ +\x6e\x20\x69\x6e\x74\x65\x72\x6e\x61\x6c\x20\x63\x6f\x6f\x72\x64\ +\x69\x6e\x61\x74\x65\x73\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\ +\x73\x20\x28\x66\x6f\x72\x20\x65\x78\x2e\x20\x33\x20\x3d\x20\x30\ +\x2e\x30\x30\x31\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xc0\x04\x20\x04\ +\x30\x04\x34\x04\x56\x04\x43\x04\x41\x00\x20\x04\x3f\x04\x40\x04\ +\x38\x04\x32\x00\x27\x04\x4f\x04\x37\x04\x43\x04\x32\x04\x30\x04\ +\x3d\x04\x3d\x04\x4f\x00\x20\x04\x34\x04\x3e\x00\x20\x04\x41\x04\ +\x3f\x04\x35\x04\x46\x04\x56\x04\x30\x04\x3b\x04\x4c\x04\x3d\x04\ +\x3e\x04\x57\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x38\x00\ +\x2e\x00\x20\x04\x12\x04\x41\x04\x42\x04\x30\x04\x3d\x04\x3e\x04\ +\x32\x04\x56\x04\x42\x04\x4c\x00\x20\x00\x30\x00\x20\x04\x34\x04\ +\x3b\x04\x4f\x00\x20\x04\x32\x04\x56\x04\x34\x04\x41\x04\x43\x04\ +\x42\x04\x3d\x04\x3e\x04\x41\x04\x42\x04\x56\x00\x20\x04\x34\x04\ +\x38\x04\x41\x04\x42\x04\x30\x04\x3d\x04\x46\x04\x56\x04\x57\x00\ +\x20\x00\x20\x00\x28\x04\x3d\x04\x35\x04\x41\x04\x3a\x04\x56\x04\ +\x3d\x04\x47\x04\x35\x04\x3d\x04\x38\x04\x39\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4e\x54\x68\x65\x20\x72\x61\x64\x69\x75\ +\x73\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x20\x74\ +\x6f\x20\x73\x70\x65\x63\x69\x61\x6c\x20\x70\x6f\x69\x6e\x74\x73\ +\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\x30\x20\x66\x6f\x72\x20\x6e\ +\x6f\x20\x64\x69\x73\x74\x61\x6e\x63\x65\x20\x28\x69\x6e\x66\x69\ +\x6e\x69\x74\x65\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x54\x00\ +\x68\x00\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\ +\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x72\x00\ +\x20\x00\x6b\x00\x65\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x15\x54\x68\x65\x20\x73\x6e\x61\x70\x20\x6d\x6f\x64\x69\x66\x69\ +\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\x04\x12\ +\x04\x56\x04\x34\x04\x41\x04\x42\x04\x30\x04\x3d\x04\x4c\x00\x20\ +\x04\x3c\x04\x56\x04\x36\x00\x20\x04\x3a\x04\x3e\x04\x36\x04\x3d\ +\x04\x3e\x04\x4e\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\x56\x04\x54\ +\x04\x4e\x00\x20\x04\x41\x04\x56\x04\x42\x04\x3a\x04\x38\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x22\x54\x68\x65\x20\x73\x70\x61\x63\ +\x69\x6e\x67\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x65\x61\x63\x68\ +\x20\x67\x72\x69\x64\x20\x6c\x69\x6e\x65\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x01\x9e\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x55\x00\x49\x00\x20\ +\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x20\ +\x00\x77\x00\x68\x00\x69\x00\x63\x00\x68\x00\x20\x00\x74\x00\x68\ +\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\ +\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x6c\x00\x65\x00\x20\x00\x77\ +\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\ +\x00\x3a\x00\x20\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\ +\x00\x72\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x77\ +\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x63\ +\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x44\x00\x72\ +\x00\x61\x00\x66\x00\x74\x00\x20\x00\x73\x00\x65\x00\x74\x00\x74\ +\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x20\ +\x00\x61\x00\x20\x00\x73\x00\x65\x00\x70\x00\x61\x00\x72\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\ +\x00\x61\x00\x72\x00\x2c\x00\x20\x00\x77\x00\x68\x00\x69\x00\x6c\ +\x00\x65\x00\x20\x00\x74\x00\x61\x00\x73\x00\x6b\x00\x62\x00\x61\ +\x00\x72\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x77\ +\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x75\x00\x73\x00\x65\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\ +\x00\x43\x00\x41\x00\x44\x00\x20\x00\x54\x00\x61\x00\x73\x00\x6b\ +\x00\x76\x00\x69\x00\x65\x00\x77\x00\x20\x00\x73\x00\x79\x00\x73\ +\x00\x74\x00\x65\x00\x6d\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ +\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x74\x00\x73\x00\x20\ +\x00\x75\x00\x73\x00\x65\x00\x72\x00\x20\x00\x69\x00\x6e\x00\x74\ +\x00\x65\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\xcf\x54\x68\x69\x73\x20\x69\ +\x73\x20\x74\x68\x65\x20\x55\x49\x20\x6d\x6f\x64\x65\x20\x69\x6e\ +\x20\x77\x68\x69\x63\x68\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\ +\x20\x6d\x6f\x64\x75\x6c\x65\x20\x77\x69\x6c\x6c\x20\x77\x6f\x72\ +\x6b\x3a\x20\x54\x6f\x6f\x6c\x62\x61\x72\x20\x6d\x6f\x64\x65\x20\ +\x77\x69\x6c\x6c\x20\x70\x6c\x61\x63\x65\x20\x61\x6c\x6c\x20\x44\ +\x72\x61\x66\x74\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x20\x69\x6e\ +\x20\x61\x20\x73\x65\x70\x61\x72\x61\x74\x65\x20\x74\x6f\x6f\x6c\ +\x62\x61\x72\x2c\x20\x77\x68\x69\x6c\x65\x20\x74\x61\x73\x6b\x62\ +\x61\x72\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x75\x73\x65\ +\x20\x74\x68\x65\x20\x46\x72\x65\x65\x43\x41\x44\x20\x54\x61\x73\ +\x6b\x76\x69\x65\x77\x20\x73\x79\x73\x74\x65\x6d\x20\x66\x6f\x72\ +\x20\x61\x6c\x6c\x20\x69\x74\x73\x20\x75\x73\x65\x72\x20\x69\x6e\ +\x74\x65\x72\x61\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x82\x04\x21\x04\x42\x04\x30\x04\x3d\x04\x34\x04\x30\x04\x40\x04\ +\x42\x04\x3d\x04\x38\x04\x39\x00\x20\x04\x3a\x04\x3e\x04\x3b\x04\ +\x56\x04\x40\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\ +\x31\x20\x19\x04\x54\x04\x3a\x04\x42\x04\x56\x04\x32\x00\x20\x04\ +\x41\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x4e\x04\x32\x04\x30\x04\ +\x3d\x04\x38\x04\x45\x00\x20\x04\x32\x00\x20\x04\x40\x04\x35\x04\ +\x36\x04\x38\x04\x3c\x04\x56\x00\x20\x04\x3a\x04\x3e\x04\x3d\x04\ +\x41\x04\x42\x04\x40\x04\x43\x04\x3a\x04\x42\x04\x3e\x04\x40\x04\ +\x30\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x54\x68\x69\ +\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\ +\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x62\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x20\x77\ +\x68\x69\x6c\x65\x20\x69\x6e\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\ +\x74\x69\x6f\x6e\x20\x6d\x6f\x64\x65\x2e\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x01\xce\x04\x26\x04\x35\x00\x20\x04\x41\x04\x42\x04\x30\x04\x3d\ +\x04\x34\x04\x30\x04\x40\x04\x42\x04\x3d\x04\x38\x04\x39\x00\x20\ +\x04\x48\x04\x40\x04\x38\x04\x44\x04\x42\x00\x20\x04\x34\x04\x3b\ +\x04\x4f\x00\x20\x04\x3c\x04\x30\x04\x3b\x04\x4e\x04\x32\x04\x30\ +\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x42\x04\x35\x04\x3a\x04\x41\ +\x04\x42\x04\x43\x00\x20\x04\x42\x04\x30\x00\x20\x04\x40\x04\x3e\ +\x04\x37\x04\x3c\x04\x56\x04\x40\x04\x3d\x04\x3e\x04\x41\x04\x42\ +\x04\x35\x04\x39\x00\x2e\x00\x0a\x04\x26\x04\x35\x00\x20\x04\x3c\ +\x04\x3e\x04\x36\x04\x35\x00\x20\x04\x31\x04\x43\x04\x42\x04\x38\ +\x00\x20\x04\x56\x04\x3c\x20\x19\x04\x4f\x00\x20\x04\x48\x04\x40\ +\x04\x38\x04\x44\x04\x42\x04\x43\x00\x20\x04\x4f\x04\x3a\x00\x20\ +\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x22\x00\x2c\ +\x00\x20\x04\x41\x04\x42\x04\x30\x04\x3d\x04\x34\x04\x30\x04\x40\ +\x04\x42\x04\x3d\x04\x38\x04\x39\x00\x20\x04\x41\x04\x42\x04\x38\ +\x04\x3b\x04\x4c\x00\x20\x00\x2d\x00\x20\x04\x4f\x04\x3a\x00\x20\ +\x00\x22\x00\x73\x00\x61\x00\x6e\x00\x73\x00\x22\x00\x2c\x00\x20\ +\x00\x22\x00\x73\x00\x65\x00\x72\x00\x69\x00\x66\x00\x22\x00\x0a\ +\x04\x30\x04\x31\x04\x3e\x00\x20\x00\x22\x00\x6d\x00\x6f\x00\x6e\ +\x00\x6f\x00\x22\x00\x2c\x00\x20\x04\x30\x04\x31\x04\x3e\x00\x20\ +\x04\x41\x04\x56\x04\x3c\x04\x35\x04\x39\x04\x41\x04\x42\x04\x32\ +\x04\x3e\x00\x20\x04\x48\x04\x40\x04\x38\x04\x44\x04\x42\x04\x56\ +\x04\x32\x00\x20\x04\x4f\x04\x3a\x00\x20\x00\x22\x00\x41\x00\x72\ +\x00\x69\x00\x61\x00\x6c\x00\x2c\x00\x48\x00\x65\x00\x6c\x00\x76\ +\x00\x65\x00\x74\x00\x69\x00\x63\x00\x61\x00\x2c\x00\x73\x00\x61\ +\x00\x6e\x00\x73\x00\x22\x00\x2c\x00\x20\x04\x47\x04\x38\x00\x20\ +\x04\x56\x04\x3c\x20\x19\x04\x4f\x00\x20\x04\x56\x04\x37\x00\x0a\ +\x04\x41\x04\x42\x04\x38\x04\x3b\x04\x35\x04\x3c\x00\x20\x00\x2d\ +\x00\x20\x04\x4f\x04\x3a\x00\x20\x00\x22\x00\x41\x00\x72\x00\x69\ +\x00\x61\x00\x6c\x00\x3a\x00\x42\x00\x6f\x00\x6c\x00\x64\x00\x22\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\xf2\x54\x68\x69\x73\x20\x69\ +\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x66\x6f\ +\x6e\x74\x20\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\x61\x6c\x6c\x20\ +\x44\x72\x61\x66\x74\x20\x74\x65\x78\x74\x73\x20\x61\x6e\x64\x20\ +\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x2e\x0a\x49\x74\x20\x63\ +\x61\x6e\x20\x62\x65\x20\x61\x20\x66\x6f\x6e\x74\x20\x6e\x61\x6d\ +\x65\x20\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\x72\x69\x61\x6c\ +\x22\x2c\x20\x61\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x73\x74\x79\ +\x6c\x65\x20\x73\x75\x63\x68\x20\x61\x73\x20\x22\x73\x61\x6e\x73\ +\x22\x2c\x20\x22\x73\x65\x72\x69\x66\x22\x0a\x6f\x72\x20\x22\x6d\ +\x6f\x6e\x6f\x22\x2c\x20\x6f\x72\x20\x61\x20\x66\x61\x6d\x69\x6c\ +\x79\x20\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\x72\x69\x61\x6c\ +\x2c\x48\x65\x6c\x76\x65\x74\x69\x63\x61\x2c\x73\x61\x6e\x73\x22\ +\x20\x6f\x72\x20\x61\x20\x6e\x61\x6d\x65\x20\x77\x69\x74\x68\x20\ +\x61\x20\x73\x74\x79\x6c\x65\x0a\x73\x75\x63\x68\x20\x61\x73\x20\ +\x22\x41\x72\x69\x61\x6c\x3a\x42\x6f\x6c\x64\x22\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x4a\x04\x21\x04\x42\x04\x30\x04\x3d\x04\x34\x04\x30\ +\x04\x40\x04\x42\x04\x3d\x04\x35\x00\x20\x04\x56\x04\x3c\x20\x19\ +\x04\x4f\x00\x20\x04\x33\x04\x40\x04\x43\x04\x3f\x04\x38\x00\x20\ +\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3a\x04\x3e\x04\x3d\x04\x41\ +\x04\x42\x04\x40\x04\x43\x04\x3a\x04\x46\x04\x56\x04\x57\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x38\x54\x68\x69\x73\x20\x69\x73\x20\ +\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x67\x72\x6f\x75\ +\x70\x20\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\x63\x6f\x6e\x73\x74\ +\x72\x75\x63\x74\x69\x6f\x6e\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x84\x04\x26\x04\x35\x04\x39\x00\x20\ +\x04\x3c\x04\x35\x04\x42\x04\x3e\x04\x34\x00\x20\x04\x3e\x04\x31\ +\x04\x40\x04\x30\x04\x3d\x04\x38\x04\x39\x00\x20\x04\x34\x04\x3b\ +\x04\x4f\x00\x20\x04\x56\x04\x3c\x04\x3f\x04\x3e\x04\x40\x04\x42\ +\x04\x43\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x3a\ +\x04\x3e\x04\x3b\x04\x4c\x04\x3e\x04\x40\x04\x43\x00\x20\x04\x3e\ +\x04\x31\x00\x27\x04\x54\x04\x3a\x04\x42\x04\x30\x00\x20\x00\x53\ +\x00\x56\x00\x47\x00\x20\x04\x34\x04\x3e\x00\x20\x00\x46\x00\x72\ +\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x2e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x47\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\ +\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x63\x68\x6f\x6f\x73\x65\x64\ +\x20\x66\x6f\x72\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\x53\ +\x56\x47\x20\x6f\x62\x6a\x65\x63\x74\x20\x63\x6f\x6c\x6f\x72\x20\ +\x69\x6e\x74\x6f\x20\x46\x72\x65\x65\x43\x41\x44\x2e\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x02\x30\x04\x1c\x04\x35\x04\x42\x04\x3e\x04\x34\x00\ +\x20\x04\x49\x04\x3e\x00\x20\x04\x32\x04\x38\x04\x3a\x04\x3e\x04\ +\x40\x04\x38\x04\x41\x04\x42\x04\x3e\x04\x32\x04\x43\x04\x54\x04\ +\x42\x04\x4c\x04\x41\x04\x4f\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\ +\x20\x04\x3f\x04\x35\x04\x40\x04\x35\x04\x42\x04\x32\x04\x3e\x04\ +\x40\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x3a\x04\x3e\x04\ +\x3b\x04\x4c\x04\x3e\x04\x40\x04\x43\x00\x20\x04\x3e\x04\x31\x20\ +\x19\x04\x54\x04\x3a\x04\x42\x04\x30\x00\x20\x04\x37\x00\x20\x04\ +\x44\x04\x3e\x04\x40\x04\x3c\x04\x30\x04\x42\x04\x43\x00\x20\x00\ +\x44\x00\x58\x00\x46\x00\x20\x04\x43\x00\x20\x04\x44\x04\x3e\x04\ +\x40\x04\x3c\x04\x30\x04\x42\x00\x20\x00\x46\x00\x72\x00\x65\x00\ +\x65\x00\x43\x00\x41\x00\x44\x00\x2e\x00\x0a\x04\x2f\x04\x3a\x04\ +\x49\x04\x3e\x00\x20\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x3d\x04\ +\x3e\x00\x20\x04\x3a\x04\x30\x04\x40\x04\x42\x04\x43\x00\x20\x04\ +\x3f\x04\x35\x04\x40\x04\x35\x04\x42\x04\x32\x04\x3e\x04\x40\x04\ +\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\x00\x28\x04\x41\x04\x3f\x04\ +\x56\x04\x32\x04\x41\x04\x42\x04\x30\x04\x32\x04\x3b\x04\x35\x04\ +\x3d\x04\x3d\x04\x4f\x00\x29\x00\x20\x04\x3a\x04\x3e\x04\x3b\x04\ +\x4c\x04\x3e\x04\x40\x04\x43\x00\x2c\x00\x20\x04\x12\x04\x38\x00\ +\x20\x04\x3f\x04\x3e\x04\x32\x04\x38\x04\x3d\x04\x3d\x04\x56\x00\ +\x20\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x42\x04\x38\x00\x20\x04\ +\x44\x04\x30\x04\x39\x04\x3b\x00\x20\x04\x3f\x04\x35\x04\x40\x04\ +\x35\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x35\x04\x3d\x04\x3d\x04\ +\x4f\x00\x20\x04\x3a\x04\x3e\x04\x3b\x04\x4c\x04\x3e\x04\x40\x04\ +\x43\x00\x2c\x00\x20\x04\x49\x04\x3e\x00\x20\x04\x3c\x04\x56\x04\ +\x41\x04\x42\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x42\x04\x30\x04\ +\x31\x04\x3b\x04\x38\x04\x46\x04\x4e\x00\x20\x04\x3f\x04\x35\x04\ +\x40\x04\x35\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x35\x04\x3d\x04\ +\x3d\x04\x4f\x00\x2c\x00\x20\x04\x37\x04\x33\x04\x56\x04\x34\x04\ +\x3d\x04\x3e\x00\x20\x04\x4f\x04\x3a\x04\x3e\x04\x57\x00\x20\x04\ +\x3a\x04\x3e\x04\x3b\x04\x4c\x04\x3e\x04\x40\x04\x38\x00\x20\x04\ +\x31\x04\x43\x04\x34\x04\x43\x04\x42\x04\x4c\x00\x20\x04\x3f\x04\ +\x35\x04\x40\x04\x35\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x35\x04\ +\x3d\x04\x56\x00\x20\x04\x32\x00\x20\x04\x42\x04\x3e\x04\x32\x04\ +\x49\x04\x38\x04\x3d\x04\x38\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\ +\x56\x04\x39\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\xe3\x54\ +\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\ +\x64\x20\x63\x68\x6f\x6f\x73\x65\x64\x20\x66\x6f\x72\x20\x69\x6d\ +\x70\x6f\x72\x74\x69\x6e\x67\x20\x6f\x72\x20\x74\x72\x61\x6e\x73\ +\x6c\x61\x74\x69\x6e\x67\x20\x44\x58\x46\x20\x6f\x62\x6a\x65\x63\ +\x74\x20\x63\x6f\x6c\x6f\x72\x20\x69\x6e\x74\x6f\x20\x46\x72\x65\ +\x65\x43\x41\x44\x2e\x20\x0a\x49\x66\x20\x63\x6f\x6c\x6f\x72\x20\ +\x6d\x61\x70\x70\x69\x6e\x67\x20\x69\x73\x20\x63\x68\x6f\x6f\x73\ +\x65\x64\x2c\x20\x79\x6f\x75\x20\x6d\x75\x73\x74\x20\x63\x68\x6f\ +\x6f\x73\x65\x20\x61\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\ +\x69\x6e\x67\x20\x66\x69\x6c\x65\x20\x63\x6f\x6e\x74\x61\x69\x6e\ +\x69\x6e\x67\x20\x61\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6f\ +\x6e\x20\x74\x61\x62\x6c\x65\x20\x74\x68\x61\x74\x20\x77\x69\x6c\ +\x6c\x20\x63\x6f\x6e\x76\x65\x72\x74\x20\x63\x6f\x6c\x6f\x72\x73\ +\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x73\ +\x2e\x0a\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\xfc\x00\x54\x00\x68\x00\x69\ +\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x6f\x00\x72\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x61\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\x66\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\ +\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x74\x00\x65\ +\x00\x78\x00\x74\x00\x73\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\ +\x00\x20\x00\x74\x00\x68\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x64\ +\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\ +\x00\x73\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x76\x00\x65\ +\x00\x72\x00\x74\x00\x69\x00\x63\x00\x61\x00\x6c\x00\x2e\x00\x20\ +\x00\x44\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\ +\x00\x69\x00\x73\x00\x20\x00\x6c\x00\x65\x00\x66\x00\x74\x00\x2c\ +\x00\x20\x00\x77\x00\x68\x00\x69\x00\x63\x00\x68\x00\x20\x00\x69\ +\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x49\x00\x53\ +\x00\x4f\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\ +\x00\x72\x00\x64\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7e\ +\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6f\x72\x69\x65\ +\x6e\x74\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x64\ +\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x20\x74\x65\x78\x74\x73\x20\x77\ +\x68\x65\x6e\x20\x74\x68\x6f\x73\x65\x20\x64\x69\x6d\x65\x6e\x73\ +\x69\x6f\x6e\x73\x20\x61\x72\x65\x20\x76\x65\x72\x74\x69\x63\x61\ +\x6c\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x69\x73\x20\x6c\x65\ +\x66\x74\x2c\x20\x77\x68\x69\x63\x68\x20\x69\x73\x20\x74\x68\x65\ +\x20\x49\x53\x4f\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x2e\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x01\x1c\x04\x26\x04\x35\x00\x20\x04\x37\x04\x3d\ +\x04\x30\x04\x47\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x32\ +\x04\x38\x04\x3a\x04\x3e\x04\x40\x04\x38\x04\x41\x04\x42\x04\x3e\ +\x04\x32\x04\x43\x04\x54\x04\x42\x04\x4c\x04\x41\x04\x4f\x00\x20\ +\x04\x44\x04\x43\x04\x3d\x04\x3a\x04\x46\x04\x56\x04\x4f\x04\x3c\ +\x04\x38\x00\x2c\x00\x20\x04\x49\x04\x3e\x00\x20\x04\x32\x04\x38\ +\x04\x3a\x04\x3e\x04\x40\x04\x38\x04\x41\x04\x42\x04\x3e\x04\x32\ +\x04\x43\x04\x4e\x04\x42\x04\x4c\x00\x20\x04\x3e\x04\x31\x04\x40\ +\x04\x30\x04\x45\x04\x43\x04\x3d\x04\x3e\x04\x3a\x00\x20\x04\x42\ +\x04\x3e\x04\x47\x04\x3d\x04\x3e\x04\x41\x04\x42\x04\x56\x00\x2e\ +\x00\x0a\x04\x17\x04\x3d\x04\x30\x04\x47\x04\x35\x04\x3d\x04\x3d\ +\x04\x4f\x00\x2c\x00\x20\x04\x49\x04\x3e\x00\x20\x04\x32\x04\x56\ +\x04\x34\x04\x45\x04\x38\x04\x3b\x04\x4f\x04\x4e\x04\x42\x04\x4c\ +\x04\x41\x04\x4f\x00\x20\x04\x3d\x04\x30\x00\x20\x04\x3c\x04\x35\ +\x04\x3d\x04\x48\x04\x43\x00\x20\x04\x32\x04\x35\x04\x3b\x04\x38\ +\x04\x47\x04\x38\x04\x3d\x04\x43\x00\x2c\x00\x20\x04\x42\x04\x30\ +\x04\x3a\x04\x3e\x04\x36\x00\x20\x04\x31\x04\x43\x04\x34\x04\x43\ +\x04\x42\x04\x4c\x00\x20\x04\x32\x04\x56\x04\x40\x04\x3d\x04\x56\ +\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7b\x54\x68\x69\x73\ +\x20\x69\x73\x20\x74\x68\x65\x20\x76\x61\x6c\x75\x65\x20\x75\x73\ +\x65\x64\x20\x62\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\ +\x74\x68\x61\x74\x20\x75\x73\x65\x20\x61\x20\x74\x6f\x6c\x65\x72\ +\x61\x6e\x63\x65\x2e\x0a\x56\x61\x6c\x75\x65\x73\x20\x77\x69\x74\ +\x68\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x63\x65\x73\x20\x62\x65\ +\x6c\x6f\x77\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x77\ +\x69\x6c\x6c\x20\x62\x65\x20\x74\x72\x65\x61\x74\x65\x64\x20\x61\ +\x73\x20\x73\x61\x6d\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x04\ +\x22\x04\x3e\x04\x47\x04\x3d\x04\x56\x04\x41\x04\x42\x04\x4c\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\x6f\x6c\x65\x72\x61\x6e\ +\x63\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x04\x1f\x04\x30\x04\x3d\ +\x04\x35\x04\x3b\x04\x4c\x00\x20\x04\x56\x04\x3d\x04\x41\x04\x42\ +\x04\x40\x04\x43\x04\x3c\x04\x35\x04\x3d\x04\x42\x04\x56\x04\x32\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x54\x6f\x6f\x6c\x62\x61\ +\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x54\x00\x72\x00\x61\x00\ +\x6e\x00\x73\x00\x6c\x00\x61\x00\x74\x00\x65\x00\x20\x00\x77\x00\ +\x68\x00\x69\x00\x74\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\ +\x65\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\ +\x74\x00\x6f\x00\x20\x00\x62\x00\x6c\x00\x61\x00\x63\x00\x6b\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x23\x54\x72\x61\x6e\x73\x6c\x61\ +\x74\x65\x20\x77\x68\x69\x74\x65\x20\x6c\x69\x6e\x65\x20\x63\x6f\ +\x6c\x6f\x72\x20\x74\x6f\x20\x62\x6c\x61\x63\x6b\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x40\x00\x54\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x6c\ +\x00\x61\x00\x74\x00\x65\x00\x64\x00\x20\x00\x28\x00\x66\x00\x6f\ +\x00\x72\x00\x20\x00\x70\x00\x72\x00\x69\x00\x6e\x00\x74\x00\x20\ +\x00\x26\x00\x20\x00\x64\x00\x69\x00\x73\x00\x70\x00\x6c\x00\x61\ +\x00\x79\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x54\x72\ +\x61\x6e\x73\x6c\x61\x74\x65\x64\x20\x28\x66\x6f\x72\x20\x70\x72\ +\x69\x6e\x74\x20\x26\x20\x64\x69\x73\x70\x6c\x61\x79\x29\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x50\x04\x11\x04\x40\x04\x30\x04\x42\x04\x38\ +\x00\x20\x04\x41\x04\x42\x04\x30\x04\x3d\x04\x34\x04\x30\x04\x40\ +\x04\x42\x04\x3d\x04\x38\x04\x39\x00\x20\x04\x3a\x04\x3e\x04\x3b\ +\x04\x56\x04\x40\x00\x20\x04\x42\x04\x30\x00\x20\x04\x42\x04\x3e\ +\x04\x32\x04\x49\x04\x38\x04\x3d\x04\x43\x00\x20\x04\x3b\x04\x56\ +\x04\x3d\x04\x56\x04\x57\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\ +\x55\x73\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\ +\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x2a\x04\x12\x04\x38\x04\x3a\x04\x3e\x04\ +\x40\x04\x38\x04\x41\x04\x42\x04\x3e\x04\x32\x04\x43\x04\x32\x04\ +\x30\x04\x42\x04\x38\x00\x20\x04\x41\x04\x56\x04\x42\x04\x3a\x04\ +\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x55\x73\x65\x20\x67\ +\x72\x69\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\x00\x55\x00\x73\x00\ +\x65\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\ +\x72\x00\x64\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\ +\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x20\x55\x73\x65\x20\x73\x74\x61\x6e\x64\x61\x72\ +\x64\x20\x66\x6f\x6e\x74\x20\x73\x69\x7a\x65\x20\x66\x6f\x72\x20\ +\x74\x65\x78\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4a\x04\x12\x04\ +\x35\x04\x40\x04\x42\x04\x38\x04\x3a\x04\x30\x04\x3b\x04\x4c\x04\ +\x3d\x04\x30\x00\x20\x04\x3e\x04\x40\x04\x56\x04\x54\x04\x3d\x04\ +\x42\x04\x30\x04\x46\x04\x56\x04\x4f\x00\x20\x04\x42\x04\x35\x04\ +\x3a\x04\x41\x04\x42\x04\x43\x00\x20\x04\x40\x04\x3e\x04\x37\x04\ +\x3c\x04\x56\x04\x40\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x24\x56\x65\x72\x74\x69\x63\x61\x6c\x20\x64\x69\x6d\x65\x6e\x73\ +\x69\x6f\x6e\x73\x20\x74\x65\x78\x74\x20\x6f\x72\x69\x65\x6e\x74\ +\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xe6\x00\x57\x00\ +\x68\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x53\x00\x56\x00\ +\x47\x00\x20\x00\x76\x00\x69\x00\x65\x00\x77\x00\x73\x00\x2c\x00\ +\x20\x00\x6d\x00\x61\x00\x6b\x00\x65\x00\x20\x00\x61\x00\x6c\x00\ +\x6c\x00\x20\x00\x77\x00\x68\x00\x69\x00\x74\x00\x65\x00\x20\x00\ +\x6c\x00\x69\x00\x6e\x00\x65\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\ +\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\x20\x00\ +\x69\x00\x6e\x00\x20\x00\x62\x00\x6c\x00\x61\x00\x63\x00\x6b\x00\ +\x2c\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x62\x00\x65\x00\ +\x74\x00\x74\x00\x65\x00\x72\x00\x20\x00\x72\x00\x65\x00\x61\x00\ +\x64\x00\x61\x00\x62\x00\x69\x00\x6c\x00\x69\x00\x74\x00\x79\x00\ +\x20\x00\x61\x00\x67\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x74\x00\ +\x20\x00\x77\x00\x68\x00\x69\x00\x74\x00\x65\x00\x20\x00\x62\x00\ +\x61\x00\x63\x00\x6b\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x6e\x00\ +\x64\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x73\x57\x68\x65\ +\x6e\x20\x65\x78\x70\x6f\x72\x74\x69\x6e\x67\x20\x53\x56\x47\x20\ +\x76\x69\x65\x77\x73\x2c\x20\x6d\x61\x6b\x65\x20\x61\x6c\x6c\x20\ +\x77\x68\x69\x74\x65\x20\x6c\x69\x6e\x65\x77\x6f\x72\x6b\x20\x61\ +\x70\x70\x65\x61\x72\x20\x69\x6e\x20\x62\x6c\x61\x63\x6b\x2c\x20\ +\x66\x6f\x72\x20\x62\x65\x74\x74\x65\x72\x20\x72\x65\x61\x64\x61\ +\x62\x69\x6c\x69\x74\x79\x20\x61\x67\x61\x69\x6e\x73\x74\x20\x77\ +\x68\x69\x74\x65\x20\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x73\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x01\x9c\x04\x1f\x04\x40\x04\x38\x00\x20\ +\x04\x35\x04\x3a\x04\x41\x04\x3f\x04\x3e\x04\x40\x04\x42\x04\x43\ +\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x56\x00\x20\x04\x41\x04\x3f\ +\x04\x3b\x04\x30\x04\x39\x04\x3d\x04\x56\x04\x32\x00\x20\x04\x43\ +\x00\x20\x00\x44\x00\x58\x00\x46\x00\x2c\x00\x20\x04\x32\x04\x3e\ +\x04\x3d\x04\x38\x00\x20\x04\x42\x04\x40\x04\x30\x04\x3d\x04\x41\ +\x04\x44\x04\x3e\x04\x40\x04\x3c\x04\x43\x04\x4e\x04\x42\x04\x4c\ +\x04\x41\x04\x4f\x00\x20\x04\x43\x00\x20\x04\x3f\x04\x3e\x04\x3b\ +\x04\x56\x04\x3b\x04\x56\x04\x3d\x04\x56\x04\x57\x00\x2e\x00\x20\ +\x04\x26\x04\x35\x00\x20\x04\x37\x04\x3d\x04\x30\x04\x47\x04\x35\ +\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x54\x00\x20\x04\x3c\x04\x30\ +\x04\x3a\x04\x41\x04\x38\x04\x3c\x04\x30\x04\x3b\x04\x4c\x04\x3d\ +\x04\x3e\x04\x4e\x00\x20\x04\x34\x04\x3e\x04\x32\x04\x36\x04\x38\ +\x04\x3d\x04\x3e\x04\x4e\x00\x20\x04\x3a\x04\x3e\x04\x36\x04\x3d\ +\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\x41\x04\x35\x04\x33\x04\x3c\ +\x04\x35\x04\x3d\x04\x42\x04\x43\x00\x20\x04\x3f\x04\x3e\x04\x3b\ +\x04\x56\x04\x3b\x04\x56\x04\x3d\x04\x56\x04\x57\x00\x2e\x00\x20\ +\x04\x2f\x04\x3a\x04\x49\x04\x3e\x00\x20\x04\x37\x04\x3d\x04\x30\ +\x04\x47\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x34\x04\x3e\ +\x04\x40\x04\x56\x04\x32\x04\x3d\x04\x4e\x04\x54\x00\x20\x00\x30\ +\x00\x2c\x00\x20\x04\x42\x04\x3e\x00\x20\x04\x32\x04\x35\x04\x41\ +\x04\x4c\x00\x20\x04\x41\x04\x3f\x04\x3b\x04\x30\x04\x39\x04\x3d\ +\x00\x20\x04\x40\x04\x3e\x04\x37\x04\x33\x04\x3b\x04\x4f\x04\x34\ +\x04\x30\x04\x54\x04\x42\x04\x4c\x04\x41\x04\x4f\x00\x20\x04\x4f\ +\x04\x3a\x00\x20\x04\x32\x04\x56\x04\x34\x04\x40\x04\x56\x04\x37\ +\x04\x3e\x04\x3a\x00\x20\x04\x3f\x04\x40\x04\x4f\x04\x3c\x04\x3e\ +\x04\x57\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\xc2\x57\x68\ +\x65\x6e\x20\x65\x78\x70\x6f\x72\x74\x69\x6e\x67\x20\x73\x70\x6c\ +\x69\x6e\x65\x73\x20\x74\x6f\x20\x44\x58\x46\x2c\x20\x74\x68\x65\ +\x79\x20\x61\x72\x65\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x65\ +\x64\x20\x69\x6e\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x73\x2e\x20\ +\x54\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x69\x73\x20\x74\x68\ +\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6c\x65\x6e\x67\x74\x68\ +\x20\x6f\x66\x20\x65\x61\x63\x68\x20\x6f\x66\x20\x74\x68\x65\x20\ +\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x20\x73\x65\x67\x6d\x65\x6e\x74\ +\x73\x2e\x20\x49\x66\x20\x30\x2c\x20\x74\x68\x65\x6e\x20\x74\x68\ +\x65\x20\x77\x68\x6f\x6c\x65\x20\x73\x70\x6c\x69\x6e\x65\x20\x69\ +\x73\x20\x74\x72\x65\x61\x74\x65\x64\x20\x61\x73\x20\x61\x20\x73\ +\x74\x72\x61\x69\x67\x68\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x2e\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x16\x00\x58\x00\x59\x00\x20\x00\x28\ +\x04\x17\x04\x32\x04\x35\x04\x40\x04\x45\x04\x43\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x08\x58\x59\x20\x28\x54\x6f\x70\x29\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x58\x00\x5a\x00\x20\x00\x28\ +\x04\x17\x00\x20\x04\x3f\x04\x35\x04\x40\x04\x35\x04\x34\x04\x43\ +\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x58\x5a\x20\x28\ +\x46\x72\x6f\x6e\x74\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x59\ +\x00\x5a\x00\x20\x00\x28\x04\x17\x00\x20\x04\x31\x04\x3e\x04\x3a\ +\x04\x43\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x59\x5a\ +\x20\x28\x53\x69\x64\x65\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\x00\ +\x61\x00\x6c\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x61\ +\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\xca\x04\x32\x04\x41\x04\x42\ +\x04\x30\x04\x3d\x04\x3e\x04\x32\x04\x56\x04\x42\x04\x4c\x00\x2c\ +\x00\x20\x04\x4f\x04\x3a\x04\x49\x04\x3e\x00\x20\x04\x45\x04\x3e\ +\x04\x47\x04\x35\x04\x42\x04\x35\x00\x20\x04\x32\x04\x38\x04\x3a\ +\x04\x3e\x04\x40\x04\x38\x04\x41\x04\x42\x04\x3e\x04\x32\x04\x43\ +\x04\x32\x04\x30\x04\x42\x04\x38\x00\x20\x04\x3a\x04\x3e\x04\x3b\ +\x04\x56\x04\x40\x00\x20\x04\x42\x04\x30\x00\x20\x04\x48\x04\x38\ +\x04\x40\x04\x38\x04\x3d\x04\x43\x00\x20\x04\x3b\x04\x56\x04\x3d\ +\x04\x56\x04\x57\x00\x20\x04\x3d\x04\x30\x00\x20\x04\x3f\x04\x30\ +\x04\x3d\x04\x35\x04\x3b\x04\x56\x00\x20\x04\x56\x04\x3d\x04\x41\ +\x04\x42\x04\x40\x04\x43\x04\x3c\x04\x35\x04\x3d\x04\x42\x04\x56\ +\x04\x32\x00\x20\x04\x37\x04\x30\x00\x20\x04\x37\x04\x30\x04\x3c\ +\x04\x3e\x04\x32\x04\x47\x04\x43\x04\x32\x04\x30\x04\x3d\x04\x3d\ +\x04\x4f\x04\x3c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x63\x68\ +\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x79\x6f\x75\x20\ +\x77\x61\x6e\x74\x20\x74\x6f\x20\x75\x73\x65\x20\x74\x68\x65\x20\ +\x63\x6f\x6c\x6f\x72\x2f\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\ +\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x74\x6f\x6f\x6c\x62\x61\x72\ +\x20\x61\x73\x20\x64\x65\x66\x61\x75\x6c\x74\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x08\x00\x63\x00\x74\x00\x72\x00\x6c\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x04\x63\x74\x72\x6c\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\xce\x00\x69\x00\x66\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\ +\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x61\x00\x20\x00\x77\x00\ +\x69\x00\x64\x00\x67\x00\x65\x00\x74\x00\x20\x00\x69\x00\x6e\x00\ +\x64\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x75\x00\x72\x00\ +\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x77\x00\x6f\x00\x72\x00\ +\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x70\x00\x6c\x00\x61\x00\ +\x6e\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x69\x00\x65\x00\x6e\x00\ +\x74\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\ +\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\x73\x00\x20\x00\x64\x00\ +\x75\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x64\x00\x72\x00\ +\x61\x00\x77\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x70\x00\ +\x65\x00\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x67\x69\x66\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x61\x20\x77\x69\x64\x67\x65\x74\x20\x69\x6e\ +\x64\x69\x63\x61\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x63\x75\x72\ +\x72\x65\x6e\x74\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\x6c\x61\ +\x6e\x65\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x61\ +\x70\x70\x65\x61\x72\x73\x20\x64\x75\x72\x69\x6e\x67\x20\x64\x72\ +\x61\x77\x69\x6e\x67\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x01\x26\x00\x69\x00\x66\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\ +\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\ +\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x73\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x6c\x00\x61\ +\x00\x79\x00\x65\x00\x72\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\ +\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x6a\x00\x6f\x00\x69\ +\x00\x6e\x00\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\ +\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x42\ +\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x73\x00\x2c\x00\x20\x00\x74\ +\x00\x75\x00\x72\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x64\x00\x69\x00\x73\x00\x70\x00\x6c\ +\x00\x61\x00\x79\x00\x20\x00\x66\x00\x61\x00\x73\x00\x74\x00\x65\ +\x00\x72\x00\x2c\x00\x20\x00\x62\x00\x75\x00\x74\x00\x20\x00\x6d\ +\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\ +\x00\x65\x00\x6d\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x73\x00\x20\ +\x00\x65\x00\x61\x00\x73\x00\x69\x00\x6c\x00\x79\x00\x20\x00\x65\ +\x00\x64\x00\x69\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x93\x69\x66\x20\x74\x68\x69\x73\x20\ +\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x61\x6d\ +\x65\x20\x6c\x61\x79\x65\x72\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\ +\x20\x6a\x6f\x69\x6e\x65\x64\x20\x69\x6e\x74\x6f\x20\x44\x72\x61\ +\x66\x74\x20\x42\x6c\x6f\x63\x6b\x73\x2c\x20\x74\x75\x72\x6e\x69\ +\x6e\x67\x20\x74\x68\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x66\ +\x61\x73\x74\x65\x72\x2c\x20\x62\x75\x74\x20\x6d\x61\x6b\x69\x6e\ +\x67\x20\x74\x68\x65\x6d\x20\x6c\x65\x73\x73\x20\x65\x61\x73\x69\ +\x6c\x79\x20\x65\x64\x69\x74\x61\x62\x6c\x65\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x80\x04\x4f\x04\x3a\x04\x49\x04\x3e\x00\x20\x04\x46\x04\ +\x35\x00\x20\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3e\x00\ +\x2c\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\x04\x42\x04\ +\x38\x00\x20\x04\x3f\x04\x40\x04\x3e\x04\x41\x04\x42\x04\x3e\x04\ +\x40\x04\x43\x00\x20\x04\x30\x04\x40\x04\x3a\x04\x43\x04\x48\x04\ +\x30\x00\x20\x04\x31\x04\x43\x04\x34\x04\x43\x04\x42\x04\x4c\x00\ +\x20\x04\x42\x04\x30\x04\x3a\x04\x3e\x04\x36\x00\x20\x04\x56\x04\ +\x3c\x04\x3f\x04\x3e\x04\x40\x04\x42\x04\x3e\x04\x32\x04\x30\x04\ +\x3d\x04\x56\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3c\x69\x66\x20\ +\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x70\x61\x70\x65\x72\x20\x73\x70\x61\x63\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x69\x6d\x70\ +\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x7c\x04\x4f\x04\x3a\x04\x49\x04\x3e\x00\x20\x04\x46\x04\x35\x00\ +\x20\x04\x1d\x04\x15\x00\x20\x04\x3e\x04\x31\x04\x40\x04\x30\x04\ +\x3d\x04\x3e\x00\x2c\x00\x20\x04\x42\x04\x35\x04\x3a\x04\x41\x04\ +\x42\x04\x38\x00\x2f\x04\x3c\x04\x43\x04\x3b\x04\x4c\x04\x42\x04\ +\x38\x04\x42\x04\x35\x04\x3a\x04\x41\x04\x42\x04\x38\x00\x20\x04\ +\x3d\x04\x35\x00\x20\x04\x31\x04\x43\x04\x34\x04\x43\x04\x42\x04\ +\x4c\x00\x20\x04\x56\x04\x3c\x04\x3f\x04\x3e\x04\x40\x04\x42\x04\ +\x43\x04\x32\x04\x30\x04\x42\x04\x38\x04\x41\x04\x4c\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x34\x69\x66\x20\x74\x68\x69\x73\x20\x69\ +\x73\x20\x75\x6e\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x65\x78\ +\x74\x73\x2f\x6d\x74\x65\x78\x74\x73\x20\x77\x6f\x6e\x27\x74\x20\ +\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x04\x00\x70\x00\x78\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x02\x70\x78\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x04\x37\x04\x3c\x04\ +\x56\x04\x41\x04\x42\x04\x38\x04\x42\x04\x38\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x05\x73\x68\x69\x66\x74\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x4c\x04\x3a\x04\x3e\x04\x3b\x04\x56\x04\x40\x00\x20\x04\x37\ +\x04\x30\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\x32\x04\x47\x04\x30\ +\x04\x3d\x04\x3d\x04\x4f\x04\x3c\x00\x20\x04\x34\x04\x3b\x04\x4f\ +\x00\x20\x04\x3d\x04\x3e\x04\x32\x04\x38\x04\x45\x00\x20\x04\x3e\ +\x04\x31\x00\x27\x04\x54\x04\x3a\x04\x42\x04\x56\x04\x32\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x21\x74\x68\x65\x20\x64\x65\x66\x61\ +\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\ +\x77\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x50\x04\x41\x04\x42\x04\x30\x04\x3d\x04\x34\x04\x30\x04\x40\x04\ +\x42\x04\x3d\x04\x38\x04\x39\x00\x20\x04\x3a\x04\x3e\x04\x3b\x04\ +\x56\x04\x40\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x41\x04\ +\x38\x04\x3c\x04\x32\x04\x3e\x04\x3b\x04\x56\x04\x32\x00\x20\x04\ +\x3f\x04\x40\x04\x38\x04\x32\x00\x27\x04\x4f\x04\x37\x04\x3a\x04\ +\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x74\x68\x65\x20\x64\ +\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ +\x20\x73\x6e\x61\x70\x20\x73\x79\x6d\x62\x6f\x6c\x73\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x54\x04\x41\x04\x42\x04\x30\x04\x3d\x04\x34\x04\ +\x30\x04\x40\x04\x42\x04\x3d\x04\x30\x00\x20\x04\x48\x04\x38\x04\ +\x40\x04\x38\x04\x3d\x04\x30\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\ +\x56\x04\x57\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3d\x04\ +\x3e\x04\x32\x04\x38\x04\x45\x00\x20\x04\x3e\x04\x31\x00\x27\x04\ +\x54\x04\x3a\x04\x42\x04\x56\x04\x32\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x25\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x6c\ +\x69\x6e\x65\x77\x69\x64\x74\x68\x20\x66\x6f\x72\x20\x6e\x65\x77\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\ +\x00\x26\x04\x17\x04\x30\x04\x3a\x04\x40\x04\x38\x04\x42\x04\x38\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x26\x43\x6c\x6f\x73\x65\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\ +\x00\x26\x04\x1f\x04\x40\x04\x3e\x04\x34\x04\x3e\x04\x32\x04\x36\ +\x04\x38\x04\x42\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x26\x43\x6f\x6e\x74\x69\x6e\x75\x65\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x26\x04\x1a\x04\x3e\x04\ +\x3f\x04\x56\x04\x4e\x04\x32\x04\x30\x04\x42\x04\x38\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x05\x26\x43\x6f\x70\x79\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x26\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x06\x26\x44\x72\x61\x66\x74\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x14\x00\x26\x04\x17\x04\x30\x04\x32\ +\x04\x35\x04\x40\x04\x48\x04\x38\x04\x42\x04\x38\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x07\x26\x46\x69\x6e\x69\x73\x68\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x26\x00\ +\x4f\x00\x43\x00\x43\x00\x2d\x00\x73\x00\x74\x00\x79\x00\x6c\x00\ +\x65\x00\x20\x00\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x11\x26\x4f\x43\x43\x2d\x73\x74\ +\x79\x6c\x65\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x26\x04\x12\x04\x56\ +\x04\x34\x04\x3d\x04\x3e\x04\x41\x04\x3d\x04\x3e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x26\x52\x65\x6c\x61\x74\x69\x76\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\ +\x26\x04\x21\x04\x3a\x04\x30\x04\x41\x04\x43\x04\x32\x04\x30\x04\ +\x42\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x55\x6e\ +\x64\x6f\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x12\x00\x26\x04\x1e\x04\x47\x04\x38\x04\x41\x04\x42\x04\x38\ +\x04\x42\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x57\ +\x69\x70\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x32\x04\x10\x04\x3a\x04\x42\x04\x38\x04\x32\x04\x3d\x04\ +\x30\x00\x20\x04\x3a\x04\x3e\x04\x3c\x04\x30\x04\x3d\x04\x34\x04\ +\x30\x00\x20\x04\x3a\x04\x40\x04\x35\x04\x41\x04\x3b\x04\x35\x04\ +\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x41\ +\x63\x74\x69\x76\x65\x20\x44\x72\x61\x66\x74\x20\x63\x6f\x6d\x6d\ +\x61\x6e\x64\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x66\x00\x41\x00\x63\x00\x74\x00\x69\x00\x76\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ +\x6d\x00\x75\x00\x73\x00\x74\x00\x20\x00\x68\x00\x61\x00\x76\x00\ +\x65\x00\x20\x00\x6d\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x74\x00\ +\x68\x00\x61\x00\x6e\x00\x20\x00\x74\x00\x77\x00\x6f\x00\x20\x00\ +\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\x00\x2f\x00\x6e\x00\ +\x6f\x00\x64\x00\x65\x00\x73\x00\x0a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x33\x41\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x6d\x75\x73\x74\x20\x68\x61\x76\x65\x20\x6d\x6f\x72\x65\x20\ +\x74\x68\x61\x6e\x20\x74\x77\x6f\x20\x70\x6f\x69\x6e\x74\x73\x2f\ +\x6e\x6f\x64\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x42\x04\x14\x04\x3e\x04\x34\x04\x30\x04\x42\ +\x04\x38\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x43\x00\x20\ +\x04\x34\x04\x3e\x00\x20\x04\x3f\x04\x3e\x04\x42\x04\x3e\x04\x47\ +\x04\x3d\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\x3e\x04\x31\x00\x27\ +\x04\x54\x04\x3a\x04\x42\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x20\x41\x64\x64\x20\x70\x6f\x69\x6e\x74\x73\x20\x74\x6f\x20\ +\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\ +\x63\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x10\x00\x41\x00\x70\x00\x65\x00\x72\x00\x74\x00\x75\x00\x72\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x41\x70\x65\x72\ +\x74\x75\x72\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x20\x04\x1a\x04\x43\x04\x42\x04\x3e\x04\x32\x04\x30\ +\x00\x20\x04\x30\x04\x3f\x04\x35\x04\x40\x04\x42\x04\x43\x04\x40\ +\x04\x30\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x41\x70\ +\x65\x72\x74\x75\x72\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\x04\x17\ +\x04\x30\x04\x41\x04\x42\x04\x3e\x04\x41\x04\x43\x04\x32\x04\x30\ +\x04\x42\x04\x38\x00\x20\x04\x34\x04\x3e\x00\x20\x04\x32\x04\x38\ +\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x38\x04\x45\x00\x20\x04\x3e\ +\x04\x31\x00\x27\x04\x54\x04\x3a\x04\x42\x04\x56\x04\x32\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x19\x41\x70\x70\x6c\x79\x20\x74\x6f\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x08\x04\x14\x04\x43\x04\x33\x04\x30\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x03\x41\x72\x63\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0e\x00\x42\x00\x53\x00\x70\x00\x6c\x00\x69\ +\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x42\x53\ +\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x3e\x00\x43\x00\x61\x00\x6e\x00\x6e\x00\x6f\x00\ +\x74\x00\x20\x00\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x74\x00\x79\x00\x70\x00\ +\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x43\x61\x6e\ +\x6e\x6f\x74\x20\x6f\x66\x66\x73\x65\x74\x20\x74\x68\x69\x73\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x04\x26\x04\x35\ +\x04\x3d\x04\x42\x04\x40\x00\x20\x00\x58\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x08\x43\x65\x6e\x74\x65\x72\x20\x58\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x04\x17\x04\x3c\ +\x04\x56\x04\x3d\x04\x38\x04\x42\x04\x38\x00\x20\x04\x41\x04\x42\ +\x04\x38\x04\x3b\x04\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x43\x68\x61\x6e\x67\x65\x20\x53\x74\x79\x6c\x65\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\xb6\x00\x43\x00\x68\ +\x00\x65\x00\x63\x00\x6b\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x73\ +\x00\x68\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x20\x00\x61\x00\x70\ +\x00\x70\x00\x65\x00\x61\x00\x72\x00\x20\x00\x61\x00\x73\x00\x20\ +\x00\x66\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x64\x00\x2c\x00\x20\ +\x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\x77\x00\x69\x00\x73\ +\x00\x65\x00\x20\x00\x69\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\ +\x00\x6c\x00\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\x00\x72\ +\x00\x20\x00\x61\x00\x73\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\ +\x00\x66\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x28\x00\x69\ +\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5b\x43\x68\x65\x63\ +\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x74\x68\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x20\x73\x68\x6f\x75\x6c\x64\x20\x61\x70\x70\x65\ +\x61\x72\x20\x61\x73\x20\x66\x69\x6c\x6c\x65\x64\x2c\x20\x6f\x74\ +\x68\x65\x72\x77\x69\x73\x65\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\ +\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x77\x69\x72\x65\x66\x72\ +\x61\x6d\x65\x20\x28\x69\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x08\x04\x1a\x04\x3e\x04\x3b\x04\x3e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\x69\x72\x63\x6c\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\ +\x43\x00\x6f\x00\x6e\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\x00\ +\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x43\x6f\x6e\x74\x65\x78\x74\x20\x74\x6f\x6f\x6c\x73\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x88\ +\x04\x1a\x04\x3e\x04\x3e\x04\x40\x04\x34\x04\x38\x04\x3d\x04\x30\ +\x04\x42\x04\x38\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\x32\x04\x56\ +\x04\x34\x04\x3d\x04\x3e\x04\x48\x04\x35\x04\x3d\x04\x3d\x04\x4e\ +\x00\x20\x04\x34\x04\x3e\x00\x20\x04\x3e\x04\x41\x04\x42\x04\x30\ +\x04\x3d\x04\x3d\x04\x4c\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\x3f\ +\x04\x43\x04\x3d\x04\x3a\x04\x42\x04\x43\x00\x20\x04\x30\x04\x31\ +\x04\x3e\x00\x20\x04\x30\x04\x31\x04\x41\x04\x3e\x04\x3b\x04\x4e\ +\x04\x42\x04\x3d\x04\x56\x00\x20\x00\x28\x04\x1f\x04\x40\x04\x3e\ +\x04\x31\x04\x56\x04\x3b\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x36\x43\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x73\x20\x72\x65\ +\x6c\x61\x74\x69\x76\x65\x20\x74\x6f\x20\x6c\x61\x73\x74\x20\x70\ +\x6f\x69\x6e\x74\x20\x6f\x72\x20\x61\x62\x73\x6f\x6c\x75\x74\x65\ +\x20\x28\x53\x50\x41\x43\x45\x29\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x12\x04\x1a\x04\x3e\x04\x3f\x04\x56\ +\x04\x4e\x04\x32\x04\x30\x04\x42\x04\x38\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x43\x6f\x70\x79\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x43\x00\x6f\x00\x75\x00\x6c\ +\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x75\x00\x70\x00\x67\ +\x00\x72\x00\x61\x00\x64\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x73\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\ +\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x75\x70\x67\x72\x61\x64\x65\ +\x20\x74\x68\x65\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x04\ +\x21\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x38\x04\x42\x04\x38\x00\ +\x20\x04\x34\x04\x43\x04\x33\x04\x43\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0a\x43\x72\x65\x61\x74\x65\x20\x41\x72\x63\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x04\x21\x04\ +\x42\x04\x32\x04\x3e\x04\x40\x04\x38\x04\x42\x04\x38\x00\x20\x00\ +\x42\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0e\x43\x72\x65\x61\x74\x65\x20\x42\x53\ +\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x1a\x04\x21\x04\x42\x04\x32\x04\x3e\x04\x40\x04\ +\x38\x04\x42\x04\x38\x00\x20\x04\x3a\x04\x3e\x04\x3b\x04\x3e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x72\x65\x61\x74\x65\x20\ +\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x18\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\ +\x00\x65\x00\x20\x00\x44\x00\x57\x00\x69\x00\x72\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x72\x65\x61\x74\x65\x20\x44\ +\x57\x69\x72\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x1e\x04\x21\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x38\ +\x04\x42\x04\x38\x00\x20\x04\x40\x04\x3e\x04\x37\x04\x3c\x04\x56\ +\x04\x40\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\ +\x74\x65\x20\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x04\x21\x04\x42\ +\x04\x32\x04\x3e\x04\x40\x04\x38\x04\x42\x04\x38\x00\x20\x04\x31\ +\x04\x30\x04\x33\x04\x30\x04\x42\x04\x3e\x04\x3a\x04\x43\x04\x42\ +\x04\x3d\x04\x38\x04\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ +\x43\x72\x65\x61\x74\x65\x20\x50\x6f\x6c\x79\x67\x6f\x6e\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x04\x21\ +\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x38\x04\x42\x04\x38\x00\x20\ +\x04\x3f\x04\x40\x04\x4f\x04\x3c\x04\x3e\x04\x3a\x04\x43\x04\x42\ +\x04\x3d\x04\x38\x04\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x43\x72\x65\x61\x74\x65\x20\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\ +\x04\x21\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x38\x04\x42\x04\x38\ +\x00\x20\x04\x42\x04\x35\x04\x3a\x04\x41\x04\x42\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x54\x65\x78\ +\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x0a\x00\x44\x00\x57\x00\x69\x00\x72\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x05\x44\x57\x69\x72\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x44\x00\x57\x00\x69\ +\x00\x72\x00\x65\x00\x20\x00\x68\x00\x61\x00\x73\x00\x20\x00\x62\ +\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\ +\x00\x65\x00\x64\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\ +\x44\x57\x69\x72\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x63\ +\x6c\x6f\x73\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x16\x04\x20\x04\x3e\x04\x37\x04\x3c\x04\x56\ +\x04\x40\x04\x3d\x04\x56\x04\x41\x04\x42\x04\x4c\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x04\ +\x12\x04\x56\x04\x34\x04\x41\x04\x42\x04\x30\x04\x3d\x04\x4c\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\ +\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x52\x04\x1d\x04\x35\x00\x20\x04\x3f\x04\x40\x04\x3e\x04\x35\x04\ +\x3a\x04\x42\x04\x43\x04\x32\x04\x30\x04\x42\x04\x38\x00\x20\x04\ +\x42\x04\x3e\x04\x47\x04\x3a\x04\x38\x00\x20\x04\x3d\x04\x30\x00\ +\x20\x04\x3f\x04\x3b\x04\x3e\x04\x49\x04\x38\x04\x3d\x04\x43\x00\ +\x20\x04\x3a\x04\x40\x04\x35\x04\x41\x04\x3b\x04\x35\x04\x3d\x04\ +\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x44\x6f\x20\ +\x6e\x6f\x74\x20\x70\x72\x6f\x6a\x65\x63\x74\x20\x70\x6f\x69\x6e\ +\x74\x73\x20\x74\x6f\x20\x61\x20\x64\x72\x61\x77\x69\x6e\x67\x20\ +\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x28\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\ +\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x14\x44\x72\x61\x66\x74\x20\x63\x72\x65\ +\x61\x74\x69\x6f\x6e\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x44\x00\x72\x00\ +\x61\x00\x66\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\ +\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x18\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\x69\x66\ +\x69\x63\x61\x74\x69\x6f\x6e\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x45\x00\ +\x64\x00\x67\x00\x65\x00\x73\x00\x20\x00\x64\x00\x6f\x00\x6e\x00\ +\x27\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\ +\x73\x00\x65\x00\x63\x00\x74\x00\x21\x00\x0a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x17\x45\x64\x67\x65\x73\x20\x64\x6f\x6e\x27\x74\ +\x20\x69\x6e\x74\x65\x72\x73\x65\x63\x74\x21\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x04\x1f\x04\x40\ +\x04\x30\x04\x32\x04\x3a\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x14\x04\x17\x04\x30\x00\x26\x04\x3f\x04\x3e\ +\x04\x32\x04\x3d\x04\x38\x04\x42\x04\x38\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x07\x46\x26\x69\x6c\x6c\x65\x64\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x04\x1a\x04\x3e\x04\ +\x3b\x04\x56\x04\x40\x00\x20\x04\x3f\x04\x3b\x04\x3e\x04\x49\x04\ +\x38\x04\x3d\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x46\ +\x61\x63\x65\x20\x43\x6f\x6c\x6f\x72\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x4c\x04\x17\x04\x30\x04\x32\x04\ +\x35\x04\x40\x04\x48\x04\x38\x04\x42\x04\x38\x00\x20\x04\x42\x04\ +\x30\x00\x20\x04\x37\x04\x30\x04\x3a\x04\x40\x04\x38\x04\x42\x04\ +\x38\x00\x20\x04\x3f\x04\x3e\x04\x42\x04\x3e\x04\x47\x04\x3d\x04\ +\x43\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\x56\x04\x4e\x00\x20\x00\ +\x28\x00\x43\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x46\ +\x69\x6e\x69\x73\x68\x65\x73\x20\x61\x6e\x64\x20\x63\x6c\x6f\x73\ +\x65\x73\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6c\ +\x69\x6e\x65\x20\x28\x43\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x70\x04\x17\x04\x30\x04\x32\x04\x35\x04\ +\x40\x04\x48\x04\x38\x04\x42\x04\x38\x00\x20\x04\x3f\x04\x3e\x04\ +\x42\x04\x3e\x04\x47\x04\x3d\x04\x35\x00\x20\x04\x3a\x04\x40\x04\ +\x35\x04\x41\x04\x3b\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\ +\x30\x04\x31\x04\x3e\x00\x20\x04\x3e\x04\x3f\x04\x35\x04\x40\x04\ +\x30\x04\x46\x04\x56\x04\x4e\x00\x20\x04\x40\x04\x35\x04\x34\x04\ +\x30\x04\x33\x04\x43\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4f\x00\ +\x20\x00\x28\x04\x17\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x35\x46\x69\x6e\x69\x73\x68\x65\x73\x20\x74\x68\x65\x20\x63\x75\ +\x72\x72\x65\x6e\x74\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x6f\x72\ +\x20\x65\x64\x69\x74\x69\x6e\x67\x20\x6f\x70\x65\x72\x61\x74\x69\ +\x6f\x6e\x20\x28\x46\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x1a\x04\x20\x04\x3e\x04\x37\x04\x3c\x04\x56\ +\x04\x40\x00\x20\x04\x48\x04\x40\x04\x38\x04\x44\x04\x42\x04\x43\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x46\x6f\x6e\x74\x20\x53\ +\x69\x7a\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x4e\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\ +\x31\x00\x20\x00\x63\x00\x69\x00\x72\x00\x63\x00\x75\x00\x6c\x00\ +\x61\x00\x72\x00\x20\x00\x65\x00\x64\x00\x67\x00\x65\x00\x3a\x00\ +\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x61\x00\x20\x00\x63\x00\x69\x00\x72\x00\x63\x00\x6c\x00\x65\x00\ +\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x46\x6f\x75\x6e\x64\ +\x20\x31\x20\x63\x69\x72\x63\x75\x6c\x61\x72\x20\x65\x64\x67\x65\ +\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x63\x69\x72\x63\x6c\ +\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x68\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\ +\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x20\ +\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x3a\x00\x20\x00\x6d\ +\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\ +\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x66\x00\x72\x00\x6f\ +\x00\x6d\x00\x20\x00\x69\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x34\x46\x6f\x75\x6e\x64\x20\x31\x20\x63\x6c\x6f\x73\ +\x65\x64\x20\x73\x6b\x65\x74\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\ +\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x66\x61\x63\x65\x20\ +\x66\x72\x6f\x6d\x20\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x46\x00\x46\x00\x6f\x00\x75\x00\x6e\ +\x00\x64\x00\x20\x00\x31\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\ +\x00\x3a\x00\x20\x00\x65\x00\x78\x00\x74\x00\x72\x00\x61\x00\x63\ +\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x69\x00\x74\x00\x73\ +\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x73\x00\x0a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x23\x46\x6f\x75\x6e\x64\x20\x31\x20\ +\x66\x61\x63\x65\x3a\x20\x65\x78\x74\x72\x61\x63\x74\x69\x6e\x67\ +\x20\x69\x74\x73\x20\x77\x69\x72\x65\x73\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5e\x00\x46\x00\x6f\x00\ +\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\x6e\x00\x6f\x00\ +\x6e\x00\x2d\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\ +\x74\x00\x72\x00\x69\x00\x63\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x73\x00\x3a\x00\x20\x00\x64\x00\x72\x00\ +\x61\x00\x66\x00\x74\x00\x69\x00\x66\x00\x79\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x69\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2f\x46\x6f\x75\x6e\x64\x20\x31\x20\x6e\x6f\x6e\x2d\x70\ +\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x3a\x20\x64\x72\x61\x66\x74\x69\x66\x79\x69\x6e\x67\x20\x69\ +\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x42\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\ +\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x64\ +\x00\x67\x00\x65\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\ +\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\ +\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x46\x6f\ +\x75\x6e\x64\x20\x31\x20\x6f\x70\x65\x6e\x20\x65\x64\x67\x65\x3a\ +\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x6c\x69\x6e\x65\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x00\ +\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\ +\x6f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x77\x00\x69\x00\x72\x00\ +\x65\x00\x3a\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x69\x00\x74\x00\x0a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1e\x46\x6f\x75\x6e\x64\x20\x31\x20\x6f\x70\x65\ +\x6e\x20\x77\x69\x72\x65\x3a\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\ +\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x7c\x04\x17\x04\x3d\x04\x30\x04\x39\x04\x34\x04\x35\x04\ +\x3d\x04\x38\x04\x39\x00\x20\x00\x31\x00\x20\x04\x3f\x04\x30\x04\ +\x40\x04\x30\x04\x3c\x04\x35\x04\x42\x04\x40\x04\x38\x04\x47\x04\ +\x3d\x04\x38\x04\x39\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\ +\x3a\x04\x42\x00\x3a\x00\x20\x04\x40\x04\x3e\x04\x37\x04\x40\x04\ +\x38\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x39\x04\ +\x3e\x04\x33\x04\x3e\x00\x20\x04\x37\x04\x30\x04\x3b\x04\x35\x04\ +\x36\x04\x3d\x04\x3e\x04\x41\x04\x42\x04\x35\x04\x39\x00\x20\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x35\x46\x6f\x75\x6e\x64\x20\x31\ +\x20\x70\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\ +\x63\x74\x3a\x20\x62\x72\x65\x61\x6b\x69\x6e\x67\x20\x69\x74\x73\ +\x20\x64\x65\x70\x65\x6e\x64\x65\x6e\x63\x69\x65\x73\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5a\x00\x46\ +\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\x73\ +\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\ +\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x3a\x00\x20\x00\x73\x00\x6f\x00\x6c\ +\x00\x69\x00\x64\x00\x69\x00\x66\x00\x79\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x69\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x2d\x46\x6f\x75\x6e\x64\x20\x31\x20\x73\x6f\x6c\x69\x64\x69\ +\x66\x69\x63\x61\x62\x6c\x65\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\ +\x73\x6f\x6c\x69\x64\x69\x66\x79\x69\x6e\x67\x20\x69\x74\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x00\ +\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x32\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x3a\x00\ +\x20\x00\x66\x00\x75\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x6d\x00\x0a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1d\x46\x6f\x75\x6e\x64\x20\x32\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\ +\x04\x17\x04\x3d\x04\x30\x04\x39\x04\x34\x04\x35\x04\x3d\x04\x3e\ +\x00\x20\x00\x32\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\ +\x04\x42\x04\x38\x00\x3a\x00\x20\x04\x57\x04\x45\x00\x20\x04\x32\ +\x04\x56\x04\x34\x04\x3d\x04\x56\x04\x3c\x04\x30\x04\x3d\x04\x3d\ +\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x46\x6f\ +\x75\x6e\x64\x20\x32\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x73\ +\x75\x62\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\ +\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x20\ +\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x20\x00\x77\ +\x00\x69\x00\x72\x00\x65\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\ +\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\ +\x00\x63\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\ +\x46\x6f\x75\x6e\x64\x20\x61\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\ +\x69\x72\x65\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x66\x61\ +\x63\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x5c\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\ +\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x73\x00\x3a\x00\x20\x00\ +\x63\x00\x6c\x00\x6f\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x65\x00\x61\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x70\x00\x65\x00\ +\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x69\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x0a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x46\x6f\x75\x6e\x64\x20\x67\ +\x72\x6f\x75\x70\x73\x3a\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x65\ +\x61\x63\x68\x20\x6f\x70\x65\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x69\x6e\x73\x69\x64\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x5a\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\ +\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\ +\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x63\x00\x75\x00\x72\x00\ +\x76\x00\x65\x00\x73\x00\x3a\x00\x20\x00\x66\x00\x75\x00\x73\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x6d\x00\ +\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x46\x6f\x75\x6e\x64\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x63\x6f\x6e\x74\x61\x69\x6e\ +\x69\x6e\x67\x20\x63\x75\x72\x76\x65\x73\x3a\x20\x66\x75\x73\x69\ +\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x52\x00\x46\x00\x6f\x00\x75\x00\x6e\ +\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x6c\x00\x79\x00\x20\x00\x77\ +\x00\x69\x00\x72\x00\x65\x00\x73\x00\x3a\x00\x20\x00\x65\x00\x78\ +\x00\x74\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x69\x00\x72\x00\x20\x00\x65\ +\x00\x64\x00\x67\x00\x65\x00\x73\x00\x0a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x29\x46\x6f\x75\x6e\x64\x20\x6f\x6e\x6c\x79\x20\x77\ +\x69\x72\x65\x73\x3a\x20\x65\x78\x74\x72\x61\x63\x74\x69\x6e\x67\ +\x20\x74\x68\x65\x69\x72\x20\x65\x64\x67\x65\x73\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x46\x00\ +\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x65\x00\x76\x00\ +\x65\x00\x72\x00\x61\x00\x6c\x00\x20\x00\x65\x00\x64\x00\x67\x00\ +\x65\x00\x73\x00\x3a\x00\x20\x00\x77\x00\x69\x00\x72\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x0a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x21\x46\x6f\x75\x6e\x64\x20\x73\ +\x65\x76\x65\x72\x61\x6c\x20\x65\x64\x67\x65\x73\x3a\x20\x77\x69\ +\x72\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x56\x04\x17\x04\x3d\x04\x30\ +\x04\x39\x04\x34\x04\x35\x04\x3d\x04\x3e\x00\x20\x04\x34\x04\x35\ +\x04\x3a\x04\x56\x04\x3b\x04\x4c\x04\x3a\x04\x30\x00\x20\x04\x3f\ +\x04\x3e\x04\x32\x04\x35\x04\x40\x04\x45\x04\x3e\x04\x3d\x04\x4c\ +\x00\x3a\x00\x20\x04\x57\x04\x45\x00\x20\x04\x40\x04\x3e\x04\x37\ +\x04\x34\x04\x56\x04\x3b\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x46\x6f\x75\x6e\x64\x20\ +\x73\x65\x76\x65\x72\x61\x6c\x20\x66\x61\x63\x65\x73\x3a\x20\x73\ +\x70\x6c\x69\x74\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x66\x00\x46\ +\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x65\x00\x76\ +\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\x6e\ +\x00\x2d\x00\x63\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x63\x00\x74\ +\x00\x65\x00\x64\x00\x20\x00\x65\x00\x64\x00\x67\x00\x65\x00\x73\ +\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x75\x00\x6e\ +\x00\x64\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x46\x6f\ +\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6e\x6f\x6e\x2d\ +\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64\x20\x65\x64\x67\x65\x73\x3a\ +\x20\x6d\x61\x6b\x69\x6e\x67\x20\x63\x6f\x6d\x70\x6f\x75\x6e\x64\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x7c\x04\x17\x04\x3d\x04\x30\x04\x39\x04\x34\x04\x35\x04\x3d\x04\ +\x3e\x00\x20\x04\x34\x04\x35\x04\x3a\x04\x56\x04\x3b\x04\x4c\x04\ +\x3a\x04\x30\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\x04\ +\x42\x04\x56\x04\x32\x00\x2c\x00\x20\x04\x4f\x04\x3a\x04\x56\x00\ +\x20\x04\x3d\x04\x35\x04\x37\x04\x3c\x04\x56\x04\x3d\x04\x3d\x04\ +\x56\x00\x3a\x00\x20\x04\x41\x04\x42\x04\x32\x04\x3e\x04\x40\x04\ +\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x41\x04\x3a\x04\x3b\x04\ +\x30\x04\x34\x04\x3d\x04\x3e\x04\x33\x04\x3e\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x35\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\ +\x65\x72\x61\x6c\x20\x6e\x6f\x6e\x2d\x74\x72\x65\x61\x74\x61\x62\ +\x6c\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x6d\x61\x6b\x69\ +\x6e\x67\x20\x63\x6f\x6d\x70\x6f\x75\x6e\x64\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x72\x00\x46\x00\x6f\ +\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x65\x00\x76\x00\x65\ +\x00\x72\x00\x61\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x66\ +\x00\x61\x00\x63\x00\x65\x00\x73\x00\x3a\x00\x20\x00\x6d\x00\x61\ +\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x70\ +\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\ +\x00\x63\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x0a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x39\x46\x6f\x75\x6e\x64\x20\x73\x65\ +\x76\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x6f\x72\ +\x20\x66\x61\x63\x65\x73\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\ +\x20\x70\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\x66\x61\x63\x65\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x46\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x73\x00\ +\x65\x00\x76\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x3a\x00\x20\x00\ +\x66\x00\x75\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x6d\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x23\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\ +\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x6c\x04\x17\x04\x3d\x04\x30\x04\x39\x04\x34\x04\x35\ +\x04\x3d\x04\x3e\x00\x20\x04\x34\x04\x35\x04\x3a\x04\x56\x04\x3b\ +\x04\x4c\x04\x3a\x04\x30\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\ +\x04\x3a\x04\x42\x04\x56\x04\x32\x00\x3a\x00\x20\x04\x32\x04\x56\ +\x04\x34\x04\x3d\x04\x56\x04\x3c\x04\x30\x04\x3d\x04\x3d\x04\x4f\ +\x00\x20\x04\x57\x04\x45\x00\x20\x04\x32\x04\x56\x04\x34\x00\x20\ +\x04\x3f\x04\x35\x04\x40\x04\x48\x04\x3e\x04\x33\x04\x3e\x00\x20\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3b\x46\x6f\x75\x6e\x64\x20\ +\x73\x65\x76\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\ +\x20\x73\x75\x62\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x74\x68\x65\ +\x6d\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x66\x69\x72\x73\x74\ +\x20\x6f\x6e\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x9e\x00\x49\x00\x66\x00\x20\x00\x63\x00\x68\x00\ +\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x61\x00\ +\x6e\x00\x20\x00\x4f\x00\x43\x00\x43\x00\x2d\x00\x73\x00\x74\x00\ +\x79\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x66\x00\x73\x00\ +\x65\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\ +\x62\x00\x65\x00\x20\x00\x70\x00\x65\x00\x72\x00\x66\x00\x6f\x00\ +\x72\x00\x6d\x00\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\x73\x00\ +\x74\x00\x65\x00\x61\x00\x64\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6c\x00\x61\x00\x73\x00\ +\x73\x00\x69\x00\x63\x00\x20\x00\x6f\x00\x66\x00\x66\x00\x73\x00\ +\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x49\x66\x20\ +\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x6e\x20\x4f\x43\x43\x2d\ +\x73\x74\x79\x6c\x65\x20\x6f\x66\x66\x73\x65\x74\x20\x77\x69\x6c\ +\x6c\x20\x62\x65\x20\x70\x65\x72\x66\x6f\x72\x6d\x65\x64\x20\x69\ +\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x63\x6c\ +\x61\x73\x73\x69\x63\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x98\x00\x49\x00\x66\ +\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\ +\x00\x2c\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\ +\x00\x64\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x6e\ +\x00\x6f\x00\x74\x00\x20\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x73\ +\x00\x68\x00\x20\x00\x75\x00\x6e\x00\x74\x00\x69\x00\x6c\x00\x20\ +\x00\x79\x00\x6f\x00\x75\x00\x20\x00\x70\x00\x72\x00\x65\x00\x73\ +\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6f\ +\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x62\x00\x75\ +\x00\x74\x00\x74\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x67\x00\x61\ +\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4c\x49\x66\ +\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x63\x6f\x6d\x6d\x61\x6e\ +\x64\x20\x77\x69\x6c\x6c\x20\x6e\x6f\x74\x20\x66\x69\x6e\x69\x73\ +\x68\x20\x75\x6e\x74\x69\x6c\x20\x79\x6f\x75\x20\x70\x72\x65\x73\ +\x73\x20\x74\x68\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x62\x75\ +\x74\x74\x6f\x6e\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x84\x04\x2f\x04\x3a\x04\x49\ +\x04\x3e\x00\x20\x04\x46\x04\x35\x00\x20\x04\x3e\x04\x31\x04\x40\ +\x04\x30\x04\x3d\x04\x3e\x00\x2c\x00\x20\x04\x3e\x04\x31\x00\x27\ +\x04\x54\x04\x3a\x04\x42\x04\x38\x00\x20\x04\x31\x04\x43\x04\x34\ +\x04\x43\x04\x42\x04\x4c\x00\x20\x04\x41\x04\x3a\x04\x3e\x04\x3f\ +\x04\x56\x04\x39\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x56\x00\x20\ +\x04\x37\x04\x30\x04\x3c\x04\x56\x04\x41\x04\x42\x04\x4c\x00\x20\ +\x04\x3f\x04\x35\x04\x40\x04\x35\x04\x3c\x04\x56\x04\x49\x04\x35\ +\x04\x3d\x04\x3d\x04\x4f\x00\x20\x00\x28\x00\x43\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x37\x49\x66\x20\x63\x68\x65\x63\x6b\ +\x65\x64\x2c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\ +\x20\x62\x65\x20\x63\x6f\x70\x69\x65\x64\x20\x69\x6e\x73\x74\x65\ +\x61\x64\x20\x6f\x66\x20\x6d\x6f\x76\x65\x64\x20\x28\x43\x29\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x04\ +\x12\x04\x41\x04\x42\x04\x30\x04\x3d\x04\x3e\x04\x32\x04\x3b\x04\ +\x35\x04\x3d\x04\x56\x00\x20\x04\x3c\x04\x30\x04\x3a\x04\x40\x04\ +\x3e\x04\x41\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x49\ +\x6e\x73\x74\x61\x6c\x6c\x65\x64\x20\x4d\x61\x63\x72\x6f\x73\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x00\ +\x4c\x00\x61\x00\x73\x00\x74\x00\x20\x00\x70\x00\x6f\x00\x69\x00\ +\x6e\x00\x74\x00\x20\x00\x68\x00\x61\x00\x73\x00\x20\x00\x62\x00\ +\x65\x00\x65\x00\x6e\x00\x20\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\ +\x76\x00\x65\x00\x64\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1c\x4c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x68\x61\x73\x20\ +\x62\x65\x65\x6e\x20\x72\x65\x6d\x6f\x76\x65\x64\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x04\x1b\x04\ +\x56\x04\x3d\x04\x56\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x16\x04\x1a\x04\x3e\x04\x3b\x04\x56\x04\x40\x00\ +\x20\x04\x3b\x04\x56\x04\x3d\x04\x56\x04\x57\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0a\x4c\x69\x6e\x65\x20\x43\x6f\x6c\x6f\x72\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x04\ +\x28\x04\x38\x04\x40\x04\x38\x04\x3d\x04\x30\x00\x20\x04\x3b\x04\ +\x56\x04\x3d\x04\x56\x04\x57\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x4c\x69\x6e\x65\x20\x57\x69\x64\x74\x68\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x04\x1f\x04\x35\x04\ +\x40\x04\x35\x04\x3c\x04\x56\x04\x49\x04\x35\x04\x3d\x04\x3d\x04\ +\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4d\x6f\x76\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\x00\ +\x4e\x00\x6f\x00\x20\x00\x6d\x00\x6f\x00\x72\x00\x65\x00\x20\x00\ +\x64\x00\x6f\x00\x77\x00\x6e\x00\x67\x00\x72\x00\x61\x00\x64\x00\ +\x65\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x73\x00\x69\x00\x62\x00\ +\x6c\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x4e\ +\x6f\x20\x6d\x6f\x72\x65\x20\x64\x6f\x77\x6e\x67\x72\x61\x64\x65\ +\x20\x70\x6f\x73\x73\x69\x62\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4a\x00\x4e\x00\x6f\x00\x20\ +\x00\x75\x00\x70\x00\x67\x00\x72\x00\x61\x00\x64\x00\x65\x00\x20\ +\x00\x61\x00\x76\x00\x61\x00\x69\x00\x6c\x00\x61\x00\x62\x00\x6c\ +\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x25\x4e\x6f\ +\x20\x75\x70\x67\x72\x61\x64\x65\x20\x61\x76\x61\x69\x6c\x61\x62\ +\x6c\x65\x20\x66\x6f\x72\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\ +\x63\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0a\x04\x1d\x04\x35\x04\x3c\x04\x30\x04\x54\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x04\x1a\x04\x56\x04\ +\x3b\x04\x4c\x04\x3a\x04\x56\x04\x41\x04\x42\x04\x4c\x00\x20\x04\ +\x41\x04\x42\x04\x3e\x04\x40\x04\x56\x04\x3d\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0f\x4e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x73\ +\x69\x64\x65\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x10\x04\x17\x04\x3c\x04\x56\x04\x49\x04\x35\x04\x3d\ +\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x4f\x66\ +\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x5a\x04\x17\x04\x41\x04\x43\x04\x32\x00\x20\x04\x3f\ +\x04\x40\x04\x30\x04\x46\x04\x4e\x04\x54\x00\x20\x04\x3b\x04\x38\ +\x04\x48\x04\x35\x00\x20\x04\x37\x00\x20\x04\x3e\x04\x34\x04\x3d\ +\x04\x38\x04\x3c\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\ +\x04\x42\x04\x3e\x04\x3c\x00\x20\x04\x32\x00\x20\x04\x3e\x04\x34\ +\x04\x38\x04\x3d\x00\x20\x04\x47\x04\x30\x04\x41\x00\x20\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x2a\x4f\x66\x66\x73\x65\x74\x20\x6f\ +\x6e\x6c\x79\x20\x77\x6f\x72\x6b\x73\x20\x6f\x6e\x20\x6f\x6e\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x61\x74\x20\x61\x20\x74\x69\x6d\ +\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x52\x00\x4f\x00\x6e\x00\x65\x00\x20\x00\x77\x00\x69\x00\x72\ +\x00\x65\x00\x20\x00\x69\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x74\ +\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x61\x00\x72\x00\x2c\ +\x00\x20\x00\x75\x00\x70\x00\x67\x00\x72\x00\x61\x00\x64\x00\x65\ +\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x64\x00\x6f\x00\x6e\ +\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x4f\x6e\ +\x65\x20\x77\x69\x72\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x70\x6c\ +\x61\x6e\x61\x72\x2c\x20\x75\x70\x67\x72\x61\x64\x65\x20\x6e\x6f\ +\x74\x20\x64\x6f\x6e\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x1e\x04\x12\x04\x38\x04\x31\x04\x35\x04\ +\x40\x04\x56\x04\x42\x04\x4c\x00\x20\x04\x3e\x04\x31\x00\x27\x04\ +\x54\x04\x3a\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x50\ +\x69\x63\x6b\x20\x4f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x62\x04\x1e\x04\x31\x04\x35\ +\x04\x40\x04\x56\x04\x42\x04\x4c\x00\x20\x04\x44\x04\x40\x04\x30\ +\x04\x33\x04\x3c\x04\x35\x04\x3d\x04\x42\x00\x20\x04\x49\x04\x3e\ +\x04\x31\x00\x20\x04\x32\x04\x38\x04\x37\x04\x3d\x04\x30\x04\x47\ +\x04\x38\x04\x42\x04\x38\x00\x20\x04\x3f\x04\x3b\x04\x3e\x04\x49\ +\x04\x38\x04\x3d\x04\x43\x00\x20\x04\x3c\x04\x30\x04\x3b\x04\x4e\ +\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4f\x00\x20\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x28\x50\x69\x63\x6b\x20\x61\x20\x66\x61\x63\ +\x65\x20\x74\x6f\x20\x64\x65\x66\x69\x6e\x65\x20\x74\x68\x65\x20\ +\x64\x72\x61\x77\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x50\ +\x00\x69\x00\x63\x00\x6b\x00\x20\x00\x61\x00\x70\x00\x65\x00\x72\ +\x00\x74\x00\x75\x00\x72\x00\x65\x00\x3a\x00\x0a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0f\x50\x69\x63\x6b\x20\x61\x70\x65\x72\x74\ +\x75\x72\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x28\x04\x12\x04\x38\x04\x31\x04\x56\x04\x40\x00\ +\x20\x04\x31\x04\x30\x04\x37\x04\x3e\x04\x32\x04\x3e\x04\x33\x04\ +\x3e\x00\x20\x04\x3a\x04\x43\x04\x42\x04\x30\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\x62\x61\x73\x65\ +\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x28\x04\x12\x04\x38\x04\x31\x04\x56\ +\x04\x40\x00\x20\x04\x31\x04\x30\x04\x37\x04\x3e\x04\x32\x04\x3e\ +\x04\x57\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x38\x00\x20\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\x62\ +\x61\x73\x65\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x04\x12\x04\x38\x04\ +\x31\x04\x40\x04\x30\x04\x42\x04\x38\x00\x20\x04\x46\x04\x35\x04\ +\x3d\x04\x42\x04\x40\x04\x30\x04\x3b\x04\x4c\x04\x3d\x04\x43\x00\ +\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x43\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x13\x50\x69\x63\x6b\x20\x63\x65\x6e\x74\ +\x65\x72\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x04\x12\x04\x38\x04\x31\ +\x04\x56\x04\x40\x00\x20\x04\x32\x04\x56\x04\x34\x04\x41\x04\x42\ +\x04\x30\x04\x3d\x04\x56\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0f\x50\x69\x63\x6b\x20\x64\x69\x73\x74\x61\x6e\x63\x65\x3a\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x2a\x04\x12\x04\x38\x04\x31\x04\x56\x04\x40\x00\x20\x04\x3a\x04\ +\x56\x04\x3d\x04\x46\x04\x35\x04\x32\x04\x3e\x04\x57\x00\x20\x04\ +\x42\x04\x3e\x04\x47\x04\x3a\x04\x38\x00\x20\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x10\x50\x69\x63\x6b\x20\x65\x6e\x64\x20\x70\x6f\ +\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x2a\x04\x12\x04\x38\x04\x31\x04\x40\x04\x30\x04\ +\x42\x04\x38\x00\x20\x04\x3f\x04\x35\x04\x40\x04\x48\x04\x43\x00\ +\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x43\x00\x3a\x00\x0a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\x6b\x20\x66\x69\ +\x72\x73\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x04\x12\x04\x38\x04\ +\x31\x04\x40\x04\x30\x04\x42\x04\x38\x00\x20\x04\x42\x04\x3e\x04\ +\x47\x04\x3a\x04\x43\x00\x20\x04\x40\x04\x3e\x04\x37\x04\x3c\x04\ +\x56\x04\x49\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x6c\x6f\x63\x61\ +\x74\x69\x6f\x6e\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x72\x04\x12\x04\x38\ +\x04\x31\x04\x40\x04\x30\x04\x42\x04\x38\x00\x20\x04\x3d\x04\x30\ +\x04\x41\x04\x42\x04\x43\x04\x3f\x04\x3d\x04\x43\x00\x20\x04\x42\ +\x04\x3e\x04\x47\x04\x3a\x04\x43\x00\x2c\x00\x20\x04\x30\x04\x31\ +\x04\x3e\x00\x20\x04\x37\x04\x30\x04\x32\x04\x35\x04\x40\x04\x48\ +\x04\x38\x04\x42\x04\x38\x00\x20\x00\x28\x00\x46\x00\x29\x00\x20\ +\x04\x47\x04\x38\x00\x20\x04\x37\x04\x30\x04\x3a\x04\x40\x04\x38\ +\x04\x42\x04\x38\x00\x20\x00\x28\x00\x43\x00\x29\x00\x20\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x29\x50\x69\x63\x6b\x20\x6e\x65\x78\ +\x74\x20\x70\x6f\x69\x6e\x74\x2c\x20\x6f\x72\x20\x28\x46\x29\x69\ +\x6e\x69\x73\x68\x20\x6f\x72\x20\x28\x43\x29\x6c\x6f\x73\x65\x3a\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x30\x04\x12\x04\x38\x04\x31\x04\x40\x04\x30\x04\x42\x04\x38\x00\ +\x20\x04\x3d\x04\x30\x04\x41\x04\x42\x04\x43\x04\x3f\x04\x3d\x04\ +\x43\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x43\x00\x3a\x00\ +\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\ +\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x04\x12\x04\x38\ +\x04\x31\x04\x56\x04\x40\x00\x20\x04\x3f\x04\x40\x04\x3e\x04\x42\ +\x04\x38\x04\x3b\x04\x35\x04\x36\x04\x3d\x04\x3e\x04\x57\x00\x20\ +\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x38\x00\x20\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x6f\x70\x70\x6f\x73\ +\x69\x74\x65\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x04\x12\x04\x38\x04\ +\x31\x04\x40\x04\x30\x04\x42\x04\x38\x00\x20\x04\x40\x04\x30\x04\ +\x34\x04\x56\x04\x43\x04\x41\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x50\x69\x63\x6b\x20\x72\x61\x64\x69\x75\x73\x3a\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\ +\x04\x12\x04\x38\x04\x31\x04\x56\x04\x40\x00\x20\x04\x3a\x04\x43\ +\x04\x42\x04\x30\x00\x20\x04\x3e\x04\x31\x04\x35\x04\x40\x04\x42\ +\x04\x30\x04\x3d\x04\x3d\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x72\x6f\x74\x61\x74\x69\x6f\ +\x6e\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x04\x12\x04\x38\x04\x31\x04\ +\x56\x04\x40\x00\x20\x04\x46\x04\x35\x04\x3d\x04\x42\x04\x40\x04\ +\x43\x00\x20\x04\x3e\x04\x31\x04\x35\x04\x40\x04\x42\x04\x30\x04\ +\x3d\x04\x3d\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x16\x50\x69\x63\x6b\x20\x72\x6f\x74\x61\x74\x69\x6f\x6e\x20\x63\ +\x65\x6e\x74\x65\x72\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x46\x04\x12\x04\x38\x04\x31\x04\x35\x04\ +\x40\x04\x56\x04\x42\x04\x4c\x00\x20\x04\x3a\x04\x3e\x04\x35\x04\ +\x44\x04\x56\x04\x46\x04\x56\x04\x54\x04\x3d\x04\x42\x00\x20\x04\ +\x3c\x04\x30\x04\x41\x04\x48\x04\x42\x04\x30\x04\x31\x04\x43\x04\ +\x32\x04\x30\x04\x3d\x04\x3d\x04\x4f\x00\x3a\x00\x0a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x13\x50\x69\x63\x6b\x20\x73\x63\x61\x6c\ +\x65\x20\x66\x61\x63\x74\x6f\x72\x3a\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x04\x12\x04\x38\x04\x31\ +\x04\x40\x04\x30\x04\x42\x04\x38\x00\x20\x04\x3f\x04\x3e\x04\x47\ +\x04\x30\x04\x42\x04\x3a\x04\x3e\x04\x32\x04\x38\x04\x39\x00\x20\ +\x04\x3a\x04\x43\x04\x42\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x12\x50\x69\x63\x6b\x20\x73\x74\x61\x72\x74\x20\x61\x6e\x67\ +\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x2e\x04\x12\x04\x38\x04\x31\x04\x56\x04\x40\x00\x20\ +\x04\x3f\x04\x3e\x04\x47\x04\x30\x04\x42\x04\x3a\x04\x3e\x04\x32\ +\x04\x3e\x04\x57\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x38\ +\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\x6b\ +\x20\x73\x74\x61\x72\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x04\x22\ +\x04\x3e\x04\x47\x04\x3a\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x18\x04\x11\x04\x30\x04\x33\x04\x30\x04\ +\x42\x04\x3e\x04\x3a\x04\x43\x04\x42\x04\x3d\x04\x38\x04\x3a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x07\x50\x6f\x6c\x79\x67\x6f\x6e\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\ +\x04\x20\x04\x30\x04\x34\x04\x56\x04\x43\x04\x41\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x52\x61\x64\x69\x75\x73\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x04\x20\x04\x30\ +\x04\x34\x04\x56\x04\x43\x04\x41\x00\x20\x04\x3a\x04\x3e\x04\x3b\ +\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x61\x64\x69\ +\x75\x73\x20\x6f\x66\x20\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x04\x1f\x04\x40\ +\x04\x4f\x04\x3c\x04\x3e\x04\x3a\x04\x43\x04\x42\x04\x3d\x04\x38\ +\x04\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x52\x65\x63\x74\ +\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x44\x04\x12\x04\x38\x04\x34\x04\x30\x04\x3b\x04\ +\x38\x04\x42\x04\x38\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\ +\x38\x00\x20\x04\x37\x00\x20\x04\x3f\x04\x3e\x04\x42\x04\x3e\x04\ +\x47\x04\x3d\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\x3e\x04\x31\x00\ +\x27\x04\x54\x04\x3a\x04\x42\x04\x43\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x25\x52\x65\x6d\x6f\x76\x65\x20\x70\x6f\x69\x6e\x74\x73\ +\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\ +\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x12\x04\x1e\x04\x31\x04\x35\x04\x40\ +\x04\x42\x04\x30\x04\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x52\x6f\x74\x61\x74\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x04\x1c\x04\x30\x04\x41\ +\x04\x48\x04\x42\x04\x30\x04\x31\x04\x43\x04\x32\x04\x30\x04\x3d\ +\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x53\x63\ +\x61\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x1a\x04\x12\x04\x38\x04\x31\x04\x56\x04\x40\x00\x20\x04\ +\x3f\x04\x3b\x04\x3e\x04\x49\x04\x38\x04\x3d\x04\x38\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0c\x53\x65\x6c\x65\x63\x74\x20\x50\x6c\ +\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x20\x04\x12\x04\x38\x04\x31\x04\x56\x04\x40\x00\x20\x00\ +\x58\x00\x59\x00\x20\x04\x3f\x04\x3b\x04\x3e\x04\x49\x04\x38\x04\ +\x3d\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\ +\x65\x63\x74\x20\x58\x59\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x04\x12\x04\x38\ +\x04\x31\x04\x56\x04\x40\x00\x20\x00\x58\x00\x5a\x00\x20\x04\x3f\ +\x04\x3b\x04\x3e\x04\x49\x04\x38\x04\x3d\x04\x38\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x58\x5a\x20\ +\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x20\x04\x12\x04\x38\x04\x31\x04\x56\x04\x40\x00\ +\x20\x00\x59\x00\x5a\x00\x20\x04\x3f\x04\x3b\x04\x3e\x04\x49\x04\ +\x38\x04\x3d\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\ +\x65\x6c\x65\x63\x74\x20\x59\x5a\x20\x70\x6c\x61\x6e\x65\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x04\x1e\ +\x04\x31\x04\x35\x04\x40\x04\x56\x04\x42\x04\x4c\x00\x20\x04\x3e\ +\x04\x31\x00\x27\x04\x54\x04\x3a\x04\x42\x00\x20\x04\x34\x04\x3b\ +\x04\x4f\x00\x20\x04\x3f\x04\x35\x04\x40\x04\x35\x04\x3c\x04\x56\ +\x04\x49\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x19\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x6d\x6f\x76\x65\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x04\ +\x1e\x04\x31\x04\x35\x04\x40\x04\x56\x04\x42\x04\x4c\x00\x20\x04\ +\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\x04\x42\x00\x20\x04\x34\x04\ +\x3b\x04\x4f\x00\x20\x04\x37\x04\x3c\x04\x56\x04\x49\x04\x35\x04\ +\x3d\x04\x3d\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1b\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\ +\x74\x20\x74\x6f\x20\x6f\x66\x66\x73\x65\x74\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x04\x1e\x04\x31\ +\x04\x35\x04\x40\x04\x56\x04\x42\x04\x4c\x00\x20\x04\x3e\x04\x31\ +\x00\x27\x04\x54\x04\x3a\x04\x42\x00\x20\x04\x34\x04\x3b\x04\x4f\ +\x00\x20\x04\x3e\x04\x31\x04\x35\x04\x40\x04\x42\x04\x30\x04\x3d\ +\x04\x3d\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\ +\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x74\x6f\x20\x72\x6f\x74\x61\x74\x65\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x04\x1e\x04\x31\x04\ +\x35\x04\x40\x04\x56\x04\x42\x04\x4c\x00\x20\x04\x3e\x04\x31\x00\ +\x27\x04\x54\x04\x3a\x04\x42\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\ +\x20\x04\x3c\x04\x30\x04\x41\x04\x48\x04\x42\x04\x30\x04\x31\x04\ +\x43\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4f\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x73\x63\x61\x6c\x65\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x4c\x04\x1e\x04\x31\x04\x35\x04\x40\x04\x56\x04\x42\x04\x4c\x00\ +\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\x04\x42\x00\x20\x04\ +\x34\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\x31\x04\x40\x04\x56\x04\ +\x37\x04\x3a\x04\x38\x00\x2f\x04\x3f\x04\x3e\x04\x34\x04\x3e\x04\ +\x32\x04\x36\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x20\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x74\x72\x69\x6d\x2f\ +\x65\x78\x74\x65\x6e\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x3c\x04\x12\x04\x38\x04\x31\x04\x35\x04\ +\x40\x04\x56\x04\x42\x04\x4c\x00\x20\x04\x3e\x04\x31\x00\x27\x04\ +\x54\x04\x3a\x04\x42\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\ +\x3e\x04\x3d\x04\x3e\x04\x32\x04\x3b\x04\x35\x04\x3d\x04\x3d\x04\ +\x4f\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x53\x65\x6c\ +\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\ +\x20\x75\x70\x67\x72\x61\x64\x65\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x56\x04\x12\x04\x38\x04\x31\x04\ +\x56\x04\x40\x00\x20\x04\x3f\x04\x3b\x04\x3e\x04\x49\x04\x38\x04\ +\x3d\x04\x38\x00\x2c\x00\x20\x04\x3f\x04\x35\x04\x40\x04\x3f\x04\ +\x35\x04\x3d\x04\x34\x04\x38\x04\x3a\x04\x43\x04\x3b\x04\x4f\x04\ +\x40\x04\x3d\x04\x3e\x04\x57\x00\x20\x04\x34\x04\x3e\x00\x20\x04\ +\x3f\x04\x3e\x04\x42\x04\x3e\x04\x47\x04\x3d\x04\x3e\x04\x57\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x53\x65\x6c\x65\x63\x74\x20\ +\x70\x6c\x61\x6e\x65\x20\x70\x65\x72\x70\x65\x6e\x64\x69\x63\x75\ +\x6c\x61\x72\x20\x74\x6f\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\ +\x6e\x74\x20\x76\x69\x65\x77\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x2e\x00\x53\x00\x70\x00\x6c\x00\x69\x00\ +\x6e\x00\x65\x00\x20\x00\x68\x00\x61\x00\x73\x00\x20\x00\x62\x00\ +\x65\x00\x65\x00\x6e\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\ +\x65\x00\x64\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x53\ +\x70\x6c\x69\x6e\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x63\ +\x6c\x6f\x73\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x16\x00\x53\x00\x74\x00\x61\x00\x72\x00\x74\ +\x00\x20\x00\x41\x00\x6e\x00\x67\x00\x6c\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0b\x53\x74\x61\x72\x74\x20\x41\x6e\x67\x6c\ +\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x0a\x04\x22\x04\x35\x04\x3a\x04\x41\x04\x42\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x04\x54\x65\x78\x74\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x04\x26\x04\x35\x04\x39\x00\ +\x20\x04\x42\x04\x38\x04\x3f\x00\x20\x04\x3e\x04\x31\x00\x27\x04\ +\x54\x04\x3a\x04\x42\x04\x30\x00\x20\x04\x3d\x04\x35\x00\x20\x04\ +\x40\x04\x35\x04\x34\x04\x30\x04\x33\x04\x43\x04\x54\x04\x42\x04\ +\x4c\x04\x41\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x21\x54\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\ +\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x65\x64\x69\x74\x61\x62\x6c\ +\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x40\x04\x1f\x04\x35\x04\x40\x04\x35\x04\x3c\x04\x38\x04\x3a\ +\x04\x30\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x40\x04\x35\x04\x36\ +\x04\x38\x04\x3c\x04\x43\x00\x20\x04\x3a\x04\x3e\x04\x3d\x04\x41\ +\x04\x42\x04\x40\x04\x43\x04\x4e\x04\x32\x04\x30\x04\x3d\x04\x3d\ +\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x54\x6f\x67\x67\ +\x6c\x65\x73\x20\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\ +\x20\x4d\x6f\x64\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x10\x04\x1e\x04\x31\x04\x40\x04\x56\x04\x37\x04\ +\x30\x04\x42\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\ +\x72\x69\x6d\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x4a\x04\x21\x04\x3a\x04\x30\x04\x41\x04\x43\x04\x32\x04\ +\x30\x04\x42\x04\x38\x00\x20\x04\x3e\x04\x41\x04\x42\x04\x30\x04\ +\x3d\x04\x3d\x04\x56\x04\x39\x00\x20\x04\x41\x04\x35\x04\x33\x04\ +\x3c\x04\x35\x04\x3d\x04\x42\x00\x20\x00\x28\x00\x43\x00\x74\x00\ +\x72\x00\x6c\x00\x20\x00\x2b\x00\x20\x00\x5a\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1e\x55\x6e\x64\x6f\x20\x74\x68\x65\x20\ +\x6c\x61\x73\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x28\x43\x54\ +\x52\x4c\x2b\x5a\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0c\x04\x12\x04\x38\x04\x33\x04\x3b\x04\x4f\x04\ +\x34\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x56\x69\x65\x77\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa2\x00\ +\x57\x00\x69\x00\x70\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x65\x00\x78\x00\x69\x00\x73\x00\x74\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\ +\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x74\x00\x61\x00\ +\x72\x00\x74\x00\x73\x00\x20\x00\x61\x00\x67\x00\x61\x00\x69\x00\ +\x6e\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x73\x00\x74\x00\x20\x00\ +\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x28\x00\x57\x00\ +\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x57\x69\x70\x65\x73\ +\x20\x74\x68\x65\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x73\x65\ +\x67\x6d\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6c\ +\x69\x6e\x65\x20\x61\x6e\x64\x20\x73\x74\x61\x72\x74\x73\x20\x61\ +\x67\x61\x69\x6e\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x6c\x61\ +\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x28\x57\x29\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x57\x00\x69\ +\x00\x72\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x57\x69\x72\x65\x20\x74\ +\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x02\x00\x58\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\ +\x58\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x38\x00\x58\x00\x20\x04\x3a\x04\x3e\x04\x3e\x04\x40\x04\x34\x04\ +\x38\x04\x3d\x04\x30\x04\x42\x04\x38\x00\x20\x04\x3d\x04\x30\x04\ +\x41\x04\x42\x04\x43\x04\x3f\x04\x3d\x04\x3e\x04\x57\x00\x20\x04\ +\x42\x04\x3e\x04\x47\x04\x3a\x04\x38\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1a\x58\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x20\ +\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x58\x00\ +\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x58\x59\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x58\x00\ +\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x58\x5a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\x00\x59\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x01\x59\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x00\x59\x00\x20\x04\x3a\ +\x04\x3e\x04\x3e\x04\x40\x04\x34\x04\x38\x04\x3d\x04\x30\x04\x42\ +\x04\x38\x00\x20\x04\x3d\x04\x30\x04\x41\x04\x42\x04\x43\x04\x3f\ +\x04\x3d\x04\x3e\x04\x57\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\ +\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x59\x20\x63\x6f\ +\x6f\x72\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\ +\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x04\x00\x59\x00\x5a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x02\x59\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x02\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x01\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x38\x00\x5a\x00\x20\x04\x3a\x04\x3e\x04\x3e\x04\x40\x04\ +\x34\x04\x38\x04\x3d\x04\x30\x04\x42\x04\x38\x00\x20\x04\x3d\x04\ +\x30\x04\x41\x04\x42\x04\x43\x04\x3f\x04\x3d\x04\x3e\x04\x57\x00\ +\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x38\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1a\x5a\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\ +\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x04\ +\x30\x04\x3a\x04\x42\x04\x38\x04\x32\x04\x3d\x04\x30\x00\x20\x04\ +\x3a\x04\x3e\x04\x3c\x04\x30\x04\x3d\x04\x34\x04\x30\x00\x3a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x61\x63\x74\x69\x76\x65\x20\ +\x63\x6f\x6d\x6d\x61\x6e\x64\x3a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x2e\x04\x1f\x04\x30\x04\x3d\x04\x35\ +\x04\x3b\x04\x4c\x00\x20\x04\x3a\x04\x3e\x04\x3c\x04\x30\x04\x3d\ +\x04\x34\x00\x20\x04\x3a\x04\x40\x04\x35\x04\x41\x04\x3b\x04\x35\ +\x04\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\ +\x64\x72\x61\x66\x74\x20\x43\x6f\x6d\x6d\x61\x6e\x64\x20\x42\x61\ +\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x00\x00\xcf\x4b\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x0b\x38\x00\x00\x00\x58\x00\x00\xc1\x3e\x00\x00\x00\x59\ +\x00\x00\xc2\x0d\x00\x00\x00\x5a\x00\x00\xc2\xbc\x00\x00\x05\xd9\ +\x00\x00\xc1\xcd\x00\x00\x05\xda\x00\x00\xc1\xed\x00\x00\x05\xea\ +\x00\x00\xc2\x9c\x00\x00\x07\x78\x00\x00\x88\x6b\x00\x00\x48\x83\ +\x00\x00\x03\x39\x00\x00\x48\x83\x00\x00\x8f\x33\x00\x00\x68\x34\ +\x00\x00\x81\x6f\x00\x01\xc1\x87\x00\x00\x58\x2e\x00\x04\xa6\x79\ +\x00\x00\x92\xfc\x00\x04\xbb\x04\x00\x00\x0d\x60\x00\x04\xbb\x04\ +\x00\x00\x98\x78\x00\x05\x30\x45\x00\x00\x0f\x8b\x00\x05\x30\x45\ +\x00\x00\xac\x21\x00\x05\x46\xc5\x00\x00\x0f\xb8\x00\x05\x46\xc5\ +\x00\x00\xac\xc5\x00\x05\x56\x45\x00\x00\x58\xff\x00\x05\x56\x45\ +\x00\x00\xad\xdb\x00\x05\xac\xf4\x00\x00\x1c\xde\x00\x05\xac\xf4\ +\x00\x00\xbe\x0f\x00\x05\xb8\xfd\x00\x00\xbf\x1d\x00\x05\xcf\xc7\ +\x00\x00\xbf\xc1\x00\x06\xab\x8c\x00\x00\x82\xc7\x00\x10\x84\x49\ +\x00\x00\x67\x23\x00\x12\x05\xba\x00\x00\xbb\x55\x00\x16\xc6\xda\ +\x00\x00\xa0\x3e\x00\x1f\xa4\xf7\x00\x00\x2a\x5a\x00\x2a\xa6\x79\ +\x00\x00\x8b\x41\x00\x2b\xc4\xaf\x00\x00\x8c\x59\x00\x2b\xe0\x65\ +\x00\x00\x8c\x84\x00\x39\xdf\x33\x00\x00\x3b\x28\x00\x3a\x9e\x1b\ +\x00\x00\x78\xbf\x00\x3d\xa1\x19\x00\x00\x90\x74\x00\x3e\x93\x83\ +\x00\x00\x3c\x58\x00\x48\x8f\x7c\x00\x00\x2b\x96\x00\x48\x98\x89\ +\x00\x00\x04\x04\x00\x49\xe0\x85\x00\x00\x28\x74\x00\x49\xe0\x85\ +\x00\x00\x95\xc3\x00\x4a\x36\x45\x00\x00\x07\x3a\x00\x4b\x66\x35\ +\x00\x00\x37\xf6\x00\x4b\x66\x37\x00\x00\x38\x3d\x00\x4b\x66\x39\ +\x00\x00\x38\x84\x00\x57\x60\x54\x00\x00\x12\xa4\x00\x57\x60\x54\ +\x00\x00\xb6\xf0\x00\x58\xfd\xf4\x00\x00\x5d\x0a\x00\x59\x98\x25\ +\x00\x00\x16\x0b\x00\x59\x98\x25\x00\x00\xb8\x9a\x00\x6a\x58\x9a\ +\x00\x00\xb0\xb4\x00\x79\xef\xd4\x00\x00\x88\xa3\x00\x7e\x7f\x0e\ +\x00\x00\x7d\xda\x00\x8a\x23\x95\x00\x00\x2e\xe4\x00\x8a\x23\x97\ +\x00\x00\x2f\x2c\x00\x8a\x23\x99\x00\x00\x2f\x74\x00\x91\xbc\xe9\ +\x00\x00\x0f\xe9\x00\xa6\x37\x3f\x00\x00\x2d\xb3\x00\xaa\x80\x25\ +\x00\x00\x96\x71\x00\xac\xd6\x04\x00\x00\x48\x38\x00\xc0\xac\x63\ +\x00\x00\x97\x39\x00\xc6\xe3\x6e\x00\x00\x29\xc3\x00\xcb\xa8\x14\ +\x00\x00\x87\x7f\x00\xfc\x00\xca\x00\x00\xa7\x5e\x01\x19\x8d\xde\ +\x00\x00\x62\x5a\x01\x21\xd6\x39\x00\x00\x66\x32\x01\x22\xb4\xf9\ +\x00\x00\x16\x3a\x01\x2f\x8e\x7e\x00\x00\x71\x22\x01\x48\xfe\xa3\ +\x00\x00\x3c\xd0\x01\x53\xf3\xaa\x00\x00\x9c\x89\x01\x56\x16\x4a\ +\x00\x00\xa6\xe9\x01\x5c\xde\xba\x00\x00\xad\x50\x01\x67\x0d\x8a\ +\x00\x00\xa2\x17\x01\x69\x11\x7a\x00\x00\xb4\xd5\x01\x69\x97\x98\ +\x00\x00\x3f\x1a\x01\x82\x39\x0a\x00\x00\xb1\x5a\x01\x8b\x68\x75\ +\x00\x00\xbe\xb8\x01\x8b\x89\x79\x00\x00\x07\x67\x01\xa1\x7f\x63\ +\x00\x00\x1f\x6d\x01\xb1\x5d\x09\x00\x00\x79\x60\x01\xc1\xd9\xde\ +\x00\x00\x69\x5c\x01\xd2\x8f\xd3\x00\x00\x5d\xb1\x01\xd4\x10\x23\ +\x00\x00\x47\x49\x01\xdd\x83\xfa\x00\x00\xaf\x28\x01\xdf\x11\x43\ +\x00\x00\x06\x68\x01\xe2\xf4\x5a\x00\x00\xba\xe8\x01\xfc\xae\xd3\ +\x00\x00\x88\xe4\x02\x05\xbe\x25\x00\x00\x95\x3c\x02\x2c\xd9\x60\ +\x00\x00\x21\xbf\x02\x2f\xb5\x14\x00\x00\x20\xf8\x02\x46\x58\x0a\ +\x00\x00\xb4\x17\x02\x57\xf8\x08\x00\x00\x0c\x22\x02\x65\xad\x62\ +\x00\x00\xc3\x98\x02\x6e\x07\xe2\x00\x00\x60\xe0\x02\x76\x24\x13\ +\x00\x00\x44\x6b\x02\x7d\xe0\x55\x00\x00\x61\xf8\x02\x94\x46\x1a\ +\x00\x00\xb1\x01\x02\x95\xca\xb5\x00\x00\x39\xd3\x02\xa7\x2c\x15\ +\x00\x00\x05\x08\x02\xaa\x36\x95\x00\x00\x8a\xcc\x02\xab\x87\xd4\ +\x00\x00\x8b\x6c\x02\xb1\xf0\xba\x00\x00\xa3\xfa\x02\xbf\xaa\x8e\ +\x00\x00\x40\x59\x02\xc0\x66\xf2\x00\x00\x6d\x48\x02\xc8\x3f\xf5\ +\x00\x00\x78\x1b\x02\xd9\xa4\xb9\x00\x00\x81\x1e\x02\xdb\x1a\x94\ +\x00\x00\x08\x8f\x03\x01\x84\xc4\x00\x00\xa8\x25\x03\x12\x97\x6a\ +\x00\x00\xa6\x16\x03\x14\x79\xca\x00\x00\xac\xf1\x03\x1a\x14\x14\ +\x00\x00\x35\xa2\x03\x1a\x16\x59\x00\x00\x63\x75\x03\x2f\x1a\x6a\ +\x00\x00\x8d\x17\x03\x7e\xca\xb5\x00\x00\x53\x4a\x03\x85\x74\x48\ +\x00\x00\x4e\x1a\x03\x88\x1f\xd4\x00\x00\x54\x1d\x03\x9e\x58\xa5\ +\x00\x00\x00\x42\x03\xb3\x9e\xfa\x00\x00\xb2\x0a\x03\xb5\xc8\x9a\ +\x00\x00\xb3\x6a\x03\xbd\xd4\xe4\x00\x00\x8d\xd0\x03\xc4\x3c\xf5\ +\x00\x00\x90\x36\x03\xc5\xd5\x5e\x00\x00\x0a\x97\x03\xc5\xd5\x5e\ +\x00\x00\x96\x42\x03\xcb\x0d\xe5\x00\x00\xb8\xc3\x03\xdc\x0c\xd4\ +\x00\x00\x8b\xcb\x03\xe1\x78\x25\x00\x00\x94\x62\x03\xf2\x70\x35\ +\x00\x00\x31\xfa\x03\xf2\xbd\x60\x00\x00\x17\x8a\x03\xfb\x0f\x04\ +\x00\x00\x35\x2a\x04\x21\x23\x23\x00\x00\x25\xd3\x04\x2e\x73\x33\ +\x00\x00\x7c\x4f\x04\x56\x06\x93\x00\x00\x33\x55\x04\x60\x7c\x15\ +\x00\x00\xb7\x78\x04\x79\xef\x9a\x00\x00\xa3\x63\x04\x82\x77\xf4\ +\x00\x00\x61\xac\x04\x87\x83\x87\x00\x00\x43\x6d\x04\x87\xf9\x9e\ +\x00\x00\xa9\x26\x04\x8c\xd6\xae\x00\x00\x76\x74\x04\x8e\xbd\xda\ +\x00\x00\x9a\x97\x04\xa0\x8a\x25\x00\x00\x06\x37\x04\xa0\x8a\x25\ +\x00\x00\x91\xa7\x04\xa4\x31\x5a\x00\x00\xab\xb1\x04\xa8\xeb\x85\ +\x00\x00\x38\xcb\x04\xbe\x0a\xf8\x00\x00\x5c\x87\x04\xd6\xd6\x12\ +\x00\x00\x5f\x8b\x04\xe1\x6e\xe3\x00\x00\x0b\x39\x04\xe4\x0f\x75\ +\x00\x00\x02\xd7\x04\xeb\x41\xc3\x00\x00\x32\xd4\x04\xef\xd9\xa8\ +\x00\x00\x5b\x9c\x05\x03\x83\x95\x00\x00\x84\x86\x05\x05\xcb\x13\ +\x00\x00\x51\x88\x05\x0f\xf2\x74\x00\x00\xaf\xbd\x05\x1b\x10\x59\ +\x00\x00\x55\xbc\x05\x2a\xe5\x97\x00\x00\x5e\x77\x05\x44\x3b\x5f\ +\x00\x00\x86\x7f\x05\x5c\xd9\xc4\x00\x00\x11\x16\x05\x5c\xd9\xc4\ +\x00\x00\xae\x44\x05\x63\xf6\x93\x00\x00\x5d\x4b\x05\x65\xee\x65\ +\x00\x00\x9a\x54\x05\x87\xb0\xc3\x00\x00\xb7\x4a\x05\x96\xa8\xa5\ +\x00\x00\x14\xd3\x05\x96\xa8\xa5\x00\x00\xb8\x70\x05\xad\x4b\xc3\ +\x00\x00\x53\xa0\x05\xb2\xa6\xc6\x00\x00\x22\x19\x05\xb9\x03\xc8\ +\x00\x00\x22\x92\x05\xbd\x0c\xba\x00\x00\x9d\xd3\x05\xbd\x8e\xde\ +\x00\x00\x74\xe2\x05\xbe\x56\x93\x00\x00\x5b\x36\x05\xc5\x50\x04\ +\x00\x00\x0d\x8f\x05\xe5\x8e\x2e\x00\x00\x12\xd3\x05\xfb\xdc\x83\ +\x00\x00\x51\xe4\x06\x1e\xe6\xb5\x00\x00\xbd\xce\x06\x29\xee\xa9\ +\x00\x00\x92\x22\x06\x2a\x86\xcd\x00\x00\x61\x42\x06\x57\x19\xf4\ +\x00\x00\x00\x00\x06\x5a\xef\x15\x00\x00\x8a\xfa\x06\x5b\xd2\xb5\ +\x00\x00\x49\xdb\x06\x6c\x88\x8e\x00\x00\x4f\xab\x06\x74\x1d\x55\ +\x00\x00\x68\xce\x06\x8b\x96\x44\x00\x00\x0e\x41\x06\x97\x58\xc9\ +\x00\x00\x64\x06\x06\xbc\x80\xa5\x00\x00\x20\x85\x06\xc9\xb8\x05\ +\x00\x00\x8e\x4c\x06\xe8\x05\x4e\x00\x00\x08\x26\x06\xee\xaa\x57\ +\x00\x00\xbc\xc9\x06\xf0\xcb\x25\x00\x00\x1e\x3d\x06\xfa\xff\xc3\ +\x00\x00\x52\xe4\x06\xfc\x1a\x14\x00\x00\x3a\x2d\x06\xfc\xa0\x8a\ +\x00\x00\xaf\xfe\x07\x08\x90\xe5\x00\x00\x30\x4b\x07\x0d\xb7\xf7\ +\x00\x00\x3f\x88\x07\x0e\x86\x3e\x00\x00\x1e\xb0\x07\x2a\x23\x65\ +\x00\x00\x3e\x85\x07\x35\x68\x6e\x00\x00\x18\xbb\x07\x35\xe8\x9a\ +\x00\x00\xb5\x1c\x07\x44\x41\x2a\x00\x00\x9b\xf8\x07\x4a\x1f\x63\ +\x00\x00\x01\xf6\x07\x4d\x73\x22\x00\x00\xac\x49\x07\x4e\xa6\xf2\ +\x00\x00\x98\xd9\x07\x58\xcb\xe8\x00\x00\xac\x83\x07\x63\xfe\x0e\ +\x00\x00\x13\xa4\x07\x63\xfe\x0e\x00\x00\xb7\x19\x07\x71\xad\x43\ +\x00\x00\x19\xc8\x07\x80\xc6\xb3\x00\x00\xc0\xf4\x07\x88\x72\x5a\ +\x00\x00\x8f\x85\x07\x91\x78\x5e\x00\x00\x27\x71\x07\xa7\x30\x05\ +\x00\x00\x8f\x56\x07\xc1\xfc\x13\x00\x00\x34\x16\x07\xe7\xec\x93\ +\x00\x00\x7b\x01\x08\x27\xb4\xba\x00\x00\xb3\x05\x08\x32\xc4\xaa\ +\x00\x00\xb5\xcd\x08\x36\x74\x14\x00\x00\x29\x7c\x08\x44\xb9\x83\ +\x00\x00\x3a\xaa\x08\x49\xc9\x30\x00\x00\x17\xdc\x08\x61\x7c\xb3\ +\x00\x00\x22\xdf\x08\xa2\xca\x67\x00\x00\x63\x25\x08\xa3\xe0\x33\ +\x00\x00\x93\xa5\x08\xb1\x15\x28\x00\x00\x34\xb7\x08\xb4\x04\x04\ +\x00\x00\xb7\xf3\x08\xd0\x32\xf4\x00\x00\x98\xa2\x08\xd4\xcd\x69\ +\x00\x00\x99\x1f\x08\xe1\x9b\xbe\x00\x00\x1d\x83\x08\xe1\xc1\xfa\ +\x00\x00\x9b\x3e\x08\xef\x4d\x7a\x00\x00\x95\xec\x09\x20\xda\x24\ +\x00\x00\xc2\x2a\x09\x20\xda\xb4\x00\x00\xc2\xd9\x09\x20\xda\xd4\ +\x00\x00\xc1\x5b\x09\x4d\x96\xd9\x00\x00\x2a\xb3\x09\x65\xda\x8a\ +\x00\x00\x9f\xb9\x09\x68\x0d\x29\x00\x00\xaa\x72\x09\x71\x8d\x25\ +\x00\x00\x07\xde\x09\x75\x23\x14\x00\x00\x8c\xaf\x09\x76\xed\x34\ +\x00\x00\x7a\xb1\x09\x86\xa6\x05\x00\x00\x28\xa2\x09\x8b\x23\xba\ +\x00\x00\xb6\x38\x09\x9e\xfd\x7e\x00\x00\x7b\xb3\x09\xb6\x2a\x63\ +\x00\x00\x39\x25\x09\xcd\x1c\x55\x00\x00\xb9\x0f\x09\xd2\x21\xea\ +\x00\x00\x72\x07\x09\xe5\x23\x0e\x00\x00\x6c\x35\x09\xec\x2b\x45\ +\x00\x00\x0d\xef\x09\xef\x33\xa3\x00\x00\x1a\x96\x09\xf0\x1f\x6e\ +\x00\x00\x03\x60\x09\xfd\x45\x1a\x00\x00\xb1\xaf\x0a\x09\xc1\x7a\ +\x00\x00\xb4\x70\x0a\x28\x9a\x65\x00\x00\x60\x0b\x0a\x28\x9a\x67\ +\x00\x00\x60\x52\x0a\x28\x9a\x69\x00\x00\x60\x99\x0a\x2d\xbe\xe4\ +\x00\x00\x36\x15\x0a\x35\xa9\xfa\x00\x00\xa4\x82\x0a\x3f\x27\x74\ +\x00\x00\x95\x86\x0a\x40\xa1\xe3\x00\x00\x32\x71\x0a\x49\xa5\x4a\ +\x00\x00\xbe\x37\x0a\x60\xe0\x15\x00\x00\x2b\xd7\x0a\x60\xe0\x17\ +\x00\x00\x2c\x2a\x0a\x60\xe0\x19\x00\x00\x2c\x7d\x0a\x65\x9b\xea\ +\x00\x00\xae\x70\x0a\x78\x05\x80\x00\x00\x01\x3f\x0a\x7f\x8f\x65\ +\x00\x00\x45\xd8\x0a\x81\xe4\x23\x00\x00\x4b\x13\x0a\x86\x10\x44\ +\x00\x00\x12\x42\x0a\x98\x86\x18\x00\x00\x2f\xbc\x0a\x99\x5c\xaa\ +\x00\x00\xb6\x92\x0a\xa8\x16\x95\x00\x00\x14\x94\x0a\xa8\x16\x95\ +\x00\x00\xb7\xbe\x0a\xa9\x89\xec\x00\x00\x54\x78\x0a\xc8\x5c\x59\ +\x00\x00\x11\x49\x0a\xd0\x50\xb8\x00\x00\x8b\x9a\x0a\xd0\xe6\xf5\ +\x00\x00\x19\x71\x0a\xd6\xf1\xfa\x00\x00\x98\x0d\x0a\xeb\x91\x88\ +\x00\x00\x7a\x0e\x0b\x07\x78\x8a\x00\x00\x9f\x18\x0b\x1b\xe0\x73\ +\x00\x00\x64\x7e\x0b\x24\x9d\xb4\x00\x00\x65\x49\x0b\x24\xc5\xc9\ +\x00\x00\x15\x04\x0b\x26\x7e\x0e\x00\x00\x94\xa6\x0b\x2b\x50\xfa\ +\x00\x00\xa2\xbc\x0b\x2d\xb3\xf9\x00\x00\x80\x82\x0b\x37\x73\x69\ +\x00\x00\xbf\xe9\x0b\x40\x40\x3e\x00\x00\x56\x2a\x0b\x43\xcd\x19\ +\x00\x00\x54\xf6\x0b\x4f\x98\xba\x00\x00\xa0\xbc\x0b\x66\x28\xd2\ +\x00\x00\x78\x6a\x0b\x88\xe0\x07\x00\x00\x0c\x7a\x0b\x94\x44\xc5\ +\x00\x00\x36\x8a\x0b\x98\x12\xaa\x00\x00\x9d\x34\x0b\xa0\x84\x94\ +\x00\x00\x04\x37\x0b\xb3\x46\x6a\x00\x00\x93\x26\x0b\xc2\x99\x6a\ +\x00\x00\x9e\x5b\x0b\xd3\x27\xae\x00\x00\x05\x42\x0b\xd4\x7e\x9e\ +\x00\x00\x0c\xb1\x0b\xf5\xee\x53\x00\x00\xae\x03\x0c\x06\x50\x2e\ +\x00\x00\x0e\xc6\x0c\x19\xfa\x99\x00\x00\x99\xa7\x0c\x21\x0a\x83\ +\x00\x00\x91\xd1\x0c\x28\x9b\x45\x00\x00\x8c\x22\x0c\x31\x7e\x4a\ +\x00\x00\xb2\x55\x0c\x38\x4d\xe5\x00\x00\x08\xd2\x0c\x3a\x16\xd0\ +\x00\x00\x1c\x58\x0c\x5a\xc0\xc8\x00\x00\x90\x04\x0c\x6e\x87\xf5\ +\x00\x00\x27\x34\x0c\x7c\xe0\xa6\x00\x00\x21\x46\x0c\x80\x3b\x33\ +\x00\x00\x97\x9f\x0c\x91\xa0\x7a\x00\x00\xbd\x79\x0c\x96\x90\x59\ +\x00\x00\x55\x51\x0c\xbe\xa7\x4e\x00\x00\x4c\x7d\x0c\xca\xdd\xfa\ +\x00\x00\xbb\xc3\x0c\xd6\xef\x12\x00\x00\x33\xbb\x0c\xde\x99\x49\ +\x00\x00\x80\xce\x0c\xe1\x21\x02\x00\x00\x5f\x14\x0c\xe2\x77\x73\ +\x00\x00\x83\x05\x0c\xf0\xde\xaa\x00\x00\xa1\x5b\x0d\x1c\xf6\xee\ +\x00\x00\x31\x40\x0d\x3a\x6c\xba\x00\x00\xb2\xab\x0d\x45\xe2\x6a\ +\x00\x00\xba\x81\x0d\x59\xa1\x45\x00\x00\x96\xa5\x0d\x5a\xad\x33\ +\x00\x00\x8e\xc4\x0d\x5e\xe7\x6e\x00\x00\x2c\xd0\x0d\x64\xa5\xd9\ +\x00\x00\x70\x4c\x0d\x6d\xf8\xf4\x00\x00\x09\x83\x0d\x74\xdd\x52\ +\x00\x00\x1b\x9d\x0d\x76\xb5\x92\x00\x00\x31\x94\x0d\x9b\xec\xc9\ +\x00\x00\x68\x45\x0d\xa5\xd9\x94\x00\x00\x30\xdd\x0d\xa6\xda\xa4\ +\x00\x00\x57\x43\x0d\xa7\xb9\xc2\x00\x00\x1b\xea\x0d\xc6\xc6\x2a\ +\x00\x00\xb5\x71\x0d\xf2\x39\xba\x00\x00\xa5\x4b\x0e\x1a\x1d\xc3\ +\x00\x00\x52\x52\x0e\x29\x94\x64\x00\x00\x41\xd0\x0e\x2b\x04\x15\ +\x00\x00\x94\x23\x0e\x2c\xe4\x2a\x00\x00\xba\x0e\x0e\x4e\xcc\xc5\ +\x00\x00\x0a\xd0\x0e\x6f\x9a\x1a\x00\x00\xbc\x53\x0e\x7b\x7a\x2c\ +\x00\x00\x37\x7c\x0e\x8f\x6a\x37\x00\x00\x3b\xfe\x0e\x91\x65\xf5\ +\x00\x00\x1d\x0b\x0e\xca\xd7\x34\x00\x00\x24\xd3\x0e\xcd\x1c\x55\ +\x00\x00\xb9\x64\x0e\xcd\x1c\x65\x00\x00\xb9\xb9\x0e\xcd\x5b\x59\ +\x00\x00\x5c\x2e\x0e\xea\xe5\x03\x00\x00\x89\x7b\x0e\xed\xe1\xf9\ +\x00\x00\x59\x3f\x0f\x07\x8d\xe3\x00\x00\x8a\x1d\x0f\x0b\x10\x53\ +\x00\x00\x57\xb1\x0f\x17\x82\x4e\x00\x00\x00\xe9\x0f\x1f\x8d\xa5\ +\x00\x00\x93\xdd\x0f\x4f\x75\x3a\x00\x00\xc3\x4b\x0f\x5f\xca\xd5\ +\x00\x00\x37\x09\x0f\x77\xc3\xb4\x00\x00\x81\xaa\x0f\x89\x0b\xbe\ +\x00\x00\x59\xa1\x0f\x8f\xa8\xa7\x00\x00\x1b\x48\x0f\x98\x0a\x39\ +\x00\x00\xbf\x4b\x0f\x9e\xec\xa0\x00\x00\x13\xdd\x0f\xbf\x87\xa3\ +\x00\x00\xab\x61\x0f\xcd\xce\x95\x00\x00\x3b\x8c\x0f\xdf\x21\x05\ +\x00\x00\x29\x23\x0f\xf6\x06\x1e\x00\x00\x25\x33\x0f\xf6\x29\x0a\ +\x00\x00\x8e\x7e\x0f\xfb\x5f\xae\x00\x00\x94\xf6\x69\x00\x00\xc3\ +\xf9\x03\x00\x00\x00\x16\x00\x44\x00\x6f\x00\x64\x00\x61\x00\x6a\ +\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x41\x64\x64\x20\x50\x6f\x69\x6e\x74\x07\ +\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x50\x6f\x69\ +\x6e\x74\x01\x03\x00\x00\x00\x5c\x00\x57\x00\x73\x00\x74\x00\x61\ +\x00\x77\x00\x69\x00\x61\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\ +\x00\x74\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x62\x00\x69\x00\x65\ +\x01\x7c\x01\x05\x00\x63\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x73\ +\x00\x7a\x00\x6b\x00\x69\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x75\ +\x00\x2f\x00\x42\x00\x2d\x00\x53\x00\x70\x00\x6c\x00\x61\x00\x6a\ +\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x41\x64\ +\x64\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x74\x6f\x20\x61\x6e\ +\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x77\x69\x72\x65\x2f\x62\ +\x73\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\ +\x5f\x41\x64\x64\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x22\x00\ +\x44\x00\x6f\x00\x64\x00\x61\x00\x6a\x00\x20\x00\x64\x00\x6f\x00\ +\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\x79\x00\x2e\x00\x2e\x00\ +\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x41\x64\x64\x20\x74\ +\x6f\x20\x67\x72\x6f\x75\x70\x2e\x2e\x2e\x07\x00\x00\x00\x10\x44\ +\x72\x61\x66\x74\x5f\x41\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\x01\ +\x03\x00\x00\x00\x62\x00\x44\x00\x6f\x00\x64\x00\x61\x00\x77\x00\ +\x61\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x7a\x00\x61\x00\x7a\x00\ +\x6e\x00\x61\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x79\x00\x63\x00\ +\x68\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\ +\xf3\x00\x77\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x62\x00\x69\x00\ +\x65\x01\x7c\x01\x05\x00\x63\x00\x65\x00\x6a\x00\x20\x00\x67\x00\ +\x72\x00\x75\x00\x70\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x30\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x28\x73\x29\x20\x74\x6f\x20\ +\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x67\x72\x6f\x75\ +\x70\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x54\ +\x6f\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x84\x00\x53\x00\x74\ +\x00\x6f\x00\x73\x00\x75\x00\x6a\x00\x65\x00\x20\x00\x62\x00\x69\ +\x00\x65\x01\x7c\x01\x05\x00\x63\x01\x05\x00\x20\x00\x73\x00\x7a\ +\x00\x65\x00\x72\x00\x6f\x00\x6b\x00\x6f\x01\x5b\x01\x07\x00\x20\ +\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x69\x00\x20\x00\x69\x00\x20\ +\x00\x6b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\xf3\x00\x77\x00\x20\ +\x00\x64\x00\x6f\x00\x20\x00\x7a\x00\x61\x00\x7a\x00\x6e\x00\x61\ +\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x79\x00\x63\x00\x68\x00\x20\ +\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\xf3\x00\x77\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x41\x70\x70\x6c\x69\x65\ +\x73\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\x6e\x65\x20\x77\ +\x69\x64\x74\x68\x20\x61\x6e\x64\x20\x63\x6f\x6c\x6f\x72\x20\x74\ +\x6f\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x70\x70\ +\x6c\x79\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\x2a\x00\x5a\x00\ +\x61\x00\x73\x00\x74\x00\x6f\x00\x73\x00\x75\x00\x6a\x00\x20\x00\ +\x42\x00\x69\x00\x65\x01\x7c\x01\x05\x00\x63\x00\x79\x00\x20\x00\ +\x73\x00\x74\x00\x79\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x13\x41\x70\x70\x6c\x79\x20\x43\x75\x72\x72\x65\x6e\x74\x20\x53\ +\x74\x79\x6c\x65\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\ +\x70\x70\x6c\x79\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\x06\x01\ +\x41\x00\x75\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\ +\x72\x63\x07\x00\x00\x00\x09\x44\x72\x61\x66\x74\x5f\x41\x72\x63\ +\x01\x03\x00\x00\x00\x56\x00\x54\x00\x77\x00\x6f\x00\x72\x00\x7a\ +\x00\x79\x00\x20\x01\x42\x00\x75\x00\x6b\x00\x2e\x00\x20\x00\x43\ +\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x79\ +\x00\x63\x00\x69\x01\x05\x00\x67\x00\x61\x00\x6a\x00\x2c\x00\x20\ +\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x6f\x00\x67\ +\x00\x72\x00\x61\x00\x6e\x00\x69\x00\x63\x00\x7a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\ +\x20\x61\x72\x63\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ +\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\ +\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x09\x44\x72\x61\x66\x74\ +\x5f\x41\x72\x63\x01\x03\x00\x00\x00\x0e\x00\x54\x00\x61\x00\x62\ +\x00\x6c\x00\x69\x00\x63\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x41\x72\x72\x61\x79\x07\x00\x00\x00\x0b\x44\x72\x61\x66\ +\x74\x5f\x41\x72\x72\x61\x79\x01\x03\x00\x00\x00\x76\x00\x43\x00\ +\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\ +\x20\x00\x70\x00\x6f\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x6f\x00\ +\x72\x00\x20\x00\x72\x00\x65\x00\x63\x00\x74\x00\x61\x00\x6e\x00\ +\x67\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x61\x00\x72\x00\ +\x72\x00\x61\x00\x79\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ +\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3b\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x70\x6f\x6c\x61\x72\x20\x6f\x72\x20\ +\x72\x65\x63\x74\x61\x6e\x67\x75\x6c\x61\x72\x20\x61\x72\x72\x61\ +\x79\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x0b\x44\x72\x61\ +\x66\x74\x5f\x41\x72\x72\x61\x79\x01\x03\x00\x00\x00\x10\x00\x42\ +\x00\x2d\x00\x53\x00\x70\x00\x6c\x00\x61\x00\x6a\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x08\x42\x2d\x53\x70\x6c\x69\x6e\x65\ +\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x42\x53\x70\x6c\x69\ +\x6e\x65\x01\x03\x00\x00\x00\x90\x00\x54\x00\x77\x00\x6f\x00\x72\ +\x00\x7a\x00\x79\x00\x20\x00\x77\x00\x69\x00\x65\x00\x6c\x00\x6f\ +\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x6f\x00\x77\x00\x79\ +\x00\x20\x00\x62\x00\x2d\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x6e\ +\x00\x65\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x2c\ +\x00\x20\x00\x61\x00\x62\x00\x79\x00\x20\x00\x70\x00\x72\x00\x7a\ +\x00\x79\x00\x63\x00\x69\x01\x05\x01\x07\x00\x2c\x00\x20\x00\x53\ +\x00\x48\x00\x49\x00\x46\x00\x54\x00\x2c\x00\x20\x00\x61\x00\x62\ +\x00\x79\x00\x20\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x6e\x00\x69\ +\x00\x63\x00\x7a\x00\x79\x01\x07\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x43\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x6d\x75\x6c\x74\ +\x69\x70\x6c\x65\x2d\x70\x6f\x69\x6e\x74\x20\x62\x2d\x73\x70\x6c\ +\x69\x6e\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\ +\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\ +\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\ +\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x0a\x00\x4f\x00\ +\x6b\x00\x72\x01\x05\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x06\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x0c\x44\x72\x61\x66\ +\x74\x5f\x43\x69\x72\x63\x6c\x65\x01\x03\x00\x00\x00\x74\x00\x54\ +\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\x79\x00\x20\x00\x6f\x00\x6b\ +\x00\x72\x01\x05\x00\x67\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\ +\x00\x4c\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x79\x00\x63\x00\x69\ +\x01\x05\x00\x67\x00\x61\x00\x6a\x00\x2c\x00\x20\x00\x41\x00\x4c\ +\x00\x54\x00\x20\x00\x77\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\ +\x00\x7a\x00\x20\x00\x73\x00\x74\x00\x79\x00\x63\x00\x7a\x00\x6e\ +\x01\x05\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\ +\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3d\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x63\x69\x72\x63\x6c\x65\x2e\x20\x43\x54\ +\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x41\x4c\x54\x20\ +\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x20\x74\x61\x6e\x67\x65\x6e\ +\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0c\x44\x72\ +\x61\x66\x74\x5f\x43\x69\x72\x63\x6c\x65\x01\x03\x00\x00\x00\x08\ +\x00\x4b\x00\x6c\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x43\x6c\x6f\x6e\x65\x07\x00\x00\x00\x0b\x44\x72\x61\x66\ +\x74\x5f\x43\x6c\x6f\x6e\x65\x01\x03\x00\x00\x00\x3a\x00\x43\x00\ +\x6c\x00\x6f\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x28\x00\x73\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1d\x43\x6c\x6f\x6e\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x28\x73\x29\x07\x00\ +\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\x6e\x65\x01\x03\ +\x00\x00\x00\x1a\x00\x5a\x00\x61\x00\x6d\x00\x6b\x00\x6e\x00\x69\ +\x00\x6a\x00\x20\x00\x4c\x00\x69\x00\x6e\x00\x69\x01\x19\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6c\x6f\x73\x65\x20\x4c\x69\ +\x6e\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\ +\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x2a\x00\x5a\x00\x61\ +\x00\x6d\x00\x79\x00\x6b\x00\x61\x00\x20\x00\x72\x00\x79\x00\x73\ +\x00\x6f\x00\x77\x00\x61\x00\x6e\x01\x05\x00\x20\x00\x6c\x00\x69\ +\x00\x6e\x00\x69\x01\x19\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\ +\x43\x6c\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x6c\x69\x6e\x65\x20\ +\x62\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x07\x00\x00\x00\x0f\ +\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\x73\x65\x4c\x69\x6e\x65\x01\ +\x03\x00\x00\x00\x14\x00\x55\x00\x73\x00\x75\x01\x44\x00\x20\x00\ +\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0c\x52\x65\x6d\x6f\x76\x65\x20\x50\x6f\x69\x6e\x74\x07\ +\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x44\x65\x6c\x50\x6f\x69\ +\x6e\x74\x01\x03\x00\x00\x00\x5e\x00\x55\x00\x73\x00\x75\x00\x77\ +\x00\x61\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x20\ +\x00\x7a\x00\x20\x00\x62\x00\x69\x00\x65\x01\x7c\x01\x05\x00\x63\ +\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x73\x00\x7a\x00\x6b\x00\x69\ +\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x75\x00\x20\x00\x6c\x00\x75\ +\x00\x62\x00\x20\x00\x42\x00\x2d\x00\x53\x00\x70\x00\x6c\x00\x61\ +\x00\x6a\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\ +\x52\x65\x6d\x6f\x76\x65\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\ +\x66\x72\x6f\x6d\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\ +\x20\x77\x69\x72\x65\x20\x6f\x72\x20\x62\x73\x70\x6c\x69\x6e\x65\ +\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x44\x65\x6c\x50\x6f\ +\x69\x6e\x74\x01\x03\x00\x00\x00\xa2\x00\x54\x00\x77\x00\x6f\x00\ +\x72\x00\x7a\x00\x79\x00\x20\x00\x77\x00\x79\x00\x6d\x00\x69\x00\ +\x61\x00\x72\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ +\x20\x00\x70\x00\x72\x00\x7a\x00\x79\x00\x63\x00\x69\x01\x05\x00\ +\x67\x00\x61\x00\x6a\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\ +\x46\x00\x54\x00\x2c\x00\x20\x00\x61\x00\x62\x00\x79\x00\x20\x00\ +\x6f\x00\x67\x00\x72\x00\x61\x00\x6e\x00\x69\x00\x63\x00\x7a\x00\ +\x79\x01\x07\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x2c\x00\ +\x20\x00\x61\x00\x62\x00\x79\x00\x20\x00\x7a\x00\x61\x00\x7a\x00\ +\x6e\x00\x61\x00\x63\x00\x7a\x00\x79\x01\x07\x00\x20\x00\x73\x00\ +\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x4e\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x64\ +\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\ +\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\ +\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\ +\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x20\x61\x20\x73\x65\x67\x6d\ +\x65\x6e\x74\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x69\ +\x6d\x65\x6e\x73\x69\x6f\x6e\x01\x03\x00\x00\x00\x0c\x00\x57\x00\ +\x79\x00\x6d\x00\x69\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\ +\x0f\x44\x72\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ +\x01\x03\x00\x00\x00\x3c\x00\x5a\x00\x61\x00\x69\x00\x6e\x00\x73\ +\x00\x74\x00\x61\x00\x6c\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\ +\x00\x65\x00\x20\x00\x73\x00\x74\x00\x61\x00\x72\x00\x73\x00\x7a\ +\x00\x65\x00\x6a\x00\x20\x00\x77\x00\x65\x00\x72\x00\x73\x00\x6a\ +\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x44\x6f\x77\x6e\ +\x67\x72\x61\x64\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\ +\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x80\x00\ +\x52\x00\x6f\x00\x7a\x00\x77\x00\x69\x00\x6a\x00\x61\x00\x20\x00\ +\x7a\x00\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\x6f\x00\ +\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\ +\x74\x00\x79\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x70\x00\x72\x00\ +\x6f\x00\x73\x00\x74\x00\x73\x00\x7a\x00\x65\x00\x20\x00\x6c\x00\ +\x75\x00\x62\x00\x20\x00\x6f\x00\x64\x00\x65\x00\x6a\x00\x6d\x00\ +\x75\x00\x6a\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x77\x00\x69\x00\ +\x65\x00\x72\x00\x7a\x00\x63\x00\x68\x00\x6e\x00\x69\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x45\x45\x78\x70\x6c\x6f\x64\x65\ +\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\x73\x69\x6d\x70\ +\x6c\x65\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x2c\x20\x6f\x72\x20\ +\x73\x75\x62\x74\x72\x61\x63\x74\x20\x66\x61\x63\x65\x73\x07\x00\ +\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\ +\x64\x65\x01\x03\x00\x00\x00\x22\x00\x50\x00\x72\x00\x6f\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x73\ +\x00\x7a\x00\x6b\x00\x69\x00\x63\x00\x75\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x20\x74\x6f\x20\x53\x6b\x65\ +\x74\x63\x68\x07\x00\x00\x00\x12\x44\x72\x61\x66\x74\x5f\x44\x72\ +\x61\x66\x74\x32\x53\x6b\x65\x74\x63\x68\x01\x03\x00\x00\x00\x0e\ +\x00\x52\x00\x79\x00\x73\x00\x75\x00\x6e\x00\x65\x00\x6b\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x07\x44\x72\x61\x77\x69\x6e\x67\x07\ +\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x44\x72\x61\x77\x69\x6e\ +\x67\x01\x03\x00\x00\x00\x60\x00\x55\x00\x6d\x00\x69\x00\x65\x00\ +\x73\x00\x7a\x00\x63\x00\x7a\x00\x61\x00\x20\x00\x7a\x00\x61\x00\ +\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x79\x00\ +\x20\x00\x6e\x00\x61\x00\x20\x00\x61\x00\x72\x00\x6b\x00\x75\x00\ +\x73\x00\x7a\x00\x75\x00\x20\x00\x72\x00\x79\x00\x73\x00\x75\x00\ +\x6e\x00\x6b\x00\x75\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2d\x50\x75\x74\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x6f\x6e\x20\x61\x20\ +\x44\x72\x61\x77\x69\x6e\x67\x20\x73\x68\x65\x65\x74\x2e\x07\x00\ +\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x44\x72\x61\x77\x69\x6e\x67\ +\x01\x03\x00\x00\x00\x0c\x00\x45\x00\x64\x00\x79\x00\x74\x00\x75\ +\x00\x6a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\ +\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\ +\x03\x00\x00\x00\x2a\x00\x45\x00\x64\x00\x79\x00\x74\x00\x75\x00\ +\x6a\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x79\x00\x77\x00\x6e\x00\ +\x79\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x17\x45\x64\x69\x74\x73\x20\x74\ +\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\ +\x03\x00\x00\x00\x22\x00\x5a\x00\x61\x00\x6b\x00\x6f\x01\x44\x00\ +\x63\x00\x7a\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x6c\x00\ +\x69\x00\x6e\x00\x69\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0b\x46\x69\x6e\x69\x73\x68\x20\x6c\x69\x6e\x65\x07\x00\x00\x00\ +\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\x69\x73\x68\x4c\x69\x6e\ +\x65\x01\x03\x00\x00\x00\x3e\x00\x5a\x00\x61\x00\x6b\x00\x6f\x01\ +\x44\x00\x63\x00\x7a\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x20\x00\ +\x6c\x00\x69\x00\x6e\x00\x69\x00\x69\x00\x20\x00\x62\x00\x65\x00\ +\x7a\x00\x20\x00\x7a\x00\x61\x00\x6d\x00\x79\x00\x6b\x00\x61\x00\ +\x6e\x00\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x46\ +\x69\x6e\x69\x73\x68\x65\x73\x20\x61\x20\x6c\x69\x6e\x65\x20\x77\ +\x69\x74\x68\x6f\x75\x74\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\ +\x74\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\x69\ +\x73\x68\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x6e\x00\x54\x00\x77\ +\x00\x6f\x00\x72\x00\x7a\x00\x79\x00\x20\x00\x32\x00\x2d\x00\x70\ +\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x6f\x00\x77\x00\x65\x00\x20\ +\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x2e\x00\x20\x00\x43\x00\x54\ +\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x79\x00\x63\ +\x00\x69\x01\x05\x00\x67\x00\x61\x00\x6a\x00\x2c\x00\x20\x00\x53\ +\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x6f\x00\x67\x00\x72\ +\x00\x61\x00\x6e\x00\x69\x00\x63\x00\x7a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x38\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x32\x2d\ +\x70\x6f\x69\x6e\x74\x20\x6c\x69\x6e\x65\x2e\x20\x43\x54\x52\x4c\ +\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\ +\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\ +\x0a\x44\x72\x61\x66\x74\x5f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\ +\x0a\x00\x4c\x00\x69\x00\x6e\x00\x69\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x0a\x44\x72\ +\x61\x66\x74\x5f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x0e\x00\x50\ +\x00\x72\x00\x7a\x00\x65\x00\x73\x00\x75\x01\x44\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x4d\x6f\x76\x65\x07\x00\x00\x00\x0a\x44\ +\x72\x61\x66\x74\x5f\x4d\x6f\x76\x65\x01\x03\x00\x00\x00\xb4\x00\ +\x50\x00\x72\x00\x7a\x00\x65\x00\x6e\x00\x6f\x00\x73\x00\x69\x00\ +\x20\x00\x7a\x00\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\ +\x6f\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\ +\x6b\x00\x74\x00\x79\x00\x20\x00\x6d\x00\x69\x01\x19\x00\x64\x00\ +\x7a\x00\x79\x00\x20\x00\x32\x00\x20\x00\x70\x00\x75\x00\x6e\x00\ +\x6b\x00\x74\x00\x79\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\ +\x4c\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x79\x00\x63\x00\x69\x01\ +\x05\x00\x67\x00\x61\x00\x6a\x00\x2c\x00\x20\x00\x53\x00\x48\x00\ +\x49\x00\x46\x00\x54\x00\x2c\x00\x20\x00\x6f\x00\x67\x00\x72\x00\ +\x61\x00\x6e\x00\x69\x00\x63\x00\x7a\x00\x2c\x00\x20\x00\x41\x00\ +\x4c\x00\x54\x00\x2c\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\ +\x75\x00\x6a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5a\x4d\x6f\x76\ +\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\ +\x32\x20\x70\x6f\x69\x6e\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\ +\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\ +\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\ +\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0a\x44\x72\x61\x66\ +\x74\x5f\x4d\x6f\x76\x65\x01\x03\x00\x00\x00\x0c\x00\x4f\x00\x66\ +\x00\x66\x00\x73\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x0c\x44\x72\x61\ +\x66\x74\x5f\x4f\x66\x66\x73\x65\x74\x01\x03\x00\x00\x00\x90\x00\ +\x4f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x00\x20\x00\x61\x00\ +\x6b\x00\x74\x00\x79\x00\x77\x00\x6e\x00\x65\x00\x67\x00\x6f\x00\ +\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x75\x00\ +\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\ +\x72\x00\x7a\x00\x79\x00\x63\x00\x69\x01\x05\x00\x67\x00\x6e\x00\ +\x69\x00\x6a\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\ +\x54\x00\x2c\x00\x20\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x6e\x00\ +\x69\x00\x63\x00\x7a\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\ +\x2c\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x75\x00\x6a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x48\x4f\x66\x66\x73\x65\x74\x73\ +\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\ +\x63\x74\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\ +\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\ +\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\ +\x79\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x4f\x66\x66\x73\ +\x65\x74\x01\x03\x00\x00\x00\x2c\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x70\x00\x6f\ +\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x6f\x62\ +\x6a\x65\x63\x74\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x50\ +\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x0a\x00\x50\x00\x75\x00\x6e\ +\x00\x6b\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x50\x6f\ +\x69\x6e\x74\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x50\x6f\ +\x69\x6e\x74\x01\x03\x00\x00\x00\x74\x00\x54\x00\x77\x00\x6f\x00\ +\x72\x00\x7a\x00\x79\x00\x20\x00\x72\x00\x65\x00\x67\x00\x75\x00\ +\x6c\x00\x61\x00\x72\x00\x6e\x00\x79\x00\x20\x00\x77\x00\x69\x00\ +\x65\x00\x6c\x00\x6f\x00\x62\x00\x6f\x00\x6b\x00\x2e\x00\x20\x00\ +\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x72\x00\x7a\x00\ +\x79\x00\x63\x00\x69\x01\x05\x00\x67\x00\x61\x00\x6a\x00\x2c\x00\ +\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x6f\x00\ +\x67\x00\x72\x00\x61\x00\x6e\x00\x69\x00\x63\x00\x7a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x3b\x43\x72\x65\x61\x74\x65\x73\x20\x61\ +\x20\x72\x65\x67\x75\x6c\x61\x72\x20\x70\x6f\x6c\x79\x67\x6f\x6e\ +\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\ +\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\ +\x69\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x50\x6f\x6c\ +\x79\x67\x6f\x6e\x01\x03\x00\x00\x00\x10\x00\x57\x00\x69\x00\x65\ +\x00\x6c\x00\x6f\x00\x6b\x01\x05\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x07\x50\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\x00\x0d\ +\x44\x72\x61\x66\x74\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\x03\x00\ +\x00\x00\x6a\x00\x54\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\x79\x00\ +\x20\x00\x70\x00\x72\x00\x6f\x00\x73\x00\x74\x00\x6f\x00\x6b\x01\ +\x05\x00\x74\x00\x20\x00\x77\x00\x7a\x00\x67\x00\x6c\x01\x19\x00\ +\x64\x00\x65\x00\x6d\x00\x20\x00\x32\x00\x20\x00\x70\x00\x75\x00\ +\x6e\x00\x6b\x00\x74\x00\xf3\x00\x77\x00\x2e\x00\x20\x00\x43\x00\ +\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x79\x00\ +\x63\x00\x69\x01\x05\x00\x67\x00\x6e\x00\x69\x00\x6a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x29\x43\x72\x65\x61\x74\x65\x73\x20\x61\ +\x20\x32\x2d\x70\x6f\x69\x6e\x74\x20\x72\x65\x63\x74\x61\x6e\x67\ +\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\ +\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x52\x65\x63\x74\x61\ +\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\x12\x00\x50\x00\x72\x00\x6f\ +\x00\x73\x00\x74\x00\x6f\x00\x6b\x01\x05\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\ +\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x52\x65\x63\x74\x61\x6e\ +\x67\x6c\x65\x01\x03\x00\x00\x00\x0a\x00\x4f\x00\x62\x00\x72\x00\ +\xf3\x01\x07\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x6f\x74\ +\x61\x74\x65\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x52\x6f\ +\x74\x61\x74\x65\x01\x03\x00\x00\x00\x94\x00\x4f\x00\x62\x00\x72\ +\x00\x61\x00\x63\x00\x61\x00\x20\x00\x77\x00\x79\x00\x62\x00\x72\ +\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\ +\x00\x6b\x00\x74\x00\x79\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\ +\x00\x4c\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x79\x00\x63\x00\x69\ +\x01\x05\x00\x67\x00\x61\x00\x6a\x00\x2c\x00\x20\x00\x53\x00\x48\ +\x00\x49\x00\x46\x00\x54\x00\x2c\x00\x20\x00\x6f\x00\x67\x00\x72\ +\x00\x61\x00\x6e\x00\x69\x00\x63\x00\x7a\x00\x2c\x00\x20\x00\x41\ +\x00\x4c\x00\x54\x00\x20\x00\x74\x00\x77\x00\x6f\x00\x72\x00\x7a\ +\x00\x79\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x01\x19\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x52\x52\x6f\x74\x61\x74\x65\x73\x20\ +\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ +\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\ +\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x63\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0c\x44\ +\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\x01\x03\x00\x00\x00\ +\x0a\x00\x53\x00\x6b\x00\x61\x00\x6c\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x07\x00\x00\x00\x0b\x44\ +\x72\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\xd4\ +\x00\x53\x00\x6b\x00\x61\x00\x6c\x00\x75\x00\x6a\x00\x65\x00\x20\ +\x00\x7a\x00\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\x6f\ +\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\ +\x00\x74\x00\x79\x00\x20\x00\x7a\x00\x20\x00\x70\x00\x75\x00\x6e\ +\x00\x6b\x00\x74\x00\x75\x00\x20\x00\x62\x00\x61\x00\x7a\x00\x6f\ +\x00\x77\x00\x65\x00\x67\x00\x6f\x00\x2e\x00\x20\x00\x43\x00\x54\ +\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x79\x00\x63\ +\x00\x69\x01\x05\x00\x67\x00\x61\x00\x6e\x00\x69\x00\x65\x00\x2c\ +\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x2c\x00\x20\ +\x00\x61\x00\x62\x00\x79\x00\x20\x00\x6f\x00\x67\x00\x72\x00\x61\ +\x00\x6e\x00\x69\x00\x63\x00\x7a\x00\x79\x01\x07\x00\x2c\x00\x20\ +\x00\x41\x00\x4c\x00\x54\x00\x2c\x00\x20\x00\x61\x00\x62\x00\x79\ +\x00\x20\x00\x73\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x6f\x00\x77\ +\x00\x61\x01\x07\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5c\x53\x63\ +\x61\x6c\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x72\x6f\x6d\x20\x61\ +\x20\x62\x61\x73\x65\x20\x70\x6f\x69\x6e\x74\x2e\x20\x43\x54\x52\ +\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\ +\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\ +\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0b\x44\ +\x72\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\x20\ +\x00\x5a\x00\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\x20\ +\x00\x67\x00\x72\x00\x75\x00\x70\x01\x19\x00\x2e\x00\x2e\x00\x2e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x65\x6c\x65\x63\x74\ +\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\ +\x5f\x53\x65\x6c\x65\x63\x74\x47\x72\x6f\x75\x70\x01\x03\x00\x00\ +\x00\x82\x00\x5a\x00\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\ +\x00\x61\x00\x20\x00\x77\x00\x73\x00\x7a\x00\x79\x00\x73\x00\x74\ +\x00\x6b\x00\x69\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\ +\x00\x6b\x00\x74\x00\x79\x00\x20\x00\x77\x00\x20\x00\x64\x00\x61\ +\x00\x6e\x00\x65\x00\x6a\x00\x20\x00\x67\x00\x72\x00\x75\x00\x70\ +\x00\x69\x00\x65\x00\x20\x00\x6f\x00\x64\x00\x20\x00\x74\x00\x79\ +\x00\x63\x00\x68\x00\x20\x00\x73\x00\x61\x00\x6d\x00\x79\x00\x63\ +\x00\x68\x00\x20\x00\x72\x00\x6f\x00\x64\x00\x7a\x00\x69\x00\x63\ +\x00\xf3\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x53\x65\ +\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\ +\x70\x61\x72\x65\x6e\x74\x73\x20\x61\x73\x20\x74\x68\x69\x73\x20\ +\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\ +\x53\x65\x6c\x65\x63\x74\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\ +\x64\x00\x57\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\x00\x7a\x00\ +\x20\x00\x70\x01\x42\x00\x61\x00\x73\x00\x7a\x00\x63\x00\x7a\x00\ +\x79\x00\x7a\x00\x6e\x01\x19\x00\x20\x00\x72\x00\x6f\x00\x62\x00\ +\x6f\x00\x63\x00\x7a\x01\x05\x00\x20\x00\x64\x00\x6f\x00\x20\x00\ +\x74\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\x65\x00\x6e\x00\x69\x00\ +\x61\x00\x20\x00\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\ +\x72\x00\x69\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x53\ +\x65\x6c\x65\x63\x74\x20\x61\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\ +\x70\x6c\x61\x6e\x65\x20\x66\x6f\x72\x20\x67\x65\x6f\x6d\x65\x74\ +\x72\x79\x20\x63\x72\x65\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x11\ +\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\ +\x65\x01\x03\x00\x00\x00\x26\x00\x57\x00\x79\x00\x62\x00\x69\x00\ +\x65\x00\x72\x00\x7a\x00\x20\x00\x70\x01\x42\x00\x61\x00\x73\x00\ +\x7a\x00\x63\x00\x7a\x00\x79\x00\x7a\x00\x6e\x01\x19\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0b\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\ +\x6e\x65\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\ +\x65\x63\x74\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x70\x00\x43\ +\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x20\x00\x62\ +\x00\x69\x00\x64\x00\x69\x00\x72\x00\x65\x00\x63\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x6c\x00\x79\x00\x20\x00\x62\ +\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x61\x00\x6e\x00\x64\ +\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x38\x43\x6f\x6e\x76\x65\x72\x74\x20\ +\x62\x69\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x61\x6c\x6c\x79\x20\ +\x62\x65\x74\x77\x65\x65\x6e\x20\x44\x72\x61\x66\x74\x20\x61\x6e\ +\x64\x20\x53\x6b\x65\x74\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x61\x70\x65\ +\x32\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\x62\x00\x54\x00\x77\ +\x00\x6f\x00\x72\x00\x7a\x00\x79\x00\x20\x00\x6b\x00\x73\x00\x7a\ +\x00\x74\x00\x61\x01\x42\x00\x74\x00\x20\x00\x32\x00\x44\x00\x20\ +\x00\x7a\x00\x20\x00\x77\x00\x69\x00\x64\x00\x6f\x00\x6b\x00\xf3\ +\x00\x77\x00\x20\x00\x7a\x00\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\ +\x00\x7a\x00\x6f\x00\x6e\x00\x79\x00\x63\x00\x68\x00\x20\x00\x6f\ +\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\xf3\x00\x77\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x2a\x43\x72\x65\x61\x74\x65\x73\x20\ +\x53\x68\x61\x70\x65\x20\x32\x44\x20\x76\x69\x65\x77\x73\x20\x6f\ +\x66\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x61\ +\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\x22\x00\x57\ +\x00\x69\x00\x64\x00\x6f\x00\x6b\x00\x20\x00\x32\x00\x44\x00\x20\ +\x00\x6b\x00\x73\x00\x7a\x00\x74\x00\x61\x01\x42\x00\x74\x00\x75\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x68\x61\x70\x65\x20\ +\x32\x44\x20\x76\x69\x65\x77\x07\x00\x00\x00\x11\x44\x72\x61\x66\ +\x74\x5f\x53\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\x00\ +\x00\x00\x1a\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x53\x00\ +\x6e\x00\x61\x00\x70\x00\x20\x00\x42\x00\x61\x00\x72\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0d\x53\x68\x6f\x77\x20\x53\x6e\x61\x70\ +\x20\x42\x61\x72\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\ +\x68\x6f\x77\x53\x6e\x61\x70\x42\x61\x72\x01\x03\x00\x00\x00\x30\ +\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x73\x00\x20\x00\x44\x00\x72\ +\x00\x61\x00\x66\x00\x74\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\ +\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x53\x68\x6f\x77\x73\x20\ +\x44\x72\x61\x66\x74\x20\x73\x6e\x61\x70\x20\x74\x6f\x6f\x6c\x62\ +\x61\x72\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x6f\ +\x77\x53\x6e\x61\x70\x42\x61\x72\x01\x03\x00\x00\x00\x44\x00\x54\ +\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\x79\x00\x20\x00\x61\x00\x64\ +\x00\x6e\x00\x6f\x00\x74\x00\x61\x00\x63\x00\x6a\x00\x65\x00\x2e\ +\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x72\ +\x00\x7a\x00\x79\x00\x63\x00\x69\x01\x05\x00\x67\x00\x6e\x00\x69\ +\x00\x6a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x6e\x20\x61\x6e\x6e\x6f\x74\x61\x74\x69\x6f\ +\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x07\ +\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\x78\x74\x01\x03\ +\x00\x00\x00\x0a\x00\x54\x00\x65\x00\x6b\x00\x73\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x54\x65\x78\x74\x07\x00\x00\x00\ +\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\x78\x74\x01\x03\x00\x00\x00\ +\x30\x00\x50\x00\x72\x00\x7a\x00\x65\x01\x42\x01\x05\x00\x63\x00\ +\x7a\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x74\x00\x72\x00\x79\x00\ +\x62\x00\x75\x00\x20\x00\x62\x00\x75\x00\x64\x00\x6f\x00\x77\x00\ +\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x54\x6f\x67\x67\x6c\ +\x65\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x69\x6f\x6e\x20\x4d\x6f\ +\x64\x65\x07\x00\x00\x00\x1c\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\ +\x67\x6c\x65\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x4d\ +\x6f\x64\x65\x01\x03\x00\x00\x00\x5a\x00\x50\x00\x72\x00\x7a\x00\ +\x65\x01\x42\x01\x05\x00\x63\x00\x7a\x00\x61\x00\x20\x00\x74\x00\ +\x72\x00\x79\x00\x62\x00\x20\x00\x62\x00\x75\x00\x64\x00\x6f\x00\ +\x77\x00\x79\x00\x20\x00\x64\x00\x6c\x00\x61\x00\x20\x00\x6b\x00\ +\x6f\x00\x6c\x00\x65\x00\x6a\x00\x6e\x00\x79\x00\x63\x00\x68\x00\ +\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\xf3\x00\ +\x77\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x54\x6f\x67\ +\x67\x6c\x65\x73\x20\x74\x68\x65\x20\x43\x6f\x6e\x73\x74\x72\x75\ +\x63\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x65\x20\x66\x6f\x72\x20\x6e\ +\x65\x78\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\ +\x1c\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\ +\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x4d\x6f\x64\x65\x01\x03\x00\ +\x00\x00\x32\x00\x57\x01\x42\x01\x05\x00\x63\x00\x7a\x00\x2f\x00\ +\x57\x00\x79\x01\x42\x01\x05\x00\x63\x00\x7a\x00\x20\x00\x62\x00\ +\x69\x00\x65\x01\x7c\x01\x05\x00\x63\x00\x79\x00\x20\x00\x74\x00\ +\x72\x00\x79\x00\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\ +\x6f\x67\x67\x6c\x65\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x20\x4d\ +\x6f\x64\x65\x07\x00\x00\x00\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\ +\x67\x67\x6c\x65\x43\x6f\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\ +\x01\x03\x00\x00\x00\x64\x00\x50\x00\x72\x00\x7a\x00\x65\x01\x42\ +\x01\x05\x00\x63\x00\x7a\x00\x61\x00\x20\x00\x74\x00\x72\x00\x79\ +\x00\x62\x00\x20\x00\x4b\x00\x6f\x00\x6e\x00\x74\x00\x79\x00\x6e\ +\x00\x75\x00\x75\x00\x6a\x00\x20\x00\x64\x00\x6c\x00\x61\x00\x20\ +\x00\x6e\x00\x61\x00\x73\x00\x74\x01\x19\x00\x70\x00\x6e\x00\x65\ +\x00\x67\x00\x6f\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x65\x00\x63\ +\x00\x65\x00\x6e\x00\x69\x00\x61\x00\x2e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2c\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\x65\x20\ +\x43\x6f\x6e\x74\x69\x6e\x75\x65\x20\x4d\x6f\x64\x65\x20\x66\x6f\ +\x72\x20\x6e\x65\x78\x74\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x2e\ +\x07\x00\x00\x00\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\ +\x65\x43\x6f\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\x01\x03\x00\ +\x00\x00\xa6\x00\x5a\x00\x61\x00\x6d\x00\x69\x00\x61\x00\x6e\x00\ +\x61\x00\x20\x00\x74\x00\x72\x00\x79\x00\x62\x00\x75\x00\x20\x00\ +\x77\x00\x79\x01\x5b\x00\x77\x00\x69\x00\x65\x00\x74\x00\x6c\x00\ +\x61\x00\x6e\x00\x69\x00\x61\x00\x20\x00\x77\x00\x79\x00\x62\x00\ +\x72\x00\x61\x00\x6e\x00\x79\x00\x63\x00\x68\x00\x20\x00\x6f\x00\ +\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\xf3\x00\x77\x00\x20\x00\ +\x70\x00\x6f\x00\x6d\x00\x69\x01\x19\x00\x64\x00\x7a\x00\x79\x00\ +\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\ +\x20\x00\x73\x00\x69\x00\x61\x00\x74\x00\x6b\x00\x6f\x00\x77\x00\ +\x79\x00\x6d\x00\x20\x00\x69\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\ +\x69\x00\x6f\x00\x77\x00\x79\x00\x6d\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x46\x53\x77\x61\x70\x73\x20\x64\x69\x73\x70\x6c\x61\x79\ +\x20\x6d\x6f\x64\x65\x20\x6f\x66\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\x74\x77\x65\x65\ +\x6e\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\x61\x6e\x64\x20\ +\x66\x6c\x61\x74\x6c\x69\x6e\x65\x73\x07\x00\x00\x00\x17\x44\x72\ +\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x44\x69\x73\x70\x6c\x61\ +\x79\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x34\x00\x50\x00\x72\x00\ +\x7a\x00\x65\x01\x42\x01\x05\x00\x63\x00\x7a\x00\x20\x00\x74\x00\ +\x72\x00\x79\x00\x62\x00\x20\x00\x77\x00\x79\x01\x5b\x00\x77\x00\ +\x69\x00\x65\x00\x74\x00\x6c\x00\x61\x00\x6e\x00\x69\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x13\x54\x6f\x67\x67\x6c\x65\x20\ +\x64\x69\x73\x70\x6c\x61\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\ +\x17\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x44\x69\x73\ +\x70\x6c\x61\x79\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x1e\x00\x50\ +\x00\x72\x00\x7a\x00\x65\x01\x42\x01\x05\x00\x63\x00\x7a\x00\x20\ +\x00\x73\x00\x69\x00\x61\x00\x74\x00\x6b\x00\x69\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0b\x54\x6f\x67\x67\x6c\x65\x20\x47\x72\x69\ +\x64\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\ +\x6c\x65\x47\x72\x69\x64\x01\x03\x00\x00\x00\x38\x00\x54\x00\x6f\ +\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\ +\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\ +\x00\x67\x00\x69\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x2f\x00\x6f\ +\x00\x66\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x54\x6f\ +\x67\x67\x6c\x65\x73\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\ +\x67\x69\x64\x20\x6f\x6e\x2f\x6f\x66\x66\x07\x00\x00\x00\x10\x44\ +\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x47\x72\x69\x64\x01\ +\x03\x00\x00\x00\x2a\x00\x50\x00\x72\x00\x7a\x00\x65\x01\x42\x01\ +\x05\x00\x63\x00\x7a\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x79\x00\ +\x63\x00\x69\x01\x05\x00\x67\x00\x61\x00\x6e\x00\x69\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x54\x6f\x67\x67\x6c\x65\x20\ +\x73\x6e\x61\x70\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x54\ +\x6f\x67\x67\x6c\x65\x53\x6e\x61\x70\x01\x03\x00\x00\x00\x38\x00\ +\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x73\x00\x20\x00\ +\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x73\x00\x6e\x00\ +\x61\x00\x70\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\x72\x00\ +\x20\x00\x6f\x00\x66\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1c\x54\x6f\x67\x67\x6c\x65\x73\x20\x44\x72\x61\x66\x74\x20\x73\ +\x6e\x61\x70\x20\x6f\x6e\x20\x6f\x72\x20\x6f\x66\x66\x07\x00\x00\ +\x00\x10\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x53\x6e\ +\x61\x70\x01\x03\x00\x00\x00\x26\x00\x50\x00\x72\x00\x7a\x00\x79\ +\x00\x74\x00\x6e\x00\x69\x00\x6a\x00\x2f\x00\x52\x00\x6f\x00\x7a\ +\x00\x63\x00\x69\x01\x05\x00\x67\x00\x6e\x00\x69\x00\x6a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x54\x72\x69\x6d\x65\x78\x07\x00\ +\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x54\x72\x69\x6d\x65\x78\x01\ +\x03\x00\x00\x01\x4a\x00\x50\x00\x72\x00\x7a\x00\x79\x00\x63\x00\ +\x69\x00\x6e\x00\x61\x00\x20\x00\x6c\x00\x75\x00\x62\x00\x20\x00\ +\x72\x00\x6f\x00\x7a\x00\x73\x00\x7a\x00\x65\x00\x72\x00\x7a\x00\ +\x61\x00\x20\x00\x7a\x00\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\ +\x7a\x00\x6f\x00\x6e\x00\x79\x00\x20\x00\x6f\x00\x62\x00\x69\x00\ +\x65\x00\x6b\x00\x74\x00\x2c\x00\x20\x00\x6c\x00\x75\x00\x62\x00\ +\x20\x00\x77\x00\x79\x00\x74\x01\x42\x00\x61\x00\x63\x00\x7a\x00\ +\x61\x00\x20\x00\x70\x00\x6f\x00\x6a\x00\x65\x00\x64\x00\x79\x00\ +\x6e\x00\x63\x00\x7a\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x77\x00\ +\x69\x00\x65\x00\x72\x00\x7a\x00\x63\x00\x68\x00\x6e\x00\x69\x00\ +\x65\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\ +\x73\x00\x6b\x00\x6f\x00\x6b\x00\x6f\x00\x77\x00\x6f\x00\x2c\x00\ +\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x6f\x00\ +\x67\x00\x72\x00\x61\x00\x6e\x00\x69\x00\x63\x00\x7a\x00\x61\x00\ +\x20\x00\x64\x00\x6f\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x75\x00\ +\x61\x00\x6c\x00\x6e\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x73\x00\ +\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x75\x00\x20\x00\ +\x6c\x00\x75\x00\x62\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x70\x00\ +\x72\x00\x6f\x00\x73\x00\x74\x00\x6f\x00\x70\x00\x61\x00\x64\x01\ +\x42\x00\x65\x00\x6a\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\ +\x20\x00\x6f\x00\x64\x00\x77\x00\x72\x00\x61\x00\x63\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x89\x54\x72\x69\x6d\x73\x20\x6f\ +\x72\x20\x65\x78\x74\x65\x6e\x64\x73\x20\x74\x68\x65\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x6f\ +\x72\x20\x65\x78\x74\x72\x75\x64\x65\x73\x20\x73\x69\x6e\x67\x6c\ +\x65\x20\x66\x61\x63\x65\x73\x2e\x20\x43\x54\x52\x4c\x20\x73\x6e\ +\x61\x70\x73\x2c\x20\x53\x48\x49\x46\x54\x20\x63\x6f\x6e\x73\x74\ +\x72\x61\x69\x6e\x73\x20\x74\x6f\x20\x63\x75\x72\x72\x65\x6e\x74\ +\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\x72\x20\x74\x6f\x20\x6e\ +\x6f\x72\x6d\x61\x6c\x2c\x20\x41\x4c\x54\x20\x69\x6e\x76\x65\x72\ +\x74\x73\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x54\x72\x69\ +\x6d\x65\x78\x01\x03\x00\x00\x00\x2c\x00\x43\x00\x6f\x00\x66\x00\ +\x6e\x00\x69\x00\x6a\x00\x20\x00\x6f\x00\x73\x00\x74\x00\x61\x00\ +\x74\x00\x6e\x00\x69\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x55\ +\x6e\x64\x6f\x20\x6c\x61\x73\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\ +\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x55\x6e\x64\x6f\x4c\ +\x69\x6e\x65\x01\x03\x00\x00\x00\x48\x00\x43\x00\x6f\x00\x66\x00\ +\x61\x00\x20\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x74\x00\x6e\x00\ +\x69\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x20\x00\x72\x00\x79\x00\x73\x00\x6f\x00\x77\x00\x61\x00\ +\x6e\x00\x65\x00\x6a\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\ +\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x55\x6e\x64\x6f\x65\ +\x73\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x64\x72\x61\x77\x6e\ +\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\ +\x6c\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\ +\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x55\x6e\x64\x6f\x4c\ +\x69\x6e\x65\x01\x03\x00\x00\x00\xe2\x01\x41\x01\x05\x00\x63\x00\ +\x7a\x00\x79\x00\x20\x00\x77\x00\x79\x00\x62\x00\x72\x00\x61\x00\ +\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\ +\x74\x00\x79\x00\x20\x00\x77\x00\x20\x00\x6a\x00\x65\x00\x64\x00\ +\x65\x00\x6e\x00\x2c\x00\x20\x00\x6c\x00\x75\x00\x62\x00\x20\x00\ +\x7a\x00\x61\x00\x6d\x00\x69\x00\x65\x00\x6e\x00\x69\x00\x61\x00\ +\x20\x00\x7a\x00\x61\x00\x6d\x00\x6b\x00\x6e\x00\x69\x01\x19\x00\ +\x74\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x69\x00\x6c\x00\ +\x69\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x77\x00\x20\x00\x70\x00\ +\x65\x01\x42\x00\x6e\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x77\x00\ +\x69\x00\x65\x00\x72\x00\x7a\x00\x63\x00\x68\x00\x6e\x00\x69\x00\ +\x65\x00\x2c\x00\x20\x00\x6c\x00\x75\x00\x62\x00\x20\x00\x70\x00\ +\x6f\x01\x42\x01\x05\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x65\x00\ +\x20\x00\x70\x00\x6f\x00\x77\x00\x69\x00\x65\x00\x72\x00\x7a\x00\ +\x63\x00\x68\x00\x6e\x00\x69\x00\x65\x00\x2e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x5d\x4a\x6f\x69\x6e\x73\x20\x74\x68\x65\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x69\x6e\x74\x6f\x20\x6f\x6e\x65\x2c\x20\x6f\x72\x20\x63\x6f\x6e\ +\x76\x65\x72\x74\x73\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\ +\x65\x73\x20\x74\x6f\x20\x66\x69\x6c\x6c\x65\x64\x20\x66\x61\x63\ +\x65\x73\x2c\x20\x6f\x72\x20\x75\x6e\x69\x74\x65\x20\x66\x61\x63\ +\x65\x73\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x55\x70\x67\ +\x72\x61\x64\x65\x01\x03\x00\x00\x00\x14\x00\x41\x00\x6b\x00\x74\ +\x00\x75\x00\x61\x00\x6c\x00\x69\x00\x7a\x00\x75\x00\x6a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x07\x55\x70\x67\x72\x61\x64\x65\x07\ +\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x55\x70\x67\x72\x61\x64\ +\x65\x01\x03\x00\x00\x00\x98\x00\x43\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x6d\x00\x75\x00\ +\x6c\x00\x74\x00\x69\x00\x70\x00\x6c\x00\x65\x00\x2d\x00\x70\x00\ +\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x44\x00\x72\x00\x61\x00\ +\x66\x00\x74\x00\x57\x00\x69\x00\x72\x00\x65\x00\x20\x00\x28\x00\ +\x44\x00\x57\x00\x69\x00\x72\x00\x65\x00\x29\x00\x2e\x00\x20\x00\ +\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ +\x73\x00\x6e\x00\x61\x00\x70\x00\x2c\x00\x20\x00\x53\x00\x48\x00\ +\x49\x00\x46\x00\x54\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\ +\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x4c\x43\x72\x65\x61\x74\x65\x73\ +\x20\x61\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\x70\x6f\x69\x6e\ +\x74\x20\x44\x72\x61\x66\x74\x57\x69\x72\x65\x20\x28\x44\x57\x69\ +\x72\x65\x29\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\ +\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\ +\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\ +\x57\x69\x72\x65\x01\x03\x00\x00\x00\x0a\x00\x44\x00\x57\x00\x69\ +\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x57\ +\x69\x72\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x57\x69\ +\x72\x65\x01\x03\x00\x00\x00\x38\x00\x4b\x00\x6f\x00\x6e\x00\x77\ +\x00\x65\x00\x72\x00\x73\x00\x6a\x00\x61\x00\x20\x00\x4c\x00\x69\ +\x00\x6e\x00\x69\x00\x61\x00\x20\x00\x3c\x00\x2d\x00\x3e\x00\x20\ +\x00\x42\x00\x2d\x00\x53\x00\x70\x00\x6c\x00\x61\x00\x6a\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x43\x6f\x6e\x76\x65\x72\ +\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x57\x69\x72\x65\x20\ +\x61\x6e\x64\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x13\ +\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x54\x6f\x42\x53\x70\x6c\ +\x69\x6e\x65\x01\x03\x00\x00\x00\x22\x00\x4c\x00\x69\x00\x6e\x00\ +\x69\x00\x61\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x42\x00\x2d\x00\ +\x53\x00\x70\x00\x6c\x00\x61\x00\x6a\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0f\x57\x69\x72\x65\x20\x74\x6f\x20\x42\x53\x70\ +\x6c\x69\x6e\x65\x07\x00\x00\x00\x13\x44\x72\x61\x66\x74\x5f\x57\ +\x69\x72\x65\x54\x6f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\ +\x00\x0e\x00\x41\x00\x6c\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x41\x6c\x74\x20\x6d\x6f\ +\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x41\x00\x6c\x00\x74\x00\ +\x65\x00\x72\x00\x6e\x00\x61\x00\x74\x00\x79\x00\x77\x00\x6e\x00\ +\x61\x00\x20\x00\x6c\x00\x6f\x00\x6b\x00\x61\x00\x6c\x00\x69\x00\ +\x7a\x00\x63\x00\x6a\x00\x61\x00\x20\x00\x77\x00\x7a\x00\x6f\x00\ +\x72\x00\x63\x00\xf3\x00\x77\x00\x20\x00\x53\x00\x56\x00\x47\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x41\x6c\x74\x65\x72\x6e\x61\ +\x74\x65\x20\x53\x56\x47\x20\x50\x61\x74\x74\x65\x72\x6e\x73\x20\ +\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\ +\x00\x5a\x00\x61\x00\x77\x00\x73\x00\x7a\x00\x65\x00\x20\x00\x70\ +\x00\x6f\x00\x6b\x00\x61\x00\x7a\x00\x75\x00\x6a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0b\x41\x6c\x77\x61\x79\x73\x20\x73\x68\x6f\ +\x77\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x84\x00\x5a\x00\x61\x00\x77\x00\ +\x73\x00\x7a\x00\x65\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x79\x00\ +\x63\x00\x69\x01\x05\x00\x67\x00\x61\x00\x6a\x00\x20\x00\x64\x00\ +\x6f\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\ +\xf3\x00\x77\x00\x20\x00\x28\x00\x75\x00\x6e\x00\x69\x00\x65\x00\ +\x61\x00\x6b\x00\x74\x00\x79\x00\x77\x00\x6e\x00\x69\x00\x6a\x00\ +\x20\x00\x70\x00\x72\x00\x7a\x00\x79\x00\x63\x00\x69\x00\x73\x00\ +\x6b\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x79\x00\x63\x00\x69\x01\ +\x05\x00\x67\x00\x61\x00\x6e\x00\x69\x00\x61\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x2d\x41\x6c\x77\x61\x79\x73\x20\x73\x6e\ +\x61\x70\x20\x74\x6f\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x28\x64\ +\x69\x73\x61\x62\x6c\x65\x20\x73\x6e\x61\x70\x20\x6d\x6f\x64\x20\ +\x6b\x65\x79\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x41\x00\x72\ +\x00\x69\x00\x61\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x41\x72\x69\x61\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x42\x00\ +\x61\x00\x63\x00\x6b\x00\x73\x00\x6c\x00\x61\x00\x73\x00\x68\x00\ +\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\x63\ +\x6b\x73\x6c\x61\x73\x68\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\ +\x00\x42\x00\x61\x00\x63\x00\x6b\x00\x73\x00\x6c\x00\x61\x00\x73\ +\x00\x68\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ +\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x37\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x16\x00\x42\x00\x61\x00\x63\x00\x6b\x00\x73\x00\x6c\x00\ +\x61\x00\x73\x00\x68\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x39\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x72\x00\x5a\x00\x61\x00\x7a\x00\x6e\x00\x61\ +\x00\x63\x00\x7a\x00\x20\x00\x6a\x00\x65\x01\x5b\x00\x6c\x00\x69\ +\x00\x20\x00\x63\x00\x68\x00\x63\x00\x65\x00\x73\x00\x7a\x00\x20\ +\x00\x7a\x00\x61\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\ +\x00\x6f\x00\x77\x00\x61\x01\x07\x00\x20\x00\x70\x00\x6f\x00\x77\ +\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x63\x00\x68\x00\x6e\x00\x69\ +\x00\x65\x00\x20\x00\x28\x00\x33\x00\x44\x00\x20\x00\x66\x00\x61\ +\x00\x63\x00\x65\x00\x29\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x3f\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\ +\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x68\x65\x20\x61\x72\x65\ +\x61\x73\x20\x28\x33\x44\x20\x66\x61\x63\x65\x73\x29\x20\x74\x6f\ +\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\ +\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\xac\x00\x5a\x00\x61\x00\x7a\x00\ +\x6e\x00\x61\x00\x63\x00\x7a\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ +\x70\x00\x6f\x00\x6c\x00\x65\x00\x20\x00\x61\x00\x62\x00\x79\x00\ +\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x6f\x00\ +\x77\x00\x61\x01\x07\x00\x20\x00\x72\x00\xf3\x00\x77\x00\x6e\x00\ +\x69\x00\x65\x01\x7c\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x6b\x00\ +\x69\x00\x20\x00\x62\x00\x65\x00\x7a\x00\x20\x00\x6e\x00\x61\x00\ +\x7a\x00\x77\x00\x79\x00\x20\x00\x28\x00\x72\x00\x6f\x00\x7a\x00\ +\x70\x00\x6f\x00\x63\x00\x7a\x00\x79\x00\x6e\x00\x61\x00\x6a\x01\ +\x05\x00\x63\x00\x65\x00\x20\x00\x73\x00\x69\x01\x19\x00\x20\x00\ +\x6f\x00\x64\x00\x20\x00\x7a\x00\x6e\x00\x61\x00\x6b\x00\x75\x00\ +\x20\x00\x2a\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\x43\ +\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x79\x6f\x75\ +\x20\x77\x61\x6e\x74\x20\x74\x68\x65\x20\x6e\x6f\x6e\x2d\x6e\x61\ +\x6d\x65\x64\x20\x62\x6c\x6f\x63\x6b\x73\x20\x28\x62\x65\x67\x69\ +\x6e\x6e\x69\x6e\x67\x20\x77\x69\x74\x68\x20\x61\x20\x2a\x29\x20\ +\x74\x6f\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\ +\x6f\x6f\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x4f\x00\x6b\x00\x72\ +\x01\x05\x00\x67\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x35\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0e\x00\x4f\x00\x6b\x00\x72\x01\x05\x00\x67\x00\x20\x00\x37\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\ +\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x4f\x00\x6b\x00\x72\ +\x01\x05\x00\x67\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x39\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x44\x00\x4d\x00\x61\x00\x70\x00\x6f\x00\x77\x00\x61\x00\x6e\ +\x00\x69\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x6c\x00\x6f\x00\x72\ +\x00\x75\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x67\x00\x72\x00\x75\ +\x00\x62\x00\x6f\x01\x5b\x00\x63\x00\x69\x00\x20\x00\x6c\x00\x69\ +\x00\x6e\x00\x69\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\ +\x43\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x65\x64\x20\x74\x6f\x20\ +\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x4e\x00\x50\x00\x6c\x00\x69\x00\x6b\x00\x20\x00\x6d\x00\x61\x00\ +\x70\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x61\x00\x20\x00\ +\x6b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x75\x00\x20\x00\x64\x00\ +\x6f\x00\x20\x00\x67\x00\x72\x00\x75\x00\x62\x00\x6f\x01\x5b\x00\ +\x63\x00\x69\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x69\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x12\x43\x6f\x6c\x6f\x72\x20\x6d\ +\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x24\x00\x6d\x00\x6f\x00\x64\x00\x75\x01\x42\x00\x20\x00\ +\x4f\x00\x67\x00\x72\x00\x61\x00\x6e\x00\x69\x00\x63\x00\x7a\x00\ +\x61\x00\x6e\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0d\x43\x6f\x6e\x73\x74\x72\x61\x69\x6e\x20\x6d\x6f\x64\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x16\x00\x4b\x00\x6f\x00\x6e\x00\x73\x00\x74\ +\x00\x72\x00\x75\x00\x6b\x00\x63\x00\x6a\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\ +\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x4b\x00\x6f\x00\x6c\ +\x00\x6f\x00\x72\x00\x20\x00\x4b\x00\x6f\x00\x6e\x00\x73\x00\x74\ +\x00\x72\x00\x75\x00\x6b\x00\x63\x00\x6a\x00\x69\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x12\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\ +\x6f\x6e\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\ +\x00\x4e\x00\x61\x00\x7a\x00\x77\x00\x61\x00\x20\x00\x67\x00\x72\ +\x00\x75\x00\x70\x00\x79\x00\x20\x00\x4b\x00\x6f\x00\x6e\x00\x73\ +\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x63\x00\x6a\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x17\x43\x6f\x6e\x73\x74\x72\x75\x63\ +\x74\x69\x6f\x6e\x20\x67\x72\x6f\x75\x70\x20\x6e\x61\x6d\x65\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x22\x00\x54\x00\x77\x00\x6f\x00\x72\x00\ +\x7a\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x73\x00\x7a\x00\ +\x6b\x00\x69\x00\x63\x00\xf3\x00\x77\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x43\x72\x65\x61\x74\x65\x20\x53\x6b\x65\x74\x63\x68\ +\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\x00\x55\x00\x74\x00\x77\ +\x00\xf3\x00\x72\x00\x7a\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\ +\x00\x6b\x00\x74\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\ +\x00\x65\x00\x74\x00\x72\x00\x79\x00\x63\x00\x7a\x00\x6e\x00\x79\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x43\x72\x65\x61\x74\x65\ +\x20\x70\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x4f\x00\x70\x00\ +\x63\x00\x6a\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\ +\x61\x00\x74\x00\x75\x00\x20\x00\x44\x00\x58\x00\x46\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x12\x44\x58\x46\x20\x66\x6f\x72\x6d\x61\ +\x74\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x1c\x00\x4b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x64\x00\ +\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x79\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0d\x44\x65\x66\x61\x75\x6c\x74\x20\x63\ +\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x48\x00\x44\x00\x6f\ +\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x61\x00\x20\x00\x77\ +\x00\x79\x00\x73\x00\x6f\x00\x6b\x00\x6f\x01\x5b\x01\x07\x00\x20\ +\x00\x74\x00\x65\x00\x6b\x00\x73\x00\x74\x00\xf3\x00\x77\x00\x20\ +\x00\x69\x00\x20\x00\x77\x00\x79\x00\x6d\x00\x69\x00\x61\x00\x72\ +\x00\xf3\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x44\x65\ +\x66\x61\x75\x6c\x74\x20\x68\x65\x69\x67\x68\x74\x20\x66\x6f\x72\ +\x20\x74\x65\x78\x74\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\ +\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x44\x00\ +\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x61\x00\x20\x00\ +\x73\x00\x7a\x00\x65\x00\x72\x00\x6f\x00\x6b\x00\x6f\x01\x5b\x01\ +\x07\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x69\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x11\x44\x65\x66\x61\x75\x6c\x74\x20\x6c\ +\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\ +\x00\x44\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x79\ +\x00\x20\x00\x73\x00\x7a\x00\x61\x00\x62\x00\x6c\x00\x6f\x00\x6e\ +\x00\x20\x00\x61\x00\x72\x00\x6b\x00\x75\x00\x73\x00\x7a\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x44\x65\x66\x61\x75\x6c\ +\x74\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x20\x73\x68\x65\x65\x74\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x30\x00\x44\x00\x6f\x00\x6d\x00\x79\ +\x01\x5b\x00\x6c\x00\x6e\x00\x61\x00\x20\x00\x63\x00\x7a\x00\x63\ +\x00\x69\x00\x6f\x00\x6e\x00\x6b\x00\x61\x00\x20\x00\x74\x00\x65\ +\x00\x6b\x00\x73\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x11\x44\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x78\x74\x20\x66\ +\x6f\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x44\x00\x6f\x00\ +\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x61\x00\x20\x00\x77\x00\ +\x79\x00\x73\x00\x6f\x00\x6b\x00\x6f\x01\x5b\x01\x07\x00\x20\x00\ +\x74\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x75\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x13\x44\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x78\ +\x74\x20\x68\x65\x69\x67\x68\x74\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\ +\x00\x44\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x61\ +\x00\x20\x00\x70\x01\x42\x00\x61\x00\x73\x00\x7a\x00\x63\x00\x7a\ +\x00\x79\x00\x7a\x00\x6e\x00\x61\x00\x20\x00\x72\x00\x6f\x00\x62\ +\x00\x6f\x00\x63\x00\x7a\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x15\x44\x65\x66\x61\x75\x6c\x74\x20\x77\x6f\x72\x6b\x69\x6e\ +\x67\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\ +\x53\x00\x74\x00\x79\x00\x6c\x00\x20\x00\x77\x00\x79\x00\x6d\x00\ +\x69\x00\x61\x00\x72\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x44\x69\x6d\x65\x6e\ +\x73\x69\x6f\x6e\x73\x20\x26\x20\x4c\x65\x61\x64\x65\x72\x20\x61\ +\x72\x72\x6f\x77\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x2e\x00\x44\x00\x6f\x00\x6b\x01\x42\x00\x61\x00\x64\x00\x6e\ +\x00\x6f\x01\x5b\x01\x07\x00\x20\x00\x77\x00\x79\x00\x6d\x00\x69\ +\x00\x61\x00\x72\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x44\x69\x6d\x65\x6e\x73\ +\x69\x6f\x6e\x73\x20\x70\x72\x65\x63\x69\x73\x69\x6f\x6e\x20\x6c\ +\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x4b\x00\x72\ +\x00\x6f\x00\x70\x00\x6b\x00\x61\x00\x20\x00\x35\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\x35\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x10\x00\x4b\x00\x72\x00\x6f\x00\x70\x00\x6b\x00\x61\x00\ +\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\ +\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x4b\x00\x72\x00\x6f\ +\x00\x70\x00\x6b\x00\x61\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x44\x6f\x74\x20\x39\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x14\x00\x54\x00\x72\x00\x79\x00\x62\x00\x20\x00\x44\x00\x72\x00\ +\x61\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x44\ +\x72\x61\x66\x74\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x6d\ +\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x58\x00\x45\x00\x6b\x00\ +\x73\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x6f\x00\x62\x00\ +\x69\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x20\x00\x33\x00\x44\x00\ +\x20\x00\x6a\x00\x61\x00\x6b\x00\x6f\x00\x20\x00\x77\x00\x69\x00\ +\x65\x00\x6c\x00\x6f\x00\x66\x00\x61\x00\x73\x00\x65\x00\x74\x00\ +\x6f\x00\x77\x00\x61\x00\x20\x00\x73\x00\x69\x00\x61\x00\x74\x00\ +\x6b\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x45\x78\x70\ +\x6f\x72\x74\x20\x33\x44\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\ +\x73\x20\x70\x6f\x6c\x79\x66\x61\x63\x65\x20\x6d\x65\x73\x68\x65\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x45\x00\x6b\x00\x73\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x00\x75\x00\x6a\x00\x20\x00\x73\x00\ +\x74\x00\x79\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x45\ +\x78\x70\x6f\x72\x74\x20\x53\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x34\x00\x57\x00\x79\x00\x70\x00\x65\x01\x42\x00\x6e\x00\ +\x69\x00\x6a\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\ +\x74\x00\x79\x00\x20\x00\x64\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\ +\x6c\x00\x6e\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x17\x46\x69\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x79\ +\x20\x64\x65\x66\x61\x75\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\ +\x00\x4f\x00\x67\x00\xf3\x00\x6c\x00\x6e\x00\x65\x00\x20\x00\x75\ +\x00\x73\x00\x74\x00\x61\x00\x77\x00\x69\x00\x65\x00\x6e\x00\x69\ +\x00\x61\x00\x20\x00\x72\x00\x79\x00\x73\x00\x75\x00\x6e\x00\x6b\ +\x00\x6f\x00\x77\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\ +\x47\x65\x6e\x65\x72\x61\x6c\x20\x44\x72\x61\x66\x74\x20\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x55\ +\x00\x73\x00\x74\x00\x61\x00\x77\x00\x69\x00\x65\x00\x6e\x00\x69\ +\x00\x61\x00\x20\x00\x6f\x00\x67\x00\xf3\x00\x6c\x00\x6e\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\ +\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x30\x00\x54\x00\x72\x00\x79\x00\x62\x00\x20\x00\x67\x00\x6c\ +\x00\x6f\x00\x62\x00\x61\x00\x6c\x00\x6e\x00\x79\x00\x20\x00\x6b\ +\x00\x6f\x00\x70\x00\x69\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x6c\x6f\x62\ +\x61\x6c\x20\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x1c\x00\x4f\x00\x64\x00\x73\x00\x74\x01\x19\x00\x70\ +\x00\x79\x00\x20\x00\x73\x00\x69\x00\x61\x00\x74\x00\x6b\x00\x69\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x47\x72\x69\x64\x20\x73\ +\x70\x61\x63\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x5a\ +\x00\x67\x00\x72\x00\x75\x00\x70\x00\x75\x00\x6a\x00\x20\x00\x77\ +\x00\x61\x00\x72\x00\x73\x00\x74\x00\x77\x00\x79\x00\x20\x00\x77\ +\x00\x20\x00\x42\x00\x6c\x00\x6f\x00\x6b\x00\x69\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x18\x47\x72\x6f\x75\x70\x20\x6c\x61\x79\x65\ +\x72\x73\x20\x69\x6e\x74\x6f\x20\x62\x6c\x6f\x63\x6b\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\xf6\x00\x50\x00\x6f\x00\x64\x00\x61\x00\x6a\ +\x00\x20\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\x65\x00\x72\x00\x20\ +\x00\x7a\x00\x61\x00\x77\x00\x69\x00\x65\x00\x72\x00\x61\x00\x6a\ +\x01\x05\x00\x63\x00\x79\x00\x20\x00\x70\x00\x6c\x00\x69\x00\x6b\ +\x00\x69\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x64\x00\x65\ +\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x63\x00\x6a\x00\x69\x00\x20\ +\x00\x77\x00\x7a\x00\x6f\x00\x72\x00\xf3\x00\x77\x00\x20\x00\x77\ +\x00\x79\x00\x70\x00\x65\x01\x42\x00\x6e\x00\x69\x00\x65\x00\x6e\ +\x00\x69\x00\x61\x00\x20\x00\x2c\x00\x6b\x00\x74\x00\xf3\x00\x72\ +\x00\x65\x00\x20\x00\x6d\x00\x6f\x01\x7c\x00\x6e\x00\x61\x00\x20\ +\x00\x64\x00\x6f\x00\x64\x00\x61\x01\x07\x00\x20\x00\x64\x00\x6f\ +\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\ +\x00\x64\x00\x6f\x00\x77\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x6d\ +\x00\x6f\x00\x64\x00\x75\x01\x42\x00\x75\x00\x20\x00\x77\x00\x79\ +\x00\x70\x00\x65\x01\x42\x00\x6e\x00\x69\x00\x65\x01\x44\x00\x20\ +\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x2e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x8d\x48\x65\x72\x65\x20\x79\x6f\x75\x20\x63\ +\x61\x6e\x20\x73\x70\x65\x63\x69\x66\x79\x20\x61\x20\x64\x69\x72\ +\x65\x63\x74\x6f\x72\x79\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\ +\x67\x20\x53\x56\x47\x20\x66\x69\x6c\x65\x73\x20\x63\x6f\x6e\x74\ +\x61\x69\x6e\x69\x6e\x67\x20\x3c\x70\x61\x74\x74\x65\x72\x6e\x3e\ +\x20\x64\x65\x66\x69\x6e\x69\x74\x69\x6f\x6e\x73\x20\x74\x68\x61\ +\x74\x20\x63\x61\x6e\x20\x62\x65\x20\x61\x64\x64\x65\x64\x20\x74\ +\x6f\x20\x74\x68\x65\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x44\ +\x72\x61\x66\x74\x20\x68\x61\x74\x63\x68\x20\x70\x61\x74\x74\x65\ +\x72\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x48\x00\x69\x00\ +\x64\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\ +\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x74\x00\x6f\x00\ +\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x00\x20\x00\x61\x00\x66\x00\ +\x74\x00\x65\x00\x72\x00\x20\x00\x75\x00\x73\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x21\x48\x69\x64\x65\x20\x44\x72\x61\x66\ +\x74\x20\x73\x6e\x61\x70\x20\x74\x6f\x6f\x6c\x62\x61\x72\x20\x61\ +\x66\x74\x65\x72\x20\x75\x73\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\ +\x00\x48\x00\x69\x00\x64\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\ +\x00\x66\x00\x74\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x62\ +\x00\x65\x00\x6e\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x14\x48\x69\x64\x65\x20\x44\x72\x61\x66\x74\x20\x77\x6f\x72\ +\x6b\x62\x65\x6e\x63\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x74\x00\x4a\ +\x00\x65\x01\x5b\x00\x6c\x00\x69\x00\x20\x00\x7a\x00\x61\x00\x7a\ +\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x65\x00\x2c\ +\x00\x20\x00\x70\x00\x6f\x00\x64\x00\x63\x00\x7a\x00\x61\x00\x73\ +\x00\x20\x00\x72\x00\x79\x00\x73\x00\x6f\x00\x77\x00\x61\x00\x6e\ +\x00\x69\x00\x61\x00\x20\x00\x62\x01\x19\x00\x64\x00\x7a\x00\x69\ +\x00\x65\x00\x20\x00\x77\x00\x69\x00\x64\x00\x6f\x00\x63\x00\x7a\ +\x00\x6e\x00\x61\x00\x20\x00\x73\x00\x69\x00\x61\x00\x74\x00\x6b\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\x66\x20\x63\ +\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x20\x67\x72\x69\x64\x20\x77\ +\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x77\x68\x65\x6e\x20\ +\x64\x72\x61\x77\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xe0\x00\ +\x4a\x00\x65\x01\x5b\x00\x6c\x00\x69\x00\x20\x00\x7a\x00\x61\x00\ +\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x6f\x00\ +\x2c\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\ +\x44\x00\x20\x00\x73\x00\x70\x00\x72\x00\xf3\x00\x62\x00\x75\x00\ +\x6a\x00\x65\x00\x20\x00\x70\x00\x6f\x01\x42\x01\x05\x00\x63\x00\ +\x7a\x00\x79\x01\x07\x00\x20\x00\x6e\x00\x61\x00\x6b\x01\x42\x00\ +\x61\x00\x64\x00\x61\x00\x6a\x01\x05\x00\x63\x00\x65\x00\x20\x00\ +\x73\x00\x69\x01\x19\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\ +\x6b\x00\x74\x00\x79\x00\x20\x00\x77\x00\x20\x00\x73\x00\x7a\x00\ +\x6b\x00\x69\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x2e\x00\x20\x00\ +\x55\x00\x77\x00\x61\x00\x67\x00\x61\x00\x2c\x00\x20\x00\x74\x00\ +\x6f\x00\x20\x00\x6d\x00\x6f\x01\x7c\x00\x65\x00\x20\x00\x70\x00\ +\x6f\x00\x74\x00\x72\x00\x77\x00\x61\x01\x07\x00\x20\x00\x63\x00\ +\x68\x00\x77\x00\x69\x00\x6c\x01\x19\x00\x2e\x00\x2e\x00\x2e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x65\x49\x66\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x66\x72\x65\x65\x63\x61\x64\x20\x77\x69\x6c\ +\x6c\x20\x74\x72\x79\x20\x74\x6f\x20\x6a\x6f\x69\x6e\x74\x20\x63\ +\x6f\x69\x6e\x63\x69\x64\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x69\x6e\x74\x6f\x20\x77\x69\x72\x65\x73\x2e\x20\x42\x65\ +\x77\x61\x72\x65\x2c\x20\x74\x68\x69\x73\x20\x63\x61\x6e\x20\x74\ +\x61\x6b\x65\x20\x61\x20\x77\x68\x69\x6c\x65\x2e\x2e\x2e\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\xf2\x00\x49\x00\x66\x00\x20\x00\x63\x00\x68\ +\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\ +\x00\x20\x00\x67\x00\x72\x00\x69\x00\x64\x00\x20\x00\x77\x00\x69\ +\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\x6c\x00\x77\x00\x61\x00\x79\ +\x00\x73\x00\x20\x00\x62\x00\x65\x00\x20\x00\x76\x00\x69\x00\x73\ +\x00\x69\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x77\x00\x68\x00\x65\ +\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\x00\x72\ +\x00\x61\x00\x66\x00\x74\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\ +\x00\x62\x00\x65\x00\x6e\x00\x63\x00\x68\x00\x20\x00\x69\x00\x73\ +\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x65\x00\x2e\ +\x00\x20\x00\x4f\x00\x74\x00\x68\x00\x65\x00\x72\x00\x77\x00\x69\ +\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x6e\x00\x6c\x00\x79\x00\x20\ +\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x75\x00\x73\x00\x69\ +\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x6d\x00\x61\x00\x6e\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x79\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\ +\x65\x20\x44\x72\x61\x66\x74\x20\x67\x72\x69\x64\x20\x77\x69\x6c\ +\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x62\x65\x20\x76\x69\x73\x69\ +\x62\x6c\x65\x20\x77\x68\x65\x6e\x20\x74\x68\x65\x20\x44\x72\x61\ +\x66\x74\x20\x77\x6f\x72\x6b\x62\x65\x6e\x63\x68\x20\x69\x73\x20\ +\x61\x63\x74\x69\x76\x65\x2e\x20\x4f\x74\x68\x65\x72\x77\x69\x73\ +\x65\x20\x6f\x6e\x6c\x79\x20\x77\x68\x65\x6e\x20\x75\x73\x69\x6e\ +\x67\x20\x61\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x88\x00\x49\x00\x66\x00\x20\x00\x63\x00\x68\x00\x65\x00\ +\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x53\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x74\x00\ +\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x00\x20\x00\x77\x00\ +\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x73\x00\ +\x68\x00\x6f\x00\x77\x00\x6e\x00\x20\x00\x77\x00\x68\x00\x65\x00\ +\x6e\x00\x65\x00\x76\x00\x65\x00\x72\x00\x20\x00\x79\x00\x6f\x00\ +\x75\x00\x20\x00\x75\x00\x73\x00\x65\x00\x20\x00\x73\x00\x6e\x00\ +\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x44\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x74\x68\x65\x20\x53\x6e\x61\x70\x20\x74\x6f\x6f\x6c\x62\x61\ +\x72\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x73\x68\x6f\x77\x6e\x20\ +\x77\x68\x65\x6e\x65\x76\x65\x72\x20\x79\x6f\x75\x20\x75\x73\x65\ +\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\xea\x00\x4a\x00\x65\x01\x5b\x00\x6c\x00\x69\x00\x20\x00\x74\x00\ +\x6f\x00\x20\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x20\x00\x7a\x00\ +\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\ +\x65\x00\x2c\x00\x20\x00\x77\x00\x73\x00\x7a\x00\x79\x00\x73\x00\ +\x74\x00\x6b\x00\x69\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x69\x00\ +\x65\x00\x6b\x00\x74\x00\x79\x00\x20\x00\x7a\x00\x61\x00\x77\x00\ +\x69\x00\x65\x00\x72\x00\x61\x00\x6a\x01\x05\x00\x63\x00\x65\x00\ +\x20\x00\x70\x00\x6f\x00\x77\x00\x69\x00\x65\x00\x72\x00\x7a\x00\ +\x63\x00\x68\x00\x6e\x00\x69\x00\x65\x00\x22\x00\x66\x00\x61\x00\ +\x63\x00\x65\x00\x73\x00\x22\x00\x20\x00\x7a\x00\x6f\x00\x73\x00\ +\x74\x00\x61\x00\x6e\x00\x69\x01\x05\x00\x20\x00\x77\x00\x79\x00\ +\x65\x00\x6b\x00\x73\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x6f\x00\ +\x77\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6a\x00\x61\x00\x6b\x00\ +\x6f\x00\x20\x00\x33\x00\x64\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\ +\x79\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x51\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\ +\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x6c\x6c\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\ +\x66\x61\x63\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x65\x78\ +\x70\x6f\x72\x74\x65\x64\x20\x61\x73\x20\x33\x64\x20\x70\x6f\x6c\ +\x79\x66\x61\x63\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xd0\x00\x4a\ +\x00\x65\x01\x5b\x00\x6c\x00\x69\x00\x20\x00\x77\x01\x42\x01\x05\ +\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x65\x00\x2c\x00\x20\x00\x74\ +\x00\x72\x00\x79\x00\x62\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\ +\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x61\x00\x20\x00\x6a\ +\x00\x65\x00\x73\x00\x74\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x79\ +\x00\x77\x00\x6e\x00\x79\x00\x20\x00\x77\x00\x20\x00\x63\x00\x7a\ +\x00\x61\x00\x73\x00\x69\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x6d\ +\x00\x65\x00\x6e\x00\x64\x00\x79\x00\x2e\x00\x20\x00\x44\x00\x6f\ +\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x69\x00\x65\x00\x20\ +\x00\x74\x00\x72\x00\x79\x00\x62\x00\x20\x00\x6b\x00\x6f\x00\x70\ +\x00\x69\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x61\x00\x20\ +\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x20\x00\x77\x00\x79\x01\x42\ +\x01\x05\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x79\x00\x2e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x6f\x49\x66\x20\x74\x68\x69\x73\x20\ +\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x63\x6f\x70\x79\ +\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x6b\x65\ +\x70\x74\x20\x61\x63\x72\x6f\x73\x73\x20\x63\x6f\x6d\x6d\x61\x6e\ +\x64\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x63\x6f\x6d\ +\x6d\x61\x6e\x64\x73\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\ +\x73\x20\x73\x74\x61\x72\x74\x20\x69\x6e\x20\x6e\x6f\x2d\x63\x6f\ +\x70\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x7e\x00\ +\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\ +\x65\x00\x64\x00\x2c\x00\x20\x00\x68\x00\x61\x00\x74\x00\x63\x00\ +\x68\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\ +\x20\x00\x62\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\ +\x65\x00\x72\x00\x74\x00\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\ +\x74\x00\x6f\x00\x20\x00\x73\x00\x69\x00\x6d\x00\x70\x00\x6c\x00\ +\x65\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x3f\x49\x66\x20\x74\x68\x69\x73\x20\x69\ +\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x68\x61\x74\x63\x68\ +\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x63\x6f\x6e\x76\x65\ +\x72\x74\x65\x64\x20\x69\x6e\x74\x6f\x20\x73\x69\x6d\x70\x6c\x65\ +\x20\x77\x69\x72\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xf6\x00\x49\ +\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\ +\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\ +\x00\x64\x00\x2c\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\x65\x00\x64\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\ +\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x67\ +\x00\x65\x00\x74\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\ +\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x20\ +\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\x00\x65\ +\x00\x78\x00\x74\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x2c\ +\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x61\x00\x64\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x79\x00\x20\x00\x68\x00\x61\x00\x76\x00\x65\x00\x20\x00\x69\ +\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\x00\x58\ +\x00\x46\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\ +\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7b\x49\x66\ +\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\ +\x2c\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x65\x78\x74\x73\ +\x20\x77\x69\x6c\x6c\x20\x67\x65\x74\x20\x74\x68\x65\x20\x73\x74\ +\x61\x6e\x64\x61\x72\x64\x20\x44\x72\x61\x66\x74\x20\x74\x65\x78\ +\x74\x20\x73\x69\x7a\x65\x2c\x20\x69\x6e\x73\x74\x65\x61\x64\x20\ +\x6f\x66\x20\x74\x68\x65\x20\x73\x69\x7a\x65\x20\x74\x68\x65\x79\ +\x20\x68\x61\x76\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x44\x58\x46\ +\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\xa0\x00\x4a\x00\x65\x01\x5b\x00\x6c\x00\x69\x00\x20\x00\x7a\x00\ +\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\ +\x65\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\ +\x79\x00\x20\x00\x62\x01\x19\x00\x64\x01\x05\x00\x20\x00\x77\x00\ +\x69\x00\x64\x00\x6f\x00\x63\x00\x7a\x00\x6e\x00\x65\x00\x20\x00\ +\x6a\x00\x61\x00\x6b\x00\x6f\x00\x20\x00\x77\x00\x79\x00\x70\x00\ +\x65\x01\x42\x00\x6e\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x2e\x00\ +\x20\x00\x44\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\ +\x69\x00\x65\x00\x20\x00\x6a\x00\x61\x00\x6b\x00\x6f\x00\x20\x00\ +\x73\x00\x7a\x00\x6b\x00\x69\x00\x65\x00\x6c\x00\x65\x00\x74\x00\ +\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x66\x49\x66\x20\x74\x68\ +\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\ +\x61\x72\x20\x61\x73\x20\x66\x69\x6c\x6c\x65\x64\x20\x61\x73\x20\ +\x64\x65\x66\x61\x75\x6c\x74\x2e\x20\x4f\x74\x68\x65\x72\x77\x69\ +\x73\x65\x2c\x20\x74\x68\x65\x79\x20\x77\x69\x6c\x6c\x20\x61\x70\ +\x70\x65\x61\x72\x20\x61\x73\x20\x77\x69\x72\x65\x66\x72\x61\x6d\ +\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\xd0\x00\x49\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x6e\x00\ +\x6f\x00\x74\x00\x20\x00\x6f\x00\x63\x00\x63\x00\x75\x00\x72\x00\ +\x20\x00\x61\x00\x67\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x74\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\ +\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x6d\x00\x6f\x00\ +\x72\x00\x65\x00\x20\x00\x74\x00\x68\x00\x61\x00\x6e\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x64\x00\x69\x00\ +\x63\x00\x61\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6e\x00\x75\x00\ +\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x65\x00\x64\x00\x67\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x68\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\ +\x65\x63\x6b\x65\x64\x2c\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x20\ +\x77\x69\x6c\x6c\x20\x6e\x6f\x74\x20\x6f\x63\x63\x75\x72\x20\x61\ +\x67\x61\x69\x6e\x73\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\ +\x69\x74\x68\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\x74\x68\ +\x65\x20\x69\x6e\x64\x69\x63\x61\x74\x65\x64\x20\x6e\x75\x6d\x62\ +\x65\x72\x20\x6f\x66\x20\x65\x64\x67\x65\x73\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\xf2\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\ +\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\ +\x77\x00\x6f\x00\x72\x00\x6b\x00\x62\x00\x65\x00\x6e\x00\x63\x00\ +\x68\x00\x20\x00\x77\x00\x6f\x00\x6e\x00\x27\x00\x74\x00\x20\x00\ +\x61\x00\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\x2e\x00\x20\x00\ +\x55\x00\x73\x00\x65\x00\x66\x00\x75\x00\x6c\x00\x20\x00\x73\x00\ +\x69\x00\x6e\x00\x63\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\x00\x6f\x00\ +\x6f\x00\x6c\x00\x73\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\ +\x61\x00\x6c\x00\x73\x00\x6f\x00\x20\x00\x69\x00\x6e\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\ +\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x62\x00\x65\x00\x6e\x00\ +\x63\x00\x68\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x79\x49\ +\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\ +\x64\x2c\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x77\x6f\x72\ +\x6b\x62\x65\x6e\x63\x68\x20\x77\x6f\x6e\x27\x74\x20\x61\x70\x70\ +\x65\x61\x72\x2e\x20\x55\x73\x65\x66\x75\x6c\x20\x73\x69\x6e\x63\ +\x65\x20\x61\x6c\x6c\x20\x6f\x66\x20\x74\x68\x65\x20\x44\x72\x61\ +\x66\x74\x20\x74\x6f\x6f\x6c\x73\x20\x61\x72\x65\x20\x61\x6c\x73\ +\x6f\x20\x69\x6e\x20\x74\x68\x65\x20\x41\x72\x63\x68\x20\x77\x6f\ +\x72\x6b\x62\x65\x6e\x63\x68\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xea\ +\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\ +\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\ +\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x6c\x00\x69\x00\x6e\ +\x00\x65\x00\x73\x00\x20\x00\x68\x00\x61\x00\x76\x00\x65\x00\x20\ +\x00\x61\x00\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x20\ +\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x64\x00\x2c\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x79\x00\x20\x00\x77\x00\x69\ +\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x72\x00\x65\ +\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x65\x00\x64\x00\x20\x00\x61\ +\x00\x73\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\ +\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x73\x00\x20\x00\x77\ +\x00\x69\x00\x74\x00\x68\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x63\x00\x6f\x00\x72\x00\x72\x00\x65\x00\x63\x00\x74\x00\x20\ +\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x75\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\ +\x68\x65\x63\x6b\x65\x64\x2c\x20\x77\x68\x65\x6e\x20\x70\x6f\x6c\ +\x79\x6c\x69\x6e\x65\x73\x20\x68\x61\x76\x65\x20\x61\x20\x77\x69\ +\x64\x74\x68\x20\x64\x65\x66\x69\x6e\x65\x64\x2c\x20\x74\x68\x65\ +\x79\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x72\x65\x6e\x64\x65\x72\ +\x65\x64\x20\x61\x73\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\ +\x65\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x63\x6f\x72\x72\ +\x65\x63\x74\x20\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\ +\x2a\x00\x4a\x00\x65\x01\x5b\x00\x6c\x00\x69\x00\x20\x00\x7a\x00\ +\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\ +\x65\x00\x2c\x00\x20\x00\x62\x01\x19\x00\x64\x00\x7a\x00\x69\x00\ +\x65\x00\x20\x00\x7a\x00\x61\x00\x77\x00\x73\x00\x7a\x00\x65\x00\ +\x20\x00\x70\x00\x72\x00\x7a\x00\x79\x00\x63\x00\x69\x01\x05\x00\ +\x67\x00\x61\x01\x42\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x69\x00\ +\x73\x00\x74\x00\x6e\x00\x69\x00\x65\x00\x6a\x01\x05\x00\x63\x00\ +\x79\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\ +\x6b\x00\x74\x00\xf3\x00\x77\x00\x20\x00\x70\x00\x6f\x00\x64\x00\ +\x63\x00\x7a\x00\x61\x00\x73\x00\x20\x00\x72\x00\x79\x00\x73\x00\ +\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x61\x00\x2e\x00\x20\x00\ +\x4a\x00\x65\x01\x5b\x00\x6c\x00\x69\x00\x20\x00\x6e\x00\x69\x00\ +\x65\x00\x2c\x00\x20\x00\x62\x01\x19\x00\x64\x00\x7a\x00\x69\x00\ +\x65\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x79\x00\x63\x00\x69\x01\ +\x05\x00\x67\x00\x61\x01\x42\x00\x20\x00\x74\x00\x79\x00\x6c\x00\ +\x6b\x00\x6f\x00\x20\x00\x77\x00\x74\x00\x65\x00\x64\x00\x79\x00\ +\x2c\x00\x20\x00\x67\x00\x64\x00\x79\x00\x20\x00\x6e\x00\x61\x00\ +\x63\x00\x69\x01\x5b\x00\x6e\x00\x69\x00\x65\x00\x73\x00\x7a\x00\ +\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x2e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x81\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\ +\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x79\x6f\x75\x20\x77\x69\x6c\ +\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x73\x6e\x61\x70\x20\x74\x6f\ +\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x77\x68\x69\x6c\x65\x20\x64\x72\x61\x77\x69\x6e\x67\x2e\ +\x20\x49\x66\x20\x6e\x6f\x74\x2c\x20\x79\x6f\x75\x20\x77\x69\x6c\ +\x6c\x20\x62\x65\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x20\x6f\x6e\ +\x6c\x79\x20\x77\x68\x65\x6e\x20\x70\x72\x65\x73\x73\x69\x6e\x67\ +\x20\x43\x54\x52\x4c\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x49\ +\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x2a\x00\x42\ +\x00\x6c\x00\x6f\x00\x6b\x00\xf3\x00\x77\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0e\x49\x6d\x70\x6f\x72\x74\x20\x2a\x62\x6c\x6f\x63\ +\x6b\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x49\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x70\x00\x6f\x00\x77\x00\x69\ +\x00\x65\x00\x72\x00\x7a\x00\x63\x00\x68\x00\x6e\x00\x69\x00\x20\ +\x00\x4f\x00\x43\x00\x41\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x49\x6d\x70\x6f\x72\x74\x20\x4f\x43\x41\x20\x61\x72\x65\x61\x73\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x40\x00\x49\x00\x6d\x00\x70\x00\x6f\ +\x00\x72\x00\x74\x00\x20\x00\x68\x00\x61\x00\x74\x00\x63\x00\x68\ +\x00\x20\x00\x62\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x61\x00\x72\ +\x00\x69\x00\x65\x00\x73\x00\x20\x00\x61\x00\x73\x00\x20\x00\x77\ +\x00\x69\x00\x72\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x20\x49\x6d\x70\x6f\x72\x74\x20\x68\x61\x74\x63\x68\x20\x62\ +\x6f\x75\x6e\x64\x61\x72\x69\x65\x73\x20\x61\x73\x20\x77\x69\x72\ +\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x49\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\ +\x00\x65\x00\x20\x00\x77\x00\x61\x00\x72\x00\x73\x00\x74\x00\x77\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x49\x6d\x70\x6f\x72\x74\ +\x20\x6c\x61\x79\x6f\x75\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\ +\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x73\ +\x00\x74\x00\x79\x00\x6c\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0c\x49\x6d\x70\x6f\x72\x74\x20\x73\x74\x79\x6c\x65\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x30\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\x75\x00\x6a\x00\x20\x00\x74\x00\x65\x00\x6b\x00\x73\ +\x00\x74\x00\x20\x00\x69\x00\x20\x00\x77\x00\x79\x00\x6d\x00\x69\ +\x00\x61\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\ +\x49\x6d\x70\x6f\x72\x74\x20\x74\x65\x78\x74\x73\x20\x61\x6e\x64\ +\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x1c\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x2f\x00\x65\x00\x6b\x00\x73\x00\x70\x00\x6f\x00\x72\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x49\x6d\x70\x6f\x72\x74\x2f\ +\x45\x78\x70\x6f\x72\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\x00\x57\ +\x00\x65\x00\x77\x00\x6e\x01\x19\x00\x74\x00\x72\x00\x7a\x00\x6e\ +\x00\x79\x00\x20\x00\x70\x00\x6f\x00\x7a\x00\x69\x00\x6f\x00\x6d\ +\x00\x20\x00\x70\x00\x72\x00\x65\x00\x63\x00\x79\x00\x7a\x00\x6a\ +\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x49\x6e\x74\x65\ +\x72\x6e\x61\x6c\x20\x70\x72\x65\x63\x69\x73\x69\x6f\x6e\x20\x6c\ +\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x01\x41\x01\x05\ +\x00\x63\x00\x7a\x00\x20\x00\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\ +\x00\x74\x00\x72\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x4a\x6f\x69\x6e\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x26\x00\x4c\x00\x65\x00\x77\x00\x6f\x00\ +\x20\x00\x28\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\ +\x72\x00\x64\x00\x20\x00\x49\x00\x53\x00\x4f\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x13\x4c\x65\x66\x74\x20\x28\x49\x53\x4f\ +\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x29\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x2c\x00\x57\x00\x73\x00\x7a\x00\x79\x00\x73\x00\x74\x00\x6b\ +\x00\x69\x00\x65\x00\x20\x00\x67\x01\x42\x00\xf3\x00\x77\x00\x6e\ +\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x10\x4d\x61\x69\x6e\x20\x6c\x69\x6e\ +\x65\x73\x20\x65\x76\x65\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x96\ +\x00\x4c\x00\x69\x00\x6e\x00\x69\x00\x61\x00\x20\x00\x67\x01\x42\ +\x00\xf3\x00\x77\x00\x6e\x00\x61\x00\x20\x00\x62\x01\x19\x00\x64\ +\x00\x7a\x00\x69\x00\x65\x00\x20\x00\x67\x00\x72\x00\x75\x00\x62\ +\x00\x73\x00\x7a\x00\x61\x00\x2e\x00\x20\x00\x4f\x00\x6b\x00\x72\ +\x00\x65\x01\x5b\x00\x6c\x00\x2c\x00\x20\x00\x69\x00\x6c\x00\x65\ +\x00\x20\x00\x6b\x00\x77\x00\x61\x00\x64\x00\x72\x00\x61\x00\x74\ +\x00\xf3\x00\x77\x00\x20\x00\x6d\x00\x69\x01\x19\x00\x64\x00\x7a\ +\x00\x79\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x61\x00\x6d\ +\x00\x69\x00\x20\x00\x67\x01\x42\x00\xf3\x00\x77\x00\x6e\x00\x79\ +\x00\x6d\x00\x69\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\ +\x4d\x61\x69\x6e\x6c\x69\x6e\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\ +\x65\x20\x64\x72\x61\x77\x6e\x20\x74\x68\x69\x63\x6b\x65\x72\x2e\ +\x20\x53\x70\x65\x63\x69\x66\x79\x20\x68\x65\x72\x65\x20\x68\x6f\ +\x77\x20\x6d\x61\x6e\x79\x20\x73\x71\x75\x61\x72\x65\x73\x20\x62\ +\x65\x74\x77\x65\x65\x6e\x20\x6d\x61\x69\x6e\x6c\x69\x6e\x65\x73\ +\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x4d\x00\x61\x00\x78\x00\ +\x2e\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x20\x00\x53\x00\x70\x00\x6c\x00\x61\x00\x6a\x00\x6e\x00\ +\x2d\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4d\x61\x78\ +\x20\x53\x70\x6c\x69\x6e\x65\x20\x53\x65\x67\x6d\x65\x6e\x74\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x34\x00\x4d\x00\x61\x00\x6b\x00\x73\x00\ +\x79\x00\x6d\x00\x61\x00\x6c\x00\x6e\x00\x61\x00\x20\x00\x6c\x00\ +\x69\x00\x63\x00\x7a\x00\x62\x00\x61\x00\x20\x00\x6b\x00\x72\x00\ +\x61\x00\x77\x01\x19\x00\x64\x00\x7a\x00\x69\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x17\x4d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\ +\x62\x65\x72\x20\x6f\x66\x20\x65\x64\x67\x65\x73\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x6a\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\ +\x00\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x65\x00\x64\x00\x67\x00\x65\ +\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x65\x00\x20\ +\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\ +\x00\x65\x00\x64\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x73\ +\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\x67\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x35\x4d\x61\x78\x69\x6d\x75\x6d\x20\ +\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x65\x64\x67\x65\x73\x20\ +\x74\x6f\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\ +\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0a\x01\x7b\x00\x61\x00\x64\x00\x65\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x22\x00\x42\x00\x72\x00\x61\x00\x6b\x00\x20\x00\ +\x28\x00\x6e\x00\x61\x00\x6a\x00\x73\x00\x7a\x00\x79\x00\x62\x00\ +\x73\x00\x7a\x00\x79\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0e\x4e\x6f\x6e\x65\x20\x28\x66\x61\x73\x74\x65\x73\x74\x29\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\xe4\x00\x50\x00\x6f\x00\x20\x00\x77\x00\ +\x6b\x00\x6c\x00\x65\x00\x6a\x00\x65\x00\x6e\x00\x69\x00\x75\x00\ +\x20\x00\x73\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x6f\x00\x77\x00\ +\x61\x00\x6e\x00\x79\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\ +\x69\x00\x65\x00\x6b\x00\x74\x00\xf3\x00\x77\x00\x20\x00\x7a\x00\ +\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\ +\x65\x00\x20\x00\x73\x01\x05\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\ +\x69\x00\x65\x00\x2e\x00\x20\x00\x54\x00\x61\x00\x20\x00\x6f\x00\ +\x70\x00\x63\x00\x6a\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x77\x00\ +\x6f\x00\x64\x00\x75\x00\x6a\x00\x65\x00\x2c\x00\x20\x01\x7c\x00\ +\x65\x00\x20\x00\x7a\x00\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\ +\x7a\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x7a\x00\ +\x6f\x00\x73\x00\x74\x00\x61\x00\x6a\x01\x05\x00\x20\x00\x6f\x00\ +\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x20\x00\x62\x00\ +\x61\x00\x7a\x00\x6f\x00\x77\x00\x65\x00\x2e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x7f\x4e\x6f\x72\x6d\x61\x6c\x6c\x79\x2c\x20\x61\ +\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\x6e\x67\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x2c\x20\x74\x68\x65\x20\x63\x6f\x70\x69\x65\x73\ +\x20\x67\x65\x74\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x2e\x20\x49\ +\x66\x20\x74\x68\x69\x73\x20\x6f\x70\x74\x69\x6f\x6e\x20\x69\x73\ +\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x62\x61\ +\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\ +\x62\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x69\x6e\x73\x74\ +\x65\x61\x64\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x4f\x00\x70\ +\x00\x63\x00\x6a\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\ +\x00\x61\x00\x74\x00\x75\x00\x20\x00\x4f\x00\x43\x00\x41\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x12\x4f\x43\x41\x20\x66\x6f\x72\x6d\ +\x61\x74\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x44\x00\x4f\x00\x72\x00\x79\x00\x67\x00\x69\x00\x6e\x00\x61\ +\x00\x6c\x00\x6e\x00\x79\x00\x20\x00\x6b\x00\x6f\x00\x6c\x00\x6f\ +\x00\x72\x00\x20\x00\x69\x00\x20\x00\x73\x00\x7a\x00\x65\x00\x72\ +\x00\x6f\x00\x6b\x00\x6f\x01\x5b\x01\x07\x00\x20\x00\x6c\x00\x69\ +\x00\x6e\x00\x69\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\ +\x4f\x72\x69\x67\x69\x6e\x61\x6c\x20\x63\x6f\x6c\x6f\x72\x20\x61\ +\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x1a\x00\x52\x00\x61\x00\x77\x00\x20\x00\x28\x00\x64\ +\x00\x6c\x00\x61\x00\x20\x00\x43\x00\x41\x00\x4d\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0d\x52\x61\x77\x20\x28\x66\x6f\x72\ +\x20\x43\x41\x4d\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\x00\x52\x00\ +\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x70\x00\x6f\x00\ +\x6c\x00\x79\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x20\x00\ +\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x77\x00\x69\x00\x64\x00\ +\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x52\x65\x6e\ +\x64\x65\x72\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x73\x20\x77\x69\ +\x74\x68\x20\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\ +\x00\x50\x00\x72\x00\x61\x00\x77\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x52\x69\x67\x68\x74\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x22\x00\x4f\x00\x70\x00\x63\x00\x6a\x00\x65\x00\x20\x00\x66\x00\ +\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x75\x00\x20\x00\x53\x00\ +\x56\x00\x47\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x53\x56\x47\ +\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x64\x00\x5a\x00\x61\x00\x70\x00\x69\x00\ +\x73\x00\x7a\x00\x20\x00\x62\x00\x69\x00\x65\x01\x7c\x01\x05\x00\ +\x63\x00\x79\x00\x20\x00\x6b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ +\x20\x00\x69\x00\x20\x00\x73\x00\x7a\x00\x65\x00\x72\x00\x6f\x00\ +\x6b\x00\x6f\x01\x5b\x01\x07\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\ +\x69\x00\x69\x00\x20\x00\x63\x00\x61\x01\x42\x00\x65\x00\x6a\x00\ +\x20\x00\x73\x00\x65\x00\x73\x00\x6a\x00\x69\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x30\x53\x61\x76\x65\x20\x63\x75\x72\x72\x65\x6e\ +\x74\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\ +\x77\x69\x64\x74\x68\x20\x61\x63\x72\x6f\x73\x73\x20\x73\x65\x73\ +\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4a\x00\x5a\x00\ +\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\x20\x00\x6f\x00\ +\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x20\x00\x62\x00\ +\x61\x00\x7a\x00\x6f\x00\x77\x00\x65\x00\x20\x00\x70\x00\x6f\x00\ +\x20\x00\x73\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x6f\x00\x77\x00\ +\x61\x00\x6e\x00\x69\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x21\x53\x65\x6c\x65\x63\x74\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x20\x61\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\ +\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x53\x00\x68\x00\x6f\ +\x00\x77\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\ +\x00\x53\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x74\x00\x6f\x00\x6f\ +\x00\x6c\x00\x62\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x17\x53\x68\x6f\x77\x20\x44\x72\x61\x66\x74\x20\x53\x6e\x61\ +\x70\x20\x74\x6f\x6f\x6c\x62\x61\x72\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x34\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x57\x00\x6f\x00\ +\x72\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x50\x00\x6c\x00\ +\x61\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x72\x00\x61\x00\x63\x00\ +\x6b\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\ +\x68\x6f\x77\x20\x57\x6f\x72\x6b\x69\x6e\x67\x20\x50\x6c\x61\x6e\ +\x65\x20\x74\x72\x61\x63\x6b\x65\x72\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x0e\x00\x53\x00\x6c\x00\x61\x00\x73\x00\x68\x00\x20\x00\x35\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\x20\x35\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x53\x00\x6c\x00\x61\x00\x73\ +\x00\x68\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ +\x53\x6c\x61\x73\x68\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\ +\x53\x00\x6c\x00\x61\x00\x73\x00\x68\x00\x20\x00\x39\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\x20\x39\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x26\x00\x50\x00\x72\x00\x7a\x00\x79\x00\x63\ +\x00\x69\x01\x05\x00\x67\x00\x61\x00\x6e\x00\x69\x00\x65\x00\x20\ +\x00\x6b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x75\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0a\x53\x6e\x61\x70\x20\x63\x6f\x6c\x6f\x72\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x50\x00\x72\x00\x7a\x00\x79\ +\x00\x63\x00\x69\x01\x05\x00\x67\x00\x61\x00\x6a\x00\x20\x00\x6d\ +\x00\x61\x00\x6b\x00\x73\x00\x79\x00\x6d\x00\x61\x00\x6c\x00\x6e\ +\x00\x65\x00\x6a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x6e\ +\x61\x70\x20\x6d\x61\x78\x69\x6d\x75\x6d\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x12\x00\x54\x00\x72\x00\x79\x00\x62\x00\x20\x00\x53\x00\x6e\ +\x00\x61\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x53\x6e\ +\x61\x70\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x5a\ +\x00\x61\x00\x6b\x00\x72\x00\x65\x00\x73\x00\x20\x00\x70\x00\x72\ +\x00\x7a\x00\x79\x00\x63\x00\x69\x01\x05\x00\x67\x00\x61\x00\x6e\ +\x00\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x6e\ +\x61\x70\x20\x72\x61\x6e\x67\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x66\ +\x00\x53\x00\x74\x00\x79\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x66\x00\x69\x00\x6c\ +\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x77\x00\x72\x00\x69\ +\x00\x74\x00\x65\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\ +\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x61\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\ +\x00\x63\x00\x68\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\ +\x53\x74\x79\x6c\x65\x20\x6f\x66\x20\x53\x56\x47\x20\x66\x69\x6c\ +\x65\x20\x74\x6f\x20\x77\x72\x69\x74\x65\x20\x77\x68\x65\x6e\x20\ +\x65\x78\x70\x6f\x72\x74\x69\x6e\x67\x20\x61\x20\x53\x6b\x65\x74\ +\x63\x68\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x50\x00\x61\x00\ +\x73\x00\x65\x00\x6b\x00\x20\x00\x7a\x00\x61\x00\x64\x00\x61\x01\ +\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x54\x61\x73\x6b\x76\ +\x69\x65\x77\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x4b\x00\x6c\x00\ +\x61\x00\x77\x00\x69\x00\x73\x00\x7a\x00\x20\x00\x6d\x00\x6f\x00\ +\x64\x00\x79\x00\x66\x00\x69\x00\x6b\x00\x75\x00\x6a\x01\x05\x00\ +\x63\x00\x79\x00\x20\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x6e\x00\ +\x69\x00\x63\x00\x7a\x00\x61\x00\x6e\x00\x69\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1d\x54\x68\x65\x20\x43\x6f\x6e\x73\x74\ +\x72\x61\x69\x6e\x69\x6e\x67\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\ +\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x00\x41\x00\x4c\ +\x00\x54\x00\x20\x00\x20\x00\x6b\x00\x6c\x00\x61\x00\x77\x00\x69\ +\x00\x73\x00\x7a\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x79\x00\x66\ +\x00\x69\x00\x6b\x00\x75\x00\x6a\x01\x05\x00\x63\x00\x79\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\x20\x61\x6c\x74\x20\ +\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x58\x00\x50\x00\x6c\x00\x69\x00\x6b\x00\x20\x00\x6d\ +\x00\x61\x00\x70\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x61\ +\x00\x20\x00\x6b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\xf3\x00\x77\ +\x00\x20\x00\x44\x00\x58\x00\x46\x00\x20\x00\x6e\x00\x61\x00\x20\ +\x00\x67\x00\x72\x00\x75\x00\x62\x00\x6f\x01\x5b\x00\x63\x00\x69\ +\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x69\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x41\x54\x68\x65\x20\x63\x6f\x6c\x6f\x72\x20\ +\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x20\x66\x6f\x72\ +\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6e\x67\x20\x64\x78\x66\ +\x20\x63\x6f\x6c\x6f\x72\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\ +\x65\x77\x69\x64\x74\x68\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x7a\x00\ +\x44\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x79\x00\ +\x20\x00\x73\x00\x7a\x00\x61\x00\x62\x00\x6c\x00\x6f\x00\x6e\x00\ +\x20\x00\x70\x00\x6f\x00\x64\x00\x63\x00\x7a\x00\x61\x00\x73\x00\ +\x20\x00\x74\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\x65\x00\x6e\x00\ +\x69\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x77\x00\x65\x00\x67\x00\ +\x6f\x00\x20\x00\x61\x00\x72\x00\x6b\x00\x75\x00\x73\x00\x7a\x00\ +\x61\x00\x20\x00\x72\x00\x79\x00\x73\x00\x75\x00\x6e\x00\x6b\x00\ +\x6f\x00\x77\x00\x65\x00\x67\x00\x6f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x3d\x54\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x74\ +\x65\x6d\x70\x6c\x61\x74\x65\x20\x74\x6f\x20\x75\x73\x65\x20\x77\ +\x68\x65\x6e\x20\x63\x72\x65\x61\x74\x69\x6e\x67\x20\x61\x20\x6e\ +\x65\x77\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x73\x68\x65\x65\x74\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x72\x00\x49\x00\x6c\x00\x6f\x01\x5b\ +\x01\x07\x00\x20\x00\x6d\x00\x69\x00\x65\x00\x6a\x00\x73\x00\x63\ +\x00\x20\x00\x64\x00\x7a\x00\x69\x00\x65\x00\x73\x00\x69\x01\x19\ +\x00\x74\x00\x6e\x00\x79\x00\x63\x00\x68\x00\x20\x00\x64\x00\x6c\ +\x00\x61\x00\x20\x00\x77\x00\x73\x00\x70\x00\xf3\x01\x42\x00\x72\ +\x00\x7a\x01\x19\x00\x64\x00\x6e\x00\x79\x00\x63\x00\x68\x00\x20\ +\x00\x77\x00\x65\x00\x77\x00\x6e\x01\x19\x00\x74\x00\x72\x00\x7a\ +\x00\x6e\x00\x79\x00\x63\x00\x68\x00\x2e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x4d\x54\x68\x65\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\ +\x66\x20\x64\x65\x63\x69\x6d\x61\x6c\x73\x20\x69\x6e\x20\x69\x6e\ +\x74\x65\x72\x6e\x61\x6c\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\ +\x65\x73\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x20\x28\x66\ +\x6f\x72\x20\x65\x78\x2e\x20\x33\x20\x3d\x20\x30\x2e\x30\x30\x31\ +\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\xa2\x00\x50\x00\x72\x00\x6f\x00\ +\x6d\x00\x69\x00\x65\x01\x44\x00\x20\x00\x70\x00\x72\x00\x7a\x00\ +\x79\x00\x63\x00\x69\x01\x05\x00\x67\x00\x61\x00\x6e\x00\x69\x00\ +\x61\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x70\x00\x75\x00\x6e\x00\ +\x6b\x00\x74\x00\xf3\x00\x77\x00\x20\x00\x73\x00\x70\x00\x65\x00\ +\x63\x00\x6a\x00\x61\x00\x6c\x00\x6e\x00\x79\x00\x63\x00\x68\x00\ +\x2e\x00\x20\x00\x55\x00\x73\x00\x74\x00\x61\x00\x77\x00\x20\x00\ +\x30\x00\x20\x00\x64\x00\x6c\x00\x61\x00\x20\x00\x6e\x00\x69\x00\ +\x65\x00\x73\x00\x6b\x00\x6f\x01\x44\x00\x63\x00\x7a\x00\x6f\x00\ +\x6e\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x6d\x00\x69\x00\x65\x00\x6e\x00\x69\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x4e\x54\x68\x65\x20\x72\x61\x64\x69\x75\x73\x20\ +\x66\x6f\x72\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x20\x74\x6f\x20\ +\x73\x70\x65\x63\x69\x61\x6c\x20\x70\x6f\x69\x6e\x74\x73\x2e\x20\ +\x53\x65\x74\x20\x74\x6f\x20\x30\x20\x66\x6f\x72\x20\x6e\x6f\x20\ +\x64\x69\x73\x74\x61\x6e\x63\x65\x20\x28\x69\x6e\x66\x69\x6e\x69\ +\x74\x65\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x4b\x00\x6c\x00\ +\x61\x00\x77\x00\x69\x00\x73\x00\x7a\x00\x20\x00\x6d\x00\x6f\x00\ +\x64\x00\x79\x00\x66\x00\x69\x00\x6b\x00\x75\x00\x6a\x01\x05\x00\ +\x63\x00\x79\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x79\x00\x63\x00\ +\x69\x01\x05\x00\x67\x00\x61\x00\x6e\x00\x69\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x15\x54\x68\x65\x20\x73\x6e\x61\x70\x20\ +\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x3a\x00\x4f\x00\x64\x00\x73\x00\x74\x01\x19\x00\x70\ +\x00\x79\x00\x20\x00\x6d\x00\x69\x01\x19\x00\x64\x00\x7a\x00\x79\ +\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x61\x00\x6d\x00\x69\ +\x00\x20\x00\x73\x00\x69\x00\x61\x00\x74\x00\x6b\x00\x69\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x22\x54\x68\x65\x20\x73\x70\x61\x63\ +\x69\x6e\x67\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x65\x61\x63\x68\ +\x20\x67\x72\x69\x64\x20\x6c\x69\x6e\x65\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x01\xd8\x00\x54\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\x73\x00\x74\ +\x00\x20\x00\x74\x00\x72\x00\x79\x00\x62\x00\x20\x00\x55\x00\x49\ +\x00\x2c\x00\x20\x00\x77\x00\x20\x00\x6b\x00\x74\x00\xf3\x00\x72\ +\x00\x79\x00\x6d\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x75\x01\x42\ +\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x62\ +\x01\x19\x00\x64\x00\x7a\x00\x69\x00\x65\x00\x20\x00\x64\x00\x7a\ +\x00\x69\x00\x61\x01\x42\x00\x61\x01\x07\x00\x20\x00\x6e\x00\x61\ +\x00\x73\x00\x74\x01\x19\x00\x70\x00\x75\x00\x6a\x01\x05\x00\x63\ +\x00\x6f\x00\x3a\x00\x20\x00\x50\x00\x61\x00\x73\x00\x65\x00\x6b\ +\x00\x20\x00\x6e\x00\x61\x00\x72\x00\x7a\x01\x19\x00\x64\x00\x7a\ +\x00\x69\x00\x20\x00\x75\x00\x6d\x00\x69\x00\x65\x01\x5b\x00\x63\ +\x00\x69\x00\x20\x00\x77\x00\x73\x00\x7a\x00\x79\x00\x73\x00\x74\ +\x00\x6b\x00\x69\x00\x65\x00\x20\x00\x75\x00\x73\x00\x74\x00\x61\ +\x00\x77\x00\x69\x00\x65\x00\x6e\x00\x69\x00\x61\x00\x20\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x77\x00\x20\x00\x6f\ +\x00\x73\x00\x6f\x00\x62\x00\x6e\x00\x79\x00\x6d\x00\x20\x00\x70\ +\x00\x61\x00\x73\x00\x6b\x00\x75\x00\x2c\x00\x20\x00\x6e\x00\x61\ +\x00\x74\x00\x6f\x00\x6d\x00\x69\x00\x61\x00\x73\x00\x74\x00\x20\ +\x00\x74\x00\x72\x00\x79\x00\x62\x00\x20\x00\x70\x00\x61\x00\x73\ +\x00\x6b\x00\x61\x00\x20\x00\x7a\x00\x61\x00\x64\x00\x61\x01\x44\ +\x00\x20\x00\x75\x01\x7c\x00\x79\x00\x6a\x00\x65\x00\x20\x00\x73\ +\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x20\x00\x46\x00\x72\ +\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x20\x00\x54\x00\x61\ +\x00\x73\x00\x6b\x00\x76\x00\x69\x00\x65\x00\x77\x00\x20\x00\x64\ +\x00\x6c\x00\x61\x00\x20\x00\x77\x00\x73\x00\x7a\x00\x79\x00\x73\ +\x00\x74\x00\x6b\x00\x69\x00\x63\x00\x68\x00\x20\x00\x6a\x00\x65\ +\x00\x67\x00\x6f\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\ +\x00\x61\x00\x6b\x00\x63\x00\x6a\x00\x69\x00\x20\x00\x7a\x00\x20\ +\x00\x75\x01\x7c\x00\x79\x00\x74\x00\x6b\x00\x6f\x00\x77\x00\x6e\ +\x00\x69\x00\x6b\x00\x69\x00\x65\x00\x6d\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\xcf\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\ +\x55\x49\x20\x6d\x6f\x64\x65\x20\x69\x6e\x20\x77\x68\x69\x63\x68\ +\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\x75\x6c\ +\x65\x20\x77\x69\x6c\x6c\x20\x77\x6f\x72\x6b\x3a\x20\x54\x6f\x6f\ +\x6c\x62\x61\x72\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x70\ +\x6c\x61\x63\x65\x20\x61\x6c\x6c\x20\x44\x72\x61\x66\x74\x20\x73\ +\x65\x74\x74\x69\x6e\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x65\x70\ +\x61\x72\x61\x74\x65\x20\x74\x6f\x6f\x6c\x62\x61\x72\x2c\x20\x77\ +\x68\x69\x6c\x65\x20\x74\x61\x73\x6b\x62\x61\x72\x20\x6d\x6f\x64\ +\x65\x20\x77\x69\x6c\x6c\x20\x75\x73\x65\x20\x74\x68\x65\x20\x46\ +\x72\x65\x65\x43\x41\x44\x20\x54\x61\x73\x6b\x76\x69\x65\x77\x20\ +\x73\x79\x73\x74\x65\x6d\x20\x66\x6f\x72\x20\x61\x6c\x6c\x20\x69\ +\x74\x73\x20\x75\x73\x65\x72\x20\x69\x6e\x74\x65\x72\x61\x63\x74\ +\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x94\x00\x4a\x00\x65\x00\ +\x73\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x6f\x00\ +\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x79\x00\x20\x00\x6b\x00\ +\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x64\x00\x6c\x00\x61\x00\ +\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\xf3\x00\ +\x77\x00\x2c\x00\x20\x00\x6b\x00\x74\x00\xf3\x00\x72\x00\x65\x00\ +\x20\x00\x73\x01\x05\x00\x20\x00\x73\x00\x70\x00\x6f\x00\x72\x00\ +\x7a\x01\x05\x00\x64\x00\x7a\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\ +\x77\x00\x20\x00\x74\x00\x72\x00\x79\x00\x62\x00\x69\x00\x65\x00\ +\x20\x00\x62\x00\x75\x00\x64\x00\x6f\x00\x77\x00\x79\x00\x2e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x54\x68\x69\x73\x20\x69\x73\ +\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ +\x6f\x72\x20\x66\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\ +\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x20\x77\x68\x69\x6c\x65\ +\x20\x69\x6e\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\ +\x20\x6d\x6f\x64\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\xe0\x00\x54\ +\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x20\x00\x6e\ +\x00\x61\x00\x7a\x00\x77\x00\x61\x00\x20\x00\x64\x00\x6f\x00\x6d\ +\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x65\x00\x6a\x00\x20\x00\x63\ +\x00\x7a\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x6b\x00\x69\x00\x20\ +\x00\x64\x00\x6c\x00\x61\x00\x20\x00\x77\x00\x73\x00\x7a\x00\x79\ +\x00\x73\x00\x74\x00\x6b\x00\x69\x00\x63\x00\x68\x00\x20\x00\x74\ +\x00\x65\x00\x6b\x00\x73\x00\x74\x00\xf3\x00\x77\x00\x20\x00\x69\ +\x00\x20\x00\x77\x00\x79\x00\x6d\x00\x69\x00\x61\x00\x72\x00\xf3\ +\x00\x77\x00\x2e\x00\x20\x00\x4d\x00\x6f\x01\x7c\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x79\x01\x07\x00\x20\x00\x6e\ +\x00\x70\x00\x2e\x00\x20\x00\x6e\x00\x61\x00\x7a\x00\x77\x00\x61\ +\x00\x20\x00\x63\x00\x7a\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x6b\ +\x00\x69\x00\x20\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\ +\x00\x22\x00\x2c\x00\x20\x00\x64\x00\x6f\x00\x6d\x00\x79\x01\x5b\ +\x00\x6c\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x74\x00\x79\x00\x6c\ +\x00\x2c\x00\x20\x00\x74\x00\x61\x00\x6b\x00\x20\x00\x6a\x00\x61\ +\x00\x6b\x00\x20\x00\x22\x00\x73\x00\x61\x00\x6e\x00\x73\x00\x22\ +\x00\x2c\x00\x20\x00\x22\x00\x73\x00\x65\x00\x72\x00\x69\x00\x66\ +\x00\x22\x00\x20\x00\x6c\x00\x75\x00\x62\x00\x20\x00\x22\x00\x6d\ +\x00\x6f\x00\x6e\x00\x6f\x00\x22\x00\x20\x00\x6c\x00\x75\x00\x62\ +\x00\x20\x00\x72\x00\x6f\x00\x64\x00\x7a\x00\x69\x00\x6e\x00\x79\ +\x00\x2c\x00\x20\x00\x6a\x00\x61\x00\x6b\x00\x20\x00\x6e\x00\x70\ +\x00\x2e\x00\x20\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\ +\x00\x2c\x00\x20\x00\x48\x00\x65\x00\x6c\x00\x76\x00\x65\x00\x74\ +\x00\x69\x00\x63\x00\x61\x00\x2c\x00\x20\x00\x73\x00\x61\x00\x6e\ +\x00\x73\x00\x20\x00\x22\x00\x6c\x00\x75\x00\x62\x00\x20\x00\x6e\ +\x00\x61\x00\x7a\x00\x77\x01\x19\x00\x20\x00\x77\x00\x20\x00\x73\ +\x00\x74\x00\x79\x00\x6c\x00\x75\x00\x20\x00\x6e\x00\x70\x00\x2e\ +\x00\x22\x00\x20\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x3a\ +\x00\x20\x00\x42\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x22\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\xf2\x54\x68\x69\x73\x20\x69\x73\x20\ +\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x66\x6f\x6e\x74\ +\x20\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\x61\x6c\x6c\x20\x44\x72\ +\x61\x66\x74\x20\x74\x65\x78\x74\x73\x20\x61\x6e\x64\x20\x64\x69\ +\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x2e\x0a\x49\x74\x20\x63\x61\x6e\ +\x20\x62\x65\x20\x61\x20\x66\x6f\x6e\x74\x20\x6e\x61\x6d\x65\x20\ +\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\x72\x69\x61\x6c\x22\x2c\ +\x20\x61\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x73\x74\x79\x6c\x65\ +\x20\x73\x75\x63\x68\x20\x61\x73\x20\x22\x73\x61\x6e\x73\x22\x2c\ +\x20\x22\x73\x65\x72\x69\x66\x22\x0a\x6f\x72\x20\x22\x6d\x6f\x6e\ +\x6f\x22\x2c\x20\x6f\x72\x20\x61\x20\x66\x61\x6d\x69\x6c\x79\x20\ +\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\x72\x69\x61\x6c\x2c\x48\ +\x65\x6c\x76\x65\x74\x69\x63\x61\x2c\x73\x61\x6e\x73\x22\x20\x6f\ +\x72\x20\x61\x20\x6e\x61\x6d\x65\x20\x77\x69\x74\x68\x20\x61\x20\ +\x73\x74\x79\x6c\x65\x0a\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\ +\x72\x69\x61\x6c\x3a\x42\x6f\x6c\x64\x22\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x6c\x00\x4a\x00\x65\x00\x73\x00\x74\x00\x20\x00\x74\x00\x6f\ +\x00\x20\x00\x64\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\ +\x00\x61\x00\x20\x00\x6e\x00\x61\x00\x7a\x00\x77\x00\x61\x00\x20\ +\x00\x67\x00\x72\x00\x75\x00\x70\x00\x79\x00\x20\x00\x64\x00\x6c\ +\x00\x61\x00\x20\x00\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\x00\x74\ +\x00\x72\x00\x69\x00\x69\x00\x20\x00\x6b\x00\x6f\x00\x6e\x00\x73\ +\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x63\x00\x6a\x00\x69\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x38\x54\x68\x69\x73\x20\x69\x73\x20\ +\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x67\x72\x6f\x75\ +\x70\x20\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\x63\x6f\x6e\x73\x74\ +\x72\x75\x63\x74\x69\x6f\x6e\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x6c\x00\x57\x00\x79\x00\x62\x00\x72\ +\x00\x61\x00\x6e\x00\x6f\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x6f\ +\x00\x64\x01\x19\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\x75\x00\x20\x00\x6b\x00\x6f\x00\x6c\x00\x6f\x00\x72\ +\x00\x75\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\ +\x00\x75\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x64\x00\x6f\ +\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\ +\x00\x61\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x47\x54\x68\ +\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\ +\x20\x63\x68\x6f\x6f\x73\x65\x64\x20\x66\x6f\x72\x20\x69\x6d\x70\ +\x6f\x72\x74\x69\x6e\x67\x20\x53\x56\x47\x20\x6f\x62\x6a\x65\x63\ +\x74\x20\x63\x6f\x6c\x6f\x72\x20\x69\x6e\x74\x6f\x20\x46\x72\x65\ +\x65\x43\x41\x44\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\xc6\x00\x4a\x00\ +\x65\x00\x73\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x6d\x00\ +\x65\x00\x74\x00\x6f\x00\x64\x00\x61\x00\x20\x00\x69\x00\x6d\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\ +\x69\x00\x61\x00\x20\x00\x6c\x00\x75\x00\x62\x00\x20\x00\x74\x01\ +\x42\x00\x75\x00\x6d\x00\x61\x00\x63\x00\x7a\x00\x65\x00\x6e\x00\ +\x69\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ +\x75\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\ +\x75\x00\x20\x00\x44\x00\x58\x00\x46\x00\x20\x00\x6e\x00\x61\x00\ +\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\ +\x2e\x00\x20\x00\x20\x00\x4a\x00\x65\x01\x5b\x00\x6c\x00\x69\x00\ +\x20\x00\x6d\x00\x61\x00\x70\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\ +\x69\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ +\xf3\x00\x77\x00\x20\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x20\x00\ +\x77\x00\x79\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x65\x00\x2c\x00\ +\x20\x00\x6e\x00\x61\x00\x6c\x00\x65\x01\x7c\x00\x79\x00\x20\x00\ +\x77\x00\x79\x00\x62\x00\x72\x00\x61\x01\x07\x00\x20\x00\x70\x00\ +\x6c\x00\x69\x00\x6b\x00\x20\x00\x6d\x00\x61\x00\x70\x00\x6f\x00\ +\x77\x00\x61\x00\x6e\x00\x69\x00\x61\x00\x20\x00\x6b\x00\x6f\x00\ +\x6c\x00\x6f\x00\x72\x00\xf3\x00\x77\x00\x20\x00\x7a\x00\x61\x00\ +\x77\x00\x69\x00\x65\x00\x72\x00\x61\x00\x6a\x01\x05\x00\x63\x00\ +\x79\x00\x63\x00\x68\x00\x20\x00\x74\x00\x61\x00\x62\x00\x65\x00\ +\x6c\x01\x19\x00\x20\x00\x74\x00\x72\x00\x61\x00\x6e\x00\x73\x00\ +\x6c\x00\x61\x00\x63\x00\x6a\x00\x69\x00\x2c\x00\x20\x00\x6b\x00\ +\x74\x00\xf3\x00\x72\x00\x79\x00\x20\x00\x70\x00\x72\x00\x7a\x00\ +\x65\x00\x6b\x00\x6f\x00\x6e\x00\x77\x00\x65\x00\x72\x00\x74\x00\ +\x75\x00\x6a\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x6c\x00\x6f\x00\ +\x72\x00\x79\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x65\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x73\x00\ +\x2e\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\xe3\x54\x68\x69\ +\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\ +\x63\x68\x6f\x6f\x73\x65\x64\x20\x66\x6f\x72\x20\x69\x6d\x70\x6f\ +\x72\x74\x69\x6e\x67\x20\x6f\x72\x20\x74\x72\x61\x6e\x73\x6c\x61\ +\x74\x69\x6e\x67\x20\x44\x58\x46\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x63\x6f\x6c\x6f\x72\x20\x69\x6e\x74\x6f\x20\x46\x72\x65\x65\x43\ +\x41\x44\x2e\x20\x0a\x49\x66\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\ +\x70\x70\x69\x6e\x67\x20\x69\x73\x20\x63\x68\x6f\x6f\x73\x65\x64\ +\x2c\x20\x79\x6f\x75\x20\x6d\x75\x73\x74\x20\x63\x68\x6f\x6f\x73\ +\x65\x20\x61\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\ +\x67\x20\x66\x69\x6c\x65\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\ +\x67\x20\x61\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6f\x6e\x20\ +\x74\x61\x62\x6c\x65\x20\x74\x68\x61\x74\x20\x77\x69\x6c\x6c\x20\ +\x63\x6f\x6e\x76\x65\x72\x74\x20\x63\x6f\x6c\x6f\x72\x73\x20\x69\ +\x6e\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x73\x2e\x0a\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\xe2\x00\x4a\x00\x65\x00\x73\x00\x74\ +\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x6f\x00\x72\x00\x69\x00\x65\ +\x00\x6e\x00\x74\x00\x61\x00\x63\x00\x6a\x00\x61\x00\x20\x00\x74\ +\x00\x65\x00\x6b\x00\x73\x00\x74\x00\xf3\x00\x77\x00\x20\x00\x77\ +\x00\x79\x00\x6d\x00\x69\x00\x61\x00\x72\x00\xf3\x00\x77\x00\x2c\ +\x00\x20\x00\x67\x00\x64\x00\x79\x00\x20\x00\x74\x00\x65\x00\x20\ +\x00\x77\x00\x79\x00\x6d\x00\x69\x00\x61\x00\x72\x00\x79\x00\x20\ +\x00\x73\x01\x05\x00\x20\x00\x70\x00\x69\x00\x6f\x00\x6e\x00\x6f\ +\x00\x77\x00\x65\x00\x2e\x00\x20\x00\x50\x00\x6f\x00\x7a\x00\x6f\ +\x00\x73\x00\x74\x00\x61\x00\x77\x00\x69\x00\x6f\x00\x6e\x00\x61\ +\x00\x20\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x20\x00\x64\x00\x6f\ +\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x61\x00\x2c\x00\x20\ +\x00\x6b\x00\x74\x00\xf3\x00\x72\x00\x61\x00\x20\x00\x6a\x00\x65\ +\x00\x73\x00\x74\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x01\x05\ +\x00\x20\x00\x49\x00\x53\x00\x4f\x00\x2e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x7e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\ +\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\ +\x68\x65\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x20\x74\x65\x78\ +\x74\x73\x20\x77\x68\x65\x6e\x20\x74\x68\x6f\x73\x65\x20\x64\x69\ +\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x61\x72\x65\x20\x76\x65\x72\ +\x74\x69\x63\x61\x6c\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x69\ +\x73\x20\x6c\x65\x66\x74\x2c\x20\x77\x68\x69\x63\x68\x20\x69\x73\ +\x20\x74\x68\x65\x20\x49\x53\x4f\x20\x73\x74\x61\x6e\x64\x61\x72\ +\x64\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\xfa\x00\x4a\x00\x65\x00\x73\ +\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x77\x00\x61\x00\x72\ +\x00\x74\x00\x6f\x01\x5b\x01\x07\x00\x20\x00\x75\x01\x7c\x00\x79\ +\x00\x77\x00\x61\x00\x6e\x00\x61\x00\x20\x00\x70\x00\x72\x00\x7a\ +\x00\x65\x00\x7a\x00\x20\x00\x66\x00\x75\x00\x6e\x00\x6b\x00\x63\ +\x00\x6a\x00\x65\x00\x20\x00\x77\x00\x79\x00\x6b\x00\x6f\x00\x72\ +\x00\x7a\x00\x79\x00\x73\x00\x74\x00\x75\x00\x6a\x01\x05\x00\x63\ +\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x6c\x00\x65\x00\x72\x00\x61\ +\x00\x6e\x00\x63\x00\x6a\x01\x19\x00\x2e\x00\x20\x00\x57\x00\x61\ +\x00\x72\x00\x74\x00\x6f\x01\x5b\x00\x63\x00\x69\x00\x20\x00\x70\ +\x00\x6f\x00\x6e\x00\x69\x01\x7c\x00\x65\x00\x6a\x00\x20\x00\x74\ +\x00\x65\x00\x6a\x00\x20\x00\x77\x00\x61\x00\x72\x00\x74\x00\x6f\ +\x01\x5b\x00\x63\x00\x69\x00\x20\x00\x73\x01\x05\x00\x20\x00\x74\ +\x00\x72\x00\x61\x00\x6b\x00\x74\x00\x6f\x00\x77\x00\x61\x00\x6e\ +\x00\x65\x00\x20\x00\x6a\x00\x61\x00\x6b\x00\x6f\x00\x20\x00\x74\ +\x00\x61\x00\x6b\x00\x69\x00\x65\x00\x20\x00\x73\x00\x61\x00\x6d\ +\x00\x65\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7b\x54\x68\ +\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x76\x61\x6c\x75\x65\x20\ +\x75\x73\x65\x64\x20\x62\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\ +\x73\x20\x74\x68\x61\x74\x20\x75\x73\x65\x20\x61\x20\x74\x6f\x6c\ +\x65\x72\x61\x6e\x63\x65\x2e\x0a\x56\x61\x6c\x75\x65\x73\x20\x77\ +\x69\x74\x68\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x63\x65\x73\x20\ +\x62\x65\x6c\x6f\x77\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\ +\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x74\x72\x65\x61\x74\x65\x64\ +\x20\x61\x73\x20\x73\x61\x6d\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x14\x00\x54\x00\x6f\x00\x6c\x00\x65\x00\x72\x00\x61\x00\x6e\x00\ +\x63\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\ +\x6f\x6c\x65\x72\x61\x6e\x63\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\ +\x00\x50\x00\x61\x00\x73\x00\x65\x00\x6b\x00\x20\x00\x6e\x00\x61\ +\x00\x72\x00\x7a\x01\x19\x00\x64\x00\x7a\x00\x69\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x07\x54\x6f\x6f\x6c\x62\x61\x72\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x4c\x00\x5a\x00\x61\x00\x6d\x00\x69\x00\x65\x01\ +\x44\x00\x20\x00\x6b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\ +\x6c\x00\x69\x00\x6e\x00\x69\x00\x69\x00\x20\x00\x7a\x00\x20\x00\ +\x62\x00\x69\x00\x61\x01\x42\x00\x65\x00\x67\x00\x6f\x00\x20\x00\ +\x6e\x00\x61\x00\x20\x00\x63\x00\x7a\x00\x61\x00\x72\x00\x6e\x00\ +\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x54\x72\x61\x6e\x73\ +\x6c\x61\x74\x65\x20\x77\x68\x69\x74\x65\x20\x6c\x69\x6e\x65\x20\ +\x63\x6f\x6c\x6f\x72\x20\x74\x6f\x20\x62\x6c\x61\x63\x6b\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x5c\x00\x50\x00\x72\x00\x7a\x00\x65\x00\x74\ +\x01\x42\x00\x75\x00\x6d\x00\x61\x00\x63\x00\x7a\x00\x6f\x00\x6e\ +\x00\x65\x00\x20\x00\x28\x00\x64\x00\x6c\x00\x61\x00\x20\x00\x64\ +\x00\x72\x00\x75\x00\x6b\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\ +\x00\x61\x00\x20\x00\x69\x00\x20\x00\x77\x00\x79\x01\x5b\x00\x77\ +\x00\x69\x00\x65\x00\x74\x00\x6c\x00\x61\x00\x6e\x00\x69\x00\x61\ +\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x54\x72\x61\x6e\ +\x73\x6c\x61\x74\x65\x64\x20\x28\x66\x6f\x72\x20\x70\x72\x69\x6e\ +\x74\x20\x26\x20\x64\x69\x73\x70\x6c\x61\x79\x29\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x52\x00\x55\x01\x7c\x00\x79\x00\x6a\x00\x20\x00\x64\ +\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x65\x00\x67\ +\x00\x6f\x00\x20\x00\x6b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x75\ +\x00\x20\x00\x69\x00\x20\x00\x73\x00\x7a\x00\x65\x00\x72\x00\x6f\ +\x00\x6b\x00\x6f\x01\x5b\x00\x63\x00\x69\x00\x20\x00\x6c\x00\x69\ +\x00\x6e\x00\x69\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\ +\x55\x73\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\ +\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x16\x00\x55\x01\x7c\x00\x79\x00\x6a\x00\ +\x20\x00\x73\x00\x69\x00\x61\x00\x74\x00\x6b\x00\x69\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x55\x73\x65\x20\x67\x72\x69\x64\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x60\x00\x55\x01\x7c\x00\x79\x00\x6a\x00\ +\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\ +\x64\x00\x6f\x00\x77\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x72\x00\ +\x6f\x00\x7a\x00\x6d\x00\x69\x00\x61\x00\x72\x00\x75\x00\x20\x00\ +\x63\x00\x7a\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x6b\x00\x69\x00\ +\x20\x00\x64\x00\x6c\x00\x61\x00\x20\x00\x74\x00\x65\x00\x6b\x00\ +\x73\x00\x74\x00\xf3\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x20\x55\x73\x65\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x66\x6f\ +\x6e\x74\x20\x73\x69\x7a\x65\x20\x66\x6f\x72\x20\x74\x65\x78\x74\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x4f\x00\x72\x00\x69\x00\ +\x65\x00\x6e\x00\x74\x00\x61\x00\x63\x00\x6a\x00\x61\x00\x20\x00\ +\x74\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x75\x00\x20\x00\x70\x00\ +\x69\x00\x6f\x00\x6e\x00\x6f\x00\x77\x00\x65\x00\x67\x00\x6f\x00\ +\x20\x00\x77\x00\x79\x00\x6d\x00\x69\x00\x61\x00\x72\x00\x75\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x24\x56\x65\x72\x74\x69\x63\x61\ +\x6c\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x74\x65\x78\ +\x74\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\xe6\x00\x57\x00\x68\x00\x65\x00\x6e\x00\x20\x00\ +\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x76\x00\x69\x00\ +\x65\x00\x77\x00\x73\x00\x2c\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\ +\x65\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x77\x00\x68\x00\ +\x69\x00\x74\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\ +\x77\x00\x6f\x00\x72\x00\x6b\x00\x20\x00\x61\x00\x70\x00\x70\x00\ +\x65\x00\x61\x00\x72\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x62\x00\ +\x6c\x00\x61\x00\x63\x00\x6b\x00\x2c\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x20\x00\x62\x00\x65\x00\x74\x00\x74\x00\x65\x00\x72\x00\ +\x20\x00\x72\x00\x65\x00\x61\x00\x64\x00\x61\x00\x62\x00\x69\x00\ +\x6c\x00\x69\x00\x74\x00\x79\x00\x20\x00\x61\x00\x67\x00\x61\x00\ +\x69\x00\x6e\x00\x73\x00\x74\x00\x20\x00\x77\x00\x68\x00\x69\x00\ +\x74\x00\x65\x00\x20\x00\x62\x00\x61\x00\x63\x00\x6b\x00\x67\x00\ +\x72\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x73\x57\x68\x65\x6e\x20\x65\x78\x70\x6f\x72\x74\ +\x69\x6e\x67\x20\x53\x56\x47\x20\x76\x69\x65\x77\x73\x2c\x20\x6d\ +\x61\x6b\x65\x20\x61\x6c\x6c\x20\x77\x68\x69\x74\x65\x20\x6c\x69\ +\x6e\x65\x77\x6f\x72\x6b\x20\x61\x70\x70\x65\x61\x72\x20\x69\x6e\ +\x20\x62\x6c\x61\x63\x6b\x2c\x20\x66\x6f\x72\x20\x62\x65\x74\x74\ +\x65\x72\x20\x72\x65\x61\x64\x61\x62\x69\x6c\x69\x74\x79\x20\x61\ +\x67\x61\x69\x6e\x73\x74\x20\x77\x68\x69\x74\x65\x20\x62\x61\x63\ +\x6b\x67\x72\x6f\x75\x6e\x64\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\xb4\ +\x00\x50\x00\x6f\x00\x64\x00\x63\x00\x7a\x00\x61\x00\x73\x00\x20\ +\x00\x65\x00\x6b\x00\x73\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x75\ +\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x44\x00\x58\x00\x46\x00\x20\ +\x00\x53\x00\x70\x00\x6c\x00\x61\x00\x6a\x00\x6e\x00\x79\x00\x20\ +\x00\x7a\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x6e\x01\x05\x00\x20\ +\x00\x70\x00\x72\x00\x7a\x00\x65\x00\x6b\x00\x6f\x00\x6e\x00\x77\ +\x00\x65\x00\x72\x00\x74\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x65\ +\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x69\ +\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x69\x00\x2e\x00\x20\x00\x50\ +\x00\x6f\x00\x64\x00\x61\x00\x6e\x00\x61\x00\x20\x00\x77\x00\x61\ +\x00\x72\x00\x74\x00\x6f\x01\x5b\x01\x07\x00\x20\x00\x6a\x00\x65\ +\x00\x73\x00\x74\x00\x20\x00\x6d\x00\x61\x00\x78\x00\x2e\x00\x20\ +\x00\x64\x01\x42\x00\x75\x00\x67\x00\x6f\x01\x5b\x00\x63\x00\x69\ +\x01\x05\x00\x20\x00\x6b\x00\x61\x01\x7c\x00\x64\x00\x65\x00\x67\ +\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\ +\x00\x74\x00\x75\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x69\x00\x6c\ +\x00\x69\x00\x6e\x00\x69\x00\x69\x00\x2e\x00\x20\x00\x4a\x00\x65\ +\x01\x5b\x00\x6c\x00\x69\x00\x20\x00\x77\x00\x61\x00\x72\x00\x74\ +\x00\x6f\x01\x5b\x01\x07\x00\x20\x00\x77\x00\x79\x00\x6e\x00\x6f\ +\x00\x73\x00\x69\x00\x20\x00\x27\x00\x30\x00\x27\x00\x2c\x00\x20\ +\x00\x63\x00\x61\x01\x42\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x6c\ +\x00\x69\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x61\x00\x20\x00\x62\ +\x01\x19\x00\x64\x00\x7a\x00\x69\x00\x65\x00\x20\x00\x74\x00\x72\ +\x00\x61\x00\x6b\x00\x74\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x61\ +\x00\x20\x00\x6a\x00\x61\x00\x6b\x00\x6f\x00\x20\x00\x70\x00\x6f\ +\x00\x6a\x00\x65\x00\x64\x00\x79\x00\x6e\x00\x63\x00\x7a\x00\x79\ +\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x00\x2e\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\xc2\x57\x68\ +\x65\x6e\x20\x65\x78\x70\x6f\x72\x74\x69\x6e\x67\x20\x73\x70\x6c\ +\x69\x6e\x65\x73\x20\x74\x6f\x20\x44\x58\x46\x2c\x20\x74\x68\x65\ +\x79\x20\x61\x72\x65\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x65\ +\x64\x20\x69\x6e\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x73\x2e\x20\ +\x54\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x69\x73\x20\x74\x68\ +\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6c\x65\x6e\x67\x74\x68\ +\x20\x6f\x66\x20\x65\x61\x63\x68\x20\x6f\x66\x20\x74\x68\x65\x20\ +\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x20\x73\x65\x67\x6d\x65\x6e\x74\ +\x73\x2e\x20\x49\x66\x20\x30\x2c\x20\x74\x68\x65\x6e\x20\x74\x68\ +\x65\x20\x77\x68\x6f\x6c\x65\x20\x73\x70\x6c\x69\x6e\x65\x20\x69\ +\x73\x20\x74\x72\x65\x61\x74\x65\x64\x20\x61\x73\x20\x61\x20\x73\ +\x74\x72\x61\x69\x67\x68\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x2e\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x12\x00\x58\x00\x59\x00\x20\x00\x28\ +\x00\x67\x00\xf3\x00\x72\x00\x61\x00\x29\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x08\x58\x59\x20\x28\x54\x6f\x70\x29\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x14\x00\x58\x00\x5a\x00\x20\x00\x28\x00\x70\x00\x72\ +\x00\x7a\x00\xf3\x00\x64\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0a\x58\x5a\x20\x28\x46\x72\x6f\x6e\x74\x29\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x16\x00\x59\x00\x5a\x00\x20\x00\x28\x00\x73\x00\x74\ +\x00\x72\x00\x6f\x00\x6e\x00\x61\x00\x29\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x59\x5a\x20\x28\x53\x69\x64\x65\x29\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x06\x00\x41\x00\x4c\x00\x54\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x03\x61\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x9e\ +\x00\x5a\x00\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\x2c\ +\x00\x20\x00\x6a\x00\x65\x01\x5b\x00\x6c\x00\x69\x00\x20\x00\x63\ +\x00\x68\x00\x63\x00\x65\x00\x73\x00\x7a\x00\x20\x00\x75\x01\x7c\ +\x00\x79\x01\x07\x00\x20\x00\x6a\x00\x61\x00\x6b\x00\x6f\x00\x20\ +\x00\x64\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x79\ +\x00\x20\x00\x6b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x2f\x00\x73\ +\x00\x7a\x00\x65\x00\x72\x00\x6f\x00\x6b\x00\x6f\x01\x5b\x01\x07\ +\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x69\x00\x20\x00\x7a\ +\x00\x20\x00\x70\x00\x61\x00\x73\x00\x6b\x00\x61\x00\x20\x00\x6e\ +\x00\x61\x00\x72\x00\x7a\x01\x19\x00\x64\x00\x7a\x00\x69\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x4d\x63\x68\x65\x63\x6b\x20\x74\x68\ +\x69\x73\x20\x69\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\ +\x6f\x20\x75\x73\x65\x20\x74\x68\x65\x20\x63\x6f\x6c\x6f\x72\x2f\ +\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\x66\x72\x6f\x6d\x20\x74\ +\x68\x65\x20\x74\x6f\x6f\x6c\x62\x61\x72\x20\x61\x73\x20\x64\x65\ +\x66\x61\x75\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x00\x43\x00\ +\x54\x00\x52\x00\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x63\ +\x74\x72\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xe8\x00\x4a\x00\x65\x01\ +\x5b\x00\x6c\x00\x69\x00\x20\x00\x7a\x00\x61\x00\x7a\x00\x6e\x00\ +\x61\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x65\x00\x2c\x00\x20\x00\ +\x77\x00\x69\x00\x64\x01\x7c\x00\x65\x00\x74\x00\x20\x00\x77\x00\ +\x73\x00\x6b\x00\x61\x00\x7a\x00\x75\x00\x6a\x01\x05\x00\x63\x00\ +\x65\x00\x20\x00\x62\x00\x69\x00\x65\x01\x7c\x01\x05\x00\x63\x01\ +\x05\x00\x20\x00\x6f\x00\x72\x00\x69\x00\x65\x00\x6e\x00\x74\x00\ +\x61\x00\x63\x00\x6a\x01\x19\x00\x20\x00\x70\x01\x42\x00\x61\x00\ +\x73\x00\x7a\x00\x63\x00\x7a\x00\x79\x00\x7a\x00\x6e\x00\x79\x00\ +\x20\x00\x70\x00\x72\x00\x61\x00\x63\x00\x79\x00\x20\x00\x6b\x00\ +\x74\x00\xf3\x00\x72\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x6a\x00\ +\x61\x00\x77\x00\x69\x00\x20\x00\x73\x00\x69\x01\x19\x00\x20\x00\ +\x70\x00\x6f\x00\x64\x00\x63\x00\x7a\x00\x61\x00\x73\x00\x20\x00\ +\x6f\x00\x70\x00\x65\x00\x72\x00\x61\x00\x63\x00\x6a\x00\x69\x00\ +\x20\x00\x72\x00\x79\x00\x73\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\ +\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x67\x69\x66\x20\ +\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x20\x77\x69\x64\x67\x65\ +\x74\x20\x69\x6e\x64\x69\x63\x61\x74\x69\x6e\x67\x20\x74\x68\x65\ +\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x77\x6f\x72\x6b\x69\x6e\x67\ +\x20\x70\x6c\x61\x6e\x65\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\ +\x6f\x6e\x20\x61\x70\x70\x65\x61\x72\x73\x20\x64\x75\x72\x69\x6e\ +\x67\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x6f\x70\x65\x72\x61\x74\ +\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x34\x00\x4a\x00\x65\ +\x01\x5b\x00\x6c\x00\x69\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x6a\ +\x00\x65\x00\x73\x00\x74\x00\x20\x00\x7a\x00\x61\x00\x7a\x00\x6e\ +\x00\x61\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x65\x00\x2c\x00\x20\ +\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x20\ +\x00\x7a\x00\x20\x00\x74\x00\x65\x00\x6a\x00\x20\x00\x73\x00\x61\ +\x00\x6d\x00\x65\x00\x6a\x00\x20\x00\x77\x00\x61\x00\x72\x00\x73\ +\x00\x74\x00\x77\x00\x79\x00\x20\x00\x7a\x00\x6f\x00\x73\x00\x74\ +\x00\x61\x00\x6e\x01\x05\x00\x20\x00\x70\x00\x6f\x01\x42\x01\x05\ +\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x77\x00\x20\ +\x00\x62\x00\x6c\x00\x6f\x00\x6b\x00\x69\x00\x20\x00\x44\x00\x72\ +\x00\x61\x00\x66\x00\x74\x00\x20\x00\x2c\x00\x20\x00\x62\x01\x19\ +\x00\x64\x01\x05\x00\x20\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x77\ +\x00\x79\x01\x5b\x00\x77\x00\x69\x00\x65\x00\x74\x00\x6c\x00\x61\ +\x00\x6e\x00\x65\x00\x20\x00\x73\x00\x7a\x00\x79\x00\x62\x00\x63\ +\x00\x69\x00\x65\x00\x6a\x00\x2c\x00\x20\x00\x61\x00\x6c\x00\x65\ +\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\ +\x00\x72\x00\x75\x00\x64\x00\x6e\x00\x69\x00\x65\x00\x6a\x00\x73\ +\x00\x7a\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x65\x00\x64\ +\x00\x79\x00\x74\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x93\x69\x66\x20\x74\x68\x69\ +\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\ +\x61\x6d\x65\x20\x6c\x61\x79\x65\x72\x73\x20\x77\x69\x6c\x6c\x20\ +\x62\x65\x20\x6a\x6f\x69\x6e\x65\x64\x20\x69\x6e\x74\x6f\x20\x44\ +\x72\x61\x66\x74\x20\x42\x6c\x6f\x63\x6b\x73\x2c\x20\x74\x75\x72\ +\x6e\x69\x6e\x67\x20\x74\x68\x65\x20\x64\x69\x73\x70\x6c\x61\x79\ +\x20\x66\x61\x73\x74\x65\x72\x2c\x20\x62\x75\x74\x20\x6d\x61\x6b\ +\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\x6c\x65\x73\x73\x20\x65\x61\ +\x73\x69\x6c\x79\x20\x65\x64\x69\x74\x61\x62\x6c\x65\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x92\x00\x4a\x00\x65\x01\x5b\x00\x6c\x00\x69\x00\ +\x20\x00\x7a\x00\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\ +\x6f\x00\x6e\x00\x6f\x00\x2c\x00\x20\x00\x7a\x00\x6f\x00\x73\x00\ +\x74\x00\x61\x00\x6e\x01\x05\x00\x20\x00\x72\x00\xf3\x00\x77\x00\ +\x6e\x00\x69\x00\x65\x01\x7c\x00\x20\x00\x7a\x00\x61\x00\x69\x00\ +\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x6f\x00\x77\x00\x61\x00\ +\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\ +\x74\x00\x79\x00\x20\x00\x7a\x00\x20\x00\x6f\x00\x62\x00\x73\x00\ +\x7a\x00\x61\x00\x72\x00\x75\x00\x20\x00\x70\x00\x61\x00\x70\x00\ +\x69\x00\x65\x00\x72\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x3c\x69\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x70\x61\x70\x65\x72\x20\x73\x70\x61\x63\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\ +\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x86\x00\x6a\x00\x65\x01\x5b\x00\x6c\x00\x69\x00\ +\x20\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x6f\x00\x64\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\ +\x6f\x00\x6e\x00\x65\x00\x2c\x00\x20\x00\x74\x00\x65\x00\x6b\x00\ +\x73\x00\x74\x00\x79\x00\x20\x00\x2f\x00\x20\x00\x6d\x00\x74\x00\ +\x65\x00\x78\x00\x74\x00\x73\x00\x20\x00\x6e\x00\x69\x00\x65\x00\ +\x20\x00\x7a\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x6e\x01\x05\x00\ +\x20\x00\x7a\x00\x61\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x34\x69\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\ +\x75\x6e\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x65\x78\x74\x73\ +\x2f\x6d\x74\x65\x78\x74\x73\x20\x77\x6f\x6e\x27\x74\x20\x62\x65\ +\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x04\x00\x70\x00\x78\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x70\ +\x78\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x53\x00\x48\x00\x49\x00\ +\x46\x00\x54\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x73\x68\x69\ +\x66\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\x00\x64\x00\x6f\x00\x6d\ +\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x79\x00\x20\x00\x6b\x00\x6f\ +\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x64\x00\x6c\x00\x61\x00\x20\ +\x00\x6e\x00\x6f\x00\x77\x00\x79\x00\x63\x00\x68\x00\x20\x00\x6f\ +\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\xf3\x00\x77\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x21\x74\x68\x65\x20\x64\x65\x66\x61\ +\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\ +\x77\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x4e\x00\x44\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\ +\x79\x00\x20\x00\x6b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\ +\x64\x00\x6c\x00\x61\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x79\x00\ +\x63\x00\x69\x01\x05\x00\x67\x00\x61\x00\x6e\x00\x69\x00\x61\x00\ +\x20\x00\x73\x00\x79\x00\x6d\x00\x62\x00\x6f\x00\x6c\x00\x69\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x22\x74\x68\x65\x20\x64\x65\x66\ +\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\ +\x6e\x61\x70\x20\x73\x79\x6d\x62\x6f\x6c\x73\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x58\x00\x44\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\ +\x6e\x00\x61\x00\x20\x00\x73\x00\x7a\x00\x65\x00\x72\x00\x6f\x00\ +\x6b\x00\x6f\x01\x5b\x01\x07\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\ +\x69\x00\x69\x00\x20\x00\x64\x00\x6c\x00\x61\x00\x20\x00\x6e\x00\ +\x6f\x00\x77\x00\x79\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\ +\x69\x00\x65\x00\x6b\x00\x74\x00\xf3\x00\x77\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x25\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\ +\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\x66\x6f\x72\x20\x6e\ +\x65\x77\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0e\x00\x5a\x00\x61\x00\x6d\x00\x6b\x00\x6e\x00\x69\x00\x6a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x26\x43\x6c\x6f\x73\x65\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\ +\x00\x5a\x00\x61\x00\x6d\x00\x6b\x00\x6e\x00\x69\x01\x19\x00\x74\ +\x00\x6f\x00\x20\x00\x73\x00\x7a\x00\x6b\x00\x69\x00\x65\x00\x6c\ +\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\x43\ +\x6f\x6e\x74\x69\x6e\x75\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0c\x00\x4b\x00\x6f\x00\x70\x00\x69\x00\ +\x75\x00\x6a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x43\x6f\ +\x70\x79\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0e\x00\x52\x00\x79\x00\x73\x00\x75\x00\x6e\x00\x65\x00\x6b\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x26\x44\x72\x61\x66\x74\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\ +\x00\x26\x00\x5a\x00\x61\x00\x6b\x00\x6f\x01\x44\x00\x63\x00\x7a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x26\x46\x69\x6e\x69\x73\ +\x68\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x2c\x00\x26\x00\x4f\x00\x43\x00\x43\x00\x2d\x00\x73\x00\x74\x00\ +\x79\x00\x6c\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x65\x00\x73\x00\ +\x75\x00\x6e\x00\x69\x01\x19\x00\x63\x00\x69\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x11\x26\x4f\x43\x43\x2d\x73\x74\x79\x6c\ +\x65\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x14\x00\x26\x00\x20\x00\x57\x00\x7a\ +\x00\x67\x00\x6c\x01\x19\x00\x64\x00\x6e\x00\x79\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x26\x52\x65\x6c\x61\x74\x69\x76\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\ +\x43\x00\x6f\x00\x66\x00\x6e\x00\x69\x00\x6a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x05\x26\x55\x6e\x64\x6f\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x26\x00\x57\x00\x79\ +\x00\x6d\x00\x61\x01\x7c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x26\x57\x69\x70\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x3a\x00\x41\x00\x6b\x00\x74\x00\x79\x00\x77\x00\ +\x6e\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x65\x00\x63\x00\ +\x65\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x6b\x00\x72\x00\x65\x01\ +\x5b\x00\x6c\x00\x61\x00\x72\x00\x73\x00\x6b\x00\x69\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x14\x41\x63\x74\x69\x76\x65\x20\ +\x44\x72\x61\x66\x74\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6c\x00\x41\x00\ +\x6b\x00\x74\x00\x79\x00\x77\x00\x6e\x00\x79\x00\x20\x00\x6f\x00\ +\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x6d\x00\x75\x00\ +\x73\x00\x69\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x69\x00\x61\x00\ +\x64\x00\x61\x01\x07\x00\x20\x00\x77\x00\x69\x01\x19\x00\x63\x00\ +\x65\x00\x6a\x00\x20\x00\x6e\x00\x69\x01\x7c\x00\x20\x00\x32\x00\ +\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x79\x00\x2f\x00\ +\x77\x01\x19\x00\x7a\x01\x42\x00\x79\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x33\x41\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x6d\x75\x73\x74\x20\x68\x61\x76\x65\x20\x6d\x6f\x72\x65\x20\ +\x74\x68\x61\x6e\x20\x74\x77\x6f\x20\x70\x6f\x69\x6e\x74\x73\x2f\ +\x6e\x6f\x64\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x42\x00\x44\x00\x6f\x00\x64\x00\x61\x00\x6a\ +\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x79\x00\x20\ +\x00\x64\x00\x6f\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x79\x00\x77\ +\x00\x6e\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x69\ +\x00\x65\x00\x6b\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x20\x41\x64\x64\x20\x70\x6f\x69\x6e\x74\x73\x20\x74\x6f\x20\ +\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\ +\x63\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x10\x00\x43\x00\x65\x00\x6c\x00\x6f\x00\x77\x00\x6e\x00\x69\ +\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x41\x70\x65\x72\ +\x74\x75\x72\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x1c\x00\x4b\x01\x05\x00\x74\x00\x20\x00\x73\x00\x7a\ +\x00\x63\x00\x7a\x00\x65\x00\x6c\x00\x69\x00\x6e\x00\x79\x00\x3a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x41\x70\x65\x72\x74\x75\ +\x72\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x00\x5a\x00\x61\x00\x73\ +\x00\x74\x00\x6f\x00\x73\x00\x75\x00\x6a\x00\x20\x00\x64\x00\x6f\ +\x00\x20\x00\x77\x00\x79\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x79\ +\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\ +\x00\x74\x00\xf3\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\ +\x41\x70\x70\x6c\x79\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x06\x01\x41\x00\x75\x00\x6b\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\x72\x63\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x42\x00\x53\ +\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x07\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x4e\x00\x69\x00\ +\x65\x00\x20\x00\x6d\x00\x6f\x01\x7c\x00\x6e\x00\x61\x00\x20\x00\ +\x6f\x00\x64\x00\x73\x00\x75\x00\x6e\x01\x05\x01\x07\x00\x20\x00\ +\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x20\x00\ +\x74\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x74\x00\x79\x00\x70\x00\ +\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x43\x61\x6e\x6e\x6f\ +\x74\x20\x6f\x66\x66\x73\x65\x74\x20\x74\x68\x69\x73\x20\x6f\x62\ +\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x01\x5a\x00\x72\x00\x6f\ +\x00\x64\x00\x65\x00\x6b\x00\x20\x00\x58\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x08\x43\x65\x6e\x74\x65\x72\x20\x58\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x5a\x00\x6d\ +\x00\x69\x00\x61\x00\x6e\x00\x61\x00\x20\x00\x53\x00\x74\x00\x79\ +\x00\x6c\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x68\ +\x61\x6e\x67\x65\x20\x53\x74\x79\x6c\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\xbe\x00\x53\x00\x70\x00\x72\ +\x00\x61\x00\x77\x00\x64\x01\x7a\x00\x20\x00\x74\x00\x6f\x00\x2c\ +\x00\x20\x00\x63\x00\x7a\x00\x79\x00\x20\x00\x6f\x00\x62\x00\x69\ +\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x70\x00\x6f\x00\x77\x00\x69\ +\x00\x6e\x00\x69\x00\x65\x00\x6e\x00\x20\x00\x62\x00\x79\x01\x07\ +\x00\x20\x00\x6a\x00\x61\x00\x6b\x00\x6f\x00\x20\x00\x62\x00\x72\ +\x00\x79\x01\x42\x00\x61\x00\x2c\x00\x20\x00\x77\x00\x20\x00\x70\ +\x00\x72\x00\x7a\x00\x65\x00\x63\x00\x69\x00\x77\x00\x6e\x00\x79\ +\x00\x6d\x00\x20\x00\x72\x00\x61\x00\x7a\x00\x69\x00\x65\x00\x20\ +\x00\x70\x00\x6f\x00\x6a\x00\x61\x00\x77\x00\x69\x00\x20\x00\x73\ +\x00\x69\x01\x19\x00\x20\x00\x6a\x00\x61\x00\x6b\x00\x6f\x00\x20\ +\x00\x73\x00\x7a\x00\x6b\x00\x69\x00\x65\x00\x6c\x00\x65\x00\x74\ +\x00\x20\x00\x28\x00\x69\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x5b\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\ +\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x73\x68\x6f\x75\x6c\ +\x64\x20\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x66\x69\x6c\x6c\ +\x65\x64\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x69\x74\ +\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\ +\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\x28\x69\x29\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x4f\x00\ +\x6b\x00\x72\x01\x05\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x06\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x2a\x00\x4e\x00\x61\x00\x72\x00\x7a\x01\ +\x19\x00\x64\x00\x7a\x00\x69\x00\x61\x00\x20\x00\x4b\x00\x6f\x00\ +\x6e\x00\x74\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x6f\x00\x77\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x74\x65\ +\x78\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x8a\x00\x57\x00\x73\x00\x70\x00\xf3\ +\x01\x42\x00\x72\x00\x7a\x01\x19\x00\x64\x00\x6e\x00\x65\x00\x20\ +\x00\x77\x00\x20\x00\x73\x00\x74\x00\x6f\x00\x73\x00\x75\x00\x6e\ +\x00\x6b\x00\x75\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x6f\x00\x73\ +\x00\x74\x00\x61\x00\x74\x00\x6e\x00\x69\x00\x65\x00\x67\x00\x6f\ +\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x75\x00\x20\ +\x00\x6c\x00\x75\x00\x62\x00\x20\x00\x62\x00\x65\x00\x7a\x00\x77\ +\x00\x7a\x00\x67\x00\x6c\x01\x19\x00\x64\x00\x6e\x00\x65\x00\x6a\ +\x00\x20\x00\x28\x00\x53\x00\x50\x00\x41\x00\x43\x00\x4a\x00\x41\ +\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x36\x43\x6f\x6f\x72\ +\x64\x69\x6e\x61\x74\x65\x73\x20\x72\x65\x6c\x61\x74\x69\x76\x65\ +\x20\x74\x6f\x20\x6c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x6f\ +\x72\x20\x61\x62\x73\x6f\x6c\x75\x74\x65\x20\x28\x53\x50\x41\x43\ +\x45\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0c\x00\x4b\x00\x6f\x00\x70\x00\x69\x00\x75\x00\x6a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x43\x6f\x70\x79\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x4e\x00\x69\ +\x00\x65\x00\x20\x00\x6d\x00\x6f\x01\x7c\x00\x6e\x00\x61\x00\x20\ +\x00\x75\x00\x61\x00\x6b\x00\x74\x00\x75\x00\x61\x00\x6c\x00\x6e\ +\x00\x69\x01\x07\x00\x20\x00\x74\x00\x79\x00\x63\x00\x68\x00\x20\ +\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\xf3\x00\x77\ +\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x43\x6f\x75\x6c\ +\x64\x6e\x27\x74\x20\x75\x70\x67\x72\x61\x64\x65\x20\x74\x68\x65\ +\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x55\x00\x74\x00\ +\x77\x00\xf3\x00\x72\x00\x7a\x00\x20\x01\x41\x00\x75\x00\x6b\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x72\x65\x61\x74\x65\x20\ +\x41\x72\x63\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x1e\x00\x55\x00\x74\x00\x77\x00\xf3\x00\x72\x00\x7a\x00\ +\x20\x00\x42\x00\x2d\x00\x53\x00\x70\x00\x6c\x00\x61\x00\x6a\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x43\x72\x65\x61\x74\ +\x65\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x55\x00\x74\x00\x77\x00\ +\xf3\x00\x72\x00\x7a\x00\x20\x00\x4f\x00\x6b\x00\x72\x01\x05\x00\ +\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x72\x65\x61\x74\ +\x65\x20\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x55\x00\x74\x00\x77\x00\xf3\ +\x00\x72\x00\x7a\x00\x20\x00\x53\x00\x7a\x00\x6b\x00\x69\x00\x65\ +\x00\x6c\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x43\x72\x65\x61\x74\x65\x20\x44\x57\x69\x72\x65\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x55\x00\x74\ +\x00\x77\x00\xf3\x00\x72\x00\x7a\x00\x20\x00\x57\x00\x79\x00\x6d\ +\x00\x69\x00\x61\x00\x72\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\ +\x74\x65\x20\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x55\x00\x74\ +\x00\x77\x00\xf3\x00\x72\x00\x7a\x00\x20\x00\x57\x00\x69\x00\x65\ +\x00\x6c\x00\x6f\x00\x6b\x01\x05\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0e\x43\x72\x65\x61\x74\x65\x20\x50\x6f\x6c\x79\x67\ +\x6f\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x20\x00\x55\x00\x74\x00\x77\x00\xf3\x00\x72\x00\x7a\x00\x20\ +\x00\x50\x00\x72\x00\x6f\x00\x73\x00\x74\x00\x6f\x00\x6b\x01\x05\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\ +\x74\x65\x20\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x55\x00\x74\ +\x00\x77\x00\xf3\x00\x72\x00\x7a\x00\x20\x00\x54\x00\x65\x00\x6b\ +\x00\x73\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\ +\x65\x61\x74\x65\x20\x54\x65\x78\x74\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x44\x00\x57\x00\x69\x00\ +\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x57\x69\ +\x72\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x26\x00\x5a\x00\x61\x00\x6d\x00\x6b\x00\x6e\x00\x69\x01\x19\ +\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x7a\x00\x6b\x00\x69\x00\x65\ +\x00\x6c\x00\x65\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x16\x44\x57\x69\x72\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\ +\x20\x63\x6c\x6f\x73\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x57\x00\x79\x00\x6d\x00\x69\ +\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x44\x69\ +\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x12\x00\x4f\x00\x64\x00\x6c\x00\x65\x00\ +\x67\x01\x42\x00\x6f\x01\x5b\x01\x07\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x52\x00\x4e\x00\x69\x00\ +\x65\x00\x20\x00\x72\x00\x7a\x00\x75\x00\x74\x00\x75\x00\x6a\x00\ +\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\xf3\x00\x77\x00\ +\x20\x00\x6e\x00\x61\x00\x20\x00\x70\x01\x42\x00\x61\x00\x73\x00\ +\x7a\x00\x63\x00\x7a\x00\x79\x00\x7a\x00\x6e\x01\x19\x00\x20\x00\ +\x72\x00\x79\x00\x73\x00\x75\x00\x6e\x00\x6b\x00\x75\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x28\x44\x6f\x20\x6e\x6f\x74\x20\x70\x72\ +\x6f\x6a\x65\x63\x74\x20\x70\x6f\x69\x6e\x74\x73\x20\x74\x6f\x20\ +\x61\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x00\ +\x4e\x00\x61\x00\x72\x00\x7a\x01\x19\x00\x64\x00\x7a\x00\x69\x00\ +\x61\x00\x20\x00\x74\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\x65\x00\ +\x6e\x00\x69\x00\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x14\x44\x72\x61\x66\x74\x20\x63\x72\x65\x61\x74\x69\x6f\x6e\x20\ +\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x3c\x00\x4e\x00\x61\x00\x72\x00\x7a\x01\x19\x00\ +\x64\x00\x7a\x00\x69\x00\x61\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\ +\x79\x00\x66\x00\x69\x00\x6b\x00\x61\x00\x63\x00\x6a\x00\x69\x00\ +\x20\x00\x70\x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x44\x72\x61\x66\x74\ +\x20\x6d\x6f\x64\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x74\x6f\ +\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x3a\x00\x4b\x00\x72\x00\x61\x00\x77\x01\x19\x00\x64\x00\ +\x7a\x00\x69\x00\x65\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x20\x00\ +\x70\x00\x72\x00\x7a\x00\x65\x00\x63\x00\x69\x00\x6e\x00\x61\x00\ +\x6a\x01\x05\x00\x20\x00\x73\x00\x69\x01\x19\x00\x21\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x45\x64\x67\x65\x73\x20\x64\x6f\x6e\ +\x27\x74\x20\x69\x6e\x74\x65\x72\x73\x65\x63\x74\x21\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x45\ +\x00\x64\x00\x79\x00\x74\x00\x75\x00\x6a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x16\x00\x57\x00\x26\x00\x79\x00\x70\ +\x00\x65\x01\x42\x00\x6e\x00\x69\x00\x6f\x00\x6e\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x07\x46\x26\x69\x6c\x6c\x65\x64\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\ +\x4b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x6f\x00\ +\x77\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x63\x00\x68\x00\x6e\x00\ +\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x46\x61\x63\x65\x20\ +\x43\x6f\x6c\x6f\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x46\x00\x5a\x00\x61\x00\x6b\x00\x61\x01\x44\x00\ +\x63\x00\x7a\x00\x61\x00\x20\x00\x69\x00\x20\x00\x7a\x00\x61\x00\ +\x6d\x00\x79\x00\x6b\x00\x61\x00\x20\x00\x62\x00\x69\x00\x65\x01\ +\x7c\x01\x05\x00\x63\x01\x05\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\ +\x69\x01\x19\x00\x20\x00\x28\x00\x43\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x28\x46\x69\x6e\x69\x73\x68\x65\x73\x20\x61\x6e\ +\x64\x20\x63\x6c\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x63\x75\x72\ +\x72\x65\x6e\x74\x20\x6c\x69\x6e\x65\x20\x28\x43\x29\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5e\x00\x4b\x00\ +\x6f\x01\x44\x00\x63\x00\x7a\x00\x79\x00\x20\x00\x61\x00\x6b\x00\ +\x74\x00\x75\x00\x61\x00\x6c\x00\x6e\x00\x79\x00\x20\x00\x72\x00\ +\x79\x00\x73\x00\x75\x00\x6e\x00\x65\x00\x6b\x00\x20\x00\x6c\x00\ +\x75\x00\x62\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x72\x00\x61\x00\ +\x63\x00\x6a\x01\x19\x00\x20\x00\x65\x00\x64\x00\x79\x00\x63\x00\ +\x6a\x00\x69\x00\x20\x00\x28\x00\x46\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x35\x46\x69\x6e\x69\x73\x68\x65\x73\x20\x74\x68\ +\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x64\x72\x61\x77\x69\x6e\ +\x67\x20\x6f\x72\x20\x65\x64\x69\x74\x69\x6e\x67\x20\x6f\x70\x65\ +\x72\x61\x74\x69\x6f\x6e\x20\x28\x46\x29\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x52\x00\x6f\x00\x7a\ +\x00\x6d\x00\x69\x00\x61\x00\x72\x00\x20\x00\x43\x00\x7a\x00\x63\ +\x00\x69\x00\x6f\x00\x6e\x00\x6b\x00\x69\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x46\x6f\x6e\x74\x20\x53\x69\x7a\x65\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x66\x00\x5a\x00\ +\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\ +\x6f\x00\x20\x00\x6a\x00\x65\x00\x64\x00\x6e\x01\x05\x00\x20\x00\ +\x6f\x00\x6b\x00\x72\x01\x05\x00\x67\x01\x42\x01\x05\x00\x20\x00\ +\x6b\x00\x72\x00\x61\x00\x77\x01\x19\x00\x64\x01\x7a\x00\x3a\x00\ +\x20\x00\x74\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\x65\x00\x6e\x00\ +\x69\x00\x65\x00\x20\x00\x6f\x00\x6b\x00\x72\x01\x19\x00\x67\x00\ +\x75\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x46\x6f\x75\ +\x6e\x64\x20\x31\x20\x63\x69\x72\x63\x75\x6c\x61\x72\x20\x65\x64\ +\x67\x65\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x63\x69\x72\ +\x63\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x6c\x00\x5a\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\ +\x00\x69\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\x31\x00\x20\x00\x7a\ +\x00\x61\x00\x6d\x00\x6b\x00\x6e\x00\x69\x01\x19\x00\x74\x00\x79\ +\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x20\ +\x00\x53\x00\x7a\x00\x6b\x00\x69\x00\x63\x00\x3a\x00\x20\x00\x74\ +\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\x65\x00\x6e\x00\x69\x00\x65\ +\x00\x20\x00\x66\x00\x61\x00\x73\x00\x65\x00\x74\x00\x6b\x00\x69\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x46\x6f\x75\x6e\x64\x20\ +\x31\x20\x63\x6c\x6f\x73\x65\x64\x20\x73\x6b\x65\x74\x63\x68\x20\ +\x6f\x62\x6a\x65\x63\x74\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\ +\x20\x66\x61\x63\x65\x20\x66\x72\x6f\x6d\x20\x69\x74\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x54\x00\x5a\ +\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\ +\x00\x6f\x00\x20\x00\x31\x00\x20\x00\x66\x00\x61\x00\x73\x00\x65\ +\x00\x74\x00\x6b\x01\x19\x00\x3a\x00\x20\x00\x65\x00\x6b\x00\x73\ +\x00\x74\x00\x72\x00\x61\x00\x6b\x00\x63\x00\x6a\x00\x61\x00\x20\ +\x00\x73\x00\x7a\x00\x6b\x00\x69\x00\x65\x00\x6c\x00\x65\x00\x74\ +\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x46\x6f\x75\x6e\ +\x64\x20\x31\x20\x66\x61\x63\x65\x3a\x20\x65\x78\x74\x72\x61\x63\ +\x74\x69\x6e\x67\x20\x69\x74\x73\x20\x77\x69\x72\x65\x73\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x62\x00\ +\x5a\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\ +\x6e\x00\x6f\x00\x20\x00\x31\x00\x20\x00\x6f\x00\x62\x00\x69\x00\ +\x65\x00\x6b\x00\x74\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x70\x00\ +\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x79\x00\ +\x63\x00\x7a\x00\x6e\x00\x79\x00\x3a\x00\x20\x00\x64\x00\x72\x00\ +\x61\x00\x66\x00\x74\x00\x79\x00\x66\x00\x79\x00\x69\x00\x6e\x00\ +\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x46\x6f\x75\x6e\x64\ +\x20\x31\x20\x6e\x6f\x6e\x2d\x70\x61\x72\x61\x6d\x65\x74\x72\x69\ +\x63\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x64\x72\x61\x66\x74\ +\x69\x66\x79\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x64\x00\x5a\x00\x6e\x00\x61\ +\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x6f\x00\x20\ +\x00\x6a\x00\x65\x00\x64\x00\x6e\x01\x05\x00\x20\x00\x6f\x00\x74\ +\x00\x77\x00\x61\x00\x72\x00\x74\x01\x05\x00\x20\x00\x6b\x00\x72\ +\x00\x61\x00\x77\x01\x19\x00\x64\x01\x7a\x00\x3a\x00\x20\x00\x74\ +\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\x65\x00\x6e\x00\x69\x00\x65\ +\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x69\x00\x20\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x21\x46\x6f\x75\x6e\x64\x20\x31\x20\ +\x6f\x70\x65\x6e\x20\x65\x64\x67\x65\x3a\x20\x6d\x61\x6b\x69\x6e\ +\x67\x20\x61\x20\x6c\x69\x6e\x65\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x50\x00\x5a\x00\x6e\x00\x61\x00\ +\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\ +\x31\x00\x20\x00\x6f\x00\x74\x00\x77\x00\x61\x00\x72\x00\x74\x00\ +\x79\x00\x20\x00\x73\x00\x7a\x00\x6b\x00\x69\x00\x65\x00\x6c\x00\ +\x65\x00\x74\x00\x3a\x00\x20\x00\x7a\x00\x61\x00\x6d\x00\x79\x00\ +\x6b\x00\x61\x00\x6e\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1e\x46\x6f\x75\x6e\x64\x20\x31\x20\x6f\x70\x65\x6e\x20\ +\x77\x69\x72\x65\x3a\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x6e\x00\x5a\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\ +\x6f\x00\x6e\x00\x6f\x00\x20\x00\x31\x00\x20\x00\x6f\x00\x62\x00\ +\x69\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x70\x00\x61\x00\x72\x00\ +\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x79\x00\x63\x00\x7a\x00\ +\x6e\x00\x79\x00\x3a\x00\x20\x00\x6b\x00\x61\x00\x73\x00\x6f\x00\ +\x77\x00\x61\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x7a\x00\x61\x00\ +\x6c\x00\x65\x01\x7c\x00\x6e\x00\x6f\x01\x5b\x00\x63\x00\x69\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x35\x46\x6f\x75\x6e\x64\x20\x31\ +\x20\x70\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\ +\x63\x74\x3a\x20\x62\x72\x65\x61\x6b\x69\x6e\x67\x20\x69\x74\x73\ +\x20\x64\x65\x70\x65\x6e\x64\x65\x6e\x63\x69\x65\x73\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5a\x00\x5a\ +\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\ +\x00\x6f\x00\x20\x00\x31\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\ +\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x62\x00\x6c\ +\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\ +\x00\x3a\x00\x20\x00\x75\x00\x74\x00\x72\x00\x77\x00\x61\x00\x6c\ +\x00\x20\x00\x67\x00\x6f\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x2d\x46\x6f\x75\x6e\x64\x20\x31\x20\x73\x6f\x6c\x69\x64\x69\ +\x66\x69\x63\x61\x62\x6c\x65\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\ +\x73\x6f\x6c\x69\x64\x69\x66\x79\x69\x6e\x67\x20\x69\x74\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4e\x00\ +\x5a\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\ +\x6e\x00\x6f\x00\x20\x00\x32\x00\x20\x00\x6f\x00\x62\x00\x69\x00\ +\x65\x00\x6b\x00\x74\x00\x79\x00\x3a\x00\x20\x00\x7a\x00\x6f\x00\ +\x73\x00\x74\x00\x61\x00\x6e\x01\x05\x00\x20\x00\x70\x00\x6f\x01\ +\x42\x01\x05\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1d\x46\x6f\x75\x6e\x64\x20\x32\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\ +\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x42\x00\x5a\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\ +\x00\x69\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\x32\x00\x20\x00\x6f\ +\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x3a\x00\x20\ +\x00\x6f\x00\x64\x00\x65\x00\x6a\x00\x6d\x00\x6f\x00\x77\x00\x61\ +\x00\x6e\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\ +\x46\x6f\x75\x6e\x64\x20\x32\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\ +\x20\x73\x75\x62\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x74\x68\x65\ +\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x62\x00\x5a\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\x00\x69\ +\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\x7a\x00\x61\x00\x6d\x00\x6b\ +\x00\x6e\x00\x69\x01\x19\x00\x74\x00\x79\x00\x20\x01\x5b\x00\x6c\ +\x00\x61\x00\x64\x00\x3a\x00\x20\x00\x74\x00\x77\x00\x6f\x00\x72\ +\x00\x7a\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x70\x01\x42\ +\x00\x61\x00\x73\x00\x7a\x00\x63\x00\x7a\x00\x79\x00\x7a\x00\x6e\ +\x00\x79\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x46\x6f\ +\x75\x6e\x64\x20\x61\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\ +\x65\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x66\x61\x63\x65\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x74\x00\x5a\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\ +\x6f\x00\x6e\x00\x6f\x00\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\ +\x79\x00\x3a\x00\x20\x00\x7a\x00\x61\x00\x6d\x00\x79\x00\x6b\x00\ +\x61\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x6b\x00\x61\x01\x7c\x00\ +\x64\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x69\x00\ +\x65\x00\x6b\x00\x74\x00\x75\x00\x20\x00\x77\x00\x65\x00\x77\x00\ +\x6e\x01\x05\x00\x74\x00\x72\x00\x7a\x00\x20\x00\x67\x00\x72\x00\ +\x75\x00\x70\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x46\ +\x6f\x75\x6e\x64\x20\x67\x72\x6f\x75\x70\x73\x3a\x20\x63\x6c\x6f\ +\x73\x69\x6e\x67\x20\x65\x61\x63\x68\x20\x6f\x70\x65\x6e\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x69\x6e\x73\x69\x64\x65\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5e\x00\x5a\x00\ +\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\ +\x6f\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\ +\x79\x00\x20\x00\x7a\x00\x61\x00\x77\x00\x69\x00\x65\x00\x72\x00\ +\x61\x00\x6a\x01\x05\x00\x63\x00\x65\x00\x20\x00\x6b\x00\x72\x00\ +\x7a\x00\x79\x00\x77\x00\x65\x00\x3a\x00\x20\x01\x42\x01\x05\x00\ +\x63\x00\x7a\x00\x65\x00\x6e\x00\x69\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2d\x46\x6f\x75\x6e\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x63\x75\ +\x72\x76\x65\x73\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\ +\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x64\x00\x5a\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\x00\x69\ +\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\x77\x00\x79\x01\x42\x01\x05\ +\x00\x63\x00\x7a\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x73\x00\x7a\ +\x00\x6b\x00\x69\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x3a\x00\x20\ +\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x72\x00\x61\x00\x6b\x00\x63\ +\x00\x6a\x00\x61\x00\x20\x00\x6b\x00\x72\x00\x61\x00\x77\x01\x19\ +\x00\x64\x00\x7a\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\ +\x46\x6f\x75\x6e\x64\x20\x6f\x6e\x6c\x79\x20\x77\x69\x72\x65\x73\ +\x3a\x20\x65\x78\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x74\x68\x65\ +\x69\x72\x20\x65\x64\x67\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x5c\x00\x5a\x00\x6e\x00\x61\x00\ +\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\ +\x6b\x00\x69\x00\x6c\x00\x6b\x00\x61\x00\x20\x00\x6b\x00\x72\x00\ +\x61\x00\x77\x01\x19\x00\x64\x00\x7a\x00\x69\x00\x3a\x00\x20\x01\ +\x42\x01\x05\x00\x63\x00\x7a\x00\x65\x00\x6e\x00\x69\x00\x65\x00\ +\x20\x00\x77\x00\x20\x00\x73\x00\x7a\x00\x6b\x00\x69\x00\x65\x00\ +\x6c\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x46\ +\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x65\x64\x67\ +\x65\x73\x3a\x20\x77\x69\x72\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4a\ +\x00\x5a\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\ +\x00\x6e\x00\x6f\x00\x20\x00\x6b\x00\x69\x00\x6c\x00\x6b\x00\x20\ +\x00\x66\x00\x61\x00\x73\x00\x65\x00\x74\x00\x65\x00\x6b\x00\x3a\ +\x00\x20\x00\x72\x00\x6f\x00\x7a\x00\x64\x00\x7a\x00\x69\x00\x65\ +\x00\x6c\x00\x61\x00\x6e\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x24\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\ +\x6c\x20\x66\x61\x63\x65\x73\x3a\x20\x73\x70\x6c\x69\x74\x74\x69\ +\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x7c\x00\x5a\x00\x6e\x00\x61\x00\x6c\ +\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\x6b\ +\x00\x69\x00\x6c\x00\x6b\x00\x61\x00\x20\x00\x6e\x00\x69\x00\x65\ +\x00\x70\x00\x6f\x01\x42\x01\x05\x00\x63\x00\x7a\x00\x6f\x00\x6e\ +\x00\x79\x00\x63\x00\x68\x00\x20\x00\x6b\x00\x72\x00\x61\x00\x77\ +\x01\x19\x00\x64\x00\x7a\x00\x69\x00\x3a\x00\x20\x00\x54\x00\x77\ +\x00\x6f\x00\x72\x00\x7a\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x20\ +\x00\x7a\x01\x42\x00\x6f\x01\x7c\x00\x6f\x00\x6e\x00\x79\x00\x63\ +\x00\x68\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x46\x6f\ +\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6e\x6f\x6e\x2d\ +\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64\x20\x65\x64\x67\x65\x73\x3a\ +\x20\x6d\x61\x6b\x69\x6e\x67\x20\x63\x6f\x6d\x70\x6f\x75\x6e\x64\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x7c\x00\x5a\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\ +\x6f\x00\x6e\x00\x6f\x00\x20\x00\x77\x00\x69\x00\x65\x00\x6c\x00\ +\x65\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x75\x00\x6c\x00\x65\x00\ +\x63\x00\x7a\x00\x61\x00\x6c\x00\x6e\x00\x79\x00\x63\x00\x68\x00\ +\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\xf3\x00\ +\x77\x00\x3a\x00\x20\x00\x54\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\ +\x65\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x7a\x01\x42\x00\x6f\x01\ +\x7c\x00\x6f\x00\x6e\x00\x79\x00\x63\x00\x68\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x35\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\ +\x65\x72\x61\x6c\x20\x6e\x6f\x6e\x2d\x74\x72\x65\x61\x74\x61\x62\ +\x6c\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x6d\x61\x6b\x69\ +\x6e\x67\x20\x63\x6f\x6d\x70\x6f\x75\x6e\x64\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x80\x00\x5a\x00\x6e\ +\x00\x61\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x6f\ +\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x79\ +\x00\x20\x00\x6c\x00\x75\x00\x62\x00\x20\x00\x66\x00\x61\x00\x73\ +\x00\x65\x00\x74\x00\x6b\x00\x69\x00\x3a\x00\x20\x00\x74\x00\x77\ +\x00\x6f\x00\x72\x00\x7a\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x20\ +\x00\x66\x00\x61\x00\x73\x00\x65\x00\x74\x00\x6b\x00\x69\x00\x20\ +\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\ +\x00\x79\x00\x63\x00\x7a\x00\x6e\x00\x65\x00\x6a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x39\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\ +\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x6f\x72\x20\x66\ +\x61\x63\x65\x73\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x70\ +\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\x66\x61\x63\x65\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x00\ +\x5a\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\ +\x6e\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\ +\x74\x00\x79\x00\x3a\x00\x20\x01\x42\x01\x05\x00\x63\x00\x7a\x00\ +\x65\x00\x6e\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x23\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\ +\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x72\x00\x5a\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\ +\x00\x69\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\x6b\x00\x69\x00\x6c\ +\x00\x6b\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\ +\x00\x74\x00\xf3\x00\x77\x00\x3a\x00\x20\x00\x6f\x00\x64\x00\x65\ +\x00\x6a\x00\x6d\x00\x75\x00\x6a\x01\x19\x00\x20\x00\x6f\x00\x64\ +\x00\x20\x00\x70\x00\x69\x00\x65\x00\x72\x00\x77\x00\x73\x00\x7a\ +\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\ +\x00\x6b\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3b\ +\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x3a\x20\x73\x75\x62\x74\x72\x61\x63\x74\x69\ +\x6e\x67\x20\x74\x68\x65\x6d\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\ +\x20\x66\x69\x72\x73\x74\x20\x6f\x6e\x65\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x98\x00\x4a\x00\x65\x01\ +\x5b\x00\x6c\x00\x69\x00\x20\x00\x7a\x00\x61\x00\x7a\x00\x6e\x00\ +\x61\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x65\x00\x2c\x00\x20\x00\ +\x62\x01\x19\x00\x64\x00\x7a\x00\x69\x00\x65\x00\x20\x00\x77\x00\ +\x79\x00\x6b\x00\x6f\x00\x6e\x00\x79\x00\x77\x00\x61\x00\x6e\x00\ +\x65\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x65\x00\x73\x00\x75\x00\ +\x6e\x00\x69\x01\x19\x00\x63\x00\x69\x00\x65\x00\x20\x00\x77\x00\ +\x20\x00\x73\x00\x74\x00\x79\x00\x6c\x00\x75\x00\x20\x00\x4f\x00\ +\x43\x00\x43\x00\x20\x00\x7a\x00\x61\x00\x6d\x00\x69\x00\x61\x00\ +\x73\x00\x74\x00\x20\x00\x63\x00\x6c\x00\x61\x00\x73\x00\x73\x00\ +\x69\x00\x63\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x49\x66\x20\ +\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x6e\x20\x4f\x43\x43\x2d\ +\x73\x74\x79\x6c\x65\x20\x6f\x66\x66\x73\x65\x74\x20\x77\x69\x6c\ +\x6c\x20\x62\x65\x20\x70\x65\x72\x66\x6f\x72\x6d\x65\x64\x20\x69\ +\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x63\x6c\ +\x61\x73\x73\x69\x63\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\xe6\x00\x4a\x00\x65\ +\x01\x7c\x00\x65\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\x70\x00\x63\ +\x00\x6a\x00\x61\x00\x20\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x20\ +\x00\x7a\x00\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\x6f\ +\x00\x6e\x00\x61\x00\x2c\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x65\ +\x00\x63\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x6e\x00\x69\ +\x00\x65\x00\x20\x00\x7a\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x6e\ +\x00\x69\x00\x65\x00\x20\x00\x7a\x00\x61\x00\x6b\x00\x6f\x01\x44\ +\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x64\x00\x6f\ +\x00\x20\x00\x6d\x00\x6f\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x75\ +\x00\x20\x00\x6e\x00\x61\x00\x63\x00\x69\x01\x5b\x00\x6e\x00\x69\ +\x01\x19\x00\x63\x00\x69\x00\x61\x00\x20\x00\x70\x00\x72\x00\x7a\ +\x00\x79\x00\x63\x00\x69\x00\x73\x00\x6b\x00\x75\x00\x20\x00\x70\ +\x00\x6f\x00\x6c\x00\x65\x00\x63\x00\x65\x00\x6e\x00\x69\x00\x61\ +\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x6f\x00\x77\x00\x6e\x00\x69\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4c\x49\x66\x20\x63\ +\x68\x65\x63\x6b\x65\x64\x2c\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\ +\x77\x69\x6c\x6c\x20\x6e\x6f\x74\x20\x66\x69\x6e\x69\x73\x68\x20\ +\x75\x6e\x74\x69\x6c\x20\x79\x6f\x75\x20\x70\x72\x65\x73\x73\x20\ +\x74\x68\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x62\x75\x74\x74\ +\x6f\x6e\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x9e\x00\x4a\x00\x65\x01\x5b\x00\x6c\ +\x00\x69\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x65\x00\x20\x00\x6a\ +\x00\x65\x00\x73\x00\x74\x00\x20\x00\x7a\x00\x61\x00\x7a\x00\x6e\ +\x00\x61\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x65\x00\x2c\x00\x20\ +\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x20\ +\x00\x7a\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x6e\x01\x05\x00\x20\ +\x00\x73\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x6f\x00\x77\x00\x61\ +\x00\x6e\x00\x65\x00\x20\x00\x7a\x00\x61\x00\x6d\x00\x69\x00\x61\ +\x00\x73\x00\x74\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x65\x00\x6e\ +\x00\x69\x00\x65\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\ +\x00\x28\x00\x43\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\ +\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x63\x6f\x70\x69\ +\x65\x64\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x6d\x6f\ +\x76\x65\x64\x20\x28\x43\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x26\x00\x5a\x00\x61\x00\x69\x00\x6e\x00\ +\x73\x00\x74\x00\x61\x00\x6c\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\ +\x65\x00\x20\x00\x4d\x00\x61\x00\x6b\x00\x72\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x10\x49\x6e\x73\x74\x61\x6c\x6c\x65\x64\ +\x20\x4d\x61\x63\x72\x6f\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x3a\x00\x4f\x00\x73\x00\x74\x00\x61\x00\ +\x74\x00\x6e\x00\x69\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\ +\x74\x00\x20\x00\x7a\x00\x6f\x00\x73\x00\x74\x00\x61\x01\x42\x00\ +\x20\x00\x75\x00\x73\x00\x75\x00\x6e\x00\x69\x01\x19\x00\x74\x00\ +\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x4c\x61\x73\x74\x20\ +\x70\x6f\x69\x6e\x74\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x72\ +\x65\x6d\x6f\x76\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0a\x00\x4c\x00\x69\x00\x6e\x00\x69\x00\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4c\x69\x6e\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\ +\x4b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x69\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4c\ +\x69\x6e\x65\x20\x43\x6f\x6c\x6f\x72\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x53\x00\x7a\x00\x65\x00\ +\x72\x00\x6f\x00\x6b\x00\x6f\x01\x5b\x01\x07\x00\x20\x00\x6c\x00\ +\x69\x00\x6e\x00\x69\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x4c\x69\x6e\x65\x20\x57\x69\x64\x74\x68\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x50\x00\x72\x00\ +\x7a\x00\x65\x00\x73\x00\x75\x01\x44\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x4d\x6f\x76\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x2a\x00\x44\x00\x6f\x00\x77\x00\x6e\x00\ +\x67\x00\x72\x00\x61\x00\x64\x00\x65\x00\x20\x00\x6e\x00\x69\x00\ +\x65\x00\x6d\x00\x6f\x01\x7c\x00\x6c\x00\x69\x00\x77\x00\x79\x00\ +\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x4e\x6f\x20\x6d\x6f\ +\x72\x65\x20\x64\x6f\x77\x6e\x67\x72\x61\x64\x65\x20\x70\x6f\x73\ +\x73\x69\x62\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x4c\x00\x55\x00\x70\x00\x67\x00\x72\x00\x61\ +\x00\x64\x00\x65\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x64\ +\x00\x6f\x00\x73\x00\x74\x01\x19\x00\x70\x00\x6e\x00\x79\x00\x20\ +\x00\x64\x00\x6c\x00\x61\x00\x20\x00\x74\x00\x65\x00\x67\x00\x6f\ +\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x75\ +\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x25\x4e\x6f\x20\x75\ +\x70\x67\x72\x61\x64\x65\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\ +\x20\x66\x6f\x72\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x0a\x01\x7b\x00\x61\x00\x64\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x4c\x00\x69\x00\x63\x00\ +\x7a\x00\x62\x00\x61\x00\x20\x00\x62\x00\x6f\x00\x6b\x00\xf3\x00\ +\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4e\x75\x6d\x62\x65\ +\x72\x20\x6f\x66\x20\x73\x69\x64\x65\x73\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x4f\x00\x66\x00\x66\ +\x00\x73\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x74\x00\x4f\x00\x66\x00\x66\x00\x73\x00\x65\ +\x00\x74\x00\x20\x00\x64\x00\x7a\x00\x69\x00\x61\x01\x42\x00\x61\ +\x00\x20\x00\x74\x00\x79\x00\x6c\x00\x6b\x00\x6f\x00\x20\x00\x6e\ +\x00\x61\x00\x20\x00\x6a\x00\x65\x00\x64\x00\x6e\x00\x79\x00\x6d\ +\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x63\x00\x69\ +\x00\x65\x00\x20\x00\x77\x00\x20\x00\x74\x00\x79\x00\x6d\x00\x20\ +\x00\x73\x00\x61\x00\x6d\x00\x79\x00\x6d\x00\x20\x00\x63\x00\x7a\ +\x00\x61\x00\x73\x00\x69\x00\x65\x00\x20\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2a\x4f\x66\x66\x73\x65\x74\x20\x6f\x6e\x6c\x79\x20\ +\x77\x6f\x72\x6b\x73\x20\x6f\x6e\x20\x6f\x6e\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x61\x74\x20\x61\x20\x74\x69\x6d\x65\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x52\x00\x4f\ +\x00\x6e\x00\x65\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x20\ +\x00\x69\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x70\ +\x00\x6c\x00\x61\x00\x6e\x00\x61\x00\x72\x00\x2c\x00\x20\x00\x75\ +\x00\x70\x00\x67\x00\x72\x00\x61\x00\x64\x00\x65\x00\x20\x00\x6e\ +\x00\x6f\x00\x74\x00\x20\x00\x64\x00\x6f\x00\x6e\x00\x65\x00\x0a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x4f\x6e\x65\x20\x77\x69\ +\x72\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x70\x6c\x61\x6e\x61\x72\ +\x2c\x20\x75\x70\x67\x72\x61\x64\x65\x20\x6e\x6f\x74\x20\x64\x6f\ +\x6e\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x1c\x00\x57\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\x00\ +\x7a\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x50\x69\x63\x6b\x20\x4f\x62\ +\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x74\x00\x57\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\ +\x00\x7a\x00\x20\x00\x70\x00\x6f\x00\x77\x00\x69\x00\x65\x00\x72\ +\x00\x7a\x00\x63\x00\x68\x00\x6e\x00\x69\x01\x19\x00\x20\x00\x64\ +\x00\x6f\x00\x20\x00\x7a\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\ +\x00\x69\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x61\x00\x20\ +\x00\x70\x01\x42\x00\x61\x00\x73\x00\x7a\x00\x63\x00\x7a\x00\x79\ +\x00\x7a\x00\x6e\x00\x79\x00\x20\x00\x72\x00\x79\x00\x73\x00\x75\ +\x00\x6e\x00\x6b\x00\x75\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x28\x50\x69\x63\x6b\x20\x61\x20\x66\x61\x63\x65\x20\x74\x6f\ +\x20\x64\x65\x66\x69\x6e\x65\x20\x74\x68\x65\x20\x64\x72\x61\x77\ +\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\x57\x00\x79\x00\x62\ +\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x20\x00\x73\x00\x7a\x00\x63\ +\x00\x7a\x00\x65\x00\x6c\x00\x69\x00\x6e\x01\x19\x00\x3a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0f\x50\x69\x63\x6b\x20\x61\x70\x65\ +\x72\x74\x75\x72\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x2e\x00\x57\x00\x79\x00\x62\x00\x69\x00\ +\x65\x00\x72\x00\x7a\x00\x20\x00\x70\x00\x6f\x00\x64\x00\x73\x00\ +\x74\x00\x61\x00\x77\x00\x6f\x00\x77\x00\x79\x00\x20\x00\x6b\x01\ +\x05\x00\x74\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\ +\x69\x63\x6b\x20\x62\x61\x73\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\ +\x00\x57\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x20\ +\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x20\x00\x62\x00\x61\ +\x00\x7a\x00\x6f\x00\x77\x00\x79\x00\x20\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x11\x50\x69\x63\x6b\x20\x62\x61\x73\x65\x20\x70\x6f\ +\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x2e\x00\x57\x00\x79\x00\x62\x00\x69\x00\x65\x00\ +\x72\x00\x7a\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\ +\x20\x01\x5b\x00\x72\x00\x6f\x00\x64\x00\x6b\x00\x6f\x00\x77\x00\ +\x79\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x50\x69\x63\ +\x6b\x20\x63\x65\x6e\x74\x65\x72\x20\x70\x6f\x69\x6e\x74\x3a\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\ +\x00\x57\x00\x79\x00\x62\x00\x72\x00\x61\x01\x07\x00\x20\x00\x6f\ +\x00\x64\x00\x6c\x00\x65\x00\x67\x01\x42\x00\x6f\x01\x5b\x01\x07\ +\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x50\x69\x63\x6b\ +\x20\x64\x69\x73\x74\x61\x6e\x63\x65\x3a\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x57\x00\x79\x00\ +\x62\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x20\x00\x70\x00\x75\x00\ +\x6e\x00\x6b\x00\x74\x00\x20\x00\x6b\x00\x6f\x01\x44\x00\x63\x00\ +\x6f\x00\x77\x00\x79\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x10\x50\x69\x63\x6b\x20\x65\x6e\x64\x20\x70\x6f\x69\x6e\x74\x3a\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x2e\x00\x57\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\x00\x7a\x00\ +\x20\x00\x70\x00\x69\x00\x65\x00\x72\x00\x77\x00\x73\x00\x7a\x00\ +\x79\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x20\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\x6b\x20\x66\x69\ +\x72\x73\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\x00\x57\x00\x79\x00\ +\x62\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x20\x00\x6c\x00\x6f\x00\ +\x6b\x00\x61\x00\x6c\x00\x69\x00\x7a\x00\x61\x00\x63\x00\x6a\x01\ +\x19\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x75\x00\ +\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\ +\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x20\x70\x6f\x69\x6e\x74\x3a\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6a\ +\x00\x57\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x20\ +\x00\x6e\x00\x61\x00\x73\x00\x74\x01\x19\x00\x70\x00\x6e\x00\x79\ +\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x2c\x00\x20\ +\x00\x61\x00\x6c\x00\x62\x00\x6f\x00\x20\x00\x28\x00\x46\x00\x29\ +\x00\x6b\x00\x6f\x00\x6e\x00\x69\x00\x65\x00\x63\x00\x20\x00\x6c\ +\x00\x75\x00\x62\x00\x20\x00\x28\x00\x43\x00\x29\x00\x7a\x00\x61\ +\x00\x6d\x00\x6b\x00\x6e\x00\x69\x00\x6a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x29\x50\x69\x63\x6b\x20\x6e\x65\x78\x74\x20\x70\x6f\ +\x69\x6e\x74\x2c\x20\x6f\x72\x20\x28\x46\x29\x69\x6e\x69\x73\x68\ +\x20\x6f\x72\x20\x28\x43\x29\x6c\x6f\x73\x65\x3a\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x57\x00\ +\x79\x00\x62\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x20\x00\x6e\x00\ +\x61\x00\x73\x00\x74\x01\x19\x00\x70\x00\x6e\x00\x79\x00\x20\x00\ +\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x20\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\x6e\x65\x78\x74\x20\x70\ +\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x36\x00\x57\x00\x79\x00\x62\x00\x69\x00\x65\ +\x00\x72\x00\x7a\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\ +\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x65\x00\x63\x00\x69\x00\x77\ +\x00\x6c\x00\x65\x00\x67\x01\x42\x00\x79\x00\x20\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x6f\x70\x70\x6f\x73\ +\x69\x74\x65\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x57\x00\x79\x00\ +\x62\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x20\x00\x70\x00\x72\x00\ +\x6f\x00\x6d\x00\x69\x00\x65\x01\x44\x00\x20\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0d\x50\x69\x63\x6b\x20\x72\x61\x64\x69\x75\x73\ +\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x26\x00\x57\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\x00\x7a\ +\x00\x20\x00\x6b\x01\x05\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x72\ +\x00\x6f\x00\x74\x00\x75\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x15\x50\x69\x63\x6b\x20\x72\x6f\x74\x61\x74\x69\x6f\x6e\x20\ +\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x2c\x00\x57\x00\x79\x00\x62\x00\x69\x00\ +\x65\x00\x72\x00\x7a\x00\x20\x01\x5b\x00\x72\x00\x6f\x00\x64\x00\ +\x65\x00\x6b\x00\x20\x00\x6f\x00\x62\x00\x72\x00\x6f\x00\x74\x00\ +\x75\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x50\x69\x63\ +\x6b\x20\x72\x6f\x74\x61\x74\x69\x6f\x6e\x20\x63\x65\x6e\x74\x65\ +\x72\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x3e\x00\x57\x00\x79\x00\x62\x00\x72\x00\x61\x01\x07\x00\ +\x20\x00\x77\x00\x73\x00\x70\x00\xf3\x01\x42\x00\x63\x00\x7a\x00\ +\x79\x00\x6e\x00\x6e\x00\x69\x00\x6b\x00\x20\x00\x73\x00\x6b\x00\ +\x61\x00\x6c\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x61\x00\ +\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x50\x69\x63\x6b\x20\ +\x73\x63\x61\x6c\x65\x20\x66\x61\x63\x74\x6f\x72\x3a\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x57\ +\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x20\x00\x4b\ +\x01\x05\x00\x74\x00\x20\x00\x70\x00\x6f\x00\x63\x00\x7a\x01\x05\ +\x00\x74\x00\x6b\x00\x6f\x00\x77\x00\x79\x00\x20\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x12\x50\x69\x63\x6b\x20\x73\x74\x61\x72\x74\ +\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x32\x00\x57\x00\x79\x00\x62\x00\x69\ +\x00\x65\x00\x72\x00\x7a\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\ +\x00\x74\x00\x20\x00\x70\x00\x6f\x00\x63\x00\x7a\x01\x05\x00\x74\ +\x00\x6b\x00\x6f\x00\x77\x00\x79\x00\x20\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x12\x50\x69\x63\x6b\x20\x73\x74\x61\x72\x74\x20\x70\ +\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0a\x00\x50\x00\x75\x00\x6e\x00\x6b\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x50\x6f\x69\x6e\x74\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\ +\x57\x00\x69\x00\x65\x00\x6c\x00\x6f\x00\x6b\x01\x05\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x07\x50\x6f\x6c\x79\x67\x6f\x6e\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\ +\x00\x50\x00\x72\x00\x6f\x00\x6d\x00\x69\x00\x65\x01\x44\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x52\x61\x64\x69\x75\x73\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x50\ +\x00\x72\x00\x6f\x00\x6d\x00\x69\x00\x65\x01\x44\x00\x20\x00\x6f\ +\x00\x6b\x00\x72\x01\x19\x00\x67\x00\x75\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x52\x61\x64\x69\x75\x73\x20\x6f\x66\x20\x43\x69\ +\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x12\x00\x50\x00\x72\x00\x6f\x00\x73\x00\x74\x00\x6f\ +\x00\x6b\x01\x05\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x55\x00\x73\x00\x75\x01\ +\x44\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x79\x00\ +\x20\x00\x7a\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x79\x00\x77\x00\ +\x6e\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x69\x00\ +\x65\x00\x6b\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x25\x52\x65\x6d\x6f\x76\x65\x20\x70\x6f\x69\x6e\x74\x73\x20\x66\ +\x72\x6f\x6d\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\ +\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0a\x00\x4f\x00\x62\x00\x72\x00\xf3\x01\x07\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x6f\x74\x61\x74\x65\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\ +\x00\x53\x00\x6b\x00\x61\x00\x6c\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x57\x00\x79\x00\x62\x00\ +\x69\x00\x65\x00\x72\x00\x7a\x00\x20\x00\x50\x01\x42\x00\x61\x00\ +\x73\x00\x7a\x00\x63\x00\x7a\x00\x79\x00\x7a\x00\x6e\x01\x19\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x65\x6c\x65\x63\x74\x20\ +\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x2c\x00\x57\x00\x79\x00\x62\x00\x69\x00\x65\x00\ +\x72\x00\x7a\x00\x20\x00\x70\x01\x42\x00\x61\x00\x73\x00\x7a\x00\ +\x63\x00\x7a\x00\x79\x00\x7a\x00\x6e\x01\x19\x00\x20\x00\x58\x00\ +\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\ +\x74\x20\x58\x59\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x57\x00\x79\x00\x62\ +\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x20\x00\x70\x01\x42\x00\x61\ +\x00\x73\x00\x7a\x00\x63\x00\x7a\x00\x79\x00\x7a\x00\x6e\x01\x19\ +\x00\x20\x00\x58\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\ +\x53\x65\x6c\x65\x63\x74\x20\x58\x5a\x20\x70\x6c\x61\x6e\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\ +\x57\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x20\x00\ +\x70\x01\x42\x00\x61\x00\x73\x00\x7a\x00\x63\x00\x7a\x00\x79\x00\ +\x7a\x00\x6e\x01\x19\x00\x20\x00\x59\x00\x5a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x59\x5a\x20\x70\ +\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x40\x00\x5a\x00\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\ +\x00\x7a\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\ +\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x65\ +\x00\x6e\x00\x69\x00\x65\x00\x73\x00\x69\x00\x65\x00\x6e\x00\x69\ +\x00\x61\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x53\x65\ +\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\ +\x6f\x20\x6d\x6f\x76\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x32\x00\x57\x00\x79\x00\x62\x00\x69\x00\ +\x65\x00\x72\x00\x7a\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\ +\x6b\x00\x74\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x6f\x00\x66\x00\ +\x66\x00\x73\x00\x65\x00\x74\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1b\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x74\x6f\x20\x6f\x66\x66\x73\x65\x74\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x00\x5a\ +\x00\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\x20\x00\x6f\ +\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x2c\x00\x20\x00\x61\ +\x00\x62\x00\x79\x00\x20\x00\x6f\x00\x62\x00\x72\x00\xf3\x00\x63\ +\x00\x69\x01\x07\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\ +\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x74\x6f\x20\x72\x6f\x74\x61\x74\x65\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x00\x5a\x00\x61\x00\ +\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\x20\x00\x6f\x00\x62\x00\ +\x69\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x64\x00\x6f\x00\x20\x00\ +\x73\x00\x6b\x00\x61\x00\x6c\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\ +\x69\x00\x61\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\ +\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x74\x6f\x20\x73\x63\x61\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x56\x00\x5a\x00\x61\x00\x7a\x00\ +\x6e\x00\x61\x00\x63\x00\x7a\x00\x20\x00\x6f\x00\x62\x00\x69\x00\ +\x65\x00\x6b\x00\x74\x00\x2c\x00\x20\x00\x64\x00\x6f\x00\x20\x00\ +\x7a\x00\x77\x01\x19\x01\x7c\x00\x65\x00\x6e\x00\x69\x00\x61\x00\ +\x20\x00\x2f\x00\x20\x00\x72\x00\x6f\x00\x7a\x00\x73\x00\x7a\x00\ +\x65\x00\x72\x00\x7a\x00\x65\x00\x6e\x00\x69\x00\x61\x00\x20\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x20\x53\x65\x6c\x65\x63\x74\x20\ +\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x74\x72\x69\ +\x6d\x2f\x65\x78\x74\x65\x6e\x64\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x40\x00\x5a\x00\x61\x00\x7a\x00\ +\x6e\x00\x61\x00\x63\x00\x7a\x00\x20\x00\x6f\x00\x62\x00\x69\x00\ +\x65\x00\x6b\x00\x74\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x75\x00\ +\x61\x00\x6b\x00\x74\x00\x75\x00\x61\x00\x6c\x00\x6e\x00\x69\x00\ +\x65\x00\x6e\x00\x69\x00\x61\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1c\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x74\x6f\x20\x75\x70\x67\x72\x61\x64\x65\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x68\x00\ +\x57\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x20\x00\ +\x70\x01\x42\x00\x61\x00\x73\x00\x7a\x00\x63\x00\x7a\x00\x79\x00\ +\x7a\x00\x6e\x01\x19\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x73\x00\ +\x74\x00\x6f\x00\x70\x00\x61\x00\x64\x01\x42\x01\x05\x00\x20\x00\ +\x64\x00\x6f\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x75\x00\x61\x00\ +\x6c\x00\x6e\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x77\x00\x69\x00\ +\x64\x00\x6f\x00\x6b\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2e\x53\x65\x6c\x65\x63\x74\x20\x70\x6c\x61\x6e\x65\x20\x70\x65\ +\x72\x70\x65\x6e\x64\x69\x63\x75\x6c\x61\x72\x20\x74\x6f\x20\x74\ +\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x76\x69\x65\x77\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\ +\x5a\x00\x61\x00\x6d\x00\x6b\x00\x6e\x00\x69\x01\x19\x00\x74\x00\ +\x6f\x00\x20\x00\x42\x00\x2d\x00\x53\x00\x70\x00\x6c\x00\x61\x00\ +\x6a\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x53\x70\x6c\ +\x69\x6e\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x63\x6c\x6f\ +\x73\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x1c\x00\x4b\x01\x05\x00\x74\x00\x20\x00\x70\x00\x6f\ +\x00\x63\x00\x7a\x01\x05\x00\x74\x00\x6b\x00\x6f\x00\x77\x00\x79\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x74\x61\x72\x74\x20\ +\x41\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0a\x00\x54\x00\x65\x00\x6b\x00\x73\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\x65\x78\x74\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x54\x00\ +\x65\x00\x6e\x00\x20\x00\x74\x00\x79\x00\x70\x00\x20\x00\x6f\x00\ +\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x20\x00\x6e\x00\ +\x69\x00\x65\x00\x20\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x20\x00\ +\x65\x00\x64\x00\x79\x00\x74\x00\x6f\x00\x77\x00\x61\x00\x6c\x00\ +\x6e\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x54\x68\x69\ +\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x20\x69\x73\ +\x20\x6e\x6f\x74\x20\x65\x64\x69\x74\x61\x62\x6c\x65\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x00\x50\ +\x00\x72\x00\x7a\x00\x65\x01\x42\x01\x05\x00\x63\x00\x7a\x00\x61\ +\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x74\x00\x72\x00\x79\x00\x62\ +\x00\x75\x00\x20\x00\x62\x00\x75\x00\x64\x00\x6f\x00\x77\x00\x79\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x54\x6f\x67\x67\x6c\x65\ +\x73\x20\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x4d\ +\x6f\x64\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x10\x00\x55\x00\x63\x00\x69\x00\x6e\x00\x61\x00\x6e\x00\ +\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\x72\x69\ +\x6d\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x3e\x00\x43\x00\x6f\x00\x66\x00\x61\x00\x20\x00\x6f\x00\x73\x00\ +\x74\x00\x61\x00\x74\x00\x6e\x00\x69\x00\x20\x00\x73\x00\x65\x00\ +\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x28\x00\x43\x00\ +\x54\x00\x52\x00\x4c\x00\x20\x00\x2b\x00\x20\x00\x5a\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x55\x6e\x64\x6f\x20\x74\x68\ +\x65\x20\x6c\x61\x73\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x28\ +\x43\x54\x52\x4c\x2b\x5a\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0a\x00\x57\x00\x69\x00\x64\x00\x6f\x00\ +\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x56\x69\x65\x77\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa0\x00\ +\x57\x00\x79\x00\x6d\x00\x61\x00\x7a\x00\x75\x00\x6a\x00\x65\x00\ +\x20\x00\x69\x00\x73\x00\x74\x00\x6e\x00\x69\x00\x65\x00\x6a\x01\ +\x05\x00\x63\x00\x79\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\ +\x69\x00\x20\x00\x69\x00\x20\x00\x72\x00\x6f\x00\x7a\x00\x70\x00\ +\x6f\x00\x63\x00\x7a\x00\x79\x00\x6e\x00\x61\x00\x20\x00\x70\x00\ +\x6f\x00\x6e\x00\x6f\x00\x77\x00\x6e\x00\x69\x00\x65\x00\x20\x00\ +\x6f\x00\x64\x00\x20\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x74\x00\ +\x6e\x00\x69\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x70\x00\x75\x00\ +\x6e\x00\x6b\x00\x74\x00\x75\x00\x20\x00\x28\x00\x57\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x51\x57\x69\x70\x65\x73\x20\x74\ +\x68\x65\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x73\x65\x67\x6d\ +\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6c\x69\x6e\ +\x65\x20\x61\x6e\x64\x20\x73\x74\x61\x72\x74\x73\x20\x61\x67\x61\ +\x69\x6e\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x6c\x61\x73\x74\ +\x20\x70\x6f\x69\x6e\x74\x20\x28\x57\x29\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x4e\x00\x61\x00\x72\ +\x00\x7a\x01\x19\x00\x64\x00\x7a\x00\x69\x00\x61\x00\x20\x00\x53\ +\x00\x7a\x00\x6b\x00\x69\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x75\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x57\x69\x72\x65\x20\x74\ +\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x02\x00\x58\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\ +\x58\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x3e\x00\x57\x00\x73\x00\x70\x00\xf3\x01\x42\x00\x72\x00\x7a\x01\ +\x19\x00\x64\x00\x6e\x00\x61\x00\x20\x00\x58\x00\x20\x00\x6e\x00\ +\x61\x00\x73\x00\x74\x01\x19\x00\x70\x00\x6e\x00\x65\x00\x67\x00\ +\x6f\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x75\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x58\x20\x63\x6f\x6f\x72\x64\ +\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\ +\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x04\x00\x58\x00\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x02\x58\x59\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x04\x00\x58\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x02\x58\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x02\x00\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\x59\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\ +\x00\x57\x00\x73\x00\x70\x00\xf3\x01\x42\x00\x72\x00\x7a\x01\x19\ +\x00\x64\x00\x6e\x00\x61\x00\x20\x00\x59\x00\x20\x00\x6e\x00\x61\ +\x00\x73\x00\x74\x01\x19\x00\x70\x00\x6e\x00\x65\x00\x67\x00\x6f\ +\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x75\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1a\x59\x20\x63\x6f\x6f\x72\x64\x69\ +\x6e\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\ +\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x04\x00\x59\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\ +\x59\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x02\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\x5a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\ +\x57\x00\x73\x00\x70\x00\xf3\x01\x42\x00\x72\x00\x7a\x01\x19\x00\ +\x64\x00\x6e\x00\x61\x00\x20\x00\x5a\x00\x20\x00\x6e\x00\x61\x00\ +\x73\x00\x74\x01\x19\x00\x70\x00\x6e\x00\x65\x00\x67\x00\x6f\x00\ +\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x75\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1a\x5a\x20\x63\x6f\x6f\x72\x64\x69\x6e\ +\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\ +\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x24\x00\x61\x00\x6b\x00\x74\x00\x79\x00\x77\x00\x6e\x00\x65\x00\ +\x20\x00\x70\x00\x6f\x00\x6c\x00\x65\x00\x63\x00\x65\x00\x6e\x00\ +\x69\x00\x65\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x61\ +\x63\x74\x69\x76\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x3a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\x00\x50\ +\x00\x61\x00\x73\x00\x65\x00\x6b\x00\x20\x00\x70\x00\x6f\x00\x6c\ +\x00\x65\x00\x63\x00\x65\x01\x44\x00\x20\x00\x70\x00\x72\x00\x6f\ +\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x6f\x00\x77\x00\x61\x00\x6e\ +\x00\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x64\x72\ +\x61\x66\x74\x20\x43\x6f\x6d\x6d\x61\x6e\x64\x20\x42\x61\x72\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x00\x00\x3c\x52\ +\x00\ +\x00\xcc\x31\x78\x9c\xcd\x7d\x09\x98\x1d\x55\x95\xf0\xed\x7d\xef\ +\x4e\x42\x08\x21\x04\xa8\x34\x18\x3a\x49\xa7\x13\x02\x61\x69\x22\ +\xd2\xe9\x26\x1b\xd9\x48\x77\x56\x10\xa9\xf7\x5e\xbd\xee\x4a\xbf\ +\x57\xf5\xac\xaa\xd7\x9d\x6e\x99\xb0\xca\xbe\x88\x2c\x02\x2a\x03\ +\x33\xc8\x2a\x8e\x0a\x2a\x38\x82\xe0\x28\xa3\x28\xa3\xbf\xa3\xcc\ +\x8f\x33\x22\xb8\x8f\x22\x20\x33\xc3\xb8\xcf\x7f\xee\xb9\x6b\x2d\ +\xaf\xbb\x3a\xce\xfc\xdf\x7c\x7e\xf8\x3a\xef\x55\xdd\x7b\xee\xb9\ +\xe7\x9e\xfd\x9c\xbb\xe6\x89\xdc\xfc\xe7\xdf\xf8\xc8\x6d\x2f\x2c\ +\x5a\xf8\xc5\x0b\xef\x7d\xea\xfb\x6b\x09\x69\x39\x8d\x10\xb2\x87\ +\x90\xa7\x37\xc1\xe7\x5e\x42\xbe\x38\x1b\x3e\xf7\xc1\xe7\x13\x84\ +\xd4\xbd\x04\xdf\xff\x1f\xf8\xfc\x1e\x7c\xfe\x1a\x3e\x7f\x01\xdf\ +\xdf\x41\x48\xc3\x01\x42\xae\x1c\x24\x64\xc3\xe5\x84\xd4\x1c\xc6\ +\x3e\xaf\xff\x26\x21\x23\x27\x13\x72\xf1\x6f\x49\xd5\xb3\x57\x11\ +\xb2\xfb\x4f\xa4\xf6\xfe\x09\x42\x3e\x90\x23\xb5\x7f\x5b\x4b\x48\ +\x5b\x17\xfb\xbc\xed\x19\x52\xb7\xf2\x6c\x42\x3a\x6e\x60\x9f\x0f\ +\x1d\x4d\xea\xd6\x7d\x05\xfe\xfd\x05\xf6\xf9\xd0\x17\x49\xdd\x2e\ +\xf8\x7e\xcf\x0f\xd8\xe7\xc3\xaf\x92\xba\x8f\xff\x3b\x21\x47\xcf\ +\x62\x9f\x7f\x7b\x24\xa9\x7b\xe2\x8f\x84\x7c\x61\x35\xa9\xfb\xe6\ +\xdf\xc3\xe7\xab\xa4\xfe\x91\xeb\x09\xb9\xf4\x5c\x32\xeb\x8a\x8d\ +\x84\xe4\x7f\x46\xe6\xd4\x7d\x9e\x90\x27\xce\x23\xf3\x9e\x03\xb8\ +\x3f\x7a\x35\x39\xf6\xbe\xff\x24\x64\xe9\x41\xb2\x94\xc2\x73\xf5\ +\xaf\xc9\xb2\x2f\xff\x0d\x21\xd7\x56\x91\x65\xaf\x58\xf0\xb9\x92\ +\x9c\xfe\x83\x93\x08\xe9\x7d\x9a\xf4\xde\x7d\x14\x21\xe3\xdf\x25\ +\xef\xbc\xf7\x48\x42\x6e\x9c\x43\xce\xbc\x05\xd6\x75\xc6\xeb\x64\ +\xc3\x4d\x17\x11\xb2\xec\x7e\xb2\xe1\x8e\x6b\x60\xbd\x6f\x92\x8d\ +\xaf\xbc\x9f\x90\xae\x8f\xb0\xcf\x5b\x4e\x20\x9b\x4e\x01\x38\x1b\ +\x06\xc8\x39\xf9\xd5\x84\x9c\xfa\x3c\x7c\x9e\x4a\xc8\x69\x1d\xf0\ +\x79\x3a\x7c\x0e\x91\xdd\x17\x0e\x11\x32\xe7\xc7\xec\xf3\xb1\xb7\ +\xc9\x9e\x3f\xc2\x3a\xce\x7f\x9d\xec\xbd\xe3\x1d\x84\xcc\xbb\x8e\ +\x7d\x7e\xe6\x41\xb2\x7f\xcf\x5d\x84\x3c\x7a\x3b\x99\x78\xe3\x3b\ +\x80\xdf\xeb\xc8\xc1\x8b\xdb\x09\xb9\xe8\xe3\xe4\xda\xe3\x6e\x23\ +\x64\x45\x37\x7c\x7e\x08\x3e\x3d\xf8\xbc\x13\x3e\x9f\x20\x37\x7f\ +\xe1\x5f\x01\x6f\xbf\x26\xf7\x9f\xfa\x2e\x42\x7a\x3a\xc8\xc3\x97\ +\xc0\x38\xb7\xbc\x44\x3e\xfe\x22\xe0\x79\xfd\x77\xc8\x33\x1f\xcf\ +\x12\x72\xeb\x87\xc9\x73\x3f\x72\x08\x59\xf2\x4b\xf2\xf5\x07\xe7\ +\x12\xf2\xfe\xdb\xc8\x1f\xc8\xf3\x84\xdc\xf7\xf9\xaa\x23\x6f\x78\ +\x99\x90\xcc\x05\x55\x8b\x5e\x04\x38\xad\x37\xab\x3a\x1f\xff\x2d\ +\xc0\xf3\x4c\xd5\x8a\x1b\x0f\x12\x52\x5a\x53\xb5\xe1\x4f\x7f\x4d\ +\xc8\x9a\x52\xd5\xe0\xbf\x3d\x4c\xc8\x9d\x8f\x54\xed\x9a\x07\x34\ +\x72\xdf\x92\xaa\xf3\x5f\x06\xfc\x3e\xbc\xa7\x6a\xb8\xed\x5a\x42\ +\xfe\xd2\xae\xb2\x67\x4f\x12\xf2\xa9\x17\xaa\xec\x0f\x01\x6d\x9c\ +\xf9\x2f\x55\x97\x9d\xde\x4c\xc8\x27\xce\xac\xba\x6e\xa4\x0c\xfb\ +\xf5\x7c\xd5\x75\xd7\x00\xde\x1b\xde\x5b\x75\xef\xc5\x00\xcf\xb1\ +\x5f\xac\xfa\xd4\xbb\x9b\x08\x39\x50\xa8\x7a\xf6\x25\x98\xdf\xae\ +\xad\xfa\xf6\x4d\xff\x48\xc8\xbb\xaf\xaa\xfa\xce\xac\xe3\x08\x59\ +\xf7\xfb\xaa\xef\x5f\xfe\x3b\x42\x1e\xf9\x4d\xd5\x0f\x66\xf7\x13\ +\x52\x9f\xab\xfa\xe1\xbf\x03\x3d\x7e\xee\x17\x55\x7f\xf8\x04\x3c\ +\x77\xe5\x37\xaa\xeb\x9e\x86\x75\x7e\xf0\xae\xea\xee\x97\x2e\x24\ +\xa4\xf3\x88\xea\x15\x9f\x81\x75\x2d\xea\xad\x5e\xb7\x07\xe6\xfd\ +\x54\x47\xf5\xee\xdf\x34\x12\xd2\x3a\xaf\xda\x7a\x34\x43\xc8\x33\ +\x57\x57\x3b\x0d\x3f\x24\xe4\xc2\xb7\xab\xc7\x8e\x07\x5a\x1d\x58\ +\x5f\xfd\x17\xaf\xec\x84\x75\x93\xea\x5b\xd7\x2d\x00\x7c\xff\xb2\ +\xfa\xb6\xe7\x3f\x43\xc8\xe9\x37\x57\x3f\xd0\x7d\x38\x21\xb5\xbf\ +\xa9\x7e\xf8\x14\xc0\xf7\xd5\x37\x56\x3f\x72\x15\xec\xc3\x35\x46\ +\xf5\xa7\xde\x84\xf5\xde\xdb\x5b\xfd\xc5\x87\x6f\x24\xe4\xac\x65\ +\xd5\xcf\xe4\xdf\x22\xa4\x70\x65\xf5\x57\xdf\xf5\x1f\x40\x2f\x27\ +\x55\xbf\x74\xdf\x93\x40\xf7\x0f\x56\xff\xf3\x82\x5b\x09\x69\xbc\ +\xb7\xa6\xea\x8a\x2f\x13\xf2\xb1\x89\x9a\x39\x1f\xda\x4f\xc8\x5f\ +\x6f\xaa\x99\x3b\x01\xf8\x7e\xe8\x8d\x9a\x05\x73\x01\xce\xd5\x57\ +\xd6\x2c\x98\x07\xe7\x2c\x7b\x6e\xcd\x8a\x05\xf0\xfb\xb5\x9f\xab\ +\x39\x48\xe7\x1f\xac\xae\x79\x7f\xb0\x81\x90\xad\x0b\x6b\xae\x3e\ +\x16\xe6\x1d\xfc\xc7\x9a\xbb\xf7\x7c\x0c\xce\xe2\xda\x9a\xc7\xee\ +\x06\x7c\x7c\xe2\x4f\x35\x9f\xf9\x2a\xd0\xc7\x27\x2f\xa8\x79\xea\ +\x3b\x3f\x26\xe4\xba\x42\xcd\x97\xd7\xc0\xfc\x37\x7c\xbb\xe6\x2b\ +\xdf\xbd\x80\x90\xe6\xcf\xb1\xcf\x5b\xee\xab\xf9\x7a\xdb\x4f\x80\ +\x9e\xfe\xa9\xe6\x5f\x5a\x29\xfc\xef\xab\x79\xf5\x00\xe0\xeb\xe6\ +\xe7\x6b\xde\x2a\x01\x7d\xae\x9a\x55\xf3\xd6\x53\x80\xb7\xf9\x73\ +\x6b\x7e\xdf\x01\x74\xb2\x7a\x4e\xed\xa2\xe3\x00\xef\x8b\x4f\xa8\ +\xed\xf1\xe1\x1c\xbc\xef\xec\xda\x5d\xf5\xb7\x10\x72\x92\x59\x7b\ +\xe1\x45\x80\x8f\xc7\x2f\xaa\x9d\x78\x03\xe6\xbd\xe7\x53\xb5\x97\ +\x8d\x03\xdd\x9a\x0f\xd7\x5e\x75\x39\x9c\xef\xfe\x53\x6b\xaf\xfa\ +\xed\xdd\x84\xdc\x3f\x56\x7b\xfd\x8b\x9f\x20\xa4\x1c\xd4\xde\xf8\ +\x14\x9c\xb7\x0f\x7d\xad\xf6\x9e\x6b\x61\xbe\xfa\xd5\xec\xf3\xa6\ +\x13\x6b\xef\x3b\x11\xf6\xef\xc1\x47\x6a\x1f\xfc\x25\x9c\x97\xd3\ +\xee\xac\x7d\xba\xf9\x37\x40\xff\xef\xae\x7d\xf1\xc5\x39\x84\xbc\ +\xe7\xf2\xda\x57\x9d\x1f\x01\x1f\x3a\xb1\xf6\xc7\x1d\x40\x2f\xd5\ +\x8f\xd6\xfe\xb2\xef\xef\x00\xce\x97\x6b\xdf\x78\xe9\x41\x42\xce\ +\xbb\xa4\xae\xe6\x72\xd8\x8f\xcb\x5e\xae\xab\xfb\x3a\xec\xdf\xb9\ +\x17\xd4\x75\xbc\x15\x10\xf2\xf1\x47\xea\x8e\x9a\x05\x78\xdc\x79\ +\x51\xdd\xd2\x9f\xc0\xb9\xb8\x60\xb4\x6e\xe0\x8c\xf7\x10\x72\xc5\ +\x93\x75\xe7\xbf\x04\xf8\x9f\xbd\x99\x7d\x3e\xb2\xa9\x2e\xfb\x36\ +\xac\xe7\xdd\x2b\xea\xac\xd7\xe1\xbc\x7f\xe8\xda\xba\xab\x3e\x09\ +\xe3\x3f\xbe\xb5\xee\xf6\x07\x01\xbf\x87\xaf\x60\x9f\x9f\x99\xac\ +\x7b\xf4\x1c\xf8\x7e\x70\xa8\xee\xd3\xf7\x3f\x07\x74\x35\x5e\xf7\ +\x64\xcd\x57\xe1\xf3\x77\x75\x4f\xb5\xc2\xfe\xdf\xf5\xfb\xba\xa7\ +\x6e\x04\x7a\xf5\xdf\xae\x7b\x7a\x17\x8c\x77\x5e\x57\xdd\x57\xb6\ +\x53\xbe\xb6\xb3\xee\x27\x37\xf6\x10\x72\xd8\x61\x75\xbf\xff\x17\ +\xe0\x17\xe7\x3e\x51\x7f\xcc\x4f\x61\x3f\x3f\xff\x72\xfd\x92\xd7\ +\x1f\x82\xf5\x7f\xa4\x7e\xe9\x95\x2f\x00\xde\x36\xd7\xef\x3e\x12\ +\xf0\x07\x98\xd9\xf7\x06\xe0\xf5\xea\xa7\xeb\xcf\xfb\x36\x3c\xb7\ +\xf1\xb6\xfa\xc2\xd5\x40\x57\xdb\x1e\xab\x0f\x8e\x06\xba\x1c\xf1\ +\xea\xaf\xbb\x7d\x80\x90\xf6\x96\xfa\x0f\xed\xf9\x1a\xd0\xc9\x37\ +\xea\xbf\x70\x09\xc0\x67\x7c\xb3\xfe\x6b\x4f\xd4\xc1\xbe\xbf\x52\ +\xff\xf3\xba\xad\x40\x67\x3d\xf5\xaf\x3f\xbc\x9b\x90\x27\xbf\x5f\ +\xff\xe6\xd7\x01\xcf\xc7\xdc\x54\xff\xbb\xff\x02\xf8\x77\x3c\x5c\ +\xff\x87\x05\x40\x67\xa7\xff\xa4\xfe\x0f\xf7\xc0\xf9\xfc\xf8\x9b\ +\x0d\x8d\x1f\x00\x7a\x58\x79\x79\x43\xdb\xe7\x80\x0f\xbe\xeb\x82\ +\x86\xf6\x2b\xcf\x84\x73\x58\xdb\xb0\xf4\x38\xc0\xc7\x99\x67\x34\ +\xac\x1e\x01\xfe\x70\xe4\x89\x0d\xab\x7f\x0e\xfb\xfc\xe9\x05\x0d\ +\x03\x7d\x4b\xe1\xbc\xcf\x6d\xd8\x74\x2c\x9c\xd7\xaa\x17\x1b\xb6\ +\xf8\x9d\x40\xbf\xeb\x1b\xb6\xde\x0f\x74\x7f\xfb\xd1\x0d\x7b\xbe\ +\xfe\x73\xf8\xf7\xa5\x0d\xd9\x3f\x01\x7f\x3a\xec\x75\xf6\xf9\xf8\ +\xb1\x0d\xef\x7d\x14\xce\xeb\x82\xda\x86\x4b\x9e\x7b\x0c\xe4\x45\ +\x6b\xc3\xd5\x1e\xec\xfb\x0d\x8b\x1a\x6e\x3e\x00\x74\x79\xc2\x43\ +\x0d\x0f\xac\x04\xf8\xaf\x7f\xab\xe1\xd9\x3f\xc0\x3e\x9e\xdc\xde\ +\xf0\xb3\xd7\x00\x8f\x13\xbf\x6a\x3c\xe1\x71\xc0\xef\x27\xab\x1a\ +\x57\x7d\x19\xf8\xcc\xa7\xff\xb9\xf1\x94\x00\xe0\x5f\x72\x5f\xe3\ +\xc0\x93\x80\xcf\xde\x4d\x8d\x1b\xbf\xb6\x12\xe8\xf5\xc2\x46\xf3\ +\x22\x18\xf7\xb8\xe5\x8d\x7f\xf5\xfc\x30\x9c\xdf\xff\x6c\xfc\xeb\ +\x57\x80\x5e\x6f\x6e\x6a\xfc\xd4\xe1\x5d\x30\xde\x03\x8d\x8f\xd7\ +\xc2\x7e\x3c\xfe\xdb\xc6\x6f\xad\x02\x3c\xdf\xf6\xf3\xc6\xef\xbc\ +\x60\x03\xbc\xe7\x35\xbe\xfa\xe1\xa7\x41\x7e\x3c\xdb\xf8\xea\xb3\ +\x70\x8e\xee\xc8\x37\xbe\xb1\x05\xf8\xd5\x2d\xdb\x9b\x8c\xef\x1d\ +\x0f\xf2\xac\x07\x3e\x1f\x87\xcf\xef\xc2\x27\x9c\x97\xa7\x87\x9b\ +\xb6\xdc\x0e\x72\x6f\xe9\x77\x9b\xac\xef\x01\xfe\x3e\x3a\xbb\x69\ +\xa4\x6d\x09\x21\x0f\x5c\xd1\xf4\xde\x1b\x00\xcf\x0d\x3f\x6e\x2a\ +\x1f\x07\xf0\x5d\xfb\xee\xa6\xb1\x5f\x81\xbc\x9b\xb8\xad\xe9\xca\ +\xfb\x61\x5d\x5d\xcf\x37\x5d\x77\x1c\xac\xe3\xb1\xb3\x9a\xee\xfe\ +\x23\xf0\xcf\xc9\x5b\x9a\x3e\xbb\x14\xf0\x77\xda\xbf\x35\xbd\xb0\ +\x10\xf6\xf5\xb3\xc7\x36\x7d\x7b\x11\xc8\xcf\xf7\x2e\x69\xfa\xc9\ +\x71\x80\xaf\xd1\xab\x9a\x5e\x5b\x06\x72\xa3\xed\xd9\xa6\x37\x4e\ +\x02\x3e\xbb\xe0\xcb\x4d\x6f\x1e\x0b\xfb\x50\xd3\xdb\xf4\xc7\xb3\ +\x81\x2f\x7d\xe2\x2f\x9b\x9b\x9e\xa5\x7c\xb5\xd0\xdc\x75\x17\xec\ +\xd3\x85\x4d\xf0\x09\xeb\xbe\x70\x0f\x7c\xc2\xba\x2e\x7c\xa0\x79\ +\xf9\xd3\xc0\x07\x56\xff\xaa\x79\xf5\x43\xb0\xae\x7b\xff\xa1\xf9\ +\x5d\x27\xc0\xb9\xf8\xe0\x2f\x9a\xcf\xba\x17\xce\xd3\xaa\xf7\x37\ +\x6f\xfc\x18\xf0\xeb\xbf\xed\x6b\xbe\xf0\x15\xa0\xb7\x65\x3f\x83\ +\xcf\x23\x08\xe9\xde\x04\x9f\x20\xdf\xba\x1f\x6d\xb6\x3e\x0c\xf0\ +\x3c\x12\x34\x1f\xa8\xbb\x04\xf6\x79\x59\xf3\xc5\x37\xc1\x3c\x67\ +\x07\xcd\x97\xfe\x18\xf8\xc1\xa6\xdf\x36\x5f\x39\x0b\xe8\x70\xce\ +\xed\xcd\x77\x5c\x39\x1f\xe4\xcd\x9f\x9a\xef\x3c\x1f\xf6\xe7\xb1\ +\xbb\x9a\x1f\x9c\x07\xe7\x71\xee\x6b\xec\xf3\xf1\x67\x9a\x1f\xba\ +\xe6\x35\x42\x86\x96\x36\x7f\xf5\x7c\x38\x8f\xb3\xff\xa2\xf9\x5b\ +\xdb\x41\x77\xb8\x66\x73\xf3\xb7\x7e\x0a\xfc\xe9\xc8\xc7\x9a\x5f\ +\xfc\x35\xc0\x77\x9b\xd5\xfc\xcb\x9b\xaf\x06\xbe\xff\xbb\x96\x86\ +\x03\x80\xd7\x8f\x6c\x6a\x39\xea\x15\x9f\x90\xdc\x9a\x96\xe3\x3f\ +\x0a\xf8\xb7\x96\xb5\x1c\xff\x15\xa0\xf7\xc3\x73\x2d\x8b\x0f\x02\ +\x7e\x3e\xd8\xd8\xb2\x6c\x3b\xbc\x77\xcf\xdc\x96\xe5\x8f\x81\x5c\ +\xba\xb8\xbe\xe5\x54\x1f\xd6\xfd\x54\x5b\xcb\x59\x67\x01\xfd\xee\ +\xfc\x69\x4b\xff\x0b\xb0\x8e\xa1\xfb\x5a\xb6\xdd\x01\x78\xbf\xbb\ +\xbe\x25\xdf\xf5\x6d\xe0\xc7\x57\xb4\x5c\xfd\x4a\x03\xf0\xff\x7c\ +\xcb\xad\x03\xa0\x4f\x9c\xb2\xaf\xe5\x8e\x39\x00\xf7\x5d\xf9\x96\ +\x7b\xae\x00\xfe\x5c\x7b\x6c\xcb\x63\xeb\x80\xef\x7e\xe0\x03\x2d\ +\x5f\xba\x13\x3e\x3f\x7c\x71\xcb\x3f\x9e\x00\xfc\xab\x6e\x55\xcb\ +\x77\x0e\x02\x3f\x6b\xbd\xb3\xe5\x3f\x5e\x07\xdd\xe6\x91\x96\xd6\ +\xfa\xed\x70\xae\xdb\x6f\x6c\x3d\xf2\x77\x20\x6f\x6f\xff\xd7\xd6\ +\x45\xcd\x40\x8f\x37\xed\x6d\xed\xfa\x30\xec\xdb\x35\xcf\xb7\x9e\ +\x78\x10\xf0\xfb\x37\xe7\xb6\x9e\xb6\x05\xce\x57\xe3\xcf\x5b\x7b\ +\xe7\x7d\x8b\x90\x85\xd7\xb7\xee\x7b\x06\xf8\xc6\x0d\xf7\xb4\x3a\ +\x57\xc1\xfa\x4f\xd8\xdf\x7a\xd1\x2b\xf7\x83\x7c\xba\xab\xf5\x92\ +\x33\x80\x5e\x6f\xfd\x7d\xeb\xcd\xf7\xc0\xbe\x7e\xfe\xd2\xd6\xdb\ +\x3f\x40\xf9\x57\x5b\xeb\xd3\x0f\xc0\x79\xde\xbc\xb3\xf5\xf9\xef\ +\xc3\x7a\x9f\x78\xa1\xf5\xc5\x37\x80\x2f\x9e\xf4\x64\xeb\xcb\x77\ +\x82\x3e\x73\xf1\x8e\xd6\x57\x17\x55\x03\x9f\x6c\x6d\xfd\xe1\x38\ +\xe0\xeb\xd2\x9b\x5a\xdf\x7c\x19\xd6\x73\xf7\x47\xdb\x16\xbe\xfd\ +\x3a\x21\x27\xee\x6b\xeb\x2d\xc0\xfa\xff\xe6\x91\xb6\xb3\x7f\x08\ +\xeb\xf9\xdc\xa5\x6d\x7b\xef\x05\xf8\x6e\xed\x68\xdb\xf7\x28\xcc\ +\x77\x7d\xa6\xed\x82\x9f\x01\x5d\x2d\x9f\xd5\x96\xfb\x18\xd0\xb5\ +\x5b\x6a\x2b\xfe\x06\xce\x47\xd3\x2d\x6d\xc1\xf7\x77\x10\x72\xd4\ +\xa3\x6d\x63\x9f\xf9\x20\x8c\xf3\x70\xdb\x87\x5f\x03\xfc\x8f\xb4\ +\xb4\x7d\xec\x25\xc0\xd3\xca\xff\x68\xbb\xff\x7b\xf7\x81\x1e\xd7\ +\xd1\xf6\xc0\x93\x5f\x82\x75\x19\x6d\xcf\x3d\x07\x7c\xe1\xd3\xe3\ +\x6d\x6f\x9d\x0e\xf3\xfd\xd5\x75\xed\x0b\x8e\xa6\xfc\x66\x61\xfb\ +\x92\x5b\x73\x84\xf4\xdd\xd3\xbe\xac\x16\xe8\xec\xe6\xeb\xda\xbb\ +\x7f\x0c\xcf\x7d\x6e\x4e\xfb\xd6\x6f\x00\xfe\x9b\xdf\x6e\x77\xef\ +\x02\x7a\x7e\x72\xb8\xfd\x7d\x93\xdd\xa0\x1f\x6d\x6a\xbf\x69\x3f\ +\xe8\x47\x67\x7c\xa0\xfd\x66\x0b\xf0\x73\xf4\x3b\xdb\x9f\xff\x27\ +\x38\x47\xc7\xff\xa8\x9d\x9d\x93\x12\x7c\x02\x1d\x7e\xf6\xd9\xf6\ +\x17\xce\x03\xfc\x9c\x5f\xdf\xfe\x8b\x9f\xd4\x10\x72\xd5\xce\xf6\ +\x5f\xbd\x0a\x74\xb0\x77\x51\x47\xc3\x0d\x40\xdf\x57\xbd\xd1\xd1\ +\x32\x0b\xf6\x69\xf7\x35\x1d\x47\x5c\x06\xf8\x23\xff\xd4\x71\xec\ +\x0d\xc0\x27\x6f\xee\xef\xd8\x56\xee\x05\xb9\xff\xae\x8e\xf7\x3c\ +\xff\x5d\xd8\xff\xbf\xef\x18\xff\x3b\xa0\xaf\x4b\x4e\xee\xb8\xa6\ +\x05\xf8\xc0\xde\xcb\x3b\x6e\x7a\xf0\x01\x58\xf7\xbe\x8e\x3b\x9a\ +\x41\xef\xf9\xc2\x7b\x3a\xee\x7e\xed\x1e\xa0\xe7\x77\x74\x7c\xf1\ +\x2a\x38\x87\x0f\x6e\xeb\x78\xe1\x1f\x80\xae\xcf\x38\xa6\xe3\x07\ +\x8b\xe0\x5c\x2f\xd9\xd6\xf1\x76\xfd\x31\x84\xbc\xe3\x9c\x8e\xb7\ +\x97\x80\x7e\x71\xfd\x9c\x8e\xdf\xbf\x07\xe8\xe5\x83\x43\x40\x8c\ +\xcf\xfc\x00\x20\x23\xf3\xc8\x00\x71\x49\x8e\x98\x64\x3f\x31\x48\ +\x40\xdc\xaa\x36\x32\x4a\xca\x8d\xc8\xec\xe1\xbf\xa6\xbe\x5c\xce\ +\xd8\xee\xda\x4e\x00\x74\x49\xda\x07\x3c\x33\x1f\xbc\x07\xbe\xc3\ +\xaf\xaa\xe8\x08\x9b\xb4\x11\x2c\x18\x63\x8c\x78\x64\x04\x3e\x1d\ +\xf8\xc6\x20\x25\xf8\xcd\xa7\xe3\xd2\x5f\xab\x1a\x48\x99\x18\x55\ +\x07\x89\x4d\xb2\xf0\xd7\x0a\x98\xc9\x83\xbf\xc7\xe0\xef\x02\xfc\ +\xae\x66\xed\x82\x19\x7c\xc3\x34\x4a\x74\x16\x23\x70\x0d\xd3\x31\ +\xac\x03\xb6\x1f\xd8\xce\xb0\x31\x6e\x7b\xd6\x8a\x8c\x5f\x2a\xd8\ +\x8e\x55\x09\x28\x23\xb4\x2c\x98\x94\x0c\xc3\x54\x65\x00\xa7\x4c\ +\x7a\xe8\xff\xe4\x54\x1d\x74\x81\x30\xc3\xb0\xe7\x96\x4b\x3d\x3d\ +\x3d\x74\xc4\x59\x72\xc4\x21\x77\x3d\xfd\x1e\xc7\xdc\x15\x59\x28\ +\xfb\x3b\x03\xe3\x9a\xb0\x58\xf6\x4d\x06\x7f\x1b\x85\x05\x77\xc1\ +\xe7\x12\x3e\x77\x02\x12\x14\x3c\x12\x92\x95\xb8\xe8\x60\xc4\x32\ +\x7c\xab\x60\x65\x03\x2b\x67\xb8\x99\xfd\xf0\x47\x97\xbf\x24\x8a\ +\x03\x84\xb6\x32\xa8\x93\x64\x3b\x62\xb6\x88\xe0\x38\x14\xb7\x1c\ +\xe8\x00\xbe\xa7\xdf\x94\xe1\x2f\x07\x77\xc3\x84\xe7\xe8\xb3\xf8\ +\x2f\xd8\x07\xfa\x97\xcd\x9f\xb6\xe1\xbf\x0c\x82\x5d\x96\x3b\x3a\ +\xf5\xb2\x2d\xb9\x9c\xd3\xfa\x4a\xb0\x45\x96\x6f\x64\xcb\x9e\x67\ +\xc1\x36\xd2\xfd\x82\xcd\xcb\x05\x23\xb0\x94\x9c\x91\x75\x0b\xae\ +\x47\xd7\x15\x59\xad\xaf\x2f\x0b\x86\x98\x18\x0c\x26\x0a\x16\x2e\ +\xab\x47\x2e\xcb\xe6\x0b\xb3\x63\x4b\xa2\xdf\x50\x5c\xdb\xa4\x20\ +\x41\x39\x0c\xc7\x31\xfa\x39\x20\x38\x60\xe5\x59\xea\xc9\x66\x18\ +\x6b\x54\xbe\x5d\xd3\xe7\x65\xe9\xd3\x4d\xfc\x69\x2f\x8b\x8f\x8d\ +\x90\x41\x98\x66\x0c\xb0\xe0\x21\x5e\x0a\xf4\x25\x00\xd1\x20\xfd\ +\x64\x88\xec\x80\x41\x0c\xd8\x07\x13\x49\x60\x04\x9f\xa3\x40\xd1\ +\xff\xba\xe1\xbb\x41\xb2\x81\x6c\x24\xeb\xe0\x49\x03\xf1\x49\xf1\ +\x6c\x23\x2e\x87\x39\x66\x6d\x38\x89\x36\xdd\x0f\x45\x20\xfd\x9e\ +\x65\x06\x80\x51\xa0\x04\xd3\xcb\xf6\x18\xfd\x43\x3b\x36\x23\x06\ +\x1d\xb3\xd4\x6d\x0c\x6e\xd8\xb8\x6e\x88\xfe\x33\xeb\x3a\x7e\xe0\ +\x99\xb6\x93\x00\x75\x33\xa0\xd0\xc5\xd3\xa6\x76\xaa\xae\xcf\xf3\ +\xcc\x09\xfa\x70\x8b\x78\x18\xfe\x8d\x8f\x1f\x24\x5b\xf0\x70\x52\ +\xb0\x4b\x48\x1c\x59\x24\x17\x13\xb1\x6c\xc1\x37\x6c\xdb\xed\x4a\ +\xe4\x20\x4f\x00\xfd\x7d\x0c\x7e\x1b\xe5\xfb\xe4\x22\x79\x15\x70\ +\xd1\x25\x04\x89\x22\x92\x7d\x5f\x8a\x81\x78\x86\x5c\x3a\xf0\x84\ +\x82\xe9\x19\x40\x3a\x1e\x10\x8b\xe9\x0c\x97\xe9\x3f\x4d\x0a\xb1\ +\x91\xf7\xdc\x22\x3c\x11\x21\xa8\xc4\x85\xcd\x22\x6b\xc9\x72\x58\ +\x42\x89\x53\xbc\x9a\xaa\x71\xed\xf2\x41\xc9\x5b\xda\xd8\x7b\x6b\ +\xd9\x37\xf8\xe6\xdd\x91\x7d\x8f\xf0\x30\x44\x8c\x89\x7c\xd0\x86\ +\xb3\x65\x49\xae\x6a\xc2\x93\xe6\x21\xd1\x87\x38\x77\x61\xca\x08\ +\x24\xea\x8a\xb8\x2d\x26\x9e\x73\xb5\x8e\x7e\x85\xb2\x62\xb9\x10\ +\xd8\xa5\x82\xb5\x9c\xf1\xd3\xcc\x72\xc6\x3c\xd3\x11\x50\x02\x0a\ +\x1a\xc9\x39\xc8\xbd\x86\xe5\x64\xf5\xfd\xb6\x97\x65\x87\xaa\x95\ +\x3d\xcf\xbe\xc0\xc7\x2f\x4b\xc0\x18\xbc\x8c\xb8\x48\x87\x8d\x3e\ +\xf8\x7d\x48\x3e\x21\x38\x10\x25\xba\x30\xb9\x99\x12\x5b\x01\xe2\ +\x63\x18\x19\x43\xa0\x9d\xa1\x77\x2a\xac\x64\x11\xc2\x28\x12\xfa\ +\x36\x0f\x29\xa6\x64\x50\x02\xa3\x2c\x43\x63\x4d\xf1\xf5\x51\x74\ +\x14\x00\x0e\x47\x9d\xa8\xfe\x82\xcb\x08\x88\x13\x1e\xfe\x1b\x1f\ +\x3e\x45\x3c\x3c\xb3\x73\x24\x87\x3e\x1a\x87\xaa\x24\x27\x12\xa7\ +\x5c\x48\xf6\x21\x3e\xe9\xf1\xf3\x90\x6a\x14\x97\x57\xe2\xa7\x19\ +\x5e\xf0\x2d\x63\x33\xa7\xfc\x0e\x39\x8a\x6f\x6d\x16\x1b\x7f\xb2\ +\x1c\xc9\xd4\x80\x67\x38\xcf\xc2\x37\x0c\xeb\x66\x68\x06\x53\xce\ +\x70\x14\x0e\xc6\x40\x47\x61\x90\xb1\xa8\x2c\xcb\x79\xe6\xb8\x53\ +\x71\xca\xf9\x64\x27\x60\x40\x60\x2c\x49\x45\x69\xdd\x61\x15\xdd\ +\x31\x2b\xa6\xa5\x0c\x58\x05\xa5\x10\xec\xe1\xc3\xb0\x53\x62\xea\ +\x03\x21\x23\x9a\x4c\x10\xd3\x96\xd4\x55\x2c\x8d\x59\x85\xcf\xbb\ +\xda\x98\x95\x0c\x0c\xa5\xb6\x30\x6e\x14\x51\x5c\x28\xe3\x8a\xeb\ +\x2e\x21\x50\x3f\x1d\x39\x2e\x39\x94\x78\x94\x90\x27\xd9\x96\x1d\ +\x12\x13\x99\x4c\x60\x22\x26\xbe\xe1\x70\x61\xcf\x58\x09\x63\x53\ +\xd3\x1d\x3a\xba\xed\xc3\x1c\xaa\x40\xdb\xe2\xad\xea\x78\xe5\xec\ +\xa2\xe5\xf8\xb6\xeb\x4c\xcf\x66\xa2\xa7\x8e\xb2\xf0\x61\x78\x3b\ +\xd0\xa8\x62\x40\x0c\x87\x38\x9a\x03\xba\x58\x18\x2b\x0a\x86\x26\ +\xf9\x68\xc5\xd7\xdb\x01\x75\x26\xbc\x98\x61\xc8\xd2\x5e\x75\xc7\ +\x9d\x61\xcf\xcc\xe9\x47\x40\x7e\x87\xaf\x5e\xa4\xbd\xba\x3f\x8d\ +\x42\xc4\x25\x20\xfd\x77\x0e\xe5\x9b\x8f\xc7\x64\x4c\xaa\x59\xdd\ +\x1a\x71\xd1\xb1\xca\xb8\xa2\xa2\x54\x9f\x41\xa1\x46\x25\x4d\x17\ +\x52\x67\x9f\x7d\xa0\x54\x70\x73\xc9\x7c\xc0\x37\x80\x94\x00\x99\ +\x76\x11\x78\xbe\x27\xbe\xec\xa6\xa4\xe7\x97\x33\x80\x71\x40\x71\ +\xde\xcc\x5a\x7e\xc5\x45\x2e\x20\x5b\xe5\x89\x36\xb8\x4c\x1b\x65\ +\x5a\xbb\x52\x9c\xf1\x45\xba\x6b\x83\xa3\x56\x90\x1d\xa1\x83\xcd\ +\xe1\x83\xd1\xff\x5f\xc5\xbe\xe6\x5a\x47\x3f\x8e\x65\x55\x1d\x94\ +\xef\x37\xc0\x53\xe3\x70\x2c\x34\x19\xc3\xbf\xc1\x57\xce\xc2\x53\ +\x40\xf1\x54\x48\xc4\xb3\x1d\xc1\xb3\xa1\x31\x1e\x8a\x61\xa5\xe1\ +\x2f\xdf\x5e\x0e\x2a\xe0\xc9\x05\x45\xca\xe0\xb3\x1a\xfe\x88\x65\ +\x05\x3d\x15\xc0\x69\x06\xfe\xe1\xe1\x16\x2a\x6a\xa9\x3d\x3b\x67\ +\x23\x89\x36\xb3\xe7\xe9\x3f\x39\x8f\xc7\x87\xab\x66\x23\xa3\x50\ +\x27\xcc\xe4\x3c\x7e\x0c\xe9\x60\x38\x2a\xbc\xe4\xc0\x47\xd0\x91\ +\x18\xc8\xb0\x57\x36\xf0\x36\xa5\xc9\x44\xe7\x5a\x80\x2c\x59\xd0\ +\x48\x32\x6b\x6f\x59\x67\x3b\xb6\x3f\x62\x08\xae\xc3\xf5\x5e\xf6\ +\xad\xe4\xb4\x6b\xb4\x91\x18\x67\x08\xb1\x71\x54\x51\x2d\x64\x94\ +\x93\x21\x21\xe0\x84\x4e\x5f\x27\x1b\x15\x59\x00\xd7\xf8\x83\x11\ +\xb7\x1c\x18\x59\x60\xeb\x14\xcd\x0c\x65\xc9\x20\x3c\x18\xd3\xa9\ +\xe5\x62\x24\x83\x72\xb9\x01\x95\xa3\x1a\x96\xb4\x6a\x18\x2f\xb7\ +\xfe\xdb\x58\xa3\xae\x5f\xf9\x21\x42\x0c\x6b\x59\xa7\x29\x86\xb7\ +\x8a\xab\x57\xe9\x55\x2b\xbe\x97\x72\xf9\xad\x00\x74\x5c\x6c\xd6\ +\x0a\x91\x1c\x7d\x7c\x0e\xea\xf2\xc9\xda\x5f\xed\x16\x90\x45\xda\ +\x4b\xf4\x9f\xf8\xd2\x0f\xd1\x86\xb2\x98\x69\x58\x65\x72\x91\x9d\ +\x64\xd1\xda\x68\xc6\x2b\x0a\x35\xb9\x82\x45\x85\x65\x11\xa9\x9b\ +\x6e\xc3\xaa\xff\x71\xf4\x87\x16\x98\x20\x99\x46\xe1\x99\x92\xd4\ +\x9c\x74\x24\xec\xdb\x82\x02\x39\xf1\xe8\x67\xac\x60\xdc\xb2\x1c\ +\x63\x15\x93\xd6\xfe\x0c\xa4\x54\xd6\x2d\x4d\x24\xa1\xb6\x99\xef\ +\x87\xa9\x19\x8f\xf5\xdb\xf2\x79\xdf\x0a\x34\xc5\x91\x7d\x81\x2f\ +\x7c\x52\x6c\x20\xac\x38\xca\x1f\xa2\xfc\xed\x7f\x17\x66\x37\xb0\ +\x55\x24\xf0\xa8\x43\xc0\x63\x1c\x31\xf3\xd1\xc0\xb0\xa4\x8a\x1c\ +\x57\xfa\xe6\xe9\x06\xa1\x2d\x35\x74\x4d\xff\x55\x0a\x55\x33\x2c\ +\x89\xbd\xaf\x0e\x55\x9d\xd4\x16\x63\x8f\x1f\x8c\x30\x21\x66\x30\ +\xdb\x80\x45\xaa\x83\xfe\x8f\xef\x43\x92\xcd\xeb\x59\xcc\xcc\x05\ +\xdb\x77\x62\x38\x8d\x46\xa5\x49\xb1\xed\xec\x1d\xae\xf7\x84\x16\ +\xa3\x64\x31\x7f\xa8\xc2\x6b\x93\x11\x8c\xc4\xad\x79\x1b\xfe\x8a\ +\x32\xe8\x55\x5c\x26\xfb\xe8\xe7\xf2\xe0\xb7\x80\xcb\x68\xe6\x22\ +\x4c\x65\x0c\x4b\x10\x97\xc4\x19\x2d\x77\x00\x44\x6d\x38\x4d\xab\ +\xd9\x21\x9e\xa8\x62\xbe\xce\xed\x49\x80\x2b\xed\x4f\x3e\x5e\x71\ +\x08\xaa\x38\xba\xd2\x4e\xdb\xaf\x8e\xf9\x0e\x37\x00\xe8\x34\x6a\ +\x66\x5f\xe0\x4b\x8f\x87\x5e\x9a\x5e\x61\xfc\xdf\x75\xd4\x77\xb0\ +\x95\x24\xb3\xd1\xb4\xa7\x3d\xab\xac\xee\xf0\xa1\xd7\xd0\x34\x0b\ +\x16\x44\xa5\x4c\x21\x86\xdd\xba\xc1\xac\x59\xd0\xcd\x69\xfc\x37\ +\xbe\xf4\x7f\x23\x2f\xa5\x51\xc7\x99\xb5\x47\xe5\xba\x83\xea\xb5\ +\xf3\xff\x41\x87\x38\x74\xfc\x9f\x8f\x8b\xad\x20\xc5\xb8\xc7\x2b\ +\x63\x82\xe5\x8e\x87\xe2\x10\xd8\x6f\x0c\xa7\x0b\xc8\x36\x8e\x43\ +\x8b\xfb\x0b\xe2\xce\xea\xd6\x41\x66\xaa\x49\x47\xf4\x6c\x3e\x0a\ +\x7e\xad\x3c\xd1\x81\x1c\xcb\x46\x8e\x4e\x2d\x89\xb1\xc4\x5d\xf1\ +\x71\x67\x98\xeb\xb6\x08\x7f\x7b\xb8\x93\x36\xfe\x4a\x35\x2f\x61\ +\x12\x8d\x32\xfb\x1c\x9f\x2e\x72\xac\x33\x65\x55\x40\xa9\xb8\xfc\ +\xa9\x0c\x1c\xa0\xbb\x42\x41\xe2\x8c\x2a\xa4\x0c\x9b\x66\x11\xb0\ +\x66\x52\x9f\x30\x3c\x41\x31\x6c\xfb\xd3\x2e\x68\x65\x04\x39\x0c\ +\x78\x4f\x5a\x74\xcc\x8d\xce\x36\x95\x7e\x9b\x93\xc0\x74\x0f\x0a\ +\xeb\x76\xdc\xf5\x46\xa9\x2a\x5c\x2a\x98\xa0\x20\xe7\xc1\x2e\x1b\ +\xb6\xdc\xa2\x15\x78\x13\xec\xa0\x70\xd3\x35\x04\xc1\x76\xfa\x2c\ +\x8f\x6d\xc4\x21\xd8\xa1\xcf\xaf\xf4\x7e\xed\xd5\x29\x06\xcc\x90\ +\xb5\xf0\x62\x8e\xef\xd0\x28\xba\x78\x5d\x64\xd5\x05\xee\x90\x1d\ +\xc5\x7f\x8f\xe1\x84\x92\xf9\xc5\x54\x41\x65\x33\x32\x35\xd1\xc0\ +\xb3\x89\xfe\x13\x4d\x5f\x76\x9d\x31\xcb\x0b\x8c\x8c\x9d\xb3\x29\ +\x03\x87\xb5\xc2\xe6\x4c\x48\x7d\x8c\x59\x95\x34\x40\xc0\xec\x47\ +\xdd\xf5\x26\xe0\x1f\x31\x4b\xd6\xaa\x81\x5d\xb6\x35\x8e\xf0\xaf\ +\x8b\x88\xa7\x55\x64\x80\x9f\xba\x61\x74\xac\xe5\xd2\xa9\xb6\x12\ +\xc6\xa5\x42\xd4\xe0\x44\xc6\xaa\x01\x63\x0c\xa6\x02\x6b\x31\x9f\ +\x18\xab\xa8\x00\x95\x82\xc3\x43\xf1\x68\x72\xae\x93\x41\x5e\xa5\ +\xeb\x22\x6d\xa1\x79\xa6\x18\xf2\x2c\x1e\xff\x80\x97\xd1\x31\x45\ +\x99\x48\x01\x81\x67\x54\x17\xe0\xf2\x46\x35\x0a\x14\x4c\x2b\xca\ +\x54\x60\x4a\x77\xdc\x18\x04\x16\x61\xac\x35\xbd\xd0\x94\xee\x38\ +\xfd\x1a\xbe\x0d\x85\x5c\xd4\x94\x03\x38\x49\x1e\x4d\x6e\x1f\xa9\ +\xa4\x84\xaa\x2b\x02\x22\x27\x98\x4f\x07\xf2\xf9\x6e\x52\x56\x04\ +\x1c\xc7\x2d\x64\xa6\x9c\x6b\x6d\xcc\x4f\xec\x2a\x17\x13\x7c\x37\ +\x13\x75\xe1\x38\x3d\x56\xe2\x38\x54\xca\xc4\x5c\x51\x9a\x0e\x3f\ +\x64\x1d\x50\xba\x22\xa5\x08\x5f\x5b\x4b\x2d\xfd\x35\xe9\xe1\x35\ +\xdc\xa9\x08\xe6\x29\xb2\xfb\x15\x20\x0e\xfc\xd0\x37\x06\xd5\x87\ +\x90\x00\xe9\x51\x61\xc2\x21\x17\xd9\x8b\x23\x86\xdc\x61\xd0\x2f\ +\x38\x87\x2e\x67\x01\x4e\x63\x8b\xcb\x5c\x50\x0b\xf9\x8c\xf8\x44\ +\x3f\x7f\x80\xae\x84\x3e\x80\x30\x38\x21\x18\x58\x98\x6f\x05\x32\ +\xd2\xe8\xb7\x53\xc0\x22\xd1\xe9\x33\xa7\x26\x7c\xcf\x1d\xa0\x51\ +\xd5\x44\x42\xbd\x82\xc1\xc4\xe4\x92\x0e\x19\xc2\x8e\x4c\xcd\x01\ +\x3c\x49\x45\x21\xdd\x6a\x4e\x8e\x60\x14\x35\x48\xfc\xcb\x91\xda\ +\x64\xd4\x18\x57\x07\x69\xae\xc2\x64\x60\x3b\x65\x4b\xa2\x71\x7e\ +\x64\x62\xfc\x55\x4e\x9a\x49\x40\x61\xaa\x89\xa7\x40\x9b\x83\x14\ +\x4b\xbf\xc9\x84\xd0\xd6\x1d\x41\x9b\x82\x53\xa1\x2c\xeb\x16\x8b\ +\xc0\x00\x19\xce\xa6\x06\xfd\x6e\xf4\xd9\xc4\xc3\xbc\x3a\xf0\x3a\ +\x03\x4a\xf2\xa3\xa5\xb1\xf2\x3b\xe1\x68\x9a\x48\x3f\xca\x25\xde\ +\xc9\x99\x7c\xa7\x94\x3e\x74\x66\x3d\x80\xdc\x29\x97\xbd\x6e\x70\ +\xdc\x2c\xf9\x46\xce\xf6\x41\xe6\x4d\x18\x45\xba\xde\x04\x76\x2a\ +\xa5\x00\x75\x95\xe7\x3d\x2a\x9f\xa9\x24\xc8\x17\xcc\x80\x7a\x55\ +\x90\xdd\x1e\xa1\x23\x64\x80\x0d\x28\xf1\xd1\x8d\xec\xca\x95\x18\ +\x89\x52\x50\x08\x17\x2a\x3e\xcc\xe9\x46\x07\x6f\xda\xa9\x56\xc6\ +\x0e\xbf\x1d\x3b\xfc\x1e\xba\x58\x2c\x40\xa9\x6e\xbb\xb6\xf0\xe9\ +\xd6\x7b\x76\x4e\xf3\x85\xb1\x6f\xe9\x97\x9c\xb9\x6c\x91\xdb\xca\ +\x68\x4c\x77\xd5\xe8\x23\x0b\x17\xb3\x92\xbf\x6a\xae\x85\x3a\xbd\ +\x31\x6e\x3c\x6c\x03\xbe\x9d\x15\x6e\x3e\x5f\x79\xf2\x95\x09\x78\ +\x0c\x03\x10\x96\x2c\x66\x6c\x71\x82\xc1\x86\xc6\xa7\xdc\x9e\xb3\ +\xfa\xa9\x16\x17\x19\x5b\xd3\xa7\x92\xd0\x29\x97\xa8\x09\x1b\x60\ +\x43\x70\x9a\x92\x96\x28\x41\x68\x05\x4e\xef\xf1\x20\xc2\x01\x65\ +\xc8\x0d\x79\x76\xd1\x3a\xa0\x59\x28\xec\x0b\xfa\x4a\x55\x2b\x2a\ +\x34\x70\x6e\xd0\xc2\x15\x4a\xa8\x88\x61\x33\x85\xb5\x0c\xe7\x43\ +\xfc\x36\x9d\xc7\x5a\xbc\x4b\xcf\x1a\x65\x2c\x26\x27\x9b\x88\xd7\ +\x3f\x51\xf0\x25\x99\x1a\x51\xa3\x24\x29\xda\x13\x9e\xcd\x0a\x45\ +\x7f\x0c\x54\xf7\x3c\x54\xab\x0b\x24\x1c\x7a\xb5\xa3\x0a\xa0\x44\ +\xd9\x35\x14\x43\x3e\xc5\x37\x30\x2f\xcb\x49\xce\x61\xe9\xe6\xbf\ +\x7b\x65\x1a\xb4\xa0\x8e\x60\xa0\x11\x0c\x42\x70\x99\x4c\xb7\xcd\ +\x17\xf6\x8a\x34\x56\x7c\x34\x54\x78\xde\x06\x0f\x0a\x19\x2c\x6d\ +\xc4\x71\xbd\xa2\x59\x60\xd6\x8c\x8d\x3a\xa5\x9f\xb8\x6b\x20\x53\ +\xb6\xb3\xe8\x61\x95\x19\x72\xea\x0a\x96\xed\xa0\x71\x11\x89\x69\ +\xc9\xd5\xcd\xde\xe9\xe4\x5c\xa3\x60\xfa\x81\x1e\x94\xe2\x71\x3b\ +\xfa\x9b\x74\xc7\x5e\x11\x9a\x47\x60\x3b\x79\xae\x70\xc0\x34\x36\ +\x3b\x11\x39\x10\x76\x24\x21\x87\x19\x3f\x2a\xf0\x1a\x73\x4f\x4b\ +\xb8\x57\x53\xd8\x44\xb0\x95\x42\x8f\x61\x56\x85\xc3\x7c\xc5\x30\ +\x6c\xd2\xda\xbe\x0c\x74\x55\x42\xa5\x3f\x49\x82\x4c\x1d\xf3\xa2\ +\xcf\x74\x47\x4e\x8a\x15\x52\xf4\x44\x3c\xc1\x95\x99\x3c\x2a\x49\ +\x4c\x65\x50\xa9\x13\x51\x0e\x8d\x57\xe6\xf3\xd8\xdc\xfe\x51\x52\ +\xb0\x52\xf4\xec\xdd\x9b\x5c\x24\xad\x8a\xa1\x33\xd7\xb1\x90\x60\ +\xb3\xcc\x58\xf1\x31\x78\x01\x0f\x51\xb1\x84\x24\x99\xb7\x0b\x05\ +\xf8\x37\x12\x30\x3e\x59\x76\xec\xc0\x52\x51\x35\xee\x44\xdb\x59\ +\x52\x31\xb5\x79\xc8\x9f\x73\xf2\x50\xe6\x22\x8c\xb3\x81\x3f\x5c\ +\xe1\xf5\xab\xc3\x2e\xd1\xaa\xbf\x90\xf8\xd1\x69\xc9\x20\x5d\xa0\ +\xa0\xef\xe6\xa6\xdc\x92\x44\xce\x11\xb1\x09\x66\x1a\x29\x96\x00\ +\x6f\xae\x98\x60\x82\xd0\xef\xa6\xd1\xee\xae\x01\xfa\xb1\x64\x46\ +\xe1\x10\xfa\x06\xd7\xc5\xe5\x52\x94\x2b\x08\x07\x4c\x7a\x7a\x0d\ +\x2c\x60\x52\x0a\xac\x98\x0a\x13\x8a\xe4\x57\x8e\xe2\x2f\xea\x17\ +\x5b\x2e\x54\x11\x5c\x07\xd5\x42\xd6\xaa\xb4\xa0\xc3\xd4\xdc\x43\ +\xae\x9e\x19\x73\x0c\xdf\x17\x93\xd3\x6d\xa5\x04\xc7\x0e\x1c\x15\ +\x10\x90\x66\xd0\x76\x34\xf3\x02\xa1\xc0\x2b\x8a\xe9\x2b\x04\x54\ +\x57\xa1\x2f\x1f\xbd\xbe\x6c\xf7\xf6\x0e\xd8\x66\xc1\x1d\x86\xcf\ +\xc2\xf0\xa0\x15\xd0\xa4\x03\x1f\x07\xe5\x32\x97\x0d\x63\x61\x9e\ +\x95\x29\x23\x0d\x2c\xd0\xe6\xa2\x56\x94\x25\x22\xd6\x37\x48\x76\ +\x91\xf5\xb8\x8a\x49\x3c\x97\x66\xc8\x64\x3d\x16\xa6\xb6\x3c\x07\ +\xb6\xdf\x18\xdc\xb5\xde\xd8\x6e\x06\xf4\x9f\xbe\x51\x70\xb3\xd2\ +\x7d\x91\x02\xa4\x05\xa0\x43\x8d\x71\xb6\xa1\x29\x67\x74\xaf\x94\ +\x42\xd1\x57\x18\x37\x27\x40\x66\x80\xb5\x98\x72\x58\x0f\x87\xb5\ +\xe5\xc0\x8a\xe2\xf7\x6b\xf4\x1d\xe6\x57\x5d\xc8\xbb\x2d\x44\xf1\ +\x30\x48\xf1\x06\xcd\x7d\x47\xf5\x8e\x36\xc4\x4e\xa5\x33\xb4\x44\ +\x45\x9b\x05\xb8\xcc\xe6\x95\x7c\xa5\x0b\x94\x4b\x33\xc3\x15\x23\ +\xba\x6b\xc6\xa8\x35\xb1\x24\xe5\x82\x9a\x61\xeb\x28\x6e\x4c\x2d\ +\xa9\xb1\xae\xcf\x83\x57\x52\x0e\xb0\x98\x6c\x43\x7e\xcd\xb2\x24\ +\x85\x71\xcd\x12\xd5\x14\xef\x58\xad\x90\xbe\xd6\xcc\x8e\xfa\x20\ +\x37\x46\x8c\xd5\xff\xad\x53\x9c\x9a\x34\xc5\xa9\xff\xad\x53\x9c\ +\x9e\x34\xc5\xe9\x29\xa7\xb8\x11\xa6\x98\x94\x26\x43\xc0\x45\xdb\ +\x18\x2a\x47\x26\x4e\x47\x39\x89\x85\xa2\x27\x90\x42\x26\x47\x3d\ +\x8f\xf0\xc6\x7e\xce\x82\x4f\x92\x1e\x28\x5d\x8d\xa3\xe9\xc0\x39\ +\x4d\x78\x07\x6c\x44\xe0\x4f\x16\x26\xd5\x94\xf9\x9c\x8c\xd9\x62\ +\xa2\x8f\x5c\xca\xbb\xfa\x47\xac\xec\x28\x73\x51\xda\x79\x63\xc2\ +\x2d\x1b\xe3\x26\xcd\x8d\xa6\xf1\x37\xe0\xc3\x40\x60\x27\x0d\x30\ +\xf9\x83\xc9\xc2\x19\xcb\xb0\x8b\x25\xd7\xa3\xa2\x2d\x70\xdd\x9e\ +\x94\xcb\xbf\x63\xc6\xcb\x67\x0b\x72\x50\x32\x31\xed\xc5\xe5\xb2\ +\x82\x25\x0f\x33\xce\xe2\xe2\x79\xa4\xa8\x29\xa1\x9b\xdd\x22\x63\ +\x3c\x5f\x81\xba\x7d\x97\x22\x6a\x7c\xe9\xa3\x18\x66\x72\x5f\xa2\ +\x43\x77\xec\x0c\x4e\x81\x08\xc7\x75\x96\x3b\x60\x34\xe6\x8c\x0c\ +\x30\xa2\x51\xc0\x49\xc6\x1a\xb6\x1d\x87\x25\x5f\xd1\xbc\x63\x63\ +\x69\x12\x76\x52\x22\xa7\x55\xa4\x3d\x86\x8e\x4a\x23\xcb\x04\x4c\ +\x7d\x4e\xf4\x51\x4e\x8d\x8d\x92\xf6\x28\xe8\xa3\x9c\x1e\x1b\x25\ +\x2d\xb5\xf7\x82\x50\x10\x0a\x65\x11\x3d\x79\x22\x02\xc1\x05\x58\ +\xe5\xec\x70\x39\xe7\x91\xfd\x98\xc8\x5d\x34\x4b\x25\xc4\x26\xea\ +\x94\x98\xe6\x9d\x12\x88\x1e\x38\x2c\x26\xa6\xdd\x05\xdc\x03\x11\ +\x05\x46\x64\x9f\xb8\x21\x85\x69\x8e\x9a\x98\x6e\x30\xa8\x64\x56\ +\x6a\x3e\xb2\x03\x15\x30\x91\xaa\x1b\xd6\x75\x84\x4d\x54\x54\xde\ +\xd2\x7e\xa1\xa6\xcc\x40\xdc\xce\x41\x7d\x24\x59\xd7\x6b\xd5\x9d\ +\x5f\x29\xc7\xeb\xd4\xf6\x8a\xf9\xe3\x7d\x74\xf8\x96\xb9\xc7\x5e\ +\xdf\x93\x39\x21\x87\x1c\x66\xda\xa7\x9c\xa5\x1b\xa0\x2e\xe2\x41\ +\x14\xd1\x14\x2b\xc5\x7c\x47\x84\xe6\xc3\x10\x8a\x41\x0f\x62\xca\ +\x49\xe7\x73\xc7\xaf\x48\x4f\x15\xc9\x66\x6a\x82\x0e\xa6\x6b\xf2\ +\x98\x00\xd3\xb1\x53\x0c\x7c\x1a\xea\xdc\x22\x5c\xcd\x84\x39\x33\ +\x3a\x8a\x68\x82\xd0\xbf\x7d\xee\x41\x49\x4e\xb7\x3d\x92\x4f\x5c\ +\x32\xa9\x37\x2a\xf0\xec\xac\xee\xfa\x4f\x01\xc2\x5c\xa0\xee\x3d\ +\xa0\x59\x1b\x18\xe0\x8b\x6d\xd4\xc0\x9e\x75\xd4\xf1\x57\x34\xc1\ +\x24\x2b\x51\xec\xa5\x1d\x77\x1e\x7a\xfe\x72\xf2\xb0\x46\x4f\x47\ +\xdb\x80\x95\x37\x41\x2d\x9f\xd1\xee\x9f\x15\x19\x74\x0c\x7d\x5a\ +\x36\x11\x39\xd5\xdc\x33\x4e\x44\x7c\x27\x9a\x9a\xaa\x16\x76\x82\ +\x98\x7e\xc4\xb2\x87\x47\x02\x74\x6e\x06\x60\xff\xfb\xa8\x4a\xcb\ +\xdc\xd0\xb4\xab\xed\x0a\x03\xa6\xb1\x25\xb3\x02\x5b\x9a\x2d\x00\ +\x98\x29\x3b\xea\xd6\xa6\x52\xe6\x6a\x8e\x0a\x32\x10\x7d\x26\x2a\ +\x94\x22\xc9\x50\xa1\x7b\x9e\x98\x2e\xb0\x8a\xa5\x02\xa5\x18\x4c\ +\x27\x4c\x39\xe7\xf1\x91\x39\xf3\x78\xde\x82\x30\xce\xe3\x4b\xa3\ +\x08\x05\xcc\x3a\x69\xa7\xe9\x4a\xbb\xbd\xca\x33\x1a\x9a\x8a\xed\ +\x65\x6a\x26\x1b\x9e\x4c\x0f\x91\xca\xe0\xa8\x36\xd5\xe1\x62\xaa\ +\x50\x74\x34\xe5\x64\xab\x90\x83\x50\x8f\x40\x9c\x28\x05\xb1\x32\ +\xf6\xc5\xac\x82\x82\x46\x29\xc7\xca\xdc\x60\xdf\x58\x6c\x6c\xb6\ +\xc0\xe2\xc6\x82\x12\x77\xdc\xf0\x45\xa5\x50\x0a\x10\x4e\x06\x5e\ +\x63\x73\x55\x89\xd1\x4c\x16\x2d\x50\x91\xf2\x9b\x74\x5e\xd4\xea\ +\x17\x68\x40\x94\x3c\x2b\x6b\xd3\x3f\x8d\x82\x35\x66\xa5\x55\xf1\ +\xdb\x55\x96\x53\x48\x3f\xa9\x1b\x70\x83\xd4\xca\x49\x78\x90\x53\ +\xc3\x83\xa4\xd5\x4d\xc2\x83\x9c\x1e\x1e\x24\xad\x6a\x32\x97\xb2\ +\x6e\xe9\xb7\x8f\x12\xcb\x5c\xe6\xeb\xb5\x1d\x30\x3b\xa9\xd2\x2b\ +\x5d\xf6\x29\x46\xde\x80\x82\x99\x6e\x14\x0d\xc8\x32\x55\x3d\x1e\ +\xff\xa0\x7f\xa9\x5a\xa4\x09\x38\x92\x26\x77\x1f\x14\xd1\x1e\x3c\ +\xa8\x51\xd0\xf1\x67\x1f\xa0\xca\xa4\x01\x1a\xb8\x30\xf7\x40\x21\ +\xa7\xc9\x5a\x0c\x36\xcb\x4f\x2f\xb2\xe6\x85\xa0\xe3\x95\x6c\xba\ +\xea\xc0\xe7\x1a\x9c\x01\x69\x2e\xc4\xb8\x24\xad\x7d\x8c\x7b\xa1\ +\x35\x21\xbe\xce\xd6\xb2\x24\x32\x13\x46\x8e\x1d\xc8\xd4\x7c\x73\ +\x3d\xc6\x80\x45\x20\x48\x77\x4d\x8e\xca\x98\x18\x37\xd3\x14\xdf\ +\x5c\x6f\x39\x96\x67\x16\xb8\xf3\x5e\x0c\x9b\x72\xce\x63\xa6\x9e\ +\x53\xce\x32\x4b\xcc\xe2\xcf\x6c\xfc\x95\x38\x3e\x45\x17\xcb\x85\ +\x88\x86\x93\xa2\x59\x3b\xa6\x36\x63\xc1\xcd\xc0\x84\x34\xc9\x66\ +\x26\xc4\x69\x90\x5d\xcc\xbc\xe2\x73\x44\xc3\x1e\x6a\x4d\xad\x34\ +\x58\x63\xf8\x25\x33\xcb\x93\xe8\x53\xe9\x43\xeb\xb9\x56\xa7\x65\ +\x1a\x11\x16\xbf\x64\x59\x35\x63\xd2\x75\xa5\x9b\x6e\x6a\xd6\xf9\ +\x98\x09\x63\x14\xcc\x09\xcb\xe3\xce\x52\x66\x6b\xa5\x83\xa0\xaa\ +\x15\x0c\xcc\x31\x38\xca\x32\x20\x8d\xe6\x64\x20\xe9\x83\x86\x18\ +\x74\x6e\xe9\x71\x32\x75\x39\xeb\x16\x2e\x70\x9b\x2b\xef\x60\x79\ +\xf3\xbc\x04\xe1\xb0\xca\xc5\x8c\x09\x95\x31\xa4\xde\xa0\xff\x5a\ +\x83\xda\x60\x20\x5d\x62\x67\xe2\xdb\x16\x1c\x75\xa6\x4e\x64\x23\ +\x6e\x77\xe1\xa6\xd7\x8d\xd4\x1c\x77\x86\x07\xa1\x10\x59\x0e\x35\ +\x4b\x56\xee\x41\x73\x99\xf4\x9c\x09\xe1\x50\xd3\x43\x58\x37\x6c\ +\xb0\x3c\x0b\x6d\xd9\xac\xe9\xc0\x9e\x02\xff\xcf\x4f\x60\x0d\x0d\ +\x4d\x91\x71\x69\x5e\x10\x48\x79\xb0\x3f\xa8\x5c\xa4\x0e\x37\x6a\ +\xec\xf8\xfa\x97\x6b\x4a\xcc\x05\x77\x26\x3d\xb5\xf0\x15\xaa\x92\ +\x60\x14\x83\x5e\x49\x87\x04\x83\xd7\xcc\xe5\x98\x7d\x86\x6e\xef\ +\x00\xd4\x30\xd3\xcb\xf1\x63\x07\x8f\x65\x47\x0c\x3e\x44\xda\xc3\ +\xb1\x15\x63\xc2\xa3\x72\x63\xf4\x45\x0e\x46\x13\x43\xf8\xf6\x32\ +\x43\x82\x21\xd4\xe3\x91\x12\x2b\x72\x74\x16\x6d\xb0\x73\x56\x42\ +\xe6\x88\x01\x5f\x80\x64\x2e\xfb\x69\xcf\xd2\x9a\x08\x80\x2a\x3e\ +\xca\xb2\x9a\x84\x65\xe6\x22\x4b\xc4\xaa\x44\xa4\x8c\xb0\x9b\x7b\ +\xae\x06\x0e\x55\x4d\x32\x96\x93\x4d\xab\x4b\x96\x48\x1f\x73\x9a\ +\xc8\x80\xa0\x70\xae\x30\x47\x49\x77\xe4\x74\x53\xd5\xb6\x81\x53\ +\xaa\xe0\x67\xfb\xb9\xed\xa2\x9c\x91\x36\xcf\x20\x62\xb4\xa5\xc2\ +\x48\x3a\x12\x97\x6d\xcc\x1b\x59\xea\x29\xb1\x72\xdd\x40\x48\xc3\ +\x94\x57\x8c\x53\xfe\x4e\xcd\x74\xc0\xe5\xf8\x88\xe5\x60\xc8\x27\ +\x3d\xf3\x78\x39\xc5\x62\xd6\xe1\x81\xb5\x48\x3f\x3c\x3b\x20\x17\ +\x53\x62\x09\xb7\x58\x57\x22\x0e\x4a\x89\x1f\xa9\xf0\xbf\xad\x84\ +\x2c\x02\x23\xe4\xbe\xa7\x11\x8d\xed\xc4\x44\x05\x2a\xe0\xd1\x0b\ +\xe1\xa1\x12\xec\x84\xcd\x18\xf0\x34\x35\x31\xa7\x83\x0c\xc1\x25\ +\x2c\xff\x98\x8d\xcd\x4c\xdd\x70\x47\x00\x4b\x47\x5d\xde\xb3\xac\ +\xac\xc9\x71\x47\x13\xf4\xe0\x00\xed\xc7\x20\x47\x16\xfe\x3f\x0b\ +\xa4\xa1\xaa\x43\x19\x3b\xc4\x18\x51\x8f\xb1\xd6\x1a\x37\x3d\xab\ +\x9b\x39\xaa\xe8\x11\x0c\xcc\x51\x8b\xe6\xfe\x8d\xc0\xd1\xe5\x7d\ +\x06\x52\x20\xfd\xb5\x08\xd2\xcb\x5a\x86\xc1\x74\x34\x54\x0e\x39\ +\xc1\x33\x11\x1a\x12\x09\x21\x8e\x54\x77\x98\x2b\x8f\xcd\xa3\x1f\ +\xe6\xd8\xd9\x20\xd1\x52\x26\xba\x29\x1b\x25\x31\x30\x3e\x5b\xe4\ +\x99\x83\x66\xc8\xe7\xc9\x0f\xbe\xe4\xf1\x7a\x9e\x8c\xa2\xde\x09\ +\x7d\x0b\xb4\xcc\x05\x45\xc5\xcc\xc9\x0e\x6c\x6d\x0c\x34\x65\xea\ +\x56\x47\x82\x56\x8f\xca\x93\x6a\x00\xfa\x59\x81\x42\x8f\xb1\x0d\ +\x7e\xf7\xc6\x6d\xdf\x32\x5c\xa7\x30\xc1\x5e\x29\x63\x51\x92\x29\ +\x92\x6e\x52\x6e\xcb\x5d\xa9\xb6\x25\xce\x05\x85\xa5\xc5\xe3\x29\ +\x72\xab\xd2\x6e\xce\x30\xcf\xe0\x0a\xa3\x51\x24\xd0\xe2\x6c\x12\ +\x89\x03\x51\x24\x0e\xea\xcc\x14\xd1\x98\xb1\x30\xac\xe2\x20\x2a\ +\xc0\xd6\xf0\x50\x06\x01\x87\x45\xc6\x5b\x4a\xcf\x1b\x1e\x8e\xe0\ +\x23\xe0\x4c\x35\xce\x21\x7c\xee\x88\xd1\x75\x50\xbb\x82\x58\x67\ +\x27\x99\xaa\x21\x23\xf4\xef\x10\x6b\x64\x59\x0c\x4a\x59\x10\xfa\ +\xba\x72\xbd\x4f\xa7\xb5\x9f\xbb\x31\xcf\xdd\xc8\xbe\xc6\x2a\x35\ +\x15\x58\x13\xaf\xe8\x58\x97\x38\xb3\x0e\x70\xdf\x31\x68\xf9\x27\ +\xe5\xa4\xa2\x9f\x56\x70\xfe\x34\xc6\x48\x19\xfb\x4a\x26\xa2\x58\ +\x66\x78\x4c\x46\xe8\x9d\x3e\x04\x19\x89\xbc\xb4\x31\xa9\x59\xa9\ +\x6c\x34\x16\x3c\x97\xa7\x35\x34\x5a\xf8\xc9\x28\x0f\x29\x71\x5e\ +\x20\xda\x6d\x30\x17\x3f\x2b\x0a\xac\xac\x0b\xbb\x49\x88\x96\x8a\ +\xb1\xc4\xea\xa8\x55\x0a\xe0\xa8\x7a\xae\xef\x8b\xd3\xd8\x6d\xb8\ +\xf2\xc8\x8a\xac\xb8\x10\x03\x00\x3d\xc6\xa3\x66\xa0\xe1\xb8\xcb\ +\x67\xaa\x6a\x8f\x54\xd8\x86\x24\xaa\x75\x75\xff\x64\xe2\x99\xb5\ +\x10\xd5\x39\x22\xb2\xa5\x34\x99\xa5\x82\x38\x49\x88\x40\xdd\x4b\ +\x23\x2e\x9e\x73\x00\xd4\xa5\x55\xf1\x32\xa9\x92\x52\xc7\x9e\x9b\ +\xb8\xb0\xb1\x8a\x14\x56\x46\xd0\x27\x05\xe8\x7c\x79\xca\x1d\x14\ +\x67\x37\xc9\xba\x6e\x19\x45\xab\x6e\xbd\x94\x23\x1a\x35\xa3\x0d\ +\x91\xd4\x31\x95\x8c\x29\x73\xc8\x18\x5d\xfb\x92\xa1\x38\x3c\xe8\ +\x14\x1d\xd3\x92\x63\x32\x67\x6b\x8e\xa9\x1c\x32\xa1\x46\xe9\xda\ +\xef\x4b\xda\x04\x15\x0d\x42\x1f\x25\xee\xc5\xb0\x15\x24\xe9\xca\ +\xe8\x09\xf3\xed\x49\x90\xed\xb6\xe3\x07\x16\x28\x07\x3c\x99\x86\ +\x7e\x49\xff\x98\x80\x3d\x1d\xb3\x28\x55\xa2\x3c\xda\xb3\xce\xc8\ +\xb9\xd9\xb2\x48\x1d\x4a\x41\x99\xdf\x98\x11\x83\x88\x70\xd2\x69\ +\x14\x48\xc1\x27\x6d\xe9\x11\x10\x8c\x83\x0a\xf1\x9d\xf8\xa6\x5e\ +\xaf\x85\x4a\x66\xca\x31\x59\x14\x30\x32\xae\x44\x7c\x3e\x09\xf1\ +\xaa\x28\x43\xe9\xa6\xc0\x55\x79\x7e\x0d\xfc\xc5\x9d\x10\x9a\xf0\ +\xee\x66\x38\x8e\xbc\x21\x33\x46\x53\xe2\xf8\x4b\x33\xc2\x71\x34\ +\xde\xaf\xd8\xa5\x48\xf8\x65\x89\x3d\x4c\x3e\xdb\x9a\x72\x13\xdd\ +\x9f\x22\x67\xcc\xdc\xff\xca\x5b\xc4\x88\xbc\x6c\x07\xdf\xce\x4a\ +\xb2\x66\x55\xe2\x19\xdc\x8d\xfd\xdc\x19\x50\x46\x5f\xff\x98\xc6\ +\x60\x47\x92\x30\x2b\x24\x38\x43\x94\xe3\x82\x9a\x9a\xcd\x96\x01\ +\x57\xc3\x34\xaf\x2e\x08\x97\xc3\x14\x5d\x9a\x8e\x32\x62\x32\x92\ +\xb5\x9d\x9c\x9d\x35\xe9\x71\x70\xca\xc5\x0c\x6d\x21\x90\x37\xac\ +\xdc\x70\x6a\x06\xb4\x70\x46\xb8\x9d\x91\x59\x96\x80\xf9\x28\x3d\ +\x52\x3a\x3e\x47\x32\x2c\x47\xc2\xe1\x71\xda\x56\x3a\x88\xd0\xca\ +\x44\x0e\x66\x34\x97\x4a\x64\x96\x89\x6e\x45\x8c\xc5\xd0\x54\x8c\ +\x11\xae\x75\x31\xd7\x84\x83\x41\x24\x97\x97\x2d\x99\x9a\xe1\x1f\ +\x67\x6b\x3d\x21\x25\x37\xb6\x6b\x49\x1a\xec\xb8\xeb\x9c\x10\x70\ +\x52\xef\x31\x76\xfa\x56\xbe\x5c\xa0\x29\x94\x59\x8b\xa9\x2b\x79\ +\xed\x2d\xaa\xde\xf9\x34\x23\x00\x7e\xf2\x5d\xc1\x83\xfa\x3c\x1c\ +\x86\x0f\x98\xd6\xf6\x78\x73\x06\x02\x52\xa9\xa8\xc9\x89\x8b\x8c\ +\xf0\xf7\x4f\x21\x11\xe8\xb7\x19\x5e\xe9\x25\x52\xfc\xa4\x88\x95\ +\x5b\x1d\x56\x8e\x2d\x8d\xf9\x44\x93\x08\xc3\xdd\x5b\x7c\xa2\xea\ +\x88\xc5\xe6\x84\x67\x74\xb5\x80\x6f\x39\x69\x6b\xd0\x5c\xa0\xba\ +\x1e\xa6\xa2\x33\x1e\x6f\xf2\x86\x66\xe8\x74\xe1\xfb\x37\x21\x45\ +\xb9\x67\x39\x39\xcb\x63\x7c\x2c\x94\x41\x28\x4b\xd0\xb2\xae\x47\ +\x3d\x3c\xc6\x4c\x02\x54\xbf\x99\xd1\xe9\x0a\x29\x70\x88\xc6\x40\ +\x3b\x45\x8a\xaf\xe9\x6a\x63\x42\x23\x1c\x12\xcd\x97\x62\x02\x56\ +\xb9\x1f\x44\xe1\xaa\x80\xcd\xe1\x8a\xa6\x3e\x43\x78\xfe\xb8\x89\ +\xc8\xb6\x37\xe0\xe7\x56\x3c\x29\xf2\x17\xd5\xc9\xb9\x34\x69\x7b\ +\x30\x13\x44\x57\x0d\x79\x02\x96\x6c\xbf\x23\x19\x1e\xb5\xc0\x85\ +\xef\xa3\xc7\x80\xb1\x80\x39\x6a\xef\x67\x94\xf5\xa3\xd9\x89\x25\ +\xd8\x37\x34\x15\x69\x26\x63\xda\x13\xc4\xf2\xdb\x98\x2b\x7f\x69\ +\xc8\xa3\xaa\x98\x77\xfb\x46\xd4\x3d\x8c\xa5\x33\xf1\xa3\x92\x4e\ +\x6d\xe4\x6d\xe8\x6e\x89\x65\x22\x29\x5f\x34\x9f\x61\x5b\x7f\x1f\ +\xcb\x15\x4a\xed\x3f\x73\x65\x0a\x0e\xf3\xbc\x32\x87\x8a\x25\x2b\ +\x38\xc5\x79\xd3\x02\x26\x31\xa5\xd7\xe0\xb3\x33\x1f\x63\xc6\x2d\ +\x53\x65\x8a\xf6\x05\xe4\x42\x3b\x2d\x34\xf3\x71\xc5\x16\x3a\x7e\ +\x44\x09\x13\x56\xf7\xc5\x30\x59\x30\x61\x2f\x67\x10\xa0\xd7\xc7\ +\x8d\xb6\x0e\x6c\xe5\x63\xce\x24\x12\xb8\x4a\xdb\x1b\xa5\x45\x8b\ +\x2a\xd5\xa9\xe3\x80\x47\xf1\xf9\xfe\x8c\x58\xf9\x7c\x6d\xfa\x15\ +\xc4\x50\xf1\x24\x95\x1b\xc0\x26\x59\xc1\x42\x49\xa9\x63\x21\x1b\ +\x51\x93\x66\xbe\x72\xa6\xde\x4c\x19\xef\x54\x31\x83\x8d\x0e\x26\ +\x8b\x16\x0e\x31\xb2\xb9\x94\xd7\x20\xe6\xb8\x28\x15\x0e\x0f\xda\ +\xdd\xcd\xe5\x99\x1c\xcc\xa1\xa7\xb4\xfc\x36\x9a\xe2\x2d\xcb\x6a\ +\x53\x4f\xb4\x99\xf3\x4a\xb6\xac\x2e\x58\xf2\x20\x1c\xaf\xb8\xb1\ +\xa3\xf2\x3d\x0f\xdb\x6c\x81\xd8\xed\xda\x38\xb8\x4d\x1a\x0a\x69\ +\xb3\x3a\xbb\x22\xd1\xab\xb0\xc4\xf4\x91\x5e\x68\x22\xcc\x88\x3a\ +\xc9\x5b\x68\x0e\x12\x93\x3f\xd4\x5d\x93\x76\x61\xf7\x4f\x35\x53\ +\xcc\x9c\x55\x72\xd1\x22\xba\x7f\x99\x31\x78\x3d\x7e\xa3\xc7\xdb\ +\x94\x31\xe0\x4a\xff\x34\xfd\xd7\x18\x73\xe7\xc8\xc0\xaa\x88\xfc\ +\x88\xd2\x32\x56\x12\x41\xb5\x03\xc5\xe0\xcf\xa5\xeb\x64\xcb\x14\ +\x2c\x99\x95\x2f\x00\xd7\x07\x6e\x0f\x5a\xd0\x20\x8f\x91\x8c\xd0\ +\xc0\x09\xad\x65\x2d\x9a\xce\x84\xe1\xbf\xb7\x6c\x52\xf9\x2a\x72\ +\xb7\x8b\x62\x98\xb4\x0c\xfb\x14\xb2\x05\x91\xee\x73\x90\x44\xd0\ +\x2f\x5a\x9d\x51\x29\x7d\x7c\xce\x16\xf3\x80\xc1\x52\xb7\x8d\x41\ +\x55\x2e\x92\x2a\x7c\x1a\x9d\xd9\xc4\x48\x89\xd0\xfd\x93\x35\xff\ +\x23\x60\x3e\xbb\x58\x2e\x1e\x9a\xa2\x0e\xa7\x75\x06\x93\x92\xc4\ +\x38\x18\x77\xd3\x95\xd1\x7f\x10\x48\x25\x99\xaa\x0b\x93\x84\x35\ +\x8b\x9b\xba\x14\x79\x75\x85\x25\xf0\x3c\x4d\x5a\x21\x60\x33\x2d\ +\x8a\xe6\x10\xcd\xd0\x2f\xd9\xca\x5b\x7e\x20\x5b\x52\x05\xbd\x5b\ +\xdd\xd4\x99\x25\x9d\x98\xd6\xa1\x2a\x59\x28\x57\x70\x50\x0c\x66\ +\x78\xe8\x51\xf1\x82\x76\x3a\xae\xd1\x95\x37\xfd\xc0\xf2\x83\xb4\ +\x6c\xe0\xdf\x61\x06\x55\x75\x25\xf4\xb6\x68\xb4\x2c\x9a\x0d\x19\ +\xcd\x58\xd0\x5d\x85\x7a\x85\x50\xbc\xbb\xa4\xae\xa5\x29\x0d\x92\ +\x8d\x59\xd2\x2a\x00\xa2\xfa\xa4\xc9\xbd\x0d\xaa\x6d\x86\x52\xcc\ +\xa3\xde\x5c\xc5\x4c\x92\xba\x5b\xda\xda\x51\xbf\x78\x2b\xd6\x71\ +\x15\x26\xba\x79\x7c\x8f\xba\xf1\x34\x75\xad\x9b\xeb\xc9\x25\xaa\ +\x32\x50\x97\x8c\xa8\xd8\x41\xcd\x0d\xb5\x40\x96\x38\x17\x33\xa3\ +\xb0\x29\x46\xc8\xbf\x90\xd1\xea\x7d\xb8\xef\x26\x2d\x63\x98\x2b\ +\xb5\xac\xc4\x34\x3e\xaa\x5a\x1d\x52\x1a\xdf\x69\x52\x3c\x7b\x24\ +\x94\xc8\xc7\x34\x85\x14\x89\x6e\x0b\xb7\x79\xf6\xb0\xed\x60\xae\ +\x01\xcd\x87\xa5\x3a\xc3\x4c\x73\xde\xe6\x63\x42\xec\x38\x12\x37\ +\x3b\xad\x74\xad\x5b\x34\xd2\x6e\xdb\x61\x8e\x03\x65\xc3\xf8\xfd\ +\x7d\x5b\xd2\x52\xf6\x00\x0c\x6b\xa1\xd4\x64\x9d\x2a\x44\xdb\x88\ +\x64\x13\x91\x99\x68\x95\x8d\xb2\xa3\x76\xa0\x39\xa5\x99\x60\x68\ +\x46\xcd\x64\x9d\xb4\xa2\xc8\x62\x04\xac\xb2\x92\x76\xcc\x20\xa9\ +\x6d\xae\x4c\x33\x48\x24\x03\x0c\xcd\x1f\x0a\x19\x5c\x86\xf5\x75\ +\xac\x2f\x5b\xbc\xa7\x75\x99\xe8\x6d\xb8\xed\x69\x9a\x76\x3b\x21\ +\xd7\x7f\x52\x5d\x1e\xb3\x18\xf7\xf3\xd3\xe9\xe3\x9b\x5a\x9b\xe9\ +\x41\x6a\xd9\x8a\xa2\xcb\x04\xa2\x12\x4e\x7a\x9f\x5a\x44\xe9\xd7\ +\xb8\x35\xb1\x73\x4a\x06\xb9\x73\x99\xc4\x39\xda\x34\x3c\x50\xe5\ +\x0b\xf0\xbe\x2a\xa1\xf3\x1e\xe2\x25\xa9\x13\xd1\x0f\xad\xd7\xc5\ +\x11\xd8\x4c\x83\x27\x30\x45\x5a\x5d\xa4\x4a\xc2\x8f\x4e\xcb\xe2\ +\x83\xc3\xe8\x62\x51\x1e\xa5\xa9\x2a\x1a\x17\x20\x08\xbb\x79\xe6\ +\x24\xb6\x76\x31\x68\xa3\x4f\xd0\x95\x52\xe7\x9d\x9d\x43\xa6\xaa\ +\x08\x6a\x18\x9c\x51\x35\x50\xf2\x70\xa7\x46\x87\x4b\x9b\x52\x98\ +\x3c\xdc\xe9\xd1\xe1\xd2\x26\x17\x2e\xd0\x72\xe9\x65\xff\x90\xaa\ +\x70\x17\x98\x66\xdc\xca\x99\x64\x4f\x1b\x21\x6d\xaa\x8c\x3e\x26\ +\x11\x87\x0b\x87\x66\x5b\x71\xec\x22\x53\x7c\x52\x27\xf1\xa9\xa2\ +\x85\x70\xc4\x5f\x67\x92\x8d\x83\xbc\xbc\x2c\xb5\x7a\x13\xcf\x37\ +\xab\x54\xda\xcf\x30\xe2\xd1\x96\xd8\xa9\x73\x62\x55\x5a\x2e\xc3\ +\xc4\x24\x61\x85\x1d\x3e\xd1\xd2\xfc\x39\x5b\x62\xac\x55\xa9\x06\ +\x27\x61\x8e\x23\x55\x08\x45\xca\x13\xd5\x09\xc7\x3d\x5a\x69\x8b\ +\x3e\x19\x16\x87\x65\xf1\x7b\x56\x19\x90\x56\x9c\x1b\xbc\x0b\xa6\ +\x6a\x10\x34\xc9\xbd\x50\xac\x28\x4b\x2d\xba\x71\xc8\xf4\x47\x45\ +\x5f\x9e\x54\x7a\xfc\x10\xa1\xbd\xf2\x47\xe5\x72\xd3\xd4\xd2\x1e\ +\x3d\x24\xbb\xa8\xf0\x88\x33\x6c\xa1\x9d\xb7\x81\x87\x8d\x5a\xe9\ +\xcd\xd7\x2d\x3c\xfc\x90\xe7\x5e\x52\x96\x37\x67\x90\x80\x83\x64\ +\x11\x5e\xd0\xaf\xb5\x4c\xa1\x05\x64\xac\x8e\x74\xa6\xf3\x5d\x34\ +\xb3\xc2\x1d\xa2\xdc\x8b\x2c\x5c\xca\x2a\xdf\x84\x5b\x3f\x47\x0e\ +\x00\xdc\xfa\xd3\xe1\xfa\xa3\xb0\xdd\xaa\x36\xa8\x6f\x08\xf5\xc3\ +\x68\x29\x10\xab\x38\x00\x62\xf5\x0b\x26\x92\x48\xee\x40\x9e\x3d\ +\xc6\xf3\x74\xa4\x38\x4b\x2b\xbf\x76\xa5\x28\x0c\x28\xc9\x0a\x96\ +\x70\x7f\x5c\x66\xe8\x32\xb9\x3b\x2c\x79\x18\xcd\x47\x50\x0b\x79\ +\x27\x5d\x48\x2e\x5a\x46\x00\x90\xd2\x7c\x0c\xa4\x77\xd6\x1c\x0c\ +\xc9\x1d\x60\x17\x2e\xcc\x19\x55\x1a\x1c\x00\xce\x27\x6c\xbb\x1c\ +\xf7\xd9\x08\xcb\xcf\xe0\xea\x85\xf2\xf2\x30\x3f\x39\xe5\x30\x2e\ +\xba\x3d\x18\x87\x90\x61\x41\x0c\xa7\x08\xfb\xbf\xcc\x4d\x23\x8a\ +\x02\x6a\x62\x9c\x44\xde\x49\x56\xc2\x71\x58\x09\xff\x3b\x51\xd3\ +\x24\xb7\xd0\x65\x2a\x5b\x2f\x07\x76\x3c\xe8\xff\x74\x53\x58\x3a\ +\x37\xd3\x64\x5d\x2f\x67\x3b\x58\x5d\xee\x96\x2c\xcf\x64\xe9\x8c\ +\xa8\x7f\x5a\x07\x7a\x8c\x93\x8c\x77\x1a\x2b\x7b\x56\xae\x3c\x31\ +\xad\x26\x7a\x1f\x67\x9e\xac\x95\xb0\x5f\xc9\x28\x95\xda\x13\x73\ +\x6c\x50\x4d\x34\xa9\x39\xe0\xf6\x88\xdb\x43\xbd\xb7\x52\x8e\x1c\ +\x6d\x06\xa3\xf7\x81\xee\x42\x1d\xc8\xe7\xba\x8d\xc9\x43\x12\x0a\ +\x45\x5b\x29\x8a\x3c\x33\x67\x97\xfd\x90\xd1\x8b\x05\xf4\xd4\xf1\ +\x41\x5d\x69\xbc\x6b\xed\xa0\x85\x3d\xb8\x57\xb2\xf6\x41\x2e\xed\ +\x61\x13\x98\x34\x34\xd4\x65\x3b\x98\x08\x6a\xa5\xc5\x91\x91\xc0\ +\xb9\x92\x3b\xae\x1c\x4e\xe1\x13\x75\xcc\x33\xe5\x1a\x67\xf2\x06\ +\xea\x45\x7e\x64\xc2\x8d\x86\xc2\x0d\xa7\xe3\xf9\xcf\x4a\x4d\xed\ +\x44\x20\x58\xfa\xb3\x74\xf8\x58\x66\x76\x84\xa5\x89\x89\xaa\xfa\ +\x14\xe1\xca\xcb\xd0\xa7\xa5\xcc\xe1\x68\xe7\x27\xcd\xef\xc1\xcd\ +\x5d\x8f\x13\x93\x30\x71\x99\x89\xcc\x3c\x66\xbd\x88\x48\x17\x4d\ +\x9c\x0c\xb2\x80\xd0\x88\xa1\x50\xba\x50\xd2\x75\x3d\x33\x9e\x37\ +\x1f\xf5\xb0\x31\x65\x39\xc7\x95\x78\x16\xea\xd9\x4f\xf4\x24\x33\ +\xf6\x6f\xa6\x46\xd2\x13\xde\x4d\x54\xc0\x66\x88\x98\x48\x7a\x09\ +\xb0\x55\xc8\xf3\x50\x67\x3c\x96\xe0\x29\x47\xa3\xd0\x59\x68\x41\ +\x0a\xf2\x17\x5c\x84\xee\x72\x96\x88\x1e\xde\x7e\x68\x16\x87\xfb\ +\x09\x95\xfe\xf2\xcd\x21\x1e\xd7\xa1\x16\xfc\xce\x8d\x2c\x43\xc8\ +\xa6\x09\x6a\x76\x76\x44\x8b\x73\xc2\xf7\xe5\x02\xcf\x1d\xa2\x81\ +\xcd\x5e\x63\x88\x27\xb6\xa9\x9c\x22\x60\xa0\x3c\x44\xca\x93\x89\ +\xf9\xce\xd3\xf1\xe8\x15\x03\xb4\xa6\x0f\x39\x2c\xbe\xd8\xcd\x03\ +\x43\x01\xc8\xfb\xf0\x38\x94\xff\xd2\x99\xd7\x79\x96\xd5\xdf\x37\ +\x60\x08\x8d\xc0\xf0\x27\x7c\xe0\xd3\x78\xf2\xe8\x2c\xb4\x67\x3b\ +\x3c\xeb\x31\x3e\x66\xce\xa4\xb8\xf3\x92\x08\x09\x0a\x6d\x24\xea\ +\x12\x48\xee\x5d\x10\x75\xcb\xd1\x23\x45\xbb\x14\xcd\xc6\x08\xb6\ +\x48\xb7\x61\xdd\xdf\xc4\x75\x17\xe1\xfe\x6f\x3d\x3a\x7b\x56\x1b\ +\x90\xd3\x6b\x08\x71\x9d\xaa\x51\x97\x2d\x7a\xc6\x70\xbc\xd9\x8e\ +\xec\x60\x87\xee\x18\x8a\xbf\x94\xea\x58\xd5\x73\x15\x97\x1f\xae\ +\x86\x0b\x67\xb5\x85\x63\x2b\x91\x0a\x13\x52\xa1\x42\x11\x18\x38\ +\xf6\x83\x26\xba\xf7\x52\xb9\xab\xd4\x5c\x22\x9e\x65\xf2\xdc\x23\ +\x06\x59\xa7\xea\xc4\x00\x7f\x77\x13\x55\xa2\x13\x7f\xc3\xe7\xad\ +\xd3\x7c\x5c\x89\xcf\x9f\xef\xc4\x4d\xf2\x50\x4b\xeb\x04\x58\x44\ +\x1b\x9b\x4e\xdc\x20\x7a\x76\x3b\x43\xed\x6d\x7c\xcc\x63\x2a\x49\ +\xed\xbc\xd2\x2c\x0a\x2e\xfa\xf6\x06\xe4\x47\x63\xdc\x27\x9b\xe5\ +\xce\x3b\x05\x89\xde\x7c\xaa\xa8\xb9\x5f\xc4\x6a\xa8\x7c\xef\x06\ +\xe8\xa6\x9f\x8d\xd5\x90\x17\x00\xd3\xaa\xdd\xdb\x5b\x49\x44\x44\ +\x0b\x15\xb1\x2a\x58\x1e\x18\x95\x50\x15\x0d\x75\xf5\x34\x6f\x54\ +\x85\x0b\xda\x9b\x7e\x19\xb8\x80\xe9\x1b\x9d\xd8\xfc\xa2\x93\xa6\ +\xb6\x8b\xe1\x31\x42\xa7\x1e\xf0\x41\xf3\x83\xdf\x3b\xe1\x3c\xda\ +\xf9\xce\x66\x98\xb1\xb3\xe8\x3a\x6e\x27\x76\xeb\x81\x21\xcd\xa2\ +\x5d\x98\x88\x8c\xd7\xbd\xc1\x2a\x8c\x59\x81\x9d\x35\xbb\xf1\x75\ +\xf6\x28\x4e\xcc\xdb\x07\xe0\x24\xcd\xe1\xb7\x7a\xd7\xba\x85\x5c\ +\x67\xca\x83\x9e\x99\x92\xd2\x1d\xc2\x12\xdb\x29\xa7\xd5\xeb\xaf\ +\x05\x4f\x0d\x1f\x5b\x76\x8d\x5c\x34\x06\xa6\xf5\x5a\x4d\xda\x05\ +\x55\x9c\x8d\xdb\x10\x3a\xb2\x33\x0c\x97\x05\x91\xb5\x30\x28\x5c\ +\x1e\xcc\x77\xa5\xb3\x47\xb0\x31\xd1\xb1\x53\x04\x27\x33\x44\xd4\ +\xe5\x28\xa7\x5a\xf8\x2e\xa7\x72\x4c\xe2\x28\x46\xb5\x5e\x5f\x1d\ +\x80\x3d\xe2\xe6\x8c\xec\x88\x8b\x59\x16\x74\x65\x2c\xa5\x4f\x14\ +\xcc\x30\xbe\xc5\x19\x19\xea\xff\x9c\x9b\xa7\x65\x51\x4f\x70\xa6\ +\x31\xd5\x52\xbd\x8a\x4b\x0d\xf7\xbe\x8a\x9a\x3e\x0a\x11\xaa\x56\ +\x3c\xea\x0b\x4b\x40\x05\xb6\x85\x19\x0d\x41\x15\x36\xbe\xd4\xd8\ +\x71\x28\x59\x94\xa1\xc8\xc3\xf7\xa2\xd3\x87\x7a\x42\x84\x02\x75\ +\x03\x4f\xf5\x95\x9d\x7a\x26\xbd\x4b\x99\x5e\xa2\x15\xe0\xe8\xec\ +\x16\x39\x71\x2b\x9c\x8a\xb7\xe6\xc2\xef\x6a\x29\x3f\x96\x96\x7d\ +\x2b\xe2\x0b\x02\x63\x53\x1a\x89\x54\x5b\x97\x04\xf3\xa3\xd4\x04\ +\x13\xb1\x1c\x69\x06\x67\x65\xfa\x31\x9a\x37\xe6\x23\xf6\x27\x46\ +\x22\x70\x60\x96\x56\x52\x2c\xfb\x01\xff\x06\x2b\x0d\x62\xb6\xaa\ +\x96\x69\x6e\xaa\xa9\x5d\x5a\x34\x42\x6b\x1b\xb0\x8c\x0b\x55\x11\ +\x9e\x1c\x5c\xc1\x90\xed\x69\x4e\x79\x72\xff\x21\x72\x72\x5d\xb9\ +\x11\xac\xd7\xae\x0a\x02\xc5\xf3\x17\x18\x81\xc7\x8b\xac\x45\x77\ +\x6e\x55\xef\xc1\xf4\x54\xd1\x83\x9d\x25\xc8\xd9\x32\x51\x48\x19\ +\xd3\x0a\x8e\x82\x46\x0e\xdd\x31\xd9\x5b\x29\x18\xaf\x78\xc2\x41\ +\x7d\x8b\x5d\xcf\xb6\x1c\xd6\xf7\x57\xe4\xc8\x49\x01\x23\xf2\x7c\ +\x59\xd1\x08\xdd\x17\x25\x7b\x30\x7b\x8e\x62\x19\xe4\x40\xa1\xc7\ +\x10\x65\xe9\x30\x6a\xc1\xca\x07\xdd\x5c\x15\xe5\x93\xe8\x71\xff\ +\xb4\xac\x64\x0e\x70\x3b\x81\x6f\x75\x25\x94\x20\xfd\x72\x44\x0f\ +\xb7\x50\x2b\xa1\x09\xb5\xa3\xb1\x8a\x44\x65\x49\x44\xdf\x08\x50\ +\x26\x5b\xfc\x80\x8a\xf7\x28\xcb\x48\x9a\x5b\x34\xe2\x61\xa1\x52\ +\xde\x9f\x9a\xef\xa8\xcd\x8b\xb3\x72\x9c\x1a\xf4\xf2\xa9\xd0\x08\ +\xb1\x3c\x82\x80\x1f\x5d\x3d\x47\x5b\x64\xeb\x89\xb7\x4d\x66\x54\ +\xab\xec\x6c\x7d\x07\xc7\xcc\x42\xd9\xa2\x2a\x75\x8e\x96\x23\xe7\ +\xcb\x4e\x56\x2b\x6b\x2c\xe3\x61\x0a\xdc\x02\xa8\xda\x60\xef\xf6\ +\x34\xef\xa2\x4f\xf3\xa0\x10\x58\xa5\x79\xcb\xb3\x9c\x2c\x26\x03\ +\x14\xdc\x71\x16\x29\x64\x03\x8a\x58\x60\x80\xad\x3d\x30\x3b\x8f\ +\xb6\x82\x4f\xeb\x3b\x9c\x87\x92\x20\x8a\x5c\xed\xfe\xb1\x21\x01\ +\x53\xea\xe8\x9b\x6a\xe3\x1d\x2a\x0f\x52\xee\xed\xa1\x19\x45\x14\ +\xd6\x72\xef\x26\xab\x48\x10\xf1\x58\xd6\xf7\x20\x1c\x4b\x8a\xd5\ +\xd9\xa1\xfa\xac\xf7\x90\x3f\x6e\x88\xb3\x23\xea\x83\xa2\x9e\x57\ +\xcc\x6d\x90\x97\xb7\x66\xc0\xc6\x1a\x4d\x9d\x4f\x26\xef\xc7\xe1\ +\xa1\x2d\x96\x64\x33\xa9\xd1\x19\xf3\x0c\x2b\x51\x29\x1c\xb4\xca\ +\x39\x62\x48\x80\x72\xcc\x21\x54\xf2\x68\x39\xde\x62\xd1\xbd\x37\ +\xad\xbb\x63\x93\x96\x24\xac\x8a\xa8\x94\x3e\x36\x83\xa0\x9b\x6a\ +\x25\xb1\xd3\x8f\x1a\x4d\x87\x12\x8e\x3d\x26\x02\x5a\x25\x3f\x4c\ +\x23\x9d\x6e\x98\x77\x11\x4e\x31\xee\x50\x6c\xdc\xb4\x45\x1c\xc2\ +\x2c\x52\xba\x8d\x14\x0c\x6a\x63\x28\x34\xb2\x58\x02\x75\x76\xac\ +\x88\x90\xad\x5f\x52\x42\x79\x3e\x30\xf9\xe9\xc5\x91\x12\x45\xaa\ +\x2b\x2d\xbb\x08\xc4\x21\x36\x4f\xef\x4d\x10\x51\xaa\x67\xc3\x2e\ +\xce\xe1\x75\xce\x8f\xb5\x1d\x9a\xdc\x48\x5d\x4b\xc0\x22\x78\x7a\ +\x59\xae\x2d\xbb\x38\x08\xed\x8d\x29\xb9\xdd\x09\x3a\x8d\x32\x69\ +\xd5\x39\x8d\x27\x84\xa9\xd3\xa9\xbb\xa0\x0c\x64\x1d\xa3\x48\x1d\ +\xc3\xb1\x63\xa3\xb0\xa4\x46\x76\x65\x0c\x7e\x92\x8f\xa1\x57\x69\ +\xf8\xbb\xc3\x91\x15\xaa\x3c\xe3\xf5\x07\xdd\xa0\xb2\x8c\x32\x77\ +\x8a\x62\x04\xd4\xf5\x22\x8a\x30\x6c\x87\x71\x83\x6e\xdc\xf1\x8c\ +\x45\x8b\xc9\x0d\x60\xb1\x39\x33\x63\x17\xec\x60\x42\x56\x1e\xb0\ +\xd7\x33\xf0\x28\x35\x46\x9c\x5c\xda\xb2\x82\xfc\xb4\x68\x0e\xa7\ +\x65\x09\xc4\x33\xa5\xba\x9b\x6b\x23\xc2\xa7\x15\xdd\x06\xad\x70\ +\x2b\x31\x41\x41\xe4\xbe\x85\xd5\xed\x70\xaa\x18\xd3\x8c\xca\x32\ +\x7d\x41\x78\x2b\x4c\x22\x7a\x4c\xe5\x12\x47\x17\xe9\x3a\x22\xc5\ +\x8c\x29\xfd\xf1\x44\x9d\x95\xb8\x8a\xac\xdc\xca\x68\xbd\x78\x7c\ +\xfd\x61\x19\xac\xe4\xaf\xea\xc6\x13\x4d\x6e\x53\xb2\xf8\x4b\x11\ +\x52\x60\xd7\x96\x62\x62\x16\xa8\xc4\x3c\xd7\x9d\x2a\x4b\xa8\xb1\ +\xd2\xbc\x07\xcc\xab\x51\x09\x1a\x3d\xc6\x90\x92\xba\x42\xf1\xe6\ +\xd9\x5e\x05\xcb\x19\x06\x41\x4d\xb3\xbd\xa8\xcf\x96\x2b\x68\xe2\ +\x55\xd1\xa7\xd8\xc7\x2c\x9f\x95\x38\x17\x2b\x65\x18\x1f\x71\xa9\ +\x99\xcf\x52\xec\xe8\x98\x4a\x88\x53\xf3\xdc\x33\xb1\xdd\x14\x7f\ +\x3d\xad\x48\x9f\x03\x14\xb2\x17\x65\xd1\x7a\x4e\x0b\x4a\xde\x34\ +\xee\xd9\x6b\x74\x0d\xb9\xa5\xb4\x72\x65\x01\x8c\xb5\x0f\xc7\x12\ +\xbd\xc7\x84\xae\xa4\xc6\x6c\xde\xb3\xcf\xe8\x5a\xe7\x01\x8b\x4c\ +\x3b\xea\x3c\x80\x8f\x8d\x3a\xc8\xf5\x03\x4a\x25\x6a\xc4\xa6\xbd\ +\x30\xe2\xa0\x9d\x4b\xed\xed\xaf\x47\x92\x55\xdc\xbb\xc6\x4c\xdd\ +\xe9\xe5\xee\x19\x37\x89\x4c\xf2\x2b\x0b\xd9\xba\x62\x9a\x1b\xe8\ +\x27\x89\xee\xd9\xb6\x34\xfd\x28\x5a\xfd\xc1\xe5\xb6\x72\x65\x66\ +\x2b\xb4\x8a\x74\xa5\x4b\x17\x65\xf4\x0a\x95\xd9\x82\xf7\x29\xd1\ +\x1f\x64\xcf\x09\x7f\x86\x6d\x70\x1a\xe1\x78\x52\x00\x55\x0a\x79\ +\x6d\x36\xf0\xd2\xa6\x3a\x7f\x36\x55\x5d\x79\xbc\x09\x44\x42\x3f\ +\x0d\xc2\x72\x94\x2c\x19\x04\x50\x21\x15\xe5\x22\x8d\xd5\xf2\x45\ +\x6a\xac\x59\x3d\x9a\x1e\x4a\x0e\x67\xa3\xf0\xda\x6c\xb9\xd6\x61\ +\x3b\xd4\x76\x02\x90\x4a\x53\xf6\x78\x3d\x19\x46\xb0\x46\x54\x6a\ +\x51\xf8\x1a\x24\xdd\x5c\x63\x12\x05\x50\x5f\xf6\x84\x9b\x19\xed\ +\x72\x19\x0a\x4c\x29\x31\xe6\x09\x7a\xd4\x12\x1d\x53\x17\x52\x72\ +\xda\xb3\xb9\xf5\x3b\x4c\x54\x9f\x9c\x28\xdf\x0d\xb7\x20\x57\x51\ +\x9a\x50\x0f\x1d\xbe\x75\xa6\x96\x34\x39\xca\xb9\xb3\x72\xa2\x50\ +\x3a\x66\xb3\x28\xb1\x2d\xce\x0b\x2b\x89\xef\xe6\xe7\x21\xba\x59\ +\x51\xe8\x59\x78\x99\x41\xa7\x5f\x46\xab\x67\xe6\xdf\x62\x4f\x51\ +\x92\x29\xcf\x02\xde\x93\xc5\x3b\xfe\x08\xdb\x89\xf6\xc0\x10\x25\ +\xca\xcc\x8d\xbb\x16\xcb\x57\x80\x53\x97\x3d\x47\xec\xb4\xb8\x50\ +\x03\x33\x62\xbd\x6e\x23\x53\x0e\xa8\x16\xc1\x7f\xa6\x42\xc0\xf7\ +\x81\xff\xfb\xd4\x15\x6b\xe5\x6c\xf4\x76\xa4\x3c\x29\x8e\xdc\xda\ +\xa9\xeb\xb6\xc3\x48\x91\x8d\xfb\xb4\x32\xe7\x70\x13\x5e\x85\x70\ +\xd5\x7f\x56\xd7\x8f\xd6\x24\xa1\xac\x64\x02\x65\x62\x30\x32\x9e\ +\x71\x7a\x08\x8d\x66\xf7\xc4\xc8\x36\xbe\x32\x7a\xce\x0f\xc0\xff\ +\xaf\x80\xf3\x2f\xfe\xd6\xab\x22\x13\xd7\x21\x57\x71\xb2\xb6\x0a\ +\x30\xab\x65\xda\x2c\x55\xd3\x57\x14\xb9\x73\x04\xcb\x0e\xb5\x15\ +\xa4\x84\xbe\x16\x88\x5c\x5d\xa8\x51\x5d\x3a\x90\x3a\x39\xd3\xc7\ +\xba\xca\xbc\x26\x95\xea\xfc\x11\x3b\x9f\x96\xf5\x9e\x32\x4d\xd8\ +\xcc\x91\x71\xa2\xe4\x06\x68\x8b\x92\x43\x5e\x34\xd5\x62\x66\x3d\ +\x3f\xd7\x61\xa9\x8c\x2d\xb9\x6e\x21\x06\x10\x53\x1a\x33\xa8\x08\ +\xea\xfe\xe2\xe4\xcb\xac\x3a\x93\x01\xc3\x08\xbc\x3f\x51\xcc\xb8\ +\x85\xb4\x90\x6d\x08\xa3\xa8\x72\x7a\x71\x6a\xa4\xbd\x43\x87\x4d\ +\x13\xa4\x87\x84\xb8\x59\xbc\x6b\xa4\x34\x8d\xe4\x34\xf5\x8b\xfb\ +\x69\x01\x25\x1d\xa7\x2e\x17\x7a\x7e\x2b\x51\x77\x33\x69\x37\xb9\ +\x2f\x16\x77\x25\x25\xbc\x72\x0e\x51\xb9\xa4\xda\x2d\x93\xf0\x0a\ +\xbb\x11\x51\x7b\xbc\x95\xcf\x80\x22\x53\x83\x06\x61\x8e\x3c\xdb\ +\xce\xa1\xe7\x09\x9a\xca\x7b\xb3\x98\x5d\x73\x1d\x79\xfc\x78\x7e\ +\x31\x24\x4b\x83\xa0\xe2\x62\x31\x26\x99\xf7\x93\xe5\x32\x0c\xa7\ +\x94\x99\xd9\x8b\xb7\xf5\xf7\x2f\xf7\x79\x46\x5c\xde\xb7\xa2\xb3\ +\xcf\xc5\xb6\xc6\x96\x2c\x69\x1e\x0b\x1d\xf8\xa6\xc5\x3b\x2c\xea\ +\x53\x1e\x4b\xc2\x47\xe8\x7e\x14\x0d\x1f\xf4\x0a\x90\x84\x35\xb2\ +\x26\xec\x76\x68\x8d\x75\x8b\x77\xdb\xa5\xe8\xd8\xdd\xa8\xcd\xe8\ +\xf7\x0c\xe8\xed\x45\x22\x77\x57\xa8\x94\xb4\x3e\x76\x9f\x30\x13\ +\x2b\x5a\x5f\x1e\x6d\xe4\x91\xd0\xc8\xf1\x9b\x75\x44\x5c\x43\x14\ +\x1e\x33\x4e\x18\xad\xb7\x4f\xbe\x42\x7c\x05\x7c\xca\xb2\x46\x95\ +\x8c\xd8\xa7\xdf\x72\xcc\x5c\xfa\x58\x02\xac\x95\xce\x8f\xbb\x3c\ +\x2d\x67\x85\xe3\xe6\x2c\xbf\x39\x02\x74\x2f\x58\xa2\x2c\xcc\xb1\ +\x3f\x34\x61\x34\xdd\x5b\x94\x8e\xab\x05\x29\x32\x30\xfa\x72\x39\ +\x3e\x89\xe8\xe5\x26\xd4\x29\x75\x03\x72\x68\x7b\xfb\xb8\x12\x18\ +\xa0\x1e\xa0\x25\x36\xf6\x81\xcc\x02\x61\x1d\xdd\x34\x7a\x3c\xca\ +\x84\xf5\xe4\xd0\xeb\x3b\x33\xe8\x52\x60\xc9\xfc\xbd\x1a\x62\x66\ +\x89\x71\x0c\xbc\x26\xb7\x37\xbe\x6a\x66\xb5\x17\xa5\x4b\x47\x6f\ +\x8d\x30\xe5\x5d\xad\x72\x8e\x23\xfb\x4a\xa5\x02\xf6\xde\x4a\xba\ +\x80\x51\x9b\xac\x9e\x6c\xa6\xca\x9d\xb2\x6a\xfa\xbc\x6c\x8c\x82\ +\xd7\x62\xb2\x3d\x63\x76\x6a\x8e\x06\xed\x2a\x0e\xed\xf1\x75\x70\ +\xfc\x79\xa9\x13\x6f\xf9\xa7\x4e\xad\x6a\x82\xc3\x82\x23\x6c\x5b\ +\x6d\x4c\x12\x8f\x84\x32\x95\x8b\xb0\x1f\xaf\x23\xe4\x67\x98\x17\ +\xb0\x30\x9a\x0a\x26\x4a\x56\x14\x7b\xb3\x80\x1d\xa8\x1b\x10\x0d\ +\xb2\x47\xed\x5f\xbf\x45\xd3\x4c\x8c\x3d\x91\x37\x16\x54\xb8\xba\ +\x2b\x54\xd5\xda\x3f\x42\xb3\x78\x55\x13\x51\xed\xfd\x87\x43\xd6\ +\x9d\xb4\xe8\x50\xa1\x48\xd2\x35\x05\xf5\x66\x88\x6a\x98\x9a\xdc\ +\x1e\x84\xb5\x05\x99\xaa\xfb\x50\xe5\x77\x69\xa6\x86\xde\x9c\xbd\ +\x8b\xe8\x85\x57\xe7\x85\x2f\x05\xc0\xe8\x0f\xc3\xa9\x3f\xe2\x96\ +\x0b\xb9\x58\x67\x11\xbd\xb1\x90\x1d\x54\xec\x25\x62\x74\xd9\x4b\ +\x22\xe8\x69\x14\x8d\xf7\x95\x30\x60\x4d\xf7\x23\xcf\x2d\x44\xae\ +\xca\x0a\x8b\x45\x78\x5f\xf6\x9b\x50\x65\x35\x54\x4a\x51\xa7\x23\ +\xf6\x6d\x88\x0c\x71\x00\x05\x55\x38\xf3\x52\x95\x70\x88\xd8\x4b\ +\x59\x9e\xa6\x49\xa2\x67\x06\xc8\x3b\xd3\x89\x0a\x3f\x53\x7f\x84\ +\x8f\x4a\x87\x2a\x2c\xe9\xe2\xcd\x5e\x7c\x6e\xe2\xe9\x5e\x85\x53\ +\xfa\xb5\x44\x4c\x8f\x0b\x10\xec\xf1\x4f\x6f\x94\xe2\x17\xaf\x03\ +\xca\x32\xbe\x5b\x28\x07\x80\xae\xc1\xed\x7d\xfd\x67\x47\x51\xd6\ +\x5e\x41\xe0\xd6\x26\xc8\xdb\xb3\x64\xb9\x9d\x3c\x72\x92\x42\xc2\ +\x2d\x03\x13\xd5\x92\xd0\x41\xa3\x3b\x4f\x55\xd8\x32\xbb\x46\x89\ +\x92\x85\xaa\x10\x89\x1e\xb4\x79\xa1\xfb\x95\xf6\xa3\x36\xa4\x73\ +\x92\x66\xde\x08\x3e\xce\x50\x8c\xd8\x9b\x6b\x51\x82\xc7\x59\x4c\ +\x3b\x1f\x23\x99\xd3\xcc\x8f\x8d\x33\x1a\xa1\xb4\x36\xfe\x7e\x22\ +\xc1\xcd\x8f\xf6\xba\x17\x57\x68\x69\xa7\x9e\xbd\x2e\xaf\x50\xd2\ +\xde\xee\x8c\x4d\x1e\x75\x9f\xab\x71\x66\x89\x71\x84\xe3\x3c\x32\ +\xd6\x31\xb1\xb1\x84\xc7\x33\x7c\xeb\xbc\x40\x87\x76\xf9\x7c\x44\ +\x0e\x45\x47\x61\x6b\x4b\xbe\xbd\x5d\x40\x15\xba\xc4\x3d\x84\x9f\ +\xf0\x25\x03\xf1\x00\x46\x0b\x1f\x41\x5c\xf7\xaa\xbd\x3c\xf5\x55\ +\x54\xba\x52\xa7\x5d\x00\xa5\xd4\x68\xdd\xc7\xac\x0b\x83\x79\x38\ +\x04\xe8\x11\x34\x4a\x49\x13\xbc\xb1\x49\x48\x94\x34\xe7\xc0\xe4\ +\x95\xfa\x05\x34\x55\xda\x04\xda\xd6\x20\x87\x1c\x47\xa4\x88\xea\ +\x4b\x6d\x1c\xe0\x69\xc2\x91\xb7\x36\x71\x69\xc7\x58\x02\x7d\x33\ +\xab\x6d\x80\xae\xb2\x30\x96\xc3\x75\x37\xbc\x36\x35\x72\x0b\xb6\ +\x9c\xab\x6b\xc0\xc5\xf6\x43\x25\xcf\x45\x96\xac\xb4\x17\x53\x7a\ +\x76\x64\xaf\x77\x0d\x96\x55\x32\x2c\xaa\x3a\x93\x8c\x6a\x24\xa1\ +\x67\x6c\xc7\x74\x48\xae\x3c\xf2\xdb\xb4\x13\xd9\xeb\x69\x09\xe3\ +\xb3\x1c\x49\x55\x40\xa1\x12\x57\x93\x66\x99\x2f\x73\x51\xed\xbc\ +\x9d\xad\x3c\xd3\x52\x50\xcc\x45\x19\xb5\x12\xa2\x0e\x67\x6b\xa2\ +\x3b\x4b\x99\x2c\xd2\x48\xe3\x88\xb3\xb1\x08\x3a\x87\x46\x38\x26\ +\x94\xfa\x80\xbc\x45\x51\xda\x68\x86\x6d\x66\x0a\xb5\x12\x2a\xb5\ +\x67\xe7\xec\xb8\x75\xb0\x11\x4e\x54\xb8\x35\x97\xaa\x81\x6c\x58\ +\xb7\x18\xc5\x62\x4c\x95\x50\x65\x52\xe1\xca\x33\xad\x28\x68\x1d\ +\x75\x7a\xf4\x8b\x32\x29\xed\xed\xcd\x9a\x31\xa4\xee\x9e\x54\x07\ +\x42\xdc\xfe\x17\xaf\x75\x54\x76\x28\x13\x50\xfd\x9a\x48\xea\x62\ +\xb6\x94\xc5\x32\x06\xf1\xc0\xf8\x21\x35\x18\x03\x03\x5d\xfd\x51\ +\x21\xb4\x23\x01\x9a\xf0\xcc\x36\xd1\xeb\x32\x94\xd0\x8c\x7a\x51\ +\x19\x4c\xeb\x34\x98\x56\x4b\x98\x74\x40\xa4\xd7\xd2\x43\xdf\x56\ +\xc8\x81\x69\x74\xad\x8b\x02\xb8\x30\xa1\x12\x4b\x86\x5d\xd5\x79\ +\x5f\x47\xe3\xaa\x83\xf6\x64\xf4\xb4\x9c\xcf\xd5\x3e\x07\xf3\x7e\ +\xe9\xaa\xf4\xfb\x17\xb9\x2c\x81\x75\xb1\x75\xb2\xb2\xfe\xde\x0a\ +\x27\x4a\x7f\x36\x1b\x12\xaa\x27\xac\xa3\x01\x3b\xe3\x44\x23\x0b\ +\x22\xa8\x5c\x30\x3d\xac\xd5\xef\x15\x4e\x3d\x13\xbf\x2f\xc4\xb4\ +\xd8\x0b\x63\xc0\xd1\xd5\x9d\x98\xcc\x1d\x65\x5d\x98\x89\x00\x46\ +\x4b\x69\x12\xca\x20\x35\x00\x4f\x96\x00\xb2\x7e\x4b\xbe\x7e\x89\ +\xbc\x06\x27\x36\xe6\x47\x0f\xa7\x1d\x44\xa1\xdd\x57\x11\xda\xc8\ +\x21\x40\xf8\x92\xaf\x53\x55\x6d\xf5\x46\xa4\x24\xd6\x39\xff\x71\ +\x02\x4e\x0a\x48\x2f\xde\x8c\x4a\x13\xc6\x69\xf2\x58\xc0\xfb\xe2\ +\x44\xc1\xf2\x12\x76\xf8\x44\xce\x47\x92\xaf\xb5\x89\xda\xc5\xbd\ +\x44\xc5\x0e\x68\x7d\x29\xf5\x7a\xb2\xb3\x40\x0d\xce\xe1\x48\x7c\ +\xa0\xac\x81\xbb\x42\x80\x4b\xaf\xd8\x8a\xdf\x85\xd3\x6b\x20\x98\ +\x76\x7e\x82\xad\x60\x7a\x8c\x86\x89\xd3\x0d\xd1\xc0\x74\xe4\x19\ +\x72\x53\x29\xef\x9d\x00\x11\x0e\x99\x13\x25\x4b\xca\x14\xa2\x40\ +\x6d\xae\xb8\xcd\x6e\x94\x24\xe5\x06\xf6\xc6\xf8\x97\x13\x01\xe3\ +\x98\x10\x18\x74\x23\x7b\x91\x16\x93\x11\x73\x51\x85\x3d\x4d\xbf\ +\x9f\x2c\x65\x2b\xc3\x3d\x8d\x61\xf2\x1b\xe6\x12\x67\x84\xab\xcb\ +\xa2\x1f\x1e\xcf\xfe\xd0\xf8\x17\x87\x39\xb6\xb3\xbd\x46\x06\x44\ +\xe8\xa8\xa0\xcb\x9c\x55\xa2\x35\xf8\x4e\xd6\x8e\x93\xe7\x25\x15\ +\x96\x12\xb6\x15\x2b\x77\x10\x49\x4e\xf4\x2c\x73\x93\x5a\xa4\x2e\ +\xf4\x86\x9e\x14\x48\x42\xe2\x95\xcb\x59\x2e\x96\x03\x56\x89\xcd\ +\x44\x33\xcd\xa2\x14\x2b\xe2\xdf\x56\x20\xd5\xb3\x12\xa9\x62\x55\ +\x68\x21\x2c\x3c\xdf\xcb\x8d\x12\x93\xe7\x96\x18\x0c\xd3\xaa\xa6\ +\x93\x81\xb1\x4a\x1d\x92\x3c\x6b\x36\x4d\x43\x1f\xd1\x69\xd7\xa6\ +\x98\x56\x4c\xca\xca\x38\x26\xb9\x6b\x2b\x3e\x71\x67\x6c\x62\xbf\ +\x9c\x91\xfc\x25\x69\xf6\x64\x8e\x97\xc4\x9b\x47\xb9\x44\x42\x5f\ +\x52\xc5\x13\xaa\x35\x6d\x8e\x72\x3c\x53\xef\x84\x17\x61\xc8\x51\ +\xb0\xae\x48\x04\x4b\x2f\x88\xb0\x2a\x9f\x48\xe2\x6b\xb4\x1f\x4e\ +\xf2\x48\xbe\xf1\xbe\x4c\xc4\xbd\x92\x1e\x11\x6d\x89\x74\xb4\xf6\ +\xb0\x05\x60\x02\xbd\xaf\x0e\x35\x4b\x5f\xa0\x87\x9d\xbb\x1c\x6c\ +\x6c\x58\x13\x5d\x4b\x2e\xb6\x96\x99\x74\xc1\x8e\xf4\x1b\x9a\x96\ +\xf6\xf8\x11\x48\xe8\x64\x0d\xda\xc9\x98\x35\x35\x2d\xc6\xa9\x41\ +\xd4\x87\x60\xc3\x3e\xd9\x55\x91\x02\x31\x26\x9f\x51\x8c\x87\x82\ +\xa2\x18\x4f\xa8\x83\x90\x04\x70\x09\x07\x10\xfb\xeb\x51\x69\x17\ +\x92\x81\x00\x95\xcd\x54\x8b\x18\x9b\xd9\x1a\x03\x4e\x2f\xdc\x63\ +\x1d\xfe\x55\xfb\x29\x7d\xf2\x5e\xcd\x8d\x64\xc7\x30\xc6\xc5\x87\ +\x4f\xdb\x6a\x99\x05\x36\x77\x2f\x05\xad\x12\x96\x76\xcd\x08\x90\ +\x24\xcd\x41\xe4\xf1\x94\x12\xb7\xf0\xf8\x30\x40\xd8\x60\xbc\x17\ +\x13\x5f\x82\x8a\xe7\xb8\x34\x23\x98\xe8\x37\xcb\x39\x64\xca\x4d\ +\x15\xdd\x33\xa1\xe3\xf0\x2b\x98\x34\x4f\x4c\xc8\x3d\x1e\x86\x96\ +\xaa\x09\x40\x74\x0e\xf3\xd5\x72\x64\xf2\xb3\x9e\x75\x8b\x25\xfa\ +\xf0\x9f\x0f\xfc\x24\x77\x75\xf8\x15\x4f\x75\x3a\xe0\x57\xc7\x81\ +\xc7\xb4\x22\x4d\x6c\x4c\x0f\xfe\xf5\x33\x02\x3f\xce\x7e\x54\x89\ +\x08\xe3\x9d\x53\x69\xbf\x95\xee\x30\x8c\x27\x64\x9c\x1e\x5e\x9a\ +\x60\x08\x34\x82\xc8\x08\x4a\x32\x60\x4d\xf6\x27\xf1\xe2\xa1\x3f\ +\x6b\x79\xd3\xf1\xab\xe3\x12\xc1\x9c\x92\x4b\xed\xff\xb3\x01\xaa\ +\x20\x47\x89\xc8\xd2\xf3\x44\xb9\xbe\x04\xf3\x8c\x0a\x60\x46\xe5\ +\xab\xca\x9d\xc8\xdb\x1e\xed\xb5\x1c\xd7\x3e\x6f\x4d\x71\x9b\x4a\ +\x34\x3e\xc8\xa2\x83\xaa\x48\x4f\xd4\x72\x0a\xc6\x12\xcf\xe0\x89\ +\x36\x50\x1f\x45\xcd\xdf\x47\x1e\x28\xba\x4b\xab\x59\x94\x0a\xb5\ +\x2d\x74\x7d\x8c\x63\x44\x63\x8f\x32\xbb\x01\x0c\x5a\x99\xf8\x17\ +\x6a\x86\x9e\x2d\x98\xbe\x4f\xf5\xc8\xa4\x58\xe5\x83\x29\x16\x1f\ +\xba\x19\x84\xe8\xa9\x0d\x93\xd2\x90\x57\x35\xca\xcc\x17\x2c\x6a\ +\x9c\x55\x34\x41\xb4\x2a\x13\x2c\xa3\x52\x93\xd9\x61\x44\x55\x26\ +\x32\xaf\x76\xd9\xbd\x8e\x10\x1e\x93\x54\x9d\xb5\xf3\x68\xff\x1b\ +\x65\x27\xb0\x0b\x98\x67\x86\xdd\x62\x79\x86\x19\x7b\x36\x53\x0e\ +\x02\x9a\xd9\x34\xcc\x2f\xbb\xd7\xb0\x31\x99\x02\x1b\x53\x35\x79\ +\xd7\x5b\x23\x09\xad\x39\xbc\xed\x6c\x8b\x99\x09\x23\x92\xc3\xc2\ +\x6e\x95\x53\xf5\xf5\x45\x53\x58\xb0\xfb\x5a\x68\x87\x8b\xee\x18\ +\x4d\xbf\x8f\x79\x59\x56\x61\xe6\x03\x0b\xc7\x17\x88\x5e\xf8\xc1\ +\x28\xcc\xe3\x1b\x91\x84\xe2\x59\x1b\x61\x7c\x13\xfb\xbe\x6f\xc1\ +\x0e\x53\x91\xb1\xd7\xf0\xbe\x0b\x05\x22\x8a\x47\x44\x8a\xab\xba\ +\x6c\x50\xcf\x9a\x73\xa5\x11\xae\xf3\xfa\x85\x9b\x55\xe8\x42\xfa\ +\x5d\x3d\x0b\x17\x14\x3d\xa3\xad\xd8\x0f\x34\xda\x70\xa4\x76\x73\ +\xdc\x77\x3f\x4f\xf3\x94\x25\x15\x06\x34\xd3\x77\x12\xbd\x64\x0b\ +\xaa\x2e\x24\xd3\xb5\x78\x63\x6f\xef\x16\x15\x04\x21\xd7\xf0\xf6\ +\xc8\xd6\xaa\xb7\x6a\xb7\xb8\xb1\x68\xff\xc9\x15\xc3\x2b\x2a\x36\ +\xae\xab\x25\x61\x3b\xf1\xa8\xad\x2e\x0b\x77\xe7\xdc\x71\x87\xc5\ +\x54\x4a\xae\x8f\xf7\xef\x44\x51\xb7\x09\x63\xac\x66\xc4\x28\x4d\ +\x9e\x5a\xc4\x82\xc7\x48\x42\xe4\x5b\x9b\xfe\x1d\x30\xbd\x88\xe5\ +\x98\x63\xa6\x5d\x40\xf9\x8c\xe5\x05\x2a\x8a\x1a\xdf\xc3\x29\x3b\ +\x40\x46\xf6\x50\xb4\x46\xf1\x89\x4c\xb2\x95\xef\x74\x6c\x95\x4d\ +\x4b\xa8\x82\x1f\x25\xcf\x66\x55\xdd\xa2\x42\x83\xdb\x92\xb8\xdf\ +\x59\x5a\x1d\x8c\x9e\xc8\xaf\x5a\x62\x4f\x4a\x62\x56\x1e\x12\xcd\ +\x8a\x96\xe3\x2f\x65\xe3\x73\x35\xda\xf5\x46\x01\x0b\x0e\x95\x36\ +\xc2\x16\x31\x03\x5a\x23\x65\x17\x63\xfb\x53\x82\x1d\x12\x15\x58\ +\x9a\x7f\x4a\xdb\x23\x87\x88\xaa\x9c\x80\xa8\x92\x01\xa5\xc3\xda\ +\xbc\xa2\x3c\xe5\x2e\x2b\xcd\x7f\x9b\xc3\xae\x33\xa1\xb9\x67\x18\ +\x17\x28\x98\x0e\x6d\xbf\x20\xb6\x96\x7e\x97\x4b\x90\x98\x46\x62\ +\xff\x38\x0d\x31\x2a\x90\xb3\xdd\xce\x8e\x1a\xdb\x92\xf2\x21\x72\ +\x89\x83\x84\x57\xa6\xca\x5c\xe3\x9d\xea\xd9\xca\xf4\x40\x07\x3b\ +\x32\xda\x1d\x6c\xda\x5a\xbb\x10\x10\xee\x6d\x0c\x5c\xde\x26\x9e\ +\xa5\x46\xea\x91\x8f\xe8\x52\xbb\x23\x50\xea\x26\x6c\xe5\x4c\x8c\ +\x0e\x36\x1b\x4f\xc7\x88\x25\x62\x74\x4d\xd3\x7f\x6f\x94\x5b\xbf\ +\x6a\xc0\xd9\x38\x20\xf6\xd5\x4b\xce\xed\x38\x25\x71\x48\x1b\x13\ +\xf9\x30\x90\x52\x25\x2a\xa9\x54\x34\xba\x37\x79\x02\xe4\xc8\xb1\ +\x09\x56\x25\x4e\xe0\x8b\x90\x47\x95\x08\x89\x6b\x91\x29\x39\xf8\ +\x61\x38\x78\x96\x65\x49\x24\x0f\xbf\x34\x71\xf8\x72\x3c\x70\x16\ +\xc3\xb2\x68\xb3\x13\x1b\x72\x65\xe2\x90\x4a\x65\x89\xa2\x43\x4b\ +\xa4\xc1\x81\x2d\x27\x37\x23\x60\x99\x9a\x5a\x69\xcc\x39\x38\x26\ +\x53\x42\x93\x47\xed\x49\x1c\x35\xac\x3e\x24\x61\xf7\x70\x1c\xb9\ +\xe0\xf2\xb0\x57\xf2\xe0\x4e\x85\xed\x13\x22\x9c\x6a\x74\x61\xd0\ +\xf5\xce\x17\x5d\x70\xf6\x96\xe8\x19\x75\xa1\xdf\xfa\xf9\x6f\x5a\ +\x4c\x57\xf1\x18\x04\xce\xa1\x89\x15\x08\x18\x36\x7d\xe8\x5a\xb7\ +\x84\xa9\x69\xf4\xef\xfe\x25\xd4\x0b\x95\x9a\xde\x2a\x03\x1c\x25\ +\x66\x35\x69\xea\xc1\xf5\xeb\x76\x2a\x0d\xce\xd0\xed\x96\x40\xde\ +\xd2\xe2\xa9\xe4\x09\x16\x57\x64\x6e\x05\xa9\x12\x7a\xda\xa0\x6d\ +\x38\x28\x6b\x34\x95\x92\x30\x46\x79\x6e\x18\x83\xd7\x94\xca\x42\ +\x14\x52\xcf\x15\xa9\xfc\x89\x8c\xe3\xe4\xc4\xc1\xb3\x44\x4f\x75\ +\xaa\x3c\xc5\xbc\xf0\x14\xec\x88\xc7\xe6\x38\x0d\xe7\xe0\x9c\x82\ +\x88\x42\x6a\x76\x71\x21\x63\xa4\x3e\xaf\x18\xd4\xdb\xd5\xf5\xc6\ +\x38\x88\x9f\x35\xa9\x9a\x61\xd2\x8b\x58\x53\x62\xa9\x84\x3b\xc8\ +\xac\xf3\xd1\x44\xd6\xca\x0e\x26\xbb\xbe\x2c\x19\x45\xc9\x8c\x44\ +\x8d\x5c\x99\x56\xf4\xb1\x93\x09\xa5\x59\xdd\xd0\xad\xd2\x19\xb6\ +\xd3\x47\x63\xa9\x3b\xdb\x49\x52\xea\x46\x43\x72\xce\x46\x7b\xb8\ +\xcd\x9a\xd2\x83\x76\x20\x8d\xc5\xc2\xcb\xd1\xa6\x6c\x3c\xe1\x45\ +\xbf\xbb\x82\xbd\x49\x95\xae\xc4\xac\x97\x79\x5c\xbd\xab\x94\x15\ +\xd2\x54\x29\x1d\x64\x2d\xd9\x29\xad\x04\x3b\xcc\xe3\x88\xcd\xaf\ +\x6e\x08\x27\x65\x0e\x47\xd4\x30\x05\xe4\x3b\x76\xa0\xfd\x20\x32\ +\x1b\xa4\xf1\x3f\x65\x66\x26\xc5\x95\x4b\x44\x65\xde\x7e\x0d\x57\ +\x94\xae\xe3\x69\xba\x83\x21\x62\xd5\xd2\x96\x07\x29\x7d\xc6\xd2\ +\x79\x92\x88\x27\x39\x3f\xa3\x95\xf7\xcf\xdd\x9e\x90\x83\x91\xac\ +\x33\xb0\x62\xb9\xe4\xd1\x3a\xf8\x68\x7b\xf6\x26\x26\x75\x54\x1a\ +\x70\xdf\xf4\x03\xee\x9b\xc1\x80\x7b\x53\x0c\xb8\x37\x79\xc0\x35\ +\xd3\xa9\x99\x52\x3b\x8c\x5a\xd5\x3a\x8b\x3a\x92\x4f\x62\xca\xb0\ +\x40\xe0\xa2\xd5\x9c\x8e\x13\x56\x9e\x0e\x19\x8a\xb2\xc8\x92\xa6\ +\x61\x2e\x97\xe8\x44\xe9\xd7\xe5\x69\x74\x19\x5d\x57\xe2\x84\xc8\ +\x89\x63\x2b\x3b\x33\xf5\x84\x71\x3e\xac\x4f\xb9\x20\x69\x4a\x64\ +\xca\xf1\x34\x83\x99\xe0\x92\xc9\x06\xd6\x6e\x49\xa9\xf6\x2b\xb8\ +\x4e\xe5\xca\xda\x88\xb1\x04\x98\x8c\x24\x98\x02\xcf\x2e\xae\x00\ +\xf1\x6f\xc5\x9d\xc3\x67\xa5\x86\xcc\x41\x96\xe8\x46\x1b\x3d\x29\ +\xff\x45\xd2\xcc\xdc\x74\x8a\xce\x7a\xfe\xb4\x5c\x80\x99\x16\xaa\ +\x35\x8b\xf0\xce\x24\xa7\xa4\xeb\xd7\x6f\xa9\xf3\xd4\xc3\x21\x62\ +\x65\x7c\x60\x7d\xd0\x18\xb1\xcd\xb2\x43\x22\x29\xea\xa2\x8f\x6e\ +\xc8\xd4\x39\x27\x14\xdb\x4a\x97\x38\x77\x04\xbf\x63\x63\x9a\xcc\ +\x39\x2a\x1d\x94\xbc\xb4\x85\x24\x56\x86\xe2\x20\x0a\xc9\xbe\x04\ +\xf9\x40\x45\x64\x34\x41\xb0\x36\x21\x33\x70\x2b\x16\x85\x4f\x99\ +\xfb\x5d\xd1\xf1\x11\x2b\xcc\xd3\xe3\x51\x43\x91\xcc\x70\x61\x2e\ +\x8b\x3a\xb9\xb8\xba\xb3\x53\xab\x6a\x2c\xf3\x09\x05\x19\xb1\xcd\ +\xa7\xbf\x8a\x44\x02\xd9\xf7\x51\xf1\xac\x21\x77\x78\x98\xde\x2b\ +\xdf\xaf\x37\x05\xdb\xc2\x6f\x54\x0d\xf9\x54\x06\xc9\xa8\x70\x37\ +\x6a\xd8\x01\xfa\x8f\xb9\x81\x42\xb5\x25\x44\xb4\xb7\xd4\x7d\x78\ +\x49\xf7\xab\x74\xc9\x5b\xbf\x0c\xb2\x8c\xd0\x66\x41\xca\x55\x79\ +\x0c\x2d\x4b\x41\xb2\xc2\x2c\x64\x5e\xea\x0d\x2a\xfd\xd0\x8e\xcd\ +\xcb\xf6\xc5\x93\x8f\x43\x9d\x9e\x15\xb4\xbb\xe2\xb4\x78\x2b\x7a\ +\x80\x84\x1f\x2c\x0d\xa4\x16\x51\x89\xc8\xd1\xc2\xe5\xb8\x03\xba\ +\xc4\x2f\xd4\x12\xbc\x86\x05\x1a\x54\xda\x76\xc4\x92\x05\x2c\xec\ +\xd6\xd6\x7d\x2e\xad\xb0\x61\x4e\x65\x79\xa7\x99\x28\x93\x67\x5e\ +\x77\xda\xa2\x88\x9e\x0a\xea\x6f\x46\xf5\xcf\x67\xfe\x66\xa5\x91\ +\x68\x79\xdb\x5d\xbb\xa3\xa8\x5a\x40\xf4\x0b\x11\xf5\x48\xbf\xe6\ +\x8a\xc4\x84\xd5\xa4\x24\xc7\x6a\xad\x36\xa1\x2a\x5a\x94\x70\x0a\ +\x88\xf8\xa4\x46\xc2\x71\xeb\x2a\x84\x03\x25\x03\xf6\x68\x3d\x81\ +\xe9\x62\x95\x99\x15\x99\xa9\x96\x6a\x27\xf2\xbd\xea\x3d\x7b\x13\ +\x7e\xdf\xa7\xfd\xbe\x2f\xb6\x0c\xf5\x76\x55\xf4\xe5\x53\x50\xf1\ +\xf9\x33\x96\xb1\x37\xfd\x32\xf6\xea\x60\xee\x8d\x83\xa9\x7e\xad\ +\x8a\xfe\x78\x0a\x6a\x3f\x7f\x06\x98\xfb\xd2\x82\x19\xbe\x08\x3e\ +\x5a\xe1\x05\xd6\x94\xd2\xba\xd8\x25\xec\x22\x1e\xd2\x1b\x13\x03\ +\x43\x44\x5e\x8a\x4e\x54\x12\x9a\x08\xec\xea\xc3\x2a\x96\x33\x1b\ +\x07\x00\x7e\xc5\x62\x2c\x6b\x4d\xdd\xbb\xfe\xff\x00\x45\x1a\x9b\ +\x08\ +\x00\x00\x3e\xfb\ +\x00\ +\x00\xd2\xa9\x78\x9c\xc5\x7d\x09\x98\x1d\x55\x95\xf0\xed\xbd\xfb\ +\xf5\x16\x42\x0c\x90\x40\xa8\x74\x20\x74\x42\xa7\x13\x12\xb6\x34\ +\x8b\x74\xba\xd3\x24\x98\x90\x98\xee\xac\x20\x50\xef\xbd\x7a\xdd\ +\x95\xbc\x57\xf5\xa6\xaa\x5e\x2f\xd1\x01\x44\x14\xc4\x61\x13\x84\ +\xb0\x88\xa2\x6c\xa2\xe2\x06\x0e\x20\xab\x22\x2a\x0e\xe8\xaf\x0c\ +\xff\x07\x33\x2a\x30\x6e\xff\x88\xe0\x30\xa3\x33\x3a\x3a\xf3\x9f\ +\x7b\xee\x5a\xcb\xeb\xae\x8e\xb3\x7c\x7c\xe4\x75\xbf\xae\xba\xf7\ +\xdc\x73\xcf\x7e\xce\x3d\xf7\xf4\x87\xf3\x87\x3f\xf7\xd6\xed\x1f\ +\x7b\x7e\xf1\x91\x4f\x5e\x74\xe7\xe3\x3f\x5a\x47\x48\xeb\xa9\x84\ +\x90\x5d\x84\x3c\x73\x0f\x7c\xee\x26\xe4\x9b\x13\xf0\xb9\x87\x90\ +\x67\xbb\x09\x69\x78\x19\x7e\x3f\x05\x3e\x5f\x81\xcf\x9d\xf0\xf9\ +\x8f\xf0\x7d\x33\x21\x4d\x93\x84\xfc\xd5\x93\x84\x6c\xf8\x00\x21\ +\x75\x6b\xd8\xe7\x0d\xb7\x10\x32\x76\x22\x21\x1f\xbc\x9a\xd4\x3c\ +\x7d\x05\x0c\xb1\x9f\xd4\xdf\x33\x45\xc8\xcd\x67\x92\xfa\xaf\xd5\ +\x13\xd2\xfe\x07\xf6\x79\xfb\x73\xa4\x61\xd5\x7a\x42\xe6\x6c\x67\ +\x9f\x5f\x58\x49\x1a\x86\xbe\x09\xbf\x5f\xc6\x3e\xbf\xf0\x77\xa4\ +\x61\x07\x7c\x7f\xde\xbb\xd8\xe7\x97\x96\x90\x86\xcf\xfd\x0b\x21\ +\x8b\xfa\xd8\xe7\xd3\x36\x69\x78\xf8\x4f\x84\x7c\xfd\xbd\xa4\xe1\ +\x7b\xdf\x22\xe4\x1b\x47\x91\xc6\xcf\xfe\x15\x21\x57\x1c\x42\xe6\ +\x5c\xbe\x91\x90\xbd\xcb\xc8\xdc\x86\x47\x09\x79\xe2\x06\x32\xff\ +\x59\x80\xfb\xae\xe5\xe4\xe8\xbb\xfe\x95\x90\xe3\xc7\xc8\x72\x0a\ +\xcf\xb5\xb7\x90\xe3\x9f\xf9\x02\x21\xd7\x7d\x9a\x1c\xff\xaa\x05\ +\x9f\x3f\x20\x6b\x7f\x02\x6b\x38\x7d\x35\xe9\xbb\x63\x21\x21\xef\ +\xfb\x2d\x39\xe3\xce\x23\x08\xb9\xf1\x15\x72\xe6\x0d\xb0\xae\x33\ +\x2e\x22\x1b\xae\x7d\x1f\x21\x3d\x01\xd9\x70\xe0\xc3\x84\xd4\x9f\ +\x4c\x36\xbe\xfa\x41\x42\x96\x5d\xce\x3e\x6f\x3d\x96\x9c\x73\x32\ +\xc0\xd9\x74\x17\x79\x57\xe1\x24\x42\xd6\xce\x87\x4f\xc0\xd9\xda\ +\x9d\xf0\xb9\x16\x3e\x0f\x90\x9d\x17\x8d\x10\x72\xe8\x53\xec\xf3\ +\xd1\xe5\x64\xd7\x9f\x60\x1d\x17\xbe\x4e\x76\x1f\x38\x96\x90\xc3\ +\x6c\xf6\xf9\xb5\x17\xc9\xde\x5d\xb7\x12\xf2\x60\x1b\x99\x7a\xeb\ +\x45\xc0\xef\xbf\x92\x8b\x2f\xe9\x20\xe4\xb2\xe5\xe4\xaa\x25\x1f\ +\x23\x64\xe5\x97\xe1\xf3\x66\xf8\xfc\x23\x7c\x02\xae\x57\x0d\x91\ +\xeb\x1f\xfb\x7f\x80\xb7\xcf\x93\x7b\x4e\x79\x27\x21\xbd\x1f\x27\ +\xf7\x5f\x0a\xe3\xdc\xfa\x23\xf2\xb9\x97\x00\xcf\x1b\xcb\xe4\xa9\ +\xcf\xe5\x08\xb9\xed\x5e\xf2\xec\x3f\x38\x84\x2c\x7f\x99\x7c\xf7\ +\xbe\x79\x84\x7c\xe4\x7b\xe4\x8f\xe4\x39\x42\xee\x7f\xa2\xe6\x88\ +\xab\x7f\x4c\x88\xd5\x55\xb3\xf8\x25\x80\xd3\x9e\x5f\xd3\xf5\xe0\ +\xef\x01\x9e\xdb\x6b\x56\x5e\x73\x31\x21\xc1\x87\x6a\x36\xfc\xc7\ +\xa7\x61\xfd\x3f\xaf\x19\xfe\xe7\xfb\x09\xf9\xe4\xe3\x35\x3b\xe6\ +\x9f\x03\xef\x9d\x56\x73\xfe\x8f\x01\xbf\x5f\x2c\xd6\x8c\xb6\x5f\ +\x45\xc8\xdd\xff\xa7\xc6\x3e\x64\x3f\x21\x0f\xb7\xd4\xd8\x37\x1f\ +\x20\xe4\xac\x91\x9a\xcb\xd6\x66\x60\x1d\x0f\xd6\x7c\x64\xac\x02\ +\xfb\xd4\x56\xf3\x91\x0f\x03\xde\x9b\x7e\x58\x73\xe7\x25\x00\x8f\ +\xf1\xbd\x9a\x2f\xbd\xa7\x85\x90\xbf\xbc\xae\xe6\xe9\x97\x61\xfe\ +\xe2\x86\x9a\x1f\x5c\xfb\x43\x42\x2e\xba\xad\xe6\xc5\x39\x4b\x80\ +\x96\xde\x5f\xf3\xa3\x0f\xfc\x81\x90\x2f\x1f\xa8\xf9\xc9\x21\x03\ +\x84\x34\x3e\x50\xf3\xfa\xbf\x00\x3d\x3e\x71\x78\xcd\x1f\x1f\x80\ +\xe7\xae\x3e\xb5\xb6\xe1\x09\x58\xe7\x2d\xd7\xd4\xf6\xbc\x7c\x11\ +\x21\x4b\x16\xd6\xae\x7c\x08\xd6\xd5\x75\x7e\xed\xd0\x2e\x98\xf7\ +\xaf\xcf\xab\xdd\xf9\x6f\x40\xa3\x6d\xcf\xd6\x5a\x9f\xcf\x12\xf2\ +\x2d\x52\xeb\x34\xbd\x4e\x48\xee\x85\xda\xf1\x63\x0e\x25\x64\xfd\ +\xa7\x6b\xff\xf2\xd5\xed\x84\xe4\x9f\xab\xbd\x71\x68\x01\xc0\x79\ +\x5e\xed\xc7\x9e\x7b\x88\x90\xbe\x9f\xd5\xde\xdb\xf3\x0e\xa0\xf1\ +\xbe\xda\xfb\x4f\x06\x7c\x5f\x7b\x62\xed\x67\xaf\x80\x7d\xb8\xf6\ +\x99\xda\x2f\xfd\x06\xd6\x7b\xef\xe5\xb5\x4f\xde\x7f\x0d\x21\xfd\ +\xf7\xd6\x3e\x55\x78\x9b\x90\xf2\xa2\xda\x6f\xbf\xf3\xb7\x40\x2f\ +\x1b\x6b\x5f\xbe\xeb\x11\xa0\xfb\xbe\xda\xbf\x5b\x70\x23\x21\x2d\ +\x0b\xeb\x6a\x2e\x7f\x86\x90\xcf\x7e\xb8\x6e\xee\xcd\x7b\x09\xf9\ +\xcc\x78\xdd\xbc\x29\xc0\xf7\x17\x6b\xea\x16\xcc\x03\x38\x4f\x9e\ +\xac\x5b\x30\x1f\xf8\xac\x70\x4a\xdd\xca\x05\xf0\xf7\xeb\x77\xd7\ +\x5d\x4c\xe7\xdf\x7e\x56\xdd\x07\x83\x0d\x84\x6c\xed\xa8\xbb\xf2\ +\x68\x98\x77\xc7\xa1\x75\x77\xec\xba\x1b\x78\x71\xb0\xee\x2b\x77\ +\x00\x3e\x1e\x1a\xab\x7b\xe8\xdb\x40\x1f\x5f\x7d\xb0\xee\xf1\x17\ +\x7f\x4a\xc8\x47\xbb\xea\x9e\x39\x1d\xe6\xbf\xf1\xa6\xba\x6f\xfe\ +\xed\x05\xc0\xc7\xc3\xec\xf3\xd6\x7b\xea\xbe\xdb\xfe\x33\x42\x1e\ +\xab\xa9\xfb\xfb\x36\x18\xe7\xba\x25\x75\xaf\x4d\x02\xbe\x0e\x3c\ +\x55\xf7\x76\x19\xe8\x73\xf5\xa3\x75\x6f\x3f\x0e\x78\x3b\xa2\xb9\ +\xee\xdf\x3b\x81\x4e\x4e\xae\xaf\x5f\xbc\x04\xf0\xbe\xf4\x9f\xea\ +\x7b\x7d\xe0\x83\x4b\x3f\x51\xbf\xa3\xf1\x06\x42\x4e\xec\xac\xbf\ +\xe8\x7d\x80\x8f\x47\xef\xaf\x9f\x7a\x0b\xe6\xbd\xb7\xa9\xfe\xb2\ +\x09\xa0\xdb\xfc\xa5\xf5\x57\x7c\x00\xf8\x7b\xf0\xee\xfa\x2b\x7e\ +\x7f\x07\x21\x9f\xbb\xae\xfe\xaf\x5e\x7a\x80\x90\xfd\x5e\xfd\x35\ +\x8f\x03\xbf\xdd\xf1\xdb\xfa\x4f\x5e\x05\xf3\x35\x5e\xc2\x3e\x3f\ +\xf6\xfb\xfa\xbb\x4e\x80\xfd\x7b\xe0\xf1\xfa\xfb\x7e\x05\xfc\xb2\ +\xf6\xe5\xfa\x27\x32\xff\x06\xf4\x7f\x61\xfd\x4b\x2f\xcd\x25\x24\ +\x3b\x55\xff\x9a\xf3\x0f\x00\xff\x0f\xeb\x7f\xda\x09\xf4\x52\xfb\ +\xc3\xfa\x5f\xf5\x7f\x83\x90\x35\xd7\xd5\xbf\xf5\xf2\x7d\x84\x5c\ +\x90\x6f\xa8\xfb\x00\xec\xc7\x95\x5f\x6d\x68\xf8\x2e\xec\xdf\xf0\ +\x35\x0d\x9d\x6f\x07\x84\x7c\x65\x45\xc3\xc2\x39\x80\xc7\x9d\x7f\ +\xd3\xb0\xfc\x67\xc0\x17\xe6\x7b\x1a\x06\x4f\xbb\x90\x90\xab\xbe\ +\xd1\x70\xfe\xcb\x80\xff\xb9\xb5\xec\xf3\x4b\xb7\x37\xe4\x7e\x07\ +\xeb\xb9\x68\x49\x83\xf5\x26\xf0\xfb\x1d\xf7\x35\x5c\xf1\x45\x18\ +\xff\xd1\xcb\x1a\x6e\xba\x0f\xf0\x3b\xbf\x89\x7d\x7e\xed\xbe\x86\ +\xcf\xbf\x0b\xbe\xdf\x7e\x7b\xc3\x97\xef\x79\x16\xe8\xca\x6c\x78\ +\xa4\xee\xdb\xf0\xf9\x4a\xc3\xe3\x6d\xb0\xff\x77\xbe\xd6\xf0\xf8\ +\x35\x40\xaf\x93\x8f\x35\x3c\xb1\x03\xc6\x7b\xcf\x1b\x0d\xdf\xdc\ +\x0a\xf8\xeb\x38\xbe\xe1\x67\xd7\xf4\x02\x7f\xbf\xd5\xf0\xef\x7f\ +\x0f\xf2\x62\xf8\x37\x8d\x8b\x7e\x0e\xfb\xf9\x74\x6f\xe3\xb2\x37\ +\x3f\x43\xc8\x4d\xe3\x8d\xcb\x3f\xf4\x3c\xe0\x6d\x79\xe3\xce\x23\ +\x00\x7f\x80\x99\x3d\x6f\x01\x5e\xaf\xcd\x37\x9e\xf7\x03\x78\xee\ +\x5d\x87\x36\x16\xaf\x04\xba\x7a\xf7\x27\x1a\x83\xa3\x80\x2e\xf7\ +\x7d\xb5\xf1\x23\x37\x0d\xc2\xb8\x3f\x6a\xbc\x79\xd7\x77\x80\x4e\ +\x9e\x6a\x7c\xec\x52\x80\x6f\xf1\x5b\x8d\xdf\x79\xb8\x01\xf6\xfd\ +\xf6\xc6\x5f\x36\x9c\x4b\x48\xf3\x81\xc6\x37\xef\x07\x99\xfc\xd4\ +\x61\x8d\xbf\xf9\x2e\xe0\xf9\xe8\x87\x1a\xff\xf0\x9f\x00\xff\xc8\ +\x4f\x1b\xff\xb8\x00\xe8\xec\xb4\x81\xc6\x3f\x7e\x12\xf8\xf3\x2b\ +\x7b\x9b\x9a\xaf\x03\x7a\x38\xe1\xe8\xa6\xf6\xbf\x06\x39\x78\xd6\ +\x4b\x4d\x1d\x1f\x3a\x13\xf8\x70\x51\xd3\xf2\x25\x80\x8f\x77\x3e\ +\xd9\x74\xd2\x18\xc8\x87\x05\x27\x34\x9d\xf4\x4b\xd8\xe7\x87\x37\ +\x34\x0d\xf6\x2f\x07\x7e\xef\x6b\x3a\xe7\x68\xe0\xd7\x9a\x37\x9b\ +\x36\xfb\x5d\x20\x97\x77\x36\x9d\x7b\x0f\xd0\xfd\xc7\x8f\x6d\xda\ +\xf5\xdd\x5f\xc2\xef\xb7\x34\xe5\xfe\x03\xe4\xd3\xbc\x97\xd8\xe7\ +\xa3\xc3\x4d\x7f\xf1\x79\xe0\xd7\x85\x7d\x4d\x97\x3e\xfb\x15\xd0\ +\x27\x4e\xd3\x95\x1e\xec\xfb\x0d\xbf\x6a\xba\x7e\x12\xe8\xb2\xfb\ +\xfd\x4d\xf7\xae\x02\xf8\x6f\x78\xac\xe9\xe9\x3f\xc2\x3e\x9e\xf8\ +\xd3\xa6\x5f\xbc\x01\x78\xbc\xe4\xa4\xe6\xe3\x1e\x04\xfc\x7e\x75\ +\x7b\xf3\xea\x67\x40\xce\x3c\xd2\xde\x7c\x72\x00\xf0\x2f\xff\x68\ +\xf3\xe0\x23\x80\xcf\xd3\x1e\x6b\xde\xf8\x9d\x55\x40\xaf\xe7\x37\ +\x9b\xef\x83\x71\x8f\x69\x6f\xfe\xd4\x73\xa3\x20\xb7\x7e\xdd\xfc\ +\xe9\x57\x81\x5e\x6f\x7e\xad\xf9\x4b\xef\x00\x5d\x75\xd2\xd5\xcd\ +\x0f\xd6\xc3\x7e\x7c\xed\xd8\xe6\xef\xaf\x06\x3c\xdf\xfe\xbb\xe6\ +\x17\x9f\xb7\x01\x5e\xab\xf9\xb5\xdb\x9e\x00\xfd\xf1\x8b\xe6\xd7\ +\x9e\x06\x3e\xfa\xc4\xe5\xcd\x6f\x6d\x06\x79\x75\xeb\xb9\x2d\xc6\ +\x2b\xc7\x80\x5e\xbb\x11\x3e\x1f\x04\xbd\xb6\x1e\x3e\x81\x5f\x9e\ +\xf9\x46\xcb\xe6\x9b\x40\xef\x1d\xff\xb5\x16\xeb\x15\xc0\xdf\xa7\ +\xbf\xd0\x32\xd6\xbe\x8c\x90\xcf\x3f\xd0\xf2\x17\x57\x03\x9e\x9b\ +\xb7\xb6\x54\x96\x00\x7c\xd7\xfd\x67\xcb\xf8\xaf\x41\xdf\x5d\xfc\ +\x77\x2d\x1f\xba\x07\xd6\xb5\xec\xcb\x2d\x1f\x59\x02\xeb\x78\xc4\ +\x6b\xb9\xe3\x4f\x20\x3f\x2f\xf9\xe7\x96\xaf\x2e\x07\xfc\xf5\x9d\ +\xdd\xf2\xfc\x91\xb0\xaf\x8f\x0d\xb4\xfc\x60\x31\xe8\xcf\xca\xd5\ +\x2d\x3f\x5b\x02\xf8\x72\x7e\xd1\xf2\xc6\xf1\xa0\x37\x3a\xae\x6d\ +\x79\x6b\x0d\xc8\xd9\x23\x9b\x5b\x7e\x73\x34\xec\x43\xdd\x9e\x96\ +\x3f\xad\x07\xb9\xf4\x50\x7b\xa6\xe5\x69\x80\xf3\xaf\xbf\x9c\xe9\ +\xbe\x15\xf6\x29\xfb\x7b\xf8\x84\x75\xe7\xce\x82\x4f\x58\x57\xee\ +\x8a\xcc\x8a\x27\x40\x0e\x9c\xfc\xdb\xcc\x49\x9f\x81\x75\xdd\x97\ +\xc9\xbc\xf3\x38\xe0\x8b\x5b\x5e\xcf\x9c\x75\x27\xf0\xd3\x9a\x13\ +\x32\x1b\xef\x06\x79\xfd\xf4\xb5\x99\x8b\x5e\x05\x7a\xeb\x79\x08\ +\x3e\x0f\x23\x64\x45\x33\x7c\x82\x7e\x5b\x71\x5e\xc6\xba\x0d\xe0\ +\xf9\xd2\xf7\x33\x93\x0d\x97\xc2\x3e\xaf\xcd\x5c\x72\x2d\xcc\x33\ +\xf4\xed\xcc\xfb\x7f\x0a\xf2\x60\xd3\xd5\x99\x0f\xcd\x01\x3a\x3c\ +\xf4\xfc\xcc\x81\x0f\x1d\x0e\xfa\xe6\xba\xcc\x2d\xe7\xd3\xfd\x79\ +\x21\x73\xdf\x7c\xe0\xc7\x77\x3c\xcb\x3e\x1f\x7d\x33\xf3\x99\x0f\ +\xbf\x01\xf2\xaa\x98\xf9\xf6\xf9\xc0\x8f\x73\xcf\xc8\x7c\x7f\xeb\ +\xc3\x40\xdf\x6f\x67\xbe\xff\x73\x90\x4f\x0b\xde\xca\xbc\xf4\x4f\ +\x00\xdf\xed\x17\x66\x7e\x75\xfd\x95\x80\xaf\xee\xd6\xa6\x49\x8a\ +\xd7\x8e\xd6\x85\xaf\xfa\x84\x8c\xf6\xb6\x1e\xf3\x71\xc0\xff\xd8\ +\x92\xd6\x63\xbe\x09\xf4\x3e\xbf\xaf\x75\xe9\xc5\x80\x9f\x5b\x48\ +\xeb\xf1\x5b\xe1\xbd\x7b\xbc\xd6\x15\x5f\x01\xbd\x74\xf9\xa7\x5a\ +\x4f\xf1\x61\xdd\xdf\x78\x77\xeb\x59\x67\x01\xfd\xee\x1a\x6c\x1d\ +\x78\x1e\xd6\xb1\xe3\x97\xad\x5b\x0e\x00\xde\xef\xba\xbf\xb5\xd0\ +\xfd\x03\x90\xc7\x37\xb5\x5e\xf9\x6a\x13\xd8\x1b\x0b\x5a\x6f\x1c\ +\x04\x7b\xe2\x94\xf1\xd6\x03\x73\x01\xee\x3b\xf3\xad\x9f\xbc\x1c\ +\xe4\x73\xbd\xdd\xfa\x95\x21\x90\xbb\x37\xef\x6d\xfd\xfa\x2d\xf0\ +\xf9\xa9\xed\xad\x3f\x3c\x0e\xe4\x57\x43\xd0\xfa\xe2\xc5\x20\xcf\ +\xda\x37\xb7\xfe\xf6\xcd\x61\xc0\xcb\xbb\xdb\x1a\xb7\x02\x5f\x77\ +\xe6\xdb\x8e\xf8\x03\xe8\xdb\x8f\xbf\xd5\xb6\x38\x03\xf4\x78\xd3\ +\xe2\xb6\xee\xdb\x60\xdf\xae\x2b\xb7\x9d\x70\x31\xe0\xf7\xa1\x2f\ +\xb4\x9d\xba\x19\xf8\xab\x65\xac\xad\x6f\xfe\xf7\x09\x39\xea\xc1\ +\xb6\x3d\x4f\x81\xdc\xb8\x31\xdb\xe6\x5c\x01\xeb\xef\x3e\xa7\xed\ +\x7d\xaf\x82\x6d\xd5\xf5\xa9\xb6\x4b\x4f\x03\x7a\xbd\xed\x4f\x6d\ +\xd7\x7f\x12\xf6\xf5\xa9\x6f\xb5\xdd\x74\x1d\x95\x5f\xef\x69\x7b\ +\xe2\x5e\xe0\xe7\xcd\xff\xda\xf6\xdc\x8f\x60\xbd\x4f\x76\xb6\xbd\ +\xf4\x16\xc8\xc5\x13\x3f\xd0\xf6\xe3\x5b\xc0\x9e\xb9\xfc\x8d\xb6\ +\xd7\x16\xd7\xc2\xfe\xd7\xb6\xbd\x3e\x01\xf8\xba\x62\x4b\xdb\x6f\ +\x7e\x0c\xeb\xb9\x7b\x45\xfb\x91\xbf\x7b\x13\xf8\xfa\x5f\xda\xfb\ +\x8a\x94\x7f\xea\xda\xd7\xbf\x0e\xeb\x79\xfc\x96\xf6\xdd\x77\x02\ +\x7c\xb7\x75\xb6\xef\xf9\x3c\xcc\x77\xc3\xd2\xf6\x0b\x7e\x01\x74\ +\xb5\xe2\x81\xf6\xfc\xdd\x40\xd7\xfe\x55\xed\xa5\x7f\x03\xfe\xc8\ +\x2c\x6c\x0f\x7e\xb4\x0d\xe8\xee\xf7\xed\xe3\x0f\x7d\x14\xf4\xc2\ +\x86\xf6\xdb\xde\x00\xfc\xef\x5b\xdf\x7e\xf7\xcb\x80\xa7\x13\x6e\ +\x6b\xbf\xe7\x95\xbb\xc0\x24\xbc\xad\xfd\xde\x47\xbe\x0e\xeb\x1a\ +\x6a\x7f\xf6\x59\x90\x0b\x0f\x7f\xb6\xfd\xed\xb5\x30\xdf\x7d\x8f\ +\x77\x2c\x38\x8a\xca\x9b\x6d\x1d\xcb\x6e\xcc\x13\x32\xd0\xdc\x71\ +\x7c\x3d\xd0\xd9\x81\xf7\x76\xf4\xfc\x14\x9e\x7b\xfc\x98\x8e\x73\ +\xff\x06\xf0\xdf\x7a\x63\x87\x7b\x2b\xd0\xf3\x93\xb7\x75\xbc\x77\ +\x7f\x0f\x21\xa7\x5e\xde\x71\xed\x5e\xb0\x8f\xce\xa8\xed\xb8\xde\ +\x02\xfc\x2c\xb2\x3a\x9e\xfb\xbf\xc0\x47\xc7\x7e\xa7\x83\xf1\xc9\ +\x35\xf0\x09\x74\xf8\xd8\xcb\x1d\xcf\x9f\x07\xf8\xb9\xe0\x3f\x3a\ +\xfe\xf1\x67\x75\xa0\xf7\xff\xb6\xe3\xd7\xaf\x01\x1d\x9c\x77\x7d\ +\x67\xd3\xd5\x40\xdf\xd7\xbc\xbf\xb3\x75\x0e\xec\xd3\x9e\xba\xce\ +\xc3\x2e\x03\xfc\x91\x9f\x74\x1e\x7d\x35\xc8\xc9\x03\x27\x74\x6e\ +\xa9\xf4\x01\x3f\x3f\xd2\x79\xe1\x73\x7f\x0b\xfb\xff\xeb\xce\x89\ +\x6f\x00\x7d\x7d\xf0\xdb\x9d\x1f\x6e\x05\x39\x70\x7e\x5d\xe7\xb5\ +\xf7\xdd\x0b\xeb\xfe\x5c\xe7\x81\x0c\xd8\x3d\x5f\xbf\xb3\xf3\x8e\ +\x37\x3e\x09\xf4\xdc\xde\xf9\xe4\x15\xc0\x87\x0f\xf8\x9d\xcf\xbf\ +\x00\x74\x7d\xfa\x47\x3b\x7f\xb2\x18\xf8\x7a\xf9\x19\x9d\xbf\x6b\ +\x5c\x04\xfa\xf1\xf8\xce\xdf\x2d\x03\xfb\xe2\xa3\x2f\x74\xfe\xfb\ +\x85\x40\x2f\xb7\xac\x03\x62\xfc\xd6\x4e\x80\x8c\x1c\x4e\xfa\x49\ +\x9e\x98\xa4\x42\x46\x6b\xea\x88\x41\xca\xf0\x93\x43\x72\x24\x68\ +\x46\x71\x0f\xff\xb7\xf4\xe7\xf3\xc6\x56\xd7\x76\x02\xa0\x4c\xd2\ +\x31\xe8\x99\x85\xe0\x42\xf8\x0e\xbf\xaa\xa1\x63\x6c\xc5\x31\xf2\ +\xc4\x87\xf7\x4d\x1c\xc3\x25\x36\x8c\x12\xc0\xcf\x01\xfc\x4c\xbf\ +\x75\xe0\x5f\x8b\x4c\xc2\xf7\x3e\x7c\x47\xff\x3a\x0a\xdf\x4c\xc0\ +\x4f\x1e\x7c\xbf\x92\x64\xe1\xfb\x32\x29\xe2\x5f\x2c\x39\x77\x37\ +\xcc\xe3\x1b\xa6\x51\xa6\x73\x19\x81\x6b\x98\x8e\x61\x4d\xda\x7e\ +\x60\x3b\xa3\xc6\x84\xed\x59\x2b\xb3\x7e\xb9\x68\x3b\x56\x35\xd0\ +\x96\x52\xd0\xe0\x27\x58\x1e\x00\x41\xa7\x32\x60\x12\x0a\xe4\x28\ +\xfc\x56\x81\x29\x7b\xe9\x7f\x72\xc2\x4e\xba\x58\x98\x67\xd4\x73\ +\x2b\xe5\xde\xde\x5e\x3a\xee\x1c\x39\xee\x88\x7b\x36\xfd\x1e\x47\ +\xbe\x48\x5b\x74\x40\xc6\x70\x64\x1f\xfe\x2d\xc2\xff\x80\x3e\xf8\ +\x37\x0f\xdf\xb8\xb0\xb0\xbd\xfc\x9b\x6e\xf8\xfb\xb2\x19\x51\x42\ +\xe1\x72\x29\x64\x12\xa6\x55\x88\x84\x60\xcc\x32\x7c\xab\x68\xe5\ +\x02\x2b\x6f\xb8\xd9\xbd\xf0\x43\xb7\xbf\x2c\x8a\x13\x84\xbb\x3a\ +\xd0\x57\x02\xd0\x0c\xcb\x39\xdc\xed\x62\x4d\x5d\x4d\x0e\x7e\x2b\ +\x01\x20\x80\x94\xda\x23\xe0\x67\x03\x80\xad\xc0\x33\x2e\x47\x98\ +\x89\x28\xa3\xe0\xd9\xf0\x9b\xf8\x3b\xfd\x8b\x83\xcb\xa4\xfb\xcd\ +\x7e\xa6\x08\x65\x4b\xb6\x25\x12\x8a\x31\xc4\x98\xf4\x7b\xb9\xb8\ +\x53\xfb\xcb\xb0\x81\x96\x6f\xe4\x2a\x9e\x67\xc1\x26\xd3\xdd\x84\ +\xad\xcd\x07\x63\xb0\xb0\xbc\x91\x73\x8b\xae\x47\x57\x19\x59\xbb\ +\xaf\x2f\x12\x86\x98\x1a\x0e\xa6\x8a\x16\x2e\xb2\x3b\xb2\x48\x86\ +\xdd\x22\x2e\x2a\x04\xbc\x04\xe2\x50\x1c\xc1\x18\xe0\x20\xe0\x50\ +\xd5\xc7\x6f\x84\xf1\x3d\x92\x93\x6f\xd7\xf5\x7b\x39\xfa\x74\x0b\ +\x7f\xda\xcb\xe1\x63\xd7\x90\x01\x9c\x88\x62\x70\x3f\x02\x52\xc1\ +\x2d\xa7\x58\xcd\xc1\x67\x1e\x31\x93\x83\x7f\xe9\xef\xbd\xf0\xf3\ +\x00\x19\x21\xdb\xc8\xa6\x18\x46\x4d\x20\xa1\x0a\x2e\x83\xed\x48\ +\x0f\x7c\x37\x4c\x36\x90\x8d\x64\x08\xde\x88\x3e\x9d\x83\x1d\x70\ +\xf0\x69\x8f\xbc\x8e\x44\x45\x67\x50\x18\x5f\x35\xe0\x59\x66\x00\ +\x18\x07\xba\x31\xbd\x5c\xaf\x31\x30\xb2\x6d\x13\x62\xd8\x31\xcb\ +\x3d\xc6\xf0\x86\x8d\x43\x23\xf4\xd7\x9c\xeb\xf8\x81\x67\xda\x4e\ +\xc2\xda\x3a\xc8\x66\xdc\x47\x8f\x22\x59\x1b\xbb\xa1\xdf\xf3\xcc\ +\x29\xfa\x42\xab\x78\x01\x7e\xc7\x57\xc6\x39\x3a\x70\xfb\x43\xa2\ +\xa2\x88\xcb\xa2\x84\x43\xff\xf5\x24\x99\x50\xd0\x2b\xf2\xaf\xf4\ +\x5f\x0f\xfe\x9d\x82\x9f\x0b\xc8\x23\x25\x3e\xc6\xb4\x5c\x27\x41\ +\x3b\x4d\x2e\x1b\xa4\x49\xd1\xf4\x0c\x20\x2b\x0f\x08\xc9\x74\x46\ +\x2b\xf4\x57\x93\x42\x6a\x14\x3c\xb7\x04\x4f\x44\x88\x2d\x71\x41\ +\x73\xc8\x3a\xb2\x02\xf6\x21\x2e\xb5\x9a\xd7\xad\x18\x96\x52\xa9\ +\x9d\xbd\xb7\x8e\x7d\x83\x6f\xde\x13\xa3\x0c\x57\x12\x66\x96\x2f\ +\x49\x8e\x0a\xbf\x95\x10\x0d\x94\x88\x57\x28\xf9\x3c\x03\xc5\x50\ +\x24\xd9\x20\x5c\xcc\x19\xa8\xc5\xe4\x28\xf7\xc5\x6e\xa2\x3c\xa0\ +\x14\x64\xca\xf5\x0c\x28\xd4\x95\x2a\xc5\xc0\x2e\x17\xad\x15\x4c\ +\x22\x67\x57\x30\xf1\x9b\x8e\x88\x12\x50\xd1\x0c\x4b\xb0\x42\xdc\ +\xd4\x38\x60\x7b\x39\xc6\x7e\x6d\xec\x79\xf6\x05\x3e\x7e\xa0\x0a\ +\x4f\x1d\x2c\x17\xf5\xc3\x73\x71\x9c\x84\xa5\x15\x53\x1a\x61\xa9\ +\x66\x48\x02\xe5\x52\x50\x82\x7f\x86\xc2\x55\x0e\xe1\x8e\xa2\xa6\ +\x7f\xd3\x88\x12\x67\x06\x25\x3f\x2a\x72\x34\xa1\x16\x5f\x75\x06\ +\xd6\x54\x8c\xec\x49\xc3\x40\xd1\x65\x04\xc6\x09\x13\x7f\xc7\xc7\ +\xcf\x92\x8f\xeb\x04\xa6\xc0\xa7\xc4\xd4\xcd\x97\xb8\x6c\x5a\xe1\ +\x7c\x14\x0e\x5a\x4d\xf7\x24\x4e\xbe\x80\xbc\x80\xf4\x39\x06\xd3\ +\xe5\xb9\xba\x65\xba\x43\xc1\x9e\x81\xc7\x7d\xcb\xd8\xc4\x39\xa4\ +\x53\x8e\xe1\x5b\x9b\x04\x61\x0c\x56\x1f\x07\x7e\x7e\x93\xef\x3a\ +\xe5\x18\x5f\xca\x52\x0b\x85\x45\x16\x05\x89\x19\x92\x79\x0b\x71\ +\x70\xb6\x10\x54\x30\x59\x8b\x6a\xcb\xbc\x67\x4e\x38\x55\x41\x58\ +\x44\xd6\xe3\xa4\x25\x9c\x58\x10\x42\xdc\x40\x6a\xdb\x66\x95\xdc\ +\x71\x2b\x66\x23\x0d\x5a\x45\x65\x88\x5c\x04\x34\x69\xc1\x50\x2e\ +\x08\x42\x2b\xd1\x52\xd2\x85\xda\xf4\xd6\x92\x10\x95\xc9\x36\xd3\ +\x2a\x06\x8e\x32\x9b\x98\x4c\x8b\x18\x4e\x54\xfc\xc5\x6d\xa7\x10\ +\xc8\xcf\x26\x8a\xa9\x3c\x37\x17\xa8\x8a\xb1\x11\x17\xd6\x7f\xbf\ +\xf2\x9a\x25\xb3\xd2\xef\x46\x39\x94\x6a\x9f\xce\x55\xac\x99\xb7\ +\x4b\x96\xe3\xdb\xae\x33\xb3\xe0\x8a\x72\x2c\x55\x0e\xa3\xf0\x76\ +\xa0\xd1\xcd\xa0\x18\x0e\xf1\x36\x0f\x88\x37\x86\x23\x65\x4e\xcb\ +\x87\xab\x0e\x30\x17\x06\x70\x61\xb7\x1d\x34\x06\x4d\x4a\xdd\xda\ +\xeb\xee\x84\x33\xea\x99\x79\x9d\x75\xe4\x77\xf8\xfa\x55\x40\xb7\ +\x93\x48\x18\x2e\x32\x46\x92\x0c\xa8\x6a\x98\x49\xe6\x8a\x0a\x3c\ +\x1f\xd7\x54\xc6\xa7\x7b\xf0\x77\x13\xf1\x4f\xc9\x34\x40\x30\x47\ +\xf1\xb9\x02\xb1\x6a\x17\x8a\xf1\x25\xd8\xeb\xd7\x4f\x96\x8b\x6e\ +\x3e\x59\x96\xf8\x06\x90\x1c\x20\xd8\x2e\x81\x66\xf1\xc4\x97\x3d\ +\x94\x44\xfd\x4a\x16\x76\x01\xd0\x5e\x30\x73\x96\x5f\x75\xc9\x8b\ +\x00\x63\x14\x84\x82\xe6\x73\x0c\x93\x7d\x00\x42\x40\x65\x88\x32\ +\xef\xf1\x65\xba\x9b\xc3\xfb\xac\x20\x37\x46\x07\x9c\xcb\x07\xa4\ +\xff\xae\x66\x5f\x73\xa9\x3b\x88\x9c\x0a\xdb\x28\xdf\x6f\x82\xa7\ +\x26\x80\x85\x34\x6d\xc6\xbf\xc1\x57\x2e\x00\x57\xa8\xc2\x95\xf6\ +\x6c\xb0\x4d\xf1\xb7\x02\x81\x2e\xa0\xd9\x6d\xe3\x5f\xf2\xf2\x5f\ +\x04\x42\xf3\x52\x56\x6c\xad\x04\x55\x30\xe9\x82\x51\x67\x70\x98\ +\x0c\x7f\xcc\xb2\x82\xde\x2a\xc0\x76\x00\x99\x50\x66\x0e\x22\xb2\ +\xb2\x7e\x7d\xde\x46\xe2\xce\xb0\x77\xe8\xaf\xf8\x42\xaf\x7c\xa1\ +\xba\x5e\xa1\xfc\x9e\x43\x91\x35\x2e\x07\x3c\x8c\x8e\xc0\xc0\x85\ +\x9d\xb4\x41\x52\x2a\xab\x2a\x3a\xc7\x22\xe0\x71\x25\xe6\xf3\x1c\ +\x6b\x2e\x52\x9f\x0e\x64\xeb\x90\xed\xd8\xfe\x98\x21\xe4\x17\xb7\ +\xd4\xd9\xb7\x52\x82\x9f\x05\xf2\x82\xca\x0f\x94\xe0\x52\x82\x29\ +\x67\x06\xf0\x0d\xdf\x7a\xf8\x17\x93\xff\xf5\x4d\x5d\xed\xc8\xf9\ +\xba\xd8\xc8\x28\x3c\xb8\x87\x12\x8c\xb9\x95\xc0\xc8\x81\xca\xa0\ +\xa8\x66\x28\x4b\x06\xe3\xd6\x44\x41\xaa\x83\x91\xc7\x9f\x0d\xb2\ +\x5a\x57\x30\xff\x13\x82\x55\xf9\x61\x4a\x38\xae\xe6\xc6\x5d\x7a\ +\xc3\x8e\xef\xa2\x5c\x70\x46\xee\xa2\x46\x56\x42\xdd\x47\x1f\x6e\ +\x06\x5f\xa2\x42\x60\xfb\xd5\xa3\x9b\x41\x7f\x69\x8f\xd2\x5f\xf1\ +\xd1\xbf\x17\x8f\x12\xc3\x68\x35\x5a\x67\xcd\x63\xd6\xff\x06\x8a\ +\xa7\xd1\x5d\xf4\x8d\x32\xae\x40\xdf\x8a\x3d\x9b\x51\x7d\x27\xb2\ +\x77\xd6\x0a\x26\x2c\xcb\x31\x56\x33\xdd\xee\xcf\x42\x7f\xe5\xdc\ +\xf2\x54\x12\x52\xe7\xc1\xf2\x5d\x14\xed\x4c\x61\x85\xa5\x41\xe3\ +\x96\x42\xc1\xb7\x02\xcd\x30\x65\x5f\xe0\xab\x5f\x8d\xbc\x9a\x4a\ +\x2e\x44\x30\xce\xa2\x31\xff\xdd\x98\x36\x35\x6c\x2b\x43\x74\x03\ +\x5b\x4b\x82\x6c\x3a\x08\xbc\xc6\xd1\xd3\x5b\xc5\x5b\xd1\x91\x93\ +\x64\x50\xce\xd7\x5d\x55\x5b\x7a\x07\x9a\xbd\xad\x8c\xb4\x0c\x57\ +\x39\xfa\xfb\x0d\xd2\x12\x8d\x3d\x7e\x55\x15\x90\x98\x1f\x6e\x03\ +\x26\x5d\xfc\xdd\x43\x0b\x8a\x79\xdf\xff\x95\xae\xa6\xb0\xa7\x03\ +\x6d\x17\x34\xcf\xdc\xb3\x98\x33\x0e\x1e\xfa\xd4\x68\x1a\xeb\x4c\ +\xd3\x6d\x5b\xd9\x3b\x5c\xb7\x6d\xd5\x17\xa4\xf4\x37\x7f\xa8\xca\ +\x6b\xc5\x2a\xd8\xc9\xe3\xb7\x65\xa4\x65\x4a\x6d\x63\x18\x06\x3b\ +\x38\xa1\x2d\xb1\x25\x81\x5a\x16\x17\xbd\x3c\x30\x11\xf5\x1e\x35\ +\xfb\x67\x9b\x78\x42\x9a\x9c\x31\x10\x95\xcd\x28\x1f\xae\x3a\x40\ +\x1b\x40\xeb\x22\x7f\x86\x98\x7f\x9b\x1b\x00\x64\x1a\x75\xb3\x2f\ +\xf0\x95\xc7\xf8\x2b\x56\xcd\x85\x5c\xcc\xa6\x13\xc7\xff\xb3\x02\ +\x37\xc7\x83\x4e\x6c\x3b\xa5\xc0\x95\x4b\xdc\xc6\x56\x94\x2c\x6e\ +\xd3\x4a\x81\x9c\xf2\xf9\xc3\xc2\x40\x43\x57\x07\x2c\x24\x07\x80\ +\x14\x23\x02\xb6\x61\x38\x67\x16\x75\x47\x1e\x7f\xc7\x57\x7e\x23\ +\x5f\x99\xbd\x11\x2f\x7c\x66\x53\x63\x71\x41\xa2\xe2\xaf\x59\x3e\ +\xea\xff\xa6\x0a\x4c\x16\xcc\xe7\x23\x12\xaa\xe8\x40\x1e\xa3\xcb\ +\x9a\xbe\xc5\xe4\xe3\x41\x08\xeb\x18\xae\xbb\x60\x55\x1a\x16\xc1\ +\x85\xb1\x25\xe6\x78\xaa\x40\x39\xfc\xc3\xcc\x15\x94\xc1\xf6\x43\ +\xf8\x68\xf8\xb5\x8a\xb6\x4f\x86\xc6\x54\x7b\x18\xa0\x91\x5f\x9d\ +\x67\x72\x1c\x33\x39\x26\x8a\x80\xbf\x28\x2c\x74\x4c\x0f\x0d\x59\ +\x1a\xa1\x63\x71\x78\x53\x3e\xe7\xe3\xbe\x46\x21\x3d\x85\x81\x04\ +\x94\x59\x2c\x4a\xfc\x51\xd3\x95\x61\xd6\x2c\x01\x06\x4d\x1a\xf3\ +\x86\x27\x28\xb6\x6d\x7f\xc6\x45\x15\xc3\x88\x92\x51\x91\x22\x0f\ +\x5b\x08\xc2\xab\x20\xeb\x55\x12\x48\x84\x31\x64\x3c\xac\x66\x20\ +\xb9\xb8\xe8\x39\xf3\x60\xa4\x5c\x48\xcf\xb0\xf0\xbe\x27\x5c\x6f\ +\x1f\x35\xb8\xcb\x45\x13\xcc\xf0\x02\xf8\x88\xa3\x96\x5b\xb2\x02\ +\x6f\x8a\xb1\x21\x77\xac\x43\xd0\x6f\xa5\xcf\xf2\xf0\x94\x84\x1e\ +\xb7\x58\x83\x5d\xf9\x16\xda\x4b\xd3\x0c\x55\x46\xe3\xc7\xc1\x78\ +\x8e\x87\xe0\x67\xd1\x69\xb0\x65\x08\x9b\xc7\x51\x61\xf8\x22\x86\ +\xad\xb3\xb8\xb0\x09\xdc\x55\x8a\x2a\xdd\x67\xa5\xc8\xcb\x87\xbd\ +\x56\x12\x4e\x1f\xf9\x9a\xad\xee\x3a\xe3\x96\x17\x18\x59\x3b\x6f\ +\x53\x55\x01\x6b\x86\x0d\x9e\x92\xd6\x21\xf3\x72\x69\xfa\x84\xf9\ +\xb3\x7a\x78\x51\xac\x66\xcc\x2c\x5b\xab\x07\x77\xd8\xd6\x04\xae\ +\x66\x24\x16\x9e\x1f\x06\x08\x4c\xdc\x3c\xaa\xe2\x06\xe1\xdf\x71\ +\x44\xd8\x04\xfe\xd5\x05\xb8\x67\x4a\x78\x29\x88\x97\x0b\x15\x87\ +\xd3\x1a\xab\x07\x8d\x71\x98\x18\xbc\xd5\x42\x62\x5e\xa7\x0a\x8c\ +\x0b\xaa\xc3\x24\x67\x6a\x0f\xcd\x30\xe3\x60\x34\xcc\x42\x97\xea\ +\xe0\xb0\x06\x59\x47\x29\x53\x1f\xcc\x9d\x30\x86\x41\xa8\x18\xeb\ +\x4c\x2f\x34\x98\x3b\x41\xbf\x86\x6f\x71\xb0\x55\x72\x30\x3f\xb2\ +\xaf\xbe\x1c\x9a\x72\x3d\xb5\x49\xb2\xa1\x29\x0e\xa7\x43\xf9\x7c\ +\xc7\xa8\xf8\x02\x29\xe5\x16\xb3\xd3\xce\x36\x98\xe8\x4f\x3a\x54\ +\x1b\xcf\x28\xcd\xe3\xe6\xc7\x12\x3d\x1f\xe4\x38\x54\x63\xc5\x02\ +\x63\x9a\xdf\x30\x62\x4d\x06\xdc\x6f\xa3\xce\xf5\xa4\x66\x77\xd6\ +\xd3\xbf\x25\x3d\xda\xc7\xfd\x84\x8a\x26\x31\x4a\x18\x9d\x62\xbe\ +\x81\x48\x85\x29\xe5\x51\x11\xfc\xa9\xa2\x08\x23\xee\x28\x58\x2b\ +\x5c\xa6\x57\x72\x00\xa3\xb1\xd9\x65\x61\xb0\x23\xf9\x7c\xf8\xc4\ +\x00\x7f\x80\xae\x82\x3e\x80\x10\x38\x0a\x02\x44\xd8\xe6\xd8\xec\ +\x03\xe1\xd9\x51\xc8\xa6\x4b\x6e\xd2\x20\x74\x09\x46\x0d\x64\xca\ +\x54\x45\x6a\x56\x32\x98\x98\x26\xd3\x21\x43\xd8\x51\x7c\x39\x80\ +\x25\x69\x70\xa4\x5b\x4d\x37\xa0\xde\x05\x69\x39\x2a\x15\x86\x8b\ +\x30\x52\x7b\xb4\x82\xdf\xb0\xf5\x29\xec\xcd\x53\xd8\x0b\x6c\xa7\ +\x62\x49\xd4\x1d\x1e\x99\x0c\xff\x2a\x27\xda\x15\x9a\x48\x4f\x75\ +\x0f\x54\x9b\x92\xb0\x20\x96\x87\x14\xc9\x82\x83\x0c\xc0\x12\xfc\ +\xc7\xa4\x9c\xaf\x21\xa8\x27\x82\x20\x05\x9d\x42\x4e\xce\x2d\x95\ +\x40\x98\x31\xec\x4c\x0f\xf0\x03\x68\x32\x8d\xa1\x97\x91\xc5\x9d\ +\x8e\xd3\x19\x65\x4d\x1b\x94\xaa\xa0\x44\x33\x61\x5f\xd9\x02\x66\ +\x8a\x25\x88\x80\x7c\x01\x19\x9e\xea\x2d\x83\x2b\x6b\x11\xdc\xb1\ +\x35\xb5\xa0\x22\xc2\x42\x2d\xa8\xfd\x19\x1a\x9e\x30\xcb\xbe\x91\ +\xb7\x7d\xd0\x6b\x53\x46\x89\xae\x3f\x41\x38\x4a\x09\x4f\x43\xf8\ +\x05\x8f\xea\x6f\x2a\xe5\x0b\x45\x33\xa0\xd1\x1a\x14\x9e\x87\xe9\ +\x08\x1a\x64\x03\x4a\xfc\xf4\x56\xe5\xc4\x44\xec\xa8\x0c\x39\xa7\ +\x1f\x1d\xc0\x19\x27\x9b\x1f\x21\xd3\xb3\x51\xa9\xe7\x95\xa2\xe5\ +\x83\x9e\xed\xd9\x79\x2d\x7a\xc6\xbe\xa5\x5f\xe2\x28\xa7\x56\xa5\ +\x41\x5d\xce\x8e\x22\x92\x0d\x44\xed\x4a\xd4\x4e\x05\x39\xcf\x91\ +\x3a\x8d\x31\x49\x3b\x6a\x03\x4e\x9d\x95\x6e\xa1\x50\x7d\xe2\x28\ +\xf8\x5c\x94\xc7\xc0\x17\x02\x32\x34\x0a\x95\xd7\x55\xc0\x4f\x56\ +\x0f\x2e\x0f\x0d\x78\x5c\xb9\x26\x80\xaf\x29\x09\x10\x20\xc0\x1d\ +\x49\xe0\xcb\x89\xdb\x60\x62\x8f\x93\xdd\xa4\x72\xe9\x46\x3c\xbb\ +\x64\x4d\x6a\x3e\x0a\xfb\x82\xbe\x52\x33\x57\xbe\xe2\x4b\x58\x18\ +\x0b\x5b\x9c\x71\xd3\xd6\xba\xf4\x44\xde\xa7\xd2\x33\xcf\xd7\xef\ +\xf3\x84\x56\x91\x0b\x0b\x61\xc0\x86\x15\x97\xc0\x8c\x1f\x73\x39\ +\x74\x3d\x61\xe2\x58\x3e\x11\x41\x7f\x96\x12\x14\xc5\x29\x91\x4c\ +\x90\x84\x29\x90\x0a\xd3\x43\xa1\x54\x0c\x39\x28\xb6\x66\xd4\x29\ +\x13\xe6\xc3\x14\x4f\x3e\xc5\x3a\x88\x24\xcb\x49\xae\xc8\xe9\xe1\ +\x7f\xf7\x2a\x34\xd5\x41\x03\xc3\x40\x1f\x98\xba\xe0\xfa\x94\x6e\ +\x9e\x2f\x3c\x14\xe9\x9e\xf8\xe8\x9a\xf0\xea\x13\x9e\x5e\x32\x58\ +\xd9\x8b\xe3\x7a\x25\xb3\xc8\xfc\x17\x1b\xad\x3e\x3f\x71\xef\x00\ +\x7b\xfd\x28\x8a\x8b\x92\xaf\x45\xd1\x40\x89\x4b\xbf\xe4\xac\xd8\ +\x21\xdb\x9d\xbc\x6b\x14\x4d\x3f\xd0\x13\x5b\x3c\x1f\x48\xff\x26\ +\x03\xb5\x8e\x9c\x41\x8f\x8f\x4c\x33\x07\x4a\x93\x22\x89\x96\x0f\ +\xcd\x36\x79\x7b\x12\x85\x42\x24\x6f\x29\x9c\x98\xb6\x55\x78\x2a\ +\x54\x4d\xeb\x26\xad\xe2\x15\x58\x45\x11\xb5\x75\x85\x47\xfe\x67\ +\x9f\xa9\xa9\x70\x3c\x28\x5a\xa6\x6b\xd1\xb3\x62\xb9\x90\x6b\xa0\ +\x42\x24\x05\xae\x31\x8a\x72\x44\xa6\xad\x7c\xf9\xbb\xca\xa0\x19\ +\x5a\x11\x88\x3e\x36\x66\x98\x6a\x8f\x90\x23\xca\x7c\x9b\xc4\xd8\ +\x7b\xce\x71\x91\xa8\xaa\xa6\xda\x5c\xc7\x42\x52\xcd\x31\x47\xc2\ +\xc7\x34\x06\x3c\x44\xd5\x0a\x12\x63\xc1\x2e\x16\xe1\x77\x24\x5d\ +\x7c\xb2\xe2\xd8\x81\xa5\xb2\x70\x3c\x78\xb6\xbd\xac\x72\x70\x1d\ +\x64\x3b\x00\x1c\xcf\x58\x36\xf1\x87\xaa\xbc\x76\x20\xe6\x78\x98\ +\x44\x2f\x79\x61\x19\xc7\x15\xa1\x54\xb9\x92\xa0\x3b\x65\x4a\xbc\ +\x1b\xbe\x15\xbf\x2d\x8b\xc8\x12\xc6\xef\x42\xa2\x44\xe5\x89\x90\ +\x1c\x11\xa9\x22\x17\xb0\xa9\x6a\xf9\x0b\xae\x66\x27\xcd\xa6\x77\ +\x0f\xd2\x8f\x65\xb3\x4a\x97\xd0\x37\x64\xa6\x71\x67\x24\xf4\xd6\ +\x80\x03\x26\x3d\xbd\x2e\xe2\x77\xfa\x09\x9e\xa5\x42\x8b\xf0\x2b\ +\xd7\x25\x56\x2a\x2d\x1e\x10\x04\x20\x0c\x0b\x5c\x0d\xb5\x29\xd6\ +\xa9\x12\xa6\x43\x15\x04\x23\xae\x5e\xbd\xb3\x48\x9b\x88\x61\x31\ +\x79\x9a\x4e\x1c\x15\xd0\x90\x66\xd0\x0e\xca\xa0\xb8\xcd\x68\x98\ +\x28\x3a\xea\x2f\x06\xd4\xee\xa0\x2f\x1f\x75\x76\xc5\xee\xeb\x1b\ +\xb4\xcd\xa2\x3b\x0a\x9f\xc5\xd1\x61\x2b\xa0\xa5\x0d\x3e\x0e\x8a\ +\xc3\x9c\xc9\x87\xa1\x48\x72\x24\x0f\x0f\x93\x1d\x60\x86\x18\x64\ +\x2b\x7e\x23\xfe\xea\xa3\x8c\x72\x31\xa0\xc2\xdd\x76\x39\xed\xd1\ +\x30\xad\xe5\x39\x40\x00\xc6\xf0\x8e\xb3\x8d\xad\x66\x40\x7f\xf5\ +\x8d\xa2\x9b\x93\xc1\x86\x14\xe0\xcc\x47\x70\x26\x08\x2d\x60\x63\ +\x4a\x10\xfd\x45\x65\x4c\xf4\x17\x27\xcc\x29\xd0\x19\xe0\xeb\xa5\ +\x1c\x72\x4f\x6c\x48\xdd\xd5\x8c\xb8\xe2\xc8\x21\x79\x94\x34\x54\ +\xca\x86\x2c\x1a\xcd\x06\xa4\xc1\x87\x29\xb2\x4c\x65\x9a\x05\x58\ +\xcc\x33\x95\x52\xa4\x1b\x0c\x41\x33\xcb\x8d\x1f\xba\x2b\xc6\x3e\ +\x6b\x6a\x59\x4a\xc0\x33\x58\x40\x49\x53\xbc\x45\xbd\x72\x10\x5e\ +\x49\x8d\xcc\x75\x68\x35\xec\x83\x15\x50\xad\xe1\x63\xb0\xe4\x24\ +\x85\xcc\x75\x66\x6e\x9f\x0f\xba\x62\xcc\x38\xe9\xcf\x1a\xf2\x94\ +\xa4\x21\x4f\xf9\xb3\x86\x5c\x9b\x34\xe4\xda\x94\x43\x5e\x0c\xbc\ +\x3f\x86\x5b\xba\x8f\x9b\x62\x36\x6e\xad\x8d\xd1\x98\x29\x2c\x1c\ +\x36\x90\x24\x44\xf5\xf5\x18\x97\x02\x4c\xc4\x32\x32\x58\x83\x91\ +\x13\x65\x78\xa9\xa2\xe4\x2c\x3e\xcd\x0a\x3d\x5c\xa6\xba\x90\x2c\ +\x58\xec\x42\x79\x6d\xef\x1c\x18\xb3\x72\xfb\x58\xc0\xd0\x2e\x18\ +\x53\x6e\xc5\x98\x30\x69\x85\x36\xcd\xa3\x81\xb4\x04\x02\x59\x33\ +\xc8\xb4\x05\x96\x28\x67\x2d\xc3\x2e\x95\x5d\x8f\x2a\xa2\xc0\x75\ +\x7b\x53\x2e\xf7\x3a\xc0\x20\x5d\x9a\x89\xde\xb8\x81\x85\xea\xac\ +\xa6\x37\x8f\xe0\xd9\xfc\x7b\x1f\xbf\xd3\xc1\xe6\x6f\x70\x6f\x2c\ +\xcb\xb9\xbb\x82\x64\xc7\xed\x4e\x99\xf9\xa7\xba\xbc\xc4\x75\x08\ +\xd3\xc8\x34\x91\xf2\x3a\x17\x9c\x39\xee\xf7\x1b\x64\xb9\xc6\x17\ +\xc3\xd3\x20\xc0\x71\x9d\x15\x0e\xb8\x66\x79\x23\x0b\x42\x62\x1f\ +\xe0\x22\x6b\x8d\xda\x8e\xc3\x4a\xaf\x68\x5d\xb3\xb1\x3c\x09\x2b\ +\x29\x91\x32\x07\x68\x80\x0a\xdd\x1c\x5f\x88\x22\xfb\x66\x56\x33\ +\x98\x9a\xe6\xa3\x23\x9d\x12\x1b\x29\x2d\xa9\x47\x47\x5a\x1b\x1b\ +\x29\x2d\x85\xd3\xd8\x96\x5e\x7d\x6e\xa0\x81\x5e\xa6\x82\x19\x37\ +\xeb\x4d\x19\x91\x77\x79\x49\x92\x9e\xed\x88\x16\x1d\x1c\x31\x80\ +\xe5\xe3\x25\xb3\x5c\x46\x1c\xa3\x95\x88\xc5\xe5\x29\xc1\x39\x15\ +\x6c\x04\x1b\xa9\xc8\x42\xcf\x21\x1f\x02\x49\xc5\x0f\x44\xc9\x3c\ +\xa3\x2f\x57\x0b\xf0\xcd\x55\x20\x50\x02\x00\xc3\xca\x4a\x39\xf7\ +\x82\x50\x4c\xca\xe4\xd9\xc6\xb0\x52\x6c\x1f\x10\x86\xc5\x2c\x54\ +\xe3\xfc\xe4\x60\x97\xca\x6f\xe8\x41\xa7\x94\x63\xf6\x46\xf6\x4d\ +\x95\xef\xe4\xa6\x9d\x6b\x6e\x28\x28\x86\xd5\xfe\xb3\x98\x31\x34\ +\xb2\x8c\xb8\x6b\x87\x28\x90\xbd\x31\x34\xa3\x02\x89\xa1\x19\x31\ +\xdd\x61\x50\x76\x4d\x39\xed\xa2\x90\xbd\x1a\x0e\xd8\x5b\x9a\xbf\ +\xd8\xc9\xac\x46\x1e\x81\x67\x56\x73\x8a\xe1\x4f\x94\xc3\x27\xe5\ +\xfb\x0c\x4e\x76\xa6\x9e\x24\x09\xd1\x3b\x9b\xb4\x6c\xd2\xd8\x50\ +\xe0\xd9\x39\x3d\xac\x9e\x62\xfa\x55\x64\x0b\x29\xe3\x16\x55\x90\ +\x95\x8c\x50\x48\xaf\x84\xab\x16\x74\x3f\x48\x76\x91\x21\xb5\x91\ +\x83\xbb\x86\x68\xc8\xae\x64\x82\x4b\x56\xa6\xb8\x4d\x3b\x67\x57\ +\x8c\xe5\x45\xa5\x21\x5d\x9c\x1d\x2a\x0d\x6a\x1f\xb4\x0a\x26\x18\ +\xe1\xb3\xa2\x94\xad\xb4\x96\x18\x7e\x2a\xea\x67\x5d\xe2\x93\x90\ +\x68\xb0\x37\x90\xc1\x0f\xa1\x48\x72\x2c\xe3\x2d\xc1\x39\x4e\x80\ +\x33\x66\xd9\xa3\x63\x01\x86\x2c\x03\xf0\xff\x7d\x34\xa1\x65\x95\ +\x69\xfa\xcd\x8f\x1c\xc8\x89\x78\xce\x2b\xa6\xc5\xcd\x21\x02\x98\ +\xd9\x0a\xb9\x1e\x10\x72\xac\xec\xd0\xc4\x95\x9a\x5c\x61\x3a\xd3\ +\x4e\x37\x5f\x4c\x17\x58\xa5\x72\x91\x52\x1d\x96\x1b\xa6\x9c\xb3\ +\x0f\xe7\xa4\xb8\x5e\xc1\x5d\xe9\xc8\x4c\x32\x78\x20\x76\xa1\x82\ +\x49\x45\x5b\x2b\x2a\x3d\x44\x41\x30\x49\x71\xef\xa4\x9d\xfc\xf4\ +\xd4\x04\x61\xc6\x01\x50\x31\xd1\xd0\xf4\x8c\x02\x52\xb3\xd9\x56\ +\x9e\x30\xd5\x03\xd3\x7a\xd2\x34\x02\x8c\x9c\xf4\x1d\x62\xd2\x50\ +\x1e\x34\xe5\xb4\x43\x20\xad\xd8\x59\x28\x66\x33\x8d\x32\x39\x96\ +\x40\xfa\x9c\xd0\x25\xe1\x8f\xf2\x8a\x48\x5a\x0e\xa0\xc8\xff\x68\ +\x59\xb7\xec\x1b\x4b\x8d\x4d\x16\xf8\xf4\x78\x90\xc6\x9d\x30\x7c\ +\x71\x86\x2a\x15\x58\xe7\x12\x1b\xfd\x59\x85\x8b\x32\xcf\xa2\xda\ +\x64\x7f\x62\x22\x26\x5e\x86\xae\x36\x66\x81\x06\x56\xd9\xb3\x72\ +\x36\xfd\xd1\x28\x5a\xe3\x56\x5a\x07\x23\x83\x15\xd8\x41\xc8\xba\ +\x6a\x18\x74\x83\xd4\xa6\x95\x1a\xe0\x94\xf0\x00\x69\x2d\x2a\x35\ +\xc0\xda\xf0\x00\x69\x0d\xa9\xee\x50\x9c\x99\x45\x4e\xa8\x0d\x23\ +\xcc\x7e\xe1\xf3\x69\x39\x22\x16\x5f\xb6\x1d\x70\x70\xa9\xe9\x2e\ +\x83\xfc\x29\x66\xdb\xc0\x6b\xce\x5d\x9e\x0a\x67\x2e\x46\xd4\x03\ +\x65\x0e\x08\xab\x35\x9b\x0a\x41\x62\xa1\x77\xa4\xeb\xcf\x63\xd6\ +\x4f\x52\xd3\xd8\x00\x3f\x42\x38\x9d\xe0\x56\xd0\xc2\x30\x06\x9b\ +\xe5\xa7\x57\xaa\x46\x08\x3a\xe1\x4d\x68\xe7\x02\x95\xe9\xc3\x67\ +\x1d\x9e\x05\xf9\xae\x22\xdb\x65\x65\x7c\x72\x34\xb1\x1a\x33\x1f\ +\x36\x64\x6b\x75\x19\xd9\x29\x23\xcf\x98\x3b\xb5\x05\x44\x8b\x19\ +\x02\x5e\x17\x62\xf0\xd3\x48\x16\x6e\x7b\x51\x72\x91\x2b\xc0\x51\ +\x92\xfb\x6c\xcb\xb1\x3c\xb3\xc8\x13\x0a\x62\xe0\xd4\x06\xd0\xb4\ +\xb3\xca\x59\xe6\x88\x59\xfc\xd9\x8d\xdf\x9b\x90\x9c\x0d\x15\xca\ +\xe2\x9c\x45\x44\xb4\x1e\x41\x98\x73\x76\xd1\xcd\xc2\x74\xb4\xc4\ +\x67\x36\xa4\x6b\x60\xc8\xca\xe4\x09\x5f\x61\xbb\x8e\x4a\x57\x51\ +\xc9\x95\x36\x9a\x1a\x32\xfc\xb2\x99\xe3\x47\x00\x52\xa9\x9a\xb3\ +\x59\x4d\x8e\x66\xd3\x09\x83\x3e\x08\x39\xa4\xcc\xb3\x09\xb9\xaa\ +\xaa\x4a\x00\xeb\x6f\x8c\xa2\x39\x65\x79\x3c\x84\xcb\x7c\xcb\x74\ +\x50\xd4\x2c\x00\x06\x15\xb8\x13\x51\x82\x1c\x2f\xd8\xf1\x11\xb6\ +\x1c\x3a\xda\x53\x5c\xe5\xe9\x55\x2c\x94\x69\xa6\x88\x4a\x32\x9b\ +\xdc\x24\x61\x67\x92\x44\x40\xad\xc0\xd7\xe1\x57\x7d\xf2\x74\xe6\ +\xc5\xc9\xa0\xdb\x99\x7c\x77\x0b\xfc\x29\x61\xbd\x8b\x24\x93\xc9\ +\x33\xc7\x26\xc7\x0b\x73\xb5\xf2\xf8\x8e\x88\x49\xe8\xe9\xa8\x80\ +\xc7\x3a\xa9\x11\x99\x27\xe1\x34\x1b\x1b\x8d\xd5\xd4\x84\xa1\x50\ +\x02\xe7\xea\x0d\x96\x67\xa1\x27\x9f\x33\x1d\xd8\x65\xd0\x1b\x85\ +\x29\x3c\x2b\x44\x4b\x6c\x5c\x5a\x5f\x04\x16\x06\x78\x5a\x54\xeb\ +\xd2\x50\x20\x75\xe5\x7c\xfd\xcb\xd3\xcb\x2c\x38\x78\x26\xe5\x63\ +\xf8\x0a\x8d\x60\x23\x18\x03\x8b\x98\x0e\x09\xee\xbe\x99\xcf\x33\ +\x3f\x14\x43\xf3\x01\x18\x89\xa6\x97\xe7\x6c\x08\x8f\xe5\xc6\x0c\ +\x3e\x44\x5a\x66\x59\x07\x1b\x2b\x0e\xc8\xa5\x28\x3b\x21\x06\x7f\ +\x82\x79\xb3\xb4\xb0\x4f\x0b\x06\x6f\xb0\xf3\x56\x42\x25\x8a\x01\ +\x5f\x80\x5e\xaf\xf8\x69\x39\xea\x74\xd2\x0f\x03\xe7\x50\x2b\xab\ +\x4a\x43\x87\x3b\xc9\x49\xd6\x0e\x4f\xda\xd7\xe8\xbe\xcc\x3c\x0d\ +\x1c\x6a\xec\x64\x2d\x27\x97\xd6\xa2\x0d\x00\x19\x22\x54\x94\x0d\ +\x85\x90\xe8\x77\x3e\xa9\xd4\x50\xba\xea\xe1\x81\x1d\xce\xeb\xf8\ +\xf4\x38\x61\x35\x75\xac\xda\xce\xe2\xbf\x05\xbc\x76\x92\xf9\x00\ +\x22\x34\xa4\x8e\xe6\xe0\xe8\x12\xf2\xe3\x37\x16\x8c\x1c\x8d\x0f\ +\x59\xf9\x1e\x20\xa0\x51\x2a\x35\x26\xa8\xa4\xa7\x61\x08\xc0\xe7\ +\xc4\x98\xe5\x60\x92\x2a\xbd\x18\x79\x8e\x6c\xc4\x10\x5f\x4e\x86\ +\xff\x28\x13\xf4\x10\x76\x6c\xd0\xc2\xef\x4c\x04\x6a\x02\x19\x91\ +\x19\xce\x8c\x71\x19\xa3\xec\xd5\xf2\x27\x39\xfe\x73\x8e\xd3\x8e\ +\xc8\x8d\x86\xb5\x35\x7b\xda\x25\xaa\xce\x81\xe5\x68\xd7\x11\x0b\ +\x43\x8c\xa2\xb0\x53\x85\x21\x05\xb3\x52\x56\xdc\x27\x63\x23\x13\ +\xf8\x77\x2a\x1c\xc2\xbd\x16\x2c\x1d\x4d\x05\xcf\xb2\x72\x26\xc7\ +\x13\x2d\xe6\x03\x26\xd9\x8b\x49\x96\x1c\xfc\x9b\x03\x52\x50\xa7\ +\x64\x99\x00\xc4\x5c\x55\xaf\xb1\xce\x9a\x30\x3d\xab\x87\x85\xe2\ +\x28\x9b\x05\xe6\x3e\x8b\xd6\x09\x8e\x01\x7b\xf2\x0e\x0e\x29\x10\ +\xfc\x76\x55\x04\x27\x57\x1b\x60\x25\x43\x08\xdd\x66\x28\x18\xcf\ +\xe4\xd5\x38\x22\xc6\x96\x01\xf7\x09\x1c\xcb\xa9\x32\xea\x04\xca\ +\xda\x7d\xf8\xae\xc3\xa5\x95\xcd\x0d\x27\x71\x78\x82\xd5\x4f\x6f\ +\xe1\xef\x7b\x38\xbf\xcf\x0d\x0f\x87\xd7\x19\xaa\x59\x2a\x32\x41\ +\xa9\x2a\x6d\x65\x1d\x8e\xdc\x88\x29\x7d\x23\xb4\x1a\x09\x45\xb7\ +\x2c\x09\x00\x02\x6c\x1c\x6c\x69\x1a\xf6\x47\x12\x56\x8f\x4a\xfe\ +\x34\x60\x13\xd8\x41\x8a\x5e\x63\x0b\xfc\xdd\x9b\xb0\x7d\xcb\x70\ +\x9d\xe2\x14\x7b\xa5\x82\x87\xa5\x4c\x51\xd2\x93\x72\x73\xae\x9c\ +\x71\x73\x86\xab\xca\x3b\xb5\x41\x59\xae\x28\x58\xa1\x9e\xa3\x21\ +\xca\xe2\xc9\x34\xa5\x1c\x2b\x1c\xa9\x42\x8e\x96\x19\x1a\x25\xca\ +\x06\xa3\x28\x1b\xd6\x05\x26\x22\x2d\x6b\x61\x32\xc7\xc1\x85\x83\ +\xef\xe1\xa1\x6e\x01\x29\x8a\xc2\xb5\x9c\x9e\xf7\x3f\xc5\x57\xaf\ +\x87\xfb\xfd\x44\x6c\x98\x7c\xa5\x51\x4e\x4e\x56\xc8\x2a\x01\x10\ +\xc7\x92\xa5\xd9\xcb\x4c\xdd\x32\xdb\x7d\x0d\xfe\x1c\xb5\xe0\x95\ +\x12\x7d\xf7\xc6\x02\x0f\x8a\xfb\x9a\x08\xd4\x8c\x5c\x4d\x5d\x62\ +\x7a\x40\xe2\xca\x9a\xe4\x91\x70\xb0\xf2\xd7\xe4\xa5\xa1\x9f\xd6\ +\xc2\x39\x5c\x93\xf8\x39\x04\x96\xc9\x78\x83\xb0\xda\x68\x4b\x69\ +\x02\xb4\x5d\x7b\x48\xb5\x12\x44\xdd\xce\x64\x44\x50\x46\x9d\x11\ +\x84\xe2\x72\xd1\x48\x91\xaa\xe8\x66\x3c\x46\xff\xba\x9f\x8b\x3d\ +\xb1\x35\x01\x4d\xd6\x93\x62\xe2\x33\x54\x56\xb0\xe2\x14\x95\x82\ +\x50\x45\x07\xd4\x13\x64\x47\x79\x2b\x48\x90\xc2\x5a\xd4\x57\xa0\ +\x12\x1a\xc9\xc7\xca\xdc\xa4\xad\x91\xc6\xb2\xdc\x87\x7d\x56\x39\ +\x00\x16\xf6\x5c\xdf\x17\x5c\xda\x63\xb8\x92\x95\x45\x2d\x5e\x48\ +\x30\x80\x25\xe3\x51\xc7\xd1\x70\xdc\x15\xb3\x35\xbf\x2f\x4e\x4d\ +\xdd\xca\x88\x4b\xa6\xd9\x48\xcd\x05\x52\xaa\xd2\x61\xfa\xf9\x65\ +\x4d\xa3\xa9\x94\x56\x12\x7a\xd0\x26\xd3\x88\x94\xd7\x4b\x00\x95\ +\x6a\x27\x96\x99\x26\x4a\xb9\xdc\xdf\xa5\x5e\x6e\x52\x16\x8e\x05\ +\xa2\xc2\x8b\xa7\xfe\x97\x9e\xeb\x9b\xde\x12\x16\x63\x30\x84\xec\ +\xe7\xd4\x69\xf3\x38\xba\xc5\x8d\x08\x57\xc2\x68\x69\x4f\x8a\x6f\ +\xa6\xf8\x66\x8c\x73\xe7\x36\xac\xcf\x76\x91\x21\xc2\x12\x74\x39\ +\x9e\x58\xd3\xcb\x8d\xde\x9b\x84\x66\x95\x05\xc3\xd8\x29\x62\x7b\ +\xd4\x0a\x92\xac\x64\x8c\xb5\xf9\xf6\x7e\xd0\xf8\xb6\xe3\x07\x16\ +\x98\x0c\xbc\x00\x88\x7e\x49\x7f\x98\x82\x5d\x1b\xb7\x28\x35\xa2\ +\x7e\xda\x35\x64\xe4\xdd\x5c\x45\x14\x36\xa5\xd8\xa2\xd7\x35\x51\ +\xc2\xe4\x1b\x15\x27\x2c\x4a\x26\xcd\x47\xfc\xad\xba\x68\x89\x86\ +\xed\x05\x73\x87\x0d\xcb\x0a\xa7\xc8\x0a\x7f\x2a\x1a\x02\xa5\xaa\ +\xbe\x5f\x13\x1c\x3d\xc4\x90\x31\x85\xe4\x11\x99\xc8\x8b\xce\x1e\ +\xab\x53\x95\xdb\x51\x48\xda\x0e\x75\x50\x44\xd9\xac\x20\x95\x79\ +\x4d\x10\xfc\xc4\xc3\x14\x9a\x8a\xef\x61\x98\x8f\xbc\x21\xab\x54\ +\x53\x62\xfe\xfb\xa9\x99\x23\xa2\x97\x43\x0c\xe1\xf0\xc0\x19\x25\ +\x40\xe6\x48\x53\x2c\x8d\x12\x53\x92\x79\x5c\x43\x4e\x20\xbe\xc7\ +\xb8\x48\xf5\x24\xb1\x9b\x21\xe2\xb6\x91\xad\x6c\x5e\x27\xc2\x98\ +\x92\x65\x8f\xb3\xdc\x7e\x60\x8c\x43\xff\x32\x1a\x92\x2e\x63\x49\ +\x78\x16\x76\x00\x43\x9b\xe3\x82\x81\x9b\xcb\x55\x00\x73\xa3\xb4\ +\x26\x30\x08\x1f\xd8\x29\xb9\xb4\x84\x66\xcc\x64\x64\x6d\x3b\x79\ +\x3b\x67\x52\x96\x71\x2a\xa5\x2c\x6d\x9a\x50\x30\xac\xfc\x68\x6a\ +\x75\x59\xfc\x2f\xa0\xf1\x59\x38\x75\x1c\x4f\xc2\xbd\x2a\xe1\x5e\ +\x84\x69\x97\xd2\xfa\x7a\x39\x57\x45\xc6\xa9\xe9\xb8\x22\x33\x94\ +\x23\xa2\xd2\xc8\x94\x1c\xa3\x12\x80\xa2\xea\x50\x70\x48\x58\x45\ +\x87\xa1\xf1\x51\x91\xb2\x3a\x55\x51\xf7\x4c\x95\x7d\x89\xdb\x83\ +\xcc\x39\x64\x41\xe8\xfd\x72\x5c\x11\x0d\x17\xa1\x9a\xe9\xd7\x8f\ +\x5d\xc2\x60\xce\xde\x90\xa1\x1d\xa3\x82\x24\x2b\x7a\xc2\x75\x8e\ +\x0b\x38\x23\xf5\x1a\xdb\x7d\xab\x50\x29\xd2\x72\xd2\x9c\xc5\x8c\ +\xa9\x82\xf6\x16\x35\x3a\x7d\x5a\x75\x01\x7f\xf2\x5d\x21\xf7\xfa\ +\x3d\x1c\x86\x0f\x98\xd6\x0b\xfa\xc7\xd4\x0c\xa8\x7c\x0c\x61\x0c\ +\x8a\x52\x45\x3f\xa4\x1d\x4c\xce\x5c\x79\xce\x5e\x2a\xe2\x13\x36\ +\xe1\xa7\x12\x14\x3a\x2b\xe3\xcd\x73\x6b\x4c\x19\xa1\x39\x8c\x91\ +\xf9\xfc\x3b\xe5\x9c\xea\x6c\x2c\x58\x36\x87\xec\x2c\x62\x59\x1a\ +\x2c\x72\x53\x2a\x49\x9b\x82\xce\x0a\xb5\x41\xb1\xac\x9e\x69\x14\ +\x93\xb7\xa5\xc3\xe0\x0e\xdf\xb9\x29\x69\x1a\x78\x96\x93\xb7\x3c\ +\x26\x1f\x43\xd5\x94\xf2\xb8\x5d\xce\xf5\x68\x24\xc9\x98\x45\x6a\ +\xae\xe6\xf4\x3f\x93\x4f\xa3\xc1\x0b\x61\x4e\x86\x8d\x49\xd8\x2a\ +\x1e\x1e\x11\x27\xb9\x59\x4b\x2d\x4b\xfe\x14\x0b\x76\x48\x8a\x4f\ +\x8a\x77\xab\xd6\x45\x82\x73\x28\x77\xbf\xc0\xeb\x7e\xc1\x84\x26\ +\xca\x27\xf1\xb8\x9f\x26\x66\x16\x9a\xcc\xe7\x5a\x8e\x1d\x59\x32\ +\x25\x14\x2e\x7f\x5e\x85\x61\x4c\x6e\xa0\x0b\xb8\x06\xc8\x36\x32\ +\x42\x36\x69\x7c\xf7\xfe\xa4\x2d\xc6\x9a\x1d\xdd\x88\xe5\x25\x6e\ +\xb2\x4d\x92\x14\xbf\x34\x92\x20\xe2\x35\xbd\x06\x8c\x05\xa2\x5a\ +\x7b\x3f\xab\x3c\x3a\xcd\xd3\x2d\xc3\xde\xa3\xb3\x4b\x2b\x42\xd3\ +\xf2\x5f\x17\xf0\x9f\xb4\xfa\x78\xf4\x4a\x2f\x5d\x32\xc8\x72\xb9\ +\xa8\x8e\x8d\x68\x35\x19\xcb\x67\x13\x09\x86\x11\xa2\x33\xec\x27\ +\xac\x55\x18\x8d\x2a\x0c\x90\x7e\x15\x4f\xe7\xe3\x6f\x19\xe8\x67\ +\x35\x5d\x29\x67\x38\x4b\x9f\x81\x84\x63\xaf\x59\x74\xaf\x85\x6d\ +\x6a\x13\x51\xf0\x2b\x78\x37\x6c\x92\x1b\x1c\x02\x16\x19\xcd\xba\ +\x15\x6a\x08\xd2\x5e\x91\xdc\xb4\x48\x0b\xd1\x91\xb1\x35\x17\x31\ +\x4e\x43\x61\x09\x62\xf8\x2c\x9a\xb0\xb3\xa9\x0b\x26\x16\xc5\xc6\ +\xae\xf0\xa8\x3a\x2a\x30\x95\x3b\xe0\xa3\xcf\x26\x2f\xba\x3c\x36\ +\xf6\xcc\x15\x09\x0b\xf9\x3c\x7f\x46\x15\xc2\x82\xd0\x06\xae\xd4\ +\x73\x67\xaa\x0e\x83\x4d\xb3\x92\xa5\xcb\x52\x0e\xbc\x3a\x55\x9e\ +\x57\xa5\x2a\x1d\xad\xda\xe0\xf0\x8d\x0e\x96\xe1\x16\x0f\x32\xa3\ +\x7b\x32\xf6\x5f\xc3\xd2\x79\xad\x18\x9f\x15\xb5\x08\xb1\x15\x3b\ +\x7e\xac\xe1\xb5\x9d\x96\xd4\xcb\xa3\xc6\xa9\x37\x90\xe6\xdb\xd9\ +\x41\x78\x2a\xc7\xba\x01\xb3\xc3\xc0\x66\x71\x27\x4d\x55\x16\x1e\ +\xba\xc9\x02\xa5\xde\xbd\x71\x78\x8b\x74\x7d\xd2\xd6\xd5\x9e\x2c\ +\xdb\xee\xd8\x1c\xb3\x22\xc8\x5b\x26\x22\x23\x58\x24\xe2\x0c\x28\ +\x0b\x19\xeb\x11\x82\x39\x9b\x69\x1d\x19\xd3\x78\x34\x60\x95\x76\ +\x99\x2f\x6a\xf3\xaa\xbc\x63\x7c\x6e\xe1\xb2\x14\x10\x3e\x26\xfa\ +\x7d\xa2\x1f\xaf\xc0\xba\x2d\xac\x40\x61\xce\xcf\xb0\x96\x9b\x42\ +\xb3\x9b\x8b\x78\x93\xbb\x48\x86\x34\xc5\x59\x94\x26\xa0\x11\x10\ +\x34\xf1\x44\x81\x73\x85\x07\xb7\xf5\x63\x7b\xc5\x14\xd0\x2a\xe5\ +\xf1\x6e\x8a\x15\x86\x14\x21\xee\xd9\x01\x14\xd0\x28\xa0\x49\xc0\ +\x3e\x1b\xe6\xb9\xa2\x31\x9a\x40\xa2\x27\x86\x4b\xa6\x33\x65\xf8\ +\x7f\x51\x31\xa9\xfe\x17\x95\xf5\x25\x31\x4c\x5a\x65\x70\x0c\x36\ +\x59\x9d\xe4\x68\x50\xed\x40\x69\xfa\x35\x7e\x8e\x67\xee\x66\x73\ +\xd2\x60\x65\xf4\xc6\xb0\x3a\xc8\x93\x32\xe1\x6a\xa2\xc6\x2e\xa1\ +\x15\x9d\xd6\xa7\x39\x0c\x66\xb4\x4b\x95\xd2\xc1\xb9\x20\xe0\x7e\ +\xcd\x6a\x5a\x12\xae\x51\x16\x55\x85\x76\xc8\x3e\x14\x27\x4f\xab\ +\x85\x6d\x4f\xaa\x02\x32\xaf\xc6\xa5\xa7\x34\x6c\x66\xc5\xd1\x4a\ +\xae\x59\xc6\x69\xe7\xa0\x78\x13\xb5\x73\x7a\x55\x41\xfd\xb9\x6e\ +\xea\x1a\x9d\xd5\x72\x14\x43\x3b\x67\xd4\x4d\x72\x5c\x6c\x0a\xdf\ +\xc9\xc3\x05\xda\x21\xd9\xd1\x41\xe7\x31\xba\x0b\xa6\x1f\x58\x7e\ +\x90\x52\x6c\xd4\x9c\xca\x2d\x33\x71\x06\x20\x7a\x2e\x8e\x06\x18\ +\xcb\xf1\xc0\x22\x31\x25\x84\x76\xc4\x0e\xec\xd1\x9e\x15\x4c\x06\ +\x7f\x47\xe6\x75\x64\xb4\x23\x2c\x0e\x92\x1b\xc5\x54\xb7\x7e\x5d\ +\xad\x4e\xd1\xaa\x6a\xff\xc6\x63\x31\x45\x69\xcd\xaa\x06\x28\x33\ +\xc3\x22\x7c\x3e\x9f\xc8\xd3\xc5\x9a\x88\xb8\xe4\x5c\x3c\xa5\x57\ +\x9c\xea\xe1\xb9\x52\x1a\x04\xd5\x4c\xc8\x1e\x6e\xff\x97\xa9\xf1\ +\x42\x03\x5b\xe2\x54\x16\x5a\x93\x68\x99\xb2\x92\xc9\x98\x63\x88\ +\x4d\x4e\x42\xf1\x98\xac\x76\xa6\x8b\x47\xc0\xd2\x0a\x94\x13\x23\ +\xc5\x9d\x3a\x2a\x92\x0a\x3c\xc3\xf6\xe0\x5c\x6a\x08\x1e\x54\x81\ +\xe7\xa6\x78\x6d\xb0\x2c\x2b\x9b\xb6\x8e\x9b\x18\xbc\xa4\x7a\x94\ +\xb0\x16\xac\x45\xcd\x22\x38\x72\x8b\x67\x8f\xda\x0e\x56\x7c\xd0\ +\x0a\x6b\x6a\xeb\xcc\xb6\xf2\xb1\x8b\xac\x43\x67\x3d\x40\x16\x0b\ +\x07\x0c\x60\xed\x20\xa1\x14\x73\xb5\x6f\x33\x27\x80\xb7\x60\xa6\ +\x81\xfe\xcd\xe9\x55\xf2\x36\xcd\x89\x4d\x76\x96\x95\xd3\x1a\x77\ +\x4e\x17\x6e\x43\xb7\x52\x73\x45\xd1\x9d\x9c\xcd\x1a\x33\x00\x82\ +\x8d\x05\x7c\x5a\x87\xb0\x6d\xb3\x28\x56\x9c\x2d\xd9\x60\x49\x88\ +\x22\x1b\x2c\x95\x38\x18\xb2\xb9\x08\x46\x12\x61\x84\xe8\xb9\xde\ +\x1c\xe2\x51\x44\x40\x99\x1f\x28\x70\xaa\x87\x1b\x4c\x8c\xc6\x50\ +\x12\xf3\x39\x5f\xfb\x44\x9c\xc0\x57\x9a\x6c\xd5\x30\xf5\xef\xc5\ +\x01\xdc\x04\x72\x12\x09\x11\x9f\xfa\x74\xe9\x57\xb0\xad\x4a\x03\ +\xa0\x34\x12\xa9\x8a\xd4\x55\xd5\x1a\xbc\x23\x4e\x48\x42\x84\xa4\ +\xcf\x2c\xaa\xc8\x44\x23\x14\x3d\x53\x50\x25\xa5\xaa\xd4\x3f\x36\ +\x47\xe1\x25\x64\x91\xc6\x25\xa9\xa8\x4a\x4d\xbb\x93\x27\xbe\x45\ +\x2c\x57\x14\xc7\x5a\xd2\x4c\x64\xa1\x27\x35\xf9\x02\x9c\x7c\x27\ +\xaf\x81\xc5\xa6\x3c\x06\x6d\x14\x0b\xf6\x58\xca\xf9\x69\x3f\xae\ +\xa4\xb3\x63\x4d\xc3\xb3\x3a\x37\x16\x1e\xe6\x94\xe8\x30\x69\xcb\ +\x3d\xc3\xc3\xac\x8d\x0e\x93\xb6\xe8\xd3\xa0\xc7\x55\xc0\xa6\xd2\ +\x3b\x9e\x85\x24\xaf\x1c\x38\x83\x5b\x36\x9b\x2a\xfa\xc3\x35\x8a\ +\x28\xe9\x96\x9b\xd6\x17\x0b\x0f\x03\x32\x13\x2b\xb5\xd1\xa4\x8f\ +\xaa\x1f\x6d\x69\x1e\xe6\x47\x0b\x53\x7b\xf9\xdb\x30\xb4\x64\x6a\ +\xc2\x49\x86\x94\x22\xeb\xf6\x68\xdb\xf5\x94\xe3\x16\xd0\x89\x9b\ +\x92\x66\x4c\x81\xc4\xab\xde\x84\x6d\x3a\x81\xda\x4a\x24\x5d\x44\ +\x84\x54\x4f\xa6\xeb\xd5\x18\xfa\xd1\x11\x65\x4c\xac\xc1\xda\x53\ +\x6a\x9a\x8a\x22\x33\x6a\x9d\x4e\x78\xf4\xfc\x35\x46\x96\x58\xa6\ +\x9c\xd5\x51\xb0\xd3\x25\x69\x0d\x80\x39\x64\x04\x69\x6c\x5f\xac\ +\x6d\x52\xf3\x88\xe9\xef\x13\x1d\x93\x52\x95\xef\x8f\x84\x1a\xc1\ +\xe8\x67\x94\xc4\x12\x99\x3d\x69\x73\x67\x93\x4a\x6a\x3c\x5d\x2a\ +\xe7\x3c\x6a\x44\xf6\xc4\xe1\x15\x01\xb0\xd9\x76\xc1\x06\x09\xb6\ +\xcf\x4a\xeb\x7b\x76\x4b\x40\x58\x86\x7d\xe6\x69\xe7\xd1\x69\x4d\ +\x76\x96\x78\xb6\xb3\x5d\x26\x67\xd3\x15\x50\x29\x92\x8a\x52\x54\ +\x21\xfc\x11\x86\x1c\x87\x1f\x04\x55\x54\x90\x07\xca\x28\x84\x46\ +\x0b\x17\x5e\xc5\x55\x9a\x52\x5a\xfd\x23\x68\x53\x46\x0f\x97\xb1\ +\x33\x28\x40\xe0\x7e\xd1\x44\x22\xc9\x4f\x16\xd8\x63\xbc\x6e\x4a\ +\x2a\xb5\xb4\x5a\xec\xf2\x9a\x0b\x88\x3a\x12\x52\xed\xb0\x46\x81\ +\x2f\xc1\x27\xe2\xf0\x46\x72\xd1\x1c\xef\xff\xc6\x1d\xf9\x68\xcf\ +\x6b\xea\x7b\x54\xb8\xfe\x0b\x45\x9d\xe5\xb2\xcf\xa0\xcb\xce\x47\ +\x8f\x9e\xc0\xba\x68\x65\x0d\xf2\x07\x6b\x03\x87\xec\x01\x2b\x15\ +\x81\xdb\x59\x9d\x4e\xb9\x11\x9c\xb0\x0a\x36\x75\xf2\x42\xe9\x9d\ +\xfd\x3c\x1a\x51\x92\x31\x0d\xd1\x2c\xbd\x8c\xb4\x66\xf2\xde\x7c\ +\x7a\x1f\xbf\x1c\x6a\x4f\x0f\x43\xd7\xea\x20\xba\x16\xe5\xc2\xdf\ +\xbb\x65\x1b\x8c\x49\x74\x7c\xd6\xc0\xff\x67\xc0\xff\xab\xc0\x85\ +\x59\x05\xff\x9d\xa0\x59\xa2\x9b\x29\x0a\x94\x07\x9b\xb7\x72\x36\ +\x78\x1f\x74\x7b\x59\xf1\x3e\xb3\x89\x5d\x2f\x6f\x3b\xd8\xb7\xc0\ +\x2d\x5b\x9e\xc9\x8a\x51\xd1\x7e\xb5\x26\x7b\x8d\x35\xc6\x19\xc6\ +\xaa\xde\x55\xab\x4e\x48\x6b\xc9\xde\x2e\x49\x9f\x35\x78\xb0\xb1\ +\x46\xaa\xaa\xcb\x2d\x45\xa2\x2a\x2f\x66\xc7\x79\x54\x1f\x07\x9f\ +\x87\x78\x44\xf9\x82\x8b\xcb\xd5\xdb\x47\x89\xfb\x06\x44\xb4\x2c\ +\xc7\x51\x45\xdf\x57\x65\xc3\x96\x86\x9a\x73\x29\x6a\x3c\x33\x6f\ +\x57\xfc\x90\x0b\x8f\x2d\x19\x68\x98\x86\x06\x10\x79\xe7\xe4\x61\ +\x0b\x3b\xc1\xaf\x62\x8d\xa6\x5c\xda\xdb\x28\x30\x69\x8a\xad\xdb\ +\x76\xb0\x7c\xd7\x4a\x8b\x9b\xe5\x12\x37\xd1\x13\xf5\xd5\xc5\xd0\ +\x3b\x28\xa4\xe2\xf4\xfc\x6c\xe5\xd0\x99\x89\x35\xeb\x79\x8e\xd8\ +\xe4\x28\x57\x52\x45\x7b\x17\x02\xc1\x0a\xda\x65\xa0\xca\x32\x73\ +\x63\xac\xf8\x4f\xf4\x6a\x48\x11\x44\xb8\x03\x51\xa0\xe7\x0c\x45\ +\x06\x6e\x3b\xd9\x28\xd1\xa1\xea\x45\x58\x51\x68\x2e\x94\xab\xd3\ +\xad\x4f\x55\xd9\x24\x0a\x18\x58\x66\x50\xd4\x48\xf6\xc1\xcf\x23\ +\x91\x52\x3f\x35\x87\x7a\x9e\x35\x77\xcc\x49\x0d\x51\x24\xd1\x42\ +\x69\x4a\x7e\x42\x22\xfb\x12\x3e\x91\x82\x12\xe7\x2d\xc5\xad\x2f\ +\xfa\x8c\x3d\x44\x2f\x6e\x65\x65\xaf\x3e\xd6\x6f\x56\x87\x47\x14\ +\x16\x8a\x35\x0f\x11\x56\xbe\x4b\xbd\xcd\x41\x5c\x53\x48\x41\x23\ +\x14\x53\x3c\xb4\x51\xd2\x98\x43\xac\xc5\xe6\x05\x0c\x6c\x5c\x2f\ +\x24\x59\x44\xd5\xa8\xde\xce\xe2\x7b\x23\x3c\x0f\x46\xa3\x0b\xdb\ +\x37\xb2\xda\x2f\x9b\x16\x29\xda\xb9\x31\x2d\xab\x0c\xdf\x57\x8a\ +\xbc\x2a\x8c\xa6\x91\xfb\x8c\x11\x5e\xdc\xa8\xaa\xc5\x40\xf4\xf2\ +\x84\x34\x2f\x1a\xe7\x54\x41\xc7\xa3\xd7\x64\xd0\x53\xa8\x28\x9b\ +\xf1\xc5\x1e\x9e\x48\x0b\xc0\xd2\x08\x8f\x43\x25\x37\x9d\x79\xc8\ +\xb3\xac\x81\xfe\x41\x43\xd8\x22\x86\x3f\xe5\x83\x84\x47\xfe\xa4\ +\xb3\xd0\x5b\x04\xe0\x59\x8f\x49\x39\x73\x36\xc7\x93\x1f\x06\xf4\ +\xca\xf8\x11\x09\x97\x05\xc6\xaf\x3b\x9b\xf9\x68\x68\xb4\xc2\x26\ +\x65\x4f\x23\xf9\x64\xda\xfe\x83\xbd\xba\xd0\x57\x1b\x97\xd7\x4f\ +\xc1\x22\x7e\x54\x83\x38\x5b\x74\x40\xe2\xf8\xb6\x1d\xd9\x33\x11\ +\x43\x4c\x14\xef\x29\x0d\xc6\xda\x0d\x1c\x6d\x71\xa4\x89\xa6\x09\ +\x89\x07\x9c\x88\x38\xbb\x59\xe0\x49\x5e\x79\x76\x73\x9a\xba\x49\ +\x95\xdb\xc2\x31\x79\x84\x28\xe1\x9c\x9f\x74\x98\x19\xa7\xea\x85\ +\x1d\x54\xa1\x64\x22\x30\x97\xb5\x39\x0a\x32\xac\xaa\xb7\x7d\x50\ +\xa1\x0c\x11\x5c\xa8\xf0\x7b\x78\x54\x48\xb0\x4b\xf5\x2c\x81\x9f\ +\x7b\x48\x24\xcf\x97\x88\x83\xe4\x71\x7c\x6e\x09\xb2\x51\xba\x38\ +\xdf\x52\x45\xd1\x85\xd0\x8b\x36\x4f\x5d\x28\x3f\xa8\x12\xec\x0a\ +\xb5\x7f\x62\x26\x93\x89\x6d\xd4\x8b\xdc\x6c\x9a\x09\xe2\x1e\x3c\ +\xff\x53\xc4\x60\x4a\x40\x58\x01\x53\x4f\x04\x12\xbd\xbd\x94\x86\ +\x1d\xbe\x0f\xd1\xd5\x26\xcf\x68\x68\x73\xf6\x91\x75\x28\x2b\xa9\ +\xd1\xd7\x25\xc9\xf8\xed\x24\x32\xa6\x47\x77\xf1\x0c\xbe\x64\x75\ +\x55\xec\x17\x4d\x62\xf6\x66\x36\xaa\xe3\x34\xda\x9b\x7e\x05\xe4\ +\x97\xe9\x1b\x5d\xd8\x48\xa6\x8b\x1e\xbc\x10\xc3\x63\xce\x55\x3d\ +\xe0\x83\x6d\x0c\x7f\xef\x02\x49\x62\x17\xba\x32\x30\x63\x57\xc9\ +\x75\xdc\x2e\xec\x73\x05\x43\x9a\x25\xbb\x38\x15\x19\xaf\x67\x83\ +\x55\x1c\xb7\x02\x3b\x67\xf6\xe0\xeb\xec\x51\x9c\x98\xb7\xf4\xc0\ +\x49\x32\xe1\xb7\xfa\xd6\xb9\xc5\x7c\x57\x4a\x11\xf5\xd1\x3f\x93\ +\xd7\xc4\x85\x96\xe2\x4c\x99\xcb\x03\x8e\x3a\xbf\x45\x33\x9c\x69\ +\xbb\x34\x9c\x9a\xb4\x6b\xaa\x75\x02\x6e\x5b\x48\xc8\xcc\x32\x51\ +\x7a\x4d\x55\xeb\x81\xc1\x3a\xc6\x53\x13\x39\xfc\x49\xd5\xfe\x08\ +\x6d\xa8\xd7\xca\x46\x4f\xa6\xe9\xa5\x7e\x61\xbf\x4d\xf9\x59\x61\ +\x2d\xac\x84\xee\xd9\xfa\xba\x61\x41\x63\x6e\xde\xc8\x8d\xb9\x58\ +\xdd\x43\xd7\xcc\x0a\x57\xc5\x81\x30\x26\x83\xb9\x50\x46\x5f\x8b\ +\x6b\xb4\xb4\xe2\x76\xc1\x34\x5a\x8a\x21\xc2\xc5\x8c\xb1\x41\x44\ +\x53\x78\x3f\x41\x37\xe9\xc8\x10\x5d\xea\x4c\x2e\x6e\x99\xed\x5e\ +\x21\x39\x32\x53\x0e\x27\x8c\x2a\x51\xd6\xcb\xb4\x57\x04\x5d\x78\ +\x58\x59\xe4\x69\xf4\xde\x28\x89\x9d\x51\x42\xab\xd2\xd7\xd1\xc3\ +\x21\xb4\x00\x8a\x0a\x17\x6c\x3e\xcf\xfd\xd0\xa7\x46\x65\x95\x12\ +\x13\x46\x85\x83\xeb\xcc\x42\x0c\x91\xf8\x16\x64\xcf\xf3\x52\x96\ +\x1c\x39\x40\xad\xad\x97\x29\xc4\x31\xa7\xd2\xc6\xfa\x78\xa2\x6a\ +\x49\xcc\xa3\x57\xa4\xdb\x31\x68\x94\x3d\xa0\x27\x42\x54\x6d\x95\ +\x4a\x84\x28\x92\xfc\x87\xd4\x24\x19\x89\x03\xd0\x4a\xe8\xea\x14\ +\x6a\x64\x36\x16\x22\xd1\x04\xcc\x45\xe1\xc0\xac\xd8\xa9\x54\xf1\ +\x03\xfe\x0d\x9e\xe0\x89\x45\x1e\xb4\xb3\x1d\xa6\x9a\xda\xa5\x47\ +\xb2\xe8\x99\x21\x3c\x08\x89\x06\x1f\x2f\xa3\xaf\x12\x96\xe8\xcd\ +\xa4\xf4\x39\x1a\xa7\x61\x17\x86\x62\xc6\x16\x8a\x18\xab\xf5\xf7\ +\x50\x6d\x94\xf5\xf6\xbf\x7a\x89\x59\x4e\x8e\xcd\x3c\x03\x51\x57\ +\xa0\x36\x57\xdc\xd4\x40\x6d\x90\x8d\x31\x19\xad\x20\x2b\xf2\x11\ +\x54\x61\x48\x4f\x68\x86\xd0\x3a\xb8\xf6\x8d\x96\x8b\x30\xb6\x66\ +\xc5\x24\x8a\x34\x2e\xd6\x49\xc3\xf5\x6c\xcb\x61\xbd\xbc\x45\xbd\ +\xa8\x54\xa2\xa2\xce\x9e\x1d\xe2\xa2\xfb\xa9\xf4\x2b\x56\x92\xd2\ +\xdd\x01\x5d\x57\xec\x35\x44\xbb\x09\x18\xb5\x68\x15\x82\x1e\xee\ +\x28\xf0\x49\xf4\x2a\x95\x94\x42\xae\x66\xf9\x34\xbb\x36\x8e\x38\ +\xd4\x4d\x71\x51\x08\x6c\x63\x64\x37\xd0\x42\x43\x05\x16\x5e\x0a\ +\xdd\x86\x20\x1a\x9f\xaa\x77\xc2\x3d\xd2\x03\x14\x69\xcc\x37\x72\ +\xb0\x70\x92\xee\xd6\x0e\x3e\xab\x62\xca\x9c\xec\x31\x51\xe0\xec\ +\xee\xd4\x88\x56\x05\x2c\xfd\xbe\x17\xd9\x35\x9e\x96\x0e\xaf\x20\ +\xb9\xe6\x45\x25\x95\x59\xb9\x7e\x01\x57\x20\x92\x58\xec\x1b\x4a\ +\x85\x6a\x67\xdf\xab\xef\xec\xb8\x59\xac\x58\xd4\x11\xca\xd3\x96\ +\x01\x85\x8a\x93\xd3\x0e\x1a\x57\x90\x39\x03\xb7\x08\x0e\x92\x93\ +\xb3\x7a\x33\x3b\xe8\xd3\x3c\x6d\x98\xb7\x0b\x05\xcb\xb3\x9c\x1c\ +\x96\xa5\x14\xdd\x09\x96\x7b\x66\x03\x8a\xec\x72\x80\x2d\x84\xb0\ +\x8e\x95\x5e\x10\x91\x36\xb6\x3c\x17\xdd\xf1\x10\x72\x25\xf8\x2d\ +\x23\x02\x9e\x94\x83\x2d\x65\x8d\xf8\x35\xfb\x24\xb1\xd0\x5b\xa5\ +\x49\x46\x66\x95\x7b\x1a\xc2\x3e\xc7\x7a\x40\x56\x04\xec\x6d\xc9\ +\xa4\x42\x23\xe8\x5a\x50\x14\xa0\xb0\x90\xc2\x3e\x39\xfd\x92\x11\ +\x2e\xec\x68\x04\x92\xc6\xe9\xb1\x0a\x47\x5e\x5d\x9d\x05\x3f\x79\ +\xdf\x2c\x41\xcb\xf3\xf0\x5a\x34\x2b\xcd\x94\xbb\xc7\x63\x90\x8c\ +\xc6\x96\x92\x68\x53\x73\x15\x10\x33\x24\x68\x79\x16\xfc\x2b\x7b\ +\xf4\x50\xed\x52\xd1\xc9\x3b\x6d\x88\x2b\x8b\xfd\x7a\x78\xdd\xb5\ +\xac\xa0\x8b\xb9\xce\x89\x79\x7d\xb5\x8b\x7a\x66\xbf\x7a\x67\xa1\ +\xa3\xb7\xfb\x51\x17\xf7\x60\x92\xfb\x34\xf4\x94\x24\x08\x44\x20\ +\x4c\x25\xc3\x9a\xe9\x84\xa3\xbc\x0b\x79\x8a\x91\x8b\xa1\x91\x55\ +\x3d\x74\xfc\x66\x54\x21\xea\xc3\x07\xb2\x4c\x92\xc6\x35\xe6\xca\ +\x49\x6d\x25\x85\x52\x1e\x87\x42\xcf\x07\xcf\x3c\xc9\xa6\x53\x29\ +\xa1\xdf\x01\x4a\x23\x49\x39\xc6\x1a\x2d\x55\xe9\x09\x24\x8a\xf9\ +\x22\x8a\x4f\x75\x6e\xd9\xc1\xb5\x87\xae\x55\xf0\xdc\x96\xa6\x93\ +\x52\xc2\xfa\x73\xb2\x73\xda\x34\x9a\x30\xf2\xd5\xd5\x24\x3d\x5c\ +\x48\x8b\xf3\xe7\x22\x6c\x18\xe7\x6d\x11\x4a\xc4\x0a\x72\xde\xa0\ +\x43\xb8\x05\x1a\x97\xf3\x53\xf6\xe2\xca\x5d\x16\x2e\x64\x36\x27\ +\xc3\x5c\x1e\xad\x45\x46\x0d\x01\x6f\xa1\x11\x3e\x6d\xa4\xcf\x9e\ +\xe5\xa3\x8a\x16\x75\xd8\x57\x5d\xe2\xce\xdf\x19\xce\xf0\x51\xb7\ +\x02\xaf\x4a\xe9\x01\x53\x6b\x1f\x0b\xb6\x29\x11\x43\x03\x73\xe2\ +\xb8\x95\xed\x30\x39\xd3\x83\xf4\x90\xb5\x68\x1b\x09\x03\x44\x79\ +\xde\xcc\xda\x45\x3b\x98\x92\xa7\x8a\xd8\xeb\x59\x78\x94\x3a\x70\ +\x4e\x3e\xed\x91\xa1\xcb\x67\xd8\x0a\xfd\xce\x72\x55\xad\xc7\x1c\ +\x87\xf0\x39\x0f\x21\xb7\x54\x56\x4c\x55\xe2\xe6\xe5\x06\xc4\x4b\ +\x65\xa8\xae\x56\x7e\x22\xd3\xb4\x15\x2e\x4b\xc2\x3e\x63\xb8\xae\ +\xb0\x88\x50\x8f\x92\x80\xdf\xa9\xc3\xea\x0a\x4d\x92\xd3\x7e\x17\ +\xef\x46\x67\x8d\xb6\x34\xf7\xb9\x7d\x47\xdf\x59\xa5\xad\x4b\x3f\ +\x26\x36\x81\x5e\xaa\xa8\x40\xd5\x4b\x37\x05\x9c\xaa\x81\xa0\x3a\ +\xd5\x22\x44\x05\x4b\xa3\x62\xbd\x4e\x6c\x76\x65\x11\x7c\x3d\x42\ +\x28\xec\x2a\x67\x2c\x64\x04\x43\x9f\x9f\x4d\xa1\xa6\x1c\xda\xe1\ +\xb4\xfe\x06\xeb\xc5\x54\x21\x51\xaf\x31\xa2\x74\xbf\x70\x27\x78\ +\x75\x64\xd1\x72\x46\xc1\x5c\xa0\xd5\x91\x34\x17\xc0\xcd\x47\xf1\ +\xaa\xe8\xbc\xee\x63\xf5\xda\x2a\x9c\x8b\x1d\x3a\x9a\x18\x73\x69\ +\xa0\x85\x15\xa1\xd2\x31\x95\x29\x41\x03\x24\x9e\x89\x4d\xf2\xf8\ +\xeb\xe9\x93\xd6\xbb\xc8\x6e\xd4\x84\x3e\xea\x44\xa5\xdb\x9a\x77\ +\xed\x36\xba\x47\xdc\x72\x5a\x1d\x36\x17\x46\xda\x83\x23\x61\x3f\ +\x10\xf8\x4e\x8d\x95\xd9\xb5\xc7\xe8\x1e\xf2\x40\xa8\xa6\x1d\xed\ +\x70\x80\x8a\x8d\x26\x4c\x08\xd6\x01\x49\x8d\xd9\xb2\x1b\xc6\x1c\ +\xb6\xf3\xa9\xf3\x48\x8d\x38\x80\x2a\xd3\xaa\x33\x53\xf7\x82\x7a\ +\x2e\xd2\xe7\x44\x55\x48\x4f\xdf\x34\x37\x64\x5f\x8b\x1e\x29\x11\ +\xad\xbe\x32\x41\x9f\x87\x1b\x13\xe6\xa5\xd0\x4c\x61\xb5\x91\xf0\ +\xe9\xf5\xea\xed\xb1\x36\xe7\xaa\x34\xd9\x75\x65\xca\x00\xad\x83\ +\x95\xaa\x4e\x0b\xef\x86\xa3\x7f\x90\xbd\x6b\xfc\x59\x36\xd5\x6a\ +\xc6\xe8\x87\xa7\x57\xef\xe6\x02\x2f\xed\x31\x83\x17\x88\x5d\xa5\ +\x53\x85\x3a\x08\x27\x0e\x6c\x87\x4f\x93\xaa\xac\xa9\x28\x30\x08\ +\x57\xbc\x09\x6d\x25\x9e\x13\x37\xae\xc5\x9d\x5d\xd5\x06\x55\xd7\ +\x6b\x2c\x2b\x51\xe1\x31\x0b\x56\x7c\x40\xb7\x6a\x42\xfe\x2e\x93\ +\xd8\x72\x04\xa5\x97\x46\xed\x50\x4b\x1b\x40\x36\x2d\x63\xe5\xa7\ +\x50\x31\xbf\x3a\xa6\x0a\xe8\xc2\x57\xb4\xe9\x8e\x28\xd3\x55\xb0\ +\x25\x15\x4f\xa4\x29\x30\x52\x21\x13\xd4\x29\x75\xd1\x06\x8d\xaa\ +\xab\xf7\xf7\x99\xae\xd0\xae\xcc\xcd\x03\x56\x56\x6d\x6a\x7e\x36\ +\x43\x40\xd4\x73\xab\xc8\x64\xb3\xa0\xde\x75\x24\x7c\x32\x8b\x8d\ +\xab\x67\x23\xd0\x70\x00\x78\xf4\x38\x82\x6e\xa5\x33\x3e\x52\x35\ +\x24\xa1\xb2\x6e\xce\xb1\x26\x0f\x98\x69\x37\x75\x87\xde\x63\xd7\ +\x24\xb0\x0c\x02\x72\xac\xf4\x90\xc7\xa5\xd6\x11\x63\xb3\xae\x13\ +\x82\xd3\xcc\x90\xcd\x7d\x83\x3d\xcd\x41\x70\xc9\x55\x78\x63\x20\ +\xef\x42\x26\xfc\x45\xda\xa5\x47\x34\x44\x60\x61\xfb\x75\x78\x20\ +\x0d\xf4\x42\xc5\x73\x04\x6d\x88\x8b\x83\xb0\x36\xdd\xeb\x31\xb2\ +\x95\x80\x5a\x34\xfc\xcf\x54\xe5\xf8\x3e\x68\x1b\x9f\x86\xde\xad\ +\xbc\x8d\x11\xa3\x94\x3c\x77\x87\x46\x0c\x07\x7b\x96\x39\xbc\xd9\ +\xa1\x4e\xe2\xa1\x40\x4c\x34\xef\xe7\xcb\x34\xbc\x19\x22\xaf\x31\ +\xd8\x72\x66\x1c\x29\xbb\xf8\xf4\x24\x14\x97\x4d\xa0\x7d\x4c\xc1\ +\xc7\xeb\xbc\x0f\xa2\x39\xf8\x55\xd3\x9d\x17\x25\x66\x22\x2e\x28\ +\xc4\x51\x7c\x84\x43\x63\x2b\x01\x1f\x7a\xf3\x09\x71\x96\x7b\x5a\ +\x9c\xc9\x75\x9f\xa8\xad\xbb\xe2\xa8\xf2\x76\xea\xb2\xac\x2c\xf1\ +\x50\x14\x1e\x78\xd6\xd6\x9c\x72\xbd\xf5\x30\xa7\xba\xdc\xa8\xb6\ +\x3c\x99\xba\x28\xda\x47\x43\xb2\xa0\x17\x45\xfb\x63\x76\x21\xad\ +\x9a\x38\xe7\xbf\x24\x6d\x4c\xb3\x7b\xaa\x1a\x63\x71\x72\x6a\x97\ +\x16\x31\xcd\xae\x8b\xf3\xae\x83\x02\x8e\xa9\xf7\x2c\x9a\xae\xa1\ +\x4e\xf9\x84\x95\x51\xea\x7b\xda\x95\x0c\x2a\xd6\xb3\xf8\x53\xa5\ +\xac\x5b\x4c\x0b\xeb\xf9\xd8\x20\x31\x6c\x5c\x54\xeb\xc4\x1b\x36\ +\x3a\x66\x83\xda\x63\x75\x78\x35\x73\xe1\xa0\xd0\x3b\x87\x2c\x05\ +\x0f\x40\x5c\xdd\xa3\xb7\x50\x6d\x5c\x3a\x40\x8f\x7e\xd3\x71\x1a\ +\xf2\x9a\xdd\xb9\x34\x72\x5f\x9e\x0a\x3d\xb4\x2c\x15\x77\xd8\x45\ +\x5e\x6a\xe3\x2f\x85\xaf\x2b\x6e\x80\xc7\xd9\x0d\xb6\xda\xa3\x1d\ +\xf0\xa8\xd4\x3b\x9a\x4c\x6f\x5c\x8a\x30\x47\x9e\xa6\xd0\x8f\xa0\ +\xc6\x28\x21\x34\x0a\x96\xa6\xa5\x43\xb6\x63\xfb\x63\x91\x17\xba\ +\xe0\x05\x7a\x14\x64\x80\xac\x40\x99\xa1\x97\xc2\x16\x58\x01\x8d\ +\x6a\xc9\xbc\x74\xcb\xc0\xc0\x0a\x9f\x57\xb0\x16\x7c\x2b\x69\xf6\ +\x6d\x4c\xe7\x22\x36\xc6\x35\x4c\x6c\xb3\x68\xbe\x60\x3c\x8a\x09\ +\xfa\x4a\xe8\x6e\x2b\x0d\x1b\xf4\x6a\xa7\x38\x36\x6a\x2e\xe0\x3a\ +\x71\x34\xf4\xf0\x4e\xbb\x1c\x1d\xbb\x87\xdf\x87\x27\xe2\x33\x5a\ +\xab\x35\xce\x21\x49\x0d\x54\xe7\xf5\xb3\xbb\xe2\x99\xba\xd3\x7a\ +\x99\x69\x23\xbf\x0f\x70\xa6\x28\x92\x05\xec\x55\x1b\xb7\xea\x99\ +\x2e\x5b\xde\x5b\xc8\x94\xb6\xb8\x09\x49\x55\x44\x8a\x0a\x49\xfd\ +\xce\xf1\x95\x48\xef\xc2\xbe\x53\x2d\xb2\xd7\xf4\xeb\xb7\xda\xb3\ +\x14\x0e\x36\x33\xd0\xda\x89\x4c\xb8\xbc\x24\x6e\xa5\xe3\xe6\x2d\ +\x3f\x13\x59\xc8\x59\x80\x7c\x6a\x8d\x54\xf8\x21\x56\x7d\x5a\x11\ +\xaf\x76\x63\x4b\x65\x76\x51\xf8\x88\xa2\xd1\x9f\xcf\xf3\xa9\x44\ +\x0f\x4c\x61\x32\xaa\x1b\xee\x43\x1b\xdf\xcf\x4d\x52\xd6\x29\x55\ +\xed\x65\x73\x3f\x68\x4d\x30\x2f\xa2\xdb\xd9\x4b\xb6\x13\x71\x41\ +\xbb\x5e\x5c\xc3\xca\x48\x25\xbf\x22\x64\x7d\x1a\x9a\xe6\x88\xf1\ +\x0c\xbc\x12\xbd\x2f\x8e\x83\x61\x6e\x2f\x72\xb1\x84\x1b\x10\x5f\ +\x7b\xd5\xeb\xc3\xe4\x4c\x47\xf4\x97\xcb\x45\xec\x6e\x98\x74\xf1\ +\xad\x36\x65\x23\xeb\x1f\xa2\x7c\xc1\x7e\x2f\x17\xa3\xf4\xe4\xeb\ +\x96\x9a\xb4\x6b\x96\xb4\xc7\xcf\x04\x5a\xa7\x74\xae\xfa\xe3\x48\ +\xfe\x25\x7a\xcb\x8f\x70\xc2\x9c\xf2\x3b\xdd\x84\x8c\x0a\xcf\x0e\ +\xe0\x35\xb1\x9c\xbf\xf9\xf1\x35\x46\x5f\xc1\x54\xd9\x8a\xe2\x6e\ +\x2e\x4c\xab\x04\x35\xdd\x93\x5d\x6a\x1f\x07\x2c\x5a\xca\x65\xec\ +\x8a\xbc\xb3\x88\x17\x48\xf1\x73\xbf\x88\xed\xc4\x76\xcd\x03\x63\ +\xb4\x92\x5f\xb5\x6b\xd6\xc6\xb8\x9f\xec\x20\xa2\xb2\xc6\xe6\x99\ +\x16\x65\x28\xc6\x29\xd6\x24\x5e\x84\x2d\x15\x53\x96\xa5\x65\xcd\ +\xc6\xd1\x1b\x37\xc5\xbb\xbb\xc9\x1e\xa2\x44\xa5\x99\x85\xfb\x17\ +\xb9\x2e\x14\x8b\x59\x55\xc4\xe0\xbc\xf0\xb5\x32\x98\xc7\x63\x98\ +\xf5\xc7\xdc\x4a\x31\x1f\xeb\xc6\xa4\xb7\x66\xb3\x83\xaa\xfd\x97\ +\x8c\x6e\x7b\x59\x04\x3d\xcd\xb8\x2d\x3a\x85\x35\xb2\xab\x5a\x62\ +\x2c\xb5\xb1\x8a\x13\x2f\x3a\x78\x88\xa8\x71\x38\x0a\x4c\x6f\x26\ +\xc1\xa0\x2f\xf6\xa7\x89\x0c\x3a\x89\x62\x37\x5a\x15\xcd\x78\xc7\ +\xd3\xb5\x83\x26\x63\xa2\x57\x0d\xea\xf7\xd9\x8b\x02\x07\x1a\x88\ +\xf5\xb9\x01\x13\x70\xfc\x0e\x93\xad\xa4\xbf\x96\x36\x35\xd8\xae\ +\x61\xfa\xe4\x01\xad\x40\xda\xe3\x8a\x07\x6f\x88\xa1\x37\x0c\xb2\ +\xeb\xdd\x68\xde\x21\xeb\xbb\xc5\x4a\x00\x08\x1c\xde\xda\x3f\xb0\ +\x3e\x8a\xc4\x0e\xa5\xa2\x43\xf2\xa9\x3e\x41\x4b\x9f\x89\xcf\x56\ +\xb0\x22\xca\x21\xc7\x21\xdc\xb4\x5e\x47\xde\x98\x27\x9d\x7f\xd1\ +\xcf\x53\x6f\x51\xa5\xb3\x1f\xa5\x04\x6a\x2e\x57\xd8\x35\x7a\x94\ +\x4c\xd4\x19\xb0\x28\xfb\xf5\xc4\x2e\x8b\x66\x35\x0e\xac\x3b\x91\ +\x2a\xff\x09\xd3\x42\x86\x5f\x24\x12\x17\x3a\x5d\x89\x97\x4f\x27\ +\x0b\xa2\x0e\x3e\x4a\xb2\x3c\x5a\x54\x05\xb2\x28\x5d\xb6\xf3\x51\ +\x12\xc9\x73\x41\x6c\x90\xf8\x5d\x7a\x6d\x7c\x00\x79\xa5\x9e\xf6\ +\xfe\xe1\xb1\xf7\xe9\x2e\xe9\x9e\xf1\x1c\xf1\xb6\x48\x66\x44\x46\ +\x38\xa6\xca\x32\xb6\x22\x1d\xd2\x48\xae\x5e\x7f\x2b\x50\xb2\xd5\ +\x2d\x4e\x8d\xc6\xc6\x5a\x5e\x65\xac\x41\xfc\xb6\x4c\xd8\x91\x0a\ +\xd4\x6f\x31\xf8\xb6\xc1\xee\xa3\xf6\x4a\x89\xe6\x11\x12\xbe\xbd\ +\xbb\x95\x8f\x23\x2e\xf1\xd6\x86\x98\xfe\x82\x42\xed\x41\xfd\x12\ +\x46\x95\xe6\x62\x49\x10\xfd\xb2\x4b\xa5\x79\xe7\xe3\x30\x60\x93\ +\xd0\x8c\x34\x3d\xbc\x81\xad\x93\xa2\x44\x3c\x0f\xc6\x8d\x25\xd7\ +\x94\xe5\x58\x6d\x6b\xe6\xe0\x6b\xda\xe9\x01\xa5\x78\x06\x79\xb1\ +\x7f\xe4\x8d\x1d\x78\xf0\x23\x62\xf7\x69\xa8\xd3\x8d\x1f\xd5\x65\ +\x4c\x45\xe3\x94\xd1\xc1\x7a\x25\x45\xef\x0c\xe9\x1e\x74\xb1\xd1\ +\x5b\xd9\x73\x51\xac\x2b\x6b\xc8\x94\xd1\x30\x79\xa3\x47\x04\xb1\ +\xaa\x68\x3d\x27\x13\x08\x22\xd2\x27\x0a\xd3\x55\xc4\x8e\xdf\xe6\ +\xc0\x0e\xc3\xd0\x92\x8f\x04\x31\xbc\x2a\xa1\xe4\x5e\xa9\xcb\xe9\ +\x46\x3f\x5c\x56\x89\xdb\x05\x3b\x57\x7d\x86\x3e\x50\xe4\x15\xbe\ +\xed\xc2\x9f\x74\xb8\xb7\x19\x3e\x06\xe3\x47\x70\xbd\x58\x1d\x34\ +\x5d\x8f\x2d\x1a\xf2\x18\x22\xc0\xd2\x6f\x1f\x50\xb7\x38\x4a\x23\ +\x1d\x64\xbd\x1e\x25\x53\xb2\x78\x7d\xde\x8e\x12\x74\x07\x19\x02\ +\xa7\x82\xd5\xe4\x5b\xfa\x1d\x93\x43\x4b\x51\xad\x46\x1e\x3f\x32\ +\xe1\x72\xab\x02\x56\xa3\xe9\x87\x29\x32\x43\x34\x88\x33\x20\x8e\ +\x54\x6a\xef\x6f\xc0\x0e\x0b\x2c\x26\x6c\x6b\xd1\x24\xc5\x12\xe1\ +\xf4\xb8\xa8\x5b\xe3\x06\x34\x52\x5e\x37\xc0\xa0\xd4\x57\x37\xf3\ +\xd4\x2c\x56\x1d\x8b\x4c\xe3\x87\x0c\x6a\x4c\xc1\x74\x0f\x44\x15\ +\xd6\x5e\x3c\x20\xea\x20\x57\x88\x3e\xaa\xd5\x22\xce\xf1\xf8\xb0\ +\x1e\x8a\xac\x1e\x35\xa6\xb0\x0e\x69\xb0\x9e\x24\x61\xd5\x01\x94\ +\xb1\x5f\x0f\xe3\x7d\xa1\x30\xb0\xd1\x3d\x14\x05\x7c\x79\x92\x04\ +\x20\x7a\x22\x7d\x45\x8c\xd9\x5a\x86\x68\x8e\x7c\xd8\xde\x1f\xe5\ +\xa6\x73\xb1\x98\xa1\xc2\x83\xb2\x27\xe0\xda\xd9\xf5\x75\xc2\xc7\ +\x54\x8d\x47\xfa\x88\xc8\x27\x87\x1b\x69\xab\xeb\xee\x94\x6a\x3e\ +\x6e\x88\x26\x54\x8d\x13\x8c\x1c\xa8\xaa\x4a\xd1\xf4\xb0\xbb\x48\ +\x9f\x08\x74\x9a\xf8\x7d\x31\x66\x21\x8f\x25\x80\xa3\x77\xb8\xf3\ +\xb5\x73\xa2\x61\xbb\x20\x19\x38\xd5\x2e\xad\x80\x62\xac\x44\xd8\ +\x39\x11\x05\xe8\x89\x12\x50\xd6\xa9\xce\xc7\x63\xa4\xdc\x84\xd0\ +\xe0\xc5\xab\x56\x30\xfa\x6b\x07\x51\xa8\x87\x62\x50\x8b\x79\xfb\ +\x88\xba\xf6\x5b\xb8\xbc\x0c\x3a\x71\x5a\x45\xf5\xec\x53\x30\x2d\ +\x11\x30\xd1\x49\xfb\xf0\x16\x6d\x7a\xc4\x83\x16\x22\x06\xbc\xdf\ +\x57\x14\x84\x0b\x62\x20\x38\x48\x0c\x2b\x48\xd2\x35\x69\x51\x93\ +\xaa\x4f\xd2\x78\x01\x41\xa4\xd7\x5f\xe8\x80\x2a\xd0\x56\x0a\xd0\ +\xe8\xd5\x8e\xf1\xbb\xd5\xfa\x0c\x04\xc9\x2e\x4c\x31\x68\xa3\x60\ +\xae\x8b\x81\xe9\xf2\xe0\xd5\x4c\x64\x26\x32\xc7\x0a\x94\xc5\x02\ +\x14\x60\x16\x27\x4a\x5e\x94\xe9\xa3\x93\x9f\x3e\xcd\xe4\x62\x1b\ +\xfa\x34\x92\x4b\xc6\xc0\xa2\xd0\xb4\x74\x33\xfa\x90\x76\x92\x17\ +\xbc\x37\x36\xe7\xcc\xfb\x41\x61\xc8\x72\xe9\xba\x2f\x46\x30\x79\ +\x62\x71\xa8\xd9\x7d\x05\xec\x74\x8c\x4e\x3e\x27\x09\x08\x63\xfb\ +\xd3\x67\x64\x41\x09\xee\x13\x94\x94\xb7\xca\xb4\xa7\x86\x93\xb3\ +\xe3\x04\xb5\x27\x06\xb8\xcf\xad\x38\x5d\x31\x8a\x6e\xfe\x51\xf0\ +\xc3\xcf\x56\x23\xa6\x15\x02\x50\xf0\x2c\x6c\xa6\x3e\x69\x75\xac\ +\x80\x95\x7f\x5b\x85\x94\x06\xc1\x6e\x2f\x69\x01\x0d\x21\x7d\x59\ +\x91\xe9\xea\x58\x38\xa2\x8f\x18\x1c\xd8\x0a\x2f\xa2\xc8\x69\xc6\ +\xd7\x51\x0c\x94\xd5\x8a\x90\x0b\xac\x41\x3f\x4d\xc9\xc4\xa7\xd6\ +\x71\xb3\x3a\x91\x9d\x68\x86\x3e\x9b\xc0\xf7\x4c\xc5\x94\x34\x2c\ +\x74\xc5\xa6\xf6\x2b\x59\xc9\xf1\x49\xf3\x87\xe5\x8d\x19\x93\x92\ +\x3a\x31\x57\x97\x89\x31\x79\x63\xea\xdd\x3a\x23\xa2\x2f\x0a\xc2\ +\xf9\x21\x10\xd4\x25\x93\x7e\x22\x07\xe9\x25\x26\x82\xe3\xc2\xb1\ +\x15\x9b\xa8\x16\x56\x0a\xb0\x5e\x06\x18\x1e\xaf\xf0\x15\x9b\xb1\ +\x52\x0c\xca\x7e\x3c\x24\x60\x63\xb3\xaa\xe9\x49\x38\xdd\x4d\x00\ +\x4c\xf3\x8f\x23\x7d\xf4\x11\x56\x5a\xeb\x4f\xb3\x79\x9c\x84\x13\ +\x7a\xfa\x83\x76\x1f\xb7\xa6\xa7\xa3\x6d\x11\x00\xd5\xad\x15\x42\ +\x27\x54\xd7\x1f\x01\x37\xa1\x74\x05\xad\x0b\x81\x65\x1c\x30\xec\ +\xc2\x49\x35\x46\x48\x8f\x00\x34\x36\x53\xc9\x31\xc6\x0f\x8b\x68\ +\x4a\x52\xe3\x44\x14\x74\xe8\x53\xf5\x49\x40\xab\x63\x87\x8b\x68\ +\x9f\xb6\xd0\x33\x8b\x6c\xbe\x3e\x0a\x4e\x35\x8c\x6c\x98\x76\x72\ +\x75\x4d\x03\xe3\xb0\x32\x2f\x34\x9b\x8e\xbb\x8e\x09\x83\x80\x17\ +\x29\xf4\x61\x61\x4e\x50\x95\xbf\x0a\xd3\x42\x21\x14\x2b\x23\x20\ +\x47\x0a\x98\x7c\x0c\x3d\x61\xde\x13\x39\x67\x31\xb2\x82\x71\x4d\ +\x18\x46\xaa\x5a\x81\x90\x1c\x16\x13\xe5\x48\xe3\xdc\x98\x73\x4b\ +\x65\xfa\xf0\xf4\x7a\xa6\x1a\xc8\xaa\xdc\x2a\x59\x74\xcf\x0e\xec\ +\x93\xe2\x60\x63\x99\x93\x26\xc4\x67\x06\xdc\x9b\x16\xf0\x28\xd3\ +\x8a\x34\xab\x4e\x07\x71\x09\x97\xac\x62\xe3\x72\x6f\x6d\x78\x01\ +\x82\x89\x69\x06\x8f\x91\x89\x14\x81\x9a\x26\x4d\x92\x86\x43\xb3\ +\x58\x44\x1a\xa9\xb2\x24\x11\xb0\x69\x65\xc9\xf8\x2c\x41\x98\x49\ +\x3f\xe9\x16\xb3\x70\x8b\x0a\xc8\xee\xa2\x6d\x7c\xd8\x1a\x3b\xad\ +\x0a\xc8\x51\x5d\xa6\x2a\x28\x0a\xb6\x47\x3b\xbb\xc7\xed\xb4\x3b\ +\xaa\xde\x71\xc3\x7a\xd0\xcf\x90\x81\x23\xf1\xf6\xd9\xcc\x32\x88\ +\x97\x56\x56\xbf\xe8\x21\x47\x58\x0f\x22\x5f\xda\x67\xf1\x0c\xdf\ +\x96\xd0\xe5\x56\x8e\x11\xcd\xf7\xc9\xea\x05\x70\xe6\x64\xd9\x61\ +\xe8\xa2\x86\x5c\xd1\xf4\x7d\x6a\x9d\x25\xe5\x07\x1f\xae\x7e\x73\ +\x17\x51\xb7\xba\x88\x06\x83\x7a\xe2\x4e\x0f\x2b\xb0\x08\x3c\x0b\ +\x2c\xf0\x2c\x27\x22\xe4\x75\xbc\xf6\x55\x3f\xd9\xe3\xf0\xb8\x71\ +\xb8\x85\x74\x16\xe3\xc7\xaa\xdd\x89\x3a\x23\xc9\x67\xe4\x55\x36\ +\xac\xea\x0d\x9b\x96\x48\x04\x6d\xd2\x11\xc4\x73\x83\xaa\xc3\x7f\ +\x01\x7d\x61\xa3\xe2\x04\x76\x11\x2b\xda\xb0\x4f\x34\xaf\x65\x63\ +\xcf\x66\x2b\x41\x40\x6b\xa5\x68\xbd\x6e\x04\x3b\xfa\xbd\x66\xb3\ +\xbf\x7c\xa2\x40\x44\x15\x50\x19\x83\x0c\xf4\xaf\xf0\x7c\xed\x11\ +\xf8\x3d\xc3\x44\x09\x57\x2e\x8e\x44\x84\x83\x0e\xa7\xe8\x2b\x8b\ +\x16\xab\x60\x77\xc3\xd0\x5e\x97\xdc\x71\x7a\xe8\x20\x16\x83\x30\ +\x64\x46\xc1\x14\x01\x18\x62\x60\x33\x50\xde\xab\x4d\x85\x36\x37\ +\xc2\x68\x26\xde\x3a\xb1\x19\x3b\xb0\xc5\x7c\x9b\xed\xd3\x24\x05\ +\xc2\xe1\x47\x0b\xd5\xa6\x20\x86\x40\xb3\x82\x8f\xdc\xa4\x42\xfe\ +\x32\x0e\xe9\x59\x08\x7e\x94\x4b\x33\xb2\xd5\xad\x16\x60\xda\x94\ +\x1c\xdb\x8e\x46\x8c\xb4\xea\x05\x15\x33\xa2\xef\x26\xc6\x8c\x16\ +\x25\xd4\x45\x54\x1f\x61\xa7\x38\x17\x11\xca\xf0\xd0\xd8\x9b\x1e\ +\xca\xae\xdf\xec\xc6\xb2\xeb\x27\x93\x73\x31\x82\xaf\xee\xbd\xa0\ +\x29\x99\x09\xe2\x84\x12\x13\x65\xe2\x72\xb9\x90\x8d\xc4\x3c\x16\ +\x9e\xeb\xb2\x64\x72\xde\x9d\x70\x58\x3e\xa2\xec\xfa\x78\x4b\x58\ +\x14\x79\x93\x5a\x6b\x53\x3a\xe5\x9b\x58\x6e\x52\x41\x9e\x0c\xf8\ +\xc5\xd7\x0c\x04\x46\x8b\x7a\x89\x92\x8d\x96\x8f\x8b\xcb\xc7\x62\ +\xfb\x84\x02\x16\x75\x86\x2e\x72\x94\x55\x95\x81\x00\xb0\x22\x6b\ +\x62\x8e\x9b\x76\x11\xb5\x36\x1e\xa0\x50\x59\xcc\x28\xd8\x29\xfa\ +\xba\x86\xf2\x23\xc9\xad\x83\x58\x4a\x2b\x7c\xad\x67\xe7\xb9\xb2\ +\x89\x0f\x35\xe5\xa3\xe4\x3d\x8f\x17\x27\x94\x79\xd4\x2b\x1c\xd7\ +\x6c\xdc\x92\x24\x3f\x2f\x4f\x7a\x87\xb3\x82\x3a\x2f\xe7\xf2\xe8\ +\x99\x68\x35\x28\x9a\xea\x97\xa5\xab\x68\x48\x55\xcd\x2e\x50\x09\ +\x1f\x0d\x16\x19\x39\x51\xc5\x2b\xd2\x82\x2c\xc3\xaa\x94\xc5\x72\ +\x06\x23\x37\xc8\x5d\x6f\x1f\xe0\xd8\xa1\xda\x4f\xf8\x30\x66\x40\ +\x4f\xab\xd9\xa5\x18\xad\x6c\x03\x85\xc7\xaa\x17\x27\x24\x55\xd8\ +\xbc\xf8\x8c\xa5\xaf\x45\xc8\x5d\x74\x62\x89\xe6\xd2\xc4\x73\xf9\ +\x98\xd6\x5e\xb6\xc5\x61\x97\x36\xd1\x8a\x34\x8c\xc6\x17\x4d\x87\ +\x36\x28\x11\xa4\x41\xbf\xcb\x27\xe8\xe8\xc3\xf1\x36\x1e\x3c\x89\ +\x1c\x46\x89\x4a\xa2\x6c\xb5\x73\xfb\x8c\x2d\x49\xd5\x0c\x17\x45\ +\x5e\x36\x64\x15\x7a\x9c\x8e\xc3\x37\xa3\x26\xa5\x17\x42\x17\x32\ +\x30\xfc\xa8\xe0\x30\x02\xc1\xa3\x77\x81\xcb\x2f\xac\x60\x65\x98\ +\x7a\x8e\x21\xba\xbc\xa5\x21\x08\x93\x6a\x26\xcc\x50\xd5\x44\x27\ +\x9b\x87\x97\x4e\xc4\x8a\x26\x7a\x43\xc3\xc9\xc4\x55\x68\x11\xa2\ +\xdf\xa5\x3e\xec\x21\x38\x2c\xf6\xb5\x4c\xae\xc6\x08\x0f\xac\x44\ +\xfe\x2c\x06\x46\x69\x3f\xcb\x81\x73\x72\x93\x58\x7b\x0b\x35\xf0\ +\xa1\x38\x70\x8e\xd5\x32\x24\x0f\xbd\x28\x82\x5b\x99\x96\xaa\x5d\ +\x48\xf7\x3b\x82\x53\xd1\x8a\x2a\x36\xcc\xf2\x69\x21\x2c\x70\xed\ +\x16\x86\x6e\x0e\x0e\x69\x39\xf9\x2a\xa0\x2d\x8d\x8c\xe9\x25\xea\ +\xd3\x3e\x39\xde\x5c\x1c\x8f\x19\xb2\xc9\x23\xae\x9a\x16\x4a\x56\ +\x36\x2d\x9a\x57\xd9\x21\x58\xdf\x81\x63\x17\x5d\x9e\x52\x4a\x1e\ +\x3e\x1f\x21\x2c\x0f\xc5\x2d\xbb\xa9\x38\x0a\xb6\x28\x66\xe5\x76\ +\x20\x3c\x87\xc9\x09\xa2\x6a\x06\xc2\x49\x18\xb4\x78\x42\x20\x2d\ +\x43\x90\x1c\x5a\xca\x80\xe0\x60\x9b\x90\xee\xa1\x65\xcc\x90\xa3\ +\x3f\x0f\x2c\xa3\x11\xa4\x18\x98\x3d\xb3\x00\xb3\x2f\x42\xa4\x6a\ +\xba\xd8\xb0\xdd\xd3\x22\xd7\xc5\x6f\xfc\x04\xa4\xba\x65\xd0\xcb\ +\xf4\xe8\x57\xf2\xb0\x61\xd9\x46\x69\x7c\x7f\x84\xdd\xdb\x71\x18\ +\xd6\x5c\x2d\xf6\xfa\x89\x29\x98\xdd\x43\x89\x2c\x36\x3e\x0e\xa1\ +\xe7\x8a\x63\x02\x89\x6c\xbf\x3a\x34\x85\xe2\xc6\x69\xa6\x50\x69\ +\xe6\xf0\x04\x8c\x55\x63\x33\x9c\x1a\x9a\xa1\xc0\x9d\x44\xb1\x5f\ +\xac\x24\x88\xcd\xe3\x13\x76\xea\x91\x89\xde\xbe\x88\x24\xf0\x73\ +\x26\x35\x2b\x4c\x7a\x6d\xf4\x0c\xcc\x91\x8c\x29\x9f\x67\x31\x83\ +\x10\x96\x18\xe3\xb1\xcb\x16\x93\x51\x34\x3d\xe3\xa5\x1d\x3b\x99\ +\x40\x32\x64\xab\x18\x4f\x15\x01\x6c\xa5\x8f\xc6\x92\xab\xc9\xa5\ +\x0f\x4d\xc9\x35\x0f\xcd\xa2\x6f\xab\xb2\x6c\xb6\x21\x8d\xc5\x2a\ +\x3d\x54\x7f\x57\x5e\xae\x12\xcb\xf8\xcd\x61\x6f\x52\x83\x2a\xb1\ +\x5a\x64\xde\xb4\x95\x14\x2d\xd5\x4a\x28\x06\xc9\xfa\x90\xf7\x10\ +\x2d\x82\x14\x8e\x60\xba\x32\xc8\x63\xb7\xa1\x6f\x21\x72\xff\x32\ +\x34\x30\x6d\x2d\x64\x1b\xac\xde\x45\x57\x27\x64\x03\x6e\xa3\x14\ +\x1d\x05\xb7\x03\xab\x81\x25\x79\xaa\xdd\x1a\xa6\x74\x19\xcb\x6d\ +\xeb\x3d\xaa\x45\xc1\x1a\x37\x38\x54\x09\x0d\xef\x36\xbd\x35\xa1\ +\x36\xa1\x6b\xba\x11\xe0\xa7\x5d\x64\xb7\x52\x6f\x7c\x9c\x5d\xbb\ +\x13\xcb\x1c\x66\x1e\x6a\x4f\x7c\xa8\x3d\x07\x35\xd4\xee\x84\xa1\ +\x76\x27\x0f\xb5\x2e\x45\x1b\x6f\x21\xd0\x75\x3b\x4e\xf8\xd2\xfa\ +\x1e\x1c\xc1\xa7\x32\x65\x18\x3f\x70\xd1\x53\x8e\xb2\xdb\x39\x61\ +\xf8\x43\x9d\x6f\xc2\xc6\x78\xfc\x94\x76\x35\x97\x61\x61\xd2\xe4\ +\x2c\x0c\x13\x0f\xee\x25\xaf\x79\x66\x00\x3c\x45\xa7\x9a\x7c\x49\ +\x9c\x1a\xe5\x71\x6c\xe5\x1b\x0e\x7a\xea\xb0\x54\x56\x93\x2f\x48\ +\x9a\x1c\x85\x74\xdc\xed\x48\xa2\x9a\xe9\xe6\xa4\xef\x89\x26\x9c\ +\x2b\x09\x4b\x5b\xd8\x44\x5d\x5b\xa7\xa0\x30\x92\xa0\x08\x3c\xbb\ +\xb4\x12\x94\xbd\x15\x0f\x12\x0f\x1d\x24\x05\x44\x1c\x21\x15\xe7\ +\x48\x9a\x9f\xbb\x3c\xf1\x92\x84\xe9\xb9\x87\xc5\x16\x45\x46\xd6\ +\x0e\x55\x4e\x30\x27\x92\x1e\x3f\xdb\x4f\x58\x55\x28\x6b\xde\xa2\ +\x77\x84\x92\x95\x2d\x2a\xeb\xc5\xa1\x63\x87\x06\xc1\xa7\xa0\x59\ +\x5a\x9b\x55\x51\x44\x8a\xc5\x45\x9f\xea\x50\x14\x63\x00\x47\xcd\ +\x12\xd6\x58\x5b\x3f\x74\x5d\xb5\x0c\x4d\x9b\xfd\x30\x7e\x73\xce\ +\x0c\x75\x68\xf3\xb1\x17\x38\xd3\x9e\x06\x1e\x4a\x18\x0d\x15\xbd\ +\xb6\x0e\xa3\x02\xed\x4f\xd0\x21\xcd\xb1\x82\xbb\xfa\x84\x4a\xbb\ +\x75\xda\x01\xf7\xe4\x3a\xec\xa8\x1b\xac\x8e\x06\x46\x23\x33\x8b\ +\x47\x22\x95\xd9\xc2\xdd\x15\xe7\xeb\xe2\xa5\x02\x2c\x76\x50\xe1\ +\x25\x47\x29\x5b\x55\x82\x07\xa3\x87\xc3\x8e\x18\x71\x47\x61\xf9\ +\x3e\x6f\xed\xcd\x1b\xc2\x6d\xe6\x37\x42\x47\x30\x82\xbe\x86\x86\ +\x11\xe0\x86\x84\x8c\xb7\x76\xf6\x83\xc4\x0b\x81\xc3\x47\xe4\x59\ +\xd0\x72\x04\x38\x79\x13\xfc\x7c\x3c\xfc\xbf\x47\x0b\x61\x2e\xa2\ +\x07\x46\x90\x98\xb0\xce\x97\x1f\x45\x07\x13\x7e\x64\xdb\xa6\xe3\ +\xf7\x44\x23\x95\xf3\xc9\x8e\x24\x2a\x56\xf0\xee\x88\x53\xe2\x97\ +\xf5\xc3\x27\x24\xdc\xe2\x32\x0c\x69\xf5\xdb\x12\x45\xc7\xb3\x70\ +\xe3\x29\x9b\xe8\x4d\x7d\x45\x0d\x19\x33\x67\xa8\x8d\xaa\x5f\x6d\ +\xa6\x62\x4e\xd3\x17\x4e\x77\x93\x9d\x1a\x76\xde\x4d\x4f\xc8\xb0\ +\x60\xb4\xbc\x05\x51\x1c\xf6\x67\xd1\x7b\xda\x06\x8a\xf2\x09\x8d\ +\x53\xa3\xb1\xe8\xb3\x38\xb5\xb2\x62\xb4\xfa\xe9\xee\x9d\x51\x84\ +\xce\xd3\xaa\x43\xe3\x45\x85\x19\x2c\x05\x4d\x2a\x23\xac\xd5\xce\ +\x0c\xd4\x44\x0f\x0b\x9c\x95\x50\x4c\x6e\xa2\xb1\x20\x12\x63\xba\ +\x19\x5c\xe1\x52\x54\xf3\xc6\x94\x9e\xd8\xa5\xf5\xcd\xa6\x0b\x56\ +\x6e\x58\x64\xce\xfa\x90\x55\x53\xbb\x6b\x77\xc2\xdf\xf7\x68\x7f\ +\xdf\x13\x5b\x90\x7a\xbb\x26\xfa\x72\xb5\x05\xed\x9e\xfd\x82\x76\ +\xa7\x5f\x90\x6e\x10\xd5\xee\x8e\x03\xac\xfe\x5a\x13\xfd\x63\x35\ +\x80\xf7\xcc\x1e\xe0\x3d\x69\x01\x5e\x34\xed\xc9\x2d\xe5\x91\x75\ +\x9a\xec\x04\x14\xcf\xae\xf4\xc5\x9c\x74\x7e\x72\xae\x76\x21\xca\ +\xbc\x68\xdf\x29\x6d\x12\x4d\x5d\x1c\x82\x03\x80\x84\x63\x19\x9b\ +\x75\xa6\x1e\xbd\xff\xff\x41\xc9\xbb\x68\ +\x00\x00\x8b\x79\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x0b\x38\x00\x00\x00\x58\x00\x00\x7e\x3c\x00\x00\x00\x59\ +\x00\x00\x7e\xdd\x00\x00\x00\x5a\x00\x00\x7f\x5e\x00\x00\x05\xd9\ +\x00\x00\x7e\x9d\x00\x00\x05\xda\x00\x00\x7e\xbd\x00\x00\x05\xea\ +\x00\x00\x7f\x3e\x00\x00\x07\x78\x00\x00\x5a\xb7\x00\x00\x48\x83\ +\x00\x00\x02\x0f\x00\x00\x48\x83\x00\x00\x5f\x7f\x00\x00\x68\x34\ +\x00\x00\x55\xf1\x00\x01\xc1\x87\x00\x00\x3b\x3a\x00\x04\xa6\x79\ +\x00\x00\x61\xd8\x00\x04\xbb\x04\x00\x00\x08\xf6\x00\x04\xbb\x04\ +\x00\x00\x65\x88\x00\x05\x30\x45\x00\x00\x0a\x7d\x00\x05\x30\x45\ +\x00\x00\x70\xb7\x00\x05\x46\xc5\x00\x00\x0a\xa2\x00\x05\x46\xc5\ +\x00\x00\x71\x2b\x00\x05\x56\x45\x00\x00\x3b\xb5\x00\x05\x56\x45\ +\x00\x00\x71\xdb\x00\x05\xac\xf4\x00\x00\x13\x68\x00\x05\xac\xf4\ +\x00\x00\x7c\x2d\x00\x05\xb8\xfd\x00\x00\x7c\xdf\x00\x05\xcf\xc7\ +\x00\x00\x7d\x59\x00\x06\xab\x8c\x00\x00\x56\xd5\x00\x10\x84\x49\ +\x00\x00\x45\xf3\x00\x12\x05\xba\x00\x00\x7a\x85\x00\x16\xc6\xda\ +\x00\x00\x6a\x28\x00\x1f\xa4\xf7\x00\x00\x1c\x12\x00\x2a\xa6\x79\ +\x00\x00\x5c\xbf\x00\x2b\xc4\xaf\x00\x00\x5d\xa1\x00\x2b\xe0\x65\ +\x00\x00\x5d\xcc\x00\x39\xdf\x33\x00\x00\x28\x3c\x00\x3a\x9e\x1b\ +\x00\x00\x50\x89\x00\x3d\xa1\x19\x00\x00\x60\x70\x00\x3e\x93\x83\ +\x00\x00\x29\x1a\x00\x48\x8f\x7c\x00\x00\x1c\xda\x00\x48\x98\x89\ +\x00\x00\x02\xac\x00\x49\xe0\x85\x00\x00\x1a\x98\x00\x49\xe0\x85\ +\x00\x00\x63\xc9\x00\x4a\x36\x45\x00\x00\x04\xe0\x00\x4b\x66\x35\ +\x00\x00\x25\xd2\x00\x4b\x66\x37\x00\x00\x26\x0f\x00\x4b\x66\x39\ +\x00\x00\x26\x4c\x00\x57\x60\x54\x00\x00\x0c\xb2\x00\x57\x60\x54\ +\x00\x00\x77\x7c\x00\x58\xfd\xf4\x00\x00\x3e\x8c\x00\x59\x98\x25\ +\x00\x00\x0f\x1d\x00\x59\x98\x25\x00\x00\x78\xb6\x00\x6a\x58\x9a\ +\x00\x00\x73\x8e\x00\x79\xef\xd4\x00\x00\x5a\xef\x00\x7e\x7f\x0e\ +\x00\x00\x53\xac\x00\x8a\x23\x95\x00\x00\x1f\x4e\x00\x8a\x23\x97\ +\x00\x00\x1f\x8e\x00\x8a\x23\x99\x00\x00\x1f\xce\x00\x91\xbc\xe9\ +\x00\x00\x0a\xc9\x00\xa6\x37\x3f\x00\x00\x1e\x91\x00\xaa\x80\x25\ +\x00\x00\x64\x59\x00\xac\xd6\x04\x00\x00\x30\x4e\x00\xc0\xac\x63\ +\x00\x00\x64\xd3\x00\xc6\xe3\x6e\x00\x00\x1b\xaf\x00\xcb\xa8\x14\ +\x00\x00\x5a\x2b\x00\xfc\x00\xca\x00\x00\x6e\x30\x01\x19\x8d\xde\ +\x00\x00\x42\xb2\x01\x21\xd6\x39\x00\x00\x45\x42\x01\x22\xb4\xf9\ +\x00\x00\x0f\x46\x01\x2f\x8e\x7e\x00\x00\x4b\xde\x01\x48\xfe\xa3\ +\x00\x00\x29\x72\x01\x53\xf3\xaa\x00\x00\x67\xff\x01\x56\x16\x4a\ +\x00\x00\x6d\xdd\x01\x5c\xde\xba\x00\x00\x71\x8c\x01\x67\x0d\x8a\ +\x00\x00\x6b\x31\x01\x69\x11\x7a\x00\x00\x76\x23\x01\x69\x97\x98\ +\x00\x00\x2a\xe0\x01\x82\x39\x0a\x00\x00\x73\xf6\x01\x8b\x68\x75\ +\x00\x00\x7c\xa0\x01\x8b\x89\x79\x00\x00\x05\x09\x01\xa1\x7f\x63\ +\x00\x00\x15\x1b\x01\xb1\x5d\x09\x00\x00\x50\xf0\x01\xc1\xd9\xde\ +\x00\x00\x47\x4a\x01\xd2\x8f\xd3\x00\x00\x3f\x19\x01\xd4\x10\x23\ +\x00\x00\x2f\xbf\x01\xdd\x83\xfa\x00\x00\x72\xae\x01\xdf\x11\x43\ +\x00\x00\x04\x52\x01\xe2\xf4\x5a\x00\x00\x7a\x40\x01\xfc\xae\xd3\ +\x00\x00\x5b\x32\x02\x05\xbe\x25\x00\x00\x63\x6a\x02\x2c\xd9\x60\ +\x00\x00\x16\x8d\x02\x2f\xb5\x14\x00\x00\x16\x06\x02\x46\x58\x0a\ +\x00\x00\x75\xaf\x02\x57\xf8\x08\x00\x00\x08\x22\x02\x65\xad\x62\ +\x00\x00\x7f\xf2\x02\x6e\x07\xe2\x00\x00\x41\x9c\x02\x76\x24\x13\ +\x00\x00\x2e\x21\x02\x7d\xe0\x55\x00\x00\x42\x6e\x02\x94\x46\x1a\ +\x00\x00\x73\xc1\x02\x95\xca\xb5\x00\x00\x27\x49\x02\xa7\x2c\x15\ +\x00\x00\x03\x4e\x02\xaa\x36\x95\x00\x00\x5c\x64\x02\xab\x87\xd4\ +\x00\x00\x5c\xea\x02\xb1\xf0\xba\x00\x00\x6c\x40\x02\xbf\xaa\x8e\ +\x00\x00\x2b\xab\x02\xc0\x66\xf2\x00\x00\x49\x74\x02\xc8\x3f\xf5\ +\x00\x00\x50\x0b\x02\xd9\xa4\xb9\x00\x00\x55\xaa\x02\xdb\x1a\x94\ +\x00\x00\x05\xd7\x03\x01\x84\xc4\x00\x00\x6e\xa3\x03\x12\x97\x6a\ +\x00\x00\x6d\x66\x03\x14\x79\xca\x00\x00\x71\x4d\x03\x1a\x14\x14\ +\x00\x00\x24\x24\x03\x1a\x16\x59\x00\x00\x43\x77\x03\x2f\x1a\x6a\ +\x00\x00\x5e\x29\x03\x7e\xca\xb5\x00\x00\x37\xaa\x03\x85\x74\x48\ +\x00\x00\x34\x78\x03\x88\x1f\xd4\x00\x00\x38\x4b\x03\x9e\x58\xa5\ +\x00\x00\x00\x32\x03\xb3\x9e\xfa\x00\x00\x74\x66\x03\xb5\xc8\x9a\ +\x00\x00\x75\x44\x03\xbd\xd4\xe4\x00\x00\x5e\x9a\x03\xc4\x3c\xf5\ +\x00\x00\x60\x42\x03\xc5\xd5\x5e\x00\x00\x07\x33\x03\xc5\xd5\x5e\ +\x00\x00\x64\x32\x03\xcb\x0d\xe5\x00\x00\x78\xd9\x03\xdc\x0c\xd4\ +\x00\x00\x5d\x37\x03\xe1\x78\x25\x00\x00\x62\xd2\x03\xf2\x70\x35\ +\x00\x00\x21\x8a\x03\xf2\xbd\x60\x00\x00\x10\x0e\x03\xfb\x0f\x04\ +\x00\x00\x23\xd2\x04\x21\x23\x23\x00\x00\x19\x03\x04\x2e\x73\x33\ +\x00\x00\x52\xc5\x04\x56\x06\x93\x00\x00\x22\x81\x04\x60\x7c\x15\ +\x00\x00\x77\xe8\x04\x79\xef\x9a\x00\x00\x6b\xeb\x04\x82\x77\xf4\ +\x00\x00\x42\x2c\x04\x87\x83\x87\x00\x00\x2d\x85\x04\x87\xf9\x9e\ +\x00\x00\x6f\x32\x04\x8c\xd6\xae\x00\x00\x4f\x22\x04\x8e\xbd\xda\ +\x00\x00\x66\xe9\x04\xa0\x8a\x25\x00\x00\x04\x29\x04\xa0\x8a\x25\ +\x00\x00\x61\x17\x04\xa4\x31\x5a\x00\x00\x70\x71\x04\xa8\xeb\x85\ +\x00\x00\x26\x89\x04\xbe\x0a\xf8\x00\x00\x3e\x2b\x04\xd6\xd6\x12\ +\x00\x00\x40\x59\x04\xe1\x6e\xe3\x00\x00\x07\x95\x04\xe4\x0f\x75\ +\x00\x00\x01\xc9\x04\xeb\x41\xc3\x00\x00\x22\x28\x04\xef\xd9\xa8\ +\x00\x00\x3d\x7a\x05\x03\x83\x95\x00\x00\x58\x7e\x05\x05\xcb\x13\ +\x00\x00\x36\x60\x05\x0f\xf2\x74\x00\x00\x73\x05\x05\x1b\x10\x59\ +\x00\x00\x39\x8a\x05\x2a\xe5\x97\x00\x00\x3f\x99\x05\x44\x3b\x5f\ +\x00\x00\x59\x93\x05\x5c\xd9\xc4\x00\x00\x0b\x8e\x05\x5c\xd9\xc4\ +\x00\x00\x72\x28\x05\x63\xf6\x93\x00\x00\x3e\xc5\x05\x65\xee\x65\ +\x00\x00\x66\xbe\x05\x87\xb0\xc3\x00\x00\x77\xc4\x05\x96\xa8\xa5\ +\x00\x00\x0e\x37\x05\x96\xa8\xa5\x00\x00\x78\x92\x05\xad\x4b\xc3\ +\x00\x00\x37\xf0\x05\xb2\xa6\xc6\x00\x00\x16\xc5\x05\xb9\x03\xc8\ +\x00\x00\x17\x18\x05\xbd\x0c\xba\x00\x00\x68\xb9\x05\xbd\x8e\xde\ +\x00\x00\x4e\x3a\x05\xbe\x56\x93\x00\x00\x3d\x26\x05\xc5\x50\x04\ +\x00\x00\x09\x1d\x05\xe5\x8e\x2e\x00\x00\x0c\xd9\x05\xfb\xdc\x83\ +\x00\x00\x36\xac\x06\x1e\xe6\xb5\x00\x00\x7c\x00\x06\x29\xee\xa9\ +\x00\x00\x61\x68\x06\x2a\x86\xcd\x00\x00\x41\xe0\x06\x57\x19\xf4\ +\x00\x00\x00\x00\x06\x5a\xef\x15\x00\x00\x5c\x90\x06\x5b\xd2\xb5\ +\x00\x00\x31\x3b\x06\x6c\x88\x8e\x00\x00\x35\x5b\x06\x74\x1d\x55\ +\x00\x00\x46\xee\x06\x8b\x96\x44\x00\x00\x09\x97\x06\x97\x58\xc9\ +\x00\x00\x43\xd0\x06\xbc\x80\xa5\x00\x00\x15\xbb\x06\xc9\xb8\x05\ +\x00\x00\x5e\xe6\x06\xe8\x05\x4e\x00\x00\x05\x86\x06\xee\xaa\x57\ +\x00\x00\x7b\x5d\x06\xf0\xcb\x25\x00\x00\x14\x5d\x06\xfa\xff\xc3\ +\x00\x00\x37\x62\x06\xfc\x1a\x14\x00\x00\x27\x8f\x06\xfc\xa0\x8a\ +\x00\x00\x73\x32\x07\x08\x90\xe5\x00\x00\x20\x67\x07\x0d\xb7\xf7\ +\x00\x00\x2b\x34\x07\x0e\x86\x3e\x00\x00\x14\xaa\x07\x2a\x23\x65\ +\x00\x00\x2a\x73\x07\x35\x68\x6e\x00\x00\x10\xb9\x07\x35\xe8\x9a\ +\x00\x00\x76\x54\x07\x44\x41\x2a\x00\x00\x67\xac\x07\x4a\x1f\x63\ +\x00\x00\x01\x4c\x07\x4d\x73\x22\x00\x00\x70\xd7\x07\x4e\xa6\xf2\ +\x00\x00\x65\xd1\x07\x58\xcb\xe8\x00\x00\x71\x03\x07\x63\xfe\x0e\ +\x00\x00\x0d\x68\x07\x63\xfe\x0e\x00\x00\x77\x9d\x07\x71\xad\x43\ +\x00\x00\x11\x5e\x07\x80\xc6\xb3\x00\x00\x7e\x10\x07\x88\x72\x5a\ +\x00\x00\x5f\xcd\x07\x91\x78\x5e\x00\x00\x19\xed\x07\xa7\x30\x05\ +\x00\x00\x5f\x9e\x07\xc1\xfc\x13\x00\x00\x23\x1c\x07\xe7\xec\x93\ +\x00\x00\x51\xfd\x08\x27\xb4\xba\x00\x00\x75\x09\x08\x32\xc4\xaa\ +\x00\x00\x76\xcf\x08\x36\x74\x14\x00\x00\x1b\x6c\x08\x44\xb9\x83\ +\x00\x00\x27\xe8\x08\x49\xc9\x30\x00\x00\x10\x48\x08\x61\x7c\xb3\ +\x00\x00\x17\x4b\x08\xa2\xca\x67\x00\x00\x43\x35\x08\xa3\xe0\x33\ +\x00\x00\x62\x3f\x08\xb1\x15\x28\x00\x00\x23\x87\x08\xb4\x04\x04\ +\x00\x00\x78\x3f\x08\xd0\x32\xf4\x00\x00\x65\xaa\x08\xd4\xcd\x69\ +\x00\x00\x65\xfb\x08\xe1\x9b\xbe\x00\x00\x13\xe3\x08\xe1\xc1\xfa\ +\x00\x00\x67\x40\x08\xef\x4d\x7a\x00\x00\x63\xf2\x09\x20\xda\x24\ +\x00\x00\x7e\xfa\x09\x20\xda\xb4\x00\x00\x7f\x7b\x09\x20\xda\xd4\ +\x00\x00\x7e\x59\x09\x4d\x96\xd9\x00\x00\x1c\x57\x09\x65\xda\x8a\ +\x00\x00\x69\xdb\x09\x68\x0d\x29\x00\x00\x6f\xc8\x09\x71\x8d\x25\ +\x00\x00\x05\x52\x09\x75\x23\x14\x00\x00\x5d\xef\x09\x76\xed\x34\ +\x00\x00\x51\xbb\x09\x86\xa6\x05\x00\x00\x1a\xc6\x09\x8b\x23\xba\ +\x00\x00\x77\x0a\x09\x9e\xfd\x7e\x00\x00\x52\x5f\x09\xb6\x2a\x63\ +\x00\x00\x26\xdb\x09\xcd\x1c\x55\x00\x00\x79\x07\x09\xd2\x21\xea\ +\x00\x00\x4c\x95\x09\xe5\x23\x0e\x00\x00\x48\xd3\x09\xec\x2b\x45\ +\x00\x00\x09\x61\x09\xef\x33\xa3\x00\x00\x11\xd6\x09\xf0\x1f\x6e\ +\x00\x00\x02\x32\x09\xfd\x45\x1a\x00\x00\x74\x2d\x0a\x09\xc1\x7a\ +\x00\x00\x75\xe8\x0a\x28\x9a\x65\x00\x00\x40\xd9\x0a\x28\x9a\x67\ +\x00\x00\x41\x1a\x0a\x28\x9a\x69\x00\x00\x41\x5b\x0a\x2d\xbe\xe4\ +\x00\x00\x24\x73\x0a\x35\xa9\xfa\x00\x00\x6c\x92\x0a\x3f\x27\x74\ +\x00\x00\x63\x9c\x0a\x40\xa1\xe3\x00\x00\x21\xdf\x0a\x49\xa5\x4a\ +\x00\x00\x7c\x4f\x0a\x60\xe0\x15\x00\x00\x1d\x1b\x0a\x60\xe0\x17\ +\x00\x00\x1d\x62\x0a\x60\xe0\x19\x00\x00\x1d\xa9\x0a\x65\x9b\xea\ +\x00\x00\x72\x50\x0a\x78\x05\x80\x00\x00\x00\xdd\x0a\x7f\x8f\x65\ +\x00\x00\x2e\xd4\x0a\x81\xe4\x23\x00\x00\x32\x13\x0a\x86\x10\x44\ +\x00\x00\x0c\x6e\x0a\x98\x86\x18\x00\x00\x20\x0e\x0a\x99\x5c\xaa\ +\x00\x00\x77\x44\x0a\xa8\x16\x95\x00\x00\x0e\x06\x0a\xa8\x16\x95\ +\x00\x00\x78\x18\x0a\xa9\x89\xec\x00\x00\x38\x94\x0a\xc8\x5c\x59\ +\x00\x00\x0b\xbd\x0a\xd0\x50\xb8\x00\x00\x5d\x10\x0a\xd0\xe6\xf5\ +\x00\x00\x11\x25\x0a\xd6\xf1\xfa\x00\x00\x65\x4b\x0a\xeb\x91\x88\ +\x00\x00\x51\x58\x0b\x07\x78\x8a\x00\x00\x69\x76\x0b\x1b\xe0\x73\ +\x00\x00\x44\x22\x0b\x24\x9d\xb4\x00\x00\x44\xb9\x0b\x24\xc5\xc9\ +\x00\x00\x0e\x62\x0b\x26\x7e\x0e\x00\x00\x63\x06\x0b\x2b\x50\xfa\ +\x00\x00\x6b\x94\x0b\x2d\xb3\xf9\x00\x00\x55\x1a\x0b\x37\x73\x69\ +\x00\x00\x7d\x7b\x0b\x40\x40\x3e\x00\x00\x39\xec\x0b\x43\xcd\x19\ +\x00\x00\x38\xea\x0b\x4f\x98\xba\x00\x00\x6a\x7a\x0b\x66\x28\xd2\ +\x00\x00\x50\x4a\x0b\x88\xe0\x07\x00\x00\x08\x62\x0b\x94\x44\xc5\ +\x00\x00\x24\xc4\x0b\x98\x12\xaa\x00\x00\x68\x68\x0b\xa0\x84\x94\ +\x00\x00\x02\xd5\x0b\xb3\x46\x6a\x00\x00\x61\xfa\x0b\xc2\x99\x6a\ +\x00\x00\x69\x09\x0b\xd3\x27\xae\x00\x00\x03\x88\x0b\xd4\x7e\x9e\ +\x00\x00\x08\x8f\x0b\xf5\xee\x53\x00\x00\x71\xfb\x0c\x06\x50\x2e\ +\x00\x00\x09\xee\x0c\x19\xfa\x99\x00\x00\x66\x53\x0c\x21\x0a\x83\ +\x00\x00\x61\x39\x0c\x28\x9b\x45\x00\x00\x5d\x72\x0c\x31\x7e\x4a\ +\x00\x00\x74\x99\x0c\x38\x4d\xe5\x00\x00\x06\x0c\x0c\x3a\x16\xd0\ +\x00\x00\x13\x0c\x0c\x5a\xc0\xc8\x00\x00\x60\x18\x0c\x6e\x87\xf5\ +\x00\x00\x19\xc0\x0c\x7c\xe0\xa6\x00\x00\x16\x3e\x0c\x80\x3b\x33\ +\x00\x00\x65\x0d\x0c\x91\xa0\x7a\x00\x00\x7b\xbd\x0c\x96\x90\x59\ +\x00\x00\x39\x33\x0c\xbe\xa7\x4e\x00\x00\x33\x7d\x0c\xca\xdd\xfa\ +\x00\x00\x7a\xc9\x0c\xd6\xef\x12\x00\x00\x22\xd5\x0c\xde\x99\x49\ +\x00\x00\x55\x60\x0c\xe1\x21\x02\x00\x00\x3f\xfe\x0c\xe2\x77\x73\ +\x00\x00\x57\x17\x0c\xf0\xde\xaa\x00\x00\x6a\xcd\x0d\x1c\xf6\xee\ +\x00\x00\x20\xfc\x0d\x3a\x6c\xba\x00\x00\x74\xcf\x0d\x45\xe2\x6a\ +\x00\x00\x79\xf3\x0d\x59\xa1\x45\x00\x00\x64\x7f\x0d\x5a\xad\x33\ +\x00\x00\x5f\x3e\x0d\x5e\xe7\x6e\x00\x00\x1d\xf0\x0d\x64\xa5\xd9\ +\x00\x00\x4b\x5c\x0d\x6d\xf8\xf4\x00\x00\x06\x7f\x0d\x74\xdd\x52\ +\x00\x00\x12\x7f\x0d\x76\xb5\x92\x00\x00\x21\x3e\x0d\x9b\xec\xc9\ +\x00\x00\x46\x9d\x0d\xa5\xd9\x94\x00\x00\x20\xb5\x0d\xa6\xda\xa4\ +\x00\x00\x3a\x91\x0d\xa7\xb9\xc2\x00\x00\x12\xbc\x0d\xc6\xc6\x2a\ +\x00\x00\x76\x91\x0d\xf2\x39\xba\x00\x00\x6c\xfb\x0e\x1a\x1d\xc3\ +\x00\x00\x36\xfc\x0e\x29\x94\x64\x00\x00\x2c\x9e\x0e\x2b\x04\x15\ +\x00\x00\x62\xa5\x0e\x2c\xe4\x2a\x00\x00\x79\xb0\x0e\x4e\xcc\xc5\ +\x00\x00\x07\x64\x0e\x6f\x9a\x1a\x00\x00\x7b\x17\x0e\x7b\x7a\x2c\ +\x00\x00\x25\x7a\x0e\x8f\x6a\x37\x00\x00\x28\xd4\x0e\x91\x65\xf5\ +\x00\x00\x13\x8f\x0e\xca\xd7\x34\x00\x00\x18\x57\x0e\xcd\x1c\x55\ +\x00\x00\x79\x40\x0e\xcd\x1c\x65\x00\x00\x79\x77\x0e\xcd\x5b\x59\ +\x00\x00\x3d\xd8\x0e\xea\xe5\x03\x00\x00\x5b\x97\x0e\xed\xe1\xf9\ +\x00\x00\x3b\xed\x0f\x07\x8d\xe3\x00\x00\x5b\xfd\x0f\x0b\x10\x53\ +\x00\x00\x3a\xe3\x0f\x17\x82\x4e\x00\x00\x00\x9b\x0f\x1f\x8d\xa5\ +\x00\x00\x62\x6b\x0f\x4f\x75\x3a\x00\x00\x7f\xbf\x0f\x5f\xca\xd5\ +\x00\x00\x25\x17\x0f\x77\xc3\xb4\x00\x00\x56\x2e\x0f\x89\x0b\xbe\ +\x00\x00\x3c\x37\x0f\x8f\xa8\xa7\x00\x00\x12\x40\x0f\x98\x0a\x39\ +\x00\x00\x7d\x01\x0f\x9e\xec\xa0\x00\x00\x0d\x97\x0f\xbf\x87\xa3\ +\x00\x00\x70\x3d\x0f\xcd\xce\x95\x00\x00\x28\x86\x0f\xdf\x21\x05\ +\x00\x00\x1b\x27\x0f\xf6\x06\x1e\x00\x00\x18\x95\x0f\xf6\x29\x0a\ +\x00\x00\x5f\x0c\x0f\xfb\x5f\xae\x00\x00\x63\x38\x69\x00\x00\x80\ +\x27\x03\x00\x00\x00\x06\x6d\xfb\x52\xa0\x9e\xde\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x41\x64\x64\x20\x50\x6f\x69\x6e\x74\x07\ +\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x50\x6f\x69\ +\x6e\x74\x01\x03\x00\x00\x00\x1e\x5c\x07\x9e\xde\x6d\xfb\x52\xa0\ +\x52\x30\x73\xfe\x67\x09\x76\x84\x80\x5a\x54\x08\x7d\xda\x00\x2f\ +\x96\xf2\x5f\x62\x7d\xda\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\ +\x41\x64\x64\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x74\x6f\x20\ +\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x77\x69\x72\x65\ +\x2f\x62\x73\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x0e\x44\x72\x61\ +\x66\x74\x5f\x41\x64\x64\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\ +\x0e\x52\xa0\x51\x65\x7f\xa4\x96\x3b\x00\x2e\x00\x2e\x00\x2e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x41\x64\x64\x20\x74\x6f\x20\ +\x67\x72\x6f\x75\x70\x2e\x2e\x2e\x07\x00\x00\x00\x10\x44\x72\x61\ +\x66\x74\x5f\x41\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\x01\x03\x00\ +\x00\x00\x1a\x5c\x07\x62\x40\x90\x78\x76\x84\x72\x69\x4e\xf6\x6d\ +\xfb\x52\xa0\x52\x30\x73\xfe\x67\x09\x7f\xa4\x7d\x44\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x30\x41\x64\x64\x73\x20\x74\x68\x65\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x28\ +\x73\x29\x20\x74\x6f\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\ +\x67\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x10\x44\x72\x61\x66\ +\x74\x5f\x41\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\x01\x03\x00\x00\ +\x00\x20\x5c\x07\x75\x76\x52\x4d\x76\x84\x7d\xda\x5b\xec\x54\x8c\ +\x98\x4f\x82\x72\x61\xc9\x75\x28\x65\xbc\x62\x40\x90\x78\x72\x69\ +\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x41\x70\x70\x6c\ +\x69\x65\x73\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\x6e\x65\ +\x20\x77\x69\x64\x74\x68\x20\x61\x6e\x64\x20\x63\x6f\x6c\x6f\x72\ +\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\ +\x70\x70\x6c\x79\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\x0e\x59\ +\x57\x75\x28\x76\xee\x52\x4d\x76\x84\x6a\x23\x5f\x0f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x13\x41\x70\x70\x6c\x79\x20\x43\x75\x72\ +\x72\x65\x6e\x74\x20\x53\x74\x79\x6c\x65\x07\x00\x00\x00\x10\x44\ +\x72\x61\x66\x74\x5f\x41\x70\x70\x6c\x79\x53\x74\x79\x6c\x65\x01\ +\x03\x00\x00\x00\x02\x5f\x27\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x03\x41\x72\x63\x07\x00\x00\x00\x09\x44\x72\x61\x66\x74\x5f\x41\ +\x72\x63\x01\x03\x00\x00\x00\x2c\x52\x75\x5e\xfa\x5f\x27\x30\x02\ +\x63\x09\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x20\x8c\xbc\x9f\x4a\ +\xff\x0c\x63\x09\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\ +\x6b\x63\x4e\xa4\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x72\x63\x2e\x20\x43\x54\ +\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\ +\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\ +\x00\x00\x09\x44\x72\x61\x66\x74\x5f\x41\x72\x63\x01\x03\x00\x00\ +\x00\x04\x77\xe9\x96\x63\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x41\x72\x72\x61\x79\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\ +\x41\x72\x72\x61\x79\x01\x03\x00\x00\x00\x1e\x75\x31\x62\x40\x90\ +\x78\x72\x69\x4e\xf6\x5e\xfa\x7a\xcb\x4e\x00\x50\x0b\x69\x75\x62\ +\x16\x77\xe9\x5f\x62\x96\x63\x52\x17\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x3b\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x70\x6f\x6c\ +\x61\x72\x20\x6f\x72\x20\x72\x65\x63\x74\x61\x6e\x67\x75\x6c\x61\ +\x72\x20\x61\x72\x72\x61\x79\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x41\x72\x72\x61\x79\x01\x03\ +\x00\x00\x00\x10\x00\x42\x00\x2d\x00\x53\x00\x70\x00\x6c\x00\x69\ +\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x2d\ +\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\ +\x5f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x3c\x5e\xfa\ +\x7a\xcb\x4e\x00\x59\x1a\x9e\xde\x00\x62\x00\x2d\x00\x73\x00\x70\ +\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x2c\x00\x43\x00\x54\x00\x52\ +\x00\x4c\x70\xba\x5f\xeb\x90\x1f\x00\x2c\x00\x53\x00\x48\x00\x49\ +\x00\x46\x00\x54\x70\xba\x62\x4b\x52\xd5\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x43\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x6d\x75\ +\x6c\x74\x69\x70\x6c\x65\x2d\x70\x6f\x69\x6e\x74\x20\x62\x2d\x73\ +\x70\x6c\x69\x6e\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\ +\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\ +\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\ +\x74\x5f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x02\x57\ +\x13\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\x69\x72\x63\x6c\ +\x65\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x43\x69\x72\x63\ +\x6c\x65\x01\x03\x00\x00\x00\x30\x52\x75\x5e\xfa\x57\x13\x30\x02\ +\x63\x09\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x20\x8c\xbc\x9f\x4a\ +\x30\x01\x63\x09\x00\x41\x00\x4c\x00\x54\x00\x20\x90\x78\x64\xc7\ +\x76\xf8\x52\x07\x72\x69\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x3d\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x69\x72\x63\ +\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\ +\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x20\ +\x74\x61\x6e\x67\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\ +\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x43\x69\x72\x63\x6c\x65\ +\x01\x03\x00\x00\x00\x04\x89\x07\x88\xfd\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x43\x6c\x6f\x6e\x65\x07\x00\x00\x00\x0b\x44\x72\ +\x61\x66\x74\x5f\x43\x6c\x6f\x6e\x65\x01\x03\x00\x00\x00\x0c\x89\ +\x07\x88\xfd\x62\x40\x90\x78\x72\x69\x4e\xf6\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1d\x43\x6c\x6f\x6e\x65\x73\x20\x74\x68\x65\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x28\ +\x73\x29\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\ +\x6e\x65\x01\x03\x00\x00\x00\x06\x95\x89\x54\x08\x7d\xda\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6c\x6f\x73\x65\x20\x4c\x69\ +\x6e\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\ +\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x12\x95\x89\x54\x08\ +\x6b\x63\x57\x28\x7e\x6a\x88\xfd\x76\x84\x7d\xda\x68\x9d\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1b\x43\x6c\x6f\x73\x65\x73\x20\x74\ +\x68\x65\x20\x6c\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\x20\x64\x72\ +\x61\x77\x6e\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\x6c\ +\x6f\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x06\x79\xfb\x96\ +\x64\x9e\xde\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x52\x65\x6d\ +\x6f\x76\x65\x20\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x0e\x44\x72\ +\x61\x66\x74\x5f\x44\x65\x6c\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\ +\x00\x20\x5f\x9e\x73\xfe\x67\x09\x76\x84\x67\x09\x80\x5a\x54\x08\ +\x7d\xda\x62\x16\x96\xf2\x5f\x62\x7d\xda\x4e\x2d\x79\xfb\x96\x64\ +\x9e\xde\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x52\x65\x6d\x6f\ +\x76\x65\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x66\x72\x6f\x6d\ +\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x77\x69\x72\ +\x65\x20\x6f\x72\x20\x62\x73\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\ +\x0e\x44\x72\x61\x66\x74\x5f\x44\x65\x6c\x50\x6f\x69\x6e\x74\x01\ +\x03\x00\x00\x00\x42\x52\x75\x5e\xfa\x6a\x19\x8a\x3b\x30\x02\x63\ +\x09\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x8c\xbc\x9f\x4a\xff\ +\x0c\x63\x09\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x6b\ +\x63\x4e\xa4\xff\x0c\x63\x09\x00\x41\x00\x4c\x00\x54\x00\x20\x90\ +\x78\x53\xd6\x7d\xda\x6b\xb5\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x4e\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x64\x69\x6d\x65\x6e\ +\x73\x69\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ +\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\ +\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x73\ +\x65\x6c\x65\x63\x74\x20\x61\x20\x73\x65\x67\x6d\x65\x6e\x74\x07\ +\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\x73\ +\x69\x6f\x6e\x01\x03\x00\x00\x00\x04\x6a\x19\x8a\x3b\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ +\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\ +\x73\x69\x6f\x6e\x01\x03\x00\x00\x00\x04\x96\x4d\x7d\x1a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x44\x6f\x77\x6e\x67\x72\x61\x64\ +\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x6f\x77\x6e\ +\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x24\x52\x06\x89\xe3\x62\ +\x40\x90\x78\x76\x84\x72\x69\x4e\xf6\x70\xba\x7c\x21\x55\xae\x76\ +\x84\x72\x69\x4e\xf6\xff\x0c\x62\x16\x5d\xee\x96\xc6\x97\x62\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x45\x45\x78\x70\x6c\x6f\x64\x65\ +\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\x73\x69\x6d\x70\ +\x6c\x65\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x2c\x20\x6f\x72\x20\ +\x73\x75\x62\x74\x72\x61\x63\x74\x20\x66\x61\x63\x65\x73\x07\x00\ +\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\ +\x64\x65\x01\x03\x00\x00\x00\x0a\x83\x49\x57\x16\x81\xf3\x7d\x20\ +\x63\xcf\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x44\x72\x61\x66\ +\x74\x20\x74\x6f\x20\x53\x6b\x65\x74\x63\x68\x07\x00\x00\x00\x12\ +\x44\x72\x61\x66\x74\x5f\x44\x72\x61\x66\x74\x32\x53\x6b\x65\x74\ +\x63\x68\x01\x03\x00\x00\x00\x04\x57\x16\x97\x62\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x07\x44\x72\x61\x77\x69\x6e\x67\x07\x00\x00\ +\x00\x0d\x44\x72\x61\x66\x74\x5f\x44\x72\x61\x77\x69\x6e\x67\x01\ +\x03\x00\x00\x00\x18\x5c\x07\x62\x40\x90\x78\x76\x84\x72\x69\x4e\ +\xf6\x65\x3e\x52\x30\x57\x16\x97\x62\x4e\x0a\x30\x02\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x2d\x50\x75\x74\x73\x20\x74\x68\x65\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x20\x6f\x6e\x20\x61\x20\x44\x72\x61\x77\x69\x6e\x67\x20\x73\x68\ +\x65\x65\x74\x2e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x44\ +\x72\x61\x77\x69\x6e\x67\x01\x03\x00\x00\x00\x04\x7d\xe8\x8f\x2f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\ +\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\ +\x00\x00\x0e\x7d\xe8\x8f\x2f\x4f\x7f\x75\x28\x4e\x2d\x72\x69\x4e\ +\xf6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x45\x64\x69\x74\x73\ +\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\ +\x63\x74\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x45\x64\x69\ +\x74\x01\x03\x00\x00\x00\x06\x5b\x8c\x62\x10\x7d\xda\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0b\x46\x69\x6e\x69\x73\x68\x20\x6c\x69\ +\x6e\x65\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\ +\x69\x73\x68\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x10\x5b\x8c\x62\ +\x10\x7d\xda\x80\x0c\x4e\x0d\x95\x89\x54\x08\x5b\x83\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x22\x46\x69\x6e\x69\x73\x68\x65\x73\x20\ +\x61\x20\x6c\x69\x6e\x65\x20\x77\x69\x74\x68\x6f\x75\x74\x20\x63\ +\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\x07\x00\x00\x00\x10\x44\x72\ +\x61\x66\x74\x5f\x46\x69\x6e\x69\x73\x68\x4c\x69\x6e\x65\x01\x03\ +\x00\x00\x00\x38\x52\x75\x5e\xfa\x00\x20\x00\x32\x9e\xde\x7d\xda\ +\x30\x02\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x20\x93\x75\x53\xef\ +\x5c\x0d\x9f\x4a\xff\x0c\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\ +\x00\x20\x93\x75\x6b\x63\x4e\xa4\x96\x50\x52\x36\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x38\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ +\x32\x2d\x70\x6f\x69\x6e\x74\x20\x6c\x69\x6e\x65\x2e\x20\x43\x54\ +\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\ +\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\ +\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4c\x69\x6e\x65\x01\x03\x00\ +\x00\x00\x02\x7d\xda\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4c\ +\x69\x6e\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4c\x69\ +\x6e\x65\x01\x03\x00\x00\x00\x04\x79\xfb\x52\xd5\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x4d\x6f\x76\x65\x07\x00\x00\x00\x0a\x44\ +\x72\x61\x66\x74\x5f\x4d\x6f\x76\x65\x01\x03\x00\x00\x00\x4c\x00\ +\x32\x9e\xde\x4e\x4b\x95\x93\x79\xfb\x52\xd5\x90\x78\x53\xd6\x76\ +\x84\x72\x69\x4e\xf6\x30\x02\x63\x09\x00\x43\x00\x54\x00\x52\x00\ +\x4c\x00\x20\x8c\xbc\x9f\x4a\xff\x0c\x63\x09\x00\x53\x00\x48\x00\ +\x49\x00\x46\x00\x54\x00\x20\x6b\x63\x4e\xa4\xff\x0c\x63\x09\x00\ +\x41\x00\x4c\x00\x54\x00\x20\x89\x07\x88\xfd\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x5a\x4d\x6f\x76\x65\x73\x20\x74\x68\x65\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x62\x65\x74\x77\x65\x65\x6e\x20\x32\x20\x70\x6f\x69\x6e\x74\x73\ +\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\ +\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\ +\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\ +\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4d\x6f\x76\x65\x01\x03\ +\x00\x00\x00\x08\x50\x4f\x79\xfb\x89\x07\x88\xfd\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\ +\x0c\x44\x72\x61\x66\x74\x5f\x4f\x66\x66\x73\x65\x74\x01\x03\x00\ +\x00\x00\x48\x50\x4f\x79\xfb\x89\x07\x88\xfd\x4f\x7f\x75\x28\x4e\ +\x2d\x72\x69\x4e\xf6\x30\x02\x63\x09\x00\x43\x00\x74\x00\x72\x00\ +\x6c\x00\x20\x8c\xbc\x9f\x4a\xff\x0c\x63\x09\x00\x53\x00\x48\x00\ +\x49\x00\x46\x00\x54\x00\x20\x6b\x63\x4e\xa4\xff\x0c\x63\x09\x00\ +\x41\x00\x4c\x00\x54\x00\x20\x89\x07\x88\xfd\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x48\x4f\x66\x66\x73\x65\x74\x73\x20\x74\x68\x65\ +\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x2e\x20\ +\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\ +\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\ +\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\ +\x00\x0c\x44\x72\x61\x66\x74\x5f\x4f\x66\x66\x73\x65\x74\x01\x03\ +\x00\x00\x00\x0e\x5e\xfa\x7a\xcb\x4e\x00\x50\x0b\x9e\xde\x72\x69\ +\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x6f\x62\x6a\x65\ +\x63\x74\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x50\x6f\x69\ +\x6e\x74\x01\x03\x00\x00\x00\x02\x9e\xde\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x0b\x44\x72\ +\x61\x66\x74\x5f\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x32\x52\ +\x75\x5e\xfa\x6b\x63\x59\x1a\x90\x8a\x5f\x62\x30\x02\x63\x09\x00\ +\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x8c\xbc\x9f\x4a\xff\x0c\x63\ +\x09\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x6b\x63\x4e\ +\xa4\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3b\x43\x72\x65\x61\x74\ +\x65\x73\x20\x61\x20\x72\x65\x67\x75\x6c\x61\x72\x20\x70\x6f\x6c\ +\x79\x67\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ +\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\ +\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\ +\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\x03\x00\x00\x00\x06\x59\x1a\ +\x90\x8a\x5f\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x50\x6f\ +\x6c\x79\x67\x6f\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\ +\x50\x6f\x6c\x79\x67\x6f\x6e\x01\x03\x00\x00\x00\x22\x52\x75\x5e\ +\xfa\x00\x20\x00\x32\x00\x20\x9e\xde\x77\xe9\x5f\x62\x30\x02\x63\ +\x09\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x20\x8c\xbc\x9f\x4a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x29\x43\x72\x65\x61\x74\x65\x73\ +\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\x74\x20\x72\x65\x63\x74\x61\ +\x6e\x67\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ +\x61\x70\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x52\x65\x63\ +\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\x04\x77\xe9\x5f\x62\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x52\x65\x63\x74\x61\x6e\ +\x67\x6c\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x52\x65\ +\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\x04\x65\xcb\x8f\ +\x49\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x6f\x74\x61\x74\ +\x65\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\ +\x74\x65\x01\x03\x00\x00\x00\x48\x65\xcb\x8f\x49\x62\x40\x90\x78\ +\x76\x84\x72\x69\x4e\xf6\x30\x02\x63\x09\x00\x43\x00\x54\x00\x52\ +\x00\x4c\x00\x20\x8c\xbc\x9f\x4a\xff\x0c\x63\x09\x00\x53\x00\x48\ +\x00\x49\x00\x46\x00\x54\x00\x20\x6b\x63\x4e\xa4\xff\x0c\x63\x09\ +\x00\x41\x00\x4c\x00\x54\x00\x20\x52\x75\x5e\xfa\x52\x6f\x67\x2c\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x6f\x74\x61\x74\x65\ +\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\ +\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\ +\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x63\x72\ +\x65\x61\x74\x65\x73\x20\x61\x20\x63\x6f\x70\x79\x07\x00\x00\x00\ +\x0c\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\x01\x03\x00\ +\x00\x00\x04\x7e\x2e\x65\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x05\x53\x63\x61\x6c\x65\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\ +\x5f\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\x4c\x5f\x9e\x57\xfa\ +\x6e\x96\x9e\xde\x7e\x2e\x65\x3e\x90\x78\x53\xd6\x76\x84\x72\x69\ +\x4e\xf6\x30\x02\x63\x09\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\ +\x8c\xbc\x9f\x4a\xff\x0c\x63\x09\x00\x53\x00\x48\x00\x49\x00\x46\ +\x00\x54\x00\x20\x6b\x63\x4e\xa4\xff\x0c\x63\x09\x00\x41\x00\x4c\ +\x00\x54\x00\x20\x89\x07\x88\xfd\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x5c\x53\x63\x61\x6c\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x72\ +\x6f\x6d\x20\x61\x20\x62\x61\x73\x65\x20\x70\x6f\x69\x6e\x74\x2e\ +\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\ +\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\ +\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\ +\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\x01\x03\ +\x00\x00\x00\x08\x90\x78\x64\xc7\x7f\xa4\x7d\x44\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x53\x65\x6c\x65\x63\x74\x20\x67\x72\x6f\ +\x75\x70\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\ +\x65\x63\x74\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x14\x90\x78\ +\x64\xc7\x6b\x64\x7f\xa4\x7d\x44\x4e\x2d\x54\x0c\x7c\xfb\x72\x69\ +\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x53\x65\x6c\x65\ +\x63\x74\x73\x20\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x77\x69\x74\x68\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x70\x61\ +\x72\x65\x6e\x74\x73\x20\x61\x73\x20\x74\x68\x69\x73\x20\x67\x72\ +\x6f\x75\x70\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\ +\x6c\x65\x63\x74\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x1a\x90\ +\x78\x53\xd6\x4e\x00\x50\x0b\x5e\x7e\x4f\x55\x52\x75\x5e\xfa\x76\ +\x84\x5d\xe5\x4f\x5c\x5e\x73\x97\x62\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2c\x53\x65\x6c\x65\x63\x74\x20\x61\x20\x77\x6f\x72\x6b\ +\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x20\x66\x6f\x72\x20\x67\x65\ +\x6f\x6d\x65\x74\x72\x79\x20\x63\x72\x65\x61\x74\x69\x6f\x6e\x07\ +\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\ +\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x08\x90\x78\x53\xd6\x5e\ +\x73\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x65\x6c\ +\x65\x63\x74\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x44\x72\x61\ +\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x01\x03\ +\x00\x00\x00\x1a\x65\xbc\x83\x49\x57\x16\x53\xca\x7d\x20\x63\xcf\ +\x72\x69\x4e\xf6\x95\x93\x96\xd9\x54\x11\x8f\x49\x63\xdb\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x38\x43\x6f\x6e\x76\x65\x72\x74\x20\ +\x62\x69\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x61\x6c\x6c\x79\x20\ +\x62\x65\x74\x77\x65\x65\x6e\x20\x44\x72\x61\x66\x74\x20\x61\x6e\ +\x64\x20\x53\x6b\x65\x74\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x61\x70\x65\ +\x32\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\x1a\x5e\xfa\x7a\xcb\ +\x90\x78\x5b\x9a\x72\x69\x4e\xf6\x4e\x4b\x00\x32\x00\x44\x90\x20\ +\x57\x8b\x89\x96\x57\x16\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\ +\x43\x72\x65\x61\x74\x65\x73\x20\x53\x68\x61\x70\x65\x20\x32\x44\ +\x20\x76\x69\x65\x77\x73\x20\x6f\x66\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x11\x44\ +\x72\x61\x66\x74\x5f\x53\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\ +\x01\x03\x00\x00\x00\x0c\x90\x20\x57\x8b\x00\x32\x00\x44\x89\x96\ +\x57\x16\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x68\x61\x70\ +\x65\x20\x32\x44\x20\x76\x69\x65\x77\x07\x00\x00\x00\x11\x44\x72\ +\x61\x66\x74\x5f\x53\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\x01\ +\x03\x00\x00\x00\x0a\x98\x6f\x79\x3a\x5f\xeb\x90\x78\x53\x40\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x68\x6f\x77\x20\x53\x6e\ +\x61\x70\x20\x42\x61\x72\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\ +\x5f\x53\x68\x6f\x77\x53\x6e\x61\x70\x42\x61\x72\x01\x03\x00\x00\ +\x00\x12\x98\x6f\x79\x3a\x83\x49\x57\x16\x5f\xeb\x90\x78\x5d\xe5\ +\x51\x77\x52\x17\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x53\x68\ +\x6f\x77\x73\x20\x44\x72\x61\x66\x74\x20\x73\x6e\x61\x70\x20\x74\ +\x6f\x6f\x6c\x62\x61\x72\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\ +\x5f\x53\x68\x6f\x77\x53\x6e\x61\x70\x42\x61\x72\x01\x03\x00\x00\ +\x00\x1a\x52\x75\x5e\xfa\x8a\x3b\x89\xe3\x30\x02\x63\x09\x00\x43\ +\x00\x74\x00\x72\x00\x6c\x00\x20\x8c\xbc\x9f\x4a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x23\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\ +\x20\x61\x6e\x6e\x6f\x74\x61\x74\x69\x6f\x6e\x2e\x20\x43\x54\x52\ +\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x07\x00\x00\x00\x0a\x44\x72\ +\x61\x66\x74\x5f\x54\x65\x78\x74\x01\x03\x00\x00\x00\x04\x65\x87\ +\x5b\x57\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\x65\x78\x74\ +\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\x78\x74\x01\ +\x03\x00\x00\x00\x0c\x52\x07\x63\xdb\x5e\xfa\x90\x20\x6a\x21\x5f\ +\x0f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x54\x6f\x67\x67\x6c\ +\x65\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x69\x6f\x6e\x20\x4d\x6f\ +\x64\x65\x07\x00\x00\x00\x1c\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\ +\x67\x6c\x65\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x4d\ +\x6f\x64\x65\x01\x03\x00\x00\x00\x1a\x52\x07\x63\xdb\x4e\x0b\x4e\ +\x00\x50\x0b\x72\x69\x4e\xf6\x76\x84\x5e\xfa\x90\x20\x6a\x21\x5f\ +\x0f\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x54\x6f\x67\ +\x67\x6c\x65\x73\x20\x74\x68\x65\x20\x43\x6f\x6e\x73\x74\x72\x75\ +\x63\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x65\x20\x66\x6f\x72\x20\x6e\ +\x65\x78\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\ +\x1c\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\ +\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x4d\x6f\x64\x65\x01\x03\x00\ +\x00\x00\x0c\x52\x07\x63\xdb\x90\x23\x7e\x8c\x6a\x21\x5f\x0f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x6f\x67\x67\x6c\x65\x20\ +\x63\x6f\x6e\x74\x69\x6e\x75\x65\x20\x4d\x6f\x64\x65\x07\x00\x00\ +\x00\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\ +\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x18\ +\x70\xba\x4e\x0b\x4e\x00\x50\x0b\x63\x07\x4e\xe4\x52\x07\x63\xdb\ +\x90\x23\x7e\x8c\x6a\x21\x5f\x0f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x2c\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\x65\x20\x43\x6f\ +\x6e\x74\x69\x6e\x75\x65\x20\x4d\x6f\x64\x65\x20\x66\x6f\x72\x20\ +\x6e\x65\x78\x74\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x2e\x07\x00\ +\x00\x00\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\ +\x6f\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\ +\x2e\x52\x07\x63\xdb\x90\x78\x53\xd6\x72\x69\x4e\xf6\x00\x28\x7d\ +\xda\x68\x46\x54\x8c\x5e\x73\x67\x7f\x00\x2b\x90\x8a\x7d\xe3\x00\ +\x29\x4e\x4b\x95\x93\x76\x84\x98\x6f\x79\x3a\x6a\x21\x5f\x0f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x46\x53\x77\x61\x70\x73\x20\x64\ +\x69\x73\x70\x6c\x61\x79\x20\x6d\x6f\x64\x65\x20\x6f\x66\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x62\x65\x74\x77\x65\x65\x6e\x20\x77\x69\x72\x65\x66\x72\x61\x6d\ +\x65\x20\x61\x6e\x64\x20\x66\x6c\x61\x74\x6c\x69\x6e\x65\x73\x07\ +\x00\x00\x00\x17\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\ +\x44\x69\x73\x70\x6c\x61\x79\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\ +\x0c\x52\x07\x63\xdb\x98\x6f\x79\x3a\x6a\x21\x5f\x0f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x13\x54\x6f\x67\x67\x6c\x65\x20\x64\x69\ +\x73\x70\x6c\x61\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x17\x44\ +\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x44\x69\x73\x70\x6c\ +\x61\x79\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x08\x52\x07\x63\xdb\ +\x7d\xb2\x68\x3c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x54\x6f\ +\x67\x67\x6c\x65\x20\x47\x72\x69\x64\x07\x00\x00\x00\x10\x44\x72\ +\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x47\x72\x69\x64\x01\x03\ +\x00\x00\x00\x0e\x95\x8b\x00\x2f\x95\xdc\x83\x49\x57\x16\x68\x3c\ +\x7d\xda\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x54\x6f\x67\x67\ +\x6c\x65\x73\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x67\x69\ +\x64\x20\x6f\x6e\x2f\x6f\x66\x66\x07\x00\x00\x00\x10\x44\x72\x61\ +\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x47\x72\x69\x64\x01\x03\x00\ +\x00\x00\x08\x52\x07\x63\xdb\x5f\xeb\x90\x78\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0b\x54\x6f\x67\x67\x6c\x65\x20\x73\x6e\x61\x70\ +\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\ +\x65\x53\x6e\x61\x70\x01\x03\x00\x00\x00\x12\x95\x8b\x55\x5f\x62\ +\x16\x95\xdc\x95\x89\x83\x49\x57\x16\x5f\xeb\x90\x78\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1c\x54\x6f\x67\x67\x6c\x65\x73\x20\x44\ +\x72\x61\x66\x74\x20\x73\x6e\x61\x70\x20\x6f\x6e\x20\x6f\x72\x20\ +\x6f\x66\x66\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x54\x6f\ +\x67\x67\x6c\x65\x53\x6e\x61\x70\x01\x03\x00\x00\x00\x0c\x00\x54\ +\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x78\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x54\x72\x69\x6d\x65\x78\x07\x00\x00\x00\x0c\x44\ +\x72\x61\x66\x74\x5f\x54\x72\x69\x6d\x65\x78\x01\x03\x00\x00\x00\ +\x62\x4f\xee\x52\x6a\x62\x16\x5e\xf6\x5c\x55\x90\x78\x5b\x9a\x72\ +\x69\x4e\xf6\x62\x16\x5e\xf6\x5c\x55\x55\xae\x4e\x00\x97\x62\x00\ +\x2c\x00\x43\x00\x54\x00\x52\x00\x4c\x70\xba\x5f\xeb\x90\x1f\x00\ +\x2c\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x70\xba\x62\x4b\x52\ +\xd5\x96\x50\x52\x36\x70\xba\x76\xee\x52\x4d\x72\x47\x65\xb7\x62\ +\x16\x57\x82\x76\xf4\x00\x2c\x00\x41\x00\x4c\x00\x54\x70\xba\x76\ +\xf8\x53\xcd\x08\x00\x00\x00\x00\x06\x00\x00\x00\x89\x54\x72\x69\ +\x6d\x73\x20\x6f\x72\x20\x65\x78\x74\x65\x6e\x64\x73\x20\x74\x68\ +\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x2c\x20\x6f\x72\x20\x65\x78\x74\x72\x75\x64\x65\x73\x20\x73\ +\x69\x6e\x67\x6c\x65\x20\x66\x61\x63\x65\x73\x2e\x20\x43\x54\x52\ +\x4c\x20\x73\x6e\x61\x70\x73\x2c\x20\x53\x48\x49\x46\x54\x20\x63\ +\x6f\x6e\x73\x74\x72\x61\x69\x6e\x73\x20\x74\x6f\x20\x63\x75\x72\ +\x72\x65\x6e\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\x72\x20\ +\x74\x6f\x20\x6e\x6f\x72\x6d\x61\x6c\x2c\x20\x41\x4c\x54\x20\x69\ +\x6e\x76\x65\x72\x74\x73\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\ +\x5f\x54\x72\x69\x6d\x65\x78\x01\x03\x00\x00\x00\x0a\x5f\xa9\x53\ +\x9f\x4e\x0a\x4e\x00\x6b\xb5\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x11\x55\x6e\x64\x6f\x20\x6c\x61\x73\x74\x20\x73\x65\x67\x6d\x65\ +\x6e\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x55\x6e\x64\ +\x6f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x16\x5f\xa9\x53\x9f\x5d\ +\xf2\x7e\x6a\x88\xfd\x7d\xda\x76\x84\x4e\x0a\x4e\x00\x7d\xda\x6b\ +\xb5\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x55\x6e\x64\x6f\x65\ +\x73\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x64\x72\x61\x77\x6e\ +\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\ +\x6c\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\ +\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x55\x6e\x64\x6f\x4c\ +\x69\x6e\x65\x01\x03\x00\x00\x00\x3e\x5c\x07\x90\x78\x53\xd6\x76\ +\x84\x72\x69\x4e\xf6\x90\x23\x7d\x50\x62\x10\x4e\x00\x50\x0b\x72\ +\x69\x4e\xf6\xff\x0c\x62\x16\x5c\x07\x95\x89\x54\x08\x7d\xda\x62\ +\x10\x8f\x49\x63\xdb\x62\x10\x58\x6b\x5b\xe6\x97\x62\xff\x0c\x62\ +\x16\x80\x6f\x7d\x50\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x5d\x4a\x6f\x69\x6e\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\ +\x20\x6f\x6e\x65\x2c\x20\x6f\x72\x20\x63\x6f\x6e\x76\x65\x72\x74\ +\x73\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x73\x20\x74\ +\x6f\x20\x66\x69\x6c\x6c\x65\x64\x20\x66\x61\x63\x65\x73\x2c\x20\ +\x6f\x72\x20\x75\x6e\x69\x74\x65\x20\x66\x61\x63\x65\x73\x07\x00\ +\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x55\x70\x67\x72\x61\x64\x65\ +\x01\x03\x00\x00\x00\x04\x53\x47\x7d\x1a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x07\x55\x70\x67\x72\x61\x64\x65\x07\x00\x00\x00\x0d\ +\x44\x72\x61\x66\x74\x5f\x55\x70\x67\x72\x61\x64\x65\x01\x03\x00\ +\x00\x00\x40\x5e\xfa\x7a\xcb\x4e\x00\x59\x1a\x9e\xde\x83\x49\x57\ +\x16\x7d\xda\x00\x28\x00\x44\x00\x57\x00\x69\x00\x72\x00\x65\x00\ +\x29\x00\x2c\x00\x43\x00\x54\x00\x52\x00\x4c\x53\xef\x5f\xeb\x90\ +\x78\x00\x2c\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x53\xef\x96\ +\x50\x52\x36\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4c\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\ +\x70\x6f\x69\x6e\x74\x20\x44\x72\x61\x66\x74\x57\x69\x72\x65\x20\ +\x28\x44\x57\x69\x72\x65\x29\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\ +\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\ +\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\x72\ +\x61\x66\x74\x5f\x57\x69\x72\x65\x01\x03\x00\x00\x00\x0a\x00\x44\ +\x00\x57\x00\x69\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x44\x57\x69\x72\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\ +\x74\x5f\x57\x69\x72\x65\x01\x03\x00\x00\x00\x18\x80\x5a\x54\x08\ +\x7d\xda\x54\x8c\x96\xf2\x5f\x62\x7d\xda\x4e\x4b\x95\x93\x76\x84\ +\x8f\x49\x63\xdb\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x43\x6f\ +\x6e\x76\x65\x72\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x57\ +\x69\x72\x65\x20\x61\x6e\x64\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\ +\x00\x00\x00\x13\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x54\x6f\ +\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x0e\x80\x5a\x54\ +\x08\x7d\xda\x8f\x49\x96\xf2\x5f\x62\x7d\xda\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0f\x57\x69\x72\x65\x20\x74\x6f\x20\x42\x53\x70\ +\x6c\x69\x6e\x65\x07\x00\x00\x00\x13\x44\x72\x61\x66\x74\x5f\x57\ +\x69\x72\x65\x54\x6f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\ +\x00\x0a\x00\x41\x00\x6c\x00\x74\x6a\x21\x5f\x0f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x07\x41\x6c\x74\x20\x6d\x6f\x64\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x12\x66\xff\x63\xdb\x00\x53\x00\x56\x00\x47\x6a\ +\x21\x5f\x0f\x4f\x4d\x7f\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1f\x41\x6c\x74\x65\x72\x6e\x61\x74\x65\x20\x53\x56\x47\x20\x50\ +\x61\x74\x74\x65\x72\x6e\x73\x20\x6c\x6f\x63\x61\x74\x69\x6f\x6e\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x08\x6c\x38\x90\x60\x98\x6f\x79\x3a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x41\x6c\x77\x61\x79\x73\ +\x20\x73\x68\x6f\x77\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x6c\x38\x90\ +\x60\x5c\x0d\x72\x69\x4e\xf6\x5f\xeb\x90\x78\x00\x28\x53\xd6\x6d\ +\x88\x5f\xeb\x90\x78\x6a\x21\x5f\x0f\x7d\xe8\x8f\x2f\x93\x75\x00\ +\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x41\x6c\x77\x61\x79\ +\x73\x20\x73\x6e\x61\x70\x20\x74\x6f\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x28\x64\x69\x73\x61\x62\x6c\x65\x20\x73\x6e\x61\x70\x20\ +\x6d\x6f\x64\x20\x6b\x65\x79\x29\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\ +\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x41\x72\x69\x61\x6c\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x0a\x53\xcd\x65\x9c\x7d\xda\x00\x20\x00\x35\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x35\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0a\x53\xcd\x65\x9c\x7d\xda\x00\x20\ +\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\ +\x73\x6c\x61\x73\x68\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x53\ +\xcd\x65\x9c\x7d\xda\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x39\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x30\x59\x82\x67\x9c\x4f\x60\x60\xf3\x89\x81\ +\x4e\x00\x4f\x75\x53\x2f\x51\x65\xff\x08\x00\x33\x00\x44\x00\x20\ +\x97\x62\xff\x09\x76\x84\x97\x62\x57\xdf\xff\x0c\x8a\xcb\x52\xfe\ +\x90\x78\x6b\x64\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3f\ +\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x79\x6f\ +\x75\x20\x77\x61\x6e\x74\x20\x74\x68\x65\x20\x61\x72\x65\x61\x73\ +\x20\x28\x33\x44\x20\x66\x61\x63\x65\x73\x29\x20\x74\x6f\x20\x62\ +\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\x2e\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x38\x59\x82\x67\x9c\x60\xa8\x89\x81\x00\ +\x28\x4e\xe5\x00\x20\x00\x2a\x00\x20\x95\x8b\x98\x2d\xff\x09\x76\ +\x84\x67\x2a\x54\x7d\x54\x0d\x57\x16\x58\x4a\x4e\x5f\x89\x81\x4e\ +\x00\x4f\x75\x53\x2f\x51\x65\xff\x0c\x8a\xcb\x52\xfe\x90\x78\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x53\x43\x68\x65\x63\x6b\x20\x74\ +\x68\x69\x73\x20\x69\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\ +\x74\x68\x65\x20\x6e\x6f\x6e\x2d\x6e\x61\x6d\x65\x64\x20\x62\x6c\ +\x6f\x63\x6b\x73\x20\x28\x62\x65\x67\x69\x6e\x6e\x69\x6e\x67\x20\ +\x77\x69\x74\x68\x20\x61\x20\x2a\x29\x20\x74\x6f\x20\x62\x65\x20\ +\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x06\x57\x13\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x35\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x06\x57\x13\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x37\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x06\x57\x13\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x39\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0e\x98\x4f\x82\x72\x5c\x0d\x66\x20\x52\x30\x7d\xda\ +\x5b\xec\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x43\x6f\x6c\x6f\ +\x72\x20\x6d\x61\x70\x70\x65\x64\x20\x74\x6f\x20\x6c\x69\x6e\x65\ +\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x98\x4f\x82\ +\x72\x5c\x0d\x66\x20\x6a\x94\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x12\x43\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\ +\x69\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x7d\x04\x67\x5f\x6a\ +\x21\x5f\x0f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\ +\x73\x74\x72\x61\x69\x6e\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x04\x5e\xfa\x69\xcb\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x08\x5e\xfa\x69\xcb\x98\x4f\x82\x72\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x12\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\ +\x6f\x6e\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\ +\x5e\xfa\x69\xcb\x7f\xa4\x7d\x44\x54\x0d\x7a\x31\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x17\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\ +\x6f\x6e\x20\x67\x72\x6f\x75\x70\x20\x6e\x61\x6d\x65\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x08\x5e\xfa\x7a\xcb\x83\x49\x57\x16\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0f\x43\x72\x65\x61\x74\x65\x20\x53\x6b\ +\x65\x74\x63\x68\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x5e\xfa\ +\x7a\xcb\x53\xc3\x65\x78\x53\x16\x72\x69\x4e\xf6\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x19\x43\x72\x65\x61\x74\x65\x20\x70\x61\x72\ +\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x10\x00\x44\x00\x58\x00\x46\x00\x20\x68\ +\x3c\x5f\x0f\x90\x78\x98\x05\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x12\x44\x58\x46\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\ +\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x98\x10\x8a\x2d\x98\ +\x4f\x82\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x44\x65\x66\ +\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x12\x98\x10\x8a\x2d\x65\x87\x5b\x57\x54\x8c\x6a\x19\x8a\x3b\ +\x9a\xd8\x5e\xa6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x44\x65\ +\x66\x61\x75\x6c\x74\x20\x68\x65\x69\x67\x68\x74\x20\x66\x6f\x72\ +\x20\x74\x65\x78\x74\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\ +\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x98\x10\x8a\ +\x2d\x7d\xda\x5b\xec\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\ +\x65\x66\x61\x75\x6c\x74\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0a\x98\x10\x8a\x2d\x7b\xc4\x67\x2c\ +\x88\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x44\x65\x66\x61\ +\x75\x6c\x74\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x20\x73\x68\x65\ +\x65\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x98\x10\x8a\x2d\x65\x87\ +\x5b\x57\x5b\x57\x9a\xd4\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\ +\x44\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x78\x74\x20\x66\x6f\x6e\ +\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x98\x10\x8a\x2d\x65\x87\x5b\ +\x57\x9a\xd8\x5e\xa6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x44\ +\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x78\x74\x20\x68\x65\x69\x67\ +\x68\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x98\x10\x8a\x2d\x5d\xe5\ +\x4f\x5c\x5e\x73\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\ +\x44\x65\x66\x61\x75\x6c\x74\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\ +\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x6a\x19\x8a\ +\x3b\x53\xca\x5f\x15\x7d\xda\x7b\xad\x98\x2d\x6a\x23\x5f\x0f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x44\x69\x6d\x65\x6e\x73\x69\ +\x6f\x6e\x73\x20\x26\x20\x4c\x65\x61\x64\x65\x72\x20\x61\x72\x72\ +\x6f\x77\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\ +\x5c\x3a\x5e\xa6\x7c\xbe\x5e\xa6\x7b\x49\x7d\x1a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1a\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\ +\x20\x70\x72\x65\x63\x69\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x06\x00\x35\x86\x5f\x9e\xde\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\x35\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x06\x00\x37\x86\x5f\x9e\xde\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x05\x44\x6f\x74\x20\x37\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x06\x00\x39\x86\x5f\x9e\xde\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x44\x6f\x74\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x83\ +\x49\x57\x16\x4e\xcb\x97\x62\x6a\x21\x5f\x0f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x14\x44\x72\x61\x66\x74\x20\x69\x6e\x74\x65\x72\ +\x66\x61\x63\x65\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x18\x4e\xe5\x80\x5a\x54\x08\x97\x62\x7d\xb2\x68\x3c\x53\x2f\x51\ +\xfa\x00\x33\x00\x44\x72\x69\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x24\x45\x78\x70\x6f\x72\x74\x20\x33\x44\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x20\x61\x73\x20\x70\x6f\x6c\x79\x66\x61\x63\x65\ +\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x53\ +\x2f\x51\xfa\x6a\x23\x5f\x0f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0c\x45\x78\x70\x6f\x72\x74\x20\x53\x74\x79\x6c\x65\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x10\x4f\x9d\x98\x10\x8a\x2d\x50\x3c\x58\x6b\x5b\ +\xe6\x72\x69\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x46\ +\x69\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x79\x20\x64\ +\x65\x66\x61\x75\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x4e\x00\ +\x82\x2c\x83\x49\x68\x48\x8a\x2d\x5b\x9a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x16\x47\x65\x6e\x65\x72\x61\x6c\x20\x44\x72\x61\x66\ +\x74\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x08\x4e\x00\x82\x2c\x8a\x2d\x5b\x9a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\ +\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x51\x68\x74\x03\ +\x89\x07\x88\xfd\x6a\x21\x5f\x0f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x10\x47\x6c\x6f\x62\x61\x6c\x20\x63\x6f\x70\x79\x20\x6d\x6f\ +\x64\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x7d\xb2\x68\x3c\x95\x93\ +\x8d\xdd\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x47\x72\x69\x64\ +\x20\x73\x70\x61\x63\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\ +\x5c\x07\x57\x16\x5c\x64\x4f\x5c\x70\xba\x57\x16\x58\x4a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x18\x47\x72\x6f\x75\x70\x20\x6c\x61\ +\x79\x65\x72\x73\x20\x69\x6e\x74\x6f\x20\x62\x6c\x6f\x63\x6b\x73\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x42\x60\xa8\x53\xef\x65\xbc\x6b\x64\ +\x63\x07\x5b\x9a\x54\x2b\x67\x09\x00\x53\x00\x56\x00\x47\x6a\x94\ +\x4e\x4b\x76\xee\x93\x04\x00\x2c\x51\x76\x54\x2b\x67\x09\x53\xef\ +\x52\xa0\x51\x65\x6a\x19\x6e\x96\x83\x49\x57\x16\x5f\x71\x50\xcf\ +\x4e\x4b\x72\x79\x5f\xb5\x5b\x9a\x7f\xa9\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x8d\x48\x65\x72\x65\x20\x79\x6f\x75\x20\x63\x61\x6e\ +\x20\x73\x70\x65\x63\x69\x66\x79\x20\x61\x20\x64\x69\x72\x65\x63\ +\x74\x6f\x72\x79\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\ +\x53\x56\x47\x20\x66\x69\x6c\x65\x73\x20\x63\x6f\x6e\x74\x61\x69\ +\x6e\x69\x6e\x67\x20\x3c\x70\x61\x74\x74\x65\x72\x6e\x3e\x20\x64\ +\x65\x66\x69\x6e\x69\x74\x69\x6f\x6e\x73\x20\x74\x68\x61\x74\x20\ +\x63\x61\x6e\x20\x62\x65\x20\x61\x64\x64\x65\x64\x20\x74\x6f\x20\ +\x74\x68\x65\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x44\x72\x61\ +\x66\x74\x20\x68\x61\x74\x63\x68\x20\x70\x61\x74\x74\x65\x72\x6e\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x65\xbc\x4f\x7f\x75\x28\x5f\ +\x8c\x96\xb1\x85\xcf\x83\x49\x57\x16\x5f\xeb\x90\x78\x5d\xe5\x51\ +\x77\x52\x17\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x48\x69\x64\ +\x65\x20\x44\x72\x61\x66\x74\x20\x73\x6e\x61\x70\x20\x74\x6f\x6f\ +\x6c\x62\x61\x72\x20\x61\x66\x74\x65\x72\x20\x75\x73\x65\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0e\x96\xb1\x85\xcf\x83\x49\x57\x16\x5d\xe5\ +\x4f\x5c\x53\x40\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x48\x69\ +\x64\x65\x20\x44\x72\x61\x66\x74\x20\x77\x6f\x72\x6b\x62\x65\x6e\ +\x63\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x82\xe5\x52\xfe\x90\x78\ +\x00\x2c\x65\xbc\x7e\x6a\x57\x16\x66\x42\x67\x03\x98\x6f\x79\x3a\ +\x7d\xb2\x68\x3c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\x66\ +\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x20\x67\x72\x69\x64\ +\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x77\x68\x65\ +\x6e\x20\x64\x72\x61\x77\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x5c\x59\x82\x67\x9c\x52\xfe\x90\x78\x6b\x64\x90\x78\x98\x05\xff\ +\x0c\x00\x66\x00\x72\x00\x65\x00\x65\x00\x63\x00\x61\x00\x64\x00\ +\x20\x5c\x07\x56\x17\x8a\x66\x63\xa5\x54\x08\x91\xcd\x54\x08\x72\ +\x69\x4e\xf6\x52\x30\x80\x5a\x54\x08\x7d\xda\x30\x02\x8a\xcb\x6c\ +\xe8\x61\x0f\xff\x0c\x90\x19\x53\xef\x80\xfd\x97\x00\x89\x81\x4e\ +\x00\x4e\x9b\x66\x42\x95\x93\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x65\x49\x66\x20\x63\x68\x65\x63\x6b\x65\ +\x64\x2c\x20\x66\x72\x65\x65\x63\x61\x64\x20\x77\x69\x6c\x6c\x20\ +\x74\x72\x79\x20\x74\x6f\x20\x6a\x6f\x69\x6e\x74\x20\x63\x6f\x69\ +\x6e\x63\x69\x64\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x69\x6e\x74\x6f\x20\x77\x69\x72\x65\x73\x2e\x20\x42\x65\x77\x61\ +\x72\x65\x2c\x20\x74\x68\x69\x73\x20\x63\x61\x6e\x20\x74\x61\x6b\ +\x65\x20\x61\x20\x77\x68\x69\x6c\x65\x2e\x2e\x2e\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x3c\x82\xe5\x52\xfe\x90\x78\x00\x2c\x83\x49\x57\x16\ +\x68\x3c\x7d\xda\x75\x76\x83\x49\x57\x16\x5d\xe5\x4f\x5c\x53\x40\ +\x55\x5f\x52\xd5\x66\x42\x76\x86\x67\x03\x98\x6f\x79\x3a\x00\x2c\ +\x54\x26\x52\x47\x50\xc5\x89\x81\x6c\x42\x66\x42\x98\x6f\x79\x3a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x79\x49\x66\x20\x63\x68\x65\ +\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\ +\x67\x72\x69\x64\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\ +\x20\x62\x65\x20\x76\x69\x73\x69\x62\x6c\x65\x20\x77\x68\x65\x6e\ +\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x77\x6f\x72\x6b\x62\ +\x65\x6e\x63\x68\x20\x69\x73\x20\x61\x63\x74\x69\x76\x65\x2e\x20\ +\x4f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x6f\x6e\x6c\x79\x20\x77\ +\x68\x65\x6e\x20\x75\x73\x69\x6e\x67\x20\x61\x20\x63\x6f\x6d\x6d\ +\x61\x6e\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x82\xe5\x52\xfe\x90\ +\x78\x00\x2c\x75\x76\x60\xa8\x4f\x7f\x75\x28\x5f\xeb\x90\x78\x66\ +\x42\x67\x03\x98\x6f\x79\x3a\x5f\xeb\x90\x78\x5d\xe5\x51\x77\x52\ +\x17\x08\x00\x00\x00\x00\x06\x00\x00\x00\x44\x49\x66\x20\x63\x68\ +\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x53\x6e\x61\x70\x20\ +\x74\x6f\x6f\x6c\x62\x61\x72\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\ +\x73\x68\x6f\x77\x6e\x20\x77\x68\x65\x6e\x65\x76\x65\x72\x20\x79\ +\x6f\x75\x20\x75\x73\x65\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x30\x82\xe5\x52\xfe\x90\x78\x6b\x64\x98\ +\x05\x76\xee\x00\x2c\x62\x40\x67\x09\x51\x77\x97\x62\x4e\x4b\x72\ +\x69\x4e\xf6\x5c\x07\x67\x03\x4e\xe5\x00\x33\x00\x64\x80\x5a\x54\ +\x08\x97\x62\x53\x2f\x51\xfa\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x51\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x66\x61\x63\x65\ +\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x65\x78\x70\x6f\x72\x74\ +\x65\x64\x20\x61\x73\x20\x33\x64\x20\x70\x6f\x6c\x79\x66\x61\x63\ +\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4a\x59\x82\x67\x9c\x90\x19\ +\x50\x0b\x88\xab\x52\xfe\x90\x78\xff\x0c\x89\x07\x88\xfd\x6a\x21\ +\x5f\x0f\x5c\x07\x88\xab\x4f\xdd\x5b\x58\x57\x28\x63\x07\x4e\xe4\ +\x4e\x2d\xff\x0c\x54\x26\x52\x47\x63\x07\x4e\xe4\x95\x8b\x59\xcb\ +\x66\x42\x5c\x07\x7d\xad\x63\x01\x57\x28\x4e\x0d\x89\x07\x88\xfd\ +\x6a\x21\x5f\x0f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x6f\x49\x66\ +\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\ +\x2c\x20\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\ +\x20\x62\x65\x20\x6b\x65\x70\x74\x20\x61\x63\x72\x6f\x73\x73\x20\ +\x63\x6f\x6d\x6d\x61\x6e\x64\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\ +\x73\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x20\x77\x69\x6c\x6c\ +\x20\x61\x6c\x77\x61\x79\x73\x20\x73\x74\x61\x72\x74\x20\x69\x6e\ +\x20\x6e\x6f\x2d\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x1e\x82\xe5\x52\xfe\x90\x78\x00\x2c\x52\x56\x97\ +\x62\x7d\xda\x67\x03\x8f\x49\x8b\x8a\x70\xba\x7c\x21\x55\xae\x7d\ +\xda\x68\x9d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3f\x49\x66\x20\ +\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x68\x61\x74\x63\x68\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\ +\x20\x63\x6f\x6e\x76\x65\x72\x74\x65\x64\x20\x69\x6e\x74\x6f\x20\ +\x73\x69\x6d\x70\x6c\x65\x20\x77\x69\x72\x65\x73\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x40\x82\xe5\x52\xfe\x90\x78\x00\x2c\x53\x2f\x51\x65\ +\x4e\x4b\x65\x87\x5b\x57\x67\x03\x63\xa1\x75\x28\x6a\x19\x6e\x96\ +\x83\x49\x57\x16\x65\x87\x5b\x57\x5c\x3a\x5b\xf8\x4f\x86\x4e\xe3\ +\x66\xff\x00\x44\x00\x58\x00\x46\x65\x87\x4e\xf6\x4e\x2d\x76\x84\ +\x5c\x3a\x5b\xf8\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7b\x49\x66\ +\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\ +\x2c\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x65\x78\x74\x73\ +\x20\x77\x69\x6c\x6c\x20\x67\x65\x74\x20\x74\x68\x65\x20\x73\x74\ +\x61\x6e\x64\x61\x72\x64\x20\x44\x72\x61\x66\x74\x20\x74\x65\x78\ +\x74\x20\x73\x69\x7a\x65\x2c\x20\x69\x6e\x73\x74\x65\x61\x64\x20\ +\x6f\x66\x20\x74\x68\x65\x20\x73\x69\x7a\x65\x20\x74\x68\x65\x79\ +\x20\x68\x61\x76\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x44\x58\x46\ +\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x40\x59\x82\x67\x9c\x52\xfe\x90\x78\x6b\x64\x90\x78\x98\x05\xff\ +\x0c\x72\x69\x4e\xf6\x5c\x07\x4f\x9d\x98\x10\x8a\x2d\x50\x3c\x98\ +\x6f\x79\x3a\x70\xba\x58\x6b\x5b\xe6\x30\x02\x54\x26\x52\x47\xff\ +\x0c\x5b\x83\x50\x11\x5c\x07\x98\x6f\x79\x3a\x70\xba\x7d\xda\x68\ +\x46\x08\x00\x00\x00\x00\x06\x00\x00\x00\x66\x49\x66\x20\x74\x68\ +\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\ +\x61\x72\x20\x61\x73\x20\x66\x69\x6c\x6c\x65\x64\x20\x61\x73\x20\ +\x64\x65\x66\x61\x75\x6c\x74\x2e\x20\x4f\x74\x68\x65\x72\x77\x69\ +\x73\x65\x2c\x20\x74\x68\x65\x79\x20\x77\x69\x6c\x6c\x20\x61\x70\ +\x70\x65\x61\x72\x20\x61\x73\x20\x77\x69\x72\x65\x66\x72\x61\x6d\ +\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\xd0\x00\x49\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x6e\x00\ +\x6f\x00\x74\x00\x20\x00\x6f\x00\x63\x00\x63\x00\x75\x00\x72\x00\ +\x20\x00\x61\x00\x67\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x74\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\ +\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x6d\x00\x6f\x00\ +\x72\x00\x65\x00\x20\x00\x74\x00\x68\x00\x61\x00\x6e\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x64\x00\x69\x00\ +\x63\x00\x61\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6e\x00\x75\x00\ +\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x65\x00\x64\x00\x67\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x68\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\ +\x65\x63\x6b\x65\x64\x2c\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x20\ +\x77\x69\x6c\x6c\x20\x6e\x6f\x74\x20\x6f\x63\x63\x75\x72\x20\x61\ +\x67\x61\x69\x6e\x73\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\ +\x69\x74\x68\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\x74\x68\ +\x65\x20\x69\x6e\x64\x69\x63\x61\x74\x65\x64\x20\x6e\x75\x6d\x62\ +\x65\x72\x20\x6f\x66\x20\x65\x64\x67\x65\x73\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x50\x82\xe5\x52\xfe\x90\x78\x00\x2c\x5c\x07\x4e\x0d\x67\ +\x03\x98\x6f\x79\x3a\x83\x49\x57\x16\x5d\xe5\x4f\x5c\x53\x40\x00\ +\x2c\x75\x76\x62\x40\x67\x09\x76\x84\x83\x49\x57\x16\x5d\xe5\x51\ +\x77\x4e\xa6\x90\xfd\x98\x6f\x79\x3a\x65\xbc\x5e\xfa\x7b\xc9\x5d\ +\xe5\x4f\x5c\x53\x40\x76\x84\x66\x42\x50\x19\x97\x5e\x5e\x38\x67\ +\x09\x75\x28\x08\x00\x00\x00\x00\x06\x00\x00\x00\x79\x49\x66\x20\ +\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x77\x6f\x72\x6b\x62\ +\x65\x6e\x63\x68\x20\x77\x6f\x6e\x27\x74\x20\x61\x70\x70\x65\x61\ +\x72\x2e\x20\x55\x73\x65\x66\x75\x6c\x20\x73\x69\x6e\x63\x65\x20\ +\x61\x6c\x6c\x20\x6f\x66\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\ +\x20\x74\x6f\x6f\x6c\x73\x20\x61\x72\x65\x20\x61\x6c\x73\x6f\x20\ +\x69\x6e\x20\x74\x68\x65\x20\x41\x72\x63\x68\x20\x77\x6f\x72\x6b\ +\x62\x65\x6e\x63\x68\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x82\xe5\ +\x52\xfe\x90\x78\x00\x2c\x75\x76\x80\x5a\x54\x08\x7d\xda\x51\x77\ +\x67\x09\x5b\xec\x5e\xa6\x8a\x2d\x5b\x9a\x66\x42\x00\x2c\x51\x76\ +\x67\x03\x4e\xe5\x6b\x63\x78\xba\x5b\xec\x5e\xa6\x76\x84\x5c\x01\ +\x95\x89\x7d\xda\x68\x9d\x6e\x32\x67\xd3\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x75\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\ +\x68\x65\x63\x6b\x65\x64\x2c\x20\x77\x68\x65\x6e\x20\x70\x6f\x6c\ +\x79\x6c\x69\x6e\x65\x73\x20\x68\x61\x76\x65\x20\x61\x20\x77\x69\ +\x64\x74\x68\x20\x64\x65\x66\x69\x6e\x65\x64\x2c\x20\x74\x68\x65\ +\x79\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x72\x65\x6e\x64\x65\x72\ +\x65\x64\x20\x61\x73\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\ +\x65\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x63\x6f\x72\x72\ +\x65\x63\x74\x20\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x52\x59\x82\x67\x9c\x52\xfe\x90\x78\x6b\x64\x90\x78\x98\x05\xff\ +\x0c\x60\xa8\x5c\x07\x59\xcb\x7d\x42\x8c\xbc\x9f\x4a\x7e\x6a\x57\ +\x16\x66\x42\x76\x84\x62\x40\x67\x09\x72\x69\x4e\xf6\x30\x02\x54\ +\x26\x52\x47\xff\x0c\x4f\x60\x53\xea\x67\x09\x63\x09\x4f\x4f\x00\ +\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x66\x42\x67\x03\x8c\xbc\x9f\ +\x4a\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x81\x49\x66\x20\ +\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x79\x6f\x75\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\ +\x20\x73\x6e\x61\x70\x20\x74\x6f\x20\x65\x78\x69\x73\x74\x69\x6e\ +\x67\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x68\x69\x6c\x65\x20\ +\x64\x72\x61\x77\x69\x6e\x67\x2e\x20\x49\x66\x20\x6e\x6f\x74\x2c\ +\x20\x79\x6f\x75\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x73\x6e\x61\ +\x70\x70\x69\x6e\x67\x20\x6f\x6e\x6c\x79\x20\x77\x68\x65\x6e\x20\ +\x70\x72\x65\x73\x73\x69\x6e\x67\x20\x43\x54\x52\x4c\x2e\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0c\x53\x2f\x51\x65\x00\x20\x00\x2a\x57\x16\ +\x58\x4a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x49\x6d\x70\x6f\ +\x72\x74\x20\x2a\x62\x6c\x6f\x63\x6b\x73\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0e\x53\x2f\x51\x65\x00\x4f\x00\x43\x00\x41\x53\x40\x57\xdf\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x49\x6d\x70\x6f\x72\x74\ +\x20\x4f\x43\x41\x20\x61\x72\x65\x61\x73\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x14\x53\x2f\x51\x65\x52\x56\x97\x62\x7d\xda\x90\x8a\x75\x4c\ +\x70\xba\x7d\xda\x68\x9d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\ +\x49\x6d\x70\x6f\x72\x74\x20\x68\x61\x74\x63\x68\x20\x62\x6f\x75\ +\x6e\x64\x61\x72\x69\x65\x73\x20\x61\x73\x20\x77\x69\x72\x65\x73\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x08\x53\x2f\x51\x65\x91\x4d\x7f\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x49\x6d\x70\x6f\x72\x74\ +\x20\x6c\x61\x79\x6f\x75\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\ +\x53\x2f\x51\x65\x6a\x23\x5f\x0f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0c\x49\x6d\x70\x6f\x72\x74\x20\x73\x74\x79\x6c\x65\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0e\x53\x2f\x51\x65\x65\x87\x5b\x57\x54\x8c\ +\x6a\x19\x8a\x3b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x49\x6d\ +\x70\x6f\x72\x74\x20\x74\x65\x78\x74\x73\x20\x61\x6e\x64\x20\x64\ +\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x0a\x53\x2f\x51\x65\x00\x2f\x53\x2f\x51\xfa\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0d\x49\x6d\x70\x6f\x72\x74\x2f\x45\x78\x70\x6f\ +\x72\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x51\x67\x90\xe8\x7c\xbe\ +\x5e\xa6\x7b\x49\x7d\x1a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\ +\x49\x6e\x74\x65\x72\x6e\x61\x6c\x20\x70\x72\x65\x63\x69\x73\x69\ +\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\ +\x52\xa0\x51\x65\x5e\x7e\x4f\x55\x5f\x62\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0d\x4a\x6f\x69\x6e\x20\x67\x65\x6f\x6d\x65\x74\x72\ +\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x12\x5d\xe6\x50\x74\x00\x28\x00\ +\x49\x00\x53\x00\x4f\x6a\x19\x6e\x96\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x13\x4c\x65\x66\x74\x20\x28\x49\x53\x4f\x20\x73\ +\x74\x61\x6e\x64\x61\x72\x64\x29\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\ +\x00\x4d\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x6c\x00\x69\x00\x6e\ +\x00\x65\x00\x73\x00\x20\x00\x65\x00\x76\x00\x65\x00\x72\x00\x79\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x4d\x61\x69\x6e\x20\x6c\ +\x69\x6e\x65\x73\x20\x65\x76\x65\x72\x79\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x22\x4e\x3b\x7d\xda\x8f\x03\x7c\x97\x00\x2c\x72\x79\x52\x25\ +\x65\xbc\x4e\x3b\x7d\xda\x95\x93\x67\x09\x8a\x31\x59\x1a\x65\xb9\ +\x5f\x62\x66\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x4d\x61\ +\x69\x6e\x6c\x69\x6e\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\ +\x64\x72\x61\x77\x6e\x20\x74\x68\x69\x63\x6b\x65\x72\x2e\x20\x53\ +\x70\x65\x63\x69\x66\x79\x20\x68\x65\x72\x65\x20\x68\x6f\x77\x20\ +\x6d\x61\x6e\x79\x20\x73\x71\x75\x61\x72\x65\x73\x20\x62\x65\x74\ +\x77\x65\x65\x6e\x20\x6d\x61\x69\x6e\x6c\x69\x6e\x65\x73\x2e\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0e\x53\x2f\x51\x65\x65\x87\x5b\x57\x54\ +\x8c\x6a\x19\x8a\x3b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4d\ +\x61\x78\x20\x53\x70\x6c\x69\x6e\x65\x20\x53\x65\x67\x6d\x65\x6e\ +\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x90\x8a\x7d\xe3\x4e\x4b\x67\ +\x00\x59\x27\x65\x78\x91\xcf\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x17\x4d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\ +\x6f\x66\x20\x65\x64\x67\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\ +\x5f\xeb\x90\x78\x90\x8a\x7d\xe3\x67\x00\x59\x27\x53\xef\x90\x78\ +\x65\x78\x91\xcf\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x4d\x61\ +\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\ +\x65\x64\x67\x65\x73\x20\x74\x6f\x20\x62\x65\x20\x63\x6f\x6e\x73\ +\x69\x64\x65\x72\x65\x64\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x70\ +\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\x71\x21\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0a\x71\x21\xff\x08\x67\x00\x5f\xeb\xff\x09\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0e\x4e\x6f\x6e\x65\x20\x28\x66\x61\x73\ +\x74\x65\x73\x74\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x90\x1a\x5e\ +\x38\x89\x07\x88\xfd\x72\x69\x4e\xf6\x5f\x8c\x00\x2c\x67\x03\x90\ +\x78\x5b\x9a\x89\x07\x88\xfd\x80\x05\x00\x2c\x82\xe5\x52\xfe\x90\ +\x78\x6b\x64\x90\x78\x98\x05\x00\x2c\x5c\x07\x65\x39\x70\xba\x90\ +\x78\x5b\x9a\x53\x9f\x59\xcb\x72\x69\x4e\xf6\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x7f\x4e\x6f\x72\x6d\x61\x6c\x6c\x79\x2c\x20\x61\ +\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\x6e\x67\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x2c\x20\x74\x68\x65\x20\x63\x6f\x70\x69\x65\x73\ +\x20\x67\x65\x74\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x2e\x20\x49\ +\x66\x20\x74\x68\x69\x73\x20\x6f\x70\x74\x69\x6f\x6e\x20\x69\x73\ +\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x62\x61\ +\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\ +\x62\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x69\x6e\x73\x74\ +\x65\x61\x64\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x4f\x00\x43\ +\x00\x41\x00\x20\x68\x3c\x5f\x0f\x90\x78\x98\x05\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x12\x4f\x43\x41\x20\x66\x6f\x72\x6d\x61\x74\ +\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\ +\x53\x9f\x67\x09\x76\x84\x98\x4f\x82\x72\x54\x8c\x7d\xda\x5b\xec\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x4f\x72\x69\x67\x69\x6e\ +\x61\x6c\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\ +\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x53\x9f\ +\x59\xcb\x6a\x94\x00\x28\x75\x28\x65\xbc\x00\x43\x00\x41\x00\x4d\ +\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x52\x61\x77\x20\ +\x28\x66\x6f\x72\x20\x43\x41\x4d\x29\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x14\x6e\x32\x67\xd3\x5e\x36\x67\x09\x5b\xec\x5e\xa6\x4e\x4b\x80\ +\x5a\x54\x08\x7d\xda\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x52\ +\x65\x6e\x64\x65\x72\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x73\x20\ +\x77\x69\x74\x68\x20\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x02\x53\xf3\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x52\x69\ +\x67\x68\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x53\x00\x56\x00\ +\x47\x00\x20\x68\x3c\x5f\x0f\x90\x78\x98\x05\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x12\x53\x56\x47\x20\x66\x6f\x72\x6d\x61\x74\x20\ +\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x51\ +\x32\x5b\x58\x76\xee\x52\x4d\x82\x72\x5f\x69\x53\xca\x7d\xda\x5b\ +\xec\x6a\x6b\x8d\xe8\x5d\xe5\x4f\x5c\x96\x8e\x6b\xb5\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x30\x53\x61\x76\x65\x20\x63\x75\x72\x72\ +\x65\x6e\x74\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\ +\x6e\x65\x77\x69\x64\x74\x68\x20\x61\x63\x72\x6f\x73\x73\x20\x73\ +\x65\x73\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x89\ +\x07\x88\xfd\x5f\x8c\x90\x78\x5b\x9a\x53\x9f\x59\xcb\x72\x69\x4e\ +\xf6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x53\x65\x6c\x65\x63\ +\x74\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\ +\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\x6e\x67\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x12\x98\x6f\x79\x3a\x83\x49\x57\x16\x5f\xeb\x90\x78\ +\x5d\xe5\x51\x77\x52\x17\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\ +\x53\x68\x6f\x77\x20\x44\x72\x61\x66\x74\x20\x53\x6e\x61\x70\x20\ +\x74\x6f\x6f\x6c\x62\x61\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\x00\ +\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x57\x00\x6f\x00\x72\x00\ +\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x50\x00\x6c\x00\x61\x00\ +\x6e\x00\x65\x00\x20\x00\x74\x00\x72\x00\x61\x00\x63\x00\x6b\x00\ +\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\x68\x6f\ +\x77\x20\x57\x6f\x72\x6b\x69\x6e\x67\x20\x50\x6c\x61\x6e\x65\x20\ +\x74\x72\x61\x63\x6b\x65\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x65\ +\x9c\x7d\xda\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x07\x53\x6c\x61\x73\x68\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\ +\x65\x9c\x7d\xda\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x07\x53\x6c\x61\x73\x68\x20\x37\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x08\x65\x9c\x7d\xda\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x07\x53\x6c\x61\x73\x68\x20\x39\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x08\x8c\xbc\x9f\x4a\x98\x4f\x82\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0a\x53\x6e\x61\x70\x20\x63\x6f\x6c\x6f\x72\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0e\x54\x0c\x66\x42\x90\x78\x53\xd6\x76\xf8\ +\x95\xdc\x9e\xde\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x6e\ +\x61\x70\x20\x6d\x61\x78\x69\x6d\x75\x6d\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x08\x5f\xeb\x90\x78\x6a\x21\x5f\x0f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x08\x53\x6e\x61\x70\x20\x6d\x6f\x64\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x08\x64\x1c\x5c\x0b\x7b\xc4\x57\x0d\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0a\x53\x6e\x61\x70\x20\x72\x61\x6e\x67\x65\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x1e\x75\x76\x53\x2f\x51\xfa\x7d\x20\ +\x63\xcf\x66\x42\x5b\xeb\x51\x65\x00\x53\x00\x56\x00\x47\x6a\x94\ +\x68\x48\x57\x8b\x5f\x0f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\ +\x53\x74\x79\x6c\x65\x20\x6f\x66\x20\x53\x56\x47\x20\x66\x69\x6c\ +\x65\x20\x74\x6f\x20\x77\x72\x69\x74\x65\x20\x77\x68\x65\x6e\x20\ +\x65\x78\x70\x6f\x72\x74\x69\x6e\x67\x20\x61\x20\x53\x6b\x65\x74\ +\x63\x68\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x5d\xe5\x4f\x5c\x89\ +\x96\x57\x16\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x54\x61\x73\ +\x6b\x76\x69\x65\x77\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x7d\x04\x67\ +\x5f\x7d\xe8\x8f\x2f\x93\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1d\x54\x68\x65\x20\x43\x6f\x6e\x73\x74\x72\x61\x69\x6e\x69\x6e\ +\x67\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0c\x00\x61\x00\x6c\x00\x74\x7d\xe8\x8f\x2f\ +\x93\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\x20\ +\x61\x6c\x74\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x24\x8f\x49\x63\xdb\x00\x44\x00\x58\ +\x00\x46\x68\x3c\x5f\x0f\x98\x4f\x82\x72\x62\x10\x7d\xda\x5b\xec\ +\x76\x84\x98\x4f\x82\x72\x5c\x0d\x66\x20\x6a\x94\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x41\x54\x68\x65\x20\x63\x6f\x6c\x6f\x72\x20\ +\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x20\x66\x6f\x72\ +\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6e\x67\x20\x64\x78\x66\ +\x20\x63\x6f\x6c\x6f\x72\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\ +\x65\x77\x69\x64\x74\x68\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x52\ +\x75\x5e\xfa\x65\xb0\x57\x16\x97\x62\x66\x42\x4f\x7f\x75\x28\x76\ +\x84\x98\x10\x8a\x2d\x7b\xc4\x67\x2c\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x3d\x54\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x74\ +\x65\x6d\x70\x6c\x61\x74\x65\x20\x74\x6f\x20\x75\x73\x65\x20\x77\ +\x68\x65\x6e\x20\x63\x72\x65\x61\x74\x69\x6e\x67\x20\x61\x20\x6e\ +\x65\x77\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x73\x68\x65\x65\x74\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x32\x90\x19\x50\x0b\x65\x78\x5b\x57\ +\x70\xba\x5c\x0f\x65\x78\x9e\xde\x5f\x8c\x76\x84\x4f\x4d\x65\x78\ +\xff\x08\x59\x82\x00\x20\x00\x33\x00\x20\x00\x3d\x00\x20\x00\x30\ +\x00\x2e\x00\x30\x00\x30\x00\x31\xff\x09\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x4d\x54\x68\x65\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\ +\x66\x20\x64\x65\x63\x69\x6d\x61\x6c\x73\x20\x69\x6e\x20\x69\x6e\ +\x74\x65\x72\x6e\x61\x6c\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\ +\x65\x73\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x20\x28\x66\ +\x6f\x72\x20\x65\x78\x2e\x20\x33\x20\x3d\x20\x30\x2e\x30\x30\x31\ +\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x72\x79\x5b\x9a\x9e\xde\x4e\ +\x4b\x64\x1c\x5c\x0b\x53\x4a\x5f\x91\x8a\x2d\x5b\x9a\x70\xba\x00\ +\x30\x62\x16\x71\x21\x8d\xdd\x96\xe2\x00\x28\x71\x21\x96\x50\x59\ +\x27\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4e\x54\x68\x65\ +\x20\x72\x61\x64\x69\x75\x73\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\ +\x70\x69\x6e\x67\x20\x74\x6f\x20\x73\x70\x65\x63\x69\x61\x6c\x20\ +\x70\x6f\x69\x6e\x74\x73\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\x30\ +\x20\x66\x6f\x72\x20\x6e\x6f\x20\x64\x69\x73\x74\x61\x6e\x63\x65\ +\x20\x28\x69\x6e\x66\x69\x6e\x69\x74\x65\x29\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0a\x5f\xeb\x90\x78\x7d\xe8\x8f\x2f\x93\x75\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x15\x54\x68\x65\x20\x73\x6e\x61\x70\x20\ +\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x08\x68\x3c\x7d\xda\x95\x93\x8d\xdd\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x22\x54\x68\x65\x20\x73\x70\x61\x63\x69\x6e\ +\x67\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x65\x61\x63\x68\x20\x67\ +\x72\x69\x64\x20\x6c\x69\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x88\ +\x6b\x64\x70\xba\x83\x49\x57\x16\x6a\x21\x7d\x44\x4e\x4b\x4f\x7f\ +\x75\x28\x80\x05\x4e\xcb\x97\x62\x6a\x21\x5f\x0f\x00\x2c\x53\xef\ +\x57\xf7\x88\x4c\x00\x3a\x5d\xe5\x51\x77\x52\x17\x6a\x21\x5f\x0f\ +\x5c\x07\x54\x2b\x67\x09\x62\x40\x67\x09\x83\x49\x57\x16\x8a\x2d\ +\x5b\x9a\x65\xbc\x54\x04\x52\x25\x4e\x4b\x5d\xe5\x51\x77\x52\x17\ +\x00\x2c\x5d\xe5\x4f\x5c\x52\x17\x6a\x21\x5f\x0f\x52\x47\x5c\x0d\ +\x62\x40\x67\x09\x4f\x7f\x75\x28\x80\x05\x4e\xcb\x97\x62\x63\xa1\ +\x75\x28\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\ +\x5d\xe5\x4f\x5c\x89\x96\x57\x16\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\xcf\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x55\x49\ +\x20\x6d\x6f\x64\x65\x20\x69\x6e\x20\x77\x68\x69\x63\x68\x20\x74\ +\x68\x65\x20\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\x75\x6c\x65\x20\ +\x77\x69\x6c\x6c\x20\x77\x6f\x72\x6b\x3a\x20\x54\x6f\x6f\x6c\x62\ +\x61\x72\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x70\x6c\x61\ +\x63\x65\x20\x61\x6c\x6c\x20\x44\x72\x61\x66\x74\x20\x73\x65\x74\ +\x74\x69\x6e\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x65\x70\x61\x72\ +\x61\x74\x65\x20\x74\x6f\x6f\x6c\x62\x61\x72\x2c\x20\x77\x68\x69\ +\x6c\x65\x20\x74\x61\x73\x6b\x62\x61\x72\x20\x6d\x6f\x64\x65\x20\ +\x77\x69\x6c\x6c\x20\x75\x73\x65\x20\x74\x68\x65\x20\x46\x72\x65\ +\x65\x43\x41\x44\x20\x54\x61\x73\x6b\x76\x69\x65\x77\x20\x73\x79\ +\x73\x74\x65\x6d\x20\x66\x6f\x72\x20\x61\x6c\x6c\x20\x69\x74\x73\ +\x20\x75\x73\x65\x72\x20\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x6f\ +\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x22\x90\x19\x66\x2f\x5e\xfa\x69\ +\xcb\x6a\x21\x5f\x0f\x4e\x2d\x7e\x6a\x88\xfd\x72\x69\x4e\xf6\x76\ +\x84\x98\x10\x8a\x2d\x98\x4f\x82\x72\x30\x02\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x4d\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\ +\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\ +\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\x69\x6e\x67\ +\x20\x64\x72\x61\x77\x6e\x20\x77\x68\x69\x6c\x65\x20\x69\x6e\x20\ +\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x6d\x6f\x64\ +\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\xc4\x90\x19\x66\x2f\x62\x40\ +\x67\x09\x83\x49\x68\x48\x65\x87\x5b\x57\x54\x8c\x6a\x19\x8a\x3b\ +\x76\x84\x98\x10\x8a\x2d\x5b\x57\x9a\xd4\x54\x0d\x7a\x31\x30\x02\ +\x59\x82\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x22\ +\x30\x01\x98\x10\x8a\x2d\x6a\x23\x5f\x0f\x59\x82\x00\x22\x00\x73\ +\x00\x61\x00\x6e\x00\x22\x30\x01\x00\x22\x00\x73\x00\x65\x00\x72\ +\x00\x69\x00\x66\x00\x22\x62\x16\x00\x22\x00\x6d\x00\x6f\x00\x6e\ +\x00\x6f\x00\x22\x62\x16\x4e\x00\x50\x0b\x5b\xb6\x65\xcf\x00\x22\ +\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x2c\x00\x48\ +\x00\x65\x00\x6c\x00\x76\x00\x65\x00\x74\x00\x69\x00\x63\x00\x61\ +\x00\x2c\x00\x73\x00\x61\x00\x6e\x00\x73\x00\x22\x62\x16\x54\x0d\ +\x7a\x31\x76\x84\x6a\x23\x5f\x0f\x59\x82\x00\x22\x00\x61\x00\x72\ +\x00\x69\x00\x61\x00\x6c\xff\x1a\x7c\x97\x9a\xd4\x00\x22\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\xf2\x54\x68\x69\x73\x20\x69\x73\x20\ +\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x66\x6f\x6e\x74\ +\x20\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\x61\x6c\x6c\x20\x44\x72\ +\x61\x66\x74\x20\x74\x65\x78\x74\x73\x20\x61\x6e\x64\x20\x64\x69\ +\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x2e\x0a\x49\x74\x20\x63\x61\x6e\ +\x20\x62\x65\x20\x61\x20\x66\x6f\x6e\x74\x20\x6e\x61\x6d\x65\x20\ +\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\x72\x69\x61\x6c\x22\x2c\ +\x20\x61\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x73\x74\x79\x6c\x65\ +\x20\x73\x75\x63\x68\x20\x61\x73\x20\x22\x73\x61\x6e\x73\x22\x2c\ +\x20\x22\x73\x65\x72\x69\x66\x22\x0a\x6f\x72\x20\x22\x6d\x6f\x6e\ +\x6f\x22\x2c\x20\x6f\x72\x20\x61\x20\x66\x61\x6d\x69\x6c\x79\x20\ +\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\x72\x69\x61\x6c\x2c\x48\ +\x65\x6c\x76\x65\x74\x69\x63\x61\x2c\x73\x61\x6e\x73\x22\x20\x6f\ +\x72\x20\x61\x20\x6e\x61\x6d\x65\x20\x77\x69\x74\x68\x20\x61\x20\ +\x73\x74\x79\x6c\x65\x0a\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\ +\x72\x69\x61\x6c\x3a\x42\x6f\x6c\x64\x22\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x18\x90\x19\x66\x2f\x5e\xfa\x69\xcb\x5e\x7e\x4f\x55\x76\x84\ +\x98\x10\x8a\x2d\x7d\x44\x54\x0d\x7a\x31\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x38\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\ +\x64\x65\x66\x61\x75\x6c\x74\x20\x67\x72\x6f\x75\x70\x20\x6e\x61\ +\x6d\x65\x20\x66\x6f\x72\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\ +\x69\x6f\x6e\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x3e\x90\x19\x66\x2f\x53\x2f\x51\x65\x00\x20\x00\x53\ +\x00\x56\x00\x47\x00\x20\x6a\x94\x62\x10\x70\xba\x00\x20\x00\x46\ +\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x20\x72\x69\ +\x4e\xf6\x98\x4f\x82\x72\x76\x84\x65\xb9\x6c\xd5\x90\x78\x64\xc7\ +\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x47\x54\x68\x69\x73\ +\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x63\ +\x68\x6f\x6f\x73\x65\x64\x20\x66\x6f\x72\x20\x69\x6d\x70\x6f\x72\ +\x74\x69\x6e\x67\x20\x53\x56\x47\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x63\x6f\x6c\x6f\x72\x20\x69\x6e\x74\x6f\x20\x46\x72\x65\x65\x43\ +\x41\x44\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x90\x90\x19\x66\x2f\x53\ +\x2f\x51\x65\x62\x16\x8f\x49\x8b\x6f\x00\x20\x00\x44\x00\x58\x00\ +\x46\x6a\x94\x62\x10\x70\xba\x00\x20\x00\x46\x00\x72\x00\x65\x00\ +\x65\x00\x43\x00\x41\x00\x44\x00\x20\x72\x69\x4e\xf6\x98\x4f\x82\ +\x72\x76\x84\x65\xb9\x6c\xd5\x90\x78\x64\xc7\x30\x02\x59\x82\x67\ +\x9c\x90\x78\x75\x28\x82\x72\x5f\x69\x5c\x0d\x66\x20\xff\x0c\x60\ +\xa8\x5f\xc5\x98\x08\x90\x78\x64\xc7\x4e\x00\x50\x0b\x98\x4f\x82\ +\x72\x5c\x0d\x66\x20\x6a\x94\xff\x0c\x53\x05\x54\x2b\x4e\x00\x50\ +\x0b\x5c\x07\x98\x4f\x82\x72\x8f\x49\x63\xdb\x62\x10\x7d\xda\x5b\ +\xec\x76\x84\x8f\x49\x63\xdb\x88\x68\x30\x02\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\xe3\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\ +\x20\x6d\x65\x74\x68\x6f\x64\x20\x63\x68\x6f\x6f\x73\x65\x64\x20\ +\x66\x6f\x72\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\x6f\x72\ +\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6e\x67\x20\x44\x58\x46\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x63\x6f\x6c\x6f\x72\x20\x69\x6e\ +\x74\x6f\x20\x46\x72\x65\x65\x43\x41\x44\x2e\x20\x0a\x49\x66\x20\ +\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x69\x73\ +\x20\x63\x68\x6f\x6f\x73\x65\x64\x2c\x20\x79\x6f\x75\x20\x6d\x75\ +\x73\x74\x20\x63\x68\x6f\x6f\x73\x65\x20\x61\x20\x63\x6f\x6c\x6f\ +\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x20\x63\ +\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x61\x20\x74\x72\x61\x6e\ +\x73\x6c\x61\x74\x69\x6f\x6e\x20\x74\x61\x62\x6c\x65\x20\x74\x68\ +\x61\x74\x20\x77\x69\x6c\x6c\x20\x63\x6f\x6e\x76\x65\x72\x74\x20\ +\x63\x6f\x6c\x6f\x72\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\x65\ +\x77\x69\x64\x74\x68\x73\x2e\x0a\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\ +\x75\x76\x5c\x3a\x5e\xa6\x70\xba\x57\x82\x76\xf4\x66\x42\x00\x2c\ +\x6b\x64\x70\xba\x5c\x3a\x5e\xa6\x65\x87\x5b\x57\x65\xb9\x54\x11\ +\x00\x2c\x98\x10\x8a\x2d\x70\xba\x5d\xe6\x4e\x14\x70\xba\x00\x49\ +\x00\x53\x00\x4f\x6a\x19\x6e\x96\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x7e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6f\x72\ +\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\ +\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x20\x74\x65\x78\x74\x73\ +\x20\x77\x68\x65\x6e\x20\x74\x68\x6f\x73\x65\x20\x64\x69\x6d\x65\ +\x6e\x73\x69\x6f\x6e\x73\x20\x61\x72\x65\x20\x76\x65\x72\x74\x69\ +\x63\x61\x6c\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x69\x73\x20\ +\x6c\x65\x66\x74\x2c\x20\x77\x68\x69\x63\x68\x20\x69\x73\x20\x74\ +\x68\x65\x20\x49\x53\x4f\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x2e\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x3c\x90\x19\x66\x2f\x90\x0f\x90\x4e\ +\x51\x6c\x5d\xee\x51\xfd\x65\x78\x76\x84\x4f\x7f\x75\x28\x50\x3c\ +\x30\x02\x4f\x4e\x65\xbc\x6b\x64\x50\x3c\x66\x42\x4e\x0d\x54\x0c\ +\x76\x84\x50\x3c\x5c\x07\x88\xab\x89\x96\x70\xba\x76\xf8\x54\x0c\ +\x50\x3c\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7b\x54\x68\ +\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x76\x61\x6c\x75\x65\x20\ +\x75\x73\x65\x64\x20\x62\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\ +\x73\x20\x74\x68\x61\x74\x20\x75\x73\x65\x20\x61\x20\x74\x6f\x6c\ +\x65\x72\x61\x6e\x63\x65\x2e\x0a\x56\x61\x6c\x75\x65\x73\x20\x77\ +\x69\x74\x68\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x63\x65\x73\x20\ +\x62\x65\x6c\x6f\x77\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\ +\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x74\x72\x65\x61\x74\x65\x64\ +\x20\x61\x73\x20\x73\x61\x6d\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x04\x51\x6c\x5d\xee\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\ +\x6f\x6c\x65\x72\x61\x6e\x63\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\ +\x5d\xe5\x51\x77\x52\x17\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ +\x54\x6f\x6f\x6c\x62\x61\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x8f\ +\x49\x63\xdb\x76\x7d\x7d\xda\x82\x72\x5f\x69\x70\xba\x9e\xd1\x82\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x54\x72\x61\x6e\x73\ +\x6c\x61\x74\x65\x20\x77\x68\x69\x74\x65\x20\x6c\x69\x6e\x65\x20\ +\x63\x6f\x6c\x6f\x72\x20\x74\x6f\x20\x62\x6c\x61\x63\x6b\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x16\x8f\x49\x63\xdb\x00\x28\x75\x28\x65\xbc\ +\x52\x17\x53\x70\x54\x8c\x98\x6f\x79\x3a\x00\x29\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x20\x54\x72\x61\x6e\x73\x6c\x61\x74\x65\x64\ +\x20\x28\x66\x6f\x72\x20\x70\x72\x69\x6e\x74\x20\x26\x20\x64\x69\ +\x73\x70\x6c\x61\x79\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x4f\x7f\ +\x75\x28\x98\x10\x8a\x2d\x98\x4f\x82\x72\x54\x8c\x7d\xda\x5b\xec\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x55\x73\x65\x20\x64\x65\ +\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\ +\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x08\x4f\x7f\x75\x28\x7d\xb2\x68\x3c\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x55\x73\x65\x20\x67\x72\x69\x64\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x10\x65\x87\x5b\x57\x63\xa1\x75\x28\x6a\x19\x6e\x96\x5c\ +\x3a\x5b\xf8\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x55\x73\x65\ +\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x66\x6f\x6e\x74\x20\x73\ +\x69\x7a\x65\x20\x66\x6f\x72\x20\x74\x65\x78\x74\x73\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x10\x57\x82\x76\xf4\x5c\x3a\x5e\xa6\x65\x87\x5b\ +\x57\x65\xb9\x54\x11\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x56\ +\x65\x72\x74\x69\x63\x61\x6c\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\ +\x6e\x73\x20\x74\x65\x78\x74\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\ +\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x75\x76\x53\x2f\x51\ +\xfa\x00\x53\x00\x56\x00\x44\x89\x96\x57\x16\x66\x42\x00\x2c\x70\ +\xba\x4f\x7f\x53\xef\x65\xbc\x76\x7d\x82\x72\x80\xcc\x66\x6f\x5b\ +\xb9\x66\x13\x95\xb1\x8b\x80\x00\x2c\x5c\x07\x62\x40\x67\x09\x76\ +\x7d\x7d\xda\x4e\xe5\x9e\xd1\x82\x72\x54\x48\x73\xfe\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x73\x57\x68\x65\x6e\x20\x65\x78\x70\x6f\ +\x72\x74\x69\x6e\x67\x20\x53\x56\x47\x20\x76\x69\x65\x77\x73\x2c\ +\x20\x6d\x61\x6b\x65\x20\x61\x6c\x6c\x20\x77\x68\x69\x74\x65\x20\ +\x6c\x69\x6e\x65\x77\x6f\x72\x6b\x20\x61\x70\x70\x65\x61\x72\x20\ +\x69\x6e\x20\x62\x6c\x61\x63\x6b\x2c\x20\x66\x6f\x72\x20\x62\x65\ +\x74\x74\x65\x72\x20\x72\x65\x61\x64\x61\x62\x69\x6c\x69\x74\x79\ +\x20\x61\x67\x61\x69\x6e\x73\x74\x20\x77\x68\x69\x74\x65\x20\x62\ +\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x73\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x7a\x75\x76\x96\xf2\x5f\x62\x7d\xda\x53\x2f\x51\xfa\x70\xba\ +\x00\x20\x00\x44\x00\x58\x00\x46\xff\x0c\x5b\x83\x50\x11\x5c\x07\ +\x8f\x49\x63\xdb\x70\xba\x80\x5a\x54\x08\x7d\xda\x30\x02\x90\x19\ +\x50\x0b\x50\x3c\x66\x2f\x80\x5a\x54\x08\x7d\xda\x6b\xcf\x50\x0b\ +\x7d\xda\x6b\xb5\x76\x84\x67\x00\x59\x27\x95\x77\x5e\xa6\xff\x0c\ +\x59\x82\x67\x9c\x50\x3c\x70\xba\x00\x30\xff\x0c\x52\x47\x65\x74\ +\x68\x9d\x96\xf2\x5f\x62\x7d\xda\x5c\x07\x88\xab\x89\x96\x70\xba\ +\x4e\x00\x68\x9d\x76\xf4\x7d\xda\x6b\xb5\x30\x02\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\xc2\x57\x68\x65\x6e\x20\x65\x78\x70\x6f\x72\ +\x74\x69\x6e\x67\x20\x73\x70\x6c\x69\x6e\x65\x73\x20\x74\x6f\x20\ +\x44\x58\x46\x2c\x20\x74\x68\x65\x79\x20\x61\x72\x65\x20\x74\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x65\x64\x20\x69\x6e\x20\x70\x6f\x6c\ +\x79\x6c\x69\x6e\x65\x73\x2e\x20\x54\x68\x69\x73\x20\x76\x61\x6c\ +\x75\x65\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\ +\x6d\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x65\x61\x63\x68\ +\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\ +\x20\x73\x65\x67\x6d\x65\x6e\x74\x73\x2e\x20\x49\x66\x20\x30\x2c\ +\x20\x74\x68\x65\x6e\x20\x74\x68\x65\x20\x77\x68\x6f\x6c\x65\x20\ +\x73\x70\x6c\x69\x6e\x65\x20\x69\x73\x20\x74\x72\x65\x61\x74\x65\ +\x64\x20\x61\x73\x20\x61\x20\x73\x74\x72\x61\x69\x67\x68\x74\x20\ +\x73\x65\x67\x6d\x65\x6e\x74\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\ +\x00\x58\x00\x59\x00\x20\xff\x08\x4e\x0a\xff\x09\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x08\x58\x59\x20\x28\x54\x6f\x70\x29\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0e\x00\x58\x00\x5a\x00\x20\x00\x28\x6b\x63\ +\x97\x62\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x58\x5a\ +\x20\x28\x46\x72\x6f\x6e\x74\x29\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\ +\x00\x59\x00\x5a\xff\x08\x50\x74\x97\x62\xff\x09\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x59\x5a\x20\x28\x53\x69\x64\x65\x29\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x08\x00\x61\x00\x6c\x00\x74\x93\x75\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x03\x61\x6c\x74\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x28\x59\x82\x67\x9c\x60\xa8\x89\x81\x4f\x7f\x75\x28\ +\x5d\xe5\x51\x77\x52\x17\x98\x10\x8a\x2d\x98\x4f\x82\x72\x00\x2f\ +\x7d\xda\x5b\xec\xff\x0c\x8a\xcb\x52\xfe\x90\x78\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x4d\x63\x68\x65\x63\x6b\x20\x74\x68\x69\x73\ +\x20\x69\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x6f\x20\ +\x75\x73\x65\x20\x74\x68\x65\x20\x63\x6f\x6c\x6f\x72\x2f\x6c\x69\ +\x6e\x65\x77\x69\x64\x74\x68\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\ +\x20\x74\x6f\x6f\x6c\x62\x61\x72\x20\x61\x73\x20\x64\x65\x66\x61\ +\x75\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x63\x00\x74\x00\ +\x72\x00\x6c\x00\x20\x93\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x63\x74\x72\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xce\x00\x69\x00\ +\x66\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\ +\x64\x00\x2c\x00\x20\x00\x61\x00\x20\x00\x77\x00\x69\x00\x64\x00\ +\x67\x00\x65\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x64\x00\x69\x00\ +\x63\x00\x61\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\ +\x6e\x00\x74\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\ +\x20\x00\x6f\x00\x72\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x61\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x70\x00\x70\x00\ +\x65\x00\x61\x00\x72\x00\x73\x00\x20\x00\x64\x00\x75\x00\x72\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x64\x00\x72\x00\x61\x00\x77\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x72\x00\ +\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x67\x69\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x61\x20\x77\x69\x64\x67\x65\x74\x20\x69\x6e\x64\x69\x63\x61\ +\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\ +\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x20\x6f\ +\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x61\x70\x70\x65\x61\ +\x72\x73\x20\x64\x75\x72\x69\x6e\x67\x20\x64\x72\x61\x77\x69\x6e\ +\x67\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x50\x82\xe5\x52\xfe\x90\x78\x6b\x64\x98\x05\x76\xee\ +\x00\x2c\x76\xf8\x54\x0c\x57\x16\x5c\x64\x4e\x4b\x72\x69\x4e\xf6\ +\x5c\x07\x67\x03\x88\xab\x65\x74\x54\x08\x81\xf3\x83\x49\x57\x16\ +\x57\x16\x58\x4a\x00\x2c\x4f\x7f\x98\x6f\x79\x3a\x52\xa0\x5f\xeb\ +\x00\x2c\x4f\x46\x53\x7b\x4f\x7f\x51\x76\x4f\xee\x6b\x63\x8b\x8a\ +\x56\xf0\x96\xe3\x08\x00\x00\x00\x00\x06\x00\x00\x00\x93\x69\x66\ +\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\ +\x2c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\ +\x68\x65\x20\x73\x61\x6d\x65\x20\x6c\x61\x79\x65\x72\x73\x20\x77\ +\x69\x6c\x6c\x20\x62\x65\x20\x6a\x6f\x69\x6e\x65\x64\x20\x69\x6e\ +\x74\x6f\x20\x44\x72\x61\x66\x74\x20\x42\x6c\x6f\x63\x6b\x73\x2c\ +\x20\x74\x75\x72\x6e\x69\x6e\x67\x20\x74\x68\x65\x20\x64\x69\x73\ +\x70\x6c\x61\x79\x20\x66\x61\x73\x74\x65\x72\x2c\x20\x62\x75\x74\ +\x20\x6d\x61\x6b\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\x6c\x65\x73\ +\x73\x20\x65\x61\x73\x69\x6c\x79\x20\x65\x64\x69\x74\x61\x62\x6c\ +\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x59\x82\x67\x9c\x52\xfe\x90\ +\x78\x6b\x64\x90\x78\x98\x05\xff\x0c\x57\x16\x7d\x19\x7a\x7a\x95\ +\x93\x76\x84\x72\x69\x4e\xf6\x4e\x5f\x5c\x07\x4e\x00\x4f\x75\x53\ +\x2f\x51\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3c\x69\x66\x20\ +\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x70\x61\x70\x65\x72\x20\x73\x70\x61\x63\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x69\x6d\x70\ +\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x26\x59\x82\x67\x9c\x67\x2a\x52\xfe\x90\x78\xff\x0c\x65\x87\x5b\ +\x57\x00\x2f\x59\x1a\x88\x4c\x65\x87\x5b\x57\x5c\x07\x4e\x0d\x67\ +\x03\x88\xab\x53\x2f\x51\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x34\x69\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x75\x6e\x63\x68\ +\x65\x63\x6b\x65\x64\x2c\x20\x74\x65\x78\x74\x73\x2f\x6d\x74\x65\ +\x78\x74\x73\x20\x77\x6f\x6e\x27\x74\x20\x62\x65\x20\x69\x6d\x70\ +\x6f\x72\x74\x65\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x70\x00\ +\x78\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x70\x78\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0c\x00\x73\x00\x68\x00\x69\x00\x66\x00\x74\x93\ +\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x73\x68\x69\x66\x74\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x12\x65\xb0\x72\x69\x4e\xf6\x76\x84\ +\x76\x84\x98\x10\x8a\x2d\x98\x4f\x82\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x21\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\ +\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x8c\xbc\x9f\ +\x4a\x7b\x26\x86\x5f\x76\x84\x98\x10\x8a\x2d\x98\x4f\x82\x72\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x22\x74\x68\x65\x20\x64\x65\x66\ +\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\ +\x6e\x61\x70\x20\x73\x79\x6d\x62\x6f\x6c\x73\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x10\x65\xb0\x72\x69\x4e\xf6\x76\x84\x98\x10\x8a\x2d\x7d\ +\xda\x5b\xec\x08\x00\x00\x00\x00\x06\x00\x00\x00\x25\x74\x68\x65\ +\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x6c\x69\x6e\x65\x77\x69\x64\ +\x74\x68\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x95\xdc\x95\x89\x00\x28\ +\x00\x26\x00\x43\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x26\x43\x6c\x6f\x73\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0c\x7e\x7c\x7e\x8c\x00\x28\x00\x26\x00\x43\ +\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\x43\x6f\x6e\ +\x74\x69\x6e\x75\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0c\x89\x07\x88\xfd\x00\x28\x00\x26\x00\x43\x00\ +\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x43\x6f\x70\x79\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\ +\x00\x26\x83\x49\x57\x16\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x26\x44\x72\x61\x66\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x06\x00\x26\x7d\x50\x67\x5f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x07\x26\x46\x69\x6e\x69\x73\x68\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x26\x00\ +\x4f\x00\x43\x00\x43\x57\x8b\x5f\x0f\x53\x70\x52\x37\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x11\x26\x4f\x43\x43\x2d\x73\x74\x79\x6c\ +\x65\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0c\x76\xf8\x5c\x0d\x00\x28\x00\x26\ +\x00\x52\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\x52\ +\x65\x6c\x61\x74\x69\x76\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0c\x5f\xa9\x53\x9f\x00\x28\x00\x26\x00\ +\x55\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x55\x6e\ +\x64\x6f\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x04\x00\x26\x64\xe6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x26\x57\x69\x70\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0c\x55\x5f\x52\xd5\x83\x49\x68\x48\x63\x07\x4e\ +\xe4\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x41\x63\x74\x69\x76\ +\x65\x20\x44\x72\x61\x66\x74\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x4f\ +\x7f\x75\x28\x4e\x2d\x76\x84\x72\x69\x4e\xf6\x5f\xc5\x98\x08\x67\ +\x09\x51\x69\x50\x0b\x4e\xe5\x4e\x0a\x76\x84\x9e\xde\x00\x2f\x7b\ +\xc0\x9e\xde\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x41\x63\x74\ +\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x6d\x75\x73\x74\x20\ +\x68\x61\x76\x65\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\x74\ +\x77\x6f\x20\x70\x6f\x69\x6e\x74\x73\x2f\x6e\x6f\x64\x65\x73\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\ +\x65\xbc\x76\xee\x52\x4d\x72\x69\x4e\xf6\x4e\x2d\x58\x9e\x52\xa0\ +\x9e\xde\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x41\x64\x64\x20\ +\x70\x6f\x69\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x63\x75\ +\x72\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x5b\x54\x5f\x91\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x41\x70\x65\x72\x74\x75\ +\x72\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x08\x5b\x54\x5f\x91\x89\xd2\xff\x1a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x41\x70\x65\x72\x74\x75\x72\x65\x20\x61\x6e\x67\ +\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0e\x61\xc9\x75\x28\x65\xbc\x62\x40\x90\x78\x72\x69\ +\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x41\x70\x70\x6c\ +\x79\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x02\x5f\x27\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x03\x41\x72\x63\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0e\x00\x42\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x42\x53\x70\x6c\ +\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x12\x71\x21\x6c\xd5\x98\x6f\x79\x3a\x6b\x64\x72\x69\x4e\ +\xf6\x98\x5e\x57\x8b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x43\ +\x61\x6e\x6e\x6f\x74\x20\x6f\x66\x66\x73\x65\x74\x20\x74\x68\x69\ +\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x4e\x2d\ +\x5f\xc3\x00\x20\x00\x58\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\ +\x43\x65\x6e\x74\x65\x72\x20\x58\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x08\x65\x39\x8b\x8a\x6a\x23\x5f\x0f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x68\x61\x6e\x67\x65\ +\x20\x53\x74\x79\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x32\x82\xe5\x89\x81\x72\x69\x4e\xf6\x98\x6f\ +\x79\x3a\x58\x6b\x6e\xff\x8a\xcb\x9e\xde\x90\x78\x6b\x64\x98\x05\ +\x76\xee\x00\x2c\x54\x26\x52\x47\x51\x76\x5c\x07\x98\x6f\x79\x3a\ +\x70\xba\x7d\xda\x67\xb6\x69\xcb\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x5b\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\ +\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x73\x68\x6f\x75\x6c\ +\x64\x20\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x66\x69\x6c\x6c\ +\x65\x64\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x69\x74\ +\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\ +\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\x28\x69\x29\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\x57\x13\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\x69\x72\x63\x6c\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x8a\ +\x3b\x91\xcb\x5d\xe5\x51\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0d\x43\x6f\x6e\x74\x65\x78\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x67\x00\ +\x5f\x8c\x4e\x00\x9e\xde\x76\x84\x76\xf8\x5c\x0d\x62\x16\x7d\x55\ +\x5c\x0d\x57\x50\x6a\x19\xff\x08\x7a\x7a\x95\x93\xff\x09\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x36\x43\x6f\x6f\x72\x64\x69\x6e\x61\ +\x74\x65\x73\x20\x72\x65\x6c\x61\x74\x69\x76\x65\x20\x74\x6f\x20\ +\x6c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x6f\x72\x20\x61\x62\ +\x73\x6f\x6c\x75\x74\x65\x20\x28\x53\x50\x41\x43\x45\x29\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x89\x07\ +\x88\xfd\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x43\x6f\x70\x79\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\ +\x71\x21\x6c\xd5\x66\xf4\x65\xb0\x72\x69\x4e\xf6\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1f\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x75\ +\x70\x67\x72\x61\x64\x65\x20\x74\x68\x65\x73\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x08\x5e\xfa\x7a\xcb\x5f\x27\x7d\xda\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x43\x72\x65\x61\x74\x65\x20\x41\x72\ +\x63\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x12\x5e\xfa\x7a\xcb\x00\x42\x00\x53\x00\x70\x00\x6c\x00\x69\x00\ +\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x43\x72\x65\ +\x61\x74\x65\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\x5e\xfa\x7a\xcb\x57\ +\x13\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x72\x65\x61\x74\ +\x65\x20\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0e\x5e\xfa\x7a\xcb\x00\x44\x00\x57\ +\x00\x69\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x43\x72\x65\x61\x74\x65\x20\x44\x57\x69\x72\x65\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x5e\xfa\x7a\xcb\ +\x5c\x3a\x5e\xa6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\ +\x65\x61\x74\x65\x20\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x5e\xfa\ +\x7a\xcb\x59\x1a\x90\x8a\x5f\x62\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0e\x43\x72\x65\x61\x74\x65\x20\x50\x6f\x6c\x79\x67\x6f\x6e\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\ +\x5e\xfa\x7a\xcb\x77\xe9\x57\x8b\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x10\x43\x72\x65\x61\x74\x65\x20\x52\x65\x63\x74\x61\x6e\x67\ +\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x08\x5e\xfa\x7a\xcb\x65\x87\x5b\x57\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x54\x65\x78\x74\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\ +\x44\x00\x57\x00\x69\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x05\x44\x57\x69\x72\x65\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x10\x00\x44\x00\x57\x00\x69\x00\x72\ +\x00\x65\x5d\xf2\x5c\x01\x95\x89\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x16\x44\x57\x69\x72\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\ +\x20\x63\x6c\x6f\x73\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x04\x6a\x19\x8a\x3b\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x8d\ +\xdd\x96\xe2\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x44\x69\x73\ +\x74\x61\x6e\x63\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x12\x4e\x0d\x62\x95\x5c\x04\x9e\xde\x52\x30\x7e\ +\x6a\x57\x16\x5e\x73\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x28\x44\x6f\x20\x6e\x6f\x74\x20\x70\x72\x6f\x6a\x65\x63\x74\x20\ +\x70\x6f\x69\x6e\x74\x73\x20\x74\x6f\x20\x61\x20\x64\x72\x61\x77\ +\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x83\x49\x57\x16\x5e\xfa\x7a\ +\xcb\x5d\xe5\x51\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x44\ +\x72\x61\x66\x74\x20\x63\x72\x65\x61\x74\x69\x6f\x6e\x20\x74\x6f\ +\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0c\x83\x49\x57\x16\x4f\xee\x65\x39\x5d\xe5\x51\x77\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x18\x44\x72\x61\x66\x74\x20\x6d\ +\x6f\x64\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x74\x6f\x6f\x6c\ +\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x0c\x90\x8a\x7d\xe3\x67\x2a\x76\xf8\x4e\xa4\x00\x21\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x45\x64\x67\x65\x73\x20\x64\x6f\x6e\ +\x27\x74\x20\x69\x6e\x74\x65\x72\x73\x65\x63\x74\x21\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x7d\xe8\ +\x8f\x2f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\ +\x00\x26\x51\x45\x58\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ +\x46\x26\x69\x6c\x6c\x65\x64\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x06\x97\x62\x98\x4f\x82\x72\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x46\x61\x63\x65\x20\x43\x6f\x6c\x6f\ +\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x16\x5b\x8c\x62\x10\x4e\x26\x95\x89\x54\x08\x75\x76\x52\x4d\x7d\ +\xda\xff\x08\x00\x43\xff\x09\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x28\x46\x69\x6e\x69\x73\x68\x65\x73\x20\x61\x6e\x64\x20\x63\x6c\ +\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\ +\x20\x6c\x69\x6e\x65\x20\x28\x43\x29\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x7d\x50\x67\x5f\x76\xee\x52\ +\x4d\x7e\x6a\x57\x16\x62\x16\x7d\xe8\x8f\x2f\x7a\x0b\x5e\x8f\x00\ +\x28\x00\x46\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x46\ +\x69\x6e\x69\x73\x68\x65\x73\x20\x74\x68\x65\x20\x63\x75\x72\x72\ +\x65\x6e\x74\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x6f\x72\x20\x65\ +\x64\x69\x74\x69\x6e\x67\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\ +\x20\x28\x46\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x08\x5b\x57\x9a\xd4\x59\x27\x5c\x0f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x46\x6f\x6e\x74\x20\x53\x69\x7a\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x62\ +\x7e\x52\x30\x4e\x00\x57\x13\x5f\x62\x90\x8a\x7d\xe3\x00\x3a\x75\ +\x22\x75\x1f\x57\x13\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x46\ +\x6f\x75\x6e\x64\x20\x31\x20\x63\x69\x72\x63\x75\x6c\x61\x72\x20\ +\x65\x64\x67\x65\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x63\ +\x69\x72\x63\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x1e\x62\x7e\x52\x30\x4e\x00\x5c\x01\x95\x89\ +\x7d\x20\x63\xcf\x72\x69\x4e\xf6\x00\x3a\x75\x31\x51\x76\x75\x22\ +\x75\x1f\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x46\x6f\ +\x75\x6e\x64\x20\x31\x20\x63\x6c\x6f\x73\x65\x64\x20\x73\x6b\x65\ +\x74\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x6d\x61\x6b\x69\ +\x6e\x67\x20\x61\x20\x66\x61\x63\x65\x20\x66\x72\x6f\x6d\x20\x69\ +\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x16\x5c\x0b\x62\x7e\x4e\x00\x97\x62\xff\x1a\x64\xf7\x53\xd6\ +\x5b\x83\x76\x84\x7d\xda\x68\x9d\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x23\x46\x6f\x75\x6e\x64\x20\x31\x20\x66\x61\x63\x65\x3a\x20\ +\x65\x78\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x69\x74\x73\x20\x77\ +\x69\x72\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x20\x62\x7e\x52\x30\x4e\x00\x50\x0b\x67\x2a\x53\ +\xc3\x65\x78\x53\x16\x72\x69\x4e\xf6\x00\x3a\x7d\xe8\x8f\x2f\x6b\ +\x64\x72\x69\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x46\ +\x6f\x75\x6e\x64\x20\x31\x20\x6e\x6f\x6e\x2d\x70\x61\x72\x61\x6d\ +\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x64\ +\x72\x61\x66\x74\x69\x66\x79\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x62\x7e\ +\x52\x30\x4e\x00\x95\x8b\x65\x3e\x90\x8a\x7d\xe3\x00\x3a\x75\x22\ +\x75\x1f\x7d\xda\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x46\x6f\ +\x75\x6e\x64\x20\x31\x20\x6f\x70\x65\x6e\x20\x65\x64\x67\x65\x3a\ +\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x6c\x69\x6e\x65\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x62\ +\x7e\x52\x30\x4e\x00\x95\x8b\x65\x3e\x7d\xda\x68\x9d\x00\x3a\x5c\ +\x07\x51\x76\x5c\x01\x95\x89\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1e\x46\x6f\x75\x6e\x64\x20\x31\x20\x6f\x70\x65\x6e\x20\x77\x69\ +\x72\x65\x3a\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x62\ +\x7e\x52\x30\x4e\x00\x53\xc3\x65\x78\x53\x16\x72\x69\x4e\xf6\x00\ +\x3a\x52\x06\x96\xe2\x51\x76\x76\xf8\x4f\x9d\x60\x27\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x35\x46\x6f\x75\x6e\x64\x20\x31\x20\x70\ +\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\ +\x3a\x20\x62\x72\x65\x61\x6b\x69\x6e\x67\x20\x69\x74\x73\x20\x64\ +\x65\x70\x65\x6e\x64\x65\x6e\x63\x69\x65\x73\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x62\x7e\x52\x30\ +\x00\x31\x53\xef\x5b\xe6\x9a\xd4\x53\x16\x72\x69\x4e\xf6\xff\x1a\ +\x5c\x07\x51\x76\x5b\xe6\x9a\xd4\x53\x16\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2d\x46\x6f\x75\x6e\x64\x20\x31\x20\x73\x6f\x6c\x69\ +\x64\x69\x66\x69\x63\x61\x62\x6c\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x3a\x20\x73\x6f\x6c\x69\x64\x69\x66\x79\x69\x6e\x67\x20\x69\x74\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x16\x62\x7e\x52\x30\x51\x69\x50\x0b\x72\x69\x4e\xf6\x00\x3a\x5c\ +\x07\x51\x76\x87\x8d\x54\x08\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1d\x46\x6f\x75\x6e\x64\x20\x32\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x62\x7e\ +\x52\x30\x51\x69\x50\x0b\x72\x69\x4e\xf6\x00\x3a\x53\xd6\x51\x76\ +\x5d\xee\x96\xc6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x46\x6f\ +\x75\x6e\x64\x20\x32\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x73\ +\x75\x62\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\ +\x62\x7e\x52\x30\x4e\x00\x5c\x01\x95\x89\x7d\xda\x68\x9d\x00\x3a\ +\x75\x22\x75\x1f\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\ +\x46\x6f\x75\x6e\x64\x20\x61\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\ +\x69\x72\x65\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x66\x61\ +\x63\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x1c\x62\x7e\x52\x30\x7f\xa4\x7d\x44\x00\x3a\x5c\x01\x95\ +\x89\x51\x67\x90\xe8\x54\x04\x95\x8b\x65\x3e\x72\x69\x4e\xf6\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x46\x6f\x75\x6e\x64\x20\x67\ +\x72\x6f\x75\x70\x73\x3a\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x65\ +\x61\x63\x68\x20\x6f\x70\x65\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x69\x6e\x73\x69\x64\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x1c\x62\x7e\x52\x30\x53\x05\x90\x84\x66\ +\xf2\x7d\xda\x4e\x4b\x72\x69\x4e\xf6\xff\x1a\x5c\x07\x51\x76\x87\ +\x8d\x54\x08\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x46\x6f\x75\ +\x6e\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x63\x6f\x6e\x74\x61\ +\x69\x6e\x69\x6e\x67\x20\x63\x75\x72\x76\x65\x73\x3a\x20\x66\x75\ +\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x50\xc5\x62\x7e\x52\x30\ +\x7d\xda\x68\x9d\x00\x3a\x63\xd0\x53\xd6\x90\x8a\x7d\xe3\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x29\x46\x6f\x75\x6e\x64\x20\x6f\x6e\ +\x6c\x79\x20\x77\x69\x72\x65\x73\x3a\x20\x65\x78\x74\x72\x61\x63\ +\x74\x69\x6e\x67\x20\x74\x68\x65\x69\x72\x20\x65\x64\x67\x65\x73\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x1a\x62\x7e\x52\x30\x65\x78\x50\x0b\x90\x8a\x7d\xe3\x00\x3a\x5c\ +\x07\x51\x76\x8f\x49\x70\xba\x7d\xda\x68\x9d\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x21\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\ +\x61\x6c\x20\x65\x64\x67\x65\x73\x3a\x20\x77\x69\x72\x69\x6e\x67\ +\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x14\x62\x7e\x52\x30\x65\x78\x50\x0b\x97\x62\ +\x00\x3a\x5c\x07\x51\x76\x52\x06\x52\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x24\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\ +\x6c\x20\x66\x61\x63\x65\x73\x3a\x20\x73\x70\x6c\x69\x74\x74\x69\ +\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x1c\x62\x7e\x52\x30\x65\x78\x50\x0b\ +\x67\x2a\x90\x23\x7d\x50\x90\x8a\x7d\xe3\x00\x3a\x5c\x07\x51\x76\ +\x7d\x44\x54\x08\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x46\x6f\ +\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6e\x6f\x6e\x2d\ +\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64\x20\x65\x64\x67\x65\x73\x3a\ +\x20\x6d\x61\x6b\x69\x6e\x67\x20\x63\x6f\x6d\x70\x6f\x75\x6e\x64\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x1c\x62\x7e\x52\x30\x65\x78\x50\x0b\x67\x2a\x8a\x2d\x5b\x9a\x72\ +\x69\x4e\xf6\x00\x3a\x88\xfd\x4f\x5c\x51\x43\x4e\xf6\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x35\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\ +\x65\x72\x61\x6c\x20\x6e\x6f\x6e\x2d\x74\x72\x65\x61\x74\x61\x62\ +\x6c\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x6d\x61\x6b\x69\ +\x6e\x67\x20\x63\x6f\x6d\x70\x6f\x75\x6e\x64\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x5c\x0b\x62\x7e\ +\x4e\x0d\x54\x0c\x76\x84\x72\x69\x4e\xf6\x62\x16\x97\x62\xff\x1a\ +\x5e\xfa\x7a\xcb\x4e\x00\x50\x0b\x97\x62\x76\x84\x53\xc3\x65\x78\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x39\x46\x6f\x75\x6e\x64\x20\ +\x73\x65\x76\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x6f\x72\x20\x66\x61\x63\x65\x73\x3a\x20\x6d\x61\x6b\x69\x6e\x67\ +\x20\x61\x20\x70\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\x66\x61\ +\x63\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x16\x62\x7e\x52\x30\x65\x78\x50\x0b\x72\x69\x4e\xf6\xff\ +\x1a\x5c\x07\x51\x76\x87\x8d\x54\x08\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x23\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x66\x75\x73\x69\x6e\x67\ +\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x1e\x62\x7e\x52\x30\x65\x78\x50\x0b\x72\x69\ +\x4e\xf6\x00\x3a\x75\x31\x7b\x2c\x4e\x00\x50\x0b\x90\x32\x88\x4c\ +\x5d\xee\x96\xc6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3b\x46\x6f\ +\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x3a\x20\x73\x75\x62\x74\x72\x61\x63\x74\x69\x6e\x67\ +\x20\x74\x68\x65\x6d\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x66\ +\x69\x72\x73\x74\x20\x6f\x6e\x65\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x26\x82\xe5\x52\xfe\x90\x78\x00\ +\x2c\x67\x03\x4e\xe5\x00\x4f\x00\x43\x00\x43\x57\x8b\x5f\x0f\x53\ +\xd6\x4e\xe3\x57\xfa\x67\x2c\x53\x70\x52\x37\x57\x8b\x5f\x0f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x49\x66\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x61\x6e\x20\x4f\x43\x43\x2d\x73\x74\x79\x6c\ +\x65\x20\x6f\x66\x66\x73\x65\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\ +\x20\x70\x65\x72\x66\x6f\x72\x6d\x65\x64\x20\x69\x6e\x73\x74\x65\ +\x61\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x63\x6c\x61\x73\x73\x69\ +\x63\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x30\x59\x82\x67\x9c\x90\x78\x53\xd6\ +\xff\x0c\x54\x7d\x4e\xe4\x5c\x07\x4e\x0d\x67\x03\x5b\x8c\x62\x10\ +\x76\xf4\x52\x30\x4f\x60\x51\x8d\x6b\x21\x63\x09\x90\x19\x50\x0b\ +\x54\x7d\x4e\xe4\x63\x09\x92\x15\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x4c\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x63\x6f\ +\x6d\x6d\x61\x6e\x64\x20\x77\x69\x6c\x6c\x20\x6e\x6f\x74\x20\x66\ +\x69\x6e\x69\x73\x68\x20\x75\x6e\x74\x69\x6c\x20\x79\x6f\x75\x20\ +\x70\x72\x65\x73\x73\x20\x74\x68\x65\x20\x63\x6f\x6d\x6d\x61\x6e\ +\x64\x20\x62\x75\x74\x74\x6f\x6e\x20\x61\x67\x61\x69\x6e\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x82\xe5\ +\x90\x78\x53\xd6\xff\x0c\x72\x69\x4e\xf6\x5c\x07\x88\xab\x89\x07\ +\x88\xfd\x80\x0c\x4e\x0d\x66\x2f\x79\xfb\x52\xd5\xff\x08\x00\x43\ +\xff\x09\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x49\x66\x20\x63\ +\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x77\x69\x6c\x6c\x20\x62\x65\x20\x63\x6f\x70\x69\x65\x64\x20\x69\ +\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x6d\x6f\x76\x65\x64\x20\ +\x28\x43\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0a\x5d\xf2\x5b\x89\x88\xdd\x5d\xe8\x96\xc6\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x10\x49\x6e\x73\x74\x61\x6c\x6c\x65\x64\ +\x20\x4d\x61\x63\x72\x6f\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x10\x88\xab\x79\xfb\x96\x64\x4e\x4b\x67\ +\x00\x5f\x8c\x4e\x00\x9e\xde\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1c\x4c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x68\x61\x73\x20\ +\x62\x65\x65\x6e\x20\x72\x65\x6d\x6f\x76\x65\x64\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\x7d\xda\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4c\x69\x6e\x65\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x7d\xda\x68\ +\x9d\x98\x4f\x82\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4c\ +\x69\x6e\x65\x20\x43\x6f\x6c\x6f\x72\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x04\x7d\xda\x5b\xec\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x4c\x69\x6e\x65\x20\x57\x69\x64\x74\ +\x68\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x04\x79\xfb\x52\xd5\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4d\ +\x6f\x76\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0a\x71\x21\x6c\xd5\x57\x28\x4e\x0b\x96\x4d\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1b\x4e\x6f\x20\x6d\x6f\x72\x65\x20\x64\ +\x6f\x77\x6e\x67\x72\x61\x64\x65\x20\x70\x6f\x73\x73\x69\x62\x6c\ +\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x10\x6b\x64\x72\x69\x4e\xf6\x71\x21\x53\xef\x75\x28\x66\xf4\ +\x65\xb0\x08\x00\x00\x00\x00\x06\x00\x00\x00\x25\x4e\x6f\x20\x75\ +\x70\x67\x72\x61\x64\x65\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\ +\x20\x66\x6f\x72\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x02\x71\x21\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\x6f\x6e\ +\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x04\x90\x8a\x65\x78\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4e\ +\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x73\x69\x64\x65\x73\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x50\x4f\ +\x79\xfb\x89\x07\x88\xfd\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x1a\x6b\xcf\x6b\x21\x53\xea\x80\xfd\x5c\x0d\ +\x4e\x00\x50\x0b\x72\x69\x4e\xf6\x50\x4f\x79\xfb\x89\x07\x88\xfd\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x4f\x66\x66\x73\x65\x74\ +\x20\x6f\x6e\x6c\x79\x20\x77\x6f\x72\x6b\x73\x20\x6f\x6e\x20\x6f\ +\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x61\x74\x20\x61\x20\x74\ +\x69\x6d\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x14\x7d\xda\x68\x9d\x67\x2a\x5e\x73\x97\x62\x53\x16\ +\x71\x21\x6c\xd5\x53\x47\x7d\x1a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x29\x4f\x6e\x65\x20\x77\x69\x72\x65\x20\x69\x73\x20\x6e\x6f\ +\x74\x20\x70\x6c\x61\x6e\x61\x72\x2c\x20\x75\x70\x67\x72\x61\x64\ +\x65\x20\x6e\x6f\x74\x20\x64\x6f\x6e\x65\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x90\x78\x53\xd6\x72\ +\x69\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x50\x69\x63\ +\x6b\x20\x4f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x1a\x90\x78\x53\xd6\x4e\x00\x50\x0b\ +\x97\x62\x4f\x86\x5b\x9a\x7f\xa9\x7e\x6a\x57\x16\x76\x84\x5e\x73\ +\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x50\x69\x63\x6b\ +\x20\x61\x20\x66\x61\x63\x65\x20\x74\x6f\x20\x64\x65\x66\x69\x6e\ +\x65\x20\x74\x68\x65\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x70\x6c\ +\x61\x6e\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0a\x90\x78\x64\xc7\x5b\x54\x5f\x91\x00\x3a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0f\x50\x69\x63\x6b\x20\x61\x70\x65\ +\x72\x74\x75\x72\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0a\x90\x78\x53\xd6\x5e\x95\x89\xd2\xff\ +\x1a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\ +\x62\x61\x73\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x90\x78\x53\xd6\ +\x57\xfa\x6e\x96\x9e\xde\xff\x1a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x11\x50\x69\x63\x6b\x20\x62\x61\x73\x65\x20\x70\x6f\x69\x6e\ +\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0c\x90\x78\x53\xd6\x4e\x2d\x5f\xc3\x9e\xde\xff\x1a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x13\x50\x69\x63\x6b\x20\x63\x65\ +\x6e\x74\x65\x72\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x90\x78\x53\xd6\ +\x8d\xdd\x96\xe2\xff\x1a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\ +\x50\x69\x63\x6b\x20\x64\x69\x73\x74\x61\x6e\x63\x65\x3a\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x90\ +\x78\x53\xd6\x7d\x42\x7d\x50\x9e\xde\xff\x1a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x10\x50\x69\x63\x6b\x20\x65\x6e\x64\x20\x70\x6f\ +\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0e\x90\x78\x53\xd6\x7b\x2c\x4e\x00\x50\x0b\x9e\ +\xde\xff\x1a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\ +\x6b\x20\x66\x69\x72\x73\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x90\ +\x78\x53\xd6\x5b\x9a\x4f\x4d\x9e\xde\xff\x1a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x6c\x6f\x63\x61\x74\x69\ +\x6f\x6e\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x90\x78\x53\xd6\x4e\x0b\ +\x4e\x00\x50\x0b\x9e\xde\xff\x0c\x62\x16\x00\x28\x00\x46\x00\x29\ +\x5b\x8c\x62\x10\x62\x16\x00\x28\x00\x43\x00\x29\x95\x89\x54\x08\ +\xff\x1a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x50\x69\x63\x6b\ +\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x2c\x20\x6f\x72\x20\ +\x28\x46\x29\x69\x6e\x69\x73\x68\x20\x6f\x72\x20\x28\x43\x29\x6c\ +\x6f\x73\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0e\x90\x78\x53\xd6\x4e\x0b\x4e\x00\x50\x0b\x9e\ +\xde\xff\x1a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\ +\x6b\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x90\x78\ +\x53\xd6\x5c\x0d\x89\xd2\x9e\xde\xff\x1a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x6f\x70\x70\x6f\x73\x69\x74\ +\x65\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x90\x78\x64\xc7\x53\x4a\x5f\ +\x91\xff\x1a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x50\x69\x63\ +\x6b\x20\x72\x61\x64\x69\x75\x73\x3a\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x90\x78\x53\xd6\x65\xcb\ +\x8f\x49\x89\xd2\x5e\xa6\xff\x1a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x15\x50\x69\x63\x6b\x20\x72\x6f\x74\x61\x74\x69\x6f\x6e\x20\ +\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0e\x90\x78\x53\xd6\x65\xcb\x8f\x49\x4e\ +\x2d\x5f\xc3\xff\x1a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x50\ +\x69\x63\x6b\x20\x72\x6f\x74\x61\x74\x69\x6f\x6e\x20\x63\x65\x6e\ +\x74\x65\x72\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0e\x90\x78\x53\xd6\x7e\x2e\x65\x3e\x6b\xd4\x4f\ +\x8b\xff\x1a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x50\x69\x63\ +\x6b\x20\x73\x63\x61\x6c\x65\x20\x66\x61\x63\x74\x6f\x72\x3a\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\ +\x90\x78\x53\xd6\x95\x8b\x59\xcb\x89\xd2\x5e\xa6\xff\x1a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\x6b\x20\x73\x74\x61\ +\x72\x74\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x90\x78\x53\xd6\x8d\x77\ +\x59\xcb\x9e\xde\xff\x1a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\ +\x50\x69\x63\x6b\x20\x73\x74\x61\x72\x74\x20\x70\x6f\x69\x6e\x74\ +\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x02\x9e\xde\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x50\x6f\ +\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x06\x59\x1a\x90\x8a\x5f\x62\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x07\x50\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x53\x4a\x5f\x91\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x52\x61\x64\x69\x75\x73\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\x57\x13\ +\x53\x4a\x5f\x91\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x61\ +\x64\x69\x75\x73\x20\x6f\x66\x20\x43\x69\x72\x63\x6c\x65\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x77\xe9\ +\x5f\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x52\x65\x63\x74\ +\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x14\x5c\x07\x9e\xde\x5f\x9e\x76\xee\x52\x4d\x72\ +\x69\x4e\xf6\x4e\x0a\x79\xfb\x96\x64\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x25\x52\x65\x6d\x6f\x76\x65\x20\x70\x6f\x69\x6e\x74\x73\ +\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\ +\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x04\x65\xcb\x8f\x49\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x52\x6f\x74\x61\x74\x65\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x7e\x2e\x65\x3e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x90\ +\x78\x64\xc7\x5e\x73\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0c\x53\x65\x6c\x65\x63\x74\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x90\x78\x64\ +\xc7\x00\x20\x00\x58\x00\x59\x00\x20\x5e\x73\x97\x62\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x58\x59\ +\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0e\x90\x78\x64\xc7\x00\x20\x00\x58\x00\x5a\ +\x5e\x73\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\ +\x6c\x65\x63\x74\x20\x58\x5a\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x90\x78\x64\ +\xc7\x00\x20\x00\x59\x00\x5a\x00\x20\x5e\x73\x97\x62\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x59\x5a\ +\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x10\x90\x78\x64\xc7\x89\x81\x79\xfb\x52\xd5\ +\x76\x84\x72\x69\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\ +\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x74\x6f\x20\x6d\x6f\x76\x65\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x18\x90\x78\x53\xd6\x4e\x00\x50\ +\x0b\x72\x69\x4e\xf6\xff\x0c\x4e\xe5\x50\x4f\x79\xfb\x89\x07\x88\ +\xfd\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x53\x65\x6c\x65\x63\ +\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x6f\ +\x66\x66\x73\x65\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x10\x90\x78\x53\xd6\x89\x81\x65\xcb\x8f\x49\ +\x76\x84\x72\x69\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\ +\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x74\x6f\x20\x72\x6f\x74\x61\x74\x65\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x90\x78\x53\xd6\x89\ +\x81\x7e\x2e\x65\x3e\x76\x84\x72\x69\x4e\xf6\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x73\x63\x61\x6c\x65\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x90\ +\x78\x53\xd6\x89\x81\x4f\xee\x52\x6a\x00\x2f\x5e\xf6\x4f\x38\x72\ +\x69\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x53\x65\x6c\ +\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\ +\x20\x74\x72\x69\x6d\x2f\x65\x78\x74\x65\x6e\x64\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x90\x78\x53\ +\xd6\x89\x81\x53\x47\x7d\x1a\x76\x84\x72\x69\x4e\xf6\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1c\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x75\x70\x67\x72\x61\ +\x64\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x18\x90\x78\x53\xd6\x57\x82\x76\xf4\x65\xbc\x75\x76\x52\ +\x4d\x89\x96\x57\x16\x76\x84\x5e\x73\x97\x62\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2e\x53\x65\x6c\x65\x63\x74\x20\x70\x6c\x61\x6e\ +\x65\x20\x70\x65\x72\x70\x65\x6e\x64\x69\x63\x75\x6c\x61\x72\x20\ +\x74\x6f\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x76\ +\x69\x65\x77\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x12\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x5d\ +\xf2\x5c\x01\x95\x89\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x53\ +\x70\x6c\x69\x6e\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x63\ +\x6c\x6f\x73\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x08\x8d\x77\x59\xcb\x89\xd2\x5e\xa6\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x74\x61\x72\x74\x20\x41\x6e\ +\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x04\x65\x87\x5b\x57\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x54\x65\x78\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x16\x6b\x64\x72\x69\x4e\xf6\x98\x5e\x57\x8b\x66\ +\x2f\x4e\x0d\x53\xef\x7d\xe8\x8f\x2f\x76\x84\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x21\x54\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x74\x79\x70\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x65\x64\x69\ +\x74\x61\x62\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0c\x52\x07\x63\xdb\x5e\xfa\x90\x20\x6a\x21\ +\x5f\x0f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x54\x6f\x67\x67\ +\x6c\x65\x73\x20\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\ +\x20\x4d\x6f\x64\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x04\x4f\xee\x52\x6a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x54\x72\x69\x6d\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x20\x5f\xa9\x53\x9f\x4e\x0a\x4e\x00\x6b\ +\xb5\x00\x20\x00\x28\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\ +\x2b\x00\x20\x00\x5a\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1e\x55\x6e\x64\x6f\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x73\ +\x65\x67\x6d\x65\x6e\x74\x20\x28\x43\x54\x52\x4c\x2b\x5a\x29\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x6a\ +\xa2\x89\x96\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x56\x69\x65\ +\x77\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x2a\x6e\x05\x96\x64\x6b\x64\x73\xfe\x5b\x58\x57\x28\x72\x47\x6b\ +\xb5\x4e\x26\x91\xcd\x65\xb0\x75\x31\x67\x00\x5f\x8c\x4e\x00\x9e\ +\xde\x95\x8b\x59\xcb\x00\x28\x00\x57\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x51\x57\x69\x70\x65\x73\x20\x74\x68\x65\x20\x65\ +\x78\x69\x73\x74\x69\x6e\x67\x20\x73\x65\x67\x6d\x65\x6e\x74\x73\ +\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6c\x69\x6e\x65\x20\x61\x6e\ +\x64\x20\x73\x74\x61\x72\x74\x73\x20\x61\x67\x61\x69\x6e\x20\x66\ +\x72\x6f\x6d\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x70\x6f\x69\ +\x6e\x74\x20\x28\x57\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x08\x7d\xda\x68\x9d\x5d\xe5\x51\x77\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\x57\x69\x72\x65\x20\x74\x6f\x6f\ +\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x02\x00\x58\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\x58\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x4e\ +\x0b\x4e\x00\x50\x0b\x9e\xde\x76\x84\x00\x58\x5e\xa7\x6a\x19\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x58\x20\x63\x6f\x6f\x72\x64\ +\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\ +\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x04\x00\x58\x00\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x02\x58\x59\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x04\x00\x58\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x02\x58\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x02\x01\x78\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\x59\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\ +\x4e\x0b\x4e\x00\x50\x0b\x9e\xde\x76\x84\x00\x59\x5e\xa7\x6a\x19\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x59\x20\x63\x6f\x6f\x72\ +\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\ +\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x04\x00\x59\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x02\x59\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x02\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\ +\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x10\x4e\x0b\x4e\x00\x50\x0b\x9e\xde\x76\x84\x00\x5a\x5e\xa7\x6a\ +\x19\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x5a\x20\x63\x6f\x6f\ +\x72\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\ +\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0a\x55\x5f\x52\xd5\x63\x07\x4e\xe4\xff\x1a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x61\x63\x74\x69\x76\x65\x20\ +\x63\x6f\x6d\x6d\x61\x6e\x64\x3a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0a\x83\x49\x68\x48\x63\x07\x4e\xe4\ +\x52\x17\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x64\x72\x61\x66\ +\x74\x20\x43\x6f\x6d\x6d\x61\x6e\x64\x20\x42\x61\x72\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\ +\x00\x00\x3c\x63\ +\x00\ +\x00\xc9\x8f\x78\x9c\xc5\x7d\x09\x78\x1d\xd5\x75\xf0\xd5\x2e\x3d\ +\x6d\xc6\x31\xc6\x18\x03\x63\x9b\x18\xd9\xc8\xb2\x31\x8b\xb1\x58\ +\x65\xc9\xb2\x0d\xde\x62\x09\x6f\x21\xc0\xbc\xf7\xe6\x49\x63\xbd\ +\x37\xf3\x98\x99\x27\x59\x40\x81\x00\x01\x43\x58\xc2\x12\x20\x90\ +\x50\x20\x61\x4d\x48\xc3\x5a\x48\x02\x24\x0d\x21\x29\x29\x69\x4a\ +\x53\xfa\x93\x36\x29\x24\x31\x4d\xb3\x91\xd0\x36\x25\x09\x69\x7b\ +\xee\xb9\xeb\x2c\x4f\x1e\x39\xf9\xbf\x7e\x7c\xf8\x49\x4f\x33\xf7\ +\x9e\x7b\xee\xd9\xcf\xb9\xe7\x9e\xf2\x4c\x7e\xce\xcb\x6f\x7f\xf2\ +\xe3\xaf\xcc\x9f\xf7\xc2\xf9\xf7\x3e\xf7\xfd\xd5\x84\xb4\x9e\x44\ +\x08\xd9\x41\xc8\x97\xbe\x0c\x9f\x3b\x09\xf9\xf2\x15\xf0\xb9\x8b\ +\x90\xe7\x96\x10\xd2\xf0\x3a\xfc\xde\x0f\x9f\xdf\x83\xcf\x1c\x7c\ +\xfe\x14\xbe\xcf\x10\xd2\xb4\x87\x90\xab\x3e\x4d\xc8\x3a\x78\xb6\ +\xee\x74\xf6\x79\xdd\x3e\x42\x46\x8f\x27\xe4\xd2\xff\x21\x35\x5f\ +\xbd\x9a\x90\xed\x97\x90\xfa\x07\x26\x09\xf9\xd8\x75\xa4\xfe\x4b\ +\xf5\x84\xb4\x9f\xcb\x3e\x3f\xfe\x1a\x69\x58\xbe\x86\x90\xce\xdb\ +\xd9\xe7\x43\x87\x91\x86\xc1\xaf\xc3\xef\x2f\xb2\xcf\x87\x9e\x22\ +\x0d\xdb\xe0\xfb\x1d\x9b\xd9\xe7\xc3\x7f\x47\x1a\x3e\xf7\x1f\x84\ +\xcc\xbb\x83\x7d\x3e\xf3\x30\x69\x78\xe6\x0f\x84\x3c\xfb\x1c\x69\ +\xf8\xdb\x6f\x10\xf2\xc5\x21\xd2\xf8\xd9\xeb\x08\xf9\xf0\xd9\x64\ +\xc6\x95\xeb\x09\x29\x5c\x43\x66\x36\x7c\x91\x90\xa7\x0f\x27\xb3\ +\x5f\x02\xb8\x3f\x75\x12\x39\xf2\x33\xff\x45\xc8\xe2\x32\x59\x42\ +\xe1\xb9\xe6\x74\x72\xcc\x8b\x7f\x41\xc8\xb5\x6b\xc9\x31\x6f\x58\ +\xf0\xe9\x91\x55\xff\x72\x1c\x21\xbd\x73\x48\xef\xdd\x87\x11\x32\ +\xf1\x3a\x39\xf5\xde\x43\x09\xb9\x61\x11\x39\xed\x16\x58\xd7\xc9\ +\x1b\xc8\xba\x1b\x2f\x26\x64\xc9\xc5\x64\xdd\x1d\xd7\x10\x52\x3f\ +\x8b\xac\x7f\xe3\x23\x84\x1c\xbd\x97\x7d\xde\x72\x32\x39\xf3\x44\ +\x80\xb3\x69\x35\x39\xab\x70\x02\x21\x27\xbe\x0a\x9f\x2b\x09\x59\ +\x79\x18\x7c\xae\x82\xcf\x3c\xd9\x7e\xfe\x30\x21\x33\xbf\xcd\x3e\ +\x1f\x9f\x49\x76\xfc\x01\xd6\x71\x4e\x99\xec\xbc\xe3\xfd\x84\xcc\ +\x3e\x9a\x7d\x3e\xf1\x15\xb2\x7b\xc7\x9d\x84\x7c\xee\x5c\x32\xf9\ +\xf6\x77\x01\xbf\xff\x44\x2e\xb9\xb4\x83\x90\x8b\xef\x21\xd7\x2e\ +\xfc\x38\x21\x3d\xf3\xe0\xf3\x76\xf8\x2c\xc0\xe7\x27\xe0\xf3\x0b\ +\xe4\xa6\x2f\xff\x1b\xe0\xed\xd7\xe4\x81\x95\xb0\x07\xdd\x6f\x92\ +\x47\x2e\x83\x71\x6e\xf9\x4f\xf2\xb9\xd7\x00\xcf\x6b\x7b\xc9\x57\ +\x3e\x07\x7b\x76\xeb\xa3\xe4\xa5\x1f\x39\x84\x74\xbd\x49\xbe\xf5\ +\xd0\x2c\x42\x3e\xf2\x1c\x79\x8f\xbc\x4c\xc8\xa7\x5f\xae\x39\xf4\ +\xfa\x1f\x10\x62\x3e\x52\x33\xff\x35\x80\xd3\xba\xaa\x66\xc1\x93\ +\xbf\x05\x78\x76\xd4\x2c\xbb\xe1\x12\x42\xca\x47\xd4\xac\xfb\x6f\ +\xd8\xe3\x93\x5f\xaa\x19\xfa\xf7\x47\x08\xf9\xc4\xdf\xd7\x6c\x9b\ +\x7d\x26\xbc\xb7\xb6\xe6\x9c\x1f\x00\x7e\x1f\x5e\x57\x33\xd2\x7e\ +\x2d\x21\x77\xff\x63\x8d\x7d\xd0\x85\x84\x7c\xe1\x98\x1a\xfb\xf6\ +\x3b\x08\x39\xed\xf8\x9a\xcb\x57\x01\x8d\x7c\xee\x57\x35\x1f\x1d\ +\xad\xc0\x3e\x6d\xab\xf9\xe8\x35\x80\xf7\xa6\x0b\x6a\xee\xbd\x14\ +\xe0\x39\xf2\x90\x9a\xc7\x3e\xd4\x42\xc8\x9e\xa0\xe6\xab\xaf\xc3\ +\xfc\xa3\x9f\xaf\x79\xf5\xc6\xbf\x27\xe4\x43\xf3\x6b\xbe\x3b\x63\ +\x21\x21\x83\x67\xd5\x7c\xff\x8a\xdf\x11\xf2\xd9\x19\x35\xff\x72\ +\x10\xd0\x5e\x63\xb6\xe6\x87\xff\x01\xf4\xf8\xd4\x33\x35\xef\x7d\ +\x1e\x9e\xbb\x7a\x5e\x6d\xc3\xf3\xb0\xce\x9b\x9f\xae\xed\x7e\xfd\ +\x7c\x42\xe6\x9f\x5a\xbb\xec\x29\x58\x97\x71\x49\xed\xe0\x0e\x98\ +\xf7\x2f\xae\xae\xdd\xfe\x6e\x33\x21\x6d\xcb\x6b\xad\x47\xb3\x40\ +\xaf\xef\xd6\x3a\x4d\x3f\x24\xe4\xfc\xd1\xda\xf1\xa3\xde\x47\x48\ +\x7f\xa5\xf6\xcf\xde\x38\x1b\xd6\xbd\xab\xf6\xd6\xc1\xb9\x00\xe7\ +\xbd\xb5\x1f\x7f\xf9\x29\x42\x4e\x7a\xb6\xf6\xc1\xee\x83\x81\xc6\ +\x67\xd5\x3e\x72\x22\xe0\x7b\xef\x1b\xb5\x9f\xbd\x1a\xf6\xe1\x9a\ +\x62\xed\x63\xbf\x82\xf5\xde\xf3\xb1\xda\x17\x1e\xb9\x81\x90\xd3\ +\xcf\xae\xfd\x4a\xe1\x1d\x42\x8a\x1b\x6a\xbf\x79\xfa\x7f\x02\xbd\ +\xac\xa9\x7d\xfd\x33\xcf\x02\xdd\x3f\x5e\xfb\x4f\x73\x6f\x25\xa4\ +\xf9\xde\xba\x9a\x2b\x5f\x24\xe4\x33\x95\xba\x99\xb7\xef\x26\xe4\ +\xbe\xcb\xeb\x66\x4d\x02\xbe\x1f\xfa\x7e\xdd\xdc\x59\x00\xe7\xf1\ +\x7b\xeb\xe6\xce\x06\x3e\xcb\xbe\x50\xb7\x6c\x2e\xfc\xfd\xda\x7d\ +\x75\x97\xd0\xf9\xb7\xde\x50\xf7\x91\x60\x1d\x21\x1b\xcf\xaf\xdb\ +\x7b\x24\xcc\x3b\x74\x41\xdd\xdd\x3b\xee\x07\x5e\x5c\x57\xf7\xc4\ +\xdd\x80\x8f\x47\xf7\xd6\x3d\xf5\x4d\xa0\x8f\xcf\x7f\xb3\xee\xb9\ +\xef\xfe\x98\x90\x8f\x5e\x5b\xf7\xe2\x29\x30\xff\xf5\x3f\xa9\xfb\ +\xfa\x3f\x9c\x4b\x48\xe6\x4b\xec\xf3\x96\xaf\xd4\x7d\xab\x1d\x78\ +\xf1\x89\x9f\xd5\xfd\x73\x1b\x85\xff\x1b\x75\x6f\xee\x01\x7c\xdd\ +\xf4\xd3\xba\x77\xca\x40\x9f\xcb\xdf\xab\x7b\xe7\x39\xc0\xdb\x21\ +\x37\xd7\xfd\xbe\x13\xe8\xe4\xf8\x25\xf5\xf3\x17\x02\xde\x8f\xfa\ +\x6d\x7d\x8f\x0f\x7c\x70\xd1\xc1\xf5\xdb\x1a\x6f\x21\x64\xc5\xe6\ +\xfa\xf3\x2f\x06\x7c\x3c\x7e\x5b\xfd\xe4\xdb\x30\xef\x3d\x87\xd5\ +\x5f\x3e\x01\x74\x6b\xce\xa8\xbf\xfa\x0a\xe0\xef\xd5\x13\xf5\x57\ +\xff\xf6\x6e\x42\xee\xbf\xb8\xfe\xba\xd7\x3e\x4f\x48\xe5\x73\xf5\ +\x37\x3c\x07\xfc\x76\xfb\xef\xeb\xef\xb9\x16\xe6\x6b\x5c\xc6\x3e\ +\x6f\xfc\x40\xfd\x67\x8e\x85\xfd\x7b\xf0\xe1\xfa\x87\x7e\x06\xfc\ +\xb2\xf2\xd1\xfa\xe7\x33\xef\x12\xf2\xc1\x5f\xd4\xbf\xf6\xda\x4c\ +\x42\xce\xfd\x7d\xfd\x9b\xce\x8f\x40\x0e\xad\xaa\xff\x71\x27\xd0\ +\x4b\xed\x9b\xf5\x3f\xeb\xfb\x1a\x21\xc7\xbe\x5a\xff\xf6\xeb\x0f\ +\xc1\x73\x6d\x0d\x75\x57\xc0\x7e\x5c\xfe\xbb\x86\x86\x6f\xc1\xfe\ +\x6d\xf9\x66\x43\xe7\x3b\x01\xd0\xc7\xfd\x0d\x87\xcd\x00\x3c\x9e\ +\x3d\xbb\x61\xc9\x3e\xe0\x8b\x0f\xbd\xdd\x30\x70\xf2\x79\x84\x5c\ +\xb9\xaf\xe1\x9c\xd7\x01\xff\x07\x2d\x67\x9f\x8f\xf4\x36\xe4\x7e\ +\x03\xeb\x39\xe7\xb1\x06\xeb\x97\xc0\xef\xb7\x7f\xb1\xe1\xea\x2f\ +\xc0\xf8\x8f\xef\x6e\xb8\xed\x21\xc0\xef\xac\x7f\x63\x9f\x4f\xdc\ +\xd6\xf0\xe8\x59\xf0\xfd\xd6\xb7\x1a\x1e\x7f\xe0\x25\xa0\xab\x2b\ +\x1a\x9e\xad\xfb\x26\x7c\xbe\xd7\xf0\x5c\x1b\xec\xff\x9d\xff\xd5\ +\xf0\xdc\x0d\x40\xaf\x01\x69\x78\x7e\x1b\x8c\xb7\xeb\x93\x0d\x5f\ +\xdf\x42\xe5\xda\x8d\x0d\xfb\x6e\xe8\x01\xfe\xfe\x43\xc3\xef\xff\ +\x19\xe4\xc5\x07\x96\x34\x1e\xf1\x16\xec\xe7\x33\x4e\xe3\xe2\x5f\ +\x3e\x0c\xeb\x7f\xbe\x71\xc9\x55\xaf\x00\xfd\x7d\xb1\x71\xfb\xa1\ +\x80\x3f\xc0\xcc\xae\xb7\x01\xaf\xd7\x64\x1a\x3f\xf8\x2a\x3c\xb7\ +\xee\xfb\x8d\xc5\xbd\x40\x57\x9b\x7e\xdd\x18\x1c\x0e\x74\x39\x3a\ +\xbb\xf1\xa3\xb7\x0d\x10\xd2\x71\x6a\xe3\xed\x3b\xfe\x9a\x90\xdc\ +\xba\xc6\x2f\x5f\x06\xf0\x19\x87\x35\xfe\xf5\x33\x0d\x20\x67\xeb\ +\x1b\x7f\xd2\xb0\x09\xe8\x6c\x49\xe3\x2f\x1f\xd9\x4e\xc8\x5f\x5e\ +\xd4\xf8\xab\x6f\x01\x9e\x0f\xff\x43\xe3\xef\xfe\x87\xc2\xbf\xa8\ +\xf1\xbd\xb9\x40\x67\xab\x3a\x1b\xdf\xbb\x07\xf8\xf3\xb3\x6f\x34\ +\x35\x7f\x0c\xe8\x61\xd9\x45\x4d\xed\x7f\x09\x72\xf0\xb4\xfb\x9a\ +\x3a\xae\x3a\x8d\x90\x23\x0a\x4d\x4b\x16\x02\x3e\x4e\xfd\xf3\xa6\ +\x13\x46\x41\x3e\xcc\x79\xb0\xe9\x84\x9f\xc0\x3e\x7f\xa1\xd8\x34\ +\xd0\x07\xb2\xff\x13\xa7\x35\x9d\x79\x24\xf0\x6b\xed\x8c\xa6\x8d\ +\xfe\x02\xa0\xdf\xfe\xa6\x4d\x0f\x00\xdd\xdf\x76\x6c\xd3\x8e\x6f\ +\xfd\x04\x7e\xbf\xa8\x29\xf7\xdf\x20\x9f\xde\xf7\x6d\xf6\xf9\xf8\ +\xc9\x4d\x17\x3c\x0a\xfc\x7a\xe8\x9d\x4d\x97\xbd\xf4\x04\xe8\x93\ +\x2b\x9b\xf6\x7a\xb0\xef\xd7\xaf\x6c\xba\x69\x0f\xd0\xe5\xa2\x8f\ +\x34\x3d\xb8\x1c\xe0\xbf\xbe\xb9\xe9\xab\xef\xc1\x3e\x1e\x37\xb7\ +\xe9\x5f\x7f\x0e\x78\x9c\xdc\xd7\x7c\xf4\x93\x80\xdf\xcf\x8f\x35\ +\xaf\x78\x11\xe4\xcc\x63\x0b\x9b\x4f\x0c\x00\xfe\xae\x3b\x9b\x07\ +\x9e\x05\x7c\xae\xba\xae\x79\xfd\x5f\x2f\x07\x7a\xfd\xe7\x66\xf3\ +\x62\x18\x77\xc1\xb2\xe6\xfb\x5e\x1e\x01\xfe\xa9\x34\x7f\xfa\x0d\ +\xa0\xd7\x9b\x96\x36\x3f\x76\x70\x17\x8c\xf7\x42\xf3\x93\xf5\xb0\ +\x1f\x4f\xb4\x37\x7f\x67\x05\xe0\xf9\xb6\xda\xe6\xef\xbe\x62\xc3\ +\xe7\x05\xcd\x6f\xde\xf5\x3c\xe0\xa7\xaf\xf9\xcd\xaf\x02\x1f\xdd\ +\x71\x6d\xf3\xdb\x1b\x41\x5e\xdd\x92\x6f\x31\xbe\x77\x14\xe8\xb5\ +\x7b\xe0\xf3\x49\x90\x13\x6b\xe1\x13\xf8\xe5\x4b\xaf\xb7\x6c\xbc\ +\x0d\xf4\xde\xe2\xaf\xb5\x58\xdf\x03\xfc\x7d\xf2\x1b\x2d\xa3\xed\ +\x8b\x09\x79\xe0\xb6\x96\x0b\xae\x07\x3c\x37\xfd\xa4\xa5\xb2\x10\ +\xe0\xbb\xf6\xae\x96\xf1\x5f\x80\xbe\x9b\xbc\xab\xe5\xaa\x07\x60\ +\x5d\x47\x3f\xdd\xf2\xd1\x85\xb0\x8e\xc7\x82\x96\xbb\xff\x00\xf2\ +\xf3\xc2\x89\x96\xa7\x97\x00\xfe\x4e\x3a\xac\xe5\x95\x79\xb0\xaf\ +\x4f\x2e\x6c\x79\x75\x3e\xe8\xcf\x0b\x8e\x6c\xd9\xb7\x10\xf0\x35\ +\xb6\xb1\xe5\xe7\xc7\x80\xde\x68\xff\xf7\x96\xb7\x8f\x03\x39\x3b\ +\x77\xb4\xe5\x57\x47\xc2\x3e\xd4\x15\x5a\xfe\xb0\x06\xe4\xd2\xa3\ +\x27\x67\x5a\xbe\x0a\x70\xfe\xc5\x6b\x99\xae\x3b\x61\x9f\xce\xbb\ +\x08\x3e\x61\xdd\xe7\xbd\x0c\x9f\xb0\xae\xf3\x0f\xcd\x2c\x7d\x1e\ +\xe4\xc0\xf1\xbf\xce\x9c\xf0\x30\xac\xeb\xde\xb6\xcc\xe9\x47\x03\ +\x5f\xdc\x42\x32\x67\xdc\x0b\xfc\x74\xac\x9f\x59\x7f\x3f\xc8\xeb\ +\x67\xfe\x2e\x73\xfe\x1b\x40\x6f\x4b\x9e\x83\xcf\x43\x08\x39\xc6\ +\x80\x4f\xd0\x6f\xc7\x5c\x91\xb1\xee\x02\x78\x1e\x29\x66\xf6\x34\ +\x5c\x46\x48\xcd\xc6\xcc\xa5\x37\xc2\x3c\x03\x77\x66\x3e\xfc\x63\ +\x90\x07\x67\xee\xcc\x5c\x35\x03\xe8\x70\x66\x31\x73\xc7\x55\x73\ +\x40\xdf\xfc\x2e\xf3\x89\x73\xe8\xfe\xbc\x98\x79\x68\x36\xf0\xe3\ +\xac\x47\xd8\xe7\xe3\xff\x2f\xf3\xf0\x35\x3f\x07\x79\xf5\xed\xcc\ +\x37\xcf\x01\x7e\x3c\xc8\xce\x7c\x67\xcb\x33\x40\xdf\x77\x64\xbe\ +\xf3\x16\xc8\xa7\x43\xb7\x67\x5e\xfb\x35\xc0\xf7\x71\x2b\xf3\xb3\ +\x9b\xf6\x02\xbe\x1a\x5b\x9b\xf6\x50\xbc\x2e\x6a\x3d\xec\x0d\x1f\ +\xe8\xfb\xe9\xd6\xa3\x3e\x05\xf8\xcf\x3f\xd8\x7a\xd4\xd7\x81\xde\ +\x0f\x9e\xdb\xba\xe8\x12\xc0\xcf\xcd\x5d\xad\xc7\x6c\x81\xf7\xfe\ +\x7c\x4f\xeb\xd2\x27\x40\x2f\x5d\x3a\xbb\x75\xa5\x0f\xeb\xfe\xe2\ +\x44\xeb\x19\x67\x00\xfd\x9e\xbd\xa7\xb5\xff\x15\x58\xc7\xf0\xba\ +\xd6\xcd\x77\x00\xde\x3f\xf5\x74\x6b\xa1\xeb\x55\x90\xc7\x37\xb7\ +\xee\x7d\xa3\x09\xe4\xff\x95\xad\xb7\x0e\x80\x3d\x71\xc2\x39\xad\ +\x77\xcc\x04\xb8\xef\xbc\xb0\xf5\x9e\x2b\x41\x3e\xd7\xf7\xb7\x3e\ +\x31\x08\x72\xf7\x63\x4f\xb7\xfe\xd5\x27\xe0\xf3\xae\xb1\xd6\xbf\ +\x3f\x1a\xe4\x57\xc3\xa6\xd6\xef\x5e\x02\xf2\xac\xed\x4b\xad\xff\ +\xf9\xcb\x21\xd0\x6f\xbf\x6d\x6b\xdc\x02\x7c\xdd\xf1\x72\xdb\xa1\ +\xbf\x03\x7d\x7b\x7b\x4d\xdb\xfc\x0c\xd0\xe3\x8d\x7f\xd6\xd6\x75\ +\x17\xec\xdb\xb5\xb3\xda\x8e\xbd\x04\xf0\xfb\xe8\x2b\x6d\x27\x6d\ +\x04\xfe\x6a\x7e\xab\xad\x77\xf6\x77\xc0\x4e\x99\xd5\xb6\xeb\x2b\ +\x20\x37\xae\x7f\xba\xcd\xb9\x1a\xd6\xbf\xe8\xcc\xb6\x8b\xdf\x78\ +\x00\xf8\xf7\xc5\xb6\xcb\x4e\x06\x7a\xfd\x78\x5d\xdb\x4d\xf7\xc0\ +\xbe\x3e\x73\x70\xdb\x6d\x1f\x03\x7c\x0d\x7f\xb6\xed\xf9\x07\x81\ +\x9f\xcf\xfa\x5a\xdb\xcb\xdf\x87\xf5\x3e\x7d\x45\xdb\x6b\x6f\x83\ +\x5c\x5c\xf1\x42\xdb\x0f\x3e\x01\xf6\xcc\xa5\xd9\xb6\x37\xe7\xd7\ +\x82\x9c\xbc\xb2\xed\x87\x13\x80\xaf\x0f\xdf\xd2\xf6\xab\x1f\xc0\ +\x7a\xee\x5e\xd5\x3e\xef\x37\xbf\x04\x79\x7e\x5a\x7b\x6f\x91\xf2\ +\xcf\xa1\xed\x6b\x7e\x08\xeb\x79\x6a\x7d\xfb\xce\x7b\x01\xbe\x5b\ +\xdf\xdf\xbe\xeb\x51\x98\xef\xba\x2b\xdb\xcf\xfd\x57\xa0\xab\x63\ +\xde\x6a\xcf\xdf\x0f\x74\xed\x9e\xd9\x5e\x7a\x17\xf8\xa3\xe5\xc1\ +\xf6\xe0\xfb\x5b\x09\x39\x6c\x67\xfb\xf8\x53\x37\xc3\x38\xb7\xb6\ +\xdf\xf5\x73\xc0\xff\xc8\xfd\xed\xf7\xbf\x0e\x78\x5a\xb6\xaf\xfd\ +\x81\xef\x7d\x86\x90\x6d\x9f\x6a\x7f\xf0\xd9\xbf\x82\xe7\x1e\x68\ +\x7f\xe9\x25\x90\x0b\x5f\xf8\x46\xfb\x3b\xab\x60\xbe\x7b\x5f\xe8\ +\x98\x7b\x38\xc8\x9b\x0f\xdc\xda\xb1\xf8\xd6\x3c\x21\x67\x7c\xaf\ +\xe3\x98\x7a\xa0\xb3\x9b\x1e\xee\xe8\xfe\x31\x3c\xf7\xe4\x5b\x1d\ +\x9b\xfe\x06\xf0\x9f\xf9\x5d\x87\x7b\x27\xd0\xf3\x5f\xb6\x77\x5c\ +\x74\x61\x37\xd8\x47\x5b\x3b\x6e\xdc\x0d\xf6\x51\xef\x6f\x3a\x6e\ +\xb2\x00\x3f\xf3\xbe\xde\xf1\xf2\x3f\x02\x1f\x2d\xfc\x59\x07\xe3\ +\x93\x3c\x7c\x02\x1d\x3e\x79\x7f\xc7\x2b\x1f\x04\xfc\x7c\xf0\xd6\ +\x8e\x9f\xee\xab\x03\xbd\xff\xd9\x8e\x5f\xbc\x09\x74\xb0\xe3\xc6\ +\xce\xa6\xeb\x81\xbe\xf7\x9e\xde\xd9\x3a\x03\xf6\x69\x7b\x53\xe7\ +\x21\x97\x03\xfe\xc8\xef\x3b\x8f\xbc\x1e\xe4\xe4\x4d\x56\xe7\xe6\ +\x4a\x2f\xf0\xf3\x63\x9d\xe7\xbd\xfc\x0f\xb0\xff\xdf\xea\x9c\xf8\ +\x1a\xd0\xd7\x65\xbd\x9d\xd7\xb4\x82\x1c\xd8\xf1\x8b\xce\x1b\x1f\ +\x7a\x10\xd6\xd3\xd6\x79\x47\x06\xec\x9e\x67\x7f\xd4\x79\xf7\xcf\ +\xef\x01\x7a\x6e\xe8\x7c\xe1\x6a\xe0\xc3\x07\xcf\xeb\x7c\xe5\xdb\ +\x40\xd7\xbd\x7b\x3b\xff\x65\x3e\xf0\x75\x57\x7f\xe7\x6f\x1a\x8f\ +\x00\xfd\xb8\xa6\xf3\x37\x8b\xc1\xbe\xb8\xee\xc4\xce\xdf\x9f\x07\ +\xf4\x72\xb3\x07\xc4\xf8\xfc\xa9\x00\x19\x99\x47\x36\x10\x8b\x8c\ +\xc0\x7f\x06\xa8\x07\x9b\x14\xe1\xb3\x4c\x2a\xc4\x21\x63\x24\x68\ +\x46\x91\x0f\xff\xb7\xf4\xe5\xf3\xc6\x16\xd7\x76\x02\xa0\x4e\xd2\ +\x31\xe0\x99\x85\xe0\x3c\xf8\x0e\xbf\xaa\xa1\xe3\x8c\xca\x71\x2c\ +\xe2\x69\x63\x59\xf0\x93\x36\x22\xfe\xbc\x0f\xbf\x77\xf0\xdf\x31\ +\xe2\xc3\x93\x3e\xfc\x85\xbe\x47\xbf\xcd\xc3\xbf\xf4\x7d\x0f\x9e\ +\xcb\x93\x65\xf0\x73\x16\xfe\x5e\x86\xd1\x6c\xf8\xab\x25\x61\xea\ +\x82\xf9\x7d\xc3\x34\xca\x14\x06\x23\x70\x0d\xd3\x31\xac\x3d\xb6\ +\x1f\xd8\xce\x88\x31\x61\x7b\xd6\xb2\xac\x5f\x2e\xda\x8e\x55\x0d\ +\xe4\x23\x48\x1f\x4c\x90\xc7\xc9\x5c\xf8\x77\x04\xa6\x74\x01\xd0\ +\x32\xe9\xa1\xff\xc9\x89\x3a\xe9\xe2\x61\xfc\x11\xcf\xad\x94\x7b\ +\x7a\x7a\xe8\x78\x33\xe4\x78\xc3\xee\x5a\xfa\x3d\x8e\xe8\x54\x41\ +\xc2\x38\x31\xe1\x73\x04\x17\x69\xc0\x1c\x59\xb2\x1b\x97\x1e\x90\ +\x2e\x7c\x72\x71\x08\x61\x53\x23\x86\x42\x49\x61\x2c\x6b\xa8\x58\ +\x8e\xa8\x08\x46\x2d\xc3\xb7\x8a\x56\x2e\xb0\xf2\x86\x9b\xdd\x0d\ +\x3f\x74\xf9\x8b\xa3\x98\xc1\x55\x54\x5f\x42\x90\x40\x0f\x23\x08\ +\x6e\x11\x01\x10\x60\xb0\xdd\xa0\xdf\x67\x11\xbc\x3c\xff\xde\xc5\ +\x37\x0b\xb0\x60\x0f\xd1\x20\xf6\xbb\x3a\x0a\x60\x79\x72\x21\x27\ +\xf5\x95\x61\xcb\x2c\xdf\xc8\x55\x3c\xcf\x82\x6d\xa5\xfb\x07\x9b\ +\x99\x0f\x46\x61\x11\x79\x23\xe7\x16\x5d\x8f\xae\x28\xb2\x4e\x5f\ +\x5f\x10\x0c\x31\x39\x14\x4c\x16\x2d\x5c\xd0\x22\xb2\x1a\x31\x36\ +\x56\x65\x21\x3e\x5b\xa6\x04\xe1\x7d\xf8\xbe\xd1\xcf\x01\xc0\x81\ +\xaa\x8f\xde\x08\xa3\x57\xb4\x9d\xa8\xeb\xf3\x72\xf4\xe9\x16\xfe\ +\xb4\x97\xc3\xc7\xce\x07\xac\x9a\x92\x2c\xd8\x16\x67\xe9\x8b\x40\ +\x68\x06\xe9\x27\xc3\x64\x2b\x3c\x41\xf1\xe6\xe2\x13\x25\x7c\xda\ +\xe1\xdc\x43\x79\x60\x88\xac\x23\xeb\xc9\x20\x3c\xa9\x9e\xda\x87\ +\xfb\xb0\x0f\x96\xa0\x91\x42\xbf\x67\x99\x01\x60\x10\xf6\xdc\xf4\ +\x72\x3d\x46\xff\xf0\xd6\x0d\x88\x31\xc7\x2c\x77\x1b\x43\xeb\xd6\ +\x0f\x0e\xd3\x5f\x73\xae\xe3\x07\x9e\x69\x3b\x09\xd0\x66\x80\x31\ +\x3c\xf8\xcf\x24\x93\x72\xdc\x86\x3e\xcf\x33\x27\xe9\xc3\xad\xe2\ +\x61\xf8\x1d\x1f\x1f\x87\x05\x50\x12\x30\x71\x33\x7d\x00\xca\xc4\ +\x6d\x77\x01\x38\x13\x01\x65\xe0\xd2\x67\x72\xf0\x8c\x09\x0b\x1b\ +\x81\xc5\x8b\xbf\x9a\x62\x32\x5c\x1a\xe5\xc1\x12\x1f\xc3\xc7\xdd\ +\x62\x6f\x59\xc8\xa9\x82\x70\x72\x9a\x70\x3a\x59\x2e\x19\x64\x41\ +\xd1\xf4\x0c\x20\x11\x0f\x88\xc2\x74\x46\x2a\xf4\x57\x93\x42\x6a\ +\x14\x3c\xb7\x04\x4f\x44\x08\x27\x71\x41\x33\x60\x53\x97\x02\xc6\ +\xe3\x32\xa7\x79\xf5\xd2\x21\x29\x53\xda\xd9\x7b\xab\xd9\x37\xf8\ +\xe6\xc5\x09\xfb\x5c\xc0\x25\x78\x21\x19\x98\x85\xf1\x35\x99\x96\ +\x82\x0a\xa6\x43\x03\xfd\x0a\x21\xa5\x4a\x31\xb0\xcb\x45\x6b\x29\ +\x93\x92\xd9\xa5\x4c\x24\xa6\x23\x8b\x84\x05\xb6\x01\x10\x36\x4c\ +\x3c\x46\x77\x46\x4e\xd8\xd8\x6f\x7b\x39\xc6\x26\x6d\xec\x1d\xf6\ +\x05\xbe\x72\x79\x02\x4e\x7c\x35\x48\xca\xb5\xf7\xc1\x5f\x87\x51\ +\x8e\x58\x28\x47\x84\x80\x65\xc4\x44\x47\x0d\x34\x89\x55\x4d\xbe\ +\x9c\xaa\x30\x93\x43\x08\xa3\x88\xe8\xdb\x30\xac\xc4\x8b\x41\x49\ +\x88\x0a\x01\x4d\xc8\xc4\xd7\x97\x01\xe8\x8b\x30\xa3\x4e\x27\x0d\ +\xfd\x45\x97\x11\x09\x27\x2e\xfc\x1d\x1f\xef\x55\x8f\x23\xaf\x04\ +\xa0\x3a\xad\xfd\xd1\x3a\xe8\x09\x9f\x2c\x96\xc3\x1f\x8e\xc3\x55\ +\x93\xf8\x89\xd3\xce\x02\xfc\x51\x21\x38\xa6\xcb\x6e\x39\x60\x06\ +\x1e\xf4\x2d\x63\x03\xa7\xec\x4e\xf9\xb6\x6f\x6d\x10\x5b\x7f\x92\ +\x1c\x81\xe1\x5e\x8c\xc2\x18\x95\x31\x6d\x16\xbf\x65\x3b\x63\x89\ +\xfd\x93\xb3\x1c\x86\x03\x32\xb0\x51\xb0\x67\x2d\xaa\x91\xf2\x9e\ +\x39\xe1\x54\x9d\x76\x36\x10\xfc\x6e\x9c\xd2\x49\x34\x4d\xda\xb6\ +\x5a\x25\x77\xdc\x8a\x59\x27\x03\x56\x51\xa9\x7a\x47\x1b\x44\xd0\ +\x61\xd4\x2e\x29\xa0\x10\x4a\x6f\x99\x18\xb8\x61\x45\x3e\x5e\xb2\ +\x8d\xb2\x9c\x01\xa7\xcc\x14\x26\x85\x22\x86\x0a\x15\x58\x71\x5b\ +\x25\xb4\x80\xfb\x12\x98\x28\x0f\x93\x95\xf0\x67\x1f\x16\x47\x29\ +\xea\x4f\x22\x46\x42\xec\xa6\xff\x5d\xb1\x9e\x40\x9f\x8f\x9b\xcc\ +\x60\x50\x3b\xb2\x49\x31\x59\xde\x2e\x59\x8e\x6f\xbb\xce\xfe\x05\ +\x4e\x94\xf7\xa8\xa8\x1e\x81\xb7\x03\x8d\x32\x06\xc4\x70\x88\x93\ +\x99\x64\x20\x8a\x01\x65\xb0\xca\x47\xa7\x78\x7d\x13\x32\xda\x08\ +\xee\x7b\x3e\x24\x27\x5a\x06\xdc\x09\x67\xc4\x33\xf3\x3a\x3b\xc8\ +\xef\xf0\xf5\x1b\xc8\x1a\x24\x91\x32\x72\x73\x9e\x13\x89\x87\xfb\ +\x62\xed\xc7\xe0\x71\xf0\x3b\x9b\xef\xe4\x18\x27\xa2\x04\xc3\x28\ +\x42\x64\x85\x08\x11\x17\x50\x87\x86\x45\xdc\x9a\x35\x7b\xca\x45\ +\x37\x9f\x2c\x1d\x7c\x03\x08\x0a\x50\x6c\x97\x40\x27\x78\xe2\xcb\ +\x6e\x4a\x80\x7e\x25\x0b\xfb\x00\x88\x2f\x98\x39\xcb\xaf\xba\xec\ +\x23\x00\xe9\x14\x5f\x05\x2e\x6f\x5d\x24\xa8\x31\x24\x88\x1c\x19\ +\x55\x46\x33\xbe\x4c\xf7\x73\x68\xcc\x0a\x72\xa3\x74\xc0\x99\x7c\ +\x40\xfa\xef\x0a\xf6\x35\x8e\xd9\x01\xa4\xc6\xa4\x05\xe5\x9e\x11\ +\x39\x46\x13\x3c\x39\x01\x4c\xa2\xe9\x22\xfe\x0d\xbe\x36\x0c\x13\ +\xd3\x69\x83\x69\xe2\x5d\x38\x20\x41\x48\x4c\x99\xa8\x90\x94\xd5\ +\xbf\x74\x4b\x25\xa8\x82\x43\x17\x4c\x2b\x83\x43\x62\xf8\xa3\x96\ +\x15\xf4\x54\x01\xb1\x03\x58\xd1\x42\x46\x1d\x09\x6d\x52\xfd\x9a\ +\xbc\x8d\x84\x9d\x61\xef\xd0\x5f\xf1\x85\x9e\xf0\x0b\x7c\x65\x26\ +\xc2\x6f\xc3\xda\x82\xf0\x9a\xe4\x80\x87\xd0\x11\x18\xb8\xb0\x87\ +\x36\xc8\x43\x65\xdf\x44\xe7\x98\x0b\xdc\x3d\x0e\x94\x5b\x04\xe1\ +\x17\xe0\x88\x71\x85\xd0\x3a\x68\x3b\xb6\x3f\x6a\x08\x99\xc4\xad\ +\x5f\xf6\xad\x94\xcd\x83\x91\x91\x74\xe9\xa4\x1c\x04\x03\xff\xca\ +\xbe\x65\x72\x46\xa8\x11\xb6\x67\x8a\x6b\x17\xb0\xf1\x51\x74\x70\ +\xcb\x3f\x18\x75\x2b\x81\x91\x03\x95\x40\x91\xcd\x90\x96\x0c\xcc\ +\x78\x82\x88\x5c\x01\x76\x96\x92\xf1\x7e\x08\xac\x3f\xb5\xe5\x7d\ +\x92\x12\x7b\x2b\xb8\xb9\x95\xde\xd4\xe2\x7b\x24\x17\x93\x01\xa0\ +\xa2\x7b\x52\x2f\xd4\x73\xfc\xe1\x41\x80\x66\x92\x6e\x81\x7a\x78\ +\x23\xe8\x1d\xed\x61\xfa\x2b\x3e\xfc\x92\x7a\x78\x9a\x7c\x53\xe2\ +\xb2\x88\xa9\x7a\xc6\xfa\x0a\xb9\x74\xac\xff\xbf\xfa\x67\x0c\x7e\ +\x2e\x03\x56\x90\x2f\xe4\x42\x77\x6d\x44\x05\x9b\xc8\xa8\x59\x2b\ +\x98\xb0\x2c\xc7\x58\xc1\xb4\xaf\x3f\x0d\x2d\x94\x73\xcb\x93\x49\ +\xe8\x9b\xc9\x49\x9e\x09\x9e\xb0\xbc\x6a\xdc\x5c\x28\xf8\x56\xa0\ +\x99\x89\xec\x0b\x7c\xf1\x4e\x58\x31\x5d\x8b\x0f\xeb\x98\x44\x5d\ +\x3a\x25\x67\xff\x9f\xe0\x72\x1d\x83\x37\x41\x8e\x1c\x00\xe6\xe2\ +\x28\xe8\xae\xea\x28\xda\xdc\x7e\x4f\x72\xef\x66\xeb\xee\x9d\x2d\ +\xad\x71\xcd\xca\x55\x66\x52\x86\x6c\x11\xa3\x29\x5b\x5c\x5a\x86\ +\xb1\xc7\x83\x04\x91\x31\x8e\x2e\x45\x11\x25\xb0\xf0\x62\x27\xe1\ +\xe7\x3f\x99\x7d\x95\xe4\xb7\x7a\x16\x73\x55\xc1\x7f\x9d\x1c\x49\ +\x63\x2d\x69\xfa\x66\x0b\x7b\x87\xeb\x9b\x2d\x3a\xc0\x4a\x93\xf2\ +\x87\xaa\xbc\xb6\x23\x82\x87\x20\x51\x74\x7a\x9c\x32\x85\xcb\x95\ +\xc2\x75\x93\x00\x2c\x8e\x0b\x47\xee\xa2\x47\x7d\x30\xcd\xf2\xd8\ +\x2a\x9e\xe0\x9c\xb7\x35\x0a\x80\xb2\xd7\xe4\xa3\x55\x5f\xcf\xc0\ +\xeb\x6e\xc4\x56\x6a\xdc\xea\x06\x00\x95\x46\xad\xec\x0b\xce\xb0\ +\xf2\x05\x8e\x98\x29\x63\x58\xa9\x89\xe3\xac\xd4\x0c\x5b\x8c\x11\ +\x27\x67\x5b\xb9\x80\xad\x0c\xde\x64\xf1\x97\x96\x67\x73\xca\x27\ +\x0e\xb3\xae\x86\x8c\x36\x34\xf2\x4c\x66\x89\x2a\xd6\x1a\xca\x99\ +\x45\xdd\xcd\xc5\xdf\xf1\x85\xe7\xf5\x17\x52\xe1\x4f\xf7\xc0\x58\ +\x8c\xc4\x44\x8c\x28\x22\xfc\xbf\x10\x89\xe7\xe0\x92\xaa\xe8\x17\ +\x1e\x53\xca\x9a\xe0\x3b\x23\x51\x1f\x80\x98\x8c\x61\x6e\x0e\x9a\ +\xb5\x22\x14\xa0\x85\xa5\x95\xcb\x3b\xc4\x5c\x24\x19\xca\x3d\x88\ +\x8f\x81\x5f\xeb\xe1\x68\x7d\x24\x26\x6f\x8b\xa1\xf8\x88\xf8\x7e\ +\x02\xd6\x4d\x03\x11\x7a\x38\xc2\x44\x85\x4f\x45\xa0\xc9\xfd\x5f\ +\x31\x86\x08\x5b\xd8\xf8\x53\x1c\xbe\x95\x0c\x10\xa0\xa8\x62\x51\ +\xe2\x8a\x9a\x72\x0c\x8b\x66\x09\xb0\x65\xd2\xe8\x2a\x3c\x41\x31\ +\x6b\xfb\xfb\x5d\xca\xb9\x64\x1b\xf7\x3e\x05\x79\x50\xa0\xb2\xf0\ +\xb3\x0d\xf6\x0b\xf3\xc2\x4c\x1e\x6e\x73\x79\xcc\x91\xc6\xc8\x3d\ +\xe9\x21\x14\x71\xf3\xe9\x7b\xe3\x08\xb4\x85\x76\x8c\x85\xee\xbc\ +\x62\xa8\xee\x21\xe1\x7d\x4e\xb8\xde\x18\x35\x39\xcb\x45\x13\x0c\ +\xd1\x02\x78\x48\x23\x96\x5b\xb2\x02\x6f\x92\x31\x0c\x77\x2d\x43\ +\xf0\x6e\xa1\xcf\x72\x61\xa5\xe0\xe5\xb0\x29\xdb\x5a\x7b\x78\x8a\ +\x21\xca\x40\xeb\x54\xe9\x30\x53\x81\x71\x84\x8d\xae\x81\x08\xa4\ +\xda\xf8\x77\xb6\xa7\x93\xf8\x77\xba\x9c\x09\xf8\x97\x49\x0b\xdd\ +\x53\x33\x31\x7e\x11\xf2\xd5\xa2\x74\xa0\x59\xb2\xae\x33\x6e\x79\ +\x81\x91\xb5\xf3\x36\x15\xd3\xb0\x56\xd8\xca\x49\x69\x4f\x31\xdf\ +\x8e\x06\xe4\x99\x17\xa7\x07\xc8\xc4\x6a\x46\xcd\xb2\xb5\x62\x60\ +\x9b\x6d\x4d\x70\x67\x2d\xaa\xfb\x87\x00\x02\x93\xa6\x31\x50\xd9\ +\x0c\xa0\x7c\xa0\xdc\x37\x81\x7f\x75\x01\xee\xfd\x05\xc5\x14\xc4\ +\x4b\x84\x7a\xc1\x69\x8d\x15\x03\xc6\x38\x4c\x0c\x9e\x5a\x21\x31\ +\x53\x50\x05\xc6\xb9\xd5\x61\x92\x33\xb5\x87\x66\xd8\xef\x60\x2e\ +\x2c\x87\x2e\xd5\xc1\x61\x0d\xb2\x9a\xd2\xad\x3e\x98\x3b\x61\x0c\ +\x81\xa8\x30\x56\x9b\x5e\x68\x30\x77\x82\x7e\x0d\xdf\xe2\x60\xcb\ +\xe5\x60\x7e\x64\x5f\x7d\x39\x34\x35\xc8\xa9\xee\xcf\x86\xa6\x98\ +\x43\x87\xf2\xf9\x8e\x51\xa1\x04\xb2\xc7\x2d\x66\xa7\x9c\x6d\x75\ +\x82\x59\x54\xc2\xdf\xc6\x70\xb6\xfc\x34\x14\xff\x42\x3d\x1f\xe1\ +\x38\x54\xa3\xc4\xc2\x41\x9a\x9d\x3d\x6c\xed\x11\x96\xdc\x30\x61\ +\x31\x38\xcd\xa7\xa1\x7f\x4d\x7a\xf8\x78\xe4\xb6\x31\xf4\x44\x19\ +\xd0\x63\xc8\x1a\x3e\x72\x77\x05\xff\xb2\x9b\x7f\x53\xc2\x68\x4d\ +\x45\x23\x9e\x43\x86\xdd\x11\xb0\x12\xb8\x8c\xae\xe4\x00\x3e\x63\ +\xa3\xcb\x42\x3f\xf3\xf8\x4c\xf8\x44\x3f\x7f\x80\xae\x80\x3e\x80\ +\x73\x9f\x73\x20\x73\x6b\x48\x63\x71\xe0\x2a\x26\x85\x84\x71\x19\ +\x83\x80\xe9\x21\x1d\x0e\x84\x14\xc5\x93\x03\xd8\x90\xaa\x3f\x1d\ +\xec\x5d\x80\x64\x17\x93\x7d\x45\x9c\x3f\x87\x70\x32\xb7\xa6\x82\ +\xdf\x6c\x64\xb1\x2d\x09\xc7\x2c\x85\xab\xc0\x76\x2a\x96\x44\xd4\ +\x9c\xc8\x64\xf8\x57\x39\xd1\x8e\xd0\x44\x7a\xd8\xbb\xbf\xda\x94\ +\x11\x14\xed\x41\x6a\xcf\xa1\xd0\x2e\x71\x69\xe6\x6b\x08\xea\x8e\ +\x20\x48\x41\xa7\x90\x93\x73\x4b\x25\x10\x5a\x0c\x3b\x53\x03\x7c\ +\x33\x30\x81\xee\x23\x8f\xa3\xb2\xe3\x01\xaa\xc8\x4e\xb2\x78\x12\ +\x8d\x71\xec\xcf\xc0\x89\x7a\xd0\x2c\x90\xec\xa1\xaa\x2d\xf1\x67\ +\x44\x02\x95\x45\xf6\x54\xb8\x42\xb1\xf4\xe0\xd0\x84\x59\xf6\x8d\ +\xbc\xed\x83\x6e\x9a\x34\x4a\x74\x8d\x09\x82\x4e\x4a\x6b\x1a\x62\ +\x2e\x78\x54\xeb\x52\x89\x5d\x28\x9a\x01\x8d\x4b\xa0\x20\x3c\x44\ +\x47\xc2\x00\x1b\x50\xe2\xe0\x28\x89\x83\x29\xd6\xaf\xf2\xa6\x9c\ +\x32\x74\xb0\xf6\x3b\xc5\xec\x08\x01\xae\xa5\xca\x98\xe4\x95\xaa\ +\xe4\x83\xae\xf5\xec\xbc\x16\xf9\x61\xdf\xd2\x2f\x79\x66\xa2\x1a\ +\x75\xe9\x92\x72\x04\xb5\xa7\x81\xf4\xb6\x0c\xf5\x4b\x41\xce\x33\ +\x4f\xa7\x1e\x26\x2b\x47\x6c\xc0\xa4\xb3\xcc\x2d\x14\xaa\x4f\x1c\ +\x05\x9f\x0b\xe3\x18\xf8\x42\xc8\x85\x46\xa1\x12\xb7\x0a\xf8\xc9\ +\x02\xde\x45\x41\x2c\xac\x9b\x44\xf0\x35\x31\x0f\xa2\x01\xe8\x3e\ +\x09\x7c\x39\x71\x1b\x4c\xec\xf1\x10\xfa\x1e\xe5\x14\x0d\x7b\x76\ +\xc9\xda\xa3\xf9\x01\xec\x0b\xfa\x4a\xcd\x4c\xf9\x8a\x2f\x61\x61\ +\xcc\x69\x71\x96\x4c\x9b\xd1\xea\x8e\xbc\x4f\x65\x65\x9e\xaf\xdf\ +\xe7\x74\x56\xe4\x62\xc0\x84\x37\xe8\x5f\xc2\x6a\x47\x60\xc6\xc7\ +\xb1\x74\xb3\x3f\xa7\x49\x60\x13\xc7\xf2\x89\x88\x58\xe5\x60\x1e\ +\x4f\x1a\xb4\x91\x1c\x86\x84\x89\x3d\xeb\xe0\x6f\x25\xe4\xea\x6e\ +\xcd\x6d\xb0\x35\xb3\x4c\x71\xc0\x35\x14\x4f\x3e\xc5\x3a\x08\x1b\ +\xcb\x49\xae\xc8\xe8\xe6\x7f\xf7\x2a\x34\x44\x4f\x83\x9a\x40\x1f\ +\x18\x72\xe7\x3a\x91\x6e\x9e\x2f\x3c\x07\xe9\x36\xf8\xe8\x32\xf0\ +\x9a\x04\x9e\x18\x31\x58\x29\x84\xe3\x7a\x25\xb3\xc8\xfc\x0a\x1b\ +\xed\x36\x3f\x71\xef\xc8\x22\x80\xdf\x41\x73\xdd\xe2\x38\x16\x7a\ +\x27\x39\x8f\x73\xd0\xd9\x4e\xde\x35\x8a\xa6\x1f\xe8\xa9\x18\x9e\ +\x9d\xa2\x7f\x93\x01\xc8\x73\xb4\x91\xbd\xa9\xc6\x96\xd2\x52\xc9\ +\x35\x96\x0e\x4e\x93\x3e\x3c\x81\xce\x29\xd2\x87\x14\x2a\x4c\x1c\ +\x2a\x6c\x14\xaa\x26\x16\x93\x60\x7e\x15\x28\x46\xc8\x5d\x07\x68\ +\xec\x5d\x90\x75\xe9\xdc\x54\xbd\xb4\x89\xd1\xf1\x58\xc8\x50\x57\ +\x0e\xaf\x8a\x74\x47\x8b\x66\xf4\x71\x0a\x30\x73\x91\xcf\xa6\x65\ +\x74\x48\x38\xf7\xe3\x57\x81\x36\x29\x07\xf4\xa1\x33\x5d\x24\x99\ +\xaa\x09\x20\xd7\xb1\x90\x10\x73\xcc\xd0\xf7\x31\xc0\x0e\x0f\x51\ +\x55\x81\xa4\x56\xb0\x8b\x45\xf8\x1d\x09\x13\x9f\xac\x38\x76\x60\ +\xa9\xdc\x10\x0f\x22\x9d\x5d\x56\x99\xa1\x99\x64\x33\xba\x5c\x49\ +\xf9\xb4\x26\xfe\x60\x95\x57\xef\x48\x0c\x0c\x96\xb0\x46\x84\x62\ +\xa9\x8c\x58\x58\x1a\x0a\x15\x2a\x19\xb9\x9d\xbb\x44\x06\xd8\x33\ +\x03\xf2\xb7\xc5\x11\x69\xc1\x38\x5a\xc8\x8c\xa8\xc4\x10\xb2\x21\ +\x22\x37\xe4\x02\x36\x54\x2d\xa9\xc0\xd5\x6c\xa7\x59\xdc\xae\x01\ +\xfa\xb1\x78\x5a\x01\x7f\xfa\x06\xb7\x77\x25\xe8\x2a\xbc\x82\x03\ +\x26\x3d\x3d\x40\xce\xaa\x42\x72\xc9\x26\x86\x30\x2b\x56\x27\x56\ +\xb5\xcc\xef\x17\x64\x20\x4c\x06\x5c\x0f\xb5\x16\x56\xab\x72\x97\ +\xf7\x29\x18\x86\x5d\xbd\x26\xc4\x40\x9d\xb0\x8f\x57\xd2\x31\x9a\ +\x4e\x9e\xa8\x13\xc7\x05\x54\xa4\x19\xb6\x03\x84\x4a\x11\xb7\x1a\ +\x8d\x0d\x45\x4b\x7d\xc5\x80\x5a\x17\xf4\xe5\xc3\xd7\x56\xec\xde\ +\xde\x01\xdb\x2c\xba\x23\xf0\x59\x1c\x19\xb2\x02\x9a\x56\xf7\x71\ +\x50\x1c\xe6\x34\x3e\x0c\xcb\x9b\x9a\x9c\xcf\x86\xc0\x6a\x5f\x0b\ +\x9f\x5b\xf0\x1b\xf1\x57\x96\x20\x72\x81\x0e\x4c\xe1\x5e\xcb\x69\ +\x8f\x84\x69\x2d\xcf\x01\x22\x30\x86\xb6\xad\x35\xb6\x98\x01\xfd\ +\xd5\x37\x8a\x6e\x4e\x06\x03\x52\x80\x33\x1b\xc1\x99\xc0\x72\x27\ +\xa6\xea\xd0\xaf\x53\x26\x43\x5f\x71\xc2\x9c\x04\xcd\x00\x3e\x59\ +\xca\x21\x77\xc5\x86\xd4\x5d\xc2\x78\xb0\xa7\x0b\x83\x08\x54\x9e\ +\x64\xc3\x76\x8b\x40\x35\x4a\x34\x0b\x46\x53\x15\x27\x4b\x05\x58\ +\xcc\x83\x94\xd2\xa4\x0b\xcc\x3d\x33\xcb\x4d\x1c\xba\x2b\xc6\x98\ +\x35\xb9\x38\x25\xe0\xac\xce\xcc\xa6\xe2\x56\xaf\x33\x83\x57\x52\ +\x0e\xb0\x08\x44\x4e\x09\x99\x80\xda\x1e\x4c\x9b\x8f\x21\x2d\x32\ +\x1e\xb6\xb0\xdc\xe5\x04\x85\xdc\xd5\x66\x6e\xcc\x07\xdd\x31\x6a\ +\x9c\xf0\x27\x9d\x62\x65\xd2\x14\x2b\xff\xa4\x53\xac\x4a\x9a\x62\ +\x55\xca\x29\xae\x05\xaf\x8a\xf9\xef\x22\x00\x36\xca\xe5\xc5\x28\ +\x37\xed\x0d\x34\xe7\x99\xa1\x5f\xc4\xa7\x98\x31\x54\xe2\xac\x2d\ +\x92\x80\x5d\xe4\x38\x90\x3e\x4b\x43\x8a\x6a\x31\x97\x2f\x3e\xaa\ +\x76\x9f\xc7\x7d\x0d\x34\x13\xcb\x68\x42\x09\x09\xa5\x7b\x6c\xa7\ +\xf7\x8f\x5a\xb9\x31\x16\xfe\xb3\x0b\xc6\xa4\x5b\x31\x26\x4c\x5a\ +\xc9\x4b\x73\x4f\x20\x6d\x81\xb8\x8e\x1b\x60\x1a\x07\x8b\x58\xb3\ +\x96\x61\x97\xca\xae\x47\x95\x59\xe0\xba\x3d\x29\x97\xfe\xf4\x01\ +\x2e\xdd\x96\x39\x6a\x07\xdf\x73\xd0\x81\x08\xb8\xfc\xc8\xa2\x9c\ +\x50\xc5\x50\x5d\x9a\x0d\x43\x2d\x97\x49\x78\xde\xd1\x44\x32\xe5\ +\xa9\x25\x88\xa8\xa9\xd1\x23\x11\x29\xd1\x34\x34\x05\x9a\x1c\xd7\ +\x59\xea\x80\x63\x97\x37\xb2\x20\x86\xc6\x00\x63\x59\x6b\xc4\x76\ +\x1c\x56\x58\x44\x6b\x66\x8d\x25\x49\xb8\x4b\x89\xba\x19\x7a\xb1\ +\x5f\x88\x91\x9a\x59\xfd\x5b\x6a\x2e\x8a\x8e\xb4\x32\x36\x52\x5a\ +\x66\x89\x8e\xb4\x2a\x36\x52\x5a\x9e\x38\x11\x54\xbf\xaa\x52\x66\ +\x8a\x8b\x6e\x46\x5e\x66\xff\x13\x6b\x9c\xe5\x7c\x87\xf6\x63\x31\ +\x72\xc9\x2c\x97\x11\xab\x68\x79\x62\xa9\x72\x6a\xbe\x57\x00\x84\ +\xa7\x17\x5e\x76\x21\x54\x99\x3c\x53\x4d\x48\x37\x18\x4c\x34\x2b\ +\xe5\x4c\x73\x79\x98\x45\xf7\x88\xa2\x6a\xb5\xbd\x5f\x98\x27\xd3\ +\x50\xae\x73\xb8\x1d\x12\x0b\x76\xa9\x5c\x85\x1e\x78\x4a\x39\xea\ +\x51\xd5\x46\x45\x94\x70\x94\xe9\x68\xd1\xc2\x61\x58\x21\x9e\x72\ +\x9e\x9e\x29\xe6\xd1\xca\xec\x85\x00\x50\x01\xc3\xd0\x8c\x98\xba\ +\x30\x28\x1b\xa6\x9c\xf6\x88\x90\xb5\x1b\x0e\xc9\x5b\x9a\x3f\xd9\ +\xc9\x6c\x4e\x1e\x63\x67\x76\x77\x8a\xe1\x57\x44\x86\x67\xf9\x1b\ +\x53\x25\x3b\x60\xa2\x6a\x71\xf4\x43\xf9\x94\x65\x93\xc6\x8b\x02\ +\xcf\xce\xe9\x61\xf3\x14\x93\x77\x83\x72\xd8\x01\x74\x2d\x82\x77\ +\x25\x04\xc3\x8c\x58\x60\x36\x33\x5c\xd5\x16\x0e\xec\x18\xa4\x61\ +\xba\x92\x09\x6e\x5c\x99\x62\x35\xed\x7c\xf3\x00\x7b\x01\x0f\x07\ +\x9a\xc8\x3d\x46\x02\x89\xb4\x0f\x58\x05\x13\xcc\xf6\x69\x51\xc7\ +\x86\xd8\xd0\xa3\xe8\x76\x85\x63\x93\x01\xe1\x51\x6a\x69\x63\xc7\ +\xcb\x32\xf5\xa5\x1e\x2d\x40\x19\xb5\xec\x91\xd1\x00\x83\x93\x81\ +\xb5\x87\xa6\xc2\xc0\xdc\x96\xf5\x92\x69\xd7\xdf\x95\xb0\xfe\xa9\ +\xc5\xd6\x41\x02\x80\xe9\x8a\xab\xd9\xb1\xa9\x4a\x21\xcb\x6d\xb6\ +\x18\x38\xb0\x4a\xe5\x22\xa5\x22\x2c\x8d\x4b\x2d\x0c\xe3\x0b\x61\ +\x66\x90\x8d\x4e\x5e\x00\x98\x2f\x27\x2d\x83\x22\x0f\xb0\xe8\x1c\ +\xf8\x44\xfa\xb6\xca\xed\x54\x71\xcd\xd0\x44\x6c\xd7\xfe\x88\xcd\ +\x49\x4c\x5b\xca\xc9\x0e\x16\x93\x85\xb2\x8f\xa9\x15\x5a\xac\x1e\ +\x56\x5a\x14\x06\x5a\xfa\xac\x4a\x75\x29\xa6\xb9\x8b\x24\x7a\xf2\ +\xe5\x48\x59\x1f\xeb\x1b\x8b\x8c\x0d\x16\x78\xe7\x78\x78\xc2\x9d\ +\x30\x7c\x71\x0a\x26\x05\x18\xc7\x87\xc0\xb0\x25\x18\x65\x9e\xb7\ +\xb4\xe5\xb7\x0c\x28\x2c\x2b\x96\x40\xcc\xd5\x80\x28\x7b\x56\xce\ +\xa6\x3f\x1a\x45\x6b\xdc\x4a\xeb\x14\xcc\x04\xa7\x4e\x54\x0c\x54\ +\xd0\x24\x53\x76\x4b\xc3\x80\x1b\xa4\x36\x5a\xe2\x03\xad\x0c\x0f\ +\x94\xd6\x66\x89\x0f\xb4\x2a\x3c\x50\x5a\x93\xa5\x2b\x14\x19\x66\ +\x91\x10\xba\xa3\x22\x42\x2a\xfc\x37\x2d\x5f\xc3\x22\xc2\xb6\x03\ +\xce\x2a\x35\xa5\x65\x58\x3e\xc5\x6c\xeb\xc8\x1a\xb2\x47\x5a\xa8\ +\x06\x1a\xfe\x71\x6f\xd2\xe4\x9b\xcb\xca\x8e\x74\x48\x2c\x74\x6e\ +\x75\x8d\x76\xd4\x9a\x3d\xd4\x08\x35\xc0\xae\x17\x0e\x24\x98\xf9\ +\xb4\xe8\x89\xc1\x66\xf9\xe9\xd5\xdc\x9c\x08\x74\x43\x28\x22\x8a\ +\xda\xda\xdb\xf8\x6c\x43\xd3\x22\xde\x41\x1c\x25\xe1\x10\x89\x16\ +\xa7\xf4\xc3\x6c\xad\x0c\x83\x41\x5b\xab\x78\xc8\x4e\x1a\x79\xc6\ +\xce\x29\x27\x1f\x20\x6b\xb9\x9f\xe5\xc9\xd0\x1f\xdb\x66\x47\x30\ +\x2b\x17\xee\x22\x37\x2b\xb4\x10\x4d\x3e\x8d\xe1\x56\x68\x75\x73\ +\x6b\x2d\xc7\xf2\xcc\x22\x4f\x0a\x88\xe9\x52\xdb\x46\xd3\x82\x45\ +\xce\x3a\x43\xcc\xea\x4f\x6f\xbe\x6e\x98\xaf\x88\x28\x67\xce\x91\ +\x5e\x8d\x53\x3d\xe9\x34\x63\x6d\xd1\xcd\xc2\x64\xb4\x98\x66\x3a\ +\xa4\x3d\x47\x64\x9a\x70\x33\xcb\x48\xb4\xe1\x5a\xce\x36\x9a\xe4\ +\x31\xfc\xb2\x99\xe3\x05\xe8\x29\x46\x5d\x8e\xa3\xb2\x23\xa4\xac\ +\x7a\x8b\x05\x69\x7d\xc9\xac\xae\x74\x1d\x73\x54\xcd\xa8\x2c\x3d\ +\x56\xba\x18\x45\x73\xd2\xf2\x78\x88\x96\x79\x74\xe9\x66\xae\x99\ +\x0b\xcc\x2a\x8e\x10\x4c\x22\x04\x06\x06\xb1\x1c\xbe\x3e\x26\x77\ +\x0b\x58\x25\x62\x72\x1b\x45\x54\x91\x50\x0a\x9a\x24\x2a\xf9\xcb\ +\xdc\x03\x86\x73\x15\x28\x43\x57\x84\xbb\xa8\xc9\x4f\x9e\x82\x78\ +\x54\xc1\xb4\xd3\x08\x2b\x2d\x2e\xf0\xa7\x02\x4d\x17\x04\x58\x67\ +\x11\x68\x50\x66\x09\x2b\xce\x61\xe7\x48\xd5\xa1\x5c\x95\x4c\x8a\ +\x6a\x52\x5d\x14\xb2\xd1\x58\x4d\x4b\x18\x0a\x85\xe3\xeb\xd7\x59\ +\x9e\x85\xfe\x73\xce\x74\x60\x67\x41\xb7\x14\x26\xf1\x8c\x0a\x2d\ +\x71\x71\x69\x5d\x0f\x58\x11\xe0\xff\x50\xbd\x4b\x43\x7c\xd4\xc1\ +\xf2\xf5\x2f\x4f\x29\xb3\xa0\xdf\x69\x94\xaf\xe1\x2b\x34\x54\xc1\ +\x11\x07\xab\x95\x0e\x09\x4e\xb6\x99\xcf\x33\x5f\x10\x43\xef\x01\ +\x98\x74\xa6\x97\xe7\x0c\x08\x8f\xe5\x46\x0d\x3e\x44\x5a\xb6\x58\ +\x0d\x1b\x6b\x73\xdb\x24\x45\xd9\x07\xa2\xb0\x20\xe5\x55\x25\x54\ +\x6f\x3a\x7f\x9d\x9d\xb7\x12\x2a\x41\x0c\xf8\x02\x34\x7d\xc5\x4f\ +\xcb\x3d\x5d\x55\x80\x9a\x40\x5a\x1a\xc3\xbd\x74\x42\xa7\x41\x66\ +\x69\x53\x53\xd3\x26\x6b\x39\xb9\xb4\x76\xe7\x36\xb2\x1e\x6b\x81\ +\x98\x7b\x94\xe3\xe9\x94\x6e\x4e\xc9\x23\x92\x8f\x27\xb8\x4c\x32\ +\x10\x31\x65\x62\x71\x84\x4c\xe0\x7b\xec\xc0\x14\x85\x75\x22\xc2\ +\xe9\xc7\xac\x2f\x18\x39\x1a\x63\xb1\xf2\xdd\x40\x0e\x23\x94\xef\ +\x27\xa8\x1c\xa7\x8e\x3d\x60\x67\x62\xd4\x72\x30\x95\x94\x5e\x10\ +\xfc\x12\x10\xa4\x62\x4b\xa2\x02\xcd\xd0\xe2\x41\x1e\xf7\xf9\x54\ +\xd4\xa9\x80\x0c\x69\x21\x43\xe4\xb9\xb9\xf4\x2e\x1a\x47\x06\x0f\ +\xab\xc5\xf3\x3f\xd1\x6f\x4d\x2e\xa8\xd5\x59\xf1\xdd\xdc\x0c\x13\ +\xcc\x13\xd6\x63\x22\x3d\x20\xca\x57\x37\x01\xbd\xf5\x46\x60\x1e\ +\xe3\x0c\x1a\x10\x75\x38\xce\x47\x43\xc6\xc1\x42\x20\xfd\xa4\xbc\ +\xa5\xa3\xb2\xe0\x59\x56\xce\xe4\xb8\xa4\x65\x73\xc0\x16\xbb\x31\ +\x65\x92\x83\x7f\x73\x40\x10\xea\x64\x25\x13\x79\x98\x7d\xea\x31\ +\x56\x5b\x13\xa6\x67\x75\xb3\x90\x17\x65\xac\xc0\x1c\xb3\x68\x45\ +\xde\x28\x30\x24\x3f\x7f\x9f\x62\x13\xde\xa9\x4a\x37\xc9\xd5\x01\ +\x49\x74\xa4\x87\xd5\x99\x84\x1a\xe7\xf6\xab\x08\x9d\x2b\xea\x4a\ +\x1a\x35\xc6\x11\xa8\x09\x98\xd9\x94\x93\x8e\x30\x45\xfd\x66\xfe\ +\xbe\x87\xf3\xb3\x52\x45\x2a\x2d\x59\x65\x9f\x9a\xa5\x22\x93\xe3\ +\x8c\xfe\x43\x15\x31\x72\x23\x26\xf5\x8d\xd0\x6a\x1a\x14\x6d\xb3\ +\x70\x3e\x88\xac\x71\xb0\xb0\x69\x00\x1f\xc9\x5c\x3d\x2a\xb9\xd4\ +\x80\x4d\x60\x47\x01\x7a\x8c\xcd\xf0\x77\x6f\xc2\xf6\x2d\xc3\x75\ +\x8a\x93\xec\x95\x0a\x1e\xcc\x31\x45\x71\x4d\xca\xcd\xd9\xbb\xdf\ +\xcd\x19\xaa\x2a\xe1\xd4\x06\x65\x39\x0f\xb0\xd2\x38\x47\x43\x94\ +\x25\x4f\x58\x08\x75\x58\xe1\x48\x15\x92\xb3\x1c\x11\x03\x03\x51\ +\x94\x0d\xe9\x22\x12\x91\x96\xb5\x30\x2d\xe3\xe0\xc2\xc1\x23\xf1\ +\x50\x9b\x80\xdc\x44\x71\x5a\x4e\x2f\x1f\xee\xe3\xab\x57\x45\xb4\ +\x36\x57\xac\x71\x11\x97\x5c\xb0\x9b\xac\x82\x55\xa5\x44\x1c\x4b\ +\x96\x66\x2d\x5b\xdc\x15\xf5\xd1\xaa\xcf\x27\xd8\xef\x4a\x6d\x7e\ +\x60\x7d\x81\x07\x9f\x7d\x4d\x4c\x6a\x66\xae\xa6\x20\x31\x58\x2f\ +\x71\x65\xed\xe1\x11\x67\xb0\xf1\x8f\xcb\x4b\x33\x3f\xad\x4d\x33\ +\x83\x0b\x26\x21\xac\x58\x0e\xc2\xd1\x04\x29\x8d\xca\x8d\xa1\xf5\ +\xe2\xa3\x20\x54\xc2\x74\x4a\xeb\x91\xa3\x64\x14\x97\x2c\x4a\x4e\ +\x58\x59\x42\xc0\xc9\xc6\x27\x22\x59\x30\x16\xaa\x38\x73\x11\x86\ +\x6e\xa2\xa7\xe6\xfd\xc8\xbc\xe1\xa7\x3d\xb9\x89\x81\xb4\x37\x03\ +\x24\xe4\x80\x88\x43\xa0\x2a\xd5\x90\xce\xea\x75\x93\xb6\x44\x9a\ +\xc0\x12\xff\x63\x56\x39\x00\xd6\xf5\x5c\xdf\x17\xdc\xd9\x6d\xb8\ +\x92\x85\x45\x35\x5c\x48\x20\x80\xcd\xe2\x51\x77\xd1\x70\xdc\xa5\ +\xd3\x35\xaa\x2f\x49\x4d\xd5\xca\x5c\x4b\xa6\xd5\x5c\x24\xb9\x9d\ +\x0f\x19\xd0\x3e\xcf\x9c\x08\x01\xcc\x4c\x59\x85\x9e\xd3\x93\xd0\ +\x83\xd6\x97\x46\x9c\xbc\xf2\x01\xa8\x53\x3b\x11\xcb\x34\x50\xca\ +\xe5\xfe\x26\xf5\x72\xc3\x89\x1e\x66\xdb\xb2\xa2\xa7\xf0\xe2\x47\ +\x88\x38\x94\x9a\xc6\xe6\x15\x63\x30\x84\x5c\x08\xbf\x75\x73\x34\ +\xb1\xd2\x1b\x93\xe7\xfd\x0b\xa1\x11\xd9\x93\xe2\x9b\x49\xbe\x19\ +\xe3\xd2\xbb\xd3\xf5\x18\x0b\xe4\xe6\xd1\x5b\xa9\xc4\xca\x83\x2e\ +\x4a\x42\xb3\xca\x32\x61\x4c\x13\xb1\x3d\x62\x05\x49\xf6\x30\xc6\ +\xd3\x7c\xfb\x42\xd0\xf4\xb6\xe3\x07\x16\x98\x0a\xbc\x84\x87\x7e\ +\x49\x7f\x98\x84\x5d\x1b\xb7\x28\x35\xa2\x5e\xda\x31\x68\xe4\xdd\ +\x5c\x45\x14\x22\xa5\xd8\xa2\x1f\xc3\x22\xa6\x23\x42\x28\xfa\xbb\ +\x35\x76\x8e\x47\x00\xc6\xb9\x72\xf6\x89\xca\xeb\x55\xaf\xdf\xa9\ +\x12\x2f\x40\x85\xaf\x2c\x44\xc1\xfe\xfa\xcc\xe2\x4c\xa6\x9a\x2d\ +\x6a\xb3\xc9\xaa\x51\xb9\x21\x85\xa4\x0d\x51\xc7\x2f\x94\x45\x0b\ +\xf2\x98\xd7\xf7\xc0\x4f\x3c\x44\xa1\x29\xf7\x6e\x86\xfb\xc8\x1b\ +\xb2\x8a\x34\x25\xee\xbf\x93\x9a\x3d\x22\x1a\x39\xc4\x12\xb4\x02\ +\x8f\x85\xd6\x73\xbc\x72\x8f\xee\xd9\x08\x31\x25\xa1\x4f\x75\x98\ +\xa5\x84\x4c\x27\xc8\xdd\x0c\x91\xb7\x8d\xfb\x61\xf3\x5a\x0f\xb6\ +\x93\x0e\x92\x79\x96\x88\x4a\xdc\x02\xd2\x49\x1e\x19\x53\xc9\x97\ +\xd1\x24\x3c\x0b\x0b\x80\xa1\xcd\x71\xc1\xb4\xcd\xe5\x2a\x80\xb9\ +\x11\x5a\xbd\x17\x84\x8f\xc1\x94\x5c\x5a\x06\x33\x6a\x32\xc2\xb6\ +\x9d\xbc\x9d\x33\x29\xd3\x38\x95\x52\x96\x1e\xcb\x2f\x18\x56\x7e\ +\x24\xb5\x20\x7a\x27\x35\xa6\xd3\x9a\xa8\x13\x28\x7f\x8f\x26\xec\ +\xe0\x88\x72\xa6\x28\xdd\x9e\x8d\x14\x59\xc0\xda\x2c\x51\xa9\x99\ +\xe3\xce\xbb\xb0\x55\x0a\x55\xe6\x12\x96\x1c\x53\xaf\x9e\x7c\xcb\ +\x47\xb9\x1e\x16\x3f\xb4\x34\x44\x41\x13\x86\xb0\x27\x64\xe8\xc6\ +\xf6\x22\xc9\x8a\x9d\x70\x9d\xa3\x03\x4e\xce\x3d\xc6\xd9\xbe\x55\ +\xa8\x14\x69\xf9\x65\xce\x62\xc6\x4c\x41\x7b\x8b\x1a\x7d\x3e\xad\ +\x41\x80\x3f\xf9\xae\x90\x3f\x7d\x1e\x0e\xc3\x07\x4c\xeb\x85\xfc\ +\x34\xf5\xe6\x28\x1b\x5f\x18\x63\xa2\x3b\x90\x1f\x92\xd2\x26\x27\ +\xf1\x3c\x27\x72\x15\x63\x09\x6f\xf3\x64\x82\x62\x55\x7d\x4c\xbc\ +\x90\x11\x98\xc3\x98\x94\xcf\xbf\x93\x2a\x95\x24\x9d\x0c\xcb\xe1\ +\x76\x88\xe8\x91\x06\x8b\xdc\x94\x4a\xd2\xa6\xa0\xb3\x40\x6d\x40\ +\x2c\x3e\x67\x92\xdd\xe4\xad\xbd\x30\x9c\xc2\x77\x6e\x52\xaa\x68\ +\xcf\x72\xf2\x96\xc7\xa4\x54\xa8\x3e\x51\x1e\x25\xcb\xb9\x1e\x8d\ +\xdd\x18\xd3\x48\x63\xd5\x1c\x15\xf1\xcd\xa7\xa3\x0f\xc2\x86\x5c\ +\xb8\x55\xc0\x38\x79\x4b\x52\xb4\x38\xd3\xad\x02\xb4\xd5\xdb\xc9\ +\xc4\x75\x4c\x45\xf3\xd4\x45\x1d\x2c\x93\x8c\xc9\x7a\x43\x9f\x51\ +\xd5\x91\x84\xa1\x1b\xc3\x51\xa9\x84\xdb\x47\xd8\x99\xff\x0a\xd7\ +\x25\x93\x5a\x15\x8b\xa8\x96\x54\xfc\xf5\xe1\xa4\xad\xc4\x1a\x14\ +\xdd\x68\xe4\x45\x61\xb2\xa9\x8d\x14\x76\xd4\x63\x17\xb1\x93\x1e\ +\x03\xc6\x02\xc1\xa8\xbd\x9f\x55\x9e\x93\xe6\x51\x96\x61\x8f\xd1\ +\xa9\xa4\x75\x94\x69\xf9\x6c\x01\xf0\x59\xb8\x9c\x86\x16\xdc\x84\ +\xca\x74\xe4\xa2\x3a\xd6\xa3\x95\x62\x2c\x99\x4e\x8c\x95\x74\x25\ +\xcc\xb0\x19\x50\xd6\x47\xc2\x75\x52\x5a\x2c\x9c\xcf\xb3\xb9\xbf\ +\x8f\x55\x34\xa5\x9c\xe9\x8c\xd0\x4c\xe1\xe8\x66\x16\xdd\x59\x61\ +\x4a\xd8\x44\x94\xcb\x0a\x5e\x0d\x9b\xc2\x06\x87\x80\xc5\x1e\xb3\ +\x6e\x85\x1a\x60\xb4\xbf\x1e\x57\xe8\x7f\xcc\xda\x69\xce\x41\x24\ +\xf9\xe3\x79\x00\x81\xe3\xa2\x09\xbb\x9d\xba\x7c\x60\x6e\xc2\x3c\ +\xd1\x34\x65\x1b\x1f\x79\x3a\x39\xc9\xd3\x12\xc6\x55\x99\x7b\xfd\ +\xe0\xcd\xd4\xd9\xfb\xc3\xf8\xdc\x7f\x44\xc6\xfe\x88\x10\x28\xcb\ +\xa4\x6c\xe0\xdf\xa8\x9a\x05\x36\xd5\x32\x96\xc4\x4a\x9d\x81\x58\ +\x2f\x93\x82\x0e\xcf\xa4\xa4\xcb\xbb\xce\x59\xef\x60\x79\x6b\xf1\ +\x00\xb3\xae\x47\x25\x94\xd3\x57\x3f\x66\xdb\x4e\x0b\xd4\xe5\x81\ +\xda\xd4\x99\xfb\x0d\xa8\xea\x28\x4b\x50\x82\x1c\x02\xf6\x8b\xdb\ +\xd6\xaa\x66\xf5\x7d\x1b\x2c\x50\xe6\x5d\xeb\x87\x36\x4b\xd7\x23\ +\x6d\x65\x2a\x3d\x85\x26\xca\xa4\x74\x2d\x2c\xc2\x4a\xaa\x2f\xe2\ +\x8c\x8d\xb4\x62\x8a\xe9\x34\x1a\x12\x4a\xbb\x98\xfb\xe4\x0c\xfa\ +\xf8\x51\x7d\x2d\x22\xd6\xc2\x30\xb2\xb9\xc5\xc0\x4c\xb1\xa1\x48\ +\x66\x67\x94\x88\x1c\x90\x38\x78\xca\x22\x11\x93\x88\xa6\x0b\x80\ +\x63\x4d\xa9\x1e\xa2\x67\x85\x4b\x31\x68\x94\x12\xf8\x00\x5d\x23\ +\x5b\xa2\x10\xdb\xec\xe8\x05\x68\x06\xd0\x08\x60\x4f\x0d\xf1\x6c\ +\xca\x28\x4d\xb1\xd0\x33\xad\x25\xd3\x99\x34\xfc\x0b\x2a\x26\xd5\ +\xd7\xa2\xaa\xbc\x24\x86\x49\x2b\xd4\x17\x21\x92\xc6\x88\xcf\x17\ +\x2b\x80\xab\x76\x62\x65\xe6\x46\x73\x8f\xc1\x4a\xc8\x8d\x21\x75\ +\x64\x25\x55\xba\x93\xce\xb4\x07\x99\x9f\xa5\xe8\xd3\xf9\x02\x87\ +\xc0\x8c\x76\xa9\x52\x3a\x40\xd3\x7d\xf7\xf4\xa6\x25\x22\x2b\xa6\ +\x87\x49\x7c\x9e\x8b\x11\x16\x9d\x30\x39\xaa\x05\x3a\x4f\xa8\x02\ +\x32\xaf\x13\xa5\xa7\x14\x6c\x66\x77\xd1\xda\xa4\x69\x46\x36\x33\ +\x28\x80\xb0\x21\xa3\x3a\xb6\xbb\xc9\x4d\x5d\xc3\x72\x84\x7a\x1f\ +\xb9\xdc\x43\xd5\x36\x46\xd8\x19\x59\xc5\xdb\x1d\x74\x4c\xa3\xab\ +\x60\xfa\x81\xe5\x07\x69\xd9\xfa\xbf\xc9\x26\xa2\x4e\x74\x51\x13\ +\x9b\xc5\x58\x55\xc6\x2c\x87\x01\xb8\x49\xe9\x89\x86\x7d\x4b\xdd\ +\x87\xca\xc9\x50\x9d\x4f\x54\xe8\x26\x7a\xe6\x8d\xb2\x69\xd4\x01\ +\xa0\xef\x05\x52\x14\xef\xcf\x57\x13\x6d\x30\x92\xfd\xdc\x70\x1c\ +\x3c\x7a\xde\x2e\x1c\x0c\x52\x0c\x7d\xe9\x26\x3c\x33\x56\x9c\xec\ +\xe6\xb9\x3f\x1a\xea\xd3\x0c\xb7\x6e\x6e\x5d\x97\xa9\xa9\x40\xc3\ +\x37\xe2\x14\x11\xda\x70\x68\x0f\xb2\x32\xbd\x98\xdb\x85\xad\x30\ +\x42\x31\x87\xac\x76\x06\x89\xc7\x79\xd2\xb2\x7f\xb7\xb4\xaf\xa6\ +\x55\x4c\x48\xcd\xad\x03\x2a\x26\xec\x85\xf9\xa8\x4d\x35\x82\x88\ +\x33\x79\x5a\x4e\xd5\x08\x8b\x42\xaa\xa9\xca\xeb\xe6\x6d\xf6\xec\ +\x11\xdb\xc1\x9a\x04\x5a\xad\x4b\x6d\x84\xe9\x56\xda\xcd\x05\x23\ +\xdc\x44\xf9\xdd\x25\xb9\x99\xe2\x61\xa3\xc6\x00\xed\x5b\xcd\x09\ +\xa0\x7f\x98\xa1\xbf\x6f\x63\x5a\xfa\x3f\x11\x5b\xe8\x28\xef\x22\ +\xc9\xd1\x54\x0e\x5f\xdc\xb1\x3b\x6c\x2b\xba\x64\x9a\x1b\x87\xae\ +\xd8\x74\xd6\x96\x01\x07\x86\xda\x06\xa1\x73\x4e\x5b\xa7\x51\x54\ +\xd7\xad\x95\x24\x4c\x83\x28\x30\xa1\x7f\x20\x44\x51\xe4\xcd\x10\ +\x98\x62\x4d\xea\x20\x9d\x92\x44\x48\xf5\x24\xc3\xbb\xb1\x46\xb5\ +\xcb\x87\xa8\x7f\x2c\x0e\x7c\x26\x90\x92\x08\xec\xfb\xd4\x57\x4a\ +\xbf\x9a\xd5\x91\xe6\x32\xd5\xa5\x4b\x55\xa9\xa8\xea\x09\x78\xaf\ +\x94\x10\xcf\x87\xe4\x49\x6a\xe5\xab\x5a\x65\xe8\xe1\xa2\x2a\x29\ +\x40\xa5\x7c\xb1\x7d\x06\x2f\x6f\x8a\xb4\xb6\x48\x55\xeb\xa5\xa6\ +\xdd\xce\x63\x4c\x42\xee\x6f\x61\x85\x99\xc4\xe2\x5e\xb2\x29\x0c\ +\x2f\x55\xa8\x88\x93\x6f\xe7\x75\x9a\xd8\xb6\xc5\xa0\x0d\x34\xc1\ +\x1e\x9a\x46\x41\xed\x54\xa7\x95\x9a\x86\xa6\x75\x52\x29\x79\xb8\ +\x95\xd1\xe1\xd2\x16\x2d\x26\x0f\xb7\x2a\x3a\x5c\xda\xd2\xc5\xd9\ +\x68\xe9\x88\x80\x44\xbc\x44\x3b\x83\x1b\x38\x9d\xfa\xec\x39\x1a\ +\x7d\x94\x74\x2b\x4a\xeb\x93\x84\x87\xd2\x98\xb9\x33\x8d\xf3\x25\ +\xa1\xc3\x70\xea\x7c\xc9\x10\x3f\xe2\x96\x72\xa4\x59\xda\x48\x1e\ +\xe1\x3d\xcb\x22\xeb\xf5\x68\x83\xe9\x94\xe3\x15\x54\x89\xa3\xb4\ +\x0c\xa3\xd5\x59\xc2\x3e\x9c\x40\x3d\xc6\x52\x12\x2a\xae\xa8\xa7\ +\x80\xf5\x1a\x02\xfd\x00\x82\x32\x12\x8e\xc3\xba\x49\x6a\x1e\x8a\ +\x62\x28\x6a\x21\x4e\x78\xf4\x1c\x30\xc6\x69\x58\x7e\x97\x65\xff\ +\xd9\x19\x85\xb4\x8a\x7d\x06\x19\xe6\x76\x5d\xb4\xbd\x4e\xf3\xb0\ +\xe9\x8f\x89\xce\x3a\xa9\x54\xf6\x70\xa8\x91\x88\x7e\xc2\x45\x2c\ +\x91\x25\x50\x6d\x44\x92\xe8\xd0\x62\x69\x2e\xdc\xe1\xc3\xb2\xa7\ +\x0a\xcf\x63\xc3\x26\xdb\x05\x1b\xe4\xd8\x98\x95\xd6\x9f\xeb\x92\ +\x80\x98\xfa\xa9\xd5\x29\xa6\x9d\x45\xa7\x35\xd9\x59\xd6\xe9\xce\ +\x76\x49\xba\xa3\x43\x24\xdc\xe1\xcc\x95\x8a\x47\x95\xf7\xe4\x81\ +\x26\x0a\x21\x25\xa6\x1f\x4d\x4f\x56\x64\x4a\x08\xf6\x0d\xa3\x9d\ +\x18\x3d\x96\xc4\x4e\x35\x00\x71\xfb\x45\x13\x09\x24\xbf\xa7\xc0\ +\x1e\xe3\x95\x3e\x52\x8d\xa5\xd5\x5b\xe5\xe4\xc3\x07\x44\xef\x1d\ +\xc0\x8e\xf0\x30\x2b\x26\x1c\xe7\x8c\xf6\x02\x53\x5d\x0e\x1d\xd9\ +\xe1\x24\xd2\x09\x58\x2e\xf1\x54\xba\xc4\x7c\xf4\x68\x03\xac\x81\ +\xd6\x7d\x20\x1f\xb0\x76\x60\xc8\x06\xb0\x2a\x11\xee\x9c\xd6\xe9\ +\x87\x2b\xb1\x81\x42\x20\x53\x28\xac\x2a\xc1\xe6\x8b\x64\x00\xdb\ +\x44\x2f\xf9\x66\xaa\x69\x0c\xf5\xa2\x87\x74\xc6\x0c\x1f\x17\x63\ +\x02\xcc\x6d\x92\xf1\x2b\x6e\x49\xf6\xf0\x50\x13\x75\x4a\x8e\x83\ +\xff\x4f\x85\xff\x97\x83\x41\xb5\x1c\xfe\x3b\x56\xb3\x2d\x37\xd2\ +\x25\x2b\xef\x30\x0f\xbe\x3d\x78\x0b\x74\xeb\x58\x21\x39\xb3\x6e\ +\x5d\x2f\x6f\x3b\x78\x26\xde\x2d\x5b\x9e\xc9\x8a\x21\xd1\x22\xb5\ +\xf6\xf4\x18\xc7\x19\xa7\x1a\xcb\x7b\x96\x2f\x3f\x36\xad\x6d\xfa\ +\x49\xc9\x40\xac\x7d\x80\x1d\xe9\x93\x14\xcf\x12\x8a\x6a\x00\x11\ +\x04\x11\xe1\x2e\xd1\x23\xc0\xe7\x41\x12\x91\x54\x77\x71\xb9\x7a\ +\x5b\x21\x97\xb0\x80\x9f\x88\x21\xb1\x3c\x56\x17\xbe\xaf\xca\x56\ +\x2d\x0d\x35\x9b\x28\x6a\x3c\x33\x6f\x57\xfc\x90\x7b\x8c\xc7\xfd\ +\x69\x10\x84\x06\xd0\x78\xaf\xd9\x21\x0b\xfb\x5f\x2f\x67\x0d\x88\ +\x5c\xda\x19\x27\x30\x69\xc2\xa9\xcb\x76\xb0\x7c\xd4\x4a\x8b\x9b\ +\x25\x12\x37\xd1\x93\xda\xd5\xc5\xcb\xc1\x14\x52\x71\x2a\x7b\xba\ +\xf2\x65\x40\x9b\x50\xab\x8e\x4e\x88\x1b\x59\xf8\xd7\x51\xa2\x57\ +\xd0\x45\x8f\xfd\x2f\x40\x50\x58\x29\xb5\x0c\x06\x59\x66\x6e\x94\ +\x15\xa4\x89\x4e\x00\x29\x92\x37\x77\x23\x5c\x7a\x1e\x4d\xb8\xc9\ +\x67\x83\x9b\x2d\x8f\x3f\x10\x91\x4c\x9c\xe0\x31\x33\x3d\x7f\xa5\ +\x5b\x98\xa2\xb6\x46\x95\x92\x30\xfe\x13\x29\x47\x5a\x0c\x39\x1c\ +\x29\x3f\x53\x73\xa8\xe7\xd9\x39\x9e\x70\x1a\x34\x5c\xae\xab\xf5\ +\x0b\x26\xbe\x84\x4f\x5c\x72\x22\xce\xe8\x05\x52\x87\xab\x19\xbb\ +\xe5\x3a\x84\x86\x67\xaa\x73\x2a\x78\x44\xb1\x9b\x58\xf3\x20\x61\ +\xc5\xa5\xd4\x8b\x1c\xc0\x35\x85\xd4\x2f\x42\x31\xc9\x43\x05\x25\ +\x8d\x45\xc4\x5a\x6c\xee\x14\xb0\x71\xbd\x90\x24\x12\x95\x8c\xfa\ +\xa9\xcf\xbf\x1d\xe6\x39\x23\x1a\x13\x38\x7b\x3d\xab\x4b\xb2\x69\ +\xe1\x9c\x9d\x1b\xd5\x32\xad\xf0\x7d\xa5\xc8\x2b\x96\x68\x6a\xb5\ +\xd7\x18\xe6\x05\x77\xaa\x92\x09\x04\x2e\x4f\xd2\xf2\xd2\x65\x4e\ +\x15\x74\x3c\x7a\x49\x00\x3d\xab\x88\x12\x19\x5f\xec\xe6\x49\xa7\ +\x00\xec\x88\xf0\x38\x54\x5e\xd3\x99\x07\x3d\xcb\xea\xef\x1b\x30\ +\x84\xa5\x61\xf8\x93\x3e\xc8\x75\xe4\x52\x3a\x0b\xed\xa3\x0e\xcf\ +\x7a\x4c\xd6\x99\xd3\x39\xb8\x7a\x19\xd6\x9b\x84\xab\x7d\xe3\x45\ +\x3c\xba\xbf\xa8\xba\x55\xc6\xbb\xcc\xc8\x0e\x38\x5c\xf8\x57\xeb\ +\x2b\xa7\x0a\xdb\x7a\x74\x11\xae\x36\x20\xaf\x9f\x7e\xc4\x75\xaa\ +\x16\x61\xb6\xe8\x93\xc3\xf1\x66\x3b\xb2\x0f\x1e\x06\x78\x28\xfe\ +\x52\x9a\x75\x35\xdf\x4b\xb1\x7c\xfd\x4c\x5f\x9c\xce\xe2\xa7\x29\ +\x45\x49\x73\x95\xcc\x0c\x8a\xf8\x01\x22\x92\x9c\xac\xc4\x43\xa5\ +\x62\x45\x50\x4e\xcd\x29\x0e\xf3\x2b\xc3\x61\x81\xea\x42\x01\x3f\ +\xb3\xda\x3e\x27\x11\x72\x61\x15\xa9\x37\x7d\x7c\xc2\xe7\xef\x2d\ +\xe0\xdc\x41\x67\x5a\x40\xc2\xed\x7b\x16\xe0\x36\x51\x95\x13\x9e\ +\x43\x41\x56\xc0\xfc\x89\x8d\xd2\xd3\xaa\x02\x1f\x7d\x73\x1d\x8e\ +\x3b\xce\x2d\x3f\x5a\xbe\xc2\x8a\x68\x04\x24\xe1\x79\x85\x99\x23\ +\x56\x2d\x8a\x96\xd4\x1a\xa3\x6b\x52\xb3\xf5\x92\xd5\xbc\x46\x72\ +\x81\x24\xac\x77\x92\x08\x8b\x1e\xbf\xc4\x13\xd0\x92\x89\x54\x89\ +\x57\x34\x4d\xd6\x93\x59\xaf\x8e\x4b\x68\x6f\xfa\x15\x90\x0c\xa6\ +\x6f\x2c\xc0\x06\x20\x0b\x68\x29\xbe\x18\x1e\x33\x7d\xea\x01\x1f\ +\xec\x4a\xf8\xfb\x02\xe0\x51\xbb\xb0\x20\x03\x33\x2e\x28\xb9\x8e\ +\xbb\x00\xfb\x14\xc1\x90\x66\xc9\x2e\x4e\x46\xc6\xeb\x5e\x67\x15\ +\xc7\xad\xc0\xce\x99\xdd\xf8\x3a\x7b\x14\x27\xe6\x8d\x12\x70\x92\ +\x4c\xf8\xad\xde\xd5\x6e\x31\xbf\x20\x75\x2c\x3f\x0d\xf3\x27\x9c\ +\x2b\xd7\xf8\xa0\x1a\x8b\x57\xcb\xa3\x9d\x94\xb4\x1b\xea\x40\x3a\ +\x6e\x47\x88\x9d\xa7\x99\x72\xdb\x9b\xb0\x26\x06\x85\xcb\x43\x60\ +\x7a\xbb\xac\xb0\xb7\x11\x6f\x6f\x21\xfc\xd5\xa5\x21\x71\x97\xec\ +\x79\x84\x35\x96\x12\x6c\x6b\xf5\x15\xc3\x52\x46\xdd\xbc\x91\x1b\ +\x75\xb1\x3a\x84\xae\x96\x15\x20\x8a\x23\x3c\x4c\xce\x71\xc1\x87\ +\x9e\x07\x97\xfe\x69\x45\xda\xdf\x1c\x20\x02\xf4\xc5\x87\x19\x32\ +\xee\x84\x85\x3b\x13\xb3\xb2\xcb\xa9\x50\x64\xc7\xd1\x83\x61\x55\ +\x51\x17\xa2\x9e\x4e\x72\x0d\xc5\x2a\x74\xa8\x4b\xb8\x61\xa2\x0b\ +\x8a\x7e\xcb\x8f\xb3\xdf\xf1\x94\xab\x29\x44\x88\xcd\x6b\x6a\x54\ +\x81\xb5\x6a\x23\x5b\x6d\xf5\x94\x4d\xb2\x1c\x4f\x6a\x24\xbd\xac\ +\x3a\xda\xec\x4a\x87\x4b\xc4\xe9\xa6\x72\x5a\x41\x51\x48\x22\xfa\ +\x51\x6a\x22\x8a\xf8\xb1\xb4\x06\xb5\x3a\x4d\x19\x99\xf5\x85\x88\ +\x37\x8c\xf9\x11\x1c\x98\x95\xbd\x94\x2a\x7e\xc0\xbf\xc1\x33\x13\ +\x31\xcf\x59\xab\xa6\x37\xd5\xd4\x2e\x3d\x04\x43\x4f\x69\xe0\x61\ +\x33\x34\x67\x78\x01\x73\x15\xb7\xba\x27\x93\x92\xc3\xdf\xab\x6a\ +\x51\xbb\x84\xd5\x97\x30\xbf\x54\x25\xac\xc2\xe5\x7d\xba\x56\x16\ +\x4f\x84\xab\x9b\xf5\xf3\x31\x2e\x27\xf5\xf8\x5b\x7a\x49\xa0\xd8\ +\x68\xa6\xdd\x8a\x52\xc7\xd3\x0d\xaf\xf0\xe8\x0a\x83\xb5\x48\x58\ +\x41\x80\xb2\x91\xf5\x33\x36\x02\xc6\x6a\xa5\x02\x4a\xaa\x5c\xa2\ +\x13\x84\xeb\xd9\x96\xc3\xfa\x14\x8b\xba\x40\xa9\xbe\x44\x5d\x33\ +\x3b\x2c\x43\x77\x51\x69\x36\xac\x18\xa4\x7b\x02\x5a\xa6\xd8\x63\ +\x88\xa3\xfc\x30\x6a\xd1\x2a\x04\xdd\xdc\xf8\xe5\x93\xe8\x55\x09\ +\x69\xc3\x66\x3f\x4f\x10\x46\x01\x32\x99\xc5\x23\x8c\x14\xbb\x0c\ +\x7b\x79\xbe\x77\x2a\x30\x12\x48\x11\x53\xe0\xa7\xd1\xa3\x76\xd4\ +\x36\xed\x4d\xbd\x71\x11\x13\x6a\xd4\x56\xd9\x1d\x12\x65\x7a\xa1\ +\x9a\x5e\x4a\x17\x85\x40\xb0\x31\x6b\xef\x28\x4e\x5f\xb0\x9d\x28\ +\x4a\x1b\x8d\xb1\x3c\x7d\x82\x3a\xb2\x6a\x6f\x2e\xd2\xf7\x66\xdc\ +\x2c\x56\x2c\x6a\x9e\xe7\xe9\xf1\xea\x42\xc5\xc9\x69\x87\x30\x2b\ +\xc8\x54\x81\x5b\x04\xb3\x1d\xfc\xec\x9e\xcc\x36\xfa\x34\x4f\x52\ +\x81\x0f\x5c\xb0\x3c\xcb\xc9\x61\x41\x42\xd1\x9d\x60\x79\x4c\x36\ +\xa0\xc8\x54\x06\xd8\xfe\x04\x2b\x0e\x69\x9b\xfa\xb4\x1b\x33\x13\ +\x9d\xc4\xd0\x36\x48\xf0\x5b\x86\x05\x3c\x29\x07\xeb\x08\x7b\x9c\ +\x2a\xe0\x3e\x3c\xad\xec\xc6\x20\x76\xe5\x63\xd0\x88\x9a\x74\xc1\ +\x24\xec\x67\x55\x4d\x91\xc3\xe9\xf4\xce\xa7\x59\xee\xd0\xaa\x38\ +\xd8\xc2\x61\x2e\x8c\x68\xd4\x8b\xc6\x80\xb1\xca\x42\x5e\xc8\x9a\ +\x05\x2f\x6d\x2c\x75\x7d\x5b\x1c\x34\x4a\x67\x2a\xdb\x59\x26\x1e\ +\x11\x8d\x1e\x17\x11\x11\xa4\x61\x5e\xb6\xde\x96\xce\x90\x40\xe5\ +\x59\xe8\xa9\xec\xd1\x03\x86\x8b\x44\x17\xe2\xb4\x01\x96\x01\xed\ +\x92\xd8\xa9\x1d\xb6\x34\x39\xe0\x23\xcf\xf6\xa3\x4e\xd7\x81\xa4\ +\x81\x67\xf0\x5a\x6b\x19\x5a\x51\x51\x72\x3a\xc1\x08\xef\x89\x9c\ +\x0a\xe1\x62\xa4\xa4\xc5\xb9\x44\x74\xc2\x15\x87\x43\xf4\xe6\x36\ +\x28\xc8\x15\xc2\xe9\xcc\xf2\x20\x07\x5a\xef\x78\x5a\x43\xb6\xb1\ +\x49\xdd\x5b\x62\x5b\x44\xc8\x57\x53\x0a\xea\x98\x4b\xa2\x42\x52\ +\xbd\x25\xb6\x71\xc9\xab\x4b\x64\x3c\x63\xa2\xc9\xf3\x94\xd0\xbd\ +\x45\xb6\x4f\x99\x34\x11\x69\x17\x75\x61\x41\x37\x61\x49\x28\x51\ +\x8f\x2b\xc2\x48\x71\x6e\x13\xa1\xa5\xe8\x31\x65\x9b\x0b\x6b\xce\ +\x77\x38\xa2\xd8\x87\x2c\xd1\x23\xd7\xac\xb9\x53\x1e\x2d\x26\xe6\ +\x2e\x06\xfc\x60\x7f\xf8\x5c\x84\x3e\x7b\x96\x8f\x2a\x2e\xeb\xc0\ +\x5e\xcd\x12\x77\xfe\xf6\x70\x3e\x87\x9a\xce\x78\x81\x42\x37\x18\ +\x27\x63\x2c\xf8\xa2\x98\x9e\x06\x6a\xc4\xc1\x10\xdb\x61\x9c\xdf\ +\x8d\x14\x90\xb5\xe8\xe1\x76\x03\x84\x68\xde\xcc\xda\x45\x3b\x98\ +\x94\xe7\x1f\xd8\xeb\x59\x78\x94\xba\x27\x4e\x3e\xed\x29\xc0\xcb\ +\x91\x50\x98\xc7\xaa\x95\x49\x4a\x5d\xa6\xdf\xa2\xeb\x6b\x46\xa0\ +\x38\xbd\xa4\x5a\x0a\xb3\x18\x59\xdc\x94\xd4\xef\x8d\x0d\x17\x44\ +\xec\x26\x7a\x84\xa1\x9a\x76\xd3\xf5\x9f\x20\x02\x3d\x76\xcf\xac\ +\x14\x4a\x38\xe2\x19\xb1\xad\xa3\xda\x35\x60\xe3\x89\xb3\x87\x9b\ +\x27\x33\x43\x37\x5c\x04\xbe\x3c\xb4\xc6\x51\x62\x11\xd1\xd2\x53\ +\xe1\x45\xf4\x57\xa8\xa6\x73\xd9\x6f\x22\x3d\x12\x6d\xd9\xac\x34\ +\xf1\x5f\x45\xc8\x84\x5d\x59\x8a\x85\x63\x60\x18\xf3\xea\x7d\x6a\ +\x04\xa1\xdd\x4a\xab\x2d\xb0\xe6\x47\x95\x8b\xf4\x18\xc3\x4a\xe7\ +\x0a\xf3\x9b\x57\xa3\x15\x2d\x67\x04\xd4\x34\xad\x46\xa3\x91\x61\ +\x6e\x78\x89\x57\x45\x97\x67\x1f\x2b\x90\x96\xe3\x5c\xec\x58\xc6\ +\xc4\xa8\x4b\x83\x03\xac\xe8\x8f\x8e\xa9\x54\x38\x75\xea\x3d\x13\ +\xdb\x6c\xf1\xd7\xd3\x2b\xf4\x1d\x64\x27\x6a\xa4\x61\x9e\x3c\x52\ +\x3a\xa7\x79\xc7\x4e\xa3\x6b\xd8\x2d\xa7\xd5\x2d\xb3\x60\xac\x5d\ +\x38\xd6\x20\x32\x1f\xc5\xa9\x1a\x2d\xb3\x63\x97\xd1\x35\xe8\x81\ +\x20\x4d\x3b\xde\x4c\x80\x8c\x8d\x37\x44\x58\xe5\x9f\x1a\xad\x65\ +\x27\x8c\x36\x64\xe7\x53\x67\x16\x1a\x59\xba\x52\x0e\x50\x67\xa6\ +\xee\x56\xf3\x49\xd9\xc8\x20\x6d\x63\x4d\x95\xa2\xd3\x75\xea\xb2\ +\xaa\xe5\x32\xe2\x3e\xa8\x71\x3e\x4f\x80\x95\x43\xc9\xad\xc3\xab\ +\xb5\xe4\xd9\x98\xab\xd2\x3e\xd3\x95\x01\x61\xd4\xd0\xcb\x54\x65\ +\x0d\xde\xea\x44\xff\x20\xfb\x63\xf8\xd3\x6c\xe4\xd3\x8c\x21\x71\ +\x4f\x2b\xaf\xae\xcf\x05\x5e\xda\x52\xea\x6f\x63\x40\xb0\x5a\xc3\ +\x0b\x56\x95\x25\xea\x0d\xc3\xa7\xd8\x54\x66\x4c\xd4\x28\x86\x7b\ +\xdd\x0b\xdd\x23\x9e\x13\xb7\x26\x4d\xe5\xee\xe9\x5a\x4a\x6c\xa9\ +\x27\x47\x08\xb5\xd4\x20\x86\x96\x7e\x94\xed\x5e\x24\x0e\x46\xec\ +\x50\xa3\x0d\x40\x36\x2d\x2d\xe4\xa7\xdf\x30\x87\x36\xaa\x4a\x9e\ +\xc2\xd7\x2f\xe9\x2e\x19\xd3\x3c\xb0\x25\x15\x4f\x04\xaf\xd1\x53\ +\x97\x49\xc8\x94\x9a\x65\x11\x47\xf3\xfe\x4f\x66\x45\x4b\xa3\xd4\ +\x25\xf5\xf1\xdb\xb2\xc2\x5d\x7f\xa2\x25\x9a\xbb\x79\x72\x32\x7a\ +\xa4\x59\xcf\x15\xad\x26\xb2\x3f\x10\x2f\x04\xa5\x08\x77\x62\x9b\ +\x1b\xb6\x89\x19\x47\x89\xd3\x0c\xdd\x38\x63\x85\x07\x77\x4c\x6d\ +\xcb\xd9\xdb\x25\xae\x95\x7c\xc2\xaa\xda\x4d\xd4\x58\xac\xd7\x04\ +\xbb\x7e\x96\x05\x64\xf4\x76\x5a\xb7\xd8\x53\x1c\x2f\x95\x3c\x83\ +\xb7\x7b\xf1\x3e\x46\xc2\xab\xa2\x5d\x3f\xc4\x41\x6b\x16\x18\x5e\ +\x8d\x07\x6f\x40\x8a\x57\x3c\x47\xec\xbc\xb8\x38\x04\x6b\x7a\xbd\ +\x6e\x23\x5b\x09\xa8\xf5\xc1\xff\x4c\x15\x84\xef\x83\x6e\xf0\x69\ +\x70\xd7\xca\xdb\x18\x0f\x49\x1d\x9a\xd5\x45\x52\xf4\xcc\x97\x1e\ +\x09\x13\xa2\xaa\x8c\x74\x6f\xe3\x46\x47\x33\x33\xaa\xd5\x71\x42\ +\x07\x5f\x89\xae\x53\x92\xd0\x55\x36\x81\x4a\x31\x15\x1a\xaf\x92\ +\x3d\x80\x06\xbd\x97\x4d\xf3\x2c\x9b\x5a\x5f\xf8\xf0\xcb\x32\x24\ +\x93\xe8\x81\x18\x75\xbe\x4c\x38\xee\xd1\xf5\x2a\xbd\x71\xbc\xb6\ +\x5a\x70\xca\x65\x49\x30\x75\x09\x96\x95\x78\xd0\x04\x8f\x60\x6a\ +\x2b\x4d\xb9\xca\x7a\x98\x53\x5d\x4f\x52\x5b\xde\x93\xba\xd4\xd4\ +\x47\xd6\x2e\xe8\x97\x81\xfa\xa3\x76\x21\xad\x18\x3f\x25\x56\x74\ +\x92\x94\xba\x73\x78\x2b\x9e\x08\xa1\xa8\x32\xc9\xe4\x14\x1c\x2d\ +\x15\x99\x5e\x6f\xd5\x33\x62\xde\x5b\x12\x38\xfa\xb9\x3f\x9a\xd4\ +\x2d\xe1\x91\xb1\xf0\xbd\x8d\x0b\x92\x41\xc2\x6a\x01\x7f\xb2\x94\ +\x75\x8b\x69\x61\x3a\x33\xc1\xa3\xac\xae\xce\xd3\x21\xec\xfd\x3a\ +\x74\x9a\x5a\x3e\x20\xa4\x65\xf0\xd8\x10\x5e\xc3\x21\x27\x68\x5c\ +\xd4\x4f\x8f\x93\xd2\x11\x1a\xf2\x9a\x5d\xb5\x88\x5f\xd1\x1b\x88\ +\xf0\xb4\xb2\xab\x16\x89\x1b\xa2\x22\x2f\x75\xc0\x4b\x67\x11\xd9\ +\xb4\x43\xd1\x19\xbc\xc0\xee\x77\xd4\x1e\x6e\x83\x87\xa5\xa4\xd7\ +\xa0\x41\x68\x13\x06\x1e\x24\xac\x04\xc5\xd7\x4a\xb0\x9b\x16\xb1\ +\x6b\xaf\x23\x8f\x2f\xc0\x2e\xf2\xfd\xf0\xdf\x52\xdc\x11\xbd\x4c\ +\xb0\xc0\x96\xa3\x5a\xa7\x2e\xda\xdc\xdf\xbf\xd4\xe7\xd5\x7d\x05\ +\xdf\x8a\xce\x3d\x03\x06\xdb\x8a\x9e\x04\x2f\xa5\xd6\xf0\xb0\xd5\ +\xa2\xf1\xe8\xf1\x28\x1e\xda\xf4\xdb\x65\x34\x2c\xd0\x2b\x57\x22\ +\x8f\xd2\x1d\xa1\x37\x5d\x94\x43\x0f\x6e\xb7\xcb\xd1\x31\xe7\xc1\ +\x88\xea\x24\x6d\xa4\xb5\x8a\x2a\xa3\xeb\x63\xf7\x14\x33\xc5\xa2\ +\x75\x21\xd2\x46\xda\xa1\x8d\x14\xbd\x67\x59\x64\x3f\x46\x09\xbb\ +\x73\x44\x65\x2b\x58\xd0\x3a\x7c\xcb\xf5\x32\xc2\xea\x86\x78\xd8\ +\x53\x15\x4b\xf6\xe9\xb7\x25\xb3\x30\x3f\x1e\x71\xd6\x8e\xfa\x4f\ +\xb8\xbc\x34\x68\x99\xe3\xe6\x2d\x3f\x13\x01\xf2\x0c\x00\x32\x4f\ +\x44\x33\x1e\x51\xc2\x14\xed\x83\x17\x35\xe9\x92\x6e\x4c\x36\xfa\ +\xf2\x79\x3e\x95\xe8\x45\x27\xcc\x2a\x75\x77\x72\x68\xbf\xfb\xb8\ +\xd9\xc6\x6c\x0d\xb5\x2f\xcd\x7d\xa0\xaf\x40\x49\x47\xb7\xe6\x28\ +\xf0\xca\x6d\x44\x89\xc5\xd5\x25\x45\xe1\x3e\xf8\x14\x76\x4a\xaf\ +\x86\x9c\x19\x62\x14\x03\xaf\xe3\xed\x8d\xae\xbc\x47\x8b\xbe\xb1\ +\x91\xa6\xbc\x82\x47\x8e\x7b\x68\x5f\xb9\x5c\xc4\xbe\x62\x49\x97\ +\x3c\x6a\x13\x34\xc2\x04\x15\x6d\x59\x75\x7d\x5e\x2e\xc6\x6f\xc9\ +\x57\x96\x34\x69\x57\x95\x68\x8f\x0f\x02\xd7\xb3\x62\x03\xfd\x14\ +\xb6\xba\x18\xdc\x8a\x68\x64\x7d\x09\xbc\x95\x31\x7d\x5b\x85\x0c\ +\xfb\xf1\x72\x44\xce\x8f\xfc\x88\x0d\xa3\xa5\x60\xb2\x6c\x45\x31\ +\x36\x03\xcb\xda\x1c\xa9\xaa\x77\xa8\x1d\xeb\xb7\x68\xd9\x8a\xb1\ +\x23\xf2\xc6\x1c\x10\x0d\xcc\xff\x67\xea\x22\xa1\x5d\x6a\xff\x28\ +\xad\x46\x56\xed\x52\xb5\xb7\x9f\xc6\xb7\x99\x55\x1c\xb6\x98\xf5\ +\x5c\x90\x6e\x27\x8b\xb6\x5c\x15\x4c\x01\x46\x83\x5d\x26\xb7\xa3\ +\x6d\x9e\x4d\x10\x76\x76\xbc\x07\x9a\x4d\x44\x8f\x81\xa4\xde\x7e\ +\xe1\x73\xcf\xcc\x5f\x64\x76\x38\x2d\xe2\x53\x7e\xf1\x07\xc3\x97\ +\x28\x60\x96\x87\x61\xd7\x1f\x75\x2b\xc5\x7c\xac\x33\x8a\xde\x28\ +\xc9\x0e\xaa\xf6\x42\x31\xba\xec\xc5\x31\x49\xa8\x5d\x50\xa0\x84\ +\x3c\xbb\x9c\x20\xf2\xec\x5c\x79\xfd\xa1\x88\x71\xca\x0e\x19\xea\ +\xa0\x0f\xd5\x3c\x34\x8c\x89\x5d\x29\x22\x03\x5c\x82\xca\x27\x5c\ +\x01\xaa\x82\x84\x52\x7e\x87\x62\x5c\xfa\xe5\x5c\x4a\xb0\x85\x93\ +\xd4\xd4\xf6\xf7\x11\x90\x0a\x8f\x09\x75\x11\xfd\x66\x21\xe6\xff\ +\x28\xfc\x9e\xd8\xaf\x95\x83\x7a\x5c\x45\xe0\x9d\x08\xf4\x9e\x2e\ +\x7e\x6d\x3b\xa0\x2e\xeb\xbb\xc5\x4a\x00\x68\x1b\xda\xd2\xd7\xbf\ +\x26\x8e\xba\x24\x55\x5a\x9f\xa0\x49\x4f\x43\xc4\x31\xda\x12\x8d\ +\x4a\x2a\xa1\xbb\xa7\x04\x55\x26\x1d\x6e\xc9\x68\x6c\x47\x77\x9f\ +\x9a\xa5\x15\x76\x1d\x15\x25\x0d\x75\x9a\x25\xca\x76\xb3\x22\xad\ +\xf5\xb1\x47\x89\x0a\xe5\xf0\xe6\xf9\x71\xe1\x32\x2f\xf2\x5e\xb2\ +\xa8\xe9\xe0\xef\x27\x4b\x9c\xb9\x91\x31\xfa\x91\xca\x72\x21\x16\ +\x6e\xe7\x23\x24\x12\xdb\x9c\xc8\x00\xf1\xfb\xa6\xda\xf8\xeb\xf2\ +\xda\x29\xed\x6d\x23\xf6\x76\x24\x58\xaf\xa4\xbd\x18\x45\x84\xe1\ +\xf7\x83\x8c\xe4\x1b\xeb\x05\x32\xb4\x8b\xeb\xa7\x80\x66\x2b\xdf\ +\x5b\x26\xdf\x74\x94\x08\x68\x42\x17\xc4\x6b\x23\xcd\x8e\x8c\x34\ +\xcc\x58\x51\xbe\xdf\xca\xdf\x17\x57\xcf\x86\x0c\x99\xa9\xae\xec\ +\xd2\x1e\xec\xd6\xae\x25\x63\x86\x86\x38\x81\xcd\x62\x58\x7a\xf7\ +\x15\x45\x9b\xb3\x71\x28\xb0\x22\x68\xbe\x92\x96\x99\x63\x0b\x94\ +\x28\x49\xce\x8c\x37\x7d\x57\xd6\x5a\xb5\x2d\xa0\x57\x6b\x8d\x2b\ +\xcb\x5d\x29\x8f\x01\x5e\xa2\x1c\xd3\x76\xeb\xa5\x96\x13\xfe\xa6\ +\x12\x1d\xe2\x2c\xe1\x3e\x22\x42\xc9\xe1\xae\x25\xf1\x36\xf7\x5d\ +\x03\x2e\xb6\x48\x2a\x7b\x2e\x0a\x61\x65\xab\x98\x32\x9e\x23\x3b\ +\xdf\x6b\x70\x84\xfb\x9f\xe7\xe4\xc6\xa9\xc2\x83\xa8\xf4\xe4\xfd\ +\xcf\xc5\x8d\xdd\x89\x42\x74\x79\x42\x49\x30\xab\xab\xce\xed\x67\ +\xf4\x39\xb2\x8a\xd5\x2e\xd8\xb9\xea\x33\x9c\xc1\xad\x05\x11\xc2\ +\x37\x42\x7e\x79\xd8\xd7\x16\x49\x01\x66\xe7\xd2\x15\xce\xd7\xec\ +\x84\x43\xd6\xe0\x51\xed\x3c\xba\xd2\x58\xa0\xea\x03\x02\xe7\x47\ +\xa9\xa2\x03\x39\x82\x2e\x23\xdc\x95\xa3\x7e\x4d\xde\x8e\x7b\x1a\ +\x83\x64\x91\xd2\xc4\xca\xf2\x19\x5c\x84\xaa\x30\xc6\xbe\xfa\xb5\ +\x39\x6c\xd7\x65\xd7\x33\x25\x0b\x07\x69\x88\xa3\x5f\x1c\xe7\xd2\ +\xde\xdf\x04\xef\x57\x70\x32\xda\x24\x42\x5c\x5b\x27\xd2\xaa\xe2\ +\xbe\x44\xfa\x5d\xd2\x59\x4b\xe5\x5b\x52\x95\xd4\xaf\xa9\xa0\x2e\ +\xe6\x17\x59\xac\xde\x10\x99\xc5\x0f\x99\xbe\x98\x20\xe8\xea\x8f\ +\x2a\x9d\xdd\xba\x9b\x45\xc2\xd7\xc7\x46\x8d\xed\x78\xb4\xd3\xd3\ +\x02\x66\xd5\x63\xa0\x2c\xf8\xaf\x60\x3d\x41\xc2\xaa\x03\x28\x23\ +\x99\x1e\xc6\xb7\x42\x41\x4d\xa3\x6b\x30\x0a\xf8\x11\xfc\x80\x1e\ +\xab\x1e\xf5\x31\x3a\xee\x71\xbd\x1f\x2a\x40\x18\xa4\x59\xda\x21\ +\xfb\xc2\x28\x37\x6d\x42\x77\x97\xe5\x02\x0d\x72\x2c\xae\x97\xe9\ +\x94\x0a\xee\xa7\x58\x1b\xdd\xe9\xde\x58\x20\xd1\xd4\x9e\xa7\x84\ +\xa3\x04\xd7\xd1\x83\x34\xc1\x67\x1c\x6b\xe4\x40\x0d\x55\x8a\xa6\ +\x87\xfd\x05\x7a\x45\x30\xcf\xc4\xef\x8b\x31\x9b\xb6\x80\x84\xe5\ +\x70\x5b\x24\x08\x91\x83\xa8\xe2\xb5\x39\xcb\xe8\xe6\x74\x2f\x61\ +\x51\xd7\xf0\x7d\xe5\xaa\x11\x9f\xc8\x4e\xb0\xa6\xc6\x8a\x95\x8e\ +\x97\x60\xb2\xde\x52\xbe\x7e\x95\xbd\x06\x2d\x5e\x4d\x80\xf1\x4d\ +\x3b\x88\xc2\xbc\x23\x04\x73\x78\xde\x5e\xc2\x32\x17\x79\x62\x70\ +\xd1\x38\x46\xc4\xf1\x34\xd5\xa9\x23\xcf\x25\x77\xb8\x19\xb3\x82\ +\x72\xa1\x80\x92\x82\xd1\x8b\x37\xc7\xd2\x92\x74\x5a\x5a\x16\xf0\ +\x1e\x3e\x51\xa0\xce\x8d\x21\x52\x49\x97\xf8\x65\x40\x3e\x9a\xf4\ +\x51\x84\xea\xc8\x16\x3c\x1a\x45\xe0\x32\x01\x1a\xbd\x86\x2c\x7e\ +\x63\x50\xaf\x81\x20\xd9\x85\x49\x06\x6d\x14\xcc\xd5\x31\xf2\x73\ +\x85\x5b\xb4\x1f\xb2\x13\x79\x4d\x45\x72\xf3\x05\x28\xc0\x30\x4e\ +\x94\xdc\x28\xe3\x47\x27\x3f\x25\xb6\x71\xfb\xe4\xe4\x62\x23\x7a\ +\x63\x12\x29\x1f\xf1\xda\x8e\x08\x4d\x4b\x37\xa3\x17\xa9\x29\x79\ +\xc1\xc5\xd8\xbe\xa4\xdd\x8d\x2c\x6a\x8b\x20\x04\x85\x38\x3d\xce\ +\xea\x14\x46\x50\xd4\x8f\xe2\x38\x61\x02\x3a\x41\xc0\x18\xdb\xa1\ +\x5e\x23\x0b\x6a\x71\x4c\xd0\x52\xde\x2a\xd3\xd3\xfd\x4e\xce\x8e\ +\x93\xd4\xae\xd8\x5e\x31\xef\xc0\x0e\xa9\x4a\xd1\x13\x5b\xb7\xb6\ +\x7b\x63\xcf\xaa\xe6\x1a\x54\x68\xaa\x3d\x5c\x2a\x00\x05\x1f\xc1\ +\x66\x0a\x95\x56\x3c\x0a\x58\xf9\xb7\x55\x88\xa9\x57\xc3\x6d\xf8\ +\xd6\x4b\x61\xa1\x30\x40\x98\x13\xa3\x63\x52\x61\xea\x70\x06\xc0\ +\x0a\x45\xc0\x05\xd6\xdc\x9a\xa6\x1f\x92\xa8\x77\xff\x13\x8a\x83\ +\xd3\x3a\x01\xc9\xbc\xa6\x0a\xc7\xc6\x26\xf6\x2b\x59\xc9\xe7\x49\ +\xb3\x0f\x86\xf6\xc3\x24\xd5\x3a\xf8\x25\xf3\x8f\x68\xf2\x9c\x89\ +\x4a\x19\x53\xef\xb3\x17\x11\x81\x51\x10\xb6\x69\x08\xd0\x8b\xda\ +\xbd\x04\xbe\x51\x87\x38\x58\x88\x28\x1a\x11\x11\x35\xc3\xb6\x86\ +\x94\x1e\x06\x12\x16\xb3\xfb\x8a\xad\x58\x71\x00\x65\x37\xee\xc0\ +\xdb\xd8\xae\x66\x6a\x82\x4d\xd7\x3d\x9b\x69\xfb\x71\xb4\x01\x7a\ +\x09\x2b\x93\x54\xcd\xd6\x45\xe2\x2c\x46\xb0\x09\x7d\xb0\x41\xa3\ +\x8f\x5b\x53\xd3\xcf\xf9\x1a\xfa\xd8\x49\x2e\xd1\x6a\x40\xe8\x80\ +\xf4\xfa\x43\xf4\x74\x1a\x93\x46\xa6\x2e\x00\x16\x73\x30\xb1\xbf\ +\x1e\xd5\x17\x21\x2d\x02\xb0\xd9\x4c\x41\xc7\x98\x5e\xe7\xa9\x02\ +\x0f\x0d\x58\x91\x69\x98\x74\xb2\x49\xb8\x10\xd4\x88\x0a\x66\x9f\ +\xb6\xc6\x32\x8b\x6c\x9e\x5e\x0a\x46\x35\xbc\x9c\x56\x65\x52\xbd\ +\xb1\x2e\x63\xe5\x32\x2f\x7d\x4a\x66\xe6\xa3\xc2\x13\x63\xe3\xf1\ +\x5e\x2c\x13\x09\xaa\x72\x55\xa1\xca\xdc\x4a\x7d\xb2\x18\xca\x18\ +\x12\x94\xb8\x50\x2b\x8e\x10\x6a\xb8\xbe\x4b\xa2\x97\x76\xfb\x84\ +\xdd\x4b\xa2\x05\x8d\xc3\x30\x52\x35\x0a\x44\xe4\xb0\x48\x26\x47\ +\x15\xe7\xc1\x9c\x5b\x2a\xd3\x87\xa3\x20\x07\xfb\x05\x39\x5c\xf8\ +\x23\x3c\x32\x45\x72\x49\x62\x2b\xed\x02\x4e\x88\x2f\x00\xcb\x6f\ +\x34\xc1\xbd\xff\x25\x78\x21\x56\x55\x15\xcc\xac\x28\x30\xca\xba\ +\xcc\xe4\x56\x8d\xee\x93\x25\x5c\xf2\x9d\x87\x71\xb9\xb7\x2a\xbc\ +\x00\xc1\xca\x34\x1f\xc6\x08\x46\x8a\x40\x4d\x7b\x26\x49\xc3\xc1\ +\x69\x2c\x22\x8d\x6c\x59\x98\x08\xd8\x94\x12\x65\x5b\x15\x52\x98\ +\xb6\x5e\xe2\x8e\x19\x8f\x11\x4a\x90\x4e\xae\x02\x52\x54\x57\xa9\ +\x5a\x80\x82\xed\xd1\xce\xc7\x71\xeb\xeb\xee\x29\xae\x74\xa1\x16\ +\xd8\x7e\x32\x59\x24\x5e\x58\xc1\x34\x8f\xe8\x08\x94\xd4\xfd\x2a\ +\x7a\x70\x21\x87\x02\xc5\xc7\x5d\xc8\x91\xe4\x4c\xd9\xe6\xd0\xd5\ +\x30\x8e\x11\xcd\x9b\xc9\xdc\x3d\xb8\x69\xb2\xdc\x2d\xd4\xca\x3c\ +\x57\x34\x7d\x9f\x5a\x5c\x49\x79\xb6\x27\xa7\x4c\xdf\x27\x5f\x13\ +\x93\x74\x1f\x41\x52\xaa\xbe\x10\x72\xb2\x03\xb9\xab\xd5\x5a\xbf\ +\x46\xc7\x1d\x23\xe2\xb8\xbd\x98\x81\x5f\x26\x23\x91\xb3\x41\x47\ +\x0e\xcf\xbb\xa9\xee\xd7\x05\xf4\x70\x8d\x8a\x13\xd8\x45\xac\xba\ +\xc2\xae\xae\xbc\xde\x8a\x3d\x9b\xad\x04\x01\xad\xe7\xa1\x15\xa2\ +\x11\xcc\xec\xd1\x30\x93\x8c\x87\x30\x55\x07\x24\x7c\x77\x82\xc5\ +\xb3\x13\x06\x27\x00\xee\xba\x84\xce\xa7\x15\x30\xea\xc8\xf4\x07\ +\xbb\x16\x5d\x0f\x27\xac\xd4\x57\x17\x2d\xd5\xc0\xce\x68\xa1\xbd\ +\x2e\xb9\xe3\xb4\x04\x3d\x16\x5d\x30\xb0\x9f\x1d\x8b\xb4\x89\x54\ +\x07\x6b\x2e\x99\xc3\x20\xba\x76\x95\xd9\x7a\x18\xcd\xc4\xae\xec\ +\x1b\xb1\xb7\x53\xcc\x63\x19\xaa\x12\xb8\x1f\xe5\xbe\x7a\x56\x2a\ +\x44\xba\x38\x56\xbc\xea\x44\x7c\xb6\x79\x1b\x54\x40\x5e\x46\x16\ +\x3d\x0b\xc1\x8f\x72\x69\x86\x6c\x10\xd1\x16\x15\x40\xda\x10\x8f\ +\x4c\xcf\x52\xcf\x25\x35\xf6\xa1\x6f\x24\x46\x82\x66\x6b\xef\x25\ +\x95\xd1\xb3\x37\xb7\x8b\x8a\xf9\x10\x64\x83\x62\xf3\x14\x64\x1b\ +\xdd\x58\x56\xfa\x44\xec\xf7\xa7\xf7\x81\xa7\xa4\x3d\xc1\xf3\xd4\ +\x22\x51\x50\x46\xc3\x59\x5d\xea\xa3\xa4\xf0\x61\x9b\x5c\x96\xc0\ +\xcd\xbb\x13\x0e\xcb\x0f\x94\x5d\x1f\xef\xcb\x89\x22\xeb\x4c\x3e\ +\x55\x34\x0b\x61\x62\x2e\xd3\x46\x61\x23\xfc\x23\x55\x5e\xaf\x5a\ +\x02\x2a\x05\xa1\xa6\x7f\x3f\x4c\x2f\xf2\x12\xe6\xb8\x69\x17\x51\ +\xaf\x62\xa9\xbd\xca\x0f\xc6\x77\x6d\x8a\x0e\x8c\xa1\x74\x40\xb8\ +\xe5\x88\x6c\x23\x29\xdf\xea\xdc\x24\x5b\x80\x50\x13\x3b\x4a\x90\ +\x33\x79\x10\x59\xeb\x6c\xa0\xd2\x5d\x9b\x93\xe4\xdd\xf9\xf1\x37\ +\x88\x38\x8d\x34\x42\x54\xa0\x41\x19\x27\x2a\xa8\x1c\x4f\xdb\xb3\ +\x0a\xbc\x11\x99\xd3\xd4\x1d\xf3\x25\x6c\x7e\x6e\xf4\xba\xde\x18\ +\x60\xcb\xa1\x9a\x48\x78\x0d\x66\x40\x4f\x0a\xd9\xa5\xd8\x3e\x6e\ +\x05\xe5\xc3\xa4\xb0\xf0\xa1\x44\x5d\xa0\xb8\x8a\x40\x14\x4d\x8a\ +\xde\x0c\xd1\x1d\x17\xcf\xe5\x89\x1b\x89\x52\x2c\xde\xec\xb0\x2b\ +\x46\x68\x95\x14\xc6\xbf\x8b\xa6\x43\x5b\x16\x88\x4d\xa6\xdf\xe5\ +\x13\xf4\xe5\x6c\x2c\x82\x2f\x86\x3a\x52\x8e\xe9\x49\x8a\x2d\x76\ +\x6e\xcc\xd8\x9c\x94\xdb\x3f\x45\x7b\x35\x1e\x19\xdb\x47\xc2\xfd\ +\xe3\x05\xd6\xd9\x0a\x15\x3e\xbb\x70\x02\x1e\x0b\x0b\x5c\xde\xb0\ +\x9d\x95\xed\xe9\xf1\xfa\x28\xe0\x73\xb5\xd9\xab\x55\x07\x74\xb2\ +\xb1\x79\x89\x40\xac\x38\xe0\x28\x6d\x08\xd5\xad\x6e\x5c\x2b\x3f\ +\xd0\x07\x3b\x08\x07\xc3\x8e\x74\xc9\xb5\x06\x46\xc2\x70\x4a\x98\ +\x56\x19\x0a\xe5\xe5\x94\x43\x95\x08\xeb\x95\x98\x3c\xd4\xfb\x70\ +\xa8\x1c\xcb\xcc\x27\x0f\x36\x4f\x1b\xcc\xd4\x93\x33\x09\xb8\x12\ +\x8d\x64\x62\x83\x2c\xd0\x06\xf1\x65\xf2\x36\x19\xa6\x19\x38\x94\ +\xe5\xe4\xab\x00\xb4\x48\x1b\x2b\x64\x10\x56\x19\x6f\x26\x8e\xc7\ +\x4c\xbe\xe4\x11\x7b\xb4\x11\xcb\xd2\xfa\x62\x0d\x13\x44\x9e\x28\ +\x69\xe4\x83\x71\xe4\xa2\xcb\x13\x2c\xc9\x83\x5f\xac\x0d\xce\xce\ +\x82\x4c\x9d\xe1\xee\x02\x59\xb4\x58\x93\xc5\x0c\xe7\x2a\xdf\x1d\ +\x7e\x76\x43\xe8\x59\xca\x35\x2a\xc0\xa1\x83\xba\x18\x41\x75\x68\ +\xba\x1e\xc1\xc4\x96\x04\x5d\x83\x8b\x99\x31\x44\x7f\xee\x5f\x4c\ +\x23\x2c\x53\x52\x79\x32\xf8\x71\xd2\x54\xd3\x4c\xb9\x79\x25\x94\ +\x47\xd2\x79\xd3\x87\x8c\xa0\xd8\x2d\x83\x76\xa3\xc7\x74\x92\x07\ +\xd5\x99\x59\xef\xd1\xa4\x43\xd6\x8e\x03\xb1\x06\x49\xb1\x01\xba\ +\x43\x03\xb8\x84\x75\xb2\x11\x17\x55\x57\x63\x69\x06\x9b\xe7\x8a\ +\xf2\xef\x44\xb6\x9e\x7a\x68\x9f\xa8\x62\x19\x7d\xe8\xd9\xe1\xa1\ +\x19\x83\x4e\xb9\x37\x3e\x3a\xfb\x45\xcc\x16\xb2\x5b\x17\xdc\xc8\ +\x98\x8c\xd7\xfd\x9c\x49\x55\xb5\x49\x2f\x16\xdd\xcf\x80\xe2\x36\ +\xb0\x6a\xeb\x67\x8c\xc5\x2e\xe6\x4a\x5e\xfc\x82\xc4\xf1\xa6\x62\ +\x53\x36\x5a\xf2\x36\x67\x30\x23\x8f\xf5\x67\x2a\xad\xbd\x85\x3e\ +\x1a\x4b\x1c\x26\xa7\xee\x9b\x92\x73\xf6\x6d\xd8\xd5\x96\x13\x8d\ +\xb2\x14\xb6\x22\xad\xc4\x8c\x13\xad\x88\x46\x27\x36\x25\xbe\xd8\ +\x7b\xd4\x38\x49\xac\x76\x98\x89\x19\xd0\x31\x12\x48\xfb\x40\x15\ +\xe3\xb4\x54\x2b\x06\x38\x13\x5f\xa2\x0c\x33\x2e\x2d\x43\x55\x88\ +\x17\x2f\xfb\x4f\x53\x8c\xf7\xfe\xad\x68\x5d\x8b\x1c\xb7\x74\x8e\ +\xa7\xac\xc8\xcb\x00\x20\x2e\x09\x57\xbb\x35\x6e\xa5\x74\x1a\x2f\ +\xbc\x1c\xe2\x24\x19\x2a\x3f\x1d\xa2\xf4\x17\x43\x49\x54\xfe\xaa\ +\x3d\x6b\xe3\xbd\x5c\xb7\x24\x64\xdd\xe7\x68\xef\xb1\x63\x51\xd1\ +\xb7\x3b\xf9\xdb\x3b\x76\x26\xa6\xed\xc3\x03\xec\x9a\x6a\x80\x5d\ +\xfb\x1d\x60\xe7\x94\x03\xec\x4c\x1e\x60\x79\xc8\x0a\x8a\xdb\x92\ +\x51\x7f\x50\xf1\xcb\xa1\x7c\x60\x53\x06\x9c\x03\x17\xbd\xbd\x78\ +\xb4\x74\xea\x29\x44\xf9\xd5\x3e\x12\xab\x14\x54\xfe\x46\xd2\x64\ +\x2c\x74\x10\x9d\x2e\xcd\x8a\x3c\x41\x43\xfb\x9f\x04\x65\x60\x6c\ +\x4d\x2b\x52\x4c\xe2\x2b\xf2\x0b\x4d\x33\x37\x69\x1a\x14\x8b\xd1\ +\x59\xb6\x4c\x03\x73\x2c\x98\xc7\x22\x92\xea\xee\x0c\x56\x57\x91\ +\x8f\xc1\x60\x24\xc1\x10\x78\x76\x69\x19\xa8\x4e\x2b\x1e\x8a\x3c\ +\x29\xc5\x7a\xd9\x71\x40\x65\xf0\x87\x67\x9c\x97\x34\x23\x37\xef\ +\xe3\xae\x46\x8c\x1f\x23\x96\xad\x3a\x92\xc9\x1c\xa1\xa4\x8a\x08\ +\x16\x26\x71\x22\x0e\x58\x0f\x87\x83\x1d\x9f\x02\xdb\x9a\xe6\xf6\ +\x6c\x96\x8d\x8f\x94\x04\x8b\x6e\xab\xa1\x3a\x9b\xf0\x6d\x0b\x56\ +\x82\x89\x14\x8e\x2b\x1c\xc2\x6f\x5d\xd8\x4f\xb5\xd2\x6c\x7e\xa2\ +\x82\x45\xa4\x58\xc1\xb8\x5e\xad\xd5\x3a\x84\x8a\xa9\x2f\x41\x36\ +\x67\xb0\x34\x0b\x77\x5b\xf9\xb5\x09\x55\x59\x67\x86\x0e\xeb\x56\ +\xa9\xbb\x25\xd1\xaa\x1b\x16\x7d\xe0\xe5\x32\xa2\xb5\x9e\xca\x62\ +\x0c\x47\xea\x71\x85\x03\x27\xce\x21\x45\xd7\x79\x3c\x6e\xed\x18\ +\xa2\x4b\xc5\xd7\x92\x3a\x3b\x25\xdd\xef\x79\xe8\xb0\x3b\x32\x42\ +\xef\x1e\xef\xd7\x5b\x37\x6d\xe4\x37\x71\x6a\xd3\x34\x63\x23\x05\ +\x5b\x6b\x79\x5c\x3f\x0c\xd4\x1d\xa3\x6a\x59\x99\x4f\xc2\xe5\x9f\ +\xe1\x83\xbe\x2c\x04\xc6\x6e\x80\x3a\x06\xa4\xac\x0a\x86\x1d\x41\ +\xcb\xf8\x91\x68\xb0\x9e\x93\x1f\xa6\x05\x63\x76\x78\xeb\x86\x63\ +\x76\x45\x63\x5e\x8d\x58\x1c\xae\x96\x53\xbf\x2d\x4e\x61\xf7\x89\ +\x23\x00\xa1\x7a\x1b\x0b\x9b\x38\xfb\x5a\x70\x20\x0c\x21\x0b\x95\ +\x84\x0f\xed\x29\x2a\x35\x65\xf4\x5d\x90\x18\xcb\x91\x8b\x53\xf1\ +\x49\x1a\x9c\x79\x21\x41\x48\xd7\x53\x3c\x6c\xd7\x56\xff\x01\x7a\ +\x36\x81\x85\x2e\xe5\x0d\x57\xe2\x38\x32\x8b\xf3\xd2\x16\x2f\x94\ +\xfa\x69\x54\x13\x4d\x2b\x9f\x45\x35\x95\xb6\xd7\xea\x60\xbb\xb6\ +\x47\x11\x36\x4b\xab\x0e\x8c\x17\x99\x65\xb0\x0c\x30\xa9\xac\xac\ +\x56\xab\xfb\xae\x89\x16\x7c\x9f\x08\xaa\x36\xa9\x41\xac\x7e\x0e\ +\x27\xc1\xcf\x50\xf2\x7b\x87\xd6\xe3\x95\x2e\x53\xb9\x1b\x91\x99\ +\xea\xa9\x55\x20\xdf\xab\xdd\xb1\x33\xe1\xef\xbb\xb4\xbf\xef\x8a\ +\x2d\x43\xbd\x5d\x13\x7d\xf9\x44\x34\x38\xfe\x88\x65\xec\x4c\xbf\ +\x8c\x9d\x3a\x98\x3b\xe3\x60\xaa\xbf\xd6\x44\xff\x78\x22\x5a\x25\ +\x7f\x04\x98\xbb\xd2\x82\x79\x04\xd1\xef\x97\x8b\x86\xed\x95\x4b\ +\xd7\xc9\x2e\xed\x16\xd1\xf6\xde\x98\x33\x17\x7d\x55\x96\xd6\x29\ +\x37\x13\x1f\x07\x29\xc4\xe2\xf5\xab\x4d\x3d\x82\xfb\xbf\xa5\xbe\ +\x80\x2c\ +\x00\x00\x3f\x4c\ +\x00\ +\x00\xd3\xc1\x78\x9c\xb5\x7d\x0b\x78\x5d\x55\x95\xf0\x4e\xf3\x7e\ +\x34\x29\xaf\x02\xb5\xc0\x69\xc1\x92\x96\x24\x2d\x2d\xaf\x86\x82\ +\xa4\x49\x4b\x8b\x7d\xd1\x84\xbe\x64\x80\x73\xef\x3d\x37\x39\xcd\ +\xcd\x3d\xf1\x9e\x73\xd3\x26\x20\x20\x2a\x20\x2a\x0f\x41\x04\x51\ +\xd4\x91\x97\x8c\x2f\x14\x1d\x51\x41\x40\x61\x04\x7f\x7c\x20\xc3\ +\x3f\xf8\x40\xe2\xe8\x68\x67\xa8\x38\x30\x83\xd8\xc1\x99\x7f\xad\ +\xb5\x9f\xe7\x71\x93\x93\xf2\xcf\xc7\x57\x6e\x72\x73\xce\xde\x6b\ +\xaf\xbd\xf6\x7a\xaf\xb5\x57\x7d\x33\x77\xd4\xd3\xaf\x7c\xf2\x63\ +\xcf\x2c\x98\xff\xdd\x4b\x3e\xfb\xf0\xaf\x56\x33\xd6\x7c\x06\x63\ +\x6c\x07\x63\x4f\xfc\x13\x7c\xee\x64\xec\xc9\xcf\xc1\xe7\x2e\xc6\ +\xfe\x61\x13\x63\xb5\x2f\xc0\xef\x59\xf8\xfc\x39\x7c\xbe\x0f\x3e\ +\xff\x15\xbe\xef\x62\xac\x7e\x2f\x63\x1f\xfe\x2e\x63\xeb\xe0\xbb\ +\x6a\x87\x7f\xde\xfc\x29\xc6\x86\x4e\x61\xec\x03\x93\xac\xea\xb1\ +\x6b\x18\x7b\x17\x63\x35\xf7\x8c\x33\xf6\xf1\x4b\x58\xcd\xb7\x6b\ +\x18\x9b\xfd\x20\xff\xfc\xd4\x09\xac\x76\xd9\x1a\xc6\xe6\x34\xf2\ +\xcf\xaf\xd4\xb3\xda\xb5\x4f\xc0\xef\xa7\xf1\xcf\xaf\x7c\x9e\xd5\ +\x6e\x83\xef\xdf\xf5\x63\xfe\xf9\xc0\x9f\x59\xed\x17\xfe\x83\xb1\ +\x63\x5e\xe2\x9f\x8f\xdf\xcb\x6a\xbf\xf9\x57\xc6\xbe\xf7\x35\x56\ +\xfb\xe3\x7f\x60\xec\xfb\xef\x62\x75\x7f\xf7\x61\xc6\xae\x39\x9f\ +\xcd\x79\xff\x7a\xc6\x86\xdb\xd8\xa1\xb5\xdf\x62\xec\xbb\x93\x6c\ +\xee\x93\x00\xf7\x5d\x2f\xb2\xe3\xee\xfa\x33\x63\x27\x2d\x64\x4b\ +\x10\x9e\x1b\xde\xcb\x4e\xfa\xfe\x97\x19\xbb\xf1\xd3\xec\xa4\x97\ +\x00\xf6\x1b\x9f\x65\x2b\x7f\xbd\x82\xb1\x55\x9b\x58\xf7\x9d\x6f\ +\x63\xec\x3d\x2b\xd8\x59\x9f\x3d\x9a\xb1\x5b\x5e\x65\x67\xdf\x0c\ +\xeb\x3a\xeb\xfd\x6c\xdd\x0d\x97\x31\xd6\x51\x62\xeb\x6e\xfb\x20\ +\x2c\xaa\x8b\xad\x7f\xe9\x03\x8c\x2d\x3e\x85\x7f\x7e\x62\x0f\x3b\ +\xef\x34\x80\xb3\xfe\x3c\xf6\xce\xfc\xa9\x8c\x9d\xf1\x06\x7c\x9e\ +\xce\xd8\xca\x33\xe1\x73\x25\x7c\x5e\xce\xb6\x5f\x32\xc0\xd8\x61\ +\x0b\xf9\xe7\xb7\x07\xd8\x8e\xbf\xc2\x3a\x2e\x39\x9b\xed\xbc\xed\ +\xed\x8c\xcd\xbd\x9b\x7f\x3e\xdc\xc0\x76\xef\xf8\x04\x63\x0f\xfe\ +\x88\x8d\xbf\xf2\x1c\xe0\xf7\xcf\xec\xf2\x2b\x5a\x19\xbb\xea\x1c\ +\x76\xdd\xf1\x1f\x63\x6c\xe9\x8b\xf0\xf9\x71\xc6\x96\x2d\x84\xcf\ +\xdb\xe1\x33\xcf\x6e\xfa\xce\x3e\xc0\x9b\xc3\xee\x39\xfd\x1d\x8c\ +\x75\xdd\xcd\xee\xbf\x12\xc6\xb9\xa3\x87\x7d\xe1\x79\xc0\xf3\x79\ +\xab\xd9\xa3\x5f\x80\xbd\xbb\xe3\x15\xf6\xe4\x3f\x17\x19\x5b\x72\ +\x07\xfb\xe1\x7d\x87\x33\xf6\xa1\x9f\xb2\x37\xd9\xd3\x8c\xfd\xdd\ +\xa3\x55\x47\x7f\xe4\x45\xc6\x9c\x3f\x55\x2d\x78\x1e\xe0\x74\x0f\ +\x54\x2d\x7c\xf0\x2f\x00\xcf\x73\x55\x4b\xaf\xbf\x9c\xb1\xf2\x85\ +\x55\xeb\xfe\x1b\x68\xe1\xac\xff\xae\xea\x7f\xed\x7e\xc6\x3e\x5b\ +\x5b\xb5\x6d\xee\x79\xf0\xde\x49\x55\x17\xbe\x08\xf8\x7d\x60\x47\ +\xd5\xe0\xec\xeb\x18\xbb\xe7\xee\x2a\xf7\x90\x09\xc6\x1e\xaa\xaf\ +\x72\x3f\x7e\x1b\x63\xe7\x7c\xa3\xea\xaa\x95\x4d\x8c\x7d\xbd\x50\ +\xf5\xa1\xa1\x32\xec\xd3\xae\xaa\x0f\x7d\x10\xf0\x5e\x7f\x45\xd5\ +\x67\xaf\x00\x78\xac\x8b\xab\x1e\xf8\x9b\x46\xc0\xf3\xd3\x55\x8f\ +\xbd\x00\xf3\x8f\x5c\x58\xf5\xec\x0d\x3f\x03\x7c\xfc\x7b\xd5\x73\ +\x73\x8e\x67\x6c\xfd\xe6\xaa\x5f\xbd\xef\x00\x63\x5f\x3b\xbb\xea\ +\xd7\x87\xf4\x32\x56\x77\x55\xd5\x6f\xfe\x03\xe8\xf1\xbb\x17\x55\ +\xbd\xf9\x25\x78\xee\x23\x67\xcc\xaa\x7d\x04\xd6\x79\xfb\x4b\xb3\ +\x3a\x5e\xb8\x84\xb1\x85\x1f\x99\xb5\xf4\xeb\xb0\xae\x05\x8f\xcf\ +\x5a\xbb\x03\xe6\xfd\xe6\xca\x59\xdb\xdf\x68\x60\xac\xe5\xba\x59\ +\xce\x17\x33\x8c\xfd\xe0\xd8\x59\xc5\xfa\xdf\x30\x96\x9b\x98\x35\ +\x76\xc2\x61\x8c\xad\xdd\x3e\xeb\x3d\x2f\x5d\x00\xeb\xfe\xf0\xac\ +\x5b\xd6\xce\x03\x38\x8f\x99\xf5\xb1\xa7\xbf\xce\x58\xf7\xe4\xac\ +\x7b\x3b\x8e\x00\x1a\x5f\x35\xeb\xfe\xd3\x00\xdf\x37\x1c\x3b\xeb\ +\xef\xae\x81\x7d\xb8\xe1\x0b\xb3\x1e\xf8\x13\xac\xf7\xbe\xcc\xac\ +\xef\xde\x7f\x3d\x63\x3d\x7f\x9d\xf5\x68\xfe\x55\xc6\xde\xdd\x35\ +\xeb\x07\xef\xf8\x4f\xc6\x2e\xfb\xdc\xac\x17\xee\x7a\x08\xe8\xfe\ +\xea\x59\xbf\x98\x77\x0b\x63\x0d\x0f\x57\x57\xbd\xff\xfb\x8c\x7d\ +\x61\xb0\xfa\xd0\x8f\xef\x66\xec\xfe\x6d\xd5\x87\x8f\x03\xbe\xbf\ +\xf2\xb3\xea\x79\x87\x03\x9c\xa7\x5d\x5f\x3d\x6f\x2e\x9c\xb3\xfc\ +\xff\x54\x2f\x9d\x07\x7f\xbf\xe9\x6f\xaa\x2f\xc7\xf9\x2f\xf8\x43\ +\xf5\x07\x82\x75\x8c\x6d\xb9\xa5\xfa\xda\xe3\x60\xde\x6d\xff\x58\ +\x7d\xe7\x8e\xbb\xe1\x2c\x9e\x57\xfd\xb5\x3b\x01\x1f\xdf\x98\x5f\ +\xfd\xf5\x1f\x00\x7d\xfc\xfd\x44\xf5\xc3\xcf\xfd\x96\xb1\x8f\x9e\ +\x51\xfd\xfd\x55\x30\xff\x2d\x5f\xad\x7e\xe2\x1f\x2f\x62\xac\xe9\ +\x17\xfc\xf3\x8e\xd6\xea\x1f\xce\xfe\x1d\xd0\xd3\xc9\xd5\xbf\x6c\ +\x81\x71\x6e\x6c\xab\x9e\xdc\x0b\xf8\xba\xed\xd5\xea\x57\x47\x81\ +\x3e\x97\xdf\x56\xfd\xea\xc3\x80\xb7\xa3\x4e\xab\xfe\xaf\x36\xa0\ +\x93\xd3\x9a\x6a\x16\x1c\x0f\x78\x5f\xf4\x58\x4d\x97\x0f\xe7\xe0\ +\xca\x2f\xd7\x6c\xab\xbb\x99\xb1\x53\xea\x6b\x2e\xb9\x0c\xf0\xf1\ +\xed\xe7\x6a\xc6\x5f\x81\x79\xef\xdd\x57\x73\xd5\x1e\xa0\x5b\x67\ +\x79\xcd\x35\xef\x83\xf3\xbd\x66\x73\xcd\x35\x7f\xb9\x93\xb1\x2f\ +\x06\x35\x1f\x7e\xfe\x4b\x8c\x5d\x7a\x78\xcd\xf5\x0f\xc3\x79\xfb\ +\xf4\xca\x9a\xcf\x5c\x07\xf3\xd5\x5d\xc0\x3f\x6f\x3d\xbe\xe6\xae\ +\x93\x61\xff\xbe\xfc\xb9\x9a\xfb\xfe\x0d\xce\xcb\xca\xc7\x6a\x1e\ +\x69\x7a\x83\xb1\x8b\x6f\xa8\x79\xfe\xf9\x43\x19\xcb\x1e\x53\x33\ +\x59\xfc\x67\xe0\x43\xd9\x9a\xdf\xb6\x01\xbd\xcc\xfa\x73\xcd\xbf\ +\xf5\x7c\x8f\xb1\x15\x63\x35\xaf\xbc\x70\x1f\x63\x17\xdd\x57\x5b\ +\xfd\x3e\xd8\x8f\x6b\xdf\xa8\xad\xfd\x21\xec\x5f\xff\x81\xda\xb6\ +\x57\x03\xa0\x8f\x5f\xd4\xbe\x6d\x0e\xe0\x71\xc7\xf5\xb5\x4b\x7e\ +\x07\xe7\xc2\x7e\xa1\xb6\xef\xcc\x8b\x19\xbb\xee\xa7\xb5\x17\xbe\ +\x00\xf8\x3f\xe4\xc3\xfc\xf3\xab\xbb\x6b\xb3\xaf\xc3\x7a\x2e\x79\ +\x4f\xad\xf3\x47\x38\xef\x9f\xae\xa9\xbd\xe6\x2b\x30\xfe\xb7\xef\ +\xaf\xbd\xf5\x3e\xc0\xef\x11\xfd\xfc\xf3\x3b\xff\x54\xfb\xc5\x77\ +\xc2\xf7\xdb\xce\xab\xfd\xea\x3d\x4f\x02\x5d\xfd\xba\xf6\xa1\xea\ +\x1f\x30\x76\xfc\x68\xed\xc3\x2d\xb0\xff\x7f\xbb\xb9\xf6\xe1\xeb\ +\x81\x5e\xc7\xaf\xad\x7d\x64\x1b\x8c\x77\xd1\x29\xb5\x4f\x6c\x41\ +\xbe\xb6\xbf\xf6\x77\xd7\x03\x4f\x3c\x6c\x73\xed\x7f\xfd\x12\xf8\ +\xc5\x40\xae\xee\xd8\x7f\x81\xfd\x7c\xbc\x50\xb7\xf8\x8f\x9f\x87\ +\xf5\xdf\x5a\xb7\xe4\xea\x67\x80\xfe\x9e\xad\xdb\x7e\x34\xe0\x0f\ +\x30\xb3\xeb\x15\xc0\xeb\x0d\xe7\xd5\xbd\xeb\x59\x78\xee\x9d\xbf\ +\xaf\x2b\x5c\x0b\x74\xb5\xb5\xb3\x2e\x38\x06\xe8\xb2\xf0\x8d\xba\ +\x0f\xdd\xda\xc7\x58\xeb\x97\xeb\x3e\xbe\xe3\x29\xc6\x06\xaf\xaf\ +\xfb\xce\x95\x00\xdf\x82\xf3\xeb\x9e\xfa\x66\x2d\xec\xfb\x83\x75\ +\x7f\xa8\x05\xde\xdc\xd0\x57\xf7\xc7\xfb\xb7\x33\xf6\xd8\x7b\xeb\ +\xfe\xf4\x43\xc0\xf3\x71\xeb\xeb\x0e\xfc\x0f\xc0\x7f\xc1\xde\xba\ +\x37\xe7\x01\x9d\x9d\xb9\xb2\xee\xcd\xcf\xc0\xf9\x7c\xb0\xbd\xbe\ +\xe1\x46\xa0\x87\x93\x4f\xae\x9f\xfd\xf7\xc0\x07\x7b\x56\xd5\xb7\ +\x5e\x7d\x36\x3c\xff\x95\xfa\x25\xc7\x03\x3e\xde\xb1\xaf\xfe\xd4\ +\x21\xe0\x0f\x47\xdf\x54\x7f\xea\x1f\x60\x9f\x1f\xda\x50\xdf\xd7\ +\xb3\x84\xb1\xcf\xec\xad\x3f\xef\x38\x38\xaf\xb3\x9a\xea\x37\xfa\ +\x0b\x81\x7e\x97\xd6\x6f\xba\x07\xe8\xfe\x53\x1f\xac\xdf\xf1\xc3\ +\x3f\xc0\xef\x6e\x7d\xf6\xbf\x81\x3f\x1d\xbe\x8a\x7f\x7e\xfb\xd2\ +\xfa\x77\x7f\x11\xce\xeb\xbc\x5b\xeb\xaf\x7c\xf2\x6b\x20\x4f\x6e\ +\xad\xbf\xb6\x04\xfb\x7e\xf3\x5f\xea\x6f\xda\x0b\x74\xd9\xde\x53\ +\x7f\xef\x32\x80\xff\xe6\x47\xea\x1f\x7b\x13\xf6\xf1\x94\xdf\xd4\ +\xff\xfe\x65\xc0\xe3\x15\x17\x37\x9c\xf8\x20\xe0\xf7\xef\x8f\x6b\ +\x58\xfe\x7d\xe0\x33\xdf\x3a\xbf\xe1\xb4\x00\xe0\x5f\x32\xd0\xd0\ +\xf7\x10\xe0\xf3\xcc\xe7\x1a\xd6\x3f\xb5\x0c\xe8\xf5\xd6\x06\xfb\ +\x32\x18\xf7\xf8\xef\x36\xfc\xed\xd3\x83\x70\x7e\x1e\x68\xf8\xdc\ +\x4b\x40\xaf\xb7\x1d\xdf\xf0\xc0\x11\xed\x8c\x9d\xfa\xa1\x86\x07\ +\x6b\x60\x3f\xbe\xb3\xbe\xe1\x27\xcb\x01\xcf\x9f\xda\xd1\xf0\xdc\ +\x33\x2e\x7c\x3e\xd1\x30\x79\xc7\x23\x8c\x1d\xfb\x81\x86\xc9\xc7\ +\xe0\x1c\x7d\xfa\xe9\x86\x57\x36\x02\xbf\xfa\xc4\xfd\x8d\xd6\xcf\ +\x4f\x00\xb9\xf6\x28\x7c\x3e\x08\x72\x6d\x18\x3e\xe1\xbc\x3c\xf1\ +\x9f\x8d\x1b\x6f\x05\xb9\x77\xd2\xa5\x8d\xce\xcf\x01\x7f\x77\x0d\ +\x36\x0e\xcd\x5e\xcc\xd8\x97\xae\x6b\x7c\xf7\x47\x00\xcf\xf5\x07\ +\x1a\xcb\xc7\x03\x7c\x37\x55\x35\x8e\xed\x07\x79\x77\x45\x7d\xe3\ +\xd5\xf7\xc0\xba\x16\x17\x1a\x3f\x74\x3c\xac\xe3\x5b\xf7\x35\xde\ +\xf9\x57\xe0\x9f\x57\xd6\x37\x7e\x63\x09\xe0\xaf\xbb\xb3\xf1\x99\ +\xf9\xb0\xaf\x0f\x5f\xda\xf8\xec\x02\x90\x9f\x63\x97\x36\xfe\xee\ +\x78\xc0\xd7\xe8\xe9\x8d\x2f\x9f\x04\x72\xa3\xf5\xe2\xc6\x57\x56\ +\x00\x9f\x7d\xdb\x50\xe3\x9f\x8e\x83\x7d\xa8\xbe\xae\xf1\xaf\x6b\ +\x90\x2f\x3d\xd1\xd4\xf8\x18\xc0\xf9\xcd\x4f\x36\xb5\x7f\x02\xf6\ +\x29\x7b\x37\x7c\xc2\xba\xb3\x2f\xc3\x27\xac\x2b\xb7\xa2\xa9\xf3\ +\x11\xe0\x03\xa7\x57\x37\x9d\xfa\x79\x58\xd7\x7d\x2f\x36\xbd\xe3\ +\x44\x38\x17\x9f\xe8\x6a\x3a\xe7\xb3\x70\x9e\x56\x1c\xd2\xb4\xfe\ +\x6e\xe0\xd7\x8f\xff\xb4\xe9\x92\x97\x80\xde\x3a\xbe\x06\x9f\x47\ +\x32\xd6\x59\x07\x9f\x20\xdf\x3a\x77\x36\x39\x77\x00\x3c\x5f\xbd\ +\xad\x69\x6f\xed\x95\x8c\x55\x6d\x6e\xba\xe2\x06\x98\xe7\xdc\xfb\ +\x9a\xde\xfb\x5b\xe0\x07\x1b\xb3\x4d\x57\xcf\x01\x3a\x3c\xf4\xc1\ +\xa6\xdb\xae\x3e\x0a\xe4\xcd\xfd\x4d\xb7\x5f\x88\xfb\x73\xa0\xe9\ +\xbe\xb9\x70\x1e\x8f\x98\xcb\x3f\xbf\x33\xb7\xe9\xf3\x1f\x7c\x99\ +\xb1\xed\x67\x37\xfd\xe0\x42\x38\x8f\x87\x3c\xd6\xf4\x93\x2d\xdf\ +\x04\xfa\xfe\x65\xd3\x4f\xfe\x05\xf8\xd3\xbc\x77\x36\x3d\xff\xef\ +\x00\xdf\x27\x1f\x6b\xfa\xb7\x9b\xae\x65\xec\xf2\xa1\xe6\xfa\xbd\ +\x80\xd7\xcf\xdd\xd8\xfc\xb6\x97\x7c\xd0\x19\xea\x9a\x4f\xf8\x14\ +\xe0\xdf\x6d\x6e\x3e\xe1\x09\xa0\xf7\x23\xae\x6b\x5e\x74\x39\xe0\ +\xe7\xf6\xd5\xcd\x27\x6d\x81\xf7\xee\x1d\x68\xee\xfc\x1a\xc8\xa5\ +\xf7\x3f\xdb\x7c\xba\x0f\xeb\xfe\xfe\xfb\x9a\xcf\x39\x07\xe8\x77\ +\xc7\x1b\xcd\xbd\xcf\xc0\x3a\xb6\x3f\xd8\xbc\xf9\x36\xc0\xfb\xdd\ +\x03\xcd\xf9\xf6\x67\x81\x1f\xff\xa1\xf9\xda\x97\xea\x81\xff\xff\ +\xb2\xf9\x96\x3e\xd0\x27\x4e\xbf\xba\xf9\xb6\x43\x51\x7e\x3d\xda\ +\xfc\x99\xf7\x03\x7f\xae\x79\x57\xf3\xd7\xd6\x02\xdf\xfd\xf8\x87\ +\x9b\x1f\xbf\x1d\x3e\xff\xf6\xa9\xe6\x9f\x9d\x08\xfc\xab\x76\xac\ +\xf9\xb9\xcb\x81\x9f\xcd\x3e\xa2\xf9\x3f\xff\xd8\x0f\x78\x39\xb1\ +\xa5\x6e\x0b\x9c\xeb\xb6\xbe\x96\xa3\x0f\x80\xbc\xbd\xf3\xdc\x96\ +\x05\x4d\x40\x8f\xb7\xae\x6f\x69\xbf\x03\xf6\xed\xc6\x42\xcb\xc9\ +\x97\x03\x7e\xbf\xe1\xb5\x9c\xb1\x11\xce\x57\x63\x6b\x4b\xf7\xdc\ +\x9f\x80\x9e\xb2\xab\x65\xd7\xa3\xc0\x37\x6e\xb9\xaa\xa5\x78\x0d\ +\xac\xbf\xbd\xae\xe5\xb2\x97\xee\x01\x7e\x32\xaf\xe5\xca\x33\x81\ +\x5e\x3f\x79\x41\xcb\x4d\x9f\x81\x7d\x7d\xfc\xb8\x96\x5b\x6f\x44\ +\xfe\xf5\xf6\x96\x47\xee\x85\xf3\xbc\xe9\xc7\x2d\x4f\xff\x0a\xd6\ +\xfb\xe8\xce\x96\xe7\x5f\x01\xbe\x78\xca\xa5\x2d\x2f\xde\x0e\xfa\ +\xcc\x07\x3a\x5a\x26\x17\xcc\x62\x2c\x73\x75\xcb\x6f\xf6\x00\xbe\ +\xae\xb9\xa1\xe5\x4f\x2f\xc2\x7a\xee\xfe\xfd\xec\xf9\xaf\xff\x11\ +\xce\xf5\x9f\x66\x77\x17\x60\xfd\xdf\xf8\xf6\xec\x35\xbf\x81\xf5\ +\x3c\xf2\xc2\xec\x9d\x9f\x05\xf8\xee\xf0\x67\xef\xfa\x22\xcc\x77\ +\xf3\xa2\xd9\x17\xfd\x1e\xe8\xaa\xf3\x0b\xb3\x73\x77\x03\x5d\x07\ +\x97\xcf\x1e\x79\x03\xce\x47\xe3\xf7\x66\x07\xbf\xda\xca\xd8\xfc\ +\xec\xec\xb1\xaf\x7f\x14\xe4\xc2\xaa\xd9\x77\xbc\x0c\xf8\x2f\xac\ +\x98\x7d\xf7\x0b\x80\xa7\x93\x6f\x9e\x7d\xcf\xcf\xef\x02\x55\xf0\ +\xf8\xd9\xf7\x3e\xf4\x38\x3c\xf7\xa3\xd9\x4f\x3e\x09\x7c\xe1\xa1\ +\x87\x66\xbf\xba\x12\xe6\xfb\xfc\xed\xad\xf3\x8e\x01\x7e\x33\xf0\ +\x4f\xad\x8b\x6f\xc9\x31\xd6\x7b\x67\xeb\x49\x35\x40\x67\xb7\x3d\ +\xd0\xda\xf1\x5b\x78\xee\x91\xa1\xd6\x4d\xff\x07\xf0\xdf\x7c\x54\ +\xab\xf7\x09\xa0\xe7\x47\xff\xd2\x7a\xe9\x44\x07\xe8\x47\x97\xb5\ +\xde\xb0\x1b\xf4\xa3\xb3\xba\x5a\x6f\x72\x00\x3f\xc7\xb6\xb5\x3e\ +\xfd\x7f\xe1\x1c\xbd\xfd\xb3\xad\xfc\x9c\x3c\x0d\x9f\x40\x87\x8f\ +\x1c\xdd\xfa\xcc\xbb\x00\x3f\x17\x2f\x6f\xfd\xd7\xdf\x55\x83\xdc\ +\xff\x69\xeb\xfe\x49\xa0\x83\x0b\x8f\x6c\xab\xff\x08\xd0\xf7\xf5\ +\xd9\xb6\xe6\x39\xb0\x4f\xbb\x6e\x68\x3b\xf2\x2a\xc0\x1f\xfb\x73\ +\xdb\x71\x1f\x01\x3e\x79\x5b\xb6\x6d\x73\xb9\x1b\xce\xf3\x0b\x6d\ +\x17\x3f\xfd\x8f\xb0\xff\x7f\x6d\xdb\xf3\x3d\xa0\xaf\xab\xe7\xb7\ +\x7d\xb0\x19\xf8\xc0\x85\xef\x69\xbb\xe1\xbe\x7b\x61\x3d\x73\xdb\ +\x6e\x6b\x02\xbd\xe7\x7b\xbf\x68\xbb\xf3\xe5\xcf\x00\x1f\xf3\xdb\ +\xbe\x7b\x0d\x9c\xc3\x2f\x6f\x6f\x7b\xe6\x47\x40\xd7\xab\xbe\xd5\ +\xf6\xeb\x05\x78\xae\xff\xda\xf6\x7a\xdd\xb1\x20\x1f\x9b\xdb\x5e\ +\x5f\x0c\xfa\xc5\x47\x7f\xd3\xf6\x5f\x17\x03\xbd\xdc\xfe\x51\x20\ +\xc6\x1f\x78\x00\x19\x3b\x96\x6d\x61\x1e\x2b\xb2\x80\x59\x6c\x08\ +\x7e\x9a\x80\xff\x26\x99\xcd\x72\xf0\x7f\x9f\xd9\x0d\xc4\xf4\xe1\ +\x5f\x63\x4f\x2e\x67\x6d\xf1\xdc\x62\x00\xf4\xc9\x5a\xfb\x4a\x76\ +\x3e\xb8\x18\xbe\xa3\xaf\xaa\x70\xa4\x8c\x1a\x29\x80\xf7\x0b\x30\ +\x9e\xc3\x06\xd9\x3e\x18\x65\x82\xed\x87\xef\x5c\xf8\x66\x98\xfe\ +\x6f\xc3\xbf\x11\xfa\x6b\x01\xfe\x3e\x56\x75\x3e\xfc\x3e\x46\xef\ +\xe2\x7b\x36\xc1\xb2\x34\xf2\xdd\x30\x7e\xaf\xa0\x69\x87\x99\x7d\ +\xcb\xb6\x46\x71\x76\x2b\xf0\x2c\xbb\x68\x39\x7b\x5d\x3f\x70\x8b\ +\x83\xd6\x1e\xb7\xe4\x2c\xcd\xf8\xa3\x05\xb7\xe8\x54\x02\xf6\x04\ +\xd6\x0b\x80\x79\x6c\x14\xfe\x95\x60\x42\xbe\x74\x4b\x2d\xbc\x0b\ +\xff\x53\xd3\xb5\xe1\xe2\x61\x96\xc1\x92\x57\x1e\xed\xea\xea\xc2\ +\x51\xe7\xa8\x51\x07\xbc\x73\xf1\x7b\x1a\x37\xcf\xde\x09\x4b\xdc\ +\x0d\x8b\x2b\xb0\xd7\xe1\x1f\x2e\xc5\x03\xd4\xe0\x37\xc3\xf0\x5b\ +\x19\x16\xde\x0e\xdf\x0c\xb3\xc5\x31\x84\xef\x26\xc4\xe0\x3f\x44\ +\x4b\x00\x6f\x4c\x10\x6a\xb2\x71\x48\x15\x64\xcb\x08\x11\xc1\x90\ +\x63\xf9\x4e\xc1\xc9\x06\x4e\xce\xf2\x32\xbb\xe1\x87\x76\x7f\x71\ +\x14\x2f\x04\x7d\x65\xd0\x6f\x64\x3d\x62\x87\xa6\x06\x1f\x81\xb7\ +\x68\x47\xf0\xf7\x49\x78\xca\x05\x00\xcd\xdd\xc2\x9f\x6d\xf8\x0e\ +\xe9\x60\x10\x3e\x27\xe1\xff\x93\x34\xd6\x3e\x7a\x92\x53\x44\x91\ +\x16\xa9\xdf\x0b\x60\x44\x44\x47\x40\x3f\xef\x36\x68\xef\x8c\x9e\ +\x51\xd8\x4c\xc7\xb7\xb2\xe5\x52\xc9\x81\x0d\xc7\x9d\x85\x6d\xce\ +\x05\x43\xb0\xc0\x9c\x95\xf5\x0a\x5e\x09\x57\x1b\xc1\x81\x6f\x2e\ +\x16\x86\x18\xef\x0f\xc6\x0b\x0e\x2d\xf6\x34\x58\x6c\x74\x01\x08\ +\xf0\x7e\xf8\xad\x4c\xbf\xe1\x42\x86\xe9\xff\x23\xf0\xff\x89\xc8\ +\x71\x38\x8c\xc6\xb3\x7a\x05\x40\x34\x70\xe5\xd9\x6a\xd8\x33\x6c\ +\x4c\xbd\x5b\xdd\x53\xca\xe2\xb3\x8d\xe2\xd9\x52\x96\x1e\xda\x86\ +\x0f\xa9\xcd\x2f\x01\xc6\x39\x79\xd0\xc4\x40\x8e\x16\x90\xec\x00\ +\xdb\xca\x36\xc0\x4f\x2e\x60\xd4\x16\xe7\xaa\x03\x7e\xef\x67\xeb\ +\xd8\x7a\xb6\x16\xfe\x6e\x11\x16\x4b\x30\x0a\x62\x3c\x44\x2a\xbd\ +\x25\xc7\x0e\x00\x8b\x40\x13\x76\x29\xdb\x65\xf5\x0e\x6c\xdd\x40\ +\x58\x2b\xda\xa3\x1d\x56\xff\xba\xf5\x6b\x07\xf0\xd7\xac\x57\xf4\ +\x83\x92\xed\x16\x13\x60\x6c\x80\x19\x5e\x07\x84\x64\xd4\xa8\xb5\ +\x3d\xa5\x92\x3d\x8e\x8f\x36\xcb\x47\xe1\x77\x7a\xf8\x6a\x62\x08\ +\x08\x48\x49\x91\x08\x12\xc4\x38\xfc\x14\xc0\x22\x07\xe9\x60\xe3\ +\xbf\x51\x81\x6f\x24\xaa\x03\xf4\x57\x9a\xa4\x22\x32\xf8\x29\x99\ +\x9e\x54\x33\xec\x35\x56\x50\xa0\x9e\xa9\x10\x00\x7c\xa3\x60\x97\ +\x2c\x20\x9a\x12\x90\x89\x5d\x1c\x2c\xe3\xaf\x36\x42\x6e\xe5\x4b\ +\xde\x08\x3c\x11\x21\xa5\xc4\x05\xce\x61\xab\x59\x27\xe0\x7e\x94\ +\x48\xa8\xc8\x1c\x35\x55\xc3\xea\xce\x7e\xc5\x7f\x66\xf3\xf7\x56\ +\xf3\x6f\xe8\xcd\x09\xc2\x63\x86\x96\x38\x2a\xb8\xa6\x47\x28\x8a\ +\x8c\xf8\xbf\x48\x0f\xbd\x1a\x1d\x23\xe5\x42\xe0\x8e\x16\x9c\x4e\ +\xce\x4f\x33\x9d\x9c\x79\xa6\x23\x91\x84\xe5\xd5\x01\x17\x7c\x9d\ +\x95\xd4\x54\x75\xbd\x6e\x29\xcb\x0f\x48\x0b\x7f\x9a\x7f\x41\x0f\ +\xef\xe6\x0f\x1f\xe4\x4a\x7b\xe0\xdb\x01\xe2\x2c\x25\xc2\x58\x40\ +\x2c\x13\x49\x63\x8c\x8e\xb6\x4d\xdc\x26\x88\x1c\xdf\xb3\xf4\xda\ +\xb3\x04\x49\x74\xa9\x3d\x1b\x06\x34\x43\xb1\x90\x44\xf0\x98\x1b\ +\x6c\x25\xbe\x8e\x39\xb0\x8e\x02\x10\x5c\x51\xc2\xae\xcf\x48\x6f\ +\xc1\xe3\xa4\x20\x48\x88\x7e\xa7\x97\xce\x9e\x91\xbc\x18\x0e\x4f\ +\x60\x2c\xe8\x18\x1a\xb2\x92\x24\x48\x9c\x7a\x3e\x70\x1c\xcd\xb1\ +\x0b\x28\x6e\xe8\xa8\x86\x07\x6e\x82\x17\x7c\xc7\xda\x20\x68\xb9\ +\x4d\x8d\xe2\x3b\x1b\xe4\x76\x77\xc3\xde\xd8\x00\xf2\x04\x1d\x77\ +\x93\xa7\x17\x48\x74\x95\x08\x60\x2e\xd7\x2b\xcd\xf3\x36\x1a\x92\ +\x2f\x80\xd8\x7b\xc6\x41\x99\x95\x2b\xd9\x7b\x8a\x15\x27\x5e\x68\ +\x28\x2f\x0e\x4d\x3d\x49\x53\x17\x88\x3c\xc2\x13\xb4\x6c\x75\x46\ +\xbc\x31\x27\xa6\xc3\xf4\x39\x05\x53\x87\x19\x20\x5a\x2c\x54\xd4\ +\x53\xf4\x69\x0d\xc4\x13\x7a\xad\x25\x64\x37\x21\x36\x17\xd6\x60\ +\x4a\x21\x76\xb4\x8c\x03\xa4\xd5\x18\xce\x79\x22\x8a\x0c\x32\xa9\ +\xb8\x2e\x13\x02\xfa\x1e\x38\x02\xe1\x83\xc3\x55\x2f\x04\x20\x07\ +\x0b\xc1\x25\x14\xe1\x5b\x17\xa6\x0f\x22\xc7\xa9\x3d\x74\xa0\x10\ +\x63\x8b\x63\x0c\xa4\xdd\x60\x21\x13\x34\xfe\xe2\xd0\xd1\xc3\x03\ +\x86\xf3\xf1\x79\xfc\x4a\xc7\x4f\x2d\x7c\x93\x3e\x7c\x39\x77\xc4\ +\x29\xfa\xae\x57\x9c\x9e\xd5\x44\xcf\x24\xb2\xe8\x41\x78\x3b\x30\ +\xa8\xa3\x4f\x0e\x27\x0e\x64\x5f\x78\xf5\x5a\x99\x55\x0f\x56\x7c\ +\xf9\x58\x38\x1d\x28\xb4\x7c\xa2\xdc\x11\xe4\x2d\xb0\xff\x3e\xa1\ +\x69\x9f\xb1\x98\xc6\x3e\x6f\x4f\x71\xb0\x64\xe7\xcc\xe3\xa1\xbe\ +\xa3\xa1\x1e\x99\x81\x62\xc5\x0f\x09\x4e\x8a\x3b\x9a\x11\xc4\xc6\ +\x35\x43\xbe\xa7\x1c\xdb\xa5\xaa\x77\x0b\xf1\x91\x34\xca\x30\xe0\ +\xdb\x24\x43\xbe\x1f\x38\x96\xd6\x31\xf3\x04\xcb\x9b\x74\x20\x03\ +\x7a\xdf\x11\xe7\x08\xdf\x19\x21\x5a\x08\xcb\xcf\x35\x6b\xf6\x8e\ +\x16\xbc\x5c\x32\x97\xf1\x2d\x20\x47\xd8\x1c\x77\x04\xe4\x48\x49\ +\x7e\xd9\x81\xe4\xeb\x97\x33\xb0\x83\xb0\x65\x79\x3b\xeb\xf8\x15\ +\xd1\x84\xfc\x08\x09\x4c\x5a\x00\x08\x54\x09\xc0\x1e\x42\x8e\xa1\ +\x55\x71\x7a\x15\xe9\xa0\x7f\xd8\x09\xb2\x43\x38\xdc\xa1\x62\x38\ +\xfc\xff\x72\xfe\xb5\x20\x00\x93\x2f\x99\x24\x58\x0f\xcf\xee\x81\ +\x23\x66\xc8\x2f\xf1\x0d\xbd\xb8\x65\x46\xaa\x70\x49\x4c\xc2\x35\ +\x99\x12\x61\x77\x88\xde\x1b\x27\x66\xe7\x1a\x96\x44\xe7\x96\x72\ +\x50\x01\x7f\x1e\xa8\x65\x96\x80\xc2\xf2\x87\x1c\x27\xe8\xaa\x00\ +\xde\x5c\x38\x9e\x44\x04\xb4\x69\xfc\x80\x99\x34\x59\xb3\x26\xe7\ +\xd2\xb1\x68\xe2\xef\xe2\xaf\xf4\xe2\x2a\x58\xd7\x84\x52\xde\xf7\ +\x93\xba\x19\x5d\x93\x3c\xcf\x91\xc1\x0d\xe5\xe6\x48\x1c\x8f\x2f\ +\x02\x76\xd5\x05\x9e\xaa\x75\xa4\xe8\x8c\x56\x48\xc8\x64\x60\x44\ +\xa4\xbb\xdd\x84\x97\xf0\xa8\xcd\x6b\xdd\xa2\xeb\x0f\x59\x92\xd3\ +\x09\x4d\x9a\x7f\xab\x38\xfe\x26\x50\x90\xcc\x31\x70\x2d\x68\x48\ +\xa0\xae\x8e\xb4\xdc\x21\xac\x2a\x4e\xf7\x19\x25\x6c\x8a\x74\x22\ +\xc2\xec\xda\x34\x28\x17\xf2\x79\x88\x29\x09\xeb\x22\x18\xf2\xca\ +\x81\x95\x05\x81\x83\x1b\xc2\x11\x9a\x0c\x54\x91\x2d\x8f\xe9\x71\ +\xa6\x35\x34\x6c\x58\xc1\xb4\xe8\x29\x74\x1a\x3c\x76\x69\x35\xb8\ +\x33\x34\x23\x5d\x2e\x54\xb7\xf4\x6a\x9b\xd8\x29\xb5\x88\x26\xbd\ +\x53\x9a\x90\xa4\xd8\x8f\x3e\xdc\xc2\x36\x92\x20\x18\x0c\x21\xb1\ +\x66\x23\xc8\x33\xe3\x71\xfc\x95\x1e\xff\x52\xca\xf3\x64\xd1\x99\ +\x12\xc3\x2a\x5d\x7f\x58\x18\x8a\xa3\x4a\xd6\x0f\xc3\x08\x13\xf0\ +\x2f\x88\xc9\xb3\xa9\x15\xe1\x7d\xf0\xbe\xe2\xa0\x31\x15\x92\xf3\ +\x3c\xcf\x58\xff\xae\x8d\x24\xa0\x13\x8f\x6b\xc6\x09\xf6\x38\x4e\ +\xd1\x5a\xce\xa5\xb7\x3f\x03\x09\x96\xf5\x46\xc7\x93\xd0\xd4\xca\ +\xd6\x10\x62\xa2\xdc\xaa\x6e\x73\x3e\xef\x3b\x81\xa1\x76\xf2\x2f\ +\xe8\xa5\xeb\x52\x9d\xe9\x38\x5e\x25\xde\x36\x00\xe6\xfe\x7f\xe3\ +\x6d\x1d\x87\x2f\x81\x47\x1c\x04\x96\xe2\x4b\x3e\x63\x0a\x85\x47\ +\x13\x49\x9c\x59\x6b\x4a\x9d\x6b\x9a\x82\xae\xd2\xec\x0d\x3d\x59\ +\xab\x57\x0d\x52\xc9\xd4\xfa\xbc\xd2\x21\x63\x0f\xdf\x48\xac\xd9\ +\x86\xa9\x27\x89\xff\x7b\xc2\xb3\x80\x92\xc2\x27\x9a\x1d\x4c\x69\ +\xe8\xf4\xd2\x77\x81\x50\x1d\xe5\x53\xfc\xf9\xf8\x0e\x25\x99\x3b\ +\x61\x4f\x91\x61\xfd\x96\x1c\x6e\xf0\x82\x15\x3c\x3e\x98\x46\xf7\ +\x32\xe4\xd0\x16\xfe\x8e\xa0\xd7\x7e\x73\x61\x5a\xba\x8a\x87\x2a\ +\xbc\xb6\x0d\x60\x8e\x5a\xff\x95\xec\x7c\x93\xb1\x72\xb7\x62\xc5\ +\xf3\xae\xa6\x5f\x1c\x67\x8b\xc2\xcc\x8f\xda\x79\x86\x2e\xb2\x55\ +\x3e\x21\x34\x87\x08\x88\x5a\xdf\x53\x0f\x4e\xf1\xf2\x5a\x62\xd8\ +\xea\xb4\xe9\x83\xbc\xd5\x0b\x00\x32\x83\xaa\xf9\x17\xf4\xda\x7d\ +\x29\x4c\x41\xae\x70\xe4\xc3\xc3\x4f\x79\x98\x93\xe5\x49\xca\x03\ +\x4d\x33\x78\x82\xe5\x2a\x19\xa6\x96\xb3\x95\x43\x9f\xcc\x20\xd3\ +\x9e\xf4\xac\xb6\xc4\xc3\x07\xde\x40\x4d\x13\x88\x9b\x7d\x44\x1d\ +\xc6\x21\xec\xcf\xda\x05\xd3\xa8\xa6\xdf\xe9\xf1\x7f\xd1\x8f\x0b\ +\x05\x4c\x3b\x8c\xc2\xc7\xc4\x23\xb2\x4a\xe4\x15\xf4\xce\x84\x72\ +\x4c\x8d\x86\x08\xf1\xb5\x18\x21\xe2\xf8\x59\x71\x64\x05\xff\xae\ +\x70\x58\xb5\x55\x89\x04\x5d\x32\x0f\x6b\x68\x17\xc2\x63\xeb\x3d\ +\x89\x1f\xed\x0b\x69\xe9\x15\xe4\x94\xf0\x67\x65\x6c\xb0\xe2\xe9\ +\x30\x1c\x04\x0b\x8e\x61\xb8\x8b\x74\x75\x8e\x47\x6e\x21\x99\xbe\ +\xfd\xb0\xc3\xda\xe4\xbb\x2d\xfd\xdc\x78\x53\xae\xe8\x43\xc4\xc8\ +\xf4\xb5\xf6\x45\xdf\x49\x67\x21\xbc\x57\xd2\x74\xc1\x3d\x79\x5d\ +\xcc\xeb\x08\x57\xed\x04\xed\x8c\x64\xb6\x13\xa8\x0a\x82\xb5\x36\ +\x4c\x2a\x6c\x81\x54\x74\x34\x02\x73\xf4\xdb\xb0\x72\xac\x27\xef\ +\xba\x43\x86\x15\x3e\x9f\xb4\x9a\x0c\x2a\x9c\x6a\x3d\xa7\x73\xc0\ +\x81\x7a\x0b\x05\x85\x71\x54\x1d\xf9\x5e\xd8\x23\x80\x73\x1b\x3d\ +\xc4\xf0\x04\xee\x8f\xeb\x4f\xbb\xf4\xa1\x08\x6a\x25\x62\xa5\x80\ +\x1b\x01\x50\x8b\x64\x29\xa2\x31\x3a\x6c\x38\x22\x06\xe1\x19\x8f\ +\x48\x2b\x20\x67\x98\x8e\x24\x84\xf9\xea\x64\x84\x7c\x3a\xfa\xa5\ +\x45\xbd\xc7\x2b\x0d\xa3\xb2\x3b\x5a\xb0\x41\x05\xce\x83\xed\x36\ +\xe8\x78\x23\x4e\x50\x1a\xe7\xc7\x54\x18\xcc\x21\xc8\xb7\xe0\xb3\ +\x04\xf9\x3c\x20\xf3\xfd\xc4\xa0\xc2\x9a\x9e\x69\x9a\x34\x1b\x2f\ +\x4d\x31\x54\x00\xfb\x8f\x3b\x3a\x46\xfc\x29\x20\x84\xec\x16\x54\ +\x86\xcb\x0b\xc8\x16\x47\x4e\x87\x7e\x24\xe4\x65\x19\x65\xd8\x4a\ +\xbb\x51\x46\x1b\xb8\xd2\x6f\x5a\x96\x15\x0c\x6f\x43\xaf\xf6\x8a\ +\x63\x4e\x29\xb0\x32\x6e\xce\x45\xd1\x01\xeb\x86\x0d\x1e\x57\x3a\ +\x1f\xb7\x41\x31\xf4\xc0\xad\x4d\xd3\x31\x28\x57\x34\x64\x8f\x3a\ +\xcb\xfb\xb6\xb9\xce\x1e\x5a\xd1\x45\x15\x54\xe0\x80\xcc\x13\xbe\ +\xb5\xcb\x59\x5f\xcc\x30\xb7\xc8\xbc\x99\xa0\x9f\xb9\x1a\x2c\x83\ +\x46\xa1\xed\x55\xb0\x2f\x91\xc2\x8f\x00\xb0\x96\xf7\x59\x63\x00\ +\x02\x58\x97\xf9\xc4\xe8\x48\x05\x68\xe7\x09\x58\xa4\xe7\xca\x80\ +\x42\xcd\x34\x3b\x34\xc3\x14\x83\x9d\x01\xac\xaf\x40\xcb\xd1\xd6\ +\xa4\x4b\x07\x75\x92\xb6\x89\x33\x43\x8e\x16\x3c\x76\xca\x4c\x32\ +\xa7\xf2\xf6\x58\xfd\xc0\xae\xac\xd5\x76\x29\x34\x95\xb7\x07\xbf\ +\x86\x6f\x85\x79\x98\x3c\x95\xd6\x0a\xf9\x5f\xb8\x01\xc1\x71\x9f\ +\x06\x80\xa3\x70\x22\x5f\xec\x3b\xb2\x4d\xe0\x8e\x5e\x21\x33\x25\ +\x2c\x7d\x20\x85\xe4\xb8\xb8\xbf\x13\x82\x1e\x67\xe2\xe5\xd6\xd8\ +\x3e\xde\x8c\xde\x14\x8b\x28\x1b\x63\x6e\x33\xc3\xa6\x18\x70\xf6\ +\x06\xc2\x52\xeb\x27\xed\x0c\x4f\x92\xd6\xd0\x6a\xf0\xef\x49\x8f\ +\x4b\xc6\xce\x85\x52\xd8\x17\xc0\x89\xd0\x25\x84\xbd\x06\xcc\xb4\ +\x64\x78\x57\x8f\x1c\xf0\x06\x41\xff\x11\x32\xa4\x9c\x05\xd8\xac\ +\x8d\x1e\x77\x8a\xcd\x17\x73\xd0\x13\xbd\xe2\x01\x84\x1e\x1f\xa0\ +\x59\x73\x33\x9b\x55\x89\x73\xbe\xac\x60\x4a\x96\x3e\x4c\xb6\x7f\ +\xc1\xf0\xc1\x2c\xe5\x90\x70\x79\x69\xc2\x43\x10\x13\xdb\x2b\x02\ +\x3e\x94\x22\x93\x6e\x0d\x8b\x22\x6b\x40\xc1\x87\x6c\x87\x7b\xe9\ +\xe2\x18\x3b\x5c\x63\x2c\x70\x8b\x65\x47\xa1\xeb\xa8\xc8\x54\xf4\ +\x57\x35\xcd\x36\xe2\x23\x79\xd2\x04\xc6\xc9\x33\xc9\x79\x1a\x9f\ +\x20\x19\x29\xa3\xa4\x67\xa0\xa3\x04\x65\x59\x49\x71\x44\x09\xac\ +\x6d\x20\xa7\x23\x82\x1c\x0d\x9b\x46\x4c\xd6\x1b\x19\x01\xe6\xc7\ +\x31\x33\x35\xb8\x57\xc6\xa4\x59\xa5\xc3\xa6\x77\x58\x4b\xb4\x3e\ +\x72\x99\x07\x82\x7d\xdb\x84\x57\xcd\xd4\xfb\xc9\xbb\x1b\xf5\xe9\ +\x0c\x87\xfd\x03\x6a\x61\x6b\xfb\xf7\xd8\xa3\xbe\x95\x73\x7d\x90\ +\x6e\xe3\xd6\x08\xae\x28\x81\x29\x2a\x1e\x8f\xce\xf7\x7c\x09\x25\ +\x38\xf2\xf9\x7c\xc1\x0e\xd0\xb7\x42\x4c\xf3\x48\x73\xc9\x7d\x7c\ +\x40\xb5\xe2\xe5\xc6\xb1\xaf\xb4\xc2\x08\xfa\x75\x54\x59\xd0\x84\ +\x09\xe4\xb4\x13\xb6\x03\xcf\x98\xa4\x9d\x0d\xfb\x9c\x50\x67\xcd\ +\x1a\x3a\xa3\x9e\xa6\x59\x4c\x73\x6e\xc9\xcd\x19\x5e\x2d\xfe\x2d\ +\x7e\x29\x16\x32\x20\x24\xa9\x74\xd6\xb9\xa4\x49\xc5\xe7\x42\x6d\ +\x69\x29\xca\x36\x35\xc3\x7c\x93\x8a\x38\xd7\x1c\x74\x01\xc7\xc5\ +\xa5\x5e\x3e\x5f\x79\xca\x85\x09\xec\xbb\x12\xae\xe4\x22\x24\xe3\ +\x0b\x8d\x88\x7c\x58\x78\x72\xd1\x5f\xd8\x29\x46\x42\xf1\x1b\x46\ +\xcc\xee\x98\xda\x20\xbd\xb9\xc8\x84\xa3\xb0\xec\x33\xe8\x49\x2d\ +\xd1\x10\x0a\xc0\x42\xe0\x8c\x24\x2d\x51\x01\xd4\x0e\xfc\xdd\xa1\ +\x25\x0d\x02\x58\xab\xe1\x7c\x8e\x11\x81\x60\x98\x85\xab\x6d\x78\ +\x40\xf6\xb2\xc5\xda\x68\x1c\x28\xb9\x23\xce\x5e\xc3\x32\xe2\x5f\ +\xe0\x70\x55\x67\x4c\xab\x56\xe8\xb0\x1b\x9f\x54\x9e\x20\x7e\x0e\ +\x87\x48\x69\xf6\x85\xcf\x22\x23\x40\x09\x47\x0e\x86\xd8\x81\x90\ +\x8b\x85\x7f\xf2\x50\x1f\x12\xc0\x81\x98\xd2\xe2\x44\xfc\x72\x9d\ +\x89\x44\xf9\x1a\x45\xa7\x86\x23\x06\x52\xa7\x50\xd9\xa3\x51\xa5\ +\x40\x51\x82\x34\x08\x4c\x38\x6d\x52\x51\x50\x45\x1f\x51\x19\x1d\ +\x61\x93\x16\xc7\xe2\x86\x73\x2e\x64\xc4\x7e\x10\xb1\xe9\xe3\xbe\ +\x01\x6b\x73\x8a\xc9\xd9\x34\x1d\xe2\xef\xa5\x32\x86\x3f\xd0\x21\ +\x0c\x94\x47\xe1\x0c\x21\x81\x71\xfb\x7d\x69\x4b\x29\x43\xca\x27\ +\x23\x4a\xe4\x88\x88\x70\x95\xc5\x53\x55\x8a\x5e\x69\xc4\x2e\x70\ +\x4b\xcb\x25\x6d\xd3\x4f\xdc\x61\x76\x1a\xbb\x40\x98\x94\x3e\x60\ +\xcc\x12\x7b\x35\x2c\xb0\x80\x38\xd0\x61\x2a\x7e\x28\xc3\xe7\xe4\ +\x90\x0b\x8a\x39\xcf\x2a\xd8\x7e\x60\x06\xcc\x44\x1c\x11\xff\xa6\ +\x9c\xba\x5c\x45\x35\x0f\x76\x39\x34\xb3\x3c\x19\x32\xc8\x1b\x86\ +\x64\x92\xde\x1a\x4e\x01\xd1\xa9\x38\xab\x0c\xf5\x22\x5c\x14\xe4\ +\xd5\xf8\xc9\x57\x0c\x02\x27\x41\xfd\x24\x7b\x5e\x19\x83\x95\xce\ +\xf6\x4c\x0c\x7f\x1e\x83\xeb\x88\x50\x57\xd8\xe8\x1c\x26\xd9\xf2\ +\xba\x18\x23\x96\xa6\x16\x3b\x0f\xc8\x3d\x3a\x08\x63\xfb\x55\x74\ +\x4e\x3e\xbf\x9f\x85\x93\x9d\xfe\xe6\x3c\x8f\x08\xa7\x62\x88\xcd\ +\x2b\x3a\x44\x8e\x59\x6e\xa4\xf8\x14\xa2\x80\x87\x50\x60\x11\xc1\ +\xe5\xdd\x42\x01\x7e\x27\xf2\xa4\x27\xcb\x45\x37\x70\x74\xf4\x4d\ +\xb8\xe4\x2e\x18\xd5\xb1\xb7\x43\xe1\xe8\x95\xc4\xb6\x45\x23\x9c\ +\xf5\xe2\xc1\x0a\xaf\x5e\x3b\x85\x33\x36\x88\x25\xb9\x58\x4a\xa8\ +\x74\x12\x7e\xcd\xa4\x3f\xe4\x18\xeb\x23\xae\x2b\x64\x8b\x92\x8b\ +\x2c\x16\xd1\x9d\x03\x42\x69\x96\x5a\x80\xe0\x1c\x0a\xe0\x0d\x15\ +\x13\x5b\x08\xfa\xed\x18\x55\x6f\xef\xc3\x8f\xc5\x33\x0a\x95\xe0\ +\x1b\xb4\xe4\xc3\x43\x8b\x88\x06\x4d\x6a\x69\xe8\xa4\xf7\xd6\x25\ +\x58\xb5\x7c\x21\x43\x40\x7c\x13\xe2\xd0\x71\xf6\x1c\xcf\x03\x4a\ +\x52\x6a\x16\xf4\x4a\x22\x90\x6a\x0b\xad\x0e\x35\x96\xd5\x3a\x01\ +\xe9\x30\x0d\xc7\x80\x67\xe6\xe9\x58\x00\x92\x9e\xb8\x33\x3e\xad\ +\x0e\xbb\xd2\xb8\x80\x98\x34\xc3\xb6\x02\x23\x29\x08\xad\xd4\x63\ +\x39\x4d\x49\x3d\x85\x00\x75\x1a\x7c\xf9\x98\x73\xcb\x6e\x77\x77\ +\x9f\x6b\x17\xbc\x41\xf8\x2c\x0c\xf6\x3b\x01\x26\x3d\xf8\x34\xa8\ +\xca\xd1\x2b\x08\xb9\xcc\x13\x04\x79\x74\xa3\x1f\x74\xca\x73\x69\ +\x70\x4a\xf8\x01\x14\x0e\x33\x23\xe2\xaa\xa6\x3b\x0e\xa6\x73\x4a\ +\x45\x20\x05\xab\x7f\xdb\xb9\xd6\x16\x3b\xc0\x5f\x7d\xab\xe0\x65\ +\x95\x2b\x23\x05\x18\xf3\x41\xa1\x73\xc9\x7b\xe4\x0a\xe7\x3d\xc6\ +\xe1\x86\x08\x20\x9d\x52\xd0\xdc\x53\xd8\x63\x8f\x83\x6c\x00\x2b\ +\x30\xe5\xc0\xb7\x45\x06\x8e\x4b\xc7\xdd\x44\x2e\x61\x69\x3e\xac\ +\x4e\x59\x7b\x22\xbf\xd3\x6e\xb8\xf8\x78\x93\x42\xf2\x7b\xa4\x83\ +\x66\x94\x86\x83\x58\x1c\xaf\x7a\x37\x11\x66\xc1\x50\x3d\x3a\xe5\ +\xa2\xb8\xc5\xab\xf8\x50\x3b\x28\xa8\x76\x46\x28\x5f\xb8\xa3\xd6\ +\xb0\x33\xbe\x38\xe5\xb2\x9b\x60\x5b\xb9\x7b\xca\x38\x33\x3d\x25\ +\x78\x25\xe5\x00\x73\x81\x4a\x6d\x58\x17\x06\x1e\x38\x47\x1f\x82\ +\xd5\x9c\xaa\xb7\x62\xb5\x9d\x1d\xf6\x41\xb2\x0c\x59\xa7\xbe\xa5\ +\x21\x4f\x4f\x1a\xf2\xf4\xb7\x34\xe4\xca\xa4\x21\x57\xa6\x1c\xf2\ +\x5a\x8a\x0f\xd2\x86\x81\xde\x88\x38\x9c\x20\x71\x64\x91\x86\x1e\ +\x08\xf6\x18\x56\x68\xe3\x09\x1e\xed\x6c\x45\x82\x9f\xc9\x11\x29\ +\x66\xae\xf0\xab\x8d\x28\x8f\x27\x72\xa9\xa2\xc8\xde\x76\x68\x7e\ +\x6d\x2d\xbe\xa3\x77\xc8\xc9\x0e\x73\xc7\xa6\x9b\xb7\xc6\xbd\xb2\ +\xb5\xc7\xc6\x8c\x6c\x8c\xfb\x01\x17\x06\x52\x59\xd1\xc7\x25\x0f\ +\xa5\x23\x67\x1c\xcb\x1d\x19\xf5\x4a\x28\xd4\x02\xcf\xeb\x4a\xb9\ +\xf0\x07\xd9\x79\x4a\xbb\xdd\x4d\x0b\x46\x93\xc3\x5c\xee\x84\xd2\ +\x48\x1c\xe1\xf8\x2f\x0a\x99\xab\xb3\x01\x6c\xe1\xc6\x1a\x13\x9f\ +\x32\x67\xc0\xa5\xf1\x0a\x22\x73\x86\x87\x58\xda\xd9\x12\x43\x6b\ +\x45\xf4\xe6\x00\xe5\xf8\x6f\x71\x02\x7a\xc6\x84\x33\x8e\xcb\x3d\ +\x87\x18\xf6\xb0\x42\x52\xff\x14\x48\x2a\x7a\xc5\xce\x22\x18\x99\ +\x39\x2b\x03\x6c\x69\x18\xf0\x95\x71\x06\xdd\x62\x91\xa7\x7f\x61\ +\x7e\xb3\xb5\x24\x09\x73\xa9\xcf\x9a\xcc\xad\xd4\xc7\xa3\x81\xe7\ +\x2c\xa6\x3e\x1b\x7a\x8c\xd3\x63\x63\xa4\x3d\x0c\x7a\x8c\x95\xb1\ +\x31\xd2\x52\xff\x2a\x23\x95\x24\x9e\x5f\x2e\x99\xa2\xe9\xe9\x97\ +\x24\xb1\xdf\xf0\xd8\x1f\xdd\x4b\xc9\xe2\x23\xf6\xe8\x28\x61\x92\ +\xf4\x4c\x4a\x25\x4f\x09\xc6\xb1\xe4\x50\xdb\x4f\x3c\x73\x1f\xf9\ +\xa8\xf6\x51\x70\x28\x0f\x60\xec\x36\x58\xda\xa1\x7a\x22\xdc\x4c\ +\x50\xca\x9c\xd4\x33\xbc\x33\x1e\xa0\x23\x47\x0e\x79\x0f\xb4\x57\ +\xb4\x57\x2a\x29\x33\x10\xaa\x5c\x36\xf3\xb0\x81\x19\x9a\x6c\x31\ +\x9d\x5a\x29\xc7\x3a\x8a\x3d\x05\x4b\x37\xdd\x1b\x51\x6c\x1f\x1a\ +\x72\xaf\x51\x9e\x7e\xca\xb1\x97\x09\x5d\xc9\x27\xd5\xb2\x0c\x10\ +\x67\x29\x81\xb1\x33\x12\x8f\xb1\xe8\xb0\x8d\x99\xe9\x49\xa1\x39\ +\x29\xdc\x62\xe1\x11\x4b\x39\xf1\x09\x46\xd2\xd8\x30\xab\xe0\xae\ +\xd5\x7a\x11\xd7\x35\x45\x1c\x80\xeb\xd7\x29\x26\x59\xcb\xb6\x08\ +\x9f\x9c\x0e\xd7\x0c\x8b\xc2\x83\xe4\x98\xef\xd4\x60\x1c\x2d\xc0\ +\x18\xb5\xd1\x63\x15\x94\xdc\xac\xe9\xe4\x4f\x85\xee\x3e\xb6\x03\ +\xc0\x92\xc1\xe5\x11\x52\x72\x78\xee\x08\xf2\xda\x49\x62\xfc\x2a\ +\xab\xd6\x70\xf5\x1c\xda\xb7\x63\x2d\xba\x06\x47\x6c\x30\xdd\x46\ +\x11\xe7\x69\xe7\x6c\x27\x52\x44\x1d\x65\x1f\x6d\x25\x1e\xd9\x11\ +\xe5\xf1\x4d\x3a\xbc\xb3\xfb\x9c\xbc\x0d\x2a\xfd\x8c\x28\x69\x4b\ +\xaa\x69\x84\x87\xdc\x70\x8f\xec\x13\x12\xd4\x22\x27\xe3\xa0\x70\ +\x61\x4e\x1a\x5e\xf4\x13\x25\x38\x43\x8e\x3b\x38\x14\x90\x83\x34\ +\x70\xf6\x62\xb0\x0f\x14\x70\x95\xdb\x9a\x16\x1f\xab\xa6\x05\x74\ +\xac\x32\x03\xd4\xf6\xbe\x04\x6a\xa6\x8c\x6d\xfa\xe9\xc3\x89\x8e\ +\x16\x11\x02\x17\x9c\x7a\x8b\xe6\xca\xe9\x03\x67\x64\xb4\x80\x34\ +\x49\xa9\x8c\x29\x61\x58\x3e\x2d\x0c\x48\x8c\x01\xa8\xaa\x68\x0c\ +\x8c\xe2\x89\x89\x2f\x1c\xb7\x00\xf6\xa2\x98\x76\xd2\xb3\x67\x48\ +\x20\x95\xc8\xe1\xb0\x10\x00\x9c\x26\x52\x1f\xbf\xe9\x40\x88\x84\ +\x7d\xd5\xa4\x47\xc8\x49\x43\xb1\xdb\x94\xd3\x76\x85\x12\x25\x86\ +\x15\xf1\xa3\xec\xd9\x4f\x7e\x1f\x5d\x11\xe5\x19\x93\x1e\xa7\x72\ +\xa5\x7d\x6b\x91\xb5\xc1\xb1\x73\x0e\x95\xcf\x78\x7b\x2c\x5f\x56\ +\x42\xa5\x5a\x75\x74\x7a\x33\x87\x92\xcb\x75\x29\x55\xdc\x50\x06\ +\xd6\x3c\x03\x80\xd1\x92\x93\x75\xf1\x47\xab\xe0\x8c\x39\x69\x8d\ +\x88\x16\xa3\x74\x40\xeb\x46\xb5\x7d\x5e\x90\x5a\x31\x32\x87\x38\ +\x3d\x3c\x44\x5a\xbd\xc8\x1c\x62\x65\x78\x88\xb4\x6a\xd1\x22\x8a\ +\x92\xd8\xc0\xb7\x03\xd2\x4c\x8b\x82\x6d\xe5\x45\xc2\x4e\x54\x6b\ +\x38\x9c\xfb\xab\xdd\x22\x18\xc3\xa8\x98\xab\x20\x43\x8a\xb9\x2e\ +\x12\xa6\x43\x3c\xbf\x10\x5d\xd6\xa6\x46\x2c\xf3\xb7\xa4\x07\x28\ +\x64\x6c\xc0\xf1\x45\xbd\x7c\x92\xac\x52\xc9\x54\x40\xa4\x29\x18\ +\x4f\x58\xb3\x17\x55\x5d\x0b\x6c\x07\x69\x72\x82\x29\x81\xe9\x6a\ +\x1c\x62\xc7\x4f\x2f\x6a\x31\x2b\xc1\xac\xeb\x33\x20\xd5\xca\x8f\ +\x98\xaf\x7f\x06\xc4\xbb\x95\x6d\x8e\x61\x01\x6d\xef\x40\xf8\xe0\ +\x79\xa2\xaf\x4e\x1f\x8a\x1e\x6c\x5d\x0a\xe9\xc8\xd2\x25\xad\xc2\ +\xac\x75\x8d\x7c\x92\xcc\xb8\x95\xe3\x87\x3c\x35\x17\x7d\x4c\x39\ +\xe7\x27\x55\x5e\x8c\x44\x74\x5c\x9c\x9b\x47\x7b\xee\xb9\x4e\xd1\ +\x29\xd9\x05\x11\xd6\x90\x83\xa7\x9c\x79\x49\xe2\xcc\x53\xcf\x38\ +\x47\xce\xe8\xcf\x6c\xae\xe5\xec\x5c\x92\x3d\x19\xe5\xf0\x8f\x66\ +\x49\x21\xef\x78\x93\x10\x3c\x12\x39\x04\x73\xce\x2d\x78\x19\x98\ +\x12\x13\x9c\x66\x72\x00\x8e\x52\xb1\x36\x4b\xa9\xff\xe8\x95\xd3\ +\xda\x67\x0b\x06\xb3\x2c\x7f\xd4\xce\x8a\xf2\x82\x54\x7c\x30\x5c\ +\x8c\x8c\x7b\xc5\xb5\x8f\x41\xc1\x17\x65\x41\xe4\xeb\x64\xa2\xee\ +\xd3\x79\x09\x94\x37\x64\x15\xec\x71\xa7\x24\xdc\xc3\xdc\x8e\x4c\ +\x37\x73\x55\x07\x5b\x2f\xe4\x4b\x81\x34\x4b\x47\xc8\x1a\x87\x04\ +\x5c\x4e\xd8\xfd\xd2\x9d\x2b\x1d\x6f\xc2\xd4\x61\xba\x60\x45\x66\ +\xb2\xe9\x72\xd9\xd7\x84\xc7\x12\x45\xc9\x18\x93\x99\x16\xab\x28\ +\x16\x1d\x28\xa7\xde\xd9\x4c\x07\xa2\x6c\xf1\x94\xd4\x6e\x4d\x57\ +\xfc\x88\x74\xee\xb1\x40\xb9\xb8\x4c\x88\xc3\x95\xe6\x8e\x80\xdb\ +\x66\x96\x50\x92\xd0\x22\xb4\x29\xf4\xd3\xc9\x64\xa0\x4f\x4a\x57\ +\x4b\xc4\xc4\xf3\xa4\xfa\x4e\x28\xca\x31\xdd\x8b\xc3\x21\x6f\xd5\ +\x47\xd6\x39\x25\x87\xec\xf8\xac\x5d\x84\xbd\x06\xf9\x93\x1f\xa7\ +\x6a\x26\x4c\x16\xf2\x30\x5b\x0a\xb4\x0f\xb0\xcb\x50\x1e\xa3\xeb\ +\x11\x8d\x3f\xdf\xfc\x72\xd5\x28\x77\x46\x9e\x8d\x27\x1b\xbe\x22\ +\xb5\xd9\x0a\x86\x40\x87\xc6\x21\xc1\xd8\xb7\x73\x39\x6e\x9f\x52\ +\x20\x20\x00\x85\xd2\x2e\xe5\xc4\xa1\x84\xc7\xb2\x43\x96\x18\x22\ +\xed\x71\x99\xa0\xe8\xce\x90\x88\x80\x14\x45\x34\x04\x97\x5f\xa6\ +\x45\xca\x74\xb7\xa9\xe2\x9f\x95\x53\x69\xb8\x22\xc8\xe3\x3f\xb8\ +\x55\x28\xd4\x77\xb3\x68\x1a\xcd\x82\x75\x6e\xce\x49\xc8\xa2\xb1\ +\xe0\x0b\xd0\x20\xca\x7e\xda\x73\x78\x4e\xb4\xb2\x47\xec\x98\xd4\ +\x91\xc2\xbe\xaf\xa9\x40\x3a\xdc\x00\x09\x55\xa8\x8c\x53\xcc\xa6\ +\xd5\x98\x73\x6c\x1d\xa1\x2c\x43\x8c\x7e\x8c\xe8\xcc\x32\x02\xb1\ +\x63\xc2\x49\x25\xcf\x4f\x49\xf1\x0e\x9d\x1c\xe0\x12\xca\xf8\x19\ +\xd0\x0e\x2d\x23\xd4\xa6\x20\x3d\x69\x7d\xde\xca\xa2\x27\xc9\xc9\ +\x75\x00\xb1\x0d\x22\x9f\xd9\x83\x72\x02\x5d\x19\x80\xc3\x3d\x43\ +\x4e\x91\x42\x65\xa9\x19\x4f\x55\x53\xca\x05\xac\x25\xe4\x39\xc0\ +\xa6\x7a\x48\xfe\x73\x70\x47\x29\x3b\x23\x63\x24\xe7\x45\x23\x64\ +\x45\xc3\x17\xcd\x83\x17\xbe\x70\xd1\xe4\x85\x9f\xae\x48\x66\xbd\ +\x1d\x29\x9e\xa9\x5c\x19\x17\x8e\xb5\x61\x24\x0d\xa3\x46\xdb\xc8\ +\x83\x3e\x4e\x59\x22\x13\x02\xe5\x13\x4c\xd6\x84\x72\xd6\x34\x24\ +\x46\x90\x9b\xe1\x92\x93\x08\xdf\x0b\xf7\x7a\x70\x4c\x34\xe7\x4b\ +\x8e\x93\xb5\x05\x9e\x31\x0d\x12\x0e\xe4\x6e\x0a\x25\x65\xe1\xff\ +\x59\x20\x1d\x5d\x15\xcc\xd9\x2f\x45\xe1\xba\xac\xd5\xce\x1e\xbb\ +\xe4\x74\x70\xa7\x1f\x1e\xe9\xc0\x1e\x76\x30\xc3\x72\x08\x58\x81\ +\xe8\x20\x91\x62\x83\xea\x52\x6e\x50\x72\x02\x83\xa6\xb7\x91\xca\ +\x11\x0c\xc1\x49\x7d\x81\xb8\xa8\xff\xd8\x1c\x4f\x9f\xaf\x68\x8e\ +\xa2\x2e\x3e\xc1\xed\x58\x43\x28\xde\x07\x50\xf3\x4c\x73\x7c\x82\ +\xe7\x46\xcb\xce\x11\xbc\xa2\xa9\x43\xcc\x16\xce\x4f\xe2\xe9\x3f\ +\x21\x46\xa5\x36\x67\xdc\xdc\x1c\x23\xb7\x44\x9f\x05\x1e\xb0\x00\ +\x06\x3a\x06\x36\x01\x86\x28\xe8\x58\xe8\x47\xd5\x19\xb7\x60\x63\ +\x78\x69\x4a\x97\xb5\x19\xfe\x5e\xda\xe3\xfa\x8e\xe5\x15\x0b\xe3\ +\xfc\x95\x32\x95\x7d\xd9\x32\xd9\x29\x25\x4b\xf8\x68\xea\x0d\xab\ +\xcc\x61\x93\x52\x14\x93\x19\x86\xdc\xae\xf0\x38\x5a\xfc\xe1\x56\ +\xe9\x2a\xfc\xbe\x28\xf2\xfa\x4d\x16\x4c\xe8\xcb\x38\x14\xc0\x2a\ +\x12\x0a\xc0\x9a\x2a\x91\x94\x03\xbe\x4c\xec\x7a\x34\xbd\x4a\xf3\ +\x23\x81\x07\x7e\x0e\xa7\xc3\x86\x24\x4f\x9e\x74\x3d\x5d\x36\x0b\ +\xc7\x9f\x54\x09\x64\x54\x7d\x2a\x65\x04\xdf\x58\x41\x31\x2f\x59\ +\x89\x83\x6f\xc4\xf3\x56\x70\x0f\xe2\xb6\x8c\x19\x9d\x3f\x7f\x7d\ +\x5e\x38\xf2\x7d\x83\x19\x1b\xca\xba\x21\xe4\x29\xec\xa1\xf0\xea\ +\xec\x15\xde\x7b\xb0\x64\x56\xe4\x94\x31\x93\x56\x53\xab\x9b\x21\ +\x42\xa7\xd4\x83\x79\x16\xbb\x70\x65\x94\x48\xd3\x93\x24\xa9\x35\ +\xa9\xf8\xb9\xe4\x9b\xc3\x19\x37\x27\x35\x59\x72\xc9\x03\x29\xa8\ +\xed\xc9\xcc\x79\xbe\xa1\x65\x01\x01\x3f\xef\xdc\x57\x3b\xc2\x92\ +\x2a\x1a\x74\x72\x5c\x4e\x84\x5d\xf2\x14\xb8\x31\x47\x2a\x1a\x6e\ +\x47\x2f\x69\x23\x94\x3a\xaf\xb0\x3e\xec\x8c\x06\x70\xcc\x4b\x9e\ +\xef\xcb\x93\xdc\x61\x79\xea\xb8\xcb\x4c\xc6\x10\xf3\x00\x6d\xab\ +\x84\x06\xb2\x55\xf4\x3a\x67\x6a\x20\x5c\x35\xa3\x6d\xb2\xc5\x09\ +\x96\x8a\xef\x30\x8b\x57\x79\x9b\x32\xaf\x40\x99\x23\xf2\xa4\x17\ +\x85\x71\x60\x66\x92\x8c\x19\xb4\xfa\x8e\x24\x14\x91\xee\x68\x90\ +\xa5\xc8\x22\x01\xba\x34\xea\xb7\xb9\x14\x4b\xb9\xe4\x37\x66\xc8\ +\xf2\xc2\xa1\xb3\xa8\x7b\x4d\x2e\x29\x5c\x79\x63\xa6\x1e\x49\x6a\ +\x89\x3a\xe5\xb4\x27\x89\xdb\x08\xf8\xe6\x6e\xd2\xde\x3b\x22\x94\ +\x27\x5d\xdd\x39\x42\x79\x59\xa4\x98\x69\x57\x06\x8e\x93\x63\x32\ +\xed\xd8\x9c\x47\xcf\x62\xa6\x02\x5e\x9a\x84\x68\x1d\xad\x23\x8f\ +\x30\xe1\x7b\xd0\x09\x92\xf4\x79\xf2\x17\xfa\xee\x04\xe8\x0b\x6e\ +\xd1\x0f\x1c\x50\x38\x44\x12\x14\x7e\x89\x3f\x8c\xc3\xbe\x8d\x39\ +\x48\x93\x24\xc9\x76\xac\xb5\x72\x5e\xb6\x2c\x93\xb9\x52\x6c\xd2\ +\x6f\x67\x48\x97\x13\x15\xb4\xb0\xe8\xd6\x54\x72\x57\x46\x3d\x21\ +\x3e\xe3\x59\x7d\x5a\x8e\x49\xea\xe5\x92\x8c\xab\x0d\x32\x1b\x41\ +\xa7\x2e\x3b\xf4\x66\xa0\xd8\x4a\x2e\x21\x23\x58\x66\x0d\x6b\x27\ +\x74\x3e\x69\x43\x74\x79\x8e\xd6\x99\x81\x17\x8b\x6c\x29\xf8\x49\ +\x38\x59\x0c\x75\xa0\x83\xe3\x3e\xf2\x86\xca\x0c\x4e\x89\xfb\x67\ +\xdf\xa2\x4e\xa0\x89\x57\xb2\x44\x59\x3e\xf6\x3a\x61\x7f\x1f\x61\ +\xd3\x9d\x72\xdf\x90\x83\x84\xe3\xe5\x16\x45\xc0\xf9\x1e\xf0\xfc\ +\xbd\x91\x90\xc7\x4e\x1b\xc0\xfc\xd0\x70\x78\xc5\x0e\x2b\x4c\x0f\ +\x25\x61\x5a\xea\x0a\x1c\x71\x45\x0f\x54\xe4\x6c\xb6\x0c\xb8\x1b\ +\xc4\x9c\xc8\x20\x5c\x28\x35\xe2\x61\x62\xd1\x90\xcd\x49\xdb\x2d\ +\xe6\xdc\xac\x8d\xc7\xa6\x58\x1e\xc9\x60\x23\x89\xbc\xe5\xe4\x06\ +\x53\x8b\xc9\x79\x6f\x49\x61\xae\x6c\x40\x26\xef\x80\x49\xcd\x2e\ +\xd1\xf0\x3a\xa5\xb6\xa2\x25\x23\x75\x9b\x31\x41\xfd\xc9\xb3\x9a\ +\xfa\x9e\xde\x1b\x1d\x58\x35\x2b\x20\x92\xe1\x93\x22\xd7\x37\x68\ +\x83\xbb\xe0\x0a\x4a\xcd\xef\x0a\x29\xd1\xb1\x3d\x4b\xd2\x90\xf7\ +\x78\xc5\x13\x03\x41\xf8\x5d\xd6\x05\xbe\x93\x2f\x17\x30\xf9\x35\ +\xeb\x70\x95\x27\x6f\xbc\x85\x6a\xa4\x8f\x39\x1f\xf0\x27\xdf\x93\ +\x9c\xaa\xa7\x44\xc3\x88\x01\xd3\xa6\x7b\xbc\x1a\x63\x56\xe1\x54\ +\x26\xdc\x56\xb9\x89\xda\x57\x25\x53\x3a\xc3\xe2\x12\x75\x17\xd9\ +\x50\x85\x1f\x2b\x9f\x2a\x7b\x1d\xa1\xb9\x68\x6b\xc4\x34\x5f\xe5\ +\x2c\xe1\xca\xc3\xe4\x54\x4f\x0d\x45\x5e\x90\x43\x41\x74\x34\x8c\ +\xe6\x28\x24\xb9\x5f\x26\xe9\x39\x6d\xe1\x94\x93\x36\x87\x0c\x12\ +\xd4\x18\xa9\x04\x81\xcb\x02\x5b\x34\xc0\x23\x07\x92\xd8\xc1\x71\ +\x25\xd6\x4b\x4e\x31\xe7\x94\x38\x5f\x0b\xe5\x87\xaa\xe2\xc4\xac\ +\x57\x42\x6f\x95\x35\x83\x10\xa1\x3a\x5d\x69\xa5\x88\x46\x6d\xd8\ +\x00\x35\x0b\x94\x93\xdb\x2c\x4d\xdd\x69\x45\xaa\x01\xd2\xaf\xc0\ +\xa5\x83\x3c\x7f\xf2\xb4\x46\x61\x90\xfc\x35\x9c\x61\x2a\x13\x47\ +\xa4\x45\x25\x93\x9c\x78\x14\x0c\xeb\x29\xb5\x17\x03\xff\xe9\x22\ +\xad\x41\xfa\x6b\x86\x08\x4f\x9f\xae\xf7\x26\x6d\x20\xe5\xfc\x98\ +\x2a\xa6\x48\xa8\x53\xad\x9e\x14\x4b\x44\xff\x80\xf4\xe2\x74\x59\ +\x30\x16\xb0\x4f\xe3\xfd\x8c\xb6\xc4\x0c\x5b\x75\x14\x76\x96\xcc\ +\x55\xcc\x66\x4d\x7b\xca\x96\xb0\xd5\x2c\x9c\xf4\x14\xd5\xcd\x64\ +\x10\x67\x89\x5a\x5c\xeb\x7a\xd2\x6a\xac\x25\x33\xf1\x32\xb3\xe5\ +\x6c\x33\xb9\x8e\x92\x72\xd2\x2a\xcc\xaa\x3d\xf5\x62\xc6\xcd\xbd\ +\x3d\x3c\xa3\x2c\xe5\x9c\x9b\xa8\x82\xd8\x54\x41\xdc\x04\x65\xbb\ +\xd2\x8a\xf5\x39\x17\x1e\x0c\x05\x8f\x25\xe0\xe1\x3e\xd8\x8c\x57\ +\x46\x45\x0e\x7b\x53\x0a\xc5\x20\x7d\xc2\xc5\x1a\xe1\x93\xe4\x86\ +\xaf\x68\x87\x93\x02\x23\x72\x0f\x0a\x36\x50\x45\xea\x04\x8f\x13\ +\x22\x61\xb0\xa9\xe7\x68\x11\x73\xcc\x24\x9a\x7b\xb6\x59\x69\xc8\ +\xcc\x70\xb2\xa9\x9b\x4f\xbf\xbe\xb7\x89\xb9\xdf\x42\x26\xc5\x12\ +\xb6\x3e\x61\x8a\xa5\x80\xf2\x58\x94\x52\xe7\x96\xf0\x69\x97\xf2\ +\x50\x60\xca\x89\x3a\xa8\xbc\xa8\xc0\xfc\x48\x6f\xb8\xa9\xa3\xd7\ +\x47\xad\x2f\x52\x62\x72\xe1\x20\x63\xd7\x18\xf9\x8a\x97\x7a\xcb\ +\xee\x03\xba\x61\x48\xc0\x54\x87\x08\xbd\x4c\x2c\x2f\x50\x65\xdd\ +\xa9\x89\x67\xb5\x30\xca\xdb\x01\xb3\xfd\x70\x9c\x65\xf5\x47\x86\ +\x34\x71\xe4\x94\x3a\x6b\xf8\xb0\x0d\x0e\x28\x04\xed\xeb\xfb\x37\ +\x2b\x43\x27\x6d\x6e\x70\xbb\x4a\x89\xe6\x2a\x8d\x4c\xa8\x44\x2a\ +\xca\x53\xad\x54\x34\xdb\x7e\xce\x46\xcc\x7f\xe3\x72\x11\x1d\x56\ +\x69\x97\x74\x1f\xaf\xa3\x8c\xf5\x1e\x1e\x8e\x48\x6e\x9b\x54\x61\ +\x53\xf0\x20\x4e\x0f\xd0\x93\x28\x70\x7a\x54\xe3\x5e\xed\xc3\x1f\ +\x11\x2a\xe1\x38\xed\x7f\x91\xf4\x8d\x71\x15\x6d\x32\xd3\x44\x45\ +\x2b\x36\x73\x65\xcc\x2c\x61\x34\x05\xcb\xf9\xb8\x52\xbe\x50\x29\ +\x0a\x78\xe1\x0c\x48\x1b\x90\x32\xa0\xa1\xf5\x8b\x48\xd4\x10\x86\ +\xa7\xb0\x62\x7a\xc4\x2e\x8e\x5b\xfe\xbb\xcb\x36\x4a\x7e\x59\x21\ +\x30\x22\x87\x49\x2b\x28\x70\x53\x6c\x38\x39\xb8\xdc\x70\x49\x42\ +\xa4\x46\x4b\xe7\x84\x6d\xb4\xf7\x5a\xbc\x20\xc0\xea\xd7\x45\x47\ +\xa9\xe6\x7a\x4a\x59\x25\x23\x34\xab\x6b\x54\x74\x19\x96\x8a\x8e\ +\x95\xc3\x5c\xee\x48\x79\xe4\xe0\x0c\x06\x90\x08\x1b\xd5\x34\xdc\ +\xfe\x4f\x36\x8b\x2a\x1b\x67\x79\x11\x7c\xe0\xba\xdf\x88\x52\x8b\ +\xf6\x09\xc3\x78\x5f\xa4\x83\xdd\xa9\x15\x00\x16\x59\xbe\x58\x79\ +\xe2\x72\xdd\x0d\xf3\xc9\x66\xe8\x77\x3d\x54\x38\xdf\x5d\xb1\x00\ +\x00\x48\x17\x7d\x6f\xf2\x52\x67\x06\x2d\x02\x01\xea\x0a\xc7\x1f\ +\x9e\x7a\x4e\xb4\xbc\xee\xaf\x24\x12\xbf\x32\xc6\x99\x6f\xc5\xb1\ +\xad\xf6\xbc\xed\x07\x8e\x1f\xa4\x3c\xee\x55\x75\xa0\x4b\xe9\xf6\ +\x07\x61\x87\x20\x22\x5d\x46\x26\xb9\x03\x27\x5a\xdd\xa7\x43\x15\ +\xe1\x86\x35\x5a\x27\x8d\xd7\x7d\xe1\x5f\xb4\x9e\xe8\x18\x16\x97\ +\x47\x06\x86\x4b\x01\x91\xa2\xb1\xf6\xe4\x31\x92\x75\x4b\xed\xb0\ +\x32\xdb\x3a\x48\x82\xa9\x08\x8f\xc2\xe2\x15\x9b\xa8\x2a\xb0\x30\ +\xde\x21\x22\xa2\xe8\x7e\x34\xd4\xc3\x0e\xa1\xb9\x8f\xa2\xc2\x81\ +\xce\x24\x59\x21\x46\x9a\x22\x69\x9d\x3c\x05\x33\x66\xda\x51\xfb\ +\x97\x90\x07\x24\x63\xd4\x97\x09\xaf\x53\x5a\x86\xb0\x4c\xe9\x73\ +\x6b\x67\x9a\x2c\x8a\x6a\xdc\x41\x25\x8b\xae\x02\xc2\x8e\xfb\xe5\ +\xf6\xd3\x36\xcb\x32\xe1\xe9\x93\x23\xe7\x6f\x2e\xb9\x83\x6e\x91\ +\x32\x3f\x30\x3b\x1b\xb5\x8b\x99\x27\x80\x6f\xa2\xd3\x5e\x62\xb2\ +\x3c\xad\x07\x78\x48\xa7\x30\x24\xf4\x91\x98\xbd\xd5\xde\x03\x27\ +\x02\x66\xe9\xed\xd9\x98\x56\x00\x66\x2a\x56\x33\x26\x9b\xb6\x5e\ +\x4c\x60\x49\x53\xb3\x52\x5a\x85\xa1\x68\x6d\x25\x23\xd1\x30\x2c\ +\xc9\x38\x9c\x09\x2e\x1a\xd8\x79\x64\xaa\x19\xfd\xc0\xb7\xce\x28\ +\xed\x51\xa7\x94\xcc\x90\x90\x28\xad\xe2\x60\x08\xe9\x6a\xaa\xcf\ +\x2f\x32\x33\x43\x4b\xf7\xcf\x2b\x47\x64\xcd\x7e\xe1\x01\x9b\x96\ +\xc4\x98\xee\x5a\x80\xa4\x51\x12\x23\x9b\x3e\x1b\x2e\x25\xb9\xca\ +\xa6\x13\x10\x96\xf5\xa3\x35\x2f\x8b\x84\x13\xc8\x52\x86\x2f\x7c\ +\xb4\xf1\xd2\xaf\x73\xd7\x94\x2d\x9a\x32\xe4\x3f\x75\xa7\x89\xb6\ +\x87\x39\xb2\xe2\xc7\x3a\x9f\x43\x74\x0e\x0a\x71\x97\x10\xe7\x4a\ +\x6d\xad\xfd\xef\xf4\x6d\x39\x92\x1a\xc7\x88\x54\xb6\x48\xdb\x96\ +\x54\x4c\x67\xa3\xda\x3d\x19\x67\x34\x5a\x6c\x88\x9a\x8c\xe9\x80\ +\x98\x47\x40\x6c\x17\xf9\xb9\xd4\xe4\xc8\xc2\x86\xb8\xa0\xb3\xa5\ +\x2e\xda\xe8\x67\x49\x95\x6e\xf5\xfd\x33\xaa\x72\x0b\x0f\x73\x7a\ +\x74\x98\xb4\x49\xab\xe1\x61\x56\x46\x87\x49\x9b\xb8\x3a\x3f\xa1\ +\xd8\x57\x1e\x39\x8d\xbc\x26\xda\xb6\x99\xe4\xfb\x27\x37\x91\xd0\ +\xca\x64\xd9\x50\x89\x5a\x68\xf4\x11\xae\x90\xa5\x1c\xdf\x12\x0d\ +\x37\x93\x74\xc1\x70\xbd\x6b\x43\xbf\x28\x8f\x4c\xad\xfc\x26\x8d\ +\x29\xc3\xd9\x1e\x1d\x47\xb4\x2a\xec\x08\x76\x4a\xd8\x9e\x3e\xe5\ +\x1c\x17\x46\xba\x2c\x27\x25\xee\x72\x46\xb1\x9f\xf1\x1e\xed\x93\ +\xca\x45\x16\xcd\xff\x0b\x5f\x99\x61\x2a\x32\x2b\x28\x93\x16\x55\ +\x5b\x99\xfe\x86\xda\xed\x9e\x12\xd6\xa1\x93\xc7\x8a\x47\xc3\x79\ +\x86\x05\xaf\x9d\x49\xab\x7c\x1c\x6e\xe8\x8c\xf1\xa6\x54\x0d\x03\ +\xb6\x3f\x2c\xfb\x51\xa5\x4a\x24\xeb\x51\x67\xd8\x27\x03\xaf\x64\ +\x90\xa3\x8c\x2c\xf1\xa2\xf8\xd7\x58\x42\xcd\xac\x9a\xf9\x98\x01\ +\xd5\x4d\x48\xc4\xff\x61\xe3\xdd\xbc\x0b\xbc\x70\xd8\x49\x6b\x95\ +\x2e\x57\xcd\x5c\x65\xfd\x74\x7a\x00\x0e\x47\x00\x6c\x5e\x61\x3d\ +\xd3\x79\x3f\xaa\x8a\xda\xa4\x1e\xc3\xdb\x26\xeb\x5a\x3a\xc9\x91\ +\xe5\xde\x4b\xff\x7b\x0e\xe8\x27\x6f\x9e\x5c\xa1\x90\x54\x16\x94\ +\x19\xe1\x61\xc3\xbf\xbe\xa6\x44\x7f\x4e\xa1\x3d\xda\x9e\xae\x67\ +\x80\x74\xde\x68\x31\x1d\xaf\xb6\x01\xd2\xf7\x0b\x36\x11\x52\x6e\ +\x6f\x9e\x3f\x26\x32\xb1\x94\x00\x4d\x2b\x31\xaf\x34\x90\x3f\x75\ +\x35\x88\x2a\x7b\x51\xb9\x28\xae\xf1\xde\x6e\x91\x4d\x19\x2d\xd9\ +\xd2\xb9\x67\x07\xe0\x99\x68\x39\x8d\xd9\x26\xf1\x2c\x5c\x72\x2e\ +\x5a\x48\x03\x6b\xc2\x4c\x1c\x3a\x3f\xbc\x1d\x1f\x1d\x1f\x58\xa5\ +\x74\x18\xcf\xa8\xd6\xe6\x56\x22\xfd\x8c\xe1\xbf\x42\x63\x86\xef\ +\x85\x4b\x11\x8a\x80\x2b\x30\xaa\x30\x5c\x7a\xf0\x86\x84\xe1\x14\ +\x8e\x66\xf0\xd4\x1b\x97\x10\x95\x23\x1e\x26\x3b\x9f\xc5\xad\xe9\ +\x76\x72\x23\x74\xb1\x6e\x86\x89\x39\x67\x81\x22\xd8\x01\xff\x96\ +\xb1\x93\x0d\xfd\x79\x23\x22\x41\xdb\xc8\x39\x27\xeb\x82\x6d\x84\ +\x9b\xcb\x8b\x17\xb8\x16\xef\x95\x72\x6e\x91\xba\x3d\x78\xa3\x4e\ +\xc9\xe6\x89\xb4\xa4\x75\x3b\x7b\xbb\xac\x15\xd6\x59\xd6\xb2\xae\ +\x65\xcb\x4e\x4e\xab\x7f\xdf\x45\x48\xf1\x01\x3c\x87\xac\x41\xad\ +\x0d\x6a\xe7\x1e\xd7\x01\xec\x84\xca\x7a\x64\x98\x88\xbc\xb2\xd0\ +\xb8\xd0\xd2\x7c\x4c\xe9\xb0\xdc\xa6\x5d\x06\x47\xac\x24\x2c\xc8\ +\x21\x11\xad\xd0\xd6\xa6\xbe\xc1\x42\xea\xf1\xed\xe4\x4a\x18\x14\ +\x94\x88\x07\x52\xa3\x68\x13\xa2\xa8\x64\xe7\xdc\xb2\x1f\x72\x16\ +\x50\x43\x0b\x74\x06\xa1\x8b\x51\x74\xa7\xee\x77\xa8\x6b\xfe\x32\ +\xde\xc6\xcb\xc3\x1e\x53\x81\x8d\xa1\xbc\x76\xb7\x48\x29\xc8\x4e\ +\x5a\x1c\xad\x4a\x12\x80\xba\x3e\x35\x25\xbb\x3a\x02\x61\x97\xfd\ +\x03\x66\xca\xaf\xb6\xd2\x36\xe9\xfc\x46\xd3\x7b\xe6\x32\xd9\x88\ +\xc6\xbc\xca\x40\x7b\xd4\xdc\x04\x34\x9b\xa6\xc5\x42\x02\x8c\x27\ +\xf0\x2b\xa7\x99\x63\x67\x87\x78\x9a\xa1\xec\x7e\x91\xc2\xbd\xf1\ +\x73\xb0\x59\xb5\x83\xe1\x02\xd0\x4b\xa2\x79\x58\xe1\x54\x36\xb3\ +\xeb\x68\x3c\x4b\x9d\xb7\x6d\x28\x93\xdc\xc5\x33\x89\xeb\xe1\x0d\ +\x94\xf0\x14\xad\x49\xd4\x8f\x79\xb3\x31\xd9\x1a\x63\x9f\x32\x4b\ +\xe2\x3d\x54\xe3\xf3\x25\x56\x6d\x18\x4c\x4c\xe7\x7c\x25\x69\xe7\ +\x9c\xcb\x6b\xd7\x47\x40\x85\xf7\x32\x3b\x6d\x3f\x91\xb6\x2d\x76\ +\xa2\x00\xbb\x68\x1b\xe4\x13\x30\x19\x68\xe7\x9e\xd5\x30\x9f\xd1\ +\xe1\xb8\x68\x5a\xf2\x80\x1a\x4b\xf7\xcc\xd4\x15\xe1\xb2\xd4\x26\ +\x9a\x6e\xc8\xa3\xb6\xe1\x39\x5e\x13\x4d\x01\x1c\x66\x93\xa4\x92\ +\x77\x93\xc5\x7b\xef\xfe\x78\x40\xc4\xfa\xd0\xcb\x72\xc1\x7a\x9e\ +\x7d\xe6\x62\x02\xa5\x9b\x1d\x32\xe2\xe3\xf0\x7d\xb9\x20\xf2\xd2\ +\x30\x20\xde\x6d\x0d\x88\xc4\x4b\x9d\xaf\x06\x6c\x5e\x84\xd6\x45\ +\x8a\xbc\xa0\x28\x1c\x0f\xaf\x3b\xc1\xea\x5e\x92\x03\xf4\x62\x87\ +\x08\x16\x06\xa0\xf1\x84\xc7\x41\x29\x81\x33\xaf\x2d\x39\x4e\x6f\ +\x4f\x9f\x25\x75\x22\xcb\x1f\xf7\x41\x9a\x10\x07\xc0\x59\xf0\x16\ +\x07\x78\xb6\xc4\xf9\xa9\x3d\x93\xd2\xef\xbd\x21\xd2\x9e\x5e\x62\ +\x4a\xe5\x40\x6f\xba\xee\x67\xc2\x8f\xab\xce\x80\x31\x73\x1f\x74\ +\x5a\x20\x4f\x59\xec\x32\xc5\x83\x46\x7c\xce\xac\x0b\xa6\xf5\xe9\ +\x76\x7e\xae\xec\x20\x25\xf0\xe5\x16\x55\x97\x4a\x72\x95\x21\xde\ +\x52\x2a\x9f\xb3\x3a\x66\xb4\xec\x58\xad\x2a\xd3\x0d\x28\xc2\x34\ +\x28\xab\x19\xc2\xd9\x66\x52\xce\xea\x96\x87\x3a\x92\xc6\xff\xc6\ +\xd3\xa6\x26\x58\xbc\x1a\x66\x7c\xca\xf9\x75\xd2\xad\x74\x5a\x2c\ +\xd4\x5d\x59\xe0\xe7\x8e\x54\x9b\xaa\x75\xff\xa4\xf1\x7c\xda\x30\ +\x5f\x8c\xb6\x90\x9c\x2d\x38\x43\x1e\x7e\x36\x9b\x6b\x2d\x24\xce\ +\x86\xee\xdd\x85\xb1\xb6\x5b\x32\xaa\x55\x10\x82\x35\x3c\xcf\x28\ +\xf9\xea\x51\xf8\x72\xae\x68\xae\x01\x9f\x5c\x47\x50\x8f\x09\x8f\ +\x61\x56\x08\xdd\x30\x5c\x7a\x36\x89\x35\xb9\x43\xe6\xfa\x7c\x35\ +\x66\x74\x95\x96\x31\x27\xf2\xe1\x3e\x10\x84\x5c\x17\x5a\xa8\x48\ +\xf5\xd5\x24\x52\xc5\x02\x65\xea\x4b\xa0\x8e\xa3\x4e\x06\x8c\x86\ +\x3d\xbb\x9a\xd6\xeb\xc2\x20\xe3\x4d\xbf\x0c\x3c\xc6\xf6\xad\x85\ +\xd4\x3e\x67\x21\x96\x85\xc8\xe1\x29\x72\xab\x1f\xf0\x41\x4f\x86\ +\xbf\x2f\x84\xd3\xee\xe6\x17\x36\xc1\x8c\x0b\x47\xbc\xa2\xb7\x90\ +\xfa\x83\xc1\x90\xf6\x88\x5b\x18\x8f\x8c\xd7\xb1\xce\x29\x8c\x39\ +\x81\x9b\xb5\x3b\xe8\x75\xfe\x28\x4d\x2c\x5a\x93\xd0\x24\x4d\xe1\ +\xb7\xba\x57\x7b\x85\xdc\xc2\x94\x6c\x24\x98\xd1\x79\x0a\x77\x7e\ +\xe8\x34\x68\x39\x99\x71\x44\x1b\x62\x4f\xb2\x70\x35\xc1\x19\x49\ +\xfb\xa2\x1b\x46\xd0\xc6\x84\x58\xc5\x0c\xc3\xa6\xf7\xa8\xd5\x49\ +\x26\xa6\x65\x50\x52\x3b\x3a\xbd\x12\x6e\x69\x77\xc6\x5c\x73\xe6\ +\xdd\x99\x3a\xfd\x37\x2a\x09\x3b\x63\x36\x56\x52\xc4\x5d\xda\xf5\ +\x9a\xa5\x9e\x6b\xe2\x03\x16\x3a\xe4\xe5\xac\xec\x90\x47\xd9\x43\ +\x88\x0b\x9e\xd2\x2a\x8b\xda\x38\x87\x15\x2c\x97\x2c\x2e\x21\x6f\ +\xd2\x16\xb7\xbc\x61\xa0\xa7\x72\x87\xbe\x28\xe2\xcc\x04\xde\x34\ +\xe8\x49\x5e\x7a\x49\x21\x88\x1f\xfa\xb8\x11\xaa\xfb\x0c\xc7\x91\ +\xcb\x2f\xf0\x91\x51\x24\x9b\x99\xc1\x88\xca\xe6\xb3\x33\xc5\x3a\ +\xa3\xf1\x24\xfd\x0c\xf7\x4a\x14\x69\xb5\xbc\xe5\x6f\x31\x01\x5e\ +\xa9\xd4\x66\x18\x2f\xee\xa9\x54\x92\xa9\xe1\x34\x9f\x8e\x56\x54\ +\x98\x2b\x72\x84\xbd\x93\xd4\xb8\xce\xc4\xd2\xd4\xd7\xbf\x4a\xef\ +\x78\x0e\x31\xa7\x08\xee\x9f\x53\x13\x5c\xc4\xd6\xc7\x0c\xe8\xca\ +\xf4\x67\x35\xad\xcf\x47\x3c\x06\x14\x0f\xa3\x81\x79\x32\xd5\x48\ +\xd9\x0f\xc4\x37\x54\xe3\x13\xf3\x2e\x18\x75\x1c\xb6\x9e\xda\xc3\ +\x42\x2e\xac\x2a\xa2\x52\x4d\x52\xb6\x44\x02\x7d\x05\xd7\x43\x57\ +\x53\x4a\x5e\xf1\xcb\x10\xaf\x30\x6f\xaf\x30\x7b\xeb\xe8\x7c\x77\ +\xdd\xf9\xbe\x4c\xf2\x46\xda\x31\xd2\x1d\x21\x09\xc9\x11\xa1\x24\ +\xf3\x0d\xca\x39\x00\xed\x7d\x90\x0d\x92\xb4\xe2\xf9\x3a\xbe\xc8\ +\x67\x98\x9a\x07\xf3\xe0\x81\x94\x86\xda\xf5\x81\xb0\xf3\xd4\x90\ +\x4e\x16\x4d\x0d\xd1\x1c\xe6\x72\x73\xc3\xbd\x92\xeb\x14\x79\x1f\ +\x73\x99\x4b\xaa\x44\x9e\xcc\x9a\xe7\xc5\x5b\xb8\x4b\x5a\x1a\x52\ +\x96\x29\xe2\x1c\x24\x53\xa1\xcb\x92\x0d\x30\x60\xd4\x82\x93\x0f\ +\x3a\x84\xea\x2d\x26\x31\xb3\x50\xd2\xba\x18\x7f\x13\x92\x4a\xfb\ +\x44\x92\xb5\xe4\xb5\xa8\x51\x95\x68\x57\x74\x70\x2d\x56\xb1\x26\ +\x3c\x5b\x3c\x78\xc0\xc3\xca\xf8\x3e\xf7\x93\xf0\x43\x12\xf5\x9e\ +\x48\x5d\xce\x11\x31\x4d\x73\x56\xee\xad\xe5\xb6\xab\xfe\x8b\xee\ +\xe9\x66\xde\x80\x21\xad\x5f\x9d\xc8\xc8\xbd\x36\xb2\x35\x04\xa5\ +\x2a\xeb\xda\x05\x73\x47\xc6\xec\x42\xd9\x41\x93\x20\x87\x4d\x07\ +\xf2\xe5\x62\xd6\x28\x4c\x2e\xd3\x51\x09\xbc\x02\x98\x0a\xc5\xac\ +\xd3\xd5\xb4\x0d\x9f\x16\x41\x43\xb0\xe0\xf3\x4e\xc9\x29\x66\x29\ +\xd1\xa4\xe0\xed\xe1\xd1\x68\x3e\xa0\x8c\x37\x07\xd4\xa4\x88\x72\ +\x52\xf1\x6a\x8c\xb4\xdb\xd1\xc4\x06\x24\xca\x15\xd8\x8d\x03\x12\ +\x8e\x19\x24\x46\x44\x6c\x54\x1d\xb8\x18\x98\x51\x54\x68\x35\x48\ +\x04\x54\xb6\xf7\x09\x4e\xad\xf9\x9e\xe6\xae\x79\xb5\x39\xd2\xe8\ +\x4e\xee\x62\x7d\xfc\x80\x60\x2d\xe8\xd7\x43\xef\x38\xe5\xcc\xa8\ +\x0b\xad\x33\x60\x11\x0e\xa7\x04\x6b\x03\x7b\x4c\xd0\x96\x51\x0c\ +\xc4\xd0\x81\x24\x13\x59\x75\x3e\x98\x74\x48\x2e\x62\xfc\x66\x9f\ +\x51\xc6\xeb\xf1\xc7\xa9\xaf\xa0\x63\xb8\x98\x2c\x05\x60\x8e\xbb\ +\xd5\x46\x4b\x58\xfe\xba\x48\xf6\x28\x4f\xeb\x34\xda\x94\xb6\xd9\ +\x13\x8b\x07\x5b\x13\x04\x8a\x6e\x45\x73\x81\x1f\x35\xff\x0e\x2e\ +\xa8\xaf\x1b\x3b\xc4\x93\xb4\xf5\x7e\x35\xe0\x74\x83\xa2\x6f\x7a\ +\x8a\x71\xb7\x19\x15\x01\xba\x4e\x3a\x9a\x2d\x22\x0d\xb5\x68\x11\ +\x93\x94\xc3\x66\x52\x65\x38\x99\x08\xb3\xf2\x75\x39\x11\x59\x06\ +\x54\x33\xa4\x5a\x51\xa5\x76\xa8\xad\x4d\x10\x08\x6f\x49\x14\xe9\ +\x6e\x2e\xdb\x04\xaf\x36\x79\x38\xd5\x3c\x19\x12\x20\x25\x9c\x2f\ +\x2b\xd5\x58\xbb\x78\x10\x2b\xfc\x8c\x25\x77\xa1\x91\xc5\xc6\x49\ +\x8e\x9f\xa4\x53\x3c\xcd\xd9\x55\xa1\x0f\xde\xde\xa2\x48\x0e\x6e\ +\x79\x17\xab\x0c\x78\xc8\xaa\x0b\xe9\xc5\xdd\x47\xda\x9a\x43\x87\ +\xcd\x74\xf3\x99\x30\x0c\x91\x2e\xc6\x67\x0d\xef\xb2\xbf\x3d\x1c\ +\x33\x43\xf5\x9b\xae\x75\xe9\x00\xa5\x65\x98\xbb\x8c\x34\xfb\x40\ +\xf7\x92\x2c\x57\x72\x8b\x9c\x87\x74\x10\x45\x64\x1c\x6c\x19\x61\ +\x01\x1b\xce\xd9\x19\xb7\xe0\x06\xe3\xaa\x26\x87\xbf\x9e\x81\x47\ +\xd1\x00\x2a\xe6\xd2\x16\xdc\xdc\x29\x94\xe0\x28\x1b\x34\x5b\xb7\ +\x9b\x97\xcb\x86\x37\x48\xaa\xf2\x9d\xaa\xa1\x27\x57\x5e\xa7\x29\ +\x71\x8c\xcc\x67\x26\xc3\xc8\x96\x00\x95\x25\xb8\x0e\xc4\x70\x12\ +\xaf\x5c\x31\x12\x5d\x83\xc5\x92\x93\x12\x75\x13\xfd\x49\xa5\xe6\ +\x9a\x39\xa1\x3a\xe1\x6c\x59\x42\xe2\x98\x25\xb8\xe1\x6e\x01\xcf\ +\x54\x98\x34\xbd\x3b\x66\xb3\x51\x9f\xe9\x4a\x7b\x79\x69\x4a\x21\ +\x24\xe7\x1f\x8f\x90\x10\xbf\x52\x9a\x92\x0e\x41\x99\x16\xd5\x23\ +\xa8\x58\x91\xae\x8b\x99\x35\x94\x17\xa6\x93\x83\xba\xac\x01\x2d\ +\xd1\xa5\xca\x2e\x32\x19\x0b\x4e\x71\x10\x94\x00\xcc\x64\x44\x3f\ +\xb9\x50\xe6\xe4\xab\xb2\xb3\xbb\x4f\x59\x6a\xcb\x68\x2e\x5e\x1e\ +\xb4\x67\xc8\x43\x27\x05\x4f\x14\xc5\x31\xb5\x82\x80\xce\x85\x92\ +\x4d\x6d\xf5\xc4\xeb\x69\xd5\x05\x0b\x28\x6a\x27\xc9\xbd\xb5\x4c\ +\x16\x77\x9b\xb7\x28\x69\xd9\xd6\xb0\x63\xa7\xd5\x3e\xe0\x8d\xa6\ +\x95\x61\xc7\xc2\xc8\xbb\x68\xe4\x35\x8c\x97\xba\x24\x8f\xdb\xb4\ +\x63\x97\xd5\xbe\xb6\x04\xcc\x38\xed\xc8\x16\x40\xcc\x47\xde\x4c\ +\x1e\x2d\xbb\xe2\xd8\x8d\x3b\x61\xec\x7e\x37\x97\x3a\x5a\x53\x47\ +\x83\xe9\xd8\x62\xb5\x9d\xba\x8f\xd4\x37\x52\xb4\xdd\x4d\xf2\xfd\ +\xcb\x7b\xd0\xa3\xed\x78\x2b\x79\xf2\x67\xe2\x42\x0e\xd8\xd2\xe9\ +\xd2\xb0\xb4\x8b\x38\x5b\xa1\xf1\xae\xa7\x5c\xe4\xa4\x31\x2c\xd5\ +\xb9\x56\x74\x5b\x1e\xfe\x41\x75\xa6\xf1\x67\xd8\x7c\xab\x01\xd8\ +\x07\xba\x9b\x8c\x5b\x74\xb3\x41\x29\x6d\x6a\xff\x4f\x66\xd8\x52\ +\x46\x67\x97\x99\x1d\x78\xa2\x0d\x3e\x2a\x65\xb8\x05\x14\xcc\x0f\ +\x17\x55\xf3\x1c\x27\x59\xed\xc9\x6f\x3d\xd1\xd9\x6c\x49\x85\xd8\ +\xf1\x00\x31\xef\xb3\x50\x0a\xe5\x8a\x0d\xba\xa1\xf6\x35\x80\x6e\ +\x4c\x60\x15\xf5\x9e\x14\xb3\x1c\xd2\x69\x70\xe1\x8b\xe8\x4c\x43\ +\x91\xcb\x35\xd8\x94\x72\x49\x3a\xf6\xc9\x3f\xa0\x82\xbf\x29\xe5\ +\xd6\xe1\x82\x86\xd3\x95\xb2\x85\x03\x16\xb2\xee\xcf\xbc\x75\x30\ +\xdc\xb1\x2b\x43\x6a\x94\x19\x63\x8b\xcb\x34\xde\x22\x67\x4c\x29\ +\x18\x3a\x27\x47\x37\xa3\x9e\xa4\xd9\xa3\x69\xd7\x66\x8b\x8c\x09\ +\x61\x89\xe2\x3a\xf0\xd9\x1c\x8d\xb7\x5f\xf9\xb2\x1d\xf1\x37\xf3\ +\x56\x43\xf3\x7a\x2d\xee\x84\xa2\xc8\x41\xd5\xf9\x6a\xb3\x6e\x76\ +\xa7\x28\xa0\x56\x67\x84\xee\x37\x14\xbd\xc7\xa4\x8d\x87\xdd\x71\ +\x64\x33\x01\xee\xd0\x5e\x4d\xa5\x62\xc0\xf5\xcb\xa5\xa2\xdc\x67\ +\x79\xc1\x11\xe5\x8b\x97\x3a\xac\x4c\x39\x40\x4d\x46\xfc\x19\x05\ +\x8a\xef\x83\x2c\xf1\xd1\x29\xed\xe4\x5c\xf2\xb9\xcc\xb0\x03\x4b\ +\xfa\x0e\x0c\x32\xff\x22\x74\x8b\x00\xab\x7c\x3f\x48\xa5\x26\xe9\ +\x78\x1e\x4a\x42\x33\x94\x65\x6e\xe1\x4e\xe0\xab\x92\xd0\x3a\x6a\ +\x03\xed\x52\xc0\x39\x9e\xa1\x7d\x10\x2d\xbf\xaf\x0d\x11\xb6\x99\ +\x5b\x80\xb8\x88\x63\x20\x6a\x5f\x2c\x35\x88\x36\x08\xb1\xdf\x70\ +\x69\x97\xac\x88\x8e\x62\x41\x72\x1d\xbd\xea\x53\x8c\x55\x97\x8b\ +\x3a\x2d\x1d\xcd\x93\xa5\x23\xc2\xd1\x43\xa5\xc6\xc6\x8a\x53\xae\ +\xb6\x06\xe6\xde\xab\x66\x9a\x35\xba\x37\xb5\x4f\x01\x0f\x0d\x06\ +\xa3\x8c\x1b\x65\xfd\x21\x37\x9f\x96\xcd\xaf\x65\x3f\xa7\x24\x9e\ +\x4a\x4d\x12\x52\x06\x44\x75\x2a\x6d\x72\x18\x13\x93\x7b\x66\xd6\ +\xc9\xf9\x6c\x4a\x8d\x88\x5e\x45\x2b\xcb\xd0\xb0\x3c\xe5\x35\x0a\ +\x6a\x8d\x84\x2c\xd0\x38\x40\x0b\x93\x01\xa2\x8c\x0d\x7f\x7c\x24\ +\xe3\x15\xd2\x42\x94\x7b\x2b\x7d\x8d\x95\xf4\x3a\x50\x11\xdd\xe1\ +\xa0\xce\xdb\x4d\xb8\x0d\xc1\x7e\x50\xc8\x6c\xa1\xd2\x37\x87\xbb\ +\xf3\xd5\x14\x75\x8b\x7a\xb1\xa4\x1a\xc7\xa8\xcd\x19\x89\x89\x8b\ +\xa8\x1e\x02\xd9\x87\xf2\xb4\x68\xbd\x6d\x91\xbc\x1b\x2f\xf2\x5a\ +\x0b\xbc\xb6\x51\xe6\x59\x6b\x5a\x84\xc7\xf9\xdd\xbb\xc6\xa3\x73\ +\xa2\x5d\xef\x0c\x88\x08\xe6\xc8\xf3\x87\x12\xec\x79\x71\xec\x27\ +\x42\x0e\xb4\xfa\x45\x6b\xdd\xa2\xeb\x0f\x45\x5e\x59\x0e\xd0\xd8\ +\x74\xa2\xcf\x04\x6c\x63\x99\x47\x2f\x39\x74\x75\x28\xf4\x00\x93\ +\x7d\xd5\xa2\x40\x1c\xb2\x68\x73\x6f\x6f\xa7\x2f\x32\x3f\xf3\xbe\ +\x13\x85\x67\x0e\x35\x57\x77\x84\x9c\xdb\xcf\xc6\x0c\xec\x6c\x75\ +\xd0\xbf\x3e\x16\x47\xea\x09\xd4\xdd\x2d\x74\x9f\x94\x81\x25\xbc\ +\x0a\x2a\x36\xcb\x22\x36\x40\xaf\x4c\xd0\x2c\xc6\x01\x5f\xb4\xdd\ +\x1d\x8d\xce\xd0\x05\xd4\x29\x9b\x97\x85\xd3\x60\x74\x12\xba\xd1\ +\x06\x49\xa7\x5b\xf6\xf0\x7b\xed\xb9\x90\x33\xba\x84\x19\x63\x5f\ +\x1f\x1a\x3b\x4a\xbb\xa6\xa3\x96\x5f\x69\xcb\x6f\xa5\x48\xba\x37\ +\xc9\x13\x51\x1a\x1e\x02\xc5\x98\x98\xf9\x97\xb0\xb3\x37\x1a\xf7\ +\x29\x52\x78\xda\x8c\xbb\xac\x10\xb0\x8b\x10\x0a\x05\x43\xa8\xa9\ +\x80\xd1\x8c\x63\x8f\x27\x52\xc7\x96\x16\xbd\x9c\xe3\x37\x45\x96\ +\xb6\x5a\x75\x2e\xd6\xa1\x9d\xca\x8a\x66\x74\xe9\xe1\x1c\x1a\xab\ +\x27\x97\x13\x93\xc9\x8e\x97\x52\x11\xe4\x10\xc6\x8e\xcc\x26\xd1\ +\xa0\xda\x24\xbf\x86\x1e\x90\xa3\xa0\x64\x44\x37\x78\x9e\xf9\xb4\ +\x12\x65\x28\xc6\xba\x75\x15\xa9\x7c\xd7\xa2\x6b\xdc\xbb\xa3\xab\ +\xed\x13\xb7\x26\x68\xa4\xea\x0b\xa8\xe2\xed\xca\x2a\x34\x60\x51\ +\xb3\x1d\xdd\x33\x3a\x5a\xa0\x5e\x82\x49\x57\xf2\x1a\xd3\xd6\xb0\ +\x67\x8c\x43\x52\xdd\x53\xca\xc6\xd6\x26\x39\x8e\xbc\x09\x94\x6b\ +\xa3\xe6\xd9\xaa\x37\xae\x6c\x32\x5e\xdd\x42\x2e\x12\x7d\xcd\x79\ +\x3c\x96\xaa\xd3\x46\xcc\x0e\x28\xd2\x5d\xec\x87\xf8\x80\xd9\x9a\ +\xeb\xb8\x5e\xba\xa0\x56\xf0\x00\x51\x96\xc6\x29\x2d\x18\x1f\x75\ +\xa2\xb8\x6d\xa5\xbb\x41\x26\x18\xbf\x46\x63\x87\xde\xcf\x5e\x07\ +\xd3\x92\xac\x1d\xb1\x35\x87\x2b\xd9\x0d\xe7\x9c\xce\xeb\xef\x1d\ +\xc2\x9c\x78\xdd\xd0\xd9\x78\xff\x3b\x89\x56\x6d\xa5\x3b\x74\xc2\ +\xd7\x28\x9a\x6d\x8d\xb8\xe6\x1e\xb7\x71\x93\x0a\x42\x78\xd4\x25\ +\xb9\x53\x5a\xb8\xa5\x11\xf7\x5b\x2c\x66\x15\x5a\xfe\xa9\x15\xbe\ +\x2b\x7c\xa9\x0c\xc5\xd3\x38\x8e\xfd\x21\xaf\x5c\xc8\xc5\x3a\x1c\ +\x99\x6d\xcf\xdc\xa0\x62\x4f\x23\xab\xdd\x5d\x1c\x41\x58\x1d\xbf\ +\xbc\x45\x0b\x1b\x7e\x71\x4b\xe4\xa9\x45\xe2\x8a\x17\xee\x0f\xd5\ +\x3d\x6b\x4c\xf7\xc0\xeb\x86\x56\x88\xb7\x97\x90\x13\x98\x3a\xc7\ +\x44\x06\x9b\x40\x0f\x0b\x30\xc4\x89\x50\x5d\xbd\x8c\x5a\x8c\x09\ +\xee\xee\x31\xde\xa8\x5e\x27\x0b\x98\xb9\x43\x19\xf1\x0c\x5e\x50\ +\xc9\xf7\x2e\x9a\xdd\xcc\x2f\x0e\x6b\x07\x7a\xda\xc5\x7e\x06\xe0\ +\x3f\x0f\x9f\xda\xd3\x72\x5a\xaf\x91\x5c\x5c\x12\xe2\x89\x6e\x8c\ +\xc1\x3b\x0b\xf9\x85\x72\x18\x6d\xc8\xf8\x5e\xa1\x1c\x00\xe2\xfa\ +\xb7\xf4\xf4\xae\x89\x22\xaf\x55\x0b\xf7\x10\x85\xd6\x24\xc8\xf7\ +\x8b\x80\x53\x39\x22\x8d\xc1\x35\x8c\x08\x9e\x0f\x69\xde\xcf\x27\ +\x5b\x3c\xca\xe8\xae\x33\xc5\x41\x56\xe5\x5c\xc6\x01\x45\x0a\x41\ +\x85\xbb\xcc\x2f\xf2\x43\xf2\xd1\x15\x5c\xd1\x03\x3a\x1f\xb9\x10\ +\x9b\xee\x0a\x92\x26\x71\x05\x49\x9c\x49\x2d\x02\x61\x11\xae\x1b\ +\x9f\x7a\xa4\x56\x31\x52\x32\xdf\x9a\xa7\xae\x12\x8a\xfa\x22\x8c\ +\x26\x07\x62\x84\x44\x42\x5d\x92\x78\x5f\xee\xd4\x20\xb5\x88\x01\ +\xd5\xd5\x7e\xa1\xe5\x45\x6f\x31\x98\x7a\xac\x39\x72\x2c\x19\x0c\ +\x89\x8d\xb7\x45\xf0\xf4\x41\x91\xf8\x91\x0e\x5d\x5b\xbc\xc2\xf8\ +\x60\x6c\xb4\x13\x40\x17\xda\x47\xad\x75\x2a\x77\xd3\x8b\xc3\xb6\ +\x15\xe8\x80\x24\x61\x6c\x34\xb3\xc7\xc7\x74\x90\x35\x8b\xd1\xe4\ +\x65\xe3\x21\xbd\x2e\xdd\x15\x8a\xc6\x2b\xa7\x84\x72\xbe\xc3\x7b\ +\x27\xfd\x2b\x9c\x0b\xf0\xe4\x1b\x8a\x13\xa8\x21\xe7\xd2\x90\xa0\ +\xe5\x60\x7c\x1a\x0b\x28\xa8\x29\x52\x94\xd4\xe7\x80\xa4\x77\x85\ +\xb7\x1d\xcd\x25\x7d\xbf\x5f\x63\xa5\xed\x9a\x43\x69\xc7\x46\x32\ +\xb9\x16\x60\x7d\x22\xc5\x3e\xf2\x46\x37\x1d\x73\x4b\x24\x26\xf2\ +\xca\x00\x2b\xa2\xcf\xa1\xf0\x31\x93\x42\xf7\x53\x8c\x4b\xa3\xb6\ +\xbd\xcf\xa3\xc6\x6a\xa3\x25\x8f\x98\xbe\xd6\x9e\x6c\xe5\x13\x53\ +\x37\x81\x18\x73\x9f\x91\x78\xa9\x73\x74\x1b\x5f\x9b\x82\x6f\x8b\ +\xfb\x23\x78\x01\x0a\x26\x6a\x24\xb0\xef\xee\xc4\x59\xc2\xd5\x01\ +\xd2\x7b\x58\x69\x9e\xa3\x54\xde\xb4\x9b\x77\xb3\x95\xe7\x5a\x6e\ +\x74\x8c\x90\x3a\x0a\x4f\xf9\xe3\x16\x6f\xb4\x10\x20\x60\x0b\x74\ +\x79\xe8\x1a\x6a\xbc\x90\x23\xe7\x03\x25\x41\xfb\x80\xcc\x05\x51\ +\xaa\x98\x4b\x54\x1f\xf6\x98\x99\xb6\x54\xcd\x9a\x9c\x1b\xb7\x75\ +\x22\xfd\x87\xb4\x3e\xb6\x76\x11\x09\xe4\xc8\x0b\x47\x19\xe1\x0a\ +\xd9\x96\x3e\x7c\xfb\x51\xd3\x5a\x74\x11\xf5\xca\x52\x48\xe3\xdd\ +\x73\x8c\xab\xd1\xb8\x3a\x13\x32\xfa\x88\xda\x78\x50\xbd\x20\x8d\ +\x59\x26\x7b\x2c\x60\x01\xbb\x16\x7a\xed\xdc\x2a\x74\x78\x06\x2a\ +\x1d\x12\x3f\xa4\x90\x53\xa8\xa6\xbd\x37\x2a\xe6\x8a\x11\x53\xd3\ +\x74\xec\x47\x8d\x01\xdd\xf9\x4e\x8b\xeb\xb8\x4b\x52\x51\x4d\xc8\ +\xbb\x2c\xd4\x23\xdd\x4c\x43\xc1\x6b\x02\xa9\xbc\xc2\x25\xf2\x1e\ +\x86\x1c\xc4\x56\xfb\xda\x28\xf0\xdc\x4e\x0e\x05\xe0\xf5\xb9\x5f\ +\x8b\x31\xf5\x7e\x77\x22\x49\x7f\x96\x85\x10\x66\x53\x2b\x9e\xa2\ +\x23\xcb\xa1\x64\x17\xbe\x80\x92\x83\x87\x45\xc7\x46\x4b\xa9\x32\ +\xfa\xe4\x69\x56\x75\xe2\x5a\x0c\xc0\x5a\x27\x5b\x59\x10\x5f\xe5\ +\x82\x5d\xa2\xfe\x20\xdd\xd2\x41\x6a\xd3\xf7\x85\x98\x1e\x7d\x09\ +\x3b\x59\xf1\x3e\x79\x59\xb6\xf6\x29\xc7\xb5\x82\x24\x00\xe3\xd7\ +\x78\x6b\x85\x5f\xdb\x6b\xa7\x28\x00\x79\x67\x39\x9f\x0a\x38\x85\ +\xfa\x60\xc0\x49\x97\xb5\x90\xb7\xd8\x0d\xa2\xd0\x6e\x01\x16\xa1\ +\xe7\xe6\x41\x0c\x8b\x56\x10\x87\xa1\x9b\x85\x2b\x7c\x86\x85\x9b\ +\x35\x23\x58\xe6\x6e\xbc\x1f\x4e\xa7\xd4\x48\xe8\x70\xfa\x6e\xba\ +\xb5\x1b\x4b\x1b\x30\x09\x30\x10\x3d\xba\xa2\xc0\x94\x2a\x02\x23\ +\x39\x8a\xf4\x01\xa4\xbb\xae\xad\x5b\xa1\xdf\xb8\xdd\x86\x85\xc2\ +\xd8\x0a\xdc\xa5\x12\x5c\xbc\x0a\x32\x7e\x7f\x5b\xb7\x45\x60\xba\ +\xf9\x71\xbe\x82\x28\xe8\x03\x8a\x0c\x79\xbf\x21\xad\x0b\x57\x22\ +\x42\x13\x93\xd3\x91\xe2\x02\x09\x1c\x1c\x9f\x62\x94\x0c\x91\x15\ +\xc4\xdd\x02\x27\x33\x7d\x7f\x54\xfc\x96\xf0\x24\x80\x94\x83\x8d\ +\x07\xcd\xd5\xe4\xc7\x86\x26\xc7\x8d\xeb\x26\x8a\x4b\x46\xc4\xde\ +\x8a\x7b\x38\x93\xbd\x93\xc7\x40\xe6\xc2\xc8\x66\x91\x52\xc5\xe6\ +\xc4\xe9\x31\xd9\x18\xd2\x24\xbc\x53\x25\xbc\xb1\x5d\xec\xb6\x32\ +\x20\x2e\x87\x25\x0d\xe6\x9c\x51\xec\xbc\x51\xcc\xba\x71\x52\xbc\ +\xb1\xe2\x32\x86\x45\x95\x81\xcc\x83\xd0\xe1\xbd\xe4\x13\xa3\x8b\ +\x9a\x5d\x1a\x4f\xa6\x0b\x13\xd0\x64\x8b\x4e\x79\xda\xe1\x7b\x9a\ +\x5b\x2d\xaf\x53\x2e\x0f\xec\x1d\x97\x0b\x65\xcc\x84\x95\x2b\x14\ +\xdf\x56\x20\xd3\x73\x40\x4e\x5b\x09\x37\x26\xc5\xfb\x94\x22\xe8\ +\x3a\x02\xa1\xee\x8f\xd7\x75\xd6\x1c\x8c\xe5\xfa\x80\xe4\x79\xab\ +\x7e\x0c\x1c\x45\xa7\xed\xa6\xab\x34\x93\xf8\x9f\x39\xb5\xad\xd8\ +\xb3\x9b\x30\xe1\xc2\xd8\x84\x7e\x39\xa3\x78\x4a\xd2\xac\xdb\xd4\ +\x99\xd4\xdc\x58\x5e\x77\x95\x96\xeb\x4e\x75\x2a\x05\x87\xb3\xcd\ +\xce\x9e\x11\xb6\x1b\x05\x69\x2c\x72\xc5\x50\xb8\x5b\xbe\x09\x4c\ +\x38\x47\xca\x2c\x0f\x8e\x32\x98\x38\x4a\x33\x51\xed\x42\x81\xdc\ +\xc5\x41\xa6\xe2\x0a\x5f\x1f\x63\x9e\x2e\x82\xc7\x5b\x38\x2f\x5c\ +\x6a\x7e\x15\x85\x7e\x88\xa8\x67\x90\xa4\x67\x46\x6c\x68\x72\x7e\ +\x7b\x72\x38\x26\xba\x46\xae\x0f\x22\xb4\xe1\x46\xaf\x4d\x51\x62\ +\x4f\xe8\xea\x0f\x3a\xc6\x98\x33\x35\xd5\x6d\x25\x64\xcb\x5e\x72\ +\xe1\xbe\x6e\x71\x82\xe7\xe2\x82\x77\x1d\x73\x85\x43\xd8\x55\xb2\ +\x2d\x8a\xc8\xc5\x02\x30\xea\xfd\x89\xb2\x2c\x24\xe1\x00\x1a\x97\ +\xab\x0b\x31\xc6\x72\x36\x30\x16\xe9\x55\xae\x24\x1a\xa2\xf7\xb7\ +\x80\x2e\x03\x3b\x3f\x1c\x52\x88\x84\x48\xf0\xb1\xd9\x9e\x5d\xe0\ +\x73\x75\x23\x28\x95\xb0\x61\x4e\x1c\xbd\x37\x24\x7e\x06\xc3\x0c\ +\xd6\x3c\x87\x27\x84\x27\xa6\xcb\x13\xba\x29\x79\x28\xa8\x78\x12\ +\x8b\x21\x6e\xaa\x1d\xeb\x66\x47\x78\xbd\x68\xcd\xf6\xe5\x7e\x44\ +\xd1\x12\xef\xcf\xc1\x35\x2d\x2e\x24\xb4\x86\xb4\x22\x0c\x2b\x8a\ +\x76\x20\xa1\x22\xf7\xf5\x0a\x94\x89\xf3\x9a\xf5\x46\x46\xf1\xe1\ +\x24\xd0\x25\xda\xb4\xef\x55\xa6\x76\x89\x80\x7d\x0a\x8a\x4f\xe6\ +\xab\xd1\xc6\xa3\x56\x54\x8a\x99\xa0\x53\x5a\x96\xc1\xec\xa7\x07\ +\xfe\x2a\x03\xf8\x24\x21\x5b\x49\xfa\x44\x09\x32\x2a\xba\xcb\x4a\ +\x74\x57\x92\x5d\xdc\x68\x32\xbd\x5d\x2b\xc3\x0b\x92\x47\x1a\xe3\ +\x99\x9c\x84\x14\xe3\x34\xe4\x76\x12\x0f\xdd\x51\x81\x98\x2a\xeb\ +\x11\x53\x36\x94\x96\x27\x2b\xce\xd8\x23\xa0\x4e\xc3\x6b\x2a\x63\ +\x7a\x6a\x19\x67\xa6\x22\x4b\x26\x4f\x79\x2b\x0a\x9c\x33\x2b\x80\ +\x13\x95\x7f\x3a\x23\x24\xef\x96\xb0\xbf\x7b\x5c\x2f\xbc\x4b\x64\ +\x65\x44\x83\x25\x66\x2e\x53\xaa\x68\x23\x33\x8b\xca\xf9\xc1\xe3\ +\x7e\x0b\x9b\x2e\xf7\x1a\x53\xae\xfb\x61\xa6\xeb\xa7\xb4\xc6\x17\ +\x1d\x2b\x94\xef\xa1\x16\xbe\x39\x74\xd5\x56\xd1\x8a\xc6\x35\x55\ +\x7e\x06\x18\x95\x2a\x55\x32\x74\x71\x43\xb6\x60\xfb\x3e\xea\x7f\ +\x49\x71\xd0\xaf\xcc\xa0\x49\x7d\xf8\x0e\x16\xb3\x11\xbd\x30\xb5\ +\xf1\x5a\x7a\x21\x37\x32\xea\x3d\x59\x61\x8f\x41\x73\x6e\x2b\xc9\ +\xf6\xd6\xf2\x7d\x59\x13\xa0\x7b\x9b\x47\x67\x32\xda\x5b\x2b\xc4\ +\x6c\x30\x11\x23\x62\x9e\xba\xcb\x7f\x9e\x6c\x71\xab\x5c\x0c\xdc\ +\x02\x65\xdb\x51\x5f\x6a\x91\x67\xc7\x9f\xcd\x94\x83\x00\xb3\xb8\ +\x30\xeb\x38\x82\x95\xcb\xc8\x10\x08\x63\x61\xea\xab\x28\xc2\xed\ +\xc9\x78\xee\xad\xbc\xbd\x63\x84\xed\x53\xa1\x08\xee\x7c\x42\x7d\ +\x6a\x50\xc6\xe5\x2b\x6e\xfd\xe9\xe6\x0a\xa3\xe9\x38\xd4\x79\x31\ +\xb4\xd7\x23\xde\x18\x16\x46\xc4\xfc\x21\x0b\xc9\x03\x86\x94\x3a\ +\x2a\x1c\xf6\xb2\x9a\x91\x9b\xaf\x66\x7e\xcc\x9c\xf5\x30\x9e\x4d\ +\xb7\x50\x6c\xa4\x5e\x6f\xb1\x08\xf5\x05\x82\x66\x7d\xd2\x71\xcc\ +\xa6\x68\x3c\xf0\xc5\xbd\x8f\xd1\xfb\x5f\xe6\x6f\xd0\x81\x0a\xe5\ +\xf7\x2c\x39\x04\x72\xf4\x7c\x36\x69\x0f\x92\x76\x6b\x6d\x88\x7b\ +\xdf\xe7\x86\x3c\x4d\x09\xed\xba\xf0\x9d\x44\x1f\xd5\x7c\xe3\xcd\ +\xca\xe5\x1c\xfc\xfd\xed\xb2\x72\x23\x14\xf4\xdd\xa8\xb7\x50\xc3\ +\xb8\xd1\x8b\xe5\x0c\x6c\x51\x61\x14\xb3\x28\x5e\x73\xeb\x31\x23\ +\x9f\x80\xb4\x5d\xb2\xf3\x64\xe1\x70\x48\xa0\xf3\x30\x8b\x9a\xed\ +\x6d\x9b\x3c\x1e\x22\xcf\x79\x7b\x8a\x3c\x72\x32\xea\xf9\x74\xcf\ +\x58\xdc\x1b\x23\x81\x90\xe9\xfc\x81\xb8\xd0\xa4\x60\xd4\xf9\x26\ +\xc6\xc5\x0d\xe5\x56\x3a\x63\xc3\xd1\x9f\xb0\xc0\x7e\x3b\x00\x25\ +\xe3\x38\xf6\x98\xed\x16\x48\x52\x53\x01\x88\x8e\xbc\x46\xc1\x4b\ +\xd5\x27\x36\x14\x75\xd1\x89\xc9\x36\x0b\xb5\xf3\x51\xef\xb5\x6d\ +\x52\xcd\x7a\x50\x89\x8f\x92\x71\x2b\x65\x4d\xc7\xd3\x46\xea\x36\ +\x27\xf1\xc8\x8c\x68\x32\x13\x66\xd8\x12\x3f\xfa\x36\x39\x29\x3c\ +\x92\xfd\x5b\x26\x01\x84\x45\x8f\x19\xb0\x5e\xc2\x21\x10\x4a\xb5\ +\x57\x1a\x06\xac\x15\x51\x8a\x49\xab\xc4\x0e\xb0\xf2\xcd\x1d\x89\ +\xed\xf2\x2e\x65\xe9\x49\xfb\x4e\x73\x58\xee\xb4\xe7\x06\x94\x2b\ +\x34\x9e\xd8\x2e\xaa\xa7\xcd\xcb\x5c\xdc\x90\xdd\xbd\x78\x73\x91\ +\x5f\xc8\x84\xf9\x73\xe4\xf3\x2f\xd8\x45\x6c\xff\x21\x37\x1d\xbf\ +\xcb\x25\xc8\xdc\xf6\x0a\x37\x14\x87\xeb\x8f\xcd\xad\x68\xde\xe2\ +\x66\x87\xad\xcd\x49\x39\x17\xb9\x98\x7b\x5a\xdf\xbc\x61\x96\xc5\ +\xe8\x22\xe2\xa4\x06\xa4\x13\x4a\xda\x68\x27\x30\xc7\x13\x36\xcd\ +\xd2\xc7\xba\x9d\x00\x11\x1e\xc4\xc0\x13\x97\x5c\xf0\xd4\x51\x33\ +\xba\x11\x5d\xf2\xa2\x48\xae\x47\xe2\x72\x8d\xbc\x8f\x36\x3e\x8f\ +\x48\xfe\x88\xa5\x7d\x9c\xa0\x32\xd7\x74\xda\x48\x6c\xe1\x3a\xff\ +\x89\x06\xa3\x5e\x98\xc9\x59\x24\x5d\x20\xe1\x74\xdb\x4d\xcd\xc6\ +\x93\xa1\x4c\x1c\x98\xb8\x79\x6c\xe0\x25\x46\x0a\x45\x78\x58\x4d\ +\xf0\x3c\x0e\xa0\x97\x7e\x18\x0d\x9a\xe5\x39\x16\x95\x86\x8d\x76\ +\x37\xd7\x59\x11\x66\xf7\x24\x53\x43\xe0\x18\x95\xcd\xa5\x62\x43\ +\x2e\x04\x29\x80\xbc\x55\x43\x19\x25\x23\x23\x29\x87\x86\x72\x8a\ +\xb9\x0a\xe0\x9d\x31\x45\x87\x53\x53\xa9\x0d\xc7\xd6\xba\x8d\xa3\ +\x75\x28\xcd\xc0\x95\xd6\xe4\x39\x3a\x44\x13\x11\xdd\xbe\x3d\x0d\ +\xe4\x47\xd0\xb8\x05\x4f\x84\xad\x92\x87\xbe\x8c\x36\x8d\x07\x01\ +\xf5\x85\x57\xd3\x52\x45\xa4\x6b\x89\xcc\x16\x09\x07\x7d\xa2\xcf\ +\xf4\xd2\x33\x3a\xf8\xa3\x41\x5d\x4c\xa0\x16\x31\x11\x83\xc0\xa4\ +\x86\x20\xed\x6b\x17\x73\x55\x0e\x7f\xee\x5d\x8c\x5e\xa6\x04\xec\ +\x1f\x1c\xf8\xdd\x11\xb2\xd6\x53\xc7\xa6\x58\x95\x78\x25\x58\x34\ +\xf1\x6d\xba\x69\xf8\x66\x78\xa3\x20\xa9\xb1\xc4\x2d\x79\xaa\x63\ +\x59\x3f\x70\xc8\x41\x66\x36\x96\x4d\xda\xd9\xd9\x34\x18\x6f\xb9\ +\x16\x1b\xe4\xec\xc4\xf3\x82\xa4\x88\xeb\xe0\x2d\x1b\x4c\x0d\x54\ +\xb2\x94\x7d\x11\xb2\xe4\x10\x97\x3c\x59\xf2\x90\xc8\x4c\x86\x52\ +\x50\x7f\x7c\xca\xe1\x18\x9f\xd8\x2d\x14\xe7\x76\xc6\xd3\x4a\x06\ +\x99\x6c\x16\x16\x00\xd1\x98\x60\xcd\x0d\x83\xc5\x59\x47\x02\xd3\ +\xd0\xe9\x10\x81\x56\xc2\x8d\x5e\xb9\x71\xce\xc9\x79\x91\x9f\xb5\ +\x51\x71\xb1\xf1\x0a\xed\xd8\xb0\x98\x5e\x84\xd4\x9b\xa3\x81\xf2\ +\xca\x02\xa8\xb4\x51\xfc\x68\xf3\xab\x1c\x2b\x71\x63\x8c\xd0\xea\ +\xdb\x25\x5f\x4b\x79\xb8\xcd\x91\x93\x89\xa9\x41\xe6\x46\xea\x84\ +\x86\x2d\xf8\x60\x4c\x21\xea\x67\xfc\x36\x52\x22\x03\x1d\x20\x4e\ +\xce\xe4\x68\xd2\x24\xaa\x75\xa7\xad\x44\x89\xb1\x50\x72\x0f\x93\ +\xc1\x46\xa4\xb2\x32\xad\xc4\x4c\x1f\x98\xc3\xdf\x43\x55\x2d\x31\ +\x47\x66\x4e\x34\x6b\x44\xc7\x43\x2b\xa5\x86\x6c\x31\x3a\xa9\x56\ +\xbe\xc7\x29\x23\x4a\xc3\xf8\xb1\x75\x84\x75\x2e\x0d\x50\xdd\x61\ +\xd1\xd4\xf1\xdf\xbe\x95\x6c\x16\x99\xe3\xa0\x9c\x0d\x53\xe6\x88\ +\xce\x11\xbd\xe9\x15\xf1\x1b\x38\x43\x0a\x8e\x82\xdf\xa4\xc9\x56\ +\xef\x5a\x3f\x52\x64\x4c\x27\x88\xa6\x0f\xea\xae\xda\xf2\x26\x5a\ +\x3d\x44\x8b\xe8\x90\xbd\x25\x21\x17\x63\x91\x28\x54\xd4\x7d\xa5\ +\xa7\x56\x03\xda\xc4\x58\x3b\x76\x26\xa6\x76\x2c\x12\xd5\x89\x33\ +\x1e\x6e\x57\x85\xe1\x76\x1e\xd4\x70\x3b\x93\x87\x3b\xbb\x82\x32\ +\x1a\x55\x50\xe2\x96\x7a\x38\x57\xf8\x68\x31\x8d\xad\x42\x06\x81\ +\x47\x56\x78\x3c\xc0\x6c\xee\x13\x6f\x53\x38\x2c\x32\x4e\xa6\x32\ +\x19\xec\x4a\x66\x87\xb6\x02\x93\x40\xe0\x8e\x9e\x28\x10\x9b\x0e\ +\x12\x88\x28\xf3\x16\x4e\xdc\xa9\x41\x20\xce\x1c\xc3\x43\x5f\x6a\ +\xc4\x27\xb7\x9e\x09\x57\xa2\xcf\x4b\x9a\x98\x18\x77\x74\xde\x7c\ +\x44\x3e\x79\x33\xd8\x01\xae\xaa\x8c\x91\x72\xa9\xcd\xbe\xa5\xe4\ +\x9e\x1c\x53\xc6\x53\xa4\x13\x42\x12\x64\x41\xc9\x1d\x59\x0a\x0a\ +\x86\x13\x77\x51\x6f\x3d\x68\xfa\x48\x32\xe4\xc2\xb0\xcc\x4f\x82\ +\x45\x98\x6b\xf1\x60\x61\x4f\x2c\x43\x46\x17\xfe\x96\xc4\x91\xc0\ +\xbb\x80\xc3\x9d\x19\xd2\x9e\xcb\x2e\x01\x0b\x2f\xa5\x04\x4b\x07\ +\x63\xcf\x2e\xcf\x2b\x89\x24\xdb\xcb\xbe\xd9\x21\xaf\x4d\x34\x73\ +\x53\xaa\x90\xa6\xa7\xe9\x48\x71\xd7\xcf\x34\xd9\x75\x73\x43\x32\ +\x3c\xde\xbc\xbb\xb9\x9f\x84\x6a\x4f\x82\x74\x69\x31\x13\x0f\xb5\ +\xa7\x22\x21\xb3\x70\x13\x28\x5b\x43\xaa\x75\x62\xb2\x9b\x25\xdc\ +\x10\x51\x9a\xeb\x3a\x03\x29\xa9\x24\x72\xc1\x40\x24\x8f\x5d\x9a\ +\xe3\xb2\x3e\x31\xae\xb1\x3c\x95\xd8\xc8\xb2\x52\x2b\x98\xa3\x07\ +\xbc\x41\x58\xb8\x2f\x9a\x88\x8b\x96\x73\x1b\xc5\xdd\xd3\x11\x5f\ +\x9d\x38\x19\x06\x26\x80\xd2\x23\xcf\xad\x8b\xf8\x0d\xc3\x99\x18\ +\x61\x3f\x98\x0a\x7b\x33\x99\x13\xc6\x6f\x39\x3c\x29\x94\x12\x7d\ +\x2c\x96\xdb\x10\xc9\x50\x0e\xb4\x28\xcc\x07\x13\x61\x60\xeb\x86\ +\x93\x76\x45\x7d\xa0\x4d\xb0\x17\xd1\x2d\xae\xd9\x16\xa7\xb1\xfb\ +\x44\xaa\x9c\x51\xb2\x63\xb8\xa5\xa3\x1a\x45\x72\x4b\x84\x8c\x2a\ +\xb9\x0d\x37\x87\x90\xfa\x06\x77\xb6\xe0\x0c\x23\x22\x7e\xcc\x29\ +\xa3\x9c\xe8\x59\x0d\x94\x96\x42\xe4\x0a\xef\xb5\xb3\xed\x06\x1e\ +\xce\xc7\x3a\x22\xee\xd8\x56\x37\x38\xca\x26\x07\x3c\x02\x80\xcd\ +\xa8\xf0\x44\xa0\xcf\x9b\x54\x45\x9f\xfb\xbc\xb5\xf6\x62\x64\x91\ +\xb7\x6f\x8f\xa2\xee\xd8\x90\x9b\x35\x56\x61\xaf\xdd\xa5\x94\xd4\ +\x9a\x94\x16\x39\xcb\xa8\xa4\xa8\x8a\x96\x50\x74\x4f\x63\xbb\xed\ +\x60\xc9\xe9\xf2\xbb\x0d\x72\x9d\xb7\xc3\xe8\xbe\x8d\x8b\xd6\x86\ +\x5c\xac\x8a\x05\xf4\x1c\xf5\xde\xac\x1d\x3b\x13\xfe\xbe\xcb\xf8\ +\xfb\xae\xd8\x52\xf4\xdb\x55\xd1\x97\xa7\x5b\xca\xce\x34\x4b\xd9\ +\x99\x7e\x29\x3b\x4d\x50\x77\xc6\x41\xd5\x7f\xad\x8a\xfe\x71\x3a\ +\x50\x77\xa5\x01\x75\x57\x5a\x50\xe7\x33\x9e\x79\xc9\x6b\xcf\xc2\ +\xc1\x1d\xc3\x01\x66\xf3\x4a\x30\x11\x9f\xe9\x8e\xf1\x30\x33\x57\ +\xfc\xb5\x78\x39\x1c\xc5\x5f\x34\x3d\x1e\x42\xaf\x02\x07\xe3\xd1\ +\x9e\xd5\xb6\x19\x05\xf8\x7f\x37\xed\x12\xac\ +\x00\x00\x33\x05\ +\x00\ +\x00\xb1\x9d\x78\x9c\xc5\x7d\x09\x74\x1c\xc5\xb5\x68\x69\x97\x46\ +\x9b\xb1\x1d\x63\x8c\x31\x6d\xd9\x31\xb2\x2d\xcb\xc6\x0b\xc6\xc2\ +\x31\xc8\x92\x65\x1b\x6c\xd9\x58\xc2\xd8\x86\x04\x5a\x33\x3d\x52\ +\xdb\x33\xd3\x43\x77\x8f\x16\x76\x08\x5b\x58\x03\x84\x3d\xe1\x41\ +\x08\x4b\xf8\x49\x7e\xd6\xff\xc8\x7f\x81\xac\xf0\x13\x08\x09\x3f\ +\xdb\x0f\x79\x59\x30\x90\x85\x2d\x24\xf0\x42\x36\xf2\xf2\x6f\xdd\ +\xaa\xea\xaa\xde\xa4\x1e\x93\xbc\x77\x7c\xe4\x91\x7a\xba\xab\x6e\ +\xdd\xba\xfb\xbd\x75\x7b\xfd\x23\x99\xd9\x4f\xbe\xfe\xe1\x5b\x9e\ +\x9e\x3f\xf7\xcb\x67\xdf\xfb\xe8\xcf\x36\x12\xd2\x70\x3b\x21\x64\ +\x0f\x21\xf7\x0f\xc2\xe7\x5e\x42\x1e\x98\x0f\x9f\xfb\xe0\xf3\x3b\ +\x84\xd4\x3c\x0b\xd7\x0f\xc2\xe7\x4f\xe0\xef\x0a\xf8\x7c\x19\x3e\ +\x3f\x45\x48\xdd\x38\x21\xe7\xcc\x25\x64\xcb\xfb\x09\xa9\xd2\xd9\ +\xe7\x58\x8e\x90\x91\xd5\x84\x1c\x78\x2f\xa9\x7e\x60\x82\x90\x73\ +\x5f\x20\xd5\xff\x56\x4d\x48\xe3\x8b\xec\xf3\xa2\x25\xa4\x66\xc5\ +\x26\x42\x5a\x0e\x67\x9f\x37\x0e\x93\x9a\xbe\xc7\xe1\xef\x5e\xf6\ +\x79\xd3\x0c\x52\xb3\x7b\x13\x8e\x85\x9f\x37\x9d\x40\x6a\x3e\xf1\ +\x1f\x84\x1c\xf1\x3d\x52\xf3\xc8\xdf\x08\xf9\xe8\x57\x48\xcd\x77\ +\xff\x0f\x21\xf7\xe5\x48\xcd\x73\x97\x13\xb2\xe0\x72\x52\xfb\x3f\ +\xae\x25\x24\xf7\x5d\x32\xed\xb2\xad\x84\x0c\x6e\x26\xd3\x6b\xfe\ +\x37\x21\xff\x42\xc8\xac\x27\x00\xde\xcb\xef\x26\x4b\x28\x1c\xce\ +\x4f\xc9\xd2\x6f\xfc\x4f\x42\xdc\x4f\x91\xa5\xcf\x19\xf0\xf9\x0b\ +\xb2\xee\x17\xab\x08\x59\x73\x2d\x79\xcf\xbd\x47\x10\x32\xfe\x00\ +\xd9\x70\x33\xc0\x7f\xdc\x13\x64\xcb\x0d\xe7\x13\xb2\x68\x2d\x39\ +\x25\xbb\x86\x90\x95\xd7\xc2\xe7\x5a\xf8\xfc\xbf\xf0\xb9\x8e\x90\ +\x55\xb3\xc8\x29\x57\xfe\x80\x90\x0b\x4f\x27\xa7\x9f\x0d\xb8\xba\ +\xf3\x05\xb2\xe7\x6f\x00\xdf\xb6\x4a\xb2\xf7\xf6\x77\x13\x32\xd3\ +\x66\x9f\x1f\x5e\x4a\xf6\xef\xb9\x93\x90\x0f\xe9\x64\xe2\x75\xb8\ +\xff\x9c\x41\x72\xe1\x45\x2d\x84\x0c\xbf\x45\xae\x5e\x70\x0b\x21\ +\x8b\xbf\x0e\x9f\xb7\x11\xb2\xa4\x15\x3e\xef\x80\xcf\x33\xc8\x8d\ +\x5f\x7a\x09\xf0\x70\x0e\x79\x60\xed\x89\x84\xb4\x17\xc8\xc3\x17\ +\xc3\x38\x17\x3c\x48\x9e\x78\xa1\x40\xc8\xc2\x9f\x91\xa7\x1e\x9a\ +\x49\x48\x71\x21\x79\x9b\x3c\x49\xc8\xb5\xaf\x56\xcc\xff\x11\xc0\ +\x33\x70\x52\x45\xdb\xe7\xff\x0c\xf3\xde\x5f\xb1\xfc\xfa\x0b\x09\ +\x79\xdf\x65\x15\x5b\xfe\xf3\x3e\x42\xd6\x6e\xac\x18\x78\xf3\x61\ +\x42\x2e\xdd\x56\xb1\x7b\xd6\xc9\x70\xff\x69\x15\xc3\xcd\x57\x13\ +\x72\xe5\x58\x85\x79\xd8\xb9\x84\xdc\xfe\x40\xc5\xa5\xeb\x52\x84\ +\xdc\x72\x58\xc5\x35\x23\x25\xc0\xeb\x89\x15\xf7\x5e\x94\x26\x64\ +\xee\x0d\x15\x5f\x7d\xf6\xe7\x84\xec\x2e\x54\x7c\xef\x86\xef\xc3\ +\xba\xbe\x50\xf1\x8b\xc3\x7a\x60\xcf\x1f\xae\x78\xfe\x3f\x80\x1e\ +\xee\x7e\x7f\xc5\xdb\x9f\x82\xeb\xe7\xdc\x52\x59\xf3\x18\xc0\x77\ +\xfe\xae\xca\xbe\x3d\x30\xce\x6d\x2f\x57\x1a\x9f\x1c\x22\xe4\xc1\ +\x7b\x2a\x0b\x75\xcf\x13\xd2\xff\xc7\xca\xd1\x85\x33\x08\x39\xe1\ +\xa2\xca\x0b\x9e\x3b\x8d\x90\x1d\x37\x57\x7e\xa8\x6f\x0e\xe0\xe3\ +\xb3\x95\x0f\x76\xbc\x8b\x90\xea\x0d\x95\x0f\x1f\x07\x78\x70\xc6\ +\x2a\x3f\xf3\x3b\xd8\xaf\x0f\xec\xaa\xfc\xf2\xc3\xd7\x13\xb2\xee\ +\xed\xca\xaf\x64\xdf\x00\xd2\xbb\xb3\xf2\x9b\x27\xfe\x81\x10\xe3\ +\x5b\x95\xcf\x7e\xec\x8b\x40\x4f\xa9\xca\x7f\x9f\xf3\x21\xa0\x39\ +\xa3\xaa\xe2\xb2\x6f\x10\x72\xdd\xa3\x55\xd3\x6f\xdb\x4f\xc8\x35\ +\x17\x57\xcd\x99\x09\x78\x59\xd1\x54\x35\x67\x16\xd0\xed\xce\x13\ +\xaa\x96\xcf\x81\xeb\xa5\xfe\xaa\x0b\x9f\xfc\x02\x21\x3d\x76\xd5\ +\x55\x47\x03\xfe\x7b\xcf\xa8\xba\x7b\xcf\xfd\x40\xd3\x27\x57\x7d\ +\xee\xee\xbf\xc0\xba\xbf\x5e\xf5\x85\x6f\xc2\xfe\xdc\xb6\xb6\xea\ +\xd1\x1f\xbc\x08\xf7\xff\xb5\xea\x1b\xeb\x61\xbe\xf1\x4c\xd5\xe3\ +\x3f\x7c\x1f\xf0\xc3\xe5\x55\x4f\x35\xff\x12\xf6\x71\x4f\xd5\x4f\ +\x9b\xe0\x79\x77\x7d\xd5\x1b\x45\xa0\x87\x8e\xaf\x56\xbd\xf1\xe8\ +\xd9\x40\x5c\x75\x55\x7f\x6d\x05\x7a\x5e\x7e\x7b\xf5\xfc\x05\x0b\ +\x08\x99\x7f\x54\xf5\xee\xda\x9b\x09\x59\xf6\xe5\xea\xb3\xcf\x87\ +\xf5\xdd\xb5\xba\x7a\xe2\x75\x18\xff\xaa\xaf\x57\x5f\x3a\x06\xf4\ +\xb1\x63\x6b\xf5\x95\x7f\xbe\x9b\x90\xeb\x3f\x51\x7d\xed\x8f\x80\ +\x77\x32\x5a\xf5\x3d\x57\x03\xfe\x6a\x4a\xec\x73\xe2\xf5\xea\x8f\ +\x1d\x0b\xf8\xfd\xe0\x9f\xab\x1f\x7a\x05\xe8\x7a\xd5\x19\xd5\x07\ +\x0b\x2f\x00\x1c\x7f\xaf\x7e\xb1\x15\xf6\xa7\xf2\x6f\xd5\xaf\x74\ +\x7f\x1d\xc6\x3f\xa9\xfa\xf5\x67\x1f\x22\xe4\x94\x62\x4d\xd5\xfb\ +\x01\x7f\xf9\xe6\x9a\x9a\xa7\x00\xcf\x1b\x97\xd4\xb4\xbe\xe1\x12\ +\x72\xb3\x5b\x73\xe4\x34\xc0\x43\x5f\xaa\x66\xc9\x2f\x81\xbe\xb6\ +\x5f\x52\xd3\x7b\xc2\x59\x84\x58\x73\x6b\xce\x7c\x16\xf0\xd6\xfa\ +\x69\xf6\x79\xd3\x27\x6a\xd2\x6f\x01\xbc\xdb\x36\xd7\x18\xbf\x05\ +\x7e\xb8\xf8\x99\x9a\x2b\x3f\x0d\xe3\xdf\xd5\x54\x73\xeb\x43\x80\ +\xa7\x19\xd3\xd9\xe7\x5d\x7f\xac\xf9\xe4\x29\x70\xbd\xe7\xc7\x35\ +\x5f\xac\xfa\x26\x21\xf3\x5a\x6a\x1e\x6d\x82\xfd\x7a\xff\x82\x9a\ +\x47\xaf\x07\x3a\x19\xba\xbe\xe6\xb1\xdd\x30\xce\x29\x95\x35\x8f\ +\xef\x04\x7c\x34\xcd\xa8\xf9\xe5\xf5\x9d\x84\x1c\x96\xaa\xf9\xeb\ +\x4f\x81\x9f\x36\x7e\xa2\x76\xde\xaf\x60\x1f\xee\xbd\xa0\x76\xf1\ +\x6f\x3f\x0e\xf2\xe0\xa8\xda\x95\x2f\xc0\xba\x2e\xbc\xb8\xf6\xf4\ +\x23\x00\x2f\x84\xd4\xee\x7b\x1d\xf0\xe5\xdc\x5f\x7b\xc6\xf7\xe0\ +\xbe\x0d\xb7\xd4\xe6\xae\x02\x3a\x38\xe9\xd8\x5a\xf7\x28\xa0\x9b\ +\xd3\xbe\x5d\x7b\xcd\xad\xbd\x30\xee\x97\x6b\x6f\xdb\xf3\x2d\xd8\ +\xdf\x6f\xd7\x7e\xe9\x62\x80\xeb\xa8\x3b\x6a\xbf\xf5\x48\x0d\x21\ +\xa3\xa5\xda\xdf\xd4\xf4\xc3\x28\x3f\xae\xfd\xed\xc3\xa7\x13\x72\ +\xcf\xc5\xb5\xbf\x7b\x0a\xf0\x79\xa4\x5e\xfb\x97\xbf\x53\xb8\xa7\ +\xd7\xbe\x3d\x07\xe8\x63\xf5\x79\xb5\x6f\xdf\x03\xf4\x7f\xf3\xbf\ +\xd5\xd5\x7f\x10\xf6\x75\xe9\xf1\x75\xcd\xff\xfa\x47\xa0\xb7\xc3\ +\xeb\x5a\xae\xd8\x00\xf7\x3f\x53\xb7\x66\x04\xf8\xec\xf0\xce\xba\ +\x35\xbf\x81\x7d\xbb\xfd\x95\xba\xde\xee\x25\x84\x5c\xf2\x68\xdd\ +\xc9\x47\x03\x5f\x54\xce\xad\xdb\xee\xb4\x81\xbc\xba\xa1\xae\xff\ +\x01\xa0\xcf\x8b\xae\xa9\xdb\xf3\xd4\x6f\xe0\xef\xa7\xea\xd2\xff\ +\x09\x7c\x7d\xd8\xef\xeb\x2e\x7e\xe2\x73\x20\x27\xeb\xeb\xae\xb2\ +\x61\x1f\xc7\x6e\xac\xbb\xef\x45\xb8\xde\x76\x5b\xdd\x57\xdf\x86\ +\xfd\xe9\xbc\xb8\xfe\x98\xcf\x03\xde\x6e\x7d\xb2\x7e\xe5\x37\x80\ +\x2f\xef\x78\xac\xfe\x38\x17\xe0\x5a\x78\x6b\x7d\xef\x17\x01\x4f\ +\xab\xdf\xae\xdf\xfa\xad\x15\x40\x57\x7b\xeb\xf5\xf3\x61\x9c\x79\ +\xdd\xf5\x1f\x7d\x72\x18\xe8\xe6\xf7\xf5\xf7\x3d\x07\x72\xea\xbc\ +\xc6\xfa\xcf\xbc\xab\x1d\xe8\x6d\x41\xfd\xe7\xab\x01\xcf\x77\x9d\ +\x5f\xff\xcc\x4a\xc0\xdf\x45\x83\xf5\x3f\x78\xda\x84\xcf\xc7\xeb\ +\x0f\xde\xf5\x18\x21\x73\x6e\xa9\x3f\xf8\x55\xa0\xef\x4b\x66\xd4\ +\xbf\x72\x1d\xf0\xf9\xc7\x3e\xd3\xa0\xfd\x64\x21\xc8\xeb\x0d\xf0\ +\xf9\x79\xf8\x7c\x05\x3e\x81\x9e\xef\x3f\xa7\x61\xfb\xad\x20\xd7\ +\xdf\x5d\x6c\x30\x7e\x02\x78\xb9\xfc\xc8\x86\x91\xe6\xc5\x84\xdc\ +\xf0\x9d\x86\x73\xae\x03\xfc\xd5\xde\xd4\x50\x5a\x00\xf0\x95\x9a\ +\x1a\x46\x5f\x03\x79\x9e\xfd\x53\xc3\x15\x0f\x00\xbe\x17\x7c\xb6\ +\xe1\x9a\x05\xb0\x8e\x3b\xe7\x37\xdc\xfd\x37\x90\x37\xc3\x27\x37\ +\xfc\xaf\x25\x80\x9f\x55\x3f\x6c\x78\x7a\x2e\xec\xd7\x87\xef\x6e\ +\xf8\xde\x7c\xd0\x0f\x67\xdd\xdc\xf0\xcb\x05\xb0\xfe\xbd\xb7\x35\ +\xbc\xba\x14\xe4\x78\xd3\x39\x0d\xaf\xaf\x02\xb9\x34\xfb\x94\x86\ +\xdf\x1d\x0d\x78\xae\xba\xba\xe1\x6f\x9b\x40\x1e\xdc\x52\x48\x35\ +\x7c\x95\xca\xa3\xcd\xa9\xf6\x3b\x81\x0e\xfb\xdb\xe0\x13\xd6\xdd\ +\x6f\xc2\x27\xac\xab\xff\xd3\xa9\x65\x8f\x01\x7f\xae\xb8\x24\xb5\ +\xe6\xe3\xb0\xae\x0f\xfc\x29\x75\xe2\x31\x40\xe7\xe7\xdf\x99\x3a\ +\xf1\x00\xc0\x73\xfe\x0f\x53\x5b\xef\x07\xf9\x76\xef\x63\xa9\xb3\ +\x9f\x03\x3a\x5a\x34\x0e\x9f\x87\xc3\xe7\x53\xf0\x09\x72\xfd\x98\ +\x79\x29\xe3\x2e\x80\xe7\xa6\x1f\xa7\xc6\x6b\x2e\x26\xa4\xe2\xd4\ +\xd4\x45\x37\xc0\x3c\xeb\xbf\x99\xba\xfd\x8a\xd9\x20\x77\x1f\x4c\ +\xdd\x71\x26\xec\xc7\x9d\x97\xa4\x1e\x9a\x05\xfc\x34\xfd\xfb\xa9\ +\x8f\x7f\xe0\x55\x90\x17\x5f\x4a\x7d\xf3\x4c\xe0\xa3\xd6\x17\x52\ +\xcf\xec\x7c\x04\xf8\xbf\x21\xf5\xcc\xaf\x40\x3e\x1c\xfe\xa7\xd4\ +\x8f\x7e\x0f\x70\x5c\xf8\x74\xea\x95\x1b\xaf\x02\xbc\x9c\xd5\x58\ +\x37\x0e\xf8\xbb\x2c\xd7\x78\xe4\x73\x0e\x21\xa7\x6e\x6c\x5c\xf8\ +\x11\xc0\xf3\xae\xbd\x8d\x0b\x1f\x07\x7a\x9d\xb1\xbd\x71\xd1\x85\ +\x80\x87\xf3\x9e\x68\x5c\xba\x13\x9e\xbb\x4a\x6b\x5c\xf6\x39\x90\ +\xd7\xfb\x73\x8d\x6b\x1d\x58\xdf\x7d\x1f\x6a\x3c\xe9\x24\xa0\xbf\ +\xbe\xf1\xc6\x9e\xa7\x01\xde\x4d\xc7\x37\x66\xdb\xbf\x07\xe3\xce\ +\x6e\xbc\xea\xb9\x3a\x42\x52\xbf\x6b\xfc\x50\x2f\xe8\xc5\x15\x6f\ +\x34\x7e\xed\x0e\x90\x6b\xef\xbf\xaf\xf1\xfb\xc7\x80\xfc\xa8\x1e\ +\x6f\xfc\xc1\x85\x20\x4f\x1a\x8f\x69\xfc\xc3\x6f\x07\x60\x7d\x46\ +\x53\xed\x4e\xe0\xbb\xe6\xf5\x4d\xf5\x7d\x20\x8f\x2e\xd8\xd7\x74\ +\xc4\x5f\x40\xaf\x5c\xbc\xb5\xa9\xfd\x2e\xc0\xbf\x3b\xd1\x74\xec\ +\x85\x80\xa7\x5b\x67\x36\x1d\xbf\x1d\xe8\xbf\xee\x53\x4d\x5d\xb3\ +\x9e\x01\xbd\xda\xdf\xb4\xef\x2b\xc0\xd7\xe3\x2b\x9b\x0a\x57\xc2\ +\xfa\xda\xde\xd7\x74\xe3\x3d\xb0\x1f\xf7\x6a\x4d\xb7\x7e\x10\xd6\ +\xbf\xe9\xae\xa6\x27\x7f\x06\x70\xff\xcb\x68\xd3\x8f\x5e\x9f\x0e\ +\x74\xbc\xac\xe9\xe7\x77\x80\x9e\xdd\xff\x48\xd3\xef\x7e\x0e\x78\ +\xbb\xe2\x5f\x9b\xe7\xbe\xf5\x5b\x90\x8b\x0d\xcd\x5d\x39\x4a\xdf\ +\xb9\xe6\x4d\xcf\x03\x9c\x1f\x79\xbb\x79\xef\xbd\x30\xef\x05\xff\ +\xde\xbc\xef\x93\x40\xbf\xa3\x7f\x6e\x7e\xdf\xaf\x61\xdf\x8f\x39\ +\xa7\x39\x73\x3f\xd0\xdd\x7b\x3f\xda\x9c\xff\x13\xd0\x6f\xbd\xde\ +\x3c\xfa\x85\x9b\xe0\xf9\x33\x9a\xef\x7a\x15\xf0\x75\xda\xf6\xe6\ +\xfb\x9f\x05\x39\xbf\xf4\x91\xe6\x07\x7e\xf2\x31\xb0\x03\x9a\x9b\ +\x9f\x78\x02\xf8\xf0\x8e\xc1\xe6\x37\xd6\xc1\xf8\x57\x7f\xb1\x65\ +\x69\x35\xec\xf3\x79\x97\xb7\x74\xbc\x08\xd7\x3f\x72\x4d\x4b\xff\ +\xb7\x01\x3f\x0d\x5f\x6b\xb1\xee\x04\x7a\xba\xa7\xb6\xe5\xbc\x73\ +\x3b\x40\x5f\x57\xb6\xdc\xb0\x1f\xf4\xf6\x71\x67\xb7\xdc\x68\xc0\ +\xba\x8e\xf8\x7b\xcb\x93\xff\x0f\xe8\xf8\xe8\x97\x5a\x18\x9d\xbe\ +\x06\x9f\x40\x07\x1f\x59\xdf\xf2\xf2\x2f\xab\x08\xb1\x17\xb5\xbc\ +\x76\x10\xf6\x65\xcb\xe3\xad\x75\xd7\x81\x7c\xb2\xbf\xd1\x7a\xf8\ +\xa5\x20\x57\xc8\xef\x5b\x8f\xbe\x0e\xe4\xcd\x79\x3d\xad\x3b\x4a\ +\x5d\xa0\xdf\xce\x68\x3d\xeb\xc9\x1f\x12\x72\xac\xd9\x5a\xfa\x34\ +\xe8\xff\x0b\xa6\xb5\x8e\x7d\x1d\xf6\xfb\xc0\xed\xad\x1f\x68\x04\ +\xfe\xdb\xba\xac\xf5\x86\x87\x1e\x04\x3a\xff\x7b\xeb\xed\x29\xd0\ +\xcf\x1f\x7d\xb9\xf5\xee\x57\xef\x01\xba\x5a\xd2\xfa\xe5\x2b\x81\ +\xfe\x3f\xf8\xc9\xd6\xa7\xbf\x03\x74\xb6\xe6\xad\xd6\x5f\xcc\x07\ +\xfa\x5d\x78\x42\xeb\x5b\xb5\xf3\x08\xd1\x4e\x6d\x7d\x6b\x31\xe8\ +\xd1\xd1\x07\x5b\xff\x38\x46\xf1\xba\xa8\xf5\xaf\x67\xc1\x3e\x9f\ +\xdf\x02\x44\xf2\xe0\x2b\x00\x21\x99\x47\xba\x49\x86\x98\x24\x0d\ +\x3f\x16\x29\x10\x9d\xd8\x44\x23\x45\xfc\xdd\x25\x56\x3d\x0a\x53\ +\xf8\x69\xe8\xce\x64\xb4\x9d\x96\x59\x70\x81\x7e\xc0\xb0\xb2\xf5\ +\xac\x7b\x16\x5c\xc3\x4b\x15\x74\xa4\x33\x43\x23\x69\xa4\x44\xf2\ +\xea\x68\xf0\xbb\xbc\x4a\x67\xd2\xe1\x37\x83\x2c\x27\x43\xc4\x81\ +\xbb\x72\xf0\x64\x01\xfe\xd6\xe0\x67\x1c\x7e\x77\xe0\x19\x03\x9f\ +\x34\x3c\x38\xda\x61\x4e\x47\xd3\xb5\x22\x9d\x57\x73\x2d\x4d\x2f\ +\x68\xc6\xb8\xe9\xb8\x66\x61\x58\x1b\x33\x6d\x63\xf9\x90\x53\xcc\ +\x99\x05\x23\x0e\xcc\x8e\xc8\x05\xeb\x08\xdc\x30\xfc\x5e\x42\x70\ +\x35\xd2\x49\xff\x79\xd3\xb6\xd2\xe5\xc3\x6c\xc3\xb6\x55\x2a\x76\ +\x76\x76\xd2\xd1\xa7\x79\xa3\x0f\x5a\x9b\xe9\x75\x1c\x7f\x34\x02\ +\x0d\x16\x69\x87\xc5\x2c\xc6\xdf\x86\xc8\x7e\x58\x94\xab\x5c\x73\ +\xe0\xef\x1c\xfc\xc8\x27\x32\xca\xb7\x12\x61\x2a\x74\xf1\x08\x5a\ +\x81\x08\x72\x47\x0c\xcd\x31\x72\x46\xda\x35\x32\x9a\x35\xb4\x1f\ +\x7e\x69\x77\x16\x07\xf1\x85\xab\x89\x5f\xca\x65\xb0\x14\xb6\x2b\ +\x69\x04\x43\xc7\x89\xe9\x4e\xd1\xff\x1d\x00\xc6\xc6\x6b\x19\xdc\ +\x33\xb6\x7b\x23\xfc\x2e\x76\x77\x1a\x80\x65\xe8\x75\xe1\x6e\x1d\ +\xee\x61\xa8\x76\x02\xa8\x70\x62\xd1\xe0\x78\x0b\x3b\xbe\xbb\x08\ +\x1b\x6b\x38\x5a\xba\x64\xdb\x06\x6c\x3e\xdd\x65\xd8\xf2\x8c\x3b\ +\x02\x8b\xca\x68\x69\x2b\x67\xd9\x74\x85\x81\x75\x3b\xea\x02\x61\ +\x88\x89\x01\x77\x22\x67\x78\xb4\x20\x17\x68\x23\x50\x6c\x89\x2e\ +\x5c\xcb\x71\x82\xe5\xa0\x7b\x80\xcc\xc0\x51\xb4\x1e\x0e\x06\x0e\ +\x17\x3f\x47\x3d\xcc\x61\x53\x44\x78\xcf\x57\x75\xdb\x69\x7a\x7f\ +\x03\xbf\xdf\x4e\xe3\x8d\x59\xd2\x03\x37\x9a\x01\x0e\xa1\x18\xec\ +\x84\xdf\x7b\xc8\x20\xd9\x45\xb6\x21\x37\xe9\x1c\xef\x0e\x62\xa9\ +\x08\xcb\xd0\xc8\x00\x60\xde\x84\x31\x5c\xdf\x1d\x36\x5f\x8c\x8d\ +\x7b\x33\x0c\xff\xdb\x92\x50\x7a\x6c\x43\x77\x01\x9f\x40\x11\xba\ +\x9d\xee\xd4\x7a\x06\x77\x6d\x43\xfc\x15\xf4\x62\x87\x36\xb0\x65\ +\x6b\xdf\x20\xfd\x33\x6d\x15\x1c\xd7\xd6\xcd\x42\x04\xcc\xd3\xc8\ +\x46\xb2\x0c\xe6\xf6\x78\xd7\x1b\xbd\x7e\xe3\xb2\x01\x8f\x0f\x9b\ +\xd9\x53\x1b\xd9\x15\x7c\xf2\xf6\xc0\x6a\xe9\xe7\x10\x8c\xe5\x97\ +\x03\x8c\xb2\xf2\xe4\x2f\x70\x8d\x6e\x49\x11\x37\xc5\xf1\xc9\x14\ +\xe7\x9f\x84\x9f\x1e\x0f\x3f\x5a\xbe\x94\x73\xcd\x62\xce\x58\xc6\ +\xa4\xce\xd0\x32\x26\x62\x92\xa1\x2c\x62\xf1\x2d\x00\xee\x6b\xb8\ +\xb9\x25\xba\x20\x6f\xca\xda\x1e\xd3\x4e\x33\x62\x6a\x62\x4f\xb1\ +\x0b\xf8\xd0\xd5\x21\xfa\x48\xab\x83\x24\xc2\x42\x37\x7c\x37\x18\ +\xf8\x36\xc8\x75\x76\x04\x6f\xba\x70\x9d\xe2\x27\x28\x6c\xde\x23\ +\x71\x94\x46\x48\x83\x28\xe9\xde\x36\x28\x59\x52\x73\xf5\xc2\x30\ +\x65\x19\x85\x31\xc3\xeb\x9c\x4d\xfa\x10\x9e\x11\x0e\x8b\x27\x57\ +\xbc\x59\x53\x3d\x39\xcb\x31\xb4\x6d\x9c\xba\x5a\xf9\x10\xf4\xe2\ +\x36\x81\xe2\xfe\xc0\x28\x7a\x40\x42\x9d\x03\x58\x33\x3c\x66\x3f\ +\xc8\x31\x51\x40\x99\xc3\xe8\x8e\xfd\x3d\x82\x72\x48\xce\x7d\x24\ +\x4e\xc3\x04\x2c\x0a\xa0\x21\x83\x4a\xd2\x8c\xad\x8f\x15\x62\x81\ +\x99\x03\x9b\x62\xc0\x96\x59\xa0\x1d\x8c\x18\x05\xdb\xb4\xcb\xc8\ +\x5b\xa3\x46\x48\xc7\xf6\x1a\x39\xa9\xbc\xce\xf6\x0d\x14\xa5\x5f\ +\x33\xca\x75\xa9\x61\xe9\x8e\x96\x90\xc3\x92\xea\xd9\x15\x0c\x1c\ +\xa9\x6a\xb3\xb6\x95\x0f\x29\x5b\x0d\x24\x6e\x58\xdf\xfa\x40\xfe\ +\x6c\x04\xa3\x53\xfd\x98\xc7\x29\x1d\xf2\xc2\x3f\x5a\xc0\x95\x45\ +\xe8\x0c\x51\xf4\xbb\x61\x0e\x91\xba\x27\xfd\x92\xbc\x33\x66\xde\ +\x28\x38\xa6\x55\x98\x9a\xe9\x83\x54\xaf\xc3\x2f\xc3\xf0\xb4\xab\ +\xd0\x47\xaf\x18\x8e\x8b\xd1\x5e\x3f\x46\xa4\xd9\xe5\xdd\x38\xc9\ +\xc3\x94\x26\x86\x60\x41\x26\xec\xa6\xae\x48\xb0\x86\x5e\x6b\xac\ +\x30\x6c\xeb\x19\x95\x4d\xbc\x6b\xf8\xf0\x55\x64\x13\x3c\xc4\xc4\ +\x6a\x86\x13\x4a\x19\xca\x19\x49\x28\x1f\x79\x3f\x5d\x4f\x11\x9f\ +\x71\x70\x47\x18\x01\x52\xa3\x61\x08\xf7\x8b\x82\xab\xc1\x7e\xea\ +\x30\xa6\xa1\xa8\xf9\x4d\x9b\xc6\x8b\x39\x2b\x63\x44\xda\x30\x8e\ +\x06\x64\x05\x88\x35\xf3\x20\x8d\x6d\x71\xb1\x83\x92\xa1\x53\x1a\ +\x02\xec\x03\xba\xb3\x7a\xda\x70\x62\x17\xdc\x02\xa8\x96\xbc\x2d\ +\x11\x5d\x07\x37\x8f\x01\x59\x2b\x12\x9b\x5f\xc1\xc7\x0a\x40\x9f\ +\x16\x62\x29\xcd\x2d\xba\x43\xc1\x92\xa0\xff\x2c\x8e\x35\xa2\x18\ +\x4f\xaa\xc0\xb1\x14\xbb\x73\xd9\xce\x92\x1b\x83\x09\x0b\xd4\xb6\ +\xc6\x61\xd4\x9c\x11\xc3\x70\x3b\x63\x80\x6f\x82\x4d\xa6\x2c\xe7\ +\xfa\xa8\xa3\x7a\x53\xc6\x44\x92\x4c\xb1\x27\xe8\x9f\x78\x7b\xbb\ +\x72\x3b\xb3\x88\xd4\x75\x32\x8b\xc8\x04\x01\x24\x91\x77\x38\x7d\ +\x96\x81\x09\x3b\x60\x82\x14\x63\x40\x46\x8d\x3e\x0f\x04\xb3\x89\ +\xb8\xa1\x62\xe8\xdc\x58\x21\xdf\xd8\x67\x16\x4c\x67\x44\x13\xb2\ +\x85\x5b\x57\xec\xaa\x27\x59\x8f\x03\x2e\xa7\x12\x35\xcf\xc7\x8c\ +\x12\xf5\x0e\xc7\x7e\x56\x2a\x04\x6f\x96\x36\x36\x1e\xb2\x38\xb7\ +\x27\xdd\x11\xab\xe4\x6a\x69\x10\xe0\x14\xb1\x0c\x45\xd1\x93\x5f\ +\xe6\x89\x36\x5b\xd9\x5c\x75\x6a\xb6\xb9\x2b\xff\x4b\xec\x95\xe3\ +\xa5\xb0\x5a\xc9\x0d\x95\xe4\x46\x0a\xdf\x25\x6f\x69\x29\x00\x2d\ +\xb8\x23\xd5\x42\xe1\x86\x6f\xde\x2e\x54\x9b\xbc\x79\x3b\x68\x0f\ +\xe5\x66\xfa\x27\xde\xfc\x84\x77\xf3\xa1\x70\x51\x01\x17\xff\x4f\ +\x47\x6a\x8c\x0e\xa1\xc6\x78\x91\x6d\xb8\xb7\xd0\x7d\xdb\x51\x4d\ +\x46\xb2\xe8\x90\xe1\x8e\x19\x46\x41\x5b\xc9\x74\xa8\x53\x86\xee\ +\x48\x5b\xc5\x89\x28\xf4\x35\x91\x1d\xb0\x80\x2c\x22\xc9\x95\x86\ +\xe3\x8e\x6c\xd6\x31\x5c\xc5\xa0\x62\x17\xf0\x91\xc7\x42\x86\xa3\ +\x25\x87\x40\x22\x9d\x84\xc7\xff\x8b\xf0\x1a\x66\xa3\x34\x79\x93\ +\xe1\xda\x5b\xe4\x16\xb6\xa6\x08\x39\x73\x08\x78\x0d\xa3\x29\x6c\ +\x5f\x17\x51\x4c\xbf\x06\xa0\x53\x32\xb3\xf8\x92\x86\xd1\xde\xa6\ +\xc0\xc6\xa1\x86\x2a\xb5\x73\xb9\xa1\xf7\xce\x78\xfa\x04\xc9\xd3\ +\xb6\x31\x5c\xca\xe9\x36\x50\x52\x6e\x62\x38\x89\x19\xa2\x28\x83\ +\x9d\xec\x19\x6e\x2e\xec\xf4\x2f\x4b\xaa\x40\x7e\x5b\xcc\x83\x67\ +\x86\xf0\x63\x23\xb9\x3c\x8f\x50\x97\xb8\xbb\x4c\x59\x24\x5f\x3e\ +\x7b\x7a\x40\x2c\x0e\x4b\x31\x1b\x76\x18\x1c\x87\xa0\x73\xa1\xa8\ +\xf8\x5d\xe2\x0e\x04\x74\x3a\x1a\x44\x3e\xc0\xa4\x49\xe4\xdd\x1a\ +\xfb\xf8\x4c\x78\xdc\x42\xe5\xa7\x98\x8a\x92\xd3\x76\x59\x2e\xc0\ +\xa7\x90\x10\xbb\xc0\x6d\xdd\xf0\xa3\x51\x1a\x34\x5a\xc2\xfd\xf3\ +\x38\x2d\x4d\x82\x16\x78\x98\xbb\x76\xb1\x75\x44\x4b\xb2\xa4\x0c\ +\x96\x96\xee\xa0\x9f\xcf\x14\x24\xb5\x80\x79\xe1\xa0\x19\x95\xf3\ +\x61\xb6\x66\x20\xad\xb3\x6d\x69\x64\xcf\xe0\xdf\xf8\xc8\xaf\x7c\ +\x8f\x94\xaf\x37\x74\x0f\x5b\x2e\xe2\xc6\xef\x26\x85\xdd\x27\x6a\ +\x4c\xd3\xd1\xfe\xbb\x74\xca\x99\xb8\xf4\x18\xa5\xc2\x1c\x31\x6d\ +\x48\x07\x17\x18\x19\xe4\x10\xa4\x5f\x08\xc3\x74\x1d\x51\xfe\x91\ +\x17\x73\x94\x7e\xea\x00\xf3\x6a\xbc\xd8\xe1\x61\x7c\x2c\xbc\x2c\ +\x83\x87\xe3\x11\x23\x6a\x88\xe5\x8c\xb7\x7f\x51\xbb\x28\x04\x08\ +\xfb\x2b\x8f\x78\xcc\x7b\x41\x1f\x1d\xdd\xd5\xa0\xfb\x6e\x44\x42\ +\xba\x96\x81\x04\xd4\x98\xcb\x79\xd8\xa3\xf6\x1d\xc3\xab\x9e\x07\ +\xfc\xe9\x34\x84\x07\x77\x50\x5c\x9b\xce\x21\x2d\xca\x56\x08\x29\ +\x87\x71\x12\x49\x48\xcc\xd1\x19\x42\xc2\x1d\xc1\xeb\x72\xe3\x55\ +\xc5\xf7\x6b\x74\x83\x35\xcf\x05\xf3\xa3\x64\x25\xe9\xf5\x16\xd5\ +\x31\x20\x9c\xca\x31\xcb\x3e\x40\x2d\xd4\x62\x4e\x07\xbb\x35\x0b\ +\x2e\xd0\xb0\x61\xe5\x0d\xd7\x9e\x60\x6c\xc8\x7d\x46\xdf\x4a\x76\ +\xd2\x7b\x71\x25\x6d\xa0\x06\xa6\x80\x56\x9a\xe2\xca\xc3\x93\x0c\ +\x99\x51\x14\x44\x16\x03\xbf\x79\xe4\x23\xb9\xa7\xa3\x3c\xd8\xa0\ +\x8b\x65\x71\xeb\xe3\x50\xc2\xc1\x4b\x84\xa2\x18\x18\xd1\x8b\x86\ +\xb6\xb2\x57\x1b\x35\x8d\x31\x70\x8b\xb2\x91\x01\x60\x01\x33\xbd\ +\x79\x65\xef\x6e\xb8\x15\x61\x9e\x0b\xde\x88\x80\x54\x85\xcf\x8f\ +\xf4\x66\xdf\x1c\x93\x0c\xb7\x31\x22\xd8\xc1\x70\xec\x7a\xbb\x9c\ +\x54\x13\x2e\x50\xe3\xb3\x85\x02\x15\xa0\xa1\xf0\x83\x62\x21\x0e\ +\x1a\xe3\x2e\xb7\xc6\x07\x31\xae\xa3\x06\x32\xaa\xe9\xb7\x51\x37\ +\xf7\x83\x44\x62\x96\x1e\x23\xe4\xe5\x44\xf8\xa2\xba\xef\xba\x85\ +\xbc\x68\x29\xe1\x31\xb6\xab\x05\x2e\xe5\x4a\x6c\x71\xd2\x23\x1c\ +\xb4\x86\x41\xa1\x72\x11\x54\x4a\x03\xe4\xda\x76\x8b\x05\x22\xe6\ +\x72\x18\xf0\x8e\x1e\x7e\x03\x5d\x1b\xbd\x01\xa1\xca\x01\x54\x39\ +\xe4\x6b\x5b\xd1\xa1\x09\xe6\xf7\x21\x54\xc8\x0c\x1b\x74\xdd\x38\ +\xc6\x23\xa2\x28\x4d\xfa\xda\xcb\x19\x44\x4c\xec\xaa\x70\x21\xe4\ +\xc8\x61\x05\xc0\x9b\xa7\x13\x93\xad\xa5\x33\xb0\x16\xdb\xb7\x92\ +\x34\xd7\x3d\x54\x4b\x94\x7c\x3a\x60\xa6\xc4\xa0\x6b\x16\x4a\x86\ +\x87\xbe\xd9\x81\x29\xf1\x5b\x6f\xba\x6c\x19\xa8\x53\xa6\x0d\xa9\ +\xa4\x3c\xd2\x6d\x26\x06\x89\x12\x69\x1d\x01\xa4\x49\x58\x25\xc2\ +\xd2\x56\x3e\xaf\x17\x32\x0c\x63\x93\x83\x7f\x3b\x78\x87\x25\x1a\ +\x70\x8d\x01\x9c\x05\x2c\x87\xe0\x47\x8a\xcc\x77\xe2\x45\x8e\xa1\ +\x66\x36\x00\x6d\x32\x54\x6a\xa0\xfc\xca\x21\x07\x88\x50\xa9\x94\ +\x3b\x7d\x03\x63\x7a\xd1\xd1\x32\xa6\x03\x82\x77\x42\xcb\xd3\x95\ +\x46\xc8\x1c\xcf\xf7\xa3\x61\xd2\xac\x4d\x95\x0d\x4d\x52\x65\x73\ +\xba\x4b\xbd\x72\x94\x49\x87\xab\xa8\xe8\x65\x03\x7a\x98\x38\x2e\ +\x82\x6e\x12\x60\x44\x66\xa9\x38\xfd\xa8\x80\x4e\x39\x69\x13\xc8\ +\x0e\x9b\x87\x22\xc7\xa5\xcd\x3b\x68\x9b\x79\x63\x5c\x31\xe7\xd8\ +\x05\x7c\xe4\x3f\x31\x87\x26\x79\xae\xa4\x68\xe5\x82\xa7\xd0\x92\ +\x59\xc0\xf2\xf9\x71\xce\xd5\x19\xcf\xa1\xc2\x28\x61\x42\x8b\x6c\ +\x0b\xd9\x0a\x72\x7d\x30\xc2\x0e\x13\xd0\x04\x22\xbe\xc4\x9f\xa2\ +\x64\x50\x14\x3c\xcd\x90\xf3\xd9\x6e\x74\x24\x16\xc7\x57\x03\xe6\ +\x1f\xa0\x38\x71\x68\x24\x12\x48\xde\x28\x44\xe7\x60\x3b\xf8\xf7\ +\x76\x89\x06\x38\x69\x80\x09\x76\x08\x03\x96\x5c\xae\x53\xa1\xee\ +\x08\x13\xce\xb3\xdf\x1c\xb4\xdd\x78\xbe\x91\x07\x93\x35\x96\xec\ +\x2c\x58\x76\x5e\xcf\x31\x03\xcf\x2c\x8c\x1a\xb6\x2f\xad\xa2\xec\ +\xd3\x6a\x1e\xf8\x54\x9d\x53\xba\x6e\x91\x5a\xcb\x47\xe1\xc5\x5b\ +\xdd\x61\xa7\x15\x32\x96\x96\xd3\x1d\x57\x0d\x66\xf3\x78\x3f\xfd\ +\xce\x0b\x06\xb9\xbe\x79\x12\xcc\x81\x94\xfc\x8f\x4a\xcf\xac\xa1\ +\xb0\x88\xf4\x0c\x85\x16\x13\x33\x12\x67\xd9\xd8\xc4\x4d\xd4\x5a\ +\xbe\x46\x4e\x06\x38\x0a\x5e\x24\xf4\x50\x63\xbe\x32\xfe\xcd\x04\ +\xaf\x47\x3d\x44\x4d\xd2\x38\x44\x8d\x51\x4a\xd1\xab\x86\x15\xd2\ +\xfc\x3e\x7a\x8f\x81\x86\x86\x1a\x5d\xa7\xb0\x32\xff\x26\x1c\x57\ +\x7f\xef\xc9\x16\x12\x52\x6c\x50\xdd\x2a\x18\x48\x9e\x40\x75\x48\ +\x46\x18\x02\x85\x9b\xa8\x00\x43\x02\xcc\x9a\xb9\x1c\xfc\x8d\xe4\ +\x8a\x77\x96\x0a\xa6\x6b\xc8\x78\x3b\x8f\x19\x9c\x56\x94\xd1\x76\ +\x1a\x6c\xb0\x51\x9b\x04\xe3\x83\x75\xfc\xb6\x98\x07\x3f\x18\x99\ +\x0c\x17\x12\xfa\xbf\x33\x2d\x7c\x62\x6c\x5a\x98\x22\xaa\xac\x68\ +\xeb\xe9\xf0\x00\x37\xd9\xba\xc5\xea\xa4\xc9\x46\xbf\x8d\xba\xf9\ +\x24\x4c\x45\xf8\x89\x48\x55\x69\x56\x00\x59\xf4\x67\x63\x64\x8e\ +\x7e\x7e\x8f\xd8\x6a\xa1\xac\xe8\x24\xa8\xa7\x36\xca\xe4\xfd\x0c\ +\x39\xff\xa0\xa5\x66\xb1\x17\x4a\xa8\x7d\xd8\x8b\x9e\xac\x15\xc7\ +\x06\x4c\x24\x19\xba\x85\x2b\x3f\xae\xee\x24\xd5\x74\xe7\x5c\xaa\ +\xc9\xe8\xc3\x47\x6d\x2e\x99\x5d\x5d\xbd\xa6\x9e\xb3\x86\xe1\x33\ +\x37\x3c\x60\xb8\x34\x31\xe9\xe0\xa0\xdc\x1c\xdf\x46\x2c\x1e\x37\ +\xd0\xf0\x7f\xa9\x4f\x45\x7c\x53\x50\xd3\x08\x72\xcc\x08\x2f\x6a\ +\x71\x90\x36\x76\x93\xcd\xde\xd4\x47\xc3\xd4\x86\x5d\x80\xad\xd7\ +\x06\x76\x6f\xd6\x76\xea\x2e\xfd\xd3\xd1\x72\x56\xda\xf3\xb5\x12\ +\x80\x34\x82\x1e\x64\x1e\x2d\x2a\x43\x21\x46\x83\xc8\x42\xa4\x28\ +\x31\xd3\x1e\x69\x96\xbb\x28\x2e\x58\x50\x24\xe3\x1b\x6f\xb1\x4c\ +\x21\x75\xe7\xc6\xf4\x09\x07\x09\x92\xe2\x5f\x30\x7d\x3b\x58\x06\ +\xfa\x10\xe8\x1f\xfc\x02\x90\xaa\x1d\x30\x26\x16\x27\x5c\x06\xa3\ +\x58\xca\x9f\xb2\x2e\xa6\xa6\xdb\x86\x47\x12\x0e\x30\x0b\x36\x87\ +\x22\xfc\x00\x40\x9c\x43\x84\x8f\x00\xf4\x6b\xa4\xcf\xb9\x51\x4f\ +\x1f\x70\x40\x84\x8f\x68\x6b\xde\xd1\x90\x6b\xa3\x86\x5c\xfb\x8e\ +\x86\x5c\x17\x35\xe4\xba\x84\x43\x5e\x0b\x16\x2e\xdd\x3c\xa1\xe1\ +\xa8\xc7\xe9\x78\x7a\x91\x69\x3e\x13\x7f\xb7\x15\x3d\xc8\x28\xf2\ +\x20\x12\x8d\xce\x09\x42\xd5\x07\xab\x40\xeb\x8a\x5a\xb2\xfd\xc8\ +\x93\x1a\xcf\xc0\x5a\x28\x24\x50\x4b\x12\x51\xca\x91\x07\xe2\x7a\ +\x09\xfe\xef\x54\xa4\xda\x88\x91\x3e\xc0\x82\x20\x66\x56\x9b\xb0\ +\x4a\xda\x98\x4e\x0b\xec\x68\xa8\x1d\x04\x1e\x90\xcb\xaa\x5e\x26\ +\xea\xb1\x8a\x6c\xc8\xd0\xcc\x7c\xd1\xb2\xa9\x16\x71\x2d\xab\x33\ +\xe1\xe2\x9f\x09\x2c\xde\xf0\xdc\x6d\x1a\x04\x13\x26\x3d\x43\xc4\ +\x28\xb2\xee\xcb\x1e\x12\x54\x74\x30\x9e\x18\xe2\x09\x59\xf6\x57\ +\x01\x9f\x5e\x86\x66\x5b\x1e\xd1\x94\xf1\x78\x27\xcd\xaf\xfd\xda\ +\xf3\x6a\x64\x50\x82\xa9\x97\x25\x88\x3e\x61\xb8\xc6\xa1\xd0\x0a\ +\xa2\xd0\x43\xe0\xc0\x24\x08\x2c\x58\x85\x65\x05\xf0\x00\x32\xda\ +\x10\x48\x8b\x03\x80\xcb\x21\x63\xd8\x2c\x14\x58\x15\x05\x2d\x5f\ +\xd3\x96\x44\x61\x35\x21\x52\xa7\xfb\xab\x89\x7c\x6c\x54\xcf\x0a\ +\x6b\x12\xf3\x50\x78\xac\xb5\xa1\xb1\x92\x32\x4f\x78\xac\x75\xa1\ +\xb1\x92\x72\x4d\x1f\x2a\x3d\xe6\x3b\x0b\x71\xc9\xac\x46\xa9\x77\ +\x12\x94\x26\x7a\xf3\x1f\xd1\x83\xd5\x82\x79\xbd\x58\x44\x5c\xa3\ +\x49\x88\xb5\x84\x09\x01\x5a\x8f\x02\x90\x31\xab\xaa\x46\x24\x78\ +\x7e\x03\x57\x78\xdd\xb6\xcf\x28\x9b\x2e\xc1\xa0\xc4\x00\x16\x96\ +\x91\x18\xb9\xbb\x3c\x23\x25\xa8\x25\x9b\x7b\x84\xb1\x51\x86\xae\ +\x9c\xc9\xcd\x8a\xe8\x78\x4e\x93\x1a\xdb\x48\x38\x62\x9b\xb7\x67\ +\x53\xc7\x8b\xa6\xfb\xe2\x2d\x58\xca\x99\x70\x96\xe3\x48\x3f\x67\ +\x6e\x91\xc9\x54\xeb\x64\x13\x44\xaa\x7c\x33\x63\x00\x58\xa3\xcc\ +\x9a\x70\xfa\xd5\xbe\x1a\x80\xa0\xd6\x16\xc4\x99\x07\x59\xc1\xcc\ +\xc9\xb4\x2f\x88\x79\x04\x33\x26\x69\x1c\x5a\xa7\xa1\x5b\x33\xad\ +\xc6\x2c\x13\x4c\xbf\x84\xec\x40\xc1\xf9\x07\xae\x07\x32\x3c\x7a\ +\x21\x3c\x57\x46\x7e\xbd\x64\x0f\xe9\x93\xb8\xee\xdd\xd3\x47\x83\ +\x33\x79\x1d\x1c\xa2\x22\x5d\x76\xd2\xd9\x66\x7a\x3b\x5a\x44\xfe\ +\xb3\x7d\x98\x6c\xee\x35\xb2\x3a\x98\xc4\x65\x6d\xdf\xc9\xdc\xd2\ +\x13\x0c\xab\x0c\xec\x63\x6e\x57\xc4\x34\xb9\x6b\xe5\x2f\x22\xfb\ +\x83\x8f\xab\x8e\x11\x80\x8c\x18\xe6\xf0\x88\x8b\x81\x28\x17\xbc\ +\x6e\x07\x4d\x5b\xaf\x92\x2b\xe9\xaa\x57\x62\xf6\x69\xea\xa2\xe7\ +\x28\x9c\x1c\x26\x40\x29\x57\xbe\x74\x60\x99\x44\x06\x9d\x4b\xcb\ +\xb7\xb1\xb9\x49\xa6\x9b\x25\xa6\x73\x8d\x7c\x31\x47\x29\x0b\x0b\ +\x83\x12\x2f\xb4\x8f\xbb\x4f\x92\x99\x58\x61\xf4\x41\x6e\x38\x1b\ +\x1e\x55\xc7\x2e\x94\x22\x1a\x30\x5e\x48\x3a\x69\x47\x80\x00\x44\ +\x2a\x42\x6c\x77\xf4\x74\x33\x7c\xd3\xb1\x7d\x4e\x38\xe1\x8a\xa9\ +\x33\x1f\x31\x93\xbe\x4b\x4c\xea\x4b\xbd\x24\x9c\x76\x0b\x78\xa2\ +\xa6\x4f\x2a\xb1\xfa\x0b\x9d\xc7\x3f\x9c\x28\x92\xe6\xa4\x9e\xe3\ +\xfa\x8e\x6e\x81\x24\xf3\xa3\xbd\x3a\x40\x47\x5b\xa4\x6d\x33\xc0\ +\x77\xb6\xc1\x58\xb3\xad\x31\xcd\x11\x35\xe9\x09\x00\xdb\x00\x02\ +\xf4\x35\xf4\x26\x73\x1e\x68\xcc\x3b\x49\xa3\x21\x2a\xc2\xac\x31\ +\x20\x7a\xe0\xcc\x51\xc0\x29\xda\x46\xda\xa4\xbf\x6a\x39\x63\xd4\ +\x48\xea\x13\xb4\x60\x69\x82\xd0\x99\xd2\x88\xa9\xe9\xb5\xdc\xc4\ +\x16\x8c\x7f\x90\xb5\xfe\x41\x92\x9a\x2e\xfe\x41\xd6\xf9\x07\x49\ +\x6a\xb3\xac\xe6\x2c\x2c\x77\xdc\xe4\xcc\x65\x7b\xb6\xbb\x60\xb3\ +\x5e\x24\xc0\xac\x52\xd2\x33\x13\x07\xa2\xa1\x19\xc3\xa6\x76\xb7\ +\x17\xc0\x4d\x30\xf3\x4e\x5e\xd5\x29\x0c\xd7\x28\xd5\xb4\x0a\xb3\ +\x6f\x69\x1e\x9c\xd1\x78\x9c\x73\x84\x6f\x33\xab\x11\x99\x10\x70\ +\x7a\x50\x2d\xdc\x34\x4e\xed\x53\x0d\x9c\x01\xe1\x47\x82\x6f\x40\ +\x6b\x52\x18\x8c\x06\xad\xa5\x4b\x08\xe5\xf1\x18\x1c\x32\x90\x98\ +\x58\x3c\x2b\x5a\x85\xc6\x6b\x9c\xc3\xfb\x4c\x25\xb5\x3b\x34\xa1\ +\x65\x18\x83\x26\x66\x49\x66\xf2\x64\x61\x63\x86\xb9\x00\x92\xaa\ +\x74\x18\x01\x12\x09\xe7\x0c\x47\xd2\x9b\xf0\x9b\x30\x67\xc3\x9b\ +\x36\x6b\xb3\x51\x30\x6c\x3d\xa7\xb1\xcd\x13\x53\x26\x84\xa7\x3d\ +\x29\x3c\xde\x7c\xd3\xc4\x7c\x4e\xb9\x33\x05\x49\xd3\x2b\x08\xc1\ +\x99\x72\xb8\x0d\xaa\x73\x3f\x6d\x73\xce\x1a\x82\x89\x68\x05\x41\ +\x39\xa4\xd8\xce\x95\xa7\x8e\xbe\x57\x38\xe8\x3b\x8c\x6b\xca\x28\ +\x24\xd6\xb4\xd9\x36\x33\x9a\x53\xd4\xd3\xbc\x1c\x37\x91\xe6\xea\ +\xf6\xcc\x3e\x46\xee\x69\x9c\x4d\xba\xbd\x2c\x18\xab\x78\x8c\xde\ +\x7c\xb3\x31\xbd\xaf\xe5\xf4\x09\xc3\xe6\xa1\x50\xe6\xa6\x25\x9b\ +\xbb\x62\x16\xcc\xcd\xfc\x00\xd5\x67\x2d\x12\x51\x50\x2d\xdc\x92\ +\x34\x06\x1a\xe5\x51\x23\xe6\x77\x66\x78\x02\xca\x05\xfc\xdb\x18\ +\x42\x96\xd9\x39\x19\xf0\x16\x3e\x33\xf3\x35\xbc\xe0\x54\xe4\xbd\ +\x94\xe1\x87\xf1\x9e\xf5\x88\x0d\xd7\x0b\x7a\x6d\x50\x3c\x68\x01\ +\x9f\x28\x7f\x67\xb1\x27\xff\xc1\x35\xe1\xef\x3e\x87\xff\x87\x03\ +\x64\x7e\x5b\x2d\x4e\x90\x5d\xb7\xc5\xb0\x0d\x74\x88\xd3\x7a\x01\ +\xf6\x15\x34\x43\x76\x02\x2b\xea\x69\x61\x97\x45\xcb\x15\xc0\x5a\ +\x00\x67\x85\x6a\x54\x1a\x5a\xa3\x5e\x90\xa3\x5e\x5c\x5f\x64\xc1\ +\xb6\x0d\x94\xbf\xe1\x12\x9a\xac\xe0\x59\x83\xfd\x4a\x87\x04\xaf\ +\x59\xcf\x64\x98\x1b\x87\xe1\x6d\x17\xcc\x3c\xdd\xce\x70\x26\x84\ +\xdb\xd2\x23\x1a\x1f\x22\x29\x83\x5c\x85\x61\xba\xb8\x00\x85\x38\ +\x21\x26\x4e\x73\xe4\x09\x3b\xaa\xc5\xc8\xad\x83\xc8\xe4\xbf\x47\ +\xde\x88\x5e\x46\x9c\x06\x4a\x7e\x1b\xb3\x1a\x19\x8e\x4e\x61\x74\ +\x05\xb3\x1b\x52\xd6\x2d\xdd\x9a\xd5\xd2\x34\xc6\x60\x64\x3a\x00\ +\x7b\xc3\x94\x49\xc6\xa8\xf8\xa3\x2e\xac\x6e\x6b\x63\x23\x46\x01\ +\xb3\x19\xc9\xb9\xe6\x55\xbe\x48\x56\xf4\x30\xd5\xc2\x2c\x5c\x58\ +\x96\x8b\x6c\x76\x4d\x23\xe2\xe4\x88\xce\x17\xb4\xdf\x4b\x98\x44\ +\x09\x73\x4a\xad\x26\x8a\x7b\x13\x97\xc9\x96\x2d\xf9\x53\x4d\x86\ +\xb0\xf0\x7d\x09\xef\x94\xf3\xcb\x70\x99\xe4\x30\x46\xc7\x16\x3e\ +\xab\x56\xe3\xd0\xa4\x08\x3b\x3f\xa7\x1e\xe5\x34\x54\x44\x66\x6d\ +\xc3\x48\xeb\x1c\x93\xb4\x74\x06\x68\x68\x3f\x46\xf3\xd3\xf0\x7f\ +\xda\xcc\x28\xc7\x95\x98\x6c\xc0\x74\x48\xa7\xb6\xd1\x18\xd3\x6d\ +\xa3\x83\x05\x7c\x28\x15\xba\xfa\x01\x83\x56\xe5\x8c\x00\xf5\xf2\ +\x03\xa2\x09\xb6\xe0\x09\x85\xce\x9c\x43\xa0\xb3\xa9\xeb\xa9\x04\ +\xc3\x0b\x41\xf1\x32\xaf\x85\x97\xb1\x43\xc6\xfe\x62\x46\xd5\x6e\ +\xc8\x28\xdb\x96\xf7\x90\xae\xd8\x05\xdc\x92\x90\xa1\x87\x53\xb7\ +\x66\x79\x0c\xcc\x51\xa8\x55\x51\xd2\x0a\x5b\x63\x34\x91\x61\x1e\ +\x58\xd8\x18\xe7\x81\x2f\xb0\x27\x56\x65\x3c\x93\x22\xa9\x14\xee\ +\x78\x87\x88\x8c\xae\x92\x90\x3a\xd1\xf1\x58\x36\xcf\xd9\xd5\xe4\ +\xf7\xaa\xb9\x97\x70\xe5\x84\x83\x34\xc8\xa0\x12\xd2\xbb\x83\xeb\ +\x27\xc7\x27\xed\x6d\x0c\xef\x32\x0d\xa0\xa2\xdd\x3f\x9a\x9a\x3b\ +\x30\x31\xdd\x97\xe6\xd1\x07\xb1\xd2\xbc\x6f\x25\x6d\x44\x1c\x7f\ +\x90\xab\x69\xf3\xb6\xcb\x8a\xda\x2e\x4f\xc5\x7b\x7b\x73\xc0\x28\ +\xba\x9a\x9e\xb6\x2d\xc7\x11\xc5\x1c\x1d\x9a\x05\xb2\xd6\x1e\x33\ +\x1d\xc3\xab\xef\xe0\xf2\x88\xa7\x1b\x5c\xdd\xa6\xe6\xab\x56\xb0\ +\x96\x95\x69\x34\x54\x54\xbf\xe3\xcd\xf4\xf3\x40\x50\xf2\xbe\xa0\ +\x04\x80\x2d\xcf\xdd\x11\x76\xa8\x19\x49\xf7\x52\xd5\x31\xc1\x14\ +\xbf\x7d\x1d\x08\x63\x2e\x86\xbb\x58\xad\x46\x78\x86\x50\x25\x8a\ +\xb7\x49\xd9\xa8\x4d\x92\xf5\x8c\x52\x05\x00\xe7\xf0\x1c\x2d\xfc\ +\xc6\x4d\xe1\x4e\x6d\x87\xd8\x27\x2a\xac\x8c\x89\xe0\x13\x5e\x7d\ +\x4a\xc2\xbd\xe9\x7b\x87\x7b\x23\x4d\x24\x3f\x31\x8f\x12\x79\x22\ +\x2c\x58\x3c\x1f\x77\xca\x2c\x74\x7c\x91\x9b\xea\x53\xe8\x54\xdc\ +\x41\xb6\x0a\x96\x34\x10\x02\x40\xce\x27\xd9\x5d\xcd\x14\x3a\xc4\ +\xf2\x4c\x58\x91\xab\x91\x09\x85\x22\x0f\x90\x38\x4a\xbd\xab\x08\ +\x5d\x89\x24\x9d\xc8\x47\x4b\x75\x74\x49\xd4\xee\x62\xfa\x40\x65\ +\x26\x9e\xbb\xf3\x0e\x5f\x7a\xdb\x4f\xd5\x8d\x50\xfb\x9d\x1a\x8c\ +\x55\xb0\x5c\xe5\xf9\x21\x96\xde\xc3\xe8\xb2\x55\xc8\x4d\x30\x33\ +\x01\xdc\x73\x07\x4f\x37\xd1\x64\x75\x52\x55\xb5\x91\x6c\xf5\x65\ +\x43\xe8\x06\xf9\x33\x30\xaa\xaa\x11\xd9\x96\x3c\x91\x99\x96\x25\ +\xde\xa2\x5b\xb6\x62\x9a\x43\x5b\x52\x8e\xa5\x4d\x16\x46\x40\xa0\ +\xa6\xc4\x76\x00\x7a\xbb\xa5\xc7\xc2\xe7\xd8\xd1\xd3\xcd\x52\x58\ +\x09\x67\xd1\x22\x66\xa1\x9b\x37\x81\xf6\x84\xab\x78\x0e\x62\x15\ +\xe0\x3a\x58\xa5\xc4\x21\x5b\xe6\x11\xc9\x06\x03\x22\x34\xa0\xce\ +\x19\x08\xbe\xf3\x79\xca\x89\xea\x1c\x17\xb1\x8a\x72\x62\xa8\x47\ +\xf2\x39\xdf\x41\xdc\xb4\x2d\x04\xc2\xf2\x80\x7d\x21\xab\x2a\x9a\ +\xd9\x74\xcb\x59\x78\x21\xb1\xd7\x97\x24\x72\x25\x83\x2e\xea\x61\ +\x97\xd9\x5b\x0b\x98\xce\xcf\x1d\x62\xac\x6a\xa1\x52\x1a\x24\x0e\ +\x1d\x52\x0f\x9d\x51\x3e\x8b\xf5\xcb\x74\x53\x33\x2d\xbe\xf1\xea\ +\xb3\x13\xc7\xf6\x29\xa1\x88\xe4\x27\x73\x97\xdb\x03\x4e\xd7\x56\ +\x90\x63\x3b\x94\x64\xff\x8c\x6d\x06\xb8\x3c\xed\x5b\x07\x76\x78\ +\x6e\x50\xd2\x94\x7e\x87\x3c\xf2\x47\x44\xcd\xa7\xb0\xd5\x65\xe1\ +\x3d\x17\xe5\x92\xcb\xb6\xd3\x34\x13\x96\x34\x6a\x80\xbe\xa4\x8b\ +\xab\x98\x0e\x5e\xb3\x43\xd4\x00\x7a\xfc\x9c\xaa\x0a\xa5\xbb\x2b\ +\x04\xad\xf0\x3c\x64\x6c\x52\x64\xe0\x68\xc9\xa6\xc9\x03\xca\x79\ +\x25\x86\x23\xdc\x39\xa1\x90\xa8\x22\x10\xc1\x7d\xe1\x9f\xcb\x94\ +\xbb\xf0\xea\x85\x98\x57\x4d\x6a\xb6\x09\xd2\x44\x16\x0a\x66\x3f\ +\xd1\x03\x36\xa1\x9e\x70\x9d\x52\x25\x9c\x4a\x71\xca\x50\x2a\x84\ +\x38\x2b\x63\x03\x3d\x01\xfa\xc1\xee\xd4\x06\xb8\x17\x3d\x42\x5d\ +\xeb\x11\x6b\x4c\x03\xfb\x6b\x42\x73\xce\x29\xe9\xb4\x56\x4b\x54\ +\xf3\xe4\xc5\x30\x49\x45\xfc\x4a\xd4\x8a\xc1\xda\x3c\x03\xb5\xa5\ +\xda\x36\x20\x0f\x62\x97\x17\x03\xcb\xac\xd2\x76\x7d\x5c\x63\x25\ +\x3c\xda\x80\x2c\x11\x4c\x30\x6b\x13\xb0\x31\xd3\xcc\x25\x25\xa1\ +\x5e\xdd\x6f\x25\x8e\xad\xb7\xab\x23\x20\x97\xc8\x4d\xa7\x5a\xbc\ +\xc8\x2d\x2e\xc9\x27\x2d\x74\x74\xad\x3d\xab\x3b\xae\xe1\xb8\x09\ +\x59\xa4\x62\x21\xe6\x1a\x45\x4d\xa8\xb4\x04\x3a\x38\x9e\x8a\xe8\ +\xde\x4a\x52\x54\xce\xf6\x84\xac\x97\x0e\x8f\x34\xa4\x61\xce\x88\ +\x5d\x16\x41\x04\xeb\x0a\x75\xee\x16\xbf\xb3\xd8\x84\xc1\xcf\x62\ +\x18\x58\x9f\x99\xf1\x5c\xea\x0e\x12\xed\x43\x2e\xf3\xce\x43\xa9\ +\x76\x51\x5c\xdd\xa3\x24\xe3\x8b\xfa\xb1\x36\x35\x37\x01\x1e\x60\ +\x16\x84\x2d\x3a\x16\x8a\xf1\x82\xf6\x28\xbd\x48\x9b\xfa\x0c\x1b\ +\xae\x57\x97\x88\x76\x0c\xda\x44\x2c\x3d\xe9\x33\x8d\xe8\x33\x78\ +\xf6\xc9\x67\x01\x0f\x29\x55\x8d\x66\x01\x36\x55\xcf\x24\x25\xfa\ +\x64\x29\x54\xbf\x6d\x31\x9d\x1a\x15\x87\x94\x42\xed\xf5\x52\xa8\ +\x6a\x6c\x70\xf2\xc4\xa2\x85\xd2\x62\x98\xb0\x23\xee\x6a\xfc\x77\ +\xee\x0e\xdb\x1c\x36\x0b\x18\x97\xa5\x85\x04\x54\x4f\x97\x9b\x69\ +\x6c\xc1\xe6\x13\x36\x4a\x4c\xb5\xe4\xb7\x66\x57\x19\x49\xb5\x64\ +\x48\xf4\x57\xd4\x4d\xc7\x60\xdf\xa1\x20\x71\x3f\x8c\x44\x39\x50\ +\x94\xc1\xa9\xad\xa6\x92\xa3\x55\xad\xf8\x56\x05\xb6\xc3\x9f\xf4\ +\x1b\x44\x2b\x06\xf4\x51\xc3\x2b\xc2\x8e\x40\xb7\x70\x90\x1d\x6a\ +\x5b\x27\x5f\x4b\x7f\xcc\x91\xb2\xa0\xaf\xe3\x3f\x99\xc8\x7c\xda\ +\x37\x89\xe3\xad\x3e\x78\x9e\x73\x3e\x3f\x28\xe6\xe3\x15\x1f\x1f\ +\x26\xa6\x8f\x81\xc8\x0a\xbd\xba\x81\xb2\xaa\xf3\xfc\xc3\xac\x0d\ +\x0e\x93\x3c\x33\xa7\x0e\xb3\x2e\x38\x4c\xd2\xdc\xdc\xac\x40\x6d\ +\x4a\xf0\xf0\x55\x6a\x80\x7a\x5c\xe5\x14\x32\x4c\x03\xc0\x84\xf7\ +\xe8\x2f\xc7\xa9\x1f\xe0\x05\x96\x65\xd8\xcd\xc2\x64\x1d\x45\xfa\ +\xb4\xa6\x80\xd3\xa6\x7d\x95\x12\xc3\x39\x88\xe8\x3b\x80\xa7\xdd\ +\x0c\x32\x26\xe1\x1c\xd4\x9d\x03\xe2\x80\x5b\x22\x87\xb0\x3b\xe0\ +\xdd\xb2\xb0\x93\x4c\x73\x64\x78\x50\x56\x40\xaf\xd6\x55\xfb\x5d\ +\x9c\xa3\x06\xbd\x33\x57\x3c\x3a\x08\xf8\x32\xb3\x26\x50\xeb\x01\ +\x23\xa9\xc1\xbc\xa2\x0c\x80\xb0\x18\x58\x39\x6c\x45\xeb\x1c\x59\ +\x6d\x71\xb9\xb3\x7e\x0c\x44\x5f\x30\x43\x53\x56\x35\x18\xf1\xd7\ +\xb9\x30\xab\xb2\x04\xca\xd9\xe4\xc2\xcd\x09\xdc\x9d\x01\xe3\x2b\ +\xeb\x29\xf2\xb0\xb0\x93\xe2\x22\x5c\xf8\xd6\x3d\x88\x3a\x37\x58\ +\x75\xc6\x6a\x64\x80\x8e\x9c\x9c\x8e\x01\x86\xcc\x78\x96\xdd\xc6\ +\xc3\xde\x9e\x98\x4b\x2a\xd7\xc6\x11\x2d\x79\xa2\x16\xb1\xc4\x15\ +\xf7\x94\x30\x92\x24\xfb\x30\x46\xf5\x83\xa0\xe5\x1a\xa3\x24\x41\ +\xf7\x1c\x6f\xa9\xef\xa1\x4b\xcd\x04\x0b\x62\x60\x2d\x25\x90\x88\ +\x18\x07\x61\xe7\x64\x61\xb5\xba\x06\xab\x13\x61\x94\xb2\x6a\x66\ +\xae\xc2\x65\x16\xc8\x5f\x70\x87\x6d\xdf\xfe\xea\xb8\x2c\xb1\x1b\ +\x69\x34\x98\x85\x59\x2a\x02\x5a\x45\x62\x04\xf2\xbc\xaa\xbf\x2a\ +\x4a\x7d\x8b\x9e\x72\x1b\x47\x03\x70\x15\xfc\xbc\x07\x7e\x56\x80\ +\xd1\xb6\x02\xfe\x1d\xab\x98\xb6\xdb\xe9\xb2\x0b\xa5\xfc\x10\x6d\ +\x90\x94\x05\x04\xa4\x4d\xb0\xc2\xe8\x36\xb2\x62\x02\x66\x2d\x58\ +\x76\xc6\x2c\xe0\x39\x06\xab\x68\xd8\x3a\x4b\xa9\xb5\x67\xf1\x78\ +\x52\xa7\xb6\x4a\x7b\x8f\xb6\xa2\x73\xc5\x8a\x63\x93\x3a\x8f\x57\ +\x20\x1a\x58\x7a\xda\x22\x5a\x60\x57\x0b\x24\x7c\x3a\x23\x58\xb0\ +\xce\xa2\xaa\xac\xc7\x92\x70\xc1\x56\xf8\xa8\x24\xc3\x63\x7d\xcf\ +\x73\xc7\x49\xe7\xc8\xca\xf2\x40\xb8\xab\x90\x79\x3f\x45\x82\xad\ +\x67\xcc\x92\x83\xa4\xed\x05\xc1\xe8\xc9\x0c\xea\x3c\x51\xc7\x9f\ +\xf7\x64\x81\xd5\xd0\xcb\x2b\xd8\x81\x45\x8b\x9e\x98\x03\xd7\x39\ +\x0d\xee\x81\x59\xc0\x74\xa3\x91\x14\x0b\xc7\x97\x2d\x11\x83\xf2\ +\xfc\x5d\x14\x6e\x51\x90\x5f\xae\x24\xea\xc7\x4d\x60\xf2\x20\x9c\ +\x6f\xf7\xe7\x29\x44\xf9\xac\xbf\x5b\x51\x74\x46\xbe\x0d\x81\x62\ +\x09\x79\xcf\xb9\x34\xf4\xf4\x08\xcb\x42\x8a\xd3\x1c\x53\x43\x58\ +\x29\x62\x5f\x14\x86\x97\x48\x74\xd6\x25\xbe\x48\xa6\x84\x12\x4e\ +\x66\x49\x18\x0f\xc9\x9a\xf0\xd8\xfa\x0c\x1c\x95\xb9\x2d\xfe\x4a\ +\x2f\x4a\x5a\x5d\x70\x55\x56\x43\x0c\xc2\xff\x94\x08\x87\x38\xe9\ +\x8a\xb0\x74\x9a\xc8\xf6\x5f\x2c\x96\x66\x79\x71\x07\x29\xa1\xe3\ +\x6a\x37\x32\x21\x78\xfc\x0d\xc1\xd8\x6c\x2a\x61\x64\x11\x03\xb6\ +\xb2\x87\x6a\x1d\x83\x83\xce\xa6\xce\x77\x4a\xb8\x75\x05\x5f\xa4\ +\x22\x88\xdd\x80\xda\x57\x70\x52\xe2\xd1\x48\xd9\x8e\x8b\x39\xa0\ +\x22\xb4\xce\x60\x0c\x3f\xcf\xc6\xed\xe3\xc9\x13\xf0\x8f\xb0\xa4\ +\x48\xd5\x65\x16\xa7\x29\xc1\xaa\xae\x27\xed\xd4\x14\x8c\x16\xde\ +\x5d\x8f\xf6\xbe\x3b\xc8\x63\xe3\xd4\xef\x3b\x6d\x2b\xcb\x4b\x81\ +\x28\x1b\x1b\x31\xd3\xac\x91\x03\xcb\xf2\xc3\xf5\x52\x8e\x67\xac\ +\x68\x79\x5e\x97\x36\x68\x59\xb9\x21\xdd\x56\x32\x59\xa0\x00\xd2\ +\x06\x66\x23\xd9\x33\xa2\x68\x86\x8e\x47\x9b\xf4\xd1\x2a\x5c\xd4\ +\x10\xf8\x60\x07\x0f\xae\xbb\x60\x15\xf9\xc7\xa1\xfa\x83\xce\xdc\ +\x67\x1b\x46\x4f\x77\xaf\x26\xec\x26\xcd\x99\x00\xcf\x33\x8f\x72\ +\x84\xce\x42\x7b\xa2\xc1\xbd\x36\x93\xbb\x7a\x39\xb5\xd3\x97\x71\ +\x46\xd1\x39\xa3\xa8\x1e\x4e\x9c\x16\x8d\xf2\x18\xd4\x53\x92\xe2\ +\x98\x44\xd2\xb3\xf4\x9d\xaa\x4a\x91\x9b\x90\x51\xab\x7c\x71\xad\ +\xf2\xc8\xb3\x77\xa2\x92\xe3\xce\x2c\x78\x1d\x00\xd0\x91\xa7\x38\ +\x4c\xe8\x97\x57\xbc\x18\x21\x2b\xc4\xd9\x0e\x21\xab\xb2\x44\xd6\ +\xab\xc6\x57\x0e\x07\x53\xe4\x09\xe2\xe0\x3c\x32\x98\x23\x6a\xad\ +\x8c\xac\x94\x61\x61\x26\x15\x1a\xc3\x07\x4d\x07\x51\x53\x7b\x6d\ +\xf2\xb0\x14\xfc\xde\xe1\x3d\xef\x6f\x34\xec\x87\x5f\x7d\xda\x41\ +\x9e\x76\xf8\xb3\x6d\x1c\x0a\xaa\x54\xda\x88\x38\xfa\xd9\x86\x77\ +\x53\x88\xda\x7c\x05\x28\x59\x94\x20\xaf\x21\x77\xeb\xb1\x50\xd1\ +\x27\xb6\xa0\x99\x36\x8a\x04\xc4\x94\x55\x07\xae\x58\xcc\x2d\x0f\ +\x99\xfa\xd7\xee\x3f\x47\xe3\x5f\x93\x98\x4d\x9d\x8b\xca\xdb\x8d\ +\x28\x4d\x33\x4a\x26\xfa\x8d\x28\x12\xa3\x65\xc4\x58\x8c\xef\xb1\ +\x14\x63\xdc\xa8\xa4\x44\x67\x6a\xab\x2c\x07\x52\x9e\x74\x4a\x20\ +\x27\x74\x47\x6b\xc3\xd3\x69\x6d\xb4\x76\x46\x0c\x8f\xf9\x14\x79\ +\x83\x03\xd6\x2f\x7c\xdf\x06\x1c\x6b\x66\xdb\x52\x30\x63\x5b\xde\ +\x2a\x58\x6d\x78\xd6\x15\x86\xd4\xf3\x66\x6e\x22\x30\x5e\xc7\x16\ +\x23\x37\x6a\xb8\x66\x5a\xef\xc0\xc7\xd9\xad\x38\x31\x3f\xd9\x83\ +\x93\xa4\xfc\x4f\x75\x6d\xb4\x72\x99\xb6\xc4\x86\xf4\x64\x7c\x10\ +\x2f\x0c\xa2\x0e\x42\x84\x32\x14\x93\x09\x00\xd9\x59\x30\x6a\x6f\ +\xe4\x49\x09\xdc\x1c\x1f\x9b\x97\x99\xe8\xb8\x35\xd2\x2a\x78\xc9\ +\xe3\x5c\x46\x55\x69\x6e\xf6\x8b\xba\x0b\xb9\x56\x7f\xee\x2c\x18\ +\x10\x8a\x6b\x10\x21\x2a\xe8\xe4\x38\x7e\x4d\x26\xc5\xdf\x66\x75\ +\xfd\xb0\xb0\x11\x2b\xa3\xa5\x47\x2c\x3c\x1d\x4d\xd7\xce\xce\x6c\ +\x89\xf2\x35\x26\x0d\xb9\x78\x44\xdf\x89\xeb\x89\xa4\x82\xef\x57\ +\x65\xa2\x63\x72\x54\x30\xa6\x0d\xbb\x95\x41\x74\xe0\x19\x11\x4f\ +\x3f\x04\x50\x01\x57\xd4\xa8\xb3\x98\x5b\x46\x98\xa7\x76\x72\xfd\ +\xb9\x7f\xfa\xed\x68\xcc\x78\xf2\xbc\xf7\xa1\x3b\xd4\xc1\xaa\xa7\ +\x97\x7c\xe6\x96\x8b\x26\xa0\xe1\x3b\x38\xab\x9e\xcc\x17\x31\x78\ +\x79\x46\x93\x19\x4a\xc1\xd3\xfb\x76\x60\xd6\x32\x1c\x72\x85\xbc\ +\x5e\x48\x4c\x5e\x01\x1f\x9d\x9e\xe3\x89\xa7\x36\x2d\xb5\x35\x1b\ +\xf0\xf4\x31\x8e\x8e\x03\xb3\x12\x81\x7c\xc9\x71\xf9\x15\x4d\x8f\ +\x8a\x0a\x28\xd5\x5a\xba\x9c\xda\xa2\xd5\x6e\xf4\xe4\x30\x96\x60\ +\xa2\x49\xc4\x9b\x06\xc4\x84\x0c\x3a\x53\x09\x25\xc1\xf3\x11\x66\ +\x0f\x8b\x7e\x0b\x1b\x38\xd8\xf6\xc5\xaf\xcb\x27\x3b\x48\xe1\x2f\ +\xd6\x10\xe5\x2b\x6a\xca\x45\x6c\x2c\xd3\x7e\x26\xb7\x02\x76\x84\ +\xa4\xec\x4b\xfc\x79\x99\x9a\x65\xc9\x13\x41\x2e\x82\x69\xa3\x52\ +\xb5\x72\xdb\x2f\x54\xb7\xdd\xb2\x4d\xa3\xc0\x3a\x3c\x89\x26\x15\ +\x9e\x6a\xe3\xea\x0e\x23\x16\x40\x1c\x8e\xf2\x95\x43\x2b\x1b\x34\ +\x8a\x79\xd0\x40\xb9\x4e\x4d\x1c\x50\x81\x51\x73\x46\xd6\xed\xe0\ +\x66\x32\x9f\x44\xcd\x0a\x27\xcd\x8e\xbc\x8d\x3b\xe2\xf8\xd6\x25\ +\x82\x92\x8c\x59\x1d\xa2\x7b\x12\x99\x5d\xcb\x62\x66\xfc\xd7\x3e\ +\xcc\x1b\xde\xbd\x7e\x46\xb4\xd0\xc6\xb2\x15\xa7\x9e\xe2\x7c\xb7\ +\x37\x83\x68\x77\x61\x79\xd5\xd2\xcc\x33\x32\x70\x06\xe1\x7f\x89\ +\xee\xd7\xb2\xd4\x47\x9c\x21\x96\x90\xaa\x59\x64\x26\x0e\xa3\x4b\ +\x1c\x99\xff\x46\x9f\x93\x7b\x75\x9e\xba\x57\xa3\x7a\xae\x64\x50\ +\xc3\x3e\x43\x8f\x1c\x64\x4b\x85\xb4\x52\x90\x5c\x42\x56\x72\xad\ +\x1c\x18\xfc\x85\xb4\xd1\x99\xda\x4d\xef\xe6\x7d\xe7\xc0\xa3\xcf\ +\x1a\xb6\x51\x48\x63\x92\x36\x67\x8d\xb1\x2c\x17\x1b\x50\xe4\xb1\ +\x5c\x3c\x12\x88\x35\x5c\xb4\x47\x5d\xd2\x8d\x9a\x89\xae\x6b\x00\ +\x99\xb2\xef\xe5\xa0\x80\x28\x71\x9c\xdd\xe7\x09\xcb\x38\x3b\x77\ +\xab\x12\x1f\xb1\x38\xcd\x8b\x02\x95\x9f\xa1\x89\x3a\xf3\x71\xf4\ +\x69\x4e\xd0\x07\x39\x94\xac\xd7\x6c\x05\xb0\xe8\xa8\x47\x3d\x9d\ +\x88\x06\x38\x12\x8e\xb8\x1b\xb8\x3b\x5a\x52\x05\x0f\xb4\x4d\x26\ +\xa5\x42\x32\x48\x1e\xbd\xd9\xcd\xd9\x5c\x65\x7f\x3c\xfe\xa6\x08\ +\x8f\x84\x26\xc6\xa5\xa0\xd6\xc3\xe5\xbe\x8c\x4b\x64\xa2\xdf\x1f\ +\x99\x66\x06\x82\x28\x6e\xf4\x4b\x4e\xc6\x4f\x74\x1d\x32\xe5\xe7\ +\x3f\x79\xc1\x0a\x87\x4d\x5f\x1d\x84\xa8\xbe\x08\xf3\xaa\x90\x34\ +\xec\xa4\xbd\xce\xcb\xf6\x7c\x85\x07\x8a\xe2\x16\xb1\x2c\x71\xa2\ +\x42\xd6\xca\xaa\xa5\x0c\x42\x3f\x44\xc1\x22\x93\xea\x59\x0e\xc1\ +\x0a\x9e\xa0\xf7\x63\x44\x8d\x69\xbc\x14\x90\x23\x7e\xef\x2a\xf2\ +\xc5\x02\x44\xf4\xcc\x55\x9d\xeb\xaf\x9d\x4e\x05\x3b\x2b\x7f\xc6\ +\xe8\x73\x91\x95\x7e\x80\x06\x05\x05\xcf\x8b\x36\xa9\x98\x47\xfd\ +\x4b\xf3\xa5\x98\xe3\xc6\x0a\x69\x56\xdd\xa1\x0d\x4a\x29\x22\xcc\ +\x08\x7d\xdc\xcc\x97\xf2\xa0\x05\x0a\xc3\x20\x78\x40\xa5\x60\xbc\ +\x8e\xab\x16\xf1\xa8\xe8\x8b\xe4\x60\xc6\x7d\x05\xce\x55\xc0\x3b\ +\xc6\x46\x2c\xea\x1a\xb1\x72\x0e\x3a\xa6\x14\x4a\xd4\xa5\xb1\x75\ +\x3c\x58\xcb\x1f\x4f\x2a\xa2\xa6\x03\x05\xed\x25\x1a\x9e\x73\x62\ +\xb1\x70\x19\xb5\xae\xdf\xb3\x57\x6b\x1f\xb4\x8a\x49\x43\xad\xb3\ +\x60\xac\x7d\x38\x56\x1f\xd7\x06\x94\xc3\xe4\x78\xa9\x3d\xfb\xb4\ +\xf6\x3e\x1b\xec\x97\xa4\x23\xce\x06\xd8\xd8\x88\xdb\x70\x4f\x59\ +\xa4\x2a\xa7\x8c\xd9\xb0\x17\xc6\x1c\x30\x33\x89\xe3\xc1\xb5\xc4\ +\x9f\x66\xaa\xd2\x13\x9f\x4d\x7b\x24\xa2\x4d\x88\x6c\x9d\x16\xec\ +\x8e\x21\x1b\x86\xc8\xa0\xbb\xf0\xbf\x59\xd9\x5d\x12\x71\x9b\x29\ +\x33\x16\x19\x59\x1e\x2d\x83\x46\xe9\x98\x8e\x18\x96\x17\x40\x43\ +\xf1\xbd\x5c\x66\xd0\xb1\xb5\x2d\xfd\x82\x87\xe0\x94\x3a\xe6\x84\ +\x68\xab\x07\xa0\x28\x53\xca\x83\x6b\xd5\x69\xd7\x4e\x58\xd4\x57\ +\x71\xf2\x3f\xb8\xee\x5c\x88\x40\xd1\xc5\x56\xa0\xcd\x7f\x34\x4d\ +\x35\x4c\xe4\xf1\x19\x7f\x17\x31\xb5\xd0\x56\x9c\xfb\x60\x09\x22\ +\x79\x44\x2c\xaa\x3b\x62\x1e\x89\xc3\x25\xe2\x84\x67\xb0\x26\x8a\ +\xc1\x2d\x20\x0b\x8e\xba\x8c\xc8\x2e\xbc\x22\x87\xc3\x82\xf2\xa6\ +\xaf\xfe\x89\xce\xcc\xde\x18\x71\x10\xb1\xa3\xaa\xad\x9b\xcd\x49\ +\xaa\xd7\xbd\x0d\xc7\x6e\xbc\xfc\x08\x9e\x30\x84\xe8\x39\x1c\x14\ +\x75\x54\x12\x62\xdc\x67\x23\x56\x0b\x83\x98\x2a\xd9\xe8\x93\x30\ +\x33\x99\xf5\x37\xc4\x52\x2e\xbb\x43\x1b\x2a\xb9\x20\xfd\x0e\xf0\ +\xaf\xa9\x04\x74\x1c\x10\x7e\x0e\x8d\xdd\x18\x19\x13\x1d\x97\x84\ +\xc4\x74\xe7\x3f\x9c\x1c\x04\xaf\x14\x89\xe1\x69\x5b\x91\xe3\x50\ +\xc9\x20\x79\xdf\x99\xf5\x51\xe8\x2d\xea\x45\xc3\xc6\x8c\x4d\xb8\ +\x4c\xea\x10\x1a\xcc\xdc\x54\x56\xc1\x59\xc6\x23\xf6\x20\x36\xa2\ +\x63\xaf\x79\xef\x9a\xec\xe2\x33\x25\x36\xbc\xf5\xaf\x56\xd6\x0f\ +\x96\xb8\x57\x25\x46\x5d\xa6\xe5\x79\xee\x39\x59\x85\x63\x5c\x75\ +\xed\x09\xd7\x5d\x0d\xb3\xca\x2e\x98\x95\xc5\xf1\xc4\xcd\xb1\x1c\ +\xd1\x56\x4e\x56\x53\x39\x23\x66\x36\xa9\x14\xdb\xe0\x0b\x60\xc5\ +\x85\xf8\x58\x46\x3c\x22\xb8\x25\x6b\x80\xa2\xe3\xf5\x34\xd7\x5d\ +\x5e\x9b\x91\x93\x13\x01\x24\xec\xae\xd7\x90\x4a\x2d\xaf\x29\x5f\ +\x74\xaa\xb3\x2d\x1a\x38\x4c\x7e\x3a\x13\xf9\x21\x2b\x97\x14\xba\ +\x33\x49\xc2\xf6\x3f\xef\x08\x99\xef\x56\xe1\x55\x74\xd6\x21\x21\ +\xb4\x85\x2c\x52\x5f\x50\x26\x5b\xad\x2e\xc2\x37\x87\xd1\x51\x6a\ +\x32\x8a\x6f\xb7\x88\x1f\x0d\x8f\xea\x14\xdc\xb0\x48\xb4\xd1\x0d\ +\x3c\xd6\xc2\x1f\x0b\xb6\x97\xaf\x81\x07\x58\x1f\x78\xe5\xe6\xe9\ +\xde\x1c\x34\x77\x4d\xb5\x86\xe2\xf4\x2d\x62\x6f\xbe\x09\x3d\x22\ +\xf3\xa6\x8b\xb0\x42\xb2\x47\xf6\x03\x59\xb4\xa3\xa7\x67\x19\x8b\ +\xb0\x5b\xde\xcb\x49\x02\xf3\xed\xe2\xae\x44\xf0\x7d\x42\x0d\x8b\ +\x76\x19\x34\xd0\x34\x1a\x5c\x11\x7d\x28\xd0\xc6\x54\x59\x15\xed\ +\xdd\x19\x81\x82\x6d\x5c\x80\xf8\x51\x70\xba\x59\x0c\xa3\xb9\xdb\ +\x93\x6a\x5e\x9f\x3d\x59\x23\xd4\xcd\x5e\x39\xc2\x54\x11\x3f\xf3\ +\x16\x18\xe1\x6c\x8c\x16\xc5\xbd\x4a\x45\x0d\x7b\xba\x8a\xd6\x50\ +\x4b\x86\x29\x36\x4d\x12\x2c\x96\x58\x0e\xbf\x61\xb1\x9f\x07\xcd\ +\xaa\x6e\xf5\x05\x28\x2c\x92\x37\x42\x2b\x14\xf3\x96\x8d\x81\x39\ +\xb0\xe3\xc7\x2c\x5e\xe3\xb0\xbc\x40\x5f\xa8\x95\x0a\x00\x7b\xd2\ +\xe4\xaf\x7e\x25\x32\x5b\x18\x5e\x90\xff\x8d\x98\x1a\x7d\x3b\x2a\ +\x9b\x4a\x1c\xc2\x16\x85\x92\xf2\x45\x50\xca\xcc\xd3\x60\xe6\x21\ +\xee\xe8\x22\xab\x4a\x37\xa0\x1b\x34\x17\xa8\xf7\xe0\xd6\xb4\x93\ +\xaf\x11\xf5\x35\x23\xe2\x44\xb5\x6f\x14\xd2\x45\x52\xf2\x60\x82\ +\x18\x49\xc3\x57\x7b\x74\x45\xad\xde\xff\xee\xcf\x43\x7d\x31\xe9\ +\x11\xec\x7d\xa0\x31\x6f\x1e\x55\xa6\x8c\x7f\x15\xa8\x72\xd3\x08\ +\xe9\x57\xc2\x8c\x45\x84\xc1\x51\x8e\xb9\x88\x36\x10\x32\x52\x1e\ +\x7c\x9b\x8f\x0c\x7f\xb1\xde\xa8\x12\x5f\xbe\x7d\x94\x11\x95\x1e\ +\x6c\x2f\xcf\xd9\x94\x17\x5e\x33\xb2\x72\x27\x8a\x46\x10\x71\xd3\ +\x80\xcf\x45\x2d\x09\x1d\x7a\x8f\xd2\xd4\xcd\xa0\x89\x6e\x6d\x4f\ +\xe0\x89\xb9\x4a\x2b\x6b\x9d\x87\x80\xbc\x2c\xa1\xd2\x62\x6c\x84\ +\x96\x31\xca\xf7\xa9\x2a\x23\xfc\xa0\x8c\xbe\x81\x61\x82\x95\x5c\ +\x17\x3c\x08\xaa\xfa\x30\xa2\xa5\xae\x95\xe0\x7c\xae\xc1\x33\xc3\ +\x22\x31\x30\xd9\xb8\x51\x2d\xc6\xdb\xe1\x9a\xf4\x2b\xcf\xf0\xf7\ +\x0e\xc4\x78\x30\xc3\xbf\x33\x62\x95\x72\x99\xd0\xf9\x4e\xf5\xf0\ +\xad\xe9\xc6\x9e\xe8\xd4\xda\xcd\xc5\x21\x79\x38\xe5\x9b\x47\x95\ +\xbb\x47\x51\x23\x58\x18\xe2\x36\x94\x33\x08\x2c\x8c\x21\x25\xb7\ +\x08\xc3\xd2\xe5\xfa\x7b\x3d\x4b\x69\x22\xbb\x14\xeb\xf8\x1a\x4a\ +\x0b\xb5\x8c\x70\x25\xdb\xc1\xc4\xdc\x09\x64\xd2\x43\x36\x29\x88\ +\x39\xae\x47\xa9\x53\xb3\xb9\x4a\xc0\x6e\x7d\xb4\xb5\x33\xeb\xba\ +\x4b\xe3\x7f\x43\x8e\x95\x2b\xb9\xb0\xde\x81\x9d\xdd\x3d\x9b\x82\ +\x6b\x4e\xc1\xa8\xc1\xea\xe8\xea\x08\x0d\x38\xd3\xd7\xca\x2d\xc8\ +\xaa\x29\xde\xaa\x2d\xcc\xb1\x73\x7c\xcf\x45\x77\xbf\x6d\xe1\x4f\ +\x2b\xcd\x6f\x63\x47\x88\xde\xa1\x66\x3e\x42\xe4\x46\xcd\xf3\x0d\ +\xa0\xbe\x4c\x12\x45\x96\x14\x8a\x7c\x10\xdf\x5b\x25\x7d\x9c\xaa\ +\x8e\x13\xf7\xa2\x28\xb1\x18\xe5\x7d\x51\xb1\xb0\xc4\xbf\x8a\x49\ +\xc0\xe2\x7b\x23\x93\x32\xce\x2c\xdf\x38\x9e\xdf\xe0\x3d\xdf\xc8\ +\x9f\x17\xaf\xb6\x88\x7d\xd4\x6b\x2a\x11\x7a\x54\xb4\x58\xf6\x41\ +\x4f\x5b\x27\x79\x26\x10\x77\x7e\x33\xa1\x82\xe5\xe9\xbd\x20\xeb\ +\x61\x88\xed\xe0\x5a\x82\x92\x11\xc7\x9d\x94\x91\x16\x46\x1e\x89\ +\x88\x6b\xd7\xdf\xca\x5b\xf1\xab\x27\x21\x7c\x86\x4f\x6f\xb0\xfa\ +\x51\x8a\xdd\x5e\x5e\xb0\x18\x78\xa6\xcb\xd3\x24\xe1\x02\xaf\xf0\ +\xab\x6a\xa2\x6b\x68\xdb\x7b\x69\x8b\x79\xe0\x35\xdb\x42\x81\x24\ +\x95\xbc\xee\x95\xcb\x7a\x5d\xd0\x7c\x3c\x17\x6e\x04\x53\x83\x96\ +\x53\x48\xb1\xf7\xc5\x44\x97\xe2\xfa\xc9\x34\xf2\x1a\x10\x8b\x3b\ +\x08\xca\x60\x1d\x58\x58\x62\x7b\x52\xaa\xe0\x53\x0c\xb4\xaa\xb8\ +\x84\x18\xc8\x93\xf9\x8a\xa5\x70\xf8\xa6\xcc\x30\xc8\x97\x0c\x7a\ +\x89\x58\xaa\xe5\xc0\x52\xe7\x07\xf5\xde\x14\x6f\xd1\xf4\x91\xdf\ +\xa2\x40\x6b\x2b\xac\x59\x90\xe6\x74\xdf\x22\x14\xe3\x11\x54\xab\ +\x9e\x49\x08\xf6\xde\x4a\xf5\x51\x7f\xbe\x47\x9c\x49\x50\x9e\xdc\ +\x18\x78\x0b\xa6\x78\x87\x85\xf0\x2f\xc2\xef\xc4\x54\xcf\xbe\xd0\ +\x70\xac\x94\xb9\xed\xf2\x8d\x98\xf4\xa5\xea\xf2\x6d\xc7\xbe\xd7\ +\xae\xb7\xf7\x04\xa5\xec\xf1\x21\x18\x84\x7a\xf6\x97\xfc\xf9\x67\ +\xee\x53\x66\x5e\xe3\xcd\xac\x4e\x27\xa8\x8c\x56\x26\x03\xaa\xf1\ +\x57\x51\xb1\xac\xb5\xf7\x05\xc1\x60\x75\x8a\x6a\xce\x20\x50\x9b\ +\x25\x9d\x8c\x3e\x5a\x23\x34\x60\x9e\x1b\xa4\xdd\x33\x61\xa3\x0b\ +\x8a\xda\x17\xe9\xcd\x63\xb9\xe1\x41\x5d\xdb\x5f\xe3\x15\x7f\xb7\ +\xfe\x2e\x22\x2b\xd7\x45\x54\x4e\x2d\xc3\xa2\xa6\x81\xa4\xba\xd5\ +\x7d\x56\x09\x10\x7c\xac\x68\xb3\xef\x1c\x30\x68\x9f\x22\xa6\xf8\ +\xbb\x44\x08\x4b\xc7\x2e\x29\x2c\x4e\x66\xba\x41\x92\xdc\x35\x09\ +\xa4\x62\xc6\x2e\x22\xdf\xa7\xa1\xe3\xde\x64\x3c\x9e\x28\x71\xbd\ +\xad\xbc\x81\xc0\x83\x6f\x81\x80\x8f\x02\xd0\x85\x2f\xad\xa0\x15\ +\x8c\xf8\x4a\x54\x66\x63\x84\x1c\x8a\xeb\x71\x62\xbf\xed\x25\xba\ +\x32\x47\x77\x42\xd5\x38\x87\xf8\x17\xd0\x45\xa2\x33\x4a\x32\x77\ +\x9f\xe3\xb2\x34\xd8\x14\x42\xad\xb1\x95\xa8\x5e\x2e\x96\x42\x1b\ +\x31\x87\x5b\xad\x76\x69\xb8\x04\x33\x3b\xc1\x56\x17\x5c\xd6\x96\ +\x49\xb0\xac\x36\xda\x97\xde\x08\x5b\x82\xa4\x0e\x06\xb8\x04\x68\ +\x9e\x00\x08\x28\x99\xbd\x21\xa6\x4b\x79\xe1\x6c\x70\xfe\x73\x63\ +\xe6\x2f\x45\x2c\x3f\x1a\xcd\x5d\x68\xb1\x59\xe8\x05\x1b\x0a\x05\ +\x94\x88\xac\x4d\x11\xdf\xbc\xec\x25\xe2\x1d\x05\xe2\x35\x02\xe2\ +\x10\xfa\xba\xb4\x21\x50\xa6\x07\x04\x61\x64\x0c\x58\x52\xc6\x28\ +\xa4\xcd\x30\x7d\x8c\x4c\x82\xc8\xe0\xeb\x61\x58\x86\x4e\x2d\x9d\ +\x67\x0e\x50\x1c\x93\xd1\x67\xde\xe4\xcf\x48\x49\xbb\x4c\x80\x0d\ +\x06\xa2\x49\xeb\xe9\xd3\x58\xb7\x22\x20\xe7\x57\x63\xf6\x7d\x5b\ +\x24\xb8\x42\x35\x99\x11\xbe\x22\xdb\xf5\x12\x02\x26\x38\x8d\xc5\ +\xd0\x25\x26\x8f\x62\x20\xad\x94\xd4\x97\x2d\x39\x22\x5a\x9d\x0c\ +\x04\xf6\x76\xcd\xf0\xd4\xfe\x97\x6b\x8b\xe9\x59\x61\x95\xca\xda\ +\x6d\x21\x10\xc4\xcb\xb3\xe3\xe0\xd8\xad\xbc\xea\xc1\x09\x09\x3e\ +\x27\x86\x8f\x9d\xc8\xdd\x92\xad\xa3\x24\x52\xe6\x33\x88\xd4\x37\ +\x8e\x78\x22\x10\xbb\x40\x05\x01\x1a\x27\x9b\x89\x28\x6e\x9c\x7c\ +\xfa\x20\x17\xaa\x09\xe3\x60\x5c\x43\xf2\xaf\x88\x7c\xc8\xa2\x75\ +\x13\xc5\x90\x04\xb9\x93\x81\x8c\x65\x90\x8e\x64\x5f\x96\x66\xa5\ +\x6c\xcd\x5d\x38\x13\xec\xec\x4c\xc8\x89\x1e\x02\xe3\x30\xfa\xbd\ +\x87\x69\x8c\x65\x08\x9f\x6a\xb2\x75\xb1\x00\x58\x58\xd3\x94\x88\ +\xff\x1d\xf2\x9c\x09\x22\x3a\x70\x81\x8e\x1d\x35\x26\xa7\xc0\xb3\ +\x63\x28\x50\xe7\x02\x43\x0f\xa9\x90\x78\x85\x23\xc4\xcd\x90\x6a\ +\xa4\x79\x60\x2e\xe6\x60\x62\x97\x1a\x46\x01\x8a\xd2\x01\xd8\x4c\ +\x6a\x01\x0c\x87\x69\x61\x10\xc8\xf3\x20\x27\x32\x01\x8c\x08\x10\ +\x44\xe3\x50\x8f\x21\x4d\xb9\x8c\x10\x69\x3a\xb4\xb9\x85\x9e\x63\ +\x10\x74\x51\x00\xe3\x30\x36\x12\x00\x47\x6d\x95\x16\x0f\x8a\x7a\ +\xa2\x43\xea\xb9\x70\xab\x36\x0b\xdd\x6b\xbf\x70\x5e\xe8\x07\x11\ +\x19\xa6\x0b\x93\xf7\x6e\x2c\x47\xbb\x53\x20\x4d\x74\x0d\xcb\x61\ +\x3d\x94\xae\x64\x7b\x92\x22\x33\xcd\x15\x8e\xc5\x33\xd7\xbe\xe8\ +\xa5\x1f\x62\xaa\x97\x81\x2c\x0b\x2c\x78\xc6\x51\xcc\xd9\x3f\x6d\ +\xe5\x8b\xf4\xe6\xb0\x04\xd8\xed\x05\x64\xa2\xa2\x76\x85\x40\xa9\ +\x97\x97\x99\x2c\x4b\x58\x85\x17\x11\xd2\x89\xea\x22\xb0\x4c\x42\ +\x51\x31\x53\x2f\xe3\xd2\x29\x96\xc1\x42\x26\x93\xd3\xd0\xd4\x22\ +\x41\xe4\x18\xa3\xcc\x03\xe9\x48\xae\xf3\x2f\x48\x08\x0c\x9a\x98\ +\x61\x24\xe5\x19\xa5\x8a\x15\x40\xbf\x0a\x2e\x6a\xdf\x14\x8b\xfa\ +\x47\x48\xb5\x05\x91\xc0\x4e\x2a\xcb\xce\x3f\x64\xb0\xa2\x34\xab\ +\xda\xe4\x4d\x3d\x63\x22\x9b\x81\xb1\x28\x8c\x89\xa6\x97\x24\x9b\ +\x13\x62\x00\x0f\xea\x60\x99\x1c\xcf\x9a\xb6\xe3\xd2\xf7\x73\x05\ +\x17\x74\x05\x4f\xcc\x86\xdb\x74\xb2\x20\xa8\x1a\x17\x96\x9d\x3b\ +\xb2\xc4\xf0\x6a\x02\x82\xa7\x81\x30\x89\xe3\x89\x1e\xd9\x23\xc4\ +\x7f\x17\x0d\x8f\x1c\x24\xac\xd3\x99\x1a\x23\xdb\xe1\xeb\x51\x5a\ +\xd0\x82\x29\x20\x2f\x09\x0d\x0e\x9c\x57\xc8\x84\xcd\x3a\x44\x65\ +\x52\x3a\xa7\x3b\x0e\xb5\x2d\xa3\x52\x46\x5f\x2a\xab\x5f\xa9\xec\ +\xeb\xc8\x98\x58\x32\xb5\x14\x0d\xaa\xc3\x2a\xdb\xbd\xd1\xc0\xbb\ +\x88\x34\xab\x1d\x7d\xfd\xed\xdd\x44\xac\xf9\x35\x4e\x33\x22\x88\ +\xc2\x7c\x13\x71\x5c\xd9\x2b\x92\xf0\x90\xb4\x4d\x45\x12\x4f\x23\ +\x31\xc4\xd0\x40\x4b\x16\x7d\x60\xad\x54\x70\xcd\x1c\xd6\xcc\x60\ +\xaf\x36\x5e\x2d\xc3\xee\x1d\x2a\xb9\x2e\xf8\xbe\xfa\x30\x7f\x9b\ +\x98\xcf\x03\x53\x33\xf5\x12\x2f\xd1\xcd\x64\xe2\x1a\xbe\xf8\xb3\ +\xef\xb2\x89\x8d\xbf\x24\x45\x12\x87\xc1\x89\x63\x94\xc8\xc6\x86\ +\xfe\xa0\xc2\x5a\x75\xcd\xc1\x8a\x04\xec\x00\xe3\xa3\x84\xbc\x35\ +\x0a\x17\xc2\x31\x86\x36\x4c\x03\xa4\x91\xa1\xc4\x51\x69\xa6\xb2\ +\x72\x42\x15\x29\xed\xdf\x60\x3c\x1d\xbb\x21\x6e\xc7\xce\x1c\xa1\ +\x78\x05\x4d\xd5\xc5\x45\xab\x59\xc0\xc0\x24\x2c\xd2\xad\x2e\x4e\ +\x32\xf2\xdc\x6d\x32\x0a\x3d\xa2\xd3\x8a\x5e\xb0\xfa\x6c\x03\x81\ +\x0f\x72\x6a\x4a\x36\xd7\x92\xa1\xa3\x6d\xe1\x48\xf0\xec\x40\x0c\ +\x28\x7c\x80\x3f\x45\x9f\x8a\x8c\x02\x2d\x4c\xf2\x9e\x8a\xc0\x38\ +\xa7\x8b\x92\x59\x1f\xac\xdb\x49\xf0\x75\x7d\xd5\xdb\xad\x50\x32\ +\x76\x8a\xbe\x4d\xbe\xa0\x6a\x7f\xc4\x01\xf9\x1c\x09\x66\xd2\x5a\ +\xfb\xbd\x63\xeb\xd4\x68\x0e\x6e\x59\x13\x6c\x99\x27\xd2\x64\xea\ +\x62\x47\x94\xac\xd8\xa3\xde\xcb\xbd\x43\xe1\x9c\xa9\x2f\x24\x97\ +\xe7\x70\xa3\xb2\x46\xaa\xb3\xc0\xe8\x5d\x6e\xff\x12\x36\x2f\x37\ +\x58\x2d\xfb\x00\x68\xca\x02\x95\xd2\xc2\xf2\xd7\xe9\x5b\xba\x5d\ +\x33\x1f\x12\xdb\x6d\x53\xb7\x7c\x91\xd1\xce\x9d\x66\xfa\x80\xb6\ +\x23\x2a\x8b\x9a\xc1\xfd\x16\x67\x67\x44\x01\x6c\xb4\xc2\x67\xcb\ +\x11\x27\xe5\x45\x79\x60\x82\x17\x96\xcb\xb8\x20\x02\xc2\xe3\x51\ +\xae\xc5\x5a\x71\xb3\x32\x3e\x5f\x20\x38\xb8\xd8\x76\x1f\x94\x2c\ +\x4e\x32\x79\xe6\xb6\x95\xcd\xc4\xd3\xb7\xa1\xc4\xed\xea\xc8\x65\ +\x6b\x6a\x8e\xc1\x5b\x8e\x68\x97\x23\x07\x3f\x0c\x07\xc7\xa6\x38\ +\xd1\x79\xe1\x95\x31\xc3\xab\xb2\x21\xc1\xe0\x28\x16\x42\x83\xb7\ +\x87\x76\x5e\x68\x91\x34\x91\x39\xd5\x2e\x05\xed\x33\x70\xc8\x34\ +\x4b\xac\xc6\x0d\x1a\x84\x38\xba\x5b\x42\x10\xc3\xa2\xcf\x41\x68\ +\xc0\xce\x04\x28\xc8\x72\xad\x99\x53\x53\xee\x38\xac\x51\xc8\xc4\ +\x00\x1a\x46\x6d\x94\xa5\xe4\x9b\x47\xe6\x5b\x70\x6c\x66\x09\x45\ +\x8f\xbe\x21\x66\xf4\xe0\xb6\x89\x53\xfc\x22\x1d\xc2\x3c\x9b\x2e\ +\xd9\x82\x01\x67\x12\xaf\x75\x8c\x99\xac\x18\xbb\x94\x37\x95\x02\ +\xf5\xa8\xec\x67\x9f\x87\x38\x99\x8d\xc1\x38\xb8\x72\x87\x57\x17\ +\x24\x14\xa9\x02\xde\x62\x04\x0f\xdf\xab\x8d\xa0\xe1\xe9\xd4\xf6\ +\xbe\xc5\xcc\x6e\xa0\xbf\xf7\x2c\xa6\x61\x94\xc4\xd8\x97\xf8\x61\ +\xd5\xea\x25\x2f\xe8\xd1\x15\x20\x6c\x39\x69\x68\xf0\x15\x53\x0e\ +\x6e\x29\x5e\x94\x4a\xe0\x0c\xdd\x56\xb1\x68\x39\xf4\x6d\xb2\xd1\ +\xc3\xcf\xc3\x96\x48\x94\xa4\xd5\x6e\x0f\xa2\xdd\x88\x84\xb3\x19\ +\x07\x63\x7d\x3f\x42\x83\x74\x95\x21\x38\x28\x21\xca\x43\x1c\xa9\ +\x00\xb4\xb6\xc5\x8f\x6a\x45\x8b\x90\xb8\x89\x54\x1e\x9f\x6a\xa2\ +\x59\xfe\x89\x98\x00\x08\xcd\x74\x5c\xcc\x4c\x59\xc2\x5a\xae\x49\ +\x43\x82\x1d\xb3\x64\x86\x52\x2a\x20\x5d\x9c\xb4\xce\x5e\x43\xed\ +\x5a\xe1\x29\x56\x47\xa2\xde\x8f\x33\xb5\x11\x79\xce\xb7\xbb\x8c\ +\x6d\x59\x2f\xf0\x68\x64\x85\x97\x10\xcd\xb6\x4c\x93\xb9\xbc\x6a\ +\x39\x15\x39\x43\x34\xf1\xa4\xe4\xcb\x7c\x64\x2e\x72\x27\xbd\x35\ +\x54\x9f\xb3\x8b\x51\x94\xb4\x2d\x76\x21\x29\x85\xa8\x91\xdf\xe7\ +\xb9\x46\xe9\xc8\x94\xfd\x34\xf6\x34\x35\x67\x22\xb3\xf6\xeb\x31\ +\x3b\xee\xbd\x1b\x99\x04\x8b\xaf\xc4\x2b\xd1\x27\x2f\xbe\x7a\xf7\ +\x2e\x34\x39\x45\x6a\xd6\xf3\x1a\x27\xad\xc0\x9a\x09\x53\x33\xc2\ +\x53\x4c\x10\x65\xd9\x94\xee\xc2\xe5\x84\x9b\x14\x22\x52\x6a\xe9\ +\x06\x28\xfd\x84\xf2\x70\xd1\x36\x8e\x67\x72\xc8\xba\x1f\xde\xa8\ +\x6e\x67\x44\x1a\x79\xd1\x54\xa3\xc0\xef\x7b\xc8\x5e\xa9\xd8\xf8\ +\x58\x7b\xf6\x46\x66\xa5\x93\x0d\xb7\x2f\x3c\xdc\xbe\x43\x1e\x6e\ +\x6f\xc4\x70\x7b\xa3\x87\xdb\x10\x69\x1c\x4c\x96\xe5\xd1\x54\xe2\ +\x91\xf5\x68\x7c\x1a\xdd\x8b\x41\x83\xb9\x46\x49\x24\x9c\x3e\x2c\ +\x7f\x42\xb5\x3d\x7b\xb8\xfc\x4c\xb2\xe5\x91\x51\x40\x30\xaf\x3e\ +\x9c\x5f\x2b\x1f\x0c\x3b\x4c\xbd\x53\x4d\x8e\xb2\x34\x84\x83\x8d\ +\x87\x30\xb9\x2a\x4b\xd5\x69\xe7\x44\x4d\x8b\xc2\x35\x9c\x4f\x29\ +\x7f\x56\x76\x5a\x90\x95\xff\x52\x4b\x89\x35\xd3\x16\x6f\xfe\x31\ +\x7c\x90\x68\x51\x90\xb8\xb6\x99\x5f\x0e\x2a\xdc\x08\x47\x21\x7b\ +\x0f\x01\x9e\x22\x11\x6f\x76\x0f\xea\xae\xb9\x51\xb3\x97\xd8\xdb\ +\xdd\x83\x33\xef\x49\xc0\x43\xac\x84\x40\x24\x28\x4d\x2e\x67\xd9\ +\x7d\xcf\xa1\x67\x66\x12\x51\x0f\x18\x96\x8f\x9d\x1c\x1a\x64\x39\ +\x1a\x79\xa2\x09\x4a\x33\x5d\xca\xe9\x76\xb0\x58\x55\x34\x3f\xf4\ +\x95\x94\x74\x93\x60\xfb\x63\x11\x1a\x50\xb3\x60\xf4\x0c\xa1\x52\ +\x52\xc2\x1b\x21\x7b\x61\x01\x96\xd9\x0a\x2e\x7e\x6e\xa0\xaa\xd5\ +\xa7\x47\xa5\x0b\x38\x80\xca\xad\x3b\xa2\x46\xaa\x4f\x69\x15\x31\ +\x69\xb1\xa7\x17\xf3\x62\x67\xd7\xd5\xc3\x3a\x39\x45\x74\xcc\x1f\ +\x0c\x14\x7f\xd2\x63\x15\x34\x2c\x25\x4e\xce\x04\x57\xd0\x0f\xe8\ +\x51\x5f\x48\xbe\x9c\x88\x4a\x22\xff\x8b\xca\xfd\xf1\xc3\xa9\x5b\ +\x8e\x1c\x31\x68\x0d\x0f\xd3\xd7\x40\xf9\xde\xce\xba\x9d\xbf\x42\ +\xc4\x17\x13\xe8\xf6\x68\x52\x09\x57\x0c\x02\xad\x07\xee\x3c\x39\ +\x58\x39\xce\xc1\xf2\x87\x80\xc2\x27\x36\xdb\xbd\x97\x36\x68\x64\ +\x29\xfc\xec\x53\xe2\x5a\xf3\x68\xc9\x39\x92\x10\x56\x24\xf2\xf3\ +\x90\x60\x82\x0f\xee\xda\xb6\x74\x5f\xb8\x10\x71\xb7\xa0\x54\x09\ +\xe9\xee\x30\xcd\x7d\x56\x29\x59\x97\xa7\x2a\xc2\xa7\x59\xe3\x5e\ +\x7f\x21\xab\x63\xd5\x92\x1f\xd9\xab\x87\xbd\x99\x21\x22\x46\xc9\ +\x5d\x47\x69\x6a\x89\xfe\x29\x93\x05\xca\xda\xc9\xe9\x0a\x46\x4e\ +\xa5\x75\xf5\x2c\x5e\xe9\xbd\xac\x42\x9c\x32\x65\x41\x5e\xda\x9b\ +\x80\xf2\x06\x0d\x65\xa2\xd9\xe6\xb0\x50\xa6\xb4\x5c\x94\xea\xce\ +\xf6\xd3\x83\x48\x6c\xc7\xb8\x9d\x4c\x47\x47\xb3\xa3\xcf\x66\xa7\ +\x65\x7e\x53\xb1\xe2\x64\x75\x68\x0c\x2f\xc1\x22\xc2\x14\x0e\x1b\ +\x55\x86\x56\xa9\xd4\x44\x57\x04\x8b\xa1\xd7\x47\xd6\xd4\x52\xbb\ +\x43\xa6\x0e\x62\x5d\x32\xa9\x6a\xf6\x28\x3d\x1c\x29\x5e\xa5\x6f\ +\x16\x98\xaf\xda\x67\x20\x55\xee\xd9\x1b\xf1\xfd\x3e\xe5\xfb\x7d\ +\xa1\xc5\xc8\xa7\x2b\x82\x0f\xc7\x2d\x66\x6f\x79\x8b\xd9\x9b\x7c\ +\x31\xaa\x3d\x55\xb9\x37\x0c\xac\xfc\xb6\x22\xf8\x65\x1c\xb0\xfb\ +\xca\x03\x76\x5f\x52\x60\xe7\x86\x12\x0f\xf2\x28\x88\x74\x59\x5b\ +\x75\x76\x90\x83\x47\xf7\xbb\x42\x76\xf4\x46\x12\x3c\x8f\xeb\x1b\ +\x56\xfa\xe8\xf8\x10\x08\x4c\x96\x25\xd8\xa8\xab\xf1\xe1\xff\x0f\ +\x9b\xb4\x9e\xeb\ +\x00\x00\xd4\x9b\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x0b\x38\x00\x00\x00\x58\x00\x00\xc6\xc6\x00\x00\x00\x59\ +\x00\x00\xc7\x87\x00\x00\x00\x5a\x00\x00\xc8\x28\x00\x00\x05\xd9\ +\x00\x00\xc7\x47\x00\x00\x05\xda\x00\x00\xc7\x67\x00\x00\x05\xea\ +\x00\x00\xc8\x08\x00\x00\x07\x78\x00\x00\x8d\x75\x00\x00\x48\x83\ +\x00\x00\x03\x51\x00\x00\x48\x83\x00\x00\x94\x4d\x00\x00\x68\x34\ +\x00\x00\x86\x77\x00\x01\xc1\x87\x00\x00\x5c\x2c\x00\x04\xa6\x79\ +\x00\x00\x98\x5e\x00\x04\xbb\x04\x00\x00\x0d\xae\x00\x04\xbb\x04\ +\x00\x00\x9d\xc2\x00\x05\x30\x45\x00\x00\x10\x1b\x00\x05\x30\x45\ +\x00\x00\xb1\x0d\x00\x05\x46\xc5\x00\x00\x10\x48\x00\x05\x46\xc5\ +\x00\x00\xb1\xab\x00\x05\x56\x45\x00\x00\x5c\xfd\x00\x05\x56\x45\ +\x00\x00\xb2\xd3\x00\x05\xac\xf4\x00\x00\x1e\x36\x00\x05\xac\xf4\ +\x00\x00\xc3\x79\x00\x05\xb8\xfd\x00\x00\xc4\x99\x00\x05\xcf\xc7\ +\x00\x00\xc5\x47\x00\x06\xab\x8c\x00\x00\x87\xfb\x00\x10\x84\x49\ +\x00\x00\x6b\x89\x00\x12\x05\xba\x00\x00\xc0\xb3\x00\x16\xc6\xda\ +\x00\x00\xa5\x62\x00\x1f\xa4\xf7\x00\x00\x2c\x2e\x00\x2a\xa6\x79\ +\x00\x00\x90\x4b\x00\x2b\xc4\xaf\x00\x00\x91\x73\x00\x2b\xe0\x65\ +\x00\x00\x91\xa4\x00\x39\xdf\x33\x00\x00\x3d\x68\x00\x3a\x9e\x1b\ +\x00\x00\x7e\x25\x00\x3d\xa1\x19\x00\x00\x95\xa2\x00\x3e\x93\x83\ +\x00\x00\x3e\xbc\x00\x48\x8f\x7c\x00\x00\x2d\x54\x00\x48\x98\x89\ +\x00\x00\x04\x36\x00\x49\xe0\x85\x00\x00\x2a\x18\x00\x49\xe0\x85\ +\x00\x00\x9b\x2d\x00\x4a\x36\x45\x00\x00\x07\x7e\x00\x4b\x66\x35\ +\x00\x00\x3a\x16\x00\x4b\x66\x37\x00\x00\x3a\x5b\x00\x4b\x66\x39\ +\x00\x00\x3a\xa0\x00\x57\x60\x54\x00\x00\x13\x8e\x00\x57\x60\x54\ +\x00\x00\xbc\x26\x00\x58\xfd\xf4\x00\x00\x61\x34\x00\x59\x98\x25\ +\x00\x00\x17\x8b\x00\x59\x98\x25\x00\x00\xbd\xf4\x00\x6a\x58\x9a\ +\x00\x00\xb5\x9e\x00\x79\xef\xd4\x00\x00\x8d\xb5\x00\x7e\x7f\x0e\ +\x00\x00\x83\x1e\x00\x8a\x23\x95\x00\x00\x30\xd8\x00\x8a\x23\x97\ +\x00\x00\x31\x1e\x00\x8a\x23\x99\x00\x00\x31\x64\x00\x91\xbc\xe9\ +\x00\x00\x10\x81\x00\xa6\x37\x3f\x00\x00\x2f\xb3\x00\xaa\x80\x25\ +\x00\x00\x9b\xe1\x00\xac\xd6\x04\x00\x00\x4b\x5a\x00\xc0\xac\x63\ +\x00\x00\x9c\xad\x00\xc6\xe3\x6e\x00\x00\x2b\x9f\x00\xcb\xa8\x14\ +\x00\x00\x8c\x85\x00\xfc\x00\xca\x00\x00\xac\x9c\x01\x19\x8d\xde\ +\x00\x00\x66\x78\x01\x21\xd6\x39\x00\x00\x6a\x58\x01\x22\xb4\xf9\ +\x00\x00\x17\xbe\x01\x2f\x8e\x7e\x00\x00\x75\xde\x01\x48\xfe\xa3\ +\x00\x00\x3f\x38\x01\x53\xf3\xaa\x00\x00\xa1\xc9\x01\x56\x16\x4a\ +\x00\x00\xab\xff\x01\x5c\xde\xba\x00\x00\xb2\x4a\x01\x67\x0d\x8a\ +\x00\x00\xa7\x1d\x01\x69\x11\x7a\x00\x00\xb9\xf5\x01\x69\x97\x98\ +\x00\x00\x41\xdc\x01\x82\x39\x0a\x00\x00\xb6\x3a\x01\x8b\x68\x75\ +\x00\x00\xc4\x20\x01\x8b\x89\x79\x00\x00\x07\xad\x01\xa1\x7f\x63\ +\x00\x00\x20\xfd\x01\xb1\x5d\x09\x00\x00\x7e\xc0\x01\xc1\xd9\xde\ +\x00\x00\x6d\xba\x01\xd2\x8f\xd3\x00\x00\x61\xe5\x01\xd4\x10\x23\ +\x00\x00\x4a\x6b\x01\xdd\x83\xfa\x00\x00\xb4\x24\x01\xdf\x11\x43\ +\x00\x00\x06\x9e\x01\xe2\xf4\x5a\x00\x00\xc0\x44\x01\xfc\xae\xd3\ +\x00\x00\x8d\xf6\x02\x05\xbe\x25\x00\x00\x9a\x9a\x02\x2c\xd9\x60\ +\x00\x00\x23\x51\x02\x2f\xb5\x14\x00\x00\x22\x86\x02\x46\x58\x0a\ +\x00\x00\xb9\x2f\x02\x57\xf8\x08\x00\x00\x0c\x7e\x02\x65\xad\x62\ +\x00\x00\xc8\xf4\x02\x6e\x07\xe2\x00\x00\x65\x1a\x02\x76\x24\x13\ +\x00\x00\x47\x3b\x02\x7d\xe0\x55\x00\x00\x66\x18\x02\x94\x46\x1a\ +\x00\x00\xb5\xe9\x02\x95\xca\xb5\x00\x00\x3b\xfd\x02\xa7\x2c\x15\ +\x00\x00\x05\x36\x02\xaa\x36\x95\x00\x00\x8f\xe4\x02\xab\x87\xd4\ +\x00\x00\x90\x80\x02\xb1\xf0\xba\x00\x00\xa8\xfe\x02\xbf\xaa\x8e\ +\x00\x00\x43\x21\x02\xc0\x66\xf2\x00\x00\x71\xec\x02\xc8\x3f\xf5\ +\x00\x00\x7d\x7b\x02\xd9\xa4\xb9\x00\x00\x86\x28\x02\xdb\x1a\x94\ +\x00\x00\x08\xd9\x03\x01\x84\xc4\x00\x00\xad\x59\x03\x12\x97\x6a\ +\x00\x00\xab\x10\x03\x14\x79\xca\x00\x00\xb1\xdf\x03\x1a\x14\x14\ +\x00\x00\x37\x90\x03\x1a\x16\x59\x00\x00\x67\x8d\x03\x2f\x1a\x6a\ +\x00\x00\x92\x31\x03\x7e\xca\xb5\x00\x00\x57\x1e\x03\x85\x74\x48\ +\x00\x00\x51\xa8\x03\x88\x1f\xd4\x00\x00\x57\xf3\x03\x9e\x58\xa5\ +\x00\x00\x00\x48\x03\xb3\x9e\xfa\x00\x00\xb6\xee\x03\xb5\xc8\x9a\ +\x00\x00\xb8\x5e\x03\xbd\xd4\xe4\x00\x00\x92\xe6\x03\xc4\x3c\xf5\ +\x00\x00\x95\x60\x03\xc5\xd5\x5e\x00\x00\x0a\xfd\x03\xc5\xd5\x5e\ +\x00\x00\x9b\xb2\x03\xcb\x0d\xe5\x00\x00\xbe\x21\x03\xdc\x0c\xd4\ +\x00\x00\x90\xe1\x03\xe1\x78\x25\x00\x00\x99\xca\x03\xf2\x70\x35\ +\x00\x00\x33\xca\x03\xf2\xbd\x60\x00\x00\x19\x1a\x03\xfb\x0f\x04\ +\x00\x00\x37\x16\x04\x21\x23\x23\x00\x00\x27\x55\x04\x2e\x73\x33\ +\x00\x00\x81\x93\x04\x56\x06\x93\x00\x00\x35\x2f\x04\x60\x7c\x15\ +\x00\x00\xbc\xb6\x04\x79\xef\x9a\x00\x00\xa8\x7b\x04\x82\x77\xf4\ +\x00\x00\x65\xc2\x04\x87\x83\x87\x00\x00\x46\x3d\x04\x87\xf9\x9e\ +\x00\x00\xae\x7a\x04\x8c\xd6\xae\x00\x00\x7b\xb2\x04\x8e\xbd\xda\ +\x00\x00\x9f\xe5\x04\xa0\x8a\x25\x00\x00\x06\x63\x04\xa0\x8a\x25\ +\x00\x00\x97\x09\x04\xa4\x31\x5a\x00\x00\xb0\x9d\x04\xa8\xeb\x85\ +\x00\x00\x3a\xe5\x04\xbe\x0a\xf8\x00\x00\x60\xb1\x04\xd6\xd6\x12\ +\x00\x00\x63\xcb\x04\xe1\x6e\xe3\x00\x00\x0b\x79\x04\xe4\x0f\x75\ +\x00\x00\x02\xeb\x04\xeb\x41\xc3\x00\x00\x34\xa2\x04\xef\xd9\xa8\ +\x00\x00\x5f\xc8\x05\x03\x83\x95\x00\x00\x89\xa0\x05\x05\xcb\x13\ +\x00\x00\x55\x6a\x05\x0f\xf2\x74\x00\x00\xb4\xb9\x05\x1b\x10\x59\ +\x00\x00\x59\xae\x05\x2a\xe5\x97\x00\x00\x62\xb1\x05\x44\x3b\x5f\ +\x00\x00\x8b\x7d\x05\x5c\xd9\xc4\x00\x00\x11\xd6\x05\x5c\xd9\xc4\ +\x00\x00\xb3\x48\x05\x63\xf6\x93\x00\x00\x61\x77\x05\x65\xee\x65\ +\x00\x00\x9f\xa8\x05\x87\xb0\xc3\x00\x00\xbc\x8a\x05\x96\xa8\xa5\ +\x00\x00\x16\x23\x05\x96\xa8\xa5\x00\x00\xbd\xc2\x05\xad\x4b\xc3\ +\x00\x00\x57\x74\x05\xb2\xa6\xc6\x00\x00\x23\xa9\x05\xb9\x03\xc8\ +\x00\x00\x24\x22\x05\xbd\x0c\xba\x00\x00\xa2\xf9\x05\xbd\x8e\xde\ +\x00\x00\x7a\x1a\x05\xbe\x56\x93\x00\x00\x5f\x5a\x05\xc5\x50\x04\ +\x00\x00\x0d\xdd\x05\xe5\x8e\x2e\x00\x00\x13\xbd\x05\xfb\xdc\x83\ +\x00\x00\x55\xc8\x06\x1e\xe6\xb5\x00\x00\xc3\x38\x06\x29\xee\xa9\ +\x00\x00\x97\x92\x06\x2a\x86\xcd\x00\x00\x65\x6c\x06\x57\x19\xf4\ +\x00\x00\x00\x00\x06\x5a\xef\x15\x00\x00\x90\x14\x06\x5b\xd2\xb5\ +\x00\x00\x4c\xfd\x06\x6c\x88\x8e\x00\x00\x53\x39\x06\x74\x1d\x55\ +\x00\x00\x6d\x1e\x06\x8b\x96\x44\x00\x00\x0e\x9b\x06\x97\x58\xc9\ +\x00\x00\x68\x16\x06\xbc\x80\xa5\x00\x00\x22\x0d\x06\xc9\xb8\x05\ +\x00\x00\x93\x66\x06\xe8\x05\x4e\x00\x00\x08\x6e\x06\xee\xaa\x57\ +\x00\x00\xc2\x25\x06\xf0\xcb\x25\x00\x00\x1f\xc3\x06\xfa\xff\xc3\ +\x00\x00\x56\xc2\x06\xfc\x1a\x14\x00\x00\x3c\x53\x06\xfc\xa0\x8a\ +\x00\x00\xb4\xfc\x07\x08\x90\xe5\x00\x00\x32\x3d\x07\x0d\xb7\xf7\ +\x00\x00\x42\x4a\x07\x0e\x86\x3e\x00\x00\x20\x3c\x07\x2a\x23\x65\ +\x00\x00\x41\x47\x07\x35\x68\x6e\x00\x00\x1a\x33\x07\x35\xe8\x9a\ +\x00\x00\xba\x3a\x07\x44\x41\x2a\x00\x00\xa1\x28\x07\x4a\x1f\x63\ +\x00\x00\x02\x14\x07\x4d\x73\x22\x00\x00\xb1\x35\x07\x4e\xa6\xf2\ +\x00\x00\x9e\x23\x07\x58\xcb\xe8\x00\x00\xb1\x6d\x07\x63\xfe\x0e\ +\x00\x00\x14\xce\x07\x63\xfe\x0e\x00\x00\xbc\x4f\x07\x71\xad\x43\ +\x00\x00\x1b\x36\x07\x80\xc6\xb3\x00\x00\xc6\x74\x07\x88\x72\x5a\ +\x00\x00\x94\xa1\x07\x91\x78\x5e\x00\x00\x29\x15\x07\xa7\x30\x05\ +\x00\x00\x94\x72\x07\xc1\xfc\x13\x00\x00\x35\xfe\x07\xe7\xec\x93\ +\x00\x00\x80\x5f\x08\x27\xb4\xba\x00\x00\xb7\xf1\x08\x32\xc4\xaa\ +\x00\x00\xba\xf7\x08\x36\x74\x14\x00\x00\x2b\x54\x08\x44\xb9\x83\ +\x00\x00\x3c\xea\x08\x49\xc9\x30\x00\x00\x19\x68\x08\x61\x7c\xb3\ +\x00\x00\x24\x55\x08\xa2\xca\x67\x00\x00\x67\x43\x08\xa3\xe0\x33\ +\x00\x00\x99\x09\x08\xb1\x15\x28\x00\x00\x36\xa1\x08\xb4\x04\x04\ +\x00\x00\xbd\x3f\x08\xd0\x32\xf4\x00\x00\x9d\xec\x08\xd4\xcd\x69\ +\x00\x00\x9e\x5b\x08\xe1\x9b\xbe\x00\x00\x1e\xed\x08\xe1\xc1\xfa\ +\x00\x00\xa0\x74\x08\xef\x4d\x7a\x00\x00\x9b\x56\x09\x20\xda\x24\ +\x00\x00\xc7\xa4\x09\x20\xda\xb4\x00\x00\xc8\x45\x09\x20\xda\xd4\ +\x00\x00\xc6\xe3\x09\x4d\x96\xd9\x00\x00\x2c\x81\x09\x65\xda\x8a\ +\x00\x00\xa4\xef\x09\x68\x0d\x29\x00\x00\xaf\x66\x09\x71\x8d\x25\ +\x00\x00\x08\x24\x09\x75\x23\x14\x00\x00\x91\xd1\x09\x76\xed\x34\ +\x00\x00\x7f\xff\x09\x86\xa6\x05\x00\x00\x2a\x46\x09\x8b\x23\xba\ +\x00\x00\xbb\x70\x09\x9e\xfd\x7e\x00\x00\x80\xf1\x09\xb6\x2a\x63\ +\x00\x00\x3b\x53\x09\xcd\x1c\x55\x00\x00\xbe\x6b\x09\xd2\x21\xea\ +\x00\x00\x76\xd3\x09\xe5\x23\x0e\x00\x00\x70\xe3\x09\xec\x2b\x45\ +\x00\x00\x0e\x4d\x09\xef\x33\xa3\x00\x00\x1c\x04\x09\xf0\x1f\x6e\ +\x00\x00\x03\x7a\x09\xfd\x45\x1a\x00\x00\xb6\x8d\x0a\x09\xc1\x7a\ +\x00\x00\xb9\x8a\x0a\x28\x9a\x65\x00\x00\x64\x4b\x0a\x28\x9a\x67\ +\x00\x00\x64\x90\x0a\x28\x9a\x69\x00\x00\x64\xd5\x0a\x2d\xbe\xe4\ +\x00\x00\x38\x05\x0a\x35\xa9\xfa\x00\x00\xa9\x96\x0a\x3f\x27\x74\ +\x00\x00\x9a\xee\x0a\x40\xa1\xe3\x00\x00\x34\x43\x0a\x49\xa5\x4a\ +\x00\x00\xc3\xa1\x0a\x60\xe0\x15\x00\x00\x2d\x95\x0a\x60\xe0\x17\ +\x00\x00\x2d\xf0\x0a\x60\xe0\x19\x00\x00\x2e\x4b\x0a\x65\x9b\xea\ +\x00\x00\xb3\x78\x0a\x78\x05\x80\x00\x00\x01\x59\x0a\x7f\x8f\x65\ +\x00\x00\x48\x84\x0a\x81\xe4\x23\x00\x00\x4e\xa1\x0a\x86\x10\x44\ +\x00\x00\x13\x2c\x0a\x98\x86\x18\x00\x00\x31\xaa\x0a\x99\x5c\xaa\ +\x00\x00\xbb\xca\x0a\xa8\x16\x95\x00\x00\x15\xdc\x0a\xa8\x16\x95\ +\x00\x00\xbd\x02\x0a\xa9\x89\xec\x00\x00\x58\x4e\x0a\xc8\x5c\x59\ +\x00\x00\x12\x0d\x0a\xd0\x50\xb8\x00\x00\x90\xb2\x0a\xd0\xe6\xf5\ +\x00\x00\x1a\xe7\x0a\xd6\xf1\xfa\x00\x00\x9d\x65\x0a\xeb\x91\x88\ +\x00\x00\x7f\x52\x0b\x07\x78\x8a\x00\x00\xa4\x50\x0b\x1b\xe0\x73\ +\x00\x00\x68\x72\x0b\x24\x9d\xb4\x00\x00\x69\x63\x0b\x24\xc5\xc9\ +\x00\x00\x16\x5c\x0b\x26\x7e\x0e\x00\x00\x9a\x08\x0b\x2b\x50\xfa\ +\x00\x00\xa7\xd4\x0b\x2d\xb3\xf9\x00\x00\x85\x84\x0b\x37\x73\x69\ +\x00\x00\xc5\x6b\x0b\x40\x40\x3e\x00\x00\x5a\x1a\x0b\x43\xcd\x19\ +\x00\x00\x58\xce\x0b\x4f\x98\xba\x00\x00\xa5\xde\x0b\x66\x28\xd2\ +\x00\x00\x7d\xc6\x0b\x88\xe0\x07\x00\x00\x0c\xd2\x0b\x94\x44\xc5\ +\x00\x00\x38\x7e\x0b\x98\x12\xaa\x00\x00\xa2\x7c\x0b\xa0\x84\x94\ +\x00\x00\x04\x65\x0b\xb3\x46\x6a\x00\x00\x98\x92\x0b\xc2\x99\x6a\ +\x00\x00\xa3\x85\x0b\xd3\x27\xae\x00\x00\x05\x70\x0b\xd4\x7e\x9e\ +\x00\x00\x0d\x09\x0b\xf5\xee\x53\x00\x00\xb2\xfd\x0c\x06\x50\x2e\ +\x00\x00\x0f\x22\x0c\x19\xfa\x99\x00\x00\x9e\xe9\x0c\x21\x0a\x83\ +\x00\x00\x97\x3d\x0c\x28\x9b\x45\x00\x00\x91\x36\x0c\x31\x7e\x4a\ +\x00\x00\xb7\x3f\x0c\x38\x4d\xe5\x00\x00\x09\x22\x0c\x3a\x16\xd0\ +\x00\x00\x1d\xb0\x0c\x5a\xc0\xc8\x00\x00\x95\x30\x0c\x6e\x87\xf5\ +\x00\x00\x28\xdc\x0c\x7c\xe0\xa6\x00\x00\x22\xd8\x0c\x80\x3b\x33\ +\x00\x00\x9d\x03\x0c\x91\xa0\x7a\x00\x00\xc2\xd1\x0c\x96\x90\x59\ +\x00\x00\x59\x41\x0c\xbe\xa7\x4e\x00\x00\x50\x0b\x0c\xca\xdd\xfa\ +\x00\x00\xc1\x2f\x0c\xd6\xef\x12\x00\x00\x35\x9d\x0c\xde\x99\x49\ +\x00\x00\x85\xd4\x0c\xe1\x21\x02\x00\x00\x63\x54\x0c\xe2\x77\x73\ +\x00\x00\x88\x39\x0c\xf0\xde\xaa\x00\x00\xa6\x61\x0d\x1c\xf6\xee\ +\x00\x00\x33\x12\x0d\x3a\x6c\xba\x00\x00\xb7\x9b\x0d\x45\xe2\x6a\ +\x00\x00\xbf\xd5\x0d\x59\xa1\x45\x00\x00\x9c\x17\x0d\x5a\xad\x33\ +\x00\x00\x93\xde\x0d\x5e\xe7\x6e\x00\x00\x2e\xa6\x0d\x64\xa5\xd9\ +\x00\x00\x75\x10\x0d\x6d\xf8\xf4\x00\x00\x09\xe7\x0d\x74\xdd\x52\ +\x00\x00\x1c\xf5\x0d\x76\xb5\x92\x00\x00\x33\x66\x0d\x9b\xec\xc9\ +\x00\x00\x6c\xad\x0d\xa5\xd9\x94\x00\x00\x32\xb1\x0d\xa6\xda\xa4\ +\x00\x00\x5b\x39\x0d\xa7\xb9\xc2\x00\x00\x1d\x42\x0d\xc6\xc6\x2a\ +\x00\x00\xba\x97\x0d\xf2\x39\xba\x00\x00\xaa\x4d\x0e\x1a\x1d\xc3\ +\x00\x00\x56\x30\x0e\x29\x94\x64\x00\x00\x44\xa0\x0e\x2b\x04\x15\ +\x00\x00\x99\x8b\x0e\x2c\xe4\x2a\x00\x00\xbf\x64\x0e\x4e\xcc\xc5\ +\x00\x00\x0b\x36\x0e\x6f\x9a\x1a\x00\x00\xc1\xb5\x0e\x7b\x7a\x2c\ +\x00\x00\x39\x96\x0e\x8f\x6a\x37\x00\x00\x3e\x42\x0e\x91\x65\xf5\ +\x00\x00\x1e\x63\x0e\xca\xd7\x34\x00\x00\x26\x27\x0e\xcd\x1c\x55\ +\x00\x00\xbe\xbe\x0e\xcd\x1c\x65\x00\x00\xbf\x11\x0e\xcd\x5b\x59\ +\x00\x00\x60\x58\x0e\xea\xe5\x03\x00\x00\x8e\x91\x0e\xed\xe1\xf9\ +\x00\x00\x5d\x3f\x0f\x07\x8d\xe3\x00\x00\x8f\x33\x0f\x0b\x10\x53\ +\x00\x00\x5b\xb5\x0f\x17\x82\x4e\x00\x00\x00\xfd\x0f\x1f\x8d\xa5\ +\x00\x00\x99\x45\x0f\x4f\x75\x3a\x00\x00\xc8\xab\x0f\x5f\xca\xd5\ +\x00\x00\x39\x01\x0f\x77\xc3\xb4\x00\x00\x86\xb2\x0f\x89\x0b\xbe\ +\x00\x00\x5d\x99\x0f\x8f\xa8\xa7\x00\x00\x1c\xa8\x0f\x98\x0a\x39\ +\x00\x00\xc4\xc5\x0f\x9e\xec\xa0\x00\x00\x15\x11\x0f\xbf\x87\xa3\ +\x00\x00\xb0\x49\x0f\xcd\xce\x95\x00\x00\x3d\xc8\x0f\xdf\x21\x05\ +\x00\x00\x2a\xf1\x0f\xf6\x06\x1e\x00\x00\x26\x8f\x0f\xf6\x29\x0a\ +\x00\x00\x93\x9a\x0f\xfb\x5f\xae\x00\x00\x9a\x54\x69\x00\x00\xc9\ +\x49\x03\x00\x00\x00\x1c\x04\x14\x04\x3e\x04\x31\x04\x30\x04\x32\ +\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\ +\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x41\x64\x64\x20\ +\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\ +\x41\x64\x64\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x6a\x04\x14\ +\x04\x3e\x04\x31\x04\x30\x04\x32\x04\x3b\x04\x4f\x04\x35\x04\x42\ +\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x43\x00\x20\x04\x3a\ +\x00\x20\x04\x41\x04\x43\x04\x49\x04\x35\x04\x41\x04\x42\x04\x32\ +\x04\x43\x04\x4e\x04\x49\x04\x35\x04\x39\x00\x20\x04\x1d\x04\x30\ +\x04\x3f\x04\x40\x04\x30\x04\x32\x04\x3b\x04\x4f\x04\x4e\x04\x49\ +\x04\x35\x04\x39\x00\x2f\x00\x42\x00\x2d\x04\x41\x04\x3f\x04\x3b\ +\x04\x30\x04\x39\x04\x3d\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x28\x41\x64\x64\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x74\ +\x6f\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x77\x69\ +\x72\x65\x2f\x62\x73\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x0e\x44\ +\x72\x61\x66\x74\x5f\x41\x64\x64\x50\x6f\x69\x6e\x74\x01\x03\x00\ +\x00\x00\x28\x04\x14\x04\x3e\x04\x31\x04\x30\x04\x32\x04\x38\x04\ +\x42\x04\x4c\x00\x20\x04\x32\x00\x20\x04\x33\x04\x40\x04\x43\x04\ +\x3f\x04\x3f\x04\x43\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0f\x41\x64\x64\x20\x74\x6f\x20\x67\x72\x6f\x75\ +\x70\x2e\x2e\x2e\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\ +\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x66\x04\ +\x14\x04\x3e\x04\x31\x04\x30\x04\x32\x04\x3b\x04\x4f\x04\x35\x04\ +\x42\x00\x20\x04\x32\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x04\ +\x3d\x04\x4b\x04\x39\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\ +\x3a\x04\x42\x00\x28\x04\x4b\x00\x29\x00\x20\x04\x32\x00\x20\x04\ +\x41\x04\x43\x04\x49\x04\x35\x04\x41\x04\x42\x04\x32\x04\x43\x04\ +\x4e\x04\x49\x04\x43\x04\x4e\x00\x20\x04\x33\x04\x40\x04\x43\x04\ +\x3f\x04\x3f\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x41\ +\x64\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ +\x20\x6f\x62\x6a\x65\x63\x74\x28\x73\x29\x20\x74\x6f\x20\x61\x6e\ +\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x67\x72\x6f\x75\x70\x07\ +\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x54\x6f\x47\ +\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x7a\x04\x1f\x04\x40\x04\x38\ +\x04\x3c\x04\x35\x04\x3d\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x42\ +\x04\x35\x04\x3a\x04\x43\x04\x49\x04\x43\x04\x4e\x00\x20\x04\x48\ +\x04\x38\x04\x40\x04\x38\x04\x3d\x04\x43\x00\x20\x04\x3b\x04\x38\ +\x04\x3d\x04\x38\x04\x38\x00\x20\x04\x38\x00\x20\x04\x46\x04\x32\ +\x04\x35\x04\x42\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x32\ +\x04\x4b\x04\x34\x04\x35\x04\x3b\x04\x35\x04\x3d\x04\x3d\x04\x4b\ +\x04\x45\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\ +\x04\x3e\x04\x32\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x41\x70\ +\x70\x6c\x69\x65\x73\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\ +\x6e\x65\x20\x77\x69\x64\x74\x68\x20\x61\x6e\x64\x20\x63\x6f\x6c\ +\x6f\x72\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\ +\x5f\x41\x70\x70\x6c\x79\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\ +\x2e\x04\x1f\x04\x40\x04\x38\x04\x3c\x04\x35\x04\x3d\x04\x38\x04\ +\x42\x04\x4c\x00\x20\x04\x42\x04\x35\x04\x3a\x04\x43\x04\x49\x04\ +\x38\x04\x39\x00\x20\x04\x41\x04\x42\x04\x38\x04\x3b\x04\x4c\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x13\x41\x70\x70\x6c\x79\x20\x43\ +\x75\x72\x72\x65\x6e\x74\x20\x53\x74\x79\x6c\x65\x07\x00\x00\x00\ +\x10\x44\x72\x61\x66\x74\x5f\x41\x70\x70\x6c\x79\x53\x74\x79\x6c\ +\x65\x01\x03\x00\x00\x00\x08\x04\x14\x04\x43\x04\x33\x04\x30\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\x72\x63\x07\x00\x00\x00\ +\x09\x44\x72\x61\x66\x74\x5f\x41\x72\x63\x01\x03\x00\x00\x00\x6e\ +\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x42\x04\x4c\x00\x20\ +\x04\x34\x04\x43\x04\x33\x04\x43\x00\x2e\x00\x20\x00\x43\x00\x54\ +\x00\x52\x00\x4c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\ +\x04\x40\x04\x38\x04\x32\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\x2c\ +\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x04\x34\ +\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\x33\x04\x40\x04\x30\x04\x3d\ +\x04\x38\x04\x47\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\x20\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x6e\x20\x61\x72\x63\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\ +\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\ +\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x09\x44\x72\x61\ +\x66\x74\x5f\x41\x72\x63\x01\x03\x00\x00\x00\x0a\x00\x41\x00\x72\ +\x00\x72\x00\x61\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x41\x72\x72\x61\x79\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\ +\x41\x72\x72\x61\x79\x01\x03\x00\x00\x00\x76\x00\x43\x00\x72\x00\ +\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\ +\x70\x00\x6f\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x6f\x00\x72\x00\ +\x20\x00\x72\x00\x65\x00\x63\x00\x74\x00\x61\x00\x6e\x00\x67\x00\ +\x75\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x61\x00\x72\x00\x72\x00\ +\x61\x00\x79\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\ +\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3b\x43\x72\x65\x61\x74\ +\x65\x73\x20\x61\x20\x70\x6f\x6c\x61\x72\x20\x6f\x72\x20\x72\x65\ +\x63\x74\x61\x6e\x67\x75\x6c\x61\x72\x20\x61\x72\x72\x61\x79\x20\ +\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\ +\x5f\x41\x72\x72\x61\x79\x01\x03\x00\x00\x00\x10\x00\x42\x00\x2d\ +\x04\x41\x04\x3f\x04\x3b\x04\x30\x04\x39\x04\x3d\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x08\x42\x2d\x53\x70\x6c\x69\x6e\x65\x07\x00\ +\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x42\x53\x70\x6c\x69\x6e\x65\ +\x01\x03\x00\x00\x00\x8e\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\ +\x04\x35\x04\x42\x00\x20\x04\x3d\x04\x35\x04\x41\x04\x3a\x04\x3e\ +\x04\x3b\x04\x4c\x04\x3a\x04\x3e\x00\x20\x04\x42\x04\x3e\x04\x47\ +\x04\x35\x04\x3a\x00\x20\x04\x12\x00\x2d\x04\x41\x04\x3f\x04\x3b\ +\x04\x30\x04\x39\x04\x3d\x04\x30\x00\x2e\x00\x20\x00\x43\x00\x54\ +\x00\x52\x00\x4c\x00\x20\x00\x2d\x00\x20\x04\x3f\x04\x40\x04\x38\ +\x04\x32\x04\x4f\x04\x37\x04\x30\x04\x42\x04\x4c\x00\x2c\x00\x20\ +\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x2d\x00\x20\ +\x04\x3e\x04\x33\x04\x40\x04\x30\x04\x3d\x04\x38\x04\x47\x04\x38\ +\x04\x42\x04\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\ +\x2d\x70\x6f\x69\x6e\x74\x20\x62\x2d\x73\x70\x6c\x69\x6e\x65\x2e\ +\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\ +\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\ +\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x42\x53\x70\x6c\ +\x69\x6e\x65\x01\x03\x00\x00\x00\x14\x04\x1e\x04\x3a\x04\x40\x04\ +\x43\x04\x36\x04\x3d\x04\x3e\x04\x41\x04\x42\x04\x4c\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x06\x43\x69\x72\x63\x6c\x65\x07\x00\x00\ +\x00\x0c\x44\x72\x61\x66\x74\x5f\x43\x69\x72\x63\x6c\x65\x01\x03\ +\x00\x00\x00\x82\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x42\ +\x04\x4c\x00\x20\x04\x3e\x04\x3a\x04\x40\x04\x43\x04\x36\x04\x3d\ +\x04\x3e\x04\x41\x04\x42\x04\x4c\x00\x2e\x00\x20\x00\x43\x00\x54\ +\x00\x52\x00\x4c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\ +\x04\x40\x04\x38\x04\x32\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\x2c\ +\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\ +\x00\x20\x04\x32\x04\x4b\x04\x31\x04\x3e\x04\x40\x04\x30\x00\x20\ +\x04\x3a\x04\x30\x04\x41\x04\x30\x04\x42\x04\x35\x04\x3b\x04\x4c\ +\x04\x3d\x04\x3e\x04\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3d\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x69\x72\x63\x6c\x65\ +\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\ +\x41\x4c\x54\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x20\x74\x61\ +\x6e\x67\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ +\x00\x0c\x44\x72\x61\x66\x74\x5f\x43\x69\x72\x63\x6c\x65\x01\x03\ +\x00\x00\x00\x0a\x00\x43\x00\x6c\x00\x6f\x00\x6e\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x43\x6c\x6f\x6e\x65\x07\x00\x00\ +\x00\x0b\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\x6e\x65\x01\x03\x00\ +\x00\x00\x3a\x00\x43\x00\x6c\x00\x6f\x00\x6e\x00\x65\x00\x73\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x28\x00\x73\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1d\x43\x6c\x6f\x6e\x65\x73\x20\x74\x68\ +\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x28\x73\x29\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x43\ +\x6c\x6f\x6e\x65\x01\x03\x00\x00\x00\x1c\x04\x17\x04\x30\x04\x3c\ +\x04\x3a\x04\x3d\x04\x43\x04\x42\x04\x4c\x00\x20\x04\x3b\x04\x38\ +\x04\x3d\x04\x38\x04\x4e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\ +\x43\x6c\x6f\x73\x65\x20\x4c\x69\x6e\x65\x07\x00\x00\x00\x0f\x44\ +\x72\x61\x66\x74\x5f\x43\x6c\x6f\x73\x65\x4c\x69\x6e\x65\x01\x03\ +\x00\x00\x00\x2c\x04\x17\x04\x30\x04\x3a\x04\x40\x04\x4b\x04\x42\ +\x04\x4c\x00\x20\x04\x40\x04\x38\x04\x41\x04\x43\x04\x35\x04\x3c\ +\x04\x43\x04\x4e\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x4e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x43\x6c\x6f\x73\x65\x73\ +\x20\x74\x68\x65\x20\x6c\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\x20\ +\x64\x72\x61\x77\x6e\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\ +\x43\x6c\x6f\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x1a\x04\ +\x23\x04\x34\x04\x30\x04\x3b\x04\x38\x04\x42\x04\x4c\x00\x20\x04\ +\x42\x04\x3e\x04\x47\x04\x3a\x04\x43\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0c\x52\x65\x6d\x6f\x76\x65\x20\x50\x6f\x69\x6e\x74\x07\ +\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x44\x65\x6c\x50\x6f\x69\ +\x6e\x74\x01\x03\x00\x00\x00\x72\x04\x23\x04\x34\x04\x30\x04\x3b\ +\x04\x4f\x04\x35\x04\x42\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\ +\x04\x38\x00\x20\x04\x38\x04\x37\x00\x20\x04\x41\x04\x43\x04\x49\ +\x04\x35\x04\x41\x04\x42\x04\x32\x04\x43\x04\x4e\x04\x49\x04\x38\ +\x04\x45\x00\x20\x04\x1d\x04\x30\x04\x3f\x04\x40\x04\x30\x04\x32\ +\x04\x3b\x04\x4f\x04\x4e\x04\x49\x04\x38\x04\x45\x00\x20\x04\x38\ +\x04\x3b\x04\x38\x00\x20\x00\x42\x00\x2d\x04\x41\x04\x3f\x04\x3b\ +\x04\x30\x04\x39\x04\x3d\x04\x3e\x04\x32\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x30\x52\x65\x6d\x6f\x76\x65\x73\x20\x61\x20\x70\x6f\ +\x69\x6e\x74\x20\x66\x72\x6f\x6d\x20\x61\x6e\x20\x65\x78\x69\x73\ +\x74\x69\x6e\x67\x20\x77\x69\x72\x65\x20\x6f\x72\x20\x62\x73\x70\ +\x6c\x69\x6e\x65\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x44\ +\x65\x6c\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\xa4\x04\x21\x04\ +\x3e\x04\x37\x04\x34\x04\x30\x04\x35\x04\x42\x00\x20\x04\x40\x04\ +\x30\x04\x37\x04\x3c\x04\x35\x04\x40\x00\x2e\x00\x20\x00\x43\x00\ +\x54\x00\x52\x00\x4c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\ +\x3f\x04\x40\x04\x38\x04\x32\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\ +\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x04\ +\x34\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\x33\x04\x40\x04\x30\x04\ +\x3d\x04\x38\x04\x47\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\x2c\x00\ +\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\ +\x20\x04\x32\x04\x4b\x04\x31\x04\x3e\x04\x40\x04\x30\x00\x20\x04\ +\x41\x04\x35\x04\x33\x04\x3c\x04\x35\x04\x3d\x04\x42\x04\x30\x00\ +\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4e\x43\x72\x65\x61\x74\ +\x65\x73\x20\x61\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x2e\x20\ +\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\ +\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\ +\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x20\ +\x61\x20\x73\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x0f\x44\x72\ +\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x01\x03\x00\ +\x00\x00\x0c\x04\x20\x04\x30\x04\x37\x04\x3c\x04\x35\x04\x40\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x44\x69\x6d\x65\x6e\x73\x69\ +\x6f\x6e\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x69\x6d\ +\x65\x6e\x73\x69\x6f\x6e\x01\x03\x00\x00\x00\x16\x04\x1f\x04\x35\ +\x04\x40\x04\x35\x04\x41\x04\x42\x04\x40\x04\x3e\x04\x38\x04\x42\ +\x04\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x44\x6f\x77\x6e\ +\x67\x72\x61\x64\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\ +\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x9c\x04\ +\x20\x04\x30\x04\x41\x04\x47\x04\x3b\x04\x35\x04\x3d\x04\x38\x04\ +\x42\x04\x4c\x00\x20\x04\x32\x04\x4b\x04\x31\x04\x40\x04\x30\x04\ +\x3d\x04\x3d\x04\x4b\x04\x35\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\ +\x35\x04\x3a\x04\x42\x04\x4b\x00\x20\x04\x3d\x04\x30\x00\x20\x04\ +\x31\x04\x3e\x04\x3b\x04\x35\x04\x35\x00\x20\x04\x3f\x04\x40\x04\ +\x3e\x04\x41\x04\x42\x04\x4b\x04\x35\x00\x20\x04\x3e\x04\x31\x04\ +\x4a\x04\x35\x04\x3a\x04\x42\x04\x4b\x00\x2c\x00\x20\x04\x38\x04\ +\x3b\x04\x38\x00\x20\x04\x32\x04\x4b\x04\x47\x04\x35\x04\x41\x04\ +\x42\x04\x4c\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\x35\x04\x40\x04\ +\x45\x04\x3d\x04\x3e\x04\x41\x04\x42\x04\x38\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x45\x45\x78\x70\x6c\x6f\x64\x65\x73\x20\x74\x68\ +\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x69\x6e\x74\x6f\x20\x73\x69\x6d\x70\x6c\x65\x72\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x2c\x20\x6f\x72\x20\x73\x75\x62\x74\ +\x72\x61\x63\x74\x20\x66\x61\x63\x65\x73\x07\x00\x00\x00\x0f\x44\ +\x72\x61\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\x03\ +\x00\x00\x00\x1e\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\x00\x63\ +\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x44\x72\x61\x66\ +\x74\x20\x74\x6f\x20\x53\x6b\x65\x74\x63\x68\x07\x00\x00\x00\x12\ +\x44\x72\x61\x66\x74\x5f\x44\x72\x61\x66\x74\x32\x53\x6b\x65\x74\ +\x63\x68\x01\x03\x00\x00\x00\x0e\x04\x20\x04\x38\x04\x41\x04\x43\ +\x04\x3d\x04\x3e\x04\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ +\x44\x72\x61\x77\x69\x6e\x67\x07\x00\x00\x00\x0d\x44\x72\x61\x66\ +\x74\x5f\x44\x72\x61\x77\x69\x6e\x67\x01\x03\x00\x00\x00\x56\x04\ +\x1f\x04\x3e\x04\x3c\x04\x35\x04\x49\x04\x30\x04\x35\x04\x42\x00\ +\x20\x04\x32\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3d\x04\ +\x4b\x04\x35\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\ +\x42\x04\x4b\x00\x20\x04\x3d\x04\x30\x00\x20\x04\x3b\x04\x38\x04\ +\x41\x04\x42\x00\x20\x04\x47\x04\x35\x04\x40\x04\x42\x04\x35\x04\ +\x36\x04\x30\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x50\ +\x75\x74\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x6f\x6e\x20\x61\x20\x44\x72\ +\x61\x77\x69\x6e\x67\x20\x73\x68\x65\x65\x74\x2e\x07\x00\x00\x00\ +\x0d\x44\x72\x61\x66\x74\x5f\x44\x72\x61\x77\x69\x6e\x67\x01\x03\ +\x00\x00\x00\x0c\x04\x1f\x04\x40\x04\x30\x04\x32\x04\x3a\x04\x30\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\ +\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\ +\x00\x00\x3a\x04\x20\x04\x35\x04\x34\x04\x30\x04\x3a\x04\x42\x04\ +\x38\x04\x40\x04\x3e\x04\x32\x04\x30\x04\x42\x04\x4c\x00\x20\x04\ +\x30\x04\x3a\x04\x42\x04\x38\x04\x32\x04\x3d\x04\x4b\x04\x39\x00\ +\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x45\x64\x69\x74\x73\x20\x74\x68\x65\ +\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\ +\x00\x00\x1e\x04\x17\x04\x30\x04\x3a\x04\x3e\x04\x3d\x04\x47\x04\ +\x38\x04\x42\x04\x4c\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\ +\x4e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x46\x69\x6e\x69\x73\ +\x68\x20\x6c\x69\x6e\x65\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\ +\x5f\x46\x69\x6e\x69\x73\x68\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\ +\x40\x04\x17\x04\x30\x04\x3a\x04\x3e\x04\x3d\x04\x47\x04\x38\x04\ +\x42\x04\x4c\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x4e\x00\ +\x20\x04\x31\x04\x35\x04\x37\x00\x20\x04\x35\x04\x35\x00\x20\x04\ +\x37\x04\x30\x04\x3a\x04\x40\x04\x4b\x04\x42\x04\x38\x04\x4f\x00\ +\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x46\x69\x6e\x69\x73\ +\x68\x65\x73\x20\x61\x20\x6c\x69\x6e\x65\x20\x77\x69\x74\x68\x6f\ +\x75\x74\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\x07\x00\x00\ +\x00\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\x69\x73\x68\x4c\x69\ +\x6e\x65\x01\x03\x00\x00\x00\xa2\x04\x21\x04\x3e\x04\x37\x04\x34\ +\x04\x30\x04\x35\x04\x42\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\ +\x04\x4e\x00\x20\x04\x3f\x04\x3e\x00\x20\x00\x32\x00\x2d\x04\x3c\ +\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x30\x04\x3c\x00\x2e\ +\x00\x20\x04\x18\x04\x41\x04\x3f\x04\x3e\x04\x3b\x04\x4c\x04\x37\ +\x04\x43\x04\x39\x04\x42\x04\x35\x00\x20\x00\x43\x00\x54\x00\x52\ +\x00\x4c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\x40\ +\x04\x38\x04\x32\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\x2c\x00\x20\ +\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x04\x34\x04\x3b\ +\x04\x4f\x00\x20\x04\x3e\x04\x33\x04\x40\x04\x30\x04\x3d\x04\x38\ +\x04\x47\x04\x35\x04\x3d\x04\x38\x04\x4f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x38\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x32\x2d\ +\x70\x6f\x69\x6e\x74\x20\x6c\x69\x6e\x65\x2e\x20\x43\x54\x52\x4c\ +\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\ +\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\ +\x0a\x44\x72\x61\x66\x74\x5f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\ +\x0a\x04\x1b\x04\x38\x04\x3d\x04\x38\x04\x4f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x0a\x44\x72\ +\x61\x66\x74\x5f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x16\x04\x1f\ +\x04\x35\x04\x40\x04\x35\x04\x3c\x04\x35\x04\x49\x04\x35\x04\x3d\ +\x04\x38\x04\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4d\x6f\ +\x76\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4d\x6f\x76\ +\x65\x01\x03\x00\x00\x00\xdc\x04\x1f\x04\x35\x04\x40\x04\x35\x04\ +\x3c\x04\x35\x04\x49\x04\x30\x04\x35\x04\x42\x00\x20\x04\x32\x04\ +\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3d\x04\x4b\x04\x35\x00\ +\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x4b\x00\ +\x20\x04\x3c\x04\x35\x04\x36\x04\x34\x04\x43\x00\x20\x00\x32\x00\ +\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x30\x04\x3c\x04\x38\x00\ +\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x2c\x00\x20\x04\ +\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x04\ +\x4f\x04\x37\x04\x3a\x04\x38\x00\x2c\x00\x20\x00\x53\x00\x48\x00\ +\x49\x00\x46\x00\x54\x00\x2c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\ +\x20\x04\x3e\x04\x33\x04\x40\x04\x30\x04\x3d\x04\x38\x04\x47\x04\ +\x35\x04\x3d\x04\x38\x04\x4f\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\ +\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3a\x04\x3e\x04\ +\x3f\x04\x38\x04\x40\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x38\x04\ +\x4f\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5a\x4d\x6f\x76\ +\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\ +\x32\x20\x70\x6f\x69\x6e\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\ +\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\ +\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\ +\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0a\x44\x72\x61\x66\ +\x74\x5f\x4d\x6f\x76\x65\x01\x03\x00\x00\x00\x10\x04\x21\x04\x3c\ +\x04\x35\x04\x49\x04\x35\x04\x3d\x04\x38\x04\x35\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\ +\x0c\x44\x72\x61\x66\x74\x5f\x4f\x66\x66\x73\x65\x74\x01\x03\x00\ +\x00\x00\xb6\x04\x21\x04\x3c\x04\x35\x04\x49\x04\x35\x04\x3d\x04\ +\x38\x04\x4f\x00\x20\x04\x30\x04\x3a\x04\x42\x04\x38\x04\x32\x04\ +\x3d\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\ +\x35\x04\x3a\x04\x42\x04\x30\x00\x2e\x00\x43\x00\x54\x00\x52\x00\ +\x4c\x00\x2c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\ +\x40\x04\x38\x04\x32\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\x2c\x00\ +\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x2c\x00\x20\x04\ +\x34\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\x33\x04\x40\x04\x30\x04\ +\x3d\x04\x38\x04\x47\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\x2c\x00\ +\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\ +\x20\x04\x3a\x04\x3e\x04\x3f\x04\x38\x04\x40\x04\x3e\x04\x32\x04\ +\x30\x04\x3d\x04\x38\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x48\x4f\x66\x66\x73\x65\x74\x73\x20\x74\x68\x65\x20\x61\ +\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x2e\x20\x43\x54\ +\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\ +\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\ +\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0c\ +\x44\x72\x61\x66\x74\x5f\x4f\x66\x66\x73\x65\x74\x01\x03\x00\x00\ +\x00\x2c\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\ +\x00\x20\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x16\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x20\x70\x6f\x69\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x50\x6f\x69\x6e\x74\x01\x03\ +\x00\x00\x00\x0a\x04\x22\x04\x3e\x04\x47\x04\x3a\x04\x30\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x50\x6f\x69\x6e\x74\x07\x00\x00\ +\x00\x0b\x44\x72\x61\x66\x74\x5f\x50\x6f\x69\x6e\x74\x01\x03\x00\ +\x00\x00\xb4\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x35\x04\ +\x42\x00\x20\x04\x3f\x04\x40\x04\x30\x04\x32\x04\x38\x04\x3b\x04\ +\x4c\x04\x3d\x04\x4b\x04\x39\x00\x20\x04\x3c\x04\x3d\x04\x3e\x04\ +\x33\x04\x3e\x04\x43\x04\x33\x04\x3e\x04\x3b\x04\x4c\x04\x3d\x04\ +\x38\x04\x3a\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ +\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x37\x04\x30\x04\x34\x04\ +\x30\x04\x3d\x04\x38\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x04\ +\x32\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\x2c\x00\x20\x00\x53\x00\ +\x48\x00\x49\x00\x46\x00\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\ +\x20\x04\x37\x04\x30\x04\x34\x04\x30\x04\x3d\x04\x38\x04\x4f\x00\ +\x20\x04\x3e\x04\x33\x04\x40\x04\x30\x04\x3d\x04\x38\x04\x47\x04\ +\x35\x04\x3d\x04\x38\x04\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x3b\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x72\x65\x67\x75\x6c\ +\x61\x72\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x2e\x20\x43\x54\x52\x4c\ +\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\ +\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\ +\x0d\x44\x72\x61\x66\x74\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\x03\ +\x00\x00\x00\x1a\x04\x1c\x04\x3d\x04\x3e\x04\x33\x04\x3e\x04\x43\ +\x04\x33\x04\x3e\x04\x3b\x04\x4c\x04\x3d\x04\x38\x04\x3a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x07\x50\x6f\x6c\x79\x67\x6f\x6e\x07\ +\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x50\x6f\x6c\x79\x67\x6f\ +\x6e\x01\x03\x00\x00\x00\x7e\x04\x21\x04\x3e\x04\x37\x04\x34\x04\ +\x30\x04\x42\x04\x4c\x00\x20\x04\x3f\x04\x40\x04\x4f\x04\x3c\x04\ +\x3e\x04\x43\x04\x33\x04\x3e\x04\x3b\x04\x4c\x04\x3d\x04\x38\x04\ +\x3a\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\x34\x04\x32\x04\x43\x04\ +\x3c\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x30\x04\x3c\x00\ +\x2e\x00\x20\x04\x1a\x04\x3b\x04\x30\x04\x32\x04\x38\x04\x48\x04\ +\x30\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x04\x34\x04\ +\x3b\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x04\x4f\x04\ +\x37\x04\x3a\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x43\ +\x72\x65\x61\x74\x65\x73\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\x74\ +\x20\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\x2e\x20\x43\x54\x52\x4c\ +\x20\x74\x6f\x20\x73\x6e\x61\x70\x07\x00\x00\x00\x0f\x44\x72\x61\ +\x66\x74\x5f\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\ +\x00\x1a\x04\x1f\x04\x40\x04\x4f\x04\x3c\x04\x3e\x04\x43\x04\x33\ +\x04\x3e\x04\x3b\x04\x4c\x04\x3d\x04\x38\x04\x3a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\ +\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x52\x65\x63\x74\x61\x6e\ +\x67\x6c\x65\x01\x03\x00\x00\x00\x12\x04\x1f\x04\x3e\x04\x32\x04\ +\x35\x04\x40\x04\x3d\x04\x43\x04\x42\x04\x4c\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x06\x52\x6f\x74\x61\x74\x65\x07\x00\x00\x00\x0c\ +\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\x01\x03\x00\x00\ +\x00\xbc\x04\x1f\x04\x3e\x04\x32\x04\x3e\x04\x40\x04\x3e\x04\x42\ +\x00\x20\x04\x32\x04\x4b\x04\x34\x04\x35\x04\x3b\x04\x35\x04\x3d\ +\x04\x3d\x04\x4b\x04\x45\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\ +\x04\x3a\x04\x42\x04\x3e\x04\x32\x00\x2e\x00\x20\x00\x43\x00\x54\ +\x00\x52\x00\x4c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\ +\x04\x40\x04\x38\x04\x32\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\x2c\ +\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x2c\x00\x20\ +\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\x33\x04\x40\x04\x30\ +\x04\x3d\x04\x38\x04\x47\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\x2c\ +\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\ +\x00\x20\x04\x41\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x3d\x04\x38\ +\x04\x4f\x00\x20\x04\x3a\x04\x3e\x04\x3f\x04\x38\x04\x38\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x52\x52\x6f\x74\x61\x74\x65\x73\x20\ +\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ +\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\ +\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x63\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0c\x44\ +\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\x01\x03\x00\x00\x00\ +\x0e\x04\x1c\x04\x30\x04\x41\x04\x48\x04\x42\x04\x30\x04\x31\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x07\x00\ +\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\x01\x03\ +\x00\x00\x00\xe0\x04\x1c\x04\x30\x04\x41\x04\x48\x04\x42\x04\x30\ +\x04\x31\x04\x38\x04\x40\x04\x43\x04\x35\x04\x42\x00\x20\x04\x32\ +\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3d\x04\x4b\x04\x35\ +\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x4b\ +\x00\x20\x04\x38\x04\x37\x00\x20\x04\x31\x04\x30\x04\x37\x04\x3e\ +\x04\x32\x04\x3e\x04\x39\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\ +\x04\x38\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x2c\ +\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\ +\x04\x32\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\x2c\x00\x20\x00\x53\ +\x00\x48\x00\x49\x00\x46\x00\x54\x00\x2c\x00\x20\x04\x34\x04\x3b\ +\x04\x4f\x00\x20\x04\x3e\x04\x33\x04\x40\x04\x30\x04\x3d\x04\x38\ +\x04\x47\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\x2c\x00\x20\x00\x41\ +\x00\x4c\x00\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3a\ +\x04\x3e\x04\x3f\x04\x38\x04\x40\x04\x3e\x04\x32\x04\x30\x04\x3d\ +\x04\x38\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5c\x53\x63\ +\x61\x6c\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x72\x6f\x6d\x20\x61\ +\x20\x62\x61\x73\x65\x20\x70\x6f\x69\x6e\x74\x2e\x20\x43\x54\x52\ +\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\ +\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\ +\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0b\x44\ +\x72\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\x1c\ +\x04\x12\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x42\x04\x4c\x00\x20\ +\x04\x33\x04\x40\x04\x43\x04\x3f\x04\x3f\x04\x43\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x53\x65\x6c\x65\x63\x74\x20\x67\x72\x6f\ +\x75\x70\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\ +\x65\x63\x74\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x6e\x00\x53\ +\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\ +\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x73\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x61\x00\x6d\x00\x65\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x73\ +\x00\x20\x00\x61\x00\x73\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x37\x53\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\ +\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x74\x68\x20\x74\ +\x68\x65\x20\x73\x61\x6d\x65\x20\x70\x61\x72\x65\x6e\x74\x73\x20\ +\x61\x73\x20\x74\x68\x69\x73\x20\x67\x72\x6f\x75\x70\x07\x00\x00\ +\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x47\x72\ +\x6f\x75\x70\x01\x03\x00\x00\x00\x62\x04\x12\x04\x4b\x04\x31\x04\ +\x35\x04\x40\x04\x38\x04\x42\x04\x35\x00\x20\x04\x40\x04\x30\x04\ +\x31\x04\x3e\x04\x47\x04\x43\x04\x4e\x00\x20\x04\x3f\x04\x3b\x04\ +\x3e\x04\x41\x04\x3a\x04\x3e\x04\x41\x04\x42\x04\x4c\x00\x20\x04\ +\x34\x04\x3b\x04\x4f\x00\x20\x04\x41\x04\x3e\x04\x37\x04\x34\x04\ +\x30\x04\x3d\x04\x38\x04\x4f\x00\x20\x04\x33\x04\x35\x04\x3e\x04\ +\x3c\x04\x35\x04\x42\x04\x40\x04\x38\x04\x38\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2c\x53\x65\x6c\x65\x63\x74\x20\x61\x20\x77\x6f\ +\x72\x6b\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x20\x66\x6f\x72\x20\ +\x67\x65\x6f\x6d\x65\x74\x72\x79\x20\x63\x72\x65\x61\x74\x69\x6f\ +\x6e\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\ +\x63\x74\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x1e\x04\x12\x04\ +\x4b\x04\x31\x04\x3e\x04\x40\x00\x20\x04\x3f\x04\x3b\x04\x3e\x04\ +\x41\x04\x3a\x04\x3e\x04\x41\x04\x42\x04\x38\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0b\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\ +\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\ +\x74\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x70\x00\x43\x00\x6f\ +\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x20\x00\x62\x00\x69\ +\x00\x64\x00\x69\x00\x72\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x61\x00\x6c\x00\x6c\x00\x79\x00\x20\x00\x62\x00\x65\ +\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x44\x00\x72\ +\x00\x61\x00\x66\x00\x74\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\ +\x00\x53\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x38\x43\x6f\x6e\x76\x65\x72\x74\x20\x62\x69\ +\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x61\x6c\x6c\x79\x20\x62\x65\ +\x74\x77\x65\x65\x6e\x20\x44\x72\x61\x66\x74\x20\x61\x6e\x64\x20\ +\x53\x6b\x65\x74\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ +\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x61\x70\x65\x32\x44\ +\x56\x69\x65\x77\x01\x03\x00\x00\x00\x54\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x53\x00\x68\x00\x61\ +\x00\x70\x00\x65\x00\x20\x00\x32\x00\x44\x00\x20\x00\x76\x00\x69\ +\x00\x65\x00\x77\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x73\ +\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x2a\x43\x72\x65\x61\x74\x65\x73\x20\ +\x53\x68\x61\x70\x65\x20\x32\x44\x20\x76\x69\x65\x77\x73\x20\x6f\ +\x66\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x61\ +\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\x1a\x00\x32\ +\x00\x44\x00\x20\x04\x32\x04\x38\x04\x34\x00\x20\x04\x44\x04\x38\ +\x04\x33\x04\x43\x04\x40\x04\x4b\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x53\x68\x61\x70\x65\x20\x32\x44\x20\x76\x69\x65\x77\x07\ +\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x61\x70\x65\x32\ +\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\x1a\x00\x53\x00\x68\x00\ +\x6f\x00\x77\x00\x20\x00\x53\x00\x6e\x00\x61\x00\x70\x00\x20\x00\ +\x42\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\ +\x68\x6f\x77\x20\x53\x6e\x61\x70\x20\x42\x61\x72\x07\x00\x00\x00\ +\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x6f\x77\x53\x6e\x61\x70\x42\ +\x61\x72\x01\x03\x00\x00\x00\x30\x00\x53\x00\x68\x00\x6f\x00\x77\ +\x00\x73\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\ +\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x74\x00\x6f\x00\x6f\ +\x00\x6c\x00\x62\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x18\x53\x68\x6f\x77\x73\x20\x44\x72\x61\x66\x74\x20\x73\x6e\ +\x61\x70\x20\x74\x6f\x6f\x6c\x62\x61\x72\x07\x00\x00\x00\x11\x44\ +\x72\x61\x66\x74\x5f\x53\x68\x6f\x77\x53\x6e\x61\x70\x42\x61\x72\ +\x01\x03\x00\x00\x00\x44\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\ +\x04\x42\x04\x4c\x00\x20\x04\x3d\x04\x30\x04\x34\x04\x3f\x04\x38\ +\x04\x41\x04\x4c\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\ +\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\ +\x04\x32\x04\x4f\x04\x37\x04\x3a\x04\x38\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x23\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\ +\x6e\x6e\x6f\x74\x61\x74\x69\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\ +\x74\x6f\x20\x73\x6e\x61\x70\x07\x00\x00\x00\x0a\x44\x72\x61\x66\ +\x74\x5f\x54\x65\x78\x74\x01\x03\x00\x00\x00\x0a\x04\x22\x04\x35\ +\x04\x3a\x04\x41\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x54\x65\x78\x74\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x54\ +\x65\x78\x74\x01\x03\x00\x00\x00\x42\x04\x1f\x04\x35\x04\x40\x04\ +\x35\x04\x3a\x04\x3b\x04\x4e\x04\x47\x04\x38\x04\x42\x04\x4c\x00\ +\x20\x04\x40\x04\x35\x04\x36\x04\x38\x04\x3c\x00\x20\x04\x3a\x04\ +\x3e\x04\x3d\x04\x41\x04\x42\x04\x40\x04\x43\x04\x38\x04\x40\x04\ +\x3e\x04\x32\x04\x30\x04\x3d\x04\x38\x04\x4f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x17\x54\x6f\x67\x67\x6c\x65\x20\x63\x6f\x6e\x73\ +\x74\x72\x75\x63\x69\x6f\x6e\x20\x4d\x6f\x64\x65\x07\x00\x00\x00\ +\x1c\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\ +\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x4d\x6f\x64\x65\x01\x03\x00\ +\x00\x00\x76\x04\x1f\x04\x35\x04\x40\x04\x35\x04\x3a\x04\x3b\x04\ +\x4e\x04\x47\x04\x35\x04\x3d\x04\x38\x04\x35\x00\x20\x04\x40\x04\ +\x35\x04\x36\x04\x38\x04\x3c\x04\x30\x00\x20\x04\x3a\x04\x3e\x04\ +\x3d\x04\x41\x04\x42\x04\x40\x04\x43\x04\x38\x04\x40\x04\x3e\x04\ +\x32\x04\x30\x04\x3d\x04\x38\x04\x4f\x00\x20\x04\x34\x04\x3b\x04\ +\x4f\x00\x20\x04\x41\x04\x3b\x04\x35\x04\x34\x04\x43\x04\x4e\x04\ +\x49\x04\x38\x04\x45\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\ +\x3a\x04\x42\x04\x3e\x04\x32\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2f\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\x65\x20\x43\ +\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x65\ +\x20\x66\x6f\x72\x20\x6e\x65\x78\x74\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x2e\x07\x00\x00\x00\x1c\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\ +\x67\x6c\x65\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x4d\ +\x6f\x64\x65\x01\x03\x00\x00\x00\x38\x04\x1f\x04\x35\x04\x40\x04\ +\x35\x04\x3a\x04\x3b\x04\x4e\x04\x47\x04\x38\x04\x42\x04\x4c\x00\ +\x20\x04\x40\x04\x35\x04\x36\x04\x38\x04\x3c\x04\x30\x00\x20\x04\ +\x3f\x04\x40\x04\x3e\x04\x34\x04\x3b\x04\x35\x04\x3d\x04\x38\x04\ +\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x6f\x67\x67\x6c\ +\x65\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x20\x4d\x6f\x64\x65\x07\ +\x00\x00\x00\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\ +\x43\x6f\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\x01\x03\x00\x00\ +\x00\x68\x04\x1f\x04\x35\x04\x40\x04\x35\x04\x3a\x04\x3b\x04\x4e\ +\x04\x47\x04\x35\x04\x3d\x04\x38\x04\x35\x00\x20\x04\x40\x04\x35\ +\x04\x36\x04\x38\x04\x3c\x04\x30\x00\x20\x04\x3f\x04\x40\x04\x3e\ +\x04\x34\x04\x3b\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\x20\x04\x34\ +\x04\x3b\x04\x4f\x00\x20\x04\x41\x04\x3b\x04\x35\x04\x34\x04\x43\ +\x04\x4e\x04\x49\x04\x35\x04\x39\x00\x20\x04\x3a\x04\x3e\x04\x3c\ +\x04\x30\x04\x3d\x04\x34\x04\x4b\x00\x2e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2c\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\x65\x20\ +\x43\x6f\x6e\x74\x69\x6e\x75\x65\x20\x4d\x6f\x64\x65\x20\x66\x6f\ +\x72\x20\x6e\x65\x78\x74\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x2e\ +\x07\x00\x00\x00\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\ +\x65\x43\x6f\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\x01\x03\x00\ +\x00\x00\x9e\x04\x1f\x04\x35\x04\x40\x04\x35\x04\x3a\x04\x3b\x04\ +\x4e\x04\x47\x04\x30\x04\x35\x04\x42\x00\x20\x04\x40\x04\x35\x04\ +\x36\x04\x38\x04\x3c\x00\x20\x04\x3e\x04\x42\x04\x3e\x04\x31\x04\ +\x40\x04\x30\x04\x36\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\x20\x04\ +\x32\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3d\x04\x4b\x04\ +\x45\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\ +\x3e\x04\x32\x00\x20\x04\x3c\x04\x35\x04\x36\x04\x34\x04\x43\x00\ +\x20\x04\x3a\x04\x30\x04\x40\x04\x3a\x04\x30\x04\x41\x04\x3d\x04\ +\x4b\x04\x3c\x00\x20\x04\x38\x00\x20\x04\x44\x04\x3b\x04\x4d\x04\ +\x42\x04\x3b\x04\x30\x04\x39\x04\x3d\x04\x3e\x04\x32\x04\x4b\x04\ +\x3c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x46\x53\x77\x61\x70\x73\ +\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x6d\x6f\x64\x65\x20\x6f\x66\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x77\x69\x72\x65\x66\x72\ +\x61\x6d\x65\x20\x61\x6e\x64\x20\x66\x6c\x61\x74\x6c\x69\x6e\x65\ +\x73\x07\x00\x00\x00\x17\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\ +\x6c\x65\x44\x69\x73\x70\x6c\x61\x79\x4d\x6f\x64\x65\x01\x03\x00\ +\x00\x00\x3a\x04\x1f\x04\x35\x04\x40\x04\x35\x04\x3a\x04\x3b\x04\ +\x4e\x04\x47\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x40\x04\x35\x04\ +\x36\x04\x38\x04\x3c\x00\x20\x04\x3e\x04\x42\x04\x3e\x04\x31\x04\ +\x40\x04\x30\x04\x36\x04\x35\x04\x3d\x04\x38\x04\x4f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x13\x54\x6f\x67\x67\x6c\x65\x20\x64\x69\ +\x73\x70\x6c\x61\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x17\x44\ +\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x44\x69\x73\x70\x6c\ +\x61\x79\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x22\x04\x1f\x04\x35\ +\x04\x40\x04\x35\x04\x3a\x04\x3b\x04\x4e\x04\x47\x04\x38\x04\x42\ +\x04\x4c\x00\x20\x04\x41\x04\x35\x04\x42\x04\x3a\x04\x43\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0b\x54\x6f\x67\x67\x6c\x65\x20\x47\ +\x72\x69\x64\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x54\x6f\ +\x67\x67\x6c\x65\x47\x72\x69\x64\x01\x03\x00\x00\x00\x38\x00\x54\ +\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\ +\x00\x20\x00\x67\x00\x69\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x2f\ +\x00\x6f\x00\x66\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\ +\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\x65\x20\x44\x72\x61\x66\ +\x74\x20\x67\x69\x64\x20\x6f\x6e\x2f\x6f\x66\x66\x07\x00\x00\x00\ +\x10\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x47\x72\x69\ +\x64\x01\x03\x00\x00\x00\x28\x04\x1f\x04\x35\x04\x40\x04\x35\x04\ +\x3a\x04\x3b\x04\x4e\x04\x47\x04\x38\x04\x42\x04\x4c\x00\x20\x04\ +\x3f\x04\x40\x04\x38\x04\x32\x04\x4f\x04\x37\x04\x3a\x04\x43\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x54\x6f\x67\x67\x6c\x65\x20\ +\x73\x6e\x61\x70\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x54\ +\x6f\x67\x67\x6c\x65\x53\x6e\x61\x70\x01\x03\x00\x00\x00\x38\x00\ +\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x73\x00\x20\x00\ +\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x73\x00\x6e\x00\ +\x61\x00\x70\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\x72\x00\ +\x20\x00\x6f\x00\x66\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1c\x54\x6f\x67\x67\x6c\x65\x73\x20\x44\x72\x61\x66\x74\x20\x73\ +\x6e\x61\x70\x20\x6f\x6e\x20\x6f\x72\x20\x6f\x66\x66\x07\x00\x00\ +\x00\x10\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x53\x6e\ +\x61\x70\x01\x03\x00\x00\x00\x0c\x00\x54\x00\x72\x00\x69\x00\x6d\ +\x00\x65\x00\x78\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x54\x72\ +\x69\x6d\x65\x78\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x54\ +\x72\x69\x6d\x65\x78\x01\x03\x00\x00\x01\x28\x04\x1e\x04\x31\x04\ +\x40\x04\x35\x04\x37\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x43\x04\ +\x34\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x42\x04\x4c\x00\x20\x04\ +\x32\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3d\x04\x4b\x04\ +\x39\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x00\ +\x20\x04\x38\x04\x3b\x04\x38\x00\x20\x04\x32\x04\x4b\x04\x34\x04\ +\x30\x04\x32\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x3e\x04\x34\x04\ +\x38\x04\x3d\x04\x3e\x04\x47\x04\x3d\x04\x43\x04\x4e\x00\x20\x04\ +\x33\x04\x40\x04\x30\x04\x3d\x04\x4c\x00\x2e\x00\x20\x00\x43\x00\ +\x54\x00\x52\x00\x4c\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x04\ +\x4f\x04\x37\x04\x3a\x04\x38\x00\x2c\x00\x20\x00\x53\x00\x48\x00\ +\x49\x00\x46\x00\x54\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x04\ +\x4f\x04\x37\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x3a\x00\x20\x04\ +\x42\x04\x35\x04\x3a\x04\x43\x04\x49\x04\x35\x04\x3c\x04\x43\x00\ +\x20\x04\x41\x04\x35\x04\x33\x04\x3c\x04\x35\x04\x3d\x04\x42\x04\ +\x43\x00\x20\x04\x38\x04\x3b\x04\x38\x00\x20\x04\x3d\x04\x3e\x04\ +\x40\x04\x3c\x04\x30\x04\x3b\x04\x4c\x04\x3d\x04\x3e\x00\x2c\x00\ +\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x04\x38\x04\x3d\x04\x32\x04\ +\x35\x04\x40\x04\x42\x04\x38\x04\x40\x04\x3e\x04\x32\x04\x30\x04\ +\x42\x04\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x89\x54\x72\x69\ +\x6d\x73\x20\x6f\x72\x20\x65\x78\x74\x65\x6e\x64\x73\x20\x74\x68\ +\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x2c\x20\x6f\x72\x20\x65\x78\x74\x72\x75\x64\x65\x73\x20\x73\ +\x69\x6e\x67\x6c\x65\x20\x66\x61\x63\x65\x73\x2e\x20\x43\x54\x52\ +\x4c\x20\x73\x6e\x61\x70\x73\x2c\x20\x53\x48\x49\x46\x54\x20\x63\ +\x6f\x6e\x73\x74\x72\x61\x69\x6e\x73\x20\x74\x6f\x20\x63\x75\x72\ +\x72\x65\x6e\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\x72\x20\ +\x74\x6f\x20\x6e\x6f\x72\x6d\x61\x6c\x2c\x20\x41\x4c\x54\x20\x69\ +\x6e\x76\x65\x72\x74\x73\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\ +\x5f\x54\x72\x69\x6d\x65\x78\x01\x03\x00\x00\x00\x34\x04\x1e\x04\ +\x42\x04\x3c\x04\x35\x04\x3d\x04\x38\x04\x42\x04\x4c\x00\x20\x04\ +\x3f\x04\x3e\x04\x41\x04\x3b\x04\x35\x04\x34\x04\x3d\x04\x38\x04\ +\x39\x00\x20\x04\x41\x04\x35\x04\x33\x04\x3c\x04\x35\x04\x3d\x04\ +\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x55\x6e\x64\x6f\x20\ +\x6c\x61\x73\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\ +\x0e\x44\x72\x61\x66\x74\x5f\x55\x6e\x64\x6f\x4c\x69\x6e\x65\x01\ +\x03\x00\x00\x00\x6e\x04\x1e\x04\x42\x04\x3c\x04\x35\x04\x3d\x04\ +\x30\x00\x20\x04\x3f\x04\x3e\x04\x41\x04\x3b\x04\x35\x04\x34\x04\ +\x3d\x04\x35\x04\x33\x04\x3e\x00\x20\x04\x3d\x04\x30\x04\x40\x04\ +\x38\x04\x41\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x3e\x04\ +\x33\x04\x3e\x00\x20\x04\x41\x04\x35\x04\x33\x04\x3c\x04\x35\x04\ +\x3d\x04\x42\x04\x30\x00\x20\x04\x40\x04\x38\x04\x41\x04\x43\x04\ +\x35\x04\x3c\x04\x3e\x04\x39\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\ +\x38\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x55\x6e\x64\ +\x6f\x65\x73\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x64\x72\x61\ +\x77\x6e\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\ +\x65\x20\x6c\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\x20\x64\x72\x61\ +\x77\x6e\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x55\x6e\x64\ +\x6f\x4c\x69\x6e\x65\x01\x03\x00\x00\x01\x08\x04\x1e\x04\x31\x04\ +\x4a\x04\x35\x04\x34\x04\x38\x04\x3d\x04\x38\x04\x42\x04\x4c\x00\ +\x20\x04\x32\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3d\x04\ +\x4b\x04\x35\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\ +\x42\x04\x4b\x00\x20\x04\x32\x00\x20\x04\x3e\x04\x34\x04\x38\x04\ +\x3d\x00\x2c\x00\x20\x04\x38\x04\x3b\x04\x38\x00\x20\x04\x3f\x04\ +\x40\x04\x35\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x37\x04\x3e\x04\ +\x32\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x37\x04\x30\x04\x3c\x04\ +\x3a\x04\x3d\x04\x43\x04\x42\x04\x4b\x04\x35\x00\x20\x04\x3d\x04\ +\x30\x04\x30\x04\x3f\x04\x40\x04\x30\x04\x32\x04\x3b\x04\x4f\x04\ +\x4e\x04\x49\x04\x38\x04\x35\x00\x20\x04\x32\x00\x20\x04\x41\x04\ +\x3a\x04\x40\x04\x43\x04\x33\x04\x3b\x04\x35\x04\x3d\x04\x3d\x04\ +\x4b\x04\x35\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\x35\x04\x40\x04\ +\x45\x04\x3d\x04\x3e\x04\x41\x04\x42\x04\x38\x00\x2c\x00\x20\x04\ +\x38\x04\x3b\x04\x38\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\ +\x34\x04\x38\x04\x3d\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x3f\x04\ +\x3e\x04\x32\x04\x35\x04\x40\x04\x45\x04\x3d\x04\x3e\x04\x41\x04\ +\x42\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x4a\x6f\x69\ +\x6e\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\x6f\x6e\x65\ +\x2c\x20\x6f\x72\x20\x63\x6f\x6e\x76\x65\x72\x74\x73\x20\x63\x6c\ +\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x73\x20\x74\x6f\x20\x66\x69\ +\x6c\x6c\x65\x64\x20\x66\x61\x63\x65\x73\x2c\x20\x6f\x72\x20\x75\ +\x6e\x69\x74\x65\x20\x66\x61\x63\x65\x73\x07\x00\x00\x00\x0d\x44\ +\x72\x61\x66\x74\x5f\x55\x70\x67\x72\x61\x64\x65\x01\x03\x00\x00\ +\x00\x10\x04\x1e\x04\x31\x04\x3d\x04\x3e\x04\x32\x04\x38\x04\x42\ +\x04\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x55\x70\x67\x72\ +\x61\x64\x65\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x55\x70\ +\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x98\x00\x43\x00\x72\x00\ +\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\ +\x6d\x00\x75\x00\x6c\x00\x74\x00\x69\x00\x70\x00\x6c\x00\x65\x00\ +\x2d\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x44\x00\ +\x72\x00\x61\x00\x66\x00\x74\x00\x57\x00\x69\x00\x72\x00\x65\x00\ +\x20\x00\x28\x00\x44\x00\x57\x00\x69\x00\x72\x00\x65\x00\x29\x00\ +\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x74\x00\ +\x6f\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x2c\x00\x20\x00\ +\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\ +\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4c\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\ +\x70\x6f\x69\x6e\x74\x20\x44\x72\x61\x66\x74\x57\x69\x72\x65\x20\ +\x28\x44\x57\x69\x72\x65\x29\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\ +\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\ +\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\x72\ +\x61\x66\x74\x5f\x57\x69\x72\x65\x01\x03\x00\x00\x00\x0a\x00\x44\ +\x00\x57\x00\x69\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x44\x57\x69\x72\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\ +\x74\x5f\x57\x69\x72\x65\x01\x03\x00\x00\x00\x62\x04\x1f\x04\x40\ +\x04\x35\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x37\x04\x3e\x04\x32\ +\x04\x30\x04\x3d\x04\x38\x04\x35\x00\x20\x04\x1d\x04\x30\x04\x3f\ +\x04\x40\x04\x30\x04\x32\x04\x3b\x04\x4f\x04\x4e\x04\x49\x04\x35\ +\x04\x39\x00\x20\x04\x32\x00\x20\x00\x42\x00\x2d\x04\x41\x04\x3f\ +\x04\x3b\x04\x30\x04\x39\x04\x3d\x00\x20\x04\x38\x00\x20\x04\x3d\ +\x04\x30\x04\x3e\x04\x31\x04\x3e\x04\x40\x04\x3e\x04\x42\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x21\x43\x6f\x6e\x76\x65\x72\x74\x73\ +\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x57\x69\x72\x65\x20\x61\x6e\ +\x64\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x13\x44\x72\ +\x61\x66\x74\x5f\x57\x69\x72\x65\x54\x6f\x42\x53\x70\x6c\x69\x6e\ +\x65\x01\x03\x00\x00\x00\x2c\x04\x1d\x04\x30\x04\x3f\x04\x40\x04\ +\x30\x04\x32\x04\x3b\x04\x4f\x04\x4e\x04\x49\x04\x30\x04\x4f\x00\ +\x20\x04\x32\x00\x20\x00\x42\x00\x53\x00\x70\x00\x6c\x00\x69\x00\ +\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x57\x69\x72\ +\x65\x20\x74\x6f\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\ +\x13\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x54\x6f\x42\x53\x70\ +\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x12\x04\x20\x04\x35\x04\x36\ +\x04\x38\x04\x3c\x00\x20\x00\x61\x00\x6c\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x07\x41\x6c\x74\x20\x6d\x6f\x64\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x3e\x00\x41\x00\x6c\x00\x74\x00\x65\x00\x72\x00\ +\x6e\x00\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\x56\x00\x47\x00\ +\x20\x00\x50\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x6e\x00\ +\x73\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x41\x6c\x74\ +\x65\x72\x6e\x61\x74\x65\x20\x53\x56\x47\x20\x50\x61\x74\x74\x65\ +\x72\x6e\x73\x20\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x16\x00\x41\x00\x6c\x00\x77\x00\x61\x00\x79\x00\x73\ +\x00\x20\x00\x73\x00\x68\x00\x6f\x00\x77\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0b\x41\x6c\x77\x61\x79\x73\x20\x73\x68\x6f\x77\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x74\x04\x12\x04\x41\x04\x35\x04\x33\x04\ +\x34\x04\x30\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x04\x4f\x04\ +\x37\x04\x4b\x04\x32\x04\x30\x04\x42\x04\x4c\x04\x41\x04\x4f\x00\ +\x20\x04\x3a\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\ +\x42\x04\x30\x04\x3c\x00\x20\x00\x28\x04\x3e\x04\x42\x04\x3a\x04\ +\x3b\x04\x4e\x04\x47\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x40\x04\ +\x35\x04\x36\x04\x38\x04\x3c\x00\x20\x04\x3f\x04\x40\x04\x38\x04\ +\x32\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2d\x41\x6c\x77\x61\x79\x73\x20\x73\x6e\x61\x70\ +\x20\x74\x6f\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x28\x64\x69\x73\ +\x61\x62\x6c\x65\x20\x73\x6e\x61\x70\x20\x6d\x6f\x64\x20\x6b\x65\ +\x79\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x41\x00\x72\x00\x69\ +\x00\x61\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x72\ +\x69\x61\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x04\x1e\x04\x31\x04\ +\x40\x04\x30\x04\x42\x04\x3d\x04\x4b\x04\x39\x00\x20\x04\x41\x04\ +\x3b\x04\x4d\x04\x48\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x35\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x1e\x04\x1e\x04\x31\x04\x40\x04\x30\x04\x42\ +\x04\x3d\x04\x4b\x04\x39\x00\x20\x04\x41\x04\x3b\x04\x4d\x04\x48\ +\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\ +\x63\x6b\x73\x6c\x61\x73\x68\x20\x37\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x1e\x04\x1e\x04\x31\x04\x40\x04\x30\x04\x42\x04\x3d\x04\x4b\x04\ +\x39\x00\x20\x04\x41\x04\x3b\x04\x4d\x04\x48\x00\x20\x00\x39\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\ +\x73\x68\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x9c\x04\x23\x04\x41\ +\x04\x42\x04\x30\x04\x3d\x04\x3e\x04\x32\x04\x38\x04\x42\x04\x35\ +\x00\x20\x04\x4d\x04\x42\x04\x3e\x04\x42\x00\x20\x04\x44\x04\x3b\ +\x04\x30\x04\x36\x04\x3e\x04\x3a\x00\x2c\x00\x20\x04\x35\x04\x41\ +\x04\x3b\x04\x38\x00\x20\x04\x32\x04\x4b\x00\x20\x04\x45\x04\x3e\ +\x04\x42\x04\x38\x04\x42\x04\x35\x00\x20\x04\x42\x04\x30\x04\x3a\ +\x04\x36\x04\x35\x00\x20\x04\x38\x04\x3c\x04\x3f\x04\x3e\x04\x40\ +\x04\x42\x04\x38\x04\x40\x04\x3e\x04\x32\x04\x30\x04\x42\x04\x4c\ +\x00\x20\x04\x3e\x04\x31\x04\x3b\x04\x30\x04\x41\x04\x42\x04\x38\ +\x00\x20\x00\x28\x00\x33\x00\x44\x00\x20\x04\x33\x04\x40\x04\x30\ +\x04\x3d\x04\x38\x00\x29\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x3f\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\ +\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x68\x65\x20\x61\x72\x65\ +\x61\x73\x20\x28\x33\x44\x20\x66\x61\x63\x65\x73\x29\x20\x74\x6f\ +\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\ +\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\xa0\x04\x1f\x04\x40\x04\x3e\x04\ +\x32\x04\x35\x04\x40\x04\x4c\x04\x42\x04\x35\x00\x20\x04\x4d\x04\ +\x42\x04\x3e\x00\x2c\x00\x20\x04\x35\x04\x41\x04\x3b\x04\x38\x00\ +\x20\x04\x32\x04\x4b\x00\x20\x04\x45\x04\x3e\x04\x42\x04\x38\x04\ +\x42\x04\x35\x00\x20\x04\x3d\x04\x35\x04\x38\x04\x3c\x04\x35\x04\ +\x3d\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4b\x04\x35\x00\ +\x20\x04\x31\x04\x3b\x04\x3e\x04\x3a\x04\x38\x00\x20\x00\x28\x04\ +\x3d\x04\x30\x04\x47\x04\x38\x04\x3d\x04\x30\x04\x4f\x00\x20\x04\ +\x41\x00\x20\x00\x2a\x00\x29\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\ +\x20\x04\x38\x04\x3c\x04\x3f\x04\x3e\x04\x40\x04\x42\x04\x30\x00\ +\x20\x04\x42\x04\x3e\x04\x36\x04\x35\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x53\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\ +\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x68\x65\x20\x6e\x6f\ +\x6e\x2d\x6e\x61\x6d\x65\x64\x20\x62\x6c\x6f\x63\x6b\x73\x20\x28\ +\x62\x65\x67\x69\x6e\x6e\x69\x6e\x67\x20\x77\x69\x74\x68\x20\x61\ +\x20\x2a\x29\x20\x74\x6f\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\ +\x65\x64\x20\x74\x6f\x6f\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x04\x1a\ +\x04\x40\x04\x43\x04\x33\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x35\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0c\x04\x1a\x04\x40\x04\x43\x04\x33\x00\x20\x00\x37\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\ +\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x04\x1a\x04\x40\x04\x43\ +\x04\x33\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\ +\x43\x69\x72\x63\x6c\x65\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x48\ +\x04\x26\x04\x32\x04\x35\x04\x42\x00\x2c\x00\x20\x04\x41\x04\x3e\ +\x04\x3f\x04\x3e\x04\x41\x04\x42\x04\x30\x04\x32\x04\x3b\x04\x35\ +\x04\x3d\x04\x3d\x04\x4b\x04\x39\x00\x20\x04\x41\x00\x20\x04\x48\ +\x04\x38\x04\x40\x04\x38\x04\x3d\x04\x3e\x04\x39\x00\x20\x04\x3b\ +\x04\x38\x04\x3d\x04\x38\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x19\x43\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x65\x64\x20\x74\ +\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x30\x04\x24\x04\x30\x04\x39\x04\x3b\x00\x20\x04\x41\x04\ +\x3e\x04\x3f\x04\x3e\x04\x41\x04\x42\x04\x30\x04\x32\x04\x3b\x04\ +\x35\x04\x3d\x04\x38\x04\x4f\x00\x20\x04\x46\x04\x32\x04\x35\x04\ +\x42\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x43\x6f\x6c\ +\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x22\x04\x20\x04\x35\x04\x36\x04\x38\x04\ +\x3c\x00\x20\x04\x3e\x04\x33\x04\x40\x04\x30\x04\x3d\x04\x38\x04\ +\x47\x04\x35\x04\x3d\x04\x38\x04\x39\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x43\x6f\x6e\x73\x74\x72\x61\x69\x6e\x20\x6d\x6f\x64\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x16\x04\x1a\x04\x3e\x04\x3d\x04\x41\ +\x04\x42\x04\x40\x04\x43\x04\x3a\x04\x42\x04\x3e\x04\x40\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x6f\x6e\x73\x74\x72\x75\x63\ +\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x04\x26\x04\x32\ +\x04\x35\x04\x42\x00\x20\x04\x3a\x04\x3e\x04\x3d\x04\x41\x04\x42\ +\x04\x40\x04\x43\x04\x3a\x04\x46\x04\x38\x04\x38\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x12\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\ +\x6f\x6e\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\ +\x04\x18\x04\x3c\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\x3e\x04\x35\ +\x04\x3a\x04\x42\x04\x38\x04\x40\x04\x43\x04\x4e\x04\x49\x04\x35\ +\x04\x39\x00\x20\x04\x33\x04\x40\x04\x43\x04\x3f\x04\x3f\x04\x4b\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\x6f\x6e\x73\x74\x72\ +\x75\x63\x74\x69\x6f\x6e\x20\x67\x72\x6f\x75\x70\x20\x6e\x61\x6d\ +\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x43\x00\x72\x00\x65\x00\ +\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\x00\ +\x63\x00\x68\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0f\x43\x72\x65\x61\x74\x65\x20\x53\x6b\x65\x74\x63\x68\x65\x73\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x42\x04\x21\x04\x3e\x04\x37\x04\x34\ +\x04\x30\x04\x3d\x04\x38\x04\x35\x00\x20\x04\x3f\x04\x30\x04\x40\ +\x04\x30\x04\x3c\x04\x35\x04\x42\x04\x40\x04\x38\x04\x47\x04\x35\ +\x04\x41\x04\x3a\x04\x38\x04\x45\x00\x20\x04\x3e\x04\x31\x04\x4a\ +\x04\x35\x04\x3a\x04\x42\x04\x3e\x04\x32\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x19\x43\x72\x65\x61\x74\x65\x20\x70\x61\x72\x61\x6d\ +\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x2a\x04\x1f\x04\x30\x04\x40\x04\x30\x04\x3c\x04\ +\x35\x04\x42\x04\x40\x04\x4b\x00\x20\x04\x44\x04\x3e\x04\x40\x04\ +\x3c\x04\x30\x04\x42\x04\x30\x00\x20\x00\x44\x00\x58\x00\x46\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x12\x44\x58\x46\x20\x66\x6f\x72\ +\x6d\x61\x74\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x22\x04\x26\x04\x32\x04\x35\x04\x42\x00\x20\x04\x3f\x04\ +\x3e\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\ +\x3d\x04\x38\x04\x4e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x44\ +\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x4a\x04\x12\x04\x4b\x04\x41\x04\x3e\x04\x42\x04\x30\ +\x00\x20\x04\x42\x04\x35\x04\x3a\x04\x41\x04\x42\x04\x30\x00\x20\ +\x04\x38\x00\x20\x04\x40\x04\x30\x04\x37\x04\x3c\x04\x35\x04\x40\ +\x04\x3e\x04\x32\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\x3c\ +\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x27\x44\x65\x66\x61\x75\x6c\x74\x20\ +\x68\x65\x69\x67\x68\x74\x20\x66\x6f\x72\x20\x74\x65\x78\x74\x73\ +\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x32\x04\x28\x04\x38\x04\x40\x04\x38\x04\ +\x3d\x04\x30\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x38\x00\ +\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\ +\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x11\x44\x65\x66\x61\x75\x6c\x74\x20\x6c\x69\x6e\x65\x77\ +\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x04\x28\x04\x30\ +\x04\x31\x04\x3b\x04\x3e\x04\x3d\x00\x20\x04\x3b\x04\x38\x04\x41\ +\x04\x42\x04\x30\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\x3c\ +\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x16\x44\x65\x66\x61\x75\x6c\x74\x20\ +\x74\x65\x6d\x70\x6c\x61\x74\x65\x20\x73\x68\x65\x65\x74\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x32\x04\x28\x04\x40\x04\x38\x04\x44\x04\x42\ +\x00\x20\x04\x42\x04\x35\x04\x3a\x04\x41\x04\x42\x04\x30\x00\x20\ +\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\x47\ +\x04\x30\x04\x3d\x04\x38\x04\x4e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x11\x44\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x78\x74\x20\x66\ +\x6f\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\x04\x12\x04\x4b\x04\ +\x41\x04\x3e\x04\x42\x04\x30\x00\x20\x04\x42\x04\x35\x04\x3a\x04\ +\x41\x04\x42\x04\x30\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\ +\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x13\x44\x65\x66\x61\x75\x6c\x74\ +\x20\x74\x65\x78\x74\x20\x68\x65\x69\x67\x68\x74\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x3c\x04\x20\x04\x30\x04\x31\x04\x3e\x04\x47\x04\x30\ +\x04\x4f\x00\x20\x04\x3f\x04\x3b\x04\x3e\x04\x41\x04\x3a\x04\x3e\ +\x04\x41\x04\x42\x04\x4c\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\ +\x04\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x44\x65\x66\x61\x75\x6c\ +\x74\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x44\x04\x20\x04\x30\x04\x37\x04\x3c\x04\ +\x35\x04\x40\x04\x4b\x00\x20\x04\x38\x00\x20\x04\x3f\x04\x40\x04\ +\x38\x04\x32\x04\x35\x04\x3b\x04\x35\x04\x33\x04\x38\x04\x38\x00\ +\x20\x04\x41\x04\x42\x04\x38\x04\x3b\x04\x4f\x00\x20\x04\x41\x04\ +\x42\x04\x40\x04\x35\x04\x3b\x04\x3a\x04\x38\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\ +\x26\x20\x4c\x65\x61\x64\x65\x72\x20\x61\x72\x72\x6f\x77\x20\x73\ +\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\x04\x23\x04\x40\ +\x04\x3e\x04\x32\x04\x35\x04\x3d\x04\x4c\x00\x20\x04\x42\x04\x3e\ +\x04\x47\x04\x3d\x04\x3e\x04\x41\x04\x42\x04\x38\x00\x20\x04\x38\ +\x04\x37\x04\x3c\x04\x35\x04\x40\x04\x35\x04\x3d\x04\x38\x04\x4f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x44\x69\x6d\x65\x6e\x73\ +\x69\x6f\x6e\x73\x20\x70\x72\x65\x63\x69\x73\x69\x6f\x6e\x20\x6c\ +\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x04\x22\x04\x3e\ +\x04\x47\x04\x3a\x04\x30\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x44\x6f\x74\x20\x35\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x0e\x04\x22\x04\x3e\x04\x47\x04\x3a\x04\x30\x00\x20\x00\x37\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\x37\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0e\x04\x22\x04\x3e\x04\x47\x04\x3a\x04\x30\ +\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\ +\x74\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x44\x00\x72\x00\ +\x61\x00\x66\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\ +\x72\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6d\x00\x6f\x00\ +\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x44\x72\x61\ +\x66\x74\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x6d\x6f\x64\ +\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x54\x04\x2d\x04\x3a\x04\x41\x04\ +\x3f\x04\x3e\x04\x40\x04\x42\x00\x20\x00\x33\x00\x44\x00\x20\x04\ +\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x3e\x04\x32\x00\ +\x20\x04\x3a\x04\x30\x04\x3a\x00\x20\x04\x3c\x04\x3d\x04\x3e\x04\ +\x33\x04\x3e\x04\x33\x04\x40\x04\x30\x04\x3d\x04\x3d\x04\x3e\x04\ +\x39\x00\x20\x04\x41\x04\x35\x04\x42\x04\x3a\x04\x38\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x24\x45\x78\x70\x6f\x72\x74\x20\x33\x44\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x73\x20\x70\x6f\x6c\x79\ +\x66\x61\x63\x65\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x18\x00\x45\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x20\x00\x53\x00\x74\x00\x79\x00\x6c\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0c\x45\x78\x70\x6f\x72\x74\x20\x53\x74\x79\x6c\ +\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x4e\x04\x12\x04\x4b\x04\x3f\x04\ +\x3e\x04\x3b\x04\x3d\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x37\x04\ +\x30\x04\x3b\x04\x38\x04\x32\x04\x3a\x04\x43\x00\x20\x04\x3e\x04\ +\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x3e\x04\x32\x00\x20\x04\ +\x3f\x04\x3e\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\x47\x04\ +\x30\x04\x3d\x04\x38\x04\x4e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x17\x46\x69\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x79\ +\x20\x64\x65\x66\x61\x75\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\ +\x04\x1e\x04\x41\x04\x3d\x04\x3e\x04\x32\x04\x3d\x04\x4b\x04\x35\ +\x00\x20\x04\x3f\x04\x30\x04\x40\x04\x30\x04\x3c\x04\x35\x04\x42\ +\x04\x40\x04\x4b\x00\x20\x04\x47\x04\x35\x04\x40\x04\x47\x04\x35\ +\x04\x3d\x04\x38\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\ +\x47\x65\x6e\x65\x72\x61\x6c\x20\x44\x72\x61\x66\x74\x20\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x04\x1e\ +\x04\x31\x04\x49\x04\x38\x04\x35\x00\x20\x04\x3d\x04\x30\x04\x41\ +\x04\x42\x04\x40\x04\x3e\x04\x39\x04\x3a\x04\x38\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\ +\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x04\x13\ +\x04\x3b\x04\x3e\x04\x31\x04\x30\x04\x3b\x04\x4c\x04\x3d\x04\x4b\ +\x04\x39\x00\x20\x04\x40\x04\x35\x04\x36\x04\x38\x04\x3c\x00\x20\ +\x04\x3a\x04\x3e\x04\x3f\x04\x38\x04\x40\x04\x3e\x04\x32\x04\x30\ +\x04\x3d\x04\x38\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x47\x6c\x6f\x62\x61\x6c\x20\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x3c\x04\x20\x04\x30\x04\x41\x04\x41\ +\x04\x42\x04\x3e\x04\x4f\x04\x3d\x04\x38\x04\x35\x00\x20\x04\x3c\ +\x04\x35\x04\x36\x04\x34\x04\x43\x00\x20\x04\x3b\x04\x38\x04\x3d\ +\x04\x38\x04\x4f\x04\x3c\x04\x38\x00\x20\x04\x41\x04\x35\x04\x42\ +\x04\x3a\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x47\x72\ +\x69\x64\x20\x73\x70\x61\x63\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x32\x04\x13\x04\x40\x04\x43\x04\x3f\x04\x3f\x04\x38\x04\x40\ +\x04\x3e\x04\x32\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x41\x04\x3b\ +\x04\x3e\x04\x38\x00\x20\x04\x32\x00\x20\x04\x31\x04\x3b\x04\x3e\ +\x04\x3a\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x47\x72\ +\x6f\x75\x70\x20\x6c\x61\x79\x65\x72\x73\x20\x69\x6e\x74\x6f\x20\ +\x62\x6c\x6f\x63\x6b\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x50\x04\x17\ +\x04\x34\x04\x35\x04\x41\x04\x4c\x00\x20\x04\x3c\x04\x3e\x04\x36\ +\x04\x3d\x04\x3e\x00\x20\x04\x43\x04\x3a\x04\x30\x04\x37\x04\x30\ +\x04\x42\x04\x4c\x00\x20\x04\x3a\x04\x30\x04\x42\x04\x30\x04\x3b\ +\x04\x3e\x04\x33\x00\x2c\x00\x20\x04\x41\x04\x3e\x04\x34\x04\x35\ +\x04\x40\x04\x36\x04\x30\x04\x49\x04\x38\x04\x39\x00\x20\x04\x44\ +\x04\x30\x04\x39\x04\x3b\x04\x4b\x00\x20\x00\x53\x00\x56\x00\x47\ +\x00\x2c\x00\x20\x04\x41\x04\x3e\x04\x34\x04\x35\x04\x40\x04\x36\ +\x04\x30\x04\x49\x04\x38\x04\x35\x00\x20\x04\x3e\x04\x3f\x04\x40\ +\x04\x35\x04\x34\x04\x35\x04\x3b\x04\x35\x04\x3d\x04\x38\x04\x4f\ +\x00\x20\x00\x3c\x04\x48\x04\x30\x04\x31\x04\x3b\x04\x3e\x04\x3d\ +\x04\x3e\x04\x32\x00\x3e\x00\x2c\x00\x20\x04\x3a\x04\x3e\x04\x42\ +\x04\x3e\x04\x40\x04\x4b\x04\x35\x00\x20\x04\x3c\x04\x3e\x04\x33\ +\x04\x43\x04\x42\x00\x20\x04\x31\x04\x4b\x04\x42\x04\x4c\x00\x20\ +\x04\x34\x04\x3e\x04\x31\x04\x30\x04\x32\x04\x3b\x04\x35\x04\x3d\ +\x04\x4b\x00\x20\x04\x32\x00\x20\x04\x41\x04\x42\x04\x30\x04\x3d\ +\x04\x34\x04\x30\x04\x40\x04\x42\x04\x3d\x04\x4b\x04\x35\x00\x20\ +\x04\x48\x04\x30\x04\x31\x04\x3b\x04\x3e\x04\x3d\x04\x4b\x00\x20\ +\x04\x42\x04\x38\x04\x3f\x04\x3e\x04\x32\x00\x20\x04\x48\x04\x42\ +\x04\x40\x04\x38\x04\x45\x04\x3e\x04\x32\x04\x3e\x04\x3a\x00\x20\ +\x04\x3c\x04\x3e\x04\x34\x04\x43\x04\x3b\x04\x4f\x00\x20\x04\x27\ +\x04\x35\x04\x40\x04\x47\x04\x35\x04\x3d\x04\x38\x04\x4f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x8d\x48\x65\x72\x65\x20\x79\x6f\x75\ +\x20\x63\x61\x6e\x20\x73\x70\x65\x63\x69\x66\x79\x20\x61\x20\x64\ +\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x63\x6f\x6e\x74\x61\x69\x6e\ +\x69\x6e\x67\x20\x53\x56\x47\x20\x66\x69\x6c\x65\x73\x20\x63\x6f\ +\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x3c\x70\x61\x74\x74\x65\x72\ +\x6e\x3e\x20\x64\x65\x66\x69\x6e\x69\x74\x69\x6f\x6e\x73\x20\x74\ +\x68\x61\x74\x20\x63\x61\x6e\x20\x62\x65\x20\x61\x64\x64\x65\x64\ +\x20\x74\x6f\x20\x74\x68\x65\x20\x73\x74\x61\x6e\x64\x61\x72\x64\ +\x20\x44\x72\x61\x66\x74\x20\x68\x61\x74\x63\x68\x20\x70\x61\x74\ +\x74\x65\x72\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x48\x00\ +\x69\x00\x64\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\ +\x74\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x74\x00\ +\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x00\x20\x00\x61\x00\ +\x66\x00\x74\x00\x65\x00\x72\x00\x20\x00\x75\x00\x73\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x21\x48\x69\x64\x65\x20\x44\x72\ +\x61\x66\x74\x20\x73\x6e\x61\x70\x20\x74\x6f\x6f\x6c\x62\x61\x72\ +\x20\x61\x66\x74\x65\x72\x20\x75\x73\x65\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x28\x00\x48\x00\x69\x00\x64\x00\x65\x00\x20\x00\x44\x00\x72\ +\x00\x61\x00\x66\x00\x74\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\ +\x00\x62\x00\x65\x00\x6e\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x14\x48\x69\x64\x65\x20\x44\x72\x61\x66\x74\x20\x77\ +\x6f\x72\x6b\x62\x65\x6e\x63\x68\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x7a\ +\x04\x15\x04\x41\x04\x3b\x04\x38\x00\x20\x04\x44\x04\x3b\x04\x30\ +\x04\x36\x04\x3e\x04\x3a\x00\x20\x04\x43\x04\x41\x04\x42\x04\x30\ +\x04\x3d\x04\x3e\x04\x32\x04\x3b\x04\x35\x04\x3d\x00\x2c\x00\x20\ +\x04\x41\x04\x35\x04\x42\x04\x3a\x04\x30\x00\x20\x04\x31\x04\x43\ +\x04\x34\x04\x35\x04\x42\x00\x20\x04\x3e\x04\x42\x04\x3e\x04\x31\ +\x04\x40\x04\x30\x04\x36\x04\x30\x04\x42\x04\x4c\x04\x41\x04\x4f\ +\x00\x20\x04\x3f\x04\x40\x04\x38\x00\x20\x04\x47\x04\x35\x04\x40\ +\x04\x47\x04\x35\x04\x3d\x04\x38\x04\x38\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2b\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\ +\x61\x20\x67\x72\x69\x64\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\ +\x61\x72\x20\x77\x68\x65\x6e\x20\x64\x72\x61\x77\x69\x6e\x67\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\xe8\x04\x15\x04\x41\x04\x3b\x04\x38\x00\ +\x20\x04\x3e\x04\x42\x04\x3c\x04\x35\x04\x47\x04\x35\x04\x3d\x04\ +\x3e\x00\x2c\x00\x20\x00\x66\x00\x72\x00\x65\x00\x65\x00\x63\x00\ +\x61\x00\x64\x00\x20\x04\x31\x04\x43\x04\x34\x04\x35\x04\x42\x00\ +\x20\x04\x3f\x04\x4b\x04\x42\x04\x30\x04\x42\x04\x4c\x04\x41\x04\ +\x4f\x00\x20\x04\x41\x04\x3e\x04\x32\x04\x3c\x04\x35\x04\x49\x04\ +\x30\x04\x42\x04\x4c\x00\x20\x04\x41\x04\x3e\x04\x32\x04\x3f\x04\ +\x30\x04\x34\x04\x30\x04\x4e\x04\x49\x04\x38\x04\x35\x00\x20\x04\ +\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x4b\x00\x2e\x00\ +\x20\x04\x1e\x04\x41\x04\x42\x04\x3e\x04\x40\x04\x3e\x04\x36\x04\ +\x3d\x04\x3e\x00\x2c\x00\x20\x04\x4d\x04\x42\x04\x3e\x00\x20\x04\ +\x3c\x04\x3e\x04\x36\x04\x35\x04\x42\x00\x20\x04\x37\x04\x30\x04\ +\x3d\x04\x4f\x04\x42\x04\x4c\x00\x20\x04\x3d\x04\x35\x04\x3a\x04\ +\x3e\x04\x42\x04\x3e\x04\x40\x04\x3e\x04\x35\x00\x20\x04\x32\x04\ +\x40\x04\x35\x04\x3c\x04\x4f\x00\x20\x00\x2e\x00\x2e\x00\x2e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x65\x49\x66\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x66\x72\x65\x65\x63\x61\x64\x20\x77\x69\x6c\ +\x6c\x20\x74\x72\x79\x20\x74\x6f\x20\x6a\x6f\x69\x6e\x74\x20\x63\ +\x6f\x69\x6e\x63\x69\x64\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x69\x6e\x74\x6f\x20\x77\x69\x72\x65\x73\x2e\x20\x42\x65\ +\x77\x61\x72\x65\x2c\x20\x74\x68\x69\x73\x20\x63\x61\x6e\x20\x74\ +\x61\x6b\x65\x20\x61\x20\x77\x68\x69\x6c\x65\x2e\x2e\x2e\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\xf2\x00\x49\x00\x66\x00\x20\x00\x63\x00\x68\ +\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\ +\x00\x20\x00\x67\x00\x72\x00\x69\x00\x64\x00\x20\x00\x77\x00\x69\ +\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\x6c\x00\x77\x00\x61\x00\x79\ +\x00\x73\x00\x20\x00\x62\x00\x65\x00\x20\x00\x76\x00\x69\x00\x73\ +\x00\x69\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x77\x00\x68\x00\x65\ +\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\x00\x72\ +\x00\x61\x00\x66\x00\x74\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\ +\x00\x62\x00\x65\x00\x6e\x00\x63\x00\x68\x00\x20\x00\x69\x00\x73\ +\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x65\x00\x2e\ +\x00\x20\x00\x4f\x00\x74\x00\x68\x00\x65\x00\x72\x00\x77\x00\x69\ +\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x6e\x00\x6c\x00\x79\x00\x20\ +\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x75\x00\x73\x00\x69\ +\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x6d\x00\x61\x00\x6e\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x79\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\ +\x65\x20\x44\x72\x61\x66\x74\x20\x67\x72\x69\x64\x20\x77\x69\x6c\ +\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x62\x65\x20\x76\x69\x73\x69\ +\x62\x6c\x65\x20\x77\x68\x65\x6e\x20\x74\x68\x65\x20\x44\x72\x61\ +\x66\x74\x20\x77\x6f\x72\x6b\x62\x65\x6e\x63\x68\x20\x69\x73\x20\ +\x61\x63\x74\x69\x76\x65\x2e\x20\x4f\x74\x68\x65\x72\x77\x69\x73\ +\x65\x20\x6f\x6e\x6c\x79\x20\x77\x68\x65\x6e\x20\x75\x73\x69\x6e\ +\x67\x20\x61\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x88\x00\x49\x00\x66\x00\x20\x00\x63\x00\x68\x00\x65\x00\ +\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x53\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x74\x00\ +\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x00\x20\x00\x77\x00\ +\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x73\x00\ +\x68\x00\x6f\x00\x77\x00\x6e\x00\x20\x00\x77\x00\x68\x00\x65\x00\ +\x6e\x00\x65\x00\x76\x00\x65\x00\x72\x00\x20\x00\x79\x00\x6f\x00\ +\x75\x00\x20\x00\x75\x00\x73\x00\x65\x00\x20\x00\x73\x00\x6e\x00\ +\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x44\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x74\x68\x65\x20\x53\x6e\x61\x70\x20\x74\x6f\x6f\x6c\x62\x61\ +\x72\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x73\x68\x6f\x77\x6e\x20\ +\x77\x68\x65\x6e\x65\x76\x65\x72\x20\x79\x6f\x75\x20\x75\x73\x65\ +\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\xc6\x04\x15\x04\x41\x04\x3b\x04\x38\x00\x20\x04\x4d\x04\x42\x04\ +\x3e\x04\x42\x00\x20\x04\x3f\x04\x30\x04\x40\x04\x30\x04\x3c\x04\ +\x35\x04\x42\x04\x40\x00\x20\x04\x32\x04\x4b\x04\x31\x04\x40\x04\ +\x30\x04\x3d\x00\x2c\x00\x20\x04\x32\x04\x41\x04\x35\x00\x20\x04\ +\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x4b\x00\x2c\x00\ +\x20\x04\x41\x04\x3e\x04\x34\x04\x35\x04\x40\x04\x36\x04\x30\x04\ +\x49\x04\x38\x04\x35\x00\x20\x04\x33\x04\x40\x04\x30\x04\x3d\x04\ +\x38\x00\x2c\x00\x20\x04\x31\x04\x43\x04\x34\x04\x43\x04\x42\x00\ +\x20\x04\x4d\x04\x3a\x04\x41\x04\x3f\x04\x3e\x04\x40\x04\x42\x04\ +\x38\x04\x40\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x4b\x00\x20\x04\ +\x3a\x04\x30\x04\x3a\x00\x20\x00\x33\x00\x64\x00\x20\x04\x3c\x04\ +\x3d\x04\x3e\x04\x33\x04\x3e\x04\x33\x04\x40\x04\x30\x04\x3d\x04\ +\x3d\x04\x38\x04\x3a\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x51\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x66\x61\x63\x65\ +\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x65\x78\x70\x6f\x72\x74\ +\x65\x64\x20\x61\x73\x20\x33\x64\x20\x70\x6f\x6c\x79\x66\x61\x63\ +\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x01\x46\x04\x15\x04\x41\x04\x3b\ +\x04\x38\x00\x20\x04\x32\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\ +\x00\x20\x04\x4d\x04\x42\x04\x3e\x04\x42\x00\x20\x04\x3f\x04\x43\ +\x04\x3d\x04\x3a\x04\x42\x00\x2c\x00\x20\x04\x40\x04\x35\x04\x36\ +\x04\x38\x04\x3c\x00\x20\x04\x3a\x04\x3e\x04\x3f\x04\x38\x04\x40\ +\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x38\x04\x4f\x00\x20\x04\x31\ +\x04\x43\x04\x34\x04\x35\x04\x42\x00\x20\x04\x3f\x04\x40\x04\x38\ +\x04\x3c\x04\x35\x04\x3d\x04\x35\x04\x3d\x00\x20\x04\x34\x04\x3b\ +\x04\x4f\x00\x20\x04\x3f\x04\x3e\x04\x3b\x04\x35\x04\x34\x04\x43\ +\x04\x4e\x04\x49\x04\x38\x04\x45\x00\x20\x04\x3a\x04\x3e\x04\x3c\ +\x04\x30\x04\x3d\x04\x34\x00\x2c\x00\x20\x04\x32\x00\x20\x04\x3f\ +\x04\x40\x04\x3e\x04\x42\x04\x38\x04\x32\x04\x3d\x04\x3e\x04\x3c\ +\x00\x20\x04\x41\x04\x3b\x04\x43\x04\x47\x04\x30\x04\x35\x00\x20\ +\x04\x32\x04\x4b\x04\x3f\x04\x3e\x04\x3b\x04\x3d\x04\x35\x04\x3d\ +\x04\x38\x04\x35\x00\x20\x04\x3a\x04\x3e\x04\x3c\x04\x30\x04\x3d\ +\x04\x34\x00\x20\x04\x32\x04\x41\x04\x35\x04\x33\x04\x34\x04\x30\ +\x00\x20\x04\x31\x04\x43\x04\x34\x04\x35\x04\x42\x00\x20\x04\x3d\ +\x04\x30\x04\x47\x04\x38\x04\x3d\x04\x30\x04\x42\x04\x4c\x04\x41\ +\x04\x4f\x00\x20\x04\x31\x04\x35\x04\x37\x00\x20\x04\x40\x04\x35\ +\x04\x36\x04\x38\x04\x3c\x04\x30\x00\x20\x04\x3a\x04\x3e\x04\x3f\ +\x04\x38\x04\x40\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x38\x04\x4f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x6f\x49\x66\x20\x74\x68\x69\ +\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x63\x6f\ +\x70\x79\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\ +\x6b\x65\x70\x74\x20\x61\x63\x72\x6f\x73\x73\x20\x63\x6f\x6d\x6d\ +\x61\x6e\x64\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x63\ +\x6f\x6d\x6d\x61\x6e\x64\x73\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\ +\x61\x79\x73\x20\x73\x74\x61\x72\x74\x20\x69\x6e\x20\x6e\x6f\x2d\ +\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x7e\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\ +\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x68\x00\x61\x00\x74\x00\ +\x63\x00\x68\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\ +\x76\x00\x65\x00\x72\x00\x74\x00\x65\x00\x64\x00\x20\x00\x69\x00\ +\x6e\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x69\x00\x6d\x00\x70\x00\ +\x6c\x00\x65\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x3f\x49\x66\x20\x74\x68\x69\x73\ +\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x68\x61\x74\ +\x63\x68\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x63\x6f\x6e\ +\x76\x65\x72\x74\x65\x64\x20\x69\x6e\x74\x6f\x20\x73\x69\x6d\x70\ +\x6c\x65\x20\x77\x69\x72\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xf6\ +\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\ +\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\ +\x00\x72\x00\x74\x00\x65\x00\x64\x00\x20\x00\x74\x00\x65\x00\x78\ +\x00\x74\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\ +\x00\x67\x00\x65\x00\x74\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\ +\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\ +\x00\x65\x00\x78\x00\x74\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\ +\x00\x2c\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x61\ +\x00\x64\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x74\x00\x68\ +\x00\x65\x00\x79\x00\x20\x00\x68\x00\x61\x00\x76\x00\x65\x00\x20\ +\x00\x69\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\ +\x00\x58\x00\x46\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7b\ +\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\ +\x65\x64\x2c\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x65\x78\ +\x74\x73\x20\x77\x69\x6c\x6c\x20\x67\x65\x74\x20\x74\x68\x65\x20\ +\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x44\x72\x61\x66\x74\x20\x74\ +\x65\x78\x74\x20\x73\x69\x7a\x65\x2c\x20\x69\x6e\x73\x74\x65\x61\ +\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x73\x69\x7a\x65\x20\x74\x68\ +\x65\x79\x20\x68\x61\x76\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x44\ +\x58\x46\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x01\x0c\x04\x15\x04\x41\x04\x3b\x04\x38\x00\x20\x04\x4d\x04\ +\x42\x04\x3e\x04\x42\x00\x20\x04\x3f\x04\x30\x04\x40\x04\x30\x04\ +\x3c\x04\x35\x04\x42\x04\x40\x00\x20\x04\x32\x04\x4b\x04\x31\x04\ +\x40\x04\x30\x04\x3d\x00\x2c\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\ +\x43\x04\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\x04\x38\x04\ +\x4e\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\ +\x4b\x00\x20\x04\x31\x04\x43\x04\x34\x04\x43\x04\x42\x00\x20\x04\ +\x3e\x04\x42\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x36\x04\x30\x04\ +\x42\x04\x4c\x04\x41\x04\x4f\x00\x20\x04\x3a\x04\x30\x04\x3a\x00\ +\x20\x04\x37\x04\x30\x04\x3f\x04\x3e\x04\x3b\x04\x3d\x04\x35\x04\ +\x3d\x04\x3d\x04\x4b\x04\x35\x00\x2e\x00\x20\x04\x12\x00\x20\x04\ +\x3f\x04\x40\x04\x3e\x04\x42\x04\x38\x04\x32\x04\x3d\x04\x3e\x04\ +\x3c\x00\x20\x04\x41\x04\x3b\x04\x43\x04\x47\x04\x30\x04\x35\x00\ +\x20\x04\x3e\x04\x3d\x04\x38\x00\x20\x04\x31\x04\x43\x04\x34\x04\ +\x43\x04\x42\x00\x20\x04\x3f\x04\x3e\x04\x4f\x04\x32\x04\x3b\x04\ +\x4f\x04\x42\x04\x4c\x04\x41\x04\x4f\x00\x20\x04\x3a\x04\x30\x04\ +\x3a\x00\x20\x04\x3a\x04\x30\x04\x40\x04\x3a\x04\x30\x04\x41\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x66\x49\x66\x20\x74\x68\x69\x73\ +\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\ +\x20\x61\x73\x20\x66\x69\x6c\x6c\x65\x64\x20\x61\x73\x20\x64\x65\ +\x66\x61\x75\x6c\x74\x2e\x20\x4f\x74\x68\x65\x72\x77\x69\x73\x65\ +\x2c\x20\x74\x68\x65\x79\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\ +\x61\x72\x20\x61\x73\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\xd0\x00\x49\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\ +\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ +\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\ +\x74\x00\x20\x00\x6f\x00\x63\x00\x63\x00\x75\x00\x72\x00\x20\x00\ +\x61\x00\x67\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ +\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x6d\x00\x6f\x00\x72\x00\ +\x65\x00\x20\x00\x74\x00\x68\x00\x61\x00\x6e\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x64\x00\x69\x00\x63\x00\ +\x61\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\ +\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x65\x00\ +\x64\x00\x67\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x68\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x20\x77\x69\ +\x6c\x6c\x20\x6e\x6f\x74\x20\x6f\x63\x63\x75\x72\x20\x61\x67\x61\ +\x69\x6e\x73\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x74\ +\x68\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\x74\x68\x65\x20\ +\x69\x6e\x64\x69\x63\x61\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\ +\x20\x6f\x66\x20\x65\x64\x67\x65\x73\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\xf2\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\ +\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x77\x00\ +\x6f\x00\x72\x00\x6b\x00\x62\x00\x65\x00\x6e\x00\x63\x00\x68\x00\ +\x20\x00\x77\x00\x6f\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x61\x00\ +\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\x2e\x00\x20\x00\x55\x00\ +\x73\x00\x65\x00\x66\x00\x75\x00\x6c\x00\x20\x00\x73\x00\x69\x00\ +\x6e\x00\x63\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\x00\ +\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\ +\x6c\x00\x73\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x61\x00\ +\x6c\x00\x73\x00\x6f\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\ +\x77\x00\x6f\x00\x72\x00\x6b\x00\x62\x00\x65\x00\x6e\x00\x63\x00\ +\x68\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x79\x49\x66\x20\ +\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x77\x6f\x72\x6b\x62\ +\x65\x6e\x63\x68\x20\x77\x6f\x6e\x27\x74\x20\x61\x70\x70\x65\x61\ +\x72\x2e\x20\x55\x73\x65\x66\x75\x6c\x20\x73\x69\x6e\x63\x65\x20\ +\x61\x6c\x6c\x20\x6f\x66\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\ +\x20\x74\x6f\x6f\x6c\x73\x20\x61\x72\x65\x20\x61\x6c\x73\x6f\x20\ +\x69\x6e\x20\x74\x68\x65\x20\x41\x72\x63\x68\x20\x77\x6f\x72\x6b\ +\x62\x65\x6e\x63\x68\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xea\x00\x49\ +\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\ +\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\ +\x00\x64\x00\x2c\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\ +\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x6c\x00\x69\x00\x6e\x00\x65\ +\x00\x73\x00\x20\x00\x68\x00\x61\x00\x76\x00\x65\x00\x20\x00\x61\ +\x00\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x20\x00\x64\ +\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x64\x00\x2c\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x79\x00\x20\x00\x77\x00\x69\x00\x6c\ +\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x72\x00\x65\x00\x6e\ +\x00\x64\x00\x65\x00\x72\x00\x65\x00\x64\x00\x20\x00\x61\x00\x73\ +\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x20\ +\x00\x77\x00\x69\x00\x72\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\ +\x00\x74\x00\x68\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x72\x00\x72\x00\x65\x00\x63\x00\x74\x00\x20\x00\x77\ +\x00\x69\x00\x64\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x75\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\ +\x63\x6b\x65\x64\x2c\x20\x77\x68\x65\x6e\x20\x70\x6f\x6c\x79\x6c\ +\x69\x6e\x65\x73\x20\x68\x61\x76\x65\x20\x61\x20\x77\x69\x64\x74\ +\x68\x20\x64\x65\x66\x69\x6e\x65\x64\x2c\x20\x74\x68\x65\x79\x20\ +\x77\x69\x6c\x6c\x20\x62\x65\x20\x72\x65\x6e\x64\x65\x72\x65\x64\ +\x20\x61\x73\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x73\ +\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x63\x6f\x72\x72\x65\x63\ +\x74\x20\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x7e\x04\ +\x15\x04\x41\x04\x3b\x04\x38\x00\x20\x04\x32\x04\x4b\x04\x31\x04\ +\x40\x04\x30\x04\x3d\x00\x20\x04\x4d\x04\x42\x04\x3e\x04\x42\x00\ +\x20\x04\x3f\x04\x43\x04\x3d\x04\x3a\x04\x42\x00\x2c\x00\x20\x04\ +\x32\x04\x4b\x00\x20\x04\x32\x04\x41\x04\x35\x04\x33\x04\x34\x04\ +\x30\x00\x20\x04\x31\x04\x43\x04\x34\x04\x35\x04\x42\x04\x35\x00\ +\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x04\x4f\x04\x37\x04\x4b\x04\ +\x32\x04\x30\x04\x42\x04\x4c\x04\x41\x04\x4f\x00\x20\x04\x3a\x00\ +\x20\x04\x41\x04\x43\x04\x49\x04\x35\x04\x41\x04\x42\x04\x32\x04\ +\x43\x04\x4e\x04\x49\x04\x38\x04\x3c\x00\x20\x04\x3e\x04\x31\x04\ +\x4a\x04\x35\x04\x3a\x04\x42\x04\x30\x04\x3c\x00\x20\x04\x32\x04\ +\x3e\x00\x20\x04\x32\x04\x40\x04\x35\x04\x3c\x04\x4f\x00\x20\x04\ +\x40\x04\x38\x04\x41\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x38\x04\ +\x4f\x00\x2e\x00\x20\x04\x15\x04\x41\x04\x3b\x04\x38\x00\x20\x04\ +\x3d\x04\x35\x04\x42\x00\x2c\x00\x20\x04\x32\x04\x4b\x00\x20\x04\ +\x31\x04\x43\x04\x34\x04\x35\x04\x42\x04\x35\x00\x20\x04\x3f\x04\ +\x40\x04\x38\x04\x32\x04\x4f\x04\x37\x04\x4b\x04\x32\x04\x30\x04\ +\x42\x04\x4c\x04\x41\x04\x4f\x00\x20\x04\x3a\x00\x20\x04\x3a\x00\ +\x20\x04\x41\x04\x43\x04\x49\x04\x35\x04\x41\x04\x42\x04\x32\x04\ +\x43\x04\x4e\x04\x49\x04\x38\x04\x3c\x00\x20\x04\x3e\x04\x31\x04\ +\x4a\x04\x35\x04\x3a\x04\x42\x04\x30\x04\x3c\x00\x20\x04\x42\x04\ +\x3e\x04\x3b\x04\x4c\x04\x3a\x04\x3e\x00\x20\x04\x3f\x04\x40\x04\ +\x38\x00\x20\x04\x3d\x04\x30\x04\x36\x04\x30\x04\x42\x04\x3e\x04\ +\x39\x00\x20\x04\x3a\x04\x3b\x04\x30\x04\x32\x04\x38\x04\x48\x04\ +\x35\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x2e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x81\x49\x66\x20\x74\x68\x69\x73\x20\x69\ +\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x79\x6f\x75\x20\x77\ +\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x73\x6e\x61\x70\x20\ +\x74\x6f\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x20\x77\x68\x69\x6c\x65\x20\x64\x72\x61\x77\x69\x6e\ +\x67\x2e\x20\x49\x66\x20\x6e\x6f\x74\x2c\x20\x79\x6f\x75\x20\x77\ +\x69\x6c\x6c\x20\x62\x65\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x20\ +\x6f\x6e\x6c\x79\x20\x77\x68\x65\x6e\x20\x70\x72\x65\x73\x73\x69\ +\x6e\x67\x20\x43\x54\x52\x4c\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\ +\x04\x18\x04\x3c\x04\x3f\x04\x3e\x04\x40\x04\x42\x00\x20\x04\x31\ +\x04\x3b\x04\x3e\x04\x3a\x04\x3e\x04\x32\x00\x20\x00\x2a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0e\x49\x6d\x70\x6f\x72\x74\x20\x2a\ +\x62\x6c\x6f\x63\x6b\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x04\x18\ +\x04\x3c\x04\x3f\x04\x3e\x04\x40\x04\x42\x00\x20\x04\x1e\x04\x21\ +\x04\x10\x00\x20\x04\x3e\x04\x31\x04\x3b\x04\x30\x04\x41\x04\x42\ +\x04\x35\x04\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x49\x6d\ +\x70\x6f\x72\x74\x20\x4f\x43\x41\x20\x61\x72\x65\x61\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x40\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\x20\x00\x68\x00\x61\x00\x74\x00\x63\x00\x68\x00\x20\ +\x00\x62\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x69\ +\x00\x65\x00\x73\x00\x20\x00\x61\x00\x73\x00\x20\x00\x77\x00\x69\ +\x00\x72\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\ +\x49\x6d\x70\x6f\x72\x74\x20\x68\x61\x74\x63\x68\x20\x62\x6f\x75\ +\x6e\x64\x61\x72\x69\x65\x73\x20\x61\x73\x20\x77\x69\x72\x65\x73\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x1c\x04\x18\x04\x3c\x04\x3f\x04\x3e\ +\x04\x40\x04\x42\x00\x20\x04\x3c\x04\x30\x04\x3a\x04\x35\x04\x42\ +\x04\x3e\x04\x32\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x49\x6d\ +\x70\x6f\x72\x74\x20\x6c\x61\x79\x6f\x75\x74\x73\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x18\x04\x18\x04\x3c\x04\x3f\x04\x3e\x04\x40\x04\x42\ +\x00\x20\x04\x41\x04\x42\x04\x38\x04\x3b\x04\x4f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x49\x6d\x70\x6f\x72\x74\x20\x73\x74\x79\ +\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x04\x18\x04\x3c\x04\x3f\ +\x04\x3e\x04\x40\x04\x42\x00\x20\x04\x42\x04\x35\x04\x3a\x04\x41\ +\x04\x42\x04\x3e\x04\x32\x00\x20\x04\x38\x00\x20\x04\x40\x04\x30\ +\x04\x37\x04\x3c\x04\x35\x04\x40\x04\x3e\x04\x32\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1b\x49\x6d\x70\x6f\x72\x74\x20\x74\x65\x78\ +\x74\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x04\x18\x04\x3c\x04\x3f\x04\ +\x3e\x04\x40\x04\x42\x00\x2f\x04\x4d\x04\x3a\x04\x41\x04\x3f\x04\ +\x3e\x04\x40\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x49\ +\x6d\x70\x6f\x72\x74\x2f\x45\x78\x70\x6f\x72\x74\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x36\x04\x23\x04\x40\x04\x3e\x04\x32\x04\x35\x04\x3d\ +\x04\x4c\x00\x20\x04\x32\x04\x3d\x04\x43\x04\x42\x04\x40\x04\x35\ +\x04\x3d\x04\x3d\x04\x35\x04\x39\x00\x20\x04\x42\x04\x3e\x04\x47\ +\x04\x3d\x04\x3e\x04\x41\x04\x42\x04\x38\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x18\x49\x6e\x74\x65\x72\x6e\x61\x6c\x20\x70\x72\x65\ +\x63\x69\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x34\x04\x1f\x04\x40\x04\x38\x04\x41\x04\x3e\x04\x35\ +\x04\x34\x04\x38\x04\x3d\x04\x38\x04\x42\x04\x4c\x04\x41\x04\x4f\ +\x00\x20\x04\x3a\x00\x20\x04\x33\x04\x35\x04\x3e\x04\x3c\x04\x35\ +\x04\x42\x04\x40\x04\x38\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x4a\x6f\x69\x6e\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x28\x04\x12\x04\x3b\x04\x35\x04\x32\x04\ +\x3e\x00\x20\x00\x28\x04\x41\x04\x42\x04\x30\x04\x3d\x04\x34\x04\ +\x30\x04\x40\x04\x42\x00\x20\x00\x49\x00\x53\x00\x4f\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x13\x4c\x65\x66\x74\x20\x28\x49\ +\x53\x4f\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x29\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x2a\x04\x1e\x04\x41\x04\x3d\x04\x3e\x04\x32\x04\x3d\ +\x04\x4b\x04\x35\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x38\ +\x00\x20\x04\x3a\x04\x30\x04\x36\x04\x34\x04\x4b\x04\x35\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x10\x4d\x61\x69\x6e\x20\x6c\x69\x6e\ +\x65\x73\x20\x65\x76\x65\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x9c\ +\x04\x1e\x04\x41\x04\x3d\x04\x3e\x04\x32\x04\x3d\x04\x4b\x04\x35\ +\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x38\x00\x20\x04\x40\ +\x04\x38\x04\x41\x04\x43\x04\x4e\x04\x42\x04\x41\x04\x4f\x00\x20\ +\x04\x42\x04\x3e\x04\x3b\x04\x49\x04\x35\x00\x2e\x00\x20\x04\x23\ +\x04\x3a\x04\x30\x04\x36\x04\x38\x04\x42\x04\x35\x00\x20\x04\x37\ +\x04\x34\x04\x35\x04\x41\x04\x4c\x00\x2c\x00\x20\x04\x41\x04\x3a\ +\x04\x3e\x04\x3b\x04\x4c\x04\x3a\x04\x3e\x00\x20\x04\x3a\x04\x32\ +\x04\x30\x04\x34\x04\x40\x04\x30\x04\x42\x04\x3e\x04\x32\x00\x20\ +\x04\x3c\x04\x35\x04\x36\x04\x34\x04\x43\x00\x20\x04\x3b\x04\x38\ +\x04\x3d\x04\x38\x04\x4f\x04\x3c\x04\x38\x00\x2e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x51\x4d\x61\x69\x6e\x6c\x69\x6e\x65\x73\x20\ +\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x72\x61\x77\x6e\x20\x74\x68\ +\x69\x63\x6b\x65\x72\x2e\x20\x53\x70\x65\x63\x69\x66\x79\x20\x68\ +\x65\x72\x65\x20\x68\x6f\x77\x20\x6d\x61\x6e\x79\x20\x73\x71\x75\ +\x61\x72\x65\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x6d\x61\x69\ +\x6e\x6c\x69\x6e\x65\x73\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x04\ +\x1c\x04\x30\x04\x3a\x04\x41\x04\x38\x04\x3c\x04\x30\x04\x3b\x04\ +\x4c\x04\x3d\x04\x4b\x04\x39\x00\x20\x04\x41\x04\x35\x04\x33\x04\ +\x3c\x04\x35\x04\x3d\x04\x42\x00\x20\x04\x41\x04\x3f\x04\x3b\x04\ +\x30\x04\x39\x04\x3d\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x12\x4d\x61\x78\x20\x53\x70\x6c\x69\x6e\x65\x20\x53\x65\x67\x6d\ +\x65\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x4d\x00\x61\x00\ +\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x6e\x00\x75\x00\ +\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x65\x00\x64\x00\x67\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x17\x4d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\ +\x72\x20\x6f\x66\x20\x65\x64\x67\x65\x73\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x6a\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\ +\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\ +\x00\x6f\x00\x66\x00\x20\x00\x65\x00\x64\x00\x67\x00\x65\x00\x73\ +\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\x65\ +\x00\x64\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x6e\ +\x00\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x35\x4d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\ +\x6d\x62\x65\x72\x20\x6f\x66\x20\x65\x64\x67\x65\x73\x20\x74\x6f\ +\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x66\ +\x6f\x72\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0c\x04\x1d\x04\x38\x04\x47\x04\x35\x04\x33\x04\x3e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x1a\x04\x1d\x04\x35\x04\x42\x00\x20\x00\x28\x04\ +\x31\x04\x4b\x04\x41\x04\x42\x04\x40\x04\x4b\x04\x39\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x4e\x6f\x6e\x65\x20\x28\x66\ +\x61\x73\x74\x65\x73\x74\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x10\x04\ +\x1a\x04\x30\x04\x3a\x00\x20\x04\x3f\x04\x40\x04\x30\x04\x32\x04\ +\x38\x04\x3b\x04\x3e\x00\x2c\x00\x20\x04\x3f\x04\x3e\x04\x41\x04\ +\x3b\x04\x35\x00\x20\x04\x3a\x04\x3e\x04\x3f\x04\x38\x04\x40\x04\ +\x3e\x04\x32\x04\x30\x04\x3d\x04\x38\x04\x4f\x00\x20\x04\x3e\x04\ +\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x3e\x04\x32\x00\x20\x04\ +\x31\x04\x43\x04\x34\x04\x43\x04\x42\x00\x20\x04\x32\x04\x4b\x04\ +\x31\x04\x40\x04\x30\x04\x3d\x04\x4b\x00\x20\x04\x3f\x04\x3e\x04\ +\x3b\x04\x43\x04\x47\x04\x35\x04\x3d\x04\x3d\x04\x4b\x04\x35\x00\ +\x20\x04\x3a\x04\x3e\x04\x3f\x04\x38\x04\x38\x00\x2e\x00\x20\x04\ +\x15\x04\x41\x04\x3b\x04\x38\x00\x20\x04\x43\x04\x41\x04\x42\x04\ +\x30\x04\x3d\x04\x3e\x04\x32\x04\x38\x04\x42\x04\x4c\x00\x20\x04\ +\x4d\x04\x42\x04\x3e\x04\x42\x00\x20\x04\x3f\x04\x30\x04\x40\x04\ +\x30\x04\x3c\x04\x35\x04\x42\x04\x40\x00\x2c\x00\x20\x04\x31\x04\ +\x43\x04\x34\x04\x43\x04\x42\x00\x20\x04\x32\x04\x4b\x04\x31\x04\ +\x38\x04\x40\x04\x30\x04\x42\x04\x4c\x04\x41\x04\x4f\x00\x20\x04\ +\x31\x04\x30\x04\x37\x04\x3e\x04\x32\x04\x4b\x04\x35\x00\x20\x04\ +\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x4b\x00\x2e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x7f\x4e\x6f\x72\x6d\x61\x6c\x6c\ +\x79\x2c\x20\x61\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\x6e\x67\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x2c\x20\x74\x68\x65\x20\x63\x6f\ +\x70\x69\x65\x73\x20\x67\x65\x74\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x2e\x20\x49\x66\x20\x74\x68\x69\x73\x20\x6f\x70\x74\x69\x6f\ +\x6e\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\ +\x65\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\ +\x69\x6c\x6c\x20\x62\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x69\x6e\x73\x74\x65\x61\x64\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\ +\x04\x1f\x04\x30\x04\x40\x04\x30\x04\x3c\x04\x35\x04\x42\x04\x40\ +\x04\x4b\x00\x20\x04\x44\x04\x3e\x04\x40\x04\x3c\x04\x30\x04\x42\ +\x04\x30\x00\x20\x04\x1e\x04\x21\x04\x10\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x12\x4f\x43\x41\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\ +\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x04\x1e\ +\x04\x40\x04\x38\x04\x33\x04\x38\x04\x3d\x04\x30\x04\x3b\x04\x4c\ +\x04\x3d\x04\x4b\x04\x39\x00\x20\x04\x46\x04\x32\x04\x35\x04\x42\ +\x00\x20\x04\x38\x00\x20\x04\x42\x04\x3e\x04\x3b\x04\x49\x04\x38\ +\x04\x3d\x04\x30\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x38\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x4f\x72\x69\x67\x69\x6e\ +\x61\x6c\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\ +\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x52\ +\x00\x61\x00\x77\x00\x20\x00\x28\x00\x66\x00\x6f\x00\x72\x00\x20\ +\x00\x43\x00\x41\x00\x4d\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x52\x61\x77\x20\x28\x66\x6f\x72\x20\x43\x41\x4d\x29\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x36\x00\x52\x00\x65\x00\x6e\x00\x64\x00\ +\x65\x00\x72\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x6c\x00\ +\x69\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\x74\x00\ +\x68\x00\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1b\x52\x65\x6e\x64\x65\x72\x20\x70\x6f\ +\x6c\x79\x6c\x69\x6e\x65\x73\x20\x77\x69\x74\x68\x20\x77\x69\x64\ +\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x04\x12\x04\x3f\x04\x40\ +\x04\x30\x04\x32\x04\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x52\x69\x67\x68\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x04\x1f\x04\ +\x30\x04\x40\x04\x30\x04\x3c\x04\x35\x04\x42\x04\x40\x04\x4b\x00\ +\x20\x04\x44\x04\x3e\x04\x40\x04\x3c\x04\x30\x04\x42\x04\x30\x00\ +\x20\x00\x53\x00\x56\x00\x47\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x12\x53\x56\x47\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\ +\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6a\x04\x21\x04\x3e\x04\ +\x45\x04\x40\x04\x30\x04\x3d\x04\x38\x04\x42\x04\x4c\x00\x20\x04\ +\x42\x04\x35\x04\x3a\x04\x43\x04\x49\x04\x38\x04\x39\x00\x20\x04\ +\x46\x04\x32\x04\x35\x04\x42\x00\x20\x04\x38\x00\x20\x04\x42\x04\ +\x3e\x04\x3b\x04\x49\x04\x38\x04\x3d\x04\x43\x00\x20\x04\x3b\x04\ +\x38\x04\x3d\x04\x38\x04\x38\x00\x20\x04\x3c\x04\x35\x04\x36\x04\ +\x34\x04\x43\x00\x20\x04\x41\x04\x35\x04\x41\x04\x41\x04\x38\x04\ +\x4f\x04\x3c\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x53\ +\x61\x76\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x63\x6f\x6c\x6f\ +\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\ +\x61\x63\x72\x6f\x73\x73\x20\x73\x65\x73\x73\x69\x6f\x6e\x73\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x50\x04\x12\x04\x4b\x04\x31\x04\x3e\x04\ +\x40\x00\x20\x04\x31\x04\x30\x04\x37\x04\x3e\x04\x32\x04\x4b\x04\ +\x45\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\ +\x3e\x04\x32\x00\x20\x04\x3f\x04\x3e\x04\x41\x04\x3b\x04\x35\x00\ +\x20\x04\x3a\x04\x3e\x04\x3f\x04\x38\x04\x40\x04\x3e\x04\x32\x04\ +\x30\x04\x3d\x04\x38\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x21\x53\x65\x6c\x65\x63\x74\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x20\x61\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\ +\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x53\x00\x68\x00\x6f\ +\x00\x77\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\ +\x00\x53\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x74\x00\x6f\x00\x6f\ +\x00\x6c\x00\x62\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x17\x53\x68\x6f\x77\x20\x44\x72\x61\x66\x74\x20\x53\x6e\x61\ +\x70\x20\x74\x6f\x6f\x6c\x62\x61\x72\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x34\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x57\x00\x6f\x00\ +\x72\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x50\x00\x6c\x00\ +\x61\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x72\x00\x61\x00\x63\x00\ +\x6b\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\ +\x68\x6f\x77\x20\x57\x6f\x72\x6b\x69\x6e\x67\x20\x50\x6c\x61\x6e\ +\x65\x20\x74\x72\x61\x63\x6b\x65\x72\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x0c\x04\x21\x04\x3b\x04\x4d\x04\x48\x00\x20\x00\x35\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\x20\x35\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0c\x04\x21\x04\x3b\x04\x4d\x04\x48\x00\x20\ +\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\ +\x68\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x04\x21\x04\x3b\x04\ +\x4d\x04\x48\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x07\x53\x6c\x61\x73\x68\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\ +\x04\x26\x04\x32\x04\x35\x04\x42\x00\x20\x04\x3a\x04\x3d\x04\x3e\ +\x04\x3f\x04\x3a\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\ +\x53\x6e\x61\x70\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x18\x00\x53\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6d\x00\x61\ +\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x53\x6e\x61\x70\x20\x6d\x61\x78\x69\x6d\x75\x6d\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x1c\x04\x20\x04\x35\x04\x36\x04\x38\ +\x04\x3c\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x04\x4f\x04\x37\ +\x04\x3a\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x53\x6e\ +\x61\x70\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x04\x1f\ +\x04\x40\x04\x38\x04\x32\x04\x4f\x04\x37\x04\x3a\x04\x30\x00\x20\ +\x04\x34\x04\x38\x04\x30\x04\x3f\x04\x30\x04\x37\x04\x3e\x04\x3d\ +\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x6e\x61\x70\ +\x20\x72\x61\x6e\x67\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x66\x00\x53\ +\x00\x74\x00\x79\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\ +\x00\x53\x00\x56\x00\x47\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x65\ +\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x77\x00\x72\x00\x69\x00\x74\ +\x00\x65\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x65\ +\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x61\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\x00\x63\ +\x00\x68\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x53\x74\ +\x79\x6c\x65\x20\x6f\x66\x20\x53\x56\x47\x20\x66\x69\x6c\x65\x20\ +\x74\x6f\x20\x77\x72\x69\x74\x65\x20\x77\x68\x65\x6e\x20\x65\x78\ +\x70\x6f\x72\x74\x69\x6e\x67\x20\x61\x20\x53\x6b\x65\x74\x63\x68\ +\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x54\x00\x61\x00\x73\x00\ +\x6b\x00\x76\x00\x69\x00\x65\x00\x77\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x54\x61\x73\x6b\x76\x69\x65\x77\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x3a\x00\x54\x00\x68\x00\x65\x00\x20\x00\x43\x00\x6f\x00\ +\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\ +\x69\x00\x65\x00\x72\x00\x20\x00\x6b\x00\x65\x00\x79\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1d\x54\x68\x65\x20\x43\x6f\x6e\x73\x74\ +\x72\x61\x69\x6e\x69\x6e\x67\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\ +\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x04\x1a\x04\x3b\ +\x04\x30\x04\x32\x04\x38\x04\x48\x04\x30\x00\x20\x00\x41\x00\x6c\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\x20\ +\x61\x6c\x74\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x7e\x04\x24\x04\x30\x04\x39\x04\x3b\ +\x00\x20\x04\x41\x04\x3e\x04\x3f\x04\x3e\x04\x41\x04\x42\x04\x30\ +\x04\x32\x04\x3b\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\x20\x04\x46\ +\x04\x32\x04\x35\x04\x42\x04\x30\x00\x20\x04\x34\x04\x3b\x04\x4f\ +\x00\x20\x04\x3f\x04\x35\x04\x40\x04\x35\x04\x32\x04\x3e\x04\x34\ +\x04\x30\x00\x20\x00\x64\x00\x78\x00\x66\x00\x20\x04\x46\x04\x32\ +\x04\x35\x04\x42\x04\x3e\x04\x32\x00\x20\x04\x32\x00\x20\x04\x48\ +\x04\x38\x04\x40\x04\x38\x04\x3d\x04\x43\x00\x20\x04\x3b\x04\x38\ +\x04\x3d\x04\x38\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x41\ +\x54\x68\x65\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\ +\x67\x20\x66\x69\x6c\x65\x20\x66\x6f\x72\x20\x74\x72\x61\x6e\x73\ +\x6c\x61\x74\x69\x6e\x67\x20\x64\x78\x66\x20\x63\x6f\x6c\x6f\x72\ +\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x86\x04\x28\x04\x30\x04\x31\x04\ +\x3b\x04\x3e\x04\x3d\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\ +\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\x00\ +\x2c\x00\x20\x04\x38\x04\x41\x04\x3f\x04\x3e\x04\x3b\x04\x4c\x04\ +\x37\x04\x43\x04\x35\x04\x3c\x04\x4b\x04\x39\x00\x20\x04\x3f\x04\ +\x40\x04\x38\x00\x20\x04\x41\x04\x3e\x04\x37\x04\x34\x04\x30\x04\ +\x3d\x04\x38\x04\x38\x00\x20\x04\x3d\x04\x3e\x04\x32\x04\x3e\x04\ +\x33\x04\x3e\x00\x20\x04\x3b\x04\x38\x04\x41\x04\x42\x04\x30\x00\ +\x20\x04\x47\x04\x35\x04\x40\x04\x42\x04\x35\x04\x36\x04\x30\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x3d\x54\x68\x65\x20\x64\x65\x66\ +\x61\x75\x6c\x74\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x20\x74\x6f\ +\x20\x75\x73\x65\x20\x77\x68\x65\x6e\x20\x63\x72\x65\x61\x74\x69\ +\x6e\x67\x20\x61\x20\x6e\x65\x77\x20\x64\x72\x61\x77\x69\x6e\x67\ +\x20\x73\x68\x65\x65\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xb2\x04\x1a\ +\x04\x3e\x04\x3b\x04\x38\x04\x47\x04\x35\x04\x41\x04\x42\x04\x32\ +\x04\x3e\x00\x20\x04\x34\x04\x35\x04\x41\x04\x4f\x04\x42\x04\x38\ +\x04\x47\x04\x3d\x04\x4b\x04\x45\x00\x20\x04\x37\x04\x3d\x04\x30\ +\x04\x3a\x04\x3e\x04\x32\x00\x20\x04\x32\x04\x3e\x00\x20\x04\x32\ +\x04\x3d\x04\x43\x04\x42\x04\x40\x04\x35\x04\x3d\x04\x3d\x04\x38\ +\x04\x45\x00\x20\x04\x3e\x04\x3f\x04\x35\x04\x40\x04\x30\x04\x46\ +\x04\x38\x04\x4f\x04\x45\x00\x20\x04\x41\x00\x20\x04\x3a\x04\x3e\ +\x04\x3e\x04\x40\x04\x34\x04\x38\x04\x3d\x04\x30\x04\x42\x04\x30\ +\x04\x3c\x04\x38\x00\x20\x00\x28\x04\x3d\x04\x30\x04\x3f\x04\x40\ +\x04\x38\x04\x3c\x04\x35\x04\x40\x00\x2e\x00\x20\x00\x33\x00\x20\ +\x00\x3d\x00\x20\x00\x30\x00\x2c\x00\x30\x00\x30\x00\x31\x00\x29\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x54\x68\x65\x20\x6e\x75\ +\x6d\x62\x65\x72\x20\x6f\x66\x20\x64\x65\x63\x69\x6d\x61\x6c\x73\ +\x20\x69\x6e\x20\x69\x6e\x74\x65\x72\x6e\x61\x6c\x20\x63\x6f\x6f\ +\x72\x64\x69\x6e\x61\x74\x65\x73\x20\x6f\x70\x65\x72\x61\x74\x69\ +\x6f\x6e\x73\x20\x28\x66\x6f\x72\x20\x65\x78\x2e\x20\x33\x20\x3d\ +\x20\x30\x2e\x30\x30\x31\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa4\x04\ +\x20\x04\x30\x04\x34\x04\x38\x04\x43\x04\x41\x00\x20\x04\x3f\x04\ +\x40\x04\x38\x04\x32\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\x20\x04\ +\x3a\x00\x20\x04\x41\x04\x3f\x04\x35\x04\x46\x04\x38\x04\x30\x04\ +\x3b\x04\x4c\x04\x3d\x04\x4b\x04\x3c\x00\x20\x04\x42\x04\x3e\x04\ +\x47\x04\x3a\x04\x30\x04\x3c\x00\x2e\x00\x20\x04\x23\x04\x41\x04\ +\x42\x04\x30\x04\x3d\x04\x3e\x04\x32\x04\x38\x04\x42\x04\x35\x00\ +\x20\x00\x30\x00\x20\x04\x3e\x04\x42\x04\x3a\x04\x3b\x04\x4e\x04\ +\x47\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\x20\x00\x28\x04\x31\x04\ +\x35\x04\x41\x04\x3a\x04\x3e\x04\x3d\x04\x35\x04\x47\x04\x3d\x04\ +\x4b\x04\x39\x00\x20\x04\x40\x04\x30\x04\x34\x04\x38\x04\x43\x04\ +\x41\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4e\x54\x68\x65\ +\x20\x72\x61\x64\x69\x75\x73\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\ +\x70\x69\x6e\x67\x20\x74\x6f\x20\x73\x70\x65\x63\x69\x61\x6c\x20\ +\x70\x6f\x69\x6e\x74\x73\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\x30\ +\x20\x66\x6f\x72\x20\x6e\x6f\x20\x64\x69\x73\x74\x61\x6e\x63\x65\ +\x20\x28\x69\x6e\x66\x69\x6e\x69\x74\x65\x29\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x2a\x00\x54\x00\x68\x00\x65\x00\x20\x00\x73\x00\x6e\x00\ +\x61\x00\x70\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\ +\x69\x00\x65\x00\x72\x00\x20\x00\x6b\x00\x65\x00\x79\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x15\x54\x68\x65\x20\x73\x6e\x61\x70\x20\ +\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x48\x04\x20\x04\x30\x04\x41\x04\x41\x04\x42\x04\x3e\ +\x04\x4f\x04\x3d\x04\x38\x04\x35\x00\x20\x04\x3c\x04\x35\x04\x36\ +\x04\x34\x04\x43\x00\x20\x04\x3a\x04\x30\x04\x36\x04\x34\x04\x3e\ +\x04\x39\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x35\x04\x39\ +\x00\x20\x04\x41\x04\x35\x04\x42\x04\x3a\x04\x38\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x22\x54\x68\x65\x20\x73\x70\x61\x63\x69\x6e\ +\x67\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x65\x61\x63\x68\x20\x67\ +\x72\x69\x64\x20\x6c\x69\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x02\x28\ +\x04\x2d\x04\x42\x04\x3e\x00\x20\x04\x40\x04\x35\x04\x36\x04\x38\ +\x04\x3c\x00\x20\x04\x3f\x04\x3e\x04\x3b\x04\x4c\x04\x37\x04\x3e\ +\x04\x32\x04\x30\x04\x42\x04\x35\x04\x3b\x04\x4c\x04\x41\x04\x3a\ +\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\x38\x04\x3d\x04\x42\x04\x35\ +\x04\x40\x04\x44\x04\x35\x04\x39\x04\x41\x04\x30\x00\x2c\x00\x20\ +\x04\x32\x00\x20\x04\x3a\x04\x3e\x04\x42\x04\x3e\x04\x40\x04\x3e\ +\x04\x3c\x00\x20\x04\x31\x04\x43\x04\x34\x04\x35\x04\x42\x00\x20\ +\x04\x40\x04\x30\x04\x31\x04\x3e\x04\x42\x04\x30\x04\x42\x04\x4c\ +\x00\x20\x04\x3c\x04\x3e\x04\x34\x04\x43\x04\x3b\x04\x4c\x00\x20\ +\x04\x1f\x04\x40\x04\x3e\x04\x35\x04\x3a\x04\x42\x00\x3a\x00\x20\ +\x04\x3f\x04\x30\x04\x3d\x04\x35\x04\x3b\x04\x38\x00\x20\x04\x38\ +\x04\x3d\x04\x41\x04\x42\x04\x40\x04\x43\x04\x3c\x04\x35\x04\x3d\ +\x04\x42\x04\x3e\x04\x32\x00\x20\x04\x31\x04\x43\x04\x34\x04\x43\ +\x04\x42\x00\x20\x04\x32\x04\x3c\x04\x35\x04\x49\x04\x30\x04\x42\ +\x04\x4c\x00\x20\x04\x32\x04\x41\x04\x35\x00\x20\x04\x3f\x04\x30\ +\x04\x40\x04\x30\x04\x3c\x04\x35\x04\x42\x04\x40\x04\x4b\x00\x20\ +\x04\x3f\x04\x40\x04\x3e\x04\x35\x04\x3a\x04\x42\x04\x30\x00\x20\ +\x04\x3d\x04\x30\x00\x20\x04\x3e\x04\x42\x04\x34\x04\x35\x04\x3b\ +\x04\x4c\x04\x3d\x04\x3e\x04\x39\x00\x20\x04\x3f\x04\x30\x04\x3d\ +\x04\x35\x04\x3b\x04\x38\x00\x20\x04\x38\x04\x3d\x04\x41\x04\x42\ +\x04\x40\x04\x43\x04\x3c\x04\x35\x04\x3d\x04\x42\x04\x3e\x04\x32\ +\x00\x2c\x00\x20\x04\x32\x00\x20\x04\x42\x04\x3e\x00\x20\x04\x32\ +\x04\x40\x04\x35\x04\x3c\x04\x4f\x00\x20\x04\x3a\x04\x30\x04\x3a\ +\x00\x20\x04\x1f\x04\x30\x04\x3d\x04\x35\x04\x3b\x04\x4c\x00\x20\ +\x04\x37\x04\x30\x04\x34\x04\x30\x04\x47\x00\x20\x04\x31\x04\x43\ +\x04\x34\x04\x35\x04\x42\x00\x20\x04\x38\x04\x41\x04\x3f\x04\x3e\ +\x04\x3b\x04\x4c\x04\x37\x04\x3e\x04\x32\x04\x30\x04\x42\x04\x4c\ +\x00\x20\x04\x1f\x04\x30\x04\x3d\x04\x35\x04\x3b\x04\x4c\x00\x20\ +\x04\x37\x04\x30\x04\x34\x04\x30\x04\x47\x00\x20\x00\x46\x00\x72\ +\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x20\x04\x34\x04\x3b\ +\x04\x4f\x00\x20\x04\x35\x04\x33\x04\x3e\x00\x20\x04\x32\x04\x37\ +\x04\x30\x04\x38\x04\x3c\x04\x3e\x04\x34\x04\x35\x04\x39\x04\x41\ +\x04\x42\x04\x32\x04\x38\x04\x4f\x00\x20\x04\x41\x00\x20\x04\x3f\ +\x04\x3e\x04\x3b\x04\x4c\x04\x37\x04\x3e\x04\x32\x04\x30\x04\x42\ +\x04\x35\x04\x3b\x04\x35\x04\x3c\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\xcf\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x55\x49\ +\x20\x6d\x6f\x64\x65\x20\x69\x6e\x20\x77\x68\x69\x63\x68\x20\x74\ +\x68\x65\x20\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\x75\x6c\x65\x20\ +\x77\x69\x6c\x6c\x20\x77\x6f\x72\x6b\x3a\x20\x54\x6f\x6f\x6c\x62\ +\x61\x72\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x70\x6c\x61\ +\x63\x65\x20\x61\x6c\x6c\x20\x44\x72\x61\x66\x74\x20\x73\x65\x74\ +\x74\x69\x6e\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x65\x70\x61\x72\ +\x61\x74\x65\x20\x74\x6f\x6f\x6c\x62\x61\x72\x2c\x20\x77\x68\x69\ +\x6c\x65\x20\x74\x61\x73\x6b\x62\x61\x72\x20\x6d\x6f\x64\x65\x20\ +\x77\x69\x6c\x6c\x20\x75\x73\x65\x20\x74\x68\x65\x20\x46\x72\x65\ +\x65\x43\x41\x44\x20\x54\x61\x73\x6b\x76\x69\x65\x77\x20\x73\x79\ +\x73\x74\x65\x6d\x20\x66\x6f\x72\x20\x61\x6c\x6c\x20\x69\x74\x73\ +\x20\x75\x73\x65\x72\x20\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x6f\ +\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x8a\x04\x26\x04\x32\x04\x35\x04\ +\x42\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\ +\x3b\x04\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\x00\x20\x04\x34\x04\ +\x3b\x04\x4f\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\ +\x42\x04\x3e\x04\x32\x00\x2c\x00\x20\x04\x3e\x04\x31\x04\x40\x04\ +\x30\x04\x31\x04\x30\x04\x42\x04\x4b\x04\x32\x04\x30\x04\x35\x04\ +\x3c\x04\x4b\x04\x45\x00\x20\x04\x32\x00\x20\x04\x40\x04\x35\x04\ +\x36\x04\x38\x04\x3c\x04\x35\x00\x20\x04\x3a\x04\x3e\x04\x3d\x04\ +\x41\x04\x42\x04\x40\x04\x43\x04\x3a\x04\x42\x04\x3e\x04\x40\x04\ +\x30\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x54\x68\x69\ +\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\ +\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x62\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x20\x77\ +\x68\x69\x6c\x65\x20\x69\x6e\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\ +\x74\x69\x6f\x6e\x20\x6d\x6f\x64\x65\x2e\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x02\x00\x04\x2d\x04\x42\x04\x3e\x00\x20\x04\x38\x04\x3c\x04\x4f\ +\x00\x20\x04\x48\x04\x40\x04\x38\x04\x44\x04\x42\x04\x30\x00\x20\ +\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\x47\ +\x04\x30\x04\x3d\x04\x38\x04\x4e\x00\x20\x04\x34\x04\x3b\x04\x4f\ +\x00\x20\x04\x32\x04\x41\x04\x35\x04\x45\x00\x20\x04\x47\x04\x35\ +\x04\x40\x04\x42\x04\x35\x04\x36\x04\x3d\x04\x4b\x04\x45\x00\x20\ +\x04\x42\x04\x35\x04\x3a\x04\x41\x04\x42\x04\x3e\x04\x32\x00\x20\ +\x04\x38\x00\x20\x04\x40\x04\x30\x04\x37\x04\x3c\x04\x35\x04\x40\ +\x04\x3e\x04\x32\x00\x2e\x00\x20\x04\x2d\x04\x42\x04\x3e\x00\x20\ +\x04\x3c\x04\x3e\x04\x36\x04\x35\x04\x42\x00\x20\x04\x31\x04\x4b\ +\x04\x42\x04\x4c\x00\x20\x04\x38\x04\x3c\x04\x4f\x00\x20\x04\x48\ +\x04\x40\x04\x38\x04\x44\x04\x42\x04\x30\x00\x2c\x00\x20\x04\x42\ +\x04\x30\x04\x3a\x04\x3e\x04\x3a\x00\x2c\x00\x20\x04\x3a\x04\x30\ +\x04\x3a\x00\x20\x00\xab\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\ +\x00\xbb\x00\x2c\x00\x20\x04\x41\x04\x42\x04\x38\x04\x3b\x04\x4c\ +\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\ +\x04\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\x00\x2c\x00\x20\x04\x42\ +\x04\x30\x04\x3a\x04\x3e\x04\x39\x00\x20\x04\x3a\x04\x30\x04\x3a\ +\x00\x20\x00\xab\x00\x73\x00\x61\x00\x6e\x00\x73\x00\xbb\x00\x2c\ +\x00\x20\x00\xab\x00\x73\x00\x65\x00\x72\x00\x69\x00\x66\x00\xbb\ +\x00\x20\x04\x38\x04\x3b\x04\x38\x00\x20\x00\xab\x04\x3c\x04\x3e\ +\x04\x3d\x04\x3e\x00\xbb\x00\x20\x04\x38\x04\x3b\x04\x38\x00\x20\ +\x04\x41\x04\x35\x04\x3c\x04\x35\x04\x39\x04\x41\x04\x42\x04\x32\ +\x04\x3e\x00\x20\x04\x3a\x04\x30\x04\x3a\x00\x20\x00\x22\x00\x41\ +\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x2c\x00\x20\x00\x48\x00\x65\ +\x00\x6c\x00\x76\x00\x65\x00\x74\x00\x69\x00\x63\x00\x61\x00\x2c\ +\x00\x20\x00\x73\x00\x61\x00\x6e\x00\x73\x00\xbb\x00\x20\x04\x38\ +\x04\x3b\x04\x38\x00\x20\x04\x38\x04\x3c\x04\x4f\x00\x20\x04\x41\ +\x04\x3e\x00\x20\x04\x41\x04\x42\x04\x38\x04\x3b\x04\x35\x04\x3c\ +\x00\x2c\x00\x20\x04\x42\x04\x30\x04\x3a\x04\x3e\x04\x35\x00\x2c\ +\x00\x20\x04\x3a\x04\x30\x04\x3a\x00\x22\x00\x20\x00\x41\x00\x72\ +\x00\x69\x00\x61\x00\x6c\x00\x3a\x00\x42\x00\x6f\x00\x6c\x00\x64\ +\x00\xbb\x08\x00\x00\x00\x00\x06\x00\x00\x00\xf2\x54\x68\x69\x73\ +\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\ +\x66\x6f\x6e\x74\x20\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\x61\x6c\ +\x6c\x20\x44\x72\x61\x66\x74\x20\x74\x65\x78\x74\x73\x20\x61\x6e\ +\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x2e\x0a\x49\x74\ +\x20\x63\x61\x6e\x20\x62\x65\x20\x61\x20\x66\x6f\x6e\x74\x20\x6e\ +\x61\x6d\x65\x20\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\x72\x69\ +\x61\x6c\x22\x2c\x20\x61\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x73\ +\x74\x79\x6c\x65\x20\x73\x75\x63\x68\x20\x61\x73\x20\x22\x73\x61\ +\x6e\x73\x22\x2c\x20\x22\x73\x65\x72\x69\x66\x22\x0a\x6f\x72\x20\ +\x22\x6d\x6f\x6e\x6f\x22\x2c\x20\x6f\x72\x20\x61\x20\x66\x61\x6d\ +\x69\x6c\x79\x20\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\x72\x69\ +\x61\x6c\x2c\x48\x65\x6c\x76\x65\x74\x69\x63\x61\x2c\x73\x61\x6e\ +\x73\x22\x20\x6f\x72\x20\x61\x20\x6e\x61\x6d\x65\x20\x77\x69\x74\ +\x68\x20\x61\x20\x73\x74\x79\x6c\x65\x0a\x73\x75\x63\x68\x20\x61\ +\x73\x20\x22\x41\x72\x69\x61\x6c\x3a\x42\x6f\x6c\x64\x22\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x64\x04\x18\x04\x3c\x04\x4f\x00\x20\x04\x33\ +\x04\x40\x04\x43\x04\x3f\x04\x3f\x04\x4b\x00\x20\x04\x3f\x04\x3e\ +\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\ +\x04\x38\x04\x4e\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3a\ +\x04\x3e\x04\x3d\x04\x41\x04\x42\x04\x40\x04\x43\x04\x3a\x04\x42\ +\x04\x3e\x04\x40\x04\x30\x00\x20\x04\x33\x04\x35\x04\x3e\x04\x3c\ +\x04\x35\x04\x42\x04\x40\x04\x38\x04\x38\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x38\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\ +\x64\x65\x66\x61\x75\x6c\x74\x20\x67\x72\x6f\x75\x70\x20\x6e\x61\ +\x6d\x65\x20\x66\x6f\x72\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\ +\x69\x6f\x6e\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x7c\x04\x2d\x04\x42\x04\x3e\x00\x20\x04\x3c\x04\x35\ +\x04\x42\x04\x3e\x04\x34\x00\x20\x04\x32\x04\x4b\x04\x31\x04\x38\ +\x04\x40\x04\x30\x04\x35\x04\x42\x04\x41\x04\x4f\x00\x20\x04\x34\ +\x04\x3b\x04\x4f\x00\x20\x04\x38\x04\x3c\x04\x3f\x04\x3e\x04\x40\ +\x04\x42\x04\x30\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x04\x46\ +\x04\x32\x04\x35\x04\x42\x04\x30\x00\x20\x04\x3e\x04\x31\x04\x4a\ +\x04\x35\x04\x3a\x04\x42\x04\x30\x00\x20\x04\x32\x04\x3e\x00\x20\ +\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x2e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x47\x54\x68\x69\x73\x20\x69\ +\x73\x20\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x63\x68\x6f\ +\x6f\x73\x65\x64\x20\x66\x6f\x72\x20\x69\x6d\x70\x6f\x72\x74\x69\ +\x6e\x67\x20\x53\x56\x47\x20\x6f\x62\x6a\x65\x63\x74\x20\x63\x6f\ +\x6c\x6f\x72\x20\x69\x6e\x74\x6f\x20\x46\x72\x65\x65\x43\x41\x44\ +\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x02\x32\x04\x2d\x04\x42\x04\x3e\x04\ +\x42\x00\x20\x04\x3c\x04\x35\x04\x42\x04\x3e\x04\x34\x00\x20\x04\ +\x32\x04\x4b\x04\x31\x04\x38\x04\x40\x04\x30\x04\x35\x04\x42\x04\ +\x41\x04\x4f\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x38\x04\ +\x3c\x04\x3f\x04\x3e\x04\x40\x04\x42\x04\x30\x00\x20\x04\x38\x04\ +\x3b\x04\x38\x00\x20\x04\x3f\x04\x35\x04\x40\x04\x35\x04\x32\x04\ +\x3e\x04\x34\x04\x30\x00\x20\x04\x46\x04\x32\x04\x35\x04\x42\x04\ +\x30\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\ +\x30\x00\x2c\x00\x20\x04\x37\x04\x30\x04\x34\x04\x30\x04\x32\x04\ +\x30\x04\x35\x04\x3c\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\x32\x00\ +\x20\x00\x44\x00\x58\x00\x46\x00\x20\x04\x44\x04\x3e\x04\x40\x04\ +\x3c\x04\x30\x04\x42\x04\x35\x00\x2c\x00\x20\x04\x32\x04\x3e\x00\ +\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\ +\x2e\x00\x20\x00\x0a\x04\x15\x04\x41\x04\x3b\x04\x38\x00\x20\x04\ +\x32\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x30\x00\x20\x04\ +\x3a\x04\x30\x04\x40\x04\x42\x04\x30\x00\x20\x04\x3f\x04\x40\x04\ +\x35\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x37\x04\x3e\x04\x32\x04\ +\x30\x04\x3d\x04\x38\x04\x4f\x00\x20\x04\x46\x04\x32\x04\x35\x04\ +\x42\x04\x30\x00\x2c\x00\x20\x04\x32\x04\x4b\x00\x20\x04\x34\x04\ +\x3e\x04\x3b\x04\x36\x04\x3d\x04\x4b\x00\x20\x04\x43\x04\x3a\x04\ +\x30\x04\x37\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x44\x04\x30\x04\ +\x39\x04\x3b\x00\x20\x04\x3f\x04\x40\x04\x35\x04\x3e\x04\x31\x04\ +\x40\x04\x30\x04\x37\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x38\x04\ +\x4f\x00\x20\x04\x46\x04\x32\x04\x35\x04\x42\x04\x30\x00\x2c\x00\ +\x20\x04\x41\x04\x3e\x04\x34\x04\x35\x04\x40\x04\x36\x04\x30\x04\ +\x49\x04\x38\x04\x39\x00\x20\x04\x42\x04\x30\x04\x31\x04\x3b\x04\ +\x38\x04\x46\x04\x43\x00\x20\x04\x3f\x04\x35\x04\x40\x04\x35\x04\ +\x32\x04\x3e\x04\x34\x04\x30\x00\x2c\x00\x20\x04\x41\x04\x3e\x04\ +\x33\x04\x3b\x04\x30\x04\x41\x04\x3d\x04\x3e\x00\x20\x04\x3a\x04\ +\x3e\x04\x42\x04\x3e\x04\x40\x04\x3e\x04\x39\x00\x2c\x00\x20\x04\ +\x46\x04\x32\x04\x35\x04\x42\x04\x30\x00\x20\x04\x31\x04\x43\x04\ +\x34\x04\x43\x04\x42\x00\x20\x04\x3f\x04\x40\x04\x35\x04\x3e\x04\ +\x31\x04\x40\x04\x30\x04\x37\x04\x3e\x04\x32\x04\x4b\x04\x32\x04\ +\x30\x04\x42\x04\x4c\x04\x41\x04\x4f\x00\x20\x04\x32\x00\x20\x04\ +\x42\x04\x3e\x04\x3b\x04\x49\x04\x38\x04\x3d\x04\x4b\x00\x20\x04\ +\x3b\x04\x38\x04\x3d\x04\x38\x04\x39\x00\x0a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\xe3\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\ +\x20\x6d\x65\x74\x68\x6f\x64\x20\x63\x68\x6f\x6f\x73\x65\x64\x20\ +\x66\x6f\x72\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\x6f\x72\ +\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6e\x67\x20\x44\x58\x46\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x63\x6f\x6c\x6f\x72\x20\x69\x6e\ +\x74\x6f\x20\x46\x72\x65\x65\x43\x41\x44\x2e\x20\x0a\x49\x66\x20\ +\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x69\x73\ +\x20\x63\x68\x6f\x6f\x73\x65\x64\x2c\x20\x79\x6f\x75\x20\x6d\x75\ +\x73\x74\x20\x63\x68\x6f\x6f\x73\x65\x20\x61\x20\x63\x6f\x6c\x6f\ +\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x20\x63\ +\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x61\x20\x74\x72\x61\x6e\ +\x73\x6c\x61\x74\x69\x6f\x6e\x20\x74\x61\x62\x6c\x65\x20\x74\x68\ +\x61\x74\x20\x77\x69\x6c\x6c\x20\x63\x6f\x6e\x76\x65\x72\x74\x20\ +\x63\x6f\x6c\x6f\x72\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\x65\ +\x77\x69\x64\x74\x68\x73\x2e\x0a\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xe8\ +\x04\x2d\x04\x42\x04\x3e\x00\x20\x04\x3e\x04\x40\x04\x38\x04\x35\ +\x04\x3d\x04\x42\x04\x30\x04\x46\x04\x38\x04\x4f\x00\x20\x04\x40\ +\x04\x30\x04\x37\x04\x3c\x04\x35\x04\x40\x04\x3d\x04\x3e\x04\x41\ +\x04\x42\x04\x38\x00\x20\x04\x42\x04\x35\x04\x3a\x04\x41\x04\x42\ +\x04\x3e\x04\x32\x00\x2c\x00\x20\x04\x3a\x04\x3e\x04\x33\x04\x34\ +\x04\x30\x00\x20\x04\x4d\x04\x42\x04\x38\x00\x20\x04\x40\x04\x30\ +\x04\x37\x04\x3c\x04\x35\x04\x40\x04\x3d\x04\x3e\x04\x41\x04\x42\ +\x04\x38\x00\x20\x04\x32\x04\x35\x04\x40\x04\x42\x04\x38\x04\x3a\ +\x04\x30\x04\x3b\x04\x4c\x04\x3d\x04\x4b\x00\x2e\x00\x20\x04\x1f\ +\x04\x3e\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\ +\x04\x3d\x04\x38\x04\x4e\x00\x20\x00\x2d\x00\x20\x04\x32\x04\x3b\ +\x04\x35\x04\x32\x04\x3e\x00\x2c\x00\x20\x04\x41\x04\x3e\x04\x33\ +\x04\x3b\x04\x30\x04\x41\x04\x3d\x04\x3e\x00\x20\x04\x41\x04\x42\ +\x04\x30\x04\x3d\x04\x34\x04\x30\x04\x40\x04\x42\x04\x30\x00\x20\ +\x00\x49\x00\x53\x00\x4f\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x7e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6f\x72\ +\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\ +\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x20\x74\x65\x78\x74\x73\ +\x20\x77\x68\x65\x6e\x20\x74\x68\x6f\x73\x65\x20\x64\x69\x6d\x65\ +\x6e\x73\x69\x6f\x6e\x73\x20\x61\x72\x65\x20\x76\x65\x72\x74\x69\ +\x63\x61\x6c\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x69\x73\x20\ +\x6c\x65\x66\x74\x2c\x20\x77\x68\x69\x63\x68\x20\x69\x73\x20\x74\ +\x68\x65\x20\x49\x53\x4f\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x2e\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x01\x1c\x04\x2d\x04\x42\x04\x3e\x00\x20\ +\x04\x37\x04\x3d\x04\x30\x04\x47\x04\x35\x04\x3d\x04\x38\x04\x35\ +\x00\x20\x04\x38\x04\x41\x04\x3f\x04\x3e\x04\x3b\x04\x4c\x04\x37\ +\x04\x43\x04\x35\x04\x42\x04\x41\x04\x4f\x00\x20\x04\x44\x04\x43\ +\x04\x3d\x04\x3a\x04\x46\x04\x38\x04\x4f\x04\x3c\x04\x38\x00\x2c\ +\x00\x20\x04\x3a\x04\x3e\x04\x42\x04\x3e\x04\x40\x04\x4b\x04\x35\ +\x00\x20\x04\x38\x04\x41\x04\x3f\x04\x3e\x04\x3b\x04\x4c\x04\x37\ +\x04\x43\x04\x4e\x04\x42\x00\x20\x04\x34\x04\x3e\x04\x3f\x04\x43\ +\x04\x41\x04\x3a\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3d\x04\x3e\ +\x04\x41\x04\x42\x04\x38\x00\x2e\x00\x0a\x04\x17\x04\x3d\x04\x30\ +\x04\x47\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\x2c\x00\x20\x04\x3e\ +\x04\x42\x04\x3a\x04\x3b\x04\x3e\x04\x3d\x04\x4f\x04\x4e\x04\x49\ +\x04\x38\x04\x35\x04\x41\x04\x4f\x00\x20\x04\x3d\x04\x30\x00\x20\ +\x04\x3c\x04\x35\x04\x3d\x04\x4c\x04\x48\x04\x43\x04\x4e\x00\x20\ +\x04\x32\x04\x35\x04\x3b\x04\x38\x04\x47\x04\x38\x04\x3d\x04\x43\ +\x00\x2c\x00\x20\x04\x31\x04\x43\x04\x34\x04\x43\x04\x42\x00\x20\ +\x04\x42\x04\x30\x04\x3a\x04\x36\x04\x35\x00\x20\x04\x3f\x04\x40\ +\x04\x38\x04\x35\x04\x3c\x04\x3b\x04\x35\x04\x3c\x04\x4b\x04\x3c\ +\x04\x38\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7b\x54\x68\ +\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x76\x61\x6c\x75\x65\x20\ +\x75\x73\x65\x64\x20\x62\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\ +\x73\x20\x74\x68\x61\x74\x20\x75\x73\x65\x20\x61\x20\x74\x6f\x6c\ +\x65\x72\x61\x6e\x63\x65\x2e\x0a\x56\x61\x6c\x75\x65\x73\x20\x77\ +\x69\x74\x68\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x63\x65\x73\x20\ +\x62\x65\x6c\x6f\x77\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\ +\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x74\x72\x65\x61\x74\x65\x64\ +\x20\x61\x73\x20\x73\x61\x6d\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x10\x04\x22\x04\x3e\x04\x47\x04\x3d\x04\x3e\x04\x41\x04\x42\x04\ +\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\x6f\x6c\x65\x72\ +\x61\x6e\x63\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x04\x1f\x04\x30\ +\x04\x3d\x04\x35\x04\x3b\x04\x4c\x00\x20\x04\x38\x04\x3d\x04\x41\ +\x04\x42\x04\x40\x04\x43\x04\x3c\x04\x35\x04\x3d\x04\x42\x04\x3e\ +\x04\x32\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x54\x6f\x6f\x6c\ +\x62\x61\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x54\x00\x72\x00\ +\x61\x00\x6e\x00\x73\x00\x6c\x00\x61\x00\x74\x00\x65\x00\x20\x00\ +\x77\x00\x68\x00\x69\x00\x74\x00\x65\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ +\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x6c\x00\x61\x00\x63\x00\ +\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x54\x72\x61\x6e\x73\ +\x6c\x61\x74\x65\x20\x77\x68\x69\x74\x65\x20\x6c\x69\x6e\x65\x20\ +\x63\x6f\x6c\x6f\x72\x20\x74\x6f\x20\x62\x6c\x61\x63\x6b\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x40\x00\x54\x00\x72\x00\x61\x00\x6e\x00\x73\ +\x00\x6c\x00\x61\x00\x74\x00\x65\x00\x64\x00\x20\x00\x28\x00\x66\ +\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x72\x00\x69\x00\x6e\x00\x74\ +\x00\x20\x00\x26\x00\x20\x00\x64\x00\x69\x00\x73\x00\x70\x00\x6c\ +\x00\x61\x00\x79\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\ +\x54\x72\x61\x6e\x73\x6c\x61\x74\x65\x64\x20\x28\x66\x6f\x72\x20\ +\x70\x72\x69\x6e\x74\x20\x26\x20\x64\x69\x73\x70\x6c\x61\x79\x29\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x5c\x04\x18\x04\x41\x04\x3f\x04\x3e\ +\x04\x3b\x04\x4c\x04\x37\x04\x3e\x04\x32\x04\x30\x04\x42\x04\x4c\ +\x00\x20\x04\x46\x04\x32\x04\x35\x04\x42\x00\x20\x04\x38\x00\x20\ +\x04\x42\x04\x3e\x04\x3b\x04\x49\x04\x38\x04\x3d\x04\x43\x00\x20\ +\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x38\x00\x20\x04\x3f\x04\x3e\ +\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\ +\x04\x38\x04\x4e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x55\x73\ +\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\ +\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x26\x04\x18\x04\x41\x04\x3f\x04\x3e\x04\x3b\x04\ +\x4c\x04\x37\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x38\x04\x35\x00\ +\x20\x04\x41\x04\x35\x04\x42\x04\x3a\x04\x38\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x55\x73\x65\x20\x67\x72\x69\x64\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x40\x00\x55\x00\x73\x00\x65\x00\x20\x00\x73\x00\ +\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x20\x00\ +\x66\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x73\x00\x69\x00\x7a\x00\ +\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x65\x00\ +\x78\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x55\ +\x73\x65\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x66\x6f\x6e\x74\ +\x20\x73\x69\x7a\x65\x20\x66\x6f\x72\x20\x74\x65\x78\x74\x73\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x4c\x04\x12\x04\x35\x04\x40\x04\x42\x04\ +\x38\x04\x3a\x04\x30\x04\x3b\x04\x4c\x04\x3d\x04\x4b\x04\x35\x00\ +\x20\x04\x40\x04\x30\x04\x37\x04\x3c\x04\x35\x04\x40\x04\x4b\x00\ +\x20\x04\x3e\x04\x40\x04\x38\x04\x35\x04\x3d\x04\x42\x04\x30\x04\ +\x46\x04\x38\x04\x38\x00\x20\x04\x42\x04\x35\x04\x3a\x04\x41\x04\ +\x42\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x56\x65\x72\ +\x74\x69\x63\x61\x6c\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\ +\x20\x74\x65\x78\x74\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\ +\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\xe6\x00\x57\x00\x68\x00\x65\x00\ +\x6e\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\ +\x76\x00\x69\x00\x65\x00\x77\x00\x73\x00\x2c\x00\x20\x00\x6d\x00\ +\x61\x00\x6b\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\ +\x77\x00\x68\x00\x69\x00\x74\x00\x65\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x65\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x20\x00\x61\x00\ +\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\x20\x00\x69\x00\x6e\x00\ +\x20\x00\x62\x00\x6c\x00\x61\x00\x63\x00\x6b\x00\x2c\x00\x20\x00\ +\x66\x00\x6f\x00\x72\x00\x20\x00\x62\x00\x65\x00\x74\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x72\x00\x65\x00\x61\x00\x64\x00\x61\x00\ +\x62\x00\x69\x00\x6c\x00\x69\x00\x74\x00\x79\x00\x20\x00\x61\x00\ +\x67\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x20\x00\x77\x00\ +\x68\x00\x69\x00\x74\x00\x65\x00\x20\x00\x62\x00\x61\x00\x63\x00\ +\x6b\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x73\x57\x68\x65\x6e\x20\x65\x78\ +\x70\x6f\x72\x74\x69\x6e\x67\x20\x53\x56\x47\x20\x76\x69\x65\x77\ +\x73\x2c\x20\x6d\x61\x6b\x65\x20\x61\x6c\x6c\x20\x77\x68\x69\x74\ +\x65\x20\x6c\x69\x6e\x65\x77\x6f\x72\x6b\x20\x61\x70\x70\x65\x61\ +\x72\x20\x69\x6e\x20\x62\x6c\x61\x63\x6b\x2c\x20\x66\x6f\x72\x20\ +\x62\x65\x74\x74\x65\x72\x20\x72\x65\x61\x64\x61\x62\x69\x6c\x69\ +\x74\x79\x20\x61\x67\x61\x69\x6e\x73\x74\x20\x77\x68\x69\x74\x65\ +\x20\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x73\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x01\x72\x04\x1f\x04\x40\x04\x38\x00\x20\x04\x4d\x04\x3a\ +\x04\x41\x04\x3f\x04\x3e\x04\x40\x04\x42\x04\x35\x00\x20\x04\x41\ +\x04\x3f\x04\x3b\x04\x30\x04\x39\x04\x3d\x04\x3e\x04\x32\x00\x20\ +\x04\x32\x00\x20\x00\x44\x00\x58\x00\x46\x00\x2c\x00\x20\x04\x3e\ +\x04\x3d\x04\x38\x00\x20\x04\x3f\x04\x40\x04\x35\x04\x32\x04\x40\ +\x04\x30\x04\x49\x04\x30\x04\x4e\x04\x42\x04\x41\x04\x4f\x00\x20\ +\x04\x32\x00\x20\x04\x3f\x04\x3e\x04\x3b\x04\x38\x04\x3b\x04\x38\ +\x04\x3d\x04\x38\x04\x38\x00\x2e\x00\x20\x04\x2d\x04\x42\x04\x3e\ +\x00\x20\x04\x37\x04\x3d\x04\x30\x04\x47\x04\x35\x04\x3d\x04\x38\ +\x04\x35\x00\x20\x04\x3c\x04\x30\x04\x3a\x04\x41\x04\x38\x04\x3c\ +\x04\x30\x04\x3b\x04\x4c\x04\x3d\x04\x3e\x04\x39\x00\x20\x04\x34\ +\x04\x3b\x04\x38\x04\x3d\x04\x4b\x00\x20\x04\x34\x04\x3b\x04\x4f\ +\x00\x20\x04\x3a\x04\x30\x04\x36\x04\x34\x04\x3e\x04\x33\x04\x3e\ +\x00\x20\x04\x38\x04\x37\x00\x20\x04\x41\x04\x35\x04\x33\x04\x3c\ +\x04\x35\x04\x3d\x04\x42\x04\x3e\x04\x32\x00\x20\x04\x3f\x04\x3e\ +\x04\x3b\x04\x38\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x38\x00\x2e\ +\x00\x20\x04\x15\x04\x41\x04\x3b\x04\x38\x00\x20\x00\x30\x00\x2c\ +\x00\x20\x04\x42\x04\x3e\x00\x20\x04\x32\x04\x35\x04\x41\x04\x4c\ +\x00\x20\x04\x41\x04\x3f\x04\x3b\x04\x30\x04\x39\x04\x3d\x00\x20\ +\x04\x40\x04\x30\x04\x41\x04\x41\x04\x3c\x04\x30\x04\x42\x04\x40\ +\x04\x38\x04\x32\x04\x30\x04\x35\x04\x42\x04\x41\x04\x4f\x00\x20\ +\x04\x3a\x04\x30\x04\x3a\x00\x20\x04\x3f\x04\x40\x04\x4f\x04\x3c\ +\x04\x3e\x04\x39\x00\x20\x04\x3e\x04\x42\x04\x40\x04\x35\x04\x37\ +\x04\x3e\x04\x3a\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\xc2\ +\x57\x68\x65\x6e\x20\x65\x78\x70\x6f\x72\x74\x69\x6e\x67\x20\x73\ +\x70\x6c\x69\x6e\x65\x73\x20\x74\x6f\x20\x44\x58\x46\x2c\x20\x74\ +\x68\x65\x79\x20\x61\x72\x65\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\ +\x6d\x65\x64\x20\x69\x6e\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x73\ +\x2e\x20\x54\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x69\x73\x20\ +\x74\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6c\x65\x6e\x67\ +\x74\x68\x20\x6f\x66\x20\x65\x61\x63\x68\x20\x6f\x66\x20\x74\x68\ +\x65\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x20\x73\x65\x67\x6d\x65\ +\x6e\x74\x73\x2e\x20\x49\x66\x20\x30\x2c\x20\x74\x68\x65\x6e\x20\ +\x74\x68\x65\x20\x77\x68\x6f\x6c\x65\x20\x73\x70\x6c\x69\x6e\x65\ +\x20\x69\x73\x20\x74\x72\x65\x61\x74\x65\x64\x20\x61\x73\x20\x61\ +\x20\x73\x74\x72\x61\x69\x67\x68\x74\x20\x73\x65\x67\x6d\x65\x6e\ +\x74\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x58\x00\x59\x00\x20\ +\x00\x28\x00\x63\x04\x32\x04\x35\x04\x40\x04\x45\x04\x43\x00\x29\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x58\x59\x20\x28\x54\x6f\ +\x70\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x58\x00\x5a\x00\x20\ +\x00\x28\x04\x41\x04\x3f\x04\x35\x04\x40\x04\x35\x04\x34\x04\x38\ +\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x58\x5a\x20\x28\ +\x46\x72\x6f\x6e\x74\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x59\ +\x00\x5a\x00\x20\x00\x28\x04\x41\x04\x31\x04\x3e\x04\x3a\x04\x43\ +\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x59\x5a\x20\x28\ +\x53\x69\x64\x65\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\x00\x41\x00\ +\x6c\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x61\x6c\x74\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\xca\x04\x43\x04\x41\x04\x42\x04\x30\ +\x04\x3d\x04\x3e\x04\x32\x04\x38\x04\x42\x04\x35\x00\x20\x04\x44\ +\x04\x3b\x04\x30\x04\x36\x04\x3e\x04\x3a\x00\x2c\x00\x20\x04\x35\ +\x04\x41\x04\x3b\x04\x38\x00\x20\x04\x32\x04\x4b\x00\x20\x04\x45\ +\x04\x3e\x04\x42\x04\x38\x04\x42\x04\x35\x00\x20\x04\x38\x04\x41\ +\x04\x3f\x04\x3e\x04\x3b\x04\x4c\x04\x37\x04\x3e\x04\x32\x04\x30\ +\x04\x42\x04\x4c\x00\x20\x04\x46\x04\x32\x04\x35\x04\x42\x00\x2f\ +\x04\x42\x04\x3e\x04\x3b\x04\x49\x04\x38\x04\x3d\x04\x43\x00\x20\ +\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x38\x00\x20\x04\x3f\x04\x3e\ +\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\ +\x04\x38\x04\x4e\x00\x20\x04\x3d\x04\x30\x00\x20\x04\x3f\x04\x30\ +\x04\x3d\x04\x35\x04\x3b\x04\x38\x00\x20\x04\x38\x04\x3d\x04\x41\ +\x04\x42\x04\x40\x04\x43\x04\x3c\x04\x35\x04\x3d\x04\x42\x04\x3e\ +\x04\x32\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x63\x68\x65\x63\ +\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x79\x6f\x75\x20\x77\x61\ +\x6e\x74\x20\x74\x6f\x20\x75\x73\x65\x20\x74\x68\x65\x20\x63\x6f\ +\x6c\x6f\x72\x2f\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\x66\x72\ +\x6f\x6d\x20\x74\x68\x65\x20\x74\x6f\x6f\x6c\x62\x61\x72\x20\x61\ +\x73\x20\x64\x65\x66\x61\x75\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x08\x00\x43\x00\x74\x00\x72\x00\x6c\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x63\x74\x72\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xce\x00\ +\x69\x00\x66\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\ +\x65\x00\x64\x00\x2c\x00\x20\x00\x61\x00\x20\x00\x77\x00\x69\x00\ +\x64\x00\x67\x00\x65\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x64\x00\ +\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\ +\x65\x00\x6e\x00\x74\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\ +\x65\x00\x20\x00\x6f\x00\x72\x00\x69\x00\x65\x00\x6e\x00\x74\x00\ +\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x70\x00\ +\x70\x00\x65\x00\x61\x00\x72\x00\x73\x00\x20\x00\x64\x00\x75\x00\ +\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x64\x00\x72\x00\x61\x00\ +\x77\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x70\x00\x65\x00\ +\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x67\x69\x66\x20\x63\x68\x65\x63\x6b\x65\ +\x64\x2c\x20\x61\x20\x77\x69\x64\x67\x65\x74\x20\x69\x6e\x64\x69\ +\x63\x61\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\ +\x6e\x74\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\ +\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x61\x70\x70\ +\x65\x61\x72\x73\x20\x64\x75\x72\x69\x6e\x67\x20\x64\x72\x61\x77\ +\x69\x6e\x67\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x01\x18\x04\x15\x04\x41\x04\x3b\x04\x38\x00\x20\ +\x04\x4d\x04\x42\x04\x3e\x04\x42\x00\x20\x04\x3f\x04\x30\x04\x40\ +\x04\x30\x04\x3c\x04\x35\x04\x42\x04\x40\x00\x20\x04\x32\x04\x4b\ +\x04\x31\x04\x40\x04\x30\x04\x3d\x00\x2c\x00\x20\x04\x3e\x04\x31\ +\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x4b\x00\x20\x04\x3e\x04\x34\ +\x04\x3d\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\x41\x04\x3b\x04\x3e\ +\x04\x4f\x00\x20\x04\x31\x04\x43\x04\x34\x04\x43\x04\x42\x00\x20\ +\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x34\x04\x38\x04\x3d\x04\x35\ +\x04\x3d\x04\x4b\x00\x20\x04\x32\x00\x20\x04\x31\x04\x3b\x04\x3e\ +\x04\x3a\x04\x38\x00\x2e\x00\x20\x04\x2d\x04\x42\x04\x3e\x00\x20\ +\x04\x43\x04\x41\x04\x3a\x04\x3e\x04\x40\x04\x38\x04\x42\x00\x20\ +\x04\x40\x04\x30\x04\x31\x04\x3e\x04\x42\x04\x43\x00\x20\x04\x41\ +\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x30\ +\x04\x3c\x04\x38\x00\x2c\x00\x20\x04\x3d\x04\x3e\x00\x20\x04\x41\ +\x04\x34\x04\x35\x04\x3b\x04\x30\x04\x35\x04\x42\x00\x20\x04\x41\ +\x04\x3b\x04\x3e\x04\x36\x04\x3d\x04\x35\x04\x35\x00\x20\x04\x32\ +\x00\x20\x04\x40\x04\x35\x04\x34\x04\x30\x04\x3a\x04\x42\x04\x38\ +\x04\x40\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x38\x04\x38\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x93\x69\x66\x20\x74\x68\x69\x73\x20\ +\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x61\x6d\ +\x65\x20\x6c\x61\x79\x65\x72\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\ +\x20\x6a\x6f\x69\x6e\x65\x64\x20\x69\x6e\x74\x6f\x20\x44\x72\x61\ +\x66\x74\x20\x42\x6c\x6f\x63\x6b\x73\x2c\x20\x74\x75\x72\x6e\x69\ +\x6e\x67\x20\x74\x68\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x66\ +\x61\x73\x74\x65\x72\x2c\x20\x62\x75\x74\x20\x6d\x61\x6b\x69\x6e\ +\x67\x20\x74\x68\x65\x6d\x20\x6c\x65\x73\x73\x20\x65\x61\x73\x69\ +\x6c\x79\x20\x65\x64\x69\x74\x61\x62\x6c\x65\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x9a\x04\x35\x04\x41\x04\x3b\x04\x38\x00\x20\x04\x32\x04\ +\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x00\x20\x04\x4d\x04\x42\x04\ +\x3e\x04\x42\x00\x20\x04\x3f\x04\x43\x04\x3d\x04\x3a\x04\x42\x00\ +\x2c\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\ +\x4b\x00\x20\x04\x32\x00\x20\x04\x3f\x04\x40\x04\x3e\x04\x41\x04\ +\x42\x04\x40\x04\x30\x04\x3d\x04\x41\x04\x42\x04\x32\x04\x35\x00\ +\x20\x04\x3b\x04\x38\x04\x41\x04\x42\x04\x30\x00\x20\x04\x31\x04\ +\x43\x04\x34\x04\x43\x04\x42\x00\x20\x04\x42\x04\x3e\x04\x36\x04\ +\x35\x00\x20\x04\x38\x04\x3c\x04\x3f\x04\x3e\x04\x40\x04\x42\x04\ +\x38\x04\x40\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x4b\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x3c\x69\x66\x20\x74\x68\x69\x73\x20\x69\ +\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x70\x61\x70\x65\x72\ +\x20\x73\x70\x61\x63\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\ +\x69\x6c\x6c\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\ +\x74\x6f\x6f\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x8a\x04\x35\x04\x41\x04\ +\x3b\x04\x38\x00\x20\x04\x4d\x04\x42\x04\x3e\x04\x42\x00\x20\x04\ +\x3f\x04\x43\x04\x3d\x04\x3a\x04\x42\x00\x20\x04\x3d\x04\x35\x00\ +\x20\x04\x32\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x00\x2c\x00\ +\x20\x04\x42\x04\x35\x04\x3a\x04\x41\x04\x42\x04\x4b\x00\x2f\x04\ +\x3c\x04\x43\x04\x3b\x04\x4c\x04\x42\x04\x38\x04\x42\x04\x35\x04\ +\x3a\x04\x41\x04\x42\x04\x4b\x00\x20\x04\x38\x04\x3c\x04\x3f\x04\ +\x3e\x04\x40\x04\x42\x04\x38\x04\x40\x04\x3e\x04\x32\x04\x30\x04\ +\x3d\x04\x4b\x00\x20\x04\x3d\x04\x35\x00\x20\x04\x31\x04\x43\x04\ +\x34\x04\x43\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x69\ +\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x75\x6e\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x74\x65\x78\x74\x73\x2f\x6d\x74\x65\x78\x74\ +\x73\x20\x77\x6f\x6e\x27\x74\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\ +\x74\x65\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x04\x3f\x04\x38\x04\ +\x3a\x04\x41\x04\x35\x04\x3b\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x02\x70\x78\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x53\x00\x68\x00\ +\x69\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x73\ +\x68\x69\x66\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x48\x04\x46\x04\x32\ +\x04\x35\x04\x42\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\x3c\ +\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\x00\x20\ +\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3d\x04\x3e\x04\x32\x04\x4b\ +\x04\x45\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\ +\x04\x3e\x04\x32\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x74\x68\ +\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\ +\x66\x6f\x72\x20\x6e\x65\x77\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x4e\x04\x46\x04\x32\x04\x35\x04\x42\x00\ +\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\ +\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\x00\x20\x04\x34\x04\x3b\x04\ +\x4f\x00\x20\x04\x41\x04\x38\x04\x3c\x04\x32\x04\x3e\x04\x3b\x04\ +\x3e\x04\x32\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x04\x4f\x04\ +\x37\x04\x3a\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x74\ +\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\ +\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x20\x73\x79\x6d\x62\x6f\x6c\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x5a\x04\x42\x04\x3e\x04\x3b\x04\ +\x49\x04\x38\x04\x3d\x04\x30\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\ +\x38\x04\x38\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\x3c\x04\ +\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\x00\x20\x04\ +\x34\x04\x3b\x04\x4f\x00\x20\x04\x3d\x04\x3e\x04\x32\x04\x4b\x04\ +\x45\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\ +\x3e\x04\x32\x08\x00\x00\x00\x00\x06\x00\x00\x00\x25\x74\x68\x65\ +\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x6c\x69\x6e\x65\x77\x69\x64\ +\x74\x68\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x26\x04\x17\x04\x30\ +\x04\x3a\x04\x40\x04\x4b\x04\x42\x04\x4c\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x26\x43\x6c\x6f\x73\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x04\x1f\x04\x40\x04\x3e\ +\x04\x34\x04\x3e\x04\x3b\x04\x36\x04\x38\x04\x42\x04\x4c\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x26\x43\x6f\x6e\x74\x69\x6e\x75\ +\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x16\x00\x26\x04\x1a\x04\x3e\x04\x3f\x04\x38\x04\x40\x04\x3e\x04\ +\x32\x04\x30\x04\x42\x04\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x05\x26\x43\x6f\x70\x79\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x12\x00\x26\x04\x27\x04\x35\x04\x40\x04\x47\ +\x04\x35\x04\x3d\x04\x38\x04\x35\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x06\x26\x44\x72\x61\x66\x74\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x26\x04\x13\x04\x3e\x04\x42\ +\x04\x3e\x04\x32\x04\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ +\x26\x46\x69\x6e\x69\x73\x68\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x2a\x04\x21\x04\x3c\x04\x35\x04\x49\x04\ +\x35\x04\x3d\x04\x38\x04\x35\x00\x20\x04\x32\x00\x20\x04\x41\x04\ +\x42\x04\x38\x04\x3b\x04\x35\x00\x20\x00\x26\x00\x4f\x00\x43\x00\ +\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x26\x4f\x43\x43\x2d\ +\x73\x74\x79\x6c\x65\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x26\x04\x1e\ +\x04\x42\x04\x3d\x04\x3e\x04\x41\x04\x38\x04\x42\x04\x35\x04\x3b\ +\x04\x4c\x04\x3d\x04\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x26\x52\x65\x6c\x61\x74\x69\x76\x65\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x26\x04\x1e\x04\x42\x04\ +\x3c\x04\x35\x04\x3d\x04\x38\x04\x42\x04\x4c\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x05\x26\x55\x6e\x64\x6f\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x04\x21\x04\x42\x04\x35\ +\x04\x40\x04\x35\x04\x42\x04\x4c\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x26\x57\x69\x70\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x32\x04\x10\x04\x3a\x04\x42\x04\x38\x04\ +\x32\x04\x3d\x04\x30\x04\x4f\x00\x20\x04\x3a\x04\x3e\x04\x3c\x04\ +\x30\x04\x3d\x04\x34\x04\x30\x00\x20\x04\x47\x04\x35\x04\x40\x04\ +\x47\x04\x35\x04\x3d\x04\x38\x04\x4f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x14\x41\x63\x74\x69\x76\x65\x20\x44\x72\x61\x66\x74\x20\ +\x63\x6f\x6d\x6d\x61\x6e\x64\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x68\x04\x10\x04\x3a\x04\x42\x04\x38\x04\ +\x32\x04\x3d\x04\x4b\x04\x39\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\ +\x35\x04\x3a\x04\x42\x00\x20\x04\x34\x04\x3e\x04\x3b\x04\x36\x04\ +\x35\x04\x3d\x00\x20\x04\x38\x04\x3c\x04\x35\x04\x42\x04\x4c\x00\ +\x20\x04\x31\x04\x3e\x04\x3b\x04\x35\x04\x35\x00\x20\x04\x34\x04\ +\x32\x04\x43\x04\x45\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x35\x04\ +\x3a\x00\x2f\x04\x43\x04\x37\x04\x3b\x04\x3e\x04\x32\x00\x20\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x33\x41\x63\x74\x69\x76\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x6d\x75\x73\x74\x20\x68\x61\x76\x65\ +\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\x74\x77\x6f\x20\x70\ +\x6f\x69\x6e\x74\x73\x2f\x6e\x6f\x64\x65\x73\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x04\x14\x04\x3e\ +\x04\x31\x04\x30\x04\x32\x04\x3b\x04\x35\x04\x3d\x04\x38\x04\x35\ +\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x35\x04\x3a\x00\x20\x04\x3a\ +\x00\x20\x04\x42\x04\x35\x04\x3a\x04\x43\x04\x49\x04\x35\x04\x3c\ +\x04\x43\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\ +\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x41\x64\x64\x20\ +\x70\x6f\x69\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x63\x75\ +\x72\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x04\x1e\x04\x42\ +\x04\x32\x04\x35\x04\x40\x04\x41\x04\x42\x04\x38\x04\x35\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x08\x41\x70\x65\x72\x74\x75\x72\x65\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\ +\x04\x23\x04\x33\x04\x3e\x04\x3b\x00\x20\x04\x3f\x04\x40\x04\x38\ +\x04\x46\x04\x35\x04\x3b\x04\x30\x00\x3a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x41\x70\x65\x72\x74\x75\x72\x65\x20\x61\x6e\x67\ +\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x3c\x04\x1f\x04\x40\x04\x38\x04\x3c\x04\x35\x04\x3d\ +\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x3a\x00\x20\x04\x32\x04\x4b\ +\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3d\x04\x4b\x04\x3c\x00\x20\ +\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x30\x04\x3c\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x41\x70\x70\x6c\x79\x20\ +\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x08\x04\x14\x04\x43\x04\x33\x04\x30\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x03\x41\x72\x63\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x42\x00\x53\x00\x70\x00\x6c\ +\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ +\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x56\x04\x1d\x04\x35\x00\x20\x04\x43\x04\ +\x34\x04\x30\x04\x35\x04\x42\x04\x41\x04\x4f\x00\x20\x04\x3a\x04\ +\x3e\x04\x3c\x04\x3f\x04\x35\x04\x3d\x04\x41\x04\x38\x04\x40\x04\ +\x3e\x04\x32\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x4d\x04\x42\x04\ +\x3e\x04\x42\x00\x20\x04\x42\x04\x38\x04\x3f\x00\x20\x04\x3e\x04\ +\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x30\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1f\x43\x61\x6e\x6e\x6f\x74\x20\x6f\x66\ +\x66\x73\x65\x74\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x74\x79\x70\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0e\x04\x26\x04\x35\x04\x3d\x04\x42\x04\x40\ +\x00\x20\x00\x58\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x65\ +\x6e\x74\x65\x72\x20\x58\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x1c\x04\x18\x04\x37\x04\x3c\x04\x35\x04\x3d\ +\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x21\x04\x42\x04\x38\x04\x3b\ +\x04\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x68\x61\x6e\ +\x67\x65\x20\x53\x74\x79\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\xf2\x04\x23\x04\x41\x04\x42\x04\x30\ +\x04\x3d\x04\x3e\x04\x32\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x44\ +\x04\x3b\x04\x30\x04\x36\x04\x3e\x04\x3a\x00\x20\x04\x35\x04\x41\ +\x04\x3b\x04\x38\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\ +\x04\x42\x00\x20\x04\x34\x04\x3e\x04\x3b\x04\x36\x04\x35\x04\x3d\ +\x00\x20\x04\x3e\x04\x42\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x36\ +\x04\x30\x04\x42\x04\x4c\x04\x41\x04\x4f\x00\x20\x04\x3a\x04\x30\ +\x04\x3a\x00\x20\x04\x37\x04\x30\x04\x3f\x04\x3e\x04\x3b\x04\x3d\ +\x04\x35\x04\x3d\x04\x4b\x04\x39\x00\x2c\x00\x20\x04\x32\x00\x20\ +\x04\x3f\x04\x40\x04\x3e\x04\x42\x04\x38\x04\x32\x04\x3d\x04\x3e\ +\x04\x3c\x00\x20\x04\x41\x04\x3b\x04\x43\x04\x47\x04\x30\x04\x35\ +\x00\x20\x04\x3e\x04\x3d\x00\x20\x04\x31\x04\x43\x04\x34\x04\x35\ +\x04\x42\x00\x20\x04\x3e\x04\x42\x04\x3e\x04\x31\x04\x40\x04\x30\ +\x04\x36\x04\x30\x04\x42\x04\x4c\x04\x41\x04\x4f\x00\x20\x04\x3a\ +\x04\x30\x04\x3a\x00\x20\x04\x3a\x04\x30\x04\x40\x04\x3a\x04\x30\ +\x04\x41\x00\x20\x00\x28\x00\x69\x00\x29\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x5b\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\ +\x66\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x73\x68\x6f\ +\x75\x6c\x64\x20\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x66\x69\ +\x6c\x6c\x65\x64\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\ +\x69\x74\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x61\ +\x73\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\x28\x69\x29\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x04\ +\x1e\x04\x3a\x04\x40\x04\x43\x04\x36\x04\x3d\x04\x3e\x04\x41\x04\ +\x42\x04\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\x69\x72\ +\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x2e\x04\x1a\x04\x3e\x04\x3d\x04\x42\x04\x35\x04\x3a\x04\ +\x41\x04\x42\x04\x3d\x04\x4b\x04\x35\x00\x20\x04\x38\x04\x3d\x04\ +\x41\x04\x42\x04\x40\x04\x43\x04\x3c\x04\x35\x04\x3d\x04\x42\x04\ +\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x74\x65\ +\x78\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x7c\x04\x1a\x04\x3e\x04\x3e\x04\x40\ +\x04\x34\x04\x38\x04\x3d\x04\x30\x04\x42\x04\x4b\x00\x20\x04\x3e\ +\x04\x42\x04\x3d\x04\x3e\x04\x41\x04\x38\x04\x42\x04\x35\x04\x3b\ +\x04\x4c\x04\x3d\x04\x3e\x00\x20\x04\x3f\x04\x3e\x04\x41\x04\x3b\ +\x04\x35\x04\x34\x04\x3d\x04\x35\x04\x39\x00\x20\x04\x42\x04\x3e\ +\x04\x47\x04\x3a\x04\x38\x00\x20\x04\x38\x04\x3b\x04\x38\x00\x20\ +\x04\x30\x04\x31\x04\x41\x04\x3e\x04\x3b\x04\x4e\x04\x42\x04\x3d\ +\x04\x4b\x04\x35\x00\x20\x00\x28\x00\x53\x00\x50\x00\x41\x00\x43\ +\x00\x45\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x36\x43\x6f\ +\x6f\x72\x64\x69\x6e\x61\x74\x65\x73\x20\x72\x65\x6c\x61\x74\x69\ +\x76\x65\x20\x74\x6f\x20\x6c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\ +\x20\x6f\x72\x20\x61\x62\x73\x6f\x6c\x75\x74\x65\x20\x28\x53\x50\ +\x41\x43\x45\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x16\x04\x21\x04\x3a\x04\x3e\x04\x3f\x04\x38\x04\x40\ +\x04\x3e\x04\x32\x04\x30\x04\x42\x04\x4c\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x43\x6f\x70\x79\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x43\x00\x6f\x00\x75\x00\x6c\ +\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x75\x00\x70\x00\x67\ +\x00\x72\x00\x61\x00\x64\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x73\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\ +\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x75\x70\x67\x72\x61\x64\x65\ +\x20\x74\x68\x65\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x04\ +\x21\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x42\x04\x4c\x00\x20\x04\ +\x34\x04\x43\x04\x33\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x43\x72\x65\x61\x74\x65\x20\x41\x72\x63\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x04\x21\x04\x3e\x04\ +\x37\x04\x34\x04\x30\x04\x42\x04\x4c\x00\x20\x00\x42\x00\x53\x00\ +\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0e\x43\x72\x65\x61\x74\x65\x20\x42\x53\x70\x6c\x69\x6e\ +\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x18\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x42\x04\x4c\x00\ +\x20\x04\x3a\x04\x40\x04\x43\x04\x33\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x43\x72\x65\x61\x74\x65\x20\x43\x69\x72\x63\x6c\x65\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x44\ +\x00\x57\x00\x69\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0c\x43\x72\x65\x61\x74\x65\x20\x44\x57\x69\x72\x65\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x04\x21\ +\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x18\ +\x04\x37\x04\x3c\x04\x35\x04\x40\x04\x35\x04\x3d\x04\x38\x04\x35\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\x74\x65\ +\x20\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x04\x21\x04\x3e\x04\x37\ +\x04\x34\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x3f\x04\x3e\x04\x3b\ +\x04\x38\x04\x33\x04\x3e\x04\x3d\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0e\x43\x72\x65\x61\x74\x65\x20\x50\x6f\x6c\x79\x67\x6f\x6e\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\ +\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x42\x04\x4c\x00\x20\ +\x04\x3f\x04\x40\x04\x4f\x04\x3c\x04\x3e\x04\x43\x04\x33\x04\x3e\ +\x04\x3b\x04\x4c\x04\x3d\x04\x38\x04\x3a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x43\x72\x65\x61\x74\x65\x20\x52\x65\x63\x74\x61\ +\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x1a\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x42\ +\x04\x4c\x00\x20\x04\x22\x04\x35\x04\x3a\x04\x41\x04\x42\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x54\ +\x65\x78\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0a\x00\x44\x00\x57\x00\x69\x00\x72\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x05\x44\x57\x69\x72\x65\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x44\x00\x57\ +\x00\x69\x00\x72\x00\x65\x00\x20\x00\x68\x00\x61\x00\x73\x00\x20\ +\x00\x62\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x63\x00\x6c\x00\x6f\ +\x00\x73\x00\x65\x00\x64\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x16\x44\x57\x69\x72\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\ +\x20\x63\x6c\x6f\x73\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0c\x04\x20\x04\x30\x04\x37\x04\x3c\ +\x04\x35\x04\x40\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x44\x69\ +\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x14\x04\x20\x04\x30\x04\x41\x04\x41\x04\ +\x42\x04\x3e\x04\x4f\x04\x3d\x04\x38\x04\x35\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x54\x04\x1d\x04\ +\x35\x00\x20\x04\x3f\x04\x40\x04\x3e\x04\x35\x04\x46\x04\x38\x04\ +\x40\x04\x3e\x04\x32\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x42\x04\ +\x3e\x04\x47\x04\x3a\x04\x38\x00\x20\x04\x3d\x04\x30\x00\x20\x04\ +\x3f\x04\x3b\x04\x3e\x04\x41\x04\x3a\x04\x3e\x04\x41\x04\x42\x04\ +\x4c\x00\x20\x04\x40\x04\x38\x04\x41\x04\x43\x04\x3d\x04\x3a\x04\ +\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x44\x6f\x20\x6e\x6f\ +\x74\x20\x70\x72\x6f\x6a\x65\x63\x74\x20\x70\x6f\x69\x6e\x74\x73\ +\x20\x74\x6f\x20\x61\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x70\x6c\ +\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x28\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\ +\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x14\x44\x72\x61\x66\x74\x20\x63\x72\x65\x61\x74\ +\x69\x6f\x6e\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x44\x00\x72\x00\x61\x00\ +\x66\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\ +\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ +\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x18\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\x69\x66\x69\x63\ +\x61\x74\x69\x6f\x6e\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x04\x20\x04\x35\x04\ +\x31\x04\x40\x04\x30\x00\x20\x04\x3d\x04\x35\x00\x20\x04\x3f\x04\ +\x35\x04\x40\x04\x35\x04\x41\x04\x35\x04\x3a\x04\x30\x04\x4e\x04\ +\x42\x04\x41\x04\x4f\x00\x21\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x17\x45\x64\x67\x65\x73\x20\x64\x6f\x6e\x27\x74\x20\x69\x6e\x74\ +\x65\x72\x73\x65\x63\x74\x21\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0c\x04\x1f\x04\x40\x04\x30\x04\x32\ +\x04\x3a\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\ +\x69\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x16\x04\x17\x04\x30\x04\x3f\x04\x3e\x04\x3b\x04\x3d\x04\x35\ +\x04\x3d\x04\x3d\x04\x4b\x04\x39\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x07\x46\x26\x69\x6c\x6c\x65\x64\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x14\x04\x26\x04\x32\x04\x35\x04\ +\x42\x00\x20\x04\x33\x04\x40\x04\x30\x04\x3d\x04\x38\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x46\x61\x63\x65\x20\x43\x6f\x6c\x6f\ +\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x4c\x04\x17\x04\x30\x04\x3a\x04\x3e\x04\x3d\x04\x47\x04\x38\x04\ +\x42\x04\x4c\x00\x20\x04\x38\x00\x20\x04\x37\x04\x30\x04\x3c\x04\ +\x3a\x04\x3d\x04\x43\x04\x42\x04\x4c\x00\x20\x04\x42\x04\x35\x04\ +\x3a\x04\x43\x04\x49\x04\x43\x04\x4e\x00\x20\x04\x3b\x04\x38\x04\ +\x3d\x04\x38\x04\x4e\x00\x20\x00\x28\x00\x43\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x28\x46\x69\x6e\x69\x73\x68\x65\x73\x20\ +\x61\x6e\x64\x20\x63\x6c\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x63\ +\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\x6e\x65\x20\x28\x43\x29\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x70\x04\ +\x17\x04\x30\x04\x32\x04\x35\x04\x40\x04\x48\x04\x38\x04\x42\x04\ +\x4c\x00\x20\x04\x42\x04\x35\x04\x3a\x04\x43\x04\x49\x04\x38\x04\ +\x39\x00\x20\x04\x47\x04\x35\x04\x40\x04\x42\x04\x51\x04\x36\x00\ +\x20\x04\x38\x04\x3b\x04\x38\x00\x20\x04\x3e\x04\x3f\x04\x35\x04\ +\x40\x04\x30\x04\x46\x04\x38\x04\x4e\x00\x20\x04\x40\x04\x35\x04\ +\x34\x04\x30\x04\x3a\x04\x42\x04\x38\x04\x40\x04\x3e\x04\x32\x04\ +\x30\x04\x3d\x04\x38\x04\x4f\x00\x20\x00\x28\x00\x46\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x35\x46\x69\x6e\x69\x73\x68\x65\ +\x73\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x64\x72\ +\x61\x77\x69\x6e\x67\x20\x6f\x72\x20\x65\x64\x69\x74\x69\x6e\x67\ +\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x20\x28\x46\x29\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x04\x20\ +\x04\x30\x04\x37\x04\x3c\x04\x35\x04\x40\x00\x20\x04\x48\x04\x40\ +\x04\x38\x04\x44\x04\x42\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x09\x46\x6f\x6e\x74\x20\x53\x69\x7a\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4e\x00\x46\x00\x6f\x00\ +\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\x63\x00\x69\x00\ +\x72\x00\x63\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x65\x00\ +\x64\x00\x67\x00\x65\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x63\x00\x69\x00\ +\x72\x00\x63\x00\x6c\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x27\x46\x6f\x75\x6e\x64\x20\x31\x20\x63\x69\x72\x63\x75\ +\x6c\x61\x72\x20\x65\x64\x67\x65\x3a\x20\x6d\x61\x6b\x69\x6e\x67\ +\x20\x61\x20\x63\x69\x72\x63\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x66\x04\x1d\x04\x30\x04\x39\ +\x04\x34\x04\x35\x04\x3d\x00\x20\x04\x37\x04\x30\x04\x3a\x04\x40\ +\x04\x4b\x04\x42\x04\x4b\x04\x39\x00\x20\x04\x4d\x04\x41\x04\x3a\ +\x04\x38\x04\x37\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\ +\x04\x42\x04\x30\x00\x3a\x00\x20\x04\x41\x04\x3e\x04\x37\x04\x34\ +\x04\x30\x04\x4e\x00\x20\x04\x38\x04\x37\x00\x20\x04\x3d\x04\x35\ +\x04\x33\x04\x3e\x00\x20\x04\x3b\x04\x38\x04\x46\x04\x3e\x00\x20\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x46\x6f\x75\x6e\x64\x20\ +\x31\x20\x63\x6c\x6f\x73\x65\x64\x20\x73\x6b\x65\x74\x63\x68\x20\ +\x6f\x62\x6a\x65\x63\x74\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\ +\x20\x66\x61\x63\x65\x20\x66\x72\x6f\x6d\x20\x69\x74\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x64\x04\x1d\ +\x04\x30\x04\x39\x04\x34\x04\x35\x04\x3d\x04\x30\x00\x20\x00\x31\ +\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\x35\x04\x40\x04\x45\x04\x3d\ +\x04\x3e\x04\x41\x04\x42\x04\x4c\x00\x3a\x00\x20\x04\x38\x04\x37\ +\x04\x32\x04\x3b\x04\x35\x04\x47\x04\x35\x04\x3d\x04\x38\x04\x35\ +\x00\x20\x04\x35\x04\x35\x00\x20\x04\x3d\x04\x30\x04\x3f\x04\x40\ +\x04\x30\x04\x32\x04\x3b\x04\x4f\x04\x4e\x04\x49\x04\x38\x04\x45\ +\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x46\x6f\x75\x6e\ +\x64\x20\x31\x20\x66\x61\x63\x65\x3a\x20\x65\x78\x74\x72\x61\x63\ +\x74\x69\x6e\x67\x20\x69\x74\x73\x20\x77\x69\x72\x65\x73\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6a\x04\ +\x1d\x04\x30\x04\x39\x04\x34\x04\x35\x04\x3d\x00\x20\x04\x3e\x04\ +\x34\x04\x38\x04\x3d\x00\x20\x04\x3d\x04\x35\x04\x3f\x04\x30\x04\ +\x40\x04\x30\x04\x3c\x04\x35\x04\x42\x04\x40\x04\x38\x04\x47\x04\ +\x35\x04\x41\x04\x3a\x04\x38\x04\x39\x00\x20\x04\x3e\x04\x31\x04\ +\x4a\x04\x35\x04\x3a\x04\x42\x00\x3a\x00\x20\x00\x64\x00\x72\x00\ +\x61\x00\x66\x00\x74\x00\x69\x00\x66\x00\x79\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x69\x00\x74\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2f\x46\x6f\x75\x6e\x64\x20\x31\x20\x6e\x6f\x6e\x2d\x70\ +\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x3a\x20\x64\x72\x61\x66\x74\x69\x66\x79\x69\x6e\x67\x20\x69\ +\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x42\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\ +\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x64\ +\x00\x67\x00\x65\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\ +\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\ +\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x46\x6f\ +\x75\x6e\x64\x20\x31\x20\x6f\x70\x65\x6e\x20\x65\x64\x67\x65\x3a\ +\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x6c\x69\x6e\x65\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x54\x04\ +\x1d\x04\x30\x04\x39\x04\x34\x04\x35\x04\x3d\x00\x20\x04\x3e\x04\ +\x34\x04\x38\x04\x3d\x00\x20\x04\x3e\x04\x42\x04\x3a\x04\x40\x04\ +\x4b\x04\x42\x04\x4b\x04\x39\x00\x20\x04\x3f\x04\x40\x04\x3e\x04\ +\x32\x04\x3e\x04\x34\x00\x3a\x00\x20\x04\x37\x04\x30\x04\x3a\x04\ +\x40\x04\x4b\x04\x32\x04\x30\x04\x4e\x00\x20\x04\x35\x04\x33\x04\ +\x3e\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x46\x6f\x75\ +\x6e\x64\x20\x31\x20\x6f\x70\x65\x6e\x20\x77\x69\x72\x65\x3a\x20\ +\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x7c\x04\x1d\x04\x30\x04\ +\x39\x04\x34\x04\x35\x04\x3d\x00\x20\x04\x3e\x04\x34\x04\x38\x04\ +\x3d\x00\x20\x04\x3f\x04\x30\x04\x40\x04\x30\x04\x3c\x04\x35\x04\ +\x42\x04\x40\x04\x38\x04\x47\x04\x35\x04\x41\x04\x3a\x04\x38\x04\ +\x39\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x00\ +\x3a\x00\x20\x04\x43\x04\x3d\x04\x38\x04\x47\x04\x42\x04\x3e\x04\ +\x36\x04\x30\x04\x4e\x00\x20\x04\x35\x04\x33\x04\x3e\x00\x20\x04\ +\x37\x04\x30\x04\x32\x04\x38\x04\x41\x04\x38\x04\x3c\x04\x3e\x04\ +\x41\x04\x42\x04\x38\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x35\x46\x6f\x75\x6e\x64\x20\x31\x20\x70\x61\x72\x61\x6d\x65\x74\ +\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x62\x72\x65\x61\ +\x6b\x69\x6e\x67\x20\x69\x74\x73\x20\x64\x65\x70\x65\x6e\x64\x65\ +\x6e\x63\x69\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x58\x04\x1d\x04\x30\x04\x39\x04\x34\x04\x35\ +\x04\x3d\x00\x20\x00\x31\x00\x20\x04\x3d\x04\x35\x04\x37\x04\x30\ +\x04\x3c\x04\x3a\x04\x3d\x04\x43\x04\x42\x04\x4b\x04\x39\x00\x20\ +\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x00\x3a\x00\x20\ +\x04\x38\x04\x41\x04\x3f\x04\x40\x04\x30\x04\x32\x04\x3b\x04\x4f\ +\x04\x35\x04\x3c\x00\x20\x04\x35\x04\x33\x04\x3e\x00\x20\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x2d\x46\x6f\x75\x6e\x64\x20\x31\x20\ +\x73\x6f\x6c\x69\x64\x69\x66\x69\x63\x61\x62\x6c\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x3a\x20\x73\x6f\x6c\x69\x64\x69\x66\x79\x69\x6e\ +\x67\x20\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x3c\x04\x1d\x04\x30\x04\x39\x04\x34\x04\x35\x04\ +\x3d\x04\x4b\x00\x20\x04\x34\x04\x32\x04\x30\x00\x20\x04\x3e\x04\ +\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x30\x00\x3a\x00\x20\x04\ +\x41\x04\x3b\x04\x38\x04\x4f\x04\x4e\x00\x20\x04\x38\x04\x45\x00\ +\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x46\x6f\x75\x6e\x64\ +\x20\x32\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x66\x75\x73\x69\ +\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x40\x04\x1d\x04\x30\x04\x39\x04\x34\ +\x04\x35\x04\x3d\x04\x3e\x00\x20\x00\x32\x00\x20\x04\x3e\x04\x31\ +\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x30\x00\x3a\x00\x20\x04\x32\ +\x04\x4b\x04\x47\x04\x38\x04\x42\x04\x30\x04\x3d\x04\x38\x04\x35\ +\x00\x20\x04\x38\x04\x45\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x22\x46\x6f\x75\x6e\x64\x20\x32\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x3a\x20\x73\x75\x62\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x74\ +\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x46\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\ +\x00\x61\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\ +\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x3a\x00\x20\x00\x6d\ +\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\ +\x00\x66\x00\x61\x00\x63\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x23\x46\x6f\x75\x6e\x64\x20\x61\x20\x63\x6c\x6f\x73\ +\x65\x64\x20\x77\x69\x72\x65\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\ +\x61\x20\x66\x61\x63\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x74\x04\x1d\x04\x30\x04\x39\x04\x34\x04\ +\x35\x04\x3d\x04\x4b\x00\x20\x04\x33\x04\x40\x04\x43\x04\x3f\x04\ +\x3f\x04\x4b\x00\x3a\x00\x20\x04\x37\x04\x30\x04\x3a\x04\x40\x04\ +\x4b\x04\x42\x04\x38\x04\x35\x00\x20\x04\x3a\x04\x30\x04\x36\x04\ +\x34\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\x3e\x04\x42\x04\x3a\x04\ +\x40\x04\x4b\x04\x42\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\x3e\x04\ +\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x30\x00\x20\x04\x32\x04\ +\x3d\x04\x43\x04\x42\x04\x40\x04\x38\x00\x20\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2e\x46\x6f\x75\x6e\x64\x20\x67\x72\x6f\x75\x70\ +\x73\x3a\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x65\x61\x63\x68\x20\ +\x6f\x70\x65\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x73\x69\ +\x64\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x70\x04\x1d\x04\x30\x04\x39\x04\x34\x04\x35\x04\x3d\x04\ +\x4b\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\ +\x4b\x00\x2c\x00\x20\x04\x41\x04\x3e\x04\x34\x04\x35\x04\x40\x04\ +\x36\x04\x30\x04\x49\x04\x38\x04\x35\x00\x20\x04\x3a\x04\x40\x04\ +\x38\x04\x32\x04\x4b\x04\x35\x00\x3a\x00\x20\x04\x3f\x04\x40\x04\ +\x3e\x04\x32\x04\x35\x04\x41\x04\x42\x04\x38\x00\x20\x04\x38\x04\ +\x45\x00\x20\x04\x41\x04\x3b\x04\x38\x04\x4f\x04\x3d\x04\x38\x04\ +\x35\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x46\x6f\x75\ +\x6e\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x63\x6f\x6e\x74\x61\ +\x69\x6e\x69\x6e\x67\x20\x63\x75\x72\x76\x65\x73\x3a\x20\x66\x75\ +\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x64\x04\x1d\x04\x30\x04\x39\ +\x04\x34\x04\x35\x04\x3d\x04\x4b\x00\x20\x04\x42\x04\x3e\x04\x3b\ +\x04\x4c\x04\x3a\x04\x3e\x00\x20\x04\x3d\x04\x30\x04\x3f\x04\x40\ +\x04\x30\x04\x32\x04\x3b\x04\x4f\x04\x4e\x04\x49\x04\x38\x04\x35\ +\x00\x3a\x00\x20\x04\x38\x04\x37\x04\x32\x04\x3b\x04\x35\x04\x47\ +\x04\x35\x04\x3d\x04\x38\x04\x35\x00\x20\x04\x38\x04\x45\x00\x20\ +\x04\x3a\x04\x40\x04\x3e\x04\x3c\x04\x3e\x04\x3a\x00\x20\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x29\x46\x6f\x75\x6e\x64\x20\x6f\x6e\ +\x6c\x79\x20\x77\x69\x72\x65\x73\x3a\x20\x65\x78\x74\x72\x61\x63\ +\x74\x69\x6e\x67\x20\x74\x68\x65\x69\x72\x20\x65\x64\x67\x65\x73\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x48\x04\x1d\x04\x30\x04\x39\x04\x34\x04\x35\x04\x3d\x04\x3e\x00\ +\x20\x04\x3d\x04\x35\x04\x41\x04\x3a\x04\x3e\x04\x3b\x04\x4c\x04\ +\x3a\x04\x3e\x00\x20\x04\x40\x04\x35\x04\x31\x04\x35\x04\x40\x00\ +\x3a\x00\x20\x04\x3f\x04\x40\x04\x3e\x04\x32\x04\x3e\x04\x36\x04\ +\x43\x00\x20\x04\x38\x04\x45\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x21\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\ +\x20\x65\x64\x67\x65\x73\x3a\x20\x77\x69\x72\x69\x6e\x67\x20\x74\ +\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x5a\x04\x1d\x04\x30\x04\x39\x04\x34\x04\x35\x04\x3d\ +\x04\x3e\x00\x20\x04\x3d\x04\x35\x04\x41\x04\x3a\x04\x3e\x04\x3b\ +\x04\x4c\x04\x3a\x04\x3e\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\x35\ +\x04\x40\x04\x45\x04\x3d\x04\x3e\x04\x41\x04\x42\x04\x35\x04\x39\ +\x00\x3a\x00\x20\x04\x40\x04\x30\x04\x41\x04\x49\x04\x35\x04\x3f\ +\x04\x38\x04\x42\x04\x35\x00\x20\x04\x38\x04\x45\x00\x20\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x24\x46\x6f\x75\x6e\x64\x20\x73\x65\ +\x76\x65\x72\x61\x6c\x20\x66\x61\x63\x65\x73\x3a\x20\x73\x70\x6c\ +\x69\x74\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6a\x04\x1d\x04\x30\ +\x04\x39\x04\x34\x04\x35\x04\x3d\x04\x3e\x00\x20\x04\x3d\x04\x35\ +\x04\x41\x04\x3a\x04\x3e\x04\x3b\x04\x4c\x04\x3a\x04\x3e\x00\x20\ +\x04\x3d\x04\x35\x04\x41\x04\x32\x04\x4f\x04\x37\x04\x3d\x04\x4b\ +\x04\x45\x00\x20\x04\x3a\x04\x40\x04\x30\x04\x51\x04\x32\x00\x3a\ +\x00\x20\x04\x41\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x4e\x00\x20\ +\x04\x41\x04\x3e\x04\x35\x04\x34\x04\x38\x04\x3d\x04\x35\x04\x3d\ +\x04\x38\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\ +\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6e\x6f\ +\x6e\x2d\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64\x20\x65\x64\x67\x65\ +\x73\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x63\x6f\x6d\x70\x6f\x75\ +\x6e\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x74\x04\x1d\x04\x30\x04\x39\x04\x34\x04\x35\x04\x3d\x04\ +\x3e\x00\x20\x04\x3d\x04\x35\x04\x41\x04\x3a\x04\x3e\x04\x3b\x04\ +\x4c\x04\x3a\x04\x3e\x00\x20\x04\x3d\x04\x35\x04\x38\x04\x37\x04\ +\x3b\x04\x35\x04\x47\x04\x38\x04\x3c\x04\x4b\x04\x45\x00\x20\x04\ +\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x3e\x04\x32\x00\ +\x3a\x00\x20\x04\x41\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x4e\x00\ +\x20\x04\x41\x04\x3e\x04\x35\x04\x34\x04\x38\x04\x3d\x04\x35\x04\ +\x3d\x04\x38\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x35\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6e\ +\x6f\x6e\x2d\x74\x72\x65\x61\x74\x61\x62\x6c\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x63\x6f\x6d\ +\x70\x6f\x75\x6e\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x9c\x04\x1d\x04\x30\x04\x39\x04\x34\x04\x35\ +\x04\x3d\x04\x3e\x00\x20\x04\x3d\x04\x35\x04\x41\x04\x3a\x04\x3e\ +\x04\x3b\x04\x4c\x04\x3a\x04\x3e\x00\x20\x04\x3e\x04\x31\x04\x4a\ +\x04\x35\x04\x3a\x04\x42\x04\x3e\x04\x32\x00\x20\x04\x38\x04\x3b\ +\x04\x38\x00\x20\x04\x3f\x04\x3b\x04\x3e\x04\x41\x04\x3a\x04\x3e\ +\x04\x41\x04\x42\x04\x35\x04\x39\x00\x3a\x00\x20\x04\x41\x04\x3e\ +\x04\x37\x04\x34\x04\x30\x04\x51\x04\x42\x04\x41\x04\x4f\x00\x20\ +\x04\x3f\x04\x30\x04\x40\x04\x30\x04\x3c\x04\x35\x04\x42\x04\x40\ +\x04\x38\x04\x47\x04\x35\x04\x41\x04\x3a\x04\x30\x04\x4f\x00\x20\ +\x04\x3f\x04\x3b\x04\x3e\x04\x41\x04\x3a\x04\x3e\x04\x41\x04\x42\ +\x04\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x39\x46\x6f\x75\x6e\ +\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x6f\x72\x20\x66\x61\x63\x65\x73\x3a\x20\x6d\x61\x6b\x69\ +\x6e\x67\x20\x61\x20\x70\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\ +\x66\x61\x63\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x60\x04\x1d\x04\x30\x04\x39\x04\x34\x04\x35\x04\ +\x3d\x04\x3e\x00\x20\x04\x3d\x04\x35\x04\x41\x04\x3a\x04\x3e\x04\ +\x3b\x04\x4c\x04\x3a\x04\x3e\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\ +\x35\x04\x3a\x04\x42\x04\x3e\x04\x32\x00\x3a\x00\x20\x04\x3f\x04\ +\x40\x04\x3e\x04\x32\x04\x35\x04\x41\x04\x42\x04\x38\x00\x20\x04\ +\x38\x04\x45\x00\x20\x04\x41\x04\x3b\x04\x38\x04\x4f\x04\x3d\x04\ +\x38\x04\x35\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x46\ +\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\ +\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x68\x04\x1d\x04\x30\x04\x39\x04\x34\x04\x35\x04\x3d\x04\x3e\ +\x00\x20\x04\x3d\x04\x35\x04\x41\x04\x3a\x04\x3e\x04\x3b\x04\x4c\ +\x04\x3a\x04\x3e\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\ +\x04\x42\x04\x3e\x04\x32\x00\x3a\x00\x20\x04\x32\x04\x4b\x04\x47\ +\x04\x38\x04\x42\x04\x30\x04\x3d\x04\x38\x04\x35\x00\x20\x04\x38\ +\x04\x45\x00\x20\x04\x38\x04\x37\x00\x20\x04\x3f\x04\x35\x04\x40\ +\x04\x32\x04\x3e\x04\x33\x04\x3e\x00\x20\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x3b\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\ +\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x73\x75\x62\x74\x72\ +\x61\x63\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\x66\x72\x6f\x6d\ +\x20\x74\x68\x65\x20\x66\x69\x72\x73\x74\x20\x6f\x6e\x65\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\xb8\x04\ +\x15\x04\x41\x04\x3b\x04\x38\x00\x20\x04\x44\x04\x3b\x04\x30\x04\ +\x36\x04\x3e\x04\x3a\x00\x20\x04\x43\x04\x41\x04\x42\x04\x30\x04\ +\x3d\x04\x3e\x04\x32\x04\x3b\x04\x35\x04\x3d\x00\x2c\x00\x20\x04\ +\x32\x04\x3c\x04\x35\x04\x41\x04\x42\x04\x3e\x00\x20\x04\x3a\x04\ +\x3b\x04\x30\x04\x41\x04\x41\x04\x38\x04\x47\x04\x35\x04\x41\x04\ +\x3a\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\x41\x04\x3c\x04\x35\x04\ +\x49\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\x20\x04\x31\x04\x43\x04\ +\x34\x04\x35\x04\x42\x00\x20\x04\x32\x04\x4b\x04\x3f\x04\x3e\x04\ +\x3b\x04\x3d\x04\x4f\x04\x42\x04\x4c\x04\x41\x04\x4f\x00\x20\x04\ +\x41\x04\x3c\x04\x35\x04\x49\x04\x35\x04\x3d\x04\x38\x04\x35\x00\ +\x20\x04\x32\x00\x20\x04\x41\x04\x42\x04\x38\x04\x3b\x04\x35\x00\ +\x20\x00\x4f\x00\x43\x00\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x4f\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x6e\x20\ +\x4f\x43\x43\x2d\x73\x74\x79\x6c\x65\x20\x6f\x66\x66\x73\x65\x74\ +\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x70\x65\x72\x66\x6f\x72\x6d\ +\x65\x64\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x74\x68\ +\x65\x20\x63\x6c\x61\x73\x73\x69\x63\x20\x6f\x66\x66\x73\x65\x74\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x86\ +\x04\x15\x04\x41\x04\x3b\x04\x38\x00\x20\x04\x43\x04\x41\x04\x42\ +\x04\x30\x04\x3d\x04\x3e\x04\x32\x04\x3b\x04\x35\x04\x3d\x00\x2c\ +\x00\x20\x04\x3a\x04\x3e\x04\x3c\x04\x30\x04\x3d\x04\x34\x04\x30\ +\x00\x20\x04\x3d\x04\x35\x00\x20\x04\x31\x04\x43\x04\x34\x04\x35\ +\x04\x42\x00\x20\x04\x37\x04\x30\x04\x32\x04\x35\x04\x40\x04\x48\ +\x04\x35\x04\x3d\x04\x30\x00\x20\x04\x34\x04\x3e\x00\x20\x04\x3d\ +\x04\x30\x04\x36\x04\x30\x04\x42\x04\x38\x04\x4f\x00\x20\x04\x3a\ +\x04\x3d\x04\x3e\x04\x3f\x04\x3a\x04\x38\x00\x20\x04\x41\x04\x3d\ +\x04\x3e\x04\x32\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4c\ +\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x63\x6f\x6d\x6d\ +\x61\x6e\x64\x20\x77\x69\x6c\x6c\x20\x6e\x6f\x74\x20\x66\x69\x6e\ +\x69\x73\x68\x20\x75\x6e\x74\x69\x6c\x20\x79\x6f\x75\x20\x70\x72\ +\x65\x73\x73\x20\x74\x68\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\ +\x62\x75\x74\x74\x6f\x6e\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x92\x04\x15\x04\x41\ +\x04\x3b\x04\x38\x00\x20\x04\x44\x04\x3b\x04\x30\x04\x36\x04\x3e\ +\x04\x3a\x00\x20\x04\x43\x04\x41\x04\x42\x04\x30\x04\x3d\x04\x3e\ +\x04\x32\x04\x3b\x04\x35\x04\x3d\x00\x2c\x00\x20\x04\x3e\x04\x31\ +\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x4b\x00\x20\x04\x31\x04\x43\ +\x04\x34\x04\x43\x04\x42\x00\x20\x04\x3a\x04\x3e\x04\x3f\x04\x38\ +\x04\x40\x04\x3e\x04\x32\x04\x30\x04\x42\x04\x4c\x04\x41\x04\x4f\ +\x00\x2c\x00\x20\x04\x30\x00\x20\x04\x3d\x04\x35\x00\x20\x04\x3f\ +\x04\x35\x04\x40\x04\x35\x04\x3c\x04\x35\x04\x49\x04\x30\x04\x42\ +\x04\x4c\x04\x41\x04\x4f\x00\x20\x00\x28\x00\x43\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x37\x49\x66\x20\x63\x68\x65\x63\x6b\ +\x65\x64\x2c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\ +\x20\x62\x65\x20\x63\x6f\x70\x69\x65\x64\x20\x69\x6e\x73\x74\x65\ +\x61\x64\x20\x6f\x66\x20\x6d\x6f\x76\x65\x64\x20\x28\x43\x29\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x04\ +\x23\x04\x41\x04\x42\x04\x30\x04\x3d\x04\x3e\x04\x32\x04\x3b\x04\ +\x35\x04\x3d\x04\x3d\x04\x4b\x04\x35\x00\x20\x04\x3c\x04\x30\x04\ +\x3a\x04\x40\x04\x3e\x04\x41\x04\x4b\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x10\x49\x6e\x73\x74\x61\x6c\x6c\x65\x64\x20\x4d\x61\x63\ +\x72\x6f\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x3a\x04\x1f\x04\x3e\x04\x41\x04\x3b\x04\x35\x04\x34\x04\ +\x3d\x04\x4f\x04\x4f\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\ +\x30\x00\x20\x04\x31\x04\x4b\x04\x3b\x04\x30\x00\x20\x04\x43\x04\ +\x34\x04\x30\x04\x3b\x04\x35\x04\x3d\x04\x30\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1c\x4c\x61\x73\x74\x20\x70\x6f\x69\x6e\ +\x74\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x72\x65\x6d\x6f\x76\ +\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0a\x04\x1b\x04\x38\x04\x3d\x04\x38\x04\x4f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x04\x26\x04\x32\x04\ +\x35\x04\x42\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x38\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4c\x69\x6e\x65\x20\x43\x6f\ +\x6c\x6f\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x1a\x04\x22\x04\x3e\x04\x3b\x04\x49\x04\x38\x04\x3d\x04\ +\x30\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x38\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x4c\x69\x6e\x65\x20\x57\x69\x64\x74\ +\x68\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x16\x04\x1f\x04\x35\x04\x40\x04\x35\x04\x3c\x04\x35\x04\x49\x04\ +\x35\x04\x3d\x04\x38\x04\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x4d\x6f\x76\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x36\x00\x4e\x00\x6f\x00\x20\x00\x6d\x00\x6f\x00\ +\x72\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x67\x00\ +\x72\x00\x61\x00\x64\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x73\x00\ +\x73\x00\x69\x00\x62\x00\x6c\x00\x65\x00\x0a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1b\x4e\x6f\x20\x6d\x6f\x72\x65\x20\x64\x6f\x77\ +\x6e\x67\x72\x61\x64\x65\x20\x70\x6f\x73\x73\x69\x62\x6c\x65\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4a\ +\x00\x4e\x00\x6f\x00\x20\x00\x75\x00\x70\x00\x67\x00\x72\x00\x61\ +\x00\x64\x00\x65\x00\x20\x00\x61\x00\x76\x00\x61\x00\x69\x00\x6c\ +\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\ +\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x25\x4e\x6f\x20\x75\x70\x67\x72\x61\x64\x65\x20\x61\ +\x76\x61\x69\x6c\x61\x62\x6c\x65\x20\x66\x6f\x72\x20\x74\x68\x69\ +\x73\x20\x6f\x62\x6a\x65\x63\x74\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x04\x1d\x04\x38\x04\x47\x04\ +\x35\x04\x33\x04\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\ +\x6f\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x22\x04\x1a\x04\x3e\x04\x3b\x04\x38\x04\x47\x04\x35\x04\ +\x41\x04\x42\x04\x32\x04\x3e\x00\x20\x04\x41\x04\x42\x04\x3e\x04\ +\x40\x04\x3e\x04\x3d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4e\ +\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x73\x69\x64\x65\x73\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x04\x21\ +\x04\x3c\x04\x35\x04\x49\x04\x35\x04\x3d\x04\x38\x04\x35\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x68\x04\x21\ +\x04\x3c\x04\x35\x04\x49\x04\x35\x04\x3d\x04\x38\x04\x35\x00\x20\ +\x04\x40\x04\x30\x04\x31\x04\x3e\x04\x42\x04\x30\x04\x35\x04\x42\ +\x00\x20\x04\x3e\x04\x34\x04\x3d\x04\x3e\x04\x32\x04\x40\x04\x35\ +\x04\x3c\x04\x35\x04\x3d\x04\x3d\x04\x3e\x00\x20\x04\x42\x04\x3e\ +\x04\x3b\x04\x4c\x04\x3a\x04\x3e\x00\x20\x04\x3d\x04\x30\x00\x20\ +\x04\x3e\x04\x34\x04\x38\x04\x3d\x00\x20\x04\x3e\x04\x31\x04\x4a\ +\x04\x35\x04\x3a\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\ +\x4f\x66\x66\x73\x65\x74\x20\x6f\x6e\x6c\x79\x20\x77\x6f\x72\x6b\ +\x73\x20\x6f\x6e\x20\x6f\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x61\x74\x20\x61\x20\x74\x69\x6d\x65\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x52\x00\x4f\x00\x6e\x00\x65\ +\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x20\x00\x69\x00\x73\ +\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x70\x00\x6c\x00\x61\ +\x00\x6e\x00\x61\x00\x72\x00\x2c\x00\x20\x00\x75\x00\x70\x00\x67\ +\x00\x72\x00\x61\x00\x64\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\ +\x00\x20\x00\x64\x00\x6f\x00\x6e\x00\x65\x00\x0a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x29\x4f\x6e\x65\x20\x77\x69\x72\x65\x20\x69\ +\x73\x20\x6e\x6f\x74\x20\x70\x6c\x61\x6e\x61\x72\x2c\x20\x75\x70\ +\x67\x72\x61\x64\x65\x20\x6e\x6f\x74\x20\x64\x6f\x6e\x65\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x04\ +\x12\x04\x4b\x04\x31\x04\x35\x04\x40\x04\x38\x04\x42\x04\x35\x00\ +\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0b\x50\x69\x63\x6b\x20\x4f\x62\x6a\x65\ +\x63\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x60\x04\x23\x04\x3a\x04\x30\x04\x36\x04\x38\x04\x42\x04\x35\ +\x00\x20\x04\x33\x04\x40\x04\x30\x04\x3d\x04\x4c\x00\x2c\x00\x20\ +\x04\x47\x04\x42\x04\x3e\x04\x31\x04\x4b\x00\x20\x04\x37\x04\x30\ +\x04\x34\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x3f\x04\x3b\x04\x3e\ +\x04\x41\x04\x3a\x04\x3e\x04\x41\x04\x42\x04\x4c\x00\x20\x04\x40\ +\x04\x38\x04\x41\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x38\x04\x4f\ +\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x50\x69\x63\x6b\ +\x20\x61\x20\x66\x61\x63\x65\x20\x74\x6f\x20\x64\x65\x66\x69\x6e\ +\x65\x20\x74\x68\x65\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x70\x6c\ +\x61\x6e\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x22\x04\x12\x04\x4b\x04\x31\x04\x35\x04\x40\x04\x38\ +\x04\x42\x04\x35\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x46\x04\x35\ +\x04\x3b\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\ +\x50\x69\x63\x6b\x20\x61\x70\x65\x72\x74\x75\x72\x65\x3a\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x04\ +\x12\x04\x4b\x04\x31\x04\x35\x04\x40\x04\x38\x04\x42\x04\x35\x00\ +\x20\x04\x31\x04\x30\x04\x37\x04\x43\x00\x20\x04\x43\x04\x33\x04\ +\x3b\x04\x30\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\ +\x69\x63\x6b\x20\x62\x61\x73\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\ +\x04\x12\x04\x4b\x04\x31\x04\x3e\x04\x40\x00\x20\x04\x31\x04\x30\ +\x04\x37\x04\x3e\x04\x32\x04\x3e\x04\x39\x00\x20\x04\x42\x04\x3e\ +\x04\x47\x04\x3a\x04\x38\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x11\x50\x69\x63\x6b\x20\x62\x61\x73\x65\x20\x70\x6f\x69\x6e\ +\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x34\x04\x23\x04\x3a\x04\x30\x04\x36\x04\x38\x04\x42\x04\ +\x35\x00\x20\x04\x46\x04\x35\x04\x3d\x04\x42\x04\x40\x04\x30\x04\ +\x3b\x04\x4c\x04\x3d\x04\x43\x04\x4e\x00\x20\x04\x42\x04\x3e\x04\ +\x47\x04\x3a\x04\x43\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x13\x50\x69\x63\x6b\x20\x63\x65\x6e\x74\x65\x72\x20\x70\x6f\x69\ +\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x28\x04\x12\x04\x4b\x04\x31\x04\x35\x04\x40\x04\x38\ +\x04\x42\x04\x35\x00\x20\x04\x40\x04\x30\x04\x41\x04\x41\x04\x42\ +\x04\x3e\x04\x4f\x04\x3d\x04\x38\x04\x35\x00\x20\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0f\x50\x69\x63\x6b\x20\x64\x69\x73\x74\x61\ +\x6e\x63\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x32\x04\x12\x04\x4b\x04\x31\x04\x35\x04\x40\x04\ +\x38\x04\x42\x04\x35\x00\x20\x04\x3a\x04\x3e\x04\x3d\x04\x35\x04\ +\x47\x04\x3d\x04\x43\x04\x4e\x00\x20\x04\x42\x04\x3e\x04\x47\x04\ +\x3a\x04\x43\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x10\x50\x69\x63\x6b\x20\x65\x6e\x64\x20\x70\x6f\x69\x6e\x74\x3a\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x2a\x04\x23\x04\x3a\x04\x30\x04\x36\x04\x38\x04\x42\x04\x35\x00\ +\x20\x04\x3f\x04\x35\x04\x40\x04\x32\x04\x43\x04\x4e\x00\x20\x04\ +\x42\x04\x3e\x04\x47\x04\x3a\x04\x43\x00\x20\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x12\x50\x69\x63\x6b\x20\x66\x69\x72\x73\x74\x20\ +\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x3e\x04\x12\x04\x4b\x04\x31\x04\x35\x04\ +\x40\x04\x38\x04\x42\x04\x35\x00\x20\x04\x3c\x04\x35\x04\x41\x04\ +\x42\x04\x3e\x04\x3f\x04\x3e\x04\x3b\x04\x3e\x04\x36\x04\x35\x04\ +\x3d\x04\x38\x04\x35\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\ +\x38\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x50\ +\x69\x63\x6b\x20\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x20\x70\x6f\x69\ +\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x8e\x04\x23\x04\x3a\x04\x30\x04\x36\x04\x38\x04\x42\ +\x04\x35\x00\x20\x04\x41\x04\x3b\x04\x35\x04\x34\x04\x43\x04\x4e\ +\x04\x49\x04\x43\x04\x4e\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\ +\x04\x43\x00\x2c\x00\x20\x04\x3d\x04\x30\x04\x36\x04\x3c\x04\x38\ +\x04\x42\x04\x35\x00\x20\x00\x28\x00\x46\x00\x29\x00\x20\x04\x34\ +\x04\x3b\x04\x4f\x00\x20\x04\x37\x04\x30\x04\x32\x04\x35\x04\x40\ +\x04\x48\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\x20\x04\x38\x04\x3b\ +\x04\x38\x00\x20\x00\x28\x00\x43\x00\x29\x00\x20\x04\x34\x04\x3b\ +\x04\x4f\x00\x20\x04\x3e\x04\x42\x04\x3c\x04\x35\x04\x3d\x04\x4b\ +\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x50\x69\x63\x6b\ +\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x2c\x20\x6f\x72\x20\ +\x28\x46\x29\x69\x6e\x69\x73\x68\x20\x6f\x72\x20\x28\x43\x29\x6c\ +\x6f\x73\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x30\x04\x23\x04\x3a\x04\x30\x04\x36\x04\x38\x04\ +\x42\x04\x35\x00\x20\x04\x41\x04\x3b\x04\x35\x04\x34\x04\x43\x04\ +\x4e\x04\x49\x04\x43\x04\x4e\x00\x20\x04\x42\x04\x3e\x04\x47\x04\ +\x3a\x04\x43\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\ +\x69\x63\x6b\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3c\ +\x04\x23\x04\x3a\x04\x30\x04\x36\x04\x38\x04\x42\x04\x35\x00\x20\ +\x04\x3f\x04\x40\x04\x3e\x04\x42\x04\x38\x04\x32\x04\x3e\x04\x3f\ +\x04\x3e\x04\x3b\x04\x3e\x04\x36\x04\x3d\x04\x43\x04\x4e\x00\x20\ +\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x43\x00\x20\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x6f\x70\x70\x6f\x73\ +\x69\x74\x65\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x04\x23\x04\x3a\x04\ +\x30\x04\x36\x04\x38\x04\x42\x04\x35\x00\x20\x04\x40\x04\x30\x04\ +\x34\x04\x38\x04\x43\x04\x41\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x50\x69\x63\x6b\x20\x72\x61\x64\x69\x75\x73\x3a\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\ +\x04\x12\x04\x4b\x04\x31\x04\x35\x04\x40\x04\x38\x04\x42\x04\x35\ +\x00\x20\x04\x43\x04\x33\x04\x3e\x04\x3b\x00\x20\x04\x3f\x04\x3e\ +\x04\x32\x04\x3e\x04\x40\x04\x3e\x04\x42\x04\x30\x00\x3a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x72\x6f\x74\ +\x61\x74\x69\x6f\x6e\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x04\x12\x04\ +\x4b\x04\x31\x04\x35\x04\x40\x04\x38\x04\x42\x04\x35\x00\x20\x04\ +\x46\x04\x35\x04\x3d\x04\x42\x04\x40\x00\x20\x04\x32\x04\x40\x04\ +\x30\x04\x49\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\x3a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x16\x50\x69\x63\x6b\x20\x72\x6f\x74\x61\ +\x74\x69\x6f\x6e\x20\x63\x65\x6e\x74\x65\x72\x3a\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4c\x04\x12\x04\ +\x4b\x04\x31\x04\x35\x04\x40\x04\x38\x04\x42\x04\x35\x00\x20\x04\ +\x3a\x04\x3e\x04\x4d\x04\x44\x04\x44\x04\x38\x04\x46\x04\x38\x04\ +\x35\x04\x3d\x04\x42\x00\x20\x04\x3c\x04\x30\x04\x41\x04\x48\x04\ +\x42\x04\x30\x04\x31\x04\x38\x04\x40\x04\x3e\x04\x32\x04\x30\x04\ +\x3d\x04\x38\x04\x4f\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x13\x50\x69\x63\x6b\x20\x73\x63\x61\x6c\x65\x20\x66\x61\ +\x63\x74\x6f\x72\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x2e\x04\x23\x04\x3a\x04\x30\x04\x36\x04\x38\ +\x04\x42\x04\x35\x00\x20\x04\x3d\x04\x30\x04\x47\x04\x30\x04\x3b\ +\x04\x4c\x04\x3d\x04\x4b\x04\x39\x00\x20\x04\x43\x04\x33\x04\x3e\ +\x04\x3b\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\ +\x63\x6b\x20\x73\x74\x61\x72\x74\x20\x61\x6e\x67\x6c\x65\x3a\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\ +\x04\x23\x04\x3a\x04\x30\x04\x36\x04\x38\x04\x42\x04\x35\x00\x20\ +\x04\x3d\x04\x30\x04\x47\x04\x30\x04\x3b\x04\x4c\x04\x3d\x04\x43\ +\x04\x4e\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x43\x00\x20\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\x6b\x20\x73\ +\x74\x61\x72\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x04\x22\x04\x3e\ +\x04\x47\x04\x3a\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x1a\x04\x1c\x04\x3d\x04\x3e\x04\x33\x04\x3e\x04\ +\x43\x04\x33\x04\x3e\x04\x3b\x04\x4c\x04\x3d\x04\x38\x04\x3a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x07\x50\x6f\x6c\x79\x67\x6f\x6e\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\ +\x04\x20\x04\x30\x04\x34\x04\x38\x04\x43\x04\x41\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x52\x61\x64\x69\x75\x73\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x04\x20\x04\x30\ +\x04\x34\x04\x38\x04\x43\x04\x41\x00\x20\x04\x3e\x04\x3a\x04\x40\ +\x04\x43\x04\x36\x04\x3d\x04\x3e\x04\x41\x04\x42\x04\x38\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x10\x52\x61\x64\x69\x75\x73\x20\x6f\ +\x66\x20\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x1a\x04\x1f\x04\x40\x04\x4f\x04\x3c\ +\x04\x3e\x04\x43\x04\x33\x04\x3e\x04\x3b\x04\x4c\x04\x3d\x04\x38\ +\x04\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x52\x65\x63\x74\ +\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x44\x04\x23\x04\x34\x04\x30\x04\x3b\x04\x35\x04\ +\x3d\x04\x38\x04\x35\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x35\x04\ +\x3a\x00\x20\x04\x38\x04\x37\x00\x20\x04\x42\x04\x35\x04\x3a\x04\ +\x43\x04\x49\x04\x35\x04\x33\x04\x3e\x00\x20\x04\x3e\x04\x31\x04\ +\x4a\x04\x35\x04\x3a\x04\x42\x04\x30\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x25\x52\x65\x6d\x6f\x76\x65\x20\x70\x6f\x69\x6e\x74\x73\ +\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\ +\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x12\x04\x1f\x04\x3e\x04\x32\x04\x35\ +\x04\x40\x04\x3d\x04\x43\x04\x42\x04\x4c\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x52\x6f\x74\x61\x74\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x04\x1c\x04\x30\x04\x41\ +\x04\x48\x04\x42\x04\x30\x04\x31\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x53\x63\x61\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x24\x04\x12\x04\x4b\x04\x31\x04\x35\x04\ +\x40\x04\x38\x04\x42\x04\x35\x00\x20\x04\x3f\x04\x3b\x04\x3e\x04\ +\x41\x04\x3a\x04\x3e\x04\x41\x04\x42\x04\x4c\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0c\x53\x65\x6c\x65\x63\x74\x20\x50\x6c\x61\x6e\ +\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x2a\x04\x12\x04\x4b\x04\x31\x04\x35\x04\x40\x04\x38\x04\x42\x04\ +\x35\x00\x20\x04\x3f\x04\x3b\x04\x3e\x04\x41\x04\x3a\x04\x3e\x04\ +\x41\x04\x42\x04\x4c\x00\x20\x00\x58\x00\x59\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x58\x59\x20\x70\ +\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x2a\x04\x12\x04\x4b\x04\x31\x04\x35\x04\x40\x04\x38\ +\x04\x42\x04\x35\x00\x20\x04\x3f\x04\x3b\x04\x3e\x04\x41\x04\x3a\ +\x04\x3e\x04\x41\x04\x42\x04\x4c\x00\x20\x00\x58\x00\x5a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x58\ +\x5a\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x2a\x04\x12\x04\x4b\x04\x31\x04\x35\x04\ +\x40\x04\x38\x04\x42\x04\x35\x00\x20\x04\x3f\x04\x3b\x04\x3e\x04\ +\x41\x04\x3a\x04\x3e\x04\x41\x04\x42\x04\x4c\x00\x20\x00\x59\x00\ +\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\ +\x74\x20\x59\x5a\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x04\x12\x04\x4b\x04\x31\ +\x04\x35\x04\x40\x04\x38\x04\x42\x04\x35\x00\x20\x04\x3e\x04\x31\ +\x04\x4a\x04\x35\x04\x3a\x04\x42\x00\x20\x04\x34\x04\x3b\x04\x4f\ +\x00\x20\x04\x3f\x04\x35\x04\x40\x04\x35\x04\x3c\x04\x35\x04\x49\ +\x04\x35\x04\x3d\x04\x38\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x19\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x74\x6f\x20\x6d\x6f\x76\x65\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x04\x12\x04\x4b\x04\ +\x34\x04\x35\x04\x3b\x04\x38\x04\x42\x04\x35\x00\x20\x04\x3e\x04\ +\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x00\x20\x04\x34\x04\x3b\x04\ +\x4f\x00\x20\x04\x41\x04\x3c\x04\x35\x04\x49\x04\x35\x04\x3d\x04\ +\x38\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x53\ +\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x74\x6f\x20\x6f\x66\x66\x73\x65\x74\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x04\x12\x04\x4b\x04\x34\ +\x04\x35\x04\x3b\x04\x38\x04\x42\x04\x35\x00\x20\x04\x3e\x04\x31\ +\x04\x4a\x04\x35\x04\x3a\x04\x42\x00\x20\x04\x34\x04\x3b\x04\x4f\ +\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\x3e\x04\x40\x04\x3e\x04\x42\ +\x04\x30\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x53\x65\ +\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\ +\x6f\x20\x72\x6f\x74\x61\x74\x65\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x48\x04\x12\x04\x4b\x04\x31\x04\ +\x35\x04\x40\x04\x38\x04\x42\x04\x35\x00\x20\x04\x3e\x04\x31\x04\ +\x4a\x04\x35\x04\x3a\x04\x42\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\ +\x20\x04\x3c\x04\x30\x04\x41\x04\x48\x04\x42\x04\x30\x04\x31\x04\ +\x38\x04\x40\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x38\x04\x4f\x00\ +\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\x65\x6c\x65\x63\ +\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x73\ +\x63\x61\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x4c\x04\x12\x04\x4b\x04\x31\x04\x35\x04\x40\x04\ +\x38\x04\x42\x04\x35\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\ +\x3a\x04\x42\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\ +\x31\x04\x40\x04\x35\x04\x37\x04\x3a\x04\x38\x00\x2f\x04\x3f\x04\ +\x40\x04\x3e\x04\x34\x04\x3b\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\ +\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x53\x65\x6c\x65\x63\ +\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x74\ +\x72\x69\x6d\x2f\x65\x78\x74\x65\x6e\x64\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x04\x12\x04\x4b\x04\ +\x31\x04\x3e\x04\x40\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\ +\x3a\x04\x42\x04\x30\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\ +\x3e\x04\x31\x04\x3d\x04\x3e\x04\x32\x04\x3b\x04\x35\x04\x3d\x04\ +\x38\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x53\ +\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x74\x6f\x20\x75\x70\x67\x72\x61\x64\x65\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x64\x04\x12\x04\x4b\x04\ +\x31\x04\x35\x04\x40\x04\x38\x04\x42\x04\x35\x00\x20\x04\x3f\x04\ +\x3b\x04\x3e\x04\x41\x04\x3a\x04\x3e\x04\x41\x04\x42\x04\x4c\x00\ +\x2c\x00\x20\x04\x3f\x04\x35\x04\x40\x04\x3f\x04\x35\x04\x3d\x04\ +\x34\x04\x38\x04\x3a\x04\x43\x04\x3b\x04\x4f\x04\x40\x04\x3d\x04\ +\x43\x04\x4e\x00\x20\x04\x42\x04\x35\x04\x3a\x04\x43\x04\x49\x04\ +\x35\x04\x3c\x04\x43\x00\x20\x04\x32\x04\x38\x04\x34\x04\x43\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x53\x65\x6c\x65\x63\x74\x20\ +\x70\x6c\x61\x6e\x65\x20\x70\x65\x72\x70\x65\x6e\x64\x69\x63\x75\ +\x6c\x61\x72\x20\x74\x6f\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\ +\x6e\x74\x20\x76\x69\x65\x77\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x36\x04\x1f\x04\x40\x04\x3e\x04\x38\x04\ +\x37\x04\x3e\x04\x48\x04\x3b\x04\x3e\x00\x20\x04\x37\x04\x30\x04\ +\x3a\x04\x40\x04\x4b\x04\x42\x04\x38\x04\x35\x00\x20\x04\x41\x04\ +\x3f\x04\x3b\x04\x30\x04\x39\x04\x3d\x04\x30\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x53\x70\x6c\x69\x6e\x65\x20\x68\x61\ +\x73\x20\x62\x65\x65\x6e\x20\x63\x6c\x6f\x73\x65\x64\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x04\x1d\ +\x04\x30\x04\x47\x04\x30\x04\x3b\x04\x4c\x04\x3d\x04\x4b\x04\x39\ +\x00\x20\x04\x43\x04\x33\x04\x3e\x04\x3b\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0b\x53\x74\x61\x72\x74\x20\x41\x6e\x67\x6c\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x04\ +\x22\x04\x35\x04\x3a\x04\x41\x04\x42\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x54\x65\x78\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x44\x04\x2d\x04\x42\x04\x3e\x04\x42\x00\ +\x20\x04\x42\x04\x38\x04\x3f\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\ +\x35\x04\x3a\x04\x42\x04\x30\x00\x20\x04\x3d\x04\x35\x00\x20\x04\ +\x40\x04\x35\x04\x34\x04\x30\x04\x3a\x04\x42\x04\x38\x04\x40\x04\ +\x43\x04\x35\x04\x42\x04\x41\x04\x4f\x00\x20\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x21\x54\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x74\x79\x70\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x65\x64\x69\ +\x74\x61\x62\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x46\x04\x1f\x04\x35\x04\x40\x04\x35\x04\x3a\ +\x04\x3b\x04\x4e\x04\x47\x04\x35\x04\x3d\x04\x38\x04\x35\x00\x20\ +\x04\x40\x04\x35\x04\x36\x04\x38\x04\x3c\x04\x30\x00\x20\x04\x3a\ +\x04\x3e\x04\x3d\x04\x41\x04\x42\x04\x40\x04\x43\x04\x38\x04\x40\ +\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x38\x04\x4f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x19\x54\x6f\x67\x67\x6c\x65\x73\x20\x43\x6f\ +\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x04\ +\x1e\x04\x31\x04\x40\x04\x35\x04\x37\x04\x3a\x04\x30\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x54\x72\x69\x6d\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4a\x04\x1e\x04\x42\x04\ +\x3c\x04\x35\x04\x3d\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x3f\x04\ +\x3e\x04\x41\x04\x3b\x04\x35\x04\x34\x04\x3d\x04\x38\x04\x39\x00\ +\x20\x04\x41\x04\x35\x04\x33\x04\x3c\x04\x35\x04\x3d\x04\x42\x00\ +\x20\x00\x28\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x20\x00\x2b\x00\ +\x20\x00\x5a\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x55\ +\x6e\x64\x6f\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x73\x65\x67\ +\x6d\x65\x6e\x74\x20\x28\x43\x54\x52\x4c\x2b\x5a\x29\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\x04\x12\x04\ +\x38\x04\x34\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x56\x69\x65\ +\x77\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x9e\x04\x21\x04\x42\x04\x38\x04\x40\x04\x30\x04\x35\x04\x42\x00\ +\x20\x04\x41\x04\x43\x04\x49\x04\x35\x04\x41\x04\x42\x04\x32\x04\ +\x43\x04\x4e\x04\x49\x04\x38\x04\x35\x00\x20\x04\x41\x04\x35\x04\ +\x33\x04\x3c\x04\x35\x04\x3d\x04\x42\x04\x4b\x00\x20\x04\x4d\x04\ +\x42\x04\x3e\x04\x39\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\ +\x38\x00\x20\x04\x38\x00\x20\x04\x3d\x04\x30\x04\x47\x04\x38\x04\ +\x3d\x04\x30\x04\x35\x04\x42\x00\x20\x04\x41\x04\x3d\x04\x3e\x04\ +\x32\x04\x30\x00\x20\x04\x41\x00\x20\x04\x3f\x04\x3e\x04\x41\x04\ +\x3b\x04\x35\x04\x34\x04\x3d\x04\x35\x04\x39\x00\x20\x04\x42\x04\ +\x3e\x04\x47\x04\x3a\x04\x38\x00\x20\x00\x28\x00\x57\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x51\x57\x69\x70\x65\x73\x20\x74\ +\x68\x65\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x73\x65\x67\x6d\ +\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6c\x69\x6e\ +\x65\x20\x61\x6e\x64\x20\x73\x74\x61\x72\x74\x73\x20\x61\x67\x61\ +\x69\x6e\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x6c\x61\x73\x74\ +\x20\x70\x6f\x69\x6e\x74\x20\x28\x57\x29\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x04\x1f\x04\x40\x04\x3e\ +\x04\x32\x04\x3e\x04\x3b\x04\x3e\x04\x47\x04\x3d\x04\x4b\x04\x35\ +\x00\x20\x04\x38\x04\x3d\x04\x41\x04\x42\x04\x40\x04\x43\x04\x3c\ +\x04\x35\x04\x3d\x04\x42\x04\x4b\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0a\x57\x69\x72\x65\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\x00\x58\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x01\x58\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x30\x04\x30\x04\x31\x04\x41\x04\ +\x46\x04\x38\x04\x41\x04\x41\x04\x30\x00\x20\x04\x41\x04\x3b\x04\ +\x35\x04\x34\x04\x43\x04\x4e\x04\x49\x04\x35\x04\x39\x00\x20\x04\ +\x42\x04\x3e\x04\x47\x04\x3a\x04\x38\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1a\x58\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x20\ +\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x58\x00\ +\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x58\x59\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x58\x00\ +\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x58\x5a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\x00\x59\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x01\x59\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x04\x3e\x04\x40\x04\x34\ +\x04\x38\x04\x3d\x04\x30\x04\x42\x04\x30\x00\x20\x04\x41\x04\x3b\ +\x04\x35\x04\x34\x04\x43\x04\x4e\x04\x49\x04\x35\x04\x39\x00\x20\ +\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x38\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1a\x59\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\ +\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x59\ +\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x59\x5a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\x00\x5a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\x5a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x04\x30\x04\x3f\x04\ +\x3f\x04\x3b\x04\x38\x04\x3a\x04\x30\x04\x42\x04\x30\x00\x20\x04\ +\x41\x04\x3b\x04\x35\x04\x34\x04\x43\x04\x4e\x04\x49\x04\x35\x04\ +\x39\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x38\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1a\x5a\x20\x63\x6f\x6f\x72\x64\x69\x6e\ +\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\ +\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x20\x04\x22\x04\x35\x04\x3a\x04\x43\x04\x49\x04\x30\x04\x4f\x00\ +\x20\x04\x3a\x04\x3e\x04\x3c\x04\x30\x04\x3d\x04\x34\x04\x30\x00\ +\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x61\x63\x74\x69\x76\ +\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x3a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x04\x1f\x04\x30\x04\x3d\ +\x04\x35\x04\x3b\x04\x4c\x00\x20\x04\x1a\x04\x3e\x04\x3c\x04\x30\ +\x04\x3d\x04\x34\x00\x20\x04\x3f\x04\x40\x04\x3e\x04\x35\x04\x3a\ +\x04\x42\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x64\x72\ +\x61\x66\x74\x20\x43\x6f\x6d\x6d\x61\x6e\x64\x20\x42\x61\x72\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x00\x00\x32\x14\ +\x00\ +\x00\xac\xed\x78\x9c\xcd\x7d\x0b\x78\x1c\xc5\x99\x60\xe9\x2d\x8d\ +\x9e\x18\x63\x8c\x6d\x4c\x5b\x36\x42\x36\xb2\x6c\x6c\x8c\xb1\xc2\ +\x23\xb2\x64\xd9\x06\xcb\x76\x2c\xe1\x57\x08\xa1\x35\xd3\x23\xb5\ +\x35\x33\x3d\x74\xf7\xe8\x01\xc4\xb0\x40\x80\xf0\x30\x10\xde\x21\ +\x61\x09\x09\x8f\x70\x9b\x6c\xb2\x79\x6c\x92\x0b\x64\x49\x80\x4b\ +\xc8\xe5\xc2\x97\x65\xd9\xc0\x6d\x12\x48\xec\x5c\x2e\x21\xc0\x71\ +\xc1\x7b\x79\xb0\xbb\x7f\xfd\x55\xd5\x55\xfd\x1a\xb5\x9c\xcd\xde\ +\x7e\xfe\x60\x46\x3d\x5d\x55\x7f\xfd\xf5\xbf\xff\xbf\xaa\xce\xf9\ +\x6a\x66\xfe\xf3\x6f\x7e\xfc\xee\xef\x2f\x59\xf4\xcd\x4b\x3f\xf9\ +\xe4\x8f\x37\x12\xd2\x70\x1f\x21\x64\x2f\x21\x0f\x3d\x03\x9f\xfb\ +\x08\xf9\xe4\x87\xe1\x73\x3f\x21\x0f\x77\x10\x52\xf3\x32\xfc\xbd\ +\x09\x3e\x5f\x81\x4f\x03\x3e\x7f\x05\xcf\x6b\x09\xa9\x9b\x22\xc4\ +\x82\xd7\xb6\x5c\x4b\x48\xd5\x0e\xf6\x59\x3a\x93\x90\x31\xf8\xcf\ +\x1c\x27\xd5\x8f\x4e\x13\x32\x75\x07\xa9\xfe\xaf\xd5\x84\x34\xfe\ +\x96\x7d\x5e\x79\x98\xd4\xac\x86\xbe\x5a\x86\xd8\xe7\xa1\x27\x49\ +\xcd\xc0\xb3\xf0\xf7\xd5\xec\xf3\x36\x78\xbe\x1b\x9e\x6f\x6e\x66\ +\x9f\xb7\x7d\x88\xd4\xfc\xd5\x6f\x09\x39\xe9\x57\xa4\xe6\xab\xef\ +\x12\xf2\xe0\x01\x52\xf3\x83\xff\x46\xc8\x5f\x36\x91\x9a\x57\x01\ +\xc6\xa5\x8f\x91\xda\xff\x72\x0b\x21\x07\x5e\x23\x6d\xd7\x6d\x25\ +\x64\xd7\x34\x99\x53\xf3\x75\x42\x1e\xa8\x24\xf3\x9e\x03\x78\xaf\ +\xdd\x49\x56\x50\x38\x2e\xfb\x28\x39\xfd\x99\xbf\x26\xc4\xce\x91\ +\xd3\x5f\x85\x39\xd8\xf7\x92\x0d\x3f\x5d\x4b\xc8\xba\x4e\x72\xee\ +\x27\x4f\x22\x64\xe2\x12\x72\xde\x9d\x00\xff\x59\x97\x90\x2d\xb7\ +\x5d\x49\x48\xc7\x45\xe4\xc2\xec\x3a\x42\xd6\x6c\x83\xcf\xf5\xf0\ +\x79\x07\x7c\x6e\x80\xcf\x97\xc8\x85\x37\xbc\x08\xf3\x38\x81\xec\ +\xb9\x74\x98\x90\x7b\xcf\x20\x7b\xdf\x05\xf8\x2e\xc8\x91\x7d\xf7\ +\x9d\x4a\xc8\xdc\xd7\xd9\xe7\x7d\xd7\x92\x03\x7b\x3f\x46\xc8\x1d\ +\x1f\x21\xd3\x6f\xc2\xfb\xd6\xd9\xe4\xe0\x55\x2d\x84\x64\x3b\xc8\ +\x4d\x4b\xef\x26\x64\xf9\x11\xf8\xbc\x97\x90\x15\xab\xe0\xf3\x7e\ +\xf8\x9c\x26\x77\x7c\xe3\x7f\x03\x1e\xfe\x9a\x3c\xba\xfe\x7c\x42\ +\x3a\xbf\x4e\x9e\xb8\x1a\xfa\xb9\xe2\x22\xf2\xdc\xcf\x0b\x84\x9c\ +\x5a\x41\xbe\xf7\xf8\x5c\x42\x0a\xf3\xc8\x1f\xc9\xf3\x84\xdc\xd4\ +\x5f\xb1\xe4\x25\x80\xe7\x7d\x63\x15\xed\x5f\xfa\x1d\x21\x27\x2c\ +\xac\x58\x75\xe8\x20\x21\x17\x7f\xae\x62\xcb\xbf\x7c\x0a\xe6\xf1\ +\x62\xc5\xd0\xff\x7d\x82\x90\xab\xb7\x54\xec\x9e\x77\x01\x21\x1f\ +\x79\xb6\x62\xb4\xf9\x26\x42\x3e\xdc\x5c\x61\x1e\x77\x39\x21\x77\ +\x6f\xab\xb8\x66\x43\x8a\x90\x8f\x9e\x5a\x71\xf3\x58\x09\xf0\x5a\ +\x57\xf1\xc9\xab\xd2\x84\x2c\x1a\xad\x78\xfa\xe5\x9f\x10\x32\xfc\ +\x70\xc5\x0f\x6f\xfb\x7b\x42\x2e\x5c\x58\xf1\xd3\xe3\xfa\x60\xcd\ +\x9f\xaa\xf8\xd9\x6f\x81\x1e\x3e\x76\x6f\xc5\x1f\x3f\x07\xcf\xad\ +\xe9\xca\x9a\xa7\x00\xbe\xcb\x9b\x2a\x07\xf6\x42\x3f\x77\x3d\x5a\ +\x69\x7c\x76\x04\xe8\xe2\xad\xca\x42\xdd\xcf\x08\x19\x1c\xad\x9c\ +\x58\x76\x3c\x21\x3d\xef\x56\x7e\xe8\xd5\x8b\x08\xd9\x5e\x51\x79\ +\xd7\xc0\x02\xc0\xc7\x2b\x95\x8f\x75\x9d\x40\x48\xf5\x70\xe5\x13\ +\x67\x01\x1e\x2e\x3b\xa3\xf2\x0b\x6f\xc1\x7a\x5d\xff\x4a\xe5\x37\ +\x9f\x38\x44\xc8\x06\xb7\xf2\xef\xb2\x6f\x03\x29\x3e\x53\xf9\x9d\ +\xf3\xdf\x21\x24\xfd\xbb\xca\x97\x3f\xfd\x35\xa0\xa7\xc5\x95\xff\ +\x73\xc1\x5d\x40\x73\x7a\x55\xc5\x75\x40\xa3\x37\xd7\x54\xcd\xb9\ +\xf7\x00\xcc\xab\xba\x6a\xc1\x5c\xc0\xcb\xea\xda\xaa\x05\xf3\x80\ +\x6e\xb7\x7f\xb2\x6a\xd5\x02\x78\xee\xcc\xad\x3a\xf8\xfc\x97\x09\ +\xd9\x78\x53\xd5\x8d\xa7\x00\xfe\xfb\x2e\xab\x7a\x70\xef\x23\x40\ +\xac\x17\x54\x7d\xf1\xc1\xdf\xc3\xbc\x9f\xac\xfa\xf2\x77\x60\x7d\ +\xee\x7c\xb7\xea\xc9\x17\x0f\xc3\xfb\x4f\x57\x3d\x73\x0e\x8c\x37\ +\xb1\xac\xea\xd9\x7f\xb8\x04\xf8\xe1\xfe\xaa\xef\x35\x1f\x81\x75\ +\xfc\xab\xaa\x7f\x6a\x82\xf6\x97\xbd\x51\xf5\x76\x11\xe8\xa1\xeb\ +\x1f\xab\xde\x7e\xf2\x52\x42\xe6\x8d\x57\xfd\xa1\x15\xe8\x79\xd5\ +\x83\xd5\x4b\x96\x2e\x25\x64\xc9\xc9\xd5\xbb\x6b\xef\x24\x64\xe5\ +\x77\xab\x2f\x05\xda\x20\xf7\x5e\x57\x3d\xfd\x26\xf4\x7f\xfd\x8e\ +\xea\x6b\x26\x81\x3e\x06\xbf\x5c\x7d\xc3\xef\x1e\x24\xe4\x96\xc5\ +\xd5\xb7\xbc\xf4\x39\x42\x46\x56\x57\x3f\x74\x13\xe0\xaf\xe6\x66\ +\xf6\x39\x79\x6b\xf5\xa7\xcf\x00\xfc\x1e\xba\xb0\xfa\xf1\x5f\x03\ +\x5d\xaf\x5d\x58\xfd\x5a\xe1\xe7\x84\xa4\x4e\xaa\x3e\xdc\x0a\xeb\ +\x53\xf9\x9b\xea\x5f\xf7\x7e\x1b\xfa\xdf\x56\xfd\xe6\xcb\x8f\x13\ +\xb2\xf5\x17\x35\x55\xd7\x02\xfe\xc6\x4f\xa9\xa9\xf9\x1e\xe0\xb9\ +\xf7\x92\x9a\xd6\xb7\x5d\x42\x6e\xff\x9b\x9a\x85\x6d\x80\x87\x4d\ +\xf3\x6b\x56\x1c\x01\xfa\xba\xf0\xb5\x9a\xfe\xf7\x7c\x90\x90\xfc\ +\xa2\x9a\x8b\x5f\x06\xbc\xb5\x11\xf6\x79\xdb\xe1\x9a\xf4\x51\x80\ +\xf7\x82\xcf\xd6\x18\x6f\x00\x3f\x1c\xfc\x51\xcd\x0d\x9f\x87\xfe\ +\xef\xdd\x5f\x73\xcf\xe3\x80\xa7\xe3\x6f\x67\x9f\xf7\xed\xa9\xf9\ +\xec\x85\xf0\x7c\xe3\xe1\x9a\xaf\x55\x7d\x87\x90\x93\x5f\xa8\x79\ +\xb2\x09\xd6\xeb\xea\x7f\xad\x79\xf2\x10\xd0\xc9\xa5\x0f\xd5\x3c\ +\xb5\x1b\xfa\xd9\x7a\x79\xcd\xb3\x3b\x01\x1f\x4d\xa7\xd5\x1c\x39\ +\xd4\x4d\xc8\x71\x76\xcd\x1f\xfe\x09\xf8\xa9\xf7\xa9\xda\xc5\xbf\ +\x80\x75\xf8\xc4\x85\xb5\xcb\xdf\xf8\x0c\xcc\xf3\x6b\xb5\x6b\x7e\ +\x0e\xf3\xba\xf2\xbc\xda\x3d\x27\x01\x5e\x08\xa9\xdd\xff\x26\xe0\ +\xeb\xb2\x0f\xd4\xbe\xff\x87\xf0\xde\xb9\xef\xd4\xe6\x6e\x04\x3a\ +\x38\xdf\xaa\x75\x4f\x06\xba\x19\xae\xaf\xbd\xf9\x9e\x7e\xe8\xf7\ +\xb5\xda\x7b\xf7\x7e\x97\x90\x1d\xed\xb5\xdf\xb8\x1a\xe0\x3a\x39\ +\x5f\xfb\xdd\xaf\xd6\x10\xe2\x0e\xd5\xfe\xb2\x66\x3b\xf4\xf2\x7a\ +\xed\x1b\x4f\xec\x21\xe4\xe3\x97\xd6\xbe\xf5\x3d\xc0\xe7\xc2\x7d\ +\xb5\xbf\xff\x57\x0a\x77\x47\xed\x1f\x17\x00\x7d\x9c\x79\x46\xed\ +\x1f\x1f\x02\xfa\xbf\xfd\x37\x75\xf5\xb7\xc3\xba\x9e\xbe\xbb\xae\ +\xf9\x6f\xff\x99\x90\xb3\x1f\xa9\x6b\xb9\xfe\x3c\x78\xff\xa9\xba\ +\x75\x63\xc0\x67\x27\x1e\xac\x5b\xf7\x4b\x58\xb7\xbb\x6f\xae\xeb\ +\xef\x5d\x41\xc8\x55\xdf\xae\xbb\xe0\x14\xe0\x8b\xca\x05\x75\x83\ +\x4e\x3b\xac\xcf\x91\xba\xed\x8f\x02\x7d\x7e\xe8\xfc\xba\xbd\xdf\ +\xfb\x25\xe0\x71\x61\x5d\xfa\x5f\x80\xaf\xe7\x8c\xd7\x5d\xfd\xdc\ +\x17\x41\x7e\xde\x52\x77\xa3\x0d\xeb\x58\x32\xea\x3e\x75\x18\x9e\ +\xb7\x7f\xad\xee\xe9\x3f\xc2\xfa\x74\x1f\xaa\x3f\xed\x4b\x80\xb7\ +\x3b\x1f\xae\x5f\xf3\x0c\xf0\xe5\x3d\xfd\xf5\x67\xb9\x00\xd7\xb2\ +\xaf\xd7\xf7\x7f\x0d\xf0\x74\xe6\x13\xf5\x5b\xbf\xbb\x1a\xe8\xea\ +\x0b\xf5\xfa\x95\xd0\xcf\xe2\xaa\xfa\x87\x9f\x1f\x05\x7a\x1e\xaa\ +\xff\xd4\xab\x20\xa7\xa6\x9e\xac\xff\xc2\x09\x9d\x40\x6f\xeb\xea\ +\xbf\x54\x0d\x78\xbe\xf7\x99\xfa\x17\xd6\x00\xfe\x3e\x34\xa7\xfe\ +\xc5\xef\x9b\xf0\x69\xd5\xbf\xf6\xc0\x53\x84\x2c\xb8\xb9\xfe\xb5\ +\xa7\x81\xbe\xaf\x3a\xa1\xfe\xd7\xb7\x02\x9f\x3f\xf4\x9e\x06\xed\ +\x95\x65\x20\xb7\x1f\x86\xcf\x2f\x01\x7f\xf6\xc1\x27\xd0\xf3\x43\ +\xaf\x35\x0c\xde\x03\x72\xfd\xd4\x1b\x1b\x8c\x57\x00\x2f\xd7\xfc\ +\xb8\x61\xac\x79\x39\x21\xb7\x76\x34\x5c\x76\x2b\xe0\xaf\xf6\xf1\ +\x86\xd2\x52\x80\xcf\xfe\x56\xc3\xc4\x6f\x40\x9e\x1b\x2b\x1a\xae\ +\x7f\x14\xf0\xbd\xf4\x87\x0d\x37\x2f\x85\x79\xdc\x73\x67\xc3\x83\ +\xef\x82\xbc\x31\x0e\x36\x7c\x65\x05\xe0\x67\xed\x9d\x0d\xdf\x5f\ +\x04\xeb\x75\xdf\xe1\x86\x1f\x2e\x01\xfd\xf0\x81\x2f\x37\x1c\x59\ +\x0a\xf3\xdf\xf3\xcd\x86\xd7\x4f\x07\x39\xde\x74\x6f\xc3\x9b\x6b\ +\x41\x2e\xcd\xb7\x1a\xde\x3a\x05\xf0\x5c\x75\x5d\xc3\xbb\x9b\x40\ +\x1e\x7c\xb4\x90\x6a\x78\x1a\xe0\xbc\xeb\x9d\x54\xe7\xc7\x80\x0e\ +\xb7\xb9\xf0\x09\xf3\xde\xf6\x2c\x7c\xc2\xbc\x06\xe7\xa5\x56\x3e\ +\x05\xfc\xb9\xfa\xb2\xd4\xba\xcf\xc0\xbc\x6e\x18\x4e\x9d\x7f\x1a\ +\xd0\xf9\xe5\xf0\x39\x0e\xf0\x5c\x7e\x6b\x6a\xeb\x23\x20\xdf\x3e\ +\x71\x7d\xea\xd2\x57\x81\x8e\x3a\xee\x81\xcf\x13\xe1\xf3\x77\xf0\ +\x09\x72\xfd\xb4\x8b\x53\xc6\x03\x00\xcf\xed\x6d\xa9\xa9\x9a\xab\ +\x09\xa9\x18\x4a\x5d\x75\x1b\x8c\x73\xce\x79\xa9\xfb\xae\x9f\x0f\ +\x72\xf7\xdb\xa9\xfb\x2f\xa6\xeb\xf1\xf3\xd4\xe3\xf3\x80\x9f\x8e\ +\x7f\x5f\xea\x33\x1f\x79\x1d\xe4\xc5\x4b\xa9\xef\x5c\x0c\x7c\xd4\ +\xb6\x36\xf5\xc2\xce\xaf\x02\x7d\x3e\x9d\x7a\xe1\x17\x20\x1f\xe6\ +\x77\xa5\x5e\xfa\x3f\x00\xc7\x95\xd3\xa9\x5f\xdf\x71\x23\x21\x99\ +\xbb\x1b\xeb\xa6\x28\xfe\xce\x6c\x5c\xf8\xaa\x03\xf4\x79\x63\xe3\ +\xb2\x4f\x00\x9e\x77\x5e\xd5\xb8\xec\x59\xa0\xd7\xe3\xbf\xdd\xd8\ +\x71\x10\xf0\x30\x7d\x4d\xe3\xe9\x3b\xa1\xdd\x87\xbf\xd2\xb8\xf2\ +\x8b\x20\xaf\xc7\xae\x6b\x5c\xef\xc0\xfc\xfe\xb2\xbb\xf1\xbd\xef\ +\x05\xfa\xdb\x74\x65\x63\xdf\xf7\x01\xde\xfe\x0b\x1a\xb3\x9d\x3f\ +\x84\x7e\xfb\x1b\x6f\x7c\xb5\x0e\xf4\x66\x5b\xe3\x5d\xfd\xa0\x17\ +\x57\xff\xa8\xf1\x5b\xf7\x83\x5c\xfb\x8b\x2b\x1a\xff\xfe\x34\x90\ +\x1f\xd5\x87\x1a\x5f\x3c\x08\xf2\xa4\x71\x73\xe3\x3b\x6f\x0c\x01\ +\x1d\x3e\xd2\x54\xbb\x13\xf8\xae\xd9\x6e\xaa\x1f\x00\x79\x74\x45\ +\x4b\xd3\x49\xbf\x07\xbd\x72\xb0\xa1\xa9\xf3\x01\xc0\xbf\xbd\xa1\ +\xe9\x8c\x83\x80\xa7\x3b\x2b\x9b\xce\x1e\x04\xfa\xaf\x7b\xa2\xa9\ +\x67\xde\x0b\xa0\x57\x77\x37\xed\xff\x3b\xe0\xeb\xd2\xdb\x4d\x85\ +\x1b\x60\x7e\xed\x57\x36\xdd\xf1\x10\xac\xc7\xc7\x7f\xdb\x74\xcf\ +\xed\x30\xff\xfe\xc7\x9a\x9e\xff\x31\xc0\xfd\xc0\x81\xa6\x97\xde\ +\x9c\x03\x74\xbc\xbe\xe9\x27\xf7\x83\x9e\x1d\x7b\xa1\xe9\xad\x9f\ +\x00\xde\xae\x7b\x7f\xf3\xa2\xa3\x6f\x80\x5c\x5c\xd8\xdc\x93\xa3\ +\xf4\xbd\xad\x79\xd3\xcf\x00\xce\x8f\xb5\x35\xef\xa3\x36\xc3\x15\ +\x1f\x6e\xde\xff\x59\xa0\x5f\xf7\x07\xcd\x97\xfc\x2f\x58\xf7\xd3\ +\xbe\xd9\x9c\x79\x04\xe8\xee\xfd\x3f\x6a\xce\xff\x3f\xa0\xdf\x7a\ +\xb3\x79\xe2\xcb\x1f\x85\xf6\x97\x35\x3f\xf0\x3a\xe0\x6b\xe8\x13\ +\xcd\x8f\xbc\x0c\x72\xfe\xf4\x6f\x34\x3f\xfa\xca\xa7\x09\x19\x78\ +\xa4\xf9\xb9\xe7\x80\x0f\xef\xfe\x45\xf3\xdb\x1b\xa0\xff\x1b\x4f\ +\x6d\x39\xbd\x1a\xd6\x79\xba\xaf\xa5\xeb\x30\x3c\xbf\xff\xb1\x96\ +\xed\xff\x1d\xf0\xd3\xf0\xa3\x16\xeb\x63\x40\x4f\x0f\xbc\xde\x72\ +\xc5\xe5\x5d\x84\x9c\xf1\x4c\xcb\x6d\x07\x40\x6f\x9f\x55\xdd\x72\ +\x87\x01\xf3\x5a\x70\x42\xcb\xf3\xff\x08\x74\x7c\xca\x3b\x2d\x48\ +\xa7\xf7\x9f\x0a\x9f\x40\x07\xf7\x67\x5b\x7e\x75\xa4\x8a\x90\x62\ +\x6d\xcb\x6f\x5e\x83\x75\xd9\x3c\xd8\x5a\x77\x2b\xc8\xa7\xe2\x3d\ +\xad\x27\x5e\x03\x72\x85\xbc\xd3\x7a\xca\xad\x20\x6f\xa6\x2b\x5a\ +\x77\x94\x7a\x80\x7f\x1e\x6b\xfd\xe0\xf3\xff\x00\xfd\x6f\x6a\x2d\ +\x7d\x1e\xf4\xff\xe5\xcf\xb5\x4e\x7e\x1b\xd6\xdb\x7c\xb4\xf5\x23\ +\x8d\xc0\x7f\x9b\x3f\xdb\x7a\xdb\xe3\x8f\x01\x5e\x5b\x5b\xef\x4b\ +\x81\x7e\x7e\xf0\xf6\xd6\x07\x5f\x7f\x08\xe4\xc3\xc3\xad\xdf\xbc\ +\x01\xe8\xff\x50\x45\xeb\xf7\xff\x07\xd0\xd9\xba\x7b\x5a\x7f\xba\ +\x04\xe8\x77\x99\xde\x7a\xb4\x76\x31\x21\xda\x50\xeb\xd1\xe5\xa0\ +\x47\xdd\x0f\xb7\xfe\xf3\x24\xe0\xf5\xda\x17\x5a\xff\xf0\x41\x58\ +\xe7\xe9\xe7\x81\x48\x3e\xf5\x1e\x80\x90\x2c\x26\xdb\xc8\x61\x32\ +\x0a\xff\x34\xe2\x12\x93\xe4\xe0\x9f\x46\x8a\xa4\x44\x0a\x64\x9c\ +\xb8\xf5\x28\x4c\xe1\xbf\x86\xde\x4c\x46\xdb\x69\x99\x05\x17\xe8\ +\x87\xb4\xf4\xdb\x7a\xd6\xfd\x20\x3c\xc3\x47\x15\xb4\xa7\x4b\xbd\ +\x9e\x0c\x62\xfb\x7a\x33\xa0\x2f\xa5\x4f\xf8\x6e\x7a\x4f\x47\xe0\ +\x33\x0b\x7f\x17\xe0\x79\x0e\x3e\x19\x1c\x36\x39\x42\x32\x64\x15\ +\xfc\xea\x40\xbb\x1c\xfe\x6e\x78\xb0\x74\xc2\xb8\x8e\xa6\x6b\x45\ +\x3a\xb6\xe6\x5a\x9a\x5e\xd0\x8c\x29\xd3\x71\xcd\xc2\xa8\x36\x69\ +\xda\xc6\xaa\x11\xa7\x98\x33\x0b\x46\x1c\xa8\x2b\x22\x27\x4d\x81\ +\x1a\x85\xa1\x4b\x30\x64\x11\xbe\x77\xd3\x7f\xde\xa0\xad\x14\x01\ +\x30\xd6\xa8\x6d\x95\x8a\xdd\xdd\xdd\xb4\xef\x36\xaf\xef\x61\x6b\ +\x33\x7d\x8e\xbd\xdb\xb1\x88\xc8\xc0\x13\x8d\xe4\x89\x0e\xcf\xc7\ +\xf1\x57\x9d\x3f\xb3\x60\xaa\x07\xe0\x1b\x45\x0f\x43\x4c\x10\x7d\ +\x51\x88\xf2\xa0\xf5\xa0\x5c\x8d\xa8\x71\xc7\x0c\xcd\x31\x72\x46\ +\xda\x35\x32\x9a\x35\x72\x00\xbe\x74\x3a\xcb\x83\x98\xc2\x99\xc4\ +\x4f\x63\x82\xf4\x22\x22\xe8\x60\x69\x0e\x2c\x9d\x4e\x01\x86\x9c\ +\xc0\xef\x3a\x7c\x67\xe0\xb3\x15\xa2\x13\x18\x81\xe7\x06\x3c\xcd\ +\xe0\xa4\xd2\x64\x0c\x3e\x57\x02\xe0\x87\xe1\xb9\x1f\xdd\xb4\x8f\ +\x1c\xbc\xa7\xfb\xa7\xef\x4d\xe5\xec\xde\x22\x2c\xa2\xe1\x68\xe9\ +\x92\x6d\x1b\xb0\xd0\x74\x45\x61\x79\x33\xee\x18\x4c\x23\xa3\xa5\ +\xad\x9c\x65\xd3\x39\x05\x66\xea\xa8\x53\x82\x2e\xa6\x87\xdc\xe9\ +\x9c\xc1\xd7\x7d\x98\x0f\x7f\x18\x56\xa1\x88\x43\xeb\x88\xf3\x12\ +\x0c\xce\xc0\x72\x18\x88\x1e\x18\xc7\x63\x1f\x5a\x1f\x07\x02\x3b\ +\x8b\x1f\x61\x2e\xe9\x83\xd6\x6c\x75\x73\x30\xa9\x23\x94\x0a\xbc\ +\xbe\xaa\x7a\xed\x34\x6d\xdb\xc0\xdb\xda\x69\x6c\x74\x0d\x19\x82\ +\x06\x3a\x02\x64\x7b\x0b\x9e\x0e\x77\x04\x04\xa9\xc1\x00\xc3\x64\ +\x17\x90\x98\x06\x58\x3d\x8a\xef\xeb\x00\xb2\x8b\xa0\x17\x60\x62\ +\x45\xec\xa7\x0b\xfe\x1e\x22\x17\x92\xad\x64\x00\xde\x0f\xbf\x4b\ +\xc9\x89\x92\xcf\x61\x68\xe3\x10\x5d\x12\x50\x9f\x6d\xe8\x2e\x60\ +\x1d\x28\x45\xb7\xd3\xdd\x5a\xdf\xf0\xae\x6d\x88\xe5\x82\x5e\xec\ +\xd2\x86\xb6\x6c\x1d\x18\xa6\x7f\xa6\xad\x82\xe3\xda\xba\x59\x88\ +\x98\x4f\x1b\xd9\x08\x6b\x1e\xc5\xb9\xf5\x1b\x57\x0e\x79\x9c\xd9\ +\xcc\x5a\x6d\x64\x4f\xb0\xe5\x7d\x91\x98\xc8\xc3\xf2\xe4\x70\x59\ +\x56\x2a\x52\xc4\xc1\x59\xf8\xc6\xf9\x0f\xc0\x4f\x9f\x87\x1f\x2d\ +\x5f\xca\xb9\x66\x31\x67\xac\x64\x72\x68\x64\x25\x13\x3a\xc9\x50\ +\x16\x31\xf9\x26\x95\x76\xbc\x01\x6b\xfb\x4c\x3b\xcd\x48\xae\x89\ +\xb5\x61\x0f\xb0\xc9\x2d\x33\x52\xce\xec\x30\xd2\x0b\x6f\x45\x61\ +\x63\x02\xde\xca\x01\x87\xea\xc8\xc1\x94\xef\x47\x71\x2c\x37\x92\ +\x73\xcf\x95\x38\x4a\x23\xac\x41\x94\xf4\x6e\x1b\x96\x8c\xab\xb9\ +\x7a\x61\x94\xb2\x96\xc2\xbe\xe1\x99\xce\x83\x99\xba\xb8\x1a\xa3\ +\xaa\xbc\xf1\xc6\x4c\xf5\xe5\x2c\xc7\xd0\xb6\x71\xda\x6a\xe5\x1d\ +\xd0\x87\xdb\x04\x82\xcf\x52\xfa\x60\xa2\x39\xc3\x31\x26\xe5\x17\ +\xc5\x89\x05\x14\xa7\xc1\xef\x26\xce\xd5\xf1\xc6\x58\x88\xdd\x31\ +\xf1\x8a\xc2\x68\xc4\xa0\x72\x34\x63\xeb\x93\x85\xd8\x41\x17\x00\ +\x42\x75\x24\x28\x0b\xba\x74\x23\x95\x6b\xd3\x2e\x23\x6f\x4d\x18\ +\x21\xfd\xda\x6f\xe4\xa4\xd2\xca\x61\x47\xb6\xaf\xab\xb0\x66\xcd\ +\xa2\xee\x2c\x24\xd2\xaf\x1a\x17\x7a\x06\xef\x35\x8a\x63\x57\x33\ +\xd0\xa4\xba\xcd\xda\x56\x3e\xa4\x70\x35\x90\xc4\x61\x9d\xeb\x03\ +\xff\xa9\x48\x52\xcd\xc0\x70\x79\xfc\xee\xc0\x37\x0b\x3e\xff\x6c\ +\x2c\x9c\x98\xc0\x0d\x6f\x2c\xda\x9e\x41\x27\xd7\x6a\xbb\x24\xee\ +\x8c\x99\x37\x0a\x8e\x69\x15\x66\x66\xf9\x20\xcd\xeb\xf0\x65\x14\ +\x5a\xbb\x0a\xdd\xf4\x8b\xee\x10\x5f\x73\x48\x7f\x10\x37\xd2\x18\ +\xf3\x5e\x8d\x6d\x3e\x97\x6c\x47\x3d\x3c\xea\x19\x19\xb6\x22\xc5\ +\x1a\xfa\xad\xc9\xc2\xa8\xad\x67\x54\x66\xf1\x9e\x61\x07\x87\x00\ +\xab\x47\x39\xf6\x32\x9e\xf2\x67\xea\x3e\x46\x75\x47\x5a\x2e\xe3\ +\xf0\x4d\x47\xa3\xc0\xff\x6e\x57\x80\xfc\x1c\x20\xe2\x11\x24\x4d\ +\x1d\x8c\x06\x69\x6e\x4c\xa3\x90\xb1\x3d\xd0\x37\x6d\x9a\x2a\xe6\ +\xac\x8c\x11\x69\xe5\x38\x1a\x90\x1b\x20\xd9\xcc\x83\x5c\xb6\xc5\ +\xc3\x2e\x4a\x9e\x4e\x69\x04\x56\x02\x50\x9f\xd5\xd3\x86\x13\x3b\ +\xed\x16\x20\x3c\xca\xf7\x05\xe4\x83\x51\x6f\xd8\x3a\x78\x79\x12\ +\xc8\x5d\x91\xdd\xfc\x09\x36\xbb\x84\xec\xc4\x79\xaa\x86\x52\x06\ +\x29\xa9\x1c\xb6\x98\x34\x38\xa2\xd0\x9c\xad\x0e\x8e\x54\x4b\x05\ +\xb9\xb4\x42\x57\xee\x2c\xb9\x31\x33\xb7\x40\x61\x6b\x1c\x26\xcd\ +\x19\x33\x0c\xb7\x3b\x06\xd8\x36\x98\xa3\x81\xac\x37\x1a\xa0\x8b\ +\xea\x4d\x19\x13\x49\x32\xc5\x5a\xd1\x3f\xb1\x49\x4f\xb0\x89\x6f\ +\x86\xcc\x86\x32\x71\xa6\xa1\x39\x7a\x9d\x9f\x48\x7b\x63\xc0\xc3\ +\x3a\x98\x20\xef\x18\xe8\x51\xe3\x2d\x00\x4e\x9d\x80\xf9\xe7\x80\ +\x2a\x5c\xec\x35\x2c\xf2\x1b\x07\xcc\x82\xe9\x8c\x69\x42\xea\x70\ +\x8b\x8c\x3d\xf5\xe4\xef\x05\x81\x9e\xa4\xec\x51\x85\x7e\x89\xab\ +\x35\x55\xd2\x08\x55\xa1\x0b\x45\xe1\x8d\xdc\xce\xc6\x40\x21\xc0\ +\xad\x52\x77\xcc\x2a\xb9\x5a\x1a\x44\x3f\x45\x3f\x43\x62\x34\x40\ +\x37\x45\x0a\xc2\x35\x21\xdb\x46\x82\xf7\xe7\xb7\x6a\xce\x96\x42\ +\x6d\x0d\x37\x67\x92\x9b\x32\x7c\xed\xbc\x09\xa6\x00\xcc\xe0\x5a\ +\x55\x0b\xc5\x1c\x7c\xb9\x09\x20\xcd\x21\x93\xbb\x2a\x1d\x0e\x82\ +\xce\x51\x5e\xa7\x7f\xe2\xeb\x3f\x52\x5f\x4f\x2c\x91\xf2\x5c\xd2\ +\xe8\x1c\xd5\xaa\xca\xa4\xd4\xfc\xff\x47\xe7\x8c\x03\xa4\x45\xc0\ +\x94\x9f\x05\xf7\x0f\xa2\xba\x8d\x64\xf1\x11\xc3\x9d\x34\x8c\x82\ +\xb6\x86\xe9\x62\x67\x16\x7a\x27\x6d\x15\xa7\xa3\x10\xda\x44\x76\ +\x00\x60\x59\x54\x76\x92\x55\x6b\x77\x64\xb3\x8e\xe1\x2a\xa6\x18\ +\x7b\x80\x4d\x5e\x8a\x24\x60\x4b\x76\x43\x82\x3e\xef\x8c\x32\xe2\ +\x3f\xd5\x0a\x6c\x61\x73\x8d\x90\x54\xc7\x80\xef\x30\xfa\x3e\x1e\ +\x89\x3e\x1b\xc1\x66\xbe\x5e\x89\xfb\xd5\x8c\x74\x8f\xa0\x10\x1a\ +\x43\xd0\x85\x62\xf8\xf3\x4b\x84\xf7\x48\x89\x60\x1b\xa3\xa5\x9c\ +\x6e\x03\xcd\xe5\xa6\x47\x93\x18\x3b\x8a\xda\xd9\xc9\xda\x70\xd5\ +\xba\x13\xf0\x4d\xb9\x77\xd4\x67\xcd\xd4\xf1\x97\x62\x9a\x8d\x24\ +\x94\x97\x36\x27\x27\xe1\x9d\xcc\xc2\xf7\xf1\x40\x59\x1e\x96\x83\ +\x36\xac\x3b\x38\x28\x41\x27\x46\x31\x20\x76\x89\x37\xb8\xdd\xb6\ +\x2b\x08\x88\x34\xbb\xbc\x57\x63\x9b\x37\x41\x73\x8b\x8b\x25\x09\ +\x57\xed\x2e\xcb\x05\xb8\x14\x82\x62\x0f\xb0\xc9\x57\xd4\x26\x09\ +\x65\xe2\x7f\x0c\xbf\x39\x11\x0b\x27\x78\x4e\x4e\x6e\x17\x9b\x4b\ +\xb4\xcc\x4b\xca\x72\x69\xe9\x72\xfa\x39\x4f\x41\x54\x8a\x53\x52\ +\x4e\x19\xbc\x66\x28\xad\xb3\xe5\x68\x64\xef\xe3\xdf\xf8\xfa\x8b\ +\xf2\xf5\xc4\x9a\x26\xec\x7e\xe9\xe8\x56\x09\x42\xed\xfe\x4f\x23\ +\xe5\x2e\xc6\x89\xc6\x28\x1a\xe6\xe4\x69\x23\x3a\xb8\xd4\xc8\x06\ +\xc7\x20\xf9\x42\xf8\x9c\x4b\x76\x73\x2f\x2b\x2a\x72\xd9\x34\xc4\ +\x3c\x23\x2f\x2a\x79\x1c\x6f\x8f\x8f\x65\x58\xb2\x48\x06\x7d\xf1\ +\x53\x36\x53\xa6\xdd\xfd\x2b\xc2\xf4\x7e\x06\x31\xab\xc3\xf7\x3c\ +\xbe\x91\xe5\x5e\x4d\x4e\xf1\x6a\x84\xcb\xcf\x84\x6e\x01\xdf\x0b\ +\x43\xb8\x9e\x81\x02\x34\x96\xcb\x79\x98\xa2\x96\x1f\xc3\xa1\x9e\ +\x07\x5c\xe9\x34\x48\x08\x6f\x50\xbc\x9a\xce\x8c\x93\xb9\xd8\x43\ +\x89\xc1\x59\xc4\xe5\xca\xd2\xc6\x25\x76\xb9\x4f\xae\x73\xe2\x3a\ +\xca\xc1\x15\x6c\x25\xe2\xaf\x3a\x90\xa5\x86\xc2\xc6\xc2\x49\x53\ +\x37\xca\xf4\x00\xef\x1a\x12\x4e\xe7\xa4\x65\x8f\x53\xfb\xb4\x98\ +\xd3\xc1\x6a\xcd\x82\x5b\x34\x6a\x58\x79\xc3\xb5\xa7\x19\x03\x71\ +\x8f\xd2\x07\xed\x4e\xfa\x2e\x17\x6d\x72\x01\x39\x54\xd2\x18\x57\ +\x5e\x2e\xd3\xc5\xce\x80\x30\xcf\x62\x28\x23\x8f\x02\xbd\x1f\xb9\ +\x6b\x9a\xa3\x42\x4c\x76\x86\x68\xb9\x07\xc0\x0a\x21\xba\x87\xc6\ +\xf4\xa2\xa1\xad\xe9\xd7\x26\x4c\x63\x12\xdc\xa2\x6c\x64\x80\x58\ +\xc0\x47\x5f\x5e\xd3\xbf\x1b\x5e\xe5\x34\xca\xe0\x90\x70\x01\x44\ +\xde\x18\xcd\xbe\xbe\xcb\x74\xb3\x2b\x52\x67\xe9\x48\x5c\x42\x54\ +\xcf\x52\x93\x7b\x40\x2c\x55\x23\xb4\x85\x02\x15\x6f\xa1\x10\x84\ +\x62\xe9\x0d\x1b\x53\xcc\xee\xa8\x87\x51\x0c\x32\xa5\xa0\xac\x9a\ +\xfe\x16\xf5\x6a\x37\x2e\xf4\x14\xe7\xa9\x71\x8c\xcb\x38\x48\x54\ +\x25\x6e\xc5\xb1\x27\x39\xcc\x73\x48\x2b\xff\xc4\x61\x6b\x14\x14\ +\x19\x17\x0a\xa5\x34\xc0\xa5\x0d\x5a\x2c\xc8\xb0\x88\x8f\x81\x6f\ +\xf4\xf1\x17\x28\xe4\xf4\x05\x1c\xb5\xa0\x8c\xea\xcf\x9b\xcc\x08\ +\x81\x82\x3a\x1a\xee\x62\x08\x1e\x47\x66\xc8\x2b\x6c\xa2\x4a\x07\ +\xe9\x53\xaf\x62\x30\x31\x51\xa8\x42\x86\xb0\x23\x97\x14\x00\x33\ +\x9e\x46\x4a\x36\x9b\x65\x3e\x1c\x66\x79\xc8\xce\x81\x67\x2e\x86\ +\xe2\xfc\x98\x9b\x2b\x31\xe7\x9a\x85\x92\xe1\xa1\x6d\x7e\x60\x20\ +\xfc\xd5\x1b\x64\x67\x00\x65\x03\xd1\xc3\x28\xe8\xa1\xf4\xe4\x70\ +\x97\xda\x8f\x20\x0c\xbe\x49\x99\x11\x40\x8a\x84\x4a\x22\x24\x6d\ +\xe5\xf3\x7a\x21\xc3\x30\x52\x1e\xd0\xbb\x02\x80\x4e\xc0\x0a\x3a\ +\x4a\x9c\x43\x00\xea\x2a\xa0\xce\xde\xb3\x13\x81\x4d\x36\x86\x48\ +\x3f\x31\x51\xe5\x06\xe3\x08\x4a\x4c\x69\x60\x68\x52\x2f\x3a\x5a\ +\xc6\x74\x40\x30\x4e\x6b\x79\x3a\xcb\x08\xb9\xe1\xf9\x5f\x34\xe4\ +\x99\xb5\xa9\xc0\xa7\x89\xa8\x6c\x4e\x77\xa9\xb7\x8c\x72\xe5\x44\ +\x15\x0d\xfd\xac\xc3\x18\x9a\x88\xc1\x81\xcc\x3c\x71\x9a\x50\xc1\ +\x9a\x71\x88\x26\xe0\x72\x9b\x07\x0e\xa7\xa4\xfd\x38\x6c\x9b\x79\ +\x63\x4a\x31\x8b\xd8\x03\xda\xa4\x62\x8b\xd7\x24\xef\x89\x2b\x19\ +\x97\x63\xab\x91\x0b\x85\xcd\xdd\x99\x65\x33\x7f\x4b\xed\x0d\x05\ +\x10\x72\x71\x46\xd1\xdf\x06\xe7\x6e\x1d\x85\xa6\x17\xf3\x0b\x08\ +\x47\x29\x0c\x69\xcb\xa0\x85\x14\xb4\x88\xfc\x12\x24\x2a\x69\xe9\ +\x8b\xef\x06\xe0\x54\x5b\x32\x4d\x40\xa9\x50\xb5\xb2\xe8\xaa\x4d\ +\xe0\xdb\x9e\xe5\xed\xa1\xfb\x23\x14\xbb\x0e\x8d\x3a\x02\x9b\x18\ +\x85\xe8\x8c\x6c\x17\xff\xdd\x2e\xd1\x60\x26\x0d\x1b\xc1\x5a\x63\ +\x70\x92\xcb\x72\x2a\xc8\x1d\x61\x6a\x79\x76\x96\x83\x36\x16\xcf\ +\x46\xf2\x20\xb2\xc6\x12\xa1\x05\xcb\xce\xeb\x39\x66\x88\x99\x85\ +\x09\xc3\xf6\x25\x53\xe4\x8a\x93\x15\xe4\x59\x5c\x4d\x1b\xb1\xed\ +\x20\x1d\xba\xfc\xbb\x8a\x13\x35\x24\x70\xdc\x45\x85\x8c\xa5\xe5\ +\x74\xc7\x55\x43\xd7\x3c\xd2\x4f\x7f\xf3\x42\x3a\xb6\xd2\xbb\x4a\ +\x2d\x0e\xf6\xaa\xe3\x58\x32\xbd\x12\xb5\x16\x6a\x64\x74\x76\x29\ +\x9a\x75\x14\x12\x91\xa2\xa1\xb0\x62\x72\x46\xe2\x29\x1b\x9b\xbc\ +\x89\x9a\xc9\xab\x3c\x06\xce\xe0\x3e\x96\xf8\x37\x53\xe3\xe5\xe2\ +\xde\x4c\xb7\x05\x28\x89\xa8\xf1\xc7\x4c\x50\x6e\xf9\xc6\xc8\x02\ +\xb7\xe4\x3c\x68\x04\xe7\x04\x47\xc9\x06\xe6\x11\x8c\xaa\x7f\xe0\ +\x02\x0b\x49\x2b\x36\xa4\x6e\x15\x0c\x24\x58\xa0\x43\x24\x2c\x0c\ +\x75\xc2\x4b\x54\x14\x22\x49\x66\xcd\x5c\x0e\xfe\x46\x02\xc6\x37\ +\x4b\x05\xd3\x35\x64\xb4\x9d\x7b\xf6\x17\x15\x65\xac\x7d\x2e\xb9\ +\x08\xd9\x39\x3a\x47\x51\xc7\x5f\x8d\x69\x7c\xfb\x2c\x53\xc5\x42\ +\x37\xfc\xf9\x43\x27\xe7\xc7\xa6\x88\x29\xb2\x66\x15\x53\xdd\x03\ +\x0d\x3c\xe3\x0d\xe1\x97\xc6\x1b\xfd\x2d\xea\xd5\x01\x00\x39\x9a\ +\xa4\xa2\x95\xa5\x54\x94\x1b\x61\xba\xe1\x0c\xe0\x92\x3e\xb1\xe4\ +\x42\xfd\xd1\xa1\x50\xf3\x6d\x94\xc9\xfc\xe3\x25\x14\xc3\x96\x9a\ +\xd5\x6e\x17\x90\xfb\xa8\x36\x7a\xa8\x56\xec\x19\x70\x91\xa4\xe3\ +\x16\x10\xc5\x39\xae\x86\x2c\x05\x31\x75\xbd\x39\x97\xea\x4a\xda\ +\xf8\xe4\xcd\x25\xb3\xa7\xa7\xdf\xd4\x73\xd6\x28\x7c\xe6\x46\x87\ +\x0c\x97\x26\x2d\x1d\xec\x94\x27\x85\x59\x37\x06\x86\xd7\x74\x1e\ +\xa3\xa4\x2b\xbf\x9b\x6c\x86\xcf\x41\x58\x75\xa6\x9d\xe8\x1b\xc2\ +\x96\x90\x12\xe7\x14\x18\xce\xb0\x0b\xb0\xe0\xda\xd0\xee\xcd\xda\ +\x4e\xdd\xa5\x7f\x3a\x5a\xce\x4a\x7b\xfe\x54\x02\x30\x0a\x30\xa0\ +\x20\x3d\xe1\xd0\x52\x50\xfc\x68\xf3\xbb\xb7\x9d\x88\x3e\x19\x58\ +\x35\x3c\x81\x2e\x7b\x42\xdc\x90\x60\xd6\x7e\xb9\x4c\x28\xf5\xe6\ +\x26\xf5\x69\x07\x89\x91\x62\x5e\x30\x7d\x27\x58\x1d\xfa\x08\x68\ +\x24\xfc\x01\xd0\xa9\x8d\x1b\xd3\xcb\x13\x4e\x26\x05\x38\xa5\xb2\ +\x59\x57\x62\x5f\x35\xbd\x36\x34\x49\xd8\x41\x07\xd9\x01\x90\x4f\ +\x20\x6b\x09\xb6\xa4\xae\x3c\x73\x01\x0c\xa0\xd7\x71\x78\xba\x4e\ +\x7a\x9f\x1b\xf5\xf4\xb8\x03\x02\x7f\x4c\x5b\xf7\xef\x3a\xc4\xfa\ +\xa8\x21\xd6\xff\xbb\x0e\xb1\x21\x6a\x88\x0d\x09\x87\xb8\x09\x98\ +\xdd\x06\x69\xee\xa0\xcd\xc3\x6a\xd8\xc6\xb0\xd8\x4a\xf3\x62\x1a\ +\x25\x6e\x6b\x32\x12\x12\xd2\x8b\xe5\x64\x2d\x4e\xf5\x94\x98\xd6\ +\xa2\xe7\x2b\x34\x08\x7d\xba\x9c\x88\x60\x83\x86\xf6\x61\x91\xbb\ +\x17\x8c\xd0\x1c\x2e\x3a\xc6\xe1\xdb\x11\xc5\x75\x38\xbf\x6f\xcc\ +\x48\x8f\xb3\x00\x88\x99\xd5\xa6\xad\x92\x36\xa9\xd3\x42\x3d\x1a\ +\x4e\x07\xd1\x08\xc4\xb5\xb6\x9f\x29\x06\xac\x49\x1b\x31\x34\x33\ +\x5f\xb4\x6c\xaa\x73\x5c\xcb\xea\x4e\x38\xf5\x47\x03\x81\xa0\xa4\ +\x13\x37\x11\x64\x03\x14\x44\x01\xc3\x42\x94\x2b\x28\xf7\x30\x34\ +\x8c\xc0\xbb\x16\x5f\x99\x4e\xf8\x8b\x8a\xfc\x03\x8a\xfc\xa4\xbc\ +\xb4\x62\x36\x88\xf1\xd0\x32\x54\x06\x2d\x05\xab\xb0\xb2\x00\xfe\ +\x44\x46\x1b\x01\xb9\x31\x0e\x18\x1a\x31\x46\xcd\x42\x81\xd5\x57\ +\xd0\x82\x37\x6d\x45\x14\xae\x12\xa2\xaa\xcd\x57\x95\xa6\x32\x4e\ +\x3d\x2b\xb1\x49\xcc\x35\xc1\x9e\xd6\x87\x7a\x4a\xca\x1c\xc1\x9e\ +\x36\x84\x7a\x4a\xca\x03\x5b\x40\xe5\x89\xf2\x42\x61\x19\x1e\xf6\ +\x62\x47\x4c\x97\xfb\xc5\x68\x54\xb9\xa2\x9a\xdf\x3d\xa9\x0f\x6b\ +\x0b\xf3\x7a\xb1\x88\x78\x46\x83\x11\x2b\x0f\x13\x82\xd4\xee\x81\ +\x24\x40\x90\x6e\x9e\x86\xf5\x38\x52\x30\xce\x91\x83\xd1\xe5\x06\ +\x3b\xca\x48\x38\x0a\x55\xa3\xaa\x09\xa2\x8e\xe1\xd7\x89\xcd\x7d\ +\xc2\xb8\x98\x85\x66\x9c\xcf\x0d\x89\x50\xdc\x45\xc6\x6c\xd5\xc8\ +\x47\x62\xd4\xc4\xf4\x0a\x4f\x78\x99\xa8\x8a\x1a\x25\x1a\x83\x05\ +\x9f\x09\x47\xe9\x8a\x1d\x45\xad\xf1\xe5\x02\x40\xc6\xaf\x7c\xe3\ +\x61\xf0\x56\xa3\x6c\x99\x70\xd0\x35\x8a\x49\xaa\x71\xc3\x54\x97\ +\xf1\x58\x4f\x62\x44\x85\x2f\x4f\x62\x46\x23\x8d\x20\xeb\x34\x20\ +\x6b\xa6\xd5\x68\x65\x82\xc1\x57\x80\xf4\xde\x0b\x64\x27\x63\x97\ +\x3a\x97\xf3\x21\xeb\x46\xe2\xb7\x7f\xef\x00\x0d\xe7\xe4\x75\x70\ +\x8d\x8a\x74\xd2\x49\x47\x9b\x8f\xa5\x74\xcc\x97\xa6\xd3\xcc\x84\ +\xd6\xae\xb9\xdf\xc8\xea\x60\xfe\xce\x6a\xd9\xb6\x87\xba\xa5\x79\ +\xcf\x03\xc8\xbe\xc2\xfc\x76\x79\x10\xc1\xf0\x05\x79\xc2\x85\x64\ +\x6a\x80\xe7\x34\x01\xcc\x98\x61\x8e\x8e\xb9\x18\xc2\x72\xc1\xf7\ +\x76\xd0\x8c\xf5\xea\xb8\x92\xce\xbe\x23\x04\x66\xa4\x4c\x91\xbe\ +\xb3\x18\x7e\xb6\x72\x44\x0b\x0d\x94\xe7\xb6\x21\x53\xe0\xe3\xde\ +\x10\xf3\xc4\x10\xae\x91\x2f\xe6\x28\x25\x61\x09\x50\xc2\x71\x3a\ +\x23\x26\xe4\x72\x0b\xc5\xf0\x64\x8b\xab\x86\x03\xe4\x78\x53\x14\ +\x9f\x85\xa4\x43\xb5\xc7\x0c\x45\x97\x94\x2f\xb6\x8c\x80\xf9\x06\ +\x61\x6b\xf7\x27\x2c\x51\x44\x56\xc5\x1b\xea\x04\x31\x94\x2f\x45\ +\x92\x70\xb0\x6e\x30\x45\x8e\x70\xf3\xa2\x03\x69\xc1\xe0\xc3\xd2\ +\x68\xc1\x4e\xd4\x3b\x0a\x57\x4a\xdf\xc1\xab\xd9\x73\xb4\x0e\x6d\ +\x9b\x01\xbe\xad\x0d\x26\x92\x6d\x4d\x6a\x8e\xa8\x33\x4f\x30\xfc\ +\x39\x30\x04\xb3\x27\x4d\x8f\xfa\xd9\x8a\x4d\x60\x08\x45\x06\x54\ +\xcb\xf1\xc8\x02\x05\x98\xa2\x6d\xa4\x4d\xfa\x55\xcb\x19\x13\x46\ +\x52\xab\x9d\x26\xf8\x65\x25\xaa\x34\x32\x6a\xfa\x2d\x37\xb1\x85\ +\xe1\xef\x64\xbd\xbf\x93\xa4\xc6\x85\xbf\x93\x0d\xfe\x4e\x92\xda\ +\x15\x6b\xc0\xff\x13\xaa\xd5\x63\x80\xc8\x9c\x03\x15\xec\x14\xf5\ +\xd2\x2b\x9c\x8b\xdd\xd0\xd0\x89\x61\x53\x4b\xd7\x0b\xde\x26\xb2\ +\x67\x36\x01\x37\xf8\x4d\x4a\x0d\xad\xf3\x95\x01\x07\x50\x58\x3b\ +\x45\x5e\x57\x91\x25\xac\x02\x91\x85\xf9\x25\x9d\x2d\xdb\x34\x45\ +\x6d\x46\x0d\xcc\x6e\xe1\xdf\x81\x15\x4e\xeb\x39\x18\x6c\x06\xad\ +\x65\x4b\x08\xdd\x6a\xd0\x31\xd3\x91\xee\xa8\x80\xc6\xf1\x33\x9e\ +\xd4\xae\x03\xa6\x92\x38\x1d\x99\xd6\x32\x8c\xe5\x66\xe5\xa8\xe7\ +\x60\x88\xc3\x5e\x92\xd6\x43\x3c\x0a\x5f\x16\x32\xa3\xef\x08\x4b\ +\x48\x0d\xca\xce\xdb\x6c\x14\x0c\x5b\xcf\x69\x6c\x69\xc4\x00\x89\ +\x0d\x8a\xf0\xe8\x33\x8f\xd9\x26\xc6\x74\x66\x3b\xda\x66\xf4\x43\ +\x46\xb8\xfa\xf6\x27\xf1\xe3\x12\x06\x6d\x9b\x73\xd6\x08\x0c\x46\ +\x33\xf0\xb3\x21\xb8\x45\x64\x17\x16\x40\x22\xd1\xa0\x23\x39\x81\ +\xf3\xa2\x85\x0c\x72\xf9\x9a\x36\xdb\x66\x46\x73\x8a\x7a\x9a\x97\ +\xc1\x26\x9c\x87\x30\xb6\x04\x21\x53\xb9\x2b\x12\x09\xa6\xea\x71\ +\x79\x23\xcd\xc7\x04\xb9\x96\xd3\xa7\x0d\x9b\x87\x1f\x99\x5b\x94\ +\x6c\xd4\x8a\x39\xc0\x42\x87\x79\x70\x95\xc5\xba\x98\x2f\x28\x22\ +\x20\xb2\x14\x45\x47\x52\xa5\xe3\xab\xce\x83\x89\x2b\x6c\x80\x3a\ +\x3a\xa2\x84\x50\x59\x40\x68\x25\xb3\xde\x89\x28\x5a\x2e\xd7\xe2\ +\x1c\xb4\x01\x5d\xcf\xfc\x3a\x8f\xb0\x00\x32\xab\xc7\x37\x3d\x93\ +\xd4\xdf\x97\x80\x39\xc7\x37\x91\xe9\x3c\x7c\x29\x9c\x17\x27\x42\ +\x7d\x4e\xe0\x7c\x55\x21\x95\xf7\xc2\x56\xb6\xcf\xb5\xb9\x75\x8b\ +\x61\x1b\xe8\x7c\xa6\xf5\x02\xac\x26\xc8\xf9\xec\x34\xd6\xb2\xd3\ +\x42\x27\x8b\x16\x02\x80\x2e\x07\x47\x81\xea\x40\x1a\xd0\xa2\xfe\ +\x88\xa3\x3e\x3c\xa7\xc8\x42\x5c\xe7\x51\xfe\x85\x47\x68\x36\x82\ +\x17\x0b\x36\x24\xed\x12\x3c\x54\x3d\x93\x61\x6e\x13\x86\x93\x5d\ +\x30\xb1\x74\x3b\xc3\xd9\x0e\x5e\x4b\x8f\x69\xbc\x8b\xa4\xec\x60\ +\x63\x20\x25\x98\x6f\x62\xb1\x74\x07\x55\x9c\x48\x65\xfa\xcb\x28\ +\x6c\x85\xac\xd5\x18\xef\x34\xcf\x43\x68\x5e\xa9\x9d\x4d\x02\xb5\ +\xd7\x1e\xc2\x4e\xdf\x9a\xd5\xd2\xd4\x73\x37\x32\x5d\x80\xa7\x51\ +\xca\x04\x93\x54\x90\x51\xe7\x50\xb7\xb5\xc9\x31\xa3\x80\x59\x84\ +\xe4\x5c\xf1\xf6\x2c\xa7\x93\xc5\x35\xa4\xfa\x9d\x39\xb2\x72\x2a\ +\x4c\x01\x39\xf0\xff\x71\x22\x8b\x5b\x0c\x4f\x3a\x8a\xb2\x97\x02\ +\xaa\x06\x11\xfb\x0d\x27\xea\x54\xfa\x52\x93\xa8\x34\x58\xde\xcb\ +\x8b\xd9\x34\x5e\xfe\xdd\x45\x44\x4a\x47\x64\x91\x45\x3c\x59\xf7\ +\x38\x8b\xd2\x1d\x43\x6d\x70\x1b\xa5\xa1\xa2\x33\x6b\x1b\x46\x5a\ +\xe7\xf8\xa4\x45\x28\x40\x33\x07\x30\x52\x9e\x86\xff\xa7\xcd\x8c\ +\xb2\x2d\x88\xc9\x01\x4c\x37\x74\x6b\x1b\x8d\x49\xdd\x36\xba\x58\ +\x30\x85\x52\x9d\xab\x8f\x1b\xb4\xbe\x65\x0c\xa8\x95\x6f\xce\x4c\ +\xb0\x10\x4f\xf1\x85\x50\xa7\x23\x23\x07\x49\x96\x26\xae\xf2\xa8\ +\xbc\x60\x10\x31\x36\xb9\x90\x46\x48\xe3\x3b\x4a\x2f\x4c\xf7\x07\ +\xb5\xbc\xb4\x36\xde\xb7\x35\xcb\xe3\x4a\x8e\x42\xab\x8a\xb2\x55\ +\xd8\x17\xe3\x6e\x0c\xe3\xc0\xaa\xc6\x14\x0f\x26\x81\x3d\xb0\x36\ +\xe3\x99\x04\x49\x25\xed\x3c\x05\x81\x42\x2b\x1e\xe6\x92\x7d\x5c\ +\x09\x4c\x66\x62\xd0\x57\x46\xab\xf9\x58\x76\x44\x41\x21\x43\xcd\ +\x51\x1e\xef\x0e\x57\x31\xb0\xc5\xd2\x39\x3c\x36\xbe\x1d\x1e\xd5\ +\x5f\xf7\xa0\x86\x45\xd5\xc8\x3b\x93\xb5\x36\x27\x0d\x93\x2f\xa8\ +\x8b\xd1\xc3\x24\x1a\xd9\x8a\x5a\x18\x4f\x3d\x7b\xab\x30\x6e\x14\ +\x5d\x4d\x4f\xdb\x96\xe3\x88\xa2\x8a\x2e\xcd\x02\xe9\x69\x4f\x9a\ +\x8e\xe1\xd5\x59\x70\xb9\xc3\x03\xf6\xae\x6e\x53\x03\x53\x2b\x58\ +\x2b\x67\xab\xf0\x7f\xf6\x27\x2e\x5b\x38\xe7\x29\xf7\x51\x99\xd8\ +\x52\xa5\x5e\x7f\x86\x32\xc6\x4a\xe4\xa2\x26\x7e\xd1\x44\xa1\x5b\ +\xfc\x38\x22\xfb\xea\xcf\x93\x65\xa3\x96\x40\x56\xef\x49\x41\x0e\ +\x1c\xc0\x73\x98\xf0\x8d\x9b\xa6\xdd\xda\x0e\xb1\x0a\x54\xd8\x18\ +\xd3\xc1\x16\x5e\x25\x48\x42\x86\x39\xc7\x27\x71\x64\xc8\x7a\x76\ +\x52\x47\x98\x33\x2a\xa9\x46\x65\x30\x55\xb1\x1e\xde\x08\xa8\x2a\ +\x8c\x3c\x32\x97\x08\x71\xab\x46\x93\xc8\xb1\x33\x65\xb0\xc3\x93\ +\x6a\x74\xe5\xcb\xc3\x67\xf0\xd5\x75\x02\xda\x57\x85\xaf\xc0\x67\ +\xce\x5a\xb8\x48\x7b\x69\x8e\x01\x51\x01\x20\xb2\xb5\x52\x89\xfc\ +\x45\xd4\x9a\x62\x40\x5d\x65\x10\x9e\xd1\xf2\x36\x2a\x7a\x8b\x4e\ +\x95\x84\x50\xd9\xdd\x1a\xf4\x55\xb0\x5c\xa5\xfd\x08\x4b\x7a\x61\ +\x34\xd6\x2a\xe4\xa6\x99\x8a\x07\x97\xd8\xc1\xbd\x3d\x34\x7d\x9b\ +\x54\xc1\x68\x64\x6b\x28\x3b\x40\xf3\x07\x61\x9b\xb7\x65\x2b\x86\ +\xf5\xb5\x15\xb3\xb1\x74\x49\x47\x64\xff\x3b\x00\x65\xbd\x44\x49\ +\xf1\x48\x0f\x81\x8f\xb2\xa3\xaf\x97\xa5\x62\x12\x8e\xb3\x2c\x72\ +\x1c\x2a\x8b\xa7\xe1\x59\x89\x3d\x0b\xcd\x05\x0c\x78\xab\x94\x38\ +\x80\xb9\x28\x72\x8c\xe0\x76\xfc\x26\xde\xf7\x6c\xe2\x23\xef\x8d\ +\xec\xf9\x58\xe2\x88\x0b\xf9\xe8\x7f\x52\xec\x30\x0c\xcc\xaa\xb0\ +\xc7\x2f\xe3\xa8\x6c\xc8\x55\xcc\x85\x4f\x1c\x0c\xde\xca\x59\xd4\ +\x26\x6c\x87\x70\x6c\x7c\x48\x7a\x5d\x5b\x0b\x98\xc8\xce\x1d\x63\ +\xf4\x67\xb1\xaf\x58\x26\xbe\x1a\xb9\x99\x96\x9a\x78\x75\xc7\x89\ +\x1d\xc9\xdd\x3c\x12\x23\x16\xac\x13\xa6\x38\x04\xa4\x1e\xd6\x24\ +\x32\xb9\x7d\xfc\x36\x03\x5c\x8e\xce\xad\x43\x3b\x3c\x37\x24\x69\ +\x0a\xbb\x1d\x7c\x48\x5a\x32\x46\x0b\xd5\xfc\xa5\x37\xac\x8c\x4c\ +\xdd\xdc\xd6\x36\x48\x13\x2b\x58\x02\xa8\x01\xc2\x12\x4f\xea\xd1\ +\xd8\x31\x82\x46\xa6\xba\x39\x54\xf8\x83\x07\x78\x8e\x91\x71\xb9\ +\x50\x9f\xcc\xbf\x15\x6a\x65\x0c\xfa\x66\x8a\xe5\x08\x11\x5b\x19\ +\x99\x53\x64\x91\x70\x45\xc8\x58\x24\x34\x52\xec\xbe\x8f\xce\x93\ +\x4d\x53\x08\x4a\x56\x5e\x05\xb2\x18\x64\xb0\xdd\xad\x0d\x71\x7f\ +\x72\x8c\x3a\x99\x63\xd6\xa4\x06\x76\xcb\xb4\xe6\x5c\x56\xd2\x69\ +\x95\x90\xa8\x1f\xc9\x8b\x6e\x92\x8a\xd1\x65\x98\xea\x9d\x22\x9a\ +\x5a\x35\x82\x7f\x45\xed\xd0\x9e\x33\xa8\x4f\x69\xac\x50\x44\x1b\ +\x92\xa5\x6a\x89\xea\x16\xb6\x72\x14\x2a\x45\xd2\xdb\xad\xc4\x71\ +\x60\xcd\x6b\x5f\x40\x0a\x75\x90\x15\x46\xf8\x2e\x10\xb5\xec\xa2\ +\x85\xf6\xaa\x75\x66\x75\xc7\x35\x1c\x37\x21\x51\x56\x2c\x02\x39\ +\x91\xf5\x38\x20\x6c\x80\x8a\x8d\x00\xc1\x7a\x33\xa6\xa3\x47\x10\ +\x73\xd1\xf6\x9b\x5a\xe5\x18\x5d\xd9\x29\xb5\xbf\xea\x2d\x45\x64\ +\x97\x66\x6d\xcd\xb0\x7c\x1c\x33\xc5\xe3\xec\x4a\x7f\x5f\x0e\xda\ +\x20\x32\xf4\x86\x3b\x08\x3d\xdc\x5e\xb5\x1d\xeb\x20\x73\xd3\xe0\ +\x03\x65\x41\xa4\xa1\xc1\xad\x18\x00\x68\xc9\xd1\x87\xf4\x70\x99\ +\x51\xc3\xf5\x2a\xde\xd0\x16\x40\xbb\x82\x25\xc3\x7c\xe6\x05\x6d\ +\x83\xfb\x61\x7c\xb6\xe3\x88\x52\x2f\x67\x16\x60\x31\xf5\x4c\x52\ +\xa2\xee\xf4\xf4\xb4\x9a\xb0\x2b\x9b\xae\xa3\x6a\xfb\x98\xd2\x75\ +\x67\xc3\x58\x36\x1a\x7d\xac\x62\x88\x15\x0e\x8a\xa4\xb9\xd0\x7d\ +\xe5\x52\x58\x8b\x76\xd8\xe6\xa8\x59\xc0\xe8\x22\x4d\x57\x53\xdd\ +\x37\xdb\x6c\x56\x0a\xe4\xdd\x51\x16\xfb\x93\x11\xf9\x5d\xb3\x48\ +\xea\xac\x50\x82\x70\x89\x73\x9c\x18\xc4\x3a\x16\xa4\x65\x50\xda\ +\xe8\xdc\x5c\x88\xaa\x20\x4e\x84\x42\x9f\xb3\x4a\xeb\x5c\x9d\x48\ +\xd3\x62\xf5\x90\x3e\x61\x78\x85\xbd\x11\x48\x16\x0e\xa2\x43\xed\ +\xd0\xe4\xb3\x78\x6f\x68\xd7\x55\x90\xd3\xd4\x3d\x13\x11\x52\x45\ +\x16\x02\xf2\x6d\x44\x3e\x2e\xf0\x71\xd8\x2c\x92\xc7\xe5\xeb\xb9\ +\xea\x86\x66\x55\xcb\x15\xd7\xe1\xfa\x60\x87\x49\xf3\x47\xf3\x67\ +\xac\xd5\xe2\x1d\x26\xcd\x25\xcd\x51\xca\xfb\x82\x99\xf2\xd4\x10\ +\xf5\x54\x66\x93\x26\x9f\xe3\x2b\x16\xf4\x97\x7a\xd4\x0f\xf1\x82\ +\xbd\x84\x7d\xcd\x53\xfa\xa2\x52\x99\x05\xff\x8c\x00\x74\x36\x3d\ +\xa3\x27\x61\x8f\xb2\xac\xd7\x44\xba\x72\x7c\x7b\xa8\xea\x87\x75\ +\x67\x5c\x6c\x9f\x4a\x94\x85\x8b\x2f\x72\xc9\x01\xac\xc2\xfa\x13\ +\xa5\x8d\x6a\xb0\xfb\xe4\x61\x6f\x47\x0f\x8f\x7e\x01\x5e\xcc\xac\ +\x09\x14\x3b\x6e\x24\xb5\xd2\x34\xaf\xce\x74\xa6\xe1\xe6\xd2\xe1\ +\x74\x56\x7d\x3a\xdb\x51\xae\x9b\xb9\x62\x88\xc8\x84\xa3\x10\x28\ +\x62\x9f\x4f\x21\x60\x00\x64\xc0\x58\xca\x2a\x02\x2a\x58\x34\x1e\ +\x5d\x00\x25\x85\x51\xef\x30\x6a\xc8\x60\x5d\x12\xab\x9b\x00\x5a\ +\x70\x72\x3a\xba\xd4\x99\xa9\x2c\x7b\x8d\x87\x67\x3d\x61\x95\x54\ +\x3a\x5d\x1e\x5b\xe0\x20\x02\xc9\x2c\xb6\x43\xdf\x98\xe0\x67\xd1\ +\x38\xa1\xb8\x41\x70\x9f\x31\xb3\x19\x0a\xfc\x9c\x88\x98\x53\x55\ +\xbc\xc9\x9e\x4b\x27\x9b\x09\x96\x4f\xc0\x6c\x4a\x20\xe7\xd0\xf7\ +\x67\x7b\x23\x61\xbe\xba\x06\xf3\x13\xa1\x83\x59\x55\x58\x7c\x14\ +\xad\x73\xa6\xdf\x59\xe8\x27\xc3\x3d\xb2\x3c\x7f\x26\xf2\x61\x22\ +\xb8\x22\x0a\x33\xa9\x40\xb6\x10\x35\x26\x57\x6f\x96\x97\x4d\xf3\ +\x67\x90\x3a\x89\xba\xf5\x60\x0a\xc3\x3a\x45\xc2\xca\xeb\xd6\xc2\ +\x7f\xe7\xc2\x7f\xab\xc1\x0c\x5b\x0d\xff\xce\x50\x8c\xd1\x41\x8a\ +\x80\x42\x29\x3f\x42\x8f\xcc\xc9\x02\x2a\xd2\x26\xd8\x4f\x74\x49\ +\x59\x02\x9b\x69\x7d\xcb\xce\x98\x05\xac\x6b\xb7\x8a\x86\xad\xb3\ +\xb4\x4f\x67\x16\x37\xb1\x74\x6b\x6b\xb5\x73\xb5\xd5\xdd\xab\x57\ +\x9f\x91\xd4\xc1\xfa\x34\xd9\x85\x96\xa5\x49\xc4\xce\x69\x91\x4b\ +\x17\xd2\x48\x12\xb5\x9a\xfc\x2a\x72\xb4\x51\xa4\x85\x4f\xf1\x18\ +\xe2\x0c\xa1\xb6\x59\xad\xf4\x6e\x2a\xf6\x79\x86\x98\x1e\x3b\x3b\ +\x88\x3e\x8b\x53\x18\x8b\x8f\xa9\xf6\xfa\x76\x8a\x22\x5b\xcf\x98\ +\x25\x07\x99\xc0\x0b\x10\xd1\x3a\x7e\xea\xf4\x50\xb7\x99\x9f\xc9\ +\x01\x73\xa5\x8f\x57\xb3\x8d\x72\x16\xdd\xbf\x05\xce\x67\x1a\xcc\ +\x7d\xb3\x80\x09\x33\x23\x29\x8e\x96\xf9\xe4\xfc\x4c\xe2\xe7\x04\ +\x0a\xa3\x28\xd7\x9e\xad\xfc\x19\xe0\xc7\xe4\xf0\xac\x2f\x11\x1b\ +\xbc\x54\xff\xd0\xf3\x7c\x89\x3f\xb5\xe6\x90\xf0\xe1\x3c\xed\x08\ +\x0c\x4b\x16\x7b\x8e\x9f\xa1\xa7\xc7\x58\x06\x4d\x54\xf7\xcf\x0c\ +\x59\xe5\x22\xd2\x4f\x82\xe9\x19\x01\x9f\x54\x0b\xd1\x05\x1a\x26\ +\x11\x15\xc0\xe3\x44\x6c\x42\x12\x15\x03\xac\x32\xbe\xe4\x89\x9a\ +\x68\x9f\x5b\xd6\x0c\xe9\xa4\x07\xfe\xde\x4d\xd8\xd6\x52\x17\x8f\ +\xb1\x60\x25\x8b\x42\x3b\xc8\xbc\x45\x74\x5f\xac\xe6\x48\x1c\x11\ +\xa5\x26\x8f\x24\x54\x65\xaa\x0a\x88\x38\x37\x55\x1e\x4f\x26\xcc\ +\x53\x16\x12\x8f\x86\xac\x8b\xf8\xc3\xba\xbd\xde\x7e\x01\x93\xb0\ +\xad\x56\xf2\x5d\x27\xd1\x3c\x54\x61\x4c\xa1\x1f\x20\x2c\x3f\x49\ +\xbd\x99\x7e\x72\x1a\x4f\xac\x86\x4c\x00\x4c\xbc\xb2\x00\x4e\x9e\ +\xa8\xdb\x69\x24\x16\x4c\x2e\xf3\xfc\x23\xd8\x8a\x4c\x14\xbb\x1d\ +\x82\xe6\xf3\x0f\x86\x79\x3c\x98\xfa\x69\x17\x6d\x65\xf9\x15\x10\ +\x60\x93\x63\x66\x9a\x6d\xd0\x67\xf9\x67\x78\x5e\xca\xf1\xcc\x0b\ +\x2d\xf5\xea\xd1\x86\x2d\x2b\x37\xa2\xdb\x4a\x46\x06\x14\x40\xda\ +\xc0\xfc\x19\x6b\x23\x8a\x37\x68\x7f\xf4\xe0\x36\x5a\xa3\x89\x1a\ +\x02\x1b\x76\xf1\x80\xb2\x0b\x76\x8d\xbf\x1f\xaa\x3f\xe8\xc8\x03\ +\xb6\x61\xf4\xf5\xf6\x6b\xc2\xf2\xd1\x9c\x69\xf0\x14\xf3\x28\x1f\ +\xe8\x28\xf4\x54\x2c\x78\xd7\x66\xd2\x56\x9f\x4d\x35\xed\xf5\x11\ +\xcc\x11\x8c\x87\x49\x23\x40\x95\xb3\xd1\xf9\x4a\x11\x62\x72\x39\ +\x29\x26\xd9\x7b\xad\xfa\xde\x83\xea\x32\x64\xd4\x0a\x50\x9c\xad\ +\xdc\x48\xeb\xed\xbd\xe3\xd8\x33\x0b\xde\xae\x71\x74\xbd\x29\x16\ +\x13\x7a\xd2\x15\x6f\x45\x20\x41\xd4\xf6\xab\x5b\x09\x83\x88\xa1\ +\x9c\x52\x54\x24\x87\x7f\xfb\xb1\xa8\xb3\x14\x71\xe2\x19\x62\xc4\ +\xa0\x7e\x52\x1c\x0e\x99\x13\x17\x0e\xa3\xe4\xda\xe0\x98\x8e\x07\ +\xa9\x5c\x84\x76\xb9\x7d\x06\xbe\xb3\xad\x7c\x85\x08\xf8\x79\x6c\ +\xdc\xd7\xd2\xe1\xea\x8c\xb5\x6b\x47\x29\x61\x23\x17\xb6\x03\x7c\ +\xea\x96\xc0\x76\x94\x80\x34\xf0\xd3\x1e\xda\x2e\x28\x48\x85\x42\ +\x66\x72\xe7\x31\x0a\xba\x2e\xf0\xe8\x69\xbb\x09\x9c\x9f\x89\x15\ +\x0a\x5d\x0a\x0c\xc1\x5e\x85\x61\x26\x66\x2c\x76\x54\xc8\xf9\xd1\ +\xd1\x52\x91\x63\xf5\x80\x23\x60\x61\x1a\xb1\xdd\x23\xb7\xb7\xa3\ +\xc8\x8d\x16\xa3\x62\xd9\xb6\xc7\x60\x8c\x8d\xa3\x82\xf6\xdd\xa9\ +\xad\xb2\x6c\x45\x69\xe9\x94\x40\x6a\xe8\x8e\xd6\x8e\xbb\x96\xda\ +\x69\xe5\x87\xe8\x1e\x33\x0f\xf2\x05\x07\xac\x61\xf8\xbd\x1d\xf8\ +\xd7\xcc\xb6\xa7\x60\xc4\xf6\xbc\x55\xb0\xda\x71\x0f\x24\x74\xa9\ +\xe7\xcd\xdc\x74\xa0\xbf\xae\x2d\x46\x6e\xc2\x70\xcd\xb4\xde\x85\ +\xcd\xd9\xab\x38\x30\xdf\xed\x81\x83\xa4\xfc\xad\x7a\x36\x5a\xb9\ +\x4c\x7b\x42\xc1\x90\x4b\x20\x18\x42\x85\xf0\x01\x0e\x88\x67\xfd\ +\xb8\xd8\xfe\xd9\x51\xeb\x21\xeb\xe8\x71\x41\x7c\x6c\x3e\xcb\x34\ +\xc0\xa1\x18\x5b\x40\xf0\x9a\x48\x32\x33\xc8\x2c\xef\x37\x69\xfe\ +\xc9\xd4\x8b\xf0\x95\xc4\x46\x3f\x55\x20\xc6\xf9\x4d\x7e\x4d\x27\ +\xc5\xde\x66\x75\xde\x30\xa1\x31\x2b\xa3\xa5\xc7\x2c\xdc\x21\x4b\ +\xe7\xcc\xf6\xec\x88\x92\x2a\x26\x05\xb9\x58\x44\xbf\x89\x6b\x88\ +\xa4\x02\xef\xa5\x32\x68\x90\x53\x0f\xee\x86\x11\x08\x8a\x43\x87\ +\xca\xaa\x33\x39\x98\x62\xaf\x41\x14\xd2\xca\x20\x0c\x9e\xa4\x78\ +\x14\x59\xbc\x1d\x74\x77\xfd\xd0\x32\xdd\x74\x84\xb0\x14\x06\x33\ +\x1e\xe4\xd6\x2e\xf5\xcc\xd6\x42\x99\x3e\x1d\xcf\x81\x2e\x5f\x97\ +\xc3\x7a\x89\x9b\x3b\x63\x9f\x11\x22\x4f\x0a\x17\x05\x7b\xd1\xdb\ +\x6d\x67\xe9\x7c\x13\xcd\x23\xa7\x9f\x27\x26\xa7\x80\x3f\x4e\xf7\ +\x73\xc4\x53\x97\x96\xda\x9a\x0d\x78\xf5\x18\xe1\xc6\x8e\x59\x02\ +\x3c\x5f\x72\x5c\xfe\x44\xd3\xa3\x22\x00\x4a\x25\x91\x2e\x87\xb6\ +\x68\x05\x16\xdd\x2d\x8a\x65\x80\x68\xfc\xf0\x8d\xe2\x31\xe1\x81\ +\xee\x54\x42\x8e\x7f\x35\x92\xd4\x83\xfa\xd7\x21\x32\x9b\xcb\x9c\ +\x39\xd5\xd6\x16\x84\x55\x88\x6d\x2f\xbd\x6d\x41\x7c\x6c\x31\x4d\ +\xef\x00\x30\xe6\x5c\x06\x2b\x2f\xc5\xdb\x6a\x6a\xb2\x8b\x04\x7d\ +\x0e\xf6\x56\x4c\xba\xd2\x5b\xf4\x83\xea\xa2\x5b\xb6\x69\x14\xd8\ +\xc9\x3e\xe2\xd0\x02\x4f\x69\x71\x45\x86\x91\x09\x20\x0d\x47\xf9\ +\xc9\xa1\x59\x7d\x8d\xe2\x1d\x74\x4b\xae\x5b\x13\x9b\x1a\xa0\xd7\ +\x9c\x91\x75\xbb\xb8\x39\xcc\x07\x51\xf3\xa2\x49\x45\x4f\x39\x6f\ +\x8c\x55\xa1\x8a\x03\x1d\xa2\x03\x37\x4c\x7c\x64\x3d\xc7\x3d\xaa\ +\x02\x56\x6d\xa3\x32\xa6\x8b\xfa\xdf\xe0\x21\x78\x07\xd7\x64\xb7\ +\x37\xa6\x6a\x4f\x30\x7f\x8a\xf9\x4f\xba\xd7\x8b\x5a\xec\xa9\x26\ +\xb1\x54\xb8\xa3\x3d\x1e\x56\x7f\xa6\xf3\xe0\x80\xbf\xec\x48\x56\ +\x59\x4a\x7d\x70\x85\xba\x96\x13\x7a\xae\x64\x50\x03\x3f\x43\x8b\ +\xde\xb3\xa5\x42\x5a\x29\x99\x2d\x21\xa3\xb9\x56\x0e\x0c\xff\x42\ +\xda\xe8\x4e\xed\xa6\x6f\xf3\x73\xc5\xc0\x8b\xcf\x1a\xb6\x51\x48\ +\x63\xf2\x34\x67\x4d\xb2\xec\x14\xeb\x50\xe4\x9f\x5c\xdc\x38\x86\ +\x55\x4b\xf4\x0c\xb2\xa4\xe9\xa7\x36\x32\xec\x47\xa7\x3c\xa5\x70\ +\x58\x40\x93\x38\x5a\x1e\xe3\x15\xcb\x68\x39\x77\xb2\x12\x76\xd8\ +\x8f\xc1\x32\x41\x02\xf1\x1e\x4d\xb2\xd4\xd5\x29\x17\x39\x41\x5f\ +\xe4\x58\xb2\x57\x0b\x02\x40\x29\x11\x10\x19\xdc\xa6\x43\xd1\x00\ +\x47\xc2\x3e\x77\x89\x33\xb9\x50\x09\x9b\x5e\x50\x47\xca\x2c\xa1\ +\xaa\xc3\x12\x69\xa6\x5a\x95\x65\xbb\xb9\x18\x50\xc5\x03\x6e\xa4\ +\x52\x84\x4b\x42\xae\x3f\x00\x2b\x6c\x72\x4b\x7d\x2a\x64\x41\xa9\ +\x37\x30\xf8\x6b\xd5\x99\x99\x20\x13\xbf\x94\x63\x26\x02\x7c\xc4\ +\xf8\x4e\xbd\x7b\x86\x95\xb9\xca\x1e\xbb\xb1\xa7\x68\x7e\x0d\x1a\ +\x3f\xb4\x4c\x40\xc4\x54\x59\x8d\x92\x38\x44\xc5\x6f\x09\xaa\xb1\ +\xac\xe0\x88\xc1\xe3\x68\x64\xea\x7b\xb5\x2f\x9d\x1e\x96\x09\x63\ +\x68\x1c\xe8\x01\x9c\xa8\xbe\x9d\x2c\x4d\xd7\x3d\xd7\xdb\x37\x96\ +\xb7\x7e\xdf\xda\x43\x05\x3c\x2b\xd0\xc5\x68\x73\x91\x95\x5e\x80\ +\x1e\x05\x35\xcf\xcb\x11\xa9\xb8\x47\x2d\x4c\x33\x9c\x98\x83\xc6\ +\x1a\x5e\x56\x5d\xa1\x0d\x4b\x69\x21\x8c\x09\x7d\xca\xcc\x97\xf2\ +\xa0\x0d\x0a\xa3\x20\x60\x40\xb5\x60\x4c\x8e\xab\x18\xd1\x54\x9c\ +\x97\xe3\x60\x46\x7c\x35\x8e\x55\xc0\x37\x26\xc7\x2c\xea\xfc\xb0\ +\xe2\x0a\xda\xa7\x14\x3e\xd4\x69\xb1\x75\xdc\x5e\xc9\x9b\x27\x15\ +\x45\x73\x80\x4a\xf6\x11\x1a\x80\x1d\xc6\xd8\x76\x51\x09\xbc\xd6\ +\xef\xdd\xa7\x75\x0e\x5b\xc5\xa4\x21\x53\xda\xd7\x7e\xec\x6b\x80\ +\xb0\xdd\xb7\xb2\xaf\xd4\xde\xfd\x5a\xe7\x80\x0d\x16\x4c\xf2\xde\ +\xf6\xf1\xde\x1c\xa4\x7f\x5d\xe9\xad\x61\x1f\xf4\x36\x64\x66\x12\ +\x47\x73\x6b\xd9\xd9\x51\x5e\x07\x55\x7a\xe2\xbd\x4f\xdf\x08\x9d\ +\x75\x30\x73\x11\x46\xdc\x29\x08\xfe\xd8\x9d\x10\xa5\xab\x62\xcc\ +\x52\xff\xa1\xa6\x71\x31\x46\x11\x5b\x2d\xbf\x01\x6c\x30\x1d\x73\ +\x02\x82\xe5\x85\xca\x50\x3c\xaf\x92\x39\x6f\x3c\x88\x94\xfe\xc0\ +\x83\x6d\x4a\x6d\x6e\x42\xd4\xd5\x8b\xfa\x51\x59\xd1\x93\x76\xed\ +\x84\x45\x6d\x15\x67\xff\xc9\x3b\x04\xfc\x71\x36\x89\x4a\xf5\x4c\ +\x52\x75\x4b\x94\x7f\x6b\x87\x38\x31\xcb\x9f\x03\x11\xc1\x62\x79\ +\x58\x45\xd8\xe8\x14\xfd\xa9\x35\x48\x36\x17\x6e\xe3\x38\x87\x3c\ +\x77\xfe\x33\x38\xa6\x54\x3a\x22\x60\x2c\x8e\xa5\xa6\x24\xa4\xde\ +\x6b\xc0\x9e\x89\x9b\x00\xa4\x87\x75\x14\xfb\x3c\x82\xc1\x6a\x99\ +\x95\xb8\xd3\x2c\x53\x7f\xed\x2d\x2f\x9e\x9e\xca\x37\x7c\x09\xc3\ +\x86\xee\x04\x41\x91\x46\x25\x1e\x46\x70\x36\x62\x6d\x2c\x88\xa3\ +\x92\x8d\x1e\x08\x33\x8b\xd9\xe9\x78\x58\x4a\x65\x77\x69\x23\x25\ +\x17\xa4\xdc\x38\xff\x99\x4a\x3a\xc7\x01\x21\xe7\xd0\x28\x8c\x91\ +\x31\xd1\x4d\x49\x48\x3a\xb7\x78\x3c\x74\x6c\x65\xf2\x45\xee\x86\ +\x32\x67\x92\xbe\x9f\x27\x99\x10\x49\xc8\x73\x49\x92\x9d\x23\x72\ +\x4e\x14\x42\x8b\x7a\xd1\xb0\x31\xdf\x12\x2e\x50\x3a\x86\x03\x43\ +\xae\x8b\x20\x7b\x11\x83\x8f\xc3\x41\x1c\x03\xa8\x75\xb6\xab\xe0\ +\xa9\xf8\xdb\xf1\xf5\x19\x31\x7b\x6f\xc6\x67\x2a\x33\x06\xeb\xd9\ +\xab\xc8\xa2\x6e\xd0\xaa\x3c\xf7\x86\xac\xc2\x69\xae\x3a\xdb\x84\ +\x33\xad\x86\x51\xe5\x39\x89\x95\xc5\xa9\xc4\xb5\x4c\xde\xd1\x60\ +\xb2\x96\xc9\x19\x33\xb3\x49\xe5\x52\x4f\xc2\x38\x3d\xcd\x62\xc7\ +\x1d\x1a\xb1\x24\x3a\xca\x4e\x73\xd4\xb3\x3b\x3c\xe2\x9c\x32\x26\ +\x76\x38\x31\xeb\x20\x25\x8f\x08\xf7\x41\xe6\xfc\xa2\xc1\xc1\x94\ +\xa4\x33\x9d\x1f\xb1\x72\x49\xe1\xe9\x0f\xc1\x13\x57\x5a\x95\x04\ +\x4d\xa7\xaa\x70\x29\xba\xe5\x98\x50\xd5\x04\x0b\xdf\x41\xf8\xd9\ +\x7c\xf2\x80\xcd\x0e\xbc\xf5\x89\xf6\x51\x93\x51\xcc\x87\x8e\xe0\ +\x91\xac\xd2\x7c\xe8\x10\x87\xa4\x06\x1a\xb5\x01\x5d\x75\x90\xa8\ +\x23\xbb\x6b\xa0\x09\x3b\x5b\x5b\x79\xbd\x09\x5e\xbe\x90\xb0\x73\ +\x55\x15\x87\xab\x83\xdd\x3a\x12\x78\x59\xc3\x33\xa9\xfa\xe0\xdf\ +\x4a\x25\x7b\xa0\x5c\xdd\x20\xcf\x77\xe8\xd8\xd1\xd7\xb7\x92\xc5\ +\xba\x2d\xef\x32\x08\x1f\x98\x1d\x78\xd2\x7d\x8e\x04\x2b\xee\x1a\ +\x3a\x76\x19\x34\x28\x34\x11\x9c\x59\x13\x1e\x0c\xd9\xc1\xce\xfb\ +\x53\x66\x45\xcf\x5c\x8c\x98\xd5\x2e\xee\xda\xa8\xaf\xee\x31\x8b\ +\xc1\x5e\x97\x29\x19\x4d\x59\xec\x11\xd8\xe3\x25\x6b\x74\x7a\xd9\ +\x85\x0e\x4c\xa1\xf0\x9d\x55\x81\x1e\x2f\x55\x7a\x8c\x3a\x54\x5c\ +\x06\x22\xc7\xbc\x68\x33\xdb\xc4\xc3\xa2\x14\xec\xd4\x05\x7f\x71\ +\xc2\x2a\xcc\xb4\x04\x03\x7d\x6b\x7b\xd5\xeb\x25\x58\xf4\x6d\x8c\ +\xd6\x01\xe6\x2d\x1b\x83\x69\x60\x75\x4f\x5a\xbc\xb2\x60\x55\x81\ +\x5e\x7b\x94\x0a\x00\xbb\xb7\xfc\x05\x9e\xa1\xe8\xa3\xff\x3e\x0e\ +\x71\xef\x61\xb9\x7b\x7b\x34\x7a\xf3\x25\x03\x41\x6c\xea\x15\x65\ +\x8a\xf2\x02\x1f\x1f\x65\xf4\x72\xa5\xe7\x62\xf9\xb9\x72\xfd\x5f\ +\x2f\x68\x29\x50\xde\xc1\x25\xd4\xc8\x4b\x81\x78\xed\x04\x7e\x63\ +\x67\x43\xf5\x28\x08\x6b\x13\x3d\x68\x78\x65\x42\x4f\x10\x1b\x6b\ +\x22\x2e\xad\x14\xe9\xbf\x99\x2e\x9c\x3c\x89\xdd\xf4\x18\x73\xa3\ +\xa4\x32\x48\xb2\x4b\x1e\x95\x06\xc3\xc0\xa1\x2c\x21\x28\x15\x9e\ +\xac\x59\x0a\xde\x9d\xa2\x9e\x7f\x2c\xcc\x0e\x75\x6d\x58\x0a\x51\ +\xe2\xe4\x94\x3e\x3c\x06\x9c\xb3\x29\x2f\x60\x66\x04\xe5\x4e\x17\ +\x8d\x20\x8a\xda\x80\x64\x34\x44\x0e\x8f\x35\x28\x07\x6f\x19\x34\ +\x01\xad\xed\x0d\xcd\xf7\x19\x22\x2e\x01\x63\x51\x50\xdf\x8e\x9c\ +\xbe\x31\x5a\x1c\x28\x6f\xc6\x54\x5a\x7e\xbd\xac\xdf\xc2\xac\xab\ +\xf0\x81\xc1\xe2\x9c\xa4\x72\x9b\x09\x67\xde\xe5\x29\x09\x3d\x7e\ +\xcb\xa0\xd8\xeb\x9c\xe7\xbc\xc9\x58\x84\x9e\xab\x28\xfd\xbc\xf7\ +\xfb\xcf\x6d\xc3\xe8\x2c\xc3\xae\x33\x66\x95\x72\x99\xd0\xfe\x41\ +\x75\xeb\xa6\xe9\xc6\xee\x18\xd4\x3a\xcd\xe5\x21\xa9\x37\xc3\x0d\ +\x90\xca\xbb\x37\xfa\xa5\x2f\x89\x2e\x15\x0b\x72\xbf\x7a\xd6\xaf\ +\x2a\x23\xd8\x8d\x15\x32\x13\xa2\xe3\x75\x80\x54\xc1\x8b\xfb\xb7\ +\x28\x5a\x06\xc9\x26\x90\x36\xdb\x80\xc7\xe8\x41\x4d\xf4\x73\xb3\ +\x82\xa8\xb3\xfa\x94\x1a\x31\x9b\xab\x00\x3c\x3d\x8d\x1e\xc4\xcb\ +\x4e\x40\xa5\xb1\xb7\x11\xc7\xca\x95\x5c\x98\xff\xd0\xce\xde\xbe\ +\x4d\x41\x1c\xb4\xe0\xc9\x5d\x61\xe5\x57\x1d\xa1\xfb\x34\xdf\x81\ +\x5b\xe5\x98\x32\xc5\x8f\xd7\x0a\xf3\xe6\x02\x5f\x1f\xd1\xe7\x92\ +\xb6\xf0\xd6\xca\xb1\xa4\x4a\x0f\xf3\xe3\xa0\x50\x8e\x5f\x63\xed\ +\x23\x17\x72\xb1\xaf\x79\xfc\xa5\x7f\x6d\xbc\x13\xdf\xdd\x7f\xb1\ +\x13\x89\xbe\x6a\x47\x4c\x44\xb9\x71\x27\x16\x92\xd0\x7d\x3a\x21\ +\x48\x7c\xb7\xd9\xf8\xe4\x85\xda\x4f\xf0\xd6\x81\x46\xde\x5a\x5c\ +\x3e\x50\xa6\xa1\x7f\x27\xaf\x68\x28\x0e\xbe\x55\x1a\x2e\xe2\xc5\ +\x84\x42\xca\x0c\xa2\xb1\x15\x3c\xca\x61\x4e\x3f\xc8\x75\xe8\x60\ +\x10\xdc\x41\x50\x21\x62\x63\x90\x0f\x03\xfd\xc8\x20\x2c\x7b\x34\ +\x8d\xd2\xa9\xe8\x65\x29\xa4\x47\xd2\xca\x8f\x5d\x57\x77\x14\xf8\ +\x68\xb8\x5f\xad\x2d\x94\x02\xb6\x9f\x97\x02\x06\xde\xdf\x8e\x07\ +\x38\x59\x20\x06\x55\xad\x25\x75\x45\xbc\x36\xf7\xdf\x1b\x18\x3c\ +\xd4\xaa\xb3\x9f\x1e\x0a\x0e\xbc\x67\x5b\x28\xb0\xa4\x12\xd7\xbd\ +\x22\x56\xef\x9c\x2b\x05\x1e\x5a\xc8\x42\x61\xc8\x2a\xcb\x56\x83\ +\x16\x53\xe0\xc5\x79\xf2\x45\xc2\xf2\x33\x94\xea\xe4\x84\x1b\x79\ +\xe5\x85\xc5\x4d\x7f\xa5\x69\x0f\xd7\x89\x6a\xa9\xab\x88\x4c\xa8\ +\x73\x57\xf7\x5c\xd0\xcf\x25\x8a\xe6\x3b\x71\x53\x66\x14\x64\x4d\ +\x06\x7d\x3f\x2c\x9e\x72\x60\x9a\x4b\xc2\x1a\x6f\xc6\xfb\x0e\x7d\ +\x42\x78\x00\x8c\x4f\xbe\x65\x5d\x1a\xd4\x03\x1d\x28\xdc\x43\x2f\ +\xef\x23\x5e\xe6\x5b\x4a\x9b\x01\xea\x87\xf7\x89\x8a\x7e\x9f\xb5\ +\x16\xbe\x8d\x50\xe4\x30\xe4\x89\xdf\x06\x51\x83\xda\x45\x94\x65\ +\x47\x88\x41\xc2\xd7\x6d\xb3\x7d\x66\x7d\x8a\x14\xee\x94\x77\x13\ +\xd2\x4b\xb2\xe5\x8d\xb5\xbe\x6b\xb4\x3b\xfb\x82\x72\xf7\xea\x08\ +\xc8\x04\x04\x61\x5b\xd1\x5f\x51\x1d\xd6\x1f\xd1\x31\xa2\xa8\xc2\ +\x65\x36\x83\x01\x65\x06\xeb\xbc\x19\xa8\x60\x0b\x7a\xa5\xf5\xc6\ +\xb0\x68\xf8\x55\xd4\x21\x6b\x9d\x03\xc1\xe9\x2c\x40\xb9\x23\xcf\ +\xaf\x63\x19\x16\x0a\x9e\x2c\xfc\x6e\x18\xa0\xf5\x3e\x43\xe6\xe5\ +\x41\xfa\xbf\x94\x6c\xe1\xe5\x59\xe2\x7c\xfa\x33\x7c\xeb\xe3\x2f\ +\x24\x55\x0d\x98\x1e\x8c\xbc\x89\x9b\x48\xe8\xdc\xa6\xbd\x20\xed\ +\x84\x34\x4a\x64\x68\x63\xc0\x2a\xc1\x32\x9d\x21\x8e\x53\x77\xc6\ +\x0d\x7a\x3e\x0e\x33\x30\x7a\x44\x20\x4b\xc7\x53\x3b\x58\xb4\xcc\ +\x74\x83\xe4\xbd\x25\x12\x5a\x36\x2e\x85\xa7\x84\x2e\x89\xa8\x78\ +\x10\xeb\xea\x10\xf5\x54\x74\xdd\xe7\x96\x2c\x15\x50\xd1\x61\x7b\ +\xf0\x92\x02\x5a\x95\x88\x17\x5b\x32\x0b\x26\xe4\x86\x14\x22\x81\ +\x90\x67\xed\x46\x9f\x86\x19\x3c\x1c\x5f\xa2\xcf\xf1\xec\xc3\xa8\ +\xc0\xa7\x04\x75\x95\x00\x95\x1e\xa1\x1b\x3e\x3c\xb3\x47\x43\x10\ +\xcd\xec\x34\x83\x3e\x08\x76\x7f\x24\xd8\x47\x79\xd8\x4e\x3d\x26\ +\xbd\x27\x9e\x43\x3d\x60\x16\x0b\x60\x80\x32\xd9\x2d\x21\x3d\xca\ +\x95\xa0\xc1\xb1\x0f\x44\x8e\x9d\x1c\x51\x23\x18\x7e\x73\x43\x6b\ +\x3a\x82\x4f\x2c\x4f\x5e\xa8\x10\xae\x13\x10\x86\x50\xd5\xa3\x8d\ +\x80\x7a\x1d\x17\x8b\x9c\x31\x60\x0a\x19\xa3\x90\x36\xc3\x6b\x3d\ +\x12\xc3\x1e\x16\x0a\xa6\x0c\x56\x1b\x32\xf3\x8d\x05\x9d\xa3\x80\ +\x8f\x7a\x5b\xb9\x2e\xc2\x03\x78\xa5\x00\x18\x8c\x46\x93\x56\xb5\ +\xa7\xb1\xce\x44\xc0\xcc\x9f\xc6\xac\xee\x39\x21\x40\xd7\x44\x80\ +\x12\xbc\x1b\x81\xbe\x99\x57\x70\x76\x32\x03\x61\x8d\xa4\xa9\x6c\ +\xc9\x11\xf1\xe5\x99\x09\x2a\x6a\xc8\xb8\xcb\x8e\x83\x43\xb7\x87\ +\x86\x16\xd7\x18\xc7\x8d\xbf\x33\x34\x7e\xf0\x22\x09\x95\xe5\x55\ +\x71\xa5\x1e\x4a\x34\x11\x01\xcb\x12\x06\x8b\x7a\xef\x83\x27\xa0\ +\xf0\xcc\xa0\x99\xe9\x5b\x16\x1c\x1a\x7c\xf0\x20\x47\xc9\x62\xf0\ +\xa3\x5e\x61\x62\x30\x00\x43\x25\x59\x09\xc5\x42\x18\xc8\x6e\x06\ +\x24\x96\x1c\x3a\x92\xf9\x58\x92\x93\x32\x25\x77\xdd\x4c\xb0\xa0\ +\x33\x21\xd7\x38\x4c\xd8\xb3\x39\xd5\x69\x1c\xa3\x1d\x13\x88\xc4\ +\x58\xba\x0a\x12\x76\xc4\x09\x4d\xa0\xf1\x26\x8c\xf2\x54\xb6\x3b\ +\x04\xe8\x08\x11\x95\xc6\xc1\xf5\x8d\x16\xff\x22\xbf\x30\xae\x18\ +\x61\x12\x8d\xcb\x39\x70\x78\xfa\x09\x5b\x69\x45\x09\x00\x44\x26\ +\xd5\xc2\xa3\xe1\x35\x0f\x93\x5f\xd6\xab\x31\xf1\x0f\xa6\x92\x9e\ +\xff\xde\xa6\xb2\xe4\xe7\xd0\x03\x16\xf4\x1c\x1b\xbd\x87\x02\x17\ +\x87\xa3\x30\xf3\xab\xa0\x08\x6a\xef\xe1\x43\xe5\x62\x38\x70\x99\ +\x7f\x58\x24\xf4\x1e\x4c\x80\xbb\xb1\x3c\x78\x5d\xd9\x91\xa5\x4e\ +\x64\x55\x4c\x39\x5e\x47\x52\x0e\x41\xea\x49\x6e\x0e\x91\x97\x59\ +\x05\x33\x49\x51\x88\x5b\xeb\x9f\x01\xd5\x93\x40\x6c\x05\x16\xe0\ +\xe2\x68\xe4\x6c\x9c\xb6\xf2\x45\xfa\x72\x70\x42\xb7\x27\x9c\x90\ +\xbf\x24\x42\x58\x7d\x92\x34\xe3\x2c\xa5\xa8\xe9\x25\x9b\xdc\xba\ +\xf0\xe4\xb0\x24\x41\x51\x12\x33\x4f\x2f\x6c\xbb\xa8\xd3\x0b\x6e\ +\x95\x0e\x1f\xe3\x16\x36\xfa\xa2\x95\x38\x37\xca\x3c\xe0\x37\xf8\ +\x81\xf7\x2e\x72\xb7\x05\x99\x79\xe6\x9f\xa2\xad\xe9\x4f\xc1\x09\ +\x6c\x4c\x3c\x81\x99\xe5\xd2\xd2\x48\xa0\xca\x4a\xa3\xdc\xac\x86\ +\x9f\x41\xf7\x29\x29\x72\x7f\xcd\x0e\x0f\x5b\x79\x80\xbe\x27\x06\ +\xd0\xa0\x86\x94\x49\xe6\xac\x69\x3b\x2e\xbd\xc9\x28\x38\x81\xcf\ +\x27\xce\xf2\xc7\x9d\x37\x19\xbe\x01\x9b\x6a\xa7\x70\xaa\xa5\x84\ +\xde\xe2\x51\x4f\xfc\x06\x4f\xb1\x50\x8b\xef\x59\x51\x91\xe3\x11\ +\x4f\x54\x9a\x66\x87\xef\x74\xca\x82\x16\x4c\xda\x78\x49\x60\x70\ +\x95\xbc\x12\x21\x3c\xa6\x42\xd4\xfc\xa4\x73\xba\xe3\x50\x2b\x30\ +\x2a\xc9\xf3\xf0\x8c\x27\x55\xea\x3e\xa7\xd1\x9f\xd3\x0d\x9f\xcc\ +\x27\xa6\x67\xf3\x5c\x49\xb9\x63\xbf\x82\xad\xc7\x91\x60\xa5\x61\ +\xce\x9c\x4b\x19\xec\xd8\xa6\xa2\x82\x27\x76\xd8\xf4\x69\x08\x24\ +\x8b\x3e\xa5\x56\x2a\xb8\x66\x0e\x2b\x4f\xf0\x3c\x2f\x5e\x73\xc2\ +\xde\x1d\x29\xb9\x2e\xf8\x92\xfa\x28\xbf\x83\x49\xc1\xc3\x4d\x91\ +\x78\x88\xcf\x79\xc7\x1f\x64\xe2\xbb\x8c\x77\x06\x12\x90\xa5\x20\ +\xf2\xca\x7b\x19\x5b\x59\xaf\xce\x37\x98\xf3\xc7\xd3\x4d\x7c\x6b\ +\x9d\xb7\x26\xe0\x41\xd8\xef\x67\x67\xd6\x30\xe6\x62\x20\xd0\xb4\ +\x2a\x0d\xdb\xa7\xd1\x8b\x90\x03\xb6\x6d\x85\xde\x74\x3c\x21\x6f\ +\x10\xcf\xa2\x08\x29\xdc\xa1\x32\xd1\xe5\x31\x22\xee\xe4\xd3\x71\ +\x5b\xa0\xcb\x7d\x15\x5e\x4a\x28\x0f\x1a\xd9\x26\xa3\xc5\x63\x3a\ +\xad\x7b\x05\xab\xcd\x36\x10\xfc\x20\xdf\xa6\xc8\x36\x11\x09\x91\ +\x21\x9d\x6d\xe1\x08\xed\x1c\xf9\x5e\x38\x56\x43\xdf\x8f\x8c\xd5\ +\xcc\x55\x5a\x85\xab\x4a\x59\xbb\x3d\xa2\x80\x34\x10\x40\xf2\x16\ +\x4c\xc2\x35\x68\x85\x12\xa2\x65\xcf\x1b\xf2\x85\xd9\xe4\xe6\x71\ +\x8d\x97\xa2\xa9\xc7\xba\xb5\x6e\xf7\x36\x6f\x53\xb3\x36\xb8\x30\ +\x4d\x40\xbd\x61\xd1\x51\xbb\x23\x8a\xe3\x2f\x51\xdf\x25\xa2\x52\ +\x7b\x54\x91\xd3\xfe\x63\xfd\x18\xaf\x46\x5d\x74\xa7\xe1\x91\xf8\ +\x1a\x86\xae\x44\x90\x28\xe5\x8d\xbe\x82\x8d\xce\x4d\x4c\xcb\x1e\ +\x07\xbd\x57\xa0\xb2\x59\x58\xe8\x3a\xbd\xaf\xd8\x35\xf3\x21\x61\ +\x3d\x4f\x39\xd0\x24\x2a\x8d\xd7\xb8\xd3\x4c\x8f\x6b\x3b\xa2\x32\ +\x93\xfb\x95\xa6\x42\x51\x8b\xcd\xcd\x22\x4e\x13\x64\x3e\xf5\xc0\ +\x66\xa1\xd2\x7c\xd1\x56\x9c\xbc\x9c\x58\x27\x0e\xcf\x23\x36\xae\ +\xc5\x0e\x49\x66\xc5\x6d\xbe\x90\x6b\x70\x5a\x9d\x0a\x6c\x6a\xf6\ +\x53\xf8\x41\xcc\x9a\x52\x73\xa1\xad\x6c\x24\x9e\x10\x0d\xa5\x42\ +\x35\xa5\x43\x76\x00\x95\x3f\xa9\x2a\x41\x3e\x0e\x3b\xc2\x63\x5d\ +\xa2\xb3\xaa\x8b\x43\x5d\x49\xee\x8e\xe9\x08\x19\x38\xd4\x51\xbb\ +\xd2\x91\x92\x81\x54\xbb\xf3\x3a\x3b\x1e\x3b\x4b\xb3\x94\x64\x74\ +\x77\x8b\x94\xee\xfc\xbb\xf9\x55\xa8\x18\x9e\xc4\x2e\xfc\xb2\x78\ +\x12\x9a\x2c\x7a\x7a\x6d\xd8\x91\x51\xc8\xc4\x80\xb3\x42\xe9\xc9\ +\x67\xb3\x04\x84\xa1\xda\xe7\x1c\xec\x93\x59\x26\xd1\xbd\x76\x85\ +\x6e\xdd\x56\x77\xb5\xc4\x2d\xc5\x09\xd8\xaf\xb8\x84\x2e\xa6\xeb\ +\xac\xd2\xb5\x7a\x31\xb0\xec\x32\xb8\x31\xd4\xaf\xee\x31\x6e\x1b\ +\x78\x43\x7a\xf4\x18\x97\xf6\x01\xb5\x1c\x81\xc2\xbb\x83\x11\x20\ +\xdc\x23\xd9\x39\xb0\x9c\xe9\x66\xfa\xbd\x6f\x39\x0d\x2f\x84\x00\ +\x5d\x36\x23\xa0\x61\x32\x94\xc3\x84\xba\x53\x79\x2d\x8f\x86\x89\ +\xf4\x3a\xca\xa1\xd3\x2a\x16\x2d\x87\xde\x6a\x19\xdd\xed\x7c\xa5\ +\x5b\x66\x1f\x50\x91\xa1\x76\xd3\x8c\xdd\xb0\x73\x24\xca\x2e\xb4\ +\x8d\x50\xc9\x38\x79\x3c\xf3\x32\xc8\x6c\x7e\x0d\x78\x0c\x03\x77\ +\x97\xed\x5a\x70\x22\x0d\xce\xe4\x7d\x9d\xcf\xf3\x77\xce\x98\xb1\ +\x2c\x57\x3b\x7c\x7f\x42\x96\x27\x0d\x98\x7f\x94\x0a\x70\xb5\x93\ +\xd6\xd9\x65\xb7\xae\x15\xee\x6e\x99\xaf\x3b\x71\x00\x73\xdc\xfc\ +\x19\x03\xb1\xd3\x90\xa3\x27\xdf\x1e\xd9\x5f\xf4\x3a\xab\xbd\x45\ +\x2f\x72\x4a\x5e\x2d\x22\x73\x63\x3b\xe9\xab\xa1\x17\xbd\x03\x4e\ +\xa4\xce\xdd\x85\x4b\x1f\xd2\x68\x6a\xea\xda\x0e\xb5\x6a\x63\xad\ +\xa8\x7a\x8f\xcc\x20\x0f\xc3\x3f\x5d\x35\xa6\x42\x09\x43\xbf\x4f\ +\x35\xbb\xf2\x9f\x53\x77\xa1\xf1\x25\x92\x87\x9e\x37\x55\xb6\x06\ +\xa8\x09\x26\x2f\x2e\xba\xd7\x95\xe9\x53\x4a\x0a\x5b\x41\x43\x62\ +\x53\x8b\xc4\xe8\x10\xa5\x90\x90\x19\x17\x94\x84\xca\x55\x64\xfc\ +\x70\xb2\x9d\x11\xe9\x4c\x95\x2f\xd9\x4e\x83\x60\xeb\x56\xde\x7a\ +\xef\xbe\xc8\x7c\xa8\xbf\x83\xfd\xe5\x3a\xd8\x3f\x63\x07\xfb\xca\ +\x76\xb0\x2f\xba\x83\xb3\x7c\x96\x4b\x74\x7c\x24\xec\x2c\x48\xba\ +\x3e\x89\x77\xaf\x7b\x11\x50\x30\x4d\xe8\xb2\x06\xc9\x7b\x57\xe2\ +\x81\xd4\x02\xa6\x28\x07\x58\xe4\x6d\x24\x10\x0b\xa3\x80\x60\x7e\ +\x67\x10\x8c\xe4\xf3\xb5\x25\x9d\xcd\x34\x14\xca\xb1\xd0\x8c\xcf\ +\x9c\xe5\x8c\x73\xbe\x81\x16\x44\x0d\x84\xe2\x2d\x9c\xa6\x4b\x3a\ +\x0e\x8b\x18\x31\xdf\x77\x55\xe0\x02\x76\x75\x6c\x2d\x6a\x6c\xd7\ +\x36\xf3\xab\xd8\xb5\xe3\x41\x08\xce\x4b\x0c\x81\x38\xbd\x45\xb9\ +\x97\x59\x19\x77\x51\xd4\xb8\x25\x76\x37\x73\x70\xcc\x6d\x61\x9e\ +\x0d\x18\xb8\x76\xc4\x91\x4d\x51\x87\x2d\xaa\x87\xc8\x75\x73\x08\ +\x90\x55\x68\x6c\x83\x26\xab\xcc\x74\x29\xa7\xdb\xc1\x12\x45\x71\ +\xd4\x9c\x02\x53\x47\xe0\x18\x59\xe1\x9a\xaa\x09\x5e\x35\xc7\x78\ +\x22\x3f\x4c\xd6\x73\x47\x59\x0e\x24\xec\x98\x0c\x79\xda\x45\x1c\ +\xc6\x9b\x53\xc4\x78\xe3\x10\xaa\x95\xde\x88\x8a\x99\x01\xdc\xdf\ +\x56\xa6\xd8\x8f\x88\x13\x45\x64\x74\xc5\x9f\x62\xd7\x7d\x10\x2f\ +\x19\x0e\x14\x01\xd2\xd2\x79\x1a\x06\x11\x3b\x20\x82\xb0\xaf\xc6\ +\x65\x9a\xf2\xc2\xe0\x33\x9e\xfa\x22\x25\xcb\xb0\x35\x3a\x4a\xaf\ +\x88\xf1\xdd\x9d\x38\xc8\x2f\x23\x50\x86\x60\x57\x58\x9b\x4a\xa8\ +\xb1\x9a\x5e\x49\x1f\xca\x9f\xa9\x57\xd3\xcb\xab\xe3\xcb\x5c\x51\ +\x4f\x58\x09\x04\x3b\x24\xfe\x74\x90\xae\xb2\x94\x60\x31\x5e\x5a\ +\xef\x5d\x06\x2f\xae\x81\xef\xa4\x67\xb8\x9f\xbe\x3f\x18\x0a\xa9\ +\x06\x24\x48\x1a\xab\xde\x1d\xa6\x9c\x87\x65\x51\x32\xa2\x29\xfa\ +\x50\x7d\x3f\x84\x6a\xe8\x5a\xac\xb0\x7a\x99\xbd\x28\xff\xf0\xdf\ +\x35\x6b\xc5\xc4\x42\xcb\x15\xf0\x75\x92\x3d\xca\xdc\xdf\x47\x6b\ +\xa5\x59\x84\xcb\x3b\x02\x5f\xec\xeb\x63\xc1\x3f\xba\x2b\x9c\xd2\ +\x35\x0d\x7e\xa1\xc9\xe3\xb0\xe0\x97\xd4\xf1\x4a\xe5\x5e\xe7\x9e\ +\x20\xba\xd4\x9b\xbd\x67\x62\xa1\x13\xf0\x66\xef\x19\x18\x68\x2e\ +\xc0\x6f\x12\xb6\x49\x29\x5c\x4b\x94\xe2\x97\x83\x87\x4b\x89\x2a\ +\xc9\x5e\xef\xad\x8a\x60\xf1\xea\x6a\xb2\x3d\xd2\x61\x70\x50\x97\ +\x47\xd4\x4c\x4a\xd1\xbe\x57\x39\xf5\x8e\x62\x4c\x7a\x14\x21\xc2\ +\x01\xb3\x42\x6e\x22\xd9\xbb\x2f\xe2\xf7\xfd\xca\xef\xfb\x43\x13\ +\x90\xad\x2b\x82\x8d\xcb\x4d\x60\x5f\xf9\x09\xec\x4b\x3e\x81\x7d\ +\x2a\x80\xfb\xc2\x00\xca\x5f\x2b\x82\x3f\x96\x03\x70\x7f\x79\x00\ +\xf7\x27\x05\x50\x0b\x14\xf9\x07\x83\xc3\x32\x6c\xd0\xaa\xb3\x92\ +\x7a\x1e\xd5\xed\x09\x75\xb4\x0b\x83\x37\xe1\x2e\x72\x2c\x05\x29\ +\xbd\x48\x6c\x04\x62\x8d\x45\x87\x37\xea\x6a\x7c\xf0\xdf\x00\x11\ +\x7a\x2e\x5a\ +\x00\x00\x3e\x7d\ +\x00\ +\x00\xd8\x19\x78\x9c\xc5\x7d\x0b\x98\x1c\x55\x95\xf0\x9d\xf7\x4c\ +\xcf\x23\x21\x84\x10\x42\x08\x95\x01\xc3\x24\x4c\x26\x21\xbc\x87\ +\xe7\x64\x92\x21\xc1\xbc\xcc\x0c\x79\x81\x4a\x4d\x77\xf5\x4c\x25\ +\xdd\x55\x4d\x55\xf7\x4c\x06\x5d\x44\x44\x5e\xca\x4b\xde\xa2\x59\ +\x10\x05\x44\xc4\x55\xc0\x85\x5d\x79\x8a\x28\xb0\xb8\xac\x8b\xac\ +\xe8\xea\x12\xd4\x55\x44\x44\x71\xd7\x7f\x45\xdc\xdd\x73\xcf\x7d\ +\x57\x55\xcf\xd4\x84\xdd\x7f\x3f\x3f\xec\x4c\x77\xd5\xbd\xe7\x9e\ +\x7b\xee\x79\x9f\x73\x4f\x7e\x28\x37\xf7\xd9\x37\x3f\x73\xc3\xf3\ +\x0b\xe7\x3f\x76\xee\xed\x8f\xfc\x78\x25\x21\xad\x27\x10\x42\xb6\ +\x11\xf2\x6c\x3d\x7c\x6e\x87\xcf\xef\xc3\xe7\x0e\x42\x9e\xbb\x84\ +\x90\x86\x97\xe1\xef\x1b\xe0\xf3\x87\xf0\xf9\x20\x7c\xfe\x0a\xbe\ +\xcf\x13\xd2\xb4\x9b\x90\xab\xff\x91\x90\x35\x1f\x23\xa4\xee\x6c\ +\xf6\x79\x23\xbc\x37\x7a\x0c\x21\x97\xfd\x94\xd4\x3c\x71\x29\x21\ +\xe7\xdc\x46\xea\xef\x9c\x20\xe4\xd3\x9f\x27\xf5\x7f\x0b\x63\xb7\ +\xbf\xcd\x3e\x6f\x3b\x9d\x34\x2c\x5f\x4d\xc8\xcc\xe3\xd9\xe7\xfd\ +\x7b\x49\xc3\xc0\xb7\xe0\xef\x1c\xfb\x7c\xe0\x13\xa4\x61\x0b\x7c\ +\xff\xfe\xf3\xd8\xe7\x83\xdf\x26\x0d\xf7\xfe\x1b\x21\x0b\x8e\x63\ +\x9f\x4f\xdf\x41\x1a\x1e\xfa\x33\x21\xdf\x7e\x8c\x34\xfc\xfd\xb7\ +\x09\xf9\xce\x2e\xd2\xf8\xa5\x4f\x12\x72\xc5\x79\x64\xe6\xc5\x6b\ +\x09\x29\xfc\x03\x99\xd5\xf0\x37\x84\x7c\xf3\x19\x32\xe7\x69\x80\ +\xfb\xee\x4e\x72\xe8\xe7\xff\x1f\x21\xdd\x6d\x64\x09\x85\xe7\x53\ +\xdf\x27\x47\x3e\xf5\x15\x42\xae\xfb\x05\x39\xf2\x15\x87\x90\xeb\ +\xe7\x92\x13\xff\xe5\x68\x42\x4e\xdd\x4c\x7a\xf7\x1c\x4c\xc8\x85\ +\x87\x91\x53\x6e\x3f\x88\x90\x9b\x97\x90\x53\xaf\x83\x75\x9d\x76\ +\x3d\x59\x73\xf5\x87\x09\x59\xba\x8e\xac\xb9\xf9\x72\x42\xea\x4f\ +\x26\x6b\x5f\xf9\x38\x21\x4b\x16\xb0\xcf\xcf\x6e\x27\x67\x1e\x07\ +\x70\x36\x7d\x83\xbc\x37\x7f\x2c\x21\xbd\x3f\x83\xcf\xe3\x09\x39\ +\x69\x31\x7c\x9e\x08\x9f\x1e\xd9\x7a\xee\x10\x21\xfb\xdf\xc9\x3e\ +\x1f\x5b\x42\xb6\xfd\x19\xd6\x61\xff\x80\x6c\xbf\xf9\x3d\x84\x1c\ +\xb8\x9e\x7d\x3e\xfe\x1b\xb2\x73\xdb\xa7\x09\x79\xe8\x73\x64\xe2\ +\xcd\x17\x09\xb9\xa6\x95\x5c\xf0\x91\x0e\x42\x3e\xbe\x86\x5c\x71\ +\x18\xec\xc1\x51\xf3\xe1\xf3\x26\xf8\x1c\x85\xcf\x5b\xe0\xf3\x01\ +\x72\xed\x37\x5e\x03\xbc\x5d\x4b\xee\x3c\xfe\x34\x42\x96\x3d\x43\ +\xee\xb9\x10\xc6\xd9\xd3\x42\xee\x7d\x09\xf0\xfc\xde\x1f\x92\xc7\ +\xef\xcd\xc2\xdf\xcf\x91\xa7\x7f\xea\x11\x72\xe4\x79\xe4\xb9\xbb\ +\x67\x13\x72\xd5\xef\xc8\x3b\xe4\x59\x42\xbe\xe2\xd5\x1c\x74\xe5\ +\x4f\x08\x19\xd9\x50\xb3\xf0\x25\x80\x73\xd7\xdd\x35\x9d\x0f\xfc\ +\x11\xe0\xb9\xb0\x66\xd9\x55\x17\x10\x32\x7e\x7e\xcd\x9a\xff\xbc\ +\x83\x90\xd3\x3b\x6a\x06\x7f\x7f\x0f\x21\x9f\x77\x6a\xb6\xcc\x39\ +\x93\x90\xfb\x7e\x5c\x73\xce\x4f\x00\xbf\x0f\x1e\x5e\x33\xd2\x7e\ +\x05\x21\x5f\xfc\xaf\x1a\x77\xbf\xf3\x09\xf9\xc6\xeb\x35\xee\x4d\ +\x37\x13\xb2\xf2\x9a\x9a\x8b\x4e\xcc\x10\xf2\xf0\xe9\x35\x9f\x18\ +\xad\xc0\x3e\xad\xab\xf9\xc4\xe5\x80\xf7\xa6\xd7\x6b\x6e\xff\x08\ +\xc0\xb3\xf0\x3d\x35\x5f\x7d\x7f\x0b\xe0\xf9\xa9\x9a\x27\x5e\x86\ +\xf9\xfd\xe5\x35\xdf\xa3\xb4\x34\x7c\x75\xcd\x8b\x33\x0f\x23\xe4\ +\xcc\xd7\x6b\x7e\xfc\xb1\xb7\x09\xf9\xeb\xc3\x6b\xfe\x65\xbf\x7e\ +\x42\x1a\xbf\x51\xf3\xea\xbf\x01\x3d\x7e\x73\x73\xcd\x3b\xf7\xc1\ +\x73\xd7\xac\xab\x6d\x78\x14\xd6\xf9\x99\x17\x6b\xbb\x5f\x3e\x97\ +\x90\xc3\xae\xae\x5d\xf6\x20\xac\xab\xf3\x85\xda\x81\x6d\x30\xef\ +\x37\x0e\xad\xdd\xfa\x1f\xcd\x84\xb4\x7d\xbd\xd6\xf9\xf2\x30\x21\ +\x7f\xf7\x81\x5a\xaf\xe9\x55\x42\x9c\x5f\xd5\x8e\x1d\xbe\x3f\x21\ +\x67\xbc\x5c\xfb\x17\xaf\x9c\x45\x48\xfe\xdf\x6a\xaf\x1f\x98\x07\ +\xf8\x7e\xad\xf6\x06\x4a\xdb\x27\xff\xa8\xf6\xae\xee\x03\x80\xc6\ +\x4f\xae\xbd\xe7\x38\xc0\xf7\xa7\x4a\xb5\x5f\xba\x14\xf6\xe1\xba\ +\xda\xda\xaf\xfe\x16\xd6\x7b\x6f\xa6\xf6\xb1\x7b\xae\x22\xa4\xff\ +\xb1\xda\xc7\xf3\x6f\x11\x12\xce\xae\xfd\xce\x69\xff\x4e\xc8\x47\ +\xce\xab\x7d\xf9\xf3\x0f\x03\xdd\x5f\x53\xfb\xa3\x79\xd7\x13\xd2\ +\x72\x54\x5d\xcd\xc5\x4f\x11\xf2\x57\xc7\xd6\xcd\xba\x69\x27\xe0\ +\xab\xb1\x6e\xf6\x04\xe0\xfb\x81\xfb\xeb\xe6\xcd\x06\x38\x4f\x58\ +\x54\x37\x6f\x0e\x9c\xb3\xd1\xcb\xeb\x96\xcd\x83\xdf\xaf\xff\x52\ +\xdd\x05\x74\xfe\xad\xa7\xd6\x7d\xbc\xbc\x86\x90\xcd\x73\xea\x2e\ +\x3b\x14\xe6\xdd\xb6\xb4\x6e\xcf\xb6\x2f\xc0\x59\x5c\x55\x77\xff\ +\x1e\xc0\xc7\xc3\x6f\xd5\x3d\xf8\x1d\xa0\x8f\xbf\x1d\xad\x7b\xe4\ +\xc5\x9f\x11\x72\xc3\xb9\x75\x4f\x9d\x0c\xf3\xdf\xf4\xcb\xba\x6f\ +\x7d\xff\x03\x70\x8e\xdf\xc7\x3e\x3f\xfb\x93\xba\xe7\xda\x7f\x4e\ +\xc8\x13\x07\xd7\xfd\x73\x1b\x85\xdf\xa9\xdb\xbb\x9b\xe2\x2b\x53\ +\xf7\x56\x09\xe8\xf3\x18\xab\xee\xad\x47\x00\x6f\x73\x7f\x50\xf7\ +\xa7\x19\x40\x27\xc7\xef\xa9\x5f\x78\x18\xe0\xfd\x88\xdb\xeb\x7b\ +\x42\x38\x07\x1f\xfb\xcb\xfa\x2d\x8d\xd7\x11\x72\xec\x47\xeb\xcf\ +\xfd\x30\xe0\xe3\xb1\xfb\xea\x27\xde\x84\x79\xbf\xe4\xd4\x5f\x34\ +\x0e\x74\x9b\xff\x4c\xfd\xa5\x1f\x83\xf3\x3d\xf0\xa3\xfa\x4b\xff\ +\xb8\x87\x90\xaf\xae\xa8\xff\xe4\x4b\xf7\x11\xf2\x17\x37\xd7\x5f\ +\xf5\x08\x9c\xb7\xcf\x9d\x5d\x7f\xdb\x15\x30\x5f\xe3\x04\xfb\xbc\ +\x65\x6d\xfd\xe7\x8f\x82\xfd\xbb\x7f\x57\xfd\xdd\xaf\xc3\x79\x39\ +\xe9\xfe\xfa\x47\x33\xff\x01\xf4\x7f\x56\xfd\x4b\x2f\xcd\x22\x24\ +\x77\x43\xfd\x5e\xef\xa7\x00\xff\x13\xf5\x3f\x9b\x01\xf4\x52\xfb\ +\xc7\xfa\xd7\xfb\xbe\x09\xf3\xd7\xd6\xbf\xf9\xf2\xdd\x84\x9c\x3b\ +\xda\x50\xf7\x31\xd8\x8f\x4f\xce\x69\x68\x78\x0e\xf6\xef\xac\xb1\ +\x86\x19\x6f\x95\x81\x3e\x1e\x6e\x38\x78\x26\xe0\x71\xfb\x4b\x0d\ +\x4b\x7e\x0e\xe7\x22\x7b\x5e\xc3\xaa\x93\x3e\x48\xc8\x95\x7f\x6a\ +\x38\xe7\x65\xc0\xff\x7e\x3f\x64\x9f\x5f\xef\x6d\xc8\xfe\x01\xd6\ +\x33\x7c\x48\x83\xf3\x1b\x38\xef\x9f\x9b\xdb\x70\xe9\x5f\xc1\xf8\ +\x8f\x5d\xdc\x70\xe3\xdd\x80\xdf\x03\x7e\xc1\x3e\x1f\x7f\xaa\xe1\ +\xcb\xef\x85\xef\xb7\xde\xd9\xf0\xb5\x3b\x9f\x06\xba\xfa\x7e\xc3\ +\xc3\x75\xdf\x21\xe4\xf0\x0d\x0d\x8f\xb4\xc1\xfe\x7f\xe1\xcb\x0d\ +\x8f\x5c\x05\xf4\xfa\xa1\xa7\x1b\x1e\xdd\x02\xe3\x7d\xf0\x0f\x0d\ +\xdf\xda\x04\xf8\xeb\x58\xdc\xf0\xf3\xab\x7a\xe0\x7c\x7f\xbf\xe1\ +\x4f\xff\x0c\xfc\xe2\xac\x1f\x34\x2e\xf8\x57\xd8\xcf\xa7\x87\x1b\ +\x17\xff\xe6\x8b\xb0\xfe\x9f\x34\x2e\xb9\xe4\x79\xc0\xdb\x40\xe3\ +\xd6\x83\x00\x7f\x80\x99\x1d\x6f\x02\x5e\x3f\xb5\xa7\xf1\xec\xef\ +\xc1\x73\xeb\xff\xa2\xb1\x70\x19\xd0\xd5\xe0\x5d\x8d\xe5\x43\x80\ +\x2e\xbd\xab\x1a\x3f\x71\xe3\x2a\x18\xf7\x9f\x1a\x6f\xda\xf6\x0c\ +\x21\xee\xac\xc6\x6f\x5c\x08\xf0\x75\x9e\xdd\xf8\xcc\x43\x0d\xb0\ +\xef\x3f\x68\xfc\x65\xc3\x06\x42\x9a\xef\x6e\xfc\xcd\x3d\x5b\x09\ +\xf9\xd6\xd6\xc6\xdf\x3e\x07\x78\x3e\xf4\xe1\xc6\xb7\xff\x0b\xe0\ +\xdf\xf2\x42\xe3\x3b\xf3\x80\xce\x4e\xe9\x6f\x7c\xe7\x36\x38\x9f\ +\x7f\xfd\x4e\x53\xf3\x35\x40\x0f\x2b\x2e\x6f\x6a\xff\x6b\xe0\x83\ +\x2b\xff\xb3\xa9\xe3\x92\x53\x09\xb1\x56\x36\x2d\x39\x0c\xf0\xd1\ +\xf7\xa7\xa6\x63\x47\x81\x3f\xcc\x6b\x69\x3a\xf6\x97\xb0\xcf\x8f\ +\xac\x68\x5a\xd5\xb7\x84\x90\x3b\xbe\xd7\x74\xe6\xa1\x70\x5e\x6b\ +\x67\x35\xad\x0f\x3b\x81\x7e\x5b\x9a\x36\xdc\x09\x74\x7f\xdb\x2d\ +\x4d\xdb\x9e\xfb\x25\xfc\xbd\xb6\x29\xfb\x9f\xc0\x9f\x66\x3f\xc0\ +\x3e\x1f\x1b\x6c\x3a\xef\xcb\x70\x5e\x0f\x9e\xdd\x74\xe1\xd3\xf7\ +\x13\xf2\xcc\xd7\x9a\x2e\x0b\x60\xdf\x6f\x5a\xdc\x74\xed\x6e\xa0\ +\xcb\xc5\x07\x37\xdd\xb5\x1c\xe0\xbf\xf1\xed\xa6\x27\xde\x81\x7d\ +\x3c\x6e\x47\xd3\x2f\x7e\x0d\x78\xbc\xe8\xfd\xcd\x47\x3c\x00\xf8\ +\xfd\x9b\x3f\x36\xaf\x78\x0a\xf8\xcc\xa3\x0d\xcd\xc7\x95\x01\xfe\ +\x23\x57\x34\xaf\x7a\x18\xf0\x79\xca\x53\xcd\x6b\x9f\x59\x4e\xc8\ +\x41\xdd\xcd\xf6\x87\x61\xdc\xc3\x6f\x6d\xfe\xdc\xb3\x23\x70\x7e\ +\x8e\x6e\xbe\xe3\x15\xa0\xd7\x5b\x37\x36\x7f\xf5\x80\x2e\xa0\xe3\ +\x85\xcd\x0f\xd4\xc3\x7e\x3c\xde\xdf\xfc\xc2\x0a\xc0\xf3\x6d\x3b\ +\x9b\x5f\x7c\xde\x85\xcf\x7f\x6a\xde\x7b\xeb\xa3\x20\x3f\x7e\xde\ +\xbc\xf7\x09\x38\x47\x77\x90\xe6\x37\xd7\x03\xbf\xfa\xec\x45\x2d\ +\xd6\x0f\x0f\x07\xb9\xf6\x16\x7c\x3e\x00\x72\xed\x0e\xf8\x84\xf3\ +\xf2\xec\xc2\x96\xf5\x37\x82\xdc\xeb\x1e\x69\x71\x7e\x08\xf8\xbb\ +\xeb\xb3\x2d\xa3\xed\x8b\x09\xf9\xda\x40\xcb\x79\x57\x02\x9e\x9b\ +\x87\x5b\x2a\x87\x01\x7c\xd7\xf7\xb7\x8c\xbd\x01\xf2\xee\xa2\x86\ +\x96\x4b\xee\x84\x75\x2d\x59\xd7\xf2\x89\xc3\x60\x1d\x8f\x8e\xb6\ +\xec\xf9\x33\xf0\xcf\x8b\xde\x6c\xf9\xfa\x12\xc0\xdf\xc9\x47\xb5\ +\x3c\x3f\x1f\xf6\xf5\x89\x6c\xcb\xf7\x16\x82\xfc\xdc\x7d\x43\xcb\ +\xcf\x0f\x03\x7c\x9d\xf7\xf7\x2d\xbf\x3e\x12\xe4\x46\xc7\x27\x5a\ +\xde\x3c\x1a\xf8\xec\xc1\xaf\xb6\xfc\xf6\x50\xd8\x87\xba\x8b\x5b\ +\xfe\xbc\x1a\xf8\xd2\xc3\x37\x64\x5a\x9e\xa0\x7c\xf5\xe2\x4c\xd7\ +\xa7\x61\x9f\x9c\x03\xe0\x13\xd6\xed\x9c\x03\x9f\xb0\x2e\xe7\x8e\ +\xcc\xd2\x47\x81\x0f\x9c\x70\x57\xe6\xd8\x2f\xc2\xba\xee\xbd\x26\ +\x73\xda\x11\x70\x2e\x3e\xbb\x20\x73\xfa\xed\x70\x9e\x8e\xb9\x2b\ +\xb3\xf6\x0b\xc0\xaf\x9f\x7e\x2e\x73\xee\x2b\x40\x6f\x4b\xaf\x84\ +\xcf\x03\xe1\xf3\xd7\xf0\x09\xf2\xad\xe7\xbd\x19\xe7\x56\x80\xe7\ +\xeb\xe5\xcc\xee\x86\x0b\x09\xa9\xe9\xcf\x7c\xe4\x6a\x98\x67\xad\ +\x95\xf9\xe8\xcf\x80\x1f\x6c\x9c\x91\xb9\x64\x26\xd0\xe1\xfe\xab\ +\x32\x37\x5f\x32\x17\xe8\x87\x64\x6e\x39\x87\xee\xcf\xb3\x99\xbb\ +\xe7\xc0\x79\x3c\xe0\x4e\xf6\xf9\x78\x5b\xe6\x8b\x97\xff\x1a\xf8\ +\xd5\x55\x99\xef\x9c\x03\xe7\x71\xd6\xc1\x99\x17\x36\x3d\x04\x7c\ +\xe7\x98\xcc\x0b\xff\x0a\xfc\x69\xde\x13\x99\x97\x7e\x07\xf0\xfd\ +\xe5\x37\x33\xaf\x5f\x7b\x19\x21\x1f\xfd\x40\x6b\xd3\x6e\xc0\xeb\ +\x9d\xbf\x6d\x3d\xf8\x95\x10\xe8\xfb\x8a\xd6\xc3\x3f\x0b\xf8\xdf\ +\x79\x47\xeb\xe1\xdf\x02\x7a\x9f\x33\xb7\x75\xd1\x05\x80\x9f\xcf\ +\xac\x69\x3d\x72\x13\xbc\x77\xcf\xa3\xad\x4b\xef\x07\xb9\x74\xe9\ +\x2f\x5b\x8f\x0f\x61\xdd\xdf\xb9\xae\xf5\xf4\xd3\x81\x7e\x77\x0c\ +\xb4\xf6\x3f\x0f\xeb\xd8\xde\xd6\xba\xf1\x66\xc0\xfb\xdd\x7b\x5a\ +\xf3\x5d\xdf\x03\x7e\xfc\x78\xeb\x65\xaf\x34\x81\xbe\x91\x69\xbd\ +\x7e\x15\xe8\x13\x27\x2e\x69\xbd\x79\x16\xc0\xfd\x85\x59\xad\xb7\ +\x5d\x0c\xfc\xb9\x7e\x57\xeb\xfd\x03\xc0\x77\x3f\xfd\xdd\xd6\x27\ +\x6f\x81\xcf\x3b\x97\xb5\xfe\xe3\x11\xc0\xbf\x1a\xc6\x5a\x5f\xbc\ +\x00\xf8\x59\xfb\x69\xad\xff\xfe\x9b\x41\x90\x6f\xbf\x6f\x6b\xdc\ +\x04\xe7\x7a\xc6\x8e\xb6\x83\xde\x06\x79\x7b\xbb\xdd\xb6\x30\x03\ +\xf4\x78\xcb\xc7\xdb\xba\x6e\x85\x7d\xbb\xee\x6b\x6d\x47\x5d\x00\ +\xf8\xfd\x9b\xfe\xb6\x13\xd6\xc3\xf9\x6a\xf9\x70\x5b\xef\x9c\x17\ +\x08\x39\xe4\xde\xb6\x1d\x8f\x03\xdf\xb8\xe9\xeb\x6d\xde\xa5\xb0\ +\xfe\xae\x57\xdb\x3e\xfc\xca\x9d\xc0\x4f\xe6\xb4\x5d\x78\x12\xd0\ +\xeb\x5f\xf6\xb5\x5d\x7b\x1b\xec\xeb\xd3\x35\x6d\x37\x5e\x43\xf9\ +\xd7\x48\xdb\xa3\x77\xc1\x79\xde\x34\xd1\xf6\xec\x8f\x61\xbd\x4f\ +\xf5\xb7\xbd\xf4\x26\xf0\xc5\x63\x7f\xdf\xf6\x93\x5b\x40\x9f\xb9\ +\xec\xe4\xb6\xbd\x0b\x6b\x81\x4f\x2e\x68\x7b\x75\x1c\xf0\x75\xc5\ +\x57\xda\x7e\xfb\x13\x58\xcf\x17\x4f\x6c\x9f\xff\x87\xdf\x10\x72\ +\xf4\xb6\xf6\xde\x02\x3d\x3f\xb7\xb4\xaf\x7e\x15\xd6\xf3\xe4\x73\ +\xed\xdb\x6f\x07\xf8\xf6\x9c\xd2\xbe\xe3\xcb\x30\xdf\x8d\xe7\xb4\ +\x7f\xe0\x17\x40\x57\x3d\xf7\xb4\xe7\xbe\x00\x74\x3d\x16\xb4\x17\ +\xff\x03\xce\x47\x66\x59\x7b\xf9\xc7\x9b\x09\x99\xff\xbb\xf6\xb1\ +\x07\x3f\x05\xe3\xdc\xd7\x7e\xeb\xaf\x01\xff\x5e\x4b\xfb\x17\x5e\ +\x06\x3c\xad\xf8\xaf\xf6\x3b\x7f\xf8\x79\x42\xce\xfe\x52\xfb\x5d\ +\x0f\x3f\x09\xeb\x3a\xb5\xfd\xe9\xa7\x81\x2f\x3c\x72\x6b\xfb\x5b\ +\x27\xc2\x7c\x5f\x7e\x6f\xc7\xbc\x43\x28\xbf\x39\xb5\x63\xf1\xf5\ +\x39\x42\x56\x9f\xda\x71\x64\x3d\xd0\xd9\xad\xcf\x74\x74\xff\x0c\ +\x9e\x7b\x72\x4b\xc7\x86\xbf\x03\xfc\xb7\x5e\xd2\xe1\x7f\x1a\xe8\ +\xf9\xa9\x1f\x75\x7c\xe8\xfc\x6e\xd0\x8f\x36\x74\x5c\xbd\x13\xf4\ +\xa3\xd3\x3a\x3b\xae\x75\x00\x3f\x0b\xb2\x1d\xcf\xfe\x13\x9c\xa3\ +\x45\x23\x1d\xec\x9c\x3c\x00\x9f\x40\x87\x4f\x36\x74\x3c\x7f\x36\ +\xe0\xe7\xdc\x77\x3a\x7e\xf5\xf3\x3a\x90\xfb\xff\xde\xf1\xc6\x5e\ +\xa0\x83\xf7\x3f\x38\xa3\xe9\x4a\xa0\xef\x6b\x1f\x9c\xd1\x3a\x13\ +\xf6\xe9\x9c\xc5\x33\x0e\xbc\x08\xf0\x47\x5e\x9f\x71\xe8\x95\xc0\ +\x27\x6f\xbd\x74\xc6\xc6\x4a\x2f\xc8\xfd\x03\x67\x7c\x90\xea\xb2\ +\x27\x7e\x65\xc6\xf8\x37\x81\xbe\x2e\x5f\x30\xe3\xf2\x56\xe0\x03\ +\x1f\x38\x60\xc6\xd5\x77\xdf\x05\xeb\xfe\xcc\x8c\x9b\x33\xa0\xf7\ +\x7c\xfb\x8d\x19\x7b\x7e\x7d\x1b\xf0\xb1\x37\x66\x3c\x76\x29\x9c\ +\xc3\xfb\x0f\x9d\xf1\xfc\x77\x81\xae\x4f\x7d\x68\xc6\xbf\x2c\xa4\ +\xe7\xfa\xe5\x19\x7f\x68\x5c\x00\xf0\xfd\xc3\x8c\x3f\x2c\x06\xfd\ +\xe2\xc6\xcc\x8c\x3f\x7d\x10\xe8\xe5\x33\xd7\x00\x31\xfe\xdd\xb7\ +\x01\x32\x32\x97\xf4\x91\xdf\x11\x9b\xe4\x88\x4b\x02\x62\x91\x12\ +\xa9\x10\x8f\x94\x89\xdf\x8c\xec\x1e\xfe\x6b\xe9\xcb\xe5\xac\x4d\ +\xbe\xeb\x95\x81\x32\x49\xc7\xaa\xc0\xce\x97\x3f\x08\xdf\xe1\x57\ +\x35\x74\x8c\x73\x60\x8c\x11\x78\xdb\x81\xff\xb7\x61\x0c\x3a\x82\ +\x36\x12\xfc\x5b\x7d\x6b\x93\x02\xfc\x57\x24\xc3\xf8\xfc\x32\xf8\ +\x0c\xe1\xc9\x02\xcc\xee\xc1\xdf\x16\xfc\xb7\x1b\xfe\x1d\xc2\x7b\ +\x0e\xbe\xed\x48\x38\xba\x60\xce\xd0\xb2\xad\x12\x9d\xd7\x2a\xfb\ +\x96\xed\x59\xce\x6e\x37\x2c\xbb\xde\x88\x35\xee\x06\xce\xb2\xe1\ +\xb0\x54\x70\x3d\xa7\x1a\x98\x87\x1b\x60\x06\x1c\x2c\xfa\x4d\x05\ +\x40\xf0\x49\x0f\xfd\x9f\x9c\x6e\x06\x5d\x36\xcc\x32\x12\xf8\x95\ +\x52\x4f\x4f\x0f\x1d\x75\xa6\x1c\x75\xc8\x3f\x83\x7e\x8f\xe3\x9e\ +\x1f\x59\xbe\x03\xcb\xe9\x82\xff\x7c\x58\xc6\x62\xf8\xdb\x87\x45\ +\xee\x84\x6f\x29\x2a\xba\xf8\x77\x21\x3e\xe5\x90\x2c\xfc\xcf\x85\ +\xef\x3d\xdc\x02\xf5\xbb\x42\x98\x82\x6f\x32\xe4\x2c\x47\xe4\x94\ +\x47\x1d\x2b\x74\x0a\x4e\xb6\xec\xe4\x2c\x7f\x78\x27\xfc\xa3\x2b\ +\x5c\x1c\xc5\x15\xae\xa8\xfa\x72\xae\x80\xe5\xb0\x1d\xc9\xca\xe5\ +\x50\x80\x3c\xf8\x7b\x14\xc1\xc8\xe1\x4e\x15\xc8\x1b\xb8\x67\xf4\ +\x99\x09\xf8\x2f\x0b\xbf\xd1\x45\x33\xc4\x66\x01\xbc\x0a\xee\xb6\ +\x03\x00\xb3\x05\x31\x94\x98\x08\x09\x27\x41\x46\x28\x97\x77\x42\ +\x5f\x09\xb6\xd6\x09\xad\x6c\x25\x08\x1c\xd8\x7e\xba\xcf\xb0\xe9\ +\xb9\xf2\x28\x2c\x2d\x67\x65\xfd\x82\x1f\xd0\x75\x46\x56\x1f\xea\ +\xcb\x84\x21\x26\x06\xcb\x13\x05\x07\x97\xb9\xc4\x58\x26\x05\x7a\ +\x35\x62\xd6\x45\x30\x2d\xf8\x55\x2e\x41\x82\xb1\x3f\x8e\x61\xf5\ +\x73\x20\x70\xb0\xea\x33\x34\xc3\x18\x01\x45\x8b\x7c\xbf\xae\x2f\ +\xc8\xd2\xe7\x5b\xf8\xf3\x41\x16\x1f\xdc\x49\xfa\x91\x7c\xf4\x53\ +\x82\x2f\x02\x41\x5a\xf0\xdb\x10\xd9\x4c\xd6\xe1\x89\xa2\xdf\xd3\ +\xa7\xf2\x88\xe7\xf3\xf1\xef\x6e\xf8\x7b\x90\xac\x21\x6b\xc9\x00\ +\x3c\xa9\x3f\x15\x20\xee\xcb\xf0\x49\x4f\xd7\x08\x3d\xe1\x8a\x60\ +\xfa\x03\xc7\x2e\x03\x46\x81\x32\xec\x20\xdb\x63\xf5\x0f\x6d\x5e\ +\x87\x18\xf4\xec\x52\xb7\x35\xb8\x66\xed\xc0\x10\xfd\x33\xeb\x7b\ +\x61\x39\xb0\x5d\x2f\x01\xee\x0c\x2e\x90\xce\x35\x21\xc7\x6d\xe8\ +\x0b\x02\x7b\x82\x3e\xdc\x2a\x1e\x86\xbf\xf1\xf1\x31\xb9\xcc\xb2\ +\x46\x14\x25\x24\x1b\xb6\x03\x8c\x78\x02\x24\x85\x32\x92\xdc\x08\ +\x20\xa4\x20\x4f\x2b\x9f\x0c\x11\x10\xc0\xd3\x45\x3e\x86\x22\x20\ +\x3a\x72\x4e\x23\x31\xf8\x46\x82\x76\x92\x5c\x32\xf0\x90\x82\x1d\ +\x58\x40\x32\x01\x10\x89\xed\x8d\x54\xe8\x9f\x36\x85\xd4\xca\x07\ +\x7e\x11\x9e\x88\x10\x52\xe2\x82\x66\x92\x95\x64\x29\xe0\x5e\xf2\ +\x2f\x39\x55\xf3\xca\xa5\x83\x92\x17\xb5\xb3\xf7\x56\xb2\x6f\xf0\ +\xcd\x3d\x91\x1d\xa7\x9f\x74\x2c\x93\x17\xb2\x73\xa6\xf8\x28\x45\ +\x59\x91\xbc\x0d\x4f\x50\x32\x2d\xf1\xb3\x55\x8d\x46\x6c\x40\x40\ +\x05\xf7\x7f\xdf\xa9\xa4\x5f\xa1\xac\x58\x29\x94\xdd\x52\xc1\x59\ +\xca\xf8\xef\xf0\x52\xc6\x6c\xd3\x11\x4e\x02\x0a\xe6\x03\xd0\x2e\ +\x92\x39\x5d\x5e\x1e\x80\x08\x90\xab\x51\x16\x60\x4b\x00\x1a\xfb\ +\xdd\x20\xcb\x0e\x59\x1b\x1b\x83\x7d\x81\x43\x7c\x2e\x01\x8b\xd9\ +\xea\x83\xa6\x3e\x4d\x7d\xf0\xbb\x89\xa3\x24\x0e\x15\x24\x70\x32\ +\x41\xb4\x9c\x3d\x6b\x1c\xec\x14\x85\xc9\x2c\xae\x20\x8a\xb8\xbe\ +\x75\x43\x8a\x81\x59\x94\x28\x29\x8b\xd1\xd8\x58\x7c\xfd\x19\x58\ +\x4d\x01\xa1\x51\x94\xd7\xd0\x5f\xf0\x19\xd9\x71\x72\xc5\xbf\xf1\ +\xf1\x5e\xf5\x38\x07\x76\x14\x09\x6c\xd2\xd3\xc3\x24\x92\x1c\xfe\ +\x10\x1c\xae\x9a\xa4\x49\x9c\x76\x2e\x4c\xeb\xf0\xa3\x1b\xe8\x72\ +\x43\x0e\x9a\x81\x87\x43\xc7\x5a\xc7\xcf\xcb\x0c\x39\x42\xe8\xac\ +\x13\xe4\x72\x26\x92\x8b\x18\xc7\x42\xa6\x60\xca\xa0\xf3\x60\xcf\ +\xc5\x72\x2c\x4e\xd3\x7b\xf1\x14\xb9\xb0\x9c\x0a\x2c\x88\xee\x4d\ +\x4e\x63\xc7\x07\xe3\x14\x6c\x31\x28\x50\x86\x1d\x2a\x1f\x73\x81\ +\x3d\xee\x55\x05\x64\x3e\xc8\x09\x7a\x44\x8b\x78\x5c\xec\x2a\x4a\ +\x53\xdb\x66\xa7\xe8\x8f\x39\x31\xbd\x69\x95\x53\x50\x0a\xc9\xb9\ +\xe4\x7d\xf0\xa2\x8b\x54\x93\xa4\x35\xb1\xf3\x9f\xa4\x37\x59\xf8\ +\x7b\x7a\xdd\x69\x39\x03\x47\xa9\x4f\x8c\xcb\x45\x14\x28\xca\x10\ +\xe3\x3a\x94\x01\xf2\x5f\x25\x1e\x39\x1f\x97\xf0\x3f\x2e\xac\xa6\ +\x79\x18\x19\xa2\x42\xd4\xc3\x8a\x1c\x05\x6a\x47\x36\xa8\x03\x98\ +\x73\x8b\x8e\x17\xba\xbe\x37\x35\xf3\x8a\x9e\x4b\x2a\x18\x46\xe0\ +\xed\xb2\x46\x1f\xab\xc4\x70\x5c\xea\xf7\x33\x7c\x28\x05\x5a\x3e\ +\x50\xf5\xa5\x0e\x40\x1a\x3d\x7a\x15\xc6\xbf\xb4\x57\xfd\x71\x6f\ +\x24\xb0\x73\xfa\xc1\x90\xdf\xe1\xab\x9f\x44\x32\x09\x71\x17\x8a\ +\x28\x4d\x3d\xae\x9e\x4d\x53\xd9\x42\x02\xf2\x12\xdf\x70\x71\x64\ +\x26\x6e\xba\x39\xf1\x89\xfd\x62\x14\xc0\xf6\x46\xb1\xbb\xd5\xab\ +\x77\x97\x0a\x7e\x2e\x99\x53\x84\x16\x90\x13\xa0\xd4\x2d\x82\x3c\ +\x09\xc4\x97\xdd\x94\xfc\xc2\xca\x30\xe0\x1d\x10\x9d\xb7\xb3\x4e\ +\x58\x75\xd1\x0b\xc8\x2a\x9c\x30\x0f\x00\x58\xfc\xb4\x0c\x92\x5d\ +\x08\x34\x68\xa9\x4a\x89\xc7\x97\xe9\xfe\x0d\xee\x72\xca\xd9\x51\ +\x3a\xe0\x2c\x3e\x20\xfd\xff\x15\xec\x6b\x1c\xb3\x0d\xc6\x14\x9c\ +\x42\x91\x4d\x13\x3c\x37\x0e\x07\x44\x93\x62\xfc\x1b\x7c\xa9\x40\ +\x36\x71\x8c\x07\xef\x0a\xe7\xe2\x2c\x51\x05\x7b\x27\xfe\x8b\x1d\ +\x7e\x0d\x24\xcd\x36\x59\xba\xa9\x52\xae\x82\x59\x1f\xd4\x39\x8b\ +\x43\x68\x85\xa3\x8e\x53\xee\xa9\x02\x7a\x1b\x30\xb2\x1c\xe7\x3e\ +\x8a\xe2\xea\x57\xe7\x5c\x24\xee\x0c\x7b\x83\xfe\x89\x8f\x77\x6b\ +\x8f\x0b\xa3\x40\x5f\xa7\x50\xfa\x5d\xd0\xf3\x14\xfa\x0e\xa4\xef\ +\x33\x50\x61\x57\x5d\xe0\x88\x4a\x9f\x8a\xce\x30\x1f\xce\x39\xc5\ +\xa3\xce\x59\xe3\xc2\xa2\x75\xc0\xf5\xdc\x70\xd4\x12\x5c\x8a\xeb\ +\xde\xec\x5b\xc9\xa5\x4f\x8e\x8c\xa5\x30\xac\x8b\x8c\x10\x7f\xa5\ +\xf4\xab\x04\x54\x41\x9b\xab\x93\x8d\x8a\x4c\x83\x5b\x1c\xe5\x51\ +\xbf\x52\xb6\xb2\x20\x12\x28\x82\x19\xaa\x92\x41\xb8\x24\x81\x55\ +\xea\x93\xb3\x0d\x5e\x11\xd1\xf0\xfe\xf7\x34\xfe\x13\x14\x03\x5c\ +\xc1\x95\xb8\xf4\x0a\x1c\xdf\x2b\xb9\xb8\x0c\x80\x17\xdd\x99\x7a\ +\x21\xc0\xe3\x0f\xaf\x07\xe8\xc7\x28\x92\xd5\xc3\xeb\x41\x1e\x69\ +\x0f\xd3\x3f\xf1\xe1\x17\xe0\x61\x2a\xc8\xc7\xde\x15\x17\x2b\x73\ +\x31\xf9\xbf\x8e\xde\x2a\x32\x8a\x72\xe3\x12\x2a\x9d\x6a\xc9\x3b\ +\xd6\xa3\x08\x4e\x3c\xb6\xc3\x4e\x79\xdc\x71\x3c\x6b\x05\x93\xcf\ +\xe1\x34\x24\x53\xd6\x2f\x4d\x24\x21\x72\x1e\x1c\xd8\xf3\x50\xbf\ +\xc8\x71\xad\xc0\x8e\xab\xd7\x1b\xf3\xf9\xd0\x29\x6b\xea\x25\xfb\ +\x02\x07\x78\x3c\x81\x80\x9d\x84\x21\xcb\x88\x69\x7b\x72\x8e\xf0\ +\x7f\x8a\xf9\x35\x6c\x55\x09\x7c\x68\x1f\xf0\x1c\x47\x54\x77\x55\ +\xc3\xd6\x45\xf4\x24\x9b\xa3\x73\x74\x73\xd4\x95\xba\xbe\xa6\x43\ +\x2b\xb5\x2b\x03\x62\x26\xaa\x62\x36\x48\xdd\x32\xf6\xf8\x45\x31\ +\x87\x02\xb3\xb2\xdf\x00\xcc\xd1\xb3\x22\xe4\xb7\xb2\xae\xff\xf7\ +\xd8\x8e\x66\x75\x07\x0e\x33\xb4\xc1\xfa\x9e\x18\x49\xa3\x7d\x69\ +\x92\x6b\x13\x7b\x87\xdb\xdd\x9b\xcc\xe5\x28\x69\xcd\x1f\xab\xf2\ +\x62\x21\x86\x17\xe1\x6b\xd8\x2b\x7d\x0d\x4c\xf1\x66\xdc\x84\xe1\ +\x2d\xd8\x37\x3e\x22\x81\x5a\x1c\x67\xbc\xdc\xed\x10\xb5\x02\x35\ +\x7d\x67\xb3\x78\x02\x01\x9f\x8d\xfa\x61\x04\x50\xa5\x25\xca\x87\ +\xab\x0e\x90\x21\x67\xe0\x99\xd1\xe1\x6a\xdc\xec\x97\x01\x2e\x8d\ +\xa6\xd9\x17\xf8\xc2\x93\xf2\x85\x7d\x61\xc2\xff\xff\x0e\x3b\xdb\ +\x4e\xa1\xfe\x1b\x0c\x40\x2e\x74\x33\x5b\x57\x32\xeb\x4d\xcb\x01\ +\xb2\xca\x7e\x37\x19\x81\x86\xb4\x0e\xf4\x21\x66\xb9\xb1\xa6\x30\ +\xdd\x30\x98\xb5\x0b\xba\x51\x8e\x7f\xe3\x2b\xff\x6c\xbc\xb2\x6f\ +\x02\x8f\x19\x00\xba\xb5\xa8\x5b\x91\xc3\x54\x31\x87\xdf\xfe\x2f\ +\x19\xf0\x39\xb8\xe0\x2a\xb2\x8f\x7b\xdc\x86\xed\xd0\x61\x9c\x70\ +\x1f\x98\x72\x0c\xaf\x9d\xb0\x8e\x64\x33\x51\x3a\xd4\x95\xb1\x3e\ +\xc8\x8c\x3b\xe9\x18\xdf\x8f\x8f\x86\x5f\x2b\xcf\xf8\x85\x89\x63\ +\x32\xfb\x43\xec\x45\xb5\xfd\xcb\xe2\xd3\xea\xf7\x22\x0a\xd0\x22\ +\xff\xab\x84\xbb\x19\x70\xe9\x91\xd3\x3c\x18\x4e\x22\xc4\xc7\x33\ +\xd0\x80\x1a\x0b\x05\x89\x47\xaa\x9c\x32\x0c\xdb\x45\xc0\xa4\x4d\ +\x7d\xd4\xf0\x04\xc5\xba\x1b\x4e\xb9\xb8\x7c\x95\xc5\x09\x82\x2a\ +\xa0\xac\x57\x6e\x89\x32\x6e\xf7\x30\xba\x19\xfd\xaa\x87\x92\xba\ +\xc2\x7c\xb4\xc6\xe9\xf3\x6f\x68\x87\xb2\x7b\x50\x58\xd4\xe3\x7e\ +\xb0\x8b\x2a\xd3\xa5\x82\x0d\x2a\x76\x1e\xac\xc0\x11\xc7\x2f\x3a\ +\xe5\x60\x82\x1d\x3a\x6e\x38\x1b\x70\x6f\xa2\xcf\x4e\xb1\xd1\x12\ +\x66\x65\x3b\x68\x2f\x4f\x32\x64\x09\x4d\x78\x8f\x69\xac\x28\xbf\ +\x87\xb9\xca\x23\xc4\x85\x98\xa6\x00\xff\x9b\xc0\xdf\xe9\x02\xc7\ +\xe1\xff\x99\x39\xa7\x5b\xa7\xcc\xeb\x64\xd8\xa7\xa6\x46\xa0\xc7\ +\x39\xfa\x7d\x6f\xcc\x09\xca\xd6\xb0\x9b\x73\xa9\x90\x80\xb5\xc3\ +\x16\x4f\x48\xfd\x90\xd9\xb3\x34\xe4\xc1\x2c\x57\xdd\x41\x28\x56\ +\x33\x6a\x97\x9c\x15\xab\xb6\xb8\xce\x78\x2c\xba\x30\x26\xd5\x36\ +\x45\x67\xec\xfc\x17\xf9\x77\x2b\x00\x76\x15\xe1\xd9\xd7\x78\xcd\ +\x12\x21\xf2\x10\x18\x6b\xc5\x2a\x6b\x0c\xc0\x01\xeb\x34\x9f\x18\ +\xa1\xa9\x02\x79\x27\xd9\x22\xe1\x8d\x43\x8b\xb0\xca\x19\xdb\x8d\ +\x99\x26\x19\x74\x1e\x6c\x04\xb5\xb2\xc7\x71\x4b\x28\xe8\x25\x42\ +\x9d\xef\x3a\xbb\x82\xc1\xfc\x71\x6b\x10\x98\x8f\xb5\xd2\x0e\x8c\ +\xc1\xfc\x71\xfa\x35\x7c\x8b\x83\x2d\x97\x83\x85\x91\x5d\x0f\xe5\ +\xd0\x14\x6b\x54\x5b\x19\x36\xa6\x98\x4b\x87\x0a\xf9\x7e\x52\x36\ +\x07\xdc\xcc\x2f\x0c\x4f\x3a\xdb\x9a\x04\x85\x9c\x1d\xca\x32\xaa\ +\xda\x2e\xf9\x3d\xfc\x35\x1d\xd5\xe4\x30\x3d\x0a\xe4\x79\x54\x92\ +\xc5\xdc\x62\x9a\x6d\x31\xe4\xec\x16\xfa\xe8\x10\x7a\x1b\x75\x7d\ +\xb4\x9e\xfe\x9a\xf4\x70\x2f\x3f\x4e\x45\x00\xba\xcc\xcf\x66\x91\ +\xb3\x4c\xb1\xad\x8c\x3d\x32\x01\x53\xe1\x84\x05\x8b\x51\x7e\x84\ +\x21\x7f\x04\x74\x19\x2e\x01\x2a\x59\x80\xd2\x5a\xef\x33\xb7\xd8\ +\x7c\x3e\x1f\x3e\xd1\xcf\x1f\xa0\xeb\xa0\x0f\x20\x04\xe5\x08\x04\ +\xc2\x7f\x91\x12\x0a\x03\x8d\x05\xc9\xb2\x03\xf8\x6d\x37\xfa\xc6\ +\x92\x8e\x89\xf2\xd6\x2c\x63\x90\x31\xe9\xa7\xc3\x87\x2b\x40\x86\ +\xe7\x01\xae\xa4\x42\x92\x6e\x4d\x6b\x78\x84\x92\x5a\x57\x36\xb1\ +\xe4\x2a\x42\xcd\xea\x4a\x5a\x29\x5b\x63\x19\xc5\x78\xc5\x20\x86\ +\xd9\x0a\xc7\x65\xd7\xab\x38\x12\xc1\x73\x23\xc0\xe0\xaf\x12\x90\ +\x2b\xf6\x11\x10\x1d\xe5\x1a\x38\x89\xc8\x66\xce\x4d\xee\xbf\x97\ +\x4e\xc9\x11\x34\x45\x65\xac\x45\x43\x79\x77\x04\xe5\x6a\x3d\x0a\ +\xdd\x59\xbf\x58\x04\x46\xca\xf0\x3d\xf9\x12\x9f\x02\x85\x88\x4d\ +\x12\xa0\xaa\x56\x44\x81\x50\x7d\x51\xf4\x68\x8c\xa2\xe7\xce\x4d\ +\xf4\x0b\x66\x13\x58\xe9\x64\x5e\x0c\x36\xbe\x23\xad\x13\x61\x6f\ +\xeb\x01\x01\x21\x66\x94\x8b\x29\xd4\x64\xa0\xee\x9b\x1d\x18\x1c\ +\xb7\x4b\xa1\x95\x73\x43\x90\xb8\x13\x56\x91\x62\x25\x81\x31\x4b\ +\x99\x43\x43\x03\xf9\x80\xea\x14\x54\xee\xe4\x0b\x76\x99\xfa\x8d\ +\x90\x71\x1f\xa8\xa3\x6d\x15\x1b\x50\x62\xed\x38\x20\x8c\x02\xc7\ +\x9a\x57\xe5\xdc\xeb\x98\x8a\x9e\xf9\xfd\x39\x3d\xea\x80\x4e\x39\ +\xe9\x1c\xe0\x4c\x3e\x50\xc6\x08\xa2\xd5\x02\x2b\x86\x6a\xac\x39\ +\xa5\x02\xf0\x41\xcf\x08\xdc\x9c\xe6\xbb\x63\xdf\xd2\x2f\x71\x94\ +\x13\x8c\x51\xf4\x60\x99\xce\xe3\x47\x50\x2b\xb0\x70\xe3\x96\xc1\ +\xff\xe7\x49\x5e\xce\x33\x5f\xa7\x40\xc6\xe5\x47\x5c\xc0\xad\xb7\ +\xcc\xcf\xe7\xab\x4f\x1c\x05\x9f\x8b\x91\x18\xf8\x82\x31\x1b\xa3\ +\x50\x59\x51\x05\xfc\x64\xd1\xe4\x73\x7f\x3f\x0b\x65\x26\x82\xaf\ +\x09\x28\x60\x58\x70\x76\x92\xc0\x97\x13\x2f\xe2\x76\xaa\x8f\x7a\ +\x93\x88\x91\x5a\x5c\x56\x38\x48\xa2\xba\x17\xb0\x71\x28\x70\x8b\ +\xce\x6e\xcd\x9a\x62\x5f\xd0\xc1\x6a\x3a\x23\x83\xe9\x43\xb9\x72\ +\xb0\x64\x5f\x74\x35\x15\xa5\x1b\x7f\xf3\xf9\x49\x62\xa1\xc2\x12\ +\xfa\x1b\xc5\xa9\x32\x73\x42\x8c\xe8\x46\x44\xb4\xaa\x00\xbb\x88\ +\x8b\xe8\xa6\x53\xd4\x60\x52\x90\x46\x22\x54\xc4\x4c\x97\x61\xab\ +\xf4\xa4\x9a\x53\x30\xcc\x2c\x17\xd5\x52\x97\x2b\xa6\x2a\xc0\x77\ +\x39\xc5\x5b\x48\xf7\x07\x58\x9b\xe3\x25\xe7\x02\x75\xf3\xdf\x83\ +\x0a\x0d\xcc\x50\x07\x36\x50\x12\x06\x5a\xb8\xc4\xa7\xdb\x1c\x0a\ +\x7b\x4b\x1a\x5b\x21\x1a\x5a\x3c\xe7\x85\x87\xbf\x2c\x96\x6e\xe3\ +\xf9\x41\xd1\x2e\x30\x6b\xcc\x45\xcd\x35\x4c\xdc\x4b\xe0\x05\xab\ +\x10\x1f\xa3\xb8\x56\x16\x2d\x61\xd8\x10\xe9\x0c\x45\xb9\x23\x49\ +\xd1\xbb\xfd\xce\xf2\x72\xbe\x55\xb0\xc3\xb2\x1e\x80\xe3\x11\x4a\ +\xfa\x9b\x74\x36\xef\x8e\xcc\x94\x6a\x1e\x4d\xe5\x7d\xf7\x61\xe5\ +\x63\x29\x3c\x22\xac\x4c\x21\xc6\x80\xb2\xc2\x5c\xbe\x6a\xc0\x39\ +\x69\x3d\x4f\x92\x33\xb9\x31\xbf\xaf\xee\x01\x15\x61\xf2\x65\xf4\ +\x2e\xcb\x0d\x1c\x49\x49\x11\x61\xcb\xb0\x12\xe0\x3b\xec\x3b\x11\ +\x21\x31\x47\x15\x67\xe3\x3c\x2d\x32\x58\xe1\x11\xc8\x78\x54\xf0\ +\xfd\x67\xfa\x48\x4e\x55\x43\x82\xbe\xe7\x20\x91\x66\x99\x19\x14\ +\x62\xa0\x05\x1e\xa2\x22\x08\xc9\x30\xef\x16\x0a\xf0\x37\x12\x2d\ +\x3e\x59\xf1\xdc\xb2\xa3\xa2\x85\xdc\xe9\x77\x56\x49\xc5\x0a\x67\ +\xc2\xe1\xa9\xc8\xad\xd6\x15\x9e\x26\xfe\x58\x95\x17\x6f\x4e\x74\ +\xeb\x16\xd1\xf9\xa6\x12\x70\x96\x1a\x8e\x5e\xc5\x67\xb7\x72\x73\ +\xd1\x22\x5d\xf0\xad\xf8\x6b\x71\x84\x87\x08\x6e\xc5\x38\x72\x94\ +\x87\x94\xb5\xbd\x0a\xb9\xc5\xed\x6a\x12\x72\x5d\xd5\xf4\x1c\x5c\ +\xcd\x56\x1a\xd3\xef\x5a\x45\x3f\x16\x4f\x2b\xcc\x43\xdf\xe0\x7a\ +\xbe\x04\x5d\x39\xb3\x70\xc0\xa4\xa7\x57\x19\x76\x73\x28\x95\x67\ +\x5d\x95\x89\xaa\x2d\x13\x68\x7c\x25\xe5\x50\x2d\xec\x17\x44\x20\ +\x14\x11\x5c\x0f\xd5\x41\x56\xaa\xe4\xaa\xfd\x15\x0c\x43\xbe\x9e\ +\x5f\xd4\x89\xda\x87\xa9\x21\x55\x9b\x6a\x06\x8e\x0c\xc8\x48\x33\ +\x70\x23\x53\x6b\x14\x15\xf5\x15\xca\x54\x37\xa1\x2f\x1d\x72\x46\ +\xc5\xed\xed\x5d\xe5\xda\x05\x7f\x04\x3e\x0b\x23\x83\x4e\x99\xa6\ +\x57\x84\x38\x18\x4f\x64\x39\x8b\x6b\x3b\xb6\x66\x5f\xd8\x86\xa6\ +\xa4\x94\x66\x91\x02\x66\x23\x02\x55\xee\xce\x20\x98\xc6\x67\x48\ +\x10\x0e\x05\x10\x9c\xc0\x03\x52\xb0\x06\xb7\x9c\x61\x6d\xb2\xcb\ +\xf4\xcf\xd0\x2a\xf8\x59\xe9\x3e\x49\x01\xda\x02\x8c\xd3\x09\x42\ +\x0b\xb8\x96\xed\x60\xf0\x5f\xa7\x80\xd6\xbe\xc2\xb8\x3d\x01\x12\ +\x04\xec\xd3\x94\x43\x5f\x02\x10\x6b\x43\x91\x68\x7a\x9a\xc5\xe5\ +\xbb\xc9\xd5\xba\xb8\x21\x31\x8a\x9e\x26\x17\xf7\x4d\x3c\x5f\x46\ +\x6e\x57\xe0\x67\xd2\x47\x7e\x9c\xe7\x78\xcd\x21\xef\x8a\x27\xc1\ +\xa9\x3c\xa6\xa5\x62\x09\xcc\xf2\x96\x5c\xa8\x0b\x94\x4d\x7b\x98\ +\x2b\x58\x74\x57\xad\x5d\xce\xc4\xe2\x94\x8b\x64\xf9\x90\xd4\x30\ +\x50\x29\xa3\x0d\x7d\x01\xbc\x92\x72\x80\x4e\xe6\x87\xe0\xb0\xbb\ +\x9a\x0b\xca\xc5\x98\x84\x45\x8e\x55\x9b\xb0\xd2\xce\xee\x0a\x41\ +\xbe\x8c\x5a\xc7\xfe\x8f\x0d\x7f\x7c\xd2\xf0\xc7\xff\x8f\x0d\x7f\ +\x62\xd2\xf0\x27\xa6\x1c\xfe\xbe\x04\x47\xdf\x6b\x52\x24\x33\xf2\ +\x29\x69\x47\x8a\xd2\xae\x25\x15\xb4\x9c\xb4\x4a\x4d\xb1\x5e\xe0\ +\x86\xd2\x5e\xce\xea\x19\xd9\x29\x95\xcf\x22\x47\x03\x5f\x5b\x4c\ +\x58\x6e\x1f\x33\xfc\x5e\x93\x89\x46\x36\xfe\xcb\xe5\x89\x37\x4c\ +\x4d\xcd\x31\x55\x51\x2e\xf5\xb4\xfe\x51\x27\xbb\x8b\x39\x61\xdd\ +\xbc\x35\xe1\x57\xac\x71\x9b\x66\xb0\xd3\x58\x24\xf0\x6f\x20\xba\ +\xa3\x57\x31\x09\x86\xa9\xda\xc3\x8e\xe5\x16\x4b\x7e\x40\x85\x63\ +\xd9\xf7\x7b\x52\xa2\xe7\xbb\x70\x78\x29\xd0\x62\x61\x93\xa3\x25\ +\x19\x15\xec\xd4\x0d\xe3\xbf\xd8\xb7\xc2\xd4\xf6\xb8\x4e\xaa\xb8\ +\x69\x97\x7c\x8f\x19\xe7\x4c\x23\x3f\x9f\xa3\x44\xb8\xbb\x99\xf7\ +\x78\x89\xcc\x79\x4f\x46\x98\x4a\x9e\x94\x08\x96\xe8\x1b\x9c\x04\ +\x7d\x9e\xef\x2d\xf5\xc0\x30\xcd\x59\xc3\xc0\xea\x76\x01\x26\x87\ +\x9d\x11\xd7\xf3\x58\x42\x1b\xcd\x0d\xb7\x96\x24\xe1\x34\x25\x4a\ +\x67\x81\x3c\x7b\x83\xb0\x6c\x52\x66\x30\xa8\xe3\xd7\xcc\xf2\x30\ +\x53\x9f\xbd\xf8\x58\xc7\xc7\xc6\x4a\x7b\xd0\xe2\x63\x9d\x18\x1b\ +\x2b\xed\xa9\x3a\x15\x65\xb6\xca\xdb\x67\x7e\x15\xa1\x3e\x5a\xd2\ +\xc7\x58\x25\xf7\x5f\xce\x7b\x50\x3f\xa6\xe0\x17\xed\x52\x09\x71\ +\x8c\xfa\x2d\x26\xe8\xa7\x04\x64\x05\xcf\x96\x1f\xe5\xf9\x02\x62\ +\xaa\x22\x6a\x46\x4e\xc4\x65\x84\x00\xcb\xc9\x67\xa9\xc9\xe9\xd6\ +\x83\x92\xe8\xa4\x9c\x75\x1e\x57\x59\x34\xed\x4a\xc8\x13\xe5\x0d\ +\xee\x17\x2a\xd2\x34\xc4\xfc\x5c\x63\xe0\x24\x97\x66\x9b\xee\xd6\ +\x4b\x39\x6a\x8f\xb1\x5b\xba\xc9\xa2\x94\xc4\xa4\xb9\x66\x19\x6e\ +\x47\xac\x96\x48\x4d\x1f\x1b\x8c\x63\xcf\xe6\xd4\x8b\x52\x52\x3a\ +\x70\x0d\x08\x30\x18\x65\xd1\xa3\x3b\x8d\x7d\x52\x51\x25\x3d\x2b\ +\x4e\x59\x17\x33\x98\x36\xcc\x23\x23\xcc\x1e\x48\x31\xf4\x31\xc6\ +\xd0\x51\x15\x44\xf8\x22\x8b\xc0\x94\x98\x31\x9f\x35\x26\x3d\x88\ +\x4f\x5a\xb2\xa9\x87\xac\x1c\xb8\x59\x3d\xb0\x91\x6a\x4b\x37\x72\ +\xfe\xac\xb4\xbb\x68\xa8\x83\xd9\x01\xab\xc8\x36\x32\xa0\xb6\x74\ +\xd5\xb6\x01\xea\xcc\x2c\xda\x60\x52\x96\x28\x56\xd3\xce\xd8\x65\ +\x10\x11\xd3\xc7\x72\xb8\x64\x3d\x63\x4e\xb7\x68\xdb\x57\x39\x79\ +\x1b\x0c\x8c\x69\x51\x8e\xc7\xdd\x7f\x15\xae\x10\x54\x9f\xc8\x26\ +\x49\x3e\xdf\x32\x77\xf5\xb0\xbf\x26\x34\x59\x9d\x43\x01\xe2\x20\ +\xbd\x49\xb4\x49\x60\x8f\x10\xc0\x8e\x3a\xee\xc8\x68\x19\x1d\xbe\ +\x65\x67\x37\x0d\x85\x82\xe9\x20\x73\x7f\xd3\x62\xab\x17\x96\x31\ +\x59\xe9\x53\x1a\xfc\xed\x27\x40\x9a\x2e\x53\x3c\x1d\x8c\x41\x33\ +\x21\x54\x38\x74\x59\xa1\x52\x61\x2a\xcc\xaa\x6c\x23\x01\x42\xd9\ +\x29\x96\x0a\x94\x62\x31\x39\x34\x35\x17\x18\x40\x61\x2f\x92\xbd\ +\x26\xdf\xcb\x1c\x77\xb9\xc8\x1d\x8c\x23\x82\x6e\x08\xec\x8c\x97\ +\x1e\x80\xe9\x10\x53\x75\x00\xf6\x37\x00\x60\x14\x92\x1a\x84\x4d\ +\x29\x82\xe0\x53\x13\xc3\x01\x02\x04\x23\xee\x9d\x12\x88\x0d\x91\ +\x2a\xb5\x1c\x67\xca\x09\x07\x82\x1f\x9a\x92\xe6\x3d\x12\x7c\x85\ +\x29\xd1\xa3\x1a\x79\x1c\x2a\xf3\xd1\x43\x6b\x91\xb5\xce\xb1\x73\ +\x0e\x16\x44\xf9\xe3\x56\x28\xaa\xdc\x52\x19\xb7\x1b\x50\x7c\x33\ +\xf4\xe7\x34\x5a\xc9\x62\x24\x57\x28\xa1\x4a\x72\x4d\x7d\x9e\xe7\ +\x69\xa0\x95\x02\x27\xeb\xd2\x7f\x5a\x05\x67\xcc\x49\x6b\x56\x75\ +\xa8\xec\x39\x43\x87\x6b\x58\xe5\x97\x53\x2b\x70\xe6\x20\xc7\x9b\ +\x83\xa4\xd5\xdc\xcc\x41\x4e\x34\x07\x49\xab\xb2\x9d\x80\x66\xba\ +\x1e\x45\x71\x65\x74\x2a\x0f\x28\x3d\x5f\x7e\x3f\x8c\xcc\x93\xe9\ +\xe9\x7a\x52\xfb\x6c\xe6\xd5\x77\xbd\xb2\x13\x50\xc3\x43\x86\x56\ +\x52\xcc\x3e\x04\x14\xb8\x5b\xd3\xde\xe3\x22\xf3\x68\x4c\x21\x60\ +\x56\x81\x4f\xa2\x09\x06\x2c\x13\xd1\xe5\xa9\x7b\xbc\x40\x54\x42\ +\x76\xf8\xea\xdd\x54\x4d\xb7\xc0\x22\x12\x26\x39\x18\x48\x34\x61\ +\x90\xc1\xe9\x84\xe9\x05\xfb\x92\xc4\xb3\xe2\x18\xd0\xc7\x94\x32\ +\x3e\xff\xe0\x34\x88\xfe\x04\x8c\x53\x14\x70\x25\xd5\x0a\xc3\x44\ +\x1e\x21\x85\x21\x4f\x78\x04\x50\x29\x47\x03\xae\x96\xc7\x33\x3c\ +\x61\xe5\x18\x8b\x48\x09\xc0\x00\xd7\x35\xf3\x3c\x26\x1a\x18\xae\ +\x25\x56\x8d\xe6\xe0\xb7\xea\x54\xf6\xa3\x3b\x89\x25\xf3\x9e\x1f\ +\xe1\x50\x73\xce\x70\x3c\x27\xb0\x0b\x3c\xf8\x23\x26\x4c\x09\xcd\ +\xe1\x09\x0a\x8d\x09\x83\xbe\xe1\x33\xc5\x5c\xe1\xf4\x66\xe9\x8a\ +\x1d\x02\x95\x77\x66\x61\xe0\xcb\x47\xbe\x5c\xd0\x66\x2a\xf8\xc3\ +\x30\x11\x4d\x19\x9b\x0e\xc1\x1f\x83\x64\x54\xe2\x38\xb5\x8d\x39\ +\x85\xee\x5d\x21\x2c\x7f\xeb\x0d\x6e\x93\x29\xc6\xda\x46\x43\x7b\ +\x56\x58\xb2\xb3\xbc\x88\x24\xc5\x8c\xcb\x79\x41\x79\x85\x6b\x45\ +\xcc\x95\x5e\xe2\x07\x88\x39\xde\x0d\x23\x5d\x65\x95\x60\x3e\x97\ +\x55\xb0\x27\x9c\x80\xbb\xd4\x99\x65\x9c\x6e\xe6\x9a\x1e\x98\x99\ +\x8e\xf9\x06\x31\xc3\x62\x0e\x62\x80\x71\x71\xe1\x64\x53\x25\x57\ +\x7a\x66\x94\x8f\x3a\xb2\xaf\xb9\x15\x44\x38\xc1\xc1\x30\x18\xb3\ +\x27\x75\x43\x4f\xba\x33\x35\xb7\xc1\xc9\xdc\xe5\x29\x5c\xa2\xa7\ +\xca\xa3\x43\x59\x9d\x1b\xa1\x2e\xbd\xe6\x55\xef\x65\x60\xa6\x6b\ +\x44\x5d\xa8\x22\x94\xe3\xa1\xd2\xa0\xec\x29\x57\x3a\x29\x85\x34\ +\x12\xbf\x84\x9a\x25\x64\x9e\x98\x2b\xd7\x38\x81\x83\xbe\x89\xac\ +\xed\xc1\x6e\x83\x94\xca\x4f\x60\xa5\x19\x4d\xe2\xf2\x69\x26\x1b\ +\xe8\x3a\x60\x41\x52\x79\x4f\x5d\xb4\xd4\x44\x0d\xf5\x2f\x4f\x2e\ +\x31\xa7\xed\xa9\xf4\xec\xc3\x57\xa8\xd0\x5b\xe5\x51\xd0\xee\xe9\ +\x90\xc3\x8e\x65\xe7\x72\xcc\xb2\xc6\xf0\x49\x19\x94\x59\x3b\xc8\ +\xf1\x23\x0a\x8f\x65\x47\x2d\x3e\x44\xda\x23\xb4\x12\x94\x4b\x57\ +\xd6\x19\x4d\x99\xba\x84\x08\xcd\xf3\x2d\x61\x8e\x35\xcd\x59\xbf\ +\xc6\xcd\x39\x09\xd9\x4c\x16\x7c\x01\x9a\x44\x25\x4c\x7b\xda\xba\ +\xaa\x00\x35\x8e\x94\xb5\x0b\x33\xed\x3c\xa3\xc6\x6b\xb6\x36\x35\ +\x55\xa9\x86\x1d\x2f\x9b\x56\xbf\xce\xa1\x5b\x5a\x0f\xeb\xe9\x39\ +\x2b\x94\x2e\xba\x89\xc5\xcf\x1e\xa3\x70\xba\xf8\xbd\x44\xe5\x5f\ +\x05\x28\x5a\x95\x2e\x2e\x78\xac\x0a\x0e\x2a\x37\xc5\x91\x6b\xf3\ +\x56\x96\x7a\xb3\x9c\x5c\x37\x10\xc7\x08\xe5\x0c\xe3\x94\xf3\x53\ +\xa7\x09\xe0\x6a\x7c\xd4\xf1\x30\x18\x98\x9e\x55\xfc\x32\xb6\x80\ +\xe4\x48\x20\x5b\xc8\x00\x82\xeb\x00\xf3\xef\x43\x19\xed\xca\x83\ +\xc9\xfc\xe3\x62\x61\x6e\xa2\x0c\xcb\xf2\x38\x57\x96\x6f\x90\x48\ +\xbb\x11\x2c\xc9\x0c\xed\xb0\x68\xf9\x6a\xce\x38\xe8\x37\xdd\x12\ +\x4e\x3f\xc2\x5e\xca\x84\xa5\xf7\x28\x96\x52\x96\xd1\x82\x68\x5f\ +\x0e\x47\x47\x62\x3e\x70\x9c\xac\xcd\xb1\x48\x13\x46\xe1\x78\xec\ +\xc4\x00\x58\x16\xfe\x3f\x0b\x84\xa1\x6a\xa8\x19\x3b\xc4\x48\x62\ +\x8f\xb5\xd2\x19\xb7\x03\xa7\x9b\xb9\x15\xe9\x01\x2b\xdb\xbb\x1c\ +\x9a\x8b\x3a\x0a\x07\x93\x77\xfb\x48\x81\xfe\xb7\xc8\x5a\xa0\x4f\ +\x0b\xb9\x19\x45\xf9\x2e\x5c\x52\x37\xa9\x96\x2f\x12\xf0\x8c\x91\ +\x71\x4e\x31\x0c\x69\xe3\x84\x36\x35\x60\xae\x57\xfa\xce\x18\xd7\ +\x95\x87\x79\x12\xc8\x38\x8e\xe5\x55\x19\x35\x76\x32\x70\x63\x43\ +\x83\x96\x59\xf6\xf7\x46\xfe\x7e\x80\xf3\xb3\x80\x36\x25\x10\x96\ +\xc3\xaa\x66\xa9\x70\x97\xef\x08\x11\x09\x10\x74\x7b\x78\xfe\x95\ +\xdc\x88\x09\x7d\x23\xb4\x2c\x17\x45\xd5\x2c\xc4\x02\xac\x6b\x0c\ +\x74\x76\x1a\x54\x41\x02\x57\x8f\xca\xd3\x6a\xc1\x26\xb0\xb2\x9c\ +\x1e\x6b\x23\xfc\x1e\x8c\xbb\xa1\x63\xf9\x5e\x61\x82\xbd\x52\xc1\ +\x62\x3b\x5b\xa4\x6c\xa5\xdc\x9c\xcb\xa6\xdc\x9c\xc1\xaa\x9c\x4e\ +\x6d\xd0\x30\x67\xfd\x2c\xcd\xd3\xd3\x10\xe5\xf0\xf8\x06\xb5\xb3\ +\x7c\x40\x1a\xe7\x89\x1a\x07\x2d\x31\x34\x4a\x94\xad\x8a\xa2\x6c\ +\x50\x67\x95\x88\xb4\x61\x07\xc3\x6a\x1e\x2e\x1c\x6c\x9c\x00\xa5\ +\x0a\xf0\x4f\x64\xab\xa5\xf4\x9c\xe1\x29\xce\x19\x8a\x5c\xdc\xaa\ +\xfc\x97\x34\xe9\xea\x51\xe1\xed\xf2\x15\xeb\x31\x7f\x91\x77\x10\ +\xa0\x10\x8d\x6a\xd6\x39\xa2\xa7\xee\xb1\x28\x77\x85\xf3\x82\x3c\ +\x17\xe1\x42\x7c\x27\x58\x04\xcc\x8e\x90\x98\x7b\xdf\xda\x3c\x0f\ +\x01\x84\x1a\x0b\xd5\x94\x66\x4d\x94\x62\x28\x45\x62\xd3\xd9\xcd\ +\xfd\xfe\x60\x47\x1c\x9d\x93\xa6\x44\x5a\x8d\x68\x89\xc1\x60\x7d\ +\x83\xd5\xc6\x51\x5b\x3d\xc7\x91\x57\x44\x10\x95\x74\xc4\x98\x24\ +\x45\xc7\x98\x64\xbe\x7a\x0d\x87\x99\xf3\x28\x02\xa4\x4c\x87\x39\ +\x49\x3e\x2b\xbe\xb1\xf8\xb3\x4c\xc7\xee\x26\x53\xe5\x4e\xea\xa1\ +\x58\xf6\x6f\x87\xd7\x80\x88\xcd\xf4\xaa\xae\xa7\x93\xf3\x87\xa5\ +\xc6\xca\x3a\xe5\x66\xf9\x49\x9b\x25\xd5\x6e\xb9\x33\xbb\x9c\x52\ +\x19\x8e\x7d\xe0\x87\xa1\x38\xd9\xdd\x96\x2f\x8f\xbf\xc8\xcf\x34\ +\x98\x09\xe8\x3d\x01\x35\x5c\x2d\xcf\x5f\x3a\x5d\x45\xfe\x02\xce\ +\x0f\xca\xa8\x7a\x86\x92\x4d\xc6\xf9\xc3\x28\x2a\x8b\xec\xfb\x30\ +\x81\x1b\x88\xec\x19\x91\x3b\x93\x93\xb2\xd4\x27\x66\xbd\x3c\x7b\ +\x37\x30\x94\xf4\xd3\x92\xd0\x83\x1a\x9c\x46\xb6\x3c\x03\x06\xe8\ +\x56\xab\x95\x67\xd2\x2b\xe5\x72\xff\x90\x7a\xb9\x7a\x38\x8e\x2d\ +\x46\x38\xce\xcc\xc5\x8f\x20\x83\xd0\x1b\x87\x94\x39\x5d\xd1\xfd\ +\xcf\x45\xe4\x92\x18\x83\x21\xe4\x7c\xae\x00\xb8\x3c\x4a\xc0\x34\ +\x68\x96\x76\xa8\x8f\xc8\x9e\x14\xdf\x4c\xf0\xcd\x18\x23\xc2\xcd\ +\xa1\xcb\xc0\x6d\xa0\xd0\x58\x48\x99\x59\x95\xe1\x23\xd1\xfc\xa1\ +\x24\x34\xab\x28\x20\x7a\x84\x11\xdb\x23\x4e\x39\x49\xa7\x46\x0f\ +\x61\xe8\x9e\x0f\x5a\x82\xeb\x85\x65\x07\xd4\x0c\x9e\xba\x45\xbf\ +\xa4\xff\x98\x80\x5d\x1b\x73\x28\x35\xa2\x4c\xdb\x36\x60\xe5\xfc\ +\x6c\x45\x24\xa7\xa5\xd8\xa2\xb7\x27\x61\x2e\x93\x65\x30\x56\xe3\ +\xda\x71\x45\x55\xd4\x38\x2a\xef\x04\x63\x02\xdd\xa4\x8a\x4f\x22\ +\xc6\x5a\xec\x04\xd6\x92\x3c\x8f\xe2\xf4\x7a\xbe\xb2\x8a\x67\x18\ +\xfa\xa1\xdc\xa6\x7c\xd2\x36\xa9\x92\x26\xa5\x1d\x03\xff\xe6\xd9\ +\x5f\xf0\x2f\xee\x20\xd1\xd4\x85\x6e\xb6\x23\x91\x37\x64\xee\x72\ +\xca\x1d\x79\x21\xf5\xa1\x89\xc8\x78\xe3\xa0\xb0\x92\x0c\x0b\x09\ +\x33\x8b\x0e\x19\xba\xfa\x11\x1e\x5f\x0c\x49\xa4\x24\x58\x1e\xb3\ +\x32\x2a\x6f\x45\xdc\x17\x71\x08\x6c\x83\xe8\x5d\x3c\x6e\xcc\x00\ +\x17\x87\xd5\x43\xe2\x1f\xe6\xba\x08\x3b\x50\xf4\x97\x11\x83\xeb\ +\x8c\x26\xe1\x59\xe8\x14\x0c\x6d\x9e\x0f\xca\x72\x36\x5b\x01\xcc\ +\x8d\xd0\xbc\xcf\xb2\x59\x5a\x56\xf4\x69\x92\xd4\xa8\xcd\xc8\xdd\ +\xf5\x72\x6e\xd6\xa6\x47\xc9\xab\x14\x87\x69\x1b\x8f\xbc\xe5\xe4\ +\x46\x52\xb3\xa7\xb7\x52\x63\x3a\xad\xd2\x3b\x8e\xa7\xe4\x08\x52\ +\xe6\x14\x5a\x22\x2c\xa8\x47\x55\xdf\xb3\xf0\x3c\xe5\xd1\x39\x23\ +\x32\x1a\xb2\x92\x2a\x0b\x31\x46\x14\x6d\x2f\x42\x35\x14\x76\xc2\ +\x54\x1a\x5b\x88\xb4\x6e\x32\x25\x11\xc3\x4e\x82\xb0\xc7\x50\x9d\ +\x63\x7b\x91\xa4\x17\x8f\xfb\xde\x11\x65\x4e\xce\x3d\xd6\x59\xa1\ +\x93\xaf\x14\x68\xe2\x6e\xd6\x61\xca\x4f\x5e\x7b\x8b\xaa\x91\x21\ +\xcd\x28\x81\x9f\x42\x5f\x70\xa5\xbe\x00\x87\xe1\x03\xa6\xb5\x6b\ +\x7e\x95\x7a\x73\x94\xd5\xc0\xd4\xb8\x09\x91\x5c\x87\xcf\x2b\xde\ +\x6d\x73\x12\xcf\x71\x22\x57\xde\x1c\x73\x9b\x27\x12\xc4\x2d\xeb\ +\xe1\x95\xe3\x66\x64\x8e\x58\x5c\xf9\xcc\x72\x06\xe3\x48\x9b\x4a\ +\x54\x50\xaa\xc3\x24\x36\x86\xa5\x91\x0b\x2f\x95\x06\x8b\xdc\x94\ +\x4a\xd2\xa6\xa0\xf9\x41\x75\x46\x2c\x79\x60\xfc\xde\xe6\x8d\x07\ +\xd1\x51\xc3\x77\x6e\x42\x0a\xee\xc0\xf1\x72\x4e\xc0\xb8\x94\x91\ +\xbd\x2a\xcb\x33\xb3\x7e\x40\xbd\x42\xd6\x34\x02\x81\x35\xf3\xf7\ +\x51\x52\xe8\xe9\x4f\x51\xb5\xcf\xcc\x8d\xdb\x4b\x94\xb6\x1f\x18\ +\x7e\x7d\x55\xad\x12\x6b\x30\x45\x44\x29\xab\x23\xdf\x13\x01\x1d\ +\xe6\xfe\x60\x86\x27\x83\xdd\x4b\x80\x29\x0e\x83\xca\xce\x67\x6e\ +\x55\xa1\xfe\x9a\x2e\x39\xe6\xc2\x66\x59\xb4\xea\x5c\x7d\x34\x69\ +\x0b\x31\x63\x48\x57\x21\x79\xca\x9f\x6c\x7d\x25\x99\x1c\xb5\xfd\ +\x85\xff\xa5\xc7\x82\xb1\x80\x21\x6a\xef\x0f\x2b\x1b\x4c\xb3\x4d\ +\x4b\xb0\xb7\x68\x9e\xd2\xfc\xda\xb4\xe7\xab\x13\xce\x97\x9e\x02\ +\x45\x19\xf7\x92\x2a\x3e\xdd\x8e\xb5\xa8\xb3\x58\x4b\xa6\xe3\xc9\ +\x25\x87\x27\xcc\x60\x13\x95\xe3\xb6\x91\x3a\x81\x94\x6f\x9c\xcf\ +\xb1\xb1\xbf\x8f\xe5\xa4\xa5\x8e\x4f\xeb\xb3\xe8\x8a\x33\x0b\x3e\ +\x55\xa4\x76\x28\x8c\x3d\x5b\x9e\x4f\x53\x29\xb6\x38\x04\xcc\x93\ +\x39\xec\x57\xa8\x2a\x46\x3b\x7e\x72\x21\x9e\x3e\x9d\x22\xbe\x6e\ +\x65\x6b\x79\x32\xe8\x13\x8d\x32\x0a\x2c\x17\x6c\xd8\xef\xd4\xc9\ +\x1b\x4b\x22\xb3\xa9\xa8\x8b\x5e\xc3\x8d\x01\x28\x15\x11\xe0\x33\ +\x4d\x27\xae\xda\x9b\xb0\xaa\x78\x7e\xc4\xe4\x71\xd4\x83\xf9\xbc\ +\xef\x22\x17\x22\x4e\xb6\xcb\x22\xd1\x40\xad\x86\x96\x4d\xb7\x8c\ +\x05\xd4\x52\xc7\x5a\xd2\xc5\x8f\x55\xc0\x53\x2f\xef\x9e\xbb\xd6\ +\xc3\x34\xe8\xc2\x3e\xc6\x89\xe7\x83\x9a\x20\x9c\x9f\xd5\x0b\xd7\ +\xdb\x69\x11\x83\x2c\x51\x9f\x06\xa1\x9c\xcf\xc3\x6d\x0e\x1a\x4b\ +\x94\xc3\x76\x11\x55\xe7\x63\xc1\x13\x83\x70\x2c\x55\x8e\xf2\xfe\ +\xeb\x1c\x10\xeb\x5d\x6b\x07\x37\x4a\xd3\x24\x6d\x26\x72\x8f\x6a\ +\xcf\x44\x44\xb1\xaa\x70\xdd\x96\x34\x17\x0b\xf3\x5d\xa8\xb5\xcd\ +\x5c\x4f\xb3\xdc\x98\xac\xa3\xce\xa7\xb4\xcb\x7b\x15\xe6\xb3\xb9\ +\x43\x29\xcd\xbc\xcc\x07\x62\x78\xc9\xb9\x11\x51\x84\x4f\x16\x31\ +\x0c\x78\x02\xaa\x28\xbc\x12\xae\x64\x11\x83\x12\x2e\x2a\x5b\x46\ +\xac\xa8\xc0\xd8\x4b\x54\xaf\x54\x15\x97\x53\x66\xc8\x4e\x7e\x7a\ +\xf4\x9a\x84\x34\x30\x2b\x21\xf3\x3e\x8a\x23\x86\x22\x21\x16\x58\ +\x81\x0f\x48\x1e\x90\x38\xa0\xa7\x0d\xf2\xf8\xcf\x28\x0d\x0a\xd1\ +\x4a\xf2\xa2\xed\x4d\x58\xe1\x79\x15\x9b\xea\x01\xa2\x9a\xa1\x28\ +\x86\x49\x2b\x34\x7a\xc9\x7a\x58\x9e\xa8\x38\x56\x41\x29\xb3\x92\ +\x49\xf9\xe3\xb5\xe6\x90\x2a\x6b\x6c\xbd\xbd\xdb\x62\xc5\x0c\xd6\ +\xa0\x2a\xa4\x4a\x45\x52\x34\xbf\x98\xcd\x5e\xc1\xce\xbb\xe9\xec\ +\x8e\x03\x61\x46\xb7\x58\x29\xee\xa3\x99\xb0\x73\x7a\xd3\x12\x51\ +\x34\xa3\x3b\x6a\x42\x1e\xb0\x10\xda\x63\x9e\x1b\xbe\xd5\xdc\xb4\ +\xc7\x56\x01\x99\x67\x12\xd3\x8a\x19\x97\xe9\x78\x34\xb7\x6c\x9a\ +\x7e\xd9\x0e\x64\x71\xac\x89\x8f\xce\xbc\xea\x37\xf8\xa9\xb3\x80\ +\x2c\x73\x0c\xe4\x24\xf4\x00\x95\x70\xa1\xbe\xc6\x43\x3a\xe8\xa8\ +\x56\x57\xde\x0e\xcb\x4e\x58\x4e\xc9\x3e\x6a\x96\x63\xd2\xa7\xa8\ +\x3f\x14\xb4\xc5\x1c\x38\x2c\x73\x9c\x46\x6f\x5e\xd3\x6c\x7b\xd3\ +\xc5\x69\xfa\x25\x98\xc7\x42\xa8\xec\xe2\x39\xe5\x65\xce\x71\x1b\ +\xb7\x5a\xe4\x2a\xd4\x74\xc8\x6a\x59\xed\x93\x07\xf0\xaa\xf9\x4b\ +\x44\x6b\x1c\xd3\x8f\x3d\x75\x2d\x5d\x88\xde\xfe\x02\xfc\x3f\xeb\ +\x24\xaf\x98\xc3\x47\x36\x60\x45\x64\x61\xa2\x9b\x47\x3e\xa9\x93\ +\x52\x53\x32\xbb\xb9\x05\x50\xa2\xaa\x0d\x75\x3c\x89\x3a\x38\xd4\ +\x37\x51\x77\x65\xc9\x9c\x31\xd3\x10\xdb\xe3\x18\x7e\x91\x61\xad\ +\x8a\x8e\x7b\xa8\xd2\xb2\x92\xf4\x49\xa7\xa6\x9e\x38\x8b\x2a\x88\ +\xfb\x94\x74\x3a\x60\x24\x9d\x4e\x10\x95\x55\x2e\x52\xfa\xe2\xa9\ +\x95\x2c\x97\x60\x84\xb8\x09\x89\x42\xf3\x37\x06\xee\x88\xeb\x61\ +\x3e\x07\xcd\xfd\xa6\xfa\xcc\x74\xb3\x2b\xe7\x81\xf9\x60\x63\x23\ +\x90\x2e\xc9\x13\x68\x68\x74\xbd\x76\x80\xda\x37\xdb\xe3\x70\x7e\ +\x60\x86\xfe\xbe\xf5\x69\xc5\xef\x71\x98\x11\x24\x4c\xd6\x64\xd3\ +\x58\x99\xa8\x71\x53\xf4\xe0\xcd\x68\x44\x6a\x86\x27\x1a\x8f\xd3\ +\x59\x5b\x07\x96\xc1\x32\xcd\x49\x4f\xf4\x6b\xd8\x3c\x8d\x94\xc7\ +\xf4\x64\x62\xd6\xa3\xcd\xc2\x14\x87\x7d\x21\x93\x0b\xc9\xa6\x58\ +\x60\xc4\xbc\x5a\x40\x27\x9d\xc9\x32\x72\x85\xba\xaf\x43\x2d\x82\ +\xf6\x21\x7e\xab\xd2\x3b\x54\x68\x45\x21\x6a\xf9\x20\xb5\xf5\x45\ +\xd9\x73\x02\x91\x89\xd0\x45\x48\xed\xbf\xf4\x2b\xdc\x91\x50\xc6\ +\x34\x59\xb3\x1d\xc5\xa3\xa6\xe4\xbc\x2a\x1b\x83\xf7\x56\x32\x78\ +\x86\xc1\x8f\x52\x13\x80\x6a\x96\xa3\xbb\xc4\xaa\x04\x4e\x95\xd0\ +\xc7\x06\x3a\x3c\x7d\x2c\xd2\xdc\x26\x95\x19\xa0\xa6\xdd\xca\xfd\ +\x68\xc2\xcb\x2a\x92\x70\x55\xfa\x2d\x73\x47\xa9\xc9\xe7\xe1\xe4\ +\x5b\x79\x76\x2d\xb6\x75\xb2\x68\x53\x61\xd0\xcd\x52\x1f\x1e\xbd\ +\x92\x4d\x25\x8c\x36\x0d\x4e\xab\xde\xce\x1c\xe6\xf8\xe8\x30\xe9\ +\x93\x46\xf5\x61\x4e\x8c\x0e\x93\x36\x6d\x94\x3a\x27\xcd\x92\x4b\ +\x66\x65\xc5\xcb\x69\x32\xb8\x65\xd3\xc9\xf5\x9f\xab\x51\x44\x51\ +\xd7\xd7\xb4\x1e\x6b\x58\x50\xc9\x14\xab\xd4\xf5\xa8\x7d\x46\x8b\ +\x05\x95\xd8\x6d\x16\xe8\x34\x0f\xf2\x62\xcd\xd4\xe3\x6e\x26\xac\ +\x4f\xbf\xde\x4e\x45\xce\x14\xc1\x43\x40\x5b\xf1\xa7\x66\x5f\x49\ +\x29\xa7\x66\xbe\x9b\xca\x76\x53\x79\x6b\xac\x81\x77\x40\x54\xcb\ +\x18\xd3\xf9\x25\x9a\x0f\x98\x89\xb7\x2a\xfb\x2e\xde\x22\xfa\x68\ +\xcc\x60\xa5\xaa\xab\x48\x37\xa3\xda\xeb\x78\x40\xab\xe5\xd1\x6f\ +\xc5\xe2\xe2\x2c\xaf\x82\x55\xcc\xa4\x55\x1e\xe6\x27\xb4\xe5\x2a\ +\x0b\xe7\x92\xda\x94\x21\x3b\xdc\x25\x7a\x71\xa5\xb2\x6e\x86\xb8\ +\xab\x36\x5e\x91\x25\xce\xbe\x5e\xe7\xcb\x24\x2b\x3d\xf9\xea\xf2\ +\x91\x43\x86\x64\x87\x25\x9e\x0b\x00\x44\xe1\xe6\x5d\xe0\x7b\xbb\ +\x9c\xb4\xb6\xec\x0a\xb4\x65\xd3\x17\x18\xeb\xb5\xe0\xb3\x29\x00\ +\x36\xab\x07\x9f\xee\xbc\x77\xe2\xc5\x02\x71\x6a\x11\x34\xa4\x2a\ +\xf3\xa2\x5e\x26\x25\x1e\xa3\xf9\x90\x0c\x85\xb2\xaf\x7c\xc2\xb3\ +\x0e\x1f\x67\x37\xda\x51\x36\xb7\xbc\x7d\x74\xc3\xea\x35\x66\xd2\ +\x42\x96\x6b\xed\x1b\x42\x4d\x36\x5a\x78\xc7\xea\x6d\xe0\xd0\x84\ +\x05\x1b\xc9\x2b\xb7\x3b\xcf\x1e\xe3\x19\x58\x52\x80\xa6\x95\x98\ +\x37\xf2\x0d\x49\x2e\x7d\x49\x8a\x61\x8a\xfb\x93\xd8\x93\x2e\x4f\ +\x6c\x48\x3e\x54\xa2\x5b\xa1\xd2\x0e\x3c\xde\x7f\x9a\xfe\x3b\xda\ +\x8f\x5d\x3b\x6c\x12\x11\xa7\x50\x44\xe4\xa2\xe5\x35\xb0\x52\x9a\ +\xb5\x83\x67\x8d\xb5\x31\xc4\xa3\x06\x6b\x17\x2e\xe6\x69\x55\xe0\ +\xdc\xc3\xa9\xc3\x23\x6f\xa3\x41\x16\x68\xb4\x91\xe3\x5e\x91\xa2\ +\xe6\x61\x61\xfb\x2a\xcc\x2e\x9f\x27\xde\xd8\x89\xca\x5c\x16\x65\ +\x78\xc0\x93\xfa\x84\xd1\x65\x7a\xd9\x44\x65\xb4\x40\x38\xf5\xa4\ +\x50\xb3\xec\x68\xf8\xef\x14\xf8\x6f\x39\xfc\xb5\x1c\xfe\x77\x94\ +\xa6\x3b\xaf\xa7\x88\x51\x36\x74\xce\xc9\xba\x60\x1b\x51\x32\x60\ +\xa5\x07\x4c\x7b\xf7\x83\x9c\xeb\x61\x17\x0b\xbf\xe4\x04\x36\x4b\ +\x7c\x45\x8d\xdb\xd9\xdd\x63\x1d\x6d\x9d\x62\x2d\xef\x59\xbe\xfc\ +\xa8\xb4\xba\xf7\x43\x1c\x51\x8c\xf0\x5d\x62\xf6\xa6\x4c\xea\x3a\ +\x60\x5e\xb0\xa3\xa7\x3a\x4b\xe7\x0f\x11\xb7\x43\xd9\x3c\x29\x4f\ +\xf5\xb0\xf1\x70\xf1\xfa\x1c\x82\x5f\x09\x7a\x8a\xb5\xdf\x46\x44\ +\xd2\x67\x44\x3a\x73\xd9\xb0\xd9\x37\x50\xb4\x05\x76\xce\xad\x84\ +\x86\x83\x01\x9b\x77\x50\xd7\x12\x75\x70\xf2\x2e\xe1\x83\x0e\xde\ +\x6e\xb0\x9c\xb5\x35\xf3\x69\xaf\xac\xb2\x4d\xc3\x83\x5d\xae\x87\ +\x69\xc4\x4e\x5a\xbc\x9d\x9a\xc0\xf6\xd4\x9a\xa2\x0c\x30\x30\x45\ +\xa6\xc6\x16\x0e\xa0\xd0\x8b\xee\x09\xd3\xe5\x81\x1b\xf8\xe6\xb1\ +\x4d\x30\x33\xee\xab\x7b\xec\x04\x15\x57\xcf\xc2\xef\x44\xa0\x58\ +\x12\xbe\x74\xc0\x39\x76\x76\x94\xa5\x2b\x8a\x9e\x1f\x29\x5c\x23\ +\x7b\x50\x4c\xe9\x31\x51\x11\x61\x3c\x8b\xac\x25\x2a\xf5\x41\x04\ +\x86\xc7\xf1\xe9\xac\x11\x8b\xd4\x35\x69\xf6\x7c\x45\x4b\x16\x62\ +\x91\x4f\x11\x3e\xee\x85\x7f\x0f\x11\x33\x39\x51\xcd\xa1\x9e\x67\ +\xcc\xd1\x0c\x69\x9b\x49\xdd\xd4\xa4\x28\x73\xd2\x0c\x25\x7c\xc2\ +\x1c\x12\x5b\x5d\x26\x22\x21\x57\xcd\xd8\x2d\xd7\x51\x90\xc2\x3e\ +\xc4\xd0\x76\x75\x78\x44\x2a\xa4\x58\x73\x34\xf5\x78\x88\x8f\xc1\ +\x5a\x10\x8d\x23\x14\x13\x9c\x98\xa8\x97\x4f\xd8\xe3\x62\x2d\x2e\ +\x4f\x93\xa8\x70\xd3\x50\xe7\x4e\xc2\xe5\xe3\x6b\x85\x3c\x7f\x3f\ +\xc4\xe3\x80\xd4\x77\x72\xd6\x5a\x96\x79\xe6\xd2\xb4\x4a\x37\x3b\ +\xaa\x45\xcd\xe1\xfb\x4a\x81\xe7\xa4\xd1\x30\x79\xaf\x35\xc4\xd3\ +\x31\x55\xae\x1a\x30\x74\x1e\x70\xe7\x09\xee\x9c\x2a\xe8\x78\xf4\ +\x42\x18\x5a\xfb\x8b\x1c\x1f\x5f\xec\xe6\x81\xc4\x32\xe8\x3f\xe6\ +\x38\x54\x1e\xd0\x99\x07\x02\xc7\xe9\xef\x5b\x65\x09\x0d\xc9\x0a\ +\x27\x42\x90\x1b\x78\x86\xe9\x2c\xf4\xc6\x0c\x78\x36\x60\x5c\xd2\ +\x9e\x4e\x81\xf8\xd3\x9c\x4f\x89\xe0\x53\x4c\xc9\x27\x93\x16\x29\ +\x1a\x67\xbe\x5a\x4e\xa8\x2a\x9c\x10\x31\x65\x21\x51\x75\x87\xbe\ +\xe9\x31\x9b\x5e\xbf\xcd\x1e\x5d\x84\xa8\x6d\xcc\xe9\x55\xc8\x88\ +\x2d\xd5\xaa\xd0\x15\x7d\xb4\x38\xf6\x5d\x4f\xf6\x0a\x45\x77\x1a\ +\xdd\x85\x94\x0a\x6e\x6d\x6f\x15\x24\x9a\x0d\x30\xf4\x0a\xa0\x7c\ +\xa4\x3a\x36\x59\x29\xd1\xf5\xb2\x78\x0a\x6e\x3c\x9e\x67\x13\x71\ +\xb5\x52\x5c\x6a\x53\x78\x12\x6a\xb8\x50\x54\x6d\xd2\x52\xeb\xc5\ +\x69\x61\xb6\x42\xd2\x0a\x4c\xd8\x55\x12\x57\xa7\xea\x66\x03\xff\ +\xee\x96\x63\x68\x31\xcd\x29\x89\x49\x1f\x2d\x44\x01\x18\xf2\xb1\ +\x3a\x39\x64\x54\xa4\x74\x12\x8b\x3f\x53\x24\xec\x7a\x82\x4e\xa3\ +\x99\x18\xc3\xb0\x8d\x63\x17\xb8\x00\x4d\x86\x93\xbe\xb5\x06\xb1\ +\x33\x86\x10\x31\x61\xc5\xd2\xb5\xd8\xec\xf4\x79\xbf\x0a\x3e\xcc\ +\xa6\x25\xe6\x3a\x93\xe7\xeb\x05\x89\xe5\xf0\xbc\x7e\xba\x4f\x2a\ +\x07\xf6\xad\x24\xc2\xa5\x05\xcf\xd8\xf5\x40\x1e\x75\x95\x6a\x18\ +\x0d\xc9\xf6\x64\xd6\xaa\xd2\x1f\xed\xcd\xb0\x02\xfc\xcb\x0e\xad\ +\x4e\x6c\x2c\xd4\x49\x0b\x49\xc4\xf0\x18\x51\x56\x0f\x84\xa0\x83\ +\xc3\xef\x9d\xc0\x49\xdc\x7c\x67\x06\x66\xec\x2c\xfa\x9e\xdf\x89\ +\x7d\xd3\x60\x48\xbb\xe8\x16\x26\x22\xe3\x75\xaf\x71\x0a\x63\x4e\ +\xd9\xcd\xda\xdd\xf8\x3a\x7b\x14\x27\xe6\x0d\x55\x70\x92\x8c\xf9\ +\x56\xef\x4a\xbf\x90\xeb\x4c\xc9\xa2\xf6\xa4\x3e\x5d\x2c\xe7\x54\ +\x75\x9a\x48\xcb\xb8\x0a\xdc\x8e\x89\x44\x70\x23\x67\x76\xaa\x8e\ +\x15\x27\x24\xed\xa0\x6a\x5c\x81\x5b\x68\xb0\x98\x69\x86\x84\x3f\ +\x57\x05\x0f\xac\xd3\x84\x2f\xb5\x1e\x76\xb5\xd7\x08\x0f\xed\xc4\ +\xd7\x69\x36\xd3\xa9\x6e\x1b\x2a\x9c\x9a\xad\x32\x85\x37\xc2\x8e\ +\x49\x69\xc5\x86\xcf\xd0\x71\x01\x8b\x1c\xf5\x73\x56\x76\xd4\xc7\ +\xec\x26\x8a\x07\x96\x56\x2b\x8a\xdb\x18\x57\xe6\x6c\x1a\x6d\x3e\ +\x2e\xf1\xd2\x32\xe0\xf9\x29\x51\x53\xc0\xc3\x37\x5d\xc4\xf8\xf2\ +\x09\xdd\x3c\xd6\x7f\xd7\xd1\x13\x47\xa3\x48\x3c\x66\x92\x2d\x82\ +\x32\x22\x22\x55\xa2\x1c\x2c\x8d\xd9\xae\xaf\x52\xad\x48\x44\xdb\ +\x44\x05\xca\x64\xb7\xde\xbd\x7b\xa7\x41\xb5\x8a\x0f\xc5\x82\x85\ +\xf5\xa3\x7b\x7d\x92\xf0\x67\x5e\x05\xa1\x77\x01\xd3\x7b\x21\x27\ +\x3b\x22\x74\xe7\x83\x6e\xa2\x8a\xc8\x89\xad\x11\xe5\x4f\x53\x13\ +\x65\xc4\x23\x41\x33\xb5\xab\xd3\xa8\x95\x59\x9b\x8f\xf8\x35\x30\ +\x16\x87\x03\xb3\x74\xb0\x62\x25\x2c\xf3\x6f\xb0\x2a\x29\xe6\x03\ +\xd1\xaa\x51\x6c\x35\xb5\x4f\xcb\xcc\x68\x1d\x14\x96\x75\xa2\x4a\ +\xc8\xd3\xfc\xab\x38\x48\x7a\x32\x29\xad\x92\x4e\x69\x9e\x0a\x52\ +\x2a\x10\x15\x41\xd3\xf3\x9e\xcc\xfe\x0b\x49\x9a\x87\xd9\x9b\x41\ +\x68\x20\x2a\x9f\xc2\xd3\x38\x93\xf8\x25\xe4\x92\x53\x6d\x75\x36\ +\x62\x3c\x17\xf0\x57\x3b\xa5\x12\xaa\xda\x6d\x8a\xa3\x1c\x4d\x9e\ +\xe9\x26\xa6\x42\x2a\x58\x44\xbc\xaa\x97\xa5\xd5\x28\xb2\xb9\x40\ +\x27\x1b\x3f\x70\x1d\x8f\x75\xbd\x17\xd9\xb4\x52\x04\x8b\x1a\x01\ +\x56\xb4\x46\xf7\x5a\x49\x67\xcc\xb3\xa5\x3b\x07\x92\xb2\xd0\x63\ +\x89\x96\x1e\x30\x6a\xc1\xc9\x97\xbb\xb9\x99\xc1\x27\xd1\x33\x78\ +\x52\xb2\xc0\x9a\xee\x2a\x2c\x50\xc7\xa1\xe9\xe0\x32\x2f\x2c\xca\ +\xe3\xb1\x35\xf5\x46\x81\x2f\xf3\x3d\xfd\xfa\xc1\x32\x1e\x4a\x66\ +\x53\xe9\xb7\xe6\x6e\x91\xb3\x3a\x92\x2a\x84\xef\x39\x7a\xcb\x6e\ +\xb4\xdd\x81\xea\x8e\xa2\xe7\xc4\x39\x91\xb5\x08\x6b\x91\xd9\xa0\ +\x2a\x1f\x48\x97\xd8\xe2\xce\x94\x68\x49\x82\xda\xdb\x0f\xe9\x7b\ +\x3b\x66\x17\x2a\x0e\x35\xa4\x72\xb4\xa5\x42\xbe\xe2\x65\xb5\xa2\ +\xea\x0a\x1e\xdd\xb2\x5f\x00\x03\xcb\xcb\x3a\x3d\x99\x2d\xf4\x69\ +\x1e\x68\xcd\xb9\xf9\xbc\x13\x38\x5e\x16\xd3\x75\x0a\xfe\x38\x8b\ +\xcc\xb3\x01\x45\xec\xbd\x8c\x8d\x9f\x30\xcf\x97\x5e\xb8\x92\xd6\ +\x7b\x3e\x1b\xcd\xf9\x08\x92\xe5\x02\x5a\x86\x04\x44\xa9\x13\xcb\ +\xf4\xe0\x10\xc3\x16\xab\xf1\x0c\xb8\xc6\x2c\x4e\xbf\x72\xd1\x34\ +\x0d\x4d\x2b\x1a\xb7\x4e\xeb\x7e\xcf\x8e\xad\xf0\x9e\xc5\xbb\x25\ +\x0f\x73\x1f\x6d\x36\xa2\xa4\x7b\x5c\x4d\x56\x2b\x3d\x6c\x88\xb3\ +\x45\xea\x23\xa5\x51\x09\xcc\x49\x92\x17\xb9\x0f\x83\xcd\xbd\x2b\ +\x25\x80\x6b\x00\xa5\xba\x9f\x9b\x9d\x84\x2e\x4d\x10\x89\x9a\x7e\ +\x76\x6d\x2f\x05\x7d\x11\x17\x54\x0c\x37\xcc\x9d\xac\x5c\x70\x96\ +\x04\x2e\xc7\x5c\x91\xa5\x80\x16\x15\x2f\x12\xbd\xe8\xd3\x3a\xd5\ +\xb6\x60\xe1\x41\x72\x10\x7b\x72\x3f\x7b\xba\x5e\x42\x87\x9e\x15\ +\x46\xcd\xe2\x7d\x49\x84\x58\xa0\x81\xc9\xf6\xd4\x28\x6b\x57\x31\ +\x1d\x3a\xdd\x08\xef\x9c\x9f\x2a\x3d\xf8\x2c\x99\x5f\x13\x2d\x15\ +\xcb\x73\x3d\x43\x2f\xfa\x12\x4e\x1f\x59\x7e\xa6\x36\x84\xce\x2c\ +\x0b\xb4\xd0\x1a\xc2\x2a\x2c\xd9\xdc\x2b\x75\xf4\x7d\xe3\x24\x22\ +\xd1\xe8\x19\x35\xa9\x28\x4c\x10\x74\xaa\x87\xcd\x16\x2e\x17\x74\ +\x79\x81\xd5\x64\x9a\xb4\x49\x29\x06\xea\xb1\xef\x55\x34\xf4\x17\ +\x90\xe8\x55\x3e\x4c\x89\x17\xb5\x8b\xc2\x3b\x9d\xe4\x66\xc8\x89\ +\x93\x08\xff\x7a\x8d\x24\x69\x58\x61\xe4\x1c\x27\x55\x96\x09\x7d\ +\x4d\x9c\x6b\x9f\x57\x94\x29\x7f\x31\x76\x1c\xe2\x14\xc5\x74\x5a\ +\xd1\xc1\x97\xdd\xae\x17\xad\x36\x60\xf4\x20\xa0\x55\xf3\xeb\xcd\ +\xf6\xc2\xad\x66\xe4\x92\x1a\x1b\x78\xb1\x50\x37\xa8\x5f\xbb\x98\ +\x8b\x4e\x31\x13\xea\xce\x13\xa5\x60\xae\xc7\x38\x4a\x37\x52\xcc\ +\xb0\x43\x1b\x65\x58\xc0\xc0\x73\xf6\xb0\x5b\x70\xcb\x13\xb2\xe2\ +\x89\xbd\x3e\x0c\x8f\x52\x53\xcf\xcb\xa5\xad\x13\xbe\xb7\xea\x46\ +\x31\xc5\xd7\x96\x1a\x0d\x33\x1f\xf4\xa4\x38\xfd\x09\x3d\x11\xad\ +\xcc\x45\x44\xa8\xa5\xdb\x88\xd8\x8c\x5e\x73\xe3\x1a\xfe\x70\x15\ +\xac\x88\xca\x58\x5d\x33\x64\x17\xc1\x8f\xa0\xdf\xa2\x82\xdb\x51\ +\x94\xc9\xa5\x4a\x92\xf0\xfc\x60\x22\xda\xc7\x47\x35\xc7\xa4\xe4\ +\x53\x5d\x62\xc7\xe1\x33\x53\xf9\x68\xe8\xa4\x9b\x58\xf2\x7d\x56\ +\x94\x25\xb2\x38\x73\x9a\x06\x28\x70\x94\xac\x29\xe8\xa2\x26\xf1\ +\x1a\x70\xa2\xae\x7a\xd4\xa3\xe4\x4f\x46\x08\x8a\x5d\x7e\x8e\x89\ +\x9e\x60\x24\xf0\xca\x1e\xaa\xea\xa1\x0e\x4f\x33\x9a\x30\xd7\x4e\ +\x25\x66\xf5\x58\x43\x4a\x33\x10\xa6\x08\xcf\x1e\x2d\x38\xde\x08\ +\x28\x13\x34\x7b\x94\x46\x1a\xb8\x7a\x29\x5e\x15\xf7\x01\x84\x98\ +\xf9\xb7\x1c\xe7\x62\x25\x5b\xe3\xa3\x3e\x75\xe3\xb0\x24\x5d\x3a\ +\xa6\x52\x34\xa8\xfb\x25\xb0\xb1\xad\x21\x7f\x3d\xad\xda\x31\x0f\ +\xa8\x6e\x3b\x4a\xc5\x41\x59\x86\xef\x22\x5d\x28\xa9\xd7\xbc\x6d\ +\xbb\xd5\x35\xe4\x97\xd2\x4a\xb7\xb9\x30\xe6\x0e\x1c\x73\x80\x04\ +\xfc\x30\x53\x6a\x53\x23\x66\xb6\xed\xb0\xba\x06\x02\x60\xd7\xe9\ +\xc7\xdc\xce\xc7\x5c\x47\x6c\xe9\xdf\xd7\xc7\x6c\xd9\x0e\x63\x0e\ +\xba\xb9\xd4\x91\xad\x46\x62\x06\xe9\xeb\xec\xd4\x9d\xb5\x5e\xac\ +\x92\xac\x95\xbe\xb9\x72\x3c\x08\x1d\x75\xc8\x2f\x23\x53\x67\x42\ +\xea\x67\x6a\x38\xad\xbe\x47\xaa\x78\xa2\x95\x73\x3d\x5b\xa5\xb5\ +\xb2\x2f\x43\x15\xa8\x53\x2c\x53\x39\x6f\x78\x57\x23\xfd\x41\xf6\ +\xf7\x09\xa7\xd9\xac\xac\x19\x81\x08\xb4\xc6\x5c\xf5\xd9\x72\x90\ +\xb6\x44\xe3\xbb\x68\x70\x24\x15\x22\xaa\x02\x43\x51\xa6\x6e\xd6\ +\xca\x8a\x1c\x12\x55\x10\x58\x21\x01\x37\x5c\xf4\x8a\x52\xf1\x9c\ +\xc8\x36\x60\x95\xd0\xba\xce\x20\xae\xff\x33\xab\x4c\x19\xeb\xab\ +\x90\x40\x8e\x90\xc3\x2d\x19\x97\x7f\xab\x20\xbc\x18\x41\x49\xb6\ +\x11\xd7\x68\x0d\x04\xc8\xa6\xc9\xc1\xbc\xc6\x16\x63\xbf\xa3\x2a\ +\x19\xd1\xbc\x30\x51\x37\x61\x99\xb4\x83\x2d\xa9\x04\x22\x20\x82\ +\xfe\x0f\x19\x58\x4f\x29\xcd\xac\x58\x5b\xa1\x78\xaf\x8b\x6a\x09\ +\x8b\xd5\x2c\x36\xd1\xc3\x4c\x70\x70\xd1\x68\x48\xef\x37\xa1\x47\ +\x2c\x57\xe2\x0c\x74\x8b\x59\x0a\xf9\x18\x9e\x98\x31\x23\xe0\xc4\ +\x66\x61\xaa\x10\xbb\x3e\x87\x9d\x33\x75\x22\x45\x3d\x89\x4a\x8f\ +\xb7\xb9\xaa\x22\x72\x28\x46\xf9\xf3\xaf\xf1\x51\xd5\x0d\x9d\x0e\ +\x11\xd7\x9f\x38\x48\x48\x2a\xfc\xaf\x36\xee\x3a\x77\x92\xf2\x75\ +\x79\x5a\xf0\x46\x4e\xde\x95\x4d\xd8\x8f\xb4\x4f\x91\x68\xef\xc0\ +\xc2\x00\x2b\xb1\xc0\x0f\x24\x41\x25\xf0\xc4\x9e\x8b\xcb\xaf\x30\ +\x83\x3f\xe8\xb6\x86\x2b\x65\xaa\xeb\xf0\x9f\xa9\x90\x09\x43\x90\ +\x2f\x21\x75\xe5\x3b\x39\x17\xfd\x4b\xa9\xfb\xe3\x84\xc4\xcc\xa9\ +\xd7\x37\x79\xf2\xcc\x79\xa1\x2d\xeb\x81\x7a\xe1\x83\x2d\x11\x75\ +\xcf\x51\xd4\x0b\xab\x54\x9b\xa4\x5e\xef\x27\x27\x21\xb3\x64\x03\ +\xf5\x62\xf0\x3e\x9e\xff\xbe\x0f\x4d\xdd\x3f\x1c\xab\xa4\xf5\x34\ +\x77\xd6\x54\xf5\xb4\xaa\x31\xc6\x32\x80\x5f\x6f\x93\xc1\x46\xd1\ +\xd5\xb7\x84\x2e\xf7\x72\xa5\xc7\x68\x2b\xad\x78\x2a\xd1\x9f\x9a\ +\x32\xcb\x8a\xdc\xf1\x84\xc5\xdf\xda\x2a\x53\xae\xb0\x1e\x66\xdd\ +\x2d\x67\xaa\x2d\xed\x4e\xf9\x5e\x06\x4b\x6d\x26\xc8\xdb\x1a\x9c\ +\x0d\xe1\xa8\x9b\x4f\xcb\xda\xb7\xc4\x64\xdb\xbe\x07\x9b\x45\x12\ +\x96\x8e\xb4\x85\xc9\x41\x60\x9a\x52\x35\xbd\x9e\xdb\x85\x77\x01\ +\x68\x08\x62\xb9\x88\xc5\xad\xd1\xee\x16\x2a\x1b\x46\x67\x37\x4a\ +\xdc\x76\x26\x83\x8f\xb9\x32\xe1\x44\x71\xd8\x2f\xa4\x85\x3f\x87\ +\xd7\xda\xc5\x9d\x07\x2e\x49\xe1\x3c\x20\x66\xae\x92\x44\x73\x74\ +\x13\x24\xdc\xef\xd1\xe1\xd6\x54\x81\x7d\x42\x7d\x07\x59\x44\xfa\ +\xa5\xbe\xa2\xdd\x04\xb7\xa8\x9f\x16\xcb\xd3\x51\x1a\x72\x9a\xb3\ +\x6c\x11\x4f\x07\x4d\xba\xb0\xb2\x65\x91\xb8\xa9\x31\xf2\x5a\x07\ +\x7f\x2d\x9a\x17\xdf\x00\x2f\xb0\xfb\xa2\xb5\x87\x67\xc1\xc3\x2b\ +\x49\x72\xa3\xdc\xc6\x45\x08\x79\xe4\x8d\x99\x78\xfb\xa9\x42\xaa\ +\x76\xa3\xd4\xa2\x01\xd7\x73\xc3\xd1\xc8\x0b\xf4\x8e\x62\x5b\xda\ +\xbe\xd1\xd0\x32\x2d\xb1\xe9\x57\x2d\xb2\x17\x6d\xec\xef\x5f\x1a\ +\xf2\xec\xdd\x7c\xe8\x44\x67\x9f\xc5\x6f\xd9\x2b\x10\x71\x51\x90\ +\x76\x13\xfc\xa2\xcd\x0e\x8d\x34\x8c\x45\x31\x42\x5f\x5a\x45\xc4\ +\x5d\x3a\x68\xc3\x6b\x58\xa1\x17\x8e\x45\x5e\x68\x43\x9c\x44\x77\ +\xa9\x61\xd1\x56\xb7\x14\x1d\xbb\xd7\xb8\x00\x54\xb8\xba\xf4\xd6\ +\x55\xc2\x98\xac\xde\x72\x76\x76\x1f\xb6\x7f\xe3\x82\x50\xeb\xf3\ +\xa6\xcd\x33\xca\xc3\x08\x66\x7c\x4e\xd5\x7b\x89\x99\x86\xb9\x81\ +\x28\x5a\xce\x2a\x25\x40\xa4\x4b\x8a\x96\xa0\x2a\xef\x6f\x19\xf2\ +\x6f\xfe\x8b\x4a\xa2\xe6\x50\xf1\x60\x11\x86\x7d\xb0\x05\x84\xd6\ +\x0a\x65\xdc\xe7\xc9\x78\xcb\x3c\x3f\xe7\x84\x99\x08\xd0\xa7\xf2\ +\x5e\xae\x0e\x2f\x15\x8b\xa6\x1b\xda\x55\x97\x84\xfa\x8c\x72\x80\ +\xf5\xe5\x72\x7c\x22\xd1\x03\x54\xa8\x83\x0c\xba\x18\x8d\xf6\x71\ +\x1d\x87\x37\x4d\x57\x56\x5e\x1f\xc8\x53\x50\x31\xa2\xdb\xd8\x45\ +\x9e\x20\x2c\x6d\xd1\xcc\x5d\x37\x46\xa1\xf9\x68\xaa\x5a\x58\x8c\ +\x64\xd9\xf4\x2a\xc1\xde\xe8\xda\x07\x10\x86\xe8\x75\x8a\xfb\x7e\ +\xab\xf4\x41\x7d\xa5\x52\x01\x7b\x3c\x26\x5d\x22\xad\x4d\xdc\xcc\ +\xfb\xb0\x28\xfa\xaa\xeb\x0b\xb2\x31\x26\x91\x7c\x19\x58\x93\x76\ +\x09\x98\xf6\xf8\x10\xd6\x44\x26\xdd\x19\xc9\xa8\xbd\x44\x58\xe1\ +\xbd\x30\xf2\x84\x24\x60\x37\xc5\x29\x84\x1a\x5b\xad\x1c\xb9\xfd\ +\x78\xfd\x32\x3f\xf1\xbc\x10\x90\x51\x5d\x79\xa2\xe4\x44\x31\x3b\ +\x13\x79\x28\x73\x9e\xd1\xa1\xb7\xa9\xdd\xed\x77\x68\xd2\x98\xb5\ +\x2d\xf2\xc6\x7c\x78\x43\x5d\x5c\x1b\x98\x4c\x48\x55\x69\xf4\x8f\ +\xd2\x6a\x07\xd5\xfe\x5a\x1b\xe1\x1e\x7e\xc1\x50\x56\x63\x61\xa2\ +\xdd\x59\xf2\x25\x9c\xea\x30\xc6\xdd\x87\xa2\x21\x95\x0a\x73\x57\ +\x6b\x38\x95\xdc\x7f\x55\xf9\x7b\xcc\x5c\x50\x9a\x58\xab\x7c\x05\ +\x67\x9b\x97\x07\x61\xc4\x8f\x61\x35\x1c\xf5\x2b\x85\x5c\xac\xb7\ +\x94\xde\x80\xce\x2d\x57\xed\x26\x65\x75\xb9\x8b\x13\x10\xec\x12\ +\x76\x29\x8f\x17\x0d\x8a\x29\x81\xc2\xae\xe7\x89\xbc\xbb\x02\x93\ +\x96\x92\x4d\x78\xd5\x3e\x79\xb7\x60\x0a\x86\x01\x42\x6f\xa7\x41\ +\xe7\x32\xf6\xff\x89\x0c\x3c\x86\x62\x30\x29\xb7\x3b\x30\x24\x88\ +\xad\xf1\x22\xf3\xa2\x4c\xc5\xad\x2c\xce\x9b\x86\x09\x6b\xd1\x52\ +\x91\x20\x76\x01\x63\x1e\x24\x9b\xe0\xd0\xf5\x93\xb5\x46\x0b\x83\ +\xe3\xfa\xb5\xf4\xee\x80\x8b\x26\xbc\x1d\x88\xde\x8b\xc9\xae\x2a\ +\xa4\x31\x8b\xe1\xd0\x2f\x54\xca\x80\xd6\xc1\x4d\x7d\xfd\xab\xa3\ +\xa8\x6d\x4b\x14\xe6\xf5\x09\xb2\x7c\x4d\xec\x90\xe6\xa2\x1c\xd5\ +\xf0\xc4\x84\x92\xfb\x44\xb8\x91\x76\x30\x29\x9d\x50\x45\xbc\xc2\ +\xae\x86\xa4\x44\xa4\xaa\xea\xa2\x07\x73\xb6\x71\x99\x4c\x94\x0b\ +\x65\xf8\x65\x31\x71\x66\x64\xde\x6f\x93\xcc\x98\x3a\xf8\xdb\xc9\ +\xfc\xc9\x1c\xc1\xb8\x20\x4a\xa3\x15\x36\x42\x22\x11\xce\x35\xae\ +\xbb\xb4\x12\x6e\x7e\x6c\xe3\xaf\xcb\x0b\x20\xb5\xb7\x17\x18\xd3\ +\x9b\x9d\x48\xf4\xac\xaa\x99\x62\x0c\x11\x1a\x49\x38\x46\x6a\x9c\ +\x4d\x48\x69\x6f\xf0\xd6\xa0\x7e\x0c\x15\x9b\xfc\xc2\xc4\x48\x6c\ +\x0c\xcb\x18\x63\x33\xf7\x7b\xed\x55\xd2\x2d\x06\xcd\x66\xd8\x4b\ +\x94\x61\x91\x91\xe6\x18\x23\xc5\xaf\x13\x69\xe5\xef\xd3\xbb\xee\ +\x23\xaf\x4e\x7e\x75\xa6\xf6\x60\xb7\x76\x3d\x28\xf3\x46\xb0\x00\ +\x88\x43\x44\xbb\x55\xd5\xe5\x2a\x23\x87\x9a\x83\x43\x81\x36\x42\ +\x23\xd4\xb4\xc4\x04\x5b\x4d\x45\xc9\xb1\x19\x4f\x4e\x59\x0f\x30\ +\x57\x43\xfc\x2c\xbc\x55\xc9\xa8\x53\x50\x42\x65\x15\x2f\x2b\x88\ +\xbc\xb3\x8e\x1f\xb7\x12\x8a\xa1\x09\x8e\xe8\xea\x6a\x8e\xf0\xa9\ +\x99\x37\x97\x44\xeb\x69\xba\x56\xf9\xd8\x8a\xae\x14\xf8\xc8\xaa\ +\x95\xd6\x63\x4b\x8f\x96\xbc\x33\xc5\x38\xfc\xd5\xb9\xa8\xd2\x40\ +\x1d\x12\x4f\x84\x99\xe2\x9e\x0c\x56\xbe\x43\x13\x42\x12\x58\xec\ +\xa6\x29\x67\x8d\xd6\x4e\xa4\x9d\x7d\xae\xcc\x50\x77\xf3\x6e\xb6\ +\x3a\x04\xeb\xc8\xed\xb2\xfd\x0a\x6b\xb5\xa4\xe2\x82\x1e\x49\xd2\ +\x59\xcc\x16\x3a\x21\xee\x1b\x7d\x73\xa1\xc6\xf8\x0e\x5c\x8d\x2d\ +\x2f\x72\xe8\x84\xc0\x44\xf4\x10\x36\x63\x61\x94\xc2\xda\x80\xf7\ +\x0b\xdf\x98\xc6\x9b\x57\xe7\xdc\xe8\x81\xe8\x00\x20\xb5\x26\x94\ +\x4a\xdf\x1a\x58\x84\xa2\x37\x81\x9f\x45\xaf\x3a\xe3\x9d\x87\x15\ +\x3f\x1d\xa0\x4e\xa1\x7e\x51\xa8\x6a\xd0\x82\x69\xa2\xb1\x90\x7b\ +\x96\x27\x10\xe9\x59\x82\xba\x9b\xdd\xbc\x87\x9b\xde\x93\xa5\x44\ +\x59\x17\xb3\xec\x1c\x96\xa7\x8b\xc7\x2d\x34\xd4\x70\x0c\xd7\x74\ +\xf5\x47\x85\xd7\x28\xa8\xc1\xa2\x81\x01\x13\x3d\x2a\x39\x4b\x2f\ +\xca\x12\xf7\xc0\xea\x10\x88\x84\x19\xe6\xc5\xd6\xf3\x17\xf5\xa2\ +\x4f\x16\x80\x51\x90\x1e\x2b\x21\xd5\xc1\x93\xbe\xe0\x00\xfd\x84\ +\x86\x5b\xd8\xea\x1a\x88\x82\xcd\x2a\x34\xa8\x1e\xf6\x3b\xed\xb8\ +\x6a\xb9\xe2\x8a\xa3\x0c\xd0\x68\xfc\xa0\x7b\x7e\xf4\x3c\xe6\x80\ +\x34\x3c\x23\xca\xcb\x84\xf1\x51\x11\x3a\x65\xfb\x22\xa4\x15\xfd\ +\xa5\x97\x28\xb7\xac\x72\xf6\x8a\xb6\xc8\xc6\xd5\x87\x12\x8c\x23\ +\x06\x68\xb8\xd6\x3a\xca\xca\x82\x70\xab\x14\xec\x00\x7b\xb6\xf4\ +\x0a\x67\xa9\x8d\xdf\x17\x62\x9a\xf4\xc5\x93\x00\x19\xd7\x66\x0b\ +\x86\x42\xaf\x1b\xb4\x4c\x55\xd3\x2f\xc9\x56\x8b\x50\x19\xf8\xb6\ +\x22\x62\x6d\x7b\x95\x95\x77\x8c\x5c\x04\xeb\x1c\x18\x62\x61\x2e\ +\x57\x36\xb4\xb5\xe0\x65\x38\xe8\x5d\x76\xcb\xd1\x15\x6d\x49\x58\ +\x91\xcd\x57\x24\xe6\xee\x25\x16\x97\x65\x01\xba\xfc\x14\x92\x43\ +\x74\x62\xc5\x9b\xf9\x2b\x44\x1f\x26\x60\xa4\x40\xf4\xe2\x7d\xf2\ +\xb4\x44\x85\xa6\x49\x96\x79\xaf\xb6\x28\x48\xc9\x94\x90\x64\x04\ +\x7a\x86\x7f\x2a\x72\xe9\x1e\x2e\xa2\x57\x93\x37\xaf\xe1\x69\xe1\ +\x7d\x66\x25\x80\xcb\x04\x80\xf4\x7a\xd0\xf8\xbd\x7c\xbd\x16\x02\ +\xe6\xe6\x27\x18\xcc\x51\x60\xcf\x4d\x4d\xb6\xec\x52\x62\x87\x3b\ +\x78\xab\x13\x6d\x84\xcd\x28\x7f\xa6\x00\x14\x0e\xa2\x17\x25\x57\ +\xca\x4e\xa2\xa0\x9d\x39\x09\x68\x59\x22\x82\x13\x26\x60\x8c\x10\ +\x15\xe7\x73\x22\xe7\x66\x81\x01\x04\xdd\xbe\x5e\xa4\xbe\x64\xe4\ +\x04\x55\x20\xa8\x90\x78\xe6\x74\xf2\x2e\xf6\xa2\xf1\x21\x2c\xe6\ +\x40\x23\x39\x7a\x1c\x4a\x44\xf4\x4d\x91\xe9\x84\x1a\x5f\xe3\x90\ +\xc6\xf6\xb4\xd7\x1a\x06\x11\xbd\x4b\xd0\x60\xce\x29\xd1\xfe\x29\ +\x5e\xd6\x8d\x93\x62\x3e\xf5\x79\x67\x56\x8e\x6b\x88\x6e\x86\xe0\ +\xde\xc4\x5f\xf7\x6a\xf1\x23\x85\xde\xa5\x02\x68\xb0\x70\x5c\x26\ +\xc8\x69\x06\xb0\x80\x9b\x7f\x5b\x85\x14\x37\x54\x3d\x37\x2b\x62\ +\x67\x87\x02\x35\x40\xd8\xd5\x0d\x2c\x4c\xed\x71\xb9\x6f\x73\x7f\ +\xb5\xc2\xe4\x21\x0c\xa8\x15\xea\x48\xe4\xd9\x15\x0b\x34\xa4\x14\ +\x05\xe2\xf4\x69\x02\xb1\x99\x88\x80\x52\x10\x39\x98\x9d\xb1\x69\ +\xc3\xca\xb0\xe4\x1e\x49\x73\x7f\x20\x32\xf7\xef\x89\x4a\x78\x37\ +\x2f\x77\xaf\xc6\x7b\x93\xce\xa2\xe4\xc0\x51\x9e\x66\xeb\x1d\x5b\ +\x23\xec\x36\x0a\xda\x05\x55\xd1\xa2\x4a\x56\x42\x7e\xf6\xa4\xbb\ +\x9b\xe8\x29\x35\x51\xa7\x9f\x7e\x66\x2d\x22\x6e\x58\x51\x85\xde\ +\x46\x39\x8c\x04\xbd\x87\x81\x8e\x85\x29\xa1\x3a\xba\x2c\xe5\x84\ +\x1e\x69\xee\xf0\x70\xb1\x69\x59\x74\x15\xbb\x41\x29\x4b\xe6\xc4\ +\x4e\x95\xd5\x4d\x7e\x33\x04\x75\x12\x32\x77\x42\xaf\xd4\x3b\xf3\ +\x1a\x55\xca\x08\x60\xf4\x80\x24\xdc\xe3\x00\x9a\xcb\x98\x33\x39\ +\x6d\x26\x09\x16\x91\x47\xf5\x7b\xee\xc7\x8c\x4a\xb2\x34\xb2\xcf\ +\x50\xa2\x25\xa8\x8b\x39\xa8\xd8\xfb\x95\xca\x39\x43\xfa\x01\x7c\ +\x2e\x53\x3a\x62\x4c\x67\x67\x55\x30\xc7\xf8\x64\x49\xda\x7b\x2f\ +\x11\xbd\x30\xc6\x34\x31\x23\x92\xc6\x92\xef\xdc\x89\x09\x97\x90\ +\xb6\x71\xb4\x0b\x0c\xae\x5e\x0a\x76\x35\x5c\xae\x49\x09\xa4\xba\ +\xfe\xa3\x57\x32\x79\x96\x9d\x55\x88\xe0\xeb\x70\x13\x04\xbc\x76\ +\xa3\x17\x13\x9b\xca\x55\x4f\xbc\xb7\x4f\xa8\x12\x8a\x43\x96\xb3\ +\xbe\x2c\x51\x37\xb1\x0b\x34\x32\xdf\xa7\xa7\xf1\x69\x5d\xb8\x1c\ +\x6d\xc2\x4a\x55\x07\x20\x45\x8f\x79\x99\x39\xf2\x38\x3f\xc8\xfa\ +\xc5\x12\x7d\x38\x0a\x7a\xa1\x2a\x47\x10\xa0\x4f\xa6\xf3\xa8\x84\ +\x36\x9e\x62\x30\x09\xe0\x7e\x5c\x2a\xea\x80\x63\xc2\x98\x26\x66\ +\xa6\x06\x3d\x59\x0b\x9e\x1a\x74\x3f\x46\x0f\x29\xb8\x6e\xa2\x62\ +\x60\x6b\xbe\x8d\x13\xcd\x25\x09\xd6\x40\xe3\xa5\x8c\x84\x24\x63\ +\xd6\x34\x81\x24\x1e\x3d\x14\x5b\x16\x4b\x53\x9b\x7c\x59\x69\x39\ +\xd7\x61\x89\x60\x4e\xca\xaf\x92\xd5\xa7\xa9\xf0\xcc\x54\xa6\x88\ +\x54\x95\xdf\x95\x88\xde\xf6\xa4\x40\x44\x07\x53\xde\x25\x44\x82\ +\x7b\x52\x15\x70\xa3\x32\x58\x65\xad\xe4\xdd\x80\xde\x01\x10\xd7\ +\x43\xaf\xaf\x7a\xb7\x90\xd8\x6c\xda\x96\x33\x4f\x58\xd3\x81\xc4\ +\x78\x27\x51\xb9\x12\x16\xf7\xca\xa8\x42\x16\x5b\xf2\x37\x9a\x67\ +\x2d\xee\x33\x2d\xc4\xc6\xa5\xae\xb1\xbd\xb8\x43\xba\x97\x75\xa3\ +\x71\xcd\x9a\x67\x45\xe3\xa9\x32\x7b\x04\xcc\x5f\x99\xd2\x69\x5c\ +\xf0\x91\x2d\xd8\x61\x48\xb5\xcb\xa4\xf8\xeb\x7d\x53\xdc\x19\xa7\ +\xdf\x04\x14\x0d\x84\x8a\xa3\x6e\x44\x8f\x71\x0c\xe6\xf7\x63\x76\ +\x85\x10\xb1\x63\xf8\x59\xe0\xad\x68\x44\xab\x92\x82\x16\x64\x62\ +\x3d\xf2\xa9\x87\x2f\x5a\xda\x27\x67\x95\x68\x59\xa7\xa3\x85\x47\ +\x58\xd5\xbd\x0f\x79\xf4\x19\x58\x15\xaf\xec\x16\x30\x13\x10\xfb\ +\x9a\xf3\x1c\x40\xf6\xec\x70\xa5\x5c\xa6\x39\x66\x34\x53\x3a\x82\ +\x93\xcb\x52\xdd\xa3\x37\x59\xe4\x4f\xbf\x44\x84\x79\xfa\xcd\x06\ +\x02\xaa\xd9\xa6\xee\x56\x1b\x63\x29\x16\x3c\x0a\xa1\xbb\x6b\x8e\ +\xd7\x57\x1b\x4d\x1b\xc2\xfe\x9b\xc6\xae\x17\xfd\x31\x5a\xea\x11\ +\xf3\xde\x74\x62\xd0\x8b\x19\xfa\xa2\x69\x46\x28\xe5\x70\xce\x10\ +\x21\x33\xd7\xc2\x78\x36\xde\x50\xb2\x1e\x7b\x03\xc6\x14\xe9\x41\ +\xe9\xe2\x65\x9b\xe7\xc6\xca\xde\x26\x0b\xc0\x28\x06\x39\x7f\x9d\ +\x0a\x9f\x48\x0f\x70\xe0\xe0\x22\xa2\x67\x35\xa3\x5a\x41\x2b\xf7\ +\xdc\xba\x78\xfc\x60\x7e\x82\xbf\xad\x10\x7b\x33\x43\xdf\x4c\xf4\ +\xb8\x2d\xa8\x92\x93\x92\x3c\xc2\x56\x51\x9d\x62\x40\xba\x1e\xb7\ +\x54\xcf\x4d\xa8\x5f\xef\xc7\x72\x19\x4e\xe6\x5e\x67\x75\x7b\x98\ +\x7e\x59\x9e\x1e\xeb\x17\x75\x0e\x9a\x87\x4d\x8e\x7c\xf0\x06\x9f\ +\x85\xf1\x73\xfe\xb8\xc7\x22\x3b\x25\x3f\xc4\x7b\xea\xe2\x5a\xa6\ +\xde\x6e\x37\xea\x28\x8c\x66\x1c\xb2\x76\x3f\x25\xe4\xf1\x0a\x2c\ +\xb3\xd7\x1b\x8b\xb0\x24\x87\x82\xdf\x03\x80\x89\x58\x93\x3d\x66\ +\xbb\x05\x94\xe4\x58\xe8\xa2\xa2\xc2\x51\x10\xa7\xec\x2a\x6c\xec\ +\xd4\x86\x84\x26\x52\x05\x71\xe4\xe4\xbb\x33\x36\xc8\xd6\x4d\xd4\ +\x74\x88\x92\xf3\x3c\x90\x65\xcc\xf7\x15\x6b\x70\xa4\xc2\x9d\x1b\ +\x93\x38\x68\xa1\xfa\x9b\x44\xbf\x00\xc2\xac\x61\x54\x05\xc5\xc9\ +\xee\x86\x68\xc5\x02\x13\x1d\xea\xd0\x2c\x61\xb0\x70\xf5\xdd\x0f\ +\x76\x01\x2e\x3d\x2a\xdd\x84\x85\x64\x97\x69\x45\xa0\x5b\x8c\xed\ +\xff\x66\x10\x59\x2c\x11\x58\xdc\x5b\x20\x7a\xff\x88\x8b\x7e\x44\ +\x60\x43\x74\xcb\xa1\x26\x9a\x20\x3e\x47\x7b\x2e\xc7\xf5\x53\x05\ +\xd5\xe2\x8d\x1e\xbb\xd6\x8b\x66\x02\x62\xd4\xa3\x60\x7b\xb4\x89\ +\x8c\x20\x01\xfa\x5d\x2e\x41\x06\x2f\xe0\xf9\x3c\xa2\xbe\x3b\xd2\ +\x77\x59\x85\xa8\x36\xb9\xd9\x5d\xd6\xc6\xa4\x1c\x91\x5c\xc2\x10\ +\xd5\xb5\x35\xfd\xce\x16\x57\x93\x3f\x93\x06\x75\xb4\x95\x76\x21\ +\x20\xdc\x77\x59\xf6\xf9\xf5\x29\x2c\xc9\x55\x8f\xea\xc4\x17\xba\ +\x1a\x4f\xd9\x4e\x22\x72\x01\x8c\x7c\x14\x45\xae\x6c\x7c\x9e\x92\ +\x12\x4b\x46\xe9\x4e\x58\xac\x16\x12\x24\xaa\xd3\x6a\xaf\x06\xf4\ +\x7e\x38\x28\xf6\x51\x4d\xce\x71\x59\x92\x30\xac\x1e\x33\x9f\x62\ +\x50\xe4\xe1\xb1\x41\x97\x4f\x31\x68\x56\xfa\x06\x58\x13\x12\x35\ +\xf4\xfe\x38\x74\x96\xe5\x80\x24\x0f\xde\x95\x30\x78\xfc\x1c\xea\ +\x83\x32\xcc\x8a\xd6\x62\xa9\x30\xab\x43\x9b\x97\xf1\x0f\x7d\xd0\ +\x99\x38\xa8\xe3\xe5\xaa\x80\x79\x4c\xc2\xa8\x4e\x4c\xbd\xd5\x67\ +\xd2\x47\x9f\x85\xa3\x33\x05\x36\x79\xfc\xd3\x13\xc6\x67\x09\xe7\ +\xc9\x4c\xdd\xa9\x3a\xd7\x01\x38\x57\xc1\xe7\x21\xba\xe4\xe9\xca\ +\x24\x57\x65\x39\xec\xbb\x8a\x0c\x1d\x9a\x13\x89\x3e\x38\x18\xe2\ +\x49\xd0\x1d\xc5\xaf\xfd\xf8\xab\xee\x6a\xd2\x41\x5c\x8c\x20\x7a\ +\x34\x4d\x04\xc1\xc3\x16\x30\x5d\x03\x8b\x99\xd2\x47\xff\xdd\xbf\ +\x98\x7a\xbe\x62\x60\xf7\x56\xdd\x85\xc9\xc1\x8e\x93\xbb\x9a\x3c\ +\x36\xc9\x09\x53\x10\x90\x88\x93\xd0\xb4\x9a\x40\x4e\x17\xdf\x02\ +\xbf\x04\x12\x9c\x96\xef\x25\x4f\x63\x25\x4c\xa3\xba\x04\xea\xc3\ +\xb5\xe3\x70\xac\x05\x5f\x2a\x94\x98\x8c\x84\xc1\x1b\x10\xd5\xbb\ +\x89\x12\x51\x1c\xde\xc0\x17\x65\x1b\x89\xac\x25\x69\x22\x75\xf2\ +\xd3\x4d\x34\xc7\x9c\x88\x31\x86\xd8\x4c\xc7\x25\xcc\x94\xe7\x4a\ +\x8e\xae\xcd\xb1\x66\x34\x4c\xf7\x8d\x73\x9d\x30\x6b\x53\x45\xc5\ +\xa6\x17\x9e\xa7\x9a\x22\x09\x6b\xfa\xfd\xee\xf1\x03\xcd\xae\xff\ +\x4c\x46\x57\x12\xc3\x88\x53\x51\x9a\xf1\x93\xc9\x27\x83\x7d\xb5\ +\x3c\x43\xb8\x36\x6c\xa2\x8f\xc6\x92\xf3\xaa\xa5\xad\x34\x25\xe7\ +\xab\x64\xb0\x1f\x31\x92\xa1\xd2\x9c\x36\x23\xf5\xc5\xd6\xa8\xb7\ +\xb5\x34\xbb\x19\x4d\x9d\x7c\x36\x93\x8d\x49\x15\xba\xc4\x0c\xa0\ +\xd9\x93\xe6\xca\xb4\x54\x4b\x92\x59\xc9\x05\xb4\xce\x94\xcc\xec\ +\x8f\xe4\xc6\x43\x49\x69\xae\xef\xd9\x8c\x56\x8c\xc8\xf9\x90\xae\ +\x88\x49\x73\x5d\x33\x60\x7a\xb0\xea\x50\x2d\x9f\x7c\x33\xa5\xf9\ +\x78\x62\xf8\x6a\x8d\x84\xb5\xbc\xe6\x41\x4a\xbb\x09\x59\xdb\xc9\ +\x3d\x77\xa4\xca\xa3\x52\xa3\x78\xc7\xf5\x4d\x09\x79\x29\x5d\x53\ +\x8f\x03\xff\xde\x46\xb6\x2b\x81\xcb\x47\xdb\xb6\x3d\x31\xd1\x25\ +\xed\x80\x3b\xe2\x03\xee\x78\x17\x03\x6e\x4f\x18\x70\x7b\xf2\x80\ +\x2b\xab\x0e\x38\x59\xa0\x50\xd8\xf4\x94\x7a\xd5\xc9\x3c\x88\x4f\ +\x65\xcb\x50\x46\xd9\x47\x7b\x3d\xae\xa6\xef\xdb\xa4\x4e\x55\x63\ +\x44\x01\x71\x70\x12\x10\xcc\x3d\x14\x05\x63\x5f\xd7\x3e\x22\x68\ +\x78\xaa\x69\x91\x9b\xc7\x56\x3f\xb0\xcf\xab\xd7\x0e\x84\x36\xf5\ +\xbc\xa4\xa9\x91\xc5\xc7\x83\x74\xfb\x36\x33\x4b\xe8\xd5\x4b\xe5\ +\x97\x11\x11\x9a\x51\xb7\x67\x28\x88\xac\x24\x88\xca\x81\x5b\x5c\ +\x06\xaa\x85\x13\x77\x6a\x27\x63\x64\x2a\xa8\x6c\x22\xaf\x12\x8e\ +\x60\x64\x7e\xd2\xfc\xdc\x4c\x8b\xce\x3d\x9c\xea\x44\x31\x53\x46\ +\xc4\xbc\x5d\x2d\x03\x46\x6f\x7e\xa4\x3a\x3d\x24\xf3\xcc\x1e\x0e\ +\x17\x2b\x07\x05\xfb\x87\x46\xbf\x5d\x96\x03\x13\x29\x15\x10\xfd\ +\xd8\x0d\x5b\x43\xf7\x4a\x99\x61\x54\x01\x81\x76\x93\x94\x9e\x21\ +\xc6\xef\x91\x9a\x22\x07\x71\x7e\xa4\xae\x40\x49\x60\x7d\x11\xad\ +\x83\x28\x7a\xfb\x12\xe4\x4b\x06\x73\xb9\xcc\xc4\xcb\xfa\x84\x8c\ +\xcb\x01\xad\xed\xc1\xa4\x59\xf7\x44\x55\xfc\xc5\x4b\x3b\xd5\x7e\ +\x2f\x1c\x8a\x64\xe1\x0b\x13\x5d\xd4\x59\xc6\x4d\x0a\x16\xae\x2b\ +\xf2\xdc\x68\xa5\x2c\xa7\x6c\x7c\xaa\x78\xde\x90\x3f\x02\x88\x08\ +\x79\x33\x7b\xde\x60\x70\x3d\xbf\xeb\xdc\xd0\x35\x36\x9b\xa7\x48\ +\xc3\x10\x9c\x8c\x18\x86\xcc\x1a\xa0\x64\x8f\x63\xbc\x75\x42\x97\ +\xbc\x6b\xf3\x48\xb2\x43\x73\xb2\x2e\xa0\x85\x43\x48\x60\x98\xcf\ +\xcd\x5b\x12\x80\x31\x31\xb4\x79\xdd\x91\x3b\xa2\xbe\xd4\x8c\xba\ +\x37\x40\x41\xb9\x25\x4e\x91\x0f\x68\xa5\x47\x93\xb7\x9a\x48\xbe\ +\x8f\x54\x6f\x33\x15\xcd\xf0\x9b\x20\xc2\x3d\xce\xec\x96\xf3\xa5\ +\x63\x43\xaf\x85\x13\x25\xfc\xb9\xaa\x38\xd2\x15\xcb\x2e\xb2\x55\ +\xc3\xc9\xfb\x68\x85\x14\x73\x9c\xcb\x1b\x46\x45\xab\x07\x16\x5f\ +\xa0\x4d\xc2\xe8\xb9\xa1\x3e\x75\x54\x38\x43\xe6\x53\x57\xda\x8e\ +\x96\x1d\xdf\xb5\x35\x8a\xc6\x9e\x29\x13\x4e\x93\x2f\xda\xce\x60\ +\xc2\x70\x52\x02\x69\xad\x56\x3f\x52\x13\x2d\x1c\x39\x3d\xb1\x84\ +\x80\xaa\x17\x4a\xaf\x9b\xd4\x16\x54\x12\x65\x9b\xd6\xed\x9d\xa2\ +\x42\x99\x84\x91\x39\xeb\x0d\x6d\xa8\x76\xdb\xf6\x84\xdf\x77\x68\ +\xbf\xef\x88\x2d\x48\xbd\x5d\x13\x7d\xb9\xda\x82\xb6\x4f\x7f\x41\ +\xdb\xd3\x2f\x48\x57\x9e\x6a\xb7\xc7\x01\x56\xbf\xd6\x44\x7f\xac\ +\x06\xf0\x8e\xe9\x03\xbc\x23\x2d\xc0\x0b\x78\xe4\x59\x85\xae\xf4\ +\x3a\x3b\xcd\xe9\x66\xb3\x0a\x39\x1e\x23\xea\x8d\x0c\x73\x6a\x42\ +\x77\x32\x33\x26\x66\x26\x67\x57\x2b\x0f\xdc\x0f\x87\x04\x6e\xc8\ +\x22\x51\x2b\x6d\x3d\xfa\xf0\xdf\x7b\xe3\x59\x43\ +\x00\x00\x3e\x68\ +\x00\ +\x00\xd7\x61\x78\x9c\xb5\x7d\x09\x7c\x5d\x55\x99\xf8\xc9\x9e\xbc\ +\x6c\xa5\xd4\x02\xa5\xb4\xb7\xa5\x96\xb4\x4d\xd2\x52\xb6\x36\x96\ +\x25\x4d\x9a\xb6\xd0\xcd\x26\x74\x13\xb5\xf7\xbd\x77\x5f\x72\xc9\ +\x7b\xf7\x3e\xef\x7d\x2f\x69\x3a\x58\x51\x46\x10\x15\x14\x64\x07\ +\x11\x94\xa5\xe2\x32\x2a\x30\x8a\x42\x59\x44\x04\x94\x19\x74\x1c\ +\xe6\x8f\x33\xb2\x28\x3a\x33\x8e\x0a\x7f\xc6\x61\xd0\xa9\xce\x7c\ +\xe7\x3b\xeb\x5d\x5e\x72\x53\xe4\xc7\x8f\xbe\xe4\xe5\xde\x73\xbe\ +\xf3\x9d\xef\x7c\xfb\xf7\x9d\x35\xdf\xca\x1e\xfb\xf4\xab\xb7\x5c\ +\xfb\xcc\x82\xb9\x0f\xef\xbd\xfd\xa1\x9f\xad\x25\xa4\x79\x15\x21\ +\x64\x17\x21\x4f\xed\x81\xcf\xdd\x84\x3c\xdd\x05\x9f\xf0\xf3\xd3\ +\x2f\x11\x52\xf7\x3c\x7c\xff\x5b\xf8\xfc\x29\xfc\xde\x0a\x9f\xbf\ +\x86\xcf\x47\x08\x69\xd8\x47\xc8\x95\x65\x42\x36\x5c\x42\x48\x4d\ +\x81\x7d\x5e\x7b\x22\x21\x23\xa7\x12\x72\xd9\x7a\x52\xf5\xe8\x65\ +\x84\x5c\x70\x1f\xa9\xbd\x6b\x82\x90\x1b\x0e\x93\xda\xef\xd4\x12\ +\xd2\xb6\x85\x7d\x7e\xae\x96\xd4\xad\x58\x47\xc8\x8c\x07\xd8\xe7\ +\xbd\xbb\x49\xdd\xc0\xf7\xe0\xf7\x5f\xb1\xcf\x7b\xff\x9b\xd4\xed\ +\x80\xef\xdf\xfb\x09\xf6\x79\xff\xc9\xa4\xee\xcb\xbf\x27\x64\xde\ +\x1f\xd9\xe7\x13\x35\xa4\xee\x5b\x7f\x22\xe4\xfb\x5d\xa4\xee\xef\ +\xbf\x0f\x9f\x2f\x92\xfa\x2f\x7d\x92\x90\x8f\xbd\x4c\x66\xfc\xf5\ +\x46\x42\xf2\x19\x32\xb3\xee\xdb\x84\x7c\xb7\x8a\xcc\x7e\x02\xe0\ +\xbe\x7b\x3b\x99\x7f\xc7\x7f\x13\xd2\xf9\x63\xb2\x94\xc2\x73\x55\ +\x17\x59\xf6\xf8\xdf\x10\x72\xf5\x6a\xb2\xec\x25\x0b\x3e\x1d\xb2\ +\xfa\xc5\x53\x08\x39\xf3\x11\xd2\x73\xeb\xf1\x84\x1c\xf8\x11\x39\ +\xf3\xf6\xe3\x08\xb9\xee\x93\xe4\xac\xcf\xc0\xba\xce\xfa\x3d\xd9\ +\xf0\xa9\x8b\x08\xe9\xfa\x35\xd9\x70\xc3\xe5\x84\xd4\xe6\xc9\xc6\ +\x97\x3e\x4a\xc8\xd2\x5f\xb3\xcf\x5b\x16\x90\x73\x4f\x07\x38\x1b\ +\x5e\x20\xe7\xe5\x4e\x23\xa4\xa7\x04\x9f\x67\xc0\xe7\x03\xf0\xb9\ +\x1a\x3e\xff\x4c\x76\xee\x1d\x22\x64\xd6\xa9\xec\xf3\xd0\x5d\x64\ +\xd7\x9f\x60\x1d\xe6\xef\xc9\xee\x1b\xde\x49\xc8\x31\x2f\xb2\xcf\ +\x47\x86\xc8\x85\xbb\x6e\x22\xe4\x5b\x4b\xc9\xc4\xab\x3f\x01\xfc\ +\x7e\x85\x1c\xf8\x50\x1b\x21\x97\x3c\x48\x3e\x7e\xe2\xb5\x84\x9c\ +\x7c\x00\x3e\xaf\x87\xcf\x27\xe0\xf3\x46\x42\x56\xb6\x91\xab\x1e\ +\xfc\x77\x42\x8e\x9a\x4f\xee\x3a\xe3\x6c\x42\x56\x2c\x21\xf7\x5c\ +\x0c\xe3\xdc\xf2\x22\xf9\xf2\x73\x80\xe7\xf3\xfe\x85\x3c\xf2\xe5\ +\x0c\x21\x9f\xbd\x9d\x3c\xf1\x0b\x07\xd6\x7f\x3e\xf9\xc1\xc1\x59\ +\x84\x5c\x71\x2d\x39\x4c\x9e\x26\xe4\xab\x2f\x55\x1d\x77\xc5\x0b\ +\x84\x0c\x5f\x59\xb5\xe0\x39\x80\x73\xf4\x9c\xaa\x85\xf7\xfd\x81\ +\x90\x63\x67\x57\x2d\xbf\xf2\x00\x21\xe3\x73\xab\x36\xfc\xf9\x0b\ +\x84\x9c\x5d\xaa\x1a\xfc\xcf\x7b\x08\xf9\xc2\x60\xd5\x8e\xd9\xe7\ +\xc2\x7b\x3b\xab\x2e\x78\x01\xf0\x7b\xdf\x6d\x55\xc3\xad\x1f\x27\ +\xe4\x8b\x27\x56\xd9\x47\xed\x27\xe4\x41\xbf\xca\xbe\xfe\x06\x42\ +\xd6\xae\xa9\xfa\xc8\xea\x14\xac\xe3\xd9\xaa\x4f\x8c\x00\x8d\x3c\ +\xf1\x48\xd5\x27\x2e\x07\xbc\x37\xb6\x57\xdd\xfe\x21\x80\x67\xc1\ +\x03\x55\x5f\x7f\x6f\x13\x21\x1f\x2a\x55\x3d\xfa\x3c\xcc\xef\x7c\ +\xb9\xea\xc7\x9f\xfa\x07\x42\xd2\xf7\x56\xfd\x64\x06\xd0\xd0\xb9\ +\xbf\xad\xfa\xd9\x25\x7f\x24\xe4\x6f\xaf\xae\x7a\xf1\xa8\x3e\x42\ +\xea\x5f\xa9\xfa\xf9\xef\x81\x1e\x1f\xbb\xa6\xea\xf0\x57\xe1\xb9\ +\x2b\x7f\x5f\x5d\x77\x08\xd6\x79\xf3\xd5\xd5\x9d\xcf\xef\x25\x64\ +\xd1\x09\xd5\xcb\xef\x87\x75\x9d\xd8\x5f\x3d\xb0\x0b\xe6\xfd\xce\ +\xcd\xd5\x3b\xdf\x6c\x24\xa4\x75\x66\xb5\xf5\x95\x34\x21\x3f\xf8\ +\x76\xb5\xd3\xf0\x73\x42\x72\xe7\x54\x8f\x2d\x3a\x9a\x90\xf5\xff\ +\x59\xfd\xc1\x97\xce\x87\x75\xaf\xa9\xbe\x66\x60\x0e\xc0\xf9\xc1\ +\xea\x6b\x9f\xbe\x9f\x90\x35\x56\xf5\xdd\x9d\xef\x00\x1a\xbf\xb2\ +\xfa\x9e\xd3\x01\xdf\x9f\x7e\xbc\xfa\x4b\x97\xc1\x3e\x5c\xf5\xbe\ +\xea\xaf\xbf\x06\xeb\xfd\xd2\xa9\xd5\x0f\xdf\x73\x25\x21\x7d\x1f\ +\xad\x7e\x24\xf7\x3a\x21\x3e\xa9\x7e\xf2\xec\xff\x02\x7a\x39\xb9\ +\xfa\xf9\x3b\x1e\x20\xe4\xd2\x37\xab\xff\x79\xce\x35\x84\x34\xad\ +\xaf\xa9\xfa\xeb\xc7\x09\xf9\x9b\x7b\x6b\x66\x5e\x7f\x21\x21\x5f\ +\x29\xd6\xcc\x9a\x00\x7c\xdf\xb7\xac\x66\xce\x2c\x80\x73\x95\x51\ +\x33\x67\x36\x9c\xb3\x91\x8f\xd6\x2c\x9f\x03\x7f\xbf\xfa\xbf\x6a\ +\x0e\xd0\xf9\x77\xee\xa8\xf9\x68\x69\x03\x21\xef\x7e\xa9\xe6\x63\ +\xf3\x61\xde\x5d\x9b\x6b\x6e\xdd\x75\x27\x9c\xc5\x4d\x35\xf7\xde\ +\x0a\xf8\x78\xe0\xd2\x9a\xfb\x9f\x04\xfa\xf8\xf6\xaf\x6a\x1e\xfa\ +\xc9\x2b\x84\x7c\xe6\x1b\x35\x8f\xaf\x81\xf9\xaf\xdb\x56\xf3\xbd\ +\x7f\x7c\x1f\x9c\xe3\x0f\xb2\xcf\x5b\xee\xa9\xf9\x41\xeb\x2f\x81\ +\x9e\x3e\x5a\xf3\x2f\x2d\x14\xfe\x87\x6a\x5e\xde\x07\xf8\xba\xe9\ +\x9a\x9a\xd7\x8b\x40\x9f\xa7\x5e\x5c\xf3\xfa\x43\x80\xb7\xe3\x4a\ +\x35\xff\xd3\x0e\x74\x72\xc6\xb7\x6a\x17\x9c\x08\x78\xef\x38\xb3\ +\xb6\xdb\x87\x73\xf0\x91\xad\xb5\x3b\xea\x3f\x43\xc8\x69\xbf\xac\ +\xdd\x7b\x11\xe0\xe3\xe1\xa5\xb5\x13\xaf\xc2\xbc\xf7\x5c\x5e\xfb\ +\x91\x71\xa0\xdb\xdc\x6b\xb5\x97\x5d\x02\xe7\x7b\xfd\x51\xb5\x97\ +\xfd\xe1\x56\x42\xbe\xf6\x58\xed\x27\x9f\xfb\x2a\x21\x17\x8d\xd4\ +\x5e\xf9\x10\x9c\xb7\xdb\xcf\xac\xbd\xed\xe3\x30\x5f\xfd\xbd\xec\ +\xf3\xfa\x87\x6b\xef\x38\x19\xf6\xef\x1b\xff\x5e\x7b\xf0\x3f\xe0\ +\xbc\xbc\xab\xaf\xf6\x50\xea\x4d\xa0\xff\x42\xed\x73\xcf\xcd\x24\ +\x24\xfb\x8b\xda\x97\x9d\x5f\x00\xfc\xff\x5b\xfb\x4a\x3b\xd0\x4b\ +\x4d\x5d\xed\x7f\xf4\x7e\x17\xe6\xbf\xa0\xf6\xd5\xe7\x0f\x12\xb2\ +\xf7\x40\x5d\xcd\x25\xb0\x1f\x1f\xdf\x5b\x57\xf7\x03\xd8\xbf\xf3\ +\x0f\xd4\xb5\xbf\x5e\x22\xe4\x9b\x67\xd7\x1d\x3f\x03\xf0\xb8\xa7\ +\xbe\x6e\xe9\x2f\xe1\x5c\x64\xae\xaf\xeb\x7f\xd7\xfb\x09\xf9\xe4\ +\xed\x75\x17\x3c\x0f\xf8\x9f\x79\x80\x7d\xde\xff\xf9\xba\xcc\x1b\ +\xb0\x9e\xf4\x19\x75\xd6\xef\xe0\xbc\xdf\x5e\x5d\x77\xd9\xd7\x60\ +\xfc\x43\x7f\xae\xbb\xee\x20\xe0\x77\x76\x99\x7d\x3e\xd2\x51\xf7\ +\x95\xf3\xe0\xfb\x9d\xf7\xd5\x7d\xe3\xae\x27\x80\xae\xca\x75\x0f\ +\xd4\x3c\x09\x9f\xaf\xd5\x3d\xd4\x02\xfb\x7f\xc7\x03\x75\x0f\x5d\ +\x09\xf4\xba\xff\x85\xba\x43\x3b\x60\xbc\xbd\xd5\x75\xdf\xdb\x46\ +\xf9\xda\x47\xeb\x7e\x79\x65\x37\x9c\xef\x4c\xdd\xff\xfc\x0b\xf0\ +\x8b\xf3\x5f\xa9\x9f\xf7\x2b\xd8\xcf\xef\x3d\x59\xbf\xe4\x77\x5f\ +\x04\xfe\xb7\xa2\x7e\xe9\xa5\xcf\x00\xde\x6e\xaa\xdf\x79\x1c\xe0\ +\x0f\x30\xb3\xe7\x55\xc0\xeb\xa7\xdf\xac\x7f\xcf\x8f\xe1\xb9\xcd\ +\x97\xd5\xe7\x3f\x06\x74\x35\x38\x5a\x5f\x3a\x01\xe8\xd2\x69\xa9\ +\xff\xc4\x75\xfd\x84\xb4\x9f\x59\x7f\xfd\xae\xa7\x08\xb1\xdb\xea\ +\x1f\xbc\x18\xe0\x5b\xf8\x8f\xf5\x4f\x7d\xab\x8e\x90\x6b\x56\xd5\ +\xff\x5b\xdd\x16\x38\x4f\x3f\xac\xff\xdd\x3d\x3b\x09\x79\xfc\xb3\ +\xf5\xaf\xfd\x00\xf0\x6c\x7c\xa8\xfe\x8f\xff\x0b\xf0\xef\x78\xbd\ +\xfe\xf0\x1c\xa0\xb3\x35\x0f\xd4\x1f\xbe\x0d\xce\xe7\x37\x0f\x34\ +\x34\x7e\x1a\xe8\x61\xe5\x6f\x1b\x5a\xbf\x09\x7c\x70\xed\x93\x0d\ +\x6d\x97\x9e\x05\xcf\xbf\xd9\xb0\xf4\x44\xc0\x47\xef\x5f\x35\x9c\ +\x36\x02\xfc\x61\xce\x15\x0d\xa7\xfd\x1b\xec\xf3\x83\x87\x1a\xfa\ +\x7b\x97\x12\xf2\xf9\xbf\x6d\x38\x77\x3e\x9c\xd7\xea\x8e\x86\xcd\ +\xfe\x42\xe0\xcb\x1f\x6e\xd8\x72\x17\xd0\xfd\xe7\xac\x86\x5d\x3f\ +\xf8\x37\xf8\xfd\x3b\x0d\x99\x3f\x03\x7f\x7a\xc7\x36\xf6\x79\xe8\ +\xef\x1b\x3e\xf0\x15\x38\xaf\xc7\x7f\xb5\xe1\xe2\x27\xee\x05\xb9\ +\x31\xa7\xe1\x63\x1e\xec\xfb\xb5\x97\x34\x5c\xb5\x0f\xe8\x72\xc9\ +\x3f\x35\xdc\xbd\x02\xe0\xbf\x76\xa8\xe1\xd1\xc3\xb0\x8f\xa7\x1f\ +\x6c\xf8\xd7\xdf\x00\x1e\x3f\x5c\xd5\x78\xd2\x7d\x80\xdf\x6f\x5f\ +\xde\xb8\xf2\x71\xe0\x33\x0f\x7d\xa2\xf1\xf4\x12\xc0\xbf\xec\xcd\ +\xc6\xfe\x07\x00\x9f\x67\xae\x6a\xdc\xf8\xd4\x0a\xa0\xd7\x43\x8d\ +\xe6\x45\x30\xee\x3b\x4f\x6c\xfc\xfc\xd3\xc3\x70\x7e\x96\x34\x7e\ +\xe1\x25\xa0\xd7\x1b\xbf\xdb\xf8\xf5\x77\x74\x00\x1d\x9f\xd7\x78\ +\x5f\x2d\xec\xc7\xc3\x9f\x6d\x7c\x76\x25\xe0\xf9\x73\xa7\x37\xfe\ +\xe4\x19\x1b\x3e\xbf\xd8\xf8\xf2\xcd\x87\x08\x99\x7f\x77\xe3\xcb\ +\x8f\xc2\x39\xba\xfd\x85\xc6\x57\x37\x03\xbf\xba\xe5\xdc\x26\xe3\ +\xa7\x8b\x40\x9e\xd1\xcf\xfb\xe0\xf3\x4f\xf0\x09\xe7\xe5\xa9\xf1\ +\xa6\xcd\xd7\x81\xdc\xeb\x5a\xd6\x64\xfd\x14\xf0\x77\xd7\x8f\x9a\ +\x46\x5a\x97\x10\xf2\xf5\x67\x9b\x3e\x70\x05\xe0\xb9\xf1\xe2\xa6\ +\xf2\x89\x00\xdf\xd5\x9f\x6b\x1a\xfb\x2d\xc8\xbb\x8b\xef\x6e\xba\ +\xf4\x2e\x58\xd7\xb2\x63\x9b\x3e\x71\x22\xac\xe3\xa1\xdf\x37\xdd\ +\xfa\x27\xe0\x9f\x1f\xbe\xb3\xe9\x6f\x97\x02\xfe\xde\xf5\x9d\xa6\ +\x67\xe6\xc2\xbe\x3e\xf2\x54\xd3\x8f\x17\x80\xfc\xdc\xd7\xd5\xf4\ +\xcb\x13\x01\x5f\x1f\x78\xbe\xe9\x37\xcb\x40\x6e\xb4\xfd\x67\xd3\ +\xab\xa7\x00\x9f\x9d\x5b\x6a\x7a\x6d\x3e\xec\x43\xcd\xe7\x9b\xfe\ +\xb4\x0e\xf8\xd2\x03\x4b\x52\x4d\x8f\x02\x9c\xdf\xf9\x63\xaa\xe3\ +\x26\xd8\x27\x6b\x14\x3e\x61\xdd\xd6\x37\xe0\x13\xd6\x65\xfd\x21\ +\xd5\x75\x08\xf8\xc0\xaa\xcb\x53\xa7\x7d\x11\xd6\xf5\xa5\x07\x53\ +\x67\x9f\x04\xe7\xe2\xe6\x97\x52\xe7\xdc\x0e\xe7\xe9\xd4\x3f\xa4\ +\x36\xde\x09\xfc\xfa\x89\x25\xa9\xbd\x2f\x01\xbd\x75\x2f\x83\xcf\ +\x63\xe0\xf3\x00\x7c\x82\x7c\xeb\xfe\x51\xca\xba\x19\xe0\xb9\xff\ +\x27\xa9\x7d\x75\x17\x13\x52\x65\xa6\x3e\xf4\x29\x98\x67\xe3\xe2\ +\xd4\x87\x5f\x01\x7e\xb0\xf5\xa4\xd4\xa5\x33\x80\x0e\x8f\xfe\xbb\ +\xd4\x0d\x97\x1e\x0b\xf4\xb3\x23\x75\xe3\x05\xb0\x3f\x87\xb6\xa4\ +\x0e\xce\x86\xf3\x38\x7b\x15\xfb\x7c\xf8\xc2\xd4\x17\x2f\xff\x0d\ +\xf0\xab\x43\xa9\x27\x2f\x80\xf3\x38\xf3\x9b\xa9\x67\xb7\x7d\x0b\ +\xf8\xce\x95\xa9\x67\x7f\x05\xfc\xe9\xf8\xf7\xa7\x9e\xfb\xff\x00\ +\xdf\xad\x37\xa7\xfe\xe3\xaa\x8f\x01\xbe\x1a\x9b\x1b\xf6\x51\xbc\ +\xd6\x36\x1f\xff\x92\x0f\xf4\xfd\xf1\xe6\x45\x9f\x05\xfc\x5f\x98\ +\x69\x5e\xf4\x3d\xa0\xf7\xd9\x07\x9b\x17\x1f\x00\xfc\xdc\xf4\x66\ +\xf3\xb2\x6d\xf0\xde\x17\x7f\xde\xdc\x75\x2f\xc8\xa5\x4b\x2f\x68\ +\x3e\xc3\x87\x75\x3f\xd9\xdc\x7c\xce\x39\x40\xbf\x7b\x46\x9a\xfb\ +\x9e\x81\x75\xec\x3e\xbd\x79\xeb\x0d\x80\xf7\xbb\x9f\x6d\xce\x75\ +\xfc\x18\xf8\xf1\x45\xcd\x1f\x7b\xa9\x01\xf8\xff\x85\xcd\xd7\xf4\ +\x83\x3e\xb1\xea\xb5\xe6\x1b\x66\x02\xdc\x77\x2c\x6d\xbe\xed\xaf\ +\x81\x3f\xd7\x7e\xa1\xf9\xde\x01\xe0\xbb\x37\x2e\x6d\x7e\xec\x46\ +\xf8\xbc\xb3\xb7\xf9\x1f\x4e\x02\xfe\x55\xf7\x64\xf3\x4f\x0e\x00\ +\x3f\x6b\xbd\xb3\xf9\xbf\x7e\x37\x08\x78\xd9\xd9\x52\xbf\x0d\xce\ +\x75\xfb\x73\x2d\xc7\xfd\x11\xe4\xed\x6d\xbd\x2d\x0b\x52\x40\x8f\ +\xd7\xff\x7b\x4b\xc7\xcd\xb0\x6f\x57\xd7\xb7\x9c\x7c\x00\xf0\xfb\ +\xc0\x3f\xb7\xac\xda\x0c\xe7\xab\xe9\x9a\x96\x9e\xd9\xcf\x82\x9e\ +\x92\x6d\xd9\xf3\x08\xf0\x8d\xeb\x66\xb5\x38\x97\xc1\xfa\x97\xdc\ +\xd4\x72\xd1\x4b\x77\x81\x7c\xba\xb5\xe5\xe2\x77\x01\xbd\xde\x7a\ +\x7c\xcb\x55\xb7\xc1\xbe\x7e\xcf\x6a\xb9\xee\xd3\x80\xaf\xdd\x37\ +\xb6\x1c\xba\x1b\xce\xf3\xb6\xae\x96\xa7\x7f\x06\xeb\xfd\xee\x07\ +\x5b\x9e\x7b\x15\xf8\xe2\xe9\x5b\x5b\x5e\xb8\x11\xf4\x99\x4b\x0f\ +\xb6\xbc\xbc\xa0\x1a\xf8\xe4\xa6\x96\x9f\x8f\x03\xbe\x2e\x9f\xdf\ +\xf2\xda\x0b\xb0\x9e\x83\xc3\xad\x73\xdf\xf8\x1d\x21\xa7\x3c\xd6\ +\xda\x93\xa7\xe7\xa7\xab\x75\xdd\xcf\x61\x3d\x8f\xcd\x6f\xdd\x7d\ +\x3b\xc0\xf7\xd9\xf6\xd6\x3d\x5f\x81\xf9\xae\xf9\x5a\xeb\xfb\xfe\ +\x15\xe8\x6a\xf9\xa2\xd6\xec\x9d\x40\xd7\x63\x2b\x5b\x0b\x6f\xc2\ +\xf9\x48\xad\x6f\x2d\xfd\x6c\x3b\x21\x27\x8c\xb7\x8e\xdd\x7f\x35\ +\xd0\xcb\xb1\xad\x37\xff\x06\xf0\x5f\xb8\xbd\xf5\xce\xe7\x01\x4f\ +\xa7\xbc\xb7\xf5\xae\x9f\xde\x41\xc8\x7b\x7e\xd4\x7a\xf7\x03\x8f\ +\xc1\x73\xff\xaf\xf5\x89\x27\x80\x2f\x3c\x74\x5c\xeb\xeb\xab\x61\ +\xbe\x2f\x5f\xdb\x36\xe7\x04\xca\x6f\x86\xda\x96\x5c\x93\x25\x64\ +\xdd\xaa\xb6\x65\xb5\x40\x67\x37\x6d\x6d\xeb\x7c\x05\x9e\x7b\xf4\ +\x9e\xb6\x2d\x3f\x04\xfc\x37\x3f\xd8\xe6\xde\x04\xf4\xfc\xf8\x09\ +\x6d\x7f\xb5\xbf\x93\x90\xd5\xaf\xb7\x7d\xea\x42\xd0\x8f\xce\xba\ +\xa5\xed\x2a\x0b\xf0\x33\xff\x9d\x6d\x4f\xff\x13\x9c\xa3\x93\xba\ +\xda\xf0\x9c\x3c\x3a\x1b\x3e\x81\x0e\x1f\xcd\xb4\x3d\xf3\x1e\xc0\ +\x8f\x39\xab\xed\xd7\xbf\xac\x21\xe4\x53\x97\xb4\xfd\xf6\x65\xa0\ +\x83\xf7\x3e\xd5\xde\x70\x05\xd0\xf7\xa7\x17\xb4\x37\xcf\x80\x7d\ +\xba\x60\x75\xfb\x31\x1f\x01\xfc\x91\x3f\xb5\xcf\xbf\x02\xf8\xe4\ +\x4d\x75\xed\x5b\xcb\x3d\x20\xf7\xfd\xf6\xf7\x3f\xfd\x8f\x30\x5f\ +\xa6\x7d\xfc\xbb\x40\x5f\x97\x7d\xa4\xfd\xf2\x66\xe0\x03\xef\x5b\ +\xd6\xfe\xa9\x83\x77\xc3\x7a\x8c\xf6\x1b\x52\xa0\xf7\x7c\x7f\xb0\ +\xfd\xd6\xdf\xdc\x06\x7c\xec\xb2\xf6\x87\x2f\x83\x73\xf8\x8d\x1b\ +\xdb\x9f\xf9\x3b\xa0\xeb\xb3\x56\xb6\xbf\xb8\x80\x9e\xeb\x2f\xb4\ +\xbf\x51\x3f\x0f\xe0\x83\xcf\x25\xa0\x5f\x5c\x93\x6b\xff\x9f\xf7\ +\x03\xbd\xdc\xbc\x01\x88\xf1\x87\xed\x00\x19\x31\xc8\x36\x52\x26\ +\x0e\x19\x25\x25\xf8\x79\x84\xd8\xf0\xf3\x7e\xf8\x26\x07\x9a\xd6\ +\x30\xb1\x88\xd3\x88\x6c\x1f\xfe\x6f\xea\xcd\x66\x8d\x6d\xae\xed\ +\x94\x80\x42\x49\x5b\xbf\x67\xe6\x4a\xef\x87\xef\xf0\xab\x2a\x3a\ +\x56\x8e\x0c\xe0\x5b\x74\x24\x0b\x47\x82\xf7\x43\x33\xd0\xb1\xd5\ +\x5f\x3d\xf8\x79\x8c\xb8\xf0\x39\x42\x4c\xf8\x26\x8b\x6f\xb0\xb7\ +\x36\xe1\x33\x36\xfc\xb6\x9c\xa4\x41\x65\x29\x92\x3c\x7b\x4b\x42\ +\xd4\x01\xb3\xfb\x86\x69\x14\x29\x04\x46\xc9\x35\x4c\xc7\xb0\xf6\ +\xd9\x7e\xc9\x76\x86\x8d\x71\xdb\xb3\x96\xa7\xfd\x62\xde\x76\xac\ +\x4a\x00\xaf\x00\x63\xa1\x8c\x40\xac\x87\x7f\xcb\x30\x45\x11\xa6\ +\x8b\x45\x03\xe9\xa6\xff\xc9\xa9\xdb\x29\x32\x60\xc6\x61\xcf\x2d\ +\x17\xbb\xbb\xbb\xe9\x0c\x33\xe4\x0c\x43\xee\x7a\xfa\x3d\xce\xe1\ +\x69\x48\xc9\xe2\x72\x0c\x58\x6a\x19\x16\x44\xc7\x1d\x27\xaf\xc0\ +\x6c\x79\xf8\x2b\x5b\xf4\x56\x58\xea\x85\xf0\xf3\x28\x7e\x33\x1d\ +\x74\x69\x2b\x90\x50\xae\x40\x04\x95\x46\x2c\xc3\xb7\xf2\x56\xa6\ +\x64\x65\x0d\x37\x7d\x21\xfc\xd0\xe1\x2f\x09\xe3\x0b\x57\x52\x79\ +\x19\x17\x93\x5e\x04\xaa\x0c\xd3\xe5\xe1\x3f\x2b\xb0\x43\x0e\x80\ +\xed\x21\x98\x0c\xec\x32\x02\x67\xc0\xd2\x4d\xf8\x3e\x2d\x17\x9d\ +\xab\xb8\xf8\xe8\xd2\xe9\x02\xc7\x71\xec\x6c\x80\x0e\x57\xf5\x16\ +\x61\x53\x2d\xdf\xc8\x94\x3d\xcf\x82\x8d\xa7\x3b\x0c\xdb\x9d\x2d\ +\x8d\xc0\x82\xb2\x46\xc6\xcd\xbb\x1e\x5d\x5d\x68\xcd\xbe\xbe\x38\ +\x18\x62\x62\xb0\x34\x91\xb7\x38\x1d\x84\x17\x47\x31\x3a\x08\xdf\ +\x4c\xf0\xa5\x56\x02\xe6\x68\x1c\xc9\xe8\xe3\xa0\xe0\x90\x95\xe7\ +\x99\x45\xce\xe3\x68\xf2\x61\xb1\x6e\xe8\x80\xd5\xf4\x7a\x19\xfa\ +\x6e\x13\x7f\xd7\xcb\xe0\x4b\x17\x91\x75\xf0\xd2\x7e\x78\xb4\x1c\ +\x73\xb6\xd6\x8a\x61\x80\x3c\x0d\xd2\x47\x86\xc8\x76\xd8\x17\x46\ +\x38\x05\xf8\x5c\x87\xcf\x7a\xb0\x00\x9f\x13\x59\x27\x2e\x6d\x03\ +\xd9\x08\xbb\x33\xa4\x3d\xb9\x16\xfe\xea\x93\x0c\xec\x88\x07\xfb\ +\x42\xcf\xab\x0e\xdc\x8a\x3e\xcf\x32\x4b\x80\x75\xa0\x19\xd3\xcb\ +\x74\x1b\x7d\x43\xdb\x37\x21\x96\x1d\xb3\xd8\x69\x0c\x6e\xd8\x38\ +\x30\x44\x7f\xcd\xb8\x8e\x5f\xf2\x4c\xdb\x89\x59\xc9\x4c\x40\xb3\ +\x83\xe4\x9b\x85\x4f\x4a\x23\xc3\x72\xfc\xba\x5e\xcf\x33\x27\xe8\ +\x4b\xcd\xe2\x25\xf8\x1d\x5f\xfb\x34\x22\x80\x81\x9f\x47\x72\x51\ +\x28\x30\x80\xde\x5d\xf8\xce\x44\xbc\x1a\xf0\x73\x96\x9f\x13\xfa\ +\x3b\x5d\x4c\x09\x3f\x47\xe1\xf9\x61\x7c\x22\x02\x02\x9e\x4b\xba\ +\xf4\xa4\xe7\xd2\x97\x40\xbf\x4b\x22\x05\x78\x50\xde\xf4\x0c\x20\ +\x3c\x0f\x48\xcd\x74\x86\xcb\xf4\x57\x93\xae\xc1\xc8\x79\x6e\x01\ +\x9e\x08\x91\x63\xec\x52\x67\xc0\x2e\x74\xc1\xee\x44\x79\x5d\xe3\ +\xda\xae\x41\xc9\xcb\x5a\xd9\x7b\x6b\xd9\x37\xf8\xe6\xa5\xb0\xf7\ +\x74\xc9\x26\x82\xcc\x16\x63\xc0\xbe\x96\x71\x11\x36\x8e\x68\xc1\ +\xd8\x14\x5d\x74\x64\x8a\xc4\x34\xfc\xae\xf1\xd5\x10\x05\x95\xe0\ +\x49\x03\xfe\xee\xc0\x48\xc5\x08\xd5\xb0\xbf\x66\xe0\x5f\x07\xb7\ +\x86\x52\x98\xad\xd1\x4b\x9f\x42\x4d\xa1\x9c\x2f\xd9\xc5\xbc\xd5\ +\xc5\xf8\x74\xba\x8b\x31\xe5\x64\x24\x14\xb3\xd4\x94\x3a\x45\x72\ +\xba\xfa\x3e\xdb\xcb\xb0\xa3\xd7\xc2\xde\x60\x5f\xe0\x0b\xb7\x4c\ +\x7a\x82\xd4\x91\xec\xc6\x35\xd2\xf5\xaf\x9f\xf2\x04\xf5\x02\x8e\ +\x86\x90\xd3\x15\x10\x93\x94\xe8\x0e\xe3\xd9\x11\x4c\x22\x8e\xa3\ +\x51\xf2\xa2\xe3\x0a\xf2\xd2\x4f\xd8\x99\x0a\x63\x19\x84\x3d\x8c\ +\xa0\xde\x4d\x43\x8a\xad\x19\x94\xc8\x28\xcb\xd1\x98\x5b\x74\xe5\ +\x2d\xb0\xba\x3c\xee\x91\x3e\x53\x5d\x5f\xde\x65\x84\xc4\x09\x10\ +\x7f\xc7\x17\x4e\x85\x85\x25\x63\xcf\xa3\x31\x03\x9f\x80\x03\x55\ +\x92\x38\xb1\x13\xce\xd3\xa4\x88\xc1\xf9\x4f\x1e\x7f\x7b\x31\x30\ +\x74\x0a\x5e\xf1\x2d\x63\x13\x3f\x01\xed\x72\x1c\xdf\xda\x24\x08\ +\x63\x0d\xec\x9e\xfe\xbe\x2e\x72\xe9\x82\xf6\xe3\x3e\xd3\x27\x28\ +\xd8\xa5\xa0\x0c\x93\x33\x1d\x8f\x83\xb2\x45\xa0\x68\x49\x5b\x54\ +\x3e\x66\x3d\x73\xdc\xa9\x38\xf5\xbc\x80\x92\x63\xe1\x01\xcb\x21\ +\x51\x04\x31\xd4\xb2\xdd\x2a\xb8\x63\x56\x44\x8f\xea\xb7\xf2\x4a\ +\x2d\xd9\x0b\x14\x68\x01\x5d\xb9\x20\xec\xd5\x59\xd6\x4f\x6e\x0e\ +\x06\x76\x91\xf2\x4c\xa4\x61\x8b\xec\x43\x0a\x2e\xe1\x13\x94\xa5\ +\x8d\xc3\x4f\x82\x25\x7a\x48\xa1\x71\x1a\xd4\x0a\x06\x8e\x52\xa2\ +\x18\xaf\x0a\xa9\x51\x94\xad\x45\x35\xa9\x00\xc8\x8f\x4f\xca\xa3\ +\xfb\xe1\xa7\x02\x62\xc5\x87\x9f\xdc\xb7\x4b\x58\xc5\x1c\x4c\x06\ +\x03\x1d\xc3\x02\xb4\x14\xf8\xce\x4c\x75\x14\xb7\xa8\xa3\x98\xb5\ +\x0b\x96\xe3\xdb\xae\x33\x35\xbb\x0a\x9f\x50\xca\xf2\x87\xe1\xed\ +\x92\x46\x35\xfd\x62\x38\x29\x10\xd3\x08\x95\x0f\xff\x05\x05\x62\ +\x93\x7c\xb4\xe2\xeb\xb3\x01\x31\x16\xa2\x2b\x8d\x08\x2b\x23\xc9\ +\x69\x1a\x7b\xbf\x3b\xee\x0c\x7b\x66\x56\x3f\x32\xf2\x3b\x1c\xe2\ +\x1e\x14\x36\x8c\x69\x05\x75\xd4\x02\xca\xd4\x51\xfc\xcd\xab\xa8\ +\x9f\xda\x9c\xfc\xe8\x67\x0e\xde\xa0\x3b\x62\x71\xc2\x8b\x63\x7f\ +\xb9\x80\x8c\xa6\x6b\x4e\x73\xe1\x31\x22\x67\x62\x6f\xd2\x9f\x73\ +\xb0\x2f\xaf\xf0\x31\xd5\xb2\xd6\xad\xdb\x57\xcc\xbb\xd9\x78\x3e\ +\xe3\x1b\x40\x92\xb0\x05\x76\x01\x24\x8e\x27\xbe\xec\xa4\x24\xec\ +\x97\xd3\xb0\x4f\xb0\x31\x39\x33\x63\xf9\x15\x51\xb2\x10\xc8\x90\ +\x12\xc9\x38\x9a\x06\x39\xa9\x84\x0f\x22\x32\xf6\x53\x2e\xa2\xcc\ +\x00\x1c\x80\xee\xf9\xe0\xa8\x55\xca\x8c\xd0\x41\x67\xf2\x41\xe9\ +\xbf\x2b\xd9\xd7\x7c\xb3\xf7\x68\xfc\x27\xb8\xd9\x0d\xf0\xf4\x38\ +\x1c\x37\x4d\xe2\xf1\x6f\xf0\xd5\x3d\xc8\x5d\x4a\xc8\x0a\x4a\x88\ +\x0d\x8a\x3b\x0b\xa9\x36\x83\xd8\xcd\x22\x5e\x19\xbe\x33\xfc\x49\ +\x17\xf7\xc6\xc4\xf3\x47\x31\x3c\x2e\x99\x83\x8f\x63\x50\x16\xa8\ +\x2c\x9a\xae\x6d\xe5\x52\x05\x8c\xba\xa0\xf2\x19\x1c\x1e\xc3\x1f\ +\xb1\xac\x52\x77\x05\x40\x67\xe1\xc1\x14\x3a\x3f\xb3\x06\xd4\xc6\ +\xd5\xae\xcb\xda\x78\x18\x52\xec\x4d\xfa\x2b\xbe\xb6\x2a\xe6\x35\ +\x46\x8b\x26\x67\x7f\xa3\xc8\xda\xc6\xc2\x74\x25\x87\x3e\x86\x8e\ +\xc5\xc0\x87\x1d\xb6\x81\xc3\x2a\x2d\x2b\x3c\xdb\x9c\x80\xc8\x49\ +\x23\x26\xc2\x7a\x7d\xf3\x80\xed\xd8\xfe\x88\x21\x78\x1e\xd7\xe7\ +\xd9\xb7\x92\xeb\x6f\x47\xb8\xc5\xdb\x41\x9e\xa7\xe6\xe8\xc4\xbd\ +\x18\xe1\xdf\xfb\x7c\x5e\x46\x54\x95\x05\xde\x42\x36\x17\x32\x21\ +\x6e\xe1\x94\x46\xdc\x72\xc9\xc8\x80\xe0\xa1\x1b\xc1\x50\x19\x0f\ +\xd8\x27\x23\x1a\x8f\xbe\x64\xc6\xfc\x0c\xb2\x32\x60\x9b\x0b\x1b\ +\x22\xa9\x06\x34\x7d\x1b\x62\x95\x62\xab\x2b\xb9\x32\x98\x5c\x11\ +\xe4\xbb\xb8\x49\x69\x81\x51\xd1\x5d\x2b\xd4\x83\xf0\xc3\xb3\xc9\ +\x0e\x64\x28\x0c\x36\x8a\x85\x74\x90\x32\x37\x83\x14\xd4\x5e\xa4\ +\xbf\xe2\x8b\xbf\x8a\x79\xf1\x48\x2d\xf9\x71\x14\xd1\x9c\x9b\x55\ +\x44\xff\xdb\x2b\x15\xc5\x93\xe7\x01\x45\x16\x39\xc7\xd5\x11\xb1\ +\x67\x33\xaa\x03\xb1\x6c\x20\x6d\x95\xc6\x2d\xcb\x31\x56\x32\x5d\ +\xc1\x9f\x86\x44\xcc\xb8\xc5\x89\x38\xf4\xce\x94\xe8\xa5\xc7\x67\ +\x7f\x00\x94\xfa\xad\xb9\x9c\x6f\x95\x34\xc5\x96\x7d\x81\x2f\x7e\ +\x35\xf4\x62\x22\x6e\xc1\xf1\xf6\x17\x26\xef\x69\xe1\x77\x03\x5b\ +\x43\x0c\xa7\x3a\x02\x6c\x46\xd1\xb2\xa2\x82\xa5\xa3\x13\x5a\x57\ +\x2c\x03\x9d\xad\x9b\xb2\xb6\xb4\x2b\x34\x9d\x5d\x29\x7b\x29\x35\ +\x9a\xb2\x29\xa4\x46\x1b\x79\xbc\xb2\xfd\xce\xac\xf4\x61\xfc\xbe\ +\x00\x18\x7d\x91\x5b\xe9\x3e\x02\x4c\xed\xfa\x09\xf8\xdd\x8d\x30\ +\xa6\x33\xb9\xe2\x9b\xc3\x3d\xf3\x63\xf7\xec\x4c\x39\x4b\x65\x86\ +\xa4\xd9\xef\x9e\xc5\x4c\x76\xb0\xe3\x27\x86\x93\x68\x7b\x9a\x04\ +\xdc\xc6\xde\xc1\xc5\xb6\x05\x01\x57\x12\x9e\x3f\x54\xe1\xb5\xec\ +\xa4\xfa\xf3\x4a\xd8\x34\x7d\x03\xb7\x93\xa0\x6f\xa3\x3b\x96\x8a\ +\xa9\x0e\x67\xe3\x48\x1c\x73\x12\x98\x25\x51\x46\xcc\xdd\x16\x61\ +\xab\x53\xd3\x92\xb6\x8b\x27\xb8\xa7\x22\x04\x84\xd2\x3a\xe5\x83\ +\x15\x5f\x6e\x41\x8d\xc4\x0a\xe9\x75\xf5\xdb\xdd\x12\x40\xa5\x51\ +\x36\xfb\x82\x1b\x18\xe2\x95\x23\x61\xbf\x6f\x8b\x5c\x0b\x1c\x7c\ +\x6b\x92\xed\x93\xcc\x40\x2e\x75\x3b\x5b\x59\x3c\xa3\x4d\xca\x09\ +\x32\xca\x5f\x10\x64\x08\x1a\xda\x66\xa2\xda\x6a\x72\x0d\x23\xc8\ +\x8b\xea\x06\x33\x66\x5e\x77\x03\xe0\xef\xf8\xda\xcf\x43\xaf\x4d\ +\xdf\x30\x18\xe3\xea\xa7\xc0\x02\xc3\xa2\x89\xea\x0f\xb5\x44\x05\ +\x31\xbf\xfd\x3b\x33\x15\x4b\xbe\x00\x97\x5d\x41\xe6\x71\xdf\x5d\ +\xda\xf4\x2d\xc6\x17\x8f\x80\x4d\x47\xb0\x7b\x2c\xd9\x29\x8d\xce\ +\x78\xc7\x7d\xcb\x20\x33\x21\xa5\x53\xfe\x28\x3e\x06\x7e\xad\x07\ +\x17\x76\x4a\xba\x37\x70\xbf\xf2\xb1\xa6\x97\x60\x04\x59\xbe\x5b\ +\xcc\x78\x48\xf3\xdf\xd6\xf1\x73\xe3\xe1\x6f\xe3\x7c\x9f\xd9\x7e\ +\xfb\x15\x61\x3c\x83\x01\x03\xf4\x97\xcf\x4b\x7c\x51\x25\x95\x61\ +\xd2\x2c\x00\xc6\x4c\xea\x15\x87\x27\x28\x76\x6d\x7f\xca\xe5\x5c\ +\x4c\x36\x07\x88\x4b\xf8\xe1\x19\x40\xea\x40\x85\xad\x05\xe6\xc7\ +\xf5\x85\x5a\x87\xcf\xd0\xc8\x8d\xa7\x91\xed\x7a\xf8\xd7\x45\x5b\ +\x9b\xda\x9b\x36\xea\xed\xfa\x91\x0d\x1a\x64\x9d\x83\xc2\x86\x1f\ +\x77\xbd\x51\xaa\x6e\x17\xf3\x26\x28\xe1\x39\xb0\x23\x87\x2d\xb7\ +\x60\x95\xbc\x09\x76\x00\xb9\x81\x1e\x58\xd1\x36\xfa\x2c\xf7\x0b\ +\xad\xd3\x60\x2a\x84\x57\xa7\xec\x0d\xed\xc5\x49\x86\x1b\x81\xa5\ +\xdb\xb8\x24\x8f\xef\x2e\x73\xa7\xd0\x9d\x8f\x53\x31\x99\xe1\x97\ +\xc3\xbd\x17\x31\x99\x41\x3c\x23\x25\x7c\x8a\xba\xf1\xe8\xfb\x63\ +\xfc\x2c\x47\x01\x5b\xd5\xe7\x3a\x63\x96\x57\x32\xd2\x76\xd6\xa6\ +\x42\x02\xd6\x0b\x1b\x3e\x21\xb5\x41\x66\x01\xd3\xc0\x0b\xb3\x75\ +\x75\x87\xa4\x58\xc5\x88\x59\xb4\x56\xf6\xef\xb0\xad\x71\x5c\xc5\ +\x05\x11\x2d\x65\x25\x40\xca\x5c\xf3\x3e\xb7\x90\x05\x5f\x19\x93\ +\x66\x6c\x32\x4e\xaf\x20\x5f\x2a\x84\x1c\x4e\x6f\xac\xec\x37\xc6\ +\x00\x00\xb0\x66\x73\xb1\x91\xa1\x0a\xb0\x2e\x02\x7e\x43\x3d\x68\ +\x94\x83\xd8\x5c\x6d\x8f\xc0\x2a\xe7\x6c\x0d\xcc\x35\xc9\xb0\xdd\ +\xdc\x19\xc0\x62\x12\x03\xa8\xcd\x0c\xa3\xeb\x7f\x02\xa6\x4a\xa3\ +\x0a\x91\x27\x16\x77\xea\x59\xfa\x04\xee\xb8\x31\x08\xac\xc7\x58\ +\x6b\x7a\x81\x09\xdc\x71\xfa\x35\x7c\x8b\x13\x6c\x09\x79\x31\x7c\ +\x18\x5c\x4d\xb3\x13\xf7\x79\x54\xee\x81\x36\x95\x3c\x68\x69\x1e\ +\x08\x0b\x1a\xc6\xc7\xd2\x89\x7c\xbe\xeb\x94\x05\x02\xa7\x73\xf3\ +\xe9\x49\x61\x19\xaa\xe8\x7f\x67\x78\x2c\x70\x68\xd8\x31\x4e\x28\ +\x11\x24\x44\x27\xea\x91\x29\xc7\xa1\xb2\x2f\xe2\xae\xd3\x6c\x8f\ +\x21\x6b\x1f\x53\x4b\x1b\x61\x0e\xea\x37\x55\xbb\x57\x4b\xff\x16\ +\xf7\x68\x0f\x0a\x0f\x11\xe8\x28\x6b\x07\xcf\x47\x37\x6d\x96\x1b\ +\xd4\x14\x54\x76\xfc\x4c\x41\xa0\xca\x43\x31\xe4\x0e\x83\xfe\xc3\ +\xe5\x44\x39\x03\x30\x1a\x9b\x5d\xe6\x9a\x9b\xcb\xe7\xc3\x27\xfa\ +\xf8\x03\x74\x15\xf4\x01\x84\x60\x1f\x77\x6d\x8b\x71\x75\x66\x9e\ +\x0c\xb6\x30\x3f\x74\xb8\x67\xcd\xaf\x28\xc2\xe9\x6a\x94\x7f\x68\ +\x39\x83\x8e\xc9\x49\x1d\x46\x5c\x05\x32\x46\x07\xf0\x25\x95\x98\ +\x64\xeb\x5a\xc5\x8f\x57\x49\x5a\x72\x82\x97\x27\xc5\xeb\x2c\x85\ +\xd7\x92\xed\x94\x2d\x89\xd4\x63\x43\x93\xe3\x5f\xe5\xc4\x23\xe4\ +\xfc\xe8\xa0\x44\x85\x02\x93\x80\x25\x50\x1a\x44\x25\x13\x4f\x39\ +\xd4\x55\xf3\xda\xd1\xed\x0c\x21\x50\x41\xab\x90\x97\x71\x0b\x05\ +\x60\xa5\x0c\x7b\x93\x2f\xe0\x1e\x3c\xc4\x6c\x5a\x8b\x2b\x00\x82\ +\x22\xe8\xa1\xda\x2f\xf9\x8b\x0e\xb2\xf0\xbc\xbe\x15\xbf\x45\x3f\ +\xf7\xd7\x96\xf8\xc8\x4c\x7e\x2a\x01\x93\xc3\x78\x6c\x49\x86\x15\ +\x55\x94\x6e\x60\x70\xdc\x2c\xfa\x46\xd6\xf6\x41\x9a\x4e\x18\x05\ +\xba\xf6\x18\x76\x2c\x65\x0b\x0d\x3e\xe4\x3c\xaa\x49\x50\xf9\x92\ +\xcb\x9b\x25\xea\x2f\x42\x76\x7d\x8c\x8e\x9c\x7e\x36\xa0\xc4\xcd\ +\x8a\x10\x06\xba\x40\xaf\x48\x46\x4d\x47\x73\x6a\xd2\x41\x9c\x72\ +\xba\xa5\xc0\xa9\xa8\x1a\x22\x74\x28\x46\x31\x93\x4f\xd4\xcc\x27\ +\x5a\xef\xd9\x59\xcd\x8f\xc7\xbe\xa5\x5f\xe2\xc8\x67\x45\xb8\xf8\ +\xb0\x36\x93\xe0\xa3\x5d\x64\x39\xdf\xd0\x4a\xb3\xcd\xd5\x69\x8f\ +\xf1\xee\x61\x1b\xf0\xed\x2c\x77\x73\xb9\xca\xd3\x77\xc4\x5a\x95\ +\x49\x96\x25\x98\x6e\x60\x5c\x2a\x13\x38\x3f\xad\x2c\x9c\x04\x6d\ +\xb2\x45\x39\x53\x2f\x49\x13\x45\xc0\x8c\xe0\x24\xc5\x2d\x49\x4e\ +\xdd\x02\x5c\xdf\xe3\xe1\xa8\x7d\xca\xf4\x1c\xf2\xec\x82\xb5\x4f\ +\xb3\xa1\xd8\x17\xf4\x95\xaa\xbd\x9a\x91\xe1\x20\xca\x85\xb7\x57\ +\x45\x32\xe8\xbf\xe3\x44\xf8\xae\x85\xc1\x24\xfc\x51\x53\x47\x54\ +\x83\x63\xed\xe3\xbc\x3c\xab\x99\x5f\x16\xcf\x49\xa2\xa7\xcd\x91\ +\xef\x47\xa2\x24\x21\xf1\x99\x43\xa3\x68\x98\xfb\xbe\xc2\x2c\xaf\ +\x24\xf7\xd5\x40\x61\x3f\x1c\xe0\x22\x0c\x9e\xfd\x7c\x55\x36\x4f\ +\x33\x31\x30\x66\x25\xb0\xc1\x88\x91\x99\x1e\x3e\xb2\x42\xa6\x2c\ +\x31\x85\x34\x87\x78\x2b\x05\xcc\x31\x3b\xa2\x6e\x2a\x01\x7c\x39\ +\xc5\xba\x4f\xf7\x10\x98\xa1\xe5\xc4\xe7\x2e\x75\xf2\xbf\x7b\x65\ +\x1a\x02\xa2\xae\x70\xa0\x37\x0c\xe9\x70\x99\x4f\x49\xc1\x17\x96\ +\x99\x34\xcb\x7c\x34\xc9\x78\x9e\x0e\x0f\xcc\x19\x2c\x51\xc8\x71\ +\xbd\x82\x99\x67\x76\x9b\x8d\xda\xae\x1f\x4b\x09\x40\x07\x9b\x88\ +\xf0\x37\x32\x31\x11\x8e\x2b\xd2\x24\x00\xea\x91\x19\xe6\x78\xb7\ +\x91\xa2\x0b\x32\x32\xa6\xe8\xf7\xa8\xf3\x9d\xac\x6b\xe4\x4d\xbf\ +\xa4\x87\x09\x79\x6c\x95\xfe\x4d\x3a\xaf\xff\x92\xb3\x9e\x46\x47\ +\x16\xc1\x6d\x3a\x37\x86\xb5\x15\x3e\x72\x15\xc3\xde\x71\x90\xbd\ +\xc0\xbd\xb0\x69\xdc\x55\x71\x2a\xa6\xe7\x28\x60\x71\x90\x75\xd2\ +\x4d\xd0\x59\xc1\x28\x29\x71\xc9\xf3\x0a\x37\x0e\xc4\x9b\x34\xf8\ +\x39\x8c\x4f\x94\x25\x0c\x42\x2f\x32\x11\x3f\xec\x37\x75\xbe\xc6\ +\x62\x60\x9e\x3c\xe2\xf8\xde\x73\x5d\x24\xa0\x8a\xe1\x46\xd7\xb1\ +\x90\x2c\x33\xcc\x58\xf2\x31\x48\x03\x0f\x51\x01\x86\x84\x97\xb3\ +\xf3\x79\xf8\x1d\xc9\x14\x9f\x2c\x3b\x76\xc9\x52\x91\x48\xee\x12\ +\x3c\xbf\xa8\xe2\x90\xb3\xc8\x06\x00\x5a\xe8\x15\xe1\xd8\x6e\x03\ +\x7f\xb4\xc2\xcb\x07\x27\xf1\x27\x52\x6c\x6c\x46\xf5\xc4\xd3\x1c\ +\x31\x5d\x11\x9e\x9c\x95\x72\xde\x00\x49\xd0\x0f\xfa\x06\x33\x3b\ +\x97\x70\x1e\x43\x79\xd4\xb0\xa6\xa2\x0b\x0e\x2e\x1c\x30\x61\x6e\ +\xa3\x14\x26\xca\x4f\xf7\xb3\xcc\x4a\xb9\xa0\x4d\x15\x13\x86\x70\ +\x75\x3b\x69\x1e\x42\x47\x3f\xfd\x58\x32\xad\x80\x11\x7d\x83\x7b\ +\xad\xe5\x12\x94\x0b\x0c\x07\x8c\x7b\x7a\x2d\xe9\x0b\x10\x21\x3d\ +\x76\x69\x24\x16\xca\xe6\x19\x12\x05\x42\x0c\x9e\x8c\x49\x17\x16\ +\x97\xbb\xb5\xa0\x4f\x90\x85\x50\x6c\x70\x35\x54\xa7\x59\xab\x92\ +\xba\x8e\x56\x10\x0c\xb9\x7a\xbe\xd3\x3c\x6d\x22\x96\x76\x15\x3f\ +\x4d\x3b\x8e\x0a\x68\x48\x32\xe8\x22\x60\xc8\xca\xeb\x63\xca\x80\ +\x89\x87\xc4\xc1\x95\x25\x45\x6d\xbd\xf9\x12\xd5\x85\xe8\x90\x27\ +\xac\x2f\xdb\x3d\x3d\xfd\xb6\x99\x77\x87\xe1\x33\x3f\x3c\x68\x95\ +\x68\xaa\x88\x8f\x53\xe1\xe0\x9d\x15\x06\xa7\x54\xb3\x03\xe4\x12\ +\xd5\xc7\xca\x9c\x3a\x3d\x39\xc9\x7c\x98\xc4\xf2\x1c\x20\x02\x63\ +\x70\xc7\x7a\x63\x9b\x59\xa2\xbf\xfa\x46\xde\xcd\x48\x37\x4b\x82\ +\xc9\xe7\x92\x8d\x40\x78\x05\xbe\x96\xa0\x22\xa8\x29\x2a\xbd\xf9\ +\x71\x73\x02\xe4\x07\xd8\xaa\x09\x07\xde\xab\x51\xb8\x81\x2a\x84\ +\x98\x24\xcc\xd3\x3a\x90\xaf\xa8\x38\x94\x70\xab\xa8\x33\xa2\x74\ +\x72\x25\x83\x97\xa8\x58\xbc\x00\x8e\xd9\xd7\x92\xd7\x74\x80\x5a\ +\x6a\xa6\xb9\x7a\x45\xf7\xc3\x18\xb5\x26\x96\x24\x04\x3f\x05\xb8\ +\xa0\x9a\x0f\x1c\x46\x3d\xeb\x12\x5e\x49\x38\xc0\x6c\x74\xe0\x52\ +\x39\xe3\xa3\x86\xef\xa3\x03\xe9\x34\x85\xd2\xb5\x66\x66\xd4\x07\ +\xa9\x32\x62\x9c\xf6\x96\x86\x3c\x23\x6e\xc8\x33\xde\xd2\x90\xab\ +\xe3\x86\x5c\x9d\x70\xc8\x6b\x78\x7a\xb0\xbe\x95\xba\x63\x52\x78\ +\x4a\x3b\x91\xc5\x31\x2f\xac\x1f\xf9\xbb\x41\x4e\x01\x0e\x44\x15\ +\x5d\x5d\x5d\xa3\x6c\x99\x39\x08\xf5\x37\x29\x71\x15\xb9\x05\x6a\ +\x13\x11\xcc\x79\x43\xf3\x8c\x29\xc3\xfc\xec\xbe\x11\x2b\x33\xca\ +\x1c\xac\x76\xce\x98\x70\xcb\xc6\xb8\x49\xf3\xe1\x69\x84\x11\x78\ +\x2a\x90\xcd\x29\xfd\x4c\xd2\x60\xd2\x77\xda\x32\xec\x42\xd1\xf5\ +\xa8\x10\x2b\xb9\x6e\x77\x42\x24\x3c\x9b\x10\x09\x4c\x33\x2d\x4a\ +\x2f\x04\x45\x0a\xcb\x9c\xd6\x9f\x76\xa4\x9b\xcf\xe0\xcb\x37\xf1\ +\x09\x61\x40\xe7\x71\xb1\xa3\xfc\x34\xa5\x51\xdf\xb1\xf1\x09\x8b\ +\xb3\x5a\xe1\xd2\xa6\xf9\x2d\x4b\x41\x26\x31\x3d\x9b\x39\x35\xc3\ +\xe8\xf3\xe2\x50\x28\x11\x38\x38\x09\x02\x1d\xd7\xe9\x72\xc0\x00\ +\xcd\x1a\x69\x60\x43\xa3\x80\xcb\xb4\x35\x6c\x3b\x0e\x4b\x8d\xa3\ +\x19\xe7\xc6\xd2\x38\xac\x26\x44\x6a\x9b\x96\x7d\xaa\x1f\xa5\x46\ +\x96\xc3\x99\xf8\x1c\x05\xc7\x39\x23\x32\x4e\xd2\xc3\x13\x1c\x67\ +\x75\x64\x9c\xa4\x27\x66\x53\x20\xf3\x9f\xe5\x22\x66\x35\xf7\x83\ +\x5e\x39\x40\x99\xdf\x2b\xa8\x28\x0a\xa5\x8e\x32\x58\x91\xa2\x6d\ +\x69\xe6\xc1\x71\x7d\x98\xda\x5f\x30\x8b\x45\xc4\x32\xea\xa9\x98\ +\xf8\x9f\x58\x2e\xf5\xf3\x04\x69\x9b\x4f\xe5\x11\x55\xa4\x40\x7f\ +\x67\xd3\x06\x63\x01\x33\xd5\xb4\x74\xdb\x41\x95\xb3\x12\xce\xb7\ +\x18\xac\x30\xa6\x1a\x50\x44\x64\x09\xcb\xbf\x8a\xb8\x92\x94\x77\ +\xb7\x4f\x28\x30\xd3\x10\xb6\xc7\x56\x72\x00\xaa\x68\x92\xee\x7a\ +\x4b\x38\xea\xa2\x49\xdc\x8a\x39\xb1\xb7\x3a\x8a\x34\x87\x20\x56\ +\x60\x24\x9c\x67\xc5\x24\xf3\x0c\xab\xa8\x13\x1e\x7d\x93\x0a\x5c\ +\xe5\x50\x0d\xcc\x89\xa1\x25\x83\x1e\xd5\x84\x13\x2f\xd4\x13\xfa\ +\x38\x23\xd6\x35\x66\x9d\x43\xb4\x33\xdd\x94\x47\x38\x98\xc6\x9e\ +\x60\x8a\xb3\xc8\x36\xc4\x94\xa9\x85\x9d\x84\x23\x2d\xaa\x34\x54\ +\x9e\xfe\x38\x3e\x7d\xd1\xa4\xbe\xb0\x92\x67\x67\xf4\xc0\x45\x22\ +\x3a\xec\x27\xbb\x80\xce\xbb\x64\x30\xc3\xe4\x56\x8f\xe2\xd3\xfa\ +\x84\x33\xfb\x77\x0d\x50\xa7\x64\xc1\x04\x93\xb0\x48\xf1\x9b\x74\ +\xa6\x39\x68\x17\x30\x9a\x37\xf1\x2c\x45\x89\xa5\xb5\xdf\xca\x99\ +\xa0\xe2\x4f\x8b\x4e\xce\x8d\x0c\x3c\x02\xcc\x9c\x61\x52\x98\x15\ +\xdc\x9f\x4f\xf4\x0a\xa4\xb5\x68\x54\x9a\xe4\x45\x7e\xec\xf4\x65\ +\x9e\x24\x00\x19\xb1\xec\xe1\x91\x12\xba\x61\x4b\xd6\x3e\x1a\xb0\ +\x04\xd5\x5c\x66\xfe\x26\x5d\xfb\xd2\x08\x88\x5d\x95\x4a\xa4\x94\ +\x17\x40\x80\x30\x5d\x56\x66\x44\x26\x33\x40\xb5\xa6\x9b\x4b\x95\ +\x1e\xdd\xb0\x9a\x2d\xa6\x28\x59\x85\x62\x9e\xd2\x11\xa6\x70\x26\ +\x26\x9d\xe8\xa2\x06\x79\xbc\xdd\xc6\xc8\xa2\x19\x70\xe1\x1c\xa5\ +\x66\xdb\x47\x31\xea\x24\x9d\x68\x61\xcc\x44\x62\x43\xf9\x56\x2b\ +\x2f\x6d\x60\x12\xb6\x7b\x89\x45\x40\x74\x9a\x5e\x2d\x94\xec\xeb\ +\x61\x64\x39\xe1\x3b\xc4\x84\x81\x68\x70\x62\x36\x10\xc9\xf2\x46\ +\xf1\xba\x18\x65\x0f\x2b\x1a\x11\xdf\x16\xd1\xcc\xb7\x61\x13\xbb\ +\x10\x50\x5b\x53\xd6\xe7\xcb\xec\x6f\xdf\x58\x6c\x6c\xb2\xc0\xd6\ +\xc7\x12\x23\x77\xdc\xf0\x45\xdd\x59\x02\x70\x4e\x07\xae\x44\xdd\ +\x28\xfb\x91\x1b\xe9\xbc\xd6\x0c\xc8\xe8\xd0\xc9\x91\x60\xcc\xd1\ +\xc0\x28\x7a\x56\xc6\xa6\x3f\x1a\x79\x6b\xcc\x4a\x6a\x48\xb4\x05\ +\x8a\x25\x94\xd6\x53\xd7\xef\x96\xa6\xa1\xf2\xe8\x83\x9c\x11\x1c\ +\x24\xb9\xbe\xa3\x0f\xb2\x3a\x38\x48\x52\x65\x67\x65\xc4\x73\xe2\ +\xc6\x7a\x66\xbb\x62\x0c\xeb\x59\xcc\x7b\x6d\x3b\x60\xea\x52\x15\ +\x5d\x06\x1c\x12\xcc\x3b\x84\x06\x45\x5c\x9e\x7d\x3e\x90\x41\xc7\ +\xf2\xf2\x2d\xee\xf5\x61\xb9\xdf\x3e\xf7\x33\x47\xb4\x64\x09\xd9\ +\xa2\x75\xfb\xa8\x3a\x6b\x80\xed\x20\xcc\x4f\x30\x25\x68\x7a\x1c\ +\x83\xd3\xf2\x93\x0b\xc2\xd9\x80\x21\x35\x57\x94\xb2\x5b\xf8\x5c\ +\x83\xd3\x22\x63\x7a\x76\x2a\x25\xbc\xf8\xa1\x43\x2e\xb3\x0b\x95\ +\xfa\x30\x60\x6b\x79\x2b\xe9\x09\x23\xcb\x8e\x78\xc2\xe9\xcf\xc1\ +\x84\x12\x87\xa3\x4d\x80\x11\x0d\x6b\xac\xe3\x29\x88\x81\x34\x93\ +\x00\xa2\x67\xaf\xb7\x1c\xcb\x33\xf3\x3c\x90\x21\xa6\x4a\xac\x3f\ +\xf5\xe2\xb8\x2c\xd0\xa7\xe2\xea\x53\xcf\x3b\x43\xcc\xeb\x4f\x6f\ +\xc6\x0e\x58\x79\x1e\x49\xdc\xc4\x55\x7b\x24\x98\x5b\x15\x55\x6b\ +\x67\xac\xcf\xbb\x69\x98\x88\x26\x44\x4d\x87\xc0\xe7\xa0\xfa\xcc\ +\xdd\x44\xb2\xca\x05\xb7\x55\x91\x0e\x0d\x56\x19\x7e\xd1\xcc\xf0\ +\xf2\x89\x44\xa4\xa3\xf2\x99\x94\x6b\x46\x25\xea\x38\x44\xe4\x7a\ +\xe8\x86\xa8\x96\x03\x81\x19\x4b\x46\xde\x9c\xb0\x3c\xee\x00\x66\ +\xd6\x61\xb2\xf9\xab\x36\x90\x0d\x7c\x5e\xea\xea\x7e\x43\x9a\xb5\ +\xe1\x54\x27\x83\xbb\xd7\xf5\xba\x35\x9b\x87\x94\xd8\x6e\xa6\xa5\ +\xb3\x55\x04\x9b\x84\x83\x4d\x19\x3a\xc1\x54\xd0\x35\xb0\x66\x53\ +\x8b\x55\x9e\x85\xcf\xd2\x78\xb5\xcd\xc3\x39\x52\x1d\x24\xa2\x90\ +\x6d\x04\x0e\x0f\x75\xe7\x75\x13\x56\xca\x25\xcc\xfc\x71\x1c\x43\ +\x84\x8b\x98\x3b\x3e\x2b\x57\x12\x96\xb2\xd1\xb3\x21\xf4\x08\x9a\ +\xa1\x94\xe3\x18\x51\xc6\x91\x74\x10\xe2\x78\xaa\x24\x7f\x18\xa1\ +\xc5\x92\x7a\xb9\x23\x57\x6c\xb0\x3c\x0b\x2d\xf7\x8c\xe9\x00\x35\ +\x80\x54\xca\x4d\x60\xf5\x16\x4d\x59\x72\x69\xae\x16\x68\x22\x60\ +\x57\x51\xd9\x4d\x9d\x8b\xd4\x88\xf3\xf5\x2f\xd7\x14\x99\xbb\xf1\ +\x2c\xca\x07\xe0\x2b\x54\x7a\x8d\xd2\x08\x68\xc0\x74\x48\x30\xef\ +\xcd\x6c\x96\x59\x9d\x18\x06\x28\x81\x8a\x68\x7a\x59\x7e\x68\xe1\ +\xb1\xcc\x88\xc1\x87\x48\x7a\x90\x9c\xb7\x90\xa2\xe3\xf0\xd8\x8e\ +\x20\x11\x51\x9b\x2e\x2a\x9a\x59\xcc\x31\x3e\x85\x67\xc1\x06\x3b\ +\x6b\xc5\x64\xf0\x18\xf0\x05\x68\x14\x65\x3f\xe9\xf9\x1c\x88\x59\ +\x40\x50\x97\xa2\x81\x01\x46\xa7\x49\x00\x9b\xa5\x01\x46\x15\xad\ +\xb4\xe5\x64\x92\xea\xc3\x7b\x11\x61\xcc\xc9\x34\xcc\x29\x94\x85\ +\xcc\x3a\xa5\x6d\xc5\x04\xb1\xa8\xa1\x14\x67\x4c\xe7\x31\x06\x87\ +\x9d\x86\x33\xf4\x6a\x2d\x1d\xca\x65\x1b\x73\x46\x86\x7a\x8c\xac\ +\x6c\x27\x90\xd8\x30\xe5\x3f\xe3\x54\x96\x50\xb7\x04\x60\x71\x7c\ +\xc4\x72\x30\x6c\x96\x98\x21\x55\xcd\xc5\x7d\x17\xce\xbf\xb0\xdf\ +\xb8\x24\x7d\x68\xc1\xc3\xe6\xa3\x61\x29\xa2\x80\x1e\x1e\x8b\x9c\ +\x44\x6b\x65\xbd\x40\xb7\x49\x78\x14\x06\xbd\x6c\x22\xca\xe0\xa3\ +\x37\x2d\x3c\x03\x3b\x76\x2c\xdf\x9e\xb1\x82\x5e\xee\x4b\x63\x5b\ +\xdb\xa9\xf9\x00\x0d\x4c\x1e\x76\x88\x4a\x00\x16\x99\x6e\x7b\x38\ +\x69\x08\x06\xcb\xd2\xe8\x8a\x78\xf0\x19\x3d\x53\x64\x8f\xf0\x39\ +\x83\x3d\x37\x2c\x1d\xf1\x39\xcf\xb2\x32\x26\xc7\x3c\x4d\xc6\x84\ +\x83\x79\x21\x86\x8b\x32\xf0\x6f\x06\x08\x49\xd5\x46\x33\x16\x8d\ +\xb1\xb8\x6e\x63\xad\x35\x6e\x7a\x56\x27\x73\xf7\xd1\xa3\x5d\x32\ +\x47\x2d\x9a\xe7\x39\x02\x2c\x81\x77\xf2\x48\xb0\x65\xdd\x1a\xbd\ +\xc5\x6f\x18\x3b\xac\x8a\x33\x47\xcf\x8a\x9e\x35\x62\x70\x1a\x2c\ +\x71\xd5\xcc\x96\x1c\x5e\x9d\x94\x52\xc8\x99\x2a\xfc\xca\xd3\x3f\ +\x85\x63\x01\xa6\xc1\x42\xa0\xc2\x4b\xc7\x82\x7b\xc2\x27\x43\x37\ +\x84\x8e\x1b\x9c\x59\x9c\x1d\x3d\xd3\x69\xd2\x51\xe5\x26\x4e\xe8\ +\x9b\xa8\x65\xa3\xa8\x53\xc4\x42\x1f\xc0\x70\xc7\xc0\xb2\xa0\xc1\ +\x0e\x3c\x50\xea\x51\xc9\x19\x0c\xd8\x40\x56\x42\xd3\x6d\x6c\x85\ +\xbf\x7b\xe3\xb6\x6f\x19\xae\x93\x9f\x60\xaf\x94\xb1\x4c\xce\x14\ +\x49\x55\x09\x19\x49\x7e\x7a\x99\x99\x24\x18\x09\x52\x28\xd2\xa3\ +\xa1\x06\xff\x2c\x13\x51\xab\x14\x46\x4b\x7f\x18\x2d\x83\x3a\x63\ +\x46\xc4\xa4\x2d\x0c\x56\x39\xb8\x38\xb0\xb6\x3c\x94\x77\xc0\xad\ +\x91\x89\x17\x93\xab\x3f\x5f\x0b\x70\x1b\x75\x66\x05\xbc\xe3\x5a\ +\x4a\xb9\x2d\xf3\x37\x82\xfc\xc7\xe4\x39\x5f\x95\x12\xcd\xe3\x73\ +\x53\x14\x0f\x62\x96\x4b\xd8\x42\x89\xb7\x4a\x94\x98\x7f\xf7\xc6\ +\x1c\x77\xd3\xfb\x1a\x0b\xd6\xd4\x78\x4d\xa0\x63\xc0\x43\x62\xce\ +\xda\xc7\x7d\xf3\x60\xc3\x9c\x92\x95\x66\x4c\x52\x8d\x6d\xb1\x76\ +\xda\x55\xa0\xc3\x27\x22\xf9\x92\xb2\x5f\x46\x18\xa3\xb0\x5c\x8a\ +\x32\x7d\xc9\x61\xee\x10\x44\x6b\xd8\x37\x1e\xab\x4b\xc3\xf7\x87\ +\x39\x4a\x95\x8e\x15\x3c\x7d\x4c\x43\x12\xb5\x9d\xc3\xf8\xbd\xca\ +\x6c\xec\x44\x0e\xa3\x4e\x75\x38\xa4\x12\xca\x5a\x0c\x91\x35\x93\ +\x88\x5b\x64\xd0\xa6\x6b\x0a\x8d\xdf\x8d\xdb\x28\xa9\xfe\xcb\x5d\ +\x19\xb5\x8a\x25\x38\xc2\x9e\xeb\xfb\xe2\x94\x76\x1a\xae\x3c\xca\ +\x22\x1b\x32\xc0\x18\x40\xf3\xf2\xa8\xc1\x6c\x38\x6e\xd7\x74\x0d\ +\x8a\x03\x93\x2a\x09\x41\x0a\x0f\x2a\xa7\x65\x19\x43\x8a\xaf\x78\ +\x0f\xe7\xa6\x08\x96\x3b\x4e\x44\x9f\xa6\xbc\x46\xc7\x67\xc7\xa1\ +\x07\x75\x48\x8d\x64\x79\x2e\x09\xd0\xac\x56\xd1\xce\xa4\x58\xc2\ +\xe5\xfe\x79\x4a\x19\x45\x7f\x0a\xe6\xbf\x46\x43\x67\x6c\x41\xba\ +\x6f\x55\xc8\x9d\x8a\x46\x76\x05\xa9\x14\xf4\x1b\x52\x8f\xd3\x1b\ +\x58\xf4\xdc\x29\xc7\x2a\xf1\xd3\xc1\xfa\xa8\x50\xca\x3b\x1f\x35\ +\xb7\xa2\x66\x19\xa8\xf7\x04\x5d\x32\xe7\x36\xfd\x74\x31\x8b\x9c\ +\xab\x44\x12\xdd\x7f\x15\x87\x6e\x15\xad\x43\x8f\x2f\x62\x7d\xd8\ +\x2a\xc5\x69\xf7\xe8\x65\xf4\xed\xfd\xa0\x35\xd8\x8e\x5f\xb2\x40\ +\xed\xe0\x89\x52\xf4\x4b\xfa\xc3\x04\xec\xde\x98\x45\xa9\x12\xe5\ +\xd4\xae\x01\x23\xeb\x66\xca\x22\xa9\x2b\x01\x83\x69\x7c\xdb\x18\ +\x4c\x58\xf5\xb5\x88\xae\x3a\x84\xf9\x77\xd4\x7b\x7f\x58\x73\x1f\ +\x74\x73\x8d\x8d\xb1\xaa\x60\xc8\x3a\x7c\x7a\x44\x81\x1e\xfb\x6b\ +\xa5\x9c\x61\x21\x73\x44\x8a\x86\xda\xb4\x5c\xdc\xa6\xa9\x32\x23\ +\xa5\x6f\x03\x47\xe7\xd9\x55\xf0\x13\x77\xe2\x68\x0a\x41\x27\xdb\ +\x9f\xd0\x1b\x32\xb3\x38\xb1\x56\xa0\x98\x9f\x68\xba\x12\x2a\x3c\ +\xd1\xa4\x5f\x81\xb0\xec\xaa\x70\x0e\x9a\x29\x35\x7c\xb6\x6a\x65\ +\xc2\xb3\xc4\x81\xb0\x8b\x66\x24\x0e\x07\x42\xda\xb3\x25\x39\x2e\ +\xa8\xb9\x99\x4c\x19\x56\x35\x4c\xb3\x1c\x4b\xc1\x52\xac\x82\x4b\ +\x53\x82\x46\x4c\x46\x98\xb6\x93\xb5\x33\x26\x25\x7a\xa7\x5c\x48\ +\xd3\xf6\x18\x39\xc3\xca\x0e\x27\x16\x83\x8d\x89\x18\x4a\xd8\xd0\ +\x3a\x72\x35\x55\x65\x09\x74\xa3\xf8\x39\x8c\xdc\x3a\xcf\xbf\x15\ +\x6e\x0f\x35\x03\x1d\x8f\xfe\x25\x89\x19\x5a\xd9\x65\x17\xb6\xbc\ +\x99\x43\x26\xe0\x08\x09\xa8\xb3\x91\x1d\x8a\xd3\x55\xc7\x5d\xe7\ +\xa4\x12\x27\xc0\x6e\xe3\x7c\xdf\xca\x95\xf3\x34\x79\x35\x63\x31\ +\x05\x26\xa7\xbd\x45\xd5\x3e\x9f\xe6\x6e\xc0\x9f\x7c\x57\x70\x95\ +\x5e\x0f\x87\xe1\x03\x26\x4d\xdb\x78\x65\xca\x2d\x0b\x1e\x5c\xa1\ +\x92\xe5\x35\x23\x31\x58\x3f\x98\x93\x7f\xf1\xa4\xed\xb2\x56\x85\ +\xb6\x34\x32\x67\x22\x96\x35\xb8\x70\x89\x28\xd4\x66\x6f\x28\x86\ +\x10\x1c\x9d\xb5\x6e\x13\xdb\xae\x92\x8e\xfb\xf1\x3b\x96\x23\xc0\ +\xd2\x3d\x2d\xc9\x88\x14\xd3\x28\xc7\x6d\x07\x1a\x03\x54\xe3\xc3\ +\xe2\x01\xc6\xa9\x4d\xde\x30\x10\x9d\x3d\x7c\xcf\x26\xa4\xe8\xf5\ +\x2c\x27\x6b\x79\x8c\xa3\x04\x32\x39\x65\x79\x63\xc6\xf5\xa8\x67\ +\xc9\x98\x46\xc8\xae\x6a\xef\xdb\xa8\x44\xc6\xf1\x5e\x5d\x81\x63\ +\xce\xb9\x4a\xbd\x23\xa3\x9c\x8c\xd9\x00\x02\xc9\xaa\x2c\x26\xe4\ +\x14\xc1\xef\x98\x78\x16\x06\x2b\xcb\x40\x57\x2b\x55\x67\xb8\x32\ +\xa4\x0e\xcf\xc4\x08\x8f\x14\x9f\x3b\xa4\xb2\xdb\x69\x86\xea\x61\ +\xe1\x9e\xd5\x4e\xe5\x87\xe3\xc8\x00\xf3\x7a\x74\x45\x92\x27\xd7\ +\xc9\x56\x57\x92\x71\x52\x4f\x80\xf0\xe0\x74\x1b\x30\x16\x30\x59\ +\xed\xfd\xb4\xb2\xb8\x34\x6b\xb3\x08\xf4\x81\x06\x27\xcd\x4d\x4d\ +\x7a\x3a\x17\x93\xa5\x68\xe1\xbb\x3c\x61\xad\x42\xea\x92\x5c\x58\ +\xdb\x46\xd4\x5a\x8c\xa5\xd3\xf1\x37\xc3\x86\x6c\x8c\xd1\xea\xe8\ +\xb6\xf7\x01\xa3\x64\x9a\xbf\x27\x37\x56\x45\x3d\x67\xf0\xd9\xb6\ +\xf6\xf5\xb2\x4c\xb2\x69\x64\xff\x88\x96\xa7\x51\x35\x7a\x98\x93\ +\xd5\x7e\x12\x14\x8a\x41\x05\x5a\xfa\x7b\x25\x34\x06\x87\x86\xf9\ +\x5a\xd3\x6e\x99\xaa\x68\xb4\x0f\x28\x17\xe7\x49\xa1\x5b\x14\x83\ +\x0d\xd6\xb0\xc7\x04\xbe\xe7\xa2\x91\xee\x47\x30\x9e\x37\x61\xff\ +\x13\x27\x5c\x18\x15\xe6\x90\x2d\x45\x55\xfc\x82\x8f\x3f\x9d\x08\ +\xee\xa6\xd8\xd1\xf5\x6a\x59\xa5\xad\xb3\x82\x1d\x76\x88\xa3\x6d\ +\xd8\x74\xda\x3a\x9e\x43\xf2\x16\x32\x20\x56\x56\x04\x6c\x39\x4a\ +\xda\xc9\xe2\x8d\xad\x6c\xfa\xe5\x2c\x14\x38\x0d\xca\x76\x64\x94\ +\x80\xb1\xba\x49\xa2\xdb\x2a\x82\xb3\xd1\xc1\x54\xe3\xfc\x11\x46\ +\xb0\x17\xc5\x94\x93\x0b\xff\x97\x54\xb3\xd5\xd2\x68\xf9\x80\x2c\ +\x1b\x4f\x1c\x66\x63\x7e\x5a\xc6\x16\x3a\x60\xa1\x83\x70\x60\xbb\ +\x22\x1a\xba\xca\x1a\x3e\x7a\x93\x05\xca\x43\xc7\xc6\xc1\xad\xd2\ +\x80\x49\x9a\x1b\x6c\x90\x0d\xe8\x39\xa0\xe9\x40\x41\xc9\xcf\x15\ +\x25\xc5\x13\x36\xd3\xec\x34\x26\x49\xa9\x13\x2a\xe9\x72\x7e\x55\ +\x71\x86\xa0\x48\xc8\x4a\x39\xef\x91\xf8\xae\x8d\xdd\x78\x56\x2d\ +\xa9\x19\x08\xb1\x20\x1a\xc8\x05\xcb\x8e\xc6\xe5\xde\xd8\xc4\xe2\ +\x2a\xdf\x79\x11\xf1\x1a\x2d\x72\x14\xf0\x54\x82\xda\x27\xc2\x07\ +\xea\x4b\x97\xa0\x2e\x82\xde\x4d\xf1\xc4\xd0\x24\x84\x06\x2b\xb5\ +\x01\xb9\x04\xf2\x08\x74\xc0\x41\x1e\xa5\x1a\xa1\xa1\x2b\x5a\xd5\ +\x5d\x30\x9d\x09\xc3\xff\x40\xd9\xa4\x9a\x86\xa8\x14\x28\x88\x61\ +\x92\x8a\x94\x45\xd8\x43\x61\x1f\x22\x46\xb5\x76\xed\x0a\xd6\x0c\ +\xa9\x4c\xaf\xcd\xe6\x3e\x83\x95\x05\x18\x83\xaa\x0c\x29\xd1\x59\ +\x67\xf3\xd8\xbc\xda\x4b\x14\x73\xef\x47\xb5\x4e\xd8\x76\x01\x0b\ +\x48\xc5\xde\x61\x56\xbb\x50\x2e\x1c\x99\x19\x02\xcb\x9a\xf6\xd4\ +\x9a\x91\x20\xb2\xc5\x82\x0e\x5a\xb6\x97\x03\xc8\x27\x98\xca\x3f\ +\x8a\xe7\xbb\x10\x00\xfc\xb4\x0a\x80\xf3\x0c\x60\x5a\x7f\x62\x33\ +\xcd\x91\xe6\x92\x4d\xd3\x2f\xdb\x08\x00\x23\x51\xa9\x82\xf4\x2d\ +\x6e\xe2\x2c\xa3\x85\xe2\x6d\xe4\x16\xaa\x5a\x91\xd9\xe7\xc1\xfa\ +\x82\x36\x3a\xae\xd1\x91\x33\xfd\x92\xe5\x97\x12\x32\x89\xaa\xc5\ +\x60\x81\xa9\xea\x3e\x55\xf1\x28\x82\xc1\xc2\x91\xa9\x62\x93\xf4\ +\x10\xc5\xb4\x5e\xd1\x04\x55\x54\xf3\x14\xdb\xa4\xde\x89\xaf\xa0\ +\xa4\x6c\x60\xb3\x34\x1c\x84\x36\xcd\xaa\x31\x54\x56\x63\x98\xbd\ +\x28\x37\x13\xd3\x68\xfd\xd0\xac\x65\xe9\x6e\x3a\x8c\xc4\x21\x6c\ +\xcd\x38\x3d\xb9\x02\x5c\x12\xcb\x1f\xda\x82\x75\x85\xf9\x89\x4e\ +\x1e\x59\xa5\xee\x4a\x4d\xd1\xec\xe4\x96\x44\x91\x2a\x31\xd4\xf5\ +\x24\x6a\xcb\x50\xe7\x44\xfd\x95\x25\x5f\x46\x8c\x4b\x6c\x47\x13\ +\xf0\x85\xa4\xb5\xca\x34\xee\xa3\x4a\xca\x30\x56\x55\xce\x15\xd1\ +\x4e\x8b\xd0\x15\xb5\x04\x52\xc5\x44\xa8\x82\x78\x44\xe9\xa2\x1b\ +\x34\xff\x5e\x18\xe1\xc1\xee\xf1\x42\x87\xa9\x90\x39\xae\xca\x82\ +\xb7\x7a\xf6\xb0\xed\x60\xb6\x09\xcd\xda\xa6\x7a\xcc\x74\x73\x2b\ +\x69\xde\x89\x8b\x04\xdc\x21\xd7\x4f\x57\xbf\x59\x3b\x42\xad\xdb\ +\xcd\x71\x38\x41\x30\x43\x5f\xef\xe6\xa4\x62\xb6\x67\x0a\xf3\x3a\ +\x68\x46\xeb\x26\xae\xa6\xa6\x6d\x47\xe3\x54\x33\x68\xd1\x28\x9d\ +\xce\xfa\x5a\xb4\xde\x5d\x4a\xd3\xad\xdb\x3e\x8d\x34\xca\x64\x44\ +\xc3\x92\x51\x2a\x10\x0d\xa6\x61\x1c\x09\xd1\x7c\x04\x25\x9b\x34\ +\x57\x88\x27\x05\xb6\x27\x2d\xe5\x60\x27\xff\xa9\x08\x29\x78\x79\ +\x81\xad\x2b\x3e\x52\xc5\x50\x4d\x20\x74\x81\xb0\x62\x90\x7a\x13\ +\x44\x59\x71\x0c\xc9\x89\xf0\x86\x4f\xad\xc3\xe4\x6b\x4c\x07\x5a\ +\x44\x55\xe6\x4a\x51\x9e\x94\x84\xfb\x9a\x81\x60\xcd\x02\xde\xeb\ +\x28\xc0\x55\x02\x1c\x2b\x21\xd0\x6f\x57\xcf\x99\x63\xb0\xe9\x0d\ +\x4f\x8f\x0b\xb5\x9c\x49\x00\xd6\x9a\x90\x37\x50\x75\x89\x72\x30\ +\xc7\xd8\x23\xa6\xa6\x72\x9a\x24\xbe\x60\x70\x0e\x02\xb1\x93\xe7\ +\xff\x62\x4b\x26\x83\xb6\x13\x06\x5d\x2e\x71\xb2\xe9\x60\x6c\xdd\ +\x5c\xc3\xe0\xb4\x6a\xe6\x82\xc3\x9c\x11\x1e\x26\x79\xea\xab\x3e\ +\xcc\xea\xf0\x30\x49\x93\x5f\xe7\x05\x0e\x17\xdb\xc5\xb8\x2e\x3d\ +\x29\xdc\xb8\xe9\x64\xfc\x1f\xab\xb5\x84\x50\xfa\x5e\x99\x14\xb4\ +\x2e\x69\x58\x06\xc9\x54\xb2\x84\xa3\xce\x8c\x96\x60\xaa\x2a\xa7\ +\x41\x5e\x56\x99\x38\xad\x55\x8c\x95\x26\x9a\x07\x25\xb4\x66\x8f\ +\x36\xea\x4f\x9c\x99\x28\xf2\xf7\x86\x40\x48\x14\x89\xc8\x47\x0a\ +\x74\x9f\x46\xb2\xd5\x8d\x69\xa5\x72\x9c\x82\x19\xb4\x54\x2d\x15\ +\x49\x6e\x54\x33\x1d\xf7\x68\xad\x39\x7a\xa9\x58\x1c\x9c\xe5\x45\ +\xb0\x6a\x96\xa4\x6a\xc2\x42\xbc\x19\x20\x07\x8b\x35\xf9\xf9\x11\ +\x01\xe9\x34\xe7\x47\xaa\x05\x64\xe3\x90\xe9\x8f\x8a\x0e\x58\x89\ +\xe4\x62\x3f\xd7\xbf\x12\xd5\x4b\x21\x7a\x38\x89\xc9\x39\x4f\x18\ +\x92\x7d\x89\x78\x06\x00\x6c\xa4\x9d\xb3\x81\x8b\x8d\x5a\x49\xad\ +\xd4\xd3\x25\x20\x22\x26\x1a\x2e\x60\xde\x3c\x29\x10\xb3\x28\x10\ +\x26\xab\x95\x9e\xee\xdc\x39\x39\x77\x5c\x91\xda\x1e\x59\x9c\xa6\ +\xae\x2d\x11\x4a\xb4\x3a\x81\x2a\x0f\xb3\x52\x85\x9d\x3a\x91\xbd\ +\x43\xa8\x7d\x86\x4b\xdb\x58\x15\x0c\x10\xad\x9f\x37\x91\x50\xb2\ +\xfb\x72\xec\x31\x9e\x47\x25\x45\x5b\xf2\x3c\x47\xb1\xb0\xb0\xef\ +\x62\x4c\x2f\x58\x21\x7a\xb3\xaf\x50\x29\x14\x51\xdd\x0b\x58\xc3\ +\x25\x0b\x25\xbc\x43\x8c\x49\x9a\xaa\x9f\x49\x17\x98\x0d\x17\xbf\ +\xc0\x0a\x68\xce\x0c\x9e\x06\xd6\xc0\x0f\x0f\x03\xac\x49\xb8\x7c\ +\xa7\x55\x1f\x73\x87\x5c\x5c\xd0\x02\x15\xea\x08\xcd\xad\xdd\x2f\ +\x2d\xd5\xf0\xa2\x6c\xf9\xaf\xf2\x61\x89\x96\x5e\x6c\xb7\x6d\x4e\ +\x7f\xc2\x00\x29\x12\x96\x0b\x1d\xcc\xd3\xed\x80\x39\xba\x41\x7d\ +\xa4\x46\xd1\x29\x84\x35\xbf\x5d\x41\x3a\xe1\xff\x15\xe4\x64\x4d\ +\x6b\xdd\x4c\x51\xa2\x6c\xd7\xac\x95\xb1\xc1\x42\xa1\x1b\xcb\x4a\ +\x10\x98\xde\xec\x7a\x59\xdb\xc1\x5e\x0c\x6e\xd1\xf2\x4c\x96\x0a\ +\x8b\xba\xae\xb5\xaf\xdb\x38\xc5\x38\xd3\x58\xd1\xbd\x62\xc5\xc9\ +\x49\xb5\xde\x43\x88\x04\x8f\x9f\x6e\xba\xa4\x60\xfb\xac\xa0\x21\ +\x2e\x88\xda\xc7\xa5\xee\xe7\x6e\x1b\x81\xb0\xb8\x76\xe5\xa2\x75\ +\xb4\xba\x61\x60\x0b\x29\xf3\xf8\xb2\x98\x63\x94\xe8\xd1\xef\x5e\ +\x3d\x95\x1c\xd1\xc7\xb2\x39\x54\x0a\xb4\x4f\x2c\xbe\x65\x0a\x79\ +\x5b\x28\xf2\x3c\x33\x6b\x97\xfd\x80\x79\x8f\x8d\x28\xa8\x33\x87\ +\xba\x13\x79\x67\xec\x41\x0b\x6f\x05\x58\xc1\x5a\x7b\xb9\xb4\x9f\ +\x54\xc9\xa4\xc1\xbe\x0e\xdb\xc1\xf4\x62\x2b\x29\xf6\x16\x49\x02\ +\x9b\xa4\x77\x80\x2a\x54\xa2\x30\x8a\xee\x00\xd3\xe5\x40\x9b\xe4\ +\x46\x85\x11\x14\xf5\x8f\x5d\x88\x0c\x5a\x6d\xab\xc8\xa0\x95\x86\ +\x8d\x04\x69\x21\x82\xc4\x12\xf4\xa5\x5b\xcb\x32\x33\x23\x2c\xe9\ +\x4f\x74\xaa\x98\x1a\xbe\xea\x4e\x99\x7d\xae\x67\x57\x8a\x3c\x91\ +\x8d\xa1\x36\x5f\xb6\x34\x0b\x0a\x44\x65\x61\x2a\x76\x41\xd7\x21\ +\x50\xc9\x7c\x46\x81\x5b\x0b\x34\x97\x46\x0f\x3f\xc7\x74\x9e\xc9\ +\xb4\x58\x87\xe8\xf9\x5a\xca\x21\xa2\x82\xcd\x11\x66\x25\xfd\x88\ +\xf1\x86\x94\x9e\x6c\x24\xb2\x44\x2d\xcc\xe0\xf7\x34\xae\x30\xb9\ +\x66\x5d\x44\x06\xbb\x5f\x33\x00\x3a\x63\xc3\x7b\x6c\xdf\x83\x22\ +\x5e\x1f\x29\xd8\x46\x8e\x61\x73\x00\xc7\xb0\xd0\x3a\xee\x8f\x79\ +\x5f\xa8\x08\xaa\xab\xa7\xcf\x53\x29\xc5\x98\xea\x88\x52\x8a\x0a\ +\x9a\x36\x6b\x89\x4a\x9a\xb4\x78\x60\x50\xd4\x82\xa8\x3a\x61\x43\ +\x7b\x46\xdb\x35\x49\x7f\x7f\x3f\xc4\x23\x81\xd4\x73\x72\xfe\x46\ +\x96\x81\x66\xd3\x34\x4a\x3b\x33\xa2\x45\xdd\xe1\xfb\x72\x9e\xe7\ +\xa6\xd1\x30\x7b\x8f\x31\xc4\xd3\x2f\x55\xce\x1a\x88\x10\x1e\xb0\ +\xe7\xe9\xf3\x9c\x46\xe9\x78\xf4\xba\x17\x5a\xa1\x8b\x32\x06\x5f\ +\xec\xe4\xa1\xc4\x12\x68\x43\xc1\x71\xa8\x04\xa2\x33\x0f\x78\x96\ +\xd5\xd7\xdb\x6f\x08\x7d\xc9\xf0\x27\x7c\x90\x54\xc8\x35\xe8\x2c\ +\xf4\x4e\x0b\x78\xd6\x63\xdc\xd9\x9c\x4e\x01\xf7\xc1\xd8\xc3\x12\ +\x2f\x87\x65\x8d\x6e\xc0\xe1\xa3\xdb\x95\x9d\xda\xdb\xb6\xb4\x2a\ +\xa7\xee\x3a\x19\xe7\xc0\x0f\xfa\xe4\xba\x75\xe1\xa4\x36\x2a\xab\ +\xd7\x08\x23\x3e\x54\x73\x40\x5b\xf4\xa5\xe2\xf8\xb5\x1d\xd9\x55\ +\x13\xdd\x65\x14\xcf\x09\xd5\xda\xea\xb6\x69\xa0\x29\xb6\xf2\x55\ +\x43\x99\x3a\xe7\x7a\xfc\x8d\xda\xc3\x87\xd1\x1e\xd6\xdd\x0f\xb1\ +\xb1\x38\xde\xc8\x3d\x2e\x81\x9e\xc1\x13\x37\xbb\x88\x70\x2c\x54\ +\xfd\x5d\xe0\xe7\x4e\xa2\xb2\xb4\xe3\xd6\x81\x05\x78\x81\xb7\x7d\ +\xc2\xda\xed\xb1\x77\x17\x72\x77\x2a\x9d\x6b\x21\xd1\xdb\x67\x2d\ +\xc4\x0d\xa6\x8d\xde\x16\xf2\xab\x4d\x54\xe3\x3a\x01\x29\x15\x55\ +\x05\x9c\x81\x8d\x1e\x07\x23\x7d\x77\x03\xf2\xbc\x31\x24\x0b\x4a\ +\x22\x26\xcf\x05\x14\x90\xc4\x8d\xee\xa0\x80\x37\x39\xf6\x94\xf3\ +\x4c\xef\x34\x1e\xb7\x3e\x43\x9b\xbb\x87\xb0\x9b\x13\xf3\xb8\x17\ +\x0b\x89\x8c\xe7\x48\x62\x7c\x3d\x8e\x18\x69\x39\x33\xf6\x18\x90\ +\x07\x54\x25\x08\x86\x43\xa6\xdd\xa9\x8d\xaa\x74\x48\x7b\xd3\x2f\ +\x03\xd7\x31\x7d\x63\x21\xb6\xde\x59\x48\x4b\x48\xc4\xf0\x18\x03\ +\x56\x0f\xf8\xa0\x83\xc3\xdf\x17\xc2\xf9\xb7\x73\x0b\x53\x30\xe3\ +\xc2\x82\xeb\xb8\x0b\xb1\x7f\x18\x0c\x69\x16\xec\xfc\x44\x68\xbc\ +\xce\x0d\x56\x7e\xcc\x2a\xd9\x19\xb3\x13\x5f\x67\x8f\xe2\xc4\xbc\ +\x5d\x09\x4e\x92\x0a\xbe\xd5\xb3\xd6\xcd\x67\x17\x26\x64\x2c\x17\ +\x4f\x22\x85\xa3\x94\xa6\x5f\xac\x2a\x7b\x38\x90\x68\x3b\xda\xc9\ +\xba\x40\x84\x22\xad\x72\x8f\x56\xc5\xed\x91\x6a\x04\x81\x9b\x14\ +\x60\x0c\xd3\x0c\xc1\xde\x80\x96\x58\x1c\x67\x88\x73\xfc\xb3\xf2\ +\x5a\x9a\x24\xc6\x68\x96\x75\xac\x67\xd6\x7c\x90\x99\x2a\x76\x1b\ +\x8c\x3c\xe9\x92\x94\x59\x71\xf1\x8d\x6c\x14\xcb\x5c\xaf\x63\x00\ +\x96\x36\xe2\x66\x8d\xcc\x88\x8b\x19\x4b\x74\xf5\x2c\xc9\x55\x14\ +\xbd\x31\x0e\xca\x59\x2a\xda\x72\x5c\xfe\x24\x2d\x7a\xb9\xa5\x22\ +\x42\xa2\xdd\x2d\xa3\xc8\x28\x6b\xc9\xba\x41\x94\xbc\x65\x84\xc0\ +\x5f\x52\x81\xaa\x86\x68\x4f\x17\x65\x36\xc7\x6f\x9e\xca\xa6\x2a\ +\x00\x69\xaa\xc8\x50\xb4\xfb\xbc\x6e\x9e\x87\x99\x0f\x6b\x6e\xe3\ +\x62\x22\x72\x17\x12\x3e\x73\x13\xa4\x89\x2a\x12\xce\xa3\x15\x24\ +\xf2\x9b\x04\x06\x07\x62\x70\x50\xd1\x88\x47\xc6\xa6\x65\x96\x03\ +\x06\x52\x92\x28\x7e\x91\x98\x28\x42\x96\x3e\xcd\x5b\xae\x4c\x23\ +\x46\x6a\x63\x2e\xe4\x2f\xc0\xb8\x14\x0e\xcc\xd2\xa3\x0a\x65\xbf\ +\xc4\xbf\xc1\xba\x9b\x88\x6f\x41\xab\xcf\x30\xd5\xd4\x2e\x2d\xc2\ +\xa2\x95\x3e\x58\x6e\x89\x0a\x12\x4f\x7e\xaf\xe0\x78\xe8\x4e\x25\ +\x3c\xc1\x3f\x9d\x44\xba\x6f\xe5\x79\x1b\x8e\x24\x25\xfd\x3a\xd8\ +\x98\x0e\x08\x5c\x67\xdd\x27\x15\x22\x95\x9a\x26\x2e\xf5\x52\x2d\ +\x2b\xd9\xed\x19\xec\x2f\x8e\xac\xaa\x0a\x77\xec\x10\x30\x09\x29\ +\xc5\x54\xab\x4a\xa9\x1e\x06\xb7\xae\x68\x4a\x88\xe2\x01\x07\xf4\ +\xed\x76\x3d\xdb\x72\x58\x07\x74\x91\x53\x2a\x45\x92\xc8\x74\x67\ +\xe5\x54\x74\x8f\x94\xb4\xc2\x6c\x53\x8a\x71\x90\x1c\xf9\x6e\x43\ +\xb4\xbb\x80\x51\xf3\x56\xae\xd4\xc9\x95\x65\x3e\x89\x9e\x61\x92\ +\x94\x75\xcc\xd5\x2a\x87\x95\x1d\xa5\xd7\x9d\xe9\xfe\x2c\x61\xe4\ +\xeb\x3e\x8e\x68\x75\x99\x7e\x7c\x86\x50\x9a\x33\xdb\x40\xe5\x96\ +\xa5\x03\x16\x04\x65\x14\x29\x39\xb3\x5e\xae\xd4\x8f\x7a\x4e\x4e\ +\x32\x14\xf1\x7e\x59\x5a\x1c\xac\x4a\x22\x4d\xf4\x60\xb3\xa3\xad\ +\xc3\x8a\x49\x82\x57\x79\xb0\x79\xa9\x02\x33\x98\x46\x82\x87\x57\ +\x55\x2a\xe8\x7b\x39\x66\xe6\xcb\x16\x55\xff\xb3\xb4\x3d\x41\xae\ +\xec\x64\xb4\xa2\xe4\x32\x1e\xb1\x92\x9b\x07\xb3\xc0\xc9\x58\xdd\ +\xa9\x1d\xf4\x69\x1e\x0c\x04\xcb\x3f\x67\x79\x96\x93\xc1\x44\x92\ +\xbc\x3b\xce\xa2\xc9\x6c\x40\x11\x2f\x2e\x61\x53\x21\xcc\x71\xa5\ +\x97\x75\x24\xf5\x03\xcf\x08\xa3\x5a\x02\xdf\x34\x24\xa0\x49\xdc\ +\xa9\x71\x12\xcb\x55\x05\x24\x86\xa6\x15\xed\xd9\x82\x83\xda\xbc\ +\x40\x44\xe7\xa0\xba\x95\x23\x52\x77\xe8\x96\x8c\xe3\xf7\xfb\x89\ +\xa8\xdb\xd1\x39\xab\x76\xcd\xc0\x10\x67\x57\xd4\x77\x48\xfd\xe9\ +\x98\x33\x23\x2f\x1b\x4f\x83\x65\x38\x9a\x10\xc4\xb5\xe8\x2b\xa4\ +\x02\xa8\x48\x44\x41\xad\x1e\x6b\xee\x27\xac\x1c\x76\x54\xb3\x17\ +\x82\x7d\x2c\x95\x53\xca\x90\x60\x65\x99\x8b\xae\xe8\xd1\x22\xd8\ +\xc5\xa2\x83\x79\x52\x37\xd3\x96\x90\xb5\x1d\xc7\xad\x8e\x24\x1e\ +\x3f\xff\x7c\x3f\x6c\xcc\x1d\x49\x48\x3e\x5c\xa6\x1d\x66\x06\x6a\ +\x9f\x1a\xe9\x84\xc3\xbc\xab\x7a\x82\x91\xb7\xc7\x2c\xb4\x52\xa1\ +\x52\x7c\xab\xa9\xca\xb0\xd0\x3c\x7f\x55\x4c\x84\x36\x00\x56\x0c\ +\xc9\x46\x53\x89\x3b\xbd\x4c\x2d\xac\xc2\xa2\x87\xb1\xa0\x49\x44\ +\x98\xea\xf4\xb2\x83\xf3\x7d\x5d\x1e\x60\xcd\x93\x26\x4d\x12\x42\ +\xfa\x24\xce\x68\x6b\xaa\xaf\x1e\xa8\xea\xd4\xf4\x16\xa6\x0b\x8d\ +\x57\x38\xab\x95\x4e\x68\x27\x61\xce\x48\x4b\x26\x4c\xa7\x89\xc8\ +\xe3\x11\x25\x63\x9b\xf0\x9b\x34\x31\xb9\xb6\x24\xfa\x44\x32\xdf\ +\xb0\x9a\x91\xa5\xf7\x29\xa7\x12\xdd\xe7\xc3\x91\x3d\xf4\x77\x06\ +\xe3\x66\x54\x91\xc6\x8b\x64\x3a\x41\xb5\x19\x65\xce\x20\xc5\x10\ +\xa8\xe3\x48\x94\x19\xd9\x0e\xe3\x0a\x9d\xb8\xdf\x69\x8b\x36\x87\ +\x30\x80\xe9\x66\xcd\xb4\x9d\xb7\x4b\x13\xb2\x62\x87\xbd\x9e\x86\ +\x47\xa9\xf1\xe2\x64\x93\x96\xe3\x7c\x59\x4b\xb3\xd7\x93\xfd\x94\ +\xf7\x53\x54\xc6\xc5\x14\xd5\x86\xa4\x55\x34\x39\x5f\xe8\x34\xe2\ +\xfe\x40\xfd\x3a\x3e\xd5\x36\x20\xb6\xd0\x31\xd4\x29\x24\x28\xef\ +\xc3\x7a\x58\x81\x84\x73\xf9\x36\xf1\x36\xe6\xba\xda\x1d\x6d\x7b\ +\x2e\xae\xb3\x88\x5e\x16\x28\xba\x84\xb0\x1b\xdd\x75\xb3\x60\x45\ +\xa4\xe6\x56\x98\x2f\x42\x6b\x08\xa7\x4d\x9e\x87\xf1\x37\x16\xfb\ +\x13\xf2\x5c\xf8\x55\xd6\x73\x21\x98\x95\xdc\xef\x30\xe7\xda\x93\ +\xc9\xf8\xc7\x42\x04\xc5\x2e\xd6\xc6\x14\x42\x50\xc0\x79\x25\x0a\ +\x55\xc7\x50\x3f\xa6\x19\x32\x98\xd3\xa5\x12\x7e\xba\x8d\x21\x25\ +\xcd\x85\x9a\xcf\xf3\x12\xf3\x96\x33\x0c\x0a\x00\xcd\x4b\xa4\x1e\ +\x76\xae\x02\x8a\x57\x45\x9f\x77\x1f\x33\xcc\x56\xe0\x5c\xac\xb8\ +\x68\x7c\xc4\xa5\xae\x07\x96\x08\x4a\xc7\x54\xca\x01\x75\x19\x78\ +\x26\x36\xc8\xe3\xaf\x27\x55\x15\x66\x02\xf5\xed\x46\xc9\xe6\x72\ +\x4d\x4c\xc9\xad\xc6\x5d\xbb\x8d\x8e\x21\xb7\x98\x54\x3e\xcd\x82\ +\xb1\xf6\xe0\x58\x2c\x68\xe8\x04\xa4\x60\x6a\xd7\x1e\xa3\x63\xc0\ +\x03\x06\x9b\x7c\xbc\xdd\x7c\xbc\x41\x22\x7c\xfe\x6a\xbc\xa6\xdd\ +\x30\xde\xa0\x9d\x4d\x1c\xa5\xa9\x67\x1d\xaf\xe5\x00\x35\x66\xe2\ +\x4e\x52\x2f\xfd\x45\x1b\xeb\x46\xcd\xc9\xe5\x93\xa4\x3a\x89\x6a\ +\x71\xe5\xbf\xa9\xd4\xe4\x40\xd0\x7e\x54\x58\x46\xc4\x1f\xa9\xd4\ +\x68\x77\x73\xa6\x42\xa3\x5d\x57\x3a\xc4\x51\x43\x58\xae\xb2\xa7\ +\xf0\xfe\x3d\xfa\x07\xd9\xa3\xc6\x9f\x66\xa3\xae\x46\xd1\xa9\x5e\ +\x65\xd5\x66\x4a\x5e\xd2\x44\xff\x83\x09\xca\xe7\x04\x33\x89\x0b\ +\xaa\xc4\x34\x92\xd1\x36\xa9\x17\xd1\xaf\xca\xdd\xc2\x32\xbd\x52\ +\xde\xd2\x64\x75\xb3\xc3\x76\xa0\x3d\x0d\xa0\x91\xa6\x96\xf2\xca\ +\x4f\x8c\x56\x8e\xa8\x84\xb5\xe0\xe5\x76\xba\xf1\xc8\x64\x18\x20\ +\xbb\xec\x09\x77\x3b\x7a\x0c\x64\x40\x38\xa1\x8c\xba\x28\xa6\xe8\ +\xad\x92\x0b\x46\xa0\x32\x2a\x8b\xc2\x49\x6e\x02\x41\xba\x65\xc5\ +\x9e\xd4\xaf\xdb\x0b\x46\xcf\xc2\x5b\x21\x14\x22\x55\x7f\x25\xec\ +\x41\xf6\x86\xe0\xde\xfa\x95\x11\x65\x49\xe3\xa2\x9f\x42\x96\x6b\ +\xf0\x4c\x2d\x31\x03\x3e\xcd\xe0\x7d\x76\x42\x99\x11\x49\xd9\xaa\ +\xc2\x21\x4b\xc4\xcd\xa6\x9d\xc4\xe0\xce\x22\x7d\x9c\xf8\xeb\x0e\ +\x95\x72\xc4\xc8\xd1\xe6\x75\x91\x5a\x27\x17\x49\x14\x9f\xb1\x27\ +\x29\xa6\x96\x67\x0c\xef\x6c\xe4\x5d\xcd\x84\x95\x48\x7b\xea\x88\ +\x16\x04\xcc\xd9\xbd\x16\x4b\xcf\x40\x76\x94\x3d\x47\xd0\x93\xb8\ +\x2e\x09\x33\xca\xbd\x4e\x23\x5d\x2e\x51\xed\x88\xff\x99\x8a\x25\ +\xdf\x07\x89\xe4\x53\x87\xb5\x95\xb5\xd1\xdb\x93\xf0\x04\x5e\x3a\ +\xed\xde\x48\xb4\xe9\xae\xc8\x77\x0c\x24\x66\x61\xf0\x31\xda\x76\ +\x77\xea\xf6\xeb\x7a\x89\xe9\x9a\x38\x54\x16\x4d\x38\x17\x18\xe4\ +\x8e\xe6\x65\x1f\x41\x5b\xf0\xfd\xb1\x87\x26\xee\x4e\x81\x4a\xcd\ +\x44\x84\x96\xef\x03\xfb\x2f\x68\xbf\x05\x3b\xaf\x4f\xb6\xce\x53\ +\xb5\x75\x96\x1d\x95\x7e\x4e\xcd\x96\xe5\x05\xee\x4a\xc2\xa2\x66\ +\x6d\x8d\x09\xd7\x57\x0b\xb3\xaa\xcb\x97\xaa\x8b\xfb\x12\xfb\x1e\ +\x42\x77\x8a\xa8\xe4\x65\x7f\xc4\xce\x25\x15\x09\x6b\x12\x05\x40\ +\x45\x92\x51\x88\xfb\xa8\xb4\xd9\xf8\x30\x25\x4d\x24\x9a\x5e\x77\ +\xe6\x73\x2b\xe6\x47\xc5\x81\x15\xbc\x91\x2b\x28\xb2\xb5\xa4\x8b\ +\x78\xe0\x30\x33\xc4\x9f\x28\xa4\xdd\x7c\xf2\x62\xce\xc4\x5d\x8d\ +\xa7\x81\xbc\x77\xea\xf0\x69\xe2\xfe\x88\x10\x38\x0b\x40\x5c\xcc\ +\xeb\xcc\x29\x50\x2f\x06\xb4\x8e\xfa\xc5\x7d\xb4\x84\x9b\x8e\x55\ +\x97\xd5\x74\xd3\xc5\xfc\x86\x97\x12\x2e\xa6\xac\x01\xd7\xb4\x58\ +\xdc\xb6\x17\xf3\x52\xa5\x6b\x84\xeb\xe0\x25\x76\xdf\xaf\xf6\xc2\ +\x0c\x78\x21\x90\x13\xad\x41\x85\xf0\x87\x9e\x6f\x83\xe7\x07\x88\ +\x30\xe4\x95\xca\xd2\xb0\x78\xc0\x76\x6c\x7f\x24\xf4\xf8\x3c\x2c\ +\xcb\xe8\x0b\x04\x74\xb7\xa2\x23\x13\x3b\xdb\xa8\xa6\xcc\x8b\xb7\ +\xf6\xf5\x75\xf9\x3c\x37\x34\xe7\x5b\xe1\x79\x67\x60\xab\x7a\x8b\ +\xe4\x45\xae\xa3\x86\x8b\xed\x16\xf5\xd1\x8f\x85\x71\x31\x1b\x5f\ +\x89\xdc\x3b\xa5\xe1\x83\x5e\x15\x15\x83\x40\x91\x04\x16\x45\xe0\ +\x4e\xbb\x18\x9e\xa5\x43\x53\x8e\xf5\xc6\x01\xd4\x2f\xd3\xa5\xb7\ +\x2c\x52\x29\x98\xbd\xd8\x12\x8c\x0b\x2b\xad\xf7\x97\x36\x6a\x31\ +\x30\xaa\x4f\xc2\x77\xb1\xb1\xe6\x93\x3e\xd1\x3b\x79\x08\x05\x78\ +\x3f\xf7\x20\x04\x73\xd1\x58\x85\xeb\x79\x84\x86\xc5\x45\x5a\xce\ +\x88\x4c\x83\x51\xb1\x99\x53\x38\x74\x3c\xcc\x82\x01\x13\x6c\x48\ +\xa0\x35\xea\x18\x77\x79\x1a\xd9\x72\xc7\xcd\x5a\x7e\x2a\x04\xfc\ +\xa6\xd0\xc4\x2c\x30\x56\xe0\x31\x52\x87\x1f\x56\xa6\xef\x04\x97\ +\xa5\x7a\x68\xe6\xb8\xfd\xae\xb9\xaa\x7a\xb3\x59\x3e\xad\xe8\x71\ +\x29\x94\x44\x06\x6b\x08\x8a\x16\xec\x8d\xca\x75\x7e\x65\xd5\xf5\ +\x82\x1c\x04\xc5\x20\xbc\x8d\x54\x17\x2a\x72\xba\x66\xad\x94\x84\ +\x0a\x4b\xc7\xe8\xd1\x10\x34\x43\x8c\x60\xe0\x75\xf1\x3d\xe1\xd5\ +\x9f\xc3\x73\x8c\xc4\x1d\xd6\xe2\x16\x64\xe5\xd3\x8f\x16\x69\x39\ +\xb1\xce\xb9\xe3\x7a\x8b\xc5\x3c\xf6\x0d\x8c\xbb\x0e\x58\x9b\x72\ +\x96\x76\x29\x06\xe5\xb3\x41\xc4\xd5\xf4\x7a\x99\xc8\x29\x8e\xbf\ +\xa0\xa9\x41\xbb\x98\x49\x7b\x7c\x57\xc8\x55\xa2\x2f\xa0\xc4\xd3\ +\xc0\x55\x3a\x88\x2e\xbf\xd9\x99\x50\x5d\xac\x82\x9a\x90\x42\xea\ +\xfc\x3e\xbc\x18\x97\x9f\x7d\x5e\x5a\xc6\x28\xb0\x34\x51\xb4\xc2\ +\x38\x9e\xc3\x0b\xeb\x58\x46\x9a\xba\x22\xcc\x20\xbb\xd4\x4e\xf7\ +\x59\x34\x25\xc9\xd8\x15\x61\x0b\x8a\x15\x3d\x2e\x35\x68\xfd\x2e\ +\x8a\x11\x9a\x0f\xaf\x5a\x3d\x6b\xef\x1e\xd2\xfa\xe2\xb2\x5d\x13\ +\x25\x30\xa2\x41\x8e\x6a\x5a\x67\xc6\x1c\x5b\xd1\x19\x36\x2f\x83\ +\xd0\x0c\x3d\xe1\xe6\x47\xa2\x62\x37\xdc\x13\x2d\xfc\x34\xfb\xce\ +\x27\xc1\x1e\x05\xac\x6b\x49\xf0\x1e\x4e\x9a\x40\xaa\xbc\x07\xef\ +\x09\x5e\x28\x83\x71\x39\x86\x6d\x7f\xc4\x2d\xe7\xb3\x91\xce\x45\ +\x7a\xd3\x33\xbb\x54\xb1\x57\x91\xd1\x61\x2f\x09\xa1\x2c\xa5\x68\ +\x53\x89\x16\x76\x59\x4b\xe4\x08\x8a\x2e\x23\x4c\x17\x64\x94\xa2\ +\x75\xb9\x51\xa5\x6d\x54\xfa\x51\xf7\x2f\xf6\xa1\x09\x0d\x73\x51\ +\xc5\xdc\x64\x4f\x97\x1f\x44\x25\x73\xe7\x89\xba\xbc\x30\x98\xc2\ +\xab\x67\xf7\xb0\xee\xce\x2e\xe6\x3f\xb2\x68\x08\x75\xe3\xb2\x53\ +\x1d\xbd\x20\xeb\xf4\x3e\x2d\x49\xd9\xe3\x02\x0a\x6f\x84\xa1\x77\ +\x1a\xb2\x6b\xe3\x68\xa4\x21\xed\xbb\xf9\x72\x09\x10\x37\xb8\xad\ +\xb7\x6f\x5d\x18\x79\x33\x2a\x0a\xf3\xda\x18\x59\xbe\x37\xd0\xfb\ +\x38\xcc\x65\xd8\x95\x85\xaa\xda\x58\x3f\xa6\xa2\x24\xcd\x44\x8e\ +\xe0\x57\xf0\xc0\x1a\xda\x71\xa5\x54\x42\x55\xeb\x32\xbb\xd2\x8f\ +\x92\x90\xaa\xcd\x0a\x1f\xd7\x79\x98\xca\x24\x52\x46\x19\x11\xc7\ +\x5d\x23\x92\xe2\xd7\x88\x44\x19\xd6\xc2\x20\xc3\x9a\x74\x94\x36\ +\x3e\x4a\x3c\x2f\x9b\x17\xb8\x40\xa8\xf2\x28\xad\x7c\x94\x58\x52\ +\x8d\xde\x7a\x5b\xf9\x2a\xc2\xc9\x26\x69\xe1\x93\xc8\x4b\xfe\xb4\ +\x39\x16\xc7\x64\xe0\x4d\x36\xd6\x0c\x31\x96\x08\x91\x44\x50\x18\ +\xf4\x41\x27\x41\xe1\x36\x37\x3f\x31\x1c\x19\x69\x91\x56\x9d\x69\ +\x71\xbf\xc4\xd4\x70\x6d\x07\xca\x40\x89\x19\x1a\x6d\xae\x0c\x55\ +\x4d\x36\x4a\x33\x1f\x45\x5c\x80\x1e\xe0\x30\x93\x5d\x9b\xa8\x3d\ +\xb8\x42\xdb\x17\x83\xef\x1d\x6b\x44\x1c\xdf\x07\x4a\xd1\xfb\x6c\ +\x1c\x0e\xf4\x20\x1a\xad\xa6\x65\x19\xd8\x72\x29\x4c\xe6\x33\xa3\ +\xd7\x68\x28\x2d\xb5\xd2\xb6\xb4\x05\x53\xd9\x95\xf8\xea\xe7\x09\ +\xf9\xa1\xe7\xb7\x05\xd8\x53\xf0\x10\x33\xb5\x23\x98\x40\xae\xfb\ +\xe4\x68\x7d\xa6\x0b\x4c\xc1\xd6\x93\xad\xe5\x8c\x1d\xfd\x2e\x36\ +\x6b\x2b\x7a\x2e\x8a\x02\xa5\x6b\x99\xd2\xbb\x26\x6f\x15\x09\xa8\ +\x7b\x71\xfd\xc8\x44\x59\x50\xb0\x52\x26\x5c\x18\x24\x8e\x91\x48\ +\x3f\xd5\x5a\x6d\x73\xf5\x18\x0b\x60\x68\x6a\x48\x0c\xab\xdf\x32\ +\xe9\xcc\x95\x9c\x52\x53\xcf\x7d\xac\xcc\xb7\xb6\x73\x76\xa6\xf2\ +\xfc\xab\x42\x0d\x1c\x54\x32\x79\xf0\x26\xe6\x20\xbb\x5d\xa0\xe9\ +\x3d\xc7\xac\xc3\xe6\x0c\x59\x74\x53\x60\x0a\xb5\x0f\xa8\x5f\x10\ +\xa6\xac\x59\x91\xc5\x04\x64\xc1\xba\xac\x1d\xb5\xd3\xd6\xeb\xba\ +\x86\xd2\xf0\x06\x16\xa3\x40\x8f\xc8\xde\xf8\x7e\xb8\xd1\xbb\x91\ +\x52\x03\xd4\x85\xd4\x27\xca\x24\xb5\x31\x76\x20\x90\x2a\xf9\x45\ +\x85\xe0\xfd\x80\xe9\x1b\x4c\x53\x0c\xd6\x42\xeb\x31\x56\xca\x48\ +\xfb\x34\x91\xda\xc1\x2c\x4c\x8b\xe5\xb1\xe2\x11\xf4\x03\x66\x00\ +\x86\x86\x3a\xfa\xc2\x42\xd4\xc3\xa2\x8b\xa0\xe9\x11\x5b\x97\x85\ +\xde\x37\x5d\xe4\xaf\x43\x38\x85\xf2\xde\x15\x53\xdc\x44\x61\x1c\ +\x40\x26\x9f\xd6\xd6\xae\xb5\xe3\x90\x30\xeb\x80\x4a\x5f\xb5\x87\ +\xbe\xc6\x80\xdb\xda\xe8\x18\x08\x2f\xe0\xd8\x4a\xe1\x7e\xc5\x5d\ +\x06\x68\xe4\x7e\xd0\xde\x1f\x3e\x9b\x7b\xe5\xbd\xc5\x54\x01\x10\ +\x72\x2f\x07\xaf\x7b\xe8\x4a\x66\x27\x46\x51\xb1\x50\x51\x95\x1b\ +\xb9\x87\x9f\x61\xfd\x84\x69\x12\x54\x82\x70\xd2\x00\x0d\x0c\x1b\ +\x27\x1b\x19\x10\x98\xe5\xbc\xe9\x61\xdf\x91\x1e\xe1\x64\x35\xf1\ +\xfb\x7c\x44\x93\xff\x38\x39\xb9\x22\xff\x15\x31\xd5\x60\x5d\x69\ +\x9c\x46\x1d\x04\x37\x2c\x45\x82\x79\xdf\x8a\xbc\x0d\xee\x30\x62\ +\xbe\x7e\x75\x28\x4f\x95\x4b\x61\x9d\xf5\x7c\x2c\x43\xe5\xca\x8d\ +\xb6\x22\xbc\x66\x06\x7d\xd3\x76\x29\xbc\xae\xbd\xb8\xae\xe0\x6c\ +\x71\xb0\xfa\x1a\x6c\xf1\x6d\xef\xc5\x65\xeb\xa6\xec\x1f\x14\x34\ +\x9d\x4e\x14\xd0\x52\x70\x7a\xf0\xde\x71\x5a\x86\x41\x93\x1f\x4b\ +\xbc\xef\x58\x18\xb8\x2b\x11\x38\xc5\x91\xba\x64\xc1\x4e\xf4\x1a\ +\xb8\x4a\x46\xcc\x54\x28\x0f\x2b\x48\x6e\x60\x8c\x78\xc4\x2f\x17\ +\x4b\xa1\x97\x5a\x46\xef\x92\xeb\x31\x70\x09\x76\x6e\x82\xad\x2e\ +\xbc\xac\x21\x8d\xd8\x5d\x79\xd5\xc0\x91\x10\xb8\xc6\x84\x94\x37\ +\x55\x00\x07\x47\xd5\x09\x13\x37\x65\x3d\x61\x70\xb6\x21\x96\x75\ +\x40\xc2\x19\xb3\x2c\x0d\xa0\x12\x61\x84\xdc\x85\x1a\x9e\xe6\x05\ +\x40\xa1\x5b\xdc\x83\xb4\x1a\x8f\x96\x12\xc2\xf1\x56\x77\x98\x5e\ +\x33\xc3\x0c\x0b\xaa\xaf\x8c\x68\xf7\xb8\x8b\x0c\x16\x91\x52\x48\ +\xb5\x90\x94\xc6\x01\x39\xac\x91\xfd\xec\x31\xd2\x20\xdc\x47\x05\ +\xa5\x66\xad\x22\xed\x1b\xe2\x64\xec\x28\xc1\x5e\x8a\x4b\x08\xbb\ +\xc0\x58\xda\xcc\x66\x00\x4c\x55\x65\xa9\x74\x1a\x61\xdd\x8d\x71\ +\xb1\xc6\x3a\x6e\xa9\x7e\x9d\xe1\x45\xd2\x4c\x8c\x9d\x44\x65\x7a\ +\x86\xdf\x2a\x69\xb4\xd0\x25\x16\x05\xd6\x9b\xcd\x94\x04\x9a\x1d\ +\x2c\xd6\xc5\xbf\xad\x40\xa6\xe7\x92\x95\x31\xe6\x59\x1c\xce\x83\ +\x51\x23\xbd\x79\x1b\x03\x48\x61\xf9\x04\x06\xd0\x4a\x75\x54\x72\ +\xec\x72\x01\x1a\xdc\x0a\x03\xb0\x36\x31\x00\x54\x8b\x4d\x4f\xca\ +\x7d\x16\x46\x26\xf6\xcb\x69\xc9\x81\xe2\x66\xdf\x83\x9a\x49\x92\ +\xae\xab\x49\x4e\x6a\x80\xc3\x86\x79\xa2\xa9\xf7\x46\x0d\x31\xee\ +\xe8\x29\x09\x16\x82\xc4\x4f\x2f\x8a\x4a\xa3\x67\x46\x34\xaa\xd7\ +\x13\x71\x55\xb4\x2b\x5e\xc0\x29\x34\x76\x33\x80\xb1\x34\xc4\x57\ +\x87\x99\xa5\xc8\xd0\x43\xce\xdd\x33\x36\xb6\xef\x0a\xc3\xbe\x8f\ +\x57\xde\x66\x63\xb6\x55\xe5\xff\xb3\xfe\xc0\xaa\x95\x3a\x5b\xa5\ +\x4a\x1f\x62\x2b\xdc\x29\x69\x2e\x9c\x34\xce\xe0\x2f\x20\x8f\xe7\ +\xe9\xc7\xe1\x03\x11\x73\xcb\x01\xe8\x3c\x63\xd6\xe4\xf4\x98\xc5\ +\x72\xe8\xf0\xad\xbb\x4a\x02\xc6\x0b\x9c\x38\xa9\xa8\x3a\xb3\x07\ +\x7b\xab\xa5\x34\x50\x97\x70\x50\xb1\x2f\x2a\x95\x8e\x01\x99\x09\ +\xf0\xd9\x4c\x75\x89\x30\xa1\x22\x56\x8c\x88\xc6\xef\xe1\x29\xa6\ +\xaf\x8a\xc4\x49\x82\x78\xb9\xc8\x45\x8f\x4f\xdb\x19\x9a\x79\x06\ +\x5d\x0f\x05\xbe\x12\x46\xcf\x8d\x80\x1a\xbe\xd3\x3b\x0e\x58\xc6\ +\xba\x59\xb8\x4c\x3c\xa9\x80\x58\x14\x04\x02\x2f\xa7\xe8\xc1\x84\ +\xac\x52\xc5\xb3\xfe\xc9\x08\x1c\xba\xd2\x11\xcd\x59\x78\x6b\x48\ +\x15\x57\x4d\x89\x11\x83\xba\xa2\x16\xe2\x08\xae\x84\x2a\x1b\x40\ +\xb0\x0e\xf3\xb0\x73\xe4\x72\x5e\x91\x71\x0b\x45\xfa\xf0\x74\x16\ +\x16\x4d\xae\xb3\x78\xae\x67\x9c\x5b\x2e\xd9\x02\x93\x2d\xec\xb4\ +\xe8\xc2\x30\x4d\x4e\x13\x4e\x53\x2f\xed\x9a\xc8\xd2\xc2\x20\x2b\ +\x03\xa9\xd2\x25\x2a\x71\x8b\xa2\x1d\x72\x84\x26\x5c\x59\x19\x89\ +\x1f\x53\x9d\xde\xd5\xc1\x25\x0a\x86\x43\xa3\xc7\x8c\x20\x25\x93\ +\xd7\xf4\x8d\x38\x7e\xbf\x49\xe3\x99\x85\x49\x17\xdc\x23\xf1\x1f\ +\xe6\x80\x92\x43\x86\x05\x4f\x08\xbc\x49\xb9\xdf\x81\x29\xf1\x1d\ +\x87\x4d\x3d\xe7\x6e\x0c\xcd\x5b\x9d\x6c\xc2\x19\x49\x49\x24\xf9\ +\xbb\x2a\x80\x1e\x96\xe7\x2a\x1b\x27\x67\x7b\xb4\x9b\x7f\x54\xf3\ +\xbd\x6b\x8a\x5b\x4c\x84\x54\x14\xc7\x76\xd2\x18\x31\x61\xa1\x16\ +\xfd\xfa\x0d\x3d\xe5\x76\x94\xe4\x79\x82\x53\xb0\xfd\x83\x3e\x42\ +\xf0\xee\x20\xe9\xa1\x90\x4b\xdf\x1a\xb8\x30\xcd\x31\xc2\xb1\x68\ +\x99\x29\x03\x46\xba\x4c\x77\x0d\x5c\xb3\x91\xc9\x9b\xbe\x4f\x35\ +\xdb\xb8\xd8\xf5\xc1\x44\x09\x42\x02\x29\xc1\x3b\x73\xc2\x6c\x45\ +\x77\xaf\xa4\xb9\x13\x5b\x65\x56\xb2\xa5\xeb\x23\xf8\x30\x9b\x83\ +\x31\x84\x1c\x8e\xe6\x72\x12\x16\xf1\x22\xd1\xa0\x1c\xd1\x26\x11\ +\xb2\x49\x47\x08\x8f\x50\xab\xdb\x1c\x72\xe8\xd3\x30\xca\x4e\xc9\ +\xce\x63\x8e\x24\x76\x16\xe7\xd9\x91\xec\xd9\x74\xb9\x54\xa2\x39\ +\x7a\x34\x7f\x3c\x56\x59\x11\xd8\x88\x92\x47\x98\xfa\x83\x4a\xf0\ +\xa8\x16\x0f\x89\x23\x0d\x5d\x55\x11\x39\xbd\x61\x47\xd2\x19\xfa\ +\xea\xc2\xc9\x50\xd8\xed\x32\xb0\xbf\x05\x77\x8c\x96\xae\x44\xfc\ +\x4a\x8b\xb1\xb5\x33\x9b\x3c\xcf\x2d\x35\x11\xe2\xdd\x8c\xdb\x4c\ +\xbd\xad\xda\x25\xa3\x1b\x61\x4c\x13\xef\x01\xd9\x8c\x3d\xf7\x42\ +\xe3\xf5\x60\x40\x49\x04\xa2\x58\xa3\x68\xe5\xe9\xd5\xdd\xd5\x4c\ +\x97\x63\xc5\x60\x4e\x40\x02\xcc\xdd\xa4\xc2\x4b\xd2\x5b\xed\x59\ +\xb8\x84\xf0\x29\x4d\x29\x0d\x44\xb9\x12\x37\x45\x23\x26\xb3\xe3\ +\x6b\x94\x94\x47\x90\xbe\x13\xeb\x11\x3c\x76\xca\xdb\xc5\xd9\xbb\ +\x3b\x45\x9d\x4d\x60\x56\x9d\xe7\xda\x84\xfb\xb1\x15\xa4\x9b\xdd\ +\x48\xc6\xc7\x39\x5a\x87\xd9\x71\x31\x17\xf1\x38\xa7\xa0\x97\xef\ +\x8c\x23\x17\x10\x29\xf1\x2c\x0d\x58\x19\x8f\x8a\x8f\x1f\xbf\xc5\ +\x65\x09\x0f\x59\x77\xdc\x61\x11\xae\xa2\xeb\xe3\x6d\x6f\x61\x34\ +\x6e\xd7\x26\x3d\x1f\x68\x53\x1f\x3e\x58\x43\x2e\x2e\x53\x08\x72\ +\x66\x61\x69\x1e\xc6\x2e\x6d\x98\x9f\xa9\x92\x90\x00\x0c\x11\x61\ +\x33\xc7\x4c\x3b\x8f\x92\x1c\x8b\x73\x54\x84\x3c\x0c\xd0\x24\x5d\ +\x7a\x03\xe1\xa0\xf8\x76\x50\x2a\xd9\x5c\xbd\xdf\xbe\x45\x36\x64\ +\xa2\xe6\x47\x98\x70\x67\xca\xad\x12\x8d\x8e\xb4\xdc\xa6\xad\x71\ +\x1c\x71\x7f\xf4\x0d\xc4\x56\xb0\xaa\x52\x9d\x72\x71\xfd\x82\x08\ +\x71\x28\xc1\xa1\x63\x92\xe5\x99\x44\xb3\x69\x4b\x5a\x86\x80\x3a\ +\x2a\x4b\x19\x64\xdc\x10\x70\xbd\x51\xc0\xa7\x43\xa5\x99\xb0\xb5\ +\xcc\x12\xad\x5f\xb4\x0b\x91\x1d\xbf\x90\xfb\x99\x82\xd6\xaa\xa8\ +\x1a\xd1\x39\x36\xeb\x6c\xe3\xe0\xae\x76\xc6\xd0\x47\x38\x7c\xe3\ +\xcb\x0c\x81\x11\xb6\x72\x65\xb5\x6c\x75\xd8\xd5\x5a\x34\xdb\x11\ +\xa3\x34\x79\xd3\xa1\x0d\x5c\x04\x79\xd0\xef\xb2\x31\xb2\x78\x4e\ +\x08\x49\x5a\xca\x82\x0a\xae\x6d\xb3\x33\xa3\xc6\xd6\xb8\x2c\x9a\ +\x0b\xb1\xaf\x1b\x2b\x8b\x0f\xde\xac\x22\x12\xc5\xa7\x4a\x04\x8f\ +\xd5\xe7\xf8\x6a\x03\xf9\x13\xca\xd1\x8f\xe0\x70\xff\x6a\xc9\xe5\ +\x57\xa0\xb0\x34\x5e\x3d\x0e\x15\x5e\xea\x52\xad\x25\xa9\x5e\x71\ +\x10\xce\xec\xd1\xb3\x79\xda\xd9\x5c\x3c\xa5\x27\x92\xcc\xd3\x01\ +\xc2\xd4\xe4\xba\xc5\x38\x61\xa5\xcd\x16\xc9\x07\xf1\x18\x18\xf0\ +\x28\x1c\x10\x3b\x95\xc6\xe7\x07\x75\x6b\x43\xea\x99\x2b\x51\x8c\ +\x50\x3d\x2f\x76\x60\xe4\xef\x91\x81\x57\x54\x4c\x8a\x99\x6a\xe8\ +\xa3\x71\xe8\x0c\xcb\x97\x89\x1f\xbc\x93\x3b\x74\x85\xd0\x51\xce\ +\xbe\xc9\x06\x66\xd8\x15\xad\xc5\x62\xb0\xbb\x0e\xd5\x99\xa9\x60\ +\xd5\x92\xaf\x70\x40\xcb\xc9\x56\xc4\x81\x8a\x37\x86\x53\x39\x62\ +\x81\x95\x23\xcf\xc4\x91\x99\x4a\x1b\x3f\x76\x37\x3f\xf6\x69\xc2\ +\x1a\xee\x27\x85\xf9\x1d\x38\x72\xde\xe5\x81\xc4\xf8\xc1\x3d\xb2\ +\x85\x9f\x8e\xa4\xc0\x77\x72\x4d\x4f\x06\x9d\x88\x0a\x46\xb9\x1a\ +\x3b\xef\x80\x51\x97\x84\x5c\xc9\x46\x00\xc0\x25\x08\xa0\x43\x13\ +\x6a\x10\x38\x6c\xdf\xd2\x31\xb0\x84\xa9\x79\xf4\xe7\xbe\x25\xd4\ +\x8f\x16\x01\xfa\xd4\x69\x03\xad\x63\xfc\xa8\xd0\xb4\x91\xe1\xcf\ +\x45\x4f\x21\xf3\xd7\x8a\xd0\x2a\x5b\xc5\x70\x60\xd5\x53\x4e\x19\ +\xd9\x0c\xb7\x08\xd2\x9c\x96\x34\xc6\x4f\xbc\x28\xd4\x07\x70\xf2\ +\xfd\x6d\xc5\x21\x59\xdb\xbd\x98\x73\xd3\x4f\x58\xed\x44\x90\x7d\ +\x24\x21\x19\xcf\x15\xa5\x2e\xb1\x8c\x64\x2d\x36\x01\x2f\x69\xd1\ +\x48\x9f\x7b\xfb\xa6\xcf\x01\x66\x07\x27\x64\xac\x20\x32\xe3\x1a\ +\x0c\xc6\x99\x52\xd7\x15\x51\xd3\x1c\x37\x6a\x5c\x29\xa4\xa7\xe6\ +\x36\x7e\xc6\xa4\xaa\x8c\x49\x2f\x3f\x8f\x39\x6a\x2c\xa5\xdb\xc3\ +\x10\x52\x72\xbc\xb1\x43\xcc\x2e\xe0\x8c\x47\x5a\xa7\x36\x72\xf2\ +\x23\xac\x8f\x1b\x4f\x32\x29\x45\x85\x2a\x09\x65\x1b\x7d\x34\x12\ +\x98\x0f\xa4\xe1\xa8\xc0\x7c\x7c\xae\x4d\x8b\x4e\x8a\x4a\xab\xda\ +\x8e\xd4\x16\x51\x99\x55\x60\xd6\x8b\x79\x6b\x06\x7b\x8b\xaa\x71\ +\xb1\x59\x4d\x33\xc2\x79\x3d\x2a\xbe\x5c\x29\x79\x27\x9c\xea\x2b\ +\x72\x2b\x92\x24\xfb\x06\xad\x18\x5d\x1f\x79\xe7\x76\xb4\x58\x44\ +\x06\x8a\x74\x38\x4c\x91\xef\x2b\x4e\x5a\x40\xff\xdc\x4e\x69\x3a\ +\x9a\x26\x1f\x24\x64\xfd\x8d\xba\x41\x4a\x99\x91\xac\x31\xbd\x6c\ +\x2b\x42\x2c\x2a\xa1\x8b\x77\x2a\xdf\x16\x93\x27\xb3\x08\x8b\x4d\ +\xbb\x12\x8e\xd4\xce\x47\xda\xb5\x3b\x36\xe9\xe6\x08\x07\xdb\x13\ +\x3b\xd8\x3c\x2c\x35\x0d\x0e\x36\xd9\x30\xbb\xe3\x87\x59\x2b\xf5\ +\xe2\xa8\x5e\x5e\xe0\xd2\x6a\x9c\xa8\x7b\x71\xa2\x67\x4e\x9d\xb8\ +\xe3\xf8\x54\xa6\x0c\x7d\x94\x5c\xb4\xc4\xa3\xe9\xd6\xf1\x93\xc5\ +\x19\x18\x05\xc2\x2a\xee\x75\x05\x56\x4d\x79\x7c\xdc\x94\xcc\xa1\ +\x13\x9e\x74\x55\x85\x49\x35\x0a\x9c\x62\x7d\xb1\x93\x21\xff\x8d\ +\xac\x70\xc3\x14\x68\x8d\x90\x72\xbc\x7a\xad\x4d\x3e\x27\x6e\x72\ +\x64\xc8\xe1\xb9\x73\x15\x54\xea\xca\x06\x98\xd8\xe8\xb8\x1c\x28\ +\x76\xc7\x96\x17\xb0\xcd\x83\x90\x19\x71\x90\x95\x3c\xbb\xb0\x1c\ +\xd4\x04\x2b\xea\xac\x3e\xf7\x88\xe0\xdb\xc0\xdd\x60\x3e\x9a\x04\ +\xb9\xd0\xd6\xcc\x8d\x83\x81\x9b\x59\xe1\xf9\x2f\x9e\x74\x7e\x96\ +\x07\xa1\xce\x14\x8b\xfa\x8d\xca\x00\x8b\x80\xc9\x8b\xe5\x98\xcc\ +\x95\xc7\x3b\x97\x93\x68\x0d\x6e\xf0\x8e\x84\x6e\x0e\x35\x2b\x94\ +\x05\x7b\x86\x46\xd3\x6d\x96\x89\x13\x2a\x97\x10\x7d\xcf\xb5\x75\ +\xac\x0c\x65\xd7\x4e\x9d\x1c\xa9\xe5\xb0\xf1\xdb\x99\xa6\xc8\x8e\ +\x9c\x1d\x2f\xd3\x95\x11\x3a\x88\xe2\xb5\x37\x46\xca\x34\x8a\x14\ +\x51\xe5\xd1\x88\xc9\x03\xbd\xe0\x88\xab\x14\xe8\x0e\x05\x93\xeb\ +\x2a\x57\x2a\x2c\x18\x0a\xd5\x26\x08\x83\x5c\x54\x8d\x86\xd7\xdd\ +\x93\xb0\x11\x69\x39\x58\x38\x18\x60\xbc\xc7\x0d\xb9\xc3\x80\x16\ +\x9f\xb7\x8f\xe7\xcd\x02\x37\xf3\x7b\xc5\x43\x98\xa2\x94\x52\xd0\ +\x30\x05\xa7\x27\x92\x28\xa3\x7b\x1a\xa3\x8d\x2b\x0c\xe2\x45\xeb\ +\xa6\x38\xff\x54\x1e\xf6\x0e\x51\xb7\x4e\x96\x81\xf4\x50\xee\xd5\ +\x79\xb4\xac\x0a\x09\x0e\x73\xdd\x79\x4b\x06\x30\x22\x86\xb6\x6f\ +\x5a\xb6\x27\xec\x45\x6d\x0b\x16\x21\x2b\xb8\x77\x44\xa9\xf4\x0e\ +\x80\xfb\x0d\x8e\xa4\x12\x89\xbf\x2d\x34\xbc\x96\x60\x83\x82\x60\ +\x90\x59\x65\x28\xea\x97\xcd\x33\x27\x4e\xd8\x51\x2e\x82\x2c\x93\ +\x15\x0b\x74\x00\x37\x50\x78\x78\x37\xad\x16\x63\x6e\x71\x79\x83\ +\xa7\x68\x6f\xc1\xe2\x06\xb4\x79\x19\x3d\x39\xd4\x63\x8e\xca\xa5\ +\xcf\x3c\xe6\x4a\xe3\xd1\xaa\x05\x3a\x76\x86\x51\x37\x57\xf3\x3f\ +\x55\x2e\x96\x48\x61\xea\x72\x5c\xfa\x6a\xb5\x56\x2d\x53\x15\x2e\ +\x93\x59\x0b\x0a\x46\x57\x6c\x29\x85\x6a\x6a\xe2\x4c\x62\xfd\x59\ +\x1a\x6f\x9a\xb3\x4b\xeb\xd9\x4e\x97\xae\x8c\xbe\xd0\xac\xb5\x54\ +\xad\x91\xef\x55\xef\xda\x1d\xf3\xf7\x3d\xda\xdf\xf7\x44\x96\xa4\ +\xde\xae\x0a\xbf\xbc\x16\x35\xa6\xbf\xd0\x92\x76\x27\x5f\xd2\x6e\ +\x1d\xe4\xdd\x51\x90\xd5\x5f\xab\xc2\x7f\x5c\x8b\x7a\xd9\x5f\x08\ +\xe4\x3d\x49\x41\x9e\xa7\x05\xa9\xd8\x99\xd1\x43\x4a\x3d\x4a\x1f\ +\x34\x59\xad\x20\x8f\xfa\xf4\x44\xfc\x71\xcc\x67\x24\x92\x00\xc3\ +\x91\xa9\xb8\x5e\x6a\x47\xe1\xeb\xc0\xe7\x58\x1c\x69\xad\xa9\xc7\ +\x14\xfe\x0f\xe0\x58\x8a\x0c\ +\x00\x00\x8c\x8f\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x0b\x38\x00\x00\x00\x58\x00\x00\x7f\x52\x00\x00\x00\x59\ +\x00\x00\x7f\xf3\x00\x00\x00\x5a\x00\x00\x80\x74\x00\x00\x05\xd9\ +\x00\x00\x7f\xb3\x00\x00\x05\xda\x00\x00\x7f\xd3\x00\x00\x05\xea\ +\x00\x00\x80\x54\x00\x00\x07\x78\x00\x00\x5a\x75\x00\x00\x48\x83\ +\x00\x00\x02\x05\x00\x00\x48\x83\x00\x00\x5f\x51\x00\x00\x68\x34\ +\x00\x00\x55\xf1\x00\x01\xc1\x87\x00\x00\x3b\xb6\x00\x04\xa6\x79\ +\x00\x00\x61\xa0\x00\x04\xbb\x04\x00\x00\x09\x34\x00\x04\xbb\x04\ +\x00\x00\x65\x7c\x00\x05\x30\x45\x00\x00\x0a\xad\x00\x05\x30\x45\ +\x00\x00\x71\x2f\x00\x05\x46\xc5\x00\x00\x0a\xd2\x00\x05\x46\xc5\ +\x00\x00\x71\xa3\x00\x05\x56\x45\x00\x00\x3c\x2f\x00\x05\x56\x45\ +\x00\x00\x72\x51\x00\x05\xac\xf4\x00\x00\x13\x30\x00\x05\xac\xf4\ +\x00\x00\x7c\xd3\x00\x05\xb8\xfd\x00\x00\x7d\x83\x00\x05\xcf\xc7\ +\x00\x00\x7d\xf7\x00\x06\xab\x8c\x00\x00\x56\xc9\x00\x10\x84\x49\ +\x00\x00\x46\x2b\x00\x12\x05\xba\x00\x00\x7b\x27\x00\x16\xc6\xda\ +\x00\x00\x6a\x8c\x00\x1f\xa4\xf7\x00\x00\x1c\x2e\x00\x2a\xa6\x79\ +\x00\x00\x5c\x79\x00\x2b\xc4\xaf\x00\x00\x5d\x67\x00\x2b\xe0\x65\ +\x00\x00\x5d\x92\x00\x39\xdf\x33\x00\x00\x28\x24\x00\x3a\x9e\x1b\ +\x00\x00\x50\x91\x00\x3d\xa1\x19\x00\x00\x60\x40\x00\x3e\x93\x83\ +\x00\x00\x29\x02\x00\x48\x8f\x7c\x00\x00\x1c\xf2\x00\x48\x98\x89\ +\x00\x00\x02\x9e\x00\x49\xe0\x85\x00\x00\x1a\xa6\x00\x49\xe0\x85\ +\x00\x00\x63\x9b\x00\x4a\x36\x45\x00\x00\x05\x10\x00\x4b\x66\x35\ +\x00\x00\x25\xbe\x00\x4b\x66\x37\x00\x00\x25\xfb\x00\x4b\x66\x39\ +\x00\x00\x26\x38\x00\x57\x60\x54\x00\x00\x0c\xb2\x00\x57\x60\x54\ +\x00\x00\x78\x2e\x00\x58\xfd\xf4\x00\x00\x3e\xfa\x00\x59\x98\x25\ +\x00\x00\x0e\xfb\x00\x59\x98\x25\x00\x00\x79\x66\x00\x6a\x58\x9a\ +\x00\x00\x74\x3c\x00\x79\xef\xd4\x00\x00\x5a\xad\x00\x7e\x7f\x0e\ +\x00\x00\x53\xb6\x00\x8a\x23\x95\x00\x00\x1f\x3c\x00\x8a\x23\x97\ +\x00\x00\x1f\x7c\x00\x8a\x23\x99\x00\x00\x1f\xbc\x00\x91\xbc\xe9\ +\x00\x00\x0a\xf9\x00\xa6\x37\x3f\x00\x00\x1e\x93\x00\xaa\x80\x25\ +\x00\x00\x64\x4b\x00\xac\xd6\x04\x00\x00\x31\x20\x00\xc0\xac\x63\ +\x00\x00\x64\xc7\x00\xc6\xe3\x6e\x00\x00\x1b\xc9\x00\xcb\xa8\x14\ +\x00\x00\x59\xf7\x00\xfc\x00\xca\x00\x00\x6e\xb4\x01\x19\x8d\xde\ +\x00\x00\x42\xf4\x01\x21\xd6\x39\x00\x00\x45\x82\x01\x22\xb4\xf9\ +\x00\x00\x0f\x24\x01\x2f\x8e\x7e\x00\x00\x4c\x30\x01\x48\xfe\xa3\ +\x00\x00\x29\x5e\x01\x53\xf3\xaa\x00\x00\x68\x3b\x01\x56\x16\x4a\ +\x00\x00\x6e\x63\x01\x5c\xde\xba\x00\x00\x72\x04\x01\x67\x0d\x8a\ +\x00\x00\x6b\xc3\x01\x69\x11\x7a\x00\x00\x76\xd3\x01\x69\x97\x98\ +\x00\x00\x2a\xe0\x01\x82\x39\x0a\x00\x00\x74\xaa\x01\x8b\x68\x75\ +\x00\x00\x7d\x44\x01\x8b\x89\x79\x00\x00\x05\x39\x01\xa1\x7f\x63\ +\x00\x00\x14\xe1\x01\xb1\x5d\x09\x00\x00\x50\xf4\x01\xc1\xd9\xde\ +\x00\x00\x47\x90\x01\xd2\x8f\xd3\x00\x00\x3f\x85\x01\xd4\x10\x23\ +\x00\x00\x30\x95\x01\xdd\x83\xfa\x00\x00\x73\x22\x01\xdf\x11\x43\ +\x00\x00\x04\x8a\x01\xe2\xf4\x5a\x00\x00\x7a\xe0\x01\xfc\xae\xd3\ +\x00\x00\x5a\xee\x02\x05\xbe\x25\x00\x00\x63\x3c\x02\x2c\xd9\x60\ +\x00\x00\x16\x59\x02\x2f\xb5\x14\x00\x00\x15\xce\x02\x46\x58\x0a\ +\x00\x00\x76\x61\x02\x57\xf8\x08\x00\x00\x08\x4e\x02\x65\xad\x62\ +\x00\x00\x81\x08\x02\x6e\x07\xe2\x00\x00\x41\xe2\x02\x76\x24\x13\ +\x00\x00\x2f\x1f\x02\x7d\xe0\x55\x00\x00\x42\xb0\x02\x94\x46\x1a\ +\x00\x00\x74\x73\x02\x95\xca\xb5\x00\x00\x27\x35\x02\xa7\x2c\x15\ +\x00\x00\x03\x98\x02\xaa\x36\x95\x00\x00\x5c\x1e\x02\xab\x87\xd4\ +\x00\x00\x5c\xa4\x02\xb1\xf0\xba\x00\x00\x6c\xcc\x02\xbf\xaa\x8e\ +\x00\x00\x2b\xa5\x02\xc0\x66\xf2\x00\x00\x49\xb8\x02\xc8\x3f\xf5\ +\x00\x00\x50\x13\x02\xd9\xa4\xb9\x00\x00\x55\xaa\x02\xdb\x1a\x94\ +\x00\x00\x06\x07\x03\x01\x84\xc4\x00\x00\x6f\x27\x03\x12\x97\x6a\ +\x00\x00\x6d\xee\x03\x14\x79\xca\x00\x00\x71\xc5\x03\x1a\x14\x14\ +\x00\x00\x24\x14\x03\x1a\x16\x59\x00\x00\x43\xb5\x03\x2f\x1a\x6a\ +\x00\x00\x5d\xf7\x03\x7e\xca\xb5\x00\x00\x38\x2e\x03\x85\x74\x48\ +\x00\x00\x35\x1e\x03\x88\x1f\xd4\x00\x00\x38\xcf\x03\x9e\x58\xa5\ +\x00\x00\x00\x32\x03\xb3\x9e\xfa\x00\x00\x75\x1c\x03\xb5\xc8\x9a\ +\x00\x00\x75\xf8\x03\xbd\xd4\xe4\x00\x00\x5e\x68\x03\xc4\x3c\xf5\ +\x00\x00\x60\x12\x03\xc5\xd5\x5e\x00\x00\x07\x5b\x03\xc5\xd5\x5e\ +\x00\x00\x64\x20\x03\xcb\x0d\xe5\x00\x00\x79\x89\x03\xdc\x0c\xd4\ +\x00\x00\x5c\xfd\x03\xe1\x78\x25\x00\x00\x62\x96\x03\xf2\x70\x35\ +\x00\x00\x21\x7a\x03\xf2\xbd\x60\x00\x00\x0f\xdc\x03\xfb\x0f\x04\ +\x00\x00\x23\xc0\x04\x21\x23\x23\x00\x00\x18\xc7\x04\x2e\x73\x33\ +\x00\x00\x52\xcd\x04\x56\x06\x93\x00\x00\x22\x6b\x04\x60\x7c\x15\ +\x00\x00\x78\x9a\x04\x79\xef\x9a\x00\x00\x6c\x7b\x04\x82\x77\xf4\ +\x00\x00\x42\x6e\x04\x87\x83\x87\x00\x00\x2e\x21\x04\x87\xf9\x9e\ +\x00\x00\x6f\xb6\x04\x8c\xd6\xae\x00\x00\x4f\x36\x04\x8e\xbd\xda\ +\x00\x00\x66\xe7\x04\xa0\x8a\x25\x00\x00\x04\x61\x04\xa0\x8a\x25\ +\x00\x00\x60\xdb\x04\xa4\x31\x5a\x00\x00\x70\xe7\x04\xa8\xeb\x85\ +\x00\x00\x26\x75\x04\xbe\x0a\xf8\x00\x00\x3e\x9f\x04\xd6\xd6\x12\ +\x00\x00\x40\xc1\x04\xe1\x6e\xe3\x00\x00\x07\xc1\x04\xe4\x0f\x75\ +\x00\x00\x01\xc1\x04\xeb\x41\xc3\x00\x00\x22\x14\x04\xef\xd9\xa8\ +\x00\x00\x3d\xf2\x05\x03\x83\x95\x00\x00\x58\x6e\x05\x05\xcb\x13\ +\x00\x00\x36\xea\x05\x0f\xf2\x74\x00\x00\x73\xb7\x05\x1b\x10\x59\ +\x00\x00\x3a\x0e\x05\x2a\xe5\x97\x00\x00\x40\x03\x05\x44\x3b\x5f\ +\x00\x00\x59\x71\x05\x5c\xd9\xc4\x00\x00\x0b\xa8\x05\x5c\xd9\xc4\ +\x00\x00\x72\x9e\x05\x63\xf6\x93\x00\x00\x3f\x33\x05\x65\xee\x65\ +\x00\x00\x66\xbc\x05\x87\xb0\xc3\x00\x00\x78\x76\x05\x96\xa8\xa5\ +\x00\x00\x0e\x27\x05\x96\xa8\xa5\x00\x00\x79\x42\x05\xad\x4b\xc3\ +\x00\x00\x38\x74\x05\xb2\xa6\xc6\x00\x00\x16\x91\x05\xb9\x03\xc8\ +\x00\x00\x16\xe4\x05\xbd\x0c\xba\x00\x00\x69\x21\x05\xbd\x8e\xde\ +\x00\x00\x4e\x56\x05\xbe\x56\x93\x00\x00\x3d\xa0\x05\xc5\x50\x04\ +\x00\x00\x09\x5b\x05\xe5\x8e\x2e\x00\x00\x0c\xd9\x05\xfb\xdc\x83\ +\x00\x00\x37\x34\x06\x1e\xe6\xb5\x00\x00\x7c\xa6\x06\x29\xee\xa9\ +\x00\x00\x61\x2e\x06\x2a\x86\xcd\x00\x00\x42\x26\x06\x57\x19\xf4\ +\x00\x00\x00\x00\x06\x5a\xef\x15\x00\x00\x5c\x4a\x06\x5b\xd2\xb5\ +\x00\x00\x32\x0d\x06\x6c\x88\x8e\x00\x00\x35\xfd\x06\x74\x1d\x55\ +\x00\x00\x47\x28\x06\x8b\x96\x44\x00\x00\x09\xd5\x06\x97\x58\xc9\ +\x00\x00\x44\x0e\x06\xbc\x80\xa5\x00\x00\x15\x83\x06\xc9\xb8\x05\ +\x00\x00\x5e\xb4\x06\xe8\x05\x4e\x00\x00\x05\xb8\x06\xee\xaa\x57\ +\x00\x00\x7c\x07\x06\xf0\xcb\x25\x00\x00\x14\x23\x06\xfa\xff\xc3\ +\x00\x00\x37\xe6\x06\xfc\x1a\x14\x00\x00\x27\x7b\x06\xfc\xa0\x8a\ +\x00\x00\x73\xe4\x07\x08\x90\xe5\x00\x00\x20\x55\x07\x0d\xb7\xf7\ +\x00\x00\x2b\x34\x07\x0e\x86\x3e\x00\x00\x14\x70\x07\x2a\x23\x65\ +\x00\x00\x2a\x75\x07\x35\x68\x6e\x00\x00\x10\x89\x07\x35\xe8\x9a\ +\x00\x00\x77\x04\x07\x44\x41\x2a\x00\x00\x67\xe8\x07\x4a\x1f\x63\ +\x00\x00\x01\x46\x07\x4d\x73\x22\x00\x00\x71\x4f\x07\x4e\xa6\xf2\ +\x00\x00\x65\xcb\x07\x58\xcb\xe8\x00\x00\x71\x7b\x07\x63\xfe\x0e\ +\x00\x00\x0d\x60\x07\x63\xfe\x0e\x00\x00\x78\x4f\x07\x71\xad\x43\ +\x00\x00\x11\x2e\x07\x80\xc6\xb3\x00\x00\x7f\x26\x07\x88\x72\x5a\ +\x00\x00\x5f\x9d\x07\x91\x78\x5e\x00\x00\x19\xa3\x07\xa7\x30\x05\ +\x00\x00\x5f\x72\x07\xc1\xfc\x13\x00\x00\x23\x04\x07\xe7\xec\x93\ +\x00\x00\x52\x01\x08\x27\xb4\xba\x00\x00\x75\xbd\x08\x32\xc4\xaa\ +\x00\x00\x77\x83\x08\x36\x74\x14\x00\x00\x1b\x84\x08\x44\xb9\x83\ +\x00\x00\x27\xd0\x08\x49\xc9\x30\x00\x00\x10\x14\x08\x61\x7c\xb3\ +\x00\x00\x17\x15\x08\xa2\xca\x67\x00\x00\x43\x73\x08\xa3\xe0\x33\ +\x00\x00\x62\x09\x08\xb1\x15\x28\x00\x00\x23\x75\x08\xb4\x04\x04\ +\x00\x00\x78\xf1\x08\xd0\x32\xf4\x00\x00\x65\x9e\x08\xd4\xcd\x69\ +\x00\x00\x65\xf7\x08\xe1\x9b\xbe\x00\x00\x13\xab\x08\xe1\xc1\xfa\ +\x00\x00\x67\x76\x08\xef\x4d\x7a\x00\x00\x63\xc4\x09\x20\xda\x24\ +\x00\x00\x80\x10\x09\x20\xda\xb4\x00\x00\x80\x91\x09\x20\xda\xd4\ +\x00\x00\x7f\x6f\x09\x4d\x96\xd9\x00\x00\x1c\x73\x09\x65\xda\x8a\ +\x00\x00\x6a\x41\x09\x68\x0d\x29\x00\x00\x70\x42\x09\x71\x8d\x25\ +\x00\x00\x05\x82\x09\x75\x23\x14\x00\x00\x5d\xbd\x09\x76\xed\x34\ +\x00\x00\x51\xbf\x09\x86\xa6\x05\x00\x00\x1a\xd4\x09\x8b\x23\xba\ +\x00\x00\x77\xc0\x09\x9e\xfd\x7e\x00\x00\x52\x67\x09\xb6\x2a\x63\ +\x00\x00\x26\xc7\x09\xcd\x1c\x55\x00\x00\x79\xb7\x09\xd2\x21\xea\ +\x00\x00\x4c\xd7\x09\xe5\x23\x0e\x00\x00\x49\x17\x09\xec\x2b\x45\ +\x00\x00\x09\x9d\x09\xef\x33\xa3\x00\x00\x11\xa0\x09\xf0\x1f\x6e\ +\x00\x00\x02\x2a\x09\xfd\x45\x1a\x00\x00\x74\xe3\x0a\x09\xc1\x7a\ +\x00\x00\x76\x98\x0a\x28\x9a\x65\x00\x00\x41\x1f\x0a\x28\x9a\x67\ +\x00\x00\x41\x60\x0a\x28\x9a\x69\x00\x00\x41\xa1\x0a\x2d\xbe\xe4\ +\x00\x00\x24\x63\x0a\x35\xa9\xfa\x00\x00\x6d\x20\x0a\x3f\x27\x74\ +\x00\x00\x63\x6e\x0a\x40\xa1\xe3\x00\x00\x21\xcb\x0a\x49\xa5\x4a\ +\x00\x00\x7c\xf5\x0a\x60\xe0\x15\x00\x00\x1d\x33\x0a\x60\xe0\x17\ +\x00\x00\x1d\x7a\x0a\x60\xe0\x19\x00\x00\x1d\xc1\x0a\x65\x9b\xea\ +\x00\x00\x72\xc2\x0a\x78\x05\x80\x00\x00\x00\xdd\x0a\x7f\x8f\x65\ +\x00\x00\x2f\xca\x0a\x81\xe4\x23\x00\x00\x32\xcd\x0a\x86\x10\x44\ +\x00\x00\x0c\x72\x0a\x98\x86\x18\x00\x00\x1f\xfc\x0a\x99\x5c\xaa\ +\x00\x00\x77\xf8\x0a\xa8\x16\x95\x00\x00\x0d\xf6\x0a\xa8\x16\x95\ +\x00\x00\x78\xca\x0a\xa9\x89\xec\x00\x00\x39\x18\x0a\xc8\x5c\x59\ +\x00\x00\x0b\xd3\x0a\xd0\x50\xb8\x00\x00\x5c\xd0\x0a\xd0\xe6\xf5\ +\x00\x00\x10\xf5\x0a\xd6\xf1\xfa\x00\x00\x65\x3f\x0a\xeb\x91\x88\ +\x00\x00\x51\x5c\x0b\x07\x78\x8a\x00\x00\x69\xe0\x0b\x1b\xe0\x73\ +\x00\x00\x44\x62\x0b\x24\x9d\xb4\x00\x00\x44\xfb\x0b\x24\xc5\xc9\ +\x00\x00\x0e\x52\x0b\x26\x7e\x0e\x00\x00\x62\xd4\x0b\x2b\x50\xfa\ +\x00\x00\x6c\x24\x0b\x2d\xb3\xf9\x00\x00\x55\x1c\x0b\x37\x73\x69\ +\x00\x00\x7e\x19\x0b\x40\x40\x3e\x00\x00\x3a\x5c\x0b\x43\xcd\x19\ +\x00\x00\x39\x6e\x0b\x4f\x98\xba\x00\x00\x6a\xdc\x0b\x66\x28\xd2\ +\x00\x00\x50\x52\x0b\x88\xe0\x07\x00\x00\x08\xa2\x0b\x94\x44\xc5\ +\x00\x00\x24\xb4\x0b\x98\x12\xaa\x00\x00\x68\xa4\x0b\xa0\x84\x94\ +\x00\x00\x02\xc7\x0b\xb3\x46\x6a\x00\x00\x61\xc2\x0b\xc2\x99\x6a\ +\x00\x00\x69\x73\x0b\xd3\x27\xae\x00\x00\x03\xcc\x0b\xd4\x7e\x9e\ +\x00\x00\x08\xcf\x0b\xf5\xee\x53\x00\x00\x72\x71\x0c\x06\x50\x2e\ +\x00\x00\x0a\x2c\x0c\x19\xfa\x99\x00\x00\x66\x51\x0c\x21\x0a\x83\ +\x00\x00\x60\xfd\x0c\x28\x9b\x45\x00\x00\x5d\x38\x0c\x31\x7e\x4a\ +\x00\x00\x75\x51\x0c\x38\x4d\xe5\x00\x00\x06\x3c\x0c\x3a\x16\xd0\ +\x00\x00\x12\xd8\x0c\x5a\xc0\xc8\x00\x00\x5f\xe8\x0c\x6e\x87\xf5\ +\x00\x00\x19\x76\x0c\x7c\xe0\xa6\x00\x00\x16\x06\x0c\x80\x3b\x33\ +\x00\x00\x65\x01\x0c\x91\xa0\x7a\x00\x00\x7c\x67\x0c\x96\x90\x59\ +\x00\x00\x39\xb9\x0c\xbe\xa7\x4e\x00\x00\x34\x37\x0c\xca\xdd\xfa\ +\x00\x00\x7b\x6d\x0c\xd6\xef\x12\x00\x00\x22\xbd\x0c\xde\x99\x49\ +\x00\x00\x55\x62\x0c\xe1\x21\x02\x00\x00\x40\x66\x0c\xe2\x77\x73\ +\x00\x00\x57\x07\x0c\xf0\xde\xaa\x00\x00\x6b\x5f\x0d\x1c\xf6\xee\ +\x00\x00\x20\xec\x0d\x3a\x6c\xba\x00\x00\x75\x85\x0d\x45\xe2\x6a\ +\x00\x00\x7a\x99\x0d\x59\xa1\x45\x00\x00\x64\x71\x0d\x5a\xad\x33\ +\x00\x00\x5f\x10\x0d\x5e\xe7\x6e\x00\x00\x1e\x08\x0d\x64\xa5\xd9\ +\x00\x00\x4b\xac\x0d\x6d\xf8\xf4\x00\x00\x06\xaf\x0d\x74\xdd\x52\ +\x00\x00\x12\x4b\x0d\x76\xb5\x92\x00\x00\x21\x2e\x0d\x9b\xec\xc9\ +\x00\x00\x46\xd7\x0d\xa5\xd9\x94\x00\x00\x20\xa5\x0d\xa6\xda\xa4\ +\x00\x00\x3b\x11\x0d\xa7\xb9\xc2\x00\x00\x12\x88\x0d\xc6\xc6\x2a\ +\x00\x00\x77\x43\x0d\xf2\x39\xba\x00\x00\x6d\x85\x0e\x1a\x1d\xc3\ +\x00\x00\x37\x84\x0e\x29\x94\x64\x00\x00\x2c\x84\x0e\x2b\x04\x15\ +\x00\x00\x62\x69\x0e\x2c\xe4\x2a\x00\x00\x7a\x56\x0e\x4e\xcc\xc5\ +\x00\x00\x07\x90\x0e\x6f\x9a\x1a\x00\x00\x7b\xbf\x0e\x7b\x7a\x2c\ +\x00\x00\x25\x66\x0e\x8f\x6a\x37\x00\x00\x28\xbc\x0e\x91\x65\xf5\ +\x00\x00\x13\x57\x0e\xca\xd7\x34\x00\x00\x18\x19\x0e\xcd\x1c\x55\ +\x00\x00\x79\xec\x0e\xcd\x1c\x65\x00\x00\x7a\x21\x0e\xcd\x5b\x59\ +\x00\x00\x3e\x4e\x0e\xea\xe5\x03\x00\x00\x5b\x51\x0e\xed\xe1\xf9\ +\x00\x00\x3c\x67\x0f\x07\x8d\xe3\x00\x00\x5b\xb7\x0f\x0b\x10\x53\ +\x00\x00\x3b\x65\x0f\x17\x82\x4e\x00\x00\x00\x9b\x0f\x1f\x8d\xa5\ +\x00\x00\x62\x33\x0f\x4f\x75\x3a\x00\x00\x80\xd5\x0f\x5f\xca\xd5\ +\x00\x00\x25\x07\x0f\x77\xc3\xb4\x00\x00\x56\x2c\x0f\x89\x0b\xbe\ +\x00\x00\x3c\xb1\x0f\x8f\xa8\xa7\x00\x00\x12\x0a\x0f\x98\x0a\x39\ +\x00\x00\x7d\xa5\x0f\x9e\xec\xa0\x00\x00\x0d\x8f\x0f\xbf\x87\xa3\ +\x00\x00\x70\xb3\x0f\xcd\xce\x95\x00\x00\x28\x6e\x0f\xdf\x21\x05\ +\x00\x00\x1b\x37\x0f\xf6\x06\x1e\x00\x00\x18\x57\x0f\xf6\x29\x0a\ +\x00\x00\x5e\xda\x0f\xfb\x5f\xae\x00\x00\x63\x0a\x69\x00\x00\x81\ +\x3d\x03\x00\x00\x00\x06\x6d\xfb\x52\xa0\x70\xb9\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x41\x64\x64\x20\x50\x6f\x69\x6e\x74\x07\ +\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x50\x6f\x69\ +\x6e\x74\x01\x03\x00\x00\x00\x1e\x6d\xfb\x52\xa0\x70\xb9\x81\xf3\ +\x73\xb0\x67\x09\x59\x1a\x6b\xb5\x7e\xbf\x00\x2f\x00\x42\x68\x37\ +\x67\x61\x66\xf2\x7e\xbf\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\ +\x41\x64\x64\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x74\x6f\x20\ +\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x77\x69\x72\x65\ +\x2f\x62\x73\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x0e\x44\x72\x61\ +\x66\x74\x5f\x41\x64\x64\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\ +\x0e\x6d\xfb\x52\xa0\x52\x30\x7e\xc4\x00\x2e\x00\x2e\x00\x2e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x41\x64\x64\x20\x74\x6f\x20\ +\x67\x72\x6f\x75\x70\x2e\x2e\x2e\x07\x00\x00\x00\x10\x44\x72\x61\ +\x66\x74\x5f\x41\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\x01\x03\x00\ +\x00\x00\x14\x6d\xfb\x52\xa0\x90\x09\x4e\x2d\x5b\xf9\x8c\x61\x81\ +\xf3\x73\xb0\x67\x09\x7e\xc4\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x30\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x28\x73\x29\x20\x74\x6f\x20\ +\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x67\x72\x6f\x75\ +\x70\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x54\ +\x6f\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x1e\x5c\x06\x5f\x53\ +\x52\x4d\x7e\xbf\x5b\xbd\x53\xca\x98\x9c\x82\x72\x5e\x94\x75\x28\ +\x52\x30\x90\x09\x4e\x2d\x5b\xf9\x8c\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x38\x41\x70\x70\x6c\x69\x65\x73\x20\x63\x75\x72\x72\ +\x65\x6e\x74\x20\x6c\x69\x6e\x65\x20\x77\x69\x64\x74\x68\x20\x61\ +\x6e\x64\x20\x63\x6f\x6c\x6f\x72\x20\x74\x6f\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\ +\x10\x44\x72\x61\x66\x74\x5f\x41\x70\x70\x6c\x79\x53\x74\x79\x6c\ +\x65\x01\x03\x00\x00\x00\x0c\x5e\x94\x75\x28\x5f\x53\x52\x4d\x68\ +\x37\x5f\x0f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x41\x70\x70\ +\x6c\x79\x20\x43\x75\x72\x72\x65\x6e\x74\x20\x53\x74\x79\x6c\x65\ +\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x70\x70\x6c\x79\ +\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\x04\x57\x06\x5f\x27\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\x72\x63\x07\x00\x00\x00\ +\x09\x44\x72\x61\x66\x74\x5f\x41\x72\x63\x01\x03\x00\x00\x00\x26\ +\x52\x1b\x5e\xfa\x57\x06\x5f\x27\x00\x2e\x00\x43\x00\x54\x00\x52\ +\x00\x4c\x63\x55\x63\x49\x00\x2c\x00\x53\x00\x68\x00\x69\x00\x66\ +\x00\x74\x7e\xa6\x67\x5f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x72\x63\x2e\x20\ +\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\ +\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\ +\x07\x00\x00\x00\x09\x44\x72\x61\x66\x74\x5f\x41\x72\x63\x01\x03\ +\x00\x00\x00\x04\x96\x35\x52\x17\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x41\x72\x72\x61\x79\x07\x00\x00\x00\x0b\x44\x72\x61\x66\ +\x74\x5f\x41\x72\x72\x61\x79\x01\x03\x00\x00\x00\x76\x00\x43\x00\ +\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\ +\x20\x00\x70\x00\x6f\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x6f\x00\ +\x72\x00\x20\x00\x72\x00\x65\x00\x63\x00\x74\x00\x61\x00\x6e\x00\ +\x67\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x61\x00\x72\x00\ +\x72\x00\x61\x00\x79\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ +\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3b\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x70\x6f\x6c\x61\x72\x20\x6f\x72\x20\ +\x72\x65\x63\x74\x61\x6e\x67\x75\x6c\x61\x72\x20\x61\x72\x72\x61\ +\x79\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x0b\x44\x72\x61\ +\x66\x74\x5f\x41\x72\x72\x61\x79\x01\x03\x00\x00\x00\x0a\x00\x42\ +\x68\x37\x67\x61\x66\xf2\x7e\xbf\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x08\x42\x2d\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x0d\x44\ +\x72\x61\x66\x74\x5f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\ +\x00\x30\x52\x1b\x5e\xfa\x59\x1a\x70\xb9\x00\x42\x68\x37\x67\x61\ +\x66\xf2\x7e\xbf\x00\x2e\x00\x43\x00\x74\x00\x72\x00\x6c\x63\x55\ +\x63\x49\x00\x2c\x00\x53\x00\x68\x00\x69\x00\x66\x00\x74\x7e\xa6\ +\x67\x5f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\x70\ +\x6f\x69\x6e\x74\x20\x62\x2d\x73\x70\x6c\x69\x6e\x65\x2e\x20\x43\ +\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\ +\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\ +\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x42\x53\x70\x6c\x69\x6e\ +\x65\x01\x03\x00\x00\x00\x02\x57\x06\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x06\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x0c\x44\x72\ +\x61\x66\x74\x5f\x43\x69\x72\x63\x6c\x65\x01\x03\x00\x00\x00\x28\ +\x52\x1b\x5e\xfa\x57\x06\x00\x2e\x00\x43\x00\x74\x00\x72\x00\x6c\ +\x63\x55\x63\x49\x00\x2c\x00\x41\x00\x6c\x00\x74\x90\x09\x62\xe9\ +\x76\xf8\x52\x07\x5b\xf9\x8c\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x3d\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x69\x72\x63\ +\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\ +\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x20\ +\x74\x61\x6e\x67\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\ +\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x43\x69\x72\x63\x6c\x65\ +\x01\x03\x00\x00\x00\x04\x51\x4b\x96\x86\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x43\x6c\x6f\x6e\x65\x07\x00\x00\x00\x0b\x44\x72\ +\x61\x66\x74\x5f\x43\x6c\x6f\x6e\x65\x01\x03\x00\x00\x00\x0c\x51\ +\x4b\x96\x86\x62\x40\x90\x09\x5b\xf9\x8c\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1d\x43\x6c\x6f\x6e\x65\x73\x20\x74\x68\x65\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x28\ +\x73\x29\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\ +\x6e\x65\x01\x03\x00\x00\x00\x08\x95\xed\x54\x08\x7e\xbf\x6b\xb5\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6c\x6f\x73\x65\x20\ +\x4c\x69\x6e\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\ +\x6c\x6f\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x10\x95\xed\ +\x54\x08\x5f\x53\x52\x4d\x7e\xd8\x52\x36\x7e\xbf\x6b\xb5\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1b\x43\x6c\x6f\x73\x65\x73\x20\x74\ +\x68\x65\x20\x6c\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\x20\x64\x72\ +\x61\x77\x6e\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\x6c\ +\x6f\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x06\x52\x20\x96\ +\x64\x70\xb9\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x52\x65\x6d\ +\x6f\x76\x65\x20\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x0e\x44\x72\ +\x61\x66\x74\x5f\x44\x65\x6c\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\ +\x00\x20\x81\xea\x73\xb0\x67\x09\x59\x1a\x6b\xb5\x7e\xbf\x62\x16\ +\x00\x42\x68\x37\x67\x61\x66\xf2\x7e\xbf\x4e\x0a\x52\x20\x96\x64\ +\x70\xb9\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x52\x65\x6d\x6f\ +\x76\x65\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x66\x72\x6f\x6d\ +\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x77\x69\x72\ +\x65\x20\x6f\x72\x20\x62\x73\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\ +\x0e\x44\x72\x61\x66\x74\x5f\x44\x65\x6c\x50\x6f\x69\x6e\x74\x01\ +\x03\x00\x00\x00\x3a\x52\x1b\x5e\xfa\x5c\x3a\x5b\xf8\x68\x07\x6c\ +\xe8\x00\x2e\x00\x43\x00\x74\x00\x72\x00\x6c\x63\x55\x63\x49\x00\ +\x2c\x00\x53\x00\x68\x00\x69\x00\x66\x00\x74\x7e\xa6\x67\x5f\x00\ +\x2c\x00\x41\x00\x6c\x00\x74\x90\x09\x62\xe9\x7e\xbf\x6b\xb5\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x4e\x43\x72\x65\x61\x74\x65\x73\ +\x20\x61\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x2e\x20\x43\x54\ +\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\ +\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\ +\x41\x4c\x54\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x20\x61\x20\ +\x73\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x0f\x44\x72\x61\x66\ +\x74\x5f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x01\x03\x00\x00\x00\ +\x08\x5c\x3a\x5b\xf8\x68\x07\x6c\xe8\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\ +\x0f\x44\x72\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ +\x01\x03\x00\x00\x00\x04\x96\x4d\x7e\xa7\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x07\x00\x00\ +\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\x64\ +\x65\x01\x03\x00\x00\x00\x24\x52\x06\x89\xe3\x90\x09\x5b\x9a\x5b\ +\xf9\x8c\x61\x4e\x3a\x7b\x80\x53\x55\x5b\xf9\x8c\x61\x00\x2c\x62\ +\x16\x53\xbb\x96\x64\x58\x6b\x51\x45\x97\x62\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x45\x45\x78\x70\x6c\x6f\x64\x65\x73\x20\x74\x68\ +\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x69\x6e\x74\x6f\x20\x73\x69\x6d\x70\x6c\x65\x72\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x2c\x20\x6f\x72\x20\x73\x75\x62\x74\ +\x72\x61\x63\x74\x20\x66\x61\x63\x65\x73\x07\x00\x00\x00\x0f\x44\ +\x72\x61\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\x03\ +\x00\x00\x00\x1e\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\x00\x63\ +\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x44\x72\x61\x66\ +\x74\x20\x74\x6f\x20\x53\x6b\x65\x74\x63\x68\x07\x00\x00\x00\x12\ +\x44\x72\x61\x66\x74\x5f\x44\x72\x61\x66\x74\x32\x53\x6b\x65\x74\ +\x63\x68\x01\x03\x00\x00\x00\x04\x56\xfe\x7e\xb8\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x07\x44\x72\x61\x77\x69\x6e\x67\x07\x00\x00\ +\x00\x0d\x44\x72\x61\x66\x74\x5f\x44\x72\x61\x77\x69\x6e\x67\x01\ +\x03\x00\x00\x00\x16\x5c\x06\x90\x09\x4e\x2d\x5b\xf9\x8c\x61\x65\ +\x3e\x7f\x6e\x52\x30\x56\xfe\x7e\xb8\x00\x2e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2d\x50\x75\x74\x73\x20\x74\x68\x65\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x6f\ +\x6e\x20\x61\x20\x44\x72\x61\x77\x69\x6e\x67\x20\x73\x68\x65\x65\ +\x74\x2e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x44\x72\x61\ +\x77\x69\x6e\x67\x01\x03\x00\x00\x00\x04\x7f\x16\x8f\x91\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\ +\x0a\x44\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\ +\x0c\x7f\x16\x8f\x91\x5f\x53\x52\x4d\x5b\xf9\x8c\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x45\x64\x69\x74\x73\x20\x74\x68\x65\ +\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\ +\x00\x00\x08\x5b\x8c\x62\x10\x7e\xbf\x6b\xb5\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0b\x46\x69\x6e\x69\x73\x68\x20\x6c\x69\x6e\x65\ +\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\x69\x73\ +\x68\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x10\x5b\x8c\x62\x10\x7e\ +\xbf\x6b\xb5\x4f\x46\x4e\x0d\x95\xed\x54\x08\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x22\x46\x69\x6e\x69\x73\x68\x65\x73\x20\x61\x20\ +\x6c\x69\x6e\x65\x20\x77\x69\x74\x68\x6f\x75\x74\x20\x63\x6c\x6f\ +\x73\x69\x6e\x67\x20\x69\x74\x07\x00\x00\x00\x10\x44\x72\x61\x66\ +\x74\x5f\x46\x69\x6e\x69\x73\x68\x4c\x69\x6e\x65\x01\x03\x00\x00\ +\x00\x2a\x4e\x24\x70\xb9\x52\x1b\x5e\xfa\x7e\xbf\x6b\xb5\x00\x2e\ +\x00\x43\x00\x74\x00\x72\x00\x6c\x63\x55\x63\x49\x00\x2c\x00\x53\ +\x00\x68\x00\x69\x00\x66\x00\x74\x7e\xa6\x67\x5f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x38\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ +\x32\x2d\x70\x6f\x69\x6e\x74\x20\x6c\x69\x6e\x65\x2e\x20\x43\x54\ +\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\ +\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\ +\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4c\x69\x6e\x65\x01\x03\x00\ +\x00\x00\x02\x7e\xbf\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4c\ +\x69\x6e\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4c\x69\ +\x6e\x65\x01\x03\x00\x00\x00\x04\x79\xfb\x52\xa8\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x4d\x6f\x76\x65\x07\x00\x00\x00\x0a\x44\ +\x72\x61\x66\x74\x5f\x4d\x6f\x76\x65\x01\x03\x00\x00\x00\x36\x79\ +\xfb\x52\xa8\x90\x09\x4e\x2d\x5b\xf9\x8c\x61\x00\x2e\x00\x43\x00\ +\x74\x00\x72\x00\x6c\x63\x55\x63\x49\x00\x2c\x00\x53\x00\x68\x00\ +\x69\x00\x66\x00\x74\x7e\xa6\x67\x5f\x00\x2c\x00\x41\x00\x6c\x00\ +\x74\x59\x0d\x52\x36\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5a\x4d\ +\x6f\x76\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\x74\x77\x65\x65\ +\x6e\x20\x32\x20\x70\x6f\x69\x6e\x74\x73\x2e\x20\x43\x54\x52\x4c\ +\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\ +\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\ +\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0a\x44\x72\ +\x61\x66\x74\x5f\x4d\x6f\x76\x65\x01\x03\x00\x00\x00\x04\x50\x4f\ +\x79\xfb\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x4f\x66\x66\x73\ +\x65\x74\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x4f\x66\x66\ +\x73\x65\x74\x01\x03\x00\x00\x00\x36\x50\x4f\x79\xfb\x5f\x53\x52\ +\x4d\x5b\xf9\x8c\x61\x00\x2e\x00\x43\x00\x74\x00\x72\x00\x6c\x63\ +\x55\x63\x49\x00\x2c\x00\x53\x00\x68\x00\x69\x00\x66\x00\x74\x7e\ +\xa6\x67\x5f\x00\x2c\x00\x41\x00\x6c\x00\x74\x59\x0d\x52\x36\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x48\x4f\x66\x66\x73\x65\x74\x73\ +\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\ +\x63\x74\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\ +\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\ +\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\ +\x79\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x4f\x66\x66\x73\ +\x65\x74\x01\x03\x00\x00\x00\x0a\x52\x1b\x5e\xfa\x70\xb9\x5b\xf9\ +\x8c\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x6f\x62\x6a\x65\ +\x63\x74\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x50\x6f\x69\ +\x6e\x74\x01\x03\x00\x00\x00\x02\x70\xb9\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x0b\x44\x72\ +\x61\x66\x74\x5f\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x2a\x52\ +\x1b\x5e\xfa\x6b\x63\x59\x1a\x8f\xb9\x5f\x62\x00\x2e\x00\x43\x00\ +\x54\x00\x52\x00\x4c\x63\x55\x63\x49\x00\x2c\x00\x53\x00\x68\x00\ +\x69\x00\x66\x00\x74\x7e\xa6\x67\x5f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x3b\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x72\x65\x67\ +\x75\x6c\x61\x72\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x2e\x20\x43\x54\ +\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\ +\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\ +\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\ +\x01\x03\x00\x00\x00\x06\x59\x1a\x8f\xb9\x5f\x62\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x07\x50\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\ +\x00\x0d\x44\x72\x61\x66\x74\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\ +\x03\x00\x00\x00\x1a\x4e\x24\x70\xb9\x52\x1b\x5e\xfa\x77\xe9\x5f\ +\x62\x00\x2e\x00\x43\x00\x74\x00\x72\x00\x6c\x63\x55\x63\x49\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x29\x43\x72\x65\x61\x74\x65\x73\ +\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\x74\x20\x72\x65\x63\x74\x61\ +\x6e\x67\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ +\x61\x70\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x52\x65\x63\ +\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\x04\x77\xe9\x5f\x62\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x52\x65\x63\x74\x61\x6e\ +\x67\x6c\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x52\x65\ +\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\x04\x65\xcb\x8f\ +\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x6f\x74\x61\x74\ +\x65\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\ +\x74\x65\x01\x03\x00\x00\x00\x36\x65\xcb\x8f\x6c\x90\x09\x4e\x2d\ +\x5b\xf9\x8c\x61\x00\x2e\x00\x43\x00\x54\x00\x52\x00\x4c\x63\x55\ +\x63\x49\x00\x2c\x00\x53\x00\x68\x00\x69\x00\x66\x00\x74\x7e\xa6\ +\x67\x5f\x00\x2c\x00\x41\x00\x6c\x00\x74\x59\x0d\x52\x36\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x52\x52\x6f\x74\x61\x74\x65\x73\x20\ +\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ +\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\ +\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x63\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0c\x44\ +\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\x01\x03\x00\x00\x00\ +\x04\x7f\x29\x65\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x53\ +\x63\x61\x6c\x65\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x53\ +\x63\x61\x6c\x65\x01\x03\x00\x00\x00\x3c\x81\xea\x57\xfa\x70\xb9\ +\x7f\x29\x65\x3e\x90\x09\x5b\x9a\x5b\xf9\x8c\x61\x00\x2e\x00\x43\ +\x00\x74\x00\x72\x00\x6c\x63\x55\x63\x49\x00\x2c\x00\x53\x00\x68\ +\x00\x69\x00\x66\x00\x74\x7e\xa6\x67\x5f\x00\x2c\x00\x41\x00\x6c\ +\x00\x74\x59\x0d\x52\x36\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5c\ +\x53\x63\x61\x6c\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x72\x6f\x6d\ +\x20\x61\x20\x62\x61\x73\x65\x20\x70\x6f\x69\x6e\x74\x2e\x20\x43\ +\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\ +\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\ +\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\ +\x0b\x44\x72\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\x01\x03\x00\x00\ +\x00\x06\x90\x09\x62\xe9\x7e\xc4\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0c\x53\x65\x6c\x65\x63\x74\x20\x67\x72\x6f\x75\x70\x07\x00\ +\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x47\ +\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x18\x90\x09\x62\xe9\x54\x0c\ +\x4e\x00\x72\x36\x7e\xa7\x4e\x0b\x76\x84\x62\x40\x67\x09\x5b\xf9\ +\x8c\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x53\x65\x6c\x65\ +\x63\x74\x73\x20\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x77\x69\x74\x68\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x70\x61\ +\x72\x65\x6e\x74\x73\x20\x61\x73\x20\x74\x68\x69\x73\x20\x67\x72\ +\x6f\x75\x70\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\ +\x6c\x65\x63\x74\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x1a\x90\ +\x09\x62\xe9\x5d\xe5\x4f\x5c\x5e\x73\x97\x62\x4e\xe5\x52\x1b\x5e\ +\xfa\x51\xe0\x4f\x55\x5b\xf9\x8c\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2c\x53\x65\x6c\x65\x63\x74\x20\x61\x20\x77\x6f\x72\x6b\ +\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x20\x66\x6f\x72\x20\x67\x65\ +\x6f\x6d\x65\x74\x72\x79\x20\x63\x72\x65\x61\x74\x69\x6f\x6e\x07\ +\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\ +\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x08\x90\x09\x62\xe9\x5e\ +\x73\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x65\x6c\ +\x65\x63\x74\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x44\x72\x61\ +\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x01\x03\ +\x00\x00\x00\x14\x7e\xd8\x56\xfe\x54\x8c\x83\x49\x7e\xd8\x95\xf4\ +\x53\xcc\x54\x11\x8f\x6c\x63\x62\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x38\x43\x6f\x6e\x76\x65\x72\x74\x20\x62\x69\x64\x69\x72\x65\ +\x63\x74\x69\x6f\x6e\x61\x6c\x6c\x79\x20\x62\x65\x74\x77\x65\x65\ +\x6e\x20\x44\x72\x61\x66\x74\x20\x61\x6e\x64\x20\x53\x6b\x65\x74\ +\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x11\x44\ +\x72\x61\x66\x74\x5f\x53\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\ +\x01\x03\x00\x00\x00\x1a\x52\x1b\x5e\xfa\x62\x40\x90\x09\x5b\xf9\ +\x8c\x61\x76\x84\x00\x32\x00\x44\x5f\x62\x4f\x53\x89\xc6\x56\xfe\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x43\x72\x65\x61\x74\x65\ +\x73\x20\x53\x68\x61\x70\x65\x20\x32\x44\x20\x76\x69\x65\x77\x73\ +\x20\x6f\x66\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\ +\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\x0e\ +\x00\x32\x00\x44\x00\x20\x5f\x62\x4f\x53\x89\xc6\x56\xfe\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x68\x61\x70\x65\x20\x32\x44\ +\x20\x76\x69\x65\x77\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\ +\x53\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\ +\x0a\x66\x3e\x79\x3a\x63\x55\x63\x49\x68\x0f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0d\x53\x68\x6f\x77\x20\x53\x6e\x61\x70\x20\x42\ +\x61\x72\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x6f\ +\x77\x53\x6e\x61\x70\x42\x61\x72\x01\x03\x00\x00\x00\x12\x66\x3e\ +\x79\x3a\x7e\xd8\x56\xfe\x63\x55\x63\x49\x5d\xe5\x51\x77\x68\x0f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x53\x68\x6f\x77\x73\x20\ +\x44\x72\x61\x66\x74\x20\x73\x6e\x61\x70\x20\x74\x6f\x6f\x6c\x62\ +\x61\x72\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x6f\ +\x77\x53\x6e\x61\x70\x42\x61\x72\x01\x03\x00\x00\x00\x16\x52\x1b\ +\x5e\xfa\x6c\xe8\x91\xca\x00\x2e\x00\x43\x00\x74\x00\x72\x00\x6c\ +\x63\x55\x63\x49\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x6e\x6e\x6f\x74\x61\x74\ +\x69\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\ +\x70\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\x78\x74\ +\x01\x03\x00\x00\x00\x04\x65\x87\x67\x2c\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x54\x65\x78\x74\x07\x00\x00\x00\x0a\x44\x72\x61\ +\x66\x74\x5f\x54\x65\x78\x74\x01\x03\x00\x00\x00\x0c\x52\x07\x63\ +\x62\x67\x84\x90\x20\x6a\x21\x5f\x0f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x17\x54\x6f\x67\x67\x6c\x65\x20\x63\x6f\x6e\x73\x74\x72\ +\x75\x63\x69\x6f\x6e\x20\x4d\x6f\x64\x65\x07\x00\x00\x00\x1c\x44\ +\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x73\x74\ +\x72\x75\x63\x74\x69\x6f\x6e\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\ +\x18\x52\x07\x63\x62\x54\x0e\x7e\xed\x5b\xf9\x8c\x61\x4e\x3a\x67\ +\x84\x90\x20\x6a\x21\x5f\x0f\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2f\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\x65\x20\x43\ +\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x65\ +\x20\x66\x6f\x72\x20\x6e\x65\x78\x74\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x2e\x07\x00\x00\x00\x1c\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\ +\x67\x6c\x65\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x4d\ +\x6f\x64\x65\x01\x03\x00\x00\x00\x0c\x52\x07\x63\x62\x8f\xde\x7e\ +\xed\x6a\x21\x5f\x0f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\ +\x6f\x67\x67\x6c\x65\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x20\x4d\ +\x6f\x64\x65\x07\x00\x00\x00\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\ +\x67\x67\x6c\x65\x43\x6f\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\ +\x01\x03\x00\x00\x00\x18\x54\x0e\x7e\xed\x54\x7d\x4e\xe4\x52\x07\ +\x63\x62\x4e\x3a\x8f\xde\x7e\xed\x6a\x21\x5f\x0f\x00\x2e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x2c\x54\x6f\x67\x67\x6c\x65\x73\x20\ +\x74\x68\x65\x20\x43\x6f\x6e\x74\x69\x6e\x75\x65\x20\x4d\x6f\x64\ +\x65\x20\x66\x6f\x72\x20\x6e\x65\x78\x74\x20\x63\x6f\x6d\x6d\x61\ +\x6e\x64\x73\x2e\x07\x00\x00\x00\x18\x44\x72\x61\x66\x74\x5f\x54\ +\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\ +\x65\x01\x03\x00\x00\x00\x30\x52\x07\x63\x62\x90\x09\x4e\x2d\x5b\ +\xf9\x8c\x61\x76\x84\x66\x3e\x79\x3a\x6a\x21\x5f\x0f\x4e\x3a\x00\ +\x22\x7e\xbf\x68\x46\x00\x22\x62\x16\x00\x22\x5e\x26\x8f\xb9\x68\ +\x46\x77\x40\x82\x72\x00\x22\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x46\x53\x77\x61\x70\x73\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x6d\ +\x6f\x64\x65\x20\x6f\x66\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\ +\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\x61\x6e\x64\x20\x66\x6c\ +\x61\x74\x6c\x69\x6e\x65\x73\x07\x00\x00\x00\x17\x44\x72\x61\x66\ +\x74\x5f\x54\x6f\x67\x67\x6c\x65\x44\x69\x73\x70\x6c\x61\x79\x4d\ +\x6f\x64\x65\x01\x03\x00\x00\x00\x0c\x52\x07\x63\x62\x66\x3e\x79\ +\x3a\x6a\x21\x5f\x0f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x54\ +\x6f\x67\x67\x6c\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x6d\x6f\ +\x64\x65\x07\x00\x00\x00\x17\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\ +\x67\x6c\x65\x44\x69\x73\x70\x6c\x61\x79\x4d\x6f\x64\x65\x01\x03\ +\x00\x00\x00\x08\x52\x07\x63\x62\x7f\x51\x68\x3c\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0b\x54\x6f\x67\x67\x6c\x65\x20\x47\x72\x69\ +\x64\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\ +\x6c\x65\x47\x72\x69\x64\x01\x03\x00\x00\x00\x12\x62\x53\x5f\x00\ +\x00\x2f\x51\x73\x95\xed\x7e\xd8\x56\xfe\x7f\x51\x68\x3c\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1c\x54\x6f\x67\x67\x6c\x65\x73\x20\ +\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x67\x69\x64\x20\x6f\x6e\ +\x2f\x6f\x66\x66\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x54\ +\x6f\x67\x67\x6c\x65\x47\x72\x69\x64\x01\x03\x00\x00\x00\x08\x52\ +\x07\x63\x62\x63\x55\x63\x49\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0b\x54\x6f\x67\x67\x6c\x65\x20\x73\x6e\x61\x70\x07\x00\x00\x00\ +\x10\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x53\x6e\x61\ +\x70\x01\x03\x00\x00\x00\x12\x62\x53\x5f\x00\x00\x2f\x51\x73\x95\ +\xed\x7e\xd8\x56\xfe\x63\x55\x63\x49\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1c\x54\x6f\x67\x67\x6c\x65\x73\x20\x44\x72\x61\x66\x74\ +\x20\x73\x6e\x61\x70\x20\x6f\x6e\x20\x6f\x72\x20\x6f\x66\x66\x07\ +\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\ +\x53\x6e\x61\x70\x01\x03\x00\x00\x00\x0a\x4f\xee\x52\x6a\x00\x2f\ +\x5e\xf6\x4f\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x54\x72\ +\x69\x6d\x65\x78\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x54\ +\x72\x69\x6d\x65\x78\x01\x03\x00\x00\x00\x5a\x4f\xee\x52\x6a\x62\ +\x16\x5e\xf6\x4f\x38\x62\x40\x90\x09\x5b\xf9\x8c\x61\x00\x2c\x62\ +\x16\x62\xc9\x4f\x38\x53\x55\x4e\x00\x97\x62\x00\x2e\x00\x20\x00\ +\x43\x00\x54\x00\x52\x00\x4c\x63\x55\x63\x49\x00\x2c\x00\x73\x00\ +\x68\x00\x69\x00\x66\x00\x74\x7e\xa6\x67\x5f\x52\x30\x5f\x53\x52\ +\x4d\x6b\xb5\x62\x16\x6b\x63\x4e\xa4\x00\x2c\x00\x41\x00\x4c\x00\ +\x54\x53\xcd\x8f\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x89\x54\ +\x72\x69\x6d\x73\x20\x6f\x72\x20\x65\x78\x74\x65\x6e\x64\x73\x20\ +\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x2c\x20\x6f\x72\x20\x65\x78\x74\x72\x75\x64\x65\x73\ +\x20\x73\x69\x6e\x67\x6c\x65\x20\x66\x61\x63\x65\x73\x2e\x20\x43\ +\x54\x52\x4c\x20\x73\x6e\x61\x70\x73\x2c\x20\x53\x48\x49\x46\x54\ +\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x73\x20\x74\x6f\x20\x63\ +\x75\x72\x72\x65\x6e\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\ +\x72\x20\x74\x6f\x20\x6e\x6f\x72\x6d\x61\x6c\x2c\x20\x41\x4c\x54\ +\x20\x69\x6e\x76\x65\x72\x74\x73\x07\x00\x00\x00\x0c\x44\x72\x61\ +\x66\x74\x5f\x54\x72\x69\x6d\x65\x78\x01\x03\x00\x00\x00\x0a\x64\ +\xa4\x95\x00\x4e\x0a\x4e\x00\x6b\xb5\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x11\x55\x6e\x64\x6f\x20\x6c\x61\x73\x74\x20\x73\x65\x67\ +\x6d\x65\x6e\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x55\ +\x6e\x64\x6f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x18\x64\xa4\x95\ +\x00\x5f\x53\x52\x4d\x7e\xd8\x52\x36\x7e\xbf\x6b\xb5\x76\x84\x4e\ +\x0a\x4e\x00\x6b\xb5\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x55\ +\x6e\x64\x6f\x65\x73\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x64\ +\x72\x61\x77\x6e\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\x66\x20\ +\x74\x68\x65\x20\x6c\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\x20\x64\ +\x72\x61\x77\x6e\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x55\ +\x6e\x64\x6f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x30\x8f\xde\x63\ +\xa5\x90\x09\x4e\x2d\x5b\xf9\x8c\x61\x00\x2c\x62\x16\x5c\x06\x95\ +\xed\x54\x08\x7e\xbf\x68\x46\x8f\x6c\x53\x16\x4e\x3a\x58\x6b\x51\ +\x45\x97\x62\x00\x2c\x62\x16\x54\x08\x5e\x76\x97\x62\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x5d\x4a\x6f\x69\x6e\x73\x20\x74\x68\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x69\x6e\x74\x6f\x20\x6f\x6e\x65\x2c\x20\x6f\x72\x20\x63\ +\x6f\x6e\x76\x65\x72\x74\x73\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\ +\x69\x72\x65\x73\x20\x74\x6f\x20\x66\x69\x6c\x6c\x65\x64\x20\x66\ +\x61\x63\x65\x73\x2c\x20\x6f\x72\x20\x75\x6e\x69\x74\x65\x20\x66\ +\x61\x63\x65\x73\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x55\ +\x70\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x04\x53\x47\x7e\xa7\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x55\x70\x67\x72\x61\x64\ +\x65\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x55\x70\x67\x72\ +\x61\x64\x65\x01\x03\x00\x00\x00\x98\x00\x43\x00\x72\x00\x65\x00\ +\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x6d\x00\ +\x75\x00\x6c\x00\x74\x00\x69\x00\x70\x00\x6c\x00\x65\x00\x2d\x00\ +\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x44\x00\x72\x00\ +\x61\x00\x66\x00\x74\x00\x57\x00\x69\x00\x72\x00\x65\x00\x20\x00\ +\x28\x00\x44\x00\x57\x00\x69\x00\x72\x00\x65\x00\x29\x00\x2e\x00\ +\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x2c\x00\x20\x00\x53\x00\ +\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ +\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4c\x43\x72\x65\x61\x74\ +\x65\x73\x20\x61\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\x70\x6f\ +\x69\x6e\x74\x20\x44\x72\x61\x66\x74\x57\x69\x72\x65\x20\x28\x44\ +\x57\x69\x72\x65\x29\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\ +\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\ +\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\x72\x61\x66\ +\x74\x5f\x57\x69\x72\x65\x01\x03\x00\x00\x00\x0a\x00\x44\x00\x57\ +\x00\x69\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x44\x57\x69\x72\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\ +\x57\x69\x72\x65\x01\x03\x00\x00\x00\x1a\x59\x1a\x6b\xb5\x7e\xbf\ +\x54\x8c\x00\x42\x68\x37\x67\x61\x66\xf2\x7e\xbf\x76\xf8\x4e\x92\ +\x8f\x6c\x63\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x43\x6f\ +\x6e\x76\x65\x72\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x57\ +\x69\x72\x65\x20\x61\x6e\x64\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\ +\x00\x00\x00\x13\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x54\x6f\ +\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x16\x59\x1a\x6b\ +\xb5\x7e\xbf\x8f\x6c\x63\x62\x4e\x3a\x00\x42\x68\x37\x67\x61\x66\ +\xf2\x7e\xbf\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x57\x69\x72\ +\x65\x20\x74\x6f\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\ +\x13\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x54\x6f\x42\x53\x70\ +\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x0c\x00\x41\x00\x6c\x00\x74\ +\x00\x20\x6a\x21\x5f\x0f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ +\x41\x6c\x74\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x52\ +\x07\x63\x62\x00\x53\x00\x56\x00\x47\x68\x37\x5f\x0f\x76\x84\x4f\ +\x4d\x7f\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x41\x6c\x74\ +\x65\x72\x6e\x61\x74\x65\x20\x53\x56\x47\x20\x50\x61\x74\x74\x65\ +\x72\x6e\x73\x20\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x08\x60\x3b\x66\x2f\x66\x3e\x79\x3a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0b\x41\x6c\x77\x61\x79\x73\x20\x73\x68\x6f\ +\x77\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x20\x59\xcb\x7e\xc8\x63\x55\x63\ +\x49\x52\x30\x5b\xf9\x8c\x61\x00\x28\x79\x81\x75\x28\x63\x55\x63\ +\x49\x6a\x21\x5f\x0f\x95\x2e\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2d\x41\x6c\x77\x61\x79\x73\x20\x73\x6e\x61\x70\x20\x74\ +\x6f\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x28\x64\x69\x73\x61\x62\ +\x6c\x65\x20\x73\x6e\x61\x70\x20\x6d\x6f\x64\x20\x6b\x65\x79\x29\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x41\x00\x72\x00\x69\x00\x61\ +\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x72\x69\x61\ +\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x53\xcd\x65\x9c\x67\x60\x00\ +\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\x63\ +\x6b\x73\x6c\x61\x73\x68\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\ +\x53\xcd\x65\x9c\x67\x60\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x37\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0a\x53\xcd\x65\x9c\x67\x60\x00\x20\x00\ +\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\x73\ +\x6c\x61\x73\x68\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x90\x09\ +\x4e\x2d\x52\x19\x5b\xfc\x51\x65\x97\x62\x57\xdf\x00\x28\x00\x33\ +\x00\x44\x97\x62\x00\x29\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x3f\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\ +\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x68\x65\x20\x61\x72\x65\ +\x61\x73\x20\x28\x33\x44\x20\x66\x61\x63\x65\x73\x29\x20\x74\x6f\ +\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\ +\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x24\x90\x09\x4e\x2d\x52\x19\x5b\ +\xfc\x51\x65\x53\x3f\x54\x0d\x57\x57\x00\x28\x57\x57\x54\x0d\x4e\ +\xe5\x00\x22\x00\x2a\x00\x22\x5f\x00\x59\x34\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x53\x43\x68\x65\x63\x6b\x20\x74\x68\x69\ +\x73\x20\x69\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x68\ +\x65\x20\x6e\x6f\x6e\x2d\x6e\x61\x6d\x65\x64\x20\x62\x6c\x6f\x63\ +\x6b\x73\x20\x28\x62\x65\x67\x69\x6e\x6e\x69\x6e\x67\x20\x77\x69\ +\x74\x68\x20\x61\x20\x2a\x29\x20\x74\x6f\x20\x62\x65\x20\x69\x6d\ +\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x06\x57\x06\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x35\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x06\x57\x06\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x37\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x06\x57\x06\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x39\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0e\x98\x9c\x82\x72\x66\x20\x5c\x04\x52\x30\x7e\xbf\x5b\xbd\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x43\x6f\x6c\x6f\x72\x20\ +\x6d\x61\x70\x70\x65\x64\x20\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\ +\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x98\x9c\x82\x72\x66\ +\x20\x5c\x04\x65\x87\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x12\x43\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\ +\x69\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x7e\xa6\x67\x5f\x6a\ +\x21\x5f\x0f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\ +\x73\x74\x72\x61\x69\x6e\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x04\x67\x84\x90\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x08\x67\x84\x90\x20\x98\x9c\x82\x72\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x12\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\ +\x6f\x6e\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\ +\x67\x84\x90\x20\x7e\xc4\x54\x0d\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x17\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x67\ +\x72\x6f\x75\x70\x20\x6e\x61\x6d\x65\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x08\x52\x1b\x5e\xfa\x83\x49\x7e\xd8\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x43\x72\x65\x61\x74\x65\x20\x53\x6b\x65\x74\x63\x68\ +\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x52\x1b\x5e\xfa\x53\xc2\ +\x65\x70\x5b\xf9\x8c\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\ +\x43\x72\x65\x61\x74\x65\x20\x70\x61\x72\x61\x6d\x65\x74\x72\x69\ +\x63\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x0e\x00\x44\x00\x58\x00\x46\x68\x3c\x5f\x0f\x90\x09\x98\x79\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x12\x44\x58\x46\x20\x66\x6f\x72\ +\x6d\x61\x74\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x08\x9e\xd8\x8b\xa4\x98\x9c\x82\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0d\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ +\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x65\x87\x67\x2c\x53\xca\ +\x5c\x3a\x5b\xf8\x68\x07\x6c\xe8\x76\x84\x9e\xd8\x8b\xa4\x9a\xd8\ +\x5e\xa6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x44\x65\x66\x61\ +\x75\x6c\x74\x20\x68\x65\x69\x67\x68\x74\x20\x66\x6f\x72\x20\x74\ +\x65\x78\x74\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\ +\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x9e\xd8\x8b\xa4\x7e\ +\xbf\x5b\xbd\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\x65\x66\ +\x61\x75\x6c\x74\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0c\x9e\xd8\x8b\xa4\x56\xfe\x7e\xb8\x6a\x21\ +\x67\x7f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x44\x65\x66\x61\ +\x75\x6c\x74\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x20\x73\x68\x65\ +\x65\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x9e\xd8\x8b\xa4\x65\x87\ +\x67\x2c\x5b\x57\x4f\x53\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\ +\x44\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x78\x74\x20\x66\x6f\x6e\ +\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x9e\xd8\x8b\xa4\x65\x87\x67\ +\x2c\x9a\xd8\x5e\xa6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x44\ +\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x78\x74\x20\x68\x65\x69\x67\ +\x68\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x9e\xd8\x8b\xa4\x5d\xe5\ +\x4f\x5c\x5e\x73\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\ +\x44\x65\x66\x61\x75\x6c\x74\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\ +\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x5c\x3a\x5b\ +\xf8\x7e\xbf\x7b\xad\x59\x34\x68\x37\x5f\x0f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\ +\x26\x20\x4c\x65\x61\x64\x65\x72\x20\x61\x72\x72\x6f\x77\x20\x73\ +\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x5c\x3a\x5b\xf8\ +\x7c\xbe\x5e\xa6\x7b\x49\x7e\xa7\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1a\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x70\x72\x65\ +\x63\x69\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x06\x70\xb9\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x44\x6f\x74\x20\x35\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x06\x70\xb9\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x05\x44\x6f\x74\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\x70\xb9\ +\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\ +\x74\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x83\x49\x56\xfe\x75\ +\x4c\x97\x62\x6a\x21\x5f\x0f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x14\x44\x72\x61\x66\x74\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\ +\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x5b\xfc\x51\ +\xfa\x00\x33\x00\x44\x5b\xf9\x8c\x61\x4e\x3a\x59\x1a\x8f\xb9\x5f\ +\x62\x7f\x51\x68\x3c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x45\ +\x78\x70\x6f\x72\x74\x20\x33\x44\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x20\x61\x73\x20\x70\x6f\x6c\x79\x66\x61\x63\x65\x20\x6d\x65\x73\ +\x68\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x5b\xfc\x51\xfa\x68\ +\x37\x5f\x0f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x45\x78\x70\ +\x6f\x72\x74\x20\x53\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x0c\x9e\xd8\x8b\xa4\x58\x6b\x51\x45\x5b\xf9\x8c\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x46\x69\x6c\x6c\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x20\x62\x79\x20\x64\x65\x66\x61\x75\x6c\x74\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0c\x7e\xd8\x56\xfe\x51\x68\x5c\x40\x8b\xbe\ +\x7f\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x47\x65\x6e\x65\ +\x72\x61\x6c\x20\x44\x72\x61\x66\x74\x20\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x5e\x38\x89\xc4\x8b\xbe\ +\x7f\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\ +\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0c\x51\x68\x5c\x40\x59\x0d\x52\x36\x6a\x21\x5f\x0f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x6c\x6f\x62\x61\x6c\ +\x20\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x08\x7f\x51\x68\x3c\x95\xf4\x8d\xdd\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x47\x72\x69\x64\x20\x73\x70\x61\x63\x69\x6e\x67\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x12\x56\xfe\x5c\x42\x7f\x16\x7e\xc4\ +\x52\x1b\x5e\xfa\x62\x10\x56\xfe\x57\x57\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x18\x47\x72\x6f\x75\x70\x20\x6c\x61\x79\x65\x72\x73\ +\x20\x69\x6e\x74\x6f\x20\x62\x6c\x6f\x63\x6b\x73\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x58\x6b\x64\x59\x04\x4f\x60\x53\xef\x4e\xe5\x63\x07\ +\x5b\x9a\x4e\x00\x4e\x2a\x53\x05\x54\x2b\x00\x53\x00\x56\x00\x47\ +\x68\x37\x5f\x0f\x5b\x9a\x4e\x49\x76\x84\x65\x87\x4e\xf6\x76\xee\ +\x5f\x55\x00\x2c\x8b\xe5\x00\x53\x00\x56\x00\x47\x68\x37\x5f\x0f\ +\x5b\x9a\x4e\x49\x53\xef\x6d\xfb\x52\xa0\x81\xf3\x68\x07\x51\xc6\ +\x83\x49\x56\xfe\x58\x6b\x51\x45\x68\x37\x5f\x0f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x8d\x48\x65\x72\x65\x20\x79\x6f\x75\x20\x63\ +\x61\x6e\x20\x73\x70\x65\x63\x69\x66\x79\x20\x61\x20\x64\x69\x72\ +\x65\x63\x74\x6f\x72\x79\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\ +\x67\x20\x53\x56\x47\x20\x66\x69\x6c\x65\x73\x20\x63\x6f\x6e\x74\ +\x61\x69\x6e\x69\x6e\x67\x20\x3c\x70\x61\x74\x74\x65\x72\x6e\x3e\ +\x20\x64\x65\x66\x69\x6e\x69\x74\x69\x6f\x6e\x73\x20\x74\x68\x61\ +\x74\x20\x63\x61\x6e\x20\x62\x65\x20\x61\x64\x64\x65\x64\x20\x74\ +\x6f\x20\x74\x68\x65\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x44\ +\x72\x61\x66\x74\x20\x68\x61\x74\x63\x68\x20\x70\x61\x74\x74\x65\ +\x72\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x4f\x7f\x75\x28\x54\ +\x0e\x96\x90\x85\xcf\x7e\xd8\x56\xfe\x63\x55\x63\x49\x5d\xe5\x51\ +\x77\x68\x0f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x48\x69\x64\ +\x65\x20\x44\x72\x61\x66\x74\x20\x73\x6e\x61\x70\x20\x74\x6f\x6f\ +\x6c\x62\x61\x72\x20\x61\x66\x74\x65\x72\x20\x75\x73\x65\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0e\x96\x90\x85\xcf\x7e\xd8\x56\xfe\x5d\xe5\ +\x4f\x5c\x53\xf0\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x48\x69\ +\x64\x65\x20\x44\x72\x61\x66\x74\x20\x77\x6f\x72\x6b\x62\x65\x6e\ +\x63\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x82\xe5\x90\x09\x4e\x2d\ +\x7e\xd8\x56\xfe\x65\xf6\x66\x3e\x79\x3a\x7f\x51\x68\x3c\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x2b\x49\x66\x20\x63\x68\x65\x63\x6b\ +\x65\x64\x2c\x20\x61\x20\x67\x72\x69\x64\x20\x77\x69\x6c\x6c\x20\ +\x61\x70\x70\x65\x61\x72\x20\x77\x68\x65\x6e\x20\x64\x72\x61\x77\ +\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x48\x90\x09\x4e\x2d\x52\ +\x19\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x5c\ +\x06\x5c\x1d\x8b\xd5\x62\x8a\x91\xcd\x54\x08\x5b\xf9\x8c\x61\x80\ +\x54\x54\x08\x62\x10\x7e\xbf\x00\x2e\x6c\xe8\x61\x0f\x00\x2c\x6b\ +\x64\x64\xcd\x4f\x5c\x8f\x83\x80\x17\x65\xf6\x95\xf4\x00\x2e\x00\ +\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x65\x49\x66\x20\ +\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x66\x72\x65\x65\x63\x61\x64\ +\x20\x77\x69\x6c\x6c\x20\x74\x72\x79\x20\x74\x6f\x20\x6a\x6f\x69\ +\x6e\x74\x20\x63\x6f\x69\x6e\x63\x69\x64\x65\x6e\x74\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\x77\x69\x72\x65\x73\ +\x2e\x20\x42\x65\x77\x61\x72\x65\x2c\x20\x74\x68\x69\x73\x20\x63\ +\x61\x6e\x20\x74\x61\x6b\x65\x20\x61\x20\x77\x68\x69\x6c\x65\x2e\ +\x2e\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\xf2\x00\x49\x00\x66\x00\x20\ +\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\ +\x00\x66\x00\x74\x00\x20\x00\x67\x00\x72\x00\x69\x00\x64\x00\x20\ +\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\x6c\x00\x77\ +\x00\x61\x00\x79\x00\x73\x00\x20\x00\x62\x00\x65\x00\x20\x00\x76\ +\x00\x69\x00\x73\x00\x69\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x77\ +\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x77\x00\x6f\ +\x00\x72\x00\x6b\x00\x62\x00\x65\x00\x6e\x00\x63\x00\x68\x00\x20\ +\x00\x69\x00\x73\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\ +\x00\x65\x00\x2e\x00\x20\x00\x4f\x00\x74\x00\x68\x00\x65\x00\x72\ +\x00\x77\x00\x69\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x6e\x00\x6c\ +\x00\x79\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x75\ +\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x79\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\ +\x2c\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x67\x72\x69\x64\ +\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x62\x65\x20\ +\x76\x69\x73\x69\x62\x6c\x65\x20\x77\x68\x65\x6e\x20\x74\x68\x65\ +\x20\x44\x72\x61\x66\x74\x20\x77\x6f\x72\x6b\x62\x65\x6e\x63\x68\ +\x20\x69\x73\x20\x61\x63\x74\x69\x76\x65\x2e\x20\x4f\x74\x68\x65\ +\x72\x77\x69\x73\x65\x20\x6f\x6e\x6c\x79\x20\x77\x68\x65\x6e\x20\ +\x75\x73\x69\x6e\x67\x20\x61\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x88\x00\x49\x00\x66\x00\x20\x00\x63\x00\ +\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x53\x00\x6e\x00\x61\x00\x70\x00\ +\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x00\ +\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\ +\x20\x00\x73\x00\x68\x00\x6f\x00\x77\x00\x6e\x00\x20\x00\x77\x00\ +\x68\x00\x65\x00\x6e\x00\x65\x00\x76\x00\x65\x00\x72\x00\x20\x00\ +\x79\x00\x6f\x00\x75\x00\x20\x00\x75\x00\x73\x00\x65\x00\x20\x00\ +\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\x67\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x44\x49\x66\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x53\x6e\x61\x70\x20\x74\x6f\ +\x6f\x6c\x62\x61\x72\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x73\x68\ +\x6f\x77\x6e\x20\x77\x68\x65\x6e\x65\x76\x65\x72\x20\x79\x6f\x75\ +\x20\x75\x73\x65\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x28\x90\x09\x4e\x2d\x52\x19\x62\x40\x67\x09\x54\ +\x2b\x97\x62\x5b\xf9\x8c\x61\x8f\x6c\x63\x62\x62\x10\x4e\x09\x7e\ +\xf4\x59\x1a\x8f\xb9\x5f\x62\x7f\x51\x68\x3c\x97\x62\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x51\x49\x66\x20\x74\x68\x69\x73\x20\x69\ +\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x6c\x6c\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\ +\x67\x20\x66\x61\x63\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\ +\x65\x78\x70\x6f\x72\x74\x65\x64\x20\x61\x73\x20\x33\x64\x20\x70\ +\x6f\x6c\x79\x66\x61\x63\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\ +\x90\x09\x4e\x2d\x52\x19\x54\x7d\x4e\xe4\x95\xf4\x54\x2f\x75\x28\ +\x59\x0d\x52\x36\x6a\x21\x5f\x0f\x00\x2c\x54\x26\x52\x19\x4e\x3a\ +\x97\x5e\x59\x0d\x52\x36\x6a\x21\x5f\x0f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x6f\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\ +\x68\x65\x63\x6b\x65\x64\x2c\x20\x63\x6f\x70\x79\x20\x6d\x6f\x64\ +\x65\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x6b\x65\x70\x74\x20\x61\ +\x63\x72\x6f\x73\x73\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x2c\x20\x6f\ +\x74\x68\x65\x72\x77\x69\x73\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\ +\x73\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x73\x74\ +\x61\x72\x74\x20\x69\x6e\x20\x6e\x6f\x2d\x63\x6f\x70\x79\x20\x6d\ +\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x90\x09\x4e\x2d\x52\ +\x19\x58\x6b\x51\x45\x88\xab\x8f\x6c\x63\x62\x62\x10\x7b\x80\x53\ +\x55\x7e\xbf\x67\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3f\x49\ +\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\ +\x64\x2c\x20\x68\x61\x74\x63\x68\x65\x73\x20\x77\x69\x6c\x6c\x20\ +\x62\x65\x20\x63\x6f\x6e\x76\x65\x72\x74\x65\x64\x20\x69\x6e\x74\ +\x6f\x20\x73\x69\x6d\x70\x6c\x65\x20\x77\x69\x72\x65\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x40\x90\x09\x4e\x2d\x52\x19\x5b\xfc\x51\x65\ +\x65\x87\x67\x2c\x4f\x7f\x75\x28\x68\x07\x51\xc6\x7e\xd8\x56\xfe\ +\x65\x87\x5b\x57\x59\x27\x5c\x0f\x00\x2c\x00\x20\x80\x0c\x97\x5e\ +\x00\x44\x00\x58\x00\x46\x65\x87\x68\x63\x4e\x2d\x63\x07\x5b\x9a\ +\x76\x84\x59\x27\x5c\x0f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7b\ +\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\ +\x65\x64\x2c\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x65\x78\ +\x74\x73\x20\x77\x69\x6c\x6c\x20\x67\x65\x74\x20\x74\x68\x65\x20\ +\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x44\x72\x61\x66\x74\x20\x74\ +\x65\x78\x74\x20\x73\x69\x7a\x65\x2c\x20\x69\x6e\x73\x74\x65\x61\ +\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x73\x69\x7a\x65\x20\x74\x68\ +\x65\x79\x20\x68\x61\x76\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x44\ +\x58\x46\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x28\x90\x09\x4e\x2d\x52\x19\x5b\xf9\x8c\x61\x9e\xd8\x8b\ +\xa4\x66\x3e\x79\x3a\x4e\x3a\x58\x6b\x51\x45\x00\x2c\x54\x26\x52\ +\x19\x66\x3e\x79\x3a\x4e\x3a\x7e\xbf\x68\x46\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x66\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\ +\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\ +\x66\x69\x6c\x6c\x65\x64\x20\x61\x73\x20\x64\x65\x66\x61\x75\x6c\ +\x74\x2e\x20\x4f\x74\x68\x65\x72\x77\x69\x73\x65\x2c\x20\x74\x68\ +\x65\x79\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x61\ +\x73\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\xd0\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\ +\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x73\x00\x6e\x00\ +\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x77\x00\ +\x69\x00\x6c\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\ +\x6f\x00\x63\x00\x63\x00\x75\x00\x72\x00\x20\x00\x61\x00\x67\x00\ +\x61\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x77\x00\x69\x00\ +\x74\x00\x68\x00\x20\x00\x6d\x00\x6f\x00\x72\x00\x65\x00\x20\x00\ +\x74\x00\x68\x00\x61\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x69\x00\x6e\x00\x64\x00\x69\x00\x63\x00\x61\x00\x74\x00\ +\x65\x00\x64\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\ +\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x65\x00\x64\x00\x67\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x68\x49\x66\x20\ +\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x20\x77\x69\x6c\x6c\x20\x6e\ +\x6f\x74\x20\x6f\x63\x63\x75\x72\x20\x61\x67\x61\x69\x6e\x73\x74\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x74\x68\x20\x6d\x6f\ +\x72\x65\x20\x74\x68\x61\x6e\x20\x74\x68\x65\x20\x69\x6e\x64\x69\ +\x63\x61\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\ +\x65\x64\x67\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x90\x09\x4e\ +\x2d\x52\x19\x7e\xd8\x56\xfe\x5d\xe5\x4f\x5c\x53\xf0\x4e\x0d\x66\ +\x3e\x79\x3a\x00\x2e\x00\x20\x56\xe0\x4e\x3a\x5e\xfa\x7b\x51\x5d\ +\xe5\x4f\x5c\x53\xf0\x53\x05\x54\x2b\x62\x40\x67\x09\x76\x84\x7e\ +\xd8\x56\xfe\x5d\xe5\x51\x77\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x79\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\ +\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\ +\x20\x77\x6f\x72\x6b\x62\x65\x6e\x63\x68\x20\x77\x6f\x6e\x27\x74\ +\x20\x61\x70\x70\x65\x61\x72\x2e\x20\x55\x73\x65\x66\x75\x6c\x20\ +\x73\x69\x6e\x63\x65\x20\x61\x6c\x6c\x20\x6f\x66\x20\x74\x68\x65\ +\x20\x44\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x20\x61\x72\x65\ +\x20\x61\x6c\x73\x6f\x20\x69\x6e\x20\x74\x68\x65\x20\x41\x72\x63\ +\x68\x20\x77\x6f\x72\x6b\x62\x65\x6e\x63\x68\x2e\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x38\x90\x09\x4e\x2d\x52\x19\x5f\x53\x59\x1a\x6b\xb5\ +\x7e\xbf\x5b\x9a\x4e\x49\x4e\x86\x7e\xbf\x5b\xbd\x00\x2c\x00\x20\ +\x5b\x83\x4e\xec\x66\x3e\x79\x3a\x4e\x3a\x76\xf8\x5e\x94\x5b\xbd\ +\x5e\xa6\x76\x84\x95\xed\x54\x08\x7e\xbf\x68\x46\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x75\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\ +\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x77\x68\x65\x6e\x20\x70\ +\x6f\x6c\x79\x6c\x69\x6e\x65\x73\x20\x68\x61\x76\x65\x20\x61\x20\ +\x77\x69\x64\x74\x68\x20\x64\x65\x66\x69\x6e\x65\x64\x2c\x20\x74\ +\x68\x65\x79\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x72\x65\x6e\x64\ +\x65\x72\x65\x64\x20\x61\x73\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\ +\x69\x72\x65\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x63\x6f\ +\x72\x72\x65\x63\x74\x20\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x3a\x90\x09\x4e\x2d\x52\x19\x7e\xd8\x56\xfe\x65\xf6\x53\ +\xef\x63\x55\x63\x49\x5d\xf2\x5b\x58\x57\x28\x5b\xf9\x8c\x61\x00\ +\x2e\x54\x26\x52\x19\x97\x00\x63\x09\x4f\x4f\x00\x43\x00\x74\x00\ +\x72\x00\x6c\x6f\xc0\x6d\x3b\x63\x55\x63\x49\x00\x2e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x81\x49\x66\x20\x74\x68\x69\x73\x20\x69\ +\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x79\x6f\x75\x20\x77\ +\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x73\x6e\x61\x70\x20\ +\x74\x6f\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x20\x77\x68\x69\x6c\x65\x20\x64\x72\x61\x77\x69\x6e\ +\x67\x2e\x20\x49\x66\x20\x6e\x6f\x74\x2c\x20\x79\x6f\x75\x20\x77\ +\x69\x6c\x6c\x20\x62\x65\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x20\ +\x6f\x6e\x6c\x79\x20\x77\x68\x65\x6e\x20\x70\x72\x65\x73\x73\x69\ +\x6e\x67\x20\x43\x54\x52\x4c\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\ +\x5b\xfc\x51\x65\x53\x3f\x54\x0d\x57\x57\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0e\x49\x6d\x70\x6f\x72\x74\x20\x2a\x62\x6c\x6f\x63\ +\x6b\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x5b\xfc\x51\x65\x00\x4f\ +\x00\x43\x00\x41\x97\x62\x57\xdf\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x10\x49\x6d\x70\x6f\x72\x74\x20\x4f\x43\x41\x20\x61\x72\x65\ +\x61\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x58\x6b\x51\x45\x8f\xb9\ +\x75\x4c\x5b\xfc\x51\x65\x4e\x3a\x7e\xbf\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x20\x49\x6d\x70\x6f\x72\x74\x20\x68\x61\x74\x63\x68\ +\x20\x62\x6f\x75\x6e\x64\x61\x72\x69\x65\x73\x20\x61\x73\x20\x77\ +\x69\x72\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x5b\xfc\x51\x65\ +\x5e\x03\x5c\x40\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x49\x6d\ +\x70\x6f\x72\x74\x20\x6c\x61\x79\x6f\x75\x74\x73\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x08\x5b\xfc\x51\x65\x68\x37\x5f\x0f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x49\x6d\x70\x6f\x72\x74\x20\x73\x74\x79\ +\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x5b\xfc\x51\x65\x65\x87\ +\x67\x2c\x54\x8c\x5c\x3a\x5b\xf8\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1b\x49\x6d\x70\x6f\x72\x74\x20\x74\x65\x78\x74\x73\x20\x61\ +\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0a\x5b\xfc\x51\x65\x00\x2f\x5b\xfc\x51\xfa\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x49\x6d\x70\x6f\x72\x74\x2f\ +\x45\x78\x70\x6f\x72\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x51\x85\ +\x90\xe8\x7c\xbe\x5e\xa6\x7b\x49\x7e\xa7\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x18\x49\x6e\x74\x65\x72\x6e\x61\x6c\x20\x70\x72\x65\ +\x63\x69\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0c\x80\x54\x54\x08\x51\xe0\x4f\x55\x56\xfe\x5f\x62\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4a\x6f\x69\x6e\x20\x67\ +\x65\x6f\x6d\x65\x74\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x5d\ +\xe6\x00\x28\x00\x49\x00\x53\x00\x4f\x68\x07\x51\xc6\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x13\x4c\x65\x66\x74\x20\x28\x49\ +\x53\x4f\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x29\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0c\x4e\x3b\x7f\x51\x68\x3c\x7e\xbf\x52\x06\x68\x3c\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x4d\x61\x69\x6e\x20\x6c\ +\x69\x6e\x65\x73\x20\x65\x76\x65\x72\x79\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x32\x4e\x3b\x7f\x51\x68\x3c\x7e\xbf\x52\xa0\x53\x9a\x7e\xd8\ +\x52\x36\x00\x2e\x00\x20\x57\x28\x6b\x64\x59\x04\x63\x07\x5b\x9a\ +\x4e\x3b\x7f\x51\x68\x3c\x7e\xbf\x95\xf4\x76\x84\x52\x06\x68\x3c\ +\x65\x70\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x4d\x61\ +\x69\x6e\x6c\x69\x6e\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\ +\x64\x72\x61\x77\x6e\x20\x74\x68\x69\x63\x6b\x65\x72\x2e\x20\x53\ +\x70\x65\x63\x69\x66\x79\x20\x68\x65\x72\x65\x20\x68\x6f\x77\x20\ +\x6d\x61\x6e\x79\x20\x73\x71\x75\x61\x72\x65\x73\x20\x62\x65\x74\ +\x77\x65\x65\x6e\x20\x6d\x61\x69\x6e\x6c\x69\x6e\x65\x73\x2e\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x10\x68\x37\x67\x61\x66\xf2\x7e\xbf\x67\ +\x00\x59\x27\x52\x06\x6b\xb5\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x12\x4d\x61\x78\x20\x53\x70\x6c\x69\x6e\x65\x20\x53\x65\x67\x6d\ +\x65\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x67\x00\x59\x27\x8f\ +\xb9\x65\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x4d\x61\x78\ +\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x65\ +\x64\x67\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x63\x55\x63\x49\ +\x80\x03\x86\x51\x76\x84\x67\x00\x59\x27\x8f\xb9\x65\x70\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x35\x4d\x61\x78\x69\x6d\x75\x6d\x20\ +\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x65\x64\x67\x65\x73\x20\ +\x74\x6f\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\ +\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x02\x65\xe0\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x65\xe0\x00\ +\x28\x67\x00\x5f\xeb\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0e\x4e\x6f\x6e\x65\x20\x28\x66\x61\x73\x74\x65\x73\x74\x29\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x3e\x90\x1a\x5e\x38\x00\x2c\x59\x0d\x52\ +\x36\x5b\xf9\x8c\x61\x54\x0e\x00\x2c\x52\x6f\x67\x2c\x88\xab\x90\ +\x09\x79\xcd\x00\x2e\x59\x82\x67\x9c\x90\x09\x4e\x2d\x6b\x64\x90\ +\x09\x98\x79\xff\x0c\x52\x19\x53\x9f\x5b\xf9\x8c\x61\x88\xab\x90\ +\x09\x79\xcd\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7f\x4e\ +\x6f\x72\x6d\x61\x6c\x6c\x79\x2c\x20\x61\x66\x74\x65\x72\x20\x63\ +\x6f\x70\x79\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x73\x2c\x20\ +\x74\x68\x65\x20\x63\x6f\x70\x69\x65\x73\x20\x67\x65\x74\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x2e\x20\x49\x66\x20\x74\x68\x69\x73\ +\x20\x6f\x70\x74\x69\x6f\x6e\x20\x69\x73\x20\x63\x68\x65\x63\x6b\ +\x65\x64\x2c\x20\x74\x68\x65\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x69\x6e\x73\x74\x65\x61\x64\x2e\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0e\x00\x4f\x00\x43\x00\x41\x68\x3c\x5f\x0f\ +\x90\x09\x98\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4f\x43\ +\x41\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\x6f\x6e\x73\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0e\x53\x9f\x59\xcb\x98\x9c\x82\x72\ +\x54\x8c\x7e\xbf\x5b\xbd\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\ +\x4f\x72\x69\x67\x69\x6e\x61\x6c\x20\x63\x6f\x6c\x6f\x72\x20\x61\ +\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x12\x7c\x97\x75\x65\x00\x28\x75\x28\x4e\x8e\x00\x43\ +\x00\x41\x00\x4d\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ +\x52\x61\x77\x20\x28\x66\x6f\x72\x20\x43\x41\x4d\x29\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0e\x66\x3e\x79\x3a\x59\x1a\x6b\xb5\x7e\xbf\x7e\ +\xbf\x5b\xbd\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x52\x65\x6e\ +\x64\x65\x72\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x73\x20\x77\x69\ +\x74\x68\x20\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\ +\x53\xf3\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x52\x69\x67\x68\ +\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x53\x00\x56\x00\x47\x68\ +\x3c\x5f\x0f\x90\x09\x98\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x12\x53\x56\x47\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\ +\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x4f\xdd\x5b\x58\x5f\ +\x53\x52\x4d\x98\x9c\x82\x72\x53\xca\x7e\xbf\x5b\xbd\x52\x30\x62\ +\x40\x67\x09\x4f\x1a\x8b\xdd\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x30\x53\x61\x76\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x63\x6f\ +\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\ +\x68\x20\x61\x63\x72\x6f\x73\x73\x20\x73\x65\x73\x73\x69\x6f\x6e\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x10\x59\x0d\x52\x36\x54\x0e\x90\ +\x09\x4e\x2d\x53\x9f\x5b\xf9\x8c\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x21\x53\x65\x6c\x65\x63\x74\x20\x62\x61\x73\x65\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x20\x61\x66\x74\x65\x72\x20\x63\x6f\x70\ +\x79\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x66\x3e\x79\x3a\ +\x7e\xd8\x56\xfe\x63\x55\x63\x49\x5d\xe5\x51\x77\x68\x0f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x17\x53\x68\x6f\x77\x20\x44\x72\x61\ +\x66\x74\x20\x53\x6e\x61\x70\x20\x74\x6f\x6f\x6c\x62\x61\x72\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x12\x66\x3e\x79\x3a\x5d\xe5\x4f\x5c\x5e\ +\x73\x97\x62\x8f\xfd\x8e\x2a\x56\x68\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1a\x53\x68\x6f\x77\x20\x57\x6f\x72\x6b\x69\x6e\x67\x20\ +\x50\x6c\x61\x6e\x65\x20\x74\x72\x61\x63\x6b\x65\x72\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x08\x65\x9c\x67\x60\x00\x20\x00\x35\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\x20\x35\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x08\x65\x9c\x67\x60\x00\x20\x00\x37\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\x20\x37\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x08\x65\x9c\x67\x60\x00\x20\x00\x39\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\x20\x39\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x08\x63\x55\x63\x49\x98\x9c\x82\x72\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x6e\x61\x70\x20\x63\ +\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x67\x00\x59\x27\ +\x63\x55\x63\x49\x65\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x53\x6e\x61\x70\x20\x6d\x61\x78\x69\x6d\x75\x6d\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x08\x63\x55\x63\x49\x6a\x21\x5f\x0f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x08\x53\x6e\x61\x70\x20\x6d\x6f\x64\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x08\x63\x55\x63\x49\x83\x03\x56\xf4\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x6e\x61\x70\x20\x72\x61\x6e\ +\x67\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x5b\xfc\x51\xfa\x83\x49\ +\x7e\xd8\x65\xf6\x76\x84\x00\x53\x00\x56\x00\x47\x8f\x93\x51\xfa\ +\x68\x37\x5f\x0f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x53\x74\ +\x79\x6c\x65\x20\x6f\x66\x20\x53\x56\x47\x20\x66\x69\x6c\x65\x20\ +\x74\x6f\x20\x77\x72\x69\x74\x65\x20\x77\x68\x65\x6e\x20\x65\x78\ +\x70\x6f\x72\x74\x69\x6e\x67\x20\x61\x20\x53\x6b\x65\x74\x63\x68\ +\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x08\x4e\xfb\x52\xa1\x89\xc6\x56\ +\xfe\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x54\x61\x73\x6b\x76\ +\x69\x65\x77\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x7e\xa6\x67\x5f\x4f\ +\xee\x65\x39\x95\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x54\ +\x68\x65\x20\x43\x6f\x6e\x73\x74\x72\x61\x69\x6e\x69\x6e\x67\x20\ +\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0e\x00\x41\x00\x6c\x00\x74\x00\x20\x4f\xee\x65\x39\ +\x95\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\x20\ +\x61\x6c\x74\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x26\x75\x28\x4e\x8e\x8f\x6c\x53\x16\ +\x00\x44\x00\x58\x00\x46\x98\x9c\x82\x72\x62\x10\x7e\xbf\x5b\xbd\ +\x76\x84\x98\x9c\x82\x72\x66\x20\x5c\x04\x65\x87\x4e\xf6\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x41\x54\x68\x65\x20\x63\x6f\x6c\x6f\ +\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x20\x66\ +\x6f\x72\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6e\x67\x20\x64\ +\x78\x66\x20\x63\x6f\x6c\x6f\x72\x73\x20\x69\x6e\x74\x6f\x20\x6c\ +\x69\x6e\x65\x77\x69\x64\x74\x68\x73\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x18\x75\x28\x4e\x8e\x52\x1b\x5e\xfa\x65\xb0\x56\xfe\x7e\xb8\x76\ +\x84\x9e\xd8\x8b\xa4\x6a\x21\x67\x7f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x3d\x54\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x74\ +\x65\x6d\x70\x6c\x61\x74\x65\x20\x74\x6f\x20\x75\x73\x65\x20\x77\ +\x68\x65\x6e\x20\x63\x72\x65\x61\x74\x69\x6e\x67\x20\x61\x20\x6e\ +\x65\x77\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x73\x68\x65\x65\x74\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x2a\x51\x85\x90\xe8\x57\x50\x68\x07\ +\x64\xcd\x4f\x5c\x5c\x0f\x65\x70\x4f\x4d\x65\x70\x00\x28\x59\x82\ +\x00\x3a\x00\x33\x00\x3d\x00\x30\x00\x2e\x00\x30\x00\x30\x00\x31\ +\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x54\x68\x65\x20\ +\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x64\x65\x63\x69\x6d\x61\ +\x6c\x73\x20\x69\x6e\x20\x69\x6e\x74\x65\x72\x6e\x61\x6c\x20\x63\ +\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x73\x20\x6f\x70\x65\x72\x61\ +\x74\x69\x6f\x6e\x73\x20\x28\x66\x6f\x72\x20\x65\x78\x2e\x20\x33\ +\x20\x3d\x20\x30\x2e\x30\x30\x31\x29\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x2c\x70\xb9\x4f\x4d\x63\x55\x63\x49\x53\x4a\x5f\x84\x00\x2e\x8b\ +\xbe\x7f\x6e\x4e\x3a\x00\x30\x88\x68\x79\x3a\x65\xe0\x63\x55\x63\ +\x49\x8d\xdd\x79\xbb\x00\x28\x65\xe0\x96\x50\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4e\x54\x68\x65\x20\x72\x61\x64\x69\x75\ +\x73\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x20\x74\ +\x6f\x20\x73\x70\x65\x63\x69\x61\x6c\x20\x70\x6f\x69\x6e\x74\x73\ +\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\x30\x20\x66\x6f\x72\x20\x6e\ +\x6f\x20\x64\x69\x73\x74\x61\x6e\x63\x65\x20\x28\x69\x6e\x66\x69\ +\x6e\x69\x74\x65\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x63\x55\x63\ +\x49\x4f\xee\x65\x39\x95\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x15\x54\x68\x65\x20\x73\x6e\x61\x70\x20\x6d\x6f\x64\x69\x66\x69\ +\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x6b\xcf\ +\x4e\x2a\x7f\x51\x68\x3c\x7e\xbf\x4e\x4b\x95\xf4\x76\x84\x95\xf4\ +\x8d\xdd\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x54\x68\x65\x20\ +\x73\x70\x61\x63\x69\x6e\x67\x20\x62\x65\x74\x77\x65\x65\x6e\x20\ +\x65\x61\x63\x68\x20\x67\x72\x69\x64\x20\x6c\x69\x6e\x65\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x86\x83\x49\x56\xfe\x6a\x21\x57\x57\x5d\xe5\ +\x4f\x5c\x76\x84\x75\x4c\x97\x62\x6a\x21\x5f\x0f\x00\x3a\x5d\xe5\ +\x51\x77\x68\x0f\x6a\x21\x5f\x0f\x5c\x06\x62\x40\x67\x09\x76\x84\ +\x83\x49\x56\xfe\x8b\xbe\x7f\x6e\x65\x3e\x7f\x6e\x57\x28\x53\x55\ +\x72\xec\x76\x84\x5d\xe5\x51\x77\x67\x61\x51\x85\x00\x2c\x4e\xfb\ +\x52\xa1\x68\x0f\x6a\x21\x5f\x0f\x4f\x7f\x75\x28\x00\x46\x00\x72\ +\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x76\x84\x4e\xfb\x52\xa1\ +\x6d\x4f\x89\xc8\x56\x68\x7c\xfb\x7e\xdf\x4e\x0e\x75\x28\x62\x37\ +\x8f\xdb\x88\x4c\x62\x40\x67\x09\x4e\xa4\x4e\x92\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\xcf\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\ +\x65\x20\x55\x49\x20\x6d\x6f\x64\x65\x20\x69\x6e\x20\x77\x68\x69\ +\x63\x68\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\ +\x75\x6c\x65\x20\x77\x69\x6c\x6c\x20\x77\x6f\x72\x6b\x3a\x20\x54\ +\x6f\x6f\x6c\x62\x61\x72\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\ +\x20\x70\x6c\x61\x63\x65\x20\x61\x6c\x6c\x20\x44\x72\x61\x66\x74\ +\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x20\x69\x6e\x20\x61\x20\x73\ +\x65\x70\x61\x72\x61\x74\x65\x20\x74\x6f\x6f\x6c\x62\x61\x72\x2c\ +\x20\x77\x68\x69\x6c\x65\x20\x74\x61\x73\x6b\x62\x61\x72\x20\x6d\ +\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x75\x73\x65\x20\x74\x68\x65\ +\x20\x46\x72\x65\x65\x43\x41\x44\x20\x54\x61\x73\x6b\x76\x69\x65\ +\x77\x20\x73\x79\x73\x74\x65\x6d\x20\x66\x6f\x72\x20\x61\x6c\x6c\ +\x20\x69\x74\x73\x20\x75\x73\x65\x72\x20\x69\x6e\x74\x65\x72\x61\ +\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x8f\xd9\x66\ +\x2f\x67\x84\x90\x20\x6a\x21\x5f\x0f\x4e\x0b\x7e\xd8\x52\x36\x5b\ +\xf9\x8c\x61\x76\x84\x9e\xd8\x8b\xa4\x98\x9c\x82\x72\x00\x2e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x54\x68\x69\x73\x20\x69\x73\ +\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ +\x6f\x72\x20\x66\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\ +\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x20\x77\x68\x69\x6c\x65\ +\x20\x69\x6e\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\ +\x20\x6d\x6f\x64\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xd0\x62\x40\ +\x67\x09\x7e\xd8\x56\xfe\x65\x87\x5b\x57\x53\xca\x5c\x3a\x5b\xf8\ +\x68\x07\x6c\xe8\x76\x84\x9e\xd8\x8b\xa4\x5b\x57\x4f\x53\x54\x0d\ +\x79\xf0\x00\x2e\x59\x82\x00\x3a\x5b\x57\x4f\x53\x54\x0d\x79\xf0\ +\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x22\x00\x2c\ +\x9e\xd8\x8b\xa4\x68\x37\x5f\x0f\x00\x22\x00\x73\x00\x61\x00\x6e\ +\x00\x73\x00\x22\x00\x2c\x00\x22\x00\x73\x00\x65\x00\x72\x00\x69\ +\x00\x66\x00\x22\x62\x16\x00\x22\x00\x6d\x00\x6f\x00\x6e\x00\x6f\ +\x00\x22\x00\x2c\x62\x16\x7e\xc4\x54\x08\x00\x22\x00\x41\x00\x72\ +\x00\x69\x00\x61\x00\x6c\x00\x2c\x00\x48\x00\x65\x00\x6c\x00\x76\ +\x00\x65\x00\x74\x00\x69\x00\x63\x00\x61\x00\x2c\x00\x73\x00\x61\ +\x00\x6e\x00\x73\x00\x22\x62\x16\x53\x05\x54\x2b\x54\x0d\x79\xf0\ +\x54\x8c\x68\x37\x5f\x0f\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\ +\x00\x6c\x00\x3a\x00\x42\x00\x6f\x00\x6c\x00\x64\x00\x22\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\xf2\x54\x68\x69\x73\x20\x69\x73\x20\ +\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x66\x6f\x6e\x74\ +\x20\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\x61\x6c\x6c\x20\x44\x72\ +\x61\x66\x74\x20\x74\x65\x78\x74\x73\x20\x61\x6e\x64\x20\x64\x69\ +\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x2e\x0a\x49\x74\x20\x63\x61\x6e\ +\x20\x62\x65\x20\x61\x20\x66\x6f\x6e\x74\x20\x6e\x61\x6d\x65\x20\ +\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\x72\x69\x61\x6c\x22\x2c\ +\x20\x61\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x73\x74\x79\x6c\x65\ +\x20\x73\x75\x63\x68\x20\x61\x73\x20\x22\x73\x61\x6e\x73\x22\x2c\ +\x20\x22\x73\x65\x72\x69\x66\x22\x0a\x6f\x72\x20\x22\x6d\x6f\x6e\ +\x6f\x22\x2c\x20\x6f\x72\x20\x61\x20\x66\x61\x6d\x69\x6c\x79\x20\ +\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\x72\x69\x61\x6c\x2c\x48\ +\x65\x6c\x76\x65\x74\x69\x63\x61\x2c\x73\x61\x6e\x73\x22\x20\x6f\ +\x72\x20\x61\x20\x6e\x61\x6d\x65\x20\x77\x69\x74\x68\x20\x61\x20\ +\x73\x74\x79\x6c\x65\x0a\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\ +\x72\x69\x61\x6c\x3a\x42\x6f\x6c\x64\x22\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x1a\x8f\xd9\x66\x2f\x67\x84\x90\x20\x51\xe0\x4f\x55\x51\x43\ +\x7d\x20\x76\x84\x9e\xd8\x8b\xa4\x7e\xc4\x54\x0d\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x38\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\ +\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x67\x72\x6f\x75\x70\x20\ +\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\x63\x6f\x6e\x73\x74\x72\x75\ +\x63\x74\x69\x6f\x6e\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x2e\x5b\xfc\x51\x65\x00\x53\x00\x56\x00\x47\ +\x5b\xf9\x8c\x61\x98\x9c\x82\x72\x52\x30\x00\x46\x00\x72\x00\x65\ +\x00\x65\x00\x43\x00\x41\x00\x44\x76\x84\x53\xef\x90\x09\x65\xb9\ +\x6c\xd5\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x47\x54\x68\ +\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\ +\x20\x63\x68\x6f\x6f\x73\x65\x64\x20\x66\x6f\x72\x20\x69\x6d\x70\ +\x6f\x72\x74\x69\x6e\x67\x20\x53\x56\x47\x20\x6f\x62\x6a\x65\x63\ +\x74\x20\x63\x6f\x6c\x6f\x72\x20\x69\x6e\x74\x6f\x20\x46\x72\x65\ +\x65\x43\x41\x44\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6a\x5b\xfc\x51\ +\x65\x62\x16\x8f\x6c\x53\x16\x00\x44\x00\x58\x00\x46\x5b\xf9\x8c\ +\x61\x98\x9c\x82\x72\x52\x30\x00\x46\x00\x72\x00\x65\x00\x65\x00\ +\x43\x00\x41\x00\x44\x76\x84\x53\xef\x90\x09\x65\xb9\x6c\xd5\x00\ +\x2e\x59\x82\x67\x9c\x90\x09\x62\xe9\x98\x9c\x82\x72\x66\x20\x5c\ +\x04\x00\x2c\x52\x19\x5f\xc5\x98\x7b\x90\x09\x62\xe9\x8f\x6c\x53\ +\x16\x98\x9c\x82\x72\x52\x30\x7e\xbf\x5b\xbd\x76\x84\x66\x20\x5c\ +\x04\x65\x87\x4e\xf6\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\xe3\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x65\x74\ +\x68\x6f\x64\x20\x63\x68\x6f\x6f\x73\x65\x64\x20\x66\x6f\x72\x20\ +\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\x6f\x72\x20\x74\x72\x61\ +\x6e\x73\x6c\x61\x74\x69\x6e\x67\x20\x44\x58\x46\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x63\x6f\x6c\x6f\x72\x20\x69\x6e\x74\x6f\x20\x46\ +\x72\x65\x65\x43\x41\x44\x2e\x20\x0a\x49\x66\x20\x63\x6f\x6c\x6f\ +\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x69\x73\x20\x63\x68\x6f\ +\x6f\x73\x65\x64\x2c\x20\x79\x6f\x75\x20\x6d\x75\x73\x74\x20\x63\ +\x68\x6f\x6f\x73\x65\x20\x61\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\ +\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x20\x63\x6f\x6e\x74\x61\ +\x69\x6e\x69\x6e\x67\x20\x61\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\ +\x69\x6f\x6e\x20\x74\x61\x62\x6c\x65\x20\x74\x68\x61\x74\x20\x77\ +\x69\x6c\x6c\x20\x63\x6f\x6e\x76\x65\x72\x74\x20\x63\x6f\x6c\x6f\ +\x72\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\ +\x68\x73\x2e\x0a\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x57\x82\x76\xf4\ +\x5c\x3a\x5b\xf8\x68\x07\x6c\xe8\x76\x84\x65\x87\x5b\x57\x65\xb9\ +\x54\x11\x00\x2e\x9e\xd8\x8b\xa4\x4e\x3a\x5d\xe6\x00\x28\x00\x49\ +\x00\x53\x00\x4f\x68\x07\x51\xc6\x00\x29\x00\x2e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x7e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\ +\x65\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x6f\x66\ +\x20\x74\x68\x65\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x20\x74\ +\x65\x78\x74\x73\x20\x77\x68\x65\x6e\x20\x74\x68\x6f\x73\x65\x20\ +\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x61\x72\x65\x20\x76\ +\x65\x72\x74\x69\x63\x61\x6c\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\ +\x20\x69\x73\x20\x6c\x65\x66\x74\x2c\x20\x77\x68\x69\x63\x68\x20\ +\x69\x73\x20\x74\x68\x65\x20\x49\x53\x4f\x20\x73\x74\x61\x6e\x64\ +\x61\x72\x64\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x8b\xbe\x7f\x6e\ +\x76\xf8\x51\x73\x52\x9f\x80\xfd\x76\x84\x51\x6c\x5d\xee\x00\x2c\ +\x57\x28\x6b\x64\x83\x03\x56\xf4\x51\x85\x76\x84\x65\x70\x63\x6e\ +\x76\x86\x89\xc6\x4e\x3a\x76\xf8\x54\x0c\x00\x2e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x7b\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\ +\x65\x20\x76\x61\x6c\x75\x65\x20\x75\x73\x65\x64\x20\x62\x79\x20\ +\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\x74\x68\x61\x74\x20\x75\ +\x73\x65\x20\x61\x20\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x2e\x0a\ +\x56\x61\x6c\x75\x65\x73\x20\x77\x69\x74\x68\x20\x64\x69\x66\x66\ +\x65\x72\x65\x6e\x63\x65\x73\x20\x62\x65\x6c\x6f\x77\x20\x74\x68\ +\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x77\x69\x6c\x6c\x20\x62\x65\ +\x20\x74\x72\x65\x61\x74\x65\x64\x20\x61\x73\x20\x73\x61\x6d\x65\ +\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x04\x51\x6c\x5d\xee\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x54\x6f\x6c\x65\x72\x61\x6e\x63\x65\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x06\x5d\xe5\x51\x77\x68\x0f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x07\x54\x6f\x6f\x6c\x62\x61\x72\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0e\x8f\x6c\x63\x62\x76\x7d\x7e\xbf\x4e\ +\x3a\x9e\xd1\x82\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x54\ +\x72\x61\x6e\x73\x6c\x61\x74\x65\x20\x77\x68\x69\x74\x65\x20\x6c\ +\x69\x6e\x65\x20\x63\x6f\x6c\x6f\x72\x20\x74\x6f\x20\x62\x6c\x61\ +\x63\x6b\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x8f\x6c\x8b\xd1\x00\x28\ +\x75\x28\x4e\x8e\x62\x53\x53\x70\x54\x8c\x66\x3e\x79\x3a\x00\x29\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x54\x72\x61\x6e\x73\x6c\ +\x61\x74\x65\x64\x20\x28\x66\x6f\x72\x20\x70\x72\x69\x6e\x74\x20\ +\x26\x20\x64\x69\x73\x70\x6c\x61\x79\x29\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x12\x4f\x7f\x75\x28\x9e\xd8\x8b\xa4\x98\x9c\x82\x72\x54\x8c\ +\x7e\xbf\x5b\xbd\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x55\x73\ +\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\ +\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x08\x4f\x7f\x75\x28\x7f\x51\x68\x3c\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x55\x73\x65\x20\x67\x72\x69\x64\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x14\x65\x87\x67\x2c\x4f\x7f\x75\x28\x68\ +\x07\x51\xc6\x5b\x57\x4f\x53\x59\x27\x5c\x0f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x20\x55\x73\x65\x20\x73\x74\x61\x6e\x64\x61\x72\ +\x64\x20\x66\x6f\x6e\x74\x20\x73\x69\x7a\x65\x20\x66\x6f\x72\x20\ +\x74\x65\x78\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x57\x82\x76\ +\xf4\x68\x07\x6c\xe8\x65\x87\x5b\x57\x65\xb9\x54\x11\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x24\x56\x65\x72\x74\x69\x63\x61\x6c\x20\ +\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x74\x65\x78\x74\x20\ +\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x44\x57\x28\x5b\xfc\x51\xfa\x00\x53\x00\x56\x00\x47\x89\ +\xc6\x56\xfe\x65\xf6\x00\x2c\x00\x20\x4f\x7f\x62\x40\x67\x09\x76\ +\x7d\x7e\xbf\x66\x3e\x79\x3a\x4e\x3a\x9e\xd1\x82\x72\x00\x2c\x00\ +\x20\x63\xd0\x9a\xd8\x76\x7d\x82\x72\x80\xcc\x66\x6f\x4e\x0b\x76\ +\x84\x53\xef\x89\xc6\x60\x27\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x73\x57\x68\x65\x6e\x20\x65\x78\x70\x6f\x72\x74\x69\x6e\x67\x20\ +\x53\x56\x47\x20\x76\x69\x65\x77\x73\x2c\x20\x6d\x61\x6b\x65\x20\ +\x61\x6c\x6c\x20\x77\x68\x69\x74\x65\x20\x6c\x69\x6e\x65\x77\x6f\ +\x72\x6b\x20\x61\x70\x70\x65\x61\x72\x20\x69\x6e\x20\x62\x6c\x61\ +\x63\x6b\x2c\x20\x66\x6f\x72\x20\x62\x65\x74\x74\x65\x72\x20\x72\ +\x65\x61\x64\x61\x62\x69\x6c\x69\x74\x79\x20\x61\x67\x61\x69\x6e\ +\x73\x74\x20\x77\x68\x69\x74\x65\x20\x62\x61\x63\x6b\x67\x72\x6f\ +\x75\x6e\x64\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x72\x5f\x53\x5b\xfc\ +\x51\xfa\x68\x37\x67\x61\x66\xf2\x7e\xbf\x81\xf3\x00\x44\x00\x58\ +\x00\x46\x65\xf6\x00\x2c\x5c\x06\x88\xab\x8f\x6c\x53\x16\x4e\x3a\ +\x59\x1a\x6b\xb5\x7e\xbf\x00\x2e\x8f\xd9\x4e\x2a\x65\x70\x63\x6e\ +\x66\x2f\x59\x1a\x6b\xb5\x7e\xbf\x6b\xcf\x82\x82\x52\x06\x6b\xb5\ +\x76\x84\x67\x00\x59\x27\x95\x7f\x5e\xa6\x00\x2e\x59\x82\x67\x9c\ +\x4e\x3a\x96\xf6\x00\x2c\x68\x37\x67\x61\x66\xf2\x7e\xbf\x5c\x06\ +\x88\xab\x89\xc6\x4e\x3a\x76\xf4\x7e\xbf\x6b\xb5\x00\x2e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\xc2\x57\x68\x65\x6e\x20\x65\x78\x70\ +\x6f\x72\x74\x69\x6e\x67\x20\x73\x70\x6c\x69\x6e\x65\x73\x20\x74\ +\x6f\x20\x44\x58\x46\x2c\x20\x74\x68\x65\x79\x20\x61\x72\x65\x20\ +\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x65\x64\x20\x69\x6e\x20\x70\ +\x6f\x6c\x79\x6c\x69\x6e\x65\x73\x2e\x20\x54\x68\x69\x73\x20\x76\ +\x61\x6c\x75\x65\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x61\x78\x69\ +\x6d\x75\x6d\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x65\x61\ +\x63\x68\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x6f\x6c\x79\x6c\x69\ +\x6e\x65\x20\x73\x65\x67\x6d\x65\x6e\x74\x73\x2e\x20\x49\x66\x20\ +\x30\x2c\x20\x74\x68\x65\x6e\x20\x74\x68\x65\x20\x77\x68\x6f\x6c\ +\x65\x20\x73\x70\x6c\x69\x6e\x65\x20\x69\x73\x20\x74\x72\x65\x61\ +\x74\x65\x64\x20\x61\x73\x20\x61\x20\x73\x74\x72\x61\x69\x67\x68\ +\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x2e\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0c\x00\x58\x00\x59\x00\x28\x98\x76\x97\x62\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x08\x58\x59\x20\x28\x54\x6f\x70\x29\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x58\x00\x5a\x00\x28\x52\x4d\ +\x97\x62\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x58\x5a\ +\x20\x28\x46\x72\x6f\x6e\x74\x29\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\ +\x00\x59\x00\x5a\x00\x28\x4f\xa7\x97\x62\x00\x29\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x59\x5a\x20\x28\x53\x69\x64\x65\x29\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x06\x00\x61\x00\x6c\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x03\x61\x6c\x74\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x1e\x90\x09\x4e\x2d\x52\x19\x5d\xe5\x51\x77\x68\x0f\x98\x9c\ +\x82\x72\x00\x2f\x7e\xbf\x5b\xbd\x8b\xbe\x4e\x3a\x9e\xd8\x8b\xa4\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x63\x68\x65\x63\x6b\x20\ +\x74\x68\x69\x73\x20\x69\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\ +\x20\x74\x6f\x20\x75\x73\x65\x20\x74\x68\x65\x20\x63\x6f\x6c\x6f\ +\x72\x2f\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\x66\x72\x6f\x6d\ +\x20\x74\x68\x65\x20\x74\x6f\x6f\x6c\x62\x61\x72\x20\x61\x73\x20\ +\x64\x65\x66\x61\x75\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x00\ +\x63\x00\x74\x00\x72\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x63\x74\x72\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xce\x00\x69\x00\ +\x66\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\ +\x64\x00\x2c\x00\x20\x00\x61\x00\x20\x00\x77\x00\x69\x00\x64\x00\ +\x67\x00\x65\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x64\x00\x69\x00\ +\x63\x00\x61\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\ +\x6e\x00\x74\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\ +\x20\x00\x6f\x00\x72\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x61\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x70\x00\x70\x00\ +\x65\x00\x61\x00\x72\x00\x73\x00\x20\x00\x64\x00\x75\x00\x72\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x64\x00\x72\x00\x61\x00\x77\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x72\x00\ +\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x67\x69\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x61\x20\x77\x69\x64\x67\x65\x74\x20\x69\x6e\x64\x69\x63\x61\ +\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\ +\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x20\x6f\ +\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x61\x70\x70\x65\x61\ +\x72\x73\x20\x64\x75\x72\x69\x6e\x67\x20\x64\x72\x61\x77\x69\x6e\ +\x67\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x3e\x90\x09\x4e\x2d\x52\x19\x54\x0c\x4e\x00\x56\xfe\ +\x5c\x42\x76\x84\x5b\xf9\x8c\x61\x7e\xc4\x62\x10\x7e\xd8\x56\xfe\ +\x56\xfe\x57\x57\x00\x2c\x00\x20\x66\x3e\x79\x3a\x90\x1f\x5e\xa6\ +\x8f\x83\x5f\xeb\x00\x2c\x00\x20\x4f\x46\x4e\x0d\x66\x13\x7f\x16\ +\x8f\x91\x08\x00\x00\x00\x00\x06\x00\x00\x00\x93\x69\x66\x20\x74\ +\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\ +\x20\x73\x61\x6d\x65\x20\x6c\x61\x79\x65\x72\x73\x20\x77\x69\x6c\ +\x6c\x20\x62\x65\x20\x6a\x6f\x69\x6e\x65\x64\x20\x69\x6e\x74\x6f\ +\x20\x44\x72\x61\x66\x74\x20\x42\x6c\x6f\x63\x6b\x73\x2c\x20\x74\ +\x75\x72\x6e\x69\x6e\x67\x20\x74\x68\x65\x20\x64\x69\x73\x70\x6c\ +\x61\x79\x20\x66\x61\x73\x74\x65\x72\x2c\x20\x62\x75\x74\x20\x6d\ +\x61\x6b\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\x6c\x65\x73\x73\x20\ +\x65\x61\x73\x69\x6c\x79\x20\x65\x64\x69\x74\x61\x62\x6c\x65\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x18\x90\x09\x4e\x2d\x52\x19\x5b\xfc\x51\ +\x65\x56\xfe\x7e\xb8\x7a\x7a\x95\xf4\x76\x84\x5b\xf9\x8c\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x3c\x69\x66\x20\x74\x68\x69\x73\ +\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x70\x61\x70\ +\x65\x72\x20\x73\x70\x61\x63\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\ +\x64\x20\x74\x6f\x6f\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x90\x09\x4e\ +\x2d\x52\x19\x5b\xfc\x51\x65\x65\x87\x67\x2c\x00\x2f\x59\x1a\x88\ +\x4c\x65\x87\x67\x2c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x69\ +\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x75\x6e\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x74\x65\x78\x74\x73\x2f\x6d\x74\x65\x78\x74\ +\x73\x20\x77\x6f\x6e\x27\x74\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\ +\x74\x65\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x70\x00\x78\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x02\x70\x78\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0a\x00\x73\x00\x68\x00\x69\x00\x66\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x05\x73\x68\x69\x66\x74\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x10\x65\xb0\x5b\xf9\x8c\x61\x76\x84\x9e\xd8\x8b\xa4\ +\x98\x9c\x82\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x74\x68\ +\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\ +\x66\x6f\x72\x20\x6e\x65\x77\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x12\x63\x55\x63\x49\x7b\x26\x53\xf7\x76\ +\x84\x9e\xd8\x8b\xa4\x98\x9c\x82\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x22\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\ +\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x20\x73\x79\ +\x6d\x62\x6f\x6c\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x65\xb0\x5b\ +\xf9\x8c\x61\x76\x84\x9e\xd8\x8b\xa4\x7e\xbf\x5b\xbd\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x25\x74\x68\x65\x20\x64\x65\x66\x61\x75\ +\x6c\x74\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\x66\x6f\x72\ +\x20\x6e\x65\x77\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0c\x95\xed\x54\x08\x00\x28\x00\x26\x00\x43\x00\x29\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x26\x43\x6c\x6f\x73\x65\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\ +\x8f\xde\x7e\xed\x00\x28\x00\x26\x00\x43\x00\x29\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x26\x43\x6f\x6e\x74\x69\x6e\x75\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x59\ +\x0d\x52\x36\x00\x28\x00\x26\x00\x43\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x05\x26\x43\x6f\x70\x79\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x7e\xd8\x56\xfe\x00\x28\ +\x00\x26\x00\x44\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x26\x44\x72\x61\x66\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0c\x5b\x8c\x62\x10\x00\x28\x00\x26\x00\x46\ +\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x26\x46\x69\x6e\ +\x69\x73\x68\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x10\x00\x26\x00\x4f\x00\x43\x00\x43\x98\xce\x68\x3c\x50\ +\x4f\x79\xfb\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x26\x4f\x43\ +\x43\x2d\x73\x74\x79\x6c\x65\x20\x6f\x66\x66\x73\x65\x74\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x76\xf8\ +\x5b\xf9\x00\x28\x00\x26\x00\x52\x00\x29\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x26\x52\x65\x6c\x61\x74\x69\x76\x65\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x64\xa4\x6d\ +\x88\x00\x28\x00\x26\x00\x55\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x05\x26\x55\x6e\x64\x6f\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0c\x64\xe6\x96\x64\x00\x28\x00\x26\ +\x00\x57\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x57\ +\x69\x70\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0c\x5f\x53\x52\x4d\x7e\xd8\x56\xfe\x54\x7d\x4e\xe4\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x14\x41\x63\x74\x69\x76\x65\x20\ +\x44\x72\x61\x66\x74\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x5f\x53\x52\ +\x4d\x5b\xf9\x8c\x61\x5f\xc5\x98\x7b\x53\x05\x54\x2b\x00\x32\x4e\ +\x2a\x4e\xe5\x4e\x0a\x76\x84\x70\xb9\x00\x2f\x82\x82\x70\xb9\x00\ +\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x41\x63\x74\x69\x76\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x6d\x75\x73\x74\x20\x68\x61\ +\x76\x65\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\x74\x77\x6f\ +\x20\x70\x6f\x69\x6e\x74\x73\x2f\x6e\x6f\x64\x65\x73\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x5c\x06\ +\x70\xb9\x6d\xfb\x52\xa0\x52\x30\x5f\x53\x52\x4d\x5b\xf9\x8c\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x41\x64\x64\x20\x70\x6f\ +\x69\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x63\x75\x72\x72\ +\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x5f\x20\x89\xd2\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x08\x41\x70\x65\x72\x74\x75\x72\x65\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\ +\x63\x55\x63\x49\x97\x76\x68\x46\x89\xd2\x00\x3a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x10\x41\x70\x65\x72\x74\x75\x72\x65\x20\x61\ +\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0e\x5e\x94\x75\x28\x4e\x8e\x90\x09\x4e\x2d\ +\x5b\xf9\x8c\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x41\x70\ +\x70\x6c\x79\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x04\x57\x06\x5f\x27\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x03\x41\x72\x63\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x42\x68\x37\x67\x61\x66\xf2\ +\x7e\xbf\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x42\x53\x70\x6c\ +\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x12\x65\xe0\x6c\xd5\x50\x4f\x79\xfb\x6b\x64\x7c\x7b\x5b\ +\xf9\x8c\x61\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x43\ +\x61\x6e\x6e\x6f\x74\x20\x6f\x66\x66\x73\x65\x74\x20\x74\x68\x69\ +\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x57\x06\ +\x5f\xc3\x00\x20\x00\x58\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\ +\x43\x65\x6e\x74\x65\x72\x20\x58\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x08\x66\xf4\x65\x39\x68\x37\x5f\x0f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x68\x61\x6e\x67\x65\ +\x20\x53\x74\x79\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x26\x82\xe5\x90\x09\x4e\x2d\x52\x19\x5b\xf9\ +\x8c\x61\x66\x3e\x79\x3a\x4e\x3a\x58\x6b\x51\x45\x00\x2c\x54\x26\ +\x52\x19\x73\xb0\x5b\x9e\x4e\x3a\x7e\xbf\x68\x46\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x5b\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\ +\x20\x69\x66\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x73\ +\x68\x6f\x75\x6c\x64\x20\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\ +\x66\x69\x6c\x6c\x65\x64\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\x73\ +\x65\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\ +\x20\x61\x73\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\x28\x69\ +\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x02\x57\x06\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\x69\x72\ +\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0a\x4e\x0a\x4e\x0b\x65\x87\x5d\xe5\x51\x77\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x74\x65\x78\x74\x20\x74\ +\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x22\x76\xf8\x5b\xf9\x4e\x8e\x4e\x0a\x4e\x00\x70\xb9\ +\x57\x50\x68\x07\x62\x16\x7e\xdd\x5b\xf9\x57\x50\x68\x07\x00\x28\ +\x7a\x7a\x95\xf4\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x36\ +\x43\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x73\x20\x72\x65\x6c\x61\ +\x74\x69\x76\x65\x20\x74\x6f\x20\x6c\x61\x73\x74\x20\x70\x6f\x69\ +\x6e\x74\x20\x6f\x72\x20\x61\x62\x73\x6f\x6c\x75\x74\x65\x20\x28\ +\x53\x50\x41\x43\x45\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x04\x59\x0d\x52\x36\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x43\x6f\x70\x79\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0e\x65\xe0\x6c\xd5\x53\x47\x7e\xa7\ +\x8b\xe5\x5b\xf9\x8c\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\ +\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x75\x70\x67\x72\x61\x64\x65\ +\x20\x74\x68\x65\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\x52\ +\x1b\x5e\xfa\x5f\x27\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\ +\x72\x65\x61\x74\x65\x20\x41\x72\x63\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x52\x1b\x5e\xfa\x00\x42\x68\ +\x37\x67\x61\x66\xf2\x7e\xbf\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0e\x43\x72\x65\x61\x74\x65\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\x52\ +\x1b\x5e\xfa\x57\x06\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\ +\x72\x65\x61\x74\x65\x20\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x44\x00\x57\x00\x69\ +\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x72\ +\x65\x61\x74\x65\x20\x44\x57\x69\x72\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x52\x1b\x5e\xfa\x5c\x3a\ +\x5b\xf8\x68\x07\x6c\xe8\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x43\x72\x65\x61\x74\x65\x20\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\ +\x52\x1b\x5e\xfa\x59\x1a\x8f\xb9\x5f\x62\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0e\x43\x72\x65\x61\x74\x65\x20\x50\x6f\x6c\x79\x67\ +\x6f\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x08\x52\x1b\x5e\xfa\x77\xe9\x5f\x62\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x43\x72\x65\x61\x74\x65\x20\x52\x65\x63\x74\x61\ +\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x08\x52\x1b\x5e\xfa\x65\x87\x67\x2c\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x54\x65\x78\ +\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x0a\x00\x44\x00\x57\x00\x69\x00\x72\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x05\x44\x57\x69\x72\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x44\x00\x57\x00\x69\ +\x00\x72\x00\x65\x00\x20\x00\x68\x00\x61\x00\x73\x00\x20\x00\x62\ +\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\ +\x00\x65\x00\x64\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\ +\x44\x57\x69\x72\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x63\ +\x6c\x6f\x73\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x08\x5c\x3a\x5b\xf8\x68\x07\x6c\xe8\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x44\x69\x6d\x65\x6e\x73\x69\x6f\ +\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x04\x8d\xdd\x79\xbb\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x44\ +\x69\x73\x74\x61\x6e\x63\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x14\x4e\x0d\x57\x28\x7e\xd8\x56\xfe\x5e\ +\x73\x97\x62\x4e\x0a\x62\x95\x5f\x71\x70\xb9\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x28\x44\x6f\x20\x6e\x6f\x74\x20\x70\x72\x6f\x6a\ +\x65\x63\x74\x20\x70\x6f\x69\x6e\x74\x73\x20\x74\x6f\x20\x61\x20\ +\x64\x72\x61\x77\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x7e\xd8\x56\ +\xfe\x52\x1b\x5e\xfa\x5d\xe5\x51\x77\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x14\x44\x72\x61\x66\x74\x20\x63\x72\x65\x61\x74\x69\x6f\ +\x6e\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0c\x7e\xd8\x56\xfe\x4f\xee\x65\x39\x5d\ +\xe5\x51\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x44\x72\x61\ +\x66\x74\x20\x6d\x6f\x64\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\ +\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0c\x8f\xb9\x4e\x0d\x76\xf8\x4e\xa4\x00\x21\x00\ +\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x45\x64\x67\x65\x73\ +\x20\x64\x6f\x6e\x27\x74\x20\x69\x6e\x74\x65\x72\x73\x65\x63\x74\ +\x21\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x04\x7f\x16\x8f\x91\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x45\x64\x69\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0c\x58\x6b\x51\x45\x00\x28\x00\x26\x00\x46\x00\x29\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x46\x26\x69\x6c\x6c\x65\ +\x64\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x08\x88\x68\x97\x62\x98\x9c\x82\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0a\x46\x61\x63\x65\x20\x43\x6f\x6c\x6f\x72\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x5b\x8c\x62\ +\x10\x5e\x76\x95\xed\x54\x08\x5f\x53\x52\x4d\x7e\xbf\x6b\xb5\x00\ +\x28\x00\x43\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x46\ +\x69\x6e\x69\x73\x68\x65\x73\x20\x61\x6e\x64\x20\x63\x6c\x6f\x73\ +\x65\x73\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6c\ +\x69\x6e\x65\x20\x28\x43\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x1c\x5b\x8c\x62\x10\x5f\x53\x52\x4d\x7e\ +\xd8\x56\xfe\x62\x16\x7f\x16\x8f\x91\x64\xcd\x4f\x5c\x00\x28\x00\ +\x46\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x46\x69\x6e\ +\x69\x73\x68\x65\x73\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\ +\x74\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x6f\x72\x20\x65\x64\x69\ +\x74\x69\x6e\x67\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x20\x28\ +\x46\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x08\x5b\x57\x4f\x53\x59\x27\x5c\x0f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x46\x6f\x6e\x74\x20\x53\x69\x7a\x65\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4e\x00\x46\x00\ +\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\x63\x00\ +\x69\x00\x72\x00\x63\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x20\x00\ +\x65\x00\x64\x00\x67\x00\x65\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\ +\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x63\x00\ +\x69\x00\x72\x00\x63\x00\x6c\x00\x65\x00\x0a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x27\x46\x6f\x75\x6e\x64\x20\x31\x20\x63\x69\x72\ +\x63\x75\x6c\x61\x72\x20\x65\x64\x67\x65\x3a\x20\x6d\x61\x6b\x69\ +\x6e\x67\x20\x61\x20\x63\x69\x72\x63\x6c\x65\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x53\xd1\x73\xb0\ +\x4e\x00\x4e\x2a\x95\xed\x54\x08\x76\x84\x83\x49\x7e\xd8\x5b\xf9\ +\x8c\x61\x00\x3a\x4e\xce\x51\x76\x52\x1b\x5e\xfa\x97\x62\x00\x20\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x46\x6f\x75\x6e\x64\x20\ +\x31\x20\x63\x6c\x6f\x73\x65\x64\x20\x73\x6b\x65\x74\x63\x68\x20\ +\x6f\x62\x6a\x65\x63\x74\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\ +\x20\x66\x61\x63\x65\x20\x66\x72\x6f\x6d\x20\x69\x74\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x53\xd1\ +\x73\xb0\x4e\x00\x4e\x2a\x97\x62\x00\x3a\x63\xd0\x53\xd6\x7e\xbf\ +\x68\x46\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x46\x6f\ +\x75\x6e\x64\x20\x31\x20\x66\x61\x63\x65\x3a\x20\x65\x78\x74\x72\ +\x61\x63\x74\x69\x6e\x67\x20\x69\x74\x73\x20\x77\x69\x72\x65\x73\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x20\x53\xd1\x73\xb0\x4e\x00\x4e\x2a\x97\x5e\x53\xc2\x65\x70\x53\ +\x16\x5b\xf9\x8c\x61\x00\x3a\x83\x49\x7e\xd8\x4f\xee\x6b\x63\x00\ +\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x46\x6f\x75\x6e\x64\ +\x20\x31\x20\x6e\x6f\x6e\x2d\x70\x61\x72\x61\x6d\x65\x74\x72\x69\ +\x63\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x64\x72\x61\x66\x74\ +\x69\x66\x79\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x46\x00\x6f\x00\x75\ +\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\x6f\x00\x70\x00\x65\ +\x00\x6e\x00\x20\x00\x65\x00\x64\x00\x67\x00\x65\x00\x3a\x00\x20\ +\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\ +\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x0a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x21\x46\x6f\x75\x6e\x64\x20\x31\x20\x6f\x70\ +\x65\x6e\x20\x65\x64\x67\x65\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\ +\x61\x20\x6c\x69\x6e\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x1a\x53\xd1\x73\xb0\x4e\x00\x4e\x2a\x5f\ +\x00\x65\x3e\x59\x1a\x6b\xb5\x7e\xbf\x00\x3a\x95\xed\x54\x08\x00\ +\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x46\x6f\x75\x6e\x64\ +\x20\x31\x20\x6f\x70\x65\x6e\x20\x77\x69\x72\x65\x3a\x20\x63\x6c\ +\x6f\x73\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x53\xd1\x73\xb0\x4e\x00\x4e\ +\x2a\x53\xc2\x65\x70\x53\x16\x5b\xf9\x8c\x61\x00\x3a\x53\xbb\x96\ +\x64\x4f\x9d\x8d\x56\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x35\x46\x6f\x75\x6e\x64\x20\x31\x20\x70\x61\x72\x61\x6d\x65\x74\ +\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x62\x72\x65\x61\ +\x6b\x69\x6e\x67\x20\x69\x74\x73\x20\x64\x65\x70\x65\x6e\x64\x65\ +\x6e\x63\x69\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x1a\x53\xd1\x73\xb0\x53\xef\x5b\x9e\x4f\x53\ +\x53\x16\x5b\xf9\x8c\x61\x00\x3a\x00\x20\x5b\x9e\x4f\x53\x53\x16\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x46\x6f\x75\x6e\x64\x20\ +\x31\x20\x73\x6f\x6c\x69\x64\x69\x66\x69\x63\x61\x62\x6c\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x3a\x20\x73\x6f\x6c\x69\x64\x69\x66\x79\ +\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x14\x53\xd1\x73\xb0\x4e\x24\x4e\x2a\x5b\ +\xf9\x8c\x61\x00\x3a\x87\x8d\x54\x08\x00\x20\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1d\x46\x6f\x75\x6e\x64\x20\x32\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\ +\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x14\x53\xd1\x73\xb0\x4e\x24\x4e\x2a\x5b\xf9\x8c\x61\x00\x3a\ +\x76\xf8\x51\xcf\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\ +\x46\x6f\x75\x6e\x64\x20\x32\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\ +\x20\x73\x75\x62\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x74\x68\x65\ +\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x46\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x61\ +\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x20\ +\x00\x77\x00\x69\x00\x72\x00\x65\x00\x3a\x00\x20\x00\x6d\x00\x61\ +\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x66\ +\x00\x61\x00\x63\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x23\x46\x6f\x75\x6e\x64\x20\x61\x20\x63\x6c\x6f\x73\x65\x64\ +\x20\x77\x69\x72\x65\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\ +\x66\x61\x63\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x1c\x53\xd1\x73\xb0\x7e\xc4\x00\x3a\x51\x73\x95\ +\xed\x7e\xc4\x4e\x2d\x62\x53\x5f\x00\x76\x84\x5b\xf9\x8c\x61\x00\ +\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x46\x6f\x75\x6e\x64\ +\x20\x67\x72\x6f\x75\x70\x73\x3a\x20\x63\x6c\x6f\x73\x69\x6e\x67\ +\x20\x65\x61\x63\x68\x20\x6f\x70\x65\x6e\x20\x6f\x62\x6a\x65\x63\ +\x74\x20\x69\x6e\x73\x69\x64\x65\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x53\xd1\x73\xb0\x53\x05\x54\ +\x2b\x66\xf2\x7e\xbf\x76\x84\x5b\xf9\x8c\x61\x00\x3a\x00\x20\x87\ +\x8d\x54\x08\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x46\x6f\x75\ +\x6e\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x63\x6f\x6e\x74\x61\ +\x69\x6e\x69\x6e\x67\x20\x63\x75\x72\x76\x65\x73\x3a\x20\x66\x75\ +\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x4e\xc5\x53\xd1\x73\xb0\ +\x7e\xbf\x68\x46\x00\x3a\x63\xd0\x53\xd6\x8f\xb9\x00\x20\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x29\x46\x6f\x75\x6e\x64\x20\x6f\x6e\ +\x6c\x79\x20\x77\x69\x72\x65\x73\x3a\x20\x65\x78\x74\x72\x61\x63\ +\x74\x69\x6e\x67\x20\x74\x68\x65\x69\x72\x20\x65\x64\x67\x65\x73\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x16\x53\xd1\x73\xb0\x82\xe5\x5e\x72\x8f\xb9\x00\x3a\x7e\xc4\x62\ +\x10\x59\x1a\x6b\xb5\x7e\xbf\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x21\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x65\ +\x64\x67\x65\x73\x3a\x20\x77\x69\x72\x69\x6e\x67\x20\x74\x68\x65\ +\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x16\x53\xd1\x73\xb0\x82\xe5\x5e\x72\x97\x62\x00\x3a\x70\xb8\ +\x5f\x00\x5b\x83\x4e\xec\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x24\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\ +\x66\x61\x63\x65\x73\x3a\x20\x73\x70\x6c\x69\x74\x74\x69\x6e\x67\ +\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x18\x53\xd1\x73\xb0\x82\xe5\x5e\x72\x67\x2a\ +\x8f\xde\x63\xa5\x8f\xb9\x00\x3a\x6d\xf7\x54\x08\x00\x20\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x33\x46\x6f\x75\x6e\x64\x20\x73\x65\ +\x76\x65\x72\x61\x6c\x20\x6e\x6f\x6e\x2d\x63\x6f\x6e\x6e\x65\x63\ +\x74\x65\x64\x20\x65\x64\x67\x65\x73\x3a\x20\x6d\x61\x6b\x69\x6e\ +\x67\x20\x63\x6f\x6d\x70\x6f\x75\x6e\x64\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x53\xd1\x73\xb0\x82\ +\xe5\x5e\x72\x67\x2a\x59\x04\x74\x06\x5b\xf9\x8c\x61\x00\x3a\x6d\ +\xf7\x54\x08\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x46\ +\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6e\x6f\x6e\ +\x2d\x74\x72\x65\x61\x74\x61\x62\x6c\x65\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x63\x6f\x6d\x70\x6f\ +\x75\x6e\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x22\x53\xd1\x73\xb0\x4e\x86\x82\xe5\x5e\x72\x5b\xf9\ +\x8c\x61\x62\x16\x97\x62\x00\x3a\x00\x20\x52\x1b\x5e\xfa\x53\xc2\ +\x65\x70\x53\x16\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x39\ +\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x6f\x72\x20\x66\x61\x63\x65\x73\x3a\x20\ +\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x70\x61\x72\x61\x6d\x65\x74\ +\x72\x69\x63\x20\x66\x61\x63\x65\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x14\x53\xd1\x73\xb0\x82\xe5\x5e\ +\x72\x5b\xf9\x8c\x61\x00\x3a\x00\x20\x87\x8d\x54\x08\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x23\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\ +\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x66\x75\ +\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x53\xd1\x73\xb0\x82\xe5\ +\x5e\x72\x5b\xf9\x8c\x61\x00\x3a\x4e\xce\x7b\x2c\x4e\x00\x4e\x2a\ +\x4e\x2d\x51\xcf\x53\xbb\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x3b\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x73\x75\x62\x74\x72\x61\x63\ +\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\x66\x72\x6f\x6d\x20\x74\ +\x68\x65\x20\x66\x69\x72\x73\x74\x20\x6f\x6e\x65\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x82\xe5\x90\ +\x09\x4e\x2d\x52\x19\x4f\x7f\x75\x28\x00\x4f\x00\x43\x00\x43\x98\ +\xce\x68\x3c\x50\x4f\x79\xfb\x80\x0c\x97\x5e\x7e\xcf\x51\x78\x50\ +\x4f\x79\xfb\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x49\x66\x20\ +\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x6e\x20\x4f\x43\x43\x2d\ +\x73\x74\x79\x6c\x65\x20\x6f\x66\x66\x73\x65\x74\x20\x77\x69\x6c\ +\x6c\x20\x62\x65\x20\x70\x65\x72\x66\x6f\x72\x6d\x65\x64\x20\x69\ +\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x63\x6c\ +\x61\x73\x73\x69\x63\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x90\x09\x4e\x2d\ +\x52\x19\x54\x7d\x4e\xe4\x8f\xde\x7e\xed\x8f\xd0\x88\x4c\x76\xf4\ +\x81\xf3\x51\x8d\x6b\x21\x63\x09\x4e\x0b\x54\x7d\x4e\xe4\x63\x09\ +\x94\xae\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4c\x49\x66\x20\x63\ +\x68\x65\x63\x6b\x65\x64\x2c\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\ +\x77\x69\x6c\x6c\x20\x6e\x6f\x74\x20\x66\x69\x6e\x69\x73\x68\x20\ +\x75\x6e\x74\x69\x6c\x20\x79\x6f\x75\x20\x70\x72\x65\x73\x73\x20\ +\x74\x68\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x62\x75\x74\x74\ +\x6f\x6e\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x20\x90\x09\x4e\x2d\x52\x19\x5b\xf9\ +\x8c\x61\x5c\x06\x88\xab\x59\x0d\x52\x36\x80\x0c\x97\x5e\x79\xfb\ +\x52\xa8\x00\x28\x00\x43\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x37\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x63\x6f\ +\x70\x69\x65\x64\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\ +\x6d\x6f\x76\x65\x64\x20\x28\x43\x29\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x5d\xf2\x5b\x89\x88\xc5\x76\ +\x84\x5b\x8f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x49\x6e\x73\ +\x74\x61\x6c\x6c\x65\x64\x20\x4d\x61\x63\x72\x6f\x73\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x67\x00\x54\ +\x0e\x4e\x00\x70\xb9\x5d\xf2\x88\xab\x52\x20\x96\x64\x00\x20\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x4c\x61\x73\x74\x20\x70\x6f\ +\x69\x6e\x74\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x72\x65\x6d\ +\x6f\x76\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x02\x7e\xbf\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x08\x7e\xbf\x67\x61\x98\x9c\x82\x72\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x4c\x69\x6e\x65\x20\x43\x6f\x6c\x6f\ +\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x04\x7e\xbf\x5b\xbd\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4c\ +\x69\x6e\x65\x20\x57\x69\x64\x74\x68\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x04\x79\xfb\x52\xa8\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x4d\x6f\x76\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x65\xe0\x6c\xd5\x51\ +\x8d\x96\x4d\x7e\xa7\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x4e\ +\x6f\x20\x6d\x6f\x72\x65\x20\x64\x6f\x77\x6e\x67\x72\x61\x64\x65\ +\x20\x70\x6f\x73\x73\x69\x62\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x8b\xe5\x5b\xf9\x8c\x61\ +\x65\xe0\x6c\xd5\x53\x47\x7e\xa7\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x25\x4e\x6f\x20\x75\x70\x67\x72\x61\x64\x65\x20\x61\x76\x61\ +\x69\x6c\x61\x62\x6c\x65\x20\x66\x6f\x72\x20\x74\x68\x69\x73\x20\ +\x6f\x62\x6a\x65\x63\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x02\x65\xe0\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x04\x8f\xb9\x65\x70\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0f\x4e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x73\ +\x69\x64\x65\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x04\x50\x4f\x79\xfb\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x1c\x50\x4f\x79\xfb\x64\xcd\x4f\x5c\ +\x6b\xcf\x6b\x21\x53\xea\x80\xfd\x94\x88\x5b\xf9\x4e\x00\x4e\x2a\ +\x5b\xf9\x8c\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x4f\x66\ +\x66\x73\x65\x74\x20\x6f\x6e\x6c\x79\x20\x77\x6f\x72\x6b\x73\x20\ +\x6f\x6e\x20\x6f\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x61\x74\ +\x20\x61\x20\x74\x69\x6d\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x52\x00\x4f\x00\x6e\x00\x65\x00\x20\ +\x00\x77\x00\x69\x00\x72\x00\x65\x00\x20\x00\x69\x00\x73\x00\x20\ +\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\ +\x00\x61\x00\x72\x00\x2c\x00\x20\x00\x75\x00\x70\x00\x67\x00\x72\ +\x00\x61\x00\x64\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\ +\x00\x64\x00\x6f\x00\x6e\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x29\x4f\x6e\x65\x20\x77\x69\x72\x65\x20\x69\x73\x20\ +\x6e\x6f\x74\x20\x70\x6c\x61\x6e\x61\x72\x2c\x20\x75\x70\x67\x72\ +\x61\x64\x65\x20\x6e\x6f\x74\x20\x64\x6f\x6e\x65\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x90\x09\x62\ +\xe9\x5b\xf9\x8c\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x50\ +\x69\x63\x6b\x20\x4f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x90\x09\x62\xe9\x4e\x00\ +\x4e\x2a\x97\x62\x4f\x5c\x4e\x3a\x7e\xd8\x56\xfe\x5e\x73\x97\x62\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x50\x69\x63\x6b\x20\x61\ +\x20\x66\x61\x63\x65\x20\x74\x6f\x20\x64\x65\x66\x69\x6e\x65\x20\ +\x74\x68\x65\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x70\x6c\x61\x6e\ +\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0e\x90\x09\x62\xe9\x63\x55\x63\x49\x97\x76\x68\x46\x00\x3a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x50\x69\x63\x6b\x20\x61\ +\x70\x65\x72\x74\x75\x72\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x90\x09\x62\xe9\x57\xfa\x51\ +\xc6\x89\xd2\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\ +\x69\x63\x6b\x20\x62\x61\x73\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\ +\x90\x09\x62\xe9\x57\xfa\x51\xc6\x70\xb9\x00\x3a\x00\x20\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\x62\x61\x73\ +\x65\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x90\x09\x62\xe9\x4e\x2d\x5f\ +\xc3\x70\xb9\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x50\ +\x69\x63\x6b\x20\x63\x65\x6e\x74\x65\x72\x20\x70\x6f\x69\x6e\x74\ +\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0c\x90\x09\x62\xe9\x8d\xdd\x79\xbb\x00\x3a\x00\x20\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0f\x50\x69\x63\x6b\x20\x64\x69\x73\ +\x74\x61\x6e\x63\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0a\x90\x09\x62\xe9\x7e\xc8\x70\xb9\x00\ +\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x50\x69\x63\x6b\x20\ +\x65\x6e\x64\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x90\x09\x62\xe9\x7b\ +\x2c\x4e\x00\x70\xb9\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x12\x50\x69\x63\x6b\x20\x66\x69\x72\x73\x74\x20\x70\x6f\x69\x6e\ +\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0c\x90\x09\x62\xe9\x5b\x9a\x4f\x4d\x70\xb9\x00\x3a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x6c\x6f\ +\x63\x61\x74\x69\x6f\x6e\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x90\x09\ +\x62\xe9\x4e\x0b\x4e\x00\x70\xb9\x00\x2c\x62\x16\x5b\x8c\x62\x10\ +\x00\x28\x00\x46\x00\x29\x00\x7c\x95\xed\x54\x08\x00\x28\x00\x43\ +\x00\x29\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x50\x69\ +\x63\x6b\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x2c\x20\x6f\ +\x72\x20\x28\x46\x29\x69\x6e\x69\x73\x68\x20\x6f\x72\x20\x28\x43\ +\x29\x6c\x6f\x73\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0c\x90\x09\x62\xe9\x4e\x0b\x4e\x00\x70\ +\xb9\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\ +\x6b\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x90\x09\ +\x62\xe9\x5b\xf9\x89\xd2\x70\xb9\x00\x3a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x6f\x70\x70\x6f\x73\x69\x74\ +\x65\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x90\x09\x62\xe9\x53\x4a\x5f\ +\x84\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x50\x69\x63\ +\x6b\x20\x72\x61\x64\x69\x75\x73\x3a\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x90\x09\x62\xe9\x65\xcb\ +\x8f\x6c\x89\xd2\x5e\xa6\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x72\x6f\x74\x61\x74\x69\x6f\ +\x6e\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x10\x90\x09\x62\xe9\x65\xcb\x8f\ +\x6c\x4e\x2d\x5f\xc3\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x16\x50\x69\x63\x6b\x20\x72\x6f\x74\x61\x74\x69\x6f\x6e\ +\x20\x63\x65\x6e\x74\x65\x72\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x10\x90\x09\x62\xe9\x7f\x29\x65\ +\x3e\x6b\xd4\x4f\x8b\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x13\x50\x69\x63\x6b\x20\x73\x63\x61\x6c\x65\x20\x66\x61\ +\x63\x74\x6f\x72\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0c\x90\x09\x62\xe9\x8d\x77\x59\xcb\x89\xd2\ +\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\x6b\ +\x20\x73\x74\x61\x72\x74\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x90\x09\ +\x62\xe9\x8d\x77\x70\xb9\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x12\x50\x69\x63\x6b\x20\x73\x74\x61\x72\x74\x20\x70\x6f\x69\ +\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x02\x70\xb9\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x06\x59\x1a\x8f\xb9\x5f\x62\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x07\x50\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x53\x4a\x5f\x84\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x61\x64\x69\x75\x73\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\ +\x57\x06\x53\x4a\x5f\x84\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x52\x61\x64\x69\x75\x73\x20\x6f\x66\x20\x43\x69\x72\x63\x6c\x65\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\ +\x77\xe9\x5f\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x52\x65\ +\x63\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x12\x4e\xce\x5f\x53\x52\x4d\x5b\xf9\x8c\ +\x61\x4e\x2d\x52\x20\x96\x64\x70\xb9\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x25\x52\x65\x6d\x6f\x76\x65\x20\x70\x6f\x69\x6e\x74\x73\ +\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\ +\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x04\x65\xcb\x8f\x6c\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x52\x6f\x74\x61\x74\x65\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x7f\x29\x65\x3e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x90\ +\x09\x62\xe9\x5e\x73\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0c\x53\x65\x6c\x65\x63\x74\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x90\x09\x62\ +\xe9\x00\x58\x00\x59\x5e\x73\x97\x62\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x58\x59\x20\x70\x6c\x61\ +\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0c\x90\x09\x62\xe9\x00\x58\x00\x5a\x5e\x73\x97\x62\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x58\ +\x5a\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0c\x90\x09\x62\xe9\x00\x59\x00\x5a\x5e\ +\x73\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\ +\x65\x63\x74\x20\x59\x5a\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x90\x09\x62\xe9\ +\x89\x81\x79\xfb\x52\xa8\x76\x84\x5b\xf9\x8c\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x19\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x6d\x6f\x76\x65\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x90\ +\x09\x62\xe9\x89\x81\x50\x4f\x79\xfb\x76\x84\x5b\xf9\x8c\x61\x00\ +\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x53\x65\x6c\x65\x63\ +\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x6f\ +\x66\x66\x73\x65\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x12\x90\x09\x62\xe9\x89\x81\x65\xcb\x8f\x6c\ +\x76\x84\x5b\xf9\x8c\x61\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1b\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x74\x6f\x20\x72\x6f\x74\x61\x74\x65\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x90\x09\x62\ +\xe9\x89\x81\x7f\x29\x65\x3e\x76\x84\x5b\xf9\x8c\x61\x00\x20\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\ +\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x73\x63\x61\ +\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x18\x90\x09\x62\xe9\x89\x81\x4f\xee\x52\x6a\x00\x2f\x5e\ +\xf6\x4f\x38\x76\x84\x5b\xf9\x8c\x61\x00\x20\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x20\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x74\x72\x69\x6d\x2f\x65\x78\ +\x74\x65\x6e\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x12\x90\x09\x62\xe9\x89\x81\x53\x47\x7e\xa7\x76\ +\x84\x5b\xf9\x8c\x61\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1c\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\ +\x74\x20\x74\x6f\x20\x75\x70\x67\x72\x61\x64\x65\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x90\x09\x62\ +\xe9\x57\x82\x76\xf4\x4e\x8e\x5f\x53\x52\x4d\x89\xc6\x56\xfe\x76\ +\x84\x5e\x73\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x53\ +\x65\x6c\x65\x63\x74\x20\x70\x6c\x61\x6e\x65\x20\x70\x65\x72\x70\ +\x65\x6e\x64\x69\x63\x75\x6c\x61\x72\x20\x74\x6f\x20\x74\x68\x65\ +\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x76\x69\x65\x77\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x68\x37\x67\ +\x61\x66\xf2\x7e\xbf\x5d\xf2\x95\xed\x54\x08\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x17\x53\x70\x6c\x69\x6e\x65\x20\x68\x61\x73\x20\ +\x62\x65\x65\x6e\x20\x63\x6c\x6f\x73\x65\x64\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x8d\x77\x59\xcb\ +\x89\xd2\x5e\xa6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x74\ +\x61\x72\x74\x20\x41\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x04\x65\x87\x67\x2c\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x54\x65\x78\x74\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x6b\x64\x7c\x7b\x57\ +\x8b\x5b\xf9\x8c\x61\x4e\x0d\x53\xef\x7f\x16\x8f\x91\x00\x20\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x21\x54\x68\x69\x73\x20\x6f\x62\ +\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x20\x69\x73\x20\x6e\x6f\x74\ +\x20\x65\x64\x69\x74\x61\x62\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x52\x07\x63\x62\x67\x84\ +\x90\x20\x6a\x21\x5f\x0f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\ +\x54\x6f\x67\x67\x6c\x65\x73\x20\x43\x6f\x6e\x73\x74\x72\x75\x63\ +\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x65\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x04\x4f\xee\x52\x6a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x54\x72\x69\x6d\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x64\xa4\x6d\x88\x4e\ +\x0a\x4e\x00\x6b\xb5\x00\x28\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ +\x2b\x00\x5a\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x55\ +\x6e\x64\x6f\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x73\x65\x67\ +\x6d\x65\x6e\x74\x20\x28\x43\x54\x52\x4c\x2b\x5a\x29\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x89\xc6\x56\ +\xfe\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x56\x69\x65\x77\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa2\x00\ +\x57\x00\x69\x00\x70\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x65\x00\x78\x00\x69\x00\x73\x00\x74\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\ +\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x74\x00\x61\x00\ +\x72\x00\x74\x00\x73\x00\x20\x00\x61\x00\x67\x00\x61\x00\x69\x00\ +\x6e\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x73\x00\x74\x00\x20\x00\ +\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x28\x00\x57\x00\ +\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x57\x69\x70\x65\x73\ +\x20\x74\x68\x65\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x73\x65\ +\x67\x6d\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6c\ +\x69\x6e\x65\x20\x61\x6e\x64\x20\x73\x74\x61\x72\x74\x73\x20\x61\ +\x67\x61\x69\x6e\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x6c\x61\ +\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x28\x57\x29\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x7e\xbf\x68\x46\ +\x5d\xe5\x51\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x57\x69\ +\x72\x65\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x02\x00\x58\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x01\x58\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x10\x4e\x0b\x4e\x00\x4e\x2a\x70\xb9\x76\x84\x00\ +\x58\x57\x50\x68\x07\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x58\ +\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\x6e\ +\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x58\x00\x59\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x02\x58\x59\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x58\x00\x5a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x02\x58\x5a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x02\x00\x59\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x01\x59\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x10\x4e\x0b\x4e\x00\x4e\x2a\x70\xb9\x76\x84\ +\x00\x59\x57\x50\x68\x07\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\ +\x59\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\ +\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x59\x00\x5a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x02\x59\x5a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\x00\x5a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x01\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x10\x4e\x0b\x4e\x00\x4e\x2a\x70\xb9\x76\ +\x84\x00\x5a\x57\x50\x68\x07\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1a\x5a\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\ +\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x5f\x53\x52\x4d\x54\ +\x7d\x4e\xe4\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x61\ +\x63\x74\x69\x76\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x3a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x7e\xd8\ +\x56\xfe\x54\x7d\x4e\xe4\x68\x0f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x11\x64\x72\x61\x66\x74\x20\x43\x6f\x6d\x6d\x61\x6e\x64\x20\ +\x42\x61\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x00\x00\x34\xb8\ +\x00\ +\x00\xb3\x13\x78\x9c\xc5\x7d\x09\x98\x1d\x55\x99\xe8\xe9\xf4\x7e\ +\x7b\x0b\x21\x84\x10\x62\xa8\x74\x30\x74\x42\xa7\x13\x12\x42\xa0\ +\x65\x4b\xba\xd3\x49\x20\x9b\xe9\x26\x9b\x8c\x50\x7d\x6f\xdd\xee\ +\xa2\xef\xad\xba\x54\xd5\xed\x05\x21\x20\x28\x41\x16\x11\x41\x76\ +\x23\xbb\xc8\x1b\x79\xfa\x14\x9f\xbe\x51\x14\x07\x79\x88\x0f\xe5\ +\x53\x46\x1f\x8c\xa3\x04\x45\x71\x14\x50\x70\x1b\x44\x9d\xff\xfc\ +\x67\xad\xe5\x76\x57\x07\x9d\xf9\xf8\xc2\xed\x5b\xb7\xce\x39\xff\ +\xf9\xcf\xbf\xff\xff\x39\xe7\xd4\x2f\xe6\xe6\x3e\xf5\xda\x9d\x1f\ +\x7b\x7a\xe1\xfc\xaf\x9e\x7f\xf7\x57\xfe\x6d\x1d\x21\x8d\xb7\x12\ +\x42\x76\x13\xf2\xc0\x01\xf8\xdc\x43\xc8\x27\x5d\xf8\xdc\x4b\xc8\ +\x83\x06\x21\xb5\xcf\xc1\xf7\xe5\xf0\xf9\x3c\x7c\x6e\x83\xcf\x7f\ +\x87\xe7\xf0\x73\xfd\x38\x21\x17\xfe\x8c\x90\x8d\x57\x10\x52\x7d\ +\x0e\xfb\x1c\xff\x5f\x84\x0c\x9f\x48\x48\x61\x17\xa9\x79\x60\x82\ +\x90\x8b\x6b\x49\xcd\x3f\xd5\x10\xd2\xf4\x26\xfb\xbc\xac\x44\x6a\ +\x57\xac\x27\xa4\x75\x0d\xfb\xfc\xe8\x75\xa4\xb6\xef\x1b\xf0\x3d\ +\xc7\x3e\x6f\x84\xe7\x3b\xe1\xf9\xc6\x4b\xd8\xe7\x8d\xe7\x91\xda\ +\x7f\xfc\x2d\x21\x47\xbd\x48\x6a\xbf\xf8\x67\x42\xee\xeb\x24\xb5\ +\xdf\xf9\xbf\xf0\xf9\x0c\xa9\x7d\xe1\x83\x84\x2c\xfa\x31\xa9\xfb\ +\x1f\xd7\x12\x52\x7c\x89\xcc\xfc\xc0\x26\x42\x06\x76\x91\x59\xb5\ +\xff\x87\x90\xbb\x72\x64\xce\x13\x00\xef\xfe\x06\xb2\x94\xc2\x11\ +\xbc\x4c\x8e\x7f\xfc\x7f\x12\x52\x7e\x82\x1c\xff\x82\x05\x9f\x7f\ +\x20\xa7\xfc\x78\x15\x21\x27\x3d\x4c\x4e\xbb\xfb\x28\x42\x26\xfe\ +\x3f\x39\xfd\x46\x80\x7f\xcd\xb3\x64\xe3\xf5\x17\x13\xb2\x78\x3f\ +\x39\x3b\xbf\x9a\x90\x55\x8f\xc3\xe7\x1a\x42\x4e\x6c\x84\xcf\x53\ +\xe0\x73\x2b\x39\x7b\xff\xb3\x84\x5c\x7a\x3d\xd9\x75\xfe\x00\x21\ +\x77\x2e\x23\xbb\xff\x0c\xf0\x9d\xfd\x7d\xb2\xe7\xd6\x77\x12\x32\ +\xfb\xcb\xec\xf3\xe3\x1f\x22\x17\xec\xbe\x9d\x90\x8f\xdd\x4f\x26\ +\x5e\x83\xf7\xbd\x05\x64\xdf\xa5\xad\x80\x9b\x2f\x93\xab\x17\x7d\ +\x8c\x90\xa5\xbb\xe0\xf3\x16\xf8\xbc\x17\x3e\x6f\x83\xcf\xd7\xc8\ +\x0d\x5f\xfe\x05\xe0\xe1\x06\xf2\xc0\x9a\x33\x08\x59\x52\x43\x1e\ +\xba\x0c\xfa\xd9\xf7\x34\x79\xe2\x27\x0e\x21\xef\x3c\x83\x7c\xeb\ +\xc1\xd9\x80\xef\x1a\xf2\x16\x79\x8a\x90\x0f\xcf\xaa\x5a\xf8\x7d\ +\x80\xa7\xbf\xab\xaa\xfd\xf3\xff\x01\xe3\xbe\x56\xb5\xfc\xc3\xfb\ +\x08\x79\xef\x13\x55\x1b\xff\x72\x2f\x21\x27\x6f\xad\xea\x7f\xe3\ +\x21\x42\xae\x78\xbd\x6a\xe7\x9c\xb3\x08\xb9\xee\xfa\xaa\xa1\x96\ +\xab\x09\xb9\xea\x60\x95\x7d\xd8\x45\x84\xdc\xf6\x6a\xd5\xe5\xa7\ +\x64\x08\xb9\xb9\xa7\xea\x9a\xe1\x32\x21\xf7\x7e\xa9\xea\xee\x4b\ +\xb3\x84\xcc\xbf\xb4\xea\xb1\xe7\x7e\x44\xc8\xce\x8b\xab\xbe\x7b\ +\xfd\xf7\x08\xd9\x7c\x5d\xd5\x8f\x0f\xeb\x81\x35\xff\x42\xd5\x8b\ +\xbf\x05\x7a\xf8\xc4\x2b\x55\x6f\x3d\x0c\xcf\xbd\xf3\x66\xd4\x3e\ +\x0a\xf0\x5d\x32\x3a\xa3\x6f\x37\xf4\x73\x5b\xfb\x0c\xeb\xd3\x83\ +\x40\x17\x7f\x9c\xe1\xd4\xbf\x48\xc8\xd6\xe7\x66\x8c\x1e\x7b\x38\ +\x21\xa7\xee\x99\x71\xc9\x0b\x40\x1b\xdb\x2e\x9d\x71\x53\xdf\x3c\ +\xc0\xc7\xaf\x66\x7c\xb2\xf3\x08\x42\x6a\x4e\x9a\xf1\xd0\x49\x80\ +\x87\xe0\x8a\x19\x9f\xfd\x35\xac\xd7\xd5\xdf\x9e\xf1\xd5\x87\x3e\ +\x4c\x48\xf7\xf3\x33\xbe\x96\x7f\x1d\x48\xef\xfc\x19\x4f\x9e\xf1\ +\x3b\x42\xf2\xb7\xcc\x78\xee\xbe\x2f\x01\x3d\xd5\xcc\xf8\xd7\x79\ +\x37\x01\xcd\x7d\xb0\xba\xea\x03\x8f\xc3\xfc\x9f\xab\x9e\x75\xcb\ +\x05\x84\x5c\xfb\x54\xf5\xbc\xd9\x80\x97\x13\xea\xaa\xe7\xcd\x01\ +\xba\xdd\x7e\x54\xf5\xf2\x79\xf0\x7c\xf4\xaa\xea\x7d\x4f\x3d\x42\ +\x48\xcf\x0b\xd5\x57\x1d\x03\xf8\xef\xfd\x4e\xf5\x81\xdd\xf7\x03\ +\xd1\xf6\x56\x7f\xee\xc0\x9b\x30\xef\xdf\x55\x3f\xf2\x24\xac\xcf\ +\xad\x23\xd5\x5f\x79\xf6\xa7\x84\x8c\x9d\x56\xfd\xf8\xa9\x30\xde\ +\xc4\xcd\xd5\xdf\xf8\x97\xf7\x02\x3f\xdc\x5f\xfd\xad\x96\x97\x60\ +\x1d\xbf\x50\xfd\xc3\x66\x68\x5f\xee\xad\x7e\xbd\x04\xf4\xb0\xec\ +\x3d\xd5\xaf\x7f\xe5\x7c\x42\xe6\x6c\xa8\xfe\x53\x1b\xd0\xf3\x8a\ +\x7d\x35\x0b\x17\x2d\x22\x64\x61\xb1\x66\x67\xdd\x8d\x84\x74\x99\ +\x35\xe7\x5f\x0c\xf3\xbb\xf3\xb2\x9a\x89\xd7\xa0\xff\xab\x97\xd4\ +\x5c\x3e\x06\xf4\xb1\x6d\x75\xcd\xfe\xff\x00\xde\xba\xfe\x85\x9a\ +\x6b\xbf\xff\x30\x21\xb9\x47\x6b\xee\xba\x1a\xf0\x57\xeb\xb3\xcf\ +\xf7\x55\xd7\xdc\x77\x02\xe0\xf7\xa3\x47\xd6\x3c\xf8\x4b\xa0\xeb\ +\x13\x6f\xac\x39\xe8\xfc\x84\x90\xcc\x11\x35\x3f\x6d\x83\xf5\x99\ +\xf1\x46\xcd\x2f\xd7\xfe\x33\x8c\xff\x62\xcd\x6b\xcf\x01\xf3\x9d\ +\xbd\xae\xb6\xfa\x0a\xc0\x9f\xb3\xa8\xb6\xf6\x5b\x80\xe7\x75\x0f\ +\xd5\xb6\xbd\x1e\x10\x72\xd3\x97\x6b\x8f\x9e\x09\x78\xe8\x1b\xaf\ +\x5d\xfa\x12\xd0\xd7\x16\xb7\xb6\xf7\x5d\xe7\x11\x52\x6a\xad\x3d\ +\xf7\x39\xc0\x5b\xdb\xf3\xec\xf3\xc6\xef\xd6\x66\x7f\x0f\xf0\x6e\ +\x3e\xba\xd6\x7a\x15\xf8\xe1\xf2\xb3\x6a\xf7\x7f\x06\xfa\xbf\x73\ +\x67\xed\xcd\x0f\x02\x9e\x0e\xe7\x9f\x1f\x3f\xaf\xf6\xd3\x67\xc3\ +\xf3\xde\x8d\xb5\x5f\xaa\x7e\x92\x90\x05\x4b\x6b\xbf\xd2\x0c\xeb\ +\xf5\x81\x4f\xd4\x7e\xe5\xc3\x40\x27\xd9\x59\xb5\x8f\xee\x84\x7e\ +\xce\x7a\xa6\xf6\x1b\xdb\x01\x1f\xcd\x4b\x6a\x5f\xfa\x70\x17\x21\ +\x87\xf5\xd6\xfe\xe9\x87\xc0\x4f\x3d\xcd\x75\x0b\x7e\x06\xeb\x70\ +\xcf\x9f\xeb\x96\xbc\xfa\x29\x98\xe7\x19\x75\x2b\x7f\x02\xf3\xba\ +\xf4\x8b\x75\xbb\x8e\x02\xbc\x10\x52\xb7\xf7\x35\xc0\x57\xf0\xd9\ +\xba\xf7\x7c\x17\xde\x3b\x63\x53\x5d\xe1\x2a\xa0\x83\x33\xff\xb5\ +\x2e\x78\x07\xd0\xcd\x39\x3f\xad\xbb\xe6\xe6\x5e\xe8\xf7\x07\x75\ +\xb7\xec\xfe\x26\xac\xef\x3d\x75\x5f\xbe\x0c\xe0\x7a\xc7\x23\x75\ +\xdf\xfc\x62\x2d\xac\xdb\x23\x75\x2f\xd7\x6e\x85\x5e\xde\xaa\x7b\ +\xf5\xa1\x5d\x84\xdc\xfd\x7a\xdd\xaf\xbf\x05\xf8\x3c\xda\xaa\x7b\ +\xf3\xaf\x00\x77\x8f\x57\xf7\xd6\x3c\xa0\x8f\xd5\x9f\xa8\x7b\xeb\ +\x2e\xa0\xff\x9b\xfe\x5a\xdf\xf0\x11\x58\xd7\xe3\x1f\xaf\x6f\xf9\ +\xdf\x7f\x00\x7a\x3b\xae\xbe\xf5\xca\xd3\xe1\xfd\x6f\xd7\xaf\x1e\ +\x06\x3e\x3b\xf2\xdc\xfa\xd5\x2f\xc3\xba\xdd\xbe\xba\xbe\x77\xed\ +\x52\xe0\x9f\xf3\xea\xcf\x3a\x06\xf8\x62\x46\x73\xfd\x16\xbf\x1d\ +\xd6\xe7\x91\xfa\xad\x0f\x00\x7d\x5e\xf6\xcd\xfa\xdd\xdf\x7a\x19\ +\xbe\xff\xae\x3e\xfb\x17\xe0\xeb\x59\x8b\xea\x2f\x7b\xe2\x73\x20\ +\x3f\xf3\xf5\x57\x79\xb0\x8e\xe3\x3f\xa8\xbf\xf7\xa7\xf0\xbc\xfd\ +\xe7\xf5\x8f\xbd\x05\xeb\xb3\xbc\xbb\xe1\xb8\xcf\x03\xde\x6e\x79\ +\xab\x61\xe5\xe3\xc0\x97\x77\x34\x34\x9c\x14\x00\x5c\xc7\xfe\xb1\ +\xa1\xf7\x4b\x80\xa7\x93\x8c\x86\x4d\xdf\x5c\x01\x74\x75\x43\x83\ +\x79\x31\xf4\xb3\x60\xac\xe1\x9e\xa7\x86\x80\x6e\xbe\xd3\x70\xef\ +\x0b\x20\xa7\x2e\x3e\xbe\xe1\xb3\x47\x74\x00\xbd\x55\x35\x7c\xbe\ +\x06\xf0\x7c\xe7\x8f\x1a\x9e\x59\x09\xf8\xbb\xec\xf6\x86\x67\x9f\ +\xb6\x09\x79\x7f\x7d\xc3\xc1\x3b\x1e\x25\x64\xde\x0d\x0d\x07\x1f\ +\x03\xfa\xbe\xfc\xba\x86\x5f\x5e\x07\x7c\xfe\x40\x6d\xa3\xf1\xfc\ +\xb1\x20\xb7\xaf\x85\xcf\xcf\x03\x7f\x9e\x06\x9f\x40\xcf\x0f\xfc\ +\x53\xe3\x96\x9b\x41\xae\xbf\xf3\xdb\x8d\xd6\xf3\x80\x97\x2b\xaf\ +\x68\x1c\x6e\x59\x42\xc8\x47\x7e\xdb\x78\xe1\x75\x80\xbf\xba\x2f\ +\x34\x96\x17\x01\x7c\xa3\x46\xe3\xe8\x2b\x20\xcf\x87\x9e\x6d\xbc\ +\xf2\x01\xc0\xf7\xb1\xb3\x1a\xaf\x59\x04\xf3\xb8\x63\xa4\xf1\xc0\ +\x9f\x41\xde\x0c\x2f\x68\xfc\xc2\x52\xc0\xcf\xea\xaa\xc6\xa7\xe7\ +\xc3\x7a\x7d\xfc\x2f\x8d\xdf\x5d\x08\xfa\xe1\xbc\x83\x8d\x2f\x2d\ +\x82\xf9\xef\x39\xba\xf1\x57\xc7\x83\x1c\x6f\xbe\xa6\xf1\xb5\x55\ +\x20\x97\xe6\x0e\x35\xfe\xfa\x18\xc0\x73\xf5\xbe\xc6\x3f\xaf\x07\ +\x79\x70\xf3\xad\x99\xc6\xc7\xa8\x3c\xda\x9f\xe9\xb8\x1d\xe8\x70\ +\x6b\x0d\x7c\xc2\xbc\xb7\x9e\x0d\x9f\x30\xaf\xad\x1f\xcd\x2c\x7b\ +\x14\xf8\xf3\x84\xfd\x99\xd5\x9f\x82\x79\x5d\x33\x90\x39\xe3\x38\ +\xa0\xf3\x4b\xbe\x96\x39\x63\x04\xe0\xb9\xe4\x4f\x99\x4d\xf7\x83\ +\x7c\xbb\xf7\xe4\xcc\xf9\x2f\x00\x1d\x2d\x7e\x12\x3e\x8f\x24\xe4\ +\xb8\xe3\xe0\x13\xe4\xfa\x71\x57\x66\xac\x3b\x00\x9e\x9b\x9a\x33\ +\xe3\xb5\x97\x11\x52\x75\x5a\xe6\xd2\xeb\x61\x9c\xd3\xf6\x65\x6e\ +\xbd\x72\x2e\xd0\xc1\xbb\x32\xb7\x9d\x4b\xd7\xe3\xe9\xcc\x83\x73\ +\x80\x9f\x0e\x3f\x22\xf3\xa9\x0f\xfd\x8a\x90\xf5\x2b\x32\x4f\x9e\ +\x0b\x7c\x34\xf3\xe8\xcc\x33\xdb\xbf\x08\xfc\x7f\x44\xe6\x99\x9f\ +\x81\x7c\x98\x3b\x3b\xf3\xfd\xdf\x00\x1c\x97\xbe\x91\xf9\xe5\x0d\ +\x57\x01\x5e\x96\x35\xd5\x8f\x03\xfe\x3e\xf8\x62\xd3\xd1\x2f\xf8\ +\x84\xbc\x7b\x66\xd3\xb1\x1f\x07\x3c\xef\x58\xd2\x74\xec\x37\x80\ +\x5e\x0f\xdf\xdf\xb4\x78\x1f\xe0\xe1\xe2\x97\x9b\x8e\xdf\x0e\xed\ +\x3e\x74\x79\xd3\xb2\xcf\x81\xbc\x1e\x39\xb7\x69\x8d\x0f\xf3\xbb\ +\xef\x8f\x4d\x67\x9e\x09\xf4\xd7\xf7\x7c\x53\xcf\xd3\x00\xef\xfa\ +\x87\x9b\xf2\x1d\xdf\x05\xb9\xf7\xb3\xa6\xab\x5e\xa8\x07\xbd\x99\ +\x69\xba\xa9\x17\xf4\xe2\xca\x4c\xd3\xd7\x6f\x03\xb9\xf6\xc1\x85\ +\x4d\xdf\x3b\x0e\xe4\x47\x4d\xa9\xe9\xd9\x7d\x20\x4f\x9a\xce\x68\ +\xfa\xdd\xab\xfd\xc0\xcf\xd7\x34\xd7\x6d\x07\xbe\x6b\xd9\xdb\xdc\ +\xd0\x07\xf2\x68\xdf\x95\xcd\x47\xbd\x09\x7a\xe5\xfd\x37\x34\x77\ +\xdc\x01\xf8\x2f\xdf\xd0\x7c\xc2\x3e\xc0\xd3\x2d\x7d\xcd\x27\x6f\ +\x01\xfa\xaf\x7f\xa6\xb9\x7b\xce\x33\xa0\x57\x77\x37\xef\xfd\x1a\ +\xf0\xf5\x44\xae\xd9\xd9\x0f\xf3\x6b\x7f\xb8\xf9\x86\xbb\x60\x3d\ +\xee\xb9\xb3\xf9\xe6\x8f\x50\x39\xd2\xd8\xfc\xd4\xbf\x01\xdc\x77\ +\xfd\xa8\xf9\xfb\xaf\xcd\x02\xf9\xf6\xbd\xe6\x1f\xdd\x06\x7a\x76\ +\xe4\x33\xcd\xbf\xfe\x11\xe0\xed\xaa\xa3\x5b\xe6\xff\xfe\x55\x42\ +\x3a\x6f\x6c\xe9\x2e\x50\xfa\xbe\xb3\x65\xfd\x8b\x00\xe7\x27\xf2\ +\x2d\x7b\xee\x86\x71\x2f\xad\x6a\xd9\xfb\x69\xa0\xdf\xf1\x53\x5a\ +\xde\xfb\x73\x58\xf7\xe3\x5e\x6a\xc9\xdd\x0f\x74\xf7\x0f\x8f\xb6\ +\x14\xff\x08\xf4\xdb\x70\x45\xcb\xe8\x23\x1f\x85\xf6\xbf\x68\xb9\ +\xe3\x57\x80\xaf\x73\xfc\x96\xfb\x9f\x03\x39\xdf\xd9\xdd\xf2\xc0\ +\xf3\xf7\x11\xb2\xe1\xaf\x2d\x4f\x3c\x01\x7c\x78\xfb\x81\x96\xd7\ +\x4f\x81\xfe\xaf\x6d\x6b\x3d\xbe\x06\xd6\xf9\xe2\x4f\xb6\x76\xfe\ +\x14\x9e\x1f\xf8\x4d\xeb\xd6\xff\x07\xf8\x69\x7c\xbe\xd5\xbd\x1d\ +\xe8\xe9\xee\xd1\xd6\xf7\x5d\xd4\x09\x7a\xbb\xab\xf5\xfa\x0b\x40\ +\x6f\xaf\xd9\xd7\x7a\x83\x05\xf3\x9a\xd7\xd6\xfa\xd4\x0f\x80\x8e\ +\x8d\x55\xad\x48\xa7\x07\xb6\xc1\x27\xd0\xc1\x81\xbb\x5a\xff\xfd\ +\xa5\x6a\x42\xfc\x86\xd6\x57\x0e\xc2\xba\x6c\x7c\xac\xad\xfe\x3a\ +\x90\x4f\xfe\x93\x6d\x47\x5e\x0e\x72\x85\xfc\xb2\xed\x98\xeb\x40\ +\xde\x5c\x9c\x6d\xdb\x56\xee\x06\xfe\xf9\x6c\xdb\x79\x4f\xfd\x0b\ +\xac\xc7\xf5\x6d\xe5\xcf\x80\xfe\xdf\x77\x52\xdb\xd8\x3f\xc3\x7a\ +\x17\x3e\xda\xf6\xa1\x26\xe0\xbf\x4d\x0b\xdb\xae\x7f\xf0\x93\x80\ +\xd7\xa6\xb6\x5b\x33\xa0\x9f\xef\xdb\xd1\x76\xe0\x57\x77\x81\x7c\ +\x38\xb7\xed\xab\xfb\x81\xfe\x6f\x78\xba\xed\xe9\x6f\x03\x9d\xad\ +\x99\xdd\xf6\xe3\x85\x94\x9f\x3e\xd1\xf6\xfb\xba\x05\x00\xd7\xc7\ +\xdb\x7e\xbf\x04\xf4\xe8\xd8\xcf\xdb\xfe\x30\x06\x78\xdd\xff\x81\ +\xb6\x3f\x9d\x07\xeb\x7c\xc9\x4a\x20\x92\x4f\x99\x00\x21\x99\x4b\ +\xd6\x92\xdf\x10\x93\xe4\x88\x4d\x3c\x62\x90\x12\x29\x13\x87\x04\ +\xc4\x6d\x40\x31\x0a\xff\x1a\xd7\xe6\x72\xc6\x76\xd7\x76\x02\xa0\ +\x1c\xd2\xda\xeb\x99\xf9\xe0\x3c\x78\x86\x8f\xaa\x68\x1f\xe7\x42\ +\x1f\x43\xd0\xda\x82\xff\x9b\xd0\x07\xed\x41\xeb\x09\xfe\x56\x4f\ +\x4d\x52\x80\x7f\x45\x32\x88\xef\x2f\x87\x4f\x1f\xde\x2c\xc0\xe8\ +\x0e\x7c\x37\xe0\xdf\x38\xfc\xed\x43\x3b\x0b\x5b\x5b\x12\x8e\x0e\ +\x18\xd3\x37\x4c\xa3\x44\xc7\x35\x02\xd7\x30\x1d\xc3\x1a\xb7\xfd\ +\xc0\x76\x86\x8c\x31\xdb\xb3\x96\x0f\xfa\xa5\x82\xed\x58\x95\xc0\ +\x5c\x00\x60\xe6\xe0\x3f\x83\x03\x45\x41\x76\x01\xac\x12\xe9\xa2\ +\xff\xc9\x81\xda\xe8\x84\xa1\xff\x21\xcf\x2d\x97\xba\xba\xba\x68\ +\x7f\x33\x65\x7f\x03\xee\x06\xfa\x1c\x7b\xbc\x28\x32\x71\x0b\x26\ +\xd2\x01\xff\x5c\x98\xc0\x12\xf8\xee\xc2\xf4\x2e\x80\xa7\x74\xbc\ +\x0e\xfe\xcc\xc7\xb7\x2c\x92\x85\xff\x6c\x78\xee\x20\xf2\xd5\xef\ +\x0a\x55\xb4\x67\x0a\x9d\x3b\x29\x5a\x56\x20\x5a\x82\x61\xcb\xf0\ +\xad\x82\x95\x0d\xac\x9c\xe1\x0e\x5e\x00\x7f\x74\xf8\x4b\xa2\x58\ +\xc2\x19\x55\x9e\xce\xd5\x30\x1d\xb6\x16\x59\x39\x1d\x0a\x90\x03\ +\xdf\x87\x11\x8c\x1c\xae\x51\x81\xbc\x82\xab\x45\xdf\x99\x80\x7f\ +\x59\xf8\x8d\x4e\xda\xc3\xb7\xb3\x00\x5e\x19\xd7\xd9\x02\x80\xd9\ +\x84\x18\x4a\xc2\x08\xf1\x27\x41\x86\x2f\xa7\x77\xf2\xda\x12\x2c\ +\xaa\xe5\x1b\xd9\xb2\xe7\x59\xb0\xf0\x74\x85\x61\xb9\x73\xc1\x30\ +\x4c\x2d\x67\x64\xdd\x82\xeb\xd1\x79\x46\x66\xef\xeb\xd3\x84\x2e\ +\x26\xfa\x83\x89\x82\x85\xd3\x5c\x1a\x9a\x26\x05\x7a\x3d\x62\xd6\ +\x46\x30\x0d\xf8\x55\x4e\x41\x82\x71\x38\xf6\x61\xf4\x70\x20\xb0\ +\xb3\xca\x23\x34\x40\x1f\x1e\x45\x8b\x6c\x5f\xbd\xd6\xcb\xd2\xf7\ +\x1b\xf9\xfb\x5e\x16\x5f\xbc\x80\xf4\x20\xf9\xe8\xfc\x81\x0d\x81\ +\x20\x0d\xf8\x6d\x80\xec\x20\x9b\x91\x97\xe8\x73\xfa\x56\x1e\xf1\ +\x7c\x11\x7e\xef\x84\xef\xfd\x64\x23\xd9\x44\xfa\xe0\x4d\xfd\x2d\ +\x0f\x71\x1f\xc0\x27\xe5\xab\x21\xca\xdb\x8a\x60\x7a\x3c\xcb\x0c\ +\x00\xa3\x40\x19\xa6\x97\xed\x32\x7a\x06\x76\x6c\x46\x0c\x3a\x66\ +\xa9\xd3\xe8\xdf\xb8\xa9\x6f\x80\x7e\xcd\xba\x8e\x1f\x78\xa6\xed\ +\x24\xc0\x3d\x93\xac\x23\xcb\x60\x6c\xc9\xb9\xb2\xf7\x86\x75\xcb\ +\xfa\x25\x17\xb6\xb0\x56\xeb\xd8\x13\x6c\x79\x20\x32\x63\xfa\x49\ +\xfb\x0a\x4b\x01\x46\x67\x4a\x82\x50\x5a\x29\x92\x37\xe1\x0d\xba\ +\x4c\x25\x4e\x5b\x95\x70\x64\x02\x5e\xcb\x38\xff\x43\xc7\x52\x8f\ +\xc4\x92\x51\x2c\x17\x02\xbb\x54\xb0\x96\x31\xc9\x33\xb8\x8c\x89\ +\x99\x74\x88\x4b\x40\xc1\x7c\x00\xda\xc6\x65\xa6\xd3\xcb\x03\x10\ +\x1e\x72\x35\x65\x01\x53\x02\x50\xd7\x63\x7b\x59\x46\x64\xcd\xac\ +\x0f\xf6\x00\xbb\xb8\x27\x01\x8b\xd9\xca\x9d\xa6\xa6\xa6\xb5\xf0\ +\x7b\x18\x47\x49\x1c\xea\x25\x70\x72\x80\x72\x62\x48\x88\x27\x8d\ +\x83\x4f\x53\x98\xcc\xe2\x0c\xa2\x88\x5b\xbb\x79\x40\x31\xb0\x11\ +\x98\xce\x10\x65\x31\x8d\x8d\xe3\xf3\x9f\x0b\xb3\xa1\x33\xf4\x38\ +\x34\x52\x22\xc9\x51\x33\x3d\x05\xd7\xb7\x8c\xcd\x9c\x12\xdb\x78\ +\x17\xf4\xe1\x66\xb1\x10\x67\xe1\x42\x88\x7e\x0c\xd4\x4c\x61\xe9\ +\x76\x21\x60\xd3\xe2\x58\x30\x38\xb5\x1c\x44\xfa\xb4\x61\xfe\x65\ +\xc0\x00\x9d\x75\x4e\x63\xf4\xa3\x71\x08\x26\x90\x51\x54\x0d\x5a\ +\x54\xf2\xe6\x3c\x73\xcc\xa9\x08\xc8\x7c\x90\x40\x94\xf8\x8b\x48\ +\x88\x66\x05\x45\xdc\xbc\xc3\x2a\xba\xa3\x56\x4c\x17\xf7\x5a\x05\ +\xa5\xe4\xce\x27\xef\x86\x86\x36\xae\x47\x92\x26\x66\x9c\x95\xa4\ +\x8b\x0d\xfc\x3d\xbd\x3e\x5e\xc1\xc0\x51\x2a\x39\xef\xb9\xc5\x98\ +\x52\x36\x40\x3a\xc7\xf5\x72\x08\xe4\xcf\x24\x12\xb3\x8b\x53\xf8\ +\x9b\x8b\xc1\x69\x92\x39\x43\x94\x8f\x1a\xbe\xc8\x51\xa0\x56\x64\ +\xab\x22\xed\x9c\x5d\xb4\x1c\xdf\x76\x9d\xa9\xc5\x42\x94\xe2\x4d\ +\xf8\x63\x08\x5a\x07\x1a\x7d\xf4\x8a\xee\xb8\x3e\xe9\x61\xf8\x50\ +\x46\x99\x7c\xa1\x62\xa3\x56\x40\x9a\x05\xeb\x5d\x66\x92\x41\x6b\ +\xea\x8e\x39\x43\x9e\x99\xd3\x19\x43\x3e\xc3\xa6\xd7\x22\x99\xf8\ +\xb8\x0a\x45\xb4\x40\x1c\xae\xf8\xa7\xa9\xc6\x91\x80\x9c\xc4\x16\ +\x36\xf6\xcc\x04\x79\x27\x27\x3e\xb1\x5e\x8c\x02\xd8\xda\x28\x41\ +\xb2\x7e\xfd\x78\xa9\xe0\xe6\xac\x44\x6b\xc7\x37\x80\x9c\x00\xa5\ +\x76\x11\x24\xb5\x27\x1e\x76\x52\xf2\xf3\xcb\x83\x80\x77\x40\x74\ +\xde\xcc\x5a\x7e\xc5\x49\x37\x93\x5e\xc9\xd5\x6a\x89\xeb\xe1\xd5\ +\x31\x20\x66\x4d\x96\xf3\x27\xd8\xa8\x40\xb6\x73\xec\x78\x6f\x0b\ +\x3f\x82\xee\xa9\x99\x75\x01\xfe\xc5\x18\x55\x03\x49\xb3\x50\x97\ +\x6d\x2f\x07\x15\xb0\xe0\x82\x52\x37\x38\x84\x86\x3f\x6c\x59\x41\ +\x57\x05\xd0\x9b\x41\xe8\xe4\xb8\xa4\x50\xd4\x51\xb3\x3e\x67\x23\ +\x21\x66\x58\x0b\xfa\x15\x5f\xef\xd4\x5e\x17\xa6\xa1\x3e\x4f\x61\ +\xfa\xd9\x64\x54\x43\xdf\x91\xb4\x3d\x03\x15\x56\xc0\x06\xe9\xc5\ +\x00\x4d\x1a\x61\x3e\xf0\x24\xc5\xa3\x2e\x05\xe3\x82\xbd\xa9\xcf\ +\x76\x6c\x7f\xd8\x10\x12\x85\x5b\x60\xec\xa9\x94\xa8\xa7\x46\xfa\ +\x52\x18\xd6\xc5\xbb\x8f\xbf\x52\x5a\x53\xca\xa4\xa0\x8d\xd5\xce\ +\x7a\x45\x06\xe7\x76\x67\x30\xec\x96\x03\x23\x0b\xe2\x9b\x22\x98\ +\xa1\x2a\x19\x84\x2b\x13\xc4\x9a\x3e\x38\x5b\xe0\x95\x11\x3b\xe7\ +\xef\x67\xf7\x9d\xac\x84\xd5\x4a\x6e\xca\xa4\x37\x63\xf8\x5a\xc9\ +\xc9\x65\x00\xbc\xe8\xca\xd4\x08\x65\x1b\x7f\x79\x0b\x40\x3f\x4a\ +\x91\xac\x5e\xde\x02\xba\x43\x7b\x99\x7e\xc5\x97\x9f\x81\x97\xa9\ +\xd2\x1d\x7d\x5b\x12\x27\xe0\x2a\xed\xef\x8e\xde\x0a\xfa\x84\x4a\ +\xce\x12\x9a\x5e\x6a\xca\x7b\xb7\xa0\xba\x4c\x64\xdb\x41\x2b\x18\ +\xb3\x2c\xc7\x58\xc9\x74\xa9\x3f\x0d\x2d\x92\x75\x4b\x13\x49\x88\ +\x9c\x07\x0c\x7b\x21\xda\x02\x39\xae\xc1\xcd\xb8\x91\xb9\x2d\x9f\ +\xf7\xad\x40\x33\xb2\xd8\x03\xec\xe0\x6b\x09\x04\x6c\x25\x74\x19\ +\x20\xa6\xcd\xc9\x25\xc2\x7f\x2b\xe6\x37\xb2\x59\x25\xc8\xa1\x43\ +\xc0\x73\x1c\x51\x97\xc7\xbc\xb8\x12\x7a\xc4\xaf\x00\xa0\x94\x34\ +\x85\x6a\x1b\x82\x5f\x0b\x08\xe8\xdf\x8f\xcb\xdf\xa5\xb8\xdc\xb3\ +\x86\xca\x05\xd3\x03\x8a\x2a\x4c\x0c\xa5\x31\x4c\x34\x45\xb1\x9d\ +\xb5\xe1\xce\xde\xf6\xf0\x74\x94\x72\xe4\xaf\x55\x68\x58\x88\xe1\ +\xc5\x43\x96\xa5\x36\xb4\xc3\xb1\xc1\x6c\x52\xc6\xbc\x0c\x6f\xde\ +\xa1\xb1\xad\x04\x6a\x49\x5c\xce\x79\xb0\xd2\xe0\x56\x44\x5d\x0f\ +\xcd\x14\xd8\x21\xde\x40\xc0\x67\xa3\xe9\x14\x01\x54\x19\x50\xf2\ +\xe5\x8a\x1d\x64\xc8\x06\x24\x51\x1d\xae\xba\x1d\x6e\x00\x70\x69\ +\x24\xc4\x1e\x60\x83\xaf\xcb\x06\x87\x22\xf3\xfe\xeb\x78\x8b\x2d\ +\xa7\xb0\x8c\x43\xfc\x26\x27\xba\x83\xcd\x2b\x59\xd2\xa5\x65\xb8\ +\xac\x72\x1a\xc3\x7c\xa7\x21\xad\x15\x03\x37\x59\xee\xc7\x28\x4c\ +\xd7\xf6\x67\x4d\xb6\x38\x4d\xac\x0d\x7e\xc7\x26\x3f\x0c\x35\x39\ +\x34\xfd\xc2\x6c\x63\xdd\x91\xd2\x1d\xac\x41\x6a\xb3\xc2\x6f\xff\ +\x9d\xf2\xee\x5c\x9c\x70\x05\x55\xc3\xdc\x34\x63\xd0\x04\xf7\x18\ +\xd9\xe3\x10\x64\x60\x0c\xaf\x73\x61\x1e\x02\x63\x01\xd1\x62\xab\ +\xca\x7b\xed\x67\xde\x8e\x8c\x41\x1e\xc6\xfb\xc0\xc7\x2a\x08\xe9\ +\x84\x7a\xf2\xb9\x66\xd1\x75\x8b\x78\x3e\x86\xd6\xe8\x30\x31\xf0\ +\xff\xcc\x4d\x37\xd1\x4b\x13\xf8\x61\x96\x00\xeb\xc3\xe7\xef\xd9\ +\xf8\x57\x1c\xbe\x35\x0c\x10\xa0\xb8\x42\x41\xe2\x8a\xda\x7b\x0c\ +\x8b\x66\x11\xb0\x65\xd2\xe0\x1f\xbc\x41\x31\x6b\xfb\x53\x4e\x25\ +\xaf\x4d\x45\x91\x91\x22\x9a\x02\xaa\x4f\xe5\x95\x07\xb8\xa4\x83\ +\x18\xbf\x72\x2b\x32\x1e\x8d\xb1\xb8\x38\x4d\xfa\xfe\x2b\x1a\xe3\ +\x75\xf6\x0b\x87\x72\xcc\xf5\x46\xa8\x7d\x5a\x2a\x98\x60\xb5\xe6\ +\xc1\x09\x1a\xb2\xdc\xa2\x15\x78\x13\x8c\xb1\xb8\xdf\x18\x82\x7b\ +\x3b\x7d\x17\xe1\x6e\x4f\x84\xdb\xd3\x61\x56\xe6\xb8\xd6\x78\x92\ +\x2e\x07\xa4\x2a\x08\x78\x58\xb8\x1f\xd6\xc2\x84\x0e\x99\x95\xd6\ +\x0b\xff\x1f\xc5\x60\xcc\x18\xe7\xc7\x7c\x88\x0b\x03\x74\x65\x23\ +\x34\x20\x81\x58\x2a\x44\x7e\xff\xb0\x59\xb2\x8c\x95\xbd\xc6\xa8\ +\x6d\x8d\x81\x33\x94\x4f\x0c\x0b\x0b\x18\xe9\xcb\x2b\x7b\x77\xc2\ +\xab\xdc\x60\xaa\x08\x93\x1c\xa9\x25\x34\xc2\x24\x9d\x6d\x4c\x30\ +\x9e\xd8\x6a\x07\x68\x16\xd9\xe4\x0d\xf8\x36\x1d\xbd\xb6\x48\x8f\ +\xdb\x3a\x0e\x15\x83\xb1\x70\x83\x66\x07\x0e\x58\xe3\x01\xd7\x45\ +\x03\x18\xc5\xd1\x03\x17\x35\xf4\xd7\xa4\x97\xbb\x31\xd2\xe0\x00\ +\x79\x95\x79\xf8\x94\x06\x5e\x5d\xae\x9e\x19\x99\x66\xf1\x0d\x26\ +\x9d\xca\x9c\x44\x60\x32\xca\xe7\x1b\x70\x87\x40\x11\x72\xf1\x51\ +\xce\x02\x94\xc6\x16\x97\x85\x1b\xe6\xf3\xf1\xf0\x8d\x1e\xfe\x02\ +\x9d\x07\x7d\x01\x21\x08\x22\x10\x08\x5f\x33\x25\x14\x21\x34\x0a\ +\xe9\x5e\x82\xef\x6f\x60\x20\xab\x98\x28\xef\x95\x67\xbd\x9c\x41\ +\xc6\x44\xa7\x0e\x1f\xce\x00\x39\xc9\x01\x5c\x49\x6d\x96\x6e\x4e\ +\x1d\xb0\x04\x2e\x30\xee\x10\x52\xb3\x80\x3d\x40\xd9\xce\x02\x8c\ +\x5b\x70\x76\x2a\xb8\x36\x5b\xe1\x30\xb0\x9d\xb2\x25\x11\x38\x37\ +\x32\x18\xfe\x2a\x07\xda\x1d\x1a\x48\x88\x3c\x0b\xa9\xac\xc2\x90\ +\x92\xda\x0c\x74\xe7\xc6\x51\x7c\xb3\xc0\x4f\x91\x47\x37\x75\x04\ +\x75\x46\x10\xa4\xa0\x53\xc8\xc9\xba\xc5\xa2\xe9\xe4\x18\x76\x26\ +\x07\xf8\x71\xd0\x7d\xcc\x83\xf0\x50\x2b\xd3\x60\xa4\x3d\xc9\xaa\ +\x53\x00\x87\x31\x26\x62\x27\x46\x5c\xb2\x09\x1a\x7c\x32\xff\xb0\ +\xc8\x91\x50\xd0\xc6\x88\x86\x45\x19\x12\x74\xe7\xdd\xd7\x44\xa1\ +\x1e\xa1\xea\xeb\x1f\x33\x4b\xbe\x91\xb3\x7d\x10\xbc\x13\x46\x91\ +\x62\x25\x41\x06\x49\x6f\x8f\x06\x48\xf3\x1e\x55\x2d\x34\x95\x95\ +\x2f\x98\x01\xf5\xc8\x51\x46\x1d\xa9\xa3\xad\x97\x75\x28\xb1\x76\ +\x12\xd8\x01\x05\x8e\x35\xa7\x02\x97\xea\x98\x8a\x72\xe8\xe1\x9c\ +\xba\x74\x40\xa7\x1c\x74\x31\x37\x8a\x29\xad\x08\xd1\x20\x52\x93\ +\x2c\x3a\x9c\x0b\x79\xf8\x75\x03\x9e\x5d\xb4\xc6\x35\xd3\x8d\x3d\ +\xa0\x9d\x55\xcd\x02\x42\xf5\x90\x1f\xd9\xea\x79\x91\x8e\x74\xd2\ +\x9d\x5c\x0b\x74\x46\xda\x53\x69\x90\xe3\xc4\xef\x73\xeb\xa9\xc0\ +\xc9\xdc\xc4\x48\x4f\xd4\x5e\xf6\x11\x87\x25\x1e\x87\xd4\xed\x31\ +\x5d\xc6\x98\xd8\x17\x83\xcb\xc5\xdf\xca\x18\x33\x62\xd4\x14\x8d\ +\x11\x0b\x98\xd8\xbb\x0e\x7e\x2b\x22\x65\xe9\x56\x1c\xed\x11\xc3\ +\x22\x21\x6d\xf6\x21\x8a\x27\x9f\x46\x2e\x81\x99\x2c\x27\x39\xbb\ +\xdb\xc9\x7f\xf7\xca\x34\x20\x4a\x83\x51\xb0\x9e\x18\xe0\xe4\x1a\ +\x81\xaa\x03\x5f\x18\x73\xd2\x92\xf3\xd1\x8a\xe3\x59\x4c\x1e\x76\ +\x36\x58\x02\xd5\x71\xbd\xa2\x59\x60\xa6\x9e\xed\x8c\x5a\x5e\x28\ +\xf9\xa2\xd6\x0e\xa8\xaf\x17\xb1\x38\xcc\xf1\xe9\x49\x6e\x15\x09\ +\xba\x22\xce\xba\x52\xd4\xfc\xb0\x73\x9c\x9c\x6b\x14\x4c\x3f\xd0\ +\x03\xdf\x3c\x33\x40\x7f\x93\x81\xa3\xf1\xc8\x48\xa9\xc6\x21\x2a\ +\x4d\xfd\xf6\xd3\x39\xab\x29\x3c\x22\x9d\x43\x21\xc6\x44\x8e\xc2\ +\x5c\xbe\x62\xa2\x27\x69\x3e\x5f\x27\x67\x71\x4f\xe1\x50\x7d\x0f\ +\x15\x2d\x76\x65\xd4\x9c\x51\xe9\x28\x4f\x65\x05\xa1\xb8\x99\xd0\ +\x34\x2e\x4a\x0a\xf1\x4c\x44\x3b\xc3\xbd\x8a\x88\xfb\x85\x5a\x44\ +\xbe\xcc\x23\xff\xf1\x68\xfc\x3f\x9c\xe5\x22\x39\x55\x0c\xc5\xbb\ +\x8e\x85\x44\x0a\xb4\x87\xc4\x84\x41\x53\x78\x89\x0a\x3d\x24\xc3\ +\xbc\x5d\x28\xc0\x77\x24\x5a\x7c\xb3\xec\xd8\x81\xa5\xa2\xf4\x3c\ +\xa2\x70\x4e\x49\xc5\xe8\x67\x02\xeb\x94\xe5\x52\xeb\xd6\x51\x3d\ +\x7f\xad\x42\xc3\xdb\x63\xa1\x88\x28\x66\x04\xd5\xc4\xd3\xcc\xff\ +\x55\x01\xda\x33\x2a\xa6\x9c\x29\xca\xa6\x15\xa7\xdd\x05\x0d\x38\ +\xc2\x7a\xc2\xf3\x54\x26\x20\x7d\x27\xa9\x49\x2f\x6f\xc2\x04\x93\ +\x2f\xcd\x2a\x5d\x6d\x46\x55\x24\xad\x02\x59\x97\x58\x0f\xb0\xb0\ +\x47\x2c\xbf\x50\x7a\x74\x20\xd4\x77\xeb\x54\xa1\xc0\xe1\x0a\x86\ +\x01\x57\xcf\x95\xb7\xa3\xa6\x0b\x6b\xe3\x4a\x43\xb5\x61\xcf\x80\ +\x91\x34\x1d\xb7\x72\x15\xca\x15\xa7\xa2\xa3\xb5\x85\x80\xea\x43\ +\xda\xf8\x1d\x1b\xca\x76\x77\x77\xaf\x6d\x16\xdc\x21\xf8\x2c\x0c\ +\xf5\x5b\x01\x4d\x6c\xfa\xd8\x29\x76\x73\x7a\x44\x13\x33\xee\xeb\ +\x27\x3b\xc9\x06\xf8\xdc\x8e\x4f\xc4\xaf\x3e\xe7\xcb\x2c\x3e\x45\ +\xce\x96\xc3\x1e\x03\xc3\x5a\x9e\x03\xcb\x6f\xf4\xef\xdc\x60\x6c\ +\x37\x03\xfa\xd5\x37\x0a\x6e\x56\x7a\x6b\x29\xc0\xd9\x8b\xe0\x8c\ +\xc1\x00\x13\x5c\x94\x30\xd5\x26\x14\x51\xd4\x85\xee\xe0\x81\x5c\ +\xea\x75\x16\xb8\x68\x14\x2d\x98\x41\x61\x90\x11\x78\x3e\x41\x96\ +\xa8\xe4\xd3\xda\xc2\x98\x39\xe1\x23\x19\x52\x6c\x0b\xa6\xef\x00\ +\x6b\xc2\x1c\x04\x2d\x84\x3f\x00\x0a\x8d\x11\x6b\x62\x49\x4a\xc0\ +\x33\x58\x31\x43\x2d\x3f\x55\x73\x53\xbb\xd6\x83\x26\x29\x3b\x68\ +\x07\xa2\x30\x89\xc8\xe4\xeb\x8a\xd5\xc6\xf8\xa2\x41\x56\x2b\x9f\ +\x75\x9d\x99\x1d\xf1\x41\x9c\x0f\x1b\xab\xff\x66\xdd\xaf\x49\xea\ +\x7e\xcd\xdf\xac\xfb\x53\x92\xba\x3f\x25\x65\xf7\x0f\x27\x38\xf4\ +\xbf\x90\x1a\xd0\x44\xc2\x28\x69\x1e\x14\x65\x7a\x83\x97\xd0\x30\ +\x8b\x8b\x59\x54\x61\x2d\x5a\xe0\x96\xf0\x41\x2e\x59\x19\x41\x49\ +\x4d\x01\xdf\x56\x81\x30\x59\x42\x58\x71\x08\xb3\xec\x7f\x21\xf3\ +\xe9\x26\xfe\x65\xf3\xfc\x32\x33\x29\x73\xd8\xae\x4b\x93\x88\xc3\ +\x56\x76\x84\x05\x5b\xec\xbc\x31\xe1\x96\x8d\x31\x93\x16\xff\xd1\ +\x30\x3e\x08\x4b\x20\xba\x55\xbd\x4c\x61\x60\xad\xdb\xa0\x65\xd8\ +\xc5\x92\xeb\x51\x5d\x14\xb8\x6e\x57\x4a\xf4\x7c\x1b\x7c\x21\x0a\ +\xb4\x98\xd8\xe4\x68\x49\x46\x05\x53\xa4\x83\xf8\x17\x7b\xaa\x0c\ +\x50\x66\x00\x2a\x11\xd6\x21\xdb\x31\x3f\xcb\x46\xd9\x7a\x11\x47\ +\x09\x53\x4c\x42\x4d\x2d\x95\x45\x83\xc9\x08\x53\xd5\x37\x12\xc1\ +\x12\x7d\xfd\x93\xa0\xcf\x71\x9d\x65\x0e\x78\x1e\x39\x63\x10\x64\ +\xcc\x08\x60\x72\xd0\x1a\xb2\x1d\x87\xd5\x6d\xd0\xe2\x3a\x63\x69\ +\x12\x4e\x53\xa2\x74\x16\x28\x91\x57\x08\x2b\x47\x62\xbe\x95\x62\ +\xbf\x06\x56\xc8\x93\x9a\xf7\xe2\x7d\xad\x89\xf5\x95\x96\xd1\xe2\ +\x7d\x9d\x12\xeb\x2b\x2d\x57\x9d\x8e\x8a\x52\x15\x3e\xd2\xc5\x1e\ +\x92\xd6\x9a\x21\x43\x3e\x15\x8a\x27\xe5\xb8\x47\xf5\x60\x0d\x63\ +\xd1\x2c\x95\x10\xc7\x68\x4e\x62\x85\x63\x4a\x40\x56\xf2\x72\xc3\ +\x61\x9e\x6a\x53\xa6\x0c\x0b\x66\x85\x83\x26\x08\xb0\x1c\x7c\x96\ +\x1a\x9c\x2e\x3d\xd8\x64\x56\xca\x51\xe7\x71\x3b\x41\x77\x8f\xa2\ +\xda\xb4\xa5\x47\x18\x27\xd3\xd0\xa9\x73\x43\x1d\x27\x45\x98\x9a\ +\xf5\x28\x4b\xca\x5e\xbb\x42\xab\xa5\x7b\x08\xca\xcb\x4b\x1a\x6b\ +\x56\x28\x0a\x84\xe5\xa6\xa9\xe9\x63\x6b\x88\xed\xd9\x98\x7a\x55\ +\x6f\xca\x78\x5a\x08\x02\x0c\x3a\x1b\x94\x75\x53\x82\x71\xa2\x34\ +\x7d\x93\xea\xf6\x84\x69\x5a\x04\xc9\xc1\xcc\x52\x0a\x8e\xaf\x11\ +\x27\x1a\xa5\x34\xf6\x6d\xd2\x00\xb2\x9d\xd5\x23\xa9\xa9\xf0\xbe\ +\x8d\x0b\x51\x56\x27\xe3\xcb\x79\xe7\xa5\x57\xcc\x8c\x93\x5e\xb2\ +\x9b\xf4\x29\xbc\xf7\xee\xee\xa3\x21\xa5\xa2\x09\x6e\x56\x89\x4e\ +\x3d\xed\x88\x1d\xa1\x95\x2e\xe1\xe4\x73\x38\x65\xbd\x22\x44\xf7\ +\xf2\x5a\x7a\xad\xbc\x09\x26\xf7\xb4\x96\xd7\xe1\xa6\x5f\x99\x6b\ +\xed\xca\x03\x99\x24\x29\x28\x19\x88\xa8\x2c\x7e\x9b\xd0\x14\x6a\ +\x0e\xa5\xbc\x85\x44\x21\xd1\x26\x81\x3d\x4e\x00\x3b\x6c\xd9\x43\ +\xc3\x01\x86\xdd\x02\x6b\x9c\xe6\x25\xc0\xa8\x96\x75\x68\x69\xb1\ +\xd5\x0d\xd3\x98\xac\xc0\x3b\x0d\xfe\x0e\x13\x20\x4d\x57\x72\x9d\ +\x09\x4e\x52\xb8\xe0\x49\x84\xd5\x58\x39\x76\x61\x2a\xcc\x4a\x10\ +\xe6\x08\x10\x02\xab\x58\x2a\x50\x8a\xc5\xe2\xa7\xd4\xac\xda\x87\ +\x1a\x59\x14\x33\x4c\xbe\x96\x39\x1e\x86\x90\x2b\x18\x47\x04\x5d\ +\x10\x58\x19\x27\x3d\x00\xd3\x21\xa6\xca\x00\x1c\x1e\x02\x80\x51\ +\x48\x6a\x10\xb6\xa7\xc8\x48\x4d\x4d\x0c\x47\x08\x10\x42\x49\xa8\ +\x94\x40\x6c\x8d\xd4\xe2\xe7\xb8\xe4\x4c\x60\x08\xce\x34\x25\x2d\ +\xa2\x22\xe4\x0a\xb3\x74\x87\x35\xf2\x38\x46\xd6\x46\xfa\xc6\x62\ +\x63\xb3\x65\xe6\x2c\x0f\x4c\x48\xcf\x1d\x33\x7c\x51\xcb\x9f\x02\ +\xbc\xb3\x00\x40\x1b\x6d\xf3\x82\x46\xb1\xac\xaa\xc1\xd6\x7c\x65\ +\xa5\x5e\xa6\xe6\xe7\x79\x1a\x68\x25\xcf\xca\xda\xf4\x4f\xa3\x60\ +\x8d\x5a\x69\x7d\x9f\x56\x58\x39\x95\x80\x56\x86\x56\x6d\xaf\x1b\ +\xa4\xb6\xb2\xc2\x9d\xac\x09\x77\x92\xd6\xbc\x0a\x77\x72\x4a\xb8\ +\x93\xb4\x76\x55\x07\x68\x02\x4a\x76\x79\x74\xcf\x6d\x99\x1f\x10\ +\xf1\x5b\x19\xb5\x57\xd9\x12\x6c\x4c\xc3\x4e\x96\x47\xbd\x01\x19\ +\xd0\x4e\x31\xda\x46\xa0\xb8\x71\x69\x52\x33\x9f\x25\xee\x28\x8b\ +\x98\x3f\xd5\x2b\x13\x21\x48\x58\x7c\x52\x5f\xd0\x63\xd7\x8f\x53\ +\x7b\xd9\x00\xd7\x44\xf8\xc6\xe0\xa9\xd0\x2a\x1c\x06\x9b\x45\x2b\ +\x0a\x53\x42\x77\x32\x06\xdd\x0b\x48\xd1\x95\x4a\xef\x4b\x9a\x4d\ +\x93\xe7\x30\x6b\x15\x98\x7d\xb6\x96\xd0\x1e\x9c\x30\x72\x8c\x3d\ +\x53\x02\xd0\xc7\x8d\xb1\x3c\x1a\xb7\x4c\x3c\x29\x8f\x88\xd5\xfb\ +\x5b\xf8\x54\x71\x44\x0f\x26\xd7\x59\xa1\xd8\x45\x11\xe9\x30\x67\ +\x83\xe5\x58\x9e\x59\x30\xd8\x92\x89\x01\x53\x42\x73\x6c\x82\x31\ +\x11\x86\x41\x5f\x88\x99\x62\x2c\x7f\x7a\xa3\x74\xf0\xdc\x58\xd8\ +\x44\x2b\xf1\xc4\xd4\x10\x8a\xa6\xc1\x50\xa8\x62\xe6\x86\x82\x3b\ +\x08\x03\xd1\xfa\x88\xe9\x10\xdf\x5c\xb2\x01\x6d\xae\x1c\xfa\x78\ +\x25\x8e\x5b\x87\x0c\x29\x53\x77\x83\x67\xe7\x0c\xbf\x64\x66\x79\ +\x11\x72\x8a\x5e\x57\x60\xaf\x6c\x6b\x1b\x93\x42\x13\x3c\x96\x27\ +\xd8\xc9\x95\xbe\x6a\x96\x8c\x68\x18\x9b\x8b\xc5\x0b\x46\xc1\x9c\ +\xb0\x3c\x1e\xc6\x65\xee\x61\xba\x91\xab\xe6\x01\x3b\x59\x32\x26\ +\x48\x21\x60\xa1\x63\x87\xcf\x8f\xc9\xc9\x3c\x0a\x6e\x93\x4b\x46\ +\x51\x13\x46\x89\x58\xec\x26\x63\x02\x9d\xc2\xca\xc2\xa4\x2a\xa4\ +\x96\x47\xd5\x60\x85\x82\xdb\xe1\x37\x4f\x45\x3c\xaa\xb0\xdb\xe9\ +\x92\x35\xd8\x5b\x3c\xf4\x26\x53\x4c\x26\xcf\x78\x32\x28\x07\x79\ +\x90\x31\x87\x6d\xd4\x66\x41\x95\x8c\x0a\x78\x92\x80\x32\x63\x0e\ +\xcd\x56\x25\xac\x58\x6f\x59\x2c\x4a\x09\x43\xa1\x70\x7c\xdd\x46\ +\xcb\xb3\xd0\x19\xcf\x9a\x0e\xac\x2c\x48\xfc\xfc\x04\xee\x20\xa0\ +\x65\x6a\x2e\x2d\xd1\x00\xbb\x01\x5c\x26\xaa\x3b\x69\x30\x90\xfa\ +\x64\xbe\xfe\xf0\xd4\x12\x0b\x0f\x9e\x4e\x79\x19\x1e\xa1\x71\x0c\ +\x5e\x3d\x58\xca\xb4\x4b\xf0\xd8\xcd\x5c\x8e\xb9\x92\x18\x9e\x0f\ +\xc0\x30\x34\xbd\x1c\x67\x39\x78\x2d\x3b\x6c\xf0\x2e\xd2\xb2\xc4\ +\x4e\xb2\x09\x2b\x32\xb2\x88\x86\x2c\x06\x05\x73\x18\xe7\x36\xb9\ +\x4f\xc3\x88\x78\x8c\x9b\x6d\x06\xba\x9e\x25\xe9\x76\x8c\x61\x3b\ +\xa6\x1a\x29\xba\xc6\x22\x64\x7e\xfc\xa6\xbc\x91\xa5\xd1\x0a\x2b\ +\xd7\x09\xb8\x18\xa2\x44\x3f\x46\x05\x17\x75\x8a\x4d\xcf\x18\x1b\ +\xb6\x1c\xcc\xad\xa4\xe7\x82\x97\x81\x66\x6c\xa2\xa7\x79\x92\x13\ +\x2b\x26\x4e\xa3\x0f\xe9\xd0\x02\xd9\xb5\x16\x15\x80\x50\x3b\x3c\ +\xcf\x80\xed\xcb\x48\x3f\x49\x22\x98\x52\xa2\x4d\x58\x75\x6d\x4e\ +\xda\x91\x2a\xb5\x12\x8e\x97\xb3\x24\xc2\x7a\xce\x11\xf4\x49\xa7\ +\x84\xd3\xe5\x26\x8d\x25\x2d\x30\x17\x5d\x24\xb5\x19\x25\xc0\x78\ +\x11\x8b\x02\x85\x37\xae\x5a\x3a\x12\xf3\x9e\x65\x65\x4d\x8e\x45\ +\x5a\xf8\x03\xd4\x70\x01\x66\x13\xb2\xf0\xff\xac\x9d\xd3\x36\x59\ +\x31\x4e\xc7\xc4\x4c\x97\xb1\xce\x1a\x33\x3d\xab\x93\x85\x8d\x28\ +\x3d\x05\xe6\x88\x45\x6b\x8a\x86\x81\x0e\xf9\x76\xd8\x14\xe8\xbf\ +\x87\x53\x8c\xaa\xb9\xb2\x39\xaa\xe2\x14\x94\x5c\xdf\x95\xcc\xde\ +\x2a\x8b\xab\x53\xdb\x20\x11\x39\x6f\xa1\xc9\x19\xf3\x8a\x38\x64\ +\x2e\x41\x7b\x2b\x96\x7c\xf7\xa6\x3c\x8f\x92\xf9\x1a\x15\x6a\x6a\ +\x53\x63\x3e\x8c\x36\x32\xac\x02\xa3\x59\xe3\x3c\x34\x06\x1a\x7e\ +\x55\x4e\x2a\xf9\xb4\xf2\x72\x69\x88\x46\xdd\x10\xb5\xb2\x55\xcf\ +\xf2\x70\x12\xa3\x90\x4a\x85\x30\xbc\x00\x90\x88\xd4\x66\x89\xd3\ +\x19\xa5\xae\x51\x49\xbf\x7a\xc9\x62\x96\xd3\x95\xa3\x05\xab\x5c\ +\xb4\xf7\x5d\xf2\x2e\xf9\xae\x78\x62\xf0\x77\x99\x96\xed\x24\xe1\ +\x04\xa3\xea\x47\xc4\x3c\x19\x7d\x7a\x7c\x51\x8a\x48\xe7\x17\x71\ +\x38\x44\x2e\xa9\xd2\x7c\xda\x79\xd4\x74\x59\x68\x66\xed\x72\xb1\ +\xdc\xa4\xc5\x92\x8a\x57\xae\xcc\x88\x55\x0a\x0c\x33\xeb\xb9\xbe\ +\x2f\x0a\x52\x3a\x0d\x17\xe4\xa1\x37\x66\xfb\x96\xac\x51\xe1\x52\ +\x86\xa7\x34\x02\xd3\xa3\x66\xa4\xe1\xb8\xcb\xa6\xab\xca\xdf\x9c\ +\x64\x29\x2b\x65\x74\x75\x44\x46\x45\x8a\x29\x6b\x18\x59\xbe\x96\ +\x21\xce\x0b\x59\x83\x0c\xe5\x9d\x95\x6c\xc0\xd8\x42\x9a\x09\x0b\ +\x99\x3c\x0e\x5b\x56\x97\x84\x2b\x64\x54\xec\x26\x24\xd0\xe4\xd2\ +\xe4\x93\x96\x46\xd5\x52\x2a\x71\x0e\xdc\xc2\xb3\xbf\xf0\x17\x37\ +\x48\xbb\x8c\x6d\x62\x75\xa8\xf0\xb1\x26\xa2\x2d\x64\xb5\x4c\x4a\ +\xe6\x9a\x7f\x88\x2b\xa2\xe7\x3d\xa2\xc4\x1c\xde\x5a\x7c\x50\x93\ +\x52\x1e\x67\xa1\x68\x1d\x52\x6c\x03\x25\x61\x9b\x99\x6d\x62\xc9\ +\x76\xc2\x49\x64\x35\x08\xac\x76\x98\xc1\xee\x24\xc0\x14\x87\xc1\ +\xe7\xf1\x2e\x56\x95\xa2\x98\x5a\x88\x01\x61\x2e\xab\xcc\xb5\x52\ +\x1a\xef\x4f\x5a\x33\x4c\x15\xe8\x8c\xc1\x73\x7d\x72\x6b\xa7\x5c\ +\x54\xaa\x14\x84\x62\xee\x32\xa0\x2f\xc7\x0d\xb4\xf6\x83\x2c\x1d\ +\x88\xb1\x65\xd7\x29\x4c\x30\x45\x0e\x6e\xae\x8f\xfb\xa7\x68\x4a\ +\x3b\xad\x42\x69\x07\x85\xa2\xe7\x3e\x28\xb9\x2f\x0d\x67\x5c\xe4\ +\xa4\x5a\x37\x61\xca\xc2\x58\x3a\x1d\xeb\x15\xbc\x8b\xf8\x08\xa6\ +\x96\xdc\xda\x46\xad\x03\x65\xf3\xf3\x31\xb6\xf5\xac\x65\xc9\xa8\ +\xd4\x01\xd1\xf8\x28\x4a\x5e\x33\x85\xa7\x79\x38\xb1\x39\x81\x71\ +\xee\x96\x53\x87\x5f\x97\x46\x46\x53\xbe\x9b\x28\x13\x93\xe1\x16\ +\xe5\x73\xf0\x91\xa6\x13\x19\xe9\x4e\x98\x55\x3c\xc2\x39\x79\x24\ +\xe4\x68\x3e\xee\xdb\x88\x66\xc6\x89\x64\x79\xc8\xbf\xd7\x4b\x46\ +\x5a\xd8\x70\xcb\x99\xbb\x9e\x3a\x9a\x9e\x2e\x02\xa4\xc2\x16\x7a\ +\xd1\xc5\xdc\x4d\x0e\xa6\xf9\x0b\x87\x18\xe9\x99\x4f\xce\x91\x36\ +\x68\xe5\x3a\xf0\x16\x5a\x9a\x23\x2b\xbe\xa7\x41\x28\x17\x71\xa7\ +\xdd\x42\xd7\x86\xca\xb3\x0e\xa2\x6a\xd7\x0c\x78\xa3\x1f\x98\x40\ +\x95\x02\x1c\xbe\xd9\x02\x87\xa2\x63\x53\xff\x36\xe9\x64\xa4\x4d\ +\xf8\x1b\x98\x73\x65\x39\x23\xb1\xdb\x9c\x89\x4b\x96\xf9\x9e\x50\ +\x7c\xb6\x85\xa6\x8f\xb0\x30\xd2\x00\x54\xa5\x9e\xd0\x3d\x72\x04\ +\xbd\xff\xa8\xc9\x28\xdc\x11\x47\x9a\xaa\xcc\x34\xf5\xb8\x10\x0e\ +\xfb\xac\xc3\xd2\xbb\xa5\xe1\xf2\x31\xa9\x4e\x27\x50\x08\x5f\x88\ +\xc2\xd7\xe3\x23\x0d\xe2\xca\x8c\xa1\x57\xe1\xf0\x37\xc3\xd0\x28\ +\x21\xfc\x6e\x3a\x47\x36\x45\x21\x36\x59\xa1\x19\x48\x66\x90\xc8\ +\x5e\x97\xd1\xcf\xfd\xc4\x61\xea\x3c\x0e\xbb\x63\x06\x58\x2f\x13\ +\x86\x7f\x61\xd9\xa4\xd5\x54\xa2\xb6\xa6\x28\xba\x49\x2b\x54\xbb\ +\x01\x49\x07\x65\x65\xb4\x20\xe8\x68\x45\x9d\x72\x64\xb4\xc3\x01\ +\x54\xa6\x66\x8b\x39\x6e\xb0\xd2\x1a\xa3\x5f\x15\xf4\xa5\x0a\x17\ +\x6e\xe5\x76\x7d\x39\xc4\x26\x35\x5b\xdd\xd4\x11\x63\x23\xdc\x07\ +\xd2\x2c\xd5\x8a\x25\x74\xc5\x5c\x8d\x5a\x5b\x69\xaf\x46\x47\xde\ +\xf4\x03\xcb\x0f\xd2\x12\xea\x5f\x30\x8b\x27\xaa\x37\xa9\xff\xc0\ +\xac\xa6\x3c\x67\x6f\x61\x80\x4f\x48\x0f\x25\xec\xc7\x74\x12\x15\ +\x3c\x10\x06\xad\x0a\x5c\x89\xca\x51\xbd\xbe\xb5\x0b\x39\x2d\xec\ +\x3b\xd1\x76\x22\x70\x51\xd9\x93\x12\xe3\x88\x3d\x48\xc9\x7b\x66\ +\x74\xf2\x8f\xd7\xd6\xda\x3c\x17\x69\xa1\x45\xa4\x48\xf4\xd2\xad\ +\x58\x1f\x5a\x98\x00\xcf\x28\x0f\x42\x0c\x4d\x6e\xcd\x14\x40\x9b\ +\x8d\x3e\xa4\x87\xf5\x0c\x59\x81\xac\x0a\x44\xab\x00\x2d\x0c\x96\ +\xc6\x0b\x19\x1a\xb4\x0d\xee\x44\x0a\x59\x89\x83\x5a\x4d\xa1\xed\ +\xc0\x72\x99\xb9\xb4\x04\x9d\x3e\xdd\x18\xd6\xe6\xb3\xa8\x1a\x3f\ +\xa4\x74\x63\x5f\x28\xdd\xc8\x22\x5b\x2c\xa1\x26\x92\x39\xf1\xa4\ +\x9a\x8b\x01\x93\x21\x9e\x3d\x09\x47\x2d\xe7\x6f\xf3\xec\x21\xdb\ +\xc1\x68\x22\x4d\xcd\x53\x3d\x38\xdd\xbc\x5a\x2b\x16\xce\x32\xad\ +\xa4\xa7\x41\x6a\x77\x4c\x23\x21\x94\x1e\x95\x18\x9c\x53\xa8\xc4\ +\xa0\xd5\xa1\xa0\xf2\x32\xb2\x3d\xe6\xb8\x86\x8f\x97\xd2\xd1\x3b\ +\x59\xbe\x52\x98\x52\x3a\xd4\x62\x1b\x8e\x8f\x4f\x7d\xc9\x4d\xca\ +\xf5\x55\x88\x5a\xd1\x6f\x8e\x5a\xb2\x50\x3a\x61\x21\x84\x6b\xe9\ +\x53\x4b\x36\xfd\x0c\xd7\x45\xf6\xc9\x55\xe6\xd4\x8a\x12\x46\x95\ +\x56\xf2\xed\x5e\x21\xfe\x09\xf1\x66\x6a\x6a\xd1\xab\xcf\x54\xfe\ +\xa8\xbe\x7f\x5a\x35\x72\xe1\x6e\xd6\x44\xbb\x49\x9f\x43\xd2\xbb\ +\x39\x25\xda\x4d\xda\x2c\x12\xad\xb2\xd7\xfd\x24\x11\x6e\x88\x97\ +\xc0\x64\xfa\xa9\x77\x33\x9d\xd4\xff\x4c\x58\xc5\x50\x99\xa4\xaa\ +\x21\xea\xe7\xc5\x8f\x29\x7b\x9a\xad\xf5\xe4\x11\x7e\x84\x52\x04\ +\x32\x8f\x9e\x88\x94\x1a\xb2\x01\xa4\xa8\x91\xd8\xce\xb5\x86\x01\ +\xd3\x1f\x11\x9b\xd6\x52\x59\x06\x03\xa1\xad\x43\x7a\x99\x8f\xd0\ +\x74\x2c\x36\x60\x63\x68\x9d\x51\x2a\x16\x8b\xca\x31\xdf\x31\x20\ +\x77\x51\xf1\xe8\x19\x60\xc6\xce\xdb\x40\xa1\x23\x56\x5a\x3b\xae\ +\x43\x02\x62\xea\x15\xbb\x93\x0c\x3b\x9b\x0e\x6b\xb2\x3a\xde\xe9\ +\x8e\xf6\x00\x1e\xc5\x24\xce\x61\x8b\x56\x54\xe9\x45\x5e\x51\x4f\ +\x4a\x89\x29\x51\x34\x2e\x2a\x3e\x18\xe2\xe4\x49\x3c\x09\xef\x8a\ +\xd0\xf8\x38\xaa\x7d\x11\x52\x77\xd1\xb1\xd7\xcb\x95\xe4\x06\x24\ +\x39\xd7\xb5\x03\xa8\x75\xa3\x35\x5c\xac\x2a\x04\x28\xc7\x2f\x98\ +\xe8\xb0\xe7\xc6\xf3\xec\x35\x1e\xec\x95\x82\x2c\xad\xe4\xba\x99\ +\x6c\xe6\xf2\x35\xa9\x40\x23\x29\xfa\x24\xce\x32\x64\x6f\xda\x3c\ +\x00\x18\x8d\x51\xf8\x1c\x79\xd1\xcd\x92\x0e\x3f\x05\x24\xe9\x54\ +\x1c\x15\x2b\x51\x36\xe3\x69\x14\x11\xb9\x68\x11\x08\xcc\xb4\x0c\ +\xd2\x11\xa3\x0e\x6c\xe7\x2b\xe0\xc2\x34\x60\xee\x22\x68\x31\xad\ +\x3a\x91\x87\x38\x75\x38\xe4\x4d\x34\x8f\x3d\xa2\x17\x29\x30\x4f\ +\xa1\x48\xd4\xd9\x87\x16\xf7\x6f\x4c\x69\xc4\x59\x32\x83\x1a\x55\ +\xaa\x94\x26\x5c\x74\xbc\x44\x70\xcf\xd4\x32\x76\xa2\xc0\x9c\x15\ +\xd9\x0a\x84\x5b\x80\x02\x6a\x2e\xae\x82\x7f\xa7\xc1\xbf\x15\xf0\ +\x6d\x05\xfc\x77\x82\x66\xf6\x6e\xa1\x88\x71\xca\xc5\x41\x7a\x2c\ +\x52\x1e\x50\x94\xb5\xc1\x8e\xa3\x64\xc0\x12\xe6\xcc\xd2\x70\xbd\ +\x9c\xed\xe0\xee\x03\xb7\x64\x79\x26\x4b\x29\x75\xe4\x71\x93\x51\ +\x97\xb1\xca\x38\xcd\x58\xd1\xb5\x62\xc5\x09\x69\xad\xe6\x3b\x25\ +\xd3\x32\xd2\xb7\x51\x12\xab\xad\x86\xa2\xcc\xbc\x24\x65\x49\xc0\ +\xa9\x41\x38\x5c\x2c\xa1\x5c\xe2\x89\x95\x80\x27\x4d\xfa\xb9\xcd\ +\xcc\xde\x5e\x41\xf4\xcd\x8b\x2e\xa7\x0c\x75\xd4\x09\x2b\xb6\xb5\ +\x79\xfa\x9a\x25\xff\x2c\x0d\x35\x5b\x29\x6a\x3c\x33\x67\x97\x7d\ +\x64\x18\x19\xaa\xa2\xbb\x2c\xa8\xc3\x45\x1d\x75\x7e\x1e\x0b\xcc\ +\x91\x3e\x5e\xc1\xb6\x39\xba\x74\xef\x1c\xb8\xbc\x59\x70\x28\x6c\ +\x07\x93\x70\x56\x5a\xdc\x2c\x95\xb8\x89\x16\xdb\x57\x16\x69\x47\ +\x50\x48\x45\x61\xfd\x74\x65\x5a\xaf\x36\xa0\x96\x63\x4e\xf0\x51\ +\x2d\xfc\x75\x98\xe8\x29\xbd\xa8\xbb\xd7\x8e\xa0\xb0\x84\xb4\x74\ +\x3c\x2d\x33\x3b\xcc\xb2\x76\x62\xe7\x45\x8a\x00\xed\x01\x84\x4b\ +\x4f\x0e\x09\x07\xe6\x1c\x70\x80\x54\xe8\xd9\xe0\x71\x82\x31\xee\ +\x9f\xeb\x5b\xfe\xf5\xec\x2b\x7b\xbf\xcc\x77\x32\x28\x57\x67\x0c\ +\x49\x64\x04\x54\x9a\x81\xfb\x63\xa9\xec\x1d\x24\xfa\xb6\xc9\xf0\ +\xfb\x4c\xc4\x65\xa5\xce\x29\x44\xc6\xf1\x11\x6b\x01\xc7\xa2\x2f\ +\xe1\x13\xc6\xa5\x90\xfc\xac\x96\x2c\x08\x8d\xd8\x29\xe7\x51\xe0\ +\xbf\x32\x75\x3d\x19\x3c\x65\x2e\x24\xc5\x9c\xa3\xb9\xca\x88\xca\ +\x47\x28\x26\xb8\x13\x57\xd4\x58\x44\xcc\xc5\xe6\x26\x66\x99\x1b\ +\xda\xba\x8c\x11\x47\xf6\xe8\x9b\x53\xbe\x33\xc0\xe3\xc3\xd4\x5b\ +\x3b\x67\x13\xcb\xb3\x80\xf8\x18\x1b\xb6\xb3\xec\x78\x04\x96\x59\ +\x86\xe7\xe5\x02\xcf\xc0\xd0\xe2\xaf\x6e\x63\xc0\x75\x0b\x83\xa6\ +\xa7\x65\x66\x40\x2c\x67\x2d\xcc\xad\xb1\x36\xa2\x34\x83\xf6\x47\ +\x0f\xc2\xa3\x75\xa6\x28\xb7\xb1\x61\x27\x0f\x30\x07\x60\xbb\x84\ +\xfb\xa1\x52\x9d\x8e\xdc\xe7\x59\x56\xcf\xda\x5e\x43\x58\x37\x86\ +\x3f\x01\xfe\x62\x11\xb9\x94\x8e\x42\x4f\x1f\x83\x77\x3d\x26\xeb\ +\xcc\xe9\x54\x0c\x3f\xc1\x6b\xd1\x44\x98\x34\x66\x41\x92\x49\x0b\ +\xe2\x42\x26\x40\x34\xbb\x13\xde\x6a\x70\x90\x88\xed\x05\x96\xd4\ +\x8b\xfa\x9e\xc4\xf0\x3e\xbd\xe9\xed\x87\xef\xd2\x15\x81\x5a\xc6\ +\x9c\x5e\xf1\x8a\xd8\x52\x9b\x93\xe5\x3e\x46\x8e\x7d\xdb\x91\x7b\ +\xf9\xd1\x81\xa7\xab\x90\xd2\x1f\x9f\xd1\x5d\x01\x89\xe1\x1d\x11\ +\x7a\x39\x76\x3e\x52\x89\x99\x6c\x5a\xe8\xd6\x95\x2b\x11\x54\xb9\ +\xb6\xd6\x24\xe2\x48\xc9\xb8\xee\xa5\xf0\x24\xd4\x2c\xa1\xc2\xd9\ +\xae\xe5\xe2\x05\xb7\xb0\x0c\x6a\xd2\x0c\xc2\xb0\xab\x24\x5a\xbb\ +\xda\xde\x04\x7f\x77\xca\x3e\xb4\xe8\xfb\x94\xc4\xa4\xf7\xe6\xa3\ +\x82\xf3\x79\x5f\xed\x1c\x32\xaa\x3e\xda\x89\xc1\xdf\x29\x12\x76\ +\xf6\x54\x7b\x68\x33\x27\xc3\xb0\x89\x7d\x17\x08\xab\x68\x4a\x86\ +\x93\xb6\xda\x88\xd8\x19\x45\x88\xd8\x71\xc9\x9d\xc4\x90\xa3\xd3\ +\xf7\xdd\x0a\xf8\x08\xef\x62\x09\xcf\x33\x79\xbc\x6e\xb2\x95\x58\ +\x5c\xef\xd0\x75\x52\x19\xdf\xd7\x93\x08\x97\x16\xd7\x62\x19\xbc\ +\x64\x75\x26\x50\x92\x92\x07\x5d\x99\x4d\xaa\x34\x46\x6b\xe9\x97\ +\x41\x7e\x99\xbe\xd1\x8e\x3b\xcd\xda\x69\xe5\x89\xe8\x1e\x73\x1f\ +\xea\x05\x1f\x2c\x69\xf8\xbd\x1d\x24\x89\x9d\x6f\xcf\xc0\x88\xed\ +\x45\xd7\x71\xdb\x71\xdf\x2a\x74\x69\x16\xed\xc2\x44\xa4\xbf\xce\ +\x8d\x56\x61\xd4\x0a\xec\xac\xd9\x89\xcd\xd9\xab\x38\x30\xdf\x61\ +\x83\x83\x64\xc2\xad\xba\xd7\xb9\x85\x5c\x7b\x4a\x11\x75\x20\x35\ +\x77\x15\x48\x78\xeb\x41\x5a\xc1\x55\xe0\xde\x48\x24\xd7\x10\xe1\ +\xd9\xa9\xb6\x30\x9c\x9c\xb4\x82\x6a\x27\x03\x2e\x61\x48\xc4\x4c\ +\x33\x79\x71\x4f\x05\x3c\xb0\x5d\x0d\x42\x50\x8a\x23\x4d\x87\x78\ +\x68\x38\x3e\xcf\xf0\xee\xaa\xca\x1e\x9e\xc2\x69\xf8\xc0\x3b\x51\ +\xa5\x66\xc6\xb4\xb4\x12\xc3\x1b\x74\x5c\xc0\x24\x87\xdd\x9c\x91\ +\x1d\x76\x71\x6f\x34\xc5\x03\xdb\x6d\x25\x8a\xbf\x98\x54\xe6\x62\ +\x1a\x3d\x37\xae\xf1\xd2\x0a\xe0\xf9\x29\x51\x53\x40\xe6\x9b\x2e\ +\x62\x5c\xf9\x86\xee\xe4\xea\xbf\xeb\xe8\x89\xa3\x11\xf7\x7c\x48\ +\xcd\x16\x41\x19\x11\x59\x70\x36\x42\x3a\xe7\x5b\x9f\xa5\x9a\x51\ +\x27\x7f\x33\x1a\xf5\x4e\x3a\xed\xf7\xed\xbb\xfe\xfa\xf6\x3e\x87\ +\x17\x6c\xb1\xfc\xbb\x10\xc1\x14\x8b\x83\x7c\x5e\x7a\xa9\x7d\x14\ +\x7f\xe1\x73\xbe\xf4\x6d\xa1\xfa\xe9\x27\xc9\xe1\x04\x3d\x84\xa0\ +\x3b\x9a\x22\x01\x65\x6a\x44\xf9\x93\xd4\x44\x19\x89\x2b\xd0\x5d\ +\x3a\x95\x69\xd4\xc8\x6c\xca\x47\xa2\x13\x18\xfd\xc7\x8e\x59\x99\ +\x40\xb1\xec\x07\xfc\x89\x61\x26\x45\x32\xb4\xda\x2b\x53\x0d\xed\ +\xd2\xba\x34\xba\xdb\x18\xcb\x1e\xd1\x24\xe4\x07\x0d\x54\x08\x73\ +\x74\x65\x52\xca\x92\xb7\x2a\x7a\x25\x2c\x6a\x2f\x72\xf4\x2a\x1d\ +\xe3\xca\x64\x4d\xf2\x66\x05\x65\x8f\xb0\x14\x8c\x28\x85\x0c\x30\ +\xb0\xe1\x57\x68\xe5\x13\x51\x7d\x60\x68\xcb\xce\x8e\xae\xeb\x42\ +\xd6\xb1\x50\x93\x97\x79\x54\xcc\xe6\x16\x90\x85\x5e\x8a\xf2\x33\ +\x98\xbf\x14\x9e\x09\x4b\xe4\xc6\xab\x59\x15\x41\xec\xd3\x09\xc2\ +\xf5\x6c\xcb\x61\xe7\x4d\x89\x23\x2f\xa4\x72\xe5\x0a\x17\x23\x2c\ +\x40\x36\xbe\xf6\x93\x4f\xeb\x22\x0c\xba\x26\xa0\x03\x0b\x5d\x86\ +\xd8\x18\x02\xbd\x16\xac\x7c\xd0\xc9\x1d\x08\x3e\x88\x9e\x45\x4e\ +\x29\xdc\xaa\x3a\x2b\x08\xb7\x51\xc4\x92\xcb\x99\x5a\x0f\x40\x85\ +\xcf\x99\xcc\x23\x43\x86\x2d\x42\xc1\xbc\xe1\x76\xfa\x21\xcd\x01\ +\xb2\x9b\xc5\x03\xb6\xea\x84\xfd\x9d\x72\x54\xbd\x3e\xd9\xe0\x8e\ +\x7d\xf8\x44\xfe\x68\xe1\xbe\xda\x63\xa3\xd7\x65\x58\x91\xb9\x08\ +\x3f\x90\x79\x97\xaa\x9e\x4e\xd7\xc5\x45\x5c\xeb\x22\x89\x16\x7b\ +\xa9\xb5\x7d\x9f\xbe\xb6\xa3\x66\xa1\x6c\x51\x17\x29\x47\x37\x07\ +\xe4\xcb\x4e\x56\x2b\x27\x2e\x23\x53\x06\x6e\x01\x5c\x27\x27\x6b\ +\x75\x65\x76\xd2\xb7\xf9\xb9\x78\x39\x3b\x9f\xb7\x3c\xcb\xc9\x62\ +\x02\xba\xe0\x8e\xb1\x2c\x1f\xeb\x50\xe4\xf1\x02\xdc\x3e\x88\x75\ +\x5e\xf4\x0c\xbd\xb4\x69\xbc\xd9\xe8\xa8\x47\x90\xac\x4e\xe0\x1c\ +\x10\x10\xa5\xce\x29\x84\xfc\x7e\x95\x53\xe0\x0e\x6a\xea\x2a\xe8\ +\x73\xd0\xf8\x4d\xca\x4a\x4d\x1e\xb0\x4d\xb7\x75\xea\x98\x73\xfc\ +\xa8\x67\x76\x28\xd9\xbf\x99\x08\xa6\xd8\x6c\x6a\xeb\xe9\x09\x3a\ +\x00\x0d\xd3\xa4\xde\x1c\xb3\x33\x22\x79\x2a\x49\x2a\x21\xe1\x2a\ +\x48\x49\xb5\x39\x66\x27\x17\x07\xba\x98\xc0\xcd\x6a\x9a\x90\x49\ +\xc9\xfd\xff\x88\x9b\xe6\xc2\x65\xbf\xa2\xf2\x88\x1d\xa6\xea\x73\ +\x5b\x8c\x99\x19\x9d\x44\xc5\x62\xf5\x37\x98\xf7\x74\x90\xcb\x64\ +\x8f\x7b\x37\x2a\xc9\x29\x22\xb1\x16\x51\x67\xfb\xda\x7a\x34\x5e\ +\xd6\x73\xc7\x39\xd6\xe2\x52\x59\xec\xfc\x64\x87\xbe\x04\x78\x48\ +\x15\xe5\x4f\x51\x7c\xa1\x0c\x81\x2c\x11\xdb\xfc\x44\x41\x83\x20\ +\x26\x75\x3c\x50\xb4\x38\x43\xe7\xff\x38\x7c\xca\x90\x62\xd0\xac\ +\xe0\xd5\xc4\xac\xbd\x23\xcb\xa9\x99\x39\xa8\x8c\x3e\x81\xa3\x64\ +\xb9\xa3\xfb\x71\x89\xd7\x24\x10\x75\xde\xaf\x7e\x78\xfd\xd7\x77\ +\x51\x55\xc1\x0a\xa7\x31\xfe\x5e\x62\x85\x2f\xa0\xad\xc1\x98\xe0\ +\xa5\x9f\x54\x71\xa0\xae\xa7\x79\x64\xac\x02\xc0\xda\x6a\x56\xdb\ +\x62\x0c\x28\x39\x23\x4c\x16\x73\xdc\x2e\x96\x8b\xa0\x57\x9c\x21\ +\x10\x4d\xa0\xa4\x30\x22\xc9\x95\x95\x68\x2a\xce\x6d\xf2\xb1\x26\ +\x61\x05\x8e\xe5\xe0\x1b\x63\xc3\x2e\x75\xf7\x58\x11\x0b\xed\x53\ +\x89\x2d\xea\xa6\x79\x26\x6e\xb5\xe5\xcd\xd3\x0a\xb1\x79\x40\x75\ +\x7b\x08\x0d\x41\xf7\xa3\xdf\xc5\x7c\x74\x4a\x17\x2a\x04\xdd\xb0\ +\x7b\x8f\xd1\x31\xe0\x96\xd2\x06\x8f\xe7\x42\x9f\x7b\xb1\xcf\x3e\ +\x14\x38\x8c\xcb\x0a\x5a\x8f\x99\xdd\x7b\x8d\x8e\x3e\x0f\xac\xa6\ +\xf4\x7d\xee\xe1\x7d\x6e\xe6\x51\x4b\x2f\xd2\x67\xe3\x1e\xe8\xb3\ +\xdf\xce\xa5\x8e\x71\xd7\x61\x07\x81\xec\xa0\xda\x4c\xbd\xe3\xec\ +\xd9\x84\xc3\x4a\xa6\x77\x2a\x47\x3c\xe5\x14\x0d\xdc\x2d\x27\x53\ +\xd7\x68\xe8\x3c\xc5\xa2\xb3\xfa\x9b\xac\x12\xcc\xe3\x91\x14\x21\ +\xed\xa6\xde\x8e\xb7\x25\x5b\xe1\x4c\x0e\x57\x86\x34\x51\xf0\x2f\ +\x57\x95\x06\x78\x60\x2f\xfd\x81\x07\x45\xb5\x9a\xe9\x94\x28\x6d\ +\x40\x20\x3c\x6d\xc3\x5a\x4d\x36\xf0\x52\x16\x1d\x56\x2d\x46\xf3\ +\x25\xcd\x4e\x8e\x68\x0d\x43\x1e\x49\xb4\xa8\x19\x9e\xea\x84\xde\ +\xf0\xb6\xb4\x68\x5d\x12\x35\x85\x98\x97\x22\x6a\x92\xc4\x19\x01\ +\x2a\x0c\xbf\x8e\xc8\x0d\x6c\xbc\xfa\xa9\x8c\x49\x32\x95\x51\x52\ +\x06\xb9\xcf\x83\xfa\x13\x84\x85\xbf\x7c\x4e\xe6\x9d\x38\x62\x99\ +\xa7\x0f\x4c\xe8\x2b\xdc\xba\xc8\x4d\x6a\x9f\x2b\x00\xe6\x05\x16\ +\xb0\x1f\x8b\x88\xfb\x30\xf0\xf0\x24\x89\xdb\x1b\xed\x49\xaa\xe0\ +\xe5\x62\xe2\x89\xc2\x7c\xa3\x9d\x30\x96\xe8\xfe\x1c\x14\x76\x54\ +\x16\x62\x34\x6b\x1d\xd6\x2f\x83\xa0\x2a\x7b\xe8\x01\x31\xd3\x9b\ +\x9d\xda\x88\x85\x6c\x5e\xa7\x31\x58\x0e\x40\xfe\x8d\xf0\x9f\xa9\ +\x0c\xf4\x7d\x10\x7f\x3e\x8d\x48\x59\x39\x1b\xdd\xa4\x94\x84\x72\ +\x15\xe7\x26\xc5\x6b\xfa\x2e\x14\x73\xd2\x0d\x0b\x22\x22\x62\x69\ +\x59\x26\x11\x4a\x28\xf1\xdf\x98\x1e\x09\x07\x13\x94\xe6\x4d\x3a\ +\xc3\xe6\xd4\x24\x64\x96\xcc\x92\xe5\x61\x0e\x2a\x5e\x38\x76\x08\ +\x87\xd5\x5c\x1c\xdb\x28\xe0\xc8\x78\xd1\xd4\xdb\x05\x94\x6f\xb7\ +\x1c\xe0\xd7\x3d\x3d\xd6\x8b\x6e\x5d\x24\x9c\xde\x23\x67\x7a\xa2\ +\x36\x53\xb0\xc2\x65\x85\x1c\x75\xaf\x96\x17\xb9\x97\xe5\x3a\xc7\ +\x05\xfa\x2c\x53\xce\xb0\x06\x46\x1d\x97\x23\xcd\x28\x8d\xa7\x3e\ +\x96\xcb\x47\xa6\xcf\x6b\xa2\xbc\xd6\x1f\xb6\xf3\x69\x25\xcf\xce\ +\x98\xe8\x3d\xf4\x9c\x89\xa8\x08\xd0\x91\xb6\x30\x39\x97\x41\xf3\ +\xfb\xd3\x3b\xa6\xa4\xf0\x36\x00\xf5\x41\x6b\x50\xca\x75\x49\x74\ +\x93\x8c\x28\x40\x62\x89\x70\x59\x94\xaa\x72\xa9\xc9\xe0\x63\xa2\ +\xd7\x9f\x28\x0e\xba\x85\xb4\xf0\xe7\xf8\x9e\xdf\xa8\x03\x62\x93\ +\x14\x0e\x48\x68\x36\x1a\x9a\xa3\x8b\x20\xe1\x7e\xa7\x0e\xb7\xa6\ +\xa9\x0e\x09\xf5\xad\x64\xb1\x7e\x9d\x9b\x3a\x40\x76\x31\xde\x92\ +\x46\x7b\xa9\xcd\x69\x9e\xe1\xe2\xc8\x61\xc6\x7a\x9b\xc6\xc5\xe2\ +\x88\xe1\x48\xb3\x56\xde\x2c\x7a\x54\x7e\x2d\x34\x60\x67\xda\x47\ +\x5e\xee\x23\xac\x62\x00\x18\x40\xb9\x8b\x8b\xd9\x1d\x3f\x91\xd7\ +\xdb\xe1\x75\x5a\x4d\xda\x83\xf7\x18\x06\xa0\x1c\x0a\x3c\x5e\x94\ +\x87\xff\x30\x5b\xac\x4e\x08\x59\xbc\xad\xa7\x67\x19\xcb\x2e\xb8\ +\xf2\xf2\x15\xad\xb3\x59\xfc\xa0\xdd\x02\x77\x9e\xf4\xdb\x94\x1a\ +\x17\xef\xb0\x68\xf0\x6b\x34\x3a\x3b\xda\x28\x72\x28\xab\x36\x43\ +\x7a\x06\x69\xa4\x41\x06\x1a\xec\x22\xf4\x8c\x4b\x4b\x7b\x71\x97\ +\x5d\x8a\xf6\xdc\xcd\xaf\xc3\xb4\x43\xe5\x98\xfa\xce\x41\xe1\xb5\ +\x54\xde\xf3\x3f\x7b\x2d\xbb\x72\x85\xa9\x34\xbe\xf3\x2e\x32\xce\ +\x30\xaf\xac\xa9\x7c\x81\x8c\x1e\xc0\x65\x9b\xa9\x2c\x9e\x31\x3f\ +\xa8\xf1\x9c\xc8\x04\xea\x47\x76\x2e\x47\x49\xcc\x7f\x91\x50\xad\ +\x5a\xab\x5f\x04\xc3\xe2\x90\xc3\xb4\xea\xb3\xe8\x7a\x18\x56\x04\ +\xcf\x60\xcc\xe5\xf5\x1f\xcb\x1d\x7a\xf1\x58\x26\x02\xf4\xe9\xa1\ +\xfb\x5f\xbd\xc8\xb0\x93\xdd\x89\x13\xbe\x5d\xd4\xa0\x37\xce\xb2\ +\x81\xc4\xa6\x6d\x51\x7a\xaa\xae\xcb\xd2\xc6\x9d\x89\x37\x98\x32\ +\xc7\x9c\xda\x3c\xda\xf5\x9b\x6b\x41\x33\x82\xb1\x10\x5d\xc6\x0e\ +\xf2\x18\x09\x5f\xb9\xc2\x04\x94\xde\x8b\x49\x0b\x24\xd4\xb6\x0b\ +\xd1\x93\x81\xd7\x9a\x74\x47\xe7\xde\x17\xbb\x45\xf5\x90\xce\xb4\ +\x55\x07\x4d\xb1\x1b\x56\x2b\xdc\xe4\xaa\x0d\x5c\xf9\x72\x55\xed\ +\xa5\x01\xac\xda\x57\xdb\x61\x55\x12\x57\xdc\x69\xc7\x02\x18\xc2\ +\x3d\x10\x42\x9a\x9d\xfb\xaa\x30\x14\x5a\x3b\x15\xa7\xe9\xc1\x03\ +\xf8\x39\x03\xf3\xe2\x76\x46\x46\xc1\x44\xc9\x8a\xa2\x6a\x26\x8a\ +\x37\xb6\xd9\x8f\x76\xbd\x5b\x3b\x72\xce\xa2\x65\x09\xc6\xee\x48\ +\x0b\x7a\x45\xa8\x3a\x0c\x5d\x81\x18\xd9\xa7\xd5\x33\x4c\x4b\x43\ +\xd5\x6d\xb4\x5a\x0f\x5f\x80\x1e\x84\x79\x1e\x36\xdd\xf5\x58\xb5\ +\x6e\xb0\x1b\x28\x3d\x5c\x24\x91\x1c\x89\x6e\xe0\x37\xb9\x41\xcf\ +\xcc\x74\x65\xf0\x07\xdc\x13\x1a\xc3\xfe\x99\x75\x17\x90\xca\x07\ +\x01\x98\xd2\xdc\xf7\xd0\x3f\xf2\xa4\x43\x40\x0b\xb5\x94\xc7\xf9\ +\x9e\xf0\xd9\x85\x18\x85\x66\x18\xf6\x87\xdd\x72\x21\x17\xdb\x49\ +\xaa\x6f\xee\xb5\x83\x8a\x7b\x47\x8d\x0e\x7b\x49\x02\xb2\xa7\x75\ +\x1f\xab\xd6\x76\x14\x95\x4a\x52\xd9\x9e\x17\x92\xe1\xa6\x26\x0f\ +\xc2\xa7\x57\xeb\x77\xc7\x30\xf9\x30\x48\xd8\x7e\xce\xb2\x74\x29\ +\x3b\x40\x38\xf6\x93\xed\x40\xf8\x3d\x64\x53\x68\x07\xd6\x49\x3d\ +\x5a\xe5\x9e\xc7\x95\x03\x9e\x21\x48\x0f\xab\x66\xa7\x07\xd3\x28\ +\xe2\xa0\xef\x16\xca\x01\xcc\xbe\x7f\xfb\xda\x9e\xf5\x51\x0c\x34\ +\x70\xd5\xa8\xea\xcd\x6a\x12\xb4\xe2\xec\xd0\x1d\x1e\x06\x63\x43\ +\x15\x76\xe0\x07\xc5\xc5\x79\x71\x7e\xa4\x5d\xf2\xe9\xbd\xad\xbc\ +\xbd\x76\x78\xaf\xd6\xc7\xbc\x48\x1f\x62\xc5\x74\xbf\xab\x85\xf7\ +\x90\xb8\x50\x46\xa4\x83\xde\x68\x14\x53\x09\x3e\xde\x4d\xe8\x86\ +\xcd\x49\xa6\xc3\x2e\xc7\x9a\x60\x97\x63\xc5\xa6\xa3\xdd\x90\x35\ +\x09\x34\xe2\xba\x29\x56\x00\xae\x4f\x4a\x40\x13\xba\x73\x4a\xeb\ +\x69\x4e\xe8\x74\xbf\xf8\x81\x60\x4d\xbc\xbd\xb8\xf0\x23\xb1\x29\ +\x03\x62\x17\x63\xca\x58\x53\x71\x50\xb4\xd6\xf4\x58\xb4\x36\x0a\ +\xdc\x96\xa4\x7b\xf9\x98\x6b\x8c\xca\x48\x44\x00\xb5\xa3\xfc\x40\ +\xa2\x43\x47\x5b\xc0\x29\x05\x85\x22\x36\x88\x69\xfd\x2d\xc0\xf5\ +\xd0\x9d\x74\x7d\xc3\x93\x52\x12\x6d\xfc\x52\x02\x7d\x5f\x49\xc8\ +\x0c\x62\xdd\x24\x5d\x75\xd7\xd0\xcb\x0b\x36\x23\x6d\x36\x73\x4d\ +\x51\x42\xe1\x3c\x21\x17\xa2\x92\x36\x8f\x5f\xdb\x93\x54\x8d\xdc\ +\xd1\x4b\x0f\xd4\x07\x0e\xf4\x5c\x14\x5a\x4a\xb9\x9b\xb2\xf0\x58\ +\x9e\x8b\x16\xb2\xcb\x64\x84\x43\x3b\x3c\x8b\xfe\x1c\x5b\x3c\x3d\ +\x14\x22\x6a\x0c\x15\xa6\x9a\x78\x35\x8c\xcb\x5d\x88\xd0\x8c\xef\ +\xc6\x40\x9f\x48\x30\x0a\x8c\x85\x5d\x56\x5d\x6b\x86\x37\xb4\xfa\ +\x88\x23\xda\x72\xa1\xa6\x13\x8f\x5c\x9f\x1b\x02\x19\x94\x43\x0f\ +\x15\x8b\xed\x7c\x98\xf8\xc2\xa8\x2e\x9c\xe2\xd6\xd1\x90\x11\xde\ +\x47\x16\x2b\x7d\xa3\x8c\xf0\xbe\xc5\x28\xf0\x13\x24\x44\xf4\x7c\ +\x4f\x7e\x16\xb1\x92\x51\x7d\x34\x62\xd0\x23\x76\x7a\x68\xad\x37\ +\xc6\xee\x0b\x65\x47\x11\x4d\x7e\x3d\xb4\x7e\xd9\xbd\x81\xe7\x4e\ +\x2a\xc9\xdc\xa1\xee\x0e\xa5\xd7\xd4\xab\x5b\xa1\x43\x17\xd9\x77\ +\xf4\x44\x65\xf1\x05\xba\xe7\x41\xc2\x97\xb8\x44\xef\x9c\x08\x9d\ +\xa5\x43\xd4\x3d\x18\x0c\xc1\xea\xa9\x28\x3b\x57\x29\x6b\x1a\x3e\ +\x56\xb0\xae\x96\xb0\xea\x00\x0a\x3a\xa5\x35\xe0\xb0\x3c\xf8\xa7\ +\xa8\x0d\x37\x3a\xfa\xa2\x80\xb3\x3a\x54\xea\x19\xfc\x46\x63\x0e\ +\xad\x22\x4e\xb9\x31\x7d\xb4\x02\xab\xdf\xbe\x28\x4a\xfd\x1f\x00\ +\xe2\x70\x64\xd5\x84\xb8\xa1\xc0\x20\x27\xc4\xac\x68\x75\x02\xa2\ +\xb0\xd7\x74\x07\x84\x45\x27\xf5\x5b\x0e\x68\xe9\xaf\x7e\x5f\x85\ +\xba\xbd\x4e\xb8\xbd\x22\xed\xaa\xac\xf2\x13\xfb\xdc\x32\x2c\xdd\ +\x09\xe2\xe2\x02\x7f\xc4\xa2\x27\x27\x31\x33\xa4\x5b\x84\xdc\x4c\ +\x3c\x11\x86\xc5\xf5\xec\x20\x4a\xee\x3b\x13\x66\x64\xf2\x19\x89\ +\xb1\xbb\x89\xba\xbb\x84\xc5\x44\xd5\xde\x88\xb2\x94\x3c\xfa\xf1\ +\x41\x8a\xeb\x16\x09\x18\x29\x10\xdd\x78\x21\x08\xad\x71\xc5\xab\ +\x69\x99\xd5\x13\x73\x5a\x72\x89\x48\x4e\x32\xda\x9d\x50\x64\x20\ +\x72\x42\x2c\x4e\xa2\x5b\x13\x9c\xbf\xe0\x9b\x48\x0b\x21\xb3\x7e\ +\xb9\x00\x90\x1e\x38\x1d\x3f\x44\xb6\xdb\x40\xc0\xec\xfc\x04\x83\ +\x39\x0a\xec\x59\x93\x50\x44\x96\xa8\x63\xeb\x4d\x34\x95\x99\x2f\ +\xc3\x56\x5b\xf1\x2e\xbf\xdd\x47\x82\xb4\x40\x80\x04\xd4\xcc\xee\ +\xe0\xe9\xd6\x2e\xf4\x8d\x42\xe0\x55\x80\xa0\x9c\x50\xdf\x94\x8c\ +\xaa\x6e\xb4\x06\x85\xd7\xe1\x69\xeb\x4a\x69\xae\x44\xc4\xd5\x39\ +\xb2\x34\x40\xe3\x4b\x0e\x69\x0c\x71\xdd\xc6\x20\x28\xe7\x11\xb1\ +\xd0\x39\x0b\xa6\x92\xb3\x9c\xac\x1d\x5f\xef\xbd\xc0\xea\x2e\x82\ +\x9b\xe3\x88\x63\xe6\xa5\x2d\x37\x1c\xe8\x88\xd4\x3d\x82\xee\xd8\ +\xbb\x6a\x93\x33\x15\x30\x19\x09\xe8\x32\x01\x28\x98\x99\x36\xdd\ +\x9f\x90\xc5\xda\x1c\x01\x2b\x7f\x5a\x61\x8d\xb7\x56\x24\xc8\x95\ +\x31\xa2\xa4\x20\xf5\x21\xf6\x44\x62\xc8\xe1\xda\xca\xe4\x21\x38\ +\x85\xbd\x77\x30\xa0\x56\x2a\x5a\xcb\x97\x7d\x11\x25\x8f\x02\x71\ +\xe6\x34\x81\xd8\x41\x44\x8c\xdc\x8b\x50\x7c\x7b\x6c\x58\x71\x01\ +\x79\xa5\xb1\xcf\xad\x38\x76\x8c\xf1\x49\xf4\xf2\x16\x25\xd8\xf4\ +\xe2\x71\xed\x10\x7e\x15\x2a\x65\x70\xe9\xb7\xb0\x48\x21\x86\x67\ +\x56\x45\xc1\xda\x57\x11\x2c\x55\x48\xea\x73\x5e\x53\xf7\x67\xeb\ +\x09\xec\x68\xe4\x43\xe7\x51\x83\x88\x83\xd2\xd4\x26\xaa\x50\x91\ +\xaa\x04\xbc\x8b\x01\x8e\xe5\xa2\xbe\x62\x55\x96\xe0\xa5\x2c\xcc\ +\x1d\x43\x1b\xac\xf5\x5c\xcc\xf9\x0e\x93\x7f\xba\x33\xc6\x98\x9e\ +\x1d\x45\x94\x77\x73\x25\xe6\x93\x68\x66\x28\x46\xfe\x09\xa7\x85\ +\x81\x2e\x1d\xb5\x26\xa7\xbc\x24\x79\x2c\xea\x12\xde\xe0\xe1\x9a\ +\x28\x1d\xa4\x51\x19\x21\xc3\x4e\x82\xba\x84\x83\x8a\x67\xf1\x30\ +\x1a\xd0\x94\x06\xc0\x67\x53\x6d\x3f\x14\xa7\x86\x0b\x2a\x82\x39\ +\xca\x07\x4b\xb2\x28\xbb\x89\xd8\x3f\xaa\xee\x27\x32\x65\x11\x46\ +\xf2\xe1\x78\x31\x92\xf5\xe9\xb1\x1f\x66\x81\xc1\xd5\x4d\xc1\xae\ +\x84\xcb\x8d\x29\x81\x54\xfc\xd1\x2d\xc5\x36\xab\x76\x28\x44\xf0\ +\x75\x6c\x18\x04\x64\x94\x6e\x2c\x14\x08\x2a\xf2\xb3\x73\x48\xa8\ +\x12\xfa\x36\xcb\x05\x5b\x96\xa8\x2b\x31\x04\x1a\x59\x44\xc8\xc1\ +\x6c\x52\x0e\x25\xb3\xae\x2e\x56\x85\x61\xa5\x1a\x17\x48\xd1\x61\ +\xc1\x34\x8e\x3c\xce\xf0\x59\xb7\x58\xa2\x2f\x47\x41\x2f\x54\xe4\ +\x79\x01\xfa\x64\xa6\x82\x2a\x10\x19\xe4\x59\xd3\xca\x80\xbb\x71\ +\x3d\xa7\x03\x8e\x05\x18\x9a\x12\x99\x1a\x74\x2f\xc4\xe8\x54\x29\ +\x8c\x12\x75\x32\x6d\x94\xf1\x45\xfd\x9f\x38\x4c\x90\x02\x1a\x4e\ +\x00\xeb\xa7\xb6\x8b\xca\x77\xaa\x2b\x55\x2b\x25\x00\x4e\x09\x4f\ +\x40\x08\x02\x9a\xce\x61\x04\x23\x8d\x45\x4d\x93\xd3\x9f\xe2\x51\ +\xd5\xf4\x93\x48\x23\x99\x16\x25\x02\x36\xa9\x3c\x4a\x36\x78\xa6\ +\x22\x01\x66\xe4\x44\x74\xa2\x7c\x56\x22\xfa\xa6\xe0\x02\xb7\x1a\ +\x6d\xb1\x87\x56\x82\xfb\xae\x0a\xe0\x46\x35\xa8\x4a\xa3\xe7\x6d\ +\xcf\x0f\xe8\x5d\x63\xd1\x69\x1c\x98\xe4\xc4\x52\x2a\x75\xa6\x48\ +\xd8\x90\x78\x4d\x02\xb3\xde\x44\x59\x58\xd2\x69\x29\xd1\x52\xe0\ +\x2c\x17\x27\x3e\x27\x9c\xa4\x84\xd0\xb6\xd0\xc9\xa7\x8e\x11\x4d\ +\x0f\xc9\xc4\x36\xb8\x5e\xb2\x18\x0a\x8f\x44\x11\xd5\x4d\xd9\x82\ +\xe9\xfb\xd4\x32\x4c\x4a\x27\x3d\x1c\x3b\x05\x55\xe5\x54\xa2\x27\ +\x4b\x46\x33\x3b\x82\xa9\x75\xc7\x98\x55\x7e\x0d\x13\x53\x56\x08\ +\x88\x7a\xd9\x51\xfc\x2c\xf0\x2d\xdb\x8c\x7b\x68\x2c\x59\x05\xd9\ +\x19\x2a\x69\xcc\x38\x5a\x3c\x2f\x47\x95\x68\xd9\xac\xa3\x85\xa7\ +\x8c\x18\x2a\x68\x58\x25\x8f\xfe\xaa\x51\x76\x02\xbb\x80\x35\x34\ +\x78\xa2\x1c\xaf\x9e\x61\xef\x0e\x96\x83\x00\xfc\x54\x73\x88\xdf\ +\x8c\xa6\xe1\xe4\xaa\x29\x70\x32\x79\x9d\x83\x9e\xcf\x57\x27\x54\ +\x86\xb7\xe8\xd1\xe0\xad\x48\x09\x89\xbb\x58\x5c\x54\x81\xe2\xbd\ +\x70\xb0\x60\x8d\x3e\xdb\x68\x45\x03\x9e\xa9\x13\x5a\xf5\xa2\x3b\ +\x0a\x0f\xe2\xb1\x03\x03\x6f\x53\xf5\xb9\x8e\x2d\x70\x1a\xdd\x82\ +\xd3\xf3\x42\x12\x77\xe6\x26\xe8\xcd\xc4\x13\x18\xb7\xe0\x49\x26\ +\x31\x73\xb8\x9f\x58\x7c\xa1\xd9\xd2\xd9\x91\x84\x71\xd2\x4d\x8c\ +\x2a\x5e\xa6\x24\xd0\xfc\xcd\x2a\x12\x3d\x6c\xd2\x4a\x61\xb0\xd8\ +\x3c\x0b\xa7\x10\xe5\xd9\x0c\xd9\x1c\xbb\x1d\xa7\x66\x73\x3c\x1a\ +\x3c\x3f\xf1\x2e\x97\x68\xcb\x0c\x6d\x99\x18\xed\x59\x50\x21\x59\ +\x9e\xdc\xc3\x2e\x51\x7a\x1b\x82\x74\x0b\x2e\xa8\x9e\x68\xad\xd9\ +\xe2\xc6\x12\xb3\x53\x9e\x70\x15\x82\x6a\x6b\xc2\xb1\x02\x05\x12\ +\xcd\x94\xb5\x6d\x95\x9b\xf9\xa9\xc1\x1b\x5d\xba\x79\x20\xbf\x59\ +\x18\x24\xbc\x19\x3e\x94\xcc\xd8\x96\x24\x2b\x0a\x95\x5b\x4a\x4f\ +\xd0\x25\xd1\xaa\x79\xb5\x39\x25\xd9\x29\x8e\x56\xb5\x52\xa4\x5d\ +\xa4\x11\xc8\x52\x06\x0b\x37\x49\x5d\x6f\x04\xf4\xa6\x43\x25\xba\ +\xb0\xeb\x4d\x7a\xa3\x79\x60\x17\x63\x22\x7e\x01\xcf\x79\x8b\x6d\ +\x39\x91\x93\x99\x55\x2c\x74\xbb\x9d\x1d\x31\xb6\x25\x65\x52\x73\ +\x09\x5d\xc4\x63\x43\xaa\x38\x42\x3f\x48\x5c\x09\xb5\x49\x63\xc2\ +\xda\x54\x3b\x10\x10\x1e\x31\x0a\x5c\x76\x7c\x37\x2b\xfa\x0b\x05\ +\x85\xe3\x13\x5d\x8f\x1c\x78\x01\x17\xad\x91\xac\xad\xa2\x0c\xd6\ +\x3f\x4f\xdc\xc6\x52\xb6\x9d\x09\x93\x3d\x18\x4a\x0b\x8b\xe3\x88\ +\xba\x35\xa0\x0f\xc3\x4e\xf1\x90\xa1\xe4\x4c\xf0\xd2\x84\x6e\xf5\ +\xac\xd6\x14\x9d\xa2\x68\x88\x75\xba\x62\x8a\x4e\xb3\xd2\x79\x64\ +\x7b\x47\x55\xd7\x87\x63\xd7\x59\x96\x58\x4d\xee\xbc\x23\xa1\xf3\ +\x38\xc9\xeb\x9d\x32\xcc\x8a\x33\x1f\x52\x61\x56\x87\x36\x4f\xc4\ +\x49\x5f\x7a\xa7\x33\xb1\x53\xcb\xc9\x55\x00\xf3\xc4\x84\x5e\xad\ +\x98\xf5\xa4\x8f\xa4\xf7\x3e\x0b\x7b\x67\xf6\x51\x72\xff\x67\x26\ +\xf4\x2f\x2e\xa8\x14\xd5\xb3\xd1\xad\x6e\xc9\x63\x1d\x81\x63\x89\ +\xcb\x2a\x2b\x0c\x17\xf0\x22\xdd\xf8\x74\xd8\xb3\x32\x11\x85\xb4\ +\xe1\x81\xc4\xf6\x65\x8c\x59\x27\x18\x24\xe2\xd7\x1e\xfc\x55\x8f\ +\x45\xe8\x20\x2e\x41\x10\xf1\x7e\x72\x04\x0f\x77\xee\x76\xf4\x2d\ +\x61\x96\x04\xfd\xbb\x67\x09\x0d\x8d\xc4\xc0\xee\xae\xb8\x0a\x93\ +\x83\x1d\x27\x77\x35\x78\x6c\x90\x93\xa7\x20\x20\x11\x9d\x76\x30\ +\x65\x2e\x86\x8b\x2f\x81\x5b\x2a\xb9\x3e\xbd\x45\x37\x79\x18\x23\ +\x61\x18\x71\x40\x4b\x18\xe2\x16\xec\x8e\x9d\x8d\x92\x0a\x25\x61\ +\x41\xc2\xe0\xf5\x88\xda\x72\x4f\x89\x28\x0e\xaf\xe7\xf2\x6d\x65\ +\xc9\xa2\x25\x69\x20\xc5\xf9\xe9\x06\x9a\x13\x1e\x88\x09\x86\xd8\ +\x48\x27\x25\x8c\x94\xe7\x76\xa1\x6e\x24\xb0\x3d\xc4\x2c\x64\x11\ +\x97\x3a\x7e\xd6\x64\xd7\x70\x07\x6e\xba\x21\x92\xb0\xc6\xb4\x4b\ +\x36\xb6\x24\x8c\xa1\xd9\x19\xe5\xc9\xe8\x4a\x12\x18\x71\x2a\x4a\ +\xd3\x7f\x32\xf9\x64\xd4\xf5\x3e\x2a\x3b\xb9\x9d\xbe\x1a\x7b\x71\ +\x87\xa0\x2a\x65\x73\xec\x40\x62\x8a\x81\xac\xe8\x2f\xba\xa7\x7c\ +\xea\xa2\x8c\x99\xac\x4f\x6a\x0a\x25\x66\xfd\xd7\x71\xc5\xa9\x0b\ +\x8b\x70\x52\x37\x79\x1f\x77\x52\x91\xd6\x3b\x77\xa0\xd1\x2a\x52\ +\xb9\xd2\x03\x9d\xb4\x52\x2b\x03\x96\x26\xdb\x44\xa3\xd5\x35\xee\ +\xa0\xb4\x18\xb7\x14\xd7\x6b\xa4\xa5\x95\xef\xf5\x53\x9a\x8a\x55\ +\x1c\xc6\xf7\x48\x88\xd9\x71\x53\x44\x55\x09\xf1\x63\x02\xb7\x27\ +\xa4\x9b\x3b\xa6\xee\x07\xfe\xde\x4d\xf6\x28\x45\xc8\x7b\xdb\xbd\ +\x27\x31\x7f\x9d\xb6\xc3\xbd\xf1\x0e\xf7\xbe\x8d\x0e\xf7\x24\x74\ +\xb8\x27\xb9\xc3\x75\x15\x3b\x9c\x2c\xa3\x23\x1c\x38\x4a\x86\x8a\ +\x63\x8e\xe2\x43\x99\x32\x06\x0d\x46\x1d\x25\x92\x28\xe3\xec\x38\ +\xc4\x41\xad\x8a\xf6\xb8\x02\xe2\xe8\x24\x20\x58\x2c\x20\x0a\xc6\ +\xa1\xce\x7d\x48\xd0\xf0\x54\xc3\xa2\x94\x4d\x08\x6a\x1d\xea\xec\ +\x35\x86\xd0\x86\x9e\x97\x34\x34\x8a\xde\xe8\xc8\xef\x3d\xc4\x91\ +\xd9\xbe\x35\x7d\x47\xe1\x72\x22\x22\xee\x22\x5d\xa7\x43\x64\x24\ +\x41\x14\x78\x76\x71\x39\xa8\x7c\x2b\x1e\xab\x4c\xc6\xc8\x54\x50\ +\xd1\xbd\xde\x62\x77\x5d\x18\x23\xf3\x93\xc6\x2f\x97\x86\x40\x7f\ +\xc7\x70\x32\x98\x8a\xa3\x98\x8b\x21\x92\x93\x36\x61\x17\xe6\xea\ +\x85\x9e\xcc\x97\x13\x74\x99\x2c\x33\xbb\x38\x5c\xc8\x88\x34\x82\ +\x45\xd3\x94\x76\xb6\x5c\x30\xbd\x68\xa1\xab\x38\x9a\x32\xe4\x03\ +\xe8\x41\x88\x70\xe6\x4b\x40\xa0\x1d\x48\xad\x17\xa3\xf0\xe3\xa8\ +\x65\xc0\x81\x65\xbd\xa2\xa8\x98\x03\x03\x30\x54\xd2\x78\xdf\x5a\ +\x12\x2d\xbe\x6a\xea\x47\x65\xb8\x36\xa1\xee\xaa\x4f\xdb\xef\x39\ +\x69\xd1\x28\x51\x7b\x49\x62\x5b\x86\xb4\x15\x5c\x38\x10\x29\x22\ +\xa5\xdb\x40\x68\xa8\x4b\xec\xe0\x89\x1b\xef\x2c\xaf\x52\xe4\x75\ +\x82\xca\x2c\x4d\x79\x32\x94\x92\x62\x03\xee\xd0\x10\xbd\x62\x2a\ +\x74\xcf\xec\x16\x7e\xf5\x49\xa8\x4c\x70\x80\xf9\x1d\x2a\x8c\x31\ +\x00\x34\x1e\xc3\x4c\xb8\x12\x3d\x39\x54\x14\xdf\x2b\xda\x21\x2f\ +\xa7\x38\x9e\xec\xd5\x62\x63\x0b\x68\xf9\x3a\x92\x0a\xd6\x34\xf2\ +\x3d\x98\x60\xae\x0f\xec\xd8\x7c\xfc\xde\x68\x08\x2c\x43\x76\x0a\ +\x9a\x54\x50\xee\x8c\xd3\xd6\x3d\xa2\xfc\x3d\x54\x60\xa3\x2e\xeb\ +\x10\x21\xf5\x30\x9c\x2c\x1e\x18\xde\x0c\x27\xa9\x8f\xc7\x30\xc5\ +\xa9\x0a\x1e\x11\x07\xf9\xd2\x48\x20\x3b\x21\x2e\xbe\x21\xae\xc0\ +\x23\xa9\xfa\x51\x87\x14\x17\xbb\x34\x0c\xbc\x9b\xd6\xe5\xb3\xe8\ +\xa6\xbc\x80\x43\xec\x64\x65\x41\x60\x7a\xa2\x02\xa5\x77\x1a\xf8\ +\x44\x03\xce\x67\x81\x4f\x65\xa5\x68\xf5\xa0\x1d\xbb\xa2\x48\x5b\ +\x39\x29\xa3\x59\xbc\x8c\x57\xcf\xd2\x29\x56\x3b\x82\x96\x07\x4e\ +\xc5\x68\xb3\x45\x71\x21\x49\xaa\x55\xcb\x60\x17\x49\xa5\x6a\x33\ +\xb4\x5a\xe9\xaa\x68\x91\xf4\x99\x89\xb5\xb7\xd4\xba\x50\x66\xdd\ +\xa4\x2e\x9a\x52\x28\xbb\xb5\x13\x30\x29\x46\x95\xa7\x16\x19\xb3\ +\x26\x64\x0c\xcd\xd8\xbd\x27\xe1\xf7\xbd\xda\xef\x7b\x63\x13\x52\ +\xad\xab\xa2\x8d\x2b\x4d\x68\xcf\xf4\x27\xb4\x27\xfd\x84\x74\xdb\ +\x69\xc6\x9e\x38\xc0\xea\xd7\xaa\xe8\x8f\x95\x00\xde\x3b\x7d\x80\ +\xf7\xa6\x05\x78\x01\xcf\x27\xea\x57\x57\xa9\x4d\x22\x5a\x2c\xcc\ +\x64\xdb\x3b\x78\x3e\xa0\x3b\xb6\x75\x43\x3f\x65\x3a\x21\x13\x21\ +\xbd\x83\xc9\xf7\xb6\x1c\x86\x5d\x82\xe8\x64\x59\x87\x75\xa6\x1e\ +\x6b\xfe\x4f\xf2\x87\xa0\xb8\ +\x00\x00\xcb\x01\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x0b\x38\x00\x00\x00\x58\x00\x00\xbd\x0c\x00\x00\x00\x59\ +\x00\x00\xbd\xd7\x00\x00\x00\x5a\x00\x00\xbe\x82\x00\x00\x05\xd9\ +\x00\x00\xbd\x97\x00\x00\x05\xda\x00\x00\xbd\xb7\x00\x00\x05\xea\ +\x00\x00\xbe\x62\x00\x00\x07\x78\x00\x00\x86\x8f\x00\x00\x48\x83\ +\x00\x00\x03\x0b\x00\x00\x48\x83\x00\x00\x8d\x07\x00\x00\x68\x34\ +\x00\x00\x80\x0b\x00\x01\xc1\x87\x00\x00\x57\x54\x00\x04\xa6\x79\ +\x00\x00\x90\x9e\x00\x04\xbb\x04\x00\x00\x0c\xec\x00\x04\xbb\x04\ +\x00\x00\x95\xf2\x00\x05\x30\x45\x00\x00\x0f\x15\x00\x05\x30\x45\ +\x00\x00\xa8\x5d\x00\x05\x46\xc5\x00\x00\x0f\x42\x00\x05\x46\xc5\ +\x00\x00\xa8\xfb\x00\x05\x56\x45\x00\x00\x58\x25\x00\x05\x56\x45\ +\x00\x00\xaa\x1d\x00\x05\xac\xf4\x00\x00\x1c\x9a\x00\x05\xac\xf4\ +\x00\x00\xb9\xe1\x00\x05\xb8\xfd\x00\x00\xba\xeb\x00\x05\xcf\xc7\ +\x00\x00\xbb\x9d\x00\x06\xab\x8c\x00\x00\x81\x65\x00\x10\x84\x49\ +\x00\x00\x66\xa7\x00\x12\x05\xba\x00\x00\xb7\x4b\x00\x16\xc6\xda\ +\x00\x00\x9d\x50\x00\x1f\xa4\xf7\x00\x00\x29\xec\x00\x2a\xa6\x79\ +\x00\x00\x89\x49\x00\x2b\xc4\xaf\x00\x00\x8a\x5b\x00\x2b\xe0\x65\ +\x00\x00\x8a\x84\x00\x39\xdf\x33\x00\x00\x3a\x96\x00\x3a\x9e\x1b\ +\x00\x00\x77\xeb\x00\x3d\xa1\x19\x00\x00\x8e\x4a\x00\x3e\x93\x83\ +\x00\x00\x3b\xd0\x00\x48\x8f\x7c\x00\x00\x2b\x14\x00\x48\x98\x89\ +\x00\x00\x03\xf0\x00\x49\xe0\x85\x00\x00\x27\xd2\x00\x49\xe0\x85\ +\x00\x00\x93\x69\x00\x4a\x36\x45\x00\x00\x07\x1c\x00\x4b\x66\x35\ +\x00\x00\x37\x4c\x00\x4b\x66\x37\x00\x00\x37\x8d\x00\x4b\x66\x39\ +\x00\x00\x37\xce\x00\x57\x60\x54\x00\x00\x12\x6c\x00\x57\x60\x54\ +\x00\x00\xb2\xdc\x00\x58\xfd\xf4\x00\x00\x5c\x32\x00\x59\x98\x25\ +\x00\x00\x15\xd1\x00\x59\x98\x25\x00\x00\xb4\x84\x00\x6a\x58\x9a\ +\x00\x00\xac\xb8\x00\x79\xef\xd4\x00\x00\x86\xc7\x00\x7e\x7f\x0e\ +\x00\x00\x7c\xc2\x00\x8a\x23\x95\x00\x00\x2e\x5a\x00\x8a\x23\x97\ +\x00\x00\x2e\xa0\x00\x8a\x23\x99\x00\x00\x2e\xe6\x00\x91\xbc\xe9\ +\x00\x00\x0f\x75\x00\xa6\x37\x3f\x00\x00\x2d\x35\x00\xaa\x80\x25\ +\x00\x00\x94\x19\x00\xac\xd6\x04\x00\x00\x47\x32\x00\xc0\xac\x63\ +\x00\x00\x94\xdd\x00\xc6\xe3\x6e\x00\x00\x29\x55\x00\xcb\xa8\x14\ +\x00\x00\x85\xbd\x00\xfc\x00\xca\x00\x00\xa4\x30\x01\x19\x8d\xde\ +\x00\x00\x61\x80\x01\x21\xd6\x39\x00\x00\x65\x90\x01\x22\xb4\xf9\ +\x00\x00\x16\x20\x01\x2f\x8e\x7e\x00\x00\x70\x74\x01\x48\xfe\xa3\ +\x00\x00\x3c\x50\x01\x53\xf3\xaa\x00\x00\x99\xd5\x01\x56\x16\x4a\ +\x00\x00\xa3\x9f\x01\x5c\xde\xba\x00\x00\xa9\x94\x01\x67\x0d\x8a\ +\x00\x00\x9f\x09\x01\x69\x11\x7a\x00\x00\xb0\xcf\x01\x69\x97\x98\ +\x00\x00\x3e\xbe\x01\x82\x39\x0a\x00\x00\xad\x54\x01\x8b\x68\x75\ +\x00\x00\xba\x86\x01\x8b\x89\x79\x00\x00\x07\x4b\x01\xa1\x7f\x63\ +\x00\x00\x1f\x17\x01\xb1\x5d\x09\x00\x00\x78\x86\x01\xc1\xd9\xde\ +\x00\x00\x68\xc8\x01\xd2\x8f\xd3\x00\x00\x5c\xe5\x01\xd4\x10\x23\ +\x00\x00\x46\x43\x01\xdd\x83\xfa\x00\x00\xab\x4a\x01\xdf\x11\x43\ +\x00\x00\x06\x50\x01\xe2\xf4\x5a\x00\x00\xb6\xd0\x01\xfc\xae\xd3\ +\x00\x00\x87\x08\x02\x05\xbe\x25\x00\x00\x92\xde\x02\x2c\xd9\x60\ +\x00\x00\x21\x51\x02\x2f\xb5\x14\x00\x00\x20\x92\x02\x46\x58\x0a\ +\x00\x00\xb0\x21\x02\x57\xf8\x08\x00\x00\x0b\xc8\x02\x65\xad\x62\ +\x00\x00\xbf\x54\x02\x6e\x07\xe2\x00\x00\x60\x14\x02\x76\x24\x13\ +\x00\x00\x43\xe1\x02\x7d\xe0\x55\x00\x00\x61\x1e\x02\x94\x46\x1a\ +\x00\x00\xac\xfd\x02\x95\xca\xb5\x00\x00\x39\x3d\x02\xa7\x2c\x15\ +\x00\x00\x04\xf0\x02\xaa\x36\x95\x00\x00\x88\xe0\x02\xab\x87\xd4\ +\x00\x00\x89\x7c\x02\xb1\xf0\xba\x00\x00\xa0\xc4\x02\xbf\xaa\x8e\ +\x00\x00\x3f\xe7\x02\xc0\x66\xf2\x00\x00\x6c\xb6\x02\xc8\x3f\xf5\ +\x00\x00\x77\x45\x02\xd9\xa4\xb9\x00\x00\x7f\xc0\x02\xdb\x1a\x94\ +\x00\x00\x08\x7d\x03\x01\x84\xc4\x00\x00\xa4\xed\x03\x12\x97\x6a\ +\x00\x00\xa2\xc4\x03\x14\x79\xca\x00\x00\xa9\x29\x03\x1a\x14\x14\ +\x00\x00\x34\xec\x03\x1a\x16\x59\x00\x00\x62\xa3\x03\x2f\x1a\x6a\ +\x00\x00\x8b\x09\x03\x7e\xca\xb5\x00\x00\x52\x6a\x03\x85\x74\x48\ +\x00\x00\x4d\x4e\x03\x88\x1f\xd4\x00\x00\x53\x43\x03\x9e\x58\xa5\ +\x00\x00\x00\x3e\x03\xb3\x9e\xfa\x00\x00\xae\x04\x03\xb5\xc8\x9a\ +\x00\x00\xaf\x5c\x03\xbd\xd4\xe4\x00\x00\x8b\xb2\x03\xc4\x3c\xf5\ +\x00\x00\x8e\x0e\x03\xc5\xd5\x5e\x00\x00\x0a\x5d\x03\xc5\xd5\x5e\ +\x00\x00\x93\xee\x03\xcb\x0d\xe5\x00\x00\xb4\xcd\x03\xdc\x0c\xd4\ +\x00\x00\x89\xd5\x03\xe1\x78\x25\x00\x00\x92\x06\x03\xf2\x70\x35\ +\x00\x00\x31\x34\x03\xf2\xbd\x60\x00\x00\x17\x84\x03\xfb\x0f\x04\ +\x00\x00\x34\x74\x04\x21\x23\x23\x00\x00\x25\x57\x04\x2e\x73\x33\ +\x00\x00\x7b\x37\x04\x56\x06\x93\x00\x00\x32\x93\x04\x60\x7c\x15\ +\x00\x00\xb3\x5e\x04\x79\xef\x9a\x00\x00\xa0\x3d\x04\x82\x77\xf4\ +\x00\x00\x60\xc4\x04\x87\x83\x87\x00\x00\x42\xe3\x04\x87\xf9\x9e\ +\x00\x00\xa5\xe4\x04\x8c\xd6\xae\x00\x00\x75\x8c\x04\x8e\xbd\xda\ +\x00\x00\x98\x0f\x04\xa0\x8a\x25\x00\x00\x06\x19\x04\xa0\x8a\x25\ +\x00\x00\x8f\x63\x04\xa4\x31\x5a\x00\x00\xa7\xf1\x04\xa8\xeb\x85\ +\x00\x00\x38\x0f\x04\xbe\x0a\xf8\x00\x00\x5b\xaf\x04\xd6\xd6\x12\ +\x00\x00\x5e\xbf\x04\xe1\x6e\xe3\x00\x00\x0a\xd3\x04\xe4\x0f\x75\ +\x00\x00\x02\xad\x04\xeb\x41\xc3\x00\x00\x32\x10\x04\xef\xd9\xa8\ +\x00\x00\x5a\xd4\x05\x03\x83\x95\x00\x00\x83\x0a\x05\x05\xcb\x13\ +\x00\x00\x50\xaa\x05\x0f\xf2\x74\x00\x00\xab\xdf\x05\x1b\x10\x59\ +\x00\x00\x54\xe8\x05\x2a\xe5\x97\x00\x00\x5d\xa9\x05\x44\x3b\x5f\ +\x00\x00\x84\xcf\x05\x5c\xd9\xc4\x00\x00\x10\xbc\x05\x5c\xd9\xc4\ +\x00\x00\xaa\x86\x05\x63\xf6\x93\x00\x00\x5c\x75\x05\x65\xee\x65\ +\x00\x00\x97\xd2\x05\x87\xb0\xc3\x00\x00\xb3\x30\x05\x96\xa8\xa5\ +\x00\x00\x14\x83\x05\x96\xa8\xa5\x00\x00\xb4\x58\x05\xad\x4b\xc3\ +\x00\x00\x52\xc6\x05\xb2\xa6\xc6\x00\x00\x21\x97\x05\xb9\x03\xc8\ +\x00\x00\x22\x10\x05\xbd\x0c\xba\x00\x00\x9a\xf7\x05\xbd\x8e\xde\ +\x00\x00\x74\x3c\x05\xbe\x56\x93\x00\x00\x5a\x64\x05\xc5\x50\x04\ +\x00\x00\x0d\x1d\x05\xe5\x8e\x2e\x00\x00\x12\x97\x05\xfb\xdc\x83\ +\x00\x00\x51\x06\x06\x1e\xe6\xb5\x00\x00\xb9\xa6\x06\x29\xee\xa9\ +\x00\x00\x8f\xd4\x06\x2a\x86\xcd\x00\x00\x60\x6e\x06\x57\x19\xf4\ +\x00\x00\x00\x00\x06\x5a\xef\x15\x00\x00\x89\x10\x06\x5b\xd2\xb5\ +\x00\x00\x48\xd5\x06\x6c\x88\x8e\x00\x00\x4e\xdf\x06\x74\x1d\x55\ +\x00\x00\x68\x36\x06\x8b\x96\x44\x00\x00\x0d\xcb\x06\x97\x58\xc9\ +\x00\x00\x63\x36\x06\xbc\x80\xa5\x00\x00\x20\x23\x06\xc9\xb8\x05\ +\x00\x00\x8c\x2c\x06\xe8\x05\x4e\x00\x00\x08\x0a\x06\xee\xaa\x57\ +\x00\x00\xb8\xaf\x06\xf0\xcb\x25\x00\x00\x1d\xf9\x06\xfa\xff\xc3\ +\x00\x00\x52\x06\x06\xfc\x1a\x14\x00\x00\x39\x93\x06\xfc\xa0\x8a\ +\x00\x00\xac\x1e\x07\x08\x90\xe5\x00\x00\x2f\xaf\x07\x0d\xb7\xf7\ +\x00\x00\x3f\x2c\x07\x0e\x86\x3e\x00\x00\x1e\x6a\x07\x2a\x23\x65\ +\x00\x00\x3e\x29\x07\x35\x68\x6e\x00\x00\x18\xad\x07\x35\xe8\x9a\ +\x00\x00\xb1\x16\x07\x44\x41\x2a\x00\x00\x99\x4e\x07\x4a\x1f\x63\ +\x00\x00\x01\xe0\x07\x4d\x73\x22\x00\x00\xa8\x85\x07\x4e\xa6\xf2\ +\x00\x00\x96\x4b\x07\x58\xcb\xe8\x00\x00\xa8\xbf\x07\x63\xfe\x0e\ +\x00\x00\x13\x68\x07\x63\xfe\x0e\x00\x00\xb3\x01\x07\x71\xad\x43\ +\x00\x00\x19\xa8\x07\x80\xc6\xb3\x00\x00\xbc\xc8\x07\x88\x72\x5a\ +\x00\x00\x8d\x5d\x07\x91\x78\x5e\x00\x00\x26\xcf\x07\xa7\x30\x05\ +\x00\x00\x8d\x2e\x07\xc1\xfc\x13\x00\x00\x33\x62\x07\xe7\xec\x93\ +\x00\x00\x7a\x07\x08\x27\xb4\xba\x00\x00\xae\xf9\x08\x32\xc4\xaa\ +\x00\x00\xb1\xd1\x08\x36\x74\x14\x00\x00\x29\x0e\x08\x44\xb9\x83\ +\x00\x00\x3a\x18\x08\x49\xc9\x30\x00\x00\x17\xd4\x08\x61\x7c\xb3\ +\x00\x00\x22\x55\x08\xa2\xca\x67\x00\x00\x62\x4b\x08\xa3\xe0\x33\ +\x00\x00\x91\x3d\x08\xb1\x15\x28\x00\x00\x34\x03\x08\xb4\x04\x04\ +\x00\x00\xb3\xd5\x08\xd0\x32\xf4\x00\x00\x96\x1e\x08\xd4\xcd\x69\ +\x00\x00\x96\x99\x08\xe1\x9b\xbe\x00\x00\x1d\x3f\x08\xe1\xc1\xfa\ +\x00\x00\x98\x9e\x08\xef\x4d\x7a\x00\x00\x93\x92\x09\x20\xda\x24\ +\x00\x00\xbd\xf4\x09\x20\xda\xb4\x00\x00\xbe\x9f\x09\x20\xda\xd4\ +\x00\x00\xbd\x29\x09\x4d\x96\xd9\x00\x00\x2a\x3f\x09\x65\xda\x8a\ +\x00\x00\x9c\xd7\x09\x68\x0d\x29\x00\x00\xa6\xd0\x09\x71\x8d\x25\ +\x00\x00\x07\xc2\x09\x75\x23\x14\x00\x00\x8a\xb1\x09\x76\xed\x34\ +\x00\x00\x79\xb1\x09\x86\xa6\x05\x00\x00\x28\x00\x09\x8b\x23\xba\ +\x00\x00\xb2\x1e\x09\x9e\xfd\x7e\x00\x00\x7a\x99\x09\xb6\x2a\x63\ +\x00\x00\x38\x81\x09\xcd\x1c\x55\x00\x00\xb5\x0d\x09\xd2\x21\xea\ +\x00\x00\x71\x75\x09\xe5\x23\x0e\x00\x00\x6b\x9d\x09\xec\x2b\x45\ +\x00\x00\x0d\x7f\x09\xef\x33\xa3\x00\x00\x1a\x76\x09\xf0\x1f\x6e\ +\x00\x00\x03\x36\x09\xfd\x45\x1a\x00\x00\xad\xa9\x0a\x09\xc1\x7a\ +\x00\x00\xb0\x70\x0a\x28\x9a\x65\x00\x00\x5f\x3f\x0a\x28\x9a\x67\ +\x00\x00\x5f\x86\x0a\x28\x9a\x69\x00\x00\x5f\xcd\x0a\x2d\xbe\xe4\ +\x00\x00\x35\x59\x0a\x35\xa9\xfa\x00\x00\xa1\x50\x0a\x3f\x27\x74\ +\x00\x00\x93\x2a\x0a\x40\xa1\xe3\x00\x00\x31\xb1\x0a\x49\xa5\x4a\ +\x00\x00\xba\x07\x0a\x60\xe0\x15\x00\x00\x2b\x55\x0a\x60\xe0\x17\ +\x00\x00\x2b\xae\x0a\x60\xe0\x19\x00\x00\x2c\x07\x0a\x65\x9b\xea\ +\x00\x00\xaa\xb8\x0a\x78\x05\x80\x00\x00\x01\x33\x0a\x7f\x8f\x65\ +\x00\x00\x44\xd4\x0a\x81\xe4\x23\x00\x00\x4a\x47\x0a\x86\x10\x44\ +\x00\x00\x12\x0a\x0a\x98\x86\x18\x00\x00\x2f\x2c\x0a\x99\x5c\xaa\ +\x00\x00\xb2\x7c\x0a\xa8\x16\x95\x00\x00\x14\x46\x0a\xa8\x16\x95\ +\x00\x00\xb3\xa2\x0a\xa9\x89\xec\x00\x00\x53\x9c\x0a\xc8\x5c\x59\ +\x00\x00\x10\xf5\x0a\xd0\x50\xb8\x00\x00\x89\xa8\x0a\xd0\xe6\xf5\ +\x00\x00\x19\x5d\x0a\xd6\xf1\xfa\x00\x00\x95\x95\x0a\xeb\x91\x88\ +\x00\x00\x79\x18\x0b\x07\x78\x8a\x00\x00\x9c\x34\x0b\x1b\xe0\x73\ +\x00\x00\x63\xc2\x0b\x24\x9d\xb4\x00\x00\x64\xa9\x0b\x24\xc5\xc9\ +\x00\x00\x14\xb6\x0b\x26\x7e\x0e\x00\x00\x92\x44\x0b\x2b\x50\xfa\ +\x00\x00\x9f\xae\x0b\x2d\xb3\xf9\x00\x00\x7f\x22\x0b\x37\x73\x69\ +\x00\x00\xbb\xc7\x0b\x40\x40\x3e\x00\x00\x55\x4c\x0b\x43\xcd\x19\ +\x00\x00\x54\x1c\x0b\x4f\x98\xba\x00\x00\x9d\xce\x0b\x66\x28\xd2\ +\x00\x00\x77\x94\x0b\x88\xe0\x07\x00\x00\x0c\x1c\x0b\x94\x44\xc5\ +\x00\x00\x35\xca\x0b\x98\x12\xaa\x00\x00\x9a\x7a\x0b\xa0\x84\x94\ +\x00\x00\x04\x1f\x0b\xb3\x46\x6a\x00\x00\x90\xc6\x0b\xc2\x99\x6a\ +\x00\x00\x9b\x7b\x0b\xd3\x27\xae\x00\x00\x05\x2c\x0b\xd4\x7e\x9e\ +\x00\x00\x0c\x57\x0b\xf5\xee\x53\x00\x00\xaa\x47\x0c\x06\x50\x2e\ +\x00\x00\x0e\x54\x0c\x19\xfa\x99\x00\x00\x97\x27\x0c\x21\x0a\x83\ +\x00\x00\x8f\x93\x0c\x28\x9b\x45\x00\x00\x8a\x24\x0c\x31\x7e\x4a\ +\x00\x00\xae\x57\x0c\x38\x4d\xe5\x00\x00\x08\xc4\x0c\x3a\x16\xd0\ +\x00\x00\x1c\x0e\x0c\x5a\xc0\xc8\x00\x00\x8d\xd8\x0c\x6e\x87\xf5\ +\x00\x00\x26\x8e\x0c\x7c\xe0\xa6\x00\x00\x20\xd8\x0c\x80\x3b\x33\ +\x00\x00\x95\x33\x0c\x91\xa0\x7a\x00\x00\xb9\x45\x0c\x96\x90\x59\ +\x00\x00\x54\x7b\x0c\xbe\xa7\x4e\x00\x00\x4b\xb1\x0c\xca\xdd\xfa\ +\x00\x00\xb7\xbf\x0c\xd6\xef\x12\x00\x00\x33\x03\x0c\xde\x99\x49\ +\x00\x00\x7f\x6e\x0c\xe1\x21\x02\x00\x00\x5e\x48\x0c\xe2\x77\x73\ +\x00\x00\x81\xa3\x0c\xf0\xde\xaa\x00\x00\x9e\x51\x0d\x1c\xf6\xee\ +\x00\x00\x30\x7a\x0d\x3a\x6c\xba\x00\x00\xae\xa9\x0d\x45\xe2\x6a\ +\x00\x00\xb6\x65\x0d\x59\xa1\x45\x00\x00\x94\x51\x0d\x5a\xad\x33\ +\x00\x00\x8c\x9c\x0d\x5e\xe7\x6e\x00\x00\x2c\x60\x0d\x64\xa5\xd9\ +\x00\x00\x6f\xac\x0d\x6d\xf8\xf4\x00\x00\x09\x75\x0d\x74\xdd\x52\ +\x00\x00\x1b\x53\x0d\x76\xb5\x92\x00\x00\x30\xce\x0d\x9b\xec\xc9\ +\x00\x00\x67\xa9\x0d\xa5\xd9\x94\x00\x00\x30\x1f\x0d\xa6\xda\xa4\ +\x00\x00\x56\x69\x0d\xa7\xb9\xc2\x00\x00\x1b\xa0\x0d\xc6\xc6\x2a\ +\x00\x00\xb1\x73\x0d\xf2\x39\xba\x00\x00\xa2\x05\x0e\x1a\x1d\xc3\ +\x00\x00\x51\x74\x0e\x29\x94\x64\x00\x00\x41\x46\x0e\x2b\x04\x15\ +\x00\x00\x91\xc5\x0e\x2c\xe4\x2a\x00\x00\xb5\xe8\x0e\x4e\xcc\xc5\ +\x00\x00\x0a\x92\x0e\x6f\x9a\x1a\x00\x00\xb8\x43\x0e\x7b\x7a\x2c\ +\x00\x00\x36\xca\x0e\x8f\x6a\x37\x00\x00\x3b\x72\x0e\x91\x65\xf5\ +\x00\x00\x1c\xc5\x0e\xca\xd7\x34\x00\x00\x24\x33\x0e\xcd\x1c\x55\ +\x00\x00\xb5\x56\x0e\xcd\x1c\x65\x00\x00\xb5\x9f\x0e\xcd\x5b\x59\ +\x00\x00\x5b\x56\x0e\xea\xe5\x03\x00\x00\x87\x9d\x0e\xed\xe1\xf9\ +\x00\x00\x58\x67\x0f\x07\x8d\xe3\x00\x00\x88\x3d\x0f\x0b\x10\x53\ +\x00\x00\x56\xdd\x0f\x17\x82\x4e\x00\x00\x00\xd7\x0f\x1f\x8d\xa5\ +\x00\x00\x91\x7d\x0f\x4f\x75\x3a\x00\x00\xbf\x0d\x0f\x5f\xca\xd5\ +\x00\x00\x36\x45\x0f\x77\xc3\xb4\x00\x00\x80\x46\x0f\x89\x0b\xbe\ +\x00\x00\x58\xd3\x0f\x8f\xa8\xa7\x00\x00\x1b\x10\x0f\x98\x0a\x39\ +\x00\x00\xbb\x17\x0f\x9e\xec\xa0\x00\x00\x13\x9f\x0f\xbf\x87\xa3\ +\x00\x00\xa7\xa1\x0f\xcd\xce\x95\x00\x00\x3a\xfe\x0f\xdf\x21\x05\ +\x00\x00\x28\xa7\x0f\xf6\x06\x1e\x00\x00\x24\x9f\x0f\xf6\x29\x0a\ +\x00\x00\x8c\x58\x0f\xfb\x5f\xae\x00\x00\x92\x8c\x69\x00\x00\xbf\ +\xaf\x03\x00\x00\x00\x12\x00\x50\x00\x72\x00\x69\x00\x64\x00\xe1\ +\x00\x20\x00\x62\x00\x6f\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x09\x41\x64\x64\x20\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x0e\ +\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x50\x6f\x69\x6e\x74\x01\x03\ +\x00\x00\x00\x4e\x00\x50\x00\x72\x00\x69\x00\x64\x00\xe1\x00\x20\ +\x00\x62\x00\x6f\x00\x64\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x65\ +\x00\x78\x00\x69\x00\x73\x00\x74\x00\x75\x00\x6a\x00\xfa\x00\x63\ +\x00\x65\x00\x68\x00\x6f\x00\x20\x00\x64\x00\x72\x00\xf4\x00\x74\ +\x00\x75\x00\x2f\x00\x62\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x6e\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x41\x64\x64\x73\ +\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x74\x6f\x20\x61\x6e\x20\x65\ +\x78\x69\x73\x74\x69\x6e\x67\x20\x77\x69\x72\x65\x2f\x62\x73\x70\ +\x6c\x69\x6e\x65\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x41\ +\x64\x64\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x28\x00\x50\x00\ +\x72\x00\x69\x00\x64\x00\x61\x01\x65\x00\x20\x00\x64\x00\x6f\x00\ +\x20\x00\x73\x00\x6b\x00\x75\x00\x70\x00\x69\x00\x6e\x00\x79\x00\ +\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x41\ +\x64\x64\x20\x74\x6f\x20\x67\x72\x6f\x75\x70\x2e\x2e\x2e\x07\x00\ +\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x54\x6f\x47\x72\ +\x6f\x75\x70\x01\x03\x00\x00\x00\x58\x00\x50\x00\x72\x00\x69\x00\ +\x64\x00\xe1\x00\x20\x00\x76\x00\x79\x00\x62\x00\x72\x00\x61\x00\ +\x74\x00\xe9\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x79\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x65\x00\x78\x00\ +\x69\x00\x73\x00\x74\x00\x75\x00\x6a\x00\xfa\x00\x63\x00\x65\x00\ +\x6a\x00\x20\x00\x73\x00\x6b\x00\x75\x00\x70\x00\x69\x00\x6e\x00\ +\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x41\x64\x64\x73\x20\ +\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x28\x73\x29\x20\x74\x6f\x20\x61\x6e\x20\x65\x78\x69\ +\x73\x74\x69\x6e\x67\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x10\ +\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\ +\x01\x03\x00\x00\x00\x70\x00\x4e\x00\x61\x00\x20\x00\x76\x00\x79\ +\x00\x62\x00\x72\x00\x61\x00\x74\x00\xe9\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x20\x00\x70\x00\x6f\ +\x00\x75\x01\x7e\x00\x69\x01\x65\x00\x20\x00\x61\x00\x6b\x00\x74\ +\x00\x75\x00\xe1\x00\x6c\x00\x6e\x00\x75\x00\x20\x00\x68\x00\x72\ +\x00\xfa\x00\x62\x00\x6b\x00\x75\x00\x20\x01\x0d\x00\x69\x00\x61\ +\x00\x72\x00\x79\x00\x20\x00\x61\x00\x6a\x00\x20\x00\x66\x00\x61\ +\x00\x72\x00\x62\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\ +\x41\x70\x70\x6c\x69\x65\x73\x20\x63\x75\x72\x72\x65\x6e\x74\x20\ +\x6c\x69\x6e\x65\x20\x77\x69\x64\x74\x68\x20\x61\x6e\x64\x20\x63\ +\x6f\x6c\x6f\x72\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x10\x44\x72\x61\ +\x66\x74\x5f\x41\x70\x70\x6c\x79\x53\x74\x79\x6c\x65\x01\x03\x00\ +\x00\x00\x26\x00\x50\x00\x6f\x00\x75\x01\x7e\x00\x69\x00\x20\x00\ +\x61\x00\x6b\x00\x74\x00\x75\x00\xe1\x00\x6c\x00\x6e\x00\x79\x00\ +\x20\x01\x61\x00\x74\x00\xfd\x00\x6c\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x13\x41\x70\x70\x6c\x79\x20\x43\x75\x72\x72\x65\x6e\x74\ +\x20\x53\x74\x79\x6c\x65\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\ +\x5f\x41\x70\x70\x6c\x79\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\ +\x0a\x00\x4f\x00\x62\x00\x6c\x00\xfa\x00\x6b\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x03\x41\x72\x63\x07\x00\x00\x00\x09\x44\x72\x61\ +\x66\x74\x5f\x41\x72\x63\x01\x03\x00\x00\x00\x6c\x00\x56\x00\x79\ +\x00\x74\x00\x76\x00\x6f\x00\x72\x00\xed\x00\x20\x00\x6f\x00\x62\ +\x00\x6c\x00\xfa\x00\x6b\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\ +\x00\x4c\x00\x20\x00\x70\x00\x72\x00\x65\x00\x20\x00\x75\x00\x63\ +\x00\x68\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x2c\ +\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x70\ +\x00\x72\x00\x65\x00\x20\x00\x76\x00\x79\x00\x6e\x00\xfa\x00\x74\ +\x00\x65\x00\x6e\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x72\x63\ +\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\ +\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\ +\x69\x6e\x07\x00\x00\x00\x09\x44\x72\x61\x66\x74\x5f\x41\x72\x63\ +\x01\x03\x00\x00\x00\x0a\x00\x41\x00\x72\x00\x72\x00\x61\x00\x79\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x72\x72\x61\x79\x07\ +\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x41\x72\x72\x61\x79\x01\ +\x03\x00\x00\x00\x76\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\ +\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\ +\x61\x00\x72\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x72\x00\x65\x00\ +\x63\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x61\x00\ +\x72\x00\x20\x00\x61\x00\x72\x00\x72\x00\x61\x00\x79\x00\x20\x00\ +\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x3b\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x70\ +\x6f\x6c\x61\x72\x20\x6f\x72\x20\x72\x65\x63\x74\x61\x6e\x67\x75\ +\x6c\x61\x72\x20\x61\x72\x72\x61\x79\x20\x66\x72\x6f\x6d\x20\x61\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x41\x72\x72\x61\x79\ +\x01\x03\x00\x00\x00\x12\x00\x42\x00\x2d\x00\x76\x00\x6c\x00\x6e\ +\x00\x6f\x00\x76\x00\x6b\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x08\x42\x2d\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x0d\x44\ +\x72\x61\x66\x74\x5f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\ +\x00\x88\x00\x56\x00\x79\x00\x74\x00\x76\x00\xe1\x00\x72\x00\x61\ +\x00\x20\x00\x76\x00\x69\x00\x61\x00\x63\x00\x20\x00\x62\x00\x6f\ +\x00\x64\x00\x6f\x00\x76\x00\xfa\x00\x20\x00\x76\x00\x6c\x00\x6e\ +\x00\x6f\x00\x76\x00\x6b\x00\x75\x00\x2e\x00\x20\x00\x43\x00\x54\ +\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x72\x00\x65\x00\x20\x00\x75\ +\x00\x63\x00\x68\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x69\x00\x65\ +\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\ +\x00\x70\x00\x72\x00\x65\x00\x20\x00\x76\x00\x79\x00\x6e\x00\xfa\ +\x00\x74\x00\x65\x00\x6e\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x43\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x6d\x75\ +\x6c\x74\x69\x70\x6c\x65\x2d\x70\x6f\x69\x6e\x74\x20\x62\x2d\x73\ +\x70\x6c\x69\x6e\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\ +\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\ +\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\ +\x74\x5f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x10\x00\ +\x4b\x00\x72\x00\x75\x01\x7e\x00\x6e\x00\x69\x00\x63\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\x69\x72\x63\x6c\x65\x07\ +\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x43\x69\x72\x63\x6c\x65\ +\x01\x03\x00\x00\x00\x6e\x00\x56\x00\x79\x00\x74\x00\x76\x00\x6f\ +\x00\x72\x00\xed\x00\x20\x00\x6b\x00\x72\x00\x75\x00\x68\x00\x2e\ +\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x72\ +\x00\x65\x00\x20\x00\x70\x00\x72\x00\x69\x00\x63\x00\x68\x00\x79\ +\x00\x74\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x2c\x00\x20\x00\x41\ +\x00\x4c\x00\x54\x00\x20\x00\x76\x00\x79\x00\x62\x00\x65\x00\x72\ +\x00\x69\x00\x65\x00\x20\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x65\ +\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3d\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x20\x63\x69\x72\x63\x6c\x65\x2e\x20\ +\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x41\x4c\ +\x54\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x20\x74\x61\x6e\x67\ +\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0c\ +\x44\x72\x61\x66\x74\x5f\x43\x69\x72\x63\x6c\x65\x01\x03\x00\x00\ +\x00\x0a\x00\x43\x00\x6c\x00\x6f\x00\x6e\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x05\x43\x6c\x6f\x6e\x65\x07\x00\x00\x00\x0b\ +\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\x6e\x65\x01\x03\x00\x00\x00\ +\x3a\x00\x43\x00\x6c\x00\x6f\x00\x6e\x00\x65\x00\x73\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x28\x00\x73\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1d\x43\x6c\x6f\x6e\x65\x73\x20\x74\x68\x65\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x28\ +\x73\x29\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\ +\x6e\x65\x01\x03\x00\x00\x00\x1a\x00\x55\x00\x6b\x00\x6f\x00\x6e\ +\x01\x0d\x00\x69\x01\x65\x00\x20\x01\x0d\x00\x69\x00\x61\x00\x72\ +\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6c\x6f\x73\ +\x65\x20\x4c\x69\x6e\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\ +\x5f\x43\x6c\x6f\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x34\ +\x00\x55\x00\x6b\x00\x6f\x00\x6e\x01\x0d\x00\x69\x01\x65\x00\x20\ +\x00\x72\x00\x6f\x00\x7a\x00\x70\x00\x72\x00\x61\x00\x63\x00\x6f\ +\x00\x76\x00\x61\x00\x6e\x00\xfa\x00\x20\x01\x0d\x00\x69\x00\x61\ +\x00\x72\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x43\x6c\ +\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x6c\x69\x6e\x65\x20\x62\x65\ +\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x07\x00\x00\x00\x0f\x44\x72\ +\x61\x66\x74\x5f\x43\x6c\x6f\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\ +\x00\x00\x18\x00\x4f\x00\x64\x00\x73\x00\x74\x00\x72\x00\xe1\x00\ +\x6e\x00\x69\x00\x20\x00\x62\x00\x6f\x00\x64\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0c\x52\x65\x6d\x6f\x76\x65\x20\x50\x6f\x69\x6e\ +\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x44\x65\x6c\x50\ +\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x5e\x00\x4f\x00\x64\x00\x73\ +\x00\x74\x00\x72\x00\xe1\x00\x6e\x00\x69\x00\x20\x00\x62\x00\x6f\ +\x00\x64\x00\x20\x00\x7a\x00\x20\x00\x65\x00\x78\x00\x69\x00\x73\ +\x00\x74\x00\x75\x00\x6a\x00\xfa\x00\x63\x00\x65\x00\x68\x00\x6f\ +\x00\x20\x00\x64\x00\x72\x00\xf4\x00\x74\x00\x75\x00\x20\x00\x61\ +\x00\x6c\x00\x65\x00\x62\x00\x6f\x00\x20\x00\x62\x00\x73\x00\x70\ +\x00\x6c\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x30\x52\x65\x6d\x6f\x76\x65\x73\x20\x61\x20\x70\x6f\x69\x6e\ +\x74\x20\x66\x72\x6f\x6d\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\ +\x6e\x67\x20\x77\x69\x72\x65\x20\x6f\x72\x20\x62\x73\x70\x6c\x69\ +\x6e\x65\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x44\x65\x6c\ +\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x76\x00\x56\x00\x79\x00\ +\x74\x00\x76\x00\x6f\x00\x72\x00\xed\x00\x20\x00\x6b\x00\xf3\x00\ +\x74\x00\x75\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ +\x20\x00\x75\x00\x63\x00\x68\x00\x6f\x00\x70\x00\x69\x01\x65\x00\ +\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\ +\x6f\x00\x62\x00\x6d\x00\x65\x00\x64\x00\x7a\x00\x69\x01\x65\x00\ +\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x76\x00\x79\x00\ +\x62\x00\x72\x00\x61\x01\x65\x00\x20\x01\x0d\x00\x61\x00\x73\x01\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4e\x43\x72\x65\x61\x74\ +\x65\x73\x20\x61\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x2e\x20\ +\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\ +\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\ +\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x20\ +\x61\x20\x73\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x0f\x44\x72\ +\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x01\x03\x00\ +\x00\x00\x08\x00\x4b\x00\xf3\x00\x74\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x09\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\ +\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\x73\x69\ +\x6f\x6e\x01\x03\x00\x00\x00\x14\x00\x44\x00\x65\x00\x67\x00\x72\ +\x00\x61\x00\x64\x00\xe1\x00\x63\x00\x69\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x07\ +\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\ +\x61\x64\x65\x01\x03\x00\x00\x00\x8c\x00\x52\x00\x6f\x00\x7a\x00\ +\x6c\x00\x6f\x01\x7e\x00\xed\x00\x20\x00\x76\x00\x79\x00\x62\x00\ +\x72\x00\x61\x00\x74\x00\xe9\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x79\x00\x20\x00\x6e\x00\x61\x00\x20\x00\ +\x6a\x00\x65\x00\x64\x00\x6e\x00\x6f\x00\x64\x00\x75\x00\x63\x00\ +\x68\x01\x61\x00\x69\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x79\x00\x2c\x00\x20\x00\x61\x00\x6c\x00\ +\x65\x00\x62\x00\x6f\x00\x20\x00\x6f\x00\x64\x00\x6f\x00\x62\x00\ +\x65\x00\x72\x00\x69\x00\x65\x00\x20\x00\x70\x00\x6c\x00\x6f\x00\ +\x63\x00\x68\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x45\x45\ +\x78\x70\x6c\x6f\x64\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\ +\x6f\x20\x73\x69\x6d\x70\x6c\x65\x72\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x2c\x20\x6f\x72\x20\x73\x75\x62\x74\x72\x61\x63\x74\x20\x66\ +\x61\x63\x65\x73\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\ +\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x1e\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\ +\x00\x53\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x20\x74\x6f\x20\x53\ +\x6b\x65\x74\x63\x68\x07\x00\x00\x00\x12\x44\x72\x61\x66\x74\x5f\ +\x44\x72\x61\x66\x74\x32\x53\x6b\x65\x74\x63\x68\x01\x03\x00\x00\ +\x00\x12\x00\x4b\x00\x72\x00\x65\x00\x73\x00\x6c\x00\x65\x00\x6e\ +\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x44\x72\ +\x61\x77\x69\x6e\x67\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\ +\x44\x72\x61\x77\x69\x6e\x67\x01\x03\x00\x00\x00\x46\x00\x55\x00\ +\x6d\x00\x69\x00\x65\x00\x73\x00\x74\x00\x6e\x00\xed\x00\x20\x00\ +\x76\x00\x79\x00\x62\x00\x72\x00\x61\x00\x74\x00\xe9\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x20\x00\ +\x6e\x00\x61\x00\x20\x00\x76\x00\xfd\x00\x6b\x00\x72\x00\x65\x00\ +\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x50\x75\x74\ +\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x20\x6f\x6e\x20\x61\x20\x44\x72\x61\x77\ +\x69\x6e\x67\x20\x73\x68\x65\x65\x74\x2e\x07\x00\x00\x00\x0d\x44\ +\x72\x61\x66\x74\x5f\x44\x72\x61\x77\x69\x6e\x67\x01\x03\x00\x00\ +\x00\x0e\x00\x55\x00\x70\x00\x72\x00\x61\x00\x76\x00\x69\x01\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\ +\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\ +\x00\x00\x2c\x00\x55\x00\x70\x00\x72\x00\x61\x00\x76\x00\x69\x01\ +\x65\x00\x20\x00\x61\x00\x6b\x00\x74\x00\xed\x00\x76\x00\x6e\x00\ +\x79\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x17\x45\x64\x69\x74\x73\x20\x74\ +\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\ +\x03\x00\x00\x00\x1c\x00\x44\x00\x6f\x00\x6b\x00\x6f\x00\x6e\x01\ +\x0d\x00\x69\x01\x65\x00\x20\x01\x0d\x00\x69\x00\x61\x00\x72\x00\ +\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x46\x69\x6e\x69\x73\ +\x68\x20\x6c\x69\x6e\x65\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\ +\x5f\x46\x69\x6e\x69\x73\x68\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\ +\x42\x00\x55\x00\x6b\x00\x6f\x00\x6e\x01\x0d\x00\x69\x01\x65\x00\ +\x20\x01\x0d\x00\x69\x00\x61\x00\x72\x00\x75\x00\x20\x00\x62\x00\ +\x65\x00\x7a\x00\x20\x00\x6a\x00\x65\x00\x6a\x00\x20\x00\x75\x00\ +\x7a\x00\x61\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x65\x00\x6e\x00\ +\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x46\x69\x6e\ +\x69\x73\x68\x65\x73\x20\x61\x20\x6c\x69\x6e\x65\x20\x77\x69\x74\ +\x68\x6f\x75\x74\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\x07\ +\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\x69\x73\x68\ +\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x6a\x00\x56\x00\x79\x00\x74\ +\x00\x76\x00\x6f\x00\x72\x00\x69\x01\x65\x00\x20\x00\x32\x00\x2d\ +\x00\x62\x00\x6f\x00\x64\x00\x6f\x00\x76\x00\xfa\x00\x20\x01\x0d\ +\x00\x69\x00\x61\x00\x72\x00\x75\x00\x2e\x00\x20\x00\x43\x00\x54\ +\x00\x52\x00\x4c\x00\x20\x00\x75\x00\x63\x00\x68\x00\x6f\x00\x70\ +\x00\x69\x01\x65\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\ +\x00\x54\x00\x20\x00\x6f\x00\x62\x00\x6d\x00\x65\x00\x64\x00\x7a\ +\x00\x69\x01\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\x74\x20\ +\x6c\x69\x6e\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ +\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\ +\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\ +\x5f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x0a\x01\x0d\x00\x69\x00\ +\x61\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4c\ +\x69\x6e\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4c\x69\ +\x6e\x65\x01\x03\x00\x00\x00\x10\x00\x50\x00\x72\x00\x65\x00\x73\ +\x00\x75\x00\x6e\x00\xfa\x01\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x4d\x6f\x76\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\ +\x5f\x4d\x6f\x76\x65\x01\x03\x00\x00\x00\xce\x00\x50\x00\x72\x00\ +\x65\x00\x73\x00\x75\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x76\x00\ +\x79\x00\x62\x00\x72\x00\x61\x00\x74\x00\xe9\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x20\x00\x6d\x00\ +\x65\x00\x64\x00\x7a\x00\x69\x00\x20\x00\x32\x00\x20\x00\x62\x00\ +\x6f\x00\x64\x00\x79\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\ +\x4c\x00\x20\x00\x70\x00\x72\x00\x65\x00\x20\x00\x70\x00\x72\x00\ +\x69\x00\x63\x00\x68\x00\x79\x00\x74\x00\x65\x00\x6e\x00\x69\x00\ +\x65\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\ +\x20\x00\x70\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6d\x00\ +\x65\x00\x64\x00\x7a\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x2c\x00\ +\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x70\x00\x72\x00\x65\x00\ +\x20\x00\x73\x00\x6b\x00\x6f\x00\x70\x00\xed\x00\x72\x00\x6f\x00\ +\x76\x00\x61\x00\x6e\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x5a\x4d\x6f\x76\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\ +\x74\x77\x65\x65\x6e\x20\x32\x20\x70\x6f\x69\x6e\x74\x73\x2e\x20\ +\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\ +\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\ +\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\ +\x00\x0a\x44\x72\x61\x66\x74\x5f\x4d\x6f\x76\x65\x01\x03\x00\x00\ +\x00\x12\x00\x4f\x00\x64\x00\x73\x00\x61\x00\x64\x00\x65\x00\x6e\ +\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x4f\x66\ +\x66\x73\x65\x74\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x4f\ +\x66\x66\x73\x65\x74\x01\x03\x00\x00\x00\xac\x00\x4f\x00\x64\x00\ +\x73\x00\x61\x00\x64\x00\xed\x00\x20\x00\x61\x00\x6b\x00\x74\x00\ +\xed\x00\x76\x00\x6e\x00\x79\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\ +\x4c\x00\x20\x00\x70\x00\x72\x00\x65\x00\x20\x00\x70\x00\x72\x00\ +\x69\x00\x63\x00\x68\x00\x79\x00\x74\x00\x65\x00\x6e\x00\x69\x00\ +\x65\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\ +\x20\x00\x70\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6d\x00\ +\x65\x00\x64\x00\x7a\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x2c\x00\ +\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x70\x00\x72\x00\x65\x00\ +\x20\x00\x6b\x00\x6f\x00\x70\x00\xed\x00\x72\x00\x6f\x00\x76\x00\ +\x61\x00\x6e\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x48\x4f\x66\x66\x73\x65\x74\x73\x20\x74\x68\x65\x20\x61\x63\x74\ +\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x2e\x20\x43\x54\x52\x4c\ +\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\ +\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\ +\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0c\x44\x72\ +\x61\x66\x74\x5f\x4f\x66\x66\x73\x65\x74\x01\x03\x00\x00\x00\x2c\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\ +\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x16\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ +\x70\x6f\x69\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ +\x0b\x44\x72\x61\x66\x74\x5f\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\ +\x00\x06\x00\x42\x00\x6f\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x0b\x44\x72\x61\x66\ +\x74\x5f\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x74\x00\x56\x00\ +\x79\x00\x74\x00\x76\x00\xe1\x00\x72\x00\x61\x00\x20\x00\x70\x00\ +\x72\x00\x61\x00\x76\x00\x69\x00\x64\x00\x65\x00\x6c\x00\x6e\x00\ +\xfd\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\xf3\x00\ +\x6e\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\ +\x70\x00\x72\x00\x69\x00\x63\x00\x68\x00\x79\x00\x74\x00\x69\x01\ +\x65\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\ +\x20\x00\x6f\x00\x62\x00\x6d\x00\x65\x00\x64\x00\x7a\x00\x69\x01\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3b\x43\x72\x65\x61\x74\ +\x65\x73\x20\x61\x20\x72\x65\x67\x75\x6c\x61\x72\x20\x70\x6f\x6c\ +\x79\x67\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ +\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\ +\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\ +\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\x03\x00\x00\x00\x0e\x00\x50\ +\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\xf3\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x07\x50\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\ +\x00\x0d\x44\x72\x61\x66\x74\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\ +\x03\x00\x00\x00\x5a\x00\x56\x00\x79\x00\x74\x00\x76\x00\x6f\x00\ +\x72\x00\xed\x00\x20\x00\x32\x00\x2d\x00\x62\x00\x6f\x00\x64\x00\ +\x6f\x00\x76\x00\xfd\x00\x20\x00\x6f\x00\x62\x00\x64\x01\x3a\x01\ +\x7e\x00\x6e\x00\x69\x00\x6b\x00\x2e\x00\x20\x00\x43\x00\x54\x00\ +\x52\x00\x4c\x00\x20\x00\x70\x00\x72\x00\x65\x00\x20\x00\x75\x00\ +\x63\x00\x68\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x69\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x29\x43\x72\x65\x61\x74\x65\x73\ +\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\x74\x20\x72\x65\x63\x74\x61\ +\x6e\x67\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ +\x61\x70\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x52\x65\x63\ +\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\x10\x00\x4f\x00\x62\ +\x00\x64\x01\x3a\x01\x7e\x00\x6e\x00\x69\x00\x6b\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\ +\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x52\x65\x63\x74\x61\x6e\ +\x67\x6c\x65\x01\x03\x00\x00\x00\x0c\x00\x4f\x00\x74\x00\x6f\x01\ +\x0d\x00\x69\x01\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\ +\x6f\x74\x61\x74\x65\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\ +\x52\x6f\x74\x61\x74\x65\x01\x03\x00\x00\x00\xa8\x00\x4f\x00\x74\ +\x00\x6f\x01\x0d\x00\xed\x00\x20\x00\x76\x00\x79\x00\x62\x00\x72\ +\x00\x61\x00\x74\x00\xe9\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x79\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\ +\x00\x4c\x00\x20\x00\x70\x00\x72\x00\x65\x00\x20\x00\x70\x00\x72\ +\x00\x69\x00\x63\x00\x68\x00\x79\x00\x74\x00\x65\x00\x6e\x00\x69\ +\x00\x65\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\ +\x00\x20\x00\x70\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6d\ +\x00\x65\x00\x64\x00\x7a\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x2c\ +\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x76\x00\x79\x00\x74\ +\x00\x76\x00\x6f\x00\x72\x00\xed\x00\x20\x00\x6b\x00\xf3\x00\x70\ +\x00\x69\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x6f\ +\x74\x61\x74\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x20\x43\x54\x52\x4c\ +\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\ +\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\ +\x54\x20\x63\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x6f\x70\x79\ +\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\ +\x65\x01\x03\x00\x00\x00\x2a\x01\x60\x00\x6b\x00\xe1\x00\x6c\x00\ +\x61\x00\x2c\x00\x20\x00\x7a\x00\x6d\x00\x65\x00\x6e\x00\x61\x00\ +\x20\x00\x76\x00\x65\x01\x3e\x00\x6b\x00\x6f\x00\x73\x00\x74\x00\ +\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x53\x63\x61\x6c\x65\ +\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\ +\x01\x03\x00\x00\x00\xe8\x00\x5a\x00\x6d\x00\x65\x00\x6e\x00\xed\ +\x00\x20\x00\x76\x00\x65\x01\x3e\x00\x6b\x00\x6f\x00\x73\x01\x65\ +\x00\x20\x00\x76\x00\x79\x00\x62\x00\x72\x00\x61\x00\x74\x00\xfd\ +\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x6f\x00\x76\x00\x20\x00\x7a\x00\x6f\x00\x20\x00\x7a\ +\x00\xe1\x00\x6b\x00\x6c\x00\x61\x00\x64\x00\x6e\x00\xe9\x00\x68\ +\x00\x6f\x00\x20\x00\x62\x00\x6f\x00\x64\x00\x75\x00\x2e\x00\x20\ +\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x72\x00\x65\ +\x00\x20\x00\x70\x00\x72\x00\x69\x00\x63\x00\x68\x00\x79\x00\x74\ +\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x2c\x00\x20\x00\x53\x00\x48\ +\x00\x49\x00\x46\x00\x54\x00\x20\x00\x70\x00\x72\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6d\x00\x65\x00\x64\x00\x7a\x00\x65\x00\x6e\ +\x00\x69\x00\x65\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\ +\x00\x70\x00\x72\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\xed\ +\x00\x72\x00\x6f\x00\x76\x00\x61\x00\x6e\x00\x69\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x5c\x53\x63\x61\x6c\x65\x73\x20\x74\ +\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x20\x66\x72\x6f\x6d\x20\x61\x20\x62\x61\x73\x65\x20\ +\x70\x6f\x69\x6e\x74\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\ +\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\ +\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\ +\x63\x6f\x70\x79\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x53\ +\x63\x61\x6c\x65\x01\x03\x00\x00\x00\x1e\x00\x56\x00\x79\x00\x62\ +\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x73\x00\x6b\x00\x75\ +\x00\x70\x00\x69\x00\x6e\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0c\x53\x65\x6c\x65\x63\x74\x20\x67\x72\x6f\x75\x70\x07\x00\ +\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x47\ +\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x7c\x00\x56\x00\x79\x00\x62\ +\x00\x65\x00\x72\x00\x69\x00\x65\x00\x20\x00\x76\x01\x61\x00\x65\ +\x00\x74\x00\x6b\x00\x79\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x79\x00\x20\x00\x73\x00\x20\x00\x72\x00\x6f\ +\x00\x76\x00\x6e\x00\x61\x00\x6b\x00\xfd\x00\x6d\x00\x69\x00\x20\ +\x00\x72\x00\x6f\x00\x64\x00\x69\x01\x0d\x00\x6d\x00\x69\x00\x20\ +\x00\x61\x00\x6b\x00\x6f\x00\x20\x00\x6d\x00\xe1\x00\x20\x00\x74\ +\x00\xe1\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x6b\x00\x75\x00\x70\ +\x00\x69\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\ +\x53\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x73\x61\x6d\ +\x65\x20\x70\x61\x72\x65\x6e\x74\x73\x20\x61\x73\x20\x74\x68\x69\ +\x73\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x11\x44\x72\x61\x66\ +\x74\x5f\x53\x65\x6c\x65\x63\x74\x47\x72\x6f\x75\x70\x01\x03\x00\ +\x00\x00\x5e\x00\x56\x00\x79\x00\x62\x00\x65\x00\x72\x00\x61\x01\ +\x65\x00\x20\x00\x70\x00\x72\x00\x61\x00\x63\x00\x6f\x00\x76\x00\ +\x6e\x00\xfa\x00\x20\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\ +\x75\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x76\x00\x79\x00\x74\x00\ +\x76\x00\x6f\x00\x72\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x20\x00\ +\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x53\x65\x6c\x65\x63\ +\x74\x20\x61\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\x6c\x61\x6e\ +\x65\x20\x66\x6f\x72\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\x20\x63\ +\x72\x65\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x11\x44\x72\x61\x66\ +\x74\x5f\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x01\x03\x00\ +\x00\x00\x1a\x00\x56\x00\x79\x00\x62\x00\x72\x00\x61\x01\x65\x00\ +\x20\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\x75\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0b\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\ +\x6e\x65\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\ +\x65\x63\x74\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x70\x00\x43\ +\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x20\x00\x62\ +\x00\x69\x00\x64\x00\x69\x00\x72\x00\x65\x00\x63\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x6c\x00\x79\x00\x20\x00\x62\ +\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x61\x00\x6e\x00\x64\ +\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x38\x43\x6f\x6e\x76\x65\x72\x74\x20\ +\x62\x69\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x61\x6c\x6c\x79\x20\ +\x62\x65\x74\x77\x65\x65\x6e\x20\x44\x72\x61\x66\x74\x20\x61\x6e\ +\x64\x20\x53\x6b\x65\x74\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x61\x70\x65\ +\x32\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\x4a\x00\x56\x00\x79\ +\x00\x74\x00\x76\x00\x6f\x00\x72\x00\xed\x00\x20\x00\x32\x00\x44\ +\x00\x20\x00\x70\x00\x6f\x00\x68\x01\x3e\x00\x61\x00\x64\x00\x79\ +\x00\x20\x00\x76\x00\x79\x00\x62\x00\x72\x00\x61\x00\x74\x00\xfd\ +\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x6f\x00\x76\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\ +\x43\x72\x65\x61\x74\x65\x73\x20\x53\x68\x61\x70\x65\x20\x32\x44\ +\x20\x76\x69\x65\x77\x73\x20\x6f\x66\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x11\x44\ +\x72\x61\x66\x74\x5f\x53\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\ +\x01\x03\x00\x00\x00\x10\x00\x54\x00\x76\x00\x61\x00\x72\x00\x79\ +\x00\x20\x00\x32\x00\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ +\x53\x68\x61\x70\x65\x20\x32\x44\x20\x76\x69\x65\x77\x07\x00\x00\ +\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x61\x70\x65\x32\x44\x56\ +\x69\x65\x77\x01\x03\x00\x00\x00\x1a\x00\x53\x00\x68\x00\x6f\x00\ +\x77\x00\x20\x00\x53\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x42\x00\ +\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x68\x6f\ +\x77\x20\x53\x6e\x61\x70\x20\x42\x61\x72\x07\x00\x00\x00\x11\x44\ +\x72\x61\x66\x74\x5f\x53\x68\x6f\x77\x53\x6e\x61\x70\x42\x61\x72\ +\x01\x03\x00\x00\x00\x30\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x73\ +\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x73\ +\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\ +\x00\x62\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\ +\x53\x68\x6f\x77\x73\x20\x44\x72\x61\x66\x74\x20\x73\x6e\x61\x70\ +\x20\x74\x6f\x6f\x6c\x62\x61\x72\x07\x00\x00\x00\x11\x44\x72\x61\ +\x66\x74\x5f\x53\x68\x6f\x77\x53\x6e\x61\x70\x42\x61\x72\x01\x03\ +\x00\x00\x00\x4a\x00\x56\x00\x79\x00\x74\x00\x76\x00\x6f\x00\x72\ +\x00\xed\x00\x20\x00\x70\x00\x6f\x00\x7a\x00\x6e\x00\xe1\x00\x6d\ +\x00\x6b\x00\x79\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\ +\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x70\x00\x72\x00\x69\x00\x63\ +\x00\x68\x00\x79\x00\x74\x00\x65\x00\x6e\x00\x69\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x23\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x6e\x20\x61\x6e\x6e\x6f\x74\x61\x74\x69\x6f\x6e\x2e\x20\x43\ +\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x07\x00\x00\x00\x0a\ +\x44\x72\x61\x66\x74\x5f\x54\x65\x78\x74\x01\x03\x00\x00\x00\x08\ +\x00\x54\x00\x65\x00\x78\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x54\x65\x78\x74\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\ +\x5f\x54\x65\x78\x74\x01\x03\x00\x00\x00\x32\x00\x50\x00\x72\x00\ +\x65\x00\x70\x00\x6e\x00\xfa\x01\x65\x00\x20\x00\x6b\x00\x6f\x00\ +\x6e\x01\x61\x00\x74\x00\x72\x00\x75\x00\x6b\x01\x0d\x00\x6e\x00\ +\xfd\x00\x20\x00\x72\x00\x65\x01\x7e\x00\x69\x00\x6d\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x54\x6f\x67\x67\x6c\x65\x20\x63\x6f\ +\x6e\x73\x74\x72\x75\x63\x69\x6f\x6e\x20\x4d\x6f\x64\x65\x07\x00\ +\x00\x00\x1c\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\ +\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x4d\x6f\x64\x65\x01\ +\x03\x00\x00\x00\x5a\x00\x50\x00\x72\x00\x65\x00\x70\x00\x6e\x00\ +\xfa\x01\x65\x00\x20\x00\x72\x00\x65\x01\x7e\x00\x69\x00\x6d\x00\ +\x20\x00\x6b\x00\x6f\x00\x6e\x01\x61\x00\x74\x00\x72\x00\x75\x00\ +\x6b\x00\x63\x00\x69\x00\x65\x00\x20\x00\x70\x00\x72\x00\x65\x00\ +\x20\x01\x0f\x00\x61\x00\x6c\x01\x61\x00\x69\x00\x65\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x2e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x54\x6f\x67\x67\x6c\x65\x73\ +\x20\x74\x68\x65\x20\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\ +\x6e\x20\x4d\x6f\x64\x65\x20\x66\x6f\x72\x20\x6e\x65\x78\x74\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x1c\x44\x72\x61\ +\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x73\x74\x72\x75\ +\x63\x74\x69\x6f\x6e\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x30\x00\ +\x50\x00\x72\x00\x65\x00\x70\x00\x6e\x00\xfa\x01\x65\x00\x20\x00\ +\x6d\x00\xf3\x00\x64\x00\x20\x00\x70\x00\x6f\x00\x6b\x00\x72\x00\ +\x61\x01\x0d\x00\x6f\x00\x76\x00\x61\x00\x6e\x00\x69\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x6f\x67\x67\x6c\x65\x20\ +\x63\x6f\x6e\x74\x69\x6e\x75\x65\x20\x4d\x6f\x64\x65\x07\x00\x00\ +\x00\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\ +\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x54\ +\x00\x50\x00\x72\x00\x65\x00\x70\x00\x6e\x00\x65\x00\x20\x00\x6d\ +\x00\xf3\x00\x64\x00\x20\x00\x50\x00\x6f\x00\x6b\x00\x72\x00\x61\ +\x01\x0d\x00\x6f\x00\x76\x00\x61\x00\x6e\x00\x69\x00\x61\x00\x20\ +\x00\x6e\x00\x61\x00\x20\x01\x0f\x00\x61\x00\x6c\x01\x61\x00\x69\ +\x00\x65\x00\x20\x00\x70\x00\x72\x00\xed\x00\x6b\x00\x61\x00\x7a\ +\x00\x79\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x54\x6f\ +\x67\x67\x6c\x65\x73\x20\x74\x68\x65\x20\x43\x6f\x6e\x74\x69\x6e\ +\x75\x65\x20\x4d\x6f\x64\x65\x20\x66\x6f\x72\x20\x6e\x65\x78\x74\ +\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x2e\x07\x00\x00\x00\x18\x44\ +\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x74\x69\ +\x6e\x75\x65\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x9a\x00\x50\x00\ +\x72\x00\x65\x00\x70\x00\xed\x00\x6e\x00\x61\x00\x20\x00\x72\x00\ +\x65\x01\x7e\x00\x69\x00\x6d\x00\x20\x00\x7a\x00\x6f\x00\x62\x00\ +\x72\x00\x61\x00\x7a\x00\x65\x00\x6e\x00\x69\x00\x61\x00\x20\x00\ +\x76\x00\x79\x00\x62\x00\x72\x00\x61\x00\x74\x00\xfd\x00\x63\x00\ +\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x6f\x00\x76\x00\x20\x00\x6d\x00\x65\x00\x64\x00\x7a\x00\x69\x00\ +\x20\x00\x64\x00\x72\x00\xf4\x00\x74\x00\x6f\x00\x76\x00\xfd\x00\ +\x6d\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x6c\x00\x6f\x00\ +\x6d\x00\x20\x00\x61\x00\x20\x00\x70\x00\x6c\x00\x6f\x00\x63\x00\ +\x68\x00\x61\x00\x6d\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x46\x53\x77\x61\x70\x73\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x6d\ +\x6f\x64\x65\x20\x6f\x66\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\ +\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\x61\x6e\x64\x20\x66\x6c\ +\x61\x74\x6c\x69\x6e\x65\x73\x07\x00\x00\x00\x17\x44\x72\x61\x66\ +\x74\x5f\x54\x6f\x67\x67\x6c\x65\x44\x69\x73\x70\x6c\x61\x79\x4d\ +\x6f\x64\x65\x01\x03\x00\x00\x00\x30\x00\x50\x00\x72\x00\x65\x00\ +\x70\x00\x6e\x00\xfa\x01\x65\x00\x20\x00\x72\x00\x65\x01\x7e\x00\ +\x69\x00\x6d\x00\x20\x00\x7a\x00\x6f\x00\x62\x00\x72\x00\x61\x00\ +\x7a\x00\x65\x00\x6e\x00\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x13\x54\x6f\x67\x67\x6c\x65\x20\x64\x69\x73\x70\x6c\x61\ +\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x17\x44\x72\x61\x66\x74\ +\x5f\x54\x6f\x67\x67\x6c\x65\x44\x69\x73\x70\x6c\x61\x79\x4d\x6f\ +\x64\x65\x01\x03\x00\x00\x00\x16\x00\x54\x00\x6f\x00\x67\x00\x67\ +\x00\x6c\x00\x65\x00\x20\x00\x47\x00\x72\x00\x69\x00\x64\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0b\x54\x6f\x67\x67\x6c\x65\x20\x47\ +\x72\x69\x64\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x54\x6f\ +\x67\x67\x6c\x65\x47\x72\x69\x64\x01\x03\x00\x00\x00\x38\x00\x54\ +\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\ +\x00\x20\x00\x67\x00\x69\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x2f\ +\x00\x6f\x00\x66\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\ +\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\x65\x20\x44\x72\x61\x66\ +\x74\x20\x67\x69\x64\x20\x6f\x6e\x2f\x6f\x66\x66\x07\x00\x00\x00\ +\x10\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x47\x72\x69\ +\x64\x01\x03\x00\x00\x00\x16\x00\x54\x00\x6f\x00\x67\x00\x67\x00\ +\x6c\x00\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0b\x54\x6f\x67\x67\x6c\x65\x20\x73\x6e\ +\x61\x70\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\ +\x67\x6c\x65\x53\x6e\x61\x70\x01\x03\x00\x00\x00\x38\x00\x54\x00\ +\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x44\x00\ +\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x73\x00\x6e\x00\x61\x00\ +\x70\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\x72\x00\x20\x00\ +\x6f\x00\x66\x00\x66\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x54\ +\x6f\x67\x67\x6c\x65\x73\x20\x44\x72\x61\x66\x74\x20\x73\x6e\x61\ +\x70\x20\x6f\x6e\x20\x6f\x72\x20\x6f\x66\x66\x07\x00\x00\x00\x10\ +\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x53\x6e\x61\x70\ +\x01\x03\x00\x00\x00\x1e\x00\x4f\x00\x72\x00\x65\x00\x7a\x00\x61\ +\x01\x65\x00\x2f\x00\x52\x00\x6f\x00\x7a\x01\x61\x00\xed\x00\x72\ +\x00\x69\x01\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x54\x72\ +\x69\x6d\x65\x78\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x54\ +\x72\x69\x6d\x65\x78\x01\x03\x00\x00\x01\x34\x00\x4f\x00\x64\x00\ +\x72\x00\x65\x01\x7e\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x65\x00\ +\x62\x00\x6f\x00\x20\x00\x72\x00\x6f\x00\x7a\x01\x61\x00\x69\x00\ +\x72\x00\x75\x00\x6a\x00\x65\x00\x20\x00\x76\x00\x79\x00\x62\x00\ +\x72\x00\x61\x00\x6e\x00\xfd\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x20\x00\x61\x00\x6c\x00\x65\x00\x62\x00\ +\x6f\x00\x20\x00\x76\x00\x79\x00\x73\x00\x75\x00\x6e\x00\x69\x00\ +\x65\x00\x20\x00\x6a\x00\x65\x00\x64\x00\x6e\x00\x6f\x00\x74\x00\ +\x6c\x00\x69\x00\x76\x00\xe9\x00\x20\x00\x70\x00\x6c\x00\x6f\x00\ +\x63\x00\x68\x00\x79\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\ +\x4c\x00\x20\x00\x7a\x00\x61\x00\x63\x00\x68\x00\x79\x00\x74\x00\ +\x69\x01\x65\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\ +\x54\x00\x20\x00\x6f\x00\x62\x00\x6d\x00\x65\x00\x64\x00\x7a\x00\ +\x69\x01\x65\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x61\x00\x6b\x00\ +\x74\x00\x75\x00\xe1\x00\x6c\x00\x6e\x00\x79\x00\x20\x00\x61\x00\ +\x6c\x00\x65\x00\x62\x00\x6f\x00\x20\x00\x6e\x00\x61\x00\x20\x00\ +\x4e\x00\x6f\x00\x72\x00\x6d\x00\xe1\x00\x6c\x00\x6e\x00\x79\x00\ +\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x69\x00\x6e\x00\ +\x76\x00\x65\x00\x72\x00\x74\x00\x6f\x00\x76\x00\x61\x01\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x89\x54\x72\x69\x6d\x73\x20\x6f\ +\x72\x20\x65\x78\x74\x65\x6e\x64\x73\x20\x74\x68\x65\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x6f\ +\x72\x20\x65\x78\x74\x72\x75\x64\x65\x73\x20\x73\x69\x6e\x67\x6c\ +\x65\x20\x66\x61\x63\x65\x73\x2e\x20\x43\x54\x52\x4c\x20\x73\x6e\ +\x61\x70\x73\x2c\x20\x53\x48\x49\x46\x54\x20\x63\x6f\x6e\x73\x74\ +\x72\x61\x69\x6e\x73\x20\x74\x6f\x20\x63\x75\x72\x72\x65\x6e\x74\ +\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\x72\x20\x74\x6f\x20\x6e\ +\x6f\x72\x6d\x61\x6c\x2c\x20\x41\x4c\x54\x20\x69\x6e\x76\x65\x72\ +\x74\x73\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x54\x72\x69\ +\x6d\x65\x78\x01\x03\x00\x00\x00\x38\x00\x56\x00\x72\x00\xe1\x00\ +\x74\x00\x69\x01\x65\x00\x20\x00\x73\x00\x70\x00\xe4\x01\x65\x00\ +\x20\x00\x70\x00\x6f\x00\x73\x00\x6c\x00\x65\x00\x64\x00\x6e\x00\ +\xfd\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x55\x6e\x64\x6f\x20\ +\x6c\x61\x73\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\ +\x0e\x44\x72\x61\x66\x74\x5f\x55\x6e\x64\x6f\x4c\x69\x6e\x65\x01\ +\x03\x00\x00\x00\x60\x00\x56\x00\x72\x00\xe1\x00\x74\x00\x69\x01\ +\x65\x00\x20\x00\x73\x00\x70\x00\xe4\x01\x65\x00\x20\x00\x70\x00\ +\x6f\x00\x73\x00\x6c\x00\x65\x00\x64\x00\x6e\x00\xfd\x00\x20\x00\ +\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\ +\x72\x00\x6f\x00\x7a\x00\x70\x00\x72\x00\x61\x00\x63\x00\x6f\x00\ +\x76\x00\x61\x00\x6e\x00\x65\x00\x6a\x00\x20\x01\x0d\x00\x69\x00\ +\x61\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x55\ +\x6e\x64\x6f\x65\x73\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x64\ +\x72\x61\x77\x6e\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\x66\x20\ +\x74\x68\x65\x20\x6c\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\x20\x64\ +\x72\x61\x77\x6e\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x55\ +\x6e\x64\x6f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\xb8\x00\x53\x00\ +\x70\x00\x6f\x00\x6a\x00\xed\x00\x20\x00\x76\x00\x79\x00\x62\x00\ +\x72\x00\x61\x00\x74\x00\xe9\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x79\x00\x20\x00\x61\x00\x6c\x00\x65\x00\ +\x62\x00\x6f\x00\x20\x00\x6b\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\ +\x72\x00\x74\x00\x75\x00\x6a\x00\x65\x00\x20\x00\x75\x00\x7a\x00\ +\x61\x00\x76\x00\x72\x00\x65\x00\x74\x00\xe9\x00\x20\x00\x6f\x00\ +\x62\x00\x72\x00\x79\x00\x73\x00\x79\x00\x20\x00\x6e\x00\x61\x00\ +\x20\x00\x70\x00\x6c\x00\x6e\x00\xe9\x00\x20\x00\x70\x00\x6c\x00\ +\x6f\x00\x63\x00\x68\x00\x79\x00\x2c\x00\x20\x00\x61\x00\x6c\x00\ +\x65\x00\x62\x00\x6f\x00\x20\x00\x7a\x00\x6a\x00\x65\x00\x64\x00\ +\x6e\x00\x6f\x00\x74\x00\xed\x00\x20\x00\x70\x00\x6c\x00\x6f\x00\ +\x63\x00\x68\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x4a\ +\x6f\x69\x6e\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\x6f\ +\x6e\x65\x2c\x20\x6f\x72\x20\x63\x6f\x6e\x76\x65\x72\x74\x73\x20\ +\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x73\x20\x74\x6f\x20\ +\x66\x69\x6c\x6c\x65\x64\x20\x66\x61\x63\x65\x73\x2c\x20\x6f\x72\ +\x20\x75\x6e\x69\x74\x65\x20\x66\x61\x63\x65\x73\x07\x00\x00\x00\ +\x0d\x44\x72\x61\x66\x74\x5f\x55\x70\x67\x72\x61\x64\x65\x01\x03\ +\x00\x00\x00\x18\x00\x41\x00\x6b\x00\x74\x00\x75\x00\x61\x00\x6c\ +\x00\x69\x00\x7a\x00\xe1\x00\x63\x00\x69\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x07\x55\x70\x67\x72\x61\x64\x65\x07\x00\x00\ +\x00\x0d\x44\x72\x61\x66\x74\x5f\x55\x70\x67\x72\x61\x64\x65\x01\ +\x03\x00\x00\x00\x98\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\ +\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x6d\x00\x75\x00\x6c\x00\ +\x74\x00\x69\x00\x70\x00\x6c\x00\x65\x00\x2d\x00\x70\x00\x6f\x00\ +\x69\x00\x6e\x00\x74\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\ +\x74\x00\x57\x00\x69\x00\x72\x00\x65\x00\x20\x00\x28\x00\x44\x00\ +\x57\x00\x69\x00\x72\x00\x65\x00\x29\x00\x2e\x00\x20\x00\x43\x00\ +\x54\x00\x52\x00\x4c\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x73\x00\ +\x6e\x00\x61\x00\x70\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\ +\x46\x00\x54\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\ +\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4c\x43\x72\x65\x61\x74\x65\x73\x20\x61\ +\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\x70\x6f\x69\x6e\x74\x20\ +\x44\x72\x61\x66\x74\x57\x69\x72\x65\x20\x28\x44\x57\x69\x72\x65\ +\x29\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\ +\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\ +\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x57\x69\ +\x72\x65\x01\x03\x00\x00\x00\x0a\x00\x44\x00\x57\x00\x69\x00\x72\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x57\x69\x72\ +\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\ +\x01\x03\x00\x00\x00\x5e\x00\x4b\x00\x6f\x00\x6e\x00\x76\x00\x65\ +\x00\x72\x00\x74\x00\x75\x00\x6a\x00\x65\x00\x20\x00\x6d\x00\x65\ +\x00\x64\x00\x7a\x00\x69\x00\x20\x00\x64\x00\x72\x00\xf4\x00\x74\ +\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\x42\x00\x53\x00\x70\ +\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x28\x00\x64\x00\x72\ +\x00\xe1\x01\x7e\x00\x6b\x00\x6f\x00\x76\x00\x61\x00\x6e\x00\x69\ +\x00\x65\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x43\x6f\ +\x6e\x76\x65\x72\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x57\ +\x69\x72\x65\x20\x61\x6e\x64\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\ +\x00\x00\x00\x13\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x54\x6f\ +\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x30\x00\x44\x00\ +\x72\x00\xf4\x00\x74\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x42\x00\ +\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x28\x00\ +\x64\x00\x72\x00\xe1\x01\x7e\x00\x6b\x00\x75\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0f\x57\x69\x72\x65\x20\x74\x6f\x20\x42\ +\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x13\x44\x72\x61\x66\x74\ +\x5f\x57\x69\x72\x65\x54\x6f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\ +\x00\x00\x00\x0e\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x6d\x00\xf3\ +\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x41\x6c\x74\x20\ +\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x41\x00\x6c\x00\ +\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\x74\x00\xed\x00\x76\x00\ +\x6e\x00\x65\x00\x20\x00\x75\x00\x6d\x00\x69\x00\x65\x00\x73\x00\ +\x74\x00\x6e\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x53\x00\ +\x56\x00\x47\x00\x20\x00\x76\x00\x7a\x00\x6f\x00\x72\x00\x6f\x00\ +\x76\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x41\x6c\x74\x65\x72\ +\x6e\x61\x74\x65\x20\x53\x56\x47\x20\x50\x61\x74\x74\x65\x72\x6e\ +\x73\x20\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x16\x00\x41\x00\x6c\x00\x77\x00\x61\x00\x79\x00\x73\x00\x20\ +\x00\x73\x00\x68\x00\x6f\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0b\x41\x6c\x77\x61\x79\x73\x20\x73\x68\x6f\x77\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x76\x00\x56\x01\x7e\x00\x64\x00\x79\x00\x20\x00\ +\x70\x00\x72\x00\x69\x00\x63\x00\x68\x00\x79\x00\x74\x00\xe1\x00\ +\x76\x00\x61\x01\x65\x00\x20\x00\x6b\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x6f\x00\x6d\x00\x20\x00\x28\x00\ +\x7a\x00\x61\x00\x6b\x00\xe1\x00\x7a\x00\x61\x01\x65\x00\x20\x00\ +\x6b\x00\x6c\x00\xe1\x00\x76\x00\x65\x00\x73\x00\x75\x00\x20\x00\ +\x70\x00\x72\x00\x69\x00\x63\x00\x68\x00\x79\x00\x74\x00\xe1\x00\ +\x76\x00\x61\x00\x6e\x00\x69\x00\x61\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2d\x41\x6c\x77\x61\x79\x73\x20\x73\x6e\x61\x70\ +\x20\x74\x6f\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x28\x64\x69\x73\ +\x61\x62\x6c\x65\x20\x73\x6e\x61\x70\x20\x6d\x6f\x64\x20\x6b\x65\ +\x79\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x41\x00\x72\x00\x69\ +\x00\x61\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x72\ +\x69\x61\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x4f\x00\x70\x00\ +\x61\x01\x0d\x00\x6e\x00\xe1\x00\x20\x00\x6c\x00\x6f\x00\x6d\x00\ +\x6b\x00\x61\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x35\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x1c\x00\x4f\x00\x70\x00\x61\x01\x0d\x00\x6e\x00\xe1\ +\x00\x20\x00\x6c\x00\x6f\x00\x6d\x00\x6b\x00\x61\x00\x20\x00\x37\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\ +\x61\x73\x68\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x4f\x00\ +\x70\x00\x61\x01\x0d\x00\x6e\x00\xe1\x00\x20\x00\x6c\x00\x6f\x00\ +\x6d\x00\x6b\x00\x61\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x39\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x64\x00\x5a\x00\x61\x01\x0d\x00\x69\x00\x61\ +\x00\x72\x00\x6b\x00\x6e\x00\x69\x00\x74\x00\x65\x00\x2c\x00\x20\ +\x00\x61\x00\x6b\x00\x20\x00\x63\x00\x68\x00\x63\x00\x65\x00\x74\ +\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\ +\x00\x6f\x00\x76\x00\x61\x01\x65\x00\x20\x00\x61\x00\x6a\x00\x20\ +\x00\x6f\x00\x62\x00\x6c\x00\x61\x00\x73\x00\x74\x00\x69\x00\x20\ +\x00\x28\x00\x33\x00\x44\x00\x29\x00\x2e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x3f\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\ +\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x68\x65\x20\x61\ +\x72\x65\x61\x73\x20\x28\x33\x44\x20\x66\x61\x63\x65\x73\x29\x20\ +\x74\x6f\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\ +\x6f\x6f\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa0\x00\x5a\x00\x61\x01\ +\x0d\x00\x69\x00\x61\x00\x72\x00\x6b\x00\x6e\x00\x69\x00\x74\x00\ +\x65\x00\x2c\x00\x20\x00\x61\x00\x6b\x00\x20\x00\x63\x00\x68\x00\ +\x63\x00\x65\x00\x74\x00\x65\x00\x20\x00\x61\x00\x62\x00\x79\x00\ +\x20\x00\x62\x00\x6f\x00\x6c\x00\x69\x00\x20\x00\x69\x00\x6d\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x00\x6f\x00\x76\x00\x61\x00\x6e\x00\ +\xe9\x00\x20\x00\x61\x00\x6a\x00\x20\x00\x6e\x00\x65\x00\x70\x00\ +\x6f\x00\x6d\x00\x65\x00\x6e\x00\x6f\x00\x76\x00\x61\x00\x6e\x00\ +\xe9\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x6b\x00\x79\x00\x20\x00\ +\x28\x00\x7a\x00\x61\x01\x0d\x00\xed\x00\x6e\x00\x61\x00\x6a\x00\ +\xfa\x00\x63\x00\x65\x00\x20\x00\x2a\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x53\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\ +\x69\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x68\x65\x20\ +\x6e\x6f\x6e\x2d\x6e\x61\x6d\x65\x64\x20\x62\x6c\x6f\x63\x6b\x73\ +\x20\x28\x62\x65\x67\x69\x6e\x6e\x69\x6e\x67\x20\x77\x69\x74\x68\ +\x20\x61\x20\x2a\x29\x20\x74\x6f\x20\x62\x65\x20\x69\x6d\x70\x6f\ +\x72\x74\x65\x64\x20\x74\x6f\x6f\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\ +\x00\x4b\x00\x72\x00\x75\x00\x68\x00\x20\x00\x35\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x35\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0c\x00\x4b\x00\x72\x00\x75\x00\x68\x00\x20\ +\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x69\x72\x63\ +\x6c\x65\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x4b\x00\x72\ +\x00\x75\x00\x68\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x39\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x38\x00\x46\x00\x61\x00\x72\x00\x62\x00\x79\x00\x20\x00\x70\ +\x00\x72\x00\x69\x00\x72\x00\x61\x00\x64\x00\x65\x00\x6e\x00\xe9\ +\x00\x20\x00\x6b\x00\x20\x01\x61\x00\xed\x00\x72\x00\x6b\x00\x65\ +\x01\x0c\x00\x69\x00\x61\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x19\x43\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x65\x64\ +\x20\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x2c\x00\x53\x00\xfa\x00\x62\x00\x6f\x00\x72\x00\ +\x20\x00\x6d\x00\x61\x00\x70\x00\x6f\x00\x76\x00\x61\x00\x6e\x00\ +\x69\x00\x61\x00\x20\x00\x66\x00\x61\x00\x72\x00\x69\x00\x65\x00\ +\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x43\x6f\x6c\x6f\x72\ +\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x1c\x00\x56\x00\x79\x00\x6e\x00\x75\x00\x63\x00\ +\x6f\x00\x76\x00\x61\x00\x63\x00\xed\x00\x20\x00\x6d\x00\xf3\x00\ +\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x73\x74\ +\x72\x61\x69\x6e\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\ +\x00\x4b\x00\x6f\x00\x6e\x01\x61\x00\x74\x00\x72\x00\x75\x00\x6b\ +\x00\x63\x00\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x22\x00\x46\x00\x61\x00\x72\x00\x62\x00\x61\x00\x20\ +\x00\x6b\x00\x6f\x00\x6e\x01\x61\x00\x74\x00\x72\x00\x75\x00\x6b\ +\x00\x63\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\ +\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x63\x6f\x6c\ +\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\x00\x4e\x00\xe1\x00\x7a\ +\x00\x6f\x00\x76\x00\x20\x00\x4b\x00\x6f\x00\x6e\x01\x61\x00\x74\ +\x00\x72\x00\x75\x00\x6b\x01\x0d\x00\x6e\x00\x65\x00\x6a\x00\x20\ +\x00\x73\x00\x6b\x00\x75\x00\x70\x00\x69\x00\x6e\x00\x79\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x17\x43\x6f\x6e\x73\x74\x72\x75\x63\ +\x74\x69\x6f\x6e\x20\x67\x72\x6f\x75\x70\x20\x6e\x61\x6d\x65\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x1e\x00\x43\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\x00\x63\x00\ +\x68\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x43\ +\x72\x65\x61\x74\x65\x20\x53\x6b\x65\x74\x63\x68\x65\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x38\x00\x56\x00\x79\x00\x74\x00\x76\x00\x6f\ +\x00\x72\x00\xed\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\ +\x00\x65\x00\x74\x00\x72\x00\x69\x00\x63\x00\x6b\x00\xe9\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x79\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x19\x43\x72\x65\x61\x74\x65\x20\x70\ +\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x4e\x00\x61\x00\x73\x00\ +\x74\x00\x61\x00\x76\x00\x65\x00\x6e\x00\x69\x00\x61\x00\x20\x00\ +\x66\x00\x6f\x00\x72\x00\x6d\x00\xe1\x00\x74\x00\x75\x00\x20\x00\ +\x44\x00\x58\x00\x46\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x44\ +\x58\x46\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\x6f\x6e\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x50\x00\x72\x00\x65\x00\ +\x64\x00\x76\x00\x6f\x00\x6c\x00\x65\x00\x6e\x00\xe1\x00\x20\x00\ +\x66\x00\x61\x00\x72\x00\x62\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x48\x00\x50\x00\x72\x00\x65\x00\x64\ +\x00\x76\x00\x6f\x00\x6c\x00\x65\x00\x6e\x00\xe1\x00\x20\x00\x76\ +\x00\xfd\x01\x61\x00\x6b\x00\x61\x00\x20\x00\x70\x00\x72\x00\x65\ +\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x79\x00\x20\x00\x61\ +\x00\x20\x00\x72\x00\x6f\x00\x7a\x00\x6d\x00\x65\x00\x72\x00\x79\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x44\x65\x66\x61\x75\x6c\ +\x74\x20\x68\x65\x69\x67\x68\x74\x20\x66\x6f\x72\x20\x74\x65\x78\ +\x74\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x50\x00\x72\x00\x65\x00\ +\x64\x00\x76\x00\x6f\x00\x6c\x00\x65\x00\x6e\x00\xe1\x00\x20\x00\ +\x68\x00\x72\x00\xfa\x00\x62\x00\x6b\x00\x61\x00\x20\x01\x0d\x00\ +\x69\x00\x61\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x11\x44\x65\x66\x61\x75\x6c\x74\x20\x6c\x69\x6e\x65\x77\x69\x64\ +\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x50\x00\x72\x00\x65\ +\x00\x64\x00\x76\x00\x6f\x00\x6c\x00\x65\x00\x6e\x00\xe1\x00\x20\ +\x01\x61\x00\x61\x00\x62\x00\x6c\x00\xf3\x00\x6e\x00\x61\x00\x20\ +\x00\x6c\x00\x69\x00\x73\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x16\x44\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x6d\x70\ +\x6c\x61\x74\x65\x20\x73\x68\x65\x65\x74\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x2a\x00\x50\x00\x72\x00\x65\x00\x64\x00\x76\x00\x6f\x00\x6c\ +\x00\x65\x00\x6e\x00\xfd\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\ +\x00\x20\x00\x70\x00\xed\x00\x73\x00\x6d\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x11\x44\x65\x66\x61\x75\x6c\x74\x20\x74\x65\ +\x78\x74\x20\x66\x6f\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\ +\x50\x00\x72\x00\x65\x00\x64\x00\x76\x00\x6f\x00\x6c\x00\x65\x00\ +\x6e\x00\xe1\x00\x20\x00\x76\x00\xfd\x01\x61\x00\x6b\x00\x61\x00\ +\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x75\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x13\x44\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x78\ +\x74\x20\x68\x65\x69\x67\x68\x74\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\ +\x00\x50\x00\x72\x00\x65\x00\x64\x00\x76\x00\x6f\x00\x6c\x00\x65\ +\x00\x6e\x00\xe1\x00\x20\x00\x70\x00\x72\x00\x61\x00\x63\x00\x6f\ +\x00\x76\x00\x6e\x00\xe1\x00\x20\x00\x72\x00\x6f\x00\x76\x00\x69\ +\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x44\x65\ +\x66\x61\x75\x6c\x74\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\x6c\ +\x61\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\x00\x52\x00\x6f\x00\ +\x7a\x00\x6d\x00\x65\x00\x72\x00\x79\x00\x20\x00\x26\x00\x20\x01\ +\x61\x00\x74\x00\xfd\x00\x6c\x00\x20\x00\x68\x00\x72\x00\x6f\x00\ +\x74\x00\x75\x00\x20\x01\x61\x00\xed\x00\x70\x00\x6b\x00\x79\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x44\x69\x6d\x65\x6e\x73\x69\ +\x6f\x6e\x73\x20\x26\x20\x4c\x65\x61\x64\x65\x72\x20\x61\x72\x72\ +\x6f\x77\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\ +\x00\x53\x00\x74\x00\x75\x00\x70\x00\x65\x01\x48\x00\x20\x00\x70\ +\x00\x72\x00\x65\x00\x63\x00\xed\x00\x7a\x00\x6e\x00\x6f\x00\x73\ +\x00\x74\x00\x69\x00\x20\x00\x72\x00\x6f\x00\x7a\x00\x6d\x00\x65\ +\x00\x72\x00\x6f\x00\x76\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\ +\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x70\x72\x65\x63\x69\ +\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0a\x00\x42\x00\x6f\x00\x64\x00\x20\x00\x35\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\x35\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0a\x00\x42\x00\x6f\x00\x64\x00\x20\x00\x37\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\x37\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0a\x00\x42\x00\x6f\x00\x64\x00\x20\x00\x39\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\x39\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x2c\x00\x52\x00\x65\x01\x7e\x00\x69\x00\x6d\x00\ +\x20\x00\x72\x00\x6f\x00\x7a\x00\x68\x00\x72\x00\x61\x00\x6e\x00\ +\x69\x00\x61\x00\x20\x00\x4e\x00\xe1\x00\x76\x00\x72\x00\x68\x00\ +\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x44\x72\x61\x66\x74\ +\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x6d\x6f\x64\x65\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x66\x00\x45\x00\x78\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x75\x00\x6a\x00\x65\x00\x20\x00\x33\x00\x44\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x79\x00\ +\x20\x00\x61\x00\x6b\x00\x6f\x00\x20\x00\x6d\x00\x72\x00\x69\x00\ +\x65\x01\x7e\x00\x6b\x00\x79\x00\x20\x00\x6a\x00\x65\x00\x64\x00\ +\x6e\x00\x6f\x00\x74\x00\x6c\x00\x69\x00\x76\x00\xfd\x00\x63\x00\ +\x68\x00\x20\x00\x70\x00\x6c\x00\xf4\x00\x63\x00\x68\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x24\x45\x78\x70\x6f\x72\x74\x20\x33\x44\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x73\x20\x70\x6f\x6c\x79\ +\x66\x61\x63\x65\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x18\x00\x45\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x20\x00\x53\x00\x74\x00\x79\x00\x6c\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0c\x45\x78\x70\x6f\x72\x74\x20\x53\x74\x79\x6c\ +\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x00\x56\x00\xfd\x00\x70\x00\ +\x6c\x01\x48\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x6f\x00\x76\x00\x20\x00\x70\x00\x6f\x00\x64\x01\x3e\x00\ +\x61\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\x00\x76\x00\x6f\x01\ +\x3e\x00\x62\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x46\ +\x69\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x79\x20\x64\ +\x65\x66\x61\x75\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\x00\x56\ +\x01\x61\x00\x65\x00\x6f\x00\x62\x00\x65\x00\x63\x00\x6e\x00\xe9\ +\x00\x20\x00\x6e\x00\x61\x00\x73\x00\x74\x00\x61\x00\x76\x00\x65\ +\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x6e\x00\xe1\x00\x76\x00\x72\ +\x00\x68\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x47\x65\ +\x6e\x65\x72\x61\x6c\x20\x44\x72\x61\x66\x74\x20\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x5a\x00\xe1\ +\x00\x6b\x00\x6c\x00\x61\x00\x64\x00\x6e\x00\xe9\x00\x20\x00\x6e\ +\x00\x61\x00\x73\x00\x74\x00\x61\x00\x76\x00\x65\x00\x6e\x00\x69\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\ +\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x32\x00\x56\x01\x61\x00\x65\x00\x6f\x00\x62\x00\x65\ +\x00\x63\x00\x6e\x00\xfd\x00\x20\x00\x6d\x00\xf3\x00\x64\x00\x20\ +\x00\x6b\x00\x6f\x00\x70\x00\xed\x00\x72\x00\x6f\x00\x76\x00\x61\ +\x00\x6e\x00\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x47\x6c\x6f\x62\x61\x6c\x20\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x20\x00\x52\x00\x6f\x00\x7a\x00\x6f\ +\x00\x73\x00\x74\x00\x75\x00\x70\x00\x20\x00\x6d\x00\x72\x00\x69\ +\x00\x65\x01\x7e\x00\x6b\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0c\x47\x72\x69\x64\x20\x73\x70\x61\x63\x69\x6e\x67\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x36\x00\x5a\x00\x6f\x00\x73\x00\x6b\x00\x75\ +\x00\x70\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x20\x00\xfa\x00\x72\ +\x00\x6f\x00\x76\x00\x6e\x00\xed\x00\x20\x00\x64\x00\x6f\x00\x20\ +\x00\x62\x00\x6c\x00\x6f\x00\x6b\x00\x6f\x00\x76\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x18\x47\x72\x6f\x75\x70\x20\x6c\x61\x79\x65\ +\x72\x73\x20\x69\x6e\x74\x6f\x20\x62\x6c\x6f\x63\x6b\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x01\x1a\x00\x54\x00\x75\x00\x20\x00\x6d\x00\xf4\ +\x01\x7e\x00\x65\x00\x74\x00\x65\x00\x20\x00\x75\x00\x72\x01\x0d\ +\x00\x69\x01\x65\x00\x20\x00\x61\x00\x64\x00\x72\x00\x65\x00\x73\ +\x00\xe1\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x73\x00\x61\x00\x68\ +\x00\x75\x00\x6a\x00\xfa\x00\x63\x00\x69\x00\x20\x00\x53\x00\x56\ +\x00\x47\x00\x20\x00\x73\x00\xfa\x00\x62\x00\x6f\x00\x72\x00\x79\ +\x00\x20\x00\x6f\x00\x62\x00\x73\x00\x61\x00\x68\x00\x75\x00\x6a\ +\x00\xfa\x00\x63\x00\x65\x00\x20\x00\x64\x00\x65\x00\x66\x00\x69\ +\x00\x6e\x00\xed\x00\x63\x00\x69\x00\x65\x00\x20\x00\x3c\x01\x61\ +\x00\x61\x00\x62\x00\x6c\x00\xf3\x00\x6e\x00\x61\x00\x3e\x00\x2c\ +\x00\x20\x00\x6b\x00\x74\x00\x6f\x00\x72\x00\xe9\x00\x20\x00\x6d\ +\x00\xf4\x01\x7e\x00\x75\x00\x20\x00\x62\x00\x79\x01\x65\x00\x20\ +\x00\x70\x00\x72\x00\x69\x00\x64\x00\x61\x00\x6e\x00\xe9\x00\x20\ +\x00\x6d\x00\x65\x00\x64\x00\x7a\x00\x69\x00\x20\x01\x61\x00\x74\ +\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x6e\x00\xe9\ +\x00\x20\x01\x61\x00\x72\x00\x61\x00\x66\x00\x6f\x00\x76\x00\x61\ +\x00\x63\x00\x69\x00\x65\x00\x20\x00\x76\x00\x7a\x00\x6f\x00\x72\ +\x00\x79\x00\x20\x00\x4e\x00\xe1\x00\x76\x00\x72\x00\x68\x00\x75\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x8d\x48\x65\x72\x65\x20\x79\ +\x6f\x75\x20\x63\x61\x6e\x20\x73\x70\x65\x63\x69\x66\x79\x20\x61\ +\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x63\x6f\x6e\x74\x61\ +\x69\x6e\x69\x6e\x67\x20\x53\x56\x47\x20\x66\x69\x6c\x65\x73\x20\ +\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x3c\x70\x61\x74\x74\ +\x65\x72\x6e\x3e\x20\x64\x65\x66\x69\x6e\x69\x74\x69\x6f\x6e\x73\ +\x20\x74\x68\x61\x74\x20\x63\x61\x6e\x20\x62\x65\x20\x61\x64\x64\ +\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x20\x73\x74\x61\x6e\x64\x61\ +\x72\x64\x20\x44\x72\x61\x66\x74\x20\x68\x61\x74\x63\x68\x20\x70\ +\x61\x74\x74\x65\x72\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\ +\x48\x00\x69\x00\x64\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\ +\x66\x00\x74\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\ +\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x00\x20\x00\ +\x61\x00\x66\x00\x74\x00\x65\x00\x72\x00\x20\x00\x75\x00\x73\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x48\x69\x64\x65\x20\ +\x44\x72\x61\x66\x74\x20\x73\x6e\x61\x70\x20\x74\x6f\x6f\x6c\x62\ +\x61\x72\x20\x61\x66\x74\x65\x72\x20\x75\x73\x65\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x28\x00\x48\x00\x69\x00\x64\x00\x65\x00\x20\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x77\x00\x6f\x00\x72\ +\x00\x6b\x00\x62\x00\x65\x00\x6e\x00\x63\x00\x68\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x14\x48\x69\x64\x65\x20\x44\x72\x61\x66\x74\ +\x20\x77\x6f\x72\x6b\x62\x65\x6e\x63\x68\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x5e\x00\x41\x00\x6b\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x7a\ +\x00\x61\x01\x0d\x00\x69\x00\x61\x00\x72\x00\x6b\x00\x6e\x00\x75\ +\x00\x74\x00\xe9\x00\x2c\x00\x20\x00\x70\x00\x72\x00\x69\x00\x20\ +\x00\x6b\x00\x72\x00\x65\x00\x73\x00\x6c\x00\x65\x00\x6e\x00\xed\ +\x00\x20\x00\x70\x00\x6f\x00\x75\x01\x7e\x00\x69\x00\x6a\x00\x65\ +\x00\x20\x00\x6d\x00\x72\x00\x69\x00\x65\x01\x7e\x00\x6b\x00\x75\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\x66\x20\x63\x68\x65\ +\x63\x6b\x65\x64\x2c\x20\x61\x20\x67\x72\x69\x64\x20\x77\x69\x6c\ +\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x77\x68\x65\x6e\x20\x64\x72\ +\x61\x77\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xc8\x00\x41\x00\ +\x6b\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x7a\x00\x61\x01\x0d\x00\ +\x69\x00\x61\x00\x72\x00\x6b\x00\x6e\x00\x69\x00\x74\x00\xe9\x00\ +\x2c\x00\x20\x00\x66\x00\x72\x00\x65\x00\x65\x00\x63\x00\x61\x00\ +\x64\x00\x20\x00\x73\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x6b\x00\ +\xfa\x00\x73\x00\x69\x00\x20\x00\x73\x00\x70\x00\x6f\x00\x6a\x00\ +\x69\x01\x65\x00\x20\x00\x7a\x00\x68\x00\x6f\x00\x64\x00\x6e\x00\ +\xe9\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x79\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x64\x00\x72\x00\xf4\x00\ +\x74\x00\x6f\x00\x76\x00\x2e\x00\x20\x00\x50\x00\x6f\x00\x7a\x00\ +\x6f\x00\x72\x00\x2c\x00\x20\x00\x6d\x00\xf4\x01\x7e\x00\x65\x00\ +\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x68\x00\x76\x00\xed\x01\ +\x3e\x00\x75\x00\x20\x00\x74\x00\x72\x00\x76\x00\x61\x01\x65\x00\ +\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x65\x49\ +\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x66\x72\x65\x65\x63\ +\x61\x64\x20\x77\x69\x6c\x6c\x20\x74\x72\x79\x20\x74\x6f\x20\x6a\ +\x6f\x69\x6e\x74\x20\x63\x6f\x69\x6e\x63\x69\x64\x65\x6e\x74\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\x77\x69\x72\ +\x65\x73\x2e\x20\x42\x65\x77\x61\x72\x65\x2c\x20\x74\x68\x69\x73\ +\x20\x63\x61\x6e\x20\x74\x61\x6b\x65\x20\x61\x20\x77\x68\x69\x6c\ +\x65\x2e\x2e\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xf2\x00\x49\x00\x66\ +\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\ +\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\x00\x72\ +\x00\x61\x00\x66\x00\x74\x00\x20\x00\x67\x00\x72\x00\x69\x00\x64\ +\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\x6c\ +\x00\x77\x00\x61\x00\x79\x00\x73\x00\x20\x00\x62\x00\x65\x00\x20\ +\x00\x76\x00\x69\x00\x73\x00\x69\x00\x62\x00\x6c\x00\x65\x00\x20\ +\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x77\ +\x00\x6f\x00\x72\x00\x6b\x00\x62\x00\x65\x00\x6e\x00\x63\x00\x68\ +\x00\x20\x00\x69\x00\x73\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\ +\x00\x76\x00\x65\x00\x2e\x00\x20\x00\x4f\x00\x74\x00\x68\x00\x65\ +\x00\x72\x00\x77\x00\x69\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x6e\ +\x00\x6c\x00\x79\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\ +\x00\x75\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x79\x49\x66\x20\x63\x68\x65\x63\x6b\ +\x65\x64\x2c\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x67\x72\ +\x69\x64\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x62\ +\x65\x20\x76\x69\x73\x69\x62\x6c\x65\x20\x77\x68\x65\x6e\x20\x74\ +\x68\x65\x20\x44\x72\x61\x66\x74\x20\x77\x6f\x72\x6b\x62\x65\x6e\ +\x63\x68\x20\x69\x73\x20\x61\x63\x74\x69\x76\x65\x2e\x20\x4f\x74\ +\x68\x65\x72\x77\x69\x73\x65\x20\x6f\x6e\x6c\x79\x20\x77\x68\x65\ +\x6e\x20\x75\x73\x69\x6e\x67\x20\x61\x20\x63\x6f\x6d\x6d\x61\x6e\ +\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x88\x00\x49\x00\x66\x00\x20\x00\ +\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x53\x00\x6e\x00\x61\x00\ +\x70\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\ +\x72\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\ +\x65\x00\x20\x00\x73\x00\x68\x00\x6f\x00\x77\x00\x6e\x00\x20\x00\ +\x77\x00\x68\x00\x65\x00\x6e\x00\x65\x00\x76\x00\x65\x00\x72\x00\ +\x20\x00\x79\x00\x6f\x00\x75\x00\x20\x00\x75\x00\x73\x00\x65\x00\ +\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\ +\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x44\x49\x66\x20\x63\x68\ +\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x53\x6e\x61\x70\x20\ +\x74\x6f\x6f\x6c\x62\x61\x72\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\ +\x73\x68\x6f\x77\x6e\x20\x77\x68\x65\x6e\x65\x76\x65\x72\x20\x79\ +\x6f\x75\x20\x75\x73\x65\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x70\x00\x41\x00\x6b\x00\x20\x00\x6a\x00\ +\x65\x00\x20\x00\x7a\x00\x61\x01\x0d\x00\x69\x00\x61\x00\x72\x00\ +\x6b\x00\x6e\x00\x75\x00\x74\x00\xe9\x00\x2c\x00\x20\x00\x76\x01\ +\x61\x00\x65\x00\x74\x00\x6b\x00\x79\x00\x20\x00\x70\x00\x6c\x00\ +\x6f\x00\x63\x00\x68\x00\x79\x00\x20\x00\x65\x00\x78\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x00\x75\x00\x6a\x00\x65\x00\x20\x00\x64\x00\ +\x6f\x00\x20\x00\x33\x00\x44\x00\x20\x00\x6d\x00\x72\x00\x69\x00\ +\x65\x01\x7e\x00\x6b\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x51\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x66\x61\x63\x65\ +\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x65\x78\x70\x6f\x72\x74\ +\x65\x64\x20\x61\x73\x20\x33\x64\x20\x70\x6f\x6c\x79\x66\x61\x63\ +\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\xce\x00\x41\x00\x6b\x00\x20\ +\x00\x6a\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x74\x00\x6f\x00\x20\ +\x00\x7a\x00\x61\x01\x0d\x00\x69\x00\x61\x00\x72\x00\x6b\x00\x6e\ +\x00\x75\x00\x74\x00\xe9\x00\x2c\x00\x20\x00\x62\x00\x75\x00\x64\ +\x00\x65\x00\x20\x00\x75\x00\x63\x00\x68\x00\x6f\x00\x76\x00\x61\ +\x00\x6e\x00\xfd\x00\x20\x00\x72\x00\x65\x01\x7e\x00\x69\x00\x6d\ +\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\xed\x00\x72\x00\x6f\x00\x76\ +\x00\x61\x00\x6e\x00\x69\x00\x61\x00\x2c\x00\x20\x00\x69\x00\x6e\ +\x00\x61\x00\x6b\x00\x20\x00\x62\x00\x75\x00\x64\x00\xfa\x00\x20\ +\x00\x70\x00\x72\x00\xed\x00\x6b\x00\x61\x00\x7a\x00\x79\x00\x20\ +\x00\x73\x00\x70\x00\xfa\x01\x61\x01\x65\x00\x61\x00\x6e\x00\xe9\ +\x00\x20\x00\x76\x00\x20\x00\x6d\x00\xf3\x00\x64\x00\x65\x00\x20\ +\x00\x6e\x00\x65\x00\x2d\x00\x6b\x00\x6f\x00\x70\x00\xed\x00\x72\ +\x00\x6f\x00\x76\x00\x61\x01\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x6f\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\ +\x63\x6b\x65\x64\x2c\x20\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x20\ +\x77\x69\x6c\x6c\x20\x62\x65\x20\x6b\x65\x70\x74\x20\x61\x63\x72\ +\x6f\x73\x73\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x2c\x20\x6f\x74\x68\ +\x65\x72\x77\x69\x73\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x20\ +\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x73\x74\x61\x72\ +\x74\x20\x69\x6e\x20\x6e\x6f\x2d\x63\x6f\x70\x79\x20\x6d\x6f\x64\ +\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x7e\x00\x49\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x68\x00\x61\x00\x74\x00\x63\x00\x68\x00\x65\x00\x73\x00\ +\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\ +\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\ +\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\ +\x73\x00\x69\x00\x6d\x00\x70\x00\x6c\x00\x65\x00\x20\x00\x77\x00\ +\x69\x00\x72\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x3f\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x68\x61\x74\x63\x68\x65\x73\x20\x77\x69\x6c\ +\x6c\x20\x62\x65\x20\x63\x6f\x6e\x76\x65\x72\x74\x65\x64\x20\x69\ +\x6e\x74\x6f\x20\x73\x69\x6d\x70\x6c\x65\x20\x77\x69\x72\x65\x73\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\xf6\x00\x49\x00\x66\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\ +\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\ +\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x64\ +\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x73\x00\x20\x00\x77\ +\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x67\x00\x65\x00\x74\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\ +\x00\x64\x00\x61\x00\x72\x00\x64\x00\x20\x00\x44\x00\x72\x00\x61\ +\x00\x66\x00\x74\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\ +\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x2c\x00\x20\x00\x69\x00\x6e\ +\x00\x73\x00\x74\x00\x65\x00\x61\x00\x64\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x69\x00\x7a\ +\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x79\x00\x20\x00\x68\ +\x00\x61\x00\x76\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x44\x00\x58\x00\x46\x00\x20\x00\x64\ +\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x7b\x49\x66\x20\x74\x68\x69\x73\x20\ +\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x69\x6d\x70\x6f\ +\x72\x74\x65\x64\x20\x74\x65\x78\x74\x73\x20\x77\x69\x6c\x6c\x20\ +\x67\x65\x74\x20\x74\x68\x65\x20\x73\x74\x61\x6e\x64\x61\x72\x64\ +\x20\x44\x72\x61\x66\x74\x20\x74\x65\x78\x74\x20\x73\x69\x7a\x65\ +\x2c\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x74\x68\x65\ +\x20\x73\x69\x7a\x65\x20\x74\x68\x65\x79\x20\x68\x61\x76\x65\x20\ +\x69\x6e\x20\x74\x68\x65\x20\x44\x58\x46\x20\x64\x6f\x63\x75\x6d\ +\x65\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xda\x00\x41\x00\x6b\x00\ +\x20\x00\x6a\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x74\x00\x6f\x00\ +\x20\x00\x7a\x00\x61\x01\x0d\x00\x69\x00\x61\x00\x72\x00\x6b\x00\ +\x6e\x00\x75\x00\x74\x00\xe9\x00\x2c\x00\x70\x00\x72\x00\x65\x00\ +\x64\x00\x76\x00\x6f\x00\x6c\x00\x65\x00\x6e\x00\x6f\x00\x75\x00\ +\x20\x00\x66\x00\x61\x00\x72\x00\x62\x00\x6f\x00\x75\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x6f\x00\x76\x00\ +\x20\x00\x62\x00\x75\x00\x64\x00\x65\x00\x20\x00\x73\x00\x69\x00\ +\x76\x00\xe1\x00\x2e\x00\x20\x00\x56\x00\x20\x00\x6f\x00\x70\x00\ +\x61\x01\x0d\x00\x6e\x00\x6f\x00\x6d\x00\x20\x00\x70\x00\x72\x00\ +\xed\x00\x70\x00\x61\x00\x64\x00\x65\x00\x20\x00\x73\x00\x61\x00\ +\x20\x00\x7a\x00\x6f\x00\x62\x00\x72\x00\x61\x00\x7a\x00\x69\x00\ +\x61\x00\x20\x00\x61\x00\x6b\x00\x6f\x00\x20\x00\x64\x00\x72\x00\ +\xf4\x00\x74\x00\x6f\x00\x76\x00\xfd\x00\x20\x00\x6d\x00\x6f\x00\ +\x64\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x66\x49\ +\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\ +\x64\x2c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\ +\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x66\x69\x6c\x6c\x65\x64\ +\x20\x61\x73\x20\x64\x65\x66\x61\x75\x6c\x74\x2e\x20\x4f\x74\x68\ +\x65\x72\x77\x69\x73\x65\x2c\x20\x74\x68\x65\x79\x20\x77\x69\x6c\ +\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x77\x69\x72\x65\ +\x66\x72\x61\x6d\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xd0\x00\x49\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\ +\x64\x00\x2c\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\ +\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x6f\x00\x63\x00\x63\x00\ +\x75\x00\x72\x00\x20\x00\x61\x00\x67\x00\x61\x00\x69\x00\x6e\x00\ +\x73\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x73\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\ +\x6d\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x74\x00\x68\x00\x61\x00\ +\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x69\x00\x6e\x00\ +\x64\x00\x69\x00\x63\x00\x61\x00\x74\x00\x65\x00\x64\x00\x20\x00\ +\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x65\x00\x64\x00\x67\x00\x65\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x68\x49\x66\x20\x74\x68\x69\x73\x20\x69\ +\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x73\x6e\x61\x70\x70\ +\x69\x6e\x67\x20\x77\x69\x6c\x6c\x20\x6e\x6f\x74\x20\x6f\x63\x63\ +\x75\x72\x20\x61\x67\x61\x69\x6e\x73\x74\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x77\x69\x74\x68\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\ +\x6e\x20\x74\x68\x65\x20\x69\x6e\x64\x69\x63\x61\x74\x65\x64\x20\ +\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x65\x64\x67\x65\x73\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\xf2\x00\x49\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\ +\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\ +\x74\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x62\x00\x65\x00\ +\x6e\x00\x63\x00\x68\x00\x20\x00\x77\x00\x6f\x00\x6e\x00\x27\x00\ +\x74\x00\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\ +\x2e\x00\x20\x00\x55\x00\x73\x00\x65\x00\x66\x00\x75\x00\x6c\x00\ +\x20\x00\x73\x00\x69\x00\x6e\x00\x63\x00\x65\x00\x20\x00\x61\x00\ +\x6c\x00\x6c\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\ +\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x00\x20\x00\x61\x00\x72\x00\ +\x65\x00\x20\x00\x61\x00\x6c\x00\x73\x00\x6f\x00\x20\x00\x69\x00\ +\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x41\x00\x72\x00\ +\x63\x00\x68\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x62\x00\ +\x65\x00\x6e\x00\x63\x00\x68\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x79\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\ +\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\ +\x20\x77\x6f\x72\x6b\x62\x65\x6e\x63\x68\x20\x77\x6f\x6e\x27\x74\ +\x20\x61\x70\x70\x65\x61\x72\x2e\x20\x55\x73\x65\x66\x75\x6c\x20\ +\x73\x69\x6e\x63\x65\x20\x61\x6c\x6c\x20\x6f\x66\x20\x74\x68\x65\ +\x20\x44\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x20\x61\x72\x65\ +\x20\x61\x6c\x73\x6f\x20\x69\x6e\x20\x74\x68\x65\x20\x41\x72\x63\ +\x68\x20\x77\x6f\x72\x6b\x62\x65\x6e\x63\x68\x2e\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\xea\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\ +\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\ +\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x77\x00\x68\ +\x00\x65\x00\x6e\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x6c\ +\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x68\x00\x61\x00\x76\ +\x00\x65\x00\x20\x00\x61\x00\x20\x00\x77\x00\x69\x00\x64\x00\x74\ +\x00\x68\x00\x20\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x65\ +\x00\x64\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x79\x00\x20\ +\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\ +\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x65\x00\x64\ +\x00\x20\x00\x61\x00\x73\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\ +\x00\x65\x00\x64\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x73\ +\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x74\x00\x68\ +\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x72\x00\x72\x00\x65\x00\x63\ +\x00\x74\x00\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x75\x49\x66\x20\x74\x68\x69\x73\x20\ +\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x77\x68\x65\x6e\ +\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x73\x20\x68\x61\x76\x65\x20\ +\x61\x20\x77\x69\x64\x74\x68\x20\x64\x65\x66\x69\x6e\x65\x64\x2c\ +\x20\x74\x68\x65\x79\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x72\x65\ +\x6e\x64\x65\x72\x65\x64\x20\x61\x73\x20\x63\x6c\x6f\x73\x65\x64\ +\x20\x77\x69\x72\x65\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\ +\x63\x6f\x72\x72\x65\x63\x74\x20\x77\x69\x64\x74\x68\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x01\x18\x00\x41\x00\x6b\x00\x20\x00\x6a\x00\x65\x00\ +\x20\x00\x74\x00\x6f\x00\x74\x00\x6f\x00\x20\x00\x7a\x00\x61\x01\ +\x0d\x00\x69\x00\x61\x00\x72\x00\x6b\x00\x6e\x00\x75\x00\x74\x00\ +\xe9\x00\x2c\x00\x20\x00\x70\x00\x6f\x01\x0d\x00\x61\x00\x73\x00\ +\x20\x00\x6b\x00\x72\x00\x65\x00\x73\x00\x6c\x00\x65\x00\x6e\x00\ +\x69\x00\x61\x00\x20\x00\x73\x00\x61\x00\x20\x00\x62\x00\x75\x00\ +\x64\x00\x65\x00\x20\x00\x76\x01\x7e\x00\x64\x00\x79\x00\x20\x00\ +\x70\x00\x72\x00\x69\x00\x63\x00\x68\x00\x79\x00\x74\x00\xe1\x00\ +\x76\x00\x61\x01\x65\x00\x20\x00\x6b\x00\x20\x00\x65\x00\x78\x00\ +\x69\x00\x73\x00\x74\x00\x75\x00\x6a\x00\xfa\x00\x63\x00\x69\x00\ +\x6d\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x6f\x00\x6d\x00\x2e\x00\x20\x00\x41\x00\x6b\x00\x20\x00\x6e\x00\ +\x69\x00\x65\x00\x20\x00\x6a\x00\x65\x00\x2c\x00\x20\x00\x62\x00\ +\x75\x00\x64\x00\x65\x00\x20\x00\x73\x00\x61\x00\x20\x00\x64\x00\ +\x61\x01\x65\x00\x20\x00\x20\x00\x70\x00\x72\x00\x69\x00\x63\x00\ +\x68\x00\x79\x00\x74\x00\xe1\x00\x76\x00\x61\x01\x65\x00\x20\x00\ +\x73\x00\x74\x00\x6c\x00\x61\x01\x0d\x00\x65\x00\x6e\x00\xed\x00\ +\x6d\x00\x20\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x2e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x81\x49\x66\x20\x74\x68\x69\x73\x20\x69\ +\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x79\x6f\x75\x20\x77\ +\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x73\x6e\x61\x70\x20\ +\x74\x6f\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x20\x77\x68\x69\x6c\x65\x20\x64\x72\x61\x77\x69\x6e\ +\x67\x2e\x20\x49\x66\x20\x6e\x6f\x74\x2c\x20\x79\x6f\x75\x20\x77\ +\x69\x6c\x6c\x20\x62\x65\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x20\ +\x6f\x6e\x6c\x79\x20\x77\x68\x65\x6e\x20\x70\x72\x65\x73\x73\x69\ +\x6e\x67\x20\x43\x54\x52\x4c\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\ +\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x2a\ +\x00\x62\x00\x6c\x00\x6f\x00\x6b\x00\x6f\x00\x76\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0e\x49\x6d\x70\x6f\x72\x74\x20\x2a\x62\x6c\ +\x6f\x63\x6b\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x49\x00\x6d\ +\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x6f\x00\x76\x00\x61\x01\x65\ +\x00\x20\x00\x4f\x00\x43\x00\x41\x00\x20\x00\x6f\x00\x62\x00\x6c\ +\x00\x61\x00\x73\x00\x74\x00\xed\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x10\x49\x6d\x70\x6f\x72\x74\x20\x4f\x43\x41\x20\x61\x72\x65\ +\x61\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\x00\x49\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x68\x00\x61\x00\x74\x00\x63\ +\x00\x68\x00\x20\x00\x62\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x61\ +\x00\x72\x00\x69\x00\x65\x00\x73\x00\x20\x00\x61\x00\x73\x00\x20\ +\x00\x77\x00\x69\x00\x72\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x20\x49\x6d\x70\x6f\x72\x74\x20\x68\x61\x74\x63\x68\ +\x20\x62\x6f\x75\x6e\x64\x61\x72\x69\x65\x73\x20\x61\x73\x20\x77\ +\x69\x72\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\x49\x00\x6d\ +\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x6f\x00\x76\x00\x61\x01\x65\ +\x00\x20\x00\x68\x00\x6c\x00\x61\x00\x64\x00\x69\x00\x6e\x00\x79\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x49\x6d\x70\x6f\x72\x74\ +\x20\x6c\x61\x79\x6f\x75\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\ +\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x6f\x00\x76\ +\x00\x61\x01\x65\x00\x20\x01\x61\x00\x74\x00\xfd\x00\x6c\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0c\x49\x6d\x70\x6f\x72\x74\x20\x73\ +\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x49\x00\x6d\ +\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x75\x00\x6a\x00\x20\x00\x74\ +\x00\x65\x00\x78\x00\x74\x00\x79\x00\x20\x00\x61\x00\x20\x00\x72\ +\x00\x6f\x00\x7a\x00\x6d\x00\x65\x00\x72\x00\x79\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1b\x49\x6d\x70\x6f\x72\x74\x20\x74\x65\x78\ +\x74\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x49\x00\x6d\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x00\x2f\x00\x45\x00\x78\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x49\x6d\x70\ +\x6f\x72\x74\x2f\x45\x78\x70\x6f\x72\x74\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x36\x00\xda\x00\x72\x00\x6f\x00\x76\x00\x65\x01\x48\x00\x20\ +\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x65\x00\x6a\ +\x00\x20\x00\x70\x00\x72\x00\x65\x00\x63\x00\xed\x00\x7a\x00\x6e\ +\x00\x6f\x00\x73\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x18\x49\x6e\x74\x65\x72\x6e\x61\x6c\x20\x70\x72\x65\x63\x69\ +\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x20\x00\x53\x00\x70\x00\x6f\x00\x6a\x00\x69\x01\x65\x00\x20\ +\x00\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\ +\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4a\x6f\x69\x6e\ +\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x28\x00\x56\x01\x3e\x00\x61\x00\x76\x00\x6f\x00\x20\x00\x28\x00\ +\x49\x00\x53\x00\x4f\x00\x20\x01\x61\x00\x74\x00\x61\x00\x6e\x00\ +\x64\x00\x61\x00\x72\x00\x64\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x13\x4c\x65\x66\x74\x20\x28\x49\x53\x4f\x20\x73\x74\x61\ +\x6e\x64\x61\x72\x64\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x56\ +\x01\x7e\x00\x64\x00\x79\x00\x20\x00\x48\x00\x6c\x00\x61\x00\x76\ +\x00\x6e\x00\xe9\x00\x20\x01\x0d\x00\x69\x00\x61\x00\x72\x00\x79\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x4d\x61\x69\x6e\x20\x6c\ +\x69\x6e\x65\x73\x20\x65\x76\x65\x72\x79\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x9a\x00\x48\x00\x6c\x00\x61\x00\x76\x00\x6e\x00\xe9\x00\x20\ +\x01\x0d\x00\x69\x00\x61\x00\x72\x00\x79\x00\x20\x00\x62\x00\x75\ +\x00\x64\x00\xfa\x00\x20\x00\x68\x00\x72\x00\x75\x00\x62\x01\x61\ +\x00\x69\x00\x65\x00\x2e\x00\x20\x00\x55\x00\x72\x01\x0d\x00\x69\ +\x00\x74\x00\x65\x00\x20\x00\x6b\x00\x6f\x01\x3e\x00\x6b\x00\x6f\ +\x00\x20\x01\x61\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x63\x00\x6f\ +\x00\x76\x00\x20\x00\x62\x00\x75\x00\x64\x00\x65\x00\x20\x00\x6d\ +\x00\x65\x00\x64\x00\x7a\x00\x69\x00\x20\x00\x68\x00\x6c\x00\x61\ +\x00\x76\x00\x6e\x00\xfd\x00\x6d\x00\x69\x00\x20\x01\x0d\x00\x69\ +\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x69\x00\x2e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x51\x4d\x61\x69\x6e\x6c\x69\x6e\x65\x73\x20\ +\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x72\x61\x77\x6e\x20\x74\x68\ +\x69\x63\x6b\x65\x72\x2e\x20\x53\x70\x65\x63\x69\x66\x79\x20\x68\ +\x65\x72\x65\x20\x68\x6f\x77\x20\x6d\x61\x6e\x79\x20\x73\x71\x75\ +\x61\x72\x65\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x6d\x61\x69\ +\x6e\x6c\x69\x6e\x65\x73\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\ +\x4d\x00\x61\x00\x78\x00\x20\x00\x64\x00\x72\x00\xe1\x01\x7e\x00\ +\x6b\x00\x6f\x00\x76\x00\x61\x00\x6e\x00\x69\x00\x65\x00\x20\x00\ +\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x75\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4d\x61\x78\x20\x53\x70\x6c\ +\x69\x6e\x65\x20\x53\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x2e\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\ +\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x65\x00\x64\x00\x67\x00\x65\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x4d\x61\x78\x69\x6d\ +\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x65\x64\x67\ +\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6a\x00\x4d\x00\x61\x00\x78\ +\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\ +\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x65\ +\x00\x64\x00\x67\x00\x65\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\ +\x00\x62\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\ +\x00\x64\x00\x65\x00\x72\x00\x65\x00\x64\x00\x20\x00\x66\x00\x6f\ +\x00\x72\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x69\ +\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x4d\x61\ +\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\ +\x65\x64\x67\x65\x73\x20\x74\x6f\x20\x62\x65\x20\x63\x6f\x6e\x73\ +\x69\x64\x65\x72\x65\x64\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x70\ +\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x01\x7d\x00\x69\x00\ +\x61\x00\x64\x00\x6e\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x01\x7d\x00\ +\x69\x00\x61\x00\x64\x00\x6e\x00\x65\x00\x20\x00\x28\x00\x6e\x00\ +\x61\x00\x6a\x00\x72\x00\xfd\x00\x63\x00\x68\x00\x6c\x00\x65\x00\ +\x6a\x01\x61\x00\x69\x00\x61\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0e\x4e\x6f\x6e\x65\x20\x28\x66\x61\x73\x74\x65\x73\x74\ +\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\xe0\x00\x4e\x00\x6f\x00\x72\x00\ +\x6d\x00\xe1\x00\x6c\x00\x6e\x00\x65\x00\x20\x00\x73\x00\xfa\x00\ +\x20\x00\x70\x00\x6f\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\xed\x00\ +\x72\x00\x6f\x00\x76\x00\x61\x00\x6e\x00\xed\x00\x20\x00\x76\x00\ +\x79\x00\x62\x00\x72\x00\x61\x00\x74\x00\xe9\x00\x20\x00\x6b\x00\ +\xf3\x00\x70\x00\x69\x00\x65\x00\x2e\x00\x20\x00\x41\x00\x6b\x00\ +\x20\x00\x76\x00\x79\x00\x62\x00\x65\x00\x72\x00\x69\x00\x65\x00\ +\x74\x00\x65\x00\x20\x00\x74\x00\xfa\x00\x74\x00\x6f\x00\x20\x00\ +\x6d\x00\x6f\x01\x7e\x00\x6e\x00\x6f\x00\x73\x01\x65\x00\x2c\x00\ +\x20\x00\x62\x00\x75\x00\x64\x00\xfa\x00\x20\x00\x6e\x00\x61\x00\ +\x6d\x00\x69\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\x00\x6e\x00\ +\x69\x00\x63\x00\x68\x00\x20\x00\x76\x00\x79\x00\x62\x00\x65\x00\ +\x72\x00\x61\x00\x6e\x00\xe9\x00\x20\x00\x70\x00\xf4\x00\x76\x00\ +\x6f\x00\x64\x00\x6e\x00\xe9\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x79\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x7f\x4e\x6f\x72\x6d\x61\x6c\x6c\x79\x2c\x20\x61\x66\x74\ +\x65\x72\x20\x63\x6f\x70\x79\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x2c\x20\x74\x68\x65\x20\x63\x6f\x70\x69\x65\x73\x20\x67\ +\x65\x74\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x2e\x20\x49\x66\x20\ +\x74\x68\x69\x73\x20\x6f\x70\x74\x69\x6f\x6e\x20\x69\x73\x20\x63\ +\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x62\x61\x73\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x69\x6e\x73\x74\x65\x61\ +\x64\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x4e\x00\x61\x00\x73\ +\x00\x74\x00\x61\x00\x76\x00\x65\x00\x6e\x00\x69\x00\x61\x00\x20\ +\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\xe1\x00\x74\x00\x75\x00\x20\ +\x00\x4f\x00\x43\x00\x41\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\ +\x4f\x43\x41\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\x6f\ +\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\x00\x50\x00\xf4\x00\x76\ +\x00\x6f\x00\x64\x00\x6e\x00\xe9\x00\x20\x00\x66\x00\x61\x00\x72\ +\x00\x62\x00\x79\x00\x20\x00\x61\x00\x20\x01\x61\x00\xed\x00\x72\ +\x00\x6b\x00\x61\x01\x0c\x00\x69\x00\x61\x00\x72\x00\x79\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1c\x4f\x72\x69\x67\x69\x6e\x61\x6c\ +\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\ +\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x52\x00\x61\ +\x00\x77\x00\x20\x00\x28\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x43\ +\x00\x41\x00\x4d\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ +\x52\x61\x77\x20\x28\x66\x6f\x72\x20\x43\x41\x4d\x29\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x36\x00\x52\x00\x65\x00\x6e\x00\x64\x00\x65\x00\ +\x72\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x6c\x00\x69\x00\ +\x6e\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\ +\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1b\x52\x65\x6e\x64\x65\x72\x20\x70\x6f\x6c\x79\ +\x6c\x69\x6e\x65\x73\x20\x77\x69\x74\x68\x20\x77\x69\x64\x74\x68\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x56\x00\x70\x00\x72\x00\x61\ +\x00\x76\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x52\x69\ +\x67\x68\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x4e\x00\x61\x00\ +\x73\x00\x74\x00\x61\x00\x76\x00\x65\x00\x6e\x00\x69\x00\x61\x00\ +\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\xe1\x00\x74\x00\x75\x00\ +\x20\x00\x53\x00\x56\x00\x47\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x12\x53\x56\x47\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\ +\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x62\x00\x55\x00\x6c\x00\ +\x6f\x01\x7e\x00\x69\x01\x65\x00\x20\x00\x61\x00\x6b\x00\x74\x00\ +\x75\x00\xe1\x00\x6c\x00\x6e\x00\x75\x00\x20\x00\x66\x00\x61\x00\ +\x72\x00\x62\x00\x75\x00\x20\x00\x61\x00\x20\x01\x61\x00\xed\x00\ +\x72\x00\x6b\x00\x75\x00\x20\x01\x0d\x00\x69\x00\x61\x00\x72\x00\ +\x79\x00\x20\x00\x6f\x00\x6b\x00\x6f\x00\x6c\x00\x6f\x00\x20\x00\ +\x72\x00\x65\x00\x6c\x00\xe1\x00\x63\x00\x69\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x30\x53\x61\x76\x65\x20\x63\x75\x72\x72\ +\x65\x6e\x74\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\ +\x6e\x65\x77\x69\x64\x74\x68\x20\x61\x63\x72\x6f\x73\x73\x20\x73\ +\x65\x73\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4c\x00\ +\x50\x00\x6f\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\xed\x00\x72\x00\ +\x6f\x00\x76\x00\x61\x00\x6e\x00\xed\x00\x20\x00\x76\x00\x79\x00\ +\x62\x00\x65\x00\x72\x00\x61\x01\x65\x00\x20\x00\x7a\x00\xe1\x00\ +\x6b\x00\x6c\x00\x61\x00\x64\x00\x6e\x00\xe9\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x79\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x21\x53\x65\x6c\x65\x63\x74\x20\x62\x61\x73\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x66\x74\x65\x72\x20\x63\ +\x6f\x70\x79\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x53\ +\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\ +\x00\x74\x00\x20\x00\x53\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x74\ +\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x17\x53\x68\x6f\x77\x20\x44\x72\x61\x66\x74\ +\x20\x53\x6e\x61\x70\x20\x74\x6f\x6f\x6c\x62\x61\x72\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x34\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\ +\x57\x00\x6f\x00\x72\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x50\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x72\x00\ +\x61\x00\x63\x00\x6b\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1a\x53\x68\x6f\x77\x20\x57\x6f\x72\x6b\x69\x6e\x67\x20\ +\x50\x6c\x61\x6e\x65\x20\x74\x72\x61\x63\x6b\x65\x72\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0e\x00\x4c\x00\x6f\x00\x6d\x00\x6b\x00\x61\x00\ +\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\ +\x73\x68\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x4c\x00\x6f\ +\x00\x6d\x00\x6b\x00\x61\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x07\x53\x6c\x61\x73\x68\x20\x37\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0e\x00\x4c\x00\x6f\x00\x6d\x00\x6b\x00\x61\x00\x20\x00\ +\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\ +\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x50\x00\x72\x00\x69\ +\x00\x63\x00\x68\x00\x79\x00\x74\x00\x69\x01\x65\x00\x20\x00\x66\ +\x00\x61\x00\x72\x00\x62\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0a\x53\x6e\x61\x70\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x18\x00\x53\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6d\ +\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x53\x6e\x61\x70\x20\x6d\x61\x78\x69\x6d\ +\x75\x6d\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x50\x00\x72\x00\x69\ +\x00\x63\x00\x68\x00\x79\x00\x74\x00\xe1\x00\x76\x00\x61\x00\x63\ +\x00\xed\x00\x20\x00\x6d\x00\xf3\x00\x64\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x08\x53\x6e\x61\x70\x20\x6d\x6f\x64\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x26\x00\x56\x00\x65\x01\x3e\x00\x6b\x00\x6f\x00\x73\ +\x01\x65\x00\x20\x00\x70\x00\x72\x00\x69\x00\x63\x00\x68\x00\x79\ +\x00\x74\x00\x65\x00\x6e\x00\x69\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0a\x53\x6e\x61\x70\x20\x72\x61\x6e\x67\x65\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x66\x00\x53\x00\x74\x00\x79\x00\x6c\x00\x65\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\ +\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x20\ +\x00\x77\x00\x72\x00\x69\x00\x74\x00\x65\x00\x20\x00\x77\x00\x68\ +\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x53\ +\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x2e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x33\x53\x74\x79\x6c\x65\x20\x6f\x66\x20\x53\ +\x56\x47\x20\x66\x69\x6c\x65\x20\x74\x6f\x20\x77\x72\x69\x74\x65\ +\x20\x77\x68\x65\x6e\x20\x65\x78\x70\x6f\x72\x74\x69\x6e\x67\x20\ +\x61\x20\x53\x6b\x65\x74\x63\x68\x2e\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x1e\x00\x5a\x00\x6f\x00\x62\x00\x72\x00\x61\x00\x7a\x00\x65\x00\ +\x6e\x00\x69\x00\x65\x00\x20\x00\xfa\x00\x6c\x00\x6f\x00\x68\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x54\x61\x73\x6b\x76\x69\x65\ +\x77\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x44\x00\x4b\x00\x6c\x00\xe1\x00\ +\x76\x00\x65\x00\x73\x00\x61\x00\x20\x00\x76\x00\x79\x00\x6e\x00\ +\x75\x00\x63\x00\x6f\x00\x76\x00\x61\x00\x63\x00\x69\x00\x65\x00\ +\x68\x00\x6f\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\ +\x69\x00\x6b\x00\xe1\x00\x74\x00\x6f\x00\x72\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1d\x54\x68\x65\x20\x43\x6f\x6e\x73\x74\ +\x72\x61\x69\x6e\x69\x6e\x67\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\ +\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x4b\x00\x6c\ +\x00\xe1\x00\x76\x00\x65\x00\x73\x00\x61\x00\x20\x00\x61\x00\x6c\ +\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\x74\x00\xed\x00\x76\ +\x00\x6e\x00\x65\x00\x68\x00\x6f\x00\x20\x00\x6d\x00\x6f\x00\x64\ +\x00\x69\x00\x66\x00\x69\x00\x6b\x00\xe1\x00\x74\x00\x6f\x00\x72\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\x20\ +\x61\x6c\x74\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x74\x00\x53\x00\xfa\x00\x62\x00\x6f\ +\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x70\x00\x6f\x00\x76\x00\x61\ +\x00\x6e\x00\x69\x00\x61\x00\x20\x00\x66\x00\x61\x00\x72\x00\x69\ +\x00\x65\x00\x62\x00\x20\x00\x70\x00\x72\x00\x65\x00\x20\x00\x70\ +\x00\x72\x00\x65\x00\x6b\x00\x6c\x00\x61\x00\x64\x00\x20\x00\x64\ +\x00\x78\x00\x66\x00\x20\x00\x66\x00\x61\x00\x72\x00\x62\x00\x79\ +\x00\x20\x00\x64\x00\x6f\x00\x20\x01\x61\x00\xed\x00\x72\x00\x69\ +\x00\x65\x00\x6b\x01\x0c\x00\x69\x00\x61\x00\x72\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x41\x54\x68\x65\x20\x63\x6f\x6c\x6f\x72\x20\ +\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x20\x66\x6f\x72\ +\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6e\x67\x20\x64\x78\x66\ +\x20\x63\x6f\x6c\x6f\x72\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\ +\x65\x77\x69\x64\x74\x68\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x78\x00\ +\x50\x00\x72\x00\x65\x00\x64\x00\x76\x00\x6f\x00\x6c\x00\x65\x00\ +\x6e\x00\xe1\x00\x20\x01\x61\x00\x61\x00\x62\x00\x6c\x00\xf3\x00\ +\x6e\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x75\x01\x7e\x00\x69\x00\ +\x74\x00\xe1\x00\x20\x00\x70\x00\x72\x00\x69\x00\x20\x00\x76\x00\ +\x79\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x65\x00\x6e\x00\xed\x00\ +\x20\x00\x6e\x00\x6f\x00\x76\x00\xe9\x00\x68\x00\x6f\x00\x20\x00\ +\x6c\x00\x69\x00\x73\x00\x74\x00\x75\x00\x20\x00\x4e\x00\xe1\x00\ +\x76\x00\x72\x00\x68\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x3d\x54\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x6d\ +\x70\x6c\x61\x74\x65\x20\x74\x6f\x20\x75\x73\x65\x20\x77\x68\x65\ +\x6e\x20\x63\x72\x65\x61\x74\x69\x6e\x67\x20\x61\x20\x6e\x65\x77\ +\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x73\x68\x65\x65\x74\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x98\x00\x50\x00\x6f\x01\x0d\x00\x65\x00\x74\ +\x00\x20\x00\x64\x00\x65\x00\x73\x00\x61\x00\x74\x00\x69\x00\x6e\ +\x00\x6e\x00\xfd\x00\x63\x00\x68\x00\x20\x00\x6d\x00\x69\x00\x65\ +\x00\x73\x00\x74\x00\x20\x00\x76\x00\x6e\x00\xfa\x00\x74\x00\x6f\ +\x00\x72\x00\x6e\x00\xfd\x00\x63\x00\x68\x00\x20\x00\x73\x00\xfa\ +\x00\x72\x00\x61\x00\x64\x00\x6e\x00\xed\x00\x63\x00\x20\x00\x70\ +\x00\x72\x00\x69\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x72\x00\xe1\ +\x00\x63\x00\x69\x00\x61\x00\x63\x00\x68\x00\x20\x00\x28\x00\x6e\ +\x00\x61\x00\x70\x00\x72\x00\x2e\x00\x20\x00\x33\x00\x20\x00\x3d\ +\x00\x20\x00\x30\x00\x2c\x00\x30\x00\x30\x00\x31\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x4d\x54\x68\x65\x20\x6e\x75\x6d\x62\ +\x65\x72\x20\x6f\x66\x20\x64\x65\x63\x69\x6d\x61\x6c\x73\x20\x69\ +\x6e\x20\x69\x6e\x74\x65\x72\x6e\x61\x6c\x20\x63\x6f\x6f\x72\x64\ +\x69\x6e\x61\x74\x65\x73\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\ +\x73\x20\x28\x66\x6f\x72\x20\x65\x78\x2e\x20\x33\x20\x3d\x20\x30\ +\x2e\x30\x30\x31\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x82\x00\x52\x00\ +\xe1\x00\x64\x00\x69\x00\x75\x00\x73\x00\x20\x00\x70\x00\x72\x00\ +\x65\x00\x20\x00\x70\x00\x72\x00\x69\x00\x63\x00\x68\x00\x79\x00\ +\x74\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x6b\x00\x75\x00\ +\x20\x01\x61\x00\x70\x00\x65\x00\x63\x00\x69\x00\xe1\x00\x6c\x00\ +\x6e\x00\x79\x00\x6d\x00\x20\x00\x62\x00\x6f\x00\x64\x00\x6f\x00\ +\x6d\x00\x2e\x00\x20\x00\x4e\x00\x61\x00\x73\x00\x74\x00\x61\x00\ +\x76\x00\x20\x00\x30\x00\x20\x00\x70\x00\x72\x00\x65\x00\x20\x00\ +\x7a\x00\x72\x00\x75\x01\x61\x00\x65\x00\x6e\x00\x69\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x4e\x54\x68\x65\x20\x72\x61\x64\ +\x69\x75\x73\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\ +\x20\x74\x6f\x20\x73\x70\x65\x63\x69\x61\x6c\x20\x70\x6f\x69\x6e\ +\x74\x73\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\x30\x20\x66\x6f\x72\ +\x20\x6e\x6f\x20\x64\x69\x73\x74\x61\x6e\x63\x65\x20\x28\x69\x6e\ +\x66\x69\x6e\x69\x74\x65\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\ +\x4b\x00\x6c\x00\xe1\x00\x76\x00\x65\x00\x73\x00\x20\x00\x70\x00\ +\x72\x00\x69\x00\x63\x00\x68\x00\x79\x00\x74\x00\xe1\x00\x76\x00\ +\x61\x00\x63\x00\x69\x00\x65\x00\x68\x00\x6f\x00\x20\x00\x6d\x00\ +\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x6b\x00\xe1\x00\x74\x00\ +\x6f\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x54\ +\x68\x65\x20\x73\x6e\x61\x70\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\ +\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x52\x00\x6f\ +\x00\x7a\x00\x73\x00\x74\x00\x75\x00\x70\x00\x79\x00\x20\x00\x6d\ +\x00\x65\x00\x64\x00\x7a\x00\x69\x00\x20\x00\x72\x00\x69\x00\x61\ +\x00\x64\x00\x6b\x00\x61\x00\x6d\x00\x69\x00\x20\x00\x6d\x00\x72\ +\x00\x69\x00\x65\x01\x7e\x00\x6b\x00\x79\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x22\x54\x68\x65\x20\x73\x70\x61\x63\x69\x6e\x67\x20\ +\x62\x65\x74\x77\x65\x65\x6e\x20\x65\x61\x63\x68\x20\x67\x72\x69\ +\x64\x20\x6c\x69\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\xd4\x00\x54\ +\x00\x6f\x00\x74\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x55\ +\x00\x49\x00\x20\x00\x72\x00\x65\x01\x7e\x00\x69\x00\x6d\x00\x2c\ +\x00\x20\x00\x76\x00\x20\x00\x6b\x00\x74\x00\x6f\x00\x72\x00\x6f\ +\x00\x6d\x00\x20\x00\x62\x00\x75\x00\x64\x00\x65\x00\x20\x00\x6d\ +\x00\x6f\x00\x64\x00\x75\x00\x6c\x00\x20\x00\x4e\x00\xe1\x00\x76\ +\x00\x72\x00\x68\x00\x75\x00\x20\x00\x70\x00\x72\x00\x61\x00\x63\ +\x00\x6f\x00\x76\x00\x61\x01\x65\x00\x3a\x00\x20\x00\x50\x00\x61\ +\x00\x6e\x00\x65\x00\x6c\x00\x20\x00\x6e\x00\xe1\x00\x73\x00\x74\ +\x00\x72\x00\x6f\x00\x6a\x00\x6f\x00\x76\x00\x20\x00\x70\x00\x72\ +\x00\x65\x00\x6d\x00\x69\x00\x65\x00\x74\x00\x6e\x00\x65\x00\x20\ +\x00\x76\x01\x61\x00\x65\x00\x74\x00\x6b\x00\x79\x00\x20\x00\x6e\ +\x00\x61\x00\x73\x00\x74\x00\x61\x00\x76\x00\x65\x00\x6e\x00\x69\ +\x00\x61\x00\x20\x00\x4e\x00\xe1\x00\x76\x00\x72\x00\x68\x00\x75\ +\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x73\x00\x61\x00\x6d\x00\x6f\ +\x00\x73\x00\x74\x00\x61\x00\x74\x00\x6e\x00\xfd\x00\x63\x00\x68\ +\x00\x20\x00\x50\x00\x61\x00\x6e\x00\x65\x00\x6c\x00\x6f\x00\x76\ +\x00\x20\x00\x6e\x00\xe1\x00\x73\x00\x74\x00\x72\x00\x6f\x00\x6a\ +\x00\x6f\x00\x76\x00\x20\x00\x64\x00\x6f\x00\x76\x00\x74\x00\x65\ +\x00\x64\x00\x79\x00\x2c\x00\x20\x00\x70\x00\x6f\x00\x6b\x00\x69\ +\x00\x61\x01\x3e\x00\x20\x00\x62\x00\x75\x00\x64\x00\x65\x00\x20\ +\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x20\ +\x00\x70\x00\x6f\x00\x75\x01\x7e\x00\xed\x00\x76\x00\x61\x01\x65\ +\x00\x20\x00\x73\x00\x79\x00\x73\x00\x74\x00\xe9\x00\x6d\x00\x20\ +\x00\x5a\x00\x6f\x00\x62\x00\x72\x00\x61\x00\x7a\x00\x65\x00\x6e\ +\x00\x69\x00\x61\x00\x20\x00\xfa\x00\x6c\x00\x6f\x00\x68\x00\x20\ +\x00\x70\x00\x72\x00\x65\x00\x20\x00\x76\x01\x61\x00\x65\x00\x74\ +\x00\x6b\x00\x79\x00\x20\x00\x75\x01\x7e\x00\xed\x00\x76\x00\x61\ +\x00\x74\x00\x65\x01\x3e\x00\x73\x00\x6b\x00\xe9\x00\x20\x00\x69\ +\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x61\x00\x6b\x00\x63\x00\x69\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\xcf\x54\x68\x69\x73\ +\x20\x69\x73\x20\x74\x68\x65\x20\x55\x49\x20\x6d\x6f\x64\x65\x20\ +\x69\x6e\x20\x77\x68\x69\x63\x68\x20\x74\x68\x65\x20\x44\x72\x61\ +\x66\x74\x20\x6d\x6f\x64\x75\x6c\x65\x20\x77\x69\x6c\x6c\x20\x77\ +\x6f\x72\x6b\x3a\x20\x54\x6f\x6f\x6c\x62\x61\x72\x20\x6d\x6f\x64\ +\x65\x20\x77\x69\x6c\x6c\x20\x70\x6c\x61\x63\x65\x20\x61\x6c\x6c\ +\x20\x44\x72\x61\x66\x74\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x20\ +\x69\x6e\x20\x61\x20\x73\x65\x70\x61\x72\x61\x74\x65\x20\x74\x6f\ +\x6f\x6c\x62\x61\x72\x2c\x20\x77\x68\x69\x6c\x65\x20\x74\x61\x73\ +\x6b\x62\x61\x72\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x75\ +\x73\x65\x20\x74\x68\x65\x20\x46\x72\x65\x65\x43\x41\x44\x20\x54\ +\x61\x73\x6b\x76\x69\x65\x77\x20\x73\x79\x73\x74\x65\x6d\x20\x66\ +\x6f\x72\x20\x61\x6c\x6c\x20\x69\x74\x73\x20\x75\x73\x65\x72\x20\ +\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x9a\x00\x54\x00\x6f\x00\x74\x00\x6f\x00\x20\x00\x6a\x00\ +\x65\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\x00\x76\x00\x6f\x00\ +\x6c\x00\x65\x00\x6e\x00\xe1\x00\x20\x00\x66\x00\x61\x00\x72\x00\ +\x62\x00\x61\x00\x20\x00\x70\x00\x72\x00\x65\x00\x20\x00\x6b\x00\ +\x72\x00\x65\x00\x73\x00\x6c\x00\x65\x00\x6e\x00\xe9\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x20\x00\ +\x70\x00\x6f\x01\x0d\x00\x61\x00\x73\x00\x20\x00\x70\x00\x6f\x01\ +\x0d\x00\x61\x00\x73\x00\x20\x00\x6b\x00\x6f\x00\x6e\x01\x61\x00\ +\x74\x00\x72\x00\x75\x00\x6b\x01\x0d\x00\x6e\x00\xe9\x00\x68\x00\ +\x6f\x00\x20\x00\x6d\x00\xf3\x00\x64\x00\x75\x00\x2e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4d\x54\x68\x69\x73\x20\x69\x73\x20\x74\ +\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\ +\x20\x66\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\x69\ +\x6e\x67\x20\x64\x72\x61\x77\x6e\x20\x77\x68\x69\x6c\x65\x20\x69\ +\x6e\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x6d\ +\x6f\x64\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\xd2\x00\x54\x00\x6f\ +\x00\x74\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x70\x00\x72\ +\x00\x65\x00\x64\x00\x76\x00\x6f\x00\x6c\x00\x65\x00\x6e\x00\xfd\ +\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x74\x00\x65\ +\x00\x78\x00\x74\x00\x6f\x00\x76\x00\x20\x00\x61\x00\x20\x00\x72\ +\x00\x6f\x00\x7a\x00\x6d\x00\x65\x00\x72\x00\x6f\x00\x76\x00\x20\ +\x00\x4e\x00\xe1\x00\x76\x00\x72\x00\x68\x00\x75\x00\x2e\x00\x0a\ +\x00\x4d\x00\xf4\x01\x7e\x00\x65\x00\x20\x00\x6e\x00\xed\x00\x6d\ +\x00\x20\x00\x62\x00\x79\x01\x65\x00\x20\x00\x6e\x00\xe1\x00\x7a\ +\x00\x6f\x00\x76\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x75\ +\x00\x20\x00\x6e\x00\x61\x00\x70\x00\x72\x00\x2e\x00\x20\x00\x22\ +\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x22\x00\x20\x00\x61\ +\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\x00\x76\x00\x6f\x00\x6c\ +\x00\x65\x00\x6e\x00\xfd\x00\x6d\x00\x20\x01\x61\x00\x74\x00\xfd\ +\x00\x6c\x00\x6f\x00\x6d\x00\x20\x00\x6e\x00\x61\x00\x70\x00\x72\ +\x00\x2e\x00\x20\x00\x22\x00\x73\x00\x61\x00\x6e\x00\x73\x00\x22\ +\x00\x2c\x00\x22\x00\x73\x00\x65\x00\x72\x00\x69\x00\x66\x00\x22\ +\x00\x0a\x00\x61\x00\x6c\x00\x65\x00\x62\x00\x6f\x00\x20\x00\x22\ +\x00\x6d\x00\x6f\x00\x6e\x00\x6f\x00\x22\x00\x2c\x00\x20\x00\x61\ +\x00\x6c\x00\x65\x00\x62\x00\x6f\x00\x20\x00\x73\x00\x6b\x00\x75\ +\x00\x70\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x6e\x00\x61\x00\x70\ +\x00\x72\x00\x2e\x00\x20\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\ +\x00\x6c\x00\x2c\x00\x48\x00\x65\x00\x6c\x00\x76\x00\x65\x00\x74\ +\x00\x69\x00\x63\x00\x61\x00\x2c\x00\x73\x00\x61\x00\x6e\x00\x73\ +\x00\x22\x00\x20\x00\x61\x00\x6c\x00\x65\x00\x62\x00\x6f\x00\x20\ +\x00\x6e\x00\xe1\x00\x7a\x00\x6f\x00\x76\x00\x20\x00\x61\x00\x20\ +\x01\x61\x00\x74\x00\xfd\x00\x6c\x00\x20\x00\x61\x00\x6b\x00\x6f\ +\x00\x0a\x00\x6e\x00\x61\x00\x70\x00\x72\x00\xed\x00\x6b\x00\x6c\ +\x00\x61\x00\x64\x00\x20\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\ +\x00\x6c\x00\x3a\x00\x42\x00\x6f\x00\x6c\x00\x64\x00\x22\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\xf2\x54\x68\x69\x73\x20\x69\x73\x20\ +\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x66\x6f\x6e\x74\ +\x20\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\x61\x6c\x6c\x20\x44\x72\ +\x61\x66\x74\x20\x74\x65\x78\x74\x73\x20\x61\x6e\x64\x20\x64\x69\ +\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x2e\x0a\x49\x74\x20\x63\x61\x6e\ +\x20\x62\x65\x20\x61\x20\x66\x6f\x6e\x74\x20\x6e\x61\x6d\x65\x20\ +\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\x72\x69\x61\x6c\x22\x2c\ +\x20\x61\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x73\x74\x79\x6c\x65\ +\x20\x73\x75\x63\x68\x20\x61\x73\x20\x22\x73\x61\x6e\x73\x22\x2c\ +\x20\x22\x73\x65\x72\x69\x66\x22\x0a\x6f\x72\x20\x22\x6d\x6f\x6e\ +\x6f\x22\x2c\x20\x6f\x72\x20\x61\x20\x66\x61\x6d\x69\x6c\x79\x20\ +\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\x72\x69\x61\x6c\x2c\x48\ +\x65\x6c\x76\x65\x74\x69\x63\x61\x2c\x73\x61\x6e\x73\x22\x20\x6f\ +\x72\x20\x61\x20\x6e\x61\x6d\x65\x20\x77\x69\x74\x68\x20\x61\x20\ +\x73\x74\x79\x6c\x65\x0a\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\ +\x72\x69\x61\x6c\x3a\x42\x6f\x6c\x64\x22\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x5e\x00\x54\x00\x6f\x00\x74\x00\x6f\x00\x20\x00\x6a\x00\x65\ +\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\x00\x76\x00\x6f\x00\x6c\ +\x00\x65\x00\x6e\x00\xfd\x00\x20\x00\x6e\x00\xe1\x00\x7a\x00\x6f\ +\x00\x76\x00\x20\x00\x6b\x00\x6f\x00\x6e\x01\x61\x00\x74\x00\x72\ +\x00\x75\x00\x6b\x01\x0d\x00\x6e\x00\x65\x00\x6a\x00\x20\x00\x67\ +\x00\x65\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x54\x68\x69\x73\x20\x69\ +\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x67\x72\ +\x6f\x75\x70\x20\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\x63\x6f\x6e\ +\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x67\x65\x6f\x6d\x65\x74\ +\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x88\x00\x54\x00\x6f\x00\x74\ +\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x6d\x00\x65\x00\x74\ +\x00\xf3\x00\x64\x00\x61\x00\x20\x00\x76\x00\x79\x00\x62\x00\x72\ +\x00\x61\x00\x74\x00\xe1\x00\x20\x00\x70\x00\x72\x00\x65\x00\x20\ +\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x53\ +\x00\x56\x00\x47\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x6f\x00\x76\x00\xfd\x00\x63\x00\x68\x00\x20\x00\x66\ +\x00\x61\x00\x72\x00\x69\x00\x65\x00\x62\x00\x20\x00\x64\x00\x6f\ +\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\ +\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x47\x54\x68\x69\x73\ +\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x63\ +\x68\x6f\x6f\x73\x65\x64\x20\x66\x6f\x72\x20\x69\x6d\x70\x6f\x72\ +\x74\x69\x6e\x67\x20\x53\x56\x47\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x63\x6f\x6c\x6f\x72\x20\x69\x6e\x74\x6f\x20\x46\x72\x65\x65\x43\ +\x41\x44\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\xb2\x00\x54\x00\x6f\x00\ +\x20\x00\x6a\x00\x65\x00\x20\x00\x6d\x00\x65\x00\x74\x00\xf3\x00\ +\x64\x00\x61\x00\x20\x00\x7a\x00\x76\x00\x6f\x00\x6c\x00\x65\x00\ +\x6e\x00\xe1\x00\x20\x00\x70\x00\x72\x00\x65\x00\x20\x00\x69\x00\ +\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x61\x00\x6c\x00\ +\x65\x00\x62\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x65\x00\x6b\x00\ +\x6c\x00\x61\x00\x64\x00\x20\x00\x44\x00\x58\x00\x46\x00\x20\x00\ +\x66\x00\x61\x00\x72\x00\x62\x00\x79\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x20\x00\x64\x00\x6f\x00\ +\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\ +\x2e\x00\x20\x00\x41\x00\x6b\x00\x20\x00\x6a\x00\x65\x00\x20\x00\ +\x66\x00\x61\x00\x72\x00\x62\x00\x61\x00\x20\x00\x6d\x00\x61\x00\ +\x70\x00\x6f\x00\x76\x00\x61\x00\x6e\x00\x69\x00\x61\x00\x20\x00\ +\x7a\x00\x76\x00\x6f\x00\x6c\x00\x65\x00\x6e\x00\xe1\x00\x2c\x00\ +\x20\x00\x6d\x00\x75\x00\x73\x00\xed\x00\x74\x00\x65\x00\x20\x00\ +\x7a\x00\x76\x00\x6f\x00\x6c\x00\x69\x01\x65\x00\x20\x00\x73\x00\ +\xfa\x00\x62\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x61\x00\x72\x00\ +\x62\x00\x79\x00\x20\x00\x6d\x00\x61\x00\x70\x00\x6f\x00\x76\x00\ +\x61\x00\x6e\x00\x69\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x73\x00\ +\x61\x00\x68\x00\x75\x00\x6a\x00\xfa\x00\x63\x00\x69\x00\x20\x00\ +\x70\x00\x72\x00\x65\x00\x6b\x00\x6c\x00\x61\x00\x64\x00\x6f\x00\ +\x76\x00\xfa\x00\x20\x00\x74\x00\x61\x00\x62\x00\x75\x01\x3e\x00\ +\x6b\x00\x75\x00\x2c\x00\x20\x00\x6b\x00\x74\x00\x6f\x00\x72\x00\ +\xe1\x00\x20\x00\x62\x00\x75\x00\x64\x00\x65\x00\x20\x00\x6b\x00\ +\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x6f\x00\x76\x00\ +\x61\x01\x65\x00\x20\x00\x66\x00\x61\x00\x72\x00\x62\x00\x79\x00\ +\x20\x00\x64\x00\x6f\x00\x20\x01\x61\x00\xed\x00\x72\x00\x69\x00\ +\x65\x00\x6b\x01\x0c\x00\x69\x00\x61\x00\x72\x00\x2e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\xe3\x54\x68\x69\x73\x20\x69\x73\x20\x74\ +\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x63\x68\x6f\x6f\x73\x65\ +\x64\x20\x66\x6f\x72\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\ +\x6f\x72\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6e\x67\x20\x44\ +\x58\x46\x20\x6f\x62\x6a\x65\x63\x74\x20\x63\x6f\x6c\x6f\x72\x20\ +\x69\x6e\x74\x6f\x20\x46\x72\x65\x65\x43\x41\x44\x2e\x20\x0a\x49\ +\x66\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\ +\x69\x73\x20\x63\x68\x6f\x6f\x73\x65\x64\x2c\x20\x79\x6f\x75\x20\ +\x6d\x75\x73\x74\x20\x63\x68\x6f\x6f\x73\x65\x20\x61\x20\x63\x6f\ +\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\ +\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x61\x20\x74\x72\ +\x61\x6e\x73\x6c\x61\x74\x69\x6f\x6e\x20\x74\x61\x62\x6c\x65\x20\ +\x74\x68\x61\x74\x20\x77\x69\x6c\x6c\x20\x63\x6f\x6e\x76\x65\x72\ +\x74\x20\x63\x6f\x6c\x6f\x72\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\ +\x6e\x65\x77\x69\x64\x74\x68\x73\x2e\x0a\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\xa0\x00\x54\x00\x6f\x00\x74\x00\x6f\x00\x20\x00\x6a\x00\x65\ +\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x72\x00\xe1\x00\x63\x00\x69\ +\x00\x61\x00\x20\x00\x73\x00\x20\x00\x76\x00\x65\x00\x72\x00\x74\ +\x00\x69\x00\x6b\x00\xe1\x00\x6c\x00\x6e\x00\x79\x00\x6d\x00\x69\ +\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x61\x00\x6d\x00\x69\ +\x00\x20\x00\x72\x00\x6f\x00\x7a\x00\x6d\x00\x65\x00\x72\x00\x6f\ +\x00\x76\x00\x2e\x00\x20\x01\x60\x00\x74\x00\x61\x00\x6e\x00\x64\ +\x00\x61\x00\x72\x00\x64\x00\x6e\x00\x65\x00\x20\x00\x6a\x00\x65\ +\x00\x20\x00\x70\x00\x6f\x00\x64\x01\x3e\x00\x61\x00\x20\x00\x49\ +\x00\x53\x00\x4f\x00\x20\x00\x76\x01\x3e\x00\x61\x00\x76\x00\x6f\ +\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7e\x54\x68\x69\x73\ +\x20\x69\x73\x20\x74\x68\x65\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\ +\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x64\x69\x6d\x65\x6e\ +\x73\x69\x6f\x6e\x20\x74\x65\x78\x74\x73\x20\x77\x68\x65\x6e\x20\ +\x74\x68\x6f\x73\x65\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\ +\x20\x61\x72\x65\x20\x76\x65\x72\x74\x69\x63\x61\x6c\x2e\x20\x44\ +\x65\x66\x61\x75\x6c\x74\x20\x69\x73\x20\x6c\x65\x66\x74\x2c\x20\ +\x77\x68\x69\x63\x68\x20\x69\x73\x20\x74\x68\x65\x20\x49\x53\x4f\ +\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x2e\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x01\x0c\x00\x54\x00\x6f\x00\x74\x00\x6f\x00\x20\x00\x6a\x00\x65\ +\x00\x20\x00\x68\x00\x6f\x00\x64\x00\x6e\x00\x6f\x00\x74\x00\x61\ +\x00\x20\x00\x70\x00\x6f\x00\x75\x01\x7e\x00\x69\x00\x74\x00\xe1\ +\x00\x20\x00\x66\x00\x75\x00\x6e\x00\x6b\x00\x63\x00\x69\x00\x6f\ +\x00\x75\x00\x20\x00\x76\x00\x79\x00\x75\x01\x7e\x00\xed\x00\x76\ +\x00\x61\x00\x6a\x00\xfa\x00\x63\x00\x6f\x00\x75\x00\x20\x00\x74\ +\x00\x6f\x00\x6c\x00\x65\x00\x72\x00\x61\x00\x6e\x00\x63\x00\x69\ +\x00\x75\x00\x2e\x00\x0a\x00\x48\x00\x6f\x00\x64\x00\x6e\x00\x6f\ +\x00\x74\x00\x79\x00\x20\x00\x73\x00\x20\x00\x6e\x00\x69\x01\x7e\ +\x01\x61\x00\xed\x00\x6d\x00\x20\x00\x72\x00\x6f\x00\x7a\x00\x64\ +\x00\x69\x00\x65\x00\x6c\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x6b\ +\x00\x6f\x00\x20\x00\x74\x00\xe1\x00\x74\x00\x6f\x00\x20\x00\x68\ +\x00\x6f\x00\x64\x00\x6e\x00\x6f\x00\x74\x00\x61\x00\x20\x00\x73\ +\x00\x61\x00\x20\x00\x62\x00\x75\x00\x64\x00\x65\x00\x20\x00\x7a\ +\x00\x61\x00\x6f\x00\x62\x00\x63\x00\x68\x00\xe1\x00\x64\x00\x7a\ +\x00\x61\x01\x65\x00\x20\x00\x61\x00\x6b\x00\x6f\x00\x62\x00\x79\ +\x00\x20\x00\x6e\x00\x65\x00\x62\x00\x6f\x00\x6c\x00\x2e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x7b\x54\x68\x69\x73\x20\x69\x73\x20\ +\x74\x68\x65\x20\x76\x61\x6c\x75\x65\x20\x75\x73\x65\x64\x20\x62\ +\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\x74\x68\x61\x74\ +\x20\x75\x73\x65\x20\x61\x20\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\ +\x2e\x0a\x56\x61\x6c\x75\x65\x73\x20\x77\x69\x74\x68\x20\x64\x69\ +\x66\x66\x65\x72\x65\x6e\x63\x65\x73\x20\x62\x65\x6c\x6f\x77\x20\ +\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x77\x69\x6c\x6c\x20\ +\x62\x65\x20\x74\x72\x65\x61\x74\x65\x64\x20\x61\x73\x20\x73\x61\ +\x6d\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x54\x00\x6f\x00\ +\x6c\x00\x65\x00\x72\x00\x61\x00\x6e\x00\x63\x00\x69\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\x6f\x6c\x65\x72\x61\x6e\ +\x63\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x50\x00\x61\x00\x6e\ +\x00\x65\x00\x6c\x00\x20\x00\x6e\x00\xe1\x00\x73\x00\x74\x00\x72\ +\x00\x6f\x00\x6a\x00\x6f\x00\x76\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x07\x54\x6f\x6f\x6c\x62\x61\x72\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x46\x00\x54\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x6c\x00\x61\x00\ +\x74\x00\x65\x00\x20\x00\x77\x00\x68\x00\x69\x00\x74\x00\x65\x00\ +\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x63\x00\x6f\x00\ +\x6c\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\ +\x6c\x00\x61\x00\x63\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x23\x54\x72\x61\x6e\x73\x6c\x61\x74\x65\x20\x77\x68\x69\x74\x65\ +\x20\x6c\x69\x6e\x65\x20\x63\x6f\x6c\x6f\x72\x20\x74\x6f\x20\x62\ +\x6c\x61\x63\x6b\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\x00\x54\x00\x72\ +\x00\x61\x00\x6e\x00\x73\x00\x6c\x00\x61\x00\x74\x00\x65\x00\x64\ +\x00\x20\x00\x28\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x72\ +\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x26\x00\x20\x00\x64\x00\x69\ +\x00\x73\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x29\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x20\x54\x72\x61\x6e\x73\x6c\x61\x74\x65\x64\ +\x20\x28\x66\x6f\x72\x20\x70\x72\x69\x6e\x74\x20\x26\x20\x64\x69\ +\x73\x70\x6c\x61\x79\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x48\x00\x50\ +\x00\x6f\x00\x75\x01\x7e\x00\x69\x01\x65\x00\x20\x00\x70\x00\x72\ +\x00\x65\x00\x64\x00\x76\x00\x6f\x00\x6c\x00\x65\x00\x6e\x00\xfa\ +\x00\x20\x00\x66\x00\x61\x00\x72\x00\x62\x00\x75\x00\x20\x00\x61\ +\x00\x20\x01\x61\x00\xed\x00\x72\x00\x6b\x00\x75\x01\x0c\x00\x69\ +\x00\x61\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\ +\x55\x73\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\ +\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x1c\x00\x50\x00\x6f\x00\x75\x01\x7e\x00\ +\x69\x01\x65\x00\x20\x00\x6d\x00\x72\x00\x69\x00\x65\x01\x7e\x00\ +\x6b\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x55\x73\x65\ +\x20\x67\x72\x69\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\x00\x55\x00\ +\x73\x00\x65\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\ +\x61\x00\x72\x00\x64\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\ +\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x20\x55\x73\x65\x20\x73\x74\x61\x6e\x64\ +\x61\x72\x64\x20\x66\x6f\x6e\x74\x20\x73\x69\x7a\x65\x20\x66\x6f\ +\x72\x20\x74\x65\x78\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x48\x00\ +\x56\x00\x65\x00\x72\x00\x74\x00\x69\x00\x6b\x00\xe1\x00\x6c\x00\ +\x6e\x00\x61\x00\x20\x00\x6f\x00\x72\x00\x69\x00\x65\x00\x6e\x00\ +\x74\x00\xe1\x00\x63\x00\x69\x00\x61\x00\x20\x00\x74\x00\x65\x00\ +\x78\x00\x74\x00\x75\x00\x20\x00\x72\x00\x6f\x00\x7a\x00\x6d\x00\ +\x65\x00\x72\x00\x6f\x00\x76\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x24\x56\x65\x72\x74\x69\x63\x61\x6c\x20\x64\x69\x6d\x65\x6e\x73\ +\x69\x6f\x6e\x73\x20\x74\x65\x78\x74\x20\x6f\x72\x69\x65\x6e\x74\ +\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xe6\x00\x57\x00\ +\x68\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x53\x00\x56\x00\ +\x47\x00\x20\x00\x76\x00\x69\x00\x65\x00\x77\x00\x73\x00\x2c\x00\ +\x20\x00\x6d\x00\x61\x00\x6b\x00\x65\x00\x20\x00\x61\x00\x6c\x00\ +\x6c\x00\x20\x00\x77\x00\x68\x00\x69\x00\x74\x00\x65\x00\x20\x00\ +\x6c\x00\x69\x00\x6e\x00\x65\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\ +\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\x20\x00\ +\x69\x00\x6e\x00\x20\x00\x62\x00\x6c\x00\x61\x00\x63\x00\x6b\x00\ +\x2c\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x62\x00\x65\x00\ +\x74\x00\x74\x00\x65\x00\x72\x00\x20\x00\x72\x00\x65\x00\x61\x00\ +\x64\x00\x61\x00\x62\x00\x69\x00\x6c\x00\x69\x00\x74\x00\x79\x00\ +\x20\x00\x61\x00\x67\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x74\x00\ +\x20\x00\x77\x00\x68\x00\x69\x00\x74\x00\x65\x00\x20\x00\x62\x00\ +\x61\x00\x63\x00\x6b\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x6e\x00\ +\x64\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x73\x57\x68\x65\ +\x6e\x20\x65\x78\x70\x6f\x72\x74\x69\x6e\x67\x20\x53\x56\x47\x20\ +\x76\x69\x65\x77\x73\x2c\x20\x6d\x61\x6b\x65\x20\x61\x6c\x6c\x20\ +\x77\x68\x69\x74\x65\x20\x6c\x69\x6e\x65\x77\x6f\x72\x6b\x20\x61\ +\x70\x70\x65\x61\x72\x20\x69\x6e\x20\x62\x6c\x61\x63\x6b\x2c\x20\ +\x66\x6f\x72\x20\x62\x65\x74\x74\x65\x72\x20\x72\x65\x61\x64\x61\ +\x62\x69\x6c\x69\x74\x79\x20\x61\x67\x61\x69\x6e\x73\x74\x20\x77\ +\x68\x69\x74\x65\x20\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x73\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x01\x6c\x00\x4b\x00\x65\x01\x0f\x00\x20\ +\x00\x73\x00\x61\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\x75\x00\x6a\x00\xfa\x00\x20\x00\x64\x00\x72\x00\xe1\ +\x01\x7e\x00\x6b\x00\x79\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x44\ +\x00\x58\x00\x46\x00\x2c\x00\x20\x00\x74\x00\x61\x00\x6b\x00\x20\ +\x00\x73\x00\xfa\x00\x20\x00\x74\x00\x72\x00\x61\x00\x6e\x00\x73\ +\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x6f\x00\x76\x00\x61\x00\x6e\ +\x00\xe9\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x6b\x00\x72\x00\x69\ +\x00\x76\x00\x69\x00\x65\x00\x6b\x00\x2e\x00\x20\x00\x54\x00\xe1\ +\x00\x74\x00\x6f\x00\x20\x00\x68\x00\x6f\x00\x64\x00\x6e\x00\x6f\ +\x00\x74\x00\x61\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x6d\x00\x61\ +\x00\x78\x00\x20\x00\x64\x01\x3a\x01\x7e\x00\x6b\x00\x61\x00\x20\ +\x00\x6b\x00\x61\x01\x7e\x00\x64\x00\x65\x00\x6a\x00\x20\x00\x6b\ +\x00\x72\x00\x69\x00\x76\x00\x6b\x00\x79\x00\x20\x00\x73\x00\x65\ +\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x75\x00\x2e\x00\x20\ +\x00\x41\x00\x6b\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x30\x00\x2c\ +\x00\x20\x00\x74\x00\x61\x00\x6b\x00\x20\x00\x73\x00\x61\x00\x20\ +\x00\x73\x00\x20\x00\x63\x00\x65\x00\x6c\x00\x6f\x00\x75\x00\x20\ +\x00\x64\x00\x72\x00\xe1\x01\x7e\x00\x6b\x00\x6f\x00\x75\x00\x20\ +\x00\x7a\x00\x61\x00\x6f\x00\x62\x00\x63\x00\x68\x00\xe1\x00\x64\ +\x00\x7a\x00\x61\x00\x20\x00\x61\x00\x6b\x00\x6f\x00\x20\x00\x73\ +\x00\x20\x00\x72\x00\x6f\x00\x76\x00\x6e\x00\xfd\x00\x6d\x00\x20\ +\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\ +\x00\x6d\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\xc2\x57\x68\ +\x65\x6e\x20\x65\x78\x70\x6f\x72\x74\x69\x6e\x67\x20\x73\x70\x6c\ +\x69\x6e\x65\x73\x20\x74\x6f\x20\x44\x58\x46\x2c\x20\x74\x68\x65\ +\x79\x20\x61\x72\x65\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x65\ +\x64\x20\x69\x6e\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x73\x2e\x20\ +\x54\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x69\x73\x20\x74\x68\ +\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6c\x65\x6e\x67\x74\x68\ +\x20\x6f\x66\x20\x65\x61\x63\x68\x20\x6f\x66\x20\x74\x68\x65\x20\ +\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x20\x73\x65\x67\x6d\x65\x6e\x74\ +\x73\x2e\x20\x49\x66\x20\x30\x2c\x20\x74\x68\x65\x6e\x20\x74\x68\ +\x65\x20\x77\x68\x6f\x6c\x65\x20\x73\x70\x6c\x69\x6e\x65\x20\x69\ +\x73\x20\x74\x72\x65\x61\x74\x65\x64\x20\x61\x73\x20\x61\x20\x73\ +\x74\x72\x61\x69\x67\x68\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x2e\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x12\x00\x58\x00\x59\x00\x20\x00\x28\ +\x00\x68\x00\x6f\x00\x72\x00\x65\x00\x29\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x08\x58\x59\x20\x28\x54\x6f\x70\x29\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x16\x00\x58\x00\x5a\x00\x20\x00\x28\x00\x50\x00\x72\ +\x00\x65\x00\x64\x00\x6f\x00\x6b\x00\x29\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0a\x58\x5a\x20\x28\x46\x72\x6f\x6e\x74\x29\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x10\x00\x59\x00\x5a\x00\x20\x00\x28\x00\x42\ +\x00\x6f\x00\x6b\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x59\x5a\x20\x28\x53\x69\x64\x65\x29\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x06\x00\x61\x00\x6c\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x03\x61\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa0\x00\x7a\x00\x61\ +\x01\x0d\x00\x69\x00\x61\x00\x72\x00\x6b\x00\x6e\x00\x69\x00\x74\ +\x00\x65\x00\x2c\x00\x20\x00\x61\x00\x6b\x00\x20\x00\x63\x00\x68\ +\x00\x63\x00\x65\x00\x74\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x75\ +\x01\x7e\x00\x69\x01\x65\x00\x20\x00\x66\x00\x61\x00\x72\x00\x62\ +\x00\x75\x00\x2f\x01\x60\x00\xed\x00\x72\x00\x6b\x00\x75\x01\x0c\ +\x00\x69\x00\x61\x00\x72\x00\x79\x00\x20\x00\x7a\x00\x20\x00\x70\ +\x00\x61\x00\x6e\x00\x65\x00\x6c\x00\x61\x00\x20\x00\x6e\x00\xe1\ +\x00\x73\x00\x74\x00\x72\x00\x6f\x00\x6a\x00\x6f\x00\x76\x00\x20\ +\x00\x61\x00\x6b\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\ +\x00\x76\x00\x6f\x00\x6c\x00\x65\x00\x6e\x00\xfa\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x4d\x63\x68\x65\x63\x6b\x20\x74\x68\x69\x73\ +\x20\x69\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x6f\x20\ +\x75\x73\x65\x20\x74\x68\x65\x20\x63\x6f\x6c\x6f\x72\x2f\x6c\x69\ +\x6e\x65\x77\x69\x64\x74\x68\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\ +\x20\x74\x6f\x6f\x6c\x62\x61\x72\x20\x61\x73\x20\x64\x65\x66\x61\ +\x75\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x00\x63\x00\x74\x00\ +\x72\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x63\x74\x72\ +\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\xce\x00\x69\x00\x66\x00\x20\x00\ +\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x61\x00\x20\x00\x77\x00\x69\x00\x64\x00\x67\x00\x65\x00\ +\x74\x00\x20\x00\x69\x00\x6e\x00\x64\x00\x69\x00\x63\x00\x61\x00\ +\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\x74\x00\ +\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\ +\x72\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x00\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\x00\ +\x72\x00\x73\x00\x20\x00\x64\x00\x75\x00\x72\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x64\x00\x72\x00\x61\x00\x77\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x72\x00\x61\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x67\x69\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x20\x77\ +\x69\x64\x67\x65\x74\x20\x69\x6e\x64\x69\x63\x61\x74\x69\x6e\x67\ +\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x77\x6f\x72\ +\x6b\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x20\x6f\x72\x69\x65\x6e\ +\x74\x61\x74\x69\x6f\x6e\x20\x61\x70\x70\x65\x61\x72\x73\x20\x64\ +\x75\x72\x69\x6e\x67\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x6f\x70\ +\x65\x72\x61\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x00\ +\x00\x41\x00\x6b\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x7a\x00\x61\ +\x01\x0d\x00\x69\x00\x61\x00\x72\x00\x6b\x00\x6e\x00\x75\x00\x74\ +\x00\xe9\x00\x2c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x79\x00\x20\x00\x74\x00\x65\x00\x6a\x00\x20\x00\x69\ +\x00\x73\x00\x74\x00\x65\x00\x6a\x00\x20\x00\xfa\x00\x72\x00\x6f\ +\x00\x76\x00\x6e\x00\x65\x00\x20\x00\x73\x00\x70\x00\x6f\x00\x6a\ +\x00\xed\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x4e\x00\xe1\x00\x76\ +\x00\x72\x00\x68\x00\x6f\x00\x76\x00\xfd\x00\x63\x00\x68\x00\x20\ +\x00\x62\x00\x6c\x00\x6f\x00\x6b\x00\x6f\x00\x76\x00\x2c\x00\x20\ +\x01\x0d\x00\xed\x00\x6d\x00\x20\x00\x62\x00\x75\x00\x64\x00\x65\ +\x00\x20\x00\x7a\x00\x6f\x00\x62\x00\x72\x00\x61\x00\x7a\x00\x65\ +\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x72\x00\xfd\x00\x63\x00\x68\ +\x00\x6c\x00\x65\x00\x6a\x01\x61\x00\x69\x00\x65\x00\x20\x00\x61\ +\x00\x6c\x00\x65\x00\x20\x00\x69\x00\x63\x00\x68\x00\x20\x00\x65\ +\x00\x64\x00\x69\x00\x74\x00\xe1\x00\x63\x00\x69\x00\x61\x00\x20\ +\x00\x70\x00\x6f\x00\x6d\x00\x61\x00\x6c\x01\x61\x00\x69\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x93\x69\x66\x20\x74\x68\x69\ +\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\ +\x61\x6d\x65\x20\x6c\x61\x79\x65\x72\x73\x20\x77\x69\x6c\x6c\x20\ +\x62\x65\x20\x6a\x6f\x69\x6e\x65\x64\x20\x69\x6e\x74\x6f\x20\x44\ +\x72\x61\x66\x74\x20\x42\x6c\x6f\x63\x6b\x73\x2c\x20\x74\x75\x72\ +\x6e\x69\x6e\x67\x20\x74\x68\x65\x20\x64\x69\x73\x70\x6c\x61\x79\ +\x20\x66\x61\x73\x74\x65\x72\x2c\x20\x62\x75\x74\x20\x6d\x61\x6b\ +\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\x6c\x65\x73\x73\x20\x65\x61\ +\x73\x69\x6c\x79\x20\x65\x64\x69\x74\x61\x62\x6c\x65\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x80\x00\x61\x00\x6b\x00\x20\x00\x6a\x00\x65\x00\ +\x20\x00\x7a\x00\x61\x01\x0d\x00\x69\x00\x61\x00\x72\x00\x6b\x00\ +\x6e\x00\x75\x00\x74\x00\xe9\x00\x2c\x00\x20\x00\x62\x00\x75\x00\ +\x64\x00\xfa\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x00\x6f\x00\x76\x00\x61\x00\x6e\x00\xe9\x00\x20\x00\x61\x00\ +\x6a\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x79\x00\x20\x00\x70\x00\x72\x00\x69\x00\x65\x00\x73\x00\x74\x00\ +\x6f\x00\x72\x00\x75\x00\x20\x00\x76\x00\xfd\x00\x6b\x00\x72\x00\ +\x65\x00\x73\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3c\x69\ +\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\ +\x64\x2c\x20\x70\x61\x70\x65\x72\x20\x73\x70\x61\x63\x65\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x69\ +\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x6c\x00\x61\x00\x6b\x00\x20\x00\x6e\x00\x69\x00\x65\x00\ +\x20\x00\x6a\x00\x65\x00\x20\x00\x7a\x00\x61\x01\x0d\x00\x69\x00\ +\x61\x00\x72\x00\x6b\x00\x6e\x00\x75\x00\x74\x00\xe9\x00\x2c\x00\ +\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x79\x00\x2f\x00\x6d\x00\ +\x74\x00\x65\x00\x78\x00\x74\x00\x79\x00\x20\x00\x6e\x00\x65\x00\ +\x62\x00\x75\x00\x64\x00\xfa\x00\x20\x00\x69\x00\x6d\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x00\x6f\x00\x76\x00\x61\x00\x6e\x00\xe9\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x34\x69\x66\x20\x74\x68\x69\x73\ +\x20\x69\x73\x20\x75\x6e\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\ +\x65\x78\x74\x73\x2f\x6d\x74\x65\x78\x74\x73\x20\x77\x6f\x6e\x27\ +\x74\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x04\x00\x70\x00\x78\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x02\x70\x78\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x73\x00\ +\x68\x00\x69\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x05\x73\x68\x69\x66\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x70\ +\x00\x72\x00\x65\x00\x64\x00\x76\x00\x6f\x00\x6c\x00\x65\x00\x6e\ +\x00\xe1\x00\x20\x00\x66\x00\x61\x00\x72\x00\x62\x00\x61\x00\x20\ +\x00\x70\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x76\x00\xe9\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x79\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x74\x68\x65\x20\x64\x65\ +\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\ +\x6e\x65\x77\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x4c\x00\x56\x00\xfd\x00\x63\x00\x68\x00\x6f\x00\x64\x00\ +\x7a\x00\x69\x00\x61\x00\x20\x00\x66\x00\x61\x00\x72\x00\x62\x00\ +\x61\x00\x20\x00\x70\x00\x72\x00\x65\x00\x20\x00\x70\x00\x72\x00\ +\x69\x00\x63\x00\x68\x00\x79\x00\x74\x00\x65\x00\x6e\x00\xe9\x00\ +\x20\x00\x73\x00\x79\x00\x6d\x00\x62\x00\x6f\x00\x6c\x00\x79\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x22\x74\x68\x65\x20\x64\x65\x66\ +\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\ +\x6e\x61\x70\x20\x73\x79\x6d\x62\x6f\x6c\x73\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x4c\x00\x76\x00\xfd\x00\x63\x00\x68\x00\x6f\x00\x64\x00\ +\x7a\x00\x69\x00\x61\x00\x20\x01\x61\x00\xed\x00\x72\x00\x6b\x00\ +\x61\x00\x20\x01\x0d\x00\x69\x00\x61\x00\x72\x00\x79\x00\x20\x00\ +\x70\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x76\x00\xe9\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x79\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x25\x74\x68\x65\x20\x64\x65\x66\ +\x61\x75\x6c\x74\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\x66\ +\x6f\x72\x20\x6e\x65\x77\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x10\x00\x26\x00\x5a\x00\x61\x00\x76\x00\x72\ +\x00\x69\x00\x65\x01\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x26\x43\x6c\x6f\x73\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x16\x00\x26\x00\x50\x00\x6f\x00\x6b\x00\x72\ +\x00\x61\x01\x0d\x00\x6f\x00\x76\x00\x61\x01\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x26\x43\x6f\x6e\x74\x69\x6e\x75\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\ +\x26\x00\x4b\x00\x6f\x00\x70\x00\xed\x00\x72\x00\x6f\x00\x76\x00\ +\x61\x01\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x43\x6f\ +\x70\x79\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0c\x00\x26\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x26\x44\x72\x61\x66\x74\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x48\ +\x00\x6f\x00\x74\x00\x6f\x00\x76\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x07\x26\x46\x69\x6e\x69\x73\x68\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\x26\x00\x4f\x00\ +\x43\x00\x43\x00\x2d\x01\x61\x00\x74\x00\xfd\x00\x6c\x00\x20\x00\ +\x6f\x00\x64\x00\x63\x00\x68\x00\xfd\x00\x6c\x00\x6b\x00\x79\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x11\x26\x4f\x43\x43\x2d\x73\x74\ +\x79\x6c\x65\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x26\x00\x52\x00\x65\ +\x00\x6c\x00\x61\x00\x74\x00\xed\x00\x76\x00\x6e\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x26\x52\x65\x6c\x61\x74\x69\x76\ +\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x0a\x00\x26\x00\x53\x00\x70\x00\xe4\x01\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x05\x26\x55\x6e\x64\x6f\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x5a\x00\x6f\x00\x74\ +\x00\x72\x00\x69\x00\x65\x01\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x26\x57\x69\x70\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x2a\x00\x41\x00\x6b\x00\x74\x00\xed\x00\ +\x76\x00\x6e\x00\x79\x00\x20\x00\x70\x00\x72\x00\xed\x00\x6b\x00\ +\x61\x00\x7a\x00\x20\x00\x6e\x00\xe1\x00\x76\x00\x72\x00\x68\x00\ +\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x41\x63\x74\x69\x76\ +\x65\x20\x44\x72\x61\x66\x74\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5c\x00\ +\x41\x00\x6b\x00\x74\x00\xed\x00\x76\x00\x6e\x00\x79\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x6d\x00\ +\x75\x00\x73\x00\xed\x00\x20\x00\x6d\x00\x61\x01\x65\x00\x20\x00\ +\x76\x00\x69\x00\x61\x00\x63\x00\x20\x00\x61\x00\x6b\x00\x6f\x00\ +\x20\x00\x64\x00\x76\x00\x61\x00\x20\x00\x62\x00\x6f\x00\x64\x00\ +\x79\x00\x2f\x00\x75\x00\x7a\x00\x6c\x00\x79\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x33\x41\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x6d\x75\x73\x74\x20\x68\x61\x76\x65\x20\x6d\x6f\x72\ +\x65\x20\x74\x68\x61\x6e\x20\x74\x77\x6f\x20\x70\x6f\x69\x6e\x74\ +\x73\x2f\x6e\x6f\x64\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x40\x00\x50\x00\x72\x00\x69\x00\x64\ +\x00\xe1\x00\x20\x00\x62\x00\x6f\x00\x64\x00\x79\x00\x20\x00\x64\ +\x00\x6f\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x75\x00\xe1\x00\x6c\ +\x00\x6e\x00\x65\x00\x68\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x20\x41\x64\x64\x20\x70\x6f\x69\x6e\x74\x73\x20\x74\x6f\x20\ +\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\ +\x63\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0a\x00\x43\x00\x6c\x00\x6f\x00\x6e\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x08\x41\x70\x65\x72\x74\x75\x72\x65\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x55\ +\x00\x68\x00\x6f\x00\x6c\x00\x20\x00\x6f\x00\x74\x00\x76\x00\x6f\ +\x00\x72\x00\x75\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x10\x41\x70\x65\x72\x74\x75\x72\x65\x20\x61\x6e\x67\x6c\x65\ +\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x38\x00\x41\x00\x70\x00\x6c\x00\x69\x00\x6b\x00\x6f\x00\x76\ +\x00\x61\x01\x65\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x76\x00\x79\ +\x00\x62\x00\x72\x00\x61\x00\x6e\x00\xe9\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x79\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x19\x41\x70\x70\x6c\x79\x20\x74\x6f\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x4f\x00\ +\x62\x00\x6c\x00\xfa\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x03\x41\x72\x63\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0e\x00\x42\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x42\x53\x70\x6c\ +\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x42\x00\x54\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\ +\x74\x00\x79\x00\x70\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x75\x00\x20\x00\x73\x00\x61\x00\x20\x00\x6e\x00\ +\x65\x00\x64\x00\xe1\x00\x20\x00\x6f\x00\x64\x00\x73\x00\x61\x00\ +\x64\x00\x69\x01\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x43\ +\x61\x6e\x6e\x6f\x74\x20\x6f\x66\x66\x73\x65\x74\x20\x74\x68\x69\ +\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x53\ +\x00\x74\x00\x72\x00\x65\x00\x64\x00\x6f\x00\x76\x00\xe9\x00\x20\ +\x00\x58\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x65\x6e\x74\ +\x65\x72\x20\x58\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x16\x00\x5a\x00\x6d\x00\x65\x00\x6e\x00\x69\x01\x65\ +\x00\x20\x01\x61\x00\x74\x00\xfd\x00\x6c\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x43\x68\x61\x6e\x67\x65\x20\x53\x74\x79\x6c\x65\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa4\ +\x00\x5a\x00\x61\x01\x0d\x00\x69\x00\x61\x00\x72\x00\x6b\x00\x6e\ +\x00\x69\x00\x74\x00\x65\x00\x2c\x00\x20\x00\x61\x00\x6b\x00\x20\ +\x00\x6d\x00\xe1\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x20\x00\x7a\x00\x6f\x00\x62\x00\x72\x00\x61\x00\x7a\ +\x00\x69\x01\x65\x00\x20\x00\x76\x00\x79\x00\x70\x00\x6c\x00\x6e\ +\x00\x65\x00\x6e\x00\xfd\x00\x2c\x00\x20\x00\x69\x00\x6e\x00\x61\ +\x00\x6b\x00\x20\x00\x73\x00\x61\x00\x20\x00\x7a\x00\x6f\x00\x62\ +\x00\x72\x00\x61\x00\x7a\x00\xed\x00\x20\x00\x61\x00\x6b\x00\x6f\ +\x00\x20\x00\x64\x00\x72\x00\xf4\x00\x74\x00\x6f\x00\x76\x00\xfd\ +\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x28\ +\x00\x69\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5b\x43\x68\ +\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x74\x68\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x73\x68\x6f\x75\x6c\x64\x20\x61\x70\ +\x70\x65\x61\x72\x20\x61\x73\x20\x66\x69\x6c\x6c\x65\x64\x2c\x20\ +\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x69\x74\x20\x77\x69\x6c\ +\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x77\x69\x72\x65\ +\x66\x72\x61\x6d\x65\x20\x28\x69\x29\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x4b\x00\x72\x00\x75\x01\ +\x7e\x00\x6e\x00\x69\x00\x63\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x06\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x43\x00\x6f\x00\x6e\x00\ +\x74\x00\x65\x00\x78\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\ +\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\ +\x74\x65\x78\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x7a\x00\x53\x00\xfa\x00\x72\ +\x00\x61\x00\x64\x00\x6e\x00\x69\x00\x63\x00\x65\x00\x20\x00\x76\ +\x00\x7a\x00\x68\x01\x3e\x00\x61\x00\x64\x00\x6f\x00\x6d\x00\x20\ +\x00\x6e\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x6c\x00\x65\ +\x00\x64\x00\x6e\x00\xfd\x00\x20\x00\x62\x00\x6f\x00\x64\x00\x20\ +\x00\x61\x00\x6c\x00\x65\x00\x62\x00\x6f\x00\x20\x00\x61\x00\x62\ +\x00\x73\x00\x6f\x00\x6c\x00\xfa\x00\x74\x00\x6e\x00\x79\x00\x20\ +\x00\x28\x00\x70\x00\x72\x00\x69\x00\x65\x00\x73\x00\x74\x00\x6f\ +\x00\x72\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x36\x43\x6f\ +\x6f\x72\x64\x69\x6e\x61\x74\x65\x73\x20\x72\x65\x6c\x61\x74\x69\ +\x76\x65\x20\x74\x6f\x20\x6c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\ +\x20\x6f\x72\x20\x61\x62\x73\x6f\x6c\x75\x74\x65\x20\x28\x53\x50\ +\x41\x43\x45\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0a\x00\x4b\x00\xf3\x00\x70\x00\x69\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x43\x6f\x70\x79\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x43\x00\x6f\ +\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x75\ +\x00\x70\x00\x67\x00\x72\x00\x61\x00\x64\x00\x65\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x73\x00\x0a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1f\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x75\x70\x67\ +\x72\x61\x64\x65\x20\x74\x68\x65\x73\x65\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x1c\x00\x56\x00\x79\x00\x74\x00\x76\x00\x6f\x00\x72\x00\ +\x69\x01\x65\x00\x20\x00\x6f\x00\x62\x00\x6c\x00\xfa\x00\x6b\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x72\x65\x61\x74\x65\x20\ +\x41\x72\x63\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x20\x00\x56\x00\x79\x00\x74\x00\x76\x00\x6f\x00\x72\x00\ +\x69\x01\x65\x00\x20\x00\x42\x00\x53\x00\x70\x00\x6c\x00\x69\x00\ +\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x43\x72\x65\ +\x61\x74\x65\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x56\x00\x79\x00\ +\x74\x00\x76\x00\x6f\x00\x72\x00\x69\x01\x65\x00\x20\x00\x6b\x00\ +\x72\x00\x75\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\ +\x72\x65\x61\x74\x65\x20\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x44\x00\x57\x00\x69\ +\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x72\ +\x65\x61\x74\x65\x20\x44\x57\x69\x72\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x56\x00\x79\x00\x74\ +\x00\x76\x00\x6f\x00\x72\x00\x69\x01\x65\x00\x20\x00\x72\x00\x6f\ +\x00\x7a\x00\x6d\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x10\x43\x72\x65\x61\x74\x65\x20\x44\x69\x6d\x65\x6e\x73\x69\ +\x6f\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x2a\x00\x56\x00\x79\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x69\ +\x01\x65\x00\x20\x00\x6d\x00\x6e\x00\x6f\x00\x68\x00\x6f\x00\x75\ +\x00\x68\x00\x6f\x00\x6c\x00\x6e\x00\xed\x00\x6b\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0e\x43\x72\x65\x61\x74\x65\x20\x50\x6f\x6c\ +\x79\x67\x6f\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x22\x00\x56\x00\x79\x00\x74\x00\x76\x00\x6f\x00\x72\ +\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x64\x01\x3a\x01\x7e\ +\x00\x6e\x00\x69\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x43\x72\x65\x61\x74\x65\x20\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\ +\x00\x56\x00\x79\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x69\x01\x65\ +\x00\x20\x00\x54\x00\x65\x00\x78\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x54\x65\x78\x74\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\ +\x44\x00\x57\x00\x69\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x05\x44\x57\x69\x72\x65\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x44\x00\x57\x00\x69\x00\x72\ +\x00\x65\x00\x20\x00\x68\x00\x61\x00\x73\x00\x20\x00\x62\x00\x65\ +\x00\x65\x00\x6e\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\ +\x00\x64\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x44\x57\ +\x69\x72\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x63\x6c\x6f\ +\x73\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x08\x00\x4b\x00\xf3\x00\x74\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\ +\x56\x00\x7a\x00\x64\x00\x69\x00\x61\x00\x6c\x00\x65\x00\x6e\x00\ +\x6f\x00\x73\x01\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x44\ +\x69\x73\x74\x61\x6e\x63\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x4a\x00\x4e\x00\x65\x00\x70\x00\x72\x00\ +\x65\x00\x6d\x00\x69\x00\x65\x00\x74\x00\x61\x01\x65\x00\x20\x00\ +\x62\x00\x6f\x00\x64\x00\x79\x00\x20\x00\x64\x00\x6f\x00\x20\x00\ +\x6b\x00\x72\x00\x65\x00\x73\x00\x6c\x00\x69\x00\x61\x00\x63\x00\ +\x65\x00\x6a\x00\x20\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\ +\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x44\x6f\x20\x6e\x6f\ +\x74\x20\x70\x72\x6f\x6a\x65\x63\x74\x20\x70\x6f\x69\x6e\x74\x73\ +\x20\x74\x6f\x20\x61\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x70\x6c\ +\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x28\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\ +\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x14\x44\x72\x61\x66\x74\x20\x63\x72\x65\x61\x74\ +\x69\x6f\x6e\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x44\x00\x72\x00\x61\x00\ +\x66\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\ +\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ +\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x18\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\x69\x66\x69\x63\ +\x61\x74\x69\x6f\x6e\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x4f\x00\x6b\x00\ +\x72\x00\x61\x00\x6a\x00\x65\x00\x20\x00\x6e\x00\x69\x00\x65\x00\ +\x20\x00\x73\x00\xfa\x00\x20\x00\x73\x00\x70\x00\x6f\x00\x6a\x00\ +\x65\x00\x6e\x00\xe9\x00\x21\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x17\x45\x64\x67\x65\x73\x20\x64\x6f\x6e\x27\x74\x20\x69\x6e\x74\ +\x65\x72\x73\x65\x63\x74\x21\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x55\x00\x70\x00\x72\x00\x61\ +\x00\x76\x00\x69\x01\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x45\x64\x69\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0c\x00\x56\x00\x26\x00\xfd\x00\x70\x00\x6c\x01\x48\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x46\x26\x69\x6c\x6c\x65\ +\x64\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x2a\x00\x46\x00\x61\x00\x72\x00\x62\x00\x61\x00\x20\x00\x70\x00\ +\x72\x00\x65\x00\x64\x00\x6e\x00\xe9\x00\x68\x00\x6f\x00\x20\x00\ +\x70\x00\x61\x00\x6e\x00\x65\x00\x6c\x00\x75\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0a\x46\x61\x63\x65\x20\x43\x6f\x6c\x6f\x72\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4c\x00\ +\x44\x00\x6f\x00\x6b\x00\x6f\x00\x6e\x01\x0d\x00\x69\x01\x65\x00\ +\x20\x00\x61\x00\x20\x00\x75\x00\x7a\x00\x61\x00\x76\x00\x72\x00\ +\x69\x00\x65\x01\x65\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x75\x00\ +\xe1\x00\x6c\x00\x6e\x00\x75\x00\x20\x01\x0d\x00\x69\x00\x61\x00\ +\x72\x00\x75\x00\x20\x00\x28\x00\x43\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x28\x46\x69\x6e\x69\x73\x68\x65\x73\x20\x61\x6e\ +\x64\x20\x63\x6c\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x63\x75\x72\ +\x72\x65\x6e\x74\x20\x6c\x69\x6e\x65\x20\x28\x43\x29\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5c\x00\x55\x00\ +\x6b\x00\x6f\x00\x6e\x01\x0d\x00\xed\x00\x20\x00\x61\x00\x6b\x00\ +\x74\x00\x75\x00\xe1\x00\x6c\x00\x6e\x00\x65\x00\x20\x00\x6b\x00\ +\x72\x00\x65\x00\x73\x00\x6c\x00\x65\x00\x6e\x00\x69\x00\x65\x00\ +\x20\x00\x61\x00\x6c\x00\x65\x00\x62\x00\x6f\x00\x20\x00\x65\x00\ +\x64\x00\x69\x00\x74\x00\x6f\x00\x76\x00\x61\x00\x6e\x00\x69\x00\ +\x65\x00\x20\x00\x28\x00\x46\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x35\x46\x69\x6e\x69\x73\x68\x65\x73\x20\x74\x68\x65\x20\ +\x63\x75\x72\x72\x65\x6e\x74\x20\x64\x72\x61\x77\x69\x6e\x67\x20\ +\x6f\x72\x20\x65\x64\x69\x74\x69\x6e\x67\x20\x6f\x70\x65\x72\x61\ +\x74\x69\x6f\x6e\x20\x28\x46\x29\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x56\x00\x65\x01\x3e\x00\x6b\ +\x00\x6f\x00\x73\x01\x65\x00\x20\x00\x70\x00\xed\x00\x73\x00\x6d\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x46\x6f\x6e\x74\ +\x20\x53\x69\x7a\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x4e\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\ +\x20\x00\x31\x00\x20\x00\x63\x00\x69\x00\x72\x00\x63\x00\x75\x00\ +\x6c\x00\x61\x00\x72\x00\x20\x00\x65\x00\x64\x00\x67\x00\x65\x00\ +\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x61\x00\x20\x00\x63\x00\x69\x00\x72\x00\x63\x00\x6c\x00\ +\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x46\x6f\x75\ +\x6e\x64\x20\x31\x20\x63\x69\x72\x63\x75\x6c\x61\x72\x20\x65\x64\ +\x67\x65\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x63\x69\x72\ +\x63\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x62\x00\x4e\x00\xe1\x00\x6a\x00\x64\x00\x65\x00\x6e\ +\x00\xfd\x00\x20\x00\x31\x00\x20\x00\x75\x00\x7a\x00\x61\x00\x74\ +\x00\x76\x00\x6f\x00\x72\x00\x65\x00\x6e\x00\xfd\x00\x20\x00\x6e\ +\x00\xe1\x01\x0d\x00\x72\x00\x74\x00\x3a\x00\x20\x00\x76\x00\x79\ +\x00\x74\x00\x76\x00\xe1\x00\x72\x00\x61\x00\x6d\x00\x20\x00\x6a\ +\x00\x65\x00\x68\x00\x6f\x00\x20\x00\x70\x00\x6c\x00\x6f\x00\x63\ +\x00\x68\x00\x79\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\ +\x46\x6f\x75\x6e\x64\x20\x31\x20\x63\x6c\x6f\x73\x65\x64\x20\x73\ +\x6b\x65\x74\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x6d\x61\ +\x6b\x69\x6e\x67\x20\x61\x20\x66\x61\x63\x65\x20\x66\x72\x6f\x6d\ +\x20\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x4a\x00\x4e\x00\xe1\x00\x6a\x00\x64\x00\x65\x00\x6e\ +\x00\xe1\x00\x20\x00\x31\x00\x20\x00\x70\x00\x6c\x00\x6f\x00\x63\ +\x00\x68\x00\x61\x00\x3a\x00\x20\x00\x7a\x00\xed\x00\x73\x00\x6b\ +\x00\x61\x00\x76\x00\x61\x00\x6d\x00\x20\x00\x6a\x00\x65\x00\x68\ +\x00\x6f\x00\x20\x00\x64\x00\x72\x00\xf4\x00\x74\x00\x79\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x23\x46\x6f\x75\x6e\x64\x20\x31\x20\ +\x66\x61\x63\x65\x3a\x20\x65\x78\x74\x72\x61\x63\x74\x69\x6e\x67\ +\x20\x69\x74\x73\x20\x77\x69\x72\x65\x73\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5c\x00\x4e\x00\xe1\x00\ +\x6a\x00\x64\x00\x65\x00\x6e\x00\xfd\x00\x20\x00\x31\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x62\x00\ +\x65\x00\x7a\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\ +\x65\x00\x74\x00\x72\x00\x6f\x00\x76\x00\x3a\x00\x20\x00\x6e\x00\ +\x61\x00\x76\x00\x72\x00\x68\x00\x75\x00\x6a\x00\x65\x00\x6d\x00\ +\x20\x00\x68\x00\x6f\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2f\x46\x6f\x75\x6e\x64\x20\x31\x20\x6e\x6f\x6e\x2d\x70\x61\x72\ +\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\ +\x20\x64\x72\x61\x66\x74\x69\x66\x79\x69\x6e\x67\x20\x69\x74\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\ +\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\ +\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x64\x00\x67\ +\x00\x65\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\ +\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x46\x6f\x75\x6e\ +\x64\x20\x31\x20\x6f\x70\x65\x6e\x20\x65\x64\x67\x65\x3a\x20\x6d\ +\x61\x6b\x69\x6e\x67\x20\x61\x20\x6c\x69\x6e\x65\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4c\x00\x4e\x00\ +\xe1\x00\x6a\x00\x64\x00\x65\x00\x6e\x00\xfd\x00\x20\x00\x31\x00\ +\x20\x00\x6f\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x65\x00\x6e\x00\ +\xfd\x00\x20\x00\x64\x00\x72\x00\xf4\x00\x74\x00\x3a\x00\x20\x00\ +\x75\x00\x7a\x00\x61\x00\x74\x00\x76\x00\xe1\x00\x72\x00\x61\x00\ +\x6d\x00\x20\x00\x68\x00\x6f\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1e\x46\x6f\x75\x6e\x64\x20\x31\x20\x6f\x70\x65\x6e\x20\ +\x77\x69\x72\x65\x3a\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x6a\x00\x4e\x00\xe1\x00\x6a\x00\x64\x00\x65\x00\x6e\x00\xfd\x00\ +\x20\x00\x31\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\ +\x65\x00\x74\x00\x72\x00\x69\x00\x63\x00\x6b\x00\xfd\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x3a\x00\x20\x00\ +\x7a\x00\x61\x00\x73\x00\x74\x00\x61\x00\x76\x00\x75\x00\x6a\x00\ +\x65\x00\x6d\x00\x20\x00\x6a\x00\x65\x00\x68\x00\x6f\x00\x20\x00\ +\x76\x00\xe4\x00\x7a\x00\x62\x00\x79\x00\x20\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x35\x46\x6f\x75\x6e\x64\x20\x31\x20\x70\x61\x72\ +\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\ +\x62\x72\x65\x61\x6b\x69\x6e\x67\x20\x69\x74\x73\x20\x64\x65\x70\ +\x65\x6e\x64\x65\x6e\x63\x69\x65\x73\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5c\x00\x4e\x00\x61\x01\x61\ +\x00\x69\x00\x65\x00\x6c\x00\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\ +\x00\x31\x00\x20\x00\x75\x00\x70\x00\x65\x00\x76\x00\x6e\x00\x69\ +\x00\x74\x00\x65\x01\x3e\x00\x6e\x00\xfd\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x3a\x00\x20\x00\x75\x00\x70\ +\x00\x65\x00\x76\x01\x48\x00\x75\x00\x6a\x00\x65\x00\x6d\x00\x20\ +\x00\x68\x00\x6f\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\ +\x46\x6f\x75\x6e\x64\x20\x31\x20\x73\x6f\x6c\x69\x64\x69\x66\x69\ +\x63\x61\x62\x6c\x65\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x73\x6f\ +\x6c\x69\x64\x69\x66\x79\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x4e\x00\ +\xe1\x00\x6a\x00\x64\x00\x65\x00\x6e\x00\xe9\x00\x20\x00\x32\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x79\x00\ +\x3a\x00\x20\x00\x7a\x00\x61\x00\x69\x00\x73\x01\x65\x00\x75\x00\ +\x6a\x00\x65\x00\x6d\x00\x20\x00\x69\x00\x63\x00\x68\x00\x20\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x46\x6f\x75\x6e\x64\x20\x32\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x66\x75\x73\x69\x6e\x67\ +\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x42\x00\x4e\x00\xe1\x00\x6a\x00\x64\x00\x65\ +\x00\x6e\x00\xe9\x00\x20\x00\x32\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x3a\x00\x20\x00\x72\x00\x6f\ +\x00\x7a\x00\x64\x00\x65\x01\x3e\x00\x75\x00\x6a\x00\x65\x00\x6d\ +\x00\x20\x00\x69\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x22\x46\x6f\x75\x6e\x64\x20\x32\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x3a\x20\x73\x75\x62\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x74\ +\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x46\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\ +\x00\x61\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\ +\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x3a\x00\x20\x00\x6d\ +\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\ +\x00\x66\x00\x61\x00\x63\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x23\x46\x6f\x75\x6e\x64\x20\x61\x20\x63\x6c\x6f\x73\ +\x65\x64\x20\x77\x69\x72\x65\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\ +\x61\x20\x66\x61\x63\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x70\x00\x4e\x00\xe1\x00\x6a\x00\x64\x00\ +\x65\x00\x6e\x00\xe9\x00\x20\x00\x73\x00\x6b\x00\x75\x00\x70\x00\ +\x69\x00\x6e\x00\x79\x00\x3a\x00\x20\x00\x75\x00\x7a\x00\x61\x00\ +\x74\x00\x76\x00\xe1\x00\x72\x00\x61\x00\x6d\x00\x20\x00\x76\x00\ +\x20\x00\x6e\x00\x69\x00\x63\x00\x68\x00\x20\x00\x6b\x00\x61\x01\ +\x7e\x00\x64\x00\xfd\x00\x20\x00\x6f\x00\x74\x00\x76\x00\x6f\x00\ +\x72\x00\x65\x00\x6e\x00\xfd\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2e\x46\x6f\x75\x6e\x64\x20\x67\x72\x6f\x75\x70\x73\x3a\x20\x63\ +\x6c\x6f\x73\x69\x6e\x67\x20\x65\x61\x63\x68\x20\x6f\x70\x65\x6e\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x73\x69\x64\x65\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5e\x00\ +\x4e\x00\xe1\x00\x6a\x00\x64\x00\x65\x00\x6e\x00\xe9\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x20\x00\ +\x6f\x00\x62\x00\x73\x00\x61\x00\x68\x00\x75\x00\x6a\x00\xfa\x00\ +\x63\x00\x65\x00\x20\x00\x6b\x00\x72\x00\x69\x00\x76\x00\x6b\x00\ +\x79\x00\x3a\x00\x20\x00\x66\x00\x69\x00\x78\x00\x75\x00\x6a\x00\ +\x65\x00\x6d\x00\x20\x00\x69\x00\x63\x00\x68\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x2d\x46\x6f\x75\x6e\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\ +\x63\x75\x72\x76\x65\x73\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\ +\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x4c\x00\x4e\x00\xe1\x00\x6a\x00\x64\x00\x65\x00\x6e\ +\x00\x65\x00\x20\x00\x69\x00\x62\x00\x61\x00\x20\x00\x64\x00\x72\ +\x00\xf4\x00\x74\x00\x79\x00\x3a\x00\x20\x00\x7a\x00\xed\x00\x73\ +\x00\x6b\x00\x61\x00\x76\x00\x61\x00\x6d\x00\x20\x00\x69\x00\x63\ +\x00\x68\x00\x20\x00\x6f\x00\x6b\x00\x72\x00\x61\x00\x6a\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x46\x6f\x75\x6e\x64\x20\ +\x6f\x6e\x6c\x79\x20\x77\x69\x72\x65\x73\x3a\x20\x65\x78\x74\x72\ +\x61\x63\x74\x69\x6e\x67\x20\x74\x68\x65\x69\x72\x20\x65\x64\x67\ +\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x4c\x00\x4e\x00\xe1\x00\x6a\x00\x64\x00\x65\x00\x6e\x00\ +\xfd\x00\x63\x00\x68\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x6b\x00\ +\x6f\x01\x3e\x00\x6b\x00\x6f\x00\x20\x00\x68\x00\x72\x00\xe1\x00\ +\x6e\x00\x3a\x00\x20\x00\x70\x00\x72\x00\x69\x00\x70\x00\xe1\x00\ +\x6a\x00\x61\x00\x6d\x00\x20\x00\x69\x00\x63\x00\x68\x00\x20\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x21\x46\x6f\x75\x6e\x64\x20\x73\ +\x65\x76\x65\x72\x61\x6c\x20\x65\x64\x67\x65\x73\x3a\x20\x77\x69\ +\x72\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4e\x00\x4e\x00\xe1\x00\x6a\ +\x00\x64\x00\x65\x00\x6e\x00\xfd\x00\x63\x00\x68\x00\x20\x00\x76\ +\x00\x69\x00\x61\x00\x63\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x70\ +\x00\x6c\x00\xf4\x00\x63\x00\x68\x00\x3a\x00\x20\x00\x72\x00\x6f\ +\x00\x7a\x00\x64\x00\x65\x01\x3e\x00\x75\x00\x6a\x00\x65\x00\x6d\ +\x00\x20\x00\x69\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x24\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\ +\x66\x61\x63\x65\x73\x3a\x20\x73\x70\x6c\x69\x74\x74\x69\x6e\x67\ +\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x68\x00\x4e\x00\xe1\x00\x6a\x00\x64\x00\x65\ +\x00\x6e\x00\xfd\x00\x63\x00\x68\x00\x20\x00\x6e\x00\x69\x00\x65\ +\x00\x6b\x00\x6f\x01\x3e\x00\x6b\x00\x6f\x00\x20\x00\x6e\x00\x65\ +\x00\x70\x00\x72\x00\x69\x00\x70\x00\x6f\x00\x6a\x00\x65\x00\x6e\ +\x00\xfd\x00\x63\x00\x68\x00\x20\x00\x68\x00\x72\x00\xe1\x00\x6e\ +\x00\x3a\x00\x20\x00\x74\x00\x76\x00\x6f\x00\x72\x00\xed\x00\x6d\ +\x00\x20\x00\x76\x00\xe4\x00\x7a\x00\x62\x00\x79\x00\x20\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x33\x46\x6f\x75\x6e\x64\x20\x73\x65\ +\x76\x65\x72\x61\x6c\x20\x6e\x6f\x6e\x2d\x63\x6f\x6e\x6e\x65\x63\ +\x74\x65\x64\x20\x65\x64\x67\x65\x73\x3a\x20\x6d\x61\x6b\x69\x6e\ +\x67\x20\x63\x6f\x6d\x70\x6f\x75\x6e\x64\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x70\x00\x4e\x00\xe1\x00\ +\x6a\x00\x64\x00\x65\x00\x6e\x00\xfd\x00\x63\x00\x68\x00\x20\x00\ +\x6e\x00\x69\x00\x65\x00\x6b\x00\x6f\x01\x3e\x00\x6b\x00\x6f\x00\ +\x20\x00\x6e\x00\x65\x00\x70\x00\x72\x00\x69\x00\x72\x00\x61\x00\ +\x64\x00\x65\x00\x6e\x00\xfd\x00\x63\x00\x68\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x6f\x00\x76\x00\x3a\x00\ +\x20\x00\x74\x00\x76\x00\x6f\x00\x72\x00\xed\x00\x6d\x00\x20\x00\ +\x76\x00\xe4\x00\x7a\x00\x62\x00\x79\x00\x20\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x35\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\ +\x61\x6c\x20\x6e\x6f\x6e\x2d\x74\x72\x65\x61\x74\x61\x62\x6c\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x6d\x61\x6b\x69\x6e\x67\ +\x20\x63\x6f\x6d\x70\x6f\x75\x6e\x64\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x88\x00\x4e\x00\xe1\x00\x6a\ +\x00\x64\x00\x65\x00\x6e\x00\xfd\x00\x63\x00\x68\x00\x20\x00\x6e\ +\x00\x69\x00\x65\x00\x6b\x00\x6f\x01\x3e\x00\x6b\x00\x6f\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x6f\x00\x76\ +\x00\x20\x00\x61\x00\x6c\x00\x65\x00\x62\x00\x6f\x00\x20\x00\x70\ +\x00\x6c\x00\xf4\x00\x63\x00\x68\x00\x3a\x00\x20\x00\x74\x00\x76\ +\x00\x6f\x00\x72\x00\xed\x00\x6d\x00\x20\x00\x70\x00\x61\x00\x72\ +\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x63\x00\x6b\ +\x00\xe9\x00\x20\x00\x70\x00\x6c\x00\x6f\x00\x63\x00\x68\x00\x79\ +\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x39\x46\x6f\x75\x6e\ +\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x6f\x72\x20\x66\x61\x63\x65\x73\x3a\x20\x6d\x61\x6b\x69\ +\x6e\x67\x20\x61\x20\x70\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\ +\x66\x61\x63\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x54\x00\x4e\x00\xe1\x00\x6a\x00\x64\x00\x65\x00\ +\x6e\x00\xfd\x00\x63\x00\x68\x00\x20\x00\x6e\x00\x69\x00\x65\x00\ +\x6b\x00\x6f\x01\x3e\x00\x6b\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x6f\x00\x76\x00\x3a\x00\x20\x00\ +\x7a\x01\x3e\x00\x75\x01\x0d\x00\x75\x00\x6a\x00\x65\x00\x6d\x00\ +\x20\x00\x69\x00\x63\x00\x68\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x23\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x66\x75\x73\x69\x6e\x67\ +\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x68\x00\x4e\x00\xe1\x00\x6a\x00\x64\x00\x65\ +\x00\x6e\x00\xfd\x00\x63\x00\x68\x00\x20\x00\x76\x00\x69\x00\x61\ +\x00\x63\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x00\x6f\x00\x76\x00\x3a\x00\x20\x00\x72\ +\x00\x6f\x00\x7a\x00\x64\x00\x65\x01\x3e\x00\x75\x00\x6a\x00\x65\ +\x00\x6d\x00\x20\x00\x69\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x64\ +\x00\x20\x00\x70\x00\x72\x00\x76\x00\xe9\x00\x68\x00\x6f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x3b\x46\x6f\x75\x6e\x64\x20\x73\x65\ +\x76\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x73\ +\x75\x62\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\ +\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x66\x69\x72\x73\x74\x20\x6f\ +\x6e\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x8e\x00\x41\x00\x6b\x00\x20\x00\x6a\x00\x65\x00\x20\x00\ +\x7a\x00\x61\x01\x0d\x00\x69\x00\x61\x00\x72\x00\x6b\x00\x6e\x00\ +\x75\x00\x74\x00\xe9\x00\x2c\x00\x20\x00\x74\x00\x61\x00\x6b\x00\ +\x20\x00\x73\x00\x61\x00\x20\x00\x6e\x00\x61\x00\x6d\x00\x69\x00\ +\x65\x00\x73\x00\x74\x00\x6f\x00\x20\x00\x6b\x00\x6c\x00\x61\x00\ +\x73\x00\x69\x00\x63\x00\x6b\x00\xe9\x00\x68\x00\x6f\x00\x20\x00\ +\x70\x00\x6f\x00\x75\x01\x7e\x00\x69\x00\x6a\x00\x65\x00\x20\x00\ +\x4f\x00\x43\x00\x43\x00\x20\x01\x61\x00\x74\x00\xfd\x00\x6c\x00\ +\x20\x00\x6f\x00\x64\x00\x63\x00\x68\x00\xfd\x00\x6c\x00\x6b\x00\ +\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x49\x66\x20\x63\x68\ +\x65\x63\x6b\x65\x64\x2c\x20\x61\x6e\x20\x4f\x43\x43\x2d\x73\x74\ +\x79\x6c\x65\x20\x6f\x66\x66\x73\x65\x74\x20\x77\x69\x6c\x6c\x20\ +\x62\x65\x20\x70\x65\x72\x66\x6f\x72\x6d\x65\x64\x20\x69\x6e\x73\ +\x74\x65\x61\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x63\x6c\x61\x73\ +\x73\x69\x63\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x86\x00\x41\x00\x6b\x00\x20\ +\x00\x6a\x00\x65\x00\x20\x00\x7a\x00\x61\x01\x0d\x00\x69\x00\x61\ +\x00\x72\x00\x6b\x00\x6e\x00\x75\x00\x74\x00\xe9\x00\x2c\x00\x20\ +\x00\x70\x00\x72\x00\xed\x00\x6b\x00\x61\x00\x7a\x00\x20\x00\x73\ +\x00\x61\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6b\x00\x6f\x00\x6e\ +\x01\x0d\x00\xed\x00\x20\x00\x6b\x00\xfd\x00\x6d\x00\x20\x00\x7a\ +\x00\x6e\x00\x6f\x00\x76\x00\x61\x00\x20\x00\x6e\x00\x65\x00\x73\ +\x00\x74\x00\x6c\x00\x61\x01\x0d\x00\xed\x00\x74\x00\x65\x00\x20\ +\x00\x74\x00\x6c\x00\x61\x01\x0d\x00\xed\x00\x74\x00\x6b\x00\x6f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4c\x49\x66\x20\x63\x68\x65\ +\x63\x6b\x65\x64\x2c\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x77\x69\ +\x6c\x6c\x20\x6e\x6f\x74\x20\x66\x69\x6e\x69\x73\x68\x20\x75\x6e\ +\x74\x69\x6c\x20\x79\x6f\x75\x20\x70\x72\x65\x73\x73\x20\x74\x68\ +\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x62\x75\x74\x74\x6f\x6e\ +\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x80\x00\x41\x00\x6b\x00\x20\x00\x6a\x00\x65\ +\x00\x20\x00\x7a\x00\x61\x01\x0d\x00\x69\x00\x61\x00\x72\x00\x6b\ +\x00\x6e\x00\x75\x00\x74\x00\xe9\x00\x2c\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x20\x00\x6e\x00\x65\ +\x00\x62\x00\x75\x00\x64\x00\xfa\x00\x20\x00\x70\x00\x72\x00\x65\ +\x00\x73\x00\xfa\x00\x76\x00\x61\x00\x6e\x00\xe9\x00\x2c\x00\x20\ +\x00\x61\x00\x6c\x00\x65\x00\x20\x00\x73\x00\x6b\x00\x6f\x00\x70\ +\x00\xed\x00\x72\x00\x6f\x00\x76\x00\x61\x00\x6e\x00\xe9\x00\x20\ +\x00\x28\x00\x43\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\ +\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x63\x6f\x70\x69\ +\x65\x64\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x6d\x6f\ +\x76\x65\x64\x20\x28\x43\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x26\x00\x4e\x00\x61\x00\x69\x00\x6e\x01\ +\x61\x00\x74\x00\x61\x00\x6c\x00\x6f\x00\x76\x00\x61\x00\x6e\x00\ +\xe9\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x72\x00\xe1\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x10\x49\x6e\x73\x74\x61\x6c\x6c\x65\x64\ +\x20\x4d\x61\x63\x72\x6f\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x36\x00\x50\x00\x6f\x00\x73\x00\x6c\x00\ +\x65\x00\x64\x00\x6e\x00\xfd\x00\x20\x00\x62\x00\x6f\x00\x64\x00\ +\x20\x00\x62\x00\x6f\x00\x6c\x00\x20\x00\x6f\x00\x64\x00\x73\x00\ +\x74\x00\x72\x00\xe1\x00\x6e\x00\x65\x00\x6e\x00\xfd\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1c\x4c\x61\x73\x74\x20\x70\x6f\x69\x6e\ +\x74\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x72\x65\x6d\x6f\x76\ +\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0a\x01\x0d\x00\x69\x00\x61\x00\x72\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x46\x00\x61\x00\ +\x72\x00\x62\x00\x61\x00\x20\x01\x0d\x00\x69\x00\x61\x00\x72\x00\ +\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4c\x69\x6e\x65\x20\ +\x43\x6f\x6c\x6f\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x18\x00\x48\x00\x72\x00\xfa\x00\x62\x00\x6b\x00\ +\x61\x00\x20\x01\x0d\x00\x69\x00\x61\x00\x72\x00\x79\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x4c\x69\x6e\x65\x20\x57\x69\x64\x74\ +\x68\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x10\x00\x50\x00\x72\x00\x65\x00\x73\x00\x75\x00\x6e\x00\xfa\x01\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4d\x6f\x76\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\x00\ +\x4e\x00\x6f\x00\x20\x00\x6d\x00\x6f\x00\x72\x00\x65\x00\x20\x00\ +\x64\x00\x6f\x00\x77\x00\x6e\x00\x67\x00\x72\x00\x61\x00\x64\x00\ +\x65\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x73\x00\x69\x00\x62\x00\ +\x6c\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x4e\ +\x6f\x20\x6d\x6f\x72\x65\x20\x64\x6f\x77\x6e\x67\x72\x61\x64\x65\ +\x20\x70\x6f\x73\x73\x69\x62\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4a\x00\x4e\x00\x6f\x00\x20\ +\x00\x75\x00\x70\x00\x67\x00\x72\x00\x61\x00\x64\x00\x65\x00\x20\ +\x00\x61\x00\x76\x00\x61\x00\x69\x00\x6c\x00\x61\x00\x62\x00\x6c\ +\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x25\x4e\x6f\ +\x20\x75\x70\x67\x72\x61\x64\x65\x20\x61\x76\x61\x69\x6c\x61\x62\ +\x6c\x65\x20\x66\x6f\x72\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\ +\x63\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0c\x01\x7d\x00\x69\x00\x61\x00\x64\x00\x6e\x00\x79\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x50\x00\ +\x6f\x01\x0d\x00\x65\x00\x74\x00\x20\x00\x73\x00\x74\x00\x72\x00\ +\xe1\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4e\x75\x6d\ +\x62\x65\x72\x20\x6f\x66\x20\x73\x69\x64\x65\x73\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x4f\x00\x64\ +\x00\x73\x00\x61\x00\x64\x00\x65\x00\x6e\x00\x69\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4e\x00\x4e\ +\x00\x61\x00\x72\x00\x61\x00\x7a\x00\x20\x00\x6a\x00\x65\x00\x20\ +\x00\x6d\x00\x6f\x01\x7e\x00\x6e\x00\xe9\x00\x20\x00\x6f\x00\x64\ +\x00\x73\x00\x61\x00\x64\x00\x69\x01\x65\x00\x20\x00\x6c\x00\x65\ +\x00\x6e\x00\x20\x00\x6a\x00\x65\x00\x64\x00\x65\x00\x6e\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x2a\x4f\x66\x66\x73\x65\x74\x20\x6f\x6e\x6c\ +\x79\x20\x77\x6f\x72\x6b\x73\x20\x6f\x6e\x20\x6f\x6e\x65\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x61\x74\x20\x61\x20\x74\x69\x6d\x65\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x52\ +\x00\x4f\x00\x6e\x00\x65\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\ +\x00\x20\x00\x69\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\ +\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x61\x00\x72\x00\x2c\x00\x20\ +\x00\x75\x00\x70\x00\x67\x00\x72\x00\x61\x00\x64\x00\x65\x00\x20\ +\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x64\x00\x6f\x00\x6e\x00\x65\ +\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x4f\x6e\x65\x20\ +\x77\x69\x72\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x70\x6c\x61\x6e\ +\x61\x72\x2c\x20\x75\x70\x67\x72\x61\x64\x65\x20\x6e\x6f\x74\x20\ +\x64\x6f\x6e\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x1a\x00\x56\x00\x79\x00\x62\x00\x72\x00\x61\x01\ +\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x50\x69\x63\x6b\x20\x4f\x62\ +\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x58\x00\x56\x00\x79\x00\x62\x00\x72\x00\x61\x01\x65\ +\x00\x20\x00\x6c\x00\xed\x00\x63\x00\x20\x00\x6e\x00\x61\x00\x20\ +\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x6f\x00\x76\x00\x61\ +\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x6b\x00\x72\x00\x65\x00\x73\ +\x00\x6c\x00\x69\x00\x61\x00\x63\x00\x65\x00\x6a\x00\x20\x00\x72\ +\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\x79\x00\x20\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x28\x50\x69\x63\x6b\x20\x61\x20\x66\x61\x63\ +\x65\x20\x74\x6f\x20\x64\x65\x66\x69\x6e\x65\x20\x74\x68\x65\x20\ +\x64\x72\x61\x77\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x56\ +\x00\x79\x00\x62\x00\x72\x00\x61\x01\x65\x00\x20\x00\x6f\x00\x74\ +\x00\x76\x00\x6f\x00\x72\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0f\x50\x69\x63\x6b\x20\x61\x70\x65\x72\x74\x75\x72\ +\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x2c\x00\x56\x00\x79\x00\x62\x00\x65\x00\x72\x00\x74\x00\ +\x65\x00\x20\x00\x7a\x00\xe1\x00\x6b\x00\x6c\x00\x61\x00\x64\x00\ +\x6e\x00\xfd\x00\x20\x00\x75\x00\x68\x00\x6f\x00\x6c\x00\x3a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\x62\x61\ +\x73\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x56\x00\x79\x00\x62\ +\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x7a\x00\xe1\x00\x6b\ +\x00\x6c\x00\x61\x00\x64\x00\x6e\x00\xfd\x00\x20\x00\x62\x00\x6f\ +\x00\x64\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\ +\x63\x6b\x20\x62\x61\x73\x65\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\ +\x56\x00\xfd\x00\x62\x00\x65\x00\x72\x00\x20\x00\x73\x00\x74\x00\ +\x72\x00\x65\x00\x64\x00\x6f\x00\x76\x00\xe9\x00\x68\x00\x6f\x00\ +\x20\x00\x62\x00\x6f\x00\x64\x00\x75\x00\x3a\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x13\x50\x69\x63\x6b\x20\x63\x65\x6e\x74\ +\x65\x72\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x56\x00\x79\x00\x62\ +\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x76\x00\x7a\x00\x64\ +\x00\x69\x00\x61\x00\x6c\x00\x65\x00\x6e\x00\x6f\x00\x73\x01\x65\ +\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x50\x69\ +\x63\x6b\x20\x64\x69\x73\x74\x61\x6e\x63\x65\x3a\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x56\x00\ +\x79\x00\x62\x00\x65\x00\x72\x00\x61\x01\x65\x00\x20\x00\x6b\x00\ +\x6f\x00\x6e\x00\x63\x00\x6f\x00\x76\x00\xfd\x00\x20\x00\x62\x00\ +\x6f\x00\x64\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x50\ +\x69\x63\x6b\x20\x65\x6e\x64\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\ +\x56\x00\x79\x00\x62\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\ +\x70\x00\x72\x00\x76\x00\xfd\x00\x20\x00\x62\x00\x6f\x00\x64\x00\ +\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\ +\x6b\x20\x66\x69\x72\x73\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\x00\ +\x56\x00\x79\x00\x62\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\ +\x75\x00\x6d\x00\x69\x00\x65\x00\x73\x00\x74\x00\x6e\x00\x65\x00\ +\x6e\x00\x69\x00\x65\x00\x20\x00\x62\x00\x6f\x00\x64\x00\x75\x00\ +\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\ +\x6b\x20\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x20\x70\x6f\x69\x6e\x74\ +\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x82\x00\x56\x00\x79\x00\x62\x00\x65\x00\x72\x00\x74\x00\x65\ +\x00\x20\x00\x64\x00\x61\x00\x6c\x01\x61\x00\xed\x00\x20\x00\x62\ +\x00\x6f\x00\x64\x00\x2c\x00\x20\x00\x61\x00\x6c\x00\x65\x00\x62\ +\x00\x6f\x00\x20\x00\x28\x00\x46\x00\x29\x00\x20\x00\x70\x00\x72\ +\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x6e\x00\x69\x00\x65\x00\x63\ +\x00\x20\x00\x61\x00\x6c\x00\x65\x00\x62\x00\x6f\x00\x20\x00\x28\ +\x00\x43\x00\x29\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x20\x00\x7a\ +\x00\x61\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x65\x00\x6e\x00\x69\ +\x00\x65\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x50\x69\ +\x63\x6b\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x2c\x20\x6f\ +\x72\x20\x28\x46\x29\x69\x6e\x69\x73\x68\x20\x6f\x72\x20\x28\x43\ +\x29\x6c\x6f\x73\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x24\x00\x56\x00\x79\x00\x62\x00\x65\x00\ +\x72\x00\x74\x00\x65\x00\x20\x00\x64\x00\x61\x01\x3e\x01\x61\x00\ +\xed\x00\x20\x00\x62\x00\x6f\x00\x64\x00\x3a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\x6e\x65\x78\x74\x20\x70\ +\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x30\x00\x56\x00\xfd\x00\x62\x00\x65\x00\x72\ +\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x74\x00\x69\x01\x3e\x00\x61\ +\x00\x68\x00\x6c\x00\xe9\x00\x68\x00\x6f\x00\x20\x00\x62\x00\x6f\ +\x00\x64\x00\x75\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\ +\x50\x69\x63\x6b\x20\x6f\x70\x70\x6f\x73\x69\x74\x65\x20\x70\x6f\ +\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x20\x00\x56\x00\x79\x00\x62\x00\x65\x00\x72\x00\ +\x74\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x6f\x00\x6d\x00\ +\x65\x00\x72\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x50\ +\x69\x63\x6b\x20\x72\x61\x64\x69\x75\x73\x3a\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x56\x00\x79\ +\x00\x62\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x75\x00\x68\ +\x00\x6f\x00\x6c\x00\x20\x00\x6e\x00\x61\x00\x74\x00\x6f\x01\x0d\ +\x00\x65\x00\x6e\x00\x69\x00\x61\x00\x3a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x72\x6f\x74\x61\x74\x69\x6f\ +\x6e\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x56\x00\x79\x00\x62\x00\ +\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x73\x00\x74\x00\x72\x00\ +\x65\x00\x64\x00\x20\x00\x6f\x00\x74\x00\xe1\x01\x0d\x00\x61\x00\ +\x6e\x00\x69\x00\x61\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x16\x50\x69\x63\x6b\x20\x72\x6f\x74\x61\x74\x69\x6f\x6e\x20\x63\ +\x65\x6e\x74\x65\x72\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x20\x00\x56\x00\x79\x00\x62\x00\x65\x00\ +\x72\x00\x74\x00\x65\x00\x20\x00\x6d\x00\x65\x00\x72\x00\xed\x00\ +\x74\x00\x6b\x00\x6f\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x13\x50\x69\x63\x6b\x20\x73\x63\x61\x6c\x65\x20\x66\x61\x63\x74\ +\x6f\x72\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x32\x00\x56\x00\x79\x00\x62\x00\x65\x00\x72\x00\x74\ +\x00\x65\x00\x20\x00\x70\x00\x6f\x01\x0d\x00\x69\x00\x61\x00\x74\ +\x00\x6f\x01\x0d\x00\x6e\x00\xfd\x00\x20\x00\x75\x00\x68\x00\x6f\ +\x00\x6c\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\ +\x50\x69\x63\x6b\x20\x73\x74\x61\x72\x74\x20\x61\x6e\x67\x6c\x65\ +\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x34\x00\x56\x00\x79\x00\x62\x00\x65\x00\x72\x00\x61\x01\x65\ +\x00\x20\x00\x76\x00\xfd\x00\x63\x00\x68\x00\x6f\x00\x64\x00\x69\ +\x00\x73\x00\x6b\x00\x6f\x00\x76\x00\xfd\x00\x20\x00\x62\x00\x6f\ +\x00\x64\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\ +\x50\x69\x63\x6b\x20\x73\x74\x61\x72\x74\x20\x70\x6f\x69\x6e\x74\ +\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x06\x00\x42\x00\x6f\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0e\x00\x50\x00\x6f\x00\x6c\x00\x79\x00\ +\x67\x00\xf3\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x50\ +\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0e\x00\x50\x00\x6f\x00\x6c\x00\x6f\x00\x6d\ +\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x61\ +\x64\x69\x75\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x1a\x00\x50\x00\x6f\x00\x6c\x00\x6f\x00\x6d\x00\x65\ +\x00\x72\x00\x20\x00\x6b\x00\x72\x00\x75\x00\x68\x00\x75\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x10\x52\x61\x64\x69\x75\x73\x20\x6f\ +\x66\x20\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x10\x00\x4f\x00\x62\x00\x64\x01\x3a\ +\x01\x7e\x00\x6e\x00\x69\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x09\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\x00\x4f\x00\x64\x00\ +\x73\x00\x74\x00\x72\x00\xe1\x00\x6e\x00\x69\x00\x20\x00\x62\x00\ +\x6f\x00\x64\x00\x79\x00\x20\x00\x7a\x00\x20\x00\x61\x00\x6b\x00\ +\x74\x00\x75\x00\xe1\x00\x6c\x00\x6e\x00\x65\x00\x68\x00\x6f\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x25\x52\x65\x6d\x6f\x76\x65\x20\ +\x70\x6f\x69\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\ +\x63\x75\x72\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x4f\ +\x00\x74\x00\x6f\x01\x0d\x00\x69\x01\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x52\x6f\x74\x61\x74\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x01\x60\x00\x6b\x00\xe1\ +\x00\x6c\x00\x61\x00\x2c\x00\x20\x00\x7a\x00\x6d\x00\x65\x00\x6e\ +\x00\x61\x00\x20\x00\x76\x00\x65\x01\x3e\x00\x6b\x00\x6f\x00\x73\ +\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x53\x63\ +\x61\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x1a\x00\x56\x00\x79\x00\x62\x00\x72\x00\x61\x01\x65\x00\ +\x20\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\x75\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0c\x53\x65\x6c\x65\x63\x74\x20\x50\x6c\ +\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x20\x00\x56\x00\x79\x00\x62\x00\x72\x00\x61\x01\x65\x00\ +\x20\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\x75\x00\x20\x00\ +\x58\x00\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\ +\x65\x63\x74\x20\x58\x59\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x56\x00\x79\ +\x00\x62\x00\x72\x00\x61\x01\x65\x00\x20\x00\x72\x00\x6f\x00\x76\ +\x00\x69\x00\x6e\x00\x75\x00\x20\x00\x58\x00\x5a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x58\x5a\x20\ +\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x20\x00\x56\x00\x79\x00\x62\x00\x72\x00\x61\x01\ +\x65\x00\x20\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\x75\x00\ +\x20\x00\x59\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\ +\x65\x6c\x65\x63\x74\x20\x59\x5a\x20\x70\x6c\x61\x6e\x65\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4a\x00\x56\ +\x00\x79\x00\x62\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x2c\x00\x20\x00\x6b\ +\x00\x74\x00\x6f\x00\x72\x00\xfd\x00\x20\x00\x63\x00\x68\x00\x63\ +\x00\x65\x00\x74\x00\x65\x00\x20\x00\x70\x00\x72\x00\x65\x00\x73\ +\x00\x75\x00\x6e\x00\xfa\x01\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x19\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x74\x6f\x20\x6d\x6f\x76\x65\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\x00\x56\x00\x79\x00\ +\x62\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x6e\x00\x61\x00\x20\x00\ +\x6f\x00\x64\x00\x73\x00\x61\x00\x64\x00\x65\x00\x6e\x00\x69\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x53\x65\x6c\x65\x63\ +\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x6f\ +\x66\x66\x73\x65\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x46\x00\x56\x00\x79\x00\x62\x00\x65\x00\x72\ +\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x2c\x00\x20\x00\x6b\x00\x74\x00\x6f\x00\x72\x00\xfd\ +\x00\x20\x00\x63\x00\x68\x00\x63\x00\x65\x00\x74\x00\x65\x00\x20\ +\x00\x6f\x00\x74\x00\x6f\x01\x0d\x00\x69\x01\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1b\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x72\x6f\x74\x61\x74\x65\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x40\x00\x56\x00\x79\x00\x62\x00\x65\x00\x72\x00\x74\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\ +\x6b\x00\x75\x00\x20\x00\x7a\x00\x6d\x00\x65\x00\x6e\x00\x65\x00\ +\x20\x00\x76\x00\x65\x01\x3e\x00\x6b\x00\x6f\x00\x73\x00\x74\x00\ +\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\x65\x6c\x65\x63\ +\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x73\ +\x63\x61\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x4a\x00\x56\x00\x79\x00\x62\x00\x65\x00\x72\x00\ +\x74\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\x72\x00\x65\x00\ +\x7a\x00\x61\x00\x6e\x00\x69\x00\x65\x00\x2f\x00\x72\x00\x6f\x00\ +\x7a\x01\x61\x00\xed\x00\x72\x00\x65\x00\x6e\x00\x69\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x20\x53\x65\x6c\x65\x63\x74\x20\ +\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x74\x72\x69\ +\x6d\x2f\x65\x78\x74\x65\x6e\x64\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x36\x00\x56\x00\x79\x00\x62\x00\ +\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x75\x00\ +\x61\x00\x6c\x00\x69\x00\x7a\x00\xe1\x00\x63\x00\x69\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x53\x65\x6c\x65\x63\x74\x20\ +\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x75\x70\x67\ +\x72\x61\x64\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x4e\x00\x56\x00\x79\x00\x62\x00\x65\x00\x72\x00\ +\x74\x00\x65\x00\x20\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\ +\x75\x00\x20\x00\x6b\x00\x6f\x00\x6c\x00\x6d\x00\xfa\x00\x20\x00\ +\x6e\x00\x61\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x75\x00\xe1\x00\ +\x6c\x00\x6e\x00\x79\x00\x20\x00\x70\x00\x6f\x00\x68\x01\x3e\x00\ +\x61\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x53\x65\x6c\ +\x65\x63\x74\x20\x70\x6c\x61\x6e\x65\x20\x70\x65\x72\x70\x65\x6e\ +\x64\x69\x63\x75\x6c\x61\x72\x20\x74\x6f\x20\x74\x68\x65\x20\x63\ +\x75\x72\x72\x65\x6e\x74\x20\x76\x69\x65\x77\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x56\x00\x6c\x00\ +\x6e\x00\x6f\x00\x76\x00\x6b\x00\x61\x00\x20\x00\x62\x00\x6f\x00\ +\x6c\x00\x61\x00\x20\x00\x75\x00\x7a\x00\x61\x00\x74\x00\x76\x00\ +\x6f\x00\x72\x00\x65\x00\x6e\x00\xe1\x00\x20\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x17\x53\x70\x6c\x69\x6e\x65\x20\x68\x61\x73\x20\ +\x62\x65\x65\x6e\x20\x63\x6c\x6f\x73\x65\x64\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\xda\x00\x76\ +\x00\x6f\x00\x64\x00\x6e\x00\xfd\x00\x20\x00\x75\x00\x68\x00\x6f\ +\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x74\x61\x72\ +\x74\x20\x41\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x08\x00\x54\x00\x65\x00\x78\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\x65\x78\x74\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\x00\x54\x00\ +\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x79\x00\x70\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\ +\x20\x00\x73\x00\x61\x00\x20\x00\x6e\x00\x65\x00\x64\x00\xe1\x00\ +\x20\x00\x65\x00\x64\x00\x69\x00\x74\x00\x6f\x00\x76\x00\x61\x01\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x54\x68\x69\x73\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x20\x69\x73\x20\x6e\ +\x6f\x74\x20\x65\x64\x69\x74\x61\x62\x6c\x65\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x00\x50\x00\x72\ +\x00\x65\x00\x70\x00\xed\x00\x6e\x00\x61\x00\x20\x00\x6b\x00\x6f\ +\x00\x6e\x01\x61\x00\x74\x00\x72\x00\x75\x00\x6b\x01\x0d\x00\x6e\ +\x00\xfd\x00\x20\x00\x72\x00\x65\x01\x7e\x00\x69\x00\x6d\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x19\x54\x6f\x67\x67\x6c\x65\x73\x20\ +\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x4d\x6f\x64\ +\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x0e\x00\x4f\x00\x64\x00\x72\x00\x65\x00\x7a\x00\x61\x01\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\x72\x69\x6d\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4e\x00\x56\x00\ +\x72\x00\xe1\x00\x74\x00\x69\x01\x65\x00\x20\x00\x73\x00\x70\x00\ +\xe4\x01\x65\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x6c\x00\x65\x00\ +\x64\x00\x6e\x00\xfd\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x20\x00\x28\x00\x43\x00\x54\x00\x52\x00\ +\x4c\x00\x20\x00\x2b\x00\x20\x00\x5a\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1e\x55\x6e\x64\x6f\x20\x74\x68\x65\x20\x6c\x61\ +\x73\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x28\x43\x54\x52\x4c\ +\x2b\x5a\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0c\x00\x50\x00\x6f\x00\x68\x01\x3e\x00\x61\x00\x64\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x56\x69\x65\x77\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x96\x00\x56\x00\ +\x79\x00\x6d\x00\x61\x01\x7e\x00\x65\x00\x20\x00\x65\x00\x78\x00\ +\x69\x00\x73\x00\x74\x00\x75\x00\x6a\x00\xfa\x00\x63\x00\x65\x00\ +\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x79\x00\x20\x00\x74\x00\x65\x00\x6a\x00\x74\x00\x6f\x00\x20\x01\ +\x0d\x00\x69\x00\x61\x00\x72\x00\x79\x00\x20\x00\x61\x00\x20\x00\ +\x7a\x00\x61\x01\x0d\x00\x6e\x00\x65\x00\x20\x00\x7a\x00\x6e\x00\ +\x6f\x00\x76\x00\x75\x00\x20\x00\x6f\x00\x64\x00\x20\x00\x70\x00\ +\x6f\x00\x73\x00\x6c\x00\x65\x00\x64\x00\x6e\x00\xe9\x00\x68\x00\ +\x6f\x00\x20\x00\x62\x00\x6f\x00\x64\x00\x75\x00\x20\x00\x28\x00\ +\x57\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x57\x69\x70\ +\x65\x73\x20\x74\x68\x65\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\ +\x73\x65\x67\x6d\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\ +\x20\x6c\x69\x6e\x65\x20\x61\x6e\x64\x20\x73\x74\x61\x72\x74\x73\ +\x20\x61\x67\x61\x69\x6e\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\ +\x6c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x28\x57\x29\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x44\ +\x00\x72\x00\xf4\x00\x74\x00\x6f\x00\x76\x00\xe9\x00\x20\x00\x6e\ +\x00\xe1\x00\x73\x00\x74\x00\x72\x00\x6f\x00\x6a\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\x57\x69\x72\x65\x20\x74\x6f\x6f\ +\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x02\x00\x58\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\x58\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x00\ +\x58\x00\x2d\x00\x6f\x00\x76\x00\xe1\x00\x20\x00\x73\x00\xfa\x00\ +\x72\x00\x61\x00\x64\x00\x6e\x00\x69\x00\x63\x00\x61\x00\x20\x01\ +\x0f\x00\x61\x00\x6c\x01\x61\x00\x69\x00\x65\x00\x68\x00\x6f\x00\ +\x20\x00\x62\x00\x6f\x00\x64\x00\x75\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1a\x58\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x20\ +\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x58\x00\ +\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x58\x59\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x58\x00\ +\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x58\x5a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\x00\x59\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x01\x59\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x00\x59\x00\x2d\x00\x6f\ +\x00\x76\x00\xe1\x00\x20\x00\x73\x00\xfa\x00\x72\x00\x61\x00\x64\ +\x00\x6e\x00\x69\x00\x63\x00\x61\x00\x20\x01\x0f\x00\x61\x00\x6c\ +\x01\x61\x00\x69\x00\x65\x00\x68\x00\x6f\x00\x20\x00\x62\x00\x6f\ +\x00\x64\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x59\x20\ +\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\ +\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x04\x00\x59\x00\x5a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x02\x59\x5a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x02\x00\x5a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x01\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x3a\x00\x5a\x00\x2d\x00\x6f\x00\x76\x00\xe1\x00\ +\x20\x00\x73\x00\xfa\x00\x72\x00\x61\x00\x64\x00\x6e\x00\x69\x00\ +\x63\x00\x61\x00\x20\x01\x0f\x00\x61\x00\x6c\x01\x61\x00\x69\x00\ +\x65\x00\x68\x00\x6f\x00\x20\x00\x62\x00\x6f\x00\x64\x00\x75\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x5a\x20\x63\x6f\x6f\x72\x64\ +\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\ +\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x1e\x00\x61\x00\x6b\x00\x74\x00\xed\x00\x76\x00\x6e\x00\ +\x79\x00\x20\x00\x70\x00\x72\x00\xed\x00\x6b\x00\x61\x00\x7a\x00\ +\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x61\x63\x74\x69\x76\ +\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x3a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x6e\x00\xe1\x00\x76\ +\x00\x72\x00\x68\x00\x20\x00\x70\x00\x72\x00\xed\x00\x6b\x00\x61\ +\x00\x7a\x00\x6f\x00\x76\x00\x65\x00\x6a\x00\x20\x00\x74\x00\x61\ +\x00\x62\x00\x75\x01\x3e\x00\x6b\x00\x79\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x11\x64\x72\x61\x66\x74\x20\x43\x6f\x6d\x6d\x61\x6e\ +\x64\x20\x42\x61\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\ +\x00\x00\x3d\xd9\ +\x00\ +\x00\xd3\x4b\x78\x9c\xcd\x7d\x09\x98\x5c\x55\x95\xf0\xed\x7d\xef\ +\x0e\x21\x86\x10\x42\x78\xe9\x64\x92\x4e\xd2\xdd\x09\x81\xb0\x84\ +\xcd\x4e\x77\x3a\x09\x66\x33\xdd\x64\x03\x81\x57\x55\xaf\xba\x1e\ +\x5d\x55\xaf\x7c\xef\x55\x77\x3a\x83\x01\x05\x03\x8a\x6c\xc2\xb0\ +\x9b\x01\x47\x16\x71\x19\x15\x64\x40\x04\x45\x01\x11\x07\xc7\x71\ +\x18\xe6\xc7\x51\x07\xdc\x46\x84\x11\x65\x1c\xc6\x05\x66\xfe\x73\ +\xcf\x5d\xdf\x52\xdd\xaf\x5b\xfd\xbf\xff\xcb\x07\xd5\x5d\xfd\xde\ +\xbd\xe7\x9e\x7b\xee\xd9\xcf\xb9\xa7\x3f\x9c\x99\xf7\xec\xeb\x77\ +\xfc\xd5\x73\x8b\x16\x7c\xe5\xc2\xbb\x1e\xfb\xc1\x7a\x42\x5a\x4e\ +\x21\x84\xec\x21\xe4\xa9\xd3\xe1\x73\x2f\x21\x4f\x1f\x01\x9f\xfb\ +\xe0\xf3\x69\x42\xea\x5e\x84\xef\xff\x11\x3e\xbf\x07\x9f\xbf\x86\ +\xcf\x5f\xc0\xf7\xf7\x10\xd2\xb0\x9f\x90\x8f\xfc\x0d\x21\x9b\x2e\ +\x23\xa4\xc6\x63\x9f\x37\xbc\x97\x90\xdc\x89\x84\x7c\xf0\x63\xa4\ +\xea\x89\x2b\x08\x39\x77\x01\xa9\xbd\x67\x82\x90\x9b\xcf\x27\xb5\ +\x8f\xd6\x12\xd2\xbe\x85\x7d\xde\xf1\x25\x52\xb7\x7a\x03\x21\xb3\ +\x1e\x60\x9f\x9f\x2b\x90\xba\xc1\xa7\xe0\xf7\x1f\xb2\xcf\xcf\xfd\ +\x2f\xa9\xdb\x05\xdf\x9f\xfb\x1f\xec\xf3\x0b\xcb\x48\xdd\xa7\x7f\ +\x43\xc8\xc2\x97\xd8\xe7\x13\xaf\x90\xba\x87\xdf\x26\xe4\xeb\x1d\ +\xa4\xee\x1f\xbe\x01\x9f\x8f\x92\xfa\x4f\x7d\x84\x90\x43\xdf\x24\ +\xb3\x2e\xdf\x4c\xc8\x45\xaf\x92\xd9\x75\x5f\x22\xe4\x2b\x6d\x64\ +\xee\xd3\x00\xf7\x27\x4e\x22\xc7\x7d\xe2\xbf\x09\xe9\xbe\x98\xac\ +\xa0\xf0\x5c\x3b\x4a\x56\x3e\xf9\xb7\x84\x5c\x77\x2d\x59\xf9\x92\ +\x05\x9f\x7f\x4f\x4e\xfd\xb7\x13\x08\x39\x63\x05\x59\x77\xf8\x18\ +\x42\xde\xd7\x41\xce\xb8\xeb\x68\x42\x6e\xfc\x36\x39\xf3\x06\x58\ +\xd7\x99\x7b\xc8\xa6\x6b\x2f\x26\xa4\xe7\x4e\xb2\xe9\x96\x0f\x11\ +\x52\x7b\x3e\xd9\xfc\xd2\x07\x09\x59\x71\x88\x7d\xde\xb6\x92\x9c\ +\x7d\x12\xc0\xd9\xf0\x24\x79\x57\x76\x2d\x21\xa7\xfe\x16\x3e\x4f\ +\x26\x64\xdd\x69\xf0\x79\x2a\x7c\x1e\x24\xbb\x2f\x1c\x26\x64\xce\ +\x89\xec\xf3\x4b\x97\x93\x3d\x6f\xc3\x3a\x2e\xdc\x44\xf6\xde\xf2\ +\x17\x84\x1c\xf5\x3b\xf6\xf9\xe5\x1d\xe4\xa2\x3d\xb7\x11\xf2\xe0\ +\xcf\xc8\xc4\xeb\xcf\x03\x7e\xff\x95\x1c\xbc\xa4\x9d\x90\xf7\xbf\ +\x45\x3e\xbc\xf8\xaf\x08\x39\x7e\x01\x7c\xde\x0c\x9f\x59\xf8\xbc\ +\x15\x3e\x3f\x47\xae\xff\xf2\x2b\x84\x1c\x71\x14\xb9\xe7\xe4\xb3\ +\x08\x59\xf5\x8f\xe4\xfe\x4b\x61\x9c\xdb\x7e\x4c\x3e\xfd\x02\xe0\ +\xf9\xec\xd7\xc8\x57\x3f\x9d\x26\xe4\xf6\x7b\xc9\xd3\x3f\x2e\x12\ +\xb2\xf2\x15\xf2\xad\xfb\xe6\x10\x72\xd5\x67\xc8\x5b\xe4\x59\x42\ +\x3e\x75\x69\xd5\xd1\x57\xff\x90\x10\xeb\xab\x55\x8b\x5e\x00\x38\ +\xed\x37\xaa\x3a\x1f\xfc\x1d\x21\xf3\xba\xab\x56\x5d\x73\x90\x90\ +\xf2\x9c\xaa\x4d\xff\x03\x7b\x7c\xe6\x0b\x55\x43\xff\x79\x3f\x21\ +\x77\xde\x55\xb5\x6b\xee\xd9\x84\xdc\xff\x4a\xd5\x79\x3f\x04\xfc\ +\x7e\xfe\x70\xd5\x48\xdb\x87\x09\xb9\xfb\xbf\xab\xec\x23\x0e\x10\ +\xf2\xf0\x17\xab\xec\x9b\x6f\x21\xa4\x6f\x53\xd5\x07\x4e\x6d\x26\ +\xe4\x8b\x07\xaa\xae\xca\x95\x09\xf9\xda\x6d\x55\x57\x7d\x08\xf0\ +\xde\xf0\x9f\x55\x77\x5d\x02\xf0\x2c\xba\xb6\xea\xf3\xef\x69\x02\ +\x3c\xdf\x5f\xf5\xc4\x8b\x30\x7f\x61\x4e\xd5\x77\xaf\xfd\x27\xc0\ +\xc7\x7f\x56\x3d\x3f\x6b\x31\x21\x9b\xdf\xae\xfa\xc1\x65\xbf\x27\ +\xe4\x81\x52\xd5\xbf\x1d\xd1\x4f\x48\xfd\x93\x55\x3f\xfa\x0d\xd0\ +\xe3\xe3\xb7\x55\xbd\xf5\x59\x78\xee\xea\x05\xd5\x75\x8f\xc3\x3a\ +\x6f\xbd\xa3\xba\xfb\xc5\x0b\x09\x59\xfc\x8d\xea\x55\x5f\x84\x75\ +\x2d\x6e\xac\x1e\xdc\x03\xf3\xfe\xdd\xaf\xab\x77\xff\xb6\x91\x90\ +\xd6\xdf\x56\x5b\x9f\x49\x11\xf2\x8d\x7b\xaa\x8b\x0d\x3f\x22\x24\ +\x93\xab\x1e\x5b\x72\x24\x21\x83\xdf\xac\x7e\xdf\x4b\xe7\xc0\xba\ +\x8b\xd5\x37\x0e\xce\x07\x38\x57\x55\xff\xd5\xb3\x5f\x24\xe4\xb4\ +\x17\xab\xef\xed\x7e\x07\xd0\xf8\xf9\xd5\xf7\x9f\x04\xf8\xbe\xb6\ +\xb6\xfa\x53\x57\xc0\x3e\x5c\x7b\x47\xf5\xe7\x7f\x05\xeb\xbd\xf7\ +\xc9\xea\xaf\xdc\x7f\x0d\x21\xeb\x6f\xaf\xfe\x6a\xf6\x0d\x42\x4a\ +\xbf\xac\x7e\xe6\xac\xff\x22\xe4\xe2\xf1\xea\x17\x3f\xf1\x08\xd0\ +\xfd\xd9\xd5\xff\x3a\xff\x46\x42\x9a\x8e\xae\xa9\xba\xfc\x49\x42\ +\x3e\xfd\xee\x9a\xd9\x37\x5f\x44\xc8\x27\x7f\x55\x33\x67\x02\xf0\ +\xfd\xf9\x13\x6a\xe6\xcf\x01\x38\x4f\x3e\x5c\x33\x7f\x2e\x9c\xb3\ +\xec\xbf\xd4\xac\x9a\x0f\x7f\xbf\xbe\xbf\xe6\x20\x9d\x7f\x57\x77\ +\xcd\x07\xfd\x4d\x84\xbc\xbb\xba\xe6\xca\xe3\x60\xde\xdd\x1d\x35\ +\x87\xf7\xdc\x0d\x67\x71\x53\xcd\x03\x87\x01\x1f\x0f\xcd\xa9\xf9\ +\xe2\x33\x40\x1f\x7f\xb7\xa5\xe6\xb1\xe7\x7f\x02\xef\xbd\x55\xf3\ +\xe4\xe9\x30\xff\x8d\x1f\xa9\x79\xea\x9f\xcf\x87\x73\x6c\xb2\xcf\ +\xdb\x3e\x57\xf3\xad\xb6\x9f\x02\x3d\xbd\xaf\xe6\xfb\xad\x30\xce\ +\x75\x55\x35\x2f\xef\x07\x7c\xdd\xf2\x4c\xcd\x1b\x25\xa0\xcf\x13\ +\xdb\x6b\xde\x78\x0c\xf0\x76\xf4\x47\x6a\xfe\xd0\x01\x74\x72\x72\ +\x77\xed\xa2\xc5\x80\xf7\x65\xbf\xae\xed\xf5\xe0\x1c\x5c\xfa\xde\ +\xda\x5d\xf5\x37\x10\xb2\x76\xa8\xf6\xc2\x8b\x01\x1f\x8f\x36\xd6\ +\x4e\xbc\x0e\xf3\xde\x7b\x42\xed\x07\xc6\x81\x6e\x2d\xa3\xf6\x8a\ +\xcb\xe0\x7c\x6f\xf8\x56\xed\x15\xbf\x3b\x4c\xc8\x67\x0e\xd5\x7e\ +\xe4\x85\xcf\x12\x72\xe0\xc6\xda\x6b\x1e\x83\xf3\x76\xf8\xa9\xda\ +\x3b\x3f\x0c\xf3\xd5\x5f\xcf\x3e\x6f\x3a\xaa\xf6\x13\xc7\xc3\xfe\ +\x7d\xae\xa6\xf6\xbe\x57\xe1\xbc\xac\x7b\xa2\xf6\xf1\xe6\xdf\x12\ +\x72\xc1\x53\xb5\x2f\xbc\x30\x9b\x90\xd4\x0f\x6a\x5f\x2e\xfe\x18\ +\xe0\xff\x69\xed\x4f\x3a\x80\x5e\x6a\xda\x6a\x5f\xed\xfb\x3a\xc0\ +\xf9\xdd\xda\xd7\x5f\xbc\x8f\x90\xf3\x7f\x56\x57\x73\x19\xec\xc7\ +\x95\xc5\xba\xba\x6f\xc1\xfe\x0d\x5f\x58\xd7\xf1\x86\x0f\xe7\xa4\ +\xae\xee\x98\x59\x80\xc7\x3d\xf7\xd5\xad\xf8\x29\x9c\x0b\xf3\xa9\ +\xba\x81\xd3\x2e\x20\xe4\xc3\x8f\xd4\x9d\xf7\x22\xe0\x7f\xb6\xcf\ +\x3e\xbf\x70\x5d\x5d\xfa\x4d\x58\xcf\x85\x57\xd5\x59\xbf\x84\xf3\ +\x7e\xf8\xc3\x75\x57\x7c\x0e\xc6\xff\xd2\xf7\xeb\x6e\xba\x0f\xf0\ +\x3b\xf7\x32\xf6\xf9\xe5\xce\xba\xcf\xbc\x0b\xbe\xdf\xf5\x81\xba\ +\x2f\xdc\x03\xbc\x6f\x49\x5b\xdd\x23\x35\xcf\xc0\xe7\xa1\xba\xc7\ +\x5a\x61\xff\xef\x7a\xb1\xee\xb1\x6b\x80\x5e\xf7\xff\xa6\xee\xf1\ +\x5d\x30\xde\xf9\x07\xeb\x9e\xda\x41\xf9\xda\x25\x75\x3f\xbd\xa6\ +\x17\xce\xb7\x59\xf7\x87\xef\x03\xbf\x18\x7e\xba\x7e\xe1\xcf\x60\ +\x3f\x9f\xf8\x42\xfd\xf2\x5f\x7e\x12\xd6\x7f\x79\xfd\x8a\x43\xcf\ +\x01\xfd\x3d\x5b\xbf\xfb\x68\xc0\x1f\x60\x66\xdf\xeb\x80\xd7\x6b\ +\x4f\xaa\x3f\xf7\xbb\xf0\xdc\x96\x6b\xeb\xf3\x57\x02\x5d\xed\xbc\ +\xa1\xde\x3f\x16\xe8\x32\x7f\xb0\xfe\xaa\x9b\x06\x08\xe9\x38\xbe\ +\xfe\xe6\x3d\xdf\x24\x64\xe4\xbc\xfa\x2f\x5f\x0a\xf0\x75\xfe\x75\ +\xfd\x37\x1f\xae\x23\xe4\xa3\x97\xd7\xff\xbc\x6e\x1b\x21\x8d\x9f\ +\xae\xff\xe5\xfd\xbb\x09\xf9\xea\xa7\xea\x7f\xf5\x2d\xc0\xb3\x71\ +\x6e\xfd\xef\xff\x17\xe0\x3f\xe7\x99\xfa\xb7\xe6\x03\x9d\x9d\xbe\ +\xaa\xfe\xad\x3b\xe1\x7c\x3e\x78\x76\x43\xe3\x75\x40\x0f\x6b\xde\ +\xdf\xd0\xf6\x77\xc0\x07\xfb\x1e\x6a\x68\x3f\x74\x26\x3c\xff\x6c\ +\xc3\x8a\xc5\x80\x8f\x77\x3e\xd0\xb0\x36\x07\xfc\x61\xfe\xdf\x36\ +\xac\xfd\x39\xec\xf3\xc3\x6f\x36\x0c\xf4\xad\x80\xf3\x3e\xbb\xe1\ +\xec\xe3\xe0\xbc\x56\xaf\x69\xd8\xea\x75\xc2\xfe\xdd\xd0\xb0\xed\ +\x1e\xa0\xfb\x8f\x1d\xd5\xb0\xe7\x5b\x3f\x87\xdf\xbf\xd9\x90\xfe\ +\x1f\xe0\x4f\xef\xd8\xc2\x3e\xbf\xf4\xa9\x86\xf7\x7e\x06\xce\xeb\ +\x31\xf7\x37\x5c\xfa\xf4\x03\x84\x3c\xf9\xfb\x86\x2b\x5d\xd8\xf7\ +\x1b\x9e\x6a\xb8\x7e\x3f\xd0\xe5\xf2\xcb\x1a\xee\x5d\x0d\xf0\xdf\ +\x70\x53\xc3\x13\x6f\xc1\x3e\x9e\x34\xb7\xe1\xdf\x5f\x03\x3c\x5e\ +\xb2\xb2\x71\xd9\x83\x80\xdf\x87\x7e\xd7\xb8\xe6\x49\xe0\x33\x8f\ +\xdc\xda\x78\x92\x0f\xf0\xaf\x3c\xdc\x38\xf0\x08\xe0\xf3\xf4\xfb\ +\x1b\x37\x7f\x73\x35\xd0\xeb\xf7\x1b\xcd\x8b\x61\xdc\x25\x8f\x34\ +\x7e\xfc\xd9\x11\x38\x3f\x57\x35\xfe\xcd\x4b\x40\xaf\x37\xbf\xdd\ +\xf8\xf9\x77\x74\xc1\x78\x5f\x6f\x7c\xb0\x16\xf6\xe3\xd1\xeb\x1b\ +\xbf\xb3\x06\xf0\x7c\xc7\xcf\x1b\x9f\x7f\xce\x06\x78\x77\x37\xbe\ +\x7c\xfb\xe3\x84\x1c\xf7\xa1\xc6\x97\x9f\x80\x73\xf4\xd7\xc3\x8d\ +\xaf\x6f\x05\x7e\x75\xdb\x70\x93\xf1\xbd\x25\x20\xcf\x7a\xe1\xf3\ +\x41\xf8\xfc\x31\x7c\xc2\x79\x79\x6a\x6f\xd3\xd6\x9b\x40\xee\x75\ +\xff\x43\x93\xf5\x3d\xc0\xdf\xdf\x3c\xd6\x94\x6b\x5b\x4e\xc8\x67\ +\x1f\x6e\x7a\xef\xd5\x80\xe7\xc6\x8b\x9a\xca\x8b\x01\xbe\xeb\xfe\ +\xab\x69\xec\x3f\x40\xde\x1d\xfc\xe7\xa6\x43\xf7\xc0\xba\x56\x3c\ +\xd8\x74\xd5\x62\x58\xc7\x23\xaf\x35\x1d\x7e\x1b\xf8\xe7\x25\x8f\ +\x35\x3d\xb4\x02\xf0\x77\xda\xaa\xa6\xe7\x16\xc0\xbe\x7e\xf9\x2b\ +\x4d\xdf\x5d\x04\xf2\x73\x6c\x59\xd3\x4f\x17\x03\xbe\x9c\x57\x9a\ +\x5e\x5b\x09\x72\xa3\xfd\x95\xa6\xd7\x4f\x00\x3e\xbb\x60\x7f\xd3\ +\xaf\x8e\x83\x7d\xa8\xb9\xa3\xe9\xed\x0d\x94\x2f\x3d\xd5\xdc\xf4\ +\x04\xe5\xab\x03\xcd\x5d\xb7\xc1\x3e\xa5\xdf\x03\x9f\xb0\xee\xf4\ +\x43\xf0\x09\xeb\xca\x74\x34\xf7\x3c\x0e\x7c\xe0\x94\x86\xe6\xb5\ +\x9f\x84\x75\xdd\xb7\xab\xf9\xac\x65\x70\x2e\x6e\xfd\x45\xf3\x3b\ +\xef\x82\xf3\x74\xa2\xd7\xbc\xf9\x6e\xe0\xd7\x5f\x3b\xa2\xf9\xc2\ +\x97\x80\xde\x7a\x5e\x86\xcf\xa3\x08\xe9\x3d\x11\x3e\x41\xbe\xf5\ +\x5e\xd1\x6c\xdd\x0e\xf0\x7c\xe1\x99\xe6\xfd\x75\x97\x12\x52\x75\ +\x6e\xf3\x25\xd7\xc2\x3c\x9b\x6a\x9b\xdf\xff\x13\xe0\x07\x5b\xff\ +\xd0\x7c\x68\x16\xd0\xe1\x91\xdf\x6d\xbe\xe5\xd0\x3c\x90\x37\xbf\ +\x6f\xbe\xf5\x3c\xd8\x9f\x2f\x9d\xd2\x7c\xdf\x5c\x38\x8f\x73\x07\ +\xd8\xe7\xa3\xe7\x35\x7f\xf2\x43\xaf\x01\xbf\xca\x35\x3f\x73\x1e\ +\x9c\xc7\xd9\x0f\x34\x7f\x67\xc7\xc3\x40\xdf\xcf\x34\x7f\xe7\x67\ +\xc0\x9f\x8e\x79\x4f\xf3\x0b\xbf\x06\xf8\xee\xb8\xa0\xf9\xd5\xeb\ +\xaf\x04\x7c\x9d\xde\xd2\xb0\x9f\xe2\x75\x7e\xcb\x31\x2f\x81\xee\ +\x30\xf2\xed\x96\x25\x1f\x03\xfc\xe7\x5e\x6f\x59\xf2\x14\xd0\xfb\ +\xdc\x87\x5b\x96\x1e\x04\xfc\xdc\x5a\xdf\xb2\x72\x07\xbc\x77\xcf\ +\x75\x2d\x3d\x0f\x80\x5c\xba\xfc\x70\xcb\xc9\x1e\xac\xfb\xeb\xaf\ +\xb4\xbc\xf3\x9d\x40\xbf\x7b\x9b\x5b\xfa\x9f\x83\x75\xec\x7e\xa9\ +\x65\xfb\x2d\x80\xf7\x4f\x7c\xb9\x25\xdb\xf5\x5d\xe0\xc7\x4f\xb7\ +\x5c\xf9\x52\x03\x21\x6d\x5b\x5a\x6e\x1c\x00\x7d\xe2\x94\xb1\x96\ +\x5b\x66\x03\xdc\x77\x9d\xd7\x72\xe7\xe5\xc0\x9f\x6b\xaf\x6e\x79\ +\x60\x10\xf8\xee\xcd\x87\x5a\xbe\x76\x2b\x7c\x7e\xfc\x9c\x96\x7f\ +\x5a\x06\xfc\xab\xee\x96\x96\xe7\x0f\x02\x3f\x6b\xfb\x60\xcb\x7f\ +\xfd\x72\x08\xf0\xb2\xb5\xb5\x7e\x07\x9c\xeb\x8e\x67\x5a\x8f\xfe\ +\x3d\xc8\xdb\x8f\xfd\xb8\x75\x51\x33\xd0\xe3\x4d\xfd\xad\x5d\xb7\ +\xc3\xbe\x5d\xb7\xaf\xf5\xf8\x83\x80\xdf\x87\xf6\xb6\x9e\xb2\x15\ +\xce\x57\x53\xae\x75\xdd\xdc\xef\x80\x9e\x72\x4a\xeb\xbe\xaf\x02\ +\xdf\xb8\x71\x67\x6b\xf1\x0a\x58\xff\xf2\x81\xd6\x8b\x5f\x02\x9d\ +\x69\xf1\xb6\xd6\x4b\x4f\x03\x7a\xbd\xfd\xed\xd6\xeb\xef\x84\x7d\ +\x7d\xe2\xdc\xd6\x9b\xae\xa3\xfc\xab\xbf\xf5\xf1\x7b\xe1\x3c\x6f\ +\xb7\x5a\x9f\xfd\x01\xac\xf7\x2b\x57\xb4\xbe\xf0\x3a\xf0\xc5\xb5\ +\x8f\xb6\xfe\xf0\x56\xd0\x67\x2e\xff\x4d\xeb\xcb\x8b\xaa\x81\x4f\ +\x66\x5b\x7f\x34\x0e\xf8\xba\xa2\xa1\xf5\x57\x3f\x84\xf5\xdc\x7d\ +\x56\xdb\x82\x37\x7f\x49\xc8\x09\x5b\xda\xd6\xe5\xe9\xf9\xf9\x64\ +\xdb\x86\x1f\xc1\x7a\x1e\x3f\xba\x6d\xef\x5d\x00\xdf\xed\x47\xb6\ +\xed\xfb\x0c\xcc\xf7\xd1\xdf\xb6\x9d\xff\xef\x40\x57\xbd\xdf\x6b\ +\xcb\xdc\x0d\x74\xed\xaf\x69\x2b\xfc\x16\xce\x47\xf3\xb2\x36\xff\ +\x07\x3b\x09\x39\xf6\x7d\x6d\x63\x5f\xfc\x28\x8c\x73\x67\xdb\xed\ +\xaf\x01\xfe\xf3\x4d\x6d\x77\xbf\x08\x78\x5a\xf3\xeb\xb6\x7b\xbe\ +\xf7\x09\x50\x05\xcf\x6a\xbb\xf7\x91\xaf\xc1\x73\xcf\xb6\x3d\xfd\ +\x34\xf0\x85\x47\x36\xb7\xbd\x71\x2a\xcc\xf7\xc9\x63\xdb\xe7\x1f\ +\x4b\xf9\xcd\x49\xed\xcb\x6f\xcc\x10\x32\xd0\xdb\xbe\xb2\x16\xe8\ +\xec\x96\xcb\xda\xbb\x7f\x02\xcf\x3d\x76\x67\xfb\xb6\xbf\x07\xfc\ +\xb7\x1c\x6e\x77\x6e\x03\x7a\xfe\xea\xf2\xf6\xbf\x3c\xd0\x0d\xfa\ +\xd1\xfe\xf6\x6b\x2f\x02\xfd\xe8\x4c\xd2\x7e\xbd\x05\xf8\x39\xae\ +\xad\xfd\xd9\x7f\x81\x73\xb4\xf4\xaf\xdb\xf1\x9c\x3c\xd6\x0c\x9f\ +\x40\x87\x8f\x9d\xd3\xfe\xdc\xb9\x80\x9f\x0b\xf2\xed\xbf\xf8\x69\ +\x0d\xc8\xfd\x47\xdb\xff\xe3\x65\xa0\x83\xf3\x56\x76\x34\x5c\x0d\ +\xf4\x7d\xcd\xee\x8e\x96\x59\xb0\x4f\xfb\xee\xee\x38\xea\x03\x80\ +\x3f\xf2\x87\x8e\xe3\xae\x06\x3e\x79\xcb\x69\x1d\xdb\xcb\xeb\x40\ +\xee\x9f\xdb\x71\xc1\xb3\xff\x0c\xfb\xff\x72\xc7\xf8\xd7\x81\xbe\ +\x3e\xf8\x7f\x3a\x3e\xd4\x02\x7c\xe0\xbc\x2b\x3a\xae\xbd\xef\x5e\ +\x58\x4f\x77\xc7\x2d\xcd\xa0\xf7\x7c\x7d\x6d\xc7\xe1\xd7\xee\x04\ +\x3e\xf6\xc1\x8e\xaf\x5c\x01\xe7\xf0\x6f\x3f\xd5\xf1\xdc\xb7\x81\ +\xae\xcf\xb8\xa9\xe3\xdf\x16\xc1\xb9\x5e\xd9\xdf\xf1\x66\xfd\x42\ +\x90\x8f\x6d\x1d\x6f\x2e\x07\xfd\xe2\xa3\x0f\x76\xfc\xe1\x02\xa0\ +\x97\x5b\x77\x02\x31\x7e\xe3\x77\x00\x19\x59\x40\x76\x90\x32\x29\ +\x12\x9f\x18\xf0\x9f\x43\x2c\x32\x86\xff\x1f\x81\xff\x8a\x8d\xc8\ +\xf2\xe1\xbf\xa6\xbe\x4c\xc6\xd8\xe1\xd8\x45\x1f\xa8\x93\xb4\x0f\ +\xb8\x66\xd6\xbf\x00\xbe\xc3\xaf\xaa\xe8\x38\x39\xb2\x8b\xbf\x47\ +\x47\xb2\xe8\xdb\xf0\x59\x0a\x8d\x6d\x10\x13\xfe\x15\xd5\x13\x46\ +\x8b\xd1\x42\x52\xf0\xb3\x07\x4f\xb0\xbf\x65\xf0\xb9\x0c\x71\xf1\ +\xf7\x0c\x59\x05\x7f\xf7\x60\xa4\x3c\xb1\xe1\xaf\x96\x84\xa9\x0b\ +\xe6\xf7\x0c\xd3\x28\x51\x18\x0c\xdf\x31\xcc\xa2\x61\xed\xb7\x3d\ +\xdf\x2e\x8e\x18\xe3\xb6\x6b\xad\x4a\x79\xa5\xbc\x5d\xb4\x2a\x81\ +\xdc\x4d\x86\xc3\x0b\xd6\x00\x1c\x01\x00\xe8\xf7\x25\xd2\x4b\xff\ +\xc9\x69\x3b\x28\x2a\x60\xb6\x11\xd7\x29\x97\x7a\x7b\x7b\xe9\xe8\ +\xb3\xe4\xe8\xc3\xce\x46\xfa\x3d\x8e\xff\x81\x00\x4a\x72\xf0\x93\ +\x0f\x8b\x61\xcb\x1b\xc1\x25\x5b\xb0\x28\x8b\xa4\xe1\x7b\x8a\x0e\ +\x97\xff\xcd\x81\x05\x5f\xc4\xbf\xef\x42\xa8\x96\x47\x11\x17\x8b\ +\x34\x05\x33\x47\xb8\x84\x7a\x35\x22\xcb\xcf\x59\x86\x67\xe5\xad\ +\xb4\x6f\x65\x0c\x27\x75\x11\xfc\xd0\xe5\x2d\x0f\xe3\x0e\x57\x56\ +\x79\x59\x07\xc9\x26\xd8\x55\x1b\xa6\xb4\x71\x19\x06\xee\xcc\x45\ +\x08\x84\x4d\x46\x71\x31\x06\x07\xb2\x07\x7e\xa7\x4b\x2c\x03\x60\ +\x82\x06\x4a\x00\xb0\x87\x8b\x2f\xe2\x62\x4b\xd3\x40\x87\x4e\x93\ +\xa7\xf4\x95\x60\x7b\x2d\xcf\x48\x97\x5d\xd7\x02\x12\xa0\x7b\x0d\ +\x1b\x9f\xf1\x73\xb0\x9c\x8c\x91\x76\xf2\x8e\x4b\xd7\x16\x5a\xb1\ +\xa7\x2f\x0d\x86\x98\x18\xf2\x27\xf2\x16\x2e\xad\x37\xb2\x34\x8a\ +\x61\xba\xb8\x7c\x1c\xf8\x12\x94\x23\x71\x1c\xa3\x9f\x03\x82\x03\ +\x56\x9e\xa5\x91\xac\x87\x91\x1c\x32\x22\xdf\xaf\xe9\x73\xd3\xf4\ +\xf9\x26\xfe\xbc\x9b\xc6\x07\x7d\xd2\x0f\x58\xb0\xc8\xab\x88\x0d\ +\x3f\xb0\xf9\x38\x00\x00\x6c\xc0\x33\xc3\x64\x27\xd9\x82\x98\x2a\ +\x20\x98\x0c\xf0\x22\x00\x5a\x82\x7f\xf4\x8d\x6e\xf8\x66\x08\x16\ +\xb7\x99\x0c\xc2\xd3\xc1\x27\x53\xb8\x28\x3a\xc3\x68\x60\x51\xab\ +\xfb\x5d\xcb\xf4\x01\xbf\x40\x1b\xa6\x9b\xee\x35\xfa\x87\x77\x6e\ +\x41\x7c\x16\xcd\x52\xb7\x31\xb4\x69\xf3\xe0\x30\xfd\x35\xed\x14\ +\x3d\xdf\x35\xed\x62\xcc\x0a\x9a\x49\x1f\x8c\x4b\x4f\xf2\x84\x1c\ +\xb7\xae\xcf\x75\xcd\x09\xfa\x70\x8b\x78\x18\x7e\xc7\xc7\xc7\xf8\ +\x82\x4d\x04\xcd\x43\xaa\xa7\x4c\xc4\x01\xfc\x9b\x48\x42\x0e\xfe\ +\xdf\xe5\xe4\x40\x29\x7f\x04\x76\x4c\xfc\xd5\x14\x93\xc1\xcf\x59\ +\x3c\x0b\x05\x3e\x46\x90\xb8\x32\x41\xb2\x92\xa0\x9d\x26\x97\x0c\ +\x5c\x25\x6f\xba\x06\x10\x90\x0b\x24\x63\x16\x47\xca\xf4\x57\x93\ +\x42\x6a\x64\x5d\xa7\x00\x4f\x84\xc8\x2a\x76\x41\xb3\x60\xab\x7b\ +\x00\xf3\x51\xee\xd5\xb8\xbe\x67\x48\x72\xa7\x36\xf6\xde\x7a\xf6\ +\x0d\xbe\x79\x63\xc5\xbd\x2f\xf0\xd3\x41\xd9\x56\x59\x23\xd5\x14\ +\xcc\xa4\xf1\xc9\x19\xd1\x86\x9f\x90\x36\xfa\x15\xa2\x0a\xe5\xbc\ +\x6f\x97\xf2\x56\x0f\xe3\xc3\xa9\x1e\xc6\x74\x93\x91\x4b\xcc\xc2\ +\x5b\x01\x68\x9b\x4f\x98\x97\x13\xd6\xf7\xdb\x6e\x9a\x1d\xaa\x56\ +\xf6\x0e\xfb\x02\x5f\xf9\x38\x40\x6f\x23\x94\x0c\x37\x14\x47\x94\ +\x2d\x8e\xe2\x7a\xca\x1a\xee\xd2\x6a\xe8\x69\xe1\xa7\x0f\x9e\x51\ +\xe7\xc6\xc5\xb1\x2d\xc9\x76\x43\x1c\x4a\x8e\x33\x8a\x50\x1d\x08\ +\x60\xee\x0c\x85\xb9\x34\xae\x20\x8c\xa8\xbe\x2d\xc3\x8a\x69\x19\ +\x94\xf4\x28\x4b\xd1\x58\x57\x74\xfd\xcd\xb0\x8e\x3c\x40\xa1\xd3\ +\x57\x5d\x7f\xde\x61\xc4\xc5\x89\x12\x7f\xc7\xc7\xd7\xa9\xc7\xf1\ +\x8c\xf9\x28\x9b\xa6\x38\x23\x20\x89\x3c\xb2\x5c\x0e\x7f\x2c\x0e\ +\x57\x49\xa2\xc4\x4e\x3b\x07\xa8\x2c\x8f\xec\xd5\x57\x32\x43\x0e\ +\xd8\x0c\x0f\x7a\x96\xb1\x85\x9f\x88\x0e\xf9\xb6\x67\x6d\x11\xa4\ +\xd1\x1b\x18\x41\x09\x52\x0a\xae\xbe\x1f\xe1\xb1\x8f\xc1\x61\x18\ +\xb0\x28\x24\x52\x16\x95\x73\x19\xd7\x1c\x2f\x56\x9c\xcc\xd0\x14\ +\xa3\x31\x24\xae\x71\x1c\x36\x83\x3f\xeb\x5b\xda\xba\xd3\x2a\x38\ +\x63\x56\x44\x3f\x1a\xb0\xf2\x4a\xd9\xc8\x83\x32\x10\x1e\x24\x5e\ +\x53\x12\xeb\x9b\x4c\xd0\x2b\xed\x88\x6e\x52\x16\x9f\x8a\xd3\x91\ +\x56\x33\xd0\x94\x9a\xc4\x78\x57\x48\x51\xa2\x6c\x2e\xaa\x2b\x05\ +\xc0\x7f\x26\xf1\x11\xa3\x0c\xa9\x80\x3f\x7b\xf8\xc6\x9f\x41\x44\ +\xc5\x1c\x49\x31\xbb\x87\xfa\x16\x9b\xdf\x9f\xf4\x20\x6e\x53\x07\ +\x31\x63\x17\xac\xa2\x67\x3b\xc5\xa9\x99\x56\xf8\x7c\x52\x31\x30\ +\x02\x6f\xfb\x1a\x1d\x0d\x88\xe1\xb8\x08\xe8\x83\x0d\x2a\x20\x99\ +\xd2\xcd\x51\x52\xbf\x49\x3e\x58\xf1\xe5\xf9\xa8\x42\xba\x92\xc7\ +\x33\x42\x44\xc4\x6a\xc3\x38\xe3\xc5\x11\xd7\xcc\xe8\x07\x47\x7e\ +\x87\xc3\xdc\xcf\x89\x2f\x83\x78\xca\x87\x8e\x4f\x42\xc5\x0b\xbe\ +\xb1\x39\x8e\xe9\x0e\x97\xf8\x5b\x6e\xec\xb3\xdd\x92\x30\xc7\x38\ +\xd5\xd8\x9c\x78\x19\xd9\x33\x62\xa6\x44\x4d\x35\xab\x03\xf2\x50\ +\xa8\xfd\xd9\xb0\x61\x7f\x29\xef\x64\xe2\x79\x8c\x67\x00\x61\xc2\ +\x26\xd8\x05\x90\x3c\xae\xf8\xb2\x9b\x12\xb2\x57\x4e\xc1\x4e\xc1\ +\xd6\x64\xcd\xb4\xe5\x55\x44\xc9\x42\x32\x80\x67\x28\x2b\xad\x13\ +\x4a\x7e\xa3\xb8\x4d\x69\x92\x53\xea\x3e\xbe\x4c\x77\x7c\x68\xd4\ +\xf2\xd3\x39\x3a\xe0\x6c\x3e\x20\xfd\xff\x1a\xf6\x35\xdf\xea\x61\ +\xc9\x89\x82\x5b\xdd\x00\xcf\x8e\xc3\x71\xd3\x64\x1e\xff\x06\x5f\ +\xdc\x1f\x39\x5d\x25\xd4\x69\xa8\x1e\xe4\xc9\x13\x36\x93\x1d\x63\ +\xea\xb5\x38\x1d\x8a\x51\x8e\x31\x11\x28\x01\xec\xd9\x51\xf6\x2b\ +\x60\xda\x01\xf5\xcf\xe0\xd0\x1a\x5e\xce\xb2\xfc\xde\x0a\xcb\xa0\ +\xda\x8e\x05\x1c\x2e\xaa\x2f\xd4\x6e\xc8\xd8\x78\x44\x9a\xd9\x5b\ +\xf4\x57\x7c\xe5\xc4\xc0\x2b\xca\x4e\xa2\x14\x92\xc6\x13\x63\x21\ +\xac\xf1\xfa\xda\x51\x74\x1c\x06\x36\xec\xb8\x0d\x3c\x58\xe9\x62\ +\xe1\x99\xe6\xe1\x51\xca\xe3\x56\x3b\x30\x6e\x54\x4c\xb4\x0c\xda\ +\x45\xdb\xcb\x19\x82\x0f\x72\xed\x9d\x7d\x2b\xe5\xc2\x8e\xd0\x38\ +\x3a\xab\x16\x86\x10\xa5\x68\x47\xd2\x3b\xdb\xb9\x03\xb8\x0a\xc1\ +\xf9\x84\x18\xd3\x91\xd4\xc9\x66\x42\x96\xc4\x6d\x19\x3f\xe7\x94\ +\x7d\x23\x0d\x82\x89\x22\x9f\xa1\x30\x1e\xac\x1b\x13\x33\xe8\x35\ +\xa0\x27\x0a\x69\xe3\x69\x40\xff\x39\x6d\x89\x53\x14\xb3\x5d\xc3\ +\x15\xc5\xe4\x4a\x22\xdf\x49\xb9\xd4\x46\x00\x30\xb8\x73\xb5\x42\ +\x6d\x08\x3f\x3a\x97\x33\x3e\xfd\x38\x05\xe8\x72\x2b\x48\x47\xed\ +\x45\xfa\x2b\xbe\xf8\x93\x98\x17\x67\xca\x35\x7d\x40\xb6\x32\x78\ +\xd7\x68\xc2\xde\xfa\xf3\xa0\x3d\x46\x3e\x0a\x39\x48\xf9\x81\x0d\ +\x46\x45\x50\x83\xd9\xb7\x15\x95\x84\xd8\xe3\x9f\xb2\xfc\x71\xcb\ +\x2a\x1a\x6b\x98\x06\xe1\x4d\x43\x46\xa6\x9d\xd2\x44\x1c\x72\xe7\ +\x71\xe4\x7a\x94\xd3\xe2\x41\x18\x0b\xf1\xcb\xfa\xed\xd9\xac\x67\ +\xf9\x9a\xba\xcb\xbe\xc0\xd7\x1f\x8a\xbc\x9e\x4d\xca\x39\xfe\xbf\ +\xc0\xf6\x26\xb6\x96\x18\xbe\x35\x03\xdc\x46\xd1\xd3\x5d\xd1\x88\ +\xb6\xb9\x52\x14\xc7\x4a\xe7\xea\xa6\xaf\x2d\x2d\x0e\x4d\x93\x57\ +\xca\x60\xa3\x50\x8d\x95\xb5\x21\x75\xdf\xc8\xc3\xd7\x54\x34\x64\ +\x5d\xc2\xbc\x6e\x79\x64\x55\x7e\x40\xc9\xa1\xdf\xe6\xd0\xdf\x32\ +\x3a\xe3\x3d\x9b\x9c\x25\x69\xb6\xbe\x6b\x31\xf3\x1e\x6c\xfe\x89\ +\x91\x24\x5a\xa0\x26\xff\x76\xb0\x77\xb8\xfc\xdb\x15\x04\x5d\xc9\ +\x7f\xfe\x58\x85\x17\xdd\x19\x33\x6f\xe6\x09\xc9\xa1\x0d\x37\x2d\ +\x6c\x49\xd0\x96\x47\x59\x33\x77\x79\x84\x6d\x53\x4d\x97\xda\x29\ +\x9e\x40\xf0\x67\xc3\x64\x21\x30\x94\x76\x2a\x1f\xad\xf8\x7a\x3b\ +\x57\xc5\x4c\xc4\x81\x82\xac\x7e\xa7\xe3\x03\x64\x1a\x95\xb3\x2f\ +\xf0\xa5\x6f\x6b\x2f\xcd\x8c\x31\xff\xbf\x35\x4c\x04\x33\x50\x4a\ +\x40\x9a\x1f\x8b\x20\x73\xd8\xc9\xd6\x18\xcf\x8c\x93\xf2\x87\xb4\ +\xf2\x31\x04\xd9\x84\x86\xc0\x76\x58\x14\xdd\x32\x13\x91\xa5\x00\ +\xa8\x1b\x4a\x9b\x79\xdd\x71\x80\xbf\x73\xa1\x28\x5e\x31\xff\x08\ +\x23\x22\x6a\xdf\x9a\x68\x52\x78\x92\xb0\x27\xdb\x19\x17\xb1\x58\ +\xe4\xee\xfa\x3f\x27\x9b\x3e\x0f\x17\x5e\x41\x2a\x72\x1f\x60\xca\ +\xf4\x2c\xc6\x2f\x67\xc0\xba\x23\xf8\x5d\x08\x6b\x09\x63\x51\x73\ +\xea\x2b\x87\xc3\x10\x33\x3e\xa5\xa3\xfe\x08\x3e\x12\x7e\xad\x3c\ +\xf5\x63\x31\xe3\x31\x01\x99\xc7\x6f\xe3\x76\xa7\xc0\x85\xa8\x50\ +\x59\xf3\x20\x5c\xc5\x4e\x96\xb9\x42\xeb\xf1\x31\xbc\x80\x6a\x1b\ +\x85\xf3\x64\x06\x10\xd0\x61\x3e\x2f\x31\x47\x95\x5a\x86\x53\xb3\ +\x00\xb8\x33\xa9\xc7\x1c\x9e\xa0\x78\xb6\xbd\x29\x97\x74\x5e\x2c\ +\x8a\x04\x29\x09\x3b\x62\x0c\xb5\xb6\x51\xb9\xd1\x94\x58\x1c\xbe\ +\x34\x37\xc1\x21\xec\x1e\x12\xd6\xfd\xb8\xe3\x8e\x52\xd5\xbb\x94\ +\x37\x41\x21\xcf\x82\x7d\x39\x62\x39\x05\xcb\x77\x27\xd8\x21\xe3\ +\xc6\x7b\x00\xda\x1d\xf4\xd9\x2a\x16\x5c\x8b\x83\x96\x43\xa7\xec\ +\x0e\xed\xb5\x49\x06\x2b\xc1\x99\x70\xb8\xe9\xc6\xf6\x31\xc5\x43\ +\x15\xc2\x1d\x6e\xe3\xdf\xd9\xee\x4e\xf0\x13\xe0\x23\x52\x18\x7a\ +\x74\x8b\x97\xf9\x92\x02\x36\x6f\x88\x1e\x3c\x4d\x7b\x77\x8a\x63\ +\x96\xeb\x1b\x29\x3b\x63\x53\xe1\x00\xab\x86\x2d\x9d\x90\xba\x21\ +\xb3\x91\x69\xd0\x85\x59\xc3\xba\xbb\x52\xac\x26\x67\x96\xac\x35\ +\x03\xbb\x6c\x6b\x1c\x57\x93\x21\x5b\x35\x11\xb7\x06\x60\xeb\xe1\ +\x9c\x81\x3a\x03\x98\x2c\x19\x43\xdf\x47\x81\x43\x3f\x26\x03\x73\ +\xd3\x8f\x15\xad\x10\x42\x0e\xc1\x30\xd6\x0c\x18\x63\x00\x08\xd8\ +\xb6\xd9\xd8\xe8\x50\x05\x98\x17\x4e\x0e\xa7\x9c\xad\x2d\x30\xcb\ +\x24\x03\xce\x07\xf4\x53\x81\x39\x8e\x1b\xc1\x84\x8e\x01\x16\xb1\ +\x49\x5c\x7d\x30\x67\xdc\x18\x02\xa6\x62\xac\x37\xdd\xc0\x60\xce\ +\x38\xfd\x1a\xbe\xc5\xc1\x56\xcb\xc1\xbc\xd0\x5e\x7b\x72\x68\x66\ +\xb4\xe6\x91\xe7\xaa\x29\xe6\xd1\xa1\x3c\xbe\x8b\x94\x7d\x01\x97\ +\x72\xf2\xa9\x49\x67\xcb\x26\x56\x59\x84\xab\x27\xe0\x19\x89\xf0\ +\xf8\xd2\x14\x6a\xca\x62\x3d\x1a\x55\x2c\x52\x39\x16\x71\xd8\x69\ +\xb6\xc6\xb0\xb5\xdf\xe7\xbe\x71\xe6\x93\xf1\x34\x6d\xb5\x96\xfe\ +\x35\xee\xe1\x13\x31\x32\x57\x06\x14\x16\xe0\x33\x83\x76\x1b\xf3\ +\x7a\xf5\x90\x55\x7c\xdb\x3d\x2e\x02\x47\x39\x09\x2a\x10\x8f\x1a\ +\x76\x46\x40\xa7\xe1\x1c\xbf\x9c\x06\xf8\x8c\xad\x0e\x73\xcb\x2d\ +\xe0\x33\xe1\x13\xfd\xfc\x01\xba\x02\xfa\x00\xd7\x01\x87\x02\x23\ +\x2b\xf1\x2a\x60\xea\x09\x40\x35\x86\x5b\xe9\xca\xa7\xc6\x70\x63\ +\x99\x58\xac\x24\x7a\xd9\x56\x88\x95\x28\xef\xcf\x2a\x06\x17\x93\ +\x75\x3a\x74\x08\x3f\xb2\xbd\x22\xe0\x48\xaa\x21\xc9\x56\xd4\xcb\ +\xed\x34\x01\x59\x10\xfe\xca\x78\x9c\xa3\xf0\xe8\xdb\xc5\xb2\x25\ +\x91\x38\x2f\x34\x25\xfe\x55\x4e\x97\xaf\x88\xc0\xb1\x49\xc0\x48\ +\x82\xc6\x12\xf7\xb7\xb3\xd3\x8e\xba\xa3\x12\x15\x21\xd4\x29\x88\ +\x15\xda\xd2\x4e\xa1\x00\xcc\x91\xe1\x6d\xf2\x45\x1c\x8e\x59\xc4\ +\x38\x67\x71\x23\xf0\x2d\x5d\x4a\x10\xfc\x69\x33\x45\x12\xf6\x48\ +\x8c\x73\x11\x92\xc5\x45\x16\x88\x0a\xdf\x67\x51\x52\xf9\x32\xa4\ +\xa8\x44\xc2\xe0\xd0\xb8\x59\xf2\x8c\x8c\xed\x81\x64\x9c\x30\x0a\ +\x74\xbd\x31\xcc\x54\x4a\x08\x1a\x66\xc8\xba\x54\xe2\x53\x29\x91\ +\xcd\x9b\x3e\xf5\xff\x20\xb3\x3d\x4a\x47\xc8\x00\x1b\x50\xe2\x63\ +\x05\xd9\x8d\xaa\x21\x5b\x5b\x14\x17\xda\x66\xaa\x68\x3c\xa7\x1f\ +\x1d\xb8\x29\x27\x9a\x8b\xc9\x20\x23\xf0\x8f\x69\x46\x1b\x51\x51\ +\xc8\x28\x21\xcd\x07\xdd\xe8\xda\x19\xcd\x0b\xc7\xbe\xa5\x5f\xe2\ +\x28\xa7\x04\x46\xd1\x83\x6b\x3a\x3f\x1e\x41\xb9\x6d\xa0\xb4\x5e\ +\x85\x6e\xf2\xac\x9c\x67\x81\x4e\x4f\x8c\x23\x8f\xd8\x80\xcf\xe2\ +\x2a\x27\x9b\xad\x3c\x71\x18\x7c\xce\x44\x23\xe0\x0b\x36\x19\x18\ +\x85\xf2\xf5\x0a\xe0\xc7\x8b\x11\x87\xfb\x96\x59\x44\x3e\x16\x7c\ +\x4d\x98\x00\x1b\x81\x93\x10\x07\xbe\x9c\xb8\x15\x26\x76\x79\xe0\ +\x68\xbf\x32\x00\x87\x5d\xbb\x60\xed\xd7\xec\x17\xf6\x05\x7d\xa5\ +\xea\x74\xf9\x8a\x4f\x54\x10\x8c\xd2\x31\x45\xae\xee\x0f\x4a\x7a\ +\x36\x84\x69\xa2\x62\x17\x00\x0c\x6a\x8c\x65\x1e\x39\x11\xfe\x8b\ +\xa2\xe4\x5a\x8c\x3d\x94\x38\x83\x61\x5a\x27\x13\x73\x41\x01\x27\ +\x70\xe7\x87\x4c\x96\xee\x90\xa1\x22\x82\x11\x0c\xfe\x70\x2e\x4a\ +\x30\xb6\xc5\x60\x14\x4f\xb3\xf5\x14\xb9\xca\xc4\xac\xba\xb0\xc9\ +\x33\x2a\x56\x21\x51\xfc\x21\x8a\x51\x8f\xee\x0f\x30\x2a\xab\x18\ +\x9f\x23\xd4\xcd\xff\xee\x96\x69\x38\x86\xba\xa2\x81\x92\x30\xbc\ +\xc2\xe5\x2f\xdd\x66\x4f\xd8\x3c\xd2\xe0\xf1\xd0\xd8\xe1\x39\x31\ +\x3c\x4c\x66\xb0\x94\x9c\xa2\xe3\x16\xcc\x3c\xb3\x88\x6c\xd4\x2d\ +\xbd\xd8\x5d\x26\xeb\xa4\x9a\x68\x04\x3c\xb1\xf1\xf8\x60\x66\x61\ +\x86\xc9\x39\xb9\xc6\x23\xce\x29\x66\x1c\x23\x6f\x7a\xbe\x1e\xac\ +\xe3\x51\x4e\xfa\x37\xe9\x2e\xfe\x48\x85\x20\xad\xa0\xa4\xa0\x2f\ +\x38\x2e\xf4\x1c\x86\x49\xf0\xe7\x40\x60\x9a\xb0\x28\xa9\x85\xfc\ +\xcc\x41\x5a\x8c\x19\x4f\xc2\xbf\x96\xc2\x28\xc2\xd7\x74\x15\x18\ +\xb8\x56\x18\xcd\x56\x0c\x6c\xc7\xad\xf1\xf9\x40\x56\xda\x4c\x0c\ +\x78\x8f\x4b\x09\x3d\xca\x97\x0e\x98\x26\xea\xac\xb0\x91\xf3\x48\ +\xa3\xc1\x18\x89\x90\x44\x4e\xc0\x19\x20\xce\x90\x1e\x3f\x54\xd0\ +\x06\x4f\x98\x06\x89\xc4\xd5\x7b\xce\x76\x90\xf0\x2a\x86\x0c\x9d\ +\xa2\x85\xe4\x9c\x66\x26\x8d\x87\xc1\x15\x78\x88\x0a\x28\x24\xd8\ +\xac\x9d\xcf\xc3\xef\x48\xde\xf8\x64\xb9\x68\xfb\x96\x8a\x26\x72\ +\xf7\xdd\x39\x25\x15\x4b\x9c\x4b\xb6\xc3\x01\x1e\x47\xe2\x70\x63\ +\x12\x04\x1a\xf8\xc3\x15\x5e\xbf\x25\xd6\x61\x5b\xc0\xbc\x26\x6a\ +\xd4\x95\x70\x5f\x7a\x02\x2e\x5c\xc5\x97\x77\x73\xe9\x6d\x90\x2e\ +\xf8\x56\xfc\xb6\x3c\xc4\x7f\x58\x80\x53\x70\xa1\xa8\xa7\xd4\x91\ +\x7b\xe8\x21\xc7\xa3\x6e\x35\xb5\x80\x2d\x15\xd3\x7d\x70\x35\xbb\ +\x69\x0e\x41\xd7\x00\xfd\x58\x3e\xad\x90\x0e\x7d\x83\x6b\xe9\x12\ +\x74\xe5\x88\xc2\x01\xe3\x9e\x1e\x0c\x59\xc2\x8a\xdc\x82\x8a\x8d\ +\x9e\x25\xc1\xbe\x59\x1f\x9b\x8b\xb5\xa8\x5f\x10\x83\x50\x57\x70\ +\x45\x54\x53\x59\xaf\x92\xb4\x8e\x54\x50\x0c\x3b\x7a\xc6\xd2\x12\ +\xe9\x8a\xcc\x20\x07\x36\x79\x36\x5a\xfc\x64\x1d\x38\x36\x20\x24\ +\xc9\xd0\xb3\x25\xfb\x8e\xaa\x39\x0d\x7d\x79\x9f\xea\x36\x74\x80\ +\x63\x37\x96\xed\x75\xeb\x06\x6c\x33\xef\x8c\xc0\x67\x7e\x64\xc8\ +\xf2\x69\x7a\x87\x87\x03\xe3\x50\xeb\x61\xa8\x3c\x22\xcb\x45\x18\ +\xf5\x08\xc9\x10\xf0\x84\x8d\xc4\xc0\xdc\x46\x1f\xdd\x38\x45\x79\ +\x5a\x1d\xa0\x0b\xfe\xb4\x9c\xfa\x38\x98\xda\x72\x8b\x40\x12\xc6\ +\xd0\xae\x8d\xc6\x0e\xd3\xa7\xbf\x7a\x46\xde\x49\x4b\x97\x48\x02\ +\x90\xe6\x22\x48\xe3\x98\xb0\xc7\x4c\x02\xb4\x5f\x95\xd2\xd2\x97\ +\x1f\x37\x27\x40\xe2\x80\xed\x99\x70\x48\x97\xaf\x92\xf1\x6f\x83\ +\xa7\x9f\x8e\x05\xec\x9f\x38\x9e\xd6\x55\xc9\xba\x93\x63\x58\xc8\ +\x8d\xd8\x36\xf4\x10\x96\x0b\xea\x07\x72\xa2\x7a\x04\xb8\xcc\x82\ +\x96\x7c\xa7\x0b\x14\x51\x33\xc5\x95\x2f\xba\x63\xc6\xa8\x35\xb1\ +\x3c\xe1\x82\x58\x06\xa5\x4d\x05\xba\x9e\x41\x09\xaf\x24\x46\xf2\ +\x7a\x34\x5d\x46\x91\x0f\x9b\x88\x64\x83\xac\x55\x48\x5e\x6f\xa6\ +\x47\x3d\x90\x2b\x39\x63\xed\x1f\x35\xe4\xc9\x71\x43\x9e\xfc\x47\ +\x0d\x79\x6a\xdc\x90\xa7\x26\x1c\xf2\x50\xc8\x94\x62\x42\x57\xf8\ +\x3f\x3d\xee\xa5\xa0\xa2\x3e\xec\xcb\x4e\xe1\xd1\xc8\x48\xd2\x38\ +\x01\x0e\x78\x65\x45\x6f\xb9\xf4\x5c\xb0\xb4\x18\x87\xf3\x24\x37\ +\x64\x29\x9e\xd5\x9f\xb3\xd2\xa3\xcc\xcd\x69\x67\x8d\x09\xa7\x6c\ +\x8c\x9b\x34\x73\x9d\x46\x01\x81\xbf\x02\xa1\x9c\x30\xc0\xe4\x0c\ +\xa6\x64\xa7\x2c\xc3\x2e\x94\x1c\x97\x8a\x30\xdf\x71\x7a\x13\x2e\ +\xfb\xe9\x8a\xcb\xb6\xf9\x19\x50\x8e\x5b\x03\xdd\x31\x94\x8e\x7b\ +\xb8\xc9\x4b\xa9\xba\xc0\xff\x96\xc2\xd3\xaf\xa4\x6d\x97\xd4\x5a\ +\x52\x28\x91\xe9\x78\x82\x4f\x08\xb7\xb1\x90\xe3\x2b\x10\x2d\x05\ +\x7e\x4a\x44\x2e\x8a\x83\x7a\x9c\xd0\x79\x2c\x69\xb9\xbe\x1e\x40\ +\x1c\xea\x1e\x12\x6d\x43\x93\xa0\xad\xe8\x14\x7b\x8a\x60\x54\x66\ +\x8c\x14\xb0\x9e\x51\xc0\x60\xca\x1a\xb1\x8b\x45\x96\xd8\x46\xf3\ +\xc0\x8d\x15\x71\xb8\x4c\x88\xca\x59\x7a\x2a\x6a\xe0\xd0\x34\xb2\ +\xec\xcb\xc4\x27\x26\x3c\xd2\xc9\x91\x91\x92\x1e\x94\xf0\x48\xa7\ +\x46\x46\x4a\x7a\x3e\x4e\x27\xef\x8a\xe4\xe6\xd3\xcd\xa0\x26\xf6\ +\x81\x10\xc3\x8c\x64\xf8\xcb\x59\x8f\xee\xc7\x34\xfb\x82\x59\x2a\ +\x21\x6e\x51\x0f\xc5\x24\xfc\x84\x60\x74\x6b\x25\x02\x42\xa0\x9b\ +\x5c\x6a\x8e\x00\xa5\xaa\xf4\x47\x5d\x27\x9e\xad\xa6\xa5\x9b\x0d\ +\x4a\x9b\x95\x70\xbe\x05\x98\x71\xa4\x07\x86\xe2\x84\x6b\x5b\xbf\ +\x50\x57\xa6\x21\x62\xe7\x72\xbd\xc4\xe3\x46\x63\x3a\x24\x36\x5b\ +\x75\x37\x59\xc2\x31\x57\xc4\x8f\xc9\x4d\x91\x11\x29\x9e\xca\x9a\ +\x3f\x77\x76\xc0\x85\x87\x75\x10\xd3\x40\x0e\x73\x36\xaa\x52\x12\ +\x8f\xab\x34\xca\xbf\x7d\x54\x60\x7c\x0c\xd9\x18\xf4\x18\x26\x9c\ +\x64\x61\x40\xdf\x0d\x86\x20\x74\x1f\x53\x07\xd3\x3a\x79\x4c\x81\ +\x69\xdf\x09\x86\x3f\x49\x33\x19\x4b\xa8\x8a\x99\x5a\xe8\xc7\xe3\ +\xd3\x54\x8e\x15\x1c\xcd\xa7\x2d\x99\xd4\x5f\xe5\xbb\x76\x5a\x0f\ +\x0d\x24\x00\x80\xea\x83\x7b\x40\x49\xed\x01\x8d\x41\x58\xe3\x26\ +\xb7\x50\x4b\x7c\xfb\xd4\x2a\x67\x0f\xec\x19\xa4\xae\xc2\x82\x09\ +\xa6\x5c\x89\x62\x34\xe9\x3c\x34\xba\xc4\xcf\x85\x34\x3d\xa2\xc4\ +\xd0\x36\x60\x65\x4d\x50\xda\xa7\x45\x07\xc3\x31\x43\xe7\x08\xab\ +\x39\x61\x9b\xa6\xfc\xa6\xcc\x64\xf5\x24\x9b\x17\x9c\x23\x90\xf4\ +\x1a\xc0\xf0\x32\x01\x52\xce\xb2\x47\x72\x3e\x3a\x4a\x7d\x6b\x3f\ +\x0d\x03\x82\xca\x2d\xb3\x71\x93\xe2\x61\x69\x0c\xb0\x93\xb1\xac\ +\x23\xc4\xf4\xd3\x65\x55\x2b\x62\x27\xf2\x60\x1a\x93\x0b\x4b\x61\ +\x95\x28\x5d\x6d\xae\x98\xcc\xb7\x0a\xa5\x3c\xa5\x2b\x4c\xa1\xfc\ +\x23\x96\x96\x47\xac\xfa\x9c\x55\x4e\x50\x56\x16\x5d\x1a\x45\x27\ +\xe0\xb5\x98\x74\xa2\xf8\xa5\xa9\xad\xd5\x36\x5f\xf9\x59\x03\x93\ +\xb1\xbd\x4c\x7c\x44\xe2\xa6\x0b\x85\x6f\xe5\x44\xef\x10\x13\x05\ +\xa2\xb1\x09\xa7\x1a\x24\x3b\x78\x05\x97\x5e\xcb\xa5\xc8\x37\x86\ +\x50\xe1\xdb\xa5\x48\x41\xcc\x97\x88\x21\x6f\x65\xfb\xc8\x0c\x6d\ +\xcf\x58\x6a\x6c\xb1\xc0\x8a\xc7\xc2\x20\x67\xdc\xf0\x44\xdd\x57\ +\x02\xb0\x4e\x0c\xa7\x85\x13\x51\x07\xc0\xa2\xb9\x36\x4f\x9f\xef\ +\x41\x15\x6d\x0c\xd9\x65\x59\x02\x31\x5f\x03\xa2\xe4\x5a\x69\x9b\ +\xfe\x68\xe4\xad\x31\x2b\xa9\x59\xd0\xaa\x95\x37\x28\xbd\xa6\x6e\ +\xc0\xf1\x13\x2b\x35\xfa\x10\x27\x07\x87\x48\xaa\xcd\xe8\x43\x9c\ +\x1a\x1c\x22\xa9\x1a\xd3\x15\xf0\x51\xdb\x3c\xd4\xe8\xc2\xef\xd4\ +\x9e\xb0\x62\x64\xfb\x1c\xe6\x9b\xb6\x8b\x60\xb4\x52\x75\x5b\x06\ +\x08\x12\x31\xc6\x13\x30\x04\x1c\xb5\x20\xa9\xaf\x38\xac\xfc\x2b\ +\x6d\x9b\xd5\xb0\x4d\x48\xa8\x0c\xd4\x9c\xfd\x90\xe8\x59\xb2\x61\ +\x3f\x55\x52\x0d\xb0\x03\x84\xf1\x08\x66\x01\x4d\x4b\x63\x70\x5a\ +\x5e\x72\x31\x38\x8f\x6c\xd0\x20\x32\xf0\xc0\x4d\x50\x9a\x56\xea\ +\x08\x9f\x6d\x68\x1a\x64\xbb\x26\xf6\xe0\x46\xb1\x31\x86\xde\xab\ +\x50\x7c\x74\xd0\xd6\xf2\x40\x52\x13\x46\x86\x1d\xeb\x84\x53\x9f\ +\x82\xa6\xfd\x08\x6e\xa9\x85\xe8\x63\x2e\x5f\x9f\xf3\x0d\x96\x17\ +\xc4\xe4\x50\x5e\x2a\x90\x3a\x00\x73\x37\x5a\x45\xcb\x35\xf3\x3c\ +\x38\x21\xa6\x48\xcc\x22\xa3\xf3\x4f\x35\xe3\x2c\x31\xa3\x37\xbd\ +\xb9\xba\xc8\x46\x94\x27\x29\xee\xc8\xd7\xf3\xc7\x58\xcc\x3d\x4c\ +\xd4\xb3\x36\xe6\x9d\x14\x4c\x44\x93\x8b\xa6\x43\xd0\xf3\xc9\x4e\ +\x34\xb7\x19\xd1\xd2\x63\x14\x55\xb6\x5b\x69\x98\xc9\xf0\x4a\x66\ +\x9a\x97\x30\x24\xe2\x6f\x5b\x50\x3f\x15\x46\x9e\xd0\x26\xd5\xd1\ +\x60\xe6\x68\xc0\xc8\x54\x19\x09\x98\xf1\x63\xe4\xcd\x09\xcb\xe5\ +\x8e\x5b\x66\xe1\x25\x9b\xbd\x6a\xa1\xcc\x4e\xa0\x98\x53\x95\x55\ +\x7a\x15\x25\x0b\x65\x89\xaa\xaa\x32\x67\xf5\xba\x31\x2b\xdc\x62\ +\x01\x13\x84\xa8\x32\x27\xba\x2f\xa7\x73\xa7\x99\x70\xac\x9d\xc9\ +\x4d\xeb\x2c\xae\xcf\x16\xea\x1e\x1f\x65\x8c\x2b\x82\xe2\x6d\x65\ +\x75\x09\x37\x77\x46\xb3\xba\x44\x48\x21\x7a\xe0\x74\x96\x97\xc3\ +\x31\x59\xfe\x4e\xd4\x81\x77\x40\x1d\x44\x22\x0a\x6d\x14\x9e\xaf\ +\xde\x64\xb9\x16\xda\xd4\x69\xb3\x08\x3b\x0c\x92\x24\x3b\x81\x15\ +\x51\x34\xcd\xc7\xa1\x59\x4e\xa0\x43\x80\x15\x44\xa5\x2e\x75\xf5\ +\x51\x43\xcb\xd3\xbf\x3c\xbd\xc4\x9c\x7f\x67\xd2\xd3\x0c\x5f\xa1\ +\x02\x0b\xc6\x39\x68\xb3\x74\x48\x30\xbc\xcd\x4c\x86\x59\x86\xe8\ +\x94\xf7\x41\xc5\x33\xdd\x0c\x3f\x82\xf0\x58\x3a\x67\xf0\x21\x92\ +\x1e\x8e\xf5\xb8\xb9\x0c\x39\x09\xd2\x5c\xb8\x8c\xf7\x39\x39\x50\ +\x07\xb1\xe6\xfa\xdd\x64\x67\xac\x98\xcc\x17\x03\xbe\x00\xb9\x5e\ +\xf6\x92\x9e\xa3\xae\x0a\x40\x31\x67\xc7\x28\xee\x7e\x31\x50\x59\ +\x34\x47\x9b\x9a\x2a\x36\x29\xab\x98\x4e\xaa\x89\x5e\x49\x36\x73\ +\xd5\x56\xb7\xd3\x19\x1d\xd9\x18\x9e\x64\x81\xc6\x03\x84\x15\x58\ +\xa9\x94\x6b\x75\xd6\xc3\x8e\x18\x15\x5a\x17\x14\x29\xf2\x33\x29\ +\xcd\xa8\x20\x98\x0a\x51\xe9\x27\x76\xe5\xe6\xac\x91\xa6\x9e\x1a\ +\x2b\xd3\x0d\x04\x34\x42\x39\xc6\x38\xe5\xf7\xd4\x31\x00\xf8\x1c\ +\xcf\x59\x45\x0c\x4c\x25\x67\x21\x6f\x85\x16\x29\xd8\x6b\xd0\x47\ +\x9b\x09\x2c\x34\x8b\xec\xc5\x42\x9f\x75\x86\xab\x53\x0e\x22\x5f\ +\xb0\x9d\x11\x74\x6f\x88\x08\x16\xb3\x12\x46\x89\x1e\xd5\x1a\x23\ +\xa6\x3c\x32\x93\x57\xc2\xb1\x00\x83\x40\x20\x8d\xb0\x1e\x50\x52\ +\x1d\x23\x30\x3b\x10\xe1\xcc\xf2\xeb\xd6\x7c\x71\xa3\x44\x74\x73\ +\x10\x68\xce\xa0\x07\x84\xbd\xa7\xf7\x9b\xb0\x74\xc4\x66\x5d\xcb\ +\x4a\x9b\x1c\xb3\x34\x09\x11\x8e\xd5\x45\x18\x88\x49\xc3\xff\xd3\ +\x40\x50\xaa\x56\x98\xb1\x4d\x8c\x6b\xf5\x1a\xeb\xad\x71\xd3\xb5\ +\xba\x99\x1b\x8d\x1e\x4c\xdf\x1c\xb5\x68\x7e\x63\x0e\x0e\x34\xef\ +\x62\x91\x60\x4b\xde\x80\x2d\x61\xe1\xbe\x1c\xa2\x83\x6e\x01\xdb\ +\x80\xf8\x3c\x07\x97\x67\x3a\x30\x2f\x6b\x9e\x2b\x44\xca\xe3\x9f\ +\xe2\xb6\x24\xd3\x76\x53\x5c\xd6\x8d\xe3\x58\xc5\x0a\xa3\x46\x4e\ +\x14\x6e\x07\x0b\x9b\x31\xef\x08\x45\x29\x45\xfe\x76\xfe\x3e\x0b\ +\xe8\x7a\x52\x63\x60\xd9\x91\x6a\x96\x32\xce\x5e\x44\x6f\x8a\x49\ +\x58\x20\xac\x80\x12\x42\x97\x82\x13\xfa\x46\x68\xd9\x19\x8a\xd2\ +\x99\xfb\x1f\x58\xde\x18\xe8\xe3\xd4\xe1\x8f\x44\xaf\x1e\x95\xa7\ +\xdc\x80\x4d\x60\x85\x1f\xbd\xc6\x76\xf8\xbb\x3b\x6e\x7b\x96\xe1\ +\x14\xf3\x13\xec\x95\x32\x96\x7b\x99\x22\x71\x68\x1a\x4c\x61\xf2\ +\xcd\x19\xaa\xc8\x21\xd5\x06\xa5\xb8\xd0\x61\xa9\x84\x45\x0d\x51\ +\x16\xf7\xcf\x19\x80\x3e\x07\x85\x69\x99\x23\x55\xa5\xec\x05\xcb\ +\x78\x06\xc2\x28\x1b\xd2\x59\x2c\x22\x2d\x65\x61\x78\xa7\x88\x0b\ +\x07\xfb\xc5\x45\x69\x04\x7c\x17\xd9\x71\x29\x39\xb7\x78\x18\xd5\ +\x33\x8f\x04\xfd\xdd\x71\xfc\x82\x91\x4b\x77\x84\x01\x26\x49\x8b\ +\xae\x14\x04\x60\x7c\xe5\xd5\x80\x0d\x60\x71\x61\x2d\x6c\x00\x66\ +\x39\x84\x2d\x01\xa5\xc2\xbd\x7b\x73\x96\xbb\xb9\x3d\x8d\x95\x6a\ +\x2a\xb3\x26\x76\x31\x4c\x20\x31\x68\xed\xe7\xbe\x6d\xb0\x16\x4e\ +\xc8\x48\x83\x21\xa9\xb6\xb4\x27\x06\x75\x5e\x05\xa9\xa2\x58\x2d\ +\x63\x8d\xcb\x34\xcd\x74\x19\xd1\x5c\xa9\x1c\x25\x39\xae\xbb\xb0\ +\xaa\x81\x2c\xe7\x06\x3a\xda\x33\xdc\x14\xcf\x49\x29\xe5\x20\x8a\ +\x19\x2b\x0e\x67\xe3\x05\xce\x26\xfc\xbc\x0c\x66\xa2\x67\xfd\x5d\ +\x44\xd5\x57\xe8\x30\x08\x46\xcb\xc2\x7b\xf1\xe4\x10\x0f\x8f\x5e\ +\x50\x66\x22\x2c\x0c\x07\x02\xc6\x40\xb2\x09\x11\x31\xa0\x02\x11\ +\xbd\x21\x00\x2a\xb9\xb5\x4e\xdc\xd6\x4a\x55\x5d\xee\xe3\xa8\x55\ +\xf2\x81\x31\xb8\x8e\xe7\x89\xb3\xdf\x6d\x38\x92\x41\x88\x3c\xc2\ +\x00\xbb\x01\x8d\xca\xa5\xc6\xac\x51\x74\x7a\xa6\xab\xfc\x1f\xe4\ +\x1c\x83\xf2\x07\x9b\xe7\xba\x7a\xb1\x1c\x44\x29\x99\x4c\x99\x0d\ +\xf3\x8b\x70\xfe\x47\x86\x08\x5b\x9c\xe5\x1d\xb0\xd0\x98\x60\xef\ +\x2c\x47\x41\x51\xfe\x59\x71\xe8\x41\xdd\x50\x23\x72\x9e\xb1\x01\ +\x54\xae\xd5\x7e\x33\xf9\x96\x70\xb9\x6f\x26\x5e\x6e\x30\x92\x27\ +\x5c\x61\xfb\x89\x1f\x5a\xfc\x88\xd4\x89\x44\x0b\x0d\xa5\xab\x47\ +\x35\x75\x31\x06\x43\x08\x55\x15\xba\x89\x6e\x43\xea\xfd\x1c\xd4\ +\x88\xb6\x2c\x1d\xa6\xdf\x4c\xf0\xcd\x60\x81\x7b\x3b\x24\x25\xa9\ +\xdb\x99\x51\x70\x1a\x28\x9e\xa7\x21\x49\x34\xff\x65\x1c\x9a\x55\ +\x5c\x0c\x3d\xb0\x88\xed\x11\xcb\x8f\xd3\xd6\xd1\xcf\xe7\xd9\x07\ +\x40\x8f\xb0\x8b\x9e\x6f\x81\x22\xc2\x93\x8f\xe8\x97\xf4\x87\x09\ +\xd8\xb5\x31\x8b\x52\x23\x4a\xbd\x3d\x83\x46\xc6\x49\x97\x45\xca\ +\x55\x82\x2d\x7a\x7e\x06\x5c\x5c\x34\x45\x48\xe3\xb6\xaa\xdc\xa2\ +\x28\x17\x67\xac\xac\xcc\xdf\x67\x49\xe7\x69\x19\x8b\x10\xdd\x2a\ +\xf6\x91\x70\x66\x96\x30\xfc\x5c\xbe\xfd\xf1\x8a\xb2\xe0\xf3\x91\ +\x7c\x5a\xb9\x01\xd9\xb8\x0d\x50\x85\x31\x4a\x5b\x06\x3e\xce\xf3\ +\x90\xe0\x27\xee\x26\xd1\x54\x85\x6e\x86\xeb\xd0\x1b\x32\xc7\x36\ +\x21\xae\xbf\x93\xf8\x38\x84\xe4\x7b\xe0\x08\x14\x79\x06\x17\x25\ +\xb9\x34\x0f\x26\x9a\x98\x9f\x2b\x08\x3b\x54\x56\xc2\xdf\xf6\x51\ +\x71\x2b\x20\x96\x05\x79\x9b\x01\x72\xb6\xb9\xf6\x9f\xe6\x91\x22\ +\x96\x5d\x43\xc9\x3a\xc5\xf5\x10\x91\xa5\x99\x61\x14\x22\xf1\x9c\ +\x8b\xc3\xb3\xd0\x27\x18\xda\x8a\x0e\x28\xca\xe9\x74\x19\x30\x37\ +\x42\x73\x15\xfd\x60\x81\x52\xc1\xa1\x49\x3a\x39\x93\x11\xb2\x5d\ +\xcc\xd8\x69\x93\x1e\x92\x62\xb9\x90\xa2\x0d\x27\xb2\x86\x95\x19\ +\x49\xcc\x78\xde\x48\x8c\xe9\xa4\x0a\xef\x38\xf2\xdb\x65\x9c\x3a\ +\x99\x4e\x42\x59\x0e\xa5\xdf\x73\x50\x2b\xcb\x22\x9d\x1b\x5c\xb5\ +\x65\x3e\x47\x93\xef\x59\x90\xc5\x84\x1b\x61\x38\x9c\x8e\x4d\xbe\ +\x33\x8c\xae\x9d\x08\xbb\xa1\x89\x29\x0a\x9a\x20\x84\xbd\x01\xb5\ +\x39\xb2\x17\x71\x3a\xf1\xb8\x53\x5c\xe6\x73\x72\xee\x35\xce\xf1\ +\xac\x6c\x39\x4f\x93\x4d\xd3\x16\x53\x82\xb2\xda\x5b\x54\x85\xf4\ +\x68\xd6\x04\xfc\xc9\x73\x04\xbf\xe9\x73\x71\x18\x3e\x60\x52\x9b\ +\xe6\x17\x89\x37\x47\x59\x0c\x42\x89\x93\x89\xf1\x01\xae\x6c\x72\ +\x12\xcf\x70\x22\x57\xfe\xa0\xe0\x36\x4f\xc4\x08\x52\x57\xea\x3a\ +\x2e\x27\x79\x93\x43\x43\xfd\x64\x1e\xff\x4e\x8a\xd0\xc0\x61\x12\ +\x1b\x93\xc6\xed\x10\x55\x61\x1a\x2c\x72\x53\xca\x71\x9b\x82\xa6\ +\x07\xd5\x1d\x31\x35\x9f\x71\x72\x93\x37\xd4\x43\xe7\x0e\xdf\xb9\ +\x09\x29\x92\x5d\xab\x98\xb1\x5c\xc6\xa5\x02\x79\x94\xb2\xc8\x2f\ +\xed\xb8\xd4\x93\x64\x4c\x23\xcc\x56\x35\x7f\x06\x32\x40\x28\xa5\ +\x65\x4e\xaf\x2a\x03\x8c\x71\xf9\xb8\x26\x4a\x71\x99\xad\x7a\xe1\ +\xaf\x21\x47\xb1\x90\x93\x55\x70\x81\xe0\x99\x13\x10\x8b\x7c\x9a\ +\x6e\x0e\x8b\x80\x2b\x3c\xb2\xca\x21\x37\xd0\x1c\x66\x99\x34\x82\ +\xab\x51\x88\x55\xee\x66\x06\x03\xff\x54\xf9\x56\xa7\xea\xfd\x71\ +\x1b\x88\xb9\x31\xba\x6a\xc8\x13\xd1\x64\xb3\x27\xc9\xe2\xa8\xd5\ +\x2f\xbc\x31\xbd\x06\x8c\x05\xec\x50\x7b\x3f\xa5\xac\x2f\xcd\x2a\ +\x2d\xc1\xce\xa2\x61\x4a\x33\x3c\x93\x9e\xae\xa5\x70\xba\xa2\x59\ +\x51\x34\x41\x28\xde\xf3\xdb\xbe\x19\xf5\x11\x63\xc5\x74\xfc\xbd\ +\xb0\x05\xdb\x01\x61\x7d\x24\x2e\x7f\x2b\x26\x2b\x4b\x79\xcd\xf9\ +\x6c\xdb\xfb\xfb\x58\x0e\x56\xc2\xf9\xde\x19\x58\x55\xd0\x07\x9b\ +\x42\xe3\x58\xe8\x80\xc2\xfb\x6b\x06\x54\x03\x25\xaa\x0c\x0e\x01\ +\xf3\x84\xa6\x9c\x32\x55\xb8\x68\x57\x4b\x2e\xd0\x93\x27\x1d\x04\ +\xf1\xcc\x48\x29\x8f\x9e\x96\x1e\x84\x48\xaf\xe8\x14\x58\xce\x9b\ +\xb0\xe7\x89\x13\x1b\xe6\x85\x56\x2d\x03\xaa\x2a\x52\xc0\xc7\x9d\ +\x4e\x24\xf4\x9d\xaa\x42\x4f\x3b\x1c\x95\x02\xb3\x93\xed\xe6\x31\ +\x7c\xf6\x3f\x22\x97\x60\x7e\x60\x89\xab\xf4\x18\x9a\xca\xa8\x60\ +\xd3\xac\x62\xe1\xb3\xc4\x14\xba\x99\x88\xd0\x24\x8b\x1d\x25\x8b\ +\xf4\xce\xdb\x5c\xc4\x54\xdb\xfc\x0c\xe3\xbc\x4b\xc8\x46\x12\x2d\ +\x7e\x1e\x95\x8e\x8c\x60\x88\xae\x8d\xa6\xcf\xcb\x12\xe7\x84\x53\ +\x18\xd8\x8f\xa7\x88\x5b\x48\xb3\x04\x37\x93\x21\x38\x8e\x3d\x44\ +\xd4\xa2\xa8\x0c\xd9\x23\xb7\x58\x20\xbc\xbb\x36\x0f\x6d\x97\xa6\ +\x45\xd2\x3c\x58\x83\x6c\x42\xd5\x24\x8b\x19\x10\xba\x9a\x4f\xd7\ +\x30\xaa\x29\xd9\xb3\xb6\xd2\xac\x2d\x26\xc3\xa8\x43\x29\xe9\x32\ +\xbe\x50\x71\x86\xb0\x7f\xc0\xe6\x5c\xcb\x25\xc2\x02\x74\xb5\x44\ +\x49\x2a\x0e\x36\x12\x91\x30\x9c\x93\x71\x28\xe1\x27\x60\x1d\x32\ +\x44\x93\x13\x03\x99\x3b\x15\x73\x17\x11\x51\x31\x16\xcc\x61\xb7\ +\xf8\x3b\x51\xc8\x94\x38\x78\x37\x5d\x33\x5b\xb2\x60\xe0\xac\x48\ +\x04\x64\x04\xc8\x06\xd0\xa7\x86\x78\x6c\x27\x47\x03\x3e\xb4\xa2\ +\xb8\x60\x16\x27\x0c\xef\xbd\x65\x93\xca\x6b\x91\xf7\x5e\x10\xc3\ +\x24\x65\xef\x9d\x98\x6c\xb5\x1f\x99\x41\x49\x53\x87\xb4\x2a\x18\ +\x95\xe9\xb4\xd5\xdc\x6f\xb0\xe4\x76\x63\x48\x15\xe2\x24\x3a\x3c\ +\x6c\x16\x1b\xab\x22\x0a\x89\xed\x80\xa3\x60\x46\xbb\x50\x2e\xcc\ +\x50\x6d\xbf\x68\x7a\xd3\x12\x51\x48\xa1\xbb\x44\x3c\x99\x42\xc2\ +\x34\xb7\x2c\xf7\x2d\x55\x72\x99\xae\xad\x00\x32\xcf\x62\xa5\x55\ +\x14\x36\xd3\xb9\x68\xd6\xd4\x34\x7d\xa4\x8d\x9c\x30\xb5\x06\x58\ +\xdb\x9c\xc4\x99\x34\x0b\xc4\xdb\x78\xca\x3d\xdc\xe9\x3c\x67\xdb\ +\xea\x8c\xb7\xd3\x11\x8d\xae\xac\xe9\xf9\x96\xe7\x27\x3c\xde\x55\ +\x83\x64\x9b\x96\x2b\x97\x47\xfd\xa9\x88\x8a\xb4\xd0\xb9\x42\x6d\ +\x3a\x88\xaa\xad\x8a\xeb\x3d\x18\x3e\xb2\xc1\x10\xfa\xab\xd2\x1b\ +\x10\x57\xf5\xa4\xeb\x73\xaa\xbd\x85\xca\xdd\x9b\xcc\x3d\xca\x74\ +\x51\x3d\xe4\x2a\x72\xa9\x45\x93\x93\x4a\xb1\x24\xbd\xd3\x98\x21\ +\x83\xbd\x62\x8d\xd1\x9c\xe9\x58\xc8\xe5\x2e\x5c\xb2\x0d\x2b\xec\ +\xf2\x13\xdd\x3c\x92\x49\x5d\x83\x9a\x0a\xd8\xcd\xb5\xf3\x12\x55\ +\x35\xa8\xbb\x47\x54\x4b\xa1\x36\x88\x9a\x25\x4b\x46\x8c\x98\x6d\ +\xd8\xf2\x24\xe0\xb3\x48\x69\xb5\x56\xdc\x2f\x94\x94\x7d\x2c\xe1\ +\x7a\x5b\xc2\x54\x49\xaa\xa6\xcd\x28\x55\xf2\x14\x98\x87\x75\xd1\ +\xb4\x39\xd9\x32\x82\x50\xf9\xcf\xc1\xe2\xb4\x68\xd2\xe0\x82\xed\ +\xae\x3d\x62\x17\x31\xc3\x82\x66\x1e\x53\xed\x62\xba\xf9\x83\x2c\ +\xd7\x62\x1c\x8f\x8f\xe0\x03\x74\xf5\x5b\xb5\xe3\xd3\xb6\xd3\x1c\ +\x87\xd3\x03\x33\xf4\xf7\x6d\x4d\x2a\x1c\x4f\xc2\x06\x4c\xaa\xdf\ +\x60\x9c\x79\xaa\xcc\xc4\xa8\x39\x78\xcc\x4e\x34\xe4\x34\xe3\x0f\ +\x0d\xb8\xe9\xac\xad\x55\xeb\x01\xa5\x76\xac\x6e\xe7\x34\x93\x02\ +\x69\xc2\x45\x42\x62\xc0\x74\x84\x99\x10\x43\x09\xdb\x08\x9b\x9a\ +\x70\x0d\xd6\xd9\x56\x26\x8b\x14\x8f\x2e\x67\xb8\xb3\x9f\x59\x6a\ +\x7a\x2e\xa1\x88\x20\x79\x88\x75\x2f\x04\xf3\xea\x21\x6a\x53\x8b\ +\x92\xd8\x18\x42\x12\xce\x7f\x8f\x5a\x5a\xc9\x57\xb4\x2d\xb6\xcf\ +\xcc\x64\x3c\x67\x52\xde\xaa\xb2\x23\x78\x1f\x9c\xc0\x99\x0f\xf0\ +\x93\xc4\x02\x5c\x35\x3a\xd1\xdd\x4d\x15\x02\x92\x4a\x80\x63\xf3\ +\x13\x9e\xae\x15\x6a\x4c\x92\x28\x09\x49\x4d\xbb\x9b\xfb\xa8\x84\ +\x07\x73\x07\xd2\x00\x53\xc5\x59\xc5\x23\x73\xf5\xa8\xc9\xe7\xe3\ +\xe4\xbb\x79\xce\x29\x36\xe2\x31\x68\x6b\x59\xd0\xa7\x12\x2b\xad\ +\x43\xb2\x47\x61\x91\x88\x00\x01\xa3\x21\xba\x68\x95\x78\xd9\x30\ +\x34\xad\x0a\xac\xa9\x06\x3e\x39\x3c\x70\xd2\x84\xcc\xa9\x06\x3e\ +\x35\x3c\x70\xd2\x34\xcd\xa5\x81\x6a\x13\x41\x78\xc1\xf2\x7b\xbd\ +\xe4\xb4\x19\xb7\x7b\x3a\x39\xeb\xf3\x34\x6a\x2a\xe8\x7a\x9b\xd6\ +\x37\x0b\x0b\xf0\x98\x82\x95\x70\xd4\x39\x81\x51\xc3\x59\x77\x8d\ +\x43\xbc\xa4\x2f\x71\x85\x08\xc3\x02\xb5\x0d\x44\x52\x8a\xad\x65\ +\x3a\xb3\x55\xbb\xb4\xe9\x7b\xc2\x11\xb3\x2a\xb1\x53\x6a\xa4\x22\ +\x6f\x2d\x8b\xbe\x45\x91\x67\x46\x19\xbf\x4b\x6c\xce\xba\x94\x2f\ +\x53\x4f\x5c\xd5\xb3\x20\xf4\xb2\x0c\xa5\x58\x9c\x80\xd9\xa2\x54\ +\x2d\x15\xe9\x60\x54\x33\x1d\x77\x69\x8d\x34\x7a\x89\x58\x2c\x9a\ +\xe5\x2f\xb0\xca\x8d\xa4\xca\xc0\x6c\x32\x4c\x58\xe1\x86\x6c\xad\ +\xa4\x10\x3d\x6c\x7a\xa3\xa2\x9b\x52\x22\x89\x38\x40\x58\xef\x9c\ +\x70\xad\x0f\xab\xed\x3f\x20\x95\x81\x11\xa4\x70\x5e\xcd\x29\xe7\ +\x3b\x76\x58\x76\xc2\xe1\x11\x77\xd8\x64\x3b\x6b\x03\xe7\x1b\xb5\ +\x92\x5a\x94\xdd\x1c\x08\xe6\x90\xec\x49\x38\xf5\x1c\x3a\xb5\xc9\ +\x6a\x7b\xa7\x3b\xe3\x67\xf9\x8c\xd3\x28\xa9\x22\xc1\x6e\x78\xcc\ +\x7f\xc6\x6c\x52\x81\x32\x25\xe0\xc2\x29\x4e\x7a\x83\x83\xfd\x48\ +\x7b\x6a\x66\x5d\xb9\x8d\x17\xa0\xea\xb4\xf7\x0d\xa3\x36\x1a\x2e\ +\xe9\x62\x95\x21\x70\x1c\xbc\xbc\x89\x24\x95\xd9\x9f\x65\x8f\xf1\ +\xec\x26\x29\x38\x93\x4a\xca\x1b\x39\x82\xa2\x49\x95\xe1\x32\x8e\ +\xa9\xd1\x12\x4e\x8c\x53\xa1\x7f\x85\x16\x61\x2f\x31\xbf\x70\x19\ +\x63\x87\xba\xff\x38\x68\xfc\x9d\x41\xd1\x90\x09\x17\x8c\xc0\x3a\ +\x69\x3e\x0c\x9e\x2e\xd6\x74\x0e\x0f\x17\xac\x5c\xb8\x70\xa7\x55\ +\x53\x72\x80\x6c\x22\x7a\x5e\x83\x68\xc2\x9e\x21\xcc\x1b\x25\x9a\ +\x87\xa8\xdd\x53\x49\xf5\x45\x69\xd9\xbe\x89\x48\xb3\x49\x91\x07\ +\xe7\x98\x51\xc8\x50\x32\x86\x26\xd4\x6a\xf8\xff\x6a\xf8\x77\x3c\ +\xfc\x7c\x06\xa1\xe9\x2f\x4a\xcb\xdd\x4a\x17\xaa\x2c\xdc\x8c\x95\ +\xb6\xc1\x5a\xa1\x9b\xca\xd2\xf2\x99\x9e\xed\xb8\x19\xbb\x88\x7d\ +\x07\x9c\x92\xe5\x9a\x2c\xb5\x14\x75\x63\x6b\x7f\xaf\x71\x82\x71\ +\x86\xb1\xba\x77\xf5\xea\xe3\x93\x6a\xc9\x87\xb5\xbd\x77\xb9\x9d\ +\xa9\x76\x4a\xe9\x42\x71\x15\xe3\x1e\x72\x11\x8a\x1e\x91\x90\x1d\ +\xee\xe1\xbc\x1d\x45\xc4\xea\xc0\x71\x19\x91\xfb\x1f\x48\xac\x46\ +\x54\xb1\x14\x5d\x11\xe3\x1c\xd1\x90\xb3\x8d\x22\xc7\x35\x33\x76\ +\xd9\x0b\x18\xf9\xd8\x54\x81\xba\x71\xa8\x33\x90\xf7\x62\x1e\xb2\ +\xb0\x37\xfd\x6a\xd6\x6c\xca\xa1\x3d\x8f\x7c\x93\x86\xcc\xba\xec\ +\x22\xa6\xe3\x5a\x49\xb1\xd3\x2b\xb1\xc3\xc4\x5d\x52\x76\xf5\x0e\ +\x0a\xad\xa8\x6c\x9f\x2e\xbf\x5a\x2f\x39\x64\x10\x3d\x41\x1f\x18\ +\xf7\xf0\x91\x60\xfe\x6a\xb8\x7d\x7b\x27\x02\xc2\x92\xd4\xa5\x43\ +\xcb\x32\xd3\x39\x96\xa2\x27\x7a\x2d\x24\x70\x46\x3c\x0f\x50\xe9\ +\x79\x50\xcc\x4c\x38\x87\x6c\x0e\xf5\x0e\x13\x1d\x3f\x44\x32\x68\ +\x38\x98\x2a\x9e\x65\x04\x23\x42\x41\x5a\x7f\x7c\xb2\x4e\xfb\x9d\ +\xe5\xfa\x8f\x92\x60\xfe\x92\x78\x4b\x4f\x4e\xd3\x6b\x1e\x7a\xb4\ +\xfc\x91\x40\x0d\x82\x3c\xbd\x8a\x04\x59\x35\xa4\x90\xff\xe1\x59\ +\x43\x3d\xd2\x79\x9c\x52\xb5\xc3\x61\x57\x60\x85\x04\x74\x05\x68\ +\xc5\x61\x1a\xe4\xfc\x9e\x5a\xb9\xb4\x86\x7e\x18\xf7\x6f\x14\x1d\ +\x26\x16\xaa\xe5\x1e\x66\x82\x32\xa3\x45\xb4\xea\xac\x2c\x7f\x14\ +\x16\x72\x44\xb4\xd9\x08\xbf\xe1\xf2\x90\xb7\xa8\x68\x08\x57\xe1\ +\xfe\xc3\x30\x8f\x9b\x51\x6f\xc6\x39\x9b\x59\x06\x96\x4d\x13\x10\ +\xed\x74\x4e\x8b\x31\xc3\xf7\xe5\x3c\xcf\xcd\xa2\x41\xe5\x75\xc6\ +\x30\x4f\x5c\x54\x39\x5b\xc0\xa0\x79\x78\x9a\xa7\x90\x73\x5a\xa2\ +\xe3\xd1\xab\x41\x68\x0d\x29\x72\x70\x7c\xb1\x9b\x07\xde\x7c\xd0\ +\x65\x82\xe3\x50\xfe\x4e\x67\x1e\x74\x2d\xab\xbf\x6f\xc0\x10\xda\ +\x8e\xe1\x4d\x78\x20\x07\xf0\x74\xd3\x59\xe8\x6d\x07\xf0\xac\xcb\ +\xb8\xa4\x39\x9d\x42\xe2\x43\xb1\x44\x3d\x82\x92\xc8\x91\x05\xdf\ +\xba\xed\xab\x8b\xfd\xb8\x4c\x1a\xbd\xf7\x91\x20\x36\xbd\x87\x8c\ +\x2a\x56\x8e\xeb\xd2\xb6\x55\xdf\x86\x8c\x5e\xa3\x8a\xab\x55\x0d\ +\xe4\x6c\xd1\xd1\x88\x63\xcf\x2e\xca\x0e\x8b\xe8\xa0\xa2\x58\x4c\ +\xa8\x62\x56\x1b\xb1\x48\x88\xab\xb0\xe0\x35\xcf\x31\x02\x22\xa6\ +\xfe\xb2\x02\x8d\x86\x73\xbf\x92\xc5\xb8\xa8\x30\x11\x12\x5a\xa5\ +\x89\xb3\xe7\xb3\xfc\xf4\xeb\xf0\xf1\x9a\x0e\xee\x7a\x74\x88\x48\ +\x43\xea\x54\x9d\x43\xe0\xe7\x6e\x6d\x94\xb8\xf5\xaa\xe2\xc8\xe8\ +\x38\x1e\x3e\xed\xf1\x51\x3a\x91\x3f\xd0\x91\xb3\xf0\xb3\xb0\x39\ +\x3a\x71\x8b\x69\xc8\xa7\x33\xd0\x40\x4d\xc0\x6d\xe2\x15\x30\x79\ +\x24\x87\xc9\x20\xed\xe6\xab\xcf\xa3\x08\xf6\x09\x4b\xff\x61\x49\ +\x48\x02\x8a\xf0\xe8\x0a\x17\xe1\x36\x14\x7a\xc9\x67\xa5\x19\x29\ +\x0f\x5e\x8f\xbe\x87\x0c\xe9\x94\xe4\xf9\x46\x1c\x79\xd2\x82\x5a\ +\xac\x74\x97\x07\x52\x25\xc6\x85\x03\x8e\xbd\xcd\x9b\x55\x09\x8c\ +\xf6\xa6\x57\x06\x2e\x63\x7a\x46\x27\x36\x71\xe9\xa4\xc5\x12\x62\ +\x78\x8c\x9a\xaa\x07\x3c\xd0\x7b\xe1\xef\x9d\x70\xde\xed\x6c\x67\ +\x33\xcc\xd8\x59\x70\x8a\x4e\x27\x76\xa5\x82\x21\xcd\x82\x9d\x9f\ +\x08\x8d\xd7\xbd\xc9\xca\x8f\x59\xbe\x9d\x36\xbb\xf1\x75\xf6\x28\ +\x4e\xcc\x1b\x62\xe0\x24\xcd\xc1\xb7\xd6\xad\x77\xf2\x99\xce\x84\ +\x8c\x64\x7f\xe2\x33\x14\xd3\x43\x80\x44\x3b\x6e\xc6\xb3\x8c\x98\ +\xa6\xcd\x72\x6f\x4e\x89\xdb\x1b\xd5\x86\x00\x37\x27\xc0\x22\xa6\ +\x19\xd0\xbc\x2d\x76\x85\x0c\x92\x1c\x32\xb2\x38\xd6\xa9\xd6\x25\ +\x38\x45\x5c\x3f\x18\xc5\x4f\x84\xb3\x53\x67\xae\x3a\xfb\x65\x0c\ +\x35\x28\x41\x95\x1d\xbe\x51\xc7\x01\x2c\x2e\xe7\x64\x8c\x74\xce\ +\xc1\x1c\x1c\xba\x7e\x96\xd6\x29\xca\xb6\x18\x37\xe5\xec\x15\x2d\ +\x27\x2e\x69\x12\x32\xce\xaa\x87\xff\xac\x28\x71\x78\xa8\x94\x3d\ +\xa3\x9b\xac\x41\x94\x89\xbe\x0a\x95\x62\x28\x41\x64\xf5\x84\x8c\ +\x51\x3d\xae\xd3\x19\x92\x74\x61\x23\xb9\x53\xae\x34\xb8\xa6\x6e\ +\xa2\xba\xda\xa8\x82\x42\x4a\xd6\x61\xa3\x5a\xbb\x73\x2c\x86\x31\ +\x45\x67\x64\xca\x55\x8a\xa8\x9e\x3d\x41\x43\x3e\x81\x39\x4d\x62\ +\x6a\x90\x24\xc1\xfc\x38\x31\xc1\x84\x6c\x6e\x9a\xc5\x5b\x99\x7e\ +\x8c\xe6\xcd\xd9\x90\xe5\x8e\x11\x23\x1c\x98\xa5\x14\x15\xca\x9e\ +\xcf\xbf\xc1\x9a\x96\x88\x95\xaf\xd5\x35\x98\x6a\x6a\x87\x16\x29\ +\xd1\x2a\x1a\x2c\x26\x44\x35\x89\xa7\x80\x57\x70\x01\xf4\x36\x27\ +\x3c\xdf\xbf\x8a\x25\xe6\x60\x00\x2e\xd8\xb8\x31\x7c\xa9\x5d\x4f\ +\x44\x9e\x87\x93\xb8\x54\xe0\x30\xfc\xae\xa7\x6d\x3f\x93\x6e\x22\ +\x45\x4c\xa4\xa7\xf5\x12\x23\xb6\xcc\x9a\x41\x9b\x97\xc9\x16\xac\ +\xa0\xcc\x8c\xac\x24\x9c\x80\xa1\x88\xe0\xa0\x4e\x04\x8e\x6b\x5b\ +\x45\xd6\x47\x5b\x64\x57\x4a\xf1\x25\xb2\xc1\x59\x01\x13\xdd\x39\ +\x25\xd9\x30\xef\x92\xee\x03\x48\x99\x7c\xaf\x21\x9a\x33\xc0\xa8\ +\x79\x2b\xeb\x77\x73\x45\x9a\x4f\xa2\xe7\x7a\x24\x65\x36\xcc\x79\ +\x77\x80\xdb\x29\xaa\xab\x62\xb4\x5d\xa6\xd2\xfb\x59\x55\xad\x60\ +\x37\x59\x34\xce\x85\x2c\xf1\xb4\x03\x15\x7c\x6b\x32\x97\x8d\x8f\ +\x3a\x01\xb3\x21\x8a\x44\xa5\x87\xef\xd6\x20\xd2\x8f\x76\x30\x0d\ +\x5d\x05\x80\xe3\x2f\x02\x0b\xae\x2b\x18\x32\x16\x5a\x0a\xbb\x1c\ +\x47\x14\x28\x06\x43\xc0\x94\x51\x88\xda\x1a\x96\x0c\xa9\x76\xf9\ +\x2f\xf5\x5d\x1e\x33\xf3\x65\x8b\x1a\x0d\x19\x5a\x72\x9f\x2d\x17\ +\xd3\x5a\x89\x6e\x19\x8f\xa4\xef\xe4\xc1\x98\x28\xa6\xad\xde\xe6\ +\x5d\xf4\x69\x1e\xfe\x03\x6b\x3e\x6b\xb9\x56\x31\x8d\x09\x22\x79\ +\x67\x9c\xc5\x85\xd9\x80\x22\xf2\xeb\x63\xb3\x1c\xcc\x00\xa5\x17\ +\x3a\x24\xf5\xf5\xce\xc1\x4e\xc3\x21\xf4\xca\x05\x34\x0d\x0b\x88\ +\x12\x77\xc5\xda\x4d\x02\xf6\xac\x0a\x53\x0c\x4f\x2b\x62\x34\x88\ +\x5d\x85\x99\xa2\x99\x27\xa2\x43\xd1\x38\x6e\x29\xfb\x59\xc4\x54\ +\x99\xe2\x92\x27\xa2\x09\x0e\x4b\xfc\xc8\xb3\x38\x92\x9c\x7e\xf1\ +\x30\x67\x67\xd4\x7f\x47\x7d\xe4\x98\xfd\x22\xaf\xa6\x4e\x81\xfd\ +\x38\x3a\x8d\x3c\xb9\x30\x68\xcc\x95\x24\x62\xc9\x25\xee\x8b\xa0\ +\xd4\xb8\x94\xd3\xbc\xc7\xf9\xda\x84\xe6\x60\x32\x24\x50\x19\xe6\ +\x4e\x2b\xb9\xb4\x84\x74\xa9\xe8\x98\x9d\xd4\x65\xb4\x09\x13\x42\ +\xd4\x69\x8a\xd7\x02\xa7\x13\x65\x3f\xee\x1c\x2f\x6c\x0c\xce\x24\ +\xd0\xbe\x20\x02\x98\xe6\x38\x52\x31\x05\x3a\xd9\x08\xef\xe7\x9d\ +\x68\x03\x58\x66\x7d\x5c\x99\x8f\x32\xcc\x54\xc1\x4e\x56\xd2\x06\ +\x2f\x1d\x52\x1b\x40\x67\x96\xc5\x35\x68\x1b\x60\x05\x8d\x6c\x84\ +\x94\x10\xa2\xf3\xb9\xfb\x6c\x32\xd1\xa5\x04\x95\xf2\x58\x07\xc5\ +\x0f\x33\x56\x27\x6b\xd8\xb4\x64\x17\xe7\xf6\xba\x14\xc0\x6a\x20\ +\x4d\x86\x24\x84\xf9\x67\x70\x54\x27\x0b\x3d\x89\xe0\x95\x70\x11\ +\x79\x5c\xe7\x32\xb9\x0b\x50\xd4\x30\xc4\x9d\x49\x51\x87\x10\xac\ +\x89\xd0\x5b\x4d\xb0\x28\x6f\xb7\xb6\x3b\x29\xa2\xcc\x79\x96\x7e\ +\x6f\xe2\xbe\xa6\xb8\xb9\xea\x63\x9a\x7e\xb8\xa2\x45\x9f\x3d\xc5\ +\x47\x65\xe6\x0e\x4b\xfd\x55\x7b\xed\xed\x0e\x46\xc5\xa8\x3a\x8e\ +\x97\x8f\x74\x83\x12\x34\xca\x9c\x47\x8a\x35\x50\x47\x93\x28\xe9\ +\xb1\x8b\x8c\x3f\x74\x23\x5d\xa4\x2c\xda\x24\xc1\x00\x76\x9b\x31\ +\x53\x76\xde\xf6\x27\x64\xe5\x0a\x7b\x3d\x05\x8f\x52\x23\xa8\x98\ +\x49\x5a\xf7\xf9\x59\xb0\x7b\x83\x21\x8c\xf8\x26\x36\x82\xa0\x82\ +\x29\x7e\x7a\xab\xdb\xf8\x86\x67\xd1\x44\x2c\x91\x4a\x55\xe0\x65\ +\xf8\xc2\x28\x08\xd7\x54\xc8\x0c\x47\x1c\x3b\x5e\x66\x06\x0d\x11\ +\x11\xef\x15\xe4\xcc\x64\xa9\xea\x56\x26\x64\x3b\xf3\x75\x06\x8f\ +\x48\x78\xe6\x70\x1b\xef\xb0\xf1\xb0\x5a\x6a\x5e\x7a\x6a\x96\xea\ +\x21\x9a\x23\x22\xc3\x48\xc7\x58\x9c\xcc\x56\xb2\x5e\xbf\x14\x4f\ +\x78\x56\x83\x50\x28\xf9\xfe\xb5\x10\x49\xb1\xab\x9b\x31\x45\x10\ +\x94\x75\x5e\xa3\x41\x95\x34\xd4\xa5\x69\x8e\x0c\x66\x66\xa9\xf4\ +\x9e\x5e\x63\x58\x49\x72\x61\x12\xf0\xbc\xc3\xbc\x55\x1c\x01\xe1\ +\x4f\xf3\x0e\xa9\xef\x9c\x2b\x86\xe2\x55\xd1\x75\xdc\xc3\x3c\xb1\ +\xd5\x38\x17\x2b\xbe\x19\xcf\x39\xd4\x79\xc1\xd2\x3b\xe9\x98\x4a\ +\x31\xa0\x4e\x07\xd7\xc4\x56\x6f\xfc\xf5\xa4\x6a\xc2\x02\xa0\xab\ +\xbd\x28\xe3\xa8\x87\x86\x05\x65\x46\xb9\xc2\xa0\xe4\x59\xe3\x9e\ +\xbd\x46\xd7\xb0\x53\x4a\x2a\xb7\xe6\xc3\xa8\xfb\x70\x54\x61\xa0\ +\x46\xc7\x6c\xde\xb3\xcf\xe8\x1a\x74\x81\x35\x27\x1d\x75\x1e\x40\ +\xca\x46\x3d\xc0\x75\xb6\xf0\x98\x4d\x7b\x61\xcc\x21\x3b\x93\x38\ +\x26\x53\x8f\xe4\xa1\xa2\xe0\x35\x66\xe2\x6e\x49\x2e\xb0\x51\x66\ +\x27\xe8\x7d\x6f\xcd\x80\x7e\xa9\x2e\x15\x9e\x5c\x6e\xaf\xd2\x4e\ +\x86\xea\x97\x1b\xf1\xd4\x2b\xd7\x6e\xba\x42\xcb\x56\x47\x3a\xba\ +\x51\xb6\xaf\x52\x79\x4f\x78\x9f\x1a\xfd\x83\xec\xbf\xe2\x4d\xb3\ +\x3d\x54\x23\xaa\xfb\xae\x56\x8c\x50\x9b\xf6\xdd\xa4\x69\xf2\xdf\ +\x46\x77\x66\x5c\xd1\x97\x2a\xe6\x1a\xd1\xd8\x95\xaa\x4b\x54\xd6\ +\xbb\x28\xbe\xa2\x28\x73\xf9\xa1\x55\xb5\x71\xe2\xb9\x92\x96\x77\ +\xc4\xae\xf6\x66\x4f\xb2\xb1\x1c\x19\xaa\x11\xd2\x8b\x31\xb9\x32\ +\x57\xed\x46\x88\xe8\x3a\x32\x2e\x7f\x77\x78\x86\x83\x1a\x41\x49\ +\x9f\x11\x3b\xd0\x96\x05\x90\x4d\x93\x3d\x79\x3d\x23\xc6\x14\x73\ +\x2a\x21\x2d\x78\xd9\x99\x6e\x1e\x32\x89\x04\x5b\x52\x76\x85\x3b\ +\x1e\x3d\x05\x32\x2c\x9b\x50\xe2\x1c\x9a\x51\x69\x97\x6e\x1b\x55\ +\xba\xe2\x5a\xd8\xe9\xe1\x5b\xeb\xf2\xc4\x0c\xc5\xc3\x74\xaf\x7c\ +\xb8\xc5\x71\x50\x5a\x05\xe5\x54\x77\x40\x02\x85\x1d\x5b\x41\x5d\ +\xdb\x90\xe9\xd1\x79\xae\x58\xa8\xae\x09\xda\x55\x97\x52\xb5\x31\ +\x35\x7f\x68\x5c\xf3\x09\x75\x79\xba\xc1\x3b\x90\x89\xd6\x13\xca\ +\x3e\x4c\x11\x2b\x10\xd5\x33\xf9\xbc\x93\xf5\x7f\xba\xc1\x9e\xa4\ +\x20\x59\x9e\x49\xbc\xa9\x8f\xf7\xe2\x12\x76\x1f\xed\x3a\x23\x4a\ +\xf1\x99\x13\x7c\x3d\x16\x6c\x81\x44\x28\xbb\x45\x41\x59\xe2\x0a\ +\x1e\xcc\x06\x77\xbb\x8d\x54\xd9\xa7\x5a\x0f\xff\x33\x15\x36\x9e\ +\x07\x72\xc6\xa3\x8e\x6c\x2b\x63\xa3\xbf\x27\x71\x3c\x6b\x26\xa4\ +\x24\xd8\x58\x09\xcf\x18\x43\xa8\x87\xbf\xa5\x2b\x20\x5f\x74\xad\ +\x9e\xaa\x4f\xf5\xe9\x71\xa8\x2c\x99\x70\x42\x30\x28\x1d\xcd\x99\ +\x9e\x41\x43\xea\xeb\x22\x6b\x16\xf5\x86\xc9\xba\x9d\x58\x1a\x71\ +\xc7\x07\xa4\x0a\xca\x5a\x09\x8c\x3e\xd5\xea\x4f\xd4\x56\x5f\x2e\ +\xaa\x84\x71\x6a\xcc\xac\x2a\x70\x67\x12\x16\xf8\x6a\x2b\x4f\xb8\ +\xea\x5a\x98\x55\x5d\x0a\x54\x5d\xda\x9f\xf0\xbd\x66\xe2\xa1\x96\ +\x9e\xd5\x2f\x2a\xf6\x72\x76\x36\xa9\x48\xd9\x52\x51\x3a\xc6\x87\ +\x49\x83\x49\x3e\x95\xfa\x0b\x2f\x8a\x0f\x78\xd2\x74\x9e\xe9\xf5\ +\x19\xde\x34\x4d\xf0\x54\x7f\x34\x1a\x74\x2f\x60\xa1\x62\xb0\xfc\ +\xab\x33\x1e\x34\xcc\xee\xf0\x26\x0a\x29\x27\x9f\x14\xb6\x5d\x93\ +\x28\x16\x11\xf3\x7f\x06\x48\xfc\x0b\x1d\x52\x4d\x8d\x98\x11\x22\ +\x67\xa3\xb7\x84\x26\x85\x97\xb9\x51\xa7\x5d\x42\xbc\xb4\x9f\x16\ +\x36\xd3\x91\xea\x32\x81\x37\x06\x38\xc8\x23\x24\x78\xdd\x50\xd3\ +\x52\x71\xab\x5b\xcc\x4b\xa2\x4d\x4d\x38\xd3\xba\x0e\x5e\x62\xb7\ +\xc2\x6a\x2f\xb4\xe2\x2c\x5c\x5a\x69\x10\x21\xe4\xa1\x67\xe7\xc1\ +\xb3\x34\xd9\xf1\x55\xa9\x9e\x70\xa9\xa7\x3c\x61\x4b\x07\xed\xa2\ +\xed\xe5\x42\x2f\xf6\xc2\x8b\xb4\x08\xa3\x1f\xcc\xb7\x60\x87\xdc\ +\xc9\xaf\x68\x3f\x62\xe9\xf6\xfe\xfe\x1e\x8f\x67\x83\x66\x3d\x2b\ +\x0c\x11\x5d\xee\x4e\x62\x71\x5f\x15\xdd\xd4\xac\x86\xa3\x9d\x16\ +\xf5\xf1\x8f\x85\x71\xb4\x10\xa1\x09\xb7\xd6\x91\x6e\x5a\x0d\x5f\ +\xf4\x52\xa3\xd0\xcb\xcd\xf0\x32\xbb\x81\x7b\x44\x7b\x70\xb7\x5d\ +\x0a\xcf\x42\x4d\xb9\xf0\x1d\xf1\x81\x4b\xfe\x54\x32\x66\x1f\xbb\ +\x9f\x9d\x89\x38\xad\x1f\x97\x36\x5a\x3e\x66\x34\x3d\xad\x59\xc5\ +\x8b\x0a\x44\x85\x07\x44\xaf\x0b\xd6\x4d\x24\x98\x4f\xb6\x0a\x5d\ +\xf7\x19\x22\x1a\x0b\x50\x45\x9b\xf5\x56\x68\x56\x89\xb8\x7d\xfa\ +\xcd\xf1\x2c\xc8\x82\x25\xfb\x5a\xeb\x8a\x71\x87\x27\x8a\xad\x2a\ +\x3a\x19\xcb\x6b\x0e\x01\xbe\x4d\x76\xdf\x0d\x26\xbb\x09\x9d\x26\ +\x5c\x18\x11\x5c\x16\x4b\x05\x13\x7d\x2b\xf5\xcd\x31\xfa\x32\x19\ +\x3e\xb1\xe8\xfb\x28\x54\x4c\x75\xab\xbc\x06\x47\x3b\x26\xcf\x45\ +\xd3\x21\x1b\xfb\x40\x7a\x82\x3a\x11\xde\xbe\xf9\xc1\xe7\x89\x47\ +\xc4\xe5\xe7\xeb\x54\x15\xa8\x78\xd7\xc0\x8b\xc6\xd7\x85\xd7\x3e\ +\x88\x0e\x68\x0b\x45\xbf\xca\x34\x63\xba\xe4\x4c\x6e\x98\x3d\xba\ +\xaf\x54\xca\x63\x3f\xbe\xb8\x0b\x65\xb5\x89\x1b\xd1\x94\x75\xb4\ +\x65\xd6\xf4\xb9\xe9\x08\x46\xe2\x2f\x0f\x6a\xd0\x2e\x0d\xd2\x1e\ +\x1f\x96\x01\x2d\x1d\x3c\x95\x9c\xa2\xe4\xb8\x48\x28\x09\x9f\x6e\ +\xbd\xd3\x48\x26\x44\x69\xc7\xf5\xe3\x85\xab\xfc\x94\xf3\xe2\x30\ +\x46\x75\xfe\x44\xc9\x0a\x63\x76\x1e\xd9\x8a\x54\xc3\x7c\x1c\x82\ +\xac\x0d\xb2\x47\xed\x6b\xbf\x45\xd3\x97\x8c\x3d\xa1\x37\x59\x43\ +\x7b\xc1\x80\xf4\xf4\x43\x1d\xd3\xad\xfd\x39\x9a\x1f\xaf\xda\x16\ +\x6b\x23\x3c\x9f\xf0\xf2\x93\xf8\xfa\x03\x75\x50\xc5\x73\x42\xa9\ +\x52\x4d\x83\xe2\x9b\x0d\x31\x43\x51\x6f\x12\x14\xce\x84\x9b\xa4\ +\x3d\x50\xc5\x51\xa9\x2f\xc1\xd6\xfc\x07\xe7\x06\xaf\x42\xc1\x18\ +\x1e\xdb\x07\x2f\xe7\x94\xf3\x99\x48\xf7\x20\xbd\x79\x98\xed\x57\ +\xec\x17\x64\x74\xd9\xcb\x23\xa2\x47\xbb\x66\x44\x89\x1e\x76\xc5\ +\x48\xe4\x38\xf6\x73\xef\xb7\x68\x6f\x25\xbb\xc8\xa8\xb2\x36\x2a\ +\x13\xa9\xc3\x18\x3b\xb7\x84\x06\xf8\x30\x0e\x10\x97\x51\xec\x06\ +\xe5\x07\x57\x5b\xc5\x49\x55\x59\x88\xba\x8f\x6f\x8c\x9b\xd5\x23\ +\x1a\x53\x15\x29\x06\xd4\xad\xeb\x21\x68\x65\xec\x88\x40\x31\x3c\ +\x04\x5c\xb0\x0f\x8e\xd0\x66\xb2\x41\xc3\xf5\x49\xfd\x5a\xfa\xb1\ +\xcb\x85\x15\xde\x6f\x42\x6f\xe0\x63\x97\x9f\xd1\xe8\x44\xca\x73\ +\xf2\x65\x1f\x50\x38\xb4\xa3\xaf\x7f\x43\x18\x8d\xcd\xaa\x2f\x9d\ +\x72\x4b\xc4\x48\xfa\x33\x11\x03\x8c\xc6\x44\x5b\x9f\x32\xbc\x37\ +\x42\x44\x83\x51\xe1\x60\xf0\x22\x5c\xc8\x0b\x1c\x55\x4a\x07\x54\ +\xcd\x2e\xb3\x0b\xe6\x28\x91\xa8\xda\xad\xf0\x51\x9d\x2f\x78\x91\ +\x64\xfe\x51\x49\xdb\xcc\xaf\xc3\x88\x32\x29\x9a\x36\x15\x74\x70\ +\x56\x1a\xa3\x9d\x8f\x11\xcf\xbd\x16\x86\xae\xb4\xa9\x34\x4a\x1b\ +\x1f\x25\x96\x08\xe7\x85\x2e\x15\x89\xde\x27\xd7\xca\x5f\x97\xd7\ +\xca\x69\x6f\x77\x22\x03\xd5\xa3\xf4\x95\xc1\x98\x25\xc6\x11\xa1\ +\x90\xc8\x58\x4c\x07\xc9\x4b\xa9\x34\x35\x62\x76\x38\xf9\x89\x91\ +\xc8\x48\x4b\xb4\x9a\xca\xa9\xc7\x12\x70\xed\x84\x9d\x46\x99\x17\ +\xe1\xae\xaa\xcf\x46\xe5\x51\x5a\xf8\x28\xe2\x8a\xec\x00\x31\x4f\ +\x76\x49\x9f\xf6\x60\xb7\x76\x11\x21\xcb\xd4\x15\xbd\x5e\xd9\xd9\ +\xd5\x7b\x19\x29\xda\x9d\x8b\x43\x81\x0e\x43\xa3\xcd\xb4\xd4\x01\ +\x1b\x0a\x85\x49\x76\x56\xf8\xde\x04\xa5\x53\x56\xda\x90\x76\x7c\ +\x25\xda\xd6\xbc\x71\x80\x27\xcb\x87\x9e\xdf\x09\x0c\x81\x46\x72\ +\x94\x98\x57\x8e\x17\x8b\x7b\x0f\x74\xb5\x49\x85\x41\x54\xea\x80\ +\xc8\x8c\x0d\x5f\x65\xd1\x35\xe0\x60\xeb\xb1\x92\xeb\x20\xe3\x56\ +\x5a\x92\x29\xbd\x6a\xf2\x76\x0b\x0d\xa6\xe0\x2d\x07\x7a\xcf\x3a\ +\x87\x14\x63\x39\x2e\xbf\xe5\x80\x15\x8c\xd0\x84\x8e\x18\xc6\xbb\ +\x3a\x26\x5d\xdd\xc6\xb2\xb1\xf4\x14\xa3\xcf\x93\x39\xd2\x76\xd6\ +\x4e\x57\x9e\x61\x05\x96\x3c\xab\xb6\xe9\x4a\x13\xf1\xf0\x67\xd1\ +\x5d\x69\x91\x46\x08\x47\x6d\xc0\x86\x07\x19\x74\x17\x60\xa2\xb3\ +\x07\xa8\x5a\x14\xa5\x04\x6a\xef\x68\xd9\xf4\x8a\xc3\x6e\xc8\xd8\ +\x51\x1d\x73\x23\xca\xf1\xa5\x8c\xcb\x2a\x8d\x6a\x70\x29\x8a\xca\ +\xc8\x61\xd9\x1e\xd3\xe9\x35\x7c\xb7\x4e\xf3\x20\x75\xec\xf4\x8b\ +\x22\x45\xed\xfd\xb3\xf1\x96\xd5\x3c\xc7\x9c\xcd\x83\x6b\x2c\xb4\ +\x24\xcc\xcc\x4a\xf5\xc7\xca\xd9\xde\x05\x4c\x4d\x89\xa4\x2e\x66\ +\xbf\x59\x2c\xd3\x14\x8f\x87\x17\x50\xae\x31\xf4\xd2\xd5\x1f\x16\ +\x42\x7b\x40\xb0\x29\xa3\xb0\xf2\xbc\xa1\xaa\x24\x29\x34\x75\xc7\ +\xa2\xf8\x4b\x17\x28\xd0\x0a\xb2\xb5\x12\x32\x1d\x1c\xe9\x25\x76\ +\xd1\xb7\x17\x70\x18\x1b\x5d\x83\x61\x30\xe7\x71\xfe\xc4\xe2\x76\ +\x2e\x22\xce\x0f\x64\x07\x34\x0d\xd2\x48\xf9\x90\x7d\x20\x7c\x3a\ +\xb6\x01\x34\x22\xf2\x6a\x60\xc1\x51\x1a\xd9\x4f\x1a\x37\x5b\x9c\ +\x4d\xe6\xc1\x5f\x27\xed\xc9\x60\xcb\x67\xf6\x3c\xdd\x61\x45\x89\ +\xcb\x06\x69\x38\xd5\x38\xde\x48\x83\xc8\x29\xe7\x4d\x17\x7b\x71\ +\xac\x13\x2e\x4c\x13\xbf\xcf\x47\x34\xe0\x12\x82\xb0\x91\x84\xaf\ +\xbe\x15\x77\x4f\x51\x99\x1d\x4c\x62\x14\xad\x29\x1d\x79\x54\x04\ +\x98\xec\x1e\x2b\x2b\xc0\x5e\x04\x41\x4a\x9d\x47\xb9\xe1\x24\xc0\ +\xac\x1b\x9b\x87\x05\x98\x5c\xfc\x6b\x70\xe3\x75\x22\xe8\xdf\xb5\ +\xfd\x30\xf4\x3b\x11\x7a\x35\x47\x1c\x64\x8c\x80\x4b\x44\x6f\x80\ +\x1c\xce\x98\xd3\x5a\xa3\xab\x74\x18\x01\x1f\x05\x60\x1d\xde\x29\ +\x4d\x8b\x18\x68\xd2\xa0\xcf\xfb\x5d\x85\xc1\x71\x11\x9c\x6d\x44\ +\xdc\x53\x98\xf4\x4a\xaf\x78\xc0\x75\x7e\x17\x56\xfe\x45\x2a\x98\ +\xda\xff\x55\x02\x5c\x7a\xd1\x60\xf4\x3e\xb0\x75\x06\x82\x69\x67\ +\x27\xd8\x0a\xc2\xa0\xaf\x8f\x90\xa5\xa3\x35\x80\x9b\x8c\x1c\x85\ +\x4a\xa5\x40\x59\x24\x40\x81\x23\x54\x0c\x93\x21\x3d\xf8\xe1\xc9\ +\x07\x42\x13\xea\x97\xe1\x6e\x8c\xc1\x8c\xe2\x4b\x96\x74\x02\xa8\ +\xd2\xe9\x85\x81\xe9\xe9\x46\xad\x43\x1a\x8b\x5f\xf8\x18\xce\xbd\ +\xe3\x8f\xda\x29\x91\xdb\x3a\x2a\x49\x8a\xee\x1b\x0b\x9f\xeb\x81\ +\x8f\x1c\xb1\x22\x64\xb6\x56\x40\x1b\xd9\xb3\x75\x46\x0a\x04\xe2\ +\xa8\xa0\xb8\x8c\x55\xa2\x9d\x2f\x8a\x69\x3b\x4a\x78\xe7\xe1\x22\ +\x86\x90\x8d\xb3\x1e\x3e\x3d\xa1\x8c\xbc\xa9\x17\xe1\x69\x6f\xc7\ +\x93\x58\x8f\x00\x15\xec\x08\x9b\x09\x53\x9a\xf3\x2a\xa0\xe5\xdf\ +\x56\x24\xb0\x35\x84\x56\x1e\xc6\xf7\xb9\x0d\x82\x22\x4c\xcc\x02\ +\x2e\x81\x35\xf2\xb6\x34\x9c\x1d\xcb\x00\x59\xa3\x88\x3b\xcb\xda\ +\xd0\xd3\x40\x4d\x78\xe2\xb3\x71\xe2\x4a\x0d\x76\x83\x13\x0b\x4b\ +\xf8\x80\xdc\x44\xd6\x50\x20\xdc\xf9\xaf\x33\x02\x80\x57\x4e\x49\ +\xfe\x10\x07\xc5\x60\xe0\x7c\x99\xa4\x52\x97\xcc\xf8\x33\x26\x1a\ +\xb0\x37\x87\xb9\x93\xa9\xf7\xb2\x0c\x31\xcd\x28\xab\xdf\x48\xd4\ +\xd5\x36\x95\x50\x10\x3e\x5b\xaa\x44\x88\x15\x39\xb0\x77\x2b\x85\ +\xff\x52\x44\xbb\x69\x55\x02\xdb\xcb\x80\xc5\xb2\x07\x4f\x1d\x46\ +\x96\xb4\x41\x0f\x29\x77\x0d\xd8\xd8\x30\x2a\xca\xe4\xc3\x3c\x60\ +\xb2\xae\xf7\x69\x59\x4a\x1e\x4f\x4b\xb1\x24\x1d\xd3\xb5\x1e\x34\ +\x83\x31\x6b\x72\xca\xba\x10\x43\x5c\x79\x29\xeb\x82\x57\x6c\x4c\ +\x57\x16\xe5\x90\x3a\x0c\x9e\x37\x99\x09\xd0\xdb\x72\x0e\x26\xf6\ +\xb7\xa4\x92\x27\x20\x8f\x00\x36\x9b\x89\xfb\x08\x63\xd8\x85\x06\ +\x5e\x34\xd5\x97\xed\x9f\x36\x55\x05\x80\x75\x4e\x1c\xc7\x12\x38\ +\xab\xf7\x68\xf3\x3a\x33\xcf\x60\x58\x47\x41\xac\x84\xb3\xe1\x49\ +\x01\x8a\xbb\xa8\x20\x4a\xa0\x25\x9e\xec\xe6\x45\x18\xc3\x92\x20\ +\x38\x78\xb1\xc0\x3a\x4c\xf4\xf1\x2b\x9e\xcc\x03\x93\x42\xa4\x2e\ +\x1d\x66\x84\x94\x0a\x90\xe1\xd4\x08\x64\x77\x00\x94\xb4\xb3\xaf\ +\xe5\x71\x2b\x07\x79\x10\x6e\x2a\xc2\x81\x14\x8b\xcc\x37\xcb\x91\ +\xca\xcf\x76\xda\x29\x94\xe8\xc3\xe1\x65\x5c\x9e\x70\x19\xe1\xc4\ +\x2e\x76\xab\x46\xfc\x69\x9e\xf9\x82\xd6\x46\x17\x84\x49\x56\x9a\ +\xc0\x98\x7a\x49\xf7\x4c\xba\xa4\xb8\xf0\x77\x96\x4c\x75\xed\x45\ +\x78\x39\xca\x4c\x9e\x4c\x01\x08\x8f\x18\x7f\x18\x4e\x0d\x2e\x5a\ +\x30\x15\x1a\x99\x64\x84\x28\xd9\xb3\x26\xeb\xe3\x38\xf5\xbe\x69\ +\x2e\x7c\x26\x32\x74\x71\x2c\xb0\x93\xf2\xbb\x8b\xff\x04\x60\xa9\ +\xaa\x82\x88\x74\x8d\xe8\xe5\x16\x9f\xcd\x0f\x00\x7e\x5a\x05\xc0\ +\xc3\x12\x58\xe5\x84\x64\x6d\x97\xf6\x4c\x8f\xea\x9d\x7f\x3f\x83\ +\x5b\x9b\x04\xc1\x4c\x23\x0e\x49\xc2\xc9\x3a\xea\x82\x0f\x16\x92\ +\x12\x25\x33\x8c\x10\x2b\xe7\x47\x8f\x92\x3c\x0f\x01\xd9\xc4\xe2\ +\x39\xc6\xd1\xc6\xb6\xdb\x03\xd7\x5b\x15\x8d\x70\xec\x53\x66\x75\ +\x80\x81\x2b\x13\x2e\x03\x57\x24\xa4\xf3\xa6\xe7\x51\x3d\x34\x2e\ +\x56\x3a\x13\xa4\xc5\x1b\xf1\xa1\x40\x26\xd1\x5d\x2e\x94\x4d\x45\ +\xe2\xc3\xe8\xa2\xf0\x89\xa8\x23\x2a\xf3\x31\x54\x18\x3e\x98\x61\ +\x15\xbc\x7f\xa5\x87\xc8\x86\x10\x44\x36\xaa\x96\x48\xdb\xa2\x23\ +\x8d\xc7\x4e\x55\xf7\xfd\x2c\xfa\x0c\x8c\x72\xd1\xb7\xf3\x98\x23\ +\x88\xfd\xa5\x79\x76\x20\x7b\x36\x55\xf6\x7d\x9a\x7d\x46\xf3\x9c\ +\x43\x18\xfb\x78\xe2\x1b\xd0\x26\xcf\x1e\x8b\x36\x56\x0c\xde\xb4\ +\x38\x15\x11\x31\xf2\xd4\xff\xc6\xa2\x0a\xba\xe3\xe6\x64\x1d\x0f\ +\xe1\x34\x20\xec\xc1\x18\xa0\x96\x82\x33\x46\x0b\x33\x22\x7e\x9c\ +\x5e\xd4\xd9\x5e\x27\x45\xee\xcb\x14\x6a\x92\x08\x4d\x16\x70\xd3\ +\xa9\x36\x4a\xaf\xe5\xd1\xae\x86\xdc\x0c\x63\x9b\x78\x9b\xc4\x56\ +\xec\x2f\x17\x1a\x97\x5d\xd5\x28\x80\xd7\x63\xd1\x22\xc9\x9a\x2d\ +\x72\x5c\xfa\xeb\xf4\xcc\x9f\x05\x5b\x54\x40\x44\xfa\x6e\x5d\x0b\ +\x17\x11\xe6\x0d\x8d\xd8\x29\x58\x4f\x40\xab\xdd\x12\x8d\x07\xcc\ +\x16\x4f\xc5\x79\xdc\xe8\xf3\xb1\x1e\x37\xf5\x56\xb4\xac\x84\xbd\ +\xb5\x5b\x54\x90\x68\x6f\xcd\xe5\xec\x37\xd4\xfc\x42\xc1\xb7\xd5\ +\x89\xe4\x28\x9c\x84\xbd\x4a\xf5\xbb\x2b\x68\x3a\xe0\x38\x29\x06\ +\xc2\x35\x25\x34\x44\xd4\xb5\x66\x4a\xa4\x1d\xb3\xcd\x61\x41\xfa\ +\x8c\x33\x5e\x64\x51\x9a\x92\xe3\xe1\x8d\x61\x51\x3b\x8b\x4d\x15\ +\x8e\x05\x99\x48\x7f\x36\x02\x2d\x6e\x4d\x53\xe5\x26\xe2\x1e\x03\ +\x9d\xda\xd5\xf4\x7f\x01\xd3\x8b\xe8\x90\x39\x66\xda\x79\xd4\x1f\ +\xb0\xf4\x44\x45\x76\xa3\x3b\x57\xb1\x73\x6c\x20\x9e\xd4\x47\xf4\ +\x96\x42\x07\x94\x87\x57\xbe\xd7\xb1\x4d\xb6\xfd\xa1\x86\x49\x98\ +\x18\xe7\x05\xe4\x61\x5c\xe2\x49\xfd\xf6\x38\x0e\x9a\xa9\xf4\x1e\ +\x51\xbd\x4e\x7c\x6e\x8a\xc9\x3e\x95\x92\xb7\xbd\x02\xff\xc2\xfc\ +\xc1\x90\x09\x82\xa3\xfc\x98\x29\x1c\xae\x60\x30\x70\xe3\xc1\x71\ +\x47\x01\x6f\x45\x2a\x0d\x85\xd5\x65\xfa\xb4\xae\xce\x2e\xc4\x18\ +\x5e\xdb\x09\x0b\x96\x09\xeb\x54\x1c\x32\x71\x91\x8a\x48\x10\xa6\ +\xba\x53\x77\xcc\xde\x8b\xe7\x32\xc4\x09\xf9\x88\x96\x6f\x2f\xb2\ +\x0b\x91\x68\x16\x1e\x46\x19\xf2\x66\x91\xb6\x1d\x11\xdb\x4d\xbf\ +\xcb\xc4\xc8\x6c\x23\xb6\x7f\xa4\x86\x0c\x15\x1e\xda\x61\xa7\x47\ +\x8d\xed\x71\x59\x1c\xfb\xc8\xbb\x88\xa8\xb6\x8c\x7a\x2a\x59\x33\ +\xad\xe8\x05\x0a\xea\x09\x9f\x88\x0c\x5e\x71\x77\xaa\x6c\xf5\xab\ +\x5c\xe0\x38\x3d\xf7\x5f\xfa\x0e\xbf\x96\x82\xa5\x9a\xea\xd1\x93\ +\xe8\x02\x15\x6c\x94\x3d\x98\x3c\xfa\x3e\x82\x4c\x73\x9d\x86\xc3\ +\x0e\x36\x03\x4f\x1e\x89\xa4\x8d\xe8\x03\xa9\xfe\x9a\x32\xfd\x44\ +\x03\xf5\x08\x1c\x08\x3b\x67\xc6\x67\xa0\xc4\x0f\x25\x58\x6f\x85\ +\xa1\x90\xcf\x46\x86\xea\xd4\x86\x2a\xc4\x24\x5f\xe8\x83\x1d\x89\ +\x83\xa5\x59\x06\x46\xfc\x70\x0b\xb4\xe1\x82\x9d\x99\xa2\x98\x12\ +\x0d\xa7\x22\x83\x2c\x8d\x21\x07\xd1\xef\x2a\x0e\xae\x59\x38\x9c\ +\x55\xcc\x54\x00\x6a\x49\x68\x3c\x37\x22\xad\xf4\xd1\x66\xe3\x68\ +\x4c\x49\x9d\x7a\x3c\xea\x34\x12\x11\x2f\x2b\x76\xbc\x77\xe0\x78\ +\x79\x87\x87\xba\xe2\x87\x4c\x69\x43\xaa\x66\x06\xe1\x1b\xec\xc4\ +\xf0\xdd\x1a\x42\x6c\x15\x54\x91\x36\x97\xca\x47\xe4\xfa\x44\x00\ +\xa0\xe5\x08\x50\x91\xa6\x54\x20\x30\xd8\x14\xa4\x6b\x70\x39\x53\ +\xaa\xe8\xcf\xfd\xcb\xa9\x17\x2b\x02\x64\x97\x06\x64\x65\xe0\xa2\ +\xe4\xa7\xa6\x8a\x0c\xb9\x3e\x66\xdd\x74\x6b\xd8\xc0\x0e\x57\x1f\ +\xf2\xb8\xca\xa9\x26\x63\x88\x76\x4a\x20\x11\x69\x51\x5b\xfc\x84\ +\xf3\xb5\x09\xf5\x6e\x6e\xfa\x40\x6d\x38\x10\x6b\xa3\x36\xe9\xe6\ +\xbb\xc8\x4f\xc5\xe6\xc7\x1d\x65\x06\x93\xeb\x88\x62\x88\x29\x8f\ +\xb3\x4a\xf2\x8f\x5b\xe2\xdc\xe0\x70\xec\x28\x4e\x7a\x7e\x84\x19\ +\x60\x62\x61\x03\x6b\x69\x45\x85\x7d\xf4\x5c\x7b\x69\x93\x0a\x73\ +\x93\x5e\xde\x3c\x05\xc7\xb1\x78\x5b\xb7\xb8\x15\xb3\xe3\xc3\xae\ +\x16\x9c\x7a\xb9\x8c\x3f\xb8\xe8\x85\xab\x74\x14\xd9\x58\xf1\xdb\ +\xd9\x28\xf2\x10\x55\x5a\xc1\x0e\xfa\x60\x24\xe0\x1b\x4a\xac\x50\ +\x41\xdc\xf8\xfc\x89\x56\xcc\x27\xe3\xc4\xa1\xf4\x87\x9d\x48\x13\ +\x91\x40\xb5\xf6\x6c\xc4\x48\x4c\xeb\x09\x2a\x8a\x65\xb1\x91\xa8\ +\x2a\x13\x9b\x93\x32\x3b\x9a\xbf\xa1\x62\x99\x95\xd2\x34\x76\x86\ +\x92\x32\xc3\xed\xa7\x26\x4f\xca\x8c\x6a\xea\x81\xac\xe9\x9d\xa8\ +\x97\x8b\xac\x03\x69\xcc\x4f\x91\x9d\x39\x40\xb4\x9a\x15\x0d\x8f\ +\x94\x82\xc3\xe0\xb7\xcb\x0c\xbc\x60\x6a\x79\xdd\x10\xa5\xcc\x98\ +\x84\xbf\xa8\xde\x11\xce\x99\x68\xe5\x5d\xa8\x77\xc4\xe4\x45\x74\ +\xc6\x8e\x40\x8b\x06\x7b\x22\xe3\x74\xf0\x71\xf6\xec\x8d\x4d\xb1\ +\x98\xd1\x50\xfb\xa6\x31\x14\x2b\x0f\xac\x34\xd4\xde\xf8\xa1\x06\ +\x63\x87\xd2\x13\x4d\xe2\x6c\xd0\x88\xb5\xab\xf2\x54\xf9\x74\xa6\ +\x0c\x10\xf8\x0e\x5a\x9c\xe1\x43\xb9\x65\xd2\x89\x83\x54\xa7\x77\ +\x4a\x8d\xfa\x6b\x74\x32\x38\x26\x6e\x7a\xe6\x12\x09\x03\x70\x66\ +\x82\x95\x07\xab\xa9\xe2\x57\x1c\x3b\x25\x72\xdf\xc8\x9a\x27\x47\ +\x76\xe5\x35\x7b\x3a\xc9\x6b\x0c\x62\x7e\xdc\xd4\xc8\xa2\xc3\x33\ +\xe7\x66\x38\x33\x73\xab\x16\x78\xea\x9a\x41\x56\x11\x43\x2a\x0d\ +\xa2\x3a\x9d\x35\x99\x0e\xc7\x48\x8d\x38\xd8\x7c\xd7\x2e\xac\x02\ +\x41\x6f\x45\x1d\xc7\x33\xa5\x07\x6a\x60\xe9\x85\xdb\x41\x8e\xb4\ +\x20\x0e\x0a\x6e\xae\x4c\x0f\x47\xca\x90\x60\x1d\x7c\x33\x44\x2f\ +\xa5\x66\x66\x5e\x25\x1e\xca\x9c\x47\xd1\xae\xd3\xbd\x1c\x3a\x56\ +\x10\x09\x36\x01\x8d\x16\xdb\x2c\x13\x24\x94\xd8\x2e\x7a\x53\x07\ +\x24\xb8\x96\xc2\x4d\xf4\x7e\x52\x81\xb4\x10\x95\xf7\xc4\xef\xc6\ +\x99\x22\x03\x6e\x36\xef\x0d\xe4\xc6\x48\x95\x96\x21\x14\xb3\x7d\ +\x31\x72\xa5\x59\xa5\xff\x29\x1b\x3e\x26\xcb\x6f\xdb\x14\xb9\xe4\ +\x22\x83\x5c\xb9\x15\xa3\x8d\x69\x34\x83\x5b\x45\xb5\x86\x43\x79\ +\xe3\xc2\x48\x15\x75\x7f\x51\xad\x92\xa5\x15\x4f\xd2\x4c\x92\x30\ +\xdf\xdc\x2a\x4e\xf2\x41\x6f\xa9\x4e\x66\x47\x0f\x3b\x23\x80\x12\ +\x8f\xb7\xf4\xe6\x6d\xe1\xb6\xf2\x9b\x92\x03\xaa\xc8\x30\x3b\x51\ +\x1a\x8e\xe0\x4c\x44\x70\x14\xf6\x98\x05\x4b\xf5\xe3\xae\x87\xd6\ +\x5b\x0d\x75\xc9\xdb\xfd\x56\x82\x4c\x50\x8e\xc2\x85\xb4\xa8\x05\ +\xc9\x0a\xb3\x8c\x79\xb1\x3c\xa8\xf2\xc3\x3b\xb7\xac\xdc\x17\xf6\ +\x07\xce\xe2\xde\x96\x28\xdd\xd6\xee\x8a\x52\xe3\x3d\xa2\x34\x86\ +\xa8\x0c\xb0\xb8\x5b\x11\xa3\xad\x0f\x82\xca\x10\x0b\x34\xa8\x1c\ +\x35\xb5\xeb\x4c\x9d\x64\x14\xa1\x64\x39\x73\x65\x64\xe5\x9c\x79\ +\x52\xc9\xd7\xd8\x45\x76\x6b\xb8\x78\x37\xad\xdb\x61\xee\x60\x79\ +\x7f\xa1\x68\x3e\xc0\x7c\xea\xb4\xe1\x14\x3d\x2f\xd4\x53\x8c\xea\ +\xa5\xc7\x3c\xc5\x4a\xaf\xd1\x72\xb5\xbb\x76\x87\xd1\xb7\x50\xea\ +\x35\x19\x8d\x60\xcb\x24\x5c\x6f\xd0\x8c\x69\xa9\x71\xc9\x8d\xd5\ +\x5a\x4d\x43\x55\xb8\x98\x81\xb6\xc4\xe8\x21\xe1\x56\xd9\x26\xd7\ +\xd2\x82\x3a\x5d\x45\x3b\x4c\x49\x92\x3d\x5a\x3f\x6c\xba\x7c\x65\ +\x8e\x85\xe6\xad\xa5\x2a\x8b\x7c\xaf\x7a\xcf\xde\x98\xbf\xef\xd3\ +\xfe\xbe\x2f\xb2\x28\xf5\x76\x55\xf8\xe5\x01\xd4\x86\xfe\x64\x8b\ +\xda\x9b\x7c\x51\x7b\x75\xa0\xf7\x46\x81\x56\x7f\xad\x0a\xff\x71\ +\x00\xce\xd8\x9f\x10\xe8\x7d\x49\x81\xee\x24\xb2\xf9\x70\x7c\x95\ +\x99\x56\xae\xd4\x61\xb2\x6a\x2e\x1e\xf9\x58\x17\x31\xda\xc3\x5d\ +\x9f\xc3\x43\x85\xfb\x5e\x1d\x81\x2f\x03\xbf\x63\x91\x94\xf5\xa6\ +\xee\x2f\xff\xbf\xd9\x68\x42\x82\ +\x00\x00\x3d\x0f\ +\x00\ +\x00\xdd\x0f\x78\x9c\xc5\x7d\x09\x78\x1c\xc5\x95\x70\xe9\x96\x46\ +\x97\x31\x60\x6e\x68\xcb\x8e\x2d\x1b\x59\x36\xe6\x30\x56\xb8\x64\ +\xc9\xc2\x26\xbe\x62\x09\x5f\x21\x84\xd6\x4c\x8f\xd4\x78\x34\x3d\ +\x74\xf7\x48\x16\xc9\x12\x16\x08\xc7\x42\x20\x6c\x08\x10\x48\x88\ +\x49\x08\x47\x20\x59\x08\x24\x21\x07\x04\x08\x10\x30\x21\x21\xc7\ +\xf2\x2f\xf9\x17\x62\x92\xb0\x8b\x08\x0b\x59\x7e\x42\x92\x0d\xd9\ +\xfc\xaf\x5e\x55\x75\x55\x75\xf7\x8c\x7a\x04\xec\x7e\x7c\x78\xa4\ +\x51\x77\xd5\xab\x57\xaf\xde\xfd\x5e\x9d\x70\x7f\xe6\xc0\x3d\xaf\ +\x7f\xee\x33\x4f\xcf\x3d\xf4\xfb\x67\xdd\xfc\xc0\xf3\xab\x08\x69\ +\x3e\x9e\x10\xb2\x8d\x90\x9f\xcc\x86\xcf\xed\xf0\xf9\x2b\xf8\xdc\ +\x41\xc8\x33\x57\x10\x52\xf7\x1c\xfc\xfe\x05\xf8\xfc\x25\x7c\x7e\ +\x1f\x3e\x5f\x81\xef\x73\x84\x34\xec\x22\xe4\xd3\x2f\x12\xb2\xe6\ +\x42\x42\x6a\x6c\xf6\x79\xc3\x4f\x09\x19\x3d\x86\x90\x2b\x2e\x21\ +\x55\x0f\x5f\x42\xc8\x99\x17\x91\xda\x5b\x27\x09\xb9\xa9\x40\x6a\ +\xbf\x5b\x4b\x48\xdb\x06\xf6\x79\x4b\x07\xa9\x5b\xb6\x9a\x90\x59\ +\xf7\xb0\xcf\xfb\x0f\x20\x75\x03\x8f\xc1\xef\x2f\xb0\xcf\xfb\x7f\ +\x48\xea\xb6\xc0\xf7\x1f\x19\x61\x9f\xdf\x69\x20\x75\x77\xbd\x49\ +\xc8\x11\x6b\xd8\xe7\x53\xdf\x22\x75\xf7\xff\x95\x90\x1f\xbd\x44\ +\xea\x7e\xf2\x43\x42\x9e\xbe\x8a\xd4\xdf\x09\xb0\x5e\xd9\x4e\x66\ +\x5d\xb4\x96\x10\xe7\x77\x64\x76\xdd\x77\x08\x79\xe2\x1e\x32\xe7\ +\x71\x80\xfb\xce\x1f\x93\x23\x6e\xf9\x23\x21\x5d\x2f\x90\xc5\x14\ +\x9e\x6b\x5f\x22\x47\x3e\xfa\x4f\x84\x5c\xf7\x67\x72\xe4\x5e\x8b\ +\x90\xeb\x3b\xc9\xca\x5f\x1d\x4d\xc8\xc9\x8b\x49\xcf\x4d\x87\x10\ +\x72\xe1\x41\xe4\xc4\x9b\x0f\x22\xe4\x73\x6b\xc8\x49\x9f\x86\x75\ +\x9d\x32\x4a\xd6\x5c\xf5\x31\x42\xba\x0f\x25\x6b\xae\xbf\x8c\x90\ +\xda\xb3\xc8\xda\xbd\x9f\x20\x64\xf1\x33\xec\xf3\xe6\x41\x72\xda\ +\x71\x00\x67\xc3\x33\xe4\x03\xd9\x63\x09\x79\xff\xa3\xf0\xb9\x82\ +\x90\x13\x9a\xe0\x73\x25\x7c\x6e\x20\x5b\xcf\x1a\x22\x64\xdf\xb7\ +\xd9\xe7\x0f\xde\x22\xdb\xfe\x0a\xeb\x48\xbf\x4d\xb6\x5f\xff\x3e\ +\x42\x0e\xf8\x39\xfb\x7c\xec\x6e\x72\xf6\xb6\x1b\x08\x79\xa0\x9a\ +\x4c\xbe\xfe\x0b\x42\xae\x39\x88\x9c\xf7\xf1\x36\x42\x2e\xbd\x8f\ +\xfc\xc3\xbc\xcf\x10\xb2\x7c\x3f\xf8\xbc\x0e\x3e\xcf\x84\xcf\xcf\ +\xc2\xe7\xed\xe4\xea\xef\x4d\x11\xb2\xcf\x3e\xe4\xd6\x15\x27\x13\ +\xb2\xec\xfb\xe4\x2b\xe7\xc3\x38\x5f\x6c\x22\x77\x3d\x0b\x78\x5e\ +\x7f\x0a\x79\xe8\xae\x34\xfc\xfe\x3c\x79\xfc\x37\x79\x58\xff\x0a\ +\xf2\xd4\xed\xfb\x11\xf2\x8f\xbf\x21\x6f\x93\x3d\x84\xdc\x9b\xab\ +\x3a\xe8\x93\x2f\x10\x72\xf6\x7e\x55\x73\x9f\x05\x38\xf3\x0f\x55\ +\x75\xdc\xf7\x67\x42\x0e\xac\xaf\x5a\x7a\xe5\x79\x84\x9c\xfb\xcd\ +\xaa\x35\xff\xfd\x25\x58\xff\x5b\x55\x83\xff\xef\x2b\x84\xdc\x7e\ +\x54\xd5\x96\x39\xa7\x11\xf2\xf5\xdf\x55\x9d\xf1\x02\xe0\xf7\xdb\ +\xb9\xaa\x91\xd6\x7f\x20\xe4\xab\x77\x56\xd9\xfb\x9c\x4b\xc8\xc3\ +\x97\x55\xd9\xd7\x5d\x4f\x48\xdf\x79\x55\x17\xac\x4c\xc1\x3a\x1e\ +\xac\xba\x7c\xb4\x08\xfb\x94\xa9\xba\xfc\x32\xc0\x7b\xc3\xdf\xaa\ +\x6e\xfe\x38\xc0\x33\xf7\xcf\x55\xf7\x7c\xb8\x09\xf0\xfc\xcd\xaa\ +\x87\x9f\x83\xf9\xdd\x2d\x55\x3f\xbb\xea\xe7\x84\x64\xee\xac\xfa\ +\xc5\xac\x79\x84\xac\xdb\x5a\xf5\xfc\x85\xff\x45\xc8\x77\xcf\xaa\ +\xfa\xd5\x3e\x7d\x84\xd4\xbf\x52\xf5\xeb\x37\x81\x1e\x9f\x58\x56\ +\xf5\xf6\xd7\xe0\xb9\x6b\xb6\x54\xd7\x3d\x08\xeb\xdc\xfd\x68\x75\ +\xd7\x73\x67\x11\x32\xff\xc8\xea\xa5\xdf\x80\x75\xcd\xf3\xab\x07\ +\xb6\xc1\xbc\x0f\x3d\x5c\xbd\xf5\x4f\x8d\x84\xb4\xfc\x77\xb5\xf5\ +\xd5\x61\x42\x7e\x9a\xa9\xce\x37\xfc\x1a\x68\xf3\x53\xd5\xe3\xf3\ +\xf7\x25\x64\x6d\x6f\xf5\xdf\xed\x3d\x9d\x10\xfb\xeb\xd5\xd7\x0c\ +\x1c\x0c\x70\x7e\xa8\xfa\x33\x7b\xbe\x41\xc8\x89\x4f\x57\xdf\xd6\ +\xb5\x3f\xd0\xf8\xb9\xd5\x5f\x39\x0e\xf0\x7d\xed\xf9\xd5\x77\x5e\ +\x02\xfb\x70\xdd\xec\xea\x7b\x7e\x0f\xeb\xfd\xa7\xcf\x55\x7f\xff\ +\x2b\x57\x12\xd2\xff\x64\xf5\x43\xd9\x37\x08\x19\xff\x62\xf5\x13\ +\x27\xff\x81\x90\x0b\x26\xaa\x9f\xbb\xe5\xdb\x40\xf7\x3d\xd5\xff\ +\xf7\xe0\x6b\x08\x69\x3a\xaa\xa6\xea\xa2\x47\x09\xb9\x6f\x65\xcd\ +\xec\xeb\xce\x06\x7c\xcd\xaa\xd9\x6f\x12\xf0\x7d\xff\x1f\x6a\x0e\ +\xde\x0f\xe0\x5c\xb9\xa0\xe6\xe0\x39\x70\xce\x76\x7e\xa0\x66\xe9\ +\xc1\xf0\xf7\xeb\xbf\x54\x73\x1e\x9d\x7f\xdb\x5b\x35\x9f\xf0\xd7\ +\x10\x32\xd8\x59\x73\xe9\x11\x30\xef\xf6\x5f\xd5\xdc\xb4\xed\xcb\ +\x70\x16\xd7\xd5\xdc\x7b\x13\xe0\xe3\xc1\x5d\x35\xdf\x78\x02\xe8\ +\xe3\xa1\x54\xcd\x03\xbf\xf8\x2d\x21\x9f\xdd\x56\xf3\xe8\x09\x30\ +\xff\x8d\x6f\xd7\x3c\xf6\xcf\x67\xc2\x39\xbe\x90\x7d\xde\xfc\x42\ +\xcd\x53\xad\x2f\x01\x3d\x3d\x5f\xf3\xaf\x2d\x14\xfe\x73\x6a\x5e\ +\xdc\x05\xf8\xfa\xc2\x6b\x35\x6f\x14\x80\x3e\x8f\x5d\x56\xf3\xc6\ +\x03\x80\xb7\x83\x2e\xa8\xf9\x4b\x3b\xd0\xc9\xf1\xb7\xd6\xce\x9d\ +\x07\x78\xef\x7c\x5f\x6d\xb7\x07\xe7\xe0\xe2\x9f\xd4\x6e\xa9\xff\ +\x34\x21\xc7\xdd\x5c\x7b\xd6\xc7\x00\x1f\x8f\x9e\x5b\x3b\xf9\x3a\ +\xcc\xfb\xb5\xdf\xd5\x5e\x30\x01\x74\x6b\x6f\xa9\xbd\xe4\x42\x38\ +\xdf\x6b\x9a\x6b\x2f\xf9\xf3\x4d\x84\x7c\xe3\x84\xda\x2b\x9e\xfd\ +\x1a\x21\xe7\x5f\x5b\x7b\xe5\x03\x70\xde\x6e\x5d\x51\xbb\xfb\x1f\ +\x60\xbe\xfa\x6f\xb1\xcf\xcf\xaf\xad\xbd\xe5\x28\xd8\xbf\x6f\xdd\ +\x5c\x7b\xfb\xef\xe0\xbc\x9c\xf0\xe9\xda\x07\x53\x7f\x02\xfa\xff\ +\x70\xed\xb3\xcf\x02\xcf\xc9\xfe\x67\xed\x8b\xf9\xdf\x00\xfc\x7f\ +\xa9\xfd\x6d\x3b\xd0\x4b\xf5\xdf\x6a\x7f\xd7\xfb\x03\x98\xff\xe0\ +\xda\xd7\x9f\xbb\x9d\x90\xe1\x6d\x75\x35\x17\xc2\x7e\x5c\xb5\xa7\ +\xae\xee\x29\xd8\xbf\x2d\x6f\xd6\xb5\xbf\xe1\x13\xf2\xbd\x7d\xea\ +\x0e\x99\x05\x78\xfc\xd0\xee\xba\xc5\x2f\xc1\xb9\xb0\xbe\x5a\xd7\ +\xff\xfe\x8f\x10\x72\xf5\xf3\x75\x67\x3c\x07\xf8\x9f\x7d\x16\xfb\ +\xfc\xce\x78\x5d\xfa\x2d\x58\x4f\xe6\xc4\x3a\xeb\x35\x38\xef\x5f\ +\x7e\xb3\xee\x92\xbb\x61\xfc\x47\x37\xd5\x5d\x7b\x3b\xe0\x77\xce\ +\x56\xf6\xf9\xd8\x05\x75\x5f\xfd\x00\x7c\xbf\x7d\x73\xdd\xd7\x6f\ +\x7d\x1c\xe8\xca\xa9\xfb\x76\xcd\x13\xf0\xf9\xfb\xba\x07\x5a\x60\ +\xff\xef\x98\xac\x7b\xe0\x4a\xa0\xd7\x8f\xb7\xd4\x3d\xb8\x05\xc6\ +\x33\x5f\xa9\x7b\x6c\x13\xe5\x6b\x7f\x57\xf7\xd2\x95\xdd\x84\xec\ +\x77\x64\xdd\x5f\xfe\x15\xf8\xc5\xd6\x33\xea\x0f\xff\x37\xd8\xcf\ +\xa7\xfc\xfa\x45\xaf\xdd\x01\xeb\xff\x7a\xfd\xe2\x8b\x9f\x06\xfa\ +\x7b\xb3\x7e\xeb\x41\x80\x3f\xc0\xcc\x8e\xd7\x01\xaf\xd7\x7e\xad\ +\xfe\x43\x3f\x83\xe7\x36\x3c\x57\x9f\xbb\x14\xe8\xea\xf4\x23\xea\ +\xfd\xc3\x80\x2e\xcf\xf9\x5a\xfd\xe5\xd7\xf6\x13\xd2\x7e\x64\xfd\ +\x75\xdb\x9e\x04\x3a\xf9\x53\xfd\xf7\xce\x07\xf8\x3a\xfe\x56\xff\ +\xe4\xfd\x75\xb0\xef\xff\x52\xff\x72\xdd\x06\x42\x1a\x1f\xa9\x7f\ +\xed\x2b\x5b\x09\xd9\xb3\xb1\xfe\xf7\x4f\x01\x9e\x8d\x1f\xd4\xff\ +\xd7\xdf\x00\xfe\x6d\x17\xd4\xbf\x7d\x30\xd0\xd9\x49\x47\xd5\xbf\ +\xbd\x1b\xce\xe7\xf7\xb6\x34\x34\x7e\x0a\xe8\xe1\xe8\x4f\x34\xb4\ +\x7e\x0b\xf8\x60\xdf\xef\x1b\xda\x2e\x3e\x09\xce\xe1\x31\x0d\x8b\ +\xe7\x01\x3e\x56\x3d\xd6\x70\xec\x28\xf0\x87\x83\x1f\x68\x38\xf6\ +\x65\xd8\xe7\x87\xff\xa5\xa1\xbf\x77\x31\x21\xb7\xdd\xd4\x70\xda\ +\x11\x70\x5e\xab\xeb\x1b\xd6\x7b\x1d\x40\xbf\x27\x37\x6c\xb8\x15\ +\xe8\xfe\x96\x8f\x36\x6c\x7b\xea\x65\xf8\xfd\xc2\x86\xf4\x7f\x03\ +\x7f\xda\x7f\x16\xfb\x7c\xf4\x88\x86\x73\xbe\x0a\xe7\xf5\x90\x1f\ +\x35\x9c\xff\xf8\xbd\x84\xfc\x78\x4f\xc3\xa5\x2e\xec\xfb\x8d\xf3\ +\x1a\xae\xde\x05\x74\xb9\xe8\x1b\x0d\xb7\x2d\x03\xf8\x6f\x78\xb3\ +\xe1\xe1\xb7\x61\x1f\x57\xb8\x0d\xff\xfe\x2a\xe0\xf1\x13\x3b\x1b\ +\x17\xde\x07\xf8\xfd\xfe\xa7\x1b\x97\x3f\x0a\x7c\xe6\x91\xef\x36\ +\x1e\xe7\x03\xfc\x47\xbe\xd6\xd8\xff\x6d\xc0\xe7\x49\xf7\x35\xae\ +\x7d\x72\x19\xd0\xeb\xde\x46\xf3\x63\x30\xee\xfb\xe6\x35\x7e\x71\ +\xcf\x08\xf0\xad\xbf\x36\x7e\x69\x2f\xd0\xeb\x17\xf6\x6f\xbc\x67\ +\xff\x4e\xa0\xe3\x45\x8d\xf7\xd5\xc2\x7e\x3c\xfa\xc7\xc6\x67\x96\ +\x03\x9e\x6f\x59\xd7\xf8\x8b\xa7\x41\x36\xdd\xf2\x40\xe3\x8b\x37\ +\x3e\x08\xf2\xe3\x0f\x8d\x2f\x3e\x0c\xe7\xe8\xd6\x17\x1a\x5f\x5f\ +\x0f\xfc\xea\xe6\xf3\x9b\x8c\x5f\xce\x07\xb9\xf6\x36\x7c\xde\x07\ +\x72\xed\x0e\xf8\x84\xf3\xf2\x93\xa5\x4d\xeb\xaf\x05\xb9\xb7\xe4\ +\xc4\x26\xeb\x97\x80\xbf\x3b\x3f\xd4\x34\xda\xba\x88\x90\x6f\x66\ +\x9a\xce\xf9\x24\xe0\xb9\x71\xbc\xa9\x38\x0f\xe0\xbb\x7e\x6b\xd3\ +\xf8\x7f\x80\xbc\xfb\x44\x7b\xd3\xc5\xb7\xc2\xba\x8e\xac\x6e\xba\ +\x7c\x1e\xac\xe3\x07\x9d\x4d\x37\xfd\x15\xf8\xe7\xc5\x0b\x9b\xbe\ +\xb9\x18\xf0\x77\x62\x5d\xd3\xd3\x87\xc2\xbe\x3e\xde\xdb\xf4\xb3\ +\xb9\x20\x3f\x3f\xfa\xdd\xa6\x97\xe6\x01\xbe\x8a\x1f\x6f\x7a\xf5\ +\x48\x90\x1b\x6d\xcf\x35\xbd\x7e\x34\xf0\xd9\x43\x6f\x6a\xfa\xfd\ +\x11\xb0\x0f\x35\x9f\x6a\xfa\xeb\x6a\xe0\x4b\x0f\xce\x4d\x35\x3d\ +\x4c\xf9\xea\xfc\x54\xe7\x0d\xb0\x4f\x23\x97\xc3\x27\xac\x7b\xe4\ +\xd7\xf0\x09\xeb\x1a\x5d\x99\x5a\xf2\x20\xf0\x81\x95\xb7\xa5\x8e\ +\xbd\x03\xd6\x75\xf7\x69\xa9\x93\x17\xc2\xb9\xb8\x79\x76\xea\x94\ +\x9b\xe1\x3c\x1d\x7b\x6f\x6a\xed\x97\x81\x5f\x3f\xf5\xab\xd4\x59\ +\x7b\x81\xde\xba\x3f\x0c\x9f\x07\xc0\xe7\x13\xf0\x09\xf2\x6d\xe9\ +\xd1\x29\xeb\x46\x80\xe7\x3b\xb7\xa6\x76\xd5\x9d\x4f\x48\xd5\x60\ +\xea\xe3\x57\xc1\x3c\xa7\xdd\x92\xfa\xfb\xdf\x02\x3f\xd8\xb4\x35\ +\x75\xf1\x2c\xa0\xc3\x7d\x77\xa7\xae\xbf\xf8\x40\x90\x37\x6f\xa4\ +\x3e\x7b\x06\xec\xcf\x0f\xae\x4c\xdd\x3e\x07\xce\xe3\x9c\x03\xd9\ +\xe7\xa3\x8f\xa4\xee\xb8\xec\x55\x50\x19\x36\xa5\x9e\x38\x03\xce\ +\xe3\xec\xeb\x52\xcf\x6c\xba\x1f\xf8\xce\x49\xa9\x67\xfe\x0d\xf8\ +\xd3\x21\x7f\x97\x7a\xf6\x3f\x01\xbe\x2f\xdd\x93\xfa\xdd\xd5\x97\ +\x12\x72\xd1\x50\x73\xc3\x2e\xc0\xeb\x57\xbe\xd9\x7c\xc8\x5e\x8f\ +\x90\xdc\xae\xe6\xf9\x9f\x07\xfc\x8f\xdd\xd1\x3c\xff\x31\xa0\xf7\ +\x39\x57\x34\x2f\x38\x0f\xf0\xb3\xfb\x98\xe6\x23\x37\xc1\x7b\x5f\ +\xdb\xd0\xbc\xe4\x5e\x90\x4b\x97\x7f\xae\x79\x85\x07\xeb\x7e\xfa\ +\xde\xe6\x53\x4e\x01\xfa\x3d\xe3\xd0\xe6\xbe\xa7\x61\x1d\x3b\x9e\ +\x69\xde\x78\x3d\xe0\xfd\xae\xcd\xcd\xd9\xce\x9f\x01\x3f\x7e\xb4\ +\xf9\xd2\xbd\x0d\x84\xb4\xee\x68\xbe\xa6\x1f\xf4\x89\x9e\x8e\xe6\ +\xeb\x67\x53\xf9\xb5\xb7\x79\xf7\x45\xc0\x9f\x6b\xaf\x6e\xbe\x77\ +\x00\xf8\xee\x4d\xd7\x37\x3f\xf2\x59\xf8\xbc\xe3\x8f\xcd\x3f\x5f\ +\x08\xfc\xab\xee\xbe\xe6\x5f\x9c\x07\xfc\xac\xf5\xaa\xe6\x3f\xbc\ +\x36\x08\x78\x59\xda\x52\xbf\x09\xce\x75\xfb\xd7\x5b\x0e\xfa\x2f\ +\x90\xb7\x5f\xde\xd8\x32\x37\x05\xf4\xf8\xf9\x62\x4b\xe7\x8d\xb0\ +\x6f\xd7\x3d\xde\x72\xd4\x79\x80\xdf\x07\x7f\xda\x72\xfc\x7a\x38\ +\x5f\x4d\x17\xb5\xf4\xcc\x79\x86\x90\xc3\x77\xb7\xec\x78\x08\xf8\ +\xc6\x8d\x7b\x5a\xf2\x97\xc0\xfa\x17\xe5\x5b\x3e\xb6\xf7\x56\x90\ +\x4f\x77\xb7\x9c\xff\x7e\xa0\xd7\x2f\xf5\xb6\x5c\xbd\x1b\xf6\xf5\ +\xa9\xfd\x5b\xae\xfd\x14\xe5\x5f\x2b\x5a\x1e\xbc\x0d\xce\xf3\x07\ +\xef\x69\xd9\xf3\x3c\xac\xf7\xc9\x13\x5b\x9e\x7d\x1d\xf8\xe2\x8a\ +\xf6\x96\x17\x3e\x0b\xfa\xcc\xe5\xaf\xb6\xbc\x38\xb7\x1a\xf8\xe4\ +\x19\x2d\xbf\x9e\x00\x7c\x5d\xb9\xbe\xe5\xf7\x2f\xc0\x7a\xee\x7a\ +\xbd\xf5\xd0\xb7\x5e\x23\xe4\x98\xd1\xd6\x9e\x1c\x3d\x3f\x4b\x5b\ +\x57\xff\x1a\xd6\xf3\xc3\xef\xb6\x6e\xbf\x19\xe0\xfb\xe2\xfb\x5b\ +\x77\x7c\x15\xe6\xbb\xe1\x8c\xd6\x33\xff\x1d\xe8\x6a\xe9\x4d\xad\ +\x99\x2f\x03\x5d\x4f\xfe\xb8\x75\xec\x4f\x70\x3e\x52\xa7\xb6\xfa\ +\xcf\x6f\x26\xe4\xb0\x3b\x5b\xc7\xbf\xf1\x8f\x30\xce\x83\xad\x37\ +\xbe\x0a\xf8\x3f\xe7\x90\xd6\x2f\x3f\x07\x78\x3a\xa6\xae\xf5\xd6\ +\x5f\xde\x42\xc8\x87\x2f\x6b\xbd\xed\xdb\x8f\xc0\xba\xe6\xb4\x3e\ +\xfe\x38\xf0\x85\x47\x4e\x6d\x7d\x63\x25\xcc\x77\xcf\x92\xb6\x83\ +\x0f\x03\x7e\xb3\x75\x4f\xdb\xa2\x6b\x32\x84\x0c\xb8\x6d\x47\xd6\ +\x02\x9d\x7d\xe1\x8e\xb6\xae\xdf\xc2\x73\x3f\x1c\x68\xdb\xf0\x23\ +\xc0\x7f\xf3\xfd\x6d\xce\x0d\x40\xcf\x4f\x3e\xd5\xf6\xd1\x73\xbb\ +\x40\x3f\x3a\xa9\xed\xaa\xb3\x41\x3f\x3a\xf9\xed\xb6\xab\x2d\xc0\ +\xcf\x11\xc5\xb6\x3d\xff\x07\xce\xd1\xc2\x86\x36\x76\x4e\xae\x87\ +\x4f\xa0\xc3\xc7\x5f\x6f\x7b\xfa\x43\x80\x9f\xe1\x3f\xb5\xbd\xf2\ +\x52\x0d\x21\x9f\xa9\x6b\xfb\x8f\x17\x81\x0e\x3e\x72\x5b\x7b\xc3\ +\x27\x81\xbe\x3f\xf3\x70\x7b\xf3\x2c\xd8\xa7\x33\x5b\xdb\x0f\xb8\ +\x00\xf0\x47\xfe\xd8\x7e\xc4\x27\x81\x4f\x7e\xe1\x83\xed\x1b\x8b\ +\x3d\x20\xf7\x0f\x6a\xff\xc8\x9e\x7f\x86\xfd\xff\x7c\xfb\xc4\x0f\ +\x80\xbe\xae\x78\xa4\xfd\xb2\x66\xe0\x03\x67\xb5\xb6\x5f\x75\xfb\ +\x6d\xb0\xee\x81\xf6\xeb\x53\xa0\xf7\x3c\xbd\x4f\xfb\x4d\xaf\xee\ +\x06\x3e\xb6\xb6\xfd\xfb\x97\xc0\x39\xfc\xd6\xe9\xed\x4f\xff\x18\ +\xe8\xfa\xe4\x7f\x6c\xff\xd5\x5c\x7a\xae\xaf\x6a\x7f\xab\xfe\x70\ +\x80\xcf\x69\x7f\x6b\x11\xe8\x17\x37\xb4\xb4\xff\xe5\x23\x40\x2f\ +\xbb\xcf\x05\x62\xfc\xe9\x03\x00\x19\x31\x48\x2f\x39\x9b\x38\xa4\ +\x48\x7c\x62\x11\x17\x7e\x2f\x92\x3c\xfc\x5b\x80\xef\x6c\xf8\xc9\ +\x6f\x44\xb6\x0f\xff\x37\xf5\x66\x32\xc6\x26\xc7\xce\xfb\x40\xa1\ +\xa4\xad\xdf\x35\xb3\xfe\x47\xe0\x3b\xfc\xaa\x8a\x8e\x75\x96\x36\ +\x56\x64\x24\xf8\x79\x6f\xf0\x6d\x16\xbe\xcb\x11\x13\xfe\x75\xf1\ +\x59\xfa\x96\x41\x86\x89\x07\xcf\xe7\xf0\x79\xfa\xad\x45\x76\xc1\ +\xcf\x1e\xbc\x6b\x6a\xb0\x74\xc2\xbc\x9e\x61\x1a\x05\x3a\xb7\xe1\ +\x3b\x86\x99\x37\xac\x5d\xb6\xe7\xdb\xf9\x11\x63\xc2\x76\xad\xa5\ +\xc3\x5e\x21\x67\xe7\xad\x52\xa0\x76\x46\x96\x6d\x22\x00\x23\xf0\ +\x33\xfd\xb6\x00\xdf\x76\xd3\xff\x82\x29\xdb\xe9\xf2\x61\xa6\x11\ +\xd7\x29\x16\xba\xbb\xbb\xe9\xc8\xb3\x82\x91\x87\x9c\x53\xe9\xf7\ +\x38\xf6\x99\x21\x34\xe4\xc8\x42\xf8\x6d\x18\xbe\xb3\x10\x09\x1e\ +\x99\x82\xef\x2c\x92\x86\xdf\x6c\xf8\x4b\x1e\xfe\x9b\xd2\x90\xa3\ +\x42\x51\x1a\x09\xcb\x10\x09\xfe\xa8\x65\x78\x56\xce\x4a\xfb\x56\ +\xc6\x70\x86\xcf\x86\x1f\x3a\xbd\x45\x61\x9c\x20\xd4\xa5\x41\xfe\ +\x1c\x80\x5c\xe0\x98\x3f\x07\x26\x66\x28\xa1\x80\x4f\xc1\xb7\x26\ +\x4e\xef\xc1\xb7\x45\xfc\x9e\x2d\x83\xee\x9e\x01\x8b\xa0\x80\xe6\ +\x82\xbf\x65\xf8\x92\x6d\x58\x04\xdb\x43\x13\x17\x4a\xc7\xcc\xe1\ +\x73\x1e\x47\xf6\x2e\xdc\x75\x81\x16\xaf\x24\x62\xbc\x60\xc1\xc7\ +\xf7\x16\x60\x53\x2d\xcf\x48\x17\x5d\xd7\x82\x8d\xa7\x3b\x0c\xdb\ +\x9d\xf1\x47\x61\xb1\x19\x23\xed\xe4\x1c\x97\xae\x3c\x84\x0f\x4f\ +\x5d\x38\x0c\x31\x39\xe8\x4f\xe6\x2c\x5c\xf8\xf2\x12\x0b\xb7\x10\ +\x1c\x9f\x4c\xf2\x9f\x95\x45\x04\xe0\xec\x8b\x63\x19\x7d\x1c\x18\ +\x1c\xb4\xf4\x4c\xf5\x30\x93\x4b\xd2\xc1\xdb\x35\xbd\x6e\x9a\x3e\ +\xdd\xc4\x9f\x76\xd3\xf8\xd8\x05\xa4\x0f\x1e\x9b\x52\xce\x8f\x49\ +\x5f\x03\x52\x34\xe0\x2f\x43\x64\x33\x59\xc7\xcf\x54\x91\x93\x6d\ +\x1a\xfe\xa3\xe4\x92\x26\xa3\x0a\x29\x87\xb1\xdb\x05\xbf\xaf\x07\ +\x10\x4e\xd3\xde\x4e\x23\x96\x7d\xf8\xd9\xc4\x33\x97\xa1\xa7\x51\ +\x12\x58\x9f\x6b\x99\x3e\xe0\x1b\x28\xc9\x74\xd3\xdd\x46\xdf\xd0\ +\xe6\x75\x88\xdf\xbc\x59\xe8\x32\x06\xd7\xac\x1d\x18\xa2\xbf\xa6\ +\x9d\xbc\xe7\xbb\xa6\x9d\x8f\x59\x4f\x0b\x40\x3c\x85\xb4\x03\x50\ +\x05\x23\xd7\xf5\xba\xae\x39\x49\x1f\x6f\x16\x8f\xc3\xef\xf8\xc2\ +\x95\x11\x04\xb8\x72\x00\x0e\x7c\x94\x71\xb8\x9c\x6c\xe8\x09\x19\ +\x41\x82\x94\x4f\xec\xc5\xb7\x28\x1a\x7d\xfc\x8e\x12\xe9\x42\x3e\ +\xf6\xb4\xe7\x32\x00\xf9\xfd\x01\x32\x80\xeb\xe4\x4c\xd7\x00\x52\ +\x73\x81\xb8\xcc\xfc\x48\x91\xfe\x6a\xd2\x15\x18\x59\xd7\x19\x83\ +\x27\x42\x04\x18\xbb\xd0\x59\x64\x15\x59\x42\x06\x25\xbf\x0b\xa6\ +\x6a\x5c\xb5\x64\x30\xe0\x5e\xad\xec\xbd\x55\xec\x1b\x7c\xf3\xa6\ +\x10\x8a\xe8\x67\x68\xac\x60\xd9\x39\x78\xc2\x83\xef\xd8\xf9\xf4\ +\x34\x7e\xec\x55\x40\x55\x8c\x7e\x4c\x40\x56\x72\xfa\xe9\x93\x28\ +\x1b\x2b\xe6\x7c\xbb\x90\xb3\x96\x30\x8e\x3d\xbc\x84\xb1\xe7\x64\ +\x24\x15\x83\x82\x16\x00\xdb\xc2\x83\x91\x53\x26\xac\xef\xb3\xdd\ +\x34\x3b\x84\x2d\xec\x1d\xf6\x05\xbe\x72\x69\x84\xb0\xd2\x72\x88\ +\xff\x95\xf3\x75\xa2\xc4\x4f\x1a\xe1\x0c\xa3\xa3\x77\xdd\x90\x64\ +\x67\x06\x25\x35\xca\x68\x14\xa6\x16\x5d\x65\x0a\x56\x91\xc3\x59\ +\xe5\x3c\x75\x7d\x39\x87\x11\x13\x27\x42\xfc\x1d\x1f\xef\x91\x8f\ +\x73\xbe\xe7\x55\xcc\x96\x0f\xc3\xe1\x4a\x49\xa2\xd8\x69\x0f\x27\ +\x03\x88\xcb\xb1\x80\xe1\x9a\xaa\xd4\x08\x86\x4e\xc1\x2b\x9e\x65\ +\xac\xe3\x67\xa1\x3d\x18\xc7\xb3\xd6\x09\x52\x58\x56\x7e\xac\xa8\ +\x04\x0a\x46\x3f\x04\x07\x62\x80\xa3\x28\x19\xb6\xa8\xac\xcc\xb8\ +\xe6\x44\xbe\xe4\x74\xf3\xe1\x98\x15\x51\x66\xb8\x30\x85\x98\xb4\ +\x94\xd2\xd4\xb2\xd9\x1a\x73\xc6\xad\x88\xde\xd4\x6f\xe5\xa4\x32\ +\x52\x88\x0c\x19\xa7\x3b\x49\xa6\x15\xaf\x3b\x89\xbf\x5b\x15\xe8\ +\x51\xcb\x18\x78\x52\x95\x62\xfc\x2b\xa4\x4c\x51\x56\x17\xd5\xa7\ +\xb4\x25\xec\x89\x61\x49\x94\xf8\xfd\xff\xd9\xa3\x85\xcf\xf6\xc2\ +\x3c\x43\xda\xb3\x71\x14\xac\xee\x1b\x95\x2e\x23\x88\x78\x15\x39\ +\x1b\xe4\xf1\xcc\xd8\x63\x56\xde\xb3\x9d\xfc\xf4\x0c\x2b\x7c\x6a\ +\xa9\x30\x18\x81\xb7\x7d\x85\xa2\xfa\xc5\x70\x88\xbb\x46\xc0\x0e\ +\x62\x4a\xaa\xda\xc1\x03\x25\x5f\x9a\x83\x72\xd5\x47\xf4\x8d\x20\ +\x12\xa8\xe6\xe5\x2a\x43\x38\x13\xf9\x11\xd7\xcc\xa8\x07\x27\xf8\ +\x0e\x87\xb8\x81\x3c\x89\xcc\xcf\x0c\xf4\xd4\x0a\x4e\x3f\x12\x55\ +\x3e\xf2\xb4\x10\x38\x06\x0a\x9d\x31\xfc\xdd\xe2\x7b\xc8\xc8\xd4\ +\xc3\x4f\x2f\xd8\x39\x5f\x99\x39\x8b\x34\x61\x29\xbc\x65\xf5\xea\ +\x5d\x85\x9c\x93\x89\xe7\x2e\x9e\x01\xe4\x07\x88\xb6\xc7\x40\xb2\ +\xb8\xe2\xcb\x2e\x4a\xae\x5e\x71\x18\x76\x03\xd0\x9f\x35\xd3\x96\ +\x57\x12\x05\x0b\x48\x3f\x82\x91\x45\x30\xc6\x91\x28\x28\x20\xab\ +\xe1\x5f\xaa\x0e\x72\xbd\x57\x1a\x01\x38\x08\xdd\xdd\xc1\x9d\x96\ +\x9f\x1e\xa5\x03\xcf\xe6\x03\xd3\x7f\x97\xb3\xaf\xb9\x88\xea\xc7\ +\x65\x51\x44\xe4\x83\x11\x1a\xe0\xb9\x09\x38\x58\x8a\x5c\xe3\xdf\ +\x70\x56\xb0\x09\x77\x24\x3d\xa3\x1d\xf1\x38\xbd\x8b\x13\x98\x45\ +\xb1\x6f\x73\xc5\x5b\x28\xe7\x19\x09\x96\x62\xdf\x2c\xd9\x54\xf4\ +\x4b\x60\xd9\x01\xf5\xcf\xe0\x50\x1a\xde\xa8\x65\xf9\xdd\x25\xc0\ +\x6f\x01\x92\xca\xe0\xa6\xaa\xb4\x58\xbb\x3a\x63\x23\xf9\xa7\xd8\ +\x1b\xf4\x57\x8e\x7e\xf9\x78\xd4\x4e\x32\xf9\x0a\xb3\xc1\x40\x07\ +\xd0\x37\x19\x90\xb0\xb7\x36\xf0\x55\xa9\x5f\x85\xc7\xee\x00\x1e\ +\xc0\xc4\x82\x1d\x9c\xf6\x52\x62\xa6\x79\xc0\xce\xdb\xde\xa8\x21\ +\x38\x1c\xd7\xe0\xd9\xb7\x01\xe7\x3f\x65\xfa\x11\x71\x0f\x28\x8b\ +\xf5\x82\xbf\x65\xa5\x70\x0a\xe6\xeb\x60\x23\x23\x6b\xe1\x36\x8c\ +\x3f\xea\x14\x7d\x23\x0d\xa2\x86\x22\x99\xa1\x2b\x1e\x8c\xdb\x63\ +\x58\xad\x0a\x00\x53\x75\xd9\x36\x33\x66\x3a\x33\x8d\xaf\x1c\x33\ +\xae\x4c\x0f\x3c\x5e\x32\xd2\xe5\x5c\x01\x4c\xae\xfc\xf1\x7d\x0d\ +\x96\x9f\x02\xc0\xc3\xfb\x57\x2b\x14\x84\xf0\xc3\xb3\xe0\x0c\x4e\ +\x21\x13\x62\x47\x4a\xa1\xc9\xf5\x20\xf7\x94\x57\xe8\xaf\xf8\xca\ +\xb3\xe1\x57\x66\xc8\x19\x7d\x2e\x9c\x97\xbf\x43\x95\xfb\x9d\xc8\ +\x3d\xfa\x6c\x01\x95\x7f\xb9\xf0\x1d\xeb\x51\xe0\xc7\x1e\xf4\x61\ +\xcb\x9f\xb0\xac\xbc\xb1\x9c\x69\x03\x5e\x05\xd2\x2e\xed\x14\x26\ +\xe3\xd0\xc9\x76\x20\x0d\xc0\x52\x84\x8e\xa8\xca\xfa\xc6\x6c\xd6\ +\xb3\x7c\x45\x8d\x65\x5f\xe0\x6b\xbb\x95\xd7\xca\xf2\x86\xf7\xc6\ +\x84\xe1\xf8\xcc\xe1\x5c\xe5\xf1\xb9\x86\x41\x1d\xc3\x95\x66\x80\ +\xbd\x28\x22\x16\x44\xac\x16\x15\x0d\x51\x85\x73\x8e\x6a\xa6\xda\ +\x81\xb5\xa0\x68\xe1\x52\x69\x4b\x81\xb0\x09\xbf\x5f\x17\x68\xaa\ +\x91\xc7\xa3\x06\x14\xb3\xc5\x27\x61\x5b\x85\x05\x41\xff\xce\xec\ +\x6f\xc4\xd2\x7b\x6c\x60\x2a\x36\xb9\x6b\x31\x33\x1c\x6c\xf3\xc9\ +\x91\x24\x7a\x9a\x22\xc1\x36\xb1\x77\x38\xbd\x6e\xd2\x17\x25\x25\ +\x37\x7f\xac\xc4\x8b\x51\xc7\x8d\xee\x93\xc8\xbd\xf7\xcc\x39\x00\ +\x75\x51\x94\xe1\x72\x57\x45\xd8\xc6\x54\x34\xa3\xcd\xe2\x09\x5c\ +\xce\x6c\x00\x22\x04\xbe\xd4\x2d\x83\x47\x4b\xbe\xde\x06\x68\xb4\ +\x41\xa1\x72\x42\xaa\x40\xfd\x66\xc7\x07\xc8\x14\x5a\x67\x5f\xe0\ +\x4b\xbf\x00\x4b\x4e\x5a\x35\x05\x75\x80\x8a\x99\xf0\xff\x2c\x9b\ +\x65\x1b\xaf\xaa\x5e\x01\xab\x08\x96\xbe\x99\xad\x34\x9e\xf5\x26\ +\xe5\x15\x69\xe9\x31\xd0\x59\x86\x82\xc6\x36\xd4\xeb\x47\x23\xe6\ +\x6e\xdd\x60\xda\xcc\xa9\x6e\x00\xfc\x9d\xbe\x52\x45\x00\x57\xa3\ +\x7c\xa7\x05\xbb\x9d\x52\x07\x09\xd4\xc6\xe4\x42\xb0\x9c\xdb\x4d\ +\xb7\x6b\x99\xc5\x6a\xa2\x19\xf6\xbf\x2d\x1e\xcf\x40\xa4\x94\x90\ +\x8f\xdc\xbb\x37\x6c\x7a\x16\xe3\xae\x33\x60\xf1\x61\xdc\x03\x6c\ +\x83\x25\xcd\x53\x86\x79\x25\x1c\x20\x1d\x0b\x83\xcc\xbc\x0c\x1c\ +\xfb\xfb\xf0\x71\xf1\x6b\xe9\xd9\x3f\xbf\xc4\xe8\x06\xfc\xe6\x70\ +\x53\x2d\xfe\x64\x99\x68\x0f\xa5\x95\xbf\x8f\x91\x57\x50\x91\xf5\ +\x82\x9d\xb5\x38\xe3\x32\xb8\xf3\xdc\xe0\x86\x4b\x1c\xc4\x2b\x18\ +\x68\x40\xbb\xb9\x5c\x80\x51\xaa\xf8\x32\x5c\x9b\x63\x80\x53\x93\ +\x7a\xd2\xe1\x09\x8a\x7f\xdb\x9b\x76\x71\x79\x24\x5b\x07\xcd\x34\ +\x5b\xf3\xc3\xe4\x90\x98\x05\x71\x31\x72\x18\x47\x92\xc8\x69\x24\ +\x20\x82\x18\xf4\x00\x9b\x01\x82\x18\xa9\xea\xe8\x58\x4e\xfa\x83\ +\xa5\x74\x0d\x0a\xdb\x7e\xc2\x71\x77\x52\x85\xbd\x90\x33\x41\x8d\ +\xcf\x82\xe5\x39\x62\x39\x63\x96\xef\x4e\xb2\xa3\xca\x4d\x78\x0d\ +\xfe\x4d\xf4\x59\xee\x06\xdb\x54\x0e\x52\x69\x9f\x28\x2f\x96\x19\ +\xce\x47\x47\x42\x3e\xb0\x63\xc5\x62\x86\xe1\xa7\x0c\xe7\xab\x3a\ +\x15\x88\xb3\xad\x2a\xac\xfa\xb2\x33\x8a\x7d\x6c\xf1\x7f\xe3\x6d\ +\xe3\xe3\xfb\x9c\xfc\xb8\xe5\xfa\xc6\xb0\x9d\xb1\xa9\xb8\x81\xb5\ +\xc3\x56\x4f\x06\x5a\x25\xb3\x9d\x69\xa0\x86\x59\xc9\xaa\x23\x53\ +\xac\x68\xd4\x2c\x58\xcb\xfb\xb7\xd8\xd6\x04\xae\x68\x5b\x8c\xad\ +\x53\x40\xda\x3a\x5b\x5b\x0b\x6e\x4f\xec\xb6\x4d\xe7\xbc\x5c\x2c\ +\x44\x25\x4e\x6d\x2c\xef\x37\xc6\x61\x72\xb0\x79\xb3\xb1\x51\xa4\ +\x12\x70\x2e\x87\x8d\x2c\x0f\x95\x34\xc9\x1d\x66\x0e\x06\x10\xb4\ +\x6a\x33\x97\x99\xe4\x78\x60\x77\x8c\xb9\xa9\xb6\xe7\x30\x1e\x44\ +\x97\xb3\xe8\x85\x21\x46\xa9\xab\xdc\x30\x95\x33\x61\x0c\x02\xab\ +\x32\x56\x99\xae\x36\x95\x33\x41\xbf\x86\x6f\x71\xaa\x75\xc1\x54\ +\x6e\xd9\xc9\x58\x90\x93\x1e\x2a\x2f\xc1\xf4\x07\xd2\x69\x3c\x4e\ +\x07\x94\x61\x02\x5f\x74\x72\xc3\x65\x21\xc9\xc6\x50\x80\x89\xbb\ +\xe8\xa0\x6e\x22\x70\xfd\x6e\xa9\x4e\xf3\xd4\x98\x57\x3e\x4f\xa5\ +\x6a\xc4\xed\xa7\xd8\x39\x43\xd6\x2e\xa1\x4b\x53\xe7\xc0\x2e\xcd\ +\x8d\x57\x4b\xff\x1a\xf7\xf0\xf1\x64\x15\x8a\xbb\x34\x0f\x9d\x0a\ +\x5f\xda\x18\x80\x94\x09\xd4\x87\x3c\xf7\x92\x15\x25\x49\x49\x4f\ +\xc8\x90\x33\x02\xba\x16\x97\x33\xc5\x34\xc0\x68\xac\x77\x98\xb3\ +\xef\x50\x3e\x1b\x3e\xd1\xc7\x1f\xa0\xab\xa0\x0f\x70\xbe\x39\xc3\ +\xf9\x43\xbc\x53\x88\x02\xb9\xdd\x36\xf7\x7d\xa8\x87\x50\xfa\x98\ +\x96\x32\x98\x98\x74\x55\x21\x43\xd8\x91\x7d\xe6\x01\x47\x81\x52\ +\x94\x6c\x35\xcb\x42\xab\x71\x4b\xae\xc7\x47\xf8\x64\x18\x72\x3f\ +\x89\x45\xdf\xce\x17\xad\x00\x85\x07\x86\x26\xc5\xbf\x06\x13\xe6\ +\x22\xe8\x63\xff\xca\xe9\xfa\xd4\xe9\x12\x21\x8d\x7d\x4b\xc1\x1c\ +\x83\xff\x4c\xd4\x5c\x2c\x0d\x79\x5d\x21\xe4\x49\x88\x25\xe2\xd2\ +\xce\xd8\x18\x30\x58\x86\xb9\xf2\x8b\xb8\x66\xda\x45\xb0\xe3\x9c\ +\xc5\x70\x43\x70\x98\x67\xa0\x08\xaa\xc2\x25\x3e\x74\x41\x17\x3d\ +\x4c\x8f\x79\xb0\xd8\x81\xc1\x09\xb3\xe0\x19\x19\xdb\x03\xc9\x3a\ +\x69\x8c\xd1\x55\xc6\xb0\xe4\x40\xb6\xd0\x30\x45\xd6\xa5\x3a\x04\ +\x95\x2f\xd9\x9c\xe9\x53\x0f\x13\xb2\xec\x03\x54\x34\xf4\xb3\x01\ +\x03\x2c\x1c\x37\x33\x2c\xc8\x1c\x00\x4e\x41\x2a\xa0\xd3\x4e\xda\ +\x42\x4e\xc5\x48\x8f\xae\x9e\x37\xf3\xa1\x4e\x75\xed\x8c\xe2\xfd\ +\x63\xdf\xd2\x2f\x79\xc0\xae\x97\xa3\x78\x5c\x41\x60\x06\x51\x6d\ +\x6a\x7f\x61\x1c\x7b\x24\x66\xa6\x43\x55\x4a\x62\xdc\x78\xc4\x06\ +\x9c\xe6\x97\x3a\xd9\x6c\xe9\xa9\xf7\xc3\xa9\x4b\x31\x77\x01\xbe\ +\x60\x90\xda\x18\x94\xa3\x73\x1f\x6a\x72\xf0\xcb\x0b\x93\x60\x11\ +\x8a\x38\x01\x46\x02\x27\x21\x6e\x11\x01\x00\x2d\xc0\xa7\x45\x94\ +\x6d\x97\x34\x4b\x87\x5c\x7b\xcc\xda\xa5\xd8\x53\xec\x0b\x34\x8e\ +\x7a\x30\x9f\x87\xc5\x2c\x24\xcc\xec\x00\xb3\xd8\xa9\x34\x9a\xa6\ +\xcf\xf3\x91\x91\x10\x26\x2e\x28\x7f\xcd\x04\x94\xa7\x45\x41\x48\ +\x38\x8a\xa2\x0b\xb9\x44\xf8\xd2\xfc\x2a\x61\xe3\xc8\x27\x22\xef\ +\x49\x8b\x80\x11\x91\xd6\xe3\xb2\x70\x61\x00\xf1\xde\x80\xac\xf2\ +\x5c\x8d\x61\xfe\x39\xd5\x5b\x66\x2b\x0a\xa8\xdc\xad\xcb\x28\x3e\ +\x3d\xba\x3b\xc0\xa6\xac\x7c\x7c\xde\x52\x17\xff\xbb\x5b\xa4\x01\ +\x1f\xea\x08\x07\x7a\xc2\x00\x0e\x97\xbf\x74\x93\x3d\x61\x65\x05\ +\x26\x96\x87\xe6\x15\xcf\xc2\xe1\xc1\x36\x83\x25\x02\xe5\x1d\x77\ +\xcc\xcc\x31\x1b\xcc\x46\xed\xd4\x8b\xdd\x63\x72\x0c\xc0\x9f\x47\ +\x66\x2d\x24\x88\x34\x7a\x5d\xf8\xde\xe6\xdf\xc6\x47\x0a\xf7\x39\ +\x3d\x9f\x71\x8c\x9c\xe9\xf9\x6a\xb0\x8f\xc7\x49\xe9\xdf\x02\x87\ +\xf4\x99\x33\x99\x87\xc8\xb4\xaa\xa4\xa1\xed\x63\xe9\xac\x22\xb4\ +\x4d\xe1\xc2\xa0\xb6\xc4\x4e\xb6\x64\xd0\x3b\x0e\xea\x3d\x60\x64\ +\x4b\x83\x7d\x66\x71\x42\x19\x69\xa5\x6b\x97\xa7\x20\xad\x98\x2c\ +\x7e\x28\x1e\x28\x57\xca\xce\x05\x8b\xa4\x4c\xf1\xdf\xd9\xb8\xf2\ +\xb4\xc8\x31\x8b\x88\x49\x81\xb7\xf8\xc8\xe2\x87\x4f\x73\x90\x74\ +\x4a\x86\x15\x9d\xbc\x85\x04\x99\x66\x66\x8d\x87\xc1\x19\x78\x88\ +\x8a\x1a\x24\xb9\xac\x9d\xcb\xc1\xef\x48\xa0\xf8\x64\x31\x6f\xfb\ +\x96\x8c\x38\x72\x27\xe1\xe9\x05\x19\x6f\x3c\x1c\x8e\x22\x45\x98\ +\x10\x87\x7b\xf1\x28\xb1\x23\xac\xe6\x47\x35\xf0\x97\x4a\x0c\x73\ +\x77\xc4\xd7\x18\x96\xab\xef\x24\xf9\x87\x99\x28\x32\xf6\x51\x8e\ +\xaf\x24\x73\xbf\x48\x25\x66\x5d\xc9\x94\x20\x5c\xe5\x56\x9a\x6d\ +\xd0\xd9\x4f\x3f\x16\x55\x14\x1e\xa2\x6f\x70\xe7\xd7\x80\x8a\x0a\ +\xe9\xfc\xc2\x41\xe3\xde\xe8\xd7\xac\x66\x41\x82\xe5\x94\x16\xc6\ +\xde\x57\xc5\xe6\x6e\xcd\xed\x13\xe4\x22\x54\x13\x5c\x13\xd5\x4a\ +\x56\xc9\xa4\xae\x7d\x25\x0c\x43\x8e\x9a\xd7\xd4\xa9\x83\x4f\xd4\ +\xa0\x74\xfc\x84\xed\x38\x3e\xa0\x25\xc9\xf0\xb3\xd0\xae\x63\xcc\ +\x04\x19\xb6\xa4\xb8\xde\x9c\x4f\xb5\x17\xfa\xfa\x61\xa7\x16\xed\ +\x9e\x9e\x7e\xdb\xcc\x39\x23\xf0\x99\x1b\x19\xb4\x7c\x9a\x0c\xe2\ +\xe1\xb0\x38\xd0\x16\x78\xbd\x18\x20\xc8\xe2\x32\x8a\x9d\xb1\x30\ +\xd7\x1a\x43\x53\x8d\xc6\x6a\xbc\xe0\xbb\x51\x7c\x76\x14\xa9\x86\ +\x9d\xd0\x41\x18\xf3\xd4\x00\x9c\x23\x00\x1c\xcb\xcd\x03\xa9\x18\ +\x83\x5b\x4e\x35\x36\x99\x3e\xfd\xd5\x33\x72\x4e\x3a\x70\xaa\x24\ +\x00\x93\x06\x81\x29\x69\x9e\xcd\x09\x94\xf9\xb5\xa4\x32\xa7\x7a\ +\xfe\x9a\x7b\x73\x13\xe6\x24\xc8\x1d\xb0\x40\x13\x0e\x7f\x7e\xec\ +\xf0\xc9\x02\xa9\x06\xec\x75\x69\xb5\x8d\x39\xe7\xd8\x08\x25\x0d\ +\x6b\xb2\x48\x46\xef\x05\xf0\xcc\xaa\x0e\x38\x59\x27\x28\xa6\xe6\ +\x30\x57\xcb\xe8\xfe\x1a\x3b\xad\xc9\x45\x09\x97\x97\xc2\x94\x55\ +\x9b\x0a\x79\x35\x73\x13\x5e\x49\x38\x40\x37\x6a\xd7\xc2\x61\x40\ +\x57\x2f\xf3\x6c\x43\x9a\x02\xfc\x7e\xac\xdc\x8a\x55\x66\x7a\xa7\ +\x07\x72\x6b\xd4\x38\xf6\x3d\x99\x6a\x45\xdc\x54\x2b\xde\x93\xa9\ +\x56\xc6\x4d\xb5\x32\xe1\x54\x77\x23\x6f\x62\x64\x70\x2e\x61\xde\ +\x55\x9f\xab\xa1\x69\xee\x31\x67\x4a\xa2\x81\xb1\x12\x91\x7a\x43\ +\x7f\x1a\xe5\xe9\x35\xec\x4d\x01\x9e\xcc\xc0\xb6\x83\xa3\xd7\xa9\ +\xa9\x9c\x47\x03\x47\x5c\xc4\x47\xb1\x83\xa3\xcc\xd4\x50\x07\x39\ +\xa4\x10\xc0\x34\xd4\xc7\x14\x40\x71\xe4\x25\xa3\x3f\xb9\x6f\xd4\ +\x4a\xef\x64\x6e\x5c\x3b\x6b\x4c\x3a\x45\x63\xc2\xa4\xb9\xfa\x34\ +\x4a\x0a\x32\x00\x48\xf3\xe8\x7e\x26\x2b\x31\x59\x7d\xd8\x32\xec\ +\xb1\x82\xe3\x52\x31\xec\x3b\x4e\x77\x42\x04\x3d\x33\x23\x04\xb1\ +\x9f\x72\x25\x50\x33\x8c\x5a\x7d\x9a\xa3\x29\x8f\xc2\x61\x32\x70\ +\x7c\xd3\x53\xeb\x28\x9a\x10\xd3\x85\xc7\x88\x34\xde\x29\x2a\x98\ +\x1b\x5c\x44\xfb\x84\xe3\x6a\xf1\xb4\x88\x95\xfa\xc9\x60\x19\x04\ +\xe6\x9d\xfc\x92\x3c\x18\xbb\x19\x63\x18\x18\xe2\x4e\xc0\xe5\xb0\ +\x35\x62\xe7\xf3\x2c\x61\x8f\x66\xc3\x1b\x8b\xe3\xb0\x9a\x10\xa9\ +\xb3\xd4\xe4\x5a\xed\x60\x36\xb2\x4c\xd3\xc4\xa7\x32\x3c\xd2\x8a\ +\xc8\x48\x49\x0f\x5d\x78\xa4\x95\x91\x91\x92\x9e\xa9\x35\x48\x32\ +\x6a\xcd\x02\x35\x63\x68\xf6\xe5\x54\xa0\x3a\x09\x45\x9b\x6e\xdf\ +\x08\x29\x51\xdb\x10\x40\x70\x50\x1f\x16\x1e\x8c\x99\x85\x02\xe2\ +\x19\xf5\x6a\x2c\x4b\x48\x08\xd2\x09\x28\xf5\x29\x15\x0b\xfd\x5f\ +\x48\x4e\x06\x98\xea\x79\x09\x97\x5c\x48\x8a\x99\x2d\xc1\xa0\x84\ +\x00\xea\xa9\x95\x70\xfe\xf9\x8a\x5a\xa0\xfb\xcb\xa4\xa5\xa8\x78\ +\x91\xfb\x84\x02\x56\x81\xc2\x70\x20\xd7\xb2\x4a\xbb\x34\x5b\x54\ +\xe7\x5e\x62\x56\x1c\xde\xcb\x64\xee\xd3\xd9\x9a\xf3\x11\xeb\x46\ +\x12\xce\xd8\x43\x36\xf0\xe3\x9e\x21\xe1\x82\xa1\xa4\xb3\x1f\xa0\ +\xcd\x8e\x41\x2e\x83\x1e\xe7\x84\x20\xc8\x94\x10\xb1\x60\x66\x0d\ +\x69\x61\x19\x85\x2e\xda\x99\xce\xcd\xa3\x2e\xcc\x36\x49\x44\x94\ +\x71\xd3\x84\xd3\x3d\x4d\x24\x91\x31\x9e\x8b\x2a\xc4\xa0\xa7\x9c\ +\x0d\x36\x79\xc1\xa4\xde\x39\xdf\xb5\xd3\x6a\x38\x25\x01\x18\x8b\ +\xc9\x46\x98\x46\xd8\x94\x52\x83\x14\x81\x14\x13\xb9\x68\x3f\xd9\ +\x46\x06\xe4\xf6\xf6\x6f\x1b\xa0\x4e\xd1\x31\x13\x4c\xdd\x02\xc5\ +\x72\xd2\xd9\xe6\x47\x08\x4a\x66\x6c\x4c\xa1\x98\x2c\x2a\x4a\x73\ +\x6b\xbf\x95\x35\xc1\x8c\xa9\x88\x82\xce\x04\x0e\x84\xc3\x94\x9b\ +\x82\xc4\xf9\x8c\xe9\x1b\x18\x61\xe0\x1b\xae\x9a\xca\x22\xd9\x5a\ +\x62\x7e\xa1\x00\x6e\xd4\xb2\x47\x46\x7d\x74\x12\xfb\xd6\x2e\x1a\ +\x5e\x05\x63\x24\xc8\x68\x4e\x8a\x99\x1e\xf2\x64\x4c\x29\x58\xb4\ +\xdc\xab\x1c\xbe\xf6\x11\x20\x55\xca\x20\x8f\xc7\x1c\xff\x68\x2a\ +\x2b\x73\xd3\xbe\x1c\x49\xae\x89\x4e\x3d\x47\x4c\xed\x5b\x63\x85\ +\x1c\xa5\x48\x4c\x64\x4d\x38\xff\x49\x3c\x2b\xc8\xe6\x82\x5d\x9c\ +\x73\x46\xfd\xf4\x84\xbf\x1c\x68\x53\x89\x10\x40\x37\x02\x76\x24\ +\x9f\x14\x80\xe3\x22\x44\xc3\xd8\x8f\x24\x89\xf2\x13\xef\xab\x4d\ +\xcc\x28\x22\xe1\xd4\xc7\x94\x0f\x52\x4f\x33\xf1\xfe\x62\x62\x2d\ +\x52\x9e\x70\xea\x4d\x60\x15\xca\x1a\x3c\x71\xee\x73\x80\x6c\x69\ +\x19\x85\xc8\x3f\x38\x18\x71\x41\x42\x79\x38\x8e\x08\xb2\xe9\x3d\ +\x63\x81\xb1\xce\x32\x33\x16\x96\x70\x39\x13\x86\x27\xea\xf8\x12\ +\x4a\x83\xc0\x7b\x13\x80\x58\x40\xbe\x99\xe6\x69\x09\x4e\x80\xb9\ +\xf8\x73\x7a\xb0\x02\x4a\xc1\xb5\xd2\x36\xfd\xd1\xc8\x59\xe3\x56\ +\x52\x33\xab\x4d\xe6\xf1\x69\xda\x5a\x5d\xbf\xe3\x27\x56\xd5\xf4\ +\x41\x56\xe8\x83\x24\xd5\xd2\xf4\x41\x56\xea\x83\x24\x55\xd0\xba\ +\x34\x6d\x64\xa1\xd0\x3f\x00\xa9\xc2\x4c\x31\x64\xda\xbe\x8c\xe5\ +\xb1\x38\x80\x9d\xf7\x2d\x97\x9a\x15\x41\x28\x26\xc1\x8c\x2e\x59\ +\x0d\xa7\x48\x68\xe1\xe5\x04\xde\xd1\x18\xd0\x97\x9a\xbe\x7c\x6e\ +\x8c\x1f\x07\x9e\xe6\xca\xbf\x2b\xa2\x57\xdc\x26\x4b\x02\xd8\xfd\ +\xd0\xf6\xcf\x5f\xbd\x8b\x2a\xe8\x06\x58\x43\xc2\x68\x07\xe3\x88\ +\xa6\x31\xb2\x55\x58\x5e\x72\x91\xbd\x20\x74\x5e\x16\x22\x77\x10\ +\xeb\x0a\xce\x81\x54\xb9\xf8\xdc\x83\x15\x91\xfc\xe6\xc0\xdf\x63\ +\x6b\xe2\x29\x4e\x35\x88\x67\x0a\x07\x0c\xd8\x4a\x0e\xd0\xf0\xa4\ +\x91\x61\x4c\x22\xb1\xd6\xb7\x19\x6d\x4f\x15\xd5\x23\xf0\x0d\x75\ +\x38\xbb\x81\xb3\x25\x4a\x22\x73\x4e\xb5\xf2\x96\x6b\xe6\x78\xc8\ +\x48\x0c\x9c\x18\xb9\x9b\x02\x6d\xe7\x65\xee\xfa\x8a\x99\x39\x98\ +\x6d\x96\x98\xcd\xab\x6c\x9e\xce\x58\x65\x9c\xe5\xa9\x19\xb8\x6a\ +\x07\xf3\x30\x72\xca\x4c\x39\x67\x18\x26\xa2\x29\x66\x95\x90\x7d\ +\x37\xd6\xb9\x14\x4a\xb8\xed\x4a\xc7\x0f\x5b\x68\x48\xd0\xf0\x0a\ +\x66\x9a\x17\xb2\x24\x98\xab\x1f\x63\x9e\x42\x53\x56\xc9\x26\xad\ +\xb8\xba\x98\x7a\x67\x2a\x8a\x9e\x66\x90\xcb\x4c\x12\xcc\x01\x33\ +\x72\xe6\xa4\xe5\x72\x77\x3d\xb3\x84\x93\x41\x53\x35\x0b\x5d\xa9\ +\x8c\x47\x67\x03\xa3\x4b\x96\x1b\x33\x18\x7d\xe4\x65\xae\x66\x10\ +\x51\x1c\x99\x0a\x9e\x58\x70\x41\x35\xde\x02\x67\xa6\xa6\xa5\x4c\ +\xef\x00\x65\xca\xbb\x81\x73\x17\x51\xa6\xb0\x59\x5e\x09\xdc\xac\ +\x66\xd0\x56\x40\x78\x60\x04\xad\xb3\x43\x66\xf3\xb0\x47\x58\x55\ +\x8e\xce\x25\x2a\x01\x33\x48\xd1\x19\x05\xb3\x9f\x5c\x63\xb9\x16\ +\x7a\x1b\xd2\x66\x1e\xf6\x18\xe4\x51\x76\x12\x2b\xe0\x68\x4a\x97\ +\x43\xf3\xda\x40\x6b\x01\xdb\x8f\xca\x72\xea\x9a\xa5\x66\xa6\xa7\ +\x7e\x79\x42\x81\x39\x6b\x4f\xa2\xa7\x1a\xbe\x42\xf5\xdb\xf0\x47\ +\x41\x17\xa7\x43\x0e\x5b\x86\x99\xc9\x30\x3b\x19\x83\x2f\x3e\xa8\ +\xa3\xa6\x9b\xe1\x87\x12\x1e\x4b\x8f\x1a\x7c\x88\xa4\x47\x26\x8b\ +\x11\x4e\x4f\xab\xe0\x9f\x71\xba\x12\xa2\x95\x8a\xf0\x97\xb9\x36\ +\xc1\x78\x1d\x90\x82\x74\xf2\xaf\xb1\x33\x56\x4c\x1e\x93\x01\x5f\ +\x80\x1e\x51\xf4\x92\x9e\xc0\xae\x18\xc0\x17\xa2\x2d\x65\x72\xb7\ +\x62\xac\xa8\x53\xa6\xa7\x6a\xd5\xb0\x95\x4f\x27\xd5\xa4\x3f\x06\ +\xb4\x69\x93\x52\x8e\x32\x0b\x29\x83\x51\x3b\x45\x08\xa5\xb3\x2e\ +\x22\x1d\x58\x0a\x37\xe0\x68\x12\x16\xe0\x6b\x5c\x2b\x34\x10\x55\ +\x2e\x47\xb0\xd0\x89\xc2\x55\x70\x47\xae\xcd\x1a\x69\xea\xdf\xb2\ +\x32\x5d\x40\x5c\x23\x94\x9f\x4c\x50\x99\x40\x5d\x28\x80\xc7\x89\ +\x51\x2b\x8f\x21\xc9\xc4\x0c\xa6\x6a\xf6\x8c\x16\x36\x80\xd4\x61\ +\x81\xd5\xd7\x8b\x92\xdd\xe7\xc7\xce\xe2\x8b\x61\x07\xe8\x6c\xae\ +\xd4\x64\x38\x2d\xc5\x4b\x3c\x3a\xf6\xeb\xe8\xfb\xb3\xf1\x3d\x91\ +\x1a\x2b\xe2\x94\x6a\x5c\x87\x45\xdf\x7a\x39\xa4\xf9\xe0\xd0\x76\ +\xf1\x15\xa4\x15\x56\xe0\x73\x95\xd2\x52\x20\x50\x0b\xd8\x7d\xee\ +\xa3\x61\xd0\x53\x6a\xf5\x42\xbd\x4b\x2c\x15\xdd\x59\xd7\xb2\xd2\ +\x26\xc7\x37\x4d\x54\x85\x83\x78\x36\x86\xe0\xd2\xf0\x6f\x1a\x48\ +\x4b\xd6\x98\x33\xd6\x8a\x11\xcf\x6e\x63\x95\x35\x61\xba\x56\x17\ +\x73\x49\xd2\xa3\xec\x9b\x3b\x2d\x9a\x03\x3b\x0a\x2c\x80\x77\x44\ +\x49\x40\x81\xaf\x05\x1b\x25\xb6\xa2\x2b\x4e\xda\x20\x97\xd2\x53\ +\x6f\xc4\xa6\xf8\x91\xa0\x8b\xa0\x39\xe9\xca\x2d\x79\x8a\x14\x62\ +\xd0\x8b\x88\x06\x11\x89\x62\x13\x58\x08\x99\x8d\x27\x25\x23\xdb\ +\x4a\x0b\x61\xb2\x78\xe8\x5d\x48\x03\x35\xf3\x5f\xc9\xe1\x0a\x36\ +\x61\x52\xdd\x04\x25\xf3\x46\xd2\x3e\x0b\xe1\x00\x83\x1c\x07\x1b\ +\x80\x06\x6d\xf0\x18\xc8\x47\x83\xb3\x6e\xc0\x06\xb0\x52\xa3\x6e\ +\x63\x23\xfc\xdd\x9d\xb0\x3d\xcb\x70\xf2\xb9\x49\xf6\x4a\x11\x8b\ +\x08\x4d\x91\x0e\x96\x70\x63\x1e\x2a\xb3\x31\xe5\x39\xa9\xc7\x6d\ +\x53\xa1\xff\xe6\xf9\xf9\x2b\xb5\x81\x8c\xd7\x8a\xcd\xca\x12\x96\ +\xc1\x2d\x3d\xf1\xd2\x53\x2f\x46\xb5\xf1\x1c\xd3\xf9\xcf\x25\xd3\ +\xe7\x06\xf5\x87\x51\x3d\xa8\x32\x69\x44\xf6\xb0\x85\x81\xbe\x3c\ +\x22\x0c\x6c\x2d\x17\x65\x1e\x70\x6e\x64\xe8\x85\xe4\x8a\xcd\xde\ +\x19\xf1\x9d\xe9\x92\xef\xcb\xab\x1b\x6a\x7e\x90\x85\x38\x10\xe4\ +\x29\xb5\xfd\xa9\x60\x9c\xb0\xa5\x12\x67\xd1\x24\xb1\x54\x3e\xb8\ +\x36\xcb\xc3\x11\x9e\xc2\xbc\x15\x45\x5e\x51\x02\x30\xb0\x13\x60\ +\xda\xda\xc5\x63\x10\x60\xd9\x1c\x9d\x09\x8c\x9b\xa4\xda\xda\xcc\ +\x58\x7b\x38\x91\x4f\xd5\xa2\x3d\x85\x14\x99\xae\x44\x7f\x1f\xe7\ +\x11\x00\xa9\x81\xca\x1e\x47\x6a\x56\x66\x17\x61\x21\xa5\x3c\xb7\ +\xed\x55\x4d\x56\xcf\xde\x0c\x6f\x50\x94\x73\x51\xcd\x6d\x8c\x1f\ +\xae\xa9\xe0\x1d\x39\x7f\x89\x35\x04\x9b\xe2\xc4\x6d\x4a\x60\x08\ +\x04\x3b\xb0\xd3\x2a\xf8\xc0\x32\x5c\xc7\xf3\x04\x57\xe8\x32\x9c\ +\x80\x75\x88\xbc\x51\x8d\x11\x81\x66\xe6\x52\x83\xda\xc8\x3b\x4b\ +\x2a\x35\x2d\x76\x95\xe0\x25\x6c\x81\x71\x0a\xa9\x8a\xa6\x70\x4e\ +\x90\x9e\xef\xa3\xcb\xd1\x50\x8e\x9c\x0c\x40\xc6\x21\x06\xb5\x4b\ +\x85\x30\x79\x6e\x0f\x50\xa6\xd2\x49\x80\xc9\xbb\x84\x0b\x7d\xb5\ +\xec\x42\x75\x8f\x6d\x28\xd4\xc7\xf5\x77\xb9\x6c\x11\xfa\x37\x15\ +\x19\x18\xef\x1b\x66\x9a\x15\xa3\x0b\x91\xb8\x2a\x25\x5c\x17\x11\ +\x69\x7d\x39\x9e\xfc\x23\x6d\x3a\xe1\x3e\xd4\x67\xc9\x84\x28\x2e\ +\x83\xab\x29\x2a\x92\x4f\x77\xb0\x7f\x34\x0e\xb9\x32\xd2\x88\x5e\ +\x66\xc4\xf1\x88\xe5\xc7\x69\xf9\xe8\x85\xf4\xec\x73\x41\x9b\xb0\ +\xf3\x9e\x6f\x81\x3a\xc2\x53\xd2\xe8\x97\xf4\x87\x49\xd8\xab\x71\ +\x8b\x52\x1f\xca\xbf\x6d\x03\x46\xc6\x49\x17\x45\x6a\x5d\x82\x8d\ +\xf9\xb7\x19\x33\x8d\xb8\x52\xa8\xb0\xa2\xab\x52\xaa\xe0\xaf\x2e\ +\x91\x7e\x91\x12\x1e\x90\x18\x45\x43\xc8\xd0\x64\x73\x44\xb4\xc8\ +\x60\x4b\xb2\x71\x5b\x22\xcb\xac\xa4\x6e\x0d\x3c\x98\x67\xae\xc1\ +\x4f\xdc\xf1\xa2\xa8\x11\x5d\x0c\xfb\xa1\x37\x82\xfc\xea\x77\xa8\ +\x4b\x94\xb2\xb8\xf2\xf8\x97\x22\x67\xca\x05\xdc\x27\x95\x7c\x45\ +\x67\x8b\x52\xfb\x33\x19\x48\x49\xd9\x81\x84\xd9\x77\x2e\x1a\xd0\ +\xd2\xc4\x96\x39\xde\x2c\x6e\x3f\xcc\xb5\x1a\xa6\xdf\x33\x95\x6f\ +\x4a\xc1\xeb\x68\x1c\x5e\x85\x8e\xc0\xd0\x94\x77\x40\x61\x4e\xa7\ +\x8b\x80\xa9\x11\x9a\x8f\xea\xeb\xe5\x6d\x63\x0e\x4d\xd0\x1a\x35\ +\x19\x29\xdb\xf9\x8c\x9d\x36\xe9\x31\xc9\x17\xc7\x86\x69\xdb\x92\ +\xac\x61\x65\x46\x12\x33\x9c\x1f\x95\xc4\x6c\x69\x85\x97\x61\x57\ +\xa7\x2f\x81\x65\x4a\x91\x43\x31\xda\x88\xaa\xdf\xa9\x63\x79\x01\ +\x5d\x9a\xf8\x8e\xc7\x2d\x15\xd1\xa5\x4d\x58\x3d\x2a\x4b\x09\xc3\ +\x86\x9d\xf0\x00\xf6\x6e\x4d\x39\x8e\x60\x39\x4e\xf3\x9d\x70\xf2\ +\x0b\x7d\x4e\x98\xdd\xc6\xe9\x9e\x95\x2d\xe6\x68\xaa\x70\xda\x62\ +\xaa\x48\x56\x79\x8b\x2a\x7c\x1e\xcd\x36\x81\x3f\x79\x8e\xe0\x25\ +\xbd\x2e\x0e\xc3\x07\x4c\x68\xb5\x54\x6d\x9a\x21\x3b\x09\xdb\x25\ +\x22\x46\xc4\x6a\xcc\xf5\x04\x57\x81\x58\x61\x49\xc4\xf5\x5e\x54\ +\x3d\x3d\x6c\x0e\xb5\xaf\xa2\x2e\x46\x85\xc9\x58\x0c\xe9\x27\x71\ +\x8c\x44\x4d\xaf\x65\xa9\xb4\x99\x90\x5c\x0a\x67\x43\x48\x1d\xaa\ +\x54\x9f\x48\xd5\x8f\x18\x59\x71\xb0\xf5\xc5\xb8\xad\x47\x33\x86\ +\xea\x89\x58\xc6\xc1\x64\x81\xc9\x5b\x3d\xa2\x5b\x89\xd3\xc7\x64\ +\x20\xca\x5d\x2b\x9f\xb1\x5c\xc6\xd5\xb4\x4c\xdd\xa0\xc4\x34\xed\ +\xb8\xd4\x87\x65\x54\x10\x78\xac\xea\x78\x57\x54\xcf\xd2\x9e\x26\ +\x89\xc4\xa8\x6a\x28\xf3\x02\xa7\x08\xf3\x05\xe4\xf9\xa9\xf2\x49\ +\x9c\xad\xa4\xf6\xf5\xa1\x76\x52\x54\xd6\xe8\xcf\x8e\x47\xec\x29\ +\x91\x85\x28\x2b\xa8\x18\xd7\x28\x2a\xfc\x55\x70\x62\x91\x39\x2c\ +\xcf\xf0\xdf\xc7\x6d\x24\xe6\x2d\xa9\x4a\x25\x4f\x50\x0c\x1a\x8c\ +\x05\xac\x92\x7a\x11\x84\xcf\xa7\xdb\x80\xb1\x80\xad\x2a\xef\x0f\ +\x4b\xcb\x4c\xb1\x74\x0b\xb0\xc3\x68\xec\xd2\x5c\xe1\xa4\x1e\x88\ +\x4e\xb2\x56\xd1\xc4\x74\x6f\xb4\x9a\xfc\xb5\x38\x58\x5a\xdb\x5a\ +\xd4\x6d\x8c\xc5\x95\x78\x99\x01\xe5\xa5\xe7\x51\x4f\xde\x46\xea\ +\x7e\x92\xde\x7c\x3e\xd7\xc6\xbe\x5e\x96\x29\x97\xd8\x09\xaa\xce\ +\xa6\x17\x33\xcb\xf3\x9f\xe7\x84\xe6\x06\x64\x10\xa7\x8e\x97\xe1\ +\x14\x01\x9c\x06\x87\x93\x79\x6c\x87\x9d\x22\x55\xf0\x68\x77\x56\ +\xae\x2e\x24\x85\xfb\x98\x32\x58\x1a\xe3\x86\xbf\x54\xff\x79\x69\ +\x77\x64\x67\x72\x26\x50\x4a\xe2\xa4\x92\xc3\xb5\x39\x05\x1e\x82\ +\x86\xaf\x32\xd2\xc1\x47\xaf\x24\x26\x7c\x4a\x99\xf5\x54\x96\xc1\ +\x71\x08\x9f\xfd\x1d\x64\x6d\x2c\x2f\x49\x14\x4b\x89\xa1\x45\x3d\ +\xa3\xd1\xc1\x56\x36\xfd\x52\x16\x24\x4c\x9c\xa8\x90\x34\x22\x2e\ +\xc3\xba\xaa\x34\x38\x70\x6d\x1e\x13\xbf\x73\x33\x8c\x85\x77\x06\ +\xa5\x2a\xd2\x59\xcb\x3c\x8b\x53\x48\xd3\x22\x4f\x49\x49\x67\xa3\ +\x85\x20\x41\xd9\x7e\xe2\x3c\xa1\x53\x71\x81\x22\x0f\xa1\x93\x88\ +\x8a\x28\xfa\xdb\x5a\xe0\xbb\x1b\x95\xec\xec\x7d\xd7\x59\xa0\x8e\ +\x74\xae\x1d\xdc\x18\x18\x42\x49\x73\xb0\x7b\x64\xbb\x2b\x22\xea\ +\x46\x6d\xee\x64\xa6\x12\x57\x52\x96\x68\x38\x1d\xa8\x71\x92\xa3\ +\xac\xa7\xb9\x7a\x4c\x92\x52\x57\x57\xd2\x45\xbe\x02\x73\x8b\xd1\ +\x45\xb3\x3e\xc9\x35\x72\x89\xe0\xd2\x35\x12\xa9\x9c\x4b\x7d\x81\ +\x89\x29\x3d\x1a\x77\x2e\xd2\x07\x73\x82\xc7\x29\xeb\x6a\xfe\x8d\ +\xcb\x69\x6d\x17\xd1\xab\x36\xe2\x8b\x88\xe2\xe1\x94\x42\xec\x83\ +\x14\x57\x0c\x55\x42\xec\xb0\xd2\x29\x90\x6c\x20\xd1\x40\xe7\x1c\ +\xe4\x31\xb1\x51\x1a\x28\xa3\xf5\xf4\x63\x66\x7e\xd2\xf0\xce\x29\ +\x9a\x54\xdb\x10\x55\x1f\x63\x62\x98\xa4\x42\xe9\x14\x40\x42\x5c\ +\xcd\x97\xa8\xc4\x1b\xc6\xdf\xf4\x16\xbf\xd4\x71\xb4\x0b\xdd\x0a\ +\x6a\x38\x78\xf6\x7a\x73\x97\xc1\x8a\x3e\x8c\x41\x59\x8e\x96\x28\ +\x20\xbc\x41\x43\xb3\x36\x7e\xd4\xa2\x92\xf1\x7c\x98\xd1\x1e\x2b\ +\x8e\xcd\xd0\xa4\xf9\x58\x65\xd3\x12\x51\xde\xa4\x87\x44\x2c\x1e\ +\x12\x71\x90\xe1\x89\x94\x28\x99\x43\x17\xaf\x82\xc9\x9d\x3f\xb6\ +\xc4\x22\x78\x1e\x35\xad\x3a\xb2\x99\x86\x49\x33\xe9\x2a\xf4\x12\ +\xa7\xb0\x5e\x86\xba\x54\x24\x7f\xad\xdd\xe0\x24\xce\x84\x5a\x20\ +\xdf\x47\x6e\x23\x0f\x92\x8b\x3a\x1a\x8b\x38\x49\x8e\xd3\x46\xc7\ +\x36\x3a\xb3\xa6\xe7\x5b\x9e\x9f\x90\xd9\x54\x75\xe1\x46\xc8\xba\ +\x4e\x41\x8b\x5d\x44\x8f\x89\x9a\xa8\x49\xb2\xec\x0f\xe1\x92\x9c\ +\x22\xf1\xd6\xb9\xea\x55\x91\x2e\xd8\x28\x6b\x88\xaf\x1f\x64\x91\ +\xb2\x54\x8c\x16\xee\x28\x59\xa1\x95\xfa\x73\xf4\x96\x43\xf1\x4c\ +\xca\x27\x6f\x96\x81\x4b\x65\x19\x1f\xdf\x80\x55\xa6\xb9\xc9\x2e\ +\x1e\xff\xa5\xce\x52\x45\xb5\xed\xe2\xd6\x47\x81\x2a\x47\xd4\x21\ +\x26\xea\x0d\x51\xcb\x45\x8d\x99\x25\xa9\x46\x8c\x5f\x6c\x34\xa4\ +\xf9\x70\x86\x95\x6a\x45\xee\x39\x4b\xca\x60\x92\x25\xd2\xea\xba\ +\xe8\x6c\xaa\x84\xce\x28\x91\x76\x73\x24\x91\x56\xbd\x35\x60\x9a\ +\xcc\x7a\xdc\x30\x17\x7f\xb3\x31\x00\xa2\xcb\xb3\x43\x37\xba\xf6\ +\x88\x9d\xc7\x8c\x17\x9a\xf1\x4e\x35\xa3\x4a\x33\x4a\x17\xc0\x4a\ +\xf5\x19\xd8\xb1\x72\x02\xf3\xa6\x97\xac\x57\x0e\x54\xeb\x66\x73\ +\x02\xce\x13\xcc\xd6\xd7\xbb\x3e\xa9\xf0\xde\x8c\xb9\x52\xd1\xb8\ +\x71\xbc\xf9\xaf\x37\x5c\x62\x60\x44\xcc\x6a\xa9\x1c\x6e\x46\x83\ +\x57\x31\x92\xd1\xd0\xad\x04\x07\x29\x74\xec\xd0\x83\xac\xf4\xff\ +\xdb\x5c\x41\x6a\x68\x32\x92\xd2\x2b\xfb\x66\x63\xd2\xc8\x4c\x48\ +\x6a\x37\xe8\xab\x79\xc4\xe4\x08\x61\xcd\xac\xf5\xe6\x34\xe1\xab\ +\x28\x2a\x23\xb8\xb8\x6b\x2a\x24\x39\xc4\xa8\x57\x9c\x6f\x78\x81\ +\x4a\x2b\x09\x74\xd9\x20\xf5\x57\x88\x92\xf4\x18\x22\x15\xa1\x18\ +\x8f\x5a\xaf\xc9\x31\x70\xc6\x34\xad\xc2\xa6\xe7\x74\x2a\x17\x97\ +\x58\xd3\x43\x4a\x73\x79\x77\x2b\x8d\xfb\x68\x9c\x2d\x21\xb8\xef\ +\x4d\x17\xa1\x03\xb0\x89\x11\x4f\xe1\x0b\x35\x11\x4a\x00\xd4\x06\ +\x38\xd8\x7a\x44\x5a\xfa\x6b\x28\x58\xcc\xaf\xa2\x52\x49\xd9\x6e\ +\x62\x32\x8d\x17\xc1\xda\xca\xb3\x9c\xb1\x29\x97\x41\x5b\x50\x83\ +\xce\x98\xd8\x28\x2d\x57\x57\x28\xd3\x7a\x1b\x06\x2b\xaa\x8c\x2c\ +\x3f\xec\x8a\xf0\xb0\x49\x53\x7d\xcb\x0f\xbb\x32\x3c\x6c\xd2\xe4\ +\xdf\xce\x98\x8a\x9e\xf2\xf4\x90\x42\x22\xa8\xa4\x02\x63\x7e\x5c\ +\x23\x93\x92\xea\x74\x0b\x8e\x3f\xc6\x94\xc3\xc4\x75\xc7\x7a\x0a\ +\x73\x39\xf8\x1b\x07\x79\x69\x6e\x05\x79\xa8\xb2\x0e\x33\x29\x7e\ +\x5c\x7a\x79\x44\xc2\x19\x2e\x0a\xa5\x11\x17\x49\x38\xc7\x51\x66\ +\x38\xee\x25\x7a\xff\x4b\x35\xfb\x4b\x64\xe2\xc4\x26\x21\x13\xbd\ +\x2f\x5a\xb8\x7c\x49\xaa\x57\x47\x63\x76\x32\x55\xc7\x45\xba\x21\ +\xd5\xc8\x27\x5c\xda\x6b\x01\x7d\x80\x2c\xbb\x80\x65\xbc\xb0\x1a\ +\xa7\xa4\x2a\xd1\x7e\xb0\x08\x46\xaf\x43\xe4\xd7\x9c\x1f\x48\x2e\ +\xde\x38\x64\x7a\x3b\x45\x4f\xb6\x44\x85\x3d\xd2\x5c\xd6\x53\x5a\ +\xa5\x1c\x61\x3e\x61\x35\xe9\x34\xea\x2b\x56\xd3\x4d\xe3\xea\xef\ +\x0e\x1b\x0a\xba\x67\xf1\x6c\x0b\x20\x1e\x3b\x6b\x03\x7f\xde\x69\ +\x25\xb5\xed\xa9\x5f\x21\xae\xd0\xdc\x0a\x01\x99\xd6\x76\x4c\xef\ +\x19\xb0\x1f\x05\xc4\x64\x7d\x03\x2a\x9d\xff\x41\x44\x56\x94\xae\ +\x2a\x28\x7c\x24\x06\xcf\xd3\x1d\xe3\x66\x81\x19\x31\x9c\xd5\x24\ +\x82\x68\xce\xb1\x3a\x12\xc6\xb7\x03\x2b\x52\x57\x17\x62\x7c\x1e\ +\x01\x0e\x7a\x87\x50\xb7\x0f\x17\x5e\xb2\x6a\x2b\x38\x74\x5e\xce\ +\x44\xd2\xcc\xec\xca\xb2\xc7\x78\x4e\x5d\xa0\x0a\x24\x95\xfd\xb7\ +\x73\x84\x4d\x5b\xf2\x44\xc4\x4d\x62\x7a\xe6\x54\xdc\xd1\x2c\xdd\ +\xfb\x52\x1c\xcb\x3c\x22\x6a\x9c\xc8\x56\x91\xd3\xde\x29\x10\xa0\ +\xe6\x44\x8a\x9a\x4c\xb8\xec\x0a\xd6\x4e\xb3\xac\xf0\xe4\xb2\x16\ +\x99\x78\x70\x01\x1b\xc2\xf9\x5f\x51\x65\xd6\x5d\x1c\x2d\x71\xfe\ +\xa1\x0c\xf7\x29\x09\x73\x36\x1c\x96\x14\x0a\x53\x81\x67\xef\x47\ +\x15\x59\x4a\x27\x14\x69\x19\xcd\x20\x0d\xf9\x2e\xf1\x9b\xce\x60\ +\x2b\x28\xb7\xa3\x3e\xad\xa3\xe1\xff\x13\xe1\xff\x65\x60\x88\x2e\ +\x83\xff\x8e\x52\xac\x89\xf5\x14\x35\xd2\xcf\x90\xb1\xd2\x36\x58\ +\x90\x94\x34\x58\x01\x0b\xb3\x6d\x1c\x37\x63\xe7\xb1\x5b\x8a\x53\ +\xb0\x5c\x93\x25\x52\xa3\x0d\x62\xed\xea\x36\x8e\x36\x4e\x34\x96\ +\x75\x2f\x5b\x76\x54\x52\x6b\xe4\x6e\x8e\x2a\x17\xe3\xe5\x72\xaf\ +\x4b\x45\xa6\xa4\x0e\x24\x78\x98\xe8\x1c\x43\xff\x2a\x1c\x76\xcc\ +\xf5\x46\x17\x2c\x8a\x32\x98\xfb\x6e\x2f\x2e\x5d\x6f\xc5\x28\x3c\ +\x18\x6c\x73\xe4\x85\x34\xac\xa6\xa7\x13\xc7\x97\xc1\x4d\x89\xae\ +\x0d\x14\x5d\xae\x99\xb1\x8b\x9e\xe6\x7c\xc1\xe6\x30\xd4\x1d\x47\ +\xdd\xc5\xbc\x63\xfd\xa0\x85\xf7\x73\x2c\x63\x4d\xf1\x1c\xda\x99\ +\xcd\x37\x69\x78\xb8\xd3\xce\x63\x3a\xba\x95\x14\x5f\xeb\x66\xc4\ +\x22\xa7\x13\xc7\xfb\xd3\xb5\x88\x6e\x1c\x95\x72\xcd\xa1\x12\x15\ +\x1b\xaa\xdf\x53\x4f\xae\x54\x4d\x9c\xe9\xea\x3a\x3a\x10\x34\x56\ +\xd6\x11\x38\x32\x2d\x33\x3d\xca\x92\x54\x45\x77\x99\xe9\xe1\xac\ +\xa6\x11\xb6\x1c\x11\x09\xa0\x23\x44\x34\x63\x92\x59\x4b\x42\x73\ +\x89\x2b\xee\x52\x59\x17\xbb\x9c\x46\x37\xda\x16\xf2\x6f\x73\x81\ +\xd4\x90\x09\x0a\xbb\x41\xb2\x45\x85\x6a\x79\x8b\x43\xb6\xae\x89\ +\x4b\xcc\x94\x35\xce\x6a\xd5\x8f\x9a\x12\x21\x79\x8a\xbc\x7f\xa9\ +\xbc\x85\xc3\x48\x9f\xf9\xa1\xe9\x4a\x58\x4a\xa8\xc9\x53\x50\xa2\ +\xa9\x2a\x61\xf5\x60\x3c\xaa\xb6\xc4\xb0\x7c\x33\x78\xdf\x83\x03\ +\x4f\x67\x7c\x99\x07\x28\x62\xd4\x9e\x60\xec\x70\x4a\xfc\x74\x46\ +\xb0\xdc\x41\x11\x42\x16\x3c\x54\x75\x68\x2c\x8c\xdf\xd5\x80\xf6\ +\x7e\x32\xc4\x23\xc7\xd4\xef\x75\xfa\x5a\x96\xbd\x68\xd3\xf4\x5c\ +\x3b\x3d\xaa\xe4\x74\xc0\xf7\xc5\x1c\xcf\x6b\xa4\x49\x1c\x3d\xc6\ +\x10\x4f\xeb\x95\xf9\x8e\x20\x68\x78\x3a\x08\x2f\xd1\xe0\xf4\x49\ +\xc7\xa3\xd7\x31\xd1\x5a\x74\x94\x44\xf8\x62\x17\x0f\x3d\xfb\xa0\ +\xed\xe9\xe3\x50\x39\x45\x67\x1e\x70\x2d\xab\xaf\xb7\xdf\x10\xfa\ +\xa0\xe1\x4d\x7a\x20\xcf\x90\xc3\xd0\x59\xe8\x9d\x34\xf0\xac\xcb\ +\x78\xb7\x59\x49\x03\x83\x5b\x38\x8f\x09\xfb\x2e\x92\x96\x84\xeb\ +\xd6\xbe\x74\x81\xeb\x6a\x0b\x53\x85\x28\x81\xeb\x3e\xd3\x64\x3d\ +\x5f\xbb\x55\xb1\x25\x37\x29\xa3\xd6\xbe\x23\x2e\x64\x53\x4e\x5b\ +\x74\x94\xe3\xb8\xb5\xf3\x41\xa7\x5a\x74\x74\x52\x1c\x27\x54\xd2\ +\xab\x1b\x13\xd6\x5e\x4f\x8f\xb4\xe8\xd9\x4e\x14\x8f\x45\xe1\xc6\ +\xf8\x99\x2c\xc8\x90\x9c\xcd\x25\x29\x22\x3b\xdb\x8b\x66\x30\xc2\ +\x75\xa0\x42\xae\x46\xd5\x3b\x64\x6f\x25\xf8\x59\x54\x1c\xe8\x97\ +\x8e\xc6\xaf\x87\x71\x3e\xc9\x21\x3a\x88\xc8\x17\x66\xe3\x74\xf0\ +\xd3\x4f\x85\x53\x07\x61\xa9\x5c\x29\xf8\x69\x0c\x37\xd3\xe1\x4f\ +\xc9\x46\x79\x4c\xa9\x33\x31\xd6\x2e\x94\xba\x52\x90\x76\x91\x35\ +\x38\xfb\x38\xe2\x8a\x89\xbe\x2e\x65\xfe\xf0\xb8\xfa\xfa\x25\x3f\ +\x08\xaf\x35\x55\x72\xc6\x1e\xb2\x0a\xc7\xc8\x90\x8e\x80\x0c\xdf\ +\x88\x23\x43\x5a\x4c\x8f\x5d\x34\x82\x63\x29\x53\x4d\xc3\xc1\xf3\ +\xee\xd4\x5a\x59\x8c\xa6\xbc\xe9\x15\x81\xd7\x98\x9e\xd1\x81\x4d\ +\xae\x3a\x68\x69\x92\x18\x1e\x33\x00\xe4\x03\x1e\x68\xf6\xf0\xf7\ +\x0e\x38\xf5\x76\xb6\x23\x05\x33\x76\x8c\x39\x79\xa7\x03\xfb\x00\ +\xc2\x90\xe6\x98\x9d\x9b\x0c\x8d\xd7\xb5\xc6\xca\x8d\x5b\xbe\x9d\ +\x36\xbb\xf0\x75\xf6\x28\x4e\xcc\x9b\xf6\xe0\x24\x29\xfd\xad\x9e\ +\x55\x4e\x2e\xd3\x91\x90\x9d\x9c\xa7\x69\xc3\xf1\x3d\x4a\x92\xb2\ +\x96\x48\xc4\x3c\xc2\x50\x4a\x77\x38\x39\x3e\x6e\x87\x64\xa3\x13\ +\xdc\x22\x8d\x21\x54\x18\x7e\xbf\x02\xbb\x01\x89\x50\x10\x83\x71\ +\x34\x60\x64\xaa\x55\x28\xb4\x8c\x52\x19\x19\x51\x4b\x50\xef\x21\ +\xaf\xd6\x72\x0a\x29\xaf\x4b\x48\xc9\x1e\x4f\x55\x57\x0d\xcb\x19\ +\x75\x32\x46\x7a\xd4\xc1\x5c\x34\xba\x62\x96\x20\x2d\x0a\x27\x19\ +\xb7\xe4\xec\x13\x6d\x42\x2e\x67\x92\x32\xc6\x13\x4a\x28\x59\x52\ +\xc9\x0b\x23\x26\xad\xdc\x96\xa0\x87\x47\xa3\x08\x8a\xef\xce\x59\ +\x19\xea\x24\x5b\x14\xe6\x75\x49\x24\x06\x31\x3e\xe9\x95\x76\xb9\ +\xb2\x55\x40\x18\x32\x8a\xa5\x90\x29\x09\x81\x8c\x03\xaa\x2b\x8d\ +\xcb\x7d\x13\xfd\xc2\xe2\xee\x8f\x78\x27\x4e\x89\x54\xe0\xbb\x51\ +\x6b\x77\x04\x43\x14\x59\xb0\x61\x4f\x4f\xf8\xca\x06\x51\x0c\x1c\ +\xc5\xbf\x59\x76\x07\x12\xba\x2f\x14\xa2\xfd\x4d\x62\xa2\x0d\x79\ +\x34\x68\x4e\x7e\x69\x1a\x36\x52\x6b\xb3\x21\xbf\x08\x46\x37\x71\ +\x60\x96\xd6\x37\x56\xf4\x7c\xfe\x0d\xd6\xaa\x45\x7c\x28\x4a\x3d\ +\x91\x29\xa7\x76\x68\xe1\x21\xad\x8e\xc3\x92\x62\x54\xd4\x78\x19\ +\x47\x09\x07\x4b\x77\x2a\x21\x57\xf9\x65\xd9\x03\xb5\x90\xc7\x24\ +\x99\xad\xa5\x9b\x7c\xe1\x56\x2c\x71\x6d\x49\xe4\x26\x8a\x6b\xcd\ +\x98\x66\xb1\x29\x96\x1f\xab\x77\x73\x78\x81\x53\x67\x84\xc8\xa4\ +\xa3\x2e\x85\x4c\xc4\x33\x7a\x73\x66\x99\x8a\x24\xb7\xfb\x3c\x75\ +\xbb\x1d\xd7\xb6\xf2\xec\x86\x03\x91\x39\x1d\x08\x49\x51\xc5\xc1\ +\x4a\x10\xe9\x1e\x49\xf9\x89\x39\xd5\x14\xe3\x20\xcb\x72\xdd\x86\ +\x68\xf1\x02\xa3\xe6\xac\xac\xdf\xc5\x95\x76\x3e\x89\x9a\xf5\x94\ +\x34\xdb\xfa\x18\xae\x16\x8f\x73\x4c\x89\x6b\x2d\xa5\x05\x31\xa5\ +\xc9\x32\xd9\x3a\xdb\xe1\x36\x95\xb4\x42\x04\x8e\x74\xeb\x28\x7c\ +\x2c\xa9\x8e\xc1\xbc\x40\x8c\xc9\xd0\x9d\x59\x17\xec\x9c\x19\x62\ +\x73\xc2\x81\x41\x03\x49\x53\x84\xe5\xa1\x30\xd6\xc4\x5c\x18\x53\ +\x9c\x52\x8a\x44\xb6\xe3\x55\x93\x17\xf4\x75\xc5\x15\x3f\x79\x98\ +\xd2\x31\x45\x64\x55\x98\xaa\x21\xc9\x02\xe3\xa0\xe3\x96\xb2\xc7\ +\x1f\x55\xf7\x78\xdc\xcc\x15\x2d\x6a\x9e\x64\x68\xa3\x8d\x6c\x31\ +\x9f\x56\x0a\xf2\x8b\x78\xf4\x7c\x27\x07\x66\x4b\x3e\x6d\x75\xa7\ +\xb6\xd0\xa7\x79\x28\x39\x63\x67\xb3\x96\x6b\xe5\xd3\x98\xd6\x94\ +\x73\x26\x58\xae\x02\x1b\x50\x64\x23\xf8\xd8\xde\x0b\xb3\xae\xe9\ +\x15\x3e\x49\x3d\xef\xb3\xb1\xe6\x40\x43\x79\x00\x7e\xd3\x90\x80\ +\x27\xe1\x60\x87\x6a\xa1\xa8\x90\xbd\x2d\x03\x51\x43\x15\xc5\x09\ +\xd7\xf0\xcc\x49\xf5\x96\xe7\xf8\x94\xb2\x61\x1e\x1f\x94\x86\xb4\ +\x15\x98\x02\xb6\x62\xe2\xce\x1b\xe2\x2c\x8c\x7a\x3f\x69\xf4\x02\ +\x33\xb4\x18\xdf\xc3\x06\x16\x66\x7a\x67\x62\xd7\xd4\x5a\x45\x68\ +\xd0\xd4\x9b\xce\x88\x30\x67\xc2\x53\x8a\x14\xd1\x16\x29\x7c\xa1\ +\x83\x74\xb3\x19\x01\x80\x19\xe6\x66\x2c\xb8\xb4\x2c\x7c\x81\xb8\ +\xdd\x20\xa9\xe3\xec\x6c\x72\x7a\x8c\xf3\xf9\x9d\x87\xe8\xcb\xb5\ +\x94\x39\xe2\x74\x2f\x6c\x92\xce\x24\x2d\xa4\x43\xbb\x9f\x40\x02\ +\x1e\xe7\x2e\x6b\xa4\x53\x8e\xf0\xdb\x1a\xde\x11\x5a\xc2\xc5\x78\ +\x51\xd3\x29\xdc\xb0\x63\x9a\xf6\x70\x72\x4b\x29\x8c\x41\xf1\x1d\ +\x5a\x3a\x58\x61\x17\x34\x83\x4b\x9c\xc9\xb2\xf1\xdd\x16\x7e\xb2\ +\x03\xd2\x16\x2e\x49\x54\x09\x83\x15\x82\x8a\x7c\x4a\x28\x38\x4e\ +\x81\xa3\x51\x49\x00\x52\x40\x57\xd4\x4e\x2e\x53\xf9\xbb\x08\x33\ +\x8c\x65\xdb\x6f\x66\xb4\x0a\x2d\x59\x9a\xe0\xf1\x8e\xb1\xe9\xb8\ +\x44\xb4\x3a\x5e\x6d\x32\xc0\xb9\x07\x42\x21\xf7\x5a\x08\x2c\xca\ +\x91\x04\xc5\x08\x21\x93\xe3\x7a\xec\x30\xa7\x31\x1f\x19\x83\x8c\ +\x24\x5a\x24\x2c\x28\x33\x21\xc8\x54\x21\xe2\x6d\xd5\x63\xab\xd4\ +\x64\xc1\xab\xb1\xba\x40\x49\xdb\xc9\xdc\x6b\x92\x8d\x51\x57\x9c\ +\x28\x17\xb4\xf3\x8c\x97\x75\x21\x95\x0d\x5b\xb4\x95\x8b\x01\x62\ +\x22\x63\x0e\xdb\x39\xdb\x9f\x0c\xaa\xe4\xd8\xeb\xc3\xf0\x28\x35\ +\x0d\xf3\x99\xa4\xf5\xe0\x6f\xce\x68\x93\xd5\x44\x5a\x11\xc2\x10\ +\xa9\xb4\xcc\x5b\x59\x24\xb1\x6d\x25\xb5\x32\x4d\x59\xfe\xe6\x73\ +\xd1\xe5\x05\xef\xa8\xd7\x1d\xc4\xa5\x78\xb1\x86\xfb\xa5\xb4\x00\ +\x5d\x87\x13\x17\x8b\xc8\x64\x14\x3d\x2b\xd6\x42\xaf\x93\xf4\xf7\ +\x8b\xd4\x50\xb5\xee\x5c\x26\x13\x87\x83\x7e\x51\xe8\x44\xb1\x90\ +\xb8\xc2\x35\xa7\x74\xc3\x5d\xa6\x34\x82\x50\xb1\x26\xe2\x0e\x76\ +\xe0\x81\x93\x7e\x67\x53\x09\x37\xca\xec\xf1\xa9\xc0\xe4\x11\x9a\ +\x8c\xbc\x16\x22\x9a\xfa\x9c\x21\x3c\x3b\x4d\x33\x58\x1e\x09\x11\ +\xa6\x57\x60\xe9\x6f\x20\x42\xc1\x24\xe1\x55\x61\x54\x41\x45\x8b\ +\x81\x66\x9a\x61\xae\xa4\x4c\x94\xeb\x36\x86\xa4\x1e\x23\x0c\x1f\ +\x9e\xfb\x9b\xb3\xf2\x23\xa0\xfa\xd0\xdc\x5f\x1a\xf7\xe0\x4a\xb1\ +\x78\x55\xdc\x9f\xe1\x61\xe6\xe6\x32\x9c\x8b\x15\x15\x4e\x8c\x3a\ +\xd4\x3d\xc4\x92\xae\xe9\x98\x52\x2d\xa2\x6e\x1d\xd7\xc4\x16\x9c\ +\xfc\xf5\xa4\x4a\xd2\x1c\xa0\xbe\xed\x84\xb5\x9c\x66\xb2\x9c\x1a\ +\xb0\x52\x5e\x37\x6e\xdb\x6e\x74\x0e\x39\x85\xa4\x72\x79\x36\x8c\ +\xb7\x83\xa8\xfd\xbe\xe5\x58\xa9\x6d\x3b\x8c\xce\x01\x17\x04\x44\ +\xf2\xd1\xb6\xf3\xd1\xd2\x98\x2a\x3b\xa5\x8c\xd6\xb4\x1d\x46\x1b\ +\xb4\x33\x89\x63\x6d\xf5\xa1\xd4\x82\x1a\x33\x71\x37\xb8\x1f\x87\ +\x5a\x80\x27\xe9\x86\xae\x56\x51\xbe\x5b\xda\x89\x7a\xbe\xca\xc7\ +\x7f\x54\xfa\x17\x22\x3f\xaa\xd1\xac\x4f\x97\x68\x00\xee\x04\x81\ +\x09\xd4\x73\x96\xca\xac\x42\xbc\x9f\x94\xfe\x21\xe8\x47\xe5\x55\ +\xd8\x5a\xaf\x11\x90\x49\x8f\xab\x4c\x7f\xaa\x4d\xfb\x6e\xd2\xe2\ +\x9b\xdf\xc6\xd6\x26\x17\x79\x9c\x21\x9c\x5d\xa7\x56\x5c\x0b\x3f\ +\x49\x39\x33\x3b\x9c\xa1\x29\x74\x8f\xe9\x6e\xfb\x8c\xca\xd9\x70\ +\x2e\xc4\x74\x69\x00\x6a\x65\xa5\x64\x44\x23\xb6\xd6\xc4\x0a\xb6\ +\x80\x26\x77\xf3\xfa\x6e\x8c\x4e\x8f\xca\x24\x50\xfd\xa2\x50\xd5\ +\xf0\x66\x52\x13\x36\xaa\xe8\x8a\xb0\x09\x7a\x5b\x82\x90\x7f\x42\ +\xa9\xb8\xe1\x5d\x6c\x78\x20\xee\xed\x65\x16\x82\xdc\x1c\x51\x95\ +\x27\xef\x81\x0d\x77\xef\x0b\x57\x20\x4f\x11\xd6\x49\x49\x4a\x46\ +\x59\x61\xd9\x45\x64\x8d\xb2\x4a\x00\x51\x1b\x25\x55\xa2\xe0\xa1\ +\x8b\x88\xc6\x9b\x9e\x26\xa3\x55\x18\xc6\x08\x4b\x5c\xf0\x88\x68\ +\x9d\x63\x13\xb5\xb8\x41\x0f\xe6\x0b\xf7\x9c\x54\x4f\x3f\x6d\x97\ +\x69\xac\x10\x9c\x38\xbc\xbf\x96\xf7\x23\x14\xb6\x31\xed\xaa\x25\ +\x5a\x8b\xb0\x60\xc4\x2a\x2c\x1f\x05\xb9\x51\x74\xf3\x82\x42\xc4\ +\xd5\x71\x58\xab\xe1\x76\x19\xc3\x45\x9f\x6a\x58\xfc\xcf\x54\x24\ +\x79\x1e\x48\x23\x8f\x06\x14\xac\x8c\x8d\xbe\xaf\x84\xe7\xf1\xfa\ +\x77\x91\x24\x3a\x90\x28\x44\xf3\x46\x99\x84\xd0\x11\x41\x78\xb4\ +\xcd\x49\xe4\xa2\x88\x00\xb9\x27\xc4\x21\xb7\x60\x02\xed\x63\x22\ +\x42\xb4\xfa\x61\x06\xd7\x19\x94\xc7\x42\x1e\x55\x47\x8f\xc8\x8e\ +\x08\x49\x31\x22\x2e\xfc\x5c\x4a\xd6\x07\xf6\x8f\xc1\x85\x41\xb8\ +\xa2\xc4\xe4\x04\x1a\x7f\xd7\xc3\x31\x0a\x16\x8a\x79\x59\x02\x42\ +\x0d\xb4\xa5\x63\xdc\x11\x87\x8d\x0f\x14\x0c\x24\x5c\x7d\x2d\xcc\ +\x28\x9b\x92\x56\x17\x76\x25\x96\xc8\x78\x6b\x9c\x2c\x0c\xf0\x46\ +\xed\x6c\x52\x31\x72\x46\x09\x89\x9a\x34\xf6\x24\xd3\xce\xca\xdd\ +\xd5\x3a\x37\x3e\x0c\x4d\x53\xc9\x2a\xeb\x31\x3f\xfa\x0e\xc1\xf5\ +\xf0\x7e\x90\x61\x54\xaa\x45\x98\xac\x7c\x16\x50\x47\x3c\xe8\x98\ +\x17\xe4\x4d\x8e\x0d\x3b\xb9\xca\x60\xaf\xd8\x71\xf2\x0e\xd0\xfe\ +\x3e\x15\x76\x45\xf9\x98\x11\xea\xdb\xc8\x02\xec\xed\xce\xfc\xd5\ +\xd2\x59\x56\xbf\xa0\x8f\x36\x71\xa0\xa3\xd4\x65\x94\x84\xdd\x05\ +\xa1\xbb\x55\xd5\x77\x9a\x16\x88\x5b\x4e\x43\xaf\xb5\xf1\xd7\xc2\ +\x97\xbd\xd7\xc1\x0b\xec\x56\x76\xe5\xe1\x16\x78\x38\xda\x73\xb3\ +\x7e\x01\xc2\x1c\x7a\x76\x36\x3c\x3b\xc4\xa1\x67\x36\x91\x1c\xbc\ +\x61\xc1\x80\x9d\xb7\xbd\xd1\xd0\x2b\x8b\x61\xf0\x29\xee\x05\xd1\ +\x23\x49\x34\x18\xce\x42\xb4\x0b\xb0\x0c\xab\x4f\xb6\x8d\x5f\xb0\ +\xb1\xaf\x6f\x89\xc7\xf3\xa0\xb3\x9e\x15\x86\x63\x16\xd9\x0c\x2f\ +\x59\x38\x24\x76\x34\x54\x70\xb2\xd9\xa2\x51\x93\xf1\x30\x4e\x66\ +\x61\x4d\xa1\x72\x17\xa1\x82\x15\x7a\xf9\x5f\xcc\xe3\xab\x51\x2e\ +\x33\xb6\xaf\x3e\xbe\xd5\x2e\x84\x47\x3f\x1c\xf1\xad\x36\x43\xd3\ +\xee\xab\x94\x29\xc4\xbd\xd8\xc6\x90\x8b\x47\xa5\x5f\xa1\x32\xd6\ +\x28\x39\x1d\x15\x07\x35\xb2\x28\x5b\x37\xb2\x46\x25\x36\xff\x56\ +\xd6\x25\xaa\x7d\x80\x04\x8e\x19\x4d\xab\x99\x8c\x4b\x49\xbe\x6a\ +\x90\x14\x99\x27\x44\xa6\x9c\x73\xa8\x78\x78\x0b\x03\x55\xd8\x82\ +\x44\x69\xe5\x33\xe1\xf0\x94\xc3\xa5\x79\x27\x63\x79\xa9\x10\xd0\ +\x03\x78\x69\xa8\x70\x0b\x95\x4e\xa4\xdc\x1b\x28\xbd\xe1\xc5\xa1\ +\xa2\x2b\x1d\x79\xbd\x99\x0c\x9f\x50\x74\xce\x15\xaa\x25\x83\x32\ +\x42\x99\x1b\xf9\x51\x76\x71\x2c\xf5\x2e\xbc\xc6\x5e\x90\xaf\xa0\ +\x82\x84\x37\x8d\x11\xc4\x48\xa0\x5c\x2f\x0c\xd8\x41\x30\x06\xcd\ +\xaf\x93\x75\xe5\x62\x1c\xc3\xa4\x57\x75\xf6\x84\x71\xb0\x0a\xc6\ +\x2b\x70\x7f\x81\xec\x70\x1b\x7f\x19\xda\x74\xf7\xb4\x1f\xd4\x5b\ +\x28\xe4\xb0\x57\x69\xdc\xb5\xec\xca\xa4\xf5\xac\xbb\x90\xb4\x24\ +\x7b\xdd\x74\x84\x1d\xc4\x5f\xa5\xd7\xa0\x5c\xa1\xa7\x3c\x9e\x0f\ +\x7a\x28\x78\xdc\xbf\xa6\xfa\x69\x59\xf6\xb4\xea\xd3\x15\x8e\x98\ +\xf0\x29\x17\x19\xb5\xe9\xd0\x69\xd7\xa3\xe6\x29\xe9\xd2\xee\xc3\ +\x0b\xc8\xf9\x89\xe7\x85\xa2\x8c\x22\xfd\xc9\x82\x15\xc6\x36\xbb\ +\x21\x49\xba\xfa\xb6\xc9\xfd\xee\xb3\x68\x62\x9a\xb1\x2d\xb2\xdf\ +\x7d\x28\x98\xd8\x05\xb6\x61\xef\x4b\x4c\x37\x8c\xbe\x51\x5a\x45\ +\x22\xdb\xc5\x2b\x63\x5d\xa1\x58\xe1\xae\x26\x5c\xd4\xb6\x68\x6e\ +\x84\xda\xc3\xbd\x14\x85\xc9\x26\xfd\x48\xd2\x16\x98\x22\xd1\xa4\ +\xb5\xf0\xdd\x8c\x34\x89\x58\xfa\x21\x3e\xa4\x5f\xa2\x85\x31\x4f\ +\x86\x41\x6f\xd4\x29\xe6\x32\x91\x9e\x68\x6a\x53\x44\xdb\x2f\xd9\ +\x05\xcd\xe8\xb4\x17\x45\xc4\x86\x72\x41\x95\x14\x1b\xec\x72\xaa\ +\xd0\xb3\x73\x94\x48\x80\x4f\xa2\xad\x55\xe8\x0d\x4b\xe8\x00\xc7\ +\x0e\x56\x11\x72\xa4\x98\x8e\xcb\x4a\x77\x15\x09\x30\x4e\x54\xaf\ +\x66\x86\xe8\xd7\xcb\x4a\x1e\x44\x31\x46\xcf\x29\x2d\x55\x5d\x4d\ +\xa8\xc7\x73\x21\x7c\x0e\x92\x4d\xf0\x5d\x1f\xfc\x24\x71\x79\x5c\ +\x9f\x92\x90\xee\x72\xa1\x82\xb7\x5d\xd1\xfb\x65\xd9\x25\x9e\x34\ +\xea\x32\xec\x39\xb9\xa2\x0f\x28\x1a\xdc\xd4\xdb\xb7\x3a\x8c\xa6\ +\x94\x14\xc4\xd2\xc5\x10\x23\x85\xfb\x4b\x1e\x3a\xaa\x58\x8d\x21\ +\xb7\xb0\x11\x0b\x56\x70\xa8\x22\x2a\xba\x72\x94\xe8\x6e\x53\x05\ +\xba\xc8\xae\x51\xa5\xa4\x20\xab\x1b\xc3\x47\xe9\x40\xed\xea\xa3\ +\x22\xf7\x3e\xa8\x5c\x25\xc5\xaf\x35\x8a\x32\x97\x65\x91\x77\x65\ +\x96\x88\xe8\xe2\x10\xcf\x7e\xda\xf8\x98\xf1\x5c\xe8\xf0\x18\x98\ +\xd2\x31\x14\xd7\xca\x47\x89\x25\x3c\x23\x66\x10\xed\x04\x29\x67\ +\x9d\x0d\x13\x5c\x9b\xaa\x8c\x72\x68\xc9\x25\xaa\x65\x4a\xb3\xc4\ +\x08\x22\xa8\x13\x1a\xa5\x23\x06\x16\xe1\x97\x1e\x41\xca\x8e\xa2\ +\x66\x93\x93\x9b\x1c\x89\x8c\x34\x3f\x66\x24\x97\xcb\x12\x53\x48\ +\xb4\x08\x5c\x9b\x61\xe7\x51\x6e\x4d\xbb\x3a\x25\xbc\x15\x8c\xd2\ +\xcc\x47\x19\x82\x63\x1a\x11\x2f\xd3\x5d\x41\xab\x3c\xdc\xad\xd4\ +\x41\xa9\x7c\xcc\x44\xb3\x99\x85\x70\x64\x67\x36\x49\xd1\x73\x70\ +\x30\xd0\x4a\x68\x6c\x9e\x96\xd2\x60\xcb\xb3\x30\x21\x37\xe2\x69\ +\x53\xe1\x6e\x2a\xb5\x1d\xb3\xe0\xc8\x69\x15\x19\x52\x7c\xf4\xf3\ +\x12\x8a\xd0\x1b\x67\x91\x0d\x81\x75\xc1\x14\x1b\x6a\xeb\xb0\xc3\ +\xa7\xc7\xcb\xc3\xb5\x23\x45\x6d\xcb\x75\xef\x5d\x5c\x25\x51\x67\ +\xbf\x83\x4d\x16\x0b\xae\x83\xcc\x5b\xea\x41\x66\xe0\x2f\x0b\xee\ +\x15\x52\x20\x3c\x0e\x95\x20\x35\xf1\x9e\x11\x6a\xb4\xe2\xc9\x22\ +\x65\xee\x94\x61\x65\x4a\x34\x25\x26\x86\x1d\x9f\x14\x3b\x47\xb9\ +\xfa\x90\xf8\xb9\x0e\x0c\xf2\xdb\xed\xac\x9d\x2e\x3d\xdf\x29\x41\ +\x5a\x8a\xde\x12\x45\xfa\x1d\x0c\x6e\x75\xaa\x89\x2e\x6c\x8f\x76\ +\x93\xb9\x8a\x7e\x71\xc0\x6a\x6c\x6f\x92\x41\xc7\x02\xa6\xae\x7b\ +\x80\xdc\xb9\x61\x1a\x6a\x21\x4f\xe2\x52\x7c\x4d\xeb\xaf\x5d\x9d\ +\xb1\xa3\x84\x2f\xaf\x86\x59\xa0\x5c\x97\xd0\x30\xb0\x00\x85\x6b\ +\xac\x8d\x10\xbd\xbc\x8f\x9b\x18\x92\xd7\x0e\x50\x47\x50\x9f\x28\ +\xf0\x55\x46\xd8\x14\x36\xbe\x88\x70\xda\x8b\x23\xa3\x46\xd9\xcb\ +\x55\xfb\x1b\x58\x78\x2c\x85\x5d\x27\xb3\xdd\x2c\x96\x39\x8c\x87\ +\xcb\xd3\x94\x6e\x0c\xf4\x74\xf6\x85\xc5\xdb\x96\x10\x44\x86\xa2\ +\x2b\x0a\x0f\x72\x5c\x9e\x3e\xcb\xb6\x64\x8d\x14\x19\xb2\x05\xbd\ +\xd0\x1b\xa1\x25\x5c\xc7\x06\x70\xa9\xc0\x04\x3e\x63\x17\x3d\x84\ +\x9a\xfb\xd8\xe8\x1c\x08\x03\x49\x5d\x57\x65\x13\x0e\x24\xb7\x18\ +\xa0\x19\x03\x83\xf6\xb9\xe1\x93\x95\xe5\x36\xd9\x30\x57\x44\x0c\ +\x74\xab\xba\x18\x86\x54\xd9\x18\xd3\x82\x55\x33\xa2\xa7\xc4\x09\ +\x5c\x18\x95\x69\x0a\xbb\x5b\x38\x40\x03\xc4\xc6\x51\x46\x1a\xc4\ +\x5a\x31\x67\xba\xd8\x9b\xa7\x47\x38\x4a\x4d\xfc\x3e\x17\xd1\x89\ +\x5d\xce\xcb\x4b\x95\x37\xca\x9a\xa3\xbd\x44\x7a\xbd\x6d\xe2\x6a\ +\x20\xe9\x29\xad\xf2\x80\x89\x7a\x65\x95\x43\xcb\xe3\x75\x4c\x00\ +\x32\xeb\x46\xe9\x61\x69\x32\x57\x39\x14\xc8\xf1\x9a\x27\xf4\x23\ +\xdb\x7e\x18\xfe\x2d\xe4\x28\x0d\x4a\xd6\x16\xb8\x18\x74\x2a\xef\ +\x21\x06\x97\x4c\x7a\xf5\x8d\xd4\xe1\x9d\xa8\x8c\x57\x60\x9c\x27\ +\x60\xa4\x40\xf4\x18\x20\xcb\xb0\x7c\x85\x26\x6b\xfa\xbc\x8b\x5f\ +\x18\xa4\xac\x72\x0d\x92\x48\x0d\xf7\x4a\xec\xa5\x8a\x38\xa6\xe0\ +\x2f\x51\xca\xa9\xf4\x2b\x23\xf5\xc5\x49\x10\x97\x0a\x10\xe9\xa5\ +\xb7\xd1\x5b\x24\x7b\x0c\x04\xcd\xce\x4e\x32\xa8\xc3\xe0\x9e\x19\ +\x21\x54\x95\x18\x2b\x27\xd0\x90\x6b\x4d\xfa\x22\x05\x98\x70\xf0\ +\xf2\x61\xe2\xa4\xcc\x22\xea\x20\xe8\x83\x81\xde\x0c\x0c\x6b\x15\ +\x6f\x61\x65\x40\x07\x39\x1e\x4f\x87\x6b\x00\xd0\xad\xeb\x41\xca\ +\x8b\x47\x4b\x01\x09\x4b\xdd\x9f\x64\xfb\xd2\x83\xaa\x55\x11\xeb\ +\x88\x24\xdc\x42\xf2\x78\x1c\xa1\x6a\xaf\x52\xa6\x98\xa7\x14\x0e\ +\xc6\xe1\x8c\xec\x65\x8f\x31\x0c\x82\x76\xa7\xa0\xbe\x8c\x55\xa0\ +\x1d\x6e\xf2\x69\x3b\x4a\x84\x67\x96\x39\xd7\x8c\xea\x73\x3c\x42\ +\x94\xfc\x64\x2b\xcb\x0c\x80\x5d\x22\x80\x05\x9b\xc6\x66\x82\x99\ +\x66\x1e\x0b\x78\xf9\xb7\x25\x48\x8f\xde\xea\x5b\x24\x5e\xe8\x48\ +\x4a\x3f\x94\xee\x00\x51\xb1\xac\xe2\xeb\x30\x06\xc2\x72\x49\xf0\ +\x59\x76\xbd\x07\x0d\x0e\x85\xa7\x5c\x03\x86\x05\x8b\x7b\x97\xe2\ +\x08\x95\x4e\xdf\x11\x99\xde\x2b\x0e\x07\x5c\x22\x0e\x86\xb3\xf8\ +\x89\x0b\x13\xb1\xa2\xc5\xce\xe8\xd4\x05\x5c\x30\xcc\xbd\x4c\xb5\ +\xdf\x6f\x88\xb1\x86\x81\xf3\xb5\x6b\xc8\xa2\x0b\x67\xe5\xa3\x52\ +\x7b\x08\x53\xb9\x5e\x5c\xab\x92\x8f\x70\xe4\x31\x3d\x57\x4d\x00\ +\x96\xc8\xec\x66\x00\x63\x21\x8c\x27\x8f\x27\x4b\x35\xa1\xc7\x96\ +\x3b\x27\x6c\x6c\x35\x17\x86\xfd\x8c\x08\x3d\x2d\x2c\xbb\x89\xe5\ +\x6f\x11\x09\xa5\x43\x85\x49\x3e\xe6\x4e\x0f\xd0\x36\xc6\xad\xf2\ +\xf4\xb7\x43\x37\x7d\x62\x80\x9a\x4e\x62\xa9\x79\xd6\xaa\x82\x2b\ +\x91\xb8\x88\x03\x88\x3d\x80\xa9\x84\xd2\xe4\x16\x40\x65\x33\xe5\ +\x20\xc2\x34\xc6\xcb\x32\x8d\x30\xb9\xc6\xb1\x0d\x8b\x48\xbf\xb2\ +\x5d\x02\xd0\xb0\x90\xf6\xc2\x22\xc2\xa3\x2d\x38\xcd\x1c\x83\xb1\ +\x87\x2e\xa1\x14\x36\x0b\xd8\xee\x49\x30\xe6\x70\xe1\xa6\x7e\x0d\ +\x8c\x72\x05\x46\x59\x50\xd5\xb7\x42\x80\x2a\x38\x9e\xaf\x83\x8a\ +\x97\xb5\xf4\x60\x7a\x93\x5f\xf2\xdc\x5f\x5b\x16\xbd\xa2\x2f\xa3\ +\x43\x58\xbe\xf2\xcc\xd1\x2b\x3c\x85\x69\x22\xda\x5f\xa5\x89\xbc\ +\x11\xaf\xf4\x9a\x8e\xd6\xd7\x44\xd5\x09\x20\xee\x3c\xf3\x25\xf3\ +\xcd\xe0\xbc\x23\xed\x8c\x15\xe8\xc3\xe1\x25\x5e\xf3\x9e\x2d\x51\ +\x3f\xc7\x62\x89\x32\x71\x2e\x48\x4b\x28\xc3\xaa\x8f\x8d\x2e\x10\ +\xd3\xd0\x14\x91\x35\xfd\x12\x2f\xc5\xdb\x7e\xcb\x83\xc7\x8c\x95\ +\x52\x94\x24\x98\x68\x42\x6e\x5e\x4a\xf1\x08\x96\xb5\x52\x5f\x96\ +\x60\x4c\x34\x62\xca\xc8\x32\x60\xf8\x8a\x46\x11\xc7\xfb\xfb\x63\ +\xe5\xf1\xf4\xbb\xa1\x2d\x2e\x2c\x7c\x42\x60\x95\xe5\x8e\xbb\x12\ +\xe0\x36\xcc\xc2\x7b\x88\xc8\x60\x8b\x93\xe9\x71\x24\xc6\x52\xa2\ +\x98\xd7\x9d\xf9\x7b\x25\x89\xbc\xbf\x04\xd0\x61\x99\x2e\xf3\x5a\ +\xb2\xb6\x4b\xef\xb3\x88\xea\xaf\x37\x94\xc9\xf5\x8a\xc6\x3e\xc2\ +\x11\x4e\x8c\x6f\x12\xd5\xd1\xaf\x5f\xaa\x36\x45\xe2\xae\xb0\x29\ +\xc6\x8e\x9d\xc6\x9f\x99\x75\xad\x93\xce\x46\xed\x9a\xc1\xbc\x11\ +\x8e\xa2\x06\x59\x25\x60\x2c\x07\x89\xa2\xda\x75\x34\xe9\x9c\xe9\ +\x79\x54\x43\x8d\x8b\xba\x3e\x32\xc3\xf4\x9a\xb8\x3b\xa5\x74\x07\ +\x8e\x1f\x72\x6b\xd0\x37\x84\xd2\x11\xce\x6f\x94\x2d\xfa\x65\xe3\ +\x15\x3d\x90\x2f\x5d\x6e\xc2\x1e\xb4\x31\x67\x53\xf5\xb0\xae\x53\ +\x51\xc5\xe3\xb0\xf2\x76\x93\x2c\x7a\x1d\x8c\x62\xde\xb7\x73\x98\ +\x89\x88\x7d\xf7\x79\x0e\x22\x7b\x76\xb8\xe8\xfb\x34\x9b\x8d\xe6\ +\x76\x87\xf0\xb4\xfb\x5d\x6e\xdf\x1a\xad\x97\x62\x0d\x68\xbd\x58\ +\xa2\x59\xa8\xdc\xa0\xca\x8c\x13\xd6\xed\x83\x3d\xaf\xbb\x7d\x56\ +\xa8\x58\x08\xa7\x1e\x61\x07\x57\x8d\x42\xc6\x9c\x71\x5a\x2a\x13\ +\xf1\x02\x75\x60\xee\x0c\x73\x12\xb0\xbc\x9f\x3c\xf7\xac\xe6\x78\ +\x62\xb5\xd2\x9c\x7b\x2d\x8c\x67\xe2\x7d\x3c\xeb\xb1\x2b\x64\xac\ +\xbf\xaf\x7c\x08\x47\x75\x16\x7b\xa8\xdb\x8a\xba\x25\xd5\x42\x3c\ +\x74\x9d\x0c\xd4\x04\x7e\x63\xd7\xc2\x45\x84\x4f\x77\x4a\xb6\x1d\ +\x97\x2e\xbf\x75\xd1\xa8\x84\x51\xc2\x87\x17\x6d\x94\x95\xa2\x6f\ +\xc7\x7a\xf1\x0c\x2c\xf6\x2b\x93\xc1\x12\x1a\x63\xab\xa8\xe7\x09\ +\x79\xaf\xe5\xd6\x6a\x8e\xca\xf5\x4e\x24\xf7\x61\x55\xd9\x88\x2e\ +\xe3\x30\x82\xa7\x88\xe0\x3d\xcb\x28\x65\x39\xa9\x6a\x26\xcf\x21\ +\x1b\x1c\x96\x16\x90\x71\x26\xf2\x2c\xb6\x54\x70\x3c\xbc\xbf\x31\ +\xaa\xc0\xcb\x26\xce\xcc\x09\xa9\xc6\xb1\x74\x49\x49\x9d\x2a\xac\ +\xf0\x59\x82\x27\x63\xaa\x69\x6e\x74\x28\x06\x88\x4c\xcf\x01\x80\ +\x44\x94\xcb\x1c\x37\xed\x1c\xca\x7f\x2c\xf8\x91\x11\xe4\xe8\x7e\ +\x97\xe9\x4f\xad\xf9\x6c\xf5\x56\xdd\xc2\x2a\x62\x09\xe0\x92\xaa\ +\xdb\x37\x04\xcd\xad\xa8\x29\x13\x26\xea\x59\xe1\x24\x18\x19\x30\ +\xdd\x18\xc7\x69\xc7\x83\x43\x10\x66\xfe\x42\x9b\xd0\xeb\x3e\xd9\ +\xb7\x82\x63\xea\xe5\x33\x8c\x7f\x14\x31\xce\x1c\x35\xe0\x4c\xa2\ +\x5c\x48\x19\x40\xb5\x98\x41\xc5\x8d\x0e\xc7\xdd\x09\x78\xcc\x53\ +\xa9\x28\x2c\x36\xd3\xa7\x75\x94\xf6\x58\x64\xcf\xf3\x25\xac\xe1\ +\xb8\xb4\x43\x11\x0a\xe9\x52\xbe\x8b\xc6\x3b\x55\x3a\x89\x90\xb0\ +\xb4\x92\x36\xe6\xd9\x45\x76\x34\xa7\x10\x63\x27\x39\x33\x4f\x9b\ +\xdd\x08\xd2\xa0\xdf\x65\x62\xe4\xba\x81\x49\x01\xd1\x9a\xf8\x00\ +\x55\x32\x04\xb6\xc9\x4e\xef\x34\x36\xc6\x65\x9f\x9c\x5d\xa2\x51\ +\xed\xb9\x44\xef\x39\x92\x0e\xed\x4f\x38\x2f\x3f\x3e\x44\x14\xdf\ +\x80\xb5\x13\xc1\xe1\xfe\x54\xdf\xe1\xd7\x04\xb1\x14\x5b\x35\x46\ +\x14\x5e\xf0\x32\x6d\xc1\xec\xc8\x8b\x4b\x71\xca\xe7\xbf\xb4\xb3\ +\x19\x79\x12\x4c\x24\xfd\xe5\xf8\x32\x03\x07\x61\xc9\x60\x51\xa2\ +\x47\xaf\x3a\xc1\x3e\x38\x01\xf6\xe1\x8d\xcf\xb0\x39\x1e\xeb\x40\ +\x45\x12\xbd\xc4\xaf\x2e\x1e\x22\x13\x28\x42\x41\x99\x02\x25\x43\ +\x64\x8a\xc5\x31\x53\x88\x26\x31\x32\xdd\x44\x1f\x74\x5f\x1c\x34\ +\xcd\xb2\x4e\xe2\x87\x2d\x8d\x75\x33\xe0\x7f\xb2\x39\x5c\x14\xeb\ +\xa2\xad\x5b\x64\xe0\x63\x4a\xc2\xab\xa2\x84\x11\x19\x65\x24\x3a\ +\xe4\xb3\x70\x70\x2b\x9f\x29\x01\x76\x1c\xc2\xc5\xe8\xaa\xca\xad\ +\xce\xa6\xcf\x30\x1b\x67\x60\x6a\x75\xfc\x1c\x6b\x12\xad\x40\xc8\ +\x48\x87\x33\x44\xdd\x0b\xaf\xcf\xb9\x3f\xce\x99\x73\x78\x58\x31\ +\x7e\x5a\x3f\xd1\xb4\x1e\xc6\x3c\x84\x28\x14\xb6\x60\x58\x5f\xe5\ +\x61\x2b\x22\x6d\x45\x35\x1c\x87\x3a\x57\x08\xc4\x45\x08\x62\x9e\ +\x26\xbd\x20\x78\xd8\x48\xa7\x73\x60\x11\x53\x3c\xe9\xcf\x7d\x8b\ +\xa8\x97\xaf\xa2\x1d\x29\x05\x76\xdc\x11\x90\x53\x47\xa6\x38\x2e\ +\xd1\x14\x0e\xaa\x5d\xcc\xf8\x8f\x43\xbf\x53\x00\xbd\x80\x16\x3c\ +\xc6\x4f\xd2\x59\x72\x12\xd9\xaf\x51\x1f\xb6\x15\x87\x65\x6d\x11\ +\x23\xc3\x9d\x52\x11\xf3\xa1\x8a\xaa\xaf\x93\x4f\x08\x7a\xd7\x11\ +\xe5\x2a\xb1\x8c\xa8\xbf\xe4\x74\x61\x4e\x91\x64\xca\x39\xfa\x94\ +\x8c\x91\xc4\x2c\xb1\x14\xf3\xcb\x72\x33\x59\x6d\x21\x3d\xc5\x93\ +\xd3\x58\xd0\x33\x8e\x5f\x79\x69\x93\x2a\x4a\x60\x06\x3b\xd1\xc9\ +\x7a\x62\xb7\x27\x0e\x97\x99\xc0\x67\x17\x7f\xf4\xd9\xb5\xba\xf1\ +\x68\x3c\xa1\x82\xa3\x9f\x6c\x9e\x78\x62\x4b\x61\x4f\x35\x1c\x4f\ +\xa6\xa7\x6c\xa2\x8f\x46\x14\x35\xd6\x7c\x2d\x9a\x92\xd3\x10\x9f\ +\x8b\x93\x22\x9b\x05\xb9\x4a\x9d\x6e\x33\xd2\x68\x44\x95\x0c\x9e\ +\x24\xc2\xb8\x8f\x4b\x68\x9a\xc5\xde\xa6\xaa\x64\x6c\x4e\xd3\x6c\ +\xcc\x3a\x88\xcf\xf5\x69\x2a\x95\xe4\xb3\x8e\x0c\x6a\x76\x52\xb9\ +\x14\x5d\xb5\x01\x4c\xf9\x24\xdd\xf7\x6d\x46\x6b\x4a\xe4\xa7\x04\ +\x4e\x94\xb2\x99\xba\x6d\x80\x62\x1b\xed\x79\x3d\xc3\xa2\x7e\x33\ +\xa5\xff\x68\x2a\xfb\x93\x2a\x21\xcb\xdd\x1b\xa4\xd4\x1b\xc9\x4d\ +\x29\x7d\x5f\x40\x25\xaa\x55\x0b\xbf\x11\x60\x53\x4c\x8e\x4d\xf7\ +\x34\x77\x12\xa8\x73\x6c\x23\xdb\xa5\x18\xe7\x63\x6e\xdb\x1e\x9b\ +\xba\x53\xd9\xb0\x3b\xa2\xc3\xee\x78\xc7\xc3\x6e\x8f\x19\x76\x7b\ +\xfc\xb0\xab\xa6\xd1\x77\xa3\x96\x46\x46\x37\x57\x95\xd3\x7b\x10\ +\x9f\xca\x0c\xc2\x41\xbe\x83\x9e\x86\x28\xff\x9b\xc9\xa4\xa2\xff\ +\x82\xab\x18\x0b\x87\xc4\x4d\xc9\x5c\x5e\xe1\x49\xd7\x55\x3c\xa9\ +\xda\x42\xa1\xa0\x52\xfa\x74\x00\x20\xff\x8f\xac\x7a\xdb\xb4\x34\ +\x1d\x06\x40\xb4\x07\x67\x20\xc8\x48\x9d\x2e\x11\x24\x30\x07\xc7\ +\x01\x83\xc2\x21\x0c\xcb\x50\xc5\xc8\x30\xb5\xa2\x80\xa5\x3c\x67\ +\x4e\x14\xfb\xeb\x84\x60\xc4\xc1\xe1\xbb\xf6\xd8\x52\x50\x55\xac\ +\xa8\xeb\x7e\x43\xc5\xd0\xe8\x98\x61\x8e\xc3\xe0\xf2\x3e\xe9\x37\ +\x8a\x83\x83\x9b\x91\x61\x18\xce\xab\xe0\x7c\xb1\x5a\x42\x91\x2b\ +\x60\x47\x72\x87\xc4\x3e\xd1\xb6\x07\x52\xbc\x32\x03\x41\x34\xc0\ +\x0d\xe5\x71\xc9\x48\x2b\x87\x99\x95\xdb\x82\x85\x46\x73\x09\x6c\ +\x96\x39\x14\x2a\x9f\x10\x1d\xfe\x43\x49\x99\x74\x16\xfd\xb6\xb5\ +\xf8\x94\x4c\x35\x9d\xe6\x00\x7e\xeb\xda\x34\x59\x99\x87\x87\xea\ +\x2c\x42\xd2\x5c\x1a\xd8\x83\x28\xc2\x7b\x63\xe4\x57\x2a\xa8\x3e\ +\x54\xfc\x73\x31\xb9\xa8\xa7\x61\x56\x7a\xe9\x6a\x83\x78\x47\x44\ +\x5c\x41\xac\x92\xea\x32\x14\xaa\x44\x10\x2e\x06\x51\x9d\x1a\x25\ +\x4c\xbd\xa9\xce\x52\x5c\xad\x47\x4c\xed\xdb\x68\xaf\x63\x56\xe9\ +\x55\xba\xcb\xe4\x41\x43\xce\x08\xa0\xc6\xe3\x97\x21\xf0\x56\x92\ +\xeb\x9d\x4c\x54\x68\xd2\x62\x1c\x16\x42\xd1\x7c\x83\x43\x70\x9a\ +\x22\x79\x39\x5a\x55\x54\x00\x56\xd8\xff\x1a\x6e\x59\xd1\x19\xdc\ +\x88\x7b\x24\xd9\xa1\xb8\x94\x0f\xa7\xc5\x54\x48\x70\x98\x27\xcf\ +\x5b\x40\x80\x39\x33\xb4\x79\xdd\x91\x3b\xc2\x9e\xe3\x7a\xd6\x9a\ +\x59\x42\xb8\x25\x4a\x9d\x77\x69\x85\x58\xfa\x6d\x44\x7a\xcb\x0f\ +\x0b\x1b\x86\x08\x43\x5a\xd5\x66\x54\x57\xbc\x9a\x17\xc9\x68\x82\ +\x25\x4f\x8b\x26\x05\x6a\xd7\xc5\x02\x11\x29\x6f\xf1\x58\xd1\x0b\ +\x0b\xb6\x2a\x78\xf8\x20\xad\x12\x63\x21\x83\xe0\xee\x5f\xd1\x4e\ +\x83\x45\x5b\x68\xfb\x38\x7a\x7a\x68\x34\x01\x95\x57\x8f\x45\x13\ +\xa4\x1e\xa5\x54\x1a\x74\x6e\x0d\xa3\x6e\x7e\x6c\x22\x6e\xa9\xdb\ +\x6b\x53\x98\x3e\x1d\x97\x60\x5b\xad\x54\xce\x54\x85\x4b\x66\x4e\ +\x88\x2d\xbe\xa0\x2a\x88\x1a\x7a\x13\x15\x9f\xb6\xee\x8a\x91\x12\ +\x66\x9b\xd2\xdd\x9f\x2e\x5e\x1a\x9f\xa1\xf9\x6a\x35\x9d\xa9\x7a\ +\xdb\xf6\x98\xbf\xef\x50\xfe\xbe\x23\xb2\x18\xf9\x76\x55\xf8\xe5\ +\x52\x8b\xd9\x5e\xd9\x62\xb6\x27\x5f\x8c\xaa\x52\x55\x6f\x8f\x02\ +\x2b\xff\x5a\x15\xfe\x63\x29\x60\x77\x54\x06\xec\x8e\xa4\xc0\x76\ +\xc4\x84\xe8\x54\x86\xa5\xb9\xa4\x4c\x56\x2f\xc8\x63\x61\x3d\x11\ +\x71\xa2\xf7\xa7\x63\x07\x30\x3c\x78\x34\x25\x7c\x1f\x1c\x02\xb8\ +\x1b\x8b\xb0\xad\x32\xd5\xc8\xc9\xff\x07\x66\xdf\xad\x3f\ +\x00\x00\x3b\xe2\ +\x00\ +\x00\xce\x79\x78\x9c\xcd\x7d\x09\x98\x1d\x55\x95\xf0\xed\xbd\xfb\ +\xf5\x16\x43\x08\x21\x04\xa8\x74\x42\xe8\x84\x4e\x27\x04\x08\xa4\ +\x0d\x4b\xa7\x3b\x4d\x82\xd9\xec\x6e\xb2\x89\x40\xbd\xf7\xea\x75\ +\x57\xfa\xbd\xaa\x47\x55\xbd\xee\xb4\x68\x44\x40\xf6\x55\x76\x71\ +\x90\x28\x02\x22\x2a\x8a\x6c\x6a\x70\x03\x7e\x85\xe1\xd7\x0f\x91\ +\x5f\x1c\x17\xd0\x44\xfd\xd5\x01\x87\x7f\xcc\xb8\xa0\x33\xe7\x9e\ +\x7b\x6f\xdd\x5b\xcb\x7b\x5d\x1d\x67\xe6\x9f\x2f\x1f\xbc\xee\xd7\ +\x55\xf7\x9e\x7b\xee\xd9\xcf\xb9\xe7\xae\x7e\x32\x3b\xe7\xf9\x37\ +\x3f\x76\xdb\x8b\xf3\xe7\x7d\xed\xc2\xbd\xfb\x7e\xb2\x86\x90\xe6\ +\xd3\x08\x21\xdb\x09\xf9\xfa\x23\xf0\xb9\x83\x90\x6f\x5c\x04\x9f\ +\x3b\x09\xf9\xe6\x4c\x42\xea\x5e\x85\xdf\x4f\x84\xcf\x1f\xc1\xe7\ +\xbb\xe1\xf3\x37\xf0\xf9\x16\x21\x0d\xbb\x09\xb9\xe6\xc3\x84\xac\ +\xbb\x8c\x90\x9a\xcd\xec\xf3\xa6\x5f\x10\x32\x7a\x32\x21\x97\x7d\ +\x9c\x54\x7d\xe3\x4a\x18\xa2\x83\xd4\xde\x3f\x49\xc8\xad\x8f\x90\ +\xda\xaf\xd4\x12\xd2\xfa\x4b\xf6\x79\xd7\xdf\x48\xdd\xf2\xb5\x84\ +\xcc\x58\xcb\x3e\x1f\x7e\x9d\xd4\x0d\x3c\x0b\xbf\x3b\xec\xf3\xb3\ +\x13\xa4\x6e\x2b\x7c\xbf\xf3\xfb\xec\xf3\x73\xb7\x91\xba\x87\xff\ +\x95\x90\x63\x66\xb2\xcf\x7d\x77\x90\xba\x27\xff\x4a\xc8\xd3\x7b\ +\x49\xdd\x77\xff\x17\x21\x5f\x3b\x9b\xd4\x7f\xe6\x3a\x42\x3e\x7c\ +\x38\x99\x71\xf9\x7a\x42\xcc\xf5\x64\x66\xdd\x97\x09\xf9\xca\x61\ +\x64\xf6\x73\x00\xf7\xde\x71\x72\xec\x7d\xff\x46\xc8\x09\x17\x92\ +\x25\x14\x9e\xeb\x8f\x20\x27\x3c\xf3\x79\x42\x6e\x38\x9a\x9c\xf0\ +\x9a\x01\x9f\xeb\xc8\xaa\x9f\x9d\x44\xc8\xea\x5a\xd2\x73\xcf\x51\ +\x84\x5c\x6c\x90\xd3\xf7\x1e\x49\xc8\x47\x56\x93\x33\x6e\x81\x75\ +\x9d\xde\x43\xd6\xdd\xf8\x7e\x42\xba\x2e\x21\xeb\xee\xbc\x9a\x90\ +\xda\x61\xb2\xfe\x35\x58\xfb\xe2\xf7\xb3\xcf\x3b\x74\x72\xce\x4a\ +\x80\xb3\xe1\x71\xf2\xae\xdc\x29\x84\x9c\xf6\x12\x7c\x9e\x4a\xc8\ +\xaa\x23\xe0\x73\x15\x7c\x9e\x47\xb6\x5d\x38\x4c\xc8\x61\xcf\xb1\ +\xcf\xc7\x7f\x4a\xb6\xff\x15\xd6\x71\x41\x1b\xd9\x71\xe7\x71\x84\ +\x1c\x61\xb3\xcf\x27\x6f\x25\xbb\xb6\x7f\x94\x90\x2f\xac\x24\x93\ +\x6f\xbe\x0c\xf8\xdd\x47\xf6\x7c\xb0\x8d\x90\x4b\x76\x92\x6b\x16\ +\xdc\x46\xc8\xf2\x19\xf0\x79\x07\x7c\xd2\xdf\xef\x82\xcf\xfb\xc8\ +\xcd\x5f\xfd\xbf\x80\xb7\xbd\xe4\xfe\x53\xcf\x24\xa4\xfb\x00\x79\ +\xe8\x12\x18\xe7\xce\xa3\xc8\xc3\xaf\x00\x9e\xd7\xdf\x43\xbe\xfe\ +\x70\x06\x7e\xff\x27\xf2\xdc\x2f\x2c\x42\x96\xbc\x4a\x5e\x78\x70\ +\x16\x21\x57\xdf\x4d\xde\x26\xcf\x13\xf2\x60\xba\xea\xc8\xeb\x7f\ +\x4a\x48\x76\x7b\xd5\xfc\x57\x00\xce\xd1\xd3\xaa\x3a\xbe\xf4\x27\ +\x80\xe7\x9e\xaa\x65\x37\xec\x21\xc4\xdd\x53\xb5\xee\x6f\x9f\x84\ +\xf5\x3f\x52\x35\xf4\xff\x1e\x22\xe4\x1f\xfe\xa5\x6a\xeb\xec\x73\ +\x08\x79\xe0\x17\x55\xe7\xfd\x14\xf0\xfb\xb9\x96\xaa\x91\xd6\x6b\ +\x08\xf9\xe4\x09\x55\xe6\x3b\xde\x47\xc8\x97\xfe\x54\x65\xde\x71\ +\x27\x21\x67\xf5\x54\x5d\xba\x2a\x05\xeb\x78\xa9\xea\xda\xd1\x12\ +\xec\xd3\x19\x55\xd7\x5e\x0d\x78\x6f\xf8\x45\xd5\xde\x0f\x02\x3c\ +\xda\x8d\x55\x5f\x78\x6f\x13\x21\xef\x07\x32\x79\x15\xe6\x1f\x73\ +\xaa\x5e\xba\xf1\xfb\x80\x8f\x7d\x55\x2f\xcf\x58\x00\xb4\xf4\xf9\ +\xaa\x9f\x5c\xf6\x67\x42\x3e\xff\x7c\xd5\xcf\xde\xd1\x47\x48\xfd\ +\x3f\x56\xfd\xfc\x5f\x81\x1e\xbf\xfc\x60\xd5\xdb\x9f\x83\xe7\xae\ +\xf9\x5b\x75\xdd\xd3\xb0\xce\xdb\x5f\xab\xee\x7a\xf5\x42\x42\x3a\ +\xbe\x52\xbd\xec\x31\x58\xd7\xfc\x3f\x56\x0f\x6c\x87\x79\xbf\x34\ +\x54\xbd\xed\x8f\x8d\x84\xb4\x7c\xae\xda\xf8\x6c\x1a\xe8\xf8\xc7\ +\xd5\x56\xc3\xcf\x09\xc9\xcc\xaa\x1e\x5f\x78\x18\x21\x6b\x9f\xa8\ +\xfe\xc0\x6b\xe7\xc2\xba\xeb\xab\x6f\x1d\x98\x0b\x70\x5e\x59\x7d\ +\xdb\xf3\x8f\x11\xd2\xf3\x44\xf5\x03\x5d\x87\x03\x8d\xa7\xab\x1f\ +\x5a\x09\xf8\xbe\xee\xf1\xea\xcf\x5c\x09\xfb\x70\xfd\x40\xf5\x17\ +\x7e\x0f\xeb\xbd\xef\x8f\xd5\x5f\x7b\xe8\x06\x42\x7a\x2f\xaa\xfe\ +\x7a\x0e\x78\xc0\xbe\xb5\xfa\xdb\x67\xfe\x81\x90\xf7\x7d\xa7\xfa\ +\xd5\xfb\x9e\x02\xba\x1f\xac\xfe\xa7\xb9\xb7\x12\xd2\xf8\xef\x35\ +\x55\x97\x3f\x43\xc8\xa7\x17\xd4\xcc\xbc\x63\x17\xe0\xab\xa3\x66\ +\xd6\x24\xe0\xfb\xb3\x7b\x6b\xe6\xce\x02\x38\x57\x5e\x57\x33\x77\ +\x36\xf0\x99\x71\x51\xcd\xb2\xb9\xf0\xf7\x1b\x9e\xad\xd9\x43\xe7\ +\x3f\xb7\xb3\xe6\xc3\xde\x3a\x42\x36\xff\xa6\xe6\xaa\x63\x61\xde\ +\xad\xed\x35\xf7\x6c\xff\x14\xf0\xe2\x39\x35\x8f\xde\x03\xf8\xf8\ +\xe2\xae\x9a\xc7\xbe\x0d\xf4\xf1\xe8\x43\x35\xfb\x5e\xde\x4f\xc8\ +\x8d\x4e\xcd\x33\xab\x61\xfe\x8f\x54\xd7\x3c\xfb\x83\xf3\x81\x8f\ +\x4f\x65\x9f\x77\xfc\xb2\xe6\x85\xd6\x03\x40\x4f\xfb\x6a\x7e\xdc\ +\x42\xe1\xff\x78\xcd\xeb\xbb\x29\xbe\xe6\xd4\xbc\x55\x04\xfa\x3c\ +\xa9\xba\xe6\xad\x7d\x80\xb7\x39\x6f\xd4\xfc\xa5\x1d\xe8\x64\xe5\ +\xc2\xda\xf9\x0b\x00\xef\x8b\xbe\x5b\xdb\xed\x02\x1f\xec\xf9\x6e\ +\xed\xd6\xfa\x5b\x08\x39\x79\x73\xed\x85\xef\x07\x7c\x3c\x71\x61\ +\xed\xe4\x9b\x30\xef\x7d\x85\xda\x4b\x27\x80\x6e\x33\x5f\xae\xbd\ +\xf2\x32\xe0\xef\xfe\xbd\xb5\x57\xfe\xe9\x1e\x42\x1e\x5a\x5d\x7b\ +\xdd\x2b\x9f\x23\x64\x92\xd4\xde\xb0\x0f\xf8\xed\x63\xcb\x6a\xef\ +\xbd\x06\xe6\xab\xbf\x8b\x7d\xde\x32\x56\x7b\xdf\x89\xb0\x7f\x0f\ +\xdb\xb5\x0f\xfe\x16\xf8\x65\xd5\xde\xda\xa7\x53\x7f\x24\xe4\xfc\ +\x6b\x6b\x5f\x79\x05\x64\x8c\xfe\x40\xed\xeb\x16\xc8\x8e\xe6\x27\ +\x6a\xf7\xb7\x03\xbd\x54\xff\x73\xed\x6f\x7b\xbf\x05\x70\xbe\x54\ +\xfb\xe6\xab\x0f\x12\xf2\xde\x87\xeb\x6a\x2e\x83\xfd\xb8\xe2\xbe\ +\xba\xba\x17\x60\xff\x86\x76\xd5\xb5\xbf\xe5\x11\xf2\xc8\x05\x75\ +\x47\xcd\x00\x3c\x6e\x7b\xbc\x6e\xc9\x01\xe0\x8b\x0b\x2f\xab\xeb\ +\x7f\xe7\x05\x84\x5c\xb5\xb7\xee\xbc\x57\x01\xff\xef\x78\x8b\x7d\ +\x7e\xee\xed\xba\xcc\x41\x58\xcf\x05\x9b\xeb\x8c\x37\x80\xdf\xef\ +\x7e\xab\xee\xca\x47\x60\xfc\x27\x56\xd6\xdd\xfe\x20\xe0\x77\xf6\ +\x61\xec\xf3\xc9\xd1\xba\xcf\xbe\x0b\xbe\x3f\xf7\xd2\xba\x2f\xde\ +\xff\x1c\x21\x0b\xaa\xea\x9e\xaa\xf9\x36\x7c\x5e\x5a\xb7\xaf\x05\ +\xf6\xff\xe3\xc7\xd5\xed\xbb\x01\xe8\x75\xa2\x58\xf7\xf4\x56\x18\ +\xef\xbd\x67\xd5\x3d\xbb\x05\xf0\xd7\x76\x64\xdd\x81\x1b\xba\x81\ +\xbf\xff\x50\xf7\x97\x1f\x83\xbc\x18\x7a\xbe\xfe\x98\x5f\xc2\x7e\ +\xee\x3b\xaf\x7e\xf1\x1b\x9f\x86\xf5\xff\xb0\x7e\xc9\x15\x2f\x02\ +\xde\xd2\xf5\xdb\x8e\x04\xfc\x01\x66\x76\xbe\x09\x78\xbd\xee\xe7\ +\xf5\xef\x79\x09\x9e\x7b\xd7\x48\x7d\xfe\x2a\xa0\xab\x77\x5f\x5c\ +\xef\x1d\x0d\x74\xb9\xeb\x87\xf5\xd7\xde\xde\x0f\xe3\x7e\xbf\xfe\ +\x8e\xed\xdf\x01\x3a\x79\xab\xfe\xab\x97\x00\x7c\xf3\x6f\xab\xff\ +\xce\x93\x75\x20\x67\x6b\xeb\x7f\x5d\xb7\x09\xe8\xec\x9a\xfa\x37\ +\x1e\xda\x46\xc8\x57\x2f\xaa\xff\xfd\x0b\x80\xe7\x63\x3f\x54\xff\ +\xe7\x7f\x07\xf8\x87\x9f\xa9\x7f\x7b\x2e\xd0\xd9\x3b\x5b\xeb\xdf\ +\xbe\x17\xf8\xf3\x91\x8f\x36\x34\xde\x04\xf4\x70\xe2\x87\x1a\x5a\ +\x9f\x00\x39\x78\xd6\x27\x1a\xda\xae\x38\x03\x9e\xff\x65\xc3\x92\ +\x05\x80\x8f\x33\x3f\xd4\x70\xca\x28\xc8\x87\xb9\x55\x0d\xa7\xfc\ +\x1a\xf6\xf9\xb1\xd3\x1a\xfa\x7b\x97\x00\xbf\xe7\x1b\xce\x39\x16\ +\xf8\xb5\x7a\x6e\xc3\x46\xb7\x03\xe8\xb7\xa9\x61\xd3\xfd\x40\xf7\ +\x1f\xdd\xd1\xb0\xfd\x85\x5f\xc3\xef\x67\x36\x64\xfe\x06\xf2\x69\ +\xd6\x1b\xec\xf3\x89\x86\x86\x8b\x3e\x0b\xfc\x3a\xf7\xad\x86\x4b\ +\x9e\x7b\x14\xf4\xc9\x78\xc3\x55\x0e\xec\xfb\xcd\x7d\x0d\x37\xef\ +\x06\xba\xec\x1c\x6b\x78\x60\x39\xc0\x7f\xf3\xac\x86\x6f\xbc\x0d\ +\xfb\x78\xca\xac\x86\x5f\xfd\x0e\xf0\xf8\x81\x8b\x1b\x8f\xff\x12\ +\xe0\xf7\xd1\xcd\x8d\x2b\x9e\x01\x39\xf3\xd8\xbf\x34\xae\xf4\x00\ +\xfe\x25\x1f\x69\xec\x7f\x0a\xf0\xf9\xce\x2b\x1a\xd7\x7f\x67\x39\ +\x21\x47\x9e\xdc\xa8\xbf\x1f\xc6\x5d\xf0\x58\xe3\x27\x9e\x1f\x01\ +\xbc\x2c\x68\xfc\xe4\x6b\x40\xaf\xb7\x0d\x35\x7e\xe1\xf0\x4e\x18\ +\xef\x2b\x8d\x5f\xaa\x85\xfd\x78\xe2\x07\x8d\xdf\x5b\x01\x78\xfe\ +\x68\x57\xe3\xcb\x2f\x9a\xf0\x79\x75\xe3\xeb\x77\x3f\x0d\xfa\xe3\ +\xd1\xc6\xd7\xbf\x01\x7c\xf4\xb1\xa7\x1b\xdf\xdc\x08\xf2\xea\x8e\ +\x6b\x9a\xb4\x1f\x2d\x04\x7d\x76\x03\x7c\x7e\x09\xe4\xc4\x32\xf8\ +\x04\x7e\xf9\xfa\x8b\x4d\x1b\x6f\x07\xbd\x77\xc2\xa3\x4d\xc6\x8f\ +\x00\x7f\x7b\x6b\x9a\x46\x5b\x17\x13\xf2\x99\xfe\xa6\x8b\xae\x07\ +\x3c\x37\x0e\x34\x95\x16\x00\x7c\x37\xb8\x4d\xe3\xff\x0c\xfa\xee\ +\x03\xc7\x37\x5d\x71\x3f\xac\x6b\xf1\x43\x4d\xd7\x2e\x80\x75\x3c\ +\x7e\x56\xd3\x3d\x7f\x05\xf9\xb9\xe7\xf8\xa6\xc7\x97\x00\xfe\x7a\ +\x8e\x6c\x7a\x71\x1e\xec\xeb\x93\x7f\x68\x7a\x69\x3e\xe8\x4f\xef\ +\xc3\x4d\x07\x16\x00\xbe\xac\x1b\x9b\x7e\x77\x02\xe8\x8d\xb6\xab\ +\x9b\xde\x3c\x09\xe4\xec\x51\xcf\x34\xfd\xfe\x58\xd8\x87\x9a\xcb\ +\x9b\xfe\xba\x16\xe4\xd2\x17\x8f\x4a\x35\x7d\x83\xca\xd5\x4f\xa4\ +\x3a\x3f\x0a\xfb\x94\x9e\x0f\x9f\xb0\xee\xb4\x03\x9f\xb0\xae\xf4\ +\xb7\x52\x4b\x9f\x06\x39\xb0\xf2\xdf\x52\xa7\x7c\x1a\xd6\xf5\x29\ +\x27\x75\xe6\xf1\xc0\x17\x77\x74\xa6\xce\xda\x0b\xfc\x74\xd2\x44\ +\x6a\xfd\xa7\x40\x5e\xef\xdb\x97\xba\xf0\x35\xa0\xb7\xae\x6f\xc0\ +\xe7\x11\x84\x2c\x5d\x08\x9f\xa0\xdf\x96\x5e\x99\x32\xee\x06\x78\ +\x3e\xdf\x99\xda\x5d\x77\x09\x21\x55\x43\xa9\x0f\xde\x08\xf3\x0c\ +\xfc\x31\xf5\xa1\xfd\x20\x0f\x36\xbc\x9e\xba\x62\x06\xd0\xe1\x61\ +\xd9\xd4\x9d\x57\xcc\x01\x7d\xf3\x46\xea\xae\xf3\x60\x7f\x1e\xbf\ +\x29\xf5\xe0\x6c\xe0\xc7\xc3\x5f\x66\x9f\x4f\xdc\x9b\xfa\xf4\xd5\ +\xbf\x03\x79\xe5\xa5\xbe\x7d\x1e\xf0\xe3\xcc\xe3\x52\xdf\xdb\xf2\ +\x24\xc8\x1d\x27\xf5\xbd\x5f\x82\x7c\x9a\xfb\xf9\xd4\x2b\xff\x02\ +\xf0\xdd\x75\x4b\xea\xb7\x37\x5f\x05\x72\xff\x23\xcd\x0d\xbb\x01\ +\xaf\xf7\xee\x6c\x3e\xea\x35\x97\x90\xdc\xf6\xe6\x85\xff\x00\xf8\ +\x1f\xd9\xdc\xbc\xf0\x59\xa0\xf7\xd9\x03\xcd\x8b\xf6\x00\x7e\x6e\ +\xdf\xda\x7c\xc2\x16\x78\xef\x93\x2f\x37\x2f\x7d\x14\xf4\xd2\xa5\ +\x4f\x36\x9f\xea\xc2\xba\xbf\x66\x36\x9f\x75\x16\xd0\xef\xf6\xb9\ +\xcd\x7d\x2f\xc2\x3a\xb6\xfe\xba\x79\xf3\x9d\x80\xf7\xbd\x07\x9b\ +\x73\x9d\x2f\x81\xfe\x9e\xd5\x7c\xd5\x6b\x0d\x60\x6f\x54\x37\xdf\ +\xda\x0f\xf6\xc4\xa9\xe7\x37\xdf\x39\x13\xe0\xbe\xe7\xc1\xe6\x7b\ +\x2f\x07\xf9\x5c\xfb\xe1\xe6\x47\x07\x40\xee\xde\xfa\xe3\xe6\x6f\ +\xde\x05\x9f\x1f\xdf\xdb\xfc\xfd\xe3\x41\x7e\xd5\x7d\xac\xf9\xe5\ +\x3d\x20\xcf\x5a\x57\x35\xff\xe1\x8d\x21\x90\x1b\xfb\x5a\xea\xb7\ +\x00\x5f\xb7\x67\x5b\x8e\xfc\x33\xe8\xdb\xbb\x17\xb4\xcc\x4f\x01\ +\x3d\xde\x72\x47\x4b\xe7\xdd\xb0\x6f\xd7\xff\xa6\xe5\xc4\x3d\x80\ +\xdf\x2f\x7e\xbe\xe5\xb4\x8d\xc0\x5f\x4d\xeb\x5a\x7a\x66\x7f\x8f\ +\x90\xa3\xf7\xb4\xec\xfc\x3a\xc8\x8d\x9b\xbf\xd7\x62\x5d\x09\xeb\ +\xef\xec\x6e\x79\xff\x6b\xf7\x83\x9e\x3a\xab\xe5\x92\x77\x02\xbd\ +\xde\x75\x62\xcb\xcd\xf7\xc2\xbe\xee\xab\x6b\xb9\xfd\x26\x2a\xbf\ +\xd6\xb6\x3c\xfd\x00\xf0\xf3\xa6\xa1\x96\xe7\x7f\x02\xeb\xfd\xca\ +\xc5\x2d\xaf\xbc\x09\x72\xf1\xe4\x7d\x2d\x3f\xbd\x0b\xec\x99\xcb\ +\x6a\x5b\x5e\x9f\x5f\x0d\x72\x72\x76\xcb\xcf\x27\x00\x5f\x1f\x1e\ +\x6a\xf9\xfd\x4f\x61\x3d\x9f\x98\x6c\x9d\x77\xf0\x0d\x42\x56\x0c\ +\xb4\xf6\xe4\x61\xfd\x5f\xfc\x53\xeb\xda\x9f\xc3\x7a\xbe\x3c\xbf\ +\x75\xc7\x5e\x80\xef\xce\x77\xb5\xee\xfc\x2c\xcc\x77\xd3\x9e\xd6\ +\xf3\x7f\x05\x74\xb5\xf4\x37\xad\xd9\x4f\x01\x5d\x3b\x0f\xb6\x16\ +\xfe\x08\xfc\x91\x6a\x68\xf5\x7e\x32\x48\xc8\xbc\xcf\xb4\x8e\x3f\ +\xf6\x11\x18\xe7\x63\xad\x77\xff\x0e\xf0\xbf\xab\xd0\xfa\xa9\x57\ +\x01\x4f\x27\xfe\xaa\xf5\xfe\x1f\xdd\x07\x26\x61\x5f\xeb\x03\x4f\ +\x7d\x13\x9e\xfb\x73\xeb\x73\xcf\x81\x5c\x78\xec\x96\xd6\xb7\x56\ +\xc1\x7c\xf7\xf7\xb5\xcd\x3d\x9a\xca\x9b\x15\x6d\x8b\x6f\xcd\x12\ +\xb2\xe6\xcf\x6d\x27\xd4\x02\x9d\xdd\xf6\x6a\x5b\xd7\x7e\x78\xee\ +\xa9\x27\xdb\x36\xfd\x23\xe0\xbf\x79\xbc\xcd\xfe\x28\xd0\xf3\x57\ +\xfe\xda\x76\xf1\xfb\xba\xc0\x3e\x3a\xa7\xed\xc6\x5d\x60\x1f\xad\ +\x7e\xad\xed\x66\x03\xf0\x73\xcc\xe9\x6d\xcf\xff\x1f\xe0\xa3\xe3\ +\x1e\x68\x43\x3e\x79\x6a\x25\x7c\x02\x1d\x3e\x35\xd1\xf6\xe2\x7b\ +\x00\x3f\xe7\xaf\x68\xfb\xcd\x81\x1a\x42\xae\xbd\xb6\xed\x9f\x5f\ +\x07\x3a\x78\xcf\x61\xed\x0d\xd7\x03\x7d\x5f\x77\x54\x7b\xf3\x0c\ +\xd8\xa7\x1d\x9f\x69\x3f\xe2\x52\xc0\x1f\xf9\x43\xfb\xb1\xd7\x83\ +\x9c\xbc\xed\x8e\xf6\xcd\xa5\x1e\xe0\xe7\x5b\xda\x2f\x78\xfe\x07\ +\xb0\xff\x2f\xb4\x4f\x7c\x0b\xe8\xeb\xb2\x1f\xb5\x5f\xdd\x0c\x72\ +\xe0\x3d\x6e\xfb\x8d\x0f\x3e\x00\xeb\xc9\xb6\xdf\x99\x02\xbb\xe7\ +\xe9\x17\xda\xef\xf9\xdd\xbd\x40\xcf\xc7\xb5\x7f\xed\x4a\xe0\xc3\ +\x87\x8f\x6d\x7f\xf1\x7f\x03\x5d\xaf\x76\xda\x7f\x36\x1f\xf8\x7a\ +\xc9\xaa\xf6\x83\xf5\xc7\x80\x7e\xac\x6b\x3f\xb8\x18\xec\x8b\x9b\ +\x4e\x6e\xff\xcb\x05\x40\x2f\xb7\xdf\x03\xc4\xf8\xad\xe3\x01\x32\ +\x72\x0c\xd9\x40\xf6\x93\x11\xf8\xa7\x11\x8f\x98\x24\x0f\xff\x34\ +\x52\x24\x25\x62\x91\x31\xe2\x35\xa2\xd0\x87\xff\x9a\x7a\xb3\x59\ +\x6d\x8b\x6d\x5a\x1e\xd0\x27\x69\xeb\x77\xf4\x9c\x77\x01\x7c\x87\ +\x5f\x55\xd1\x91\x2e\xf4\x47\x32\x88\x13\x18\xcd\x80\xb1\x94\x31\ +\xe1\x67\xd3\xff\x36\x0d\x9f\x39\xf8\xdd\x82\xef\xf3\xf0\xc9\xe0\ +\x70\xc8\x01\x92\x25\xcb\xe0\xaf\x2e\xbc\x97\xc7\xbf\x1b\x3e\x2c\ +\x9d\x30\xaf\xab\xe9\x5a\x91\xce\xad\x79\xb6\xa6\x5b\x9a\xb1\xdb\ +\x74\x3d\xd3\x1a\xd1\x26\x4c\xc7\x58\x96\x76\x8b\x79\xd3\x32\xca\ +\x81\xba\x24\x76\xd1\x14\xa8\x11\x98\xba\x04\x53\x16\xe1\xe7\x6e\ +\xfa\xcf\x9f\xb4\x9d\x22\x00\xe6\x1a\x71\xec\x52\xb1\xbb\xbb\x9b\ +\x8e\x3d\xc3\x1f\x7b\xd8\x3e\x9b\x7e\x8f\xa3\x3b\x65\x11\x91\x85\ +\x6f\x34\x52\x20\x3a\x7c\x3f\x86\x7f\xd5\xf9\x77\x36\x2c\x75\x17\ +\xfc\x44\xd1\xc3\x10\x13\x46\x5f\x1c\xa2\x7c\x68\x7d\x28\x97\x23\ +\x6a\xbc\x51\x43\x73\x8d\xbc\x91\xf1\x8c\xac\x66\xa7\x77\xc1\x0f\ +\x9d\xee\xe2\x30\xa6\x70\x25\xe5\x97\x31\x4e\x7a\x11\x11\x74\xb2\ +\x0c\x07\x96\x2e\xc7\x82\x29\xc7\xf1\x67\x1d\x7e\x66\xe0\xb3\x1d\ +\xa2\x0b\x48\xc3\xf7\x06\x7c\x9b\xc5\x45\x65\xc8\x28\x7c\x2e\x05\ +\xc0\xf7\xc3\xf7\x41\x74\xd3\x31\xf2\xf0\x9c\x1e\x5c\xbe\xbf\x94\ +\xd3\x7a\x8b\xb0\x89\x86\xab\x65\x4a\x8e\x63\xc0\x46\xd3\x1d\x85\ +\xed\xcd\x7a\xa3\xb0\x8c\xac\x96\xb1\xf3\xb6\x43\xd7\x14\x5a\xa9\ +\xab\x2e\x09\x86\x98\x1c\xf2\x26\xf3\x06\xdf\xf7\x61\x3e\xfd\x7e\ +\xd8\x85\x22\x4e\xad\x23\xce\x4b\x30\x39\x03\xcb\x65\x20\xfa\x60\ +\x1c\x86\x63\x68\x7d\x1c\x08\x1c\xac\xfc\x0c\xb3\x48\x1f\xbc\xcd\ +\x76\x37\x0f\x8b\x3a\x40\xa9\xc0\x1f\xab\xa6\xd7\xc9\xd0\x77\x9b\ +\xf8\xbb\x4e\x06\x5f\xba\x94\x0c\xc1\x0b\x3a\x02\xe4\xf8\x1b\x9e\ +\x89\x0e\x04\x04\xa9\xc1\x04\xc3\x64\x10\x48\x4c\x03\xac\x1e\xc4\ +\xe7\x75\x00\xd9\x43\xd0\x2d\x58\x58\x11\xc7\xe9\x82\xdf\x87\xc8\ +\xbb\xc8\x7a\x32\x00\xcf\x47\x9f\xa5\xe4\x44\xc9\x67\x3f\xbc\xe3\ +\x12\x5d\x12\x50\x9f\x63\xe8\x1e\x60\x1d\x28\x45\x77\x32\xdd\x5a\ +\xdf\xf0\xe0\x06\xc4\xb2\xa5\x17\xbb\xb4\xa1\x75\xeb\x07\x86\xe9\ +\xaf\x19\xdb\x72\x3d\x47\x37\xad\x98\xf5\xb4\x90\x8d\x38\x8f\x03\ +\x2b\x70\xfd\x91\xeb\x7a\x1d\x47\x9f\xa4\x8f\x37\x8b\xc7\xe1\xf7\ +\x0a\x08\x28\x02\x59\xe4\xfd\x6f\xe8\xee\x30\x7e\x72\x38\x9f\x50\ +\xf2\x1b\x81\x9d\xcb\x23\x71\x31\xbe\xe2\x93\xe2\x82\xa9\x10\xb1\ +\xf0\x5d\xb6\xe4\x20\xdf\x79\x65\xc8\xee\x9d\x3e\x02\x40\xbe\xe4\ +\x75\x47\x03\x22\x73\x80\xac\x74\x6b\xa4\x44\x7f\xd5\x29\xd4\x5a\ +\xce\xb1\x0b\xf0\x44\x88\xf4\x62\x17\x37\x83\xac\x01\x0e\x88\x93\ +\x63\x8d\x6b\x96\x0e\xf9\x72\xaa\x95\xbd\xb7\x86\x7d\x83\x6f\xde\ +\x19\x8b\x96\x02\x2e\x99\x12\xe9\x52\x45\xa6\xba\xb8\xa7\x81\x79\ +\xfe\x1b\xa8\xa5\x4f\x22\xab\x50\xca\x7b\x66\x31\x6f\x2c\x65\x52\ +\x39\xbd\x94\x89\xe0\x64\x04\x14\xb3\xf8\x16\x95\x93\xfc\x09\xeb\ +\xfb\x4c\x27\xc3\x18\xb0\x85\xbd\xc3\xbe\xc0\x57\xae\x9b\x92\x8f\ +\xa6\x87\x91\x5e\x78\x2a\x0e\x1b\xe3\xf0\x54\x1e\x08\x47\x47\x79\ +\xc6\xc8\xd0\x40\xc1\x1c\x47\x50\xa7\x4b\x1c\x65\x10\xd6\x30\x4a\ +\x7a\x37\x0c\x4b\x31\xa6\x51\x42\xa3\x82\x46\x11\x66\xd1\x95\x36\ +\xc2\x5e\xe5\x61\x36\x4b\x72\x57\x5f\xde\x66\x84\xc4\x09\x10\x7f\ +\xc7\x87\x17\x89\x87\x39\x5a\xa6\x12\xbc\x47\xe3\xab\xe5\xb4\x48\ +\xec\x14\xb3\x01\xf3\x1e\x52\xc7\x88\xaa\x0d\xfc\x21\x53\xf0\xa8\ +\x6b\x68\x1b\x38\xad\xb7\xfb\xef\xbb\xc6\x06\xb1\xe1\x2b\x95\x31\ +\x18\xa3\x67\xf9\x0e\x4a\xed\x42\xf7\xc8\x06\x0e\xd0\x90\xcd\x29\ +\xee\xa5\x7c\x39\x0a\x87\x63\x60\xa3\xaa\x48\x1b\x54\xcb\x65\x1d\ +\x7d\xc2\x2a\x3b\xe9\x5c\xd8\x60\x1d\x09\xdc\x86\x21\xbd\x58\xd3\ +\xa7\x65\xd0\x28\xd8\xe3\x46\xc4\xfa\xe9\x37\xf2\xd2\xa4\xc8\xe3\ +\x40\x4e\x60\xa8\xa8\xdd\xa3\x0a\xa5\xa9\xac\x9f\xa0\xd0\x8b\xb7\ +\x84\x96\x33\xd0\xa4\x31\xc4\xe4\x52\xc8\x1c\xa2\x22\x2c\x6a\x11\ +\x05\xc0\x7f\x3a\x96\x75\xb2\x30\x5d\x01\x7f\x76\xe1\x27\x4a\x41\ +\xff\x65\x22\x25\x31\xc3\x19\xfe\x5c\xf4\x7d\x06\x9d\xdc\xab\x4d\ +\x92\xd9\xb2\x66\xc1\xb0\x5c\xd3\xb6\xa6\x16\x41\x61\x1e\xa4\x82\ +\x7d\x04\xde\xf6\x14\xba\xe9\x17\xc3\x21\xbe\x66\x92\xfe\x30\x6e\ +\xa4\xa9\xec\x3f\x5a\xf6\xf5\x59\x64\x13\x5a\x49\x23\xbe\x09\xe8\ +\x28\x52\xb5\xa9\xdf\x9e\xb0\x46\x1c\x3d\xab\x32\x8b\xff\x1d\x0e\ +\x70\x03\x60\xf5\x20\xc7\x5e\xd6\x37\xcd\x98\x31\x56\x86\xbf\x63\ +\xed\xca\x31\xae\x61\xc3\x36\x68\x57\x88\xfc\x5c\x20\xe2\x34\x92\ +\xa6\x0e\x26\x9d\x34\x06\x27\x51\xe8\x39\x3e\xe8\x6b\xd7\xee\x2e\ +\xe6\xed\x6c\xbc\xf4\x70\x35\x20\x37\x40\xb2\x59\x00\x3d\xe1\x88\ +\x2f\xbb\x28\x79\xba\xa5\x34\xec\x04\xa0\x3e\xa7\x67\x0c\xb7\xec\ +\xb2\x8f\x01\xc2\x63\x7c\xaf\x2e\xc4\x05\x90\xa9\xd2\x97\xb2\x80\ +\xbd\x4c\x77\x74\x68\xcc\xf0\x32\xa3\x74\xc0\x99\x7c\x40\xfa\xff\ +\x15\xec\x6b\x1c\xb3\x8d\x8f\x69\x21\x6f\x8d\xf8\x63\x34\xc0\x93\ +\x13\xc0\x42\x8a\x7e\xe2\xdf\xe0\x6b\xe7\x93\x2d\x88\x3b\xd5\x34\ +\xce\x22\x75\x56\xda\x01\x26\x61\x0e\x28\x74\xec\xa8\x93\x23\x27\ +\x50\x65\x25\xfd\x8e\xa5\x5b\x4a\x5e\x19\x6c\xda\x60\xa2\x69\x1c\ +\x26\xcd\x1d\x35\x0c\xaf\xbb\x0c\xb0\x33\x60\x8d\x06\xb2\xf3\x48\ +\x88\xd6\x6a\xd7\x66\x4d\x24\xf3\x14\x7b\x8b\xfe\x8a\xaf\xf4\x84\ +\x5f\x09\xac\x90\x59\xcd\x26\xae\x34\xb2\x46\x7f\xf0\x23\xe8\x68\ +\x0c\x78\xd8\x5b\x13\x64\xa8\xb4\x93\xc2\xf3\xcd\x05\xee\x1f\x87\ +\xf5\xe7\x81\xd2\xd8\x06\x47\xd5\x48\xf3\x80\x69\x99\xee\xa8\x26\ +\x24\x19\xb7\xc1\xd9\xb7\xbe\x4c\x3f\x27\x34\x92\x94\x67\xaa\x22\ +\x29\x71\xd5\xad\x4a\x2f\xa1\x7e\x74\xa1\x7c\xfc\x99\x3b\xd8\x1c\ +\x28\x58\xb8\x1f\xe2\x8d\xda\x25\x4f\xcb\x80\x3a\xa1\xe8\x67\x48\ +\x8c\x07\xe8\x9a\x58\xe1\xba\x22\x62\xbf\x49\xf0\xfe\xeb\x2d\xb7\ +\xd3\xa4\xa0\x5c\xc1\x4d\xb6\xe4\xe6\x1a\xdf\x3b\x7f\x81\x29\x00\ +\x33\xbc\x57\xb5\x42\xd9\x87\x1f\x6e\x01\x48\xf3\x28\x38\x3c\x95\ +\x0e\x37\x82\x1e\x53\x1e\xa7\xbf\xe2\xe3\x3f\x54\x1f\x4f\x2c\xe5\ +\x0a\x5c\x7a\xe9\x1c\xd5\xaa\x1a\xa6\xd4\xfc\xff\x47\x8f\x8d\x01\ +\xa4\x45\xc0\x54\x90\x05\x77\x6e\x44\x15\x1e\xcb\xe2\x69\xc3\x9b\ +\x30\x0c\x4b\x5b\xc1\xf4\xbb\x3b\x0d\x5d\x96\xb1\x8b\x93\x71\x08\ +\x6d\x21\x9b\x01\xb0\x1c\x2a\x50\xc9\xaa\xf5\x9b\x73\x39\xd7\xf0\ +\x14\x73\x93\x7d\x81\xaf\xbc\x12\x4b\xc0\xb6\x1c\x86\x84\xa3\x1c\ +\x53\xca\x88\xff\x51\x3b\xb0\x8e\xad\x35\x46\x52\x1d\x02\xbe\xa3\ +\xe8\xeb\x8a\xa0\xcf\x0b\x9a\x9a\xb1\x66\xf8\x6c\xd5\x11\x35\x7d\ +\x8f\x40\xb1\xbf\xa5\xf9\x96\x02\x65\x14\x36\x5b\xeb\x7c\x7b\x35\ +\xf2\xf8\xc7\x62\xf7\xd3\x41\x3c\xb2\x70\x43\x89\x87\x76\x18\x2f\ +\x1d\x40\xa9\x38\x8a\xb8\x14\x9a\xea\xbf\x5e\x44\x29\x9e\xb8\x63\ +\x30\xe7\x1b\x3c\xf2\xc9\x91\x24\x16\x9d\xa2\x07\xb7\xb0\x77\xb8\ +\xae\xdf\x82\x41\x85\x49\x98\x50\x35\xd9\x1a\xf8\x43\x65\x5e\x4b\ +\x27\x14\xe0\xc1\xc8\xc4\xb4\x1c\x4e\x1f\x94\xc5\x51\xc1\xcc\xc3\ +\x0f\x61\xcf\x51\xb1\x92\x06\xc5\x13\xdc\x38\x1d\x0c\x03\x22\x6d\ +\x4b\xff\xd1\xb2\xaf\xb7\xc0\xeb\x36\x97\x93\x12\xae\xfa\x41\xdb\ +\x03\xb8\x14\x0a\x67\x5f\xe0\x2b\x8f\xab\xaf\x24\x14\xd2\xff\x3d\ +\x02\xc0\x8d\xd9\x38\x21\x04\xe4\xe2\x06\xd9\x5a\xe2\x85\x70\x52\ +\x19\x90\x91\x7e\x7e\x50\x14\x28\x88\x4a\x71\x4a\xca\x2b\x93\xd7\ +\x0d\x65\xf4\xbc\xea\xba\xe3\xef\xf8\xf8\xcb\xf2\xf1\xc4\xaa\x2f\ +\xea\x63\xea\xe8\x3b\x0a\x42\xed\xfe\x1f\x23\x76\xcf\xc3\x85\x96\ +\xd1\x7c\x3c\xc2\x96\xd6\x5d\x83\xc9\xbf\x43\x10\xc5\x11\x7c\xce\ +\x22\x5b\xb9\x2b\x19\x17\x3c\x6f\x19\x62\xee\x9f\x1f\x18\x7f\x07\ +\x7f\x1f\xbf\x96\x91\xf1\x22\xc6\x37\x65\x28\x91\xad\x94\x99\x1b\ +\xc1\x1d\x61\x86\x48\x16\x31\xab\xc3\xcf\x05\x7c\x22\xc7\x5d\xb7\ +\xbc\xe2\xba\x89\xb8\x06\x13\xba\x16\x3e\x17\x85\xf0\x54\x06\x0a\ +\xd0\x58\x3e\xef\x63\x8a\x9a\xa2\x0c\x87\x7a\x01\x70\xa5\xd3\x38\ +\x35\x3c\x41\xf1\x6a\xba\x53\x2e\xe6\x3c\x1f\x25\x46\x40\x39\x51\ +\xb0\xd2\xf8\x1b\x0b\x3c\xe8\x9c\xb8\x0e\x72\x70\x05\x5b\x89\x14\ +\x80\x0e\x64\xa9\xa1\xb0\xb1\x71\xd1\x18\x89\xf5\x01\xef\x1a\x12\ +\x9e\xf5\x84\xed\x8c\x51\x83\xb9\x98\xd7\xc1\x8c\xce\x81\xef\x37\ +\x62\xd8\x05\xc3\x73\x26\x19\x03\x71\xb7\x39\x00\xed\x16\xfa\x2c\ +\x17\x6d\x72\x03\x39\x54\xd2\x3b\x50\x1e\xae\x30\x84\x07\x34\x4d\ +\x43\x19\xe3\xb8\x60\x21\xb3\x28\x3d\x9b\xe8\xee\x08\x21\xce\x02\ +\x1e\xcc\x8c\x14\x3b\x29\x4d\xca\xa0\xdb\x26\x73\x1d\xbe\x2f\x4a\ +\xca\x64\x35\xfa\x6c\x6b\xdc\x70\x3c\x2d\x6d\x66\x4d\x2a\xd8\x61\ +\xbd\xb0\x99\x93\xbe\xa5\xc7\x3c\x57\x9a\xe0\x60\x3e\xaa\x1a\x08\ +\x14\x2b\x1a\xd5\x8b\xc6\x8a\xfe\xad\xa6\x31\x81\x2b\xda\x12\x52\ +\x4f\x39\x8c\x40\x15\x50\x45\xf5\xa3\xbc\x98\xe4\x9b\x2b\xb6\x6f\ +\x8a\x14\x94\x0f\xed\x12\xa1\x8c\x70\x4a\x6d\x45\xbf\x36\x0e\x93\ +\x82\xe7\x99\x8b\xcd\xba\x94\x81\x6f\x16\x87\x43\xc2\x05\x10\xf9\ +\x73\xb4\x06\xc6\xae\x30\xcc\x3c\xd8\x7b\x13\x19\x49\x15\x54\x39\ +\xa4\x07\x4f\x1d\xce\x9e\xd0\x86\x40\x44\x68\x6b\x74\x27\x30\x9c\ +\x3d\x41\xbf\x86\x6f\x71\xb8\x01\x7f\x38\x27\x30\xe0\x52\x4e\x19\ +\x94\x06\x26\xd1\x25\xe7\x53\xf8\xd8\x73\x62\xe3\x05\x73\xe8\x04\ +\x2e\xdf\x3f\x2a\xa2\x40\x12\xd9\xf9\x74\x45\x18\x06\x63\x0d\x0b\ +\x1d\x25\x80\xd0\xa7\xd3\x34\xb7\x7c\x78\x16\xa8\x99\x1c\xcb\xa2\ +\x3a\x28\x12\x0c\x53\xfc\x83\x61\x63\xb7\xc7\x63\xcb\xc3\x30\xef\ +\x6e\x05\xa5\xb5\xf4\x6f\x71\x8f\x76\x23\x37\xee\xe6\x82\x6f\x0c\ +\x19\xc6\x45\xce\x2f\x29\x2c\xe4\x62\x86\x46\xcd\x83\x1d\x31\x6c\ +\x8f\x80\xb5\xc1\x25\x77\x29\x03\x70\x69\x1b\x6d\x16\xee\x9a\xc7\ +\xe7\xc0\x27\xfa\xf8\x03\x14\x72\xfa\x00\xce\x6a\x29\xb3\x06\xf3\ +\xab\x53\x42\xa0\xa0\x8e\x06\x5e\x3d\xbe\xd1\x36\x17\xcd\x56\x94\ +\x15\x94\x48\xcc\x32\x06\x13\xd3\x57\x2a\x64\x08\x3b\x8a\x32\x0b\ +\x30\xe3\x9b\x0d\xc9\x56\xb3\x30\x80\xc3\x1c\x0f\x1e\xbb\xf0\x9d\ +\x87\x41\xe1\x20\xe6\x66\x49\xcc\x79\xa6\x55\x32\x7c\xb4\xcd\x09\ +\x4d\x84\x7f\xf5\x27\xd9\x12\x42\xd9\x40\xfc\x34\x0a\x7a\x28\x3d\ +\xb9\x3c\x10\x13\x44\x10\x86\x81\xa5\x60\x0f\x21\x45\x42\x25\x11\ +\x92\xb1\x0b\x05\x10\x68\x0c\x23\x95\x01\xbd\x35\x04\xe8\x38\xb2\ +\xa8\x8c\x8e\x09\x40\x3d\x05\xd4\xe9\xc7\x03\x44\x88\x9d\xcd\x21\ +\x44\x37\xd3\x27\x5e\x38\xfa\xa4\x44\x37\x07\x86\x26\xf4\xa2\xab\ +\x65\x4d\x17\xb4\xd7\xa4\x56\xa0\xab\x8c\x11\x85\xbe\x2c\xa7\xc1\ +\xf7\x9c\x43\xb5\x32\x95\xe7\xb9\xbc\xee\xd1\x18\x0b\x8a\xca\x23\ +\x54\x34\xf4\xb3\x01\xcb\xd0\x44\x19\x1c\xc8\x0c\x35\xa7\x09\x15\ +\xac\x29\xa7\x98\x13\x98\xc2\xc1\x70\x18\xdd\x73\xc9\xf5\xcd\x7c\ +\xd8\xb3\x1d\x33\xab\xc4\xb6\xd8\xb7\xf4\x4b\x1e\x26\x0c\x6e\x58\ +\x38\x9c\xa9\x8c\xac\x84\x3f\x97\x51\x73\xc1\x9f\x69\x9e\x4a\x43\ +\x4c\x7e\x8e\x98\x80\x4d\x6b\x99\x9d\xcb\x95\x9f\x7a\x76\x60\x09\ +\xbe\x08\x8c\x2c\x40\x08\xba\xc0\x28\x54\x0a\xe3\x28\x67\x4d\xb1\ +\x00\x29\x5a\x65\xe4\x56\xc6\xc5\x63\x97\xa1\xa8\x00\x10\x0e\xc0\ +\x05\x71\xcb\xf0\x01\x68\x01\x79\xeb\xf0\x64\xc2\x6e\xe9\x6e\x0d\ +\x3b\x66\xc1\xd8\xad\x78\x11\xec\x0b\xfa\x4a\xd5\x3a\xff\x95\x82\ +\xaf\x38\x24\x4c\x8c\x2f\xf2\x91\x54\x5a\x34\x07\x1e\x57\x7b\xe2\ +\x85\x46\x43\x55\x80\xdb\x98\x55\xcc\x5d\x83\xcb\x59\x1d\xd5\x97\ +\x9f\x07\x08\xa9\x29\x89\x3b\xfa\x66\xd8\xa1\x08\x3b\x10\x41\x59\ +\x1e\x57\x66\x12\xc8\xf9\x84\xe0\x54\xdf\x64\x66\x06\x95\x07\xaa\ +\x53\x62\x46\x8c\x3e\xc9\xd9\x57\x53\xec\xba\x74\xaf\x40\x60\x19\ +\x56\x7c\x0d\x4d\x17\xff\xbb\x53\xa2\x09\x0e\x1a\xf6\x05\xea\xc2\ +\x84\x05\xd7\xaa\x74\xcb\x5d\xe1\x99\xf8\x6e\x89\x8b\x2e\x09\xaf\ +\x1f\xe1\x89\x25\x8d\x95\xae\x58\xb6\x53\xd0\xf3\xcc\x6f\x31\xd1\ +\x2e\x74\x63\x77\x9c\x2c\x21\xcf\xe2\x6e\x3a\x9c\xd6\x4d\x5f\x38\ +\x07\x71\xa2\x86\xf4\xde\x71\xae\x95\xb5\xb5\xbc\xee\x7a\x6a\x3a\ +\x8b\x67\xff\xe8\xdf\xfc\x90\xac\xa3\x8c\xae\x52\x8b\x8b\xa3\xea\ +\x38\x97\x4c\xb9\xc6\xed\x85\x9a\xd9\x98\x5e\xda\xf6\x14\x0a\x89\ +\x48\xdb\x52\x58\x31\x61\x2b\xf1\x94\x2b\x9b\xd0\x8d\x5b\xc9\x6b\ +\x3c\x2f\xc6\xe0\x3e\x94\x9c\x18\x33\xa8\x2a\xe5\xc2\xc6\x62\xdc\ +\x07\x66\x42\x8a\xfc\x41\x36\xac\x41\x02\x73\xe4\x80\x5b\xf2\x3e\ +\x34\x82\x73\xc2\xb3\xe4\x42\xeb\x08\x67\xda\xde\x7b\x8e\x8d\xa4\ +\x55\x36\xcd\x66\x5b\x06\x12\x6c\x86\x39\x1c\x2e\xa6\x2a\xe0\x21\ +\xaa\x94\x90\x24\x73\x66\x3e\x0f\xbf\x23\x01\xe3\x93\x25\xcb\xf4\ +\x0c\x99\x81\xe3\x81\xb0\x73\x8b\x32\xff\x36\x8b\x9c\x8b\xec\x1c\ +\x9f\xb7\x6c\xe0\x8f\x96\x79\xf9\xfe\x58\x63\x37\xc7\x57\x1c\x8c\ +\xa4\xf5\xe3\x04\xd4\x42\xdb\xc6\x5d\x32\x8d\x74\xc2\xb7\xe2\xb7\ +\xc5\xff\x0d\xf1\xc7\x0d\x65\x8b\x5b\x70\x6d\xdb\x68\x66\xbd\xb3\ +\x9f\x7e\x2c\x9e\x56\xda\x84\xbe\xc1\x83\x41\xfe\x82\x64\x30\x08\ +\x07\x8c\x7b\x7a\x20\xd6\x6f\x75\xca\x1a\x37\xd2\xb0\x59\x03\xcb\ +\x8f\xd6\x0e\xcc\xef\x13\x84\x21\xcc\x15\x5c\x11\xb5\x54\xd6\xc8\ +\xb2\xa4\xc3\x24\x14\xc3\xb6\x5a\x9f\xd3\x81\x3a\x88\x4d\x24\x69\ +\x3b\x7e\xaa\x76\x1c\x19\xd0\x91\x64\xe0\x36\x10\xd8\xc2\xe3\xb6\ +\x49\x56\x52\x57\x6f\xde\xa3\xb6\x0d\x7d\xf9\xe8\xb3\x4b\x66\x4f\ +\x4f\xbf\xa9\xe7\xed\x11\xf8\xcc\x8f\x0c\x19\x1e\x2d\x77\x70\x71\ +\x50\x5e\x4e\xc2\x86\x31\x30\x66\xad\xf3\x4c\x04\xa5\x84\xad\xe4\ +\x6c\xf8\xdc\x08\x54\xc0\x74\x18\xa3\x3e\x66\xfb\x49\xb9\x74\x2c\ +\x4c\x67\x38\x16\x10\x80\x36\xb4\xf5\x6c\x6d\x8b\xee\xd1\x5f\x5d\ +\x2d\x6f\x67\xfc\x20\x45\x02\x30\x66\x2b\x4e\xab\xce\x63\x09\xa6\ +\xb2\xaa\xe6\xde\xfc\x84\x3e\x09\xda\x04\x3c\xc3\x84\x43\x5a\xb0\ +\x06\x69\x93\x28\x83\x06\x76\x22\x18\x86\xea\xc4\x1d\x91\x19\x19\ +\x11\xf4\x50\xad\x1b\x44\x37\x09\x97\x34\x2d\x96\x99\x68\x01\x2a\ +\xf3\x6d\x7d\x69\xd3\x09\x86\xa7\x9e\xe6\x86\x16\xdd\x21\x6d\xcc\ +\x98\x5c\x9c\x70\x31\x29\xd8\x26\xaa\x14\x74\x25\x46\x5d\xd7\xeb\ +\xc0\x2b\x09\x07\x58\x44\x36\x03\xe4\xe3\xc8\xbd\x82\xf3\x69\xc8\ +\x8d\x79\x81\x06\xb0\xc0\x18\x7c\x7b\x8a\x44\xf8\x1a\x3d\x33\xe6\ +\x82\xa6\x19\xd5\x4e\xf9\x4f\x9d\xe2\xd4\xb8\x29\x4e\xfd\x4f\x9d\ +\x62\x55\xdc\x14\xab\x12\x4e\x71\x0d\xc8\x0f\x07\xd4\x88\xcb\xa9\ +\x91\x96\x3b\x8f\xf2\xd2\x49\x11\x7b\x2c\x71\x77\x83\x91\x90\x10\ +\x90\xac\x40\xc4\xe6\x8c\x44\x89\xe9\x24\x8c\xe7\x08\xd5\x45\xbf\ +\x5d\x4c\x44\x50\x50\x43\xc3\xb4\xc8\x3d\x4c\x46\x68\x2e\x97\x46\ +\x63\xf0\xd3\x01\xc5\x7b\x3c\xb3\x6f\xd4\xc8\x8c\xb1\x40\xa5\x99\ +\xd3\x26\xed\x92\x36\xa1\xd3\x9a\x6e\x9a\x87\x03\xe9\x0b\xc4\x75\ +\x52\x3f\xd3\x48\x58\xbe\x9c\x36\x34\xb3\x50\xb4\x1d\xaa\xec\x3c\ +\xdb\xee\x4e\xb8\xf4\xfb\x43\x01\xdb\xa4\x0b\x37\x11\x64\x83\x2c\ +\xc5\x25\x16\x90\x2b\x28\xf7\x58\x3c\x60\x98\xe7\x8b\xa2\x28\x49\ +\xa3\x56\xd9\xa5\x88\x64\xca\x4b\x4b\xa6\x83\x18\x1f\x2d\x43\x15\ +\xd0\x62\xd9\xd6\x52\x0b\x5c\xca\xac\x96\x06\x51\x34\x06\x18\x4a\ +\x1b\x23\xa6\x65\xb1\x62\x2f\x5a\x1b\xad\x2d\x89\xc3\x55\x42\x54\ +\xcd\x08\x14\x30\xab\x8c\xd3\xc8\xea\x0f\x13\x73\x4d\x78\xa4\x53\ +\x23\x23\x25\x65\x8e\xf0\x48\xab\x22\x23\x25\xe5\x81\x75\xa0\x45\ +\x45\x25\xba\x30\x49\x65\xf1\x30\x33\x17\x82\x62\x34\xae\xb2\x5d\ +\x2d\x0c\x39\xb2\x0f\xcb\xd0\x0b\x7a\xb1\x88\x78\x46\x4b\x15\x8b\ +\xd4\x13\x82\xd4\xe1\x83\x24\x40\x90\xbe\xa7\x86\xc5\x81\x52\x30\ +\xce\x94\x93\xd1\xed\x06\x03\xce\x48\x38\x0b\xd5\xcc\xaa\x95\xa3\ +\xce\x11\x54\xb3\xad\x7d\xc2\x64\x99\x86\xb2\x9d\xc3\x6d\x93\x48\ +\xe8\x4d\xe6\x56\xd4\xe0\x57\x62\xd4\x94\x19\x95\xc7\x64\x1d\x25\ +\xfa\x3a\x33\x10\x90\xc3\xb3\x01\x09\x67\xe9\x2a\x3b\x8b\x7a\x1c\ +\x84\x0b\x00\x19\xc2\x0c\xcc\x87\x49\x16\x8d\xb2\x65\xc2\x49\xe7\ +\x2a\xb6\xb0\x9a\x34\x50\xa3\x4d\xed\xcc\xfe\xe4\x79\x00\x66\x93\ +\x27\x18\x7a\x45\x60\xe8\x22\x77\xa1\xfd\x94\x8c\x2f\x8c\xe2\xe2\ +\xfd\x47\xf2\x29\x8b\x3a\x8d\x5a\x79\x8e\x99\x51\xc3\xfb\x09\x26\ +\x5f\x02\x8a\x61\x3b\x50\xb4\x0c\xf6\xeb\x5c\x85\x44\x6c\x31\xb9\ +\x75\xfd\xdb\x07\x68\xb0\xb0\xa0\x83\xbb\x57\xa4\xf8\x4c\x3a\xdb\ +\x1c\x2c\x19\x66\xf1\x01\xba\xcc\x6c\x84\x2c\x5a\xfb\x8d\x9c\x0e\ +\xc6\xfb\xb4\x28\x62\x53\x64\x58\x5a\xfa\xb0\x0b\x25\x83\x70\x1e\ +\x3c\x1e\x18\x31\x02\x21\xc4\x68\xc1\xac\xba\xa1\xc7\x0b\x60\x46\ +\x0d\x73\x64\xd4\xc3\x00\xa9\x67\xec\xa6\xc9\x3a\x30\xba\xfd\x7a\ +\xd5\xa4\xab\x5f\x14\x01\x33\x56\x5c\xc9\x78\x80\x98\x7e\xba\x22\ +\x4a\x8b\x4c\x54\xe0\x66\x27\xb3\x0d\xc6\x64\xcd\x8a\x98\xc2\x33\ +\x0a\xc5\x3c\xa5\x24\x2c\x4b\x4c\x38\x4f\x67\xcc\x82\x3c\x6e\xfc\ +\x18\xbe\xd8\xf2\xd4\x10\x87\x9c\x6f\x37\xc5\xa7\x95\x74\xaa\x8e\ +\x32\x53\xd1\x2d\xe5\x9b\x2d\xe3\xab\x81\x49\xd8\xde\xfd\x1d\x5b\ +\x14\x93\x58\xf5\xa7\x3a\x5c\x4c\x15\xc8\x92\x26\x9c\xac\x1b\xac\ +\x9c\x03\xdc\x72\x59\x84\xb4\x60\xf0\x69\xa9\xf7\xbc\x05\x55\x9a\ +\xc2\x95\xd2\xd3\xf1\x6b\x93\x5d\x6d\x91\xb6\xc1\x00\x7f\x1d\x8f\ +\xb9\xd8\x13\x9a\x2b\x4e\x3b\x25\x98\x7e\x35\x4c\xc1\x4c\x55\xd3\ +\xa7\x7e\xb6\x63\xe3\x18\x16\x92\xe1\xfa\x4a\x3c\x32\x57\x01\xa6\ +\xe8\x18\x19\x93\xfe\xa8\xe5\x8d\x71\x23\xa9\x43\xd0\x26\x6b\xa1\ +\x02\xf6\x4b\x5d\xbf\xed\x25\x36\x5e\x82\x83\x9c\x1a\x1c\x24\xa9\ +\xdd\x12\x1c\x64\x55\x70\x90\xa4\x26\xcb\x0a\xf0\x56\x85\xd6\xf6\ +\x19\x20\x36\xa3\x15\x2d\x83\x9e\xc5\x22\xd1\xa6\x05\xae\x2b\x35\ +\xa2\xfd\xd4\x40\x22\x53\x69\x2d\x70\x43\xd0\x5a\xd5\xd0\xf0\x5f\ +\x1a\xf2\x2d\x85\x21\x55\xe4\xa5\x55\x39\xc2\xaa\xa2\xb5\x50\x42\ +\x61\xe1\xda\xdd\xd4\x1c\xd5\xc0\xa2\x17\xae\x23\x18\xf8\xb4\xa4\ +\x8b\xc1\x66\xb8\xc9\x95\xdc\x9c\x00\x74\x4c\x40\xd1\xa8\x9a\x8c\ +\x39\xb4\xf0\xd9\x86\xa6\x41\xc2\xcb\x41\x73\x4d\xc6\xfa\xcf\x62\ +\x8d\x6e\x90\x9d\xa5\x39\x30\x60\x2a\x15\x19\xe9\x49\x2d\xcb\x18\ +\x79\x5a\xc1\x8a\x3c\x4c\xb1\xdf\xaf\xfe\x90\x46\x81\xc9\xad\x93\ +\xfd\xf8\x8c\x30\xdd\xd4\xf0\xf5\xec\xb3\x0d\xcb\x70\xf4\x3c\x4f\ +\x3d\x88\x09\x12\x5b\x40\xd1\xd9\xa7\x9e\x73\x86\x98\xd3\x9d\xee\ +\x6c\x67\xa3\xe3\x94\xe6\x46\x41\xb0\x3a\xa8\x5c\x92\x6b\xc6\xd9\ +\x79\x3b\x0d\x93\xd1\xd2\x9e\xe9\x90\xf1\x3c\x32\xa8\x64\xa0\xa8\ +\xe7\x3b\x8e\xeb\xa2\x15\x52\x72\xfb\x5a\x68\x52\x49\x73\x8b\x7a\ +\x86\x17\xfc\x27\x5c\x87\xb0\x0e\x05\x7b\x50\x69\x2e\x52\x2e\xa6\ +\xea\x22\xca\x2a\x01\xac\xbc\xd1\xf2\xfa\xa4\xe1\xf0\x40\x2d\xf3\ +\xe3\x92\xcd\x5a\x35\x13\x18\x73\x3f\x0f\x43\xb3\x78\x1f\x73\x5e\ +\x45\xc8\x46\xd6\xb8\xe9\x48\xaa\x74\x7e\xd5\xdb\x31\x71\x87\x0d\ +\x50\x72\x07\x94\x60\x33\x0b\x8a\x2d\x65\xee\x06\x11\x47\x3e\x2a\ +\xbd\xb1\x1a\x2d\x4b\xcf\x37\xea\xce\x20\x2c\xd4\xce\x4e\x33\x99\ +\x44\xd6\xcf\xa8\x63\x09\x98\xf3\xfc\x80\x34\x73\x80\xd5\x93\x1c\ +\x51\xa5\x3c\x8e\xeb\x55\x45\x5f\xc1\x0f\xdd\x39\x01\x5f\xec\xfa\ +\x75\x86\x63\xa0\xb7\x9c\xd1\x2d\xd8\x4d\xd0\x1e\xb9\x49\x3c\x09\ +\x44\x0b\x6d\x6c\x5a\x61\x04\x16\x02\x78\x36\x54\xb3\xd2\xa0\x1e\ +\x75\xa0\x5c\xf5\xcb\xd5\x45\x16\xe6\x3b\x83\xf2\x2f\x7c\x85\xc6\ +\x28\xb8\xdd\x60\x99\xd2\x21\xc1\xa5\xd6\xb3\x59\xe6\xe7\x61\xe0\ +\xdd\x03\xc3\x4d\x77\xb2\x9c\xed\xe0\xb1\xcc\xa8\xc6\x87\x48\xca\ +\x0e\x39\x40\xfc\x41\x2e\x5b\xa6\x2e\x41\xd1\xe2\x8b\x50\x88\x5a\ +\xcf\xc0\x88\x61\x9c\x9f\x0d\x0a\x97\xa9\xcc\x5f\x67\x66\x8d\x98\ +\x2a\x15\x0d\xbe\x00\xbd\x5f\x72\x93\x72\x56\x87\x0f\xb8\x38\x93\ +\x23\xed\x9a\x34\x4e\x2e\xa9\x7e\x96\x32\x29\x35\x6d\xd2\x86\x95\ +\x49\x6a\x7d\x3a\x18\x1a\x8b\x1e\xdf\xed\x42\x94\x1d\x20\xb2\x3e\ +\x21\x58\xc0\xa6\x66\x9e\xd5\xc4\xc0\x24\x4f\x69\x69\x7e\x91\x73\ +\xf9\x9a\x9e\x13\xd6\xe7\xb4\x0c\x8d\xc5\x18\xd9\x2e\x20\xa4\x11\ +\x2a\x25\x26\xa8\xa4\xa7\xee\x3e\xe0\x6c\x62\xd4\xb0\x30\x21\x95\ +\x5c\x6c\xbc\x35\xcd\xe5\xe4\x90\xc8\xa9\x59\xc5\x42\x13\x72\x29\ +\x8c\x12\x5c\xf8\x3f\x73\xe8\xd4\x8c\x91\x5a\x70\x68\xa1\x46\x16\ +\x09\x82\x68\xce\x57\x65\x40\xb5\x32\x82\x66\x58\x7a\x79\x19\xb1\ +\xc6\x4f\x02\x75\x11\x91\x1d\x14\xa5\x21\x22\xe9\xa0\xfb\xa2\x87\ +\x32\x26\x43\x6d\xb8\x87\x82\xa1\xa2\x33\xe7\x18\x46\x46\xe7\xf8\ +\xa4\xe5\x7f\xc0\x54\xbb\x30\xbd\x92\x81\xff\x67\x80\x60\xe4\x29\ +\x58\x26\x28\x31\x73\xd5\xad\xad\x31\x26\x74\xc7\xe8\x62\xe1\x31\ +\xca\x96\x9e\x3e\x66\xd0\xca\xc2\x51\x60\x67\xde\x99\x21\xc1\x46\ +\xbc\x3d\xcd\x8d\x60\x14\x12\xa4\x2b\x71\xd0\x41\x0d\xc1\x8b\xa4\ +\xb5\xa0\x35\x76\xae\xd3\xe3\xe6\x90\x1c\x29\x86\x5f\x38\x02\xf7\ +\x73\x26\x16\xc1\xfa\x2e\x22\x6a\xc2\x74\xdc\x70\x56\xd3\xcb\xe6\ +\x10\x63\x4a\x2d\x20\x18\x3f\xc8\x0d\xa1\x1a\x1e\x7f\x4b\x26\xd5\ +\x2d\x51\xea\x2f\x24\xa5\xb3\xa0\x3f\x88\xbe\x71\xb0\xc5\x69\x98\ +\x1f\x89\x5e\x3e\xea\xf3\xb3\x06\xdb\xc1\x0e\x4f\x74\x6b\x9b\xe1\ +\xef\xce\x84\xe9\x1a\x9a\x6d\xe5\x27\xd9\x2b\x25\x3c\x28\xa5\x8b\ +\x72\xa0\x84\xdb\x74\x6f\x99\x6d\x8a\xdf\x24\x29\x43\xcb\x49\x50\ +\x23\x20\x0e\xc6\x79\x72\xc6\xf5\x37\x8e\xe5\xab\x47\xf8\x99\x87\ +\xf2\x88\x8d\xd6\x9b\xf4\x87\x51\x39\xa4\x8a\x57\x44\x66\xda\xc0\ +\x44\x8f\x85\x08\x01\x9f\xc6\x41\x6d\x05\x32\x17\x45\x71\x31\xb9\ +\x14\x79\x9a\x63\x45\xe5\x45\x19\xc8\x4c\x42\xce\xe5\x0a\x96\x2b\ +\xab\x7d\x11\xf2\x97\x18\x34\x22\x5e\x82\xab\x8c\xc2\xfc\x85\xb0\ +\x67\x20\x3d\x94\x77\xaf\xcf\xf1\x30\xb7\xab\x08\x5a\xc5\x94\x56\ +\x94\x33\xa6\x01\x7c\x3c\x1a\xbb\x79\x6c\x1b\x7c\x88\x93\xb2\xbe\ +\x1b\x91\xd4\x8e\x9a\xad\x20\x50\xd8\xbc\xfb\xb9\xdd\x36\xa6\xe4\ +\x49\xb2\x65\xd0\x57\xc1\x66\x0d\x10\x58\x5a\x41\x21\x43\xcd\x41\ +\x4e\x9a\xd1\xba\x3a\x2f\x86\xd3\xa3\xb3\x06\x2b\xf1\xd4\x2c\x8d\ +\x2a\x85\x5c\x2e\x61\x3c\x22\x72\x3d\xec\x94\x39\x4d\x66\x24\xb1\ +\xb7\xed\xb8\x8d\xf1\x8d\x6f\x7f\x17\xc6\x8c\xa2\x07\x4c\xef\xd8\ +\xae\x2b\xf8\xba\x4b\xb3\x7d\xe6\x17\x95\x7f\x01\x51\x02\x56\x93\ +\x43\x9d\x52\xcd\xb2\x97\x4e\xd7\x9c\xdf\x43\xd6\x03\x15\x69\x18\ +\xa5\x61\x7d\x3e\xd8\xff\x33\x78\x2a\x99\x05\x8a\xb2\x88\xc6\x51\ +\x44\x0c\xfb\x9e\x3e\x31\xe1\xeb\xb8\x34\x72\x78\x26\x94\x4c\xcf\ +\xfa\x28\xb2\x09\xab\xb0\x29\x60\x78\xc6\xe0\xef\x3a\x01\xba\x3d\ +\x33\x0e\x3d\x68\xff\x29\x24\xca\x2b\x2f\x80\x46\x95\x73\xcf\x4c\ +\x8b\x25\xa4\xd2\x79\x7f\x37\x9b\x47\x53\x4e\xcc\x00\x08\xc6\x2f\ +\xa5\x49\x71\x20\xd6\x0a\x0f\x17\xc5\x2d\xf5\xdf\x77\xb9\x40\xc8\ +\xa3\x00\xe9\xe2\xb4\x26\x3d\xc7\x68\xa9\xa6\x30\x11\xe4\x5b\xc1\ +\xd3\x0f\x6c\xeb\x84\x07\xc5\xc2\xc9\x4b\x91\xda\xc7\x40\x14\xc7\ +\x15\x3a\x5d\x1c\xb7\x19\x32\xf7\x85\x11\x56\xdc\x93\x11\xc3\x8b\ +\xb3\xdb\x31\xae\xe7\x9a\xef\x03\x9b\xc2\xb4\x5c\xcf\x00\xa3\x84\ +\x97\x1d\xd1\x2f\xe9\x0f\x93\xb0\xb7\xe3\x06\xa5\x59\xd4\x7b\xdb\ +\x07\xb4\xac\x9d\x29\x89\x92\xaa\x04\x74\xfb\xf3\xbf\x53\xdc\x44\ +\x6b\x96\xe2\x34\x98\x40\x63\xb0\xc2\xa8\x4c\xec\x82\xdb\x77\xe5\ +\x85\x8d\x38\xd7\x51\x7e\x1e\x51\x3d\x85\x36\xa3\xbf\x1d\xb9\xb8\ +\xed\x90\x87\x55\xa4\xf5\x0c\x92\x9b\xd7\x20\xc1\x4f\x3c\x60\xa2\ +\x98\x0e\x5d\x0c\xf3\xa1\x37\xfc\x9a\xda\x84\x98\xff\xe1\xdf\xcd\ +\x42\xd2\xa6\x90\xde\x96\x10\xa6\x2a\xeb\x94\x88\xa8\xb7\xd4\x09\ +\xcb\xaa\x85\x2b\xc9\x64\x5e\x38\xe7\x6b\xd4\xfd\xdc\x89\x17\x6a\ +\x23\x98\x63\xd6\x71\x1e\xdd\x67\xa4\x31\xfe\x8d\x1a\x32\x1d\x8d\ +\xc3\xb7\xb0\x27\x18\xfa\x2c\x1b\x4c\xe9\x4c\xa6\x04\x18\x1c\xa1\ +\x15\x89\x5e\xf0\xf0\x50\xc1\xa6\xe5\x39\xa3\x3a\x23\x6f\xd3\xca\ +\x9a\x19\x9d\xb2\x8e\x55\x2a\xa4\x69\xa3\x86\x9c\x66\x64\x47\x12\ +\xc7\xe6\x7e\x77\x08\x18\x57\xa9\x4b\xe2\xb6\xb2\xa1\x2c\xe8\x57\ +\xd8\x65\x69\xae\xf0\x54\x5f\x58\x50\xaa\xb4\x76\xd8\x98\x41\xeb\ +\x90\xc2\x37\x4e\x44\x3d\x1a\xb3\x7c\x5c\x2e\x80\x68\x79\x0a\x4b\ +\xee\xc4\xc1\xd1\x1d\x30\xa4\x23\xbb\x10\x67\x25\x4f\xd8\xd6\xf1\ +\x1e\x27\xe8\x6e\xed\x5c\xd7\xc8\x95\xf2\xb4\x98\x34\x63\x30\xc3\ +\x27\xa7\xbc\x45\x8d\x47\x97\x56\x42\xc0\x9f\x5c\x5b\xc8\x9f\x5e\ +\x07\x87\xe1\x03\x26\xf5\x77\x7e\x93\x58\x75\x4e\xe0\x37\xb2\x05\ +\xd7\xa4\x28\xe8\xc2\xe7\x47\x31\x86\xc6\x48\x9f\xa9\xc6\x2c\x8e\ +\xa9\xc6\x7f\xc4\x48\x1e\x8e\x34\x19\xa3\x7e\x99\xa3\xca\x8c\x69\ +\x83\xe7\x45\x18\x34\x34\x62\xe5\xf2\xef\x7c\xc5\xcb\x7f\x66\xf3\ +\xb0\x51\x99\x0a\x77\x78\xce\xc1\x53\x61\xf1\x37\xa5\x14\xb7\x29\ +\xe8\x8c\x50\x7b\x11\x8b\xf1\x99\x64\xd7\x79\x63\x39\x0c\xfb\xf0\ +\x9d\x9b\xf4\x15\xb9\x63\x58\x59\xc3\x61\x72\x2a\x50\x45\xe9\x1f\ +\xbd\xcb\xd8\x0e\x8d\x31\x69\xd3\x48\xab\x55\xad\x0e\xf0\x89\xac\ +\x49\x99\x9e\x74\x12\xfe\x89\x6a\xfc\xc5\x55\x41\xaa\x5e\x7e\xb4\ +\xed\x90\x1a\x3f\x28\xa0\xb9\x2a\x64\x95\x1a\x64\x94\xfc\x48\x79\ +\x6f\xb3\xef\x27\x50\x5e\xab\x0c\x9f\xc1\xf5\x8e\x1b\x0a\xc6\xa8\ +\xf0\x05\x5d\x59\x0f\xb5\x62\x86\x63\x40\xd4\x16\x8b\x8a\x4f\xc9\ +\x77\x1f\x8a\xdb\x62\xac\x98\x51\x4d\x4e\x5e\xb2\xe6\xb7\x45\xf2\ +\xc5\x1f\x8d\x19\x88\x08\x4e\xb7\x06\x63\x81\xa8\x54\xde\x4f\x4b\ +\xcf\x4c\xf1\x64\x8b\xb0\xf7\xe8\xcc\xd2\xaa\xcf\xa4\xfc\xa7\x01\ +\xff\x85\x6d\x31\x5a\x20\x14\x8d\x11\xb7\xad\x47\xdb\x45\x5b\x32\ +\x9d\xc8\x30\x59\x14\x3b\xfe\x66\x40\x59\x2f\x51\x6a\xb8\x64\x44\ +\x9d\xcf\xb2\xb9\xaf\x97\xd5\x5a\x25\x9c\xe7\xac\xc0\x3c\xaa\xa1\ +\xcd\x7a\x5f\x95\x7c\x13\xc3\xe4\x9c\xab\xfb\xfc\x1b\x34\xa2\x35\ +\x0e\x01\x8b\x9b\xa6\xed\x12\x35\xca\x68\xc7\x47\xae\xe6\x93\x42\ +\xb4\x30\x76\xe5\x54\xdc\x4f\x22\x3c\x41\x75\x29\xb0\x9b\xd7\x61\ +\x97\x13\x17\x36\xcc\x8b\x9d\x23\xdc\x2c\xb2\x85\x8f\x3d\x9d\xbc\ +\xe9\x59\xb1\x23\x1f\x4a\x7d\xc1\x51\x7c\xf6\xbf\xab\xa6\x20\x0a\ +\xcc\xb2\x68\x26\x50\xd6\x57\xb0\x29\x97\xb1\x64\x5b\xe2\x22\x91\ +\xf5\xc2\x88\xe1\x5a\xa6\x6c\xde\x58\xe6\x4d\xd6\x5b\x58\x8e\x9b\ +\x3f\xc4\xac\xf0\x31\x81\x83\x01\xe5\x0f\x2a\xb7\xd2\xb2\x7a\xff\ +\x48\x72\xe2\x54\xd0\x56\x9e\xa1\x15\x1b\xd6\x09\x4b\x1c\x02\xe6\ +\x8b\x5a\xdd\xb2\x9e\xf6\xb0\x0d\x06\xa8\xf8\xce\xf5\x43\x9b\x7d\ +\x87\x24\x69\xd5\x6c\x07\x59\x87\xc7\x63\xe8\xa1\x9c\xe0\x31\x03\ +\x3f\x88\x25\xf9\x7c\x23\xad\xe5\x62\xba\x8e\x86\x9c\x92\x2e\xea\ +\xfe\xb2\x73\x84\x03\x49\x6a\x23\x2b\x91\xd1\xd9\xc5\xcb\x1a\x99\ +\xdc\x11\xa6\xda\x08\xf7\xef\x98\xa0\x1f\x85\xb1\x99\xaa\x3b\x40\ +\x44\xdb\x25\x16\x5d\xb5\x49\xb4\xae\x7d\x34\x16\x1a\xa9\x08\xde\ +\x4d\xd7\xc9\x96\x29\x44\x37\x3b\x4a\x02\xda\x01\xb4\x02\xd8\x5a\ +\x43\x3c\x23\x34\x4a\xd3\x44\xf4\x94\x70\x41\xb7\x26\x35\xf7\xa2\ +\x92\x4e\x75\xb9\xa8\x82\x2f\x88\x61\x92\x0a\xf6\x85\x58\x5d\xba\ +\x9b\x68\x6a\xed\x3b\xfe\x16\xd7\xa1\x6e\xe6\x46\x7d\xb7\xc6\xca\ +\xdd\xb5\x21\x79\x2c\x27\x61\x7d\x07\x9d\xc7\xe4\xe5\x37\x49\xfd\ +\x83\x23\x60\x46\xb3\x50\x2a\x1c\xa2\x39\x7f\xce\xf4\xa6\x25\x6a\ +\x41\x42\xc8\x71\x92\x87\x7e\xca\x80\xc4\xeb\x56\xe9\xa9\x09\x93\ +\x59\x5c\xb4\x46\x6a\x9a\xb1\xd1\x14\x8a\x97\x91\x40\x88\xa0\x76\ +\x93\x9d\xb8\x8e\x46\xf3\xdf\xb7\x90\x93\x5d\x14\x19\x69\xde\x48\ +\x43\xad\x88\x6f\xa3\xa3\x6a\x9d\x39\xdd\xf5\x0c\xd7\x4b\xc8\xbc\ +\x55\xf3\x40\x9e\xca\x5c\x5d\x34\x18\x27\x7a\x29\x84\xcf\x20\x31\ +\xeb\x2a\x8d\x14\x16\x1f\x13\x50\x4f\xbe\xc5\x9f\xf6\x93\x76\x9b\ +\xea\x9d\xc5\x54\xe7\x4d\xdb\x0e\x65\xa5\x92\x2c\x2c\x59\x2e\x56\ +\x11\x1c\x4b\xb8\x20\x6a\xa8\x48\xb2\xf3\x07\x37\xe1\xd9\xb8\xfc\ +\x64\x17\xcf\x4c\xd2\x50\xa1\x62\xba\x75\x71\xbb\xbb\x48\x0d\x06\ +\x1a\xd8\x11\xa7\xa0\xd0\x8a\x43\x8b\x90\x15\x13\x46\x1c\x32\x6c\ +\x29\x12\x88\x47\xa4\x95\x33\x54\x3c\x02\x94\x94\xf9\x3b\x7d\x0b\ +\x4b\x2d\x78\xac\x58\xee\x48\x0d\xae\x43\x2a\x77\x3c\x0d\xe6\x72\ +\xd0\x5c\x67\x87\x39\xd8\x61\x32\x51\xcf\x2c\x6c\x84\x4a\x25\x80\ +\xf3\x36\x3b\xe6\x88\x69\x61\x1d\x05\xad\x24\xa6\x36\xc2\x74\xab\ +\x01\xe7\x82\x01\xae\x83\x35\x47\x59\x23\xc7\x25\x35\xc5\xc0\x46\ +\x85\x31\x5a\x07\xf5\x09\xe0\x0b\x98\xa1\xaf\x77\x63\x52\xa5\xb6\ +\x12\xdb\x16\xc9\x0c\x4b\x9c\xf3\x29\x9d\xc0\xa8\xb3\x77\xd4\x20\ +\xba\x69\x8a\x6b\x87\xee\xd9\x74\xd6\x96\x02\x9d\x77\x90\x05\x71\ +\x64\xb5\xd6\xe0\x34\x0a\xfe\x96\x28\xa5\x14\x89\xeb\x5f\xb1\x14\ +\xe1\x50\x08\x22\x8b\x1a\x47\xa6\x02\xa3\x27\x66\x13\x91\x07\x51\ +\x93\x12\x2e\x62\x3a\xce\xbc\x5c\x3e\x44\x3d\x65\x71\x90\x35\x86\ +\x80\x44\x22\xc0\xa5\xde\x51\xf2\x55\x9c\x15\x69\xca\x13\x96\x22\ +\xc1\xea\x86\x88\xc4\x94\xb5\x0d\xbc\xcb\x4c\x80\xc3\x03\xd2\x23\ +\x71\xf1\xdb\x74\x7b\x83\x94\x29\xcc\x90\x4a\x18\xdb\x92\xf0\xf2\ +\xac\x50\x73\x90\x44\xba\x5f\x3d\x46\x16\xd7\x99\x87\xf5\x66\xe5\ +\xfe\xb2\x2c\xa7\xc4\x69\xb7\xf1\x6a\x52\x6c\x82\xa3\xd1\x46\xab\ +\x60\x0f\x4d\xa3\xc6\xba\xf2\x89\xaa\x86\xa1\x69\x9d\xa6\x2a\x37\ +\xe0\xa9\xe1\x01\x93\x96\x59\xce\x21\x53\x9d\x96\xe2\x03\x26\x2d\ +\xb9\x9c\xa9\x1c\xb0\x0b\x17\x94\xa7\x70\xf3\xa6\x53\x4d\x3e\x37\ +\x64\x3f\xc5\xa5\x8e\x5b\x70\xd4\x02\x33\x8a\x0e\x01\xca\xf0\x21\ +\x8e\xc6\x21\x7e\x14\x2f\xf1\x29\x45\x39\x16\x55\xea\xac\x08\xc4\ +\x08\xad\xda\xa1\xad\xc9\x13\x97\x35\xf9\x25\x99\x84\xb5\x8a\x94\ +\x47\x2f\x45\x95\x99\x46\x58\xb2\x6d\x82\xf3\x0c\x4b\xb5\x89\xd8\ +\xa3\x9a\x58\x96\x86\x91\x86\xa7\x1b\x0c\x1e\x71\x90\xe6\xc2\x49\ +\x58\xe7\x49\x0d\x49\x51\xd8\x45\x6d\xc9\x09\x87\x9e\x68\xc6\x98\ +\x0d\xcb\x17\xb3\x0a\x04\x76\xa2\x22\xa9\x8a\x97\x87\x9e\x4d\x94\ +\x42\x6e\xa0\x7d\x51\xe3\xb0\xee\x8e\x89\xce\x45\x89\xea\x79\xcb\ +\x9f\xc4\xc9\x03\xda\x85\xbf\x28\xce\x5f\xaa\x05\x6e\x47\x0f\xfb\ +\x9d\x67\x78\x4e\x1c\xb6\xd8\xcc\x99\x20\xdf\xc6\x8c\xa4\x7e\x9d\ +\xe6\x9f\xaf\x9d\x6a\xba\x59\x74\x3a\x9d\x9d\xba\x9d\xee\x2c\x97\ +\x4f\x7d\xac\x49\x91\x99\x42\xfd\x88\x7e\x34\x56\xc8\x14\xce\x02\ +\x2d\xe4\x14\x75\x16\x3e\x52\x1f\x7f\x4a\x4b\x8a\xc1\xde\x61\xb4\ +\x15\xc3\x87\xa7\xd8\x09\x0c\x20\x6b\x37\xaf\x23\x69\x64\x77\xe7\ +\xd8\x63\xbc\xe2\xc8\x57\x6d\x49\x75\xd9\xfb\xca\x1e\x95\x10\x89\ +\x4f\x91\x8f\x90\x79\x0b\x37\x12\xfb\x0c\x37\x2d\x64\xd6\xb3\xc5\ +\xbb\xe0\x96\xe9\x19\xed\x2f\xf6\x74\xba\xd8\x6c\xf8\x20\x06\xac\ +\x86\xd6\x99\x20\x2f\xb0\x46\x6b\xc8\x0a\xb0\x3e\x11\xfe\x9c\xd6\ +\x59\x8d\x8f\xa0\x3f\xaf\xfa\x80\x59\x1e\xc3\x29\xf0\xef\x44\x06\ +\x57\x04\x88\xc5\xe9\x51\xaa\xbe\x6d\x44\x8d\xc9\x8d\x21\xdb\xaf\ +\xa0\x0d\x56\x8d\x76\x12\xb5\x31\xc3\x6e\x0c\x4d\x17\x09\x3b\x03\ +\x78\x12\xfc\x77\x3a\xfc\xb7\x1c\x1c\x92\xe5\xf0\xef\x44\xc5\xfa\ +\xdc\x48\x11\x20\x3d\xcb\x2c\x78\xfd\xe0\x49\xd0\x2d\x65\xa5\xf0\ +\xcc\xfe\xb5\x9d\xac\x69\xe1\xf9\x7e\xbb\x68\x38\x3a\x2b\xf5\x44\ +\x9b\xd5\xd8\xdd\xad\x9d\xa4\x9d\xae\x2d\xef\x5e\xbe\xfc\xc4\xa4\ +\xd6\xeb\x7d\x68\x16\x67\xd1\x2e\x09\x76\xca\x8b\x66\x0f\xd5\x82\ +\xd7\x22\x47\x1b\x45\x5a\xb4\x47\xf1\x10\x67\x08\xf5\x9d\xe5\xca\ +\xe8\xa6\xe2\xa9\x66\x89\xe9\xb3\xb3\x8b\xe8\xb3\x39\x85\x89\x12\ +\x34\x89\xa2\x4d\x14\x45\x8e\x9e\x35\x4b\x6e\xc0\xc5\xc6\x16\x06\ +\x34\x4c\x42\x03\x6d\xbc\xe3\xf0\x90\x81\x9d\xd4\x97\xb3\x86\x4e\ +\x36\xed\x33\xe4\xe9\x34\x5d\xd5\x69\x5a\x58\x24\x6b\x24\xc5\xd1\ +\xc2\x80\xca\x9a\x4a\xfc\x1c\x4e\x61\x14\x67\xca\xa7\x2b\x7f\x06\ +\x78\x13\x70\x5e\xe9\x4d\x44\xfb\x1b\x35\xa2\xa4\x16\x7c\x39\x81\ +\x2a\xf1\x68\xeb\xf1\x0e\x04\x86\x15\x88\xfb\xa1\x22\x43\xcf\x8c\ +\xb2\x52\x39\xd1\xd5\x60\x6a\xc8\xaa\xe7\x91\x7e\x12\x4e\x8c\x0a\ +\xf8\xa4\x5a\x88\x3f\xea\x61\x12\x71\x4c\x79\x8c\x88\x16\x2d\xe2\ +\x94\x00\x3b\xbe\x5f\xf2\x45\x4d\x7c\x94\x4e\x1a\x8f\x3a\xe9\x81\ +\xdf\xb7\x96\xb5\x67\xd5\x6a\xa6\xf8\xb1\x98\xf1\x29\x1a\xe0\xab\ +\x49\x56\xb5\x0b\x62\xd9\x93\x04\x44\xdc\x03\x26\x2f\x74\x10\xce\ +\x0c\x2b\x38\x88\x87\xac\x8b\x04\x53\x53\xbd\x7e\x9d\x24\xb3\x21\ +\x3c\xe5\x59\x37\xd1\x3a\x54\x61\x4c\xa1\x1f\x20\xac\xe4\x96\x7a\ +\xb5\xfd\xe4\x78\xc2\x6a\x85\x23\x26\x00\x71\xf1\x3f\x0f\xe5\x92\ +\xda\x56\x44\x62\xc1\x24\x32\x8d\x2f\x67\x70\x14\x99\x28\xaa\x3c\ +\xc3\xce\xd6\x77\x87\x79\x4e\x8b\x46\x2c\xce\x5d\xcf\xaa\xae\x4c\ +\x5a\x38\x68\x66\x46\x95\x0c\x31\x7c\x5f\xca\xf3\x7a\x2c\x9a\x12\ +\xee\xd1\x86\x79\xc1\xa1\xac\xd3\x02\x05\xc0\x93\xcb\xbc\xec\x9b\ +\xd3\x24\x1d\x8f\x5e\x75\x41\x4f\x7b\xa2\x86\xc0\x17\xbb\x78\x52\ +\xcc\x03\xbb\x26\x38\x0e\xd5\x1f\x74\xe6\x01\xc7\x30\xfa\x7a\xfb\ +\x35\x61\xf9\x68\xee\xa4\x0b\x7a\x06\xe5\x03\x9d\x85\xf6\xfc\x87\ +\x67\x1d\x26\x6d\xf5\xe9\x1c\xf9\xbd\x22\x86\x39\xc2\x11\x74\x69\ +\x04\xa8\x72\x36\xbe\x8a\x51\x04\xa5\x3d\x3f\x9f\x3f\x75\x8f\x40\ +\x35\x0a\xb5\x51\xdd\x86\xac\x7a\x96\x14\x57\x2b\x1b\xbe\x99\xa2\ +\x33\x11\xc7\x9e\x69\xf9\xdd\x0d\x31\x08\x45\xb1\x98\xd0\xe0\xac\ +\xfa\x7d\x0c\x12\x44\x03\x02\xb5\xd1\x52\x18\x31\x94\x53\x8a\x8a\ +\xe4\x08\xd6\x5e\x89\x13\x9b\x22\xb3\x34\x45\x56\x09\xd4\x4f\x8a\ +\xc3\x21\xcb\xbc\x65\x6d\xb3\xe0\xda\xf0\x9c\xae\x0f\xa9\xdc\x84\ +\x0e\xd9\xe3\x03\x7e\x66\x8d\x8e\xac\x18\xf8\x79\x36\x2d\xf0\xa6\ +\xcb\xd5\x19\x7b\xaf\x03\xa5\x84\x83\x5c\xd8\x01\xf0\xa9\x0d\x93\ +\x3a\x50\x02\xd2\x10\x68\x47\xa4\x99\x92\x20\x15\x0a\x99\xc9\x43\ +\x0d\x71\xd0\x75\x81\xe7\x4f\xdf\x1b\xc7\xf5\x99\x58\x74\xdf\xa5\ +\xc0\x10\x1e\x55\x18\x66\x62\xc5\xa2\xbc\x47\xae\x8f\xce\x96\x8a\ +\x9d\xab\x07\x1c\x01\x1b\x8b\xb4\x3a\x7c\x72\x7b\x2b\x8e\xdc\xe8\ +\xb1\x56\x3c\x5b\xee\x33\x98\x2c\x5b\x0b\xa7\xf9\xba\x53\xeb\xe5\ +\x51\x15\xe5\x4d\xb7\x04\x52\x43\x77\xb5\x0e\x6c\xad\xd2\x41\x0f\ +\x33\x88\xe1\x31\x57\x29\x1f\x70\xc1\x1a\x86\xbf\x77\x00\xff\x9a\ +\xb9\x8e\x14\xcc\xd8\x51\xb0\x2d\xbb\x03\x3b\x44\xc1\x90\x7a\xc1\ +\xcc\x4f\x86\xc6\xeb\x5a\x67\xe4\xc7\x0d\xcf\xcc\xe8\x5d\xf8\x3a\ +\x7b\x14\x27\xe6\x2d\x29\x70\x92\x54\xf0\xad\x9e\x35\x76\x3e\xdb\ +\x91\x50\x30\xe4\x13\x08\x86\xc8\x69\xfd\x10\x07\x94\x67\xfd\x72\ +\xd9\xc0\xd3\xe2\xf6\x43\x1e\xf6\xc7\x0d\x09\xb0\xf9\x34\x13\x87\ +\x37\x94\xb1\x05\x04\xaf\x89\x12\x3e\x06\x99\xed\xff\x4d\x9a\x7f\ +\x6a\x26\x5e\x0f\x34\x38\x52\x05\x62\x39\xbf\x29\xa8\xe9\xa4\xd8\ +\x3b\x5b\x5d\x37\x2c\x68\xd4\xce\x6a\x99\x51\x1b\x2b\x5f\xe8\x9a\ +\x59\x71\xa5\x38\x46\xc5\xa4\x20\x17\x8b\xe8\x37\x71\x0d\x91\x54\ +\xe0\xbd\x52\x01\x0d\x72\xe9\xe1\x96\x1d\x02\x41\xe5\xd0\xa1\xb2\ +\xea\x54\x0e\xa6\xe8\x5a\x10\x87\xb4\x0a\x08\x83\x6f\x52\x3c\x9f\ +\x22\x9e\x0e\xbb\xbb\x41\x68\xe5\xb9\x85\x02\xb7\x7e\x0d\x22\xfb\ +\xcf\xa8\xb7\x5c\x59\x15\xc6\x74\x7d\x07\xba\x72\xb5\x3e\x1b\xa5\ +\xdc\xda\x19\xfb\xa4\x89\xbc\xf9\x52\x1c\xd2\x8b\x6f\x33\x36\x4d\ +\xe7\x9b\x68\x3e\x39\xfd\x22\x31\x39\x85\xfc\x71\x5a\x69\x5b\x9e\ +\xba\xb4\xd4\xfa\x5c\xc8\xab\xc7\x5c\x0f\x0e\xcc\x8a\x78\x0a\x25\ +\xd7\xe3\xdf\xe0\xc9\x93\x48\x04\x40\x39\x5f\xa0\xcb\xa9\x6d\x7a\ +\xa8\x88\x9e\x75\xc1\xa3\x7f\x68\xfc\xf0\x62\xee\x32\xe1\x81\xee\ +\x54\x42\x8e\x7f\x2d\x96\xd4\xc3\xfa\xd7\x25\xb2\xfe\x83\x39\x73\ +\xaa\xad\x2d\x08\xcb\x2a\xfb\xbe\xf4\xb6\x05\xf1\x19\x3c\x8e\x26\ +\x6e\x13\x60\xce\x65\xb8\xce\x5b\x3c\xad\x16\x33\x74\x91\xb0\xcf\ +\xc1\x9e\x2a\x53\xe0\xe0\x6f\xfa\x1e\x75\xd3\x6d\xc7\x34\x2c\xd6\ +\x81\x5a\x54\x38\xfa\x4a\x4b\x54\x68\xb3\x63\x45\x74\xa7\xa4\x3e\ +\xc3\xda\x47\x8a\x77\xd0\x2d\xf9\x6e\x4d\xb4\x47\x80\x51\xf3\x46\ +\xce\xeb\xe2\xe6\x30\x9f\x44\xad\xa4\x48\x2a\x7a\x2a\x79\x63\xec\ +\xe4\xa9\x68\x77\x19\x1f\xb8\x61\xe2\x23\xe7\x3b\xee\x71\xa7\x5e\ +\xe3\x4e\x65\xb1\x90\xbd\xcd\x59\x95\xd9\x17\x74\x4f\xb6\xfa\x73\ +\xaa\xf6\x04\xf3\xa7\x98\xff\xa4\xfb\xa3\xa8\xe7\x17\xd5\x74\xae\ +\x0a\x77\xbc\xc7\xc3\x4e\xa5\xe8\x3c\x38\x10\x2c\xea\x96\x07\x07\ +\xa5\x3e\xb8\x58\xdd\xcb\x71\x3d\x5f\x32\xa8\x81\x9f\xa5\x07\xdd\ +\x73\x25\x2b\xa3\x1c\x93\x2d\x21\xa3\x79\x76\x1e\x0c\x7f\x2b\x63\ +\x74\xa7\xb6\xd2\xa7\x79\x2a\x0e\xbc\xf8\x9c\xe1\x18\x56\x06\xcb\ +\x2d\xf2\xf6\x04\xcb\xd3\xb2\x01\x45\x26\xd6\xc3\x16\x34\x58\x6b\ +\x49\x2f\x34\x48\x1a\xa5\x9d\x41\x86\x83\xe8\xf4\x81\x6f\x1a\x16\ +\xd0\x24\x4e\x28\x94\xf1\x8a\x65\x42\x61\x78\x5a\xd9\x9b\x01\xec\ +\x95\xa8\x73\x2f\x43\x27\x32\xd4\x2d\xc2\xde\xb2\x6a\x24\x83\xab\ +\xb0\xb9\x8c\xb5\x09\xcb\xf8\xeb\x81\x02\xc1\x05\xc3\x5c\x50\xd1\ +\x78\x1e\x8d\x70\x63\x35\x89\x7f\x21\x72\x1a\xfc\xbd\xb1\xc4\xc9\ +\xb7\x28\x68\x94\xe2\x64\x6e\xb7\xe8\xfb\xab\xac\xad\x08\x0b\x33\ +\x15\x79\x7d\x9d\x0c\x29\x69\x3e\x50\x59\x16\x46\x2b\x3a\xf4\x30\ +\xe7\x22\xd1\x97\x3a\x69\x90\xa8\x3f\x50\xd4\x5d\xde\xfd\x4b\x96\ +\xf1\x3e\xf6\x5c\x37\xec\xb8\x1d\x5a\xd2\x3b\x08\x54\x5c\xc3\xec\ +\x46\x3a\xd5\x08\xef\x96\x9d\x60\xcc\x9d\x53\x2c\x34\xb6\xf5\x0d\ +\x06\x55\x82\x87\x67\x62\x5a\x12\xc9\x4d\xa1\x30\xf9\xc7\x5d\xd0\ +\x1f\xc0\x33\x2d\x7e\xeb\xa1\x84\xb0\x0e\x8a\x4b\x01\x70\x66\xd3\ +\x8f\xd6\x49\x65\x24\xa0\x88\xaa\x9a\xa9\xca\x16\x17\x6e\xe5\xf2\ +\x5d\x95\xfb\x78\x26\x47\xd1\x1a\x09\xe1\xfc\x25\xd9\x56\x31\x81\ +\x24\x8c\xe3\x71\x5c\xc3\x04\xc0\xc3\xc2\x49\x3a\xe2\x59\x3a\xc9\ +\x71\xbc\x39\x81\x63\x8d\xe1\x53\xac\xe9\x83\x08\x62\x59\x2a\x97\ +\xe2\x88\x82\x79\xd2\x5c\x2c\x8b\x23\xc4\x06\x8a\x6f\x1d\x2f\x1b\ +\xc9\xe3\x0c\x93\x38\x1e\x0d\x88\x89\x40\x59\x70\xf6\x34\x1f\x95\ +\x3a\x37\xa2\xb8\x56\xca\x36\x77\x5b\x30\xb7\x45\xcd\x71\xbc\xa2\ +\xa3\x0b\xcc\x9c\x31\x16\xf4\x91\x22\x82\x06\x88\xc4\x51\x1a\xd3\ +\x62\x72\xa2\x0b\x69\x21\x6d\xd0\xa6\x05\x1a\x88\xde\xac\x9e\x36\ +\xf3\xa6\x37\xe9\x9f\x14\x61\xaf\xa7\xe1\x51\xea\xf8\x58\xd9\xa4\ +\x67\xd7\x76\x61\xca\x3a\x1b\xda\x08\xa1\x31\xd5\x7b\xaa\x83\x3d\ +\x20\x98\x29\x2e\xcb\x8c\xa8\x56\x1a\x0f\xe9\x2a\x71\x86\x4d\xbc\ +\x13\x2d\x15\xe9\xc6\x91\xe2\x75\x62\xd8\xc1\x08\x57\xb7\x89\xd6\ +\xe9\x61\x6f\x4b\x8d\x17\x87\x67\x0c\x37\xc4\x96\x85\x56\xcb\x03\ +\xc5\x5b\x51\xbd\x3b\x8a\x06\xb8\x1e\xc2\x89\x1a\x3f\x91\x1d\x0d\ +\x74\x3f\xbc\x15\x98\xcb\x27\x87\x6f\x86\xc8\x81\x5d\xfa\x8b\x65\ +\x75\x60\x4a\xf3\x53\x0d\xd4\xa4\x42\x4b\x97\xd6\x9c\x60\xc5\x93\ +\x2c\x99\xe9\xd6\x86\xa5\x46\x16\x06\x3b\xaf\xd5\xcb\x1b\xd6\x08\ +\x28\x71\x5a\xab\x47\xe3\xde\xdc\x8c\x13\xaf\x8a\x8e\xdd\x2e\xd6\ +\x5f\x2d\xc7\xb9\xd8\x71\x95\x89\x51\x9b\x06\x18\x58\xc9\x23\x1d\ +\x53\x2a\x78\x1a\x18\x70\x74\x6c\x86\xc6\x5f\x4f\xaa\xee\x67\x02\ +\x95\xec\x40\x3d\x35\x8c\xf9\xa3\xa2\xa2\x89\x1a\xb7\xef\xd0\x3a\ +\x87\xed\x62\x52\x8d\x43\xc7\xda\x89\x63\x0d\x10\xd6\x2b\x4f\x8e\ +\x95\xda\xbe\x53\xeb\x1c\x70\x40\x70\x26\x1f\x6d\x07\x1f\xcd\x45\ +\xfa\xd7\x95\xd1\x9a\x76\xc0\x68\x43\x66\x36\x71\xc6\xa4\x9e\x75\ +\xaf\xf7\x07\xa8\xd1\x13\xf7\x14\xfa\x6a\xa4\xe9\xe9\xd4\x25\x7f\ +\xe5\xda\xa1\x06\xe3\xe3\x42\x03\x2f\x2b\xe3\xfa\x05\x6f\x21\xab\ +\x7c\x10\x7f\xaa\xc6\x4a\x1b\x33\x65\x5a\xa1\xda\x7e\x38\x1a\xb5\ +\xfa\x32\x59\x85\x84\x37\x87\xd1\x3f\xf8\x9d\x4d\xdc\x69\xb6\x63\ +\x6a\x14\xe7\x4c\x64\xfd\x68\xc6\x73\x92\x96\x9a\x3f\xc9\x97\x14\ +\xed\x58\x20\x4e\xb9\x49\x17\x80\x55\xb1\x89\xf4\x44\xf0\xe6\xcc\ +\x12\x11\xc9\xaa\xf8\x9a\x1f\x83\x47\xb5\xcb\x69\xe4\xb2\xed\x4d\ +\x10\xe9\x31\x29\x57\x7f\xb5\x23\x66\xa0\xed\x09\xa0\x95\x16\x58\ +\xf2\x73\x81\x98\x25\x1c\x95\x85\x60\xc1\x0b\xbd\x54\x47\x8f\x69\ +\x1a\x40\x7e\xc9\x11\xe1\x71\xf4\xf1\xfd\x74\x6b\x42\x4d\x72\xda\ +\xdf\x7d\x84\x33\x98\x1c\x90\xb4\xa9\xde\xca\xa6\xf6\x6e\x0a\xb6\ +\x58\x11\x97\x20\xc4\xde\x39\xad\xb4\x01\x8e\x7a\xca\x62\x3c\xb5\ +\x84\xd8\xe1\xda\x62\x0c\xd7\x50\xe0\x11\xcb\x2c\xb7\xbd\xc5\xf6\ +\x89\x2c\x97\xb8\x98\x93\xf2\xa4\x7a\xd5\x34\xfb\x4e\x5c\xce\x2c\ +\xc3\x42\x07\x71\xcc\x03\x68\x50\xc8\x54\xea\x2d\x66\x85\x23\xb9\ +\x3e\xbf\xe0\xfd\x71\xbc\x33\x95\xf0\xc6\x68\x47\x16\x71\x80\x9d\ +\x85\x9d\xd7\xe0\xa1\x24\x90\xef\x25\xc7\x12\xb4\x20\xae\x9e\xc1\ +\x4a\x68\xa7\x4b\x4b\x97\x3c\x6a\x7f\xf0\x3f\x53\xd5\xe1\xba\xa0\ +\x35\x5c\x1a\x3a\x36\xb2\x26\xc6\x56\x12\x72\xd3\x75\xbe\x50\x3a\ +\xb4\x93\xd3\x45\xdf\x5a\xa3\x11\x30\xfa\x7c\x81\x64\x23\x24\x21\ +\x3b\x3e\x27\xeb\xd0\xbc\x3a\x0e\xa1\x45\x1d\x28\x1b\x93\xc4\xd1\ +\xfa\xe2\x43\x68\xc5\x7c\x79\x0c\xd9\xcb\xb3\xb1\xf1\x38\x28\xc7\ +\x00\xea\x71\xa2\x65\xf0\xad\x3c\xbe\xaf\x8e\x19\xb3\x7a\x7f\xc5\ +\x27\x2b\x2b\x06\x97\xdf\x2f\xa8\xa6\x4e\xc4\xb2\x02\x0f\xe1\xe0\ +\xd1\x56\x65\xb5\x09\x57\x5a\x0b\xb3\xca\xab\x6f\xaa\x8b\xbb\x13\ +\x97\xeb\xfa\xf7\x3a\xc8\x72\x5d\x77\xd4\xcc\x25\x15\xf4\x3d\x09\ +\x93\x8b\xb4\xf4\xa6\x5c\xcf\xdc\xf9\xf1\xa9\x41\x5a\x58\x33\xbd\ +\xde\xb9\xab\x2b\xb8\xba\xd1\x6a\x12\x17\x29\x39\x2d\x62\x1e\xb2\ +\x50\x21\x1e\x1c\xac\xa3\x70\x27\x0b\x69\x3b\x9f\x14\x9e\xfe\x08\ +\x3c\xe5\xaa\x87\x93\xa0\xe9\x38\x15\x2e\x45\x59\x1f\x12\xaa\x5a\ +\x60\xe3\x17\x11\x7e\xdd\x8a\x3f\x45\xfd\xa2\x3e\x7a\x38\x97\x8e\ +\x51\x97\x55\xec\xb1\x45\xe1\xfb\xce\xa4\x3d\xb6\x48\xdc\x40\x16\ +\x7a\x69\x06\xd0\xd5\x22\x12\x77\x69\x69\x1d\xbc\xc2\x6e\x17\x55\ +\x1e\x6f\x81\x87\xfd\x2b\x4b\x14\x78\x10\xe2\x98\x67\xdf\x45\xd8\ +\x75\x53\x4a\x44\x69\x11\xbb\x34\x3e\xf4\xb0\x86\x37\x03\xf4\xc1\ +\xbf\xa5\x4a\x7a\x54\xb9\x79\x5b\xb6\xc2\x5d\xb4\xb9\xaf\x6f\xa9\ +\xcb\xab\x20\x73\xae\x11\x9e\x77\x06\x0c\x35\xc8\x7d\x8d\x60\x01\ +\x7a\xd3\xa2\x41\x83\x46\xbd\xc7\xc3\x58\x68\xc1\x7b\x81\x16\xb1\ +\xeb\x5e\x14\x0c\xd0\x2b\x77\x62\x56\x35\xc8\x5d\x7c\xf5\xd1\x6d\ +\x66\x31\x3c\xea\x42\xa5\x64\x43\x56\xb3\x95\x6b\x50\x35\xab\x97\ +\xdd\xc7\xcd\x94\x8f\xd2\x3b\x4a\x19\xf1\x42\x65\xc4\xb8\x2b\x58\ +\x65\xa6\x65\xd4\x4f\xa7\xc9\xde\x0b\x1e\x6f\x50\x1b\xac\xbe\x5a\ +\x46\x2c\x9e\x70\x53\x33\x19\x27\xf5\xaa\xb7\x83\xb3\xf4\x02\x1e\ +\x20\x57\x5a\x28\x4c\xd8\xbc\x74\x6a\x99\x65\x67\x0d\x37\x15\x02\ +\x76\x3b\x18\xf4\xac\xfb\x61\xd0\x83\x55\x27\x2f\x7f\x9d\xba\x6a\ +\x14\x86\x2e\xee\x92\x41\x9f\xde\x6c\x96\x83\x20\x3a\x15\x0a\x63\ +\x4d\xde\x21\xae\x40\xd4\x46\x5e\x89\x3d\xa5\xd5\xd8\x0b\xfa\x0c\ +\xd4\x7c\x78\x03\xb5\xe0\xf3\x58\x0d\x63\x12\xd6\x96\x81\xe6\xb5\ +\x25\xba\x66\x88\x11\x34\xbc\x5e\xba\x27\x8c\x8b\x15\xb0\x71\x45\ +\xee\xf5\xca\x3a\xa2\x22\x6f\x09\x11\x7b\x65\x93\x3f\xf6\x91\xbd\ +\xc5\x62\x1e\xbb\xc6\xc5\x5d\x45\xaa\x4c\x32\x2b\x70\x7d\x40\x1a\ +\x8d\x23\x59\xd8\x55\xd3\xeb\x64\x22\xf8\x88\xbf\xc6\xa6\x41\xb9\ +\xbe\x46\x79\x7c\x18\xd8\x99\x95\x47\x48\x4d\x2a\x2b\x38\x03\xdc\ +\xaa\xc8\x4a\xd5\x9e\x51\x37\x92\x15\x54\x48\x14\x1e\xdb\x87\x97\ +\x77\x72\x9e\xe6\x07\x9b\x18\xf5\x79\x93\x45\x23\x8c\xd1\x19\x40\ +\x5f\x1a\xe2\x32\x7c\x0c\xb0\xb1\xcf\xa0\xe5\x38\xda\xf6\x08\x7a\ +\x9e\x41\x96\x63\xb8\x1f\x22\xa1\x13\xcd\x7d\xa3\xb4\xea\x5b\xb6\ +\xd1\x55\xde\xfc\x72\x45\x0f\x93\x99\x6d\xd1\xcb\xe5\x44\xff\xf9\ +\x4a\x8d\x6b\xa6\xee\x84\x25\xb9\xa2\x7c\x7b\x1a\xd1\xcc\xb0\xc0\ +\x19\x99\xf1\x13\xbd\x0a\x47\x7a\xe4\xef\x09\x5e\xb5\x81\xb9\x2a\ +\x86\x5d\x77\xd4\x2e\xe5\xb3\x91\x5e\x35\x6a\x7b\x2b\xd3\x2b\xdb\ +\x9d\x46\xeb\x34\x17\x47\x44\xa4\x42\x87\x52\x49\xb0\x2b\x2c\x42\ +\xcf\xce\x85\x67\x6d\xbe\x85\xac\x58\xc7\xc3\xb2\xd9\xbc\x62\x91\ +\xd1\x9b\x1a\x30\x4c\x8a\x5d\x42\x42\x03\x5c\x15\x94\xf5\x24\xbe\ +\xf2\x36\x2c\x6b\xd4\x8b\xe5\x54\x89\xc4\xc2\xa9\xea\xb5\x87\x69\ +\xc4\x72\x1e\xc3\xe0\xf4\x69\x8a\xd7\x8d\x64\x2d\xc8\xb6\x0d\xc0\ +\xd3\xb4\x83\x3e\xfd\x3c\x5b\xc1\xf4\xca\x3e\xa5\xe4\xd6\xe1\x0a\ +\x07\x6f\xcc\xa0\xb7\xbe\xb1\x8b\xb5\x68\x74\x3e\xed\xda\xf9\x92\ +\x07\x08\x1c\xda\xd2\xdb\xb7\x36\x8c\xc4\x36\xbc\xad\x21\xaa\x96\ +\x6b\x63\xb4\xf2\x19\x88\xc4\x12\x4a\x11\x8b\x1c\x8f\x68\x2c\x11\ +\xf5\xf6\x32\xd1\x4b\xc4\x25\x6a\x53\xcc\x0c\x5a\x0a\x29\x85\x05\ +\x29\x25\x50\xd3\xb6\xc4\xae\x33\xa3\x64\x22\x4f\x18\x85\x59\x50\ +\x0b\x5c\xc0\x50\x49\xf6\xa4\xf8\x75\x0b\x51\x11\x14\xbc\x1f\x22\ +\x5e\x1c\xb5\xf1\xb7\xe3\xa5\xd2\x9c\x72\x50\x28\xf4\xc3\xde\x8f\ +\x25\xc0\x39\xf0\x0a\x0b\x57\x33\x81\x16\xbd\xa9\xac\x85\xbf\xee\ +\x5f\x58\xa6\xbc\x7d\x4c\x60\xf2\xfe\x70\xf8\x5f\xea\x07\x31\x86\ +\x08\xfc\x57\x44\xc3\x16\x1e\x73\x1d\x09\x8c\x21\xd0\xb0\xc5\xce\ +\x4f\x8e\x44\x46\x08\x42\x22\xee\xf6\x16\x25\xc7\xf9\x08\x24\x83\ +\xb0\xa3\xa8\xab\x22\x52\x52\x1d\x27\x7c\x43\x72\x33\x7f\x5b\x5c\ +\x94\xac\xbc\x58\xf9\x92\x37\xe5\xc1\x2e\xe5\x7a\x3b\x66\xa8\xb0\ +\x4e\x9f\x06\xe7\x3f\xb5\x33\x8e\xa4\xcd\xd9\x38\x14\xd8\x20\x34\ +\xa3\x4a\x4b\xfb\xb1\x3d\x4d\x98\x24\x67\x56\xd8\x83\xa6\x72\xc8\ +\x6f\xc3\x97\xfc\x8a\x72\xa9\x48\xfa\x79\x01\x78\xe8\xf9\x4d\x78\ +\x01\x80\x0d\x2c\xa4\x2a\x73\xa9\x13\xcb\x9b\x38\x32\xc0\x4d\x2d\ +\xc1\xf0\xa5\x08\x9d\xfd\x36\x36\xb0\x2a\x3a\x36\x0a\x66\x69\xd9\ +\xe8\x7e\x4c\xc9\xbf\x27\x41\x81\xa7\x53\xb9\x45\x90\xa2\x4f\x90\ +\xb3\xb8\xdc\x25\x2a\x51\x79\xbf\x7c\x71\x0f\x7d\xac\x60\x5d\x1e\ +\x18\x95\xa9\x16\x13\xeb\x71\x32\x53\x8c\x3e\xc7\xaf\xd8\x35\x73\ +\x66\xa6\xfc\x0c\x3d\xdc\x9e\x50\x0f\x4d\x88\x70\x91\x8a\x4f\xf5\ +\xac\x27\xfd\x9c\xaf\x58\x0d\x47\xac\xc5\xe3\xf4\x59\x74\xc8\xb1\ +\x0c\xd7\x05\xd4\xcd\x8f\x5a\x0b\x83\x81\x38\x92\x22\x4f\xd7\x66\ +\xcd\xa8\xe7\x32\x00\x56\x3e\x6f\x2d\x27\xad\xa2\x81\x45\xa8\x18\ +\x23\x0f\xef\x20\x7e\x0d\x95\x94\x78\x03\x34\x38\xd2\x27\x8e\xcf\ +\x05\xcc\x62\x56\xb0\x2f\x54\x8a\xda\xf6\x44\xde\xac\x29\x95\xbf\ +\xc5\x0d\x45\xda\xa9\x55\x9c\x1a\x56\xfd\x53\x76\x76\xbf\x4f\x51\ +\x40\x9d\xcc\xc3\x32\x58\xcd\x24\x32\x8a\x1b\x30\x8e\x31\x41\xd1\ +\xd9\x17\x56\x39\x97\xc4\x40\x26\x20\x88\x1a\xe5\xc1\x48\x6b\x54\ +\x75\xc6\x07\xee\xe2\xe2\xb1\x6c\x05\x03\xca\x0a\x4e\xf1\x57\xa0\ +\x82\xed\xc7\x55\x1d\x8c\xad\x05\x42\xac\x5a\xe7\x40\x78\x39\x73\ +\x51\x7a\xc9\xc4\xb2\x92\x4c\x96\x32\x61\x80\x66\x8a\x87\xcc\xf7\ +\x45\x79\x7c\xc0\xcf\x42\x6a\xe4\x44\xe4\x2b\x2a\xb2\x32\xa8\x66\ +\x45\x64\x9b\x45\xb4\x7b\x88\xc8\xac\xaa\xc7\xf7\xc4\xf3\x74\x42\ +\x29\xc6\x8e\x1f\xa0\xa9\x45\xed\x44\x2d\x03\xca\xa8\x94\xd7\x1d\ +\xec\x07\xd1\x23\x82\x88\x3a\x7e\x9f\x8f\x58\xbb\x17\x92\x75\x3c\ +\x2d\x2e\xf4\xf9\x89\x01\x72\x09\x9e\x90\x50\x6d\x51\x0a\xdc\x88\ +\x7f\x15\x3c\x45\xf5\xa4\x9f\x19\x19\x97\xf6\xa5\x0c\x7f\xf9\x00\ +\xb2\xfe\x5f\x2e\x1e\x21\xe4\x26\x80\x02\x27\x5e\x65\x81\x11\x55\ +\xd3\x0b\x43\xbb\x2e\x16\x5a\x36\x6f\x0f\xda\x26\x1e\xf7\xa4\x2c\ +\x85\xd0\x5d\x1e\x79\x56\xae\x2c\x97\x85\x20\x02\x2a\x3a\x6d\x0f\ +\xde\x4d\x4c\xcb\xed\x69\x21\x9c\xc7\x7b\x28\x85\x81\xb0\x62\x81\ +\x90\x37\xdd\xc5\x5f\x18\x15\xee\x64\x28\xd1\xe7\xfa\xa6\x7e\x5c\ +\x70\x5c\x82\xba\x4c\x80\x4a\x2f\xb0\x8b\xde\x2f\xd5\xa3\x21\x88\ +\x66\x6e\x92\x41\x1f\x06\x7b\x4d\x84\xf0\x18\xcb\x58\x53\x12\x9c\ +\xc8\xa8\x4a\x62\x9b\x2f\x40\x01\x36\xb1\xc2\x84\x46\x85\x40\x78\ +\xf2\xfe\x58\x9c\x1d\xe4\x71\x65\xf5\xd2\xd5\x9e\xf2\xd2\xca\x9f\ +\xfe\x98\xc0\xf4\x74\x93\x7a\x90\xaa\xe2\x17\xbe\x2b\x76\xee\xe4\ +\xbb\x94\xc6\xf8\xb0\x17\x21\xa8\x34\x7e\x63\xfb\xb2\x53\x85\xf0\ +\x14\x01\x61\x64\x9f\x7a\xb4\x34\x28\xc7\x31\x41\x61\x59\xa3\x48\ +\x7b\x2e\x58\x19\x33\x4a\x68\xe9\x32\xbc\x69\xe3\x8e\x08\xa5\x69\ +\x60\x62\x4b\x34\x6e\x0c\x03\x1f\xf7\xb4\x72\x45\xb5\x0f\xf0\x52\ +\x01\x30\xf8\x0e\x26\x53\xaf\xb4\x7a\x53\xc0\xcc\xbf\x2d\x43\x5a\ +\xab\x23\x80\xae\x88\x01\x25\x7c\x1f\x33\x7d\xb2\xa0\xe0\xec\x68\ +\x06\xc2\x0a\x49\xd0\x39\xd6\xf0\x9c\x26\x40\xa6\x26\xa8\xb8\x29\ +\x5d\xa0\xf7\x34\x61\x07\xfb\x47\x43\x6b\x57\xa7\xee\x88\x4c\xed\ +\x96\xd2\xbe\x24\x88\x9b\x7f\x20\xc0\x4d\x3a\x29\xd7\x77\x31\x9e\ +\xa3\x44\x1b\xef\x54\x58\x0e\xe9\x6a\x77\xc4\x90\x50\x9c\x9a\xae\ +\x65\xf9\x3e\x5d\x6a\x1c\x27\xc9\xa3\x55\x07\xfd\x32\xff\x70\xb4\ +\x8f\x02\x5a\x42\x59\x14\x45\x54\x37\x03\x13\x0b\xf8\x5d\xc9\x74\ +\xac\x9c\x81\x32\x23\x77\xfd\x4d\x6c\x3f\x34\x35\x41\x4f\xa7\x73\ +\xfa\x18\x36\xbb\x1a\x47\x65\x5b\x96\x9e\xc2\x04\x1d\xd3\x05\x1d\ +\xb4\xfe\xb8\x51\x99\xba\xb6\x46\x00\x95\xf7\x05\xa8\x7a\xa4\xbc\ +\xce\x11\x89\xaf\x40\x5f\x27\x1f\xb8\xc5\x1c\x38\xec\x87\x48\x75\ +\x4c\x40\xf3\x00\x44\x26\x53\xdf\x11\x91\xb0\x25\x02\x98\xe8\x83\ +\xab\x87\x26\x53\xd5\x73\x40\xf5\x29\xea\x59\xdd\x59\x2e\xd2\x5d\ +\xda\xe0\x4c\xcf\xb3\xd9\x7b\x28\x70\xe5\x70\x14\x65\x7a\x15\x14\ +\xd1\xe6\xbe\x87\x4f\x95\x2f\xc3\x79\x0b\x83\xd3\x62\x03\xfa\x1e\ +\x2c\x75\xf1\xca\xf2\xde\xe5\x15\x67\x96\x8a\x58\xd4\x64\xb2\x42\ +\xc3\x4a\x08\x52\xaf\xfa\x70\x79\x44\x2c\xca\x18\xf1\x88\x3b\x29\ +\xb8\x02\xaa\x9c\x81\xd8\x2c\x16\x4f\xe5\x68\xe4\x7c\x9c\xb1\x0b\ +\x45\xfa\x70\x78\x41\x37\x25\x5c\x50\xb0\xf8\x49\x58\xbe\x92\x34\ +\xcb\x99\x67\x71\xcb\x4b\xb6\xb8\x53\xa2\x8b\xc3\xe2\x23\x45\x39\ +\x4c\xbd\xbc\xa8\xc1\xa4\x2e\x2f\xdc\xa6\x26\x7a\x55\x42\xd4\xd2\ +\x8c\x57\xde\xdc\x12\xf4\x81\x5f\x15\x04\x5e\x88\x02\x9a\xcf\x63\ +\x64\xe6\x8b\x57\x45\x4b\xc7\x49\xda\x35\x89\x17\x30\xb5\x5c\x5a\ +\x10\x0b\x54\x45\x69\x94\x9f\xd6\xf4\x53\xe8\x3c\xa5\x76\x23\x58\ +\x9d\xc7\xa3\x96\x3e\xa0\xef\x2c\x03\x68\x58\x33\xca\xea\x87\x9c\ +\xe9\xd0\xbe\xd8\x51\xeb\xef\x91\xc4\xe5\x27\xe5\x2e\x24\xb2\x48\ +\x38\x0b\x40\xb5\x53\x34\xaf\x57\x42\x8f\xf9\xa0\x2f\x7e\xc3\xdd\ +\xd1\xd4\xa3\x6c\xac\x7c\xd0\xf5\x89\x27\x2e\x27\xb8\x39\x70\x7d\ +\x91\xa5\x85\x33\x84\x7e\x75\x02\xb8\x8b\x7e\x31\x60\xa0\x01\x7e\ +\x26\xaf\xbb\x2e\xb5\xfe\xe2\x32\x8a\x9f\x98\xf2\x06\x1d\x3d\xe0\ +\x38\x07\x8b\x0d\xa2\xb7\x5f\x88\xe5\x39\x7e\x53\xf4\xf2\x8d\x80\ +\xc3\x6f\x8f\x21\xc1\x4a\x83\x9c\x39\xd8\x32\x88\xb4\x41\x45\x05\ +\xcf\x22\xca\xde\xe8\x39\xf4\xab\xb5\x92\xe5\x99\x79\xac\x31\xc3\ +\x0e\xbf\xbc\xba\x8c\x3d\x9b\x2e\x79\x1e\xad\x69\xa2\x55\xb1\x21\ +\x3c\x5c\x13\x8b\x87\xf2\xc5\x18\xe5\x1b\xe4\xa9\xad\xad\xa6\x22\ +\x01\x59\xa3\x94\xe7\x8d\x41\xd4\x72\x8d\x53\xd5\xf5\x86\x8b\x51\ +\xb0\x6b\x5e\x60\xaf\x0b\xf6\x38\x2d\xdb\x8f\xc4\x3e\x16\x61\x2f\ +\x44\xc6\x5c\x79\x9f\x6d\x19\x1b\x33\xc3\xd0\x09\x06\x74\xd7\xc3\ +\x98\x3a\xf6\xf4\xdf\x88\xdd\xc0\x22\x6a\x77\xa8\x42\x8a\x41\x5c\ +\xfc\x40\xff\x3a\x82\x42\x83\x79\x2a\xbc\x74\xd8\x9f\x65\xde\x06\ +\x99\x32\xf0\x23\x9f\x8e\x81\x8b\x08\x73\x6f\x8a\x6c\x10\x31\x21\ +\x19\xdc\xda\x10\x8d\x97\xcf\x94\xcf\x45\xa3\x56\xf4\xf9\xd8\xa8\ +\xd5\x2c\xe5\xad\xe8\xe1\x03\xf6\xde\x36\x71\xce\x20\x14\x4a\xf3\ +\xb7\x4d\xc2\xb5\xd1\x8e\xe4\xe0\x57\x92\x4d\x78\x0a\xa4\x80\x58\ +\x60\xa7\x05\x6d\x30\xd0\xad\x40\x1a\xa3\x88\xc6\x3b\x95\x06\xe9\ +\x50\x64\xe5\xa8\x4d\x36\x4b\x4e\x67\xed\x09\x8b\x65\x2f\x8a\xb6\ +\x8b\x37\x39\x85\x51\x75\x0e\x9f\x2a\x9c\x23\xd1\x31\xd4\x68\xa2\ +\xc8\x61\xc3\xcb\x02\x77\xd9\x4d\x5e\xcd\x9e\xc8\xe9\x8f\x83\xe9\ +\x45\xd6\x44\x1f\xd7\xcd\x3c\xea\x5e\x3c\x7e\x20\x33\x99\xd1\x3d\ +\xab\xd0\xc1\x53\x79\x6e\xb6\xd2\x84\x46\xe3\xe5\xb6\x6a\x8b\xeb\ +\xf6\x4d\x7e\x13\x18\x6a\xd0\x87\x89\xb1\x05\xf8\x36\x2a\x34\xeb\ +\x37\xc7\xc9\xba\xf3\xd5\x67\x49\xf8\xba\x07\x21\xe6\x65\x8b\x73\ +\x26\xa5\x44\x60\x3b\x68\x25\x1c\x20\xac\x36\xf0\x80\x1f\x22\x94\ +\xf8\x5a\xc2\x66\xe7\xc6\xb5\xed\x8c\x01\x8e\x2c\xaa\x95\x84\x6f\ +\xa2\x7b\xf4\x7c\x95\x59\x88\xec\xde\x20\x40\xc8\x2a\xd1\x85\xf7\ +\x26\x3a\xfc\x5b\x5c\xba\x8a\xc2\x51\x0a\x6f\x57\xcc\x3e\x8b\xe7\ +\xb2\x3c\x00\x29\xa1\x5a\xbc\xd9\x62\x17\xd7\xd0\xea\x2f\x8c\xc5\ +\xe7\x75\x8b\xb6\x8a\x10\x5b\x4b\xbf\xcb\xc6\xe8\xce\xd9\x4a\x6f\ +\xbf\xb8\x24\x7e\xf3\x16\x33\x33\xa6\x6d\x8e\xab\x4a\xd8\xa9\xbc\ +\x2a\xec\x26\xd1\xb9\x45\xc4\xea\xc2\xb2\x50\xbd\x81\x52\x58\x18\ +\x81\xa4\x02\xee\x88\x5c\x57\x27\x4e\xcf\xa3\x76\x9e\xcd\xdb\xff\ +\xb3\x92\x46\x35\xb3\x10\x5e\x56\xa7\x02\x9b\x5a\xfb\x20\xdc\x52\ +\x66\xdc\xaa\x95\x10\xed\x6c\x26\x5e\x0e\x11\x29\x84\xd0\x94\x01\ +\x59\x9f\xd9\x60\x49\x85\x04\xf9\x1d\x38\x10\x76\x38\x8c\xaf\xa9\ +\x38\x26\x32\x94\x14\xb3\x65\x06\x42\x49\x1a\x19\xa8\x43\x19\x48\ +\x29\x28\x50\x87\xf3\x07\x3b\x0c\x07\xcb\xb0\x0a\x83\xf8\xe1\xe6\ +\x29\xc3\x05\x5b\x15\xa9\x50\x31\x3c\x89\x16\x43\x15\xf1\x24\x0c\ +\x8b\xf8\xe5\xcd\xc0\x81\x0c\x2b\x5b\x06\x9c\x25\xca\x48\x01\x13\ +\x32\xa4\x95\xd4\x31\x67\xe2\x98\xcc\x50\x8c\x1f\xb5\x4b\x19\x35\ +\x7a\x64\xb7\xdc\x56\x1c\x8e\xe3\xe6\x6d\x9e\x14\x8a\x1f\x3a\xa7\ +\x0c\x4d\x8b\x00\xa3\xe0\x86\xbb\x5e\x04\xad\x2f\x4c\x25\x84\x9e\ +\x90\x01\x16\x4c\x95\x04\x80\x5a\x8c\x40\x59\xb4\xc0\x00\x01\xc2\ +\x06\x10\x9d\x03\x8b\x99\xa9\x44\x7f\xee\x5b\x4c\xa3\x3d\x11\x40\ +\x17\x4e\x09\x68\x94\x0c\xe5\x34\x91\xe1\x54\x5e\x63\x97\xea\x48\ +\x27\xb0\x12\x3a\xed\x22\xe8\x39\x7a\x74\x29\x7e\xd8\x39\xca\xb0\ +\x4c\x04\x9a\x18\xf0\x92\xc3\xb4\xe2\x30\xac\x49\x56\xc5\x8d\x76\ +\x10\x2a\x99\xba\x29\xcf\xbc\x0c\x32\xc7\x16\x05\xf2\xb1\x0c\xdc\ +\x5d\x71\x68\xc1\x89\x0e\x5e\x86\xa5\x0e\x3e\x3b\x38\x38\x63\xc6\ +\x8a\x5c\xed\xf2\x33\x7a\x39\xc2\xf2\x58\xcc\x5d\x4d\x85\xb8\xda\ +\xcd\xe8\x54\x65\xeb\xf4\x0a\xdd\x8a\x9b\x2d\xef\x9c\x2b\xb7\x7e\ +\xc6\x40\xec\x02\xb8\xf8\xc5\x77\xc4\x8e\x17\xbf\xcf\xea\x68\xf1\ +\x9b\x9c\x92\x37\xb0\xcb\xe4\xfb\x16\xfa\x68\x24\xd7\x1d\x5f\x5c\ +\xd0\x10\x5f\x55\x90\x92\xcd\xde\xa4\xdd\x30\x88\x94\x12\x51\x80\ +\x6a\x01\x88\x13\x79\x6b\x06\x7b\x8b\x9a\x28\xb1\x75\x18\x33\x31\ +\x43\x1b\x5f\xb3\xd0\x54\xae\x58\x61\x18\xfe\xe9\xaa\xe5\x1c\xc9\ +\xbd\x07\xdd\xe8\xe9\x95\x17\x1e\x37\x88\x96\xb6\xc8\xc3\xfb\x0e\ +\x74\xc5\x1a\xc3\x16\x58\x87\x4d\xc2\xd7\x47\xd4\x0f\x52\x6a\x0d\ +\x83\x9f\xe2\xb5\x16\x79\xb5\x92\x74\x88\x52\x61\x04\x39\x61\x69\ +\x2b\x77\xae\x85\xf7\x02\xde\x12\x53\x19\xa0\xf2\x3e\x3b\x46\x16\ +\x7e\xbb\x9d\xbf\xbd\x7d\x47\x6c\x69\x41\x70\x80\x9d\x95\x06\xd8\ +\x39\xe5\x00\x3b\x2a\x0e\xb0\x23\x7e\x80\x95\x01\xeb\x28\x3e\x24\ +\x16\xf5\x0f\x25\xef\x1c\xc9\x87\xd7\xfd\xa0\xb7\x67\xa3\x17\x18\ +\x35\x2b\x93\x4e\xa4\xd6\x3c\xc6\xc5\x3c\x44\x7e\x50\xf1\x4d\xe2\ +\x80\x60\xa1\x86\x30\x18\xc9\xd7\xeb\x48\x3a\x9b\x6a\x2a\x94\x95\ +\x91\x15\x9f\x3c\xcd\x15\xe7\x03\x13\xcd\x8d\x9b\x08\x45\x68\x34\ +\x1d\x9c\x74\x1e\x16\x24\x64\xe1\x8e\x65\xdc\x5a\x11\x87\x54\xd5\ +\xb9\xb5\xb8\xb9\x3d\xc7\x2c\x2c\x03\xf5\x6a\x44\x43\x9b\x67\x24\ +\x86\x40\xb4\xbf\x13\xce\x42\x10\xb9\xf3\xe2\xe6\xe5\xae\x41\x78\ +\xce\x0d\x51\x9e\x0d\x19\xd1\x4e\x4c\xcf\xcb\xb8\xde\xe6\x6a\x17\ +\xde\x6e\x0e\x01\x3b\x84\x06\x56\x36\xcd\x4b\x9a\xac\x92\x20\x54\ +\x02\x2d\x7a\xf5\x06\xa2\x1c\xc1\x9b\x3b\x44\x1c\x42\x2d\x24\x50\ +\x73\xd9\x47\xf0\xfb\x3b\xa6\xa8\xba\x9a\xcd\x3b\xac\x84\x34\xa2\ +\x74\x7e\x86\x50\x75\xf5\xc6\x48\xf0\xc6\x48\x89\x59\x6d\x4c\x6d\ +\xd9\x00\x1e\x71\xae\x50\x45\x4c\x44\xe3\x36\xf5\x4e\xbd\x40\xc1\ +\x4f\x60\x5d\xf3\x87\x43\xd5\xc5\xc2\xdd\x13\x67\xb6\xc2\x2b\x5c\ +\x8e\x9b\xb9\xdb\xcf\x8f\x4c\xd9\x5c\x4f\xca\x9f\x61\x7b\x04\x96\ +\xed\xf2\x76\xc6\xbc\x7d\xd6\x46\x7e\x13\x6c\x40\x71\x0c\x4b\xea\ +\x57\xb0\x01\x54\x1d\x49\xaa\x3e\xeb\x47\x45\xa4\x5e\x53\x4b\x5a\ +\x83\xc7\xa6\xd9\xdf\x3b\xfd\x3b\xc5\x4e\x00\x39\x2c\x6b\x6d\x8e\ +\xa1\x87\x1c\x90\x70\xb0\x3e\x95\x1f\x4f\x06\xa3\x77\x78\x70\xc3\ +\x09\x3b\xc3\x71\xb2\x5a\x40\x84\xa4\xc6\xda\xad\x51\x1a\xfb\x84\ +\x3c\x1e\x41\x44\x67\x80\xe8\x1d\x6c\x41\x08\xd5\xbc\x86\xd8\x65\ +\x59\xe1\x24\xeb\xa3\xd2\x28\x11\x76\x11\x51\x35\x15\x1f\x28\xaf\ +\x54\xdc\xdb\x49\xb6\x29\x6b\x7f\x37\x3d\xb5\xc1\xc2\x9f\xfe\x8d\ +\x69\xe2\x78\x37\x8b\x0c\xd3\x06\x3c\x94\x03\x68\x64\x14\x0d\x30\ +\x97\x45\x46\xa5\x35\xa0\x54\xf5\x76\x6e\x0b\xa3\x6b\x36\x6e\x2a\ +\x4d\xea\x05\x4e\x07\xcb\xc0\x19\x16\x35\xc6\x15\xc7\x55\x93\xed\ +\xfe\x53\x55\xe1\x52\xf6\xe5\x64\x53\xac\xbf\xe1\xa2\x9a\x8e\x29\ +\x80\x96\x52\x7b\xbb\xd2\x11\x98\x2e\x51\x3a\x24\x91\x9d\x06\x8b\ +\xc1\x7f\xaf\x7a\xfb\x8e\x98\xbf\xef\x54\xfe\xbe\x33\xb2\x00\xf9\ +\x76\x55\xf8\xe5\x4a\x0b\xd8\x51\x79\x01\x3b\x92\x2f\x60\x87\x0a\ +\xe0\x8e\x28\x80\xf2\xaf\x55\xe1\x3f\x56\x02\x70\x67\x65\x00\x77\ +\x26\x05\x50\x0b\x9d\x0f\x0a\x87\xfa\x65\xd4\xa1\x9d\x5d\x37\x2f\ +\x62\xf4\x3d\x91\x81\x06\x31\xf6\x13\x1d\x22\xcf\x12\xca\xd2\x09\ +\xc5\x97\x40\x16\xb1\x58\xff\x1a\x5d\x8d\xf3\xfe\x07\xde\xeb\x49\ +\x6b\ +\x00\x00\xcf\x49\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x0b\x38\x00\x00\x00\x58\x00\x00\xc1\x4a\x00\x00\x00\x59\ +\x00\x00\xc2\x15\x00\x00\x00\x5a\x00\x00\xc2\xc0\x00\x00\x05\xd9\ +\x00\x00\xc1\xd5\x00\x00\x05\xda\x00\x00\xc1\xf5\x00\x00\x05\xea\ +\x00\x00\xc2\xa0\x00\x00\x07\x78\x00\x00\x89\x59\x00\x00\x48\x83\ +\x00\x00\x03\x3b\x00\x00\x48\x83\x00\x00\x90\x23\x00\x00\x68\x34\ +\x00\x00\x82\x55\x00\x01\xc1\x87\x00\x00\x58\xa0\x00\x04\xa6\x79\ +\x00\x00\x93\xd8\x00\x04\xbb\x04\x00\x00\x0d\xa6\x00\x04\xbb\x04\ +\x00\x00\x99\x0c\x00\x05\x30\x45\x00\x00\x10\x03\x00\x05\x30\x45\ +\x00\x00\xac\x43\x00\x05\x46\xc5\x00\x00\x10\x30\x00\x05\x46\xc5\ +\x00\x00\xac\xe3\x00\x05\x56\x45\x00\x00\x59\x71\x00\x05\x56\x45\ +\x00\x00\xae\x01\x00\x05\xac\xf4\x00\x00\x1d\x1e\x00\x05\xac\xf4\ +\x00\x00\xbe\x0d\x00\x05\xb8\xfd\x00\x00\xbf\x17\x00\x05\xcf\xc7\ +\x00\x00\xbf\xbf\x00\x06\xab\x8c\x00\x00\x83\xbb\x00\x10\x84\x49\ +\x00\x00\x68\x37\x00\x12\x05\xba\x00\x00\xbb\x5f\x00\x16\xc6\xda\ +\x00\x00\xa0\xa6\x00\x1f\xa4\xf7\x00\x00\x2a\x88\x00\x2a\xa6\x79\ +\x00\x00\x8c\x29\x00\x2b\xc4\xaf\x00\x00\x8d\x3f\x00\x2b\xe0\x65\ +\x00\x00\x8d\x6a\x00\x39\xdf\x33\x00\x00\x3b\x32\x00\x3a\x9e\x1b\ +\x00\x00\x7a\x0f\x00\x3d\xa1\x19\x00\x00\x91\x6a\x00\x3e\x93\x83\ +\x00\x00\x3c\x64\x00\x48\x8f\x7c\x00\x00\x2b\xc8\x00\x48\x98\x89\ +\x00\x00\x04\x2c\x00\x49\xe0\x85\x00\x00\x28\x68\x00\x49\xe0\x85\ +\x00\x00\x96\x79\x00\x4a\x36\x45\x00\x00\x07\x8c\x00\x4b\x66\x35\ +\x00\x00\x37\xfa\x00\x4b\x66\x37\x00\x00\x38\x3f\x00\x4b\x66\x39\ +\x00\x00\x38\x84\x00\x57\x60\x54\x00\x00\x13\x1e\x00\x57\x60\x54\ +\x00\x00\xb7\x0a\x00\x58\xfd\xf4\x00\x00\x5d\xd6\x00\x59\x98\x25\ +\x00\x00\x16\x91\x00\x59\x98\x25\x00\x00\xb8\xce\x00\x6a\x58\x9a\ +\x00\x00\xb0\xbe\x00\x79\xef\xd4\x00\x00\x89\x91\x00\x7e\x7f\x0e\ +\x00\x00\x7e\xfa\x00\x8a\x23\x95\x00\x00\x2f\x14\x00\x8a\x23\x97\ +\x00\x00\x2f\x5e\x00\x8a\x23\x99\x00\x00\x2f\xa8\x00\x91\xbc\xe9\ +\x00\x00\x10\x5f\x00\xa6\x37\x3f\x00\x00\x2d\xeb\x00\xaa\x80\x25\ +\x00\x00\x97\x2b\x00\xac\xd6\x04\x00\x00\x48\x68\x00\xc0\xac\x63\ +\x00\x00\x97\xf7\x00\xc6\xe3\x6e\x00\x00\x29\xed\x00\xcb\xa8\x14\ +\x00\x00\x88\x7f\x00\xfc\x00\xca\x00\x00\xa7\xca\x01\x19\x8d\xde\ +\x00\x00\x63\x3c\x01\x21\xd6\x39\x00\x00\x67\x26\x01\x22\xb4\xf9\ +\x00\x00\x16\xc4\x01\x2f\x8e\x7e\x00\x00\x72\x7a\x01\x48\xfe\xa3\ +\x00\x00\x3c\xe2\x01\x53\xf3\xaa\x00\x00\x9d\x0f\x01\x56\x16\x4a\ +\x00\x00\xa7\x37\x01\x5c\xde\xba\x00\x00\xad\x78\x01\x67\x0d\x8a\ +\x00\x00\xa2\x63\x01\x69\x11\x7a\x00\x00\xb4\xe1\x01\x69\x97\x98\ +\x00\x00\x3f\x7c\x01\x82\x39\x0a\x00\x00\xb1\x54\x01\x8b\x68\x75\ +\x00\x00\xbe\xb8\x01\x8b\x89\x79\x00\x00\x07\xbb\x01\xa1\x7f\x63\ +\x00\x00\x1f\x93\x01\xb1\x5d\x09\x00\x00\x7a\xaa\x01\xc1\xd9\xde\ +\x00\x00\x6a\x4c\x01\xd2\x8f\xd3\x00\x00\x5e\x85\x01\xd4\x10\x23\ +\x00\x00\x47\x79\x01\xdd\x83\xfa\x00\x00\xaf\x56\x01\xdf\x11\x43\ +\x00\x00\x06\x9a\x01\xe2\xf4\x5a\x00\x00\xba\xf2\x01\xfc\xae\xd3\ +\x00\x00\x89\xd2\x02\x05\xbe\x25\x00\x00\x95\xf8\x02\x2c\xd9\x60\ +\x00\x00\x21\xc7\x02\x2f\xb5\x14\x00\x00\x21\x08\x02\x46\x58\x0a\ +\x00\x00\xb4\x1f\x02\x57\xf8\x08\x00\x00\x0c\x6c\x02\x65\xad\x62\ +\x00\x00\xc3\x9a\x02\x6e\x07\xe2\x00\x00\x61\xe2\x02\x76\x24\x13\ +\x00\x00\x44\xc1\x02\x7d\xe0\x55\x00\x00\x62\xe6\x02\x94\x46\x1a\ +\x00\x00\xb1\x05\x02\x95\xca\xb5\x00\x00\x39\xdf\x02\xa7\x2c\x15\ +\x00\x00\x05\x2c\x02\xaa\x36\x95\x00\x00\x8b\xce\x02\xab\x87\xd4\ +\x00\x00\x8c\x56\x02\xb1\xf0\xba\x00\x00\xa4\x3a\x02\xbf\xaa\x8e\ +\x00\x00\x40\xbd\x02\xc0\x66\xf2\x00\x00\x6e\x2a\x02\xc8\x3f\xf5\ +\x00\x00\x79\x71\x02\xd9\xa4\xb9\x00\x00\x82\x02\x02\xdb\x1a\x94\ +\x00\x00\x08\xe3\x03\x01\x84\xc4\x00\x00\xa8\x8b\x03\x12\x97\x6a\ +\x00\x00\xa6\x60\x03\x14\x79\xca\x00\x00\xad\x0d\x03\x1a\x14\x14\ +\x00\x00\x35\x94\x03\x1a\x16\x59\x00\x00\x64\x5b\x03\x2f\x1a\x6a\ +\x00\x00\x8d\xf3\x03\x7e\xca\xb5\x00\x00\x53\xbc\x03\x85\x74\x48\ +\x00\x00\x4e\x8c\x03\x88\x1f\xd4\x00\x00\x54\x81\x03\x9e\x58\xa5\ +\x00\x00\x00\x42\x03\xb3\x9e\xfa\x00\x00\xb1\xf8\x03\xb5\xc8\x9a\ +\x00\x00\xb3\x64\x03\xbd\xd4\xe4\x00\x00\x8e\xca\x03\xc4\x3c\xf5\ +\x00\x00\x91\x2c\x03\xc5\xd5\x5e\x00\x00\x0a\xf1\x03\xc5\xd5\x5e\ +\x00\x00\x96\xfe\x03\xcb\x0d\xe5\x00\x00\xb8\xfb\x03\xdc\x0c\xd4\ +\x00\x00\x8c\xb1\x03\xe1\x78\x25\x00\x00\x95\x3a\x03\xf2\x70\x35\ +\x00\x00\x31\xf4\x03\xf2\xbd\x60\x00\x00\x17\xe8\x03\xfb\x0f\x04\ +\x00\x00\x35\x2a\x04\x21\x23\x23\x00\x00\x25\xdd\x04\x2e\x73\x33\ +\x00\x00\x7d\x6f\x04\x56\x06\x93\x00\x00\x33\x3f\x04\x60\x7c\x15\ +\x00\x00\xb7\x90\x04\x79\xef\x9a\x00\x00\xa3\xb1\x04\x82\x77\xf4\ +\x00\x00\x62\x8e\x04\x87\x83\x87\x00\x00\x43\xc3\x04\x87\xf9\x9e\ +\x00\x00\xa9\x7a\x04\x8c\xd6\xae\x00\x00\x77\xe0\x04\x8e\xbd\xda\ +\x00\x00\x9b\x3b\x04\xa0\x8a\x25\x00\x00\x06\x67\x04\xa0\x8a\x25\ +\x00\x00\x92\x85\x04\xa4\x31\x5a\x00\x00\xab\xd3\x04\xa8\xeb\x85\ +\x00\x00\x38\xc9\x04\xbe\x0a\xf8\x00\x00\x5d\x53\x04\xd6\xd6\x12\ +\x00\x00\x60\x75\x04\xe1\x6e\xe3\x00\x00\x0b\x6b\x04\xe4\x0f\x75\ +\x00\x00\x02\xd9\x04\xeb\x41\xc3\x00\x00\x32\xc0\x04\xef\xd9\xa8\ +\x00\x00\x5c\x58\x05\x03\x83\x95\x00\x00\x85\x60\x05\x05\xcb\x13\ +\x00\x00\x52\x16\x05\x0f\xf2\x74\x00\x00\xaf\xeb\x05\x1b\x10\x59\ +\x00\x00\x56\x12\x05\x2a\xe5\x97\x00\x00\x5f\x5b\x05\x44\x3b\x5f\ +\x00\x00\x87\x6b\x05\x5c\xd9\xc4\x00\x00\x11\x86\x05\x5c\xd9\xc4\ +\x00\x00\xae\x7c\x05\x63\xf6\x93\x00\x00\x5e\x17\x05\x65\xee\x65\ +\x00\x00\x9b\x02\x05\x87\xb0\xc3\x00\x00\xb7\x68\x05\x96\xa8\xa5\ +\x00\x00\x15\x55\x05\x96\xa8\xa5\x00\x00\xb8\xa0\x05\xad\x4b\xc3\ +\x00\x00\x54\x0c\x05\xb2\xa6\xc6\x00\x00\x22\x0d\x05\xb9\x03\xc8\ +\x00\x00\x22\x86\x05\xbd\x0c\xba\x00\x00\x9e\x39\x05\xbd\x8e\xde\ +\x00\x00\x76\x54\x05\xbe\x56\x93\x00\x00\x5b\xea\x05\xc5\x50\x04\ +\x00\x00\x0d\xd7\x05\xe5\x8e\x2e\x00\x00\x13\x4d\x05\xfb\xdc\x83\ +\x00\x00\x52\x72\x06\x1e\xe6\xb5\x00\x00\xbd\xd4\x06\x29\xee\xa9\ +\x00\x00\x92\xf2\x06\x2a\x86\xcd\x00\x00\x62\x38\x06\x57\x19\xf4\ +\x00\x00\x00\x00\x06\x5a\xef\x15\x00\x00\x8b\xfa\x06\x5b\xd2\xb5\ +\x00\x00\x4a\x0b\x06\x6c\x88\x8e\x00\x00\x50\x1d\x06\x74\x1d\x55\ +\x00\x00\x69\xca\x06\x8b\x96\x44\x00\x00\x0e\x95\x06\x97\x58\xc9\ +\x00\x00\x64\xe2\x06\xbc\x80\xa5\x00\x00\x20\xa1\x06\xc9\xb8\x05\ +\x00\x00\x8f\x48\x06\xe8\x05\x4e\x00\x00\x08\x76\x06\xee\xaa\x57\ +\x00\x00\xbc\xcf\x06\xf0\xcb\x25\x00\x00\x1e\x77\x06\xfa\xff\xc3\ +\x00\x00\x53\x62\x06\xfc\x1a\x14\x00\x00\x3a\x35\x06\xfc\xa0\x8a\ +\x00\x00\xb0\x2e\x07\x08\x90\xe5\x00\x00\x30\x7f\x07\x0d\xb7\xf7\ +\x00\x00\x3f\xea\x07\x0e\x86\x3e\x00\x00\x1e\xde\x07\x2a\x23\x65\ +\x00\x00\x3e\xe7\x07\x35\x68\x6e\x00\x00\x19\x1f\x07\x35\xe8\x9a\ +\x00\x00\xb5\x24\x07\x44\x41\x2a\x00\x00\x9c\x8e\x07\x4a\x1f\x63\ +\x00\x00\x02\x06\x07\x4d\x73\x22\x00\x00\xac\x6b\x07\x4e\xa6\xf2\ +\x00\x00\x99\x6b\x07\x58\xcb\xe8\x00\x00\xac\xa5\x07\x63\xfe\x0e\ +\x00\x00\x14\x22\x07\x63\xfe\x0e\x00\x00\xb7\x33\x07\x71\xad\x43\ +\x00\x00\x1a\x20\x07\x80\xc6\xb3\x00\x00\xc1\x0a\x07\x88\x72\x5a\ +\x00\x00\x90\x79\x07\x91\x78\x5e\x00\x00\x27\x65\x07\xa7\x30\x05\ +\x00\x00\x90\x4a\x07\xc1\xfc\x13\x00\x00\x34\x00\x07\xe7\xec\x93\ +\x00\x00\x7c\x3f\x08\x27\xb4\xba\x00\x00\xb2\xfd\x08\x32\xc4\xaa\ +\x00\x00\xb5\xff\x08\x36\x74\x14\x00\x00\x29\xa2\x08\x44\xb9\x83\ +\x00\x00\x3a\xbc\x08\x49\xc9\x30\x00\x00\x18\x34\x08\x61\x7c\xb3\ +\x00\x00\x22\xb9\x08\xa2\xca\x67\x00\x00\x64\x07\x08\xa3\xe0\x33\ +\x00\x00\x94\x77\x08\xb1\x15\x28\x00\x00\x34\xc1\x08\xb4\x04\x04\ +\x00\x00\xb8\x0b\x08\xd0\x32\xf4\x00\x00\x99\x38\x08\xd4\xcd\x69\ +\x00\x00\x99\xa5\x08\xe1\x9b\xbe\x00\x00\x1d\xbd\x08\xe1\xc1\xfa\ +\x00\x00\x9b\xca\x08\xef\x4d\x7a\x00\x00\x96\xa2\x09\x20\xda\x24\ +\x00\x00\xc2\x32\x09\x20\xda\xb4\x00\x00\xc2\xdd\x09\x20\xda\xd4\ +\x00\x00\xc1\x67\x09\x4d\x96\xd9\x00\x00\x2a\xdb\x09\x65\xda\x8a\ +\x00\x00\xa0\x25\x09\x68\x0d\x29\x00\x00\xaa\xa4\x09\x71\x8d\x25\ +\x00\x00\x08\x32\x09\x75\x23\x14\x00\x00\x8d\x95\x09\x76\xed\x34\ +\x00\x00\x7b\xe7\x09\x86\xa6\x05\x00\x00\x28\x96\x09\x8b\x23\xba\ +\x00\x00\xb6\x5a\x09\x9e\xfd\x7e\x00\x00\x7c\xd1\x09\xb6\x2a\x63\ +\x00\x00\x39\x45\x09\xcd\x1c\x55\x00\x00\xb9\x39\x09\xd2\x21\xea\ +\x00\x00\x73\x7b\x09\xe5\x23\x0e\x00\x00\x6d\x17\x09\xec\x2b\x45\ +\x00\x00\x0e\x43\x09\xef\x33\xa3\x00\x00\x1a\xee\x09\xf0\x1f\x6e\ +\x00\x00\x03\x66\x09\xfd\x45\x1a\x00\x00\xb1\xa3\x0a\x09\xc1\x7a\ +\x00\x00\xb4\x7a\x0a\x28\x9a\x65\x00\x00\x60\xf5\x0a\x28\x9a\x67\ +\x00\x00\x61\x44\x0a\x28\x9a\x69\x00\x00\x61\x93\x0a\x2d\xbe\xe4\ +\x00\x00\x35\xff\x0a\x35\xa9\xfa\x00\x00\xa4\xbc\x0a\x3f\x27\x74\ +\x00\x00\x96\x40\x0a\x40\xa1\xe3\x00\x00\x32\x61\x0a\x49\xa5\x4a\ +\x00\x00\xbe\x37\x0a\x60\xe0\x15\x00\x00\x2c\x09\x0a\x60\xe0\x17\ +\x00\x00\x2c\x5c\x0a\x60\xe0\x19\x00\x00\x2c\xaf\x0a\x65\x9b\xea\ +\x00\x00\xae\xac\x0a\x78\x05\x80\x00\x00\x01\x51\x0a\x7f\x8f\x65\ +\x00\x00\x45\xe0\x0a\x81\xe4\x23\x00\x00\x4b\x85\x0a\x86\x10\x44\ +\x00\x00\x12\xbc\x0a\x98\x86\x18\x00\x00\x2f\xf2\x0a\x99\x5c\xaa\ +\x00\x00\xb6\xb2\x0a\xa8\x16\x95\x00\x00\x15\x12\x0a\xa8\x16\x95\ +\x00\x00\xb7\xd2\x0a\xa9\x89\xec\x00\x00\x54\xce\x0a\xc8\x5c\x59\ +\x00\x00\x11\xbd\x0a\xd0\x50\xb8\x00\x00\x8c\x82\x0a\xd0\xe6\xf5\ +\x00\x00\x19\xd5\x0a\xd6\xf1\xfa\x00\x00\x98\xaf\x0a\xeb\x91\x88\ +\x00\x00\x7b\x3c\x0b\x07\x78\x8a\x00\x00\x9f\x78\x0b\x1b\xe0\x73\ +\x00\x00\x65\x4e\x0b\x24\x9d\xb4\x00\x00\x66\x43\x0b\x24\xc5\xc9\ +\x00\x00\x15\x8a\x0b\x26\x7e\x0e\x00\x00\x95\x78\x0b\x2b\x50\xfa\ +\x00\x00\xa3\x16\x0b\x2d\xb3\xf9\x00\x00\x81\x60\x0b\x37\x73\x69\ +\x00\x00\xbf\xe7\x0b\x40\x40\x3e\x00\x00\x56\x70\x0b\x43\xcd\x19\ +\x00\x00\x55\x42\x0b\x4f\x98\xba\x00\x00\xa1\x26\x0b\x66\x28\xd2\ +\x00\x00\x79\xc0\x0b\x88\xe0\x07\x00\x00\x0c\xc0\x0b\x94\x44\xc5\ +\x00\x00\x36\x8a\x0b\x98\x12\xaa\x00\x00\x9d\xbc\x0b\xa0\x84\x94\ +\x00\x00\x04\x5b\x0b\xb3\x46\x6a\x00\x00\x94\x00\x0b\xc2\x99\x6a\ +\x00\x00\x9e\xb7\x0b\xd3\x27\xae\x00\x00\x05\x78\x0b\xd4\x7e\x9e\ +\x00\x00\x0c\xfb\x0b\xf5\xee\x53\x00\x00\xae\x31\x0c\x06\x50\x2e\ +\x00\x00\x0f\x1e\x0c\x19\xfa\x99\x00\x00\x9a\x3b\x0c\x21\x0a\x83\ +\x00\x00\x92\xb1\x0c\x28\x9b\x45\x00\x00\x8d\x02\x0c\x31\x7e\x4a\ +\x00\x00\xb2\x45\x0c\x38\x4d\xe5\x00\x00\x09\x2a\x0c\x3a\x16\xd0\ +\x00\x00\x1c\xa4\x0c\x5a\xc0\xc8\x00\x00\x90\xf8\x0c\x6e\x87\xf5\ +\x00\x00\x27\x2e\x0c\x7c\xe0\xa6\x00\x00\x21\x4e\x0c\x80\x3b\x33\ +\x00\x00\x98\x4d\x0c\x91\xa0\x7a\x00\x00\xbd\x75\x0c\x96\x90\x59\ +\x00\x00\x55\xa3\x0c\xbe\xa7\x4e\x00\x00\x4c\xef\x0c\xca\xdd\xfa\ +\x00\x00\xbb\xcb\x0c\xd6\xef\x12\x00\x00\x33\xad\x0c\xde\x99\x49\ +\x00\x00\x81\xb0\x0c\xe1\x21\x02\x00\x00\x5f\xfe\x0c\xe2\x77\x73\ +\x00\x00\x83\xf9\x0c\xf0\xde\xaa\x00\x00\xa1\xa9\x0d\x1c\xf6\xee\ +\x00\x00\x31\x48\x0d\x3a\x6c\xba\x00\x00\xb2\x9b\x0d\x45\xe2\x6a\ +\x00\x00\xba\x85\x0d\x59\xa1\x45\x00\x00\x97\x5d\x0d\x5a\xad\x33\ +\x00\x00\x8f\xb8\x0d\x5e\xe7\x6e\x00\x00\x2d\x02\x0d\x64\xa5\xd9\ +\x00\x00\x71\x96\x0d\x6d\xf8\xf4\x00\x00\x0a\x03\x0d\x74\xdd\x52\ +\x00\x00\x1b\xe9\x0d\x76\xb5\x92\x00\x00\x31\x94\x0d\x9b\xec\xc9\ +\x00\x00\x69\x4b\x0d\xa5\xd9\x94\x00\x00\x30\xef\x0d\xa6\xda\xa4\ +\x00\x00\x57\xab\x0d\xa7\xb9\xc2\x00\x00\x1c\x36\x0d\xc6\xc6\x2a\ +\x00\x00\xb5\x8b\x0d\xf2\x39\xba\x00\x00\xa5\x89\x0e\x1a\x1d\xc3\ +\x00\x00\x52\xd0\x0e\x29\x94\x64\x00\x00\x42\x26\x0e\x2b\x04\x15\ +\x00\x00\x94\xff\x0e\x2c\xe4\x2a\x00\x00\xba\x0e\x0e\x4e\xcc\xc5\ +\x00\x00\x0b\x28\x0e\x6f\x9a\x1a\x00\x00\xbc\x5f\x0e\x7b\x7a\x2c\ +\x00\x00\x37\x84\x0e\x8f\x6a\x37\x00\x00\x3c\x0a\x0e\x91\x65\xf5\ +\x00\x00\x1d\x4d\x0e\xca\xd7\x34\x00\x00\x24\xa3\x0e\xcd\x1c\x55\ +\x00\x00\xb9\x80\x0e\xcd\x1c\x65\x00\x00\xb9\xc7\x0e\xcd\x5b\x59\ +\x00\x00\x5c\xfa\x0e\xea\xe5\x03\x00\x00\x8a\x63\x0e\xed\xe1\xf9\ +\x00\x00\x59\xb9\x0f\x07\x8d\xe3\x00\x00\x8b\x17\x0f\x0b\x10\x53\ +\x00\x00\x58\x29\x0f\x17\x82\x4e\x00\x00\x01\x01\x0f\x1f\x8d\xa5\ +\x00\x00\x94\xad\x0f\x4f\x75\x3a\x00\x00\xc3\x4b\x0f\x5f\xca\xd5\ +\x00\x00\x36\xfd\x0f\x77\xc3\xb4\x00\x00\x82\x90\x0f\x89\x0b\xbe\ +\x00\x00\x5a\x1d\x0f\x8f\xa8\xa7\x00\x00\x1b\x96\x0f\x98\x0a\x39\ +\x00\x00\xbf\x3f\x0f\x9e\xec\xa0\x00\x00\x14\x5f\x0f\xbf\x87\xa3\ +\x00\x00\xab\x89\x0f\xcd\xce\x95\x00\x00\x3b\x96\x0f\xdf\x21\x05\ +\x00\x00\x29\x37\x0f\xf6\x06\x1e\x00\x00\x25\x09\x0f\xf6\x29\x0a\ +\x00\x00\x8f\x74\x0f\xfb\x5f\xae\x00\x00\x95\xb4\x69\x00\x00\xc3\ +\xf7\x03\x00\x00\x00\x16\x00\x4c\x00\x69\x00\x73\x00\xe4\x00\xe4\ +\x00\x20\x00\x70\x00\x69\x00\x73\x00\x74\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x41\x64\x64\x20\x50\x6f\x69\x6e\x74\x07\ +\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x50\x6f\x69\ +\x6e\x74\x01\x03\x00\x00\x00\x74\x00\x4c\x00\x69\x00\x73\x00\xe4\ +\x00\xe4\x00\x20\x00\x70\x00\x69\x00\x73\x00\x74\x00\x65\x00\x65\ +\x00\x6e\x00\x20\x00\x6f\x00\x6c\x00\x65\x00\x6d\x00\x61\x00\x73\ +\x00\x73\x00\x61\x00\x20\x00\x6f\x00\x6c\x00\x65\x00\x76\x00\x61\ +\x00\x61\x00\x6e\x00\x20\x00\x6c\x00\x61\x00\x6e\x00\x6b\x00\x61\ +\x00\x61\x00\x6e\x00\x2f\x00\x62\x00\xe9\x00\x7a\x00\x69\x00\x65\ +\x00\x72\x00\x2d\x00\x6b\x00\xe4\x00\x79\x00\x72\x00\xe4\x00\x76\ +\x00\x69\x00\x69\x00\x76\x00\x61\x00\x61\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x28\x41\x64\x64\x73\x20\x61\x20\x70\x6f\x69\ +\x6e\x74\x20\x74\x6f\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\ +\x67\x20\x77\x69\x72\x65\x2f\x62\x73\x70\x6c\x69\x6e\x65\x07\x00\ +\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x50\x6f\x69\x6e\ +\x74\x01\x03\x00\x00\x00\x1c\x00\x4c\x00\x69\x00\x73\x00\xe4\x00\ +\xe4\x00\x20\x00\x72\x00\x79\x00\x68\x00\x6d\x00\xe4\x00\x2e\x00\ +\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x41\x64\x64\ +\x20\x74\x6f\x20\x67\x72\x6f\x75\x70\x2e\x2e\x2e\x07\x00\x00\x00\ +\x10\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x54\x6f\x47\x72\x6f\x75\ +\x70\x01\x03\x00\x00\x00\x60\x00\x4c\x00\x69\x00\x73\x00\xe4\x00\ +\xe4\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x74\x00\ +\x75\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x69\x00\x28\x00\x74\x00\x29\x00\x20\x00\x61\x00\x69\x00\x65\x00\ +\x6d\x00\x6d\x00\x69\x00\x6e\x00\x20\x00\x6c\x00\x75\x00\x6f\x00\ +\x74\x00\x75\x00\x75\x00\x6e\x00\x20\x00\x72\x00\x79\x00\x68\x00\ +\x6d\x00\xe4\x00\xe4\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x30\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x28\x73\x29\x20\x74\x6f\x20\ +\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x67\x72\x6f\x75\ +\x70\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x54\ +\x6f\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x76\x00\x4b\x00\x6f\ +\x00\x73\x00\x6b\x00\x65\x00\x65\x00\x20\x00\x6e\x00\x79\x00\x6b\ +\x00\x79\x00\x69\x00\x73\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x69\ +\x00\x69\x00\x76\x00\x61\x00\x6e\x00\x6c\x00\x65\x00\x76\x00\x65\ +\x00\x79\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x6a\x00\x61\x00\x20\ +\x00\x76\x00\xe4\x00\x72\x00\x69\x00\x6e\x00\x20\x00\x76\x00\x61\ +\x00\x6c\x00\x69\x00\x74\x00\x74\x00\x75\x00\x6a\x00\x61\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x6a\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x41\x70\x70\x6c\ +\x69\x65\x73\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\x6e\x65\ +\x20\x77\x69\x64\x74\x68\x20\x61\x6e\x64\x20\x63\x6f\x6c\x6f\x72\ +\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\ +\x70\x70\x6c\x79\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\x2a\x00\ +\x4b\x00\xe4\x00\x79\x00\x74\x00\xe4\x00\x20\x00\x4e\x00\x79\x00\ +\x6b\x00\x79\x00\x69\x00\x73\x00\x74\x00\xe4\x00\x20\x00\x74\x00\ +\x79\x00\x79\x00\x6c\x00\x69\x00\xe4\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x13\x41\x70\x70\x6c\x79\x20\x43\x75\x72\x72\x65\x6e\x74\ +\x20\x53\x74\x79\x6c\x65\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\ +\x5f\x41\x70\x70\x6c\x79\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\ +\x0a\x00\x4b\x00\x61\x00\x61\x00\x72\x00\x69\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x03\x41\x72\x63\x07\x00\x00\x00\x09\x44\x72\x61\ +\x66\x74\x5f\x41\x72\x63\x01\x03\x00\x00\x00\x78\x00\x4c\x00\x75\ +\x00\x6f\x00\x20\x00\x6b\x00\x61\x00\x61\x00\x72\x00\x65\x00\x6e\ +\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x6b\ +\x00\x6f\x00\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\x61\x00\x61\ +\x00\x20\x00\x6b\x00\x6f\x00\x68\x00\x74\x00\x65\x00\x69\x00\x73\ +\x00\x69\x00\x69\x00\x6e\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\ +\x00\x46\x00\x54\x00\x20\x00\x6c\x00\x75\x00\x6f\x00\x20\x00\x72\ +\x00\x61\x00\x6a\x00\x6f\x00\x69\x00\x74\x00\x74\x00\x65\x00\x69\ +\x00\x74\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x72\x63\x2e\x20\x43\x54\ +\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\ +\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\ +\x00\x00\x09\x44\x72\x61\x66\x74\x5f\x41\x72\x63\x01\x03\x00\x00\ +\x00\x0a\x00\x41\x00\x72\x00\x72\x00\x61\x00\x79\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x05\x41\x72\x72\x61\x79\x07\x00\x00\x00\x0b\ +\x44\x72\x61\x66\x74\x5f\x41\x72\x72\x61\x79\x01\x03\x00\x00\x00\ +\x76\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\ +\x20\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x61\x00\x72\x00\ +\x20\x00\x6f\x00\x72\x00\x20\x00\x72\x00\x65\x00\x63\x00\x74\x00\ +\x61\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x20\x00\ +\x61\x00\x72\x00\x72\x00\x61\x00\x79\x00\x20\x00\x66\x00\x72\x00\ +\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x3b\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x70\x6f\x6c\x61\x72\ +\x20\x6f\x72\x20\x72\x65\x63\x74\x61\x6e\x67\x75\x6c\x61\x72\x20\ +\x61\x72\x72\x61\x79\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ +\x0b\x44\x72\x61\x66\x74\x5f\x41\x72\x72\x61\x79\x01\x03\x00\x00\ +\x00\x22\x00\x42\x00\xe9\x00\x7a\x00\x69\x00\x65\x00\x72\x00\x2d\ +\x00\x6b\x00\xe4\x00\x79\x00\x72\x00\xe4\x00\x76\x00\x69\x00\x69\ +\x00\x76\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x2d\ +\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\ +\x5f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x8a\x00\x4c\ +\x00\x75\x00\x6f\x00\x20\x00\x75\x00\x73\x00\x65\x00\x61\x00\x6e\ +\x00\x20\x00\x70\x00\x69\x00\x73\x00\x74\x00\x65\x00\x65\x00\x6e\ +\x00\x20\x00\x62\x00\xe9\x00\x7a\x00\x69\x00\x65\x00\x72\x00\x2d\ +\x00\x6b\x00\xe4\x00\x79\x00\x72\x00\xe4\x00\x76\x00\x69\x00\x69\ +\x00\x76\x00\x61\x00\x61\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\ +\x00\x4c\x00\x20\x00\x6b\x00\x6f\x00\x68\x00\x64\x00\x69\x00\x73\ +\x00\x74\x00\x61\x00\x61\x00\x2e\x00\x20\x00\x53\x00\x48\x00\x49\ +\x00\x46\x00\x54\x00\x20\x00\x72\x00\x61\x00\x6a\x00\x6f\x00\x69\ +\x00\x74\x00\x74\x00\x61\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x43\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x6d\x75\x6c\x74\ +\x69\x70\x6c\x65\x2d\x70\x6f\x69\x6e\x74\x20\x62\x2d\x73\x70\x6c\ +\x69\x6e\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\ +\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\ +\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\ +\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x0c\x00\x59\x00\ +\x6d\x00\x70\x00\x79\x00\x72\x00\xe4\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x06\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x0c\x44\x72\ +\x61\x66\x74\x5f\x43\x69\x72\x63\x6c\x65\x01\x03\x00\x00\x00\x94\ +\x00\x4c\x00\x75\x00\x6f\x00\x20\x00\x79\x00\x6d\x00\x70\x00\x79\ +\x00\x72\x00\xe4\x00\x6e\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\ +\x00\x4c\x00\x20\x00\x6b\x00\x6f\x00\x68\x00\x64\x00\x69\x00\x73\ +\x00\x74\x00\x61\x00\x61\x00\x20\x00\x6b\x00\x6f\x00\x68\x00\x74\ +\x00\x65\x00\x65\x00\x73\x00\x65\x00\x65\x00\x6e\x00\x2c\x00\x20\ +\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\ +\x00\x74\x00\x73\x00\x65\x00\x65\x00\x20\x00\x74\x00\x61\x00\x6e\ +\x00\x67\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x69\x00\x6c\ +\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3d\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x20\x63\x69\x72\x63\x6c\x65\x2e\x20\ +\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x41\x4c\ +\x54\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x20\x74\x61\x6e\x67\ +\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0c\ +\x44\x72\x61\x66\x74\x5f\x43\x69\x72\x63\x6c\x65\x01\x03\x00\x00\ +\x00\x0a\x00\x43\x00\x6c\x00\x6f\x00\x6e\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x05\x43\x6c\x6f\x6e\x65\x07\x00\x00\x00\x0b\ +\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\x6e\x65\x01\x03\x00\x00\x00\ +\x3a\x00\x43\x00\x6c\x00\x6f\x00\x6e\x00\x65\x00\x73\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x28\x00\x73\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1d\x43\x6c\x6f\x6e\x65\x73\x20\x74\x68\x65\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x28\ +\x73\x29\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\ +\x6e\x65\x01\x03\x00\x00\x00\x16\x00\x53\x00\x75\x00\x6c\x00\x6a\ +\x00\x65\x00\x20\x00\x56\x00\x69\x00\x69\x00\x76\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6c\x6f\x73\x65\x20\x4c\x69\ +\x6e\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\ +\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x2e\x00\x53\x00\x75\ +\x00\x6c\x00\x6b\x00\x65\x00\x65\x00\x20\x00\x70\x00\x69\x00\x69\ +\x00\x72\x00\x72\x00\x65\x00\x74\x00\x79\x00\x6e\x00\x20\x00\x76\ +\x00\x69\x00\x69\x00\x76\x00\x61\x00\x6e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1b\x43\x6c\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x6c\ +\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x07\ +\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\x73\x65\x4c\ +\x69\x6e\x65\x01\x03\x00\x00\x00\x18\x00\x50\x00\x6f\x00\x69\x00\ +\x73\x00\x74\x00\x61\x00\x20\x00\x70\x00\x69\x00\x73\x00\x74\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x52\x65\x6d\x6f\x76\ +\x65\x20\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\ +\x74\x5f\x44\x65\x6c\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x86\ +\x00\x50\x00\x6f\x00\x69\x00\x73\x00\x74\x00\x61\x00\x61\x00\x20\ +\x00\x70\x00\x69\x00\x73\x00\x74\x00\x65\x00\x65\x00\x6e\x00\x20\ +\x00\x6f\x00\x6c\x00\x65\x00\x6d\x00\x61\x00\x73\x00\x73\x00\x61\ +\x00\x20\x00\x6f\x00\x6c\x00\x65\x00\x76\x00\x61\x00\x73\x00\x74\ +\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x6e\x00\x67\x00\x61\x00\x73\ +\x00\x74\x00\x61\x00\x20\x00\x74\x00\x61\x00\x69\x00\x20\x00\x62\ +\x00\xe9\x00\x7a\x00\x69\x00\x65\x00\x72\x00\x2d\x00\x6b\x00\xe4\ +\x00\x79\x00\x72\x00\xe4\x00\x76\x00\x69\x00\x69\x00\x76\x00\x61\ +\x00\x73\x00\x74\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\ +\x52\x65\x6d\x6f\x76\x65\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\ +\x66\x72\x6f\x6d\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\ +\x20\x77\x69\x72\x65\x20\x6f\x72\x20\x62\x73\x70\x6c\x69\x6e\x65\ +\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x44\x65\x6c\x50\x6f\ +\x69\x6e\x74\x01\x03\x00\x00\x00\x7c\x00\x4c\x00\x75\x00\x6f\x00\ +\x20\x00\x6d\x00\x69\x00\x74\x00\x74\x00\x61\x00\x2e\x00\x20\x00\ +\x43\x00\x54\x00\x52\x00\x4c\x00\x2d\x00\x6b\x00\x6f\x00\x68\x00\ +\x64\x00\x69\x00\x73\x00\x74\x00\x61\x00\x2c\x00\x20\x00\x53\x00\ +\x48\x00\x49\x00\x46\x00\x54\x00\x2d\x00\x72\x00\x61\x00\x6a\x00\ +\x6f\x00\x69\x00\x74\x00\x65\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\ +\x54\x00\x2d\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x74\x00\ +\x75\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4e\x43\ +\x72\x65\x61\x74\x65\x73\x20\x61\x20\x64\x69\x6d\x65\x6e\x73\x69\ +\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\ +\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\ +\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x73\x65\x6c\ +\x65\x63\x74\x20\x61\x20\x73\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\ +\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\x73\x69\x6f\ +\x6e\x01\x03\x00\x00\x00\x0a\x00\x4d\x00\x69\x00\x74\x00\x74\x00\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x44\x69\x6d\x65\x6e\ +\x73\x69\x6f\x6e\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\ +\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x01\x03\x00\x00\x00\x16\x00\x41\ +\x00\x6c\x00\x65\x00\x6e\x00\x6e\x00\x65\x00\x74\x00\x74\x00\x61\ +\x00\x76\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x44\x6f\ +\x77\x6e\x67\x72\x61\x64\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\ +\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\ +\x98\x00\x52\x00\xe4\x00\x6a\x00\xe4\x00\x79\x00\x74\x00\x74\x00\ +\xe4\x00\xe4\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\ +\x75\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x69\x00\x74\x00\x20\x00\x79\x00\x6b\x00\x73\x00\x69\x00\ +\x6e\x00\x6b\x00\x65\x00\x72\x00\x74\x00\x61\x00\x69\x00\x73\x00\ +\x69\x00\x6b\x00\x73\x00\x69\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x65\x00\x69\x00\x6b\x00\x73\x00\x69\x00\ +\x20\x00\x74\x00\x61\x00\x69\x00\x20\x00\x76\x00\x61\x00\x68\x00\ +\x65\x00\x6e\x00\x74\x00\xe4\x00\xe4\x00\x20\x00\x70\x00\x69\x00\ +\x6e\x00\x74\x00\x6f\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x45\x45\x78\x70\x6c\x6f\x64\x65\x73\x20\x74\x68\x65\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x20\x69\x6e\x74\x6f\x20\x73\x69\x6d\x70\x6c\x65\x72\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x2c\x20\x6f\x72\x20\x73\x75\x62\x74\x72\x61\ +\x63\x74\x20\x66\x61\x63\x65\x73\x07\x00\x00\x00\x0f\x44\x72\x61\ +\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\x03\x00\x00\ +\x00\x1e\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\ +\x00\x6f\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x20\ +\x74\x6f\x20\x53\x6b\x65\x74\x63\x68\x07\x00\x00\x00\x12\x44\x72\ +\x61\x66\x74\x5f\x44\x72\x61\x66\x74\x32\x53\x6b\x65\x74\x63\x68\ +\x01\x03\x00\x00\x00\x12\x00\x50\x00\x69\x00\x69\x00\x72\x00\x75\ +\x00\x73\x00\x74\x00\x75\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x07\x44\x72\x61\x77\x69\x6e\x67\x07\x00\x00\x00\x0d\x44\x72\ +\x61\x66\x74\x5f\x44\x72\x61\x77\x69\x6e\x67\x01\x03\x00\x00\x00\ +\x5c\x00\x53\x00\x69\x00\x69\x00\x72\x00\x74\x00\xe4\x00\xe4\x00\ +\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x75\x00\x74\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\ +\x74\x00\x20\x00\x70\x00\x69\x00\x69\x00\x72\x00\x75\x00\x73\x00\ +\x74\x00\x75\x00\x6b\x00\x73\x00\x65\x00\x6e\x00\x20\x00\x61\x00\ +\x72\x00\x6b\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x2e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x2d\x50\x75\x74\x73\x20\x74\x68\x65\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x20\x6f\x6e\x20\x61\x20\x44\x72\x61\x77\x69\x6e\x67\x20\x73\x68\ +\x65\x65\x74\x2e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x44\ +\x72\x61\x77\x69\x6e\x67\x01\x03\x00\x00\x00\x0e\x00\x4d\x00\x75\ +\x00\x6f\x00\x6b\x00\x6b\x00\x61\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x0a\x44\x72\x61\ +\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\x36\x00\x4d\x00\ +\x75\x00\x6f\x00\x6b\x00\x6b\x00\x61\x00\x61\x00\x20\x00\x61\x00\ +\x6b\x00\x74\x00\x69\x00\x69\x00\x76\x00\x69\x00\x73\x00\x74\x00\ +\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x45\x64\x69\ +\x74\x73\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x45\ +\x64\x69\x74\x01\x03\x00\x00\x00\x22\x00\x56\x00\x69\x00\x69\x00\ +\x6d\x00\x65\x00\x69\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x65\x00\ +\x20\x00\x76\x00\x69\x00\x69\x00\x76\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0b\x46\x69\x6e\x69\x73\x68\x20\x6c\x69\x6e\x65\ +\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\x69\x73\ +\x68\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x42\x00\x56\x00\x69\x00\ +\x69\x00\x6d\x00\x65\x00\x69\x00\x73\x00\x74\x00\x65\x00\x6c\x00\ +\x65\x00\x20\x00\x76\x00\x69\x00\x69\x00\x76\x00\x61\x00\x20\x00\ +\x73\x00\x75\x00\x6c\x00\x6b\x00\x65\x00\x6d\x00\x61\x00\x74\x00\ +\x74\x00\x61\x00\x20\x00\x73\x00\x69\x00\x74\x00\xe4\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x22\x46\x69\x6e\x69\x73\x68\x65\x73\x20\ +\x61\x20\x6c\x69\x6e\x65\x20\x77\x69\x74\x68\x6f\x75\x74\x20\x63\ +\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\x07\x00\x00\x00\x10\x44\x72\ +\x61\x66\x74\x5f\x46\x69\x6e\x69\x73\x68\x4c\x69\x6e\x65\x01\x03\ +\x00\x00\x00\x8e\x00\x4c\x00\x75\x00\x6f\x00\x20\x00\x32\x00\x20\ +\x00\x70\x00\x69\x00\x73\x00\x74\x00\x65\x00\x65\x00\x6e\x00\x20\ +\x00\x76\x00\x69\x00\x69\x00\x76\x00\x61\x00\x2e\x00\x20\x00\x43\ +\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x6b\x00\x6f\x00\x68\x00\x64\ +\x00\x69\x00\x73\x00\x74\x00\x61\x00\x61\x00\x20\x00\x6b\x00\x6f\ +\x00\x68\x00\x74\x00\x65\x00\x69\x00\x73\x00\x69\x00\x69\x00\x6e\ +\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\ +\x00\x74\x00\x65\x00\x6b\x00\x65\x00\x65\x00\x20\x00\x72\x00\x61\ +\x00\x6a\x00\x6f\x00\x69\x00\x74\x00\x75\x00\x6b\x00\x73\x00\x69\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\x74\x20\x6c\x69\ +\x6e\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\ +\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\ +\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4c\ +\x69\x6e\x65\x01\x03\x00\x00\x00\x0a\x00\x56\x00\x69\x00\x69\x00\ +\x76\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4c\x69\x6e\ +\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4c\x69\x6e\x65\ +\x01\x03\x00\x00\x00\x0c\x00\x53\x00\x69\x00\x69\x00\x72\x00\x72\ +\x00\xe4\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4d\x6f\x76\x65\ +\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4d\x6f\x76\x65\x01\ +\x03\x00\x00\x00\xae\x00\x53\x00\x69\x00\x69\x00\x72\x00\x74\x00\ +\xe4\x00\xe4\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\ +\x74\x00\x75\x00\x6a\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x65\x00\x6a\x00\x61\x00\x20\x00\x32\x00\ +\x20\x00\x70\x00\x69\x00\x73\x00\x74\x00\x65\x00\x65\x00\x6e\x00\ +\x20\x00\x76\x00\xe4\x00\x6c\x00\x69\x00\x6c\x00\x6c\x00\xe4\x00\ +\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x2d\x00\x6b\x00\ +\x6f\x00\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\x61\x00\x2c\x00\ +\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x2d\x00\x72\x00\ +\x61\x00\x6a\x00\x6f\x00\x69\x00\x74\x00\x61\x00\x2c\x00\x20\x00\ +\x41\x00\x4c\x00\x54\x00\x2d\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\ +\x6f\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5a\x4d\x6f\x76\ +\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\ +\x32\x20\x70\x6f\x69\x6e\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\ +\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\ +\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\ +\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0a\x44\x72\x61\x66\ +\x74\x5f\x4d\x6f\x76\x65\x01\x03\x00\x00\x00\x10\x00\x53\x00\x69\ +\x00\x69\x00\x72\x00\x74\x00\x79\x00\x6d\x00\xe4\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\ +\x0c\x44\x72\x61\x66\x74\x5f\x4f\x66\x66\x73\x65\x74\x01\x03\x00\ +\x00\x00\x96\x00\x41\x00\x6b\x00\x74\x00\x69\x00\x69\x00\x76\x00\ +\x69\x00\x73\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x69\x00\x6e\x00\x20\x00\x73\x00\x69\x00\ +\x69\x00\x72\x00\x72\x00\x6f\x00\x6b\x00\x73\x00\x65\x00\x74\x00\ +\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x6b\x00\ +\x6f\x00\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\x61\x00\x61\x00\ +\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\ +\x72\x00\x61\x00\x6a\x00\x6f\x00\x69\x00\x74\x00\x74\x00\x61\x00\ +\x61\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x6b\x00\ +\x6f\x00\x70\x00\x69\x00\x6f\x00\x69\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x48\x4f\x66\x66\x73\x65\x74\x73\x20\x74\x68\x65\x20\x61\ +\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x2e\x20\x43\x54\ +\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\ +\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\ +\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0c\ +\x44\x72\x61\x66\x74\x5f\x4f\x66\x66\x73\x65\x74\x01\x03\x00\x00\ +\x00\x2c\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\ +\x00\x20\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x16\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x20\x70\x6f\x69\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x50\x6f\x69\x6e\x74\x01\x03\ +\x00\x00\x00\x0a\x00\x50\x00\x69\x00\x73\x00\x74\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x50\x6f\x69\x6e\x74\x07\x00\x00\ +\x00\x0b\x44\x72\x61\x66\x74\x5f\x50\x6f\x69\x6e\x74\x01\x03\x00\ +\x00\x00\x78\x00\x4c\x00\x75\x00\x6f\x00\x20\x00\x73\x00\xe4\x00\ +\xe4\x00\x6e\x00\x6e\x00\xf6\x00\x6c\x00\x6c\x00\x69\x00\x6e\x00\ +\x65\x00\x6e\x00\x20\x00\x6d\x00\x6f\x00\x6e\x00\x69\x00\x6b\x00\ +\x75\x00\x6c\x00\x6d\x00\x69\x00\x6f\x00\x2e\x00\x20\x00\x43\x00\ +\x54\x00\x52\x00\x4c\x00\x20\x00\x6b\x00\x6f\x00\x68\x00\x64\x00\ +\x69\x00\x73\x00\x74\x00\x61\x00\x61\x00\x2c\x00\x20\x00\x53\x00\ +\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x72\x00\x61\x00\x6a\x00\ +\x6f\x00\x69\x00\x74\x00\x74\x00\x61\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x3b\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x72\ +\x65\x67\x75\x6c\x61\x72\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x2e\x20\ +\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\ +\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\ +\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x50\x6f\x6c\x79\x67\ +\x6f\x6e\x01\x03\x00\x00\x00\x14\x00\x4d\x00\x6f\x00\x6e\x00\x69\ +\x00\x6b\x00\x75\x00\x6c\x00\x6d\x00\x69\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x07\x50\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\ +\x00\x0d\x44\x72\x61\x66\x74\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\ +\x03\x00\x00\x00\x66\x00\x4c\x00\x75\x00\x6f\x00\x20\x00\x32\x00\ +\x2d\x00\x70\x00\x69\x00\x73\x00\x74\x00\x65\x00\x65\x00\x6e\x00\ +\x20\x00\x73\x00\x75\x00\x6f\x00\x72\x00\x61\x00\x6b\x00\x61\x00\ +\x69\x00\x64\x00\x65\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\ +\x4c\x00\x20\x00\x6b\x00\x6f\x00\x68\x00\x64\x00\x69\x00\x73\x00\ +\x74\x00\x61\x00\x61\x00\x20\x00\x6b\x00\x6f\x00\x68\x00\x74\x00\ +\x65\x00\x69\x00\x73\x00\x69\x00\x69\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x29\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x32\ +\x2d\x70\x6f\x69\x6e\x74\x20\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\ +\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x07\x00\ +\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x52\x65\x63\x74\x61\x6e\x67\ +\x6c\x65\x01\x03\x00\x00\x00\x16\x00\x53\x00\x75\x00\x6f\x00\x72\ +\x00\x61\x00\x6b\x00\x75\x00\x6c\x00\x6d\x00\x69\x00\x6f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x52\x65\x63\x74\x61\x6e\x67\x6c\ +\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x52\x65\x63\x74\ +\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\x0e\x00\x50\x00\x79\x00\ +\xf6\x00\x72\x00\x69\x00\x74\x00\xe4\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x06\x52\x6f\x74\x61\x74\x65\x07\x00\x00\x00\x0c\x44\x72\ +\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\x01\x03\x00\x00\x00\x94\ +\x00\x50\x00\x79\x00\xf6\x00\x72\x00\x69\x00\x74\x00\x74\x00\xe4\ +\x00\xe4\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x74\ +\x00\x75\x00\x6a\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x65\x00\x6a\x00\x61\x00\x2e\x00\x20\x00\x43\ +\x00\x54\x00\x52\x00\x4c\x00\x2d\x00\x6b\x00\x6f\x00\x68\x00\x64\ +\x00\x69\x00\x73\x00\x74\x00\x61\x00\x2c\x00\x20\x00\x53\x00\x48\ +\x00\x49\x00\x46\x00\x54\x00\x2d\x00\x72\x00\x61\x00\x6a\x00\x6f\ +\x00\x69\x00\x74\x00\x61\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\ +\x00\x2d\x00\x6c\x00\x75\x00\x6f\x00\x20\x00\x6b\x00\x6f\x00\x70\ +\x00\x69\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x6f\ +\x74\x61\x74\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x20\x43\x54\x52\x4c\ +\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\ +\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\ +\x54\x20\x63\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x6f\x70\x79\ +\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\ +\x65\x01\x03\x00\x00\x00\x0e\x00\x53\x00\x6b\x00\x61\x00\x61\x00\ +\x6c\x00\x61\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x53\ +\x63\x61\x6c\x65\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x53\ +\x63\x61\x6c\x65\x01\x03\x00\x00\x00\xa8\x00\x53\x00\x6b\x00\x61\ +\x00\x61\x00\x6c\x00\x61\x00\x61\x00\x20\x00\x76\x00\x61\x00\x6c\ +\x00\x69\x00\x74\x00\x75\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x74\x00\x20\x00\x70\x00\x65\ +\x00\x72\x00\x75\x00\x73\x00\x70\x00\x69\x00\x73\x00\x74\x00\x65\ +\x00\x65\x00\x73\x00\x74\x00\xe4\x00\x2e\x00\x20\x00\x43\x00\x54\ +\x00\x52\x00\x4c\x00\x20\x00\x6b\x00\x6f\x00\x68\x00\x64\x00\x69\ +\x00\x73\x00\x74\x00\x61\x00\x61\x00\x2c\x00\x20\x00\x53\x00\x48\ +\x00\x49\x00\x46\x00\x54\x00\x20\x00\x72\x00\x61\x00\x6a\x00\x6f\ +\x00\x69\x00\x74\x00\x74\x00\x61\x00\x61\x00\x2c\x00\x20\x00\x41\ +\x00\x4c\x00\x54\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x6f\ +\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5c\x53\x63\x61\x6c\ +\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x72\x6f\x6d\x20\x61\x20\x62\ +\x61\x73\x65\x20\x70\x6f\x69\x6e\x74\x2e\x20\x43\x54\x52\x4c\x20\ +\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\ +\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\ +\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0b\x44\x72\x61\ +\x66\x74\x5f\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\x1a\x00\x56\ +\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x73\x00\x65\x00\x20\x00\x72\ +\x00\x79\x00\x68\x00\x6d\x00\xe4\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0c\x53\x65\x6c\x65\x63\x74\x20\x67\x72\x6f\x75\x70\x07\x00\ +\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x47\ +\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x8e\x00\x56\x00\x61\x00\x6c\ +\x00\x69\x00\x74\x00\x73\x00\x65\x00\x65\x00\x20\x00\x6b\x00\x61\ +\x00\x69\x00\x6b\x00\x6b\x00\x69\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x74\x00\x2c\x00\x20\x00\x6a\ +\x00\x6f\x00\x69\x00\x73\x00\x73\x00\x61\x00\x20\x00\x6f\x00\x6e\ +\x00\x20\x00\x73\x00\x61\x00\x6d\x00\x61\x00\x74\x00\x20\x00\x76\ +\x00\x61\x00\x6e\x00\x68\x00\x65\x00\x6d\x00\x6d\x00\x61\x00\x74\ +\x00\x20\x00\x74\x00\xe4\x00\x6d\x00\xe4\x00\x6e\x00\x20\x00\x72\ +\x00\x79\x00\x68\x00\x6d\x00\xe4\x00\x6e\x00\x20\x00\x6b\x00\x61\ +\x00\x6e\x00\x73\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x37\x53\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x73\ +\x61\x6d\x65\x20\x70\x61\x72\x65\x6e\x74\x73\x20\x61\x73\x20\x74\ +\x68\x69\x73\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x11\x44\x72\ +\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x47\x72\x6f\x75\x70\x01\ +\x03\x00\x00\x00\x64\x00\x56\x00\x61\x00\x6c\x00\x69\x00\x74\x00\ +\x73\x00\x65\x00\x20\x00\x74\x00\x79\x00\xf6\x00\x73\x00\x6b\x00\ +\x65\x00\x6e\x00\x74\x00\x65\x00\x6c\x00\x79\x00\x74\x00\x61\x00\ +\x73\x00\x6f\x00\x20\x00\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\x00\ +\x74\x00\x72\x00\x69\x00\x61\x00\x6e\x00\x20\x00\x6c\x00\x75\x00\ +\x6f\x00\x6d\x00\x69\x00\x73\x00\x74\x00\x61\x00\x20\x00\x76\x00\ +\x61\x00\x72\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2c\x53\x65\x6c\x65\x63\x74\x20\x61\x20\x77\x6f\x72\x6b\ +\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x20\x66\x6f\x72\x20\x67\x65\ +\x6f\x6d\x65\x74\x72\x79\x20\x63\x72\x65\x61\x74\x69\x6f\x6e\x07\ +\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\ +\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x1a\x00\x56\x00\x61\x00\ +\x6c\x00\x69\x00\x74\x00\x73\x00\x65\x00\x20\x00\x70\x00\x69\x00\ +\x6e\x00\x74\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x53\ +\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x44\ +\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\ +\x01\x03\x00\x00\x00\x70\x00\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\ +\x00\x72\x00\x74\x00\x20\x00\x62\x00\x69\x00\x64\x00\x69\x00\x72\ +\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x6c\ +\x00\x6c\x00\x79\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\ +\x00\x65\x00\x6e\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\ +\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x53\x00\x6b\x00\x65\ +\x00\x74\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\ +\x43\x6f\x6e\x76\x65\x72\x74\x20\x62\x69\x64\x69\x72\x65\x63\x74\ +\x69\x6f\x6e\x61\x6c\x6c\x79\x20\x62\x65\x74\x77\x65\x65\x6e\x20\ +\x44\x72\x61\x66\x74\x20\x61\x6e\x64\x20\x53\x6b\x65\x74\x63\x68\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x11\x44\x72\x61\ +\x66\x74\x5f\x53\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\ +\x00\x00\x00\x58\x00\x4c\x00\x75\x00\x6f\x00\x20\x00\x6d\x00\x75\ +\x00\x6f\x00\x64\x00\x6f\x00\x6e\x00\x20\x00\x32\x00\x44\x00\x20\ +\x00\x6e\x00\xe4\x00\x6b\x00\x79\x00\x6d\x00\xe4\x00\x6e\x00\x20\ +\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x75\x00\x69\x00\x73\ +\x00\x74\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x65\x00\x69\x00\x73\x00\x74\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x2a\x43\x72\x65\x61\x74\x65\x73\x20\x53\x68\ +\x61\x70\x65\x20\x32\x44\x20\x76\x69\x65\x77\x73\x20\x6f\x66\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x61\x70\x65\ +\x32\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\x20\x00\x4d\x00\x75\ +\x00\x6f\x00\x64\x00\x6f\x00\x6e\x00\x20\x00\x32\x00\x44\x00\x20\ +\x00\x6e\x00\xe4\x00\x6b\x00\x79\x00\x6d\x00\xe4\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x53\x68\x61\x70\x65\x20\x32\x44\x20\x76\ +\x69\x65\x77\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\ +\x61\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\x1a\x00\ +\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x53\x00\x6e\x00\x61\x00\ +\x70\x00\x20\x00\x42\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x53\x68\x6f\x77\x20\x53\x6e\x61\x70\x20\x42\x61\x72\ +\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x6f\x77\x53\ +\x6e\x61\x70\x42\x61\x72\x01\x03\x00\x00\x00\x30\x00\x53\x00\x68\ +\x00\x6f\x00\x77\x00\x73\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\ +\x00\x74\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x74\ +\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x18\x53\x68\x6f\x77\x73\x20\x44\x72\x61\x66\ +\x74\x20\x73\x6e\x61\x70\x20\x74\x6f\x6f\x6c\x62\x61\x72\x07\x00\ +\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x6f\x77\x53\x6e\x61\ +\x70\x42\x61\x72\x01\x03\x00\x00\x00\x38\x00\x4c\x00\x75\x00\x6f\ +\x00\x20\x00\x68\x00\x75\x00\x6f\x00\x6d\x00\x61\x00\x75\x00\x74\ +\x00\x75\x00\x73\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\ +\x00\x2d\x00\x4b\x00\x6f\x00\x68\x00\x64\x00\x69\x00\x73\x00\x74\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x6e\x20\x61\x6e\x6e\x6f\x74\x61\x74\x69\x6f\ +\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x07\ +\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\x78\x74\x01\x03\ +\x00\x00\x00\x0c\x00\x54\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x69\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\x65\x78\x74\x07\x00\ +\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\x78\x74\x01\x03\x00\ +\x00\x00\x28\x00\x56\x00\x61\x00\x69\x00\x68\x00\x64\x00\x61\x00\ +\x20\x00\x72\x00\x61\x00\x6a\x00\x6f\x00\x69\x00\x74\x00\x65\x00\ +\x74\x00\x69\x00\x6c\x00\x61\x00\x61\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x17\x54\x6f\x67\x67\x6c\x65\x20\x63\x6f\x6e\x73\ +\x74\x72\x75\x63\x69\x6f\x6e\x20\x4d\x6f\x64\x65\x07\x00\x00\x00\ +\x1c\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\ +\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x4d\x6f\x64\x65\x01\x03\x00\ +\x00\x00\x5a\x00\x56\x00\x61\x00\x69\x00\x68\x00\x74\x00\x61\x00\ +\x61\x00\x20\x00\x72\x00\x61\x00\x6b\x00\x65\x00\x6e\x00\x6e\x00\ +\x65\x00\x74\x00\x69\x00\x6c\x00\x61\x00\x61\x00\x20\x00\x73\x00\ +\x65\x00\x75\x00\x72\x00\x61\x00\x61\x00\x76\x00\x69\x00\x6c\x00\ +\x6c\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x65\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x2e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x2f\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\ +\x68\x65\x20\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\ +\x4d\x6f\x64\x65\x20\x66\x6f\x72\x20\x6e\x65\x78\x74\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x1c\x44\x72\x61\x66\x74\ +\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\ +\x69\x6f\x6e\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x26\x00\x4b\x00\ +\x79\x00\x74\x00\x6b\x00\x65\x00\x20\x00\x6a\x00\x61\x00\x74\x00\ +\x6b\x00\x75\x00\x76\x00\x75\x00\x75\x00\x73\x00\x74\x00\x69\x00\ +\x6c\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x6f\x67\ +\x67\x6c\x65\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x20\x4d\x6f\x64\ +\x65\x07\x00\x00\x00\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\ +\x6c\x65\x43\x6f\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\x01\x03\ +\x00\x00\x00\x5c\x00\x4b\x00\x79\x00\x74\x00\x6b\x00\x65\x00\x65\ +\x00\x20\x00\x6a\x00\x61\x00\x74\x00\x6b\x00\x75\x00\x76\x00\x75\ +\x00\x75\x00\x73\x00\x74\x00\x69\x00\x6c\x00\x61\x00\x6e\x00\x20\ +\x00\x73\x00\x65\x00\x75\x00\x72\x00\x61\x00\x61\x00\x76\x00\x69\ +\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x65\ +\x00\x6e\x00\x6e\x00\x6f\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x2e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x54\x6f\x67\x67\x6c\x65\ +\x73\x20\x74\x68\x65\x20\x43\x6f\x6e\x74\x69\x6e\x75\x65\x20\x4d\ +\x6f\x64\x65\x20\x66\x6f\x72\x20\x6e\x65\x78\x74\x20\x63\x6f\x6d\ +\x6d\x61\x6e\x64\x73\x2e\x07\x00\x00\x00\x18\x44\x72\x61\x66\x74\ +\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x74\x69\x6e\x75\x65\x4d\ +\x6f\x64\x65\x01\x03\x00\x00\x00\x9c\x00\x56\x00\x61\x00\x69\x00\ +\x68\x00\x74\x00\x61\x00\x61\x00\x20\x00\x6e\x00\xe4\x00\x79\x00\ +\x74\x00\x74\x00\xf6\x00\x74\x00\x69\x00\x6c\x00\x61\x00\x61\x00\ +\x6e\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x74\x00\ +\x75\x00\x6a\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x69\x00\x65\x00\x6e\x00\x20\x00\x4c\x00\ +\x61\x00\x6e\x00\x6b\x00\x61\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\ +\x69\x00\x6e\x00\x20\x00\x6a\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\ +\x6c\x00\x6c\x00\x61\x00\x76\x00\x69\x00\x69\x00\x76\x00\x6f\x00\ +\x6a\x00\x65\x00\x6e\x00\x20\x00\x76\x00\xe4\x00\x6c\x00\x69\x00\ +\x6c\x00\x6c\x00\xe4\x08\x00\x00\x00\x00\x06\x00\x00\x00\x46\x53\ +\x77\x61\x70\x73\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x6d\x6f\x64\ +\x65\x20\x6f\x66\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x77\x69\ +\x72\x65\x66\x72\x61\x6d\x65\x20\x61\x6e\x64\x20\x66\x6c\x61\x74\ +\x6c\x69\x6e\x65\x73\x07\x00\x00\x00\x17\x44\x72\x61\x66\x74\x5f\ +\x54\x6f\x67\x67\x6c\x65\x44\x69\x73\x70\x6c\x61\x79\x4d\x6f\x64\ +\x65\x01\x03\x00\x00\x00\x28\x00\x56\x00\x61\x00\x69\x00\x68\x00\ +\x64\x00\x61\x00\x20\x00\x6e\x00\xe4\x00\x79\x00\x74\x00\x74\x00\ +\xf6\x00\x20\x00\x74\x00\x69\x00\x6c\x00\x61\x00\x61\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x13\x54\x6f\x67\x67\x6c\x65\x20\ +\x64\x69\x73\x70\x6c\x61\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\ +\x17\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x44\x69\x73\ +\x70\x6c\x61\x79\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x16\x00\x54\ +\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x47\x00\x72\ +\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x54\x6f\ +\x67\x67\x6c\x65\x20\x47\x72\x69\x64\x07\x00\x00\x00\x10\x44\x72\ +\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x47\x72\x69\x64\x01\x03\ +\x00\x00\x00\x38\x00\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\ +\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\x00\x72\ +\x00\x61\x00\x66\x00\x74\x00\x20\x00\x67\x00\x69\x00\x64\x00\x20\ +\x00\x6f\x00\x6e\x00\x2f\x00\x6f\x00\x66\x00\x66\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1c\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\ +\x65\x20\x44\x72\x61\x66\x74\x20\x67\x69\x64\x20\x6f\x6e\x2f\x6f\ +\x66\x66\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\ +\x67\x6c\x65\x47\x72\x69\x64\x01\x03\x00\x00\x00\x16\x00\x54\x00\ +\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x73\x00\x6e\x00\ +\x61\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x54\x6f\x67\ +\x67\x6c\x65\x20\x73\x6e\x61\x70\x07\x00\x00\x00\x10\x44\x72\x61\ +\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x53\x6e\x61\x70\x01\x03\x00\ +\x00\x00\x38\x00\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\ +\x73\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\ +\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\ +\x6f\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x66\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1c\x54\x6f\x67\x67\x6c\x65\x73\x20\x44\x72\x61\ +\x66\x74\x20\x73\x6e\x61\x70\x20\x6f\x6e\x20\x6f\x72\x20\x6f\x66\ +\x66\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\ +\x6c\x65\x53\x6e\x61\x70\x01\x03\x00\x00\x00\x0c\x00\x54\x00\x72\ +\x00\x69\x00\x6d\x00\x65\x00\x78\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x06\x54\x72\x69\x6d\x65\x78\x07\x00\x00\x00\x0c\x44\x72\x61\ +\x66\x74\x5f\x54\x72\x69\x6d\x65\x78\x01\x03\x00\x00\x01\x40\x00\ +\x54\x00\x72\x00\x69\x00\x6d\x00\x6d\x00\x61\x00\x61\x00\x20\x00\ +\x74\x00\x61\x00\x69\x00\x20\x00\x6c\x00\x61\x00\x61\x00\x6a\x00\ +\x65\x00\x6e\x00\x74\x00\x61\x00\x61\x00\x20\x00\x76\x00\x61\x00\ +\x6c\x00\x69\x00\x74\x00\x75\x00\x74\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x74\x00\x2c\x00\x20\x00\ +\x74\x00\x61\x00\x69\x00\x20\x00\x70\x00\x75\x00\x72\x00\x73\x00\ +\x6f\x00\x74\x00\x74\x00\x61\x00\x61\x00\x20\x00\x79\x00\x68\x00\ +\x64\x00\x65\x00\x6e\x00\x20\x00\x70\x00\x69\x00\x6e\x00\x6e\x00\ +\x61\x00\x6e\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ +\x20\x00\x6b\x00\x6f\x00\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\ +\x61\x00\x61\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\ +\x54\x00\x20\x00\x72\x00\x61\x00\x6a\x00\x6f\x00\x69\x00\x74\x00\ +\x74\x00\x61\x00\x61\x00\x20\x00\x6e\x00\x79\x00\x6b\x00\x79\x00\ +\x69\x00\x73\x00\x74\x00\xe4\x00\x20\x00\x73\x00\x65\x00\x67\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x74\x00\x69\x00\xe4\x00\x20\x00\ +\x74\x00\x61\x00\x69\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\ +\x61\x00\x61\x00\x6c\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\ +\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x69\x00\ +\x6c\x00\x6c\x00\x65\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\ +\x20\x00\x6b\x00\xe4\x00\xe4\x00\x6e\x00\x74\x00\xe4\x00\xe4\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x89\x54\x72\x69\x6d\x73\x20\x6f\ +\x72\x20\x65\x78\x74\x65\x6e\x64\x73\x20\x74\x68\x65\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x6f\ +\x72\x20\x65\x78\x74\x72\x75\x64\x65\x73\x20\x73\x69\x6e\x67\x6c\ +\x65\x20\x66\x61\x63\x65\x73\x2e\x20\x43\x54\x52\x4c\x20\x73\x6e\ +\x61\x70\x73\x2c\x20\x53\x48\x49\x46\x54\x20\x63\x6f\x6e\x73\x74\ +\x72\x61\x69\x6e\x73\x20\x74\x6f\x20\x63\x75\x72\x72\x65\x6e\x74\ +\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\x72\x20\x74\x6f\x20\x6e\ +\x6f\x72\x6d\x61\x6c\x2c\x20\x41\x4c\x54\x20\x69\x6e\x76\x65\x72\ +\x74\x73\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x54\x72\x69\ +\x6d\x65\x78\x01\x03\x00\x00\x00\x32\x00\x4b\x00\x75\x00\x6d\x00\ +\x6f\x00\x61\x00\x20\x00\x76\x00\x69\x00\x69\x00\x6d\x00\x65\x00\ +\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x67\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x74\x00\x69\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x11\x55\x6e\x64\x6f\x20\x6c\x61\x73\x74\x20\x73\ +\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\ +\x5f\x55\x6e\x64\x6f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x7c\x00\ +\x4b\x00\x75\x00\x6d\x00\x6f\x00\x61\x00\x61\x00\x20\x00\x76\x00\ +\x69\x00\x69\x00\x6d\x00\x65\x00\x6b\x00\x73\x00\x69\x00\x20\x00\ +\x70\x00\x69\x00\x69\x00\x72\x00\x72\x00\x65\x00\x74\x00\x79\x00\ +\x74\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x69\x00\x74\x00\x20\x00\x70\x00\x69\x00\x69\x00\x72\x00\ +\x72\x00\x65\x00\x74\x00\x79\x00\x73\x00\x74\x00\xe4\x00\x20\x00\ +\x70\x00\x69\x00\x69\x00\x72\x00\x75\x00\x73\x00\x74\x00\x75\x00\ +\x6b\x00\x73\x00\x65\x00\x73\x00\x74\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x35\x55\x6e\x64\x6f\x65\x73\x20\x74\x68\x65\x20\ +\x6c\x61\x73\x74\x20\x64\x72\x61\x77\x6e\x20\x73\x65\x67\x6d\x65\ +\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x6c\x69\x6e\x65\x20\x62\ +\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x07\x00\x00\x00\x0e\x44\ +\x72\x61\x66\x74\x5f\x55\x6e\x64\x6f\x4c\x69\x6e\x65\x01\x03\x00\ +\x00\x00\xd2\x00\x59\x00\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\ +\xe4\x00\xe4\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\ +\x75\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x69\x00\x74\x00\x20\x00\x79\x00\x68\x00\x64\x00\x65\x00\ +\x6b\x00\x73\x00\x69\x00\x20\x00\x74\x00\x61\x00\x69\x00\x20\x00\ +\x6d\x00\x75\x00\x75\x00\x6e\x00\x74\x00\x61\x00\x61\x00\x20\x00\ +\x73\x00\x75\x00\x6c\x00\x6a\x00\x65\x00\x74\x00\x75\x00\x74\x00\ +\x20\x00\x6a\x00\x6f\x00\x68\x00\x74\x00\x69\x00\x6d\x00\x65\x00\ +\x74\x00\x20\x00\x74\x00\xe4\x00\x79\x00\x74\x00\x65\x00\x74\x00\ +\x79\x00\x69\x00\x6b\x00\x73\x00\x69\x00\x20\x00\x70\x00\x69\x00\ +\x6e\x00\x6e\x00\x6f\x00\x69\x00\x6b\x00\x73\x00\x69\x00\x20\x00\ +\x74\x00\x61\x00\x69\x00\x20\x00\x79\x00\x68\x00\x64\x00\x69\x00\ +\x73\x00\x74\x00\xe4\x00\xe4\x00\x20\x00\x70\x00\x69\x00\x6e\x00\ +\x6e\x00\x61\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x4a\ +\x6f\x69\x6e\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\x6f\ +\x6e\x65\x2c\x20\x6f\x72\x20\x63\x6f\x6e\x76\x65\x72\x74\x73\x20\ +\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x73\x20\x74\x6f\x20\ +\x66\x69\x6c\x6c\x65\x64\x20\x66\x61\x63\x65\x73\x2c\x20\x6f\x72\ +\x20\x75\x6e\x69\x74\x65\x20\x66\x61\x63\x65\x73\x07\x00\x00\x00\ +\x0d\x44\x72\x61\x66\x74\x5f\x55\x70\x67\x72\x61\x64\x65\x01\x03\ +\x00\x00\x00\x0e\x00\x50\x00\xe4\x00\x69\x00\x76\x00\x69\x00\x74\ +\x00\xe4\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x55\x70\x67\x72\ +\x61\x64\x65\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x55\x70\ +\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x98\x00\x43\x00\x72\x00\ +\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\ +\x6d\x00\x75\x00\x6c\x00\x74\x00\x69\x00\x70\x00\x6c\x00\x65\x00\ +\x2d\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x44\x00\ +\x72\x00\x61\x00\x66\x00\x74\x00\x57\x00\x69\x00\x72\x00\x65\x00\ +\x20\x00\x28\x00\x44\x00\x57\x00\x69\x00\x72\x00\x65\x00\x29\x00\ +\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x74\x00\ +\x6f\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x2c\x00\x20\x00\ +\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\ +\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4c\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\ +\x70\x6f\x69\x6e\x74\x20\x44\x72\x61\x66\x74\x57\x69\x72\x65\x20\ +\x28\x44\x57\x69\x72\x65\x29\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\ +\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\ +\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\x72\ +\x61\x66\x74\x5f\x57\x69\x72\x65\x01\x03\x00\x00\x00\x0a\x00\x44\ +\x00\x57\x00\x69\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x44\x57\x69\x72\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\ +\x74\x5f\x57\x69\x72\x65\x01\x03\x00\x00\x00\x58\x00\x4d\x00\x75\ +\x00\x75\x00\x6e\x00\x74\x00\x61\x00\x61\x00\x20\x00\x6c\x00\x61\ +\x00\x6e\x00\x67\x00\x61\x00\x6e\x00\x20\x00\x6a\x00\x61\x00\x20\ +\x00\x42\x00\xe9\x00\x7a\x00\x69\x00\x65\x00\x72\x00\x2d\x00\x6b\ +\x00\xe4\x00\x79\x00\x72\x00\xe4\x00\x76\x00\x69\x00\x69\x00\x76\ +\x00\x61\x00\x6e\x00\x20\x00\x76\x00\xe4\x00\x6c\x00\x69\x00\x6c\ +\x00\x6c\x00\xe4\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x43\x6f\ +\x6e\x76\x65\x72\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x57\ +\x69\x72\x65\x20\x61\x6e\x64\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\ +\x00\x00\x00\x13\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x54\x6f\ +\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x34\x00\x4c\x00\ +\x61\x00\x6e\x00\x6b\x00\x61\x00\x20\x00\x42\x00\xe9\x00\x7a\x00\ +\x69\x00\x65\x00\x72\x00\x2d\x00\x6b\x00\xe4\x00\x79\x00\x72\x00\ +\xe4\x00\x76\x00\x69\x00\x69\x00\x76\x00\x61\x00\x6b\x00\x73\x00\ +\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x57\x69\x72\x65\x20\ +\x74\x6f\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x13\x44\ +\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x54\x6f\x42\x53\x70\x6c\x69\ +\x6e\x65\x01\x03\x00\x00\x00\x12\x00\x41\x00\x6c\x00\x74\x00\x20\ +\x00\x6d\x00\x75\x00\x6f\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x07\x41\x6c\x74\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x4a\x00\x56\x00\x61\x00\x69\x00\x68\x00\x74\x00\x6f\x00\ +\x65\x00\x68\x00\x74\x00\x6f\x00\x69\x00\x6e\x00\x65\x00\x6e\x00\ +\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x6b\x00\x75\x00\x76\x00\ +\x69\x00\x6f\x00\x69\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x73\x00\ +\x69\x00\x6a\x00\x61\x00\x69\x00\x6e\x00\x74\x00\x69\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1f\x41\x6c\x74\x65\x72\x6e\x61\x74\x65\ +\x20\x53\x56\x47\x20\x50\x61\x74\x74\x65\x72\x6e\x73\x20\x6c\x6f\ +\x63\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x41\ +\x00\x6c\x00\x77\x00\x61\x00\x79\x00\x73\x00\x20\x00\x73\x00\x68\ +\x00\x6f\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x41\x6c\ +\x77\x61\x79\x73\x20\x73\x68\x6f\x77\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x8e\x00\x4b\x00\x6f\x00\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\ +\x61\x00\x20\x00\x61\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x69\x00\x68\x00\ +\x69\x00\x6e\x00\x20\x00\x28\x00\x61\x00\x73\x00\x65\x00\x74\x00\ +\x61\x00\x20\x00\x6b\x00\x6f\x00\x68\x00\x64\x00\x69\x00\x73\x00\ +\x74\x00\x75\x00\x6b\x00\x73\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\ +\x75\x00\x6f\x00\x64\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x76\x00\ +\x61\x00\x69\x00\x6e\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x73\x00\ +\x20\x00\x70\x00\xe4\x00\xe4\x00\x6c\x00\x74\x00\xe4\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x41\x6c\x77\x61\x79\x73\x20\ +\x73\x6e\x61\x70\x20\x74\x6f\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x28\x64\x69\x73\x61\x62\x6c\x65\x20\x73\x6e\x61\x70\x20\x6d\x6f\ +\x64\x20\x6b\x65\x79\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x41\ +\x00\x72\x00\x69\x00\x61\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x41\x72\x69\x61\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\ +\x4b\x00\x65\x00\x6e\x00\x6f\x00\x76\x00\x69\x00\x69\x00\x76\x00\ +\x61\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\ +\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x35\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x16\x00\x4b\x00\x65\x00\x6e\x00\x6f\x00\x76\x00\x69\x00\x69\ +\x00\x76\x00\x61\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x37\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x16\x00\x4b\x00\x65\x00\x6e\x00\x6f\x00\x76\x00\ +\x69\x00\x69\x00\x76\x00\x61\x00\x20\x00\x39\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x39\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x78\x00\x56\x00\x61\x00\x6c\x00\x69\ +\x00\x74\x00\x73\x00\x65\x00\x20\x00\x74\x00\xe4\x00\x6d\x00\xe4\ +\x00\x2c\x00\x20\x00\x6a\x00\x6f\x00\x73\x00\x20\x00\x68\x00\x61\ +\x00\x6c\x00\x75\x00\x61\x00\x74\x00\x20\x00\x61\x00\x6c\x00\x75\ +\x00\x65\x00\x65\x00\x74\x00\x20\x00\x28\x00\x33\x00\x44\x00\x20\ +\x00\x70\x00\x69\x00\x6e\x00\x6e\x00\x61\x00\x74\x00\x29\x00\x20\ +\x00\x6d\x00\x79\x00\xf6\x00\x73\x00\x20\x00\x74\x00\x75\x00\x6f\ +\x00\x74\x00\x61\x00\x76\x00\x69\x00\x6b\x00\x73\x00\x69\x00\x2e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3f\x43\x68\x65\x63\x6b\x20\ +\x74\x68\x69\x73\x20\x69\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\ +\x20\x74\x68\x65\x20\x61\x72\x65\x61\x73\x20\x28\x33\x44\x20\x66\ +\x61\x63\x65\x73\x29\x20\x74\x6f\x20\x62\x65\x20\x69\x6d\x70\x6f\ +\x72\x74\x65\x64\x20\x74\x6f\x6f\x2e\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\xa4\x00\x56\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x73\x00\x65\x00\ +\x20\x00\x74\x00\xe4\x00\x6d\x00\xe4\x00\x20\x00\x6a\x00\x6f\x00\ +\x73\x00\x20\x00\x68\x00\x61\x00\x6c\x00\x75\x00\x61\x00\x74\x00\ +\x20\x00\x65\x00\x74\x00\x74\x00\xe4\x00\x20\x00\x65\x00\x69\x00\ +\x2d\x00\x6e\x00\x69\x00\x6d\x00\x65\x00\x74\x00\x74\x00\x79\x00\ +\x6a\x00\xe4\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x6b\x00\x6b\x00\ +\x65\x00\x6a\x00\x61\x00\x20\x00\x28\x00\x61\x00\x6c\x00\x6b\x00\ +\x61\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x2a\x00\x29\x00\ +\x20\x00\x76\x00\x6f\x00\x69\x00\x64\x00\x61\x00\x61\x00\x6e\x00\ +\x20\x00\x6d\x00\x79\x00\xf6\x00\x73\x00\x20\x00\x74\x00\x75\x00\ +\x6f\x00\x64\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\x43\ +\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x79\x6f\x75\ +\x20\x77\x61\x6e\x74\x20\x74\x68\x65\x20\x6e\x6f\x6e\x2d\x6e\x61\ +\x6d\x65\x64\x20\x62\x6c\x6f\x63\x6b\x73\x20\x28\x62\x65\x67\x69\ +\x6e\x6e\x69\x6e\x67\x20\x77\x69\x74\x68\x20\x61\x20\x2a\x29\x20\ +\x74\x6f\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\ +\x6f\x6f\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x59\x00\x6d\x00\x70\ +\x00\x79\x00\x72\x00\xe4\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x35\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x10\x00\x59\x00\x6d\x00\x70\x00\x79\x00\x72\x00\xe4\ +\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x69\ +\x72\x63\x6c\x65\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x59\ +\x00\x6d\x00\x70\x00\x79\x00\x72\x00\xe4\x00\x20\x00\x39\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x39\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x42\x00\x56\x00\xe4\x00\x72\x00\x69\ +\x00\x20\x00\x6b\x00\x61\x00\x72\x00\x74\x00\x6f\x00\x69\x00\x74\ +\x00\x65\x00\x74\x00\x74\x00\x75\x00\x20\x00\x76\x00\x69\x00\x69\ +\x00\x76\x00\x61\x00\x6e\x00\x6c\x00\x65\x00\x76\x00\x65\x00\x79\ +\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x19\x43\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x65\x64\ +\x20\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x2c\x00\x56\x00\xe4\x00\x72\x00\x69\x00\x6b\x00\ +\x61\x00\x72\x00\x74\x00\x6f\x00\x69\x00\x74\x00\x75\x00\x73\x00\ +\x2d\x00\x74\x00\x69\x00\x65\x00\x64\x00\x6f\x00\x73\x00\x74\x00\ +\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x43\x6f\x6c\x6f\x72\ +\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x1a\x00\x52\x00\x61\x00\x6a\x00\x6f\x00\x69\x00\ +\x74\x00\x65\x00\x20\x00\x6d\x00\x75\x00\x6f\x00\x74\x00\x6f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x73\x74\x72\x61\ +\x69\x6e\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x52\ +\x00\x61\x00\x6b\x00\x65\x00\x6e\x00\x6e\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\ +\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x52\x00\x61\x00\x6b\ +\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x76\ +\x00\xe4\x00\x72\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\ +\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x63\x6f\x6c\ +\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\x52\x00\x61\x00\x6a\ +\x00\x6f\x00\x69\x00\x74\x00\x65\x00\x72\x00\x79\x00\x68\x00\x6d\ +\x00\xe4\x00\x6e\x00\x20\x00\x6e\x00\x69\x00\x6d\x00\x69\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x17\x43\x6f\x6e\x73\x74\x72\x75\x63\ +\x74\x69\x6f\x6e\x20\x67\x72\x6f\x75\x70\x20\x6e\x61\x6d\x65\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x1e\x00\x43\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\x00\x63\x00\ +\x68\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x43\ +\x72\x65\x61\x74\x65\x20\x53\x6b\x65\x74\x63\x68\x65\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x34\x00\x4c\x00\x75\x00\x6f\x00\x20\x00\x70\ +\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\ +\x00\x73\x00\x69\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x65\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x19\x43\x72\x65\x61\x74\x65\x20\x70\x61\x72\x61\x6d\ +\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x2a\x00\x44\x00\x58\x00\x46\x00\x2d\x00\x6d\x00\ +\x75\x00\x6f\x00\x74\x00\x6f\x00\x69\x00\x6c\x00\x75\x00\x61\x00\ +\x73\x00\x65\x00\x74\x00\x75\x00\x6b\x00\x73\x00\x65\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x12\x44\x58\x46\x20\x66\x6f\x72\ +\x6d\x61\x74\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x14\x00\x4f\x00\x6c\x00\x65\x00\x74\x00\x75\x00\x73\x00\ +\x76\x00\xe4\x00\x72\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0d\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x68\x00\x4f\x00\x6c\x00\x65\x00\x74\x00\x75\ +\x00\x73\x00\x61\x00\x72\x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x6d\ +\x00\x75\x00\x6b\x00\x61\x00\x69\x00\x73\x00\x65\x00\x74\x00\x20\ +\x00\x6b\x00\x6f\x00\x72\x00\x6b\x00\x65\x00\x75\x00\x64\x00\x65\ +\x00\x74\x00\x20\x00\x74\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x69\ +\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x6a\x00\x61\x00\x20\x00\x6d\ +\x00\x69\x00\x74\x00\x6f\x00\x69\x00\x6c\x00\x6c\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x27\x44\x65\x66\x61\x75\x6c\x74\x20\ +\x68\x65\x69\x67\x68\x74\x20\x66\x6f\x72\x20\x74\x65\x78\x74\x73\ +\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x26\x00\x4f\x00\x6c\x00\x65\x00\x74\x00\ +\x75\x00\x73\x00\x20\x00\x76\x00\x69\x00\x69\x00\x76\x00\x61\x00\ +\x6e\x00\x6c\x00\x65\x00\x76\x00\x65\x00\x79\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x11\x44\x65\x66\x61\x75\x6c\x74\x20\x6c\ +\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\ +\x00\x4f\x00\x6c\x00\x65\x00\x74\x00\x75\x00\x73\x00\x20\x00\x6d\ +\x00\x61\x00\x6c\x00\x6c\x00\x69\x00\x61\x00\x72\x00\x6b\x00\x6b\ +\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x44\x65\x66\x61\ +\x75\x6c\x74\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x20\x73\x68\x65\ +\x65\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x54\x00\x65\x00\x6b\ +\x00\x73\x00\x74\x00\x69\x00\x6e\x00\x20\x00\x6f\x00\x6c\x00\x65\ +\x00\x74\x00\x75\x00\x73\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x74\ +\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\x65\x66\x61\ +\x75\x6c\x74\x20\x74\x65\x78\x74\x20\x66\x6f\x6e\x74\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x46\x00\x4f\x00\x6c\x00\x65\x00\x74\x00\x75\x00\ +\x73\x00\x61\x00\x72\x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x6d\x00\ +\x75\x00\x6b\x00\x61\x00\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\ +\x74\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x69\x00\x6e\x00\x6b\x00\ +\x6f\x00\x72\x00\x6b\x00\x65\x00\x75\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x13\x44\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x78\ +\x74\x20\x68\x65\x69\x67\x68\x74\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\ +\x00\x4f\x00\x6c\x00\x65\x00\x74\x00\x75\x00\x73\x00\x61\x00\x72\ +\x00\x76\x00\x6f\x00\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x74\ +\x00\x79\x00\xf6\x00\x74\x00\x61\x00\x73\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x15\x44\x65\x66\x61\x75\x6c\x74\x20\x77\x6f\ +\x72\x6b\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x36\x00\x4d\x00\x69\x00\x74\x00\x74\x00\x6f\x00\x6a\x00\ +\x65\x00\x6e\x00\x20\x00\x26\x00\x20\x00\x4e\x00\x75\x00\x6f\x00\ +\x6c\x00\x65\x00\x6e\x00\x70\x00\xe4\x00\xe4\x00\x6e\x00\x20\x00\ +\x74\x00\x79\x00\x79\x00\x6c\x00\x69\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x26\x20\ +\x4c\x65\x61\x64\x65\x72\x20\x61\x72\x72\x6f\x77\x20\x73\x74\x79\ +\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x4d\x00\x69\x00\x74\ +\x00\x74\x00\x6f\x00\x6a\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x61\ +\x00\x72\x00\x6b\x00\x6b\x00\x75\x00\x75\x00\x73\x00\x74\x00\x61\ +\x00\x73\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x44\x69\ +\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x70\x72\x65\x63\x69\x73\x69\ +\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\ +\x00\x50\x00\x69\x00\x73\x00\x74\x00\x65\x00\x20\x00\x35\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\x35\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0e\x00\x50\x00\x69\x00\x73\x00\x74\x00\x65\x00\ +\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\ +\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x50\x00\x69\x00\x73\ +\x00\x74\x00\x65\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x44\x6f\x74\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\x00\ +\x48\x00\x61\x00\x68\x00\x6d\x00\x6f\x00\x74\x00\x65\x00\x6c\x00\ +\x6d\x00\x61\x00\x6e\x00\x20\x00\x72\x00\x61\x00\x6a\x00\x61\x00\ +\x70\x00\x69\x00\x6e\x00\x74\x00\x61\x00\x20\x00\x6d\x00\x75\x00\ +\x6f\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x44\ +\x72\x61\x66\x74\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x6d\ +\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\x00\x56\x00\x69\x00\ +\x65\x00\x20\x00\x33\x00\x44\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x69\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\ +\x6e\x00\x69\x00\x70\x00\x69\x00\x6e\x00\x74\x00\x61\x00\x20\x00\ +\x76\x00\x65\x00\x72\x00\x6b\x00\x6b\x00\x6f\x00\x6e\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x24\x45\x78\x70\x6f\x72\x74\x20\ +\x33\x44\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x73\x20\x70\x6f\ +\x6c\x79\x66\x61\x63\x65\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x18\x00\x45\x00\x78\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x00\x20\x00\x53\x00\x74\x00\x79\x00\x6c\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0c\x45\x78\x70\x6f\x72\x74\x20\x53\x74\ +\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x54\x00\xe4\x00\ +\x79\x00\x74\x00\xe4\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x69\x00\x74\x00\x20\x00\x6f\x00\x6c\x00\x65\x00\ +\x74\x00\x75\x00\x73\x00\x61\x00\x72\x00\x76\x00\x6f\x00\x69\x00\ +\x73\x00\x65\x00\x73\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x17\x46\x69\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x62\x79\x20\x64\x65\x66\x61\x75\x6c\x74\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x2e\x00\x59\x00\x6c\x00\x65\x00\x69\x00\x73\x00\x65\x00\x74\ +\x00\x20\x00\x76\x00\x65\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x61\ +\x00\x73\x00\x65\x00\x74\x00\x75\x00\x6b\x00\x73\x00\x65\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x47\x65\x6e\x65\x72\x61\ +\x6c\x20\x44\x72\x61\x66\x74\x20\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x22\x00\x59\x00\x6c\x00\x65\x00\x69\ +\x00\x73\x00\x65\x00\x74\x00\x20\x00\x61\x00\x73\x00\x65\x00\x74\ +\x00\x75\x00\x6b\x00\x73\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\ +\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x00\x50\x00\x61\ +\x00\x69\x00\x6b\x00\x61\x00\x6c\x00\x6c\x00\x69\x00\x6e\x00\x65\ +\x00\x6e\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x6f\x00\x69\ +\x00\x6e\x00\x74\x00\x69\x00\x74\x00\x69\x00\x6c\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x10\x47\x6c\x6f\x62\x61\x6c\x20\x63\ +\x6f\x70\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\ +\x00\x52\x00\x75\x00\x75\x00\x64\x00\x75\x00\x6b\x00\x6f\x00\x6e\ +\x00\x20\x00\x76\x00\xe4\x00\x6c\x00\x69\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x47\x72\x69\x64\x20\x73\x70\x61\x63\x69\ +\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\x00\x52\x00\x79\x00\x68\ +\x00\x6d\x00\xe4\x00\x6e\x00\x20\x00\x6b\x00\x65\x00\x72\x00\x72\ +\x00\x6f\x00\x6b\x00\x73\x00\x65\x00\x74\x00\x20\x00\x6c\x00\x6f\ +\x00\x68\x00\x6b\x00\x6f\x00\x69\x00\x6b\x00\x73\x00\x69\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x18\x47\x72\x6f\x75\x70\x20\x6c\x61\ +\x79\x65\x72\x73\x20\x69\x6e\x74\x6f\x20\x62\x6c\x6f\x63\x6b\x73\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x01\x46\x00\x54\x00\xe4\x00\xe4\x00\x6c\ +\x00\x6c\x00\xe4\x00\x20\x00\x76\x00\x6f\x00\x69\x00\x74\x00\x20\ +\x00\x6d\x00\xe4\x00\xe4\x00\x72\x00\x69\x00\x74\x00\x74\x00\xe4\ +\x00\xe4\x00\x20\x00\x53\x00\x56\x00\x47\x00\x2d\x00\x74\x00\x69\ +\x00\x65\x00\x64\x00\x6f\x00\x73\x00\x74\x00\x6f\x00\x6a\x00\x61\ +\x00\x20\x00\x73\x00\x69\x00\x73\x00\xe4\x00\x6c\x00\x74\x00\xe4\ +\x00\x76\x00\xe4\x00\x6e\x00\x20\x00\x68\x00\x61\x00\x6b\x00\x65\ +\x00\x6d\x00\x69\x00\x73\x00\x74\x00\x6f\x00\x6e\x00\x20\x00\x6a\ +\x00\x6f\x00\x6b\x00\x61\x00\x20\x00\x73\x00\x69\x00\x73\x00\xe4\ +\x00\x6c\x00\x74\x00\xe4\x00\xe4\x00\x20\x00\x3c\x00\x70\x00\x61\ +\x00\x74\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x3e\x00\x20\x00\x6d\ +\x00\xe4\x00\xe4\x00\x72\x00\x69\x00\x74\x00\x65\x00\x6c\x00\x6d\ +\x00\x69\x00\xe4\x00\x2c\x00\x20\x00\x6a\x00\x6f\x00\x74\x00\x6b\ +\x00\x61\x00\x20\x00\x76\x00\x6f\x00\x69\x00\x64\x00\x61\x00\x61\ +\x00\x6e\x00\x20\x00\x6c\x00\x69\x00\x73\x00\xe4\x00\x74\x00\xe4\ +\x00\x20\x00\x64\x00\x72\x00\x61\x00\x66\x00\x74\x00\x2d\x00\x6c\ +\x00\x75\x00\x6f\x00\x6e\x00\x6e\x00\x6f\x00\x6b\x00\x73\x00\x65\ +\x00\x6e\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\ +\x00\x72\x00\x64\x00\x69\x00\x69\x00\x6e\x00\x20\x00\x61\x00\x75\ +\x00\x6b\x00\x6b\x00\x6f\x00\x6a\x00\x65\x00\x6e\x00\x20\x00\x6d\ +\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x69\x00\x6e\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x8d\x48\x65\x72\x65\x20\x79\x6f\x75\ +\x20\x63\x61\x6e\x20\x73\x70\x65\x63\x69\x66\x79\x20\x61\x20\x64\ +\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x63\x6f\x6e\x74\x61\x69\x6e\ +\x69\x6e\x67\x20\x53\x56\x47\x20\x66\x69\x6c\x65\x73\x20\x63\x6f\ +\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x3c\x70\x61\x74\x74\x65\x72\ +\x6e\x3e\x20\x64\x65\x66\x69\x6e\x69\x74\x69\x6f\x6e\x73\x20\x74\ +\x68\x61\x74\x20\x63\x61\x6e\x20\x62\x65\x20\x61\x64\x64\x65\x64\ +\x20\x74\x6f\x20\x74\x68\x65\x20\x73\x74\x61\x6e\x64\x61\x72\x64\ +\x20\x44\x72\x61\x66\x74\x20\x68\x61\x74\x63\x68\x20\x70\x61\x74\ +\x74\x65\x72\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x48\x00\ +\x69\x00\x64\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\ +\x74\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x74\x00\ +\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x00\x20\x00\x61\x00\ +\x66\x00\x74\x00\x65\x00\x72\x00\x20\x00\x75\x00\x73\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x21\x48\x69\x64\x65\x20\x44\x72\ +\x61\x66\x74\x20\x73\x6e\x61\x70\x20\x74\x6f\x6f\x6c\x62\x61\x72\ +\x20\x61\x66\x74\x65\x72\x20\x75\x73\x65\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x28\x00\x48\x00\x69\x00\x64\x00\x65\x00\x20\x00\x44\x00\x72\ +\x00\x61\x00\x66\x00\x74\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\ +\x00\x62\x00\x65\x00\x6e\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x14\x48\x69\x64\x65\x20\x44\x72\x61\x66\x74\x20\x77\ +\x6f\x72\x6b\x62\x65\x6e\x63\x68\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x76\ +\x00\x4a\x00\x6f\x00\x73\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\ +\x00\x6e\x00\x74\x00\x61\x00\x72\x00\x75\x00\x75\x00\x74\x00\x75\ +\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\ +\x00\x74\x00\x74\x00\x75\x00\x6e\x00\x61\x00\x2c\x00\x20\x00\x72\ +\x00\x75\x00\x75\x00\x64\x00\x75\x00\x6b\x00\x6b\x00\x6f\x00\x20\ +\x00\x6e\x00\xe4\x00\x6b\x00\x79\x00\x79\x00\x20\x00\x70\x00\x69\ +\x00\x69\x00\x72\x00\x72\x00\x65\x00\x74\x00\x74\x00\xe4\x00\x65\ +\x00\x73\x00\x73\x00\xe4\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\ +\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x20\x67\x72\ +\x69\x64\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x77\ +\x68\x65\x6e\x20\x64\x72\x61\x77\x69\x6e\x67\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\xd2\x00\x4a\x00\x6f\x00\x73\x00\x20\x00\x76\x00\x61\x00\ +\x6c\x00\x69\x00\x74\x00\x74\x00\x75\x00\x2c\x00\x20\x00\x66\x00\ +\x72\x00\x65\x00\x65\x00\x63\x00\x61\x00\x64\x00\x20\x00\x79\x00\ +\x72\x00\x69\x00\x74\x00\x74\x00\xe4\x00\xe4\x00\x20\x00\x79\x00\ +\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\xe4\x00\xe4\x00\x20\x00\ +\x70\x00\xe4\x00\xe4\x00\x6c\x00\x6c\x00\x65\x00\x6b\x00\x6b\x00\ +\xe4\x00\x69\x00\x73\x00\x69\x00\xe4\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x6a\x00\x61\x00\x20\x00\ +\x6a\x00\x6f\x00\x68\x00\x64\x00\x6f\x00\x69\x00\x6b\x00\x73\x00\ +\x69\x00\x2e\x00\x20\x00\x56\x00\x61\x00\x72\x00\x6f\x00\x2c\x00\ +\x20\x00\x74\x00\xe4\x00\x6d\x00\xe4\x00\x20\x00\x76\x00\x6f\x00\ +\x69\x00\x20\x00\x6b\x00\x65\x00\x73\x00\x74\x00\xe4\x00\xe4\x00\ +\x20\x00\x68\x00\x65\x00\x74\x00\x6b\x00\x65\x00\x6e\x00\x20\x00\ +\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x65\x49\ +\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x66\x72\x65\x65\x63\ +\x61\x64\x20\x77\x69\x6c\x6c\x20\x74\x72\x79\x20\x74\x6f\x20\x6a\ +\x6f\x69\x6e\x74\x20\x63\x6f\x69\x6e\x63\x69\x64\x65\x6e\x74\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\x77\x69\x72\ +\x65\x73\x2e\x20\x42\x65\x77\x61\x72\x65\x2c\x20\x74\x68\x69\x73\ +\x20\x63\x61\x6e\x20\x74\x61\x6b\x65\x20\x61\x20\x77\x68\x69\x6c\ +\x65\x2e\x2e\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xf2\x00\x49\x00\x66\ +\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\ +\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\x00\x72\ +\x00\x61\x00\x66\x00\x74\x00\x20\x00\x67\x00\x72\x00\x69\x00\x64\ +\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\x6c\ +\x00\x77\x00\x61\x00\x79\x00\x73\x00\x20\x00\x62\x00\x65\x00\x20\ +\x00\x76\x00\x69\x00\x73\x00\x69\x00\x62\x00\x6c\x00\x65\x00\x20\ +\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x77\ +\x00\x6f\x00\x72\x00\x6b\x00\x62\x00\x65\x00\x6e\x00\x63\x00\x68\ +\x00\x20\x00\x69\x00\x73\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\ +\x00\x76\x00\x65\x00\x2e\x00\x20\x00\x4f\x00\x74\x00\x68\x00\x65\ +\x00\x72\x00\x77\x00\x69\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x6e\ +\x00\x6c\x00\x79\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\ +\x00\x75\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x79\x49\x66\x20\x63\x68\x65\x63\x6b\ +\x65\x64\x2c\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x67\x72\ +\x69\x64\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x62\ +\x65\x20\x76\x69\x73\x69\x62\x6c\x65\x20\x77\x68\x65\x6e\x20\x74\ +\x68\x65\x20\x44\x72\x61\x66\x74\x20\x77\x6f\x72\x6b\x62\x65\x6e\ +\x63\x68\x20\x69\x73\x20\x61\x63\x74\x69\x76\x65\x2e\x20\x4f\x74\ +\x68\x65\x72\x77\x69\x73\x65\x20\x6f\x6e\x6c\x79\x20\x77\x68\x65\ +\x6e\x20\x75\x73\x69\x6e\x67\x20\x61\x20\x63\x6f\x6d\x6d\x61\x6e\ +\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x88\x00\x49\x00\x66\x00\x20\x00\ +\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x53\x00\x6e\x00\x61\x00\ +\x70\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\ +\x72\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\ +\x65\x00\x20\x00\x73\x00\x68\x00\x6f\x00\x77\x00\x6e\x00\x20\x00\ +\x77\x00\x68\x00\x65\x00\x6e\x00\x65\x00\x76\x00\x65\x00\x72\x00\ +\x20\x00\x79\x00\x6f\x00\x75\x00\x20\x00\x75\x00\x73\x00\x65\x00\ +\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\ +\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x44\x49\x66\x20\x63\x68\ +\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x53\x6e\x61\x70\x20\ +\x74\x6f\x6f\x6c\x62\x61\x72\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\ +\x73\x68\x6f\x77\x6e\x20\x77\x68\x65\x6e\x65\x76\x65\x72\x20\x79\ +\x6f\x75\x20\x75\x73\x65\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x9c\x00\x4a\x00\x6f\x00\x73\x00\x20\x00\ +\x74\x00\xe4\x00\x6d\x00\xe4\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\ +\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x74\x00\x75\x00\x6e\x00\ +\x61\x00\x2c\x00\x20\x00\x6b\x00\x61\x00\x69\x00\x6b\x00\x6b\x00\ +\x69\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x69\x00\x74\x00\x20\x00\x6a\x00\x6f\x00\x69\x00\x73\x00\x73\x00\ +\x61\x00\x20\x00\x70\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x6a\x00\ +\x61\x00\x20\x00\x76\x00\x69\x00\x65\x00\x64\x00\xe4\x00\xe4\x00\ +\x6e\x00\x20\x00\x33\x00\x44\x00\x20\x00\x6d\x00\x6f\x00\x6e\x00\ +\x69\x00\x70\x00\x69\x00\x6e\x00\x6e\x00\x6f\x00\x69\x00\x6b\x00\ +\x73\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x49\x66\x20\ +\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x63\x6f\x6e\ +\x74\x61\x69\x6e\x69\x6e\x67\x20\x66\x61\x63\x65\x73\x20\x77\x69\ +\x6c\x6c\x20\x62\x65\x20\x65\x78\x70\x6f\x72\x74\x65\x64\x20\x61\ +\x73\x20\x33\x64\x20\x70\x6f\x6c\x79\x66\x61\x63\x65\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\xf8\x00\x4a\x00\x6f\x00\x73\x00\x20\x00\x74\ +\x00\xe4\x00\x6d\x00\xe4\x00\x20\x00\x76\x00\x61\x00\x69\x00\x68\ +\x00\x74\x00\x6f\x00\x65\x00\x68\x00\x74\x00\x6f\x00\x20\x00\x6f\ +\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x74\ +\x00\x75\x00\x6e\x00\x61\x00\x2c\x00\x20\x00\x6b\x00\x6f\x00\x70\ +\x00\x69\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x69\x00\x74\x00\x69\ +\x00\x6c\x00\x61\x00\x20\x00\x70\x00\x69\x00\x64\x00\x65\x00\x74\ +\x00\xe4\x00\xe4\x00\x6e\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x65\ +\x00\x6e\x00\x6e\x00\x6f\x00\x73\x00\x73\x00\x61\x00\x2c\x00\x20\ +\x00\x6d\x00\x75\x00\x75\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x6b\ +\x00\x6f\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x61\ +\x00\x6c\x00\x6f\x00\x69\x00\x74\x00\x65\x00\x74\x00\x61\x00\x61\ +\x00\x6e\x00\x20\x00\x61\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x6b\ +\x00\x6f\x00\x70\x00\x69\x00\x6f\x00\x69\x00\x6d\x00\x61\x00\x74\ +\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x73\x00\x73\x00\x61\x00\x20\ +\x00\x74\x00\x69\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x6f\x49\x66\x20\x74\x68\x69\x73\x20\ +\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x63\x6f\x70\x79\ +\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x6b\x65\ +\x70\x74\x20\x61\x63\x72\x6f\x73\x73\x20\x63\x6f\x6d\x6d\x61\x6e\ +\x64\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x63\x6f\x6d\ +\x6d\x61\x6e\x64\x73\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\ +\x73\x20\x73\x74\x61\x72\x74\x20\x69\x6e\x20\x6e\x6f\x2d\x63\x6f\ +\x70\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x7e\x00\ +\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\ +\x65\x00\x64\x00\x2c\x00\x20\x00\x68\x00\x61\x00\x74\x00\x63\x00\ +\x68\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\ +\x20\x00\x62\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\ +\x65\x00\x72\x00\x74\x00\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\ +\x74\x00\x6f\x00\x20\x00\x73\x00\x69\x00\x6d\x00\x70\x00\x6c\x00\ +\x65\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x3f\x49\x66\x20\x74\x68\x69\x73\x20\x69\ +\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x68\x61\x74\x63\x68\ +\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x63\x6f\x6e\x76\x65\ +\x72\x74\x65\x64\x20\x69\x6e\x74\x6f\x20\x73\x69\x6d\x70\x6c\x65\ +\x20\x77\x69\x72\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xf6\x00\x49\ +\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\ +\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\ +\x00\x64\x00\x2c\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\x65\x00\x64\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\ +\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x67\ +\x00\x65\x00\x74\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\ +\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x20\ +\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\x00\x65\ +\x00\x78\x00\x74\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x2c\ +\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x61\x00\x64\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x79\x00\x20\x00\x68\x00\x61\x00\x76\x00\x65\x00\x20\x00\x69\ +\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\x00\x58\ +\x00\x46\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\ +\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7b\x49\x66\ +\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\ +\x2c\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x65\x78\x74\x73\ +\x20\x77\x69\x6c\x6c\x20\x67\x65\x74\x20\x74\x68\x65\x20\x73\x74\ +\x61\x6e\x64\x61\x72\x64\x20\x44\x72\x61\x66\x74\x20\x74\x65\x78\ +\x74\x20\x73\x69\x7a\x65\x2c\x20\x69\x6e\x73\x74\x65\x61\x64\x20\ +\x6f\x66\x20\x74\x68\x65\x20\x73\x69\x7a\x65\x20\x74\x68\x65\x79\ +\x20\x68\x61\x76\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x44\x58\x46\ +\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\xe2\x00\x4a\x00\x6f\x00\x73\x00\x20\x00\x74\x00\xe4\x00\x6d\x00\ +\xe4\x00\x20\x00\x76\x00\x61\x00\x69\x00\x68\x00\x74\x00\x6f\x00\ +\x65\x00\x68\x00\x74\x00\x6f\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\ +\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x74\x00\x75\x00\x6e\x00\ +\x61\x00\x2c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x69\x00\x74\x00\x20\x00\x6e\x00\xe4\x00\x6b\x00\x79\x00\ +\x76\x00\xe4\x00\x74\x00\x20\x00\x6f\x00\x6c\x00\x65\x00\x74\x00\ +\x75\x00\x73\x00\x61\x00\x72\x00\x76\x00\x6f\x00\x6e\x00\x20\x00\ +\x6d\x00\x75\x00\x6b\x00\x61\x00\x61\x00\x6e\x00\x20\x00\x74\x00\ +\xe4\x00\x79\x00\x74\x00\x65\x00\x74\x00\x74\x00\x79\x00\x6e\x00\ +\xe4\x00\x2e\x00\x20\x00\x4d\x00\x75\x00\x75\x00\x74\x00\x6f\x00\ +\x69\x00\x6e\x00\x20\x00\x6e\x00\x65\x00\x20\x00\x6e\x00\xe4\x00\ +\x6b\x00\x79\x00\x76\x00\xe4\x00\x74\x00\x20\x00\x4c\x00\x61\x00\ +\x6e\x00\x6b\x00\x61\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\x69\x00\ +\x6e\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x66\x49\x66\x20\ +\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x61\x70\ +\x70\x65\x61\x72\x20\x61\x73\x20\x66\x69\x6c\x6c\x65\x64\x20\x61\ +\x73\x20\x64\x65\x66\x61\x75\x6c\x74\x2e\x20\x4f\x74\x68\x65\x72\ +\x77\x69\x73\x65\x2c\x20\x74\x68\x65\x79\x20\x77\x69\x6c\x6c\x20\ +\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x77\x69\x72\x65\x66\x72\ +\x61\x6d\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xd0\x00\x49\x00\x66\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\ +\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\ +\x2c\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\ +\x6e\x00\x6f\x00\x74\x00\x20\x00\x6f\x00\x63\x00\x63\x00\x75\x00\ +\x72\x00\x20\x00\x61\x00\x67\x00\x61\x00\x69\x00\x6e\x00\x73\x00\ +\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x73\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x6d\x00\ +\x6f\x00\x72\x00\x65\x00\x20\x00\x74\x00\x68\x00\x61\x00\x6e\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x64\x00\ +\x69\x00\x63\x00\x61\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6e\x00\ +\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\ +\x20\x00\x65\x00\x64\x00\x67\x00\x65\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x68\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\ +\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x73\x6e\x61\x70\x70\x69\x6e\ +\x67\x20\x77\x69\x6c\x6c\x20\x6e\x6f\x74\x20\x6f\x63\x63\x75\x72\ +\x20\x61\x67\x61\x69\x6e\x73\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x20\x77\x69\x74\x68\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\ +\x74\x68\x65\x20\x69\x6e\x64\x69\x63\x61\x74\x65\x64\x20\x6e\x75\ +\x6d\x62\x65\x72\x20\x6f\x66\x20\x65\x64\x67\x65\x73\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\xf2\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\ +\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\ +\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x62\x00\x65\x00\x6e\x00\ +\x63\x00\x68\x00\x20\x00\x77\x00\x6f\x00\x6e\x00\x27\x00\x74\x00\ +\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\x2e\x00\ +\x20\x00\x55\x00\x73\x00\x65\x00\x66\x00\x75\x00\x6c\x00\x20\x00\ +\x73\x00\x69\x00\x6e\x00\x63\x00\x65\x00\x20\x00\x61\x00\x6c\x00\ +\x6c\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\x00\ +\x6f\x00\x6f\x00\x6c\x00\x73\x00\x20\x00\x61\x00\x72\x00\x65\x00\ +\x20\x00\x61\x00\x6c\x00\x73\x00\x6f\x00\x20\x00\x69\x00\x6e\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x41\x00\x72\x00\x63\x00\ +\x68\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x62\x00\x65\x00\ +\x6e\x00\x63\x00\x68\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x79\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x77\ +\x6f\x72\x6b\x62\x65\x6e\x63\x68\x20\x77\x6f\x6e\x27\x74\x20\x61\ +\x70\x70\x65\x61\x72\x2e\x20\x55\x73\x65\x66\x75\x6c\x20\x73\x69\ +\x6e\x63\x65\x20\x61\x6c\x6c\x20\x6f\x66\x20\x74\x68\x65\x20\x44\ +\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x20\x61\x72\x65\x20\x61\ +\x6c\x73\x6f\x20\x69\x6e\x20\x74\x68\x65\x20\x41\x72\x63\x68\x20\ +\x77\x6f\x72\x6b\x62\x65\x6e\x63\x68\x2e\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\xea\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\ +\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x77\x00\x68\x00\x65\ +\x00\x6e\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x6c\x00\x69\ +\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x68\x00\x61\x00\x76\x00\x65\ +\x00\x20\x00\x61\x00\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\ +\x00\x20\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x64\ +\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x79\x00\x20\x00\x77\ +\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x72\ +\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x65\x00\x64\x00\x20\ +\x00\x61\x00\x73\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\ +\x00\x64\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x73\x00\x20\ +\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x63\x00\x6f\x00\x72\x00\x72\x00\x65\x00\x63\x00\x74\ +\x00\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x75\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\ +\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x77\x68\x65\x6e\x20\x70\ +\x6f\x6c\x79\x6c\x69\x6e\x65\x73\x20\x68\x61\x76\x65\x20\x61\x20\ +\x77\x69\x64\x74\x68\x20\x64\x65\x66\x69\x6e\x65\x64\x2c\x20\x74\ +\x68\x65\x79\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x72\x65\x6e\x64\ +\x65\x72\x65\x64\x20\x61\x73\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\ +\x69\x72\x65\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x63\x6f\ +\x72\x72\x65\x63\x74\x20\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x01\x46\x00\x4a\x00\x6f\x00\x73\x00\x20\x00\x74\x00\xe4\x00\ +\x6d\x00\xe4\x00\x20\x00\x76\x00\x61\x00\x69\x00\x68\x00\x74\x00\ +\x6f\x00\x65\x00\x68\x00\x74\x00\x6f\x00\x20\x00\x6f\x00\x6e\x00\ +\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x74\x00\x75\x00\ +\x6e\x00\x61\x00\x2c\x00\x20\x00\x76\x00\x6f\x00\x69\x00\x74\x00\ +\x20\x00\x61\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x6b\x00\x6f\x00\ +\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\x75\x00\x75\x00\x20\x00\ +\x61\x00\x69\x00\x65\x00\x6d\x00\x6d\x00\x69\x00\x6e\x00\x20\x00\ +\x6c\x00\x75\x00\x6f\x00\x74\x00\x75\x00\x6a\x00\x65\x00\x6e\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\ +\x65\x00\x6e\x00\x20\x00\x70\x00\x69\x00\x69\x00\x72\x00\x72\x00\ +\x6f\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x76\x00\xe4\x00\ +\x6c\x00\x69\x00\x6c\x00\x6c\x00\xe4\x00\x2e\x00\x20\x00\x4a\x00\ +\x6f\x00\x73\x00\x20\x00\x6e\x00\xe4\x00\x69\x00\x6e\x00\x20\x00\ +\x65\x00\x69\x00\x20\x00\x6f\x00\x6c\x00\x65\x00\x2c\x00\x20\x00\ +\x6b\x00\x6f\x00\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\x65\x00\ +\x74\x00\x61\x00\x61\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x69\x00\ +\x6e\x00\x2c\x00\x20\x00\x6b\x00\x75\x00\x6e\x00\x20\x00\x70\x00\ +\x61\x00\x69\x00\x6e\x00\x61\x00\x74\x00\x20\x00\x43\x00\x54\x00\ +\x52\x00\x4c\x00\x2d\x00\x6e\x00\xe4\x00\x70\x00\x70\x00\xe4\x00\ +\x69\x00\x6e\x00\x74\x00\xe4\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x81\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\ +\x65\x63\x6b\x65\x64\x2c\x20\x79\x6f\x75\x20\x77\x69\x6c\x6c\x20\ +\x61\x6c\x77\x61\x79\x73\x20\x73\x6e\x61\x70\x20\x74\x6f\x20\x65\ +\x78\x69\x73\x74\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x77\x68\x69\x6c\x65\x20\x64\x72\x61\x77\x69\x6e\x67\x2e\x20\x49\ +\x66\x20\x6e\x6f\x74\x2c\x20\x79\x6f\x75\x20\x77\x69\x6c\x6c\x20\ +\x62\x65\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x20\x6f\x6e\x6c\x79\ +\x20\x77\x68\x65\x6e\x20\x70\x72\x65\x73\x73\x69\x6e\x67\x20\x43\ +\x54\x52\x4c\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x49\x00\x6d\ +\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x2a\x00\x6c\x00\x6f\ +\x00\x68\x00\x6b\x00\x6f\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0e\x49\x6d\x70\x6f\x72\x74\x20\x2a\x62\x6c\x6f\x63\x6b\x73\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x54\x00\x75\x00\x6f\x00\x20\ +\x00\x4f\x00\x43\x00\x41\x00\x20\x00\x61\x00\x6c\x00\x75\x00\x65\ +\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x49\x6d\ +\x70\x6f\x72\x74\x20\x4f\x43\x41\x20\x61\x72\x65\x61\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x40\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\x20\x00\x68\x00\x61\x00\x74\x00\x63\x00\x68\x00\x20\ +\x00\x62\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x69\ +\x00\x65\x00\x73\x00\x20\x00\x61\x00\x73\x00\x20\x00\x77\x00\x69\ +\x00\x72\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\ +\x49\x6d\x70\x6f\x72\x74\x20\x68\x61\x74\x63\x68\x20\x62\x6f\x75\ +\x6e\x64\x61\x72\x69\x65\x73\x20\x61\x73\x20\x77\x69\x72\x65\x73\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x54\x00\x75\x00\x6f\x00\x20\ +\x00\x61\x00\x73\x00\x65\x00\x74\x00\x74\x00\x65\x00\x6c\x00\x75\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x49\x6d\x70\x6f\ +\x72\x74\x20\x6c\x61\x79\x6f\x75\x74\x73\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x12\x00\x54\x00\x75\x00\x6f\x00\x20\x00\x74\x00\x79\x00\x79\ +\x00\x6c\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x49\x6d\ +\x70\x6f\x72\x74\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x28\x00\x54\x00\x75\x00\x6f\x00\x20\x00\x74\x00\x65\x00\x6b\ +\x00\x73\x00\x74\x00\x69\x00\x74\x00\x20\x00\x6a\x00\x61\x00\x20\ +\x00\x6d\x00\x69\x00\x74\x00\x61\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1b\x49\x6d\x70\x6f\x72\x74\x20\x74\x65\x78\x74\x73\ +\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0e\x00\x54\x00\x75\x00\x6f\x00\x2f\x00\ +\x56\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x49\ +\x6d\x70\x6f\x72\x74\x2f\x45\x78\x70\x6f\x72\x74\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x2a\x00\x53\x00\x69\x00\x73\x00\xe4\x00\x69\x00\x6e\ +\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x61\x00\x72\x00\x6b\x00\x6b\ +\x00\x75\x00\x75\x00\x73\x00\x74\x00\x61\x00\x73\x00\x6f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x18\x49\x6e\x74\x65\x72\x6e\x61\x6c\ +\x20\x70\x72\x65\x63\x69\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x22\x00\x59\x00\x68\x00\x64\x00\x69\ +\x00\x73\x00\x74\x00\xe4\x00\x20\x00\x67\x00\x65\x00\x6f\x00\x6d\ +\x00\x65\x00\x74\x00\x72\x00\x69\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0d\x4a\x6f\x69\x6e\x20\x67\x65\x6f\x6d\x65\x74\x72\ +\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x56\x00\x61\x00\x73\x00\ +\x65\x00\x6e\x00\x20\x00\x28\x00\x49\x00\x53\x00\x4f\x00\x2d\x00\ +\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\ +\x69\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x4c\x65\x66\ +\x74\x20\x28\x49\x53\x4f\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x29\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x50\x00\xe4\x00\xe4\x00\x76\ +\x00\x69\x00\x69\x00\x76\x00\x61\x00\x74\x00\x20\x00\x6a\x00\x6f\ +\x00\x6b\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x4d\x61\ +\x69\x6e\x20\x6c\x69\x6e\x65\x73\x20\x65\x76\x65\x72\x79\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\xb8\x00\x50\x00\xe4\x00\xe4\x00\x76\x00\x69\ +\x00\x69\x00\x76\x00\x61\x00\x74\x00\x20\x00\x6f\x00\x76\x00\x61\ +\x00\x74\x00\x20\x00\x61\x00\x72\x00\x76\x00\x6f\x00\x74\x00\x61\ +\x00\x61\x00\x6e\x00\x20\x00\x70\x00\x61\x00\x6b\x00\x73\x00\x75\ +\x00\x6d\x00\x70\x00\x69\x00\x61\x00\x2e\x00\x20\x00\x4d\x00\xe4\ +\x00\xe4\x00\x72\x00\x69\x00\x74\x00\xe4\x00\x20\x00\x74\x00\xe4\ +\x00\x73\x00\x73\x00\xe4\x00\x20\x00\x6b\x00\x75\x00\x69\x00\x6e\ +\x00\x6b\x00\x61\x00\x20\x00\x6d\x00\x6f\x00\x6e\x00\x74\x00\x61\ +\x00\x20\x00\x72\x00\x75\x00\x75\x00\x74\x00\x75\x00\x61\x00\x20\ +\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\xe4\x00\xe4\x00\x76\x00\x69\ +\x00\x69\x00\x76\x00\x6f\x00\x6a\x00\x65\x00\x6e\x00\x20\x00\x76\ +\x00\xe4\x00\x6c\x00\x69\x00\x6c\x00\x6c\x00\xe4\x00\x2e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x51\x4d\x61\x69\x6e\x6c\x69\x6e\x65\ +\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x72\x61\x77\x6e\x20\ +\x74\x68\x69\x63\x6b\x65\x72\x2e\x20\x53\x70\x65\x63\x69\x66\x79\ +\x20\x68\x65\x72\x65\x20\x68\x6f\x77\x20\x6d\x61\x6e\x79\x20\x73\ +\x71\x75\x61\x72\x65\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x6d\ +\x61\x69\x6e\x6c\x69\x6e\x65\x73\x2e\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x3a\x00\x4d\x00\x61\x00\x6b\x00\x73\x00\x69\x00\x6d\x00\x69\x00\ +\x20\x00\x4b\x00\xe4\x00\x79\x00\x72\x00\xe4\x00\x76\x00\x69\x00\ +\x69\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x53\x00\x65\x00\x67\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x74\x00\x69\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x12\x4d\x61\x78\x20\x53\x70\x6c\x69\x6e\x65\x20\ +\x53\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\ +\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\ +\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x65\x00\x64\x00\x67\x00\x65\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x4d\x61\x78\x69\x6d\x75\x6d\x20\x6e\ +\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x65\x64\x67\x65\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x6a\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\ +\x00\x75\x00\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\ +\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x65\x00\x64\x00\x67\ +\x00\x65\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x65\ +\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\ +\x00\x72\x00\x65\x00\x64\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ +\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\x67\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x4d\x61\x78\x69\x6d\x75\ +\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x65\x64\x67\x65\ +\x73\x20\x74\x6f\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\ +\x65\x64\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x12\x00\x45\x00\x69\x00\x20\x00\x6d\x00\ +\x69\x00\x74\x00\xe4\x00\xe4\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\ +\x45\x00\x69\x00\x20\x00\x6d\x00\x69\x00\x74\x00\xe4\x00\xe4\x00\ +\x6e\x00\x20\x00\x28\x00\x6e\x00\x6f\x00\x70\x00\x65\x00\x69\x00\ +\x6e\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x4e\x6f\x6e\ +\x65\x20\x28\x66\x61\x73\x74\x65\x73\x74\x29\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x01\x1c\x00\x4e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x61\x00\ +\x6c\x00\x69\x00\x73\x00\x74\x00\x69\x00\x2c\x00\x20\x00\x6b\x00\ +\x75\x00\x6e\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x6f\x00\ +\x69\x00\x64\x00\x61\x00\x61\x00\x6e\x00\x20\x00\x65\x00\x73\x00\ +\x69\x00\x6e\x00\x65\x00\x69\x00\x74\x00\xe4\x00\x2c\x00\x20\x00\ +\x6b\x00\x6f\x00\x70\x00\x69\x00\x6f\x00\x69\x00\x74\x00\x61\x00\ +\x76\x00\x61\x00\x74\x00\x20\x00\x6f\x00\x76\x00\x61\x00\x74\x00\ +\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x74\x00\x75\x00\ +\x6e\x00\x61\x00\x2e\x00\x20\x00\x4a\x00\x6f\x00\x73\x00\x20\x00\ +\x74\x00\xe4\x00\x6d\x00\xe4\x00\x20\x00\x76\x00\x61\x00\x69\x00\ +\x68\x00\x74\x00\x6f\x00\x65\x00\x68\x00\x74\x00\x6f\x00\x20\x00\ +\x6f\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\ +\x74\x00\x75\x00\x2c\x00\x20\x00\x70\x00\x65\x00\x72\x00\x75\x00\ +\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x69\x00\x74\x00\x20\x00\x6f\x00\x76\x00\x61\x00\x74\x00\x20\x00\ +\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x74\x00\x75\x00\x6e\x00\ +\x61\x00\x20\x00\x6e\x00\x69\x00\x69\x00\x64\x00\x65\x00\x6e\x00\ +\x20\x00\x73\x00\x69\x00\x6a\x00\x61\x00\x61\x00\x6e\x00\x2e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x7f\x4e\x6f\x72\x6d\x61\x6c\x6c\ +\x79\x2c\x20\x61\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\x6e\x67\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x2c\x20\x74\x68\x65\x20\x63\x6f\ +\x70\x69\x65\x73\x20\x67\x65\x74\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x2e\x20\x49\x66\x20\x74\x68\x69\x73\x20\x6f\x70\x74\x69\x6f\ +\x6e\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\ +\x65\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\ +\x69\x6c\x6c\x20\x62\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x69\x6e\x73\x74\x65\x61\x64\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\ +\x00\x4f\x00\x43\x00\x41\x00\x2d\x00\x6d\x00\x75\x00\x6f\x00\x74\ +\x00\x6f\x00\x69\x00\x6c\x00\x75\x00\x61\x00\x73\x00\x65\x00\x74\ +\x00\x75\x00\x6b\x00\x73\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x12\x4f\x43\x41\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\ +\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x54\x00\x41\ +\x00\x6c\x00\x6b\x00\x75\x00\x70\x00\x65\x00\x72\x00\xe4\x00\x69\ +\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x76\x00\xe4\x00\x72\x00\x69\ +\x00\x20\x00\x6a\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\ +\x00\x61\x00\x61\x00\x6c\x00\x69\x00\x20\x00\x76\x00\x69\x00\x69\ +\x00\x76\x00\x61\x00\x6e\x00\x6c\x00\x65\x00\x76\x00\x65\x00\x79\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x4f\x72\x69\x67\ +\x69\x6e\x61\x6c\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\ +\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\ +\x00\x52\x00\x61\x00\x77\x00\x20\x00\x28\x00\x66\x00\x6f\x00\x72\ +\x00\x20\x00\x43\x00\x41\x00\x4d\x00\x29\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0d\x52\x61\x77\x20\x28\x66\x6f\x72\x20\x43\x41\x4d\ +\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x36\x00\x52\x00\x65\x00\x6e\x00\ +\x64\x00\x65\x00\x72\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\ +\x6c\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\ +\x74\x00\x68\x00\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x52\x65\x6e\x64\x65\x72\x20\ +\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x73\x20\x77\x69\x74\x68\x20\x77\ +\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x4f\x00\x69\ +\x00\x6b\x00\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x52\x69\x67\x68\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x53\x00\ +\x56\x00\x47\x00\x2d\x00\x6d\x00\x75\x00\x6f\x00\x74\x00\x6f\x00\ +\x69\x00\x6c\x00\x75\x00\x61\x00\x73\x00\x65\x00\x74\x00\x75\x00\ +\x6b\x00\x73\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x12\x53\x56\x47\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\ +\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x74\x00\x54\x00\x61\x00\ +\x6c\x00\x6c\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x61\x00\x20\x00\ +\x6e\x00\x79\x00\x6b\x00\x79\x00\x69\x00\x73\x00\x65\x00\x6e\x00\ +\x20\x00\x76\x00\xe4\x00\x72\x00\x69\x00\x6e\x00\x20\x00\x6a\x00\ +\x61\x00\x20\x00\x76\x00\x69\x00\x69\x00\x76\x00\x61\x00\x6e\x00\ +\x6c\x00\x65\x00\x76\x00\x65\x00\x79\x00\x64\x00\x65\x00\x6e\x00\ +\x20\x00\x65\x00\x72\x00\x69\x00\x20\x00\x69\x00\x73\x00\x74\x00\ +\x75\x00\x6e\x00\x74\x00\x6f\x00\x69\x00\x68\x00\x69\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x30\x53\x61\x76\x65\x20\x63\x75\ +\x72\x72\x65\x6e\x74\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\ +\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\x61\x63\x72\x6f\x73\x73\ +\x20\x73\x65\x73\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x50\x00\x56\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x73\x00\x65\x00\ +\x20\x00\x70\x00\x65\x00\x72\x00\x75\x00\x73\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x74\x00\x20\x00\x6b\x00\ +\x6f\x00\x70\x00\x69\x00\x6f\x00\x69\x00\x6e\x00\x6e\x00\x69\x00\ +\x6e\x00\x20\x00\x6a\x00\xe4\x00\x6c\x00\x6b\x00\x65\x00\x65\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x53\x65\x6c\x65\x63\ +\x74\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\ +\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\x6e\x67\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x2e\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x53\x00\x6e\x00\x61\ +\x00\x70\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\ +\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x53\x68\x6f\x77\ +\x20\x44\x72\x61\x66\x74\x20\x53\x6e\x61\x70\x20\x74\x6f\x6f\x6c\ +\x62\x61\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\x00\x53\x00\x68\x00\ +\x6f\x00\x77\x00\x20\x00\x57\x00\x6f\x00\x72\x00\x6b\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\ +\x20\x00\x74\x00\x72\x00\x61\x00\x63\x00\x6b\x00\x65\x00\x72\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\x68\x6f\x77\x20\x57\x6f\ +\x72\x6b\x69\x6e\x67\x20\x50\x6c\x61\x6e\x65\x20\x74\x72\x61\x63\ +\x6b\x65\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x56\x00\x69\x00\ +\x6e\x00\x6f\x00\x76\x00\x69\x00\x69\x00\x76\x00\x61\x00\x20\x00\ +\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\ +\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x56\x00\x69\x00\x6e\ +\x00\x6f\x00\x76\x00\x69\x00\x69\x00\x76\x00\x61\x00\x20\x00\x37\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\x20\ +\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x56\x00\x69\x00\x6e\x00\ +\x6f\x00\x76\x00\x69\x00\x69\x00\x76\x00\x61\x00\x20\x00\x39\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\x20\x39\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x4b\x00\x6f\x00\x68\x00\x64\ +\x00\x69\x00\x73\x00\x74\x00\x61\x00\x20\x00\x76\x00\xe4\x00\x72\ +\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x6e\x61\x70\ +\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x53\ +\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6d\x00\x61\x00\x78\x00\x69\ +\x00\x6d\x00\x75\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x53\x6e\x61\x70\x20\x6d\x61\x78\x69\x6d\x75\x6d\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x1e\x00\x4b\x00\x6f\x00\x68\x00\x64\x00\x69\x00\x73\ +\x00\x74\x00\x75\x00\x73\x00\x20\x00\x6d\x00\x75\x00\x6f\x00\x74\ +\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x53\x6e\x61\x70\ +\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x4b\x00\x6f\ +\x00\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\x61\x00\x20\x00\x61\ +\x00\x6c\x00\x75\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\ +\x53\x6e\x61\x70\x20\x72\x61\x6e\x67\x65\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x66\x00\x53\x00\x74\x00\x79\x00\x6c\x00\x65\x00\x20\x00\x6f\ +\x00\x66\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x66\x00\x69\ +\x00\x6c\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x77\x00\x72\ +\x00\x69\x00\x74\x00\x65\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\ +\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x69\ +\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x53\x00\x6b\x00\x65\ +\x00\x74\x00\x63\x00\x68\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x33\x53\x74\x79\x6c\x65\x20\x6f\x66\x20\x53\x56\x47\x20\x66\ +\x69\x6c\x65\x20\x74\x6f\x20\x77\x72\x69\x74\x65\x20\x77\x68\x65\ +\x6e\x20\x65\x78\x70\x6f\x72\x74\x69\x6e\x67\x20\x61\x20\x53\x6b\ +\x65\x74\x63\x68\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x54\x00\ +\x65\x00\x68\x00\x74\x00\xe4\x00\x76\x00\xe4\x00\x6e\x00\xe4\x00\ +\x6b\x00\x79\x00\x6d\x00\xe4\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x08\x54\x61\x73\x6b\x76\x69\x65\x77\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x38\x00\x52\x00\x61\x00\x6a\x00\x6f\x00\x69\x00\x74\x00\x74\x00\ +\x65\x00\x69\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x75\x00\ +\x6f\x00\x6b\x00\x6b\x00\x61\x00\x75\x00\x73\x00\x6e\x00\xe4\x00\ +\x70\x00\x70\x00\xe4\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1d\x54\x68\x65\x20\x43\x6f\x6e\x73\x74\x72\x61\x69\x6e\ +\x69\x6e\x67\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x26\x00\x41\x00\x6c\x00\x74\x00\x2d\ +\x00\x6d\x00\x75\x00\x6f\x00\x6b\x00\x6b\x00\x61\x00\x75\x00\x73\ +\x00\x6e\x00\xe4\x00\x70\x00\x70\x00\xe4\x00\x69\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\x20\x61\x6c\x74\x20\ +\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x82\x00\x56\x00\xe4\x00\x72\x00\x69\x00\x6b\x00\x61\ +\x00\x72\x00\x74\x00\x6f\x00\x69\x00\x74\x00\x75\x00\x73\x00\x2d\ +\x00\x74\x00\x69\x00\x65\x00\x64\x00\x6f\x00\x73\x00\x74\x00\x6f\ +\x00\x6e\x00\x20\x00\x6b\x00\xe4\x00\xe4\x00\x6e\x00\x74\x00\xe4\ +\x00\x6d\x00\x69\x00\x73\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x64\ +\x00\x78\x00\x66\x00\x20\x00\x76\x00\xe4\x00\x72\x00\x69\x00\x74\ +\x00\x20\x00\x76\x00\x69\x00\x69\x00\x76\x00\x61\x00\x6e\x00\x70\ +\x00\x61\x00\x6b\x00\x73\x00\x75\x00\x75\x00\x6b\x00\x73\x00\x69\ +\x00\x6c\x00\x6c\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x41\ +\x54\x68\x65\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\ +\x67\x20\x66\x69\x6c\x65\x20\x66\x6f\x72\x20\x74\x72\x61\x6e\x73\ +\x6c\x61\x74\x69\x6e\x67\x20\x64\x78\x66\x20\x63\x6f\x6c\x6f\x72\ +\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x74\x00\x4f\x00\x6c\x00\x65\x00\ +\x74\x00\x75\x00\x73\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\x69\x00\ +\x61\x00\x20\x00\x6b\x00\xe4\x00\x79\x00\x74\x00\x65\x00\x74\x00\ +\xe4\x00\xe4\x00\x6e\x00\x20\x00\x6c\x00\x75\x00\x6f\x00\x74\x00\ +\x61\x00\x65\x00\x73\x00\x73\x00\x61\x00\x20\x00\x75\x00\x75\x00\ +\x74\x00\x74\x00\x61\x00\x20\x00\x70\x00\x69\x00\x69\x00\x72\x00\ +\x75\x00\x73\x00\x74\x00\x75\x00\x6b\x00\x73\x00\x65\x00\x6e\x00\ +\x20\x00\x61\x00\x72\x00\x6b\x00\x6b\x00\x69\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x3d\x54\x68\x65\x20\x64\x65\x66\x61\x75\ +\x6c\x74\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x20\x74\x6f\x20\x75\ +\x73\x65\x20\x77\x68\x65\x6e\x20\x63\x72\x65\x61\x74\x69\x6e\x67\ +\x20\x61\x20\x6e\x65\x77\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x73\ +\x68\x65\x65\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x92\x00\x44\x00\x65\ +\x00\x73\x00\x69\x00\x6d\x00\x61\x00\x61\x00\x6c\x00\x69\x00\x65\ +\x00\x6e\x00\x20\x00\x6d\x00\xe4\x00\xe4\x00\x72\x00\xe4\x00\x20\ +\x00\x73\x00\x69\x00\x73\x00\xe4\x00\x69\x00\x73\x00\x74\x00\x65\ +\x00\x6e\x00\x20\x00\x6b\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x69\ +\x00\x6e\x00\x61\x00\x61\x00\x74\x00\x74\x00\x69\x00\x65\x00\x6e\ +\x00\x20\x00\x74\x00\x6f\x00\x69\x00\x6d\x00\x69\x00\x6e\x00\x6e\ +\x00\x6f\x00\x69\x00\x73\x00\x73\x00\x61\x00\x20\x00\x28\x00\x65\ +\x00\x73\x00\x69\x00\x6d\x00\x2e\x00\x20\x00\x33\x00\x20\x00\x3d\ +\x00\x20\x00\x30\x00\x2e\x00\x30\x00\x30\x00\x31\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x4d\x54\x68\x65\x20\x6e\x75\x6d\x62\ +\x65\x72\x20\x6f\x66\x20\x64\x65\x63\x69\x6d\x61\x6c\x73\x20\x69\ +\x6e\x20\x69\x6e\x74\x65\x72\x6e\x61\x6c\x20\x63\x6f\x6f\x72\x64\ +\x69\x6e\x61\x74\x65\x73\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\ +\x73\x20\x28\x66\x6f\x72\x20\x65\x78\x2e\x20\x33\x20\x3d\x20\x30\ +\x2e\x30\x30\x31\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x94\x00\x53\x00\ +\xe4\x00\x74\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x6b\x00\x6f\x00\ +\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6d\x00\x69\x00\ +\x6e\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x72\x00\x69\x00\x74\x00\ +\x79\x00\x69\x00\x73\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x70\x00\ +\x69\x00\x73\x00\x74\x00\x65\x00\x65\x00\x73\x00\x65\x00\x65\x00\ +\x6e\x00\x2e\x00\x41\x00\x73\x00\x65\x00\x74\x00\x61\x00\x20\x00\ +\x30\x00\x20\x00\x65\x00\x69\x00\x20\x00\x65\x00\x74\x00\xe4\x00\ +\x69\x00\x73\x00\x79\x00\x79\x00\x74\x00\x74\x00\xe4\x00\x20\x00\ +\x28\x00\x6a\x00\x61\x00\x74\x00\x6b\x00\x75\x00\x76\x00\x61\x00\ +\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4e\x54\x68\x65\x20\x72\ +\x61\x64\x69\x75\x73\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x70\x69\ +\x6e\x67\x20\x74\x6f\x20\x73\x70\x65\x63\x69\x61\x6c\x20\x70\x6f\ +\x69\x6e\x74\x73\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\x30\x20\x66\ +\x6f\x72\x20\x6e\x6f\x20\x64\x69\x73\x74\x61\x6e\x63\x65\x20\x28\ +\x69\x6e\x66\x69\x6e\x69\x74\x65\x29\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x38\x00\x4b\x00\x6f\x00\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\ +\x75\x00\x6b\x00\x73\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x75\x00\ +\x6f\x00\x6b\x00\x6b\x00\x61\x00\x75\x00\x73\x00\x6e\x00\xe4\x00\ +\x70\x00\x70\x00\xe4\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x15\x54\x68\x65\x20\x73\x6e\x61\x70\x20\x6d\x6f\x64\x69\ +\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\ +\x00\x52\x00\x75\x00\x75\x00\x64\x00\x75\x00\x6b\x00\x6f\x00\x6e\ +\x00\x20\x00\x76\x00\x69\x00\x69\x00\x76\x00\x6f\x00\x6a\x00\x65\ +\x00\x6e\x00\x20\x00\x76\x00\xe4\x00\x6c\x00\x69\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x22\x54\x68\x65\x20\x73\x70\x61\x63\ +\x69\x6e\x67\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x65\x61\x63\x68\ +\x20\x67\x72\x69\x64\x20\x6c\x69\x6e\x65\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x01\xca\x00\x54\x00\xe4\x00\x6d\x00\xe4\x00\x20\x00\x6f\x00\x6e\ +\x00\x20\x00\x55\x00\x49\x00\x20\x00\x74\x00\x69\x00\x6c\x00\x61\ +\x00\x20\x00\x6a\x00\x6f\x00\x73\x00\x73\x00\x61\x00\x20\x00\x48\ +\x00\x61\x00\x68\x00\x6d\x00\x6f\x00\x74\x00\x65\x00\x6c\x00\x6d\ +\x00\x61\x00\x6e\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x75\ +\x00\x6c\x00\x69\x00\x20\x00\x74\x00\x6f\x00\x69\x00\x6d\x00\x69\ +\x00\x69\x00\x3a\x00\x20\x00\x54\x00\x79\x00\xf6\x00\x6b\x00\x61\ +\x00\x6c\x00\x75\x00\x20\x00\x74\x00\x69\x00\x6c\x00\x61\x00\x73\ +\x00\x73\x00\x61\x00\x20\x00\x73\x00\x69\x00\x6a\x00\x6f\x00\x69\ +\x00\x74\x00\x65\x00\x74\x00\x61\x00\x61\x00\x6d\x00\x20\x00\x6b\ +\x00\x61\x00\x69\x00\x6b\x00\x6b\x00\x69\x00\x20\x00\x48\x00\x61\ +\x00\x68\x00\x6d\x00\x6f\x00\x74\x00\x65\x00\x6c\x00\x6d\x00\x61\ +\x00\x6e\x00\x20\x00\x61\x00\x73\x00\x65\x00\x74\x00\x75\x00\x6b\ +\x00\x73\x00\x65\x00\x74\x00\x20\x00\x65\x00\x72\x00\x69\x00\x6c\ +\x00\x6c\x00\x69\x00\x73\x00\x65\x00\x73\x00\x73\x00\xe4\x00\x20\ +\x00\x74\x00\x79\x00\xf6\x00\x6b\x00\x61\x00\x6c\x00\x75\x00\x72\ +\x00\x69\x00\x76\x00\x69\x00\x73\x00\x73\x00\xe4\x00\x2c\x00\x20\ +\x00\x6b\x00\x75\x00\x6e\x00\x20\x00\x74\x00\x65\x00\x68\x00\x74\ +\x00\xe4\x00\x76\x00\xe4\x00\x70\x00\x61\x00\x6c\x00\x6b\x00\x69\ +\x00\x6e\x00\x20\x00\x74\x00\x69\x00\x6c\x00\x61\x00\x20\x00\x6b\ +\x00\xe4\x00\x79\x00\x74\x00\x74\x00\xe4\x00\xe4\x00\x20\x00\x46\ +\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x20\x00\x54\ +\x00\x65\x00\x68\x00\x74\x00\xe4\x00\x76\x00\xe4\x00\x6e\x00\xe4\ +\x00\x6b\x00\x79\x00\x6d\x00\xe4\x00\xe4\x00\x20\x00\x6a\x00\xe4\ +\x00\x72\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6d\ +\x00\xe4\x00\x6e\x00\x20\x00\x6b\x00\xe4\x00\x79\x00\x74\x00\x74\ +\x00\xe4\x00\x6a\x00\xe4\x00\x6e\x00\x20\x00\x6b\x00\x61\x00\x69\ +\x00\x6b\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x74\x00\x6f\ +\x00\x69\x00\x6d\x00\x69\x00\x6c\x00\x6c\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\xcf\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\ +\x65\x20\x55\x49\x20\x6d\x6f\x64\x65\x20\x69\x6e\x20\x77\x68\x69\ +\x63\x68\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\ +\x75\x6c\x65\x20\x77\x69\x6c\x6c\x20\x77\x6f\x72\x6b\x3a\x20\x54\ +\x6f\x6f\x6c\x62\x61\x72\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\ +\x20\x70\x6c\x61\x63\x65\x20\x61\x6c\x6c\x20\x44\x72\x61\x66\x74\ +\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x20\x69\x6e\x20\x61\x20\x73\ +\x65\x70\x61\x72\x61\x74\x65\x20\x74\x6f\x6f\x6c\x62\x61\x72\x2c\ +\x20\x77\x68\x69\x6c\x65\x20\x74\x61\x73\x6b\x62\x61\x72\x20\x6d\ +\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x75\x73\x65\x20\x74\x68\x65\ +\x20\x46\x72\x65\x65\x43\x41\x44\x20\x54\x61\x73\x6b\x76\x69\x65\ +\x77\x20\x73\x79\x73\x74\x65\x6d\x20\x66\x6f\x72\x20\x61\x6c\x6c\ +\x20\x69\x74\x73\x20\x75\x73\x65\x72\x20\x69\x6e\x74\x65\x72\x61\ +\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x94\x00\x54\x00\ +\xe4\x00\x6d\x00\xe4\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\ +\x6c\x00\x65\x00\x74\x00\x75\x00\x73\x00\x61\x00\x72\x00\x76\x00\ +\x6f\x00\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x76\x00\xe4\x00\ +\x72\x00\x69\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x65\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x6a\x00\ +\x6f\x00\x74\x00\x6b\x00\x61\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\ +\x70\x00\x69\x00\x69\x00\x72\x00\x72\x00\x65\x00\x74\x00\x74\x00\ +\x79\x00\x20\x00\x72\x00\x61\x00\x6b\x00\x65\x00\x6e\x00\x6e\x00\ +\x65\x00\x74\x00\x69\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x61\x00\ +\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x54\x68\x69\x73\x20\ +\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\ +\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x20\x62\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x20\x77\x68\x69\ +\x6c\x65\x20\x69\x6e\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\ +\x6f\x6e\x20\x6d\x6f\x64\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x02\x48\ +\x00\x54\x00\xe4\x00\x6d\x00\xe4\x00\x20\x00\x6f\x00\x6e\x00\x20\ +\x00\x6f\x00\x6c\x00\x65\x00\x74\x00\x75\x00\x73\x00\x66\x00\x6f\ +\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x20\x00\x6e\x00\x69\x00\x6d\ +\x00\x69\x00\x20\x00\x6b\x00\x61\x00\x69\x00\x6b\x00\x69\x00\x6c\ +\x00\x6c\x00\x65\x00\x20\x00\x74\x00\x65\x00\x6b\x00\x73\x00\x74\ +\x00\x69\x00\x6c\x00\x75\x00\x6f\x00\x6e\x00\x6e\x00\x6f\x00\x6b\ +\x00\x73\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x6a\x00\x61\ +\x00\x20\x00\x6d\x00\x69\x00\x74\x00\x6f\x00\x69\x00\x6c\x00\x6c\ +\x00\x65\x00\x2e\x00\x20\x00\x53\x00\x65\x00\x20\x00\x76\x00\x6f\ +\x00\x69\x00\x20\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x66\ +\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x20\x00\x6e\x00\x69\ +\x00\x6d\x00\x69\x00\x2c\x00\x20\x00\x6b\x00\x75\x00\x74\x00\x65\ +\x00\x6e\x00\x20\x00\x26\x00\x71\x00\x75\x00\x6f\x00\x74\x00\x3b\ +\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x26\x00\x71\x00\x75\ +\x00\x6f\x00\x74\x00\x3b\x00\x2c\x00\x20\x00\x6f\x00\x6c\x00\x65\ +\x00\x74\x00\x75\x00\x73\x00\x74\x00\x79\x00\x79\x00\x6c\x00\x69\ +\x00\x20\x00\x6b\x00\x75\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x26\ +\x00\x71\x00\x75\x00\x6f\x00\x74\x00\x3b\x00\x73\x00\x61\x00\x6e\ +\x00\x73\x00\x26\x00\x71\x00\x75\x00\x6f\x00\x74\x00\x3b\x00\x2c\ +\x00\x20\x00\x26\x00\x71\x00\x75\x00\x6f\x00\x74\x00\x3b\x00\x73\ +\x00\x65\x00\x72\x00\x69\x00\x66\x00\x26\x00\x71\x00\x75\x00\x6f\ +\x00\x74\x00\x3b\x00\x20\x00\x74\x00\x61\x00\x69\x00\x20\x00\x26\ +\x00\x71\x00\x75\x00\x6f\x00\x74\x00\x3b\x00\x6d\x00\x6f\x00\x6e\ +\x00\x6f\x00\x26\x00\x71\x00\x75\x00\x6f\x00\x74\x00\x3b\x00\x2c\ +\x00\x20\x00\x74\x00\x61\x00\x69\x00\x20\x00\x70\x00\x65\x00\x72\ +\x00\x68\x00\x65\x00\x2c\x00\x20\x00\x6b\x00\x75\x00\x74\x00\x65\ +\x00\x6e\x00\x20\x00\x26\x00\x71\x00\x75\x00\x6f\x00\x74\x00\x3b\ +\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x2c\x00\x20\x00\x48\ +\x00\x65\x00\x6c\x00\x76\x00\x65\x00\x74\x00\x69\x00\x63\x00\x61\ +\x00\x2c\x00\x20\x00\x73\x00\x61\x00\x6e\x00\x73\x00\x26\x00\x71\ +\x00\x75\x00\x6f\x00\x74\x00\x3b\x00\x20\x00\x74\x00\x61\x00\x69\ +\x00\x20\x00\x74\x00\x79\x00\x79\x00\x6c\x00\x69\x00\x6e\x00\x20\ +\x00\x6e\x00\x69\x00\x6d\x00\x69\x00\x20\x00\x6b\x00\x75\x00\x74\ +\x00\x65\x00\x6e\x00\x20\x00\x26\x00\x71\x00\x75\x00\x6f\x00\x74\ +\x00\x3b\x00\x20\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x3a\ +\x00\x20\x00\x42\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x26\x00\x71\ +\x00\x75\x00\x6f\x00\x74\x00\x3b\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\xf2\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\ +\x66\x61\x75\x6c\x74\x20\x66\x6f\x6e\x74\x20\x6e\x61\x6d\x65\x20\ +\x66\x6f\x72\x20\x61\x6c\x6c\x20\x44\x72\x61\x66\x74\x20\x74\x65\ +\x78\x74\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\ +\x6e\x73\x2e\x0a\x49\x74\x20\x63\x61\x6e\x20\x62\x65\x20\x61\x20\ +\x66\x6f\x6e\x74\x20\x6e\x61\x6d\x65\x20\x73\x75\x63\x68\x20\x61\ +\x73\x20\x22\x41\x72\x69\x61\x6c\x22\x2c\x20\x61\x20\x64\x65\x66\ +\x61\x75\x6c\x74\x20\x73\x74\x79\x6c\x65\x20\x73\x75\x63\x68\x20\ +\x61\x73\x20\x22\x73\x61\x6e\x73\x22\x2c\x20\x22\x73\x65\x72\x69\ +\x66\x22\x0a\x6f\x72\x20\x22\x6d\x6f\x6e\x6f\x22\x2c\x20\x6f\x72\ +\x20\x61\x20\x66\x61\x6d\x69\x6c\x79\x20\x73\x75\x63\x68\x20\x61\ +\x73\x20\x22\x41\x72\x69\x61\x6c\x2c\x48\x65\x6c\x76\x65\x74\x69\ +\x63\x61\x2c\x73\x61\x6e\x73\x22\x20\x6f\x72\x20\x61\x20\x6e\x61\ +\x6d\x65\x20\x77\x69\x74\x68\x20\x61\x20\x73\x74\x79\x6c\x65\x0a\ +\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\x72\x69\x61\x6c\x3a\x42\ +\x6f\x6c\x64\x22\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x7a\x00\x54\x00\xe4\ +\x00\x6d\x00\xe4\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\x6c\ +\x00\x65\x00\x74\x00\x75\x00\x73\x00\x61\x00\x72\x00\x76\x00\x6f\ +\x00\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x72\x00\x79\x00\x68\ +\x00\x6d\x00\xe4\x00\x6e\x00\x20\x00\x6e\x00\x69\x00\x6d\x00\x69\ +\x00\x20\x00\x72\x00\x61\x00\x6b\x00\x65\x00\x6e\x00\x6e\x00\x65\ +\x00\x74\x00\x69\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\x67\x00\x65\ +\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x6f\x00\x69\ +\x00\x6c\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\ +\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\ +\x75\x6c\x74\x20\x67\x72\x6f\x75\x70\x20\x6e\x61\x6d\x65\x20\x66\ +\x6f\x72\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\ +\x67\x65\x6f\x6d\x65\x74\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x88\ +\x00\x54\x00\xe4\x00\x6d\x00\xe4\x00\x20\x00\x6d\x00\x65\x00\x6e\ +\x00\x65\x00\x74\x00\x65\x00\x6c\x00\x6d\x00\xe4\x00\x20\x00\x6f\ +\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x74\ +\x00\x75\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x6e\x00\x20\x00\x76\ +\x00\xe4\x00\x72\x00\x69\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x75\ +\x00\x6f\x00\x6e\x00\x6e\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x20\ +\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x3a\ +\x00\x73\x00\x73\x00\x61\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x47\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x65\ +\x74\x68\x6f\x64\x20\x63\x68\x6f\x6f\x73\x65\x64\x20\x66\x6f\x72\ +\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\x53\x56\x47\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x63\x6f\x6c\x6f\x72\x20\x69\x6e\x74\x6f\ +\x20\x46\x72\x65\x65\x43\x41\x44\x2e\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\ +\xc4\x00\x54\x00\xe4\x00\x6d\x00\xe4\x00\x20\x00\x6f\x00\x6e\x00\ +\x20\x00\x6d\x00\x65\x00\x6e\x00\x65\x00\x74\x00\x65\x00\x6c\x00\ +\x6d\x00\xe4\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\ +\x74\x00\x61\x00\x65\x00\x73\x00\x73\x00\x61\x00\x20\x00\x74\x00\ +\x75\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x61\x00\x20\x00\x74\x00\ +\x61\x00\x69\x00\x20\x00\x6b\x00\xe4\x00\xe4\x00\x6e\x00\x74\x00\ +\xe4\x00\x6d\x00\x69\x00\x73\x00\x74\x00\xe4\x00\x20\x00\x44\x00\ +\x58\x00\x46\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x69\x00\x6e\x00\x20\x00\x76\x00\xe4\x00\x72\x00\x69\x00\ +\x6c\x00\x6c\x00\x65\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\ +\x43\x00\x41\x00\x44\x00\x3a\x00\x73\x00\x73\x00\x61\x00\x2e\x00\ +\x20\x00\x20\x00\x4a\x00\x6f\x00\x73\x00\x20\x00\x76\x00\xe4\x00\ +\x72\x00\x69\x00\x6d\x00\xe4\x00\xe4\x00\x72\x00\x69\x00\x74\x00\ +\x79\x00\x6b\x00\x73\x00\x65\x00\x74\x00\x20\x00\x6f\x00\x6e\x00\ +\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x74\x00\x75\x00\ +\x2c\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x73\x00\ +\x65\x00\x20\x00\x76\x00\xe4\x00\x72\x00\x69\x00\x20\x00\x6b\x00\ +\x61\x00\x72\x00\x74\x00\x6f\x00\x69\x00\x74\x00\x75\x00\x73\x00\ +\x2d\x00\x74\x00\x69\x00\x65\x00\x64\x00\x6f\x00\x73\x00\x74\x00\ +\x6f\x00\x73\x00\x74\x00\x61\x00\x2c\x00\x20\x00\x6a\x00\x6f\x00\ +\x6b\x00\x61\x00\x20\x00\x73\x00\x69\x00\x73\x00\xe4\x00\x6c\x00\ +\x74\x00\xe4\x00\xe4\x00\x20\x00\x6b\x00\xe4\x00\xe4\x00\x6e\x00\ +\x6e\x00\xf6\x00\x73\x00\x2d\x00\x74\x00\x61\x00\x75\x00\x6c\x00\ +\x75\x00\x6b\x00\x6f\x00\x6e\x00\x2c\x00\x20\x00\x6a\x00\x6f\x00\ +\x6b\x00\x61\x00\x20\x00\x6d\x00\x75\x00\x75\x00\x6e\x00\x74\x00\ +\x61\x00\x61\x00\x20\x00\x76\x00\xe4\x00\x72\x00\x69\x00\x74\x00\ +\x20\x00\x76\x00\x69\x00\x69\x00\x76\x00\x61\x00\x6e\x00\x6c\x00\ +\x65\x00\x76\x00\x65\x00\x79\x00\x6b\x00\x73\x00\x69\x00\x6c\x00\ +\x6c\x00\x65\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\xe3\x54\ +\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\ +\x64\x20\x63\x68\x6f\x6f\x73\x65\x64\x20\x66\x6f\x72\x20\x69\x6d\ +\x70\x6f\x72\x74\x69\x6e\x67\x20\x6f\x72\x20\x74\x72\x61\x6e\x73\ +\x6c\x61\x74\x69\x6e\x67\x20\x44\x58\x46\x20\x6f\x62\x6a\x65\x63\ +\x74\x20\x63\x6f\x6c\x6f\x72\x20\x69\x6e\x74\x6f\x20\x46\x72\x65\ +\x65\x43\x41\x44\x2e\x20\x0a\x49\x66\x20\x63\x6f\x6c\x6f\x72\x20\ +\x6d\x61\x70\x70\x69\x6e\x67\x20\x69\x73\x20\x63\x68\x6f\x6f\x73\ +\x65\x64\x2c\x20\x79\x6f\x75\x20\x6d\x75\x73\x74\x20\x63\x68\x6f\ +\x6f\x73\x65\x20\x61\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\ +\x69\x6e\x67\x20\x66\x69\x6c\x65\x20\x63\x6f\x6e\x74\x61\x69\x6e\ +\x69\x6e\x67\x20\x61\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6f\ +\x6e\x20\x74\x61\x62\x6c\x65\x20\x74\x68\x61\x74\x20\x77\x69\x6c\ +\x6c\x20\x63\x6f\x6e\x76\x65\x72\x74\x20\x63\x6f\x6c\x6f\x72\x73\ +\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x73\ +\x2e\x0a\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\xdc\x00\x54\x00\xe4\x00\x6d\ +\x00\xe4\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x6d\x00\x69\x00\x74\ +\x00\x61\x00\x6e\x00\x20\x00\x74\x00\x65\x00\x6b\x00\x73\x00\x74\ +\x00\x69\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x75\x00\x75\x00\x6e\ +\x00\x74\x00\x61\x00\x2c\x00\x20\x00\x6b\x00\x75\x00\x6e\x00\x20\ +\x00\x6e\x00\xe4\x00\x6d\x00\xe4\x00\x20\x00\x6d\x00\x69\x00\x74\ +\x00\x61\x00\x74\x00\x20\x00\x6f\x00\x76\x00\x61\x00\x74\x00\x20\ +\x00\x70\x00\x79\x00\x73\x00\x74\x00\x79\x00\x73\x00\x75\x00\x75\ +\x00\x6e\x00\x6e\x00\x61\x00\x73\x00\x73\x00\x61\x00\x2e\x00\x20\ +\x00\x4f\x00\x6c\x00\x65\x00\x74\x00\x75\x00\x73\x00\x61\x00\x72\ +\x00\x76\x00\x6f\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x76\x00\x61\ +\x00\x73\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x6a\x00\x6f\x00\x6b\ +\x00\x61\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x49\x00\x53\x00\x4f\ +\x00\x2d\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\ +\x00\x64\x00\x69\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7e\ +\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6f\x72\x69\x65\ +\x6e\x74\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x64\ +\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x20\x74\x65\x78\x74\x73\x20\x77\ +\x68\x65\x6e\x20\x74\x68\x6f\x73\x65\x20\x64\x69\x6d\x65\x6e\x73\ +\x69\x6f\x6e\x73\x20\x61\x72\x65\x20\x76\x65\x72\x74\x69\x63\x61\ +\x6c\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x69\x73\x20\x6c\x65\ +\x66\x74\x2c\x20\x77\x68\x69\x63\x68\x20\x69\x73\x20\x74\x68\x65\ +\x20\x49\x53\x4f\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x2e\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\xe4\x00\x54\x00\xe4\x00\x6d\x00\xe4\x00\x20\ +\x00\x61\x00\x72\x00\x76\x00\x6f\x00\x20\x00\x6f\x00\x6e\x00\x20\ +\x00\x6b\x00\xe4\x00\x79\x00\x74\x00\x65\x00\x74\x00\x74\x00\x79\ +\x00\x20\x00\x74\x00\x6f\x00\x69\x00\x6d\x00\x69\x00\x6e\x00\x6e\ +\x00\x6f\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x2c\x00\x20\x00\x6a\ +\x00\x6f\x00\x74\x00\x6b\x00\x61\x00\x20\x00\x6b\x00\xe4\x00\x79\ +\x00\x74\x00\x74\x00\xe4\x00\x76\x00\xe4\x00\x74\x00\x20\x00\x74\ +\x00\x6f\x00\x6c\x00\x65\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x73\ +\x00\x69\x00\x61\x00\x2e\x00\x20\x00\x41\x00\x72\x00\x76\x00\x6f\ +\x00\x6a\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x72\x00\x6f\x00\x74\ +\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x74\x00\xe4\ +\x00\x6d\x00\xe4\x00\x6e\x00\x20\x00\x61\x00\x72\x00\x76\x00\x6f\ +\x00\x6e\x00\x20\x00\x6b\x00\xe4\x00\x73\x00\x69\x00\x74\x00\x65\ +\x00\x6c\x00\x6c\x00\xe4\x00\xe4\x00\x6e\x00\x20\x00\x73\x00\x61\ +\x00\x6d\x00\x61\x00\x6e\x00\x61\x00\x2e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x7b\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\ +\x76\x61\x6c\x75\x65\x20\x75\x73\x65\x64\x20\x62\x79\x20\x66\x75\ +\x6e\x63\x74\x69\x6f\x6e\x73\x20\x74\x68\x61\x74\x20\x75\x73\x65\ +\x20\x61\x20\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x2e\x0a\x56\x61\ +\x6c\x75\x65\x73\x20\x77\x69\x74\x68\x20\x64\x69\x66\x66\x65\x72\ +\x65\x6e\x63\x65\x73\x20\x62\x65\x6c\x6f\x77\x20\x74\x68\x69\x73\ +\x20\x76\x61\x6c\x75\x65\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x74\ +\x72\x65\x61\x74\x65\x64\x20\x61\x73\x20\x73\x61\x6d\x65\x2e\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x14\x00\x54\x00\x6f\x00\x6c\x00\x65\x00\ +\x72\x00\x61\x00\x6e\x00\x73\x00\x73\x00\x69\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x09\x54\x6f\x6c\x65\x72\x61\x6e\x63\x65\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x16\x00\x54\x00\x79\x00\xf6\x00\x6b\x00\x61\ +\x00\x6c\x00\x75\x00\x72\x00\x69\x00\x76\x00\x69\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x07\x54\x6f\x6f\x6c\x62\x61\x72\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x46\x00\x54\x00\x72\x00\x61\x00\x6e\x00\x73\x00\ +\x6c\x00\x61\x00\x74\x00\x65\x00\x20\x00\x77\x00\x68\x00\x69\x00\ +\x74\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\ +\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x62\x00\x6c\x00\x61\x00\x63\x00\x6b\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x23\x54\x72\x61\x6e\x73\x6c\x61\x74\x65\x20\x77\ +\x68\x69\x74\x65\x20\x6c\x69\x6e\x65\x20\x63\x6f\x6c\x6f\x72\x20\ +\x74\x6f\x20\x62\x6c\x61\x63\x6b\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\ +\x00\x54\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x6c\x00\x61\x00\x74\ +\x00\x65\x00\x64\x00\x20\x00\x28\x00\x66\x00\x6f\x00\x72\x00\x20\ +\x00\x70\x00\x72\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x26\x00\x20\ +\x00\x64\x00\x69\x00\x73\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x29\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x54\x72\x61\x6e\x73\x6c\ +\x61\x74\x65\x64\x20\x28\x66\x6f\x72\x20\x70\x72\x69\x6e\x74\x20\ +\x26\x20\x64\x69\x73\x70\x6c\x61\x79\x29\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x5a\x00\x4b\x00\xe4\x00\x79\x00\x74\x00\xe4\x00\x20\x00\x6f\ +\x00\x6c\x00\x65\x00\x74\x00\x75\x00\x73\x00\x76\x00\xe4\x00\x72\ +\x00\x69\x00\xe4\x00\x20\x00\x6a\x00\x61\x00\x20\x00\x6e\x00\x6f\ +\x00\x72\x00\x6d\x00\x61\x00\x61\x00\x6c\x00\x69\x00\x61\x00\x20\ +\x00\x76\x00\x69\x00\x69\x00\x76\x00\x61\x00\x6e\x00\x6c\x00\x65\ +\x00\x76\x00\x65\x00\x79\x00\x74\x00\x74\x00\xe4\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1f\x55\x73\x65\x20\x64\x65\x66\x61\x75\x6c\ +\x74\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\ +\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x4b\x00\ +\xe4\x00\x79\x00\x74\x00\xe4\x00\x20\x00\x72\x00\x75\x00\x75\x00\ +\x64\x00\x75\x00\x6b\x00\x6b\x00\x6f\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x55\x73\x65\x20\x67\x72\x69\x64\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x40\x00\x55\x00\x73\x00\x65\x00\x20\x00\x73\x00\ +\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x20\x00\ +\x66\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x73\x00\x69\x00\x7a\x00\ +\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x65\x00\ +\x78\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x55\ +\x73\x65\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x66\x6f\x6e\x74\ +\x20\x73\x69\x7a\x65\x20\x66\x6f\x72\x20\x74\x65\x78\x74\x73\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x48\x00\x50\x00\x79\x00\x73\x00\x74\x00\ +\x79\x00\x73\x00\x75\x00\x6f\x00\x72\x00\x69\x00\x65\x00\x6e\x00\ +\x20\x00\x6d\x00\x69\x00\x74\x00\x74\x00\x6f\x00\x6a\x00\x65\x00\ +\x6e\x00\x20\x00\x74\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x69\x00\ +\x6e\x00\x20\x00\x73\x00\x75\x00\x75\x00\x6e\x00\x74\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x24\x56\x65\x72\x74\x69\x63\x61\ +\x6c\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x74\x65\x78\ +\x74\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\xe6\x00\x57\x00\x68\x00\x65\x00\x6e\x00\x20\x00\ +\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x76\x00\x69\x00\ +\x65\x00\x77\x00\x73\x00\x2c\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\ +\x65\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x77\x00\x68\x00\ +\x69\x00\x74\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\ +\x77\x00\x6f\x00\x72\x00\x6b\x00\x20\x00\x61\x00\x70\x00\x70\x00\ +\x65\x00\x61\x00\x72\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x62\x00\ +\x6c\x00\x61\x00\x63\x00\x6b\x00\x2c\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x20\x00\x62\x00\x65\x00\x74\x00\x74\x00\x65\x00\x72\x00\ +\x20\x00\x72\x00\x65\x00\x61\x00\x64\x00\x61\x00\x62\x00\x69\x00\ +\x6c\x00\x69\x00\x74\x00\x79\x00\x20\x00\x61\x00\x67\x00\x61\x00\ +\x69\x00\x6e\x00\x73\x00\x74\x00\x20\x00\x77\x00\x68\x00\x69\x00\ +\x74\x00\x65\x00\x20\x00\x62\x00\x61\x00\x63\x00\x6b\x00\x67\x00\ +\x72\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x73\x57\x68\x65\x6e\x20\x65\x78\x70\x6f\x72\x74\ +\x69\x6e\x67\x20\x53\x56\x47\x20\x76\x69\x65\x77\x73\x2c\x20\x6d\ +\x61\x6b\x65\x20\x61\x6c\x6c\x20\x77\x68\x69\x74\x65\x20\x6c\x69\ +\x6e\x65\x77\x6f\x72\x6b\x20\x61\x70\x70\x65\x61\x72\x20\x69\x6e\ +\x20\x62\x6c\x61\x63\x6b\x2c\x20\x66\x6f\x72\x20\x62\x65\x74\x74\ +\x65\x72\x20\x72\x65\x61\x64\x61\x62\x69\x6c\x69\x74\x79\x20\x61\ +\x67\x61\x69\x6e\x73\x74\x20\x77\x68\x69\x74\x65\x20\x62\x61\x63\ +\x6b\x67\x72\x6f\x75\x6e\x64\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x72\ +\x00\x4b\x00\x75\x00\x6e\x00\x20\x00\x76\x00\x69\x00\x65\x00\x74\ +\x00\x20\x00\x6b\x00\xe4\x00\x79\x00\x72\x00\xe4\x00\x76\x00\x69\ +\x00\x69\x00\x76\x00\x6f\x00\x6a\x00\x61\x00\x20\x00\x44\x00\x58\ +\x00\x46\x00\x3a\x00\xe4\x00\xe4\x00\x6e\x00\x2c\x00\x20\x00\x6e\ +\x00\x65\x00\x20\x00\x6d\x00\x75\x00\x75\x00\x6e\x00\x6e\x00\x65\ +\x00\x74\x00\x61\x00\x61\x00\x6e\x00\x20\x00\x6d\x00\x75\x00\x72\ +\x00\x74\x00\x6f\x00\x76\x00\x69\x00\x69\x00\x76\x00\x6f\x00\x69\ +\x00\x6b\x00\x73\x00\x69\x00\x2e\x00\x20\x00\x54\x00\xe4\x00\x6d\ +\x00\xe4\x00\x20\x00\x61\x00\x72\x00\x76\x00\x6f\x00\x20\x00\x6f\ +\x00\x6e\x00\x20\x00\x65\x00\x6e\x00\x69\x00\x6e\x00\x74\x00\xe4\ +\x00\xe4\x00\x6e\x00\x20\x00\x70\x00\x69\x00\x74\x00\x75\x00\x75\ +\x00\x73\x00\x20\x00\x6b\x00\x75\x00\x6e\x00\x6b\x00\x69\x00\x6e\ +\x00\x20\x00\x6d\x00\x75\x00\x72\x00\x74\x00\x6f\x00\x76\x00\x69\ +\x00\x69\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x67\ +\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x69\x00\x6c\x00\x6c\ +\x00\x65\x00\x2e\x00\x20\x00\x4a\x00\x6f\x00\x73\x00\x20\x00\x30\ +\x00\x2c\x00\x20\x00\x73\x00\x69\x00\x74\x00\x74\x00\x65\x00\x6e\ +\x00\x20\x00\x6b\x00\x6f\x00\x6b\x00\x6f\x00\x20\x00\x6b\x00\xe4\ +\x00\x79\x00\x72\x00\xe4\x00\x76\x00\x69\x00\x69\x00\x76\x00\x61\ +\x00\x20\x00\x6b\x00\xe4\x00\x73\x00\x69\x00\x74\x00\x65\x00\x6c\ +\x00\x6c\x00\xe4\x00\xe4\x00\x6e\x00\x20\x00\x73\x00\x75\x00\x6f\ +\x00\x72\x00\x61\x00\x6e\x00\x61\x00\x20\x00\x73\x00\x65\x00\x67\ +\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x74\x00\x69\x00\x6e\x00\xe4\ +\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\xc2\x57\x68\x65\x6e\ +\x20\x65\x78\x70\x6f\x72\x74\x69\x6e\x67\x20\x73\x70\x6c\x69\x6e\ +\x65\x73\x20\x74\x6f\x20\x44\x58\x46\x2c\x20\x74\x68\x65\x79\x20\ +\x61\x72\x65\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x65\x64\x20\ +\x69\x6e\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x73\x2e\x20\x54\x68\ +\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x69\x73\x20\x74\x68\x65\x20\ +\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\ +\x66\x20\x65\x61\x63\x68\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x6f\ +\x6c\x79\x6c\x69\x6e\x65\x20\x73\x65\x67\x6d\x65\x6e\x74\x73\x2e\ +\x20\x49\x66\x20\x30\x2c\x20\x74\x68\x65\x6e\x20\x74\x68\x65\x20\ +\x77\x68\x6f\x6c\x65\x20\x73\x70\x6c\x69\x6e\x65\x20\x69\x73\x20\ +\x74\x72\x65\x61\x74\x65\x64\x20\x61\x73\x20\x61\x20\x73\x74\x72\ +\x61\x69\x67\x68\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x2e\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x16\x00\x58\x00\x59\x00\x20\x00\x28\x00\x50\ +\x00\xe4\x00\xe4\x00\x6c\x00\x74\x00\xe4\x00\x29\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x08\x58\x59\x20\x28\x54\x6f\x70\x29\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x16\x00\x58\x00\x5a\x00\x20\x00\x28\x00\x65\ +\x00\x64\x00\x65\x00\x73\x00\x74\x00\xe4\x00\x29\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0a\x58\x5a\x20\x28\x46\x72\x6f\x6e\x74\x29\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x18\x00\x59\x00\x5a\x00\x20\x00\x28\ +\x00\x73\x00\x69\x00\x76\x00\x75\x00\x6c\x00\x74\x00\x61\x00\x29\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x59\x5a\x20\x28\x53\x69\ +\x64\x65\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\x00\x61\x00\x6c\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x61\x6c\x74\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\xac\x00\x56\x00\x61\x00\x6c\x00\x69\x00\x74\ +\x00\x73\x00\x65\x00\x20\x00\x74\x00\xe4\x00\x6d\x00\xe4\x00\x2c\ +\x00\x20\x00\x6a\x00\x6f\x00\x73\x00\x20\x00\x68\x00\x61\x00\x6c\ +\x00\x75\x00\x61\x00\x74\x00\x20\x00\x6b\x00\xe4\x00\x79\x00\x74\ +\x00\x74\x00\xe4\x00\xe4\x00\x20\x00\x76\x00\xe4\x00\x72\x00\x69\ +\x00\xe4\x00\x2f\x00\x76\x00\x69\x00\x69\x00\x76\x00\x61\x00\x6e\ +\x00\x6c\x00\x65\x00\x76\x00\x65\x00\x79\x00\x74\x00\x74\x00\xe4\ +\x00\x20\x00\x74\x00\x79\x00\xf6\x00\x6b\x00\x61\x00\x6c\x00\x75\ +\x00\x70\x00\x61\x00\x6c\x00\x6b\x00\x69\x00\x73\x00\x74\x00\x61\ +\x00\x20\x00\x6f\x00\x6c\x00\x65\x00\x74\x00\x75\x00\x73\x00\x61\ +\x00\x72\x00\x76\x00\x6f\x00\x69\x00\x73\x00\x65\x00\x73\x00\x74\ +\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x63\x68\x65\x63\ +\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x79\x6f\x75\x20\x77\x61\ +\x6e\x74\x20\x74\x6f\x20\x75\x73\x65\x20\x74\x68\x65\x20\x63\x6f\ +\x6c\x6f\x72\x2f\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\x66\x72\ +\x6f\x6d\x20\x74\x68\x65\x20\x74\x6f\x6f\x6c\x62\x61\x72\x20\x61\ +\x73\x20\x64\x65\x66\x61\x75\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x08\x00\x63\x00\x74\x00\x72\x00\x6c\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x63\x74\x72\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xce\x00\ +\x69\x00\x66\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\ +\x65\x00\x64\x00\x2c\x00\x20\x00\x61\x00\x20\x00\x77\x00\x69\x00\ +\x64\x00\x67\x00\x65\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x64\x00\ +\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\ +\x65\x00\x6e\x00\x74\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\ +\x65\x00\x20\x00\x6f\x00\x72\x00\x69\x00\x65\x00\x6e\x00\x74\x00\ +\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x70\x00\ +\x70\x00\x65\x00\x61\x00\x72\x00\x73\x00\x20\x00\x64\x00\x75\x00\ +\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x64\x00\x72\x00\x61\x00\ +\x77\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x70\x00\x65\x00\ +\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x67\x69\x66\x20\x63\x68\x65\x63\x6b\x65\ +\x64\x2c\x20\x61\x20\x77\x69\x64\x67\x65\x74\x20\x69\x6e\x64\x69\ +\x63\x61\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\ +\x6e\x74\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\ +\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x61\x70\x70\ +\x65\x61\x72\x73\x20\x64\x75\x72\x69\x6e\x67\x20\x64\x72\x61\x77\ +\x69\x6e\x67\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x01\x46\x00\x4a\x00\x6f\x00\x73\x00\x20\x00\x74\ +\x00\xe4\x00\x6d\x00\xe4\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x76\ +\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x74\x00\x75\x00\x6e\x00\x61\ +\x00\x2c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\ +\x00\x69\x00\x74\x00\x20\x00\x73\x00\x61\x00\x6d\x00\x61\x00\x73\ +\x00\x74\x00\x61\x00\x20\x00\x6b\x00\x65\x00\x72\x00\x72\x00\x6f\ +\x00\x6b\x00\x73\x00\x65\x00\x73\x00\x74\x00\x61\x00\x20\x00\x79\ +\x00\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\x65\x00\x74\x00\xe4\ +\x00\xe4\x00\x6e\x00\x20\x00\x79\x00\x68\x00\x64\x00\x65\x00\x6b\ +\x00\x73\x00\x69\x00\x20\x00\x48\x00\x61\x00\x68\x00\x6d\x00\x6f\ +\x00\x74\x00\x65\x00\x6c\x00\x6d\x00\x61\x00\x6e\x00\x20\x00\x4c\ +\x00\x6f\x00\x68\x00\x6b\x00\x6f\x00\x69\x00\x6b\x00\x73\x00\x69\ +\x00\x2c\x00\x20\x00\x6e\x00\xe4\x00\x79\x00\x74\x00\x74\x00\xf6\ +\x00\x20\x00\x6b\x00\xe4\x00\xe4\x00\x6e\x00\x74\x00\x79\x00\x79\ +\x00\x20\x00\x6e\x00\x6f\x00\x70\x00\x65\x00\x61\x00\x6d\x00\x6d\ +\x00\x69\x00\x6e\x00\x2c\x00\x20\x00\x6d\x00\x75\x00\x74\x00\x74\ +\x00\x61\x00\x20\x00\x74\x00\x65\x00\x6b\x00\x65\x00\x65\x00\x20\ +\x00\x6e\x00\x69\x00\x69\x00\x73\x00\x74\x00\xe4\x00\x20\x00\x76\ +\x00\xe4\x00\x68\x00\x65\x00\x6d\x00\x6d\x00\xe4\x00\x6e\x00\x20\ +\x00\x68\x00\x65\x00\x6c\x00\x70\x00\x6f\x00\x6e\x00\x20\x00\x6d\ +\x00\x75\x00\x6f\x00\x6b\x00\x61\x00\x74\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x93\x69\x66\x20\x74\x68\x69\x73\x20\x69\x73\ +\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\ +\x6c\x61\x79\x65\x72\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x6a\ +\x6f\x69\x6e\x65\x64\x20\x69\x6e\x74\x6f\x20\x44\x72\x61\x66\x74\ +\x20\x42\x6c\x6f\x63\x6b\x73\x2c\x20\x74\x75\x72\x6e\x69\x6e\x67\ +\x20\x74\x68\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x66\x61\x73\ +\x74\x65\x72\x2c\x20\x62\x75\x74\x20\x6d\x61\x6b\x69\x6e\x67\x20\ +\x74\x68\x65\x6d\x20\x6c\x65\x73\x73\x20\x65\x61\x73\x69\x6c\x79\ +\x20\x65\x64\x69\x74\x61\x62\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\xa6\x00\x4a\x00\x6f\x00\x73\x00\x20\x00\x74\x00\xe4\x00\x6d\x00\ +\xe4\x00\x20\x00\x76\x00\x61\x00\x69\x00\x68\x00\x74\x00\x6f\x00\ +\x65\x00\x68\x00\x74\x00\x6f\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\ +\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x74\x00\x75\x00\x6e\x00\ +\x61\x00\x2c\x00\x20\x00\x70\x00\x61\x00\x70\x00\x65\x00\x72\x00\ +\x69\x00\x6e\x00\x20\x00\x74\x00\x69\x00\x6c\x00\x61\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x69\x00\ +\x6c\x00\x6c\x00\x65\x00\x20\x00\x74\x00\xe4\x00\x79\x00\x74\x00\ +\x79\x00\x79\x00\x20\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\ +\x6d\x00\x79\x00\xf6\x00\x73\x00\x20\x00\x74\x00\x75\x00\x6f\x00\ +\x74\x00\x75\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x3c\x69\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x70\x61\x70\x65\x72\x20\x73\x70\x61\x63\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\ +\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x74\x00\x4a\x00\x6f\x00\x73\x00\x20\x00\x74\x00\ +\xe4\x00\x6d\x00\xe4\x00\x20\x00\x65\x00\x69\x00\x20\x00\x6f\x00\ +\x6c\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\ +\x74\x00\x75\x00\x6e\x00\x61\x00\x2c\x00\x20\x00\x74\x00\x65\x00\ +\x6b\x00\x73\x00\x74\x00\x65\x00\x6a\x00\xe4\x00\x2f\x00\x6d\x00\ +\x74\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x65\x00\x6a\x00\xe4\x00\ +\x20\x00\x65\x00\x69\x00\x20\x00\x76\x00\x6f\x00\x69\x00\x20\x00\ +\x74\x00\x75\x00\x6f\x00\x64\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x34\x69\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x75\x6e\ +\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x65\x78\x74\x73\x2f\x6d\ +\x74\x65\x78\x74\x73\x20\x77\x6f\x6e\x27\x74\x20\x62\x65\x20\x69\ +\x6d\x70\x6f\x72\x74\x65\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\ +\x70\x00\x78\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x70\x78\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0a\x00\x73\x00\x68\x00\x69\x00\x66\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x73\x68\x69\x66\x74\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x4f\x00\x6c\x00\x65\x00\x74\ +\x00\x75\x00\x73\x00\x20\x00\x76\x00\xe4\x00\x72\x00\x69\x00\x20\ +\x00\x75\x00\x75\x00\x73\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x69\ +\x00\x6c\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\ +\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\ +\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x60\x00\x6f\x00\x6c\x00\x65\x00\ +\x74\x00\x75\x00\x73\x00\x61\x00\x72\x00\x76\x00\x6f\x00\x69\x00\ +\x6e\x00\x65\x00\x6e\x00\x20\x00\x76\x00\xe4\x00\x72\x00\x69\x00\ +\x20\x00\x6b\x00\x6f\x00\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\ +\x65\x00\x74\x00\x74\x00\x61\x00\x76\x00\x69\x00\x6c\x00\x6c\x00\ +\x65\x00\x20\x00\x73\x00\x79\x00\x6d\x00\x62\x00\x6f\x00\x6c\x00\ +\x65\x00\x69\x00\x6c\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x22\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\ +\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x20\x73\x79\ +\x6d\x62\x6f\x6c\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x60\x00\x6f\x00\ +\x6c\x00\x65\x00\x74\x00\x75\x00\x73\x00\x61\x00\x72\x00\x76\x00\ +\x6f\x00\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x69\x00\ +\x69\x00\x76\x00\x61\x00\x6e\x00\x70\x00\x61\x00\x6b\x00\x73\x00\ +\x75\x00\x75\x00\x73\x00\x20\x00\x75\x00\x75\x00\x73\x00\x69\x00\ +\x6c\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x65\x00\x69\x00\x6c\x00\x6c\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x25\x74\x68\x65\x20\x64\x65\x66\x61\x75\ +\x6c\x74\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\x66\x6f\x72\ +\x20\x6e\x65\x77\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0c\x00\x26\x00\x53\x00\x75\x00\x6c\x00\x6a\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x26\x43\x6c\x6f\x73\x65\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\ +\x00\x26\x00\x4a\x00\x61\x00\x74\x00\x6b\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x26\x43\x6f\x6e\x74\x69\x6e\x75\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\ +\x26\x00\x4b\x00\x6f\x00\x70\x00\x69\x00\x6f\x00\x69\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x05\x26\x43\x6f\x70\x79\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x26\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x06\x26\x44\x72\x61\x66\x74\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x26\x00\x56\x00\x61\x00\x6c\ +\x00\x6d\x00\x69\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ +\x26\x46\x69\x6e\x69\x73\x68\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x26\x00\x26\x00\x4f\x00\x43\x00\x43\x00\ +\x2d\x00\x74\x00\x79\x00\x79\x00\x6c\x00\x69\x00\x20\x00\x73\x00\ +\x69\x00\x69\x00\x72\x00\x74\x00\x79\x00\x6d\x00\xe4\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x11\x26\x4f\x43\x43\x2d\x73\x74\x79\x6c\ +\x65\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x26\x00\x53\x00\x75\x00\x68\ +\x00\x74\x00\x65\x00\x65\x00\x6c\x00\x6c\x00\x69\x00\x6e\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\x52\x65\x6c\ +\x61\x74\x69\x76\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0c\x00\x26\x00\x4b\x00\x75\x00\x6d\x00\x6f\x00\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x55\x6e\x64\x6f\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\ +\x00\x26\x00\x50\x00\x79\x00\x79\x00\x68\x00\x69\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x05\x26\x57\x69\x70\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x41\x00\x6b\x00\ +\x74\x00\x69\x00\x69\x00\x76\x00\x69\x00\x6e\x00\x65\x00\x6e\x00\ +\x20\x00\x76\x00\x65\x00\x64\x00\x6f\x00\x73\x00\x2d\x00\x6b\x00\ +\x6f\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x14\x41\x63\x74\x69\x76\x65\x20\x44\x72\x61\x66\ +\x74\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x8a\x00\x41\x00\x6b\x00\x74\x00\ +\x69\x00\x69\x00\x76\x00\x69\x00\x73\x00\x65\x00\x73\x00\x73\x00\ +\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x69\x00\x73\x00\x73\x00\x61\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\ +\x6f\x00\x6c\x00\x74\x00\x61\x00\x76\x00\x61\x00\x20\x00\x65\x00\ +\x6e\x00\x65\x00\x6d\x00\x6d\x00\xe4\x00\x6e\x00\x20\x00\x6b\x00\ +\x75\x00\x69\x00\x6e\x00\x20\x00\x6b\x00\x61\x00\x6b\x00\x73\x00\ +\x69\x00\x20\x00\x70\x00\x69\x00\x73\x00\x74\x00\x65\x00\x74\x00\ +\x74\x00\xe4\x00\x2f\x00\x73\x00\x6f\x00\x6c\x00\x6d\x00\x75\x00\ +\x61\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x41\x63\x74\ +\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x6d\x75\x73\x74\x20\ +\x68\x61\x76\x65\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\x74\ +\x77\x6f\x20\x70\x6f\x69\x6e\x74\x73\x2f\x6e\x6f\x64\x65\x73\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\ +\x00\x4c\x00\x69\x00\x73\x00\xe4\x00\xe4\x00\x20\x00\x70\x00\x69\ +\x00\x73\x00\x74\x00\x65\x00\x69\x00\x74\x00\xe4\x00\x20\x00\x6e\ +\x00\x79\x00\x6b\x00\x79\x00\x69\x00\x73\x00\x65\x00\x65\x00\x6e\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\ +\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x41\x64\ +\x64\x20\x70\x6f\x69\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\ +\x63\x75\x72\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x41\ +\x00\x75\x00\x6b\x00\x6b\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x08\x41\x70\x65\x72\x74\x75\x72\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x41\x00\x75\x00\x6b\ +\x00\x6f\x00\x6e\x00\x20\x00\x6b\x00\x75\x00\x6c\x00\x6d\x00\x61\ +\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x41\x70\ +\x65\x72\x74\x75\x72\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x00\x4b\ +\x00\xe4\x00\x79\x00\x74\x00\xe4\x00\x20\x00\x76\x00\x61\x00\x6c\ +\x00\x69\x00\x74\x00\x74\x00\x75\x00\x69\x00\x68\x00\x69\x00\x6e\ +\x00\x20\x00\x6b\x00\x6f\x00\x68\x00\x74\x00\x65\x00\x69\x00\x73\ +\x00\x69\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\ +\x41\x70\x70\x6c\x79\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x4b\x00\x61\x00\x61\x00\ +\x72\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\x72\x63\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\ +\x00\x42\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x07\x42\x53\x70\x6c\x69\x6e\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\ +\x45\x00\x69\x00\x20\x00\x76\x00\x6f\x00\x69\x00\x20\x00\x73\x00\ +\x69\x00\x69\x00\x72\x00\x74\x00\xe4\x00\xe4\x00\x20\x00\x74\x00\ +\xe4\x00\x74\x00\xe4\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x69\x00\x74\x00\x79\x00\x79\x00\x70\x00\x70\x00\ +\x69\x00\xe4\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x43\ +\x61\x6e\x6e\x6f\x74\x20\x6f\x66\x66\x73\x65\x74\x20\x74\x68\x69\ +\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x4b\ +\x00\x65\x00\x73\x00\x6b\x00\x69\x00\x74\x00\xe4\x00\x20\x00\x58\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x65\x6e\x74\x65\x72\ +\x20\x58\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x18\x00\x4d\x00\x75\x00\x75\x00\x74\x00\x61\x00\x20\x00\x74\ +\x00\x79\x00\x79\x00\x6c\x00\x69\x00\xe4\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x43\x68\x61\x6e\x67\x65\x20\x53\x74\x79\x6c\x65\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa6\ +\x00\x52\x00\x61\x00\x73\x00\x74\x00\x69\x00\x20\x00\x74\x00\xe4\ +\x00\x6d\x00\xe4\x00\x2c\x00\x20\x00\x6a\x00\x6f\x00\x73\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x6e\ +\x00\x20\x00\x70\x00\x69\x00\x74\x00\xe4\x00\x69\x00\x73\x00\x69\ +\x00\x20\x00\x6e\x00\xe4\x00\x6b\x00\x79\x00\xe4\x00\x20\x00\x74\ +\x00\xe4\x00\x79\x00\x74\x00\x65\x00\x74\x00\x74\x00\x79\x00\x6e\ +\x00\xe4\x00\x2c\x00\x20\x00\x6d\x00\x75\x00\x75\x00\x74\x00\x65\ +\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x20\x00\x6e\x00\xe4\x00\x6b\ +\x00\x79\x00\x79\x00\x20\x00\x72\x00\x61\x00\x75\x00\x74\x00\x61\ +\x00\x6c\x00\x61\x00\x6e\x00\x6b\x00\x61\x00\x6e\x00\x61\x00\x20\ +\x00\x28\x00\x69\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5b\ +\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x74\x68\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x73\x68\x6f\x75\x6c\x64\x20\ +\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x66\x69\x6c\x6c\x65\x64\ +\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x69\x74\x20\x77\ +\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x77\x69\ +\x72\x65\x66\x72\x61\x6d\x65\x20\x28\x69\x29\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x59\x00\x6d\x00\ +\x70\x00\x79\x00\x72\x00\xe4\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x06\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x1a\x00\x43\x00\x6f\x00\x6e\x00\x74\x00\ +\x65\x00\x78\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x74\x65\ +\x78\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x96\x00\x4b\x00\x6f\x00\x6f\x00\x72\ +\x00\x64\x00\x69\x00\x6e\x00\x61\x00\x61\x00\x74\x00\x69\x00\x74\ +\x00\x20\x00\x73\x00\x75\x00\x68\x00\x74\x00\x65\x00\x65\x00\x73\ +\x00\x73\x00\x61\x00\x20\x00\x76\x00\x69\x00\x69\x00\x6d\x00\x65\ +\x00\x69\x00\x73\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x61\ +\x00\x69\x00\x20\x00\x73\x00\x75\x00\x68\x00\x74\x00\x65\x00\x65\ +\x00\x6c\x00\x6c\x00\x69\x00\x73\x00\x65\x00\x65\x00\x6e\x00\x20\ +\x00\x70\x00\x69\x00\x73\x00\x74\x00\x65\x00\x65\x00\x73\x00\x65\ +\x00\x65\x00\x6e\x00\x20\x00\x28\x00\x56\x00\xc4\x00\x4c\x00\x49\ +\x00\x4c\x00\x59\x00\xd6\x00\x4e\x00\x54\x00\x49\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x36\x43\x6f\x6f\x72\x64\x69\x6e\x61\ +\x74\x65\x73\x20\x72\x65\x6c\x61\x74\x69\x76\x65\x20\x74\x6f\x20\ +\x6c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x6f\x72\x20\x61\x62\ +\x73\x6f\x6c\x75\x74\x65\x20\x28\x53\x50\x41\x43\x45\x29\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x4b\ +\x00\x6f\x00\x70\x00\x69\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x43\x6f\x70\x79\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x3e\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\ +\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x75\x00\x70\x00\x67\x00\x72\ +\x00\x61\x00\x64\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x73\ +\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x73\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x43\x6f\ +\x75\x6c\x64\x6e\x27\x74\x20\x75\x70\x67\x72\x61\x64\x65\x20\x74\ +\x68\x65\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x4c\x00\ +\x75\x00\x6f\x00\x20\x00\x4b\x00\x61\x00\x61\x00\x72\x00\x69\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x72\x65\x61\x74\x65\x20\ +\x41\x72\x63\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x2a\x00\x4c\x00\x75\x00\x6f\x00\x20\x00\x42\x00\xe9\x00\ +\x7a\x00\x69\x00\x65\x00\x72\x00\x2d\x00\x6b\x00\xe4\x00\x79\x00\ +\x72\x00\xe4\x00\x76\x00\x69\x00\x69\x00\x76\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0e\x43\x72\x65\x61\x74\x65\x20\x42\x53\ +\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x14\x00\x4c\x00\x75\x00\x6f\x00\x20\x00\x59\x00\ +\x6d\x00\x70\x00\x79\x00\x72\x00\xe4\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x43\x72\x65\x61\x74\x65\x20\x43\x69\x72\x63\x6c\x65\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x44\ +\x00\x57\x00\x69\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0c\x43\x72\x65\x61\x74\x65\x20\x44\x57\x69\x72\x65\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x4c\ +\x00\x75\x00\x6f\x00\x20\x00\x6d\x00\x69\x00\x74\x00\x74\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\x74\x65\ +\x20\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x4c\x00\x75\x00\x6f\ +\x00\x20\x00\x6d\x00\x6f\x00\x6e\x00\x69\x00\x6b\x00\x75\x00\x6c\ +\x00\x6d\x00\x69\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ +\x43\x72\x65\x61\x74\x65\x20\x50\x6f\x6c\x79\x67\x6f\x6e\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x4c\ +\x00\x75\x00\x6f\x00\x20\x00\x73\x00\x75\x00\x6f\x00\x72\x00\x61\ +\x00\x6b\x00\x75\x00\x6c\x00\x6d\x00\x69\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\x74\x65\x20\x52\x65\x63\ +\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x14\x00\x4c\x00\x75\x00\x6f\x00\x20\x00\x74\ +\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x54\x65\x78\x74\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\ +\x44\x00\x57\x00\x69\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x05\x44\x57\x69\x72\x65\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x44\x00\x57\x00\x69\x00\x72\ +\x00\x65\x00\x20\x00\x68\x00\x61\x00\x73\x00\x20\x00\x62\x00\x65\ +\x00\x65\x00\x6e\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\ +\x00\x64\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x44\x57\ +\x69\x72\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x63\x6c\x6f\ +\x73\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0a\x00\x4d\x00\x69\x00\x74\x00\x74\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x44\x69\x6d\x65\x6e\x73\x69\x6f\ +\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x10\x00\x45\x00\x74\x00\xe4\x00\x69\x00\x73\x00\x79\x00\x79\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\ +\x6e\x63\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x58\x00\x50\x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x69\x00\x61\x00\x20\x00\x65\x00\x69\x00\x20\x00\x6b\x00\ +\x6f\x00\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\x65\x00\x74\x00\ +\x74\x00\x75\x00\x20\x00\x70\x00\x69\x00\x69\x00\x72\x00\x75\x00\ +\x73\x00\x74\x00\x75\x00\x6b\x00\x73\x00\x65\x00\x6e\x00\x20\x00\ +\x74\x00\x61\x00\x73\x00\x6f\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x28\x44\x6f\x20\x6e\x6f\x74\x20\x70\x72\x6f\x6a\ +\x65\x63\x74\x20\x70\x6f\x69\x6e\x74\x73\x20\x74\x6f\x20\x61\x20\ +\x64\x72\x61\x77\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x44\x00\ +\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x63\x00\x72\x00\x65\x00\ +\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x74\x00\x6f\x00\ +\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x44\ +\x72\x61\x66\x74\x20\x63\x72\x65\x61\x74\x69\x6f\x6e\x20\x74\x6f\ +\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x30\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\ +\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\ +\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x44\x72\x61\ +\x66\x74\x20\x6d\x6f\x64\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\ +\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x2c\x00\x52\x00\x65\x00\x75\x00\x6e\x00\x61\x00\ +\x74\x00\x20\x00\x65\x00\x69\x00\x76\x00\xe4\x00\x74\x00\x20\x00\ +\x6c\x00\x65\x00\x69\x00\x6b\x00\x6b\x00\x61\x00\x61\x00\x21\x00\ +\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x45\x64\x67\x65\x73\ +\x20\x64\x6f\x6e\x27\x74\x20\x69\x6e\x74\x65\x72\x73\x65\x63\x74\ +\x21\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0e\x00\x4d\x00\x75\x00\x6f\x00\x6b\x00\x6b\x00\x61\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x54\ +\x00\x26\x00\xe4\x00\x79\x00\x74\x00\x65\x00\x74\x00\x74\x00\x79\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x46\x26\x69\x6c\x6c\x65\ +\x64\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x16\x00\x50\x00\x69\x00\x6e\x00\x6e\x00\x61\x00\x6e\x00\x20\x00\ +\x76\x00\xe4\x00\x72\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x46\x61\x63\x65\x20\x43\x6f\x6c\x6f\x72\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x54\x00\x56\x00\x69\x00\ +\x69\x00\x6d\x00\x65\x00\x69\x00\x73\x00\x74\x00\x65\x00\x6c\x00\ +\x65\x00\x65\x00\x20\x00\x6a\x00\x61\x00\x20\x00\x73\x00\x75\x00\ +\x6c\x00\x6b\x00\x65\x00\x65\x00\x20\x00\x6e\x00\x79\x00\x6b\x00\ +\x79\x00\x69\x00\x73\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x69\x00\ +\x69\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x28\x00\x43\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x28\x46\x69\x6e\x69\x73\x68\x65\ +\x73\x20\x61\x6e\x64\x20\x63\x6c\x6f\x73\x65\x73\x20\x74\x68\x65\ +\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\x6e\x65\x20\x28\x43\ +\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x78\x00\x56\x00\x69\x00\x69\x00\x6d\x00\x65\x00\x69\x00\x73\x00\ +\x74\x00\x65\x00\x6c\x00\x65\x00\x65\x00\x20\x00\x6e\x00\x79\x00\ +\x6b\x00\x79\x00\x69\x00\x73\x00\x65\x00\x6e\x00\x20\x00\x70\x00\ +\x69\x00\x69\x00\x72\x00\x75\x00\x73\x00\x74\x00\x75\x00\x6b\x00\ +\x73\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x61\x00\x69\x00\x20\x00\ +\x6d\x00\x75\x00\x6f\x00\x6b\x00\x6b\x00\x61\x00\x75\x00\x73\x00\ +\x74\x00\x6f\x00\x69\x00\x6d\x00\x69\x00\x6e\x00\x6e\x00\x6f\x00\ +\x6e\x00\x20\x00\x28\x00\x46\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x35\x46\x69\x6e\x69\x73\x68\x65\x73\x20\x74\x68\x65\x20\ +\x63\x75\x72\x72\x65\x6e\x74\x20\x64\x72\x61\x77\x69\x6e\x67\x20\ +\x6f\x72\x20\x65\x64\x69\x74\x69\x6e\x67\x20\x6f\x70\x65\x72\x61\ +\x74\x69\x6f\x6e\x20\x28\x46\x29\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x16\x00\x46\x00\x6f\x00\x6e\x00\x74\ +\x00\x69\x00\x6e\x00\x20\x00\x6b\x00\x6f\x00\x6b\x00\x6f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x46\x6f\x6e\x74\x20\x53\x69\x7a\ +\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x4e\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\ +\x20\x00\x63\x00\x69\x00\x72\x00\x63\x00\x75\x00\x6c\x00\x61\x00\ +\x72\x00\x20\x00\x65\x00\x64\x00\x67\x00\x65\x00\x3a\x00\x20\x00\ +\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\ +\x20\x00\x63\x00\x69\x00\x72\x00\x63\x00\x6c\x00\x65\x00\x0a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x27\x46\x6f\x75\x6e\x64\x20\x31\ +\x20\x63\x69\x72\x63\x75\x6c\x61\x72\x20\x65\x64\x67\x65\x3a\x20\ +\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x63\x69\x72\x63\x6c\x65\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x76\ +\x00\x4c\x00\xf6\x00\x79\x00\x74\x00\x79\x00\x69\x00\x20\x00\x31\ +\x00\x20\x00\x73\x00\x75\x00\x6c\x00\x6a\x00\x65\x00\x74\x00\x74\ +\x00\x75\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\ +\x00\x69\x00\x6e\x00\x20\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x73\ +\x00\x69\x00\x3a\x00\x20\x00\x54\x00\x6f\x00\x74\x00\x65\x00\x75\ +\x00\x74\x00\x65\x00\x74\x00\x61\x00\x61\x00\x6e\x00\x20\x00\x70\ +\x00\x69\x00\x6e\x00\x74\x00\x61\x00\x20\x00\x73\x00\x69\x00\x69\ +\x00\x74\x00\xe4\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\ +\x46\x6f\x75\x6e\x64\x20\x31\x20\x63\x6c\x6f\x73\x65\x64\x20\x73\ +\x6b\x65\x74\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x6d\x61\ +\x6b\x69\x6e\x67\x20\x61\x20\x66\x61\x63\x65\x20\x66\x72\x6f\x6d\ +\x20\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x44\x00\x4c\x00\xf6\x00\x79\x00\x74\x00\x79\x00\x69\ +\x00\x20\x00\x31\x00\x20\x00\x70\x00\x69\x00\x6e\x00\x74\x00\x61\ +\x00\x3a\x00\x20\x00\x70\x00\x75\x00\x72\x00\x6b\x00\x61\x00\x61\ +\x00\x20\x00\x73\x00\x65\x00\x6e\x00\x20\x00\x6c\x00\x61\x00\x6e\ +\x00\x67\x00\x61\x00\x74\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x23\x46\x6f\x75\x6e\x64\x20\x31\x20\x66\x61\x63\x65\x3a\x20\ +\x65\x78\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x69\x74\x73\x20\x77\ +\x69\x72\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x64\x00\x4c\x00\xf6\x00\x79\x00\x74\x00\x79\x00\ +\x69\x00\x20\x00\x31\x00\x20\x00\x65\x00\x69\x00\x2d\x00\x70\x00\ +\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\ +\x6e\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x69\x00\x3a\x00\x20\x00\x68\x00\x61\x00\x68\x00\ +\x6d\x00\x6f\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x61\x00\x61\x00\ +\x6e\x00\x20\x00\x73\x00\x65\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2f\x46\x6f\x75\x6e\x64\x20\x31\x20\x6e\x6f\x6e\x2d\x70\ +\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x3a\x20\x64\x72\x61\x66\x74\x69\x66\x79\x69\x6e\x67\x20\x69\ +\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x42\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\ +\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x64\ +\x00\x67\x00\x65\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\ +\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\ +\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x46\x6f\ +\x75\x6e\x64\x20\x31\x20\x6f\x70\x65\x6e\x20\x65\x64\x67\x65\x3a\ +\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x6c\x69\x6e\x65\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\ +\x4c\x00\xf6\x00\x79\x00\x74\x00\x79\x00\x69\x00\x20\x00\x31\x00\ +\x20\x00\x61\x00\x76\x00\x6f\x00\x69\x00\x6e\x00\x20\x00\x6c\x00\ +\x61\x00\x6e\x00\x6b\x00\x61\x00\x3a\x00\x20\x00\x73\x00\x75\x00\ +\x6c\x00\x6a\x00\x65\x00\x74\x00\x61\x00\x61\x00\x6e\x00\x20\x00\ +\x73\x00\x65\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x46\ +\x6f\x75\x6e\x64\x20\x31\x20\x6f\x70\x65\x6e\x20\x77\x69\x72\x65\ +\x3a\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x72\x00\x4c\x00\ +\xf6\x00\x79\x00\x74\x00\x79\x00\x69\x00\x20\x00\x31\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\ +\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x69\x00\x3a\x00\x20\x00\x52\x00\x69\x00\ +\x69\x00\x70\x00\x70\x00\x75\x00\x76\x00\x75\x00\x75\x00\x6b\x00\ +\x73\x00\x69\x00\x65\x00\x6e\x00\x20\x00\x72\x00\x69\x00\x6b\x00\ +\x6b\x00\x6f\x00\x6d\x00\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x35\x46\x6f\x75\x6e\x64\x20\x31\ +\x20\x70\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\ +\x63\x74\x3a\x20\x62\x72\x65\x61\x6b\x69\x6e\x67\x20\x69\x74\x73\ +\x20\x64\x65\x70\x65\x6e\x64\x65\x6e\x63\x69\x65\x73\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x66\x00\x4c\ +\x00\xf6\x00\x79\x00\x74\x00\x79\x00\x69\x00\x20\x00\x31\x00\x20\ +\x00\x6b\x00\x69\x00\x69\x00\x6e\x00\x6e\x00\x69\x00\x74\x00\x74\ +\x00\xe4\x00\x6d\x00\xe4\x00\x74\x00\xf6\x00\x6e\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x3a\x00\x20\ +\x00\x74\x00\x65\x00\x65\x00\x20\x00\x73\x00\x69\x00\x69\x00\x74\ +\x00\xe4\x00\x20\x00\x6b\x00\x69\x00\x69\x00\x6e\x00\x74\x00\x65\ +\x00\xe4\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x46\x6f\ +\x75\x6e\x64\x20\x31\x20\x73\x6f\x6c\x69\x64\x69\x66\x69\x63\x61\ +\x62\x6c\x65\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x73\x6f\x6c\x69\ +\x64\x69\x66\x79\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4a\x00\x4c\x00\xf6\x00\ +\x79\x00\x64\x00\x65\x00\x74\x00\x74\x00\x79\x00\x20\x00\x32\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\ +\x61\x00\x3a\x00\x20\x00\x79\x00\x68\x00\x64\x00\x69\x00\x73\x00\ +\x74\x00\x65\x00\x6c\x00\x6c\x00\xe4\x00\xe4\x00\x6e\x00\x20\x00\ +\x6e\x00\x65\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x46\ +\x6f\x75\x6e\x64\x20\x32\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\ +\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\x00\x4c\x00\xf6\ +\x00\x79\x00\x74\x00\x79\x00\x69\x00\x20\x00\x32\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x61\x00\x3a\ +\x00\x20\x00\x76\x00\xe4\x00\x68\x00\x65\x00\x6e\x00\x6e\x00\x65\ +\x00\x74\x00\xe4\x00\xe4\x00\x6e\x00\x20\x00\x6e\x00\x65\x00\x20\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x46\x6f\x75\x6e\x64\x20\ +\x32\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x73\x75\x62\x74\x72\ +\x61\x63\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x46\x00\x6f\ +\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x20\x00\x63\x00\x6c\ +\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x20\x00\x77\x00\x69\x00\x72\ +\x00\x65\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\ +\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x46\x6f\x75\x6e\ +\x64\x20\x61\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x3a\ +\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x66\x61\x63\x65\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x72\x00\ +\x4c\x00\xf6\x00\x79\x00\x74\x00\x79\x00\x69\x00\x20\x00\x72\x00\ +\x79\x00\x68\x00\x6d\x00\xe4\x00\x74\x00\x3a\x00\x20\x00\x73\x00\ +\x75\x00\x6c\x00\x6a\x00\x65\x00\x74\x00\x61\x00\x61\x00\x6e\x00\ +\x20\x00\x6b\x00\x75\x00\x6e\x00\x6b\x00\x69\x00\x6e\x00\x20\x00\ +\x61\x00\x76\x00\x6f\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x6e\x00\ +\x20\x00\x73\x00\x69\x00\x73\x00\xe4\x00\x6c\x00\x6c\x00\xe4\x00\ +\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x46\x6f\x75\x6e\x64\ +\x20\x67\x72\x6f\x75\x70\x73\x3a\x20\x63\x6c\x6f\x73\x69\x6e\x67\ +\x20\x65\x61\x63\x68\x20\x6f\x70\x65\x6e\x20\x6f\x62\x6a\x65\x63\ +\x74\x20\x69\x6e\x73\x69\x64\x65\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x6c\x00\x4c\x00\xf6\x00\x79\x00\ +\x64\x00\x65\x00\x74\x00\x74\x00\x79\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x6a\x00\x61\x00\x2c\x00\ +\x20\x00\x6a\x00\x6f\x00\x69\x00\x73\x00\x73\x00\x61\x00\x20\x00\ +\x6b\x00\xe4\x00\x79\x00\x72\x00\x69\x00\xe4\x00\x3a\x00\x20\x00\ +\x79\x00\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\x65\x00\x6c\x00\ +\x6c\x00\xe4\x00\xe4\x00\x6e\x00\x20\x00\x6e\x00\x69\x00\x69\x00\ +\x74\x00\xe4\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x46\ +\x6f\x75\x6e\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x63\x6f\x6e\ +\x74\x61\x69\x6e\x69\x6e\x67\x20\x63\x75\x72\x76\x65\x73\x3a\x20\ +\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x58\x00\x4c\x00\xf6\ +\x00\x79\x00\x74\x00\x79\x00\x69\x00\x20\x00\x76\x00\x61\x00\x69\ +\x00\x6e\x00\x20\x00\x6c\x00\x61\x00\x6e\x00\x6b\x00\x6f\x00\x6a\ +\x00\x61\x00\x3a\x00\x20\x00\x70\x00\x75\x00\x72\x00\x65\x00\x74\ +\x00\x61\x00\x61\x00\x6e\x00\x20\x00\x6e\x00\x69\x00\x69\x00\x64\ +\x00\x65\x00\x6e\x00\x20\x00\x72\x00\x65\x00\x75\x00\x6e\x00\x61\ +\x00\x74\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x46\x6f\ +\x75\x6e\x64\x20\x6f\x6e\x6c\x79\x20\x77\x69\x72\x65\x73\x3a\x20\ +\x65\x78\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x74\x68\x65\x69\x72\ +\x20\x65\x64\x67\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x4e\x00\x4c\x00\xf6\x00\x79\x00\x74\x00\ +\x79\x00\x69\x00\x20\x00\x75\x00\x73\x00\x65\x00\x69\x00\x74\x00\ +\x61\x00\x20\x00\x72\x00\x65\x00\x75\x00\x6e\x00\x6f\x00\x6a\x00\ +\x61\x00\x3a\x00\x20\x00\x6c\x00\x61\x00\x6e\x00\x67\x00\x6f\x00\ +\x69\x00\x74\x00\x65\x00\x74\x00\x61\x00\x61\x00\x6e\x00\x20\x00\ +\x6e\x00\x65\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x46\ +\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x65\x64\x67\ +\x65\x73\x3a\x20\x77\x69\x72\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\ +\x00\x4c\x00\xf6\x00\x79\x00\x74\x00\x79\x00\x69\x00\x20\x00\x75\ +\x00\x73\x00\x65\x00\x69\x00\x74\x00\x61\x00\x20\x00\x70\x00\x69\ +\x00\x6e\x00\x74\x00\x6f\x00\x6a\x00\x61\x00\x3a\x00\x20\x00\x6a\ +\x00\x61\x00\x65\x00\x74\x00\x61\x00\x61\x00\x6e\x00\x20\x00\x6e\ +\x00\x65\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x46\x6f\ +\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x66\x61\x63\x65\ +\x73\x3a\x20\x73\x70\x6c\x69\x74\x74\x69\x6e\x67\x20\x74\x68\x65\ +\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x80\x00\x4c\x00\xf6\x00\x79\x00\x74\x00\x79\x00\x69\x00\x20\ +\x00\x75\x00\x73\x00\x65\x00\x69\x00\x74\x00\x61\x00\x20\x00\x79\ +\x00\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\xe4\x00\x6d\x00\xe4\ +\x00\x74\x00\x74\x00\xf6\x00\x6d\x00\x69\x00\xe4\x00\x20\x00\x72\ +\x00\x65\x00\x75\x00\x6e\x00\x6f\x00\x6a\x00\x61\x00\x3a\x00\x20\ +\x00\x74\x00\x6f\x00\x74\x00\x65\x00\x75\x00\x74\x00\x65\x00\x74\ +\x00\x61\x00\x61\x00\x6e\x00\x20\x00\x79\x00\x68\x00\x64\x00\x69\ +\x00\x73\x00\x74\x00\xe4\x00\x6d\x00\x69\x00\x6e\x00\x65\x00\x6e\ +\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x46\x6f\x75\x6e\ +\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6e\x6f\x6e\x2d\x63\x6f\ +\x6e\x6e\x65\x63\x74\x65\x64\x20\x65\x64\x67\x65\x73\x3a\x20\x6d\ +\x61\x6b\x69\x6e\x67\x20\x63\x6f\x6d\x70\x6f\x75\x6e\x64\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x88\x00\ +\x4c\x00\xf6\x00\x79\x00\x74\x00\x79\x00\x69\x00\x20\x00\x75\x00\ +\x73\x00\x65\x00\x69\x00\x74\x00\x61\x00\x20\x00\x6b\x00\xe4\x00\ +\x73\x00\x69\x00\x74\x00\x74\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\ +\xe4\x00\x74\x00\x74\x00\xf6\x00\x6d\x00\x69\x00\xe4\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x6a\x00\ +\x61\x00\x3a\x00\x20\x00\x54\x00\x6f\x00\x74\x00\x65\x00\x75\x00\ +\x74\x00\x65\x00\x74\x00\x61\x00\x61\x00\x6e\x00\x20\x00\x79\x00\ +\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\xe4\x00\x6d\x00\x69\x00\ +\x6e\x00\x65\x00\x6e\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x35\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6e\ +\x6f\x6e\x2d\x74\x72\x65\x61\x74\x61\x62\x6c\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x63\x6f\x6d\ +\x70\x6f\x75\x6e\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x84\x00\x4c\x00\xf6\x00\x79\x00\x73\x00\x69\ +\x00\x20\x00\x75\x00\x73\x00\x65\x00\x69\x00\x74\x00\x61\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x6a\ +\x00\x61\x00\x20\x00\x74\x00\x61\x00\x69\x00\x20\x00\x70\x00\x69\ +\x00\x6e\x00\x74\x00\x6f\x00\x6a\x00\x61\x00\x3a\x00\x20\x00\x54\ +\x00\x65\x00\x68\x00\x74\x00\xe4\x00\x65\x00\x73\x00\x73\x00\xe4\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\ +\x00\x72\x00\x69\x00\x73\x00\x74\x00\x61\x00\x20\x00\x70\x00\x69\ +\x00\x6e\x00\x74\x00\x61\x00\x61\x00\x20\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x39\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\ +\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x6f\x72\x20\x66\x61\x63\ +\x65\x73\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x70\x61\x72\ +\x61\x6d\x65\x74\x72\x69\x63\x20\x66\x61\x63\x65\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x56\x00\x4c\x00\ +\xf6\x00\x79\x00\x73\x00\x69\x00\x20\x00\x75\x00\x73\x00\x65\x00\ +\x69\x00\x74\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x65\x00\x6a\x00\x61\x00\x3a\x00\x20\x00\x79\x00\ +\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\ +\xe4\x00\xe4\x00\x6e\x00\x20\x00\x6e\x00\x69\x00\x69\x00\x74\x00\ +\xe4\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x46\x6f\x75\ +\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6c\ +\x00\x4c\x00\xf6\x00\x79\x00\x74\x00\x79\x00\x69\x00\x20\x00\x75\ +\x00\x73\x00\x65\x00\x69\x00\x74\x00\x61\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x6a\x00\x61\x00\x3a\ +\x00\x20\x00\x76\x00\xe4\x00\x68\x00\x65\x00\x6e\x00\x6e\x00\x65\ +\x00\x74\x00\xe4\x00\xe4\x00\x6e\x00\x20\x00\x6e\x00\x65\x00\x20\ +\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6d\x00\x6d\x00\xe4\x00\x69\ +\x00\x73\x00\x65\x00\x73\x00\x74\x00\xe4\x00\x20\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x3b\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\ +\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x73\x75\x62\ +\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\x66\x72\ +\x6f\x6d\x20\x74\x68\x65\x20\x66\x69\x72\x73\x74\x20\x6f\x6e\x65\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x86\x00\x4a\x00\x6f\x00\x73\x00\x20\x00\x76\x00\x61\x00\x6c\x00\ +\x69\x00\x74\x00\x74\x00\x75\x00\x2c\x00\x20\x00\x4f\x00\x43\x00\ +\x43\x00\x2d\x00\x74\x00\x79\x00\x79\x00\x6c\x00\x69\x00\x6e\x00\ +\x20\x00\x73\x00\x69\x00\x69\x00\x72\x00\x74\x00\x79\x00\x6d\x00\ +\xe4\x00\x20\x00\x74\x00\x65\x00\x68\x00\x64\x00\xe4\x00\xe4\x00\ +\x6e\x00\x20\x00\x43\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x69\x00\ +\x73\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x69\x00\x69\x00\x72\x00\ +\x74\x00\x79\x00\x6d\x00\xe4\x00\x6e\x00\x20\x00\x73\x00\x69\x00\ +\x6a\x00\x61\x00\x61\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x4f\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x6e\x20\ +\x4f\x43\x43\x2d\x73\x74\x79\x6c\x65\x20\x6f\x66\x66\x73\x65\x74\ +\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x70\x65\x72\x66\x6f\x72\x6d\ +\x65\x64\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x74\x68\ +\x65\x20\x63\x6c\x61\x73\x73\x69\x63\x20\x6f\x66\x66\x73\x65\x74\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\xc4\ +\x00\x4a\x00\x6f\x00\x73\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\ +\x00\x6e\x00\x74\x00\x61\x00\x72\x00\x75\x00\x75\x00\x74\x00\x75\ +\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\ +\x00\x74\x00\x74\x00\x75\x00\x6e\x00\x61\x00\x2c\x00\x20\x00\x6b\ +\x00\x6f\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x65\ +\x00\x69\x00\x20\x00\x6f\x00\x6c\x00\x65\x00\x20\x00\x76\x00\x61\ +\x00\x6c\x00\x6d\x00\x69\x00\x73\x00\x2c\x00\x20\x00\x65\x00\x6e\ +\x00\x6e\x00\x65\x00\x6e\x00\x6b\x00\x75\x00\x69\x00\x6e\x00\x20\ +\x00\x70\x00\x61\x00\x69\x00\x6e\x00\x61\x00\x74\x00\x20\x00\x6b\ +\x00\x6f\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x70\x00\x61\ +\x00\x69\x00\x6e\x00\x69\x00\x6b\x00\x65\x00\x74\x00\x74\x00\x61\ +\x00\x20\x00\x75\x00\x75\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\x65\ +\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4c\x49\x66\ +\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x63\x6f\x6d\x6d\x61\x6e\ +\x64\x20\x77\x69\x6c\x6c\x20\x6e\x6f\x74\x20\x66\x69\x6e\x69\x73\ +\x68\x20\x75\x6e\x74\x69\x6c\x20\x79\x6f\x75\x20\x70\x72\x65\x73\ +\x73\x20\x74\x68\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x62\x75\ +\x74\x74\x6f\x6e\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x94\x00\x4a\x00\x6f\x00\x73\ +\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x6e\x00\x74\x00\x61\ +\x00\x72\x00\x75\x00\x75\x00\x74\x00\x75\x00\x20\x00\x6f\x00\x6e\ +\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x74\x00\x75\ +\x00\x6e\x00\x61\x00\x2c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x69\x00\x74\x00\x20\x00\x6b\x00\x6f\x00\x70\ +\x00\x69\x00\x6f\x00\x69\x00\x64\x00\x61\x00\x61\x00\x6e\x00\x20\ +\x00\x73\x00\x69\x00\x69\x00\x72\x00\x74\x00\xe4\x00\x6d\x00\x69\ +\x00\x73\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x69\x00\x6a\x00\x61\ +\x00\x73\x00\x74\x00\x61\x00\x20\x00\x28\x00\x43\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x37\x49\x66\x20\x63\x68\x65\x63\x6b\ +\x65\x64\x2c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\ +\x20\x62\x65\x20\x63\x6f\x70\x69\x65\x64\x20\x69\x6e\x73\x74\x65\ +\x61\x64\x20\x6f\x66\x20\x6d\x6f\x76\x65\x64\x20\x28\x43\x29\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\ +\x41\x00\x73\x00\x65\x00\x6e\x00\x6e\x00\x65\x00\x74\x00\x75\x00\ +\x74\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x72\x00\x6f\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x10\x49\x6e\x73\x74\x61\x6c\x6c\ +\x65\x64\x20\x4d\x61\x63\x72\x6f\x73\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x00\x56\x00\x69\x00\x69\x00\ +\x6d\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x70\x00\ +\x69\x00\x73\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\ +\x70\x00\x6f\x00\x69\x00\x73\x00\x74\x00\x65\x00\x74\x00\x74\x00\ +\x75\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x4c\x61\x73\ +\x74\x20\x70\x6f\x69\x6e\x74\x20\x68\x61\x73\x20\x62\x65\x65\x6e\ +\x20\x72\x65\x6d\x6f\x76\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x56\x00\x69\x00\x69\x00\ +\x76\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4c\x69\x6e\ +\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x16\x00\x56\x00\x69\x00\x69\x00\x76\x00\x61\x00\x6e\x00\x20\x00\ +\x76\x00\xe4\x00\x72\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x4c\x69\x6e\x65\x20\x43\x6f\x6c\x6f\x72\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x56\x00\x69\x00\ +\x69\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x6c\x00\x65\x00\x76\x00\ +\x65\x00\x79\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4c\ +\x69\x6e\x65\x20\x57\x69\x64\x74\x68\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x53\x00\x69\x00\x69\x00\ +\x72\x00\x72\x00\xe4\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4d\ +\x6f\x76\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x36\x00\x4e\x00\x6f\x00\x20\x00\x6d\x00\x6f\x00\x72\x00\ +\x65\x00\x20\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x67\x00\x72\x00\ +\x61\x00\x64\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x73\x00\ +\x69\x00\x62\x00\x6c\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1b\x4e\x6f\x20\x6d\x6f\x72\x65\x20\x64\x6f\x77\x6e\x67\ +\x72\x61\x64\x65\x20\x70\x6f\x73\x73\x69\x62\x6c\x65\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4a\x00\x4e\ +\x00\x6f\x00\x20\x00\x75\x00\x70\x00\x67\x00\x72\x00\x61\x00\x64\ +\x00\x65\x00\x20\x00\x61\x00\x76\x00\x61\x00\x69\x00\x6c\x00\x61\ +\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ +\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x25\x4e\x6f\x20\x75\x70\x67\x72\x61\x64\x65\x20\x61\x76\x61\ +\x69\x6c\x61\x62\x6c\x65\x20\x66\x6f\x72\x20\x74\x68\x69\x73\x20\ +\x6f\x62\x6a\x65\x63\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x12\x00\x45\x00\x69\x00\x20\x00\x6d\x00\ +\x69\x00\x74\x00\xe4\x00\xe4\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x22\x00\x53\x00\x69\x00\x76\x00\x75\x00\ +\x6a\x00\x65\x00\x6e\x00\x20\x00\x6c\x00\x75\x00\x6b\x00\x75\x00\ +\x6d\x00\xe4\x00\xe4\x00\x72\x00\xe4\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x4e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x73\x69\x64\ +\x65\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x10\x00\x53\x00\x69\x00\x69\x00\x72\x00\x74\x00\x79\x00\x6d\ +\x00\xe4\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x4f\x66\x66\x73\ +\x65\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x66\x00\x53\x00\x69\x00\x69\x00\x72\x00\x74\x00\x79\x00\x6d\ +\x00\xe4\x00\x20\x00\x74\x00\x6f\x00\x69\x00\x6d\x00\x69\x00\x69\ +\x00\x20\x00\x76\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x79\x00\x68\ +\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x6c\x00\x6c\x00\x65\ +\x00\x20\x00\x6b\x00\x65\x00\x72\x00\x72\x00\x61\x00\x6c\x00\x6c\ +\x00\x61\x00\x61\x00\x6e\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x2a\x4f\x66\x66\x73\x65\x74\x20\x6f\x6e\x6c\x79\x20\x77\x6f\ +\x72\x6b\x73\x20\x6f\x6e\x20\x6f\x6e\x65\x20\x6f\x62\x6a\x65\x63\ +\x74\x20\x61\x74\x20\x61\x20\x74\x69\x6d\x65\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x52\x00\x4f\x00\x6e\ +\x00\x65\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x20\x00\x69\ +\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x70\x00\x6c\ +\x00\x61\x00\x6e\x00\x61\x00\x72\x00\x2c\x00\x20\x00\x75\x00\x70\ +\x00\x67\x00\x72\x00\x61\x00\x64\x00\x65\x00\x20\x00\x6e\x00\x6f\ +\x00\x74\x00\x20\x00\x64\x00\x6f\x00\x6e\x00\x65\x00\x0a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x29\x4f\x6e\x65\x20\x77\x69\x72\x65\ +\x20\x69\x73\x20\x6e\x6f\x74\x20\x70\x6c\x61\x6e\x61\x72\x2c\x20\ +\x75\x70\x67\x72\x61\x64\x65\x20\x6e\x6f\x74\x20\x64\x6f\x6e\x65\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x1e\x00\x56\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x73\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x50\x69\x63\x6b\x20\x4f\x62\ +\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x4e\x00\x4e\x00\x61\x00\x70\x00\x73\x00\x61\x00\x75\ +\x00\x74\x00\x61\x00\x20\x00\x6d\x00\xe4\x00\xe4\x00\x72\x00\x69\ +\x00\x74\x00\x65\x00\x74\x00\x79\x00\x6e\x00\x20\x00\x70\x00\x69\ +\x00\x69\x00\x72\x00\x75\x00\x73\x00\x74\x00\x75\x00\x6b\x00\x73\ +\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x61\x00\x73\x00\x6f\x00\x61\ +\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x50\x69\x63\x6b\ +\x20\x61\x20\x66\x61\x63\x65\x20\x74\x6f\x20\x64\x65\x66\x69\x6e\ +\x65\x20\x74\x68\x65\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x70\x6c\ +\x61\x6e\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x1e\x00\x56\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x73\ +\x00\x65\x00\x20\x00\x61\x00\x75\x00\x6b\x00\x6b\x00\x6f\x00\x3a\ +\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x50\x69\x63\x6b\ +\x20\x61\x70\x65\x72\x74\x75\x72\x65\x3a\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\x4f\x00\x73\x00\ +\x6f\x00\x69\x00\x74\x00\x61\x00\x20\x00\x70\x00\x65\x00\x72\x00\ +\x75\x00\x73\x00\x6b\x00\x75\x00\x6c\x00\x6d\x00\x61\x00\x3a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\x62\x61\ +\x73\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\x4f\x00\x73\x00\x6f\ +\x00\x69\x00\x74\x00\x61\x00\x20\x00\x70\x00\x65\x00\x72\x00\x75\ +\x00\x73\x00\x70\x00\x69\x00\x73\x00\x74\x00\x65\x00\x3a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\x62\x61\x73\ +\x65\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x4e\x00\x61\x00\x70\x00\ +\x73\x00\x61\x00\x75\x00\x74\x00\x61\x00\x20\x00\x6b\x00\x65\x00\ +\x73\x00\x6b\x00\x69\x00\x70\x00\x69\x00\x73\x00\x74\x00\x65\x00\ +\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x50\x69\x63\x6b\x20\ +\x63\x65\x6e\x74\x65\x72\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\x4e\ +\x00\x61\x00\x70\x00\x73\x00\x61\x00\x75\x00\x74\x00\x61\x00\x20\ +\x00\x65\x00\x74\x00\xe4\x00\x69\x00\x73\x00\x79\x00\x79\x00\x73\ +\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x50\x69\x63\x6b\ +\x20\x64\x69\x73\x74\x61\x6e\x63\x65\x3a\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x4e\x00\x61\x00\ +\x70\x00\x73\x00\x61\x00\x75\x00\x74\x00\x61\x00\x20\x00\x6c\x00\ +\x6f\x00\x70\x00\x65\x00\x74\x00\x75\x00\x73\x00\x70\x00\x69\x00\ +\x73\x00\x74\x00\x65\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x10\x50\x69\x63\x6b\x20\x65\x6e\x64\x20\x70\x6f\x69\x6e\x74\x3a\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x36\x00\x4e\x00\x61\x00\x70\x00\x73\x00\x61\x00\x75\x00\x74\x00\ +\x61\x00\x20\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6d\x00\x6d\x00\ +\xe4\x00\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x70\x00\x69\x00\ +\x73\x00\x74\x00\x65\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x12\x50\x69\x63\x6b\x20\x66\x69\x72\x73\x74\x20\x70\x6f\x69\x6e\ +\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x38\x00\x4e\x00\x61\x00\x70\x00\x73\x00\x61\x00\x75\x00\ +\x74\x00\x61\x00\x20\x00\x73\x00\x69\x00\x6a\x00\x61\x00\x69\x00\ +\x6e\x00\x74\x00\x69\x00\x20\x00\x70\x00\x69\x00\x73\x00\x74\x00\ +\x65\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x3a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x6c\x6f\x63\x61\x74\x69\ +\x6f\x6e\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x78\x00\x4e\x00\x61\x00\x70\ +\x00\x73\x00\x61\x00\x75\x00\x74\x00\x61\x00\x20\x00\x73\x00\x65\ +\x00\x75\x00\x72\x00\x61\x00\x61\x00\x76\x00\x61\x00\x20\x00\x70\ +\x00\x69\x00\x73\x00\x74\x00\x65\x00\x2c\x00\x20\x00\x74\x00\x61\ +\x00\x69\x00\x20\x00\x76\x00\x69\x00\x69\x00\x6d\x00\x65\x00\x69\ +\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x65\x00\x20\x00\x28\x00\x46\ +\x00\x29\x00\x2c\x00\x20\x00\x74\x00\x61\x00\x69\x00\x20\x00\x73\ +\x00\x75\x00\x6c\x00\x6a\x00\x65\x00\x20\x00\x28\x00\x43\x00\x29\ +\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x50\x69\x63\x6b\ +\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x2c\x20\x6f\x72\x20\ +\x28\x46\x29\x69\x6e\x69\x73\x68\x20\x6f\x72\x20\x28\x43\x29\x6c\ +\x6f\x73\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x30\x00\x4e\x00\x61\x00\x70\x00\x73\x00\x61\x00\ +\x75\x00\x74\x00\x61\x00\x20\x00\x73\x00\x65\x00\x75\x00\x72\x00\ +\x61\x00\x61\x00\x76\x00\x61\x00\x20\x00\x70\x00\x69\x00\x73\x00\ +\x74\x00\x65\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\ +\x69\x63\x6b\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\ +\x00\x4e\x00\x61\x00\x70\x00\x73\x00\x61\x00\x75\x00\x74\x00\x61\ +\x00\x20\x00\x76\x00\x61\x00\x73\x00\x74\x00\x61\x00\x6b\x00\x6b\ +\x00\x61\x00\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x70\x00\x69\ +\x00\x73\x00\x74\x00\x65\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x15\x50\x69\x63\x6b\x20\x6f\x70\x70\x6f\x73\x69\x74\x65\x20\ +\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x1c\x00\x4e\x00\x61\x00\x70\x00\x73\x00\ +\x61\x00\x75\x00\x74\x00\x61\x00\x20\x00\x73\x00\xe4\x00\x64\x00\ +\x65\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x50\x69\x63\ +\x6b\x20\x72\x61\x64\x69\x75\x73\x3a\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x00\x4f\x00\x73\x00\x6f\ +\x00\x69\x00\x74\x00\x61\x00\x20\x00\x6b\x00\x69\x00\x65\x00\x72\ +\x00\x74\x00\x6f\x00\x6c\x00\x69\x00\x69\x00\x6b\x00\x6b\x00\x65\ +\x00\x65\x00\x6e\x00\x20\x00\x6b\x00\x75\x00\x6c\x00\x6d\x00\x61\ +\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\ +\x20\x72\x6f\x74\x61\x74\x69\x6f\x6e\x20\x61\x6e\x67\x6c\x65\x3a\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x44\x00\x4f\x00\x73\x00\x6f\x00\x69\x00\x74\x00\x61\x00\x20\x00\ +\x6b\x00\x69\x00\x65\x00\x72\x00\x74\x00\x6f\x00\x6c\x00\x69\x00\ +\x69\x00\x6b\x00\x6b\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x6b\x00\ +\x65\x00\x73\x00\x6b\x00\x69\x00\x6b\x00\x6f\x00\x68\x00\x74\x00\ +\x61\x00\x3a\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x50\ +\x69\x63\x6b\x20\x72\x6f\x74\x61\x74\x69\x6f\x6e\x20\x63\x65\x6e\ +\x74\x65\x72\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x2e\x00\x4f\x00\x73\x00\x6f\x00\x69\x00\x74\x00\ +\x61\x00\x20\x00\x73\x00\x6b\x00\x61\x00\x61\x00\x6c\x00\x61\x00\ +\x75\x00\x73\x00\x6b\x00\x65\x00\x72\x00\x72\x00\x6f\x00\x69\x00\ +\x6e\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x50\x69\x63\ +\x6b\x20\x73\x63\x61\x6c\x65\x20\x66\x61\x63\x74\x6f\x72\x3a\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\ +\x00\x4e\x00\x61\x00\x70\x00\x73\x00\x61\x00\x75\x00\x74\x00\x61\ +\x00\x20\x00\x61\x00\x6c\x00\x6f\x00\x69\x00\x74\x00\x75\x00\x73\ +\x00\x6b\x00\x75\x00\x6c\x00\x6d\x00\x61\x00\x3a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x12\x50\x69\x63\x6b\x20\x73\x74\x61\x72\x74\ +\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x4e\x00\x61\x00\x70\x00\x73\ +\x00\x61\x00\x75\x00\x74\x00\x61\x00\x20\x00\x61\x00\x6c\x00\x6f\ +\x00\x69\x00\x74\x00\x75\x00\x73\x00\x70\x00\x69\x00\x73\x00\x74\ +\x00\x65\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\ +\x63\x6b\x20\x73\x74\x61\x72\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\ +\x00\x50\x00\x69\x00\x73\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x4d\x00\x6f\x00\x6e\x00\ +\x69\x00\x6b\x00\x75\x00\x6c\x00\x6d\x00\x69\x00\x6f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x07\x50\x6f\x6c\x79\x67\x6f\x6e\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x00\x53\ +\x00\xe4\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x52\x61\x64\x69\x75\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x18\x00\x59\x00\x6d\x00\x70\x00\x79\x00\x72\ +\x00\xe4\x00\x6e\x00\x20\x00\x73\x00\xe4\x00\x64\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x10\x52\x61\x64\x69\x75\x73\x20\x6f\ +\x66\x20\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x16\x00\x53\x00\x75\x00\x6f\x00\x72\ +\x00\x61\x00\x6b\x00\x75\x00\x6c\x00\x6d\x00\x69\x00\x6f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x52\x65\x63\x74\x61\x6e\x67\x6c\ +\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x56\x00\x50\x00\x69\x00\x73\x00\x74\x00\x65\x00\x69\x00\x64\x00\ +\x65\x00\x6e\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x73\x00\x74\x00\ +\x61\x00\x6d\x00\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x6e\x00\ +\x79\x00\x6b\x00\x79\x00\x69\x00\x73\x00\x65\x00\x73\x00\x74\x00\ +\xe4\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x69\x00\x73\x00\x74\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x25\x52\x65\x6d\x6f\x76\x65\x20\x70\x6f\x69\x6e\x74\x73\x20\x66\ +\x72\x6f\x6d\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\ +\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0e\x00\x50\x00\x79\x00\xf6\x00\x72\x00\x69\ +\x00\x74\x00\xe4\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x6f\ +\x74\x61\x74\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0e\x00\x53\x00\x6b\x00\x61\x00\x61\x00\x6c\x00\x61\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x53\x63\x61\x6c\ +\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x18\x00\x56\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x73\x00\x65\x00\ +\x20\x00\x74\x00\x61\x00\x73\x00\x6f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0c\x53\x65\x6c\x65\x63\x74\x20\x50\x6c\x61\x6e\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\ +\x56\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x73\x00\x65\x00\x20\x00\ +\x78\x00\x79\x00\x2d\x00\x74\x00\x61\x00\x73\x00\x6f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x58\x59\ +\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x1e\x00\x56\x00\x61\x00\x6c\x00\x69\x00\x74\ +\x00\x73\x00\x65\x00\x20\x00\x58\x00\x5a\x00\x2d\x00\x74\x00\x61\ +\x00\x73\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\ +\x6c\x65\x63\x74\x20\x58\x5a\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x56\x00\ +\x61\x00\x6c\x00\x69\x00\x74\x00\x73\x00\x65\x00\x20\x00\x59\x00\ +\x5a\x00\x2d\x00\x74\x00\x61\x00\x73\x00\x6f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x59\x5a\x20\x70\ +\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x44\x00\x56\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x73\ +\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\ +\x00\x69\x00\x20\x00\x73\x00\x69\x00\x69\x00\x72\x00\x74\x00\xe4\ +\x00\x6d\x00\x69\x00\x73\x00\x74\x00\xe4\x00\x20\x00\x76\x00\x61\ +\x00\x72\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x19\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x74\x6f\x20\x6d\x6f\x76\x65\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x00\x56\x00\x61\x00\ +\x6c\x00\x69\x00\x74\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x20\x00\x73\x00\x69\x00\ +\x69\x00\x72\x00\x74\x00\x79\x00\x6d\x00\xe4\x00\x6c\x00\x6c\x00\ +\x65\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x53\x65\x6c\ +\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\ +\x20\x6f\x66\x66\x73\x65\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x38\x00\x56\x00\x61\x00\x6c\x00\x69\ +\x00\x74\x00\x73\x00\x65\x00\x20\x00\x70\x00\x79\x00\xf6\x00\x72\ +\x00\x69\x00\x74\x00\x65\x00\x74\x00\x74\x00\xe4\x00\x76\x00\xe4\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x53\x65\x6c\x65\x63\x74\ +\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x72\x6f\ +\x74\x61\x74\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x38\x00\x56\x00\x61\x00\x6c\x00\x69\x00\x74\x00\ +\x73\x00\x65\x00\x20\x00\x73\x00\x6b\x00\x61\x00\x61\x00\x6c\x00\ +\x61\x00\x74\x00\x74\x00\x61\x00\x76\x00\x61\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x73\x63\x61\x6c\x65\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x5a\x00\x56\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x73\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\ +\x20\x00\x6c\x00\x65\x00\x69\x00\x6b\x00\x6b\x00\x61\x00\x75\x00\ +\x6b\x00\x73\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x2f\x00\x6c\x00\ +\x61\x00\x61\x00\x6a\x00\x65\x00\x6e\x00\x6e\x00\x6f\x00\x6b\x00\ +\x73\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x20\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x20\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x74\x72\x69\x6d\x2f\x65\x78\ +\x74\x65\x6e\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x3a\x00\x56\x00\x61\x00\x6c\x00\x69\x00\x74\x00\ +\x73\x00\x65\x00\x20\x00\x70\x00\xe4\x00\x69\x00\x76\x00\x69\x00\ +\x74\x00\x65\x00\x74\x00\x74\x00\xe4\x00\x76\x00\xe4\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x20\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x53\x65\x6c\x65\x63\x74\x20\ +\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x75\x70\x67\ +\x72\x61\x64\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x5e\x00\x56\x00\x61\x00\x6c\x00\x69\x00\x74\x00\ +\x73\x00\x65\x00\x20\x00\x74\x00\x61\x00\x73\x00\x6f\x00\x20\x00\ +\x6e\x00\x79\x00\x6b\x00\x79\x00\x69\x00\x73\x00\x65\x00\x6c\x00\ +\x6c\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x68\x00\x74\x00\x69\x00\ +\x73\x00\x75\x00\x6f\x00\x72\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\ +\x20\x00\x6e\x00\xe4\x00\x6b\x00\x79\x00\x6d\x00\xe4\x00\x6c\x00\ +\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x53\x65\x6c\ +\x65\x63\x74\x20\x70\x6c\x61\x6e\x65\x20\x70\x65\x72\x70\x65\x6e\ +\x64\x69\x63\x75\x6c\x61\x72\x20\x74\x6f\x20\x74\x68\x65\x20\x63\ +\x75\x72\x72\x65\x6e\x74\x20\x76\x69\x65\x77\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x4b\x00\xe4\x00\ +\x79\x00\x72\x00\xe4\x00\x76\x00\x69\x00\x69\x00\x76\x00\x61\x00\ +\x20\x00\x6f\x00\x6e\x00\x20\x00\x73\x00\x75\x00\x6c\x00\x6a\x00\ +\x65\x00\x74\x00\x74\x00\x75\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x17\x53\x70\x6c\x69\x6e\x65\x20\x68\x61\x73\x20\x62\x65\ +\x65\x6e\x20\x63\x6c\x6f\x73\x65\x64\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x4c\x00\xe4\x00\x68\ +\x00\x74\x00\xf6\x00\x6b\x00\x75\x00\x6c\x00\x6d\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x74\x61\x72\x74\x20\x41\x6e\ +\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0c\x00\x54\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x69\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\x65\x78\x74\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x54\x00\ +\xe4\x00\x74\x00\xe4\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x69\x00\x74\x00\x79\x00\x79\x00\x70\x00\x70\x00\ +\x69\x00\xe4\x00\x20\x00\x65\x00\x69\x00\x20\x00\x76\x00\x6f\x00\ +\x69\x00\x20\x00\x6d\x00\x75\x00\x6f\x00\x6b\x00\x61\x00\x74\x00\ +\x61\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x54\x68\x69\ +\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x20\x69\x73\ +\x20\x6e\x6f\x74\x20\x65\x64\x69\x74\x61\x62\x6c\x65\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x56\ +\x00\x61\x00\x69\x00\x68\x00\x74\x00\x61\x00\x61\x00\x20\x00\x72\ +\x00\x61\x00\x6a\x00\x6f\x00\x69\x00\x74\x00\x65\x00\x20\x00\x74\ +\x00\x69\x00\x6c\x00\x61\x00\x61\x00\x6e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x19\x54\x6f\x67\x67\x6c\x65\x73\x20\x43\x6f\x6e\x73\ +\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x65\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x72\x00\ +\x61\x00\x6a\x00\x61\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x54\x72\x69\x6d\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x48\x00\x50\x00\x65\x00\x72\x00\x75\x00\x75\x00\ +\x74\x00\x61\x00\x20\x00\x76\x00\x69\x00\x69\x00\x6d\x00\x65\x00\ +\x69\x00\x73\x00\x69\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x67\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x74\x00\x69\x00\x20\x00\x28\x00\ +\x43\x00\x54\x00\x52\x00\x4c\x00\x2b\x00\x5a\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1e\x55\x6e\x64\x6f\x20\x74\x68\x65\x20\ +\x6c\x61\x73\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x28\x43\x54\ +\x52\x4c\x2b\x5a\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0a\x00\x4e\x00\xe4\x00\x79\x00\x74\x00\xe4\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x56\x69\x65\x77\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\xb8\x00\x50\x00\ +\x79\x00\x79\x00\x68\x00\x6b\x00\x69\x00\x69\x00\x20\x00\x6e\x00\ +\x79\x00\x6b\x00\x79\x00\x69\x00\x73\x00\x65\x00\x74\x00\x20\x00\ +\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x69\x00\ +\x74\x00\x20\x00\x74\x00\xe4\x00\x73\x00\x74\x00\xe4\x00\x20\x00\ +\x76\x00\x69\x00\x69\x00\x76\x00\x61\x00\x73\x00\x74\x00\x61\x00\ +\x20\x00\x6a\x00\x61\x00\x20\x00\x61\x00\x6c\x00\x6f\x00\x69\x00\ +\x74\x00\x74\x00\x61\x00\x61\x00\x20\x00\x75\x00\x75\x00\x64\x00\ +\x65\x00\x6c\x00\x6c\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x76\x00\ +\x69\x00\x69\x00\x6d\x00\x65\x00\x69\x00\x73\x00\x69\x00\x6d\x00\ +\x6d\x00\xe4\x00\x73\x00\x74\x00\xe4\x00\x20\x00\x70\x00\x69\x00\ +\x73\x00\x74\x00\x65\x00\x65\x00\x73\x00\x74\x00\xe4\x00\x20\x00\ +\x28\x00\x57\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x57\ +\x69\x70\x65\x73\x20\x74\x68\x65\x20\x65\x78\x69\x73\x74\x69\x6e\ +\x67\x20\x73\x65\x67\x6d\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\ +\x69\x73\x20\x6c\x69\x6e\x65\x20\x61\x6e\x64\x20\x73\x74\x61\x72\ +\x74\x73\x20\x61\x67\x61\x69\x6e\x20\x66\x72\x6f\x6d\x20\x74\x68\ +\x65\x20\x6c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x28\x57\x29\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\ +\x00\x4c\x00\x61\x00\x6e\x00\x6b\x00\x61\x00\x20\x00\x74\x00\x79\ +\x00\xf6\x00\x6b\x00\x61\x00\x6c\x00\x75\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0a\x57\x69\x72\x65\x20\x74\x6f\x6f\x6c\x73\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\ +\x00\x58\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\x58\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x00\x58\x00\ +\x2d\x00\x6b\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x69\x00\x6e\x00\ +\x61\x00\x61\x00\x74\x00\x69\x00\x6e\x00\x20\x00\x73\x00\x65\x00\ +\x75\x00\x72\x00\x61\x00\x61\x00\x76\x00\x61\x00\x20\x00\x6b\x00\ +\x6f\x00\x68\x00\x74\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1a\x58\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\ +\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x58\x00\x59\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x02\x58\x59\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x58\x00\x5a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x02\x58\x5a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\x00\x59\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x01\x59\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x3a\x00\x59\x00\x2d\x00\x6b\x00\x6f\ +\x00\x6f\x00\x72\x00\x64\x00\x69\x00\x6e\x00\x61\x00\x61\x00\x74\ +\x00\x69\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x75\x00\x72\x00\x61\ +\x00\x61\x00\x76\x00\x61\x00\x20\x00\x6b\x00\x6f\x00\x68\x00\x74\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x59\x20\x63\x6f\ +\x6f\x72\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\ +\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x04\x00\x59\x00\x5a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x02\x59\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x02\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x01\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x3a\x00\x5a\x00\x2d\x00\x6b\x00\x6f\x00\x6f\x00\x72\x00\ +\x64\x00\x69\x00\x6e\x00\x61\x00\x61\x00\x74\x00\x69\x00\x6e\x00\ +\x20\x00\x73\x00\x65\x00\x75\x00\x72\x00\x61\x00\x61\x00\x76\x00\ +\x61\x00\x20\x00\x6b\x00\x6f\x00\x68\x00\x74\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1a\x5a\x20\x63\x6f\x6f\x72\x64\x69\x6e\ +\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\ +\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x26\x00\x61\x00\x6b\x00\x74\x00\x69\x00\x69\x00\x76\x00\x69\x00\ +\x6e\x00\x65\x00\x6e\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x6f\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0f\x61\x63\x74\x69\x76\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x3a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\ +\x00\x48\x00\x61\x00\x68\x00\x6d\x00\x6f\x00\x74\x00\x65\x00\x6c\ +\x00\x6d\x00\x61\x00\x6e\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x65\ +\x00\x6e\x00\x74\x00\x6f\x00\x70\x00\x61\x00\x6c\x00\x6b\x00\x6b\ +\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x64\x72\x61\x66\ +\x74\x20\x43\x6f\x6d\x6d\x61\x6e\x64\x20\x42\x61\x72\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\ +\x00\x00\xce\x67\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x0b\x38\x00\x00\x00\x58\x00\x00\xc0\x66\x00\x00\x00\x59\ +\x00\x00\xc1\x37\x00\x00\x00\x5a\x00\x00\xc1\xe8\x00\x00\x05\xd9\ +\x00\x00\xc0\xf7\x00\x00\x05\xda\x00\x00\xc1\x17\x00\x00\x05\xea\ +\x00\x00\xc1\xc8\x00\x00\x07\x78\x00\x00\x89\xa9\x00\x00\x48\x83\ +\x00\x00\x03\x2f\x00\x00\x48\x83\x00\x00\x90\x4f\x00\x00\x68\x34\ +\x00\x00\x82\xa5\x00\x01\xc1\x87\x00\x00\x59\xa2\x00\x04\xa6\x79\ +\x00\x00\x93\xf0\x00\x04\xbb\x04\x00\x00\x0d\xc6\x00\x04\xbb\x04\ +\x00\x00\x99\x40\x00\x05\x30\x45\x00\x00\x10\x09\x00\x05\x30\x45\ +\x00\x00\xab\xd7\x00\x05\x46\xc5\x00\x00\x10\x36\x00\x05\x46\xc5\ +\x00\x00\xac\x7b\x00\x05\x56\x45\x00\x00\x5a\x73\x00\x05\x56\x45\ +\x00\x00\xad\x95\x00\x05\xac\xf4\x00\x00\x1d\xec\x00\x05\xac\xf4\ +\x00\x00\xbd\x57\x00\x05\xb8\xfd\x00\x00\xbe\x5d\x00\x05\xcf\xc7\ +\x00\x00\xbe\xf5\x00\x06\xab\x8c\x00\x00\x84\x21\x00\x10\x84\x49\ +\x00\x00\x68\xdd\x00\x12\x05\xba\x00\x00\xba\xcb\x00\x16\xc6\xda\ +\x00\x00\xa0\x9c\x00\x1f\xa4\xf7\x00\x00\x2b\x12\x00\x2a\xa6\x79\ +\x00\x00\x8c\x69\x00\x2b\xc4\xaf\x00\x00\x8d\x81\x00\x2b\xe0\x65\ +\x00\x00\x8d\xac\x00\x39\xdf\x33\x00\x00\x3b\x98\x00\x3a\x9e\x1b\ +\x00\x00\x7a\x7b\x00\x3d\xa1\x19\x00\x00\x91\x9a\x00\x3e\x93\x83\ +\x00\x00\x3c\xb4\x00\x48\x8f\x7c\x00\x00\x2c\x1e\x00\x48\x98\x89\ +\x00\x00\x04\x3e\x00\x49\xe0\x85\x00\x00\x29\x2c\x00\x49\xe0\x85\ +\x00\x00\x96\xb1\x00\x4a\x36\x45\x00\x00\x07\x74\x00\x4b\x66\x35\ +\x00\x00\x38\x6a\x00\x4b\x66\x37\x00\x00\x38\xaf\x00\x4b\x66\x39\ +\x00\x00\x38\xf4\x00\x57\x60\x54\x00\x00\x13\x6a\x00\x57\x60\x54\ +\x00\x00\xb6\x68\x00\x58\xfd\xf4\x00\x00\x5e\xac\x00\x59\x98\x25\ +\x00\x00\x16\xf9\x00\x59\x98\x25\x00\x00\xb8\x24\x00\x6a\x58\x9a\ +\x00\x00\xb0\x58\x00\x79\xef\xd4\x00\x00\x89\xe1\x00\x7e\x7f\x0e\ +\x00\x00\x7f\x56\x00\x8a\x23\x95\x00\x00\x2f\x72\x00\x8a\x23\x97\ +\x00\x00\x2f\xba\x00\x8a\x23\x99\x00\x00\x30\x02\x00\x91\xbc\xe9\ +\x00\x00\x10\x61\x00\xa6\x37\x3f\x00\x00\x2e\x71\x00\xaa\x80\x25\ +\x00\x00\x97\x63\x00\xac\xd6\x04\x00\x00\x48\xd2\x00\xc0\xac\x63\ +\x00\x00\x98\x2f\x00\xc6\xe3\x6e\x00\x00\x2a\x83\x00\xcb\xa8\x14\ +\x00\x00\x88\x9d\x00\xfc\x00\xca\x00\x00\xa7\x68\x01\x19\x8d\xde\ +\x00\x00\x63\xdc\x01\x21\xd6\x39\x00\x00\x67\xce\x01\x22\xb4\xf9\ +\x00\x00\x17\x28\x01\x2f\x8e\x7e\x00\x00\x72\x8c\x01\x48\xfe\xa3\ +\x00\x00\x3d\x2e\x01\x53\xf3\xaa\x00\x00\x9d\x33\x01\x56\x16\x4a\ +\x00\x00\xa6\xe5\x01\x5c\xde\xba\x00\x00\xad\x0c\x01\x67\x0d\x8a\ +\x00\x00\xa2\x55\x01\x69\x11\x7a\x00\x00\xb4\x47\x01\x69\x97\x98\ +\x00\x00\x3f\x9c\x01\x82\x39\x0a\x00\x00\xb0\xe8\x01\x8b\x68\x75\ +\x00\x00\xbd\xfa\x01\x8b\x89\x79\x00\x00\x07\xa3\x01\xa1\x7f\x63\ +\x00\x00\x20\x5b\x01\xb1\x5d\x09\x00\x00\x7b\x16\x01\xc1\xd9\xde\ +\x00\x00\x6b\x02\x01\xd2\x8f\xd3\x00\x00\x5f\x57\x01\xd4\x10\x23\ +\x00\x00\x47\xe3\x01\xdd\x83\xfa\x00\x00\xae\xf0\x01\xdf\x11\x43\ +\x00\x00\x06\x96\x01\xe2\xf4\x5a\x00\x00\xba\x5a\x01\xfc\xae\xd3\ +\x00\x00\x8a\x22\x02\x05\xbe\x25\x00\x00\x96\x20\x02\x2c\xd9\x60\ +\x00\x00\x22\x8b\x02\x2f\xb5\x14\x00\x00\x21\xcc\x02\x46\x58\x0a\ +\x00\x00\xb3\x93\x02\x57\xf8\x08\x00\x00\x0c\xa2\x02\x65\xad\x62\ +\x00\x00\xc2\xc4\x02\x6e\x07\xe2\x00\x00\x62\x9e\x02\x76\x24\x13\ +\x00\x00\x44\xf1\x02\x7d\xe0\x55\x00\x00\x63\x8c\x02\x94\x46\x1a\ +\x00\x00\xb0\x95\x02\x95\xca\xb5\x00\x00\x3a\x45\x02\xa7\x2c\x15\ +\x00\x00\x05\x3e\x02\xaa\x36\x95\x00\x00\x8c\x06\x02\xab\x87\xd4\ +\x00\x00\x8c\xa2\x02\xb1\xf0\xba\x00\x00\xa4\x18\x02\xbf\xaa\x8e\ +\x00\x00\x40\xbd\x02\xc0\x66\xf2\x00\x00\x6e\x92\x02\xc8\x3f\xf5\ +\x00\x00\x79\xe9\x02\xd9\xa4\xb9\x00\x00\x82\x54\x02\xdb\x1a\x94\ +\x00\x00\x08\xd3\x03\x01\x84\xc4\x00\x00\xa8\x3b\x03\x12\x97\x6a\ +\x00\x00\xa6\x20\x03\x14\x79\xca\x00\x00\xac\xa1\x03\x1a\x14\x14\ +\x00\x00\x35\xf0\x03\x1a\x16\x59\x00\x00\x64\xf1\x03\x2f\x1a\x6a\ +\x00\x00\x8e\x2b\x03\x7e\xca\xb5\x00\x00\x54\x7a\x03\x85\x74\x48\ +\x00\x00\x4f\x10\x03\x88\x1f\xd4\x00\x00\x55\x85\x03\x9e\x58\xa5\ +\x00\x00\x00\x40\x03\xb3\x9e\xfa\x00\x00\xb1\x94\x03\xb5\xc8\x9a\ +\x00\x00\xb2\xe0\x03\xbd\xd4\xe4\x00\x00\x8e\xfa\x03\xc4\x3c\xf5\ +\x00\x00\x91\x5a\x03\xc5\xd5\x5e\x00\x00\x0b\x09\x03\xc5\xd5\x5e\ +\x00\x00\x97\x36\x03\xcb\x0d\xe5\x00\x00\xb8\x4d\x03\xdc\x0c\xd4\ +\x00\x00\x8c\xfb\x03\xe1\x78\x25\x00\x00\x95\x54\x03\xf2\x70\x35\ +\x00\x00\x32\x42\x03\xf2\xbd\x60\x00\x00\x18\xc2\x03\xfb\x0f\x04\ +\x00\x00\x35\x76\x04\x21\x23\x23\x00\x00\x26\x53\x04\x2e\x73\x33\ +\x00\x00\x7d\xcb\x04\x56\x06\x93\x00\x00\x33\x81\x04\x60\x7c\x15\ +\x00\x00\xb6\xec\x04\x79\xef\x9a\x00\x00\xa3\x9b\x04\x82\x77\xf4\ +\x00\x00\x63\x42\x04\x87\x83\x87\x00\x00\x43\xf3\x04\x87\xf9\x9e\ +\x00\x00\xa9\x42\x04\x8c\xd6\xae\x00\x00\x78\x1e\x04\x8e\xbd\xda\ +\x00\x00\x9b\x63\x04\xa0\x8a\x25\x00\x00\x06\x63\x04\xa0\x8a\x25\ +\x00\x00\x92\xc5\x04\xa4\x31\x5a\x00\x00\xab\x69\x04\xa8\xeb\x85\ +\x00\x00\x39\x39\x04\xbe\x0a\xf8\x00\x00\x5e\x29\x04\xd6\xd6\x12\ +\x00\x00\x61\x4f\x04\xe1\x6e\xe3\x00\x00\x0b\x8f\x04\xe4\x0f\x75\ +\x00\x00\x02\xb9\x04\xeb\x41\xc3\x00\x00\x33\x04\x04\xef\xd9\xa8\ +\x00\x00\x5d\x3c\x05\x03\x83\x95\x00\x00\x85\xc6\x05\x05\xcb\x13\ +\x00\x00\x52\x90\x05\x0f\xf2\x74\x00\x00\xaf\x85\x05\x1b\x10\x59\ +\x00\x00\x57\x36\x05\x2a\xe5\x97\x00\x00\x60\x43\x05\x44\x3b\x5f\ +\x00\x00\x87\xb1\x05\x5c\xd9\xc4\x00\x00\x11\xae\x05\x5c\xd9\xc4\ +\x00\x00\xae\x08\x05\x63\xf6\x93\x00\x00\x5e\xe9\x05\x65\xee\x65\ +\x00\x00\x9b\x20\x05\x87\xb0\xc3\x00\x00\xb6\xbe\x05\x96\xa8\xa5\ +\x00\x00\x15\x9d\x05\x96\xa8\xa5\x00\x00\xb7\xf8\x05\xad\x4b\xc3\ +\x00\x00\x54\xea\x05\xb2\xa6\xc6\x00\x00\x22\xd1\x05\xb9\x03\xc8\ +\x00\x00\x23\x4a\x05\xbd\x0c\xba\x00\x00\x9e\x57\x05\xbd\x8e\xde\ +\x00\x00\x76\x72\x05\xbe\x56\x93\x00\x00\x5c\xce\x05\xc5\x50\x04\ +\x00\x00\x0d\xf7\x05\xe5\x8e\x2e\x00\x00\x13\x99\x05\xfb\xdc\x83\ +\x00\x00\x52\xf4\x06\x1e\xe6\xb5\x00\x00\xbd\x14\x06\x29\xee\xa9\ +\x00\x00\x93\x32\x06\x2a\x86\xcd\x00\x00\x62\xec\x06\x57\x19\xf4\ +\x00\x00\x00\x00\x06\x5a\xef\x15\x00\x00\x8c\x30\x06\x5b\xd2\xb5\ +\x00\x00\x4a\x75\x06\x6c\x88\x8e\x00\x00\x50\xa1\x06\x74\x1d\x55\ +\x00\x00\x6a\x6a\x06\x8b\x96\x44\x00\x00\x0e\xa3\x06\x97\x58\xc9\ +\x00\x00\x65\x7a\x06\xbc\x80\xa5\x00\x00\x21\x57\x06\xc9\xb8\x05\ +\x00\x00\x8f\x74\x06\xe8\x05\x4e\x00\x00\x08\x66\x06\xee\xaa\x57\ +\x00\x00\xbc\x29\x06\xf0\xcb\x25\x00\x00\x1f\x41\x06\xfa\xff\xc3\ +\x00\x00\x53\xfc\x06\xfc\x1a\x14\x00\x00\x3a\x9b\x06\xfc\xa0\x8a\ +\x00\x00\xaf\xbc\x07\x08\x90\xe5\x00\x00\x30\xdd\x07\x0d\xb7\xf7\ +\x00\x00\x40\x0a\x07\x0e\x86\x3e\x00\x00\x1f\xaa\x07\x2a\x23\x65\ +\x00\x00\x3f\x07\x07\x35\x68\x6e\x00\x00\x19\xd7\x07\x35\xe8\x9a\ +\x00\x00\xb4\x8a\x07\x44\x41\x2a\x00\x00\x9c\xa8\x07\x4a\x1f\x63\ +\x00\x00\x01\xe2\x07\x4d\x73\x22\x00\x00\xab\xff\x07\x4e\xa6\xf2\ +\x00\x00\x99\x9b\x07\x58\xcb\xe8\x00\x00\xac\x39\x07\x63\xfe\x0e\ +\x00\x00\x14\x6a\x07\x63\xfe\x0e\x00\x00\xb6\x91\x07\x71\xad\x43\ +\x00\x00\x1a\xda\x07\x80\xc6\xb3\x00\x00\xc0\x2e\x07\x88\x72\x5a\ +\x00\x00\x90\xb1\x07\x91\x78\x5e\x00\x00\x28\x29\x07\xa7\x30\x05\ +\x00\x00\x90\x82\x07\xc1\xfc\x13\x00\x00\x34\x4e\x07\xe7\xec\x93\ +\x00\x00\x7c\x9b\x08\x27\xb4\xba\x00\x00\xb2\x87\x08\x32\xc4\xaa\ +\x00\x00\xb5\x49\x08\x36\x74\x14\x00\x00\x2a\x3c\x08\x44\xb9\x83\ +\x00\x00\x3b\x28\x08\x49\xc9\x30\x00\x00\x19\x0c\x08\x61\x7c\xb3\ +\x00\x00\x23\x7d\x08\xa2\xca\x67\x00\x00\x64\xa7\x08\xa3\xe0\x33\ +\x00\x00\x94\x93\x08\xb1\x15\x28\x00\x00\x35\x01\x08\xb4\x04\x04\ +\x00\x00\xb7\x6f\x08\xd0\x32\xf4\x00\x00\x99\x6c\x08\xd4\xcd\x69\ +\x00\x00\x99\xd1\x08\xe1\x9b\xbe\x00\x00\x1e\x89\x08\xe1\xc1\xfa\ +\x00\x00\x9b\xf2\x08\xef\x4d\x7a\x00\x00\x96\xda\x09\x20\xda\x24\ +\x00\x00\xc1\x54\x09\x20\xda\xb4\x00\x00\xc2\x05\x09\x20\xda\xd4\ +\x00\x00\xc0\x83\x09\x4d\x96\xd9\x00\x00\x2b\x65\x09\x65\xda\x8a\ +\x00\x00\xa0\x2b\x09\x68\x0d\x29\x00\x00\xaa\x40\x09\x71\x8d\x25\ +\x00\x00\x08\x1a\x09\x75\x23\x14\x00\x00\x8d\xd9\x09\x76\xed\x34\ +\x00\x00\x7c\x51\x09\x86\xa6\x05\x00\x00\x29\x5a\x09\x8b\x23\xba\ +\x00\x00\xb5\xae\x09\x9e\xfd\x7e\x00\x00\x7d\x2d\x09\xb6\x2a\x63\ +\x00\x00\x39\xa7\x09\xcd\x1c\x55\x00\x00\xb8\x8d\x09\xd2\x21\xea\ +\x00\x00\x73\x89\x09\xe5\x23\x0e\x00\x00\x6d\xa1\x09\xec\x2b\x45\ +\x00\x00\x0e\x59\x09\xef\x33\xa3\x00\x00\x1b\xa8\x09\xf0\x1f\x6e\ +\x00\x00\x03\x66\x09\xfd\x45\x1a\x00\x00\xb1\x3b\x0a\x09\xc1\x7a\ +\x00\x00\xb3\xf0\x0a\x28\x9a\x65\x00\x00\x61\xcf\x0a\x28\x9a\x67\ +\x00\x00\x62\x14\x0a\x28\x9a\x69\x00\x00\x62\x59\x0a\x2d\xbe\xe4\ +\x00\x00\x36\x67\x0a\x35\xa9\xfa\x00\x00\xa4\xb4\x0a\x3f\x27\x74\ +\x00\x00\x96\x6e\x0a\x40\xa1\xe3\x00\x00\x32\xa5\x0a\x49\xa5\x4a\ +\x00\x00\xbd\x7f\x0a\x60\xe0\x15\x00\x00\x2c\x5f\x0a\x60\xe0\x17\ +\x00\x00\x2c\xb0\x0a\x60\xe0\x19\x00\x00\x2d\x01\x0a\x65\x9b\xea\ +\x00\x00\xae\x3a\x0a\x78\x05\x80\x00\x00\x01\x2f\x0a\x7f\x8f\x65\ +\x00\x00\x46\x16\x0a\x81\xe4\x23\x00\x00\x4c\x09\x0a\x86\x10\x44\ +\x00\x00\x13\x08\x0a\x98\x86\x18\x00\x00\x30\x4a\x0a\x99\x5c\xaa\ +\x00\x00\xb6\x08\x0a\xa8\x16\x95\x00\x00\x15\x5c\x0a\xa8\x16\x95\ +\x00\x00\xb7\x38\x0a\xa9\x89\xec\x00\x00\x55\xea\x0a\xc8\x5c\x59\ +\x00\x00\x11\xe7\x0a\xd0\x50\xb8\x00\x00\x8c\xce\x0a\xd0\xe6\xf5\ +\x00\x00\x1a\x93\x0a\xd6\xf1\xfa\x00\x00\x98\xe7\x0a\xeb\x91\x88\ +\x00\x00\x7b\xa8\x0b\x07\x78\x8a\x00\x00\x9f\x8a\x0b\x1b\xe0\x73\ +\x00\x00\x65\xe8\x0b\x24\x9d\xb4\x00\x00\x66\xe5\x0b\x24\xc5\xc9\ +\x00\x00\x15\xd0\x0b\x26\x7e\x0e\x00\x00\x95\x92\x0b\x2b\x50\xfa\ +\x00\x00\xa2\xf6\x0b\x2d\xb3\xf9\x00\x00\x81\xc0\x0b\x37\x73\x69\ +\x00\x00\xbf\x21\x0b\x40\x40\x3e\x00\x00\x57\x98\x0b\x43\xcd\x19\ +\x00\x00\x56\x64\x0b\x4f\x98\xba\x00\x00\xa1\x2e\x0b\x66\x28\xd2\ +\x00\x00\x7a\x34\x0b\x88\xe0\x07\x00\x00\x0c\xf6\x0b\x94\x44\xc5\ +\x00\x00\x36\xe0\x0b\x98\x12\xaa\x00\x00\x9d\xda\x0b\xa0\x84\x94\ +\x00\x00\x04\x6d\x0b\xb3\x46\x6a\x00\x00\x94\x1c\x0b\xc2\x99\x6a\ +\x00\x00\x9e\xd3\x0b\xd3\x27\xae\x00\x00\x05\x78\x0b\xd4\x7e\x9e\ +\x00\x00\x0d\x29\x0b\xf5\xee\x53\x00\x00\xad\xc1\x0c\x06\x50\x2e\ +\x00\x00\x0f\x26\x0c\x19\xfa\x99\x00\x00\x9a\x67\x0c\x21\x0a\x83\ +\x00\x00\x92\xf1\x0c\x28\x9b\x45\x00\x00\x8d\x50\x0c\x31\x7e\x4a\ +\x00\x00\xb1\xdb\x0c\x38\x4d\xe5\x00\x00\x09\x1a\x0c\x3a\x16\xd0\ +\x00\x00\x1d\x54\x0c\x5a\xc0\xc8\x00\x00\x91\x28\x0c\x6e\x87\xf5\ +\x00\x00\x27\xf0\x0c\x7c\xe0\xa6\x00\x00\x22\x12\x0c\x80\x3b\x33\ +\x00\x00\x98\x85\x0c\x91\xa0\x7a\x00\x00\xbc\xb5\x0c\x96\x90\x59\ +\x00\x00\x56\xcb\x0c\xbe\xa7\x4e\x00\x00\x4d\x73\x0c\xca\xdd\xfa\ +\x00\x00\xbb\x3d\x0c\xd6\xef\x12\x00\x00\x33\xf1\x0c\xde\x99\x49\ +\x00\x00\x82\x0a\x0c\xe1\x21\x02\x00\x00\x60\xd8\x0c\xe2\x77\x73\ +\x00\x00\x84\x5f\x0c\xf0\xde\xaa\x00\x00\xa1\xb1\x0d\x1c\xf6\xee\ +\x00\x00\x31\xa0\x0d\x3a\x6c\xba\x00\x00\xb2\x31\x0d\x45\xe2\x6a\ +\x00\x00\xb9\xe1\x0d\x59\xa1\x45\x00\x00\x97\x93\x0d\x5a\xad\x33\ +\x00\x00\x8f\xe8\x0d\x5e\xe7\x6e\x00\x00\x2d\x52\x0d\x64\xa5\xd9\ +\x00\x00\x71\xc2\x0d\x6d\xf8\xf4\x00\x00\x09\xdf\x0d\x74\xdd\x52\ +\x00\x00\x1c\x99\x0d\x76\xb5\x92\x00\x00\x31\xea\x0d\x9b\xec\xc9\ +\x00\x00\x69\xf9\x0d\xa5\xd9\x94\x00\x00\x31\x47\x0d\xa6\xda\xa4\ +\x00\x00\x58\xbd\x0d\xa7\xb9\xc2\x00\x00\x1c\xe6\x0d\xc6\xc6\x2a\ +\x00\x00\xb4\xe7\x0d\xf2\x39\xba\x00\x00\xa5\x67\x0e\x1a\x1d\xc3\ +\x00\x00\x53\x6a\x0e\x29\x94\x64\x00\x00\x42\x56\x0e\x2b\x04\x15\ +\x00\x00\x95\x13\x0e\x2c\xe4\x2a\x00\x00\xb9\x74\x0e\x4e\xcc\xc5\ +\x00\x00\x0b\x40\x0e\x6f\x9a\x1a\x00\x00\xbb\xb5\x0e\x7b\x7a\x2c\ +\x00\x00\x37\xea\x0e\x8f\x6a\x37\x00\x00\x3c\x5e\x0e\x91\x65\xf5\ +\x00\x00\x1e\x19\x0e\xca\xd7\x34\x00\x00\x25\x39\x0e\xcd\x1c\x55\ +\x00\x00\xb8\xda\x0e\xcd\x1c\x65\x00\x00\xb9\x27\x0e\xcd\x5b\x59\ +\x00\x00\x5d\xd0\x0e\xea\xe5\x03\x00\x00\x8a\xb9\x0e\xed\xe1\xf9\ +\x00\x00\x5a\xb7\x0f\x07\x8d\xe3\x00\x00\x8b\x55\x0f\x0b\x10\x53\ +\x00\x00\x59\x2b\x0f\x17\x82\x4e\x00\x00\x00\xdd\x0f\x1f\x8d\xa5\ +\x00\x00\x94\xcd\x0f\x4f\x75\x3a\x00\x00\xc2\x79\x0f\x5f\xca\xd5\ +\x00\x00\x37\x5b\x0f\x77\xc3\xb4\x00\x00\x82\xe0\x0f\x89\x0b\xbe\ +\x00\x00\x5b\x1f\x0f\x8f\xa8\xa7\x00\x00\x1c\x4c\x0f\x98\x0a\x39\ +\x00\x00\xbe\x83\x0f\x9e\xec\xa0\x00\x00\x14\x9f\x0f\xbf\x87\xa3\ +\x00\x00\xab\x1f\x0f\xcd\xce\x95\x00\x00\x3b\xf4\x0f\xdf\x21\x05\ +\x00\x00\x29\xe7\x0f\xf6\x06\x1e\x00\x00\x25\x99\x0f\xf6\x29\x0a\ +\x00\x00\x8f\xa4\x0f\xfb\x5f\xae\x00\x00\x95\xd6\x69\x00\x00\xc3\ +\x15\x03\x00\x00\x00\x14\x00\x4e\x00\x6f\x00\x6b\x00\x74\x00\x61\ +\x00\x20\x00\x45\x00\x6b\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x41\x64\x64\x20\x50\x6f\x69\x6e\x74\x07\x00\x00\ +\x00\x0e\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x50\x6f\x69\x6e\x74\ +\x01\x03\x00\x00\x00\x52\x00\x4d\x00\x65\x00\x76\x00\x63\x00\x75\ +\x00\x74\x00\x20\x00\x62\x00\x61\x01\x1f\x00\x6c\x00\x61\x00\x6e\ +\x00\x74\x01\x31\x00\x2f\x00\x62\x00\x73\x00\x70\x00\x6c\x00\x69\ +\x00\x6e\x00\x65\x00\x27\x00\x61\x00\x20\x00\x62\x00\x69\x00\x72\ +\x00\x20\x00\x6e\x00\x6f\x00\x6b\x00\x74\x00\x61\x00\x20\x00\x65\ +\x00\x6b\x00\x6c\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x28\x41\x64\x64\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x74\ +\x6f\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x77\x69\ +\x72\x65\x2f\x62\x73\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x0e\x44\ +\x72\x61\x66\x74\x5f\x41\x64\x64\x50\x6f\x69\x6e\x74\x01\x03\x00\ +\x00\x00\x1e\x00\x41\x00\x64\x00\x64\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x2e\x00\x2e\x00\ +\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x41\x64\x64\x20\x74\ +\x6f\x20\x67\x72\x6f\x75\x70\x2e\x2e\x2e\x07\x00\x00\x00\x10\x44\ +\x72\x61\x66\x74\x5f\x41\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\x01\ +\x03\x00\x00\x00\x5e\x00\x53\x00\x65\x00\xe7\x00\x69\x00\x6c\x00\ +\x69\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x79\x00\ +\x69\x00\x2f\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x6c\x00\ +\x65\x00\x72\x00\x69\x00\x20\x00\x6d\x00\x65\x00\x76\x00\x63\x00\ +\x75\x00\x74\x00\x20\x00\x62\x00\x69\x00\x72\x00\x20\x00\x67\x00\ +\x72\x00\x75\x00\x62\x00\x61\x00\x20\x00\x65\x00\x6b\x00\x6c\x00\ +\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x41\x64\x64\ +\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x28\x73\x29\x20\x74\x6f\x20\x61\x6e\x20\x65\ +\x78\x69\x73\x74\x69\x6e\x67\x20\x67\x72\x6f\x75\x70\x07\x00\x00\ +\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x54\x6f\x47\x72\x6f\ +\x75\x70\x01\x03\x00\x00\x00\x7a\x00\x53\x00\x65\x00\xe7\x00\x69\ +\x00\x6c\x00\x69\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\ +\x00\x6c\x00\x65\x00\x72\x00\x65\x00\x20\x00\x67\x00\x65\x00\xe7\ +\x00\x65\x00\x72\x00\x6c\x00\x69\x00\x20\x00\xe7\x00\x69\x00\x7a\ +\x00\x67\x00\x69\x00\x20\x00\x67\x00\x65\x00\x6e\x00\x69\x01\x5f\ +\x00\x6c\x00\x69\x01\x1f\x00\x69\x00\x6e\x00\x69\x00\x20\x00\x76\ +\x00\x65\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x67\x00\x69\x00\x6e\ +\x00\x69\x00\x20\x00\x75\x00\x79\x00\x67\x00\x75\x00\x6c\x00\x61\ +\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x41\x70\x70\x6c\ +\x69\x65\x73\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\x6e\x65\ +\x20\x77\x69\x64\x74\x68\x20\x61\x6e\x64\x20\x63\x6f\x6c\x6f\x72\ +\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\ +\x70\x70\x6c\x79\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\x3e\x00\ +\x56\x00\x61\x00\x72\x00\x73\x00\x61\x00\x79\x01\x31\x00\x6c\x00\ +\x61\x00\x6e\x00\x20\x00\xe7\x00\x69\x00\x7a\x00\x69\x00\x6d\x00\ +\x20\x01\x5f\x00\x65\x00\x6b\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\ +\x20\x00\x75\x00\x79\x00\x67\x00\x75\x00\x6c\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x13\x41\x70\x70\x6c\x79\x20\x43\x75\x72\ +\x72\x65\x6e\x74\x20\x53\x74\x79\x6c\x65\x07\x00\x00\x00\x10\x44\ +\x72\x61\x66\x74\x5f\x41\x70\x70\x6c\x79\x53\x74\x79\x6c\x65\x01\ +\x03\x00\x00\x00\x16\x00\xc7\x00\x65\x00\x6d\x00\x62\x00\x65\x00\ +\x72\x00\x20\x00\x79\x00\x61\x00\x79\x01\x31\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x03\x41\x72\x63\x07\x00\x00\x00\x09\x44\x72\x61\ +\x66\x74\x5f\x41\x72\x63\x01\x03\x00\x00\x00\x8a\x00\x42\x00\x69\ +\x00\x72\x00\x20\x00\xe7\x00\x65\x00\x6d\x00\x62\x00\x65\x00\x72\ +\x00\x20\x00\x79\x00\x61\x00\x79\x01\x31\x00\x20\x00\x6f\x00\x6c\ +\x00\x75\x01\x5f\x00\x74\x00\x75\x00\x72\x00\x75\x00\x72\x00\x2e\ +\x00\x6b\x00\x69\x00\x6c\x00\x69\x00\x74\x00\x6c\x00\x65\x00\x6d\ +\x00\x65\x00\x6b\x00\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\x00\x20\ +\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x2c\x00\x20\x00\x73\x01\x31\ +\x00\x6e\x01\x31\x00\x72\x00\x6c\x00\x61\x00\x6d\x00\x61\x00\x6b\ +\x00\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\x00\x20\x00\x53\x00\x48\ +\x00\x49\x00\x46\x00\x54\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x72\x63\x2e\x20\ +\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\ +\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\ +\x07\x00\x00\x00\x09\x44\x72\x61\x66\x74\x5f\x41\x72\x63\x01\x03\ +\x00\x00\x00\x0a\x00\x41\x00\x72\x00\x72\x00\x61\x00\x79\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x41\x72\x72\x61\x79\x07\x00\x00\ +\x00\x0b\x44\x72\x61\x66\x74\x5f\x41\x72\x72\x61\x79\x01\x03\x00\ +\x00\x00\x76\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\ +\x73\x00\x20\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x61\x00\ +\x72\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x72\x00\x65\x00\x63\x00\ +\x74\x00\x61\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x72\x00\ +\x20\x00\x61\x00\x72\x00\x72\x00\x61\x00\x79\x00\x20\x00\x66\x00\ +\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x3b\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x70\x6f\x6c\ +\x61\x72\x20\x6f\x72\x20\x72\x65\x63\x74\x61\x6e\x67\x75\x6c\x61\ +\x72\x20\x61\x72\x72\x61\x79\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x41\x72\x72\x61\x79\x01\x03\ +\x00\x00\x00\x10\x00\x42\x00\x2d\x00\x53\x00\x70\x00\x6c\x00\x69\ +\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x2d\ +\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\ +\x5f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x86\x00\x43\ +\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\ +\x00\x20\x00\x6d\x00\x75\x00\x6c\x00\x74\x00\x69\x00\x70\x00\x6c\ +\x00\x65\x00\x2d\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\ +\x00\x62\x00\x2d\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\ +\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x74\ +\x00\x6f\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x2c\x00\x20\ +\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x74\x00\x6f\ +\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x61\ +\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\ +\x2d\x70\x6f\x69\x6e\x74\x20\x62\x2d\x73\x70\x6c\x69\x6e\x65\x2e\ +\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\ +\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\ +\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x42\x53\x70\x6c\ +\x69\x6e\x65\x01\x03\x00\x00\x00\x0c\x00\xc7\x00\x65\x00\x6d\x00\ +\x62\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\ +\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\ +\x43\x69\x72\x63\x6c\x65\x01\x03\x00\x00\x00\x80\x00\x42\x00\x69\ +\x00\x72\x00\x20\x00\xe7\x00\x65\x00\x6d\x00\x62\x00\x65\x00\x72\ +\x00\x20\x00\x6f\x00\x6c\x00\x75\x01\x5f\x00\x74\x00\x75\x00\x72\ +\x00\x75\x00\x72\x00\x2e\x00\x6b\x00\x69\x00\x6c\x00\x69\x00\x74\ +\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6b\x00\x20\x00\x69\x00\xe7\ +\x00\x69\x00\x6e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x2c\ +\x00\x20\x00\x73\x01\x31\x00\x6e\x01\x31\x00\x72\x00\x6c\x00\x61\ +\x00\x6d\x00\x61\x00\x6b\x00\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\ +\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x3d\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ +\x63\x69\x72\x63\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\ +\x73\x6e\x61\x70\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x73\x65\x6c\ +\x65\x63\x74\x20\x74\x61\x6e\x67\x65\x6e\x74\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x43\x69\ +\x72\x63\x6c\x65\x01\x03\x00\x00\x00\x0a\x00\x43\x00\x6c\x00\x6f\ +\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x43\x6c\ +\x6f\x6e\x65\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x43\x6c\ +\x6f\x6e\x65\x01\x03\x00\x00\x00\x3a\x00\x43\x00\x6c\x00\x6f\x00\ +\x6e\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x28\x00\ +\x73\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x43\x6c\x6f\ +\x6e\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ +\x20\x6f\x62\x6a\x65\x63\x74\x28\x73\x29\x07\x00\x00\x00\x0b\x44\ +\x72\x61\x66\x74\x5f\x43\x6c\x6f\x6e\x65\x01\x03\x00\x00\x00\x1e\ +\x00\xc7\x00\x69\x00\x7a\x00\x67\x00\x69\x00\x79\x00\x69\x00\x20\ +\x00\x6b\x00\x61\x00\x70\x00\x61\x00\x74\x01\x31\x00\x72\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6c\x6f\x73\x65\x20\x4c\x69\ +\x6e\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\ +\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x2e\x00\xc7\x00\x69\ +\x00\x7a\x00\x69\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\xe7\x00\x69\ +\x00\x7a\x00\x67\x00\x69\x00\x79\x00\x69\x00\x20\x00\x6b\x00\x61\ +\x00\x70\x00\x61\x00\x74\x01\x31\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1b\x43\x6c\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x6c\ +\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x07\ +\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\x73\x65\x4c\ +\x69\x6e\x65\x01\x03\x00\x00\x00\x18\x00\x4e\x00\x6f\x00\x6b\x00\ +\x74\x00\x61\x00\x20\x00\x4b\x00\x61\x00\x6c\x00\x64\x01\x31\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x52\x65\x6d\x6f\x76\ +\x65\x20\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\ +\x74\x5f\x44\x65\x6c\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x72\ +\x00\x4d\x00\x65\x00\x76\x00\x63\x00\x75\x00\x74\x00\x20\x00\x62\ +\x00\x61\x01\x1f\x00\x6c\x00\x61\x00\x6e\x00\x74\x01\x31\x00\x20\ +\x00\x76\x00\x65\x00\x79\x00\x61\x00\x20\x00\x62\x00\x73\x00\x70\ +\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x69\x00\xe7\x00\x69\ +\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x62\x00\x69\x00\x72\ +\x00\x20\x00\x6e\x00\x6f\x00\x6b\x00\x74\x00\x61\x00\x79\x01\x31\ +\x00\x20\x00\x6b\x00\x61\x00\x6c\x00\x64\x01\x31\x00\x72\x01\x31\ +\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x52\x65\x6d\x6f\ +\x76\x65\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x66\x72\x6f\x6d\ +\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x77\x69\x72\ +\x65\x20\x6f\x72\x20\x62\x73\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\ +\x0e\x44\x72\x61\x66\x74\x5f\x44\x65\x6c\x50\x6f\x69\x6e\x74\x01\ +\x03\x00\x00\x00\xb8\x00\x42\x00\x69\x00\x72\x00\x20\x00\x62\x00\ +\x6f\x00\x79\x00\x75\x00\x74\x00\x20\x00\x6f\x00\x6c\x00\x75\x01\ +\x5f\x00\x74\x00\x75\x00\x72\x00\x75\x00\x72\x00\x2e\x00\x6b\x00\ +\x69\x00\x6c\x00\x69\x00\x74\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\ +\x6b\x00\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\x00\x20\x00\x43\x00\ +\x54\x00\x52\x00\x4c\x00\x2c\x00\x20\x00\x73\x01\x31\x00\x6e\x01\ +\x31\x00\x72\x00\x6c\x00\x61\x00\x6d\x00\x61\x00\x6b\x00\x20\x00\ +\x69\x00\xe7\x00\x69\x00\x6e\x00\x20\x00\x53\x00\x48\x00\x49\x00\ +\x46\x00\x54\x00\x2c\x00\x20\x00\x62\x00\x69\x00\x72\x00\x20\x00\ +\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\ +\x73\x00\x65\x00\xe7\x00\x6d\x00\x65\x00\x6b\x00\x20\x00\x69\x00\ +\xe7\x00\x69\x00\x6e\x00\x20\x00\x41\x00\x4c\x00\x54\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4e\x43\x72\x65\x61\x74\x65\x73\x20\x61\ +\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x2e\x20\x43\x54\x52\x4c\ +\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\ +\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\ +\x54\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x20\x61\x20\x73\x65\ +\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\ +\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x01\x03\x00\x00\x00\x0a\x00\ +\x42\x00\x6f\x00\x79\x00\x75\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\ +\x0f\x44\x72\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ +\x01\x03\x00\x00\x00\x22\x00\xd6\x00\x6e\x00\x63\x00\x65\x00\x6b\ +\x00\x69\x00\x20\x00\x73\x00\xfc\x00\x72\x00\xfc\x00\x6d\x00\x65\ +\x00\x20\x00\x64\x00\xf6\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x09\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x07\x00\x00\x00\x0f\ +\x44\x72\x61\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\ +\x03\x00\x00\x00\xaa\x00\x53\x00\x65\x00\xe7\x00\x69\x00\x6c\x00\ +\x69\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x6c\x00\ +\x65\x00\x72\x00\x69\x00\x20\x00\x64\x00\x61\x00\x68\x00\x61\x00\ +\x20\x00\x62\x00\x61\x00\x73\x00\x69\x00\x74\x00\x20\x00\x70\x00\ +\x61\x00\x72\x00\xe7\x00\x61\x00\x63\x01\x31\x00\x6b\x00\x6c\x00\ +\x61\x00\x72\x00\x61\x00\x20\x00\x61\x00\x79\x00\x72\x01\x31\x01\ +\x5f\x00\x74\x01\x31\x00\x72\x01\x31\x00\x72\x00\x2c\x00\x20\x00\ +\x76\x00\x65\x00\x79\x00\x61\x00\x20\x00\x79\x00\xfc\x00\x7a\x00\ +\x6c\x00\x65\x00\x72\x00\x69\x00\x20\x00\x62\x00\x69\x00\x72\x00\ +\x62\x00\x69\x00\x72\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\ +\x20\x00\xe7\x01\x31\x00\x6b\x00\x61\x00\x72\x01\x31\x00\x72\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x45\x45\x78\x70\x6c\x6f\x64\x65\ +\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\x73\x69\x6d\x70\ +\x6c\x65\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x2c\x20\x6f\x72\x20\ +\x73\x75\x62\x74\x72\x61\x63\x74\x20\x66\x61\x63\x65\x73\x07\x00\ +\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\ +\x64\x65\x01\x03\x00\x00\x00\x1e\x00\x44\x00\x72\x00\x61\x00\x66\ +\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x53\x00\x6b\x00\x65\ +\x00\x74\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\ +\x44\x72\x61\x66\x74\x20\x74\x6f\x20\x53\x6b\x65\x74\x63\x68\x07\ +\x00\x00\x00\x12\x44\x72\x61\x66\x74\x5f\x44\x72\x61\x66\x74\x32\ +\x53\x6b\x65\x74\x63\x68\x01\x03\x00\x00\x00\x0a\x00\xc7\x00\x69\ +\x00\x7a\x00\x69\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ +\x44\x72\x61\x77\x69\x6e\x67\x07\x00\x00\x00\x0d\x44\x72\x61\x66\ +\x74\x5f\x44\x72\x61\x77\x69\x6e\x67\x01\x03\x00\x00\x00\x4e\x00\ +\x53\x00\x65\x00\xe7\x00\x69\x00\x6c\x00\x69\x00\x20\x00\x6e\x00\ +\x65\x00\x73\x00\x6e\x00\x65\x00\x6c\x00\x65\x00\x72\x00\x69\x00\ +\x20\x00\xe7\x00\x69\x00\x7a\x00\x69\x00\x6d\x00\x20\x00\x73\x00\ +\x61\x00\x79\x00\x66\x00\x61\x00\x73\x01\x31\x00\x6e\x00\x61\x00\ +\x20\x00\x6b\x00\x6f\x00\x79\x00\x61\x00\x72\x00\x2e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x2d\x50\x75\x74\x73\x20\x74\x68\x65\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x20\x6f\x6e\x20\x61\x20\x44\x72\x61\x77\x69\x6e\x67\x20\x73\x68\ +\x65\x65\x74\x2e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x44\ +\x72\x61\x77\x69\x6e\x67\x01\x03\x00\x00\x00\x0e\x00\x44\x00\xfc\ +\x00\x7a\x00\x65\x00\x6e\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x0a\x44\x72\x61\ +\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\x2c\x00\x45\x00\ +\x74\x00\x6b\x00\x69\x00\x6e\x00\x20\x00\x6e\x00\x65\x00\x73\x00\ +\x6e\x00\x65\x00\x79\x00\x69\x00\x20\x00\x64\x00\xfc\x00\x7a\x00\ +\x65\x00\x6e\x00\x6c\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x17\x45\x64\x69\x74\x73\x20\x74\x68\x65\x20\x61\x63\x74\ +\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x0a\x44\ +\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\x1a\x00\ +\xc7\x00\x69\x00\x7a\x00\x67\x00\x69\x00\x79\x00\x69\x00\x20\x00\ +\x62\x00\x69\x00\x74\x00\x69\x00\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0b\x46\x69\x6e\x69\x73\x68\x20\x6c\x69\x6e\x65\x07\x00\ +\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\x69\x73\x68\x4c\ +\x69\x6e\x65\x01\x03\x00\x00\x00\x3c\x00\x4b\x00\x61\x00\x70\x00\ +\x61\x00\x74\x00\x6d\x00\x61\x00\x64\x00\x61\x00\x6e\x00\x20\x00\ +\x62\x00\x69\x00\x72\x00\x20\x00\xe7\x00\x69\x00\x7a\x00\x67\x00\ +\x69\x00\x79\x00\x69\x00\x20\x00\x62\x00\x69\x00\x74\x00\x69\x00\ +\x72\x00\x69\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x46\ +\x69\x6e\x69\x73\x68\x65\x73\x20\x61\x20\x6c\x69\x6e\x65\x20\x77\ +\x69\x74\x68\x6f\x75\x74\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\ +\x74\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\x69\ +\x73\x68\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x8c\x00\x32\x00\x2d\ +\x00\x6e\x00\x6f\x00\x6b\x00\x74\x00\x61\x00\x6c\x01\x31\x00\x20\ +\x00\xe7\x00\x69\x00\x7a\x00\x67\x00\x69\x00\x20\x00\x6f\x00\x6c\ +\x00\x75\x01\x5f\x00\x74\x00\x75\x00\x72\x00\x75\x00\x72\x00\x2e\ +\x00\x20\x00\x6b\x00\x69\x00\x6c\x00\x69\x00\x74\x00\x6c\x00\x65\ +\x00\x6d\x00\x65\x00\x6b\x00\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\ +\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x2c\x00\x20\x00\x73\ +\x01\x31\x00\x6e\x01\x31\x00\x72\x00\x6c\x00\x61\x00\x6d\x00\x61\ +\x00\x6b\x00\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\x00\x20\x00\x53\ +\x00\x48\x00\x49\x00\x46\x00\x54\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x38\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x32\x2d\x70\x6f\ +\x69\x6e\x74\x20\x6c\x69\x6e\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\ +\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\ +\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\ +\x72\x61\x66\x74\x5f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x0a\x00\ +\xc7\x00\x69\x00\x7a\x00\x67\x00\x69\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\ +\x74\x5f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x08\x00\x54\x00\x61\ +\x01\x5f\x01\x31\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4d\x6f\ +\x76\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4d\x6f\x76\ +\x65\x01\x03\x00\x00\x00\xd4\x00\x53\x00\x65\x00\xe7\x00\x69\x00\ +\x6c\x00\x65\x00\x6e\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\ +\x65\x00\x6c\x00\x65\x00\x72\x00\x69\x00\x20\x00\x32\x00\x20\x00\ +\x6e\x00\x6f\x00\x6b\x00\x74\x00\x61\x00\x20\x00\x61\x00\x72\x00\ +\x61\x00\x73\x01\x31\x00\x6e\x00\x64\x00\x61\x00\x20\x00\x74\x00\ +\x61\x01\x5f\x01\x31\x00\x72\x00\x2e\x00\x20\x00\x6b\x00\x69\x00\ +\x6c\x00\x69\x00\x74\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6b\x00\ +\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\x00\x20\x00\x43\x00\x54\x00\ +\x52\x00\x4c\x00\x2c\x00\x20\x00\x6b\x01\x31\x00\x73\x01\x31\x00\ +\x74\x00\x6c\x00\x61\x00\x6d\x00\x61\x00\x6b\x00\x20\x00\x69\x00\ +\xe7\x00\x69\x00\x6e\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\ +\x54\x00\x2c\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x79\x00\x61\x00\ +\x6c\x00\x61\x00\x6d\x00\x61\x00\x6b\x00\x20\x00\x69\x00\xe7\x00\ +\x69\x00\x6e\x00\x20\x00\x41\x00\x4c\x00\x54\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x5a\x4d\x6f\x76\x65\x73\x20\x74\x68\x65\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x62\x65\x74\x77\x65\x65\x6e\x20\x32\x20\x70\x6f\x69\x6e\x74\x73\ +\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\ +\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\ +\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\ +\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4d\x6f\x76\x65\x01\x03\ +\x00\x00\x00\x12\x00\x55\x00\x7a\x00\x61\x00\x6b\x00\x6c\x00\x61\ +\x01\x5f\x00\x6d\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\ +\x5f\x4f\x66\x66\x73\x65\x74\x01\x03\x00\x00\x00\xb8\x00\x41\x00\ +\x6b\x00\x74\x00\x69\x00\x66\x00\x20\x00\x6e\x00\x65\x00\x73\x00\ +\x6e\x00\x65\x00\x79\x00\x69\x00\x20\x00\x75\x00\x7a\x00\x61\x00\ +\x6b\x00\x6c\x00\x61\x01\x5f\x00\x74\x01\x31\x00\x72\x01\x31\x00\ +\x72\x00\x2e\x00\x20\x00\x6b\x00\x69\x00\x6c\x00\x69\x00\x74\x00\ +\x6c\x00\x65\x00\x6d\x00\x65\x00\x6b\x00\x20\x00\x69\x00\xe7\x00\ +\x69\x00\x6e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x2c\x00\ +\x20\x00\x6b\x01\x31\x00\x73\x01\x31\x00\x74\x00\x6c\x00\x61\x00\ +\x6d\x00\x61\x00\x6b\x00\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\x00\ +\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x2c\x00\x20\x00\ +\x6b\x00\x6f\x00\x70\x00\x79\x00\x61\x00\x6c\x00\x61\x00\x6d\x00\ +\x61\x00\x6b\x00\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\x00\x20\x00\ +\x41\x00\x4c\x00\x54\x08\x00\x00\x00\x00\x06\x00\x00\x00\x48\x4f\ +\x66\x66\x73\x65\x74\x73\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x2e\x20\x43\x54\x52\x4c\x20\x74\ +\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\ +\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\ +\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0c\x44\x72\x61\x66\ +\x74\x5f\x4f\x66\x66\x73\x65\x74\x01\x03\x00\x00\x00\x2c\x00\x43\ +\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\ +\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x16\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x70\x6f\ +\x69\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x0b\x44\ +\x72\x61\x66\x74\x5f\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x0a\ +\x00\x4e\x00\x6f\x00\x6b\x00\x74\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x0b\x44\x72\ +\x61\x66\x74\x5f\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x74\x00\ +\x53\x01\x31\x00\x72\x00\x61\x00\x64\x00\x61\x00\x6e\x00\x20\x00\ +\x62\x00\x69\x00\x72\x00\x20\x00\xe7\x00\x6f\x00\x6b\x00\x67\x00\ +\x65\x00\x6e\x00\x20\x00\x6f\x00\x6c\x00\x75\x01\x5f\x00\x74\x00\ +\x75\x00\x72\x00\x75\x00\x72\x00\x2e\x00\x20\x00\x43\x00\x54\x00\ +\x52\x00\x4c\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x61\x00\x72\x01\ +\x31\x00\x72\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\ +\x54\x00\x20\x00\x73\x01\x31\x00\x6e\x01\x31\x00\x72\x00\x6c\x00\ +\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3b\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x72\x65\x67\x75\x6c\x61\x72\x20\x70\ +\x6f\x6c\x79\x67\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\ +\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\ +\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\ +\x66\x74\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\x03\x00\x00\x00\x0c\ +\x00\xc7\x00\x6f\x00\x6b\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x07\x50\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\ +\x00\x0d\x44\x72\x61\x66\x74\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\ +\x03\x00\x00\x00\x70\x00\x32\x00\x2d\x00\x6e\x00\x6f\x00\x6b\x00\ +\x74\x00\x61\x00\x6c\x01\x31\x00\x20\x00\x62\x00\x69\x00\x72\x00\ +\x20\x00\x64\x00\x69\x00\x6b\x00\x64\x00\xf6\x00\x72\x00\x74\x00\ +\x67\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x6c\x00\x75\x01\x5f\x00\ +\x74\x00\x75\x00\x72\x00\x75\x00\x72\x00\x2e\x00\x20\x00\x6b\x00\ +\x69\x00\x6c\x00\x69\x00\x74\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\ +\x6b\x00\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\x00\x20\x00\x43\x00\ +\x54\x00\x52\x00\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x43\ +\x72\x65\x61\x74\x65\x73\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\x74\ +\x20\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\x2e\x20\x43\x54\x52\x4c\ +\x20\x74\x6f\x20\x73\x6e\x61\x70\x07\x00\x00\x00\x0f\x44\x72\x61\ +\x66\x74\x5f\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\ +\x00\x14\x00\x44\x00\x69\x00\x6b\x00\x64\x00\xf6\x00\x72\x00\x74\ +\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x0f\x44\x72\ +\x61\x66\x74\x5f\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\ +\x00\x00\x0c\x00\x44\x00\xf6\x00\x6e\x00\x64\x00\xfc\x00\x72\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x6f\x74\x61\x74\x65\x07\ +\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\ +\x01\x03\x00\x00\x00\xb6\x00\x53\x00\x65\x00\xe7\x00\x69\x00\x6c\ +\x00\x69\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x6c\ +\x00\x65\x00\x72\x00\x69\x00\x20\x00\x64\x00\xf6\x00\x6e\x00\x64\ +\x00\xfc\x00\x72\x00\xfc\x00\x72\x00\x2e\x00\x20\x00\x6b\x00\x69\ +\x00\x6c\x00\x69\x00\x74\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6b\ +\x00\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\x00\x20\x00\x43\x00\x54\ +\x00\x52\x00\x4c\x00\x2c\x00\x20\x00\x6b\x01\x31\x00\x73\x01\x31\ +\x00\x74\x00\x6c\x00\x61\x00\x6d\x00\x61\x00\x6b\x00\x20\x00\x69\ +\x00\xe7\x00\x69\x00\x6e\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\ +\x00\x54\x00\x2c\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x79\x00\x61\ +\x00\x6c\x00\x61\x00\x6d\x00\x61\x00\x6b\x00\x20\x00\x69\x00\xe7\ +\x00\x69\x00\x6e\x00\x20\x00\x41\x00\x4c\x00\x54\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x52\x52\x6f\x74\x61\x74\x65\x73\x20\x74\x68\ +\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\ +\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\ +\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x63\x72\x65\x61\x74\x65\ +\x73\x20\x61\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0c\x44\x72\x61\ +\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\x01\x03\x00\x00\x00\x0a\x00\ +\xd6\x00\x6c\x00\xe7\x00\x65\x00\x6b\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x05\x53\x63\x61\x6c\x65\x07\x00\x00\x00\x0b\x44\x72\x61\ +\x66\x74\x5f\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x01\x1e\x00\x54\ +\x00\x65\x00\x6d\x00\x65\x00\x6c\x00\x20\x00\x62\x00\x69\x00\x72\ +\x00\x20\x00\x6e\x00\x6f\x00\x6b\x00\x74\x00\x61\x00\x79\x00\x61\ +\x00\x20\x00\x67\x00\xf6\x00\x72\x00\x65\x00\x20\x00\x73\x00\x65\ +\x00\xe7\x00\x69\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x6e\x00\x65\ +\x00\x73\x00\x6e\x00\x65\x00\x6c\x00\x65\x00\x72\x00\x69\x00\x20\ +\x00\xf6\x00\x6c\x00\xe7\x00\x65\x00\x6b\x00\x6c\x00\x65\x00\x72\ +\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x69\ +\x00\x6c\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x61\x00\x72\ +\x01\x31\x00\x6c\x00\x61\x00\x62\x00\x69\x00\x6c\x00\x69\x00\x72\ +\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\ +\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x65\x00\x6b\x00\x73\x00\x65\ +\x00\x6e\x00\x20\x00\xfc\x00\x7a\x00\x65\x00\x72\x00\x69\x00\x6e\ +\x00\x64\x00\x65\x00\x20\x00\x73\x01\x31\x00\x6e\x01\x31\x00\x72\ +\x00\x6c\x00\x61\x00\x6e\x00\x64\x01\x31\x00\x72\x01\x31\x00\x6c\ +\x00\x61\x00\x62\x00\x69\x00\x6c\x00\x69\x00\x72\x00\x2c\x00\x20\ +\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x69\x00\x6c\x00\x65\x00\x20\ +\x00\x6b\x00\x6f\x00\x70\x00\x79\x00\x61\x00\x6c\x00\x61\x00\x6e\ +\x00\x61\x00\x62\x00\x69\x00\x6c\x00\x69\x00\x72\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x5c\x53\x63\x61\x6c\x65\x73\x20\x74\x68\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x66\x72\x6f\x6d\x20\x61\x20\x62\x61\x73\x65\x20\x70\x6f\ +\x69\x6e\x74\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\ +\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\ +\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\ +\x70\x79\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x53\x63\x61\ +\x6c\x65\x01\x03\x00\x00\x00\x18\x00\x53\x00\x65\x00\x6c\x00\x65\ +\x00\x63\x00\x74\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x65\x6c\x65\x63\x74\ +\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\ +\x5f\x53\x65\x6c\x65\x63\x74\x47\x72\x6f\x75\x70\x01\x03\x00\x00\ +\x00\x6e\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x73\ +\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x77\x00\x69\x00\x74\ +\x00\x68\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x61\ +\x00\x6d\x00\x65\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x6e\ +\x00\x74\x00\x73\x00\x20\x00\x61\x00\x73\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x53\x65\x6c\x65\x63\x74\ +\x73\x20\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\ +\x74\x68\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x70\x61\x72\x65\ +\x6e\x74\x73\x20\x61\x73\x20\x74\x68\x69\x73\x20\x67\x72\x6f\x75\ +\x70\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\ +\x63\x74\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x6a\x00\x47\x00\ +\x65\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x20\x00\ +\x6f\x00\x6c\x00\x75\x01\x5f\x00\x74\x00\x75\x00\x72\x00\x75\x00\ +\x6c\x00\x6d\x00\x61\x00\x73\x01\x31\x00\x20\x00\x69\x00\xe7\x00\ +\x69\x00\x6e\x00\x20\x00\x62\x00\x69\x00\x72\x00\x20\x00\xe7\x00\ +\x61\x00\x6c\x01\x31\x01\x5f\x00\x6d\x00\x61\x00\x20\x00\x64\x00\ +\xfc\x00\x7a\x00\x6c\x00\x65\x00\x6d\x00\x69\x00\x20\x00\x73\x00\ +\x65\x00\xe7\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2c\x53\x65\x6c\x65\x63\x74\x20\x61\x20\x77\x6f\x72\x6b\x69\x6e\ +\x67\x20\x70\x6c\x61\x6e\x65\x20\x66\x6f\x72\x20\x67\x65\x6f\x6d\ +\x65\x74\x72\x79\x20\x63\x72\x65\x61\x74\x69\x6f\x6e\x07\x00\x00\ +\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x50\x6c\ +\x61\x6e\x65\x01\x03\x00\x00\x00\x16\x00\x44\x00\xfc\x00\x7a\x00\ +\x6c\x00\x65\x00\x6d\x00\x53\x00\x65\x00\xe7\x00\x69\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x65\x6c\x65\x63\x74\x50\ +\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\ +\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x70\ +\x00\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x20\ +\x00\x62\x00\x69\x00\x64\x00\x69\x00\x72\x00\x65\x00\x63\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x6c\x00\x79\x00\x20\ +\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\ +\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x61\x00\x6e\ +\x00\x64\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x43\x6f\x6e\x76\x65\x72\ +\x74\x20\x62\x69\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x61\x6c\x6c\ +\x79\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x44\x72\x61\x66\x74\x20\ +\x61\x6e\x64\x20\x53\x6b\x65\x74\x63\x68\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x61\ +\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\x54\x00\x43\ +\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x53\ +\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x32\x00\x44\x00\x20\ +\x00\x76\x00\x69\x00\x65\x00\x77\x00\x73\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\ +\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x43\x72\x65\x61\ +\x74\x65\x73\x20\x53\x68\x61\x70\x65\x20\x32\x44\x20\x76\x69\x65\ +\x77\x73\x20\x6f\x66\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\ +\x5f\x53\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\x00\x00\ +\x00\x1a\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x32\ +\x00\x44\x00\x20\x00\x76\x00\x69\x00\x65\x00\x77\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x53\x68\x61\x70\x65\x20\x32\x44\x20\x76\ +\x69\x65\x77\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\ +\x61\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\x1a\x00\ +\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x53\x00\x6e\x00\x61\x00\ +\x70\x00\x20\x00\x42\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x53\x68\x6f\x77\x20\x53\x6e\x61\x70\x20\x42\x61\x72\ +\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x6f\x77\x53\ +\x6e\x61\x70\x42\x61\x72\x01\x03\x00\x00\x00\x30\x00\x53\x00\x68\ +\x00\x6f\x00\x77\x00\x73\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\ +\x00\x74\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x74\ +\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x18\x53\x68\x6f\x77\x73\x20\x44\x72\x61\x66\ +\x74\x20\x73\x6e\x61\x70\x20\x74\x6f\x6f\x6c\x62\x61\x72\x07\x00\ +\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x6f\x77\x53\x6e\x61\ +\x70\x42\x61\x72\x01\x03\x00\x00\x00\x56\x00\x42\x00\x69\x00\x72\ +\x00\x20\x00\x61\x00\xe7\x01\x31\x00\x6b\x00\x6c\x00\x61\x00\x6d\ +\x00\x61\x00\x20\x00\x6f\x00\x6c\x00\x75\x01\x5f\x00\x74\x00\x75\ +\x00\x72\x00\x75\x00\x72\x00\x2e\x00\x6b\x00\x69\x00\x6c\x00\x69\ +\x00\x74\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6b\x00\x20\x00\x69\ +\x00\xe7\x00\x69\x00\x6e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x43\x72\x65\x61\x74\x65\ +\x73\x20\x61\x6e\x20\x61\x6e\x6e\x6f\x74\x61\x74\x69\x6f\x6e\x2e\ +\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x07\x00\x00\ +\x00\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\x78\x74\x01\x03\x00\x00\ +\x00\x0a\x00\x4d\x00\x65\x00\x74\x00\x69\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x54\x65\x78\x74\x07\x00\x00\x00\x0a\x44\ +\x72\x61\x66\x74\x5f\x54\x65\x78\x74\x01\x03\x00\x00\x00\x28\x01\ +\x30\x00\x6e\x01\x5f\x00\x61\x00\x20\x00\x6b\x00\x69\x00\x70\x00\ +\x69\x00\x6e\x00\x69\x00\x20\x00\x64\x00\x65\x01\x1f\x00\x69\x01\ +\x5f\x00\x74\x00\x69\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x17\x54\x6f\x67\x67\x6c\x65\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\ +\x69\x6f\x6e\x20\x4d\x6f\x64\x65\x07\x00\x00\x00\x1c\x44\x72\x61\ +\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x73\x74\x72\x75\ +\x63\x74\x69\x6f\x6e\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x58\x00\ +\x53\x00\x6f\x00\x6e\x00\x72\x00\x61\x00\x6b\x00\x69\x00\x20\x00\ +\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x6c\x00\x65\x00\x72\x00\ +\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\x00\x20\x00\x69\x00\x6e\x01\ +\x5f\x00\x61\x00\x20\x00\x6b\x00\x69\x00\x70\x00\x69\x00\x6e\x00\ +\x69\x00\x20\x00\x64\x00\x65\x01\x1f\x00\x69\x01\x5f\x00\x74\x00\ +\x69\x00\x72\x00\x69\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2f\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\x65\x20\x43\x6f\x6e\ +\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x65\x20\x66\ +\x6f\x72\x20\x6e\x65\x78\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\ +\x07\x00\x00\x00\x1c\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\ +\x65\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x4d\x6f\x64\ +\x65\x01\x03\x00\x00\x00\x28\x00\x54\x00\x6f\x00\x67\x00\x67\x00\ +\x6c\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\ +\x6e\x00\x75\x00\x65\x00\x20\x00\x4d\x00\x6f\x00\x64\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x6f\x67\x67\x6c\x65\x20\ +\x63\x6f\x6e\x74\x69\x6e\x75\x65\x20\x4d\x6f\x64\x65\x07\x00\x00\ +\x00\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\ +\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x58\ +\x00\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x73\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x43\x00\x6f\x00\x6e\x00\x74\ +\x00\x69\x00\x6e\x00\x75\x00\x65\x00\x20\x00\x4d\x00\x6f\x00\x64\ +\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x65\ +\x00\x78\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\ +\x00\x6e\x00\x64\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x2c\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\x65\x20\x43\x6f\ +\x6e\x74\x69\x6e\x75\x65\x20\x4d\x6f\x64\x65\x20\x66\x6f\x72\x20\ +\x6e\x65\x78\x74\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x2e\x07\x00\ +\x00\x00\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\ +\x6f\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\ +\x8a\x00\x53\x00\x65\x00\xe7\x00\x69\x00\x6c\x00\x69\x00\x20\x00\ +\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x6c\x00\x65\x00\x72\x00\ +\x2c\x00\x20\x00\x61\x01\x1f\x00\x6b\x00\x61\x00\x66\x00\x65\x00\ +\x73\x00\x20\x00\x76\x00\x65\x00\x20\x00\x64\x00\xfc\x00\x7a\x00\ +\x67\x00\xfc\x00\xe7\x00\x69\x00\x7a\x00\x67\x00\x69\x00\x6c\x00\ +\x65\x00\x72\x00\x20\x00\x61\x00\x72\x00\x61\x00\x73\x01\x31\x00\ +\x6e\x00\x64\x00\x61\x00\x20\x00\x64\x00\x65\x01\x1f\x00\x69\x01\ +\x5f\x00\x69\x00\x6d\x00\x69\x00\x6e\x00\x69\x00\x20\x00\x73\x00\ +\x61\x01\x1f\x00\x6c\x00\x61\x00\x72\x00\x2e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x46\x53\x77\x61\x70\x73\x20\x64\x69\x73\x70\x6c\ +\x61\x79\x20\x6d\x6f\x64\x65\x20\x6f\x66\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\x74\x77\ +\x65\x65\x6e\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\x61\x6e\ +\x64\x20\x66\x6c\x61\x74\x6c\x69\x6e\x65\x73\x07\x00\x00\x00\x17\ +\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x44\x69\x73\x70\ +\x6c\x61\x79\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x36\x00\x47\x00\ +\xf6\x00\x72\x00\xfc\x00\x6e\x00\x74\x00\xfc\x00\x6c\x00\x65\x00\ +\x6d\x00\x65\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x6e\x00\ +\x75\x00\x20\x00\x64\x00\x65\x01\x1f\x00\x69\x01\x5f\x00\x74\x00\ +\x69\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x54\x6f\x67\ +\x67\x6c\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x6d\x6f\x64\x65\ +\x07\x00\x00\x00\x17\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\ +\x65\x44\x69\x73\x70\x6c\x61\x79\x4d\x6f\x64\x65\x01\x03\x00\x00\ +\x00\x16\x00\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x20\ +\x00\x47\x00\x72\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0b\x54\x6f\x67\x67\x6c\x65\x20\x47\x72\x69\x64\x07\x00\x00\ +\x00\x10\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x47\x72\ +\x69\x64\x01\x03\x00\x00\x00\x38\x00\x54\x00\x6f\x00\x67\x00\x67\ +\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x67\x00\x69\ +\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x2f\x00\x6f\x00\x66\x00\x66\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x54\x6f\x67\x67\x6c\x65\ +\x73\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x67\x69\x64\x20\ +\x6f\x6e\x2f\x6f\x66\x66\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\ +\x5f\x54\x6f\x67\x67\x6c\x65\x47\x72\x69\x64\x01\x03\x00\x00\x00\ +\x16\x00\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x20\x00\ +\x73\x00\x6e\x00\x61\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0b\x54\x6f\x67\x67\x6c\x65\x20\x73\x6e\x61\x70\x07\x00\x00\x00\ +\x10\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x53\x6e\x61\ +\x70\x01\x03\x00\x00\x00\x38\x00\x54\x00\x6f\x00\x67\x00\x67\x00\ +\x6c\x00\x65\x00\x73\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\ +\x74\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6f\x00\ +\x6e\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x66\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x54\x6f\x67\x67\x6c\x65\x73\ +\x20\x44\x72\x61\x66\x74\x20\x73\x6e\x61\x70\x20\x6f\x6e\x20\x6f\ +\x72\x20\x6f\x66\x66\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\ +\x54\x6f\x67\x67\x6c\x65\x53\x6e\x61\x70\x01\x03\x00\x00\x00\x0c\ +\x00\x54\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x78\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x54\x72\x69\x6d\x65\x78\x07\x00\x00\x00\ +\x0c\x44\x72\x61\x66\x74\x5f\x54\x72\x69\x6d\x65\x78\x01\x03\x00\ +\x00\x01\x12\x00\x54\x00\x72\x00\x69\x00\x6d\x00\x73\x00\x20\x00\ +\x6f\x00\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\x65\x00\x6e\x00\ +\x64\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\x00\ +\x6f\x00\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\x72\x00\x75\x00\ +\x64\x00\x65\x00\x73\x00\x20\x00\x73\x00\x69\x00\x6e\x00\x67\x00\ +\x6c\x00\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\ +\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x73\x00\ +\x6e\x00\x61\x00\x70\x00\x73\x00\x2c\x00\x20\x00\x53\x00\x48\x00\ +\x49\x00\x46\x00\x54\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\ +\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x20\x00\x74\x00\ +\x6f\x00\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\ +\x74\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ +\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x2c\x00\x20\x00\ +\x41\x00\x4c\x00\x54\x00\x20\x00\x69\x00\x6e\x00\x76\x00\x65\x00\ +\x72\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x89\x54\ +\x72\x69\x6d\x73\x20\x6f\x72\x20\x65\x78\x74\x65\x6e\x64\x73\x20\ +\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x2c\x20\x6f\x72\x20\x65\x78\x74\x72\x75\x64\x65\x73\ +\x20\x73\x69\x6e\x67\x6c\x65\x20\x66\x61\x63\x65\x73\x2e\x20\x43\ +\x54\x52\x4c\x20\x73\x6e\x61\x70\x73\x2c\x20\x53\x48\x49\x46\x54\ +\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x73\x20\x74\x6f\x20\x63\ +\x75\x72\x72\x65\x6e\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\ +\x72\x20\x74\x6f\x20\x6e\x6f\x72\x6d\x61\x6c\x2c\x20\x41\x4c\x54\ +\x20\x69\x6e\x76\x65\x72\x74\x73\x07\x00\x00\x00\x0c\x44\x72\x61\ +\x66\x74\x5f\x54\x72\x69\x6d\x65\x78\x01\x03\x00\x00\x00\x2c\x00\ +\x53\x00\x6f\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x69\x00\x20\x00\x67\x00\x65\x00\x72\x00\ +\x69\x00\x20\x00\x61\x00\x6c\x01\x31\x00\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x11\x55\x6e\x64\x6f\x20\x6c\x61\x73\x74\x20\x73\ +\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\ +\x5f\x55\x6e\x64\x6f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x62\x00\ +\xc7\x00\x69\x00\x7a\x00\x69\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\ +\xe7\x00\x69\x00\x7a\x00\x67\x00\x69\x00\x6e\x00\x69\x00\x6e\x00\ +\x20\x00\x73\x00\x6f\x00\x6e\x00\x20\x00\xe7\x00\x69\x00\x7a\x00\ +\x69\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x67\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x69\x00\x20\x00\ +\x67\x00\x65\x00\x72\x00\x69\x00\x20\x00\x61\x00\x6c\x01\x31\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x55\x6e\x64\x6f\x65\ +\x73\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x64\x72\x61\x77\x6e\ +\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\ +\x6c\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\ +\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x55\x6e\x64\x6f\x4c\ +\x69\x6e\x65\x01\x03\x00\x00\x01\x1e\x00\x53\x00\x65\x00\xe7\x00\ +\x69\x00\x6c\x00\x69\x00\x20\x00\x70\x00\x61\x00\x72\x00\xe7\x00\ +\x61\x00\x6c\x00\x61\x00\x72\x01\x31\x00\x20\x00\x74\x00\x65\x00\ +\x6b\x00\x20\x00\x68\x00\x61\x00\x6c\x00\x65\x00\x20\x00\x67\x00\ +\x65\x00\x74\x00\x69\x00\x72\x00\x69\x00\x72\x00\x2c\x00\x20\x00\ +\x76\x00\x65\x00\x79\x00\x61\x00\x20\x00\x75\x00\xe7\x00\x20\x00\ +\x75\x00\x63\x00\x61\x00\x20\x00\x62\x00\x61\x01\x1f\x00\x6c\x00\ +\x61\x00\x6e\x00\x6d\x01\x31\x01\x5f\x00\x20\x00\x76\x00\x65\x00\ +\x6b\x00\x74\x00\xf6\x00\x72\x00\x6c\x00\x65\x00\x72\x00\x20\x00\ +\x62\x00\x69\x00\x72\x00\x6c\x00\x65\x01\x5f\x00\x74\x00\x69\x00\ +\x72\x00\x69\x00\x70\x00\x20\x00\x69\x00\xe7\x00\x69\x00\x20\x00\ +\x64\x00\x6f\x00\x6c\x00\x64\x00\x75\x00\x72\x00\x75\x00\x6c\x00\ +\x6d\x00\x75\x01\x5f\x00\x20\x00\x62\x00\x69\x00\x72\x00\x20\x00\ +\x79\x00\xfc\x00\x7a\x00\x20\x00\x68\x00\x61\x00\x6c\x00\x69\x00\ +\x6e\x00\x65\x00\x20\x00\x67\x00\x65\x00\x74\x00\x69\x00\x72\x00\ +\x69\x00\x72\x00\x2c\x00\x20\x00\x76\x00\x65\x00\x79\x00\x61\x00\ +\x20\x00\x79\x00\xfc\x00\x7a\x00\x6c\x00\x65\x00\x72\x00\x69\x00\ +\x20\x00\x62\x00\x69\x00\x72\x00\x6c\x00\x65\x01\x5f\x00\x74\x00\ +\x69\x00\x72\x00\x69\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x5d\x4a\x6f\x69\x6e\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\ +\x20\x6f\x6e\x65\x2c\x20\x6f\x72\x20\x63\x6f\x6e\x76\x65\x72\x74\ +\x73\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x73\x20\x74\ +\x6f\x20\x66\x69\x6c\x6c\x65\x64\x20\x66\x61\x63\x65\x73\x2c\x20\ +\x6f\x72\x20\x75\x6e\x69\x74\x65\x20\x66\x61\x63\x65\x73\x07\x00\ +\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x55\x70\x67\x72\x61\x64\x65\ +\x01\x03\x00\x00\x00\x10\x00\x47\x00\xfc\x00\x6e\x00\x63\x00\x65\ +\x00\x6c\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ +\x55\x70\x67\x72\x61\x64\x65\x07\x00\x00\x00\x0d\x44\x72\x61\x66\ +\x74\x5f\x55\x70\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x98\x00\ +\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\ +\x61\x00\x20\x00\x6d\x00\x75\x00\x6c\x00\x74\x00\x69\x00\x70\x00\ +\x6c\x00\x65\x00\x2d\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\ +\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x57\x00\x69\x00\ +\x72\x00\x65\x00\x20\x00\x28\x00\x44\x00\x57\x00\x69\x00\x72\x00\ +\x65\x00\x29\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ +\x20\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\ +\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\ +\x74\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\ +\x72\x00\x61\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x4c\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x6d\x75\x6c\x74\x69\ +\x70\x6c\x65\x2d\x70\x6f\x69\x6e\x74\x20\x44\x72\x61\x66\x74\x57\ +\x69\x72\x65\x20\x28\x44\x57\x69\x72\x65\x29\x2e\x20\x43\x54\x52\ +\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\ +\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\ +\x00\x0a\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x01\x03\x00\x00\ +\x00\x0a\x00\x44\x00\x57\x00\x69\x00\x72\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x05\x44\x57\x69\x72\x65\x07\x00\x00\x00\x0a\ +\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x01\x03\x00\x00\x00\x44\ +\x00\x54\x00\x65\x00\x6c\x00\x20\x00\x76\x00\x65\x00\x20\x00\x42\ +\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x61\ +\x00\x72\x00\x61\x00\x73\x01\x31\x00\x6e\x00\x64\x00\x61\x00\x20\ +\x00\x64\x00\xf6\x00\x6e\x00\xfc\x01\x5f\x00\x74\x00\xfc\x00\x72\ +\x00\xfc\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x43\x6f\ +\x6e\x76\x65\x72\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x57\ +\x69\x72\x65\x20\x61\x6e\x64\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\ +\x00\x00\x00\x13\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x54\x6f\ +\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x1e\x00\x42\x00\ +\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x27\x00\x61\x00\ +\x20\x00\x62\x00\x61\x01\x1f\x00\x6c\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0f\x57\x69\x72\x65\x20\x74\x6f\x20\x42\x53\x70\ +\x6c\x69\x6e\x65\x07\x00\x00\x00\x13\x44\x72\x61\x66\x74\x5f\x57\ +\x69\x72\x65\x54\x6f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\ +\x00\x0e\x00\x41\x00\x6c\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x41\x6c\x74\x20\x6d\x6f\ +\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x41\x00\x6c\x00\x74\x00\ +\x65\x00\x72\x00\x6e\x00\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\ +\x56\x00\x47\x00\x20\x00\x50\x00\x61\x00\x74\x00\x74\x00\x65\x00\ +\x72\x00\x6e\x00\x73\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1f\x41\x6c\x74\x65\x72\x6e\x61\x74\x65\x20\x53\x56\x47\x20\x50\ +\x61\x74\x74\x65\x72\x6e\x73\x20\x6c\x6f\x63\x61\x74\x69\x6f\x6e\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x16\x00\x41\x00\x6c\x00\x77\x00\x61\ +\x00\x79\x00\x73\x00\x20\x00\x73\x00\x68\x00\x6f\x00\x77\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0b\x41\x6c\x77\x61\x79\x73\x20\x73\ +\x68\x6f\x77\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5a\x00\x41\x00\x6c\x00\ +\x77\x00\x61\x00\x79\x00\x73\x00\x20\x00\x73\x00\x6e\x00\x61\x00\ +\x70\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x28\x00\x64\x00\x69\x00\ +\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x73\x00\x6e\x00\ +\x61\x00\x70\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x20\x00\x6b\x00\ +\x65\x00\x79\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x41\ +\x6c\x77\x61\x79\x73\x20\x73\x6e\x61\x70\x20\x74\x6f\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x28\x64\x69\x73\x61\x62\x6c\x65\x20\x73\ +\x6e\x61\x70\x20\x6d\x6f\x64\x20\x6b\x65\x79\x29\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0a\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x41\x72\x69\x61\x6c\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x14\x00\x54\x00\x65\x00\x72\x00\x73\x00\x62\x00\ +\xf6\x00\x6c\x00\xfc\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x35\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x14\x00\x54\x00\x65\x00\x72\x00\x73\x00\x62\ +\x00\xf6\x00\x6c\x00\xfc\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x37\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x14\x00\x54\x00\x65\x00\x72\x00\x73\x00\ +\x62\x00\xf6\x00\x6c\x00\xfc\x00\x20\x00\x39\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x39\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\xae\x00\x45\x01\x1f\x00\x65\x00\x72\ +\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x6e\x00\x6c\x00\x61\x00\x72\ +\x01\x31\x00\x6e\x00\x64\x00\x61\x00\x20\x00\x28\x00\x33\x00\x42\ +\x00\x20\x00\x79\x00\xfc\x00\x7a\x00\x65\x00\x79\x00\x6c\x00\x65\ +\x00\x72\x00\x69\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x29\x00\x20\ +\x00\x69\x00\xe7\x00\x65\x00\x72\x00\x69\x00\x20\x00\x61\x00\x6b\ +\x00\x74\x00\x61\x00\x72\x01\x31\x00\x6c\x00\x6d\x00\x61\x00\x73\ +\x01\x31\x00\x6e\x01\x31\x00\x20\x00\x69\x00\x73\x00\x74\x00\x69\ +\x00\x79\x00\x6f\x00\x72\x00\x73\x00\x61\x00\x6e\x01\x31\x00\x7a\ +\x00\x2c\x00\x20\x00\x62\x00\x75\x00\x6e\x00\x75\x00\x20\x00\x69\ +\x01\x5f\x00\x61\x00\x72\x00\x65\x00\x74\x00\x6c\x00\x65\x00\x79\ +\x00\x69\x00\x6e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3f\ +\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x79\x6f\ +\x75\x20\x77\x61\x6e\x74\x20\x74\x68\x65\x20\x61\x72\x65\x61\x73\ +\x20\x28\x33\x44\x20\x66\x61\x63\x65\x73\x29\x20\x74\x6f\x20\x62\ +\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\x2e\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x7c\x00\x45\x01\x1f\x00\x65\x00\x72\x00\ +\x20\x00\x69\x00\x73\x00\x69\x00\x6d\x00\x6c\x00\x65\x00\x6e\x00\ +\x64\x00\x69\x00\x72\x00\x69\x00\x6c\x00\x6d\x00\x65\x00\x6d\x00\ +\x69\x01\x5f\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x6b\x00\x6c\x00\ +\x61\x00\x72\x01\x31\x00\x20\x00\x69\x00\x73\x00\x74\x00\x69\x00\ +\x79\x00\x6f\x00\x72\x00\x73\x00\x61\x00\x6e\x01\x31\x00\x7a\x00\ +\x2c\x00\x20\x00\x62\x00\x75\x00\x6e\x00\x75\x00\x20\x00\x69\x01\ +\x5f\x00\x61\x00\x72\x00\x65\x00\x74\x00\x6c\x00\x65\x00\x79\x00\ +\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\x43\x68\x65\ +\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x79\x6f\x75\x20\x77\ +\x61\x6e\x74\x20\x74\x68\x65\x20\x6e\x6f\x6e\x2d\x6e\x61\x6d\x65\ +\x64\x20\x62\x6c\x6f\x63\x6b\x73\x20\x28\x62\x65\x67\x69\x6e\x6e\ +\x69\x6e\x67\x20\x77\x69\x74\x68\x20\x61\x20\x2a\x29\x20\x74\x6f\ +\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x44\x00\x61\x00\x69\x00\x72\ +\x00\x65\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\ +\x43\x69\x72\x63\x6c\x65\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\ +\x00\x44\x00\x61\x00\x69\x00\x72\x00\x65\x00\x20\x00\x37\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x37\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x44\x00\x61\x00\x69\x00\x72\ +\x00\x65\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\ +\x43\x69\x72\x63\x6c\x65\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x48\ +\x00\xc7\x00\x69\x00\x7a\x00\x67\x00\x69\x00\x20\x00\x6b\x00\x61\ +\x00\x6c\x01\x31\x00\x6e\x00\x6c\x01\x31\x01\x1f\x01\x31\x00\x6e\ +\x00\x61\x00\x20\x00\x65\x01\x5f\x00\x6c\x00\x65\x01\x5f\x00\x74\ +\x00\x69\x00\x72\x00\x69\x00\x6c\x00\x6d\x00\x69\x01\x5f\x00\x20\ +\x00\x72\x00\x65\x00\x6e\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x19\x43\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x65\x64\x20\x74\ +\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x26\x00\x52\x00\x65\x00\x6e\x00\x6b\x00\x20\x00\x65\x01\ +\x5f\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x20\x00\x64\x00\x6f\x00\ +\x73\x00\x79\x00\x61\x00\x73\x01\x31\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x12\x43\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\ +\x20\x66\x69\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x43\x00\ +\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\ +\x20\x00\x6d\x00\x6f\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0d\x43\x6f\x6e\x73\x74\x72\x61\x69\x6e\x20\x6d\x6f\x64\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0c\x01\x30\x00\x6e\x01\x5f\x00\x61\x00\x61\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x6f\x6e\x73\ +\x74\x72\x75\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\ +\x01\x30\x00\x6e\x01\x5f\x00\x61\x00\x20\x00\x72\x00\x65\x00\x6e\ +\x00\x67\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x43\x6f\ +\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x63\x6f\x6c\x6f\x72\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x59\x00\x61\x00\x70\x01\x31\ +\x00\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\x20\x00\x61\x00\x64\ +\x01\x31\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\x6f\x6e\x73\ +\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x67\x72\x6f\x75\x70\x20\x6e\ +\x61\x6d\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x43\x00\x72\x00\ +\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\x6b\x00\x65\x00\ +\x74\x00\x63\x00\x68\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x43\x72\x65\x61\x74\x65\x20\x53\x6b\x65\x74\x63\x68\ +\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\ +\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x63\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x19\x43\x72\x65\x61\x74\x65\x20\x70\x61\x72\ +\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x2c\x00\x44\x00\x58\x00\x46\x00\x20\x00\ +\x62\x00\x69\x00\xe7\x00\x69\x00\x6d\x00\x69\x00\x20\x00\x73\x00\ +\x65\x00\xe7\x00\x65\x00\x6e\x00\x65\x00\x6b\x00\x6c\x00\x65\x00\ +\x72\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x44\x58\x46\ +\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x1e\x00\x76\x00\x61\x00\x72\x00\x73\x00\ +\x61\x00\x79\x01\x31\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\x72\x00\ +\x65\x00\x6e\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x44\ +\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x5a\x00\x59\x00\x61\x00\x7a\x01\x31\x00\x6c\x00\x61\ +\x00\x72\x00\x20\x00\x76\x00\x65\x00\x20\x00\x62\x00\x6f\x00\x79\ +\x00\x75\x00\x74\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x69\x00\xe7\ +\x00\x69\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x72\x00\x73\x00\x61\ +\x00\x79\x01\x31\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\x79\x00\xfc\ +\x00\x6b\x00\x73\x00\x65\x00\x6b\x00\x6c\x00\x69\x00\x6b\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x27\x44\x65\x66\x61\x75\x6c\x74\x20\ +\x68\x65\x69\x67\x68\x74\x20\x66\x6f\x72\x20\x74\x65\x78\x74\x73\ +\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x32\x00\x56\x00\x61\x00\x72\x00\x73\x00\ +\x61\x00\x79\x01\x31\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\xc7\x00\ +\x69\x00\x7a\x00\x67\x00\x69\x00\x6b\x00\x61\x00\x6c\x01\x31\x00\ +\x6e\x00\x6c\x01\x31\x01\x1f\x01\x31\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x11\x44\x65\x66\x61\x75\x6c\x74\x20\x6c\x69\x6e\x65\x77\ +\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x00\x56\x00\x61\ +\x00\x72\x00\x73\x00\x61\x00\x79\x01\x31\x00\x6c\x00\x61\x00\x6e\ +\x00\x20\x01\x5f\x00\x61\x00\x62\x00\x6c\x00\x6f\x00\x6e\x00\x20\ +\x00\x73\x00\x61\x00\x79\x00\x66\x00\x61\x00\x73\x01\x31\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x16\x44\x65\x66\x61\x75\x6c\x74\x20\ +\x74\x65\x6d\x70\x6c\x61\x74\x65\x20\x73\x68\x65\x65\x74\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x34\x00\x56\x00\x61\x00\x72\x00\x73\x00\x61\ +\x00\x79\x01\x31\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\x6d\x00\x65\ +\x00\x74\x00\x69\x00\x6e\x00\x20\x00\x79\x00\x61\x00\x7a\x01\x31\ +\x00\x20\x00\x74\x00\x69\x00\x70\x00\x69\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x11\x44\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x78\x74\ +\x20\x66\x6f\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\x00\x56\x00\ +\x61\x00\x72\x00\x73\x00\x61\x00\x79\x01\x31\x00\x6c\x00\x61\x00\ +\x6e\x00\x20\x00\x79\x00\x61\x00\x7a\x01\x31\x00\x20\x00\x79\x00\ +\xfc\x00\x6b\x00\x73\x00\x65\x00\x6b\x00\x6c\x00\x69\x01\x1f\x00\ +\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x44\x65\x66\x61\x75\ +\x6c\x74\x20\x74\x65\x78\x74\x20\x68\x65\x69\x67\x68\x74\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x34\x00\x56\x00\x61\x00\x72\x00\x73\x00\x61\ +\x00\x79\x01\x31\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\xe7\x00\x61\ +\x00\x6c\x01\x31\x01\x5f\x00\x6d\x00\x61\x00\x20\x00\x64\x00\xfc\ +\x00\x7a\x00\x6c\x00\x65\x00\x6d\x00\x69\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x15\x44\x65\x66\x61\x75\x6c\x74\x20\x77\x6f\x72\x6b\ +\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x3e\x00\x42\x00\x6f\x00\x79\x00\x75\x00\x74\x00\x6c\x00\x61\x00\ +\x6e\x00\x64\x01\x31\x00\x72\x00\x6d\x00\x61\x00\x20\x00\x76\x00\ +\x65\x00\x20\x00\x4c\x00\x69\x00\x64\x00\x65\x00\x72\x00\x20\x00\ +\x6f\x00\x6b\x00\x20\x00\x73\x00\x74\x00\x69\x00\x6c\x00\x69\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x44\x69\x6d\x65\x6e\x73\x69\ +\x6f\x6e\x73\x20\x26\x20\x4c\x65\x61\x64\x65\x72\x20\x61\x72\x72\ +\x6f\x77\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\ +\x00\x44\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\ +\x00\x6e\x00\x73\x00\x20\x00\x70\x00\x72\x00\x65\x00\x63\x00\x69\ +\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6c\x00\x65\x00\x76\ +\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x44\x69\ +\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x70\x72\x65\x63\x69\x73\x69\ +\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\ +\x00\x4e\x00\x6f\x00\x6b\x00\x74\x00\x61\x00\x20\x00\x35\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\x35\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0e\x00\x4e\x00\x6f\x00\x6b\x00\x74\x00\x61\x00\ +\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\ +\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x4e\x00\x6f\x00\x6b\ +\x00\x74\x00\x61\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x44\x6f\x74\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\ +\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x69\x00\x6e\x00\ +\x74\x00\x65\x00\x72\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\ +\x6d\x00\x6f\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x14\x44\x72\x61\x66\x74\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\ +\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x48\x00\x45\x00\ +\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x33\x00\x44\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\ +\x20\x00\x61\x00\x73\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\ +\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6d\x00\x65\x00\x73\x00\ +\x68\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x45\ +\x78\x70\x6f\x72\x74\x20\x33\x44\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x20\x61\x73\x20\x70\x6f\x6c\x79\x66\x61\x63\x65\x20\x6d\x65\x73\ +\x68\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x45\x00\x78\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x53\x00\x74\x00\x79\x00\ +\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x45\x78\x70\ +\x6f\x72\x74\x20\x53\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x44\x00\x56\x00\x61\x00\x72\x00\x73\x00\x61\x00\x79\x01\x31\x00\ +\x6c\x00\x61\x00\x6e\x00\x20\x00\x6f\x00\x6c\x00\x61\x00\x72\x00\ +\x61\x00\x6b\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\ +\x6c\x00\x65\x00\x72\x00\x69\x00\x20\x00\x64\x00\x6f\x00\x6c\x00\ +\x64\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x46\ +\x69\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x79\x20\x64\ +\x65\x66\x61\x75\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x47\ +\x00\x65\x00\x6e\x00\x65\x00\x6c\x00\x20\x00\xc7\x00\x69\x00\x7a\ +\x00\x69\x00\x6d\x00\x20\x00\x41\x00\x79\x00\x61\x00\x72\x00\x6c\ +\x00\x61\x00\x72\x01\x31\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\ +\x47\x65\x6e\x65\x72\x61\x6c\x20\x44\x72\x61\x66\x74\x20\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x47\ +\x00\x65\x00\x6e\x00\x65\x00\x6c\x00\x20\x00\x61\x00\x79\x00\x61\ +\x00\x72\x00\x6c\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\ +\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x47\x00\x65\x00\x6e\ +\x00\x65\x00\x6c\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x79\x00\x61\ +\x00\x6c\x00\x61\x00\x6d\x00\x61\x00\x20\x00\x6b\x00\x69\x00\x70\ +\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x6c\x6f\x62\ +\x61\x6c\x20\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x18\x00\x47\x00\x72\x00\x69\x00\x64\x00\x20\x00\x73\ +\x00\x70\x00\x61\x00\x63\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x47\x72\x69\x64\x20\x73\x70\x61\x63\x69\ +\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x47\x00\x72\x00\x6f\ +\x00\x75\x00\x70\x00\x20\x00\x6c\x00\x61\x00\x79\x00\x65\x00\x72\ +\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x62\ +\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x18\x47\x72\x6f\x75\x70\x20\x6c\x61\x79\x65\x72\x73\ +\x20\x69\x6e\x74\x6f\x20\x62\x6c\x6f\x63\x6b\x73\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x01\x1a\x00\x48\x00\x65\x00\x72\x00\x65\x00\x20\x00\x79\ +\x00\x6f\x00\x75\x00\x20\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x73\ +\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x79\x00\x20\x00\x61\ +\x00\x20\x00\x64\x00\x69\x00\x72\x00\x65\x00\x63\x00\x74\x00\x6f\ +\x00\x72\x00\x79\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\ +\x00\x69\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x53\x00\x56\ +\x00\x47\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x73\x00\x20\ +\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x69\ +\x00\x6e\x00\x67\x00\x20\x00\x3c\x00\x70\x00\x61\x00\x74\x00\x74\ +\x00\x65\x00\x72\x00\x6e\x00\x3e\x00\x20\x00\x64\x00\x65\x00\x66\ +\x00\x69\x00\x6e\x00\x69\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\ +\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x63\x00\x61\ +\x00\x6e\x00\x20\x00\x62\x00\x65\x00\x20\x00\x61\x00\x64\x00\x64\ +\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\ +\x00\x65\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\ +\x00\x72\x00\x64\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\ +\x00\x20\x00\x68\x00\x61\x00\x74\x00\x63\x00\x68\x00\x20\x00\x70\ +\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x8d\x48\x65\x72\x65\x20\x79\x6f\x75\ +\x20\x63\x61\x6e\x20\x73\x70\x65\x63\x69\x66\x79\x20\x61\x20\x64\ +\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x63\x6f\x6e\x74\x61\x69\x6e\ +\x69\x6e\x67\x20\x53\x56\x47\x20\x66\x69\x6c\x65\x73\x20\x63\x6f\ +\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x3c\x70\x61\x74\x74\x65\x72\ +\x6e\x3e\x20\x64\x65\x66\x69\x6e\x69\x74\x69\x6f\x6e\x73\x20\x74\ +\x68\x61\x74\x20\x63\x61\x6e\x20\x62\x65\x20\x61\x64\x64\x65\x64\ +\x20\x74\x6f\x20\x74\x68\x65\x20\x73\x74\x61\x6e\x64\x61\x72\x64\ +\x20\x44\x72\x61\x66\x74\x20\x68\x61\x74\x63\x68\x20\x70\x61\x74\ +\x74\x65\x72\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x48\x00\ +\x69\x00\x64\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\ +\x74\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x74\x00\ +\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x00\x20\x00\x61\x00\ +\x66\x00\x74\x00\x65\x00\x72\x00\x20\x00\x75\x00\x73\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x21\x48\x69\x64\x65\x20\x44\x72\ +\x61\x66\x74\x20\x73\x6e\x61\x70\x20\x74\x6f\x6f\x6c\x62\x61\x72\ +\x20\x61\x66\x74\x65\x72\x20\x75\x73\x65\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x28\x00\x48\x00\x69\x00\x64\x00\x65\x00\x20\x00\x44\x00\x72\ +\x00\x61\x00\x66\x00\x74\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\ +\x00\x62\x00\x65\x00\x6e\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x14\x48\x69\x64\x65\x20\x44\x72\x61\x66\x74\x20\x77\ +\x6f\x72\x6b\x62\x65\x6e\x63\x68\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x56\ +\x00\x49\x00\x66\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\ +\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x61\x00\x20\x00\x67\x00\x72\ +\x00\x69\x00\x64\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\ +\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\x20\x00\x77\ +\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x64\x00\x72\x00\x61\x00\x77\ +\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\ +\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x20\x67\x72\ +\x69\x64\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x77\ +\x68\x65\x6e\x20\x64\x72\x61\x77\x69\x6e\x67\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x01\x02\x00\x42\x00\x75\x00\x20\x00\x6f\x00\x6e\x00\x61\x00\ +\x79\x00\x20\x00\x6b\x00\x75\x00\x74\x00\x75\x00\x73\x00\x75\x00\ +\x20\x00\x69\x01\x5f\x00\x61\x00\x72\x00\x65\x00\x74\x00\x6c\x00\ +\x69\x00\x79\x00\x73\x00\x65\x00\x2c\x00\x20\x00\x66\x00\x72\x00\ +\x65\x00\x65\x00\x63\x00\x61\x00\x64\x00\x20\x00\xe7\x00\x61\x00\ +\x6b\x01\x31\x01\x5f\x00\x61\x00\x6e\x00\x20\x00\x6e\x00\x65\x00\ +\x73\x00\x6e\x00\x65\x00\x6c\x00\x65\x00\x72\x00\x69\x00\x20\x00\ +\x74\x00\x65\x00\x6c\x00\x20\x00\x6f\x00\x6c\x00\x61\x00\x72\x00\ +\x61\x00\x6b\x00\x20\x00\x62\x00\x69\x00\x72\x00\x6c\x00\x65\x01\ +\x5f\x00\x74\x00\x69\x00\x72\x00\x6d\x00\x65\x00\x79\x00\x69\x00\ +\x20\x00\x64\x00\x65\x00\x6e\x00\x65\x00\x79\x00\x65\x00\x63\x00\ +\x65\x00\x6b\x00\x2e\x00\x20\x00\x44\x00\x69\x00\x6b\x00\x6b\x00\ +\x61\x00\x74\x00\x20\x00\x65\x00\x64\x00\x69\x00\x6e\x00\x2c\x00\ +\x20\x00\x62\x00\x75\x00\x20\x00\x62\x00\x69\x00\x72\x00\x61\x00\ +\x7a\x00\x20\x00\x7a\x00\x61\x00\x6d\x00\x61\x00\x6e\x00\x20\x00\ +\x61\x00\x6c\x00\x61\x00\x62\x00\x69\x00\x6c\x00\x69\x00\x72\x00\ +\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x65\x49\ +\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x66\x72\x65\x65\x63\ +\x61\x64\x20\x77\x69\x6c\x6c\x20\x74\x72\x79\x20\x74\x6f\x20\x6a\ +\x6f\x69\x6e\x74\x20\x63\x6f\x69\x6e\x63\x69\x64\x65\x6e\x74\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\x77\x69\x72\ +\x65\x73\x2e\x20\x42\x65\x77\x61\x72\x65\x2c\x20\x74\x68\x69\x73\ +\x20\x63\x61\x6e\x20\x74\x61\x6b\x65\x20\x61\x20\x77\x68\x69\x6c\ +\x65\x2e\x2e\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xf2\x00\x49\x00\x66\ +\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\ +\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\x00\x72\ +\x00\x61\x00\x66\x00\x74\x00\x20\x00\x67\x00\x72\x00\x69\x00\x64\ +\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\x6c\ +\x00\x77\x00\x61\x00\x79\x00\x73\x00\x20\x00\x62\x00\x65\x00\x20\ +\x00\x76\x00\x69\x00\x73\x00\x69\x00\x62\x00\x6c\x00\x65\x00\x20\ +\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x77\ +\x00\x6f\x00\x72\x00\x6b\x00\x62\x00\x65\x00\x6e\x00\x63\x00\x68\ +\x00\x20\x00\x69\x00\x73\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\ +\x00\x76\x00\x65\x00\x2e\x00\x20\x00\x4f\x00\x74\x00\x68\x00\x65\ +\x00\x72\x00\x77\x00\x69\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x6e\ +\x00\x6c\x00\x79\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\ +\x00\x75\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x79\x49\x66\x20\x63\x68\x65\x63\x6b\ +\x65\x64\x2c\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x67\x72\ +\x69\x64\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x62\ +\x65\x20\x76\x69\x73\x69\x62\x6c\x65\x20\x77\x68\x65\x6e\x20\x74\ +\x68\x65\x20\x44\x72\x61\x66\x74\x20\x77\x6f\x72\x6b\x62\x65\x6e\ +\x63\x68\x20\x69\x73\x20\x61\x63\x74\x69\x76\x65\x2e\x20\x4f\x74\ +\x68\x65\x72\x77\x69\x73\x65\x20\x6f\x6e\x6c\x79\x20\x77\x68\x65\ +\x6e\x20\x75\x73\x69\x6e\x67\x20\x61\x20\x63\x6f\x6d\x6d\x61\x6e\ +\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x88\x00\x49\x00\x66\x00\x20\x00\ +\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x53\x00\x6e\x00\x61\x00\ +\x70\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\ +\x72\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\ +\x65\x00\x20\x00\x73\x00\x68\x00\x6f\x00\x77\x00\x6e\x00\x20\x00\ +\x77\x00\x68\x00\x65\x00\x6e\x00\x65\x00\x76\x00\x65\x00\x72\x00\ +\x20\x00\x79\x00\x6f\x00\x75\x00\x20\x00\x75\x00\x73\x00\x65\x00\ +\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\ +\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x44\x49\x66\x20\x63\x68\ +\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x53\x6e\x61\x70\x20\ +\x74\x6f\x6f\x6c\x62\x61\x72\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\ +\x73\x68\x6f\x77\x6e\x20\x77\x68\x65\x6e\x65\x76\x65\x72\x20\x79\ +\x6f\x75\x20\x75\x73\x65\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\xa2\x00\x49\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\ +\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ +\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\ +\x61\x00\x69\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x66\x00\ +\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x65\x00\x78\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x00\x65\x00\x64\x00\x20\x00\x61\x00\x73\x00\ +\x20\x00\x33\x00\x64\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\ +\x66\x00\x61\x00\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x51\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\ +\x65\x63\x6b\x65\x64\x2c\x20\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x66\x61\ +\x63\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x65\x78\x70\x6f\ +\x72\x74\x65\x64\x20\x61\x73\x20\x33\x64\x20\x70\x6f\x6c\x79\x66\ +\x61\x63\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x2c\x00\x45\x01\x1f\ +\x00\x65\x00\x72\x00\x20\x00\x62\x00\x75\x00\x20\x00\x69\x01\x5f\ +\x00\x61\x00\x72\x00\x65\x00\x74\x00\x6c\x00\x69\x00\x20\x00\x69\ +\x00\x73\x00\x65\x00\x2c\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x79\ +\x00\x61\x00\x6c\x00\x61\x00\x6d\x00\x61\x00\x20\x00\x6b\x00\x69\ +\x00\x70\x00\x69\x00\x2c\x00\x20\x00\x75\x00\xe7\x00\x62\x00\x69\ +\x00\x72\x00\x69\x00\x6d\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x61\ +\x00\x72\x00\x61\x00\x73\x01\x31\x00\x6e\x00\x64\x00\x61\x00\x20\ +\x00\x6b\x00\x75\x00\x6c\x00\x6c\x00\x61\x00\x6e\x01\x31\x00\x6c\ +\x00\x61\x00\x62\x00\x69\x00\x6c\x00\x69\x00\x72\x00\x20\x00\x6f\ +\x00\x6c\x00\x61\x00\x63\x00\x61\x00\x6b\x00\x74\x01\x31\x00\x72\ +\x00\x2c\x00\x20\x00\x61\x00\x6b\x00\x73\x00\x69\x00\x20\x00\x64\ +\x00\x75\x00\x72\x00\x75\x00\x6d\x00\x64\x00\x61\x00\x20\x00\x75\ +\x00\xe7\x00\x62\x00\x69\x00\x72\x00\x69\x00\x6d\x00\x6c\x00\x65\ +\x00\x72\x00\x20\x00\x68\x00\x65\x00\x72\x00\x20\x00\x7a\x00\x61\ +\x00\x6d\x00\x61\x00\x6e\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x79\ +\x00\x61\x00\x6c\x00\x61\x00\x6e\x00\x61\x00\x6d\x00\x61\x00\x7a\ +\x00\x20\x00\x6b\x00\x69\x00\x70\x00\x74\x00\x65\x00\x20\x00\x62\ +\x00\x61\x01\x5f\x00\x6c\x00\x61\x00\x79\x00\x61\x00\x63\x00\x61\ +\x00\x6b\x00\x74\x01\x31\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x6f\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\ +\x63\x6b\x65\x64\x2c\x20\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x20\ +\x77\x69\x6c\x6c\x20\x62\x65\x20\x6b\x65\x70\x74\x20\x61\x63\x72\ +\x6f\x73\x73\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x2c\x20\x6f\x74\x68\ +\x65\x72\x77\x69\x73\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x20\ +\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x73\x74\x61\x72\ +\x74\x20\x69\x6e\x20\x6e\x6f\x2d\x63\x6f\x70\x79\x20\x6d\x6f\x64\ +\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x7e\x00\x49\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x68\x00\x61\x00\x74\x00\x63\x00\x68\x00\x65\x00\x73\x00\ +\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\ +\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\ +\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\ +\x73\x00\x69\x00\x6d\x00\x70\x00\x6c\x00\x65\x00\x20\x00\x77\x00\ +\x69\x00\x72\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x3f\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x68\x61\x74\x63\x68\x65\x73\x20\x77\x69\x6c\ +\x6c\x20\x62\x65\x20\x63\x6f\x6e\x76\x65\x72\x74\x65\x64\x20\x69\ +\x6e\x74\x6f\x20\x73\x69\x6d\x70\x6c\x65\x20\x77\x69\x72\x65\x73\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\xf6\x00\x49\x00\x66\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\ +\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\ +\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x64\ +\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x73\x00\x20\x00\x77\ +\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x67\x00\x65\x00\x74\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\ +\x00\x64\x00\x61\x00\x72\x00\x64\x00\x20\x00\x44\x00\x72\x00\x61\ +\x00\x66\x00\x74\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\ +\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x2c\x00\x20\x00\x69\x00\x6e\ +\x00\x73\x00\x74\x00\x65\x00\x61\x00\x64\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x69\x00\x7a\ +\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x79\x00\x20\x00\x68\ +\x00\x61\x00\x76\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x44\x00\x58\x00\x46\x00\x20\x00\x64\ +\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x7b\x49\x66\x20\x74\x68\x69\x73\x20\ +\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x69\x6d\x70\x6f\ +\x72\x74\x65\x64\x20\x74\x65\x78\x74\x73\x20\x77\x69\x6c\x6c\x20\ +\x67\x65\x74\x20\x74\x68\x65\x20\x73\x74\x61\x6e\x64\x61\x72\x64\ +\x20\x44\x72\x61\x66\x74\x20\x74\x65\x78\x74\x20\x73\x69\x7a\x65\ +\x2c\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x74\x68\x65\ +\x20\x73\x69\x7a\x65\x20\x74\x68\x65\x79\x20\x68\x61\x76\x65\x20\ +\x69\x6e\x20\x74\x68\x65\x20\x44\x58\x46\x20\x64\x6f\x63\x75\x6d\ +\x65\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xfc\x00\x45\x01\x1f\x00\ +\x65\x00\x72\x00\x20\x00\x62\x00\x75\x00\x20\x00\x69\x01\x5f\x00\ +\x61\x00\x72\x00\x65\x00\x74\x00\x6c\x00\x69\x00\x20\x00\x69\x00\ +\x73\x00\x65\x00\x2c\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\ +\x65\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x76\x00\x61\x00\x72\x00\ +\x73\x00\x61\x00\x79\x01\x31\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\ +\x6f\x00\x6c\x00\x61\x00\x72\x00\x61\x00\x6b\x00\x20\x00\x64\x00\ +\x6f\x00\x6c\x00\x64\x00\x75\x00\x72\x00\x75\x00\x6c\x00\x6d\x00\ +\x75\x01\x5f\x00\x20\x01\x5f\x00\x65\x00\x6b\x00\x69\x00\x6c\x00\ +\x64\x00\x65\x00\x20\x00\x67\x00\xf6\x00\x72\x00\xfc\x00\x6e\x00\ +\x65\x00\x63\x00\x65\x00\x6b\x00\x6c\x00\x65\x00\x72\x00\x2e\x00\ +\x20\x00\x41\x00\x6b\x00\x73\x00\x69\x00\x20\x00\x64\x00\x75\x00\ +\x72\x00\x75\x00\x6d\x00\x64\x00\x61\x00\x2c\x00\x20\x00\xe7\x00\ +\x65\x00\x72\x00\xe7\x00\x65\x00\x76\x00\x65\x00\x20\x01\x5f\x00\ +\x65\x00\x6b\x00\x6c\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x20\x00\ +\x67\x00\xf6\x00\x72\x00\xfc\x00\x6e\x00\x65\x00\x63\x00\x65\x00\ +\x6b\x00\x6c\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x66\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\ +\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x66\x69\x6c\x6c\ +\x65\x64\x20\x61\x73\x20\x64\x65\x66\x61\x75\x6c\x74\x2e\x20\x4f\ +\x74\x68\x65\x72\x77\x69\x73\x65\x2c\x20\x74\x68\x65\x79\x20\x77\ +\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x77\x69\ +\x72\x65\x66\x72\x61\x6d\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xd0\x00\ +\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\ +\x65\x00\x64\x00\x2c\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\ +\x70\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x6f\x00\x63\x00\ +\x63\x00\x75\x00\x72\x00\x20\x00\x61\x00\x67\x00\x61\x00\x69\x00\ +\x6e\x00\x73\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x73\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\ +\x20\x00\x6d\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x74\x00\x68\x00\ +\x61\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x69\x00\ +\x6e\x00\x64\x00\x69\x00\x63\x00\x61\x00\x74\x00\x65\x00\x64\x00\ +\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x65\x00\x64\x00\x67\x00\x65\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x68\x49\x66\x20\x74\x68\x69\x73\ +\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x73\x6e\x61\ +\x70\x70\x69\x6e\x67\x20\x77\x69\x6c\x6c\x20\x6e\x6f\x74\x20\x6f\ +\x63\x63\x75\x72\x20\x61\x67\x61\x69\x6e\x73\x74\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x20\x77\x69\x74\x68\x20\x6d\x6f\x72\x65\x20\x74\ +\x68\x61\x6e\x20\x74\x68\x65\x20\x69\x6e\x64\x69\x63\x61\x74\x65\ +\x64\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x65\x64\x67\x65\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\xf2\x00\x49\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\ +\x66\x00\x74\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x62\x00\ +\x65\x00\x6e\x00\x63\x00\x68\x00\x20\x00\x77\x00\x6f\x00\x6e\x00\ +\x27\x00\x74\x00\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\x00\ +\x72\x00\x2e\x00\x20\x00\x55\x00\x73\x00\x65\x00\x66\x00\x75\x00\ +\x6c\x00\x20\x00\x73\x00\x69\x00\x6e\x00\x63\x00\x65\x00\x20\x00\ +\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\ +\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x00\x20\x00\x61\x00\ +\x72\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x73\x00\x6f\x00\x20\x00\ +\x69\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x41\x00\ +\x72\x00\x63\x00\x68\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\ +\x62\x00\x65\x00\x6e\x00\x63\x00\x68\x00\x2e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x79\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\ +\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x44\x72\x61\ +\x66\x74\x20\x77\x6f\x72\x6b\x62\x65\x6e\x63\x68\x20\x77\x6f\x6e\ +\x27\x74\x20\x61\x70\x70\x65\x61\x72\x2e\x20\x55\x73\x65\x66\x75\ +\x6c\x20\x73\x69\x6e\x63\x65\x20\x61\x6c\x6c\x20\x6f\x66\x20\x74\ +\x68\x65\x20\x44\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x20\x61\ +\x72\x65\x20\x61\x6c\x73\x6f\x20\x69\x6e\x20\x74\x68\x65\x20\x41\ +\x72\x63\x68\x20\x77\x6f\x72\x6b\x62\x65\x6e\x63\x68\x2e\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\xea\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\ +\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x77\ +\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\ +\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x68\x00\x61\ +\x00\x76\x00\x65\x00\x20\x00\x61\x00\x20\x00\x77\x00\x69\x00\x64\ +\x00\x74\x00\x68\x00\x20\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\ +\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x79\ +\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\ +\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x65\ +\x00\x64\x00\x20\x00\x61\x00\x73\x00\x20\x00\x63\x00\x6c\x00\x6f\ +\x00\x73\x00\x65\x00\x64\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\ +\x00\x73\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x72\x00\x72\x00\x65\ +\x00\x63\x00\x74\x00\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x75\x49\x66\x20\x74\x68\x69\ +\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x77\x68\ +\x65\x6e\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x73\x20\x68\x61\x76\ +\x65\x20\x61\x20\x77\x69\x64\x74\x68\x20\x64\x65\x66\x69\x6e\x65\ +\x64\x2c\x20\x74\x68\x65\x79\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\ +\x72\x65\x6e\x64\x65\x72\x65\x64\x20\x61\x73\x20\x63\x6c\x6f\x73\ +\x65\x64\x20\x77\x69\x72\x65\x73\x20\x77\x69\x74\x68\x20\x74\x68\ +\x65\x20\x63\x6f\x72\x72\x65\x63\x74\x20\x77\x69\x64\x74\x68\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x01\x3c\x00\x45\x01\x1f\x00\x65\x00\x72\x00\ +\x20\x00\x62\x00\x75\x00\x20\x00\x69\x01\x5f\x00\x61\x00\x72\x00\ +\x65\x00\x74\x00\x6c\x00\x69\x00\x20\x00\x69\x00\x73\x00\x65\x00\ +\x2c\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x2c\x00\x20\x00\xe7\x00\ +\x69\x00\x7a\x00\x69\x00\x6d\x00\x20\x00\x73\x01\x31\x00\x72\x00\ +\x61\x00\x73\x01\x31\x00\x6e\x00\x64\x00\x61\x00\x20\x00\x68\x00\ +\x65\x00\x72\x00\x20\x00\x7a\x00\x61\x00\x6d\x00\x61\x00\x6e\x00\ +\x20\x00\x76\x00\x61\x00\x72\x00\x20\x00\x6f\x00\x6c\x00\x61\x00\ +\x6e\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x79\x00\ +\x65\x00\x20\x00\x6b\x00\x69\x00\x6c\x00\x69\x00\x74\x00\x6c\x00\ +\x65\x00\x6e\x00\x65\x00\x63\x00\x65\x00\x6b\x00\x73\x00\x69\x00\ +\x6e\x00\x69\x00\x7a\x00\x2e\x00\x20\x00\x41\x00\x6b\x00\x73\x00\ +\x69\x00\x20\x00\x64\x00\x75\x00\x72\x00\x75\x00\x6d\x00\x64\x00\ +\x61\x00\x2c\x00\x20\x00\x73\x00\x61\x00\x64\x00\x65\x00\x63\x00\ +\x65\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x27\x00\x65\x00\ +\x20\x00\x62\x00\x61\x00\x73\x00\x74\x01\x31\x01\x1f\x01\x31\x00\ +\x6e\x01\x31\x00\x7a\x00\x64\x00\x61\x00\x20\x00\x6b\x00\x69\x00\ +\x6c\x00\x69\x00\x74\x00\x6c\x00\x65\x00\x6e\x00\x6d\x00\x65\x00\ +\x20\x00\x67\x00\x65\x00\x72\x00\xe7\x00\x65\x00\x6b\x00\x6c\x00\ +\x65\x01\x5f\x00\x65\x00\x63\x00\x65\x00\x6b\x00\x74\x00\x69\x00\ +\x72\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x81\x49\x66\x20\ +\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x79\x6f\x75\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\ +\x20\x73\x6e\x61\x70\x20\x74\x6f\x20\x65\x78\x69\x73\x74\x69\x6e\ +\x67\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x68\x69\x6c\x65\x20\ +\x64\x72\x61\x77\x69\x6e\x67\x2e\x20\x49\x66\x20\x6e\x6f\x74\x2c\ +\x20\x79\x6f\x75\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x73\x6e\x61\ +\x70\x70\x69\x6e\x67\x20\x6f\x6e\x6c\x79\x20\x77\x68\x65\x6e\x20\ +\x70\x72\x65\x73\x73\x69\x6e\x67\x20\x43\x54\x52\x4c\x2e\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x24\x00\x2a\x00\x62\x00\x6c\x00\x6f\x00\x6b\ +\x00\x6c\x00\x61\x00\x72\x01\x31\x00\x20\x00\x69\x00\xe7\x00\x65\ +\x00\x72\x00\x69\x00\x20\x00\x61\x00\x6c\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0e\x49\x6d\x70\x6f\x72\x74\x20\x2a\x62\x6c\x6f\x63\ +\x6b\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\x00\x4f\x00\x43\x00\x41\ +\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x6e\x00\x6c\x00\x61\x00\x72\ +\x01\x31\x00\x6e\x01\x31\x00\x20\x00\x69\x00\xe7\x00\x65\x00\x72\ +\x00\x69\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x61\x00\x72\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x10\x49\x6d\x70\x6f\x72\x74\x20\x4f\ +\x43\x41\x20\x61\x72\x65\x61\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\ +\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x68\ +\x00\x61\x00\x74\x00\x63\x00\x68\x00\x20\x00\x62\x00\x6f\x00\x75\ +\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x69\x00\x65\x00\x73\x00\x20\ +\x00\x61\x00\x73\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x49\x6d\x70\x6f\x72\x74\ +\x20\x68\x61\x74\x63\x68\x20\x62\x6f\x75\x6e\x64\x61\x72\x69\x65\ +\x73\x20\x61\x73\x20\x77\x69\x72\x65\x73\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x3e\x00\x50\x00\x6c\x00\x61\x00\x6e\x01\x31\x00\x2f\x00\x54\ +\x00\x61\x00\x73\x00\x6c\x00\x61\x00\x6b\x00\x20\x00\xe7\x00\x69\ +\x00\x7a\x00\x69\x00\x6d\x00\x69\x00\x20\x00\x69\x00\xe7\x00\x65\ +\x00\x72\x00\x69\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x61\x00\x72\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x49\x6d\x70\x6f\x72\x74\ +\x20\x6c\x61\x79\x6f\x75\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\ +\x00\xc7\x00\x69\x00\x7a\x00\x69\x00\x6d\x00\x20\x01\x5f\x00\x65\ +\x00\x6b\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x20\x00\x69\x00\xe7\ +\x00\x65\x00\x72\x00\x69\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x61\ +\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x49\x6d\x70\x6f\ +\x72\x74\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4e\ +\x00\x4d\x00\x65\x00\x74\x00\x69\x00\x6e\x00\x6c\x00\x65\x00\x72\ +\x00\x69\x00\x20\x00\x76\x00\x65\x00\x20\x00\x62\x00\x6f\x00\x79\ +\x00\x75\x00\x74\x00\x6c\x00\x61\x00\x6e\x00\x64\x01\x31\x00\x72\ +\x00\x6d\x00\x61\x00\x6c\x00\x61\x00\x72\x01\x31\x00\x20\x00\x69\ +\x00\xe7\x00\x65\x00\x72\x00\x69\x00\x20\x00\x61\x00\x6c\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1b\x49\x6d\x70\x6f\x72\x74\x20\x74\ +\x65\x78\x74\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\ +\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x01\x30\x00\xe7\x00\ +\x65\x00\x72\x00\x69\x00\x20\x00\x61\x00\x6c\x00\x2f\x00\x44\x01\ +\x31\x01\x5f\x00\x61\x00\x72\x01\x31\x00\x20\x00\x76\x00\x65\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x49\x6d\x70\x6f\x72\ +\x74\x2f\x45\x78\x70\x6f\x72\x74\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\ +\x00\x49\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\x6c\ +\x00\x20\x00\x70\x00\x72\x00\x65\x00\x63\x00\x69\x00\x73\x00\x69\ +\x00\x6f\x00\x6e\x00\x20\x00\x6c\x00\x65\x00\x76\x00\x65\x00\x6c\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x49\x6e\x74\x65\x72\x6e\ +\x61\x6c\x20\x70\x72\x65\x63\x69\x73\x69\x6f\x6e\x20\x6c\x65\x76\ +\x65\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x47\x00\x65\x00\x6f\ +\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x79\x00\x69\x00\x20\ +\x00\x62\x00\x69\x00\x72\x00\x6c\x00\x65\x01\x5f\x00\x74\x00\x69\ +\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4a\x6f\x69\x6e\ +\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x26\x00\x4c\x00\x65\x00\x66\x00\x74\x00\x20\x00\x28\x00\x49\x00\ +\x53\x00\x4f\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\ +\x61\x00\x72\x00\x64\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x13\x4c\x65\x66\x74\x20\x28\x49\x53\x4f\x20\x73\x74\x61\x6e\x64\ +\x61\x72\x64\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x4d\x00\x61\ +\x00\x69\x00\x6e\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x73\ +\x00\x20\x00\x65\x00\x76\x00\x65\x00\x72\x00\x79\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x10\x4d\x61\x69\x6e\x20\x6c\x69\x6e\x65\x73\ +\x20\x65\x76\x65\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa2\x00\x4d\ +\x00\x61\x00\x69\x00\x6e\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x73\ +\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\ +\x00\x20\x00\x64\x00\x72\x00\x61\x00\x77\x00\x6e\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x63\x00\x6b\x00\x65\x00\x72\x00\x2e\x00\x20\ +\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x79\x00\x20\ +\x00\x68\x00\x65\x00\x72\x00\x65\x00\x20\x00\x68\x00\x6f\x00\x77\ +\x00\x20\x00\x6d\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x71\ +\x00\x75\x00\x61\x00\x72\x00\x65\x00\x73\x00\x20\x00\x62\x00\x65\ +\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x61\ +\x00\x69\x00\x6e\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x2e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x4d\x61\x69\x6e\x6c\x69\ +\x6e\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x72\x61\x77\ +\x6e\x20\x74\x68\x69\x63\x6b\x65\x72\x2e\x20\x53\x70\x65\x63\x69\ +\x66\x79\x20\x68\x65\x72\x65\x20\x68\x6f\x77\x20\x6d\x61\x6e\x79\ +\x20\x73\x71\x75\x61\x72\x65\x73\x20\x62\x65\x74\x77\x65\x65\x6e\ +\x20\x6d\x61\x69\x6e\x6c\x69\x6e\x65\x73\x2e\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x2a\x00\x45\x00\x6e\x00\x20\x00\x62\x00\xfc\x00\x79\x00\ +\xfc\x00\x6b\x00\x20\x00\x44\x00\x69\x00\x6c\x00\x69\x00\x6d\x00\ +\x20\x00\x4b\x00\x65\x00\x73\x00\x69\x00\x74\x00\x69\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x12\x4d\x61\x78\x20\x53\x70\x6c\x69\x6e\ +\x65\x20\x53\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x2e\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\ +\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x65\x00\x64\x00\x67\x00\x65\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x17\x4d\x61\x78\x69\x6d\x75\x6d\ +\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x65\x64\x67\x65\x73\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x6a\x00\x4d\x00\x61\x00\x78\x00\x69\ +\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\ +\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x65\x00\x64\ +\x00\x67\x00\x65\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\ +\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\ +\x00\x65\x00\x72\x00\x65\x00\x64\x00\x20\x00\x66\x00\x6f\x00\x72\ +\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x69\x00\x6e\ +\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x4d\x61\x78\x69\ +\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x65\x64\ +\x67\x65\x73\x20\x74\x6f\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\ +\x65\x72\x65\x64\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x70\x69\x6e\ +\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x48\x00\x69\x00\xe7\x00\ +\x62\x00\x69\x00\x72\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x48\x00\ +\x69\x00\xe7\x00\x62\x00\x69\x00\x72\x00\x69\x00\x20\x00\x28\x00\ +\x65\x00\x6e\x00\x20\x00\x68\x01\x31\x00\x7a\x00\x6c\x01\x31\x00\ +\x73\x01\x31\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x4e\ +\x6f\x6e\x65\x20\x28\x66\x61\x73\x74\x65\x73\x74\x29\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\xfe\x00\x4e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\ +\x6c\x00\x6c\x00\x79\x00\x2c\x00\x20\x00\x61\x00\x66\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x79\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x73\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x63\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x73\x00\x20\x00\x67\x00\ +\x65\x00\x74\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x65\x00\x64\x00\x2e\x00\x20\x00\x49\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x70\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\ +\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\ +\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\ +\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\ +\x64\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x61\x00\ +\x64\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7f\x4e\x6f\x72\ +\x6d\x61\x6c\x6c\x79\x2c\x20\x61\x66\x74\x65\x72\x20\x63\x6f\x70\ +\x79\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x73\x2c\x20\x74\x68\ +\x65\x20\x63\x6f\x70\x69\x65\x73\x20\x67\x65\x74\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x2e\x20\x49\x66\x20\x74\x68\x69\x73\x20\x6f\ +\x70\x74\x69\x6f\x6e\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\ +\x2c\x20\x74\x68\x65\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x69\x6e\x73\x74\x65\x61\x64\x2e\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x2a\x00\x4f\x00\x43\x00\x41\x00\x20\x00\x62\x00\x69\ +\x00\xe7\x00\x69\x00\x6d\x00\x20\x00\x73\x00\x65\x00\xe7\x00\x65\ +\x00\x6e\x00\x65\x00\x6b\x00\x6c\x00\x65\x00\x72\x00\x69\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x12\x4f\x43\x41\x20\x66\x6f\x72\x6d\ +\x61\x74\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x46\x00\xd6\x00\x7a\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x6b\ +\x00\x20\x00\x76\x00\x65\x00\x20\x00\xe7\x00\x69\x00\x7a\x00\x67\ +\x00\x69\x00\x20\x00\x6b\x00\x61\x00\x6c\x01\x31\x00\x6e\x00\x6c\ +\x01\x31\x01\x1f\x01\x31\x00\x6e\x01\x31\x00\x20\x00\x6b\x00\x75\ +\x00\x6c\x00\x6c\x00\x61\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1c\x4f\x72\x69\x67\x69\x6e\x61\x6c\x20\x63\x6f\x6c\x6f\x72\ +\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x1a\x00\x52\x00\x61\x00\x77\x00\x20\x00\x28\ +\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x43\x00\x41\x00\x4d\x00\x29\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x52\x61\x77\x20\x28\x66\ +\x6f\x72\x20\x43\x41\x4d\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\x00\ +\x52\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x70\x00\ +\x6f\x00\x6c\x00\x79\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x73\x00\ +\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x77\x00\x69\x00\ +\x64\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x52\ +\x65\x6e\x64\x65\x72\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x73\x20\ +\x77\x69\x74\x68\x20\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x06\x00\x53\x00\x61\x01\x1f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x52\x69\x67\x68\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\ +\x53\x00\x56\x00\x47\x00\x20\x00\x62\x00\x69\x00\xe7\x00\x69\x00\ +\x6d\x00\x20\x00\x73\x00\x65\x00\xe7\x00\x65\x00\x6e\x00\x65\x00\ +\x6b\x00\x6c\x00\x65\x00\x72\x00\x69\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x12\x53\x56\x47\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\ +\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x8a\x00\x4f\x00\ +\x74\x00\x75\x00\x72\x00\x75\x00\x6d\x00\x6c\x00\x61\x00\x72\x00\ +\x20\x00\x61\x00\x72\x00\x61\x00\x73\x01\x31\x00\x20\x00\x6b\x00\ +\x75\x00\x6c\x00\x6c\x00\x61\x00\x6e\x01\x31\x00\x6d\x00\x20\x00\ +\x69\x00\xe7\x00\x69\x00\x6e\x00\x20\x00\x6d\x00\x65\x00\x76\x00\ +\x63\x00\x75\x00\x74\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x67\x00\ +\x69\x00\x20\x00\x76\x00\x65\x00\x20\x00\xe7\x00\x69\x00\x7a\x00\ +\x67\x00\x69\x00\x20\x00\x6b\x00\x61\x00\x6c\x01\x31\x00\x6e\x00\ +\x6c\x01\x31\x01\x1f\x01\x31\x00\x6e\x01\x31\x00\x20\x00\x73\x00\ +\x61\x00\x6b\x00\x6c\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x30\x53\x61\x76\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x63\x6f\ +\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\ +\x68\x20\x61\x63\x72\x6f\x73\x73\x20\x73\x65\x73\x73\x69\x6f\x6e\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x53\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\ +\x20\x00\x61\x00\x66\x00\x74\x00\x65\x00\x72\x00\x20\x00\x63\x00\ +\x6f\x00\x70\x00\x79\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x21\x53\x65\x6c\x65\x63\x74\x20\x62\x61\x73\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x66\x74\x65\x72\x20\x63\ +\x6f\x70\x79\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x53\ +\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\ +\x00\x74\x00\x20\x00\x53\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x74\ +\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x17\x53\x68\x6f\x77\x20\x44\x72\x61\x66\x74\ +\x20\x53\x6e\x61\x70\x20\x74\x6f\x6f\x6c\x62\x61\x72\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x34\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\ +\x57\x00\x6f\x00\x72\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x50\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x72\x00\ +\x61\x00\x63\x00\x6b\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1a\x53\x68\x6f\x77\x20\x57\x6f\x72\x6b\x69\x6e\x67\x20\ +\x50\x6c\x61\x6e\x65\x20\x74\x72\x61\x63\x6b\x65\x72\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0c\x00\x42\x00\xf6\x00\x6c\x00\xfc\x00\x20\x00\ +\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\ +\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x42\x00\xf6\x00\x6c\ +\x00\xfc\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ +\x53\x6c\x61\x73\x68\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\ +\x42\x00\xf6\x00\x6c\x00\xfc\x00\x20\x00\x39\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\x20\x39\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x12\x00\x53\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x72\ +\x00\x65\x00\x6e\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\ +\x53\x6e\x61\x70\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x18\x00\x53\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6d\x00\x61\ +\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x53\x6e\x61\x70\x20\x6d\x61\x78\x69\x6d\x75\x6d\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x10\x00\x53\x00\x6e\x00\x61\x00\x70\ +\x00\x20\x00\x6d\x00\x6f\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x08\x53\x6e\x61\x70\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x14\x00\x53\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x72\x00\x61\ +\x00\x6e\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\ +\x53\x6e\x61\x70\x20\x72\x61\x6e\x67\x65\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x66\x00\x53\x00\x74\x00\x79\x00\x6c\x00\x65\x00\x20\x00\x6f\ +\x00\x66\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x66\x00\x69\ +\x00\x6c\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x77\x00\x72\ +\x00\x69\x00\x74\x00\x65\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\ +\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x69\ +\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x53\x00\x6b\x00\x65\ +\x00\x74\x00\x63\x00\x68\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x33\x53\x74\x79\x6c\x65\x20\x6f\x66\x20\x53\x56\x47\x20\x66\ +\x69\x6c\x65\x20\x74\x6f\x20\x77\x72\x69\x74\x65\x20\x77\x68\x65\ +\x6e\x20\x65\x78\x70\x6f\x72\x74\x69\x6e\x67\x20\x61\x20\x53\x6b\ +\x65\x74\x63\x68\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x54\x00\ +\x61\x00\x73\x00\x6b\x00\x76\x00\x69\x00\x65\x00\x77\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x54\x61\x73\x6b\x76\x69\x65\x77\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x3a\x00\x54\x00\x68\x00\x65\x00\x20\x00\ +\x43\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\ +\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\ +\x69\x00\x66\x00\x69\x00\x65\x00\x72\x00\x20\x00\x6b\x00\x65\x00\ +\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x54\x68\x65\x20\x43\ +\x6f\x6e\x73\x74\x72\x61\x69\x6e\x69\x6e\x67\x20\x6d\x6f\x64\x69\ +\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\ +\x00\x54\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x74\x00\x20\ +\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x72\ +\x00\x20\x00\x6b\x00\x65\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x14\x54\x68\x65\x20\x61\x6c\x74\x20\x6d\x6f\x64\x69\x66\x69\ +\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x8a\x00\x64\ +\x00\x78\x00\x66\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x6b\x00\x6c\ +\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x69\x00\x20\x00\xe7\x00\x69\ +\x00\x7a\x00\x67\x00\x69\x00\x20\x00\x6b\x00\x61\x00\x6c\x01\x31\ +\x00\x6e\x00\x6c\x01\x31\x00\x6b\x00\x6c\x00\x61\x00\x72\x01\x31\ +\x00\x6e\x00\x61\x00\x20\x00\xe7\x00\x65\x00\x76\x00\x69\x00\x72\ +\x00\x6d\x00\x65\x00\x6b\x00\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\ +\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x6b\x00\x20\x00\x65\x01\x5f\ +\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x73\ +\x00\x79\x00\x61\x00\x73\x01\x31\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x41\x54\x68\x65\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\ +\x69\x6e\x67\x20\x66\x69\x6c\x65\x20\x66\x6f\x72\x20\x74\x72\x61\ +\x6e\x73\x6c\x61\x74\x69\x6e\x67\x20\x64\x78\x66\x20\x63\x6f\x6c\ +\x6f\x72\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\ +\x74\x68\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x7a\x00\x59\x00\x65\x00\ +\x6e\x00\x69\x00\x20\x00\x62\x00\x69\x00\x72\x00\x20\x00\xe7\x00\ +\x69\x00\x7a\x00\x69\x00\x6d\x00\x20\x00\x73\x00\x61\x00\x79\x00\ +\x66\x00\x61\x00\x73\x01\x31\x00\x20\x00\x6f\x00\x6c\x00\x75\x01\ +\x5f\x00\x74\x00\x75\x00\x72\x00\x75\x00\x72\x00\x6b\x00\x65\x00\ +\x6e\x00\x20\x00\x76\x00\x61\x00\x72\x00\x73\x00\x61\x00\x79\x01\ +\x31\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\x74\x00\x61\x00\x73\x00\ +\x6c\x00\x61\x01\x1f\x01\x31\x00\x20\x00\x6b\x00\x75\x00\x6c\x00\ +\x6c\x00\x61\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3d\x54\ +\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x6d\x70\x6c\ +\x61\x74\x65\x20\x74\x6f\x20\x75\x73\x65\x20\x77\x68\x65\x6e\x20\ +\x63\x72\x65\x61\x74\x69\x6e\x67\x20\x61\x20\x6e\x65\x77\x20\x64\ +\x72\x61\x77\x69\x6e\x67\x20\x73\x68\x65\x65\x74\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x90\x00\x44\x00\x61\x00\x68\x00\x69\x00\x6c\x00\x69\ +\x00\x20\x00\x6b\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x69\x00\x6e\ +\x00\x61\x00\x74\x00\x20\x00\x69\x01\x5f\x00\x6c\x00\x65\x00\x6d\ +\x00\x6c\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x20\ +\x00\x6f\x00\x6e\x00\x64\x00\x61\x00\x6c\x01\x31\x00\x6b\x00\x6c\ +\x00\x61\x00\x72\x01\x31\x00\x6e\x00\x20\x00\x73\x00\x61\x00\x79\ +\x01\x31\x00\x73\x01\x31\x00\x20\x00\x28\x00\xd6\x00\x72\x00\x6e\ +\x00\x65\x01\x1f\x00\x69\x00\x6e\x00\x20\x00\x33\x00\x20\x00\x69\ +\x00\xe7\x00\x69\x00\x6e\x00\x20\x00\x30\x00\x2e\x00\x30\x00\x30\ +\x00\x31\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x54\x68\ +\x65\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x64\x65\x63\x69\ +\x6d\x61\x6c\x73\x20\x69\x6e\x20\x69\x6e\x74\x65\x72\x6e\x61\x6c\ +\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x73\x20\x6f\x70\x65\ +\x72\x61\x74\x69\x6f\x6e\x73\x20\x28\x66\x6f\x72\x20\x65\x78\x2e\ +\x20\x33\x20\x3d\x20\x30\x2e\x30\x30\x31\x29\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x9c\x00\x54\x00\x68\x00\x65\x00\x20\x00\x72\x00\x61\x00\ +\x64\x00\x69\x00\x75\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x70\x00\x65\x00\ +\x63\x00\x69\x00\x61\x00\x6c\x00\x20\x00\x70\x00\x6f\x00\x69\x00\ +\x6e\x00\x74\x00\x73\x00\x2e\x00\x20\x00\x53\x00\x65\x00\x74\x00\ +\x20\x00\x74\x00\x6f\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x73\x00\ +\x74\x00\x61\x00\x6e\x00\x63\x00\x65\x00\x20\x00\x28\x00\x69\x00\ +\x6e\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\x65\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x4e\x54\x68\x65\x20\x72\x61\x64\ +\x69\x75\x73\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\ +\x20\x74\x6f\x20\x73\x70\x65\x63\x69\x61\x6c\x20\x70\x6f\x69\x6e\ +\x74\x73\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\x30\x20\x66\x6f\x72\ +\x20\x6e\x6f\x20\x64\x69\x73\x74\x61\x6e\x63\x65\x20\x28\x69\x6e\ +\x66\x69\x6e\x69\x74\x65\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\ +\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\ +\x72\x00\x20\x00\x6b\x00\x65\x00\x79\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x15\x54\x68\x65\x20\x73\x6e\x61\x70\x20\x6d\x6f\x64\x69\ +\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\ +\x00\x54\x00\x68\x00\x65\x00\x20\x00\x73\x00\x70\x00\x61\x00\x63\ +\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\ +\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x61\x00\x63\x00\x68\ +\x00\x20\x00\x67\x00\x72\x00\x69\x00\x64\x00\x20\x00\x6c\x00\x69\ +\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x54\x68\ +\x65\x20\x73\x70\x61\x63\x69\x6e\x67\x20\x62\x65\x74\x77\x65\x65\ +\x6e\x20\x65\x61\x63\x68\x20\x67\x72\x69\x64\x20\x6c\x69\x6e\x65\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x01\x9e\x00\x54\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x55\x00\x49\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\ +\x00\x69\x00\x6e\x00\x20\x00\x77\x00\x68\x00\x69\x00\x63\x00\x68\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\ +\x00\x66\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x6c\ +\x00\x65\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x77\ +\x00\x6f\x00\x72\x00\x6b\x00\x3a\x00\x20\x00\x54\x00\x6f\x00\x6f\ +\x00\x6c\x00\x62\x00\x61\x00\x72\x00\x20\x00\x6d\x00\x6f\x00\x64\ +\x00\x65\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x70\ +\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x6c\ +\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x73\ +\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x20\ +\x00\x69\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x70\ +\x00\x61\x00\x72\x00\x61\x00\x74\x00\x65\x00\x20\x00\x74\x00\x6f\ +\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x00\x2c\x00\x20\x00\x77\ +\x00\x68\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x74\x00\x61\x00\x73\ +\x00\x6b\x00\x62\x00\x61\x00\x72\x00\x20\x00\x6d\x00\x6f\x00\x64\ +\x00\x65\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x75\ +\x00\x73\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\ +\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x20\x00\x54\ +\x00\x61\x00\x73\x00\x6b\x00\x76\x00\x69\x00\x65\x00\x77\x00\x20\ +\x00\x73\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x20\x00\x66\ +\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\ +\x00\x74\x00\x73\x00\x20\x00\x75\x00\x73\x00\x65\x00\x72\x00\x20\ +\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x61\x00\x63\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\xcf\ +\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x55\x49\x20\x6d\ +\x6f\x64\x65\x20\x69\x6e\x20\x77\x68\x69\x63\x68\x20\x74\x68\x65\ +\x20\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\x75\x6c\x65\x20\x77\x69\ +\x6c\x6c\x20\x77\x6f\x72\x6b\x3a\x20\x54\x6f\x6f\x6c\x62\x61\x72\ +\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x70\x6c\x61\x63\x65\ +\x20\x61\x6c\x6c\x20\x44\x72\x61\x66\x74\x20\x73\x65\x74\x74\x69\ +\x6e\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x65\x70\x61\x72\x61\x74\ +\x65\x20\x74\x6f\x6f\x6c\x62\x61\x72\x2c\x20\x77\x68\x69\x6c\x65\ +\x20\x74\x61\x73\x6b\x62\x61\x72\x20\x6d\x6f\x64\x65\x20\x77\x69\ +\x6c\x6c\x20\x75\x73\x65\x20\x74\x68\x65\x20\x46\x72\x65\x65\x43\ +\x41\x44\x20\x54\x61\x73\x6b\x76\x69\x65\x77\x20\x73\x79\x73\x74\ +\x65\x6d\x20\x66\x6f\x72\x20\x61\x6c\x6c\x20\x69\x74\x73\x20\x75\ +\x73\x65\x72\x20\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x6f\x6e\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x72\x00\x42\x00\x75\x00\x2c\x00\x20\x00\ +\x69\x00\x6e\x01\x5f\x00\x61\x00\x20\x00\x6b\x00\x69\x00\x70\x00\ +\x69\x00\x6e\x00\x64\x00\x65\x00\x20\x00\xe7\x00\x69\x00\x7a\x00\ +\x69\x00\x6e\x00\x65\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\ +\x65\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x69\x00\xe7\x00\x69\x00\ +\x6e\x00\x20\x00\x76\x00\x61\x00\x72\x00\x73\x00\x61\x00\x79\x01\ +\x31\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\x72\x00\x65\x00\x6e\x00\ +\x6b\x00\x74\x00\x69\x00\x72\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x4d\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\ +\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\x69\x6e\x67\x20\x64\ +\x72\x61\x77\x6e\x20\x77\x68\x69\x6c\x65\x20\x69\x6e\x20\x63\x6f\ +\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x6d\x6f\x64\x65\x2e\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x02\x0c\x00\x42\x00\x75\x00\x2c\x00\x20\ +\x00\x6d\x00\x65\x00\x76\x00\x63\x00\x75\x00\x74\x00\x20\x00\x74\ +\x00\x61\x00\x73\x00\x6c\x00\x61\x00\x6b\x00\x20\x00\x6d\x00\x65\ +\x00\x74\x00\x69\x00\x6e\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x76\ +\x00\x65\x00\x20\x00\x62\x00\x6f\x00\x79\x00\x75\x00\x74\x00\x6c\ +\x00\x61\x00\x72\x00\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\x00\x20\ +\x00\x76\x00\x61\x00\x72\x00\x73\x00\x61\x00\x79\x01\x31\x00\x6c\ +\x00\x61\x00\x6e\x00\x20\x00\x79\x00\x61\x00\x7a\x01\x31\x00\x20\ +\x00\x74\x00\x69\x00\x70\x00\x69\x00\x20\x00\x61\x00\x64\x01\x31\ +\x00\x64\x01\x31\x00\x72\x00\x2e\x00\x0a\x00\x42\x00\x75\x00\x20\ +\x00\x64\x00\x65\x01\x1f\x00\x65\x00\x72\x00\x2c\x00\x20\x00\x22\ +\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x22\x00\x2c\x00\x20\ +\x00\x76\x00\x61\x00\x72\x00\x73\x00\x61\x00\x79\x01\x31\x00\x6c\ +\x00\x61\x00\x6e\x00\x20\x00\x73\x00\x74\x00\x69\x00\x6c\x00\x6c\ +\x00\x65\x00\x72\x00\x20\x00\x22\x00\x73\x00\x61\x00\x6e\x00\x73\ +\x00\x22\x00\x2c\x00\x20\x00\x22\x00\x73\x00\x65\x00\x72\x00\x69\ +\x00\x66\x00\x22\x00\x20\x00\x76\x00\x65\x00\x79\x00\x61\x00\x20\ +\x00\x22\x00\x6d\x00\x6f\x00\x6e\x00\x6f\x00\x22\x00\x2c\x00\x20\ +\x00\x76\x00\x65\x00\x79\x00\x61\x00\x20\x00\x61\x00\x69\x00\x6c\ +\x00\x65\x00\x20\x00\x61\x00\x64\x01\x31\x00\x20\x00\x6f\x00\x6c\ +\x00\x61\x00\x72\x00\x61\x00\x6b\x00\x20\x00\x22\x00\x41\x00\x72\ +\x00\x69\x00\x61\x00\x6c\x00\x2c\x00\x48\x00\x65\x00\x6c\x00\x76\ +\x00\x65\x00\x74\x00\x69\x00\x63\x00\x61\x00\x2c\x00\x73\x00\x61\ +\x00\x6e\x00\x73\x00\x22\x00\x2c\x00\x20\x00\x76\x00\x65\x00\x79\ +\x00\x61\x00\x20\x00\x73\x00\x74\x00\x69\x00\x6c\x00\x20\x00\x69\ +\x00\x6c\x00\x65\x00\x20\x00\x68\x00\x65\x00\x72\x00\x68\x00\x61\ +\x00\x6e\x00\x67\x00\x69\x00\x20\x00\x62\x00\x69\x00\x72\x00\x20\ +\x00\x61\x00\x64\x00\x20\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\ +\x00\x6c\x00\x3a\x00\x42\x00\x6f\x00\x6c\x00\x64\x00\x22\x00\x20\ +\x00\x67\x00\x69\x00\x62\x00\x69\x00\x20\x00\x79\x00\x61\x00\x7a\ +\x01\x31\x00\x20\x00\x74\x00\x69\x00\x70\x00\x69\x00\x20\x00\x64\ +\x00\x65\x01\x1f\x00\x65\x00\x72\x00\x6c\x00\x65\x00\x72\x00\x69\ +\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x62\x00\x69\x00\x6c\x00\x69\ +\x00\x72\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\xf2\x54\x68\ +\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\ +\x74\x20\x66\x6f\x6e\x74\x20\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\ +\x61\x6c\x6c\x20\x44\x72\x61\x66\x74\x20\x74\x65\x78\x74\x73\x20\ +\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x2e\x0a\ +\x49\x74\x20\x63\x61\x6e\x20\x62\x65\x20\x61\x20\x66\x6f\x6e\x74\ +\x20\x6e\x61\x6d\x65\x20\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\ +\x72\x69\x61\x6c\x22\x2c\x20\x61\x20\x64\x65\x66\x61\x75\x6c\x74\ +\x20\x73\x74\x79\x6c\x65\x20\x73\x75\x63\x68\x20\x61\x73\x20\x22\ +\x73\x61\x6e\x73\x22\x2c\x20\x22\x73\x65\x72\x69\x66\x22\x0a\x6f\ +\x72\x20\x22\x6d\x6f\x6e\x6f\x22\x2c\x20\x6f\x72\x20\x61\x20\x66\ +\x61\x6d\x69\x6c\x79\x20\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\ +\x72\x69\x61\x6c\x2c\x48\x65\x6c\x76\x65\x74\x69\x63\x61\x2c\x73\ +\x61\x6e\x73\x22\x20\x6f\x72\x20\x61\x20\x6e\x61\x6d\x65\x20\x77\ +\x69\x74\x68\x20\x61\x20\x73\x74\x79\x6c\x65\x0a\x73\x75\x63\x68\ +\x20\x61\x73\x20\x22\x41\x72\x69\x61\x6c\x3a\x42\x6f\x6c\x64\x22\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x60\x00\x42\x00\x75\x00\x2c\x00\x20\ +\x00\x69\x00\x6e\x01\x5f\x00\x61\x00\x20\x00\x67\x00\x65\x00\x6f\ +\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x73\x00\x69\x00\x20\ +\x00\x69\x00\xe7\x00\x69\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x72\ +\x00\x73\x00\x61\x00\x79\x01\x31\x00\x6c\x00\x61\x00\x6e\x00\x20\ +\x00\x67\x00\x72\x00\x75\x00\x70\x00\x20\x00\x61\x00\x64\x01\x31\ +\x00\x64\x01\x31\x00\x72\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x38\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\ +\x66\x61\x75\x6c\x74\x20\x67\x72\x6f\x75\x70\x20\x6e\x61\x6d\x65\ +\x20\x66\x6f\x72\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\ +\x6e\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x84\x00\x42\x00\x75\x00\x2c\x00\x20\x00\x53\x00\x56\x00\x47\ +\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x6b\x00\x6c\x00\x69\x00\x20\ +\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x73\x00\x69\x00\x6e\ +\x00\x69\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\ +\x00\x44\x00\x27\x00\x65\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x61\ +\x00\x72\x00\x6d\x00\x61\x00\x6b\x00\x20\x00\x69\x00\xe7\x00\x69\ +\x00\x6e\x00\x20\x00\x73\x00\x65\x00\xe7\x00\x69\x00\x6c\x00\x69\ +\x00\x20\x00\x79\x00\xf6\x00\x6e\x00\x74\x00\x65\x00\x6d\x00\x64\ +\x00\x69\x00\x72\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x47\ +\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x65\x74\x68\ +\x6f\x64\x20\x63\x68\x6f\x6f\x73\x65\x64\x20\x66\x6f\x72\x20\x69\ +\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\x53\x56\x47\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x63\x6f\x6c\x6f\x72\x20\x69\x6e\x74\x6f\x20\x46\ +\x72\x65\x65\x43\x41\x44\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\xd4\x00\ +\x42\x00\x75\x00\x2c\x00\x20\x00\x44\x00\x58\x00\x46\x00\x20\x00\ +\x72\x00\x65\x00\x6e\x00\x6b\x00\x6c\x00\x69\x00\x20\x00\x6e\x00\ +\x65\x00\x73\x00\x6e\x00\x65\x00\x73\x00\x69\x00\x6e\x00\x69\x00\ +\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\ +\x27\x00\x65\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x61\x00\x72\x01\ +\x31\x00\x72\x00\x6b\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x65\x00\ +\x79\x00\x61\x00\x20\x00\x64\x00\xf6\x00\x6e\x00\xfc\x01\x5f\x00\ +\x74\x00\xfc\x00\x72\x00\xfc\x00\x72\x00\x6b\x00\x65\x00\x6e\x00\ +\x20\x00\x6b\x00\x75\x00\x6c\x00\x6c\x00\x61\x00\x6e\x01\x31\x00\ +\x6c\x00\x61\x00\x6e\x00\x20\x00\x79\x00\xf6\x00\x6e\x00\x74\x00\ +\x65\x00\x6d\x00\x64\x00\x69\x00\x72\x00\x2e\x00\x20\x00\x45\x01\ +\x1f\x00\x65\x00\x72\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x6b\x00\ +\x20\x00\x65\x01\x5f\x00\x6c\x00\x65\x01\x5f\x00\x74\x00\x69\x00\ +\x72\x00\x69\x00\x6c\x00\x6d\x00\x65\x00\x73\x00\x69\x00\x20\x00\ +\x73\x00\x65\x00\xe7\x00\x69\x00\x6c\x00\x69\x00\x79\x00\x73\x00\ +\x65\x00\x2c\x00\x20\x00\x52\x00\x65\x00\x6e\x00\x6b\x00\x6c\x00\ +\x65\x00\x72\x00\x69\x00\x20\x00\xe7\x00\x69\x00\x7a\x00\x67\x00\ +\x69\x00\x20\x00\x6b\x00\x61\x00\x6c\x01\x31\x00\x6e\x00\x6c\x01\ +\x31\x01\x1f\x01\x31\x00\x6e\x00\x61\x00\x20\x00\xe7\x00\x65\x00\ +\x76\x00\x69\x00\x72\x00\x65\x00\x63\x00\x65\x00\x6b\x00\x20\x00\ +\x64\x00\xf6\x00\x6e\x00\xfc\x01\x5f\x00\xfc\x00\x6d\x00\x20\x00\ +\x74\x00\x61\x00\x62\x00\x6c\x00\x6f\x00\x73\x00\x75\x00\x20\x00\ +\x69\x00\xe7\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x62\x00\ +\x69\x00\x72\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x6b\x00\x20\x00\ +\x65\x01\x5f\x00\x6c\x00\x65\x01\x5f\x00\x74\x00\x69\x00\x72\x00\ +\x6d\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x73\x00\x79\x00\x61\x00\ +\x73\x01\x31\x00\x20\x00\x73\x00\x65\x00\xe7\x00\x6d\x00\x65\x00\ +\x6e\x00\x69\x00\x7a\x00\x20\x00\x67\x00\x65\x00\x72\x00\x65\x00\ +\x6b\x00\x6d\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x64\x00\x69\x00\ +\x72\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\xe3\x54\x68\x69\ +\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\ +\x63\x68\x6f\x6f\x73\x65\x64\x20\x66\x6f\x72\x20\x69\x6d\x70\x6f\ +\x72\x74\x69\x6e\x67\x20\x6f\x72\x20\x74\x72\x61\x6e\x73\x6c\x61\ +\x74\x69\x6e\x67\x20\x44\x58\x46\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x63\x6f\x6c\x6f\x72\x20\x69\x6e\x74\x6f\x20\x46\x72\x65\x65\x43\ +\x41\x44\x2e\x20\x0a\x49\x66\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\ +\x70\x70\x69\x6e\x67\x20\x69\x73\x20\x63\x68\x6f\x6f\x73\x65\x64\ +\x2c\x20\x79\x6f\x75\x20\x6d\x75\x73\x74\x20\x63\x68\x6f\x6f\x73\ +\x65\x20\x61\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\ +\x67\x20\x66\x69\x6c\x65\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\ +\x67\x20\x61\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6f\x6e\x20\ +\x74\x61\x62\x6c\x65\x20\x74\x68\x61\x74\x20\x77\x69\x6c\x6c\x20\ +\x63\x6f\x6e\x76\x65\x72\x74\x20\x63\x6f\x6c\x6f\x72\x73\x20\x69\ +\x6e\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x73\x2e\x0a\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\xfc\x00\x54\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x6f\x00\x72\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\ +\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x74\x00\x65\x00\x78\ +\x00\x74\x00\x73\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\ +\x00\x74\x00\x68\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x64\x00\x69\ +\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x73\ +\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x76\x00\x65\x00\x72\ +\x00\x74\x00\x69\x00\x63\x00\x61\x00\x6c\x00\x2e\x00\x20\x00\x44\ +\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x69\ +\x00\x73\x00\x20\x00\x6c\x00\x65\x00\x66\x00\x74\x00\x2c\x00\x20\ +\x00\x77\x00\x68\x00\x69\x00\x63\x00\x68\x00\x20\x00\x69\x00\x73\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x49\x00\x53\x00\x4f\ +\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\ +\x00\x64\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7e\x54\x68\ +\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6f\x72\x69\x65\x6e\x74\ +\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x64\x69\x6d\ +\x65\x6e\x73\x69\x6f\x6e\x20\x74\x65\x78\x74\x73\x20\x77\x68\x65\ +\x6e\x20\x74\x68\x6f\x73\x65\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\ +\x6e\x73\x20\x61\x72\x65\x20\x76\x65\x72\x74\x69\x63\x61\x6c\x2e\ +\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x69\x73\x20\x6c\x65\x66\x74\ +\x2c\x20\x77\x68\x69\x63\x68\x20\x69\x73\x20\x74\x68\x65\x20\x49\ +\x53\x4f\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x2e\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x01\x1e\x00\x42\x00\x75\x00\x20\x00\x62\x00\x69\x00\x72\ +\x00\x20\x00\x74\x00\x6f\x00\x6c\x00\x65\x00\x72\x00\x61\x00\x6e\ +\x00\x73\x00\x20\x00\x6b\x00\x75\x00\x6c\x00\x6c\x00\x61\x00\x6e\ +\x00\x61\x00\x6e\x00\x20\x00\x69\x01\x5f\x00\x6c\x00\x65\x00\x76\ +\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x74\x00\x61\x00\x72\x00\x61\ +\x00\x66\x01\x31\x00\x6e\x00\x64\x00\x61\x00\x6e\x00\x20\x00\x6b\ +\x00\x75\x00\x6c\x00\x6c\x00\x61\x00\x6e\x01\x31\x00\x6c\x00\x61\ +\x00\x6e\x00\x20\x00\x64\x00\x65\x01\x1f\x00\x65\x00\x72\x00\x64\ +\x00\x69\x00\x72\x00\x2e\x00\x20\x00\x42\x00\x75\x00\x20\x00\x64\ +\x00\x65\x01\x1f\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x20\x00\x61\ +\x00\x6c\x00\x74\x01\x31\x00\x6e\x00\x64\x00\x61\x00\x20\x00\x66\ +\x00\x61\x00\x72\x00\x6b\x00\x6c\x01\x31\x00\x6c\x01\x31\x00\x6b\ +\x00\x6c\x00\x61\x00\x72\x01\x31\x00\x20\x00\x6f\x00\x6c\x00\x61\ +\x00\x6e\x00\x20\x00\x64\x00\x65\x01\x1f\x00\x65\x00\x72\x00\x6c\ +\x00\x65\x00\x72\x00\x20\x00\x61\x00\x79\x00\x6e\x01\x31\x00\x20\ +\x00\x6f\x00\x6c\x00\x61\x00\x72\x00\x61\x00\x6b\x00\x20\x00\x6b\ +\x00\x61\x00\x62\x00\x75\x00\x6c\x00\x20\x00\x65\x00\x64\x00\x69\ +\x00\x6c\x00\x65\x00\x63\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x72\ +\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7b\x54\x68\x69\x73\ +\x20\x69\x73\x20\x74\x68\x65\x20\x76\x61\x6c\x75\x65\x20\x75\x73\ +\x65\x64\x20\x62\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\ +\x74\x68\x61\x74\x20\x75\x73\x65\x20\x61\x20\x74\x6f\x6c\x65\x72\ +\x61\x6e\x63\x65\x2e\x0a\x56\x61\x6c\x75\x65\x73\x20\x77\x69\x74\ +\x68\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x63\x65\x73\x20\x62\x65\ +\x6c\x6f\x77\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x77\ +\x69\x6c\x6c\x20\x62\x65\x20\x74\x72\x65\x61\x74\x65\x64\x20\x61\ +\x73\x20\x73\x61\x6d\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\ +\x54\x00\x6f\x00\x6c\x00\x65\x00\x72\x00\x61\x00\x6e\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\x6f\x6c\x65\x72\x61\x6e\ +\x63\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x54\x00\x6f\x00\x6f\ +\x00\x6c\x00\x62\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x07\x54\x6f\x6f\x6c\x62\x61\x72\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x46\x00\x54\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x6c\x00\x61\x00\ +\x74\x00\x65\x00\x20\x00\x77\x00\x68\x00\x69\x00\x74\x00\x65\x00\ +\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x63\x00\x6f\x00\ +\x6c\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\ +\x6c\x00\x61\x00\x63\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x23\x54\x72\x61\x6e\x73\x6c\x61\x74\x65\x20\x77\x68\x69\x74\x65\ +\x20\x6c\x69\x6e\x65\x20\x63\x6f\x6c\x6f\x72\x20\x74\x6f\x20\x62\ +\x6c\x61\x63\x6b\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\x00\x54\x00\x72\ +\x00\x61\x00\x6e\x00\x73\x00\x6c\x00\x61\x00\x74\x00\x65\x00\x64\ +\x00\x20\x00\x28\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x72\ +\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x26\x00\x20\x00\x64\x00\x69\ +\x00\x73\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x29\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x20\x54\x72\x61\x6e\x73\x6c\x61\x74\x65\x64\ +\x20\x28\x66\x6f\x72\x20\x70\x72\x69\x6e\x74\x20\x26\x20\x64\x69\ +\x73\x70\x6c\x61\x79\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x58\x00\x56\ +\x00\x61\x00\x72\x00\x73\x00\x61\x00\x79\x01\x31\x00\x6c\x00\x61\ +\x00\x6e\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x6b\x00\x20\x00\x76\ +\x00\x65\x00\x20\x00\xe7\x00\x69\x00\x7a\x00\x67\x00\x69\x00\x20\ +\x00\x6b\x00\x61\x00\x6c\x01\x31\x00\x6e\x00\x6c\x01\x31\x01\x1f\ +\x01\x31\x00\x20\x00\x6b\x00\x75\x00\x6c\x00\x6c\x00\x61\x00\x6e\ +\x01\x31\x00\x6e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\ +\x55\x73\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\ +\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x10\x00\x55\x00\x73\x00\x65\x00\x20\x00\ +\x67\x00\x72\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x08\x55\x73\x65\x20\x67\x72\x69\x64\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x40\x00\x55\x00\x73\x00\x65\x00\x20\x00\x73\x00\x74\x00\x61\x00\ +\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x20\x00\x66\x00\x6f\x00\ +\x6e\x00\x74\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\ +\x66\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x55\x73\x65\x20\x73\ +\x74\x61\x6e\x64\x61\x72\x64\x20\x66\x6f\x6e\x74\x20\x73\x69\x7a\ +\x65\x20\x66\x6f\x72\x20\x74\x65\x78\x74\x73\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x48\x00\x56\x00\x65\x00\x72\x00\x74\x00\x69\x00\x63\x00\ +\x61\x00\x6c\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\ +\x73\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x74\x00\x65\x00\ +\x78\x00\x74\x00\x20\x00\x6f\x00\x72\x00\x69\x00\x65\x00\x6e\x00\ +\x74\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x24\x56\x65\x72\x74\x69\x63\x61\x6c\x20\x64\x69\ +\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x74\x65\x78\x74\x20\x6f\x72\ +\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\xe6\x00\x57\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x78\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x53\x00\x56\x00\x47\x00\x20\x00\x76\x00\x69\x00\x65\x00\x77\x00\ +\x73\x00\x2c\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x65\x00\x20\x00\ +\x61\x00\x6c\x00\x6c\x00\x20\x00\x77\x00\x68\x00\x69\x00\x74\x00\ +\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x77\x00\x6f\x00\ +\x72\x00\x6b\x00\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\x00\ +\x72\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x62\x00\x6c\x00\x61\x00\ +\x63\x00\x6b\x00\x2c\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\ +\x62\x00\x65\x00\x74\x00\x74\x00\x65\x00\x72\x00\x20\x00\x72\x00\ +\x65\x00\x61\x00\x64\x00\x61\x00\x62\x00\x69\x00\x6c\x00\x69\x00\ +\x74\x00\x79\x00\x20\x00\x61\x00\x67\x00\x61\x00\x69\x00\x6e\x00\ +\x73\x00\x74\x00\x20\x00\x77\x00\x68\x00\x69\x00\x74\x00\x65\x00\ +\x20\x00\x62\x00\x61\x00\x63\x00\x6b\x00\x67\x00\x72\x00\x6f\x00\ +\x75\x00\x6e\x00\x64\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x73\x57\x68\x65\x6e\x20\x65\x78\x70\x6f\x72\x74\x69\x6e\x67\x20\ +\x53\x56\x47\x20\x76\x69\x65\x77\x73\x2c\x20\x6d\x61\x6b\x65\x20\ +\x61\x6c\x6c\x20\x77\x68\x69\x74\x65\x20\x6c\x69\x6e\x65\x77\x6f\ +\x72\x6b\x20\x61\x70\x70\x65\x61\x72\x20\x69\x6e\x20\x62\x6c\x61\ +\x63\x6b\x2c\x20\x66\x6f\x72\x20\x62\x65\x74\x74\x65\x72\x20\x72\ +\x65\x61\x64\x61\x62\x69\x6c\x69\x74\x79\x20\x61\x67\x61\x69\x6e\ +\x73\x74\x20\x77\x68\x69\x74\x65\x20\x62\x61\x63\x6b\x67\x72\x6f\ +\x75\x6e\x64\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x76\x00\x44\x00\x69\ +\x00\x6c\x00\x69\x00\x6d\x00\x6c\x00\x65\x00\x72\x00\x69\x00\x20\ +\x00\x44\x00\x58\x00\x46\x00\x27\x00\x65\x00\x20\x00\x61\x00\x6b\ +\x00\x74\x00\x61\x00\x72\x01\x31\x00\x72\x00\x6b\x00\x65\x00\x6e\ +\x00\x2c\x00\x20\x00\x44\x00\x69\x00\x6c\x00\x69\x00\x6d\x00\x6c\ +\x00\x65\x00\x72\x00\x20\x00\xe7\x00\x6f\x00\x6b\x00\x6c\x00\x75\ +\x00\x64\x00\x6f\x01\x1f\x00\x72\x00\x75\x00\x6c\x00\x61\x00\x72\ +\x00\x61\x00\x20\x00\x64\x00\xf6\x00\x6e\x00\xfc\x01\x5f\x00\xfc\ +\x00\x72\x00\x6c\x00\x65\x00\x72\x00\x2e\x00\x20\x00\x42\x00\x75\ +\x00\x20\x00\x64\x00\x65\x01\x1f\x00\x65\x00\x72\x00\x20\x00\x68\ +\x00\x65\x00\x72\x00\x20\x00\x62\x00\x69\x00\x72\x00\x20\x00\xe7\ +\x00\x6f\x00\x6b\x00\x6c\x00\x75\x00\x64\x00\x6f\x01\x1f\x00\x72\ +\x00\x75\x00\x20\x00\x62\x00\xf6\x00\x6c\x00\xfc\x00\x6d\x00\xfc\ +\x00\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\x00\x20\x00\x65\x00\x6e\ +\x00\x20\x00\x62\x00\xfc\x00\x79\x00\xfc\x00\x6b\x00\x20\x00\x75\ +\x00\x7a\x00\x75\x00\x6e\x00\x6c\x00\x75\x00\x6b\x00\x74\x00\x75\ +\x00\x72\x00\x2e\x00\x2e\x00\x20\x00\x45\x01\x1f\x00\x65\x00\x72\ +\x00\x20\x00\x73\x01\x31\x00\x66\x01\x31\x00\x72\x00\x73\x00\x61\ +\x00\x2c\x00\x20\x00\x62\x00\xfc\x00\x74\x00\xfc\x00\x6e\x00\x20\ +\x00\x64\x00\x69\x00\x6c\x00\x69\x00\x6d\x00\x65\x00\x20\x00\x74\ +\x00\x65\x00\x6b\x00\x20\x00\x62\x00\x69\x00\x72\x00\x20\x00\x62\ +\x00\xf6\x00\x6c\x00\xfc\x00\x6d\x00\x20\x00\x67\x00\x69\x00\x62\ +\x00\x69\x00\x20\x00\x64\x00\x61\x00\x76\x00\x72\x00\x61\x00\x6e\ +\x01\x31\x00\x6c\x00\x6d\x01\x31\x01\x5f\x00\x74\x01\x31\x00\x72\ +\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\xc2\x57\x68\x65\x6e\ +\x20\x65\x78\x70\x6f\x72\x74\x69\x6e\x67\x20\x73\x70\x6c\x69\x6e\ +\x65\x73\x20\x74\x6f\x20\x44\x58\x46\x2c\x20\x74\x68\x65\x79\x20\ +\x61\x72\x65\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x65\x64\x20\ +\x69\x6e\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x73\x2e\x20\x54\x68\ +\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x69\x73\x20\x74\x68\x65\x20\ +\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\ +\x66\x20\x65\x61\x63\x68\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x6f\ +\x6c\x79\x6c\x69\x6e\x65\x20\x73\x65\x67\x6d\x65\x6e\x74\x73\x2e\ +\x20\x49\x66\x20\x30\x2c\x20\x74\x68\x65\x6e\x20\x74\x68\x65\x20\ +\x77\x68\x6f\x6c\x65\x20\x73\x70\x6c\x69\x6e\x65\x20\x69\x73\x20\ +\x74\x72\x65\x61\x74\x65\x64\x20\x61\x73\x20\x61\x20\x73\x74\x72\ +\x61\x69\x67\x68\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x2e\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x10\x00\x58\x00\x59\x00\x20\x00\x28\x00\xdc\ +\x00\x73\x00\x74\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\ +\x58\x59\x20\x28\x54\x6f\x70\x29\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\ +\x00\x58\x00\x5a\x00\x20\x00\x28\x00\xd6\x00\x6e\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\x58\x5a\x20\x28\x46\x72\x6f\x6e\ +\x74\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x59\x00\x5a\x00\x20\ +\x00\x28\x00\x74\x00\x61\x00\x72\x00\x61\x00\x66\x01\x31\x00\x29\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x59\x5a\x20\x28\x53\x69\ +\x64\x65\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\x00\x61\x00\x6c\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x61\x6c\x74\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\xc2\x00\x41\x00\x72\x00\x61\x00\xe7\x00\x20\ +\x00\xe7\x00\x75\x00\x62\x00\x75\x01\x1f\x00\x75\x00\x6e\x00\x20\ +\x00\x69\x00\xe7\x00\x65\x00\x72\x00\x69\x00\x73\x00\x69\x00\x6e\ +\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x72\x00\x73\ +\x00\x61\x00\x79\x01\x31\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\x6f\ +\x00\x6c\x00\x61\x00\x72\x00\x61\x00\x6b\x00\x20\x00\x72\x00\x65\ +\x00\x6e\x00\x6b\x00\x2f\x00\xe7\x00\x69\x00\x7a\x00\x67\x00\x69\ +\x00\x20\x00\x6b\x00\x61\x00\x6c\x01\x31\x00\x6e\x00\x6c\x01\x31\ +\x01\x1f\x01\x31\x00\x6e\x01\x31\x00\x20\x00\x6b\x00\x75\x00\x6c\ +\x00\x6c\x00\x61\x00\x6e\x00\x6d\x00\x61\x00\x6b\x00\x20\x00\x69\ +\x00\xe7\x00\x69\x00\x6e\x00\x20\x00\x62\x00\x75\x00\x6e\x00\x75\ +\x00\x20\x00\x69\x01\x5f\x00\x61\x00\x72\x00\x65\x00\x74\x00\x6c\ +\x00\x65\x00\x79\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x4d\x63\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\ +\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x6f\x20\x75\x73\x65\x20\ +\x74\x68\x65\x20\x63\x6f\x6c\x6f\x72\x2f\x6c\x69\x6e\x65\x77\x69\ +\x64\x74\x68\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x74\x6f\x6f\ +\x6c\x62\x61\x72\x20\x61\x73\x20\x64\x65\x66\x61\x75\x6c\x74\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x08\x00\x63\x00\x74\x00\x72\x00\x6c\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x63\x74\x72\x6c\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\xce\x00\x69\x00\x66\x00\x20\x00\x63\x00\x68\x00\ +\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x61\x00\ +\x20\x00\x77\x00\x69\x00\x64\x00\x67\x00\x65\x00\x74\x00\x20\x00\ +\x69\x00\x6e\x00\x64\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\ +\x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x77\x00\ +\x6f\x00\x72\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x70\x00\ +\x6c\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x69\x00\ +\x65\x00\x6e\x00\x74\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\x73\x00\ +\x20\x00\x64\x00\x75\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x64\x00\x72\x00\x61\x00\x77\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x6f\x00\x70\x00\x65\x00\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x67\x69\x66\x20\ +\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x20\x77\x69\x64\x67\x65\ +\x74\x20\x69\x6e\x64\x69\x63\x61\x74\x69\x6e\x67\x20\x74\x68\x65\ +\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x77\x6f\x72\x6b\x69\x6e\x67\ +\x20\x70\x6c\x61\x6e\x65\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\ +\x6f\x6e\x20\x61\x70\x70\x65\x61\x72\x73\x20\x64\x75\x72\x69\x6e\ +\x67\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x6f\x70\x65\x72\x61\x74\ +\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x26\x00\x69\x00\x66\ +\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\ +\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\ +\x00\x2c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x73\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x73\x00\x61\x00\x6d\x00\x65\x00\x20\ +\x00\x6c\x00\x61\x00\x79\x00\x65\x00\x72\x00\x73\x00\x20\x00\x77\ +\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x6a\ +\x00\x6f\x00\x69\x00\x6e\x00\x65\x00\x64\x00\x20\x00\x69\x00\x6e\ +\x00\x74\x00\x6f\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\ +\x00\x20\x00\x42\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x73\x00\x2c\ +\x00\x20\x00\x74\x00\x75\x00\x72\x00\x6e\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\x69\x00\x73\ +\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x20\x00\x66\x00\x61\x00\x73\ +\x00\x74\x00\x65\x00\x72\x00\x2c\x00\x20\x00\x62\x00\x75\x00\x74\ +\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x20\x00\x6c\x00\x65\x00\x73\ +\x00\x73\x00\x20\x00\x65\x00\x61\x00\x73\x00\x69\x00\x6c\x00\x79\ +\x00\x20\x00\x65\x00\x64\x00\x69\x00\x74\x00\x61\x00\x62\x00\x6c\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x93\x69\x66\x20\x74\ +\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\ +\x20\x73\x61\x6d\x65\x20\x6c\x61\x79\x65\x72\x73\x20\x77\x69\x6c\ +\x6c\x20\x62\x65\x20\x6a\x6f\x69\x6e\x65\x64\x20\x69\x6e\x74\x6f\ +\x20\x44\x72\x61\x66\x74\x20\x42\x6c\x6f\x63\x6b\x73\x2c\x20\x74\ +\x75\x72\x6e\x69\x6e\x67\x20\x74\x68\x65\x20\x64\x69\x73\x70\x6c\ +\x61\x79\x20\x66\x61\x73\x74\x65\x72\x2c\x20\x62\x75\x74\x20\x6d\ +\x61\x6b\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\x6c\x65\x73\x73\x20\ +\x65\x61\x73\x69\x6c\x79\x20\x65\x64\x69\x74\x61\x62\x6c\x65\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x7e\x00\x45\x01\x1f\x00\x65\x00\x72\x00\ +\x20\x00\x62\x00\x75\x00\x20\x00\x69\x01\x5f\x00\x61\x00\x72\x00\ +\x65\x00\x74\x00\x6c\x00\x69\x00\x79\x00\x73\x00\x65\x00\x2c\x00\ +\x20\x00\x73\x00\x61\x00\x79\x00\x66\x00\x61\x00\x20\x00\x75\x00\ +\x7a\x00\x61\x00\x79\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\ +\x65\x00\x73\x00\x69\x00\x20\x00\x64\x00\x65\x00\x20\x00\x69\x00\ +\xe7\x00\x65\x00\x72\x00\x69\x00\x20\x00\x61\x00\x6b\x00\x74\x00\ +\x61\x00\x72\x01\x31\x00\x6c\x00\x61\x00\x63\x00\x61\x00\x6b\x00\ +\x74\x01\x31\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3c\x69\ +\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\ +\x64\x2c\x20\x70\x61\x70\x65\x72\x20\x73\x70\x61\x63\x65\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x69\ +\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\xa6\x00\x45\x01\x1f\x00\x65\x00\x72\x00\x20\x00\x62\x00\ +\x75\x00\x20\x00\x69\x01\x5f\x00\x61\x00\x72\x00\x65\x00\x74\x00\ +\x6c\x00\x69\x00\x20\x00\x64\x00\x65\x01\x1f\x00\x69\x00\x6c\x00\ +\x73\x00\x65\x00\x2c\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x69\x00\ +\x6e\x00\x6c\x00\x65\x00\x72\x00\x28\x00\x74\x00\x65\x00\x78\x00\ +\x74\x00\x73\x00\x29\x00\x2f\x00\x6d\x00\x6d\x00\x65\x00\x74\x00\ +\x69\x00\x6e\x00\x6c\x00\x65\x00\x72\x00\x28\x00\x6d\x00\x74\x00\ +\x65\x00\x78\x00\x74\x00\x73\x00\x29\x00\x20\x00\x69\x00\xe7\x00\ +\x65\x00\x72\x00\x69\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x61\x00\ +\x72\x01\x31\x00\x6c\x00\x6d\x00\x61\x00\x79\x00\x61\x00\x63\x00\ +\x61\x00\x6b\x00\x74\x01\x31\x00\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x34\x69\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x75\x6e\ +\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x65\x78\x74\x73\x2f\x6d\ +\x74\x65\x78\x74\x73\x20\x77\x6f\x6e\x27\x74\x20\x62\x65\x20\x69\ +\x6d\x70\x6f\x72\x74\x65\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\ +\x70\x00\x78\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x70\x78\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0a\x00\x73\x00\x68\x00\x69\x00\x66\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x73\x68\x69\x66\x74\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x44\x00\x79\x00\x65\x00\x6e\x00\x69\ +\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x6c\x00\x65\ +\x00\x72\x00\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\x00\x20\x00\x76\ +\x00\x61\x00\x72\x00\x73\x00\x61\x00\x79\x01\x31\x00\x6c\x00\x61\ +\x00\x6e\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x6b\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x21\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\ +\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x48\x00\ +\x4b\x00\x6f\x00\x70\x00\x61\x00\x72\x00\x6d\x00\x61\x00\x20\x00\ +\x73\x00\x69\x00\x6d\x00\x67\x00\x65\x00\x73\x00\x69\x00\x20\x00\ +\x69\x00\xe7\x00\x69\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x72\x00\ +\x73\x00\x61\x00\x79\x01\x31\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\ +\x72\x00\x65\x00\x6e\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x22\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ +\x6f\x72\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x20\x73\x79\x6d\x62\ +\x6f\x6c\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5a\x00\x79\x00\x65\x00\ +\x6e\x00\x69\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\ +\x6c\x00\x65\x00\x72\x00\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\x00\ +\x20\x00\x76\x00\x61\x00\x72\x00\x73\x00\x61\x00\x79\x01\x31\x00\ +\x6c\x00\x61\x00\x6e\x00\x20\x00\xe7\x00\x69\x00\x7a\x00\x67\x00\ +\x69\x00\x20\x00\x6b\x00\x61\x00\x6c\x01\x31\x00\x6e\x00\x6c\x01\ +\x31\x01\x1f\x01\x31\x08\x00\x00\x00\x00\x06\x00\x00\x00\x25\x74\ +\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x6c\x69\x6e\x65\x77\ +\x69\x64\x74\x68\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x4b\x00\x61\ +\x00\x70\x00\x61\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x26\x43\x6c\x6f\x73\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x16\x00\x26\x00\x61\x00\x6d\x00\x70\x00\x3b\ +\x00\x20\x00\x44\x00\x65\x00\x76\x00\x61\x00\x6d\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x26\x43\x6f\x6e\x74\x69\x6e\x75\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\ +\x26\x00\x61\x00\x6d\x00\x70\x00\x3b\x00\x20\x00\x4b\x00\x6f\x00\ +\x70\x00\x79\x00\x61\x00\x6c\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x05\x26\x43\x6f\x70\x79\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x26\x00\x44\x00\x72\x00\x61\ +\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x26\x44\ +\x72\x61\x66\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0c\x00\x26\x00\x42\x00\x69\x00\x74\x00\x69\x00\x72\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x26\x46\x69\x6e\x69\x73\ +\x68\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x2a\x00\x26\x00\x61\x00\x6d\x00\x70\x00\x3b\x00\x20\x00\x4f\x00\ +\x43\x00\x43\x00\x20\x00\x74\x00\x61\x00\x72\x00\x7a\x01\x31\x00\ +\x20\x00\x6f\x00\x66\x00\x73\x00\x65\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x11\x26\x4f\x43\x43\x2d\x73\x74\x79\x6c\x65\x20\ +\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0e\x00\x26\x00\x47\x00\xf6\x00\x72\x00\x65\ +\x00\x6c\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\x52\ +\x65\x6c\x61\x74\x69\x76\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0c\x00\x47\x00\x65\x00\x72\x00\x69\x00\ +\x61\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x55\x6e\ +\x64\x6f\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0e\x00\x26\x00\x20\x00\x53\x00\x69\x00\x6c\x00\x6d\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x57\x69\x70\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\ +\x41\x00\x6b\x00\x74\x00\x69\x00\x66\x00\x20\x00\xc7\x00\x69\x00\ +\x7a\x00\x69\x00\x6d\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x75\x00\ +\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x41\x63\x74\ +\x69\x76\x65\x20\x44\x72\x61\x66\x74\x20\x63\x6f\x6d\x6d\x61\x6e\ +\x64\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x82\x00\x45\x00\x74\x00\x6b\x00\x69\x00\x6e\x00\x20\x00\x6e\x00\ +\x65\x00\x73\x00\x6e\x00\x65\x00\x20\x00\x69\x00\x6b\x00\x69\x00\ +\x64\x00\x65\x00\x6e\x00\x20\x00\x66\x00\x61\x00\x7a\x00\x6c\x00\ +\x61\x00\x20\x00\x6e\x00\x6f\x00\x6b\x00\x74\x00\x61\x00\x2f\x00\ +\x62\x00\x61\x01\x1f\x00\x6c\x00\x61\x00\x6e\x00\x6d\x00\x61\x00\ +\x20\x00\x6e\x00\x6f\x00\x6b\x00\x74\x00\x61\x00\x73\x01\x31\x00\ +\x6e\x00\x61\x00\x20\x00\x73\x00\x61\x00\x68\x00\x69\x00\x70\x00\ +\x20\x00\x6f\x00\x6c\x00\x6d\x00\x61\x00\x6c\x01\x31\x00\x64\x01\ +\x31\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x41\x63\x74\ +\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x6d\x75\x73\x74\x20\ +\x68\x61\x76\x65\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\x74\ +\x77\x6f\x20\x70\x6f\x69\x6e\x74\x73\x2f\x6e\x6f\x64\x65\x73\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\ +\x00\x41\x00\x64\x00\x64\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\ +\x00\x74\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\ +\x00\x65\x00\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\x6e\ +\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x41\x64\x64\x20\x70\x6f\ +\x69\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x63\x75\x72\x72\ +\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x41\x00\xe7\x01\x31\ +\x00\x6b\x00\x6c\x01\x31\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x08\x41\x70\x65\x72\x74\x75\x72\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x41\x00\x72\x00\x61\ +\x00\x6c\x01\x31\x00\x6b\x00\x20\x00\x61\x00\xe7\x01\x31\x00\x73\ +\x01\x31\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x41\x70\ +\x65\x72\x74\x75\x72\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\x00\x53\ +\x00\x65\x00\xe7\x00\x69\x00\x6c\x00\x69\x00\x20\x00\x6e\x00\x65\ +\x00\x73\x00\x6e\x00\x65\x00\x6c\x00\x65\x00\x72\x00\x65\x00\x20\ +\x00\x75\x00\x79\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x79\x01\x31\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x41\x70\x70\x6c\ +\x79\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x16\x00\xc7\x00\x65\x00\x6d\x00\x62\x00\x65\x00\ +\x72\x00\x20\x00\x79\x00\x61\x00\x79\x01\x31\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x03\x41\x72\x63\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x42\x00\x53\x00\x70\x00\x6c\ +\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ +\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x3e\x00\x43\x00\x61\x00\x6e\x00\x6e\x00\ +\x6f\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\ +\x74\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x74\x00\x79\x00\ +\x70\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x43\ +\x61\x6e\x6e\x6f\x74\x20\x6f\x66\x66\x73\x65\x74\x20\x74\x68\x69\ +\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x4d\ +\x00\x65\x00\x72\x00\x6b\x00\x65\x00\x7a\x00\x20\x00\x58\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x08\x43\x65\x6e\x74\x65\x72\x20\x58\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\ +\x00\x53\x00\x74\x00\x69\x00\x6c\x00\x20\x00\x44\x00\x65\x01\x1f\ +\x00\x69\x01\x5f\x00\x74\x00\x69\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x43\x68\x61\x6e\x67\x65\x20\x53\x74\x79\x6c\x65\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\xb6\ +\x00\x43\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x20\x00\x74\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\ +\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x20\x00\x73\x00\x68\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x20\ +\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\x20\x00\x61\ +\x00\x73\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x64\ +\x00\x2c\x00\x20\x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\x77\ +\x00\x69\x00\x73\x00\x65\x00\x20\x00\x69\x00\x74\x00\x20\x00\x77\ +\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\x70\x00\x70\x00\x65\ +\x00\x61\x00\x72\x00\x20\x00\x61\x00\x73\x00\x20\x00\x77\x00\x69\ +\x00\x72\x00\x65\x00\x66\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x20\ +\x00\x28\x00\x69\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5b\ +\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x74\x68\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x73\x68\x6f\x75\x6c\x64\x20\ +\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x66\x69\x6c\x6c\x65\x64\ +\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x69\x74\x20\x77\ +\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x77\x69\ +\x72\x65\x66\x72\x61\x6d\x65\x20\x28\x69\x29\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\xc7\x00\x65\x00\ +\x6d\x00\x62\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x06\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x1a\x00\x43\x00\x6f\x00\x6e\x00\x74\x00\ +\x65\x00\x78\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x74\x65\ +\x78\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x6e\x00\x4d\x00\x75\x00\x74\x00\x6c\ +\x00\x61\x00\x6b\x00\x20\x00\x79\x00\x61\x00\x20\x00\x64\x00\x61\ +\x00\x20\x00\x73\x00\x6f\x00\x6e\x00\x20\x00\x6e\x00\x6f\x00\x6b\ +\x00\x74\x00\x61\x00\x79\x00\x61\x00\x20\x00\x67\x00\xf6\x00\x72\ +\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x69\ +\x00\x6e\x00\x61\x00\x74\x00\x6c\x00\x61\x00\x72\x00\x2e\x00\x28\ +\x00\x53\x00\x50\x00\x41\x00\x43\x00\x45\x00\x20\x00\x74\x00\x75\ +\x01\x5f\x00\x75\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x36\ +\x43\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x73\x20\x72\x65\x6c\x61\ +\x74\x69\x76\x65\x20\x74\x6f\x20\x6c\x61\x73\x74\x20\x70\x6f\x69\ +\x6e\x74\x20\x6f\x72\x20\x61\x62\x73\x6f\x6c\x75\x74\x65\x20\x28\ +\x53\x50\x41\x43\x45\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0e\x00\x4b\x00\x6f\x00\x70\x00\x79\x00\x61\ +\x00\x6c\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x43\x6f\ +\x70\x79\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x3e\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\ +\x00\x74\x00\x20\x00\x75\x00\x70\x00\x67\x00\x72\x00\x61\x00\x64\ +\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x73\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x0a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x43\x6f\x75\x6c\x64\x6e\ +\x27\x74\x20\x75\x70\x67\x72\x61\x64\x65\x20\x74\x68\x65\x73\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x41\x00\x72\x00\x6b\x00\ +\x20\x00\x6f\x00\x6c\x00\x75\x01\x5f\x00\x74\x00\x75\x00\x72\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x72\x65\x61\x74\x65\x20\ +\x41\x72\x63\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x1e\x00\x42\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\ +\x65\x00\x20\x00\x6f\x00\x6c\x00\x75\x01\x5f\x00\x74\x00\x75\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x43\x72\x65\x61\x74\ +\x65\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x44\x00\x61\x00\x69\x00\ +\x72\x00\x65\x00\x20\x00\x6f\x00\x6c\x00\x75\x01\x5f\x00\x74\x00\ +\x75\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x72\x65\ +\x61\x74\x65\x20\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x20\x00\x44\x00\x57\x00\x69\x00\x72\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x72\x65\x61\ +\x74\x65\x20\x44\x57\x69\x72\x65\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x42\x00\x6f\x00\x79\x00\x75\ +\x00\x74\x00\x20\x00\x6f\x00\x6c\x00\x75\x01\x5f\x00\x74\x00\x75\ +\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\ +\x74\x65\x20\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x50\x00\x6f\ +\x00\x6c\x00\x69\x00\x67\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\x6c\ +\x00\x75\x01\x5f\x00\x74\x00\x75\x00\x72\x00\x75\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0e\x43\x72\x65\x61\x74\x65\x20\x50\ +\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x24\x00\x44\x00\x69\x00\x6b\x00\x64\x00\xf6\ +\x00\x72\x00\x74\x00\x67\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x6c\ +\x00\x75\x01\x5f\x00\x74\x00\x75\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x43\x72\x65\x61\x74\x65\x20\x52\x65\x63\x74\x61\ +\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x1e\x00\x4d\x00\x65\x00\x74\x00\x69\x00\x6e\x00\x20\ +\x00\x6f\x00\x6c\x00\x75\x01\x5f\x00\x74\x00\x75\x00\x72\x00\x6d\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\ +\x74\x65\x20\x54\x65\x78\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0a\x00\x44\x00\x57\x00\x69\x00\x72\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x57\x69\x72\x65\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\ +\x00\x44\x00\x57\x00\x69\x00\x72\x00\x65\x00\x20\x00\x68\x00\x61\ +\x00\x73\x00\x20\x00\x62\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x63\ +\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x0a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x16\x44\x57\x69\x72\x65\x20\x68\x61\x73\x20\ +\x62\x65\x65\x6e\x20\x63\x6c\x6f\x73\x65\x64\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x42\x00\x6f\ +\x00\x79\x00\x75\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x55\x00\x7a\x00\x61\x00\ +\x6b\x00\x6c\x01\x31\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x5a\x00\xc7\x00\x69\x00\x7a\x00\ +\x69\x00\x6d\x00\x20\x00\x64\x00\xfc\x00\x7a\x00\x6c\x00\x65\x00\ +\x6d\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x6b\x00\ +\x74\x00\x61\x00\x6c\x00\x61\x00\x72\x01\x31\x00\x6e\x00\x20\x00\ +\x69\x00\x7a\x00\x64\x00\xfc\x01\x5f\x00\xfc\x00\x6d\x00\xfc\x00\ +\x6e\x00\xfc\x00\x20\x00\x61\x00\x6c\x00\x6d\x00\x61\x00\x79\x01\ +\x31\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x44\x6f\x20\ +\x6e\x6f\x74\x20\x70\x72\x6f\x6a\x65\x63\x74\x20\x70\x6f\x69\x6e\ +\x74\x73\x20\x74\x6f\x20\x61\x20\x64\x72\x61\x77\x69\x6e\x67\x20\ +\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x28\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\ +\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x14\x44\x72\x61\x66\x74\x20\x63\x72\x65\ +\x61\x74\x69\x6f\x6e\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x44\x00\x72\x00\ +\x61\x00\x66\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\ +\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x18\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\x69\x66\ +\x69\x63\x61\x74\x69\x6f\x6e\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x4b\x00\ +\x65\x00\x6e\x00\x61\x00\x72\x00\x6c\x00\x61\x00\x72\x00\x20\x00\ +\x6b\x00\x65\x00\x73\x00\x69\x01\x5f\x00\x6d\x00\x69\x00\x79\x00\ +\x6f\x00\x72\x00\x21\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x45\ +\x64\x67\x65\x73\x20\x64\x6f\x6e\x27\x74\x20\x69\x6e\x74\x65\x72\ +\x73\x65\x63\x74\x21\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0e\x00\x44\x00\xfc\x00\x7a\x00\x65\x00\x6e\ +\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\ +\x69\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0e\x00\x46\x00\x26\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x64\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x46\x26\x69\x6c\x6c\x65\ +\x64\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x12\x00\x59\x00\xfc\x00\x7a\x00\x20\x00\x72\x00\x65\x00\x6e\x00\ +\x67\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x46\x61\x63\ +\x65\x20\x43\x6f\x6c\x6f\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x54\x00\x53\x00\x6f\x00\x6e\x00\x6c\x00\ +\x61\x00\x6e\x00\x64\x01\x31\x00\x72\x01\x31\x00\x72\x00\x20\x00\ +\x76\x00\x65\x00\x20\x00\x67\x00\x65\x00\xe7\x00\x65\x00\x72\x00\ +\x6c\x00\x69\x00\x20\x00\xe7\x00\x69\x00\x7a\x00\x67\x00\x69\x00\ +\x79\x00\x69\x00\x20\x00\x6b\x00\x61\x00\x70\x00\x61\x00\x74\x01\ +\x31\x00\x72\x00\x20\x00\x28\x00\x43\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x28\x46\x69\x6e\x69\x73\x68\x65\x73\x20\x61\x6e\ +\x64\x20\x63\x6c\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x63\x75\x72\ +\x72\x65\x6e\x74\x20\x6c\x69\x6e\x65\x20\x28\x43\x29\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6a\x00\x46\x00\ +\x69\x00\x6e\x00\x69\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\ +\x65\x00\x6e\x00\x74\x00\x20\x00\x64\x00\x72\x00\x61\x00\x77\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x65\x00\ +\x64\x00\x69\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\ +\x70\x00\x65\x00\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x20\x00\x28\x00\x46\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x35\x46\x69\x6e\x69\x73\x68\x65\x73\x20\x74\x68\x65\x20\x63\x75\ +\x72\x72\x65\x6e\x74\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x6f\x72\ +\x20\x65\x64\x69\x74\x69\x6e\x67\x20\x6f\x70\x65\x72\x61\x74\x69\ +\x6f\x6e\x20\x28\x46\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x20\x00\x59\x00\x61\x00\x7a\x01\x31\x00\x20\ +\x00\x74\x00\x69\x00\x70\x00\x69\x00\x20\x00\x62\x00\x6f\x00\x79\ +\x00\x75\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x46\x6f\x6e\x74\x20\x53\x69\x7a\x65\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x4e\x00\x46\x00\x6f\x00\x75\x00\ +\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\x63\x00\x69\x00\x72\x00\ +\x63\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x65\x00\x64\x00\ +\x67\x00\x65\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x63\x00\x69\x00\x72\x00\ +\x63\x00\x6c\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x27\x46\x6f\x75\x6e\x64\x20\x31\x20\x63\x69\x72\x63\x75\x6c\x61\ +\x72\x20\x65\x64\x67\x65\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\ +\x20\x63\x69\x72\x63\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x68\x00\x46\x00\x6f\x00\x75\x00\x6e\ +\x00\x64\x00\x20\x00\x31\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\ +\x00\x65\x00\x64\x00\x20\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\ +\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\ +\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x69\x00\x74\x00\x0a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x46\x6f\x75\x6e\x64\x20\ +\x31\x20\x63\x6c\x6f\x73\x65\x64\x20\x73\x6b\x65\x74\x63\x68\x20\ +\x6f\x62\x6a\x65\x63\x74\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\ +\x20\x66\x61\x63\x65\x20\x66\x72\x6f\x6d\x20\x69\x74\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4e\x00\x42\ +\x00\x75\x00\x6c\x00\x75\x00\x6e\x00\x61\x00\x6e\x00\x20\x00\x31\ +\x00\x20\x00\x79\x00\xfc\x00\x7a\x00\x3a\x00\x20\x00\x62\x00\x61\ +\x01\x1f\x00\x6c\x00\x61\x00\x6e\x00\x74\x01\x31\x00\x6c\x00\x61\ +\x00\x72\x01\x31\x00\x20\x00\x61\x00\x79\x01\x31\x00\x6b\x00\x6c\ +\x00\x61\x00\x6e\x01\x31\x00\x79\x00\x6f\x00\x72\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x23\x46\x6f\x75\x6e\x64\x20\x31\x20\x66\x61\ +\x63\x65\x3a\x20\x65\x78\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x69\ +\x74\x73\x20\x77\x69\x72\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x5e\x00\x46\x00\x6f\x00\x75\x00\ +\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\ +\x2d\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\ +\x72\x00\x69\x00\x63\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x73\x00\x3a\x00\x20\x00\x64\x00\x72\x00\x61\x00\ +\x66\x00\x74\x00\x69\x00\x66\x00\x79\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x69\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2f\x46\x6f\x75\x6e\x64\x20\x31\x20\x6e\x6f\x6e\x2d\x70\x61\x72\ +\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\ +\x20\x64\x72\x61\x66\x74\x69\x66\x79\x69\x6e\x67\x20\x69\x74\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\ +\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\ +\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x64\x00\x67\ +\x00\x65\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\ +\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x46\x6f\x75\x6e\ +\x64\x20\x31\x20\x6f\x70\x65\x6e\x20\x65\x64\x67\x65\x3a\x20\x6d\ +\x61\x6b\x69\x6e\x67\x20\x61\x20\x6c\x69\x6e\x65\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\x00\x31\x00\ +\x20\x00\x61\x00\xe7\x01\x31\x00\x6b\x00\x20\x00\xe7\x00\x69\x00\ +\x7a\x00\x67\x00\x69\x00\x20\x00\x62\x00\x75\x00\x6c\x00\x75\x00\ +\x6e\x00\x64\x00\x75\x00\x3a\x00\x20\x00\x6b\x00\x61\x00\x70\x00\ +\x61\x00\x74\x01\x31\x00\x6c\x01\x31\x00\x79\x00\x6f\x00\x72\x00\ +\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x46\x6f\x75\x6e\x64\ +\x20\x31\x20\x6f\x70\x65\x6e\x20\x77\x69\x72\x65\x3a\x20\x63\x6c\ +\x6f\x73\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x68\x00\x42\x00\x75\x00\x6c\x00\ +\x75\x00\x6e\x00\x61\x00\x6e\x00\x20\x00\x31\x00\x20\x00\x70\x00\ +\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\ +\x6b\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x3a\x00\ +\x20\x00\x62\x00\x61\x01\x1f\x01\x31\x00\x6d\x00\x6c\x01\x31\x00\ +\x6c\x01\x31\x00\x6b\x00\x6c\x00\x61\x00\x72\x01\x31\x00\x20\x00\ +\xe7\x00\xf6\x00\x7a\x00\xfc\x00\x6c\x00\xfc\x00\x79\x00\x6f\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x46\x6f\x75\x6e\x64\ +\x20\x31\x20\x70\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\ +\x6a\x65\x63\x74\x3a\x20\x62\x72\x65\x61\x6b\x69\x6e\x67\x20\x69\ +\x74\x73\x20\x64\x65\x70\x65\x6e\x64\x65\x6e\x63\x69\x65\x73\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5a\ +\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\ +\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x69\x00\x66\x00\x69\ +\x00\x63\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x3a\x00\x20\x00\x73\x00\x6f\ +\x00\x6c\x00\x69\x00\x64\x00\x69\x00\x66\x00\x79\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x69\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2d\x46\x6f\x75\x6e\x64\x20\x31\x20\x73\x6f\x6c\x69\ +\x64\x69\x66\x69\x63\x61\x62\x6c\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x3a\x20\x73\x6f\x6c\x69\x64\x69\x66\x79\x69\x6e\x67\x20\x69\x74\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x3a\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x32\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\ +\x3a\x00\x20\x00\x66\x00\x75\x00\x73\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x0a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1d\x46\x6f\x75\x6e\x64\x20\x32\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\ +\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x56\x00\x42\x00\x75\x00\x6c\x00\x75\x00\x6e\x00\x61\x00\x6e\ +\x00\x20\x00\x32\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\ +\x00\x3a\x00\x20\x00\x62\x00\x69\x00\x72\x00\x62\x00\x69\x00\x72\ +\x00\x6c\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x6e\ +\x00\x20\x00\xe7\x01\x31\x00\x6b\x00\x61\x00\x72\x01\x31\x00\x6c\ +\x01\x31\x00\x79\x00\x6f\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x22\x46\x6f\x75\x6e\x64\x20\x32\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x3a\x20\x73\x75\x62\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x74\ +\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x46\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\ +\x00\x61\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\ +\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x3a\x00\x20\x00\x6d\ +\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\ +\x00\x66\x00\x61\x00\x63\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x23\x46\x6f\x75\x6e\x64\x20\x61\x20\x63\x6c\x6f\x73\ +\x65\x64\x20\x77\x69\x72\x65\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\ +\x61\x20\x66\x61\x63\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x5c\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\ +\x64\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x73\x00\ +\x3a\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x65\x00\x61\x00\x63\x00\x68\x00\x20\x00\x6f\x00\ +\x70\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x69\x00\x64\x00\ +\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x46\x6f\x75\ +\x6e\x64\x20\x67\x72\x6f\x75\x70\x73\x3a\x20\x63\x6c\x6f\x73\x69\ +\x6e\x67\x20\x65\x61\x63\x68\x20\x6f\x70\x65\x6e\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x69\x6e\x73\x69\x64\x65\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5a\x00\x46\x00\x6f\x00\ +\x75\x00\x6e\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\ +\x61\x00\x69\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x63\x00\ +\x75\x00\x72\x00\x76\x00\x65\x00\x73\x00\x3a\x00\x20\x00\x66\x00\ +\x75\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x6d\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x46\ +\x6f\x75\x6e\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x63\x6f\x6e\ +\x74\x61\x69\x6e\x69\x6e\x67\x20\x63\x75\x72\x76\x65\x73\x3a\x20\ +\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x62\x00\x42\x00\x75\ +\x00\x6c\x00\x75\x00\x6e\x00\x61\x00\x6e\x00\x20\x00\x73\x00\x61\ +\x00\x64\x00\x65\x00\x63\x00\x65\x00\x20\x00\x62\x00\x61\x01\x1f\ +\x00\x6c\x00\x61\x00\x6e\x00\x74\x01\x31\x00\x6c\x00\x61\x00\x72\ +\x00\x3a\x00\x20\x00\x6b\x00\x65\x00\x6e\x00\x61\x00\x72\x00\x6c\ +\x00\x61\x00\x72\x01\x31\x00\x20\x00\x61\x00\x79\x01\x31\x00\x6b\ +\x00\x6c\x00\x61\x00\x6e\x01\x31\x00\x79\x00\x6f\x00\x72\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x29\x46\x6f\x75\x6e\x64\x20\x6f\x6e\ +\x6c\x79\x20\x77\x69\x72\x65\x73\x3a\x20\x65\x78\x74\x72\x61\x63\ +\x74\x69\x6e\x67\x20\x74\x68\x65\x69\x72\x20\x65\x64\x67\x65\x73\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x42\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x73\x00\ +\x65\x00\x76\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\x00\x65\x00\ +\x64\x00\x67\x00\x65\x00\x73\x00\x3a\x00\x20\x00\x77\x00\x69\x00\ +\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x6d\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x46\x6f\x75\ +\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x65\x64\x67\x65\x73\ +\x3a\x20\x77\x69\x72\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5e\x00\x42\ +\x00\x75\x00\x6c\x00\x75\x00\x6e\x00\x61\x00\x6e\x00\x20\x00\x62\ +\x00\x69\x00\x72\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x66\x00\x61\ +\x00\x7a\x00\x6c\x00\x61\x00\x20\x00\x79\x00\xfc\x00\x7a\x00\x3a\ +\x00\x20\x00\x79\x00\xfc\x00\x7a\x00\x6c\x00\x65\x00\x72\x00\x20\ +\x00\x61\x00\x79\x00\x72\x01\x31\x01\x5f\x00\x74\x01\x31\x00\x72\ +\x01\x31\x00\x6c\x01\x31\x00\x79\x00\x6f\x00\x72\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x24\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\ +\x72\x61\x6c\x20\x66\x61\x63\x65\x73\x3a\x20\x73\x70\x6c\x69\x74\ +\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x66\x00\x46\x00\x6f\x00\x75\ +\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x65\x00\x76\x00\x65\x00\x72\ +\x00\x61\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x63\ +\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\ +\x00\x20\x00\x65\x00\x64\x00\x67\x00\x65\x00\x73\x00\x3a\x00\x20\ +\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x0a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x46\x6f\x75\x6e\x64\x20\ +\x73\x65\x76\x65\x72\x61\x6c\x20\x6e\x6f\x6e\x2d\x63\x6f\x6e\x6e\ +\x65\x63\x74\x65\x64\x20\x65\x64\x67\x65\x73\x3a\x20\x6d\x61\x6b\ +\x69\x6e\x67\x20\x63\x6f\x6d\x70\x6f\x75\x6e\x64\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6a\x00\x46\x00\ +\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x65\x00\x76\x00\ +\x65\x00\x72\x00\x61\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\ +\x2d\x00\x74\x00\x72\x00\x65\x00\x61\x00\x74\x00\x61\x00\x62\x00\ +\x6c\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x73\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\ +\x75\x00\x6e\x00\x64\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x35\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6e\ +\x6f\x6e\x2d\x74\x72\x65\x61\x74\x61\x62\x6c\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x63\x6f\x6d\ +\x70\x6f\x75\x6e\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x72\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\ +\x00\x20\x00\x73\x00\x65\x00\x76\x00\x65\x00\x72\x00\x61\x00\x6c\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\ +\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\ +\x00\x73\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\ +\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x63\x00\x20\x00\x66\ +\x00\x61\x00\x63\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x39\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x6f\x72\x20\x66\x61\x63\x65\x73\ +\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x70\x61\x72\x61\x6d\ +\x65\x74\x72\x69\x63\x20\x66\x61\x63\x65\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x46\x00\x6f\x00\ +\x75\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x65\x00\x76\x00\x65\x00\ +\x72\x00\x61\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x73\x00\x3a\x00\x20\x00\x66\x00\x75\x00\x73\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x6d\x00\ +\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x46\x6f\x75\x6e\x64\ +\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x7e\x00\x42\ +\x00\x75\x00\x6c\x00\x75\x00\x6e\x00\x61\x00\x6e\x00\x20\x00\x62\ +\x00\x69\x00\x72\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x66\x00\x61\ +\x00\x7a\x00\x6c\x00\x61\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\ +\x00\x65\x00\x3a\x00\x20\x00\x69\x00\x6c\x00\x6b\x00\x20\x00\x6e\ +\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x64\x00\x65\x00\x6e\x00\x20\ +\x00\x62\x00\x75\x00\x6c\x00\x75\x00\x6e\x00\x61\x00\x6e\x00\x6c\ +\x00\x61\x00\x72\x00\x20\x00\xe7\x01\x31\x00\x6b\x00\x61\x00\x72\ +\x01\x31\x00\x6c\x01\x31\x00\x79\x00\x6f\x00\x72\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x3b\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\ +\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x73\x75\x62\ +\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\x66\x72\ +\x6f\x6d\x20\x74\x68\x65\x20\x66\x69\x72\x73\x74\x20\x6f\x6e\x65\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x9e\x00\x49\x00\x66\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\ +\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x61\x00\x6e\x00\x20\x00\ +\x4f\x00\x43\x00\x43\x00\x2d\x00\x73\x00\x74\x00\x79\x00\x6c\x00\ +\x65\x00\x20\x00\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x00\ +\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\ +\x20\x00\x70\x00\x65\x00\x72\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\ +\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\x00\ +\x61\x00\x64\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x63\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x69\x00\ +\x63\x00\x20\x00\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x49\x66\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x61\x6e\x20\x4f\x43\x43\x2d\x73\x74\x79\x6c\ +\x65\x20\x6f\x66\x66\x73\x65\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\ +\x20\x70\x65\x72\x66\x6f\x72\x6d\x65\x64\x20\x69\x6e\x73\x74\x65\ +\x61\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x63\x6c\x61\x73\x73\x69\ +\x63\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x98\x00\x49\x00\x66\x00\x20\x00\x63\ +\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x20\ +\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\x74\ +\x00\x20\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x73\x00\x68\x00\x20\ +\x00\x75\x00\x6e\x00\x74\x00\x69\x00\x6c\x00\x20\x00\x79\x00\x6f\ +\x00\x75\x00\x20\x00\x70\x00\x72\x00\x65\x00\x73\x00\x73\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\ +\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x62\x00\x75\x00\x74\x00\x74\ +\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x67\x00\x61\x00\x69\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4c\x49\x66\x20\x63\x68\x65\ +\x63\x6b\x65\x64\x2c\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x77\x69\ +\x6c\x6c\x20\x6e\x6f\x74\x20\x66\x69\x6e\x69\x73\x68\x20\x75\x6e\ +\x74\x69\x6c\x20\x79\x6f\x75\x20\x70\x72\x65\x73\x73\x20\x74\x68\ +\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x62\x75\x74\x74\x6f\x6e\ +\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x8e\x00\x42\x00\x75\x00\x20\x00\x6f\x00\x6e\ +\x00\x61\x00\x79\x00\x20\x00\x6b\x00\x75\x00\x74\x00\x75\x00\x73\ +\x00\x75\x00\x20\x00\x69\x01\x5f\x00\x61\x00\x72\x00\x65\x00\x74\ +\x00\x6c\x00\x69\x00\x79\x00\x73\x00\x65\x00\x2c\x00\x20\x00\x6e\ +\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x6c\x00\x65\x00\x72\x00\x20\ +\x00\x74\x00\x61\x01\x5f\x01\x31\x00\x6d\x00\x61\x00\x20\x00\x64\ +\x00\x65\x01\x1f\x00\x69\x00\x6c\x00\x20\x00\x6b\x00\x6f\x00\x70\ +\x00\x79\x00\x61\x00\x6c\x00\x61\x00\x6d\x00\x61\x00\x20\x00\x79\ +\x00\x61\x00\x70\x01\x31\x00\x6c\x01\x31\x00\x72\x00\x20\x00\x28\ +\x00\x43\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x49\x66\ +\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x63\x6f\x70\x69\x65\x64\ +\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x6d\x6f\x76\x65\ +\x64\x20\x28\x43\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x20\x00\x49\x00\x6e\x00\x73\x00\x74\x00\x61\x00\ +\x6c\x00\x6c\x00\x65\x00\x64\x00\x20\x00\x4d\x00\x61\x00\x63\x00\ +\x72\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x49\ +\x6e\x73\x74\x61\x6c\x6c\x65\x64\x20\x4d\x61\x63\x72\x6f\x73\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x00\ +\x4c\x00\x61\x00\x73\x00\x74\x00\x20\x00\x70\x00\x6f\x00\x69\x00\ +\x6e\x00\x74\x00\x20\x00\x68\x00\x61\x00\x73\x00\x20\x00\x62\x00\ +\x65\x00\x65\x00\x6e\x00\x20\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\ +\x76\x00\x65\x00\x64\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1c\x4c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x68\x61\x73\x20\ +\x62\x65\x65\x6e\x20\x72\x65\x6d\x6f\x76\x65\x64\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\xc7\x00\ +\x69\x00\x7a\x00\x67\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x16\x00\xc7\x00\x69\x00\x7a\x00\x67\x00\x69\x00\ +\x20\x00\x72\x00\x65\x00\x6e\x00\x67\x00\x69\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0a\x4c\x69\x6e\x65\x20\x43\x6f\x6c\x6f\x72\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\ +\xc7\x00\x69\x00\x7a\x00\x67\x00\x69\x00\x20\x00\x67\x00\x65\x00\ +\x6e\x00\x69\x01\x5f\x00\x6c\x00\x69\x01\x1f\x00\x69\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x4c\x69\x6e\x65\x20\x57\x69\x64\x74\ +\x68\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x08\x00\x54\x00\x61\x01\x5f\x01\x31\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x4d\x6f\x76\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x36\x00\x4e\x00\x6f\x00\x20\x00\x6d\x00\ +\x6f\x00\x72\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\ +\x67\x00\x72\x00\x61\x00\x64\x00\x65\x00\x20\x00\x70\x00\x6f\x00\ +\x73\x00\x73\x00\x69\x00\x62\x00\x6c\x00\x65\x00\x0a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1b\x4e\x6f\x20\x6d\x6f\x72\x65\x20\x64\ +\x6f\x77\x6e\x67\x72\x61\x64\x65\x20\x70\x6f\x73\x73\x69\x62\x6c\ +\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x4a\x00\x4e\x00\x6f\x00\x20\x00\x75\x00\x70\x00\x67\x00\x72\ +\x00\x61\x00\x64\x00\x65\x00\x20\x00\x61\x00\x76\x00\x61\x00\x69\ +\x00\x6c\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x66\x00\x6f\ +\x00\x72\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x0a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x25\x4e\x6f\x20\x75\x70\x67\x72\x61\x64\x65\ +\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x20\x66\x6f\x72\x20\x74\ +\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x48\x00\x69\x00\ +\xe7\x00\x62\x00\x69\x00\x72\x00\x69\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x1e\x00\x59\x00\xfc\x00\x7a\x00\x6c\x00\ +\x65\x00\x72\x00\x69\x00\x6e\x00\x20\x00\x73\x00\x61\x00\x79\x01\ +\x31\x00\x73\x01\x31\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4e\ +\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x73\x69\x64\x65\x73\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x55\ +\x00\x7a\x00\x61\x00\x6b\x00\x6c\x00\x61\x01\x5f\x00\x6d\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x4f\x66\x66\x73\x65\x74\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x72\ +\x00\x55\x00\x7a\x00\x61\x00\x6b\x00\x6c\x00\x61\x01\x5f\x00\x74\ +\x01\x31\x00\x72\x00\x6d\x00\x61\x00\x20\x00\x62\x00\x69\x00\x72\ +\x00\x20\x00\x6b\x00\x65\x00\x72\x00\x65\x00\x64\x00\x65\x00\x20\ +\x00\x73\x00\x61\x00\x64\x00\x65\x00\x63\x00\x65\x00\x20\x00\x62\ +\x00\x69\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\ +\x00\x20\x00\xfc\x00\x7a\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x64\ +\x00\x65\x00\x20\x00\xe7\x00\x61\x00\x6c\x01\x31\x01\x5f\x01\x31\ +\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x4f\x66\x66\x73\ +\x65\x74\x20\x6f\x6e\x6c\x79\x20\x77\x6f\x72\x6b\x73\x20\x6f\x6e\ +\x20\x6f\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x61\x74\x20\x61\ +\x20\x74\x69\x6d\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x52\x00\x4f\x00\x6e\x00\x65\x00\x20\x00\x77\ +\x00\x69\x00\x72\x00\x65\x00\x20\x00\x69\x00\x73\x00\x20\x00\x6e\ +\x00\x6f\x00\x74\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x61\ +\x00\x72\x00\x2c\x00\x20\x00\x75\x00\x70\x00\x67\x00\x72\x00\x61\ +\x00\x64\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x64\ +\x00\x6f\x00\x6e\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x29\x4f\x6e\x65\x20\x77\x69\x72\x65\x20\x69\x73\x20\x6e\x6f\ +\x74\x20\x70\x6c\x61\x6e\x61\x72\x2c\x20\x75\x70\x67\x72\x61\x64\ +\x65\x20\x6e\x6f\x74\x20\x64\x6f\x6e\x65\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x4e\x00\x65\x00\ +\x73\x00\x6e\x00\x65\x00\x20\x00\x53\x00\x65\x00\xe7\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0b\x50\x69\x63\x6b\x20\x4f\x62\x6a\x65\ +\x63\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x5a\x00\xc7\x00\x69\x00\x7a\x00\x69\x00\x6d\x00\x20\x00\x64\ +\x00\xfc\x00\x7a\x00\x6c\x00\x65\x00\x6d\x00\x69\x00\x6e\x00\x69\ +\x00\x20\x00\x74\x00\x61\x00\x6e\x01\x31\x00\x6d\x00\x6c\x00\x61\ +\x00\x6d\x00\x61\x00\x6b\x00\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\ +\x00\x20\x00\x62\x00\x69\x00\x72\x00\x20\x00\x79\x00\xfc\x00\x7a\ +\x00\x20\x00\x73\x00\x65\x00\xe7\x00\x69\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x28\x50\x69\x63\x6b\x20\x61\x20\x66\x61\x63\ +\x65\x20\x74\x6f\x20\x64\x65\x66\x69\x6e\x65\x20\x74\x68\x65\x20\ +\x64\x72\x61\x77\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x41\ +\x00\x72\x00\x61\x00\x6c\x01\x31\x00\x6b\x00\x20\x00\x73\x00\x65\ +\x00\xe7\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x50\x69\x63\x6b\ +\x20\x61\x70\x65\x72\x74\x75\x72\x65\x3a\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x54\x00\x61\x00\ +\x62\x00\x61\x00\x6e\x00\x20\x00\x61\x00\xe7\x01\x31\x00\x73\x01\ +\x31\x00\x6e\x01\x31\x00\x20\x00\x73\x00\x65\x00\xe7\x00\x69\x00\ +\x6e\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\ +\x6b\x20\x62\x61\x73\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x54\ +\x00\x65\x00\x6d\x00\x65\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\x6b\ +\x00\x74\x00\x61\x00\x79\x01\x31\x00\x20\x00\x73\x00\x65\x00\xe7\ +\x00\x69\x00\x6e\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\ +\x50\x69\x63\x6b\x20\x62\x61\x73\x65\x20\x70\x6f\x69\x6e\x74\x3a\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x2c\x00\x4d\x00\x65\x00\x72\x00\x6b\x00\x65\x00\x7a\x00\x20\x00\ +\x6e\x00\x6f\x00\x6b\x00\x74\x00\x61\x00\x73\x01\x31\x00\x6e\x01\ +\x31\x00\x20\x00\x73\x00\x65\x00\xe7\x00\x69\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x13\x50\x69\x63\x6b\x20\x63\x65\x6e\x74\ +\x65\x72\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x4d\x00\x65\x00\x73\ +\x00\x61\x00\x66\x00\x65\x00\x79\x00\x69\x00\x20\x00\x73\x00\x65\ +\x00\xe7\x00\x69\x00\x6e\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0f\x50\x69\x63\x6b\x20\x64\x69\x73\x74\x61\x6e\x63\x65\x3a\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x2c\x00\x42\x00\x69\x00\x74\x00\x69\x01\x5f\x00\x20\x00\x6e\x00\ +\x6f\x00\x6b\x00\x74\x00\x61\x00\x73\x01\x31\x00\x6e\x01\x31\x00\ +\x20\x00\x73\x00\x65\x00\xe7\x00\x69\x00\x6e\x00\x3a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x10\x50\x69\x63\x6b\x20\x65\x6e\x64\x20\ +\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x2a\x00\x42\x00\x69\x00\x72\x00\x69\x00\ +\x6e\x00\x63\x00\x69\x00\x20\x00\x6e\x00\x6f\x00\x6b\x00\x74\x00\ +\x61\x00\x79\x01\x31\x00\x20\x00\x73\x00\x65\x00\xe7\x00\x69\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\x6b\x20\ +\x66\x69\x72\x73\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x4b\x00\ +\x6f\x00\x6e\x00\x75\x00\x6d\x00\x20\x00\x6e\x00\x6f\x00\x6b\x00\ +\x74\x00\x61\x00\x73\x01\x31\x00\x6e\x01\x31\x00\x20\x00\x73\x00\ +\x65\x00\xe7\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x15\x50\x69\x63\x6b\x20\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x20\x70\ +\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x70\x00\x42\x00\x69\x00\x72\x00\x20\x00\x73\ +\x00\x6f\x00\x6e\x00\x72\x00\x61\x00\x6b\x00\x69\x00\x20\x00\x6e\ +\x00\x6f\x00\x6b\x00\x74\x00\x61\x00\x79\x01\x31\x00\x20\x00\x73\ +\x00\x65\x00\xe7\x00\x69\x00\x6e\x00\x2c\x00\x20\x00\x79\x00\x61\ +\x00\x20\x00\x64\x00\x61\x00\x20\x00\x28\x00\x46\x00\x29\x00\x42\ +\x00\x69\x00\x74\x00\x69\x00\x72\x00\x20\x00\x79\x00\x61\x00\x20\ +\x00\x64\x00\x61\x00\x20\x00\x28\x00\x43\x00\x29\x00\x4b\x00\x61\ +\x00\x70\x00\x61\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\ +\x50\x69\x63\x6b\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x2c\ +\x20\x6f\x72\x20\x28\x46\x29\x69\x6e\x69\x73\x68\x20\x6f\x72\x20\ +\x28\x43\x29\x6c\x6f\x73\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x32\x00\x42\x00\x69\x00\x72\x00\ +\x20\x00\x73\x00\x6f\x00\x6e\x00\x72\x00\x61\x00\x6b\x00\x69\x00\ +\x20\x00\x6e\x00\x6f\x00\x6b\x00\x74\x00\x61\x00\x79\x01\x31\x00\ +\x20\x00\x73\x00\x65\x00\xe7\x00\x69\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\x6e\x65\x78\x74\x20\x70\ +\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x28\x00\x4b\x00\x61\x00\x72\x01\x5f\x01\x31\ +\x00\x74\x00\x20\x00\x6e\x00\x6f\x00\x6b\x00\x74\x00\x61\x00\x79\ +\x01\x31\x00\x20\x00\x73\x00\x65\x00\xe7\x00\x69\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x6f\x70\x70\ +\x6f\x73\x69\x74\x65\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x59\x00\ +\x61\x00\x72\x01\x31\x00\xe7\x00\x61\x00\x70\x01\x31\x00\x20\x00\ +\x73\x00\x65\x00\xe7\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x50\x69\x63\x6b\x20\x72\x61\x64\x69\x75\x73\x3a\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\ +\x00\x44\x00\xf6\x00\x6e\x00\x64\x00\xfc\x00\x72\x00\x6d\x00\x65\ +\x00\x20\x00\x61\x00\xe7\x01\x31\x00\x73\x01\x31\x00\x6e\x01\x31\ +\x00\x20\x00\x73\x00\x65\x00\xe7\x00\x69\x00\x6e\x00\x3a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x72\x6f\x74\ +\x61\x74\x69\x6f\x6e\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x00\x44\x00\ +\xf6\x00\x6e\x00\x64\x00\xfc\x00\x72\x00\x6d\x00\x65\x00\x20\x00\ +\x6d\x00\x65\x00\x72\x00\x6b\x00\x65\x00\x7a\x00\x69\x00\x6e\x00\ +\x69\x00\x20\x00\x73\x00\x65\x00\xe7\x00\x69\x00\x6e\x00\x3a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x16\x50\x69\x63\x6b\x20\x72\x6f\ +\x74\x61\x74\x69\x6f\x6e\x20\x63\x65\x6e\x74\x65\x72\x3a\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x00\ +\xd6\x00\x6c\x00\xe7\x00\x65\x00\x6b\x00\x6c\x00\x65\x00\x6d\x00\ +\x65\x00\x20\x00\x6b\x00\x61\x00\x74\x00\x73\x00\x61\x00\x79\x01\ +\x31\x00\x73\x01\x31\x00\x6e\x01\x31\x00\x20\x00\x73\x00\x65\x00\ +\xe7\x00\x69\x00\x6e\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x13\x50\x69\x63\x6b\x20\x73\x63\x61\x6c\x65\x20\x66\x61\x63\x74\ +\x6f\x72\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x2e\x00\x42\x00\x61\x01\x5f\x00\x6c\x00\x61\x00\x6e\ +\x00\x67\x01\x31\x00\xe7\x00\x20\x00\x61\x00\xe7\x01\x31\x00\x73\ +\x01\x31\x00\x6e\x01\x31\x00\x20\x00\x73\x00\x65\x00\xe7\x00\x69\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\x6b\ +\x20\x73\x74\x61\x72\x74\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\x00\x42\ +\x00\x61\x01\x5f\x00\x6c\x00\x61\x00\x6e\x00\x67\x01\x31\x00\xe7\ +\x00\x20\x00\x6e\x00\x6f\x00\x6b\x00\x74\x00\x61\x00\x73\x01\x31\ +\x00\x6e\x01\x31\x00\x20\x00\x73\x00\x65\x00\xe7\x00\x69\x00\x6e\ +\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\x6b\ +\x20\x73\x74\x61\x72\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x4e\ +\x00\x6f\x00\x6b\x00\x74\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0c\x00\xc7\x00\x6f\x00\x6b\x00\x67\x00\ +\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x50\x6f\x6c\ +\x79\x67\x6f\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0e\x00\x59\x00\x61\x00\x72\x01\x31\x00\xe7\x00\x61\ +\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x61\x64\x69\ +\x75\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x22\x00\xc7\x00\x65\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x69\ +\x00\x6e\x00\x20\x00\x59\x00\x61\x00\x72\x01\x31\x00\xe7\x00\x61\ +\x00\x70\x01\x31\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x61\ +\x64\x69\x75\x73\x20\x6f\x66\x20\x43\x69\x72\x63\x6c\x65\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x44\ +\x00\x69\x00\x6b\x00\x64\x00\xf6\x00\x72\x00\x74\x00\x67\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x52\x65\x63\x74\ +\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x4a\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\ +\x65\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\x00\ +\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\ +\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x25\x52\x65\x6d\x6f\x76\x65\x20\ +\x70\x6f\x69\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\ +\x63\x75\x72\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x44\ +\x00\xf6\x00\x6e\x00\x64\x00\xfc\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x52\x6f\x74\x61\x74\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\xd6\x00\x6c\x00\xe7\ +\x00\x65\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x53\x63\ +\x61\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x1a\x00\x44\x00\xfc\x00\x7a\x00\x6c\x00\x65\x00\x6d\x00\ +\x69\x00\x20\x00\x73\x00\x65\x00\xe7\x00\x69\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0c\x53\x65\x6c\x65\x63\x74\x20\x50\x6c\ +\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x24\x00\x58\x00\x59\x00\x20\x00\x64\x00\xfc\x00\x7a\x00\ +\x6c\x00\x65\x00\x6d\x00\x69\x00\x6e\x00\x69\x00\x20\x00\x73\x00\ +\x65\x00\xe7\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0f\x53\x65\x6c\x65\x63\x74\x20\x58\x59\x20\x70\x6c\x61\x6e\x65\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\ +\x00\x58\x00\x5a\x00\x20\x00\x64\x00\xfc\x00\x7a\x00\x6c\x00\x65\ +\x00\x6d\x00\x69\x00\x6e\x00\x69\x00\x20\x00\x73\x00\x65\x00\xe7\ +\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\ +\x6c\x65\x63\x74\x20\x58\x5a\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\x59\x00\ +\x5a\x00\x20\x00\x64\x00\xfc\x00\x7a\x00\x6c\x00\x65\x00\x6d\x00\ +\x69\x00\x6e\x00\x69\x00\x20\x00\x73\x00\x65\x00\xe7\x00\x69\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\ +\x74\x20\x59\x5a\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x00\x54\x00\x61\x01\x5f\ +\x01\x31\x00\x6d\x00\x61\x00\x6b\x00\x20\x00\x69\x00\xe7\x00\x69\ +\x00\x6e\x00\x20\x00\x62\x00\x69\x00\x72\x00\x20\x00\x6e\x00\x65\ +\x00\x73\x00\x6e\x00\x65\x00\x20\x00\x73\x00\x65\x00\xe7\x00\x69\ +\x00\x6e\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x53\x65\ +\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\ +\x6f\x20\x6d\x6f\x76\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x44\x00\x55\x00\x7a\x00\x61\x00\x6b\x00\ +\x6c\x00\x61\x01\x5f\x00\x74\x01\x31\x00\x72\x00\x6d\x00\x61\x00\ +\x6b\x00\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\x00\x20\x00\x62\x00\ +\x69\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\ +\x20\x00\x73\x00\x65\x00\xe7\x00\x69\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1b\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x6f\x66\x66\x73\x65\x74\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3c\ +\x00\x44\x00\xf6\x00\x6e\x00\x64\x00\xfc\x00\x72\x00\x6d\x00\x65\ +\x00\x6b\x00\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\x00\x20\x00\x62\ +\x00\x69\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\ +\x00\x20\x00\x73\x00\x65\x00\xe7\x00\x69\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1b\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x72\x6f\x74\x61\x74\x65\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x3e\x00\xd6\x00\x6c\x00\xe7\x00\x65\x00\x6b\x00\x6c\x00\x65\x00\ +\x6d\x00\x65\x00\x6b\x00\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\x00\ +\x20\x00\x62\x00\x69\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x73\x00\ +\x6e\x00\x65\x00\x20\x00\x73\x00\x65\x00\xe7\x00\x69\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\ +\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x73\x63\x61\ +\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x3e\x00\x53\x00\x65\x00\xe7\x00\x69\x00\x6c\x00\x69\x00\ +\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x79\x00\x69\x00\ +\x20\x00\x64\x00\xfc\x00\x7a\x00\x65\x00\x6e\x00\x6c\x00\x65\x00\ +\x2f\x00\x67\x00\x65\x00\x6e\x00\x69\x01\x5f\x00\x6c\x00\x65\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x53\x65\x6c\x65\x63\ +\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x74\ +\x72\x69\x6d\x2f\x65\x78\x74\x65\x6e\x64\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x59\x00\xfc\x00\ +\x6b\x00\x73\x00\x65\x00\x6c\x00\x74\x00\x6d\x00\x65\x00\x6b\x00\ +\x20\x00\x69\x00\xe7\x00\x69\x00\x6e\x00\x20\x00\x62\x00\x69\x00\ +\x72\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x20\x00\ +\x73\x00\x65\x00\xe7\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1c\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x74\x6f\x20\x75\x70\x67\x72\x61\x64\x65\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\x00\ +\x47\x00\x65\x00\xe7\x00\x65\x00\x72\x00\x6c\x00\x69\x00\x20\x00\ +\x67\x00\xf6\x00\x72\x00\xfc\x00\x6e\x00\xfc\x01\x5f\x00\x65\x00\ +\x20\x00\x64\x00\x69\x00\x6b\x00\x20\x00\x64\x00\xfc\x00\x7a\x00\ +\x6c\x00\x65\x00\x6d\x00\x69\x00\x20\x00\x73\x00\x65\x00\xe7\x00\ +\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x53\x65\x6c\ +\x65\x63\x74\x20\x70\x6c\x61\x6e\x65\x20\x70\x65\x72\x70\x65\x6e\ +\x64\x69\x63\x75\x6c\x61\x72\x20\x74\x6f\x20\x74\x68\x65\x20\x63\ +\x75\x72\x72\x65\x6e\x74\x20\x76\x69\x65\x77\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x53\x00\x70\x00\ +\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x68\x00\x61\x00\x73\x00\ +\x20\x00\x62\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x63\x00\x6c\x00\ +\x6f\x00\x73\x00\x65\x00\x64\x00\x0a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x17\x53\x70\x6c\x69\x6e\x65\x20\x68\x61\x73\x20\x62\x65\ +\x65\x6e\x20\x63\x6c\x6f\x73\x65\x64\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x42\x00\x61\x01\x5f\ +\x00\x6c\x00\x61\x00\x6e\x00\x67\x01\x31\x00\xe7\x00\x20\x00\x61\ +\x00\xe7\x01\x31\x00\x73\x01\x31\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0b\x53\x74\x61\x72\x74\x20\x41\x6e\x67\x6c\x65\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x4d\x00\ +\x65\x00\x74\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x54\x65\x78\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x40\x00\x42\x00\x75\x00\x20\x00\x6e\x00\x65\x00\ +\x73\x00\x6e\x00\x65\x00\x20\x00\x64\x00\xfc\x00\x7a\x00\x65\x00\ +\x6e\x00\x6c\x00\x65\x00\x6e\x00\x65\x00\x62\x00\x69\x00\x6c\x00\ +\x69\x00\x72\x00\x20\x00\x64\x00\x65\x01\x1f\x00\x69\x00\x6c\x00\ +\x64\x00\x69\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x54\ +\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x20\ +\x69\x73\x20\x6e\x6f\x74\x20\x65\x64\x69\x74\x61\x62\x6c\x65\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\ +\x00\x4b\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\xfc\x00\x6b\ +\x00\x73\x00\x69\x00\x79\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x75\ +\x00\x6e\x00\x61\x00\x20\x00\x67\x00\x65\x00\xe7\x00\x65\x00\x72\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x54\x6f\x67\x67\x6c\x65\ +\x73\x20\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x4d\ +\x6f\x64\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x08\x00\x54\x00\x72\x00\x69\x00\x6d\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x04\x54\x72\x69\x6d\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x00\x53\x00\x6f\x00\x6e\x00\ +\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x69\x00\x20\x00\x67\x00\x65\x00\x72\x00\x69\x00\x20\x00\x61\x00\ +\x6c\x00\x20\x00\x28\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x2b\x00\ +\x5a\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x55\x6e\x64\ +\x6f\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x73\x65\x67\x6d\x65\ +\x6e\x74\x20\x28\x43\x54\x52\x4c\x2b\x5a\x29\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x47\x00\xf6\x00\ +\x72\x00\xfc\x00\x6e\x00\xfc\x00\x6d\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x56\x69\x65\x77\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\xa2\x00\x57\x00\x69\x00\x70\x00\x65\x00\ +\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x65\x00\x78\x00\ +\x69\x00\x73\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\ +\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x64\x00\ +\x20\x00\x73\x00\x74\x00\x61\x00\x72\x00\x74\x00\x73\x00\x20\x00\ +\x61\x00\x67\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x66\x00\x72\x00\ +\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6c\x00\ +\x61\x00\x73\x00\x74\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\ +\x74\x00\x20\x00\x28\x00\x57\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x51\x57\x69\x70\x65\x73\x20\x74\x68\x65\x20\x65\x78\x69\ +\x73\x74\x69\x6e\x67\x20\x73\x65\x67\x6d\x65\x6e\x74\x73\x20\x6f\ +\x66\x20\x74\x68\x69\x73\x20\x6c\x69\x6e\x65\x20\x61\x6e\x64\x20\ +\x73\x74\x61\x72\x74\x73\x20\x61\x67\x61\x69\x6e\x20\x66\x72\x6f\ +\x6d\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\ +\x20\x28\x57\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x14\x00\x57\x00\x69\x00\x72\x00\x65\x00\x20\x00\x74\ +\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0a\x57\x69\x72\x65\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\x00\x58\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x01\x58\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x40\x00\x62\x00\x69\x00\x72\x00\ +\x73\x00\x6f\x00\x6e\x00\x72\x00\x61\x00\x6b\x00\x69\x00\x20\x00\ +\x6e\x00\x6f\x00\x6b\x00\x74\x00\x61\x00\x6e\x01\x31\x00\x6e\x00\ +\x20\x00\x58\x00\x20\x00\x6b\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\ +\x69\x00\x6e\x00\x61\x00\x74\x01\x31\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1a\x58\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x20\ +\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x58\x00\ +\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x58\x59\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x58\x00\ +\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x58\x5a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\x00\x59\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x01\x59\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\x00\x62\x00\x69\x00\x72\ +\x00\x73\x00\x6f\x00\x6e\x00\x72\x00\x61\x00\x6b\x00\x69\x00\x20\ +\x00\x6e\x00\x6f\x00\x6b\x00\x74\x00\x61\x00\x6e\x01\x31\x00\x6e\ +\x00\x20\x00\x59\x00\x20\x00\x6b\x00\x6f\x00\x6f\x00\x72\x00\x64\ +\x00\x69\x00\x6e\x00\x61\x00\x74\x01\x31\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1a\x59\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\ +\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x59\ +\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x59\x5a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\x00\x5a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\x5a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\x00\x62\x00\x69\x00\ +\x72\x00\x73\x00\x6f\x00\x6e\x00\x72\x00\x61\x00\x6b\x00\x69\x00\ +\x20\x00\x6e\x00\x6f\x00\x6b\x00\x74\x00\x61\x00\x6e\x01\x31\x00\ +\x6e\x00\x20\x00\x5a\x00\x20\x00\x6b\x00\x6f\x00\x6f\x00\x72\x00\ +\x64\x00\x69\x00\x6e\x00\x61\x00\x74\x01\x31\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1a\x5a\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\ +\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\ +\x45\x00\x74\x00\x6b\x00\x69\x00\x6e\x00\x20\x00\x73\x00\xf6\x00\ +\x7a\x00\x20\x00\x64\x00\x69\x00\x7a\x00\x69\x00\x73\x00\x69\x00\ +\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x61\x63\x74\x69\x76\ +\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x3a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x54\x00\x61\x00\x73\ +\x00\x6c\x00\x61\x00\x6b\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x75\ +\x00\x74\x00\x20\x00\xe7\x00\x75\x00\x62\x00\x75\x01\x1f\x00\x75\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x64\x72\x61\x66\x74\x20\ +\x43\x6f\x6d\x6d\x61\x6e\x64\x20\x42\x61\x72\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\ +\x00\x00\xb4\x59\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x0b\x38\x00\x00\x00\x58\x00\x00\xa7\x02\x00\x00\x00\x59\ +\x00\x00\xa7\xa5\x00\x00\x00\x5a\x00\x00\xa8\x28\x00\x00\x05\xd9\ +\x00\x00\xa7\x65\x00\x00\x05\xda\x00\x00\xa7\x85\x00\x00\x05\xea\ +\x00\x00\xa8\x08\x00\x00\x07\x78\x00\x00\x77\xdd\x00\x00\x48\x83\ +\x00\x00\x02\x55\x00\x00\x48\x83\x00\x00\x7d\x8b\x00\x00\x68\x34\ +\x00\x00\x71\x69\x00\x01\xc1\x87\x00\x00\x4d\xb0\x00\x04\xa6\x79\ +\x00\x00\x80\xb8\x00\x04\xbb\x04\x00\x00\x0b\x00\x00\x04\xbb\x04\ +\x00\x00\x85\x38\x00\x05\x30\x45\x00\x00\x0c\xf3\x00\x05\x30\x45\ +\x00\x00\x96\xdd\x00\x05\x46\xc5\x00\x00\x0d\x1a\x00\x05\x46\xc5\ +\x00\x00\x97\x53\x00\x05\x56\x45\x00\x00\x4e\x81\x00\x05\x56\x45\ +\x00\x00\x98\x69\x00\x05\xac\xf4\x00\x00\x18\x00\x00\x05\xac\xf4\ +\x00\x00\xa4\x4f\x00\x05\xb8\xfd\x00\x00\xa5\x1d\x00\x05\xcf\xc7\ +\x00\x00\xa5\xa5\x00\x06\xab\x8c\x00\x00\x72\xbd\x00\x10\x84\x49\ +\x00\x00\x5b\xdf\x00\x12\x05\xba\x00\x00\xa2\x3b\x00\x16\xc6\xda\ +\x00\x00\x8c\x24\x00\x1f\xa4\xf7\x00\x00\x23\x16\x00\x2a\xa6\x79\ +\x00\x00\x7a\x0d\x00\x2b\xc4\xaf\x00\x00\x7b\x1d\x00\x2b\xe0\x65\ +\x00\x00\x7b\x4c\x00\x39\xdf\x33\x00\x00\x31\xea\x00\x3a\x9e\x1b\ +\x00\x00\x6a\x65\x00\x3d\xa1\x19\x00\x00\x7e\xa8\x00\x3e\x93\x83\ +\x00\x00\x32\xf0\x00\x48\x8f\x7c\x00\x00\x24\x22\x00\x48\x98\x89\ +\x00\x00\x03\x02\x00\x49\xe0\x85\x00\x00\x21\x56\x00\x49\xe0\x85\ +\x00\x00\x82\xfb\x00\x4a\x36\x45\x00\x00\x05\xd0\x00\x4b\x66\x35\ +\x00\x00\x2e\xf0\x00\x4b\x66\x37\x00\x00\x2f\x31\x00\x4b\x66\x39\ +\x00\x00\x2f\x72\x00\x57\x60\x54\x00\x00\x0f\x92\x00\x57\x60\x54\ +\x00\x00\x9e\xc6\x00\x58\xfd\xf4\x00\x00\x52\x5c\x00\x59\x98\x25\ +\x00\x00\x12\x43\x00\x59\x98\x25\x00\x00\xa0\x3a\x00\x6a\x58\x9a\ +\x00\x00\x9a\x76\x00\x79\xef\xd4\x00\x00\x78\x15\x00\x7e\x7f\x0e\ +\x00\x00\x6e\xde\x00\x8a\x23\x95\x00\x00\x27\x76\x00\x8a\x23\x97\ +\x00\x00\x27\xc0\x00\x8a\x23\x99\x00\x00\x28\x0a\x00\x91\xbc\xe9\ +\x00\x00\x0d\x41\x00\xa6\x37\x3f\x00\x00\x26\x4b\x00\xaa\x80\x25\ +\x00\x00\x83\xa7\x00\xac\xd6\x04\x00\x00\x3e\x88\x00\xc0\xac\x63\ +\x00\x00\x84\x31\x00\xc6\xe3\x6e\x00\x00\x22\x87\x00\xcb\xa8\x14\ +\x00\x00\x77\x2d\x00\xfc\x00\xca\x00\x00\x92\xb8\x01\x19\x8d\xde\ +\x00\x00\x57\x52\x01\x21\xd6\x39\x00\x00\x5a\xc6\x01\x22\xb4\xf9\ +\x00\x00\x12\x70\x01\x2f\x8e\x7e\x00\x00\x65\x1a\x01\x48\xfe\xa3\ +\x00\x00\x33\x6a\x01\x53\xf3\xaa\x00\x00\x88\xc1\x01\x56\x16\x4a\ +\x00\x00\x92\x35\x01\x5c\xde\xba\x00\x00\x97\xe0\x01\x67\x0d\x8a\ +\x00\x00\x8d\xcb\x01\x69\x11\x7a\x00\x00\x9d\x57\x01\x69\x97\x98\ +\x00\x00\x35\xd8\x01\x82\x39\x0a\x00\x00\x9b\x04\x01\x8b\x68\x75\ +\x00\x00\xa4\xd4\x01\x8b\x89\x79\x00\x00\x05\xff\x01\xa1\x7f\x63\ +\x00\x00\x1a\x79\x01\xb1\x5d\x09\x00\x00\x6b\x00\x01\xc1\xd9\xde\ +\x00\x00\x5e\x04\x01\xd2\x8f\xd3\x00\x00\x52\xf7\x01\xd4\x10\x23\ +\x00\x00\x3d\x99\x01\xdd\x83\xfa\x00\x00\x99\x58\x01\xdf\x11\x43\ +\x00\x00\x05\x26\x01\xe2\xf4\x5a\x00\x00\xa1\xe4\x01\xfc\xae\xd3\ +\x00\x00\x78\x56\x02\x05\xbe\x25\x00\x00\x82\x94\x02\x2c\xd9\x60\ +\x00\x00\x1c\x29\x02\x2f\xb5\x14\x00\x00\x1b\x6a\x02\x46\x58\x0a\ +\x00\x00\x9c\xd5\x02\x57\xf8\x08\x00\x00\x0a\x0c\x02\x65\xad\x62\ +\x00\x00\xa8\xc8\x02\x6e\x07\xe2\x00\x00\x56\x1a\x02\x76\x24\x13\ +\x00\x00\x3a\xf5\x02\x7d\xe0\x55\x00\x00\x57\x02\x02\x94\x46\x1a\ +\x00\x00\x9a\xbd\x02\x95\xca\xb5\x00\x00\x30\xbf\x02\xa7\x2c\x15\ +\x00\x00\x04\x02\x02\xaa\x36\x95\x00\x00\x79\xac\x02\xab\x87\xd4\ +\x00\x00\x7a\x3c\x02\xb1\xf0\xba\x00\x00\x8f\x7e\x02\xbf\xaa\x8e\ +\x00\x00\x36\xf9\x02\xc0\x66\xf2\x00\x00\x61\xbc\x02\xc8\x3f\xf5\ +\x00\x00\x69\xe3\x02\xd9\xa4\xb9\x00\x00\x71\x1e\x02\xdb\x1a\x94\ +\x00\x00\x07\x21\x03\x01\x84\xc4\x00\x00\x93\x83\x03\x12\x97\x6a\ +\x00\x00\x91\x70\x03\x14\x79\xca\x00\x00\x97\x75\x03\x1a\x14\x14\ +\x00\x00\x2d\x1e\x03\x1a\x16\x59\x00\x00\x58\x67\x03\x2f\x1a\x6a\ +\x00\x00\x7b\xbd\x03\x7e\xca\xb5\x00\x00\x49\x14\x03\x85\x74\x48\ +\x00\x00\x44\x96\x03\x88\x1f\xd4\x00\x00\x49\xcb\x03\x9e\x58\xa5\ +\x00\x00\x00\x34\x03\xb3\x9e\xfa\x00\x00\x9b\x78\x03\xb5\xc8\x9a\ +\x00\x00\x9c\x5e\x03\xbd\xd4\xe4\x00\x00\x7c\x40\x03\xc4\x3c\xf5\ +\x00\x00\x7e\x74\x03\xc5\xd5\x5e\x00\x00\x08\xad\x03\xc5\xd5\x5e\ +\x00\x00\x83\x80\x03\xcb\x0d\xe5\x00\x00\xa0\x61\x03\xdc\x0c\xd4\ +\x00\x00\x7a\x97\x03\xe1\x78\x25\x00\x00\x81\xee\x03\xf2\x70\x35\ +\x00\x00\x29\xf8\x03\xf2\xbd\x60\x00\x00\x13\x5e\x03\xfb\x0f\x04\ +\x00\x00\x2c\xb8\x04\x21\x23\x23\x00\x00\x1f\x43\x04\x2e\x73\x33\ +\x00\x00\x6d\x53\x04\x56\x06\x93\x00\x00\x2b\x4b\x04\x60\x7c\x15\ +\x00\x00\x9f\x32\x04\x79\xef\x9a\x00\x00\x8f\x01\x04\x82\x77\xf4\ +\x00\x00\x56\xb8\x04\x87\x83\x87\x00\x00\x39\xf7\x04\x87\xf9\x9e\ +\x00\x00\x94\x8a\x04\x8c\xd6\xae\x00\x00\x68\xd4\x04\x8e\xbd\xda\ +\x00\x00\x86\xf9\x04\xa0\x8a\x25\x00\x00\x04\xfd\x04\xa0\x8a\x25\ +\x00\x00\x7f\xd3\x04\xa4\x31\x5a\x00\x00\x96\x6f\x04\xa8\xeb\x85\ +\x00\x00\x2f\xb3\x04\xbe\x0a\xf8\x00\x00\x51\xd9\x04\xd6\xd6\x12\ +\x00\x00\x54\xc5\x04\xe1\x6e\xe3\x00\x00\x09\x19\x04\xe4\x0f\x75\ +\x00\x00\x02\x05\x04\xeb\x41\xc3\x00\x00\x2a\xce\x04\xef\xd9\xa8\ +\x00\x00\x51\x24\x05\x03\x83\x95\x00\x00\x74\x62\x05\x05\xcb\x13\ +\x00\x00\x47\x6e\x05\x0f\xf2\x74\x00\x00\x99\xed\x05\x1b\x10\x59\ +\x00\x00\x4b\x56\x05\x2a\xe5\x97\x00\x00\x53\xb9\x05\x44\x3b\x5f\ +\x00\x00\x76\x4d\x05\x5c\xd9\xc4\x00\x00\x0e\x28\x05\x5c\xd9\xc4\ +\x00\x00\x98\xba\x05\x63\xf6\x93\x00\x00\x52\x9d\x05\x65\xee\x65\ +\x00\x00\x86\xc8\x05\x87\xb0\xc3\x00\x00\x9f\x0e\x05\x96\xa8\xa5\ +\x00\x00\x11\x41\x05\x96\xa8\xa5\x00\x00\xa0\x16\x05\xad\x4b\xc3\ +\x00\x00\x49\x64\x05\xb2\xa6\xc6\x00\x00\x1c\x6f\x05\xb9\x03\xc8\ +\x00\x00\x1c\xe8\x05\xbd\x0c\xba\x00\x00\x89\xe5\x05\xbd\x8e\xde\ +\x00\x00\x67\xde\x05\xbe\x56\x93\x00\x00\x50\xbc\x05\xc5\x50\x04\ +\x00\x00\x0b\x27\x05\xe5\x8e\x2e\x00\x00\x0f\xb9\x05\xfb\xdc\x83\ +\x00\x00\x47\xca\x06\x1e\xe6\xb5\x00\x00\xa4\x14\x06\x29\xee\xa9\ +\x00\x00\x80\x36\x06\x2a\x86\xcd\x00\x00\x56\x62\x06\x57\x19\xf4\ +\x00\x00\x00\x00\x06\x5a\xef\x15\x00\x00\x79\xdc\x06\x5b\xd2\xb5\ +\x00\x00\x40\x2b\x06\x6c\x88\x8e\x00\x00\x46\x27\x06\x74\x1d\x55\ +\x00\x00\x5d\x6c\x06\x8b\x96\x44\x00\x00\x0b\xc7\x06\x97\x58\xc9\ +\x00\x00\x58\xf0\x06\xbc\x80\xa5\x00\x00\x1b\x15\x06\xc9\xb8\x05\ +\x00\x00\x7c\xba\x06\xe8\x05\x4e\x00\x00\x06\xac\x06\xee\xaa\x57\ +\x00\x00\xa3\x5b\x06\xf0\xcb\x25\x00\x00\x19\x5f\x06\xfa\xff\xc3\ +\x00\x00\x48\xbe\x06\xfc\x1a\x14\x00\x00\x31\x15\x06\xfc\xa0\x8a\ +\x00\x00\x9a\x24\x07\x08\x90\xe5\x00\x00\x28\xb1\x07\x0d\xb7\xf7\ +\x00\x00\x36\x46\x07\x0e\x86\x3e\x00\x00\x19\xc8\x07\x2a\x23\x65\ +\x00\x00\x35\x43\x07\x35\x68\x6e\x00\x00\x14\x69\x07\x35\xe8\x9a\ +\x00\x00\x9d\x8a\x07\x44\x41\x2a\x00\x00\x88\x3e\x07\x4a\x1f\x63\ +\x00\x00\x01\x7c\x07\x4d\x73\x22\x00\x00\x96\xff\x07\x4e\xa6\xf2\ +\x00\x00\x85\x89\x07\x58\xcb\xe8\x00\x00\x97\x29\x07\x63\xfe\x0e\ +\x00\x00\x10\x5a\x07\x63\xfe\x0e\x00\x00\x9e\xe7\x07\x71\xad\x43\ +\x00\x00\x15\x1c\x07\x80\xc6\xb3\x00\x00\xa6\xd4\x07\x88\x72\x5a\ +\x00\x00\x7d\xdb\x07\x91\x78\x5e\x00\x00\x20\x53\x07\xa7\x30\x05\ +\x00\x00\x7d\xac\x07\xc1\xfc\x13\x00\x00\x2b\xf2\x07\xe7\xec\x93\ +\x00\x00\x6c\x55\x08\x27\xb4\xba\x00\x00\x9c\x23\x08\x32\xc4\xaa\ +\x00\x00\x9e\x0f\x08\x36\x74\x14\x00\x00\x22\x40\x08\x44\xb9\x83\ +\x00\x00\x31\x8c\x08\x49\xc9\x30\x00\x00\x13\x9e\x08\x61\x7c\xb3\ +\x00\x00\x1d\x1b\x08\xa2\xca\x67\x00\x00\x58\x1d\x08\xa3\xe0\x33\ +\x00\x00\x81\x53\x08\xb1\x15\x28\x00\x00\x2c\x6b\x08\xb4\x04\x04\ +\x00\x00\x9f\x8d\x08\xd0\x32\xf4\x00\x00\x85\x5a\x08\xd4\xcd\x69\ +\x00\x00\x85\xb3\x08\xe1\x9b\xbe\x00\x00\x18\xa1\x08\xe1\xc1\xfa\ +\x00\x00\x87\x88\x08\xef\x4d\x7a\x00\x00\x83\x24\x09\x20\xda\x24\ +\x00\x00\xa7\xc2\x09\x20\xda\xb4\x00\x00\xa8\x45\x09\x20\xda\xd4\ +\x00\x00\xa7\x1f\x09\x4d\x96\xd9\x00\x00\x23\x69\x09\x65\xda\x8a\ +\x00\x00\x8b\xb3\x09\x68\x0d\x29\x00\x00\x95\x88\x09\x71\x8d\x25\ +\x00\x00\x06\x76\x09\x75\x23\x14\x00\x00\x7b\x75\x09\x76\xed\x34\ +\x00\x00\x6c\x0b\x09\x86\xa6\x05\x00\x00\x21\x84\x09\x8b\x23\xba\ +\x00\x00\x9e\x52\x09\x9e\xfd\x7e\x00\x00\x6c\xe7\x09\xb6\x2a\x63\ +\x00\x00\x30\x21\x09\xcd\x1c\x55\x00\x00\xa0\x8f\x09\xd2\x21\xea\ +\x00\x00\x65\xe3\x09\xe5\x23\x0e\x00\x00\x60\xa3\x09\xec\x2b\x45\ +\x00\x00\x0b\x83\x09\xef\x33\xa3\x00\x00\x15\xea\x09\xf0\x1f\x6e\ +\x00\x00\x02\x7a\x09\xfd\x45\x1a\x00\x00\x9b\x3d\x0a\x09\xc1\x7a\ +\x00\x00\x9d\x0e\x0a\x28\x9a\x65\x00\x00\x55\x45\x0a\x28\x9a\x67\ +\x00\x00\x55\x8c\x0a\x28\x9a\x69\x00\x00\x55\xd3\x0a\x2d\xbe\xe4\ +\x00\x00\x2d\x7f\x0a\x35\xa9\xfa\x00\x00\x90\x04\x0a\x3f\x27\x74\ +\x00\x00\x82\xc8\x0a\x40\xa1\xe3\x00\x00\x2a\x6f\x0a\x49\xa5\x4a\ +\x00\x00\xa4\x75\x0a\x60\xe0\x15\x00\x00\x24\x63\x0a\x60\xe0\x17\ +\x00\x00\x24\xb6\x0a\x60\xe0\x19\x00\x00\x25\x09\x0a\x65\x9b\xea\ +\x00\x00\x98\xe4\x0a\x78\x05\x80\x00\x00\x00\xf9\x0a\x7f\x8f\x65\ +\x00\x00\x3c\x1a\x0a\x81\xe4\x23\x00\x00\x41\x8f\x0a\x86\x10\x44\ +\x00\x00\x0f\x30\x0a\x98\x86\x18\x00\x00\x28\x54\x0a\x99\x5c\xaa\ +\x00\x00\x9e\x8e\x0a\xa8\x16\x95\x00\x00\x11\x0e\x0a\xa8\x16\x95\ +\x00\x00\x9f\x64\x0a\xa9\x89\xec\x00\x00\x4a\x22\x0a\xc8\x5c\x59\ +\x00\x00\x0e\x59\x0a\xd0\x50\xb8\x00\x00\x7a\x68\x0a\xd0\xe6\xf5\ +\x00\x00\x14\xdf\x0a\xd6\xf1\xfa\x00\x00\x84\xe9\x0a\xeb\x91\x88\ +\x00\x00\x6b\x92\x0b\x07\x78\x8a\x00\x00\x8b\x12\x0b\x1b\xe0\x73\ +\x00\x00\x59\x5e\x0b\x24\x9d\xb4\x00\x00\x5a\x13\x0b\x24\xc5\xc9\ +\x00\x00\x11\x6c\x0b\x26\x7e\x0e\x00\x00\x82\x2c\x0b\x2b\x50\xfa\ +\x00\x00\x8e\x6c\x0b\x2d\xb3\xf9\x00\x00\x70\x88\x0b\x37\x73\x69\ +\x00\x00\xa5\xc7\x0b\x40\x40\x3e\x00\x00\x4b\xb8\x0b\x43\xcd\x19\ +\x00\x00\x4a\x9c\x0b\x4f\x98\xba\x00\x00\x8c\xa4\x0b\x66\x28\xd2\ +\x00\x00\x6a\x22\x0b\x88\xe0\x07\x00\x00\x0a\x60\x0b\x94\x44\xc5\ +\x00\x00\x2d\xdc\x0b\x98\x12\xaa\x00\x00\x89\x68\x0b\xa0\x84\x94\ +\x00\x00\x03\x31\x0b\xb3\x46\x6a\x00\x00\x80\xdc\x0b\xc2\x99\x6a\ +\x00\x00\x8a\x59\x0b\xd3\x27\xae\x00\x00\x04\x3e\x0b\xd4\x7e\x9e\ +\x00\x00\x0a\x8d\x0b\xf5\xee\x53\x00\x00\x98\x8b\x0c\x06\x50\x2e\ +\x00\x00\x0c\x52\x0c\x19\xfa\x99\x00\x00\x86\x0f\x0c\x21\x0a\x83\ +\x00\x00\x7f\xf5\x0c\x28\x9b\x45\x00\x00\x7a\xe8\x0c\x31\x7e\x4a\ +\x00\x00\x9b\xb1\x0c\x38\x4d\xe5\x00\x00\x07\x58\x0c\x3a\x16\xd0\ +\x00\x00\x17\x96\x0c\x5a\xc0\xc8\x00\x00\x7e\x4c\x0c\x6e\x87\xf5\ +\x00\x00\x20\x1c\x0c\x7c\xe0\xa6\x00\x00\x1b\xb0\x0c\x80\x3b\x33\ +\x00\x00\x84\x87\x0c\x91\xa0\x7a\x00\x00\xa3\xc5\x0c\x96\x90\x59\ +\x00\x00\x4a\xeb\x0c\xbe\xa7\x4e\x00\x00\x42\xf9\x0c\xca\xdd\xfa\ +\x00\x00\xa2\x95\x0c\xd6\xef\x12\x00\x00\x2b\xa5\x0c\xde\x99\x49\ +\x00\x00\x70\xd2\x0c\xe1\x21\x02\x00\x00\x54\x4e\x0c\xe2\x77\x73\ +\x00\x00\x72\xfb\x0c\xf0\xde\xaa\x00\x00\x8d\x27\x0d\x1c\xf6\xee\ +\x00\x00\x29\x66\x0d\x3a\x6c\xba\x00\x00\x9b\xe7\x0d\x45\xe2\x6a\ +\x00\x00\xa1\x8f\x0d\x59\xa1\x45\x00\x00\x83\xcd\x0d\x5a\xad\x33\ +\x00\x00\x7d\x36\x0d\x5e\xe7\x6e\x00\x00\x25\x5c\x0d\x64\xa5\xd9\ +\x00\x00\x64\x40\x0d\x6d\xf8\xf4\x00\x00\x07\xdf\x0d\x74\xdd\x52\ +\x00\x00\x16\xdb\x0d\x76\xb5\x92\x00\x00\x29\xaa\x0d\x9b\xec\xc9\ +\x00\x00\x5c\xfb\x0d\xa5\xd9\x94\x00\x00\x29\x0d\x0d\xa6\xda\xa4\ +\x00\x00\x4c\xdd\x0d\xa7\xb9\xc2\x00\x00\x17\x28\x0d\xc6\xc6\x2a\ +\x00\x00\x9d\xc7\x0d\xf2\x39\xba\x00\x00\x90\xb7\x0e\x1a\x1d\xc3\ +\x00\x00\x48\x2c\x0e\x29\x94\x64\x00\x00\x38\x5a\x0e\x2b\x04\x15\ +\x00\x00\x81\xbf\x0e\x2c\xe4\x2a\x00\x00\xa1\x3a\x0e\x4e\xcc\xc5\ +\x00\x00\x08\xde\x0e\x6f\x9a\x1a\x00\x00\xa2\xfd\x0e\x7b\x7a\x2c\ +\x00\x00\x2e\x9c\x0e\x8f\x6a\x37\x00\x00\x32\x9a\x0e\x91\x65\xf5\ +\x00\x00\x18\x2b\x0e\xca\xd7\x34\x00\x00\x1e\x71\x0e\xcd\x1c\x55\ +\x00\x00\xa0\xc8\x0e\xcd\x1c\x65\x00\x00\xa1\x01\x0e\xcd\x5b\x59\ +\x00\x00\x51\x80\x0e\xea\xe5\x03\x00\x00\x78\xc1\x0e\xed\xe1\xf9\ +\x00\x00\x4e\xbb\x0f\x07\x8d\xe3\x00\x00\x79\x33\x0f\x0b\x10\x53\ +\x00\x00\x4d\x39\x0f\x17\x82\x4e\x00\x00\x00\xb1\x0f\x1f\x8d\xa5\ +\x00\x00\x81\x81\x0f\x4f\x75\x3a\x00\x00\xa8\x8b\x0f\x5f\xca\xd5\ +\x00\x00\x2e\x35\x0f\x77\xc3\xb4\x00\x00\x71\xa4\x0f\x89\x0b\xbe\ +\x00\x00\x4f\x0d\x0f\x8f\xa8\xa7\x00\x00\x16\x8e\x0f\x98\x0a\x39\ +\x00\x00\xa5\x41\x0f\x9e\xec\xa0\x00\x00\x10\x89\x0f\xbf\x87\xa3\ +\x00\x00\x96\x25\x0f\xcd\xce\x95\x00\x00\x32\x38\x0f\xdf\x21\x05\ +\x00\x00\x21\xed\x0f\xf6\x06\x1e\x00\x00\x1e\xbf\x0f\xf6\x29\x0a\ +\x00\x00\x7c\xec\x0f\xfb\x5f\xae\x00\x00\x82\x60\x69\x00\x00\xa9\ +\x07\x03\x00\x00\x00\x08\x70\xb9\x30\x6e\x8f\xfd\x52\xa0\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x41\x64\x64\x20\x50\x6f\x69\x6e\ +\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x50\ +\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x32\x65\xe2\x5b\x58\x30\x6e\ +\x90\x23\x7d\xda\x30\x7e\x30\x5f\x30\x6f\x00\x42\x30\xb9\x30\xd7\ +\x30\xe9\x30\xa4\x30\xf3\x66\xf2\x7d\xda\x30\x6b\x70\xb9\x30\x92\ +\x8f\xfd\x52\xa0\x30\x57\x30\x7e\x30\x59\x30\x02\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x28\x41\x64\x64\x73\x20\x61\x20\x70\x6f\x69\ +\x6e\x74\x20\x74\x6f\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\ +\x67\x20\x77\x69\x72\x65\x2f\x62\x73\x70\x6c\x69\x6e\x65\x07\x00\ +\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x50\x6f\x69\x6e\ +\x74\x01\x03\x00\x00\x00\x14\x30\xb0\x30\xeb\x30\xfc\x30\xd7\x30\ +\x6b\x8f\xfd\x52\xa0\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0f\x41\x64\x64\x20\x74\x6f\x20\x67\x72\x6f\x75\ +\x70\x2e\x2e\x2e\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\ +\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x2e\x90\ +\x78\x62\x9e\x30\x57\x30\x5f\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\ +\xaf\x30\xc8\x30\x92\x65\xe2\x5b\x58\x30\x6e\x30\xb0\x30\xeb\x30\ +\xfc\x30\xd7\x30\x6b\x8f\xfd\x52\xa0\x30\x59\x30\x8b\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x30\x41\x64\x64\x73\x20\x74\x68\x65\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x28\ +\x73\x29\x20\x74\x6f\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\ +\x67\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x10\x44\x72\x61\x66\ +\x74\x5f\x41\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\x01\x03\x00\x00\ +\x00\x2c\x73\xfe\x57\x28\x30\x6e\x7d\xda\x30\x6e\x5e\x45\x30\x68\ +\x82\x72\x30\x92\x90\x78\x62\x9e\x30\x57\x30\x5f\x30\xaa\x30\xd6\ +\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\x6b\x90\x69\x75\x28\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x38\x41\x70\x70\x6c\x69\x65\x73\x20\ +\x63\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\x6e\x65\x20\x77\x69\x64\ +\x74\x68\x20\x61\x6e\x64\x20\x63\x6f\x6c\x6f\x72\x20\x74\x6f\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x70\x70\x6c\x79\ +\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\x18\x73\xfe\x57\x28\x30\ +\x6e\x30\xb9\x30\xbf\x30\xa4\x30\xeb\x30\x92\x90\x69\x75\x28\x30\ +\x59\x30\x8b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x41\x70\x70\ +\x6c\x79\x20\x43\x75\x72\x72\x65\x6e\x74\x20\x53\x74\x79\x6c\x65\ +\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x70\x70\x6c\x79\ +\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\x04\x51\x86\x5f\x27\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\x72\x63\x07\x00\x00\x00\ +\x09\x44\x72\x61\x66\x74\x5f\x41\x72\x63\x01\x03\x00\x00\x00\x3a\ +\x51\x86\x5f\x27\x30\x92\x4f\x5c\x62\x10\x30\x01\x00\x20\x00\x5b\ +\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x5d\x30\x67\x30\xb9\x30\xca\ +\x30\xc3\x30\xd7\x30\x01\x00\x5b\x00\x53\x00\x68\x00\x69\x00\x66\ +\x00\x74\x00\x5d\x30\x67\x62\xd8\x67\x5f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\ +\x72\x63\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\ +\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\ +\x72\x61\x69\x6e\x07\x00\x00\x00\x09\x44\x72\x61\x66\x74\x5f\x41\ +\x72\x63\x01\x03\x00\x00\x00\x0a\x00\x41\x00\x72\x00\x72\x00\x61\ +\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x72\x72\x61\ +\x79\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x41\x72\x72\x61\ +\x79\x01\x03\x00\x00\x00\x76\x00\x43\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x70\x00\x6f\x00\ +\x6c\x00\x61\x00\x72\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x72\x00\ +\x65\x00\x63\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\ +\x61\x00\x72\x00\x20\x00\x61\x00\x72\x00\x72\x00\x61\x00\x79\x00\ +\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x3b\x43\x72\x65\x61\x74\x65\x73\x20\x61\ +\x20\x70\x6f\x6c\x61\x72\x20\x6f\x72\x20\x72\x65\x63\x74\x61\x6e\ +\x67\x75\x6c\x61\x72\x20\x61\x72\x72\x61\x79\x20\x66\x72\x6f\x6d\ +\x20\x61\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ +\x63\x74\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x41\x72\x72\ +\x61\x79\x01\x03\x00\x00\x00\x12\x00\x42\x00\x2d\x30\xb9\x30\xd7\ +\x30\xe9\x30\xa4\x30\xf3\x66\xf2\x7d\xda\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x08\x42\x2d\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\ +\x0d\x44\x72\x61\x66\x74\x5f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\ +\x00\x00\x00\x5a\x89\x07\x65\x70\x70\xb9\x30\x4b\x30\x89\x30\x6a\ +\x30\x8b\x00\x42\x30\xb9\x30\xd7\x30\xe9\x30\xa4\x30\xf3\x66\xf2\ +\x7d\xda\x30\x92\x4f\x5c\x62\x10\x30\x57\x30\x7e\x30\x59\x30\x02\ +\x00\x5b\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x5d\x30\x67\x30\xb9\ +\x30\xca\x30\xc3\x30\xd7\x30\x01\x00\x5b\x00\x53\x00\x68\x00\x69\ +\x00\x66\x00\x74\x00\x5d\x30\x67\x62\xd8\x67\x5f\x30\x02\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x43\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\x70\x6f\x69\x6e\x74\ +\x20\x62\x2d\x73\x70\x6c\x69\x6e\x65\x2e\x20\x43\x54\x52\x4c\x20\ +\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\ +\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0d\ +\x44\x72\x61\x66\x74\x5f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\ +\x00\x00\x02\x51\x86\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\ +\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\ +\x43\x69\x72\x63\x6c\x65\x01\x03\x00\x00\x00\x4c\x51\x86\x30\x92\ +\x4f\x5c\x62\x10\x30\x57\x30\x7e\x30\x59\x30\x02\x00\x5b\x00\x43\ +\x00\x74\x00\x72\x00\x6c\x00\x5d\x30\x67\x30\xb9\x30\xca\x30\xc3\ +\x30\xd7\x30\x01\x00\x5b\x00\x41\x00\x6c\x00\x74\x00\x5d\x30\x67\ +\x63\xa5\x30\x59\x30\x8b\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\xaf\ +\x30\xc8\x30\x92\x90\x78\x62\x9e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x3d\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x69\x72\x63\ +\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\ +\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x20\ +\x74\x61\x6e\x67\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\ +\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x43\x69\x72\x63\x6c\x65\ +\x01\x03\x00\x00\x00\x0a\x00\x43\x00\x6c\x00\x6f\x00\x6e\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x43\x6c\x6f\x6e\x65\x07\ +\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\x6e\x65\x01\ +\x03\x00\x00\x00\x3a\x00\x43\x00\x6c\x00\x6f\x00\x6e\x00\x65\x00\ +\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x28\x00\x73\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x43\x6c\x6f\x6e\x65\x73\x20\ +\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x28\x73\x29\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\ +\x5f\x43\x6c\x6f\x6e\x65\x01\x03\x00\x00\x00\x08\x95\x89\x30\x58\ +\x30\x5f\x7d\xda\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6c\ +\x6f\x73\x65\x20\x4c\x69\x6e\x65\x07\x00\x00\x00\x0f\x44\x72\x61\ +\x66\x74\x5f\x43\x6c\x6f\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\x00\ +\x00\x36\x00\x43\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x73\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\ +\x00\x20\x00\x62\x00\x65\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x64\ +\x00\x72\x00\x61\x00\x77\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1b\x43\x6c\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x6c\x69\x6e\ +\x65\x20\x62\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x07\x00\x00\ +\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\x73\x65\x4c\x69\x6e\ +\x65\x01\x03\x00\x00\x00\x08\x70\xb9\x30\x6e\x52\x4a\x96\x64\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x52\x65\x6d\x6f\x76\x65\x20\ +\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\ +\x44\x65\x6c\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x34\x65\xe2\ +\x5b\x58\x30\x6e\x90\x23\x7d\xda\x30\x7e\x30\x5f\x30\x6f\x00\x42\ +\x30\xb9\x30\xd7\x30\xe9\x30\xa4\x30\xf3\x66\xf2\x7d\xda\x30\x4b\ +\x30\x89\x70\xb9\x30\x92\x52\x4a\x96\x64\x30\x57\x30\x7e\x30\x59\ +\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x52\x65\x6d\x6f\ +\x76\x65\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x66\x72\x6f\x6d\ +\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x77\x69\x72\ +\x65\x20\x6f\x72\x20\x62\x73\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\ +\x0e\x44\x72\x61\x66\x74\x5f\x44\x65\x6c\x50\x6f\x69\x6e\x74\x01\ +\x03\x00\x00\x00\x5c\x5b\xf8\x6c\xd5\x30\x92\x8a\x18\x51\x65\x30\ +\x57\x30\x7e\x30\x59\x30\x02\x00\x5b\x00\x43\x00\x74\x00\x72\x00\ +\x6c\x00\x5d\x30\x67\x30\xb9\x30\xca\x30\xc3\x30\xd7\x30\x01\x00\ +\x5b\x00\x53\x00\x68\x00\x69\x00\x66\x00\x74\x00\x5d\x30\x67\x62\ +\xd8\x67\x5f\x30\x01\x00\x5b\x00\x41\x00\x6c\x00\x74\x00\x5d\x30\ +\x67\x30\xbb\x30\xb0\x30\xe1\x30\xf3\x30\xc8\x30\x92\x90\x78\x62\ +\x9e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4e\x43\x72\x65\x61\x74\ +\x65\x73\x20\x61\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x2e\x20\ +\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\ +\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\ +\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x20\ +\x61\x20\x73\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x0f\x44\x72\ +\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x01\x03\x00\ +\x00\x00\x04\x5b\xf8\x6c\xd5\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x09\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\x0f\x44\ +\x72\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x01\x03\ +\x00\x00\x00\x0e\x30\xc0\x30\xa6\x30\xf3\x30\xb0\x30\xec\x30\xfc\ +\x30\xc9\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x44\x6f\x77\x6e\ +\x67\x72\x61\x64\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\ +\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x8a\x00\ +\x45\x00\x78\x00\x70\x00\x6c\x00\x6f\x00\x64\x00\x65\x00\x73\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x69\x00\x6e\x00\ +\x74\x00\x6f\x00\x20\x00\x73\x00\x69\x00\x6d\x00\x70\x00\x6c\x00\ +\x65\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x73\x00\x2c\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x73\x00\ +\x75\x00\x62\x00\x74\x00\x72\x00\x61\x00\x63\x00\x74\x00\x20\x00\ +\x66\x00\x61\x00\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x45\x45\x78\x70\x6c\x6f\x64\x65\x73\x20\x74\x68\x65\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x20\x69\x6e\x74\x6f\x20\x73\x69\x6d\x70\x6c\x65\x72\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x2c\x20\x6f\x72\x20\x73\x75\x62\x74\x72\x61\ +\x63\x74\x20\x66\x61\x63\x65\x73\x07\x00\x00\x00\x0f\x44\x72\x61\ +\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\x03\x00\x00\ +\x00\x1e\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\ +\x00\x6f\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x20\ +\x74\x6f\x20\x53\x6b\x65\x74\x63\x68\x07\x00\x00\x00\x12\x44\x72\ +\x61\x66\x74\x5f\x44\x72\x61\x66\x74\x32\x53\x6b\x65\x74\x63\x68\ +\x01\x03\x00\x00\x00\x04\x56\xf3\x97\x62\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x07\x44\x72\x61\x77\x69\x6e\x67\x07\x00\x00\x00\x0d\ +\x44\x72\x61\x66\x74\x5f\x44\x72\x61\x77\x69\x6e\x67\x01\x03\x00\ +\x00\x00\x24\x90\x78\x62\x9e\x30\x55\x30\x8c\x30\x5f\x30\xaa\x30\ +\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\x92\x56\xf3\x97\x62\x4e\ +\x0a\x30\x6b\x91\x4d\x7f\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2d\x50\x75\x74\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x6f\x6e\x20\x61\x20\ +\x44\x72\x61\x77\x69\x6e\x67\x20\x73\x68\x65\x65\x74\x2e\x07\x00\ +\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x44\x72\x61\x77\x69\x6e\x67\ +\x01\x03\x00\x00\x00\x04\x7d\xe8\x96\xc6\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x0a\x44\x72\x61\ +\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\x26\x30\xa2\x30\ +\xaf\x30\xc6\x30\xa3\x30\xd6\x30\x6a\x30\xaa\x30\xd6\x30\xb8\x30\ +\xa7\x30\xaf\x30\xc8\x30\x92\x7d\xe8\x96\xc6\x30\x57\x30\x7e\x30\ +\x59\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x45\x64\x69\ +\x74\x73\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x45\ +\x64\x69\x74\x01\x03\x00\x00\x00\x14\x30\xd5\x30\xa3\x30\xcb\x30\ +\xc3\x30\xb7\x30\xe5\x00\x20\x30\xe9\x30\xa4\x30\xf3\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0b\x46\x69\x6e\x69\x73\x68\x20\x6c\x69\ +\x6e\x65\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\ +\x69\x73\x68\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x44\x00\x46\x00\ +\x69\x00\x6e\x00\x69\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\ +\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x77\x00\ +\x69\x00\x74\x00\x68\x00\x6f\x00\x75\x00\x74\x00\x20\x00\x63\x00\ +\x6c\x00\x6f\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x69\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x46\x69\x6e\x69\x73\ +\x68\x65\x73\x20\x61\x20\x6c\x69\x6e\x65\x20\x77\x69\x74\x68\x6f\ +\x75\x74\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\x07\x00\x00\ +\x00\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\x69\x73\x68\x4c\x69\ +\x6e\x65\x01\x03\x00\x00\x00\x4a\xff\x12\x70\xb9\x30\x92\x63\x07\ +\x5b\x9a\x30\x57\x30\x66\x7d\xda\x30\x92\x4f\x5c\x62\x10\x30\x57\ +\x30\x7e\x30\x59\x30\x02\x00\x5b\x00\x43\x00\x74\x00\x72\x00\x6c\ +\x00\x5d\x30\x67\x30\xb9\x30\xca\x30\xc3\x30\xd7\x30\x01\x00\x5b\ +\x00\x53\x00\x68\x00\x69\x00\x66\x00\x74\x00\x5d\x30\x67\x62\xd8\ +\x67\x5f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\x74\x20\x6c\x69\ +\x6e\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\ +\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\ +\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4c\ +\x69\x6e\x65\x01\x03\x00\x00\x00\x04\x76\xf4\x7d\xda\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x0a\ +\x44\x72\x61\x66\x74\x5f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x04\ +\x79\xfb\x52\xd5\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4d\x6f\ +\x76\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4d\x6f\x76\ +\x65\x01\x03\x00\x00\x00\x6e\x00\x32\x70\xb9\x95\x93\x30\x67\x90\ +\x78\x62\x9e\x30\x57\x30\x5f\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\ +\xaf\x30\xc8\x30\x92\x79\xfb\x52\xd5\x30\x57\x30\x7e\x30\x59\x30\ +\x02\x00\x5b\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x5d\x30\x67\x30\ +\xb9\x30\xca\x30\xc3\x30\xd7\x30\x01\x00\x5b\x00\x53\x00\x68\x00\ +\x69\x00\x66\x00\x74\x00\x5d\x30\x67\x62\xd8\x67\x5f\x30\x01\x00\ +\x5b\x00\x41\x00\x6c\x00\x74\x00\x5d\x30\x67\x30\xb3\x30\xd4\x30\ +\xfc\x30\x02\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5a\x4d\ +\x6f\x76\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\x74\x77\x65\x65\ +\x6e\x20\x32\x20\x70\x6f\x69\x6e\x74\x73\x2e\x20\x43\x54\x52\x4c\ +\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\ +\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\ +\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0a\x44\x72\ +\x61\x66\x74\x5f\x4d\x6f\x76\x65\x01\x03\x00\x00\x00\x0a\x30\xaa\ +\x30\xd5\x30\xbb\x30\xc3\x30\xc8\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x0c\x44\x72\x61\ +\x66\x74\x5f\x4f\x66\x66\x73\x65\x74\x01\x03\x00\x00\x00\x6e\x30\ +\xa2\x30\xaf\x30\xc6\x30\xa3\x30\xd6\x30\x6a\x30\xaa\x30\xd6\x30\ +\xb8\x30\xa7\x30\xaf\x30\xc8\x30\x92\x30\xaa\x30\xd5\x30\xbb\x30\ +\xc3\x30\xc8\x30\x57\x30\x7e\x30\x59\x30\x02\x00\x5b\x00\x43\x00\ +\x74\x00\x72\x00\x6c\x00\x5d\x30\x67\x30\xb9\x30\xca\x30\xc3\x30\ +\xd7\x30\x01\x00\x5b\x00\x53\x00\x68\x00\x69\x00\x66\x00\x74\x00\ +\x5d\x30\x67\x62\xd8\x67\x5f\x30\x01\x00\x5b\x00\x41\x00\x6c\x00\ +\x74\x00\x5d\x30\x67\x30\xb3\x30\xd4\x30\xfc\x30\x02\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x48\x4f\x66\x66\x73\x65\x74\x73\x20\x74\ +\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\ +\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\ +\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\ +\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x4f\x66\x66\x73\x65\x74\ +\x01\x03\x00\x00\x00\x2c\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\ +\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x69\ +\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x6f\x62\x6a\x65\ +\x63\x74\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x50\x6f\x69\ +\x6e\x74\x01\x03\x00\x00\x00\x02\x70\xb9\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x0b\x44\x72\ +\x61\x66\x74\x5f\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x44\x6b\ +\x63\x59\x1a\x89\xd2\x5f\x62\x30\x92\x4f\x5c\x62\x10\x30\x57\x30\ +\x7e\x30\x59\x30\x02\x00\x5b\x00\x43\x00\x74\x00\x72\x00\x6c\x00\ +\x5d\x30\x67\x30\xb9\x30\xca\x30\xc3\x30\xd7\x30\x01\x00\x5b\x00\ +\x53\x00\x68\x00\x69\x00\x66\x00\x74\x00\x5d\x30\x67\x62\xd8\x67\ +\x5f\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3b\x43\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x72\x65\x67\x75\x6c\x61\x72\x20\x70\ +\x6f\x6c\x79\x67\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\ +\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\ +\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\ +\x66\x74\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\x03\x00\x00\x00\x06\ +\x59\x1a\x89\xd2\x5f\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ +\x50\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\ +\x74\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\x03\x00\x00\x00\x38\x00\ +\x32\x00\x20\x70\xb9\x30\x92\x63\x07\x5b\x9a\x30\x57\x56\xdb\x89\ +\xd2\x5f\x62\x30\x92\x4f\x5c\x62\x10\x30\x57\x30\x7e\x30\x59\x30\ +\x02\x00\x5b\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x5d\x30\x67\x30\ +\xb9\x30\xca\x30\xc3\x30\xd7\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x29\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x32\x2d\x70\x6f\x69\ +\x6e\x74\x20\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\x2e\x20\x43\x54\ +\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x07\x00\x00\x00\x0f\x44\ +\x72\x61\x66\x74\x5f\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\ +\x00\x00\x00\x06\x56\xdb\x89\xd2\x5f\x62\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\ +\x00\x0f\x44\x72\x61\x66\x74\x5f\x52\x65\x63\x74\x61\x6e\x67\x6c\ +\x65\x01\x03\x00\x00\x00\x04\x56\xde\x8e\xe2\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x06\x52\x6f\x74\x61\x74\x65\x07\x00\x00\x00\x0c\ +\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\x01\x03\x00\x00\ +\x00\x64\x90\x78\x62\x9e\x30\x57\x30\x5f\x30\xaa\x30\xd6\x30\xb8\ +\x30\xa7\x30\xaf\x30\xc8\x30\x92\x56\xde\x8e\xe2\x30\x57\x30\x7e\ +\x30\x59\x30\x02\x00\x5b\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x5d\ +\x30\x67\x30\xb9\x30\xca\x30\xc3\x30\xd7\x30\x01\x00\x5b\x00\x53\ +\x00\x68\x00\x69\x00\x66\x00\x74\x00\x5d\x30\x67\x62\xd8\x67\x5f\ +\x30\x01\x00\x5b\x00\x41\x00\x6c\x00\x74\x00\x5d\x30\x67\x30\xb3\ +\x30\xd4\x30\xfc\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\ +\x52\x6f\x74\x61\x74\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x20\x43\x54\ +\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\ +\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\ +\x41\x4c\x54\x20\x63\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x6f\ +\x70\x79\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\ +\x61\x74\x65\x01\x03\x00\x00\x00\x08\x62\xe1\x59\x27\x7e\x2e\x5c\ +\x0f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x53\x63\x61\x6c\x65\ +\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\ +\x01\x03\x00\x00\x00\x72\x90\x78\x62\x9e\x30\x57\x30\x5f\x30\xaa\ +\x30\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\x92\x57\xfa\x6e\x96\ +\x70\xb9\x30\x92\x4e\x2d\x5f\xc3\x30\x6b\x62\xe1\x59\x27\x30\x57\ +\x30\x7e\x30\x59\x30\x02\x00\x5b\x00\x43\x00\x74\x00\x72\x00\x6c\ +\x00\x5d\x30\x67\x30\xb9\x30\xca\x30\xc3\x30\xd7\x30\x01\x00\x5b\ +\x00\x53\x00\x68\x00\x69\x00\x66\x00\x74\x00\x5d\x30\x67\x62\xd8\ +\x67\x5f\x30\x01\x00\x5b\x00\x41\x00\x6c\x00\x74\x00\x5d\x30\x67\ +\x30\xb3\x30\xd4\x30\xfc\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x5c\x53\x63\x61\x6c\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x72\ +\x6f\x6d\x20\x61\x20\x62\x61\x73\x65\x20\x70\x6f\x69\x6e\x74\x2e\ +\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\ +\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\ +\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\ +\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\x01\x03\ +\x00\x00\x00\x0e\x30\xb0\x30\xeb\x30\xfc\x30\xd7\x30\x92\x90\x78\ +\x62\x9e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x65\x6c\x65\ +\x63\x74\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x11\x44\x72\x61\ +\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x47\x72\x6f\x75\x70\x01\x03\ +\x00\x00\x00\x6e\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\ +\x00\x73\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x77\x00\x69\ +\x00\x74\x00\x68\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\ +\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\ +\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x61\x00\x73\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\ +\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x53\x65\x6c\x65\ +\x63\x74\x73\x20\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x77\x69\x74\x68\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x70\x61\ +\x72\x65\x6e\x74\x73\x20\x61\x73\x20\x74\x68\x69\x73\x20\x67\x72\ +\x6f\x75\x70\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\ +\x6c\x65\x63\x74\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x24\x30\ +\xb8\x30\xaa\x30\xe1\x30\xc8\x30\xea\x30\x92\x4f\x5c\x62\x10\x30\ +\x59\x30\x8b\x4f\x5c\x69\x6d\x97\x62\x30\x92\x90\x78\x62\x9e\x30\ +\x59\x30\x8b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x53\x65\x6c\ +\x65\x63\x74\x20\x61\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\x6c\ +\x61\x6e\x65\x20\x66\x6f\x72\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\ +\x20\x63\x72\x65\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x11\x44\x72\ +\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x01\ +\x03\x00\x00\x00\x0c\x97\x62\x30\x92\x90\x78\x62\x9e\x30\x59\x30\ +\x8b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x65\x6c\x65\x63\ +\x74\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\ +\x5f\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\ +\x00\x70\x00\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\ +\x00\x20\x00\x62\x00\x69\x00\x64\x00\x69\x00\x72\x00\x65\x00\x63\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x6c\x00\x79\ +\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\ +\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x61\ +\x00\x6e\x00\x64\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\x00\x63\ +\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x43\x6f\x6e\x76\ +\x65\x72\x74\x20\x62\x69\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x61\ +\x6c\x6c\x79\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x44\x72\x61\x66\ +\x74\x20\x61\x6e\x64\x20\x53\x6b\x65\x74\x63\x68\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\ +\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\x54\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\ +\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x32\x00\x44\ +\x00\x20\x00\x76\x00\x69\x00\x65\x00\x77\x00\x73\x00\x20\x00\x6f\ +\x00\x66\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\ +\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x43\x72\ +\x65\x61\x74\x65\x73\x20\x53\x68\x61\x70\x65\x20\x32\x44\x20\x76\ +\x69\x65\x77\x73\x20\x6f\x66\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x11\x44\x72\x61\ +\x66\x74\x5f\x53\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\ +\x00\x00\x00\x1a\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\ +\x00\x32\x00\x44\x00\x20\x00\x76\x00\x69\x00\x65\x00\x77\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x68\x61\x70\x65\x20\x32\x44\ +\x20\x76\x69\x65\x77\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\ +\x53\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\ +\x1a\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x53\x00\x6e\x00\ +\x61\x00\x70\x00\x20\x00\x42\x00\x61\x00\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0d\x53\x68\x6f\x77\x20\x53\x6e\x61\x70\x20\x42\ +\x61\x72\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x6f\ +\x77\x53\x6e\x61\x70\x42\x61\x72\x01\x03\x00\x00\x00\x30\x00\x53\ +\x00\x68\x00\x6f\x00\x77\x00\x73\x00\x20\x00\x44\x00\x72\x00\x61\ +\x00\x66\x00\x74\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\ +\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x18\x53\x68\x6f\x77\x73\x20\x44\x72\ +\x61\x66\x74\x20\x73\x6e\x61\x70\x20\x74\x6f\x6f\x6c\x62\x61\x72\ +\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x6f\x77\x53\ +\x6e\x61\x70\x42\x61\x72\x01\x03\x00\x00\x00\x28\x6c\xe8\x91\xc8\ +\x30\x92\x4f\x5c\x62\x10\x30\x57\x30\x7e\x30\x59\x30\x02\x00\x5b\ +\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x5d\x30\x67\x30\xb9\x30\xca\ +\x30\xc3\x30\xd7\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x6e\x6e\x6f\x74\x61\x74\ +\x69\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\ +\x70\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\x78\x74\ +\x01\x03\x00\x00\x00\x08\x30\xc6\x30\xad\x30\xb9\x30\xc8\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x54\x65\x78\x74\x07\x00\x00\x00\ +\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\x78\x74\x01\x03\x00\x00\x00\ +\x2e\x00\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x20\x00\ +\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\ +\x69\x00\x6f\x00\x6e\x00\x20\x00\x4d\x00\x6f\x00\x64\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x17\x54\x6f\x67\x67\x6c\x65\x20\ +\x63\x6f\x6e\x73\x74\x72\x75\x63\x69\x6f\x6e\x20\x4d\x6f\x64\x65\ +\x07\x00\x00\x00\x1c\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\ +\x65\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x4d\x6f\x64\ +\x65\x01\x03\x00\x00\x00\x5e\x00\x54\x00\x6f\x00\x67\x00\x67\x00\ +\x6c\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x43\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x4d\x00\x6f\x00\x64\x00\ +\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x65\x00\ +\x78\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x54\ +\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\x65\x20\x43\x6f\x6e\x73\x74\ +\x72\x75\x63\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x65\x20\x66\x6f\x72\ +\x20\x6e\x65\x78\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\ +\x00\x00\x1c\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\ +\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x4d\x6f\x64\x65\x01\ +\x03\x00\x00\x00\x28\x00\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\ +\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\ +\x75\x00\x65\x00\x20\x00\x4d\x00\x6f\x00\x64\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x14\x54\x6f\x67\x67\x6c\x65\x20\x63\x6f\ +\x6e\x74\x69\x6e\x75\x65\x20\x4d\x6f\x64\x65\x07\x00\x00\x00\x18\ +\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x74\ +\x69\x6e\x75\x65\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x58\x00\x54\ +\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x43\x00\x6f\x00\x6e\x00\x74\x00\x69\ +\x00\x6e\x00\x75\x00\x65\x00\x20\x00\x4d\x00\x6f\x00\x64\x00\x65\ +\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x78\ +\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\ +\x00\x64\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\ +\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\x65\x20\x43\x6f\x6e\x74\ +\x69\x6e\x75\x65\x20\x4d\x6f\x64\x65\x20\x66\x6f\x72\x20\x6e\x65\ +\x78\x74\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x2e\x07\x00\x00\x00\ +\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\ +\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x2a\x90\ +\x78\x62\x9e\x30\x57\x30\x5f\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\ +\xaf\x30\xc8\x30\x6e\x88\x68\x79\x3a\x30\xe2\x30\xfc\x30\xc9\x30\ +\x92\x59\x09\x66\xf4\x30\x59\x30\x8b\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x46\x53\x77\x61\x70\x73\x20\x64\x69\x73\x70\x6c\x61\x79\ +\x20\x6d\x6f\x64\x65\x20\x6f\x66\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\x74\x77\x65\x65\ +\x6e\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\x61\x6e\x64\x20\ +\x66\x6c\x61\x74\x6c\x69\x6e\x65\x73\x07\x00\x00\x00\x17\x44\x72\ +\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x44\x69\x73\x70\x6c\x61\ +\x79\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x16\x88\x68\x79\x3a\x30\ +\xe2\x30\xfc\x30\xc9\x30\x92\x52\x07\x30\x8a\x66\xff\x30\x48\x30\ +\x8b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x54\x6f\x67\x67\x6c\ +\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x6d\x6f\x64\x65\x07\x00\ +\x00\x00\x17\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x44\ +\x69\x73\x70\x6c\x61\x79\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x16\ +\x00\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x47\ +\x00\x72\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ +\x54\x6f\x67\x67\x6c\x65\x20\x47\x72\x69\x64\x07\x00\x00\x00\x10\ +\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x47\x72\x69\x64\ +\x01\x03\x00\x00\x00\x38\x00\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\ +\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x67\x00\x69\x00\x64\ +\x00\x20\x00\x6f\x00\x6e\x00\x2f\x00\x6f\x00\x66\x00\x66\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1c\x54\x6f\x67\x67\x6c\x65\x73\x20\ +\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x67\x69\x64\x20\x6f\x6e\ +\x2f\x6f\x66\x66\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x54\ +\x6f\x67\x67\x6c\x65\x47\x72\x69\x64\x01\x03\x00\x00\x00\x16\x00\ +\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x73\x00\ +\x6e\x00\x61\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x54\ +\x6f\x67\x67\x6c\x65\x20\x73\x6e\x61\x70\x07\x00\x00\x00\x10\x44\ +\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x53\x6e\x61\x70\x01\ +\x03\x00\x00\x00\x38\x00\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\ +\x65\x00\x73\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\ +\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6f\x00\x6e\x00\ +\x20\x00\x6f\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x66\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1c\x54\x6f\x67\x67\x6c\x65\x73\x20\x44\ +\x72\x61\x66\x74\x20\x73\x6e\x61\x70\x20\x6f\x6e\x20\x6f\x72\x20\ +\x6f\x66\x66\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x54\x6f\ +\x67\x67\x6c\x65\x53\x6e\x61\x70\x01\x03\x00\x00\x00\x0c\x00\x54\ +\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x78\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x54\x72\x69\x6d\x65\x78\x07\x00\x00\x00\x0c\x44\ +\x72\x61\x66\x74\x5f\x54\x72\x69\x6d\x65\x78\x01\x03\x00\x00\x00\ +\xac\x90\x78\x62\x9e\x30\x57\x30\x5f\x30\xaa\x30\xd6\x30\xb8\x30\ +\xa7\x30\xaf\x30\xc8\x30\x92\x30\xc8\x30\xea\x30\xe0\x30\x7e\x30\ +\x5f\x30\x6f\x5e\xf6\x95\x77\x30\x59\x30\x8b\x30\x4b\x30\x01\x30\ +\x82\x30\x57\x30\x4f\x30\x6f\x53\x58\x4e\x00\x30\x6e\x97\x62\x30\ +\x92\x62\xbc\x30\x57\x51\xfa\x30\x57\x30\x7e\x30\x59\x30\x02\x00\ +\x5b\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x5d\x30\x67\x30\xb9\x30\ +\xca\x30\xc3\x30\xd7\x30\x01\x00\x5b\x00\x53\x00\x68\x00\x69\x00\ +\x66\x00\x74\x00\x5d\x30\x67\x73\xfe\x57\x28\x30\x6e\x30\xbb\x30\ +\xb0\x30\xe1\x30\xf3\x30\xc8\x30\x7e\x30\x5f\x30\x6f\x57\x82\x76\ +\xf4\x65\xb9\x54\x11\x30\x6b\x62\xd8\x67\x5f\x30\x01\x00\x5b\x00\ +\x41\x00\x6c\x00\x74\x00\x5d\x30\x67\x53\xcd\x8e\xe2\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x89\x54\x72\x69\x6d\x73\x20\x6f\x72\x20\ +\x65\x78\x74\x65\x6e\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x6f\x72\x20\ +\x65\x78\x74\x72\x75\x64\x65\x73\x20\x73\x69\x6e\x67\x6c\x65\x20\ +\x66\x61\x63\x65\x73\x2e\x20\x43\x54\x52\x4c\x20\x73\x6e\x61\x70\ +\x73\x2c\x20\x53\x48\x49\x46\x54\x20\x63\x6f\x6e\x73\x74\x72\x61\ +\x69\x6e\x73\x20\x74\x6f\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x73\ +\x65\x67\x6d\x65\x6e\x74\x20\x6f\x72\x20\x74\x6f\x20\x6e\x6f\x72\ +\x6d\x61\x6c\x2c\x20\x41\x4c\x54\x20\x69\x6e\x76\x65\x72\x74\x73\ +\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x54\x72\x69\x6d\x65\ +\x78\x01\x03\x00\x00\x00\x1a\x67\x00\x5f\x8c\x30\x6e\x30\xbb\x30\ +\xb0\x30\xe1\x30\xf3\x30\xc8\x30\x92\x51\x43\x30\x6b\x62\x3b\x30\ +\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x55\x6e\x64\x6f\x20\ +\x6c\x61\x73\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\ +\x0e\x44\x72\x61\x66\x74\x5f\x55\x6e\x64\x6f\x4c\x69\x6e\x65\x01\ +\x03\x00\x00\x00\x2c\x63\xcf\x75\x3b\x4e\x2d\x30\x6e\x7d\xda\x30\ +\x67\x67\x00\x5f\x8c\x30\x6b\x63\xcf\x30\x44\x30\x5f\x30\xbb\x30\ +\xb0\x30\xe1\x30\xf3\x30\xc8\x30\x92\x51\x43\x30\x6b\x62\x3b\x30\ +\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x55\x6e\x64\x6f\x65\ +\x73\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x64\x72\x61\x77\x6e\ +\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\ +\x6c\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\ +\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x55\x6e\x64\x6f\x4c\ +\x69\x6e\x65\x01\x03\x00\x00\x00\x5a\x90\x78\x62\x9e\x30\x57\x30\ +\x5f\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\x92\x30\ +\x72\x30\x68\x30\x64\x30\x6b\x7d\x50\x54\x08\x30\x01\x30\x7e\x30\ +\x5f\x30\x6f\x95\x89\x30\x58\x30\x5f\x90\x23\x7d\xda\x30\x92\x58\ +\x57\x30\x8a\x6f\x70\x30\x55\x30\x8c\x30\x5f\x97\x62\x30\x6b\x59\ +\x09\x63\xdb\x30\x01\x30\x7e\x30\x5f\x30\x6f\x97\x62\x30\x92\x7d\ +\x71\x54\x08\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x4a\x6f\x69\ +\x6e\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\x6f\x6e\x65\ +\x2c\x20\x6f\x72\x20\x63\x6f\x6e\x76\x65\x72\x74\x73\x20\x63\x6c\ +\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x73\x20\x74\x6f\x20\x66\x69\ +\x6c\x6c\x65\x64\x20\x66\x61\x63\x65\x73\x2c\x20\x6f\x72\x20\x75\ +\x6e\x69\x74\x65\x20\x66\x61\x63\x65\x73\x07\x00\x00\x00\x0d\x44\ +\x72\x61\x66\x74\x5f\x55\x70\x67\x72\x61\x64\x65\x01\x03\x00\x00\ +\x00\x0e\x30\xa2\x30\xc3\x30\xd7\x30\xb0\x30\xec\x30\xfc\x30\xc9\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x55\x70\x67\x72\x61\x64\ +\x65\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x55\x70\x67\x72\ +\x61\x64\x65\x01\x03\x00\x00\x00\x98\x00\x43\x00\x72\x00\x65\x00\ +\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x6d\x00\ +\x75\x00\x6c\x00\x74\x00\x69\x00\x70\x00\x6c\x00\x65\x00\x2d\x00\ +\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x44\x00\x72\x00\ +\x61\x00\x66\x00\x74\x00\x57\x00\x69\x00\x72\x00\x65\x00\x20\x00\ +\x28\x00\x44\x00\x57\x00\x69\x00\x72\x00\x65\x00\x29\x00\x2e\x00\ +\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x2c\x00\x20\x00\x53\x00\ +\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ +\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4c\x43\x72\x65\x61\x74\ +\x65\x73\x20\x61\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\x70\x6f\ +\x69\x6e\x74\x20\x44\x72\x61\x66\x74\x57\x69\x72\x65\x20\x28\x44\ +\x57\x69\x72\x65\x29\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\ +\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\ +\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\x72\x61\x66\ +\x74\x5f\x57\x69\x72\x65\x01\x03\x00\x00\x00\x0a\x00\x44\x00\x57\ +\x00\x69\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x44\x57\x69\x72\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\ +\x57\x69\x72\x65\x01\x03\x00\x00\x00\x20\x90\x23\x7d\xda\x30\x68\ +\x00\x42\x30\xb9\x30\xd7\x30\xe9\x30\xa4\x30\xf3\x66\xf2\x7d\xda\ +\x30\x92\x76\xf8\x4e\x92\x59\x09\x63\xdb\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x21\x43\x6f\x6e\x76\x65\x72\x74\x73\x20\x62\x65\x74\ +\x77\x65\x65\x6e\x20\x57\x69\x72\x65\x20\x61\x6e\x64\x20\x42\x53\ +\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x13\x44\x72\x61\x66\x74\x5f\ +\x57\x69\x72\x65\x54\x6f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\ +\x00\x00\x1c\x90\x23\x7d\xda\x30\x92\x00\x42\x30\xb9\x30\xd7\x30\ +\xe9\x30\xa4\x30\xf3\x66\xf2\x7d\xda\x30\x6b\x59\x09\x63\xdb\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x57\x69\x72\x65\x20\x74\x6f\ +\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x13\x44\x72\x61\ +\x66\x74\x5f\x57\x69\x72\x65\x54\x6f\x42\x53\x70\x6c\x69\x6e\x65\ +\x01\x03\x00\x00\x00\x0e\x00\x41\x00\x6c\x00\x74\x00\x20\x00\x6d\ +\x00\x6f\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x41\x6c\ +\x74\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x41\x00\ +\x6c\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\x74\x00\x65\x00\ +\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x50\x00\x61\x00\x74\x00\ +\x74\x00\x65\x00\x72\x00\x6e\x00\x73\x00\x20\x00\x6c\x00\x6f\x00\ +\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1f\x41\x6c\x74\x65\x72\x6e\x61\x74\x65\x20\x53\ +\x56\x47\x20\x50\x61\x74\x74\x65\x72\x6e\x73\x20\x6c\x6f\x63\x61\ +\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x41\x00\x6c\ +\x00\x77\x00\x61\x00\x79\x00\x73\x00\x20\x00\x73\x00\x68\x00\x6f\ +\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x41\x6c\x77\x61\ +\x79\x73\x20\x73\x68\x6f\x77\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5a\x00\ +\x41\x00\x6c\x00\x77\x00\x61\x00\x79\x00\x73\x00\x20\x00\x73\x00\ +\x6e\x00\x61\x00\x70\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x28\x00\ +\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\ +\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\ +\x20\x00\x6b\x00\x65\x00\x79\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2d\x41\x6c\x77\x61\x79\x73\x20\x73\x6e\x61\x70\x20\x74\ +\x6f\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x28\x64\x69\x73\x61\x62\ +\x6c\x65\x20\x73\x6e\x61\x70\x20\x6d\x6f\x64\x20\x6b\x65\x79\x29\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x41\x00\x72\x00\x69\x00\x61\ +\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x72\x69\x61\ +\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x42\x00\x61\x00\x63\x00\ +\x6b\x00\x73\x00\x6c\x00\x61\x00\x73\x00\x68\x00\x20\x00\x35\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\ +\x73\x68\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x42\x00\x61\ +\x00\x63\x00\x6b\x00\x73\x00\x6c\x00\x61\x00\x73\x00\x68\x00\x20\ +\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\ +\x73\x6c\x61\x73\x68\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\ +\x42\x00\x61\x00\x63\x00\x6b\x00\x73\x00\x6c\x00\x61\x00\x73\x00\ +\x68\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\ +\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x39\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x7e\x00\x43\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x66\x00\x20\x00\x79\ +\x00\x6f\x00\x75\x00\x20\x00\x77\x00\x61\x00\x6e\x00\x74\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\x00\x72\x00\x65\x00\x61\ +\x00\x73\x00\x20\x00\x28\x00\x33\x00\x44\x00\x20\x00\x66\x00\x61\ +\x00\x63\x00\x65\x00\x73\x00\x29\x00\x20\x00\x74\x00\x6f\x00\x20\ +\x00\x62\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x2e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3f\x43\x68\x65\x63\x6b\x20\ +\x74\x68\x69\x73\x20\x69\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\ +\x20\x74\x68\x65\x20\x61\x72\x65\x61\x73\x20\x28\x33\x44\x20\x66\ +\x61\x63\x65\x73\x29\x20\x74\x6f\x20\x62\x65\x20\x69\x6d\x70\x6f\ +\x72\x74\x65\x64\x20\x74\x6f\x6f\x2e\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\xa6\x00\x43\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x66\x00\x20\x00\x79\x00\ +\x6f\x00\x75\x00\x20\x00\x77\x00\x61\x00\x6e\x00\x74\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\ +\x6e\x00\x61\x00\x6d\x00\x65\x00\x64\x00\x20\x00\x62\x00\x6c\x00\ +\x6f\x00\x63\x00\x6b\x00\x73\x00\x20\x00\x28\x00\x62\x00\x65\x00\ +\x67\x00\x69\x00\x6e\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x61\x00\x20\x00\x2a\x00\ +\x29\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x65\x00\x20\x00\ +\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x64\x00\ +\x20\x00\x74\x00\x6f\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x53\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x79\ +\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x68\x65\x20\x6e\x6f\x6e\x2d\ +\x6e\x61\x6d\x65\x64\x20\x62\x6c\x6f\x63\x6b\x73\x20\x28\x62\x65\ +\x67\x69\x6e\x6e\x69\x6e\x67\x20\x77\x69\x74\x68\x20\x61\x20\x2a\ +\x29\x20\x74\x6f\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\ +\x20\x74\x6f\x6f\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x43\x00\x69\ +\x00\x72\x00\x63\x00\x6c\x00\x65\x00\x20\x00\x35\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x35\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x10\x00\x43\x00\x69\x00\x72\x00\x63\x00\x6c\ +\x00\x65\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\ +\x43\x69\x72\x63\x6c\x65\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\ +\x00\x43\x00\x69\x00\x72\x00\x63\x00\x6c\x00\x65\x00\x20\x00\x39\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\ +\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x7d\xda\x5e\x45\x30\x6e\ +\x30\xab\x30\xe9\x30\xfc\x30\xde\x30\xc3\x30\xd7\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x19\x43\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\ +\x65\x64\x20\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x18\x30\xab\x30\xe9\x30\xfc\x30\xde\x30\ +\xc3\x30\xd4\x30\xf3\x30\xb0\x30\xd5\x30\xa1\x30\xa4\x30\xeb\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x12\x43\x6f\x6c\x6f\x72\x20\x6d\ +\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x1a\x00\x43\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\ +\x61\x00\x69\x00\x6e\x00\x20\x00\x6d\x00\x6f\x00\x64\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x73\x74\x72\x61\x69\x6e\ +\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\x69\xcb\x90\x20\ +\x72\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x6f\x6e\x73\ +\x74\x72\x75\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\ +\x69\xcb\x90\x20\x72\x69\x30\x6e\x82\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x12\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\ +\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x43\ +\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\ +\x00\x70\x00\x20\x00\x6e\x00\x61\x00\x6d\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x17\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\ +\x6f\x6e\x20\x67\x72\x6f\x75\x70\x20\x6e\x61\x6d\x65\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x1e\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\ +\x65\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x43\x72\x65\ +\x61\x74\x65\x20\x53\x6b\x65\x74\x63\x68\x65\x73\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x32\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\ +\x00\x72\x00\x69\x00\x63\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\ +\x43\x72\x65\x61\x74\x65\x20\x70\x61\x72\x61\x6d\x65\x74\x72\x69\ +\x63\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x16\x00\x44\x00\x58\x00\x46\x5f\x62\x5f\x0f\x30\x6e\x30\xaa\x30\ +\xd7\x30\xb7\x30\xe7\x30\xf3\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x12\x44\x58\x46\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\ +\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x30\xc7\x30\xd5\x30\ +\xa9\x30\xeb\x30\xc8\x30\x6e\x82\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x20\x30\xc6\x30\xad\x30\xb9\x30\xc8\ +\x30\x68\x5b\xf8\x6c\xd5\x30\x6e\x30\xc7\x30\xd5\x30\xa9\x30\xeb\ +\x30\xc8\x30\x6e\x9a\xd8\x30\x55\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x27\x44\x65\x66\x61\x75\x6c\x74\x20\x68\x65\x69\x67\x68\x74\ +\x20\x66\x6f\x72\x20\x74\x65\x78\x74\x73\x20\x61\x6e\x64\x20\x64\ +\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x0a\x65\xe2\x5b\x9a\x30\x6e\x7d\xda\x5e\x45\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x11\x44\x65\x66\x61\x75\x6c\x74\x20\x6c\x69\x6e\ +\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x30\xc7\ +\x30\xd5\x30\xa9\x30\xeb\x30\xc8\x30\x6e\x30\xc6\x30\xf3\x30\xd7\ +\x30\xec\x30\xfc\x30\xc8\x30\xb7\x30\xfc\x30\xc8\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x16\x44\x65\x66\x61\x75\x6c\x74\x20\x74\x65\ +\x6d\x70\x6c\x61\x74\x65\x20\x73\x68\x65\x65\x74\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x1e\x30\xc7\x30\xd5\x30\xa9\x30\xeb\x30\xc8\x30\x6e\ +\x30\xc6\x30\xad\x30\xb9\x30\xc8\x30\x6e\x30\xd5\x30\xa9\x30\xf3\ +\x30\xc8\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\x65\x66\x61\ +\x75\x6c\x74\x20\x74\x65\x78\x74\x20\x66\x6f\x6e\x74\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x18\x30\xc7\x30\xd5\x30\xa9\x30\xeb\x30\xc8\x30\ +\x6e\x30\xc6\x30\xad\x30\xb9\x30\xc8\x9a\xd8\x30\x55\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x13\x44\x65\x66\x61\x75\x6c\x74\x20\x74\ +\x65\x78\x74\x20\x68\x65\x69\x67\x68\x74\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x12\x30\xc7\x30\xd5\x30\xa9\x30\xeb\x30\xc8\x30\x6e\x4f\x5c\ +\x69\x6d\x97\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x44\x65\ +\x66\x61\x75\x6c\x74\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\x6c\ +\x61\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x5b\xf8\x6c\xd5\x53\ +\xca\x30\x73\x77\xe2\x53\x70\x30\x6e\x30\xb9\x30\xbf\x30\xa4\x30\ +\xeb\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x44\x69\x6d\x65\x6e\ +\x73\x69\x6f\x6e\x73\x20\x26\x20\x4c\x65\x61\x64\x65\x72\x20\x61\ +\x72\x72\x6f\x77\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x08\x5b\xf8\x6c\xd5\x7c\xbe\x5e\xa6\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1a\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x70\ +\x72\x65\x63\x69\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0a\x00\x44\x00\x6f\x00\x74\x00\x20\x00\x35\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\x35\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0a\x00\x44\x00\x6f\x00\x74\x00\x20\x00\ +\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\x37\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x44\x00\x6f\x00\x74\x00\x20\ +\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\ +\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x44\x00\x72\x00\x61\x00\ +\x66\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\ +\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x44\x72\x61\x66\x74\ +\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x6d\x6f\x64\x65\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x48\x00\x45\x00\x78\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x20\x00\x33\x00\x44\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x73\x00\ +\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x66\x00\x61\x00\x63\x00\ +\x65\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x24\x45\x78\x70\x6f\x72\x74\x20\ +\x33\x44\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x73\x20\x70\x6f\ +\x6c\x79\x66\x61\x63\x65\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x18\x00\x45\x00\x78\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x00\x20\x00\x53\x00\x74\x00\x79\x00\x6c\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0c\x45\x78\x70\x6f\x72\x74\x20\x53\x74\ +\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x46\x00\x69\x00\ +\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x73\x00\x20\x00\x62\x00\x79\x00\x20\x00\x64\x00\x65\x00\ +\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x17\x46\x69\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x62\x79\x20\x64\x65\x66\x61\x75\x6c\x74\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x16\x4e\x00\x82\x2c\x76\x84\x30\x6a\x30\xc9\x30\xe9\x30\xd5\ +\x30\xc8\x30\x6e\x8a\x2d\x5b\x9a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x16\x47\x65\x6e\x65\x72\x61\x6c\x20\x44\x72\x61\x66\x74\x20\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\ +\x51\x68\x82\x2c\x76\x84\x30\x6a\x8a\x2d\x5b\x9a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\ +\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x47\ +\x00\x6c\x00\x6f\x00\x62\x00\x61\x00\x6c\x00\x20\x00\x63\x00\x6f\ +\x00\x70\x00\x79\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x10\x47\x6c\x6f\x62\x61\x6c\x20\x63\ +\x6f\x70\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\ +\x00\x47\x00\x72\x00\x69\x00\x64\x00\x20\x00\x73\x00\x70\x00\x61\ +\x00\x63\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0c\x47\x72\x69\x64\x20\x73\x70\x61\x63\x69\x6e\x67\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x30\x00\x47\x00\x72\x00\x6f\x00\x75\x00\x70\ +\x00\x20\x00\x6c\x00\x61\x00\x79\x00\x65\x00\x72\x00\x73\x00\x20\ +\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x6c\x00\x6f\ +\x00\x63\x00\x6b\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\ +\x47\x72\x6f\x75\x70\x20\x6c\x61\x79\x65\x72\x73\x20\x69\x6e\x74\ +\x6f\x20\x62\x6c\x6f\x63\x6b\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x1a\ +\x00\x48\x00\x65\x00\x72\x00\x65\x00\x20\x00\x79\x00\x6f\x00\x75\ +\x00\x20\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x73\x00\x70\x00\x65\ +\x00\x63\x00\x69\x00\x66\x00\x79\x00\x20\x00\x61\x00\x20\x00\x64\ +\x00\x69\x00\x72\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x79\ +\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\ +\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\ +\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x63\x00\x6f\ +\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x3c\x00\x70\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\ +\x00\x6e\x00\x3e\x00\x20\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\ +\x00\x69\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x74\ +\x00\x68\x00\x61\x00\x74\x00\x20\x00\x63\x00\x61\x00\x6e\x00\x20\ +\x00\x62\x00\x65\x00\x20\x00\x61\x00\x64\x00\x64\x00\x65\x00\x64\ +\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\ +\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x68\ +\x00\x61\x00\x74\x00\x63\x00\x68\x00\x20\x00\x70\x00\x61\x00\x74\ +\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x8d\x48\x65\x72\x65\x20\x79\x6f\x75\x20\x63\x61\x6e\ +\x20\x73\x70\x65\x63\x69\x66\x79\x20\x61\x20\x64\x69\x72\x65\x63\ +\x74\x6f\x72\x79\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\ +\x53\x56\x47\x20\x66\x69\x6c\x65\x73\x20\x63\x6f\x6e\x74\x61\x69\ +\x6e\x69\x6e\x67\x20\x3c\x70\x61\x74\x74\x65\x72\x6e\x3e\x20\x64\ +\x65\x66\x69\x6e\x69\x74\x69\x6f\x6e\x73\x20\x74\x68\x61\x74\x20\ +\x63\x61\x6e\x20\x62\x65\x20\x61\x64\x64\x65\x64\x20\x74\x6f\x20\ +\x74\x68\x65\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x44\x72\x61\ +\x66\x74\x20\x68\x61\x74\x63\x68\x20\x70\x61\x74\x74\x65\x72\x6e\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x48\x00\x69\x00\x64\x00\ +\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\ +\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\ +\x6c\x00\x62\x00\x61\x00\x72\x00\x20\x00\x61\x00\x66\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x75\x00\x73\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x21\x48\x69\x64\x65\x20\x44\x72\x61\x66\x74\x20\ +\x73\x6e\x61\x70\x20\x74\x6f\x6f\x6c\x62\x61\x72\x20\x61\x66\x74\ +\x65\x72\x20\x75\x73\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x48\ +\x00\x69\x00\x64\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\ +\x00\x74\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x62\x00\x65\ +\x00\x6e\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\ +\x48\x69\x64\x65\x20\x44\x72\x61\x66\x74\x20\x77\x6f\x72\x6b\x62\ +\x65\x6e\x63\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x56\x00\x49\x00\x66\ +\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\ +\x00\x2c\x00\x20\x00\x61\x00\x20\x00\x67\x00\x72\x00\x69\x00\x64\ +\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\x70\ +\x00\x70\x00\x65\x00\x61\x00\x72\x00\x20\x00\x77\x00\x68\x00\x65\ +\x00\x6e\x00\x20\x00\x64\x00\x72\x00\x61\x00\x77\x00\x69\x00\x6e\ +\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\x66\x20\x63\ +\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x20\x67\x72\x69\x64\x20\x77\ +\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x77\x68\x65\x6e\x20\ +\x64\x72\x61\x77\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xca\x00\ +\x49\x00\x66\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\ +\x65\x00\x64\x00\x2c\x00\x20\x00\x66\x00\x72\x00\x65\x00\x65\x00\ +\x63\x00\x61\x00\x64\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\ +\x20\x00\x74\x00\x72\x00\x79\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ +\x6a\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x63\x00\x6f\x00\ +\x69\x00\x6e\x00\x63\x00\x69\x00\x64\x00\x65\x00\x6e\x00\x74\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\ +\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x77\x00\x69\x00\ +\x72\x00\x65\x00\x73\x00\x2e\x00\x20\x00\x42\x00\x65\x00\x77\x00\ +\x61\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x74\x00\x61\x00\ +\x6b\x00\x65\x00\x20\x00\x61\x00\x20\x00\x77\x00\x68\x00\x69\x00\ +\x6c\x00\x65\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x65\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x66\ +\x72\x65\x65\x63\x61\x64\x20\x77\x69\x6c\x6c\x20\x74\x72\x79\x20\ +\x74\x6f\x20\x6a\x6f\x69\x6e\x74\x20\x63\x6f\x69\x6e\x63\x69\x64\ +\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\ +\x20\x77\x69\x72\x65\x73\x2e\x20\x42\x65\x77\x61\x72\x65\x2c\x20\ +\x74\x68\x69\x73\x20\x63\x61\x6e\x20\x74\x61\x6b\x65\x20\x61\x20\ +\x77\x68\x69\x6c\x65\x2e\x2e\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xf2\ +\x00\x49\x00\x66\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\ +\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x67\x00\x72\ +\x00\x69\x00\x64\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\ +\x00\x61\x00\x6c\x00\x77\x00\x61\x00\x79\x00\x73\x00\x20\x00\x62\ +\x00\x65\x00\x20\x00\x76\x00\x69\x00\x73\x00\x69\x00\x62\x00\x6c\ +\x00\x65\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\ +\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x62\x00\x65\x00\x6e\ +\x00\x63\x00\x68\x00\x20\x00\x69\x00\x73\x00\x20\x00\x61\x00\x63\ +\x00\x74\x00\x69\x00\x76\x00\x65\x00\x2e\x00\x20\x00\x4f\x00\x74\ +\x00\x68\x00\x65\x00\x72\x00\x77\x00\x69\x00\x73\x00\x65\x00\x20\ +\x00\x6f\x00\x6e\x00\x6c\x00\x79\x00\x20\x00\x77\x00\x68\x00\x65\ +\x00\x6e\x00\x20\x00\x75\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\ +\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\ +\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x79\x49\x66\x20\x63\ +\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x44\x72\x61\x66\ +\x74\x20\x67\x72\x69\x64\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\ +\x79\x73\x20\x62\x65\x20\x76\x69\x73\x69\x62\x6c\x65\x20\x77\x68\ +\x65\x6e\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x77\x6f\x72\ +\x6b\x62\x65\x6e\x63\x68\x20\x69\x73\x20\x61\x63\x74\x69\x76\x65\ +\x2e\x20\x4f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x6f\x6e\x6c\x79\ +\x20\x77\x68\x65\x6e\x20\x75\x73\x69\x6e\x67\x20\x61\x20\x63\x6f\ +\x6d\x6d\x61\x6e\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x88\x00\x49\x00\ +\x66\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\ +\x64\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x53\x00\ +\x6e\x00\x61\x00\x70\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\ +\x62\x00\x61\x00\x72\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\ +\x20\x00\x62\x00\x65\x00\x20\x00\x73\x00\x68\x00\x6f\x00\x77\x00\ +\x6e\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x65\x00\x76\x00\ +\x65\x00\x72\x00\x20\x00\x79\x00\x6f\x00\x75\x00\x20\x00\x75\x00\ +\x73\x00\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\ +\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x44\x49\ +\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x53\ +\x6e\x61\x70\x20\x74\x6f\x6f\x6c\x62\x61\x72\x20\x77\x69\x6c\x6c\ +\x20\x62\x65\x20\x73\x68\x6f\x77\x6e\x20\x77\x68\x65\x6e\x65\x76\ +\x65\x72\x20\x79\x6f\x75\x20\x75\x73\x65\x20\x73\x6e\x61\x70\x70\ +\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa2\x00\x49\x00\x66\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\ +\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\ +\x2c\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x63\x00\x6f\x00\ +\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x77\x00\ +\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x65\x00\ +\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x64\x00\x20\x00\ +\x61\x00\x73\x00\x20\x00\x33\x00\x64\x00\x20\x00\x70\x00\x6f\x00\ +\x6c\x00\x79\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x51\x49\x66\x20\x74\x68\x69\x73\x20\x69\ +\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x6c\x6c\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\ +\x67\x20\x66\x61\x63\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\ +\x65\x78\x70\x6f\x72\x74\x65\x64\x20\x61\x73\x20\x33\x64\x20\x70\ +\x6f\x6c\x79\x66\x61\x63\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xde\ +\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\ +\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x79\ +\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x77\x00\x69\ +\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x6b\x00\x65\ +\x00\x70\x00\x74\x00\x20\x00\x61\x00\x63\x00\x72\x00\x6f\x00\x73\ +\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\ +\x00\x64\x00\x2c\x00\x20\x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\ +\x00\x77\x00\x69\x00\x73\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x73\x00\x20\x00\x77\x00\x69\ +\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\x6c\x00\x77\x00\x61\x00\x79\ +\x00\x73\x00\x20\x00\x73\x00\x74\x00\x61\x00\x72\x00\x74\x00\x20\ +\x00\x69\x00\x6e\x00\x20\x00\x6e\x00\x6f\x00\x2d\x00\x63\x00\x6f\ +\x00\x70\x00\x79\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x6f\x49\x66\x20\x74\x68\x69\x73\x20\ +\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x63\x6f\x70\x79\ +\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x6b\x65\ +\x70\x74\x20\x61\x63\x72\x6f\x73\x73\x20\x63\x6f\x6d\x6d\x61\x6e\ +\x64\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x63\x6f\x6d\ +\x6d\x61\x6e\x64\x73\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\ +\x73\x20\x73\x74\x61\x72\x74\x20\x69\x6e\x20\x6e\x6f\x2d\x63\x6f\ +\x70\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x7e\x00\ +\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\ +\x65\x00\x64\x00\x2c\x00\x20\x00\x68\x00\x61\x00\x74\x00\x63\x00\ +\x68\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\ +\x20\x00\x62\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\ +\x65\x00\x72\x00\x74\x00\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\ +\x74\x00\x6f\x00\x20\x00\x73\x00\x69\x00\x6d\x00\x70\x00\x6c\x00\ +\x65\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x3f\x49\x66\x20\x74\x68\x69\x73\x20\x69\ +\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x68\x61\x74\x63\x68\ +\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x63\x6f\x6e\x76\x65\ +\x72\x74\x65\x64\x20\x69\x6e\x74\x6f\x20\x73\x69\x6d\x70\x6c\x65\ +\x20\x77\x69\x72\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xf6\x00\x49\ +\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\ +\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\ +\x00\x64\x00\x2c\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\x65\x00\x64\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\ +\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x67\ +\x00\x65\x00\x74\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\ +\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x20\ +\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\x00\x65\ +\x00\x78\x00\x74\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x2c\ +\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x61\x00\x64\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x79\x00\x20\x00\x68\x00\x61\x00\x76\x00\x65\x00\x20\x00\x69\ +\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\x00\x58\ +\x00\x46\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\ +\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7b\x49\x66\ +\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\ +\x2c\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x65\x78\x74\x73\ +\x20\x77\x69\x6c\x6c\x20\x67\x65\x74\x20\x74\x68\x65\x20\x73\x74\ +\x61\x6e\x64\x61\x72\x64\x20\x44\x72\x61\x66\x74\x20\x74\x65\x78\ +\x74\x20\x73\x69\x7a\x65\x2c\x20\x69\x6e\x73\x74\x65\x61\x64\x20\ +\x6f\x66\x20\x74\x68\x65\x20\x73\x69\x7a\x65\x20\x74\x68\x65\x79\ +\x20\x68\x61\x76\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x44\x58\x46\ +\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\xcc\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\ +\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\ +\x20\x00\x61\x00\x73\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x6c\x00\ +\x65\x00\x64\x00\x20\x00\x61\x00\x73\x00\x20\x00\x64\x00\x65\x00\ +\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x2e\x00\x20\x00\x4f\x00\ +\x74\x00\x68\x00\x65\x00\x72\x00\x77\x00\x69\x00\x73\x00\x65\x00\ +\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x79\x00\x20\x00\x77\x00\ +\x69\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\ +\x61\x00\x72\x00\x20\x00\x61\x00\x73\x00\x20\x00\x77\x00\x69\x00\ +\x72\x00\x65\x00\x66\x00\x72\x00\x61\x00\x6d\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x66\x49\x66\x20\x74\x68\x69\x73\x20\x69\ +\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x61\ +\x73\x20\x66\x69\x6c\x6c\x65\x64\x20\x61\x73\x20\x64\x65\x66\x61\ +\x75\x6c\x74\x2e\x20\x4f\x74\x68\x65\x72\x77\x69\x73\x65\x2c\x20\ +\x74\x68\x65\x79\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\ +\x20\x61\x73\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\xd0\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\ +\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x73\x00\ +\x6e\x00\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\ +\x20\x00\x6f\x00\x63\x00\x63\x00\x75\x00\x72\x00\x20\x00\x61\x00\ +\x67\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x77\x00\ +\x69\x00\x74\x00\x68\x00\x20\x00\x6d\x00\x6f\x00\x72\x00\x65\x00\ +\x20\x00\x74\x00\x68\x00\x61\x00\x6e\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x69\x00\x6e\x00\x64\x00\x69\x00\x63\x00\x61\x00\ +\x74\x00\x65\x00\x64\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\ +\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x65\x00\x64\x00\ +\x67\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x68\x49\ +\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\ +\x64\x2c\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x20\x77\x69\x6c\x6c\ +\x20\x6e\x6f\x74\x20\x6f\x63\x63\x75\x72\x20\x61\x67\x61\x69\x6e\ +\x73\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x74\x68\x20\ +\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\x74\x68\x65\x20\x69\x6e\ +\x64\x69\x63\x61\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\ +\x66\x20\x65\x64\x67\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xf2\x00\ +\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\ +\x65\x00\x64\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x77\x00\x6f\x00\ +\x72\x00\x6b\x00\x62\x00\x65\x00\x6e\x00\x63\x00\x68\x00\x20\x00\ +\x77\x00\x6f\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x61\x00\x70\x00\ +\x70\x00\x65\x00\x61\x00\x72\x00\x2e\x00\x20\x00\x55\x00\x73\x00\ +\x65\x00\x66\x00\x75\x00\x6c\x00\x20\x00\x73\x00\x69\x00\x6e\x00\ +\x63\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\x00\x72\x00\ +\x61\x00\x66\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\ +\x73\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x61\x00\x6c\x00\ +\x73\x00\x6f\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x41\x00\x72\x00\x63\x00\x68\x00\x20\x00\x77\x00\ +\x6f\x00\x72\x00\x6b\x00\x62\x00\x65\x00\x6e\x00\x63\x00\x68\x00\ +\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x79\x49\x66\x20\x74\x68\ +\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\ +\x68\x65\x20\x44\x72\x61\x66\x74\x20\x77\x6f\x72\x6b\x62\x65\x6e\ +\x63\x68\x20\x77\x6f\x6e\x27\x74\x20\x61\x70\x70\x65\x61\x72\x2e\ +\x20\x55\x73\x65\x66\x75\x6c\x20\x73\x69\x6e\x63\x65\x20\x61\x6c\ +\x6c\x20\x6f\x66\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x74\ +\x6f\x6f\x6c\x73\x20\x61\x72\x65\x20\x61\x6c\x73\x6f\x20\x69\x6e\ +\x20\x74\x68\x65\x20\x41\x72\x63\x68\x20\x77\x6f\x72\x6b\x62\x65\ +\x6e\x63\x68\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xea\x00\x49\x00\x66\ +\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\ +\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\ +\x00\x2c\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x70\ +\x00\x6f\x00\x6c\x00\x79\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x73\ +\x00\x20\x00\x68\x00\x61\x00\x76\x00\x65\x00\x20\x00\x61\x00\x20\ +\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x20\x00\x64\x00\x65\ +\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x79\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\ +\x00\x20\x00\x62\x00\x65\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\ +\x00\x65\x00\x72\x00\x65\x00\x64\x00\x20\x00\x61\x00\x73\x00\x20\ +\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x20\x00\x77\ +\x00\x69\x00\x72\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\x74\ +\x00\x68\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6f\ +\x00\x72\x00\x72\x00\x65\x00\x63\x00\x74\x00\x20\x00\x77\x00\x69\ +\x00\x64\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x75\ +\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\ +\x65\x64\x2c\x20\x77\x68\x65\x6e\x20\x70\x6f\x6c\x79\x6c\x69\x6e\ +\x65\x73\x20\x68\x61\x76\x65\x20\x61\x20\x77\x69\x64\x74\x68\x20\ +\x64\x65\x66\x69\x6e\x65\x64\x2c\x20\x74\x68\x65\x79\x20\x77\x69\ +\x6c\x6c\x20\x62\x65\x20\x72\x65\x6e\x64\x65\x72\x65\x64\x20\x61\ +\x73\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x73\x20\x77\ +\x69\x74\x68\x20\x74\x68\x65\x20\x63\x6f\x72\x72\x65\x63\x74\x20\ +\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x94\x30\x53\x30\ +\x8c\x30\x4c\x30\xc1\x30\xa7\x30\xc3\x30\xaf\x30\x55\x30\x8c\x30\ +\x66\x30\x44\x30\x8b\x58\x34\x54\x08\x30\x01\x63\xcf\x75\x3b\x4e\ +\x2d\x30\x6f\x5e\x38\x30\x6b\x65\xe2\x5b\x58\x30\x6e\x30\xaa\x30\ +\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\x6b\x30\xb9\x30\xca\x30\ +\xc3\x30\xd7\x30\x57\x30\x7e\x30\x59\x30\x02\x30\xc1\x30\xa7\x30\ +\xc3\x30\xaf\x30\x55\x30\x8c\x30\x66\x30\x44\x30\x6a\x30\x44\x58\ +\x34\x54\x08\x30\x01\x00\x5b\x00\x43\x00\x74\x00\x72\x00\x6c\x00\ +\x5d\x30\x92\x62\xbc\x30\x57\x30\x5f\x30\x68\x30\x4d\x30\x60\x30\ +\x51\x30\xb9\x30\xca\x30\xc3\x30\xd7\x30\x57\x30\x7e\x30\x59\x30\ +\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x81\x49\x66\x20\x74\x68\ +\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x79\ +\x6f\x75\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x73\ +\x6e\x61\x70\x20\x74\x6f\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x68\x69\x6c\x65\x20\x64\x72\ +\x61\x77\x69\x6e\x67\x2e\x20\x49\x66\x20\x6e\x6f\x74\x2c\x20\x79\ +\x6f\x75\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x73\x6e\x61\x70\x70\ +\x69\x6e\x67\x20\x6f\x6e\x6c\x79\x20\x77\x68\x65\x6e\x20\x70\x72\ +\x65\x73\x73\x69\x6e\x67\x20\x43\x54\x52\x4c\x2e\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x1c\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\ +\x00\x20\x00\x2a\x00\x62\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x49\x6d\x70\x6f\x72\x74\ +\x20\x2a\x62\x6c\x6f\x63\x6b\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\ +\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x4f\ +\x00\x43\x00\x41\x00\x20\x00\x61\x00\x72\x00\x65\x00\x61\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x49\x6d\x70\x6f\x72\x74\ +\x20\x4f\x43\x41\x20\x61\x72\x65\x61\x73\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x40\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\ +\x00\x68\x00\x61\x00\x74\x00\x63\x00\x68\x00\x20\x00\x62\x00\x6f\ +\x00\x75\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x69\x00\x65\x00\x73\ +\x00\x20\x00\x61\x00\x73\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x49\x6d\x70\x6f\ +\x72\x74\x20\x68\x61\x74\x63\x68\x20\x62\x6f\x75\x6e\x64\x61\x72\ +\x69\x65\x73\x20\x61\x73\x20\x77\x69\x72\x65\x73\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x16\x30\xec\x30\xa4\x30\xa2\x30\xa6\x30\xc8\x30\x6e\ +\x30\xa4\x30\xf3\x30\xdd\x30\xfc\x30\xc8\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0e\x49\x6d\x70\x6f\x72\x74\x20\x6c\x61\x79\x6f\x75\ +\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x30\xa4\x30\xf3\x30\xdd\ +\x30\xfc\x30\xc8\x30\xb9\x30\xbf\x30\xa4\x30\xeb\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x49\x6d\x70\x6f\x72\x74\x20\x73\x74\x79\ +\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x30\xc6\x30\xad\x30\xb9\ +\x30\xc8\x30\x68\x5b\xf8\x6c\xd5\x30\x92\x30\xa4\x30\xf3\x30\xdd\ +\x30\xfc\x30\xc8\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x49\x6d\ +\x70\x6f\x72\x74\x20\x74\x65\x78\x74\x73\x20\x61\x6e\x64\x20\x64\ +\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x18\x30\xa4\x30\xf3\x30\xdd\x30\xfc\x30\xc8\x00\x2f\x30\xa8\x30\ +\xaf\x30\xb9\x30\xdd\x30\xfc\x30\xc8\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x49\x6d\x70\x6f\x72\x74\x2f\x45\x78\x70\x6f\x72\x74\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x30\x00\x49\x00\x6e\x00\x74\x00\x65\ +\x00\x72\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x70\x00\x72\x00\x65\ +\x00\x63\x00\x69\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6c\ +\x00\x65\x00\x76\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x18\x49\x6e\x74\x65\x72\x6e\x61\x6c\x20\x70\x72\x65\x63\x69\ +\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x10\x30\xb8\x30\xaa\x30\xe1\x30\xc8\x30\xea\x30\x92\x7d\x50\ +\x54\x08\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4a\x6f\x69\x6e\ +\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x26\x00\x4c\x00\x65\x00\x66\x00\x74\x00\x20\x00\x28\x00\x49\x00\ +\x53\x00\x4f\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\ +\x61\x00\x72\x00\x64\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x13\x4c\x65\x66\x74\x20\x28\x49\x53\x4f\x20\x73\x74\x61\x6e\x64\ +\x61\x72\x64\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x4d\x00\x61\ +\x00\x69\x00\x6e\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x73\ +\x00\x20\x00\x65\x00\x76\x00\x65\x00\x72\x00\x79\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x10\x4d\x61\x69\x6e\x20\x6c\x69\x6e\x65\x73\ +\x20\x65\x76\x65\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa2\x00\x4d\ +\x00\x61\x00\x69\x00\x6e\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x73\ +\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\ +\x00\x20\x00\x64\x00\x72\x00\x61\x00\x77\x00\x6e\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x63\x00\x6b\x00\x65\x00\x72\x00\x2e\x00\x20\ +\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x79\x00\x20\ +\x00\x68\x00\x65\x00\x72\x00\x65\x00\x20\x00\x68\x00\x6f\x00\x77\ +\x00\x20\x00\x6d\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x71\ +\x00\x75\x00\x61\x00\x72\x00\x65\x00\x73\x00\x20\x00\x62\x00\x65\ +\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x61\ +\x00\x69\x00\x6e\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x2e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x4d\x61\x69\x6e\x6c\x69\ +\x6e\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x72\x61\x77\ +\x6e\x20\x74\x68\x69\x63\x6b\x65\x72\x2e\x20\x53\x70\x65\x63\x69\ +\x66\x79\x20\x68\x65\x72\x65\x20\x68\x6f\x77\x20\x6d\x61\x6e\x79\ +\x20\x73\x71\x75\x61\x72\x65\x73\x20\x62\x65\x74\x77\x65\x65\x6e\ +\x20\x6d\x61\x69\x6e\x6c\x69\x6e\x65\x73\x2e\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x18\x67\x00\x59\x27\x30\xb9\x30\xd7\x30\xe9\x30\xa4\x30\ +\xf3\x30\xbb\x30\xb0\x30\xe1\x30\xf3\x30\xc8\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x12\x4d\x61\x78\x20\x53\x70\x6c\x69\x6e\x65\x20\ +\x53\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\ +\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\ +\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x65\x00\x64\x00\x67\x00\x65\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x4d\x61\x78\x69\x6d\x75\x6d\x20\x6e\ +\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x65\x64\x67\x65\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x6a\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\ +\x00\x75\x00\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\ +\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x65\x00\x64\x00\x67\ +\x00\x65\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x65\ +\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\ +\x00\x72\x00\x65\x00\x64\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ +\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\x67\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x4d\x61\x78\x69\x6d\x75\ +\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x65\x64\x67\x65\ +\x73\x20\x74\x6f\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\ +\x65\x64\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x04\x30\x6a\x30\x57\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x12\x4f\x7f\x75\x28\x30\x57\x30\x6a\x30\x44\xff\x08\x67\x00\x90\ +\x1f\xff\x09\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x4e\x6f\x6e\ +\x65\x20\x28\x66\x61\x73\x74\x65\x73\x74\x29\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\xfe\x00\x4e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\ +\x6c\x00\x79\x00\x2c\x00\x20\x00\x61\x00\x66\x00\x74\x00\x65\x00\ +\x72\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x79\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x73\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\ +\x6f\x00\x70\x00\x69\x00\x65\x00\x73\x00\x20\x00\x67\x00\x65\x00\ +\x74\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x65\x00\x64\x00\x2e\x00\x20\x00\x49\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x70\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\ +\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ +\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ +\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x61\x00\x64\x00\ +\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7f\x4e\x6f\x72\x6d\x61\ +\x6c\x6c\x79\x2c\x20\x61\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\ +\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x73\x2c\x20\x74\x68\x65\x20\ +\x63\x6f\x70\x69\x65\x73\x20\x67\x65\x74\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x2e\x20\x49\x66\x20\x74\x68\x69\x73\x20\x6f\x70\x74\ +\x69\x6f\x6e\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\ +\x74\x68\x65\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x69\x6e\x73\x74\x65\x61\x64\x2e\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x24\x00\x4f\x00\x43\x00\x41\x00\x20\x00\x66\x00\x6f\x00\x72\ +\x00\x6d\x00\x61\x00\x74\x00\x20\x00\x6f\x00\x70\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\ +\x4f\x43\x41\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\x6f\ +\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x6a\x19\x6e\x96\x30\x6e\ +\x82\x72\x30\x68\x7d\xda\x5e\x45\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1c\x4f\x72\x69\x67\x69\x6e\x61\x6c\x20\x63\x6f\x6c\x6f\x72\ +\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x1a\x00\x52\x00\x61\x00\x77\x00\x20\x00\x28\ +\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x43\x00\x41\x00\x4d\x00\x29\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x52\x61\x77\x20\x28\x66\ +\x6f\x72\x20\x43\x41\x4d\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\x00\ +\x52\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x70\x00\ +\x6f\x00\x6c\x00\x79\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x73\x00\ +\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x77\x00\x69\x00\ +\x64\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x52\ +\x65\x6e\x64\x65\x72\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x73\x20\ +\x77\x69\x74\x68\x20\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0a\x00\x52\x00\x69\x00\x67\x00\x68\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x05\x52\x69\x67\x68\x74\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x16\x00\x53\x00\x56\x00\x47\x5f\x62\x5f\x0f\x30\x6e\x30\ +\xaa\x30\xd7\x30\xb7\x30\xe7\x30\xf3\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x12\x53\x56\x47\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\ +\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x60\x00\x53\x00\ +\x61\x00\x76\x00\x65\x00\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\ +\x65\x00\x6e\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\ +\x72\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x65\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x20\x00\ +\x61\x00\x63\x00\x72\x00\x6f\x00\x73\x00\x73\x00\x20\x00\x73\x00\ +\x65\x00\x73\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x30\x53\x61\x76\x65\x20\x63\x75\x72\x72\ +\x65\x6e\x74\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\ +\x6e\x65\x77\x69\x64\x74\x68\x20\x61\x63\x72\x6f\x73\x73\x20\x73\ +\x65\x73\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\ +\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x62\x00\ +\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x66\x00\x74\x00\x65\x00\ +\x72\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x79\x00\x69\x00\x6e\x00\ +\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x53\x65\x6c\x65\x63\ +\x74\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\ +\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\x6e\x67\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x2e\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x53\x00\x6e\x00\x61\ +\x00\x70\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\ +\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x53\x68\x6f\x77\ +\x20\x44\x72\x61\x66\x74\x20\x53\x6e\x61\x70\x20\x74\x6f\x6f\x6c\ +\x62\x61\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\x00\x53\x00\x68\x00\ +\x6f\x00\x77\x00\x20\x00\x57\x00\x6f\x00\x72\x00\x6b\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\ +\x20\x00\x74\x00\x72\x00\x61\x00\x63\x00\x6b\x00\x65\x00\x72\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\x68\x6f\x77\x20\x57\x6f\ +\x72\x6b\x69\x6e\x67\x20\x50\x6c\x61\x6e\x65\x20\x74\x72\x61\x63\ +\x6b\x65\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x53\x00\x6c\x00\ +\x61\x00\x73\x00\x68\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x07\x53\x6c\x61\x73\x68\x20\x35\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0e\x00\x53\x00\x6c\x00\x61\x00\x73\x00\x68\x00\x20\x00\x37\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\x20\ +\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x53\x00\x6c\x00\x61\x00\ +\x73\x00\x68\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x07\x53\x6c\x61\x73\x68\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\ +\x30\xb9\x30\xca\x30\xc3\x30\xd7\x30\x6e\x82\x72\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0a\x53\x6e\x61\x70\x20\x63\x6f\x6c\x6f\x72\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x18\x00\x53\x00\x6e\x00\x61\x00\x70\ +\x00\x20\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x6e\x61\x70\x20\x6d\ +\x61\x78\x69\x6d\x75\x6d\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x53\ +\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6d\x00\x6f\x00\x64\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x08\x53\x6e\x61\x70\x20\x6d\x6f\x64\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x14\x00\x53\x00\x6e\x00\x61\x00\x70\ +\x00\x20\x00\x72\x00\x61\x00\x6e\x00\x67\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0a\x53\x6e\x61\x70\x20\x72\x61\x6e\x67\x65\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x66\x00\x53\x00\x74\x00\x79\x00\x6c\ +\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x53\x00\x56\x00\x47\ +\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x74\x00\x6f\ +\x00\x20\x00\x77\x00\x72\x00\x69\x00\x74\x00\x65\x00\x20\x00\x77\ +\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6f\ +\x00\x72\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\ +\x00\x53\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x2e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x33\x53\x74\x79\x6c\x65\x20\x6f\x66\ +\x20\x53\x56\x47\x20\x66\x69\x6c\x65\x20\x74\x6f\x20\x77\x72\x69\ +\x74\x65\x20\x77\x68\x65\x6e\x20\x65\x78\x70\x6f\x72\x74\x69\x6e\ +\x67\x20\x61\x20\x53\x6b\x65\x74\x63\x68\x2e\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x10\x00\x54\x00\x61\x00\x73\x00\x6b\x00\x76\x00\x69\x00\ +\x65\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x54\x61\x73\ +\x6b\x76\x69\x65\x77\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x00\x54\x00\ +\x68\x00\x65\x00\x20\x00\x43\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\ +\x72\x00\x61\x00\x69\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x72\x00\ +\x20\x00\x6b\x00\x65\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1d\x54\x68\x65\x20\x43\x6f\x6e\x73\x74\x72\x61\x69\x6e\x69\x6e\ +\x67\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x28\x00\x54\x00\x68\x00\x65\x00\x20\x00\x61\ +\x00\x6c\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\ +\x00\x69\x00\x65\x00\x72\x00\x20\x00\x6b\x00\x65\x00\x79\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\x20\x61\x6c\x74\x20\ +\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x42\x00\x64\x00\x78\x00\x66\x30\xab\x30\xe9\x30\xfc\ +\x30\x4b\x30\x89\x30\xe9\x30\xa4\x30\xf3\x5e\x45\x30\x6b\x59\x09\ +\x63\xdb\x30\x59\x30\x8b\x30\x5f\x30\x81\x30\x6e\x30\xab\x30\xe9\ +\x30\xfc\x30\xfb\x30\xde\x30\xc3\x30\xd4\x30\xf3\x30\xb0\x30\xd5\ +\x30\xa1\x30\xa4\x30\xeb\x08\x00\x00\x00\x00\x06\x00\x00\x00\x41\ +\x54\x68\x65\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\ +\x67\x20\x66\x69\x6c\x65\x20\x66\x6f\x72\x20\x74\x72\x61\x6e\x73\ +\x6c\x61\x74\x69\x6e\x67\x20\x64\x78\x66\x20\x63\x6f\x6c\x6f\x72\ +\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x44\x30\xc7\x30\xd5\x30\xa9\x30\ +\xeb\x30\xc8\x30\x6e\x30\xc6\x30\xf3\x30\xd7\x30\xec\x30\xfc\x30\ +\xc8\x30\x6f\x30\x01\x65\xb0\x89\x8f\x30\x6b\x56\xf3\x97\x62\x30\ +\xb7\x30\xfc\x30\xc8\x30\x92\x4f\x5c\x62\x10\x30\x59\x30\x8b\x30\ +\x68\x30\x4d\x30\x6b\x4f\x7f\x75\x28\x30\x59\x30\x8b\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x3d\x54\x68\x65\x20\x64\x65\x66\x61\x75\ +\x6c\x74\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x20\x74\x6f\x20\x75\ +\x73\x65\x20\x77\x68\x65\x6e\x20\x63\x72\x65\x61\x74\x69\x6e\x67\ +\x20\x61\x20\x6e\x65\x77\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x73\ +\x68\x65\x65\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x9a\x00\x54\x00\x68\ +\x00\x65\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x64\x00\x65\x00\x63\x00\x69\ +\x00\x6d\x00\x61\x00\x6c\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x20\ +\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\x6c\ +\x00\x20\x00\x63\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x69\x00\x6e\ +\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x70\x00\x65\ +\x00\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\ +\x00\x28\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x78\x00\x2e\ +\x00\x20\x00\x33\x00\x20\x00\x3d\x00\x20\x00\x30\x00\x2e\x00\x30\ +\x00\x30\x00\x31\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\ +\x54\x68\x65\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x64\x65\ +\x63\x69\x6d\x61\x6c\x73\x20\x69\x6e\x20\x69\x6e\x74\x65\x72\x6e\ +\x61\x6c\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x73\x20\x6f\ +\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x20\x28\x66\x6f\x72\x20\x65\ +\x78\x2e\x20\x33\x20\x3d\x20\x30\x2e\x30\x30\x31\x29\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x9c\x00\x54\x00\x68\x00\x65\x00\x20\x00\x72\x00\ +\x61\x00\x64\x00\x69\x00\x75\x00\x73\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x70\x00\ +\x65\x00\x63\x00\x69\x00\x61\x00\x6c\x00\x20\x00\x70\x00\x6f\x00\ +\x69\x00\x6e\x00\x74\x00\x73\x00\x2e\x00\x20\x00\x53\x00\x65\x00\ +\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x30\x00\x20\x00\x66\x00\ +\x6f\x00\x72\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x64\x00\x69\x00\ +\x73\x00\x74\x00\x61\x00\x6e\x00\x63\x00\x65\x00\x20\x00\x28\x00\ +\x69\x00\x6e\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\x65\x00\ +\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4e\x54\x68\x65\x20\x72\ +\x61\x64\x69\x75\x73\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x70\x69\ +\x6e\x67\x20\x74\x6f\x20\x73\x70\x65\x63\x69\x61\x6c\x20\x70\x6f\ +\x69\x6e\x74\x73\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\x30\x20\x66\ +\x6f\x72\x20\x6e\x6f\x20\x64\x69\x73\x74\x61\x6e\x63\x65\x20\x28\ +\x69\x6e\x66\x69\x6e\x69\x74\x65\x29\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x2a\x00\x54\x00\x68\x00\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\ +\x70\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\ +\x65\x00\x72\x00\x20\x00\x6b\x00\x65\x00\x79\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x15\x54\x68\x65\x20\x73\x6e\x61\x70\x20\x6d\x6f\ +\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x44\x00\x54\x00\x68\x00\x65\x00\x20\x00\x73\x00\x70\x00\x61\ +\x00\x63\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x62\x00\x65\x00\x74\ +\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x61\x00\x63\ +\x00\x68\x00\x20\x00\x67\x00\x72\x00\x69\x00\x64\x00\x20\x00\x6c\ +\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\ +\x54\x68\x65\x20\x73\x70\x61\x63\x69\x6e\x67\x20\x62\x65\x74\x77\ +\x65\x65\x6e\x20\x65\x61\x63\x68\x20\x67\x72\x69\x64\x20\x6c\x69\ +\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x01\x9e\x00\x54\x00\x68\x00\x69\ +\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x55\x00\x49\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\ +\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x77\x00\x68\x00\x69\x00\x63\ +\x00\x68\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\x00\x72\ +\x00\x61\x00\x66\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x75\ +\x00\x6c\x00\x65\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\ +\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x3a\x00\x20\x00\x54\x00\x6f\ +\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x00\x20\x00\x6d\x00\x6f\ +\x00\x64\x00\x65\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\ +\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x20\x00\x61\x00\x6c\ +\x00\x6c\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\ +\x00\x73\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\ +\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\ +\x00\x70\x00\x61\x00\x72\x00\x61\x00\x74\x00\x65\x00\x20\x00\x74\ +\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x00\x2c\x00\x20\ +\x00\x77\x00\x68\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x74\x00\x61\ +\x00\x73\x00\x6b\x00\x62\x00\x61\x00\x72\x00\x20\x00\x6d\x00\x6f\ +\x00\x64\x00\x65\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\ +\x00\x75\x00\x73\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x20\ +\x00\x54\x00\x61\x00\x73\x00\x6b\x00\x76\x00\x69\x00\x65\x00\x77\ +\x00\x20\x00\x73\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x20\ +\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\ +\x00\x69\x00\x74\x00\x73\x00\x20\x00\x75\x00\x73\x00\x65\x00\x72\ +\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x61\x00\x63\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\xcf\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x55\x49\ +\x20\x6d\x6f\x64\x65\x20\x69\x6e\x20\x77\x68\x69\x63\x68\x20\x74\ +\x68\x65\x20\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\x75\x6c\x65\x20\ +\x77\x69\x6c\x6c\x20\x77\x6f\x72\x6b\x3a\x20\x54\x6f\x6f\x6c\x62\ +\x61\x72\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x70\x6c\x61\ +\x63\x65\x20\x61\x6c\x6c\x20\x44\x72\x61\x66\x74\x20\x73\x65\x74\ +\x74\x69\x6e\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x65\x70\x61\x72\ +\x61\x74\x65\x20\x74\x6f\x6f\x6c\x62\x61\x72\x2c\x20\x77\x68\x69\ +\x6c\x65\x20\x74\x61\x73\x6b\x62\x61\x72\x20\x6d\x6f\x64\x65\x20\ +\x77\x69\x6c\x6c\x20\x75\x73\x65\x20\x74\x68\x65\x20\x46\x72\x65\ +\x65\x43\x41\x44\x20\x54\x61\x73\x6b\x76\x69\x65\x77\x20\x73\x79\ +\x73\x74\x65\x6d\x20\x66\x6f\x72\x20\x61\x6c\x6c\x20\x69\x74\x73\ +\x20\x75\x73\x65\x72\x20\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x6f\ +\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x9a\x00\x54\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x64\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\ +\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x66\x00\ +\x6f\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x73\x00\x20\x00\x62\x00\x65\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x64\x00\x72\x00\x61\x00\x77\x00\x6e\x00\x20\x00\x77\x00\ +\x68\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x20\x00\ +\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\ +\x65\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x54\x68\x69\ +\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\ +\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x62\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x20\x77\ +\x68\x69\x6c\x65\x20\x69\x6e\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\ +\x74\x69\x6f\x6e\x20\x6d\x6f\x64\x65\x2e\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x01\x60\x30\x53\x30\x8c\x30\x6f\x30\x01\x30\x59\x30\x79\x30\x66\ +\x30\x6e\x30\xc9\x30\xe9\x30\xd5\x30\xc8\x30\xfb\x30\xc6\x30\xad\ +\x30\xb9\x30\xc8\x30\x68\x5b\xf8\x6c\xd5\x30\x6e\x30\xc7\x30\xd5\ +\x30\xa9\x30\xeb\x30\xc8\xff\x08\x77\x01\x75\x65\x66\x42\x30\x6e\ +\x8a\x2d\x5b\x9a\xff\x09\x30\xd5\x30\xa9\x30\xf3\x30\xc8\x54\x0d\ +\x30\x67\x30\x59\x30\x02\x30\x0c\x00\x41\x00\x72\x00\x69\x00\x61\ +\x00\x6c\x30\x0d\x30\x6e\x30\x88\x30\x46\x30\x6b\x30\xd5\x30\xa9\ +\x30\xf3\x30\xc8\x54\x0d\x30\x01\x30\x0c\x00\x73\x00\x61\x00\x6e\ +\x00\x73\x30\x0d\x00\x2c\x30\x0c\x00\x73\x00\x65\x00\x72\x00\x69\ +\x00\x66\x30\x0d\x30\x01\x00\x6f\x30\x0c\x00\x6d\x00\x6f\x00\x6e\ +\x00\x6f\x30\x0d\x30\x6e\x30\x88\x30\x46\x30\x6a\x30\xc7\x30\xd5\ +\x30\xa9\x30\xeb\x30\xc8\x30\x6e\x30\xb9\x30\xbf\x30\xa4\x30\xeb\ +\x54\x0d\x30\x01\x30\x0c\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\ +\x00\x2c\x00\x48\x00\x65\x00\x6c\x00\x76\x00\x65\x00\x74\x00\x69\ +\x00\x63\x00\x61\x00\x2c\x00\x73\x00\x61\x00\x6e\x00\x73\x30\x0d\ +\x30\x6e\x30\x88\x30\x46\x30\x6a\x7c\xfb\x7d\x71\x54\x0d\x30\x01\ +\x00\x20\x30\x0c\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x3a\ +\x00\x42\x00\x6f\x00\x6c\x00\x64\x30\x0d\x30\x6e\x30\x88\x30\x46\ +\x30\x6a\x30\xd5\x30\xa9\x30\xf3\x30\xc8\x54\x0d\x30\x68\x30\xb9\ +\x30\xbf\x30\xa4\x30\xeb\x54\x0d\x30\x92\x7d\x44\x30\x7f\x54\x08\ +\x30\x8f\x30\x5b\x30\x5f\x5f\x62\x30\x67\x63\x07\x5b\x9a\x30\x59\ +\x30\x8b\x30\x53\x30\x68\x30\x4c\x30\x67\x30\x4d\x30\x7e\x30\x59\ +\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\xf2\x54\x68\x69\x73\ +\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\ +\x66\x6f\x6e\x74\x20\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\x61\x6c\ +\x6c\x20\x44\x72\x61\x66\x74\x20\x74\x65\x78\x74\x73\x20\x61\x6e\ +\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x2e\x0a\x49\x74\ +\x20\x63\x61\x6e\x20\x62\x65\x20\x61\x20\x66\x6f\x6e\x74\x20\x6e\ +\x61\x6d\x65\x20\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\x72\x69\ +\x61\x6c\x22\x2c\x20\x61\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x73\ +\x74\x79\x6c\x65\x20\x73\x75\x63\x68\x20\x61\x73\x20\x22\x73\x61\ +\x6e\x73\x22\x2c\x20\x22\x73\x65\x72\x69\x66\x22\x0a\x6f\x72\x20\ +\x22\x6d\x6f\x6e\x6f\x22\x2c\x20\x6f\x72\x20\x61\x20\x66\x61\x6d\ +\x69\x6c\x79\x20\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\x72\x69\ +\x61\x6c\x2c\x48\x65\x6c\x76\x65\x74\x69\x63\x61\x2c\x73\x61\x6e\ +\x73\x22\x20\x6f\x72\x20\x61\x20\x6e\x61\x6d\x65\x20\x77\x69\x74\ +\x68\x20\x61\x20\x73\x74\x79\x6c\x65\x0a\x73\x75\x63\x68\x20\x61\ +\x73\x20\x22\x41\x72\x69\x61\x6c\x3a\x42\x6f\x6c\x64\x22\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x70\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\ +\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x67\ +\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x20\x00\x6e\x00\x61\x00\x6d\ +\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x63\x00\x6f\ +\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x20\x00\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\ +\x00\x74\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\ +\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\ +\x75\x6c\x74\x20\x67\x72\x6f\x75\x70\x20\x6e\x61\x6d\x65\x20\x66\ +\x6f\x72\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\ +\x67\x65\x6f\x6d\x65\x74\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x50\ +\x00\x53\x00\x56\x00\x47\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\xaf\ +\x30\xc8\x30\x6e\x82\x72\x30\x92\x00\x46\x00\x72\x00\x65\x00\x65\ +\x00\x43\x00\x41\x00\x44\x30\x6b\x30\xa4\x30\xf3\x30\xdd\x30\xfc\ +\x30\xc8\x30\x59\x30\x8b\x30\x5f\x30\x81\x30\x6e\x90\x78\x62\x9e\ +\x30\x55\x30\x8c\x30\x5f\x65\xb9\x6c\xd5\x30\x67\x30\x59\x30\x02\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x47\x54\x68\x69\x73\x20\x69\ +\x73\x20\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x63\x68\x6f\ +\x6f\x73\x65\x64\x20\x66\x6f\x72\x20\x69\x6d\x70\x6f\x72\x74\x69\ +\x6e\x67\x20\x53\x56\x47\x20\x6f\x62\x6a\x65\x63\x74\x20\x63\x6f\ +\x6c\x6f\x72\x20\x69\x6e\x74\x6f\x20\x46\x72\x65\x65\x43\x41\x44\ +\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\xe6\x30\x53\x30\x8c\x30\x6f\x30\ +\x01\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x30\ +\x6b\x00\x44\x00\x58\x00\x46\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\ +\xaf\x30\xc8\x30\x6e\x82\x72\x30\x92\x30\xa4\x30\xf3\x30\xdd\x30\ +\xfc\x30\xc8\x30\x7e\x30\x5f\x30\x6f\x59\x09\x63\xdb\x30\x57\x30\ +\x59\x30\x8b\x30\x5f\x30\x81\x30\x6b\x90\x78\x62\x9e\x30\x57\x30\ +\x5f\x65\xb9\x6c\xd5\x30\x67\x30\x59\x30\x02\x30\x82\x30\x57\x30\ +\xab\x30\xe9\x30\xfc\x30\xde\x30\xc3\x30\xd4\x30\xf3\x30\xb0\x30\ +\x92\x90\x78\x62\x9e\x30\x59\x30\x8b\x30\x6a\x30\x89\x30\x01\x30\ +\x42\x30\x6a\x30\x5f\x30\x6f\x59\x09\x63\xdb\x30\x59\x30\x8b\x82\ +\x72\x30\x84\x7d\xda\x5e\x45\x30\x92\x54\x2b\x30\x80\x59\x09\x63\ +\xdb\x30\xc6\x30\xfc\x30\xd6\x30\xeb\x30\x92\x30\x82\x30\x64\x30\ +\xab\x30\xe9\x30\xfc\x30\xde\x30\xc3\x30\xd4\x30\xf3\x30\xb0\x30\ +\xd5\x30\xa1\x30\xa4\x30\xeb\x30\x92\x90\x78\x30\x70\x30\x6a\x30\ +\x51\x30\x8c\x30\x70\x30\x6a\x30\x89\x30\x6a\x30\x44\x30\x02\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\xe3\x54\x68\x69\x73\x20\x69\x73\ +\x20\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x63\x68\x6f\x6f\ +\x73\x65\x64\x20\x66\x6f\x72\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\ +\x67\x20\x6f\x72\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6e\x67\ +\x20\x44\x58\x46\x20\x6f\x62\x6a\x65\x63\x74\x20\x63\x6f\x6c\x6f\ +\x72\x20\x69\x6e\x74\x6f\x20\x46\x72\x65\x65\x43\x41\x44\x2e\x20\ +\x0a\x49\x66\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\ +\x67\x20\x69\x73\x20\x63\x68\x6f\x6f\x73\x65\x64\x2c\x20\x79\x6f\ +\x75\x20\x6d\x75\x73\x74\x20\x63\x68\x6f\x6f\x73\x65\x20\x61\x20\ +\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\ +\x6c\x65\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x61\x20\ +\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6f\x6e\x20\x74\x61\x62\x6c\ +\x65\x20\x74\x68\x61\x74\x20\x77\x69\x6c\x6c\x20\x63\x6f\x6e\x76\ +\x65\x72\x74\x20\x63\x6f\x6c\x6f\x72\x73\x20\x69\x6e\x74\x6f\x20\ +\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x73\x2e\x0a\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x46\x5b\xf8\x6c\xd5\x30\x4c\x7e\x26\x30\x6b\x30\x6a\ +\x30\x63\x30\x5f\x30\x68\x30\x4d\x30\x6e\x5b\xf8\x6c\xd5\x30\xc6\ +\x30\xad\x30\xb9\x30\xc8\x30\x6e\x54\x11\x30\x4d\x00\x2e\x30\xc7\ +\x30\xd5\x30\xa9\x30\xeb\x30\xc8\x30\x6f\x5d\xe6\xff\x08\x00\x49\ +\x00\x53\x00\x4f\x6a\x19\x6e\x96\xff\x09\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x7e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\ +\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\ +\x68\x65\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x20\x74\x65\x78\ +\x74\x73\x20\x77\x68\x65\x6e\x20\x74\x68\x6f\x73\x65\x20\x64\x69\ +\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x61\x72\x65\x20\x76\x65\x72\ +\x74\x69\x63\x61\x6c\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x69\ +\x73\x20\x6c\x65\x66\x74\x2c\x20\x77\x68\x69\x63\x68\x20\x69\x73\ +\x20\x74\x68\x65\x20\x49\x53\x4f\x20\x73\x74\x61\x6e\x64\x61\x72\ +\x64\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x62\x30\x53\x30\x8c\x30\x6f\ +\x8a\x31\x5b\xb9\x7b\xc4\x56\xf2\x30\x92\x4f\x7f\x75\x28\x30\x59\ +\x30\x8b\x95\xa2\x65\x70\x30\x67\x4f\x7f\x75\x28\x30\x55\x30\x8c\ +\x30\x8b\x50\x24\x30\x67\x30\x59\x30\x02\x00\x0a\x30\x53\x30\x8c\ +\x4e\xe5\x4e\x0b\x30\x6e\x50\x24\x30\x6e\x90\x55\x30\x44\x30\x6f\ +\x30\x01\x54\x0c\x30\x58\x30\x82\x30\x6e\x30\x68\x30\x57\x30\x66\ +\x62\x71\x30\x8f\x30\x8c\x30\x7e\x30\x59\x30\x02\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x7b\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\ +\x65\x20\x76\x61\x6c\x75\x65\x20\x75\x73\x65\x64\x20\x62\x79\x20\ +\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\x74\x68\x61\x74\x20\x75\ +\x73\x65\x20\x61\x20\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x2e\x0a\ +\x56\x61\x6c\x75\x65\x73\x20\x77\x69\x74\x68\x20\x64\x69\x66\x66\ +\x65\x72\x65\x6e\x63\x65\x73\x20\x62\x65\x6c\x6f\x77\x20\x74\x68\ +\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x77\x69\x6c\x6c\x20\x62\x65\ +\x20\x74\x72\x65\x61\x74\x65\x64\x20\x61\x73\x20\x73\x61\x6d\x65\ +\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x04\x51\x6c\x5d\xee\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x54\x6f\x6c\x65\x72\x61\x6e\x63\x65\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0a\x30\xc4\x30\xfc\x30\xeb\x30\xd0\ +\x30\xfc\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x54\x6f\x6f\x6c\ +\x62\x61\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x54\x00\x72\x00\ +\x61\x00\x6e\x00\x73\x00\x6c\x00\x61\x00\x74\x00\x65\x00\x20\x00\ +\x77\x00\x68\x00\x69\x00\x74\x00\x65\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ +\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x6c\x00\x61\x00\x63\x00\ +\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x54\x72\x61\x6e\x73\ +\x6c\x61\x74\x65\x20\x77\x68\x69\x74\x65\x20\x6c\x69\x6e\x65\x20\ +\x63\x6f\x6c\x6f\x72\x20\x74\x6f\x20\x62\x6c\x61\x63\x6b\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x40\x00\x54\x00\x72\x00\x61\x00\x6e\x00\x73\ +\x00\x6c\x00\x61\x00\x74\x00\x65\x00\x64\x00\x20\x00\x28\x00\x66\ +\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x72\x00\x69\x00\x6e\x00\x74\ +\x00\x20\x00\x26\x00\x20\x00\x64\x00\x69\x00\x73\x00\x70\x00\x6c\ +\x00\x61\x00\x79\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\ +\x54\x72\x61\x6e\x73\x6c\x61\x74\x65\x64\x20\x28\x66\x6f\x72\x20\ +\x70\x72\x69\x6e\x74\x20\x26\x20\x64\x69\x73\x70\x6c\x61\x79\x29\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x28\x30\xc7\x30\xd5\x30\xa9\x30\xeb\ +\x30\xc8\x00\x5b\x65\xe2\x5b\x9a\x50\x24\x00\x5d\x30\x6e\x82\x72\ +\x30\x68\x7d\xda\x5e\x45\x30\x92\x4f\x7f\x75\x28\x30\x59\x30\x8b\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x55\x73\x65\x20\x64\x65\ +\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\ +\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x10\x00\x55\x00\x73\x00\x65\x00\x20\x00\x67\x00\x72\x00\x69\x00\ +\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x55\x73\x65\x20\x67\ +\x72\x69\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\x00\x55\x00\x73\x00\ +\x65\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\ +\x72\x00\x64\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\ +\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x20\x55\x73\x65\x20\x73\x74\x61\x6e\x64\x61\x72\ +\x64\x20\x66\x6f\x6e\x74\x20\x73\x69\x7a\x65\x20\x66\x6f\x72\x20\ +\x74\x65\x78\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x7e\x26\x30\ +\x6e\x5b\xf8\x6c\xd5\x30\xc6\x30\xad\x30\xb9\x30\xc8\x30\x6e\x54\ +\x11\x30\x4d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x56\x65\x72\ +\x74\x69\x63\x61\x6c\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\ +\x20\x74\x65\x78\x74\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\ +\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\xe6\x00\x57\x00\x68\x00\x65\x00\ +\x6e\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\ +\x76\x00\x69\x00\x65\x00\x77\x00\x73\x00\x2c\x00\x20\x00\x6d\x00\ +\x61\x00\x6b\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\ +\x77\x00\x68\x00\x69\x00\x74\x00\x65\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x65\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x20\x00\x61\x00\ +\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\x20\x00\x69\x00\x6e\x00\ +\x20\x00\x62\x00\x6c\x00\x61\x00\x63\x00\x6b\x00\x2c\x00\x20\x00\ +\x66\x00\x6f\x00\x72\x00\x20\x00\x62\x00\x65\x00\x74\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x72\x00\x65\x00\x61\x00\x64\x00\x61\x00\ +\x62\x00\x69\x00\x6c\x00\x69\x00\x74\x00\x79\x00\x20\x00\x61\x00\ +\x67\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x20\x00\x77\x00\ +\x68\x00\x69\x00\x74\x00\x65\x00\x20\x00\x62\x00\x61\x00\x63\x00\ +\x6b\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x73\x57\x68\x65\x6e\x20\x65\x78\ +\x70\x6f\x72\x74\x69\x6e\x67\x20\x53\x56\x47\x20\x76\x69\x65\x77\ +\x73\x2c\x20\x6d\x61\x6b\x65\x20\x61\x6c\x6c\x20\x77\x68\x69\x74\ +\x65\x20\x6c\x69\x6e\x65\x77\x6f\x72\x6b\x20\x61\x70\x70\x65\x61\ +\x72\x20\x69\x6e\x20\x62\x6c\x61\x63\x6b\x2c\x20\x66\x6f\x72\x20\ +\x62\x65\x74\x74\x65\x72\x20\x72\x65\x61\x64\x61\x62\x69\x6c\x69\ +\x74\x79\x20\x61\x67\x61\x69\x6e\x73\x74\x20\x77\x68\x69\x74\x65\ +\x20\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x73\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\xb6\x30\xb9\x30\xd7\x30\xe9\x30\xa4\x30\xf3\x30\x92\ +\x00\x44\x00\x58\x00\x46\x30\x78\x30\xa8\x30\xaf\x30\xb9\x30\xdd\ +\x30\xfc\x30\xc8\x30\x59\x30\x8b\x58\x34\x54\x08\x30\x01\x30\x5d\ +\x30\x8c\x30\x89\x30\x6f\x30\xdd\x30\xea\x30\xe9\x30\xa4\x30\xf3\ +\x30\x6b\x59\x09\x63\xdb\x30\x55\x30\x8c\x30\x7e\x30\x59\x30\x02\ +\x30\x53\x30\x6e\x50\x24\x30\x6f\x30\xdd\x30\xea\x30\xe9\x30\xa4\ +\x30\xf3\x30\x6e\x54\x04\x30\xbb\x30\xb0\x30\xe1\x30\xf3\x30\xc8\ +\x30\x6e\x67\x00\x59\x27\x95\x77\x30\x67\x30\x59\x30\x02\x00\x30\ +\x30\x6e\x58\x34\x54\x08\x30\x01\x30\xb9\x30\xd7\x30\xe9\x30\xa4\ +\x30\xf3\x30\x6e\x51\x68\x4f\x53\x30\x4c\x76\xf4\x7d\xda\x30\xbb\ +\x30\xb0\x30\xe1\x30\xf3\x30\xc8\x30\x68\x30\x57\x30\x66\x62\x71\ +\x30\x8f\x30\x8c\x30\x7e\x30\x59\x30\x02\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\xc2\x57\x68\x65\x6e\x20\x65\x78\x70\x6f\x72\x74\x69\ +\x6e\x67\x20\x73\x70\x6c\x69\x6e\x65\x73\x20\x74\x6f\x20\x44\x58\ +\x46\x2c\x20\x74\x68\x65\x79\x20\x61\x72\x65\x20\x74\x72\x61\x6e\ +\x73\x66\x6f\x72\x6d\x65\x64\x20\x69\x6e\x20\x70\x6f\x6c\x79\x6c\ +\x69\x6e\x65\x73\x2e\x20\x54\x68\x69\x73\x20\x76\x61\x6c\x75\x65\ +\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\ +\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x65\x61\x63\x68\x20\x6f\ +\x66\x20\x74\x68\x65\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x20\x73\ +\x65\x67\x6d\x65\x6e\x74\x73\x2e\x20\x49\x66\x20\x30\x2c\x20\x74\ +\x68\x65\x6e\x20\x74\x68\x65\x20\x77\x68\x6f\x6c\x65\x20\x73\x70\ +\x6c\x69\x6e\x65\x20\x69\x73\x20\x74\x72\x65\x61\x74\x65\x64\x20\ +\x61\x73\x20\x61\x20\x73\x74\x72\x61\x69\x67\x68\x74\x20\x73\x65\ +\x67\x6d\x65\x6e\x74\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x58\ +\x00\x59\x00\x20\x00\x28\x5e\x73\x97\x62\x56\xf3\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x08\x58\x59\x20\x28\x54\x6f\x70\x29\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x10\x00\x58\x00\x5a\x00\x20\x00\x28\ +\x6b\x63\x97\x62\x56\xf3\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0a\x58\x5a\x20\x28\x46\x72\x6f\x6e\x74\x29\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x10\x00\x59\x00\x5a\x00\x20\x00\x28\x50\x74\x97\x62\ +\x56\xf3\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x59\x5a\ +\x20\x28\x53\x69\x64\x65\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\x00\ +\x61\x00\x6c\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x61\ +\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x9a\x00\x63\x00\x68\x00\x65\ +\x00\x63\x00\x6b\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x69\x00\x66\x00\x20\x00\x79\x00\x6f\x00\x75\x00\x20\x00\x77\ +\x00\x61\x00\x6e\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x75\ +\x00\x73\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x2f\x00\x6c\x00\x69\x00\x6e\ +\x00\x65\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x20\x00\x66\ +\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x00\x20\ +\x00\x61\x00\x73\x00\x20\x00\x64\x00\x65\x00\x66\x00\x61\x00\x75\ +\x00\x6c\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x63\x68\ +\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x79\x6f\x75\x20\ +\x77\x61\x6e\x74\x20\x74\x6f\x20\x75\x73\x65\x20\x74\x68\x65\x20\ +\x63\x6f\x6c\x6f\x72\x2f\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\ +\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x74\x6f\x6f\x6c\x62\x61\x72\ +\x20\x61\x73\x20\x64\x65\x66\x61\x75\x6c\x74\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x08\x00\x43\x00\x74\x00\x72\x00\x6c\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x04\x63\x74\x72\x6c\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\xce\x00\x69\x00\x66\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\ +\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x61\x00\x20\x00\x77\x00\ +\x69\x00\x64\x00\x67\x00\x65\x00\x74\x00\x20\x00\x69\x00\x6e\x00\ +\x64\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x75\x00\x72\x00\ +\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x77\x00\x6f\x00\x72\x00\ +\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x70\x00\x6c\x00\x61\x00\ +\x6e\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x69\x00\x65\x00\x6e\x00\ +\x74\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\ +\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\x73\x00\x20\x00\x64\x00\ +\x75\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x64\x00\x72\x00\ +\x61\x00\x77\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x70\x00\ +\x65\x00\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x67\x69\x66\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x61\x20\x77\x69\x64\x67\x65\x74\x20\x69\x6e\ +\x64\x69\x63\x61\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x63\x75\x72\ +\x72\x65\x6e\x74\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\x6c\x61\ +\x6e\x65\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x61\ +\x70\x70\x65\x61\x72\x73\x20\x64\x75\x72\x69\x6e\x67\x20\x64\x72\ +\x61\x77\x69\x6e\x67\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x01\x26\x00\x69\x00\x66\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\ +\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\ +\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x73\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x6c\x00\x61\ +\x00\x79\x00\x65\x00\x72\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\ +\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x6a\x00\x6f\x00\x69\ +\x00\x6e\x00\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\ +\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x42\ +\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x73\x00\x2c\x00\x20\x00\x74\ +\x00\x75\x00\x72\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x64\x00\x69\x00\x73\x00\x70\x00\x6c\ +\x00\x61\x00\x79\x00\x20\x00\x66\x00\x61\x00\x73\x00\x74\x00\x65\ +\x00\x72\x00\x2c\x00\x20\x00\x62\x00\x75\x00\x74\x00\x20\x00\x6d\ +\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\ +\x00\x65\x00\x6d\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x73\x00\x20\ +\x00\x65\x00\x61\x00\x73\x00\x69\x00\x6c\x00\x79\x00\x20\x00\x65\ +\x00\x64\x00\x69\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x93\x69\x66\x20\x74\x68\x69\x73\x20\ +\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x61\x6d\ +\x65\x20\x6c\x61\x79\x65\x72\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\ +\x20\x6a\x6f\x69\x6e\x65\x64\x20\x69\x6e\x74\x6f\x20\x44\x72\x61\ +\x66\x74\x20\x42\x6c\x6f\x63\x6b\x73\x2c\x20\x74\x75\x72\x6e\x69\ +\x6e\x67\x20\x74\x68\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x66\ +\x61\x73\x74\x65\x72\x2c\x20\x62\x75\x74\x20\x6d\x61\x6b\x69\x6e\ +\x67\x20\x74\x68\x65\x6d\x20\x6c\x65\x73\x73\x20\x65\x61\x73\x69\ +\x6c\x79\x20\x65\x64\x69\x74\x61\x62\x6c\x65\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x72\x30\x53\x30\x8c\x30\x4c\x30\xc1\x30\xa7\x30\xc3\x30\ +\xaf\x30\x55\x30\x8c\x30\x66\x30\x44\x30\x8b\x30\x68\x30\x01\x30\ +\x7a\x30\xfc\x30\xd0\x30\xfc\x7a\x7a\x95\x93\x30\xaa\x30\xd6\x30\ +\xb8\x30\xa7\x30\xaf\x30\xc8\x00\x5b\x00\x70\x00\x61\x00\x70\x00\ +\x65\x00\x72\x00\x20\x00\x73\x00\x70\x00\x61\x00\x63\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x5d\x30\ +\x82\x30\xa4\x30\xf3\x30\xdd\x30\xfc\x30\xc8\x30\x55\x30\x8c\x30\ +\x7e\x30\x59\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3c\x69\ +\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\ +\x64\x2c\x20\x70\x61\x70\x65\x72\x20\x73\x70\x61\x63\x65\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x69\ +\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x4a\x30\xc1\x30\xa7\x30\xc3\x30\xaf\x30\x55\x30\x8c\x30\ +\x66\x30\x44\x30\x6a\x30\x44\x58\x34\x54\x08\x30\x01\x00\x5b\x00\ +\x74\x00\x65\x00\x78\x00\x74\x00\x73\x00\x2f\x00\x6d\x00\x74\x00\ +\x65\x00\x78\x00\x74\x00\x5d\x30\x6f\x30\xa4\x30\xf3\x30\xdd\x30\ +\xfc\x30\xc8\x30\x55\x30\x8c\x30\x7e\x30\x5b\x30\x93\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x34\x69\x66\x20\x74\x68\x69\x73\x20\x69\ +\x73\x20\x75\x6e\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x65\x78\ +\x74\x73\x2f\x6d\x74\x65\x78\x74\x73\x20\x77\x6f\x6e\x27\x74\x20\ +\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x04\x00\x70\x00\x78\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x02\x70\x78\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x73\x00\x68\x00\ +\x69\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x73\ +\x68\x69\x66\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x65\xb0\x89\x8f\ +\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\x6e\x65\xe2\ +\x5b\x9a\x82\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x74\x68\ +\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\ +\x66\x6f\x72\x20\x6e\x65\x77\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x1e\x30\xb9\x30\xca\x30\xc3\x30\xd7\x30\ +\xb7\x30\xf3\x30\xdc\x30\xeb\x30\x6e\x30\xc7\x30\xd5\x30\xa9\x30\ +\xeb\x30\xc8\x82\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x74\ +\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\ +\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x20\x73\x79\x6d\x62\x6f\x6c\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x22\x65\xb0\x30\x57\x30\x44\x30\ +\xaa\x30\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\x6e\x30\xc7\x30\ +\xd5\x30\xa9\x30\xeb\x30\xc8\x7d\xda\x5e\x45\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x25\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\ +\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\x66\x6f\x72\x20\x6e\ +\x65\x77\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x10\x95\x89\x30\x58\x30\x8b\x00\x20\x00\x28\x00\x26\x00\x43\ +\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x26\x43\x6c\x6f\ +\x73\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0e\x7d\x9a\x88\x4c\x00\x20\x00\x28\x00\x26\x00\x63\x00\x29\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\x43\x6f\x6e\x74\x69\ +\x6e\x75\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x10\x30\xb3\x30\xd4\x30\xfc\x00\x20\x00\x28\x00\x26\x00\ +\x43\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x43\x6f\ +\x70\x79\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0c\x00\x26\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x26\x44\x72\x61\x66\x74\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x26\ +\x00\x46\x00\x69\x00\x6e\x00\x69\x00\x73\x00\x68\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x07\x26\x46\x69\x6e\x69\x73\x68\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x4f\x00\ +\x43\x00\x43\x00\x20\x30\xb9\x30\xbf\x30\xa4\x30\xeb\x00\x20\x30\ +\xaa\x30\xd5\x30\xbb\x30\xc3\x30\xc8\x00\x20\x00\x28\x00\x26\x00\ +\x4f\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x26\x4f\x43\ +\x43\x2d\x73\x74\x79\x6c\x65\x20\x6f\x66\x66\x73\x65\x74\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x26\ +\x00\x52\x00\x65\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x76\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\x52\x65\x6c\x61\x74\ +\x69\x76\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x10\x51\x43\x30\x6b\x62\x3b\x30\x59\xff\x08\x00\x26\x00\ +\x55\xff\x09\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x55\x6e\ +\x64\x6f\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0a\x00\x26\x00\x57\x00\x69\x00\x70\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x05\x26\x57\x69\x70\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x30\xa2\x30\xaf\x30\ +\xc6\x30\xa3\x30\xd6\x30\xc9\x30\xe9\x30\xd5\x30\xc8\x30\xb3\x30\ +\xde\x30\xf3\x30\xc9\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x41\ +\x63\x74\x69\x76\x65\x20\x44\x72\x61\x66\x74\x20\x63\x6f\x6d\x6d\ +\x61\x6e\x64\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x36\x30\xa2\x30\xaf\x30\xc6\x30\xa3\x30\xd6\x30\xaa\x30\ +\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\x6f\xff\x12\x30\x64\x4e\ +\xe5\x4e\x0a\x30\x6e\x70\xb9\x30\x7e\x30\x5f\x30\x6f\x30\xce\x30\ +\xfc\x30\xc9\x30\x4c\x5f\xc5\x89\x81\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x33\x41\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x6d\x75\x73\x74\x20\x68\x61\x76\x65\x20\x6d\x6f\x72\x65\x20\ +\x74\x68\x61\x6e\x20\x74\x77\x6f\x20\x70\x6f\x69\x6e\x74\x73\x2f\ +\x6e\x6f\x64\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x40\x00\x41\x00\x64\x00\x64\x00\x20\x00\x70\ +\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x74\x00\x6f\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x75\x00\x72\ +\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\ +\x41\x64\x64\x20\x70\x6f\x69\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\ +\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\ +\x00\x41\x00\x70\x00\x65\x00\x72\x00\x74\x00\x75\x00\x72\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x41\x70\x65\x72\x74\x75\ +\x72\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x20\x00\x41\x00\x70\x00\x65\x00\x72\x00\x74\x00\x75\x00\x72\ +\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x3a\ +\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x41\x70\x65\x72\ +\x74\x75\x72\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x90\x78\x62\x9e\ +\x30\x57\x30\x5f\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\ +\x30\x6b\x90\x69\x75\x28\x30\x57\x30\x7e\x30\x59\x30\x02\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x19\x41\x70\x70\x6c\x79\x20\x74\x6f\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x04\x51\x86\x5f\x27\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\ +\x72\x63\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0e\x00\x42\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x42\x53\x70\x6c\x69\x6e\ +\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x38\x30\x53\x30\x6e\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\xaf\x30\ +\xc8\x30\x6e\x7a\x2e\x98\x5e\x30\x6f\x30\xaa\x30\xd5\x30\xbb\x30\ +\xc3\x30\xc8\x30\x59\x30\x8b\x30\x53\x30\x68\x30\x4c\x30\x67\x30\ +\x4d\x30\x7e\x30\x5b\x30\x93\x30\x02\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1f\x43\x61\x6e\x6e\x6f\x74\x20\x6f\x66\x66\x73\x65\x74\ +\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\ +\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x06\x4e\x2d\x5f\xc3\x00\x58\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x08\x43\x65\x6e\x74\x65\x72\x20\x58\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x30\xb9\x30\xbf\x30\xa4\ +\x30\xeb\x30\x6e\x59\x09\x66\xf4\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0c\x43\x68\x61\x6e\x67\x65\x20\x53\x74\x79\x6c\x65\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\xb6\x00\x43\ +\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x20\x00\x74\x00\x68\x00\x69\ +\x00\x73\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\ +\x00\x73\x00\x68\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x20\x00\x61\ +\x00\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\x20\x00\x61\x00\x73\ +\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x64\x00\x2c\ +\x00\x20\x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\x77\x00\x69\ +\x00\x73\x00\x65\x00\x20\x00\x69\x00\x74\x00\x20\x00\x77\x00\x69\ +\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\ +\x00\x72\x00\x20\x00\x61\x00\x73\x00\x20\x00\x77\x00\x69\x00\x72\ +\x00\x65\x00\x66\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x28\ +\x00\x69\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5b\x43\x68\ +\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x74\x68\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x73\x68\x6f\x75\x6c\x64\x20\x61\x70\ +\x70\x65\x61\x72\x20\x61\x73\x20\x66\x69\x6c\x6c\x65\x64\x2c\x20\ +\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x69\x74\x20\x77\x69\x6c\ +\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x77\x69\x72\x65\ +\x66\x72\x61\x6d\x65\x20\x28\x69\x29\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x02\x51\x86\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x06\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x43\x00\x6f\x00\ +\x6e\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\x00\x74\x00\x6f\x00\ +\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\ +\x6f\x6e\x74\x65\x78\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x67\x00\x5f\x8c\ +\x30\x6e\x70\xb9\x30\x4b\x30\x89\x30\x6e\x76\xf8\x5b\xfe\x5e\xa7\ +\x6a\x19\x30\x01\x30\x7e\x30\x5f\x30\x6f\x7d\x76\x5b\xfe\x5e\xa7\ +\x6a\x19\x00\x5b\x30\xb9\x30\xda\x30\xfc\x30\xb9\x00\x5d\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x36\x43\x6f\x6f\x72\x64\x69\x6e\x61\ +\x74\x65\x73\x20\x72\x65\x6c\x61\x74\x69\x76\x65\x20\x74\x6f\x20\ +\x6c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x6f\x72\x20\x61\x62\ +\x73\x6f\x6c\x75\x74\x65\x20\x28\x53\x50\x41\x43\x45\x29\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\x30\xb3\ +\x30\xd4\x30\xfc\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x43\x6f\ +\x70\x79\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x3e\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\ +\x00\x74\x00\x20\x00\x75\x00\x70\x00\x67\x00\x72\x00\x61\x00\x64\ +\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x73\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x0a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x43\x6f\x75\x6c\x64\x6e\ +\x27\x74\x20\x75\x70\x67\x72\x61\x64\x65\x20\x74\x68\x65\x73\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x51\x86\x5f\x27\x30\x92\x4f\ +\x5c\x62\x10\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x72\x65\ +\x61\x74\x65\x20\x41\x72\x63\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x16\x00\x42\x30\xb9\x30\xd7\x30\xe9\x30\ +\xa4\x30\xf3\x66\xf2\x7d\xda\x30\x92\x4f\x5c\x62\x10\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0e\x43\x72\x65\x61\x74\x65\x20\x42\x53\ +\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x08\x51\x86\x30\x92\x4f\x5c\x62\x10\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0d\x43\x72\x65\x61\x74\x65\x20\x43\x69\ +\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x18\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ +\x00\x20\x00\x44\x00\x57\x00\x69\x00\x72\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x43\x72\x65\x61\x74\x65\x20\x44\x57\x69\ +\x72\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0a\x5b\xf8\x6c\xd5\x30\x6e\x4f\x5c\x62\x10\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\x74\x65\x20\x44\x69\x6d\ +\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0c\x59\x1a\x89\xd2\x5f\x62\x30\x92\x4f\x5c\ +\x62\x10\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x43\x72\x65\x61\ +\x74\x65\x20\x50\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x77\xe9\x5f\x62\x30\x92\ +\x4f\x5c\x62\x10\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\ +\x65\x61\x74\x65\x20\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x30\xc6\ +\x30\xad\x30\xb9\x30\xc8\x30\x92\x4f\x5c\x62\x10\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x54\x65\x78\ +\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x0a\x00\x44\x00\x57\x00\x69\x00\x72\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x05\x44\x57\x69\x72\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x44\x00\x57\x00\x69\ +\x00\x72\x00\x65\x00\x20\x00\x68\x00\x61\x00\x73\x00\x20\x00\x62\ +\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\ +\x00\x65\x00\x64\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\ +\x44\x57\x69\x72\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x63\ +\x6c\x6f\x73\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x04\x5b\xf8\x6c\xd5\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x8d\xdd\x96\ +\xe2\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\ +\x6e\x63\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x22\x63\xcf\x75\x3b\x5e\x73\x97\x62\x30\x6b\x70\xb9\x30\ +\x92\x62\x95\x5f\x71\x30\x57\x30\x6a\x30\x44\x30\x67\x30\x4f\x30\ +\x60\x30\x55\x30\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x44\ +\x6f\x20\x6e\x6f\x74\x20\x70\x72\x6f\x6a\x65\x63\x74\x20\x70\x6f\ +\x69\x6e\x74\x73\x20\x74\x6f\x20\x61\x20\x64\x72\x61\x77\x69\x6e\ +\x67\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x28\x00\x44\x00\x72\x00\x61\x00\x66\x00\ +\x74\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x14\x44\x72\x61\x66\x74\x20\x63\ +\x72\x65\x61\x74\x69\x6f\x6e\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x44\x00\ +\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\ +\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x18\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\ +\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x74\x6f\x6f\x6c\x73\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x30\ +\xa8\x30\xc3\x30\xb8\x30\x92\x4e\xa4\x5d\xee\x30\x57\x30\x6a\x30\ +\x44\x30\x67\x30\x4f\x30\x60\x30\x55\x30\x44\xff\x01\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x45\x64\x67\x65\x73\x20\x64\x6f\x6e\ +\x27\x74\x20\x69\x6e\x74\x65\x72\x73\x65\x63\x74\x21\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x7d\xe8\ +\x96\xc6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\ +\x00\x46\x00\x26\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x64\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x07\x46\x26\x69\x6c\x6c\x65\x64\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\x97\ +\x62\x30\x6e\x82\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x46\ +\x61\x63\x65\x20\x43\x6f\x6c\x6f\x72\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x73\xfe\x57\x28\x30\x6e\x7d\ +\xda\x30\x92\x95\x89\x30\x58\x30\x66\x7d\x42\x4e\x86\x00\x5b\x00\ +\x43\x00\x5d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x46\x69\x6e\ +\x69\x73\x68\x65\x73\x20\x61\x6e\x64\x20\x63\x6c\x6f\x73\x65\x73\ +\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\x6e\ +\x65\x20\x28\x43\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x6a\x00\x46\x00\x69\x00\x6e\x00\x69\x00\x73\x00\ +\x68\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\ +\x64\x00\x72\x00\x61\x00\x77\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x6f\x00\x72\x00\x20\x00\x65\x00\x64\x00\x69\x00\x74\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x72\x00\x61\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x28\x00\x46\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x35\x46\x69\x6e\x69\x73\x68\x65\ +\x73\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x64\x72\ +\x61\x77\x69\x6e\x67\x20\x6f\x72\x20\x65\x64\x69\x74\x69\x6e\x67\ +\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x20\x28\x46\x29\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x30\xd5\ +\x30\xa9\x30\xf3\x30\xc8\x30\xb5\x30\xa4\x30\xba\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x46\x6f\x6e\x74\x20\x53\x69\x7a\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4e\x00\ +\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\ +\x63\x00\x69\x00\x72\x00\x63\x00\x75\x00\x6c\x00\x61\x00\x72\x00\ +\x20\x00\x65\x00\x64\x00\x67\x00\x65\x00\x3a\x00\x20\x00\x6d\x00\ +\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\ +\x63\x00\x69\x00\x72\x00\x63\x00\x6c\x00\x65\x00\x0a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x27\x46\x6f\x75\x6e\x64\x20\x31\x20\x63\ +\x69\x72\x63\x75\x6c\x61\x72\x20\x65\x64\x67\x65\x3a\x20\x6d\x61\ +\x6b\x69\x6e\x67\x20\x61\x20\x63\x69\x72\x63\x6c\x65\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x68\x00\x46\ +\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\x63\ +\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x20\x00\x73\x00\x6b\ +\x00\x65\x00\x74\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\ +\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\ +\x00\x63\x00\x65\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\ +\x00\x69\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\ +\x46\x6f\x75\x6e\x64\x20\x31\x20\x63\x6c\x6f\x73\x65\x64\x20\x73\ +\x6b\x65\x74\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x6d\x61\ +\x6b\x69\x6e\x67\x20\x61\x20\x66\x61\x63\x65\x20\x66\x72\x6f\x6d\ +\x20\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x46\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\ +\x00\x31\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x3a\x00\x20\ +\x00\x65\x00\x78\x00\x74\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\ +\x00\x6e\x00\x67\x00\x20\x00\x69\x00\x74\x00\x73\x00\x20\x00\x77\ +\x00\x69\x00\x72\x00\x65\x00\x73\x00\x0a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x23\x46\x6f\x75\x6e\x64\x20\x31\x20\x66\x61\x63\x65\ +\x3a\x20\x65\x78\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x69\x74\x73\ +\x20\x77\x69\x72\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x5e\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\ +\x64\x00\x20\x00\x31\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\ +\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\ +\x69\x00\x63\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x73\x00\x3a\x00\x20\x00\x64\x00\x72\x00\x61\x00\x66\x00\ +\x74\x00\x69\x00\x66\x00\x79\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x69\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x46\ +\x6f\x75\x6e\x64\x20\x31\x20\x6e\x6f\x6e\x2d\x70\x61\x72\x61\x6d\ +\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x64\ +\x72\x61\x66\x74\x69\x66\x79\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x46\ +\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\x6f\ +\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x64\x00\x67\x00\x65\ +\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x0a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x46\x6f\x75\x6e\x64\x20\ +\x31\x20\x6f\x70\x65\x6e\x20\x65\x64\x67\x65\x3a\x20\x6d\x61\x6b\ +\x69\x6e\x67\x20\x61\x20\x6c\x69\x6e\x65\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x00\x46\x00\x6f\x00\ +\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\x6f\x00\x70\x00\ +\x65\x00\x6e\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x3a\x00\ +\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x69\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1e\x46\x6f\x75\x6e\x64\x20\x31\x20\x6f\x70\x65\x6e\x20\x77\x69\ +\x72\x65\x3a\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6a\x00\ +\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\ +\x69\x00\x63\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x3a\x00\x20\x00\x62\x00\x72\x00\x65\x00\x61\x00\x6b\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x69\x00\x74\x00\x73\x00\x20\x00\ +\x64\x00\x65\x00\x70\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\ +\x63\x00\x69\x00\x65\x00\x73\x00\x0a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x35\x46\x6f\x75\x6e\x64\x20\x31\x20\x70\x61\x72\x61\x6d\ +\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x62\x72\ +\x65\x61\x6b\x69\x6e\x67\x20\x69\x74\x73\x20\x64\x65\x70\x65\x6e\ +\x64\x65\x6e\x63\x69\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x5a\x00\x46\x00\x6f\x00\x75\x00\x6e\ +\x00\x64\x00\x20\x00\x31\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\ +\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x62\x00\x6c\ +\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x3a\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x69\ +\x00\x66\x00\x79\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x69\x00\x74\ +\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x46\x6f\x75\x6e\ +\x64\x20\x31\x20\x73\x6f\x6c\x69\x64\x69\x66\x69\x63\x61\x62\x6c\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x73\x6f\x6c\x69\x64\x69\ +\x66\x79\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x00\x46\x00\x6f\x00\x75\x00\ +\x6e\x00\x64\x00\x20\x00\x32\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x73\x00\x3a\x00\x20\x00\x66\x00\x75\x00\ +\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x6d\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x46\x6f\x75\ +\x6e\x64\x20\x32\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x66\x75\ +\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\x00\x46\x00\x6f\x00\x75\ +\x00\x6e\x00\x64\x00\x20\x00\x32\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x73\x00\x3a\x00\x20\x00\x73\x00\x75\ +\x00\x62\x00\x74\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x0a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x22\x46\x6f\x75\x6e\x64\x20\x32\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x73\x75\x62\x74\x72\x61\x63\ +\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x46\x00\x6f\x00\x75\ +\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x20\x00\x63\x00\x6c\x00\x6f\ +\x00\x73\x00\x65\x00\x64\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\ +\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x0a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x46\x6f\x75\x6e\x64\x20\ +\x61\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x3a\x20\x6d\ +\x61\x6b\x69\x6e\x67\x20\x61\x20\x66\x61\x63\x65\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5c\x00\x46\x00\ +\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x67\x00\x72\x00\x6f\x00\ +\x75\x00\x70\x00\x73\x00\x3a\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\ +\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x65\x00\x61\x00\x63\x00\ +\x68\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\ +\x73\x00\x69\x00\x64\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2e\x46\x6f\x75\x6e\x64\x20\x67\x72\x6f\x75\x70\x73\x3a\ +\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x65\x61\x63\x68\x20\x6f\x70\ +\x65\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x73\x69\x64\x65\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x5a\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x63\x00\ +\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x63\x00\x75\x00\x72\x00\x76\x00\x65\x00\x73\x00\ +\x3a\x00\x20\x00\x66\x00\x75\x00\x73\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x0a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2d\x46\x6f\x75\x6e\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x63\x75\ +\x72\x76\x65\x73\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\ +\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x52\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x6f\ +\x00\x6e\x00\x6c\x00\x79\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\ +\x00\x73\x00\x3a\x00\x20\x00\x65\x00\x78\x00\x74\x00\x72\x00\x61\ +\x00\x63\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\ +\x00\x65\x00\x69\x00\x72\x00\x20\x00\x65\x00\x64\x00\x67\x00\x65\ +\x00\x73\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x46\x6f\ +\x75\x6e\x64\x20\x6f\x6e\x6c\x79\x20\x77\x69\x72\x65\x73\x3a\x20\ +\x65\x78\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x74\x68\x65\x69\x72\ +\x20\x65\x64\x67\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x42\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\ +\x64\x00\x20\x00\x73\x00\x65\x00\x76\x00\x65\x00\x72\x00\x61\x00\ +\x6c\x00\x20\x00\x65\x00\x64\x00\x67\x00\x65\x00\x73\x00\x3a\x00\ +\x20\x00\x77\x00\x69\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x6d\x00\x0a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x21\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\ +\x20\x65\x64\x67\x65\x73\x3a\x20\x77\x69\x72\x69\x6e\x67\x20\x74\ +\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x48\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\ +\x00\x73\x00\x65\x00\x76\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\ +\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x3a\x00\x20\x00\x73\ +\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x0a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x24\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\ +\x72\x61\x6c\x20\x66\x61\x63\x65\x73\x3a\x20\x73\x70\x6c\x69\x74\ +\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x66\x00\x46\x00\x6f\x00\x75\ +\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x65\x00\x76\x00\x65\x00\x72\ +\x00\x61\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x63\ +\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\ +\x00\x20\x00\x65\x00\x64\x00\x67\x00\x65\x00\x73\x00\x3a\x00\x20\ +\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x0a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x46\x6f\x75\x6e\x64\x20\ +\x73\x65\x76\x65\x72\x61\x6c\x20\x6e\x6f\x6e\x2d\x63\x6f\x6e\x6e\ +\x65\x63\x74\x65\x64\x20\x65\x64\x67\x65\x73\x3a\x20\x6d\x61\x6b\ +\x69\x6e\x67\x20\x63\x6f\x6d\x70\x6f\x75\x6e\x64\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6a\x00\x46\x00\ +\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x65\x00\x76\x00\ +\x65\x00\x72\x00\x61\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\ +\x2d\x00\x74\x00\x72\x00\x65\x00\x61\x00\x74\x00\x61\x00\x62\x00\ +\x6c\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x73\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\ +\x75\x00\x6e\x00\x64\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x35\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6e\ +\x6f\x6e\x2d\x74\x72\x65\x61\x74\x61\x62\x6c\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x63\x6f\x6d\ +\x70\x6f\x75\x6e\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x72\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\ +\x00\x20\x00\x73\x00\x65\x00\x76\x00\x65\x00\x72\x00\x61\x00\x6c\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\ +\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\ +\x00\x73\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\ +\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x63\x00\x20\x00\x66\ +\x00\x61\x00\x63\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x39\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x6f\x72\x20\x66\x61\x63\x65\x73\ +\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x70\x61\x72\x61\x6d\ +\x65\x74\x72\x69\x63\x20\x66\x61\x63\x65\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x46\x00\x6f\x00\ +\x75\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x65\x00\x76\x00\x65\x00\ +\x72\x00\x61\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x73\x00\x3a\x00\x20\x00\x66\x00\x75\x00\x73\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x6d\x00\ +\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x46\x6f\x75\x6e\x64\ +\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x76\x00\x46\ +\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x65\x00\x76\ +\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x73\x00\x3a\x00\x20\x00\x73\x00\x75\ +\x00\x62\x00\x74\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x20\x00\x66\ +\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x66\x00\x69\x00\x72\x00\x73\x00\x74\x00\x20\x00\x6f\x00\x6e\ +\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3b\x46\x6f\ +\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x3a\x20\x73\x75\x62\x74\x72\x61\x63\x74\x69\x6e\x67\ +\x20\x74\x68\x65\x6d\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x66\ +\x69\x72\x73\x74\x20\x6f\x6e\x65\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x9e\x00\x49\x00\x66\x00\x20\x00\ +\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x61\x00\x6e\x00\x20\x00\x4f\x00\x43\x00\x43\x00\x2d\x00\ +\x73\x00\x74\x00\x79\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x66\x00\ +\x66\x00\x73\x00\x65\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x70\x00\x65\x00\x72\x00\ +\x66\x00\x6f\x00\x72\x00\x6d\x00\x65\x00\x64\x00\x20\x00\x69\x00\ +\x6e\x00\x73\x00\x74\x00\x65\x00\x61\x00\x64\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6c\x00\ +\x61\x00\x73\x00\x73\x00\x69\x00\x63\x00\x20\x00\x6f\x00\x66\x00\ +\x66\x00\x73\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x4f\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x6e\x20\ +\x4f\x43\x43\x2d\x73\x74\x79\x6c\x65\x20\x6f\x66\x66\x73\x65\x74\ +\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x70\x65\x72\x66\x6f\x72\x6d\ +\x65\x64\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x74\x68\ +\x65\x20\x63\x6c\x61\x73\x73\x69\x63\x20\x6f\x66\x66\x73\x65\x74\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x98\ +\x00\x49\x00\x66\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\ +\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\ +\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\ +\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\x69\x00\x6e\ +\x00\x69\x00\x73\x00\x68\x00\x20\x00\x75\x00\x6e\x00\x74\x00\x69\ +\x00\x6c\x00\x20\x00\x79\x00\x6f\x00\x75\x00\x20\x00\x70\x00\x72\ +\x00\x65\x00\x73\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x20\ +\x00\x62\x00\x75\x00\x74\x00\x74\x00\x6f\x00\x6e\x00\x20\x00\x61\ +\x00\x67\x00\x61\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x4c\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x63\x6f\ +\x6d\x6d\x61\x6e\x64\x20\x77\x69\x6c\x6c\x20\x6e\x6f\x74\x20\x66\ +\x69\x6e\x69\x73\x68\x20\x75\x6e\x74\x69\x6c\x20\x79\x6f\x75\x20\ +\x70\x72\x65\x73\x73\x20\x74\x68\x65\x20\x63\x6f\x6d\x6d\x61\x6e\ +\x64\x20\x62\x75\x74\x74\x6f\x6e\x20\x61\x67\x61\x69\x6e\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4c\x30\xc1\ +\x30\xa7\x30\xc3\x30\xaf\x30\x55\x30\x8c\x30\x66\x30\x44\x30\x8b\ +\x58\x34\x54\x08\x30\x01\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\xaf\ +\x30\xc8\x30\x6f\x79\xfb\x52\xd5\x00\x20\x00\x28\x00\x43\x00\x29\ +\x00\x20\x30\x67\x30\x6f\x30\x6a\x30\x4f\x30\xb3\x30\xd4\x30\xfc\ +\x30\x55\x30\x8c\x30\x7e\x30\x59\x30\x02\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x37\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\ +\x63\x6f\x70\x69\x65\x64\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\ +\x66\x20\x6d\x6f\x76\x65\x64\x20\x28\x43\x29\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x49\x00\x6e\x00\ +\x73\x00\x74\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x64\x00\x20\x00\ +\x4d\x00\x61\x00\x63\x00\x72\x00\x6f\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x10\x49\x6e\x73\x74\x61\x6c\x6c\x65\x64\x20\x4d\ +\x61\x63\x72\x6f\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x38\x00\x4c\x00\x61\x00\x73\x00\x74\x00\x20\x00\ +\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x68\x00\x61\x00\ +\x73\x00\x20\x00\x62\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x72\x00\ +\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x64\x00\x0a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1c\x4c\x61\x73\x74\x20\x70\x6f\x69\x6e\ +\x74\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x72\x65\x6d\x6f\x76\ +\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x04\x76\xf4\x7d\xda\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x06\x7d\xda\x30\x6e\x82\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0a\x4c\x69\x6e\x65\x20\x43\x6f\x6c\x6f\x72\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\x7d\ +\xda\x30\x6e\x5e\x45\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4c\ +\x69\x6e\x65\x20\x57\x69\x64\x74\x68\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x04\x79\xfb\x52\xd5\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x4d\x6f\x76\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\x00\x4e\x00\x6f\x00\ +\x20\x00\x6d\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x64\x00\x6f\x00\ +\x77\x00\x6e\x00\x67\x00\x72\x00\x61\x00\x64\x00\x65\x00\x20\x00\ +\x70\x00\x6f\x00\x73\x00\x73\x00\x69\x00\x62\x00\x6c\x00\x65\x00\ +\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x4e\x6f\x20\x6d\x6f\ +\x72\x65\x20\x64\x6f\x77\x6e\x67\x72\x61\x64\x65\x20\x70\x6f\x73\ +\x73\x69\x62\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x4a\x00\x4e\x00\x6f\x00\x20\x00\x75\x00\x70\ +\x00\x67\x00\x72\x00\x61\x00\x64\x00\x65\x00\x20\x00\x61\x00\x76\ +\x00\x61\x00\x69\x00\x6c\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\ +\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x0a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x25\x4e\x6f\x20\x75\x70\x67\ +\x72\x61\x64\x65\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x20\x66\ +\x6f\x72\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x30\ +\x6a\x30\x57\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\x6f\x6e\ +\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x06\x8f\xba\x30\x6e\x65\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0f\x4e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x73\x69\x64\x65\x73\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\ +\x30\xaa\x30\xd5\x30\xbb\x30\xc3\x30\xc8\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x4e\x00\x5e\xa6\x30\x6b\ +\x00\x31\x30\x64\x30\x6e\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\xaf\ +\x30\xc8\x30\x57\x30\x4b\x30\xaa\x30\xd5\x30\xbb\x30\xc3\x30\xc8\ +\x30\x67\x30\x4d\x30\x7e\x30\x5b\x30\x93\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2a\x4f\x66\x66\x73\x65\x74\x20\x6f\x6e\x6c\x79\x20\ +\x77\x6f\x72\x6b\x73\x20\x6f\x6e\x20\x6f\x6e\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x61\x74\x20\x61\x20\x74\x69\x6d\x65\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x52\x00\x4f\ +\x00\x6e\x00\x65\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x20\ +\x00\x69\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x70\ +\x00\x6c\x00\x61\x00\x6e\x00\x61\x00\x72\x00\x2c\x00\x20\x00\x75\ +\x00\x70\x00\x67\x00\x72\x00\x61\x00\x64\x00\x65\x00\x20\x00\x6e\ +\x00\x6f\x00\x74\x00\x20\x00\x64\x00\x6f\x00\x6e\x00\x65\x00\x0a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x4f\x6e\x65\x20\x77\x69\ +\x72\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x70\x6c\x61\x6e\x61\x72\ +\x2c\x20\x75\x70\x67\x72\x61\x64\x65\x20\x6e\x6f\x74\x20\x64\x6f\ +\x6e\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x12\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\ +\x92\x90\x78\x62\x9e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x50\ +\x69\x63\x6b\x20\x4f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x63\xcf\x75\x3b\x97\x62\ +\x30\x92\x90\x78\x62\x9e\x30\x59\x30\x8b\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x28\x50\x69\x63\x6b\x20\x61\x20\x66\x61\x63\x65\x20\ +\x74\x6f\x20\x64\x65\x66\x69\x6e\x65\x20\x74\x68\x65\x20\x64\x72\ +\x61\x77\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x50\x00\x69\ +\x00\x63\x00\x6b\x00\x20\x00\x61\x00\x70\x00\x65\x00\x72\x00\x74\ +\x00\x75\x00\x72\x00\x65\x00\x3a\x00\x0a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0f\x50\x69\x63\x6b\x20\x61\x70\x65\x72\x74\x75\x72\ +\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x1c\x57\xfa\x67\x2c\x30\x68\x30\x6a\x30\x8b\x89\xd2\x5e\ +\xa6\x30\x92\x90\x78\x62\x9e\x30\x57\x30\x7e\x30\x59\x30\x02\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\x62\x61\ +\x73\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x57\xfa\x6e\x96\x70\xb9\ +\x30\x92\x90\x78\x62\x9e\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x11\x50\x69\x63\x6b\x20\x62\x61\x73\x65\x20\x70\x6f\x69\x6e\ +\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0e\x4e\x2d\x5f\xc3\x70\xb9\x30\x92\x90\x78\x62\x9e\x00\ +\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x50\x69\x63\x6b\x20\ +\x63\x65\x6e\x74\x65\x72\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x8d\xdd\ +\x96\xe2\x30\x92\x90\x78\x62\x9e\x30\x59\x30\x8b\x00\x3a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0f\x50\x69\x63\x6b\x20\x64\x69\x73\ +\x74\x61\x6e\x63\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0c\x7d\x42\x70\xb9\x30\x92\x90\x78\x62\ +\x9e\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x50\x69\x63\ +\x6b\x20\x65\x6e\x64\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x67\x00\x52\ +\x1d\x30\x6e\x70\xb9\x30\x92\x90\x78\x62\x9e\x00\x3a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\x6b\x20\x66\x69\x72\x73\ +\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x98\x18\x57\xdf\x30\x92\x90\ +\x78\x62\x9e\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x50\ +\x69\x63\x6b\x20\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x20\x70\x6f\x69\ +\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x34\x6b\x21\x30\x6e\x30\xdd\x30\xa4\x30\xf3\x30\xc8\ +\x30\x92\x90\x78\x62\x9e\x30\x01\x30\x7e\x30\x5f\x30\x6f\x5b\x8c\ +\x4e\x86\x00\x28\x00\x46\x00\x29\x30\x01\x95\x89\x30\x58\x30\x8b\ +\x00\x28\x00\x43\x00\x29\x30\x00\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x29\x50\x69\x63\x6b\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\ +\x74\x2c\x20\x6f\x72\x20\x28\x46\x29\x69\x6e\x69\x73\x68\x20\x6f\ +\x72\x20\x28\x43\x29\x6c\x6f\x73\x65\x3a\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x6b\x21\x30\x6e\x70\ +\xb9\x30\x92\x90\x78\x62\x9e\x00\x3a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x11\x50\x69\x63\x6b\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\ +\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x1a\x53\xcd\x5b\xfe\x50\x74\x30\x6e\x70\xb9\x30\x92\ +\x90\x78\x62\x9e\x30\x57\x30\x7e\x30\x59\x30\x02\x30\x00\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x6f\x70\x70\ +\x6f\x73\x69\x74\x65\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x53\x4a\x5f\ +\x84\x30\x92\x90\x78\x62\x9e\x00\x3a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x50\x69\x63\x6b\x20\x72\x61\x64\x69\x75\x73\x3a\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\ +\x30\xd4\x30\xc3\x30\xaf\x56\xde\x8e\xe2\x89\xd2\xff\x1a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x72\x6f\x74\ +\x61\x74\x69\x6f\x6e\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x56\xde\x8e\ +\xe2\x30\x6e\x4e\x2d\x5f\xc3\x30\x92\x90\x78\x62\x9e\x30\x57\x30\ +\x7e\x30\x59\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x50\ +\x69\x63\x6b\x20\x72\x6f\x74\x61\x74\x69\x6f\x6e\x20\x63\x65\x6e\ +\x74\x65\x72\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x16\x62\xe1\x59\x27\x7e\x2e\x5c\x0f\x73\x87\x30\ +\x92\x90\x78\x62\x9e\x30\x59\x30\x8b\x00\x3a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x13\x50\x69\x63\x6b\x20\x73\x63\x61\x6c\x65\x20\ +\x66\x61\x63\x74\x6f\x72\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x10\x95\x8b\x59\xcb\x89\xd2\x5e\xa6\ +\x30\x92\x90\x78\x62\x9e\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x12\x50\x69\x63\x6b\x20\x73\x74\x61\x72\x74\x20\x61\x6e\x67\ +\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0c\x59\xcb\x70\xb9\x30\x92\x90\x78\x62\x9e\x00\x3a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\x6b\x20\x73\ +\x74\x61\x72\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\x70\xb9\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x50\x6f\x69\x6e\x74\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\x59\x1a\x89\ +\xd2\x5f\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x50\x6f\x6c\ +\x79\x67\x6f\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x04\x53\x4a\x5f\x84\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x06\x52\x61\x64\x69\x75\x73\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x08\x51\x86\x30\x6e\x53\x4a\x5f\x84\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x61\x64\x69\x75\x73\ +\x20\x6f\x66\x20\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\x56\xdb\x89\xd2\x5f\x62\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x52\x65\x63\x74\x61\x6e\ +\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x4a\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\ +\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\x00\x20\x00\ +\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\x74\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x25\x52\x65\x6d\x6f\x76\x65\x20\x70\x6f\ +\x69\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x63\x75\ +\x72\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x56\xde\x8e\xe2\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x6f\x74\x61\x74\x65\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\ +\x62\xe1\x59\x27\x7e\x2e\x5c\x0f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x53\x63\x61\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x08\x5e\x73\x97\x62\x90\x78\x62\x9e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x65\x6c\x65\x63\x74\x20\ +\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x10\x00\x58\x00\x59\x00\x20\x5e\x73\x97\x62\x30\ +\x92\x90\x78\x62\x9e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\ +\x65\x6c\x65\x63\x74\x20\x58\x59\x20\x70\x6c\x61\x6e\x65\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x58\ +\x00\x5a\x00\x20\x5e\x73\x97\x62\x30\x92\x90\x78\x62\x9e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x58\ +\x5a\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x10\x00\x59\x00\x5a\x00\x20\x5e\x73\x97\ +\x62\x30\x92\x90\x78\x62\x9e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0f\x53\x65\x6c\x65\x63\x74\x20\x59\x5a\x20\x70\x6c\x61\x6e\x65\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\ +\x79\xfb\x52\xd5\x30\x59\x30\x8b\x30\xaa\x30\xd6\x30\xb8\x30\xa7\ +\x30\xaf\x30\xc8\x30\x92\x90\x78\x62\x9e\x30\x57\x30\x7e\x30\x59\ +\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x53\x65\x6c\x65\ +\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\ +\x6d\x6f\x76\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x20\x30\xaa\x30\xd5\x30\xbb\x30\xc3\x30\xc8\x30\ +\x59\x30\x8b\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\ +\x92\x90\x78\x62\x9e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x53\ +\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x74\x6f\x20\x6f\x66\x66\x73\x65\x74\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x56\xde\x8e\xe2\x30\x59\ +\x30\x8b\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\x92\ +\x90\x78\x62\x9e\x30\x57\x30\x7e\x30\x59\x30\x02\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1b\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x72\x6f\x74\x61\x74\x65\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x26\x62\xe1\x59\x27\x7e\x2e\x5c\x0f\x7e\x2e\x5c\x0f\x30\x59\x30\ +\x8b\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\x92\x90\ +\x78\x62\x9e\x30\x59\x30\x8b\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1a\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\ +\x74\x20\x74\x6f\x20\x73\x63\x61\x6c\x65\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x30\xc8\x30\xea\x30\ +\xe0\x30\x7e\x30\x5f\x30\x6f\x5e\xf6\x95\x77\x30\x59\x30\x8b\x30\ +\xaa\x30\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\x92\x90\x78\x62\ +\x9e\x30\x57\x30\x7e\x30\x59\x30\x02\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x20\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x74\x6f\x20\x74\x72\x69\x6d\x2f\x65\x78\x74\x65\ +\x6e\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x28\x30\xa2\x30\xc3\x30\xd7\x30\xb0\x30\xec\x30\xfc\x30\ +\xc9\x30\x59\x30\x8b\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\xaf\x30\ +\xc8\x30\x92\x90\x78\x62\x9e\x30\x59\x30\x8b\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1c\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x75\x70\x67\x72\x61\x64\x65\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x22\x73\xfe\x57\x28\x30\x6e\x30\xd3\x30\xe5\x30\xfc\x30\x6b\x57\ +\x82\x76\xf4\x30\x6a\x97\x62\x30\x92\x90\x78\x62\x9e\x30\x59\x30\ +\x8b\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x53\x65\x6c\ +\x65\x63\x74\x20\x70\x6c\x61\x6e\x65\x20\x70\x65\x72\x70\x65\x6e\ +\x64\x69\x63\x75\x6c\x61\x72\x20\x74\x6f\x20\x74\x68\x65\x20\x63\ +\x75\x72\x72\x65\x6e\x74\x20\x76\x69\x65\x77\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x30\xb9\x30\xd7\x30\ +\xe9\x30\xa4\x30\xf3\x30\x6f\x95\x89\x30\x58\x30\x89\x30\x8c\x30\ +\x66\x30\x44\x30\x7e\x30\x59\x30\x02\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x17\x53\x70\x6c\x69\x6e\x65\x20\x68\x61\x73\x20\x62\x65\ +\x65\x6e\x20\x63\x6c\x6f\x73\x65\x64\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x53\x00\x74\x00\x61\ +\x00\x72\x00\x74\x00\x20\x00\x41\x00\x6e\x00\x67\x00\x6c\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x74\x61\x72\x74\x20\ +\x41\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x08\x30\xc6\x30\xad\x30\xb9\x30\xc8\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x54\x65\x78\x74\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x30\x53\x30\x6e\x30\ +\xaa\x30\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\xbf\x30\xa4\x30\ +\xd7\x30\x6f\x7d\xe8\x96\xc6\x30\x67\x30\x4d\x30\x6a\x30\x44\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x21\x54\x68\x69\x73\x20\x6f\x62\ +\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x20\x69\x73\x20\x6e\x6f\x74\ +\x20\x65\x64\x69\x74\x61\x62\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x4f\x5c\x62\x10\x30\xe2\ +\x30\xfc\x30\xc9\x30\x78\x30\x6e\x52\x07\x30\x8a\x66\xff\x30\x48\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x54\x6f\x67\x67\x6c\x65\ +\x73\x20\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x4d\ +\x6f\x64\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x06\x30\xc8\x30\xea\x30\xe0\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x54\x72\x69\x6d\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x2c\x67\x00\x5f\x8c\x30\x6e\x30\xbb\x30\ +\xb0\x30\xe1\x30\xf3\x30\xc8\x30\x92\x51\x43\x30\x6b\x62\x3b\x30\ +\x59\x00\x20\x00\x28\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x2b\x00\ +\x5a\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x55\x6e\x64\ +\x6f\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x73\x65\x67\x6d\x65\ +\x6e\x74\x20\x28\x43\x54\x52\x4c\x2b\x5a\x29\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x88\x68\x79\x3a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x56\x69\x65\x77\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa2\x00\x57\x00\ +\x69\x00\x70\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x65\x00\x78\x00\x69\x00\x73\x00\x74\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\ +\x61\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x74\x00\x61\x00\x72\x00\ +\x74\x00\x73\x00\x20\x00\x61\x00\x67\x00\x61\x00\x69\x00\x6e\x00\ +\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x6c\x00\x61\x00\x73\x00\x74\x00\x20\x00\x70\x00\ +\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x28\x00\x57\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x51\x57\x69\x70\x65\x73\x20\x74\ +\x68\x65\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x73\x65\x67\x6d\ +\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6c\x69\x6e\ +\x65\x20\x61\x6e\x64\x20\x73\x74\x61\x72\x74\x73\x20\x61\x67\x61\ +\x69\x6e\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x6c\x61\x73\x74\ +\x20\x70\x6f\x69\x6e\x74\x20\x28\x57\x29\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x90\x23\x7d\xda\x30\xc4\ +\x30\xfc\x30\xeb\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x57\x69\ +\x72\x65\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x02\x00\x58\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x01\x58\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x12\x6b\x21\x30\x6e\x70\xb9\x30\x6e\x00\x20\x00\ +\x58\x00\x20\x5e\xa7\x6a\x19\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1a\x58\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\ +\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x58\x00\x59\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x02\x58\x59\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x58\x00\x5a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x02\x58\x5a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\x00\x59\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x01\x59\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x12\x6b\x21\x30\x6e\x70\xb9\x30\x6e\ +\x00\x20\x00\x59\x00\x20\x5e\xa7\x6a\x19\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1a\x59\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\ +\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x59\ +\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x59\x5a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\x00\x5a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\x5a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x6b\x21\x30\x6e\x70\ +\xb9\x30\x6e\x00\x20\x00\x5a\x00\x20\x5e\xa7\x6a\x19\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1a\x5a\x20\x63\x6f\x6f\x72\x64\x69\x6e\ +\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\ +\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x14\x30\xa2\x30\xaf\x30\xc6\x30\xa3\x30\xd6\x30\xb3\x30\xde\x30\ +\xf3\x30\xc9\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x61\ +\x63\x74\x69\x76\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x3a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x30\xc9\ +\x30\xe9\x30\xd5\x30\xc8\x30\xb3\x30\xde\x30\xf3\x30\xc9\x30\xd0\ +\x30\xfc\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x64\x72\x61\x66\ +\x74\x20\x43\x6f\x6d\x6d\x61\x6e\x64\x20\x42\x61\x72\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\ \x00\x00\x74\xe7\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ @@ -2134,1582 +40785,4892 @@ qt_resource_data = "\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x64\x72\x61\x66\x74\x20\ \x43\x6f\x6d\x6d\x61\x6e\x64\x20\x42\x61\x72\x07\x00\x00\x00\x05\ \x64\x72\x61\x66\x74\x01\ -\x00\x00\xab\xc1\ +\x00\x00\x3c\xec\ +\x00\ +\x00\xd5\x8d\x78\x9c\xc5\x7d\x0b\x78\x5d\x55\x95\xf0\xce\x3b\xb9\ +\x79\x95\x52\x4b\x29\xa5\x9c\x86\x5a\xd2\x92\xa6\xa5\x3c\x0a\xe1\ +\x99\x26\x0d\x2d\xd3\x17\x4d\xe8\xcb\x2a\x9c\xdc\x7b\x6e\x72\xda\ +\x7b\xef\xb9\x9c\x73\x6f\xd2\x20\x22\xa2\x02\xa2\x80\x20\x20\x0f\ +\x87\x01\x45\x40\x14\x47\x11\x04\x54\x9e\x2a\x23\x38\xfc\xe3\xcf\ +\x20\xf3\xe3\x88\xf2\x50\x19\x10\x04\x61\xf0\x77\x10\x70\xd6\x5e\ +\xfb\x7d\xce\xb9\xc9\x49\x71\xfe\xff\xe3\x2b\x37\xb9\x39\x67\xef\ +\xb5\xd7\x5e\x7b\xbd\xd7\xda\xc7\xdd\x93\x99\xf3\xd8\x6b\x5f\xba\ +\xf2\xf1\x05\xf3\x1e\x38\xe3\xc6\xfb\x9e\x59\x45\x48\xf3\xd1\x84\ +\x90\x6d\x84\xfc\xd3\x4d\xf0\xb9\x9d\x90\x9f\x9c\x09\x9f\x3b\x08\ +\x79\x74\x3e\x21\x75\x4f\xc3\xef\x87\xc1\xe7\x2f\xe0\xf3\x54\xf8\ +\x7c\x19\x3e\xdf\x23\xa4\x61\x0f\x21\x97\xac\x26\x64\xcd\x27\x09\ +\xa9\xb1\xd9\xe7\x15\xcf\x10\x32\x7a\x04\x21\x17\xf4\x91\xaa\x87\ +\x2e\x20\x64\xe7\x77\x49\xed\xcd\x13\x84\x5c\xfd\x04\xa9\xfd\x7e\ +\x2d\x21\x6d\xf3\xd9\xe7\xf5\x2b\x48\xdd\x72\x78\x77\xc6\x20\xfb\ +\xfc\xf6\xdd\xa4\x6e\xe0\xc7\xf0\xfb\xb9\xec\xf3\x8e\x34\xa9\xdb\ +\x02\xdf\x7f\xf8\x74\xf6\xf9\x9d\x5b\x48\xdd\x37\xfe\x93\x90\xf9\ +\x63\xec\xf3\x47\xc7\x93\xba\x7b\xde\x25\xe4\xc7\x23\xa4\xee\x5f\ +\xfe\x89\x90\x47\xf6\x25\xf5\x5f\xff\x1c\x21\x17\xde\x4b\x66\x7c\ +\x6a\x2d\x21\xb9\x8f\x91\x99\x75\xdf\x23\xe4\xa1\x8f\x93\xd9\x8f\ +\x00\xdc\x5f\x7d\x9d\x1c\x74\xd3\xff\x25\xe4\xd0\x97\xc9\x12\x0a\ +\xcf\x65\x4d\xe4\xd0\x1f\xfd\x23\x21\x97\x1f\x44\x0e\x7d\xd6\x81\ +\xcf\x4d\xe4\x98\x5f\x1f\x4e\xc8\xf1\xd5\xa4\xe7\xfa\x03\x08\x39\ +\xe7\x19\x72\xfc\x8d\xfb\x13\x72\xd5\x49\xe4\x84\x2f\xc0\xba\x4e\ +\x38\x8e\xac\xb9\xf4\x6c\x42\x96\xb6\x90\x35\x57\x7f\x86\x90\xda\ +\x55\x64\xed\xb3\x9f\x26\x64\xf1\x9f\xd9\xe7\x75\x17\x93\x53\x8e\ +\x02\x38\x1b\xee\x21\x7f\x97\x3d\x92\x90\x63\xae\x82\xcf\x95\xf0\ +\xf9\xef\xf0\x79\x0c\x21\x3d\x16\xd9\x7a\xc6\x10\x21\xfb\xde\xcc\ +\x3e\x7f\xf0\x0e\xd9\xf6\x2e\xac\xc3\xfe\x16\xd9\x7e\xf5\x07\x09\ +\xd9\xef\x78\xf6\x79\xff\x6d\x64\xd7\xb6\x6b\x09\xf9\xee\x59\x64\ +\xe2\xb5\x27\x01\xbf\x1f\x23\xe7\x7c\xbc\x8d\x90\x4f\xfe\x92\x5c\ +\x74\xf0\x95\x84\x2c\x3f\x03\x3e\xbf\x08\x9f\xdf\x80\xcf\x6b\xe0\ +\xf3\xcf\xe4\xb2\x1f\xbc\x04\x78\xbb\x9d\xdc\xbc\xf2\x44\x42\x96\ +\xf5\x91\xdb\xce\x85\x71\xbe\x74\x3c\xf9\xc6\x53\x80\xe7\xbf\xab\ +\x26\x0f\x7e\x23\x0d\xbf\xbf\x4a\x1e\x79\xa1\x00\xeb\xdf\x4a\x7e\ +\x7a\xeb\x2c\x42\x2e\x5e\x4f\xde\x21\x8f\x11\x72\xfb\xba\xaa\xfd\ +\x2f\xfe\x15\x21\x23\xf3\xaa\x16\x3c\x05\x70\xee\x1e\xab\xea\xb8\ +\xf3\xbf\x00\x9e\x62\xd5\xb2\x4b\xce\x21\x64\xec\x9d\xaa\x35\xef\ +\x7d\x05\xd6\xff\xbd\xaa\xc1\x37\x6f\x23\xe4\xcb\x4d\x55\x5b\x66\ +\x9f\x42\xc8\x37\xee\xad\xda\xf9\x2b\xc0\xef\x77\x1a\xab\x46\x5a\ +\x2f\x22\xe4\x96\x9f\x57\xb9\xfb\x9c\x45\xc8\xf7\x1e\xa8\x72\xbf\ +\x78\x35\x21\xbd\xab\xaa\xce\x3b\x26\x45\xc8\xdd\x4b\xaa\x3e\x3b\ +\x5a\x86\xfd\xfa\x5d\xd5\x67\x3f\x03\x78\x6f\x78\xa9\xea\xc6\x8f\ +\x03\x3c\x0b\x8e\xac\xfa\xf6\x87\x9b\x08\xf9\xf8\xb9\x55\x0f\x3d\ +\x0d\xf3\x17\x7e\x59\xf5\xc4\xa5\xff\x4a\xc8\x70\xba\xea\xc9\x19\ +\x07\x13\xb2\xf6\xaf\x55\xcf\x7c\xf2\x6d\x42\xee\x7c\xb6\xea\xd7\ +\xfb\xf4\x11\x52\xff\x58\xd5\xf3\xff\x09\xf4\xf8\x50\x75\xd5\x3b\ +\xdf\x84\xe7\x2e\x79\xb8\xba\xee\x7e\x58\xe7\x75\xa9\xea\xae\xa7\ +\xcf\x20\xe4\xe0\xf1\xea\x65\x77\xc1\xba\x3a\xee\xac\x1e\xd8\x06\ +\xf3\x7e\xaf\xa6\x7a\xeb\x9f\x1b\x09\x69\x79\xac\xda\xb9\x7d\x18\ +\xe8\xf8\xf5\xea\x42\xc3\xf3\x84\x38\x0f\x56\x8f\x2d\xdc\x97\x90\ +\x93\x9b\xab\x3f\xf6\xec\x69\x84\x64\xef\xa9\xbe\x62\x60\x2e\xe0\ +\xfb\xa7\xd5\x57\x3e\x76\x17\x21\xc7\x5e\x59\x7d\x4b\xd7\x07\x80\ +\xc6\xb7\x55\xdf\x76\x14\xe0\xfb\xf3\x37\x55\x7f\xfd\x02\xd8\x87\ +\xcb\x8e\xaa\xfe\xf6\xeb\xb0\xde\xaf\x7d\xb3\xfa\x81\xdb\x2e\x21\ +\x64\xd5\x05\xd5\x0f\x66\xdf\x20\x24\x98\x59\xfd\x93\x13\xdf\x02\ +\x7a\x59\x5a\xfd\xf4\x4d\xf7\x12\x72\xfe\xeb\xd5\xff\x3e\xf7\x0a\ +\x42\x9a\x4e\xac\xa9\xfa\xd4\x8f\x08\xf9\xe6\x81\x35\x33\xbf\xb8\ +\x8b\x90\xaf\xff\xb2\x66\xd6\x04\xe0\xfb\x8e\xcf\xd6\xcc\x9d\x05\ +\x70\xae\x9c\x5d\x33\x77\x36\x9c\xb3\xd1\x74\xcd\xb2\xb9\xf0\xf7\ +\xcb\x1f\xa8\x39\x87\xce\xbf\x75\x55\xcd\xa7\x4b\x6b\x08\x39\xf5\ +\xcb\x35\x17\x1e\x04\xf3\x6e\x3b\xb4\xe6\xfa\x6d\x5f\x85\xb3\x78\ +\x4a\xcd\x77\xae\x07\x7c\xdc\xfd\xcb\x9a\xbb\x7e\x02\xf4\x71\xef\ +\xa6\x9a\xfb\x9e\xfc\x0d\x21\x5f\xc8\xd5\xfc\xe8\x38\x98\xff\xca\ +\xf7\x6a\x7e\xfc\xf3\x8f\xc0\x39\x3e\x9d\x7d\x7e\x29\x55\xf3\xd3\ +\xd6\xdf\x02\x3d\xfd\x5b\xcd\x2f\x5b\x28\xfc\xd7\xd4\x3c\xb7\x07\ +\xf0\x75\x6d\x7f\xcd\x1b\x45\xa0\xcf\xc3\x8b\x35\x6f\xdc\x07\x78\ +\x9b\xf3\x44\xcd\x5f\xda\x81\x4e\x8e\xfa\x72\xed\x82\x83\x01\xef\ +\x87\x38\xb5\xdd\x01\x9c\x83\xf3\xb6\xd7\x6e\xa9\xff\x02\x21\x47\ +\x3c\x5a\x7b\xc6\xd9\x80\x8f\xfb\xce\xa9\x9d\x78\x0d\xe6\xfd\xda\ +\x81\xb5\xe7\x8d\x03\xdd\x66\xb3\xb5\x17\x7c\x12\xce\xf7\xea\x17\ +\x6b\x2f\xf8\xaf\xeb\x09\xf9\xc7\xb6\xda\xcf\x3d\xf5\x4d\x42\xce\ +\x3e\xaf\xf6\x92\xfb\xe0\xbc\xdd\xb0\xb4\xf6\x86\x8b\x60\xbe\xfa\ +\x2b\xd9\xe7\x17\x3f\x53\x7b\xd3\x61\xb0\x7f\xdf\x5e\x5b\x7b\xeb\ +\xef\xe1\xbc\xf4\x38\xb5\xf7\xa7\xfe\x0c\xf4\xbf\xa0\xf6\xa9\xa7\ +\x66\x12\x92\xb1\x6b\x9f\x2b\xbc\x00\xf0\x3f\x5d\xfb\x9b\x76\xa0\ +\x97\xea\x77\x6b\x7f\xdf\xfb\x43\x98\xff\x94\xda\xd7\x9e\xbe\x95\ +\x90\x33\x8e\xa8\xab\xf9\x24\xec\xc7\x45\x97\xd4\xd5\xfd\x14\xf6\ +\xef\xb4\x9d\x75\xed\x6f\x94\x08\xb9\xeb\xe2\xba\x03\x66\x00\x1e\ +\xb7\xff\xa2\x6e\xc9\x6f\xe1\x5c\xa4\x97\xd5\xf5\x1f\x7b\x3a\x21\ +\x9f\xeb\xab\xdb\xf9\x34\xe0\x7f\x9f\x57\xd8\xe7\x9d\x73\xea\xd2\ +\x7f\x82\xf5\xd8\x6f\xd5\x39\x7f\x80\xf3\xfe\x0f\x2f\xd7\x5d\xf0\ +\x2d\x18\xff\xbe\x2d\x75\x57\xdd\x0a\xf8\xfd\xc0\x33\xec\xf3\xfe\ +\xb1\xba\xdb\xff\x0e\xbe\xdf\x7a\x6b\xdd\x1d\x37\x3f\x02\x74\x75\ +\x5f\xdd\xbd\x35\x3f\x21\x64\xe1\x51\x75\xf7\xb5\xc0\xfe\x7f\xc5\ +\xab\xbb\xef\x12\xa0\xd7\x8f\xd6\xd7\xdd\xbf\x05\xc6\x3b\xfd\x91\ +\xba\x1f\x6f\xa2\x7c\x6d\x7d\xdd\x6f\x2f\xe9\x86\xf3\xfd\xf3\xba\ +\xbf\xfc\x12\xf8\xc5\x69\xbf\xaa\x9f\xff\x3b\xd8\xcf\x1f\xbe\x53\ +\xbf\xf8\x0f\x5f\x03\xfe\xd7\x52\xbf\xe4\xfc\xc7\x01\x6f\x33\xeb\ +\xb7\xee\x0f\xf8\x03\xcc\xec\x78\x0d\xf0\xfa\xf9\x27\xea\x3f\xf4\ +\x04\x3c\xb7\xee\xee\xfa\xdc\x85\x40\x57\x83\xe9\xfa\xd2\x81\x40\ +\x97\x85\x9e\xfa\xcf\x5e\xd5\x0f\xe3\xfe\x57\xfd\x17\xb7\x3d\x0a\ +\x74\xf2\x5e\xfd\x0f\xce\x05\xf8\x3a\x4e\xac\x7f\xf4\x9e\x3a\xd8\ +\xf7\xdf\xd5\xff\x47\xdd\x06\x42\x1a\xef\xa8\xff\xc3\x6d\x5b\x09\ +\x79\xf8\xaf\xf5\xaf\xff\x14\xf0\x6c\xd5\xd5\xbf\xfd\x57\x80\x7f\ +\xcb\xf3\xf5\xef\xcc\x05\x3a\x3b\xf6\x8f\xf5\xef\xdc\x00\xe7\xf3\ +\xae\x27\x1b\x1a\x3f\x0f\xf4\x70\xd8\xcf\x1b\x5a\xef\x06\x3e\xd8\ +\xfb\x60\x43\xdb\xf9\x27\xc0\xf3\x7e\xc3\x92\x83\x01\x1f\x27\xdd\ +\xd8\x70\xe4\x28\xf0\x87\xfd\xff\xda\x70\xe4\x7f\xc0\x3e\x7f\xbf\ +\xb6\xa1\xbf\x77\x09\x21\x37\x9e\xd5\x70\xca\x41\x70\x5e\xab\xe7\ +\x35\xac\x0f\x3a\x60\xff\x7e\xdd\xb0\xe1\x66\xa0\xfb\xeb\xbf\xd0\ +\xb0\xed\xa7\xff\x01\xf4\x7c\x40\x43\xfa\x3d\xe0\x4f\xb3\x7e\xc0\ +\x3e\xef\xfb\x60\xc3\x99\xb7\xc3\x79\x3d\x60\x5e\xc3\xb9\x8f\x7c\ +\x07\xe4\xc9\xb6\x86\x0b\x7d\xd8\xf7\x2b\x0f\x6b\xb8\x6c\x0f\xd0\ +\x65\xe7\xaf\x1b\x6e\x59\x0e\xf0\x5f\x59\xdd\xf0\xd0\x3b\xb0\x8f\ +\x47\x5e\xd4\xf0\xe2\x2b\x80\xc7\x4f\x34\x35\x1e\x72\x27\xe0\xf7\ +\x9e\x17\x1a\x57\xfc\x08\xf8\xcc\xf7\xff\xad\xf1\xa8\x12\xc0\x7f\ +\x68\xaa\xb1\xff\x5e\xc0\xe7\x71\x7e\xe3\xda\x47\x97\x03\x7c\x0b\ +\x1b\xed\xb3\x61\xdc\x85\x6e\xe3\x97\x1f\x1b\x01\xbe\xf5\x6e\xe3\ +\x57\x9e\x05\x7a\xbd\xe6\x82\xc6\x6f\x7f\xa0\x13\xe8\x78\x69\xe3\ +\x9d\xb5\xb0\x1f\xf7\xfd\xa5\xf1\x67\x2b\x00\xcf\xd7\xef\x6c\x7c\ +\xf2\x71\x17\x3e\x1f\x6f\x7c\xee\xba\xfb\x09\x39\xe8\x98\xc6\xe7\ +\x1e\x82\x73\x74\xc3\xcf\x1a\x5f\x5b\x0f\xfc\xea\xba\xef\x36\x59\ +\xbf\x58\x08\xf2\xec\x12\xf8\xbc\x13\xf8\xc4\xb1\xf0\x09\xe7\xe5\ +\x9f\x1e\x6a\x5a\x7f\x15\xc8\xbd\xae\xde\x26\xe7\x17\x80\xbf\xaf\ +\xe6\x9b\x46\x5b\x17\x13\xf2\xad\xf9\x4d\x67\x5e\x0c\x78\x6e\xcc\ +\x35\x95\x0f\x06\xf8\x2e\xff\x58\xd3\xd8\xab\x20\xef\xce\xfd\x7e\ +\xd3\xf9\x37\xc3\xba\x96\x2c\x6a\xfa\xec\xc1\xb0\x8e\x1f\xf4\x34\ +\x5d\xff\x2e\xf0\xcf\x4f\xdc\xde\xf4\xdd\x25\x80\xbf\x9e\xdf\x36\ +\x3d\x3e\x0f\xf6\xf5\x81\x03\x9b\x9e\x58\x00\xf2\x73\x4f\x73\xd3\ +\x6f\x0f\x06\x7c\xf9\xed\x4d\xaf\x1c\x0a\x72\xa3\xed\xeb\x4d\xaf\ +\x1d\x0e\x7c\xf6\x80\xf7\x9a\x5e\x3f\x08\xf6\xa1\xe6\xa2\xa6\x77\ +\x57\x03\x5f\xba\xfb\x82\x54\xd3\x43\x94\xaf\x9e\x91\xea\xbc\x16\ +\xf6\x29\xf3\x7b\xf8\x84\x75\x3b\x2b\xe0\x13\xd6\xe5\x4c\xa4\x96\ +\xde\x0f\x7c\x60\xe5\x67\x53\x47\x7e\x0d\xd6\x75\xdb\x96\xd4\x89\ +\x87\xc0\xb9\xb8\x6e\x73\xea\xa4\x1b\xe1\x3c\x1d\xfe\x5a\x6a\xed\ +\x57\x81\x5f\xff\xc8\x49\x9d\xf1\x2c\xd0\xdb\xd2\xf5\xf0\xb9\x1f\ +\x7c\xde\x00\x9f\x20\xdf\x96\xbe\x99\x72\xae\x03\x78\xee\xec\x4f\ +\xed\xa9\x3b\x97\x90\xaa\x53\x53\x1f\xbf\x14\xe6\x59\xb3\x22\xf5\ +\x89\xdf\x00\x3f\xd8\x30\x98\x3a\x7f\x06\xd0\xe1\xbe\x03\xa9\xab\ +\xcf\x9f\x03\xf4\xd3\x9f\xba\x66\x27\xec\xcf\x0f\xae\x4d\xdd\x3a\ +\x1b\xce\xe3\x07\xae\x67\x9f\xf7\x3d\x92\xfa\xda\x67\x5e\x01\x7e\ +\xf5\xb9\xd4\x4f\x76\xc2\x79\x9c\x79\x50\xea\x67\x9b\xee\x01\xbe\ +\x93\x4d\xfd\xec\x77\xc0\x9f\xe6\x3e\x9a\x7a\xea\x8f\x00\xdf\xdf\ +\xff\x3c\xf5\xfb\xcb\x2e\x04\x7c\x75\x34\x37\xec\x01\xbc\xde\x74\ +\x7f\xf3\x01\xcf\x06\x84\xb8\x7b\x9a\x17\xfe\x3d\xe0\x7f\xd7\xa5\ +\xcd\x0b\x7f\x0c\xf4\x3e\x7b\x4e\xf3\xa2\x73\x00\x3f\xd7\x9e\xdb\ +\x7c\xe8\x26\x78\xef\xd6\xb3\x9a\x97\x7e\x07\xe4\xd2\xf9\x9b\x9b\ +\x57\x06\xb0\xee\x47\x8e\x6d\x3e\xe9\x24\xa0\xdf\x1d\xeb\x9a\xfb\ +\x1e\x87\x75\x6c\x6f\x6c\xde\x78\x35\xe0\xfd\xe6\x52\x73\xb6\xf3\ +\x09\xe0\xc7\x67\x37\x5f\xf8\x6c\x03\x21\xad\x4b\x9a\xaf\xe8\x07\ +\x7d\x62\xe5\x3b\xcd\x57\xcf\xa4\xf2\xeb\xff\x34\xdf\xf0\x29\xe0\ +\xcf\xb5\x41\xf3\x77\x06\x80\xef\x5e\xfd\x4e\xf3\xc3\xd7\xc0\xe7\ +\x57\x5e\x6b\xfe\xd7\x43\x80\x7f\xd5\x5d\xde\xfc\xe4\x39\xc0\xcf\ +\x5a\xed\xe6\xb7\xfe\x30\x08\xf2\xed\x7f\xb7\xd4\x6f\x82\x73\xdd\ +\x3e\xd6\xb2\xff\xdb\x20\x6f\xff\xe1\xd4\x96\x05\x29\xa0\xc7\x2f\ +\xde\xdd\xd2\x79\x1d\xec\xdb\x65\x2f\xb7\x1c\x76\x0e\xe0\xf7\x9e\ +\xa5\x2d\x47\xaf\x87\xf3\xd5\x74\x61\x4b\xcf\xec\x9f\x11\x72\xe0\ +\x1b\x2d\x3b\x1e\x04\xbe\x71\xe5\x3f\xb7\x14\x2e\x80\xf5\x77\xde\ +\xdc\x72\xf6\xb3\x37\x03\x3f\x21\x2d\xe7\x1e\x0b\xf4\xfa\xf7\x1f\ +\x6e\xb9\xec\x06\xd8\xd7\x1f\xfe\x43\xcb\x55\x9f\xa7\xfc\x6b\x77\ +\xcb\xfd\xb7\xc0\x79\xde\xf8\x40\xcb\x63\xcf\xc0\x7a\x1f\x7a\xab\ +\xe5\xa9\xd7\x80\x2f\x1e\xb9\xb2\xe5\x57\xd7\x80\x3e\x73\xfe\xf5\ +\x2d\xcf\x2d\xa8\x06\xfe\xf6\xb3\x96\xe7\xc7\x01\x5f\x17\xfe\xa5\ +\xe5\xf5\x5f\xc1\x7a\x6e\x39\xa0\x75\xde\x9f\xfe\x40\xc8\x8a\x7b\ +\x5a\x7b\x72\xf4\xfc\x7c\xba\x75\xf5\xf3\xb0\x9e\x07\x3f\xda\xba\ +\xfd\x46\x80\xef\x4b\x67\xb6\xee\xb8\x1d\xe6\xbb\x62\x57\xeb\x47\ +\x5e\x04\xba\xea\x1e\x68\xcd\x7c\x15\xe8\x7a\x6c\x6e\x6b\xfe\xcf\ +\x70\x3e\x52\xc7\xb6\x96\x9e\xd9\x0c\xf0\x36\xb4\x8e\xdd\x75\x39\ +\xd0\x4b\xaa\xf5\xba\x57\x00\xff\xf9\xbb\x5a\xbf\xfa\x34\xe0\x69\ +\xc5\x69\xad\x37\xff\x02\x74\xc2\x0f\x3d\xda\x7a\xcb\xbd\x0f\xc3\ +\x73\x99\xd6\x47\x1e\x01\xbe\xf0\xfd\x7c\xeb\x1b\xc7\xc0\x7c\x5f\ +\xdf\xaf\x6d\xee\x81\x94\xdf\xf4\xb7\x2d\xbe\x22\x43\x48\x7f\xaa\ +\xed\xd0\x5a\xa0\xb3\x6b\x6b\xda\xba\x7e\x03\xcf\x3d\x98\x6a\xdb\ +\xf0\xcf\x80\xff\xe6\x2f\xb5\x79\xd7\x02\x3d\x3f\xfc\xe9\xb6\x8f\ +\x9e\xd5\x05\x7a\x51\x4b\xdb\xa5\xbb\x40\x3f\x3a\xfe\xa9\xb6\xcb\ +\x1c\xc0\xcf\xfc\xaf\xb4\x3d\xf6\x6f\x70\x8e\x16\x1d\xd6\xc6\xce\ +\x49\x0e\x3e\x81\x0e\x1f\xf8\x7e\xdb\xe3\x1f\x02\xfc\x9c\xf1\x48\ +\xdb\xcb\xbf\xad\x21\xe4\xd2\xc1\xb6\x57\x9f\x03\x3a\xf8\xf0\x8d\ +\xed\x0d\x17\x03\x7d\x5f\xfa\xc7\xf6\x66\xd0\x21\xc9\xce\x13\xdb\ +\xf7\x3b\x0f\xf0\x47\xfe\xd8\x7e\xd0\xc5\xc0\x27\xaf\x79\xa0\x7d\ +\x63\xb9\x07\xce\xf3\xd7\xdb\x4f\x7f\xec\xe7\x84\x1c\x1d\xb4\x8f\ +\xff\x10\xe8\xeb\x82\xf3\xda\x3f\xd3\x0c\x7c\xe0\x23\x4d\xed\x97\ +\xde\x7a\x0b\x21\xf3\xee\x68\xbf\x3a\x05\x7a\xcf\x8f\x2f\x6b\xbf\ +\xfe\x95\x1b\x80\x8f\xbd\xd5\xfe\xc0\x05\x70\x0e\xbf\xf5\x6e\xfb\ +\xe3\xff\x0b\xe8\xfa\xf8\x5c\xfb\xaf\x17\xd0\x73\xfd\x8f\xed\x7f\ +\xaa\x07\x5d\x78\xd1\x35\xed\x7f\x5a\x0c\xfa\xc5\x15\x73\xda\xff\ +\x72\x3a\xd0\xcb\xb5\x8f\x00\x31\x3e\x76\x2c\x40\x46\xe6\x93\x5e\ +\x92\x21\x2e\x49\xc3\x3f\x8f\x14\x88\x4d\x7c\x62\x91\x22\xfe\x5c\ +\x22\x5e\x23\x32\x7d\xf8\xd7\xd4\x9b\xc9\x58\x9b\x3c\xb7\x50\x02\ +\xfa\x24\x6d\xfd\xbe\x9d\x2d\x9d\x0e\xdf\xe1\x57\x55\x74\xa4\x9d\ +\x91\x91\x2c\x52\x26\x79\x7d\x34\xf8\x59\x7d\x4b\x67\xb2\xe1\x27\ +\x87\x2c\x23\xc3\x24\x80\xa7\x72\xf0\x66\x01\x7e\xb7\xe0\xdf\x1e\ +\xf8\x39\x80\x77\x1c\x7c\xd3\x91\x70\x74\xc2\x9c\x81\x65\x5b\x45\ +\x3a\xaf\x55\xf2\x2c\xbb\x60\x39\x7b\xdc\xa0\xe4\x16\x46\xac\x71\ +\xd7\x77\x96\x0d\x07\xc5\x9c\x5b\x70\x2a\x81\xd9\x15\xbb\x60\x1b\ +\x81\x1b\x81\x9f\xcb\x08\xae\x45\xba\xe9\x7f\x72\xda\x76\xba\x7c\ +\x98\x6d\xc4\xf7\xca\xc5\xee\xee\x6e\x3a\xfa\x0c\x39\xfa\x90\x77\ +\x32\xfd\x1e\xc7\x1f\x8b\x41\x83\x47\x3a\x61\x31\x8b\xf1\xa7\x61\ +\xb2\x0b\x16\x55\xd2\xbe\x0b\xe0\xf7\x1c\xfc\x53\x6f\x64\xb4\xbf\ +\x2a\x84\xe9\xd0\x55\x46\xd0\x72\x44\x50\x69\xd4\xb1\x02\x27\xe7\ +\xa4\x4b\x4e\xc6\xf2\x86\x77\xc1\x0f\x9d\xc1\xe2\x30\xbe\x70\x35\ +\x95\x97\xf2\x29\x58\x0a\xdb\x95\x34\x82\x61\xe3\xc4\x74\xa7\xe8\ +\xff\x03\x00\xc6\xc7\xef\x32\xb8\x67\x6c\xf7\x46\xf9\x53\xec\xe9\ +\x34\x00\xcb\xd0\x5b\x82\xa7\x6d\x78\x86\xa1\x3a\x08\xa1\x22\xa8\ +\x88\x86\x40\x2e\xec\xe8\xde\x22\x6c\xac\x13\x58\xe9\xb2\xef\x3b\ +\xb0\xf9\x74\x97\x61\xcb\x33\xa5\x51\x58\x54\xc6\x4a\x7b\x39\xcf\ +\xa7\x2b\x0c\xad\x3b\xd0\x17\x08\x43\x4c\x0c\x96\x26\x72\x8e\xa4\ +\x05\xb5\x40\x1f\x81\x62\x4b\x2c\xc1\x77\x39\x4e\xb0\x1c\x74\x09\ +\xc8\xbe\x38\x8a\xd5\xc7\xc1\xc0\xe1\x2a\xcf\xd1\x08\x73\xf8\x14\ +\x11\xf2\xfd\x9a\x5e\x3f\x4d\x9f\x6f\xe2\xcf\xfb\x69\x7c\x70\x17\ +\xe9\x83\x07\xdd\xd0\x09\xa1\x18\xec\x86\x9f\xfb\xc8\x10\xd9\x4c\ +\xd6\xe1\x69\xb2\x39\xde\x03\xc4\x52\x11\x96\x61\x91\x41\xc0\xbc\ +\x4b\xb2\x00\xac\xfe\x44\x51\x3b\x65\x25\x1c\xfd\x2c\xfa\x8d\x22\ +\x96\x3e\xdf\xb1\x4b\x80\x53\xa0\x0a\xdb\x4f\x77\x5b\x7d\x43\x9b\ +\xd7\x21\x0e\x0b\x76\xb1\xcb\x1a\x5c\xb3\x76\x60\x88\xfe\x9a\xf6\ +\x0a\x41\xc9\xb7\xdd\x42\x0c\xdc\x2d\x64\x3d\x22\x09\x47\x97\x23\ +\xd7\xf5\xfa\xbe\x3d\x41\x1f\x6f\x16\x8f\xc3\xef\xf8\xc2\x45\xa1\ +\x85\xd2\xcf\xbc\x1a\x02\x7e\xf3\x11\x5c\x1b\x96\x37\x02\x4f\xe4\ +\xe4\xde\x94\x39\x33\x11\xdf\xa8\x25\xd2\xfd\xf2\x25\x29\x32\xf4\ +\xe9\x04\x56\x81\xbc\x24\xb8\xc7\x4a\x44\x00\x67\xc9\xd9\xbe\x05\ +\xa4\xe4\x03\xf1\xd8\x85\x91\x32\xfd\xd5\xa6\xd0\x5b\x59\xdf\xcb\ +\xc3\x13\x21\x02\x8b\x5d\xe4\x0c\xd8\x11\xc5\xd1\x96\x92\x55\x72\ +\xaa\xc6\x55\x4b\x07\x25\x87\x6a\x65\xef\xad\x62\xdf\xe0\x9b\xd7\ +\xc7\xa0\x27\x30\xc7\x92\x0b\xcd\x93\xb7\xe1\x7b\xba\xf8\x22\x92\ +\x6b\x60\x70\xdb\xe0\x6f\x44\x39\x85\x58\xda\xe9\x53\x28\xcb\x97\ +\x73\x25\xb7\x98\x73\x96\x32\xae\x3c\xbc\x94\xb1\xe0\x64\xe4\x14\ +\x83\x82\x36\x00\xfa\x55\x24\x7e\xba\xfb\x6a\x97\xea\xfb\x5c\x3f\ +\xcd\x0e\x5b\x0b\x7b\x8b\x7d\x81\x2f\x7d\x3e\x72\x7e\xd2\xfa\x20\ +\x89\x70\xd1\x0b\x7f\x1b\x0a\xfd\x35\x4c\x36\x94\xcc\x04\x71\x72\ +\xe6\xcb\x49\x31\xc4\xd1\x24\xd8\xc7\x2b\x4c\xa5\x11\xde\x30\x62\ +\x7a\xd7\x0d\x29\xc6\x65\x51\xa2\xa3\x8c\x45\x63\x5f\xd1\xd5\xb6\ +\xc0\x5a\x72\x02\x22\x75\xea\xfa\x72\x1e\x23\x2c\x4e\x90\xf8\x3b\ +\xbe\x30\xa0\xbd\xf0\x3e\x24\x92\x9c\xea\x40\x1c\xba\x92\xa4\x89\ +\x05\x61\x0e\x00\x41\x07\x1d\xe5\x58\x94\x12\x43\x0e\x9a\x82\x87\ +\x03\xc7\x5a\xc7\x4f\x47\xbb\x1c\x21\x70\xd6\x09\xe2\xd8\x10\x1a\ +\xc5\x0e\xc9\x9e\x33\x61\xbf\x1d\xc9\xc6\x9f\xe3\xcb\x29\xe0\x12\ +\xd8\xb9\x61\xbf\x8f\xe2\xb2\xd4\xdc\x07\xe0\x34\x6c\x41\x28\x5a\ +\x86\x1d\x2a\x23\x33\xbe\x3d\x5e\xa8\x08\xcc\x5c\x20\x27\x07\x88\ +\xcd\x03\xb9\xef\x54\x50\x9d\x5a\x36\x3b\x79\x6f\xcc\x89\x68\x4f\ +\xfd\x4e\x4e\xa9\x25\x67\x18\x03\xc5\x69\x4e\x3a\x6b\x53\x67\x53\ +\xb0\xc5\xe4\x1a\xd4\x72\x06\x8e\x52\xa2\x18\x57\x0b\xa9\x51\x94\ +\x01\x46\x35\x29\x03\xe4\x3b\x62\x18\x15\xd5\x7c\x18\xcb\x08\xc8\ +\x0b\xef\x4b\x74\xf9\x7c\x03\x7d\x5c\xd2\x08\xf2\xf7\xe9\x1c\x51\ +\x86\x28\xfa\xb7\x11\xc9\xc4\xd4\x9e\x6c\x50\x47\x32\xe3\xe6\x9d\ +\x42\xe0\x7a\x85\xa9\xd9\x55\xf8\xa4\x52\x51\x30\x02\x6f\x97\x34\ +\xfa\xe8\x17\xc3\x71\x31\xd0\x6f\x62\x44\x29\xd4\xf2\xc1\x49\x5e\ +\xa6\x34\x31\x0c\x0b\x72\x61\x37\xf5\x73\xde\xd4\xef\x8d\x17\x46\ +\x7c\x3b\xa3\x1f\x13\xf9\x1d\xbe\x7c\x21\x59\x0d\x2f\x31\xb1\x90\ +\xe1\x84\x32\x0d\xb5\x0b\x49\x28\x2c\x45\xd9\xf3\x74\x3d\x45\x7c\ +\x27\xc0\x1d\x61\x04\x48\xd5\xc1\x61\xdc\x2f\x0a\xae\x05\xfb\x69\ +\xc3\x98\x8e\xa6\xc0\xad\x5e\xbd\xa7\x98\xf3\x32\xf1\x3c\x23\xb0\ +\x80\xac\x00\xb1\x6e\x1e\xe4\x88\x2f\xbe\xec\xa2\x64\x18\x94\x87\ +\x01\xfb\x80\xee\xac\x9d\x76\x82\x8a\x0b\x5e\x42\x36\xc1\xe4\x9e\ +\x26\xf2\x75\x62\xb2\x01\x40\x2a\x09\xe8\xb9\x57\x9b\xc0\x06\xa2\ +\x3b\x3a\xb8\xdb\x29\xa5\x47\xe9\xe0\x33\xf9\xe0\xf4\xff\x2b\xd8\ +\xd7\x5c\x28\xf5\x6b\xbc\x43\x8d\xd1\x00\x4f\x8e\xc3\xb1\xd1\x64\ +\x19\xff\x06\x5f\x2b\x00\xfd\x7b\xb8\x0b\x69\xce\x79\xf7\x66\x17\ +\xc4\xf9\xca\xe2\x58\xa3\x9a\xda\xad\x33\x34\x4f\xb3\x58\x96\x6e\ +\x2a\x97\x2a\x60\xda\x03\x65\xcf\xe2\x30\x5a\xc1\xa8\xe3\x94\xba\ +\x2b\x00\xdf\x02\x44\x44\x8f\x74\xc9\xa0\xbe\xda\xd5\x19\x17\x49\ +\x3e\xc5\xde\xa0\xbf\xe2\xe3\x9d\xda\xe3\x4c\x97\x36\x75\x30\x1b\ +\x55\x95\x31\x0d\x79\xfb\xd1\x77\x19\x98\xb0\xc3\x2e\x70\x49\xa5\ +\x53\x85\x47\x9f\x0f\x8c\xdf\x45\xdc\xe4\x84\x32\x12\x2b\x44\x9a\ +\x07\xdc\x82\x1b\x8c\x5a\x82\x77\x71\xbd\x9c\x7d\x2b\x39\xf7\x51\ +\xc0\x45\x28\xc7\xce\xf3\x31\xe3\x44\x49\xc0\xb1\x9f\x55\x02\x47\ +\xce\xd2\xc1\xc6\x43\x16\xc2\x2d\x91\xd2\xa8\x57\x2e\x59\x69\x10\ +\x10\x14\xb1\x0c\x45\xf1\x93\x9f\x1f\xc3\x3a\xf5\x89\xd9\xd6\xae\ +\xf8\x1f\xd1\xe6\xe2\x74\xb9\xa3\x15\x3b\x5c\xc1\x95\xb8\xe4\x0a\ +\x1c\xdf\x27\xb9\xb8\x14\x80\x17\xde\x93\x5a\x21\xd2\xa3\x0f\xaf\ +\x17\xc2\x53\x3d\xbc\x1e\xe4\x93\xf6\x30\xfd\x15\x1f\x7e\x44\x3e\ +\xbc\x37\xe7\x88\xa9\xb1\x7f\x5b\xc4\x26\x97\x52\xd4\x90\x2b\xe2\ +\x96\xab\x85\xee\x58\x8f\x82\x38\xf6\x90\x0e\x3b\xa5\x71\xc7\x29\ +\x58\x2b\x98\x94\x0e\xa6\x21\x9d\xd2\x5e\x71\x22\x0e\x7d\x2d\x64\ +\x23\x2c\x20\x8b\x48\x2a\x29\xa5\x7a\x63\x36\x1b\x38\x25\x4d\xcd\ +\x64\x5f\xe0\x2b\xf7\x47\x94\x6a\x4f\x0d\x81\x84\x3a\xc9\x29\xff\ +\x7f\x84\x57\x06\x9f\x90\xf9\xec\xbb\x37\x19\xae\xe5\x22\xd7\xb0\ +\x35\xc5\x70\x9a\xbd\xc0\x6b\x14\x4d\x4b\x24\x9a\x7c\x12\x6f\x7e\ +\x46\xd5\xc2\xd9\xba\xc9\xe9\x4a\x7d\x5f\xd3\x9c\x95\xaa\x95\x02\ +\xd9\x16\x7e\xbf\x4e\xea\x93\x91\xc7\xc3\x16\xb6\xb0\x9a\x5f\x05\ +\x4c\xd2\x61\x3c\x8e\x61\x65\x5d\x57\xda\x29\x2a\xc5\xcf\xe2\x9a\ +\xed\x5e\xed\x5a\x9c\x85\xed\x3b\xcc\xa8\x06\x4b\x7b\x62\x24\x89\ +\xde\xa5\x49\xa7\x4d\xec\x1d\xae\x1f\x6d\x32\x97\xa5\x64\x32\x7f\ +\xac\xc2\x8b\x3b\x23\xf8\x61\x1e\x87\xe7\xa5\xc7\xc1\xe3\x27\x36\ +\x3f\x7d\x6e\x21\x81\x58\x1c\x65\xaa\xdc\xa5\x10\xb6\x00\x35\x9d\ +\x66\xb3\x78\x02\x01\x9d\x89\x1a\xa0\x01\x98\xd2\x01\xe5\xa3\x15\ +\x5f\x9f\x05\xaf\x7b\x28\x8d\x35\xdd\x58\x1d\xfc\xcd\x5e\x09\xe0\ +\xd3\x28\x9a\x7d\xc1\x95\xfb\xe8\xab\x71\x22\x3d\x9e\xe1\xfe\xcf\ +\x1d\xfc\x34\x09\xcb\xcd\xe8\x61\xdf\xcc\xd6\x11\xcf\x58\x93\x9e\ +\xf7\xb4\xb2\xd9\xcd\x63\xaf\x21\xa9\x0d\xf4\x9d\x00\xf5\xba\x9c\ +\x69\x86\x0f\xa6\xed\x9c\x6e\x86\xe3\xef\xf8\xca\xef\x8c\x57\xa6\ +\x2f\xc6\x26\x77\x79\x45\xed\xc5\x61\xd4\x7c\x9d\xff\x6f\x22\x6e\ +\x27\x2e\xbd\x82\x8c\xe3\xfe\xb4\x61\x1b\x6c\x7e\x3c\x20\x7b\xc1\ +\x8c\x23\x18\xa6\xeb\x88\x33\x08\xa5\xfb\x5c\x19\xe6\x83\xcc\x8c\ +\x93\x6e\xf0\x7d\xf8\x58\xf8\xb5\xf2\x83\x9f\x13\x33\xa2\x85\x58\ +\xce\xc8\xfd\x8b\xdb\x45\xc1\x40\x6c\xfc\x2d\x8f\x78\xcc\xcb\x67\ +\x29\x3e\x47\xb8\x61\x18\xf6\x5a\x38\xb1\xf0\xae\x64\x80\x01\x4d\ +\xe6\x72\x12\x87\x54\xed\x64\xd8\xb5\xf3\x80\x45\x9b\xfa\xa4\xe1\ +\x09\x8a\x71\x37\x98\x72\x69\x7b\x2a\x20\x4b\x90\x53\x0e\x1d\x5d\ +\x8a\x9c\x98\x7d\x37\x8c\xe4\x3b\x1a\x32\xb2\x74\x69\xfc\x22\x5a\ +\xff\x96\xb4\x3c\x4d\xc4\xac\x20\xfd\x72\x51\x5d\x83\xc2\x96\x1e\ +\xf7\xfc\xdd\x54\x71\x2e\xe6\x6c\x50\xa7\xb3\x60\xf9\x8d\x38\x5e\ +\xde\x29\xf9\x13\xec\x30\x72\x53\xd9\x58\xc9\x26\xfa\x2c\xae\xa4\ +\x03\x84\xc1\x14\xd0\x2a\x0b\x41\x7b\x79\x92\x21\x3f\x85\xa6\x5b\ +\x81\xbb\x76\x4a\x5c\x0c\x0e\xc3\x02\x33\x78\x0a\x74\xa4\xe5\xa4\ +\x93\xc1\x09\x29\x9b\xe1\xc5\x67\x38\xda\x4c\x5b\xd5\x91\x7f\xa9\ +\x64\xab\x1e\xdd\xe7\x15\xc6\x1c\xbf\x64\x0d\xbb\x19\x97\x0a\x12\ +\xc0\x07\x10\xc2\x84\xd4\x14\x99\x2d\x4b\x43\x21\xcc\x6a\xd5\x1d\ +\x88\x62\x85\xa3\x76\xd1\x59\xd1\xbf\xc5\x75\xc6\x71\x85\x19\x4d\ +\x10\x66\x91\x26\xf3\x9c\x5a\x05\xed\x8e\x71\x2f\x92\x2d\x36\x8e\ +\xc3\xb9\x37\x11\x9c\x25\x42\x20\x22\x18\xd6\x8a\x7e\x6b\x0c\x00\ +\x01\x7b\x34\x1b\x1b\xb3\xa9\x00\x73\x07\xd9\x22\x61\xa2\xb0\x98\ +\xb0\x9b\xc4\xd5\x6a\xcc\x34\xc9\xa0\x4b\xd0\xb2\x08\x38\xc5\xf8\ +\x9c\x71\xfa\x46\x80\x6b\x30\x24\xdf\x61\x70\x6f\xdc\x1a\x04\x46\ +\x65\xad\xb2\x7d\x63\x70\x6f\x9c\x7e\x0d\xdf\xe2\xe0\x9b\x8c\xc1\ +\xd9\x41\x89\x0e\x9f\x45\xfa\xd2\x7d\xee\x0c\xe7\xfd\xf8\x1d\xe3\ +\xca\x61\x15\x63\x0e\x9d\x2a\xe0\x3b\x4f\x59\x26\x70\x46\x2f\x37\ +\x3c\x29\x34\xab\x62\x6c\x4f\x76\x6c\x4a\xf2\xe0\x26\x55\x71\x0e\ +\xd6\xe3\x47\x85\x02\x95\x8c\x11\x47\x9a\x66\x89\x0c\x39\x7b\x84\ +\x3e\x3b\x84\x1e\x4a\x5d\x9f\xad\xa5\x7f\x8d\x7b\x78\x03\x88\x1a\ +\x66\x51\xb0\x9d\x59\x46\x84\xd7\xc3\x36\xbe\xf7\x90\xc9\x7a\x9a\ +\xa3\x97\x91\x71\x81\xa3\xbe\xcc\x16\xa7\x7c\x0f\x43\xde\x08\x68\ +\x4a\x5c\xb6\x94\xd3\x00\xb9\xb5\xde\x63\x2e\xb5\x79\x1c\x06\x7c\ +\xa2\x8f\x3f\x40\xd7\x46\x1f\x40\xa8\x72\x00\x55\x8e\x33\x05\xa5\ +\x1c\x25\x98\xdf\x40\xa8\x08\xd9\xf8\xa0\xc4\xec\x41\xcf\x5a\xdc\ +\xd1\x52\x5e\x9d\x65\x0c\x22\x26\x4f\x75\xb8\x10\x72\x64\x9a\x05\ +\xc0\x9b\x54\x76\x92\xad\xa5\x4b\xc3\x70\x78\x1d\x69\xae\x52\x50\ +\xe1\x5f\x36\x44\xfb\x2c\x85\xbf\x92\x5b\x28\x3b\x12\x79\x73\x42\ +\x13\xe2\x5f\xe5\x64\xbb\xa6\x81\x38\x6d\xda\x44\x68\x63\x5c\xcb\ +\xe6\xde\x7e\xc5\x79\xba\x42\x68\x53\xf0\x2a\x94\xa5\xbd\x7c\x1e\ +\x98\x27\xc3\xd9\xe4\x4b\xb8\x1a\x0e\x74\x99\xb3\x9e\x38\xe0\x99\ +\xf3\x9d\x0a\x0a\x25\x07\xdf\x8f\xbf\x62\x9c\x8b\x9b\xac\xe6\xf6\ +\x67\x2c\x23\x87\x67\x40\xb8\xfd\xd5\x82\x07\x06\xc7\xed\x62\x60\ +\x65\xdc\x00\xa4\xe9\x84\x95\xa7\x2b\x8d\x61\xb3\x52\x76\x50\x97\ +\x7f\xd6\xa7\x1a\x04\x95\x1f\xd9\x9c\x5d\xa2\xfe\x1f\x64\xc3\xfb\ +\xe9\xa8\xe8\x67\x03\x4a\x4c\x1c\x15\xda\xcc\x4a\xe7\x30\x84\x11\ +\x15\x4b\xe7\x34\xa4\x03\x3a\xe5\xa4\xf3\x62\x26\x1d\x41\xd4\x64\ +\xb4\x38\x47\x33\x1f\xfa\x64\xdf\xcd\x68\x9e\x38\xf6\x2d\xfd\x92\ +\x2f\x60\x1d\xea\x61\x6c\x2b\xcb\x92\xb5\xe4\xb4\x6f\xe9\x77\x8a\ +\x07\x53\x0d\x38\x23\x67\x99\xa7\x53\x16\xe3\xc3\x23\x2e\xe0\xb7\ +\xb0\xcc\xcb\x66\x2b\x4f\x3b\x3b\xc4\xd3\xc2\x8c\x55\x00\x2f\x18\ +\xa8\x31\x0a\xe5\xe6\x38\xca\xd1\x89\x80\x9f\x4c\x80\x48\xf0\x35\ +\x11\x02\xcc\x04\xce\x44\x1c\xf8\x72\xe2\x16\xe0\xdf\x3e\x0f\x6c\ +\xec\x51\x06\xe5\x90\xef\xe6\x9d\x3d\x9a\xad\xc4\xbe\xa0\xaf\x54\ +\xcd\xc7\x5c\x0b\x75\x80\xcb\x9a\xb2\x5b\x90\x7a\x62\x32\xf3\x52\ +\xbd\xbf\x87\x73\x56\xa1\x06\xf0\x98\x03\x0a\xb0\x0e\x29\xc2\x3a\ +\x2a\x9a\x3c\x1d\x20\xd5\xd7\x90\xb5\x64\x00\x9e\xec\x88\x31\x76\ +\x58\x68\x57\x40\xa2\x45\x92\x88\x99\xd4\xc2\xe0\x79\x16\xe7\xa1\ +\x64\x59\xe4\xab\x72\x79\xf8\xd9\xe6\x46\x53\x07\x37\x9b\xe8\x5c\ +\xae\xae\x5a\x4a\x24\x7e\x86\xe2\x2c\xa0\x3b\x00\x4c\xc9\x29\xc4\ +\xe7\xf2\x74\xf1\xbf\xfb\x65\x1a\x4e\xa1\xee\x66\xa0\x15\x0c\x8f\ +\x70\xd9\x4b\x37\x32\x10\xf6\x93\x34\x9e\x02\x34\x9c\x78\xde\x0a\ +\x0f\x5d\x59\x2c\x69\xa6\xe0\xf9\x79\x3b\xc7\xac\x2b\x17\xf5\xcc\ +\x20\x76\x1f\xc9\x11\x3c\x0c\xa2\x7b\x86\x28\x36\x44\x22\x42\x3e\ +\x0e\x5b\x72\x75\xfb\x9c\x56\xc8\x78\x56\xce\x0e\x4a\x7a\xe8\x8c\ +\x47\x17\xe9\xdf\xa4\x63\xb8\x64\xcc\x93\x60\x0e\xa9\x0c\xfe\x2d\ +\x82\xc1\x47\x52\x58\x44\x30\x98\x42\x8b\x61\x60\x85\xb3\x6c\xc5\ +\x30\x71\xdc\x5a\x1e\x26\xa7\xa0\x3a\x2f\xe2\x22\x7b\x1b\x01\x52\ +\xd1\xb6\x74\xc8\x30\xd1\x43\xc2\x01\xd1\x23\x16\x62\x14\xd3\xa7\ +\x97\xe6\xcf\xd1\x67\x1c\x54\x06\xf5\x58\x1e\x85\x95\x39\x17\xa2\ +\x51\xbc\x0f\x9f\xe2\x21\x21\x55\x0c\xe1\x79\x05\x07\xc9\x33\xcd\ +\xcc\x95\x00\x03\x22\xf0\x10\x15\x31\x48\x80\x59\x37\x97\x83\xdf\ +\x91\x5c\xf1\xc9\x72\xc1\x2d\x39\x2a\xba\xc7\x1d\x76\xa7\x15\x55\ +\x6c\x6f\x06\x8f\xed\xc9\x40\xbb\xf2\xf4\xf1\xc7\x2a\xbc\xf8\xcd\ +\x88\xa7\x4f\x71\xc3\xad\x5c\xaa\x0a\x19\x35\x06\xf4\xe1\x23\xf6\ +\xc3\x69\x34\x16\xe9\x84\xf7\xc4\xf3\x8b\x13\x39\x53\x4a\xb8\x03\ +\xcc\xc9\xa3\x78\x4c\x52\x6f\xe9\xba\x8a\xc9\x35\xb8\xc6\xad\x34\ +\x42\xdf\xd9\x4f\x3f\x16\x4f\x2b\x48\x43\xdf\xe0\x1a\xb8\x5c\x90\ +\x72\x5b\xe1\x80\x71\x4f\x9f\x14\xb1\x84\xc3\x36\xae\x99\x93\x40\ +\xff\xad\xd2\x33\xa0\xe4\x1c\x0b\xfa\x04\x59\x08\xd5\x03\xd7\x42\ +\xb5\x8e\x55\x2a\x2d\x6a\x5f\x35\xff\x90\xa7\x67\x06\x2d\xc4\x6c\ +\x3a\x31\x8d\xc2\x65\xfc\x64\xed\x38\x36\xa0\x22\xc9\xd0\xb3\xd0\ +\x4a\x63\x8c\xa1\x83\x6b\x18\x1d\x8a\xce\x7a\x73\x25\xaa\x9d\xd0\ +\x21\x0e\x3c\xb9\xec\xf6\xf4\xf4\xbb\x76\xce\x1b\x81\xcf\xdc\xc8\ +\xa0\x53\xa2\x89\x13\x01\x0e\xcd\x8d\xac\x75\xc4\xe3\x6e\x3e\x0b\ +\xff\xaf\xd4\x15\x11\x1d\x11\x74\x37\x8a\x67\x6c\x94\xa7\x53\x06\ +\x48\x2f\x5b\xc8\xc9\x72\xea\x83\x60\x6a\xc7\x2f\x00\x39\x58\x83\ +\x5b\x4e\xb6\x36\xd9\x25\xfa\x6b\x60\xe5\xbc\xb4\x74\x8a\x24\x00\ +\x69\x2e\x26\x04\x30\x25\xcc\x27\x22\xb8\x59\x34\x28\xa0\xb9\x37\ +\x37\x6e\x4f\x80\x44\x01\x9b\x31\xe1\xb0\x39\xf4\x20\xf1\x81\x90\ +\xa3\xd0\x13\x50\xe2\xab\xf1\x63\x38\x5d\x27\xe7\x4c\x63\xa1\x3d\ +\x8c\xb3\xe9\xcc\xd1\x54\xf6\xd1\x52\x01\x28\xb3\x79\x25\x07\xea\ +\x04\x45\xd2\x1e\xe6\x8a\x13\xdd\x2f\x6b\xb7\x33\xb1\x38\xe1\x52\ +\x52\x48\x5c\x94\x59\xa8\x64\xcf\xba\x5e\x1f\x5e\x49\x38\xc0\x6c\ +\xd8\x77\xba\x97\xbb\x51\x07\xa3\x7b\x39\x0a\x6b\x38\x52\xa1\x77\ +\x95\x9d\xde\x1d\x80\x3c\x19\xb5\x8e\x7c\x5f\x43\xae\x8c\x1b\x72\ +\xe5\xfb\x1a\xf2\x98\xb8\x21\x8f\x49\x38\xe4\xe7\x30\x07\xd4\x97\ +\xe2\x96\xfa\x67\x02\x29\xa4\x99\x18\x76\xf1\x67\x5f\x13\xca\x8c\ +\xd8\x9f\x43\xc2\xb1\x39\x69\xe8\xc2\xe9\x70\xe0\x51\x22\x1d\x6d\ +\x17\x1e\x7a\x8b\x27\x9f\x78\xc8\x85\x50\x64\xe3\x93\x25\xfc\xeb\ +\x30\x79\x09\xfe\xaf\x8c\xe5\x13\xfb\x46\x9d\xf4\x6e\xe6\x08\x75\ +\xb3\xd6\x84\x57\xb6\xc6\x6d\x9a\x35\x4e\x63\x80\xc0\x5f\x81\x5c\ +\x0e\xef\x67\x72\x07\x53\xa3\x87\x1d\xcb\xcd\x17\x3d\x9f\x8a\xb4\ +\x92\xe7\x75\x27\x5c\xfc\xd5\x11\x1f\xaa\x53\x61\xe1\x26\xf0\x7e\ +\x08\x70\xea\x14\x62\x79\x22\xec\x9c\x14\xd0\x76\x5c\x8a\xae\x99\ +\x3c\xa2\x28\xa3\x9d\x20\xf6\xdd\x8b\xd2\xd8\x55\x2e\x3b\x26\xe7\ +\x96\x68\xa7\x65\x70\x12\x44\x14\xbc\xc2\xd2\x02\x18\x7e\x19\x6b\ +\x18\x18\xca\x6e\xc0\xc9\xb0\x33\xe2\x16\x0a\x2c\x11\x8c\xe6\x56\ +\x5b\x4b\xe2\xb0\x93\x10\x39\x33\xcd\x54\x4e\xe3\x38\x34\xb2\x7c\ +\xc6\xc4\x67\x21\x3a\xd6\xca\xc8\x58\x49\x0f\x41\x74\xac\x63\x22\ +\x63\x25\xa5\xfe\x01\x94\x8e\x3e\x61\x69\xcc\x45\xbe\x55\xb6\xc1\ +\xdc\x12\xe4\xcd\xcb\xf9\xf7\xef\xc3\x54\xf6\xbc\x5d\x2c\x22\xae\ +\x51\xcf\xc4\x44\xf7\x84\x00\x1d\x87\x8c\x8c\xd1\x9e\x2e\x69\x14\ +\x78\xa6\xd6\x2c\x1c\x2e\xbe\xa1\xe9\xcd\x54\x60\x50\x62\x00\xb5\ +\xcd\x49\x38\xff\x42\x4d\x94\x6e\xd2\x14\x03\x95\x7a\xa2\xe7\x5e\ +\xb7\xf6\x09\x45\x65\x1a\x02\x76\x16\xd7\x48\xe2\x5d\x7b\x2d\xba\ +\x9b\x2b\xe1\x88\x1d\x72\x17\xa7\x76\x1d\xce\x34\x5c\x6f\x58\x79\ +\x90\x70\x96\xa3\xc8\x06\x7e\x74\x85\xbf\x5f\x2f\xeb\x48\xe0\xb4\ +\x34\x66\xc6\xf0\x8e\x45\x8f\x6f\x62\x25\x40\x4f\x54\xa0\xe4\x38\ +\x0c\x93\xbd\x68\x38\xcb\xda\x99\xee\xc9\xa3\x08\x4c\x27\x4f\x30\ +\xf4\x11\xc6\xd0\x61\xa1\xaf\x32\x90\x5e\xe2\x64\x90\x36\x26\xdd\ +\x9f\x4f\x5a\xb4\xa9\x17\xaa\xe4\xbb\x69\x3d\x14\x90\x60\xfa\x25\ +\x64\x23\x4c\xf2\x22\x79\x8b\x0b\x0f\xe1\x54\x17\x81\x81\x12\xf7\ +\x85\x6c\x23\x03\x6a\x1b\xfb\xb7\x0d\x50\x07\x60\xde\x06\x93\xae\ +\x48\x31\x9a\x74\xb6\x59\x92\x58\x8a\x48\xcd\xbe\xb1\x49\xad\xfd\ +\x4e\xd6\x06\xb5\x7d\x5a\x94\x71\x0a\xd7\x39\x05\x77\xd0\x06\x36\ +\x38\x49\x49\x78\xce\xb9\x71\x68\x26\xdd\xbe\x65\x1c\xe1\x43\x04\ +\x20\xa3\x8e\x3b\x32\x5a\x42\x67\x67\xc9\xd9\x43\x03\x84\xa0\x70\ +\xcb\xcc\xd7\xa4\xab\x5e\x81\xc1\xeb\xa9\xcb\x7f\xe2\x70\xb2\x8f\ +\x00\x65\xba\xcc\xac\x8b\x33\x13\x87\xf3\x69\xb5\xb1\xb9\x49\xa6\ +\x9b\x2d\xa6\x2b\x39\xf9\x62\x8e\x52\x16\x26\x3a\x26\x5e\xe8\x00\ +\x37\xff\xd4\x39\x65\x25\x42\xcf\x71\x45\xde\x91\x54\x5d\x71\xa1\ +\x14\xd1\x80\xf1\x42\xd2\x49\xbb\x42\x04\x20\x62\x98\x62\xbb\xe3\ +\xa7\xdb\xd7\x98\x8e\xed\x73\xc2\x09\x97\x4f\x1d\x32\xad\x30\xe9\ +\x07\xc4\xa4\x46\xcc\x36\xe1\xb4\x6b\x90\x8a\x54\x85\x55\x46\xea\ +\x4b\x25\x22\x8a\xc7\x46\x50\x76\xd9\xfc\x24\x8b\xcf\x4a\x64\x7e\ +\x90\xcc\x9b\x0e\xac\x45\xd6\x3a\x07\xac\x7f\x2c\xd9\xf1\xc6\xad\ +\x40\x54\x67\x25\x00\xec\x04\xe0\xcd\xaf\xa2\x59\x92\x93\x60\x15\ +\x65\x9c\x37\x90\xae\xfc\xa9\xc0\x99\xab\x81\x53\xf4\x9d\xb4\x4b\ +\x7f\xb4\x72\xce\x98\x93\xd4\x90\x68\x53\xf9\x5e\x86\xc6\x54\xd7\ +\xef\x95\x12\xab\x4b\xe6\x20\x2b\xcd\x41\x92\xea\x49\xe6\x20\xc7\ +\x98\x83\x24\x55\x90\x7a\x34\x7d\x20\xc3\x0d\x84\x02\x3f\x48\x42\ +\xe1\x9f\x2a\xfc\x3d\x8b\x79\xa8\xdd\x02\x18\xbf\x54\x65\x97\xa1\ +\x82\x04\xf3\xef\xe0\xb9\xf0\xba\xe6\x1d\x16\x50\x87\x63\x68\x3b\ +\xcd\x9d\x4c\x4c\x57\x62\x0c\x26\x40\x2d\xc6\x43\x0e\x27\xa0\x95\ +\xc6\x87\x84\x6f\xe1\xea\x3d\x54\x39\xb6\xc0\xa2\x10\xc6\x28\x18\ +\x18\x34\xc5\x8d\x41\xeb\x04\xc9\x45\xe9\xfc\x18\x78\xb5\xaa\x44\ +\xa5\xe6\xf0\x39\x07\xa7\x41\xe4\x47\xa3\x2b\xcd\x41\xc2\x65\xde\ +\xbf\x78\x71\x5d\x59\xba\xed\x37\xe0\x6a\xf9\x27\xc3\x13\x56\x86\ +\x31\x83\xc4\xc7\x9f\x69\x6e\x59\x0c\x52\x30\x66\xa7\xc4\xf6\x08\ +\x02\x64\xe3\x79\x13\x24\x91\x27\x6f\xc2\x4f\x42\x4f\x97\x0e\x3c\ +\xc5\xeb\x4f\x76\x0a\x8e\x6f\xe7\x78\x10\x43\x4c\x99\x10\x9e\xce\ +\xa4\xf0\xc8\xf9\x66\x88\xf9\x82\xe9\xce\x14\x3e\x06\x32\x77\x0d\ +\x67\xca\xe1\x36\xe8\xde\x87\x19\x27\xe7\xbc\x61\x98\x88\x26\x3b\ +\x4d\x87\xe0\x3b\xb9\xa0\xb6\xd1\x40\x8c\xba\xc8\xa3\xd1\xb2\x16\ +\x1a\x9a\xb2\x82\xa2\x9d\xe6\xa5\x0c\x89\x34\xbe\x5e\xa9\xbd\x2a\ +\x77\x4d\x5e\xb3\xcb\x0b\x9c\x9c\x34\xc3\x56\xe5\x2e\x60\x16\x92\ +\x95\xb3\x27\x1c\x9f\xbb\x8e\x99\x05\x9a\x6c\xf6\xaa\x4e\x98\x9d\ +\x99\x38\x16\x1a\x39\x69\xf2\x32\x27\x5c\x11\x72\x64\xaa\x4a\x1a\ +\x8f\xad\x2a\xf1\x65\xe6\xb1\xc8\xe0\x29\xc1\x0e\x30\xa7\xaf\x8a\ +\x39\xab\x00\x81\xf0\x69\x30\x33\x4a\xba\xe6\x62\x9f\xa5\xb3\x66\ +\x91\xb1\xb9\x1a\xfd\x1c\x87\xb8\x29\x49\xf7\xdf\x09\x9a\xff\x43\ +\xc0\x2a\x0a\x95\x58\x09\x82\x59\x3c\x2e\x30\xf9\x2c\xfe\x3f\xea\ +\x2a\x34\xb5\xc4\xc9\x59\xe8\xc5\x6b\x1c\xdf\x41\xeb\x3f\x6d\x17\ +\x60\xaf\x41\x32\x65\x27\xb0\x02\x8a\xa6\x13\x79\x34\xcf\x0a\xb4\ +\x15\xb0\xc3\xa8\x44\xa7\xae\x46\x6a\xf2\x05\xfa\x97\xc7\x15\x99\ +\xf3\xf1\x04\x7a\xe6\xe1\x2b\x54\x99\xad\xd2\x28\xe8\xcf\x74\xc8\ +\x61\xc7\xb2\x33\x19\x66\xb3\x62\x80\xa0\x04\x6a\xa6\xed\x67\xf8\ +\xc1\x84\xc7\xd2\xa3\x16\x1f\x22\xe9\xa1\xd9\xc0\x13\x26\x3d\x1e\ +\x25\x14\x75\x1a\x7a\x02\x0d\xfd\x2b\xe5\x57\x19\xdc\x0e\x85\x34\ +\x6a\xed\xbe\xc9\xa3\x2d\x74\xe3\x03\x0d\x19\x0b\xd6\xb8\x19\x27\ +\x26\x73\xc6\x82\x2f\x40\x7b\x28\x07\xc9\x19\x6a\x14\xc0\x61\xd4\ +\xaa\xd2\xd2\x0f\x30\x79\x3a\xda\x2c\x0d\x14\xaa\x50\x0d\x3b\x85\ +\x74\x52\xed\x78\x17\x3a\x9f\x2a\x85\x8f\xba\x88\xca\xf1\x91\x67\ +\x9e\x23\xc6\xe6\x9a\x8d\x83\x5a\xad\x85\x1c\xd6\x47\xb8\x4b\xd2\ +\xa7\x6f\x14\x17\x49\x78\x0f\x5d\x9b\xb5\xd2\xd4\xa3\xe4\x64\xba\ +\x80\x7c\x46\x28\xe7\x18\xa7\x32\x81\x3a\x2c\x00\x83\xe3\xa3\x4e\ +\x01\x03\x62\xc9\x59\xc9\x2b\x7c\x19\x2c\xb1\x4b\xaf\xc2\x17\x75\ +\x95\x79\xc2\xca\xe1\xd5\xc2\xb2\x5c\x8e\xb1\xef\x2c\x22\x4a\x1d\ +\x6d\xbe\xa0\x5d\x32\xe6\x16\x27\xe1\xe8\x86\xb9\xb8\x49\x2e\xa7\ +\x9b\x12\x3f\xb2\x4e\xa8\xc4\x52\x64\x7c\x97\xf1\x49\x35\xbf\x72\ +\x72\x2a\xa6\xc3\x8e\xb3\x27\x7d\xdf\x2a\x2d\xb7\xcc\x4b\xf9\xf5\ +\xae\x12\x8e\x8e\xc8\xac\xef\x38\x69\x9b\x63\x92\x26\x3d\xc2\x21\ +\xda\x85\x21\x9f\x34\xfc\x3f\x0d\x24\xa2\x6a\x82\x19\xbb\xc4\x88\ +\x5a\xb7\xb5\xca\x19\xb7\x7d\xa7\x8b\xb9\xf7\xe8\x31\x2c\xd9\xbb\ +\x1d\x9a\x4f\x39\x0a\xc7\x97\xf7\xaa\x48\xc0\x4f\x57\x4c\xb9\x05\ +\x95\x69\x2c\x4c\x5f\xf1\x39\x8e\x81\xa4\x35\x2d\xf6\x40\x44\x8e\ +\xa1\xd2\xbc\xcf\xc4\xb0\xba\xe2\xc1\x09\xcf\x53\x0c\xc4\x2a\x98\ +\xc0\xb6\xd0\xe6\x1b\x26\xb8\xb7\x2f\x43\x7e\x5d\x08\x95\x67\x64\ +\x71\x96\x31\x1c\x21\xe0\x10\x35\xe5\x5a\x86\x91\xdc\xc8\x09\x7d\ +\x23\xb5\x4c\x10\x75\x32\x58\xb8\x02\x18\xe4\x18\x58\x03\x34\x40\ +\x81\x87\x44\x3d\x2a\xcf\xbd\x05\x9b\xc8\x0a\x54\xba\xad\x8d\xf0\ +\x77\x7f\xdc\x0d\x1c\xcb\x2b\xe4\x26\xd8\x2b\x65\x2c\x2e\xb3\x45\ +\xba\x52\xc2\xf3\xf5\x4d\xbe\xb9\x93\x9d\x2a\x5b\x6e\x65\xf2\xe4\ +\x44\x86\x1a\x9e\x19\x69\x6c\x31\x4b\xc9\x2a\x71\xa2\xb0\x23\xdb\ +\xaa\x44\x36\x43\xb3\xc5\x49\xc4\xcc\x4f\xe9\x0f\x23\x76\x50\x67\ +\xd5\x88\xda\x61\x07\xc3\x55\x05\x44\x0f\xd8\x58\x3e\x4a\x38\xe0\ +\xdf\xc8\xd6\x8b\xc9\x79\xd0\x4d\x53\xb2\xd2\x64\x29\xdf\xa6\x5a\ +\xa0\x07\x34\x18\x76\x5e\x20\xa2\x83\x8b\x1e\xc8\xd0\x13\xd8\x04\ +\x4f\xd1\x2d\x0e\x66\xa3\xa8\xc4\xa3\x53\xd7\x66\xb9\x43\x3f\xd0\ +\x98\xb1\xa6\x98\x6b\x62\x1b\x43\x1c\x12\x5b\xce\x1e\xee\xc5\x07\ +\xfb\xe4\xf0\x8c\x34\x51\x92\xea\x5d\x5d\x1a\x29\x89\x8d\x2b\xca\ +\x44\xb7\xa9\x09\x2c\x3e\xdb\x4f\xe9\xc1\x3a\x09\xd9\x3c\x07\x30\ +\xc3\xc7\x56\x11\xe7\x50\xa6\x1f\x61\x05\xc8\x69\x0e\x95\xd0\xd7\ +\xba\xb8\x4e\x5a\xe9\xd4\x5b\x06\xda\xcd\xd1\x74\x0e\xc5\xb4\xba\ +\x34\xf7\x6e\x8a\x95\xe6\x8d\x95\x74\x10\x51\x2e\xaa\x56\xa3\xe2\ +\xc7\x5e\xdc\x76\x49\xb5\x5e\xee\xcd\x6e\xa7\x58\x82\xe3\xef\x7b\ +\x41\x20\x4e\x78\x97\xe5\x49\x36\x20\x72\x14\x0d\xa6\x02\x5a\x96\ +\x4f\x0d\x63\xab\xe0\x2d\x9d\xae\xa1\x70\xf9\x34\x98\x7e\x98\xe5\ +\xc7\x2b\xa4\x3a\x8d\x9b\x59\x2a\xae\xd4\xcb\x84\xca\xab\x57\x92\ +\x5b\xa8\x3c\xeb\x06\xc2\x89\x71\x28\x43\x1d\x52\x23\x66\x9e\x65\ +\x02\xd4\xac\xd5\x8f\x33\xc9\x98\x90\x9e\x1b\xdf\x87\xdc\xf3\x78\ +\xf4\x51\xf7\xc8\x86\x23\x94\xea\x19\x81\x16\x8f\x88\xc0\x9f\xcd\ +\x34\x2b\xc9\x48\x75\x67\x1f\x3b\x19\x21\x5d\x9e\x2b\x1e\x14\xa9\ +\x2f\x69\x0c\x38\x3c\x9a\xb0\x30\x4a\xd2\x29\x4b\x11\x5e\x90\x33\ +\xa5\x51\x9a\x29\xab\xd0\x74\x8b\x7f\x34\x0e\xf1\x2a\xf6\x87\xfe\ +\x63\xc4\xff\x88\x53\x8a\xd3\xf3\xd1\x13\x19\xb8\x67\x81\x4e\xe2\ +\x16\x82\x92\x03\x4a\x0d\x4f\x98\xa2\x5f\xd2\x1f\x26\x60\x1f\xc7\ +\x1c\x4a\xb3\x28\x01\xb7\x0d\x58\x19\x2f\x5d\x16\xe9\x60\x09\x36\ +\xad\xf6\x7d\x33\x21\x93\x6f\x87\x15\x62\x45\xbf\x82\x1b\xeb\x3e\ +\x13\x37\x96\x5f\x2b\x43\x2c\x89\xb2\xe1\x48\xba\x0f\x4b\x05\x97\ +\x97\x98\x84\x67\x88\x64\x01\xcb\x0d\xcb\xc6\x6d\x98\x2a\x10\x52\ +\x9a\x39\x70\x7c\x9e\x7d\x05\x3f\x71\xb7\x8d\xa6\x66\x74\xb1\xbd\ +\x09\xbd\x21\x73\x83\x13\xf2\x94\x27\xfe\x06\x02\x22\x90\x1a\x45\ +\x41\x1e\x1a\x16\xa1\xf4\xa5\x78\xd0\xb3\x49\xe3\x0b\xaf\x0a\xe4\ +\x6d\x24\x73\x9f\x08\x8f\x9e\x4b\xf4\x10\xdf\x30\xb7\x1a\x19\x57\ +\x12\x87\xc6\xe3\x47\x2c\xc3\x9d\x06\xba\xa2\x37\x1a\x87\x69\xa1\ +\x67\x30\xc4\x15\x3c\x50\xd3\xd3\xe9\x32\xe0\x6e\x84\xe6\x5c\x96\ +\xcc\x52\xad\xbc\x47\x53\x92\x46\x6d\x46\xfa\x6e\x21\xe3\xa6\x6d\ +\x7a\xac\x0a\xe5\xfc\x30\x6d\x7c\x91\xb5\x9c\xcc\x48\x62\xe6\x75\ +\xf4\xfb\x54\xda\x93\x2a\xd6\x62\x17\x94\x70\xd6\x29\x95\xa9\xd7\ +\xbf\xe0\xfe\x49\x3a\xf6\x2e\x7c\x46\xb1\x21\x4f\xb3\xc9\x45\x7e\ +\x62\x65\x7d\x32\x6c\x38\x98\x59\x12\x6c\x85\x2f\x70\xb8\xd8\x2a\ +\xfc\x84\xeb\x60\xbd\xd8\x46\x35\x1b\x6c\x22\x6e\x47\xe3\xf4\xf2\ +\x71\xaf\x70\x48\x89\x1f\x8b\x6e\xeb\xb4\xc0\xc9\x96\x73\x34\xf5\ +\x36\xed\x30\xb5\x2b\xab\xbd\x45\x15\xd4\x80\xe6\x98\xc0\x9f\x02\ +\x4f\xf0\xb9\x5e\x1f\x87\xe1\x03\x26\xb5\xcb\xe6\xbe\x8f\x2d\x36\ +\x55\x6e\xa1\x52\xaa\x50\x5d\xc0\x65\x04\x1b\xc9\x6c\x35\xc2\x92\ +\x96\x85\x47\xd4\xf4\x6f\x89\xa3\xea\xf0\x04\x22\x93\x89\xf9\x44\ +\xa4\x74\xab\x70\xbf\x1d\x62\x66\x59\x99\x68\x19\x4d\x55\x55\x75\ +\x93\x51\x28\x14\x13\x28\x69\x19\x13\xe5\xb8\x4d\x44\x73\x89\x6a\ +\xb7\x58\xca\xc0\x24\x8e\xcd\x1b\x06\xa2\xfb\x8a\xef\xf4\x84\x54\ +\x26\x7c\xa7\x90\x71\x7c\xc6\x1d\x8d\xac\x55\x59\x64\x99\xf6\x7c\ +\xea\x2b\xb3\xa6\x11\xc0\xac\x1a\x78\x9f\xfc\x50\x59\x4a\x61\xb3\ +\x59\x75\xda\x09\xd7\xe8\x57\xea\xde\x13\x69\x0b\xc5\x4f\xdd\x14\ +\xae\x1f\x3c\xdf\x6c\x15\x8c\x13\x44\xf9\xb4\xe2\x0c\x7a\x86\x63\ +\xd8\xa4\x0e\x13\xa4\x2f\x15\x76\x51\x56\x2b\x42\xdc\x22\x77\x56\ +\xe4\xd9\xaa\x13\xfb\x89\xb8\xcd\xc6\x9c\x26\x5d\x29\xe6\x89\x81\ +\xb2\xa9\x95\x64\xc2\xd4\x2b\x22\xbc\x53\xdd\x16\x8c\x05\x0c\x5b\ +\x7b\x7f\x58\xd9\x8d\x9a\xd5\x5d\x04\x2a\x40\xc3\x9b\xe6\xda\x26\ +\x4d\x0c\x5b\x45\xd6\x46\x12\xbe\xcc\x14\x2f\xc1\x20\xf5\x74\x2e\ +\xe5\x65\xb0\xc8\x12\xb9\xe8\xb6\xb5\xa8\x7f\x59\x4b\xa6\xe3\x23\ +\x27\x0b\x63\x20\xd0\xf3\xed\x36\x02\x7a\x7b\x55\xb4\x81\xcf\xb1\ +\xb1\xaf\x97\xe5\xc7\x25\x9c\x65\x5d\xcc\x2c\x39\xd4\x83\x5d\x8d\ +\xc4\xe2\x53\x5d\x23\x1c\x41\x42\x63\x71\x68\x98\xd7\x78\xd8\x2b\ +\x53\x15\x93\xf6\xff\xe4\x2a\x49\x52\xe8\xac\x58\xe8\x6c\x32\x41\ +\xa8\x53\xae\xa4\xcd\x28\x70\x9c\xb3\x81\x1a\x12\x27\x9e\x74\xc6\ +\x86\xb3\x4d\x2b\x20\x94\x9d\xc4\xe7\x99\x4e\x6c\xfa\xa8\x98\x55\ +\x4c\x27\x13\xe4\x00\x3e\xe7\xfb\xc8\xfe\xe8\x88\x80\xb0\x2c\xe4\ +\xc5\x50\xf9\xeb\xad\x6c\xba\x65\x2c\x40\x99\x38\xeb\x22\x49\xfc\ +\x5d\x85\x8e\xf5\x8e\x1f\x73\xd6\x16\x30\x49\x3a\xb7\x97\x11\xf7\ +\x85\x5a\x89\x06\xc5\x2d\x2d\xe5\xa1\xb1\x3f\x4f\x4b\x5c\x53\xf2\ +\xa6\x95\x16\x41\xc8\xf2\xf4\xc4\x19\x4a\x94\x50\xd8\x91\xf7\xb9\ +\x9e\xd2\x19\x0a\xe0\xac\x05\x2e\xbb\x51\xcb\xdc\xdc\x77\x9d\x03\ +\xea\x44\xe7\xda\xc1\x8d\xd2\xc8\x4a\x9a\xcd\xbc\x5c\xb5\x61\x22\ +\xa2\x5a\x52\x38\xbc\x8b\x44\x44\x58\x99\x4c\x35\x8b\x5f\x66\xac\ +\xa7\xb9\x78\x4c\x6a\x52\x87\x5a\xd2\x05\xbe\x0d\xea\x55\x40\xac\ +\x90\x7e\x11\x3f\x6f\x58\x5f\x10\xa2\x40\x28\x83\x42\x63\xc8\xcb\ +\x37\xf4\x0c\x4a\x9b\x3b\xe5\x45\x3a\x92\x88\xf1\xa9\xcc\x62\x11\ +\x19\x14\x02\xa7\xa4\x71\x5c\x86\x70\xa5\x6f\x08\x51\xb7\x8b\xb0\ +\xf4\x13\xe5\x65\xb2\x13\xae\x47\x09\xa7\x53\x29\xee\x18\xea\x84\ +\x38\x61\xa5\x43\x20\xb1\x40\x52\x81\xe6\x38\xc8\xe3\x6e\xa3\x34\ +\x18\x47\x2b\xc8\xf3\x76\x61\xc2\x0a\xce\x2c\xdb\x54\xd3\x10\x55\ +\x11\x79\x31\x4c\x52\x61\xc3\xdc\xf7\xe1\x7a\x28\x56\xb7\xae\x37\ +\x86\xcc\x83\x00\xe0\x25\xb3\x2a\x0f\x6e\xbd\xbd\xc7\x62\xa5\x10\ +\xd6\xa0\x2a\xcb\x4a\x30\x6b\x37\x1c\x59\xd3\xc6\x92\xa3\xc7\x59\ +\x59\x2a\x87\x00\x66\x74\xf3\xe5\xfc\xde\x99\x3d\x20\x59\xa7\x35\ +\x2d\x99\xac\x86\xfd\xc8\x0a\xa0\xf0\x9c\x67\x5a\x45\xe3\x32\xad\ +\x90\x66\xcf\x4d\xd3\xa7\xdc\x02\x80\x32\x1d\x0a\xd4\x6a\x55\xea\ +\xbe\xc1\x4b\x9c\x2d\xd5\xa9\x8f\x80\x1c\x43\x1d\x09\xaa\x6f\x15\ +\xb9\xaf\x40\xf1\x8c\x36\x3a\xba\xd5\x99\xb5\x83\x92\x13\x94\x12\ +\xb2\x8b\xaa\x16\x4c\x4c\xf5\x79\xde\x8b\xd2\xd9\xba\x38\x42\x29\ +\x97\x77\x35\x51\xae\x35\x7b\x89\xe8\x99\xca\x3f\xa8\x5c\xa1\xc2\ +\xc3\x97\xe6\x2a\x4e\x9c\xd1\x22\x8e\xf5\x54\x7e\x78\xa6\xdb\x52\ +\x41\x71\x16\x17\x7a\x2c\x12\xa7\x5c\x72\x26\x3c\x4b\x65\x1b\x1c\ +\x93\xf1\x54\xaa\xb9\x53\xc7\xf9\xe3\x1b\xb0\x2e\x32\x37\xd1\xc5\ +\xe3\xc2\xd4\xc1\xaa\xa9\x93\x5d\xdc\x2a\x28\x52\xc5\x84\xba\xc3\ +\x44\x4d\x1c\x6a\x96\xa8\xa5\xb2\xc4\xd2\x88\x79\x89\x4d\x6f\x0c\ +\x1f\xcd\xb0\x56\x51\xc7\xfd\x66\x49\x0f\x7f\xb2\xe4\x57\x53\xdb\ +\x9b\x49\xd5\xbc\xbd\x4a\x7e\xed\x97\xc9\xaf\x7a\x9e\xc5\xe4\x29\ +\xa1\xa2\xdf\x0d\x6b\xb6\xa8\x67\xd3\xcc\xdb\xe8\xbb\x23\x6e\x01\ +\xb3\x5c\x68\xbe\x39\xd5\x4d\xa6\x9b\x23\x3a\x0f\x4c\x04\x9b\x8c\ +\x4b\x81\xea\x73\xd3\xa1\x97\xac\xd7\x0e\x46\xeb\x66\x7b\x1c\xce\ +\x05\xcc\xd1\xd7\xbb\x3e\xa9\x18\x5d\x85\x2d\xb8\x4c\x73\x56\xf4\ +\xf9\x8d\x1a\xd3\x42\x71\x37\xcc\x56\xa5\x84\x6d\x46\x03\x53\x33\ +\x4a\xd1\xb0\x9c\xce\x4a\xdb\xb0\xa1\x2c\x95\x4e\x54\xb7\xd6\xba\ +\xc1\x6d\x9e\x46\xe2\x67\x32\x72\x31\xab\xd0\x66\x62\x42\xc8\xde\ +\x90\x0b\x4d\x51\xa0\x3c\x45\xd4\x74\x29\x33\x7e\x3a\x04\xa4\x57\ +\x5b\xeb\x22\x3a\xe0\x6f\x9a\xea\xee\xf2\x41\x6a\xed\x8b\x52\xe7\ +\x18\xc2\x12\x41\x96\x80\xda\x75\xc9\xd7\xb2\xa1\x42\xbf\xa4\x68\ +\x93\x1f\xbd\xf9\x96\x9e\x89\x12\xdf\xb2\x6c\x01\xef\x82\x64\x70\ +\x05\x83\xe3\x24\xce\xae\x9b\xba\x91\x4d\x65\xe7\x9b\x13\x23\x1f\ +\xf7\xc3\x36\x37\x3c\xb5\x2e\xd4\x62\x26\x51\x52\xad\x59\x76\x28\ +\x7a\x4a\x89\x92\x2e\x5d\x5b\x61\xbe\xbe\xf8\x24\x99\xb9\x08\xc6\ +\x56\x9e\x6f\x8c\x4d\x9a\x2c\xda\x16\x18\x74\xaa\xc4\x47\x67\x30\ +\xb6\x2a\xaf\x61\x70\x5a\x15\x79\xe6\x30\x2b\xc3\xc3\x24\x4f\xac\ +\xd5\x87\x39\x26\x3c\x4c\xd2\xd4\xda\xd9\xa1\xaa\x95\xf0\xee\xa5\ +\x70\xcb\xa6\x53\x87\x30\x5b\x0b\xe7\xc7\x29\x8b\x2d\x38\x62\x9e\ +\x29\x4d\x09\xc7\x9c\xa3\x65\x3e\xf6\x11\xad\xa4\x53\xd5\x5c\x0d\ +\xf2\x82\xcd\xc4\x6a\x51\x86\x88\x2e\x50\x05\x1e\x99\x55\xaa\x49\ +\xdc\x0c\x0c\x13\x3e\x6d\xae\x9f\x70\x8e\xb3\x23\x96\x7d\x34\x27\ +\x50\x65\x04\xaa\xd8\x35\x63\x69\xac\x15\x1a\x23\x6d\xd3\xed\xe5\ +\x44\x92\x7b\xcb\xd2\xb1\x2d\xca\x71\x94\x0a\x72\x38\x66\xf7\x52\ +\xb5\x54\xa4\xe4\x51\xcd\x74\xdc\xa7\x35\xf3\xe8\x9b\x62\xf1\x7c\ +\x96\x15\xc2\x6a\x76\x92\xaa\x0d\x5d\xbc\x95\x16\xe3\xab\x4c\xb6\ +\x99\x9d\xdb\x18\x80\xd4\xf1\xab\x6d\xd5\x90\x1d\xec\x16\xfd\xb4\ +\x12\xb9\x87\x7a\x89\xe9\xd3\x63\x41\x73\x95\x96\x99\x21\x9e\xc1\ +\xa0\xe2\xdb\x15\x9b\x4e\x94\x03\x87\x64\x07\x24\x9e\xe5\x00\xc4\ +\xe3\x66\x5d\xe0\x98\xbb\x9d\xa4\x16\xeb\x11\xd3\x00\xad\x83\xd8\ +\xa1\x9a\xf0\x59\x14\x04\x9b\xd5\x85\x4f\x77\xe6\x9b\x40\x04\x47\ +\x69\x69\x1a\x65\x7a\xc4\xac\x09\x62\xf6\x6c\x19\x10\xe5\x72\x21\ +\x1b\x84\x9e\xce\x00\xd5\x65\xa5\xf2\x1c\x15\xba\x4a\x02\x44\x2b\ +\x12\x7b\x87\x50\xcb\x0d\x97\x03\xb2\x7a\x22\x38\x52\x41\xce\x46\ +\x02\xcc\xec\xc9\xb2\xc7\x78\x86\x9a\x14\xb7\x49\xe5\xeb\x1e\x44\ +\x0b\xdb\x04\x51\xf0\x53\xa9\x10\x8a\xe5\x0d\xa9\xdb\x9b\xe2\x3a\ +\x01\xd3\x90\x37\xeb\x6a\x35\x45\xe7\x74\xb9\xd4\xe3\xe9\x52\x33\ +\xe1\xe2\x21\x58\x0b\xcd\x28\xc2\xf3\xc6\x9a\x11\xe2\x71\x83\xd5\ +\x09\x57\xf2\xb4\xea\x8b\x2e\xc4\x65\x9a\xe1\x49\xc5\xbb\x02\x6d\ +\x37\xd2\xc8\x7d\x95\x0f\x84\x39\xf5\x59\x93\x19\x3d\x4f\x5d\xf7\ +\x8a\x89\x5a\x6a\x91\xc4\x4f\xf9\x0d\x35\xab\x0e\x87\x7f\xc7\xc3\ +\xbf\xe5\x70\xf0\x97\xc3\x7f\x87\x69\xba\xf1\x7a\xba\x6c\x65\x01\ +\x67\x9c\xb4\x0b\x76\x0f\xdd\x46\x56\x72\xc1\xf4\x73\xcf\xcf\xb8\ +\x05\xec\x4b\xe1\x15\x1d\xdf\x66\xe9\xbf\xa8\x51\x3b\x7b\xba\xad\ +\xc3\xad\xe3\xad\xe5\xdd\xcb\x97\x1f\x96\x54\xb7\xbe\x07\xd1\xc0\ +\xd2\xeb\x45\xaa\x9f\xda\xd5\x82\x74\x4e\xa9\x0e\x00\x8a\x43\xe8\ +\xdd\x39\xf4\x54\x6f\xee\x90\x21\x34\xd6\xb7\x0b\x47\x63\x91\x87\ +\xe5\x06\xed\x14\x34\x2e\x27\x82\x5a\xbe\xb4\x25\x4d\xa1\xd2\x89\ +\x7f\x17\x4f\x95\x0c\x5b\x7b\x03\x45\x9b\x6f\x67\xdc\x72\x60\xb8\ +\x07\xb0\x1d\x07\x75\xf4\x50\x87\x24\xef\xdf\x3d\xe8\xe0\x4d\x03\ +\xcb\x59\xcb\x31\x8f\xf6\xbc\x2a\xd9\x34\x7c\xd8\xe9\x16\x30\x99\ +\xda\x49\x8a\xb7\x13\xa6\xc5\x51\x23\x58\x54\x65\x5c\x14\x7a\xd1\ +\x29\x61\xba\x1c\x6c\x03\x6e\x1e\x43\x7d\xb4\xce\xc0\xcc\xd5\x12\ +\x61\x59\xb3\xc7\x7d\x7c\x25\x42\x07\x02\xc5\x0a\x11\xa4\x3b\xcc\ +\xb1\xd3\xa3\x2c\x9d\x52\xf4\xf1\x98\x1a\xc2\xea\x15\x5c\x7e\x53\ +\x18\x5e\x22\xf1\x99\x67\x95\x0b\x91\xca\xc8\x19\x55\xa6\x18\x3b\ +\x7b\x7a\x92\x40\x85\xba\x14\x1c\x95\x85\xc2\x4c\x65\x96\x12\x5f\ +\x0f\xb1\x10\x6f\x4a\x1f\x4a\xae\x9f\xa7\x89\x7e\x91\x44\x34\xa8\ +\xce\x12\x4d\xe2\xeb\x58\x62\x2b\x03\xe4\xaa\x04\xbb\x4c\x0e\x8b\ +\xaa\x5a\x10\x87\x4a\xc5\x84\x0b\x86\xd7\x35\x8c\xf7\x69\xa8\x1c\ +\x08\x59\x89\x1b\xd9\x67\x11\x95\x24\x2a\x42\x98\x79\x0d\x52\xb5\ +\x93\x6a\x44\x61\x8e\xc7\xed\x27\x83\x66\x80\xb0\xc4\x1e\xea\x2b\ +\xe8\xd7\xee\x6c\xfa\x97\x21\x1e\x61\xa4\xbe\x9a\xd3\xd6\xb2\x2c\ +\x3d\x97\x26\x99\xba\xe9\x51\x2d\xd2\x0f\xdf\x97\x73\x3c\x7f\x8f\ +\x86\xf6\x7b\xac\x21\x9e\x9c\xaa\xf2\xfa\x40\x84\xf0\x24\x01\x5e\ +\x6e\xc0\x29\x95\x8e\x47\xaf\x90\xa1\x35\xcf\x28\x63\xf0\xc5\x2e\ +\x1e\xa2\x2c\x81\x96\x65\x8e\x43\x25\x10\x9d\x79\xc0\x77\x9c\xbe\ +\xde\x7e\x4b\xe8\x61\x56\x30\x11\x80\xa4\x42\xbe\x42\x67\xa1\x37\ +\x6a\xc0\xb3\x3e\xe3\xdc\xf6\x74\x8a\xe0\x3f\xc5\x8f\x8c\xcd\x8f\ +\x8c\x6e\xab\x57\x92\xc3\x71\xb6\xaf\xde\x55\x4b\x74\xb3\x88\x4f\ +\xfc\x8c\xf6\xc7\xec\xd6\x85\x92\xda\x84\x8c\x5e\x53\x8d\x6b\x55\ +\x4d\x0c\x5d\xd1\x81\x8b\xe3\xce\x2d\xc8\xae\x9e\xe8\x7c\xa3\x38\ +\x4c\x9a\x6f\xf1\x9b\x18\xae\x21\x5a\x70\xe8\xfd\x66\x45\x48\xbb\ +\x72\x9d\x76\x38\x59\x38\x41\xbc\x8e\x47\x35\x72\x52\xc8\xa9\xe2\ +\x58\x65\x27\xe8\xd0\x38\x06\x34\x5d\x44\x8f\xa8\x76\xa8\x7e\x36\ +\xf0\x73\x17\xd1\xed\x0c\x65\xd5\x98\xf0\xeb\x6f\xb3\xec\xf7\x80\ +\xbf\xdb\xc1\xa1\xa0\x42\xa6\x83\x88\x56\x61\x1d\xf8\x34\x85\xa8\ +\xc3\xa8\x36\xc9\x22\xc7\x78\x15\x4f\xae\x5d\x11\x2a\xfa\xc6\x1a\ +\x54\xf4\xc6\x90\x80\x98\xf0\x62\xb9\xf8\x62\x6e\xd5\x94\xcc\x5c\ +\xbb\xd9\xee\xc4\x5c\x93\x98\x4d\x9f\x8b\x72\xde\x55\xc8\x41\x33\ +\x9a\x0e\xff\x46\x1c\x89\xd1\xa2\x6d\xec\xaa\x20\x8f\x94\x4a\x6c\ +\x0c\x07\x4f\xbb\x53\x6b\x55\xf1\x93\xf6\x66\x50\x06\x3e\x61\x07\ +\x56\x07\x36\x10\xea\xa0\x85\x32\x62\x78\x8c\xfb\xaa\x07\x02\xd0\ +\x9f\xe1\xef\x1d\x70\x62\xdd\x6c\x47\x0a\x66\xec\xc8\x7b\x05\xaf\ +\x03\x7b\xa3\xc1\x90\x76\xde\xcd\x4d\x84\xc6\xeb\x5a\xe3\xe4\xc6\ +\x9c\x92\x9b\xb6\xbb\xf0\x75\xf6\x28\x4e\xcc\x9b\xb6\xe0\x24\x29\ +\xf3\xad\x9e\x55\x5e\x2e\xd3\x91\x58\x15\x9f\xec\x1c\x54\x66\x06\ +\x71\x1d\x2d\x22\x91\xd4\xc9\x18\x80\xdc\x9b\xa3\xe3\xf6\x46\xb5\ +\xbc\xc0\xcd\x31\x8e\xf9\x34\x03\xb2\x57\xc5\xea\x07\x2f\xc9\x93\ +\x2b\xec\x78\x66\x38\x88\x2c\x74\xb5\xd6\x68\x3b\x1f\x9d\x5d\x56\ +\x6a\xf9\x2a\xfc\x05\x6a\x1c\x53\x06\x29\xf6\x77\xb2\xbe\x7e\x58\ +\xd8\xa8\x97\xb1\xd2\xa3\x1e\xe6\x25\xd1\xb5\xb3\x94\x5c\x51\xac\ +\xc7\xb8\x21\x67\x8f\x68\x7d\x71\x39\x91\x94\xf1\xfd\x6e\x9a\xe8\ +\x98\x1c\x15\xec\xd0\x46\x0d\xd3\x30\x3a\x30\xf5\x58\xca\x87\x10\ +\x2a\xe0\x1b\x4b\xcb\x9e\x12\x73\xab\x4c\xa9\xa9\xcd\x64\x33\x83\ +\x8a\xfe\x75\xac\xc2\x78\xea\x6a\xbd\xbd\x37\xc9\xf5\x84\x1e\xfa\ +\xd4\x4b\x86\x7a\x55\x42\x65\xd0\xe1\x3a\xbb\x7e\x00\x58\xf6\x97\ +\x48\x71\x50\x6d\xb4\x98\x1a\x19\xee\xf6\xe8\x87\x66\x9d\x86\x49\ +\xaf\x91\xd7\x0b\x89\xc9\x2b\x64\xe5\xd3\x7c\xed\xca\xd4\x66\xa5\ +\xd6\x66\x43\xbe\x02\x8c\x7d\xe1\xc0\x2c\xd1\x2a\x5f\x0e\x4a\xfc\ +\x1b\xac\x64\x8a\xf8\x15\xb4\xda\x15\x5b\x4d\xed\xd1\xd2\x36\x5a\ +\x3b\x85\x05\xa7\xa8\x12\xf1\xf4\xff\x0a\x4e\x87\xee\x54\x42\x4e\ +\xf0\xcf\x31\x6a\x0f\x8b\x58\x09\x9d\x37\xdc\xc8\xd9\x94\xe5\x15\ +\x7b\x42\x90\x68\xd9\x93\x28\x86\x48\x6b\xa6\xea\xc6\x08\x47\x7d\ +\x89\x6f\xa8\x9e\x2e\xd2\xa5\x91\x86\xce\x91\x45\xe7\x7b\x96\x3c\ +\xa2\x36\xf8\x1c\x7d\x83\x3d\xdf\x75\x0a\xac\x3f\xbb\xc8\x55\x95\ +\x42\x4c\xe4\xf4\xb3\x92\x34\xba\x2b\x4a\xbe\x61\x16\x2b\xc5\x31\ +\xc8\x9a\x5c\xb7\x25\x1a\x7f\xc0\xa8\x39\x27\x5b\xea\xe2\x0a\x31\ +\x9f\x44\xcf\x53\x49\xea\x84\x7c\x0f\x71\x1f\x18\xab\x1a\x43\x89\ +\xed\xf1\x63\x19\x10\x5b\xf2\x5e\xf6\x5d\x16\x2d\x98\x17\x0d\x1c\ +\xab\x8a\x3d\xf3\xc8\x79\xa8\x4d\xf9\x78\x87\x0e\x33\xe9\x29\xc6\ +\xb7\xc8\x19\x44\x23\x54\xa6\x4d\x30\x23\x9a\x65\xc3\x16\xd0\xaa\ +\x65\xf6\x95\xb8\x85\x51\xa5\x46\x32\x88\x75\x48\xf5\xd0\x32\x63\ +\x7c\xf1\xa5\x5d\xcc\x3e\x0b\x67\x8e\x7c\x54\xdf\xad\x31\x3b\x57\ +\x76\xa8\x12\x9f\xa1\x0d\x16\xb2\xe5\x42\x5a\x2b\xb5\x2e\xe3\xb1\ +\x29\x79\x39\x50\xee\x0b\x69\xa7\x3b\xb5\x85\x3e\xcd\x83\x89\x60\ +\xc7\x67\x1d\xdf\x29\xa4\x31\x99\x24\xe7\x8d\xb3\x28\x34\x1b\x50\ +\xc4\x99\x4b\xd8\x6c\x09\xf3\x5c\xe9\xb5\x21\x49\xb7\x6a\x16\x19\ +\x8a\xa2\x53\x2e\xa0\x69\x48\x40\x94\xd8\x87\xbf\x2a\x99\xbd\xa9\ +\x82\x23\x43\xd3\x8a\x3d\x6d\xc0\x36\xd5\xa6\xfc\x89\x5e\xb3\x27\ +\x04\xb6\x9e\x45\x6e\x5e\x9e\xc7\xd2\x8d\x95\x62\x72\xf0\x10\x67\ +\x49\xd4\x23\x48\xfd\xf0\x98\x39\x23\x2f\x20\x1f\x06\x7b\x6f\x77\ +\x42\x10\x37\x69\x20\x0a\x1e\xd3\x19\x11\xac\x22\x4d\x56\xa4\x0c\ +\x8b\x9a\xd9\xa8\x15\xad\x5c\x53\x96\x04\x32\xc3\x5c\x74\x45\x9f\ +\x16\x13\x2f\x12\xbd\xd6\x93\x3a\x9b\xd6\x90\xd3\xa4\x4b\x6e\xfa\ +\x61\xdb\xb8\x06\x22\x07\x9d\x16\x84\xcd\xb9\xbd\x09\xfa\xcf\xd2\ +\x00\x8b\xba\x91\x1a\xe9\x24\x23\xbc\xf7\x7b\x82\xd1\x36\xe3\x68\ +\xc2\xb5\x13\x2e\xa8\x0a\xb7\x59\x30\xcd\xae\x0a\xed\xb9\xd4\x56\ +\x50\x58\x64\x91\x14\xda\x08\x58\x09\x25\xdb\x71\x25\x84\x71\x0b\ +\xb0\xf7\x78\xa1\x14\xee\x14\x35\x99\x40\x8a\x88\x20\xd5\xc3\x66\ +\x0b\xe7\xf3\x3a\xff\xc7\x6a\x2e\x4d\x7a\x24\x84\xf5\x57\xe4\xd4\ +\x29\x82\x5e\x0a\x67\x4c\x25\x16\x15\xb6\xe2\x5a\x08\x71\xee\x44\ +\x99\x42\xd8\xdd\x65\x66\x5e\x54\xaa\xf8\xd0\x4f\x35\xd3\x06\xd5\ +\xbc\x79\xd4\xc5\x46\x39\x51\x53\xbe\xe6\x6a\x9e\x66\x71\xf7\x67\ +\x59\xae\x41\x8d\xa5\x88\x39\xd8\x6a\xc6\xe0\xa8\x2a\x8e\xd7\xda\ +\x74\x81\x4a\xb3\x9b\xb9\x7d\x14\x93\xa0\x2e\x22\x51\x5a\xe5\x16\ +\x18\xa7\xe8\x42\x3a\x18\x76\x68\x5b\x0c\x0b\x18\x73\xc6\x1e\x76\ +\x73\x6e\x69\x42\xd6\x0f\xb1\xd7\x87\xe1\x51\x6a\xfc\x14\x32\x49\ +\x8b\x83\xce\x03\x25\x3a\x1e\xf5\xfa\x5d\xd1\x66\x24\x89\xa9\xe3\ +\xe1\xda\x0e\x5d\xa6\x51\x52\x52\xa9\x22\x66\x49\x67\x5c\x52\x8c\ +\xc8\xd3\x8c\xca\x4b\x21\xed\xc3\x87\x2d\x2e\x9b\x4f\xf9\x90\x45\ +\xff\x16\x55\xa7\xab\x27\x3d\x0a\x6d\x2c\x0e\x16\x95\x5a\x96\xe5\ +\x10\x2c\x97\x85\x50\xe6\xed\xd9\x82\xd8\x18\x8c\xba\x2c\x37\x7d\ +\x19\xb1\x97\x4c\x13\x71\x9d\xa0\xee\xca\x7a\x38\x44\x26\xec\x6a\ +\x6d\x4c\x32\x04\x75\x9a\xd7\xa1\x50\x55\x0b\xb5\x5d\x9a\x67\x83\ +\x59\x60\x2a\x55\xa8\xdb\x1a\x52\x72\x5c\x28\xed\x3c\x73\x31\xe7\ +\x14\x46\x40\xf4\xd3\xcc\x45\xea\x27\xe7\xea\x9d\x78\x55\x74\xad\ +\x0f\x30\x27\x6d\x39\xce\xc5\x0a\x92\xc6\x47\x3d\xea\x88\x60\x89\ +\x9f\x74\x4c\xa5\x16\x50\x07\x82\x6f\x63\xd3\x40\xfe\x7a\x52\x25\ +\x61\x26\x50\xd0\x76\x94\x62\x7d\x3c\x76\xa5\x64\x52\xe3\xb6\xed\ +\x56\xe7\x90\x57\x4c\x2a\x7b\x66\xc3\x58\x3b\x70\xac\x01\xae\x91\ +\x51\x26\xa7\xc6\x4b\x6d\xdb\x61\x75\x0e\xf8\xc0\x50\x93\x8e\x38\ +\x07\x60\x63\x23\xae\xc3\x3d\x65\xfe\xe2\x9c\x36\x66\xd3\x76\x18\ +\x73\xd0\xcd\x24\x8e\xc6\xa4\x62\x42\xc3\x35\x76\xe2\x7e\x58\xf7\ +\xc4\xf4\x4e\x56\xfd\x32\x74\xe3\xd5\x6c\x26\xac\x02\x65\xc2\xe3\ +\xc5\x12\xf2\x93\x48\x65\x46\xc7\xd3\x8b\x3c\x44\xca\x5c\x95\x9b\ +\x36\x5d\xa1\xbd\xb0\x27\x5d\xd6\x28\xe5\x97\xa9\xec\x2b\xbc\xf9\ +\x8f\xfe\x41\x76\xdd\x09\xa6\xd9\x46\xac\x05\xb0\x9e\xc6\xa3\x99\ +\xd3\xf0\x5e\x9b\x2e\xf9\x49\x53\xfe\xdf\xae\xd0\x13\x63\xea\x56\ +\x3a\xe3\xe8\x0c\x1a\x21\x0e\x0f\xf6\xa8\x5a\x51\x21\x29\x18\xaa\ +\xc2\xcd\x15\x2b\x9b\x94\x71\x92\x4b\xcf\x78\x4b\xd2\xb0\xc7\xe6\ +\xee\x26\xe6\xa7\x08\x67\xf7\xc5\x47\xbb\x47\x5c\xa3\x95\x0f\x6c\ +\x0e\x4d\x62\xe5\x55\xa9\x18\xc7\x1c\x55\x69\x74\xe6\x05\x7d\xba\ +\x41\xc9\x24\x1a\x6c\x61\xd9\x17\xae\x78\xf4\x1b\xc8\x20\x71\xc2\ +\x2d\x79\x7d\xca\xd4\xdf\x68\xb0\xc1\xbc\x5d\x51\xd0\xab\xd9\x87\ +\x2c\x5c\x6d\xc0\x2e\xb8\x30\x2f\xd8\xd0\x2b\xb3\x4c\x35\xc1\xc6\ +\xbc\x55\xfd\xd2\x71\x9b\x44\x2f\x79\xea\x22\x96\x9c\x5f\x85\x62\ +\xcb\xc8\x18\xcc\x6e\x36\x0e\xfe\xdd\xf4\x75\x7e\xc1\x9d\xa4\x84\ +\x5b\x9e\x16\xbc\xe3\x91\x77\x4c\x13\xb6\x1c\xed\x11\x24\xda\x1f\ +\x30\x37\xf5\x2a\x2c\x11\x03\x3e\x5f\xf6\x0b\x62\x0f\xc5\x05\x4b\ +\x98\x15\xee\x77\x59\xc3\xe5\x12\xd5\x4f\xf8\x9f\xa9\x08\x09\x02\ +\x90\x1e\x01\x75\x35\x3b\x19\x17\xfd\x2c\x09\x37\xed\x4b\x7f\xe3\ +\x5a\x7c\xe5\x6b\x64\x81\x65\xc1\x76\x8a\x84\x15\x06\xe9\x9b\x59\ +\xa9\xd9\x82\xac\x17\x96\x08\x3e\x2e\x0e\xc1\x45\x1b\x28\x14\x83\ +\xcd\xd1\x5c\xec\xbd\x68\x76\x7e\xb9\xc1\x51\xa6\xc2\x44\x46\x92\ +\x6c\x18\x1f\xf1\xc1\xa2\xbc\xfc\x8e\xc5\xd3\xf4\x8a\xec\x8a\xd8\ +\x90\xeb\x3f\x42\x5b\x7f\xb9\xa0\x52\xd1\xa9\xf9\xb1\x2c\xcf\x1d\ +\x40\x58\xe2\xac\xad\x3d\xe1\xba\x6b\x61\x56\x75\x0d\x54\x75\x71\ +\x4f\xe2\x1c\x48\x1a\x54\x12\x97\xce\x2a\x2e\x5e\x17\x8c\xba\xd9\ +\xa4\x82\xe0\x04\xa9\x93\x4d\x16\xa4\x64\x89\x40\x31\x1e\x79\x95\ +\x82\x1b\x1f\x64\xa4\x29\x3e\xd3\xeb\x44\x7d\x4a\x22\x80\x84\xfa\ +\xfa\x2a\x52\x2a\x0b\xec\x57\x4e\xc2\xed\x88\x07\x0e\x73\x37\x82\ +\x89\xfc\xb0\x97\x4b\x0a\xdd\x4e\xce\x82\xa6\x69\xbc\x4f\x13\x99\ +\x1f\xd4\xe1\xd5\xc4\xfe\x5e\x21\xb4\x8d\x2c\x02\xfd\x4f\x54\x89\ +\x6b\x17\x58\x2f\xea\xa3\x45\xda\x74\x94\xba\x8c\xe6\x16\x58\xc4\ +\x3b\x7a\xc6\x5d\x5a\xd8\xb4\x48\xdc\xe6\x17\x7a\xad\x8d\xbf\x16\ +\xbe\xc0\xb8\x0e\x5e\x60\x37\x0d\x6b\x0f\xcf\x80\x87\xd9\x8d\x44\ +\xbb\x42\xae\xa1\xfa\x45\x08\x77\xe8\xf9\x99\x12\x26\x9a\xb0\x43\ +\xb5\x38\xed\x06\xa3\x45\x03\x6e\xc1\x0d\x46\x43\xaf\x2c\x02\x5b\ +\x3f\x0b\xff\x05\x5c\xcb\x60\x7a\x84\x4a\x1b\x59\x84\xe5\x1c\x7d\ +\xaa\xed\xf4\xa2\x8d\x7d\x7d\x4b\x03\x9e\x2b\x9a\x0d\x9c\x38\x18\ +\x36\x73\xab\x8e\x17\x68\x6b\x58\xd9\xec\x50\x0f\xfb\x58\x18\x2b\ +\xf4\xa5\xd0\x7d\x5f\x1a\x66\xe8\x25\x57\x31\x68\x5c\xc7\x19\x91\ +\x89\xc6\xad\x6e\x31\xba\x55\xbd\x92\x3b\xca\x56\x6d\x2a\xbd\xb2\ +\x17\xdb\xa0\x71\xa1\xa6\xf5\x3b\xd3\x46\x38\x03\x5d\xe7\xe6\x9d\ +\x71\xe1\x1b\x76\xc6\xa4\x77\x44\xc8\x1f\xbd\x8e\x89\x62\xd3\xe5\ +\x46\xb0\xca\x29\x5b\x06\x3f\x61\xbe\xbe\x4a\xc3\xe5\xd0\xf0\xc0\ +\x07\x86\x30\xb0\xa5\x80\xd6\xd0\x63\xdc\xe3\xc9\x5e\xcb\x0a\x5e\ +\xc6\x09\x52\x21\x60\x4f\x82\xe5\x9a\xdd\x3d\xfd\xd0\xb4\x22\x95\ +\x31\xba\x20\x54\x04\x95\x43\xa9\x37\x93\xe1\x53\x89\x5e\x9b\x42\ +\x49\x63\xf0\x45\xe8\xb5\x17\x03\x4f\x7e\x24\x05\xac\xb1\x17\x24\ +\x20\x28\x0a\xe1\xad\xe9\x24\x0f\x13\x79\xe7\xbc\x44\x96\x6d\x8e\ +\x42\x7a\x48\x4a\x55\x8d\x8a\x91\x2c\xbc\x80\xbe\x27\x6e\xf5\xcc\ +\xc6\x16\x9d\x58\xed\x38\x16\x52\x51\xfb\xd3\xee\x0a\xe8\x2d\x16\ +\x73\xd8\x1f\x31\xee\xda\x60\x6d\xca\x46\xde\xef\x43\x11\x7a\x4d\ +\xaf\x9f\x8e\x50\x6c\xfc\xe5\x51\x0d\xda\xa5\x51\xda\xe3\xc3\x64\ +\x83\x16\xa2\x29\x22\xc8\x7a\xf3\x42\xd1\x30\x98\x19\x66\xfa\x09\ +\xd6\xc3\x06\x94\x42\xf5\x00\xb9\xb1\xe1\xca\x51\xda\x87\x97\xea\ +\xf2\xf3\xcc\xcb\xc9\x18\xfd\x95\x26\x8a\x4e\x18\xc3\x33\x80\x21\ +\x88\xbc\x3b\x3a\xf4\x36\xb5\xcb\x7d\x0e\x4d\x05\xb2\xb6\x85\xde\ +\xd0\x6f\xd2\x9c\xa4\xcd\x74\xdf\x28\xcd\x9a\x57\x6d\xa6\xb5\x11\ +\x9e\x0c\x59\xaf\xf1\xaa\x8f\x72\xac\x9a\x94\xad\x8e\x67\xd8\xc0\ +\xd1\x6d\x4e\x71\x49\x9d\x97\xa0\x9f\x9b\xc3\x73\x67\x44\xe8\x74\ +\xb2\x71\xe3\xae\x55\xa5\xc9\x9e\xca\x17\xf0\x21\xf3\xe2\x1c\x8c\ +\xa3\x31\xfc\x07\xa3\x5e\x39\x97\x89\xf4\x55\xd2\x9b\xb5\xb9\xa5\ +\x8a\x9d\x94\xac\x4e\x77\x71\x84\x0c\x8d\x0b\x69\x94\x40\x61\x97\ +\xd1\x84\x9e\xee\x46\x81\x58\xb9\x88\x47\xf5\x21\x34\x2f\x59\xa6\ +\x77\xad\xa0\x43\x17\x3b\xd4\x84\x06\x1d\x43\x19\x15\xd7\x48\xd7\ +\x37\xe4\x86\xad\x71\x2a\xf3\x4a\x46\xc5\xcb\xd4\x65\x82\x94\x67\ +\x04\xa8\xe0\x94\x25\x90\x9d\x70\xe2\x36\x01\xed\xf5\x91\xd5\x1a\ +\xb6\x8f\xea\xd3\x12\x8c\x7d\x2e\x90\xf0\xfe\x1b\x7a\x03\x23\xbb\ +\xfe\x8e\xc6\x0a\x86\x03\x2f\x57\x2e\x01\x12\x07\x37\xf5\xf6\xad\ +\x0e\x23\xb2\x25\x56\x8c\xd7\xc6\x48\xf1\xcd\xf2\x28\x67\x51\x08\ +\xc4\x1d\x67\x65\x84\x2b\xeb\x8f\xd1\xb8\x13\xc7\xbb\xb4\xa3\x4b\ +\xe9\x83\xaa\xd3\x65\x76\x1d\x21\x25\x1e\x55\xdb\x15\x3e\xba\xb3\ +\x8c\xcb\x53\xc2\x5c\x2b\xc5\x2f\x47\x89\x32\xaf\x79\xc6\x7b\x7a\ +\xa5\xf7\x52\xb2\x4a\x55\x04\xf3\xf7\xe3\x39\x9a\x79\x27\x4c\x3c\ +\x15\xb6\xf2\x11\x62\x89\x71\xb6\x31\x40\xf4\x5e\xc1\x16\xfe\xb2\ +\xbc\x5e\xb0\xe2\x02\xfa\xb5\x70\x85\x6e\x1d\xcf\x10\x23\x88\xb0\ +\xc4\xa4\xa3\xb0\x66\xfd\xaf\x02\x2b\xc6\xcc\xb4\x08\x1a\x36\x79\ +\xb9\x89\x91\xc8\x18\xf3\x8d\x31\x36\xe3\x9e\x3e\xaf\x64\x60\x04\ +\x96\xcd\xb0\x8f\x28\xe9\x26\xc5\x46\xf4\x08\x36\xf3\xf7\xc5\x75\ +\xe7\xda\xab\x93\x5f\xca\xa8\x3d\xb8\x50\xbb\x8e\x52\x51\xaf\xd9\ +\x49\x49\xd1\xe2\x6c\x1c\x02\xb4\x15\x1a\x11\xa6\x05\x0c\xd8\xda\ +\x28\x2a\x3d\x2a\x61\xbf\xa9\x12\xda\x67\xe2\x2b\x01\x47\x94\x19\ +\x0d\x6e\xec\xe7\xe9\xed\xa1\x77\x7a\xe4\xa1\x33\x53\x7b\xf5\xda\ +\x40\x25\x17\xe3\xbd\x56\x9d\xfd\x1e\xb6\x59\x2b\xfa\x1e\x32\x63\ +\xa5\x09\xd9\xd2\xf7\x24\x6f\x24\xd1\xe6\x5e\x35\x25\xd7\x64\x1b\ +\x67\x7a\xe6\x8c\x6e\x64\x4a\x3b\xe5\x6a\x29\x16\x83\xd0\x14\x8a\ +\x18\x86\x3a\x30\xc5\x7c\x7a\xd6\x7e\x92\x39\xe7\xc8\x9c\x63\x37\ +\xeb\xa6\x2b\xcf\xdb\x85\x89\x8e\xaa\xf9\x41\xc1\x10\xc3\x74\x95\ +\x65\xc4\x79\x9e\x2c\xd0\x14\xb8\xfd\x56\x63\xdb\x83\x0c\x3a\x01\ +\x30\x75\x38\x00\xe4\x2e\x08\xd3\x49\x0b\xf0\xec\x0c\x06\xca\x0c\ +\xfe\xba\x3a\xe3\x86\xc9\x79\x76\xe8\xaa\x89\x45\xcc\xe7\xa6\x34\ +\xac\x81\x45\x28\x34\x63\x0e\x90\x5e\xd2\xc8\x13\xf3\x15\x37\x1c\ +\xa0\xee\x9a\x3e\x51\xd2\x68\xec\xef\x10\xe2\x3b\x4f\x5c\x1e\x43\ +\x74\x8c\x63\x21\x5a\x8a\xc5\x57\x15\xd3\x80\x85\x12\x46\x9d\xcc\ +\x2a\x73\x58\xbe\x27\x1e\x99\xc0\x50\xb4\x31\x68\xd2\xd9\x17\x16\ +\x3f\xa7\x44\x60\x08\xb9\xfc\xa4\x60\x34\x3b\x6c\x85\x61\x19\xd0\ +\x60\x39\x52\xc2\xa2\x03\x20\xbd\xac\x3e\x7a\xec\x0c\x87\xab\xd5\ +\x39\x10\x06\xcc\x02\xc0\xc2\x3d\x47\x8d\x30\xb6\x3a\xef\x03\x34\ +\x42\x3d\xe8\x9e\x15\xd5\x7d\x57\xb3\xe8\x27\x57\xbb\x44\x40\xec\ +\x30\x62\x71\x25\x4b\x28\x7f\x69\x64\x4e\xea\xee\xeb\x1e\xed\x74\ +\x85\x1b\x6a\x1b\xd7\xf0\x49\x20\x0e\x19\xa0\xa1\x4e\xeb\x30\x2b\ +\x0d\x22\xa7\x9c\xb3\x7d\xec\xca\xd1\x23\x9c\x96\x36\x7e\x9f\x8b\ +\xe8\xc0\x3b\x63\x40\xf4\x38\x88\x7a\x7d\x65\x98\x5b\x56\x02\xd0\ +\x56\x04\xa8\x1d\x95\x23\x24\x70\xac\x4b\x5c\x80\x65\x97\x5c\xb8\ +\x6b\x30\xe2\xd5\x2f\xe8\xbd\x75\x4b\x61\x48\x37\x4f\x02\xa9\x98\ +\xb1\x87\xa8\x4b\xce\x6d\x1e\x68\x10\x07\xb9\xcc\xb5\x30\xd5\xa6\ +\x5e\x21\xef\x60\x01\x1f\x05\xa0\x07\x6f\x0a\xa7\x65\x00\x34\x15\ +\xaf\xc4\xbb\x67\x85\xc1\x39\x1f\x27\x36\xd5\x73\x71\x03\x65\xfc\ +\xe5\x6d\x16\x3f\xd8\xe6\x02\x7a\x48\x7c\xa0\x58\xe5\x01\x84\xfb\ +\xd2\xe9\xa5\x33\x0a\xc5\xcb\xc4\x12\xe8\x05\x95\xd1\x5b\xe1\x7a\ +\x2c\x04\xdd\xcd\x4e\xb0\x55\x25\xa1\x83\x78\x52\x55\x36\xad\x3d\ +\x29\x15\x68\x6c\x43\xf9\x0c\x05\x90\x70\xf0\x0a\x61\x02\xa5\x0c\ +\x22\x0c\xd6\x9a\x49\x36\x5d\x6d\xa5\x0e\x14\xc3\xa8\x22\x56\x06\ +\x96\xc2\xd3\x7c\x03\x04\xba\xb5\x3d\x48\x95\xf1\x68\x39\xb7\xc2\ +\xfc\xe5\x98\x5d\x89\xaf\xc2\x15\x7b\xec\xc8\x16\x6f\x05\x0d\x59\ +\x2c\x25\x49\x48\xb8\x22\x61\x9d\x33\x5e\x96\xa9\x77\x81\xc6\xd3\ +\x38\xdc\x91\xbd\xed\xb1\x86\x41\xa8\xee\x16\xd4\x9a\x71\x8a\xb4\ +\x6b\x46\x21\xed\x46\x89\x76\x74\x12\x74\x9a\x8b\x61\x16\x88\x4b\ +\xf4\x22\x39\xa6\xe3\x57\x66\x4d\x01\x79\x93\xbf\xa3\x64\xd6\x52\ +\x01\x36\xd8\x20\x2e\x13\xc3\x34\x23\x55\x40\xce\xbf\xad\x40\x94\ +\xeb\x62\xc1\x15\x31\x0f\x37\xc6\xa0\x60\x7b\x5f\xe6\x11\x46\x06\ +\xde\x52\xfc\x8b\xa2\x80\x03\x19\x48\x2b\xd4\xd1\xc8\xb2\x4b\x02\ +\x68\x60\x27\x29\x01\xae\x88\x9d\x9a\x6e\xe7\x70\x88\xfb\x2c\x0d\ +\x59\x3a\x1d\x91\xe9\x83\xf2\xb0\xe4\x37\x71\x30\xec\xaa\x70\x36\ +\x63\x4e\x9a\xc1\xa5\x27\x3f\x9f\x01\xd6\x1c\xb0\x4a\xbe\x57\x91\ +\xdc\x9c\x28\x47\xb4\xf5\xbe\x9e\x21\x46\x1d\x06\xd3\x27\x27\x13\ +\x51\xc8\x10\x54\xe0\x76\x41\xec\xe9\xd4\xd3\x55\xc2\xae\x3c\x75\ +\xae\x59\xe4\x98\x39\x84\x5f\x0d\x9d\xea\x6e\x06\x2e\x16\x3b\x04\ +\xea\x40\xb3\xf4\x0e\x7a\xd0\xb9\x1b\xc2\xc5\xe6\x54\x61\xc8\x3f\ +\x42\x36\x56\xe8\x88\x9c\x46\xc7\x9d\x30\xe1\x27\x5b\x11\xf3\xf6\ +\xea\x61\xcb\x2c\x8a\x9c\x17\xa2\x87\x21\xe6\xc6\x01\xd0\x51\xc6\ +\x9c\xc9\x29\xf1\x8c\x0a\x94\x68\x73\xb6\x61\x47\xe4\x5b\x65\x69\ +\x28\x98\x8e\xd1\xf3\x4b\x82\xb9\x98\x83\x89\xdd\x3c\xa9\xec\x33\ +\x24\x22\xc0\xe6\x32\xe5\x22\xc2\x5e\xb6\xc0\x7f\xcf\x71\x72\x13\ +\xc0\x08\xc1\x11\x8f\x3f\x9b\x83\x19\x26\x52\xb1\x0c\xb3\x9b\x34\ +\x17\x1f\x01\x6d\xb2\x67\xe7\x18\x0c\x3d\x14\xc4\xca\x27\xc7\x04\ +\x48\xbf\x1c\xa2\x32\x30\x7a\x95\xa6\x29\x86\xf5\xf7\x5d\xce\x23\ +\x23\x17\xdb\x99\x40\xe2\x55\x11\x3d\x98\x34\x54\xaa\x78\xc2\x4b\ +\x53\x20\x4e\xdc\x94\x40\x4f\xfa\x88\x66\x70\x25\x47\x28\x23\x68\ +\x76\x34\xc3\xbe\x97\xc3\x4d\x88\xa9\x02\x01\xa4\x59\x60\x9e\x62\ +\x8e\x64\x7e\xf2\xd3\x5e\xbe\x48\x1f\x0e\x2f\x60\x4c\x2e\x20\xde\ +\x45\x5d\x30\x52\xe2\x4a\xf0\xec\x18\xba\x28\x27\x3f\x55\x53\x2e\ +\x22\x2c\x1d\xf5\x25\x60\x72\x96\x26\x6c\xa6\x5e\xc4\x45\x53\x2c\ +\x82\x99\x21\x93\xd3\x90\x02\x5d\xaf\xd3\x72\x23\xdc\x57\x55\x4f\ +\xc7\x29\x8b\xca\x2d\x70\x8c\xb9\x30\xc1\x3a\x68\x3c\x93\x11\x96\ +\x64\xc9\x9a\x5e\x10\xc7\x9d\xb7\x4c\xb1\xb8\xf7\xcb\xdb\x0e\x8e\ +\x05\x74\x52\x8e\x76\xf6\x5e\x83\x14\x27\x67\xcd\x0a\x52\x75\x5d\ +\x80\x72\x10\x30\x6f\x8d\x8b\xae\x02\x25\x3a\x8e\xad\x00\x78\x58\ +\x2a\xab\xac\x92\xac\xeb\xd3\x2e\xf5\x51\x6d\xf5\xc2\x98\x6e\x57\ +\x2a\x11\x27\x1c\xdf\x50\x1d\xa0\xb3\x84\xb7\x27\x23\xd1\xba\x5f\ +\x8c\x5a\x4a\x06\xa4\x7a\xf8\x99\x4f\x51\xa9\xf8\x1c\x61\x9d\xa1\ +\x75\x4f\xe8\x46\xe3\xea\xb1\x82\x15\x8e\x79\xca\xec\x0d\x30\x84\ +\x65\x12\xa5\x71\x05\x45\x3a\x67\x07\x01\xd5\x35\xe3\x62\xa4\xb7\ +\x25\xc8\x3f\x0a\xdf\x16\xa3\x33\x03\xdd\xf0\x57\xcd\xb0\x69\xa0\ +\x48\xc4\x47\xf4\x9b\x0a\xcd\xe6\xd7\x22\x42\xf2\x2a\xa7\x11\xe1\ +\xfe\x62\xf1\x0c\xd1\xc8\x44\x36\x66\x94\x28\x59\xa7\xa3\x84\x47\ +\x49\xd5\x4d\x04\x59\xf4\x1c\x58\xe5\x42\xc9\xcd\x61\x66\x1e\x76\ +\xb2\xe6\x39\x79\xec\xd9\xe1\x72\xa9\x44\x73\xb8\x68\xb6\x71\x08\ +\x1f\x97\x4c\x23\x45\xce\xae\xd8\x7e\x31\x7a\x29\x0c\xf3\xce\x9b\ +\xf9\x57\x8a\x14\x84\x6b\x6c\x4c\xcb\xd1\x32\x9d\x33\x2b\xf5\x35\ +\x87\x13\x77\xb0\x1b\xa3\xb1\xef\x79\x6f\x8c\x16\x41\x44\x7c\x35\ +\x1d\x18\xbc\x4a\xe3\x01\x12\x4d\x54\x98\x90\x8a\x8a\xc1\x19\x6b\ +\x61\x3c\x1b\xef\xce\x58\x8f\xbd\xe3\x42\x63\x1d\x8d\x91\xe8\x4a\ +\xe1\x10\xe5\xa4\x65\x6d\xf6\xd5\xe2\xd4\xc1\x9d\xb7\x4e\x85\x39\ +\xa4\xaf\xd6\x77\x10\xf8\xf0\xc9\x4c\xa9\xe6\xbe\xca\x05\xb7\x2e\ +\xea\xdb\x9f\x13\xf2\xa5\x45\x5b\xfb\xa4\xe8\x5b\xb1\xde\xb4\x85\ +\x49\x6e\xfb\x0e\x8d\xb3\x55\xd4\x6f\x18\xb0\xae\xc7\xf5\xea\xb9\ +\x03\xb5\xeb\xbd\x48\xae\xc1\x1a\xe9\x19\xd6\xbb\xd4\xb3\x4b\x96\ +\x54\xc7\x53\x46\x54\xd8\xfc\x59\x46\xed\x55\xc8\xc6\x35\x14\x81\ +\x03\x36\x78\x2c\x3c\x9f\xf1\xc6\x0b\x2c\x0a\x53\xf4\x02\xbc\x7f\ +\x2d\xaa\x8d\xea\x6d\x56\x4d\xd7\x60\xb8\x4b\x85\x8b\x68\xa1\x5b\ +\xab\xe2\x44\x2a\x39\x46\x44\x87\x2a\x05\x75\x3f\x08\x40\x89\x98\ +\x90\x3d\x66\xbb\x39\x94\xe9\x58\x0a\xa2\xe2\xbb\x51\xa7\xeb\xa4\ +\x7d\x64\x8d\x30\xc6\x86\x98\xb6\x42\x39\x71\xdc\xe4\xbb\xed\x1b\ +\x64\xb3\x1f\x6a\x42\x84\xc9\xb9\x45\x4f\x3f\x51\xc1\xc8\x8d\x71\ +\x5c\x73\x5b\x28\x55\x85\xda\xcd\xc2\x6c\x55\x1c\x42\xef\x35\x12\ +\x17\x07\xd6\x8d\x26\xc6\x0b\xd4\xd1\x58\xc2\xe6\xe5\x2a\xbc\xe7\ +\xef\x06\x3c\x15\xa8\xc4\x12\x76\x90\x5d\xa2\x15\x71\x6e\x3e\xb2\ +\xaf\xbb\xc8\x69\x44\x74\x09\x89\x2b\x1b\x29\x18\xc1\x7c\x16\x7e\ +\x10\x17\xe1\xc5\xef\x7f\x41\x12\x69\x16\xe1\x2f\x0b\xa8\x95\xbd\ +\xb1\xb1\xc0\xae\xa0\xa2\xb9\x76\x18\xa7\xc8\xd9\x05\xda\xd8\x43\ +\x6c\x3b\xfd\x2e\x13\x23\x6f\x3b\xa6\xee\x2e\xa9\xc2\x48\x9b\xdc\ +\xf4\x6e\x6b\x63\x5c\xb6\x47\x46\xde\x48\x2a\x1a\x5e\x55\xd6\xd2\ +\xa2\x2d\x90\xe2\x53\x97\x23\xe9\xc9\xca\x51\x8e\x80\x70\x5f\x67\ +\xc9\xe3\x57\x6b\xb0\xa4\x53\x3d\x16\x13\x5e\x6c\xa7\x01\xa5\xc3\ +\x15\xb1\xc9\x32\x4c\xda\xd9\x4c\x3c\xcd\x24\x92\x60\x72\x44\xec\ +\xb2\x2d\x3d\x88\x27\x97\x23\x3a\x73\xaa\xc1\xf7\xc1\xc1\xb1\xff\ +\x66\x7c\xfe\xca\x8a\x0a\xc3\xeb\x4c\x3e\xc1\xe0\xc8\xdf\x23\x83\ +\x77\x46\x76\x5e\xa8\x03\x69\xa2\x52\x3a\x7a\x34\xb4\xef\x8b\x43\ +\xa6\x59\x5e\x47\xa5\x41\xc3\x10\xdb\x92\x7f\x69\x21\xbb\x08\x86\ +\x45\x63\xaa\xc8\x80\xdd\x09\x50\x90\xe5\xea\x4f\x4e\x4f\x0d\xc2\ +\x61\x9d\x42\xa6\x02\xa0\x51\xd4\xc6\xa9\xb8\xc6\x3c\x72\xec\x99\ +\x38\x36\x53\x61\xe3\x47\x3f\xa1\xc2\xe8\xe1\x6d\x13\xad\x95\xcc\ +\x03\xdf\x23\x67\xfa\x00\xce\x94\xf3\x78\xe0\x2d\x7e\xb2\x62\xc5\ +\xa5\xbc\xa9\xd5\x34\xc5\xe5\x49\x0c\x48\xc4\xa9\x80\x28\x86\x81\ +\xb4\x27\x64\x0e\xa4\xd0\x88\x34\xf0\x16\x23\x78\x05\x9a\xdc\x81\ +\xa0\x61\xfb\x90\xce\x81\xc5\x4c\x01\xa4\x3f\xf7\x2d\xa6\xbe\xaf\ +\xc4\xd8\x57\xf8\x61\x05\x4e\xcc\xec\xa3\xa2\xad\x27\x44\xd8\x6a\ +\xd2\xc8\xe0\xcb\xa7\x1c\xdc\xd3\x0c\x60\x9d\xc0\x19\xba\xbd\x22\ +\x48\x6c\x5a\xfe\x16\x3f\xfc\x7c\xb2\x96\xfb\x46\xf5\xc6\x5c\xa2\ +\xa3\x9c\x82\xb3\x15\x07\x63\x8d\xda\x22\x83\xf4\x4c\x83\x71\x50\ +\x42\x54\xc5\x1b\xa9\x10\xb4\xbe\x27\x0a\x22\x62\x59\x48\xa5\x89\ +\xf4\x33\x3e\xd5\x44\xb3\xcd\x89\x18\x03\x88\xcc\x74\x54\x85\x99\ +\xb2\xc4\xe6\xfa\x93\x98\x87\xf5\xc1\x60\x1a\x6f\x2a\xc4\x5d\x82\ +\xb4\x4d\x55\x13\x9b\x5e\x0e\x1e\xc3\x6e\xe3\x50\x6f\xe2\x4c\xbf\ +\x37\x33\x67\xec\x2e\x3b\xb6\xec\xea\xca\x78\x64\x45\x97\x10\x7f\ +\x6c\x99\x24\x13\xd7\x4b\xa6\x62\x67\x88\x27\x9e\x14\x66\x8a\x14\ +\x0c\xb1\x5a\xb7\x89\x3e\x1a\x49\x8d\xa8\x94\x52\xd2\x10\x9f\x4b\ +\xd2\x88\xfd\xc8\x5d\x3d\x8d\x6b\x33\xd2\x5e\x84\x7c\xf9\x73\x44\ +\x98\xc0\xe9\xd8\xf4\x9b\x19\xec\x6d\xaa\xac\xc5\x66\xe0\xcc\x9c\ +\x24\x5f\xa5\xa9\x52\xa2\xca\x71\xf8\x52\x5e\xe8\xe6\x24\x9c\x8a\ +\x2a\x2a\x99\x26\x4f\x45\xfd\xe0\x66\xb4\x50\x44\x0e\x86\x74\x2a\ +\x4c\x9a\x8f\x3a\x0b\xa6\x66\xe4\xad\x29\x3a\x1a\xae\x28\x75\x47\ +\x13\xb4\x57\x6b\xa4\xaa\x65\x16\x0f\x52\x2a\x8d\x04\xbb\xe3\x35\ +\x29\xa9\xd8\xa8\xe4\x24\xde\x79\x7b\x53\x4c\xbe\xc8\xa2\xa9\x46\ +\x81\x9f\xb7\x91\xed\x4a\x7c\xf2\xb1\xb6\x6d\x8f\x4d\x3f\x49\x36\ +\xdc\x8e\xe8\x70\x3b\xf6\x7a\xb8\xed\x31\xc3\x6d\x8f\x1f\xee\x84\ +\x58\x15\x64\xb2\xc0\xa0\xa5\x13\x8f\xca\xce\xe5\xd3\xd8\x32\x48\ +\x51\xf2\xd0\x02\x8f\x06\xc0\xa7\x3f\xa1\x7e\xd7\x99\x78\x52\x99\ +\x1e\xea\xf0\x1f\x10\x07\x04\x73\xf9\x44\x23\x62\xd3\x07\xc3\x8f\ +\x52\xef\x54\x93\x23\xc7\x8e\xe0\x60\xd5\x5e\x4c\xae\x73\x6c\x7d\ +\xda\xb9\x71\xd3\x22\x0b\x8f\xfa\x4e\xa7\x3f\x6b\x46\x46\x7b\xb1\ +\x7c\x81\xdf\xfd\x24\x6e\xba\x76\x0c\x48\xac\x38\x48\x4a\xbe\x9b\ +\x5f\x06\x8a\x82\x13\x75\x54\xf7\xef\x05\x3c\x2c\x43\x8a\x12\x60\ +\x58\x42\xce\x8b\x9b\x9d\x9b\x5e\xe1\x99\xb7\x25\x38\x43\x2c\xa8\ +\x28\x62\xd9\xa2\xa8\x8f\x3d\xf7\x2c\x11\xad\x38\x44\x32\x41\x98\ +\x3f\x76\x73\x68\x58\xd1\x24\xd8\x2e\x34\x9a\xed\xb2\x8c\x96\x50\ +\xea\xbe\xe8\xa9\x6d\x64\x72\xf5\x92\xf0\x0d\x3e\x71\xe9\x7e\xb4\ +\xb8\x5d\xcb\xe4\xe2\x77\xf9\x4c\x91\xf1\x37\x2f\x94\xe3\x6f\x48\ +\x6b\x65\x68\x0e\xa2\x08\xed\x8d\x91\x20\x29\xcc\x75\x32\xd3\x1b\ +\x6b\x63\xf2\x1a\x07\xb4\xce\x62\x93\x66\xbe\x1b\xe6\xb8\xc3\xd3\ +\xcc\x9e\x13\x4e\x16\x15\x37\x1b\x0a\x65\xc2\x0b\x43\x5b\x54\x2e\ +\x86\x57\xba\x01\xd0\x28\x72\x97\xe9\xb6\x2d\x23\x22\xfd\xca\x36\ +\xbe\x37\x9d\xd0\x53\x77\xa8\xdb\x7f\xc8\x1b\x01\xb4\x04\xbc\x11\ +\x39\x6f\x43\xb7\x9e\xdf\xbf\x6d\xb8\x53\x7a\x25\xed\x6a\x5e\xb0\ +\x21\x38\x13\x91\xfc\xb1\x50\xbd\x0d\x07\xcb\xf4\x2c\x46\x5b\x0e\ +\x74\xca\x9b\x12\x2d\x72\x28\xfc\xdb\xa1\xb9\x4b\xe7\xd3\x42\x1d\ +\x24\x35\xcc\xa4\xe6\x05\xfd\x60\x10\x0c\x6d\x5e\x77\xe8\x8e\xb0\ +\x57\x34\xc5\x5b\xb4\xea\x17\x6c\xd6\x6e\x89\xd2\xe6\x1d\x5a\xa1\ +\x8f\xaa\x67\x8b\xb6\x63\xa8\x74\xe7\xa4\x4a\xc1\xd1\x03\xfe\xaa\ +\xb5\x23\xbb\x0e\x31\xc6\xf5\xcd\x0d\x59\xa5\xf8\x89\x76\x7b\x93\ +\xf9\x5f\x3b\xc9\x56\x0d\x23\xa7\xd2\x6a\x24\xe6\x06\x97\x37\x44\ +\x8a\x36\x09\x2c\x52\x40\x1b\x5c\xd1\x33\x44\x3d\xe4\xa8\x44\x06\ +\xcc\x43\xae\x34\x1c\x2d\x2b\xbd\x73\x6b\x18\x89\x9d\x53\xa4\x7e\ +\xca\xb8\xb6\x72\xa0\x62\x92\x6e\x5c\x3a\x67\xb5\x56\xc9\x51\x15\ +\x2e\xe1\x38\x2e\x36\x69\x9f\x2a\x12\x2a\x54\x54\xd1\x92\x53\xb2\ +\x63\x9b\xd6\xdd\x9b\x22\x40\x99\x74\xa1\xf9\x6a\x0d\x8d\xa7\x7a\ +\xdb\xf6\x98\xbf\xef\xd0\xfe\xbe\x23\xb2\x18\xf5\x76\x55\xf8\xe5\ +\x4a\x8b\xd9\x3e\xbd\xc5\x6c\x4f\xbe\x18\x5d\x41\xaa\xde\x1e\x05\ +\x56\xfd\xb5\x2a\xfc\xc7\x4a\xc0\xee\x98\x1e\xb0\x3b\x92\x02\x3b\ +\x2f\x12\x78\x52\x95\x6e\xca\xd2\x6d\xb7\x59\x9d\x1a\x8f\xee\xf4\ +\x44\x14\xe3\x68\xcf\x2d\x63\x58\x65\xda\xe3\x4b\xc0\xd9\x58\x94\ +\x68\x95\xad\xc7\x07\xfe\x1b\x34\xcd\x1e\x26\ +\x00\x00\x3d\x29\ +\x00\ +\x00\xdc\xcd\x78\x9c\xcd\x7d\x09\x78\x1c\xc5\x95\x70\xe9\x96\x46\ +\x97\x31\xc4\x18\xe3\x40\x5b\x26\xb6\x6c\x64\xd9\xd8\x60\x40\x9c\ +\xb2\x64\x61\x13\x5f\xb1\x84\xaf\x10\x42\x6b\xa6\x47\x6a\x3c\xd3\ +\x3d\x74\xcf\x48\x96\x61\x09\x09\x97\x13\x02\x21\x81\x00\x01\x96\ +\x00\xe1\x0a\xe4\x22\x24\x59\xee\x2b\x40\x38\x42\xc2\xe6\x60\x17\ +\xb2\x21\x84\x0d\xbb\x64\x97\x84\x2c\x9b\xcd\xbf\x9b\x63\xff\xff\ +\xd5\xab\xaa\xae\xaa\xee\x9e\x51\x8f\x58\xfe\x6f\x3f\x3e\x3c\xd2\ +\xa8\xbb\xea\xd5\xab\x57\xef\x7e\xaf\x8e\xbf\x2f\x33\xf7\xb9\xb7\ +\x6f\xf8\xfc\x0b\x0b\xe6\x3f\x7a\xe6\xcd\x0f\xff\x7c\x0d\x21\xad\ +\xc7\x10\x42\x76\x10\xf2\x83\x1f\xc1\xe7\x4e\x42\x7e\x78\x33\x7c\ +\xee\x22\xe4\xc5\x2d\x84\x34\xbc\x0c\xbf\x9b\xf0\xf9\x0a\x7c\x7e\ +\x1c\x3e\xff\x05\xbe\x5f\x41\x48\xd3\x1e\x42\xae\x9a\x22\x64\xdd\ +\x05\x84\xd4\xdd\xc3\x3e\xaf\xdf\x4e\xc8\xf8\x91\x84\x7c\xfa\x93\ +\xa4\xe6\xf1\x4b\x08\xf9\x68\x81\xd4\xdf\x0e\xcf\x7c\xd1\x21\xf5\ +\x0f\xd6\x13\xd2\x91\x63\x9f\xb7\xfe\x37\x69\x58\xb1\x96\x90\x59\ +\xdf\x65\x9f\xf7\x0f\x90\x86\xa1\xa7\xe0\xf7\xdf\xb1\xcf\xfb\xff\ +\x99\x34\x6c\x83\xef\xcf\xfc\x08\xfb\x7c\x70\x7f\xd2\xf0\x95\xdf\ +\x13\x72\xc8\xef\xd9\xe7\xf3\x7f\x45\x1a\xee\xfb\x0b\x21\xdf\xff\ +\x3a\x69\xf8\xe1\xf7\x08\x79\xe1\x34\xd2\x78\xf7\xa7\x09\xb9\x7c\ +\x98\xcc\xba\x70\x3d\x21\xee\x6f\xc8\xec\x86\x07\x08\x79\xe6\x0e\ +\x32\xe7\x69\x80\xfb\xab\xa3\xe4\xd0\x5b\xff\x0f\x21\xcb\xce\x27\ +\x4b\x29\x3c\xd7\xd8\xe4\xf0\x27\xbf\x4e\xc8\xb5\x53\xe4\xf0\xd7\ +\x2c\xf8\xbc\x93\x1c\xfb\x8b\x55\x84\x9c\xf4\x1c\xe9\xbb\xf1\x60\ +\x42\x2e\x78\x90\x9c\x70\xf3\x41\x84\xdc\xf0\x34\x39\xf1\x4a\x58\ +\x57\xff\x5c\xb2\xee\x33\xe7\x12\xd2\xfb\x22\x59\x77\xed\x27\x09\ +\xa9\xbf\x9a\xac\x7f\xed\x22\x42\x0e\xdf\xc7\x3e\x6f\x39\x81\x9c\ +\xba\x1a\xe0\x6c\xfa\x23\xf9\x60\xf6\x28\x42\x8e\xef\x82\xcf\xa3\ +\xe1\x73\x0c\x3e\x8f\x85\xcf\xaf\x90\xed\x67\x8e\x10\x72\xc0\x4a\ +\xf6\xf9\x64\x2d\xd9\xf1\x17\x58\x47\xe6\x45\xb2\xf3\xda\x0f\x10\ +\x72\xe0\x8f\xd9\xe7\x53\x0f\x91\xb3\x76\x5c\x47\xc8\xc3\x7f\x4f\ +\xa6\xde\xfe\x09\xe0\xf7\x1e\x72\xde\xc7\x3a\x08\xd9\xf7\x2a\xf9\ +\xd4\xc2\xcf\x13\xb2\xf2\x7c\xf8\xbc\x06\x3e\xbf\x0f\x9f\x5f\x20\ +\x64\xd5\x5c\xf2\xd9\x87\x7e\x4d\xc8\x7e\x87\x92\xdb\x8f\x3e\x89\ +\x90\x23\x16\x92\xbb\xce\x87\x71\x6e\xf9\x13\xf9\xca\x4b\x80\xe7\ +\x4d\xf3\xc9\x63\x5f\x49\x13\xf2\xa5\x67\xc9\xd3\xff\xe8\x10\xd2\ +\xf3\x6b\xf2\xfc\x9d\x07\x10\x72\xe5\xa5\xe4\xcf\xe4\x39\x42\xbe\ +\xf5\x0f\x35\x07\x5d\xf6\x2a\x21\x67\xed\xad\x59\xf0\x12\xc0\xe9\ +\x3c\x57\xd3\xf5\xad\xff\x22\x64\x6e\x6d\xcd\xf2\xcb\xcf\x23\xe4\ +\x9c\x4d\x35\xeb\xfe\xfb\x4b\xb0\xfe\xeb\x6a\x86\xff\xfd\x2e\x42\ +\xbe\xbc\xb3\x66\xdb\x9c\x53\xe1\xbd\x81\x9a\xd3\x5f\x05\xfc\x3e\ +\x70\x6e\xcd\x58\xfb\xa7\x08\xf9\xfa\x71\x35\xf6\x7e\x7b\x09\x79\ +\xfc\xe7\x35\xf6\x35\xd7\x12\x32\xb8\xae\xe6\x13\xc7\xa6\x08\x79\ +\x64\x6f\xcd\xa5\xe3\x25\xd8\xa7\x95\x35\x97\x7e\x12\xf0\xde\xbc\ +\xa4\xe6\xe6\x8f\x01\x3c\x5d\x35\x35\xf7\x7c\xa4\x85\x90\x0b\xb3\ +\x35\x8f\xbf\x0c\xf3\x7b\x9b\x6a\x7e\xf4\x99\x1f\x13\x62\x5d\x54\ +\xf3\x93\x59\x0b\x09\xd9\x78\x70\xcd\xcf\x2f\xf8\x23\x21\x0f\x6d\ +\xa9\xf9\xc5\x7e\x03\x80\xd7\xe6\x9a\xd7\x7f\x0f\xf4\xf8\xcc\x8a\ +\x9a\x3f\x7f\x0d\x9e\xbb\xea\xf7\xb5\x0d\x8f\xc0\x3a\x6f\x7e\xa8\ +\xb6\xe7\xe5\x33\x09\x39\xec\xfe\xda\xe5\xdf\x86\x75\x2d\x7c\xa9\ +\x76\x68\x07\xcc\xfb\xf8\x92\xda\xed\xff\xd9\x4c\x48\xfb\x61\xb5\ +\x16\xec\x3d\xf9\xdb\x45\xb5\x4e\xd3\xeb\x84\xd8\xb3\x6b\x27\x0e\ +\xdb\x9f\x90\x53\xeb\x6a\xff\xea\xb5\xd3\x60\xdd\xf3\x6a\xaf\x1a\ +\x9a\x07\x70\x2e\xac\xfd\xfc\x73\xdf\x26\xe4\xc4\xe3\x6a\xef\xe8\ +\x79\x1f\xd0\xf8\xad\xb5\x77\xad\x06\x7c\x5f\xd3\x58\x7b\xf7\x25\ +\xb0\x0f\xd7\x5c\x55\x7b\xcf\xef\x60\xbd\xf7\x1c\x5f\xfb\xe8\x5d\ +\x97\x13\xb2\xf6\xa2\xda\xc7\xb2\xef\x10\x32\x79\x40\xed\x33\x27\ +\xfd\x07\xd0\x4b\x4b\xed\xcb\xb7\xde\x0f\x74\x7f\x64\xed\xcf\xe6\ +\x5d\x45\x48\x4b\xa9\xae\xe6\xc2\x27\x09\xf9\xf6\x65\x75\xb3\xaf\ +\x39\x8b\x90\x7b\xc7\xeb\x0e\x98\x02\x7c\x3f\xb0\x5f\xdd\xbc\x03\ +\x00\xce\x63\x77\xd5\xcd\x9b\x03\xe7\x6c\xf7\x3d\x75\xcb\xe7\xc1\ +\xdf\xbf\xb0\xaa\xee\x3c\x3a\xff\xae\x79\x75\x17\x15\xd7\x11\x32\ +\xf2\x40\xdd\xbe\x43\x61\xde\x0f\xd7\xd4\xdd\xb8\xe3\x36\x38\x8b\ +\xeb\xea\xee\xbd\x11\xf0\xf1\xe8\xa2\xba\x6f\x3f\x03\xf4\xf1\xd8\ +\x85\x75\x0f\xff\xe4\x57\xf0\xde\xeb\x75\x4f\x1e\x0f\xf3\xdf\xb0\ +\xaf\xee\xa9\x9f\x9e\x01\xe7\xf8\xcb\xec\xf3\x96\xa7\xeb\x9e\x6f\ +\x7f\x03\xe8\xe9\x8d\xba\x7f\x68\xa3\xf0\xff\x5b\xdd\x2f\xf7\x00\ +\xbe\x6e\xfa\x63\xdd\x3b\x05\xa0\xcf\xa3\x2e\xac\x7b\xe7\x61\xc0\ +\xdb\x41\x67\xd5\xfd\xa9\x13\xe8\xe4\x98\xbf\xaf\x5f\xb0\x10\xf0\ +\xbe\xa4\xae\xbe\xd7\x87\x73\x70\xc9\x69\xf5\xdb\x1a\xaf\x24\x64\ +\xf5\xcf\xea\xcf\x3c\x17\xf0\xf1\xe4\xbe\xfa\xa9\xb7\x61\xde\x6f\ +\xdc\x5c\xff\x89\x49\xa0\x5b\xfb\x99\xfa\x4b\x2e\x80\xf3\xbd\xee\ +\x67\xf5\x97\xfc\xd7\x8d\x84\x7c\xe7\x73\xf5\x9f\x7e\xe9\x6b\x84\ +\x7c\xdc\xa8\xbf\xfc\x61\x38\x6f\x77\xac\xaa\xbf\xe9\x53\x30\x5f\ +\xe3\x8f\xd9\xe7\x8d\x07\xd5\xdf\x7a\x04\xec\xdf\x7d\x3f\xac\xbf\ +\xf3\x5f\xe1\xbc\x1c\xff\x6f\xf5\x8f\xa4\xfe\x13\xe8\xbf\xbf\xfe\ +\xa5\x97\x66\x13\x32\xf6\xd5\xfa\x5f\x3a\xff\x48\x48\xdb\xe1\xf5\ +\xbf\xea\x04\x7a\xa9\xdb\x58\xff\xaf\xfd\xdf\x85\xf9\xcf\xac\x7f\ +\xfb\xe5\x3b\x09\x49\x6f\x6d\xa8\xbb\x00\xf6\xe3\x8a\xde\x86\x86\ +\xe7\x61\xff\x76\x8c\x34\x74\xbe\x53\x04\xfa\xf8\x75\xc3\xc1\xb3\ +\x00\x8f\xa7\x3f\xd0\xb0\xf4\x0d\x38\x17\x59\xbf\x61\xf0\xb8\x8f\ +\x12\xf2\x39\xbf\xe1\xf4\x97\x01\xff\xb3\xcf\x62\x9f\x0f\x5e\xd8\ +\x90\xfe\x03\xac\xc7\xda\xbf\xc1\xfa\x2d\x9c\xf7\xdb\xdf\x6c\xb8\ +\xe4\x1b\x30\xfe\x93\xa7\x37\x5c\x7d\x27\xe0\x77\xce\x24\xfb\x7c\ +\xea\x73\x0d\x5f\xfd\x20\x7c\xbf\xeb\x13\x0d\xdf\xbc\xfd\x69\x42\ +\x3e\xb0\x7f\xc3\xfd\x75\xcf\xc0\xe7\x15\x0d\x0f\xb7\xc1\xfe\xdf\ +\xf5\xc3\x86\x87\x2f\x07\x7a\xfd\x58\xae\xe1\x91\x6d\x30\xde\xe8\ +\x6b\x0d\x4f\x6d\xa1\x7c\xed\x8b\x0d\x6f\x5c\xde\x0b\xe7\xdb\x6c\ +\xf8\xd3\x3f\x00\xbf\xd8\xf1\xad\xc6\x43\xfe\x09\xf6\xf3\xf9\xbe\ +\xc6\x25\xbf\xfd\x32\xac\xff\xda\xc6\xa5\x17\xbf\x00\x78\xf3\x1a\ +\xb7\x1f\x04\xf8\x03\xcc\xec\x7a\x1b\xf0\x7a\xcd\x91\x8d\x1f\xfe\ +\x11\x3c\xb7\xf9\x6f\x1b\x73\xfb\x80\xae\xb6\xb9\x8d\xc5\xf7\x03\ +\x5d\x9e\x7d\x67\xe3\xa5\x57\x0f\x12\xd2\xb9\xbd\xf1\x9a\x1d\xcf\ +\x12\x92\x3b\xb9\xf1\xa1\xf3\x01\xbe\x85\xc7\x36\x3e\x7b\x5f\x03\ +\x21\xd7\x8d\x36\xbe\xd9\xb0\x09\xce\xd3\x5b\x8d\xbf\xbd\x0b\x78\ +\xee\x73\x8b\x1b\x7f\xf7\x3c\xe0\xd9\xb8\xb2\xf1\x8f\xff\x17\xe0\ +\xdf\xf9\x50\xe3\x9f\xe7\x01\x9d\x9d\xf8\xa5\xc6\x3f\xdf\x04\xe7\ +\xf3\xe1\xa5\x4d\xcd\x57\x00\x3d\xac\xfa\xf7\xa6\xf6\xbf\x01\x3e\ +\x38\xf8\x58\x53\xc7\xc5\x27\x12\xb2\xa0\xab\x69\xe9\x42\xc0\xc7\ +\xc0\x95\x4d\x47\x8d\x03\x7f\x98\x77\x77\xd3\x51\x6f\xc2\x3e\x3f\ +\x61\x34\x0d\xf6\x2f\x25\xe4\xce\x07\x9a\x4e\x3d\x14\xce\x6b\xed\ +\x48\xd3\x46\xbf\x0b\xf8\xf2\xee\xa6\x4d\xb7\x03\xdd\xdf\xb6\xb3\ +\x69\xc7\xf3\x6f\xc2\xef\x77\x34\xa5\xff\x1b\xf8\xd3\xfb\x86\xd8\ +\xe7\x93\x87\x37\x9d\xfd\x55\x38\xaf\x07\x7f\xb3\xe9\xfc\xa7\xef\ +\x05\x79\xb2\xaf\x69\x9f\x07\xfb\x7e\xfd\xdd\x4d\x9f\xdd\x03\x74\ +\xb9\x74\xaa\xe9\x8e\x15\x00\xff\xf5\xe7\x36\x3d\xfe\x67\xd8\xc7\ +\xa3\xbf\xd1\xf4\xcf\x6f\x01\x1e\x2f\xfa\x53\xf3\xe2\x6f\x01\x7e\ +\x1f\x7b\x5f\xf3\xca\x27\x81\xcf\x3c\xf1\x9b\xe6\xd5\x45\x80\xbf\ +\xe7\x96\xe6\xc1\xfb\x01\x9f\x27\x6d\x68\x5e\xff\x2c\xc8\x9c\x83\ +\x1e\x6b\x36\xcf\x85\x71\x3f\xf0\xe3\xe6\x5b\x9e\x1b\x83\xf3\x73\ +\x5a\xf3\x97\x5e\x03\x7a\xbd\x69\x6d\xf3\x3d\xef\xeb\x06\x3a\xfe\ +\x70\xf3\xb7\xea\x61\x3f\x9e\x6a\x6f\x7e\x71\x25\xe0\xf9\xb6\x9e\ +\xe6\x9f\xbc\x60\xc3\xe7\x35\xcd\xbf\xbc\xfe\x11\x42\x0e\xbd\xb7\ +\xf9\x97\x8f\xc3\x39\xba\xe3\xd5\xe6\xb7\x37\x02\xbf\xba\x25\xdb\ +\x62\xbc\x72\x18\xc8\xb5\x47\xe0\xf3\x5b\x20\xd7\xf2\xf0\x09\xe7\ +\xe5\x07\x6f\xb7\x6c\xbc\x1a\xe4\xde\xb2\xbf\x6b\xb1\x5e\x01\xfc\ +\x7d\xe5\x67\x2d\xe3\xed\x4b\x08\xf9\x9b\xaf\xb5\x9c\x7d\x19\xe0\ +\xb9\xf9\xa6\x96\xd2\x42\x80\xef\xda\x97\x5b\x26\x7e\x03\xf2\xee\ +\xa2\xbb\x5b\x2e\xbe\x1d\xd6\x75\xf8\x77\x5a\x2e\x5d\x08\xeb\xf8\ +\xee\x86\x96\x1b\xff\x02\xfc\xf3\xe2\x2f\xb6\x7c\x67\x29\xe0\xef\ +\x04\xbf\xe5\x85\xf9\xb0\xaf\x4f\x2f\x6f\xf9\xd1\x02\x90\x9f\xe7\ +\x9e\xdd\xf2\xc6\x42\xc0\x57\xe9\x8d\x96\xb7\x0e\x07\xb9\xd1\xd9\ +\xd4\xf2\xf6\x2a\xe0\xb3\xf3\xf7\xb5\xfc\xee\x50\xd8\x87\xba\x57\ +\x5a\xfe\xb2\x96\xf2\xa5\xe7\x53\x2d\x8f\x53\xbe\xfa\x89\x54\xf7\ +\x75\xb0\x4f\xe3\x27\xc0\x27\xac\x7b\xfc\x42\xf8\x84\x75\x8d\x3f\ +\x9f\x5a\xf6\x08\xf0\x81\x63\x5f\x4e\x1d\xf5\x65\x58\xd7\x3d\xaf\ +\xa4\x4e\x5a\x0c\xe7\xe2\x96\xfa\xd4\xc9\x37\xc3\x79\x5a\xdd\x92\ +\x5a\x7f\x1b\xf0\xeb\xe7\x6f\x4b\x9d\xf9\x1a\xd0\xdb\xf2\xfd\xe0\ +\xf3\x40\xf8\xcc\xc0\x27\xc8\xb7\xe5\x7f\x93\xb2\xae\x07\x78\x1e\ +\xfc\x46\x6a\x4f\xc3\xf9\x84\xd4\x7c\x24\xf5\xb1\xcf\xc0\x3c\x1f\ +\xdc\x92\xfa\xf8\xaf\x80\x1f\x7c\x68\x7b\xea\xe2\x59\x40\x87\xfb\ +\xff\x28\x75\xed\xc5\x73\x81\x7e\x32\xa9\x2f\x9c\x0e\xfb\xf3\xdd\ +\x3b\x53\x77\xce\x81\xf3\x38\x67\x35\xfb\x7c\xf2\xa5\xd4\x97\x3f\ +\xf9\x16\xf0\xab\x33\x52\xcf\x9c\x0e\xe7\x71\xf6\x5f\xa7\x5e\xdc\ +\x72\x1f\xd0\xf7\x63\xa9\x17\xff\x09\xf8\xd3\xc1\x56\xea\xa5\x7f\ +\x03\xf8\x6e\xbd\x26\xf5\xaf\x9f\xdd\x07\xf8\x6a\x6c\x6d\xda\x43\ +\xf1\xba\xb2\xf5\xe0\xd7\x7c\xa0\xef\xfb\x5a\x0f\xfb\x6b\xc0\x7f\ +\xfe\xd1\xd6\xc3\x9e\x02\x7a\x9f\x73\x67\xeb\xa2\xf3\x00\x3f\x37\ +\x1f\xd9\x7a\xf8\x16\x78\xef\xeb\xbf\x6b\x5d\x76\x2f\xc8\xa5\x4b\ +\xf7\xb5\x1e\xed\xc3\xba\x5f\xf8\xab\xd6\x93\x4f\x06\xfa\xfd\xc8\ +\xa2\xd6\x81\x17\x60\x1d\x1f\x7e\xbd\x75\xf3\xb5\x80\xf7\xaf\xfe\ +\xa1\x35\xdb\x0d\x3a\xcc\x05\x3b\x5a\xf7\xbd\xd6\x04\xfc\xff\xdc\ +\xd6\xab\x06\x41\x9f\xe8\xdb\xd1\x7a\xed\x6c\x80\xfb\xae\x95\xad\ +\x37\x5d\x08\xfc\xb9\xfe\xd9\xd6\x7b\x87\x80\xef\x7e\xf1\xea\xd6\ +\x27\xbe\x00\x9f\x77\xef\x6e\xfd\xf1\x62\xe0\x5f\x0d\xaf\xb6\xfe\ +\xe4\x3c\xe0\x67\xed\xf7\xb6\xfe\xc7\x6f\x87\x01\x2f\x27\xb5\x35\ +\x6e\x81\x73\xdd\xf9\x6a\xdb\x41\x7f\x04\x79\x7b\xfb\x07\xda\x16\ +\xa4\x80\x1e\x6f\x3c\xa5\xad\xfb\x7a\xd8\xb7\x6b\x07\xdb\x8e\x38\ +\x0f\xf0\xfb\xe8\xd9\x6d\xc7\x6c\x84\xf3\xd5\xf2\x48\x5b\xdf\x9c\ +\x17\x41\x4f\x19\x6f\xdb\xf5\x18\xf0\x8d\x1b\xb6\xb5\x39\x97\xc0\ +\xfa\x97\x1e\xdf\x76\xee\x6b\xb7\x83\x9c\x5a\xdd\x76\xfe\x71\x40\ +\xaf\xb7\x2e\x6f\xfb\xec\x4d\xb0\xaf\xcf\xbd\xdc\x76\xf5\x15\x94\ +\x7f\x9d\xd2\xf6\xc8\x1d\x70\x9e\xb7\xbe\xdc\xf6\xdc\xcf\x61\xbd\ +\xcf\x1e\xdc\xf6\xd2\xdb\xc0\x17\x8f\xde\xd8\xf6\xea\x17\x40\x9f\ +\xb9\xf4\xd5\xb6\x5f\x2e\xa8\x05\x3e\x39\xbf\xed\xf5\x49\xc0\xd7\ +\xe5\x9f\x6d\xfb\xdd\xab\xb0\x9e\xaf\x5d\xd9\x3e\xff\x0f\xbf\x25\ +\xe4\xc8\x27\xda\xfb\x72\xb0\xfe\x47\xbf\xdb\xbe\xf6\x75\x58\xcf\ +\xf7\xae\x6f\xdf\x79\x33\xc0\xf7\xa5\x65\xed\xbb\xbe\x0a\xf3\x5d\ +\xf7\xab\xf6\x33\xfe\x19\xe8\x6a\x45\xaa\x3d\x73\x1b\xd0\xf5\xde\ +\x6d\xed\xf9\xff\x84\xf3\x91\x3a\xa7\xbd\xf8\xf3\xad\x84\xbc\xff\ +\xb2\xf6\x89\x6f\x7f\x0e\xe4\xc2\x9c\xf6\xeb\xdf\x02\xfc\x9f\x7d\ +\x70\xfb\x6d\x2f\x03\x9e\x8e\xcc\xb7\xdf\xfe\xca\xad\x84\x9c\x71\ +\x41\xfb\x1d\xf7\x3f\x01\xcf\xbd\xde\xfe\xf4\xd3\xc0\x17\x9e\xb8\ +\xa8\xfd\x9d\x63\x61\xbe\x6f\x5e\xdf\x31\xef\xfd\x94\xdf\xcc\xe9\ +\x58\x72\x55\x86\x90\x53\xe6\x76\x1c\x5e\x0f\x74\x76\xd3\x83\x1d\ +\x3d\xbf\x82\xe7\xbe\xd7\xdd\xb1\xe9\xfb\x80\xff\xd6\x37\x3b\xdc\ +\xeb\x80\x9e\x9f\xbd\xbb\xe3\x9c\xbd\x3d\x84\x1c\xf7\xe9\x8e\xcf\ +\x9c\x05\xfa\xd1\xc9\x77\x75\x7c\xd6\x02\xfc\x1c\xba\xa0\xe3\xb9\ +\xbf\x83\x73\xb4\xf8\xc1\x0e\x76\x4e\x3e\x01\x9f\x40\x87\x4f\xff\ +\xb4\xe3\x85\x0f\x03\x7e\xd2\x6f\x76\xfc\xcb\x1b\x75\x84\x7c\xfe\ +\x0b\x1d\xbf\xf9\x25\xd0\xc1\x99\x37\x77\x36\x5d\x06\xf4\x7d\xf5\ +\x07\x3b\x5b\x67\xc1\x3e\x9d\xf1\x1f\x9d\x07\x7e\x02\xf0\x47\xfe\ +\xd4\x79\xe8\x65\xc0\x27\x6f\x3a\xa7\x73\x73\xa9\x0f\xce\xf3\x2f\ +\x3a\x3f\xfa\xdc\x4f\x61\xff\x7f\xda\x39\xf9\x5d\xa0\xaf\x4f\x3f\ +\xd9\xf9\xc9\x56\xe0\x03\x66\x4b\xe7\x67\xee\xbc\x03\xd6\xd3\xd7\ +\x79\x6d\x0a\xf4\x9e\xef\xbf\xdc\x79\xe3\x5b\x37\x01\x1f\xfb\x58\ +\xe7\xa3\x97\xc0\x39\xbc\xef\xa2\xce\x17\x7e\x00\x74\x7d\xf2\xea\ +\xce\x5f\x2c\x80\x73\xdd\x73\x52\xe7\x1f\x1a\x0f\x21\xa4\x7b\x41\ +\xe7\x1f\x96\x80\x7e\x71\xdd\x55\x9d\x7f\xfa\x28\xd0\xcb\xcd\x7b\ +\x81\x18\xff\xf6\x1c\x80\x8c\xcc\x27\xfd\x64\x0c\xfe\xb3\x49\x89\ +\x38\xf8\x69\x90\x02\xfe\x5c\x24\x6e\x33\xb2\x7c\xf8\xbf\xa5\x3f\ +\x93\x31\xb6\xb8\xb6\x53\x04\xea\x24\x1d\x83\x9e\x99\x2d\x7e\x14\ +\xbe\xc3\xaf\x6a\xe8\x38\xe3\xa1\x71\x2c\x18\x87\xfe\xa4\x8c\x06\ +\x3f\x9b\x24\xc3\xbf\x37\xf1\x2f\x2e\xc9\xc1\x1b\xf4\x7f\x07\xde\ +\x30\xc9\x72\x32\x4a\x7c\xf8\x5e\x7c\x63\xc0\xff\x3e\xfc\xec\xc3\ +\xfb\x16\x8e\x62\x05\x30\x75\xc3\xfc\xbe\x61\x1a\x05\x0a\x83\x51\ +\x74\x0d\xd3\x31\xac\x3d\xb6\x5f\xb4\x9d\x31\x63\xd2\xf6\xac\xe5\ +\xa3\x7e\x21\x67\x3b\x56\x39\x90\x7b\x23\x20\x7b\x38\xa5\x09\xd3\ +\x1b\xf0\xbb\x07\xdf\x17\x10\xc8\x5e\xfa\x5f\x30\x71\x27\x45\x06\ +\xcc\x37\xe6\xb9\xa5\x42\x6f\x6f\x2f\x1d\x7f\x56\x30\xfe\x88\x7b\ +\x0a\xfd\x1e\x67\xb8\x25\x06\x29\x39\xb2\x18\x46\x1c\xc3\xdf\x8a\ +\x1c\x2d\x3e\xfc\x9c\x83\xff\xf7\xc2\x93\x2e\x22\x87\x7d\xdf\x8d\ +\xff\x8e\x21\x3a\x0c\xed\x2d\xbb\xcc\x5b\x36\x59\xa2\xa1\x59\x5f\ +\x47\x25\x74\xae\x40\x74\x16\xc7\x2d\xc3\xb7\x72\x56\xba\x68\x65\ +\x0c\x77\xf4\x2c\xf8\xa1\xdb\x5f\x12\xc6\x2e\xae\xbc\xfc\xb2\x6f\ +\x80\x65\x17\xf8\x2e\xa6\x71\xa7\x73\x7c\x99\x05\x04\xc0\x87\xdf\ +\x3c\xbe\xbb\x14\x50\x1b\x11\x9e\x46\x6a\x10\x7f\xc9\xe0\xe2\x72\ +\xfc\x6d\x41\x1f\xec\x29\x0f\x9f\x41\xf0\x71\xb1\x55\x21\x28\x58\ +\xf0\x31\xfd\x05\x20\x0f\xcb\x37\xd2\x25\xcf\xb3\x80\x84\x28\xad\ +\x00\xe1\x64\x8a\xe3\xb0\xd8\x8c\x91\x76\x73\xae\x47\x57\x1e\xc2\ +\x87\xaf\x2e\x1c\x86\x98\x1a\x2e\x4e\xe5\x2c\x5c\x78\x4f\x64\xe1\ +\xc3\x08\x4a\x0e\x01\x1d\xd0\x41\x0f\x00\xd9\x1f\x47\x31\x06\x38\ +\x18\x38\x5c\xf9\x39\x9a\x61\x0e\x8f\xa2\x21\x78\xbf\xae\xdf\x4b\ +\xd3\xe7\x5b\xf8\xf3\x5e\x1a\x1f\x74\x60\x42\x8f\x63\x8d\x91\x82\ +\xc9\x5e\x04\x62\xa6\xc0\x8c\x90\xad\x64\x03\x9e\x42\x4a\xf8\x0c\ +\x8f\x63\xf0\xaf\x03\xcf\xd8\xf8\xac\x05\x0b\x32\xc8\x46\x98\x70\ +\x3d\x39\x0d\x96\x32\xa0\x3c\x3d\x81\x7b\xc2\xf6\x0c\x9f\x95\x84\ +\x34\xe0\x59\x66\x11\xf0\x0a\x14\x63\x7a\xe9\x5e\x63\x60\x64\xeb\ +\x06\xc4\xa3\x63\x16\x7a\x8c\xe1\x75\xeb\x87\x46\xe8\xaf\x69\xd7\ +\xf1\x8b\x9e\x69\x3b\x31\xb0\x77\xc0\xac\x74\xb7\x3c\x44\xa4\x1c\ +\xbb\xa1\xdf\xf3\xcc\x29\xfa\x42\xab\x78\x01\x7e\xc7\x57\xce\x0f\ +\x2d\x97\x7e\xe6\xd5\x41\x02\x86\x63\x72\x12\xa3\x24\xe9\x71\x72\ +\x31\xf1\x7c\xaa\x7f\xcd\x28\x88\x4b\x74\x5e\x03\x20\x8f\x0b\x10\ +\x00\xbc\x29\x67\x7a\x06\x90\x91\x07\x84\x63\x3a\x63\x25\xfa\xab\ +\x49\x61\x36\xb2\x9e\x9b\x87\x27\x42\xc4\x15\xbb\xb4\x59\x64\x0d\ +\x59\x06\xf8\x0f\xf8\x62\x30\x55\xf3\x9a\x65\xc3\x01\x8f\x6b\x67\ +\xef\xad\x61\xdf\xe0\x9b\x57\xc4\x20\x65\x14\xc6\xd2\x79\x6c\x1e\ +\xfe\x96\x43\x42\x5d\xa6\x70\xeb\xf7\x96\x4a\x06\x24\x92\xf2\xa5\ +\x5c\xd1\x2e\xe4\xac\x65\x8c\x93\x8f\x2e\x63\x6c\x3b\x19\xe1\xc4\ +\x2c\xba\x03\x40\xb0\x90\xd4\xc7\xe9\xfe\x04\x53\x36\x0e\xd8\x5e\ +\x9a\x1d\xad\x36\xf6\x16\xfb\x02\x5f\xba\x2a\x72\x5a\xd2\xea\x20\ +\x55\x62\xa3\x1f\x9e\x1a\x51\x9e\x8b\x12\x8c\x20\x41\x9d\x63\x09\ +\x42\x64\x2c\x42\xf2\xaa\x13\x24\xb6\xd2\x08\x73\x18\x39\xfd\x1b\ +\x46\x24\xab\x32\x28\xa9\x51\x56\xa2\x30\xac\xe8\x8a\x53\xb0\x9e\ +\x1c\x83\x46\x9e\xaf\x81\x9c\xcb\x88\x89\x13\x21\xfe\x8e\x8f\xf7\ +\xc9\xc7\xab\x95\x49\xc1\xf0\xef\xc7\xe1\xca\x49\x99\xd8\x69\x0f\ +\x81\x69\xc7\x51\x80\x66\x70\x82\x90\x44\x08\x86\x4e\xc1\x2b\xbe\ +\x65\x6c\xe0\x67\xa1\x33\x18\xc7\xb7\x36\x08\xc2\x38\x55\x19\xcb\ +\x8a\x8e\x85\x7b\x3e\x8e\x7f\xf1\xf9\x62\x8a\xf8\x6d\x06\x45\xa6\ +\x05\x0b\x75\x70\x7f\x32\x0a\x51\x1d\x8c\x53\xb0\x25\xa1\x00\x19\ +\xb5\xa8\x84\xcc\x78\xe6\xa4\x53\x16\x90\x79\x40\x46\x36\x1e\x3b\ +\x17\x8e\x08\x9d\x70\x4b\x44\xe5\x6a\xdb\x6a\xe5\xdd\x09\x2b\xa2\ +\x75\x0d\x5a\x39\xa9\xc2\x9c\xa5\x0d\x64\xc7\xea\x5c\x19\xed\xf4\ +\x47\x75\x2e\xc6\x08\x93\xeb\x5d\x2b\x18\x60\x52\xf5\x62\x9c\x2c\ +\xa4\x7c\x51\xa6\x17\xd5\xbf\x34\xe0\x1f\x8a\x61\x4e\x67\xe3\x52\ +\x8a\x48\x37\x25\xf8\xab\xf9\xde\xb0\xa1\xaa\x0e\x29\x43\x29\x23\ +\x80\x3c\x47\x87\xdc\xa7\x4d\xf2\x68\x66\xec\xbc\xe5\xf8\xb6\xeb\ +\x4c\xcf\xba\xc2\x27\x96\x0a\x82\x31\x78\xbb\xa8\xd0\xcc\xa0\x18\ +\x0e\xb1\x35\x9b\x7c\x28\x8c\x1b\xa9\x9e\x07\x8f\x96\x7d\x7d\x0e\ +\x20\xd0\x42\x61\xe8\x22\x67\xcb\x30\x75\x57\x19\xc2\x9d\x74\xc6\ +\x3c\x33\xa3\x1e\x9f\xe0\x3b\x2e\x4c\xd6\x72\x22\x71\xf9\x01\xaa\ +\x4e\x33\x35\x70\x17\xa2\x4f\x17\xe0\xdf\x3f\xf2\xb7\xf2\x81\xf6\ +\x64\xe3\x1e\x31\x69\xeb\xe2\xb3\x94\x1a\xe8\xac\x59\xf8\x4c\x6b\ +\x6a\xc1\xda\xb5\x7b\x0a\x39\x37\x13\xcf\x59\x7c\x03\x08\x0e\x10\ +\x6d\xe7\x41\xc6\x78\xe2\xcb\x1e\x4a\xa0\x7e\x69\x14\x76\x03\xd0\ +\x9f\x35\xd3\x96\x5f\x76\xe1\x5d\x64\x10\x89\x73\x10\x41\xc8\x02\ +\x28\x06\x57\xee\x76\xe3\x32\x80\x6b\x48\xe3\x00\x07\xa0\x3b\x3b\ +\xbc\xdb\x2a\xa6\xc7\xe9\xa0\xb3\xf9\xa0\xf4\xdf\x95\xec\x6b\x2e\ +\xa8\x06\x15\xce\x22\x49\xaa\x09\x9e\x9c\x84\x83\xa4\xc8\x37\xfe\ +\x0d\x3f\xf4\x5b\x10\xab\x33\xd9\x01\x1f\x28\x47\x50\x74\x16\xdf\ +\xca\xe1\x13\x06\x67\xaf\x1a\x40\x8a\xcd\xb3\x6c\x4b\xa9\x58\x06\ +\xbb\x2e\xa8\x79\x06\x87\xcf\xf0\xc7\x2d\xab\xd8\x5b\x06\xf0\x59\ +\x70\x3c\x5d\x9c\x28\xcb\x14\xe4\x60\xf8\xfa\xb5\x19\x1b\x49\x3f\ +\xc5\xde\xa2\xbf\xe2\x2b\x2b\xc3\xaf\x94\xb1\xa0\x4c\xbe\xf2\x09\ +\x05\x8d\x07\xd2\x51\x18\xd0\xb0\xc7\x36\xf0\x52\xa9\x63\x85\xe7\ +\x31\x80\x13\xd0\x03\x91\x47\x1a\x35\x2b\x08\x9a\xd6\x21\xdb\xb1\ +\xfd\x71\x43\x70\x36\xae\xa5\xb3\x6f\x03\x0e\x7f\xf2\x74\xe3\xf1\ +\x3d\x72\x60\x87\x84\xe0\x11\x82\xc9\xa3\xcf\x06\xf3\x75\xb1\x91\ +\x91\xc1\x70\x0b\xa5\x38\xee\x96\x8a\x46\x1a\x44\x0a\x45\x39\x43\ +\x5c\x3c\x18\x97\xc7\xb0\x58\x15\x04\x76\xa8\xe8\xe6\x97\xb8\x82\ +\xcc\xe4\x86\xfd\x1e\x6b\x7f\xc7\x48\xa6\xb9\x92\xab\x7d\xc9\x55\ +\x3e\xbe\x77\xc1\x22\x53\x00\x62\x78\x97\xea\x85\x22\x10\x7e\xb8\ +\x0d\xf5\x68\x97\xc9\x76\xf9\xf8\x46\x90\x68\xca\xe3\xf4\x57\x7c\ +\xfc\x47\xea\xe3\x33\x38\x6f\x02\xc1\x2b\xdf\x7b\xe4\x6a\x32\x2d\ +\x1d\xd9\x76\xfa\x24\xe5\xb4\x72\xd1\xbb\x36\xa2\x18\x8f\x3d\xd4\ +\xa3\x56\x71\xd2\xb2\x1c\x63\x25\x93\xf1\x7e\x15\x12\x2d\xed\x16\ +\xa6\xe2\x50\xd9\x46\x36\xc3\x21\xce\x22\xaa\x8a\x52\x29\xdf\x9c\ +\xcd\xfa\x56\x51\x51\x51\xd9\x17\xf8\xca\xf7\x23\x4a\xb9\x2b\x87\ +\x20\xd2\x49\x90\xd4\xa3\xf2\xbf\x03\xef\xeb\xd8\x0a\x63\x38\xd3\ +\x0c\xb0\x1c\x45\xda\xd2\x18\xa4\xe9\xc8\x89\xfa\xf7\xe6\xa8\x26\ +\xab\x1d\x58\x0e\x8a\x46\x2e\xd5\xb6\x54\x8c\xb2\xda\x10\x68\xa9\ +\x91\xc7\xf7\x45\xc0\x11\x2a\xe8\x18\xee\x8c\xb0\xc2\x55\xeb\xfb\ +\xbd\x65\x3e\x8a\x7d\xee\x59\xcc\x24\x07\x3b\x7d\x6a\x2c\x89\xde\ +\xa6\x48\xb6\x2d\xec\x1d\x2e\xd9\xb6\xe8\x8b\x92\xb2\x9c\x3f\x56\ +\xe6\xc5\xb3\x22\xd8\x89\x7a\x24\xdc\xff\x19\x46\x1d\x80\xb4\x24\ +\xca\x7c\xb9\x7b\x22\x6c\x57\x2a\x1a\xd1\x56\xf1\x04\x82\x7d\x00\ +\xd7\x26\x35\x30\xa5\x2e\x19\x3c\x5c\x76\x80\x14\x0c\xc0\xb5\x59\ +\xc9\x0a\xb6\xba\x45\x80\x4b\xa1\x6a\xf6\x05\xbe\x70\x9f\x7c\xa1\ +\x6a\x36\xfc\xbf\xe3\xd8\x6f\x65\xab\x89\x67\xb8\x49\x4f\x7e\x5a\ +\xfa\x01\x74\x06\xa0\xa0\x2a\x05\xa0\xa7\xd1\x8b\xad\x18\xf6\xc3\ +\x69\x33\xa7\x1a\xf6\xf8\x3b\x3e\xfe\x96\x7c\x7c\x06\x02\xae\x80\ +\xd8\x60\x56\x62\x26\x64\x6f\xea\x76\xe8\x28\x7c\xef\xbf\x57\x87\ +\xbb\xea\xdd\x38\x1d\x11\x50\x46\xfa\x71\xdf\xdc\xa8\xe9\x5b\x8c\ +\x1f\xce\x80\x31\x47\xf0\x7c\x18\xac\x21\xde\xc0\x54\x5c\xf4\xd2\ +\xfc\x1f\x66\x86\x61\xe0\x6a\xdf\x8f\x8f\x87\x5f\x4b\x5f\xfb\xe5\ +\x31\xa3\x1a\x68\x20\x8a\x9d\x2b\xb7\xa3\x26\xba\x1e\x9c\xd0\x53\ +\xcc\xe2\xf7\xb9\x07\x84\x79\xa2\x6c\xdc\x41\x0f\xbf\x61\x66\xc2\ +\xd9\xc8\x86\x7c\xbe\xb3\x71\xf0\x1f\xcd\x00\x05\x4a\xcd\xe5\x02\ +\xbc\x52\xd5\x95\x61\xdc\xcc\x03\x66\x4d\xea\xef\x86\x27\xe8\x2e\ +\xd8\xfe\xb4\x4b\x1d\x8f\x5d\xaa\x20\x34\x1b\x89\x47\x5a\x32\x39\ +\x5c\xa0\x8b\x06\xaf\x24\x1c\x41\x1a\x9e\xe2\x00\xa2\x8b\x74\xd1\ +\xb2\x67\xbe\x62\x49\x24\x3d\xc3\xc2\x3a\x9f\x74\xbd\xdd\x54\xd9\ +\x2e\xe4\x4c\x50\xc1\xb3\x60\x3b\x8e\x59\x6e\xde\x2a\x7a\x53\xec\ +\x48\x72\xd3\x5b\x83\x7c\x0b\x7d\xb6\x86\x05\xd9\xa2\x90\x6f\x11\ +\x10\x4b\xcb\x42\x79\xad\xc2\x60\x7b\x30\x90\xe0\xe0\xee\x79\x3c\ +\x06\xc2\x0c\x6b\xb6\x9b\x54\x50\xe4\xe1\xb4\xb1\x05\x5a\x1c\x21\ +\x9e\x32\xb9\xaa\x98\x86\xa9\x42\xb5\x71\xe9\xbb\x71\x36\xee\x31\ +\x03\xae\x33\x61\x79\x45\x63\xd4\xce\xd8\x54\x74\xc0\xea\x61\x9b\ +\xa7\x02\xad\x91\xd9\xc0\x34\x88\xc2\xac\x5d\xd5\x11\x29\x56\x35\ +\x6e\x16\xac\x95\x83\xdb\x6c\x6b\x12\x57\x35\xaa\x08\xc2\x89\xc0\ +\xf3\x64\x80\xed\xbd\x05\xb7\x30\x8b\x3e\x2b\x17\x55\xe9\x41\xf8\ +\x96\x29\x7f\x33\x73\x43\x2e\x15\x02\x10\x81\x30\x56\x0e\x1a\x13\ +\x00\x06\x58\xb2\xd9\xd8\x58\x4f\x19\x88\x0d\xb2\x8d\xc3\x49\x61\ +\x8e\x81\x32\x98\xaf\x5d\x9b\xa7\xc2\x90\x5d\x68\xed\xfa\xc1\xe6\ +\x8c\x22\xa5\x7a\xdc\xd9\x40\x97\x51\x50\x07\x75\x27\x8d\x61\x60\ +\x47\xc6\x1a\xd3\xd3\x06\x75\x27\xe9\xd7\xf0\x2d\x0e\xba\x2e\x34\ +\x68\x2e\x32\xb4\x8a\x49\xf6\x5c\x29\x70\x74\xd9\x31\x53\xcf\xa5\ +\x53\xf8\x7c\x97\x29\x43\x04\xbe\xe7\xe6\x46\x2b\x42\x71\x6a\x48\ +\xd1\x59\x8c\xc4\xef\x70\x89\x2e\xf6\xa9\x9c\x74\x10\xf1\x43\x1d\ +\x8e\x85\x6a\xa4\xc9\x71\xa8\x04\x8c\x38\xdf\x14\x4b\x64\xc4\xda\ +\x23\x34\xd8\x11\xc1\xbd\xa4\x05\x48\xff\x1a\xf7\xf0\xa9\x20\x56\ +\x84\x6f\x81\x06\xa8\x99\x87\xc4\x54\xbe\x33\xb8\x8f\xc2\x44\x14\ +\x16\xc9\x6b\x5c\xe0\x08\x54\x06\x8b\x93\x9e\x89\x11\x77\x0c\x34\ +\x21\x2e\x3d\x4a\x69\x80\xda\xd8\xe8\x32\xd7\xdb\x7c\x3e\x3f\x3e\ +\x31\xc0\x1f\xa0\xeb\xa2\x0f\xf0\x48\x97\x0e\x51\x26\x06\xa2\x5c\ +\x19\xb8\x06\xe2\xe0\x52\x10\xcd\x44\xba\x87\x4f\xf9\xe8\x5a\x8e\ +\x1e\x2f\xe9\x15\x5a\xce\xa0\x64\x52\x54\x85\x15\x57\x83\x6c\xd2\ +\x01\x3c\x06\x4a\x4e\xb2\xf5\x6d\x4a\x80\xf1\x72\xeb\xeb\xe2\xcc\ +\xb1\x88\x2c\xb1\x04\x7f\xeb\x0a\xa0\x3d\x40\x62\xbd\x68\x3b\x25\ +\x2b\x40\xf9\xdc\x10\x48\xf8\xd7\x00\x9c\x8b\x35\x70\x8c\x40\xc4\ +\xbc\x0b\x90\x42\x08\x4f\xa3\xf8\x61\x91\x05\xe1\xa4\x43\x07\x27\ +\xdf\x84\x09\x0d\xe9\x3d\x21\xa4\xcb\xb5\x48\x84\xa7\xdd\x7c\x1e\ +\xd8\x2f\xc3\x78\xe5\xe5\x3d\x0d\xcb\xcb\x21\xb3\xf5\x34\x4f\x55\ +\x3e\xb2\x10\x06\x1c\x63\xce\x25\xfe\x97\xbd\xe8\xbf\x52\x29\xa9\ +\x6a\xb6\xac\x08\xa3\x2e\xfc\x97\x59\x40\x76\x90\x10\xd0\xc5\x45\ +\x11\xfb\x6b\xe0\xfd\xe5\x52\xdf\xc2\x79\xe5\x2e\x0f\x0d\x4f\x9a\ +\x05\xdf\xc8\xd8\x3e\xc8\xea\x29\x23\x4f\xf1\x12\xc3\xd8\x03\x59\ +\x45\x83\x15\x59\x8f\xea\x23\x54\x5e\x65\x73\x66\x91\x7a\xa2\x90\ +\xf1\x1f\xa8\x22\x6e\x90\x0d\x18\xe0\xed\x8c\xc4\x54\x3a\x23\x4c\ +\xca\xec\x00\x4e\xb5\xea\x82\xa6\x05\x6e\x45\x02\x16\x31\x86\xca\ +\x0e\xdb\x2a\xc5\xbd\xc9\xa7\x3b\xc5\xb3\x33\x8a\x5f\x91\x7d\x4b\ +\xbf\xc4\xf1\xd7\x24\x66\x41\xda\x2c\xaa\x7e\x11\xcc\x38\x5f\xa5\ +\x67\x26\x53\xc6\x6c\xd8\x27\x67\xb9\x9b\xcd\x96\x07\x61\x69\x02\ +\x10\xc2\x02\x43\x2c\x4e\x08\x06\x6d\x64\x2a\xad\x70\xe4\xe3\x13\ +\x2d\x4e\x11\x48\x95\x97\xa5\x88\x49\x60\x8c\x70\x42\xe3\x96\x15\ +\x4c\x3e\x1f\x64\x93\x87\x24\x90\xc6\xc9\xd7\x06\x31\xb8\x8c\x42\ +\x14\x8d\x23\x9e\x9d\xb7\xf6\x28\xf6\x1f\xfb\x82\x0e\x51\x73\xa2\ +\x36\x04\x63\x58\x96\x3a\x0c\xa9\x26\x0b\xa9\x47\x1b\xc1\x0b\x82\ +\xa7\x3e\xb2\x33\x66\xfa\x6b\x51\x99\xf7\xc8\xc0\x13\x79\x59\xa1\ +\x38\x1c\x89\x4b\x09\x72\xf9\xd3\x39\x4e\x05\x25\xfc\x74\xf0\xb9\ +\x3c\xfe\x45\x37\x18\x6d\x55\x9d\x0e\x90\xfc\x49\x8a\x53\x9f\xee\ +\x18\xb0\x54\xcb\x89\xcf\x8e\xea\xe1\x7f\xf7\x4a\x34\xfc\x44\x1d\ +\xf2\x40\x5f\x18\x4e\xe2\x7a\x08\xdd\x78\x5f\x58\x8c\x81\xb9\xe8\ +\xa3\xa9\xc8\x33\x7e\x78\xe8\xcf\x60\xe9\x46\x8e\xeb\xe5\xcd\x1c\ +\xb3\x27\x6d\xd4\xb3\xfd\xd8\x7d\x06\x15\xb3\x1f\x55\xa8\x92\x92\ +\x28\xb5\x38\x48\xe5\xc8\x07\x7b\x1a\x17\xb5\xdc\xef\x34\x27\xe3\ +\x1a\x39\xd3\x2f\xaa\x81\x47\x1e\xa5\xa5\x7f\x0b\x1c\xe6\x9f\xaa\ +\x7e\x16\x12\x0e\x99\x8b\xef\xca\xa5\x74\x55\x1b\x74\x3f\x8a\x42\ +\x28\x82\xee\x74\x0d\x18\x6e\x97\x78\xcc\x96\x0d\xc7\xc7\xad\xf0\ +\x01\x2e\xa0\xf5\x3c\xbd\xea\x64\x98\x38\x25\xe9\x88\x69\x16\x0e\ +\xb8\x5b\x44\x46\x7b\x7c\xc5\x78\x8b\x97\x6b\x62\xdc\x12\x9a\x6d\ +\x3e\xff\x7b\x34\x02\xfa\x91\x53\x5d\x24\xaa\xb2\xe1\x4f\xd7\xb1\ +\x90\x54\xd3\xcc\x74\xf3\x31\x7c\x04\x0f\x51\xf1\x87\xc4\x98\xb5\ +\x73\x39\xf8\x1d\x49\x17\x9f\x2c\x39\x76\xd1\x92\x91\x51\xee\xbc\ +\x3c\xad\x20\xe3\xa2\x07\x70\xab\x47\x26\x32\xa8\x6e\xc6\x26\xfe\ +\x68\x99\x97\x6f\x55\x0c\x02\x69\x74\x6e\xe7\xa6\x2a\xcd\x7d\x1c\ +\x0c\x7e\x5b\x42\xd4\x24\xa5\xe9\x52\x94\x2c\x4e\x37\xa5\x60\x2c\ +\x9d\x5b\xcf\xc4\x67\xbc\xa1\x6c\xba\x12\xae\x6c\x3b\xcd\x78\xe8\ +\x1e\xa4\x1f\x4b\xaa\x0a\x62\xd1\x37\xb8\x4d\x12\x2c\x57\x3a\xed\ +\x70\xc0\xb8\xa7\x4f\x8e\xf1\x01\x08\x25\x6a\x0b\x89\x66\x78\xd0\ +\xbf\xaf\x89\xcd\x20\x5b\x30\x20\x08\x42\x28\x44\xb8\x16\xaa\x0b\ +\xad\x91\xa9\x65\xfb\xcb\xf9\x47\x5c\x35\xd7\xaa\x87\x87\xc6\xe3\ +\x26\x35\xcb\x4e\xda\x89\x73\x00\x4a\x92\x4c\xd1\xc1\x15\x54\xae\ +\x48\x49\xfa\xea\xcf\x15\xa9\x36\x44\x5f\x7e\xff\x29\x25\xbb\xaf\ +\x6f\xd0\x36\x73\xee\x18\x7c\xe6\xc6\x86\xad\x22\x4d\x45\xf1\x71\ +\x50\x1c\x66\x08\x60\x64\x09\x5d\x54\x0a\xf8\x81\x8c\x90\x9a\x2f\ +\x8f\x1f\x2b\xf4\xb0\x11\xcd\x53\x9b\xa7\xd6\x0c\x83\xc1\x7f\x4a\ +\x30\xfd\xa1\x30\xbd\xe5\x39\x40\x14\xc6\xf0\xb6\x53\x8c\x2d\x66\ +\x91\xfe\xea\x1b\x39\x37\x1d\xb8\x83\x12\x80\x35\x2f\x64\x9d\x8b\ +\x24\x08\x95\x0e\x5a\xfb\x73\x93\xe6\x14\x48\x17\xb0\xa9\x13\x0e\ +\x7b\x1d\xcf\x3c\x96\xf2\x56\x1b\x9a\x54\x4a\x9b\xed\x0e\x34\x9e\ +\x51\xbe\xa3\x8c\x23\xb3\x34\x5d\xfa\xb3\x70\xfc\x31\xcd\x56\xc6\ +\xe6\x99\x9b\x50\x4d\xdf\x5d\x1c\x92\xfb\x2e\x59\x22\x73\x0a\xc4\ +\xb2\x98\x07\x21\xe0\x57\xdd\xa0\xea\x9a\xa3\x5c\x4d\xa3\x3b\x6c\ +\xec\xb6\xa6\x96\x24\x5c\x78\x0a\xd3\x63\xe9\x82\x73\x6a\xd6\x28\ +\xbc\x92\x70\x80\x39\x40\xb3\x94\xbb\xee\x86\x55\xe6\x70\xad\xe3\ +\xb0\x9e\xa3\xe4\x66\xac\x31\xd3\xbb\x7d\x90\x3a\xe3\xc6\x51\xef\ +\x6a\xc8\xa3\xe3\x86\x3c\xfa\x5d\x0d\x79\x6c\xdc\x90\xc7\x26\x1c\ +\xf2\x4e\x3c\xaa\x8c\xb5\x0a\x95\x4b\xfa\x79\x99\x22\x59\xd0\x4c\ +\x3d\x5f\x11\xdb\x19\xc2\x32\xc6\x58\x02\x83\x2a\xd6\xd9\xd6\x8f\ +\x2b\xfe\x48\x36\x3a\x63\xf2\xaa\xd8\x5b\x05\xcc\x64\x09\x1f\x51\ +\x38\x73\x6d\x24\x59\x17\xb9\x9c\x89\x87\x55\x5a\xc2\x27\x0d\x8c\ +\x5b\xe9\xdd\xcc\x79\x6c\x67\x8d\x29\xb7\x64\x4c\x9a\xb4\x16\x80\ +\xc6\x55\x81\x5f\x03\x29\xad\x1a\x64\x12\x0c\x53\xd8\x47\x2d\xc3\ +\xce\x17\x5c\x8f\x0a\xc7\xa2\xeb\xf6\x26\x44\xcc\xdf\xff\x7f\x40\ +\x0c\x7d\x72\x14\xe5\x54\x9a\x6b\x07\x7a\x7e\x88\xc3\x3d\xd4\x14\ +\x65\xf2\x1d\x07\xed\x46\x89\x2c\xa6\x7d\x18\x60\x1b\x2d\x41\x69\ +\x66\xa1\x36\x53\x0e\x95\xd2\x21\x3a\x5c\x01\x91\x8e\xeb\x2c\x73\ +\xc0\x3c\xce\x18\xa3\xc0\xda\x76\x03\x4e\x47\xad\x31\xdb\x71\x58\ +\xa2\x1f\xcd\x95\x37\x96\xc6\x61\x37\x21\x72\x67\xeb\xc9\xba\xda\ +\x51\x6b\x66\xd9\xaa\x89\xcf\x59\x74\xac\xa3\x23\x63\x25\x3d\x60\ +\xd1\xb1\x8e\x8d\x8c\x95\xf4\x64\x0d\xa2\xb4\x96\xb5\x0d\x79\x54\ +\x43\x0a\x81\x62\xcc\x98\x73\xb8\x36\x42\x84\x31\xc2\xa9\x2d\x07\ +\x0d\x60\x61\x42\xde\x2c\x14\x10\xd3\xa8\xe7\x62\xd9\x42\x42\x70\ +\x56\x83\x2c\x14\x35\x09\x6c\x12\x15\xa0\x52\xe0\x14\x16\xae\x29\ +\x0e\x78\x00\xc0\x6c\x09\x00\x25\x02\x50\x1c\xad\xc4\x5c\x6b\x9b\ +\xa2\x61\x05\x12\x44\xfa\xb4\x07\x84\x8a\x54\x85\x60\x9f\x13\xef\ +\xd4\x94\x91\x34\xd5\xc9\x98\x70\xcc\xa5\xa1\x1d\x93\xc8\x28\x3f\ +\xcf\x6c\xcd\x01\x8a\xd5\x23\x09\x67\x3b\x9e\x6c\x0a\x8e\x37\x13\ +\x9c\xe1\xb2\x9d\x24\xf3\x1f\xa8\xcd\x8f\xc1\x34\x83\x1e\xdc\x2a\ +\xd0\x28\xf4\xf1\xd8\xc4\x46\xa6\x01\xf3\x88\x0e\xb3\x09\x12\x0c\ +\xbb\x42\x19\x36\x9a\xf8\x69\xf2\x68\x95\x08\xbd\xa5\x15\xa6\x74\ +\x10\x9f\xb0\x60\x52\xef\x5c\xd1\xb3\xd3\x6a\x50\x26\xc1\xd4\xbd\ +\x64\xb3\xc2\x97\x6d\x05\xb9\xd9\xc0\x13\xc0\x0e\xe0\x20\xd9\x41\ +\x86\xe4\x46\x0e\xee\x18\xa2\xae\xd4\xbc\x09\xa6\x64\x81\x62\x33\ +\xe9\x8c\x87\x85\xc8\x86\xe9\x5a\x74\xd6\x2c\xe7\xd6\xaa\x0d\xde\ +\x3e\x68\x65\x4d\x30\x26\xaa\xa2\x95\xad\x81\xbb\x76\x2f\x17\x0d\ +\x71\x93\x98\x8a\x12\x5b\xe4\x82\xca\xe6\x76\x40\x38\xc5\x5a\x52\ +\xd0\x62\x01\xd0\xb8\x65\x8f\x8d\x17\xd1\x9d\x5c\xb4\xf6\xd0\x10\ +\x2d\x98\x03\x41\x76\x73\x52\x6c\xf4\xa1\xdc\xac\xc8\xd4\xa6\xc5\ +\xd1\x7e\x02\xa4\x6a\x99\x5c\x1f\x30\xb9\x68\x7a\x2b\x53\x58\x99\ +\x6a\xea\x4e\x3b\xf9\x1c\x31\x79\xd1\xca\x17\x72\x94\x16\x31\xbd\ +\x35\xf1\xa9\x1e\xe0\xf4\x5d\xe4\x46\x86\x44\x80\xd8\x93\xe9\x61\ +\xd8\x4f\xc2\xb0\x87\xee\x88\x93\x74\xfa\xbe\x08\xa1\x08\xea\x9f\ +\x6e\x72\x29\x6a\xf6\xd7\x26\x67\x54\x91\x58\xc8\x04\x01\x6e\x52\ +\x2e\x24\x5f\x69\xdd\xef\x13\x53\x6b\x91\xf7\x84\x93\x67\xb5\xba\ +\x3b\xb1\xe1\xf4\xe7\x70\x0e\xbd\xc5\x0f\x85\xfa\x8c\x87\x3f\x0b\ +\x7b\x90\x7e\x23\xf2\x4b\x2d\xb2\x1c\xc8\x8a\xfe\x5d\xf7\xbe\x1c\ +\x1a\xe4\xda\xfb\xc6\x22\x63\x83\x65\x66\x2c\x2c\xf3\x72\x27\x0d\ +\x5f\x54\xf3\x25\x00\xfb\x54\x9c\x68\x42\xa1\xcf\x0c\xb1\x03\x4c\ +\xa5\xd1\x28\xd3\x03\x2d\x02\xe4\xf2\x67\x7a\x9e\x02\x5a\xc1\xb3\ +\xd2\x36\xfd\xd1\xc8\x59\x13\x56\x52\x83\xa8\x43\xe6\xfb\x69\xda\ +\x59\xc3\xa0\x5b\x4c\xac\x9a\xe9\x83\x1c\xad\x0f\x92\x54\x27\xd3\ +\x07\x39\x56\x1f\x24\xa9\x32\x76\x7c\x4c\x88\x2e\x03\x76\xaa\xcd\ +\xbd\xc7\x5e\x60\x92\x30\xab\xb9\x1f\xf4\xf2\x51\x78\x83\x9e\x22\ +\x49\x9e\x07\x30\xaf\xbe\xed\x80\xd1\x4f\x0d\x8c\x20\x2c\x93\x00\ +\x02\x8f\xd7\x51\x08\x4d\xbc\xbc\xaf\x91\x1a\x44\x22\x3c\x28\x14\ +\x47\xf6\xac\xea\x59\x1c\xe3\x7e\xc8\x1c\x67\x71\xc2\x4f\xa6\xac\ +\x23\x80\xfb\xb0\xb5\x7b\xa8\x8a\x6e\x80\x5d\x24\xcc\x6d\x30\x93\ +\x68\xfa\x23\x5b\x85\xe5\x27\x17\xed\x4b\x43\xa7\x8c\x09\x18\x75\ +\x65\x31\xca\x18\x9f\x7f\xb8\x8a\x63\x71\x26\x16\x39\x31\xdf\x45\ +\xa5\x84\x26\x89\x27\x61\xe9\xf8\x3a\x14\xd3\xf2\xbb\x03\x87\x6c\ +\x25\x5b\x69\x74\xca\xc8\x30\x26\x94\x98\xe7\xad\x8f\x9d\x58\x66\ +\x52\x31\x13\x90\x81\x1f\x0d\x19\xcd\x39\xc5\x72\x2c\xcf\xcc\xf1\ +\x90\x91\x98\x20\xf1\x76\x24\x9e\x3d\x98\x71\x96\x98\xd1\xaf\x6e\ +\xae\x95\xb1\x87\x48\x6c\x42\x81\x1f\x9d\x31\xe4\x62\xa3\x2c\xe0\ +\xa2\xcc\x99\x73\x47\x61\x4a\x9a\x28\x57\xcd\xb1\x59\x81\xea\x84\ +\xc9\x0d\x5e\xd5\x50\x91\x61\x85\xf8\x98\x66\x1b\x0d\x1a\x1a\x7e\ +\xc1\x4c\xf3\xa2\x9a\x04\xb3\x1d\x03\x44\xc7\x5c\x57\x42\x0f\x17\ +\x61\x0b\xc1\x9f\x65\x41\x93\x66\xb8\xcb\x2c\x19\xcc\x5c\x33\x72\ +\xe6\x94\xe5\x71\x27\x3c\xb3\xa0\x93\x41\x50\xd3\x87\xc2\x8a\xce\ +\xf2\x26\x3f\xec\x2c\x1b\x60\x34\x38\x72\xcc\x66\x4c\x2b\x0e\x38\ +\xb5\x60\x8d\xfe\x5c\xe0\xfe\x61\x96\xbd\xa7\xba\x08\xb2\xc1\x28\ +\xe8\xd6\x0c\xfe\x52\xe4\x94\x22\x72\x7f\xd4\xa3\xa2\x52\xd4\xf1\ +\xdc\x5c\x14\xee\xd3\x13\xd1\xad\x2e\x5c\x13\x02\x5a\x91\xe0\xcd\ +\x5c\x11\xb6\x12\x08\xb4\x83\x04\x66\xfa\x8d\xd0\xcd\xa4\xb3\x55\ +\x50\x93\xc9\x8f\xbd\xdc\x6f\x46\xdd\x0e\x52\x9f\x87\xfd\x03\x28\ +\xfb\x8e\x67\xd3\x97\xad\xb3\x3c\x0b\xfd\x19\x69\xd3\x01\x0a\x00\ +\xf9\x97\x9d\xc2\x4a\x3d\x9a\xb6\xe6\xd2\xec\x3d\xd0\xa8\xc0\xde\ +\xa4\x1a\x06\x75\xe3\x52\x63\xd6\x57\xbf\x3c\xbe\xc0\x1c\xbb\x27\ +\x52\x5e\x00\x5f\xa1\x39\x60\x14\xc7\xc1\x36\xa0\x43\x8e\x5a\x86\ +\x99\xc9\x30\x3b\x1c\x83\x2f\x45\x50\x95\x4d\x2f\xc3\x8f\x30\x3c\ +\x96\x1e\x37\xf8\x10\x49\x0f\xd7\x28\x98\x83\x26\xc6\x7a\xdc\x20\ +\x25\xa4\xfa\xa4\x2d\x19\x9b\xce\xe0\x91\x74\x89\x88\xdc\xf9\x0a\ +\x82\x16\xac\xb3\x33\x56\x4c\x26\x97\x01\x5f\x80\x0e\x53\xf2\x93\ +\x9e\xce\x95\xb1\x40\x2f\x26\x2c\x17\xd1\x26\x32\x38\x1b\xe5\x7b\ +\x07\x28\x40\x50\x75\x6f\xd4\x72\xd2\x49\xf5\x7c\x96\x14\xca\xce\ +\x82\x70\xd1\x89\xb0\x75\x86\xd3\x8c\x98\x99\x39\xb0\xd5\xc0\x22\ +\xf3\xbe\x14\xb8\x25\x4a\xe9\xf3\x35\x22\xb3\x86\xe3\xb9\xc9\xe1\ +\xeb\xb3\x46\x9a\xfa\xcb\xac\x4c\x0f\x90\xd2\x18\xe5\x2d\x93\x54\ +\x6e\x50\x87\x0c\x60\x6e\x72\xdc\x72\x30\xe0\x98\x9c\xd9\xfc\xb9\ +\xc2\x22\xb2\xdc\x59\x4a\x8f\x42\x86\xa8\x65\xe9\x16\x07\x57\x32\ +\x5e\x3d\x86\xe9\x05\x5e\xc2\xf8\x28\x64\x25\x39\x6a\x73\x7f\x7d\ +\x26\xa0\xa8\x5e\xd4\x85\x8a\x9c\x41\x48\x99\xca\x8e\xbd\x4d\xde\ +\x21\x2c\xdd\xfb\x1d\x64\x3d\x36\x77\x9c\x05\x85\xa6\x21\xfb\x83\ +\x09\x2a\xbd\xaf\x8a\xa5\x22\x36\xeb\x59\x56\xda\xe4\x98\xa5\x69\ +\xb6\x70\xc0\xce\xc2\x80\x5b\x1a\xfe\x4d\x03\xc1\xc8\xfa\x76\xc6\ +\x5c\x31\x92\xd9\x6b\xac\xb1\x26\x4d\xcf\xea\x61\xce\x4c\x7a\x44\ +\x8b\xe6\x6e\x8b\x66\xf0\x8e\xc3\xd1\xe6\xdd\x5a\x12\x70\xdf\xb9\ +\xc1\x96\x94\x4b\x8a\x98\x26\xbf\x05\xdf\x35\xf9\x16\xe9\xa1\x97\ +\x09\xae\xc9\x4b\x4e\x7e\x36\xa6\x28\x88\x0c\xfa\x69\xce\x0d\x97\ +\x08\x4a\xc9\x23\x6e\xce\x7a\xe2\x70\x8e\xe9\x2b\x9c\x9e\xc5\x95\ +\x04\xf7\xf7\x03\xc7\x9b\x3e\x23\x73\x55\x97\xb8\x3a\x67\x07\x26\ +\xa3\xe8\x84\x20\xf3\xd3\x24\xeb\x98\x52\xb7\x4b\xc9\xdd\x91\xe7\ +\x81\x85\x77\x80\x45\x4e\x80\xd5\x41\x03\x3a\x78\x34\xe4\xa3\xc1\ +\x59\x37\x60\xab\x58\x21\x54\xaf\xb1\x19\xfe\xee\x4d\xda\xbe\x65\ +\xb8\x4e\x6e\x8a\xbd\x52\xc2\x42\x47\x53\xa4\xb5\x25\x3c\x55\xdf\ +\x4c\xb8\x85\x33\x48\x85\xd5\x36\x37\xaf\x04\xf0\x44\x3c\x60\x8c\ +\x8b\xc9\x09\x44\x78\x51\xf3\xfb\x0b\x64\xfb\x24\x92\x49\x14\x20\ +\x77\x30\x8c\xdc\x61\x95\x39\x23\x7a\x47\x2d\x0c\x08\x3a\x88\x22\ +\xb0\xe7\x3c\x94\x73\xc0\xb1\x91\x91\x17\x92\x73\x9f\xe7\x38\x9e\ +\x2a\xc7\x34\xde\x8c\xf0\x27\x13\x71\x98\xa4\xd4\x20\x5e\xb5\x50\ +\x43\x3f\x3e\x77\x95\x38\x9c\x29\xeb\x76\x44\x58\xbf\x8f\xda\x38\ +\x3c\x7c\x14\xe0\xef\x43\xeb\xb3\x3c\x9c\xe1\x2b\xcc\x5a\x51\xee\ +\x15\x11\x8f\x01\xa2\x00\xa7\xd6\x1e\x1e\xc3\x00\xbb\x68\x55\x26\ +\x30\x8d\x92\x6a\x6d\x4b\xdf\x15\x32\xcb\x25\x0c\xaa\x5a\xb5\x4a\ +\x78\x66\x80\xd6\x52\xc4\xeb\x27\xb7\x25\x9a\x63\xda\x43\x44\xf0\ +\xdb\x43\x63\x49\x6e\x4a\x7c\x3e\xaa\xa8\x17\x99\x40\x8e\xa4\x6e\ +\x94\xce\xd9\x98\xb0\x89\xc2\x2f\x43\x59\xcb\x62\x6a\x71\xdc\xb8\ +\xcd\x0a\xcc\x83\x60\x67\x76\x5b\x85\x22\xb0\x09\xcf\xf5\x7d\xc1\ +\x09\x7a\x0c\x37\x60\x17\x22\xe7\x55\x63\x3e\xa0\x8f\x79\xd4\x4c\ +\x37\x1c\x77\x59\xb5\x06\xc7\x15\x91\xad\x74\x83\xad\x2b\xc7\x51\ +\x64\x36\x2b\x93\x94\x4c\xd5\x8d\xd2\xb7\x9e\x27\x64\x07\xc8\x77\ +\x14\x94\x8a\x3e\x08\x06\x99\x24\x7a\x62\xc8\x49\x71\x08\x43\x5d\ +\x53\x21\x64\x9e\xe9\x03\x94\xac\xf4\x3f\x60\x52\x32\x21\x2d\x37\ +\xcf\x18\x01\xd2\xe3\x1c\x09\x3a\x72\x4a\x52\x91\x91\x0b\x02\x4e\ +\x8c\x12\x55\x2f\x57\x54\xdb\x97\x72\xb0\x87\xc8\xd4\xbd\xb4\xe6\ +\x13\x2b\x3f\x9e\x60\xc2\xe3\xca\xfc\x0e\x57\x4c\x32\x68\xc5\x49\ +\x86\x1f\x0d\x0d\x9c\x13\x87\x78\x19\xf5\x44\x5f\x39\xe2\x7f\xcc\ +\x2a\xc6\xd9\x03\xe8\x47\xf5\xed\xbd\xa0\x9f\xd8\x8e\x5f\xb4\x40\ +\xc1\xe1\xc9\x6a\xf4\x4b\xfa\xc3\x14\xec\xe3\x84\x45\x29\x16\xe5\ +\xe4\x8e\x21\x23\xe3\xa6\x4b\x22\x41\x2f\x01\xd5\xfe\xf6\x5d\x31\ +\x20\xc1\x3e\x58\x56\x87\xcc\x0d\x2d\x5f\x44\xa6\x2a\xcf\x12\xa5\ +\x15\x73\xb5\xb9\x2e\x19\x65\x3f\x3d\xd3\x8e\x18\xc9\x0d\x0f\xb6\ +\x26\x1b\xb7\x35\xb2\xf0\x4c\xea\xe7\xc0\xd7\x79\xae\x1b\xfc\xc4\ +\x1d\x3c\x8a\xda\xd1\xc3\x76\x21\xf4\x46\x90\x25\x9e\x70\x17\xde\ +\x9c\xc1\xd1\x09\xe7\x14\x3b\xdc\x54\xf7\xb9\x26\x61\x21\x4e\xb2\ +\x5c\xb7\x16\xda\x3f\xeb\xe8\x11\x2f\x71\x85\x02\xe7\x70\xa2\xf6\ +\x14\xa7\xb2\x8f\x3b\x32\xc6\xed\x02\xe1\x5b\x1c\x43\xa8\x74\x7d\ +\x5d\x7f\xdb\xe6\x62\x81\xe7\xfb\x04\xf8\x1f\x8f\xc3\xbf\xd0\x44\ +\x18\x3a\x1d\x17\x54\xf6\x74\xba\x04\x18\x1d\xa3\x39\xb0\x45\xbd\ +\x30\x30\xef\xd2\xa4\xb0\x71\x93\x91\xbe\xed\x64\xec\xb4\x49\x8f\ +\x95\x53\xca\x8f\xd2\xc6\x2d\x59\xc3\xca\x8c\x25\x66\x5e\xab\x67\ +\xb4\x03\xd3\x29\xde\x72\x4f\x84\x10\x8e\xcb\xe2\x17\xb9\x89\xa7\ +\x69\xfe\x51\x96\xbf\x9c\xe7\x5a\x8c\xcc\x5e\x66\x0c\x29\x4e\x8f\ +\x8a\xd3\x40\x75\x03\x43\x38\x58\x98\x51\x5b\xe0\xee\x19\x91\xb7\ +\xa5\xe7\x98\x38\x44\xe6\x64\x85\xd7\xd8\xcf\x6d\xca\x5e\x4d\xbd\ +\x8f\xec\x67\x9c\xee\x3e\xe9\x3a\x8b\x8b\xfc\xa8\xf4\x1a\xa7\xf9\ +\x56\xb6\x94\xa3\x89\xd0\x69\x8b\x29\x5c\x59\xe5\x2d\xaa\xc0\xfa\ +\x34\x37\x07\xfe\xe4\xbb\x82\xcb\xf5\x7b\x38\x0c\x1f\x30\xa9\x85\ +\xd6\x31\x83\x0d\x0e\xdb\x59\xe5\x12\x74\x55\xe9\x20\xfb\xa6\xd0\ +\x2d\x1f\x43\x64\xaa\x21\x35\x35\xea\xda\x13\x23\xea\xc3\xa9\xd0\ +\x96\xa6\xca\x72\xd1\x4e\xd4\xa4\x60\xf5\x00\xe7\xca\xce\x2d\xd3\ +\xde\x8b\x9a\x13\xbb\x14\xb7\x71\x68\x46\x51\x5d\x16\x8b\x5b\x98\ +\x8c\x31\x79\xb3\x4b\x74\x6c\xf1\xdd\x9d\x0a\xd4\x07\xcf\x72\x32\ +\x96\xc7\xb8\xa4\x96\x2b\x1c\x14\xf1\xa6\x5d\x8f\x7a\xd1\x8c\x2a\ +\xc2\xb2\x35\x2b\xdf\x95\x74\x4a\xe6\xd0\x11\x92\x49\xe6\x1d\x32\ +\x95\x55\xe4\x54\xa9\x39\x90\x99\x18\xde\x19\x6e\x7d\x66\x27\x34\ +\xaf\x7b\xa6\x9d\x5b\x18\xdf\x6c\x7e\x76\xaa\x33\x9c\xab\x86\x73\ +\x2b\x45\x5e\xb3\x3c\x91\x1f\x8f\xdb\x58\xcc\xd5\x52\x15\x5e\x9e\ +\x4c\x19\x34\x63\x0b\x58\x2c\xf5\x7f\x08\xbf\x54\xaf\x01\x63\x01\ +\x3b\x56\xde\x1f\x95\x76\xa3\x62\x79\x17\x60\xc7\xd1\xf8\xa6\x39\ +\xcd\x49\x13\xe6\x8c\x20\x12\x21\x02\x5c\x7a\x6a\xdb\xd2\x60\x49\ +\x1d\xeb\x51\x77\x32\x96\x56\xe3\x19\x8f\x19\x5f\x66\x14\x6e\x06\ +\xc4\xf5\xcb\x58\x03\x1f\x7f\xf3\x40\x3f\xcb\x08\x4c\x38\xc3\x48\ +\x64\x06\x79\x26\xc5\x79\x57\x1d\x5a\x61\x85\x5f\x10\x88\x76\xc6\ +\x03\xa8\x0c\x0e\x15\xf3\x0e\x8f\xba\x25\xaa\x22\xd2\x4e\xb4\x5c\ +\xd1\x48\x0a\xe5\x21\x11\x28\x29\x9f\x98\x82\xdf\xa9\x28\xf1\x23\ +\x58\xce\x99\xb0\xdb\x89\xd3\x67\xe2\xc2\x7b\xba\x36\x1f\x13\xde\ +\xe3\x33\x55\x13\xf5\x5e\x19\x59\x45\xf2\x8c\x95\x83\xf9\x7c\xef\ +\x22\x4b\x25\x8c\xc4\xe5\x7a\x74\x56\x66\xeb\xb0\xa9\x96\xb3\x00\ +\x66\xe2\x24\x8c\x6a\x22\xfa\x32\x04\xad\xb6\x05\x98\xbb\xde\xc1\ +\x44\xf3\xdc\x0c\xe3\xf7\x8b\x40\x0d\x11\xc5\x23\x32\x94\x50\xbe\ +\xe9\x41\x3b\x2d\x25\x09\xda\x1b\x24\xce\xb5\x1a\xe6\xc7\x42\xa6\ +\xb2\x77\xc7\x18\x6f\xeb\xe1\xb9\xcd\x4a\x0e\xf8\xfe\x1b\x2c\x50\ +\x0b\xba\xd7\x0f\x6f\x0e\x4c\xa5\xa4\x99\xde\x4b\x95\xb4\x0c\x86\ +\x51\xe1\xb4\x2e\x10\x11\x63\xe5\x8e\x38\xc9\x0f\x36\xd2\xdc\x42\ +\x26\x03\xa9\xcb\x2c\xe9\xf2\x5e\x81\xb9\x58\xfe\xf2\x74\x33\x26\ +\x91\xfe\x54\xf1\xfe\x2f\xa2\xe6\x7c\xb2\xa2\xb9\xe1\x32\xf1\xbc\ +\xb3\x79\x1c\xd0\x8e\x51\xc7\x65\x3f\x0e\x2a\xcc\xbc\xc0\xc6\x96\ +\xd5\xfe\x95\x21\x96\xe2\xe5\x43\x14\x37\x0c\x35\x42\x20\xb0\xb2\ +\x2a\x90\x39\x20\x6b\x40\xb7\x1b\xe6\xf1\xb3\x71\x1a\x54\xa3\xdd\ +\x07\xf2\xa6\x33\x65\xf8\x67\x97\x4c\xaa\x17\x88\xfa\x91\xbc\x18\ +\x26\xa9\xb8\xe8\x45\x9d\x40\xaf\x1f\x53\xaa\x46\xb8\x6d\x22\xea\ +\xd1\xe5\xc1\x98\xbd\xd1\xdc\x63\xb0\x42\x11\x63\x58\x16\xb1\x25\ +\x0c\x56\xa9\x48\xd4\xc6\x8f\xb7\x90\x64\x8e\x00\xcc\x6a\xe7\x4b\ +\xf9\x99\x99\x25\xe4\xe2\xea\xa7\x56\x8c\x04\x2a\x71\x26\x02\xa5\ +\x5f\xd0\x8e\xd0\x1f\x5d\xee\xeb\x10\xa9\xe6\x22\xcb\xb2\x52\x0f\ +\x85\xa3\xca\x2c\x87\x67\x74\xd3\x9a\x25\x9b\xe9\x81\x34\x1b\xb0\ +\x4a\xcf\x72\x07\x2c\x96\x01\x59\xd2\x58\x5a\xfd\x26\x37\x71\x2e\ +\x57\xb7\x3e\x06\xf2\x15\x71\x80\x18\x63\x65\x0d\x4d\x25\x4f\xe9\ +\xa0\xa3\x1b\xdd\x59\xd3\x2f\x5a\x7e\x31\x21\x3b\xa9\x59\x84\x49\ +\xb8\xa2\x3e\x54\xd0\xa2\xc5\xf5\x4e\x19\x41\xd5\xda\x09\x05\x1b\ +\xa6\xeb\x90\xf4\x1d\xe6\xd9\x10\xed\xb1\xa4\xb3\x34\x6c\x98\xc8\ +\xb2\x08\x31\xaa\x64\x06\x42\xff\x15\x5a\x62\x25\xad\x59\x9d\xd3\ +\xd3\x58\x90\xee\x22\x2b\x57\x83\x5f\xce\xc3\xc3\xd6\x17\x34\x6f\ +\x0a\xb0\xfc\xb1\x4d\x58\xa7\x9a\x9b\xea\xe1\xb1\x62\xea\x5e\x55\ +\x14\xce\x1e\x6e\x23\x14\xa8\x62\x43\xdd\x61\xa2\x2e\x11\x75\x4f\ +\xd4\x63\x59\x72\x6d\xc4\xc0\xc4\xb6\x4b\x9a\xe7\x66\x54\xa9\x6a\ +\xe4\x7e\xb3\xe4\xcc\x25\x69\x12\xb0\xae\x39\xce\xa6\x2a\xe3\x8c\ +\x92\x80\xd7\x85\x92\x80\x65\xa6\x46\xe5\x44\x58\x97\x47\x12\x59\ +\xc3\x50\x95\xe5\xcc\xdf\xec\xd9\x63\xb6\x83\x39\x33\x34\xf3\x9e\ +\xea\x39\xd5\xe6\xc3\xce\xc3\xcc\xe1\xed\xfc\xf8\x30\x8e\x00\xeb\ +\x25\x1b\x95\x83\xd3\xbe\xd5\x9c\x84\x73\x03\x33\x0c\xf4\x6f\x4c\ +\x2a\x86\xd7\x68\x3d\x63\xcd\x8a\x66\xb5\x30\x6a\x43\xe8\x90\xea\ +\xdc\x56\x34\x3a\x15\x43\x15\x8d\xcd\x6a\xd6\xd9\x06\xe0\x88\x52\ +\x75\xa5\xfd\xd9\xd6\x2a\x52\x57\x93\x93\x8c\x5e\x11\x38\x1b\x13\ +\x48\x66\x42\x32\x9f\x86\x91\xe8\x96\x4f\x10\x59\x67\x97\x8e\x10\ +\x51\xb9\x4b\x34\xa2\xa4\xa4\x57\xc4\xdb\x9a\x67\x57\xf8\x99\x24\ +\xdf\xf1\x89\x68\x34\xe2\x6a\xca\xd2\x8a\x61\xea\x25\x10\x45\xea\ +\x31\xa4\x27\x82\x31\x3e\xb5\x11\x93\xaf\x76\x5b\x6c\x1f\xaf\x64\ +\xfc\xa7\x02\x2f\x96\x39\x2d\xbc\x6b\x97\xc6\x47\x34\x1e\x95\xf8\ +\x24\xff\x4f\x77\x4e\x3a\x10\x9b\x36\xf1\xf4\xbe\x50\xe3\xa4\x44\ +\x85\x44\xdb\x62\xbc\x8d\x7a\xf7\x33\x3d\xc9\x9a\x81\x2e\xb2\x59\ +\xf5\x46\xee\xf3\x10\x98\xed\x3c\xbf\x1a\x1b\x8c\x19\xb4\x1d\x36\ +\xe8\x7a\x89\xe5\xfb\x30\x89\xab\x91\x6c\x1a\xae\xaa\x3e\x52\x1f\ +\xe6\xe8\xf0\x30\xc9\xd3\x83\xd5\x61\x8e\x0d\x0f\x93\x34\x41\x38\ +\x5c\xc4\x91\x89\xb8\x74\xd4\x4b\x25\x52\xb8\x8d\xd5\x54\x70\xcc\ +\x55\x92\x08\xe2\x15\xdb\x36\x1c\x33\xcf\x14\xb3\xc4\xa3\xea\x05\ +\xbf\xd1\xe2\xaa\xe6\x61\x5e\x4e\x9b\x18\x0f\x22\x03\x52\xad\xa0\ +\xa8\x8c\x07\x8f\x5e\x3c\x91\x70\xfc\x89\x48\x92\x3e\x4b\x0a\x10\ +\xdf\x88\xb6\x08\x31\x2c\x97\xc4\xe7\xaf\xe8\x49\x03\x46\xa0\x30\ +\xfa\xb2\x9c\x49\x51\x60\x56\x61\x0e\x32\x55\x78\x45\xe2\x1f\xd5\ +\x79\x27\x3d\xda\xf5\x00\x7d\x5f\x2c\x13\x80\x65\x9e\xb0\xaa\xa7\ +\xa4\x4a\x47\x17\x56\xd8\x39\x52\x10\x11\x35\x5d\x07\x83\xe2\x72\ +\x5b\x46\x4c\x7f\xb7\xe8\x0b\x97\x60\xec\x93\xc1\x86\x0e\xfb\x0a\ +\xd5\xe2\x16\xb5\x53\xba\x40\xaa\xda\xd7\x40\xb9\x8d\x63\x24\xe8\ +\xda\xc5\x33\x21\x80\x38\xec\xac\x0d\x7c\x72\xb7\x95\xd4\x32\x5e\ +\x19\x03\x4e\xf9\xb2\x70\xcc\x39\x50\x1a\x72\xd1\x42\x5d\x56\xc5\ +\x5f\xed\xbc\x57\xf1\x79\xb3\x64\x06\xa5\x8c\x9a\x38\xf4\xd0\x72\ +\x2e\x71\x81\x69\x84\x9e\x65\x22\x68\x0f\xcc\x23\xc3\xf3\xaa\x00\ +\x8e\xaf\xd1\xec\x1f\x41\xdd\x37\x5c\x26\xc9\x2a\xaa\xe0\x90\xf8\ +\x39\x13\x09\x2b\xb3\x27\xcb\x1e\xe3\x39\x6c\x81\x68\x4d\x2a\x4b\ +\x6f\xe0\x68\x48\x54\xd8\x44\x64\x73\x56\x3d\xd1\x4b\xba\x19\xc2\ +\x47\x4a\x6f\xa5\xca\x9c\x0f\x2e\xef\x92\x10\x77\x7f\x80\xe6\x8b\ +\x0f\xd0\x71\x02\x45\x47\x26\x5c\x4c\x05\xeb\xa5\xd9\x4a\x78\xd6\ +\x58\x13\x4d\x3c\x6a\x80\x01\xe1\xa6\xae\xaa\xde\xea\x56\x8e\x8a\ +\x38\xff\x48\x86\xfb\x55\xf2\x81\x9f\x46\x04\xc3\x2c\x6e\x48\x31\ +\x8b\x59\x55\xfa\x84\xb2\x4a\x3f\x5d\x74\x5f\xd9\x8a\xc9\xa6\xfa\ +\xea\x58\x59\x36\x0b\x26\x58\x41\x88\x81\xa1\x65\x15\x39\x81\xac\ +\x00\x95\x72\x05\xfc\x77\x84\xa2\x6b\x6f\xa4\x28\x91\x36\x77\xc6\ +\x4a\xdb\x60\x4d\x51\x32\x60\x45\x25\x4c\xdb\x77\xbd\x8c\xed\x60\ +\xdf\x11\xb7\x60\x79\x26\x4b\x3e\x46\x0d\xdd\xda\xd3\x6b\xac\x32\ +\x4e\x30\x56\xf4\xae\x58\x71\x44\x52\x5d\xfd\x6b\x1c\x45\x9e\xc6\ +\xd8\xa5\x83\x20\xda\xad\x41\x24\x67\xcb\x7e\xd3\x6a\xda\x39\x77\ +\x21\x11\x23\x54\x7a\xc0\x4a\x9a\x57\x28\x63\x3b\x8a\x0d\x2f\xbb\ +\xfb\x30\xdb\x76\x2f\xf7\x16\xda\x8a\x73\x9d\x52\xab\x44\xd6\x26\ +\x8a\x2c\xcf\xcc\xd8\x25\x5f\x73\x43\x60\x93\x15\xea\x94\xa2\xce\ +\x51\xde\xa7\x7e\xd8\xc2\xdb\x37\x56\xb0\x66\x78\x2e\xed\x9b\x56\ +\x34\x69\x30\xb2\xdb\x76\x30\x81\xdb\x4a\x8a\xad\xa1\xaa\x58\x5b\ +\xd9\x8e\x17\xb2\xa4\x8d\xae\x42\xf4\xb4\xa8\x96\xdf\xd1\x50\x90\ +\xa8\x13\x8f\xd6\x40\xa8\xdd\x5c\x19\xf5\x32\x5b\x32\x59\x7d\x44\ +\x17\x02\xc6\xca\x23\x02\x37\x9e\x65\xa6\xc7\x59\x32\xa7\xe8\xd0\ +\x32\x3d\x94\xb5\x57\x63\xcd\x82\x74\x51\xbc\x49\xca\xe7\xb4\xb1\ +\x93\xb9\x3e\x38\x47\x7a\xd9\xd5\x69\x41\xf8\x4d\x35\x1c\xd3\xdc\ +\x13\x9a\x45\x42\x92\xce\x0f\x16\x8a\xb7\x15\x56\x58\xe2\x8c\x50\ +\xab\x0b\x20\x7d\x15\xe0\xe9\xd2\x34\xfb\xa8\x36\xcf\xba\x36\x32\ +\xc3\xea\xb5\x58\x43\x2a\xbe\xec\xc8\xd6\x88\x43\x87\x47\xc8\x14\ +\x79\x37\x5b\x35\x09\xfe\x56\x50\x41\x2d\x02\xa4\xe2\xef\x6a\x7b\ +\xe3\xe9\x56\x1a\x52\x4c\x70\x9d\xba\x80\xd0\xf1\x2b\x83\xa3\x79\ +\x45\xba\xc6\x19\x26\x7a\x5b\xc8\xc5\x91\x99\xc4\xbb\x43\x3c\x7a\ +\x47\xfd\x11\x83\xa4\xb2\xa9\x5a\x0a\x71\xdf\x78\x9e\xcd\x0a\x1d\ +\xa2\x77\x57\xfd\x70\x84\xc7\x4f\xa9\x9f\xe9\xb4\xf5\x2c\xbf\xd0\ +\xa6\x29\xb4\x76\x7a\x5c\xc9\x53\x80\xef\x4b\x39\x9e\x79\x48\x13\ +\x13\xfa\x8c\x11\x9e\x7a\x2b\x33\x12\x41\x88\xf1\x14\x07\x5e\x3e\ +\xc1\x4f\x03\x1d\x8f\x5e\xe7\x44\xeb\xd6\x51\xca\xe1\x8b\x3d\x3c\ +\x00\x5b\x04\x6d\x4f\x1f\x87\xca\x40\x3a\xf3\x90\x67\x59\x03\xfd\ +\x83\x86\xd0\x07\x0d\x7f\xca\x07\x59\x89\x7c\x8c\xce\x42\xef\xb2\ +\x81\x67\x3d\x26\x1f\xcc\x6a\xda\x19\x7c\x43\x39\x96\x22\x49\x22\ +\xce\xcb\x50\x4e\x6b\x10\x1b\x12\xcd\x32\x62\x6e\x69\xd1\x69\x84\ +\x21\x3f\x1c\xf2\x90\x99\x8d\xf1\x89\xad\xd1\x7e\xb4\xbd\xaa\x98\ +\x94\x1b\x96\x51\xeb\xe5\x11\x2f\xb2\x99\xa7\x2d\xba\xbc\x71\x3c\ +\xdb\x4e\xd0\x5d\x17\x9d\x8c\x14\xdf\x09\xd5\xf7\xda\x43\xca\xa2\ +\x4b\xb6\x61\x11\x2e\xa1\x34\x89\xd6\x78\x4f\x87\xc6\x70\x6e\x6e\ +\x38\xde\x59\xa6\xa6\x37\x38\x2f\x3a\x0f\xe9\xe5\x37\x72\xbc\x43\ +\xc2\x11\x01\xa1\xb2\x49\x98\xed\x32\x10\xcb\x58\x75\x97\xec\x9f\ +\x04\x3f\xf7\x10\xd5\x8a\x92\xd6\x5a\xb9\x15\xaa\xe3\xf8\x28\x02\ +\x7d\x3e\x4a\x17\x87\x8b\x8a\xce\x2e\xc2\x9a\xda\x75\x21\x41\xd0\ +\xd1\xbb\xb4\x46\x77\x22\x75\x30\x4f\xd4\xca\x8a\x78\x18\x7b\xc8\ +\x3a\xdc\x89\x09\x22\x12\x03\x29\x27\x94\x73\xcb\x51\x55\x4c\xa8\ +\xe9\x71\xe1\xb5\xc5\xcf\xd3\x47\xd6\xe0\x51\xc9\x28\x29\x87\xef\ +\xc4\x11\x27\x2d\xd1\xc7\xbe\x1b\xc1\xc1\x95\xa9\x9f\xe1\x10\x75\ +\x6f\x6a\xbd\x2c\x23\x53\xde\xf4\x4b\xc0\x8d\x4c\xdf\xe8\xc2\xc6\ +\x55\x5d\xb4\xcc\x48\x0c\x8f\x91\x75\xf9\x80\x0f\xb6\x04\xfc\xbd\ +\x0b\xf8\x82\x9d\xed\x4a\xc1\x8c\x5d\x79\xd7\x71\xbb\xb0\x83\x1f\ +\x0c\x69\xe6\xed\xdc\x54\x68\xbc\x9e\x75\x56\x6e\xc2\x2a\xda\x69\ +\xb3\x07\x5f\x67\x8f\xe2\xc4\xbc\xa1\x0f\x4e\x92\xd2\xdf\xea\x5b\ +\xe3\xe6\x32\x5d\x09\x19\xce\xe5\x09\x4e\x50\x79\x13\x25\xae\x03\ +\x8a\x54\x52\x63\xa3\xd7\x44\xb5\xf2\xca\xf7\x48\x39\x26\x6e\xc7\ +\x64\xab\x14\xdc\x32\x8d\x6d\x54\x19\x06\xbf\xab\xec\xba\x19\xac\ +\x6e\x60\x5c\xa5\x71\x95\x45\x12\x56\xc0\xcb\x64\x58\x10\x69\xcc\ +\x87\x6d\xd3\xf2\xed\x96\x85\xaf\x84\x31\x5f\x5d\xca\x4a\x16\x7b\ +\x8a\x8a\x13\x58\xec\xb8\x9b\x31\xd2\xe3\x2e\x66\x7c\x51\x7c\xb0\ +\xf4\x66\x51\x20\xc9\x38\x2e\x67\xc1\x68\xb3\x72\xb9\x95\x34\x6d\ +\xef\x9f\xde\x15\x8a\x74\xf4\x88\x4b\x54\xe3\xcd\xf8\xe8\xa2\xcb\ +\x5d\x35\x1d\xed\x85\x8b\x69\xdf\xc8\x5a\x87\x03\x13\x51\x0f\xa7\ +\x26\x73\x34\xf4\x10\x11\xb4\xb5\x83\x35\x89\x0a\x7e\x95\x49\x27\ +\x71\x63\xe8\x50\x47\x6b\x6a\xc4\x68\xcc\x20\x30\xf1\x0a\x08\x35\ +\x19\x5e\xc5\x92\x4a\x58\x42\x8a\x87\x6b\x12\x84\xd2\x17\x26\xb9\ +\x69\xdd\x20\x14\x6f\x01\x79\xfd\x63\x62\xf2\x0a\xf9\x46\x68\xee\ +\x7b\x79\x6a\x33\x52\xeb\xb3\x21\x0f\x0b\xc6\x11\x71\x60\x96\xd6\ +\x96\x2f\xf9\x45\xfe\x0d\xd6\x8e\x45\xbc\x31\x4a\x0d\x90\x29\xa7\ +\x76\x69\xc9\x20\xad\x56\xc3\x22\x5f\x54\xd1\x78\x29\x45\x19\x57\ +\x4d\x6f\x2a\x21\xe9\xd7\xc7\x90\x3e\x6b\xc4\xec\x11\x91\x8c\x6b\ +\x6a\x69\x10\xe2\xcc\xab\x1a\x42\xc5\xbe\x1f\x31\x59\xae\x42\x27\ +\x50\xd3\x85\xe5\x26\xa7\x15\x23\x7e\x4b\x19\x8e\xcc\xaa\x0d\x45\ +\xcb\x67\x99\xe2\xd3\xa3\x49\xcb\x70\x9e\x41\x7c\xea\x8f\xe4\x3b\ +\xe7\xa9\x84\xe1\x7a\xb6\xe5\xb0\xfb\x1b\x44\xc6\x70\x20\x26\x45\ +\x5d\x05\x2b\x1e\xa4\xbb\x29\x25\x28\xe6\x12\xd3\xbd\x01\x69\x96\ +\xeb\x35\x44\xd3\x18\x18\x35\x67\x65\x8b\x3d\x5c\xb1\xe7\x93\xa8\ +\x59\x46\x49\xd9\xd5\xf1\x65\xd9\xd5\x04\x62\xce\x0d\x8e\xb1\xee\ +\x52\x93\xee\x36\xb1\x57\xba\xcd\xaa\xaa\xcf\xe1\x77\xf5\xbc\xe3\ +\x22\x1e\xbe\x1c\x11\x75\x57\x7b\x89\xc9\x5d\x2e\x2a\x0c\xaa\xf5\ +\xc3\x1c\x14\x59\xce\x62\x1c\xb4\xe0\x44\xfb\x6c\x91\x5f\xe2\x06\ +\xac\x2e\xee\x46\x1f\x7d\x6d\xe1\x9c\x26\x99\xef\x18\x2d\xcd\x2b\ +\x61\xe3\xdd\x70\x6e\xd1\x39\xea\x5e\x4f\x98\xb9\x92\x45\x4d\x99\ +\x0c\x6d\xb1\x91\x2d\x39\x69\xa5\xa8\xbe\x84\x87\xb5\xe8\xe6\xc0\ +\xc4\x71\xd2\x56\x6f\x6a\x1b\x7d\x9a\x07\x82\x33\x76\x36\x6b\x79\ +\x96\x93\xc6\x74\xa3\x9c\x3b\xc9\xf2\x08\xd8\x80\x22\x53\xa0\x88\ +\x6d\xc3\x30\x6f\x99\x5e\x33\x94\xd4\x67\x7f\x00\x19\x89\x22\x3a\ +\x58\x40\xcb\x88\x80\x28\x71\x76\xda\x9a\xa4\xb6\xbc\x0c\x54\x8d\ +\x54\x15\x0d\xdc\x86\x7d\xde\xa9\x6f\x4a\x06\x49\x84\xf1\xa0\x46\ +\xdd\xe3\xdc\xdf\xa3\xc4\xe6\x1e\x2a\xe9\x84\x60\x8e\x14\xe9\xaf\ +\x5a\x38\xc2\x59\x22\xf5\xd1\xd2\xa8\x08\x66\x5a\x31\x3e\x8a\xcd\ +\x2c\xcc\xf4\xee\x84\xa0\x6e\xe2\xa0\x66\x14\xba\x93\x79\x08\x3e\ +\xe7\x7b\xac\xc7\xc6\x22\x32\xdd\x25\x13\xd2\x31\x68\x04\x20\x66\ +\x98\x5b\xb4\xe0\xd1\x12\xf1\x45\xe2\xb6\x84\xa4\xae\xbe\x11\x72\ +\x1a\xf1\x63\x84\x6c\xd2\xdc\x8d\x38\x5d\x56\xee\xeb\xa1\xa7\xf9\ +\x61\xe3\x75\x26\x29\x1c\x73\x02\x20\xe3\xdd\x78\xcd\x74\x9a\x31\ +\x7e\x6f\x43\x22\x97\xa2\x18\x2f\x5a\x2a\x27\x23\xef\x59\xae\x67\ +\xc4\xb1\xf4\x48\x8b\x39\xb9\x31\x14\x96\xa0\xf8\x0d\x2d\x1b\xac\ +\x70\x0b\x5a\xca\x25\xee\xfd\xb3\xb9\xa2\x70\x0c\xf7\x33\xab\x2c\ +\x1c\x63\x04\x9f\xec\x8c\xb4\x8d\x4b\x11\x55\xba\x60\xbd\x9e\x22\ +\x9b\x12\x42\xfd\x2b\x14\x1a\x95\xc3\x93\x42\x10\xcb\xab\xae\x98\ +\xba\xce\xf2\xb8\xc4\x4d\x0d\x0c\x6a\x27\xf8\x29\xea\x12\x53\x4f\ +\xba\x3c\xd5\xe3\x5c\x15\x10\x3b\x24\x84\x89\x34\xa9\x05\x31\xe7\ +\x88\x48\x5a\x97\xdd\x9e\x65\x5d\x99\xcf\xf7\x5f\x64\x61\xc8\xf1\ +\x25\xe6\xfc\xed\x7a\xb4\x94\x9a\x09\x78\xa1\x56\x0f\xa8\x5b\xbb\ +\x99\x8b\x4c\x32\x10\xea\x4e\x13\x85\x75\xb6\xc3\xb8\x48\x0f\xd2\ +\xc5\xa8\x45\xdb\xa4\x18\xc0\xbe\x33\xe6\xa8\x9d\xb3\x8b\x53\x41\ +\x9d\x18\x7b\x7d\x14\x1e\xa5\xc6\x9a\x93\x49\x5a\x04\xf6\x9d\x50\ +\xab\x2d\xbd\xf2\x47\xbf\xf1\x9e\x31\x41\xa6\xf8\xf7\x68\x7a\x93\ +\xea\xde\x92\xf2\xcf\xd7\x62\xd3\x72\x84\x68\xe2\x13\x95\xd6\x1f\ +\xaa\x20\x5f\xa5\x97\x3c\xc7\x9b\x77\xa8\x75\x3e\x6a\x8e\x80\x6a\ +\x64\xd8\x84\xf5\x5b\x89\xbd\x9e\x5e\x39\x0a\x66\x0c\x4c\x26\x4f\ +\x31\x8c\x7a\xad\x65\x47\xda\x15\x41\x49\x9c\xea\x6d\x0d\x63\x4d\ +\x16\xc2\xe9\x5a\x81\xee\xb1\x29\x05\xde\x16\x9b\x8b\x9c\x28\xbc\ +\xa2\x92\x49\xbd\x76\xfc\x89\x10\x69\xf9\x05\x96\x16\x06\xe2\x07\ +\xcc\x03\x5e\xb1\x44\x55\x40\xd4\xde\x69\xee\x15\x66\x08\xca\x04\ +\xb2\x5e\x63\x44\x6a\x08\xc2\x08\xe1\x19\xaf\x39\xcb\x19\x03\xa5\ +\x82\x66\xbc\xd2\x58\x07\x57\x3b\xc5\xab\xe2\x36\x09\x1f\xf3\x15\ +\x57\xe0\x5c\xac\x5c\x6d\x72\xdc\xa5\x2e\x18\x96\x78\x4c\xc7\x94\ +\x0a\x07\x75\x9d\x78\x26\x36\xcf\xe4\xaf\x27\x55\x3f\xe6\x03\xdd\ +\xed\x44\xa9\x38\x8c\x5e\x0f\xe6\x2b\x63\x14\x22\xe5\x5d\xf3\x8e\ +\x9d\x46\xf7\x88\x5b\x48\x2a\xd7\xe6\xc1\xa8\xbb\x70\xd4\x21\xe2\ +\x71\x46\xce\xae\x3f\x91\x63\xa6\x76\xec\x32\xba\x87\x3c\x60\xd1\ +\xc9\x47\xdd\xc9\x47\xdd\xc0\x69\xdf\x8b\x8c\xda\xb2\x13\x46\x1d\ +\xb6\x33\x89\xa3\x6d\x8d\x44\x4f\x0e\xa8\x33\x93\xf6\x5d\xab\x99\ +\xf5\x3f\xdc\xa0\x3b\x3e\x3c\x1e\x75\x1d\x2c\x4f\xa4\x1b\x08\x1b\ +\xa0\xba\xf8\x8e\x6e\x5b\xcd\xb4\xa1\xdd\xc6\x74\x99\xc6\xde\x6e\ +\x10\x76\x40\x7d\x64\xb9\xcc\xe9\xc3\xbb\x4f\xe9\x1f\x82\x4e\x50\ +\x7e\x95\x6d\xf0\x9a\x01\x70\xba\x1c\xd9\x80\xbf\x3e\x5d\xf4\x12\ +\x96\xab\x80\x91\x3c\x5d\xd7\x96\x09\x22\x2a\xc9\xcb\x55\xdf\x9a\ +\x8a\xd3\x77\x12\xb7\x96\xf9\x76\xa4\xc9\xa5\x56\x31\x27\x31\xc2\ +\x73\xa4\x52\x96\x5d\xf4\x06\xa2\x70\xa5\x62\xa5\x44\x83\x4a\x99\ +\x13\x63\xb6\xd6\x6c\x0a\xb6\x88\xa6\x52\xf3\xda\x68\x8c\x80\x8f\ +\xcb\x14\x4d\xfd\x92\x52\xd5\xa4\x66\xf2\x16\x36\xb2\xe4\x89\x40\ +\x09\x7a\x5c\x82\xa4\x82\x84\x9b\x73\x3e\x3f\x39\x33\x2b\xdf\x2c\ +\xdf\x3c\x20\xdc\x1a\x46\x44\x60\xe5\x4d\xb4\xe1\xce\x7b\x61\x9b\ +\xb4\x24\xb4\xee\x40\x0e\xaf\x21\x7a\x3b\xfd\xb8\xd8\x09\x6b\x38\ +\x20\xcf\x9d\xd0\x10\x1c\x22\xe3\xa7\xb2\xc8\xa0\x9a\x8b\xf0\x7a\ +\xb8\xe4\x56\x95\x39\x36\xb6\x28\xb7\xb7\x38\xe4\x2c\xee\x4d\xb9\ +\x4b\x5e\x21\xa0\x70\xa2\x01\x57\xce\x02\xc2\xb8\xd2\xae\xd0\xee\ +\x20\x38\xc3\x78\xcf\x2e\xef\x40\x28\xec\x63\xda\x45\x4b\x34\x05\ +\x61\xa1\x89\x35\x58\x7c\x09\x12\xae\xe4\x39\x82\xa6\xc4\x75\x73\ +\x58\x45\xe1\xf5\x18\xa3\xa5\x22\xd5\xe6\xf8\x9f\xa9\xf0\xf4\x7d\ +\x90\x9b\x3e\x0d\x2f\x58\x19\x1b\x3d\x66\x89\x9d\xe4\xef\xa6\x06\ +\x98\x69\xf0\x7a\x7d\x43\x5c\x8b\x11\x59\xf7\x5e\x3e\xb3\x58\xe6\ +\x4b\xc9\xb4\x0a\x76\x9e\x19\x51\x4a\x46\x7a\x7c\x1c\xba\x0b\x26\ +\x9c\x1f\x4c\x9c\x88\xd6\x2b\xcc\xe0\x2a\x84\x7d\x89\xf0\x22\x3a\ +\x10\x94\xc3\x8f\x70\x17\xee\x81\x7f\x97\x03\x66\xc4\xcf\xe1\xde\ +\x05\x15\xf0\x17\xac\xfa\x48\x65\xd5\x25\x47\x16\x69\x50\x03\x6e\ +\x79\x9e\xbb\xe5\xb0\xfc\x5f\x59\x71\xc2\xd5\xd6\xc3\x9c\x7b\x82\ +\x99\x6a\x0b\x7b\x12\x27\xf8\xd3\x63\xc5\x0a\xe5\xd3\x32\xc1\xdf\ +\x1f\xb7\xb3\x49\x05\xd4\xd6\x18\x59\x3e\x7d\xd4\x96\x65\x8d\xb1\ +\xf4\xb7\x08\x39\xc9\xe4\xf3\xf8\x40\x35\x4d\x6a\xab\xae\x7b\xfd\ +\x19\x33\x06\x92\x99\x0a\xa3\x01\xab\xa9\x9c\xb8\xdb\x15\x0f\x30\ +\xe6\x29\xf9\x53\xf9\x51\x37\x97\x14\xe2\x0c\x49\x5e\xa1\x30\xdd\ +\x3a\xa6\x47\xf4\x07\x54\xb8\x15\xf5\x65\x46\xc8\xee\x20\x8b\xc8\ +\x00\xef\xbf\x90\x51\x26\x69\x5c\x34\x40\x5b\x1f\xd0\x51\x1a\x32\ +\xc1\xd3\xb3\xf1\x69\xed\x4e\x57\xa9\xf7\x2e\x12\x37\xac\x86\x5e\ +\x6a\xe3\x2f\xe9\xb5\x0a\x0d\xf0\x38\xbb\x2f\x3e\xf4\x68\xb4\x4b\ +\x66\xe3\x22\x84\x37\xf4\xec\x2c\x78\x76\x88\x08\xbf\xbc\x7a\x7f\ +\x42\xd3\xa2\x21\xdb\xb1\xfd\xf1\xd0\x0b\xdd\xf0\xc2\x66\x74\x0f\ +\xfb\x5c\x27\x12\xf1\x1c\x19\x02\xa7\xa5\x50\x03\xb2\x05\xfd\xa2\ +\xcd\x03\x03\xcb\x7c\x9e\x2d\x9d\xf5\xad\x30\x0c\x14\x1f\x5b\x89\ +\xda\x34\xdd\x55\xf0\xb1\xd5\xa2\x51\x95\x89\x30\x3e\x28\xe0\xda\ +\xcd\x82\x0a\x4e\xe8\xf5\x7c\xb1\x38\x17\x2d\x15\xc2\x2f\x6c\xb7\ +\x0b\xe1\xf1\x7b\x10\xdb\x41\xdb\xc2\x88\xe8\xd7\x1a\x28\xca\x94\ +\xe4\x7e\x6c\x43\xc8\x05\xa3\xd2\x6f\x50\x19\x79\x14\xcc\x9e\x68\ +\xc4\x50\x6d\xc7\x28\x62\x7e\xcc\xed\x3e\x41\x64\x62\x08\xab\x5b\ +\x14\x1a\x5f\x89\x7f\x2b\x72\x2b\x97\x23\x47\x56\x09\x70\x15\x87\ +\x87\x07\xc2\x30\xa4\x85\xcd\x3b\x94\x66\x39\x93\x2e\x4f\x7e\x5c\ +\xee\xb8\x19\xcb\x4f\x85\xc0\x1d\xe2\x95\x01\xa2\x31\x68\x38\x9d\ +\x93\x59\x27\xd1\x05\x85\x94\x5a\xe9\xda\xeb\xcf\x64\xf8\x84\xa2\ +\xeb\xad\x50\x40\x19\x94\x91\x8d\xee\x27\xa2\x0f\x31\x2a\xc5\xd2\ +\x9a\xed\x07\xf9\x09\x4a\x47\x78\xeb\x18\x61\x8c\x11\xd1\x2e\x43\ +\x30\x30\x6d\x14\xd2\x27\xab\xba\xc5\x38\x86\x49\xaf\xdf\xec\x0b\ +\x63\xe0\x64\x84\x40\x34\x54\x33\x49\xa5\xcb\xcf\x2a\xdf\x1c\x7f\ +\x50\x7f\xa1\x90\xc3\x5e\xa4\x71\x17\xc5\x2b\x53\x36\xf3\x8e\x3a\ +\x92\xb2\xea\xfa\xbd\x74\xe8\xa1\x8e\x32\xd7\xe3\x35\x29\xd7\xe2\ +\x29\x8f\x7b\x58\xa1\x2a\x64\x7f\x5c\x43\x68\x91\xad\x2d\xe2\xe2\ +\xea\x29\x17\xc1\x21\x3d\xd0\xc3\xee\x53\x94\x48\xd6\x89\x40\x46\ +\x71\x0f\x1d\xc0\x0b\xd6\xf9\xf9\xe7\xe5\x9b\x8c\x26\x8b\x53\x05\ +\x2b\x8c\xf1\x59\x78\x7b\x12\xcb\x44\xa4\x83\xef\x90\x7b\x3e\x60\ +\xd1\xf4\x35\x63\x47\xe8\x8d\xb9\x78\xba\xf3\xdc\xc5\xa8\xb0\x23\ +\x59\x15\x33\x30\x4e\xab\x4b\x64\xeb\x78\xe5\xed\x57\x35\x0f\x40\ +\x32\xeb\x3f\x8e\xe6\x33\x28\x74\x28\xfa\x46\x31\x7c\x1e\x6e\x47\ +\xc6\xb2\x82\x2a\xb5\x36\x2b\xdf\x59\x51\x88\xc4\xb8\x8e\xc3\xe5\ +\x2f\xbe\xa6\x69\xd1\xd2\xab\xf2\x61\xfd\xa2\x2e\x8c\x9c\xb2\x5d\ +\xf0\xc7\xdd\x52\x2e\x13\xe9\x71\xa6\x36\x48\xb4\x8b\x65\xbb\x9a\ +\x19\xdd\xf6\x92\x08\x71\x6a\x17\x60\x49\x31\xc4\x2e\xbf\x0a\x3d\ +\xcd\x9a\x85\x84\x53\x54\xd5\xce\xc4\x81\x97\x5e\x96\x9b\x52\x49\ +\x49\x1d\xec\xd8\x15\x2a\x34\xe0\xc5\xc8\xbe\xa3\x79\xf7\xd1\xcb\ +\x39\x04\xff\xd2\xaf\xa4\x95\x97\x84\x8a\xeb\x80\x19\xf6\x73\x3c\ +\x2f\x94\x62\x96\xde\x62\xbd\x15\xeb\x62\xa9\x2f\x74\x0b\x7c\xee\ +\x22\xeb\xe1\x5f\xda\x78\x67\x3d\xcc\xbf\x56\xc1\xfc\xea\x01\x25\ +\x19\xdf\xe3\x22\x0d\x6f\xdf\xa2\xf7\xcf\xb2\xab\x40\x69\x5c\x67\ +\xd4\x77\x73\xa5\x22\x20\x74\x78\x4b\xff\xc0\xda\x30\x52\x53\x31\ +\x2a\x40\x7d\x8c\x06\x30\xa1\x1d\x75\xd5\x33\x1b\x77\xec\xe3\x2e\ +\x3c\x5d\x8c\x5e\xc4\x31\x1e\x75\x93\x4a\x98\x3c\x19\x31\xdc\x4f\ +\x39\xee\x94\x9a\xa8\x62\x5f\x62\x57\xb6\x52\x52\x93\xd5\x94\xe1\ +\xe3\x3e\x5b\xb9\xe4\x29\xcc\xf7\x52\xfc\x1a\xa7\x28\xfb\x9b\xab\ +\xbc\x15\xcf\x08\x3b\xf8\xbb\xf1\xfc\x50\x7d\x3f\x9e\x56\xdb\xf9\ +\xfb\xb1\x24\x7b\x80\x76\x01\x6d\xf8\xee\xd5\x36\xfe\x6a\x70\x05\ +\xab\xf2\xe6\x7c\xe5\xcd\xf0\x85\x32\x72\x5f\x67\x89\x11\x44\x38\ +\x29\x34\xca\x3c\x65\x14\x71\x7d\x2a\x8f\x31\x44\x10\xb0\xc5\xcd\ +\x4d\x8d\x45\x46\x38\x44\x19\x61\x2b\xdf\x45\x53\x4a\xce\x08\x24\ +\x5b\x61\xef\x50\x42\x56\xc0\xc4\x48\xe4\x98\xb6\xf2\xb7\x47\xe0\ +\xa8\x46\xc8\xb9\xd2\xa5\xb5\xca\x83\x2b\x78\x29\xc5\xa0\x72\xc1\ +\x6f\x98\xb2\x65\xff\x33\x57\xa1\xc4\x39\x38\x1c\xe8\x3c\x34\xe2\ +\x4f\x0b\x85\xb0\x15\x59\x94\x00\xcb\xef\x43\x4b\xb9\x0d\x98\xc5\ +\x2b\xd7\x83\x2a\x14\x29\xa4\x06\x79\xd1\x48\xe8\x8d\x5d\xc1\xb1\ +\x2c\xa0\x60\xb3\x03\xa4\xcb\xd2\x31\xbd\x52\x86\xc6\xd0\x4a\xfc\ +\x8d\xf0\x75\x48\xf1\x1e\xbf\xee\x41\x17\x1b\x25\x16\x3c\x17\x19\ +\xbb\xd4\xb4\xcc\xc0\x6f\x17\xdc\x85\xa4\xc0\x76\x4c\x45\x0e\xcc\ +\xb6\x57\x15\x82\x31\x6d\xf8\xb9\xd2\x8b\xa5\x58\x34\xed\x26\x86\ +\x2d\xaf\xae\x30\x4b\xb4\xfe\x30\x3a\xc7\xdc\x20\xbf\xde\xce\xda\ +\xe9\x4a\xf3\xac\x27\x46\xc0\xe8\xc3\xbd\x30\x65\x40\x8a\xe2\x2f\ +\xcd\xf1\xba\x40\xd1\x57\x0e\x5c\x8b\x4d\x4c\x32\xe8\x9c\xc0\x84\ +\x79\x1f\x90\xb9\x20\xaa\xa7\x6c\xd4\x81\x96\x5c\x79\x6d\xc6\x0e\ +\x93\x7b\x1b\x9c\xd3\x45\x5c\xd6\xcb\x0d\x6b\x1a\x5a\x84\xa2\x36\ +\xe6\x78\xab\x96\x7b\xdc\x6d\x3c\xa9\x21\xea\x3a\x1a\x10\xc5\xc3\ +\xca\xdb\x1b\xf0\x20\x7a\x18\xaf\x65\x91\x5b\x4b\x39\x22\x19\xc5\ +\x3d\x59\xbe\xee\x9f\x09\xb9\x01\x45\x88\x75\x33\x8b\xd0\x62\x79\ +\xc8\x78\x94\x7c\x4d\x81\xc7\x90\x56\xf7\x40\x58\x6c\x15\x35\x13\ +\x53\x06\x43\xc2\x9d\xf7\xa2\xf3\xbb\x81\xa2\x15\xf6\x7c\x5b\x15\ +\xe8\x86\x86\xab\x24\xd4\x47\x05\x50\xab\xa0\x06\x3e\x6c\x0f\xfd\ +\x8f\x9a\x3b\xdb\xe8\x1e\x0a\x2f\xa1\x1b\x0f\x7b\x5c\x3f\xe0\x50\ +\x36\xbc\xe4\x1b\x43\x34\x6b\x61\xd8\xde\x1b\x3e\x69\x67\x61\x32\ +\x8b\x8b\x41\x5c\xc6\xba\x8e\x20\x7a\xcb\x1e\x86\x0b\x9b\x49\x42\ +\xc2\xef\x12\xc7\xe2\xa3\xb8\x93\xc8\xb0\x20\x5a\xed\x6b\x97\x8e\ +\x06\xc0\x2c\x1e\xa2\x61\x6f\xe3\x08\x23\x0d\xa2\xac\x94\x33\x3d\ +\xec\xd2\xd3\x27\x5c\xb2\x26\x7e\x9f\x8b\xe8\xe1\x97\xc7\x82\x1a\ +\xd6\x7a\x7d\x3e\xa1\x30\x8c\x55\x4e\x3c\x3d\xd0\xa6\x4e\xdc\x44\ +\x46\xbc\x44\x1e\x60\xa0\xf9\x4a\xc7\x62\xb0\x1c\xd6\x59\xd2\xc7\ +\xf2\x6a\xae\x5e\x28\xab\xc2\x4b\xa9\xd0\x9b\x6d\x17\xc3\x6b\x1b\ +\xd5\xd6\x66\xf2\xb5\xa9\x90\xf4\x71\xdd\xa8\x18\x43\x78\x32\x4d\ +\xc4\x0f\xcc\xf0\x48\xc3\x12\x99\x0a\x25\xe0\xa5\x00\xf5\x19\x20\ +\x09\xb1\x00\x87\x26\x9d\x16\x79\xcf\xbe\x30\x78\x57\x24\x42\xbd\ +\xe0\x6b\x71\x57\x61\x26\x41\xbe\x81\xa1\x01\xd5\xab\x51\x0e\xf9\ +\x92\x37\x2e\x17\x8b\xa1\x57\xfb\x46\x6f\xd7\xec\x33\x70\x11\x76\ +\x76\x8a\xad\xaf\x32\xde\xcb\x91\xbf\xb4\xd6\x93\xd2\x90\xc2\xc8\ +\xa4\x37\x55\x80\x0a\x47\xdb\x09\x93\x3c\x65\x56\x61\xe0\x32\xb1\ +\x44\x11\x4d\x7f\x50\x01\x34\x39\x80\x82\xe8\xe3\x2e\x96\x92\x98\ +\x34\x15\x4c\x1e\xa2\x81\x47\xc9\xa0\x0f\x29\x3a\x1e\x71\x7b\x12\ +\x51\x44\x79\x4a\xf0\x08\x4b\x9e\x0b\xc3\xa7\x12\x71\x06\xed\x79\ +\x19\x70\xda\xab\x91\xf1\x51\x02\xde\xc8\xae\xf7\x19\xa3\x20\xf6\ +\x77\x0b\x8a\xce\x58\x05\xda\x89\xc7\x49\xdb\x51\xc2\x8e\xdf\xff\ +\x28\x4f\x61\x28\xd7\x63\x58\x39\xce\x06\xe3\xfe\xaa\x50\x46\x00\ +\xf0\x32\x01\x30\x58\x55\x36\x53\x19\x68\x66\xb6\x80\x99\x7f\x5b\ +\x86\x50\xb7\x68\x80\x52\x52\x5b\x19\x31\x79\xfa\x08\x4b\xcc\x0d\ +\x5f\xac\xa8\x06\xe6\x45\x10\x52\xee\xfb\xfb\x19\x58\x2b\xe5\x91\ +\xc9\xb2\x2b\x4a\x68\x68\x2c\x0c\xc6\x8e\x84\x60\x88\x9c\xdc\x38\ +\x5e\x55\x19\x9c\xae\x08\x38\x7e\x69\x34\xe0\x50\x71\x30\x9d\x19\ +\xd9\x43\x19\x2c\x0f\x77\x23\x9e\x91\x0c\x08\x73\x4e\x53\xed\x21\ +\x1c\x62\xf0\x95\x81\xa3\x53\xc8\x52\x20\xbb\xec\x59\x15\xe6\xac\ +\x13\xe3\xc7\xd2\xd9\x91\x04\xae\x97\x01\x87\x05\x40\xbe\x3c\xba\ +\x2c\x1d\x88\x1e\x69\xee\x5c\xb1\xb1\x09\x5e\x18\x4e\x27\x02\x67\ +\xb2\x7b\x4f\xd2\x08\xf5\x04\x3f\x0a\xd5\x53\x1f\x3f\x14\x31\x37\ +\x99\x80\x6e\x34\x61\x55\xa6\x46\x1d\x68\x2b\x38\x8b\xc2\xb7\xa0\ +\x4b\xc0\xca\x12\x54\xd4\x99\xb3\x80\x8f\xac\xed\x55\x14\xf7\x00\ +\xe8\x25\x1c\x68\xec\x2c\x4c\xe5\xa5\x26\x45\x01\x52\x9b\xa9\x34\ +\x11\x76\x13\xa5\x06\xb5\xc1\x83\xaf\x4d\xd7\x17\xe0\xdc\x09\xf0\ +\x36\x1d\x5e\x23\xc2\xc6\xa7\x8d\x41\xcd\x1c\x83\xa6\x8f\x02\x9b\ +\xec\x14\x89\x13\x31\x11\x18\x26\xaa\x97\x90\x9d\x70\x59\xb1\x5d\ +\x5e\x1b\x11\xa0\x59\xca\x96\x1f\xa6\x83\x86\x17\xd2\xf4\x61\x0a\ +\x5a\xb1\xec\x19\x2f\x46\xce\xb8\x0a\x9d\xb6\x4b\x81\x1a\x12\x46\ +\x5e\xb9\x93\xcf\x32\x93\x0a\x7c\x03\xe2\x38\xf7\x2a\x1d\x62\xaa\ +\x6a\x00\xa1\x3a\xcc\x67\xce\x51\xcb\xb9\x40\xda\xcd\x17\xe8\xc3\ +\xe1\x05\x9c\x37\xed\x02\xc2\xe7\x4d\x2c\x43\x4d\x45\x14\x59\xad\ +\x33\x5f\xca\x51\xd1\xa5\x60\xca\x9f\x22\x8a\xa6\x5f\xcc\xbe\x08\ +\x19\x4f\xb7\x18\x37\x42\x3f\xd5\xea\xe1\x71\xaa\x84\x34\x3e\x8f\ +\xd5\x97\x25\xd8\x09\x8d\xff\x32\xf2\x0a\x98\xb4\xa2\x2d\xc4\xf1\ +\xeb\xd3\xab\x5c\xda\xcc\xb8\xde\xc2\x58\x70\x2b\xf2\xba\x99\x00\ +\x56\x5e\x0a\x9b\x3c\x09\x8c\xf9\xf5\xa5\xfd\x7f\x5c\x19\xc0\xc2\ +\x32\x58\x66\xe5\x64\x6d\x8f\xde\x7d\x11\xd5\x5e\x6f\xa8\x70\x0f\ +\xa0\xc8\x7b\x79\x8d\xe8\x0e\x5f\x55\x7c\xbb\x49\xe2\xba\xa4\xdc\ +\xa5\x39\x8b\x49\x38\x62\x94\x23\x22\xf5\x58\xf5\xe8\x6e\xd6\x2e\ +\x40\x74\x8c\x70\x74\x38\xc8\x81\x01\x73\x3c\x48\xc9\xd5\x2e\xbb\ +\x49\xe7\x4c\xdf\xa7\xba\x67\x5c\x34\xf9\x3b\x15\x90\x20\x53\x22\ +\xd4\xc0\xae\x3c\xf6\xd2\x65\x22\x7a\x56\xb0\xf4\x02\xaa\x30\xfc\ +\x9a\x84\xdd\x48\xb2\x0d\xbf\x4c\x38\x30\xb5\x2c\x2c\x9b\xef\x39\ +\x8d\x2d\xb0\x9a\xf2\xa2\x72\xea\xe2\xef\xc5\xdb\xa0\xa2\x87\x47\ +\x90\xe5\xfd\x27\x59\xf4\x65\x18\x25\xa7\x68\xe7\x30\x1f\x13\x3b\ +\xec\xf3\x4c\x4c\xf6\xec\x68\xa9\x58\xa4\x39\x7b\x34\xf7\x3d\x12\ +\x15\x99\x2e\x39\xb2\x7c\x5c\x33\x7a\x01\x15\x73\x49\xca\x9c\x39\ +\x49\x12\xf2\xaa\x3a\x35\x33\x9c\x3e\xa7\x3b\x94\x8e\x56\xd7\x1a\ +\x4e\x81\xc2\xde\xaf\xda\xde\xe7\xdd\x09\x5a\xa8\x13\xf1\x2f\x19\ +\x64\x23\x32\x2e\x79\xc3\x0c\x9b\x32\xc7\x45\x94\x72\x79\xf0\x7a\ +\x18\xcd\xc4\xdb\x7b\x36\x62\xf7\xc9\xd0\x48\x27\x62\x6c\xbe\x7c\ +\x28\x28\xec\x74\xe6\x87\x39\xe2\xa0\x98\xbf\x41\x86\x75\x02\xdf\ +\xb3\x67\xe1\x02\xc2\xa7\x36\x15\x34\x22\x57\xdc\x87\x1b\xe2\xe3\ +\x15\xaa\x47\x30\xda\x36\x2c\x45\xdf\x8a\xf5\x07\xce\xe7\xcd\xc1\ +\xd5\xac\x9a\x72\xef\x6f\x17\x35\x45\x9a\xeb\x72\x58\x6e\xa5\x84\ +\x72\xa3\x1b\xc9\xcb\x58\x4d\x06\xe1\xb9\x49\x0c\x23\xc8\xe0\x91\ +\xf4\x53\xb0\x0c\x86\x48\x18\x2a\x18\xf3\xe0\x4d\x2e\x4b\x4e\xc8\ +\xb8\x93\x0e\x8b\x1d\x15\x5c\x1f\xef\x7f\x8c\x5a\x46\x6a\x6b\x67\ +\x23\x12\xb1\x8a\x8b\x75\x89\x04\x21\x3d\x8c\x1d\x52\xf7\x65\x92\ +\x10\x00\x23\x22\x58\xe6\x84\x69\xe7\x50\x66\x63\x11\x92\x8c\x60\ +\x87\xc1\x9a\xb6\x6b\xb5\xb6\x2f\x7a\x3b\x6f\x79\x5b\xaf\x9a\x36\ +\xd0\xb9\x29\x68\xf4\x45\x0d\x89\x30\xd1\xb6\xa9\x09\x39\x32\xd0\ +\xba\x39\x8e\x3b\x9e\x1e\x4a\xde\xd1\xab\x4a\x4d\x4d\x9f\x57\xc3\ +\x0f\x51\x83\x48\xb8\x36\xe4\x15\x95\x52\xd8\x2e\x65\x73\x73\x75\ +\xdd\xf5\x76\x03\xae\x1c\x2a\xb1\x84\x45\x64\x16\x69\x95\xa6\x9d\ +\x8f\xec\xe9\x36\xbc\x6d\x40\xb5\x24\xd5\x84\xc5\x02\xce\xe9\x70\ +\x87\x68\x4f\xcc\x9e\x8b\xa7\x43\x22\x4e\xda\x11\x9b\x1d\x76\x89\ +\x1d\xcd\x49\xc4\x38\x49\xce\x74\x68\x7b\x1d\xb1\xcd\xf4\xbb\x4c\ +\x8c\x6c\xa5\x27\x48\x56\xdf\x53\x59\xa8\x20\x44\x06\xbb\xb6\xd8\ +\xe9\xdd\xc6\xe6\xb8\x3c\x96\x9c\x36\x80\x5a\xbe\x1f\xa7\x79\x89\ +\x6b\xd4\x64\x82\x9b\x5a\x45\x30\x4d\x30\x48\xa1\xe0\x6e\x04\x88\ +\x7b\x42\x8b\x2e\xbf\xac\x87\xa5\xe8\xaa\xd1\xa0\xf0\x72\xbb\x42\ +\xcb\x8d\x64\xcf\x28\xbb\xdd\xc9\xe6\xe0\x49\x34\x91\xf4\x99\x9e\ +\xc8\x50\xd1\xe4\x1c\xd1\x9f\x57\x26\xe5\xec\x87\x83\x62\x0f\xde\ +\xf8\xac\x9c\x45\xa1\x61\x55\x36\x1d\x0c\xa7\x40\xa9\x0c\x88\x7c\ +\x39\x32\x60\x6f\x85\x01\xd3\x44\xa4\xa3\x98\xdc\x09\x25\x07\xde\ +\x1f\x07\x4e\xb3\xbc\x94\xf8\xa1\xc3\xd8\x0c\xb7\xaf\x8b\x62\x53\ +\xb4\x9d\x8b\x0c\xd5\x5d\x01\x4a\x46\x2a\x1c\x42\x29\xf3\x70\x40\ +\xcb\xc9\x94\x01\x2e\x8a\x48\x21\xd5\xd4\xd1\xe5\x78\xb3\x71\x3c\ +\xa6\x84\xc6\x8f\x78\x72\x05\x18\x05\x87\x73\x83\xd6\x01\xe1\xd4\ +\x77\x15\x19\xef\xc3\xb9\x72\x2e\x0f\xf5\xc5\x4f\x37\x5a\x61\x3a\ +\xca\xc3\x98\x05\xc4\x24\xc1\x04\xd7\x73\x58\x05\xf1\x10\x59\x42\ +\x94\xdc\xc7\xe0\x7b\xd0\x51\x64\x36\xa7\x06\xd0\x12\x04\xc8\xa1\ +\x69\x27\x08\x0c\x36\xca\xe9\x1e\x5a\xc2\xd4\x32\xfa\xf3\xc0\x12\ +\xea\xa9\x4a\x40\x5d\x5e\x20\x9e\x22\xb8\x8e\x90\xad\x9c\x70\xda\ +\xe3\xa5\x67\xae\x14\x02\xb1\xed\xc6\x20\xd6\x2d\x80\x6c\xa5\xa5\ +\x91\xf1\x43\x87\x79\x9e\xda\xf7\x51\xd2\x43\x3b\x0e\xc5\xda\x2b\ +\x46\x86\x58\x9d\xe0\xf0\x33\xc7\xb4\x46\x02\x21\x38\x3d\x57\x14\ +\xa2\xc4\xb2\x82\x63\x42\x93\xc8\xd3\x5a\x71\x12\x05\x1d\x73\xf4\ +\x69\xd8\x61\x8e\xcc\xb3\x32\x34\x4f\x96\x7b\x09\xf4\x3c\x65\x9f\ +\x53\xb6\x19\xc3\x25\xfc\xb4\x49\x15\x08\x30\xeb\xdc\xe8\xf0\x2b\ +\x2a\xe2\x8a\xd1\x29\xeb\xdc\x18\x66\x41\xec\x48\xb2\xcb\x6a\xe3\ +\x51\x54\x89\xb9\x25\x1d\x39\x9e\x48\x58\xf7\x30\x47\x13\x83\x0d\ +\x5b\xe8\xa3\x91\x60\x79\xb9\x34\x95\xa6\xf8\xfc\x94\x36\xb5\x83\ +\xb4\xd4\x6b\xb6\x22\xa5\x85\x9e\x8d\x76\x9b\x66\x45\x57\xf1\x89\ +\x3d\xb3\xd8\x18\x54\xa1\x2a\x93\xdb\x53\x29\x1f\xa6\xa5\x5c\x22\ +\xcc\x10\x96\x06\xe4\x95\xdc\x73\x35\x9b\x43\x44\xd6\x92\xa7\xca\ +\x7e\x60\x2b\x5a\x0c\x22\x87\x23\x70\x00\x54\xcc\x97\x4d\x01\x10\ +\x3c\x97\x45\xc1\x19\xa5\xec\x30\xb8\x29\xa4\x09\x53\xcf\x85\x1e\ +\xa6\x14\x1a\x41\x6e\x5c\xc7\xfd\x90\x2a\x22\x53\x9f\x78\xff\xfc\ +\x2d\x31\x59\x26\x4b\x93\x8c\x04\x3f\xef\x20\x3b\xa5\x40\xe4\xe3\ +\xed\xd8\x19\x9b\xb8\x92\x7c\xc8\x5d\xd1\x21\x77\xbd\xab\x21\x77\ +\xc6\x0c\xb9\x33\x7e\xc8\x93\x63\x87\x8c\xd7\xad\x33\x44\xd4\x49\ +\x0b\xdb\x59\xcd\x2b\x38\x88\x4f\x64\x06\xe1\x85\xa2\x8b\x96\x71\ +\xd4\xbd\x9c\x7c\x4a\xa6\xea\x8b\xf6\xa8\x16\x6f\xff\xc2\xa2\x85\ +\x66\x60\x2f\xea\x1e\x1e\xc9\x24\x0e\x8e\x03\x89\x39\x67\xc2\x40\ +\xad\x89\x01\x4a\x6d\x64\x15\x8f\x0b\x2f\xc8\xce\xd2\xae\xfb\x88\ +\x9b\x16\x79\x78\x04\x17\x33\x41\xbf\xe0\xe2\x14\x3c\xb9\xd6\x79\ +\x71\x93\x22\x5b\x8f\x9a\x32\xd5\xce\xc9\x24\x96\x43\xc4\xd5\x5d\ +\xcb\xb9\x89\xaa\x76\x73\x90\x90\x18\x71\x90\x14\x3d\x3b\xbf\x1c\ +\x94\x05\x2b\xea\x42\x1e\xaa\x1a\x1e\xa6\xa3\x08\x7e\x16\x9e\x7f\ +\x7e\xdc\xfc\xdc\x8c\x0a\xcf\x7d\x56\xc2\x13\xc5\x8c\x0c\x11\x81\ +\x16\xa9\xcc\x82\x44\x54\xa3\x53\x28\xd0\xe5\xb9\x67\x2f\x87\x8f\ +\x95\xb3\x82\x75\x42\x63\xd2\x36\xcb\x7e\x09\x15\x1e\x88\xfe\xf9\ +\x9a\x30\x66\x0d\x93\xf5\x9b\xc4\x54\xff\x0f\x9b\x5b\x44\x12\x25\ +\x0b\x3d\x90\xdf\x29\x36\x4d\xce\xe1\x21\xa1\x2a\x85\x90\x14\x96\ +\x26\xe5\x30\x0a\xdf\xfe\x18\x79\x93\x8a\x49\xb7\xac\x8f\xc9\xb3\ +\xdc\x1a\x6a\x1f\x51\x39\x6b\x5f\x37\xb9\xe3\x0b\x49\x25\x78\x0b\ +\x46\x42\xb9\xfc\xc2\xb0\x16\x55\x9d\xe1\x75\x9f\x0a\xeb\x16\xb1\ +\x3e\x7a\x5d\x22\x4b\xa2\x34\x95\xef\x0c\x9e\x55\xa7\x36\x7a\x1d\ +\x20\x95\xfa\x32\x1e\x34\xe2\x8e\x01\x7a\x7c\x7e\x1d\x01\x6f\xbe\ +\xb8\xd1\xcd\x44\xab\xa8\x46\x88\x28\xde\x50\xfc\x58\x23\x70\x6a\ +\x42\x4f\x0e\xea\xd5\x45\x44\x24\x45\xab\x9e\xc1\x68\x13\x8a\xee\ +\xe0\xde\xd5\xc3\xc9\x2e\xc5\xd1\x79\x08\x2d\x49\x42\x92\xc3\x7c\ +\x6f\xde\xdc\x01\x8c\x85\x91\xad\x1b\x0e\xdf\x15\x4d\xf3\xde\x26\ +\xe8\x5b\xc2\xb8\x2d\x4a\xa3\x37\x85\x4b\x9a\x88\xa8\xe0\x53\xe1\ +\x12\xc5\x03\xfa\x9d\xb4\xd1\x84\xee\x70\x36\x20\x4b\x97\xb7\xb9\ +\x9b\x5a\x5c\xfc\xa7\x26\x68\x55\xf2\x94\xea\x8e\xde\x0f\xd1\x0a\ +\x2b\xe6\xa6\x0e\x6e\x96\x15\x0d\x32\x98\x57\x9f\xb6\x5c\xa3\xa7\ +\x86\x7a\xb0\x51\xdd\xf4\x99\x07\x5b\x6a\x3d\x4a\xa6\x7c\xf7\xf6\ +\x30\xca\x16\xc5\x26\x96\x0a\x85\x33\xc6\xd5\x89\x69\xc1\x71\xa9\ +\xa3\xb5\x4a\xb5\x49\x4d\xb8\xcc\xe4\xc4\x98\xb2\x02\x13\x95\x0b\ +\xb5\xce\xbf\xac\x65\x27\xa5\xc8\x0e\xa5\x3b\x3f\x45\x80\x34\xf0\ +\x42\x33\xd6\x6b\xba\x50\xed\x8e\x9d\x31\x7f\xdf\xa5\xfc\x7d\x57\ +\x64\x39\xf2\xed\x9a\xf0\xcb\xe5\x96\xb3\xb3\xda\xe5\xec\x4c\xbe\ +\x1c\x55\x69\xaa\xdd\x19\x05\x57\xfe\xb5\x26\xfc\xc7\x72\xe0\xee\ +\xaa\x16\xdc\x5d\x49\xc1\x3d\x24\x12\x2c\x52\xeb\xf4\xa4\x99\xda\ +\x69\xb2\x3a\x3b\x1e\x83\xe9\x8b\x28\x94\x6a\x37\x37\xb5\xb0\x90\ +\xd9\x79\x4a\x0a\x9e\x34\xfc\xf1\x75\xe0\x68\x2c\xaa\xb3\xc6\x54\ +\x7d\xfa\xff\x0f\x95\xae\x25\xb4\ +\x00\x00\x3d\x3c\ +\x00\ +\x00\xcf\x05\x78\x9c\xcd\x7d\x09\x98\x1d\x55\x95\xf0\xed\x7d\xef\ +\x0e\x21\x84\x10\x42\xa8\x24\x90\x74\x42\xa7\x13\x02\x81\xd0\x20\ +\xd8\xe9\x4e\x27\x81\x6c\x74\x37\xd9\x40\xa0\xde\x7b\xf5\xba\x8b\ +\x7e\xaf\xea\x59\x55\xaf\x3b\x0d\x0c\x2a\x28\xfb\x22\xb2\x83\x32\ +\xa0\x08\x88\x82\x0a\x82\xa0\xb2\x29\x32\x0a\xe2\xf8\xab\xc3\x0c\ +\x8c\x0b\x38\xe2\xcc\x2f\x08\xca\x38\x8c\xa3\x38\x33\xe7\x9e\xbb\ +\xd6\xf2\x3a\xd5\x41\xbf\xff\xff\xf8\xc2\xeb\x7e\x5d\x75\xef\xb9\ +\xe7\x9e\x7b\xf6\x73\xee\x09\x8f\xe6\xe6\x3c\xf7\xd6\x27\x6f\x78\ +\x61\xc1\xbc\x27\xcf\xbe\xf3\xf1\x9f\xae\x25\xa4\x65\x0d\x21\x64\ +\x27\x21\x4f\xd7\xc2\xe7\x2e\xf8\x7c\x09\x3e\x77\x13\xf2\xcd\xab\ +\x09\xa9\x83\x9f\x9f\xbe\x05\x3e\x5f\x86\xcf\xc7\xe0\xf3\xd7\xf0\ +\xbd\x43\x48\xc3\x1e\x42\x2e\xfd\x39\x21\x1b\x2e\x22\xa4\x66\x35\ +\xfb\xbc\x26\x4b\xc8\xe8\xd1\x84\x5c\xb8\x1f\xa9\x7a\xfa\x12\x42\ +\x76\x5c\x48\x6a\xef\x9e\x24\xe4\xba\x56\x52\xfb\x75\x18\xbb\xed\ +\x56\xf6\x79\xf3\x16\x52\xb7\x72\x1d\x21\x1d\x3f\x62\x9f\x5f\x38\ +\x8f\xd4\x0d\x7c\x1b\x7e\x7f\x97\x7d\xde\xdf\x40\xea\xb6\xc3\xf7\ +\x3b\x87\xd8\xe7\x03\x4b\x49\xdd\x17\x7e\x4f\xc8\x21\x6b\xd9\xe7\ +\xe3\x5f\x26\x75\x8f\xfe\x99\x90\x27\x7e\x4a\xea\xfe\xfe\xef\x08\ +\x79\xf2\x63\xa4\xfe\xf3\x57\x12\x72\x51\x99\xcc\xf8\xe8\x46\x42\ +\x46\x0e\x27\x33\xeb\xbe\x46\xc8\xd7\x0f\x21\xb3\x9f\x05\xb8\xef\ +\x58\x49\x0e\xbd\xeb\x3f\x09\x59\xb6\x93\x2c\xa3\xf0\x5c\x71\x1d\ +\x39\xe2\x99\x2f\x12\x72\xe5\xe7\xc9\x11\xaf\x58\xf0\xf9\x32\x39\ +\xee\xe7\x47\x11\xd2\xf3\x51\xd2\x73\xfb\xc1\x84\x4c\xee\x22\xef\ +\xbb\xf3\x20\x42\x3e\xfe\x35\x72\xe2\x75\xb0\xae\xe3\x1f\x21\x1b\ +\xae\x39\x9f\x90\x23\x2e\x27\x1b\x6e\xbe\x8c\x90\xda\x19\x64\xe3\ +\x2b\x1f\x23\xa4\x33\xc3\x3e\x6f\xb8\x8d\x9c\x7c\x0c\xc0\xd9\x30\ +\x4c\x4e\xc9\x03\x2e\x8e\xdd\x0e\x9f\xc7\xc2\xe7\x2d\xf0\x79\x1c\ +\x7c\xfe\x84\xec\x38\x7b\x98\x90\xfd\xbb\xd8\xe7\x23\xe3\x64\xe7\ +\x9f\x61\x1d\x67\x5c\x40\x76\xdd\x7c\x38\x21\xb3\xef\x61\x9f\x8f\ +\xae\x21\xe7\xec\xbc\x95\x90\x2f\xfd\x13\x99\x7c\xeb\xc7\x84\x5c\ +\x76\x20\xb9\xe0\x43\xed\x84\x5c\xb0\x8a\x5c\xbe\xe8\x06\x42\xba\ +\x9f\x81\xcf\x9b\x08\x59\xd1\x0e\x9f\xb0\x27\x2b\x76\x92\x6b\xbf\ +\xf1\x7f\x09\x99\xb1\x82\xdc\x7d\xec\x49\x84\x2c\xff\x1c\xb9\xef\ +\xc3\x30\xce\x8d\xa7\x93\x2f\xbc\x08\x78\x5e\x7f\x35\x79\xea\x0b\ +\xb0\x27\x37\x2d\x25\xcf\xfe\x0b\xec\xd9\xd2\x1f\x91\xe7\xef\x9d\ +\x45\xc8\x25\x7f\x26\xef\x92\xe7\x08\xb9\xe7\x9f\xaa\x0e\xba\xea\ +\x67\x84\x98\xbf\xad\x5a\xf0\x22\xc0\x99\x9f\x5f\xb5\xf0\x2b\xff\ +\x05\xf0\xbc\x58\xb5\xe2\xea\x0b\x08\xf9\xe0\xfc\xaa\x0d\xff\xfd\ +\x19\x42\x4e\xe8\xaa\x1a\xfa\xf7\xfb\x08\xf9\xe4\x29\x55\xdb\x67\ +\x9f\x0c\xef\x2d\xaa\x3a\xe3\x67\x80\xdf\xfb\xef\xa8\x1a\x69\xbb\ +\x9c\x90\x3b\x5f\xad\xb2\xf7\x3b\x97\x90\xaf\xdc\x5f\x65\xdf\x74\ +\x33\x21\x27\x7e\xb2\xea\xc2\xe3\x9a\x09\xf9\x72\xbe\xea\x8a\xd1\ +\x32\xec\x93\x53\x75\xc5\x65\x80\xf7\x86\x8b\xaa\xee\xfc\x10\xc0\ +\x73\xe8\x9f\xab\xbe\xfc\x81\x26\xc0\xf3\xef\xab\x9e\x7e\x09\xe6\ +\xb7\x77\x56\xfd\xf0\x9a\x1f\x11\xf2\x81\x45\x55\x3f\x9e\xb1\x88\ +\x90\x81\xbf\xad\xfa\xe9\x45\x7f\x24\xe4\x8b\x99\xaa\x9f\xef\xd7\ +\x47\x48\xbd\x53\xf5\x8b\xdf\x03\x3d\x7e\xed\xc4\xaa\x77\x1f\x80\ +\xe7\x2e\xdb\x59\x5d\xf7\x04\xac\xf3\x86\x85\xd5\x5d\x2f\x9d\x4d\ +\xc8\xc2\x05\xd5\x2b\x1e\x86\x75\x2d\xc8\x54\x0f\xec\x84\x79\x1f\ +\xfa\x4d\xf5\x8e\x3f\x34\x12\xd2\x5a\xa8\xb6\xee\xcf\x10\xf2\xad\ +\x73\xaa\x9d\x86\x5f\x10\x72\xf6\xad\xd5\xe3\x87\xed\x4f\x48\xdf\ +\xbf\x57\xff\xcd\x2b\xa7\xc1\xba\x6f\xaf\xbe\x7e\x60\x2e\xc0\x79\ +\x70\xf5\x0d\xcf\x3d\x4c\xc8\x71\x2b\xaa\xef\xe9\x3a\x00\x68\x7c\ +\x46\xf5\x7d\xc7\x00\xbe\xaf\xe8\xaa\xfe\xfc\x25\xb0\x0f\x57\x7c\ +\xb3\xfa\xcb\xbf\x85\xf5\x7e\xe6\x67\xd5\x4f\xde\x07\x67\xe2\xa4\ +\x7f\xae\x7e\x2a\xff\x36\x21\xc5\x9e\xea\xef\x9c\xf4\x1f\x84\xec\ +\x79\xba\xfa\xa5\xbb\xe0\x6c\x7c\xe4\x6b\xd5\xff\x3c\xf7\x7a\x42\ +\x1a\xbf\x58\x53\xf5\xd1\x67\x08\xb9\xf7\xb1\x9a\x99\x37\x9d\x43\ +\xc8\xdd\xab\x6a\x66\x4d\x02\xbe\xef\x5f\x5d\x33\x77\x16\xc0\xb9\ +\x7a\x65\xcd\xdc\xd9\x70\xce\xb2\x4d\x35\x2b\xe6\xc2\xdf\xaf\x3a\ +\xbd\xe6\x02\x3a\xff\xe0\x83\x35\x1f\x0b\x36\x10\xb2\xf9\x4b\x35\ +\x97\x1e\x0a\xf3\x0e\x7d\xac\xe6\xf6\x9d\x9f\x85\xb3\xb8\xa5\xe6\ +\xa1\xdb\x01\x1f\x0f\x56\xd7\x3c\xfc\x1d\xa0\x8f\x87\xd6\xd4\x3c\ +\xfe\xe3\x5f\x12\x72\x75\x6b\xcd\x33\x27\xc0\xfc\x1f\x3f\xb7\xe6\ +\xdb\xff\x70\x26\x21\xcd\xff\x87\x7d\xde\x68\xd4\x3c\xdf\xf6\x1a\ +\xd0\x93\x59\xf3\x93\x56\x18\xe7\xca\x05\x35\xaf\xee\x01\x7c\x5d\ +\x7f\x66\xcd\xdb\x25\xa0\xcf\x23\xbf\x50\xf3\xf6\xe3\x80\xb7\x39\ +\xf3\x6a\xfe\xd4\x01\x74\x72\xf4\x13\xb5\x0b\x16\x01\xde\x0f\x7f\ +\xa9\xb6\xdb\x87\x73\x70\xfe\x3d\xb5\xdb\xeb\xaf\x23\x64\xd5\xff\ +\xd4\x9e\x7d\x3e\xe0\xe3\x91\x3f\xd6\x4e\xbe\x05\xf3\x7e\xe6\xd4\ +\xda\x0b\x27\x80\x6e\xcd\xb5\xb5\x97\x5c\x04\xe7\x7b\xed\x7f\xd4\ +\x5e\xf2\x5f\xb7\x13\xf2\xb9\x9f\xd4\x5e\xf9\xe2\x03\x84\x8c\x7f\ +\xbf\xf6\xea\xc7\xe1\xbc\xdd\x7a\x7a\xed\x1d\x97\xc3\x7c\xf5\xc7\ +\xb3\xcf\x6b\x7f\x5e\x7b\xd7\x91\xb0\x7f\x5f\x38\xa0\xf6\xde\xd7\ +\xe1\xbc\xac\x39\xb4\xf6\x89\xe6\x3f\x10\x72\xfa\x9f\x6a\x5f\x7c\ +\x71\x26\x21\x67\x1d\x5c\xfb\xaa\xf3\x2f\xc0\x87\x4e\xaf\xfd\x65\ +\x07\xd0\x4b\xf5\x3f\xd4\xbe\xde\xfb\x2d\x98\xff\x82\xda\xb7\x5e\ +\xba\x17\x9e\x9b\x5d\x57\x73\x11\xec\xc7\xc7\xe6\xd6\xd5\x3d\x0f\ +\xfb\x77\x2a\xa9\xeb\x78\x3b\x00\xfa\xf8\xcf\xba\x83\x67\x00\x1e\ +\x4f\x5b\x58\xb7\xec\x35\x38\x17\x1f\xf8\x4d\x5d\xff\xf1\x67\x01\ +\x7d\xb7\xd4\x9d\xf1\x12\xe0\x7f\xbf\x80\x7d\x3e\x70\x65\x5d\xf6\ +\x1d\x58\xcf\x19\x8f\xd7\x59\x6f\xc2\x79\xbf\xd5\xa8\xbb\xe4\x4b\ +\x30\xfe\x23\xdf\xaf\xbb\xf1\x5e\xc0\xef\x01\x3b\xd8\xe7\xa3\xad\ +\x75\xf7\x9f\x02\xdf\x0f\xd5\xd6\x3d\x78\xf7\xb3\x40\x57\x23\x75\ +\x8f\xd5\x7c\x07\x3e\x5f\xa9\x7b\xbc\x15\xf6\xff\x53\xd7\xd5\x3d\ +\x7e\x35\xd0\x6b\xb9\xbd\xee\x89\xed\x30\xde\xee\x2f\xd5\x7d\x7b\ +\x1b\xe5\x6b\x7f\x57\xf7\xda\xd5\xdd\x70\xbe\x77\xd5\xfd\xe9\x27\ +\xc0\x2f\x4e\x3d\xa3\x7e\xfe\xaf\x60\x3f\x1f\x3f\xb7\x7e\xe9\x9b\ +\x9f\x23\xe4\x13\x9b\xea\x97\x5d\xfc\x02\xd0\xdf\x1b\xf5\x3b\x0e\ +\x02\xfc\x01\x66\x76\xbf\x05\x78\xbd\xe2\x8c\xfa\xd3\x7f\x08\xcf\ +\x6d\x3c\xb2\xbe\x70\x29\xd0\xd5\xd6\xde\xfa\xe0\x10\xa0\xcb\xd1\ +\xa7\xea\xaf\xb8\xb1\x9f\x90\xf6\xc9\xfa\x9b\x76\x7e\x17\xe8\xe4\ +\x93\xf5\xdf\xf8\x30\xc0\x67\xfc\xa9\xfe\xbb\x8f\xd6\xc1\xbe\x5f\ +\x5e\xff\x6f\x75\x5b\x80\xce\xde\x5f\xff\xe6\x7d\x3b\x08\xf9\xc6\ +\xb5\xf5\xbf\x7d\x1e\xf0\x3c\xff\xdb\xf5\x7f\xfc\x1f\x80\x7f\x70\ +\xb0\xfe\xdd\xb9\x40\x67\xc7\x7d\xac\xfe\xdd\x3b\xe0\x7c\x7e\xe9\ +\x98\x86\xc6\x8f\x03\x3d\xac\x5c\xd4\xd0\xf6\x55\xe0\x83\x27\x35\ +\x37\xb4\x5f\x7c\x22\x9c\xc3\x35\x0d\xcb\x16\x01\x3e\x4e\x6c\x68\ +\x58\x3d\x0a\xfc\xe1\xa0\xe3\x1b\x56\xff\x1b\xec\xf3\x57\xde\x68\ +\xe8\xef\x5d\x46\xc8\x6d\x0f\x34\x9c\x7c\x28\x9c\xd7\xea\xc6\x86\ +\xcd\xfe\x42\xd8\xbf\xbf\x6d\xd8\x72\x37\xd0\xfd\xcd\x9f\x69\xd8\ +\xf9\xfc\xbf\xc1\xef\x3f\x6a\xc8\xfe\x37\xf0\xa7\x59\x6b\xd9\xe7\ +\x23\x9f\x6a\xf8\xe0\xfd\x70\x5e\xe7\x76\x37\x7c\xf8\xd9\x87\x08\ +\x79\xea\xd9\x86\x4b\x3d\xd8\xf7\x6b\xbe\xda\x70\xed\x1e\xa0\xcb\ +\x25\x67\x35\xdc\xb3\x12\xe0\xbf\xe6\xd2\x86\xa7\xdf\x85\x7d\x3c\ +\xea\x1b\x0d\xff\xfa\x06\xe0\xf1\xbc\xbf\x69\x5c\xf2\x15\xc0\xef\ +\x83\xaf\x35\xae\x7a\x06\xf8\xcc\xc3\x57\x35\x1e\x13\x00\xfc\x4b\ +\xcf\x6f\xec\x7f\x0c\xf0\xd9\x53\xdb\xb8\xf1\xbb\x2b\x81\x5e\x33\ +\x8d\xe6\xf9\x30\xee\xa2\xfd\x1b\x3f\xfd\xdc\x08\x21\x99\xaf\x37\ +\x7e\xe6\x15\xa0\xd7\xeb\xbe\xd8\xf8\xe5\x03\x3a\x81\x8e\x3f\xd0\ +\xf8\x95\x5a\xd8\x8f\xaf\x7e\xa8\xf1\x07\xab\x00\xcf\x37\x8f\x37\ +\xfe\xf8\x05\x1b\x3e\x5f\x6a\x7c\xf5\xb6\x27\x40\x7e\xfc\xae\xf1\ +\xd5\xa7\xe1\x1c\xdd\xfa\xeb\xc6\xb7\x36\x03\xbf\xba\xe1\x99\x26\ +\xe3\xe5\xc3\x40\xae\xbd\x03\x9f\x5f\x01\xb9\xf6\x79\xf8\x84\xf3\ +\xf2\xf4\x82\xa6\xcd\x37\x82\xdc\x5b\xf6\xf9\x26\xeb\x65\xc0\xdf\ +\xdf\xde\xd3\x34\xda\xb6\x94\x90\xfb\x7e\xd5\xf4\xc1\xab\x00\xcf\ +\x0d\x7f\x6c\x2a\x2f\x02\xf8\xae\xaa\x6a\x1a\xff\x0d\xc8\xbb\xf3\ +\x0e\x6f\xba\xf8\x6e\x58\x57\xe7\xc7\x9b\xae\x58\x04\xeb\x78\xf8\ +\x67\x4d\xb7\xff\x19\xf8\xe7\xf9\x1d\x4d\x8f\x2c\x03\xfc\xad\xb9\ +\xa6\xe9\x85\x79\xb0\xaf\x8f\xde\xd2\xf4\xc3\x05\x20\x3f\xbd\x23\ +\x9b\x5e\x5b\x04\xf8\x2a\x1c\xde\xf4\xc6\x11\x20\x37\xda\x8f\x6c\ +\x7a\xeb\x28\xe0\xb3\x73\xdf\x6d\xfa\xed\xa1\xb0\x0f\x35\x67\x36\ +\xfd\x79\x1d\xe5\x4b\x5f\x6e\x6e\x7a\x9a\xf2\xd5\x0d\xcd\x9d\xb7\ +\xc2\x3e\x9d\x75\x1b\x7c\xc2\xba\xcf\xfa\x2d\x7c\xc2\xba\xce\x5e\ +\xd7\xbc\xfc\x09\xe0\x03\xab\xaf\x68\x5e\xfd\x39\x58\xd7\x5d\xe7\ +\x36\x9f\xb4\x04\xce\xc5\x0d\xb9\xe6\xf7\xdf\x09\xe7\x69\xd5\xa1\ +\xcd\x1b\x3f\x0b\xfc\xfa\xf1\x7f\x6c\x3e\xfb\x15\xa0\xb7\x23\x9e\ +\x87\xcf\x03\x09\xe9\x9a\x0f\x9f\x20\xdf\xba\x3e\xd8\x6c\xdd\x06\ +\xf0\x3c\xf0\x54\xf3\x9e\xba\x0f\x13\x52\xd5\xd7\xfc\xa1\x6b\x60\ +\x9e\x75\x87\x35\x7f\xe4\x97\xc0\x0f\x4e\xfe\x5c\xf3\xc5\x33\x80\ +\x0e\x67\x3e\xd7\x7c\xf3\xc5\x73\x40\xde\x7c\xba\xf9\x96\x33\x60\ +\x7f\x1e\x59\xd6\x7c\xef\x6c\x38\x8f\x07\xcc\x63\x9f\x5f\xdd\xd2\ +\xfc\xb9\xcb\xde\x80\x73\xf3\x4a\xf3\x77\xce\x80\xf3\xb8\xdf\x17\ +\x9b\x7f\xb0\xed\x51\xa0\xef\x37\x9b\x7f\xf0\x2b\xe0\x4f\x07\xfd\ +\xa6\xf9\xc5\xdf\x01\x7c\x37\xbd\xda\xfc\xfa\xb5\x97\x12\x72\xee\ +\xc5\x2d\x0d\x7b\x00\xaf\xb7\xff\xa2\xe5\xe0\x57\x7c\x42\x72\x73\ +\x5a\x0e\xfb\x14\xe0\xdf\x3a\xa4\xe5\xb0\x6f\x03\xbd\x1f\x70\x79\ +\xcb\xe2\x0b\x00\x3f\xd7\x7f\xb2\xe5\x88\x6d\xf0\xde\xa7\xef\x6a\ +\x59\xfe\x10\xc8\xa5\x8f\x34\xb7\x1c\xeb\xc3\xba\x9f\x7c\xa8\xe5\ +\xfd\xef\x07\xfa\x3d\xed\x82\x96\xbe\x17\x60\x1d\xc3\x83\x2d\x5b\ +\x6f\x06\xbc\xdf\xf1\x54\x4b\xbe\xf3\x87\x20\x57\x66\xb4\x5c\xfa\ +\x4a\x03\xf0\xff\xa7\x5a\xae\xef\x07\x7d\x62\xf5\x3b\x2d\x37\xcf\ +\x04\xb8\x3f\x35\xbb\xe5\x8e\x8f\x02\x7f\xae\x3d\xa9\xe5\xa1\x01\ +\xe0\xbb\xd7\xad\x69\xf9\xe6\x2d\xf0\x79\xfb\x41\x2d\x3f\x5a\x02\ +\xfc\xab\x6e\x43\xcb\x8f\x2f\x00\x7e\xd6\xfa\x5f\x2d\xff\xf1\xe6\ +\x10\xe0\x65\x6b\x6b\xfd\x36\x38\xd7\x1d\xb5\xad\x07\xfd\x11\xe4\ +\xed\x2d\x76\xeb\x82\x66\xa0\xc7\x4f\xb4\xb4\x76\xde\x06\xfb\x76\ +\xe5\x78\xeb\x91\x17\x00\x7e\x1f\x5c\xdf\xba\x66\x33\x9c\xaf\xc6\ +\x3f\xb4\xf6\xcc\xfe\x01\x21\xf3\x1e\x6c\xdd\xfd\x14\xf0\x8d\x8f\ +\xf7\xb7\x3a\x97\xc0\xfa\x97\x1c\xd6\x7a\xfe\x2b\x77\x83\x7c\xba\ +\xb7\xf5\xc3\xc7\x03\xbd\xde\xf4\xa1\xd6\x6b\xef\x80\x7d\x7d\x7c\ +\x49\xeb\x8d\x1f\x07\x7c\x0d\x3f\xd4\xfa\xc4\x3d\x70\x9e\x37\xed\ +\xdf\xfa\xdc\x4f\x61\xbd\x5f\xbf\xa2\xf5\xc5\xb7\x80\x2f\x1e\x65\ +\xb5\xfe\xec\x16\xd0\x67\x3e\x72\x76\xeb\xab\x0b\xaa\x09\x39\xf3\ +\xae\xd6\x5f\x4c\x00\xbe\x2e\x7a\xa8\xf5\xb7\x3f\x83\xf5\xdc\xd9\ +\xd7\x36\xef\x9d\x37\xe1\x5c\xff\xbe\xad\xa7\x40\xcf\xcf\x35\x6d\ +\xeb\x7e\x01\xeb\x79\xec\xbb\x6d\xbb\xee\x04\xf8\x6e\xbc\xa2\x6d\ +\xf7\xfd\x30\xdf\xd5\x7f\x6c\x3b\xf3\x5f\x81\xae\xba\x9e\x69\xcb\ +\x7d\x16\xe8\xba\xb4\xb6\xad\xf8\x07\x38\x1f\x4d\x5f\x6d\x0b\x7e\ +\x3a\x48\xc8\xc1\xff\xd9\x36\xfe\xf0\x27\x40\x2e\x6c\x68\xbb\xed\ +\x0d\xc0\xff\xe8\x49\x6d\x9f\x7d\x09\xf0\xb4\xf2\xaa\xb6\xbb\x5f\ +\xbe\x8b\x90\xed\xd7\xb5\xdd\xf3\xd8\x37\x61\x5d\xfd\x6d\xcf\x3e\ +\x0b\x7c\xe1\xe1\x93\xda\xde\x3e\x0e\xe6\xfb\xec\xe6\xf6\xb9\x87\ +\x00\xbf\x39\xf5\xa9\xf6\xa5\xd7\xe7\x08\xe9\xdd\xd9\x7e\x44\x2d\ +\xd0\xd9\xf5\x0b\xda\xbb\x7e\x09\xcf\x3d\x76\x46\xfb\x96\xef\x01\ +\xfe\x5b\x66\xb7\xbb\xb7\x02\x3d\x7f\xe3\xc0\xf6\xf3\xce\xed\x22\ +\xe4\x98\x57\xda\xaf\x39\x07\xf4\xa3\xe3\x87\xdb\xaf\xb5\x00\x3f\ +\x87\x14\xdb\x9f\xfb\x47\x38\x47\x87\x3d\xdf\xce\xce\xc9\xcb\xf0\ +\x09\x74\xf8\xd8\xc1\xed\x2f\x9c\x0e\xf8\x39\xfd\xd3\xed\xbf\x7e\ +\xad\x06\xe4\xfe\xef\xda\x7f\xf3\x2a\xd0\xc1\xce\x6b\x3b\x1a\xae\ +\x02\xfa\xbe\xfc\xb2\x8e\x96\x19\xb0\x4f\x3b\x5a\x3a\x0e\xbc\x10\ +\xf0\x47\x7e\xd3\x71\xe8\x55\xc0\x27\xaf\x7b\xad\x63\x6b\xb9\x07\ +\xe4\xfe\xa2\x8e\xb3\x9e\xfb\x07\x98\xef\x03\x1d\x13\xdf\x02\xfa\ +\xba\x70\x53\xc7\x65\x2d\xc0\x07\x76\xfe\xae\xe3\x9a\x7b\xef\x81\ +\x75\xdf\xdb\x71\x73\x33\xe8\x3d\x4f\x36\x74\xdc\xfe\xc6\x1d\xc0\ +\xc7\xce\xeb\x78\xf2\x12\x38\x87\x9f\x7f\xb2\xe3\x85\xef\x03\x5d\ +\xf7\xbc\xd9\xf1\xf3\x05\x70\xae\x97\x1e\xd2\xf1\x4e\xfd\x7c\x90\ +\x8f\x47\x75\xbc\xb3\x14\xf4\x8b\xab\x1f\xed\xf8\xd3\x59\x40\x2f\ +\xd7\xbf\x02\xc4\xf8\xad\x87\x00\x32\xb2\x90\x6c\x27\x2e\xb1\xc8\ +\x08\x31\x48\x86\x4c\xc2\xff\x1d\x52\x26\x13\xf0\x8d\x41\x4a\xf0\ +\x93\x43\x82\x46\x64\xfc\xf0\xaf\xa9\x37\x97\x33\xb6\xb9\xb6\x13\ +\x00\x8d\x92\xf6\x7e\xcf\xcc\x07\x67\xc1\x77\xf8\x55\x15\x1d\x6d\ +\x58\x1b\x6d\x09\xbc\x2b\xc7\x90\xa3\xb3\x6f\x33\xf0\x8c\x0f\xdf\ +\x9a\xf0\x9f\x43\x72\x38\x5b\x8e\x78\xf8\x7b\x8e\xac\x80\xbf\xfb\ +\xf0\x66\x81\xd8\xf0\x57\x4b\xce\xdf\x09\x73\xf9\x86\x69\x94\xe8\ +\x7c\x46\xe0\x1a\xa6\x63\x58\x7b\x6c\x3f\xb0\x9d\x11\x63\xc2\xf6\ +\xac\x15\x19\xbf\x54\xb0\x1d\xab\x12\x78\xf1\xc5\x8e\xc0\xa4\xf4\ +\x9b\x12\xfc\xdc\x4d\xff\x93\x93\x75\xd0\xc5\xc2\x1c\x23\x9e\x5b\ +\x2e\x75\x77\x77\xd3\x31\x67\xc8\x31\x87\xdd\xf5\xf4\x7b\x1c\xb5\ +\xa4\x8d\x9a\x03\x90\x2d\x1c\x97\x2e\xd0\x82\x25\x58\x64\x0c\x16\ +\x6a\xc1\x7f\x1e\x5f\xe8\x38\x3c\xed\xc2\x6f\x13\xf8\x5d\x89\x74\ +\xc2\xe7\xd2\x14\x08\x92\xb0\x4a\x18\x57\x22\x42\x82\x51\xcb\xf0\ +\xad\x82\x95\x0d\xac\x9c\xe1\x66\xce\x81\x1f\x3a\xfd\xa5\x51\xfc\ +\xe0\x3a\xa6\x5a\xc4\x0e\x18\x9a\x4e\x65\xf0\x49\x0d\x32\x0a\x7b\ +\x67\xe3\x92\x46\x10\x80\x02\x00\xe8\x00\x68\x1e\x2e\x27\x87\xcb\ +\x32\xf0\x2d\x03\x16\x49\x97\x5a\x86\xbf\x19\x00\x64\x89\xa3\x60\ +\x0c\x7e\xf6\x13\x17\xad\x76\x75\x4d\x6f\x09\x36\xcd\xf2\x8d\x6c\ +\xd9\xf3\x2c\xd8\x58\xba\x83\xb0\x9d\xb9\x60\x14\x16\x90\x33\xb2\ +\x6e\xc1\xf5\xe8\x6a\x22\x6b\xf4\xf5\xc5\xc0\x10\x93\x43\xc1\x64\ +\xc1\xc2\xc5\x74\x92\x6d\xb0\x04\x3f\x61\x09\x14\xa7\x93\x00\xaa\ +\x01\x9f\xae\x06\xc4\xfe\x38\x82\xd1\xc7\x41\xc0\xa1\x2a\x8f\xdf\ +\x48\xd6\xe2\x72\x46\xe4\xfb\x35\xbd\x5e\x96\x3e\xdf\xc4\x9f\xf7\ +\xb2\xf8\x60\x8e\x0c\x01\x0e\x18\x79\x89\x8d\xc5\x17\x81\xd4\x0c\ +\xd2\x07\xe7\x65\x90\x6c\x42\xec\x30\x70\x19\x46\x47\x91\x98\xba\ +\xe0\xa7\x21\xb2\x81\x6c\x24\x03\xf0\x1c\xc5\x6a\x31\xe1\x49\x97\ +\x94\x15\x39\xf4\x79\x96\x19\x00\x26\x61\xdf\x4d\x2f\xdb\x6d\xf4\ +\x0d\x0f\x6e\x42\xcc\x39\x66\xa9\xcb\x18\xda\xb0\x71\x60\x98\xfe\ +\x9a\x75\x1d\x3f\xf0\x4c\xdb\x49\x80\xb8\x99\xf4\xc2\xfe\xd0\x93\ +\x38\x29\xc7\xad\xeb\xf5\x3c\x73\x92\x3e\xdc\x22\x1e\x86\xdf\xf1\ +\xf1\x71\x58\x04\x25\x07\x13\x01\xf2\x91\x78\xe8\xa1\x77\x01\xc7\ +\x26\x27\x06\xfa\x7f\xfa\x4c\x16\xe9\xd9\x81\xa5\x95\xe5\x5f\x4d\ +\x31\x19\xfc\x9c\x47\xfa\x2e\xf2\x31\xc4\xe9\xc9\xe2\xc8\x39\x1c\ +\x29\x43\xce\x61\xdf\x48\xd0\x8e\x97\x4b\x06\xae\x50\x30\x3d\x03\ +\x48\xc5\x03\xe2\x30\x9d\x91\x32\xfd\xd5\xa4\x90\x1a\x79\xcf\x2d\ +\xc2\x13\x11\x02\x4a\x5c\x50\x3b\x6c\xed\x72\x72\x0a\x52\xf2\x84\ +\x46\x20\x8d\x6b\x97\x0f\x49\xde\xd2\xc6\xde\x5a\xcb\xbe\xc1\xf7\ +\xae\x8e\xed\xf4\x38\x9e\x92\x02\x7c\xd2\xe5\x0a\x12\x5c\xae\x71\ +\xc4\x31\x31\x4b\x84\x1a\x92\x77\x7a\xdf\x68\xa2\x4f\x21\xa8\x58\ +\x2e\x04\x76\xa9\x60\x2d\x67\xfc\x33\xb3\x9c\x31\xcb\x74\x64\x92\ +\xb0\xe4\x56\x00\xc5\x86\x05\xd0\x65\x17\xe4\x84\xf5\x7d\xb6\x97\ +\x65\x87\xa7\x95\xbd\xc3\xbe\xc0\x57\x2e\x8d\x61\xc9\x57\x43\x4c\ +\x0b\x0b\xbd\xf0\x8c\xc2\x00\x93\x1c\x63\x9c\x43\x25\x70\x1b\x39\ +\xc2\x18\x32\x68\x5f\x82\xfb\x3e\x85\x9f\x2c\xc2\x19\x45\x47\xef\ +\xa6\x61\xc5\x7c\x0c\x4a\x58\x94\x41\x68\x2c\x28\xbe\xca\x66\x58\ +\x45\x01\xe6\xd7\x65\x57\x5d\x5f\xc1\x65\xc4\xc3\x49\x0e\x7f\xc7\ +\xc7\x7b\xd4\xe3\x7c\xa9\xa3\x9c\x57\x4d\x71\x02\x80\xc7\xf9\x64\ +\xa9\x1c\xfe\x10\x1c\xae\x92\x2c\x48\x9c\x76\x0e\xd9\xcc\xb1\x66\ +\x48\xbc\x85\x99\x62\x33\x3c\xec\x5b\xc6\x26\x4e\xf5\x1d\x72\x04\ +\xdf\xda\x24\x88\x60\xa5\x36\x8a\x10\x7e\xc9\x72\x23\x3a\xfa\xc1\ +\x38\x10\x03\x19\x59\x7e\xc6\xa2\x72\x2a\xe7\x99\x13\x4e\xc5\xe9\ +\xe6\x82\xac\xb5\x70\x63\x27\x51\x2a\x7a\x09\x6a\x4a\xeb\xa0\x55\ +\x74\xc7\xad\x98\xa6\xd2\x6f\x15\x94\x2a\x50\x48\x18\x28\xaa\xb1\ +\x8c\x73\x39\x98\x46\x67\x61\x94\x36\x86\x9b\x94\xc7\xa7\x93\x34\ +\x98\x95\x0c\x34\xa5\xc4\x30\xce\x14\x51\x63\x28\x13\x8b\x6b\x32\ +\x21\xf0\xef\x8d\x1d\x24\x8a\xee\x22\x0a\x63\x1f\xb7\x21\xdd\x61\ +\x0a\xd2\xb3\x94\x84\x63\x27\x8e\x30\x3d\x94\x6c\xee\xa0\xe2\x41\ +\xdb\xa2\x0e\x5a\xce\x2e\x5a\x8e\x6f\xbb\xce\xde\x59\x4f\xf4\xfc\ +\x51\x26\x3e\x02\x6f\x07\x1a\x85\xf4\x8b\xe1\x38\x59\xf7\x87\x30\ +\xc1\xce\x15\x6c\x8e\x52\x63\xe5\x0b\x53\x0c\xb2\x1e\x77\x36\xc7\ +\x15\x37\x23\x61\x10\x77\xc2\x19\xf1\xcc\x9c\x7e\x34\xe4\x77\x7c\ +\x8f\x06\x70\x10\x85\x1b\x31\xd8\xbe\x68\x89\x16\x02\x61\xa2\xc2\ +\x45\x47\x1b\xc7\x3d\x11\x87\xcc\x4b\x7c\xa3\x4b\x92\xe3\x78\x8c\ +\xd8\xc7\x51\x06\x8f\x51\x2a\x92\x8b\x5a\xb7\x6e\x4f\xa9\xe0\xe6\ +\x92\xf9\x88\x6f\x00\xf1\xc1\x46\xd8\x45\x90\x21\x9e\xf8\xb2\x8b\ +\x12\xab\x5f\xce\xc0\x6e\xc1\xf6\xe4\xcd\xac\xe5\x57\x44\xc8\x7c\ +\xd8\x1a\x8a\x90\x3c\x27\x13\x17\x49\x6f\x0c\xc9\x30\x4b\x46\x95\ +\xea\x8d\x2f\xd3\x5d\x1f\x1a\xb3\x82\xec\x28\x1d\x70\x26\x1f\x90\ +\xfe\x7f\x15\xfb\x1a\xc7\x9c\x01\xe4\x68\xe1\x18\x0e\x9e\x35\xa5\ +\x92\x35\xc0\xb3\x13\x70\xa4\x34\xe9\xc5\xbf\xc1\x17\x07\x51\x7a\ +\x05\x91\xdd\x98\x42\x61\x95\x8a\xed\x12\xce\xcc\xc4\xb4\x19\xc4\ +\x64\x4e\xb3\x1d\x96\x6f\x2b\x07\x15\x70\xe8\x82\x6a\x66\x70\x38\ +\x0c\x7f\xd4\xb2\x82\xee\x0a\x00\x36\x83\x46\x3e\x89\x24\xac\xd6\ +\x54\xbb\x2e\x67\x23\xe9\x37\xb3\xe7\xe9\xaf\xf8\xf0\xd1\xea\x61\ +\x6d\x45\x26\x52\x15\xfd\x79\x22\x69\x4d\x72\xd8\x03\xe9\x38\x0c\ +\x60\xd8\x45\x1b\x78\xa7\xd2\x90\xa2\x33\xcd\x01\x05\xc9\x22\xaf\ +\x23\xb2\x73\x7c\x3e\x64\xf0\x72\xb4\x96\x01\xdb\xb1\xfd\x51\x43\ +\xf0\x2f\xae\x43\xb3\x6f\x25\x27\xef\xaf\x34\x0e\x72\x14\x97\xb3\ +\x58\x4f\xf2\x1a\x14\x1e\x92\xbb\x14\x99\xd0\x91\x73\x2e\x64\xa3\ +\x23\x7b\xe1\xf6\x43\x30\xea\x96\x03\x23\x0b\xe2\x83\xa2\x9a\xa1\ +\x2d\x19\x94\x3d\xc8\x32\x02\x9c\x38\xcc\x54\x57\x85\xf4\x35\x06\ +\xde\xbe\xea\x6a\x53\x69\x69\x6b\x14\x73\x5c\xc5\xd5\xb3\xf4\xaa\ +\x19\xdf\x21\xb9\x9c\x7a\x00\x4c\xdf\x8f\x5a\x21\xc0\xa3\x0f\xce\ +\xe0\x32\xd0\x47\x4d\xd4\x26\x79\xf5\xca\x66\x90\x52\xda\x2b\xf4\ +\x57\x7c\xe5\x7b\xb8\x6b\x13\xc8\x83\xa2\xf6\xee\xd4\x67\x27\x80\ +\x29\x7c\xfc\x3b\x43\xac\x12\xb4\x7f\x05\xf5\x37\x41\x56\x09\xa9\ +\x44\xcf\xb0\x1d\x61\xe6\xbb\x37\xa3\x50\x4e\x3c\xb0\x19\x2b\x98\ +\xb0\x2c\xc7\x58\xc5\x24\xb6\x3f\x0d\x99\x95\x75\x4b\x93\x49\x48\ +\x9c\xc5\xf1\x5e\x42\xc6\xe1\x47\xf8\x56\xfd\xd6\x7c\xde\xb7\x02\ +\x4d\xb5\x64\x5f\xe0\xab\x0f\x86\x5e\x65\xeb\x4e\x79\xda\xff\x9f\ +\x63\x79\x03\x5b\x47\x02\x9f\xd9\x07\x9c\xc6\x51\xd3\x55\xd1\x14\ +\xb5\xf9\xf9\x4d\x32\x20\x67\xeb\x06\xa4\x2d\x35\x7b\x4d\x63\x56\ +\x4a\x57\x23\xd9\x16\x51\x35\xeb\xa4\x8e\x19\x7b\xf8\xca\x98\x86\ +\x36\x82\x92\x7e\x12\xbe\x1d\x45\x5e\x36\x26\x15\x64\x61\x2a\x8a\ +\xef\xff\x7a\xe6\xa0\x66\x2f\x7b\x16\x33\x91\xc1\x6e\x9e\x1c\x49\ +\xa3\x8b\x69\x72\x6a\x1b\x7b\x47\xe3\x22\x1a\xf8\x4a\x02\xf3\xc7\ +\x2a\xbc\x38\x1c\xc3\x50\x98\xdd\x7a\xb8\xc6\x69\xe2\x44\x4e\xbe\ +\x34\xce\x52\xb9\x63\x20\x6a\xe3\x69\xfa\xca\xa0\x78\x82\xfb\x02\ +\x06\x75\x10\x94\xee\x27\x1f\xab\xf8\x6a\x2b\xbc\xea\x0a\x8d\x4e\ +\x1d\xed\x41\x37\x00\x98\x34\xfa\x65\x5f\xe0\x2b\xf7\xe9\xaf\x54\ +\x64\xad\x82\x86\xc7\xfe\xbf\x60\x9c\x83\x0c\xfe\x64\xd6\x99\xf6\ +\x54\x67\x95\x05\x1e\x3e\xdc\x1a\x72\x9a\x91\x56\x28\xc7\x53\x9e\ +\x86\xba\xa1\xac\x59\xd0\x4d\x6a\xfc\x1d\x1f\x7f\x4e\x3d\x9e\x12\ +\x93\x71\x6b\x8f\x71\x66\x5f\x12\x64\x1a\x5c\x0b\x0c\xfe\x35\x70\ +\x7d\x06\x2e\xaf\x82\x94\xe2\x1e\xae\x8c\x09\xf6\x3a\x12\xfb\x3e\ +\xb0\xd4\x18\x16\x67\x91\x53\x98\x11\x47\x92\x9c\xcf\xad\x43\xcc\ +\x24\x93\x8e\xe5\xfd\xf8\xfb\xf8\xb5\xf2\x2c\x9f\xaf\x8d\x12\xde\ +\x8f\x24\x35\xa1\x88\xd6\x80\x7a\x26\xc7\xdf\xa5\xfc\x25\xcf\x4d\ +\x23\x8a\x3b\xa6\xb7\x18\xd2\xcd\x6b\x73\xd3\x49\xec\x74\x14\xda\ +\x63\x19\x58\x40\x65\x85\x82\xc4\x1a\x55\x12\x19\x3e\xcd\x22\xe0\ +\xcd\xa4\xbe\x5f\x78\x82\xe2\xd8\xf6\xf7\xba\xb0\xb3\xb5\x85\x31\ +\xa2\x11\x4e\x00\x4b\x3a\x08\xc6\xd1\x05\x40\x8f\x60\x80\x2a\xd6\ +\x08\x7e\x67\xe3\x01\xa7\xe4\xe8\xf2\x05\x7b\x7c\x24\xc6\x0f\x4b\ +\x11\x95\xa0\x6b\x48\x58\xbf\x13\xae\x37\x46\xd5\xd9\x52\xc1\x04\ +\x25\x37\x0f\xb6\xd7\x88\xe5\x16\xad\xc0\x9b\x64\xc7\x88\x1b\xb5\ +\x21\x88\xb7\xd1\x67\x39\xab\x16\x10\x6f\x67\xd6\x9f\xd2\xd9\xb5\ +\x47\xa7\x18\xa0\x04\x27\xc0\x45\xe3\x93\x2e\x94\x45\x75\x98\xa7\ +\x47\x38\x78\x99\xc1\x4d\xf7\xb9\x80\x4e\xdd\x0c\x2e\x8f\x29\x8c\ +\x14\x45\xba\x05\x68\xf2\x78\x83\x66\x03\x86\xa5\xb4\xe6\x3e\x58\ +\xd3\xe7\x3a\xe3\x96\x17\x18\x19\x3b\x67\x53\x46\x0e\x2b\x85\xad\ +\x9c\x94\xfa\x19\xb3\x19\x69\xc0\x80\x59\x87\xba\x8b\x4e\xac\x66\ +\xd4\x2c\x59\xab\xfa\xb7\xdb\xd6\x04\xae\xe6\x0c\x4d\x00\x8d\x23\ +\x25\x16\x51\x08\xf5\x13\x11\x03\x61\x06\x55\x98\x3f\xa4\x54\x79\ +\x25\xe4\xcb\x84\x20\xc2\xe9\x8d\x55\xfd\xc6\x38\x00\x00\x96\x60\ +\x3e\x31\xa2\x51\x01\xd6\x79\x18\x64\xaa\x00\xa1\x9c\xab\x2d\x34\ +\xc7\x14\xc3\xcd\x85\xa5\x53\x26\x34\x81\xe8\xa7\x1b\x46\x91\xb0\ +\x96\xfa\xe3\xf5\xc1\xdc\x09\x63\x08\xd8\x87\xb1\xd6\xf4\x42\x83\ +\xb9\x13\xf4\x6b\xf8\x96\xfb\x00\xc5\x60\x7e\x64\x87\x7d\x39\x74\ +\x80\xf8\x29\x20\x5f\x55\x53\xcc\xa1\x43\xf9\x7c\xef\x28\xa3\x02\ +\x7e\xe4\x16\x32\x53\xce\xb6\x25\xa6\x36\x30\x4c\x28\x83\x1c\x0f\ +\xcf\xb4\x15\x86\x45\x7a\xf4\xc4\x71\xa8\xec\x89\xb9\xa8\x34\x6d\ +\x7e\xd8\xda\x23\xb4\x42\xe6\x81\x50\xb4\x5a\x4b\xff\x96\xf4\xe8\ +\x09\x5c\x2c\x31\x77\xb7\x01\xa7\xd1\xc5\x2d\xa4\xe7\xbf\x4c\x87\ +\x40\xd2\x2a\xc2\xb7\x39\xb4\x96\xc4\xd2\x56\x50\x84\x2a\x6b\x7d\ +\xd8\x1d\x01\x3d\x83\x73\xf2\x72\x16\xa0\x34\x36\xbb\xcc\x11\x35\ +\x8f\xcf\x88\x4f\xf4\xf1\x07\xe8\x3a\xe8\x03\x08\x43\x10\x81\x61\ +\x6c\x3a\x30\x68\xdc\x4b\x67\xe2\x05\x3c\x0c\x4e\x45\xcf\x95\xf2\ +\x8c\xac\x60\x90\x31\x29\xa6\xc3\x87\x2b\x40\x86\xe6\x00\xb6\xa4\ +\x0a\x91\x6e\x4d\xab\xc8\x0e\x14\xd5\x3e\x5f\x93\x80\x20\xc0\x6f\ +\x02\x64\x4b\x94\x24\x7c\xb5\x2e\x09\xd1\x2c\x85\xcd\xc0\x76\xca\ +\x96\x44\xe5\x9c\xc8\xb4\xf8\x57\x39\x65\x21\x32\x65\x54\xa6\x4d\ +\x31\x75\x2a\x24\x52\xbe\x39\x4e\x98\x6b\x50\xa1\xaf\x2b\x82\x3e\ +\x05\xb1\x42\x5d\xd6\x2d\x16\x81\x0d\x32\xdc\x4d\xbd\x88\x2b\xb9\ +\x35\x29\x1c\xda\x1e\x31\x24\x6b\x77\xe5\x41\x52\xac\x6f\xba\x56\ +\xbe\x72\x8f\xb3\xc5\x33\x54\x59\xdc\xcd\x5e\x40\x53\x4d\xb8\x55\ +\x14\xc3\x1c\x18\x9a\x30\x4b\xbe\x91\xb3\x7d\x90\x72\x93\x46\x91\ +\xae\x2e\x81\x59\x4a\xce\x4f\x5d\xe6\x79\x8f\x4a\x70\xca\xfd\xf3\ +\x05\x33\xa0\xbe\x13\x64\xa6\x07\xea\xcb\xef\x67\x03\xca\xd5\x77\ +\x56\xa0\x9a\x31\x64\x16\x49\xb4\xb2\x3f\xa7\x15\x1d\xb4\xbd\x4e\ +\x33\x1b\xf8\x03\x8d\xf8\x8e\xe0\x5e\x1a\xe8\x59\x06\x99\xa9\x44\ +\x2f\x1f\x74\xbd\x67\xe7\x34\x1f\x15\xfb\x96\x7e\x89\xa3\xac\x09\ +\x8d\xa2\x87\x89\x74\x7e\x3b\x82\xd2\xd8\xc0\xcd\x5b\x81\xae\x5f\ +\xc5\x36\xe6\xe9\xb4\xc3\x38\xee\x88\x0d\xd8\x74\x56\xb8\xf9\x7c\ +\xe5\x89\xa3\xe0\x73\x96\x1e\x03\x5f\xb0\xc7\xd0\x28\x94\x6f\x57\ +\x00\x3f\x59\x4c\xb8\x48\x1b\x2e\xf7\xfb\x25\x82\xaf\x09\x0b\x60\ +\x1b\x40\xf5\x49\xe0\xcb\x89\x5b\x61\x62\x8f\x07\x04\xf6\x28\x43\ +\x6c\xd8\xb3\x8b\xd6\x1e\xcd\xd6\x60\x5f\xd0\x57\xaa\xda\x81\x2f\ +\x53\xda\x2f\x11\xe1\x3d\xf7\x90\xee\xd3\x8a\x7e\xe5\x75\x67\x5c\ +\x95\xbd\xcb\x44\x15\xa5\xfd\x31\x7e\xac\x95\x0f\x3e\x2c\xaa\x92\ +\x4d\xb6\x0c\x8a\x3c\x11\x64\x0a\xd0\x54\x4c\xca\x6f\x08\xc7\x62\ +\x18\x1c\xe2\x69\x01\xbf\xc3\x55\x09\x53\x2a\x6a\x4e\xc8\x18\x19\ +\x93\x46\x28\x9c\x04\x89\xb4\xcb\x28\x8e\x7c\x8a\x71\x60\x33\x96\ +\x93\x9c\x79\xd2\xc5\xff\xee\x95\x69\x18\x81\xba\x5e\x81\x36\x30\ +\x2c\xc0\x25\x29\xdd\x38\x5f\xd8\x23\xd2\x18\xf1\xd1\x10\xe1\xd9\ +\x17\x3c\xc4\x63\xb0\xb4\x0f\xc7\xf5\x8a\x66\x81\x59\x2b\x36\xea\ +\x80\x7e\xe2\xbe\x91\xa3\x01\x5b\xcc\x2c\x08\x22\x4c\x59\xf8\xca\ +\x82\x38\x8e\xe4\xea\xf6\x3b\xcd\xc9\xb9\x46\xc1\xf4\x03\x3d\xc4\ +\xc4\x63\x6f\xf4\x6f\xd2\x6d\xba\x25\xe5\x3c\x23\x28\x00\xac\x90\ +\x3d\xc0\x70\x9d\x0c\xc1\x6a\x3a\x8b\x08\x88\x52\x38\x30\x14\xaa\ +\xb0\x91\xaf\x18\x2a\x4d\x82\xf2\x7b\x40\x3d\x45\x84\x6f\x7a\x31\ +\x0e\x1f\xd7\x40\x95\x25\x9b\x53\xac\xc5\xa9\x43\x8f\x24\xe9\x12\ +\x83\x45\xb1\x0a\xdc\x79\x21\xb8\x3e\x5b\xaf\x2d\xe5\x86\x48\x83\ +\xd0\xe9\x9e\x62\x26\x3a\x32\x53\xe0\x46\xc2\x4f\x49\x1c\x7d\xe0\ +\x64\x17\x89\xa5\x62\x78\xca\x75\x2c\x24\xc1\x2c\x33\x17\x7c\x0c\ +\x00\xc0\x43\x54\x48\x20\x91\xe5\xed\x42\x01\x7e\x47\x92\xc4\x27\ +\xcb\x8e\x1d\x58\x2a\x72\xc5\x1d\x55\xa7\x95\x54\xdc\x6a\x26\xd9\ +\x0a\xc8\x19\xd1\x23\x82\xca\xc7\xc5\x1f\xac\xf0\xea\xcd\x89\x4e\ +\xc9\x22\xe2\x22\x40\x1e\x43\x39\xc1\xf2\x90\x9b\x52\x71\xc6\x1d\ +\xdc\xb0\x32\x40\x56\xf5\xcb\xdf\x96\x46\xf8\x05\x0b\xa4\x09\x1e\ +\x1a\xe5\x1b\xec\xaf\x59\x4d\xcb\x33\xe9\x4c\x72\x01\x9b\x2a\x26\ +\x88\xe0\x6a\x76\xd0\x78\x74\x67\x3f\xfd\x58\x3a\xad\x70\x04\x7d\ +\x83\xbb\x6e\x24\xe8\xca\x75\x83\x03\x26\x3d\xdd\x1f\x11\xca\x61\ +\x85\xa2\x3f\x21\xde\xce\xfe\xb2\x16\x16\x1d\x8f\xb7\x2f\xe8\x13\ +\x64\x20\x94\x05\x5c\x0f\xd5\x13\xd6\xaa\x74\x9e\xfd\x15\x0c\xc3\ +\xae\x9e\xe1\xd2\x99\x38\x21\x8b\xc2\xae\x4d\x0c\xf0\x77\xe0\xf8\ +\x80\x92\x34\xc3\xcf\x07\x86\x5b\xe0\x99\x06\xe1\x43\x15\x89\x64\ +\xf6\x16\x02\xaa\x6b\xd0\xc1\x0e\x59\x5f\xb6\x7b\x7a\xfa\x6d\xb3\ +\xe0\x8e\xc0\x67\x61\x64\xc8\x0a\x68\xe2\x80\x8f\x93\xc8\x58\xa0\ +\x8e\xc2\x21\xd0\xf2\xd6\xc3\xe7\x36\xa4\x42\x8f\xb0\x88\xb8\x81\ +\xb0\x8f\xa0\xca\xa0\x4f\x76\x28\x4c\x66\x79\x0e\x90\x84\x31\xb4\ +\x7d\xbd\xb1\xcd\x0c\xe8\xaf\xbe\x51\x70\xb3\xd2\xbd\x90\x02\x88\ +\xd9\xb8\xb6\x09\x4c\xed\xf2\x91\x3c\xd1\x42\x54\x6a\x43\x6f\x61\ +\xc2\x9c\x04\x09\x01\xd6\x5d\xca\x21\x3f\x0c\x72\xb9\x80\xc7\x2f\ +\x4f\x98\x2b\x29\xc0\x78\xb6\x4a\x58\x4c\xe2\x67\x9d\x88\x52\x11\ +\x1b\x19\x97\x92\x6d\x4c\x1b\x2b\x11\xfd\x88\x41\x96\xd4\xc8\xf8\ +\xbc\xca\xb6\x59\x2e\x80\x67\x16\xab\xe4\x40\x9d\xa0\x18\x9a\x19\ +\xae\x0c\xd1\x1d\x33\xc6\xac\xc9\xa5\x29\x97\xc7\x32\xef\xec\xb0\ +\x8b\xb3\xd7\x83\x57\x52\xa3\x7c\x18\x6d\x38\xa1\x75\x30\x13\x79\ +\xb5\x42\xf9\x5a\x33\x3b\xe6\x83\x64\x19\x35\x56\xbf\xa7\x21\x8f\ +\x4d\x1a\xf2\xd8\xf7\x34\xe4\x71\x49\x43\x1e\x97\x72\xc8\x80\x1b\ +\xd2\x8c\xb8\x0b\x72\x8b\xa3\x5e\x41\x66\xfb\x9f\x83\x7e\x29\xf5\ +\x1d\x63\xcf\x3e\x92\xca\x51\xe8\x59\xd1\xc5\x13\x4d\xcc\x9d\x80\ +\x67\x0b\x5c\x98\x8d\xa3\x5f\xd1\xd3\x6c\xb2\x93\xfa\x46\xad\xec\ +\x18\x73\x19\xda\x79\x63\xd2\x2d\x1b\x13\x26\xcd\x4f\xa6\x51\x2e\ +\xe0\xad\x40\x16\x47\xf5\x33\xf9\x82\x49\xb9\x19\xcb\xb0\x8b\x25\ +\xd7\xa3\xa2\x2b\x70\xdd\xee\x94\x8b\xbc\x91\x6c\x96\x1c\x28\xc7\ +\xc3\xd5\x22\x76\xce\x58\x60\x78\x61\x19\x94\xc8\x6c\x11\xd1\x88\ +\xba\x23\x65\x7c\x27\x1e\xd1\x80\xeb\x97\x23\x5c\x5e\x0b\x27\xac\ +\x49\x96\x21\x02\x5c\x1c\x29\x11\x11\x12\x0d\x43\x53\xa0\xc1\x71\ +\x9d\xe5\x0e\x18\x68\x39\x23\x03\x6c\x64\x0c\x30\x92\xb1\x46\x6c\ +\xc7\x61\x09\x4f\x34\xcf\xd7\x58\x96\x84\x9b\x94\xa8\x99\xa1\x27\ +\x22\x86\x48\xbe\x91\x65\xe5\xa5\xa6\xf7\xe8\x48\xc7\xc6\x46\x4a\ +\x4b\xe6\xd1\x91\x8e\x8b\x8d\x94\x96\xba\x8f\xe1\x6c\xaf\x2c\x95\ +\x2d\x16\x1f\x28\xf1\x91\x05\xf3\x63\xaa\x25\x4b\xf1\x09\x34\x91\ +\x74\x50\x1f\x26\x50\x17\xcd\x52\x09\xb1\x8a\x1a\x24\xa6\x57\xa7\ +\x04\x60\xb1\x06\xc0\x18\x1e\x98\x20\xc4\x25\x0b\xe4\xd7\x21\x4a\ +\x98\xa9\x26\xa4\x1b\x0c\x0a\x97\x95\x72\xa6\x4e\xcc\x2e\x10\x56\ +\x8e\x70\xbb\x4e\x25\x1a\xdb\xfa\x84\xea\x31\x0d\x01\x39\x3b\xd9\ +\xf1\xa6\x22\x1b\xba\x93\x29\xe5\x98\x95\x9c\x79\x32\x2f\x5e\x47\ +\x8f\xe6\xf6\xc2\xec\xf6\x94\x73\x2c\xab\x30\x87\x5e\xc6\xc0\x8f\ +\xb6\x72\x16\x86\x66\xc3\x90\x86\x41\x8f\x62\xca\x29\xe7\x87\xf4\ +\xd7\xb0\xab\x5e\xcf\xee\xeb\x60\x5a\x24\xf7\xbd\x33\x4d\x3a\x15\ +\x6d\x2b\x5f\x6e\x09\x49\xcb\x8c\x04\x44\xa6\xf6\xad\x1f\xc4\xa7\ +\x2d\x99\xd4\xff\x13\x78\x76\x56\x77\xa5\xa7\x00\x60\x21\x30\xfc\ +\x9d\xa0\x29\xd3\xec\x73\x65\x13\x07\x78\xc0\xfc\x48\x06\xe3\xcc\ +\xfe\x9d\x03\xd4\xcd\x56\x34\xc1\x18\x2b\x51\x7c\xa6\x9d\x65\x8e\ +\x4c\xb4\x29\xa3\x2b\x22\x4e\x14\x6d\xfd\x56\xde\x04\xf5\x7b\x5a\ +\xf4\xb0\x21\x32\xec\x28\x61\xb5\x05\xe2\xe0\x30\x1f\x23\x0d\x2a\ +\x51\x6c\xe6\xa5\xae\x1c\x4d\x15\x55\x4b\x5c\x22\xc0\x18\xb5\xec\ +\x91\xd1\x00\x9d\x8a\x01\x58\xf3\x3e\xaa\xcc\x32\x6f\x33\xed\xba\ +\xe7\x47\x00\xac\xc4\xa2\xf6\x13\xd3\x4e\x97\x35\x2d\x8b\x4c\x60\ +\xf0\x0c\x5d\xca\x2c\x4c\xa4\xa7\x9c\x48\xcf\x53\x19\x1f\x62\xb2\ +\xc0\x2a\x96\x0a\x94\x7a\x30\x0d\x6f\x1f\xb7\x52\x62\x37\xbe\x18\ +\x8a\x38\xc0\xa0\x93\x76\xe8\xc5\x09\x8b\x11\x5b\xa7\x6d\xad\xf2\ +\x46\x86\x26\x62\x3b\x96\x9a\x5b\x45\xa7\x12\xe6\xcd\x78\x24\x30\ +\x78\x80\x98\x24\x14\x79\x4c\x39\xcd\xaa\x48\x2e\x2e\x3d\xd0\xcb\ +\x61\xb2\xc5\xf0\x6f\x13\xfc\x66\xf3\x03\x4d\x2b\x72\x78\x65\x8e\ +\xb2\x43\x64\x46\xae\x6f\x2c\x36\x36\x59\x60\x51\x63\x39\x87\x3b\ +\x61\xf8\xa2\x3a\x27\x15\x85\x44\x41\xa0\x9c\xc6\x43\x50\x6c\xfe\ +\x4d\x74\xcd\x73\xb5\xa9\x4b\x9e\x95\xb5\xe9\x8f\x46\xc1\x1a\xb7\ +\xd2\xaa\xe2\xad\x22\x53\x28\xa4\x8d\xd4\xf5\xbb\x41\x6a\x55\x44\ +\x1f\xe2\xd8\xf0\x10\x69\x75\x10\x7d\x88\xe3\xc2\x43\xa4\x55\x3e\ +\x96\x49\x8e\xef\x13\x23\xa4\x78\x08\x25\x39\x21\xa2\xc2\x3c\xb4\ +\xb6\x03\x86\x23\x55\x7b\xa5\x9b\x3c\xc5\x7c\x27\xf3\x5a\x3a\xca\ +\xb8\xa8\x32\xbe\x3c\xd1\xa6\x2b\x73\xfd\xd7\xe4\xc1\x14\x2b\x02\ +\x11\xfd\x5e\x9d\x93\xc3\xd6\xed\xa1\x2a\xa5\x01\x5a\xb8\x30\xd4\ +\x40\x29\xa7\x69\x4f\x0c\x3a\xcb\x4f\x2f\xb0\xe6\x90\x75\x64\x0f\ +\x7a\x6b\x58\xf8\x7b\x88\x51\xad\xae\x3c\xf0\xd9\x86\xa6\x41\xa4\ +\xc7\xc0\xaa\xcb\xa1\x18\x84\xbe\xda\x68\xe0\x59\x6a\xea\x4a\xc8\ +\x0f\xd8\x5a\x56\x43\x66\xd2\xc8\xb1\x43\x9b\x72\xfa\x35\x68\xab\ +\x53\xcd\x92\x9d\x13\x91\x66\xab\x47\x53\x6d\xae\x77\x58\xe8\x30\ +\xe6\xaa\x9f\xe2\xa9\xeb\x2d\xc7\xf2\xcc\x02\x77\xce\x8b\x29\x52\ +\xab\x7d\xf1\xf9\xa7\x9e\x6f\x86\x98\xcf\x9f\xde\x4c\x87\x91\xf5\ +\x68\x16\x65\xd0\x7d\x10\xce\xb5\x89\x13\xf2\x8c\xf5\x05\x37\x03\ +\x93\xd0\x04\x99\xe9\x10\xf1\x61\x64\x90\x93\xa8\xc3\x0d\x29\x1f\ +\xb5\x1b\xca\x6d\x5e\x8f\xa9\xb0\xad\x34\xd4\x62\xf8\x25\x33\xcb\ +\x93\xd5\x53\xcc\xd0\x85\x51\x24\x97\x2b\xcb\xec\xb8\x50\xe2\x57\ +\x2e\x57\xcd\xfc\x53\xd1\x76\xcc\x5d\x31\x0a\xe6\xa4\xe5\x71\x77\ +\x29\xb3\xc7\xd2\xcd\x5a\x35\x0f\x34\x0e\x5b\xba\x4f\x4c\xcd\xe8\ +\x14\x15\x6f\x22\x33\x87\xad\x98\xf1\xd8\x3c\xf2\x59\x01\xa5\x30\ +\x37\x99\x53\x6a\xb9\x30\x1e\xf0\x20\xb3\x98\x27\xfb\xbb\x78\xee\ +\x04\xc4\x5c\xc0\x4d\x0e\x87\x9c\x88\x07\xc1\xc2\x51\x1d\xc9\xc1\ +\x2b\xbd\x1d\x0d\x7c\xc4\xb5\x03\x43\x63\x70\xcb\x91\x06\xa8\x03\ +\xfc\x2d\xa4\xfe\x52\xc4\x61\xc6\xdc\xd8\xa2\xd4\x57\x60\x60\x02\ +\x0f\xac\xd2\x2f\xae\xda\x60\x79\x16\xda\xbf\x59\xd3\x81\x7d\x05\ +\xf9\x91\x9f\xc4\xaa\x17\x9a\xb6\xe2\xd2\x4c\x1d\xd0\x09\xc0\x62\ +\xa1\xd2\x94\xba\xd8\xa8\x81\xe4\xeb\x5f\x9e\x50\x62\x4e\xb7\x13\ +\xe9\x39\x86\xaf\x50\xd5\x04\x43\x1a\xf4\x4e\x3a\x24\x18\xc9\x66\ +\x2e\xc7\x6c\x39\x74\x84\x07\xa0\x9c\x99\x5e\x8e\x1f\x3e\x78\x2c\ +\x3b\x6a\xf0\x21\xd2\x1e\x8c\xb5\xb8\xb5\xcc\x3b\x9f\x22\x81\x03\ +\x79\x6f\x9e\x6f\x8a\x81\xde\x1c\xcd\xe9\xba\xc1\xce\x59\x09\x39\ +\x1d\x06\x7c\x01\x32\xbc\xec\xa7\x37\x07\x93\x81\x9a\xe0\x61\xda\ +\x0c\x72\x0b\xbd\x72\x64\x96\x36\x35\x55\x58\x32\x96\x93\x4d\xab\ +\x4b\x06\x64\x63\xc8\x9d\xc2\x2c\x6d\x46\x5d\x5d\x84\x05\x46\x0a\ +\x92\xd6\xbd\xc8\x09\x1f\x27\x22\x93\x7e\x92\x53\x05\xa5\x0e\x47\ +\xd2\x7d\x38\x18\x14\xa7\x9a\x23\x36\xe6\x8d\x2c\xf5\xa0\x58\xb9\ +\x2e\x20\x96\x11\xca\x13\x26\x28\x57\xa7\x66\x3b\xe0\x6e\x62\xd4\ +\x72\x30\xe0\x93\x9e\x49\xfc\x2a\x61\x41\x45\xae\xe6\xe9\x0b\x1a\ +\xe0\x7e\xb8\x2c\xfa\xb9\x99\x7a\xe4\x22\x72\xf5\xfa\x0b\x9f\x9b\ +\x66\xe3\x3c\x66\x38\x55\xbe\x87\x48\xb0\x89\x46\x74\x6c\x2d\xc1\ +\x32\x5e\x3a\xd7\x8d\xdb\xcc\x24\xbb\x38\x5c\x0a\xd9\x63\x7c\x33\ +\x44\x29\x16\x85\x29\x5c\xb1\x6f\xe9\x28\xcc\x7b\x96\x95\x35\x39\ +\x0e\x69\x7a\x1c\x1c\x96\x73\x30\xac\x91\x85\xff\x67\x81\x4c\x54\ +\x15\x27\x63\x85\x18\x21\xea\x36\xd6\x5a\x13\xa6\x67\x75\x31\x47\ +\x16\x3d\x6e\x81\x39\x66\xd1\xcc\xbb\x51\x38\xa6\xbc\x0f\x40\x0a\ +\xe4\xbf\x0d\xc8\xa7\x16\x17\x33\x94\xb3\xb8\xef\x39\x44\x7b\x72\ +\xdc\xde\xe3\x91\x7b\xe6\x62\x63\x7e\x1d\xdd\x7f\x9e\x91\x36\x1d\ +\xe5\x78\x19\x2e\xbd\x26\x70\x2c\xa7\xc2\xa8\xb1\x73\x82\x5b\xc0\ +\x82\x50\x59\xe9\x0e\xa7\x68\xdf\xca\xdf\xf7\x70\x7e\x91\x1f\xeb\ +\xf0\x1c\x3e\x35\x4b\x99\xf8\x32\x29\xc4\x24\x2c\xac\x54\x44\x85\ +\xcb\xd1\x68\x79\x52\xdf\x08\x2d\xdb\x40\xd1\x34\x73\x9f\x03\x23\ +\x1b\x07\xdd\x9a\x3a\xcc\x91\xbc\xd5\xa3\xf2\xec\x1a\xb0\x09\xac\ +\x54\xa0\xdb\xd8\x0a\x7f\xf7\x26\x6c\xdf\x32\x5c\xa7\x30\xc9\x5e\ +\x29\x63\x71\x8f\x29\x92\x5e\x52\x6e\xce\xa5\x7b\xdd\x9c\xa1\x8a\ +\x7c\x4f\x6d\x50\x86\x8b\x14\x96\xfa\xe6\x68\x88\xb2\x38\xe5\x1b\ +\x80\x3e\x2a\x12\x39\x87\xd4\xf8\x69\x34\xc3\xb3\x3f\x8a\xb2\x21\ +\x9d\x71\x22\xd2\x32\x16\x06\x4b\x1c\x5c\x38\xd8\x22\x1e\xca\x18\ +\xe0\xa6\xc8\x64\x4b\xe9\xf9\xc2\x03\x11\xbe\x20\xbc\xc9\x3a\x7f\ +\x60\x84\xa2\x73\x09\x71\xea\x93\xcf\xbb\x10\xb8\xba\xeb\x5c\x54\ +\x98\x0a\x7d\x5d\x89\x4f\x4f\x31\x40\xa9\xc5\x0b\xd7\x7b\x58\x97\ +\xd7\xd5\x97\x53\x37\xe6\xb9\x7b\xd9\xd7\x58\xa5\xa6\xf8\x6a\x22\ +\x14\xdd\xed\x12\x6f\xd6\x1e\xee\x53\x06\xbd\xff\xa8\x9c\x54\xfd\ +\xd3\x0a\xc7\x97\x41\x3f\xf5\x23\x88\x1a\x93\x7a\x47\x14\x51\x09\ +\x1a\x25\x27\x96\x51\x4e\x0c\x6a\xe9\x8c\x21\x2a\xd4\xea\x59\x5f\ +\x5d\x44\x64\xc8\x0a\xfd\x48\xcc\xa0\x3f\x15\x0e\x84\xe9\x4e\x7c\ +\x15\x7a\xa7\xdb\xbc\x5c\x83\xcb\x48\xd0\x75\xdd\x24\xe4\x4a\xc5\ +\x57\x62\x72\xcc\x2a\x05\x70\x20\x3d\xd7\xf7\xc5\x99\xeb\x32\x5c\ +\x79\x30\x45\xee\x59\xe8\x98\x83\x7e\xe2\x51\x73\xd0\x70\xdc\xe5\ +\xd3\x55\xa5\x2f\xe0\x27\x35\xc0\x60\x8e\x40\x77\xd2\xc9\x1d\x45\ +\x0a\xe4\x7e\xc9\x84\x73\xca\x22\xe0\x22\xbb\xcd\x92\xe8\x17\xd1\ +\x73\xea\x24\x28\x49\xb6\xca\x22\xed\x0a\x3d\x27\x25\xa1\x07\x35\ +\x2d\x8d\xcc\x78\xce\x01\xd0\x99\x56\x29\xcb\xe4\x4a\xca\xe5\xbe\ +\x93\x7a\xb9\x0c\x5c\x57\x5b\x0c\xfd\xdc\xc3\x0d\x75\xb5\xf8\x11\ +\x7e\x04\x55\x53\x01\xa5\x01\x33\x1a\x0c\xd7\xe4\xb2\x31\x18\x42\ +\xce\xe5\x54\xa8\x6c\x31\x93\x67\x97\xe5\x43\x23\xb2\x27\xc5\x37\ +\x93\x7c\x33\xc6\x35\x6b\x44\x49\x27\xe6\x6c\xcd\xc1\x18\x59\xa0\ +\xbf\x68\x0a\xcc\x79\x49\x68\x56\x11\x21\xf4\x44\x22\xb6\x47\xac\ +\x20\x49\xf7\x45\x4f\x98\x6f\x9f\x0b\xf2\xdb\x76\xfc\xc0\x02\x05\ +\x80\xa7\xcd\xd0\x2f\xe9\x0f\x93\xb0\x6b\xe3\x16\xa5\x46\x94\x36\ +\x3b\x07\x8c\x9c\x9b\x2d\x8b\x74\x9f\x14\x5b\xf4\xca\xb4\x98\x41\ +\x12\xaf\x54\xd9\x30\xd1\x9c\x43\x81\x2e\x95\x16\xaa\x3b\xe9\x58\ +\x05\xac\xda\x40\x2a\xb8\x7b\x35\x06\xc1\xb6\x49\xcd\x2d\x20\x54\ +\x19\x9d\x2e\x67\x37\xaa\x62\x21\x21\x43\x53\x6e\x46\x3e\x69\x33\ +\x54\xe9\x84\xd2\x4d\x81\xab\xf2\xac\x1a\xf8\x89\xbb\x1e\x34\x71\ +\xdd\xc5\xf0\x1e\x79\x43\x66\x6d\xa6\xc4\xfb\x0f\x52\x1f\x8d\x88\ +\x8c\x0d\x1d\x07\x87\x1b\x84\x94\xfc\xb2\x3c\xa4\x46\x2b\xf4\x4d\ +\x49\xe4\x91\x02\x04\xfe\x76\x80\xca\x53\x11\xf7\x4a\x90\xba\x19\ +\x22\x6d\x11\x8b\xcd\xf2\x58\x49\x8e\xb0\x56\x5a\x45\xe4\x3f\x22\ +\x9f\xd1\xc0\xbf\x8c\x84\x78\xcb\x68\x12\x9e\x85\x4c\x67\x68\x73\ +\x5c\x50\x56\xb3\xd9\x32\x60\x6e\x84\x66\xcb\x05\xe1\x12\x96\xa2\ +\x4b\x93\x4e\x46\x4d\x46\xd4\xb6\x93\xb3\xb3\x26\x3d\x30\x4e\xb9\ +\x98\xa1\xa5\xfa\x79\xc3\xca\x8d\xa4\x66\x42\x6f\xa7\xc6\x74\x5a\ +\xa5\x73\x02\x29\x6f\x09\xf7\xd9\x31\x0f\x22\x65\x3f\x94\x82\x4f\ +\x43\xcd\x28\xcf\xcf\x03\xa3\xe2\xac\x14\x6c\x85\x18\xbb\x89\xb6\ +\x10\x70\xd1\x77\x2c\x02\xf9\xec\x2d\x1f\x79\x7a\x98\xf5\xd0\xe4\ +\x0a\x05\x4d\x18\xc2\xee\x90\xea\x1a\xdb\x8b\x24\xbd\x74\xc2\x75\ +\x96\x04\x9c\x9c\xbb\x8d\xd3\x7c\x2b\x5f\x2e\xd0\x74\xc7\xac\xc5\ +\x54\x92\xbc\xf6\x16\x55\xe3\x7c\x9a\x0b\x00\x7f\xf2\x5d\xc1\x7b\ +\x7a\x3d\x1c\x86\x0f\x98\xd6\xae\xf8\x75\xea\xcd\x51\x5a\x3b\x6b\ +\xc7\x34\x29\x92\x95\x88\x1f\xe2\xd0\x26\x27\xf1\x1c\x27\x72\xe5\ +\x5d\x09\x6f\xf3\x64\x82\x50\xf5\xa4\x19\xe8\x71\x92\x37\x39\x34\ +\x05\x9e\x64\x28\x6c\x1a\x4f\x13\xcb\x6c\x1e\xb1\x31\x59\xdc\x0e\ +\x51\x3f\xa4\xc1\x22\x37\xa5\x9c\xb4\x29\xa8\xfe\x53\x4d\x0e\x93\ +\xbd\x19\x57\x37\x79\xdb\x30\x74\x9b\xf0\x9d\x9b\x94\xe2\xd9\xb3\ +\x9c\x9c\xe5\x31\x2e\x15\xca\x0a\x94\x65\x60\x59\xd7\xa3\x3e\x1a\ +\x63\x1a\x21\xa8\xaa\xd6\x69\xc9\x03\xe6\x2e\xd3\x55\x36\x51\x92\ +\xc2\xb2\x7e\x55\x38\x3f\xa9\xdd\x4c\x25\x4b\x9b\x75\xf6\x50\xe3\ +\x2b\x47\x03\x3d\x61\x61\x6d\xdf\xc1\x9f\xe2\x30\xb1\x5c\xa7\x11\ +\xee\x51\x0f\xc3\x14\x75\x66\xb0\x37\x54\x06\x62\x8e\x5b\xe8\xea\ +\x1c\x7d\x24\x69\xcb\x30\x27\x44\x57\x0c\x79\xfa\x94\x6c\x7e\x23\ +\x99\x1a\xb5\xb5\x85\xb7\xa3\xdb\x80\xb1\x80\x01\x6a\xef\x67\x94\ +\xcd\xa3\xd9\x82\x25\xd8\x4b\x34\x07\x69\x96\x62\xda\xf3\x34\x0f\ +\xd1\xa3\xcc\x92\x65\x89\x9e\xd3\xf6\x8d\xa8\x83\x18\xcb\xa6\xe3\ +\x2f\x95\xed\x06\xe9\xb8\x5b\x01\x5d\xbd\x24\x9c\x6f\xa4\xbb\xf0\ +\x67\xf0\x19\xb6\xf6\xf5\xb2\xac\xa1\x94\x73\xbc\x1f\xe0\x2f\x6a\ +\x01\x09\xa5\x06\xb3\x5e\x73\x65\xa9\xeb\xa9\x1a\x4c\x71\x0e\xc3\ +\x2a\xae\xc1\x21\x60\xfe\xc3\x8c\x5b\xa6\x8a\x15\xed\xcb\xc7\x85\ +\x75\x5a\x88\x0c\x6d\xd5\xcc\xf0\x63\x84\x15\x08\x31\x19\xc3\x6a\ +\xc1\x84\x9d\x4d\x1d\xb2\x9f\x15\xda\xb1\x68\xd8\xb0\x95\x8f\x39\ +\x9d\x18\xe1\xd1\x1a\xc4\xec\xe8\x30\x3c\xb1\xea\xc4\x58\xb4\x3c\ +\xb2\x8a\x83\xf9\x8c\xef\x21\x4e\x1e\x26\xc2\x15\x20\x13\x29\xda\ +\xa2\x19\x56\x6d\x6c\xa2\x15\x2c\xc0\x94\xda\x87\xba\x91\x38\xd2\ +\x7b\x9e\x26\xfa\x39\x67\xa3\x83\x09\xa0\x85\x7d\x8c\x7d\x2e\xe4\ +\xb1\x65\x3d\x91\xbb\x52\xfe\x46\x1b\x4d\xe7\x96\x25\xac\xa9\x63\ +\x92\x9b\x50\x3c\x8d\xf1\xa4\xbd\x8d\x64\x08\x8e\xd7\xf2\x04\xe7\ +\xbe\xca\xd8\xdc\x7f\x93\x05\x82\xb8\x73\xe3\xd0\x56\x69\x32\xa4\ +\xcd\xcb\x9c\x4b\x36\x20\xfc\x79\x51\xa8\x84\x4a\x5c\x21\xc4\x1f\ +\x66\x6c\xa6\x19\x48\x4c\x12\x51\xd7\x4c\xda\xa5\x7c\x22\x61\x6c\ +\x5d\x7d\x67\x8e\x14\xe6\x2e\xb1\x70\xd7\x28\x43\x1f\xaa\x10\x5b\ +\x11\xf9\x8e\x06\xef\x58\x20\x9c\x29\xca\x5b\x1d\x2f\xd1\x1a\x8d\ +\xcc\xaf\x58\xf8\xa9\x74\x4d\x6c\x49\x82\xe9\xb2\x82\x04\xe0\xeb\ +\xc0\xcf\x41\xeb\x19\xe2\xb1\x8d\x51\x1a\xf0\xa0\xb5\xa2\x60\xfb\ +\x4f\x1a\xfe\x07\xcb\x26\x95\xaa\x22\xe3\xba\x28\x86\x49\xcb\x92\ +\x8f\xc6\x96\x72\x6c\x77\x4f\x41\xbb\x88\xd9\xe5\x63\xdc\x87\xb6\ +\x89\xbb\xd8\x87\x48\x52\x15\xc5\xcc\xcd\xe6\x1e\x83\x25\x59\x1b\ +\x43\xaa\x90\x23\xc5\xbc\xdd\x38\xef\x1e\x3c\xee\x65\xb4\xc6\xd2\ +\xe9\xef\x07\xc2\x8c\x76\xb1\x5c\xdc\x47\x75\xfb\x9c\xe9\x4d\x4b\ +\x44\x4a\xbf\xee\xd6\xf0\x79\x9c\x44\x68\x61\x2c\x99\xa9\xb2\xbb\ +\x71\x75\x05\x90\x79\x0e\x26\xcd\xe7\xb7\x99\xae\x44\x33\x80\xa6\ +\xe9\x5f\x6c\x24\xeb\x91\xf0\xb4\x0e\x44\x5b\xdc\xd4\x39\x23\x86\ +\x78\x1b\xcf\xf6\x38\x02\xce\x18\x09\x73\x41\xa8\x33\xdd\x4e\x47\ +\x35\x3a\xf3\x26\x18\xfa\x7e\x90\xf2\x38\x57\xb5\xe3\xf8\x13\xdc\ +\x1a\x2e\xe0\x21\xeb\x22\x22\xab\x5f\x38\xc9\x64\x98\x96\xa8\xf8\ +\x7b\x72\x7f\x35\xe5\xcc\x13\x56\xbb\x72\xb4\xbd\x4e\xc2\x5e\xd5\ +\xb8\x36\x16\x4d\x51\x56\x79\x67\x95\x34\xc9\xf8\x7c\x0c\x2a\x9f\ +\xc7\x6d\x1c\xcc\x2e\xb3\xb9\x07\xb6\x92\xff\x41\x42\x24\xb1\xf9\ +\xa1\x2d\x58\x67\x55\x98\xec\xe2\x71\x3a\xea\xaa\xd3\x94\xb2\x2e\ +\xae\x21\x97\xa8\x4a\x40\xdd\x2f\xa2\xfe\x06\xf5\x33\xd4\xf5\x58\ +\x52\x5c\xcc\x74\xc2\xa6\x14\x21\xbf\x41\x46\xab\xde\xe1\x7e\x9a\ +\xb4\xcc\x61\xa1\xd4\xa4\x52\x24\xec\x51\x65\x6a\x9f\x12\xf6\x4e\ +\x84\x59\x2a\x23\x55\xef\x75\xcc\xb6\xb1\x52\x62\xdb\xbc\xad\x9e\ +\x3d\x62\x3b\x98\x43\x40\x73\x62\xa9\x76\x30\xdd\x1c\xb7\xb9\xa0\ +\x64\x9b\x58\xa8\xdf\x29\xcf\x35\xc5\xc0\x66\xed\x28\xb4\x0d\x9a\ +\x13\x70\x12\x60\x86\xbe\xde\xcd\x69\x05\xdb\x31\xd8\xde\x46\x65\ +\x85\x27\x99\x89\xca\x5c\x8b\x9b\x65\x07\x0f\xa2\x41\xa5\x19\x61\ +\x68\x48\x4d\x67\x6d\x8d\xbc\xc3\x8e\xda\xb3\xba\xc1\x69\xa4\xb1\ +\x2d\x94\x69\x04\x29\x88\x01\x43\xed\xfb\x42\x0c\xa3\x28\x70\x4d\ +\x1e\xff\xa9\xd4\xe4\x74\xaf\x44\x41\x54\x4a\xa6\x72\xf8\xfb\x88\ +\xe7\x28\xac\x2b\x87\xa8\x35\x2b\xca\x21\x13\x48\x47\xb8\xe0\x7d\ +\x6a\xf1\xa4\x5f\x49\x4e\xd6\x10\xac\xd0\x38\xcb\xbe\xf2\x91\x0a\ +\x1c\x53\xe5\x01\xf0\xae\x25\xa1\xf3\x1f\xe2\x2d\xa9\x05\xb3\x6a\ +\x56\xa1\xbb\x7f\x2a\x04\xe9\x94\x60\xc6\x06\x16\x3c\x25\x29\xd2\ +\x5c\x22\x95\x1e\xa2\xa6\xdd\xc1\x7d\x46\x42\x26\x6c\x43\xa5\x59\ +\xa4\x4a\x79\x18\x50\x1d\x0b\x69\xeb\x73\x71\xf2\x1d\x3c\x6b\x12\ +\x5b\xa8\x18\xb4\x49\x26\x68\x4e\xa9\xad\x02\x9a\x9a\x52\xe6\x9e\ +\xc9\x4a\x55\x3d\x0d\x43\xd3\xaa\xe8\x99\x6a\xd0\x63\xa3\x83\xa6\ +\x4d\x34\x9c\x6a\xd0\xe3\xa2\x83\xa6\x4d\x3d\x9c\x0d\x47\xdb\xc4\ +\xf0\x2a\xe5\x10\xf1\x94\xe9\x66\xdc\xd2\xe9\xe4\x4b\xcf\xd1\x28\ +\xa6\xa8\xeb\x5c\x5a\x4f\x23\x2c\xdc\x62\xca\x51\x6a\x26\xa4\x97\ +\xa5\x4d\x5d\xae\xd0\x38\xc4\x0b\xc3\xa6\x51\xa9\x20\xc6\x66\xd5\ +\xa7\x76\x28\x6a\xc7\x70\xe0\xd1\xa6\xd4\x29\x47\xcc\xab\x94\x45\ +\xa9\x5b\x8a\x02\xc1\x3c\x7a\xf7\x2c\xa9\x61\x4e\x20\xfc\x8c\x75\ +\x29\x6f\xa2\xa5\x25\x40\xea\xb9\x00\x7a\x69\x80\x52\x2b\x8e\xc2\ +\x3c\x48\xaa\x60\x8a\x54\x27\xaa\x63\x4e\x78\xb4\xe6\x16\xbd\x36\ +\x2c\x36\xcb\xa2\xf8\xac\x7a\x20\xad\x2a\x30\x8b\x0c\x13\xd6\x7a\ +\x3a\xa9\x15\x4e\xe3\xb0\xe9\x8f\x89\x2e\x38\x29\x46\xeb\xc7\xdc\ +\x13\xba\x54\xbd\x06\x45\xcf\x72\x49\x51\x23\x28\x67\x3f\x64\x58\ +\xf6\x37\xe1\x11\x69\xd8\x74\x3b\x6f\x03\xef\x1b\xb3\xd2\x5a\x87\ +\xc7\x48\x90\xcc\xa9\xea\x44\x2b\x02\x31\x8b\x02\x61\xb2\xda\xd1\ +\xe9\xce\xfd\x09\x39\xb7\x12\x6c\x53\x14\xff\x68\xc2\x4d\x88\x93\ +\x80\x43\xea\x6b\xc2\x59\xa8\xb6\x42\xa5\x16\xf1\x40\x35\x87\x12\ +\x2c\x51\xf1\xa9\xa8\xbe\x77\x18\x35\xd1\x68\x91\x11\xab\x56\x80\ +\xc3\xe0\x17\x4c\x24\xa8\xdc\x9e\x3c\x7b\x8c\x67\xf8\x48\xf1\x99\ +\x56\x5e\x2a\x24\x84\x23\x71\xc9\x89\x84\x7a\x0b\x37\xaa\x13\x64\ +\xb8\xd9\x3d\x96\xe0\x41\x5d\xc2\x7d\xb1\xe2\xaa\x95\x78\x37\x61\ +\x51\x57\x2f\xca\x63\xa2\x09\x63\xef\xa3\x48\xc8\x45\x4b\x19\x60\ +\x95\x34\x23\x04\x4f\x16\x6b\x08\x86\x07\x0b\xd6\x2d\xdc\xa9\xd3\ +\xaa\x76\xb8\x54\xa3\x40\xd6\x63\x49\xf8\x26\x2c\x1e\x32\x17\x79\ +\xb4\x2a\xe7\x40\xf7\x35\x51\xe5\xe0\x1d\x6e\xde\x38\x5c\x39\xcb\ +\x70\x3b\x55\xcf\x2e\x66\x85\xba\x19\x40\x33\x35\x91\x8e\x82\x7f\ +\xef\x83\x7f\x2b\xc1\xe0\x59\x09\xff\x1d\xa9\x69\xba\x9b\xe9\xb2\ +\x95\xd5\x9a\xb3\xb2\x36\x58\x2d\x74\x83\x59\xc2\x39\xd3\xb5\x5d\ +\x2f\x67\x3b\x58\xd5\xee\x96\x2c\xcf\x64\x09\x94\xa8\x1f\x5b\x7b\ +\xba\x8d\xa3\x8c\xf7\x19\x2b\xbb\x57\xae\x3c\x32\xad\xa6\x7c\xab\ +\x44\x83\xc6\x84\x49\xb4\x69\x9f\x5e\x9b\xcc\xc8\x5b\x25\xc1\x0a\ +\x34\x85\x7b\xde\x0e\x11\xd1\x41\x62\xa5\x76\x80\x44\xca\x06\xcb\ +\xb1\x54\x94\x46\x51\xc4\x52\x51\x55\xcf\x64\x85\x98\x2d\x14\x31\ +\x9e\x99\xb3\xcb\x7e\xc8\x68\xc7\x72\x7d\xea\xa8\xa1\x0e\x3d\xde\ +\xc1\x76\xc8\xc2\xee\xda\x2b\x59\xd3\x20\x97\xf6\xb3\x09\x4c\x1a\ +\xba\xea\xb4\x1d\x4c\x38\xb5\xd2\x62\xa6\x27\xc2\x26\xa6\x51\x4f\ +\xad\x4a\x4c\x28\xe4\xa2\x62\x7a\xba\x7c\x4a\xb1\xed\x84\x1c\xeb\ +\x98\xb7\x8b\xfb\xed\x88\xf2\x88\x85\x5b\x57\x2f\x44\x50\x58\x2a\ +\xb6\x74\x60\x59\x66\x76\x94\x25\xaf\x89\x8a\xfe\x14\x6e\x86\xef\ +\xc9\x5c\x69\xc1\x0f\xed\x90\xb2\x1d\x66\x10\x22\x77\x34\x5e\x5e\ +\xc1\x58\x87\xc9\x57\xa4\xde\x57\x5d\xcf\x45\x2e\x8f\x30\x28\xd8\ +\x09\x15\x49\x95\x3d\xf0\xf3\x16\x44\xb9\xcf\xb3\xde\xc7\x42\x79\ +\x49\xf1\xf4\xae\x70\x3f\xf5\x58\x0e\x3e\x09\xa7\x71\x9a\xbc\x6e\ +\x2f\xe0\x9c\x3b\x3c\x93\x68\xf3\x64\x72\xe7\x45\x38\x58\x15\x70\ +\xf1\x9d\x04\x97\x58\xa7\x48\x4e\xa5\x16\x6f\x3f\x42\x17\x13\xf9\ +\x12\x46\xd1\xf0\x40\xac\x29\xca\x84\xe3\xe6\x57\x7c\x17\x74\x1e\ +\x66\xc6\x2a\x43\xff\x7e\x98\xc7\xb4\xa8\x5f\xe3\xb4\x8d\x2c\x37\ +\xca\xa6\x29\x79\x76\x76\x54\x8b\xf8\xc2\xf7\xe5\x02\xcf\x9a\xa2\ +\x21\xde\x1e\x63\x98\xa7\xf2\xa9\x6c\x2a\x60\xd8\x3c\x58\xcc\x53\ +\xa5\x39\x0d\xd1\xf1\xe8\x35\x07\xb4\xa6\x11\x39\x3a\xbe\xd8\xc5\ +\x83\x62\x01\x68\x35\xe1\x71\x28\xbf\xa7\x33\x0f\x78\x96\xd5\xd7\ +\xdb\x6f\x08\xbd\xc7\xf0\x27\x7d\x90\x0b\x78\xc6\xe9\x2c\xb4\xc3\ +\x3b\x3c\xeb\x31\x3e\x69\x4e\xa7\xb8\xf5\x46\x99\x97\x1b\x26\xe2\ +\xb0\x54\xd4\x2d\x60\x81\xea\xa9\x72\x05\x2b\xa4\x44\x4b\x02\xdb\ +\x5b\x67\xba\x6e\x5d\x28\xa8\x6d\xc9\xe9\x95\x94\xb8\x7a\xd5\x30\ +\xcc\x16\x5d\x73\x38\x36\x6d\x47\x76\xd1\x43\xd7\x15\xc5\x6a\x4a\ +\xf5\xb3\xea\x97\x7b\x39\xe1\x71\x95\x41\x14\xf3\xa9\xf2\xfb\x38\ +\x45\x46\xeb\x6e\x44\x3c\x4a\xbf\x6b\x2b\x1e\x91\xaa\x9c\x3a\x9d\ +\x34\xab\x8f\x9b\x42\x61\x5d\xa8\x7a\x4e\xc0\xcf\x5d\x44\xbf\xbb\ +\x48\xaf\x71\x14\x97\x66\xe9\x6f\xfa\xfc\x04\xb2\xf7\x16\xe2\xe9\ +\x63\x33\x2d\x94\x96\xc5\x42\xdc\x2e\x9a\x74\xb3\x50\x6b\xf4\xc3\ +\xe6\xc8\x23\x34\x36\x29\x48\xfe\x9d\x04\x15\x7d\x6b\x03\xe7\x88\ +\x16\x5a\x1c\x34\xc1\x46\x84\xaf\xd9\xfc\xe1\x71\xd5\x3a\x45\x1b\ +\x03\x81\x89\xa4\x55\xa8\x99\x7a\xf0\x52\x2f\xda\xa2\x68\x21\x91\ +\xf1\x16\x49\x62\x6f\x27\x91\x18\x2d\xee\xc4\x6a\x6a\x79\xc8\x54\ +\x1a\x5a\x34\x14\xd8\xdd\xbc\x51\x95\x6f\x68\x6f\xfa\x65\xe0\x1c\ +\xa6\x6f\x2c\xc4\x56\x1f\x0b\x69\xf2\xbf\x18\x1e\x63\x98\xea\x01\ +\x1f\x34\x5b\xf8\xfb\x42\x38\xc3\x76\x7e\x61\x33\xcc\xb8\xb0\xe8\ +\x3a\xee\x42\xec\x62\x04\x43\x9a\x45\xbb\x30\x19\x19\xaf\x6b\x83\ +\x55\x18\xb7\x02\x3b\x6b\x76\xe1\xeb\xec\x51\x9c\x98\x37\x5e\xc0\ +\x49\x9a\xc3\x6f\xf5\xac\x75\x0b\xb9\x85\x29\x99\x83\x97\x8a\x39\ +\x24\xd4\xa8\x27\xd8\x0c\xc9\x47\x3e\xd6\x28\x57\xee\xca\x9a\xa4\ +\x5d\x51\x45\xee\xb8\x2d\xa1\x03\x3e\xcd\x50\xe3\xad\x29\xa4\xb8\ +\x6a\xa7\xc5\x20\x74\xa5\xc1\x18\x5e\x9b\xde\x3d\x44\x59\x40\xc2\ +\xf6\x8e\x32\x4a\x9d\x99\x32\x7b\x28\x2c\x09\x15\xf3\x5b\xaf\xe3\ +\x00\x16\x37\xea\xe6\x8c\xec\xa8\x8b\xf9\x2d\x74\xfd\x2c\x7d\x52\ +\x14\x1b\x31\x5e\xc8\x99\x23\x5a\x45\x5c\x6e\xa4\x65\x7b\xdf\xa9\ +\xb0\xdd\xfb\x8e\x8a\xf0\x0d\x35\x56\xc8\xcf\x16\x35\x14\xa7\x8d\ +\x26\x12\x8d\xb8\x4c\x65\xce\x26\xc7\x5c\x8a\x08\x29\x5d\xb1\x5e\ +\xec\x96\xd6\x2c\x56\xa3\x09\xb9\xa7\xb3\xd8\xf0\x7a\x99\xae\x9f\ +\xe1\x6a\x4c\x52\x41\x9b\x3a\x28\xba\xc1\xac\xb2\x4d\xc3\x7a\x77\ +\x45\x53\x9a\xe2\x45\x12\xd0\xbf\xa4\x26\xa0\x88\x7d\x4d\xb3\x67\ +\x2b\xd3\x93\xd1\xbc\x31\x1f\xb1\xd2\x31\x32\x84\x03\xb3\x64\x9e\ +\x62\xd9\x0f\xf8\x37\x58\xc3\x11\xb3\xe8\xb5\x8c\x7e\x53\x4d\xed\ +\xd2\xa2\x1c\x5a\x35\x82\x25\x71\xa8\x04\xf1\xd4\xeb\x0a\xe6\x7e\ +\x77\x73\x4a\xe2\x9e\xb1\x97\xf3\xee\xe2\x16\xbf\xce\x2d\xe1\xa8\ +\x37\x43\xef\x59\xae\xcb\xe7\xb0\x0c\x8f\xba\x02\x94\x0b\x21\xf9\ +\x6d\x5f\x6e\x6c\x80\x5a\xaa\xe8\x6a\x6f\x73\xb9\x2f\x2a\xf9\xd9\ +\x2c\x02\x62\xa6\xaf\x8f\xc9\xa0\xa1\xc9\x53\x5b\x59\x23\x1f\x31\ +\x57\xe5\xd4\x09\x3e\xbe\x24\x92\x0b\x74\x22\x71\x3d\xdb\x72\x58\ +\x7f\x64\x91\xe9\x28\x05\x9d\xc8\xd2\x66\x05\x3d\x74\x67\x95\x0c\ +\xc4\x1c\x48\xba\x4f\x20\x8f\x0a\xdd\x86\x68\x2d\x00\xa3\x16\xac\ +\x7c\xd0\xc5\xd5\x68\x3e\x89\x9e\xab\x91\x96\x39\x0d\x54\x60\x4e\ +\x13\x72\x5d\x51\x05\x34\xec\xa4\x51\xa1\x55\xc1\x54\xf2\x68\xb0\ +\x8f\x69\x7b\x51\xe9\x6d\x7e\x25\x91\x46\x0f\xe2\xa2\x28\xd6\x93\ +\x4a\x78\xc3\x74\x58\xe8\xfe\xed\xd0\x7e\xf7\x35\xad\x45\x55\x14\ +\xda\x52\x3b\xd4\x9b\x38\x45\x43\xc7\xe1\x35\xea\xb5\x22\xa3\x92\ +\x25\x14\x42\xab\xd4\xaf\x8f\xd1\x3b\xec\xab\x5d\x3f\x4f\xdf\xf5\ +\x71\xb3\x50\xb6\xa8\x09\x91\xa3\x25\xe6\xf9\xb2\x93\xd5\x0a\x53\ +\xcb\x78\x84\x03\xb7\x00\xa6\x85\x93\xb5\xba\x9b\xb7\xd3\xa7\x79\ +\x48\x10\xac\xfa\xbc\xe5\x59\x4e\x16\xd3\x42\x0a\xee\x04\x8b\x17\ +\xb3\x01\x45\x44\x38\xc0\x56\x2e\x98\x9d\x49\xdb\xf1\x4f\xc7\x0b\ +\x1c\x46\xb0\xae\x20\x34\x0d\x0b\x88\x52\xf7\x6d\x8a\x58\xcb\x2a\ +\x7c\x31\x3c\xad\xe8\xd1\x00\xf6\x39\x63\x10\xb1\x4e\xc7\xc2\x8d\ +\x2e\x5c\xea\x22\xce\xca\x92\x38\x0a\x3c\xb4\x2b\x92\x3b\x0a\x2c\ +\xa6\x24\xa7\x5f\x34\xcc\xd9\x1f\xf5\xee\x51\xef\x39\x66\xb8\xc8\ +\xcb\x71\x33\x60\x4d\x8e\xa5\xce\x19\x8c\x83\xc6\xdc\x4b\x22\xbe\ +\x5c\xe2\xa2\x8c\xd2\xe1\x62\x4e\x23\x3e\xb7\xe5\x27\x35\xa7\x93\ +\x21\x81\xca\x31\xf7\x5a\xc9\xa3\x25\x96\x8b\x45\x87\xe4\xb4\x6e\ +\xa4\x2d\x98\x94\x11\xb6\xd5\x2b\x99\x96\x56\x82\x85\x52\x29\xfe\ +\x7e\xe8\x69\x7e\xd4\x20\xdc\x97\x10\xfc\xfc\x18\x78\xa1\xf2\x5f\ +\x15\x73\xa0\xd3\x8d\xf0\x3e\xce\xa9\x36\xe2\x34\x22\xea\x02\xa3\ +\x65\x39\x79\xe2\xf2\x0d\x50\x05\x36\x79\x49\x23\xbc\xd4\x47\x6d\ +\x04\x9d\x59\x16\xc3\xa0\x75\x81\x15\x2f\xb2\x81\x4f\xea\x3a\xf0\ +\xed\x21\x51\x53\x48\x14\x49\x2a\x4d\x32\x41\x20\xaa\xbe\x1b\xdb\ +\x39\xa7\xd7\x25\x00\x56\xe8\x68\xf2\x23\x75\x2d\xf3\x8e\x29\x03\ +\x50\x4a\x8d\xa6\xf0\x4d\x70\xb1\x57\x24\x26\x77\xf7\x89\x5a\x82\ +\xa4\xf3\x27\xea\x01\xc2\xb5\x09\x7a\x23\x05\x16\xdd\xed\xd2\x76\ +\x80\x5d\x6b\x21\xea\xdf\x59\x4a\x6f\x0e\x75\x37\x66\xd0\x06\x3c\ +\xcf\x3b\x5c\x59\xa2\xcf\x9e\xe1\xa3\x32\xb3\x88\xa5\xe9\xaa\xfd\ +\xf4\x77\x84\x63\x63\x54\x75\xc7\x6b\x23\xba\x40\x41\x1a\x63\x6e\ +\x23\xc5\x06\xa8\x8b\x49\x94\xd6\xd8\x0e\xe3\x05\x5d\xb8\xf7\x19\ +\x8b\xb6\x01\x30\x80\xb5\xe6\xcc\x8c\x5d\xb0\x83\x49\x59\x41\xc2\ +\x5e\xcf\xc0\xa3\xd4\x60\x72\x72\x69\xbb\x40\xfc\x12\x25\x96\xae\ +\xc1\x8c\x25\x24\xe9\xe9\xb9\x92\x63\xc8\x3b\x44\xad\x5a\xb4\xfc\ +\x93\xa9\xa8\x4c\xc1\x0f\x27\x38\x8d\xa2\x57\x53\x48\xbe\xa2\x16\ +\x0c\xb1\x25\x0f\x88\xdf\xb0\x9c\xd8\x64\x99\xcb\xda\xa8\x76\x17\ +\x96\x99\x61\x9d\xa1\x28\xfd\x7f\x22\x2f\x8f\x15\xbd\x47\xef\x03\ +\x11\x3e\x65\xc1\x97\xc4\xdd\xe9\xe1\x99\x2a\xc3\x14\x36\x4f\x56\ +\xee\x43\x92\x57\x65\xfc\x8b\x32\x82\x31\xc2\x2a\x4f\xf5\xd2\x2f\ +\x76\xbd\x96\x68\xa5\x13\x86\x4c\x69\x00\xdf\x8c\x10\x22\xbb\x96\ +\x16\x13\x05\x41\xfd\xe7\x15\x16\x54\xad\x43\xed\x9c\xe6\xd7\x60\ +\x4e\x97\x4a\x0a\xea\x36\x86\x95\xac\x17\x46\x06\xcf\x3e\x2c\x58\ +\xce\x08\xa8\x07\x34\xfb\x90\xfa\xd8\xb9\x2a\x29\x5e\x15\x9d\xaf\ +\x7d\xcc\x30\x5b\x89\x73\xb1\xd2\x99\x89\x51\x97\x3a\x46\x58\x92\ +\x27\x1d\x53\xa9\x0e\xd4\xa1\xe1\x99\xd8\xbc\x8c\xbf\x9e\xbe\x12\ +\x60\x27\xd9\x85\x52\x90\xfa\x81\x96\x87\x3c\xcc\x4a\xe2\x35\xee\ +\xdc\x65\x74\x0e\xbb\xa5\xb4\x92\x6d\x3e\x8c\xba\x1b\x47\xdd\xce\ +\xf7\x30\x79\xdc\xe6\x9d\xbb\x8d\xce\x01\x0f\x18\x77\xda\x91\xe7\ +\x01\xb4\x6c\xe4\x21\xd8\xeb\x4a\xf0\x36\xed\x82\x71\x87\xec\x5c\ +\xea\x88\x4e\x3d\xf2\x4a\x25\xd3\x6a\xcc\xd4\x7d\x84\xee\x7b\x0f\ +\x7d\x58\x95\x84\x5f\x91\x90\x38\x25\x1a\x8f\xc6\x3d\xfa\x61\xcb\ +\x2b\x1e\x7f\x30\x79\x94\x23\x62\xdf\x28\xd7\x71\xb6\x42\xdb\x52\ +\x57\x3a\xd6\x51\x6f\x58\xa1\x72\xaf\xf0\xae\x2d\xfa\x07\xd9\xd7\ +\xc4\x9f\x66\xc3\xa5\x46\x2c\x75\xf2\xb4\x18\x58\x6d\x36\xf0\xd2\ +\x26\xd8\x7f\x9f\xd8\x15\xba\x17\xa8\x52\x2e\x51\xf6\x1b\xae\x4a\ +\x54\x41\x31\x51\x7a\x45\x11\xee\x11\x71\x5b\x80\x90\x84\xe2\xb9\ +\x92\x96\xe5\xc4\x24\xbd\xc5\x25\xbd\xb8\xe8\x29\x2c\x33\x19\xfb\ +\x2c\x6b\xfe\x14\x56\x5f\x3a\x21\x7f\x77\x79\x66\x85\x1a\x41\xc9\ +\xbc\x11\x3b\xd4\x02\x05\x90\x4d\xd3\x4c\x79\x35\x23\x46\x32\x47\ +\x55\x52\x5c\xf8\x22\x2c\xdd\x20\x65\x72\x10\xb6\xa4\xec\x09\x77\ +\x3f\xfa\x2e\x64\x20\x38\xa5\x9c\xeb\x92\xc8\x9b\x4e\x9b\x84\xbd\ +\x37\xf0\x0a\xdf\x65\x26\xba\x36\x89\xb6\xfb\xe1\x1e\x43\x4a\x0e\ +\x88\x4e\x46\xe1\x44\x01\xd1\xe0\x57\xb7\xf1\xc3\xfe\x57\x51\xf6\ +\xcb\x24\xb0\xc5\x4b\xce\xe8\x5f\x98\x0a\x43\x7f\x12\xaa\x92\xc9\ +\x4f\xab\x92\xba\x45\x8e\x03\x21\xb3\xc5\x15\xc3\x19\xf9\x74\xf4\ +\x22\xde\xeb\xec\x29\x8a\x86\xe5\xc9\xc1\xfb\xd6\x78\x1f\x2a\x61\ +\xff\xd1\xee\x2c\xa2\x74\x9e\xb9\xd1\xd7\x62\xb1\x15\xf0\xfd\xb2\ +\xe7\x88\xfd\x17\x57\xaf\x60\xd6\xb7\xd7\x65\x64\xca\x01\xd5\x88\ +\xf8\x9f\xa9\x48\xf1\x7d\x90\x26\x3e\x75\x85\x5b\x39\x1b\xfd\x44\ +\x29\xcf\xd5\x47\xa7\xd8\xf0\xca\x15\x7d\x25\x3c\x01\x8c\xc1\x79\ +\xb2\x52\xbb\x52\xce\xa4\x70\xc0\x88\xb4\x87\x58\x3f\x0c\x89\xc8\ +\x13\x92\x10\x59\x32\x81\x8a\x31\x40\x1d\xcf\xa8\xde\x87\xc6\xc9\ +\xe7\x6b\x2e\x00\x56\x9b\x9b\x97\x59\x27\xea\x86\xa8\xe8\x8a\x75\ +\x77\xd6\x0a\xbe\x5a\xe5\xde\x72\x34\x1f\x6f\xa5\x8e\x1f\x4e\xc8\ +\x4e\x38\x5a\x5b\x69\xd9\x51\xa9\xe3\xd4\x6c\x59\x51\xe4\xee\x24\ +\x2c\xb7\xd5\x56\x99\x72\x85\xb5\x80\x77\x75\xed\x4b\x75\x69\x4f\ +\xca\xf7\x9a\x89\x8f\x62\x2b\xaf\x5f\xf6\xea\x8f\xda\xf9\xb4\x2c\ +\x7e\x60\x1a\x41\x52\x95\x06\x54\xb9\x52\x6a\x41\x72\x68\x93\x26\ +\xf6\x4c\xaf\xe3\x6d\xff\xb4\xa2\xb7\x2a\x01\x93\x29\xc2\x19\x26\ +\xd8\x55\xc2\x44\x32\x58\x98\xcd\xe1\x4f\x16\x33\x6e\x21\x2d\x5c\ +\x9b\x2a\xc0\x55\x39\x8b\x3a\x0d\xda\x0e\xd7\xe1\xd3\x44\xf8\x3e\ +\xa1\x6e\x06\x59\x8c\xb5\x3a\xf4\x68\x50\xa7\x93\x9a\xa6\x7e\x71\ +\x1f\x2d\x28\xa6\xe3\xd4\xe5\x34\xd7\xd4\x62\x30\x4a\x99\x5e\x26\ +\xb4\x3f\x45\x4e\x4d\x8b\xc5\x7d\x5c\x91\xd7\x66\x60\xc7\xed\xa4\ +\x2b\x40\xeb\xe0\x15\x76\x57\xa7\xf6\x78\x2b\x3c\x2e\xb3\xa2\x35\ +\x88\x10\xee\xc8\xb3\x33\xe1\xd9\xc8\xb5\xeb\xca\xbf\xb5\x98\x5d\ +\x8b\x1e\x79\x65\x19\xbc\x42\x4b\x2e\xfa\xb8\x9b\x78\x52\x8b\x34\ +\x88\x8b\xc3\xb9\x7c\x57\x2d\x70\x17\x6f\xed\xeb\x5b\xee\xf3\xcc\ +\xcf\xbc\x6f\x25\xc1\x31\x88\xec\x85\x29\x02\x96\xd6\x3f\xb7\x69\ +\xf1\xa0\x45\xbd\xfc\xe3\x49\x78\x09\xdd\xbc\xa3\xe1\x85\x5e\x7d\ +\x13\x79\xbc\x91\x37\xd4\xd5\x6e\x1d\x59\xbc\xc3\x2e\x45\x47\xed\ +\x22\xbd\x24\x7c\x6f\x76\x38\x01\x66\x84\x68\x0d\x77\x54\x6a\x65\ +\x2f\xbb\xbf\x9a\x09\x2a\xad\xfb\x94\x36\x72\x2e\x36\x72\x94\x4e\ +\x0d\x2d\xb6\x54\x94\xea\xb2\xb8\xa2\x90\x85\xa0\xf5\x9c\xb1\x15\ +\x18\x4a\x17\x8e\xe2\x51\xf2\x6b\x2d\x8a\x73\x54\xaf\x7e\xa3\x36\ +\x0b\xad\x60\x51\xbc\xd6\x1c\x62\xc2\xe5\x29\x60\x2b\x1c\x37\x67\ +\xf9\xcd\x11\x80\xfb\x79\x1d\xec\x48\x68\x52\xba\x7c\x5d\x53\x8f\ +\x16\x3e\x44\x16\xa5\x5c\x52\xbd\xb9\x1c\x9f\x4e\x74\x2a\x14\xca\ +\x9b\xba\x63\x3b\x44\xc7\xeb\xb9\x28\x0d\x65\x4c\xf7\x82\xc4\x03\ +\x05\x20\xba\x6d\x73\xf0\x4e\x1e\xb5\x49\xe2\x9a\x68\x85\x90\x19\ +\xe2\x4d\x03\xaf\x65\xee\x89\xae\xf6\x18\xbc\x10\x45\xd4\xd3\x89\ +\xe2\xab\xf4\xf7\x7a\x1e\xd4\x5b\x2a\x15\xb0\xaf\x5c\xd2\x35\x9e\ +\x21\x42\x5c\x8b\x83\xa8\x45\xd5\xf4\x7a\xd9\xc8\x43\xed\x15\x6e\ +\xb0\x69\xd0\x2e\x92\xd1\x1e\x1f\x06\x0e\x61\x12\x55\xcf\x1f\x37\ +\xb2\xa2\x80\xb3\xdb\x86\xac\xd8\xd9\xcd\xab\x31\x94\xdb\xb4\x0f\ +\x2f\xc0\xe4\x67\x97\x17\x77\x31\xba\x0a\x26\x4b\x56\x14\x93\xb3\ +\xb0\x14\x93\xd9\x7d\x82\x88\x77\xaa\x1d\xec\xb3\x68\xc2\x91\xb1\ +\x33\xf2\xd6\xdc\x84\xcb\x07\x79\x6e\xba\xca\xc7\xef\x1b\xa5\xb9\ +\xed\xaa\x99\xae\xf6\xfe\x97\xb4\xeb\x77\x95\x02\x13\xce\x40\xa8\ +\x7c\xdc\xa2\x8d\x77\xd8\x9b\xaa\x35\x4f\xe5\xee\x5b\x62\x2e\x76\ +\x95\xbb\x9e\x4d\x52\xa9\xb1\x21\xb5\xd1\x6d\xcd\x26\x3f\x3d\x7c\ +\x55\x06\x46\xd4\x18\x76\xfd\x51\xb7\x5c\xc8\xc5\xfa\xea\xe8\x2d\ +\xb6\xec\xa0\x62\x27\x1d\xa3\xd3\x5e\x1a\x3b\x54\xda\x35\x14\x4a\ +\x38\xb0\x2b\x28\x62\x1b\xd2\xc7\xcd\x77\xd1\x04\x4a\xf6\x57\x51\ +\x85\x66\x54\x66\x51\x17\x2e\xf6\x34\x89\x0c\x50\x42\xb1\xa5\xe7\ +\xfb\x32\xfe\xe1\x85\x39\xbd\x66\xcd\x84\x2f\x4c\x53\x57\xbf\xbb\ +\x3c\x8d\x36\x83\xd8\x2d\xc0\xf7\x65\xfc\x9e\xfa\x3a\xb6\x01\x5b\ +\x1d\x22\x1b\xc9\x3a\x0d\xa3\xc7\xf4\x69\x29\xbf\x1e\x17\x1f\x78\ +\xd7\x05\xbd\x47\x8d\x5d\x67\x45\x7d\xff\x19\xdf\x2d\x94\x03\x40\ +\xd4\xd0\xb6\xde\xbe\x75\x51\x64\xb5\x57\x10\xbb\xb5\x09\x52\xf7\ +\x44\x44\x16\xf3\x3b\x8a\xd6\x36\xe5\xd0\x2d\x61\xc2\xcc\x0e\xdf\ +\x36\xce\x9a\x0a\x35\x6b\x47\x8d\xee\x38\x55\x6e\xcb\xec\xda\x30\ +\x4a\x0e\xaa\x5e\x2a\x7a\xd4\x66\x6a\x17\x26\x44\xb9\x4a\x33\xbf\ +\x0c\x21\xce\x5c\x66\x69\x6f\x9d\x82\x3a\xde\x84\xde\xdc\x82\xbf\ +\x97\xcc\x69\x66\x6b\xef\x26\xd1\x52\x1b\x7f\x3b\x91\xa4\xe6\x44\ +\xae\x8f\x88\xdf\x04\xd6\xca\x5f\x97\x17\x82\x85\x08\x52\x4d\x1d\ +\xe9\xe2\xae\xb8\xbc\x78\x5f\x84\x18\xa6\x18\x03\xb5\x01\x95\x5b\ +\x1b\x43\xc0\x36\xb7\x30\x39\x12\x1b\x61\x8e\x36\x02\xab\x56\xe4\ +\xb2\x26\x06\xc3\x20\xec\x18\xca\x9a\x29\x36\x2d\x7a\x57\x70\x0b\ +\x7f\x57\x5c\x19\xac\xbd\x36\xf5\xc5\x69\x21\x15\xa6\x5f\xbb\x2a\ +\x6e\x94\xf3\x32\xd6\xc0\xd5\x21\xe1\x6e\x3c\x8a\xf2\x66\xe3\x50\ +\xa0\x23\xd0\x98\x2c\x2d\x17\xc0\x96\x38\x51\x82\x9b\x13\xc1\xbc\ +\x2b\xfc\xfe\x4a\x5f\xab\x84\xfa\x76\x38\xa8\x5a\xfe\xba\x12\x08\ +\xfd\x3c\xdd\x3c\xf2\xfc\x19\xa0\x5c\xbb\x5c\xa4\x87\xf5\x1e\xd1\ +\x93\xf6\x1c\x44\x9e\x0a\x22\xb0\xd0\x81\x08\xb3\x87\xb5\x36\x95\ +\x40\x1d\xb6\x36\x3b\xfb\x5d\x6c\xa7\x55\xf2\x5c\x64\xb9\x4a\x43\ +\x31\xa5\xaf\x48\xde\x71\xa0\x41\xd7\x19\x2a\x3d\xcc\x4a\xb2\x16\ +\x7e\xb0\x38\xaf\xe4\x7d\xf0\xc5\xbd\xec\x89\x2c\x73\x65\x68\x54\ +\x96\xdb\xca\xda\x3a\x64\xf7\x32\xfa\x1c\x99\x69\x6c\xe7\xed\x6c\ +\xe5\x19\x4e\xd0\x32\xf4\x4d\x89\x4f\xda\x18\x60\x52\xd3\x1e\x8a\ +\x88\x3d\xe1\xd4\x61\xdf\x2e\xd0\x34\x82\x03\xd7\x61\x7b\x80\x1c\ +\x9a\xe1\x98\x40\xec\x03\xf2\x16\x44\xa9\xa5\x19\xe8\x90\xfb\x88\ +\x14\xf7\x5c\x97\xb3\xe3\xba\xde\x62\x0c\xa9\xa2\xac\x55\xba\xce\ +\xc0\x62\x14\x77\xb1\xe3\xc3\x6f\xab\x4f\x2a\x02\x1c\xa0\xae\x90\ +\x3e\x51\x04\xa8\xbd\xb5\x05\x95\xd9\x02\xc7\x9c\x4d\x44\xe0\x38\ +\x13\x36\x7f\xa6\x50\x6c\x45\x08\xa5\x13\x98\x98\x12\x35\x9d\xcc\ +\x4a\xb2\x58\x7e\x27\x1e\x1a\x3f\xa4\xdc\x62\x50\xa2\xb3\x2f\x2a\ +\x5c\x46\xa3\x86\xd7\x14\x33\x2b\x5a\x5e\x2e\x85\xa1\x72\xbe\x89\ +\x5c\x31\xe5\x4b\x15\x51\xd9\x4e\x32\xa0\x41\xba\x5a\x42\xaa\x83\ +\x27\xfd\xa1\x1e\xfa\xc7\x42\xae\x51\xa3\x73\x20\x0a\x36\xe3\x7e\ +\x2c\xaf\x97\x85\x2a\x5d\x16\xf8\x54\xe7\x7f\x80\x46\x9b\x87\xec\ +\x73\xa3\x27\x66\x0b\x40\x23\x22\x9b\x06\x39\x12\x4f\x0d\x65\x52\ +\x59\x14\x9b\x26\x0f\xe6\x33\x5f\x75\x0f\x11\x01\xb7\x70\x7b\x61\ +\xf6\x3c\xdd\x75\xc5\xb8\x96\x0c\xd0\x70\xa5\x71\xa4\x91\x05\x91\ +\x53\x2e\x98\x1e\xf6\xae\xe8\x11\x6e\x40\x13\xbf\x2f\xc4\xb4\xd4\ +\x71\x34\x1e\x03\x22\xae\x34\x8d\x5f\x5c\xca\xe2\x8b\x54\x3e\xc7\ +\x35\x47\xa6\x19\xb2\xcd\x13\xc0\x32\xf6\x22\xd2\xf9\x04\xbb\xd1\ +\xbd\xbd\x81\x76\x84\x8e\x96\x60\xb3\xde\x63\x3e\x16\x3b\x72\x41\ +\xaf\x41\x8f\x97\x52\xa0\xa7\xd4\x0e\xa2\x6b\x38\x3b\xb6\x06\x35\ +\x6f\x14\x42\x95\x4f\xa6\x34\x12\xe5\x82\x1b\x41\x62\x1c\x23\xe2\ +\x4a\x50\xce\x52\x55\xba\x89\x80\x96\x82\xd3\x83\x37\xfa\xd2\x92\ +\x01\x9a\xc4\x17\xf0\x7e\x50\x51\xe0\x2e\x8c\x01\xc7\xf8\xc8\xf2\ +\x69\x5c\xed\x14\x5f\x46\x38\xf0\xab\xdf\x7c\xa7\xa7\xb8\xf3\x1b\ +\x4a\x24\xf8\x2b\x04\xf8\xf4\xea\xb9\xf8\xed\x50\x3d\x06\x82\x6d\ +\xe7\x27\xd9\x8a\xa2\x4b\x59\x1b\x23\x5d\x97\x5b\x9b\x7b\x23\x59\ +\x91\x54\xa0\xc8\x75\x81\x00\x05\x8e\x99\x13\x25\x55\xca\x2c\xa2\ +\x93\x6f\x89\xe1\xd1\xe5\xa6\xa9\x32\x2d\xa6\x22\x48\x81\x23\x6e\ +\xd6\x4a\x40\xe6\x87\x00\xa1\x5b\xd8\x83\xb4\x98\x8c\x82\x73\x63\ +\x50\xbc\x97\x5d\xcc\x70\xd3\x90\x19\x4c\x2c\x37\x22\xcf\x13\xd3\ +\x44\x28\x7b\x14\x51\xab\x43\xbc\x5a\x40\x1c\xdb\xc1\x1e\x23\x03\ +\x62\x75\x4c\xd0\x63\xce\x2a\xd1\x5e\x14\x4e\xd6\x8e\x93\xe5\x05\ +\x72\x21\x47\x72\x6b\xad\xc0\x99\x6d\x5e\x68\xfa\xbc\xb9\x77\xda\ +\xa5\x58\x9c\x11\x87\x0b\x00\x93\x47\x56\x8b\x59\x2e\x16\x03\x36\ +\x88\xcd\x84\x36\xcd\x61\x15\xeb\xe1\xdf\x56\x20\xc8\x41\xb9\x08\ +\xe5\x17\xaa\xdc\x5b\x56\x01\x1b\xed\xc0\xaf\x05\x77\x54\xad\x32\ +\x03\x6c\x95\x3a\x1c\x79\xd6\x56\x9d\x06\x54\xa2\x80\x0c\xbf\x27\ +\x40\x98\x1b\x57\x44\x85\xe3\xa0\x2c\x8c\x81\xe2\x97\x33\x92\xf3\ +\x24\xc1\x33\x10\x3a\xa9\x26\xa9\xd4\x7b\x32\xf9\xb4\xe6\x31\x09\ +\x47\x3f\xad\x9c\xef\x99\x7a\x87\xc8\x08\x73\x8e\x82\xb0\x5d\xa2\ +\x44\x95\x38\x24\xa1\xc0\x47\x43\xd6\xe6\x67\x4a\x14\x22\x8a\xb3\ +\x1d\x23\x3c\x09\x52\x37\x03\x09\xcb\x1a\x7c\x75\x64\x59\xca\x04\ +\x3d\xca\xdc\x79\x60\x63\xd3\xa6\x28\x74\xe7\x4b\xe8\x92\xb6\x49\ +\x24\x9b\x8e\x09\xab\x50\x73\x83\x4c\x45\xf2\x7a\x90\x50\xdd\x18\ +\x2e\x0e\x82\xbc\x77\x3c\x4a\xfc\x09\x9d\xda\x41\x2f\x19\xb7\xa6\ +\xa6\xb9\x73\xe4\x12\xf4\x26\x95\xba\x5c\x8b\x02\xac\x83\xa7\xab\ +\xbd\xe9\xe5\xdf\x52\x0e\x30\x76\x97\xa4\xd2\x2e\x24\x03\x01\x4a\ +\x9b\xa9\x1d\x31\x76\x33\xa8\xe1\x5b\xf8\xd9\xac\x04\x0d\x3c\x09\ +\xc7\x3a\x7f\x4f\x3a\x1e\x5c\x94\xf8\xb4\xc5\x9c\x59\x60\xf3\xf7\ +\x50\xf0\x2a\x61\xee\xcc\x29\x80\x09\xb7\xea\x9f\x0a\x83\x0a\x6b\ +\x6c\x14\x76\x07\x7a\x41\x03\xec\xb0\x30\x60\xd8\x5c\xbf\x07\x13\ +\x74\x82\x8a\x27\xf7\xe2\x29\x60\x73\x31\xbe\x6d\x61\xb8\x49\x34\ +\x60\x98\x0a\x79\x51\x6d\x4c\x8f\xa6\x8b\xea\xd0\xe4\x16\xaa\x9a\ +\x03\x3d\xbc\x06\xaa\x38\x00\x99\x3a\xcc\xb3\xcb\x51\xcd\xf9\x40\ +\xd6\x2d\x96\xe8\xc3\xd1\x25\xdd\xb8\x97\x25\x85\x6b\x3e\x2a\x0b\ +\x9d\xbf\xd6\x12\x57\xc7\x97\x88\xa9\x53\x9a\x20\xda\xfb\x22\x6f\ +\x9f\x92\xa6\x92\x42\xde\xf9\xbd\x52\x5b\x9c\xc1\x2c\xd9\xab\xca\ +\x21\xf4\xde\x80\x58\x3a\x7a\xe4\x62\x8f\x0b\x2f\x56\xb0\x1e\x1a\ +\xa1\x64\xe4\x29\x99\xba\xa6\x5d\x24\xf1\xf7\x3d\xd3\x5c\xf0\x5f\ +\x9e\x7b\x2e\x4a\x5c\xca\x94\x3c\xf3\xca\xf7\x08\xf4\x54\xe7\x5f\ +\x97\xe2\xd1\x0c\x2c\x8b\xa8\x00\x9d\x54\x1d\xe5\x42\x8e\xaf\xb0\ +\x90\xa8\x94\x57\x99\x22\x79\xdb\xa3\xdd\xce\xe3\x5a\xf2\xd7\xa6\ +\x75\x5d\x53\xca\x08\x26\x1f\x27\xc7\xfd\x50\xf1\x9a\x64\x55\xce\ +\x1e\x5f\xfa\x18\xfe\x4d\x74\xf3\x12\x7d\xb3\xa6\x8a\x93\x6e\x0d\ +\x5d\xfa\xe4\x18\xd1\xa8\xa9\xcc\xed\x00\x03\x5d\xa6\x56\x86\xae\ +\x35\xc8\x16\x4c\xdf\xa7\x5a\x71\x52\x94\xf5\xae\x84\xd6\xd4\x95\ +\x33\x97\xf4\x16\x84\x4c\x10\x51\x74\x38\x1a\xcd\xe8\xce\x94\x68\ +\x66\x52\x8e\x67\x1f\x45\x2f\x21\x17\x37\x95\x88\x8a\x5a\xd5\xe0\ +\x22\xea\x98\xdb\xa4\x23\x83\x47\x54\x55\xf7\xfb\x3c\xfa\x32\x8c\ +\xb2\x13\xd8\x05\xcc\xd2\xc3\x6e\xcf\x3c\x3f\x8f\x3d\x9b\x29\x07\ +\x01\xcd\xff\xa2\xf9\xcd\x11\x4c\x5c\x9a\xf2\x2a\xac\x4a\x27\x43\ +\xb5\x74\x54\x3d\x02\x92\x89\x41\xa4\xcf\x88\xd0\x9a\xc2\x53\xd8\ +\x8d\x74\xac\xbe\xda\x68\x2a\x0f\x76\x59\x0c\xed\x75\xd1\x1d\xa7\ +\x25\x16\x31\xaf\x52\x17\xba\xd1\xde\x22\x0e\xf7\xb3\x16\x64\xda\ +\x25\x93\x05\xac\x93\x2a\xd5\x4a\x97\xe8\x17\x1b\x6e\x84\x91\x4d\ +\xbc\xb1\x61\x33\x76\x92\x8b\x79\x25\x37\x55\x08\xcc\xd8\x44\x95\ +\xa3\x69\x6c\x40\x8e\x3c\x6f\x93\x0a\xb8\x48\xcf\xb2\x67\x21\xf8\ +\xd1\x13\x5c\xcf\x3a\xb9\x2a\x47\xe1\xa6\x78\xf4\x61\x06\xef\xf6\ +\x9a\xe0\xf9\xa3\x4f\x27\x7a\xfe\xc4\x3b\xf1\x72\x10\xf6\xce\x0e\ +\x51\xf9\x11\x7a\x67\x7b\xe8\xa4\xaa\x74\x84\xda\xcd\x6e\x2c\x13\ +\xe1\x18\xb0\xd1\x5d\xa2\xdf\x07\x41\x39\xc6\x04\x72\x10\xa5\x94\ +\x96\xd0\x0c\x51\xd7\x75\x29\x23\xe3\xe0\x2d\x2e\x0b\xcb\xe7\xdc\ +\x09\x87\x45\x7d\x4a\xae\x8f\x37\x61\x45\x91\x74\x32\x9f\x2a\x1a\ +\x5b\x32\x91\xe2\x6c\xa4\x40\x71\x1b\x98\x2a\x0f\x11\x77\x03\xe8\ +\x51\x27\x35\xfd\xe1\x30\xbd\x88\x36\x99\xe3\xa6\x5d\x40\xf9\x8f\ +\xa5\x22\x2a\xd2\x1b\x05\x64\x8a\xae\xae\xa1\x48\x53\x2f\xd1\x1b\ +\x05\x51\x5b\x5f\xe1\xbf\x63\x8b\x6c\xdc\x43\x4d\x95\x28\xd9\xcd\ +\xe2\x9b\x50\xe2\x8c\x34\xcc\x2c\xeb\xb7\x26\xf1\xb8\x33\x93\xde\ +\x21\xaa\xff\x09\xbb\x2e\x2e\x20\x22\xba\xaf\xfc\x66\x51\x3b\x9f\ +\xfd\x5d\x28\x57\x05\xc6\xff\xe4\xec\xcb\xd8\xec\xdc\x20\x70\xbd\ +\x31\xc0\x93\x43\xe5\x92\xb0\xbe\xcc\x80\xd6\xbf\xd9\xc5\xd8\x0e\ +\x0e\x82\xf0\x71\x88\xc8\x62\x66\xe4\xc2\x76\x47\x5c\x46\x22\xd2\ +\x6c\xa9\xae\xd3\x95\xb0\xd7\xe2\xb9\x1c\x8f\xbe\xa8\x9d\x5c\xba\ +\xd5\x61\x17\x0c\xd1\xdc\x39\x8c\x6a\x14\x4c\x87\x36\x0b\x11\xdb\ +\x4b\xbf\xcb\x25\x48\xcf\xb9\x5a\xf0\xbc\x52\x02\x47\xcb\x36\x3b\ +\x3b\x66\x6c\x4d\xca\xd5\x38\x5b\x7b\x5d\xf4\x81\x51\xd9\xe7\x42\ +\xcd\x51\x9d\xc0\x2a\x85\x66\x02\x7e\x78\xd4\x7d\x9e\x51\x3b\xac\ +\x13\x81\xe0\x5e\xd1\xc0\xe5\x57\x3b\xb0\x54\x50\x3d\x5a\x33\xd5\ +\x02\x85\xef\x8e\xd3\x86\x22\x47\x36\x36\x4f\x13\x89\x25\x88\x18\ +\xda\x10\x19\x4e\x5c\xbe\x4c\x34\xe9\xd1\x06\xda\x0f\x07\xc2\x3e\ +\x97\xc9\xb9\x26\xc9\x43\x09\xb6\x5a\x61\x28\xe4\xa2\xb1\xa1\x0e\ +\xd3\x86\x62\x6d\x8d\x58\xb3\x84\x62\xe2\x70\xfb\xe3\x70\x59\x96\ +\x81\x91\x3c\xe0\x3c\x6d\xc0\x70\xc3\xa9\x9e\x18\xae\x44\xa3\xa8\ +\xd8\x20\xf3\xb5\x41\x44\x7f\xaa\x24\x78\x66\xe0\x30\x96\x93\xab\ +\x00\xcc\xb2\x48\x52\x47\x5c\xa5\x94\xb2\x48\x8e\x39\x13\xc7\x64\ +\x8a\xe2\xde\x71\x56\x40\x12\x15\x51\x94\x24\x18\x0f\xc0\xf1\x0a\ +\x2e\x0f\xaa\x25\x0f\xe9\x25\x00\xca\x74\xa4\x11\xa2\x9a\x06\x8a\ +\xe1\x55\xef\x13\xdd\x09\x64\xe2\x37\x18\xb4\x91\x7f\x57\x66\x9e\ +\xc8\x4a\x42\xbd\x21\x04\xe0\x52\x04\xd0\xa1\x69\x18\x08\x1c\x36\ +\x00\xe9\x1c\x58\xca\x54\x24\xfa\x73\xdf\x52\xea\xbd\x8a\x01\xbd\ +\x72\x5a\x40\xc7\xc9\x52\x4d\x99\x90\x4d\xa5\x86\x0e\x38\x97\x65\ +\x6c\x25\x6e\xa0\x56\x46\xba\x5b\x02\x39\x48\xcb\xd2\x92\x27\x99\ +\xa3\x4d\x12\xea\xc4\xa6\xb2\x11\x70\x18\xd6\x06\x6d\x4a\x32\xf0\ +\x90\xa7\x8a\xd0\x59\xd2\xa1\x66\x10\x79\xae\x28\x2b\x48\x3c\xd8\ +\xf3\x43\xa7\xb1\x84\x02\x39\x69\x79\xb3\xc3\x83\xb1\x03\xb9\x97\ +\xb3\x2d\x4a\xfd\xf3\x48\x10\x01\x22\x33\x7e\xb6\xfd\xac\x49\x85\ +\xb7\x49\xaf\x16\xde\x0b\xdf\x11\x77\x03\x26\xad\x96\x1d\x22\x76\ +\x55\x5f\x1a\x1e\x26\xc6\x4a\x5a\xac\x3e\x56\xf2\x46\x36\x8a\x9b\ +\xe9\x55\x62\xc3\x36\xfa\x60\xa2\x56\x46\x09\x27\x9a\x72\xd1\x90\ +\x9c\xab\xd1\x8a\xbd\xb2\xa3\x5d\x52\xeb\x07\x91\x1e\x62\xac\x66\ +\x50\x27\xa1\x98\x39\xe7\x93\x78\xb2\xcb\x0c\x36\x12\x55\x60\x12\ +\xf3\x5d\xda\x2b\x64\x88\x34\x55\x4a\x0d\xd9\xc2\xd5\x17\xdd\xa4\ +\xd6\xf3\x1e\xa2\x40\xa5\x4d\xbe\x3c\x7c\x10\x75\x6e\x91\xdd\x20\ +\xcd\xe9\xbd\x64\x60\x0e\xf2\x58\xa8\x9e\xdf\x51\x3f\x48\xa9\x36\ +\x0a\x78\x33\xc6\x85\x91\x40\xd5\x1e\x0e\x51\x5a\x8c\x45\xef\x75\ +\x4d\x23\x9c\x78\xd3\xca\x3b\x44\x6f\x4b\xc8\xb7\xd0\xcf\x3a\x2b\ +\xcc\x8b\xbe\xdd\xc1\xdf\xde\xb9\x2b\x31\x61\x23\x3c\xc0\xee\xa9\ +\x06\xd8\xbd\xd7\x01\x68\xa9\xdd\xf2\x8a\x03\xec\x4a\x1e\xa0\x27\ +\xa6\x25\x25\x69\x9d\xba\xeb\x47\xda\x8d\x2a\xcb\x94\x4f\x61\x4a\ +\x37\x7f\xe0\xa2\x35\x18\x3d\x52\xef\x9f\xe6\x64\xe3\x9a\xda\x6c\ +\x86\x78\xe8\xc1\x49\x53\x32\x07\x43\x74\xd2\xfb\x74\x8a\xd1\xc8\ +\x34\x9c\x43\x2b\xac\x10\x96\xba\x43\x6b\x5e\xd5\xd5\x51\x2e\xef\ +\x03\x65\x4a\xc9\x21\xae\x9d\xa2\x32\x73\x88\x6c\x00\xcb\x9d\xb6\ +\x52\xa8\xf4\x24\x8d\xfd\xd0\x27\x7b\x61\xb4\xe1\xc8\x12\x43\x56\ +\xfb\xd4\xcb\x43\xce\x1c\xc3\xe9\xbe\x6c\x20\x6f\xcf\x22\xa7\x9b\ +\x9b\x34\x1d\x32\xed\xb8\xa1\xb0\x2f\x3b\xc8\x2c\x63\xca\x8a\x57\ +\xf0\x6f\x54\x9a\x86\x82\xc2\x48\x82\x22\xf0\xec\xe2\x0a\x10\xe9\ +\x56\xdc\xc9\xdb\x9f\x1a\x16\x97\x37\x60\x67\xdb\x2e\x8c\x96\x88\ +\x57\x20\x69\x76\x6e\xa2\xc4\xa3\xdf\x31\x7e\x81\x5a\x1b\x9d\x3d\ +\x47\x58\xd1\xb2\x98\xb5\x12\x57\x4c\xea\x07\xdd\xcd\x61\x60\x05\ +\x83\xa0\xf3\xd3\x88\xb1\xcd\xf2\x47\x22\xe9\xe9\xa2\x6b\xb4\x06\ +\xd5\x42\x95\x37\x29\xcd\x37\x91\x3e\xc2\xd5\x39\x95\x2b\xc5\x6f\ +\x9f\xd9\x4b\x66\xdd\x4c\x4c\x08\x0a\x49\x64\x65\x7a\x0d\xa1\xf0\ +\xec\x4d\x90\x18\x8d\xb1\x14\xc2\xda\x84\xdc\xc1\x33\x62\xa5\xee\ +\x95\xf3\xc1\x45\xc3\x40\x47\x3b\xbc\x2a\xdb\x28\x56\xb7\xa5\xc7\ +\xa3\x86\x23\x99\xe1\xc2\x0c\x15\x95\x77\xd1\x35\x9f\xc0\xa5\x86\ +\x28\x2d\x63\xf5\xc2\x95\x5b\x3c\x8a\xad\x5c\x41\x75\x65\xc5\x13\ +\x87\xdd\x11\x40\x8c\xcf\x1b\x6c\xf3\xd6\x6e\x9b\xf9\xad\xc2\x21\ +\x81\xc6\xa4\x2b\x55\x45\xcb\x1a\xbe\x80\xee\x63\x61\xe4\x50\x65\ +\x89\x46\x5b\xe1\x14\xe5\x70\x99\x3c\x53\xce\x19\x2b\x3b\x02\x24\ +\x84\x72\xef\xcd\xa7\x05\x29\x48\x54\x98\x81\xcc\x4b\xd1\x41\x31\ +\x1f\x1e\xdc\x74\xc4\xee\xa8\x17\x6f\x86\x2c\x0f\x62\xe9\xe8\xda\ +\xde\x6e\x8f\xd3\xe2\xbd\x5c\x2b\x0a\xbb\x59\xa3\x77\x05\x46\x5b\ +\x0d\xec\xad\x35\x81\x41\x54\x6c\x5a\xe4\xc9\x89\xab\xa4\x95\xeb\ +\x36\xaa\x8f\x54\x4a\xe0\xee\x24\x3b\x34\x6c\x9c\x4a\xeb\x6e\x98\ +\xb3\x56\xde\xf5\x27\x8a\xfb\x99\x27\x9b\xb6\x80\xa2\x67\x86\xfa\ +\x71\x51\x71\xf4\x99\x1f\x57\x69\x2e\x5a\x26\x77\xe7\x8e\x28\x02\ +\xe7\xf2\x34\x4a\x3d\xeb\x3e\xc0\x05\x69\xce\x3f\x4c\x77\x4d\x4a\ +\x91\xac\xd6\xaa\x15\xaa\xa2\x65\x0a\xb4\x31\x05\xbb\x3c\x3b\xda\ +\xc8\x3a\x8e\x8d\x8a\xb6\x94\x92\x06\x3b\xb5\xee\xd4\x74\xe9\xca\ +\xa4\x8a\xcc\x5b\x4b\xb5\x1e\xf9\x5e\xf5\xce\x5d\x09\x7f\xdf\xad\ +\xfd\x7d\x77\x6c\x51\xea\xed\xaa\xe8\xcb\xfd\xa0\xd0\xfc\x05\x17\ +\xb5\x2b\xfd\xa2\x76\xe9\x40\xef\x8a\x03\xad\xfe\x5a\x15\xfd\x63\ +\x3f\xea\x60\x7f\x31\xa0\x77\xa7\x05\x7a\x3e\xb7\xbf\x54\x1d\x97\ +\x1e\x22\xe9\x51\xda\xa0\xc9\x2a\xb0\x78\x3c\xa2\x27\x36\x8c\xde\ +\xec\x96\xf2\x7e\x16\x19\x89\xf6\x99\xda\x0f\x5f\x01\xde\xc6\xa2\ +\x1a\x6b\x4d\xdd\xbf\xfd\xbf\x9a\x2a\x4e\x90\ +\x00\x00\xca\x4d\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ -\x00\x00\x09\x98\x00\x00\x00\x58\x00\x00\x9f\x72\x00\x00\x00\x59\ -\x00\x00\xa0\x3b\x00\x00\x00\x5a\x00\x00\xa0\xe4\x00\x00\x05\xd9\ -\x00\x00\x9f\xfb\x00\x00\x05\xda\x00\x00\xa0\x1b\x00\x00\x05\xea\ -\x00\x00\xa0\xc4\x00\x00\x07\x78\x00\x00\x6d\x1c\x00\x00\x48\x83\ -\x00\x00\x03\x31\x00\x00\x48\x83\x00\x00\x73\xa8\x00\x00\x68\x34\ -\x00\x00\x67\xcf\x00\x04\xa6\x79\x00\x00\x76\xdd\x00\x04\xbb\x04\ -\x00\x00\x0b\x7a\x00\x04\xbb\x04\x00\x00\x7b\x2e\x00\x05\x30\x45\ -\x00\x00\x0d\xed\x00\x05\x30\x45\x00\x00\x8c\x53\x00\x05\x46\xc5\ -\x00\x00\x0e\x1a\x00\x05\x46\xc5\x00\x00\x8c\xf1\x00\x05\x56\x45\ -\x00\x00\x45\xad\x00\x05\x56\x45\x00\x00\x8d\x25\x00\x05\xac\xf4\ -\x00\x00\x19\x80\x00\x05\xb8\xfd\x00\x00\x9c\xfe\x00\x05\xcf\xc7\ -\x00\x00\x9d\xa6\x00\x05\xe0\x85\x00\x00\x23\x27\x00\x06\xab\x8c\ -\x00\x00\x69\x23\x00\x10\x84\x49\x00\x00\x51\x19\x00\x12\x05\xba\ -\x00\x00\x99\x6c\x00\x16\xc6\xda\x00\x00\x81\x68\x00\x2a\xa6\x79\ -\x00\x00\x6f\xec\x00\x2b\xc4\xaf\x00\x00\x70\xd0\x00\x2b\xe0\x65\ -\x00\x00\x71\x03\x00\x39\xdf\x33\x00\x00\x34\xa2\x00\x3d\xa1\x19\ -\x00\x00\x74\xb2\x00\x3e\x93\x83\x00\x00\x35\xd8\x00\x48\x8f\x7c\ -\x00\x00\x25\xc1\x00\x4b\x66\x35\x00\x00\x31\xd2\x00\x4b\x66\x37\ -\x00\x00\x32\x19\x00\x4b\x66\x39\x00\x00\x32\x60\x00\x4b\x87\xd4\ -\x00\x00\x7a\x6b\x00\x57\x60\x54\x00\x00\x95\x7b\x00\x58\xfd\xf4\ -\x00\x00\x48\xfc\x00\x59\x98\x25\x00\x00\x14\x70\x00\x59\x98\x25\ -\x00\x00\x96\xcb\x00\x6a\x58\x9a\x00\x00\x8f\x4b\x00\x79\xef\xd4\ -\x00\x00\x6d\x54\x00\x7e\x7f\x0e\x00\x00\x64\x60\x00\x8a\x23\x95\ -\x00\x00\x29\x33\x00\x8a\x23\x97\x00\x00\x29\x79\x00\x8a\x23\x99\ -\x00\x00\x29\xbf\x00\x91\xbc\xe9\x00\x00\x0e\x53\x00\xa6\x37\x3f\ -\x00\x00\x28\x08\x00\xaa\x80\x25\x00\x00\x79\xa5\x00\xc6\xe3\x6e\ -\x00\x00\x24\x79\x00\xcb\xa8\x14\x00\x00\x6c\x3a\x00\xfc\x00\xca\ -\x00\x00\x87\xf6\x01\x21\xd6\x39\x00\x00\x50\x0c\x01\x22\xb4\xf9\ -\x00\x00\x14\xaf\x01\x2f\x8e\x7e\x00\x00\x5a\x84\x01\x48\xfe\xa3\ -\x00\x00\x36\x52\x01\x53\xf3\xaa\x00\x00\x7e\x82\x01\x56\x16\x4a\ -\x00\x00\x87\x73\x01\x67\x0d\x8a\x00\x00\x83\x09\x01\x69\x11\x7a\ -\x00\x00\x93\x58\x01\x82\x39\x0a\x00\x00\x8f\xe5\x01\x8b\x68\x75\ -\x00\x00\x9c\x8b\x01\xa1\x7f\x63\x00\x00\x1c\x1b\x01\xc1\xd9\xde\ -\x00\x00\x53\x3e\x01\xd2\x8f\xd3\x00\x00\x49\xab\x01\xdf\x11\x43\ -\x00\x00\x05\x84\x01\xe2\xf4\x5a\x00\x00\x98\xfd\x01\xfc\xae\xd3\ -\x00\x00\x6d\x95\x02\x05\xbe\x25\x00\x00\x78\x4e\x02\x46\x58\x0a\ -\x00\x00\x92\x9e\x02\x65\xad\x62\x00\x00\xa1\xb6\x02\x6e\x07\xe2\ -\x00\x00\x4b\xd1\x02\x76\x24\x13\x00\x00\x3a\x3f\x02\x7d\xe0\x55\ -\x00\x00\x4c\x77\x02\x94\x46\x1a\x00\x00\x8f\x92\x02\xa7\x2c\x15\ -\x00\x00\x04\x30\x02\xaa\x36\x95\x00\x00\x6f\x83\x02\xb1\xf0\xba\ -\x00\x00\x84\xbc\x02\xbf\xaa\x8e\x00\x00\x38\xde\x02\xc0\x66\xf2\ -\x00\x00\x56\xde\x02\xc8\x3f\xf5\x00\x00\x62\x45\x02\xd9\xa4\xb9\ -\x00\x00\x67\x7e\x02\xdb\x1a\x94\x00\x00\x07\x17\x03\x01\x84\xc4\ -\x00\x00\x88\xc1\x03\x12\x97\x6a\x00\x00\x86\xae\x03\x1a\x14\x14\ -\x00\x00\x2f\x7c\x03\x1a\x16\x59\x00\x00\x4d\x11\x03\x2f\x1a\x6a\ -\x00\x00\x71\x8c\x03\x7e\xca\xb5\x00\x00\x41\x42\x03\x88\x1f\xd4\ -\x00\x00\x42\x25\x03\x9e\x58\xa5\x00\x00\x00\x44\x03\xb3\x9e\xfa\ -\x00\x00\x90\x97\x03\xb5\xc8\x9a\x00\x00\x91\xe9\x03\xbd\xd4\xe4\ -\x00\x00\x72\x3f\x03\xc4\x3c\xf5\x00\x00\x74\x74\x03\xc5\xd5\x5e\ -\x00\x00\x09\x31\x03\xcb\x0d\xe5\x00\x00\x97\x04\x03\xdc\x0c\xd4\ -\x00\x00\x70\x4e\x03\xf2\x70\x35\x00\x00\x2c\x23\x03\xf2\xbd\x60\ -\x00\x00\x15\xf9\x03\xfb\x0f\x04\x00\x00\x2f\x02\x04\x21\x23\x23\ -\x00\x00\x20\x83\x04\x56\x06\x93\x00\x00\x2d\x17\x04\x60\x7c\x15\ -\x00\x00\x95\xd0\x04\x79\xef\x9a\x00\x00\x84\x3f\x04\x82\x77\xf4\ -\x00\x00\x4c\x2d\x04\x87\xf9\x9e\x00\x00\x89\xc8\x04\x8c\xd6\xae\ -\x00\x00\x60\x7c\x04\xa0\x8a\x25\x00\x00\x05\x55\x04\xa0\x8a\x25\ -\x00\x00\x75\xdd\x04\xa4\x31\x5a\x00\x00\x8b\xe5\x04\xa8\xeb\x85\ -\x00\x00\x32\xa7\x04\xe1\x6e\xe3\x00\x00\x09\xb1\x04\xe4\x0f\x75\ -\x00\x00\x02\xc5\x04\xeb\x41\xc3\x00\x00\x2c\x9a\x04\xef\xd9\xa8\ -\x00\x00\x48\x68\x05\x03\x83\x95\x00\x00\x69\x61\x05\x05\xcb\x13\ -\x00\x00\x40\x28\x05\x0f\xf2\x74\x00\x00\x8e\x64\x05\x1b\x10\x59\ -\x00\x00\x43\xbe\x05\x2a\xe5\x97\x00\x00\x4a\x6d\x05\x44\x3b\x5f\ -\x00\x00\x6b\x4c\x05\x5c\xd9\xc4\x00\x00\x0f\xa2\x05\x5c\xd9\xc4\ -\x00\x00\x8d\x96\x05\x63\xf6\x93\x00\x00\x49\x3d\x05\x65\xee\x65\ -\x00\x00\x7d\x0c\x05\x87\xb0\xc3\x00\x00\x95\xa4\x05\x96\xa8\xa5\ -\x00\x00\x13\x0a\x05\x96\xa8\xa5\x00\x00\x96\x99\x05\xad\x4b\xc3\ -\x00\x00\x41\x9a\x05\xb9\x03\xc8\x00\x00\x1d\x7e\x05\xbd\x0c\xba\ -\x00\x00\x7f\x29\x05\xbd\x8e\xde\x00\x00\x5e\xd0\x05\xbe\x56\x93\ -\x00\x00\x47\xfa\x05\xc5\x50\x04\x00\x00\x0b\xa9\x05\xe5\x8e\x2e\ -\x00\x00\x10\xee\x05\xfb\xdc\x83\x00\x00\x40\x84\x06\x1e\xe6\xb5\ -\x00\x00\x9b\xd7\x06\x29\xee\xa9\x00\x00\x76\x05\x06\x32\xe3\xe3\ -\x00\x00\x7a\x94\x06\x57\x19\xf4\x00\x00\x00\x00\x06\x5a\xef\x15\ -\x00\x00\x6f\xb3\x06\x5b\xd2\xb5\x00\x00\x3c\xe3\x06\x6c\x88\x8e\ -\x00\x00\x3e\x73\x06\x74\x1d\x55\x00\x00\x52\xa6\x06\x8b\x96\x44\ -\x00\x00\x0c\x67\x06\x97\x58\xc9\x00\x00\x4d\x9a\x06\xbc\x80\xa5\ -\x00\x00\x1d\x19\x06\xc9\xb8\x05\x00\x00\x72\xb9\x06\xe8\x05\x4e\ -\x00\x00\x06\x9e\x06\xee\xaa\x57\x00\x00\x9a\xda\x06\xf0\xcb\x25\ -\x00\x00\x1b\x01\x06\xfa\xff\xc3\x00\x00\x40\xe6\x06\xfc\x1a\x14\ -\x00\x00\x33\xb3\x06\xfc\xa0\x8a\x00\x00\x8e\xa7\x07\x08\x90\xe5\ -\x00\x00\x2a\x98\x07\x0d\xb7\xf7\x00\x00\x38\x2b\x07\x0e\x86\x3e\ -\x00\x00\x1b\x6a\x07\x35\x68\x6e\x00\x00\x17\x0e\x07\x35\xe8\x9a\ -\x00\x00\x93\x9d\x07\x44\x41\x2a\x00\x00\x7d\xff\x07\x4a\x1f\x63\ -\x00\x00\x01\xee\x07\x4d\x73\x22\x00\x00\x8c\x7b\x07\x4e\xa6\xf2\ -\x00\x00\x7b\x87\x07\x58\xcb\xe8\x00\x00\x8c\xb5\x07\x63\xfe\x0e\ -\x00\x00\x11\xd3\x07\x80\xc6\xb3\x00\x00\x9f\x3a\x07\x88\x72\x5a\ -\x00\x00\x73\xcd\x07\xa3\xe4\x0e\x00\x00\x22\x1d\x07\xc1\xfc\x13\ -\x00\x00\x2d\xe6\x08\x27\xb4\xba\x00\x00\x91\x88\x08\x32\xc4\xaa\ -\x00\x00\x94\x54\x08\x36\x74\x14\x00\x00\x24\x32\x08\x44\xb9\x83\ -\x00\x00\x34\x1c\x08\x49\xc9\x30\x00\x00\x16\x43\x08\x61\x7c\xb3\ -\x00\x00\x1d\xb1\x08\xa2\xca\x67\x00\x00\x4c\xc7\x08\xa3\xe0\x33\ -\x00\x00\x77\x03\x08\xb1\x15\x28\x00\x00\x2e\x8f\x08\xb4\x04\x04\ -\x00\x00\x96\x10\x08\xd0\x32\xf4\x00\x00\x7b\x58\x08\xd4\xcd\x69\ -\x00\x00\x7b\xc5\x08\xe1\x9b\xbe\x00\x00\x1a\x37\x08\xe1\xc1\xfa\ -\x00\x00\x7d\x49\x08\xeb\x8d\x7a\x00\x00\x9e\xe1\x09\x20\xda\x24\ -\x00\x00\xa0\x58\x09\x20\xda\xb4\x00\x00\xa1\x01\x09\x20\xda\xd4\ -\x00\x00\x9f\x8f\x09\x4d\x96\xd9\x00\x00\x25\x08\x09\x65\xda\x8a\ -\x00\x00\x80\xf7\x09\x68\x0d\x29\x00\x00\x8a\xc6\x09\x71\x8d\x25\ -\x00\x00\x06\x56\x09\x75\x23\x14\x00\x00\x71\x2c\x09\x76\xed\x34\ -\x00\x00\x63\x78\x09\x86\xa6\x05\x00\x00\x23\x52\x09\x8b\x23\xba\ -\x00\x00\x94\xc7\x09\x9e\xfd\x7e\x00\x00\x63\xc2\x09\xb6\x2a\x63\ -\x00\x00\x33\x15\x09\xcd\x1c\x55\x00\x00\x97\x44\x09\xd2\x21\xea\ -\x00\x00\x5b\x8b\x09\xe5\x23\x0e\x00\x00\x55\xdd\x09\xec\x2b\x45\ -\x00\x00\x0c\x19\x09\xef\x33\xa3\x00\x00\x18\x05\x09\xf0\x1f\x6e\ -\x00\x00\x03\x5a\x09\xfd\x45\x1a\x00\x00\x90\x38\x0a\x09\xc1\x7a\ -\x00\x00\x92\xf9\x0a\x28\x9a\x65\x00\x00\x4b\x02\x0a\x28\x9a\x67\ -\x00\x00\x4b\x47\x0a\x28\x9a\x69\x00\x00\x4b\x8c\x0a\x2d\xbe\xe4\ -\x00\x00\x2f\xe1\x0a\x35\xa9\xfa\x00\x00\x85\x42\x0a\x3f\x27\x74\ -\x00\x00\x78\x98\x0a\x3f\x6b\x05\x00\x00\x78\xd3\x0a\x49\xa5\x4a\ -\x00\x00\x9c\x12\x0a\x60\xe0\x15\x00\x00\x26\x02\x0a\x60\xe0\x17\ -\x00\x00\x26\x5f\x0a\x60\xe0\x19\x00\x00\x26\xbc\x0a\x65\x9b\xea\ -\x00\x00\x8d\xc6\x0a\x78\x05\x80\x00\x00\x01\x31\x0a\x7f\x8f\x65\ -\x00\x00\x3b\x64\x0a\x98\x86\x18\x00\x00\x2a\x05\x0a\x99\x5c\xaa\ -\x00\x00\x95\x21\x0a\xa8\x16\x95\x00\x00\x12\xc7\x0a\xa9\x89\xec\ -\x00\x00\x42\x80\x0a\xc8\x5c\x59\x00\x00\x0f\xd9\x0a\xd0\x50\xb8\ -\x00\x00\x70\x1f\x0a\xd0\xe6\xf5\x00\x00\x17\xba\x0a\xd6\xf1\xfa\ -\x00\x00\x7a\xcf\x0a\xeb\x91\x88\x00\x00\x62\xd7\x0b\x07\x78\x8a\ -\x00\x00\x80\x56\x0b\x1b\xe0\x73\x00\x00\x4e\x08\x0b\x24\x9d\xb4\ -\x00\x00\x4f\x0b\x0b\x24\xc5\xc9\x00\x00\x13\x43\x0b\x26\x7e\x0e\ -\x00\x00\x77\xc0\x0b\x2b\x50\xfa\x00\x00\x83\xaa\x0b\x2d\xb3\xf9\ -\x00\x00\x66\xd8\x0b\x37\x73\x69\x00\x00\x9d\xd4\x0b\x40\x40\x3e\ -\x00\x00\x44\x20\x0b\x43\xcd\x19\x00\x00\x42\xfa\x0b\x66\x28\xd2\ -\x00\x00\x62\x90\x0b\x88\xe0\x07\x00\x00\x0a\x9a\x0b\x94\x44\xc5\ -\x00\x00\x30\x56\x0b\xc2\x99\x6a\x00\x00\x7f\x9d\x0b\xd3\x27\xae\ -\x00\x00\x04\x6a\x0b\xd4\x7e\x9e\x00\x00\x0a\xd1\x0b\xf5\xee\x53\ -\x00\x00\x8d\x4d\x0c\x06\x50\x2e\x00\x00\x0c\xee\x0c\x08\x46\x23\ -\x00\x00\x79\x5e\x0c\x19\xfa\x99\x00\x00\x7c\x53\x0c\x28\x9b\x45\ -\x00\x00\x70\x9b\x0c\x31\x7e\x4a\x00\x00\x90\xde\x0c\x38\x4d\xe5\ -\x00\x00\x07\x62\x0c\x3a\x16\xd0\x00\x00\x18\xf6\x0c\x5a\xc0\xc8\ -\x00\x00\x74\x44\x0c\x6e\x87\xf5\x00\x00\x21\xe2\x0c\x91\xa0\x7a\ -\x00\x00\x9b\x78\x0c\x96\x90\x59\x00\x00\x43\x53\x0c\xca\xdd\xfa\ -\x00\x00\x99\xe2\x0c\xd6\xef\x12\x00\x00\x2d\x85\x0c\xde\x99\x49\ -\x00\x00\x67\x28\x0c\xf0\xde\xaa\x00\x00\x82\x65\x0d\x1c\xf6\xee\ -\x00\x00\x2b\x69\x0d\x3a\x6c\xba\x00\x00\x91\x32\x0d\x45\xe2\x6a\ -\x00\x00\x98\x90\x0d\x59\xa1\x45\x00\x00\x79\xd7\x0d\x5a\xad\x33\ -\x00\x00\x73\x35\x0d\x5e\xe7\x6e\x00\x00\x27\x19\x0d\x64\xa5\xd9\ -\x00\x00\x59\xd0\x0d\x6d\xf8\xf4\x00\x00\x08\x15\x0d\x76\xb5\x92\ -\x00\x00\x2b\xbd\x0d\x9b\xec\xc9\x00\x00\x52\x35\x0d\xa5\xd9\x94\ -\x00\x00\x2b\x10\x0d\xa6\xda\xa4\x00\x00\x45\x45\x0d\xc6\xc6\x2a\ -\x00\x00\x93\xf6\x0d\xf2\x39\xba\x00\x00\x85\xf5\x0e\x2b\x04\x15\ -\x00\x00\x77\x7f\x0e\x2c\xe4\x2a\x00\x00\x98\x1f\x0e\x4e\xcc\xc5\ -\x00\x00\x09\x74\x0e\x6f\x9a\x1a\x00\x00\x9a\x68\x0e\x7b\x7a\x2c\ -\x00\x00\x31\x52\x0e\x8f\x6a\x37\x00\x00\x35\x82\x0e\x91\x65\xf5\ -\x00\x00\x19\xad\x0e\xca\xd7\x34\x00\x00\x1f\x6d\x0e\xcd\x1c\x55\ -\x00\x00\x97\x8d\x0e\xcd\x1c\x65\x00\x00\x97\xd6\x0e\xea\xe5\x03\ -\x00\x00\x6e\x34\x0e\xed\xe1\xf9\x00\x00\x45\xed\x0f\x07\x8d\xe3\ -\x00\x00\x6e\xd8\x0f\x17\x82\x4e\x00\x00\x00\xdf\x0f\x1f\x8d\xa5\ -\x00\x00\x77\x3b\x0f\x4f\x75\x3a\x00\x00\xa1\x6d\x0f\x5f\xca\xd5\ -\x00\x00\x30\xcf\x0f\x75\xb0\x54\x00\x00\x79\x0e\x0f\x77\xc3\xb4\ -\x00\x00\x68\x0a\x0f\x89\x0b\xbe\x00\x00\x46\x4b\x0f\x8f\xa8\xa7\ -\x00\x00\x18\xa9\x0f\x98\x0a\x39\x00\x00\x9d\x24\x0f\x9e\xec\xa0\ -\x00\x00\x12\x14\x0f\xbf\x87\xa3\x00\x00\x8b\x9b\x0f\xcd\xce\x95\ -\x00\x00\x35\x08\x0f\xdf\x21\x05\x00\x00\x23\xdd\x0f\xf6\x06\x1e\ -\x00\x00\x1f\xd5\x0f\xf6\x29\x0a\x00\x00\x72\xeb\x0f\xf7\x77\xaa\ -\x00\x00\x81\xe8\x0f\xfb\x5f\xae\x00\x00\x78\x0a\x69\x00\x00\xa2\ -\x0f\x03\x00\x00\x00\x18\x04\x14\x04\x3e\x04\x34\x04\x30\x04\x42\ -\x04\x38\x00\x20\x04\x22\x04\x3e\x04\x47\x04\x3a\x04\x43\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x09\x41\x64\x64\x20\x50\x6f\x69\x6e\ -\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x50\ -\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x50\x00\x41\x00\x64\x00\x64\ -\x00\x73\x00\x20\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\ -\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x6e\x00\x20\ -\x00\x65\x00\x78\x00\x69\x00\x73\x00\x74\x00\x69\x00\x6e\x00\x67\ -\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x2f\x00\x62\x00\x73\ -\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x28\x41\x64\x64\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\ -\x20\x74\x6f\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\ -\x77\x69\x72\x65\x2f\x62\x73\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\ -\x0e\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x50\x6f\x69\x6e\x74\x01\ -\x03\x00\x00\x00\x1e\x00\x41\x00\x64\x00\x64\x00\x20\x00\x74\x00\ -\x6f\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x2e\x00\ -\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x41\x64\x64\ -\x20\x74\x6f\x20\x67\x72\x6f\x75\x70\x2e\x2e\x2e\x07\x00\x00\x00\ -\x10\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x54\x6f\x47\x72\x6f\x75\ -\x70\x01\x03\x00\x00\x00\x68\x04\x14\x04\x3e\x04\x34\x04\x30\x04\ -\x42\x04\x38\x00\x20\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x3d\x04\ -\x38\x04\x39\x00\x28\x04\x3d\x04\x56\x00\x29\x00\x20\x04\x3e\x04\ -\x31\x20\x19\x04\x54\x04\x3a\x04\x42\x00\x28\x04\x42\x04\x38\x00\ -\x29\x00\x20\x04\x34\x04\x3e\x00\x20\x04\x32\x04\x36\x04\x35\x00\ -\x20\x04\x41\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x35\x04\x3d\x04\ -\x3e\x04\x57\x00\x20\x04\x33\x04\x40\x04\x43\x04\x3f\x04\x38\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x30\x41\x64\x64\x73\x20\x74\x68\ -\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ -\x74\x28\x73\x29\x20\x74\x6f\x20\x61\x6e\x20\x65\x78\x69\x73\x74\ -\x69\x6e\x67\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x10\x44\x72\ -\x61\x66\x74\x5f\x41\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\x01\x03\ -\x00\x00\x00\x7a\x04\x17\x04\x30\x04\x41\x04\x42\x04\x3e\x04\x41\ -\x04\x43\x04\x32\x04\x30\x04\x42\x04\x38\x00\x20\x04\x3f\x04\x3e\ -\x04\x42\x04\x3e\x04\x47\x04\x3d\x04\x43\x00\x20\x04\x48\x04\x38\ -\x04\x40\x04\x38\x04\x3d\x04\x43\x00\x20\x04\x3b\x04\x56\x04\x3d\ -\x04\x56\x04\x57\x00\x20\x04\x42\x04\x30\x00\x20\x04\x3a\x04\x3e\ -\x04\x3b\x04\x56\x04\x40\x00\x20\x04\x34\x04\x3e\x00\x20\x04\x3e\ -\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3e\x04\x33\x04\x3e\x00\x20\ -\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\x04\x42\x04\x43\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x38\x41\x70\x70\x6c\x69\x65\x73\x20\ -\x63\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\x6e\x65\x20\x77\x69\x64\ -\x74\x68\x20\x61\x6e\x64\x20\x63\x6f\x6c\x6f\x72\x20\x74\x6f\x20\ -\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x70\x70\x6c\x79\ -\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\x34\x04\x17\x04\x30\x04\ -\x41\x04\x42\x04\x3e\x04\x41\x04\x43\x04\x32\x04\x30\x04\x42\x04\ -\x38\x00\x20\x04\x3f\x04\x3e\x04\x42\x04\x3e\x04\x47\x04\x3d\x04\ -\x38\x04\x39\x00\x20\x04\x41\x04\x42\x04\x38\x04\x3b\x04\x4c\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x13\x41\x70\x70\x6c\x79\x20\x43\ -\x75\x72\x72\x65\x6e\x74\x20\x53\x74\x79\x6c\x65\x07\x00\x00\x00\ -\x10\x44\x72\x61\x66\x74\x5f\x41\x70\x70\x6c\x79\x53\x74\x79\x6c\ -\x65\x01\x03\x00\x00\x00\x08\x04\x14\x04\x43\x04\x33\x04\x30\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\x72\x63\x07\x00\x00\x00\ -\x09\x44\x72\x61\x66\x74\x5f\x41\x72\x63\x01\x03\x00\x00\x00\x88\ -\x04\x21\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x4e\x04\x54\x00\x20\ -\x04\x34\x04\x43\x04\x33\x04\x43\x00\x2e\x00\x20\x04\x12\x04\x38\ -\x04\x3a\x04\x3e\x04\x40\x04\x38\x04\x41\x04\x42\x04\x3e\x04\x32\ -\x04\x43\x04\x39\x04\x42\x04\x35\x00\x20\x00\x43\x00\x54\x00\x52\ -\x00\x4c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\x40\ -\x04\x38\x04\x32\x00\x27\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\x2c\ -\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x04\x34\ -\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\x31\x04\x3c\x04\x35\x04\x36\ -\x04\x35\x04\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x72\x63\ +\x00\x00\x0b\x38\x00\x00\x00\x58\x00\x00\xbc\x72\x00\x00\x00\x59\ +\x00\x00\xbd\x35\x00\x00\x00\x5a\x00\x00\xbd\xd8\x00\x00\x05\xd9\ +\x00\x00\xbc\xf5\x00\x00\x05\xda\x00\x00\xbd\x15\x00\x00\x05\xea\ +\x00\x00\xbd\xb8\x00\x00\x07\x78\x00\x00\x86\x55\x00\x00\x48\x83\ +\x00\x00\x03\x19\x00\x00\x48\x83\x00\x00\x8c\xb3\x00\x00\x68\x34\ +\x00\x00\x7f\xb1\x00\x01\xc1\x87\x00\x00\x57\x2e\x00\x04\xa6\x79\ +\x00\x00\x90\x56\x00\x04\xbb\x04\x00\x00\x0d\x0a\x00\x04\xbb\x04\ +\x00\x00\x95\xa4\x00\x05\x30\x45\x00\x00\x0f\x27\x00\x05\x30\x45\ +\x00\x00\xa7\xdf\x00\x05\x46\xc5\x00\x00\x0f\x52\x00\x05\x46\xc5\ +\x00\x00\xa8\x75\x00\x05\x56\x45\x00\x00\x57\xff\x00\x05\x56\x45\ +\x00\x00\xa9\x93\x00\x05\xac\xf4\x00\x00\x1c\x7e\x00\x05\xac\xf4\ +\x00\x00\xb9\x4f\x00\x05\xb8\xfd\x00\x00\xba\x57\x00\x05\xcf\xc7\ +\x00\x00\xbb\x03\x00\x06\xab\x8c\x00\x00\x81\x13\x00\x10\x84\x49\ +\x00\x00\x66\x47\x00\x12\x05\xba\x00\x00\xb6\xbd\x00\x16\xc6\xda\ +\x00\x00\x9c\xe2\x00\x1f\xa4\xf7\x00\x00\x29\x62\x00\x2a\xa6\x79\ +\x00\x00\x88\xf1\x00\x2b\xc4\xaf\x00\x00\x8a\x03\x00\x2b\xe0\x65\ +\x00\x00\x8a\x2c\x00\x39\xdf\x33\x00\x00\x39\xbc\x00\x3a\x9e\x1b\ +\x00\x00\x77\xa9\x00\x3d\xa1\x19\x00\x00\x8d\xf4\x00\x3e\x93\x83\ +\x00\x00\x3a\xea\x00\x48\x8f\x7c\x00\x00\x2a\x6e\x00\x48\x98\x89\ +\x00\x00\x03\xfe\x00\x49\xe0\x85\x00\x00\x27\x7e\x00\x49\xe0\x85\ +\x00\x00\x93\x23\x00\x4a\x36\x45\x00\x00\x07\x2e\x00\x4b\x66\x35\ +\x00\x00\x36\x88\x00\x4b\x66\x37\x00\x00\x36\xc9\x00\x4b\x66\x39\ +\x00\x00\x37\x0a\x00\x57\x60\x54\x00\x00\x12\x58\x00\x57\x60\x54\ +\x00\x00\xb2\x3e\x00\x58\xfd\xf4\x00\x00\x5c\x1e\x00\x59\x98\x25\ +\x00\x00\x15\xd3\x00\x59\x98\x25\x00\x00\xb3\xf6\x00\x6a\x58\x9a\ +\x00\x00\xac\x3a\x00\x79\xef\xd4\x00\x00\x86\x8d\x00\x7e\x7f\x0e\ +\x00\x00\x7c\x78\x00\x8a\x23\x95\x00\x00\x2d\xd8\x00\x8a\x23\x97\ +\x00\x00\x2e\x1e\x00\x8a\x23\x99\x00\x00\x2e\x64\x00\x91\xbc\xe9\ +\x00\x00\x0f\x81\x00\xa6\x37\x3f\x00\x00\x2c\xab\x00\xaa\x80\x25\ +\x00\x00\x93\xd7\x00\xac\xd6\x04\x00\x00\x46\xac\x00\xc0\xac\x63\ +\x00\x00\x94\x8f\x00\xc6\xe3\x6e\x00\x00\x28\xd3\x00\xcb\xa8\x14\ +\x00\x00\x85\x8d\x00\xfc\x00\xca\x00\x00\xa3\x76\x01\x19\x8d\xde\ +\x00\x00\x61\x4a\x01\x21\xd6\x39\x00\x00\x65\x2c\x01\x22\xb4\xf9\ +\x00\x00\x16\x16\x01\x2f\x8e\x7e\x00\x00\x70\x28\x01\x48\xfe\xa3\ +\x00\x00\x3b\x64\x01\x53\xf3\xaa\x00\x00\x99\x7f\x01\x56\x16\x4a\ +\x00\x00\xa2\xf3\x01\x5c\xde\xba\x00\x00\xa9\x0a\x01\x67\x0d\x8a\ +\x00\x00\x9e\x89\x01\x69\x11\x7a\x00\x00\xb0\x3f\x01\x69\x97\x98\ +\x00\x00\x3d\xd2\x01\x82\x39\x0a\x00\x00\xac\xd6\x01\x8b\x68\x75\ +\x00\x00\xb9\xf2\x01\x8b\x89\x79\x00\x00\x07\x5d\x01\xa1\x7f\x63\ +\x00\x00\x1e\xf3\x01\xb1\x5d\x09\x00\x00\x78\x44\x01\xc1\xd9\xde\ +\x00\x00\x68\x6c\x01\xd2\x8f\xd3\x00\x00\x5c\xcd\x01\xd4\x10\x23\ +\x00\x00\x45\xbd\x01\xdd\x83\xfa\x00\x00\xaa\xc2\x01\xdf\x11\x43\ +\x00\x00\x06\x4e\x01\xe2\xf4\x5a\x00\x00\xb6\x42\x01\xfc\xae\xd3\ +\x00\x00\x86\xce\x02\x05\xbe\x25\x00\x00\x92\x98\x02\x2c\xd9\x60\ +\x00\x00\x21\x19\x02\x2f\xb5\x14\x00\x00\x20\x5a\x02\x46\x58\x0a\ +\x00\x00\xaf\x91\x02\x57\xf8\x08\x00\x00\x0b\xf0\x02\x65\xad\x62\ +\x00\x00\xbe\xa2\x02\x6e\x07\xe2\x00\x00\x5f\xee\x02\x76\x24\x13\ +\x00\x00\x43\x03\x02\x7d\xe0\x55\x00\x00\x60\xfa\x02\x94\x46\x1a\ +\x00\x00\xac\x7f\x02\x95\xca\xb5\x00\x00\x38\x57\x02\xa7\x2c\x15\ +\x00\x00\x04\xfe\x02\xaa\x36\x95\x00\x00\x88\x8a\x02\xab\x87\xd4\ +\x00\x00\x89\x24\x02\xb1\xf0\xba\x00\x00\xa0\x3c\x02\xbf\xaa\x8e\ +\x00\x00\x3e\xf3\x02\xc0\x66\xf2\x00\x00\x6c\x10\x02\xc8\x3f\xf5\ +\x00\x00\x77\x17\x02\xd9\xa4\xb9\x00\x00\x7f\x60\x02\xdb\x1a\x94\ +\x00\x00\x08\x83\x03\x01\x84\xc4\x00\x00\xa4\x41\x03\x12\x97\x6a\ +\x00\x00\xa2\x2e\x03\x14\x79\xca\x00\x00\xa8\x9f\x03\x1a\x14\x14\ +\x00\x00\x34\x42\x03\x1a\x16\x59\x00\x00\x62\x5f\x03\x2f\x1a\x6a\ +\x00\x00\x8a\xad\x03\x7e\xca\xb5\x00\x00\x52\x50\x03\x85\x74\x48\ +\x00\x00\x4c\xec\x03\x88\x1f\xd4\x00\x00\x53\x1f\x03\x9e\x58\xa5\ +\x00\x00\x00\x40\x03\xb3\x9e\xfa\x00\x00\xad\x86\x03\xb5\xc8\x9a\ +\x00\x00\xae\xd8\x03\xbd\xd4\xe4\x00\x00\x8b\x60\x03\xc4\x3c\xf5\ +\x00\x00\x8d\xb8\x03\xc5\xd5\x5e\x00\x00\x0a\x85\x03\xc5\xd5\x5e\ +\x00\x00\x93\xa8\x03\xcb\x0d\xe5\x00\x00\xb4\x33\x03\xdc\x0c\xd4\ +\x00\x00\x89\x7f\x03\xe1\x78\x25\x00\x00\x91\xc4\x03\xf2\x70\x35\ +\x00\x00\x30\xaa\x03\xf2\xbd\x60\x00\x00\x17\x70\x03\xfb\x0f\x04\ +\x00\x00\x33\xd0\x04\x21\x23\x23\x00\x00\x24\xf3\x04\x2e\x73\x33\ +\x00\x00\x7a\xed\x04\x56\x06\x93\x00\x00\x32\x09\x04\x60\x7c\x15\ +\x00\x00\xb2\xca\x04\x79\xef\x9a\x00\x00\x9f\xbf\x04\x82\x77\xf4\ +\x00\x00\x60\xa0\x04\x87\x83\x87\x00\x00\x42\x05\x04\x87\xf9\x9e\ +\x00\x00\xa5\x48\x04\x8c\xd6\xae\x00\x00\x75\x74\x04\x8e\xbd\xda\ +\x00\x00\x97\xb7\x04\xa0\x8a\x25\x00\x00\x06\x1f\x04\xa0\x8a\x25\ +\x00\x00\x8f\x1f\x04\xa4\x31\x5a\x00\x00\xa7\x73\x04\xa8\xeb\x85\ +\x00\x00\x37\x4b\x04\xbe\x0a\xf8\x00\x00\x5b\x9b\x04\xd6\xd6\x12\ +\x00\x00\x5e\x8d\x04\xe1\x6e\xe3\x00\x00\x0a\xfd\x04\xe4\x0f\x75\ +\x00\x00\x02\xb9\x04\xeb\x41\xc3\x00\x00\x31\x84\x04\xef\xd9\xa8\ +\x00\x00\x5a\xc0\x05\x03\x83\x95\x00\x00\x82\xb8\x05\x05\xcb\x13\ +\x00\x00\x50\x94\x05\x0f\xf2\x74\x00\x00\xab\x57\x05\x1b\x10\x59\ +\x00\x00\x54\xc0\x05\x2a\xe5\x97\x00\x00\x5d\x81\x05\x44\x3b\x5f\ +\x00\x00\x84\xa3\x05\x5c\xd9\xc4\x00\x00\x10\xb8\x05\x5c\xd9\xc4\ +\x00\x00\xa9\xfa\x05\x63\xf6\x93\x00\x00\x5c\x61\x05\x65\xee\x65\ +\x00\x00\x97\x78\x05\x87\xb0\xc3\x00\x00\xb2\x9c\x05\x96\xa8\xa5\ +\x00\x00\x14\x8d\x05\x96\xa8\xa5\x00\x00\xb3\xca\x05\xad\x4b\xc3\ +\x00\x00\x52\xa6\x05\xb2\xa6\xc6\x00\x00\x21\x5f\x05\xb9\x03\xc8\ +\x00\x00\x21\xd8\x05\xbd\x0c\xba\x00\x00\x9a\xa3\x05\xbd\x8e\xde\ +\x00\x00\x73\xc8\x05\xbe\x56\x93\x00\x00\x5a\x54\x05\xc5\x50\x04\ +\x00\x00\x0d\x3b\x05\xe5\x8e\x2e\x00\x00\x12\x83\x05\xfb\xdc\x83\ +\x00\x00\x50\xf0\x06\x1e\xe6\xb5\x00\x00\xb9\x14\x06\x29\xee\xa9\ +\x00\x00\x8f\x88\x06\x2a\x86\xcd\x00\x00\x60\x4a\x06\x57\x19\xf4\ +\x00\x00\x00\x00\x06\x5a\xef\x15\x00\x00\x88\xb8\x06\x5b\xd2\xb5\ +\x00\x00\x48\x4f\x06\x6c\x88\x8e\x00\x00\x4e\x7d\x06\x74\x1d\x55\ +\x00\x00\x67\xd4\x06\x8b\x96\x44\x00\x00\x0d\xe5\x06\x97\x58\xc9\ +\x00\x00\x62\xe8\x06\xbc\x80\xa5\x00\x00\x1f\xeb\x06\xc9\xb8\x05\ +\x00\x00\x8b\xda\x06\xe8\x05\x4e\x00\x00\x08\x16\x06\xee\xaa\x57\ +\x00\x00\xb8\x21\x06\xf0\xcb\x25\x00\x00\x1d\xd9\x06\xfa\xff\xc3\ +\x00\x00\x51\xf0\x06\xfc\x1a\x14\x00\x00\x38\xad\x06\xfc\xa0\x8a\ +\x00\x00\xab\x96\x07\x08\x90\xe5\x00\x00\x2f\x2d\x07\x0d\xb7\xf7\ +\x00\x00\x3e\x40\x07\x0e\x86\x3e\x00\x00\x1e\x42\x07\x2a\x23\x65\ +\x00\x00\x3d\x3d\x07\x35\x68\x6e\x00\x00\x18\x89\x07\x35\xe8\x9a\ +\x00\x00\xb0\x86\x07\x44\x41\x2a\x00\x00\x98\xfc\x07\x4a\x1f\x63\ +\x00\x00\x01\xec\x07\x4d\x73\x22\x00\x00\xa8\x05\x07\x4e\xa6\xf2\ +\x00\x00\x95\xff\x07\x58\xcb\xe8\x00\x00\xa8\x3d\x07\x63\xfe\x0e\ +\x00\x00\x13\x6e\x07\x63\xfe\x0e\x00\x00\xb2\x63\x07\x71\xad\x43\ +\x00\x00\x19\x7c\x07\x80\xc6\xb3\x00\x00\xbc\x3a\x07\x88\x72\x5a\ +\x00\x00\x8d\x0b\x07\x91\x78\x5e\x00\x00\x26\x7b\x07\xa7\x30\x05\ +\x00\x00\x8c\xdc\x07\xc1\xfc\x13\x00\x00\x32\xce\x07\xe7\xec\x93\ +\x00\x00\x79\xbd\x08\x27\xb4\xba\x00\x00\xae\x7b\x08\x32\xc4\xaa\ +\x00\x00\xb1\x3d\x08\x36\x74\x14\x00\x00\x28\x8c\x08\x44\xb9\x83\ +\x00\x00\x39\x48\x08\x49\xc9\x30\x00\x00\x17\xbe\x08\x61\x7c\xb3\ +\x00\x00\x22\x0b\x08\xa2\xca\x67\x00\x00\x62\x15\x08\xa3\xe0\x33\ +\x00\x00\x90\xfd\x08\xb1\x15\x28\x00\x00\x33\x69\x08\xb4\x04\x04\ +\x00\x00\xb3\x41\x08\xd0\x32\xf4\x00\x00\x95\xd0\x08\xd4\xcd\x69\ +\x00\x00\x96\x3b\x08\xe1\x9b\xbe\x00\x00\x1d\x23\x08\xe1\xc1\xfa\ +\x00\x00\x98\x46\x08\xef\x4d\x7a\x00\x00\x93\x4c\x09\x20\xda\x24\ +\x00\x00\xbd\x52\x09\x20\xda\xb4\x00\x00\xbd\xf5\x09\x20\xda\xd4\ +\x00\x00\xbc\x8f\x09\x4d\x96\xd9\x00\x00\x29\xb5\x09\x65\xda\x8a\ +\x00\x00\x9c\x71\x09\x68\x0d\x29\x00\x00\xa6\x56\x09\x71\x8d\x25\ +\x00\x00\x07\xd4\x09\x75\x23\x14\x00\x00\x8a\x55\x09\x76\xed\x34\ +\x00\x00\x79\x69\x09\x86\xa6\x05\x00\x00\x27\xac\x09\x8b\x23\xba\ +\x00\x00\xb1\x88\x09\x9e\xfd\x7e\x00\x00\x7a\x4f\x09\xb6\x2a\x63\ +\x00\x00\x37\xb9\x09\xcd\x1c\x55\x00\x00\xb4\x75\x09\xd2\x21\xea\ +\x00\x00\x71\x21\x09\xe5\x23\x0e\x00\x00\x6b\x0b\x09\xec\x2b\x45\ +\x00\x00\x0d\x9f\x09\xef\x33\xa3\x00\x00\x1a\x4a\x09\xf0\x1f\x6e\ +\x00\x00\x03\x46\x09\xfd\x45\x1a\x00\x00\xad\x2b\x0a\x09\xc1\x7a\ +\x00\x00\xaf\xe0\x0a\x28\x9a\x65\x00\x00\x5f\x0d\x0a\x28\x9a\x67\ +\x00\x00\x5f\x58\x0a\x28\x9a\x69\x00\x00\x5f\xa3\x0a\x2d\xbe\xe4\ +\x00\x00\x34\xb1\x0a\x35\xa9\xfa\x00\x00\xa0\xc2\x0a\x3f\x27\x74\ +\x00\x00\x92\xe4\x0a\x40\xa1\xe3\x00\x00\x31\x25\x0a\x49\xa5\x4a\ +\x00\x00\xb9\x75\x0a\x60\xe0\x15\x00\x00\x2a\xaf\x0a\x60\xe0\x17\ +\x00\x00\x2b\x0c\x0a\x60\xe0\x19\x00\x00\x2b\x69\x0a\x65\x9b\xea\ +\x00\x00\xaa\x26\x0a\x78\x05\x80\x00\x00\x01\x37\x0a\x7f\x8f\x65\ +\x00\x00\x44\x28\x0a\x81\xe4\x23\x00\x00\x49\xe5\x0a\x86\x10\x44\ +\x00\x00\x11\xf6\x0a\x98\x86\x18\x00\x00\x2e\xaa\x0a\x99\x5c\xaa\ +\x00\x00\xb1\xe4\x0a\xa8\x16\x95\x00\x00\x14\x50\x0a\xa8\x16\x95\ +\x00\x00\xb3\x0e\x0a\xa9\x89\xec\x00\x00\x53\x7c\x0a\xc8\x5c\x59\ +\x00\x00\x10\xeb\x0a\xd0\x50\xb8\x00\x00\x89\x50\x0a\xd0\xe6\xf5\ +\x00\x00\x19\x33\x0a\xd6\xf1\xfa\x00\x00\x95\x47\x0a\xeb\x91\x88\ +\x00\x00\x78\xd6\x0b\x07\x78\x8a\x00\x00\x9b\xd0\x0b\x1b\xe0\x73\ +\x00\x00\x63\x56\x0b\x24\x9d\xb4\x00\x00\x64\x39\x0b\x24\xc5\xc9\ +\x00\x00\x14\xc0\x0b\x26\x7e\x0e\x00\x00\x92\x02\x0b\x2b\x50\xfa\ +\x00\x00\x9f\x2a\x0b\x2d\xb3\xf9\x00\x00\x7e\xbe\x0b\x37\x73\x69\ +\x00\x00\xbb\x2d\x0b\x40\x40\x3e\x00\x00\x55\x28\x0b\x43\xcd\x19\ +\x00\x00\x53\xf6\x0b\x4f\x98\xba\x00\x00\x9d\x62\x0b\x66\x28\xd2\ +\x00\x00\x77\x62\x0b\x88\xe0\x07\x00\x00\x0c\x44\x0b\x94\x44\xc5\ +\x00\x00\x35\x20\x0b\x98\x12\xaa\x00\x00\x9a\x26\x0b\xa0\x84\x94\ +\x00\x00\x04\x2d\x0b\xb3\x46\x6a\x00\x00\x90\x86\x0b\xc2\x99\x6a\ +\x00\x00\x9b\x17\x0b\xd3\x27\xae\x00\x00\x05\x38\x0b\xd4\x7e\x9e\ +\x00\x00\x0c\x79\x0b\xf5\xee\x53\x00\x00\xa9\xbb\x0c\x06\x50\x2e\ +\x00\x00\x0e\x5c\x0c\x19\xfa\x99\x00\x00\x96\xbf\x0c\x21\x0a\x83\ +\x00\x00\x8f\x47\x0c\x28\x9b\x45\x00\x00\x89\xcc\x0c\x31\x7e\x4a\ +\x00\x00\xad\xd7\x0c\x38\x4d\xe5\x00\x00\x08\xcc\x0c\x3a\x16\xd0\ +\x00\x00\x1b\xf6\x0c\x5a\xc0\xc8\x00\x00\x8d\x88\x0c\x6e\x87\xf5\ +\x00\x00\x26\x3c\x0c\x7c\xe0\xa6\x00\x00\x20\xa0\x0c\x80\x3b\x33\ +\x00\x00\x94\xe5\x0c\x91\xa0\x7a\x00\x00\xb8\xb9\x0c\x96\x90\x59\ +\x00\x00\x54\x55\x0c\xbe\xa7\x4e\x00\x00\x4b\x4f\x0c\xca\xdd\xfa\ +\x00\x00\xb7\x33\x0c\xd6\xef\x12\x00\x00\x32\x75\x0c\xde\x99\x49\ +\x00\x00\x7f\x0e\x0c\xe1\x21\x02\x00\x00\x5e\x16\x0c\xe2\x77\x73\ +\x00\x00\x81\x51\x0c\xf0\xde\xaa\x00\x00\x9d\xe5\x0d\x1c\xf6\xee\ +\x00\x00\x2f\xf4\x0d\x3a\x6c\xba\x00\x00\xae\x29\x0d\x45\xe2\x6a\ +\x00\x00\xb5\xd5\x0d\x59\xa1\x45\x00\x00\x94\x09\x0d\x5a\xad\x33\ +\x00\x00\x8c\x4e\x0d\x5e\xe7\x6e\x00\x00\x2b\xc6\x0d\x64\xa5\xd9\ +\x00\x00\x6f\x50\x0d\x6d\xf8\xf4\x00\x00\x09\x7f\x0d\x74\xdd\x52\ +\x00\x00\x1b\x3b\x0d\x76\xb5\x92\x00\x00\x30\x46\x0d\x9b\xec\xc9\ +\x00\x00\x67\x63\x0d\xa5\xd9\x94\x00\x00\x2f\x9b\x0d\xa6\xda\xa4\ +\x00\x00\x56\x4d\x0d\xa7\xb9\xc2\x00\x00\x1b\x88\x0d\xc6\xc6\x2a\ +\x00\x00\xb0\xe1\x0d\xf2\x39\xba\x00\x00\xa1\x75\x0e\x1a\x1d\xc3\ +\x00\x00\x51\x5e\x0e\x29\x94\x64\x00\x00\x40\x68\x0e\x2b\x04\x15\ +\x00\x00\x91\x83\x0e\x2c\xe4\x2a\x00\x00\xb5\x56\x0e\x4e\xcc\xc5\ +\x00\x00\x0a\xbe\x0e\x6f\x9a\x1a\x00\x00\xb7\xb7\x0e\x7b\x7a\x2c\ +\x00\x00\x36\x08\x0e\x8f\x6a\x37\x00\x00\x3a\x92\x0e\x91\x65\xf5\ +\x00\x00\x1c\xa9\x0e\xca\xd7\x34\x00\x00\x23\xc7\x0e\xcd\x1c\x55\ +\x00\x00\xb4\xc0\x0e\xcd\x1c\x65\x00\x00\xb5\x0b\x0e\xcd\x5b\x59\ +\x00\x00\x5b\x42\x0e\xea\xe5\x03\x00\x00\x87\x5d\x0e\xed\xe1\xf9\ +\x00\x00\x58\x3f\x0f\x07\x8d\xe3\x00\x00\x87\xf9\x0f\x0b\x10\x53\ +\x00\x00\x56\xb7\x0f\x17\x82\x4e\x00\x00\x00\xdb\x0f\x1f\x8d\xa5\ +\x00\x00\x91\x3f\x0f\x4f\x75\x3a\x00\x00\xbe\x5b\x0f\x5f\xca\xd5\ +\x00\x00\x35\x95\x0f\x77\xc3\xb4\x00\x00\x7f\xec\x0f\x89\x0b\xbe\ +\x00\x00\x58\xa5\x0f\x8f\xa8\xa7\x00\x00\x1a\xee\x0f\x98\x0a\x39\ +\x00\x00\xba\x7d\x0f\x9e\xec\xa0\x00\x00\x13\xaf\x0f\xbf\x87\xa3\ +\x00\x00\xa7\x29\x0f\xcd\xce\x95\x00\x00\x3a\x1e\x0f\xdf\x21\x05\ +\x00\x00\x28\x37\x0f\xf6\x06\x1e\x00\x00\x24\x33\x0f\xf6\x29\x0a\ +\x00\x00\x8c\x0c\x0f\xfb\x5f\xae\x00\x00\x92\x46\x69\x00\x00\xbe\ +\xfb\x03\x00\x00\x00\x14\x00\x50\x01\x59\x00\x69\x00\x64\x00\x61\ +\x00\x74\x00\x20\x00\x62\x00\x6f\x00\x64\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x41\x64\x64\x20\x50\x6f\x69\x6e\x74\x07\x00\x00\ +\x00\x0e\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x50\x6f\x69\x6e\x74\ +\x01\x03\x00\x00\x00\x50\x00\x41\x00\x64\x00\x64\x00\x73\x00\x20\ +\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x65\x00\x78\ +\x00\x69\x00\x73\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x77\ +\x00\x69\x00\x72\x00\x65\x00\x2f\x00\x62\x00\x73\x00\x70\x00\x6c\ +\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\ +\x41\x64\x64\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x74\x6f\x20\ +\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x77\x69\x72\x65\ +\x2f\x62\x73\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x0e\x44\x72\x61\ +\x66\x74\x5f\x41\x64\x64\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\ +\x28\x00\x50\x01\x59\x00\x69\x00\x64\x00\x61\x00\x74\x00\x20\x00\ +\x64\x00\x6f\x00\x20\x00\x73\x00\x6b\x00\x75\x00\x70\x00\x69\x00\ +\x6e\x00\x79\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x41\x64\x64\x20\x74\x6f\x20\x67\x72\x6f\x75\x70\x2e\ +\x2e\x2e\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x64\x64\ +\x54\x6f\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x60\x00\x41\x00\ +\x64\x00\x64\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x28\x00\ +\x73\x00\x29\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x6e\x00\ +\x20\x00\x65\x00\x78\x00\x69\x00\x73\x00\x74\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x30\x41\x64\x64\x73\x20\x74\x68\x65\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x28\ +\x73\x29\x20\x74\x6f\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\ +\x67\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x10\x44\x72\x61\x66\ +\x74\x5f\x41\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\x01\x03\x00\x00\ +\x00\x70\x00\x50\x00\x6f\x00\x75\x01\x7e\x00\xed\x00\x74\x00\x20\ +\x00\x61\x00\x6b\x00\x74\x00\x75\x00\xe1\x00\x6c\x00\x6e\x00\xed\ +\x00\x20\x00\x74\x00\x6c\x00\x6f\x00\x75\x01\x61\x01\x65\x00\x6b\ +\x00\x75\x00\x20\x01\x0d\x00\xe1\x00\x72\x00\x79\x00\x20\x00\x61\ +\x00\x20\x00\x62\x00\x61\x00\x72\x00\x76\x00\x75\x00\x20\x00\x6e\ +\x00\x61\x00\x20\x00\x76\x00\x79\x00\x62\x00\x72\x00\x61\x00\x6e\ +\x00\xe9\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\ +\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x41\x70\x70\x6c\ +\x69\x65\x73\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\x6e\x65\ +\x20\x77\x69\x64\x74\x68\x20\x61\x6e\x64\x20\x63\x6f\x6c\x6f\x72\ +\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\ +\x70\x70\x6c\x79\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\x28\x00\ +\x50\x00\x6f\x00\x75\x01\x7e\x00\xed\x00\x74\x00\x20\x00\x61\x00\ +\x6b\x00\x74\x00\x75\x00\xe1\x00\x6c\x00\x6e\x00\xed\x00\x20\x00\ +\x73\x00\x74\x00\x79\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x13\x41\x70\x70\x6c\x79\x20\x43\x75\x72\x72\x65\x6e\x74\x20\x53\ +\x74\x79\x6c\x65\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\ +\x70\x70\x6c\x79\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\x0c\x00\ +\x6f\x00\x62\x00\x6c\x00\x6f\x00\x75\x00\x6b\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x03\x41\x72\x63\x07\x00\x00\x00\x09\x44\x72\x61\ +\x66\x74\x5f\x41\x72\x63\x01\x03\x00\x00\x00\x6a\x00\x56\x00\x79\ +\x00\x74\x00\x76\x00\x6f\x01\x59\x00\xed\x00\x20\x00\x6f\x00\x62\ +\x00\x6c\x00\x6f\x00\x75\x00\x6b\x00\x2e\x00\x20\x00\x43\x00\x54\ +\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x20\x00\x75\ +\x00\x63\x00\x68\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\xed\x00\x2c\ +\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x70\ +\x00\x72\x00\x6f\x00\x20\x00\x76\x00\x79\x00\x6e\x00\x75\x00\x63\ +\x00\x65\x00\x6e\x00\xed\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x72\x63\x2e\x20\ +\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\ +\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\ +\x07\x00\x00\x00\x09\x44\x72\x61\x66\x74\x5f\x41\x72\x63\x01\x03\ +\x00\x00\x00\x0a\x00\x41\x00\x72\x00\x72\x00\x61\x00\x79\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x41\x72\x72\x61\x79\x07\x00\x00\ +\x00\x0b\x44\x72\x61\x66\x74\x5f\x41\x72\x72\x61\x79\x01\x03\x00\ +\x00\x00\x76\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\ +\x73\x00\x20\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x61\x00\ +\x72\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x72\x00\x65\x00\x63\x00\ +\x74\x00\x61\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x72\x00\ +\x20\x00\x61\x00\x72\x00\x72\x00\x61\x00\x79\x00\x20\x00\x66\x00\ +\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x3b\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x70\x6f\x6c\ +\x61\x72\x20\x6f\x72\x20\x72\x65\x63\x74\x61\x6e\x67\x75\x6c\x61\ +\x72\x20\x61\x72\x72\x61\x79\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x41\x72\x72\x61\x79\x01\x03\ +\x00\x00\x00\x10\x00\x42\x00\x2d\x00\x53\x00\x70\x00\x6c\x00\x69\ +\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x2d\ +\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\ +\x5f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x82\x00\x56\ +\x00\x79\x00\x74\x00\x76\x00\xe1\x01\x59\x00\xed\x00\x20\x00\x76\ +\x00\x6c\x00\x6e\x00\x6f\x00\x76\x00\x6b\x00\x75\x00\x20\x00\x7a\ +\x00\x20\x00\x76\x00\xed\x00\x63\x00\x65\x00\x20\x00\x62\x00\x6f\ +\x00\x64\x01\x6f\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\ +\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x20\x00\x75\x00\x63\x00\x68\ +\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\xed\x00\x2c\x00\x20\x00\x53\ +\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x70\x00\x72\x00\x6f\ +\x00\x20\x00\x6f\x00\x6d\x00\x65\x00\x7a\x00\x65\x00\x6e\x00\xed\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\x43\x72\x65\x61\x74\x65\ +\x73\x20\x61\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\x70\x6f\x69\ +\x6e\x74\x20\x62\x2d\x73\x70\x6c\x69\x6e\x65\x2e\x20\x43\x54\x52\ +\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\ +\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\ +\x00\x0d\x44\x72\x61\x66\x74\x5f\x42\x53\x70\x6c\x69\x6e\x65\x01\ +\x03\x00\x00\x00\x08\x00\x4b\x00\x72\x00\x75\x00\x68\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x06\x43\x69\x72\x63\x6c\x65\x07\x00\x00\ +\x00\x0c\x44\x72\x61\x66\x74\x5f\x43\x69\x72\x63\x6c\x65\x01\x03\ +\x00\x00\x00\x82\x00\x56\x00\x79\x00\x74\x00\x76\x00\x6f\x01\x59\ +\x00\xed\x00\x20\x00\x6b\x00\x72\x00\x75\x00\x68\x00\x2e\x00\x20\ +\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x72\x00\x6f\ +\x00\x20\x00\x70\x01\x59\x00\x69\x00\x63\x00\x68\x00\x79\x00\x63\ +\x00\x65\x00\x6e\x00\xed\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\ +\x00\x20\x00\x76\x00\x79\x00\x62\x00\x65\x00\x72\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x20\ +\x00\x6e\x00\x61\x00\x20\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x65\ +\x00\x6e\x00\x74\x01\x1b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3d\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x69\x72\x63\x6c\x65\ \x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\ -\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\ -\x69\x6e\x07\x00\x00\x00\x09\x44\x72\x61\x66\x74\x5f\x41\x72\x63\ -\x01\x03\x00\x00\x00\x10\x00\x42\x00\x2d\x00\x53\x00\x70\x00\x6c\ -\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\ -\x42\x2d\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x0d\x44\x72\x61\ -\x66\x74\x5f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x86\ -\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\ -\x00\x61\x00\x20\x00\x6d\x00\x75\x00\x6c\x00\x74\x00\x69\x00\x70\ -\x00\x6c\x00\x65\x00\x2d\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\ -\x00\x20\x00\x62\x00\x2d\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x6e\ -\x00\x65\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\ -\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x2c\ -\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x74\ -\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\ -\x00\x61\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\ -\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x6d\x75\x6c\x74\x69\x70\ -\x6c\x65\x2d\x70\x6f\x69\x6e\x74\x20\x62\x2d\x73\x70\x6c\x69\x6e\ -\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\ -\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\ -\x61\x69\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x42\x53\ -\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x08\x04\x1a\x04\x3e\x04\ -\x3b\x04\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\x69\x72\ -\x63\x6c\x65\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x43\x69\ -\x72\x63\x6c\x65\x01\x03\x00\x00\x00\x74\x04\x21\x04\x42\x04\x32\ -\x04\x3e\x04\x40\x04\x4e\x04\x54\x00\x20\x04\x3a\x04\x3e\x04\x3b\ -\x04\x3e\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\ -\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\ -\x20\x19\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\x2c\x00\x20\x00\x41\ -\x00\x4c\x00\x54\x00\x2c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\ -\x04\x32\x04\x38\x04\x31\x04\x3e\x04\x40\x04\x43\x00\x20\x04\x34\ -\x04\x3e\x04\x42\x04\x38\x04\x47\x04\x3d\x04\x3e\x04\x57\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x3d\x43\x72\x65\x61\x74\x65\x73\x20\ -\x61\x20\x63\x69\x72\x63\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\ -\x6f\x20\x73\x6e\x61\x70\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x73\ -\x65\x6c\x65\x63\x74\x20\x74\x61\x6e\x67\x65\x6e\x74\x20\x6f\x62\ -\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\ -\x43\x69\x72\x63\x6c\x65\x01\x03\x00\x00\x00\x1a\x04\x17\x04\x30\ -\x04\x3a\x04\x40\x04\x38\x04\x42\x04\x38\x00\x20\x04\x3b\x04\x56\ -\x04\x3d\x04\x56\x04\x4e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\ -\x43\x6c\x6f\x73\x65\x20\x4c\x69\x6e\x65\x07\x00\x00\x00\x0f\x44\ -\x72\x61\x66\x74\x5f\x43\x6c\x6f\x73\x65\x4c\x69\x6e\x65\x01\x03\ -\x00\x00\x00\x3a\x04\x17\x04\x30\x04\x3a\x04\x40\x04\x38\x04\x32\ -\x04\x30\x04\x54\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\x56\x04\x4e\ -\x00\x2c\x00\x20\x04\x49\x04\x3e\x00\x20\x04\x3a\x04\x40\x04\x35\ -\x04\x41\x04\x3b\x04\x38\x04\x42\x04\x4c\x04\x41\x04\x4f\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x1b\x43\x6c\x6f\x73\x65\x73\x20\x74\ -\x68\x65\x20\x6c\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\x20\x64\x72\ -\x61\x77\x6e\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\x6c\ -\x6f\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x1c\x04\x12\x04\ -\x38\x04\x34\x04\x30\x04\x3b\x04\x38\x04\x42\x04\x38\x00\x20\x04\ -\x22\x04\x3e\x04\x47\x04\x3a\x04\x43\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0c\x52\x65\x6d\x6f\x76\x65\x20\x50\x6f\x69\x6e\x74\x07\ -\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x44\x65\x6c\x50\x6f\x69\ -\x6e\x74\x01\x03\x00\x00\x00\x60\x00\x52\x00\x65\x00\x6d\x00\x6f\ -\x00\x76\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x70\x00\x6f\ -\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\ -\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x65\x00\x78\x00\x69\x00\x73\ -\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x77\x00\x69\x00\x72\ -\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x62\x00\x73\x00\x70\ -\x00\x6c\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x30\x52\x65\x6d\x6f\x76\x65\x73\x20\x61\x20\x70\x6f\x69\x6e\ -\x74\x20\x66\x72\x6f\x6d\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\ -\x6e\x67\x20\x77\x69\x72\x65\x20\x6f\x72\x20\x62\x73\x70\x6c\x69\ -\x6e\x65\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x44\x65\x6c\ -\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\xaa\x04\x21\x04\x42\x04\ -\x32\x04\x3e\x04\x40\x04\x4e\x04\x54\x00\x20\x04\x40\x04\x3e\x04\ -\x37\x04\x3c\x04\x56\x04\x40\x04\x3d\x04\x56\x04\x41\x04\x42\x04\ -\x4c\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x04\ -\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x00\ -\x27\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\x2c\x00\x20\x00\x53\x00\ -\x48\x00\x49\x00\x46\x00\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\ -\x20\x04\x3e\x04\x31\x04\x3c\x04\x35\x04\x36\x04\x35\x04\x3d\x04\ -\x3d\x04\x4f\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x04\ -\x34\x04\x3b\x04\x4f\x00\x20\x04\x32\x04\x38\x04\x31\x04\x3e\x04\ -\x40\x04\x43\x00\x20\x04\x41\x04\x35\x04\x33\x04\x3c\x04\x35\x04\ -\x3d\x04\x42\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4e\x43\ -\x72\x65\x61\x74\x65\x73\x20\x61\x20\x64\x69\x6d\x65\x6e\x73\x69\ -\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\ -\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\ -\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x73\x65\x6c\ -\x65\x63\x74\x20\x61\x20\x73\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\ -\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\x73\x69\x6f\ -\x6e\x01\x03\x00\x00\x00\x16\x04\x20\x04\x3e\x04\x37\x04\x3c\x04\ -\x56\x04\x40\x04\x3d\x04\x56\x04\x41\x04\x42\x04\x4c\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x09\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ -\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\ -\x73\x69\x6f\x6e\x01\x03\x00\x00\x00\x10\x04\x1f\x04\x3e\x04\x3d\ -\x04\x38\x04\x37\x04\x38\x04\x42\x04\x38\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x09\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x07\x00\x00\ -\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\x64\ -\x65\x01\x03\x00\x00\x00\x80\x04\x20\x04\x3e\x04\x37\x04\x56\x04\ -\x40\x04\x32\x04\x30\x04\x42\x04\x38\x00\x20\x04\x3e\x04\x31\x04\ -\x40\x04\x30\x04\x3d\x04\x38\x04\x39\x00\x20\x04\x3e\x04\x31\x00\ -\x27\x04\x54\x04\x3a\x04\x42\x00\x20\x04\x3d\x04\x30\x00\x20\x04\ -\x3f\x04\x40\x04\x3e\x04\x41\x04\x42\x04\x56\x00\x20\x04\x3e\x04\ -\x31\x00\x27\x04\x54\x04\x3a\x04\x42\x04\x38\x00\x2c\x00\x20\x04\ -\x30\x04\x31\x04\x3e\x00\x20\x04\x32\x04\x56\x04\x34\x04\x3d\x04\ -\x4f\x04\x42\x04\x38\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\x35\x04\ -\x40\x04\x45\x04\x3d\x04\x56\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x45\x45\x78\x70\x6c\x6f\x64\x65\x73\x20\x74\x68\x65\x20\x73\x65\ -\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\ -\x6e\x74\x6f\x20\x73\x69\x6d\x70\x6c\x65\x72\x20\x6f\x62\x6a\x65\ -\x63\x74\x73\x2c\x20\x6f\x72\x20\x73\x75\x62\x74\x72\x61\x63\x74\ -\x20\x66\x61\x63\x65\x73\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\ -\x5f\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x0e\ -\x04\x1c\x04\x30\x04\x3b\x04\x4e\x04\x3d\x04\x3e\x04\x3a\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x07\x44\x72\x61\x77\x69\x6e\x67\x07\ -\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x44\x72\x61\x77\x69\x6e\ -\x67\x01\x03\x00\x00\x00\x5a\x00\x50\x00\x75\x00\x74\x00\x73\x00\ +\x41\x4c\x54\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x20\x74\x61\ +\x6e\x67\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ +\x00\x0c\x44\x72\x61\x66\x74\x5f\x43\x69\x72\x63\x6c\x65\x01\x03\ +\x00\x00\x00\x0a\x00\x43\x00\x6c\x00\x6f\x00\x6e\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x43\x6c\x6f\x6e\x65\x07\x00\x00\ +\x00\x0b\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\x6e\x65\x01\x03\x00\ +\x00\x00\x3a\x00\x43\x00\x6c\x00\x6f\x00\x6e\x00\x65\x00\x73\x00\ \x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ \x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x6e\x00\ -\x20\x00\x61\x00\x20\x00\x44\x00\x72\x00\x61\x00\x77\x00\x69\x00\ -\x6e\x00\x67\x00\x20\x00\x73\x00\x68\x00\x65\x00\x65\x00\x74\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x28\x00\x73\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1d\x43\x6c\x6f\x6e\x65\x73\x20\x74\x68\ +\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x28\x73\x29\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x43\ +\x6c\x6f\x6e\x65\x01\x03\x00\x00\x00\x14\x00\x7a\x00\x61\x00\x76\ +\x01\x59\x00\x65\x00\x20\x01\x0d\x00\xe1\x00\x72\x00\x75\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6c\x6f\x73\x65\x20\x4c\x69\ +\x6e\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\ +\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x2e\x00\x5a\x00\x61\ +\x00\x76\x01\x59\x00\x65\x00\x6e\x00\xe1\x00\x20\x01\x0d\x00\xe1\ +\x00\x72\x00\x61\x00\x20\x00\x6e\x00\x61\x00\x6b\x00\x72\x00\x65\ +\x00\x73\x00\x6c\x00\x65\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1b\x43\x6c\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x6c\ +\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x07\ +\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\x73\x65\x4c\ +\x69\x6e\x65\x01\x03\x00\x00\x00\x1a\x00\x4f\x00\x64\x00\x73\x00\ +\x74\x00\x72\x00\x61\x00\x6e\x00\x69\x00\x74\x00\x20\x00\x62\x00\ +\x6f\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x52\x65\x6d\ +\x6f\x76\x65\x20\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x0e\x44\x72\ +\x61\x66\x74\x5f\x44\x65\x6c\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\ +\x00\x60\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x73\ +\x00\x20\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\ +\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x6e\ +\x00\x20\x00\x65\x00\x78\x00\x69\x00\x73\x00\x74\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x20\x00\x6f\ +\x00\x72\x00\x20\x00\x62\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x6e\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x52\x65\x6d\x6f\ +\x76\x65\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x66\x72\x6f\x6d\ +\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x77\x69\x72\ +\x65\x20\x6f\x72\x20\x62\x73\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\ +\x0e\x44\x72\x61\x66\x74\x5f\x44\x65\x6c\x50\x6f\x69\x6e\x74\x01\ +\x03\x00\x00\x00\x94\x00\x56\x00\x79\x00\x74\x00\x76\x00\x6f\x01\ +\x59\x00\xed\x00\x20\x00\x72\x00\x6f\x00\x7a\x00\x6d\x01\x1b\x00\ +\x72\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\ +\x70\x00\x72\x00\x6f\x00\x20\x00\x70\x01\x59\x00\x69\x00\x63\x00\ +\x68\x00\x79\x00\x63\x00\x65\x00\x6e\x00\xed\x00\x2c\x00\x20\x00\ +\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x70\x00\x72\x00\ +\x6f\x00\x20\x00\x6f\x00\x6d\x00\x65\x00\x7a\x00\x65\x00\x6e\x00\ +\xed\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x76\x00\ +\x79\x00\x62\x00\x65\x00\x72\x00\x65\x00\x20\x00\x73\x00\x65\x00\ +\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x4e\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x64\x69\x6d\ +\x65\x6e\x73\x69\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\ +\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\ +\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\ +\x20\x73\x65\x6c\x65\x63\x74\x20\x61\x20\x73\x65\x67\x6d\x65\x6e\ +\x74\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x69\x6d\x65\ +\x6e\x73\x69\x6f\x6e\x01\x03\x00\x00\x00\x0c\x00\x52\x00\x6f\x00\ +\x7a\x00\x6d\x01\x1b\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x09\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\x0f\x44\ +\x72\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x01\x03\ +\x00\x00\x00\x12\x00\x44\x00\x6f\x00\x77\x00\x6e\x00\x67\x00\x72\ +\x00\x61\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x07\x00\x00\x00\x0f\x44\x72\ +\x61\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\x03\x00\ +\x00\x00\x8a\x00\x52\x00\x6f\x00\x7a\x00\x65\x00\x62\x00\x65\x00\ +\x72\x00\x65\x00\x20\x00\x76\x00\x79\x00\x62\x00\x72\x00\x61\x00\ +\x6e\x00\xe9\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x79\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\ +\x64\x00\x6e\x00\x6f\x00\x64\x00\x75\x01\x61\x01\x61\x00\xed\x00\ +\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x01\x6f\x00\x2c\x00\x20\x00\x6e\x00\x65\x00\x62\x00\x6f\x00\ +\x20\x00\x6f\x00\x64\x00\x65\x01\x0d\x00\xed\x00\x74\x00\xe1\x00\ +\x20\x00\x70\x00\x6c\x00\x6f\x00\x63\x00\x68\x00\x79\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x45\x45\x78\x70\x6c\x6f\x64\x65\x73\x20\ +\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\x73\x69\x6d\x70\x6c\x65\ +\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x2c\x20\x6f\x72\x20\x73\x75\ +\x62\x74\x72\x61\x63\x74\x20\x66\x61\x63\x65\x73\x07\x00\x00\x00\ +\x0f\x44\x72\x61\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\ +\x01\x03\x00\x00\x00\x1e\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\ +\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\ +\x00\x63\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x44\x72\ +\x61\x66\x74\x20\x74\x6f\x20\x53\x6b\x65\x74\x63\x68\x07\x00\x00\ +\x00\x12\x44\x72\x61\x66\x74\x5f\x44\x72\x61\x66\x74\x32\x53\x6b\ +\x65\x74\x63\x68\x01\x03\x00\x00\x00\x0c\x00\x56\x00\xfd\x00\x6b\ +\x00\x72\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ +\x44\x72\x61\x77\x69\x6e\x67\x07\x00\x00\x00\x0d\x44\x72\x61\x66\ +\x74\x5f\x44\x72\x61\x77\x69\x6e\x67\x01\x03\x00\x00\x00\x42\x00\ +\x55\x00\x6d\x00\xed\x00\x73\x00\x74\x00\xed\x00\x20\x00\x76\x00\ +\x79\x00\x62\x00\x72\x00\x61\x00\x6e\x00\xe9\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x20\x00\x6e\x00\ +\x61\x00\x20\x00\x76\x00\xfd\x00\x6b\x00\x72\x00\x65\x00\x73\x00\ \x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x50\x75\x74\x73\x20\ \x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ \x65\x63\x74\x73\x20\x6f\x6e\x20\x61\x20\x44\x72\x61\x77\x69\x6e\ \x67\x20\x73\x68\x65\x65\x74\x2e\x07\x00\x00\x00\x0d\x44\x72\x61\ -\x66\x74\x5f\x44\x72\x61\x77\x69\x6e\x67\x01\x03\x00\x00\x00\x0c\ -\x04\x1f\x04\x40\x04\x30\x04\x32\x04\x3a\x04\x30\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x0a\x44\ -\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\x3a\x04\ -\x20\x04\x35\x04\x34\x04\x30\x04\x33\x04\x43\x04\x32\x04\x30\x04\ -\x3d\x04\x3d\x04\x4f\x00\x20\x04\x30\x04\x3a\x04\x42\x04\x38\x04\ -\x32\x04\x3d\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\x3e\x04\x31\x00\ -\x27\x04\x54\x04\x3a\x04\x42\x04\x30\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x17\x45\x64\x69\x74\x73\x20\x74\x68\x65\x20\x61\x63\x74\ -\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x0a\x44\ -\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\x1e\x04\ -\x17\x04\x30\x04\x32\x04\x35\x04\x40\x04\x48\x04\x38\x04\x42\x04\ -\x38\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\x56\x04\x4e\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0b\x46\x69\x6e\x69\x73\x68\x20\x6c\x69\ -\x6e\x65\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\ -\x69\x73\x68\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x40\x04\x17\x04\ -\x30\x04\x32\x04\x35\x04\x40\x04\x48\x04\x35\x04\x3d\x04\x3d\x04\ -\x4f\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\x56\x04\x57\x00\x20\x04\ -\x31\x04\x35\x04\x37\x00\x20\x04\x57\x04\x57\x00\x20\x04\x37\x04\ -\x30\x04\x3a\x04\x40\x04\x38\x04\x42\x04\x42\x04\x4f\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x22\x46\x69\x6e\x69\x73\x68\x65\x73\x20\ -\x61\x20\x6c\x69\x6e\x65\x20\x77\x69\x74\x68\x6f\x75\x74\x20\x63\ -\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\x07\x00\x00\x00\x10\x44\x72\ -\x61\x66\x74\x5f\x46\x69\x6e\x69\x73\x68\x4c\x69\x6e\x65\x01\x03\ -\x00\x00\x00\xa8\x04\x21\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x4e\ -\x04\x54\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\x56\x04\x4e\x00\x20\ -\x00\x20\x04\x3f\x04\x3e\x00\x20\x00\x32\x00\x2d\x04\x3c\x00\x20\ -\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x30\x04\x3c\x00\x2e\x00\x20\ -\x04\x12\x04\x38\x04\x3a\x04\x3e\x04\x40\x04\x38\x04\x41\x04\x42\ -\x04\x3e\x04\x32\x04\x43\x04\x39\x04\x42\x04\x35\x00\x20\x00\x43\ -\x00\x54\x00\x52\x00\x4c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\ -\x04\x3f\x04\x40\x04\x38\x04\x32\x00\x27\x04\x4f\x04\x37\x04\x3a\ -\x04\x38\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\ -\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\x31\x04\x3c\ -\x04\x35\x04\x36\x04\x35\x04\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x38\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ -\x32\x2d\x70\x6f\x69\x6e\x74\x20\x6c\x69\x6e\x65\x2e\x20\x43\x54\ -\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\ -\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\ -\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4c\x69\x6e\x65\x01\x03\x00\ -\x00\x00\x0a\x04\x1b\x04\x56\x04\x3d\x04\x56\x04\x4f\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x0a\ -\x44\x72\x61\x66\x74\x5f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x16\ -\x04\x1f\x04\x35\x04\x40\x04\x35\x04\x3c\x04\x56\x04\x49\x04\x35\ -\x04\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ -\x4d\x6f\x76\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4d\ -\x6f\x76\x65\x01\x03\x00\x00\x00\xd6\x04\x1f\x04\x35\x04\x40\x04\ -\x35\x04\x3c\x04\x56\x04\x49\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\ -\x20\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x38\x04\x45\x00\ -\x20\x04\x3e\x04\x31\x20\x19\x04\x54\x04\x3a\x04\x42\x04\x56\x04\ -\x32\x00\x20\x04\x3c\x04\x56\x04\x36\x00\x20\x04\x34\x04\x32\x04\ -\x3e\x04\x3c\x04\x30\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\ -\x30\x04\x3c\x04\x38\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\ -\x4c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\ -\x38\x04\x32\x20\x19\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\x2c\x00\ -\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x04\x34\x04\ -\x3b\x04\x4f\x00\x20\x04\x3e\x04\x31\x04\x3c\x04\x35\x04\x36\x04\ -\x35\x04\x3d\x04\x3d\x04\x4f\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\ -\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3a\x04\x3e\x04\ -\x3f\x04\x56\x04\x4e\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4f\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x5a\x4d\x6f\x76\x65\x73\x20\x74\ -\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ -\x63\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x32\x20\x70\x6f\ -\x69\x6e\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ -\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\ -\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\ -\x6f\x70\x79\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4d\x6f\ -\x76\x65\x01\x03\x00\x00\x00\x10\x04\x17\x04\x3c\x04\x56\x04\x49\ -\x04\x35\x04\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x0c\x44\x72\x61\ -\x66\x74\x5f\x4f\x66\x66\x73\x65\x74\x01\x03\x00\x00\x00\xac\x04\ -\x17\x04\x3c\x04\x56\x04\x49\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\ -\x20\x04\x30\x04\x3a\x04\x42\x04\x38\x04\x32\x04\x3d\x04\x3e\x04\ -\x33\x04\x3e\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\x04\ -\x42\x04\x30\x00\x2e\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x04\ -\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x00\ -\x27\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\x2c\x00\x20\x00\x53\x00\ -\x48\x00\x49\x00\x46\x00\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\ -\x20\x04\x3e\x04\x31\x04\x3c\x04\x35\x04\x36\x04\x35\x04\x3d\x04\ -\x3d\x04\x4f\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x04\ -\x34\x04\x3b\x04\x4f\x00\x20\x04\x3a\x04\x3e\x04\x3f\x04\x56\x04\ -\x4e\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x48\x4f\x66\x66\x73\x65\x74\x73\x20\x74\x68\x65\ -\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x2e\x20\ -\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\ -\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\ -\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\ -\x00\x0c\x44\x72\x61\x66\x74\x5f\x4f\x66\x66\x73\x65\x74\x01\x03\ -\x00\x00\x00\x88\x04\x21\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x4e\ -\x04\x54\x00\x20\x04\x32\x04\x56\x04\x40\x04\x3d\x04\x38\x04\x39\ -\x00\x20\x04\x31\x04\x30\x04\x33\x04\x30\x04\x42\x04\x3e\x04\x3a\ -\x04\x43\x04\x42\x04\x3d\x04\x38\x04\x3a\x00\x2e\x00\x20\x00\x43\ -\x00\x54\x00\x52\x00\x4c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\ -\x04\x3f\x04\x40\x04\x38\x04\x32\x00\x27\x04\x4f\x04\x37\x04\x3a\ -\x04\x38\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\ -\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\x31\x04\x3c\ -\x04\x35\x04\x36\x04\x35\x04\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x3b\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ -\x72\x65\x67\x75\x6c\x61\x72\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x2e\ -\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\ -\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\ -\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x50\x6f\x6c\x79\ -\x67\x6f\x6e\x01\x03\x00\x00\x00\x18\x04\x11\x04\x30\x04\x33\x04\ -\x30\x04\x42\x04\x3e\x04\x3a\x04\x43\x04\x42\x04\x3d\x04\x38\x04\ -\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x50\x6f\x6c\x79\x67\ -\x6f\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x50\x6f\x6c\ -\x79\x67\x6f\x6e\x01\x03\x00\x00\x00\x66\x04\x21\x04\x42\x04\x32\ -\x04\x3e\x04\x40\x04\x4e\x04\x54\x00\x20\x04\x3f\x04\x40\x04\x4f\ -\x04\x3c\x04\x3e\x04\x3a\x04\x43\x04\x42\x04\x3d\x04\x38\x04\x3a\ -\x00\x20\x04\x3f\x04\x3e\x00\x20\x00\x32\x00\x20\x04\x42\x04\x3e\ -\x04\x47\x04\x3a\x04\x30\x04\x3c\x00\x2e\x00\x20\x00\x43\x00\x54\ -\x00\x52\x00\x4c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\ -\x04\x40\x04\x38\x04\x32\x00\x27\x04\x4f\x04\x37\x04\x3a\x04\x38\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x43\x72\x65\x61\x74\x65\ -\x73\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\x74\x20\x72\x65\x63\x74\ -\x61\x6e\x67\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\ -\x6e\x61\x70\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x52\x65\ -\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\x16\x04\x1f\x04\ -\x40\x04\x4f\x04\x3c\x04\x3e\x04\x3a\x04\x43\x04\x42\x04\x3d\x04\ -\x38\x04\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x52\x65\x63\ -\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\ -\x5f\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\x12\ -\x04\x1e\x04\x31\x04\x35\x04\x40\x04\x42\x04\x30\x04\x3d\x04\x3d\ -\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x6f\x74\x61\ -\x74\x65\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\ -\x61\x74\x65\x01\x03\x00\x00\x00\xba\x04\x1e\x04\x31\x04\x35\x04\ -\x40\x04\x42\x04\x30\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x3e\x04\ -\x31\x04\x40\x04\x30\x04\x3d\x04\x38\x04\x45\x00\x20\x04\x3e\x04\ -\x31\x00\x27\x04\x54\x04\x3a\x04\x42\x04\x56\x04\x32\x00\x2e\x00\ -\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x04\x34\x04\x3b\x04\ -\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x00\x27\x04\x4f\x04\ -\x37\x04\x3a\x04\x38\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\ -\x46\x00\x54\x00\x2c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\ -\x3e\x04\x31\x04\x3c\x04\x35\x04\x36\x04\x35\x04\x3d\x04\x3d\x04\ -\x4f\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x04\x34\x04\ -\x3b\x04\x4f\x00\x20\x04\x41\x04\x42\x04\x32\x04\x3e\x04\x40\x04\ -\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x3a\x04\x3e\x04\x3f\x04\ -\x56\x04\x57\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x6f\x74\ -\x61\x74\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ -\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\ -\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\ -\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\ -\x20\x63\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x6f\x70\x79\x07\ -\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\ -\x01\x03\x00\x00\x00\x1a\x04\x1c\x04\x30\x04\x41\x04\x48\x04\x42\ -\x04\x30\x04\x31\x04\x43\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4f\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x07\ -\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\x01\ -\x03\x00\x00\x00\xce\x04\x1c\x04\x30\x04\x41\x04\x48\x04\x42\x04\ -\x30\x04\x31\x04\x43\x04\x54\x00\x20\x04\x3e\x04\x31\x04\x40\x04\ -\x30\x04\x3d\x04\x56\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\ -\x3a\x04\x42\x04\x38\x00\x20\x04\x37\x00\x20\x04\x31\x04\x30\x04\ -\x37\x04\x3e\x04\x32\x04\x3e\x04\x57\x00\x20\x04\x42\x04\x3e\x04\ -\x47\x04\x3a\x04\x38\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\ -\x4c\x00\x2c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\ -\x40\x04\x38\x04\x32\x00\x27\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\ -\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x2c\x00\ -\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\x31\x04\x3c\x04\ -\x35\x04\x36\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x2c\x00\x20\x00\ -\x41\x00\x4c\x00\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\ -\x3a\x04\x3e\x04\x3f\x04\x56\x04\x4e\x04\x32\x04\x30\x04\x3d\x04\ -\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5c\x53\x63\x61\ -\x6c\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ -\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x72\x6f\x6d\x20\x61\x20\ -\x62\x61\x73\x65\x20\x70\x6f\x69\x6e\x74\x2e\x20\x43\x54\x52\x4c\ +\x66\x74\x5f\x44\x72\x61\x77\x69\x6e\x67\x01\x03\x00\x00\x00\x0e\ +\x00\x55\x00\x70\x00\x72\x00\x61\x00\x76\x00\x69\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\ +\x0a\x44\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\ +\x2e\x00\x55\x00\x70\x00\x72\x00\x61\x00\x76\x00\x75\x00\x6a\x00\ +\x65\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x69\x00\x76\x00\x6e\x00\ +\xed\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x17\x45\x64\x69\x74\x73\x20\x74\ +\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\ +\x03\x00\x00\x00\x16\x00\x43\x00\xed\x00\x6c\x00\x6f\x00\x76\x00\ +\xe1\x00\x20\x01\x0d\x00\xe1\x00\x72\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0b\x46\x69\x6e\x69\x73\x68\x20\x6c\x69\x6e\x65\ +\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\x69\x73\ +\x68\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x30\x00\x75\x00\x6b\x00\ +\x6f\x00\x6e\x01\x0d\x00\xed\x00\x20\x01\x0d\x00\xe1\x00\x72\x00\ +\x75\x00\x20\x00\x62\x00\x65\x00\x7a\x00\x20\x00\x75\x00\x7a\x00\ +\x61\x00\x76\x01\x59\x00\x65\x00\x6e\x00\xed\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x22\x46\x69\x6e\x69\x73\x68\x65\x73\x20\x61\x20\ +\x6c\x69\x6e\x65\x20\x77\x69\x74\x68\x6f\x75\x74\x20\x63\x6c\x6f\ +\x73\x69\x6e\x67\x20\x69\x74\x07\x00\x00\x00\x10\x44\x72\x61\x66\ +\x74\x5f\x46\x69\x6e\x69\x73\x68\x4c\x69\x6e\x65\x01\x03\x00\x00\ +\x00\x74\x00\x76\x00\x79\x00\x74\x00\x76\x00\x6f\x01\x59\x00\xed\ +\x00\x20\x01\x0d\x00\xe1\x00\x72\x00\x75\x00\x20\x00\x32\x00\x20\ +\x00\x62\x00\x6f\x00\x64\x00\x79\x00\x2e\x00\x20\x00\x43\x00\x54\ +\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x20\x00\x75\ +\x00\x63\x00\x68\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\xed\x00\x2c\ +\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x70\ +\x00\x72\x00\x6f\x00\x20\x00\x76\x00\x79\x00\x6e\x00\x75\x00\x63\ +\x00\x65\x00\x6e\x00\xed\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\ +\x74\x20\x6c\x69\x6e\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\ +\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\ +\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\x72\x61\ +\x66\x74\x5f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x08\x01\x0c\x00\ +\xe1\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4c\ +\x69\x6e\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4c\x69\ +\x6e\x65\x01\x03\x00\x00\x00\x0c\x00\x50\x01\x59\x00\x65\x00\x73\ +\x00\x75\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4d\x6f\ +\x76\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4d\x6f\x76\ +\x65\x01\x03\x00\x00\x00\xbe\x00\x50\x01\x59\x00\x65\x00\x73\x00\ +\x75\x00\x6e\x00\x65\x00\x20\x00\x76\x00\x79\x00\x62\x00\x72\x00\ +\x61\x00\x6e\x00\xe9\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x79\x00\x20\x00\x6d\x00\x65\x00\x7a\x00\x69\x00\ +\x20\x00\x32\x00\x20\x00\x62\x00\x6f\x00\x64\x00\x79\x00\x2e\x00\ +\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x72\x00\ +\x6f\x00\x20\x00\x70\x01\x59\x00\x69\x00\x63\x00\x68\x00\x79\x00\ +\x63\x00\x65\x00\x6e\x00\xed\x00\x2c\x00\x20\x00\x53\x00\x48\x00\ +\x49\x00\x46\x00\x54\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x20\x00\ +\x6f\x00\x6d\x00\x65\x00\x7a\x00\x65\x00\x6e\x00\xed\x00\x2c\x00\ +\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x20\x00\x6b\x00\x6f\x00\x70\x00\xed\x00\x72\x00\x6f\x00\x76\x00\ +\xe1\x00\x6e\x00\xed\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5a\x4d\ +\x6f\x76\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\x74\x77\x65\x65\ +\x6e\x20\x32\x20\x70\x6f\x69\x6e\x74\x73\x2e\x20\x43\x54\x52\x4c\ \x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\ \x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\ -\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0b\x44\x72\ -\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\x18\x00\ -\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x67\x00\ -\x72\x00\x6f\x00\x75\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0c\x53\x65\x6c\x65\x63\x74\x20\x67\x72\x6f\x75\x70\x07\x00\x00\ -\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x47\x72\ -\x6f\x75\x70\x01\x03\x00\x00\x00\x6e\x00\x53\x00\x65\x00\x6c\x00\ -\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\ -\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x74\x00\x68\x00\ -\x65\x00\x20\x00\x73\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x70\x00\ -\x61\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x61\x00\ -\x73\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x67\x00\ -\x72\x00\x6f\x00\x75\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x37\x53\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6f\x62\x6a\ -\x65\x63\x74\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x73\x61\ -\x6d\x65\x20\x70\x61\x72\x65\x6e\x74\x73\x20\x61\x73\x20\x74\x68\ -\x69\x73\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x11\x44\x72\x61\ +\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0a\x44\x72\ +\x61\x66\x74\x5f\x4d\x6f\x76\x65\x01\x03\x00\x00\x00\x0c\x00\x4f\ +\x00\x64\x00\x73\x00\x74\x00\x75\x00\x70\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x0c\x44\ +\x72\x61\x66\x74\x5f\x4f\x66\x66\x73\x65\x74\x01\x03\x00\x00\x00\ +\xa2\x00\x50\x00\x6f\x00\x73\x00\x75\x00\x6e\x00\x65\x00\x20\x00\ +\x61\x00\x6b\x00\x74\x00\x69\x00\x76\x00\x6e\x00\xed\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x2e\x00\x20\x00\ +\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x20\x00\x70\x01\x59\x00\x69\x00\x63\x00\x68\x00\x79\x00\x63\x00\ +\x65\x00\x6e\x00\xed\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\ +\x46\x00\x54\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x20\x00\x6f\x00\ +\x6d\x00\x65\x00\x7a\x00\x65\x00\x6e\x00\xed\x00\x2c\x00\x20\x00\ +\x41\x00\x4c\x00\x54\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x20\x00\ +\x6b\x00\x6f\x00\x70\x00\xed\x00\x72\x00\x6f\x00\x76\x00\xe1\x00\ +\x6e\x00\xed\x08\x00\x00\x00\x00\x06\x00\x00\x00\x48\x4f\x66\x66\ +\x73\x65\x74\x73\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\ +\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\ +\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\ +\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\ +\x4f\x66\x66\x73\x65\x74\x01\x03\x00\x00\x00\x2c\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\ +\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x16\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x70\x6f\x69\x6e\ +\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x0b\x44\x72\x61\ +\x66\x74\x5f\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x06\x00\x42\ +\x00\x6f\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x50\x6f\ +\x69\x6e\x74\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x50\x6f\ +\x69\x6e\x74\x01\x03\x00\x00\x00\x8e\x00\x56\x00\x79\x00\x74\x00\ +\x76\x00\xe1\x01\x59\x00\xed\x00\x20\x00\x70\x00\x72\x00\x61\x00\ +\x76\x00\x69\x00\x64\x00\x65\x00\x6c\x00\x6e\x00\xfd\x00\x20\x00\ +\x6d\x00\x6e\x00\x6f\x00\x68\x00\x6f\x00\xfa\x00\x68\x00\x65\x00\ +\x6c\x00\x6e\x00\xed\x00\x6b\x00\x2e\x00\x20\x00\x43\x00\x54\x00\ +\x52\x00\x4c\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x20\x00\x70\x01\ +\x59\x00\x69\x00\x63\x00\x68\x00\x79\x00\x63\x00\x65\x00\x6e\x00\ +\xed\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\ +\x20\x00\x70\x00\x72\x00\x6f\x00\x20\x00\x6f\x00\x6d\x00\x65\x00\ +\x7a\x00\x65\x00\x6e\x00\xed\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x3b\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x72\x65\x67\x75\x6c\ +\x61\x72\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x2e\x20\x43\x54\x52\x4c\ +\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\ +\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\ +\x0d\x44\x72\x61\x66\x74\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\x03\ +\x00\x00\x00\x18\x00\x4d\x00\x6e\x00\x6f\x00\x68\x00\x6f\x00\xfa\ +\x00\x68\x00\x65\x00\x6c\x00\x6e\x00\xed\x00\x6b\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x07\x50\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\ +\x00\x0d\x44\x72\x61\x66\x74\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\ +\x03\x00\x00\x00\x54\x00\x56\x00\x79\x00\x74\x00\x76\x00\x6f\x01\ +\x59\x00\xed\x00\x20\x00\x6f\x00\x62\x00\x64\x00\xe9\x00\x6c\x00\ +\x6e\x00\xed\x00\x6b\x00\x20\x00\x32\x00\x2d\x00\x62\x00\x6f\x00\ +\x64\x00\x79\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ +\x20\x00\x70\x00\x72\x00\x6f\x00\x20\x00\x75\x00\x63\x00\x68\x00\ +\x6f\x00\x70\x00\x65\x00\x6e\x00\xed\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x29\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x32\x2d\x70\ +\x6f\x69\x6e\x74\x20\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\x2e\x20\ +\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x07\x00\x00\x00\ +\x0f\x44\x72\x61\x66\x74\x5f\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\ +\x01\x03\x00\x00\x00\x10\x00\x4f\x00\x62\x00\x64\x00\xe9\x00\x6c\ +\x00\x6e\x00\xed\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x0f\x44\x72\ +\x61\x66\x74\x5f\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\ +\x00\x00\x0c\x00\x52\x00\x6f\x00\x74\x00\x61\x00\x63\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x6f\x74\x61\x74\x65\x07\ +\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\ +\x01\x03\x00\x00\x00\xa0\x00\x4f\x00\x74\x00\x6f\x01\x0d\x00\xed\ +\x00\x20\x00\x76\x00\x79\x00\x62\x00\x72\x00\x61\x00\x6e\x00\xe9\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x79\ +\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\ +\x00\x72\x00\x6f\x00\x20\x00\x70\x01\x59\x00\x69\x00\x63\x00\x68\ +\x00\x79\x00\x63\x00\x65\x00\x6e\x00\xed\x00\x2c\x00\x20\x00\x53\ +\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x70\x00\x72\x00\x6f\ +\x00\x20\x00\x6f\x00\x6d\x00\x65\x00\x7a\x00\x65\x00\x6e\x00\xed\ +\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x76\x00\x79\ +\x00\x74\x00\x76\x00\x6f\x01\x59\x00\xed\x00\x20\x00\x6b\x00\x6f\ +\x00\x70\x00\x69\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\ +\x52\x6f\x74\x61\x74\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x20\x43\x54\ +\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\ +\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\ +\x41\x4c\x54\x20\x63\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x6f\ +\x70\x79\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\ +\x61\x74\x65\x01\x03\x00\x00\x00\x1e\x00\x5a\x00\x6d\x01\x1b\x00\ +\x6e\x00\x61\x00\x20\x00\x76\x00\x65\x00\x6c\x00\x69\x00\x6b\x00\ +\x6f\x00\x73\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x05\x53\x63\x61\x6c\x65\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\ +\x5f\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\xde\x00\x5a\x00\x6d\ +\x01\x1b\x00\x6e\x00\xed\x00\x20\x00\x76\x00\x65\x00\x6c\x00\x69\ +\x00\x6b\x00\x6f\x00\x73\x00\x74\x00\x20\x00\x76\x00\x79\x00\x62\ +\x00\x72\x00\x61\x00\x6e\x00\xfd\x00\x63\x00\x68\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x01\x6f\x00\x20\x00\x7a\ +\x00\x65\x00\x20\x00\x7a\x00\xe1\x00\x6b\x00\x6c\x00\x61\x00\x64\ +\x00\x6e\x00\xed\x00\x68\x00\x6f\x00\x20\x00\x62\x00\x6f\x00\x64\ +\x00\x75\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\ +\x00\x70\x00\x72\x00\x6f\x00\x20\x00\x70\x01\x59\x00\x69\x00\x63\ +\x00\x68\x00\x79\x00\x63\x00\x65\x00\x6e\x00\xed\x00\x2c\x00\x20\ +\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x70\x00\x72\ +\x00\x6f\x00\x20\x00\x6f\x00\x6d\x00\x65\x00\x7a\x00\x65\x00\x6e\ +\x00\xed\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x70\ +\x00\x72\x00\x6f\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\xed\x00\x72\ +\x00\x6f\x00\x76\x00\xe1\x00\x6e\x00\xed\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x5c\x53\x63\x61\x6c\x65\x73\x20\x74\x68\x65\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x66\x72\x6f\x6d\x20\x61\x20\x62\x61\x73\x65\x20\x70\x6f\x69\x6e\ +\x74\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\ +\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\ +\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\ +\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\ +\x01\x03\x00\x00\x00\x1c\x00\x56\x00\x79\x00\x62\x00\x72\x00\x61\ +\x00\x74\x00\x20\x00\x73\x00\x6b\x00\x75\x00\x70\x00\x69\x00\x6e\ +\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x65\x6c\x65\ +\x63\x74\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x11\x44\x72\x61\ \x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x47\x72\x6f\x75\x70\x01\x03\ -\x00\x00\x00\x5a\x04\x12\x04\x38\x04\x31\x04\x56\x04\x40\x00\x20\ -\x04\x40\x04\x3e\x04\x31\x04\x3e\x04\x47\x04\x3e\x04\x57\x00\x20\ -\x04\x3f\x04\x3b\x04\x3e\x04\x49\x04\x38\x04\x3d\x04\x38\x00\x20\ -\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x41\x04\x42\x04\x32\x04\x3e\ -\x04\x40\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x33\x04\x35\ -\x04\x3e\x04\x3c\x04\x35\x04\x42\x04\x40\x04\x56\x04\x57\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x2c\x53\x65\x6c\x65\x63\x74\x20\x61\ -\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x20\x66\ -\x6f\x72\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\x20\x63\x72\x65\x61\ -\x74\x69\x6f\x6e\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\ -\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x1a\ -\x04\x12\x04\x38\x04\x31\x04\x56\x04\x40\x00\x20\x04\x3f\x04\x3b\ -\x04\x3e\x04\x49\x04\x38\x04\x3d\x04\x38\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0b\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x07\ -\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\ -\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x54\x00\x43\x00\x72\x00\ -\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x53\x00\x68\x00\ -\x61\x00\x70\x00\x65\x00\x20\x00\x32\x00\x44\x00\x20\x00\x76\x00\ -\x69\x00\x65\x00\x77\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ -\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x43\x72\x65\x61\x74\x65\x73\ -\x20\x53\x68\x61\x70\x65\x20\x32\x44\x20\x76\x69\x65\x77\x73\x20\ -\x6f\x66\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ -\x63\x74\x73\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\ -\x61\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\x1a\x00\ -\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x32\x00\x44\x00\ -\x20\x00\x76\x00\x69\x00\x65\x00\x77\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0d\x53\x68\x61\x70\x65\x20\x32\x44\x20\x76\x69\x65\x77\ -\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x61\x70\x65\ -\x32\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\x48\x04\x21\x04\x42\ -\x04\x32\x04\x3e\x04\x40\x04\x4e\x04\x54\x00\x20\x04\x30\x04\x3d\ -\x04\x3e\x04\x42\x04\x30\x04\x46\x04\x56\x04\x4e\x00\x2e\x00\x20\ -\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x04\x34\x04\x3b\x04\x4f\ -\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x00\x27\x04\x4f\x04\x37\ -\x04\x3a\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x43\x72\ -\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x6e\x6e\x6f\x74\x61\x74\ -\x69\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\ -\x70\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\x78\x74\ -\x01\x03\x00\x00\x00\x0a\x04\x22\x04\x35\x04\x3a\x04\x41\x04\x42\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\x65\x78\x74\x07\x00\ -\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\x78\x74\x01\x03\x00\ -\x00\x00\x42\x04\x1f\x04\x35\x04\x40\x04\x35\x04\x3a\x04\x3b\x04\ -\x4e\x04\x47\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x40\x04\ -\x35\x04\x36\x04\x38\x04\x3c\x04\x43\x00\x20\x04\x3a\x04\x3e\x04\ -\x3d\x04\x41\x04\x42\x04\x40\x04\x43\x04\x4e\x04\x32\x04\x30\x04\ -\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x54\ -\x6f\x67\x67\x6c\x65\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x69\x6f\ -\x6e\x20\x4d\x6f\x64\x65\x07\x00\x00\x00\x1c\x44\x72\x61\x66\x74\ -\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\ -\x69\x6f\x6e\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x6a\x04\x1f\x04\ -\x35\x04\x40\x04\x35\x04\x45\x04\x56\x04\x34\x00\x20\x04\x32\x00\ -\x20\x04\x40\x04\x35\x04\x36\x04\x38\x04\x3c\x00\x20\x04\x3a\x04\ -\x3e\x04\x3d\x04\x41\x04\x42\x04\x40\x04\x43\x04\x4e\x04\x32\x04\ -\x30\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\ -\x20\x04\x3d\x04\x30\x04\x41\x04\x42\x04\x43\x04\x3f\x04\x3d\x04\ -\x38\x04\x45\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\x04\ -\x42\x04\x56\x04\x32\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x2f\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\x65\x20\x43\x6f\x6e\ -\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x65\x20\x66\ -\x6f\x72\x20\x6e\x65\x78\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\ -\x07\x00\x00\x00\x1c\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\ -\x65\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x4d\x6f\x64\ -\x65\x01\x03\x00\x00\x00\x28\x00\x54\x00\x6f\x00\x67\x00\x67\x00\ -\x6c\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\ -\x6e\x00\x75\x00\x65\x00\x20\x00\x4d\x00\x6f\x00\x64\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x6f\x67\x67\x6c\x65\x20\ -\x63\x6f\x6e\x74\x69\x6e\x75\x65\x20\x4d\x6f\x64\x65\x07\x00\x00\ -\x00\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\ -\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x58\ -\x00\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x73\x00\x20\ -\x00\x74\x00\x68\x00\x65\x00\x20\x00\x43\x00\x6f\x00\x6e\x00\x74\ -\x00\x69\x00\x6e\x00\x75\x00\x65\x00\x20\x00\x4d\x00\x6f\x00\x64\ -\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x65\ -\x00\x78\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\ -\x00\x6e\x00\x64\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x2c\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\x65\x20\x43\x6f\ -\x6e\x74\x69\x6e\x75\x65\x20\x4d\x6f\x64\x65\x20\x66\x6f\x72\x20\ -\x6e\x65\x78\x74\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x2e\x07\x00\ -\x00\x00\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\ -\x6f\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\ -\x8c\x00\x53\x00\x77\x00\x61\x00\x70\x00\x73\x00\x20\x00\x64\x00\ -\x69\x00\x73\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x20\x00\x6d\x00\ -\x6f\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x73\x00\ -\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ -\x62\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\ -\x77\x00\x69\x00\x72\x00\x65\x00\x66\x00\x72\x00\x61\x00\x6d\x00\ -\x65\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x66\x00\x6c\x00\ -\x61\x00\x74\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x73\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x46\x53\x77\x61\x70\x73\x20\x64\x69\x73\ -\x70\x6c\x61\x79\x20\x6d\x6f\x64\x65\x20\x6f\x66\x20\x73\x65\x6c\ -\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\ -\x74\x77\x65\x65\x6e\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\ -\x61\x6e\x64\x20\x66\x6c\x61\x74\x6c\x69\x6e\x65\x73\x07\x00\x00\ -\x00\x17\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x44\x69\ -\x73\x70\x6c\x61\x79\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x26\x00\ -\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x64\x00\ -\x69\x00\x73\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x20\x00\x6d\x00\ -\x6f\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x54\ -\x6f\x67\x67\x6c\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x6d\x6f\ -\x64\x65\x07\x00\x00\x00\x17\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\ -\x67\x6c\x65\x44\x69\x73\x70\x6c\x61\x79\x4d\x6f\x64\x65\x01\x03\ -\x00\x00\x00\x0c\x00\x54\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x78\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x54\x72\x69\x6d\x65\x78\ -\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x54\x72\x69\x6d\x65\ -\x78\x01\x03\x00\x00\x01\x12\x00\x54\x00\x72\x00\x69\x00\x6d\x00\ -\x73\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\ -\x65\x00\x6e\x00\x64\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\ -\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\ -\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ -\x2c\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\ -\x72\x00\x75\x00\x64\x00\x65\x00\x73\x00\x20\x00\x73\x00\x69\x00\ -\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\ -\x65\x00\x73\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ -\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x73\x00\x2c\x00\x20\x00\ -\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x63\x00\x6f\x00\ -\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x73\x00\ -\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\ -\x65\x00\x6e\x00\x74\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\ -\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x74\x00\ -\x6f\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\ -\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x69\x00\x6e\x00\ -\x76\x00\x65\x00\x72\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x89\x54\x72\x69\x6d\x73\x20\x6f\x72\x20\x65\x78\x74\x65\ -\x6e\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ -\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x6f\x72\x20\x65\x78\x74\x72\ -\x75\x64\x65\x73\x20\x73\x69\x6e\x67\x6c\x65\x20\x66\x61\x63\x65\ -\x73\x2e\x20\x43\x54\x52\x4c\x20\x73\x6e\x61\x70\x73\x2c\x20\x53\ -\x48\x49\x46\x54\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x73\x20\ -\x74\x6f\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x73\x65\x67\x6d\x65\ -\x6e\x74\x20\x6f\x72\x20\x74\x6f\x20\x6e\x6f\x72\x6d\x61\x6c\x2c\ -\x20\x41\x4c\x54\x20\x69\x6e\x76\x65\x72\x74\x73\x07\x00\x00\x00\ -\x0c\x44\x72\x61\x66\x74\x5f\x54\x72\x69\x6d\x65\x78\x01\x03\x00\ -\x00\x00\x34\x04\x21\x04\x3a\x04\x30\x04\x41\x04\x43\x04\x32\x04\ -\x30\x04\x42\x04\x38\x00\x20\x04\x3e\x04\x41\x04\x42\x04\x30\x04\ -\x3d\x04\x3d\x04\x56\x04\x39\x00\x20\x04\x41\x04\x35\x04\x33\x04\ -\x3c\x04\x35\x04\x3d\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x11\x55\x6e\x64\x6f\x20\x6c\x61\x73\x74\x20\x73\x65\x67\x6d\x65\ -\x6e\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x55\x6e\x64\ -\x6f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x56\x04\x21\x04\x3a\x04\ -\x30\x04\x41\x04\x3e\x04\x32\x04\x43\x04\x54\x00\x20\x04\x3e\x04\ -\x41\x04\x42\x04\x30\x04\x3d\x04\x3d\x04\x56\x04\x39\x00\x20\x04\ -\x3d\x04\x30\x04\x3a\x04\x40\x04\x35\x04\x41\x04\x3b\x04\x35\x04\ -\x3d\x04\x38\x04\x39\x00\x20\x04\x41\x04\x35\x04\x33\x04\x3c\x04\ -\x35\x04\x3d\x04\x42\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\x56\x04\ -\x57\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x55\x6e\x64\x6f\x65\ +\x00\x00\x00\x6e\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\ +\x00\x73\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x77\x00\x69\ +\x00\x74\x00\x68\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\ +\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\ +\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x61\x00\x73\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\ +\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x53\x65\x6c\x65\ +\x63\x74\x73\x20\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x77\x69\x74\x68\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x70\x61\ +\x72\x65\x6e\x74\x73\x20\x61\x73\x20\x74\x68\x69\x73\x20\x67\x72\ +\x6f\x75\x70\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\ +\x6c\x65\x63\x74\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x58\x00\ +\x56\x00\x79\x00\x62\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\ +\x70\x00\x72\x00\x61\x00\x63\x00\x6f\x00\x76\x00\x6e\x00\xed\x00\ +\x20\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\x75\x00\x20\x00\ +\x70\x00\x72\x00\x6f\x00\x20\x00\x74\x00\x76\x00\x6f\x00\x72\x00\ +\x62\x00\x75\x00\x20\x00\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\x00\ +\x74\x00\x72\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2c\x53\x65\x6c\x65\x63\x74\x20\x61\x20\x77\x6f\x72\x6b\x69\x6e\ +\x67\x20\x70\x6c\x61\x6e\x65\x20\x66\x6f\x72\x20\x67\x65\x6f\x6d\ +\x65\x74\x72\x79\x20\x63\x72\x65\x61\x74\x69\x6f\x6e\x07\x00\x00\ +\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x50\x6c\ +\x61\x6e\x65\x01\x03\x00\x00\x00\x18\x00\x56\x00\xfd\x00\x62\x01\ +\x1b\x00\x72\x00\x20\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\ +\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x65\x6c\x65\x63\ +\x74\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\ +\x5f\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\ +\x00\x70\x00\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\ +\x00\x20\x00\x62\x00\x69\x00\x64\x00\x69\x00\x72\x00\x65\x00\x63\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x6c\x00\x79\ +\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\ +\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x61\ +\x00\x6e\x00\x64\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\x00\x63\ +\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x43\x6f\x6e\x76\ +\x65\x72\x74\x20\x62\x69\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x61\ +\x6c\x6c\x79\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x44\x72\x61\x66\ +\x74\x20\x61\x6e\x64\x20\x53\x6b\x65\x74\x63\x68\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\ +\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\x54\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\ +\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x32\x00\x44\ +\x00\x20\x00\x76\x00\x69\x00\x65\x00\x77\x00\x73\x00\x20\x00\x6f\ +\x00\x66\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\ +\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x43\x72\ +\x65\x61\x74\x65\x73\x20\x53\x68\x61\x70\x65\x20\x32\x44\x20\x76\ +\x69\x65\x77\x73\x20\x6f\x66\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x11\x44\x72\x61\ +\x66\x74\x5f\x53\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\ +\x00\x00\x00\x1a\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\ +\x00\x32\x00\x44\x00\x20\x00\x76\x00\x69\x00\x65\x00\x77\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x68\x61\x70\x65\x20\x32\x44\ +\x20\x76\x69\x65\x77\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\ +\x53\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\ +\x1a\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x53\x00\x6e\x00\ +\x61\x00\x70\x00\x20\x00\x42\x00\x61\x00\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0d\x53\x68\x6f\x77\x20\x53\x6e\x61\x70\x20\x42\ +\x61\x72\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x6f\ +\x77\x53\x6e\x61\x70\x42\x61\x72\x01\x03\x00\x00\x00\x30\x00\x53\ +\x00\x68\x00\x6f\x00\x77\x00\x73\x00\x20\x00\x44\x00\x72\x00\x61\ +\x00\x66\x00\x74\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\ +\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x18\x53\x68\x6f\x77\x73\x20\x44\x72\ +\x61\x66\x74\x20\x73\x6e\x61\x70\x20\x74\x6f\x6f\x6c\x62\x61\x72\ +\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x6f\x77\x53\ +\x6e\x61\x70\x42\x61\x72\x01\x03\x00\x00\x00\x46\x00\x56\x00\x79\ +\x00\x74\x00\x76\x00\x6f\x01\x59\x00\xed\x00\x20\x00\x61\x00\x6e\ +\x00\x6f\x00\x74\x00\x61\x00\x63\x00\x65\x00\x2e\x00\x20\x00\x43\ +\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x70\ +\x01\x59\x00\x69\x00\x63\x00\x68\x00\x79\x00\x63\x00\x65\x00\x6e\ +\x00\xed\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x6e\x20\x61\x6e\x6e\x6f\x74\x61\x74\x69\x6f\ +\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x07\ +\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\x78\x74\x01\x03\ +\x00\x00\x00\x08\x00\x54\x00\x65\x00\x78\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x54\x65\x78\x74\x07\x00\x00\x00\x0a\x44\ +\x72\x61\x66\x74\x5f\x54\x65\x78\x74\x01\x03\x00\x00\x00\x32\x00\ +\x50\x01\x59\x00\x65\x00\x70\x00\xed\x00\x6e\x00\xe1\x00\x20\x00\ +\x6b\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x01\ +\x0d\x00\x6e\x00\xed\x00\x20\x00\x72\x00\x65\x01\x7e\x00\x69\x00\ +\x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x54\x6f\x67\x67\x6c\ +\x65\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x69\x6f\x6e\x20\x4d\x6f\ +\x64\x65\x07\x00\x00\x00\x1c\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\ +\x67\x6c\x65\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x4d\ +\x6f\x64\x65\x01\x03\x00\x00\x00\x56\x00\x50\x01\x59\x00\x65\x00\ +\x70\x00\xed\x00\x6e\x00\xe1\x00\x20\x00\x72\x00\x65\x01\x7e\x00\ +\x69\x00\x6d\x00\x20\x00\x6b\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\ +\x72\x00\x75\x00\x6b\x00\x63\x00\x65\x00\x20\x00\x70\x00\x72\x00\ +\x6f\x00\x20\x00\x64\x00\x61\x00\x6c\x01\x61\x00\xed\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x2e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x54\x6f\x67\x67\x6c\x65\x73\ +\x20\x74\x68\x65\x20\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\ +\x6e\x20\x4d\x6f\x64\x65\x20\x66\x6f\x72\x20\x6e\x65\x78\x74\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x1c\x44\x72\x61\ +\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x73\x74\x72\x75\ +\x63\x74\x69\x6f\x6e\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x28\x00\ +\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x63\x00\ +\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x65\x00\x20\x00\ +\x4d\x00\x6f\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x14\x54\x6f\x67\x67\x6c\x65\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\ +\x20\x4d\x6f\x64\x65\x07\x00\x00\x00\x18\x44\x72\x61\x66\x74\x5f\ +\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x74\x69\x6e\x75\x65\x4d\x6f\ +\x64\x65\x01\x03\x00\x00\x00\x58\x00\x54\x00\x6f\x00\x67\x00\x67\ +\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x43\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x65\ +\x00\x20\x00\x4d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x66\x00\x6f\ +\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x78\x00\x74\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x73\x00\x2e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x54\x6f\x67\x67\x6c\x65\ +\x73\x20\x74\x68\x65\x20\x43\x6f\x6e\x74\x69\x6e\x75\x65\x20\x4d\ +\x6f\x64\x65\x20\x66\x6f\x72\x20\x6e\x65\x78\x74\x20\x63\x6f\x6d\ +\x6d\x61\x6e\x64\x73\x2e\x07\x00\x00\x00\x18\x44\x72\x61\x66\x74\ +\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x74\x69\x6e\x75\x65\x4d\ +\x6f\x64\x65\x01\x03\x00\x00\x00\x86\x00\x50\x01\x59\x00\x65\x00\ +\x70\x00\x6e\x00\x65\x00\x20\x00\x72\x00\x65\x01\x7e\x00\x69\x00\ +\x6d\x00\x20\x00\x7a\x00\x6f\x00\x62\x00\x72\x00\x61\x00\x7a\x00\ +\x65\x00\x6e\x00\xed\x00\x20\x00\x76\x00\x79\x00\x62\x00\x72\x00\ +\x61\x00\x6e\x00\xfd\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x01\x6f\x00\x20\x00\x6d\x00\x65\x00\ +\x7a\x00\x69\x00\x20\x00\x64\x00\x72\x00\xe1\x00\x74\x01\x1b\x00\ +\x6e\x00\xfd\x00\x6d\x00\x20\x00\x61\x00\x20\x00\x73\x00\x74\x00\ +\xed\x00\x6e\x00\x6f\x00\x76\x00\x61\x00\x6e\x00\xfd\x00\x6d\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x46\x53\x77\x61\x70\x73\x20\x64\ +\x69\x73\x70\x6c\x61\x79\x20\x6d\x6f\x64\x65\x20\x6f\x66\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x62\x65\x74\x77\x65\x65\x6e\x20\x77\x69\x72\x65\x66\x72\x61\x6d\ +\x65\x20\x61\x6e\x64\x20\x66\x6c\x61\x74\x6c\x69\x6e\x65\x73\x07\ +\x00\x00\x00\x17\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\ +\x44\x69\x73\x70\x6c\x61\x79\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\ +\x30\x00\x50\x01\x59\x00\x65\x00\x70\x00\x6e\x00\x6f\x00\x75\x00\ +\x74\x00\x20\x00\x72\x00\x65\x01\x7e\x00\x69\x00\x6d\x00\x20\x00\ +\x7a\x00\x6f\x00\x62\x00\x72\x00\x61\x00\x7a\x00\x65\x00\x6e\x00\ +\xed\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x54\x6f\x67\x67\x6c\ +\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x6d\x6f\x64\x65\x07\x00\ +\x00\x00\x17\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x44\ +\x69\x73\x70\x6c\x61\x79\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x16\ +\x00\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x47\ +\x00\x72\x00\x69\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ +\x54\x6f\x67\x67\x6c\x65\x20\x47\x72\x69\x64\x07\x00\x00\x00\x10\ +\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x47\x72\x69\x64\ +\x01\x03\x00\x00\x00\x38\x00\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\ +\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x67\x00\x69\x00\x64\ +\x00\x20\x00\x6f\x00\x6e\x00\x2f\x00\x6f\x00\x66\x00\x66\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1c\x54\x6f\x67\x67\x6c\x65\x73\x20\ +\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x67\x69\x64\x20\x6f\x6e\ +\x2f\x6f\x66\x66\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x54\ +\x6f\x67\x67\x6c\x65\x47\x72\x69\x64\x01\x03\x00\x00\x00\x16\x00\ +\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x73\x00\ +\x6e\x00\x61\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x54\ +\x6f\x67\x67\x6c\x65\x20\x73\x6e\x61\x70\x07\x00\x00\x00\x10\x44\ +\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x53\x6e\x61\x70\x01\ +\x03\x00\x00\x00\x38\x00\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\ +\x65\x00\x73\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\ +\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6f\x00\x6e\x00\ +\x20\x00\x6f\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x66\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1c\x54\x6f\x67\x67\x6c\x65\x73\x20\x44\ +\x72\x61\x66\x74\x20\x73\x6e\x61\x70\x20\x6f\x6e\x20\x6f\x72\x20\ +\x6f\x66\x66\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x54\x6f\ +\x67\x67\x6c\x65\x53\x6e\x61\x70\x01\x03\x00\x00\x00\x0c\x00\x54\ +\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x78\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x54\x72\x69\x6d\x65\x78\x07\x00\x00\x00\x0c\x44\ +\x72\x61\x66\x74\x5f\x54\x72\x69\x6d\x65\x78\x01\x03\x00\x00\x01\ +\x12\x00\x54\x00\x72\x00\x69\x00\x6d\x00\x73\x00\x20\x00\x6f\x00\ +\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\x65\x00\x6e\x00\x64\x00\ +\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\x00\x6f\x00\ +\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\x72\x00\x75\x00\x64\x00\ +\x65\x00\x73\x00\x20\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x6c\x00\ +\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x2e\x00\ +\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x73\x00\x6e\x00\ +\x61\x00\x70\x00\x73\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\ +\x46\x00\x54\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\ +\x72\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\x74\x00\ +\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x20\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x6e\x00\ +\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x2c\x00\x20\x00\x41\x00\ +\x4c\x00\x54\x00\x20\x00\x69\x00\x6e\x00\x76\x00\x65\x00\x72\x00\ +\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x89\x54\x72\x69\ +\x6d\x73\x20\x6f\x72\x20\x65\x78\x74\x65\x6e\x64\x73\x20\x74\x68\ +\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x2c\x20\x6f\x72\x20\x65\x78\x74\x72\x75\x64\x65\x73\x20\x73\ +\x69\x6e\x67\x6c\x65\x20\x66\x61\x63\x65\x73\x2e\x20\x43\x54\x52\ +\x4c\x20\x73\x6e\x61\x70\x73\x2c\x20\x53\x48\x49\x46\x54\x20\x63\ +\x6f\x6e\x73\x74\x72\x61\x69\x6e\x73\x20\x74\x6f\x20\x63\x75\x72\ +\x72\x65\x6e\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\x72\x20\ +\x74\x6f\x20\x6e\x6f\x72\x6d\x61\x6c\x2c\x20\x41\x4c\x54\x20\x69\ +\x6e\x76\x65\x72\x74\x73\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\ +\x5f\x54\x72\x69\x6d\x65\x78\x01\x03\x00\x00\x00\x38\x00\x56\x00\ +\x72\x00\xe1\x00\x74\x00\x69\x00\x74\x00\x20\x00\x7a\x00\x70\x01\ +\x1b\x00\x74\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x6c\x00\x65\x00\ +\x64\x00\x6e\x00\xed\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x55\ +\x6e\x64\x6f\x20\x6c\x61\x73\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\ +\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x55\x6e\x64\x6f\x4c\ +\x69\x6e\x65\x01\x03\x00\x00\x00\x68\x00\x56\x00\x72\x00\xe1\x00\ +\x74\x00\xed\x00\x20\x00\x7a\x00\x70\x01\x1b\x00\x74\x00\x20\x00\ +\x70\x00\x6f\x00\x73\x00\x6c\x00\x65\x00\x64\x00\x6e\x00\xed\x00\ +\x20\x00\x6e\x00\x61\x00\x6b\x00\x72\x00\x65\x00\x73\x00\x6c\x00\ +\x65\x00\x6e\x00\xfd\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x20\x00\x6b\x00\x72\x00\x65\x00\x73\x00\ +\x6c\x00\x65\x00\x6e\x00\xe9\x00\x20\x01\x0d\x00\xe1\x00\x72\x00\ +\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x55\x6e\x64\x6f\x65\ \x73\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x64\x72\x61\x77\x6e\ \x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\ \x6c\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\ \x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x55\x6e\x64\x6f\x4c\ -\x69\x6e\x65\x01\x03\x00\x00\x00\xe0\x04\x1e\x04\x31\x00\x27\x04\ -\x54\x04\x34\x04\x3d\x04\x30\x04\x42\x04\x38\x00\x20\x04\x3e\x04\ -\x31\x04\x40\x04\x30\x04\x3d\x04\x56\x00\x20\x04\x3e\x04\x31\x00\ -\x27\x04\x54\x04\x3a\x04\x42\x04\x38\x00\x20\x04\x32\x00\x20\x04\ -\x3e\x04\x34\x04\x38\x04\x3d\x00\x2c\x00\x20\x04\x30\x04\x31\x04\ -\x3e\x00\x20\x04\x3f\x04\x35\x04\x40\x04\x35\x04\x42\x04\x32\x04\ -\x3e\x04\x40\x04\x38\x04\x42\x04\x38\x00\x20\x04\x37\x04\x30\x04\ -\x3c\x04\x3a\x04\x3d\x04\x35\x04\x3d\x04\x56\x00\x20\x04\x3d\x04\ -\x30\x04\x3f\x04\x40\x04\x4f\x04\x3c\x04\x3d\x04\x56\x00\x20\x04\ -\x32\x00\x20\x04\x37\x04\x30\x04\x3a\x04\x40\x04\x43\x04\x33\x04\ -\x3b\x04\x35\x04\x3d\x04\x56\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\ -\x35\x04\x40\x04\x45\x04\x3d\x04\x56\x00\x2c\x00\x20\x04\x30\x04\ -\x31\x04\x3e\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x34\x04\ -\x3d\x04\x30\x04\x42\x04\x38\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\ -\x35\x04\x40\x04\x45\x04\x3d\x04\x56\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x5d\x4a\x6f\x69\x6e\x73\x20\x74\x68\x65\x20\x73\x65\x6c\ -\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\ -\x74\x6f\x20\x6f\x6e\x65\x2c\x20\x6f\x72\x20\x63\x6f\x6e\x76\x65\ -\x72\x74\x73\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x73\ -\x20\x74\x6f\x20\x66\x69\x6c\x6c\x65\x64\x20\x66\x61\x63\x65\x73\ -\x2c\x20\x6f\x72\x20\x75\x6e\x69\x74\x65\x20\x66\x61\x63\x65\x73\ -\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x55\x70\x67\x72\x61\ -\x64\x65\x01\x03\x00\x00\x00\x12\x04\x1e\x04\x3d\x04\x3e\x04\x32\ -\x04\x3b\x04\x35\x04\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x07\x55\x70\x67\x72\x61\x64\x65\x07\x00\x00\x00\x0d\ -\x44\x72\x61\x66\x74\x5f\x55\x70\x67\x72\x61\x64\x65\x01\x03\x00\ -\x00\x00\xac\x04\x1c\x04\x30\x04\x3b\x04\x4e\x04\x54\x00\x20\x04\ -\x34\x04\x40\x04\x56\x04\x42\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\ -\x34\x04\x35\x04\x3a\x04\x56\x04\x3b\x04\x4c\x04\x3a\x04\x3e\x04\ -\x45\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x30\x04\x45\x00\ -\x2e\x00\x20\x04\x12\x04\x38\x04\x3a\x04\x3e\x04\x40\x04\x38\x04\ -\x41\x04\x42\x04\x3e\x04\x32\x04\x43\x04\x39\x04\x42\x04\x35\x00\ -\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x04\x34\x04\x3b\x04\ -\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x00\x27\x04\x4f\x04\ -\x37\x04\x3a\x04\x38\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\ -\x46\x00\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\ -\x31\x04\x3c\x04\x35\x04\x36\x04\x35\x04\x3d\x04\x3d\x04\x4f\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x3f\x43\x72\x65\x61\x74\x65\x73\ -\x20\x61\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\x70\x6f\x69\x6e\ -\x74\x20\x77\x69\x72\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\ -\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\ -\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\x72\x61\ -\x66\x74\x5f\x57\x69\x72\x65\x01\x03\x00\x00\x00\x08\x04\x14\x04\ -\x40\x04\x56\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\ -\x69\x72\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x57\x69\ -\x72\x65\x01\x03\x00\x00\x00\x42\x00\x43\x00\x6f\x00\x6e\x00\x76\ -\x00\x65\x00\x72\x00\x74\x00\x73\x00\x20\x00\x62\x00\x65\x00\x74\ -\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x57\x00\x69\x00\x72\ -\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x42\x00\x53\ -\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x21\x43\x6f\x6e\x76\x65\x72\x74\x73\x20\x62\x65\x74\ -\x77\x65\x65\x6e\x20\x57\x69\x72\x65\x20\x61\x6e\x64\x20\x42\x53\ -\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x13\x44\x72\x61\x66\x74\x5f\ -\x57\x69\x72\x65\x54\x6f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\ -\x00\x00\x1e\x00\x57\x00\x69\x00\x72\x00\x65\x00\x20\x00\x74\x00\ -\x6f\x00\x20\x00\x42\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\ -\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x57\x69\x72\x65\x20\ -\x74\x6f\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x13\x44\ -\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x54\x6f\x42\x53\x70\x6c\x69\ -\x6e\x65\x01\x03\x00\x00\x00\x0e\x00\x41\x00\x6c\x00\x74\x00\x20\ -\x00\x6d\x00\x6f\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ -\x41\x6c\x74\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\ -\x41\x00\x6c\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\x74\x00\ -\x65\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x50\x00\x61\x00\ -\x74\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x73\x00\x20\x00\x6c\x00\ -\x6f\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x1f\x41\x6c\x74\x65\x72\x6e\x61\x74\x65\ -\x20\x53\x56\x47\x20\x50\x61\x74\x74\x65\x72\x6e\x73\x20\x6c\x6f\ -\x63\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5a\x00\x41\ -\x00\x6c\x00\x77\x00\x61\x00\x79\x00\x73\x00\x20\x00\x73\x00\x6e\ -\x00\x61\x00\x70\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x6f\x00\x62\ -\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x28\x00\x64\ -\x00\x69\x00\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x73\ -\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x20\ -\x00\x6b\x00\x65\x00\x79\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x2d\x41\x6c\x77\x61\x79\x73\x20\x73\x6e\x61\x70\x20\x74\x6f\ -\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x28\x64\x69\x73\x61\x62\x6c\ -\x65\x20\x73\x6e\x61\x70\x20\x6d\x6f\x64\x20\x6b\x65\x79\x29\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x0a\x00\x41\x00\x72\x00\x69\x00\x61\x00\ -\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x72\x69\x61\x6c\ +\x69\x6e\x65\x01\x03\x00\x00\x00\xca\x00\x53\x00\x70\x00\x6f\x00\ +\x6a\x00\x75\x00\x6a\x00\x65\x00\x20\x00\x76\x00\x79\x00\x62\x00\ +\x72\x00\x61\x00\x6e\x00\xe9\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x79\x00\x20\x00\x64\x00\x6f\x00\x20\x00\ +\x6a\x00\x65\x00\x64\x00\x6e\x00\x6f\x00\x68\x00\x6f\x00\x2c\x00\ +\x20\x00\x6e\x00\x65\x00\x62\x00\x6f\x00\x20\x00\x70\x01\x59\x00\ +\x65\x00\x76\x00\x65\x00\x64\x00\x65\x00\x20\x00\x75\x00\x7a\x00\ +\x61\x00\x76\x01\x59\x00\x65\x00\x6e\x00\xe9\x00\x20\x00\x6f\x00\ +\x62\x00\x72\x00\x79\x00\x73\x00\x79\x00\x20\x00\x6e\x00\x61\x00\ +\x20\x00\x70\x00\x6c\x00\x6e\x00\xe9\x00\x20\x00\x70\x00\x6c\x00\ +\x6f\x00\x63\x00\x68\x00\x79\x00\x2c\x00\x20\x00\x6e\x00\x65\x00\ +\x62\x00\x6f\x00\x20\x00\x73\x00\x6a\x00\x65\x00\x64\x00\x6e\x00\ +\x6f\x00\x74\x00\xed\x00\x20\x00\x70\x00\x6c\x00\x6f\x00\x63\x00\ +\x68\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x4a\x6f\x69\ +\x6e\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\x6f\x6e\x65\ +\x2c\x20\x6f\x72\x20\x63\x6f\x6e\x76\x65\x72\x74\x73\x20\x63\x6c\ +\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x73\x20\x74\x6f\x20\x66\x69\ +\x6c\x6c\x65\x64\x20\x66\x61\x63\x65\x73\x2c\x20\x6f\x72\x20\x75\ +\x6e\x69\x74\x65\x20\x66\x61\x63\x65\x73\x07\x00\x00\x00\x0d\x44\ +\x72\x61\x66\x74\x5f\x55\x70\x67\x72\x61\x64\x65\x01\x03\x00\x00\ +\x00\x16\x00\x41\x00\x6b\x00\x74\x00\x75\x00\x61\x00\x6c\x00\x69\ +\x00\x7a\x00\x61\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x07\x55\x70\x67\x72\x61\x64\x65\x07\x00\x00\x00\x0d\x44\x72\ +\x61\x66\x74\x5f\x55\x70\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\ +\x98\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\ +\x20\x00\x61\x00\x20\x00\x6d\x00\x75\x00\x6c\x00\x74\x00\x69\x00\ +\x70\x00\x6c\x00\x65\x00\x2d\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\ +\x74\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x57\x00\ +\x69\x00\x72\x00\x65\x00\x20\x00\x28\x00\x44\x00\x57\x00\x69\x00\ +\x72\x00\x65\x00\x29\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\ +\x4c\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x6e\x00\x61\x00\ +\x70\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\ +\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\ +\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x4c\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x6d\x75\x6c\ +\x74\x69\x70\x6c\x65\x2d\x70\x6f\x69\x6e\x74\x20\x44\x72\x61\x66\ +\x74\x57\x69\x72\x65\x20\x28\x44\x57\x69\x72\x65\x29\x2e\x20\x43\ +\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\ +\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\ +\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x01\x03\ +\x00\x00\x00\x0a\x00\x44\x00\x57\x00\x69\x00\x72\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x44\x57\x69\x72\x65\x07\x00\x00\ +\x00\x0a\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x01\x03\x00\x00\ +\x00\x42\x00\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\ +\x00\x73\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\ +\x00\x6e\x00\x20\x00\x57\x00\x69\x00\x72\x00\x65\x00\x20\x00\x61\ +\x00\x6e\x00\x64\x00\x20\x00\x42\x00\x53\x00\x70\x00\x6c\x00\x69\ +\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x43\x6f\ +\x6e\x76\x65\x72\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x57\ +\x69\x72\x65\x20\x61\x6e\x64\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\ +\x00\x00\x00\x13\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x54\x6f\ +\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x1e\x00\x57\x00\ +\x69\x00\x72\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x42\x00\ +\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0f\x57\x69\x72\x65\x20\x74\x6f\x20\x42\x53\x70\ +\x6c\x69\x6e\x65\x07\x00\x00\x00\x13\x44\x72\x61\x66\x74\x5f\x57\ +\x69\x72\x65\x54\x6f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\ +\x00\x0e\x00\x41\x00\x6c\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x41\x6c\x74\x20\x6d\x6f\ +\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x41\x00\x6c\x00\x74\x00\ +\x65\x00\x72\x00\x6e\x00\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\ +\x56\x00\x47\x00\x20\x00\x50\x00\x61\x00\x74\x00\x74\x00\x65\x00\ +\x72\x00\x6e\x00\x73\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1f\x41\x6c\x74\x65\x72\x6e\x61\x74\x65\x20\x53\x56\x47\x20\x50\ +\x61\x74\x74\x65\x72\x6e\x73\x20\x6c\x6f\x63\x61\x74\x69\x6f\x6e\ \x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ \x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x20\x04\x17\x04\x32\x04\x3e\x04\x40\ -\x04\x3e\x04\x42\x04\x3d\x04\x56\x04\x39\x00\x20\x04\x41\x04\x3b\ -\x04\x35\x04\x48\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x35\x07\x00\x00\ +\x66\x74\x01\x03\x00\x00\x00\x16\x00\x41\x00\x6c\x00\x77\x00\x61\ +\x00\x79\x00\x73\x00\x20\x00\x73\x00\x68\x00\x6f\x00\x77\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0b\x41\x6c\x77\x61\x79\x73\x20\x73\ +\x68\x6f\x77\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5a\x00\x41\x00\x6c\x00\ +\x77\x00\x61\x00\x79\x00\x73\x00\x20\x00\x73\x00\x6e\x00\x61\x00\ +\x70\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x28\x00\x64\x00\x69\x00\ +\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x73\x00\x6e\x00\ +\x61\x00\x70\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x20\x00\x6b\x00\ +\x65\x00\x79\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x41\ +\x6c\x77\x61\x79\x73\x20\x73\x6e\x61\x70\x20\x74\x6f\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x28\x64\x69\x73\x61\x62\x6c\x65\x20\x73\ +\x6e\x61\x70\x20\x6d\x6f\x64\x20\x6b\x65\x79\x29\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0a\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x41\x72\x69\x61\x6c\x07\x00\x00\ \x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ \x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x20\x04\x17\x04\x32\x04\x3e\x04\x40\x04\x3e\x04\ -\x42\x04\x3d\x04\x56\x04\x39\x00\x20\x04\x41\x04\x3b\x04\x35\x04\ -\x48\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\ -\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x37\x07\x00\x00\x00\x1d\x47\ +\x03\x00\x00\x00\x20\x00\x5a\x00\x70\x01\x1b\x00\x74\x00\x6e\x00\ +\xe9\x00\x20\x00\x6c\x00\x6f\x00\x6d\x00\xed\x00\x74\x00\x6b\x00\ +\x6f\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\ +\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x35\x07\x00\x00\x00\x1d\x47\ \x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ \x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x20\x04\x17\x04\x32\x04\x3e\x04\x40\x04\x3e\x04\x42\x04\x3d\ -\x04\x56\x04\x39\x00\x20\x04\x41\x04\x3b\x04\x35\x04\x48\x00\x20\ -\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\ -\x73\x6c\x61\x73\x68\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x00\x20\x00\x5a\x00\x70\x01\x1b\x00\x74\x00\x6e\x00\xe9\x00\x20\ +\x00\x6c\x00\x6f\x00\x6d\x00\xed\x00\x74\x00\x6b\x00\x6f\x00\x20\ +\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\ +\x73\x6c\x61\x73\x68\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ \x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x7e\x00\ -\x43\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x20\x00\x74\x00\x68\x00\ -\x69\x00\x73\x00\x20\x00\x69\x00\x66\x00\x20\x00\x79\x00\x6f\x00\ -\x75\x00\x20\x00\x77\x00\x61\x00\x6e\x00\x74\x00\x20\x00\x74\x00\ -\x68\x00\x65\x00\x20\x00\x61\x00\x72\x00\x65\x00\x61\x00\x73\x00\ -\x20\x00\x28\x00\x33\x00\x44\x00\x20\x00\x66\x00\x61\x00\x63\x00\ -\x65\x00\x73\x00\x29\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\ -\x65\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ -\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x2e\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x3f\x43\x68\x65\x63\x6b\x20\x74\x68\x69\ -\x73\x20\x69\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x68\ -\x65\x20\x61\x72\x65\x61\x73\x20\x28\x33\x44\x20\x66\x61\x63\x65\ -\x73\x29\x20\x74\x6f\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\ -\x64\x20\x74\x6f\x6f\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\ +\x5a\x00\x70\x01\x1b\x00\x74\x00\x6e\x00\xe9\x00\x20\x00\x6c\x00\ +\x6f\x00\x6d\x00\xed\x00\x74\x00\x6b\x00\x6f\x00\x20\x00\x39\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\ +\x73\x68\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x74\x00\x5a\x00\x61\ +\x01\x61\x00\x6b\x00\x72\x00\x74\x00\x6e\x01\x1b\x00\x74\x00\x65\ +\x00\x20\x00\x70\x00\x6f\x00\x6b\x00\x75\x00\x64\x00\x20\x00\x63\ +\x00\x68\x00\x63\x00\x65\x00\x74\x00\x65\x00\x20\x00\x70\x00\x6c\ +\x00\x6f\x00\x63\x00\x68\x00\x79\x00\x20\x00\x28\x00\x33\x00\x44\ +\x00\x20\x00\x70\x00\x6c\x00\x6f\x00\x63\x00\x68\x00\x79\x00\x29\ +\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x6f\x00\x76\ +\x00\x61\x00\x74\x00\x20\x00\x74\x00\x61\x00\x6b\x00\xe9\x00\x2e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3f\x43\x68\x65\x63\x6b\x20\ +\x74\x68\x69\x73\x20\x69\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\ +\x20\x74\x68\x65\x20\x61\x72\x65\x61\x73\x20\x28\x33\x44\x20\x66\ +\x61\x63\x65\x73\x29\x20\x74\x6f\x20\x62\x65\x20\x69\x6d\x70\x6f\ +\x72\x74\x65\x64\x20\x74\x6f\x6f\x2e\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\xa8\x00\x54\x00\x6f\x00\x74\x00\x6f\x00\x20\x00\x7a\x00\x61\x01\ +\x61\x00\x6b\x00\x72\x00\x74\x00\x6e\x01\x1b\x00\x74\x00\x65\x00\ +\x2c\x00\x20\x00\x70\x00\x6f\x00\x6b\x00\x75\x00\x64\x00\x20\x00\ +\x63\x00\x68\x00\x63\x00\x65\x00\x74\x00\x65\x00\x20\x00\x6e\x00\ +\x65\x00\x70\x00\x6f\x00\x6a\x00\x6d\x00\x65\x00\x6e\x00\x6f\x00\ +\x76\x00\x61\x00\x6e\x00\xfd\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\ +\x6b\x00\x20\x00\x28\x00\x70\x00\x6f\x01\x0d\x00\xe1\x00\x74\x00\ +\x65\x01\x0d\x00\x6e\x00\xed\x00\x20\x00\x2a\x00\x29\x00\x20\x00\ +\x62\x00\x75\x00\x64\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x00\x6f\x00\x76\x00\xe1\x00\x6e\x00\x6f\x00\ +\x20\x00\x74\x00\x61\x00\x6b\x00\xe9\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x53\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\ +\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x68\x65\x20\x6e\x6f\ +\x6e\x2d\x6e\x61\x6d\x65\x64\x20\x62\x6c\x6f\x63\x6b\x73\x20\x28\ +\x62\x65\x67\x69\x6e\x6e\x69\x6e\x67\x20\x77\x69\x74\x68\x20\x61\ +\x20\x2a\x29\x20\x74\x6f\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\ +\x65\x64\x20\x74\x6f\x6f\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ \x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa6\x00\x43\ -\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x20\x00\x74\x00\x68\x00\x69\ -\x00\x73\x00\x20\x00\x69\x00\x66\x00\x20\x00\x79\x00\x6f\x00\x75\ -\x00\x20\x00\x77\x00\x61\x00\x6e\x00\x74\x00\x20\x00\x74\x00\x68\ -\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x6e\x00\x61\ -\x00\x6d\x00\x65\x00\x64\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x63\ -\x00\x6b\x00\x73\x00\x20\x00\x28\x00\x62\x00\x65\x00\x67\x00\x69\ -\x00\x6e\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x77\x00\x69\ -\x00\x74\x00\x68\x00\x20\x00\x61\x00\x20\x00\x2a\x00\x29\x00\x20\ -\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x65\x00\x20\x00\x69\x00\x6d\ -\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x64\x00\x20\x00\x74\ -\x00\x6f\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\x43\x68\ -\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x79\x6f\x75\x20\ -\x77\x61\x6e\x74\x20\x74\x68\x65\x20\x6e\x6f\x6e\x2d\x6e\x61\x6d\ -\x65\x64\x20\x62\x6c\x6f\x63\x6b\x73\x20\x28\x62\x65\x67\x69\x6e\ -\x6e\x69\x6e\x67\x20\x77\x69\x74\x68\x20\x61\x20\x2a\x29\x20\x74\ -\x6f\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\ -\x6f\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x04\x1a\x04\x3e\x04\x3b\x04\ -\x3e\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\ -\x69\x72\x63\x6c\x65\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x04\ -\x1a\x04\x3e\x04\x3b\x04\x3e\x00\x20\x00\x37\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x37\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x0c\x04\x1a\x04\x3e\x04\x3b\x04\x3e\x00\x20\x00\ -\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x69\x72\x63\x6c\ -\x65\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x48\x04\x17\x04\x56\x04\ -\x41\x04\x42\x04\x30\x04\x32\x04\x3b\x04\x35\x04\x3d\x04\x3d\x04\ -\x4f\x00\x20\x04\x3a\x04\x3e\x04\x3b\x04\x4c\x04\x3e\x04\x40\x04\ -\x43\x00\x20\x04\x37\x00\x20\x04\x42\x04\x3e\x04\x32\x04\x49\x04\ -\x38\x04\x3d\x04\x3e\x04\x4e\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\ -\x56\x04\x57\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x43\x6f\x6c\ -\x6f\x72\x20\x6d\x61\x70\x70\x65\x64\x20\x74\x6f\x20\x6c\x69\x6e\ -\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\x04\x24\ -\x04\x30\x04\x39\x04\x3b\x00\x20\x04\x41\x04\x3f\x04\x56\x04\x32\ -\x04\x41\x04\x42\x04\x30\x04\x32\x04\x3b\x04\x35\x04\x3d\x04\x3d\ -\x04\x4f\x00\x20\x04\x3a\x04\x3e\x04\x3b\x04\x4c\x04\x3e\x04\x40\ -\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x43\x6f\x6c\x6f\ -\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x1a\x00\x43\x00\x6f\x00\x6e\x00\x73\x00\x74\ -\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x6d\x00\x6f\x00\x64\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x73\x74\x72\ -\x61\x69\x6e\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x04\ -\x1a\x04\x3e\x04\x3d\x04\x41\x04\x42\x04\x40\x04\x43\x04\x3a\x04\ -\x46\x04\x56\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\ -\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x4b\ +\x00\x72\x00\x75\x00\x68\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x35\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0c\x00\x4b\x00\x72\x00\x75\x00\x68\x00\x20\x00\x37\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\ +\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x4b\x00\x72\x00\x75\ +\x00\x68\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\ +\x43\x69\x72\x63\x6c\x65\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\ +\x00\x42\x00\x61\x00\x72\x00\x76\x00\x79\x00\x20\x00\x6d\x00\x61\ +\x00\x70\x00\x6f\x00\x76\x00\x61\x00\x6e\x00\xe9\x00\x20\x00\x6e\ +\x00\x61\x00\x20\x01\x61\x00\xed\x01\x59\x00\x6b\x00\x75\x00\x20\ +\x01\x0d\x00\xe1\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x19\x43\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x65\x64\x20\x74\ +\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\ \x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ \x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x22\x04\x1a\x04\x3e\x04\x3b\x04\x56\x04\x40\x00\x20\x04\ -\x3a\x04\x3e\x04\x3d\x04\x41\x04\x42\x04\x40\x04\x43\x04\x3a\x04\ -\x46\x04\x56\x04\x57\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x43\ -\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x63\x6f\x6c\x6f\ -\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x43\x00\x6f\x00\x6e\x00\ -\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ -\x6e\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x20\x00\ -\x6e\x00\x61\x00\x6d\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x17\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x67\x72\ -\x6f\x75\x70\x20\x6e\x61\x6d\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x00\x00\x2a\x00\x53\x00\x6f\x00\x75\x00\x62\x00\x6f\x00\x72\x00\ +\x20\x00\x6d\x00\x61\x00\x70\x00\x6f\x00\x76\x00\xe1\x00\x6e\x00\ +\xed\x00\x20\x00\x62\x00\x61\x00\x72\x00\x65\x00\x76\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x12\x43\x6f\x6c\x6f\x72\x20\x6d\x61\x70\ +\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x1a\x00\x43\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\ +\x69\x00\x6e\x00\x20\x00\x6d\x00\x6f\x00\x64\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0d\x43\x6f\x6e\x73\x74\x72\x61\x69\x6e\x20\x6d\ +\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x4b\x00\x6f\x00\x6e\ +\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x63\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x6f\x6e\x73\x74\x72\x75\x63\ +\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x42\x00\x61\ +\x00\x72\x00\x76\x00\x61\x00\x20\x00\x6b\x00\x6f\x00\x6e\x00\x73\ +\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x63\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x12\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\ +\x6f\x6e\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\ \x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ \x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\ -\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x70\ -\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\ -\x00\x63\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ -\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x43\x72\x65\x61\ -\x74\x65\x20\x70\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\ -\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x04\x1f\x04\ -\x30\x04\x40\x04\x30\x04\x3c\x04\x35\x04\x42\x04\x40\x04\x38\x00\ -\x20\x00\x44\x00\x58\x00\x46\x00\x20\x04\x44\x04\x3e\x04\x40\x04\ -\x3c\x04\x30\x04\x42\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x00\x4e\x00\xe1\x00\x7a\x00\x65\x00\x76\x00\x20\x00\x6b\x00\x6f\ +\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x01\x0d\x00\x6e\ +\x00\xed\x00\x20\x00\x73\x00\x6b\x00\x75\x00\x70\x00\x69\x00\x6e\ +\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\x6f\x6e\x73\ +\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x67\x72\x6f\x75\x70\x20\x6e\ +\x61\x6d\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x43\x00\x72\x00\ +\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\x6b\x00\x65\x00\ +\x74\x00\x63\x00\x68\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x43\x72\x65\x61\x74\x65\x20\x53\x6b\x65\x74\x63\x68\ +\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x00\x56\x00\x79\x00\x74\ +\x00\x76\x00\x6f\x01\x59\x00\x69\x00\x74\x00\x20\x00\x70\x00\x61\ +\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x63\ +\x00\x6b\x00\xe9\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x43\x72\ +\x65\x61\x74\x65\x20\x70\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\ +\x4d\x00\x6f\x01\x7e\x00\x6e\x00\x6f\x00\x73\x00\x74\x00\x69\x00\ +\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\xe1\x00\x74\x00\x75\x00\ +\x20\x00\x44\x00\x58\x00\x46\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x12\x44\x58\x46\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\ \x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ \x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x04\x21\x04\x42\x04\ -\x30\x04\x3d\x04\x34\x04\x30\x04\x40\x04\x42\x04\x3d\x04\x38\x04\ -\x39\x00\x20\x04\x3a\x04\x3e\x04\x3b\x04\x56\x04\x40\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0d\x44\x65\x66\x61\x75\x6c\x74\x20\x63\ -\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x50\x04\x21\x04\x42\ -\x04\x30\x04\x3d\x04\x34\x04\x30\x04\x40\x04\x42\x04\x3d\x04\x30\ -\x00\x20\x04\x32\x04\x38\x04\x41\x04\x3e\x04\x42\x04\x30\x00\x20\ -\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x42\x04\x35\x04\x3a\x04\x41\ -\x04\x42\x04\x43\x00\x20\x04\x42\x04\x30\x00\x20\x04\x40\x04\x3e\ -\x04\x37\x04\x3c\x04\x56\x04\x40\x04\x56\x04\x32\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x27\x44\x65\x66\x61\x75\x6c\x74\x20\x68\x65\ -\x69\x67\x68\x74\x20\x66\x6f\x72\x20\x74\x65\x78\x74\x73\x20\x61\ -\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x30\x04\x21\x04\x42\x04\x30\x04\x3d\x04\x34\x04\ -\x30\x04\x40\x04\x42\x04\x3d\x04\x30\x00\x20\x04\x42\x04\x3e\x04\ -\x32\x04\x49\x04\x38\x04\x3d\x04\x30\x00\x20\x04\x3b\x04\x56\x04\ -\x3d\x04\x56\x04\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\ -\x65\x66\x61\x75\x6c\x74\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x56\x00\xfd\x00\ +\x63\x00\x68\x00\x6f\x00\x7a\x00\xed\x00\x20\x00\x62\x00\x61\x00\ +\x72\x00\x76\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x44\ +\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x42\x00\x56\x00\xfd\x00\x63\x00\x68\x00\x6f\x00\x7a\ +\x00\xed\x00\x20\x00\x76\x00\xfd\x01\x61\x00\x6b\x00\x75\x00\x20\ +\x00\x70\x00\x72\x00\x6f\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\ +\x00\x79\x00\x20\x00\x61\x00\x20\x00\x72\x00\x6f\x00\x7a\x00\x6d\ +\x01\x1b\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\ +\x44\x65\x66\x61\x75\x6c\x74\x20\x68\x65\x69\x67\x68\x74\x20\x66\ +\x6f\x72\x20\x74\x65\x78\x74\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\ +\x65\x6e\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\ +\x56\x00\xfd\x00\x63\x00\x68\x00\x6f\x00\x7a\x00\xed\x00\x20\x01\ +\x61\x00\xed\x01\x59\x00\x6b\x00\x61\x00\x20\x01\x0d\x00\xe1\x00\ +\x72\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\x65\x66\ +\x61\x75\x6c\x74\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x2a\x00\x56\x00\xfd\x00\x63\x00\x68\x00\x6f\ +\x00\x7a\x00\xed\x00\x20\x01\x61\x00\x61\x00\x62\x00\x6c\x00\x6f\ +\x00\x6e\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x73\x00\x74\x00\x75\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x44\x65\x66\x61\x75\x6c\ +\x74\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x20\x73\x68\x65\x65\x74\ \x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ \x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x32\x04\x21\x04\x42\x04\x30\x04\x3d\ -\x04\x34\x04\x30\x04\x40\x04\x42\x04\x3d\x04\x38\x04\x39\x00\x20\ -\x04\x48\x04\x30\x04\x31\x04\x3b\x04\x3e\x04\x3d\x00\x20\x04\x30\ -\x04\x40\x04\x3a\x04\x43\x04\x48\x04\x30\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x16\x44\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x6d\x70\ -\x6c\x61\x74\x65\x20\x73\x68\x65\x65\x74\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x22\x04\x21\x04\x42\x04\x30\x04\x3d\x04\x34\x04\x30\x04\x40\ -\x04\x42\x04\x3d\x04\x38\x04\x39\x00\x20\x04\x48\x04\x40\x04\x38\ -\x04\x44\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\x65\ +\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x56\x00\xfd\x00\x63\x00\x68\ +\x00\x6f\x00\x7a\x00\xed\x00\x20\x00\x70\x00\xed\x00\x73\x00\x6d\ +\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x20\x00\x74\x00\x65\ +\x00\x78\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\x65\ \x66\x61\x75\x6c\x74\x20\x74\x65\x78\x74\x20\x66\x6f\x6e\x74\x07\ \x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ \x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x30\x04\x21\x04\x42\x04\x30\x04\x3d\x04\ -\x34\x04\x30\x04\x40\x04\x42\x04\x3d\x04\x30\x00\x20\x04\x32\x04\ -\x38\x04\x41\x04\x3e\x04\x42\x04\x30\x00\x20\x04\x42\x04\x35\x04\ -\x3a\x04\x41\x04\x42\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x13\x44\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x78\x74\x20\x68\x65\ -\x69\x67\x68\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x04\x21\x04\x42\ -\x04\x30\x04\x3d\x04\x34\x04\x30\x04\x40\x04\x42\x04\x3d\x04\x30\ -\x00\x20\x04\x40\x04\x3e\x04\x31\x04\x3e\x04\x47\x04\x30\x00\x20\ -\x04\x3f\x04\x3b\x04\x3e\x04\x49\x04\x38\x04\x3d\x04\x30\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x15\x44\x65\x66\x61\x75\x6c\x74\x20\ -\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x32\x04\x21\x04\x42\x04\x38\x04\x3b\x04\x4c\x00\ -\x20\x04\x20\x04\x3e\x04\x37\x04\x3c\x04\x56\x04\x40\x04\x56\x04\ -\x32\x00\x20\x04\x42\x04\x30\x00\x20\x04\x21\x04\x42\x04\x40\x04\ -\x56\x04\x3b\x04\x3e\x04\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x1f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x26\x20\x4c\x65\ -\x61\x64\x65\x72\x20\x61\x72\x72\x6f\x77\x20\x73\x74\x79\x6c\x65\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x34\x00\x44\x00\x69\x00\x6d\x00\x65\ -\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x70\ -\x00\x72\x00\x65\x00\x63\x00\x69\x00\x73\x00\x69\x00\x6f\x00\x6e\ -\x00\x20\x00\x6c\x00\x65\x00\x76\x00\x65\x00\x6c\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x1a\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\ -\x20\x70\x72\x65\x63\x69\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x10\x04\x1a\x04\x40\x04\x30\x04\x3f\ -\x04\x3a\x04\x30\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x05\x44\x6f\x74\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x04\ -\x1a\x04\x40\x04\x30\x04\x3f\x04\x3a\x04\x30\x00\x20\x00\x37\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\x37\x07\x00\ +\x74\x01\x03\x00\x00\x00\x2a\x00\x76\x00\xfd\x01\x61\x00\x6b\x00\ +\x61\x00\x20\x00\x76\x00\xfd\x00\x63\x00\x68\x00\x6f\x00\x7a\x00\ +\xed\x00\x68\x00\x6f\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\ +\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x44\x65\x66\x61\x75\ +\x6c\x74\x20\x74\x65\x78\x74\x20\x68\x65\x69\x67\x68\x74\x07\x00\ \x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ \x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x10\x04\x1a\x04\x40\x04\x30\x04\x3f\x04\x3a\ -\x04\x30\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ -\x44\x6f\x74\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x44\x00\ -\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x74\x00\ -\x65\x00\x72\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6d\x00\ -\x6f\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x44\ -\x72\x61\x66\x74\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x6d\ -\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x01\x03\x00\x00\x00\x2e\x00\x56\x00\xfd\x00\x63\x00\x68\x00\x6f\ +\x00\x7a\x00\xed\x00\x20\x00\x70\x00\x72\x00\x61\x00\x63\x00\x6f\ +\x00\x76\x00\x6e\x00\xed\x00\x20\x00\x72\x00\x6f\x00\x76\x00\x69\ +\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x44\x65\ +\x66\x61\x75\x6c\x74\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\x6c\ +\x61\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ \x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x48\x00\x45\x00\x78\x00\ -\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x33\x00\x44\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ -\x61\x00\x73\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x66\x00\ -\x61\x00\x63\x00\x65\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\ -\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x45\x78\x70\ -\x6f\x72\x74\x20\x33\x44\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\ -\x73\x20\x70\x6f\x6c\x79\x66\x61\x63\x65\x20\x6d\x65\x73\x68\x65\ -\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x20\x04\x17\x04\x30\x04\x3f\x04\ -\x3e\x04\x32\x04\x3d\x04\x4f\x04\x42\x04\x38\x00\x20\x04\x3e\x04\ -\x31\x00\x27\x04\x54\x04\x3a\x04\x42\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x17\x46\x69\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ -\x62\x79\x20\x64\x65\x66\x61\x75\x6c\x74\x07\x00\x00\x00\x1d\x47\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x4b\x00\xf3\x00\ +\x74\x00\x79\x00\x20\x00\x26\x00\x20\x00\x73\x00\x74\x00\x79\x00\ +\x6c\x00\x20\x01\x61\x00\x69\x00\x70\x00\x65\x00\x6b\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ +\x73\x20\x26\x20\x4c\x65\x61\x64\x65\x72\x20\x61\x72\x72\x6f\x77\ +\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\x00\x44\ +\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\ +\x00\x73\x00\x20\x00\x70\x00\x72\x00\x65\x00\x63\x00\x69\x00\x73\ +\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6c\x00\x65\x00\x76\x00\x65\ +\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x44\x69\x6d\x65\ +\x6e\x73\x69\x6f\x6e\x73\x20\x70\x72\x65\x63\x69\x73\x69\x6f\x6e\ +\x20\x6c\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x42\ +\x00\x6f\x00\x64\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x44\x6f\x74\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\ +\x42\x00\x6f\x00\x64\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x05\x44\x6f\x74\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\ +\x00\x42\x00\x6f\x00\x64\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x44\x6f\x74\x20\x39\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x28\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x69\x00\ +\x6e\x00\x74\x00\x65\x00\x72\x00\x66\x00\x61\x00\x63\x00\x65\x00\ +\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x14\x44\x72\x61\x66\x74\x20\x69\x6e\x74\x65\x72\x66\x61\ +\x63\x65\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x48\x00\ +\x45\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x33\x00\ +\x44\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x73\x00\x20\x00\x61\x00\x73\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\ +\x79\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6d\x00\x65\x00\ +\x73\x00\x68\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x24\x45\x78\x70\x6f\x72\x74\x20\x33\x44\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x61\x73\x20\x70\x6f\x6c\x79\x66\x61\x63\x65\x20\x6d\ +\x65\x73\x68\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x45\x00\ +\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x53\x00\x74\x00\ +\x79\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x45\ +\x78\x70\x6f\x72\x74\x20\x53\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x52\x00\x56\x00\x79\x00\x70\x00\x6c\x00\x6e\x00\x69\x00\ +\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x79\x00\x20\x00\x70\x00\x6f\x00\x64\x00\x6c\x00\x65\x00\x20\x00\ +\x76\x00\xfd\x00\x63\x00\x68\x00\x6f\x00\x7a\x00\xed\x00\x68\x00\ +\x6f\x00\x20\x00\x6e\x00\x61\x00\x73\x00\x74\x00\x61\x00\x76\x00\ +\x65\x00\x6e\x00\xed\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x46\ +\x69\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x79\x20\x64\ +\x65\x66\x61\x75\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x4f\ +\x00\x62\x00\x65\x00\x63\x00\x6e\x00\xe9\x00\x20\x00\x6e\x00\xe1\ +\x00\x76\x00\x72\x00\x68\x00\x20\x00\x6e\x00\x61\x00\x73\x00\x74\ +\x00\x61\x00\x76\x00\x65\x00\x6e\x00\xed\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x16\x47\x65\x6e\x65\x72\x61\x6c\x20\x44\x72\x61\x66\ +\x74\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\ \x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ \x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x3e\x04\x17\x04\x30\x04\x33\x04\x30\x04\x3b\x04\x4c\x04\x3d\ -\x04\x56\x00\x20\x04\x3d\x04\x30\x04\x3b\x04\x30\x04\x48\x04\x42\ -\x04\x43\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x3a\ -\x04\x40\x04\x35\x04\x41\x04\x3b\x04\x35\x04\x3d\x04\x3d\x04\x4f\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x47\x65\x6e\x65\x72\x61\ -\x6c\x20\x44\x72\x61\x66\x74\x20\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x24\x04\x17\x04\x30\x04\x33\x04\x30\ -\x04\x3b\x04\x4c\x04\x3d\x04\x56\x00\x20\x04\x3f\x04\x30\x04\x40\ -\x04\x30\x04\x3c\x04\x35\x04\x42\x04\x40\x04\x38\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\ -\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x04\x20\ -\x04\x35\x04\x36\x04\x38\x04\x3c\x00\x20\x04\x33\x04\x3b\x04\x3e\ -\x04\x31\x04\x30\x04\x3b\x04\x4c\x04\x3d\x04\x3e\x04\x33\x04\x3e\ -\x00\x20\x04\x3a\x04\x3e\x04\x3f\x04\x56\x04\x4e\x04\x32\x04\x30\ -\x04\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x00\x20\x00\x4f\x00\x62\x00\x65\x00\x63\x00\x6e\x00\xe1\x00\x20\ +\x00\x6e\x00\x61\x00\x73\x00\x74\x00\x61\x00\x76\x00\x65\x00\x6e\ +\x00\xed\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\ +\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x32\x00\x67\x00\x6c\x00\x6f\x00\x62\x00\xe1\x00\x6c\ +\x00\x6e\x00\xed\x00\x20\x00\x72\x00\x65\x01\x7e\x00\x69\x00\x6d\ +\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\xed\x00\x72\x00\x6f\x00\x76\ +\x00\xe1\x00\x6e\x00\xed\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ \x47\x6c\x6f\x62\x61\x6c\x20\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\ \x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ \x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x18\x00\x47\x00\x72\x00\x69\x00\x64\ -\x00\x20\x00\x73\x00\x70\x00\x61\x00\x63\x00\x69\x00\x6e\x00\x67\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x47\x72\x69\x64\x20\x73\ -\x70\x61\x63\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x47\ -\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x20\x00\x6c\x00\x61\x00\x79\ -\x00\x65\x00\x72\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\ -\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x73\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x18\x47\x72\x6f\x75\x70\x20\x6c\x61\ -\x79\x65\x72\x73\x20\x69\x6e\x74\x6f\x20\x62\x6c\x6f\x63\x6b\x73\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x01\x1a\x00\x48\x00\x65\x00\x72\x00\x65\ -\x00\x20\x00\x79\x00\x6f\x00\x75\x00\x20\x00\x63\x00\x61\x00\x6e\ -\x00\x20\x00\x73\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x79\ -\x00\x20\x00\x61\x00\x20\x00\x64\x00\x69\x00\x72\x00\x65\x00\x63\ -\x00\x74\x00\x6f\x00\x72\x00\x79\x00\x20\x00\x63\x00\x6f\x00\x6e\ -\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\ -\x00\x53\x00\x56\x00\x47\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x65\ -\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\ -\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x3c\x00\x70\x00\x61\ -\x00\x74\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x3e\x00\x20\x00\x64\ -\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\x69\x00\x6f\ -\x00\x6e\x00\x73\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\ -\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x62\x00\x65\x00\x20\x00\x61\ -\x00\x64\x00\x64\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\ -\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\ -\x00\x64\x00\x61\x00\x72\x00\x64\x00\x20\x00\x44\x00\x72\x00\x61\ -\x00\x66\x00\x74\x00\x20\x00\x68\x00\x61\x00\x74\x00\x63\x00\x68\ -\x00\x20\x00\x70\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x6e\ -\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x8d\x48\x65\x72\x65\ -\x20\x79\x6f\x75\x20\x63\x61\x6e\x20\x73\x70\x65\x63\x69\x66\x79\ -\x20\x61\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x63\x6f\x6e\ -\x74\x61\x69\x6e\x69\x6e\x67\x20\x53\x56\x47\x20\x66\x69\x6c\x65\ -\x73\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x3c\x70\x61\ -\x74\x74\x65\x72\x6e\x3e\x20\x64\x65\x66\x69\x6e\x69\x74\x69\x6f\ -\x6e\x73\x20\x74\x68\x61\x74\x20\x63\x61\x6e\x20\x62\x65\x20\x61\ -\x64\x64\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x20\x73\x74\x61\x6e\ -\x64\x61\x72\x64\x20\x44\x72\x61\x66\x74\x20\x68\x61\x74\x63\x68\ -\x20\x70\x61\x74\x74\x65\x72\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x56\x00\x49\x00\x66\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\ -\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x61\x00\x20\x00\x67\x00\ -\x72\x00\x69\x00\x64\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\ -\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\x20\x00\ -\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x64\x00\x72\x00\x61\x00\ -\x77\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x2b\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x20\x67\ -\x72\x69\x64\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\ -\x77\x68\x65\x6e\x20\x64\x72\x61\x77\x69\x6e\x67\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\xca\x00\x49\x00\x66\x00\x20\x00\x63\x00\x68\x00\x65\ -\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x66\x00\x72\ -\x00\x65\x00\x65\x00\x63\x00\x61\x00\x64\x00\x20\x00\x77\x00\x69\ -\x00\x6c\x00\x6c\x00\x20\x00\x74\x00\x72\x00\x79\x00\x20\x00\x74\ -\x00\x6f\x00\x20\x00\x6a\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\ -\x00\x63\x00\x6f\x00\x69\x00\x6e\x00\x63\x00\x69\x00\x64\x00\x65\ -\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ -\x00\x74\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\ -\x00\x77\x00\x69\x00\x72\x00\x65\x00\x73\x00\x2e\x00\x20\x00\x42\ -\x00\x65\x00\x77\x00\x61\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x74\ -\x00\x68\x00\x69\x00\x73\x00\x20\x00\x63\x00\x61\x00\x6e\x00\x20\ -\x00\x74\x00\x61\x00\x6b\x00\x65\x00\x20\x00\x61\x00\x20\x00\x77\ -\x00\x68\x00\x69\x00\x6c\x00\x65\x00\x2e\x00\x2e\x00\x2e\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x65\x49\x66\x20\x63\x68\x65\x63\x6b\ -\x65\x64\x2c\x20\x66\x72\x65\x65\x63\x61\x64\x20\x77\x69\x6c\x6c\ -\x20\x74\x72\x79\x20\x74\x6f\x20\x6a\x6f\x69\x6e\x74\x20\x63\x6f\ -\x69\x6e\x63\x69\x64\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x20\x69\x6e\x74\x6f\x20\x77\x69\x72\x65\x73\x2e\x20\x42\x65\x77\ -\x61\x72\x65\x2c\x20\x74\x68\x69\x73\x20\x63\x61\x6e\x20\x74\x61\ -\x6b\x65\x20\x61\x20\x77\x68\x69\x6c\x65\x2e\x2e\x2e\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\xa2\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\ -\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\ -\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x61\x00\ -\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ -\x74\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\ -\x69\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x66\x00\x61\x00\ -\x63\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\ -\x20\x00\x62\x00\x65\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6f\x00\ -\x72\x00\x74\x00\x65\x00\x64\x00\x20\x00\x61\x00\x73\x00\x20\x00\ -\x33\x00\x64\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x66\x00\ -\x61\x00\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x51\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ -\x6b\x65\x64\x2c\x20\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x66\x61\x63\x65\ -\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x65\x78\x70\x6f\x72\x74\ -\x65\x64\x20\x61\x73\x20\x33\x64\x20\x70\x6f\x6c\x79\x66\x61\x63\ -\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\xde\x00\x49\x00\x66\x00\x20\ -\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\ -\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\ -\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x79\x00\x20\x00\x6d\x00\x6f\ -\x00\x64\x00\x65\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\ -\x00\x62\x00\x65\x00\x20\x00\x6b\x00\x65\x00\x70\x00\x74\x00\x20\ -\x00\x61\x00\x63\x00\x72\x00\x6f\x00\x73\x00\x73\x00\x20\x00\x63\ -\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x2c\x00\x20\ -\x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\x77\x00\x69\x00\x73\ -\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\ -\x00\x64\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\ -\x00\x61\x00\x6c\x00\x77\x00\x61\x00\x79\x00\x73\x00\x20\x00\x73\ -\x00\x74\x00\x61\x00\x72\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x20\ -\x00\x6e\x00\x6f\x00\x2d\x00\x63\x00\x6f\x00\x70\x00\x79\x00\x20\ -\x00\x6d\x00\x6f\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x6f\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\ -\x63\x6b\x65\x64\x2c\x20\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x20\ -\x77\x69\x6c\x6c\x20\x62\x65\x20\x6b\x65\x70\x74\x20\x61\x63\x72\ -\x6f\x73\x73\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x2c\x20\x6f\x74\x68\ -\x65\x72\x77\x69\x73\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x20\ -\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x73\x74\x61\x72\ -\x74\x20\x69\x6e\x20\x6e\x6f\x2d\x63\x6f\x70\x79\x20\x6d\x6f\x64\ -\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\xf8\x04\x2f\x04\x3a\x04\x49\x04\ -\x3e\x00\x20\x04\x46\x04\x35\x00\x20\x04\x3e\x04\x31\x04\x40\x04\ -\x30\x04\x3d\x04\x3e\x00\x2c\x00\x20\x04\x42\x04\x3e\x00\x20\x04\ -\x3f\x04\x3e\x00\x20\x04\x37\x04\x30\x04\x3c\x04\x3e\x04\x32\x04\ -\x47\x04\x43\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4e\x00\x2c\x00\ -\x20\x04\x3e\x04\x31\x20\x19\x04\x54\x04\x3a\x04\x42\x04\x38\x00\ -\x20\x04\x31\x04\x43\x04\x34\x04\x43\x04\x42\x04\x4c\x00\x20\x04\ -\x3c\x04\x30\x04\x42\x04\x38\x00\x20\x04\x32\x04\x38\x04\x33\x04\ -\x3b\x04\x4f\x04\x34\x00\x20\x04\x37\x04\x30\x04\x3f\x04\x3e\x04\ -\x32\x04\x3d\x04\x35\x04\x3d\x04\x38\x04\x45\x00\x2e\x00\x20\x04\ -\x12\x00\x20\x04\x56\x04\x3d\x04\x48\x04\x3e\x04\x3c\x04\x43\x00\ -\x20\x04\x32\x04\x38\x04\x3f\x04\x30\x04\x34\x04\x3a\x04\x43\x00\ -\x2c\x00\x20\x04\x32\x04\x3e\x04\x3d\x04\x38\x00\x20\x04\x31\x04\ -\x43\x04\x34\x04\x43\x04\x42\x04\x4c\x00\x20\x04\x3c\x04\x30\x04\ -\x42\x04\x38\x00\x20\x04\x32\x04\x38\x04\x33\x04\x3b\x04\x4f\x04\ -\x34\x00\x20\x04\x3a\x04\x30\x04\x40\x04\x3a\x04\x30\x04\x41\x04\ -\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x66\x49\x66\x20\x74\x68\ -\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\ -\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\ -\x61\x72\x20\x61\x73\x20\x66\x69\x6c\x6c\x65\x64\x20\x61\x73\x20\ -\x64\x65\x66\x61\x75\x6c\x74\x2e\x20\x4f\x74\x68\x65\x72\x77\x69\ -\x73\x65\x2c\x20\x74\x68\x65\x79\x20\x77\x69\x6c\x6c\x20\x61\x70\ -\x70\x65\x61\x72\x20\x61\x73\x20\x77\x69\x72\x65\x66\x72\x61\x6d\ -\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x01\x02\x00\x49\x00\x66\x00\x20\x00\ -\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\ -\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\ -\x20\x00\x79\x00\x6f\x00\x75\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ -\x6c\x00\x20\x00\x61\x00\x6c\x00\x77\x00\x61\x00\x79\x00\x73\x00\ -\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x74\x00\x6f\x00\ -\x20\x00\x65\x00\x78\x00\x69\x00\x73\x00\x74\x00\x69\x00\x6e\x00\ -\x67\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ -\x73\x00\x20\x00\x77\x00\x68\x00\x69\x00\x6c\x00\x65\x00\x20\x00\ -\x64\x00\x72\x00\x61\x00\x77\x00\x69\x00\x6e\x00\x67\x00\x2e\x00\ -\x20\x00\x49\x00\x66\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x2c\x00\ -\x20\x00\x79\x00\x6f\x00\x75\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ -\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\ -\x70\x00\x70\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x6e\x00\ -\x6c\x00\x79\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\ -\x70\x00\x72\x00\x65\x00\x73\x00\x73\x00\x69\x00\x6e\x00\x67\x00\ -\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x2e\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x81\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\ -\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x79\x6f\x75\x20\x77\x69\x6c\ -\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x73\x6e\x61\x70\x20\x74\x6f\ -\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\ -\x73\x20\x77\x68\x69\x6c\x65\x20\x64\x72\x61\x77\x69\x6e\x67\x2e\ -\x20\x49\x66\x20\x6e\x6f\x74\x2c\x20\x79\x6f\x75\x20\x77\x69\x6c\ -\x6c\x20\x62\x65\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x20\x6f\x6e\ -\x6c\x79\x20\x77\x68\x65\x6e\x20\x70\x72\x65\x73\x73\x69\x6e\x67\ -\x20\x43\x54\x52\x4c\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x04\x06\ -\x04\x3c\x04\x3f\x04\x3e\x04\x40\x04\x42\x00\x20\x04\x31\x04\x3b\ -\x04\x3e\x04\x3a\x04\x56\x04\x32\x00\x2a\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0e\x49\x6d\x70\x6f\x72\x74\x20\x2a\x62\x6c\x6f\x63\ +\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x52\x00\x6f\x00\x7a\x00\x74\ +\x00\x65\x01\x0d\x00\x20\x00\x6d\x01\x59\x00\xed\x01\x7e\x00\x6b\ +\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x47\x72\x69\x64\ +\x20\x73\x70\x61\x63\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\ +\x00\x47\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x20\x00\x6c\x00\x61\ +\x00\x79\x00\x65\x00\x72\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\ +\x00\x6f\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x47\x72\x6f\x75\x70\x20\ +\x6c\x61\x79\x65\x72\x73\x20\x69\x6e\x74\x6f\x20\x62\x6c\x6f\x63\ \x6b\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ \x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x49\x00\x6d\x00\x70\ -\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x4f\x00\x43\x00\x41\x00\x20\ -\x00\x61\x00\x72\x00\x65\x00\x61\x00\x73\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x10\x49\x6d\x70\x6f\x72\x74\x20\x4f\x43\x41\x20\x61\ -\x72\x65\x61\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x04\x06\x04\x3c\ -\x04\x3f\x04\x3e\x04\x40\x04\x42\x00\x20\x04\x3c\x04\x30\x04\x3a\ -\x04\x35\x04\x42\x04\x56\x04\x32\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0e\x49\x6d\x70\x6f\x72\x74\x20\x6c\x61\x79\x6f\x75\x74\x73\ +\x72\x61\x66\x74\x01\x03\x00\x00\x01\x1a\x00\x48\x00\x65\x00\x72\ +\x00\x65\x00\x20\x00\x79\x00\x6f\x00\x75\x00\x20\x00\x63\x00\x61\ +\x00\x6e\x00\x20\x00\x73\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\ +\x00\x79\x00\x20\x00\x61\x00\x20\x00\x64\x00\x69\x00\x72\x00\x65\ +\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x79\x00\x20\x00\x63\x00\x6f\ +\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x66\x00\x69\x00\x6c\ +\x00\x65\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\ +\x00\x69\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x3c\x00\x70\ +\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x3e\x00\x20\ +\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\ +\x00\x20\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x62\x00\x65\x00\x20\ +\x00\x61\x00\x64\x00\x64\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x74\x00\x61\ +\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x20\x00\x44\x00\x72\ +\x00\x61\x00\x66\x00\x74\x00\x20\x00\x68\x00\x61\x00\x74\x00\x63\ +\x00\x68\x00\x20\x00\x70\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\ +\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x8d\x48\x65\ +\x72\x65\x20\x79\x6f\x75\x20\x63\x61\x6e\x20\x73\x70\x65\x63\x69\ +\x66\x79\x20\x61\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x63\ +\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x53\x56\x47\x20\x66\x69\ +\x6c\x65\x73\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x3c\ +\x70\x61\x74\x74\x65\x72\x6e\x3e\x20\x64\x65\x66\x69\x6e\x69\x74\ +\x69\x6f\x6e\x73\x20\x74\x68\x61\x74\x20\x63\x61\x6e\x20\x62\x65\ +\x20\x61\x64\x64\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x20\x73\x74\ +\x61\x6e\x64\x61\x72\x64\x20\x44\x72\x61\x66\x74\x20\x68\x61\x74\ +\x63\x68\x20\x70\x61\x74\x74\x65\x72\x6e\x73\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x42\x00\x48\x00\x69\x00\x64\x00\x65\x00\x20\x00\x44\x00\ +\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x73\x00\x6e\x00\x61\x00\ +\x70\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\ +\x72\x00\x20\x00\x61\x00\x66\x00\x74\x00\x65\x00\x72\x00\x20\x00\ +\x75\x00\x73\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x48\ +\x69\x64\x65\x20\x44\x72\x61\x66\x74\x20\x73\x6e\x61\x70\x20\x74\ +\x6f\x6f\x6c\x62\x61\x72\x20\x61\x66\x74\x65\x72\x20\x75\x73\x65\ \x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ \x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x1a\x04\x21\x04\x42\x04\x38\x04\x3b\ -\x04\x4c\x00\x20\x04\x56\x04\x3c\x04\x3f\x04\x3e\x04\x40\x04\x42\ -\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x49\x6d\x70\x6f\ -\x72\x74\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\ -\x04\x06\x04\x3c\x04\x3f\x04\x3e\x04\x40\x04\x42\x04\x43\x04\x32\ -\x04\x30\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x42\x04\x35\x04\x3a\ -\x04\x41\x04\x42\x04\x43\x00\x20\x04\x42\x04\x30\x00\x20\x04\x40\ -\x04\x3e\x04\x37\x04\x3c\x04\x56\x04\x40\x04\x56\x04\x32\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x1b\x49\x6d\x70\x6f\x72\x74\x20\x74\ -\x65\x78\x74\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\ -\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x04\x06\x04\x3c\x04\ -\x3f\x04\x3e\x04\x40\x04\x42\x00\x2f\x04\x15\x04\x3a\x04\x41\x04\ -\x3f\x04\x3e\x04\x40\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0d\x49\x6d\x70\x6f\x72\x74\x2f\x45\x78\x70\x6f\x72\x74\x07\x00\ +\x66\x74\x01\x03\x00\x00\x00\x28\x00\x48\x00\x69\x00\x64\x00\x65\ +\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x77\ +\x00\x6f\x00\x72\x00\x6b\x00\x62\x00\x65\x00\x6e\x00\x63\x00\x68\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x48\x69\x64\x65\x20\x44\ +\x72\x61\x66\x74\x20\x77\x6f\x72\x6b\x62\x65\x6e\x63\x68\x07\x00\ \x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ \x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x30\x00\x49\x00\x6e\x00\x74\x00\x65\x00\x72\ -\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x70\x00\x72\x00\x65\x00\x63\ -\x00\x69\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6c\x00\x65\ -\x00\x76\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\ -\x49\x6e\x74\x65\x72\x6e\x61\x6c\x20\x70\x72\x65\x63\x69\x73\x69\ -\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\ -\x00\x4a\x00\x6f\x00\x69\x00\x6e\x00\x20\x00\x67\x00\x65\x00\x6f\ -\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0d\x4a\x6f\x69\x6e\x20\x67\x65\x6f\x6d\x65\x74\x72\ -\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x01\x03\x00\x00\x00\x56\x00\x49\x00\x66\x00\x20\x00\x63\x00\x68\ +\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x61\ +\x00\x20\x00\x67\x00\x72\x00\x69\x00\x64\x00\x20\x00\x77\x00\x69\ +\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\ +\x00\x72\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x64\ +\x00\x72\x00\x61\x00\x77\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x2b\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\ +\x2c\x20\x61\x20\x67\x72\x69\x64\x20\x77\x69\x6c\x6c\x20\x61\x70\ +\x70\x65\x61\x72\x20\x77\x68\x65\x6e\x20\x64\x72\x61\x77\x69\x6e\ +\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ \x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x4c\x00\x65\x00\x66\x00\ -\x74\x00\x20\x00\x28\x00\x49\x00\x53\x00\x4f\x00\x20\x00\x73\x00\ -\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x29\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x13\x4c\x65\x66\x74\x20\x28\x49\ -\x53\x4f\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x29\x07\x00\x00\x00\ +\x61\x66\x74\x01\x03\x00\x00\x00\xde\x00\x4a\x00\x65\x00\x2d\x00\ +\x6c\x00\x69\x00\x20\x00\x74\x00\x6f\x00\x74\x00\x6f\x00\x20\x00\ +\x70\x00\x6f\x00\x6c\x00\xed\x01\x0d\x00\x6b\x00\x6f\x00\x20\x00\ +\x7a\x00\x61\x01\x61\x00\x6b\x00\x72\x00\x74\x00\x6e\x00\x75\x00\ +\x74\x00\x6f\x00\x2c\x00\x20\x00\x66\x00\x72\x00\x65\x00\x65\x00\ +\x63\x00\x61\x00\x64\x00\x20\x00\x73\x00\x65\x00\x20\x00\x70\x00\ +\x6f\x00\x6b\x00\x75\x00\x73\x00\xed\x00\x20\x00\x73\x00\x70\x00\ +\x6f\x00\x6a\x00\x69\x00\x74\x00\x20\x00\x73\x00\x68\x00\x6f\x00\ +\x64\x00\x6e\x00\xe9\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x79\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x64\x00\ +\x72\x00\xe1\x00\x74\x01\x6f\x00\x2e\x00\x20\x00\x50\x00\x6f\x00\ +\x7a\x00\x6f\x00\x72\x00\x2c\x00\x20\x00\x6d\x01\x6f\x01\x7e\x00\ +\x65\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x68\x00\x76\x00\ +\xed\x00\x6c\x00\x69\x00\x20\x00\x74\x00\x72\x00\x76\x00\x61\x00\ +\x74\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x65\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x66\x72\x65\ +\x65\x63\x61\x64\x20\x77\x69\x6c\x6c\x20\x74\x72\x79\x20\x74\x6f\ +\x20\x6a\x6f\x69\x6e\x74\x20\x63\x6f\x69\x6e\x63\x69\x64\x65\x6e\ +\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\x77\ +\x69\x72\x65\x73\x2e\x20\x42\x65\x77\x61\x72\x65\x2c\x20\x74\x68\ +\x69\x73\x20\x63\x61\x6e\x20\x74\x61\x6b\x65\x20\x61\x20\x77\x68\ +\x69\x6c\x65\x2e\x2e\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xf2\x00\x49\ +\x00\x66\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\ +\x00\x64\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x67\x00\x72\x00\x69\ +\x00\x64\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x61\ +\x00\x6c\x00\x77\x00\x61\x00\x79\x00\x73\x00\x20\x00\x62\x00\x65\ +\x00\x20\x00\x76\x00\x69\x00\x73\x00\x69\x00\x62\x00\x6c\x00\x65\ +\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\ +\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\ +\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x62\x00\x65\x00\x6e\x00\x63\ +\x00\x68\x00\x20\x00\x69\x00\x73\x00\x20\x00\x61\x00\x63\x00\x74\ +\x00\x69\x00\x76\x00\x65\x00\x2e\x00\x20\x00\x4f\x00\x74\x00\x68\ +\x00\x65\x00\x72\x00\x77\x00\x69\x00\x73\x00\x65\x00\x20\x00\x6f\ +\x00\x6e\x00\x6c\x00\x79\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\ +\x00\x20\x00\x75\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x79\x49\x66\x20\x63\x68\x65\ +\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\ +\x67\x72\x69\x64\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\ +\x20\x62\x65\x20\x76\x69\x73\x69\x62\x6c\x65\x20\x77\x68\x65\x6e\ +\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x77\x6f\x72\x6b\x62\ +\x65\x6e\x63\x68\x20\x69\x73\x20\x61\x63\x74\x69\x76\x65\x2e\x20\ +\x4f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x6f\x6e\x6c\x79\x20\x77\ +\x68\x65\x6e\x20\x75\x73\x69\x6e\x67\x20\x61\x20\x63\x6f\x6d\x6d\ +\x61\x6e\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x88\x00\x49\x00\x66\x00\ +\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\ +\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x53\x00\x6e\x00\ +\x61\x00\x70\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\ +\x61\x00\x72\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\ +\x62\x00\x65\x00\x20\x00\x73\x00\x68\x00\x6f\x00\x77\x00\x6e\x00\ +\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x65\x00\x76\x00\x65\x00\ +\x72\x00\x20\x00\x79\x00\x6f\x00\x75\x00\x20\x00\x75\x00\x73\x00\ +\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x69\x00\ +\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x44\x49\x66\x20\ +\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x53\x6e\x61\ +\x70\x20\x74\x6f\x6f\x6c\x62\x61\x72\x20\x77\x69\x6c\x6c\x20\x62\ +\x65\x20\x73\x68\x6f\x77\x6e\x20\x77\x68\x65\x6e\x65\x76\x65\x72\ +\x20\x79\x6f\x75\x20\x75\x73\x65\x20\x73\x6e\x61\x70\x70\x69\x6e\ +\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\xa2\x00\x49\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\ +\x74\x00\x61\x00\x69\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\ +\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x65\x00\x78\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x64\x00\x20\x00\x61\x00\ +\x73\x00\x20\x00\x33\x00\x64\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\ +\x79\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x51\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\ +\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x6c\x6c\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\ +\x66\x61\x63\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x65\x78\ +\x70\x6f\x72\x74\x65\x64\x20\x61\x73\x20\x33\x64\x20\x70\x6f\x6c\ +\x79\x66\x61\x63\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xf4\x00\x50\ +\x00\x6f\x00\x6b\x00\x75\x00\x64\x00\x20\x00\x6a\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x6f\x00\x6c\ +\x00\xed\x01\x0d\x00\x6b\x00\x6f\x00\x20\x00\x7a\x00\x61\x01\x61\ +\x00\x6b\x00\x72\x00\x74\x00\x6e\x00\x75\x00\x74\x00\x6f\x00\x2c\ +\x00\x20\x00\x72\x00\x65\x01\x7e\x00\x69\x00\x6d\x00\x20\x00\x6b\ +\x00\x6f\x00\x70\x00\xed\x00\x72\x00\x6f\x00\x76\x00\xe1\x00\x6e\ +\x00\xed\x00\x20\x00\x62\x00\x75\x00\x64\x00\x65\x00\x20\x00\x7a\ +\x00\x61\x00\x63\x00\x68\x00\x6f\x00\x76\x00\xe1\x00\x6e\x00\x20\ +\x00\x62\x01\x1b\x00\x68\x00\x65\x00\x6d\x00\x20\x00\x70\x01\x59\ +\x00\xed\x00\x6b\x00\x61\x00\x7a\x00\x75\x00\x2c\x00\x20\x00\x6a\ +\x00\x69\x00\x6e\x00\x61\x00\x6b\x00\x20\x00\x70\x01\x59\x00\xed\ +\x00\x6b\x00\x61\x00\x7a\x00\x79\x00\x20\x00\x76\x01\x7e\x00\x64\ +\x00\x79\x00\x20\x00\x73\x00\x70\x00\x75\x00\x73\x00\x74\x00\xed\ +\x00\x20\x00\x76\x00\x20\x00\x6e\x00\x6f\x00\x2d\x00\x63\x00\x6f\ +\x00\x70\x00\x79\x00\x20\x00\x72\x00\x65\x01\x7e\x00\x69\x00\x6d\ +\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x6f\x49\x66\x20\x74\ +\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\ +\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x62\ +\x65\x20\x6b\x65\x70\x74\x20\x61\x63\x72\x6f\x73\x73\x20\x63\x6f\ +\x6d\x6d\x61\x6e\x64\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\ +\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x20\x77\x69\x6c\x6c\x20\x61\ +\x6c\x77\x61\x79\x73\x20\x73\x74\x61\x72\x74\x20\x69\x6e\x20\x6e\ +\x6f\x2d\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x7e\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\ +\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x68\x00\x61\x00\ +\x74\x00\x63\x00\x68\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\ +\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x63\x00\x6f\x00\ +\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x65\x00\x64\x00\x20\x00\ +\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x69\x00\x6d\x00\ +\x70\x00\x6c\x00\x65\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3f\x49\x66\x20\x74\x68\ +\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x68\ +\x61\x74\x63\x68\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x63\ +\x6f\x6e\x76\x65\x72\x74\x65\x64\x20\x69\x6e\x74\x6f\x20\x73\x69\ +\x6d\x70\x6c\x65\x20\x77\x69\x72\x65\x73\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\xf6\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\ +\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x69\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x64\x00\x20\x00\x74\x00\x65\ +\x00\x78\x00\x74\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\ +\x00\x20\x00\x67\x00\x65\x00\x74\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\ +\x00\x64\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\ +\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\x00\x73\x00\x69\x00\x7a\ +\x00\x65\x00\x2c\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\ +\x00\x61\x00\x64\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\ +\x00\x65\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x79\x00\x20\x00\x68\x00\x61\x00\x76\x00\x65\ +\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x44\x00\x58\x00\x46\x00\x20\x00\x64\x00\x6f\x00\x63\x00\x75\ +\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x7b\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\ +\x63\x6b\x65\x64\x2c\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\ +\x65\x78\x74\x73\x20\x77\x69\x6c\x6c\x20\x67\x65\x74\x20\x74\x68\ +\x65\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x44\x72\x61\x66\x74\ +\x20\x74\x65\x78\x74\x20\x73\x69\x7a\x65\x2c\x20\x69\x6e\x73\x74\ +\x65\x61\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x73\x69\x7a\x65\x20\ +\x74\x68\x65\x79\x20\x68\x61\x76\x65\x20\x69\x6e\x20\x74\x68\x65\ +\x20\x44\x58\x46\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\xfe\x00\x50\x00\x6f\x00\x6b\x00\x75\x00\x64\x00\ +\x20\x00\x6a\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x74\x00\x6f\x00\ +\x20\x00\x70\x00\x6f\x00\x6c\x00\xed\x01\x0d\x00\x6b\x00\x6f\x00\ +\x20\x00\x7a\x00\x61\x01\x61\x00\x6b\x00\x72\x00\x74\x00\x6e\x00\ +\x75\x00\x74\x00\x6f\x00\x2c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x79\x00\x20\x00\x73\x00\x65\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x76\x00\xed\x00\x20\x00\x6a\x00\ +\x61\x00\x6b\x00\x6f\x00\x20\x00\x76\x00\x79\x00\x70\x00\x6c\x00\ +\x6e\x01\x1b\x00\x6e\x00\xe9\x00\x20\x00\x6a\x00\x61\x00\x6b\x00\ +\x6f\x00\x20\x00\x76\x00\xfd\x00\x63\x00\x68\x00\x6f\x00\x7a\x00\ +\xed\x00\x2e\x00\x20\x00\x56\x00\x20\x00\x6f\x00\x70\x00\x61\x01\ +\x0d\x00\x6e\x00\xe9\x00\x6d\x00\x20\x00\x70\x01\x59\x00\xed\x00\ +\x70\x00\x61\x00\x64\x01\x1b\x00\x20\x00\x73\x00\x65\x00\x20\x00\ +\x7a\x00\x6f\x00\x62\x00\x72\x00\x61\x00\x7a\x00\xed\x00\x20\x00\ +\x6a\x00\x61\x00\x6b\x00\x6f\x00\x20\x00\x64\x00\x72\x00\xe1\x00\ +\x74\x00\x6f\x00\x76\x00\xfd\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\ +\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x66\x49\x66\x20\ +\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x61\x70\ +\x70\x65\x61\x72\x20\x61\x73\x20\x66\x69\x6c\x6c\x65\x64\x20\x61\ +\x73\x20\x64\x65\x66\x61\x75\x6c\x74\x2e\x20\x4f\x74\x68\x65\x72\ +\x77\x69\x73\x65\x2c\x20\x74\x68\x65\x79\x20\x77\x69\x6c\x6c\x20\ +\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x77\x69\x72\x65\x66\x72\ +\x61\x6d\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xd0\x00\x49\x00\x66\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\ +\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\ +\x2c\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\ +\x6e\x00\x6f\x00\x74\x00\x20\x00\x6f\x00\x63\x00\x63\x00\x75\x00\ +\x72\x00\x20\x00\x61\x00\x67\x00\x61\x00\x69\x00\x6e\x00\x73\x00\ +\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x73\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x6d\x00\ +\x6f\x00\x72\x00\x65\x00\x20\x00\x74\x00\x68\x00\x61\x00\x6e\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x64\x00\ +\x69\x00\x63\x00\x61\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6e\x00\ +\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\ +\x20\x00\x65\x00\x64\x00\x67\x00\x65\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x68\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\ +\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x73\x6e\x61\x70\x70\x69\x6e\ +\x67\x20\x77\x69\x6c\x6c\x20\x6e\x6f\x74\x20\x6f\x63\x63\x75\x72\ +\x20\x61\x67\x61\x69\x6e\x73\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x20\x77\x69\x74\x68\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\ +\x74\x68\x65\x20\x69\x6e\x64\x69\x63\x61\x74\x65\x64\x20\x6e\x75\ +\x6d\x62\x65\x72\x20\x6f\x66\x20\x65\x64\x67\x65\x73\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\xf2\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\ +\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\ +\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x62\x00\x65\x00\x6e\x00\ +\x63\x00\x68\x00\x20\x00\x77\x00\x6f\x00\x6e\x00\x27\x00\x74\x00\ +\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\x2e\x00\ +\x20\x00\x55\x00\x73\x00\x65\x00\x66\x00\x75\x00\x6c\x00\x20\x00\ +\x73\x00\x69\x00\x6e\x00\x63\x00\x65\x00\x20\x00\x61\x00\x6c\x00\ +\x6c\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\x00\ +\x6f\x00\x6f\x00\x6c\x00\x73\x00\x20\x00\x61\x00\x72\x00\x65\x00\ +\x20\x00\x61\x00\x6c\x00\x73\x00\x6f\x00\x20\x00\x69\x00\x6e\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x41\x00\x72\x00\x63\x00\ +\x68\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x62\x00\x65\x00\ +\x6e\x00\x63\x00\x68\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x79\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x77\ +\x6f\x72\x6b\x62\x65\x6e\x63\x68\x20\x77\x6f\x6e\x27\x74\x20\x61\ +\x70\x70\x65\x61\x72\x2e\x20\x55\x73\x65\x66\x75\x6c\x20\x73\x69\ +\x6e\x63\x65\x20\x61\x6c\x6c\x20\x6f\x66\x20\x74\x68\x65\x20\x44\ +\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x20\x61\x72\x65\x20\x61\ +\x6c\x73\x6f\x20\x69\x6e\x20\x74\x68\x65\x20\x41\x72\x63\x68\x20\ +\x77\x6f\x72\x6b\x62\x65\x6e\x63\x68\x2e\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\xea\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\ +\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x77\x00\x68\x00\x65\ +\x00\x6e\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x6c\x00\x69\ +\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x68\x00\x61\x00\x76\x00\x65\ +\x00\x20\x00\x61\x00\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\ +\x00\x20\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x64\ +\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x79\x00\x20\x00\x77\ +\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x72\ +\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x65\x00\x64\x00\x20\ +\x00\x61\x00\x73\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\ +\x00\x64\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x73\x00\x20\ +\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x63\x00\x6f\x00\x72\x00\x72\x00\x65\x00\x63\x00\x74\ +\x00\x20\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x75\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\ +\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x77\x68\x65\x6e\x20\x70\ +\x6f\x6c\x79\x6c\x69\x6e\x65\x73\x20\x68\x61\x76\x65\x20\x61\x20\ +\x77\x69\x64\x74\x68\x20\x64\x65\x66\x69\x6e\x65\x64\x2c\x20\x74\ +\x68\x65\x79\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x72\x65\x6e\x64\ +\x65\x72\x65\x64\x20\x61\x73\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\ +\x69\x72\x65\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x63\x6f\ +\x72\x72\x65\x63\x74\x20\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x01\x64\x00\x50\x00\x6f\x00\x6b\x00\x75\x00\x64\x00\x20\x00\ +\x6a\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x74\x00\x6f\x00\x20\x00\ +\x70\x00\x6f\x00\x6c\x00\xed\x01\x0d\x00\x6b\x00\x6f\x00\x20\x00\ +\x7a\x00\x61\x01\x61\x00\x6b\x00\x72\x00\x74\x00\x6e\x00\x75\x00\ +\x74\x00\x6f\x00\x2c\x00\x20\x00\x62\x00\x75\x00\x64\x00\x65\x00\ +\x74\x00\x65\x00\x20\x00\x6d\x00\x6f\x00\x63\x00\x69\x00\x20\x00\ +\x76\x01\x7e\x00\x64\x00\x79\x00\x20\x00\x75\x00\x63\x00\x68\x00\ +\x6f\x00\x70\x00\x69\x00\x74\x00\x20\x00\x65\x00\x78\x00\x69\x00\ +\x73\x00\x74\x00\x75\x00\x6a\x00\xed\x00\x63\x00\xed\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x20\x00\ +\x70\x01\x59\x00\x69\x00\x20\x00\x6b\x00\x72\x00\x65\x00\x73\x00\ +\x6c\x00\x65\x00\x6e\x00\xed\x00\x2e\x00\x20\x00\x50\x00\x6f\x00\ +\x6b\x00\x75\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x6d\x00\x75\x00\ +\x20\x00\x74\x00\x61\x00\x6b\x00\x20\x00\x6e\x00\x65\x00\x6e\x00\ +\xed\x00\x2c\x00\x20\x00\x76\x00\xe1\x00\x6d\x00\x20\x00\x62\x00\ +\x75\x00\x64\x00\x65\x00\x20\x00\x70\x01\x59\x00\x69\x00\x74\x00\ +\x61\x00\x68\x00\x6f\x00\x76\x00\xe1\x00\x6e\x00\xed\x00\x2c\x00\ +\x20\x00\x70\x00\x6f\x00\x75\x00\x7a\x00\x65\x00\x20\x00\x76\x00\ +\x20\x00\x70\x01\x59\x00\xed\x00\x70\x00\x61\x00\x64\x01\x1b\x00\ +\x2c\x00\x20\x01\x7e\x00\x65\x00\x20\x00\x73\x00\x74\x00\x69\x00\ +\x73\x00\x6b\x00\x6e\x00\x65\x00\x74\x00\x65\x00\x20\x00\x6b\x00\ +\x6c\x00\xe1\x00\x76\x00\x65\x00\x73\x00\x75\x00\x20\x00\x43\x00\ +\x54\x00\x52\x00\x4c\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x81\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x79\x6f\x75\x20\x77\x69\x6c\x6c\x20\x61\x6c\ +\x77\x61\x79\x73\x20\x73\x6e\x61\x70\x20\x74\x6f\x20\x65\x78\x69\ +\x73\x74\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x68\ +\x69\x6c\x65\x20\x64\x72\x61\x77\x69\x6e\x67\x2e\x20\x49\x66\x20\ +\x6e\x6f\x74\x2c\x20\x79\x6f\x75\x20\x77\x69\x6c\x6c\x20\x62\x65\ +\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x20\x6f\x6e\x6c\x79\x20\x77\ +\x68\x65\x6e\x20\x70\x72\x65\x73\x73\x69\x6e\x67\x20\x43\x54\x52\ +\x4c\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x49\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x2a\x00\x20\x00\x62\x00\x6c\ +\x00\x6f\x00\x6b\x01\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ +\x49\x6d\x70\x6f\x72\x74\x20\x2a\x62\x6c\x6f\x63\x6b\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x2c\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\x6f\x00\x76\x00\x61\x00\x74\x00\x20\x00\x4f\x00\x43\ +\x00\x41\x00\x20\x00\x6f\x00\x62\x00\x6c\x00\x61\x00\x73\x00\x74\ +\x00\xed\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x49\x6d\x70\x6f\ +\x72\x74\x20\x4f\x43\x41\x20\x61\x72\x65\x61\x73\x07\x00\x00\x00\ \x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ \x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x20\x00\x4d\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x6c\ -\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x65\x00\x76\x00\x65\ -\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x4d\x61\ -\x69\x6e\x20\x6c\x69\x6e\x65\x73\x20\x65\x76\x65\x72\x79\x07\x00\ +\x00\x00\x00\x40\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\ +\x00\x20\x00\x68\x00\x61\x00\x74\x00\x63\x00\x68\x00\x20\x00\x62\ +\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x69\x00\x65\ +\x00\x73\x00\x20\x00\x61\x00\x73\x00\x20\x00\x77\x00\x69\x00\x72\ +\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x49\x6d\ +\x70\x6f\x72\x74\x20\x68\x61\x74\x63\x68\x20\x62\x6f\x75\x6e\x64\ +\x61\x72\x69\x65\x73\x20\x61\x73\x20\x77\x69\x72\x65\x73\x07\x00\ \x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ \x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\xa2\x00\x4d\x00\x61\x00\x69\x00\x6e\x00\x6c\ -\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\ -\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x64\x00\x72\x00\x61\ -\x00\x77\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x69\x00\x63\x00\x6b\ -\x00\x65\x00\x72\x00\x2e\x00\x20\x00\x53\x00\x70\x00\x65\x00\x63\ -\x00\x69\x00\x66\x00\x79\x00\x20\x00\x68\x00\x65\x00\x72\x00\x65\ -\x00\x20\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x6d\x00\x61\x00\x6e\ -\x00\x79\x00\x20\x00\x73\x00\x71\x00\x75\x00\x61\x00\x72\x00\x65\ -\x00\x73\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\ -\x00\x6e\x00\x20\x00\x6d\x00\x61\x00\x69\x00\x6e\x00\x6c\x00\x69\ -\x00\x6e\x00\x65\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x51\x4d\x61\x69\x6e\x6c\x69\x6e\x65\x73\x20\x77\x69\x6c\x6c\ -\x20\x62\x65\x20\x64\x72\x61\x77\x6e\x20\x74\x68\x69\x63\x6b\x65\ -\x72\x2e\x20\x53\x70\x65\x63\x69\x66\x79\x20\x68\x65\x72\x65\x20\ -\x68\x6f\x77\x20\x6d\x61\x6e\x79\x20\x73\x71\x75\x61\x72\x65\x73\ -\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x6d\x61\x69\x6e\x6c\x69\x6e\ -\x65\x73\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\x4d\x00\x61\x00\ -\x78\x00\x20\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\ -\x20\x00\x53\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4d\x61\x78\x20\x53\x70\x6c\ -\x69\x6e\x65\x20\x53\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x0a\x04\x1d\x04\x35\x04\x3c\x04\x30\x04\x54\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x1e\x04\x16\x04\x3e\x04\x34\x04\x3d\x04\x38\x04\x39\x00\ -\x20\x00\x28\x04\x48\x04\x32\x04\x38\x04\x34\x04\x3a\x04\x3e\x00\ -\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x4e\x6f\x6e\x65\x20\ -\x28\x66\x61\x73\x74\x65\x73\x74\x29\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\xfe\x00\x4e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\ -\x79\x00\x2c\x00\x20\x00\x61\x00\x66\x00\x74\x00\x65\x00\x72\x00\ -\x20\x00\x63\x00\x6f\x00\x70\x00\x79\x00\x69\x00\x6e\x00\x67\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\ -\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6f\x00\ -\x70\x00\x69\x00\x65\x00\x73\x00\x20\x00\x67\x00\x65\x00\x74\x00\ -\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\ -\x64\x00\x2e\x00\x20\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\ -\x69\x00\x73\x00\x20\x00\x6f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\ -\x6e\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\ -\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x74\x00\x68\x00\ -\x65\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x77\x00\ -\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x73\x00\ -\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\ -\x69\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x61\x00\x64\x00\x2e\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x7f\x4e\x6f\x72\x6d\x61\x6c\x6c\ -\x79\x2c\x20\x61\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\x6e\x67\ -\x20\x6f\x62\x6a\x65\x63\x74\x73\x2c\x20\x74\x68\x65\x20\x63\x6f\ -\x70\x69\x65\x73\x20\x67\x65\x74\x20\x73\x65\x6c\x65\x63\x74\x65\ -\x64\x2e\x20\x49\x66\x20\x74\x68\x69\x73\x20\x6f\x70\x74\x69\x6f\ -\x6e\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\ -\x65\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\ -\x69\x6c\x6c\x20\x62\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ -\x69\x6e\x73\x74\x65\x61\x64\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\ -\x04\x1f\x04\x30\x04\x40\x04\x30\x04\x3c\x04\x35\x04\x42\x04\x40\ -\x04\x38\x00\x20\x00\x4f\x00\x43\x00\x41\x00\x20\x04\x44\x04\x3e\ -\x04\x40\x04\x3c\x04\x30\x04\x42\x04\x43\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x12\x4f\x43\x41\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\ -\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x04\x1e\ -\x04\x40\x04\x38\x04\x33\x04\x56\x04\x3d\x04\x30\x04\x3b\x04\x4c\ -\x04\x3d\x04\x38\x04\x39\x00\x20\x04\x3a\x04\x3e\x04\x3b\x04\x56\ -\x04\x40\x00\x20\x04\x42\x04\x30\x00\x20\x04\x42\x04\x3e\x04\x32\ -\x04\x49\x04\x38\x04\x3d\x04\x30\x00\x20\x04\x3b\x04\x56\x04\x3d\ -\x04\x56\x04\x57\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x4f\x72\ -\x69\x67\x69\x6e\x61\x6c\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\ -\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\ +\x01\x03\x00\x00\x00\x20\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\x20\x00\x72\x00\x6f\x00\x7a\x00\x76\x00\x72\x01\x7e\ +\x00\x65\x00\x6e\x00\xed\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ +\x49\x6d\x70\x6f\x72\x74\x20\x6c\x61\x79\x6f\x75\x74\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x18\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\x20\x00\x73\x00\x74\x00\x79\x00\x6c\x00\x75\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0c\x49\x6d\x70\x6f\x72\x74\x20\x73\ +\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x49\x00\x6d\ +\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x74\x00\x65\x00\x78\ +\x00\x74\x01\x6f\x00\x20\x00\x61\x00\x20\x00\x72\x00\x6f\x00\x7a\ +\x00\x6d\x01\x1b\x00\x72\x01\x6f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1b\x49\x6d\x70\x6f\x72\x74\x20\x74\x65\x78\x74\x73\x20\x61\ +\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x1e\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x00\x20\x00\x61\x00\x20\x00\x45\x00\x78\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x49\x6d\x70\ +\x6f\x72\x74\x2f\x45\x78\x70\x6f\x72\x74\x07\x00\x00\x00\x1d\x47\ \x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ \x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x0a\x00\x52\x00\x69\x00\x67\x00\x68\x00\x74\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x05\x52\x69\x67\x68\x74\x07\x00\x00\x00\x1d\ +\x00\x30\x00\x49\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\ +\x00\x6c\x00\x20\x00\x70\x00\x72\x00\x65\x00\x63\x00\x69\x00\x73\ +\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6c\x00\x65\x00\x76\x00\x65\ +\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x49\x6e\x74\x65\ +\x72\x6e\x61\x6c\x20\x70\x72\x65\x63\x69\x73\x69\x6f\x6e\x20\x6c\ +\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x53\x00\x70\ +\x00\x6f\x00\x6a\x00\x69\x00\x74\x00\x20\x00\x67\x00\x65\x00\x6f\ +\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x4a\x6f\x69\x6e\x20\x67\x65\x6f\x6d\x65\ +\x74\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x4c\x00\x65\x00\ +\x66\x00\x74\x00\x20\x00\x28\x00\x49\x00\x53\x00\x4f\x00\x20\x00\ +\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\ +\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x4c\x65\x66\x74\x20\ +\x28\x49\x53\x4f\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x29\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x26\x00\x48\x00\x6c\x00\x61\x00\x76\x00\x6e\ +\x00\xed\x00\x20\x01\x0d\x00\xe1\x00\x72\x00\x79\x00\x20\x00\x6b\ +\x00\x61\x01\x7e\x00\x64\x00\xfd\x00\x63\x00\x68\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x10\x4d\x61\x69\x6e\x20\x6c\x69\x6e\x65\x73\ +\x20\x65\x76\x65\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa2\x00\x4d\ +\x00\x61\x00\x69\x00\x6e\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x73\ +\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\ +\x00\x20\x00\x64\x00\x72\x00\x61\x00\x77\x00\x6e\x00\x20\x00\x74\ +\x00\x68\x00\x69\x00\x63\x00\x6b\x00\x65\x00\x72\x00\x2e\x00\x20\ +\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x79\x00\x20\ +\x00\x68\x00\x65\x00\x72\x00\x65\x00\x20\x00\x68\x00\x6f\x00\x77\ +\x00\x20\x00\x6d\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x71\ +\x00\x75\x00\x61\x00\x72\x00\x65\x00\x73\x00\x20\x00\x62\x00\x65\ +\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x61\ +\x00\x69\x00\x6e\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x2e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x4d\x61\x69\x6e\x6c\x69\ +\x6e\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x72\x61\x77\ +\x6e\x20\x74\x68\x69\x63\x6b\x65\x72\x2e\x20\x53\x70\x65\x63\x69\ +\x66\x79\x20\x68\x65\x72\x65\x20\x68\x6f\x77\x20\x6d\x61\x6e\x79\ +\x20\x73\x71\x75\x61\x72\x65\x73\x20\x62\x65\x74\x77\x65\x65\x6e\ +\x20\x6d\x61\x69\x6e\x6c\x69\x6e\x65\x73\x2e\x07\x00\x00\x00\x1d\ \x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ \x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x2a\x04\x1f\x04\x30\x04\x40\x04\x30\x04\x3c\x04\x35\x04\ -\x42\x04\x40\x04\x38\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x04\ -\x44\x04\x3e\x04\x40\x04\x3c\x04\x30\x04\x42\x04\x43\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x12\x53\x56\x47\x20\x66\x6f\x72\x6d\x61\ -\x74\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x60\x00\x53\x00\x61\x00\x76\x00\x65\x00\x20\x00\x63\x00\x75\x00\ -\x72\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x63\x00\x6f\x00\ -\x6c\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\ -\x6c\x00\x69\x00\x6e\x00\x65\x00\x77\x00\x69\x00\x64\x00\x74\x00\ -\x68\x00\x20\x00\x61\x00\x63\x00\x72\x00\x6f\x00\x73\x00\x73\x00\ -\x20\x00\x73\x00\x65\x00\x73\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\ -\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x53\x61\x76\x65\x20\ -\x63\x75\x72\x72\x65\x6e\x74\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\ -\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\x61\x63\x72\x6f\ -\x73\x73\x20\x73\x65\x73\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x42\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ -\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x66\x00\ -\x74\x00\x65\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x79\x00\ -\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x53\ -\x65\x6c\x65\x63\x74\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\ -\x74\x73\x20\x61\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\x6e\x67\ +\x00\x00\x26\x00\x4d\x00\x61\x00\x78\x00\x20\x00\x6b\x01\x59\x00\ +\x69\x00\x76\x00\x6b\x00\x61\x00\x20\x00\x73\x00\x65\x00\x67\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x12\x4d\x61\x78\x20\x53\x70\x6c\x69\x6e\x65\x20\x53\x65\ +\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x4d\x00\ +\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x6e\x00\ +\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\ +\x20\x00\x65\x00\x64\x00\x67\x00\x65\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x17\x4d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\ +\x62\x65\x72\x20\x6f\x66\x20\x65\x64\x67\x65\x73\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x6a\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\ +\x00\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x65\x00\x64\x00\x67\x00\x65\ +\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x65\x00\x20\ +\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\ +\x00\x65\x00\x64\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x73\ +\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\x67\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x35\x4d\x61\x78\x69\x6d\x75\x6d\x20\ +\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x65\x64\x67\x65\x73\x20\ +\x74\x6f\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\ +\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0a\x01\x7d\x00\xe1\x00\x64\x00\x6e\x00\xfd\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x26\x00\x4e\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\ +\x28\x00\x6e\x00\x65\x00\x6a\x00\x72\x00\x79\x00\x63\x00\x68\x00\ +\x6c\x00\x65\x00\x6a\x01\x61\x00\xed\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0e\x4e\x6f\x6e\x65\x20\x28\x66\x61\x73\x74\x65\ +\x73\x74\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xfe\x00\x4e\x00\x6f\x00\ +\x72\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\x79\x00\x2c\x00\x20\x00\ +\x61\x00\x66\x00\x74\x00\x65\x00\x72\x00\x20\x00\x63\x00\x6f\x00\ +\x70\x00\x79\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x2c\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x65\x00\ +\x73\x00\x20\x00\x67\x00\x65\x00\x74\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x2e\x00\x20\x00\ +\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x6f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\ +\x64\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x62\x00\ +\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\ +\x20\x00\x62\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\x73\x00\ +\x74\x00\x65\x00\x61\x00\x64\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x7f\x4e\x6f\x72\x6d\x61\x6c\x6c\x79\x2c\x20\x61\x66\x74\ +\x65\x72\x20\x63\x6f\x70\x79\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x2c\x20\x74\x68\x65\x20\x63\x6f\x70\x69\x65\x73\x20\x67\ +\x65\x74\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x2e\x20\x49\x66\x20\ +\x74\x68\x69\x73\x20\x6f\x70\x74\x69\x6f\x6e\x20\x69\x73\x20\x63\ +\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x62\x61\x73\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x69\x6e\x73\x74\x65\x61\ +\x64\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x4d\x00\x6f\x01\x7e\ +\x00\x6e\x00\x6f\x00\x73\x00\x74\x00\x69\x00\x20\x00\x66\x00\x6f\ +\x00\x72\x00\x6d\x00\xe1\x00\x74\x00\x75\x00\x20\x00\x4f\x00\x43\ +\x00\x41\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4f\x43\x41\x20\ +\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x34\x00\x50\x01\x6f\x00\x76\x00\x6f\x00\x64\ +\x00\x6e\x00\xed\x00\x20\x00\x62\x00\x61\x00\x72\x00\x76\x00\x61\ +\x00\x20\x00\x61\x00\x20\x01\x61\x00\xed\x01\x59\x00\x6b\x00\x61\ +\x00\x20\x01\x0d\x00\xe1\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1c\x4f\x72\x69\x67\x69\x6e\x61\x6c\x20\x63\x6f\x6c\ +\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\ \x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ \x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x0c\x04\x21\x04\x3b\x04\x35\x04\x48\ -\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\ -\x61\x73\x68\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x04\x21\x04\ -\x3b\x04\x35\x04\x48\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x07\x53\x6c\x61\x73\x68\x20\x37\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x0c\x04\x21\x04\x3b\x04\x35\x04\x48\x00\x20\x00\x39\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\x20\x39\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x20\x04\x1a\x04\x3e\x04\x3b\x04\x56\x04\ -\x40\x00\x20\x04\x37\x04\x30\x04\x45\x04\x3e\x04\x3f\x04\x3b\x04\ -\x35\x04\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0a\x53\x6e\x61\x70\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x10\x00\x53\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6d\x00\ -\x6f\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x53\x6e\x61\ -\x70\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x53\x00\ -\x6e\x00\x61\x00\x70\x00\x20\x00\x72\x00\x61\x00\x6e\x00\x67\x00\ -\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x6e\x61\x70\x20\ -\x72\x61\x6e\x67\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x54\x00\ -\x61\x00\x73\x00\x6b\x00\x76\x00\x69\x00\x65\x00\x77\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x08\x54\x61\x73\x6b\x76\x69\x65\x77\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x3a\x00\x54\x00\x68\x00\x65\x00\x20\x00\ -\x43\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\ -\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\ -\x69\x00\x66\x00\x69\x00\x65\x00\x72\x00\x20\x00\x6b\x00\x65\x00\ -\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x54\x68\x65\x20\x43\ -\x6f\x6e\x73\x74\x72\x61\x69\x6e\x69\x6e\x67\x20\x6d\x6f\x64\x69\ -\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\ -\x00\x54\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x74\x00\x20\ -\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x72\ -\x00\x20\x00\x6b\x00\x65\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x14\x54\x68\x65\x20\x61\x6c\x74\x20\x6d\x6f\x64\x69\x66\x69\ -\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x90\x04\x24\ -\x04\x30\x04\x39\x04\x3b\x00\x20\x04\x41\x04\x3f\x04\x56\x04\x32\ -\x04\x41\x04\x42\x04\x30\x04\x32\x04\x3b\x04\x35\x04\x3d\x04\x3d\ -\x04\x4f\x00\x20\x04\x3a\x04\x3e\x04\x3b\x04\x4c\x04\x3e\x04\x40\ -\x04\x43\x00\x2c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\ -\x04\x35\x04\x40\x04\x35\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x35\ -\x04\x3d\x04\x3d\x04\x4f\x00\x20\x00\x64\x00\x78\x00\x66\x00\x20\ -\x04\x3a\x04\x3e\x04\x3b\x04\x4c\x04\x3e\x04\x40\x04\x56\x04\x32\ -\x00\x20\x04\x32\x00\x20\x04\x48\x04\x38\x04\x40\x04\x38\x04\x3d\ -\x04\x43\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\x56\x04\x39\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x41\x54\x68\x65\x20\x63\x6f\x6c\x6f\ -\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x20\x66\ -\x6f\x72\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6e\x67\x20\x64\ -\x78\x66\x20\x63\x6f\x6c\x6f\x72\x73\x20\x69\x6e\x74\x6f\x20\x6c\ -\x69\x6e\x65\x77\x69\x64\x74\x68\x73\x07\x00\x00\x00\x1d\x47\x75\ +\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x52\x00\x61\x00\x77\x00\x20\ +\x00\x28\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x43\x00\x41\x00\x4d\ +\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x52\x61\x77\x20\ +\x28\x66\x6f\x72\x20\x43\x41\x4d\x29\x07\x00\x00\x00\x1d\x47\x75\ \x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ \x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x92\x04\x21\x04\x42\x04\x30\x04\x3d\x04\x34\x04\x30\x04\x40\x04\ -\x42\x04\x3d\x04\x38\x04\x39\x00\x20\x04\x48\x04\x30\x04\x31\x04\ -\x3b\x04\x3e\x04\x3d\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\ -\x32\x04\x38\x04\x3a\x04\x3e\x04\x40\x04\x38\x04\x41\x04\x42\x04\ -\x30\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x00\ -\x20\x04\x41\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x35\x04\x3d\x04\ -\x3d\x04\x56\x00\x20\x04\x3d\x04\x3e\x04\x32\x04\x3e\x04\x33\x04\ -\x3e\x00\x20\x04\x30\x04\x40\x04\x3a\x04\x43\x04\x48\x04\x30\x00\ -\x20\x04\x3a\x04\x40\x04\x35\x04\x41\x04\x3b\x04\x35\x04\x3d\x04\ -\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3d\x54\x68\x65\ +\x36\x00\x52\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\ +\x70\x00\x6f\x00\x6c\x00\x79\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\ +\x73\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x77\x00\ +\x69\x00\x64\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1b\x52\x65\x6e\x64\x65\x72\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\ +\x73\x20\x77\x69\x74\x68\x20\x77\x69\x64\x74\x68\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0c\x00\x56\x00\x70\x00\x72\x00\x61\x00\x76\x00\x6f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x52\x69\x67\x68\x74\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x28\x00\x4d\x00\x6f\x01\x7e\x00\x6e\x00\ +\x6f\x00\x73\x00\x74\x00\x69\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x6d\x00\xe1\x00\x74\x00\x75\x00\x20\x00\x53\x00\x56\x00\x47\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x12\x53\x56\x47\x20\x66\x6f\x72\ +\x6d\x61\x74\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x52\x00\x55\x00\x6c\x00\x6f\x01\x7e\x00\x69\x00\x74\x00\ +\x20\x00\x61\x00\x6b\x00\x74\x00\x75\x00\xe1\x00\x6c\x00\x6e\x00\ +\xed\x00\x20\x00\x62\x00\x61\x00\x72\x00\x76\x00\x79\x00\x20\x00\ +\x61\x00\x20\x01\x0d\x00\xe1\x00\x72\x00\x79\x00\x20\x00\x62\x01\ +\x1b\x00\x68\x00\x65\x00\x6d\x00\x20\x00\x73\x00\x65\x00\x7a\x00\ +\x65\x00\x6e\x00\xed\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x53\ +\x61\x76\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x63\x6f\x6c\x6f\ +\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\ +\x61\x63\x72\x6f\x73\x73\x20\x73\x65\x73\x73\x69\x6f\x6e\x73\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x42\x00\x53\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ +\x61\x00\x66\x00\x74\x00\x65\x00\x72\x00\x20\x00\x63\x00\x6f\x00\ +\x70\x00\x79\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x21\x53\x65\x6c\x65\x63\x74\x20\x62\x61\x73\x65\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x20\x61\x66\x74\x65\x72\x20\x63\x6f\x70\ +\x79\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x53\x00\x68\ +\x00\x6f\x00\x77\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\ +\x00\x20\x00\x53\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x74\x00\x6f\ +\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x17\x53\x68\x6f\x77\x20\x44\x72\x61\x66\x74\x20\x53\ +\x6e\x61\x70\x20\x74\x6f\x6f\x6c\x62\x61\x72\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x34\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x57\x00\ +\x6f\x00\x72\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x50\x00\ +\x6c\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x72\x00\x61\x00\ +\x63\x00\x6b\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1a\x53\x68\x6f\x77\x20\x57\x6f\x72\x6b\x69\x6e\x67\x20\x50\x6c\ +\x61\x6e\x65\x20\x74\x72\x61\x63\x6b\x65\x72\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x12\x00\x4c\x00\x6f\x00\x6d\x00\xed\x00\x74\x00\x6b\x00\ +\x6f\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\ +\x6c\x61\x73\x68\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x4c\ +\x00\x6f\x00\x6d\x00\xed\x00\x74\x00\x6b\x00\x6f\x00\x20\x00\x37\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\x20\ +\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x4c\x00\x6f\x00\x6d\x00\ +\xed\x00\x74\x00\x6b\x00\x6f\x00\x20\x00\x39\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\x20\x39\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x20\x00\x70\x01\x59\x00\x69\x00\x74\x00\xe1\x00\x68\ +\x00\x6e\x00\x6f\x00\x75\x00\x74\x00\x20\x00\x62\x00\x61\x00\x72\ +\x00\x76\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x6e\ +\x61\x70\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\ +\x00\x53\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6d\x00\x61\x00\x78\ +\x00\x69\x00\x6d\x00\x75\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0c\x53\x6e\x61\x70\x20\x6d\x61\x78\x69\x6d\x75\x6d\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x20\x00\x4d\x00\xf3\x00\x64\x00\x20\x00\x70\ +\x01\x59\x00\x69\x00\x63\x00\x68\x00\x79\x00\x74\x00\xe1\x00\x76\ +\x00\xe1\x00\x6e\x00\xed\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\ +\x53\x6e\x61\x70\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\ +\x00\x53\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x72\x00\x61\x00\x6e\ +\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x6e\ +\x61\x70\x20\x72\x61\x6e\x67\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x66\ +\x00\x53\x00\x74\x00\x79\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x66\x00\x69\x00\x6c\ +\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x77\x00\x72\x00\x69\ +\x00\x74\x00\x65\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\ +\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x61\x00\x20\x00\x53\x00\x6b\x00\x65\x00\x74\ +\x00\x63\x00\x68\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\ +\x53\x74\x79\x6c\x65\x20\x6f\x66\x20\x53\x56\x47\x20\x66\x69\x6c\ +\x65\x20\x74\x6f\x20\x77\x72\x69\x74\x65\x20\x77\x68\x65\x6e\x20\ +\x65\x78\x70\x6f\x72\x74\x69\x6e\x67\x20\x61\x20\x53\x6b\x65\x74\ +\x63\x68\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x54\x00\x61\x00\ +\x73\x00\x6b\x00\x76\x00\x69\x00\x65\x00\x77\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x54\x61\x73\x6b\x76\x69\x65\x77\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x3a\x00\x54\x00\x68\x00\x65\x00\x20\x00\x43\x00\ +\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\ +\x66\x00\x69\x00\x65\x00\x72\x00\x20\x00\x6b\x00\x65\x00\x79\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x54\x68\x65\x20\x43\x6f\x6e\ +\x73\x74\x72\x61\x69\x6e\x69\x6e\x67\x20\x6d\x6f\x64\x69\x66\x69\ +\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x54\ +\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x74\x00\x20\x00\x6d\ +\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x72\x00\x20\ +\x00\x6b\x00\x65\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\ +\x54\x68\x65\x20\x61\x6c\x74\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\ +\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x70\x00\x53\x00\x6f\ +\x00\x75\x00\x62\x00\x6f\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x70\ +\x00\x6f\x00\x76\x00\xe1\x00\x6e\x00\xed\x00\x20\x00\x62\x00\x61\ +\x00\x72\x00\x65\x00\x76\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x20\ +\x00\x70\x01\x59\x00\x65\x00\x76\x00\x6f\x00\x64\x00\x20\x00\x62\ +\x00\x61\x00\x72\x00\x65\x00\x76\x00\x20\x00\x64\x00\x78\x00\x66\ +\x00\x20\x00\x64\x00\x6f\x00\x20\x01\x61\x00\xed\x01\x59\x00\x6b\ +\x00\x79\x00\x20\x01\x0d\x00\xe1\x00\x72\x00\x79\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x41\x54\x68\x65\x20\x63\x6f\x6c\x6f\x72\x20\ +\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x20\x66\x6f\x72\ +\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6e\x67\x20\x64\x78\x66\ +\x20\x63\x6f\x6c\x6f\x72\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\ +\x65\x77\x69\x64\x74\x68\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x84\x00\ +\x56\x00\xfd\x00\x63\x00\x68\x00\x6f\x00\x7a\x00\xed\x00\x20\x01\ +\x61\x00\x61\x00\x62\x00\x6c\x00\x6f\x00\x6e\x00\x61\x00\x20\x00\ +\x70\x00\x72\x00\x6f\x00\x20\x00\x70\x00\x6f\x00\x75\x01\x7e\x00\ +\x69\x00\x74\x00\xed\x00\x20\x00\x70\x01\x59\x00\x69\x00\x20\x00\ +\x76\x00\x79\x00\x74\x00\x76\x00\xe1\x01\x59\x00\x65\x00\x6e\x00\ +\xed\x00\x20\x00\x6e\x00\x6f\x00\x76\x00\xe9\x00\x68\x00\x6f\x00\ +\x20\x00\x76\x00\xfd\x00\x6b\x00\x72\x00\x65\x00\x73\x00\x6f\x00\ +\x76\x00\xe9\x00\x68\x00\x6f\x00\x20\x00\x6c\x00\x69\x00\x73\x00\ +\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3d\x54\x68\x65\ \x20\x64\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x6d\x70\x6c\x61\x74\ \x65\x20\x74\x6f\x20\x75\x73\x65\x20\x77\x68\x65\x6e\x20\x63\x72\ \x65\x61\x74\x69\x6e\x67\x20\x61\x20\x6e\x65\x77\x20\x64\x72\x61\ \x77\x69\x6e\x67\x20\x73\x68\x65\x65\x74\x07\x00\x00\x00\x1d\x47\ \x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ \x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x8e\x04\x1a\x04\x56\x04\x3b\x04\x4c\x04\x3a\x04\x56\x04\x41\ -\x04\x42\x04\x4c\x00\x20\x04\x34\x04\x35\x04\x41\x04\x4f\x04\x42\ -\x04\x38\x04\x3d\x04\x3d\x04\x38\x04\x45\x00\x20\x04\x37\x04\x3d\ -\x04\x30\x04\x3a\x04\x56\x04\x32\x00\x20\x04\x43\x00\x20\x04\x32\ -\x04\x3d\x04\x43\x04\x42\x04\x40\x04\x56\x04\x48\x04\x3d\x04\x56\ -\x04\x45\x00\x20\x04\x3e\x04\x3f\x04\x35\x04\x40\x04\x30\x04\x46\ -\x04\x56\x04\x4f\x04\x45\x00\x20\x00\x28\x04\x3f\x04\x40\x04\x38\ -\x04\x3a\x04\x3b\x04\x30\x04\x34\x00\x3a\x00\x20\x00\x33\x00\x20\ -\x00\x3d\x00\x20\x00\x30\x00\x2c\x00\x30\x00\x30\x00\x31\x00\x29\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x54\x68\x65\x20\x6e\x75\ -\x6d\x62\x65\x72\x20\x6f\x66\x20\x64\x65\x63\x69\x6d\x61\x6c\x73\ -\x20\x69\x6e\x20\x69\x6e\x74\x65\x72\x6e\x61\x6c\x20\x63\x6f\x6f\ -\x72\x64\x69\x6e\x61\x74\x65\x73\x20\x6f\x70\x65\x72\x61\x74\x69\ -\x6f\x6e\x73\x20\x28\x66\x6f\x72\x20\x65\x78\x2e\x20\x33\x20\x3d\ -\x20\x30\x2e\x30\x30\x31\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x9c\x00\ -\x54\x00\x68\x00\x65\x00\x20\x00\x72\x00\x61\x00\x64\x00\x69\x00\ -\x75\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x73\x00\ -\x6e\x00\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ -\x74\x00\x6f\x00\x20\x00\x73\x00\x70\x00\x65\x00\x63\x00\x69\x00\ -\x61\x00\x6c\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\ -\x73\x00\x2e\x00\x20\x00\x53\x00\x65\x00\x74\x00\x20\x00\x74\x00\ -\x6f\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\ -\x6e\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x73\x00\x74\x00\x61\x00\ -\x6e\x00\x63\x00\x65\x00\x20\x00\x28\x00\x69\x00\x6e\x00\x66\x00\ -\x69\x00\x6e\x00\x69\x00\x74\x00\x65\x00\x29\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x4e\x54\x68\x65\x20\x72\x61\x64\x69\x75\x73\x20\ -\x66\x6f\x72\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x20\x74\x6f\x20\ -\x73\x70\x65\x63\x69\x61\x6c\x20\x70\x6f\x69\x6e\x74\x73\x2e\x20\ -\x53\x65\x74\x20\x74\x6f\x20\x30\x20\x66\x6f\x72\x20\x6e\x6f\x20\ -\x64\x69\x73\x74\x61\x6e\x63\x65\x20\x28\x69\x6e\x66\x69\x6e\x69\ -\x74\x65\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x54\x00\x68\x00\ -\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6d\x00\ -\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x72\x00\x20\x00\ -\x6b\x00\x65\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x54\ -\x68\x65\x20\x73\x6e\x61\x70\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\ -\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\x00\x54\x00\x68\ -\x00\x65\x00\x20\x00\x73\x00\x70\x00\x61\x00\x63\x00\x69\x00\x6e\ -\x00\x67\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\ -\x00\x6e\x00\x20\x00\x65\x00\x61\x00\x63\x00\x68\x00\x20\x00\x67\ -\x00\x72\x00\x69\x00\x64\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x54\x68\x65\x20\x73\x70\ -\x61\x63\x69\x6e\x67\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x65\x61\ -\x63\x68\x20\x67\x72\x69\x64\x20\x6c\x69\x6e\x65\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x01\x9e\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\ -\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x55\x00\x49\ -\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x69\x00\x6e\ -\x00\x20\x00\x77\x00\x68\x00\x69\x00\x63\x00\x68\x00\x20\x00\x74\ -\x00\x68\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\ -\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x6c\x00\x65\x00\x20\ -\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x77\x00\x6f\x00\x72\ -\x00\x6b\x00\x3a\x00\x20\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x62\ -\x00\x61\x00\x72\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\ -\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x70\x00\x6c\x00\x61\ -\x00\x63\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x44\ -\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x73\x00\x65\x00\x74\ -\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x20\x00\x69\x00\x6e\ -\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x70\x00\x61\x00\x72\ -\x00\x61\x00\x74\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\ -\x00\x62\x00\x61\x00\x72\x00\x2c\x00\x20\x00\x77\x00\x68\x00\x69\ -\x00\x6c\x00\x65\x00\x20\x00\x74\x00\x61\x00\x73\x00\x6b\x00\x62\ -\x00\x61\x00\x72\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\ -\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x75\x00\x73\x00\x65\ -\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x72\x00\x65\ -\x00\x65\x00\x43\x00\x41\x00\x44\x00\x20\x00\x54\x00\x61\x00\x73\ -\x00\x6b\x00\x76\x00\x69\x00\x65\x00\x77\x00\x20\x00\x73\x00\x79\ -\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x20\x00\x66\x00\x6f\x00\x72\ -\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x74\x00\x73\ -\x00\x20\x00\x75\x00\x73\x00\x65\x00\x72\x00\x20\x00\x69\x00\x6e\ -\x00\x74\x00\x65\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\x00\x6f\ -\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\xcf\x54\x68\x69\x73\ -\x20\x69\x73\x20\x74\x68\x65\x20\x55\x49\x20\x6d\x6f\x64\x65\x20\ -\x69\x6e\x20\x77\x68\x69\x63\x68\x20\x74\x68\x65\x20\x44\x72\x61\ -\x66\x74\x20\x6d\x6f\x64\x75\x6c\x65\x20\x77\x69\x6c\x6c\x20\x77\ -\x6f\x72\x6b\x3a\x20\x54\x6f\x6f\x6c\x62\x61\x72\x20\x6d\x6f\x64\ -\x65\x20\x77\x69\x6c\x6c\x20\x70\x6c\x61\x63\x65\x20\x61\x6c\x6c\ -\x20\x44\x72\x61\x66\x74\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x20\ -\x69\x6e\x20\x61\x20\x73\x65\x70\x61\x72\x61\x74\x65\x20\x74\x6f\ -\x6f\x6c\x62\x61\x72\x2c\x20\x77\x68\x69\x6c\x65\x20\x74\x61\x73\ -\x6b\x62\x61\x72\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x75\ -\x73\x65\x20\x74\x68\x65\x20\x46\x72\x65\x65\x43\x41\x44\x20\x54\ -\x61\x73\x6b\x76\x69\x65\x77\x20\x73\x79\x73\x74\x65\x6d\x20\x66\ -\x6f\x72\x20\x61\x6c\x6c\x20\x69\x74\x73\x20\x75\x73\x65\x72\x20\ -\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x82\x04\x21\x04\x42\x04\x30\x04\x3d\x04\x34\x04\x30\x04\ -\x40\x04\x42\x04\x3d\x04\x38\x04\x39\x00\x20\x04\x3a\x04\x3e\x04\ -\x3b\x04\x56\x04\x40\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\ -\x3e\x04\x31\x20\x19\x04\x54\x04\x3a\x04\x42\x04\x56\x04\x32\x00\ -\x20\x04\x41\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x4e\x04\x32\x04\ -\x30\x04\x3d\x04\x38\x04\x45\x00\x20\x04\x32\x00\x20\x04\x40\x04\ -\x35\x04\x36\x04\x38\x04\x3c\x04\x56\x00\x20\x04\x3a\x04\x3e\x04\ -\x3d\x04\x41\x04\x42\x04\x40\x04\x43\x04\x3a\x04\x42\x04\x3e\x04\ -\x40\x04\x30\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x54\ -\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\ -\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6f\x62\x6a\ -\x65\x63\x74\x73\x20\x62\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\ -\x20\x77\x68\x69\x6c\x65\x20\x69\x6e\x20\x63\x6f\x6e\x73\x74\x72\ -\x75\x63\x74\x69\x6f\x6e\x20\x6d\x6f\x64\x65\x2e\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x01\xce\x04\x26\x04\x35\x00\x20\x04\x41\x04\x42\x04\x30\ -\x04\x3d\x04\x34\x04\x30\x04\x40\x04\x42\x04\x3d\x04\x38\x04\x39\ -\x00\x20\x04\x48\x04\x40\x04\x38\x04\x44\x04\x42\x00\x20\x04\x34\ -\x04\x3b\x04\x4f\x00\x20\x04\x3c\x04\x30\x04\x3b\x04\x4e\x04\x32\ -\x04\x30\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x42\x04\x35\x04\x3a\ -\x04\x41\x04\x42\x04\x43\x00\x20\x04\x42\x04\x30\x00\x20\x04\x40\ -\x04\x3e\x04\x37\x04\x3c\x04\x56\x04\x40\x04\x3d\x04\x3e\x04\x41\ -\x04\x42\x04\x35\x04\x39\x00\x2e\x00\x0a\x04\x26\x04\x35\x00\x20\ -\x04\x3c\x04\x3e\x04\x36\x04\x35\x00\x20\x04\x31\x04\x43\x04\x42\ -\x04\x38\x00\x20\x04\x56\x04\x3c\x20\x19\x04\x4f\x00\x20\x04\x48\ -\x04\x40\x04\x38\x04\x44\x04\x42\x04\x43\x00\x20\x04\x4f\x04\x3a\ -\x00\x20\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x22\ -\x00\x2c\x00\x20\x04\x41\x04\x42\x04\x30\x04\x3d\x04\x34\x04\x30\ -\x04\x40\x04\x42\x04\x3d\x04\x38\x04\x39\x00\x20\x04\x41\x04\x42\ -\x04\x38\x04\x3b\x04\x4c\x00\x20\x00\x2d\x00\x20\x04\x4f\x04\x3a\ -\x00\x20\x00\x22\x00\x73\x00\x61\x00\x6e\x00\x73\x00\x22\x00\x2c\ -\x00\x20\x00\x22\x00\x73\x00\x65\x00\x72\x00\x69\x00\x66\x00\x22\ -\x00\x0a\x04\x30\x04\x31\x04\x3e\x00\x20\x00\x22\x00\x6d\x00\x6f\ -\x00\x6e\x00\x6f\x00\x22\x00\x2c\x00\x20\x04\x30\x04\x31\x04\x3e\ -\x00\x20\x04\x41\x04\x56\x04\x3c\x04\x35\x04\x39\x04\x41\x04\x42\ -\x04\x32\x04\x3e\x00\x20\x04\x48\x04\x40\x04\x38\x04\x44\x04\x42\ -\x04\x56\x04\x32\x00\x20\x04\x4f\x04\x3a\x00\x20\x00\x22\x00\x41\ -\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x2c\x00\x48\x00\x65\x00\x6c\ -\x00\x76\x00\x65\x00\x74\x00\x69\x00\x63\x00\x61\x00\x2c\x00\x73\ -\x00\x61\x00\x6e\x00\x73\x00\x22\x00\x2c\x00\x20\x04\x47\x04\x38\ -\x00\x20\x04\x56\x04\x3c\x20\x19\x04\x4f\x00\x20\x04\x56\x04\x37\ -\x00\x0a\x04\x41\x04\x42\x04\x38\x04\x3b\x04\x35\x04\x3c\x00\x20\ -\x00\x2d\x00\x20\x04\x4f\x04\x3a\x00\x20\x00\x22\x00\x41\x00\x72\ -\x00\x69\x00\x61\x00\x6c\x00\x3a\x00\x42\x00\x6f\x00\x6c\x00\x64\ +\x00\x9c\x00\x50\x00\x6f\x01\x0d\x00\x65\x00\x74\x00\x20\x00\x64\ +\x00\x65\x00\x73\x00\x65\x00\x74\x00\x69\x00\x6e\x00\x6e\x00\xfd\ +\x00\x63\x00\x68\x00\x20\x00\x6d\x00\xed\x00\x73\x00\x74\x00\x20\ +\x00\x76\x00\x65\x00\x20\x00\x76\x00\x6e\x00\x69\x00\x74\x01\x59\ +\x00\x6e\x00\xed\x00\x63\x00\x68\x00\x20\x00\x73\x00\x6f\x00\x75\ +\x01\x59\x00\x61\x00\x64\x00\x6e\x00\x69\x00\x63\x00\x6f\x00\x76\ +\x00\xfd\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x72\ +\x00\x61\x00\x63\x00\xed\x00\x63\x00\x68\x00\x20\x00\x28\x00\x6e\ +\x00\x61\x00\x70\x01\x59\x00\x2e\x00\x20\x00\x33\x00\x20\x00\x3d\ +\x00\x20\x00\x30\x00\x2c\x00\x30\x00\x30\x00\x31\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x4d\x54\x68\x65\x20\x6e\x75\x6d\x62\ +\x65\x72\x20\x6f\x66\x20\x64\x65\x63\x69\x6d\x61\x6c\x73\x20\x69\ +\x6e\x20\x69\x6e\x74\x65\x72\x6e\x61\x6c\x20\x63\x6f\x6f\x72\x64\ +\x69\x6e\x61\x74\x65\x73\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\ +\x73\x20\x28\x66\x6f\x72\x20\x65\x78\x2e\x20\x33\x20\x3d\x20\x30\ +\x2e\x30\x30\x31\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x9c\x00\x54\x00\ +\x68\x00\x65\x00\x20\x00\x72\x00\x61\x00\x64\x00\x69\x00\x75\x00\ +\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x6e\x00\ +\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\ +\x6f\x00\x20\x00\x73\x00\x70\x00\x65\x00\x63\x00\x69\x00\x61\x00\ +\x6c\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\x00\ +\x2e\x00\x20\x00\x53\x00\x65\x00\x74\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\ +\x6f\x00\x20\x00\x64\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6e\x00\ +\x63\x00\x65\x00\x20\x00\x28\x00\x69\x00\x6e\x00\x66\x00\x69\x00\ +\x6e\x00\x69\x00\x74\x00\x65\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x4e\x54\x68\x65\x20\x72\x61\x64\x69\x75\x73\x20\x66\x6f\ +\x72\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x20\x74\x6f\x20\x73\x70\ +\x65\x63\x69\x61\x6c\x20\x70\x6f\x69\x6e\x74\x73\x2e\x20\x53\x65\ +\x74\x20\x74\x6f\x20\x30\x20\x66\x6f\x72\x20\x6e\x6f\x20\x64\x69\ +\x73\x74\x61\x6e\x63\x65\x20\x28\x69\x6e\x66\x69\x6e\x69\x74\x65\ +\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x54\x00\x68\x00\x65\x00\ +\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6d\x00\x6f\x00\ +\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x72\x00\x20\x00\x6b\x00\ +\x65\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x54\x68\x65\ +\x20\x73\x6e\x61\x70\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\ +\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\x00\x54\x00\x68\x00\x65\ +\x00\x20\x00\x73\x00\x70\x00\x61\x00\x63\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\ +\x00\x20\x00\x65\x00\x61\x00\x63\x00\x68\x00\x20\x00\x67\x00\x72\ +\x00\x69\x00\x64\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x22\x54\x68\x65\x20\x73\x70\x61\x63\ +\x69\x6e\x67\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x65\x61\x63\x68\ +\x20\x67\x72\x69\x64\x20\x6c\x69\x6e\x65\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x01\x9e\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x55\x00\x49\x00\x20\ +\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x20\ +\x00\x77\x00\x68\x00\x69\x00\x63\x00\x68\x00\x20\x00\x74\x00\x68\ +\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\ +\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x6c\x00\x65\x00\x20\x00\x77\ +\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\ +\x00\x3a\x00\x20\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\ +\x00\x72\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x77\ +\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x63\ +\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x44\x00\x72\ +\x00\x61\x00\x66\x00\x74\x00\x20\x00\x73\x00\x65\x00\x74\x00\x74\ +\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x20\ +\x00\x61\x00\x20\x00\x73\x00\x65\x00\x70\x00\x61\x00\x72\x00\x61\ +\x00\x74\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\ +\x00\x61\x00\x72\x00\x2c\x00\x20\x00\x77\x00\x68\x00\x69\x00\x6c\ +\x00\x65\x00\x20\x00\x74\x00\x61\x00\x73\x00\x6b\x00\x62\x00\x61\ +\x00\x72\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x77\ +\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x75\x00\x73\x00\x65\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\ +\x00\x43\x00\x41\x00\x44\x00\x20\x00\x54\x00\x61\x00\x73\x00\x6b\ +\x00\x76\x00\x69\x00\x65\x00\x77\x00\x20\x00\x73\x00\x79\x00\x73\ +\x00\x74\x00\x65\x00\x6d\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ +\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x74\x00\x73\x00\x20\ +\x00\x75\x00\x73\x00\x65\x00\x72\x00\x20\x00\x69\x00\x6e\x00\x74\ +\x00\x65\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\xcf\x54\x68\x69\x73\x20\x69\ +\x73\x20\x74\x68\x65\x20\x55\x49\x20\x6d\x6f\x64\x65\x20\x69\x6e\ +\x20\x77\x68\x69\x63\x68\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\ +\x20\x6d\x6f\x64\x75\x6c\x65\x20\x77\x69\x6c\x6c\x20\x77\x6f\x72\ +\x6b\x3a\x20\x54\x6f\x6f\x6c\x62\x61\x72\x20\x6d\x6f\x64\x65\x20\ +\x77\x69\x6c\x6c\x20\x70\x6c\x61\x63\x65\x20\x61\x6c\x6c\x20\x44\ +\x72\x61\x66\x74\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x20\x69\x6e\ +\x20\x61\x20\x73\x65\x70\x61\x72\x61\x74\x65\x20\x74\x6f\x6f\x6c\ +\x62\x61\x72\x2c\x20\x77\x68\x69\x6c\x65\x20\x74\x61\x73\x6b\x62\ +\x61\x72\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x75\x73\x65\ +\x20\x74\x68\x65\x20\x46\x72\x65\x65\x43\x41\x44\x20\x54\x61\x73\ +\x6b\x76\x69\x65\x77\x20\x73\x79\x73\x74\x65\x6d\x20\x66\x6f\x72\ +\x20\x61\x6c\x6c\x20\x69\x74\x73\x20\x75\x73\x65\x72\x20\x69\x6e\ +\x74\x65\x72\x61\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x86\x00\x54\x00\x6f\x00\x74\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\ +\x20\x00\x76\x00\xfd\x00\x63\x00\x68\x00\x6f\x00\x7a\x00\xed\x00\ +\x20\x00\x62\x00\x61\x00\x72\x00\x76\x00\x61\x00\x20\x00\x70\x00\ +\x72\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x79\x00\x20\x00\x6e\x00\x61\x00\x6b\x00\x72\x00\x65\x00\ +\x73\x00\x6c\x00\x65\x00\x6e\x00\x61\x00\x20\x00\x76\x00\x20\x00\ +\x6b\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x01\ +\x0d\x00\x6e\x00\xed\x00\x6d\x00\x20\x00\x72\x00\x65\x01\x7e\x00\ +\x69\x00\x6d\x00\x75\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x4d\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\ +\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x20\x62\x65\x69\x6e\x67\x20\x64\x72\x61\ +\x77\x6e\x20\x77\x68\x69\x6c\x65\x20\x69\x6e\x20\x63\x6f\x6e\x73\ +\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x6d\x6f\x64\x65\x2e\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x02\x1c\x00\x54\x00\x6f\x00\x74\x00\x6f\x00\x20\ +\x00\x6a\x00\x65\x00\x20\x00\x76\x00\xfd\x00\x63\x00\x68\x00\x6f\ +\x00\x7a\x00\xed\x00\x20\x00\x6e\x00\xe1\x00\x7a\x00\x65\x00\x76\ +\x00\x20\x00\x70\x00\xed\x00\x73\x00\x6d\x00\x61\x00\x20\x00\x70\ +\x00\x72\x00\x6f\x00\x20\x00\x76\x01\x61\x00\x65\x00\x63\x00\x68\ +\x00\x6e\x00\x79\x00\x20\x00\x70\x00\x72\x00\x61\x00\x63\x00\x6f\ +\x00\x76\x00\x6e\x00\xed\x00\x20\x00\x76\x00\x65\x00\x72\x00\x7a\ +\x00\x65\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x01\x6f\x00\x20\ +\x00\x61\x00\x20\x00\x72\x00\x6f\x00\x7a\x00\x6d\x01\x1b\x00\x72\ +\x00\x79\x00\x2e\x00\x20\x00\x4e\x00\xe1\x00\x7a\x00\x65\x00\x76\ +\x00\x20\x00\x70\x00\xed\x00\x73\x00\x6d\x00\x61\x00\x2c\x00\x20\ +\x00\x6a\x00\x61\x00\x6b\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\x20\ +\x00\x6e\x00\x61\x00\x70\x01\x59\x00\xed\x00\x6b\x00\x6c\x00\x61\ +\x00\x64\x00\x20\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\ +\x00\x22\x00\x2c\x00\x20\x00\x76\x00\xfd\x00\x63\x00\x68\x00\x6f\ +\x00\x7a\x00\xed\x00\x20\x00\x73\x00\x74\x00\x79\x00\x6c\x00\x2c\ +\x00\x20\x00\x6a\x00\x61\x00\x6b\x00\x6f\x00\x20\x00\x6e\x00\x61\ +\x00\x70\x01\x59\x00\xed\x00\x6b\x00\x6c\x00\x61\x00\x64\x00\x20\ +\x00\x22\x00\x73\x00\x61\x00\x6e\x00\x73\x00\x22\x00\x2c\x00\x20\ +\x00\x22\x00\x73\x00\x65\x00\x72\x00\x69\x00\x66\x00\x22\x00\x20\ +\x00\x6e\x00\x65\x00\x62\x00\x6f\x00\x20\x00\x22\x00\x6d\x00\x6f\ +\x00\x6e\x00\x6f\x00\x22\x00\x20\x00\x6e\x00\x65\x00\x62\x00\x6f\ +\x00\x20\x00\x72\x00\x6f\x00\x64\x00\x69\x00\x6e\x00\x61\x00\x20\ +\x00\x6d\x01\x6f\x01\x7e\x00\x65\x00\x20\x00\x62\x00\xfd\x00\x74\ +\x00\x20\x00\x6e\x00\x61\x00\x70\x01\x59\x00\xed\x00\x6b\x00\x6c\ +\x00\x61\x00\x64\x00\x20\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\ +\x00\x6c\x00\x2c\x00\x20\x00\x48\x00\x65\x00\x6c\x00\x76\x00\x65\ +\x00\x74\x00\x69\x00\x63\x00\x61\x00\x2c\x00\x20\x00\x73\x00\x61\ +\x00\x6e\x00\x73\x00\x22\x00\x6e\x00\x65\x00\x62\x00\x6f\x00\x20\ +\x00\x6e\x00\xe1\x00\x7a\x00\x65\x00\x76\x00\x20\x00\x73\x00\x20\ +\x00\x73\x00\x74\x00\x79\x00\x6c\x00\x2c\x00\x20\x00\x6a\x00\x61\ +\x00\x6b\x00\x6f\x00\x20\x00\x6e\x00\x61\x00\x70\x01\x59\x00\xed\ +\x00\x6b\x00\x6c\x00\x61\x00\x64\x00\x22\x00\x41\x00\x72\x00\x69\ +\x00\x61\x00\x6c\x00\x3a\x00\x20\x00\x42\x00\x6f\x00\x6c\x00\x64\ \x00\x22\x08\x00\x00\x00\x00\x06\x00\x00\x00\xf2\x54\x68\x69\x73\ \x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\ \x66\x6f\x6e\x74\x20\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\x61\x6c\ @@ -3728,244 +45689,283 @@ qt_resource_data = "\ \x73\x20\x22\x41\x72\x69\x61\x6c\x3a\x42\x6f\x6c\x64\x22\x07\x00\ \x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ \x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x4a\x04\x21\x04\x42\x04\x30\x04\x3d\x04\x34\ -\x04\x30\x04\x40\x04\x42\x04\x3d\x04\x35\x00\x20\x04\x56\x04\x3c\ -\x20\x19\x04\x4f\x00\x20\x04\x33\x04\x40\x04\x43\x04\x3f\x04\x38\ -\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3a\x04\x3e\x04\x3d\ -\x04\x41\x04\x42\x04\x40\x04\x43\x04\x3a\x04\x46\x04\x56\x04\x57\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x54\x68\x69\x73\x20\x69\ -\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x67\x72\ -\x6f\x75\x70\x20\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\x63\x6f\x6e\ -\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x67\x65\x6f\x6d\x65\x74\ -\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x8e\x00\x54\x00\x68\x00\x69\ -\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\ -\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x68\x00\x6f\x00\x64\x00\x20\ -\x00\x63\x00\x68\x00\x6f\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x20\ -\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\ -\x00\x72\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x53\x00\x56\ -\x00\x47\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ -\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x69\ -\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\ -\x00\x43\x00\x41\x00\x44\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x47\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x65\ -\x74\x68\x6f\x64\x20\x63\x68\x6f\x6f\x73\x65\x64\x20\x66\x6f\x72\ -\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\x53\x56\x47\x20\x6f\ -\x62\x6a\x65\x63\x74\x20\x63\x6f\x6c\x6f\x72\x20\x69\x6e\x74\x6f\ -\x20\x46\x72\x65\x65\x43\x41\x44\x2e\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x02\ -\x30\x04\x1c\x04\x35\x04\x42\x04\x3e\x04\x34\x00\x20\x04\x49\x04\ -\x3e\x00\x20\x04\x32\x04\x38\x04\x3a\x04\x3e\x04\x40\x04\x38\x04\ -\x41\x04\x42\x04\x3e\x04\x32\x04\x43\x04\x54\x04\x42\x04\x4c\x04\ -\x41\x04\x4f\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\ -\x35\x04\x40\x04\x35\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x35\x04\ -\x3d\x04\x3d\x04\x4f\x00\x20\x04\x3a\x04\x3e\x04\x3b\x04\x4c\x04\ -\x3e\x04\x40\x04\x43\x00\x20\x04\x3e\x04\x31\x20\x19\x04\x54\x04\ -\x3a\x04\x42\x04\x30\x00\x20\x04\x37\x00\x20\x04\x44\x04\x3e\x04\ -\x40\x04\x3c\x04\x30\x04\x42\x04\x43\x00\x20\x00\x44\x00\x58\x00\ -\x46\x00\x20\x04\x43\x00\x20\x04\x44\x04\x3e\x04\x40\x04\x3c\x04\ -\x30\x04\x42\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\ -\x41\x00\x44\x00\x2e\x00\x0a\x04\x2f\x04\x3a\x04\x49\x04\x3e\x00\ -\x20\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3e\x00\x20\x04\ -\x3a\x04\x30\x04\x40\x04\x42\x04\x43\x00\x20\x04\x3f\x04\x35\x04\ -\x40\x04\x35\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x35\x04\x3d\x04\ -\x3d\x04\x4f\x00\x20\x00\x28\x04\x41\x04\x3f\x04\x56\x04\x32\x04\ -\x41\x04\x42\x04\x30\x04\x32\x04\x3b\x04\x35\x04\x3d\x04\x3d\x04\ -\x4f\x00\x29\x00\x20\x04\x3a\x04\x3e\x04\x3b\x04\x4c\x04\x3e\x04\ -\x40\x04\x43\x00\x2c\x00\x20\x04\x12\x04\x38\x00\x20\x04\x3f\x04\ -\x3e\x04\x32\x04\x38\x04\x3d\x04\x3d\x04\x56\x00\x20\x04\x3e\x04\ -\x31\x04\x40\x04\x30\x04\x42\x04\x38\x00\x20\x04\x44\x04\x30\x04\ -\x39\x04\x3b\x00\x20\x04\x3f\x04\x35\x04\x40\x04\x35\x04\x42\x04\ -\x32\x04\x3e\x04\x40\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\ -\x3a\x04\x3e\x04\x3b\x04\x4c\x04\x3e\x04\x40\x04\x43\x00\x2c\x00\ -\x20\x04\x49\x04\x3e\x00\x20\x04\x3c\x04\x56\x04\x41\x04\x42\x04\ -\x38\x04\x42\x04\x4c\x00\x20\x04\x42\x04\x30\x04\x31\x04\x3b\x04\ -\x38\x04\x46\x04\x4e\x00\x20\x04\x3f\x04\x35\x04\x40\x04\x35\x04\ -\x42\x04\x32\x04\x3e\x04\x40\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\ -\x2c\x00\x20\x04\x37\x04\x33\x04\x56\x04\x34\x04\x3d\x04\x3e\x00\ -\x20\x04\x4f\x04\x3a\x04\x3e\x04\x57\x00\x20\x04\x3a\x04\x3e\x04\ -\x3b\x04\x4c\x04\x3e\x04\x40\x04\x38\x00\x20\x04\x31\x04\x43\x04\ -\x34\x04\x43\x04\x42\x04\x4c\x00\x20\x04\x3f\x04\x35\x04\x40\x04\ -\x35\x04\x42\x04\x32\x04\x3e\x04\x40\x04\x35\x04\x3d\x04\x56\x00\ -\x20\x04\x32\x00\x20\x04\x42\x04\x3e\x04\x32\x04\x49\x04\x38\x04\ -\x3d\x04\x38\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\x56\x04\x39\x00\ -\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\xe3\x54\x68\x69\x73\x20\ -\x69\x73\x20\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x63\x68\ -\x6f\x6f\x73\x65\x64\x20\x66\x6f\x72\x20\x69\x6d\x70\x6f\x72\x74\ -\x69\x6e\x67\x20\x6f\x72\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\ -\x6e\x67\x20\x44\x58\x46\x20\x6f\x62\x6a\x65\x63\x74\x20\x63\x6f\ -\x6c\x6f\x72\x20\x69\x6e\x74\x6f\x20\x46\x72\x65\x65\x43\x41\x44\ -\x2e\x20\x0a\x49\x66\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\ -\x69\x6e\x67\x20\x69\x73\x20\x63\x68\x6f\x6f\x73\x65\x64\x2c\x20\ -\x79\x6f\x75\x20\x6d\x75\x73\x74\x20\x63\x68\x6f\x6f\x73\x65\x20\ -\x61\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\ -\x66\x69\x6c\x65\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\ -\x61\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6f\x6e\x20\x74\x61\ -\x62\x6c\x65\x20\x74\x68\x61\x74\x20\x77\x69\x6c\x6c\x20\x63\x6f\ -\x6e\x76\x65\x72\x74\x20\x63\x6f\x6c\x6f\x72\x73\x20\x69\x6e\x74\ -\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x73\x2e\x0a\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\xfc\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\ -\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6f\ -\x00\x72\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x74\x00\x69\ -\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\ -\x00\x65\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\ -\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\ -\x00\x73\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x74\ -\x00\x68\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x64\x00\x69\x00\x6d\ -\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\ -\x00\x61\x00\x72\x00\x65\x00\x20\x00\x76\x00\x65\x00\x72\x00\x74\ -\x00\x69\x00\x63\x00\x61\x00\x6c\x00\x2e\x00\x20\x00\x44\x00\x65\ -\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x69\x00\x73\ -\x00\x20\x00\x6c\x00\x65\x00\x66\x00\x74\x00\x2c\x00\x20\x00\x77\ -\x00\x68\x00\x69\x00\x63\x00\x68\x00\x20\x00\x69\x00\x73\x00\x20\ -\x00\x74\x00\x68\x00\x65\x00\x20\x00\x49\x00\x53\x00\x4f\x00\x20\ -\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\ -\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7e\x54\x68\x69\x73\ -\x20\x69\x73\x20\x74\x68\x65\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\ -\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x64\x69\x6d\x65\x6e\ -\x73\x69\x6f\x6e\x20\x74\x65\x78\x74\x73\x20\x77\x68\x65\x6e\x20\ -\x74\x68\x6f\x73\x65\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\ -\x20\x61\x72\x65\x20\x76\x65\x72\x74\x69\x63\x61\x6c\x2e\x20\x44\ -\x65\x66\x61\x75\x6c\x74\x20\x69\x73\x20\x6c\x65\x66\x74\x2c\x20\ -\x77\x68\x69\x63\x68\x20\x69\x73\x20\x74\x68\x65\x20\x49\x53\x4f\ -\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x2e\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x01\x1c\x04\x26\x04\x35\x00\x20\x04\x37\x04\x3d\x04\x30\x04\x47\ -\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x32\x04\x38\x04\x3a\ -\x04\x3e\x04\x40\x04\x38\x04\x41\x04\x42\x04\x3e\x04\x32\x04\x43\ -\x04\x54\x04\x42\x04\x4c\x04\x41\x04\x4f\x00\x20\x04\x44\x04\x43\ -\x04\x3d\x04\x3a\x04\x46\x04\x56\x04\x4f\x04\x3c\x04\x38\x00\x2c\ -\x00\x20\x04\x49\x04\x3e\x00\x20\x04\x32\x04\x38\x04\x3a\x04\x3e\ -\x04\x40\x04\x38\x04\x41\x04\x42\x04\x3e\x04\x32\x04\x43\x04\x4e\ -\x04\x42\x04\x4c\x00\x20\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x45\ -\x04\x43\x04\x3d\x04\x3e\x04\x3a\x00\x20\x04\x42\x04\x3e\x04\x47\ -\x04\x3d\x04\x3e\x04\x41\x04\x42\x04\x56\x00\x2e\x00\x0a\x04\x17\ -\x04\x3d\x04\x30\x04\x47\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x2c\ -\x00\x20\x04\x49\x04\x3e\x00\x20\x04\x32\x04\x56\x04\x34\x04\x45\ -\x04\x38\x04\x3b\x04\x4f\x04\x4e\x04\x42\x04\x4c\x04\x41\x04\x4f\ -\x00\x20\x04\x3d\x04\x30\x00\x20\x04\x3c\x04\x35\x04\x3d\x04\x48\ -\x04\x43\x00\x20\x04\x32\x04\x35\x04\x3b\x04\x38\x04\x47\x04\x38\ -\x04\x3d\x04\x43\x00\x2c\x00\x20\x04\x42\x04\x30\x04\x3a\x04\x3e\ -\x04\x36\x00\x20\x04\x31\x04\x43\x04\x34\x04\x43\x04\x42\x04\x4c\ -\x00\x20\x04\x32\x04\x56\x04\x40\x04\x3d\x04\x56\x00\x2e\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x7b\x54\x68\x69\x73\x20\x69\x73\x20\ -\x74\x68\x65\x20\x76\x61\x6c\x75\x65\x20\x75\x73\x65\x64\x20\x62\ -\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\x74\x68\x61\x74\ -\x20\x75\x73\x65\x20\x61\x20\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\ -\x2e\x0a\x56\x61\x6c\x75\x65\x73\x20\x77\x69\x74\x68\x20\x64\x69\ -\x66\x66\x65\x72\x65\x6e\x63\x65\x73\x20\x62\x65\x6c\x6f\x77\x20\ -\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x77\x69\x6c\x6c\x20\ -\x62\x65\x20\x74\x72\x65\x61\x74\x65\x64\x20\x61\x73\x20\x73\x61\ -\x6d\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x04\x22\x04\x3e\x04\ -\x47\x04\x3d\x04\x56\x04\x41\x04\x42\x04\x4c\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x09\x54\x6f\x6c\x65\x72\x61\x6e\x63\x65\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x0e\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x62\ -\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x54\x6f\ -\x6f\x6c\x62\x61\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x50\x04\x11\x04\ -\x40\x04\x30\x04\x42\x04\x38\x00\x20\x04\x41\x04\x42\x04\x30\x04\ -\x3d\x04\x34\x04\x30\x04\x40\x04\x42\x04\x3d\x04\x38\x04\x39\x00\ -\x20\x04\x3a\x04\x3e\x04\x3b\x04\x56\x04\x40\x00\x20\x04\x42\x04\ -\x30\x00\x20\x04\x42\x04\x3e\x04\x32\x04\x49\x04\x38\x04\x3d\x04\ -\x43\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\x56\x04\x57\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x1f\x55\x73\x65\x20\x64\x65\x66\x61\x75\ -\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\ -\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x01\x03\x00\x00\x00\x6e\x00\x54\x00\x6f\x00\x74\x00\x6f\x00\x20\ +\x00\x6a\x00\x65\x00\x20\x00\x76\x00\xfd\x00\x63\x00\x68\x00\x6f\ +\x00\x7a\x00\xed\x00\x20\x00\x6e\x00\xe1\x00\x7a\x00\x65\x00\x76\ +\x00\x20\x00\x73\x00\x6b\x00\x75\x00\x70\x00\x69\x00\x6e\x00\x79\ +\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x20\x00\x6b\x00\x6f\x00\x6e\ +\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x01\x0d\x00\x6e\x00\xed\ +\x00\x20\x00\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\ +\x00\x69\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x54\x68\ +\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\ +\x74\x20\x67\x72\x6f\x75\x70\x20\x6e\x61\x6d\x65\x20\x66\x6f\x72\ +\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x67\x65\ +\x6f\x6d\x65\x74\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ \x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x55\ -\x00\x73\x00\x65\x00\x20\x00\x67\x00\x72\x00\x69\x00\x64\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x08\x55\x73\x65\x20\x67\x72\x69\x64\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x80\x00\x54\ +\x00\x6f\x00\x74\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x6d\ +\x00\x65\x00\x74\x00\x6f\x00\x64\x00\x61\x00\x20\x00\x7a\x00\x76\ +\x00\x6f\x00\x6c\x00\x65\x00\x6e\x00\xe9\x00\x20\x00\x70\x00\x72\ +\x00\x6f\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\ +\x00\x20\x00\x62\x00\x61\x00\x72\x00\x76\x00\x79\x00\x20\x00\x53\ +\x00\x56\x00\x47\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x75\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x46\x00\x72\ +\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x75\x00\x2e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x47\x54\x68\x69\x73\x20\x69\x73\x20\ +\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x63\x68\x6f\x6f\x73\ +\x65\x64\x20\x66\x6f\x72\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\ +\x20\x53\x56\x47\x20\x6f\x62\x6a\x65\x63\x74\x20\x63\x6f\x6c\x6f\ +\x72\x20\x69\x6e\x74\x6f\x20\x46\x72\x65\x65\x43\x41\x44\x2e\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x01\x92\x00\x4a\x00\x65\x00\x20\x00\x74\x00\ +\x6f\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x6f\x00\x64\x00\x61\x00\ +\x20\x00\x76\x00\x79\x00\x62\x00\x72\x00\x61\x00\x6e\x00\xe1\x00\ +\x20\x00\x70\x00\x72\x00\x6f\x00\x20\x00\x69\x00\x6d\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x00\x20\x00\x6e\x00\x65\x00\x62\x00\x6f\x00\ +\x20\x00\x70\x01\x59\x00\x65\x00\x6b\x00\x6c\x00\xe1\x00\x64\x00\ +\xe1\x00\x6e\x00\xed\x00\x20\x00\x62\x00\x61\x00\x72\x00\x76\x00\ +\x75\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x75\x00\x20\x00\x44\x00\x58\x00\x46\x00\x20\x00\x64\x00\x6f\x00\ +\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\ +\x2e\x00\x20\x00\x20\x00\x4a\x00\x65\x00\x2d\x00\x6c\x00\x69\x00\ +\x20\x00\x6d\x00\x61\x00\x70\x00\x6f\x00\x76\x00\xe1\x00\x6e\x00\ +\xed\x00\x20\x00\x62\x00\x61\x00\x72\x00\x65\x00\x76\x00\x20\x00\ +\x76\x00\x79\x00\x62\x00\x72\x00\xe1\x00\x6e\x00\x6f\x00\x2c\x00\ +\x20\x00\x6d\x00\x75\x00\x73\x00\xed\x00\x74\x00\x65\x00\x20\x00\ +\x7a\x00\x76\x00\x6f\x00\x6c\x00\x69\x00\x74\x00\x20\x00\x73\x00\ +\x6f\x00\x75\x00\x62\x00\x6f\x00\x72\x00\x20\x00\x6d\x00\x61\x00\ +\x70\x00\x6f\x00\x76\x00\xe1\x00\x6e\x00\xed\x00\x20\x00\x62\x00\ +\x61\x00\x72\x00\x65\x00\x76\x00\x20\x00\x6f\x00\x62\x00\x73\x00\ +\x61\x00\x68\x00\x75\x00\x6a\x00\xed\x00\x63\x00\xed\x00\x20\x00\ +\x70\x01\x59\x00\x65\x00\x76\x00\x6f\x00\x64\x00\x6e\x00\xed\x00\ +\x20\x00\x74\x00\x61\x00\x62\x00\x75\x00\x6c\x00\x6b\x00\x75\x00\ +\x2c\x00\x20\x00\x6b\x00\x74\x00\x65\x00\x72\x00\xe1\x00\x20\x00\ +\x70\x01\x59\x00\x65\x00\x76\x00\x65\x00\x64\x00\x65\x00\x20\x00\ +\x62\x00\x61\x00\x72\x00\x76\x00\x79\x00\x20\x00\x64\x00\x6f\x00\ +\x20\x01\x0d\x00\x61\x00\x72\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\xe3\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6d\ +\x65\x74\x68\x6f\x64\x20\x63\x68\x6f\x6f\x73\x65\x64\x20\x66\x6f\ +\x72\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\x6f\x72\x20\x74\ +\x72\x61\x6e\x73\x6c\x61\x74\x69\x6e\x67\x20\x44\x58\x46\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x63\x6f\x6c\x6f\x72\x20\x69\x6e\x74\x6f\ +\x20\x46\x72\x65\x65\x43\x41\x44\x2e\x20\x0a\x49\x66\x20\x63\x6f\ +\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x69\x73\x20\x63\ +\x68\x6f\x6f\x73\x65\x64\x2c\x20\x79\x6f\x75\x20\x6d\x75\x73\x74\ +\x20\x63\x68\x6f\x6f\x73\x65\x20\x61\x20\x63\x6f\x6c\x6f\x72\x20\ +\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x20\x63\x6f\x6e\ +\x74\x61\x69\x6e\x69\x6e\x67\x20\x61\x20\x74\x72\x61\x6e\x73\x6c\ +\x61\x74\x69\x6f\x6e\x20\x74\x61\x62\x6c\x65\x20\x74\x68\x61\x74\ +\x20\x77\x69\x6c\x6c\x20\x63\x6f\x6e\x76\x65\x72\x74\x20\x63\x6f\ +\x6c\x6f\x72\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\ +\x64\x74\x68\x73\x2e\x0a\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xfc\x00\x54\ +\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x69\x00\x65\x00\x6e\ +\x00\x74\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6f\ +\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\x69\ +\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\ +\x00\x74\x00\x65\x00\x78\x00\x74\x00\x73\x00\x20\x00\x77\x00\x68\ +\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x6f\x00\x73\x00\x65\ +\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\ +\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\ +\x00\x76\x00\x65\x00\x72\x00\x74\x00\x69\x00\x63\x00\x61\x00\x6c\ +\x00\x2e\x00\x20\x00\x44\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\ +\x00\x74\x00\x20\x00\x69\x00\x73\x00\x20\x00\x6c\x00\x65\x00\x66\ +\x00\x74\x00\x2c\x00\x20\x00\x77\x00\x68\x00\x69\x00\x63\x00\x68\ +\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x49\x00\x53\x00\x4f\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\ +\x00\x64\x00\x61\x00\x72\x00\x64\x00\x2e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x7e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\ +\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\ +\x68\x65\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x20\x74\x65\x78\ +\x74\x73\x20\x77\x68\x65\x6e\x20\x74\x68\x6f\x73\x65\x20\x64\x69\ +\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x61\x72\x65\x20\x76\x65\x72\ +\x74\x69\x63\x61\x6c\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x69\ +\x73\x20\x6c\x65\x66\x74\x2c\x20\x77\x68\x69\x63\x68\x20\x69\x73\ +\x20\x74\x68\x65\x20\x49\x53\x4f\x20\x73\x74\x61\x6e\x64\x61\x72\ +\x64\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\xf6\x00\x54\x00\x6f\x00\x74\ +\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x68\x00\x6f\x00\x64\ +\x00\x6e\x00\x6f\x00\x74\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x75\ +\x01\x7e\x00\x69\x00\x74\x00\xe1\x00\x20\x00\x66\x00\x75\x00\x6e\ +\x00\x6b\x00\x63\x00\x65\x00\x6d\x00\x69\x00\x2c\x00\x20\x00\x6b\ +\x00\x74\x00\x65\x00\x72\x00\xe9\x00\x20\x00\x70\x00\x6f\x00\x75\ +\x01\x7e\x00\xed\x00\x76\x00\x61\x00\x6a\x00\xed\x00\x20\x00\x74\ +\x00\x6f\x00\x6c\x00\x65\x00\x72\x00\x61\x00\x6e\x00\x63\x00\x69\ +\x00\x2e\x00\x20\x00\x48\x00\x6f\x00\x64\x00\x6e\x00\x6f\x00\x74\ +\x00\x79\x00\x20\x00\x73\x00\x20\x00\x72\x00\x6f\x00\x7a\x00\x64\ +\x00\xed\x00\x6c\x00\x79\x00\x20\x00\x70\x00\x6f\x00\x64\x00\x20\ +\x00\x74\x00\x75\x00\x74\x00\x6f\x00\x20\x00\x68\x00\x6f\x00\x64\ +\x00\x6e\x00\x6f\x00\x74\x00\x75\x00\x20\x00\x62\x00\x75\x00\x64\ +\x00\x6f\x00\x75\x00\x20\x00\x70\x00\x6f\x00\x76\x00\x61\x01\x7e\ +\x00\x6f\x00\x76\x00\xe1\x00\x6e\x00\x79\x00\x20\x00\x7a\x00\x61\ +\x00\x20\x00\x73\x00\x74\x00\x65\x00\x6a\x00\x6e\x00\xe9\x00\x2e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7b\x54\x68\x69\x73\x20\x69\ +\x73\x20\x74\x68\x65\x20\x76\x61\x6c\x75\x65\x20\x75\x73\x65\x64\ +\x20\x62\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\x74\x68\ +\x61\x74\x20\x75\x73\x65\x20\x61\x20\x74\x6f\x6c\x65\x72\x61\x6e\ +\x63\x65\x2e\x0a\x56\x61\x6c\x75\x65\x73\x20\x77\x69\x74\x68\x20\ +\x64\x69\x66\x66\x65\x72\x65\x6e\x63\x65\x73\x20\x62\x65\x6c\x6f\ +\x77\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x77\x69\x6c\ +\x6c\x20\x62\x65\x20\x74\x72\x65\x61\x74\x65\x64\x20\x61\x73\x20\ +\x73\x61\x6d\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x4f\x00\ +\x64\x00\x63\x00\x68\x00\x79\x00\x6c\x00\x6b\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x54\x6f\x6c\x65\x72\x61\x6e\x63\x65\ \x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ \x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x48\x00\x56\x00\x65\x00\x72\x00\x74\ -\x00\x69\x00\x63\x00\x61\x00\x6c\x00\x20\x00\x64\x00\x69\x00\x6d\ -\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\ -\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\x00\x6f\x00\x72\x00\x69\ -\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x56\x65\x72\x74\x69\x63\ -\x61\x6c\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x74\x65\ -\x78\x74\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x01\x84\x00\x57\x00\x68\x00\x65\x00\x6e\x00\x20\ -\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x69\x00\x6e\ -\x00\x67\x00\x20\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\ -\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x44\x00\x58\x00\x46\ -\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x79\x00\x20\x00\x61\ -\x00\x72\x00\x65\x00\x20\x00\x74\x00\x72\x00\x61\x00\x6e\x00\x73\ -\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x65\x00\x64\x00\x20\x00\x69\ -\x00\x6e\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x6c\x00\x69\ -\x00\x6e\x00\x65\x00\x73\x00\x2e\x00\x20\x00\x54\x00\x68\x00\x69\ -\x00\x73\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x75\x00\x65\x00\x20\ -\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6d\ -\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x6c\ -\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x00\x20\x00\x6f\x00\x66\ -\x00\x20\x00\x65\x00\x61\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x66\ -\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x6c\ -\x00\x79\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x73\x00\x65\ -\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x2e\x00\x20\ -\x00\x49\x00\x66\x00\x20\x00\x30\x00\x2c\x00\x20\x00\x74\x00\x68\ -\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x77\ -\x00\x68\x00\x6f\x00\x6c\x00\x65\x00\x20\x00\x73\x00\x70\x00\x6c\ -\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\ -\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x64\x00\x20\x00\x61\ -\x00\x73\x00\x20\x00\x61\x00\x20\x00\x73\x00\x74\x00\x72\x00\x61\ -\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x73\x00\x65\x00\x67\ -\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\xc2\x57\x68\x65\x6e\x20\x65\x78\x70\x6f\x72\x74\x69\ -\x6e\x67\x20\x73\x70\x6c\x69\x6e\x65\x73\x20\x74\x6f\x20\x44\x58\ -\x46\x2c\x20\x74\x68\x65\x79\x20\x61\x72\x65\x20\x74\x72\x61\x6e\ -\x73\x66\x6f\x72\x6d\x65\x64\x20\x69\x6e\x20\x70\x6f\x6c\x79\x6c\ -\x69\x6e\x65\x73\x2e\x20\x54\x68\x69\x73\x20\x76\x61\x6c\x75\x65\ -\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\ -\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x65\x61\x63\x68\x20\x6f\ -\x66\x20\x74\x68\x65\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x20\x73\ -\x65\x67\x6d\x65\x6e\x74\x73\x2e\x20\x49\x66\x20\x30\x2c\x20\x74\ -\x68\x65\x6e\x20\x74\x68\x65\x20\x77\x68\x6f\x6c\x65\x20\x73\x70\ -\x6c\x69\x6e\x65\x20\x69\x73\x20\x74\x72\x65\x61\x74\x65\x64\x20\ -\x61\x73\x20\x61\x20\x73\x74\x72\x61\x69\x67\x68\x74\x20\x73\x65\ -\x67\x6d\x65\x6e\x74\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x58\ -\x00\x59\x00\x20\x00\x28\x04\x17\x04\x32\x04\x35\x04\x40\x04\x45\ -\x04\x43\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x58\x59\ -\x20\x28\x54\x6f\x70\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x58\ -\x00\x5a\x00\x20\x00\x28\x04\x17\x00\x20\x04\x3f\x04\x35\x04\x40\ -\x04\x35\x04\x34\x04\x43\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0a\x58\x5a\x20\x28\x46\x72\x6f\x6e\x74\x29\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x16\x00\x59\x00\x5a\x00\x20\x00\x28\x04\x17\x00\x20\ -\x04\x31\x04\x3e\x04\x3a\x04\x43\x00\x29\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x09\x59\x5a\x20\x28\x53\x69\x64\x65\x29\x07\x00\x00\ +\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x54\x00\x6f\x00\x6f\x00\x6c\ +\x00\x62\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ +\x54\x6f\x6f\x6c\x62\x61\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\ +\x54\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x6c\x00\x61\x00\x74\x00\ +\x65\x00\x20\x00\x77\x00\x68\x00\x69\x00\x74\x00\x65\x00\x20\x00\ +\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\ +\x6f\x00\x72\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x6c\x00\ +\x61\x00\x63\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x54\ +\x72\x61\x6e\x73\x6c\x61\x74\x65\x20\x77\x68\x69\x74\x65\x20\x6c\ +\x69\x6e\x65\x20\x63\x6f\x6c\x6f\x72\x20\x74\x6f\x20\x62\x6c\x61\ +\x63\x6b\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\x00\x54\x00\x72\x00\x61\ +\x00\x6e\x00\x73\x00\x6c\x00\x61\x00\x74\x00\x65\x00\x64\x00\x20\ +\x00\x28\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x72\x00\x69\ +\x00\x6e\x00\x74\x00\x20\x00\x26\x00\x20\x00\x64\x00\x69\x00\x73\ +\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x29\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x20\x54\x72\x61\x6e\x73\x6c\x61\x74\x65\x64\x20\x28\ +\x66\x6f\x72\x20\x70\x72\x69\x6e\x74\x20\x26\x20\x64\x69\x73\x70\ +\x6c\x61\x79\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x50\x00\x6f\ +\x00\x75\x01\x7e\x00\xed\x00\x74\x00\x20\x00\x76\x00\xfd\x00\x63\ +\x00\x68\x00\x6f\x00\x7a\x00\xed\x00\x20\x00\x62\x00\x61\x00\x72\ +\x00\x76\x00\x75\x00\x20\x00\x61\x00\x20\x01\x61\x00\xed\x01\x59\ +\x00\x6b\x00\x75\x00\x20\x01\x0d\x00\xe1\x00\x72\x00\x79\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1f\x55\x73\x65\x20\x64\x65\x66\x61\ +\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\ +\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\ +\x50\x00\x6f\x00\x75\x01\x7e\x00\xed\x00\x74\x00\x20\x00\x6d\x01\ +\x59\x00\xed\x01\x7e\x00\x6b\x00\x75\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x55\x73\x65\x20\x67\x72\x69\x64\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x40\x00\x55\x00\x73\x00\x65\x00\x20\x00\x73\x00\x74\x00\ +\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x20\x00\x66\x00\ +\x6f\x00\x6e\x00\x74\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\ +\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x65\x00\x78\x00\ +\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x55\x73\x65\ +\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x66\x6f\x6e\x74\x20\x73\ +\x69\x7a\x65\x20\x66\x6f\x72\x20\x74\x65\x78\x74\x73\x07\x00\x00\ \x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ \x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x06\x00\x61\x00\x6c\x00\x74\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x03\x61\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x9a\ -\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x20\x00\x74\x00\x68\ -\x00\x69\x00\x73\x00\x20\x00\x69\x00\x66\x00\x20\x00\x79\x00\x6f\ -\x00\x75\x00\x20\x00\x77\x00\x61\x00\x6e\x00\x74\x00\x20\x00\x74\ -\x00\x6f\x00\x20\x00\x75\x00\x73\x00\x65\x00\x20\x00\x74\x00\x68\ -\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x2f\ -\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x77\x00\x69\x00\x64\x00\x74\ -\x00\x68\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\ -\x00\x68\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\ -\x00\x61\x00\x72\x00\x20\x00\x61\x00\x73\x00\x20\x00\x64\x00\x65\ -\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x08\x00\x00\x00\x00\x06\ +\x03\x00\x00\x00\x48\x00\x56\x00\x65\x00\x72\x00\x74\x00\x69\x00\ +\x63\x00\x61\x00\x6c\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\ +\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x74\x00\ +\x65\x00\x78\x00\x74\x00\x20\x00\x6f\x00\x72\x00\x69\x00\x65\x00\ +\x6e\x00\x74\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x24\x56\x65\x72\x74\x69\x63\x61\x6c\x20\ +\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x74\x65\x78\x74\x20\ +\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\xe6\x00\x57\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x65\x00\ +\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x76\x00\x69\x00\x65\x00\ +\x77\x00\x73\x00\x2c\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x65\x00\ +\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x77\x00\x68\x00\x69\x00\ +\x74\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x77\x00\ +\x6f\x00\x72\x00\x6b\x00\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\ +\x61\x00\x72\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x62\x00\x6c\x00\ +\x61\x00\x63\x00\x6b\x00\x2c\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x20\x00\x62\x00\x65\x00\x74\x00\x74\x00\x65\x00\x72\x00\x20\x00\ +\x72\x00\x65\x00\x61\x00\x64\x00\x61\x00\x62\x00\x69\x00\x6c\x00\ +\x69\x00\x74\x00\x79\x00\x20\x00\x61\x00\x67\x00\x61\x00\x69\x00\ +\x6e\x00\x73\x00\x74\x00\x20\x00\x77\x00\x68\x00\x69\x00\x74\x00\ +\x65\x00\x20\x00\x62\x00\x61\x00\x63\x00\x6b\x00\x67\x00\x72\x00\ +\x6f\x00\x75\x00\x6e\x00\x64\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x73\x57\x68\x65\x6e\x20\x65\x78\x70\x6f\x72\x74\x69\x6e\ +\x67\x20\x53\x56\x47\x20\x76\x69\x65\x77\x73\x2c\x20\x6d\x61\x6b\ +\x65\x20\x61\x6c\x6c\x20\x77\x68\x69\x74\x65\x20\x6c\x69\x6e\x65\ +\x77\x6f\x72\x6b\x20\x61\x70\x70\x65\x61\x72\x20\x69\x6e\x20\x62\ +\x6c\x61\x63\x6b\x2c\x20\x66\x6f\x72\x20\x62\x65\x74\x74\x65\x72\ +\x20\x72\x65\x61\x64\x61\x62\x69\x6c\x69\x74\x79\x20\x61\x67\x61\ +\x69\x6e\x73\x74\x20\x77\x68\x69\x74\x65\x20\x62\x61\x63\x6b\x67\ +\x72\x6f\x75\x6e\x64\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x52\x00\x50\ +\x01\x59\x00\x69\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\x75\x00\x20\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x6e\ +\x01\x6f\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x44\x00\x58\x00\x46\ +\x00\x2c\x00\x20\x00\x6a\x00\x73\x00\x6f\x00\x75\x00\x20\x00\x74\ +\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x66\x00\x6f\x00\x72\x00\x6d\ +\x00\x6f\x00\x76\x00\xe1\x00\x6e\x00\x79\x00\x20\x00\x64\x00\x6f\ +\x00\x20\x00\x6b\x01\x59\x00\x69\x00\x76\x00\x65\x00\x6b\x00\x2e\ +\x00\x20\x00\x54\x00\x61\x00\x74\x00\x6f\x00\x20\x00\x68\x00\x6f\ +\x00\x64\x00\x6e\x00\x6f\x00\x74\x00\x61\x00\x20\x00\x6a\x00\x65\ +\x00\x20\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\xe1\x00\x6c\ +\x00\x6e\x00\xed\x00\x20\x00\x64\x00\xe9\x00\x6c\x00\x6b\x00\x61\ +\x00\x20\x00\x6b\x00\x61\x01\x7e\x00\x64\x00\xe9\x00\x68\x00\x6f\ +\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x00\x75\x00\x20\x00\x6b\x01\x59\x00\x69\x00\x76\x00\x6b\x00\x79\ +\x00\x2e\x00\x20\x00\x4a\x00\x65\x00\x2d\x00\x6c\x00\x69\x00\x20\ +\x00\x30\x00\x2c\x00\x20\x00\x70\x00\x61\x00\x6b\x00\x20\x00\x6a\ +\x00\x65\x00\x20\x00\x63\x00\x65\x00\x6c\x00\xe1\x00\x20\x00\x73\ +\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x70\x00\x6f\ +\x00\x76\x00\x61\x01\x7e\x00\x6f\x00\x76\x00\xe1\x00\x6e\x00\x61\ +\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x72\x00\x6f\x00\x76\x00\x6e\ +\x00\x6f\x00\x75\x00\x20\x01\x0d\x00\xe1\x00\x73\x00\x74\x00\x2e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\xc2\x57\x68\x65\x6e\x20\x65\ +\x78\x70\x6f\x72\x74\x69\x6e\x67\x20\x73\x70\x6c\x69\x6e\x65\x73\ +\x20\x74\x6f\x20\x44\x58\x46\x2c\x20\x74\x68\x65\x79\x20\x61\x72\ +\x65\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x65\x64\x20\x69\x6e\ +\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x73\x2e\x20\x54\x68\x69\x73\ +\x20\x76\x61\x6c\x75\x65\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x61\ +\x78\x69\x6d\x75\x6d\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\ +\x65\x61\x63\x68\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x6f\x6c\x79\ +\x6c\x69\x6e\x65\x20\x73\x65\x67\x6d\x65\x6e\x74\x73\x2e\x20\x49\ +\x66\x20\x30\x2c\x20\x74\x68\x65\x6e\x20\x74\x68\x65\x20\x77\x68\ +\x6f\x6c\x65\x20\x73\x70\x6c\x69\x6e\x65\x20\x69\x73\x20\x74\x72\ +\x65\x61\x74\x65\x64\x20\x61\x73\x20\x61\x20\x73\x74\x72\x61\x69\ +\x67\x68\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x2e\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x16\x00\x58\x00\x59\x00\x20\x00\x28\x00\x6e\x00\x61\ +\x00\x68\x00\x6f\x01\x59\x00\x65\x00\x29\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x08\x58\x59\x20\x28\x54\x6f\x70\x29\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x16\x00\x58\x00\x5a\x00\x20\x00\x28\x00\x70\x01\x59\ +\x00\x65\x00\x64\x00\x6e\x00\xed\x00\x29\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0a\x58\x5a\x20\x28\x46\x72\x6f\x6e\x74\x29\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x16\x00\x59\x00\x5a\x00\x20\x00\x28\x00\x73\ +\x00\x74\x00\x72\x00\x61\x00\x6e\x00\x61\x00\x29\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x59\x5a\x20\x28\x53\x69\x64\x65\x29\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x06\x00\x41\x00\x4c\x00\x54\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x03\x61\x6c\x74\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\xa8\x00\x5a\x00\x61\x00\x74\x00\x72\x00\x68\x00\x6e\x01\x1b\ +\x00\x74\x00\x65\x00\x20\x00\x74\x00\x75\x00\x74\x00\x6f\x00\x20\ +\x00\x76\x00\x6f\x00\x6c\x00\x62\x00\x75\x00\x20\x00\x70\x00\x6f\ +\x00\x6b\x00\x75\x00\x64\x00\x20\x00\x63\x00\x68\x00\x63\x00\x65\ +\x00\x74\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x75\x01\x7e\x00\xed\ +\x00\x74\x00\x20\x00\x62\x00\x61\x00\x72\x00\x76\x00\x75\x00\x20\ +\x00\x2f\x00\x20\x01\x0d\x00\xe1\x00\x72\x00\x79\x00\x20\x00\x7a\ +\x00\x20\x00\x70\x00\x61\x00\x6e\x00\x65\x00\x6c\x00\x75\x00\x20\ +\x00\x6e\x00\xe1\x00\x73\x00\x74\x00\x72\x00\x6f\x00\x6a\x01\x6f\ +\x00\x20\x00\x6a\x00\x61\x00\x6b\x00\x6f\x00\x20\x00\x76\x00\xfd\ +\x00\x63\x00\x68\x00\x6f\x00\x7a\x00\xed\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x4d\x63\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\ \x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x6f\x20\x75\x73\ \x65\x20\x74\x68\x65\x20\x63\x6f\x6c\x6f\x72\x2f\x6c\x69\x6e\x65\ @@ -3973,410 +45973,467 @@ qt_resource_data = "\ \x6f\x6f\x6c\x62\x61\x72\x20\x61\x73\x20\x64\x65\x66\x61\x75\x6c\ \x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ \x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x08\x00\x63\x00\x74\x00\x72\x00\ -\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x63\x74\x72\x6c\x07\ +\x61\x66\x74\x01\x03\x00\x00\x00\x08\x00\x43\x00\x54\x00\x52\x00\ +\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x63\x74\x72\x6c\x07\ \x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ \x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x01\x26\x00\x69\x00\x66\x00\x20\x00\x74\x00\ -\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\ +\x74\x01\x03\x00\x00\x00\xce\x00\x69\x00\x66\x00\x20\x00\x63\x00\ \x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ -\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\ -\x20\x00\x73\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x6c\x00\x61\x00\ -\x79\x00\x65\x00\x72\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ -\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x6a\x00\x6f\x00\x69\x00\ -\x6e\x00\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\ -\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x42\x00\ -\x6c\x00\x6f\x00\x63\x00\x6b\x00\x73\x00\x2c\x00\x20\x00\x74\x00\ -\x75\x00\x72\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\ -\x68\x00\x65\x00\x20\x00\x64\x00\x69\x00\x73\x00\x70\x00\x6c\x00\ -\x61\x00\x79\x00\x20\x00\x66\x00\x61\x00\x73\x00\x74\x00\x65\x00\ -\x72\x00\x2c\x00\x20\x00\x62\x00\x75\x00\x74\x00\x20\x00\x6d\x00\ -\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\ -\x65\x00\x6d\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x73\x00\x20\x00\ -\x65\x00\x61\x00\x73\x00\x69\x00\x6c\x00\x79\x00\x20\x00\x65\x00\ -\x64\x00\x69\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x93\x69\x66\x20\x74\x68\x69\x73\x20\x69\ -\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\x65\x63\ -\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x61\x6d\x65\ -\x20\x6c\x61\x79\x65\x72\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\ -\x6a\x6f\x69\x6e\x65\x64\x20\x69\x6e\x74\x6f\x20\x44\x72\x61\x66\ -\x74\x20\x42\x6c\x6f\x63\x6b\x73\x2c\x20\x74\x75\x72\x6e\x69\x6e\ -\x67\x20\x74\x68\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x66\x61\ -\x73\x74\x65\x72\x2c\x20\x62\x75\x74\x20\x6d\x61\x6b\x69\x6e\x67\ -\x20\x74\x68\x65\x6d\x20\x6c\x65\x73\x73\x20\x65\x61\x73\x69\x6c\ -\x79\x20\x65\x64\x69\x74\x61\x62\x6c\x65\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x80\x04\x4f\x04\x3a\x04\x49\x04\x3e\x00\x20\x04\x46\x04\x35\ -\x00\x20\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3e\x00\x2c\ -\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\x04\x42\x04\x38\ -\x00\x20\x04\x3f\x04\x40\x04\x3e\x04\x41\x04\x42\x04\x3e\x04\x40\ -\x04\x43\x00\x20\x04\x30\x04\x40\x04\x3a\x04\x43\x04\x48\x04\x30\ -\x00\x20\x04\x31\x04\x43\x04\x34\x04\x43\x04\x42\x04\x4c\x00\x20\ -\x04\x42\x04\x30\x04\x3a\x04\x3e\x04\x36\x00\x20\x04\x56\x04\x3c\ -\x04\x3f\x04\x3e\x04\x40\x04\x42\x04\x3e\x04\x32\x04\x30\x04\x3d\ -\x04\x56\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3c\x69\x66\x20\x74\ -\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\ -\x70\x61\x70\x65\x72\x20\x73\x70\x61\x63\x65\x20\x6f\x62\x6a\x65\ -\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x69\x6d\x70\x6f\ -\x72\x74\x65\x64\x20\x74\x6f\x6f\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x7c\ -\x04\x4f\x04\x3a\x04\x49\x04\x3e\x00\x20\x04\x46\x04\x35\x00\x20\ -\x04\x1d\x04\x15\x00\x20\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x3d\ -\x04\x3e\x00\x2c\x00\x20\x04\x42\x04\x35\x04\x3a\x04\x41\x04\x42\ -\x04\x38\x00\x2f\x04\x3c\x04\x43\x04\x3b\x04\x4c\x04\x42\x04\x38\ -\x04\x42\x04\x35\x04\x3a\x04\x41\x04\x42\x04\x38\x00\x20\x04\x3d\ -\x04\x35\x00\x20\x04\x31\x04\x43\x04\x34\x04\x43\x04\x42\x04\x4c\ -\x00\x20\x04\x56\x04\x3c\x04\x3f\x04\x3e\x04\x40\x04\x42\x04\x43\ -\x04\x32\x04\x30\x04\x42\x04\x38\x04\x41\x04\x4c\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x34\x69\x66\x20\x74\x68\x69\x73\x20\x69\x73\ -\x20\x75\x6e\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x65\x78\x74\ -\x73\x2f\x6d\x74\x65\x78\x74\x73\x20\x77\x6f\x6e\x27\x74\x20\x62\ -\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x04\x00\x70\x00\x78\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\ -\x70\x78\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x73\x00\x68\x00\x69\ -\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x73\x68\ -\x69\x66\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4c\x04\x3a\x04\x3e\x04\ -\x3b\x04\x56\x04\x40\x00\x20\x04\x37\x04\x30\x00\x20\x04\x43\x04\ -\x3c\x04\x3e\x04\x32\x04\x47\x04\x30\x04\x3d\x04\x3d\x04\x4f\x04\ -\x3c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3d\x04\x3e\x04\ -\x32\x04\x38\x04\x45\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\ -\x3a\x04\x42\x04\x56\x04\x32\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x21\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ -\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x6f\x62\x6a\x65\x63\ -\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x50\x04\x41\x04\x42\x04\x30\ -\x04\x3d\x04\x34\x04\x30\x04\x40\x04\x42\x04\x3d\x04\x38\x04\x39\ -\x00\x20\x04\x3a\x04\x3e\x04\x3b\x04\x56\x04\x40\x00\x20\x04\x34\ -\x04\x3b\x04\x4f\x00\x20\x04\x41\x04\x38\x04\x3c\x04\x32\x04\x3e\ -\x04\x3b\x04\x56\x04\x32\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\ -\x00\x27\x04\x4f\x04\x37\x04\x3a\x04\x38\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x22\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\ -\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x20\x73\ -\x79\x6d\x62\x6f\x6c\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x61\x00\x20\x00\x77\x00\x69\x00\x64\x00\x67\x00\x65\x00\x74\x00\ +\x20\x00\x69\x00\x6e\x00\x64\x00\x69\x00\x63\x00\x61\x00\x74\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\ +\x77\x00\x6f\x00\x72\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x72\x00\ +\x69\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\ +\x73\x00\x20\x00\x64\x00\x75\x00\x72\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x64\x00\x72\x00\x61\x00\x77\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x6f\x00\x70\x00\x65\x00\x72\x00\x61\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x67\x69\ +\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x20\x77\x69\x64\ +\x67\x65\x74\x20\x69\x6e\x64\x69\x63\x61\x74\x69\x6e\x67\x20\x74\ +\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x77\x6f\x72\x6b\x69\ +\x6e\x67\x20\x70\x6c\x61\x6e\x65\x20\x6f\x72\x69\x65\x6e\x74\x61\ +\x74\x69\x6f\x6e\x20\x61\x70\x70\x65\x61\x72\x73\x20\x64\x75\x72\ +\x69\x6e\x67\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x6f\x70\x65\x72\ +\x61\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ \x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x54\x04\x41\ -\x04\x42\x04\x30\x04\x3d\x04\x34\x04\x30\x04\x40\x04\x42\x04\x3d\ -\x04\x30\x00\x20\x04\x48\x04\x38\x04\x40\x04\x38\x04\x3d\x04\x30\ -\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\x56\x04\x57\x00\x20\x04\x34\ -\x04\x3b\x04\x4f\x00\x20\x04\x3d\x04\x3e\x04\x32\x04\x38\x04\x45\ -\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\x04\x42\x04\x56\ -\x04\x32\x08\x00\x00\x00\x00\x06\x00\x00\x00\x25\x74\x68\x65\x20\ -\x64\x65\x66\x61\x75\x6c\x74\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\ -\x68\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x6f\x62\x6a\x65\x63\x74\ -\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x26\x00\x69\ +\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\ +\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\ +\x00\x64\x00\x2c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x73\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x61\x00\x6d\x00\x65\ +\x00\x20\x00\x6c\x00\x61\x00\x79\x00\x65\x00\x72\x00\x73\x00\x20\ +\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\ +\x00\x6a\x00\x6f\x00\x69\x00\x6e\x00\x65\x00\x64\x00\x20\x00\x69\ +\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\ +\x00\x74\x00\x20\x00\x42\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x73\ +\x00\x2c\x00\x20\x00\x74\x00\x75\x00\x72\x00\x6e\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\x69\ +\x00\x73\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x20\x00\x66\x00\x61\ +\x00\x73\x00\x74\x00\x65\x00\x72\x00\x2c\x00\x20\x00\x62\x00\x75\ +\x00\x74\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x20\x00\x6c\x00\x65\ +\x00\x73\x00\x73\x00\x20\x00\x65\x00\x61\x00\x73\x00\x69\x00\x6c\ +\x00\x79\x00\x20\x00\x65\x00\x64\x00\x69\x00\x74\x00\x61\x00\x62\ +\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x93\x69\x66\ +\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\ +\x2c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\ +\x68\x65\x20\x73\x61\x6d\x65\x20\x6c\x61\x79\x65\x72\x73\x20\x77\ +\x69\x6c\x6c\x20\x62\x65\x20\x6a\x6f\x69\x6e\x65\x64\x20\x69\x6e\ +\x74\x6f\x20\x44\x72\x61\x66\x74\x20\x42\x6c\x6f\x63\x6b\x73\x2c\ +\x20\x74\x75\x72\x6e\x69\x6e\x67\x20\x74\x68\x65\x20\x64\x69\x73\ +\x70\x6c\x61\x79\x20\x66\x61\x73\x74\x65\x72\x2c\x20\x62\x75\x74\ +\x20\x6d\x61\x6b\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\x6c\x65\x73\ +\x73\x20\x65\x61\x73\x69\x6c\x79\x20\x65\x64\x69\x74\x61\x62\x6c\ +\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ \x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x26\x04\x17\x04\x30\x04\ -\x3a\x04\x40\x04\x38\x04\x42\x04\x38\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x06\x26\x43\x6c\x6f\x73\x65\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x26\x04\x1f\x04\x40\x04\ -\x3e\x04\x34\x04\x3e\x04\x32\x04\x36\x04\x38\x04\x42\x04\x38\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\x43\x6f\x6e\x74\x69\x6e\ -\x75\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x14\x00\x26\x04\x1a\x04\x3e\x04\x3f\x04\x56\x04\x4e\x04\x32\ -\x04\x30\x04\x42\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ -\x26\x43\x6f\x70\x79\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x0e\x00\x26\x00\x46\x00\x69\x00\x6e\x00\x69\x00\ -\x73\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x26\x46\x69\ -\x6e\x69\x73\x68\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x22\x00\x26\x00\x4f\x00\x43\x00\x43\x00\x2d\x00\x73\ -\x00\x74\x00\x79\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x66\ -\x00\x73\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\ -\x26\x4f\x43\x43\x2d\x73\x74\x79\x6c\x65\x20\x6f\x66\x66\x73\x65\ -\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x12\x00\x26\x04\x12\x04\x56\x04\x34\x04\x3d\x04\x3e\x04\x41\x04\ -\x3d\x04\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\x52\x65\ -\x6c\x61\x74\x69\x76\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x14\x00\x26\x04\x21\x04\x3a\x04\x30\x04\x41\ -\x04\x43\x04\x32\x04\x30\x04\x42\x04\x38\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x05\x26\x55\x6e\x64\x6f\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x26\x00\x57\x00\x69\x00\ -\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x57\x69\ -\x70\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x32\x04\x10\x04\x3a\x04\x42\x04\x38\x04\x32\x04\x3d\x04\x30\ -\x00\x20\x04\x3a\x04\x3e\x04\x3c\x04\x30\x04\x3d\x04\x34\x04\x30\ -\x00\x20\x04\x3a\x04\x40\x04\x35\x04\x41\x04\x3b\x04\x35\x04\x3d\ -\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x41\x63\ -\x74\x69\x76\x65\x20\x44\x72\x61\x66\x74\x20\x63\x6f\x6d\x6d\x61\ -\x6e\x64\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x66\x00\x41\x00\x63\x00\x74\x00\x69\x00\x76\x00\x65\x00\x20\ -\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x6d\ -\x00\x75\x00\x73\x00\x74\x00\x20\x00\x68\x00\x61\x00\x76\x00\x65\ -\x00\x20\x00\x6d\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x74\x00\x68\ -\x00\x61\x00\x6e\x00\x20\x00\x74\x00\x77\x00\x6f\x00\x20\x00\x70\ -\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\x00\x2f\x00\x6e\x00\x6f\ -\x00\x64\x00\x65\x00\x73\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x33\x41\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\ -\x6d\x75\x73\x74\x20\x68\x61\x76\x65\x20\x6d\x6f\x72\x65\x20\x74\ -\x68\x61\x6e\x20\x74\x77\x6f\x20\x70\x6f\x69\x6e\x74\x73\x2f\x6e\ -\x6f\x64\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x40\x00\x41\x00\x64\x00\x64\x00\x20\x00\x70\x00\ -\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x74\x00\x6f\x00\ -\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x75\x00\x72\x00\ -\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x41\ -\x64\x64\x20\x70\x6f\x69\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\x65\ -\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\ -\x41\x00\x70\x00\x65\x00\x72\x00\x74\x00\x75\x00\x72\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x08\x41\x70\x65\x72\x74\x75\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x7c\x00\x70\x00\x6f\x00\x6b\x00\ +\x75\x00\x64\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x7a\x00\x61\x00\ +\x74\x00\x72\x01\x7e\x00\x65\x00\x6e\x00\x6f\x00\x2c\x00\x20\x00\ +\x62\x00\x75\x00\x64\x00\x6f\x00\x75\x00\x20\x00\x69\x00\x6d\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x00\x6f\x00\x76\x00\xe1\x00\x6e\x00\ +\x79\x00\x20\x00\x69\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x79\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x70\x00\ +\x6c\x00\x6f\x01\x61\x00\x65\x00\x20\x00\x70\x00\x61\x00\x70\x00\ +\xed\x00\x72\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3c\x69\ +\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\ +\x64\x2c\x20\x70\x61\x70\x65\x72\x20\x73\x70\x61\x63\x65\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x69\ +\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x62\x00\x70\x00\x6f\x00\x6b\x00\x75\x00\x64\x00\x20\x00\ +\x6a\x00\x65\x00\x20\x00\x7a\x00\x61\x01\x61\x00\x6b\x00\x72\x00\ +\x74\x00\x6e\x00\x75\x00\x74\x00\x61\x00\x2c\x00\x20\x00\x74\x00\ +\x65\x00\x78\x00\x74\x00\x2f\x00\x6d\x00\x74\x00\x65\x00\x78\x00\ +\x74\x00\x20\x00\x6e\x00\x65\x00\x62\x00\x75\x00\x64\x00\x65\x00\ +\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x6f\x00\ +\x76\x00\xe1\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x69\ +\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x75\x6e\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x74\x65\x78\x74\x73\x2f\x6d\x74\x65\x78\x74\ +\x73\x20\x77\x6f\x6e\x27\x74\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\ +\x74\x65\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x70\x00\x78\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x02\x70\x78\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0a\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x05\x73\x68\x69\x66\x74\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x3c\x00\x56\x00\xfd\x00\x63\x00\x68\x00\x6f\x00\x7a\ +\x00\xed\x00\x20\x00\x62\x00\x61\x00\x72\x00\x76\x00\x61\x00\x20\ +\x00\x70\x00\x72\x00\x6f\x00\x20\x00\x6e\x00\x6f\x00\x76\x00\xe9\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x79\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x74\x68\x65\x20\x64\x65\ +\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\ +\x6e\x65\x77\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x48\x00\x56\x00\xfd\x00\x63\x00\x68\x00\x6f\x00\x7a\x00\ +\xed\x00\x20\x00\x62\x00\x61\x00\x72\x00\x76\x00\x61\x00\x20\x00\ +\x70\x00\x72\x00\x6f\x00\x20\x00\x70\x01\x59\x00\x69\x00\x63\x00\ +\x68\x00\x79\x00\x63\x00\x65\x00\x6e\x00\xe9\x00\x20\x00\x73\x00\ +\x79\x00\x6d\x00\x62\x00\x6f\x00\x6c\x00\x79\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x22\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\ +\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x20\ +\x73\x79\x6d\x62\x6f\x6c\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x00\ +\x76\x00\xfd\x00\x63\x00\x68\x00\x6f\x00\x7a\x00\xed\x00\x20\x01\ +\x0d\x00\xe1\x00\x72\x00\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x20\x00\x6e\x00\x6f\x00\x76\x00\xe9\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x79\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x25\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x6c\ +\x69\x6e\x65\x77\x69\x64\x74\x68\x20\x66\x6f\x72\x20\x6e\x65\x77\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\ +\x00\x26\x00\x5a\x00\x61\x00\x76\x01\x59\x00\xed\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x26\x43\x6c\x6f\x73\x65\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x26\ +\x00\x50\x00\x6f\x00\x6b\x00\x72\x00\x61\x01\x0d\x00\x6f\x00\x76\ +\x00\x61\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\x43\ +\x6f\x6e\x74\x69\x6e\x75\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x14\x00\x26\x00\x4b\x00\x6f\x00\x70\x00\ +\xed\x00\x72\x00\x6f\x00\x76\x00\x61\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x05\x26\x43\x6f\x70\x79\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x26\x00\x44\x00\x72\ +\x00\x61\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x26\x44\x72\x61\x66\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0e\x00\x26\x00\x46\x00\x69\x00\x6e\x00\x69\ +\x00\x73\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x26\x46\ +\x69\x6e\x69\x73\x68\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x22\x00\x26\x00\x4f\x00\x43\x00\x43\x00\x2d\x00\ +\x73\x00\x74\x00\x79\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x66\x00\ +\x66\x00\x73\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x11\x26\x4f\x43\x43\x2d\x73\x74\x79\x6c\x65\x20\x6f\x66\x66\x73\ +\x65\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x14\x00\x26\x00\x52\x00\x65\x00\x6c\x00\x61\x00\x74\x00\x69\ +\x00\x76\x00\x6e\x00\xed\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x26\x52\x65\x6c\x61\x74\x69\x76\x65\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x26\x00\x5a\x00\x70\x01\ +\x1b\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x55\x6e\ +\x64\x6f\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0a\x00\x26\x00\x57\x00\x69\x00\x70\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x05\x26\x57\x69\x70\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x61\x00\x6b\x00\ +\x74\x00\x69\x00\x76\x00\x6e\x00\xed\x00\x20\x00\x70\x01\x59\x00\ +\xed\x00\x6b\x00\x61\x00\x7a\x00\x20\x00\x6e\x00\xe1\x00\x76\x00\ +\x72\x00\x68\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x41\ +\x63\x74\x69\x76\x65\x20\x44\x72\x61\x66\x74\x20\x63\x6f\x6d\x6d\ +\x61\x6e\x64\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x66\x00\x41\x00\x63\x00\x74\x00\x69\x00\x76\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ +\x6d\x00\x75\x00\x73\x00\x74\x00\x20\x00\x68\x00\x61\x00\x76\x00\ +\x65\x00\x20\x00\x6d\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x74\x00\ +\x68\x00\x61\x00\x6e\x00\x20\x00\x74\x00\x77\x00\x6f\x00\x20\x00\ +\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\x00\x2f\x00\x6e\x00\ +\x6f\x00\x64\x00\x65\x00\x73\x00\x0a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x33\x41\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x6d\x75\x73\x74\x20\x68\x61\x76\x65\x20\x6d\x6f\x72\x65\x20\ +\x74\x68\x61\x6e\x20\x74\x77\x6f\x20\x70\x6f\x69\x6e\x74\x73\x2f\ +\x6e\x6f\x64\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x40\x00\x41\x00\x64\x00\x64\x00\x20\x00\x70\ +\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x74\x00\x6f\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x75\x00\x72\ +\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\ +\x41\x64\x64\x20\x70\x6f\x69\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\ +\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\ +\x00\x41\x00\x70\x00\x65\x00\x72\x00\x74\x00\x75\x00\x72\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x41\x70\x65\x72\x74\x75\ +\x72\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x18\x00\xda\x00\x68\x00\x65\x00\x6c\x00\x20\x00\x6f\x00\x74\ +\x00\x76\x00\x6f\x00\x72\x00\x75\x00\x3a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x41\x70\x65\x72\x74\x75\x72\x65\x20\x61\x6e\x67\ +\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x32\x00\x70\x00\x6f\x00\x75\x01\x7e\x00\xed\x00\x74\ +\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x76\x00\x79\x00\x62\x00\x72\ +\x00\x61\x00\x6e\x00\xe9\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\ +\x41\x70\x70\x6c\x79\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x6f\x00\x62\x00\x6c\x00\ +\x6f\x00\x75\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\ +\x72\x63\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0e\x00\x42\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x42\x53\x70\x6c\x69\x6e\ \x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x20\x00\x41\x00\x70\x00\x65\x00\x72\x00\x74\x00\x75\x00\x72\x00\ -\x65\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x3a\x00\ -\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x41\x70\x65\x72\x74\ -\x75\x72\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\x04\x17\x04\x30\x04\ -\x41\x04\x42\x04\x3e\x04\x41\x04\x43\x04\x32\x04\x30\x04\x42\x04\ -\x38\x00\x20\x04\x34\x04\x3e\x00\x20\x04\x32\x04\x38\x04\x31\x04\ -\x40\x04\x30\x04\x3d\x04\x38\x04\x45\x00\x20\x04\x3e\x04\x31\x00\ -\x27\x04\x54\x04\x3a\x04\x42\x04\x56\x04\x32\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x19\x41\x70\x70\x6c\x79\x20\x74\x6f\x20\x73\x65\ -\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x04\x14\ -\x04\x43\x04\x33\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\ -\x41\x72\x63\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x3e\x00\x43\x00\x61\x00\x6e\x00\x6e\x00\x6f\x00\x74\x00\ -\x20\x00\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x00\x20\x00\ -\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x63\x00\x74\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x00\ -\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x43\x61\x6e\x6e\x6f\ -\x74\x20\x6f\x66\x66\x73\x65\x74\x20\x74\x68\x69\x73\x20\x6f\x62\ -\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x04\x26\x04\x35\x04\x3d\ -\x04\x42\x04\x40\x00\x20\x00\x58\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x08\x43\x65\x6e\x74\x65\x72\x20\x58\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x43\x00\x68\x00\x61\ -\x00\x6e\x00\x67\x00\x65\x00\x20\x00\x53\x00\x74\x00\x79\x00\x6c\ -\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x68\x61\x6e\ -\x67\x65\x20\x53\x74\x79\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\xb6\x00\x43\x00\x68\x00\x65\x00\x63\ -\x00\x6b\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\ -\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6f\x00\x62\ -\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x73\x00\x68\x00\x6f\ -\x00\x75\x00\x6c\x00\x64\x00\x20\x00\x61\x00\x70\x00\x70\x00\x65\ -\x00\x61\x00\x72\x00\x20\x00\x61\x00\x73\x00\x20\x00\x66\x00\x69\ -\x00\x6c\x00\x6c\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x6f\x00\x74\ -\x00\x68\x00\x65\x00\x72\x00\x77\x00\x69\x00\x73\x00\x65\x00\x20\ -\x00\x69\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\ -\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\x20\x00\x61\ -\x00\x73\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x66\x00\x72\ -\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x28\x00\x69\x00\x29\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x5b\x43\x68\x65\x63\x6b\x20\x74\x68\ -\x69\x73\x20\x69\x66\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\ -\x20\x73\x68\x6f\x75\x6c\x64\x20\x61\x70\x70\x65\x61\x72\x20\x61\ -\x73\x20\x66\x69\x6c\x6c\x65\x64\x2c\x20\x6f\x74\x68\x65\x72\x77\ -\x69\x73\x65\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\ -\x61\x72\x20\x61\x73\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\ -\x28\x69\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x08\x04\x1a\x04\x3e\x04\x3b\x04\x3e\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x06\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x88\x04\x1a\x04\x3e\x04\ -\x3e\x04\x40\x04\x34\x04\x38\x04\x3d\x04\x30\x04\x42\x04\x38\x00\ -\x20\x04\x3f\x04\x3e\x00\x20\x04\x32\x04\x56\x04\x34\x04\x3d\x04\ -\x3e\x04\x48\x04\x35\x04\x3d\x04\x3d\x04\x4e\x00\x20\x04\x34\x04\ -\x3e\x00\x20\x04\x3e\x04\x41\x04\x42\x04\x30\x04\x3d\x04\x3d\x04\ -\x4c\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\x3f\x04\x43\x04\x3d\x04\ -\x3a\x04\x42\x04\x43\x00\x20\x04\x30\x04\x31\x04\x3e\x00\x20\x04\ -\x30\x04\x31\x04\x41\x04\x3e\x04\x3b\x04\x4e\x04\x42\x04\x3d\x04\ -\x56\x00\x20\x00\x28\x04\x1f\x04\x40\x04\x3e\x04\x31\x04\x56\x04\ -\x3b\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x36\x43\x6f\x6f\ -\x72\x64\x69\x6e\x61\x74\x65\x73\x20\x72\x65\x6c\x61\x74\x69\x76\ -\x65\x20\x74\x6f\x20\x6c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\ -\x6f\x72\x20\x61\x62\x73\x6f\x6c\x75\x74\x65\x20\x28\x53\x50\x41\ -\x43\x45\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x08\x00\x43\x00\x6f\x00\x70\x00\x79\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x04\x43\x6f\x70\x79\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x43\x00\x72\x00\x65\x00\ -\x61\x00\x74\x00\x65\x00\x20\x00\x41\x00\x72\x00\x63\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0a\x43\x72\x65\x61\x74\x65\x20\x41\x72\ -\x63\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x1c\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\ -\x42\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0e\x43\x72\x65\x61\x74\x65\x20\x42\x53\ -\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x1a\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\ -\x65\x00\x20\x00\x43\x00\x69\x00\x72\x00\x63\x00\x6c\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x72\x65\x61\x74\x65\x20\ -\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\ -\x00\x65\x00\x20\x00\x44\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\ -\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ -\x43\x72\x65\x61\x74\x65\x20\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\ -\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x50\ -\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0e\x43\x72\x65\x61\x74\x65\x20\x50\x6f\x6c\ -\x79\x67\x6f\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ -\x00\x20\x00\x52\x00\x65\x00\x63\x00\x74\x00\x61\x00\x6e\x00\x67\ -\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\ -\x65\x61\x74\x65\x20\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x43\ -\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x54\x00\x65\ +\x44\x00\x4e\x00\x65\x00\x6c\x00\x7a\x00\x65\x00\x20\x00\x6f\x00\ +\x66\x00\x73\x00\x65\x00\x74\x00\x6f\x00\x76\x00\x61\x00\x74\x00\ +\x20\x00\x74\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x74\x00\ +\x79\x00\x70\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x75\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x43\ +\x61\x6e\x6e\x6f\x74\x20\x6f\x66\x66\x73\x65\x74\x20\x74\x68\x69\ +\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x53\ +\x00\x74\x01\x59\x00\x65\x00\x64\x00\x20\x00\x58\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x08\x43\x65\x6e\x74\x65\x72\x20\x58\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x5a\ +\x00\x6d\x01\x1b\x00\x6e\x00\x69\x00\x74\x00\x20\x00\x73\x00\x74\ +\x00\x79\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x68\ +\x61\x6e\x67\x65\x20\x53\x74\x79\x6c\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\xb6\x00\x43\x00\x68\x00\x65\ +\x00\x63\x00\x6b\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x73\x00\x68\ +\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x20\x00\x61\x00\x70\x00\x70\ +\x00\x65\x00\x61\x00\x72\x00\x20\x00\x61\x00\x73\x00\x20\x00\x66\ +\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x6f\ +\x00\x74\x00\x68\x00\x65\x00\x72\x00\x77\x00\x69\x00\x73\x00\x65\ +\x00\x20\x00\x69\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\ +\x00\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\x20\ +\x00\x61\x00\x73\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x66\ +\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x28\x00\x69\x00\x29\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5b\x43\x68\x65\x63\x6b\x20\ +\x74\x68\x69\x73\x20\x69\x66\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x73\x68\x6f\x75\x6c\x64\x20\x61\x70\x70\x65\x61\x72\ +\x20\x61\x73\x20\x66\x69\x6c\x6c\x65\x64\x2c\x20\x6f\x74\x68\x65\ +\x72\x77\x69\x73\x65\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x61\x70\ +\x70\x65\x61\x72\x20\x61\x73\x20\x77\x69\x72\x65\x66\x72\x61\x6d\ +\x65\x20\x28\x69\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x08\x00\x4b\x00\x72\x00\x75\x00\x68\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x06\x43\x69\x72\x63\x6c\x65\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x43\x00\ +\x6f\x00\x6e\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\x00\x74\x00\ +\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0d\x43\x6f\x6e\x74\x65\x78\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x7e\x00\x53\ +\x00\x6f\x00\x75\x01\x59\x00\x61\x00\x64\x00\x6e\x00\x69\x00\x63\ +\x00\x65\x00\x20\x00\x76\x00\x7a\x00\x74\x00\x61\x01\x7e\x00\x65\ +\x00\x6e\x00\xe9\x00\x20\x00\x6b\x00\x20\x00\x70\x00\x6f\x00\x73\ +\x00\x6c\x00\x65\x00\x64\x00\x6e\x00\xed\x00\x6d\x00\x75\x00\x20\ +\x00\x62\x00\x6f\x00\x64\x00\x75\x00\x20\x00\x6e\x00\x65\x00\x62\ +\x00\x6f\x00\x20\x00\x61\x00\x62\x00\x73\x00\x6f\x00\x6c\x00\x75\ +\x00\x74\x00\x6e\x00\xed\x00\x20\x00\x28\x00\x6d\x00\x65\x00\x7a\ +\x00\x65\x00\x72\x00\x6e\x00\xed\x00\x6b\x00\x29\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x36\x43\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\ +\x73\x20\x72\x65\x6c\x61\x74\x69\x76\x65\x20\x74\x6f\x20\x6c\x61\ +\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x6f\x72\x20\x61\x62\x73\x6f\ +\x6c\x75\x74\x65\x20\x28\x53\x50\x41\x43\x45\x29\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x4b\x00\x6f\ +\x00\x70\x00\xed\x00\x72\x00\x6f\x00\x76\x00\x61\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x43\x6f\x70\x79\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x43\x00\x6f\ +\x00\x75\x00\x6c\x00\x64\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x75\ +\x00\x70\x00\x67\x00\x72\x00\x61\x00\x64\x00\x65\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x73\x00\x0a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1f\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x75\x70\x67\ +\x72\x61\x64\x65\x20\x74\x68\x65\x73\x65\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x1e\x00\x56\x00\x79\x00\x74\x00\x76\x00\x6f\x01\x59\x00\ +\x69\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6c\x00\x6f\x00\x75\x00\ +\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x72\x65\x61\x74\ +\x65\x20\x41\x72\x63\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x1c\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\ +\x65\x00\x20\x00\x42\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x43\x72\x65\x61\x74\ +\x65\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x56\x00\x79\x00\x74\x00\ +\x76\x00\x6f\x01\x59\x00\x69\x00\x74\x00\x20\x00\x6b\x00\x72\x00\ +\x75\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x72\x65\ +\x61\x74\x65\x20\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x74\x00\x65\x00\x20\x00\x44\x00\x57\x00\x69\x00\x72\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x72\x65\x61\ +\x74\x65\x20\x44\x57\x69\x72\x65\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x56\x00\x79\x00\x74\x00\x76\ +\x00\x6f\x01\x59\x00\x69\x00\x74\x00\x20\x00\x6b\x00\xf3\x00\x74\ +\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\ +\x74\x65\x20\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x56\x00\x79\ +\x00\x74\x00\x76\x00\x6f\x01\x59\x00\x69\x00\x74\x00\x20\x00\x6d\ +\x00\x6e\x00\x6f\x00\x68\x00\x6f\x00\xfa\x00\x68\x00\x65\x00\x6c\ +\x00\x6e\x00\xed\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ +\x43\x72\x65\x61\x74\x65\x20\x50\x6f\x6c\x79\x67\x6f\x6e\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x56\ +\x00\x79\x00\x74\x00\x76\x00\x6f\x01\x59\x00\x69\x00\x74\x00\x20\ +\x00\x6f\x00\x62\x00\x64\x00\xe9\x00\x6c\x00\x6e\x00\xed\x00\x6b\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\x74\x65\ +\x20\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x56\x00\x79\x00\x74\ +\x00\x76\x00\x6f\x01\x59\x00\x69\x00\x74\x00\x20\x00\x74\x00\x65\ \x00\x78\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\ \x65\x61\x74\x65\x20\x54\x65\x78\x74\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x43\x00\x72\x00\x65\x00\ -\x61\x00\x74\x00\x65\x00\x20\x00\x57\x00\x69\x00\x72\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\ -\x57\x69\x72\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x24\x00\x44\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\ -\x00\x20\x00\x4d\x00\x65\x00\x61\x00\x73\x00\x75\x00\x72\x00\x65\ -\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x12\x44\x65\x6c\x65\x74\x65\x20\x4d\x65\x61\x73\x75\x72\x65\ -\x6d\x65\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x1e\x00\x44\x00\x69\x00\x73\x00\x70\x00\x6c\x00\x61\ -\x00\x79\x00\x20\x00\x6f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\ -\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x44\x69\x73\x70\ -\x6c\x61\x79\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x44\x00\x69\x00\ -\x73\x00\x74\x00\x61\x00\x6e\x00\x63\x00\x65\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x52\x04\x1d\x04\ -\x35\x00\x20\x04\x3f\x04\x40\x04\x3e\x04\x35\x04\x3a\x04\x42\x04\ -\x43\x04\x32\x04\x30\x04\x42\x04\x38\x00\x20\x04\x42\x04\x3e\x04\ -\x47\x04\x3a\x04\x38\x00\x20\x04\x3d\x04\x30\x00\x20\x04\x3f\x04\ -\x3b\x04\x3e\x04\x49\x04\x38\x04\x3d\x04\x43\x00\x20\x04\x3a\x04\ -\x40\x04\x35\x04\x41\x04\x3b\x04\x35\x04\x3d\x04\x3d\x04\x4f\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x28\x44\x6f\x20\x6e\x6f\x74\x20\ -\x70\x72\x6f\x6a\x65\x63\x74\x20\x70\x6f\x69\x6e\x74\x73\x20\x74\ -\x6f\x20\x61\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x70\x6c\x61\x6e\ -\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x0a\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x05\x44\x72\x61\x66\x74\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x44\x00\x72\x00\x61\ -\x00\x66\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x20\ -\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x2e\x00\x45\x00\x64\x00\x67\x00\x65\x00\x73\x00\ -\x20\x00\x64\x00\x6f\x00\x6e\x00\x27\x00\x74\x00\x20\x00\x69\x00\ -\x6e\x00\x74\x00\x65\x00\x72\x00\x73\x00\x65\x00\x63\x00\x74\x00\ -\x21\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x45\x64\x67\ -\x65\x73\x20\x64\x6f\x6e\x27\x74\x20\x69\x6e\x74\x65\x72\x73\x65\ -\x63\x74\x21\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x0c\x04\x1f\x04\x40\x04\x30\x04\x32\x04\x3a\x04\x30\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x46\ -\x00\x26\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x64\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x07\x46\x26\x69\x6c\x6c\x65\x64\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x04\x1a\x04\ -\x3e\x04\x3b\x04\x56\x04\x40\x00\x20\x04\x3f\x04\x3b\x04\x3e\x04\ -\x49\x04\x38\x04\x3d\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0a\x46\x61\x63\x65\x20\x43\x6f\x6c\x6f\x72\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4c\x04\x17\x04\x30\x04\ -\x32\x04\x35\x04\x40\x04\x48\x04\x38\x04\x42\x04\x38\x00\x20\x04\ -\x42\x04\x30\x00\x20\x04\x37\x04\x30\x04\x3a\x04\x40\x04\x38\x04\ -\x42\x04\x38\x00\x20\x04\x3f\x04\x3e\x04\x42\x04\x3e\x04\x47\x04\ -\x3d\x04\x43\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\x56\x04\x4e\x00\ -\x20\x00\x28\x00\x43\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x28\x46\x69\x6e\x69\x73\x68\x65\x73\x20\x61\x6e\x64\x20\x63\x6c\ -\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\ -\x20\x6c\x69\x6e\x65\x20\x28\x43\x29\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x6a\x00\x46\x00\x69\x00\x6e\x00\ -\x69\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\ -\x65\x00\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\ -\x74\x00\x20\x00\x64\x00\x72\x00\x61\x00\x77\x00\x69\x00\x6e\x00\ -\x67\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x64\x00\x69\x00\ -\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x70\x00\x65\x00\ -\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x28\x00\ -\x46\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x46\x69\x6e\ -\x69\x73\x68\x65\x73\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\ -\x74\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x6f\x72\x20\x65\x64\x69\ -\x74\x69\x6e\x67\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x20\x28\ -\x46\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x1a\x04\x20\x04\x3e\x04\x37\x04\x3c\x04\x56\x04\x40\x00\x20\ -\x04\x48\x04\x40\x04\x38\x04\x44\x04\x42\x04\x43\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x09\x46\x6f\x6e\x74\x20\x53\x69\x7a\x65\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x68\x00\ -\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\ -\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x20\x00\x73\x00\ -\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\ -\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x66\x00\ -\x61\x00\x63\x00\x65\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ -\x20\x00\x69\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x34\x46\x6f\x75\x6e\x64\x20\x31\x20\x63\x6c\x6f\x73\x65\x64\x20\ -\x73\x6b\x65\x74\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x6d\ -\x61\x6b\x69\x6e\x67\x20\x61\x20\x66\x61\x63\x65\x20\x66\x72\x6f\ -\x6d\x20\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x46\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\ -\x20\x00\x31\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x3a\x00\ -\x20\x00\x65\x00\x78\x00\x74\x00\x72\x00\x61\x00\x63\x00\x74\x00\ -\x69\x00\x6e\x00\x67\x00\x20\x00\x69\x00\x74\x00\x73\x00\x20\x00\ -\x77\x00\x69\x00\x72\x00\x65\x00\x73\x00\x0a\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x23\x46\x6f\x75\x6e\x64\x20\x31\x20\x66\x61\x63\ -\x65\x3a\x20\x65\x78\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x69\x74\ -\x73\x20\x77\x69\x72\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x5e\x00\x46\x00\x6f\x00\x75\x00\x6e\ -\x00\x64\x00\x20\x00\x31\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\ -\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\ -\x00\x69\x00\x63\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ -\x00\x74\x00\x73\x00\x3a\x00\x20\x00\x64\x00\x72\x00\x61\x00\x66\ -\x00\x74\x00\x69\x00\x66\x00\x79\x00\x69\x00\x6e\x00\x67\x00\x20\ -\x00\x69\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2f\ -\x46\x6f\x75\x6e\x64\x20\x31\x20\x6e\x6f\x6e\x2d\x70\x61\x72\x61\ -\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\ -\x64\x72\x61\x66\x74\x69\x66\x79\x69\x6e\x67\x20\x69\x74\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x00\ -\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\ -\x6f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x77\x00\x69\x00\x72\x00\ -\x65\x00\x3a\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x69\x00\ -\x6e\x00\x67\x00\x20\x00\x69\x00\x74\x00\x0a\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x1e\x46\x6f\x75\x6e\x64\x20\x31\x20\x6f\x70\x65\ -\x6e\x20\x77\x69\x72\x65\x3a\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\ -\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x6a\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\ -\x31\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\ -\x74\x00\x72\x00\x69\x00\x63\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x63\x00\x74\x00\x3a\x00\x20\x00\x62\x00\x72\x00\x65\x00\ -\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x69\x00\x74\x00\ -\x73\x00\x20\x00\x64\x00\x65\x00\x70\x00\x65\x00\x6e\x00\x64\x00\ -\x65\x00\x6e\x00\x63\x00\x69\x00\x65\x00\x73\x00\x0a\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x35\x46\x6f\x75\x6e\x64\x20\x31\x20\x70\ -\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\ -\x3a\x20\x62\x72\x65\x61\x6b\x69\x6e\x67\x20\x69\x74\x73\x20\x64\ -\x65\x70\x65\x6e\x64\x65\x6e\x63\x69\x65\x73\x0a\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5a\x00\x46\x00\x6f\ -\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\x73\x00\x6f\ -\x00\x6c\x00\x69\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\ -\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ -\x00\x63\x00\x74\x00\x3a\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\ -\x00\x64\x00\x69\x00\x66\x00\x79\x00\x69\x00\x6e\x00\x67\x00\x20\ -\x00\x69\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\ -\x46\x6f\x75\x6e\x64\x20\x31\x20\x73\x6f\x6c\x69\x64\x69\x66\x69\ -\x63\x61\x62\x6c\x65\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x73\x6f\ -\x6c\x69\x64\x69\x66\x79\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x00\x46\x00\ -\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x32\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x3a\x00\x20\x00\ -\x66\x00\x75\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\ -\x68\x00\x65\x00\x6d\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x1d\x46\x6f\x75\x6e\x64\x20\x32\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\x00\x46\ -\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x32\x00\x20\x00\x6f\ -\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x3a\x00\x20\ -\x00\x73\x00\x75\x00\x62\x00\x74\x00\x72\x00\x61\x00\x63\x00\x74\ -\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x6d\ -\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x46\x6f\x75\x6e\ -\x64\x20\x32\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x73\x75\x62\ -\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x46\ -\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x63\x00\x6c\x00\x6f\ -\x00\x73\x00\x65\x00\x64\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\ -\x00\x73\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\ -\x00\x67\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x0a\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x46\x6f\x75\x6e\x64\x20\ -\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x73\x3a\x20\x6d\x61\ -\x6b\x69\x6e\x67\x20\x66\x61\x63\x65\x73\x0a\x07\x00\x00\x00\x05\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x44\x00\x57\x00\x69\x00\ +\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x57\x69\ +\x72\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x2c\x00\x44\x00\x57\x00\x69\x00\x72\x00\x65\x00\x20\x00\x68\ +\x00\x61\x00\x73\x00\x20\x00\x62\x00\x65\x00\x65\x00\x6e\x00\x20\ +\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x0a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x16\x44\x57\x69\x72\x65\x20\x68\x61\ +\x73\x20\x62\x65\x65\x6e\x20\x63\x6c\x6f\x73\x65\x64\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x52\ +\x00\x6f\x00\x7a\x00\x6d\x01\x1b\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x44\x00\ +\x69\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x63\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\x00\ +\x6e\x00\x65\x00\x70\x00\x72\x00\x6f\x00\x6d\x00\xed\x00\x74\x00\ +\x61\x00\x74\x00\x20\x00\x62\x00\x6f\x00\x64\x00\x79\x00\x20\x00\ +\x64\x00\x6f\x00\x20\x00\x6b\x00\x72\x00\x65\x00\x73\x00\x6c\x00\ +\xed\x00\x63\x00\xed\x00\x20\x00\x72\x00\x6f\x00\x76\x00\x69\x00\ +\x6e\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x44\x6f\x20\ +\x6e\x6f\x74\x20\x70\x72\x6f\x6a\x65\x63\x74\x20\x70\x6f\x69\x6e\ +\x74\x73\x20\x74\x6f\x20\x61\x20\x64\x72\x61\x77\x69\x6e\x67\x20\ +\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x28\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\ +\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x14\x44\x72\x61\x66\x74\x20\x63\x72\x65\ +\x61\x74\x69\x6f\x6e\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x44\x00\x72\x00\ +\x61\x00\x66\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\ +\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x18\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\x69\x66\ +\x69\x63\x61\x74\x69\x6f\x6e\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x48\x00\ +\x72\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x65\x00\x20\x00\ +\x6e\x00\x65\x00\x70\x00\x72\x00\x6f\x00\x74\x00\xed\x00\x6e\x00\ +\x61\x00\x6a\x00\xed\x00\x21\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x17\x45\x64\x67\x65\x73\x20\x64\x6f\x6e\x27\x74\x20\x69\ +\x6e\x74\x65\x72\x73\x65\x63\x74\x21\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x55\x00\x70\x00\x72\ +\x00\x61\x00\x76\x00\x69\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0e\x00\x46\x00\x26\x00\x69\x00\x6c\x00\x6c\ +\x00\x65\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x46\x26\ +\x69\x6c\x6c\x65\x64\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x18\x00\x42\x00\x61\x00\x72\x00\x76\x00\x61\x00\ +\x20\x00\x70\x00\x6c\x00\x6f\x00\x63\x00\x68\x00\x79\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x46\x61\x63\x65\x20\x43\x6f\x6c\x6f\ +\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x42\x00\x75\x00\x6b\x00\x6f\x00\x6e\x01\x0d\x00\xed\x00\x20\x00\ +\x61\x00\x20\x00\x7a\x00\x61\x00\x76\x01\x59\x00\x65\x00\x20\x00\ +\x61\x00\x6b\x00\x74\x00\x75\x00\xe1\x00\x6c\x00\x6e\x00\xed\x00\ +\x20\x01\x59\x00\xe1\x00\x64\x00\x65\x00\x6b\x00\x20\x00\x28\x00\ +\x43\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x46\x69\x6e\ +\x69\x73\x68\x65\x73\x20\x61\x6e\x64\x20\x63\x6c\x6f\x73\x65\x73\ +\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\x6e\ +\x65\x20\x28\x43\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x6a\x00\x46\x00\x69\x00\x6e\x00\x69\x00\x73\x00\ +\x68\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\ +\x64\x00\x72\x00\x61\x00\x77\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x6f\x00\x72\x00\x20\x00\x65\x00\x64\x00\x69\x00\x74\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x72\x00\x61\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x28\x00\x46\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x35\x46\x69\x6e\x69\x73\x68\x65\ +\x73\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x64\x72\ +\x61\x77\x69\x6e\x67\x20\x6f\x72\x20\x65\x64\x69\x74\x69\x6e\x67\ +\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x20\x28\x46\x29\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x56\ +\x00\x65\x00\x6c\x00\x69\x00\x6b\x00\x6f\x00\x73\x00\x74\x00\x20\ +\x00\x70\x00\xed\x00\x73\x00\x6d\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x46\x6f\x6e\x74\x20\x53\x69\x7a\x65\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4e\x00\x46\x00\ +\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\x63\x00\ +\x69\x00\x72\x00\x63\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x20\x00\ +\x65\x00\x64\x00\x67\x00\x65\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\ +\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x63\x00\ +\x69\x00\x72\x00\x63\x00\x6c\x00\x65\x00\x0a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x27\x46\x6f\x75\x6e\x64\x20\x31\x20\x63\x69\x72\ +\x63\x75\x6c\x61\x72\x20\x65\x64\x67\x65\x3a\x20\x6d\x61\x6b\x69\ +\x6e\x67\x20\x61\x20\x63\x69\x72\x63\x6c\x65\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x68\x00\x46\x00\x6f\ +\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\x63\x00\x6c\ +\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x20\x00\x73\x00\x6b\x00\x65\ +\x00\x74\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\ +\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\ +\x00\x65\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x69\ +\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x46\x6f\ +\x75\x6e\x64\x20\x31\x20\x63\x6c\x6f\x73\x65\x64\x20\x73\x6b\x65\ +\x74\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x6d\x61\x6b\x69\ +\x6e\x67\x20\x61\x20\x66\x61\x63\x65\x20\x66\x72\x6f\x6d\x20\x69\ +\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x46\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\ +\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x3a\x00\x20\x00\x65\ +\x00\x78\x00\x74\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x69\x00\x74\x00\x73\x00\x20\x00\x77\x00\x69\ +\x00\x72\x00\x65\x00\x73\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x23\x46\x6f\x75\x6e\x64\x20\x31\x20\x66\x61\x63\x65\x3a\x20\ +\x65\x78\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x69\x74\x73\x20\x77\ +\x69\x72\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x5e\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\ +\x20\x00\x31\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x70\x00\ +\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\ +\x63\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x73\x00\x3a\x00\x20\x00\x64\x00\x72\x00\x61\x00\x66\x00\x74\x00\ +\x69\x00\x66\x00\x79\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x69\x00\ +\x74\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x46\x6f\x75\ +\x6e\x64\x20\x31\x20\x6e\x6f\x6e\x2d\x70\x61\x72\x61\x6d\x65\x74\ +\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x64\x72\x61\ +\x66\x74\x69\x66\x79\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x46\x00\x6f\ +\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\x6f\x00\x70\ +\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x64\x00\x67\x00\x65\x00\x3a\ +\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\ +\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x0a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x21\x46\x6f\x75\x6e\x64\x20\x31\x20\ +\x6f\x70\x65\x6e\x20\x65\x64\x67\x65\x3a\x20\x6d\x61\x6b\x69\x6e\ +\x67\x20\x61\x20\x6c\x69\x6e\x65\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x00\x46\x00\x6f\x00\x75\x00\ +\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\x6f\x00\x70\x00\x65\x00\ +\x6e\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x3a\x00\x20\x00\ +\x63\x00\x6c\x00\x6f\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x69\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x46\ +\x6f\x75\x6e\x64\x20\x31\x20\x6f\x70\x65\x6e\x20\x77\x69\x72\x65\ +\x3a\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6a\x00\x46\x00\ +\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\x70\x00\ +\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\ +\x63\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x3a\x00\x20\x00\x62\x00\x72\x00\x65\x00\x61\x00\x6b\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x69\x00\x74\x00\x73\x00\x20\x00\x64\x00\ +\x65\x00\x70\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x63\x00\ +\x69\x00\x65\x00\x73\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x35\x46\x6f\x75\x6e\x64\x20\x31\x20\x70\x61\x72\x61\x6d\x65\x74\ +\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x62\x72\x65\x61\ +\x6b\x69\x6e\x67\x20\x69\x74\x73\x20\x64\x65\x70\x65\x6e\x64\x65\ +\x6e\x63\x69\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x5a\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\ +\x00\x20\x00\x31\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\ +\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x62\x00\x6c\x00\x65\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x3a\ +\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x69\x00\x66\ +\x00\x79\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x69\x00\x74\x00\x0a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x46\x6f\x75\x6e\x64\x20\ +\x31\x20\x73\x6f\x6c\x69\x64\x69\x66\x69\x63\x61\x62\x6c\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x3a\x20\x73\x6f\x6c\x69\x64\x69\x66\x79\ +\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x3a\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\ +\x64\x00\x20\x00\x32\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x73\x00\x3a\x00\x20\x00\x66\x00\x75\x00\x73\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x6d\x00\ +\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x46\x6f\x75\x6e\x64\ +\x20\x32\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x66\x75\x73\x69\ +\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x44\x00\x46\x00\x6f\x00\x75\x00\x6e\ +\x00\x64\x00\x20\x00\x32\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x73\x00\x3a\x00\x20\x00\x73\x00\x75\x00\x62\ +\x00\x74\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x0a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x22\x46\x6f\x75\x6e\x64\x20\x32\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x3a\x20\x73\x75\x62\x74\x72\x61\x63\x74\x69\ +\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x46\x00\x46\x00\x6f\x00\x75\x00\x6e\ +\x00\x64\x00\x20\x00\x61\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\ +\x00\x65\x00\x64\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x3a\ +\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\ +\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x0a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x23\x46\x6f\x75\x6e\x64\x20\x61\x20\ +\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x3a\x20\x6d\x61\x6b\ +\x69\x6e\x67\x20\x61\x20\x66\x61\x63\x65\x0a\x07\x00\x00\x00\x05\ \x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5c\x00\x46\x00\x6f\x00\ \x75\x00\x6e\x00\x64\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\ \x70\x00\x73\x00\x3a\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\ @@ -4495,12642 +46552,383 @@ qt_resource_data = "\ \x69\x6c\x6c\x20\x62\x65\x20\x70\x65\x72\x66\x6f\x72\x6d\x65\x64\ \x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x74\x68\x65\x20\ \x63\x6c\x61\x73\x73\x69\x63\x20\x6f\x66\x66\x73\x65\x74\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x98\x00\x49\ -\x00\x66\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\ -\x00\x64\x00\x2c\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\ -\x00\x6e\x00\x64\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\ -\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\x69\x00\x6e\x00\x69\ -\x00\x73\x00\x68\x00\x20\x00\x75\x00\x6e\x00\x74\x00\x69\x00\x6c\ -\x00\x20\x00\x79\x00\x6f\x00\x75\x00\x20\x00\x70\x00\x72\x00\x65\ -\x00\x73\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\ -\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x62\ -\x00\x75\x00\x74\x00\x74\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x67\ -\x00\x61\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4c\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa8\x00\x4a\ +\x00\x65\x00\x2d\x00\x6c\x00\x69\x00\x20\x00\x7a\x00\x61\x01\x61\ +\x00\x6b\x00\x72\x00\x74\x00\x6e\x00\x75\x00\x74\x00\x6f\x00\x2c\ +\x00\x20\x00\x70\x01\x59\x00\xed\x00\x6b\x00\x61\x00\x7a\x00\x20\ +\x00\x73\x00\x65\x00\x20\x00\x6e\x00\x65\x00\x64\x00\x6f\x00\x6b\ +\x00\x6f\x00\x6e\x01\x0d\x00\xed\x00\x2c\x00\x20\x00\x64\x00\x6f\ +\x00\x6b\x00\x75\x00\x64\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x74\ +\x00\x69\x00\x73\x00\x6b\x00\x6e\x00\x65\x00\x74\x00\x65\x00\x20\ +\x00\x7a\x00\x6e\x00\x6f\x00\x76\x00\x75\x00\x20\x00\x6e\x00\x61\ +\x00\x20\x00\x70\x01\x59\x00\xed\x00\x6b\x00\x61\x00\x7a\x00\x6f\ +\x00\x76\x00\xe9\x00\x20\x00\x74\x00\x6c\x00\x61\x01\x0d\x00\xed\ +\x00\x74\x00\x6b\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4c\ \x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x63\x6f\x6d\x6d\ \x61\x6e\x64\x20\x77\x69\x6c\x6c\x20\x6e\x6f\x74\x20\x66\x69\x6e\ \x69\x73\x68\x20\x75\x6e\x74\x69\x6c\x20\x79\x6f\x75\x20\x70\x72\ \x65\x73\x73\x20\x74\x68\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\ \x62\x75\x74\x74\x6f\x6e\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x84\x04\x2f\x04\x3a\ -\x04\x49\x04\x3e\x00\x20\x04\x46\x04\x35\x00\x20\x04\x3e\x04\x31\ -\x04\x40\x04\x30\x04\x3d\x04\x3e\x00\x2c\x00\x20\x04\x3e\x04\x31\ -\x00\x27\x04\x54\x04\x3a\x04\x42\x04\x38\x00\x20\x04\x31\x04\x43\ -\x04\x34\x04\x43\x04\x42\x04\x4c\x00\x20\x04\x41\x04\x3a\x04\x3e\ -\x04\x3f\x04\x56\x04\x39\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x56\ -\x00\x20\x04\x37\x04\x30\x04\x3c\x04\x56\x04\x41\x04\x42\x04\x4c\ -\x00\x20\x04\x3f\x04\x35\x04\x40\x04\x35\x04\x3c\x04\x56\x04\x49\ -\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\x00\x28\x00\x43\x00\x29\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x49\x66\x20\x63\x68\x65\ -\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\ -\x6c\x6c\x20\x62\x65\x20\x63\x6f\x70\x69\x65\x64\x20\x69\x6e\x73\ -\x74\x65\x61\x64\x20\x6f\x66\x20\x6d\x6f\x76\x65\x64\x20\x28\x43\ -\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x20\x00\x49\x00\x6e\x00\x73\x00\x74\x00\x61\x00\x6c\x00\x6c\x00\ -\x65\x00\x64\x00\x20\x00\x4d\x00\x61\x00\x63\x00\x72\x00\x6f\x00\ -\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x49\x6e\x73\x74\x61\ -\x6c\x6c\x65\x64\x20\x4d\x61\x63\x72\x6f\x73\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x00\x4c\x00\x61\x00\ -\x73\x00\x74\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\ -\x20\x00\x68\x00\x61\x00\x73\x00\x20\x00\x62\x00\x65\x00\x65\x00\ -\x6e\x00\x20\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\ -\x64\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x4c\x61\x73\ -\x74\x20\x70\x6f\x69\x6e\x74\x20\x68\x61\x73\x20\x62\x65\x65\x6e\ -\x20\x72\x65\x6d\x6f\x76\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x04\x1b\x04\x56\x04\x3d\x04\ -\x56\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4c\x69\x6e\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x82\x00\x4a\x00\x65\ +\x00\x2d\x00\x6c\x00\x69\x00\x20\x00\x7a\x00\x61\x01\x61\x00\x6b\ +\x00\x72\x00\x74\x00\x6e\x00\x75\x00\x74\x00\x61\x00\x2c\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x20\ +\x00\x62\x00\x75\x00\x64\x00\x6f\x00\x75\x00\x20\x00\x7a\x00\x6b\ +\x00\x6f\x00\x70\x00\xed\x00\x72\x00\x6f\x00\x76\x00\xe1\x00\x6e\ +\x00\x79\x00\x20\x00\x6e\x00\x61\x00\x6d\x00\xed\x00\x73\x00\x74\ +\x00\x6f\x00\x20\x00\x70\x01\x59\x00\x65\x00\x73\x00\x75\x00\x6e\ +\x00\x75\x00\x74\x00\xfd\x00\x20\x00\x28\x00\x43\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x37\x49\x66\x20\x63\x68\x65\x63\x6b\ +\x65\x64\x2c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\ +\x20\x62\x65\x20\x63\x6f\x70\x69\x65\x64\x20\x69\x6e\x73\x74\x65\ +\x61\x64\x20\x6f\x66\x20\x6d\x6f\x76\x65\x64\x20\x28\x43\x29\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\ +\x49\x00\x6e\x00\x73\x00\x74\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\ +\x64\x00\x20\x00\x4d\x00\x61\x00\x63\x00\x72\x00\x6f\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x10\x49\x6e\x73\x74\x61\x6c\x6c\ +\x65\x64\x20\x4d\x61\x63\x72\x6f\x73\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x36\x00\x50\x00\x6f\x00\x73\x00\ +\x6c\x00\x65\x00\x64\x00\x6e\x00\xed\x00\x20\x00\x62\x00\x6f\x00\ +\x64\x00\x20\x00\x62\x00\x79\x00\x6c\x00\x20\x00\x6f\x00\x64\x00\ +\x73\x00\x74\x00\x72\x00\x61\x00\x6e\x01\x1b\x00\x6e\x00\x20\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x4c\x61\x73\x74\x20\x70\x6f\ +\x69\x6e\x74\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x72\x65\x6d\ +\x6f\x76\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x08\x01\x0c\x00\xe1\x00\x72\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x42\x00\x61\x00\ +\x72\x00\x76\x00\x61\x00\x20\x01\x0d\x00\xe1\x00\x72\x00\x79\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4c\x69\x6e\x65\x20\x43\x6f\ +\x6c\x6f\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x14\x01\x60\x00\xed\x01\x59\x00\x6b\x00\x61\x00\x20\x01\ +\x0d\x00\xe1\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x4c\x69\x6e\x65\x20\x57\x69\x64\x74\x68\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x50\x01\x59\x00\ +\x65\x00\x73\x00\x75\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x4d\x6f\x76\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x36\x00\x4e\x00\x6f\x00\x20\x00\x6d\x00\x6f\x00\ +\x72\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x67\x00\ +\x72\x00\x61\x00\x64\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x73\x00\ +\x73\x00\x69\x00\x62\x00\x6c\x00\x65\x00\x0a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1b\x4e\x6f\x20\x6d\x6f\x72\x65\x20\x64\x6f\x77\ +\x6e\x67\x72\x61\x64\x65\x20\x70\x6f\x73\x73\x69\x62\x6c\x65\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4a\ +\x00\x4e\x00\x6f\x00\x20\x00\x75\x00\x70\x00\x67\x00\x72\x00\x61\ +\x00\x64\x00\x65\x00\x20\x00\x61\x00\x76\x00\x61\x00\x69\x00\x6c\ +\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\ +\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x25\x4e\x6f\x20\x75\x70\x67\x72\x61\x64\x65\x20\x61\ +\x76\x61\x69\x6c\x61\x62\x6c\x65\x20\x66\x6f\x72\x20\x74\x68\x69\ +\x73\x20\x6f\x62\x6a\x65\x63\x74\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x01\x7d\x00\xe1\x00\x64\x00\ +\x6e\x00\xfd\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\x6f\x6e\ \x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x16\x04\x1a\x04\x3e\x04\x3b\x04\x56\x04\x40\x00\x20\x04\x3b\x04\ -\x56\x04\x3d\x04\x56\x04\x57\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0a\x4c\x69\x6e\x65\x20\x43\x6f\x6c\x6f\x72\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x04\x28\x04\x38\x04\ -\x40\x04\x38\x04\x3d\x04\x30\x00\x20\x04\x3b\x04\x56\x04\x3d\x04\ -\x56\x04\x57\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4c\x69\x6e\ -\x65\x20\x57\x69\x64\x74\x68\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x16\x04\x1f\x04\x35\x04\x40\x04\x35\x04\ -\x3c\x04\x56\x04\x49\x04\x35\x04\x3d\x04\x3d\x04\x4f\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x04\x4d\x6f\x76\x65\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x04\x1d\x04\x35\x04\ -\x3c\x04\x30\x04\x54\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\ -\x6f\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x20\x04\x1a\x04\x56\x04\x3b\x04\x4c\x04\x3a\x04\x56\x04\ -\x41\x04\x42\x04\x4c\x00\x20\x04\x41\x04\x42\x04\x3e\x04\x40\x04\ -\x56\x04\x3d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4e\x75\x6d\ -\x62\x65\x72\x20\x6f\x66\x20\x73\x69\x64\x65\x73\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x04\x17\x04\x3c\ -\x04\x56\x04\x49\x04\x35\x04\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\ +\x16\x00\x50\x00\x6f\x01\x0d\x00\x65\x00\x74\x00\x20\x00\x73\x00\ +\x74\x00\x72\x00\x61\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0f\x4e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x73\x69\x64\x65\x73\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\ +\x00\x4f\x00\x64\x00\x73\x00\x74\x00\x75\x00\x70\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5a\x04\x17\x04\x41\ -\x04\x43\x04\x32\x00\x20\x04\x3f\x04\x40\x04\x30\x04\x46\x04\x4e\ -\x04\x54\x00\x20\x04\x3b\x04\x38\x04\x48\x04\x35\x00\x20\x04\x37\ -\x00\x20\x04\x3e\x04\x34\x04\x3d\x04\x38\x04\x3c\x00\x20\x04\x3e\ -\x04\x31\x00\x27\x04\x54\x04\x3a\x04\x42\x04\x3e\x04\x3c\x00\x20\ -\x04\x32\x00\x20\x04\x3e\x04\x34\x04\x38\x04\x3d\x00\x20\x04\x47\ -\x04\x30\x04\x41\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\ -\x4f\x66\x66\x73\x65\x74\x20\x6f\x6e\x6c\x79\x20\x77\x6f\x72\x6b\ -\x73\x20\x6f\x6e\x20\x6f\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\ -\x61\x74\x20\x61\x20\x74\x69\x6d\x65\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x04\x12\x04\x38\x04\x31\ -\x04\x35\x04\x40\x04\x56\x04\x42\x04\x4c\x00\x20\x04\x3e\x04\x31\ -\x00\x27\x04\x54\x04\x3a\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0b\x50\x69\x63\x6b\x20\x4f\x62\x6a\x65\x63\x74\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x62\x04\x1e\x04\ -\x31\x04\x35\x04\x40\x04\x56\x04\x42\x04\x4c\x00\x20\x04\x44\x04\ -\x40\x04\x30\x04\x33\x04\x3c\x04\x35\x04\x3d\x04\x42\x00\x20\x04\ -\x49\x04\x3e\x04\x31\x00\x20\x04\x32\x04\x38\x04\x37\x04\x3d\x04\ -\x30\x04\x47\x04\x38\x04\x42\x04\x38\x00\x20\x04\x3f\x04\x3b\x04\ -\x3e\x04\x49\x04\x38\x04\x3d\x04\x43\x00\x20\x04\x3c\x04\x30\x04\ -\x3b\x04\x4e\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4f\x00\x20\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x28\x50\x69\x63\x6b\x20\x61\x20\ -\x66\x61\x63\x65\x20\x74\x6f\x20\x64\x65\x66\x69\x6e\x65\x20\x74\ -\x68\x65\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x58\x00\x4f\x00\x66\ +\x00\x73\x00\x65\x00\x74\x00\x20\x00\x66\x00\x75\x00\x6e\x00\x67\ +\x00\x75\x00\x6a\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x7a\ +\x00\x65\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x6a\x00\x65\x00\x64\ +\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x20\x00\x6e\x00\x61\x00\x6a\x00\x65\x00\x64\x00\x6e\ +\x00\x6f\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x4f\x66\ +\x66\x73\x65\x74\x20\x6f\x6e\x6c\x79\x20\x77\x6f\x72\x6b\x73\x20\ +\x6f\x6e\x20\x6f\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x61\x74\ +\x20\x61\x20\x74\x69\x6d\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x52\x00\x4f\x00\x6e\x00\x65\x00\x20\ +\x00\x77\x00\x69\x00\x72\x00\x65\x00\x20\x00\x69\x00\x73\x00\x20\ +\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\ +\x00\x61\x00\x72\x00\x2c\x00\x20\x00\x75\x00\x70\x00\x67\x00\x72\ +\x00\x61\x00\x64\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\ +\x00\x64\x00\x6f\x00\x6e\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x29\x4f\x6e\x65\x20\x77\x69\x72\x65\x20\x69\x73\x20\ +\x6e\x6f\x74\x20\x70\x6c\x61\x6e\x61\x72\x2c\x20\x75\x70\x67\x72\ +\x61\x64\x65\x20\x6e\x6f\x74\x20\x64\x6f\x6e\x65\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x56\x00\ +\x79\x00\x62\x00\x72\x00\x61\x00\x74\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0b\x50\x69\x63\x6b\x20\x4f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x62\x00\x56\x00\x79\ +\x00\x62\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x73\x00\x69\ +\x00\x20\x00\x70\x00\x6c\x00\x6f\x00\x63\x00\x68\x00\x75\x00\x20\ +\x00\x70\x00\x72\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x66\x00\x69\ +\x00\x6e\x00\x6f\x00\x76\x00\xe1\x00\x6e\x00\xed\x00\x20\x00\x6b\ +\x00\x72\x00\x65\x00\x73\x00\x6c\x00\xed\x00\x63\x00\xed\x00\x20\ +\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\x79\x00\x20\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x28\x50\x69\x63\x6b\x20\x61\x20\x66\ +\x61\x63\x65\x20\x74\x6f\x20\x64\x65\x66\x69\x6e\x65\x20\x74\x68\ +\x65\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\ +\x00\x56\x00\x79\x00\x62\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\ +\x00\x6f\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x3a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0f\x50\x69\x63\x6b\x20\x61\x70\x65\x72\x74\ +\x75\x72\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x2c\x00\x56\x00\x79\x00\x62\x00\x65\x00\x72\x00\ +\x74\x00\x65\x00\x20\x00\x7a\x00\xe1\x00\x6b\x00\x6c\x00\x61\x00\ +\x64\x00\x6e\x00\xed\x00\x20\x00\xfa\x00\x68\x00\x65\x00\x6c\x00\ +\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\ +\x62\x61\x73\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x56\x00\x79\ +\x00\x62\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x7a\x00\xe1\ +\x00\x6b\x00\x6c\x00\x61\x00\x64\x00\x6e\x00\xed\x00\x20\x00\x62\ +\x00\x6f\x00\x64\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\ +\x50\x69\x63\x6b\x20\x62\x61\x73\x65\x20\x70\x6f\x69\x6e\x74\x3a\ \x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x1e\x00\x50\x00\x69\x00\x63\x00\x6b\x00\x20\x00\x61\x00\x70\x00\ -\x65\x00\x72\x00\x74\x00\x75\x00\x72\x00\x65\x00\x3a\x00\x0a\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x50\x69\x63\x6b\x20\x61\x70\ -\x65\x72\x74\x75\x72\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x28\x04\x12\x04\x38\x04\x31\x04\x56\ -\x04\x40\x00\x20\x04\x31\x04\x30\x04\x37\x04\x3e\x04\x32\x04\x3e\ -\x04\x33\x04\x3e\x00\x20\x04\x3a\x04\x43\x04\x42\x04\x30\x00\x20\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\x62\ -\x61\x73\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x04\x12\x04\x38\x04\ -\x31\x04\x56\x04\x40\x00\x20\x04\x31\x04\x30\x04\x37\x04\x3e\x04\ -\x32\x04\x3e\x04\x57\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\ -\x38\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\ -\x6b\x20\x62\x61\x73\x65\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x04\x12\ -\x04\x38\x04\x31\x04\x40\x04\x30\x04\x42\x04\x38\x00\x20\x04\x46\ -\x04\x35\x04\x3d\x04\x42\x04\x40\x04\x30\x04\x3b\x04\x4c\x04\x3d\ -\x04\x43\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x43\x00\x20\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x50\x69\x63\x6b\x20\x63\ -\x65\x6e\x74\x65\x72\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x04\x12\x04\ -\x38\x04\x31\x04\x56\x04\x40\x00\x20\x04\x32\x04\x56\x04\x34\x04\ -\x41\x04\x42\x04\x30\x04\x3d\x04\x56\x00\x20\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x0f\x50\x69\x63\x6b\x20\x64\x69\x73\x74\x61\x6e\ -\x63\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x2a\x04\x12\x04\x38\x04\x31\x04\x56\x04\x40\x00\x20\ -\x04\x3a\x04\x56\x04\x3d\x04\x46\x04\x35\x04\x32\x04\x3e\x04\x57\ -\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x38\x00\x20\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x10\x50\x69\x63\x6b\x20\x65\x6e\x64\ -\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x2a\x04\x12\x04\x38\x04\x31\x04\x40\ -\x04\x30\x04\x42\x04\x38\x00\x20\x04\x3f\x04\x35\x04\x40\x04\x48\ -\x04\x43\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x43\x00\x3a\ -\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\x6b\ -\x20\x66\x69\x72\x73\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x04\x12\ -\x04\x38\x04\x31\x04\x40\x04\x30\x04\x42\x04\x38\x00\x20\x04\x42\ -\x04\x3e\x04\x47\x04\x3a\x04\x43\x00\x20\x04\x40\x04\x3e\x04\x37\ -\x04\x3c\x04\x56\x04\x49\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x6c\ -\x6f\x63\x61\x74\x69\x6f\x6e\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x72\x04\ -\x12\x04\x38\x04\x31\x04\x40\x04\x30\x04\x42\x04\x38\x00\x20\x04\ -\x3d\x04\x30\x04\x41\x04\x42\x04\x43\x04\x3f\x04\x3d\x04\x43\x00\ -\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x43\x00\x2c\x00\x20\x04\ -\x30\x04\x31\x04\x3e\x00\x20\x04\x37\x04\x30\x04\x32\x04\x35\x04\ -\x40\x04\x48\x04\x38\x04\x42\x04\x38\x00\x20\x00\x28\x00\x46\x00\ -\x29\x00\x20\x04\x47\x04\x38\x00\x20\x04\x37\x04\x30\x04\x3a\x04\ -\x40\x04\x38\x04\x42\x04\x38\x00\x20\x00\x28\x00\x43\x00\x29\x00\ -\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x50\x69\x63\x6b\x20\ -\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x2c\x20\x6f\x72\x20\x28\ -\x46\x29\x69\x6e\x69\x73\x68\x20\x6f\x72\x20\x28\x43\x29\x6c\x6f\ -\x73\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x30\x04\x12\x04\x38\x04\x31\x04\x40\x04\x30\x04\x42\ -\x04\x38\x00\x20\x04\x3d\x04\x30\x04\x41\x04\x42\x04\x43\x04\x3f\ -\x04\x3d\x04\x43\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x43\ -\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\ -\x63\x6b\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x04\ -\x12\x04\x38\x04\x31\x04\x56\x04\x40\x00\x20\x04\x3f\x04\x40\x04\ -\x3e\x04\x42\x04\x38\x04\x3b\x04\x35\x04\x36\x04\x3d\x04\x3e\x04\ -\x57\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x38\x00\x20\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x6f\x70\ -\x70\x6f\x73\x69\x74\x65\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x04\x12\ -\x04\x38\x04\x31\x04\x40\x04\x30\x04\x42\x04\x38\x00\x20\x04\x40\ -\x04\x30\x04\x34\x04\x56\x04\x43\x04\x41\x00\x20\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0d\x50\x69\x63\x6b\x20\x72\x61\x64\x69\x75\ -\x73\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x2a\x04\x12\x04\x38\x04\x31\x04\x56\x04\x40\x00\x20\x04\ -\x3a\x04\x43\x04\x42\x04\x30\x00\x20\x04\x3e\x04\x31\x04\x35\x04\ -\x40\x04\x42\x04\x30\x04\x3d\x04\x3d\x04\x4f\x00\x20\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x72\x6f\x74\x61\ -\x74\x69\x6f\x6e\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x04\x12\x04\x38\ -\x04\x31\x04\x56\x04\x40\x00\x20\x04\x46\x04\x35\x04\x3d\x04\x42\ -\x04\x40\x04\x43\x00\x20\x04\x3e\x04\x31\x04\x35\x04\x40\x04\x42\ -\x04\x30\x04\x3d\x04\x3d\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x16\x50\x69\x63\x6b\x20\x72\x6f\x74\x61\x74\x69\x6f\ -\x6e\x20\x63\x65\x6e\x74\x65\x72\x3a\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x04\x12\x04\x38\x04\x31\ -\x04\x35\x04\x40\x04\x56\x04\x42\x04\x4c\x00\x20\x04\x3a\x04\x3e\ -\x04\x35\x04\x44\x04\x56\x04\x46\x04\x56\x04\x54\x04\x3d\x04\x42\ -\x00\x20\x04\x3c\x04\x30\x04\x41\x04\x48\x04\x42\x04\x30\x04\x31\ -\x04\x43\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4f\x00\x3a\x00\x0a\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x50\x69\x63\x6b\x20\x73\ -\x63\x61\x6c\x65\x20\x66\x61\x63\x74\x6f\x72\x3a\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x04\x12\x04\ -\x38\x04\x31\x04\x40\x04\x30\x04\x42\x04\x38\x00\x20\x04\x3f\x04\ -\x3e\x04\x47\x04\x30\x04\x42\x04\x3a\x04\x3e\x04\x32\x04\x38\x04\ -\x39\x00\x20\x04\x3a\x04\x43\x04\x42\x00\x20\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x12\x50\x69\x63\x6b\x20\x73\x74\x61\x72\x74\x20\ +\x2e\x00\x56\x00\xfd\x00\x62\x01\x1b\x00\x72\x00\x20\x00\x73\x00\ +\x74\x01\x59\x00\x65\x00\x64\x00\x6f\x00\x76\x00\xe9\x00\x68\x00\ +\x6f\x00\x20\x00\x62\x00\x6f\x00\x64\x00\x75\x00\x3a\x00\x20\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x13\x50\x69\x63\x6b\x20\x63\x65\ +\x6e\x74\x65\x72\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x56\x00\x79\ +\x00\x62\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x76\x00\x7a\ +\x00\x64\x00\xe1\x00\x6c\x00\x65\x00\x6e\x00\x6f\x00\x73\x00\x74\ +\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x50\x69\ +\x63\x6b\x20\x64\x69\x73\x74\x61\x6e\x63\x65\x3a\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x56\x00\ +\x79\x00\x62\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x6b\x00\ +\x6f\x00\x6e\x00\x63\x00\x6f\x00\x76\x00\xfd\x00\x20\x00\x62\x00\ +\x6f\x00\x64\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x50\ +\x69\x63\x6b\x20\x65\x6e\x64\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\ +\x56\x00\x79\x00\x62\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\ +\x70\x00\x72\x00\x76\x00\x6e\x00\xed\x00\x20\x00\x62\x00\x6f\x00\ +\x64\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\ +\x69\x63\x6b\x20\x66\x69\x72\x73\x74\x20\x70\x6f\x69\x6e\x74\x3a\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x2e\x00\x56\x00\x79\x00\x62\x00\x65\x00\x72\x00\x74\x00\x65\x00\ +\x20\x00\x75\x00\x6d\x00\xed\x00\x73\x00\x74\x01\x1b\x00\x6e\x00\ +\xed\x00\x20\x00\x62\x00\x6f\x00\x64\x00\x75\x00\x3a\x00\x20\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x6c\x6f\ +\x63\x61\x74\x69\x6f\x6e\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x76\x00\x56\ +\x00\x79\x00\x62\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x64\ +\x00\x61\x00\x6c\x01\x61\x00\xed\x00\x20\x00\x62\x00\x6f\x00\x64\ +\x00\x2c\x00\x20\x00\x6e\x00\x65\x00\x62\x00\x6f\x00\x20\x00\x28\ +\x00\x46\x00\x29\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x20\x00\x6b\ +\x00\x6f\x00\x6e\x00\x65\x00\x63\x00\x20\x00\x6e\x00\x65\x00\x62\ +\x00\x6f\x00\x20\x00\x28\x00\x43\x00\x29\x00\x20\x00\x70\x00\x72\ +\x00\x6f\x00\x20\x00\x7a\x00\x61\x00\x76\x01\x59\x00\x65\x00\x6e\ +\x00\xed\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x50\x69\ +\x63\x6b\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x2c\x20\x6f\ +\x72\x20\x28\x46\x29\x69\x6e\x69\x73\x68\x20\x6f\x72\x20\x28\x43\ +\x29\x6c\x6f\x73\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x24\x00\x56\x00\x79\x00\x62\x00\x65\x00\ +\x72\x00\x74\x00\x65\x00\x20\x00\x64\x00\x61\x00\x6c\x01\x61\x00\ +\xed\x00\x20\x00\x62\x00\x6f\x00\x64\x00\x3a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\x6e\x65\x78\x74\x20\x70\ +\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x30\x00\x56\x00\xfd\x00\x62\x01\x1b\x00\x72\ +\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x74\x00\x69\x00\x6c\x00\x65\ +\x00\x68\x00\x6c\x00\xe9\x00\x68\x00\x6f\x00\x20\x00\x62\x00\x6f\ +\x00\x64\x00\x75\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\ +\x50\x69\x63\x6b\x20\x6f\x70\x70\x6f\x73\x69\x74\x65\x20\x70\x6f\ +\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x20\x00\x56\x00\x79\x00\x62\x00\x65\x00\x72\x00\ +\x74\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x6f\x00\x6d\x01\ +\x1b\x00\x72\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x50\ +\x69\x63\x6b\x20\x72\x61\x64\x69\x75\x73\x3a\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x56\x00\x79\ +\x00\x62\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\xfa\x00\x68\ +\x00\x65\x00\x6c\x00\x20\x00\x6e\x00\x61\x00\x74\x00\x6f\x01\x0d\ +\x00\x65\x00\x6e\x00\xed\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x15\x50\x69\x63\x6b\x20\x72\x6f\x74\x61\x74\x69\x6f\x6e\x20\ \x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x2e\x04\x12\x04\x38\x04\x31\x04\x56\x04\ -\x40\x00\x20\x04\x3f\x04\x3e\x04\x47\x04\x30\x04\x42\x04\x3a\x04\ -\x3e\x04\x32\x04\x3e\x04\x57\x00\x20\x04\x42\x04\x3e\x04\x47\x04\ -\x3a\x04\x38\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\ -\x69\x63\x6b\x20\x73\x74\x61\x72\x74\x20\x70\x6f\x69\x6e\x74\x3a\ -\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x0a\x00\x50\x00\x6f\x00\x69\x00\x6e\x00\x74\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x05\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x04\x20\x04\x30\x04\x34\ -\x04\x56\x04\x43\x04\x41\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ -\x52\x61\x64\x69\x75\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x16\x04\x20\x04\x30\x04\x34\x04\x56\x04\x43\ -\x04\x41\x00\x20\x04\x3a\x04\x3e\x04\x3b\x04\x30\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x10\x52\x61\x64\x69\x75\x73\x20\x6f\x66\x20\ -\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x4a\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\ -\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\ -\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\ -\x00\x65\x00\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\x6e\ -\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x25\x52\x65\x6d\x6f\x76\x65\ -\x20\x70\x6f\x69\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\ -\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x04\ -\x1e\x04\x31\x04\x35\x04\x40\x04\x42\x04\x30\x04\x3d\x04\x3d\x04\ -\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x6f\x74\x61\x74\ +\x74\x01\x03\x00\x00\x00\x2c\x00\x56\x00\x79\x00\x62\x00\x65\x00\ +\x72\x00\x74\x00\x65\x00\x20\x00\x73\x00\x74\x01\x59\x00\x65\x00\ +\x64\x00\x20\x00\x6f\x00\x74\x00\xe1\x01\x0d\x00\x65\x00\x6e\x00\ +\xed\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x50\x69\x63\ +\x6b\x20\x72\x6f\x74\x61\x74\x69\x6f\x6e\x20\x63\x65\x6e\x74\x65\ +\x72\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x1e\x00\x56\x00\x79\x00\x62\x00\x72\x00\x61\x00\x74\x00\ +\x20\x00\x6d\x01\x1b\x01\x59\x00\xed\x00\x74\x00\x6b\x00\x6f\x00\ +\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x50\x69\x63\x6b\x20\ +\x73\x63\x61\x6c\x65\x20\x66\x61\x63\x74\x6f\x72\x3a\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x56\ +\x00\x79\x00\x62\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x70\ +\x00\x6f\x01\x0d\x00\xe1\x00\x74\x00\x65\x01\x0d\x00\x6e\x00\xed\ +\x00\x20\x00\xfa\x00\x68\x00\x65\x00\x6c\x00\x3a\x00\x20\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\x6b\x20\x73\x74\x61\ +\x72\x74\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x56\x00\x79\x00\x62\ +\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x70\x00\x6f\x01\x0d\ +\x00\xe1\x00\x74\x00\x65\x01\x0d\x00\x6e\x00\xed\x00\x20\x00\x62\ +\x00\x6f\x00\x64\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x12\x50\x69\x63\x6b\x20\x73\x74\x61\x72\x74\x20\x70\x6f\x69\ +\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x06\x00\x42\x00\x6f\x00\x64\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x4d\x00\x6e\x00\x6f\x00\ +\x68\x00\x6f\x00\xfa\x00\x68\x00\x65\x00\x6c\x00\x6e\x00\xed\x00\ +\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x50\x6f\x6c\x79\x67\ +\x6f\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0e\x00\x50\x00\x6f\x00\x6c\x00\x6f\x00\x6d\x01\x1b\x00\x72\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x61\x64\x69\x75\x73\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\ +\x00\x50\x00\x6f\x00\x6c\x00\x6f\x00\x6d\x01\x1b\x00\x72\x00\x20\ +\x00\x6b\x00\x72\x00\x75\x00\x68\x00\x75\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x52\x61\x64\x69\x75\x73\x20\x6f\x66\x20\x43\x69\ +\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x10\x00\x4f\x00\x62\x00\x64\x00\xe9\x00\x6c\x00\x6e\ +\x00\xed\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x52\x65\ +\x63\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x4a\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\ +\x76\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\ +\x73\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\ +\x6e\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x25\x52\x65\x6d\x6f\x76\ +\x65\x20\x70\x6f\x69\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\ +\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\ +\x00\x52\x00\x6f\x00\x74\x00\x61\x00\x63\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x06\x52\x6f\x74\x61\x74\x65\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x5a\x00\x6d\ +\x01\x1b\x00\x6e\x00\x61\x00\x20\x00\x76\x00\x65\x00\x6c\x00\x69\ +\x00\x6b\x00\x6f\x00\x73\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x56\x00\x79\x00\x62\x00\ +\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x72\x00\x6f\x00\x76\x00\ +\x69\x00\x6e\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\ +\x65\x6c\x65\x63\x74\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x56\x00\x79\x00\ +\x62\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x72\x00\x6f\x00\ +\x76\x00\x69\x00\x6e\x00\x75\x00\x20\x00\x58\x00\x59\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x58\x59\ +\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x22\x00\x56\x00\x79\x00\x62\x00\x65\x00\x72\ +\x00\x74\x00\x65\x00\x20\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x6e\ +\x00\x75\x00\x20\x00\x58\x00\x59\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x58\x5a\x20\x70\x6c\x61\x6e\ \x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x1a\x04\x1c\x04\x30\x04\x41\x04\x48\x04\x42\x04\x30\x04\x31\x04\ -\x43\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x04\x12\x04\x38\x04\x31\ -\x04\x56\x04\x40\x00\x20\x04\x3f\x04\x3b\x04\x3e\x04\x49\x04\x38\ -\x04\x3d\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x65\ -\x6c\x65\x63\x74\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x04\x12\x04\x38\x04\x31\ -\x04\x56\x04\x40\x00\x20\x00\x58\x00\x59\x00\x20\x04\x3f\x04\x3b\ -\x04\x3e\x04\x49\x04\x38\x04\x3d\x04\x38\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x58\x59\x20\x70\x6c\ -\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x20\x04\x12\x04\x38\x04\x31\x04\x56\x04\x40\x00\x20\x00\ -\x58\x00\x5a\x00\x20\x04\x3f\x04\x3b\x04\x3e\x04\x49\x04\x38\x04\ -\x3d\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\ -\x65\x63\x74\x20\x58\x5a\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x04\x12\x04\x38\ -\x04\x31\x04\x56\x04\x40\x00\x20\x00\x59\x00\x5a\x00\x20\x04\x3f\ -\x04\x3b\x04\x3e\x04\x49\x04\x38\x04\x3d\x04\x38\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x59\x5a\x20\ -\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x3e\x04\x1e\x04\x31\x04\x35\x04\x40\x04\x56\x04\ -\x42\x04\x4c\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\x04\ -\x42\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\x35\x04\ -\x40\x04\x35\x04\x3c\x04\x56\x04\x49\x04\x35\x04\x3d\x04\x3d\x04\ -\x4f\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x53\x65\x6c\ +\x22\x00\x56\x00\x79\x00\x62\x00\x65\x00\x72\x00\x74\x00\x65\x00\ +\x20\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x6e\x00\x75\x00\x20\x00\ +\x59\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\ +\x65\x63\x74\x20\x59\x5a\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4c\x00\x56\x00\x79\ +\x00\x62\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x2c\x00\x20\x00\x6b\x00\x74\ +\x00\x65\x00\x72\x00\xfd\x00\x20\x00\x63\x00\x68\x00\x63\x00\x65\ +\x00\x74\x00\x65\x00\x20\x00\x70\x01\x59\x00\x65\x00\x73\x00\x75\ +\x00\x6e\x00\x6f\x00\x75\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x19\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x74\x6f\x20\x6d\x6f\x76\x65\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x00\x56\x00\x79\x00\ +\x62\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x20\x00\x76\x00\x79\x00\x72\x00\x6f\x00\x76\x00\x6e\x00\xe1\x00\ +\x6e\x00\xed\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x53\x65\x6c\ \x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\ -\x20\x6d\x6f\x76\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x38\x04\x1e\x04\x31\x04\x35\x04\x40\x04\x56\ -\x04\x42\x04\x4c\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\ -\x04\x42\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x37\x04\x3c\ -\x04\x56\x04\x49\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\x08\x00\ +\x20\x6f\x66\x66\x73\x65\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x46\x00\x56\x00\x79\x00\x62\x00\x65\ +\x00\x72\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x2c\x00\x20\x00\x6b\x00\x74\x00\x65\x00\x72\ +\x00\xfd\x00\x20\x00\x63\x00\x68\x00\x63\x00\x65\x00\x74\x00\x65\ +\x00\x20\x00\x6f\x00\x74\x00\x6f\x01\x0d\x00\x69\x00\x74\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x1b\x53\x65\x6c\x65\x63\x74\x20\x61\ -\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x6f\x66\x66\x73\ -\x65\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x3a\x04\x1e\x04\x31\x04\x35\x04\x40\x04\x56\x04\x42\x04\ -\x4c\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\x04\x42\x00\ -\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\x31\x04\x35\x04\ -\x40\x04\x42\x04\x30\x04\x3d\x04\x3d\x04\x4f\x00\x20\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x1b\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\ -\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x72\x6f\x74\x61\x74\ -\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x42\x04\x1e\x04\x31\x04\x35\x04\x40\x04\x56\x04\x42\x04\x4c\ -\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\x04\x42\x00\x20\ -\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3c\x04\x30\x04\x41\x04\x48\ -\x04\x42\x04\x30\x04\x31\x04\x43\x04\x32\x04\x30\x04\x3d\x04\x3d\ -\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\x65\ -\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\ -\x6f\x20\x73\x63\x61\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x4c\x04\x1e\x04\x31\x04\x35\x04\x40\ -\x04\x56\x04\x42\x04\x4c\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\ -\x04\x3a\x04\x42\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3e\ -\x04\x31\x04\x40\x04\x56\x04\x37\x04\x3a\x04\x38\x00\x2f\x04\x3f\ -\x04\x3e\x04\x34\x04\x3e\x04\x32\x04\x36\x04\x35\x04\x3d\x04\x3d\ -\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x53\x65\ -\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\ -\x6f\x20\x74\x72\x69\x6d\x2f\x65\x78\x74\x65\x6e\x64\x0a\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x04\x12\ -\x04\x38\x04\x31\x04\x35\x04\x40\x04\x56\x04\x42\x04\x4c\x00\x20\ -\x04\x3e\x04\x31\x00\x27\x04\x54\x04\x3a\x04\x42\x00\x20\x04\x34\ -\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\x3d\x04\x3e\x04\x32\x04\x3b\ -\x04\x35\x04\x3d\x04\x3d\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x1c\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\ -\x6a\x65\x63\x74\x20\x74\x6f\x20\x75\x70\x67\x72\x61\x64\x65\x0a\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x56\ -\x04\x12\x04\x38\x04\x31\x04\x56\x04\x40\x00\x20\x04\x3f\x04\x3b\ -\x04\x3e\x04\x49\x04\x38\x04\x3d\x04\x38\x00\x2c\x00\x20\x04\x3f\ -\x04\x35\x04\x40\x04\x3f\x04\x35\x04\x3d\x04\x34\x04\x38\x04\x3a\ -\x04\x43\x04\x3b\x04\x4f\x04\x40\x04\x3d\x04\x3e\x04\x57\x00\x20\ -\x04\x34\x04\x3e\x00\x20\x04\x3f\x04\x3e\x04\x42\x04\x3e\x04\x47\ -\x04\x3d\x04\x3e\x04\x57\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\ -\x53\x65\x6c\x65\x63\x74\x20\x70\x6c\x61\x6e\x65\x20\x70\x65\x72\ -\x70\x65\x6e\x64\x69\x63\x75\x6c\x61\x72\x20\x74\x6f\x20\x74\x68\ -\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x76\x69\x65\x77\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x53\ -\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x68\x00\x61\ -\x00\x73\x00\x20\x00\x62\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x63\ -\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x0a\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x17\x53\x70\x6c\x69\x6e\x65\x20\x68\x61\x73\ -\x20\x62\x65\x65\x6e\x20\x63\x6c\x6f\x73\x65\x64\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x53\x00\ -\x74\x00\x61\x00\x72\x00\x74\x00\x20\x00\x41\x00\x6e\x00\x67\x00\ -\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x74\x61\ -\x72\x74\x20\x41\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x3e\x04\x26\x04\x35\x04\x39\x00\x20\ -\x04\x42\x04\x38\x04\x3f\x00\x20\x04\x3e\x04\x31\x00\x27\x04\x54\ -\x04\x3a\x04\x42\x04\x30\x00\x20\x04\x3d\x04\x35\x00\x20\x04\x40\ -\x04\x35\x04\x34\x04\x30\x04\x33\x04\x43\x04\x54\x04\x42\x04\x4c\ -\x04\x41\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\ -\x54\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\ -\x20\x69\x73\x20\x6e\x6f\x74\x20\x65\x64\x69\x74\x61\x62\x6c\x65\ -\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x40\x04\x1f\x04\x35\x04\x40\x04\x35\x04\x3c\x04\x38\x04\x3a\x04\ -\x30\x04\x3d\x04\x3d\x04\x4f\x00\x20\x04\x40\x04\x35\x04\x36\x04\ -\x38\x04\x3c\x04\x43\x00\x20\x04\x3a\x04\x3e\x04\x3d\x04\x41\x04\ -\x42\x04\x40\x04\x43\x04\x4e\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\ -\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x54\x6f\x67\x67\x6c\ -\x65\x73\x20\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\ -\x4d\x6f\x64\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x08\x00\x54\x00\x72\x00\x69\x00\x6d\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x04\x54\x72\x69\x6d\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4a\x04\x21\x04\x3a\x04\x30\ -\x04\x41\x04\x43\x04\x32\x04\x30\x04\x42\x04\x38\x00\x20\x04\x3e\ -\x04\x41\x04\x42\x04\x30\x04\x3d\x04\x3d\x04\x56\x04\x39\x00\x20\ -\x04\x41\x04\x35\x04\x33\x04\x3c\x04\x35\x04\x3d\x04\x42\x00\x20\ -\x00\x28\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x20\x00\x2b\x00\x20\ -\x00\x5a\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x55\x6e\ -\x64\x6f\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x73\x65\x67\x6d\ -\x65\x6e\x74\x20\x28\x43\x54\x52\x4c\x2b\x5a\x29\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x04\x1f\x04\x35\ -\x04\x40\x04\x35\x04\x33\x04\x3b\x04\x4f\x04\x34\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x04\x56\x69\x65\x77\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa2\x00\x57\x00\x69\x00\x70\ -\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x65\ -\x00\x78\x00\x69\x00\x73\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\ -\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\ -\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ -\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x61\x00\x6e\ -\x00\x64\x00\x20\x00\x73\x00\x74\x00\x61\x00\x72\x00\x74\x00\x73\ -\x00\x20\x00\x61\x00\x67\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x66\ -\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ -\x00\x6c\x00\x61\x00\x73\x00\x74\x00\x20\x00\x70\x00\x6f\x00\x69\ -\x00\x6e\x00\x74\x00\x20\x00\x28\x00\x57\x00\x29\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x51\x57\x69\x70\x65\x73\x20\x74\x68\x65\x20\ -\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x73\x65\x67\x6d\x65\x6e\x74\ -\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6c\x69\x6e\x65\x20\x61\ -\x6e\x64\x20\x73\x74\x61\x72\x74\x73\x20\x61\x67\x61\x69\x6e\x20\ -\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x70\x6f\ -\x69\x6e\x74\x20\x28\x57\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x2a\x00\x57\x00\x69\x00\x72\x00\x65\x00\ -\x20\x00\x68\x00\x61\x00\x73\x00\x20\x00\x62\x00\x65\x00\x65\x00\ -\x6e\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x00\ -\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x57\x69\x72\x65\x20\ -\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x63\x6c\x6f\x73\x65\x64\x0a\ +\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x72\x6f\x74\x61\ +\x74\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x42\x00\x56\x00\x79\x00\x62\x00\x65\x00\x72\x00\x74\x00\ +\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x20\x00\x6b\x00\x65\x00\x20\x00\x7a\x00\x6d\x01\x1b\x00\x6e\x01\ +\x1b\x00\x20\x00\x76\x00\x65\x00\x6c\x00\x69\x00\x6b\x00\x6f\x00\ +\x73\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\ +\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x74\x6f\x20\x73\x63\x61\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x4a\x00\x56\x00\x79\x00\x62\x00\ +\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x20\x00\ +\x6f\x01\x59\x00\xed\x00\x7a\x00\x6e\x00\x75\x00\x74\x00\xed\x00\ +\x2f\x00\x72\x00\x6f\x00\x7a\x01\x61\x00\xed\x01\x59\x00\x65\x00\ +\x6e\x00\xed\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x53\x65\x6c\ +\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\ +\x20\x74\x72\x69\x6d\x2f\x65\x78\x74\x65\x6e\x64\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\x00\x56\x00\ +\x79\x00\x62\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x70\x00\x72\x00\ +\x6f\x00\x20\x00\x75\x00\x70\x00\x67\x00\x72\x00\x61\x00\x64\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x53\x65\x6c\x65\x63\ +\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x75\ +\x70\x67\x72\x61\x64\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x50\x00\x56\x00\x79\x00\x62\x00\x65\x00\ +\x72\x00\x74\x00\x65\x00\x20\x00\x72\x00\x6f\x00\x76\x00\x69\x00\ +\x6e\x00\x75\x00\x20\x00\x6b\x00\x6f\x00\x6c\x00\x6d\x00\x6f\x00\ +\x75\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x61\x00\x6b\x00\x74\x00\ +\x75\x00\xe1\x00\x6c\x00\x6e\x00\xed\x00\x20\x00\x70\x00\x6f\x00\ +\x68\x00\x6c\x00\x65\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2e\x53\x65\x6c\x65\x63\x74\x20\x70\x6c\x61\x6e\x65\x20\x70\x65\ +\x72\x70\x65\x6e\x64\x69\x63\x75\x6c\x61\x72\x20\x74\x6f\x20\x74\ +\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x76\x69\x65\x77\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\ +\x4b\x01\x59\x00\x69\x00\x76\x00\x6b\x00\x61\x00\x20\x00\x62\x00\ +\x79\x00\x6c\x00\x61\x00\x20\x00\x75\x00\x7a\x00\x61\x00\x76\x01\ +\x59\x00\x65\x00\x6e\x00\x61\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x17\x53\x70\x6c\x69\x6e\x65\x20\x68\x61\x73\x20\x62\x65\ +\x65\x6e\x20\x63\x6c\x6f\x73\x65\x64\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x53\x00\x74\x00\x61\ +\x00\x72\x00\x74\x00\x20\x00\x41\x00\x6e\x00\x67\x00\x6c\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x74\x61\x72\x74\x20\ +\x41\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x08\x00\x54\x00\x65\x00\x78\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x54\x65\x78\x74\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x54\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x65\x00\x64\x00\ +\x69\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x0a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x21\x54\x68\x69\x73\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x74\x79\x70\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x65\ +\x64\x69\x74\x61\x62\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x32\x00\x50\x01\x59\x00\x65\x00\x70\ +\x00\xed\x00\x6e\x00\xe1\x00\x20\x00\x6b\x00\x6f\x00\x6e\x00\x73\ +\x00\x74\x00\x72\x00\x75\x00\x6b\x01\x0d\x00\x6e\x00\xed\x00\x20\ +\x00\x72\x00\x65\x01\x7e\x00\x69\x00\x6d\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x19\x54\x6f\x67\x67\x6c\x65\x73\x20\x43\x6f\x6e\x73\ +\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x65\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x00\x54\x00\ +\x72\x00\x69\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\ +\x72\x69\x6d\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x4e\x00\x56\x00\x72\x00\xe1\x00\x74\x00\x69\x00\x74\x00\ +\x20\x00\x7a\x00\x70\x01\x1b\x00\x74\x00\x20\x00\x70\x00\x6f\x00\ +\x73\x00\x6c\x00\x65\x00\x64\x00\x6e\x00\xed\x00\x20\x00\x73\x00\ +\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x28\x00\ +\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x2b\x00\x20\x00\x5a\x00\ +\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x55\x6e\x64\x6f\x20\ +\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\ +\x20\x28\x43\x54\x52\x4c\x2b\x5a\x29\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x50\x00\x6f\x00\x68\x00\ +\x6c\x00\x65\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x56\ +\x69\x65\x77\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\xa2\x00\x57\x00\x69\x00\x70\x00\x65\x00\x73\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x65\x00\x78\x00\x69\x00\x73\x00\ +\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x65\x00\x67\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x66\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x73\x00\ +\x74\x00\x61\x00\x72\x00\x74\x00\x73\x00\x20\x00\x61\x00\x67\x00\ +\x61\x00\x69\x00\x6e\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x73\x00\ +\x74\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\ +\x28\x00\x57\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x57\ +\x69\x70\x65\x73\x20\x74\x68\x65\x20\x65\x78\x69\x73\x74\x69\x6e\ +\x67\x20\x73\x65\x67\x6d\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\ +\x69\x73\x20\x6c\x69\x6e\x65\x20\x61\x6e\x64\x20\x73\x74\x61\x72\ +\x74\x73\x20\x61\x67\x61\x69\x6e\x20\x66\x72\x6f\x6d\x20\x74\x68\ +\x65\x20\x6c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x28\x57\x29\ \x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\ \x00\x57\x00\x69\x00\x72\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x6f\ \x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x57\x69\ \x72\x65\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\ \x66\x74\x01\x03\x00\x00\x00\x02\x00\x58\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x01\x58\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x38\x00\x58\x00\x20\x04\x3a\x04\x3e\x04\x3e\x04\ -\x40\x04\x34\x04\x38\x04\x3d\x04\x30\x04\x42\x04\x38\x00\x20\x04\ -\x3d\x04\x30\x04\x41\x04\x42\x04\x43\x04\x3f\x04\x3d\x04\x3e\x04\ -\x57\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x38\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x1a\x58\x20\x63\x6f\x6f\x72\x64\x69\x6e\ -\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\ -\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x04\x00\x58\x00\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x58\ -\x59\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x04\x00\x58\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x58\ -\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x02\x00\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\x59\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x00\x59\ -\x00\x20\x04\x3a\x04\x3e\x04\x3e\x04\x40\x04\x34\x04\x38\x04\x3d\ -\x04\x30\x04\x42\x04\x38\x00\x20\x04\x3d\x04\x30\x04\x41\x04\x42\ -\x04\x43\x04\x3f\x04\x3d\x04\x3e\x04\x57\x00\x20\x04\x42\x04\x3e\ -\x04\x47\x04\x3a\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\ -\x59\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\ -\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x59\x00\x5a\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x02\x59\x5a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\x00\x5a\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x01\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x38\x00\x5a\x00\x20\x04\x3a\x04\x3e\x04\ -\x3e\x04\x40\x04\x34\x04\x38\x04\x3d\x04\x30\x04\x42\x04\x38\x00\ -\x20\x04\x3d\x04\x30\x04\x41\x04\x42\x04\x43\x04\x3f\x04\x3d\x04\ -\x3e\x04\x57\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x38\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x5a\x20\x63\x6f\x6f\x72\x64\ -\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\ -\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x20\x04\x30\x04\x3a\x04\x42\x04\x38\x04\x32\x04\x3d\x04\ -\x30\x00\x20\x04\x3a\x04\x3e\x04\x3c\x04\x30\x04\x3d\x04\x34\x04\ -\x30\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x61\x63\x74\ -\x69\x76\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x3a\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x04\x1f\x04\x30\ -\x04\x3d\x04\x35\x04\x3b\x04\x4c\x00\x20\x04\x3a\x04\x3e\x04\x3c\ -\x04\x30\x04\x3d\x04\x34\x00\x20\x04\x3a\x04\x40\x04\x35\x04\x41\ -\x04\x3b\x04\x35\x04\x3d\x04\x3d\x04\x4f\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x11\x64\x72\x61\x66\x74\x20\x43\x6f\x6d\x6d\x61\x6e\ -\x64\x20\x42\x61\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\ -\x00\x00\x33\x0b\ -\x00\ -\x00\xb6\x9f\x78\x9c\xcd\x7d\x0b\x98\x1c\x45\xb5\x70\x6d\xf6\x3d\ -\xbb\x9b\x0d\x01\x42\x08\x21\x34\x21\x26\x9b\xb0\xd9\x84\x84\x10\ -\xb3\xf2\xda\xec\x66\x49\x62\x1e\xcb\xee\x92\x97\x88\xf4\xce\xf4\ -\xec\x36\x99\xe9\x1e\xba\x7b\xf6\x01\x08\x08\x08\x08\x02\x7a\x95\ -\x37\x22\x08\x22\xa0\xf8\x7b\xaf\x8f\x1f\x1f\xe0\xd5\x0b\xa8\xf0\ -\xab\x7c\x8a\xdc\x1f\x7c\x21\xa2\xe2\x15\x01\xb9\xbe\x40\xb8\xff\ -\x7f\xea\x54\x55\x57\xf5\x6b\xb6\x67\x81\xfb\xdd\x8f\x8f\xcc\x6c\ -\x4f\xf5\xa9\x53\xa7\x4e\x9d\x77\x55\x1d\x7f\x7f\x6e\xfe\xa3\x2f\ -\xdd\x72\xed\xf7\x8f\x5c\xf8\xcd\x33\x6f\x7f\xe0\xe7\x1b\x09\x69\ -\xbe\x81\x10\xb2\x87\x90\x7b\x4f\x86\xcf\xbd\x84\x7c\xb6\x1d\x3e\ -\xf7\xc1\xe7\x83\x84\xd4\x3f\x05\xcf\x7f\x08\x9f\x4f\xc3\xe7\x4b\ -\xf0\xf9\x1f\xf0\xfc\x56\x42\x1a\x27\x09\x29\xff\x13\x21\x9b\x2f\ -\x26\xa4\xd6\x66\x9f\xe7\x2d\x24\x64\xec\x58\x42\xec\x65\xa4\xee\ -\xae\x29\x42\x2e\xb8\x8f\xd4\x7d\xbd\x8e\x90\x96\xc7\xd9\xe7\xc5\ -\xaf\x93\xfa\xd5\x9b\x08\x99\x7d\x38\xfb\xbc\xf6\x62\x52\xdf\xff\ -\x30\xfc\xbd\x95\x7d\x5e\xb7\x8c\xd4\xef\x82\xe7\x5b\xfe\xc2\x3e\ -\xaf\x3b\x95\xd4\x7f\xee\xcf\x84\x2c\x58\x40\xea\xef\x7f\x83\x90\ -\xcf\x3c\x49\xea\x7f\xf8\x1d\x42\xee\x3e\x8f\xd4\x3f\xf3\x41\x42\ -\x96\xf4\x92\x86\xcf\x7e\x98\x90\xd2\xab\x64\xce\x25\x5b\x08\xd9\ -\xd5\x4e\xe6\xd6\x7f\x8d\x90\x3b\x5e\x21\xf3\x1e\x01\x7c\xaf\x38\ -\x8b\xac\xa0\x78\x4c\x3a\xe4\xe8\x87\xfe\x17\x21\x53\x03\xe4\xe8\ -\x67\x0c\xf8\xbc\x80\x6c\xf8\xe5\x5a\x42\xd6\xd7\x91\x13\x6e\x3f\ -\x94\x90\xf7\x9f\x49\x4e\xfc\x18\xe0\xff\xce\x41\xb2\xf9\x9a\xf3\ -\x08\x59\xd6\x46\xde\x9d\x5f\x47\xc8\xda\xdf\xc2\xe7\x7a\x42\x8e\ -\x3d\x1a\x3e\x37\xc0\x67\x89\xbc\xfb\xb2\x27\x60\x1c\xc7\x90\xdd\ -\x67\x0e\x13\xf2\xc9\xfb\xc8\x9e\x37\x00\xbf\xed\x93\x64\xef\x0d\ -\xef\x20\xe4\xa0\x1b\xd8\xe7\xed\xb5\xe4\xac\x3d\x37\x11\x72\xc3\ -\x1d\x64\xea\x25\x68\x5f\x7e\x94\x9c\x7f\xc1\x6c\x42\xf6\x5f\x41\ -\xae\x38\xea\x5a\x42\x56\x3c\x0c\x9f\xd7\x13\x72\xf4\x01\xf0\x79\ -\x23\x7c\xbe\x97\x7c\xf4\x1b\xbf\x07\x3a\x4c\x91\xbb\xd6\x9f\x44\ -\xc8\xf2\x3c\xb9\xf7\x42\x80\x73\x51\x96\x3c\xf2\x6b\x8b\x90\x77\ -\x5c\x45\x1e\xbb\xfb\x20\x42\xbc\x5b\xc9\xeb\xe4\x51\x42\x3e\x3a\ -\xaf\xe6\xc8\x27\x01\x9f\xe1\x17\x6a\x16\x7f\xe9\x55\xe8\xf7\x3b\ -\x35\xab\xae\x3e\x9f\x10\x7d\x4f\xcd\xe6\xff\xba\x03\xc6\xf1\x7f\ -\x6b\x86\xfe\xf3\x5e\x42\x2e\x9b\xac\xd9\x35\x6f\x2b\x21\x1f\xb9\ -\xb1\x66\xb4\xed\x0a\x42\x3e\xdc\x5e\x63\x1e\x70\x0e\x21\x9f\x38\ -\xb6\xe6\xa2\x0d\x19\x42\x6e\xdc\x5d\x73\xe5\x58\x19\xe8\xfa\x9e\ -\x9a\xdb\x2f\xc8\x12\xb2\xf0\x3f\x6b\xbe\xf5\xd4\x2f\x80\x15\xce\ -\xa8\xf9\xd1\x35\x3f\x26\x64\xc7\xca\x9a\x5f\x1e\xd0\x0b\x73\x7e\ -\x67\xcd\xb3\x7f\x06\x7e\xb8\xe3\xdc\x9a\xd7\x3f\x0f\xcf\xc7\xdb\ -\x66\xd5\x3f\x08\xf8\x7d\x60\xde\xac\xfe\x3d\x00\xe7\x96\xdc\x2c\ -\xe3\xbe\x11\x42\x3e\xf7\xf1\x59\x56\xe3\xb3\x84\x0c\x5c\x39\x6b\ -\x7c\xc9\x81\x84\x9c\xb0\x7d\xd6\xfb\x9f\x39\x8d\x90\x53\x97\xcd\ -\xfa\x78\xff\x02\xa0\xc7\xdf\x67\x7d\xa6\xf3\x60\x42\xea\xb6\xce\ -\xba\xf7\x38\xa0\xc3\x64\xfb\xac\x7f\x7e\x19\xe6\xeb\xaa\x07\x67\ -\x7d\xf3\xde\xab\x09\x79\xd7\xfd\xb3\xfe\x35\xff\x0a\x21\xef\x9d\ -\x37\xeb\xbb\x27\xfd\x85\x10\x73\xdd\xac\xa7\xee\xfc\x2a\x21\xd6\ -\x8f\x66\xfd\x74\xc1\xc7\x81\xe7\x86\x6a\x6b\x2e\x79\x08\xc6\xff\ -\x9d\xda\xb9\xd7\x9f\x45\xc8\x35\x0f\xd6\x2e\x38\x08\xe8\x72\xcc\ -\x89\xb5\x0b\xe6\x01\xdf\x9e\xfa\xd3\xda\x55\x0b\xe0\xf9\xd4\xdf\ -\x6b\xcf\x7f\xf4\xcb\x84\x6c\x5a\x53\x7b\xf9\x11\x40\xff\xfe\x9a\ -\xda\x5b\xf7\x7c\x1a\x78\x7a\x73\xed\x17\x6f\x7d\x8d\x90\x9b\xda\ -\x6b\xbf\xfc\x5d\x98\x9f\x9b\xef\xa9\x7d\xe0\x89\xe7\x08\x39\xe7\ -\x33\xb5\x0f\x1d\x0f\xfd\xbd\x7f\x71\xed\xc3\x3f\x39\x03\xd6\x83\ -\x59\xfb\x58\xdb\x6f\x60\x1e\x3b\x6b\x7f\xd6\x0a\xef\x4f\xfe\xa0\ -\xf6\x95\x12\xf0\xc3\xca\xef\xd4\xbe\xf2\xc0\x99\x84\xcc\x5b\x5b\ -\xfb\x8f\x76\xe0\xe7\xd5\xdf\xa8\x3b\xf2\xa8\xa3\x08\x39\xf2\xa5\ -\xba\x5d\x0d\x1f\x23\xa4\xeb\x3b\x75\x67\x9e\x07\xe3\xbb\x6d\x56\ -\xdd\xd4\x4b\x00\xff\xaa\x4d\x75\x17\x4d\x00\x7f\x0c\xfc\xbc\xee\ -\xb2\x57\x61\xcd\xfc\xd3\xe3\x75\x1f\x7e\xf2\xf3\x84\x8c\x6e\xab\ -\xbb\xed\x0a\xa0\x5f\xbd\xcd\x3e\xcf\xbf\xa7\xee\xce\x63\x80\xbe\ -\xd7\xb6\xd7\xdd\xfd\x07\xe0\xeb\x63\xbf\x5c\xf7\x2b\xeb\xd7\x80\ -\xc7\x2f\xeb\x9e\x6b\x87\xf9\xa9\xad\xaf\xfb\x43\xcf\xbf\x01\xfc\ -\x6d\x75\x2f\x3d\x75\x37\x21\xdb\x9e\xaf\xaf\xbd\x18\xe8\x77\xf6\ -\xfa\xfa\xfa\xc7\x80\xce\x7d\x73\xeb\xdb\x5f\xf1\x08\xb9\xfe\xb6\ -\xfa\xc3\xe6\x00\x1d\x4e\xf9\x5a\xfd\x8a\xdf\x00\x7f\xed\x3c\xb0\ -\xbe\xef\x5d\xef\x23\xc4\xbd\xa8\xfe\xf4\xa7\x80\x6e\xed\x8f\xb0\ -\xcf\xeb\xbe\x5d\x9f\xfd\x2b\xe0\xbb\xfd\xeb\xf5\xc6\x8b\xb0\x1e\ -\x3e\xf8\x42\xfd\x65\x5f\x00\xf8\x9f\x7c\xb2\xfe\xba\xbb\x81\x4e\ -\x07\x76\xb3\xcf\xdb\x9e\xaa\xbf\xef\xdd\xf0\x7c\xd3\x15\xf5\x5f\ -\xad\xfd\x2e\x21\x8b\xbe\x54\xff\x40\x2b\xcc\xd7\xe5\x87\xd7\x3f\ -\x70\x35\xf0\x89\x71\x4b\xfd\x83\xbb\x00\xce\xb6\xf1\xfa\x87\x07\ -\x80\x1e\xad\xb5\xf5\xbf\xb9\xba\x8b\x90\x03\x56\xd7\xff\xe3\x67\ -\xb0\x9e\xfa\xbc\x86\x45\xbf\x85\x79\xb8\xeb\xca\x86\xe5\x2f\xde\ -\x03\xe3\xfc\xf7\x86\x35\xbf\x86\x71\x5d\xbc\xaf\x61\xf7\xa1\x40\ -\x17\x42\x1a\xf6\xbd\x04\xf4\x9a\x3c\xa1\xe1\x3d\x3f\x82\x76\x27\ -\xbf\xbf\xa1\x70\x39\xf0\xc1\xc6\x83\x1b\xbc\xc3\x81\x6f\x76\xdf\ -\xdf\x70\xe5\x75\x7d\x00\xf7\xeb\x0d\xd7\xef\xf9\x1e\x21\x83\x63\ -\x0d\xdf\xb8\x10\xf0\x5a\x74\x48\xc3\xf7\xee\xaf\x27\xe4\xdc\x65\ -\x0d\xcf\xd7\xef\x00\x28\xcf\x35\xbc\x78\xef\x6e\x42\x3e\x3d\xd9\ -\xf0\xf2\x63\x40\xcf\xc3\xae\x6a\x78\xed\xff\x01\xde\x7d\x4f\x36\ -\xbc\xbe\x00\xf8\x63\xdd\xcf\x1b\x5e\xbf\x0d\xf8\xff\xfa\x3f\x35\ -\x36\x7d\x04\xe6\xb5\xf3\xf8\xc6\xb6\xff\xfd\x37\x42\xba\xff\xd8\ -\x38\xfb\xd2\x13\x81\xef\xe7\x37\xae\x1b\x83\x75\x76\xc8\x59\x8d\ -\xeb\x9e\x87\x79\xfb\xc4\x65\x8d\x7d\x3d\x2b\x08\xb9\xf4\xf7\x8d\ -\x5b\x8f\x80\x75\x31\xab\xb5\x71\xbb\xbb\x18\xe6\xe7\xb3\x8d\x3b\ -\xee\x02\xfe\xbc\xe4\xbd\x8d\x7b\x1e\x7b\x1e\xfe\xfe\x5d\x63\xf6\ -\xbf\x60\x5d\xcf\x6d\x6f\xbc\xf0\x91\x2f\x82\x7c\x6c\x6a\xbc\xdc\ -\x81\x79\x3c\xaf\xa7\xf1\x8e\xe7\xe0\xf9\x51\x66\xe3\xb7\x5e\x87\ -\xf9\x59\x75\x4b\xd3\xb2\x2f\x01\xdd\x6e\xee\x6c\x5a\xf3\x10\xac\ -\xcb\x5b\x4b\x4d\xc7\x79\x80\xd7\x3b\xfa\x9b\xfa\xbe\x0a\x74\x3a\ -\xee\xd2\xa6\x2d\xdf\x5b\x0d\x7c\xf5\xc1\x26\xfd\x3c\x80\xb3\xe8\ -\x6f\x4d\x9f\x7a\x74\x14\xf8\xf9\x82\xa6\x3b\x9e\x01\x39\x75\xc1\ -\x4f\x9a\xfe\xf9\xe0\x0e\xe0\xb7\x4d\x4d\x5f\xaa\x03\x3a\xdf\x36\ -\xd0\xf4\xf8\x1a\xa0\xdf\x25\x2b\x9a\x9e\xf8\xbe\x09\x9f\x37\x37\ -\xfd\xea\x66\x90\xd5\x0b\xbe\xdc\xf4\xab\x6f\x01\x7f\x5f\xba\xbe\ -\xe9\x0f\x57\xc1\x3a\xbf\xe7\xbe\x66\xed\xe9\x25\x20\xaf\x3b\xe1\ -\xf3\x4b\xf0\xf9\x53\xf8\x04\x7e\xbe\xf7\xbd\xcd\xdb\xaf\x03\xb9\ -\xbe\x74\x51\xb3\xf1\x34\xd0\xe5\x43\x6f\x34\x8f\xb5\x2d\x27\xe4\ -\x63\x2f\x36\x9f\x7d\x15\xd0\xaf\xe1\x86\xe6\xf2\x51\x80\xdf\xd4\ -\xe7\x9b\xc7\xff\x08\xf2\xfc\xac\x4b\x9b\x2f\xbd\x0b\xe8\xbd\xc4\ -\x6a\xbe\xf2\x28\x18\xc7\xad\x3f\x6f\xbe\xf5\x0d\x90\x37\x67\xfd\ -\xac\xf9\x2b\x2b\x80\x3e\xeb\x56\x35\x7f\x7f\x21\xcc\xd7\xed\xe3\ -\xcd\x3f\x3a\x12\xf4\xc3\xc8\xb9\xcd\xbf\x39\x0a\xc6\xff\x9e\x1f\ -\x37\xbf\x70\x34\xc8\xf1\xd6\xfd\xcd\x2f\xad\x05\xb9\x34\x7f\xaa\ -\xf9\xe5\x23\x80\xce\xb5\x37\x34\xbf\xb1\x09\xe4\xc1\x8d\x5f\xc9\ -\x34\x7f\x0b\xf0\xbc\xe5\xb1\x4c\xc7\x4d\xc0\x87\x3b\xbf\x02\x9f\ -\x30\xee\x9d\x6f\xc0\x27\x8c\x6b\xa0\x2f\xb3\xf2\x41\x58\x9f\xc7\ -\x7c\x3d\xb3\xee\x1e\x18\xd7\xd5\xc7\x67\x4e\x5a\x06\x7c\xfe\x81\ -\x33\x32\x27\xed\x07\x7c\x3e\x70\x7d\x66\xcb\xa7\x41\xbe\xdd\xf5\ -\x83\xcc\x99\xcf\x00\x1f\x2d\xdb\x01\x9f\x87\xc0\xe7\xed\xf0\x09\ -\x72\x7d\xd9\x9f\x33\xc6\xcd\x80\xcf\x75\x2f\x66\x26\xeb\x2f\x24\ -\xa4\x66\x67\xe6\x82\x6b\xa0\x9f\x13\xef\xcd\xdc\x70\xe9\x7c\x90\ -\xbb\xf7\x64\x6e\x3c\x1d\xe6\xe3\x93\x9b\x32\x77\xcf\x83\xf5\x34\ -\xf7\xd5\xcc\x3d\x1f\x7a\x01\xe4\xc5\x19\x99\xef\x9e\x0e\xeb\xa8\ -\xfd\xd5\xcc\xe3\x03\xf7\x03\x7f\x7e\x22\xf3\xf8\x6f\x41\x3e\xcc\ -\x5f\x91\x79\xf2\x4f\x80\xc7\xc5\xd7\x66\xfe\xf0\xd1\xcb\x41\x3e\ -\xfd\xae\xa5\x71\x92\xd2\x6f\xb8\xe5\xb0\x67\x5c\xe0\xcf\x67\x5a\ -\x96\x7c\x02\xe8\x3c\xf4\xab\x96\x25\x0f\x03\xbf\x1e\xb8\xbf\x65\ -\xe9\xf9\x40\x87\x0b\xaf\x6b\x39\x7a\x00\xde\xfb\xf0\xdd\x2d\x2b\ -\xbf\x08\xf2\xda\x5a\xd2\xb2\xde\x85\xf1\xdd\x7d\x67\xcb\xc9\x27\ -\x03\xff\x6d\x5e\xda\xd2\xfb\x7d\xc0\xb7\xff\xd9\x96\x7c\xc7\x8f\ -\x00\xee\x25\x2d\x97\x3f\xd3\x48\x48\xe6\x17\x2d\x1f\xef\x03\xbd\ -\xb8\xe6\xe4\x96\x6f\xdf\x08\x72\xed\xf2\x6b\x5b\x7e\xbc\x0c\xe4\ -\x47\xdd\x25\x2d\x4f\x9c\x0f\xf2\xa4\xe5\xe0\x96\xbf\xbc\x38\x04\ -\xe3\x7b\x7f\x6b\xc3\x00\xac\xbb\xb6\x8d\xad\x4d\xfd\x20\x8f\x2e\ -\x5a\xd8\x7a\xe8\x6b\xa0\x57\x3e\xb8\xbc\xb5\xe3\x66\xa0\xff\xd4\ -\x61\xad\xc7\x9c\x0f\x74\xba\x69\xac\xf5\x9d\xdb\x81\xff\x1b\x6f\ -\x69\xed\x9e\xf7\x38\x21\x87\x5e\xdd\xba\xef\x5f\x61\x5d\x9f\xf7\ -\x72\xab\x75\x19\x8c\xef\xa8\x35\xad\x1f\xbd\x0d\xe6\xe3\xae\x15\ -\xad\xd7\x7d\x84\xca\x91\x53\x5a\x1f\xfd\x39\xe0\x7d\xe7\x58\xeb\ -\x93\x2f\xcd\x05\x3e\xde\xd0\xfa\x8b\x1b\x41\xcf\x5a\xe7\xb4\xbe\ -\xfc\x0b\xa0\xdb\x95\xa3\x6d\x0b\xff\xfa\x22\xc8\xc5\xfa\xb6\xee\ -\x02\xf0\xc5\x4d\x8f\xb6\x6d\x7a\x16\xf0\xfc\xd4\xb3\x6d\x7b\x6f\ -\x87\x7e\x2f\xba\xb6\x6d\xdf\x7d\xc0\xbf\xe7\xde\xd3\x76\xc6\xef\ -\x60\xde\x3b\x4e\x69\xcb\x7d\x1a\xf8\xee\xcc\x33\xdb\x8a\x7f\x07\ -\xfe\x6d\xda\xde\x36\xfe\x65\xb0\x21\x56\xee\x6d\xbb\xf9\x05\xa0\ -\xd7\xee\x13\xda\x3e\xfd\x14\xc8\xf9\xce\x2f\xb4\xdd\xf5\xf4\x9d\ -\x60\x07\x5c\xdc\xf6\xc8\x23\xb0\x0e\x3f\xf1\x5a\xdb\x2b\x1b\x00\ -\xfe\xd5\x7f\x9b\x7d\x74\x1d\xcc\xf3\x85\xef\x9e\xdd\xf9\x1c\x3c\ -\xff\x94\x3d\x7b\xc7\xff\x01\xfa\x34\xdf\x36\xdb\xbe\x09\xf8\xe9\ -\xce\xd7\x66\x9f\x7b\x4e\x27\xe8\xed\x1d\xb3\xaf\x39\x0b\xf4\xf6\ -\xfa\xe7\x66\x7f\xd4\x80\x71\x2d\x38\x65\xf6\xa3\xff\x0e\x7c\xac\ -\xfd\x64\x36\xe3\xd3\xef\xc1\x27\xf0\xc1\xa7\x16\xce\xfe\x8f\xdf\ -\xd4\x82\x3e\xfb\x97\xd9\x7f\xfc\x15\xcc\xcb\xd6\x0d\xed\x8d\x57\ -\x81\x7c\x9a\xd8\xd5\x7e\xc8\x45\x20\x57\xc8\x9f\xda\x8f\xb8\x0a\ -\xe4\xcd\x85\x2d\xed\x3b\xcb\xdd\xa0\xdf\xb6\xb7\xbf\xef\xd1\x9f\ -\xc0\x7c\x3c\xd0\x5e\xfe\x02\xe8\xff\x0f\xfc\xa0\x7d\xe2\xdf\x60\ -\xbe\xed\x91\xf6\x0f\xb5\xc0\xfa\xdb\x7a\x7b\xfb\x35\x77\x7f\x06\ -\xe8\x7a\x52\xfb\x0d\x19\xd0\xcf\x77\x93\xf6\x5b\x5f\xb8\x0d\xf8\ -\x6a\x73\xfb\x37\x2f\x03\xfe\xff\xf8\xc3\xed\xdf\xff\x01\xf0\xd9\ -\xfa\x52\xfb\x2f\x8f\xa4\xeb\xe9\x8f\xed\x7f\x6d\x58\x04\xfa\xe3\ -\x5d\xed\x7f\x5d\x0e\x7a\xf4\xdc\xbd\xed\x7f\x9b\x00\xba\x5e\xf1\ -\x6c\xfb\x3f\xde\x07\xf3\x7c\xe1\x13\xc0\x24\x9f\xfb\x23\x60\x48\ -\x16\x92\x1e\x32\x0a\xff\x99\xa4\x4c\x2c\xfc\xd4\x48\x09\xbf\x7b\ -\xc4\x6e\x42\x51\x0a\xff\x37\xf7\xe4\x72\xda\x80\x6d\x5a\x1e\x70\ -\x0f\x99\xdd\xe7\xe8\x79\xef\x7d\xf0\x0c\x1f\xd5\x50\x38\x67\x90\ -\x4d\xa4\x00\x6f\x17\xe1\x7f\x8b\xe8\x00\x85\xc2\x50\x60\xc1\xf7\ -\x9c\xf2\x7c\x02\xda\x39\xc4\x80\x6f\xf4\x97\x11\xe2\x42\xcb\x02\ -\xbe\x4b\x9f\x19\xf0\xb7\x09\xff\x7b\xf0\x8d\xbe\x6d\xf8\x98\x74\ -\x40\xaf\xae\xa6\x6b\x25\xda\xb3\xe6\xd9\x9a\x6e\x69\xc6\xa4\xe9\ -\x7a\xa6\x35\xaa\x4d\x98\x8e\xb1\x6a\xc4\x2d\x15\x4c\xcb\x48\x42\ -\x74\x45\xcc\x80\x75\xe8\x5a\x83\xef\x0e\x3c\x2b\xc1\x7f\x36\xe9\ -\xa2\xff\xf9\x9d\xb6\xd3\xe1\x43\x5f\xa3\x8e\x5d\x2e\x75\x75\x75\ -\x51\xd8\x73\x7c\xd8\xc3\xf6\x29\xf4\x39\x42\x1f\x0b\x41\xa7\x83\ -\x29\x90\x65\x00\x71\x14\xff\xf2\x38\x29\x5c\xf8\x5e\x80\xff\xcf\ -\x81\x96\x36\x12\x8c\x3d\x97\x04\x52\xb1\xa9\x44\x90\xd5\x48\x10\ -\x6f\xcc\xd0\x5c\xa3\x60\x64\x3d\x23\xa7\xd9\x23\x67\xc1\x97\x0e\ -\x77\x79\x98\x3e\x88\x7f\x32\xf2\xb7\x00\xf2\x25\x3e\x0f\x59\x44\ -\xa5\xc0\x91\x2d\x21\x02\x2e\xfc\xe5\xf0\xf9\xc9\xc1\xbf\x26\x92\ -\x2d\x0b\x4f\x0b\xfe\x2f\x39\x1c\x58\x81\xbf\xcd\xe6\x53\xe7\xad\ -\x1c\x6c\x83\xe8\xe3\x50\x47\xb1\x85\x16\x20\x8e\x99\x40\x1c\xd3\ -\x1f\xf0\x3b\x7b\x4a\x30\xc1\x86\xab\x65\xcb\x8e\x63\x00\x13\xd0\ -\xd9\x86\xa9\xcf\x79\x63\x30\xd8\x9c\x96\xb5\x0b\xb6\x43\x47\x1e\ -\xa2\x87\xab\x0e\x1c\x40\x4c\x0d\x79\x53\x05\x03\x07\xbe\x26\x71\ -\xe0\x1e\x0e\xd2\x88\x0e\xc0\x47\xe7\x40\x84\xa5\xf5\x72\x64\x10\ -\x68\x72\x4f\x4d\xd0\x93\x43\x61\xf9\xef\xd7\xf6\x38\x59\xda\xbe\ -\x99\xb7\x77\xb2\xd8\x30\x47\x7a\xb1\x33\xc9\x10\x3a\x7b\x11\x18\ -\x53\x83\xdf\x86\xc9\x20\xd9\x86\xeb\xcb\x80\xe7\x12\x61\x4a\xad\ -\x12\xe9\x84\xef\x43\x64\x33\xd9\x42\xfa\xa1\xa5\xda\x8a\xad\x50\ -\x0f\xa1\x29\x4c\xd4\xeb\x18\xba\x07\x34\x05\x6e\xd1\x9d\x6c\x97\ -\xd6\x3b\x3c\xb8\x0d\x69\x68\xe9\xa5\x4e\x6d\x68\xf3\x96\xfe\x61\ -\xfa\x67\xd6\xb6\x5c\xcf\xd1\x4d\x2b\x06\xe3\x39\x64\x23\x59\x09\ -\xbd\xfa\xeb\xd8\x87\xde\xb4\x71\xe5\x90\xbf\x26\xdb\xd8\x5b\x1b\ -\xd9\x13\x7c\xf3\xd2\xd0\x58\x75\x94\x08\x2b\x43\x32\xa1\x08\xbf\ -\x15\x70\x42\x56\x2a\x52\xe5\xed\xa0\x46\xaf\x4f\x0d\xad\x58\x2e\ -\x78\x66\xa9\x60\xac\x64\xf2\x66\x64\x25\x13\x2e\xe9\x08\x14\x33\ -\xd4\xd9\x80\xac\x81\x13\x39\x46\x99\xdb\xef\xb2\xa1\xd7\x74\xb2\ -\x8c\x71\x5a\xd9\x5b\xec\x01\xbe\x74\x5d\x84\x17\xb2\x2a\x90\xd4\ -\x34\xe8\x81\xdf\xd5\xf1\x47\xd7\x19\x5b\xc3\x49\xeb\x92\xd2\x89\ -\x09\x35\x2b\xb0\x22\x4f\x90\xf4\xca\x22\xd6\x61\xf2\xf4\x6c\x1b\ -\x96\x0b\x52\xf3\x74\x6b\x94\x2e\x15\x65\x59\x46\xc7\xbc\x08\x46\ -\x34\x86\x62\x34\x87\x7d\x87\x24\x8a\xdf\x77\xa6\xb7\x60\xbb\x86\ -\xb6\x8d\x73\x57\x3b\x07\x44\x1f\x6e\x13\x44\x5f\xad\xc0\x32\xa2\ -\xb0\x2a\x2c\xee\xc3\x10\x10\x13\xaf\x28\x66\x46\x0c\x2a\x47\x73\ -\x8e\x3e\x61\x25\x76\xb7\x20\xa2\x0a\xa3\x0a\xb5\x75\xd0\x28\xda\ -\xe3\x46\x44\xa7\xf6\x19\x85\xff\x7e\x9d\xba\x9a\x21\x23\xd5\x6a\ -\xde\xb1\x8b\x11\xc5\xaa\x81\x54\x8d\xea\xd6\x00\xc2\xf7\xc6\x2c\ -\xe4\xb3\xe1\x9b\x8d\xac\xf3\x16\x2e\xd5\xaa\xd8\x99\x11\x87\xfe\ -\x3a\x0a\x30\x8c\xd0\x4c\xec\x90\xcc\x9b\x33\x8b\x86\xe5\x9a\xb6\ -\x35\xfd\xf2\x0e\xf3\xb4\x0e\x5f\x46\xe1\x6d\x4f\xe1\x8a\x3e\x01\ -\x0e\x69\x93\x21\xa7\x0a\x4a\x48\xb3\xca\x6f\x92\xf8\xda\x5c\xd2\ -\x07\x2f\x4d\xe0\xba\x73\x60\x48\x39\x65\xde\x9a\xfb\xec\x09\x6b\ -\xd4\xd1\x73\x2a\xeb\xfb\xcf\xb8\xe8\xd8\xc4\xd9\xc0\xe6\xcc\x5f\ -\x95\xd2\x45\x25\x6f\xc5\xb4\x2e\xc1\xbf\xaf\xf1\xb7\x8a\xbe\xe6\ -\x64\xf3\xc2\xe6\xd3\xc6\xb6\x14\x65\xb6\xe4\xe8\xbf\x79\xf8\x2b\ -\x4b\xdb\xf9\x43\xd8\xb4\x69\xb2\x54\xb0\x73\x46\xac\x05\xe3\x6a\ -\xc0\x58\x40\x62\xb3\x08\x12\xd8\x11\x0f\x3b\x29\x23\xba\xe5\x11\ -\x98\x07\x20\x7c\x5e\xcf\x1a\x6e\xe2\xf0\x67\x03\xf5\x4c\x3e\xf5\ -\x96\x32\xe9\x8d\xd0\x78\x02\x18\x5b\x91\xd2\xfc\x09\xbe\x56\x20\ -\xdb\xf9\x58\x67\x42\x31\x17\xe6\x59\x70\x5d\x1e\xdf\x2a\x60\x0b\ -\x8d\x8b\xb2\x9c\x8a\x92\x62\x65\xae\x1c\x28\x7b\x09\x74\xb0\x41\ -\x2d\x6b\x1c\x43\xcd\x1d\x33\x0c\xaf\x2b\x01\xf5\x39\x80\xba\x8d\ -\x5d\xe4\x99\x31\xe3\x83\xaf\xdb\x94\x33\x91\x3d\x33\xec\x2d\xfa\ -\x27\xb7\x7e\x42\xaf\x24\xd8\xac\x3a\x1f\xf9\xb8\x42\xc8\x43\x28\ -\x14\x86\x34\xcc\x86\x09\x12\x8d\xa1\x1c\xd7\x8f\x06\xab\x95\xae\ -\x54\x29\xce\x92\x84\x7a\x4b\xbf\x69\x99\xee\x98\x26\x64\x0d\xb7\ -\xa5\xd8\x53\x5f\xce\x9e\x3c\x1d\x3c\x3e\x47\x16\xcc\x10\x13\xf2\ -\x52\x09\x38\xb4\xad\xdf\xdf\x62\x06\x19\x85\x00\xb7\x26\xbd\x31\ -\xbb\xec\x69\x59\x10\xec\x94\xe4\x8c\x70\xf1\x68\x5c\x12\x23\xf4\ -\x54\x14\x84\x78\xca\xc1\xaf\x86\x22\xbd\xcd\xb7\xc5\x76\x79\xa7\ -\x14\x67\x6b\xb8\xd1\x92\xde\x60\xe1\x33\xe6\x0f\x2d\x03\x88\x85\ -\xe7\xa6\x4e\xa8\xda\x70\xe3\x56\xb4\xfd\x6c\xd4\x30\x4a\xf3\xed\ -\xa0\x59\x94\xe6\xf4\x4f\x6c\xfe\x84\xda\x7c\x06\xab\x8c\xc9\x16\ -\x0d\xb8\xf7\x6d\x22\x69\xac\x8e\xc9\xf2\xa9\x96\x9a\x45\x98\x0f\ -\x54\x22\xca\x61\xef\xdb\x8e\x0a\x35\x76\x31\x8f\x18\xde\x84\x61\ -\x58\xda\x1a\xa6\x6d\xdd\x2a\xb4\x4d\xd6\x2e\x4d\xc5\x11\xb3\x95\ -\xec\x84\xc5\x9b\x47\x62\x79\xd2\xa8\xdc\x99\xcf\xbb\x86\xa7\x18\ -\x58\xec\x01\xbe\xf2\x83\x88\x51\x69\x4b\x10\x8a\x23\x97\xd6\x77\ -\xfd\x9f\x42\xf9\xcd\x6c\x8c\x31\x32\x69\x06\x74\x8e\x92\xed\xa2\ -\x08\xd9\x4a\xe8\xff\x9a\x40\x22\x1b\x05\xba\x86\xbf\x8f\xe2\x53\ -\x86\x6e\x5a\xd2\x6c\x87\x41\x6f\x21\xa7\x01\x89\x7a\x95\x76\xe3\ -\xb8\x04\xb3\x12\x9e\x3f\xd4\x77\xc9\xb5\xee\x18\xa3\xe5\x82\xee\ -\x00\x47\x15\xa6\x46\xd3\x18\x30\x8a\xfa\x18\x60\xef\x70\xf5\x31\ -\x10\x1c\x8e\x54\x99\xbc\x59\xc2\x8b\x51\x7f\xd5\xe1\x2c\xc3\x7c\ -\x06\x9b\x8f\xf7\x4d\x49\x43\x1f\x99\xe5\x51\x29\xe7\xc0\x0c\x83\ -\x63\x11\x76\x3e\x14\xd3\x60\x50\xb4\x40\x84\x0f\x82\x8e\x22\x08\ -\x4a\xd3\xca\x6f\x9c\x08\x20\x03\x00\xc2\x06\x5d\xc3\xa0\xed\x01\ -\x5e\x0a\xeb\xb0\x07\xf8\xc2\xd7\xe0\x05\x1b\x5e\x99\x89\xbc\xfb\ -\x9f\xb2\xba\x06\xd9\x78\xe2\x25\x5b\xda\x05\x96\x95\xee\x62\x70\ -\x9d\x29\xc4\xca\xc0\x50\xb2\x18\x98\x93\x9d\xd7\x0f\x65\x75\x36\ -\x21\x2d\xac\x3d\xfe\x8d\xcd\x5f\x96\xcd\x67\xa0\x4b\x98\x9a\xa6\ -\xa3\xf7\x7c\x17\x2a\x47\xe2\x1d\xae\x11\x78\xee\x56\xb1\xa8\xdf\ -\xee\x19\x39\x1d\x89\x90\xa0\x6a\x98\x23\xa7\x8d\xe8\xe0\x22\xe3\ -\x32\x99\x81\x0c\x8c\xd0\x9a\x8e\x29\x4c\xc7\x40\xbc\x52\x7a\xb9\ -\x43\xcc\x3b\xf2\xe3\x8e\x07\x70\x58\xf8\x58\x06\x1e\x2f\x8f\x85\ -\xe8\xe1\x5a\x61\x33\x94\x34\xa3\x59\x6c\x2d\x7f\x67\xee\xad\x8b\ -\xae\xae\xc6\x43\x15\x26\xce\x9c\xe3\xdb\xde\xcc\x27\x35\xb0\xad\ -\x9d\x80\xf9\x7a\x86\x22\xf0\x68\xa1\xe0\x53\x93\x5a\x85\x8c\xce\ -\x7a\x11\xe8\xa9\xd3\x80\x1f\xb4\xa0\xb4\x37\xdd\x69\x07\x69\xc5\ -\x0e\x52\x30\x98\x89\x62\x48\x3a\x09\x94\x91\xc7\x11\x6d\x3b\xc0\ -\x38\x7a\x84\x35\x04\xcb\x1b\xd0\xb2\x88\xa4\x71\x02\x0c\xd2\x39\ -\x24\x5c\xd4\x09\xdb\xd9\x4f\xad\xd9\x52\x41\x07\x1b\x37\x0f\x6e\ -\xd4\xa8\x61\x17\x0d\xcf\x99\x62\x4b\x92\xfb\xa1\x01\xfc\x07\x68\ -\x5b\x1e\x91\x19\xa8\x84\xa5\x34\xde\x95\x17\x2b\x80\x1b\x8f\x31\ -\x9b\xc7\xd1\x33\x2a\xe3\x3a\x36\x81\x4c\xd4\x6e\x17\xc4\x32\xd0\ -\xd6\xeb\x23\xcc\xa7\xa2\x56\xbf\xce\xad\x94\x99\x85\x91\x57\x08\ -\x15\x32\x34\xa6\x97\x0c\x6d\x4d\x9f\x36\x6e\x1a\x13\xe0\x6a\xe5\ -\x63\x03\xc7\x62\x14\xb4\xf1\x9a\xbe\x5d\xd0\xb4\x86\xa5\x4f\xfa\ -\x15\x6c\xc6\x79\x80\x85\xd9\xa5\x7d\x7e\x5f\x6d\x81\x3e\x2a\x80\ -\xdb\x1a\x22\xca\x32\xa4\xb7\xc5\x03\x28\x92\x14\xd5\xe8\xca\xa3\ -\xd4\xd8\xae\x65\x51\x11\x1b\x09\x71\x28\x36\xe5\xb0\x31\xe9\x71\ -\x09\x3c\x2c\x16\x89\xb4\xe6\xe9\xaf\x71\x8d\x97\x72\x1f\x52\xb2\ -\x46\x96\xdb\xf6\x74\x6d\xf9\x88\x4b\xbf\x71\xd8\x1e\x05\x45\xca\ -\xc5\x4e\x39\x0b\x18\x69\xdb\x6d\x16\xc8\x58\xc8\x61\x63\x8b\x5e\ -\xde\x80\xe2\x4c\x1b\x60\x6f\x93\x20\x2d\x85\x2f\xaa\x93\x55\xdc\ -\xa3\xd6\x95\x67\x22\x39\x51\xf4\xb1\xea\x8d\xc3\x47\x21\x1e\x8b\ -\x6a\x38\xd8\xca\xe5\xf2\x39\xcc\x53\xd2\x57\x5f\xc5\xb0\x63\x62\ -\x57\xc5\x11\x47\x81\x6b\xcb\x02\xda\xf8\x9a\x31\xdd\xb8\xb6\x86\ -\xc6\xd5\x17\x33\x2e\xb6\xdc\x19\xb5\xd9\x3a\xf1\xc8\x33\x7c\x7c\ -\xcc\x90\xb2\xe8\x0a\xf2\x31\x3d\x48\x52\xda\x33\xad\xb2\xe1\x93\ -\x79\x7e\x08\x1d\xfc\xd5\x47\xe5\xa2\x00\x2a\x9a\x3f\xb1\x33\x44\ -\x27\x44\xe8\x2c\xca\x2a\xca\xdb\x39\x3f\x64\x82\x81\x21\x4e\xfc\ -\xf1\x00\xb1\x3b\x43\xc4\x96\xe3\x90\x84\xce\xda\xc5\xa2\x6e\xe5\ -\x18\xa5\x2b\x0f\xed\x5f\x60\x68\x05\xd4\x13\x4e\x20\x6e\x50\x8c\ -\x0c\x82\x21\x37\x9d\x54\xaa\x5a\x06\xf9\xd6\x85\x08\xd8\xe6\xd1\ -\x97\x2d\x12\x83\xdb\x22\x79\xc4\xc8\xf3\xc3\x08\xae\x4f\x8a\xfe\ -\xa1\x09\xbd\xe4\x6a\x39\xd3\x05\x21\x3e\xa5\x15\x29\x0d\x62\x24\ -\x96\xef\x63\xd2\xc0\x6d\xde\xa1\xea\x8a\xa6\xc6\xf2\x05\xdd\xa3\ -\xd1\x00\x94\x68\x87\xa8\x44\xea\x63\x00\x7d\x1a\x9d\x91\x9a\x13\ -\x67\x44\x35\x99\x3d\xe3\xdc\xa9\x0e\x68\x5a\xe4\x16\x82\x64\x12\ -\xd9\x43\x8a\xdc\x26\x3f\xaa\xad\x46\x47\x1b\x86\x1d\xb3\x68\x4c\ -\x2a\xe6\x25\x7b\x40\x41\xd4\x1c\x1b\x00\xa1\xf9\x39\x56\x1f\x0c\ -\xa9\x26\x6f\xdb\x19\x80\xe0\x28\x89\x06\x03\xdf\x31\x7d\x0f\x23\ -\x10\x05\x7d\x53\x36\x64\xc4\x2d\x24\x22\x8f\x1d\x8a\x74\x93\xb8\ -\xe4\xab\xcd\x5b\xb3\x39\xb4\x7c\x1d\x56\x08\x59\xa3\xb4\x8f\x71\ -\xec\x51\x4d\x18\x7c\x88\x52\xd2\xa5\x71\x58\x58\x7a\x86\x15\x9f\ -\x7f\xee\xe4\xbf\x3b\x65\x1a\xde\xa5\x61\x34\x98\x67\x0c\xd7\x72\ -\xdd\x43\x15\x8f\x2b\x4c\x50\xdf\xfe\x74\xd1\xf6\xe4\xd9\x54\x1e\ -\x54\xd7\x58\x42\xd7\xb2\x9d\xa2\x5e\x60\x06\xaa\x69\x8d\x1b\x4e\ -\x20\x79\x24\x67\x17\xf3\xb9\x16\x0a\x1e\x99\x8a\x5e\xe6\xa7\x0f\ -\x8b\xfe\x4c\xc6\xe5\x03\x0e\x38\xcd\xca\xd9\x5a\x41\x77\x3d\x35\ -\xa4\xcf\xb3\x1d\xf4\x37\x3f\xe0\x75\x7a\xf5\xbd\x90\xd4\x09\x72\ -\x1f\x9f\x75\xb4\x4f\x91\x82\xa2\x58\x61\xf2\x49\x52\x26\x9f\x98\ -\x9c\x8a\xc3\xf9\x21\x72\x1a\x5a\xc4\x2e\xf2\xdf\x4c\xb3\x01\x65\ -\x6e\x04\xba\xdc\xad\x17\xfc\xcf\xac\x71\x9f\x5f\xfc\x15\x20\xc6\ -\xc9\xf2\xe8\x2c\x0a\xeb\xe2\x5f\x26\x8f\x92\x8b\x15\x21\x20\x95\ -\x03\x58\x26\x65\x0f\xde\xbb\xd5\x46\x86\x49\x4c\x1d\xd8\x96\x81\ -\x6c\x08\xdc\x85\xec\x82\x01\x5d\x68\x44\xc5\x22\x32\x5a\xde\x2c\ -\x14\xe0\x6f\x64\x4b\x6c\x59\xb6\x4c\xcf\x90\x59\x05\x1e\xe9\x38\ -\xad\xa4\xe6\x14\x4e\x83\x45\x18\xcd\xc6\x34\xf2\x46\x09\xaf\x9d\ -\x17\x09\x90\xc8\x74\xdd\x7f\x5f\x6a\xfb\xa4\xc4\xd4\x36\x25\x49\ -\x55\x51\xe2\xdd\xf0\x02\xaf\x69\xd8\xcd\x46\x22\xcd\x44\xfa\x5b\ -\x5c\xd3\xe3\xb8\x5d\xa0\xb2\x88\x08\xe4\xee\xf6\xc9\x41\xff\xdf\ -\x18\x5b\x49\x70\x64\xaf\x98\x48\xa1\xe0\x28\x68\xd4\x6d\x1b\x65\ -\x89\xc1\x81\xb2\xd7\x61\x5b\xcd\xbe\x2f\x06\x3d\x16\xec\x4a\x4f\ -\xec\xaa\x1d\x21\xc3\xd8\xd3\x00\x9e\xcd\x4d\x0a\xae\x0e\x25\x4f\ -\xf4\x14\x3c\xaa\xd3\xe8\xcb\x87\x9f\x52\x36\xbb\xbb\xfb\x4c\xbd\ -\x60\x8f\xc2\x67\x61\x74\xc8\xf0\x68\x72\xd5\x45\xa0\x3c\xa3\x31\ -\x40\x0c\x5e\xe6\xe1\xe0\xea\x62\x52\x5a\xda\x2a\x3c\xff\x02\xcf\ -\x07\xb8\x36\x66\xbf\x50\x2e\xd8\x45\x4e\xf1\x3b\x3e\x02\x3a\x36\ -\x1c\x0b\xa6\x5a\x1b\xda\x75\x8a\x36\xa0\x7b\xf4\x4f\x57\x2b\xd8\ -\x59\xdf\xcf\x4b\x81\xd0\x47\x00\x2c\x63\x34\x0d\xb9\x5d\x8b\x55\ -\x88\x45\x34\x9c\x19\x39\x3d\x05\xc5\x0e\xdf\x62\x1c\x41\x73\x5c\ -\x18\x08\xcc\x34\xf7\x30\x90\xc2\xa0\x14\x43\x09\x28\xe6\xb0\x1b\ -\xbe\x31\x21\xd8\x7d\xb9\x4c\x96\xf5\x14\x26\xf4\x29\x17\x19\x95\ -\xce\x92\x58\xf6\x1d\x60\x49\xe8\x23\xa0\x69\xf0\x07\x20\xbd\xb6\ -\xdf\x98\x5a\x9e\x72\xb8\x19\xac\xce\xa1\x16\x41\x41\x06\x9d\x7a\ -\x1c\x78\x25\x25\x80\x79\xc0\x4c\x54\x48\xed\x07\x8c\x0b\x38\xbe\ -\x31\xc0\x7e\x9d\xf4\x8d\x37\xea\xd9\xfd\x2e\x88\xf1\x31\x6d\xdd\ -\x9b\x02\xb9\x3e\x0e\xe4\xfa\x37\x05\x72\x43\x1c\xc8\x0d\x29\x41\ -\x7e\x3e\x26\xb8\xc1\x26\x50\xc6\x5a\x98\x9d\x55\x0a\xd8\xce\xae\ -\x6f\x21\x31\xcd\x48\xbf\xb1\xfc\x9c\xc8\xd8\x31\xb6\xb2\xfc\xef\ -\x05\xfe\xc4\xe1\xfa\xa4\x43\xd1\x1e\x1a\x59\x0b\x2b\x7c\x39\x87\ -\x28\x42\x15\x26\x32\xa8\x8d\x02\x47\xc7\x15\xd3\xa5\xc8\xc3\x31\ -\x23\xbb\x9f\x05\x70\xcc\xbc\x36\x65\x97\xb5\x09\x9d\x16\x16\xd2\ -\xe4\x01\x88\x4a\x60\xa8\xb5\x7d\x4c\x1d\x60\x35\xdd\x88\xa1\x99\ -\xc5\x92\xed\x50\x4d\xe3\xd9\x76\x57\x4a\xf2\x3c\x1d\x1b\xfb\x79\ -\xab\x49\x43\x5b\x8e\xa0\x82\xc8\x72\x35\x1b\x4c\x80\x5a\x3c\x42\ -\x44\x89\x26\xdf\xb1\xd0\x3c\x97\xe4\x12\x21\xb5\x15\x48\xc8\x71\ -\x7c\x7f\x34\x91\x98\x32\xa0\x32\x54\x81\x94\x96\x6d\xad\xb4\xc0\ -\x0b\xc9\x69\x23\x20\x81\xf6\x03\x55\x47\x8c\x51\xd3\xb2\x58\x6d\ -\x09\x2d\xdc\xd3\x56\xc4\xd1\x37\x25\x79\xe7\x06\xab\xaa\x02\x4b\ -\xae\x89\x15\x15\xa5\x5e\x6f\x51\x58\xeb\x23\xb0\xd2\x2e\xb4\x28\ -\xac\x0d\x11\x58\x69\x57\xd8\x66\xae\xbb\x8a\x28\x08\x4b\x48\xfc\ -\xb2\xcf\x0c\x6a\x09\x26\xcb\x7b\x87\x4b\x36\xa3\x59\xf6\x43\x7b\ -\xb1\x52\xb2\xa8\x97\x4a\x48\x6d\x34\x22\xb1\x8e\x32\x25\x4a\xab\ -\xc1\xe8\x10\xe5\x91\x4c\x4e\x4f\x83\x9c\xdf\xf5\x5c\xd9\x35\x65\ -\x01\xb0\xc2\x8c\xd4\xb2\x6b\x97\xe2\xf8\xf8\xba\x43\x86\xda\x7a\ -\x85\xa9\x52\x85\xde\x9d\x17\x1f\x1d\x92\x71\x6c\x35\x5a\x93\x12\ -\xe6\x0a\x84\x59\x08\x29\xb2\xca\x51\xb1\xb9\x81\x48\x12\x16\xb2\ -\xa6\xec\xed\x78\xb2\xc3\x5f\xdc\xcc\xc3\x08\x57\x10\xa7\x8a\xca\ -\x05\xfa\xc7\x80\xb6\x46\x97\x6d\x6a\x7e\x90\x26\x6e\xb4\x60\x48\ -\xf7\x83\x1c\x2c\x42\x9d\x55\x64\xc7\xa1\xcc\x2c\xa5\x31\x75\x9d\ -\x06\xa4\xcd\xac\x1a\x7b\x4d\xd1\x75\x17\xd9\xa9\x88\x4f\x53\xa1\ -\x82\x8c\x16\x33\x53\xa3\x8f\xec\x21\xfd\x92\xe2\x7d\x7b\xfa\x69\ -\x10\xa9\xa8\x83\x2b\x55\xa2\xc3\x4e\xdb\xe3\x92\xd0\xfc\x32\x13\ -\x28\x87\xd1\x1c\x53\x64\x1d\x24\x5b\xf6\x19\x79\x1d\x0c\xee\xaa\ -\x26\x75\x00\xc3\x2e\xcc\x79\x74\x03\x21\xcb\x68\x57\x6a\x84\xcd\ -\xe3\x5a\xc5\xe4\xb6\xb4\x28\xc1\x93\x13\xbd\x4c\xa0\x33\x66\x98\ -\xa3\x63\x1e\x86\xd1\x3c\xf0\xd5\x5d\x34\xa5\xfd\x3a\xb8\xb4\xb4\ -\x38\x16\x2d\xe8\x04\x79\x33\x2d\x6d\x0e\x10\xc8\x54\x2b\x7f\xba\ -\x79\xdc\x91\x39\xd4\x92\xc9\x83\x45\x57\x95\x3b\x9f\x27\x3a\xf7\ -\x8c\x62\xa9\x40\x79\x10\xcb\xab\x52\x63\x30\x0c\xf0\x82\x0b\x8c\ -\xf1\xb9\x30\xcd\xa7\x67\x8d\x03\x24\x06\x93\x74\x26\xac\xb4\x9d\ -\x9f\x9c\xc0\x1e\x82\xf3\x05\x1b\x24\x11\x41\x6a\x82\x03\x03\x28\ -\x30\x9e\x48\x89\xc4\x71\x95\xb3\x42\xd3\x8e\xfe\x60\xd1\x75\x20\ -\x39\xf5\x26\x28\x20\x98\x5e\xad\xdd\x57\x63\x2e\x79\x44\x87\x1a\ -\x48\x6a\x92\xec\x08\xbf\xea\xd2\xd5\x96\x6a\xdb\x0c\xf0\xda\x1d\ -\x30\x00\x1d\x7b\x42\x73\x45\x45\x7f\x0a\x84\xb6\x61\xc1\xd4\x78\ -\x84\x23\x4b\xbc\x53\x33\x66\xa2\xa4\xfe\x0c\x0d\xc4\x47\x6e\x81\ -\x82\x5c\xc9\x31\xb2\x26\xfd\xaa\x15\x8c\x71\x23\xad\x5f\x32\x1b\ -\x66\x49\xa6\xb0\xa5\x71\x54\xdf\x67\x7b\xa9\x2d\xa3\x20\x90\xf5\ -\x41\x20\x69\x4d\xa2\x20\x90\x0d\x41\x20\x69\x6d\xa1\x63\x63\x12\ -\x0e\x26\x8f\x6d\x3a\xbe\x3f\xc0\x22\xbb\x7d\xb8\x1c\xf3\x4a\x59\ -\xd4\x41\x08\x88\x06\x88\x0c\x87\x5a\xf6\x7e\xd0\x39\x45\xcf\x7b\ -\x78\x3d\xad\x30\x80\x93\x23\x68\x6b\x31\x57\x99\xf5\xb5\x72\x11\ -\x57\xe3\x58\x20\xda\xa3\x60\xea\x63\xb7\x64\xd3\x24\xb5\x7f\x35\ -\x70\x3b\x84\x4f\x0b\x5e\x08\xad\xeb\x61\xb8\x1a\xb4\x4e\x31\x25\ -\xb6\x67\x92\x41\x80\xcd\x1c\xf4\xe9\xb2\xe8\x45\xee\x0e\x14\x95\ -\xaa\xbc\x60\x9e\xac\x92\x04\x39\xa4\xdf\x54\x12\xe5\x23\x53\x5a\ -\x8e\x2d\xeb\xd4\x52\x64\x4b\x6c\xc7\x32\x89\xcf\xfc\x1e\x86\x7e\ -\x74\x4a\xe7\x9d\x62\x58\x86\xa3\x17\x34\x36\xb5\xa2\x83\xd4\xa6\ -\x5a\xea\xde\xfd\x1e\xe7\x88\x1e\xdd\xea\xfa\x5a\x13\xc3\xba\xd2\ -\x34\x2b\x71\xa6\x1d\x45\xe9\x31\xc2\x02\xf2\x4a\x9f\x05\x7b\x04\ -\xba\xa4\x95\x19\xd5\x30\xed\x6a\x54\xcf\x3a\xf7\xf2\xa4\x65\xae\ -\x8a\xc5\x51\xb4\xc9\x78\x42\x44\x1a\xbe\xa7\x38\x66\x4e\x73\x4b\ -\x7a\x96\x17\x4b\xa7\x32\x45\x07\x31\xb5\x22\xcd\x4f\x9d\xfb\xa6\ -\x05\x45\x36\xca\x60\x72\xc0\x63\xf5\x7b\x9e\x8f\x85\x13\x5a\x41\ -\x9f\x32\x1c\x1e\xcc\x65\xae\x63\x3a\x2c\x6a\x76\x61\xb9\x3d\xed\ -\xe5\x79\xa2\xf1\xb9\xa5\x92\x75\xc4\x57\x0a\xcc\x45\xca\x2a\x51\ -\xa7\x60\xa9\x4d\x8e\x07\x09\xb3\x3c\x1a\x35\xe5\xfb\xc6\x1e\xe7\ -\x09\x91\x4c\x61\x36\x87\x80\x8b\x81\x38\xc5\x43\x57\xdf\x91\x35\ -\x82\x52\x31\x89\xe5\xa4\x72\xdd\xf1\xdc\x87\x12\xe1\xbd\x13\x15\ -\x78\x62\x2c\x02\x12\x33\xbb\x84\xad\xa1\x2b\xdb\x0f\xc5\x3e\x3b\ -\x53\x78\x49\x0a\xed\x19\xa7\x5b\xc8\x89\x0e\x46\xf6\xfc\x55\x15\ -\xb0\x65\x98\xe8\xf0\x79\xc6\x9f\x9f\xab\x36\x1b\x8e\x81\x4e\x7e\ -\x56\xb7\x80\x43\x40\x2b\xe5\xa7\x70\x0f\x05\x2d\xc4\xb3\x69\x49\ -\x09\x58\x32\xe0\x86\x51\x9d\x4e\x43\x90\xd4\xc7\x73\xd5\x87\xc7\ -\x97\x58\x50\xf2\x44\x2a\x2b\xe0\x11\x1a\xdf\x9a\x37\x06\x96\x38\ -\x05\x39\x62\x68\x7a\x2e\xc7\x1c\x53\x0c\xf0\x7b\x60\x9a\xea\x4e\ -\x8e\x2f\x71\x68\x96\x1d\xd3\x38\x88\xb4\x8b\x8f\x95\xe0\x54\xca\ -\xe2\x89\xc9\x0f\x2c\x07\x24\x62\x89\xbb\x30\x94\x29\xd8\xa2\x65\ -\x24\x91\x4c\x50\x20\xa1\xda\x7e\x9f\x58\x47\x6f\xc9\x6b\x59\x1a\ -\x1d\x31\x72\x9d\x40\xa3\x51\xba\xa8\x26\xa8\xc0\xa4\xae\xb7\xee\ -\x68\x13\x63\x86\x85\x79\x9b\xf4\xab\xec\xbf\xa6\x1d\x4a\x9e\x87\ -\xc8\xb2\x3c\x72\x2b\xf7\x8c\x19\xfe\x10\x4c\x22\x52\x2d\x95\x77\ -\x7e\x51\x1e\x66\x5e\x37\x8b\x41\x59\x81\x74\x90\x48\x64\xd0\x84\ -\x45\x0f\xe7\x5a\x4b\x51\x1e\x9d\x24\x5c\x72\x45\x93\x1c\xaf\x10\ -\x8d\xfb\x81\x63\xa8\xa4\x72\x3e\x0f\xcb\xba\xda\x65\x3e\x96\x1e\ -\x57\x63\xe1\xad\xb9\x86\x4a\xda\xbc\x63\x18\x59\x9d\xd3\x96\x96\ -\x35\x01\xef\x9c\x85\xd9\x8d\x2c\xfc\x9b\x35\x73\xca\xb6\x33\x26\ -\x53\x30\x11\xd4\xa5\x6d\x34\x26\x74\xc7\xe8\x64\xc1\x2b\xca\x7d\ -\x9e\xbe\xdf\xa0\x15\x53\x63\xc0\xb5\x7c\xc3\x6f\xea\x30\xdf\x74\ -\x81\xbd\xe7\x13\xa6\x4d\x47\x42\xa5\xaf\x7a\x53\xc5\x10\x13\x41\ -\x32\x0e\xea\x72\x37\xc4\x52\x84\x44\x20\x6c\x17\xb2\x4d\xc2\x16\ -\x89\x11\x8e\xaa\xfa\x04\x3f\x75\x4b\x9e\xc7\xf8\x5c\x85\xa7\x15\ -\xe5\xaf\x2c\x71\x8c\x9b\xb2\xd9\x80\xe5\x6c\x4c\xf2\xc0\x1e\xd8\ -\x33\x6b\x73\xbe\x49\x93\x56\xa2\xaf\x79\x0b\x88\x9b\x54\xb2\xa0\ -\xea\x5e\x46\xba\x67\x88\xc6\x2b\x54\x18\x99\x45\xd9\xae\xf4\xb1\ -\xe5\x34\x45\x2b\x5a\x3a\x89\x48\xdc\x38\xbe\x5d\x9f\xd4\x56\x8d\ -\xc1\x1a\x81\x49\x0b\xe6\x56\x2c\x45\x5b\x47\x47\x10\xdc\xe8\x12\ -\x2e\x12\xb5\xe3\x26\xcd\x37\x23\xfc\x19\xda\x6f\x94\x3c\x4d\xcf\ -\x3a\xb6\xeb\x8a\x82\x9a\x4e\xcd\x06\xe9\xeb\x4c\x98\xae\xe1\xd7\ -\xd8\x70\xd9\xc5\x13\x30\x9e\xee\x50\x63\x5a\xb3\xec\x95\x55\x1a\ -\x26\x35\xe4\x2d\x98\xd2\xa4\x35\x12\x94\xd8\x92\xa8\x62\x0f\x16\ -\xe3\xf0\x32\x4f\xdb\xc9\xb5\xe0\x28\x16\xb3\xa8\xbc\xde\x42\x2c\ -\xae\x0e\x5d\x25\x44\xce\x12\x97\x0e\x62\xd4\x59\xa1\x47\x09\x3b\ -\x52\xef\xe3\x4f\x50\x3e\x6e\x82\x64\xdd\xa9\x54\x15\xb0\x76\x78\ -\xce\x1a\xbe\x71\x23\xbb\x4b\xdb\x29\xe6\x88\x8a\x30\x63\x2a\xfc\ -\x86\x5f\x05\x94\x72\x5e\xb6\xbe\x25\x4b\x4d\xcd\x53\x57\xda\xee\ -\x1f\xde\x98\x6a\xa6\xd3\xae\x81\xa5\x9a\x9c\x86\x4c\x3f\x7f\x61\ -\x8c\x25\xf4\x60\x5a\x93\xf5\xc2\x16\x75\x8e\x27\x45\xc2\x09\x4d\ -\x91\xb7\x97\x8a\xea\x03\x71\x33\x8c\x49\x12\x75\x31\xf1\x6c\xa6\ -\xbf\xf1\xd6\x67\x01\xaa\x88\x84\x89\xd0\xa5\x01\x2c\xcb\xf6\x94\ -\xf7\x47\x58\xc2\x13\xa3\xe9\xb6\x55\x98\x62\x26\x45\x09\x94\x1b\ -\xee\x5f\xa3\x69\xfd\xb4\x4a\x6c\xb1\xef\x0d\x09\x17\x37\x9c\x53\ -\x5a\xe1\x0f\x6a\xf6\x16\x4c\xd6\x68\x2b\xaa\xb1\xcd\x71\x42\x82\ -\x3d\xc8\x74\xde\x4e\x20\x5d\x8f\xf4\x78\x38\xfc\x9d\xbd\x3d\x2c\ -\x1d\x97\xb2\x87\x85\x91\x1e\xa8\xdc\x9c\x22\xb8\xfd\x22\x82\x3d\ -\x38\x19\x76\x39\x75\xa8\x79\x41\x04\xb6\x1f\x6a\x92\x7e\x13\x87\ -\x5c\x4d\xec\x68\x45\x04\xee\xf4\x71\xdc\xc3\x78\x3f\x6f\x22\x76\ -\xbb\x28\xd4\xed\xaa\x60\x84\x43\x46\xb0\x59\x57\xab\x58\x78\x22\ -\x75\x7c\xb4\x9a\x78\x98\x0c\xe1\xa8\xc6\xf3\xfc\x2d\x16\x96\x32\ -\x14\x66\x18\xfb\x5a\xaa\x94\x3c\xc9\x93\x04\x92\xeb\xe5\xdb\x68\ -\x51\x91\x5f\x19\x9f\x3a\xff\x30\xc4\xd5\xb8\x4b\x44\x41\x4b\x47\ -\x8c\x93\xb5\x05\xda\xed\x54\xca\x18\x0e\xdc\x66\x80\x33\xd3\xb1\ -\x65\x68\xa7\xef\xe0\xa4\x2d\x56\x58\xe1\x6f\xce\x14\xe1\x19\x61\ -\xa1\x97\xfc\x48\x89\x8d\xa2\x52\x89\x5a\x6c\xa7\x89\x31\x2c\x01\ -\xd5\x80\x84\xa9\x87\xf7\x34\xf4\x15\x2e\xe4\x8a\xef\x31\x6c\x78\ -\xaa\x22\x5b\xe7\xc2\x9c\xaa\xd6\x57\x89\x9a\xa4\x64\xbe\xc3\x50\ -\x82\x47\x7e\x36\xf7\xe4\x99\x98\xa5\xb6\x58\x11\xb9\x44\xf2\xd3\ -\xd9\x58\x68\x9a\xe3\x91\x77\x75\x7b\xe8\x74\x18\x4b\x01\x7d\x2a\ -\xa5\x0d\x23\x8d\x10\xa9\xac\xd4\x0e\xa4\x36\x48\x6b\xa7\x4b\x1b\ -\xe2\x5e\xee\x18\x75\x7d\xc7\xec\x09\x0d\xac\xa1\x29\xcd\x3d\xbb\ -\xac\xd3\x6a\x32\x51\x91\x54\x14\x60\xd2\x0a\xdc\x2e\xd4\xb6\xc1\ -\x2a\x41\xa5\x22\x89\x1b\xa2\xa2\x2a\x5d\x2e\x8c\xb9\xdb\xf5\x49\ -\x8d\x15\x21\x69\x43\xb2\x54\x31\x55\x10\x76\x07\x27\x7c\x39\xb0\ -\xd4\xea\x76\xd8\xa9\x63\xef\x1d\x41\x18\xc8\xef\x62\x62\xd9\x82\ -\xb7\xd1\x7b\x90\xbc\x3e\x9b\x42\xd7\x3a\xf2\xba\xeb\x19\xae\x97\ -\x92\xcd\x6b\x96\x60\x66\x53\x54\xa7\x0a\x1a\x31\xa7\x32\x87\x36\ -\x89\x4d\xe4\xc6\x18\x69\xc6\x27\x57\x65\x33\x5d\x6f\x28\xed\x99\ -\xc7\x64\x13\x69\x76\x87\x6d\x1a\xc1\xa0\x6f\xd6\x2a\x0a\x2f\x0f\ -\x51\x5f\x2b\xbc\xb6\xf8\xaa\xcb\x24\xcb\xc9\xdf\x8b\xe6\xd3\xf8\ -\x82\x1d\x58\x23\x5b\x98\x02\x9f\x2c\x0f\x62\x13\x8d\x7c\xc5\x90\ -\x40\xfb\x90\x3e\xa4\x07\x28\x8d\x1a\x9e\x5f\x37\x89\x36\x05\xda\ -\x27\x2c\x0d\x1a\x30\x53\xe8\x3b\xb8\x87\x2c\x60\x91\x8e\x28\x55\ -\x97\xa6\x05\x93\xaa\xe7\xd2\xb3\x7c\xda\x74\x6d\xd0\x1e\x98\x4b\ -\x0d\x81\x19\xa5\x6b\x37\x86\xd2\xb5\x32\x02\x98\x94\xb4\xb4\x79\ -\x08\x88\x1d\x2e\xa0\xc6\x7e\x17\xee\x74\xcc\x51\xd3\xc2\x48\x2c\ -\x2d\x63\xa0\x7a\xb7\xda\xdc\x65\x2b\xe9\x23\xa2\x5c\x5c\xd9\xe1\ -\x38\x58\x45\xea\x2d\x3d\x11\x83\xb5\x81\x73\x31\x1c\x37\x13\x22\ -\x5e\x02\x90\x28\x29\xd4\x1d\x36\xc1\xda\x93\x68\xa5\xb9\xa1\x58\ -\xd6\x95\x73\xc4\x41\xc7\x5a\xad\x9f\x17\xdb\x42\x82\x69\xb1\xd5\ -\x43\xfa\xb8\xe1\x97\x8a\xc7\x4c\x85\x70\x65\x5d\x6a\x05\xa7\x1f\ -\xe5\x40\xc2\xfe\xc6\xca\x6b\xb0\x82\x34\x92\xe5\xab\x7c\x2b\x5e\ -\x60\x2d\x05\xd6\x69\x6a\x01\x3e\x14\x5b\x5f\xd8\x38\x54\x55\x6d\ -\x61\x10\xcc\xfa\x30\x98\xf4\x39\x3d\x15\xcc\x86\x30\x98\xb4\x59\ -\xbd\x79\xa1\x25\x1a\xde\xc8\x96\x19\xa2\xde\x51\x35\x05\x14\x73\ -\x94\xf2\xd5\x60\x99\x50\xd3\x10\x2f\x0f\x4d\xed\x50\x88\xa4\x86\ -\x7a\x92\xcb\x50\x2c\x86\x0e\x3d\xdf\x2a\xb5\xb3\xd5\xcf\xd7\x80\ -\xb4\x1b\xa5\xb7\x89\xc1\x1d\x89\xf3\xb0\xee\xee\x17\x1b\x08\x53\ -\xc0\x3e\x11\xac\xcd\xb0\x5f\x2a\xca\xb4\xc2\xe7\xbd\xc8\x3d\x3b\ -\x7e\x69\x95\xdf\xef\xe1\xc3\xfe\x1e\x37\x1e\xd7\x03\xba\x99\x79\ -\x13\xb8\x76\xbf\x91\xd6\x82\x5c\x13\x83\x4c\x72\xd5\x2f\xc6\xce\ -\x94\x2d\x6c\xb4\x1a\x93\x55\x52\x57\xdb\xef\xd5\xbc\x5f\x99\x9f\ -\x49\x55\xa9\x16\x10\x48\xac\xd2\xbf\xcc\x05\x9b\x8c\xe1\x15\x88\ -\xdc\x56\x3c\x09\x3d\x88\x78\x78\x50\xd0\x89\xcc\x57\xb0\xf8\xae\ -\x67\x18\xf5\x70\xb8\x0a\x8e\x55\xe2\x00\x07\xb9\x05\x1d\x03\x00\ -\xb9\xc9\x3c\x6b\xc6\x03\xd6\xbe\x70\x4b\x2b\xcd\x6e\xe1\x04\x50\ -\x13\x40\x89\x65\x19\x44\xee\x7b\x67\x2e\xad\xd8\xb9\x25\x0d\x71\ -\xdd\x8f\x7a\xb8\x9c\x10\xc1\x5d\x0d\x16\x3a\xa9\x2c\x52\x32\xed\ -\xe9\x47\x3e\x39\x4e\xa0\xe4\xc8\x85\x4b\x71\x60\xbc\x65\x90\x94\ -\x18\xcb\x60\x3b\x94\x81\x22\xba\x06\x14\x10\xa1\x90\xaa\xaa\x75\ -\xee\xe4\xa4\x88\xf3\x20\x72\xdc\xf3\x28\xfa\x9e\x8c\x88\xb7\x1a\ -\xdc\xc8\x63\xb1\x59\x55\xdd\x8a\x4a\x59\xfa\x69\xa3\x83\x67\x2a\ -\x5e\x8e\xea\xcd\xb2\x9a\x5b\x96\x87\x31\xfc\x60\x15\x23\xcb\x5a\ -\x72\x02\x59\x0d\xca\x7c\x35\xfc\x77\x8c\x62\x2e\x6f\xa7\x24\xb1\ -\xca\xc5\x11\x7a\xf4\x55\x1e\x88\x93\x35\xc1\xb2\xa3\x6c\xc0\x4a\ -\x17\x98\xfd\x61\x3b\x39\xd3\xc2\x1d\x1d\x76\xc9\x70\x74\x96\x44\ -\xeb\xc8\xe3\xd6\xab\x2e\x6d\xad\x76\x82\xb6\xba\x6b\xf5\xea\x63\ -\xd2\x3a\x95\x9f\xe7\x24\x72\x02\xd2\x4e\xee\x2a\x59\xc6\x9f\xeb\ -\xdc\x8d\x62\x3b\x14\x98\x4b\x2f\x0e\xf2\x50\x53\xab\xdc\xc9\x22\ -\x5a\x28\xc5\xce\xaa\x54\x57\x2b\xb0\x2d\xc5\x9b\xd0\x7d\x3e\x61\ -\xfe\xf3\x39\xdc\x9f\xa6\x24\x55\xb9\x55\x12\x6b\x07\x25\x96\xa3\ -\xe7\xcc\xb2\x8b\x4b\xc8\x0f\x86\xd1\xbd\x2c\xd4\x6d\xa3\xe1\x03\ -\x7e\xda\x0e\x8c\x9a\x3e\x5e\xcd\x36\x8f\xda\x74\xef\x21\xb8\xde\ -\x59\x70\x4d\x4c\x0b\x13\x91\x46\x5a\x6a\x1d\x5b\x95\x50\x0b\xeb\ -\xb3\x83\x29\xce\x62\x9b\x42\xb5\x72\x8d\x06\x17\x45\xa1\x6f\x34\ -\xb3\x2f\x54\x09\xf7\xff\x89\xc6\x6d\xd9\x74\x59\xff\xc5\x88\x18\ -\x4b\xfa\xfb\x6e\xad\xa1\x67\xc7\x58\xe6\x52\xec\x86\x99\x1e\xcb\ -\x59\x1e\x66\xe1\xa5\xb3\xf4\x3c\x49\xce\xc1\xc8\x5c\x48\x5c\x19\ -\x4f\xd9\x0f\x0f\xcb\x6d\x63\xd9\x40\x5c\x80\x41\x2c\x73\xf1\xa6\ -\x66\xb3\xf3\xc8\x54\xd2\x49\xa3\x41\xdd\xee\x0a\x98\x8c\xa0\xc0\ -\x93\x35\x12\xea\xe1\x12\x0e\x97\x1d\x82\xd5\x4b\xdc\xe0\x7d\x26\ -\xd6\x74\x8d\x2f\xa7\x31\x43\xf8\xc9\x4d\x75\x7a\x95\xbd\x53\x49\ -\x22\x2a\x6b\x85\x8b\x29\x7e\x57\x4f\x87\x98\x7e\x8c\x42\xd2\x85\ -\x8c\x8f\x88\x2a\x10\xb9\x63\x46\x73\x19\xb8\x67\x07\x20\xe4\x23\ -\xc6\x8c\xca\x6d\x51\xd8\xfd\x3c\xee\x0b\x3e\x1e\x96\x4b\x55\x72\ -\x02\xca\x21\xa9\x1a\xa4\xa7\xc2\x1f\x3e\x1f\xff\x70\x98\xc7\xdb\ -\xa9\xff\x7a\xda\x16\x96\xeb\x02\xf1\x39\x31\x66\x66\xd9\x41\x1e\ -\xac\x96\x00\x9e\x97\x0b\x3c\x0b\x46\xcb\x10\xbb\xb5\x61\xdb\x2e\ -\x8c\xe8\x8e\x92\x1d\x03\x85\x94\x35\x30\xcf\xc9\xde\x11\x65\x3f\ -\x14\x1e\x3d\xfc\x91\x56\x2e\xa3\xc6\xc2\x17\x3b\x79\xc0\xde\x03\ -\x8b\x2d\x08\x87\xea\x33\xda\x73\xbf\x63\x18\xbd\x3d\x7d\x9a\xb0\ -\xe9\x34\x77\x0a\x3c\xe8\x22\xca\x24\xda\x0b\x3d\x55\x0f\xda\x3a\ -\x4c\xd6\xeb\xd5\x54\x9e\x3f\xa4\x2c\x3a\x9b\x2f\xba\x38\x5f\x2d\ -\xc9\x02\x10\x93\x90\xe4\xf1\xc8\x3d\x9b\xc2\xef\x61\x01\x6a\x3a\ -\xc9\x23\x08\x3d\x58\x39\xc6\xda\x27\x2d\xf8\xd8\x8a\x74\x25\xa2\ -\xb1\x5d\x9d\xc4\x9c\x5a\x45\x8d\xb4\x92\x1b\xde\xfd\xbd\xaf\x9c\ -\xf6\xa6\xe5\x9f\x2e\x81\x01\x0d\x3a\x07\x29\xe3\x13\xb3\x96\x26\ -\x92\x50\xee\xa1\x11\xce\x76\xea\x8a\xdf\x18\xfe\x16\x19\xe1\x70\ -\xa4\xbf\xe0\x9b\x5b\x36\x5f\x05\x16\xef\x2d\x49\xca\x75\x91\x0c\ -\x56\x56\xbe\x42\xc2\x15\x41\xc2\x2c\x93\x78\x27\xd5\x29\xcb\x44\ -\xe5\x62\xb9\x11\x0e\xbe\x8b\xc2\x98\xf0\x91\xd8\x49\xa3\x54\xe1\ -\xb8\xa8\xc0\x5d\x0e\x65\x31\xc7\x8b\xaa\xc7\xc5\x84\x6d\xf5\x5d\ -\x8c\x63\xa2\xd0\x17\x07\xb6\xff\xea\x9c\xc9\x8a\x44\x2d\xc4\x89\ -\xc7\x91\xbe\xb7\x19\x29\x34\x8e\x8c\xca\x54\xaf\x08\xb8\xb1\xfe\ -\x25\x64\x95\x1a\xc2\x86\x8b\x1b\x5f\x7c\x5f\xdd\x64\x23\x2e\xa3\ -\x1c\x59\xec\x33\xe9\x2b\x71\x4c\x4a\x4b\xb9\x71\xfb\x84\xbf\xa8\ -\x99\xe8\x88\x4b\xd6\x74\x65\xb6\xc8\xb2\x27\xe5\x4d\xb7\x0c\x92\ -\x4a\x77\xb5\xc5\xb8\x0b\x71\x31\xad\x1e\x12\xe0\x31\xb7\x24\x1b\ -\xb8\xe0\x33\xc0\xef\x8b\x41\x66\x98\xf9\xc5\x19\xe8\x71\x71\xd1\ -\xb6\xec\xc5\xb8\xab\x19\x40\xea\x45\xb3\x30\x15\x82\xd7\xb9\xd9\ -\x28\x8c\x1b\x9e\x99\xd5\x3b\xf1\x75\xd6\x14\x3b\xe6\xbb\xb2\xb0\ -\x93\x4c\xf0\xad\xee\x8d\x76\x21\xb7\x38\xb5\xff\x35\xfd\x4a\x4a\ -\x76\x45\xe2\x36\xb2\x04\xcf\x42\x8a\xe4\x71\x2a\x0b\x16\x79\x4e\ -\x66\xdc\x8c\xc9\x1d\x2f\x38\x65\x01\xf1\x51\x65\x42\xe8\xde\xc4\ -\x71\x33\x5c\x6d\xdf\x89\xca\xe2\x28\x3d\x12\x36\xb4\x83\x3b\xed\ -\xc2\x07\x8e\xc4\xf9\xa0\xc9\xc7\x90\x88\x9a\x44\x26\x8a\x83\x5a\ -\x57\x8a\xda\x53\x54\x9a\xc0\x60\xc7\xec\x9c\x96\x1d\xb3\x71\xc7\ -\x3c\xa5\x07\xdb\x99\x27\x0a\xfa\x98\xe4\xe5\xa2\x18\x7d\x53\xae\ -\xd3\xd2\x0a\xd9\xd6\xb7\x91\x44\x32\x0a\x27\xdd\xf7\x30\x09\x93\ -\x2f\x2f\x88\x9e\xfb\x81\xbb\x86\x92\x08\x88\x87\xd5\xa9\xc6\xd6\ -\x74\xa1\x85\xe7\x03\xa3\x62\x82\xea\x79\x2e\xe4\xc5\x21\x38\xa2\ -\x32\x41\xb4\x64\x53\x1b\x14\xea\xd5\x07\x35\xe2\x0b\x58\x85\xb8\ -\xf5\x50\x83\x4b\x83\x4d\x94\xde\xc5\x51\x30\x58\xde\xaa\x6e\xe8\ -\x8f\xb2\xe6\xb4\x61\x11\x85\x09\x7f\x9d\x9a\x09\x43\x91\x12\xba\ -\x93\x2b\x99\x27\xb5\xcc\x96\x7c\x28\xde\x82\x19\x0e\x04\xcc\x0a\ -\x29\x8a\x65\xd7\xe3\x4f\x34\x3d\x2e\x36\xa3\x54\xb6\xe9\xb2\x6b\ -\x9b\x56\x0b\xd2\x1d\xe7\x58\xba\x8a\x46\x1e\x3f\x6e\x22\x21\x70\ -\xd3\x95\x49\x5d\x1e\x15\x5d\x20\x8c\x39\x59\x91\x92\x85\x13\x16\ -\x3e\x5c\x24\x6c\x4f\xa8\xd6\xbd\x6a\x51\x04\x83\x39\x9e\x1f\xf7\ -\x50\xdb\xc8\xa4\x98\x98\x60\xa6\x59\x29\x34\xea\xd4\x0f\x24\x48\ -\x6e\x8a\x29\xf3\x4e\x83\x49\xf1\x4e\x85\x71\xd8\x68\x84\xce\x8d\ -\x4b\x93\x4b\xa6\x38\x5f\x65\x0a\xdb\x31\x0d\x8b\x9d\x62\x26\x8e\ -\x3f\xf1\x15\x29\x57\xae\x18\x31\x02\xd6\x71\x95\x9f\x5c\x5a\x41\ -\xa2\xd1\x79\x01\x7d\x57\xe8\xd2\xc4\xc6\x23\x80\x5a\x30\xf2\x5e\ -\x27\x77\x0b\x78\x27\x6a\x46\x3e\xa5\x40\xab\x39\x3e\x51\xa0\x8d\ -\x23\xcd\x6c\x7f\xf1\x06\x83\x6b\x32\xf0\x26\xe6\x29\xe8\xb1\x9a\ -\x0a\xd5\xc2\xef\x5a\x01\x7b\xc9\xc3\x65\x57\x20\xa2\x8e\x90\xb6\ -\x60\xc1\x17\x15\x07\x35\x76\xc5\x42\x15\x79\x2e\x58\x2c\xf4\xf0\ -\xc4\x41\x42\xe2\xec\x05\xdb\x17\x83\x71\xc7\x27\x06\xc7\x16\x4e\ -\x70\x7a\xbe\x95\x19\x2d\x3b\x2d\x83\x50\x13\x07\x44\xc9\xb9\x3e\ -\x57\x9d\xeb\x71\xbd\x50\x36\xa8\x23\x94\xa3\x9b\x4a\xf2\x65\x2b\ -\xab\x94\x89\x97\x71\xa1\x7a\x76\x01\x1c\x24\x2b\x6b\x74\x65\x76\ -\xd1\xd6\xfc\x9c\xc6\x9c\x99\xcf\x1b\x8e\x61\x65\x31\x35\x5f\xb0\ -\x27\x58\x76\x93\x01\x14\xf9\x4b\x0f\xb7\x9d\x62\x2d\x1d\x3d\xd3\ -\x31\x6d\xfa\xf2\x20\x32\x1c\x25\xb4\x3c\x3b\x76\x58\x60\x94\xba\ -\x92\x63\x63\x5a\x9f\x5f\xe6\x56\xb8\x8b\x9a\xb2\x8b\x1d\xe4\x34\ -\x9c\x9a\xb0\x3e\x98\x3e\x0d\x1a\x67\x9c\x49\x34\x8e\x38\xcd\x0d\ -\x7b\x65\x33\xc9\x86\x2e\xf4\xd1\xab\x14\x97\x6a\xa2\x9d\xd1\x10\ -\x54\xea\xcd\x5a\x3b\x2b\x4a\xca\xf0\x26\xc9\x24\x49\x19\x96\x7d\ -\x72\xf8\x4b\x76\x71\x71\xa2\x8a\x19\xdc\x44\xa9\x08\xa9\x94\xd2\ -\xe3\x2e\x94\x1e\xe1\xf0\x7a\xb0\x70\x5b\xdd\x3b\x12\xbc\xdd\x83\ -\xa9\x58\x66\xa6\xc4\x15\x1a\xb0\x75\xe8\x06\x52\xc3\xf2\x3d\x71\ -\x86\xb5\xac\x96\xa1\x52\xe3\xd4\x0a\xeb\x5c\x46\xf2\x0a\x84\x5d\ -\x75\x45\xe5\xd3\x39\x3c\x54\xab\x16\xac\xa8\x16\xb9\x89\xcf\xb3\ -\x24\xf6\x4a\x0e\x12\x8c\x16\x85\x71\xd2\x95\x12\x8c\x60\x5c\x4d\ -\x5e\x9d\xb5\x9a\x17\x77\x2c\x0b\xc4\x89\xc2\xb4\x92\x85\x9d\x41\ -\xe9\x14\xf4\x2f\xe3\x71\x94\x72\xea\xdb\xbb\xa9\x92\x61\x45\xed\ -\x98\x89\x28\xb1\xe2\x21\xd0\xf5\x60\x8a\xf0\x42\x5c\xaa\x72\xd0\ -\x52\xa0\xf9\x76\xac\x93\xc0\xba\x77\x56\x1f\xa4\x0d\x4b\x89\x24\ -\x0c\x1e\x7d\xd2\x2c\x96\x8b\xa0\x91\xac\x51\x10\x62\xa0\xde\x30\ -\xee\xca\xd5\x9c\x78\x55\x9c\xfe\xe5\x62\xd5\xc6\x6a\xec\xcb\xc2\ -\x16\x13\x63\x36\x75\x0a\x59\x51\x10\x85\x29\x05\x1c\x75\xe6\x1c\ -\x1d\xb7\x7b\xf3\xd7\xd3\x8a\xbb\x85\xc0\x55\x7b\x09\x2b\x68\x2b\ -\x73\x03\xdc\xe4\x9c\x20\x43\xf0\x4d\x7b\xf6\x6a\x1d\xc3\x76\x29\ -\x6d\xf0\x9c\x42\xdd\x47\x58\x5e\x44\xcc\x55\x14\x6a\x66\xcf\x3e\ -\xad\xa3\xdf\x01\xcb\x2b\x2d\xdc\x05\x80\x2b\x83\x5b\xe0\x5c\xee\ -\x70\x8b\x45\x42\x6d\xde\x0b\x50\x87\xcc\x5c\xea\x48\x7f\x03\x09\ -\xa6\x24\x6b\xf5\xb4\x7b\x1b\x6b\xe6\xbf\x2d\x47\xe3\xc4\x27\xe8\ -\xe2\xc2\x7c\x69\x0b\x30\x84\xfd\x51\x6d\x0c\xfa\xcd\x6f\x1e\xdd\ -\x9e\x4d\x38\x39\xc6\xf6\xc3\xa5\xa8\x5a\x56\xc9\xca\x0e\x3c\xd8\ -\x9a\xfe\xc0\x03\xae\x4a\x35\x7c\xca\x19\x6d\xc2\x8d\x7d\x8e\x72\ -\xd2\x53\x5d\xd6\x73\x52\x16\x95\xd6\x5c\xca\xa7\xe7\xed\xdd\xb9\ -\x10\xde\xe1\xa3\x93\xf8\x73\xae\xc3\x1b\x2b\xc3\xc2\xbf\x2c\xf4\ -\xb6\x2f\xf0\xc3\x25\xdd\x32\x90\xc8\x4e\x7f\x94\x53\x2c\x15\x12\ -\x63\x0d\x59\xdb\x57\xcd\x29\xa9\x9d\x5c\x29\x68\xdc\xcc\xcc\x11\ -\x51\x3d\x5f\xe0\x9e\xab\xc1\x71\x65\x69\x1f\xca\xc8\xb2\xd6\x2f\ -\x9a\x55\xe3\x07\x8a\xf9\x73\xf7\x31\xb3\xc2\xfe\x09\x9f\x59\xf0\ -\xdc\x6e\xbe\xa5\x54\x98\x80\x74\x7f\x18\x0a\x66\x2a\xb7\x31\x3e\ -\xb7\x11\x6b\xd9\x41\xa8\x96\x1d\xf4\xf5\x98\x83\xc1\xce\x27\xc5\ -\xe2\x45\xa7\x53\x1b\x29\x7b\x20\xab\xf7\xf3\x9f\xa9\xbc\x76\x5d\ -\x10\xd5\x2e\x8d\xb1\x19\x39\x13\x1d\xc2\xaa\x8e\xce\x7a\x73\xac\ -\xa4\x9e\x02\x95\xc4\x56\x6a\xf2\x5f\x66\x0d\x59\xbc\x56\x27\xb2\ -\x96\x3d\x5c\xa0\x98\x74\xde\xd3\xf1\x71\x24\x2f\xe9\x25\xc3\xc1\ -\xdc\x61\xb4\x58\x70\x06\x07\x3b\x5d\x9d\x8a\x36\x16\xf7\x65\x2a\ -\xd3\x48\xf8\xc5\x93\xf0\xef\x2a\x18\x95\xf8\x2e\xdf\x4f\x3f\xf6\ -\x63\x95\xb1\x83\x4f\xe2\xd7\x49\x52\xe7\x73\x55\x91\xfb\xa0\xb6\ -\xb5\xcc\x53\xc7\x9d\x72\xcc\x75\xd0\xe7\xa4\xdf\xd3\xac\xd2\x64\ -\xea\x8a\x42\xba\xc0\xd8\xd1\x9a\x59\x59\x51\xe8\x8e\x99\xf9\xb4\ -\x32\x71\x30\x56\x81\x4c\x97\xcc\x60\xc5\x12\xac\xea\x23\xc2\x78\ -\xb2\xf6\x2d\x3e\x7f\x43\x6b\x39\xaa\x3b\xea\x67\x60\xc6\x48\x32\ -\x7b\x74\xc4\x17\x3a\xe1\x84\xfc\xe2\x78\x14\x31\x45\xef\x4e\x15\ -\x47\xec\x42\x5a\x1c\x47\x52\x69\xdc\xb7\x86\xb0\xef\x50\xb1\x56\ -\x34\xe4\x8c\x88\x3b\x9b\x2c\x55\x2f\x5e\x94\x87\x29\x2f\xc5\x3b\ -\x0e\x29\x94\xfa\x9c\x72\xbe\xd9\xd2\xc4\x73\xc7\x9b\x97\x8a\x83\ -\xb7\x43\x2f\xb5\xf2\x97\x82\xa5\x91\xf5\xd0\x9c\xdd\x37\xa1\x34\ -\x9d\x03\x4d\x03\x77\x7c\x49\xf7\x77\x29\xbb\x85\x2b\xf4\xc2\x62\ -\xf5\x1e\x24\x12\xcc\xe6\x2c\xc5\x5a\xe2\x5e\x79\xee\xce\xd2\x9d\ -\xbd\xbd\x2b\x59\x16\xc5\xf6\x2f\x4a\x0a\x8d\x6e\x90\x18\xdc\x8c\ -\x0c\xde\x7b\xd6\xbc\x74\xd0\xa0\xc1\xbf\xf1\xf0\xe8\x28\xca\x81\ -\x63\x81\x95\x11\xd2\x93\x78\x63\x9a\x0f\x60\x53\x7e\xda\xad\xd2\ -\x7c\xb7\x59\x0a\x43\x5f\x88\x94\x2b\x2a\x4a\x39\xee\x52\xb6\x83\ -\x7a\xd8\xb5\x47\x4c\x9d\xf1\x5d\x9b\x21\x48\x23\x64\x5b\xe5\x2b\ -\xde\xb8\xc6\x18\xe7\xf1\xa0\x71\x22\x73\x9b\xac\xc8\x5f\xd4\x4d\ -\x85\xef\xf1\x59\x85\xd2\x53\x65\x9e\xb5\x3d\xea\x35\x4c\x2c\xce\ -\x3a\x46\x6b\x77\x8b\xb6\x83\x61\x53\xf0\x5d\x26\x6c\x5e\x9f\xb3\ -\xca\xa2\xd7\x01\x66\x42\xe8\xf6\x57\xb8\xa6\x9a\x59\x46\xf1\x71\ -\xfb\xa4\x53\x95\x35\x7a\xa3\x33\xeb\x50\x1c\x30\x20\x0a\x89\xe5\ -\x05\x76\x81\x79\xea\xe1\xcb\x92\x47\xd6\xa5\xdb\xd3\x03\x1a\x0f\ -\x4c\x85\xf0\x54\x31\x36\x90\x17\x1f\xe5\x7c\xdb\x4e\x81\x42\xba\ -\xe5\xd6\x1c\x01\x47\xc3\x2b\x86\xba\xc3\x14\x38\x39\x72\x47\xf1\ -\x4c\x2f\x50\x3e\x94\xdd\x58\x9c\x70\x43\xb2\xd2\x65\xf2\x65\xc5\ -\x4a\xa3\x71\xdc\x9f\x21\xd4\x6f\xdc\x41\x1b\x7a\x00\x6f\x21\x06\ -\xe9\x5c\xa9\x4b\x35\x78\x20\x26\x0b\x59\x04\x8f\xd6\x0a\xcc\xad\ -\x8c\x40\xf5\xe2\xa5\x16\x7c\x09\xf3\x2d\x0c\x8c\xd1\xbc\xa9\x92\ -\x11\x26\xe3\x1c\x3c\x92\x91\xd5\xc7\x50\xd0\x7b\x94\x03\x19\x0d\ -\x5a\x6a\xa1\xed\x09\xbd\x31\x1f\xde\xd0\x51\x6f\x88\xfd\xe1\x91\ -\xdd\x7e\xbd\x63\xb4\xe4\x57\xde\xfd\xac\xbc\xcd\xae\xb9\x2b\x73\ -\x53\x3a\x9d\xcf\x17\xc7\xc8\x39\xd4\x02\x94\x78\x23\x98\xa2\x09\ -\x6f\x37\x0e\xe6\xab\x83\x9b\x98\xed\x0a\xfb\xd1\xa3\x07\x5b\x54\ -\xd8\xae\x4c\x58\x11\x9e\xf4\xa3\xdf\x13\x3c\xf3\x13\xa3\xf3\x8c\ -\xf6\xee\x98\x5d\x2e\xe4\x22\xbb\x96\xd5\xed\xe4\xa6\x97\xb8\x4f\ -\x59\xeb\x30\x97\x87\x08\x99\xe2\xe6\x64\xa5\xf5\xa5\x28\x28\xa3\ -\x45\x99\x4e\x40\x9e\x1b\x8a\xe4\x08\x9e\xdb\xae\xde\xf8\xc4\x04\ -\x23\x53\xe2\x05\x5e\x68\x44\x09\xb1\x11\x96\xc7\x20\xfc\xd7\x43\ -\x68\x58\x6a\x00\x3e\xf7\x91\x2d\xf0\x2f\xdd\xf9\xbb\x05\xfa\xdf\ -\xa4\x10\xea\xb8\x5e\xa5\x52\xd3\xe1\xaa\x03\xcf\xdc\xa4\x47\xba\ -\xb3\x13\xb8\x69\xec\x74\xc4\xb5\x0b\x65\x0f\xc6\x3f\x34\xd0\xd3\ -\xbb\x29\x4c\x83\x4c\x8c\xe2\xac\x8b\xd1\x9b\x73\x95\x83\x18\xc3\ -\x4b\x38\xc3\x8f\x5a\x8c\xae\xe4\xf9\xca\x5b\xf1\x67\x62\xcf\xe6\ -\xef\x2a\x47\x62\x2b\xef\x2f\x51\xde\xef\x45\xd6\x61\x49\x06\x35\ -\xb9\xa0\x6c\xb3\xe4\xb0\x62\xa7\xef\x20\x05\x54\xf4\xda\xdc\x39\ -\xfc\xd5\xc0\xed\xb9\xca\xdb\x0b\x94\xb7\x93\xae\xb3\x13\x43\x51\ -\x6e\xb5\x53\x20\x2c\x52\x20\x54\xba\x26\x4e\x60\x12\xb8\x2d\x2e\ -\x61\x1c\xd1\xdb\x74\x5a\xf8\xdb\xe2\x52\x9d\x84\x19\x0c\x9f\xae\ -\x2e\x5e\x13\x87\xac\x07\xec\x9f\xf0\x8d\xd1\xe2\x7e\x16\xe6\x9c\ -\xab\x8a\x6b\x6e\x1f\x48\x7f\x00\xb3\x1d\xdc\x56\x50\x3b\x62\xfb\ -\x60\x80\x0a\xec\xda\x8f\x12\x61\xbb\xa7\x99\xbc\xf2\xb8\xbc\x92\ -\x97\x92\xb4\xf3\x0b\x3a\xd4\xdd\x44\x01\x91\xcb\xc0\xf8\xb5\xbc\ -\x52\xe4\xf6\xf1\xd2\xdb\xd0\x1b\xfb\x7c\x9d\xc2\x6e\xe4\x31\xfd\ -\x29\x90\x05\xf8\xc1\x7a\x63\x79\xe3\x6e\xf4\x2a\xad\xf8\x8a\xf3\ -\x8e\x3e\x7a\xa1\x04\xac\x3d\xc7\x46\x81\x25\x8d\x01\xdd\x2f\x2e\ -\xf7\xcf\x22\x0c\xac\xc1\xe8\xf1\x63\xf5\x68\x69\x85\x1a\xce\x0b\ -\xd4\x78\x7a\x28\x8e\x0a\x0a\xd5\x5a\x78\x35\x90\xcd\xdd\x0a\xe5\ -\xd5\xe3\x30\x61\x37\xe2\xcb\x2f\xd5\x45\x0d\x16\xc9\xd2\x71\x65\ -\xf9\x78\x8f\x94\xa7\xb1\x6d\xca\x8d\x82\x9c\xc9\xa1\x07\x8a\x05\ -\x84\x2e\x0c\xf1\xc8\xa8\x2e\x9c\xf6\xae\xe0\x00\x4b\x0e\x82\x51\ -\x13\xd0\x2b\xd2\x1c\xef\x5f\x8a\xe2\x3d\x66\x21\xaa\x4e\x5a\xdc\ -\x79\x77\x99\x7e\x1a\x2b\xe8\x15\xbb\x7a\x94\xb7\xb7\x45\xee\xf7\ -\x15\x75\x07\x55\x5c\xe5\x8e\x92\xba\x57\x91\xc4\x1d\xf2\xae\x5f\ -\x2b\xc7\xee\x83\x70\x03\xf6\x1f\x86\xce\x3b\x7a\xc3\xb2\xd7\x8b\ -\x60\x13\x7f\x26\x45\xfc\x5d\x2b\x4c\xa5\x87\x37\x11\xa8\x95\x1b\ -\xe1\x1d\x39\x1d\xd0\x9f\xc4\x7a\x9d\x8f\xb5\x8a\xaa\xe0\x53\x5a\ -\xed\x0f\x13\x86\x5f\xc5\x2e\x00\xad\xa3\x3f\x3c\x84\x8e\x84\x03\ -\x43\x23\xb5\x80\xd2\xcd\xe9\xa7\x95\x68\x43\xe6\x39\xe1\x55\x90\ -\x03\xec\x1c\x34\x49\x44\xfa\xe5\x98\xb0\x85\x86\xdc\xba\x1f\xff\ -\xca\xe2\xc6\x30\x79\xf3\x87\x8d\xe5\xd7\x62\xe7\x88\x4a\x8d\x40\ -\xd1\xb7\x0c\xb7\xf4\xdb\x65\x98\xac\x63\xc4\xf5\x1d\xee\x7e\x83\ -\x9e\xfe\xc5\x4c\x8d\x6e\x11\x88\xd3\xf1\xbc\x21\x16\xed\x33\xbd\ -\x30\xb3\x0f\x06\x30\xd6\x39\xc6\x6a\x7f\xdd\x44\xde\xe0\x13\x37\ -\x47\x2e\x2a\x22\x53\x1a\x46\x3e\x7e\x47\x09\xfc\x28\x02\xdd\x78\ -\xe9\x0d\xad\xd8\xc5\x8b\xa3\x99\x55\x13\x71\x68\x4e\x4f\x45\x40\ -\xcb\x17\x83\xd1\xd3\x93\x19\x11\x73\xbe\x8c\xa1\xcc\x33\x85\xcc\ -\x39\xea\x23\xb6\x4a\x20\x46\x0f\x60\x8f\x1e\xae\xdc\xad\x21\x42\ -\x66\x7e\x8a\xe1\x1a\xf5\x39\xe2\x90\x94\xf7\x96\x48\x6f\x46\xcc\ -\xa8\x98\xe1\xf0\x71\x71\x8b\x04\x22\xc0\x9f\xec\x56\xaa\x6e\xe5\ -\x72\xed\x70\xbf\xa5\x54\xc4\x49\x26\x8a\x43\x58\xc9\x42\xf8\xa0\ -\x43\x31\x97\x25\x25\x06\x8d\x05\x0f\xca\x3a\xe3\x78\x46\x88\xd5\ -\xad\x8d\x80\xda\xdd\x2f\x26\x35\x67\xc0\x40\x72\x86\x95\x35\xa3\ -\x73\x3b\x92\x72\x71\x30\xcb\x24\x18\xd6\xa6\x48\x76\x27\xfc\xaa\ -\xb0\xa4\x8f\xf0\x4a\x81\x30\x18\x8e\x26\xdd\x45\x92\xc5\x5a\x24\ -\x81\x33\x7f\x9a\x30\xbf\xc7\x05\x10\xa5\x9c\xbd\x26\xe2\x4d\x76\ -\x13\x56\x8e\xe2\xc6\x74\x7e\x38\xeb\x7c\x8d\xe4\xa7\x7c\xd9\x15\ -\x31\xf1\x70\x67\xc7\xa7\xec\x4c\xd4\x9b\x04\x16\xa1\x8c\xd1\x45\ -\xba\x74\xcb\x23\xfe\x72\x8b\xeb\x77\x6b\xa4\x5f\xc9\xc0\x92\x61\ -\xcd\x69\x45\x92\x3a\xf0\x23\x19\x16\xea\x6d\x42\xbe\x18\xc2\x33\ -\xcd\xc2\x48\x9c\x19\x41\x42\x16\xb5\x9a\xf1\x6b\x47\xf1\x7a\xad\ -\xa8\xff\x1b\x5a\x7d\x12\xb5\x2e\x86\x1a\x96\xb2\xba\x72\x91\xb1\ -\x34\x32\x5d\x7c\xdc\x41\x33\xc1\x72\xce\x45\xdc\xe3\xc1\x08\x9e\ -\xe9\xce\x9e\xcb\x22\xd6\xe3\x9c\x79\x03\xfc\x12\x66\xd5\x98\x73\ -\xe2\x40\x9f\x8d\x1b\x95\xb9\x67\x5f\x04\x31\x71\xf9\x94\x9c\xcf\ -\x4a\x02\x9c\xd5\xc5\x31\x53\xc4\x0e\x1a\x57\x3e\x82\xcb\x39\x82\ -\x78\x7e\x12\x9b\x53\x45\x94\x03\x56\x26\xd5\xb3\xa3\xd1\xd9\x3d\ -\x31\x82\x9c\xba\xc5\x90\xd9\x6c\xb2\xc3\x6e\x22\x32\x72\xe1\xf5\ -\xc4\xd9\xca\xa5\x47\xb3\xe8\x05\xd6\x57\x37\x45\x25\x89\x2a\x41\ -\x01\x2d\xc4\xdb\xb8\x6f\x1a\xaa\xdc\xdb\xed\xff\x6a\xc6\x4c\xce\ -\x92\x60\xd7\xc8\xc4\xdd\x58\x48\xe0\x25\xae\x2c\x2b\x22\xe7\xd4\ -\xde\x83\x83\x96\xba\x8c\x31\x90\xd8\xee\x97\xbc\xee\x58\x1c\x42\ -\xe4\x93\xd5\x79\x5a\x1b\xc4\x95\xea\x36\x60\x26\x8b\x85\xb2\x38\ -\xd1\xf8\x62\xcc\xda\xc5\x12\x6d\x1c\x46\x7d\x32\x82\x7a\x74\xc6\ -\xc2\x9c\x2f\x06\xa0\x16\x8d\x88\x8b\x8d\xaa\x1f\xc4\xba\xe8\x20\ -\xb0\x58\x43\x11\xdf\xd3\x0f\xe3\xf2\x08\xe3\x85\x67\x20\x3c\x08\ -\x3b\xc2\x13\x71\x68\xcb\x93\x41\x75\x12\x32\xca\x62\xd5\xae\x34\ -\xe7\x37\x04\x87\x25\x16\x3b\x4d\xa5\x30\x96\xf2\x8d\x35\x45\xc3\ -\xd2\x9f\x2a\xb3\xf6\xf4\x43\x4b\x96\x3b\x47\xc5\xa2\x54\x51\xda\ -\x9c\x3e\x83\xce\x63\xf5\x16\x11\x75\x15\xe2\xf4\x21\xf5\x00\x9f\ -\x77\x25\x20\x16\xd6\x68\x32\x81\x9d\x37\x1d\xd7\xa3\xb7\xda\x85\ -\x11\xbe\x6d\xda\xe3\x60\x65\xd1\x93\xc1\xfd\x95\x32\x11\x09\x27\ -\xe6\x39\x07\xe3\xb1\xa2\x66\x5b\x26\x50\x30\x7d\x42\xc2\x67\xd6\ -\xa8\x35\xf3\xea\xfb\x59\x52\x20\xa2\x08\x4c\x8d\x3f\xed\x0c\x9c\ -\x85\x6b\x69\xe1\x24\x8c\x9f\x2e\x06\x47\xc6\x2f\x9a\xc2\xc3\x65\ -\x44\x15\x54\xb6\xa0\xbb\x2e\xb5\xcb\xe2\x92\x36\xf7\x4f\x4b\x08\ -\x99\x3d\x54\xf3\x28\x62\x71\x8b\x4c\x1c\x23\x15\xfb\x8b\xaa\xe6\ -\xdf\x47\x9c\x70\x79\x0c\xa0\xcc\xd2\xe9\x81\xa2\x05\x93\xcf\x3b\ -\x0d\x2d\xb2\x7d\x48\x9e\x42\xb2\x10\x0e\x3e\x81\xb6\xa9\x04\xe2\ -\xc9\x1b\x46\x14\x1a\xae\xc8\xa3\x1f\xa8\x95\x2d\xcf\x2c\x60\xa5\ -\x0c\x9e\xf1\xc7\x6b\x64\x58\xdb\x91\xb2\xe7\x81\xff\xa7\x8f\xf2\ -\xfb\xfa\x02\x61\xd1\xe9\xa8\x93\x9c\x52\x08\xe6\xc6\xe5\x51\x4b\ -\xb2\xac\x44\x32\x85\xa8\x45\x70\x03\x55\x7a\x26\x09\x3b\xe3\xeb\ -\xd5\xb1\x86\xeb\x05\xf0\x94\xa2\xc0\xec\x17\xed\x71\x78\x10\xf5\ -\xcd\xd9\x09\x8f\xac\x1b\x66\xe7\xd3\x22\xf2\xed\x28\xb6\x50\x9e\ -\x2b\x07\x0a\x02\x34\x1d\xcf\xcf\xdc\x8e\xa7\xc3\x44\x34\xf9\xb6\ -\x8a\xb1\xe0\xe7\x89\x46\xd4\xa2\x43\xbe\xa4\x79\x74\x58\x4a\xf7\ -\x85\xdb\x64\x5c\x77\x4c\xa7\x15\xc8\x60\x79\x39\x06\x0e\x20\xbc\ -\x76\x33\xfe\x41\x6e\x4a\x00\x66\x5b\x34\xbe\x3a\x3f\x14\x4d\x89\ -\x1e\x2a\x91\xa1\x6f\xc5\xc6\x52\x16\x56\xba\xa1\x25\xf4\xfe\x6e\ -\x51\xb8\x1b\x48\xda\x0e\xc9\xa9\x94\x58\x6e\xb7\x23\x09\xd0\x69\ -\xcf\x16\x0b\x60\xb5\x23\xe6\x28\x86\x42\x28\x5f\xd5\xbe\xc3\x3f\ -\x04\x81\x9a\xac\xe1\x29\x6b\x55\x73\xbe\x32\x2d\xb0\x33\x4e\x3a\ -\x58\x7c\xc3\x7e\x78\xf5\x07\x45\x57\xb0\xfa\x9e\xe5\x7c\x64\x80\ -\x51\xda\x9d\x51\x87\x54\x5c\xcd\x6b\x23\x03\x49\x42\xad\x60\xd8\ -\x70\xd3\xd2\x76\xf6\x83\x46\xb4\xa8\x1c\x17\xd6\xb8\xee\xd1\x4a\ -\x76\xb3\x18\x11\xec\x9d\x89\xa7\xe2\x09\xa1\x1d\x97\x14\x6b\x19\ -\x30\xb3\xfb\xb5\x9d\x71\x99\xcc\x52\x45\x80\x71\xea\x9e\x0d\x4a\ -\x2d\x53\x70\x02\xe2\xad\x62\xbc\x55\x59\x13\x1d\x88\x14\x8f\xd2\ -\x78\x36\x3b\xf6\x9d\x95\xf7\x05\x02\xae\x51\x12\x84\x72\xaf\x44\ -\x46\x64\x82\x62\xcc\x50\xf2\xa9\xed\xac\x37\x9e\x54\x8d\xa4\x53\ -\x8f\x4d\x24\x03\x3b\xe4\x42\x4d\xdd\x8a\x23\x9e\x24\xf0\x03\x10\ -\x38\x1e\xe3\x14\x9f\xad\x4d\x06\x2f\x95\x82\x90\x29\x15\xc1\xa3\ -\x08\x89\x80\x4f\xe6\x0a\xa1\xdd\x64\x8e\x53\x82\x3d\x10\xc1\x66\ -\x59\x9a\x33\x1e\xf0\xea\x0a\x64\x89\x3b\x95\x23\x4c\x6f\x71\x96\ -\x46\x04\xf0\x3b\xab\x20\x08\x63\x33\x56\xb3\xab\x24\xc8\xb1\x03\ -\xc3\xca\x25\xa0\x7e\xdc\xb4\x3d\x08\x61\xad\xf6\x26\xe1\xcf\x45\ -\xf8\xcc\xc2\x8a\xef\x61\x47\x15\x63\x10\xa2\xcc\x16\x7b\x06\x22\ -\x25\x91\xb2\xe7\x83\xb1\x67\x71\x35\x6b\x42\xe7\x93\x55\x74\x4e\ -\xc5\x55\xd6\xdf\x49\xc8\xca\x39\xc4\xd6\x6a\x16\xe2\x95\x51\xec\ -\x0e\xd2\x8f\x17\x3d\xda\x44\x8d\xad\xfb\xaa\x5a\x41\x73\x39\xa2\ -\x69\xd1\xdd\x0d\x88\x22\xee\x2c\xee\xe8\x5f\xce\x2c\x12\xfa\xbd\ -\x77\x39\x0d\x88\x44\x50\x3f\xbe\x2a\xd4\x99\x69\x2a\xac\xa8\xf0\ -\xa2\x90\xdd\x47\xba\xe9\xae\xa2\x1b\x9b\x6f\x27\x76\x43\x4c\xc0\ -\xa6\xc2\x2e\x95\x6c\x97\xde\x03\x3d\xb3\xd5\xa7\x1e\x9e\x23\x41\ -\xb7\x21\x68\x76\x46\x4d\x04\x64\x5f\x15\xe2\x88\xcd\x0e\x8b\x71\ -\x56\x62\x28\xc7\xe6\x9b\xe4\xe2\x45\x54\x7f\x15\x32\x24\x4d\xa7\ -\xf3\x82\x9d\x32\x31\x13\x53\xc6\x52\xb9\xd7\x3c\x77\xad\xc3\xf7\ -\xff\xb2\x55\xa4\x47\xa4\x99\x9b\xd5\xd9\xb5\xf2\x9e\x1d\xed\x2c\ -\x99\xf1\xa2\x54\x55\x2f\x42\x0d\x0a\x1e\x26\x18\xd8\x39\xf7\xf1\ -\xa4\xac\x86\xc1\xd3\xf5\x13\xcf\x78\x19\x79\x79\x96\xcc\x3d\x0e\ -\xd0\xa6\x11\x9b\x48\x39\xae\x4e\xda\x44\x83\xc8\x7c\x91\xb4\x7d\ -\xf8\x68\x3b\xe6\x9d\xc4\x97\x5b\xcc\x61\x30\xa8\x31\x16\x9b\xb9\ -\xdf\x8a\x45\xa4\x45\xa5\x6a\x31\x9c\xac\x15\xfb\x0c\xd2\x17\x6b\ -\xbd\x63\x10\x0d\x67\x91\xa2\xf5\xbd\xe1\x8a\x15\x5b\x19\x40\x24\ -\x5c\x38\xd0\x30\x48\xb9\x33\x9a\xd1\x1d\x12\xec\x25\xa9\x3a\x44\ -\xf9\x2a\x42\xa9\xb8\x83\x21\x43\x66\x90\xac\x0a\xe2\x87\x3d\x0e\ -\xc4\x24\x91\x57\xa4\x81\x04\xdf\xf7\x90\xbd\x52\xc1\x72\x78\x7b\ -\xf6\xc6\xe6\xa5\xd3\x83\xdc\x17\x05\xb9\xef\x4d\x81\xdc\x1b\x03\ -\x72\x6f\x3c\xc8\x93\x63\x41\xc6\x98\xb2\x44\x9c\x44\xa7\xba\x90\ -\x6a\xce\xed\x50\xde\x91\xee\x47\xb4\xc1\xa4\xa4\x6c\x12\x5e\x34\ -\xb9\x2a\xba\x74\xd1\xf5\x13\x7b\xa3\x59\xd8\xc3\xe0\xfb\x63\x59\ -\x42\x29\xa1\x80\xcd\x47\xeb\xb0\x38\xb4\x58\xa4\x22\x8c\xd8\xc6\ -\xc4\x8d\x41\x95\xe8\xe1\x08\xae\x0e\x50\x23\xb6\x5b\x94\xc5\x11\ -\x7a\xcc\xac\x5b\x29\x81\xd5\x6e\x17\xc4\x75\x8b\x22\x39\xdc\xeb\ -\x9e\x19\xf5\xea\x11\x51\xe4\xc8\x5a\xaf\x22\x06\x11\x17\x45\xf0\ -\xfb\x82\x64\x49\x67\x1c\x2e\x9e\x63\x16\x57\x81\xc9\x60\x44\x63\ -\xa7\x9b\x67\x84\x91\x94\x94\x8e\x78\x43\x3a\xfd\x71\x18\x94\x4b\ -\xa3\xa0\xf3\x23\xf4\x38\x2b\xe5\xda\x62\x8e\x8f\x48\x58\x9a\xbc\ -\xea\x5d\x60\x2a\x77\x6c\x8d\xfb\x86\x79\xb2\x1c\xed\xe2\xf8\xe1\ -\xc2\xa4\xf1\x35\x9a\xc2\x34\xb3\xe5\x82\xee\x84\x8b\x60\xc5\x31\ -\xa3\x01\xd7\x80\x9d\x38\x17\x3c\x9a\x5c\x0d\x88\xe8\x44\x4d\x63\ -\x29\x97\x03\xf2\x43\xca\xfd\x40\x08\xcb\x9b\x85\x49\xb2\x28\x54\ -\x31\x1b\xd2\x94\xd2\xb9\x1d\x42\x15\xd9\x13\x53\x6f\x35\x18\xda\ -\xb3\x5a\xb1\x84\x94\x04\x77\x8e\xc4\x6f\x31\x92\xdd\x1e\x39\x1c\ -\x2a\x2d\xa5\x9b\x3f\x68\x48\x4e\xec\xf7\x89\x32\x58\x0f\x11\xe5\ -\xd4\xf4\x5e\x05\xe6\x3b\xe9\xca\xb3\xe0\xd1\x75\x36\x2a\xdd\x4a\ -\x87\xd6\x1c\x3a\x6c\x8f\x8e\xd2\x6b\xd4\x02\xf7\x34\x6f\xe7\x17\ -\xee\x04\xf4\xff\xb0\x5c\x39\x32\x04\x33\x0c\xab\x21\x62\x78\x06\ -\xaa\xd5\xb9\x64\x0b\x06\xc0\xa2\xfb\x74\x3b\xfc\x0b\x4e\x8e\x26\ -\xfb\x94\x78\xde\x22\x5a\xe2\x8e\x8c\x84\x75\x8d\x7c\x9f\x29\x38\ -\x06\xc3\x83\xdb\x8e\xde\x17\x2d\x67\xdc\x25\xb8\x56\xe2\xb8\x2b\ -\xca\x79\xb7\x06\x4b\xe4\x89\xd8\xcd\xa1\x62\x25\xf6\x4a\x47\x2f\ -\x92\x09\x9e\x58\x10\x2e\x17\x12\xd5\xb2\x2c\x22\x24\x6e\x07\x50\ -\xf7\x43\x56\x0a\x07\x76\x90\xdd\xca\xe8\x4f\xa5\x15\xfb\x2c\x16\ -\xeb\x5f\xe0\x22\x76\xea\xb2\xe0\x35\x3d\x6b\x82\xae\x04\x1a\xa6\ -\x45\x43\xcf\x65\x61\x5a\x69\xd3\x28\xf5\xa0\x1d\xbb\xc3\x04\xeb\ -\xe4\xe1\x2b\x99\xc0\x0e\xc7\x23\x95\x1a\x1b\xe9\x0d\xd0\x42\xc1\ -\xe9\x16\xdf\x41\xa2\xcc\x90\xc4\xd5\xaa\x65\x10\x44\x5c\xa9\xda\ -\x2c\xa5\x82\xba\x26\x5c\x3a\x7d\x62\x4c\x15\xae\x8e\x36\x88\x34\ -\x33\x4b\x3c\xe3\xe6\x46\x09\x2c\xd5\xcc\x1e\xe5\xa4\x53\x4a\x49\ -\xe9\x05\x86\x7a\xac\x0b\x98\x4c\xb3\xf6\xec\x8d\xf9\x7d\x9f\xf2\ -\xfb\xbe\xc8\x70\xe4\xdb\x35\xe1\x97\x93\x86\xb3\xb7\xda\xe1\xec\ -\x4d\x3f\x1c\xd5\xb6\x9a\xb5\x37\x8a\xae\xfc\xb5\x26\xfc\x63\x12\ -\xba\xfb\xaa\x45\x77\x5f\x5a\x74\x17\x45\x02\xab\xea\x86\x12\x25\ -\x56\xa4\xb3\x0d\x21\x3c\x63\xd1\x1d\x02\xd3\x15\x39\x0f\x43\xee\ -\x33\x96\xb7\xa6\xf9\x95\x4f\x32\x42\x80\x20\x40\x38\xb2\x3c\xc8\ -\x46\x5d\x8d\x82\xff\x7f\x9f\x74\x4d\x6d\ -\x00\x00\xa8\x73\ -\x3c\ -\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ -\x00\x00\x09\x98\x00\x00\x00\x58\x00\x00\x9c\x40\x00\x00\x00\x59\ -\x00\x00\x9d\x07\x00\x00\x00\x5a\x00\x00\x9d\xae\x00\x00\x05\xd9\ -\x00\x00\x9c\xc7\x00\x00\x05\xda\x00\x00\x9c\xe7\x00\x00\x05\xea\ -\x00\x00\x9d\x8e\x00\x00\x07\x78\x00\x00\x6b\x8e\x00\x00\x48\x83\ -\x00\x00\x03\x3f\x00\x00\x48\x83\x00\x00\x71\xa4\x00\x00\x68\x34\ -\x00\x00\x66\x51\x00\x04\xa6\x79\x00\x00\x74\xdb\x00\x04\xbb\x04\ -\x00\x00\x0b\x64\x00\x04\xbb\x04\x00\x00\x79\x32\x00\x05\x30\x45\ -\x00\x00\x0d\x9d\x00\x05\x30\x45\x00\x00\x8a\x67\x00\x05\x46\xc5\ -\x00\x00\x0d\xca\x00\x05\x46\xc5\x00\x00\x8b\x01\x00\x05\x56\x45\ -\x00\x00\x44\xdf\x00\x05\x56\x45\x00\x00\x8b\x29\x00\x05\xac\xf4\ -\x00\x00\x18\x84\x00\x05\xb8\xfd\x00\x00\x99\xf4\x00\x05\xcf\xc7\ -\x00\x00\x9a\x8a\x00\x05\xe0\x85\x00\x00\x21\xc5\x00\x06\xab\x8c\ -\x00\x00\x67\xa7\x00\x10\x84\x49\x00\x00\x50\x25\x00\x12\x05\xba\ -\x00\x00\x96\x7c\x00\x16\xc6\xda\x00\x00\x7f\x88\x00\x2a\xa6\x79\ -\x00\x00\x6e\x2a\x00\x2b\xc4\xaf\x00\x00\x6f\x06\x00\x2b\xe0\x65\ -\x00\x00\x6f\x31\x00\x39\xdf\x33\x00\x00\x33\x4a\x00\x3d\xa1\x19\ -\x00\x00\x72\xb6\x00\x3e\x93\x83\x00\x00\x34\x7e\x00\x48\x8f\x7c\ -\x00\x00\x24\x63\x00\x4b\x66\x35\x00\x00\x30\x5a\x00\x4b\x66\x37\ -\x00\x00\x30\xa3\x00\x4b\x66\x39\x00\x00\x30\xec\x00\x4b\x87\xd4\ -\x00\x00\x78\x5d\x00\x57\x60\x54\x00\x00\x92\xd5\x00\x58\xfd\xf4\ -\x00\x00\x48\x24\x00\x59\x98\x25\x00\x00\x13\x9c\x00\x59\x98\x25\ -\x00\x00\x94\x1f\x00\x6a\x58\x9a\x00\x00\x8d\x21\x00\x79\xef\xd4\ -\x00\x00\x6b\xc6\x00\x7e\x7f\x0e\x00\x00\x62\xf2\x00\x8a\x23\x95\ -\x00\x00\x28\x03\x00\x8a\x23\x97\x00\x00\x28\x4d\x00\x8a\x23\x99\ -\x00\x00\x28\x97\x00\x91\xbc\xe9\x00\x00\x0d\xf7\x00\xa6\x37\x3f\ -\x00\x00\x26\xc8\x00\xaa\x80\x25\x00\x00\x77\xa3\x00\xc6\xe3\x6e\ -\x00\x00\x23\x1b\x00\xcb\xa8\x14\x00\x00\x6a\xa8\x00\xfc\x00\xca\ -\x00\x00\x86\x16\x01\x21\xd6\x39\x00\x00\x4f\x22\x01\x22\xb4\xf9\ -\x00\x00\x13\xcd\x01\x2f\x8e\x7e\x00\x00\x59\xba\x01\x48\xfe\xa3\ -\x00\x00\x34\xf8\x01\x53\xf3\xaa\x00\x00\x7c\xa0\x01\x56\x16\x4a\ -\x00\x00\x85\x93\x01\x67\x0d\x8a\x00\x00\x81\x23\x01\x69\x11\x7a\ -\x00\x00\x90\xee\x01\x82\x39\x0a\x00\x00\x8d\xb3\x01\x8b\x68\x75\ -\x00\x00\x99\x8d\x01\xa1\x7f\x63\x00\x00\x1b\x03\x01\xc1\xd9\xde\ -\x00\x00\x52\x4a\x01\xd2\x8f\xd3\x00\x00\x48\xd5\x01\xdf\x11\x43\ -\x00\x00\x05\x62\x01\xe2\xf4\x5a\x00\x00\x96\x17\x01\xfc\xae\xd3\ -\x00\x00\x6c\x07\x02\x05\xbe\x25\x00\x00\x76\x4c\x02\x46\x58\x0a\ -\x00\x00\x90\x4a\x02\x65\xad\x62\x00\x00\x9e\x7c\x02\x6e\x07\xe2\ -\x00\x00\x4b\x25\x02\x76\x24\x13\x00\x00\x39\x09\x02\x7d\xe0\x55\ -\x00\x00\x4b\xc1\x02\x94\x46\x1a\x00\x00\x8d\x64\x02\xa7\x2c\x15\ -\x00\x00\x04\x14\x02\xaa\x36\x95\x00\x00\x6d\xcb\x02\xb1\xf0\xba\ -\x00\x00\x82\xdc\x02\xbf\xaa\x8e\x00\x00\x37\x84\x02\xc0\x66\xf2\ -\x00\x00\x55\xe8\x02\xc8\x3f\xf5\x00\x00\x60\xe1\x02\xd9\xa4\xb9\ -\x00\x00\x66\x04\x02\xdb\x1a\x94\x00\x00\x06\xfb\x03\x01\x84\xc4\ -\x00\x00\x86\xc1\x03\x12\x97\x6a\x00\x00\x84\xce\x03\x1a\x14\x14\ -\x00\x00\x2e\x10\x03\x1a\x16\x59\x00\x00\x4c\x5b\x03\x2f\x1a\x6a\ -\x00\x00\x6f\xa4\x03\x7e\xca\xb5\x00\x00\x40\x66\x03\x88\x1f\xd4\ -\x00\x00\x41\x49\x03\x9e\x58\xa5\x00\x00\x00\x48\x03\xb3\x9e\xfa\ -\x00\x00\x8e\x4b\x03\xb5\xc8\x9a\x00\x00\x8f\x8b\x03\xbd\xd4\xe4\ -\x00\x00\x70\x49\x03\xc4\x3c\xf5\x00\x00\x72\x78\x03\xc5\xd5\x5e\ -\x00\x00\x09\x15\x03\xcb\x0d\xe5\x00\x00\x94\x4a\x03\xdc\x0c\xd4\ -\x00\x00\x6e\x86\x03\xf2\x70\x35\x00\x00\x2a\xe3\x03\xf2\xbd\x60\ -\x00\x00\x15\x07\x03\xfb\x0f\x04\x00\x00\x2d\xb2\x04\x21\x23\x23\ -\x00\x00\x1f\x67\x04\x56\x06\x93\x00\x00\x2b\xd7\x04\x60\x7c\x15\ -\x00\x00\x93\x2a\x04\x79\xef\x9a\x00\x00\x82\x67\x04\x82\x77\xf4\ -\x00\x00\x4b\x77\x04\x87\xf9\x9e\x00\x00\x87\xc8\x04\x8c\xd6\xae\ -\x00\x00\x5f\x48\x04\xa0\x8a\x25\x00\x00\x05\x2f\x04\xa0\x8a\x25\ -\x00\x00\x73\xe1\x04\xa4\x31\x5a\x00\x00\x89\xf5\x04\xa8\xeb\x85\ -\x00\x00\x31\x35\x04\xe1\x6e\xe3\x00\x00\x09\x93\x04\xe4\x0f\x75\ -\x00\x00\x02\xe1\x04\xeb\x41\xc3\x00\x00\x2b\x5a\x04\xef\xd9\xa8\ -\x00\x00\x47\x9c\x05\x03\x83\x95\x00\x00\x67\xe5\x05\x05\xcb\x13\ -\x00\x00\x3f\x32\x05\x0f\xf2\x74\x00\x00\x8c\x68\x05\x1b\x10\x59\ -\x00\x00\x42\xee\x05\x2a\xe5\x97\x00\x00\x49\xa3\x05\x44\x3b\x5f\ -\x00\x00\x69\xd0\x05\x5c\xd9\xc4\x00\x00\x0f\x36\x05\x5c\xd9\xc4\ -\x00\x00\x8b\x92\x05\x63\xf6\x93\x00\x00\x48\x65\x05\x65\xee\x65\ -\x00\x00\x7b\x16\x05\x87\xb0\xc3\x00\x00\x92\xfe\x05\x96\xa8\xa5\ -\x00\x00\x12\x5e\x05\x96\xa8\xa5\x00\x00\x93\xf5\x05\xad\x4b\xc3\ -\x00\x00\x40\xbe\x05\xb9\x03\xc8\x00\x00\x1c\x6a\x05\xbd\x0c\xba\ -\x00\x00\x7d\x47\x05\xbd\x8e\xde\x00\x00\x5d\x9c\x05\xbe\x56\x93\ -\x00\x00\x47\x2c\x05\xc5\x50\x04\x00\x00\x0b\x95\x05\xe5\x8e\x2e\ -\x00\x00\x10\x72\x05\xfb\xdc\x83\x00\x00\x3f\x94\x06\x1e\xe6\xb5\ -\x00\x00\x98\xcd\x06\x29\xee\xa9\x00\x00\x74\x0d\x06\x32\xe3\xe3\ -\x00\x00\x78\x86\x06\x57\x19\xf4\x00\x00\x00\x00\x06\x5a\xef\x15\ -\x00\x00\x6d\xf5\x06\x5b\xd2\xb5\x00\x00\x3b\xdf\x06\x6c\x88\x8e\ -\x00\x00\x3d\x5b\x06\x74\x1d\x55\x00\x00\x51\xb2\x06\x8b\x96\x44\ -\x00\x00\x0c\x43\x06\x97\x58\xc9\x00\x00\x4c\xe4\x06\xbc\x80\xa5\ -\x00\x00\x1c\x07\x06\xc9\xb8\x05\x00\x00\x70\xc3\x06\xe8\x05\x4e\ -\x00\x00\x06\x84\x06\xee\xaa\x57\x00\x00\x97\xda\x06\xf0\xcb\x25\ -\x00\x00\x19\xe9\x06\xfa\xff\xc3\x00\x00\x3f\xfe\x06\xfc\x1a\x14\ -\x00\x00\x32\x41\x06\xfc\xa0\x8a\x00\x00\x8c\xa3\x07\x08\x90\xe5\ -\x00\x00\x29\x62\x07\x0d\xb7\xf7\x00\x00\x36\xd1\x07\x0e\x86\x3e\ -\x00\x00\x1a\x52\x07\x35\x68\x6e\x00\x00\x16\x1c\x07\x35\xe8\x9a\ -\x00\x00\x91\x2f\x07\x44\x41\x2a\x00\x00\x7c\x0b\x07\x4a\x1f\x63\ -\x00\x00\x02\x10\x07\x4d\x73\x22\x00\x00\x8a\x8f\x07\x4e\xa6\xf2\ -\x00\x00\x79\x8d\x07\x58\xcb\xe8\x00\x00\x8a\xc7\x07\x63\xfe\x0e\ -\x00\x00\x11\x43\x07\x80\xc6\xb3\x00\x00\x9c\x08\x07\x88\x72\x5a\ -\x00\x00\x71\xc7\x07\xa3\xe4\x0e\x00\x00\x20\xf3\x07\xc1\xfc\x13\ -\x00\x00\x2c\xa2\x08\x27\xb4\xba\x00\x00\x8f\x2e\x08\x32\xc4\xaa\ -\x00\x00\x91\xe6\x08\x36\x74\x14\x00\x00\x22\xd4\x08\x44\xb9\x83\ -\x00\x00\x32\xbe\x08\x49\xc9\x30\x00\x00\x15\x51\x08\x61\x7c\xb3\ -\x00\x00\x1c\x9d\x08\xa2\xca\x67\x00\x00\x4c\x11\x08\xa3\xe0\x33\ -\x00\x00\x75\x01\x08\xb1\x15\x28\x00\x00\x2d\x47\x08\xb4\x04\x04\ -\x00\x00\x93\x6c\x08\xd0\x32\xf4\x00\x00\x79\x5e\x08\xd4\xcd\x69\ -\x00\x00\x79\xcd\x08\xe1\x9b\xbe\x00\x00\x19\x2d\x08\xe1\xc1\xfa\ -\x00\x00\x7b\x57\x08\xeb\x8d\x7a\x00\x00\x9b\xbb\x09\x20\xda\x24\ -\x00\x00\x9d\x24\x09\x20\xda\xb4\x00\x00\x9d\xcb\x09\x20\xda\xd4\ -\x00\x00\x9c\x5d\x09\x4d\x96\xd9\x00\x00\x23\xaa\x09\x65\xda\x8a\ -\x00\x00\x7f\x17\x09\x68\x0d\x29\x00\x00\x88\xe2\x09\x71\x8d\x25\ -\x00\x00\x06\x42\x09\x75\x23\x14\x00\x00\x6f\x5a\x09\x76\xed\x34\ -\x00\x00\x62\x0a\x09\x86\xa6\x05\x00\x00\x21\xf0\x09\x8b\x23\xba\ -\x00\x00\x92\x37\x09\x9e\xfd\x7e\x00\x00\x62\x54\x09\xb6\x2a\x63\ -\x00\x00\x31\xa3\x09\xcd\x1c\x55\x00\x00\x94\x82\x09\xd2\x21\xea\ -\x00\x00\x5a\xbb\x09\xe5\x23\x0e\x00\x00\x54\xe9\x09\xec\x2b\x45\ -\x00\x00\x0b\xf9\x09\xef\x33\xa3\x00\x00\x17\x0f\x09\xf0\x1f\x6e\ -\x00\x00\x03\x66\x09\xfd\x45\x1a\x00\x00\x8d\xfe\x0a\x09\xc1\x7a\ -\x00\x00\x90\x99\x0a\x28\x9a\x65\x00\x00\x4a\x38\x0a\x28\x9a\x67\ -\x00\x00\x4a\x87\x0a\x28\x9a\x69\x00\x00\x4a\xd6\x0a\x2d\xbe\xe4\ -\x00\x00\x2e\x79\x0a\x35\xa9\xfa\x00\x00\x83\x58\x0a\x3f\x27\x74\ -\x00\x00\x76\x96\x0a\x3f\x6b\x05\x00\x00\x76\xd1\x0a\x49\xa5\x4a\ -\x00\x00\x99\x08\x0a\x60\xe0\x15\x00\x00\x24\xa4\x0a\x60\xe0\x17\ -\x00\x00\x25\x07\x0a\x60\xe0\x19\x00\x00\x25\x6a\x0a\x65\x9b\xea\ -\x00\x00\x8b\xc4\x0a\x78\x05\x80\x00\x00\x01\x4d\x0a\x7f\x8f\x65\ -\x00\x00\x3a\x2e\x0a\x98\x86\x18\x00\x00\x28\xe1\x0a\x99\x5c\xaa\ -\x00\x00\x92\x87\x0a\xa8\x16\x95\x00\x00\x12\x1f\x0a\xa9\x89\xec\ -\x00\x00\x41\xa6\x0a\xc8\x5c\x59\x00\x00\x0f\x6f\x0a\xd0\x50\xb8\ -\x00\x00\x6e\x57\x0a\xd0\xe6\xf5\x00\x00\x16\xcc\x0a\xd6\xf1\xfa\ -\x00\x00\x78\xc1\x0a\xeb\x91\x88\x00\x00\x61\x75\x0b\x07\x78\x8a\ -\x00\x00\x7e\x76\x0b\x1b\xe0\x73\x00\x00\x4d\x52\x0b\x24\x9d\xb4\ -\x00\x00\x4e\x43\x0b\x24\xc5\xc9\x00\x00\x12\x8f\x0b\x26\x7e\x0e\ -\x00\x00\x75\xbe\x0b\x2b\x50\xfa\x00\x00\x81\xc4\x0b\x2d\xb3\xf9\ -\x00\x00\x65\x68\x0b\x37\x73\x69\x00\x00\x9a\xae\x0b\x40\x40\x3e\ -\x00\x00\x43\x50\x0b\x43\xcd\x19\x00\x00\x42\x20\x0b\x66\x28\xd2\ -\x00\x00\x61\x2e\x0b\x88\xe0\x07\x00\x00\x0a\x8a\x0b\x94\x44\xc5\ -\x00\x00\x2e\xe4\x0b\xc2\x99\x6a\x00\x00\x7d\xbb\x0b\xd3\x27\xae\ -\x00\x00\x04\x4e\x0b\xd4\x7e\x9e\x00\x00\x0a\xc1\x0b\xf5\xee\x53\ -\x00\x00\x8b\x51\x0c\x06\x50\x2e\x00\x00\x0c\xd0\x0c\x08\x46\x23\ -\x00\x00\x77\x5c\x0c\x19\xfa\x99\x00\x00\x7a\x5d\x0c\x28\x9b\x45\ -\x00\x00\x6e\xd3\x0c\x31\x7e\x4a\x00\x00\x8e\x90\x0c\x38\x4d\xe5\ -\x00\x00\x07\x40\x0c\x3a\x16\xd0\x00\x00\x18\x00\x0c\x5a\xc0\xc8\ -\x00\x00\x72\x46\x0c\x6e\x87\xf5\x00\x00\x20\xb8\x0c\x91\xa0\x7a\ -\x00\x00\x98\x74\x0c\x96\x90\x59\x00\x00\x42\x83\x0c\xca\xdd\xfa\ -\x00\x00\x96\xe2\x0c\xd6\xef\x12\x00\x00\x2c\x47\x0c\xde\x99\x49\ -\x00\x00\x65\xb4\x0c\xf0\xde\xaa\x00\x00\x80\x85\x0d\x1c\xf6\xee\ -\x00\x00\x2a\x25\x0d\x3a\x6c\xba\x00\x00\x8e\xdc\x0d\x45\xe2\x6a\ -\x00\x00\x95\xa8\x0d\x59\xa1\x45\x00\x00\x77\xd5\x0d\x5a\xad\x33\ -\x00\x00\x71\x43\x0d\x5e\xe7\x6e\x00\x00\x25\xcd\x0d\x64\xa5\xd9\ -\x00\x00\x58\xe6\x0d\x6d\xf8\xf4\x00\x00\x08\x01\x0d\x76\xb5\x92\ -\x00\x00\x2a\x7b\x0d\x9b\xec\xc9\x00\x00\x51\x41\x0d\xa5\xd9\x94\ -\x00\x00\x29\xcc\x0d\xa6\xda\xa4\x00\x00\x44\x75\x0d\xc6\xc6\x2a\ -\x00\x00\x91\x8a\x0d\xf2\x39\xba\x00\x00\x84\x0b\x0e\x2b\x04\x15\ -\x00\x00\x75\x7d\x0e\x2c\xe4\x2a\x00\x00\x95\x45\x0e\x4e\xcc\xc5\ -\x00\x00\x09\x54\x0e\x6f\x9a\x1a\x00\x00\x97\x6c\x0e\x7b\x7a\x2c\ -\x00\x00\x2f\xda\x0e\x8f\x6a\x37\x00\x00\x34\x28\x0e\x91\x65\xf5\ -\x00\x00\x18\xb1\x0e\xca\xd7\x34\x00\x00\x1e\x59\x0e\xcd\x1c\x55\ -\x00\x00\x94\xc3\x0e\xcd\x1c\x65\x00\x00\x95\x04\x0e\xea\xe5\x03\ -\x00\x00\x6c\x96\x0e\xed\xe1\xf9\x00\x00\x45\x1f\x0f\x07\x8d\xe3\ -\x00\x00\x6d\x2a\x0f\x17\x82\x4e\x00\x00\x00\xfb\x0f\x1f\x8d\xa5\ -\x00\x00\x75\x39\x0f\x4f\x75\x3a\x00\x00\x9e\x35\x0f\x5f\xca\xd5\ -\x00\x00\x2f\x53\x0f\x75\xb0\x54\x00\x00\x77\x0c\x0f\x77\xc3\xb4\ -\x00\x00\x66\x8c\x0f\x89\x0b\xbe\x00\x00\x45\x7d\x0f\x8f\xa8\xa7\ -\x00\x00\x17\xb3\x0f\x98\x0a\x39\x00\x00\x9a\x1a\x0f\x9e\xec\xa0\ -\x00\x00\x11\x7a\x0f\xbf\x87\xa3\x00\x00\x89\xab\x0f\xcd\xce\x95\ -\x00\x00\x33\xba\x0f\xdf\x21\x05\x00\x00\x22\x7d\x0f\xf6\x06\x1e\ -\x00\x00\x1e\xb3\x0f\xf6\x29\x0a\x00\x00\x70\xf5\x0f\xf7\x77\xaa\ -\x00\x00\x80\x06\x0f\xfb\x5f\xae\x00\x00\x76\x08\x69\x00\x00\x9e\ -\xc1\x03\x00\x00\x00\x1c\x00\x4c\x00\x65\x00\x67\x00\x67\x00\x20\ -\x00\x74\x00\x69\x00\x6c\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\ -\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x41\x64\x64\x20\ -\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\ -\x41\x64\x64\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x68\x00\x4c\ -\x00\x65\x00\x67\x00\x67\x00\x65\x00\x72\x00\x20\x00\x74\x00\x69\ -\x00\x6c\x00\x20\x00\x65\x00\x74\x00\x20\x00\x70\x00\x75\x00\x6e\ -\x00\x6b\x00\x74\x00\x20\x00\x70\x00\xe5\x00\x20\x00\x65\x00\x6e\ -\x00\x20\x00\x65\x00\x6b\x00\x73\x00\x69\x00\x73\x00\x74\x00\x65\ -\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x74\x00\x72\ -\x00\xe5\x00\x64\x00\x2f\x00\x20\x00\x62\x00\x73\x00\x70\x00\x6c\ -\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\ -\x41\x64\x64\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x74\x6f\x20\ -\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x77\x69\x72\x65\ -\x2f\x62\x73\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x0e\x44\x72\x61\ -\x66\x74\x5f\x41\x64\x64\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\ -\x1e\x00\x41\x00\x64\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ -\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x2e\x00\x2e\x00\x2e\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x41\x64\x64\x20\x74\x6f\x20\ -\x67\x72\x6f\x75\x70\x2e\x2e\x2e\x07\x00\x00\x00\x10\x44\x72\x61\ -\x66\x74\x5f\x41\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\x01\x03\x00\ -\x00\x00\x6e\x00\x4c\x00\x65\x00\x67\x00\x67\x00\x65\x00\x72\x00\ -\x20\x00\x74\x00\x69\x00\x6c\x00\x20\x00\x76\x00\x61\x00\x6c\x00\ -\x67\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x6b\x00\x74\x00\x28\x00\x65\x00\x72\x00\x29\x00\x20\x00\x74\x00\ -\x69\x00\x6c\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x6b\x00\ -\x73\x00\x69\x00\x73\x00\x74\x00\x65\x00\x72\x00\x65\x00\x6e\x00\ -\x64\x00\x65\x00\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\ -\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x41\x64\x64\x73\x20\ -\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ -\x65\x63\x74\x28\x73\x29\x20\x74\x6f\x20\x61\x6e\x20\x65\x78\x69\ -\x73\x74\x69\x6e\x67\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x10\ -\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\ -\x01\x03\x00\x00\x00\x74\x00\x4c\x00\x65\x00\x67\x00\x67\x00\x20\ -\x00\x74\x00\x69\x00\x6c\x00\x20\x00\x67\x00\x6a\x00\x65\x00\x6c\ -\x00\x64\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x69\ -\x00\x6e\x00\x6a\x00\x65\x00\x62\x00\x72\x00\x65\x00\x64\x00\x64\ -\x00\x65\x00\x20\x00\x6f\x00\x67\x00\x20\x00\x66\x00\x61\x00\x72\ -\x00\x67\x00\x65\x00\x20\x00\x70\x00\xe5\x00\x20\x00\x76\x00\x61\ -\x00\x6c\x00\x67\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\ -\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x38\x41\x70\x70\x6c\x69\x65\x73\x20\x63\x75\x72\x72\ -\x65\x6e\x74\x20\x6c\x69\x6e\x65\x20\x77\x69\x64\x74\x68\x20\x61\ -\x6e\x64\x20\x63\x6f\x6c\x6f\x72\x20\x74\x6f\x20\x73\x65\x6c\x65\ -\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\ -\x10\x44\x72\x61\x66\x74\x5f\x41\x70\x70\x6c\x79\x53\x74\x79\x6c\ -\x65\x01\x03\x00\x00\x00\x26\x00\x42\x00\x72\x00\x75\x00\x6b\x00\ -\x20\x00\x67\x00\x6a\x00\x65\x00\x6c\x00\x64\x00\x65\x00\x6e\x00\ -\x64\x00\x65\x00\x20\x00\x73\x00\x74\x00\x69\x00\x6c\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x13\x41\x70\x70\x6c\x79\x20\x43\x75\x72\ -\x72\x65\x6e\x74\x20\x53\x74\x79\x6c\x65\x07\x00\x00\x00\x10\x44\ -\x72\x61\x66\x74\x5f\x41\x70\x70\x6c\x79\x53\x74\x79\x6c\x65\x01\ -\x03\x00\x00\x00\x06\x00\x42\x00\x75\x00\x65\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x03\x41\x72\x63\x07\x00\x00\x00\x09\x44\x72\x61\ -\x66\x74\x5f\x41\x72\x63\x01\x03\x00\x00\x00\x60\x00\x4c\x00\x61\ -\x00\x67\x00\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x62\ -\x00\x75\x00\x65\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\ -\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x67\ -\x00\x6e\x00\x65\x00\x74\x00\x20\x00\x2f\x00\x20\x00\x53\x00\x48\ -\x00\x49\x00\x46\x00\x54\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ -\x00\xe5\x00\x20\x00\x6c\x00\xe5\x00\x73\x00\x65\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\ -\x20\x61\x72\x63\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ -\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\ -\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x09\x44\x72\x61\x66\x74\ -\x5f\x41\x72\x63\x01\x03\x00\x00\x00\x10\x00\x42\x00\x2d\x00\x53\ -\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x08\x42\x2d\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\ -\x0d\x44\x72\x61\x66\x74\x5f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\ -\x00\x00\x00\x7c\x00\x4c\x00\x61\x00\x67\x00\x65\x00\x72\x00\x20\ -\x00\x65\x00\x6e\x00\x20\x00\x66\x00\x6c\x00\x65\x00\x72\x00\x70\ -\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x20\x00\x62\x00\x2d\x00\x73\ -\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x2e\x00\x20\x00\x43\ -\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ -\x00\x6d\x00\x61\x00\x67\x00\x6e\x00\x65\x00\x74\x00\x2f\x00\x20\ -\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x66\x00\x6f\ -\x00\x72\x00\x20\x00\xe5\x00\x20\x00\x6c\x00\xe5\x00\x73\x00\x65\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\x43\x72\x65\x61\x74\x65\ -\x73\x20\x61\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\x70\x6f\x69\ -\x6e\x74\x20\x62\x2d\x73\x70\x6c\x69\x6e\x65\x2e\x20\x43\x54\x52\ -\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\ -\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\ -\x00\x0d\x44\x72\x61\x66\x74\x5f\x42\x53\x70\x6c\x69\x6e\x65\x01\ -\x03\x00\x00\x00\x0c\x00\x53\x00\x69\x00\x72\x00\x6b\x00\x65\x00\ -\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\x69\x72\x63\x6c\ -\x65\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x43\x69\x72\x63\ -\x6c\x65\x01\x03\x00\x00\x00\x82\x00\x4c\x00\x61\x00\x67\x00\x65\ -\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x69\x00\x72\ -\x00\x6b\x00\x65\x00\x6c\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\ -\x00\x4c\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6d\x00\x61\ -\x00\x67\x00\x6e\x00\x65\x00\x74\x00\x2f\x00\x20\x00\x41\x00\x4c\ -\x00\x54\x00\x20\x00\x76\x00\x65\x00\x6c\x00\x67\x00\x65\x00\x72\ -\x00\x20\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x65\x00\x6e\x00\x74\ -\x00\x20\x00\x74\x00\x69\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\ -\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x3d\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x69\ -\x72\x63\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ -\x61\x70\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\ -\x74\x20\x74\x61\x6e\x67\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\ -\x73\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x43\x69\x72\x63\ -\x6c\x65\x01\x03\x00\x00\x00\x14\x00\x4c\x00\x75\x00\x6b\x00\x6b\ -\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x6a\x00\x65\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0a\x43\x6c\x6f\x73\x65\x20\x4c\x69\x6e\x65\ -\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\x73\x65\ -\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x38\x00\x4c\x00\x75\x00\x6b\ -\x00\x6b\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x6a\ -\x00\x61\x00\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\x62\x00\x6c\ -\x00\x69\x00\x72\x00\x20\x00\x74\x00\x65\x00\x67\x00\x6e\x00\x65\ -\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x43\x6c\x6f\x73\ -\x65\x73\x20\x74\x68\x65\x20\x6c\x69\x6e\x65\x20\x62\x65\x69\x6e\ -\x67\x20\x64\x72\x61\x77\x6e\x07\x00\x00\x00\x0f\x44\x72\x61\x66\ -\x74\x5f\x43\x6c\x6f\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\ -\x16\x00\x46\x00\x6a\x00\x65\x00\x72\x00\x6e\x00\x20\x00\x70\x00\ -\x75\x00\x6e\x00\x6b\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0c\x52\x65\x6d\x6f\x76\x65\x20\x50\x6f\x69\x6e\x74\x07\x00\x00\ -\x00\x0e\x44\x72\x61\x66\x74\x5f\x44\x65\x6c\x50\x6f\x69\x6e\x74\ -\x01\x03\x00\x00\x00\x6e\x00\x46\x00\x6a\x00\x65\x00\x72\x00\x6e\ -\x00\x65\x00\x72\x00\x20\x00\x65\x00\x74\x00\x20\x00\x70\x00\x75\ -\x00\x6e\x00\x6b\x00\x74\x00\x20\x00\x66\x00\x72\x00\x61\x00\x20\ -\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x6b\x00\x73\x00\x69\x00\x73\ -\x00\x74\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\ -\x00\x74\x00\x72\x00\xe5\x00\x64\x00\x20\x00\x65\x00\x6c\x00\x6c\ -\x00\x65\x00\x72\x00\x20\x00\x62\x00\x73\x00\x70\x00\x6c\x00\x69\ -\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x52\x65\ -\x6d\x6f\x76\x65\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x66\x72\ -\x6f\x6d\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x77\ -\x69\x72\x65\x20\x6f\x72\x20\x62\x73\x70\x6c\x69\x6e\x65\x07\x00\ -\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x44\x65\x6c\x50\x6f\x69\x6e\ -\x74\x01\x03\x00\x00\x00\xa2\x00\x4c\x00\x61\x00\x67\x00\x65\x00\ -\x72\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x6d\x00\ -\x65\x00\x6e\x00\x73\x00\x6a\x00\x6f\x00\x6e\x00\x2e\x00\x20\x00\ -\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ -\x20\x00\x6d\x00\x61\x00\x67\x00\x6e\x00\x65\x00\x74\x00\x2f\x00\ -\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x66\x00\ -\x6f\x00\x72\x00\x20\x00\xe5\x00\x20\x00\x6c\x00\xe5\x00\x73\x00\ -\x65\x00\x2f\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x66\x00\ -\x6f\x00\x72\x00\x20\x00\xe5\x00\x20\x00\x76\x00\x65\x00\x6c\x00\ -\x67\x00\x65\x00\x20\x00\x65\x00\x74\x00\x20\x00\x73\x00\x65\x00\ -\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x4e\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x64\x69\x6d\ -\x65\x6e\x73\x69\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\ -\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\ -\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\ -\x20\x73\x65\x6c\x65\x63\x74\x20\x61\x20\x73\x65\x67\x6d\x65\x6e\ -\x74\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x69\x6d\x65\ -\x6e\x73\x69\x6f\x6e\x01\x03\x00\x00\x00\x12\x00\x44\x00\x69\x00\ -\x6d\x00\x65\x00\x6e\x00\x73\x00\x6a\x00\x6f\x00\x6e\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x09\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ -\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\ -\x73\x69\x6f\x6e\x01\x03\x00\x00\x00\x12\x00\x4e\x00\x65\x00\x64\ -\x00\x67\x00\x72\x00\x61\x00\x64\x00\x65\x00\x72\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x09\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x07\ -\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\ -\x61\x64\x65\x01\x03\x00\x00\x00\x8e\x00\x45\x00\x6b\x00\x73\x00\ -\x70\x00\x6c\x00\x6f\x00\x64\x00\x65\x00\x72\x00\x65\x00\x72\x00\ -\x20\x00\x64\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x67\x00\ -\x74\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ -\x74\x00\x65\x00\x6e\x00\x65\x00\x20\x00\x69\x00\x20\x00\x65\x00\ -\x6e\x00\x6b\x00\x6c\x00\x65\x00\x72\x00\x65\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x72\x00\x20\x00\ -\x65\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x66\x00\x6a\x00\ -\x65\x00\x72\x00\x6e\x00\x65\x00\x72\x00\x20\x00\x66\x00\x6c\x00\ -\x61\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x45\x45\x78\x70\x6c\x6f\x64\x65\x73\x20\x74\x68\x65\x20\x73\x65\ -\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\ -\x6e\x74\x6f\x20\x73\x69\x6d\x70\x6c\x65\x72\x20\x6f\x62\x6a\x65\ -\x63\x74\x73\x2c\x20\x6f\x72\x20\x73\x75\x62\x74\x72\x61\x63\x74\ -\x20\x66\x61\x63\x65\x73\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\ -\x5f\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x0e\ -\x00\x54\x00\x65\x00\x67\x00\x6e\x00\x69\x00\x6e\x00\x67\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x07\x44\x72\x61\x77\x69\x6e\x67\x07\ -\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x44\x72\x61\x77\x69\x6e\ -\x67\x01\x03\x00\x00\x00\x54\x00\x53\x00\x65\x00\x74\x00\x74\x00\ -\x65\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x76\x00\x61\x00\ -\x6c\x00\x67\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x6b\x00\x74\x00\x65\x00\x6e\x00\x65\x00\x20\x00\x70\x00\ -\xe5\x00\x20\x00\x65\x00\x74\x00\x20\x00\x74\x00\x65\x00\x67\x00\ -\x6e\x00\x65\x00\x61\x00\x72\x00\x6b\x00\x2e\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x2d\x50\x75\x74\x73\x20\x74\x68\x65\x20\x73\x65\ -\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x6f\ -\x6e\x20\x61\x20\x44\x72\x61\x77\x69\x6e\x67\x20\x73\x68\x65\x65\ -\x74\x2e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x44\x72\x61\ -\x77\x69\x6e\x67\x01\x03\x00\x00\x00\x0e\x00\x52\x00\x65\x00\x64\ -\x00\x69\x00\x67\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\ -\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\x2e\x00\x52\x00\x65\x00\ -\x64\x00\x69\x00\x67\x00\x65\x00\x72\x00\x65\x00\x72\x00\x20\x00\ -\x61\x00\x6b\x00\x74\x00\x69\x00\x76\x00\x74\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x17\x45\x64\x69\x74\x73\x20\x74\x68\x65\x20\x61\x63\x74\ -\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x0a\x44\ -\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\x1a\x00\ -\x41\x00\x76\x00\x73\x00\x6c\x00\x75\x00\x74\x00\x74\x00\x20\x00\ -\x6c\x00\x69\x00\x6e\x00\x6a\x00\x65\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0b\x46\x69\x6e\x69\x73\x68\x20\x6c\x69\x6e\x65\x07\x00\ -\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\x69\x73\x68\x4c\ -\x69\x6e\x65\x01\x03\x00\x00\x00\x46\x00\x41\x00\x76\x00\x73\x00\ -\x6c\x00\x75\x00\x74\x00\x74\x00\x65\x00\x72\x00\x20\x00\x65\x00\ -\x6e\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x6a\x00\x65\x00\x20\x00\ -\x75\x00\x74\x00\x65\x00\x6e\x00\x20\x00\xe5\x00\x20\x00\x6c\x00\ -\x75\x00\x6b\x00\x6b\x00\x65\x00\x20\x00\x64\x00\x65\x00\x6e\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x22\x46\x69\x6e\x69\x73\x68\x65\ -\x73\x20\x61\x20\x6c\x69\x6e\x65\x20\x77\x69\x74\x68\x6f\x75\x74\ -\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\x07\x00\x00\x00\x10\ -\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\x69\x73\x68\x4c\x69\x6e\x65\ -\x01\x03\x00\x00\x00\x76\x00\x4c\x00\x61\x00\x67\x00\x65\x00\x72\ -\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x32\x00\x2d\x00\x70\x00\x75\ -\x00\x6e\x00\x6b\x00\x74\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x6e\ -\x00\x6a\x00\x65\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\ -\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x67\ -\x00\x6e\x00\x65\x00\x74\x00\x20\x00\x2f\x00\x20\x00\x53\x00\x48\ -\x00\x49\x00\x46\x00\x54\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ -\x00\xe5\x00\x20\x00\x6c\x00\xe5\x00\x73\x00\x65\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x38\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ -\x32\x2d\x70\x6f\x69\x6e\x74\x20\x6c\x69\x6e\x65\x2e\x20\x43\x54\ -\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\ -\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\ -\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4c\x69\x6e\x65\x01\x03\x00\ -\x00\x00\x0a\x00\x4c\x00\x69\x00\x6e\x00\x6a\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x0a\ -\x44\x72\x61\x66\x74\x5f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x0a\ -\x00\x46\x00\x6c\x00\x79\x00\x74\x00\x74\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x04\x4d\x6f\x76\x65\x07\x00\x00\x00\x0a\x44\x72\x61\ -\x66\x74\x5f\x4d\x6f\x76\x65\x01\x03\x00\x00\x00\xc6\x00\x46\x00\ -\x6c\x00\x79\x00\x74\x00\x74\x00\x65\x00\x72\x00\x20\x00\x64\x00\ -\x65\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x67\x00\x74\x00\x65\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\ -\x6e\x00\x65\x00\x20\x00\x6d\x00\x65\x00\x6c\x00\x6c\x00\x6f\x00\ -\x6d\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x75\x00\x6e\x00\ -\x6b\x00\x74\x00\x65\x00\x72\x00\x2e\x00\x20\x00\x43\x00\x54\x00\ -\x52\x00\x4c\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6d\x00\ -\x61\x00\x67\x00\x6e\x00\x65\x00\x74\x00\x2f\x00\x20\x00\x53\x00\ -\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ -\x20\x00\xe5\x00\x20\x00\x6c\x00\xe5\x00\x73\x00\x65\x00\x2f\x00\ -\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ -\x20\x00\xe5\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\ -\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5a\x4d\x6f\x76\ -\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ -\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\ -\x32\x20\x70\x6f\x69\x6e\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\ -\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\ -\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\ -\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0a\x44\x72\x61\x66\ -\x74\x5f\x4d\x6f\x76\x65\x01\x03\x00\x00\x00\x12\x00\x41\x00\x76\ -\x00\x73\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\ -\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x4f\x66\x66\x73\x65\x74\x01\ -\x03\x00\x00\x00\x9a\x00\x46\x00\x6f\x00\x72\x00\x73\x00\x6b\x00\ -\x79\x00\x76\x00\x65\x00\x72\x00\x20\x00\x61\x00\x6b\x00\x74\x00\ -\x69\x00\x76\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x6b\x00\x74\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ -\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x67\x00\ -\x6e\x00\x65\x00\x74\x00\x2f\x00\x20\x00\x53\x00\x48\x00\x49\x00\ -\x46\x00\x54\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\xe5\x00\ -\x20\x00\x6c\x00\xe5\x00\x73\x00\x65\x00\x2f\x00\x20\x00\x41\x00\ -\x4c\x00\x54\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\xe5\x00\ -\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x72\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x48\x4f\x66\x66\x73\x65\x74\x73\ -\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\ -\x63\x74\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\ -\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\ -\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\ -\x79\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x4f\x66\x66\x73\ -\x65\x74\x01\x03\x00\x00\x00\x74\x00\x4c\x00\x61\x00\x67\x00\x65\ -\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x6e\ -\x00\x6c\x00\x69\x00\x67\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\ -\x00\x67\x00\x6f\x00\x6e\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\ -\x00\x4c\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6d\x00\x61\ -\x00\x67\x00\x6e\x00\x65\x00\x74\x00\x2f\x00\x20\x00\x53\x00\x48\ -\x00\x49\x00\x46\x00\x54\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ -\x00\xe5\x00\x20\x00\x6c\x00\xe5\x00\x73\x00\x65\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x3b\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ -\x72\x65\x67\x75\x6c\x61\x72\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x2e\ -\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\ -\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\ -\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x50\x6f\x6c\x79\ -\x67\x6f\x6e\x01\x03\x00\x00\x00\x0e\x00\x50\x00\x6f\x00\x6c\x00\ -\x79\x00\x67\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x07\x50\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\ -\x66\x74\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\x03\x00\x00\x00\x58\ -\x00\x4c\x00\x61\x00\x67\x00\x65\x00\x72\x00\x20\x00\x65\x00\x74\ -\x00\x20\x00\x32\x00\x2d\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\ -\x00\x73\x00\x20\x00\x72\x00\x65\x00\x6b\x00\x74\x00\x61\x00\x6e\ -\x00\x67\x00\x65\x00\x6c\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\ -\x00\x4c\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6d\x00\x61\ -\x00\x67\x00\x6e\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x29\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x32\x2d\x70\x6f\ -\x69\x6e\x74\x20\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\x2e\x20\x43\ -\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x07\x00\x00\x00\x0f\ -\x44\x72\x61\x66\x74\x5f\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\ -\x03\x00\x00\x00\x12\x00\x52\x00\x65\x00\x6b\x00\x74\x00\x61\x00\ -\x6e\x00\x67\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x09\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x0f\x44\ -\x72\x61\x66\x74\x5f\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\ -\x00\x00\x00\x0a\x00\x52\x00\x6f\x00\x74\x00\x65\x00\x72\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x06\x52\x6f\x74\x61\x74\x65\x07\x00\ -\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\x01\ -\x03\x00\x00\x00\x9a\x00\x52\x00\x6f\x00\x74\x00\x65\x00\x72\x00\ -\x65\x00\x72\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x67\x00\x74\x00\ -\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ -\x65\x00\x72\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ -\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x67\x00\ -\x6e\x00\x65\x00\x74\x00\x2f\x00\x20\x00\x53\x00\x4b\x00\x49\x00\ -\x46\x00\x54\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\xe5\x00\ -\x20\x00\x6c\x00\xe5\x00\x73\x00\x65\x00\x2f\x00\x20\x00\x41\x00\ -\x4c\x00\x54\x00\x20\x00\x6c\x00\x61\x00\x67\x00\x65\x00\x72\x00\ -\x20\x00\x65\x00\x6e\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x6f\x74\x61\x74\x65\x73\ -\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ -\x6a\x65\x63\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\ -\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\ -\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x63\x72\x65\ -\x61\x74\x65\x73\x20\x61\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0c\ -\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\x01\x03\x00\x00\ -\x00\x0c\x00\x53\x00\x6b\x00\x61\x00\x6c\x00\x65\x00\x72\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x07\x00\x00\ -\x00\x0b\x44\x72\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\x01\x03\x00\ -\x00\x00\xbe\x00\x53\x00\x6b\x00\x61\x00\x6c\x00\x65\x00\x72\x00\ -\x65\x00\x72\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x67\x00\x74\x00\ -\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ -\x65\x00\x72\x00\x20\x00\x66\x00\x72\x00\x61\x00\x20\x00\x65\x00\ -\x74\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x70\x00\x75\x00\ -\x6e\x00\x6b\x00\x74\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\ -\x4c\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6d\x00\x61\x00\ -\x67\x00\x6e\x00\x65\x00\x74\x00\x2f\x00\x20\x00\x53\x00\x48\x00\ -\x49\x00\x46\x00\x54\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\ -\xe5\x00\x20\x00\x6c\x00\xe5\x00\x73\x00\x65\x00\x2f\x00\x20\x00\ -\x41\x00\x4c\x00\x54\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\ -\xe5\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x72\x00\ -\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5c\x53\x63\x61\x6c\x65\ -\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ -\x62\x6a\x65\x63\x74\x73\x20\x66\x72\x6f\x6d\x20\x61\x20\x62\x61\ -\x73\x65\x20\x70\x6f\x69\x6e\x74\x2e\x20\x43\x54\x52\x4c\x20\x74\ -\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\ -\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\ -\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0b\x44\x72\x61\x66\ -\x74\x5f\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\x18\x00\x53\x00\ -\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x67\x00\x72\x00\ -\x6f\x00\x75\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\ -\x65\x6c\x65\x63\x74\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x11\ -\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x47\x72\x6f\x75\ -\x70\x01\x03\x00\x00\x00\x6e\x00\x53\x00\x65\x00\x6c\x00\x65\x00\ -\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ -\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x74\x00\x68\x00\x65\x00\ -\x20\x00\x73\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x70\x00\x61\x00\ -\x72\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x61\x00\x73\x00\ -\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x67\x00\x72\x00\ -\x6f\x00\x75\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x53\ -\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\ -\x74\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x73\x61\x6d\x65\ -\x20\x70\x61\x72\x65\x6e\x74\x73\x20\x61\x73\x20\x74\x68\x69\x73\ -\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\ -\x5f\x53\x65\x6c\x65\x63\x74\x47\x72\x6f\x75\x70\x01\x03\x00\x00\ -\x00\x5e\x00\x56\x00\x65\x00\x6c\x00\x67\x00\x20\x00\x65\x00\x74\ -\x00\x20\x00\x61\x00\x72\x00\x62\x00\x65\x00\x69\x00\x64\x00\x73\ -\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\x66\x00\x6f\x00\x72\ -\x00\x20\x00\x6f\x00\x70\x00\x70\x00\x72\x00\x65\x00\x74\x00\x74\ -\x00\x65\x00\x6c\x00\x73\x00\x65\x00\x20\x00\x61\x00\x76\x00\x20\ -\x00\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x53\x65\x6c\x65\x63\x74\ -\x20\x61\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\ -\x20\x66\x6f\x72\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\x20\x63\x72\ -\x65\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\ -\x5f\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\ -\x00\x12\x00\x56\x00\x65\x00\x6c\x00\x67\x00\x20\x00\x70\x00\x6c\ -\x00\x61\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x65\ -\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x44\x72\ -\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x01\ -\x03\x00\x00\x00\x54\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\ -\x65\x00\x73\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\ -\x20\x00\x32\x00\x44\x00\x20\x00\x76\x00\x69\x00\x65\x00\x77\x00\ -\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ -\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x2a\x43\x72\x65\x61\x74\x65\x73\x20\x53\x68\x61\x70\x65\ -\x20\x32\x44\x20\x76\x69\x65\x77\x73\x20\x6f\x66\x20\x73\x65\x6c\ -\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ -\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x61\x70\x65\x32\x44\x56\ -\x69\x65\x77\x01\x03\x00\x00\x00\x1a\x00\x53\x00\x68\x00\x61\x00\ -\x70\x00\x65\x00\x20\x00\x32\x00\x44\x00\x20\x00\x76\x00\x69\x00\ -\x65\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x68\x61\ -\x70\x65\x20\x32\x44\x20\x76\x69\x65\x77\x07\x00\x00\x00\x11\x44\ -\x72\x61\x66\x74\x5f\x53\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\ -\x01\x03\x00\x00\x00\x42\x00\x4c\x00\x61\x00\x67\x00\x65\x00\x72\ -\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x65\x00\x72\x00\x6b\ -\x00\x6e\x00\x61\x00\x64\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\ -\x00\x4c\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6d\x00\x61\ -\x00\x67\x00\x6e\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x23\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x6e\x6e\ -\x6f\x74\x61\x74\x69\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\ -\x20\x73\x6e\x61\x70\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\ -\x54\x65\x78\x74\x01\x03\x00\x00\x00\x0a\x00\x54\x00\x65\x00\x6b\ -\x00\x73\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\x65\ -\x78\x74\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\x78\ -\x74\x01\x03\x00\x00\x00\x34\x00\x56\x00\x65\x00\x6b\x00\x73\x00\ -\x6c\x00\x65\x00\x72\x00\x20\x00\x6b\x00\x6f\x00\x6e\x00\x73\x00\ -\x74\x00\x72\x00\x75\x00\x6b\x00\x73\x00\x6a\x00\x6f\x00\x6e\x00\ -\x73\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x73\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x17\x54\x6f\x67\x67\x6c\x65\x20\x63\x6f\x6e\x73\ -\x74\x72\x75\x63\x69\x6f\x6e\x20\x4d\x6f\x64\x65\x07\x00\x00\x00\ -\x1c\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\ -\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x4d\x6f\x64\x65\x01\x03\x00\ -\x00\x00\x5c\x00\x56\x00\x65\x00\x6b\x00\x73\x00\x6c\x00\x65\x00\ -\x72\x00\x20\x00\x6b\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\ -\x75\x00\x6b\x00\x73\x00\x6a\x00\x6f\x00\x6e\x00\x73\x00\x6d\x00\ -\x6f\x00\x64\x00\x75\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ -\x20\x00\x6e\x00\x65\x00\x73\x00\x74\x00\x65\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x72\x00\x2e\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x54\x6f\x67\x67\x6c\x65\x73\ -\x20\x74\x68\x65\x20\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\ -\x6e\x20\x4d\x6f\x64\x65\x20\x66\x6f\x72\x20\x6e\x65\x78\x74\x20\ -\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\x00\x00\x1c\x44\x72\x61\ -\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x73\x74\x72\x75\ -\x63\x74\x69\x6f\x6e\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x28\x00\ -\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x63\x00\ -\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x65\x00\x20\x00\ -\x4d\x00\x6f\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x14\x54\x6f\x67\x67\x6c\x65\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\ -\x20\x4d\x6f\x64\x65\x07\x00\x00\x00\x18\x44\x72\x61\x66\x74\x5f\ -\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x74\x69\x6e\x75\x65\x4d\x6f\ -\x64\x65\x01\x03\x00\x00\x00\x58\x00\x54\x00\x6f\x00\x67\x00\x67\ -\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ -\x00\x43\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x65\ -\x00\x20\x00\x4d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x66\x00\x6f\ -\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x78\x00\x74\x00\x20\x00\x63\ -\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x73\x00\x2e\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x54\x6f\x67\x67\x6c\x65\ -\x73\x20\x74\x68\x65\x20\x43\x6f\x6e\x74\x69\x6e\x75\x65\x20\x4d\ -\x6f\x64\x65\x20\x66\x6f\x72\x20\x6e\x65\x78\x74\x20\x63\x6f\x6d\ -\x6d\x61\x6e\x64\x73\x2e\x07\x00\x00\x00\x18\x44\x72\x61\x66\x74\ -\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x74\x69\x6e\x75\x65\x4d\ -\x6f\x64\x65\x01\x03\x00\x00\x00\x92\x00\x42\x00\x79\x00\x74\x00\ -\x74\x00\x65\x00\x72\x00\x20\x00\x76\x00\x69\x00\x73\x00\x6e\x00\ -\x69\x00\x6e\x00\x67\x00\x73\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\ -\x73\x00\x20\x00\x70\x00\xe5\x00\x20\x00\x75\x00\x74\x00\x76\x00\ -\x61\x00\x6c\x00\x67\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x72\x00\x20\x00\x6d\x00\ -\x65\x00\x6c\x00\x6c\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x72\x00\ -\xe5\x00\x64\x00\x72\x00\x61\x00\x6d\x00\x6d\x00\x65\x00\x72\x00\ -\x20\x00\x6f\x00\x67\x00\x20\x00\x66\x00\x6c\x00\x61\x00\x74\x00\ -\x6c\x00\x69\x00\x6e\x00\x6a\x00\x65\x00\x72\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x46\x53\x77\x61\x70\x73\x20\x64\x69\x73\x70\x6c\ -\x61\x79\x20\x6d\x6f\x64\x65\x20\x6f\x66\x20\x73\x65\x6c\x65\x63\ -\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\x74\x77\ -\x65\x65\x6e\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\x61\x6e\ -\x64\x20\x66\x6c\x61\x74\x6c\x69\x6e\x65\x73\x07\x00\x00\x00\x17\ -\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x44\x69\x73\x70\ -\x6c\x61\x79\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x24\x00\x42\x00\ -\x79\x00\x74\x00\x74\x00\x20\x00\x76\x00\x69\x00\x73\x00\x6e\x00\ -\x69\x00\x6e\x00\x67\x00\x73\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\ -\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x54\x6f\x67\x67\x6c\ -\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x6d\x6f\x64\x65\x07\x00\ -\x00\x00\x17\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x44\ -\x69\x73\x70\x6c\x61\x79\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x0c\ -\x00\x54\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x78\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x06\x54\x72\x69\x6d\x65\x78\x07\x00\x00\x00\ -\x0c\x44\x72\x61\x66\x74\x5f\x54\x72\x69\x6d\x65\x78\x01\x03\x00\ -\x00\x01\x12\x00\x54\x00\x72\x00\x69\x00\x6d\x00\x73\x00\x20\x00\ -\x6f\x00\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\x65\x00\x6e\x00\ -\x64\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\ -\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\x00\ -\x6f\x00\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\x72\x00\x75\x00\ -\x64\x00\x65\x00\x73\x00\x20\x00\x73\x00\x69\x00\x6e\x00\x67\x00\ -\x6c\x00\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\ -\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x73\x00\ -\x6e\x00\x61\x00\x70\x00\x73\x00\x2c\x00\x20\x00\x53\x00\x48\x00\ -\x49\x00\x46\x00\x54\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\ -\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x20\x00\x74\x00\ -\x6f\x00\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\ -\x74\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\ -\x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ -\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x2c\x00\x20\x00\ -\x41\x00\x4c\x00\x54\x00\x20\x00\x69\x00\x6e\x00\x76\x00\x65\x00\ -\x72\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x89\x54\ -\x72\x69\x6d\x73\x20\x6f\x72\x20\x65\x78\x74\x65\x6e\x64\x73\x20\ -\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ -\x65\x63\x74\x2c\x20\x6f\x72\x20\x65\x78\x74\x72\x75\x64\x65\x73\ -\x20\x73\x69\x6e\x67\x6c\x65\x20\x66\x61\x63\x65\x73\x2e\x20\x43\ -\x54\x52\x4c\x20\x73\x6e\x61\x70\x73\x2c\x20\x53\x48\x49\x46\x54\ -\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x73\x20\x74\x6f\x20\x63\ -\x75\x72\x72\x65\x6e\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\ -\x72\x20\x74\x6f\x20\x6e\x6f\x72\x6d\x61\x6c\x2c\x20\x41\x4c\x54\ -\x20\x69\x6e\x76\x65\x72\x74\x73\x07\x00\x00\x00\x0c\x44\x72\x61\ -\x66\x74\x5f\x54\x72\x69\x6d\x65\x78\x01\x03\x00\x00\x00\x26\x00\ -\x41\x00\x6e\x00\x67\x00\x72\x00\x65\x00\x20\x00\x73\x00\x69\x00\ -\x73\x00\x74\x00\x65\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\ -\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x55\ -\x6e\x64\x6f\x20\x6c\x61\x73\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\ -\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x55\x6e\x64\x6f\x4c\ -\x69\x6e\x65\x01\x03\x00\x00\x00\x5c\x00\x41\x00\x6e\x00\x67\x00\ -\x72\x00\x65\x00\x72\x00\x20\x00\x73\x00\x69\x00\x73\x00\x74\x00\ -\x65\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\ -\x74\x00\x20\x00\x70\x00\xe5\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\ -\x6a\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\ -\x62\x00\x6c\x00\x69\x00\x72\x00\x20\x00\x74\x00\x65\x00\x67\x00\ -\x6e\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x55\ -\x6e\x64\x6f\x65\x73\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x64\ -\x72\x61\x77\x6e\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\x66\x20\ -\x74\x68\x65\x20\x6c\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\x20\x64\ -\x72\x61\x77\x6e\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x55\ -\x6e\x64\x6f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\xd2\x00\x53\x00\ -\x61\x00\x6d\x00\x6d\x00\x65\x00\x6e\x00\x66\x00\xf8\x00\x79\x00\ -\x65\x00\x72\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x67\x00\x74\x00\ -\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ -\x65\x00\x72\x00\x20\x00\x74\x00\x69\x00\x6c\x00\x20\x00\x65\x00\ -\x74\x00\x74\x00\x2c\x00\x20\x00\x6b\x00\x6f\x00\x6e\x00\x76\x00\ -\x65\x00\x72\x00\x74\x00\x65\x00\x72\x00\x65\x00\x72\x00\x20\x00\ -\x6c\x00\x75\x00\x6b\x00\x6b\x00\x65\x00\x64\x00\x65\x00\x20\x00\ -\x6c\x00\x69\x00\x6e\x00\x6a\x00\x65\x00\x72\x00\x20\x00\x74\x00\ -\x69\x00\x6c\x00\x20\x00\x66\x00\x79\x00\x6c\x00\x74\x00\x65\x00\ -\x20\x00\x66\x00\x6c\x00\x61\x00\x74\x00\x65\x00\x72\x00\x20\x00\ -\x65\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x73\x00\x61\x00\ -\x6d\x00\x6d\x00\x65\x00\x6e\x00\x66\x00\xf8\x00\x79\x00\x65\x00\ -\x72\x00\x20\x00\x66\x00\x6c\x00\x61\x00\x74\x00\x65\x00\x72\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x4a\x6f\x69\x6e\x73\x20\x74\ -\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ -\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\x6f\x6e\x65\x2c\x20\x6f\x72\ -\x20\x63\x6f\x6e\x76\x65\x72\x74\x73\x20\x63\x6c\x6f\x73\x65\x64\ -\x20\x77\x69\x72\x65\x73\x20\x74\x6f\x20\x66\x69\x6c\x6c\x65\x64\ -\x20\x66\x61\x63\x65\x73\x2c\x20\x6f\x72\x20\x75\x6e\x69\x74\x65\ -\x20\x66\x61\x63\x65\x73\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\ -\x5f\x55\x70\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x12\x00\x4f\ -\x00\x70\x00\x70\x00\x67\x00\x72\x00\x61\x00\x64\x00\x65\x00\x72\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x55\x70\x67\x72\x61\x64\ -\x65\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x55\x70\x67\x72\ -\x61\x64\x65\x01\x03\x00\x00\x00\x74\x00\x4c\x00\x61\x00\x67\x00\ -\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x66\x00\x6c\x00\ -\x65\x00\x72\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x73\x00\ -\x74\x00\x72\x00\xe5\x00\x64\x00\x2e\x00\x20\x00\x43\x00\x54\x00\ -\x52\x00\x4c\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6d\x00\ -\x61\x00\x67\x00\x6e\x00\x65\x00\x74\x00\x2f\x00\x20\x00\x53\x00\ -\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ -\x20\x00\xe5\x00\x20\x00\x6c\x00\xe5\x00\x73\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x3f\x43\x72\x65\x61\x74\x65\x73\x20\x61\ -\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\x70\x6f\x69\x6e\x74\x20\ -\x77\x69\x72\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ -\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\ -\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\ -\x5f\x57\x69\x72\x65\x01\x03\x00\x00\x00\x08\x00\x54\x00\x72\x00\ -\xe5\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x69\x72\ -\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\ -\x01\x03\x00\x00\x00\x44\x00\x4b\x00\x6f\x00\x6e\x00\x76\x00\x65\ -\x00\x72\x00\x74\x00\x65\x00\x72\x00\x65\x00\x72\x00\x20\x00\x6d\ -\x00\x65\x00\x6c\x00\x6c\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x72\ -\x00\xe5\x00\x64\x00\x20\x00\x6f\x00\x67\x00\x20\x00\x42\x00\x53\ -\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x21\x43\x6f\x6e\x76\x65\x72\x74\x73\x20\x62\x65\x74\ -\x77\x65\x65\x6e\x20\x57\x69\x72\x65\x20\x61\x6e\x64\x20\x42\x53\ -\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x13\x44\x72\x61\x66\x74\x5f\ -\x57\x69\x72\x65\x54\x6f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\ -\x00\x00\x20\x00\x54\x00\x72\x00\xe5\x00\x64\x00\x20\x00\x74\x00\ -\x69\x00\x6c\x00\x20\x00\x42\x00\x53\x00\x70\x00\x6c\x00\x69\x00\ -\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x57\x69\x72\ -\x65\x20\x74\x6f\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\ -\x13\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x54\x6f\x42\x53\x70\ -\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x0e\x00\x41\x00\x6c\x00\x74\ -\x00\x20\x00\x6d\x00\x6f\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x07\x41\x6c\x74\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x3e\x00\x41\x00\x6c\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\ -\x74\x00\x65\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x50\x00\ -\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x73\x00\x20\x00\ -\x6c\x00\x6f\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x41\x6c\x74\x65\x72\x6e\x61\ -\x74\x65\x20\x53\x56\x47\x20\x50\x61\x74\x74\x65\x72\x6e\x73\x20\ -\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5a\ -\x00\x41\x00\x6c\x00\x77\x00\x61\x00\x79\x00\x73\x00\x20\x00\x73\ -\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x6f\ -\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x28\ -\x00\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\ -\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6d\x00\x6f\x00\x64\ -\x00\x20\x00\x6b\x00\x65\x00\x79\x00\x29\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x2d\x41\x6c\x77\x61\x79\x73\x20\x73\x6e\x61\x70\x20\ -\x74\x6f\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x28\x64\x69\x73\x61\ -\x62\x6c\x65\x20\x73\x6e\x61\x70\x20\x6d\x6f\x64\x20\x6b\x65\x79\ -\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x41\x00\x72\x00\x69\x00\ -\x61\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x72\x69\ -\x61\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x4f\x00\x6d\x00\x76\ -\x00\x65\x00\x6e\x00\x64\x00\x74\x00\x20\x00\x73\x00\x6b\x00\x72\ -\x00\xe5\x00\x73\x00\x74\x00\x72\x00\x65\x00\x6b\x00\x20\x00\x35\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\ -\x61\x73\x68\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x4f\x00\ -\x6d\x00\x76\x00\x65\x00\x6e\x00\x64\x00\x74\x00\x20\x00\x73\x00\ -\x6b\x00\x72\x00\xe5\x00\x73\x00\x74\x00\x72\x00\x65\x00\x6b\x00\ -\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\x63\ -\x6b\x73\x6c\x61\x73\x68\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\ -\x00\x4f\x00\x6d\x00\x76\x00\x65\x00\x6e\x00\x64\x00\x74\x00\x20\ -\x00\x73\x00\x6b\x00\x72\x00\xe5\x00\x73\x00\x74\x00\x72\x00\x65\ -\x00\x6b\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ -\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x39\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x8a\x00\x4d\x00\x65\x00\x72\x00\x6b\x00\x20\x00\x61\x00\ -\x76\x00\x20\x00\x68\x00\x65\x00\x72\x00\x20\x00\x68\x00\x76\x00\ -\x69\x00\x73\x00\x20\x00\x64\x00\x75\x00\x20\x00\x76\x00\x69\x00\ -\x6c\x00\x20\x00\x61\x00\x74\x00\x20\x00\x6f\x00\x6d\x00\x72\x00\ -\xe5\x00\x64\x00\x65\x00\x6e\x00\x65\x00\x20\x00\x28\x00\x33\x00\ -\x44\x00\x2d\x00\x66\x00\x6c\x00\x61\x00\x74\x00\x65\x00\x72\x00\ -\x29\x00\x20\x00\x6f\x00\x67\x00\x73\x00\xe5\x00\x20\x00\x73\x00\ -\x6b\x00\x61\x00\x6c\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\ -\x72\x00\x74\x00\x65\x00\x72\x00\x65\x00\x73\x00\x2e\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x3f\x43\x68\x65\x63\x6b\x20\x74\x68\x69\ -\x73\x20\x69\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x68\ -\x65\x20\x61\x72\x65\x61\x73\x20\x28\x33\x44\x20\x66\x61\x63\x65\ -\x73\x29\x20\x74\x6f\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\ -\x64\x20\x74\x6f\x6f\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xb6\x00\x4d\ -\x00\x65\x00\x72\x00\x6b\x00\x20\x00\x61\x00\x76\x00\x20\x00\x68\ -\x00\x65\x00\x72\x00\x20\x00\x68\x00\x76\x00\x69\x00\x73\x00\x20\ -\x00\x64\x00\x75\x00\x20\x00\x76\x00\x69\x00\x6c\x00\x20\x00\x61\ -\x00\x74\x00\x20\x00\x69\x00\x6b\x00\x6b\x00\x65\x00\x20\x00\x6e\ -\x00\x61\x00\x76\x00\x6e\x00\x67\x00\x69\x00\x74\x00\x74\x00\x65\ -\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x6b\x00\x6b\x00\x65\x00\x72\ -\x00\x20\x00\x28\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\x62\x00\x65\ -\x00\x67\x00\x79\x00\x6e\x00\x6e\x00\x65\x00\x72\x00\x20\x00\x6d\ -\x00\x65\x00\x64\x00\x20\x00\x2a\x00\x29\x00\x20\x00\x73\x00\x6b\ -\x00\x61\x00\x6c\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\ -\x00\x74\x00\x65\x00\x72\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x67\ -\x00\x73\x00\xe5\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\x43\x68\ -\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x79\x6f\x75\x20\ -\x77\x61\x6e\x74\x20\x74\x68\x65\x20\x6e\x6f\x6e\x2d\x6e\x61\x6d\ -\x65\x64\x20\x62\x6c\x6f\x63\x6b\x73\x20\x28\x62\x65\x67\x69\x6e\ -\x6e\x69\x6e\x67\x20\x77\x69\x74\x68\x20\x61\x20\x2a\x29\x20\x74\ -\x6f\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\ -\x6f\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x53\x00\x69\x00\x72\x00\ -\x6b\x00\x65\x00\x6c\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x35\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x10\x00\x53\x00\x69\x00\x72\x00\x6b\x00\x65\x00\x6c\x00\ -\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x69\x72\ -\x63\x6c\x65\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x53\x00\ -\x69\x00\x72\x00\x6b\x00\x65\x00\x6c\x00\x20\x00\x39\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x39\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x36\x00\x46\x00\x61\x00\x72\x00\x67\x00\ -\x65\x00\x20\x00\x74\x00\x69\x00\x6c\x00\x6f\x00\x72\x00\x64\x00\ -\x6e\x00\x65\x00\x74\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x6a\x00\ -\x65\x00\x62\x00\x72\x00\x65\x00\x64\x00\x64\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x19\x43\x6f\x6c\x6f\x72\x20\x6d\x61\x70\ -\x70\x65\x64\x20\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x26\x00\x46\x00\x61\x00\x72\x00\x67\ -\x00\x65\x00\x74\x00\x69\x00\x6c\x00\x6f\x00\x72\x00\x64\x00\x6e\ -\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x66\x00\x69\x00\x6c\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x12\x43\x6f\x6c\x6f\x72\x20\x6d\x61\ -\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x1a\x00\x43\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x61\ -\x00\x69\x00\x6e\x00\x20\x00\x6d\x00\x6f\x00\x64\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x73\x74\x72\x61\x69\x6e\x20\ -\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x4b\x00\x6f\x00\ -\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x73\x00\x6a\x00\ -\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x6f\x6e\ -\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x24\x00\x4b\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\ -\x6b\x00\x73\x00\x6a\x00\x6f\x00\x6e\x00\x73\x00\x66\x00\x61\x00\ -\x72\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x43\ -\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x63\x6f\x6c\x6f\ -\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x4b\x00\x6f\x00\x6e\x00\ -\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x73\x00\x6a\x00\x6f\x00\ -\x6e\x00\x73\x00\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\x00\ -\x6e\x00\x61\x00\x76\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x17\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x67\x72\ -\x6f\x75\x70\x20\x6e\x61\x6d\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\ -\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x70\ -\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\ -\x00\x63\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ -\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x43\x72\x65\x61\ -\x74\x65\x20\x70\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\ -\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x44\x00\ -\x58\x00\x46\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\ -\x74\x00\x61\x00\x6c\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\ -\x74\x00\x69\x00\x76\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x12\x44\x58\x46\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\ -\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x53\x00\ -\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x20\x00\ -\x66\x00\x61\x00\x72\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0d\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x4c\x00\x53\x00\x74\x00\x61\x00\x6e\ -\x00\x64\x00\x61\x00\x72\x00\x64\x00\x68\x00\xf8\x00\x79\x00\x64\ -\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x65\ -\x00\x6b\x00\x73\x00\x74\x00\x20\x00\x6f\x00\x67\x00\x20\x00\x64\ -\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x6a\x00\x6f\x00\x6e\ -\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x44\x65\ -\x66\x61\x75\x6c\x74\x20\x68\x65\x69\x67\x68\x74\x20\x66\x6f\x72\ -\x20\x74\x65\x78\x74\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\ -\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x53\x00\ -\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x20\x00\ -\x6c\x00\x69\x00\x6e\x00\x6a\x00\x65\x00\x62\x00\x72\x00\x65\x00\ -\x64\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\ -\x65\x66\x61\x75\x6c\x74\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x16\x00\x53\x00\x74\x00\x61\x00\x6e\ -\x00\x64\x00\x61\x00\x72\x00\x64\x00\x6d\x00\x61\x00\x6c\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x16\x44\x65\x66\x61\x75\x6c\x74\x20\ -\x74\x65\x6d\x70\x6c\x61\x74\x65\x20\x73\x68\x65\x65\x74\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x26\x00\x53\x00\x74\x00\x61\x00\x6e\x00\x64\ -\x00\x61\x00\x72\x00\x64\x00\x20\x00\x73\x00\x6b\x00\x72\x00\x69\ -\x00\x66\x00\x74\x00\x74\x00\x79\x00\x70\x00\x65\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x11\x44\x65\x66\x61\x75\x6c\x74\x20\x74\x65\ -\x78\x74\x20\x66\x6f\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\ -\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\ -\x68\x00\xf8\x00\x79\x00\x64\x00\x65\x00\x20\x00\x74\x00\x65\x00\ -\x6b\x00\x73\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x44\ -\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x78\x74\x20\x68\x65\x69\x67\ -\x68\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x53\x00\x74\x00\x61\ -\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x20\x00\x61\x00\x72\ -\x00\x62\x00\x65\x00\x69\x00\x64\x00\x73\x00\x70\x00\x6c\x00\x61\ -\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x44\x65\x66\x61\ -\x75\x6c\x74\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\x6c\x61\x6e\ -\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x36\x00\x44\x00\x69\x00\x6d\x00\ -\x65\x00\x6e\x00\x73\x00\x6a\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\ -\x6f\x00\x67\x00\x20\x00\x6c\x00\x65\x00\x64\x00\x65\x00\x72\x00\ -\x2d\x00\x70\x00\x69\x00\x6c\x00\x73\x00\x74\x00\x69\x00\x6c\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x44\x69\x6d\x65\x6e\x73\x69\ -\x6f\x6e\x73\x20\x26\x20\x4c\x65\x61\x64\x65\x72\x20\x61\x72\x72\ -\x6f\x77\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\ -\x00\x44\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\ -\x00\x6e\x00\x73\x00\x20\x00\x70\x00\x72\x00\x65\x00\x63\x00\x69\ -\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6c\x00\x65\x00\x76\ -\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x44\x69\ -\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x70\x72\x65\x63\x69\x73\x69\ -\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\ -\x00\x50\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x20\ -\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\ -\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x50\x00\x75\x00\x6e\x00\ -\x6b\x00\x74\x00\x75\x00\x6d\x00\x20\x00\x37\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x05\x44\x6f\x74\x20\x37\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x12\x00\x50\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x75\x00\x6d\ -\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\ -\x74\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x44\x00\x72\x00\ -\x61\x00\x66\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\ -\x72\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6d\x00\x6f\x00\ -\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x44\x72\x61\ -\x66\x74\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x6d\x6f\x64\ -\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x48\x00\x45\x00\x78\x00\x70\x00\ -\x6f\x00\x72\x00\x74\x00\x20\x00\x33\x00\x44\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\ -\x73\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x66\x00\x61\x00\ -\x63\x00\x65\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x68\x00\x65\x00\ -\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x45\x78\x70\x6f\x72\ -\x74\x20\x33\x44\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x73\x20\ -\x70\x6f\x6c\x79\x66\x61\x63\x65\x20\x6d\x65\x73\x68\x65\x73\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x34\x00\x46\x00\x79\x00\x6c\x00\x6c\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\ -\x72\x00\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\x73\x00\x74\x00\ -\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x17\x46\x69\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\ -\x73\x20\x62\x79\x20\x64\x65\x66\x61\x75\x6c\x74\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x44\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x65\ -\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x6e\x00\x73\ -\x00\x74\x00\x69\x00\x6c\x00\x6c\x00\x69\x00\x6e\x00\x67\x00\x65\ -\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x75\x00\x74\ -\x00\x6b\x00\x61\x00\x73\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x16\x47\x65\x6e\x65\x72\x61\x6c\x20\x44\x72\x61\x66\x74\x20\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\ -\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x65\x00\x6c\x00\x6c\ -\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x6e\x00\x73\x00\x74\x00\x69\ -\x00\x6c\x00\x6c\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x72\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\ -\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\ -\x00\x47\x00\x6c\x00\x6f\x00\x62\x00\x61\x00\x6c\x00\x20\x00\x6b\ -\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\ -\x00\x73\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x73\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x10\x47\x6c\x6f\x62\x61\x6c\x20\x63\x6f\x70\ -\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x47\ -\x00\x72\x00\x69\x00\x64\x00\x20\x00\x73\x00\x70\x00\x61\x00\x63\ -\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ -\x47\x72\x69\x64\x20\x73\x70\x61\x63\x69\x6e\x67\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x30\x00\x47\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x20\ -\x00\x6c\x00\x61\x00\x79\x00\x65\x00\x72\x00\x73\x00\x20\x00\x69\ -\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x63\ -\x00\x6b\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x47\x72\ -\x6f\x75\x70\x20\x6c\x61\x79\x65\x72\x73\x20\x69\x6e\x74\x6f\x20\ -\x62\x6c\x6f\x63\x6b\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x1a\x00\x48\ -\x00\x65\x00\x72\x00\x65\x00\x20\x00\x79\x00\x6f\x00\x75\x00\x20\ -\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x73\x00\x70\x00\x65\x00\x63\ -\x00\x69\x00\x66\x00\x79\x00\x20\x00\x61\x00\x20\x00\x64\x00\x69\ -\x00\x72\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x79\x00\x20\ -\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x69\ -\x00\x6e\x00\x67\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x66\ -\x00\x69\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\ -\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\ -\x00\x3c\x00\x70\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x6e\ -\x00\x3e\x00\x20\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\ -\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x74\x00\x68\ -\x00\x61\x00\x74\x00\x20\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x62\ -\x00\x65\x00\x20\x00\x61\x00\x64\x00\x64\x00\x65\x00\x64\x00\x20\ -\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\ -\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x20\ -\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x68\x00\x61\ -\x00\x74\x00\x63\x00\x68\x00\x20\x00\x70\x00\x61\x00\x74\x00\x74\ -\x00\x65\x00\x72\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x8d\x48\x65\x72\x65\x20\x79\x6f\x75\x20\x63\x61\x6e\x20\x73\ -\x70\x65\x63\x69\x66\x79\x20\x61\x20\x64\x69\x72\x65\x63\x74\x6f\ -\x72\x79\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x53\x56\ -\x47\x20\x66\x69\x6c\x65\x73\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\ -\x6e\x67\x20\x3c\x70\x61\x74\x74\x65\x72\x6e\x3e\x20\x64\x65\x66\ -\x69\x6e\x69\x74\x69\x6f\x6e\x73\x20\x74\x68\x61\x74\x20\x63\x61\ -\x6e\x20\x62\x65\x20\x61\x64\x64\x65\x64\x20\x74\x6f\x20\x74\x68\ -\x65\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x44\x72\x61\x66\x74\ -\x20\x68\x61\x74\x63\x68\x20\x70\x61\x74\x74\x65\x72\x6e\x73\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x56\x00\x49\x00\x66\x00\x20\x00\x63\x00\ -\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ -\x61\x00\x20\x00\x67\x00\x72\x00\x69\x00\x64\x00\x20\x00\x77\x00\ -\x69\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\ -\x61\x00\x72\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\ -\x64\x00\x72\x00\x61\x00\x77\x00\x69\x00\x6e\x00\x67\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x2b\x49\x66\x20\x63\x68\x65\x63\x6b\x65\ -\x64\x2c\x20\x61\x20\x67\x72\x69\x64\x20\x77\x69\x6c\x6c\x20\x61\ -\x70\x70\x65\x61\x72\x20\x77\x68\x65\x6e\x20\x64\x72\x61\x77\x69\ -\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\xee\x00\x48\x00\x76\x00\x69\ -\x00\x73\x00\x20\x00\x64\x00\x65\x00\x74\x00\x74\x00\x65\x00\x20\ -\x00\x65\x00\x72\x00\x20\x00\x6d\x00\x65\x00\x72\x00\x6b\x00\x65\ -\x00\x74\x00\x20\x00\x76\x00\x69\x00\x6c\x00\x20\x00\x66\x00\x72\ -\x00\x65\x00\x65\x00\x63\x00\x61\x00\x64\x00\x20\x00\x70\x00\x72\ -\x00\xf8\x00\x76\x00\x65\x00\x20\x00\xe5\x00\x20\x00\x73\x00\x61\ -\x00\x6d\x00\x6d\x00\x65\x00\x6e\x00\x66\x00\xf8\x00\x79\x00\x65\ -\x00\x20\x00\x73\x00\x61\x00\x6d\x00\x6d\x00\x65\x00\x6e\x00\x66\ -\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\ -\x00\x67\x00\x6a\x00\x65\x00\x6e\x00\x73\x00\x74\x00\x61\x00\x6e\ -\x00\x64\x00\x65\x00\x72\x00\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\ -\x00\x74\x00\x72\x00\xe5\x00\x64\x00\x65\x00\x72\x00\x2e\x00\x20\ -\x00\x4e\x00\x42\x00\x3a\x00\x20\x00\x64\x00\x65\x00\x74\x00\x74\ -\x00\x65\x00\x20\x00\x6b\x00\x61\x00\x6e\x00\x20\x00\x74\x00\x61\ -\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x74\x00\x75\x00\x6e\ -\x00\x64\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x65\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x66\x72\ -\x65\x65\x63\x61\x64\x20\x77\x69\x6c\x6c\x20\x74\x72\x79\x20\x74\ -\x6f\x20\x6a\x6f\x69\x6e\x74\x20\x63\x6f\x69\x6e\x63\x69\x64\x65\ -\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\ -\x77\x69\x72\x65\x73\x2e\x20\x42\x65\x77\x61\x72\x65\x2c\x20\x74\ -\x68\x69\x73\x20\x63\x61\x6e\x20\x74\x61\x6b\x65\x20\x61\x20\x77\ -\x68\x69\x6c\x65\x2e\x2e\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa2\x00\ -\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ -\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\ -\x65\x00\x64\x00\x2c\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ -\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x69\x00\ -\x6e\x00\x67\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\ -\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\ -\x20\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\ -\x64\x00\x20\x00\x61\x00\x73\x00\x20\x00\x33\x00\x64\x00\x20\x00\ -\x70\x00\x6f\x00\x6c\x00\x79\x00\x66\x00\x61\x00\x63\x00\x65\x00\ -\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x49\x66\x20\x74\x68\ -\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\ -\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x63\x6f\x6e\x74\x61\ -\x69\x6e\x69\x6e\x67\x20\x66\x61\x63\x65\x73\x20\x77\x69\x6c\x6c\ -\x20\x62\x65\x20\x65\x78\x70\x6f\x72\x74\x65\x64\x20\x61\x73\x20\ -\x33\x64\x20\x70\x6f\x6c\x79\x66\x61\x63\x65\x73\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x01\x10\x00\x64\x00\x65\x00\x72\x00\x73\x00\x6f\x00\x6d\ -\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x6e\x00\x65\x00\x20\x00\x65\ -\x00\x72\x00\x20\x00\x61\x00\x76\x00\x6b\x00\x72\x00\x79\x00\x73\ -\x00\x73\x00\x61\x00\x20\x00\x76\x00\x69\x00\x6c\x00\x20\x00\x6b\ -\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\ -\x00\x73\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x73\x00\x20\x00\x62\ -\x00\x65\x00\x68\x00\x6f\x00\x6c\x00\x64\x00\x65\x00\x73\x00\x20\ -\x00\x70\x00\xe5\x00\x20\x00\x74\x00\x76\x00\x65\x00\x72\x00\x73\ -\x00\x20\x00\x61\x00\x76\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x6d\ -\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x65\x00\x6e\x00\x2c\x00\x20\ -\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x73\x00\x20\x00\x76\ -\x00\x69\x00\x6c\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x6d\x00\x61\ -\x00\x6e\x00\x64\x00\x6f\x00\x65\x00\x72\x00\x20\x00\x61\x00\x6c\ -\x00\x6c\x00\x74\x00\x69\x00\x64\x00\x20\x00\x73\x00\x74\x00\x61\ -\x00\x72\x00\x74\x00\x65\x00\x20\x00\x69\x00\x20\x00\x69\x00\x6b\ -\x00\x6b\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x65\ -\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x6d\x00\x6f\x00\x64\ -\x00\x75\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x6f\x49\x66\ -\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\ -\x2c\x20\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\ -\x20\x62\x65\x20\x6b\x65\x70\x74\x20\x61\x63\x72\x6f\x73\x73\x20\ -\x63\x6f\x6d\x6d\x61\x6e\x64\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\ -\x73\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x20\x77\x69\x6c\x6c\ -\x20\x61\x6c\x77\x61\x79\x73\x20\x73\x74\x61\x72\x74\x20\x69\x6e\ -\x20\x6e\x6f\x2d\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\xe4\x00\x44\x00\x65\x00\x72\x00\x73\x00\x6f\x00\ -\x6d\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x6e\x00\x65\x00\x20\x00\ -\x65\x00\x72\x00\x20\x00\x61\x00\x76\x00\x6b\x00\x72\x00\x79\x00\ -\x73\x00\x73\x00\x65\x00\x74\x00\x2c\x00\x20\x00\x76\x00\x69\x00\ -\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ -\x65\x00\x72\x00\x20\x00\x76\x00\x69\x00\x73\x00\x65\x00\x73\x00\ -\x20\x00\x6d\x00\x65\x00\x64\x00\x20\x00\x66\x00\x79\x00\x6c\x00\ -\x74\x00\x65\x00\x20\x00\x66\x00\x6c\x00\x61\x00\x74\x00\x65\x00\ -\x72\x00\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\x73\x00\x74\x00\ -\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x2e\x00\x20\x00\ -\x48\x00\x76\x00\x69\x00\x73\x00\x20\x00\x69\x00\x6b\x00\x6b\x00\ -\x65\x00\x2c\x00\x20\x00\x76\x00\x69\x00\x6c\x00\x20\x00\x64\x00\ -\x65\x00\x20\x00\x76\x00\x69\x00\x73\x00\x65\x00\x73\x00\x20\x00\ -\x73\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x72\x00\xe5\x00\x64\x00\ -\x72\x00\x61\x00\x6d\x00\x6d\x00\x65\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x66\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\ -\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\ -\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x66\x69\ -\x6c\x6c\x65\x64\x20\x61\x73\x20\x64\x65\x66\x61\x75\x6c\x74\x2e\ -\x20\x4f\x74\x68\x65\x72\x77\x69\x73\x65\x2c\x20\x74\x68\x65\x79\ -\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\ -\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\ -\x24\x00\x48\x00\x76\x00\x69\x00\x73\x00\x20\x00\x64\x00\x65\x00\ -\x6e\x00\x6e\x00\x65\x00\x20\x00\x65\x00\x72\x00\x20\x00\x61\x00\ -\x76\x00\x6b\x00\x72\x00\x79\x00\x73\x00\x73\x00\x65\x00\x74\x00\ -\x2c\x00\x20\x00\x76\x00\x69\x00\x6c\x00\x20\x00\x61\x00\x6c\x00\ -\x6c\x00\x74\x00\x69\x00\x64\x00\x20\x00\x6d\x00\x61\x00\x67\x00\ -\x6e\x00\x65\x00\x74\x00\x20\x00\x76\x00\xe6\x00\x72\x00\x65\x00\ -\x20\x00\x61\x00\x6b\x00\x74\x00\x69\x00\x76\x00\x20\x00\x66\x00\ -\x6f\x00\x72\x00\x20\x00\x65\x00\x6b\x00\x73\x00\x69\x00\x73\x00\ -\x74\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x72\x00\ -\x20\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x74\x00\ -\x65\x00\x67\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x2e\x00\x20\x00\ -\x48\x00\x76\x00\x69\x00\x73\x00\x20\x00\x69\x00\x6b\x00\x6b\x00\ -\x65\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x69\x00\x76\x00\x65\x00\ -\x72\x00\x65\x00\x73\x00\x20\x00\x6d\x00\x61\x00\x67\x00\x6e\x00\ -\x65\x00\x74\x00\x20\x00\x6b\x00\x75\x00\x6e\x00\x20\x00\x6e\x00\ -\xe5\x00\x72\x00\x20\x00\x64\x00\x75\x00\x20\x00\x74\x00\x72\x00\ -\x79\x00\x6b\x00\x6b\x00\x65\x00\x72\x00\x20\x00\x43\x00\x54\x00\ -\x52\x00\x4c\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x81\x49\ -\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\ -\x64\x2c\x20\x79\x6f\x75\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\ -\x79\x73\x20\x73\x6e\x61\x70\x20\x74\x6f\x20\x65\x78\x69\x73\x74\ -\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x68\x69\x6c\ -\x65\x20\x64\x72\x61\x77\x69\x6e\x67\x2e\x20\x49\x66\x20\x6e\x6f\ -\x74\x2c\x20\x79\x6f\x75\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x73\ -\x6e\x61\x70\x70\x69\x6e\x67\x20\x6f\x6e\x6c\x79\x20\x77\x68\x65\ -\x6e\x20\x70\x72\x65\x73\x73\x69\x6e\x67\x20\x43\x54\x52\x4c\x2e\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x22\x00\x49\x00\x6d\x00\x70\x00\x6f\ -\x00\x72\x00\x74\x00\x65\x00\x72\x00\x20\x00\x2a\x00\x62\x00\x6c\ -\x00\x6f\x00\x6b\x00\x6b\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0e\x49\x6d\x70\x6f\x72\x74\x20\x2a\x62\x6c\x6f\x63\ -\x6b\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x49\x00\x6d\x00\x70\ -\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x00\x20\x00\x4f\x00\x43\ -\x00\x41\x00\x20\x00\x6f\x00\x6d\x00\x72\x00\xe5\x00\x64\x00\x65\ -\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x49\x6d\x70\x6f\ -\x72\x74\x20\x4f\x43\x41\x20\x61\x72\x65\x61\x73\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x28\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\ -\x00\x65\x00\x72\x00\x20\x00\x75\x00\x74\x00\x66\x00\x6f\x00\x72\ -\x00\x6d\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x72\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0e\x49\x6d\x70\x6f\x72\x74\x20\x6c\x61\x79\ -\x6f\x75\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x49\x00\x6d\ -\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x00\x20\x00\x73\ -\x00\x74\x00\x69\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ -\x49\x6d\x70\x6f\x72\x74\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x3e\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\ -\x00\x65\x00\x72\x00\x20\x00\x74\x00\x65\x00\x6b\x00\x73\x00\x74\ -\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x67\x00\x20\x00\x64\x00\x69\ -\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x6a\x00\x6f\x00\x6e\x00\x65\ -\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x49\x6d\x70\x6f\ -\x72\x74\x20\x74\x65\x78\x74\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\ -\x65\x6e\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\ -\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x2f\x00\x20\x00\ -\x65\x00\x6b\x00\x73\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0d\x49\x6d\x70\x6f\x72\x74\x2f\x45\x78\ -\x70\x6f\x72\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x49\x00\x6e\ -\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x70\ -\x00\x72\x00\x65\x00\x63\x00\x69\x00\x73\x00\x69\x00\x6f\x00\x6e\ -\x00\x20\x00\x6c\x00\x65\x00\x76\x00\x65\x00\x6c\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x18\x49\x6e\x74\x65\x72\x6e\x61\x6c\x20\x70\ -\x72\x65\x63\x69\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x24\x00\x53\x00\x61\x00\x6d\x00\x6d\x00\x65\ -\x00\x6e\x00\x66\x00\xf8\x00\x79\x00\x20\x00\x67\x00\x65\x00\x6f\ -\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0d\x4a\x6f\x69\x6e\x20\x67\x65\x6f\x6d\x65\x74\x72\ -\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x4c\x00\x65\x00\x66\x00\ -\x74\x00\x20\x00\x28\x00\x49\x00\x53\x00\x4f\x00\x20\x00\x73\x00\ -\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x29\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x13\x4c\x65\x66\x74\x20\x28\x49\ -\x53\x4f\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x29\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x20\x00\x4d\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x6c\ -\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x65\x00\x76\x00\x65\ -\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x4d\x61\ -\x69\x6e\x20\x6c\x69\x6e\x65\x73\x20\x65\x76\x65\x72\x79\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\xa2\x00\x4d\x00\x61\x00\x69\x00\x6e\x00\x6c\ -\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\ -\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x64\x00\x72\x00\x61\ -\x00\x77\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x69\x00\x63\x00\x6b\ -\x00\x65\x00\x72\x00\x2e\x00\x20\x00\x53\x00\x70\x00\x65\x00\x63\ -\x00\x69\x00\x66\x00\x79\x00\x20\x00\x68\x00\x65\x00\x72\x00\x65\ -\x00\x20\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x6d\x00\x61\x00\x6e\ -\x00\x79\x00\x20\x00\x73\x00\x71\x00\x75\x00\x61\x00\x72\x00\x65\ -\x00\x73\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\ -\x00\x6e\x00\x20\x00\x6d\x00\x61\x00\x69\x00\x6e\x00\x6c\x00\x69\ -\x00\x6e\x00\x65\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x51\x4d\x61\x69\x6e\x6c\x69\x6e\x65\x73\x20\x77\x69\x6c\x6c\ -\x20\x62\x65\x20\x64\x72\x61\x77\x6e\x20\x74\x68\x69\x63\x6b\x65\ -\x72\x2e\x20\x53\x70\x65\x63\x69\x66\x79\x20\x68\x65\x72\x65\x20\ -\x68\x6f\x77\x20\x6d\x61\x6e\x79\x20\x73\x71\x75\x61\x72\x65\x73\ -\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x6d\x61\x69\x6e\x6c\x69\x6e\ -\x65\x73\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x4d\x00\x61\x00\ -\x6b\x00\x73\x00\x20\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\ -\x65\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\ -\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4d\x61\x78\x20\x53\ -\x70\x6c\x69\x6e\x65\x20\x53\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x0a\x00\x49\x00\x6e\x00\x67\x00\x65\x00\x6e\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x1e\x00\x49\x00\x6e\x00\x67\x00\x65\x00\x6e\x00\ -\x20\x00\x28\x00\x72\x00\x61\x00\x73\x00\x6b\x00\x65\x00\x73\x00\ -\x74\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x4e\x6f\x6e\ -\x65\x20\x28\x66\x61\x73\x74\x65\x73\x74\x29\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\xfe\x00\x4e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\ -\x6c\x00\x79\x00\x2c\x00\x20\x00\x61\x00\x66\x00\x74\x00\x65\x00\ -\x72\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x79\x00\x69\x00\x6e\x00\ -\x67\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ -\x73\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\ -\x6f\x00\x70\x00\x69\x00\x65\x00\x73\x00\x20\x00\x67\x00\x65\x00\ -\x74\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ -\x65\x00\x64\x00\x2e\x00\x20\x00\x49\x00\x66\x00\x20\x00\x74\x00\ -\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x70\x00\x74\x00\x69\x00\ -\x6f\x00\x6e\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\ -\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x74\x00\ -\x68\x00\x65\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ -\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\ -\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ -\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x61\x00\x64\x00\ -\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7f\x4e\x6f\x72\x6d\x61\ -\x6c\x6c\x79\x2c\x20\x61\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\ -\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x73\x2c\x20\x74\x68\x65\x20\ -\x63\x6f\x70\x69\x65\x73\x20\x67\x65\x74\x20\x73\x65\x6c\x65\x63\ -\x74\x65\x64\x2e\x20\x49\x66\x20\x74\x68\x69\x73\x20\x6f\x70\x74\ -\x69\x6f\x6e\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\ -\x74\x68\x65\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ -\x64\x20\x69\x6e\x73\x74\x65\x61\x64\x2e\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x2c\x00\x4f\x00\x43\x00\x41\x00\x20\x00\x66\x00\x6f\x00\x72\ -\x00\x6d\x00\x61\x00\x74\x00\x61\x00\x6c\x00\x74\x00\x65\x00\x72\ -\x00\x6e\x00\x61\x00\x74\x00\x69\x00\x76\x00\x65\x00\x72\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x12\x4f\x43\x41\x20\x66\x6f\x72\x6d\ -\x61\x74\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x3a\x00\x4f\x00\x72\x00\x69\x00\x67\x00\x69\x00\x6e\x00\x61\ -\x00\x6c\x00\x20\x00\x66\x00\x61\x00\x72\x00\x67\x00\x65\x00\x20\ -\x00\x6f\x00\x67\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x6a\x00\x65\ -\x00\x62\x00\x72\x00\x65\x00\x64\x00\x64\x00\x65\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x1c\x4f\x72\x69\x67\x69\x6e\x61\x6c\x20\x63\ -\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\ -\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x52\x00\x69\x00\x67\ -\x00\x68\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x52\x69\ -\x67\x68\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x53\x00\x56\x00\ -\x47\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\ -\x61\x00\x6c\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\x74\x00\ -\x69\x00\x76\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x12\x53\x56\x47\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\ -\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6c\x00\x4c\x00\x61\x00\ -\x67\x00\x72\x00\x65\x00\x20\x00\x67\x00\x6a\x00\x65\x00\x6c\x00\ -\x64\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x66\x00\x61\x00\ -\x72\x00\x67\x00\x65\x00\x20\x00\x6f\x00\x67\x00\x20\x00\x6c\x00\ -\x69\x00\x6e\x00\x6a\x00\x65\x00\x62\x00\x72\x00\x65\x00\x64\x00\ -\x64\x00\x65\x00\x20\x00\x70\x00\xe5\x00\x20\x00\x74\x00\x76\x00\ -\x65\x00\x72\x00\x73\x00\x20\x00\x61\x00\x76\x00\x20\x00\xf8\x00\ -\x6b\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x30\x53\x61\x76\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x63\x6f\ -\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\ -\x68\x20\x61\x63\x72\x6f\x73\x73\x20\x73\x65\x73\x73\x69\x6f\x6e\ -\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x53\x00\x65\x00\x6c\x00\ -\x65\x00\x63\x00\x74\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\ -\x20\x00\x61\x00\x66\x00\x74\x00\x65\x00\x72\x00\x20\x00\x63\x00\ -\x6f\x00\x70\x00\x79\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x21\x53\x65\x6c\x65\x63\x74\x20\x62\x61\x73\x65\ -\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x66\x74\x65\x72\x20\x63\ -\x6f\x70\x79\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x53\ -\x00\x6b\x00\x72\x00\xe5\x00\x73\x00\x74\x00\x72\x00\x65\x00\x6b\ -\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\ -\x61\x73\x68\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x53\x00\ -\x6b\x00\x72\x00\xe5\x00\x73\x00\x74\x00\x72\x00\x65\x00\x6b\x00\ -\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\ -\x73\x68\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x53\x00\x6b\ -\x00\x72\x00\xe5\x00\x73\x00\x74\x00\x72\x00\x65\x00\x6b\x00\x20\ -\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\ -\x68\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x4d\x00\x61\x00\ -\x67\x00\x6e\x00\x65\x00\x74\x00\x66\x00\x61\x00\x72\x00\x67\x00\ -\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x6e\x61\x70\x20\ -\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x53\x00\ -\x6e\x00\x61\x00\x70\x00\x20\x00\x6d\x00\x6f\x00\x64\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x08\x53\x6e\x61\x70\x20\x6d\x6f\x64\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x14\x00\x53\x00\x6e\x00\x61\x00\x70\x00\ -\x20\x00\x72\x00\x61\x00\x6e\x00\x67\x00\x65\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x0a\x53\x6e\x61\x70\x20\x72\x61\x6e\x67\x65\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x10\x00\x54\x00\x61\x00\x73\x00\x6b\x00\ -\x76\x00\x69\x00\x65\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x08\x54\x61\x73\x6b\x76\x69\x65\x77\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x3a\x00\x54\x00\x68\x00\x65\x00\x20\x00\x43\x00\x6f\x00\x6e\x00\ -\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x69\x00\x6e\x00\ -\x67\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\ -\x65\x00\x72\x00\x20\x00\x6b\x00\x65\x00\x79\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x1d\x54\x68\x65\x20\x43\x6f\x6e\x73\x74\x72\x61\ -\x69\x6e\x69\x6e\x67\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\ -\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x54\x00\x68\x00\x65\ -\x00\x20\x00\x61\x00\x6c\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\ -\x00\x69\x00\x66\x00\x69\x00\x65\x00\x72\x00\x20\x00\x6b\x00\x65\ -\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\x20\ -\x61\x6c\x74\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x7e\x00\x46\x00\x61\x00\x72\x00\x67\ -\x00\x65\x00\x74\x00\x69\x00\x6c\x00\x6f\x00\x72\x00\x64\x00\x6e\ -\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x66\x00\x69\x00\x6c\x00\x20\ -\x00\x66\x00\x6f\x00\x72\x00\x20\x00\xe5\x00\x20\x00\x6f\x00\x76\ -\x00\x65\x00\x72\x00\x73\x00\x65\x00\x74\x00\x74\x00\x65\x00\x20\ -\x00\x64\x00\x78\x00\x66\x00\x20\x00\x66\x00\x61\x00\x72\x00\x67\ -\x00\x65\x00\x72\x00\x20\x00\x74\x00\x69\x00\x6c\x00\x20\x00\x6c\ -\x00\x69\x00\x6e\x00\x6a\x00\x65\x00\x62\x00\x72\x00\x65\x00\x64\ -\x00\x64\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x41\ -\x54\x68\x65\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\ -\x67\x20\x66\x69\x6c\x65\x20\x66\x6f\x72\x20\x74\x72\x61\x6e\x73\ -\x6c\x61\x74\x69\x6e\x67\x20\x64\x78\x66\x20\x63\x6f\x6c\x6f\x72\ -\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\ -\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x70\x00\x53\x00\x74\x00\x61\x00\ -\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x6d\x00\x61\x00\x6c\x00\ -\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\x62\x00\x72\x00\x75\x00\ -\x6b\x00\x65\x00\x73\x00\x20\x00\x6e\x00\xe5\x00\x72\x00\x20\x00\ -\x64\x00\x75\x00\x20\x00\x6f\x00\x70\x00\x70\x00\x72\x00\x65\x00\ -\x74\x00\x74\x00\x65\x00\x72\x00\x20\x00\x65\x00\x74\x00\x20\x00\ -\x6e\x00\x79\x00\x74\x00\x74\x00\x20\x00\x74\x00\x65\x00\x67\x00\ -\x6e\x00\x65\x00\x61\x00\x72\x00\x6b\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x3d\x54\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x74\ -\x65\x6d\x70\x6c\x61\x74\x65\x20\x74\x6f\x20\x75\x73\x65\x20\x77\ -\x68\x65\x6e\x20\x63\x72\x65\x61\x74\x69\x6e\x67\x20\x61\x20\x6e\ -\x65\x77\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x73\x68\x65\x65\x74\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x84\x00\x41\x00\x6e\x00\x74\x00\x61\ -\x00\x6c\x00\x6c\x00\x20\x00\x64\x00\x65\x00\x73\x00\x69\x00\x6d\ -\x00\x61\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x69\x00\x20\x00\x69\ -\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x65\x00\x20\x00\x6b\ -\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x69\x00\x6e\x00\x61\x00\x74\ -\x00\x6f\x00\x70\x00\x65\x00\x72\x00\x61\x00\x73\x00\x6a\x00\x6f\ -\x00\x6e\x00\x65\x00\x72\x00\x20\x00\x28\x00\x66\x00\x2e\x00\x65\ -\x00\x6b\x00\x73\x00\x2e\x00\x20\x00\x33\x00\x20\x00\x3d\x00\x20\ -\x00\x30\x00\x2c\x00\x30\x00\x30\x00\x31\x00\x29\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x4d\x54\x68\x65\x20\x6e\x75\x6d\x62\x65\x72\ -\x20\x6f\x66\x20\x64\x65\x63\x69\x6d\x61\x6c\x73\x20\x69\x6e\x20\ -\x69\x6e\x74\x65\x72\x6e\x61\x6c\x20\x63\x6f\x6f\x72\x64\x69\x6e\ -\x61\x74\x65\x73\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x20\ -\x28\x66\x6f\x72\x20\x65\x78\x2e\x20\x33\x20\x3d\x20\x30\x2e\x30\ -\x30\x31\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x9c\x00\x54\x00\x68\x00\ -\x65\x00\x20\x00\x72\x00\x61\x00\x64\x00\x69\x00\x75\x00\x73\x00\ -\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x6e\x00\x61\x00\ -\x70\x00\x70\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x6f\x00\ -\x20\x00\x73\x00\x70\x00\x65\x00\x63\x00\x69\x00\x61\x00\x6c\x00\ -\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\x00\x2e\x00\ -\x20\x00\x53\x00\x65\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ -\x30\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x6f\x00\ -\x20\x00\x64\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x63\x00\ -\x65\x00\x20\x00\x28\x00\x69\x00\x6e\x00\x66\x00\x69\x00\x6e\x00\ -\x69\x00\x74\x00\x65\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x4e\x54\x68\x65\x20\x72\x61\x64\x69\x75\x73\x20\x66\x6f\x72\x20\ -\x73\x6e\x61\x70\x70\x69\x6e\x67\x20\x74\x6f\x20\x73\x70\x65\x63\ -\x69\x61\x6c\x20\x70\x6f\x69\x6e\x74\x73\x2e\x20\x53\x65\x74\x20\ -\x74\x6f\x20\x30\x20\x66\x6f\x72\x20\x6e\x6f\x20\x64\x69\x73\x74\ -\x61\x6e\x63\x65\x20\x28\x69\x6e\x66\x69\x6e\x69\x74\x65\x29\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x2a\x00\x54\x00\x68\x00\x65\x00\x20\x00\ -\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\ -\x69\x00\x66\x00\x69\x00\x65\x00\x72\x00\x20\x00\x6b\x00\x65\x00\ -\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x54\x68\x65\x20\x73\ -\x6e\x61\x70\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x44\x00\x54\x00\x68\x00\x65\x00\x20\ -\x00\x73\x00\x70\x00\x61\x00\x63\x00\x69\x00\x6e\x00\x67\x00\x20\ -\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\ -\x00\x65\x00\x61\x00\x63\x00\x68\x00\x20\x00\x67\x00\x72\x00\x69\ -\x00\x64\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x22\x54\x68\x65\x20\x73\x70\x61\x63\x69\x6e\ -\x67\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x65\x61\x63\x68\x20\x67\ -\x72\x69\x64\x20\x6c\x69\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x9e\ -\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\ -\x00\x74\x00\x68\x00\x65\x00\x20\x00\x55\x00\x49\x00\x20\x00\x6d\ -\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x77\ -\x00\x68\x00\x69\x00\x63\x00\x68\x00\x20\x00\x74\x00\x68\x00\x65\ -\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x6d\ -\x00\x6f\x00\x64\x00\x75\x00\x6c\x00\x65\x00\x20\x00\x77\x00\x69\ -\x00\x6c\x00\x6c\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x3a\ -\x00\x20\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\ -\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x77\x00\x69\ -\x00\x6c\x00\x6c\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\ -\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x44\x00\x72\x00\x61\ -\x00\x66\x00\x74\x00\x20\x00\x73\x00\x65\x00\x74\x00\x74\x00\x69\ -\x00\x6e\x00\x67\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x61\ -\x00\x20\x00\x73\x00\x65\x00\x70\x00\x61\x00\x72\x00\x61\x00\x74\ -\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\ -\x00\x72\x00\x2c\x00\x20\x00\x77\x00\x68\x00\x69\x00\x6c\x00\x65\ -\x00\x20\x00\x74\x00\x61\x00\x73\x00\x6b\x00\x62\x00\x61\x00\x72\ -\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x77\x00\x69\ -\x00\x6c\x00\x6c\x00\x20\x00\x75\x00\x73\x00\x65\x00\x20\x00\x74\ -\x00\x68\x00\x65\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\ -\x00\x41\x00\x44\x00\x20\x00\x54\x00\x61\x00\x73\x00\x6b\x00\x76\ -\x00\x69\x00\x65\x00\x77\x00\x20\x00\x73\x00\x79\x00\x73\x00\x74\ -\x00\x65\x00\x6d\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\ -\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x74\x00\x73\x00\x20\x00\x75\ -\x00\x73\x00\x65\x00\x72\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\ -\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\xcf\x54\x68\x69\x73\x20\x69\x73\x20\ -\x74\x68\x65\x20\x55\x49\x20\x6d\x6f\x64\x65\x20\x69\x6e\x20\x77\ -\x68\x69\x63\x68\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\x20\x6d\ -\x6f\x64\x75\x6c\x65\x20\x77\x69\x6c\x6c\x20\x77\x6f\x72\x6b\x3a\ -\x20\x54\x6f\x6f\x6c\x62\x61\x72\x20\x6d\x6f\x64\x65\x20\x77\x69\ -\x6c\x6c\x20\x70\x6c\x61\x63\x65\x20\x61\x6c\x6c\x20\x44\x72\x61\ -\x66\x74\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x20\x69\x6e\x20\x61\ -\x20\x73\x65\x70\x61\x72\x61\x74\x65\x20\x74\x6f\x6f\x6c\x62\x61\ -\x72\x2c\x20\x77\x68\x69\x6c\x65\x20\x74\x61\x73\x6b\x62\x61\x72\ -\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x75\x73\x65\x20\x74\ -\x68\x65\x20\x46\x72\x65\x65\x43\x41\x44\x20\x54\x61\x73\x6b\x76\ -\x69\x65\x77\x20\x73\x79\x73\x74\x65\x6d\x20\x66\x6f\x72\x20\x61\ -\x6c\x6c\x20\x69\x74\x73\x20\x75\x73\x65\x72\x20\x69\x6e\x74\x65\ -\x72\x61\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x80\x00\ -\x44\x00\x65\x00\x74\x00\x74\x00\x65\x00\x20\x00\x65\x00\x72\x00\ -\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\ -\x64\x00\x20\x00\x66\x00\x61\x00\x72\x00\x67\x00\x65\x00\x20\x00\ -\x66\x00\x6f\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x6b\x00\x74\x00\x65\x00\x72\x00\x20\x00\x74\x00\x65\x00\x67\x00\ -\x6e\x00\x65\x00\x74\x00\x20\x00\x69\x00\x20\x00\x6b\x00\x6f\x00\ -\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x73\x00\x6a\x00\ -\x6f\x00\x6e\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x73\x00\x2e\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x54\x68\x69\x73\x20\x69\x73\ -\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ -\x6f\x72\x20\x66\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\ -\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x20\x77\x68\x69\x6c\x65\ -\x20\x69\x6e\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\ -\x20\x6d\x6f\x64\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\xda\x00\x44\ -\x00\x65\x00\x74\x00\x74\x00\x65\x00\x20\x00\x65\x00\x72\x00\x20\ -\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\ -\x00\x73\x00\x6b\x00\x72\x00\x69\x00\x66\x00\x74\x00\x20\x00\x66\ -\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x74\ -\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x20\x00\x6f\x00\x67\x00\x20\ -\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x69\x00\x6d\ -\x00\x65\x00\x6e\x00\x73\x00\x6a\x00\x6f\x00\x6e\x00\x65\x00\x72\ -\x00\x2e\x00\x20\x00\x44\x00\x65\x00\x74\x00\x20\x00\x6b\x00\x61\ -\x00\x6e\x00\x20\x00\x76\x00\xe6\x00\x72\x00\x65\x00\x20\x00\x65\ -\x00\x74\x00\x20\x00\x73\x00\x6b\x00\x72\x00\x69\x00\x66\x00\x74\ -\x00\x6e\x00\x61\x00\x76\x00\x6e\x00\x20\x00\x73\x00\x6f\x00\x6d\ -\x00\x20\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x22\ -\x00\x2c\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x74\x00\x61\ -\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x73\x00\x74\x00\x69\ -\x00\x6c\x00\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\x22\x00\x73\ -\x00\x61\x00\x6e\x00\x73\x00\x22\x00\x2c\x00\x20\x00\x22\x00\x73\ -\x00\x65\x00\x72\x00\x69\x00\x66\x00\x22\x00\x20\x00\x65\x00\x6c\ -\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x22\x00\x6d\x00\x6f\x00\x6e\ -\x00\x6f\x00\x22\x00\x2c\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x73\ -\x00\x6b\x00\x72\x00\x69\x00\x66\x00\x74\x00\x66\x00\x61\x00\x6d\ -\x00\x69\x00\x6c\x00\x69\x00\x65\x00\x20\x00\x73\x00\x6f\x00\x6d\ -\x00\x20\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x2c\ -\x00\x20\x00\x48\x00\x65\x00\x6c\x00\x76\x00\x65\x00\x74\x00\x69\ -\x00\x63\x00\x61\x00\x2c\x00\x20\x00\x73\x00\x61\x00\x6e\x00\x73\ -\x00\x22\x00\x20\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\ -\x00\x65\x00\x74\x00\x20\x00\x6e\x00\x61\x00\x76\x00\x6e\x00\x20\ -\x00\x6d\x00\x65\x00\x64\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x73\ -\x00\x74\x00\x69\x00\x6c\x00\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\ -\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x3a\x00\x42\ -\x00\x6f\x00\x6c\x00\x64\x00\x22\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\xf2\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\ -\x66\x61\x75\x6c\x74\x20\x66\x6f\x6e\x74\x20\x6e\x61\x6d\x65\x20\ -\x66\x6f\x72\x20\x61\x6c\x6c\x20\x44\x72\x61\x66\x74\x20\x74\x65\ -\x78\x74\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\ -\x6e\x73\x2e\x0a\x49\x74\x20\x63\x61\x6e\x20\x62\x65\x20\x61\x20\ -\x66\x6f\x6e\x74\x20\x6e\x61\x6d\x65\x20\x73\x75\x63\x68\x20\x61\ -\x73\x20\x22\x41\x72\x69\x61\x6c\x22\x2c\x20\x61\x20\x64\x65\x66\ -\x61\x75\x6c\x74\x20\x73\x74\x79\x6c\x65\x20\x73\x75\x63\x68\x20\ -\x61\x73\x20\x22\x73\x61\x6e\x73\x22\x2c\x20\x22\x73\x65\x72\x69\ -\x66\x22\x0a\x6f\x72\x20\x22\x6d\x6f\x6e\x6f\x22\x2c\x20\x6f\x72\ -\x20\x61\x20\x66\x61\x6d\x69\x6c\x79\x20\x73\x75\x63\x68\x20\x61\ -\x73\x20\x22\x41\x72\x69\x61\x6c\x2c\x48\x65\x6c\x76\x65\x74\x69\ -\x63\x61\x2c\x73\x61\x6e\x73\x22\x20\x6f\x72\x20\x61\x20\x6e\x61\ -\x6d\x65\x20\x77\x69\x74\x68\x20\x61\x20\x73\x74\x79\x6c\x65\x0a\ -\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\x72\x69\x61\x6c\x3a\x42\ -\x6f\x6c\x64\x22\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6a\x00\x44\x00\x65\ -\x00\x74\x00\x74\x00\x65\x00\x20\x00\x65\x00\x72\x00\x20\x00\x73\ -\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x20\ -\x00\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\x00\x6e\x00\x61\ -\x00\x76\x00\x6e\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6b\ -\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x73\ -\x00\x6a\x00\x6f\x00\x6e\x00\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\ -\x00\x74\x00\x72\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\ -\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\ -\x75\x6c\x74\x20\x67\x72\x6f\x75\x70\x20\x6e\x61\x6d\x65\x20\x66\ -\x6f\x72\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\ -\x67\x65\x6f\x6d\x65\x74\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x88\ -\x00\x44\x00\x65\x00\x74\x00\x74\x00\x65\x00\x20\x00\x65\x00\x72\ -\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x6f\x00\x64\x00\x65\x00\x6e\ -\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x67\x00\x74\x00\x20\x00\x66\ -\x00\x6f\x00\x72\x00\x20\x00\xe5\x00\x20\x00\x69\x00\x6d\x00\x70\ -\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x00\x65\x00\x20\x00\x53\ -\x00\x56\x00\x47\x00\x2d\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ -\x00\x74\x00\x66\x00\x61\x00\x72\x00\x67\x00\x65\x00\x72\x00\x20\ -\x00\x74\x00\x69\x00\x6c\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\ -\x00\x43\x00\x41\x00\x44\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x47\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x65\ -\x74\x68\x6f\x64\x20\x63\x68\x6f\x6f\x73\x65\x64\x20\x66\x6f\x72\ -\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\x53\x56\x47\x20\x6f\ -\x62\x6a\x65\x63\x74\x20\x63\x6f\x6c\x6f\x72\x20\x69\x6e\x74\x6f\ -\x20\x46\x72\x65\x65\x43\x41\x44\x2e\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\ -\xcc\x00\x44\x00\x65\x00\x74\x00\x74\x00\x65\x00\x20\x00\x65\x00\ -\x72\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x6f\x00\x64\x00\x65\x00\ -\x6e\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x67\x00\x74\x00\x20\x00\ -\x66\x00\x6f\x00\x72\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\ -\x72\x00\x74\x00\x20\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\ -\x20\x00\x6f\x00\x76\x00\x65\x00\x72\x00\x73\x00\x65\x00\x74\x00\ -\x74\x00\x65\x00\x6c\x00\x73\x00\x65\x00\x20\x00\x61\x00\x76\x00\ -\x20\x00\x44\x00\x58\x00\x46\x00\x2d\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x6b\x00\x74\x00\x66\x00\x61\x00\x72\x00\x67\x00\x65\x00\ -\x72\x00\x20\x00\x69\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\ -\x43\x00\x41\x00\x44\x00\x2e\x00\x0a\x00\x48\x00\x76\x00\x69\x00\ -\x73\x00\x20\x00\x66\x00\x61\x00\x72\x00\x67\x00\x65\x00\x74\x00\ -\x69\x00\x6c\x00\x6f\x00\x72\x00\x64\x00\x6e\x00\x69\x00\x6e\x00\ -\x67\x00\x20\x00\x65\x00\x72\x00\x20\x00\x76\x00\x61\x00\x6c\x00\ -\x67\x00\x74\x00\x20\x00\x6d\x00\xe5\x00\x20\x00\x64\x00\x75\x00\ -\x20\x00\x76\x00\x65\x00\x6c\x00\x67\x00\x65\x00\x20\x00\x65\x00\ -\x6e\x00\x20\x00\x66\x00\x61\x00\x72\x00\x67\x00\x65\x00\x74\x00\ -\x69\x00\x6c\x00\x6f\x00\x72\x00\x64\x00\x6e\x00\x69\x00\x6e\x00\ -\x67\x00\x73\x00\x66\x00\x69\x00\x6c\x00\x20\x00\x73\x00\x6f\x00\ -\x6d\x00\x20\x00\x69\x00\x6e\x00\x6e\x00\x65\x00\x68\x00\x6f\x00\ -\x6c\x00\x64\x00\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x20\x00\ -\x6f\x00\x76\x00\x65\x00\x72\x00\x73\x00\x65\x00\x74\x00\x74\x00\ -\x65\x00\x6c\x00\x73\x00\x65\x00\x74\x00\x61\x00\x62\x00\x65\x00\ -\x6c\x00\x6c\x00\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\x76\x00\ -\x69\x00\x6c\x00\x20\x00\x6b\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\ -\x72\x00\x74\x00\x65\x00\x72\x00\x65\x00\x20\x00\x66\x00\x61\x00\ -\x72\x00\x67\x00\x65\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x69\x00\ -\x6c\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x6a\x00\x65\x00\x62\x00\ -\x72\x00\x65\x00\x64\x00\x64\x00\x65\x00\x2e\x00\x20\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\xe3\x54\x68\x69\x73\x20\x69\x73\x20\x74\ -\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x63\x68\x6f\x6f\x73\x65\ -\x64\x20\x66\x6f\x72\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\ -\x6f\x72\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6e\x67\x20\x44\ -\x58\x46\x20\x6f\x62\x6a\x65\x63\x74\x20\x63\x6f\x6c\x6f\x72\x20\ -\x69\x6e\x74\x6f\x20\x46\x72\x65\x65\x43\x41\x44\x2e\x20\x0a\x49\ -\x66\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\ -\x69\x73\x20\x63\x68\x6f\x6f\x73\x65\x64\x2c\x20\x79\x6f\x75\x20\ -\x6d\x75\x73\x74\x20\x63\x68\x6f\x6f\x73\x65\x20\x61\x20\x63\x6f\ -\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\ -\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x61\x20\x74\x72\ -\x61\x6e\x73\x6c\x61\x74\x69\x6f\x6e\x20\x74\x61\x62\x6c\x65\x20\ -\x74\x68\x61\x74\x20\x77\x69\x6c\x6c\x20\x63\x6f\x6e\x76\x65\x72\ -\x74\x20\x63\x6f\x6c\x6f\x72\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\ -\x6e\x65\x77\x69\x64\x74\x68\x73\x2e\x0a\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\xfc\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\ -\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x69\ -\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\ -\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ -\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\ -\x00\x6e\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x73\x00\x20\ -\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x6f\ -\x00\x73\x00\x65\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\ -\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x61\x00\x72\ -\x00\x65\x00\x20\x00\x76\x00\x65\x00\x72\x00\x74\x00\x69\x00\x63\ -\x00\x61\x00\x6c\x00\x2e\x00\x20\x00\x44\x00\x65\x00\x66\x00\x61\ -\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x69\x00\x73\x00\x20\x00\x6c\ -\x00\x65\x00\x66\x00\x74\x00\x2c\x00\x20\x00\x77\x00\x68\x00\x69\ -\x00\x63\x00\x68\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\ -\x00\x65\x00\x20\x00\x49\x00\x53\x00\x4f\x00\x20\x00\x73\x00\x74\ -\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x2e\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x7e\x54\x68\x69\x73\x20\x69\x73\x20\ -\x74\x68\x65\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\ -\x6f\x66\x20\x74\x68\x65\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ -\x20\x74\x65\x78\x74\x73\x20\x77\x68\x65\x6e\x20\x74\x68\x6f\x73\ -\x65\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x61\x72\x65\ -\x20\x76\x65\x72\x74\x69\x63\x61\x6c\x2e\x20\x44\x65\x66\x61\x75\ -\x6c\x74\x20\x69\x73\x20\x6c\x65\x66\x74\x2c\x20\x77\x68\x69\x63\ -\x68\x20\x69\x73\x20\x74\x68\x65\x20\x49\x53\x4f\x20\x73\x74\x61\ -\x6e\x64\x61\x72\x64\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xec\x00\x44\ -\x00\x65\x00\x74\x00\x74\x00\x65\x00\x20\x00\x65\x00\x72\x00\x20\ -\x00\x74\x00\x6f\x00\x6c\x00\x65\x00\x72\x00\x61\x00\x6e\x00\x73\ -\x00\x65\x00\x76\x00\x65\x00\x72\x00\x64\x00\x69\x00\x65\x00\x6e\ -\x00\x20\x00\x62\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x20\x00\x61\ -\x00\x76\x00\x20\x00\x66\x00\x75\x00\x6e\x00\x6b\x00\x73\x00\x6a\ -\x00\x6f\x00\x6e\x00\x65\x00\x72\x00\x2e\x00\x20\x00\x56\x00\x65\ -\x00\x72\x00\x64\x00\x69\x00\x65\x00\x72\x00\x20\x00\x6d\x00\x65\ -\x00\x64\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x73\x00\x6b\x00\x6a\ -\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x75\x00\x6e\ -\x00\x64\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x6e\ -\x00\x65\x00\x20\x00\x76\x00\x65\x00\x72\x00\x64\x00\x69\x00\x65\ -\x00\x6e\x00\x20\x00\x76\x00\x69\x00\x6c\x00\x20\x00\x62\x00\x6c\ -\x00\x69\x00\x20\x00\x62\x00\x65\x00\x68\x00\x61\x00\x6e\x00\x64\ -\x00\x6c\x00\x65\x00\x74\x00\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\ -\x00\x6c\x00\x69\x00\x6b\x00\x65\x00\x2e\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x7b\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\ -\x76\x61\x6c\x75\x65\x20\x75\x73\x65\x64\x20\x62\x79\x20\x66\x75\ -\x6e\x63\x74\x69\x6f\x6e\x73\x20\x74\x68\x61\x74\x20\x75\x73\x65\ -\x20\x61\x20\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x2e\x0a\x56\x61\ -\x6c\x75\x65\x73\x20\x77\x69\x74\x68\x20\x64\x69\x66\x66\x65\x72\ -\x65\x6e\x63\x65\x73\x20\x62\x65\x6c\x6f\x77\x20\x74\x68\x69\x73\ -\x20\x76\x61\x6c\x75\x65\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x74\ -\x72\x65\x61\x74\x65\x64\x20\x61\x73\x20\x73\x61\x6d\x65\x2e\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x12\x00\x54\x00\x6f\x00\x6c\x00\x65\x00\ -\x72\x00\x61\x00\x6e\x00\x73\x00\x65\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x09\x54\x6f\x6c\x65\x72\x61\x6e\x63\x65\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x0e\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\ -\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x54\x6f\x6f\x6c\ -\x62\x61\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\x00\x42\x00\x72\x00\ -\x75\x00\x6b\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\ -\x61\x00\x72\x00\x64\x00\x20\x00\x66\x00\x61\x00\x72\x00\x67\x00\ -\x65\x00\x20\x00\x6f\x00\x67\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\ -\x6a\x00\x65\x00\x62\x00\x72\x00\x65\x00\x64\x00\x64\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x55\x73\x65\x20\x64\x65\x66\ -\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\ -\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\ -\x00\x55\x00\x73\x00\x65\x00\x20\x00\x67\x00\x72\x00\x69\x00\x64\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x55\x73\x65\x20\x67\x72\ -\x69\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x48\x00\x56\x00\x65\x00\x72\ -\x00\x74\x00\x69\x00\x63\x00\x61\x00\x6c\x00\x20\x00\x64\x00\x69\ -\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x73\ -\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\x00\x6f\x00\x72\ -\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x74\x00\x69\x00\x6f\ -\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x56\x65\x72\x74\ -\x69\x63\x61\x6c\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\ -\x74\x65\x78\x74\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x01\x82\x00\x56\x00\x65\x00\x64\x00\x20\ -\x00\x65\x00\x6b\x00\x73\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\ -\x00\x61\x00\x76\x00\x20\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x6e\ -\x00\x65\x00\x73\x00\x20\x00\x74\x00\x69\x00\x6c\x00\x20\x00\x44\ -\x00\x58\x00\x46\x00\x20\x00\x62\x00\x6c\x00\x69\x00\x72\x00\x20\ -\x00\x64\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x6e\x00\x76\x00\x65\ -\x00\x72\x00\x74\x00\x65\x00\x72\x00\x74\x00\x20\x00\x74\x00\x69\ -\x00\x6c\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x6c\x00\x69\ -\x00\x6e\x00\x6a\x00\x65\x00\x72\x00\x2e\x00\x20\x00\x44\x00\x65\ -\x00\x6e\x00\x6e\x00\x65\x00\x20\x00\x76\x00\x65\x00\x72\x00\x64\ -\x00\x69\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x72\x00\x20\x00\x64\ -\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x73\x00\x69\ -\x00\x6d\x00\x61\x00\x6c\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x6e\ -\x00\x67\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x66\x00\x6f\x00\x72\ -\x00\x20\x00\x68\x00\x76\x00\x65\x00\x72\x00\x20\x00\x61\x00\x76\ -\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x6c\x00\x69\x00\x6e\ -\x00\x6a\x00\x65\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\ -\x00\x74\x00\x65\x00\x6e\x00\x65\x00\x2e\x00\x20\x00\x48\x00\x76\ -\x00\x69\x00\x73\x00\x20\x00\x30\x00\x20\x00\x62\x00\x6c\x00\x69\ -\x00\x72\x00\x20\x00\x68\x00\x65\x00\x6c\x00\x65\x00\x20\x00\x73\ -\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x62\ -\x00\x65\x00\x68\x00\x61\x00\x6e\x00\x64\x00\x6c\x00\x65\x00\x74\ -\x00\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\x65\x00\x74\x00\x20\ -\x00\x72\x00\x65\x00\x74\x00\x74\x00\x20\x00\x73\x00\x65\x00\x67\ -\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\xc2\x57\x68\x65\x6e\x20\x65\x78\x70\x6f\x72\x74\x69\ -\x6e\x67\x20\x73\x70\x6c\x69\x6e\x65\x73\x20\x74\x6f\x20\x44\x58\ -\x46\x2c\x20\x74\x68\x65\x79\x20\x61\x72\x65\x20\x74\x72\x61\x6e\ -\x73\x66\x6f\x72\x6d\x65\x64\x20\x69\x6e\x20\x70\x6f\x6c\x79\x6c\ -\x69\x6e\x65\x73\x2e\x20\x54\x68\x69\x73\x20\x76\x61\x6c\x75\x65\ -\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\ -\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x65\x61\x63\x68\x20\x6f\ -\x66\x20\x74\x68\x65\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x20\x73\ -\x65\x67\x6d\x65\x6e\x74\x73\x2e\x20\x49\x66\x20\x30\x2c\x20\x74\ -\x68\x65\x6e\x20\x74\x68\x65\x20\x77\x68\x6f\x6c\x65\x20\x73\x70\ -\x6c\x69\x6e\x65\x20\x69\x73\x20\x74\x72\x65\x61\x74\x65\x64\x20\ -\x61\x73\x20\x61\x20\x73\x74\x72\x61\x69\x67\x68\x74\x20\x73\x65\ -\x67\x6d\x65\x6e\x74\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x58\ -\x00\x59\x00\x20\x00\x28\x00\x54\x00\x6f\x00\x70\x00\x70\x00\x29\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x58\x59\x20\x28\x54\x6f\ -\x70\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x58\x00\x5a\x00\x20\ -\x00\x28\x00\x46\x00\x72\x00\x6f\x00\x6e\x00\x74\x00\x29\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0a\x58\x5a\x20\x28\x46\x72\x6f\x6e\ -\x74\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x59\x00\x5a\x00\x20\ -\x00\x28\x00\x53\x00\x69\x00\x64\x00\x65\x00\x29\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x09\x59\x5a\x20\x28\x53\x69\x64\x65\x29\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x06\x00\x61\x00\x6c\x00\x74\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x03\x61\x6c\x74\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x9c\x00\x6d\x00\x65\x00\x72\x00\x6b\x00\x20\x00\x61\x00\x76\ -\x00\x20\x00\x68\x00\x65\x00\x72\x00\x20\x00\x68\x00\x76\x00\x69\ -\x00\x73\x00\x20\x00\x64\x00\x75\x00\x20\x00\x76\x00\x69\x00\x6c\ -\x00\x20\x00\x62\x00\x72\x00\x75\x00\x6b\x00\x65\x00\x20\x00\x66\ -\x00\x61\x00\x72\x00\x67\x00\x65\x00\x2f\x00\x6c\x00\x69\x00\x6e\ -\x00\x6a\x00\x65\x00\x62\x00\x72\x00\x65\x00\x64\x00\x64\x00\x65\ -\x00\x20\x00\x66\x00\x72\x00\x61\x00\x20\x00\x76\x00\x65\x00\x72\ -\x00\x6b\x00\x74\x00\xf8\x00\x79\x00\x6c\x00\x69\x00\x6e\x00\x6a\ -\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\x73\ -\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x4d\x63\x68\x65\x63\x6b\x20\x74\x68\ -\x69\x73\x20\x69\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\ -\x6f\x20\x75\x73\x65\x20\x74\x68\x65\x20\x63\x6f\x6c\x6f\x72\x2f\ -\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\x66\x72\x6f\x6d\x20\x74\ -\x68\x65\x20\x74\x6f\x6f\x6c\x62\x61\x72\x20\x61\x73\x20\x64\x65\ -\x66\x61\x75\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x00\x63\x00\ -\x74\x00\x72\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x63\ -\x74\x72\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x26\x00\x69\x00\x66\x00\ -\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\ -\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\ -\x2c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ -\x73\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\ -\x68\x00\x65\x00\x20\x00\x73\x00\x61\x00\x6d\x00\x65\x00\x20\x00\ -\x6c\x00\x61\x00\x79\x00\x65\x00\x72\x00\x73\x00\x20\x00\x77\x00\ -\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x6a\x00\ -\x6f\x00\x69\x00\x6e\x00\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\ -\x74\x00\x6f\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\ -\x20\x00\x42\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x73\x00\x2c\x00\ -\x20\x00\x74\x00\x75\x00\x72\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\ -\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\x69\x00\x73\x00\ -\x70\x00\x6c\x00\x61\x00\x79\x00\x20\x00\x66\x00\x61\x00\x73\x00\ -\x74\x00\x65\x00\x72\x00\x2c\x00\x20\x00\x62\x00\x75\x00\x74\x00\ -\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ -\x74\x00\x68\x00\x65\x00\x6d\x00\x20\x00\x6c\x00\x65\x00\x73\x00\ -\x73\x00\x20\x00\x65\x00\x61\x00\x73\x00\x69\x00\x6c\x00\x79\x00\ -\x20\x00\x65\x00\x64\x00\x69\x00\x74\x00\x61\x00\x62\x00\x6c\x00\ -\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x93\x69\x66\x20\x74\x68\ -\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\ -\x62\x6a\x65\x63\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\ -\x73\x61\x6d\x65\x20\x6c\x61\x79\x65\x72\x73\x20\x77\x69\x6c\x6c\ -\x20\x62\x65\x20\x6a\x6f\x69\x6e\x65\x64\x20\x69\x6e\x74\x6f\x20\ -\x44\x72\x61\x66\x74\x20\x42\x6c\x6f\x63\x6b\x73\x2c\x20\x74\x75\ -\x72\x6e\x69\x6e\x67\x20\x74\x68\x65\x20\x64\x69\x73\x70\x6c\x61\ -\x79\x20\x66\x61\x73\x74\x65\x72\x2c\x20\x62\x75\x74\x20\x6d\x61\ -\x6b\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\x6c\x65\x73\x73\x20\x65\ -\x61\x73\x69\x6c\x79\x20\x65\x64\x69\x74\x61\x62\x6c\x65\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x6a\x00\x68\x00\x76\x00\x69\x00\x73\x00\x20\ -\x00\x64\x00\x65\x00\x6e\x00\x6e\x00\x65\x00\x20\x00\x65\x00\x72\ -\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x67\x00\x74\x00\x20\x00\x76\ -\x00\x69\x00\x6c\x00\x20\x00\x70\x00\x61\x00\x70\x00\x69\x00\x72\ -\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x72\ -\x00\x20\x00\x6f\x00\x67\x00\x73\x00\xe5\x00\x20\x00\x69\x00\x6d\ -\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x00\x65\x00\x73\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3c\x69\x66\x20\x74\x68\x69\ -\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x70\x61\ -\x70\x65\x72\x20\x73\x70\x61\x63\x65\x20\x6f\x62\x6a\x65\x63\x74\ -\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\ -\x65\x64\x20\x74\x6f\x6f\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x80\x00\x48\ -\x00\x76\x00\x69\x00\x73\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x6e\ -\x00\x65\x00\x20\x00\x65\x00\x72\x00\x20\x00\x61\x00\x76\x00\x6b\ -\x00\x72\x00\x79\x00\x73\x00\x73\x00\x65\x00\x74\x00\x20\x00\x76\ -\x00\x69\x00\x6c\x00\x20\x00\x74\x00\x65\x00\x6b\x00\x73\x00\x74\ -\x00\x65\x00\x72\x00\x2f\x00\x20\x00\x6d\x00\x74\x00\x65\x00\x6b\ -\x00\x73\x00\x74\x00\x65\x00\x72\x00\x20\x00\x69\x00\x6b\x00\x6b\ -\x00\x65\x00\x20\x00\x62\x00\x6c\x00\x69\x00\x20\x00\x69\x00\x6d\ -\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x00\x74\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x34\x69\x66\x20\x74\x68\x69\x73\x20\ -\x69\x73\x20\x75\x6e\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x65\ -\x78\x74\x73\x2f\x6d\x74\x65\x78\x74\x73\x20\x77\x6f\x6e\x27\x74\ -\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x04\x00\x70\x00\x78\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x02\x70\x78\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x73\x00\x68\ -\x00\x69\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ -\x73\x68\x69\x66\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x00\x53\x00\ -\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x66\x00\ -\x61\x00\x72\x00\x67\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ -\x20\x00\x6e\x00\x79\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x6b\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x21\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\ -\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x6f\x62\x6a\ -\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\x00\x73\x00\x74\ -\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x66\x00\x61\ -\x00\x72\x00\x67\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ -\x00\x6d\x00\x61\x00\x67\x00\x6e\x00\x65\x00\x74\x00\x73\x00\x79\ -\x00\x6d\x00\x62\x00\x6f\x00\x6c\x00\x65\x00\x72\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x22\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\ -\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\ -\x20\x73\x79\x6d\x62\x6f\x6c\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4a\ -\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\ -\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x6a\x00\x65\x00\x62\x00\x72\ -\x00\x65\x00\x64\x00\x64\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\ -\x00\x20\x00\x6e\x00\x79\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\ -\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x25\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\ -\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\x66\x6f\x72\x20\x6e\x65\ -\x77\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x0a\x00\x26\x00\x4c\x00\x75\x00\x6b\x00\x6b\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x06\x26\x43\x6c\x6f\x73\x65\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x26\x00\x46\x00\ -\x6f\x00\x72\x00\x74\x00\x73\x00\x65\x00\x74\x00\x74\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x09\x26\x43\x6f\x6e\x74\x69\x6e\x75\x65\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\ -\x00\x26\x00\x4b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x72\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x05\x26\x43\x6f\x70\x79\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x26\x00\ -\x46\x00\x69\x00\x6e\x00\x69\x00\x73\x00\x68\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x07\x26\x46\x69\x6e\x69\x73\x68\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x26\x00\x4f\ -\x00\x43\x00\x43\x00\x2d\x00\x73\x00\x74\x00\x79\x00\x6c\x00\x65\ -\x00\x20\x00\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x11\x26\x4f\x43\x43\x2d\x73\x74\x79\ -\x6c\x65\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x26\x00\x52\x00\x65\x00\ -\x6c\x00\x61\x00\x74\x00\x69\x00\x76\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x09\x26\x52\x65\x6c\x61\x74\x69\x76\x65\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x26\x00\x41\ -\x00\x6e\x00\x67\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x05\x26\x55\x6e\x64\x6f\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x0a\x00\x26\x00\x57\x00\x69\x00\x70\x00\ -\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x57\x69\x70\x65\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\ -\x00\x41\x00\x6b\x00\x74\x00\x69\x00\x76\x00\x20\x00\x6b\x00\x6f\ -\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x6f\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x14\x41\x63\x74\x69\x76\x65\x20\x44\x72\x61\ -\x66\x74\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x58\x00\x41\x00\x6b\x00\x74\ -\x00\x69\x00\x76\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ -\x00\x6b\x00\x74\x00\x20\x00\x6d\x00\xe5\x00\x20\x00\x68\x00\x61\ -\x00\x20\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x6e\ -\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\ -\x00\x74\x00\x2f\x00\x20\x00\x6e\x00\x6f\x00\x64\x00\x65\x00\x72\ -\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x41\x63\x74\x69\ -\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x6d\x75\x73\x74\x20\x68\ -\x61\x76\x65\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\x74\x77\ -\x6f\x20\x70\x6f\x69\x6e\x74\x73\x2f\x6e\x6f\x64\x65\x73\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\x00\ -\x41\x00\x64\x00\x64\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\ -\x74\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\ -\x65\x00\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\ -\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x20\x41\x64\x64\x20\x70\x6f\x69\ -\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\ -\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x41\x00\x70\x00\x65\x00\ -\x72\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x08\x41\x70\x65\x72\x74\x75\x72\x65\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\x56\x00\x69\x00\ -\x6e\x00\x6b\x00\x65\x00\x6c\x00\x20\x00\x70\x00\xe5\x00\x20\x00\ -\xe5\x00\x70\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x3a\x00\x20\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x10\x41\x70\x65\x72\x74\x75\x72\ -\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x42\x00\x72\x00\x75\x00\ -\x6b\x00\x20\x00\x70\x00\xe5\x00\x20\x00\x76\x00\x61\x00\x6c\x00\ -\x67\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x6b\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x19\x41\x70\x70\x6c\x79\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\ -\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\x00\x42\x00\x75\x00\x65\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\x72\x63\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x4b\x00\ -\x61\x00\x6e\x00\x20\x00\x69\x00\x6b\x00\x6b\x00\x65\x00\x20\x00\ -\x61\x00\x76\x00\x73\x00\x65\x00\x74\x00\x74\x00\x65\x00\x20\x00\ -\x64\x00\x65\x00\x6e\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x6b\x00\x74\x00\x74\x00\x79\x00\x70\x00\x65\x00\ -\x6e\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x43\x61\x6e\ -\x6e\x6f\x74\x20\x6f\x66\x66\x73\x65\x74\x20\x74\x68\x69\x73\x20\ -\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x0a\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x53\x00\x65\ -\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x20\x00\x58\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x08\x43\x65\x6e\x74\x65\x72\x20\x58\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x43\ -\x00\x68\x00\x61\x00\x6e\x00\x67\x00\x65\x00\x20\x00\x53\x00\x74\ -\x00\x79\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ -\x43\x68\x61\x6e\x67\x65\x20\x53\x74\x79\x6c\x65\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\xb6\x00\x43\x00\x68\ -\x00\x65\x00\x63\x00\x6b\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ -\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ -\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x73\ -\x00\x68\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x20\x00\x61\x00\x70\ -\x00\x70\x00\x65\x00\x61\x00\x72\x00\x20\x00\x61\x00\x73\x00\x20\ -\x00\x66\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x64\x00\x2c\x00\x20\ -\x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\x77\x00\x69\x00\x73\ -\x00\x65\x00\x20\x00\x69\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\ -\x00\x6c\x00\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\x00\x72\ -\x00\x20\x00\x61\x00\x73\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\ -\x00\x66\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x28\x00\x69\ -\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5b\x43\x68\x65\x63\ -\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x74\x68\x65\x20\x6f\x62\ -\x6a\x65\x63\x74\x20\x73\x68\x6f\x75\x6c\x64\x20\x61\x70\x70\x65\ -\x61\x72\x20\x61\x73\x20\x66\x69\x6c\x6c\x65\x64\x2c\x20\x6f\x74\ -\x68\x65\x72\x77\x69\x73\x65\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\ -\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x77\x69\x72\x65\x66\x72\ -\x61\x6d\x65\x20\x28\x69\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x0c\x00\x53\x00\x69\x00\x72\x00\x6b\x00\ -\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\x69\x72\ -\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x7e\x00\x4b\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x69\x00\ -\x6e\x00\x61\x00\x74\x00\x65\x00\x72\x00\x20\x00\x72\x00\x65\x00\ -\x6c\x00\x61\x00\x74\x00\x69\x00\x76\x00\x74\x00\x20\x00\x74\x00\ -\x69\x00\x6c\x00\x20\x00\x73\x00\x69\x00\x73\x00\x74\x00\x65\x00\ -\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x20\x00\x65\x00\ -\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x61\x00\x62\x00\x73\x00\ -\x6f\x00\x6c\x00\x75\x00\x74\x00\x74\x00\x20\x00\x28\x00\x6d\x00\ -\x65\x00\x6c\x00\x6c\x00\x6f\x00\x6d\x00\x72\x00\x6f\x00\x6d\x00\ -\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x36\x43\x6f\x6f\x72\x64\ -\x69\x6e\x61\x74\x65\x73\x20\x72\x65\x6c\x61\x74\x69\x76\x65\x20\ -\x74\x6f\x20\x6c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x6f\x72\ -\x20\x61\x62\x73\x6f\x6c\x75\x74\x65\x20\x28\x53\x50\x41\x43\x45\ -\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x08\x00\x43\x00\x6f\x00\x70\x00\x79\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x04\x43\x6f\x70\x79\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x14\x00\x43\x00\x72\x00\x65\x00\x61\x00\ -\x74\x00\x65\x00\x20\x00\x41\x00\x72\x00\x63\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x0a\x43\x72\x65\x61\x74\x65\x20\x41\x72\x63\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\ -\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x42\x00\ -\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x0e\x43\x72\x65\x61\x74\x65\x20\x42\x53\x70\x6c\ -\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x1a\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\ -\x20\x00\x43\x00\x69\x00\x72\x00\x63\x00\x6c\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0d\x43\x72\x65\x61\x74\x65\x20\x43\x69\ -\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ -\x00\x20\x00\x44\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\ -\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\ -\x65\x61\x74\x65\x20\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x43\ -\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x50\x00\x6f\ -\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0e\x43\x72\x65\x61\x74\x65\x20\x50\x6f\x6c\x79\x67\ -\x6f\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x20\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\ -\x00\x52\x00\x65\x00\x63\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x6c\ -\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\ -\x74\x65\x20\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x43\x00\x72\ -\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x54\x00\x65\x00\x78\ -\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\ -\x74\x65\x20\x54\x65\x78\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x16\x00\x43\x00\x72\x00\x65\x00\x61\x00\ -\x74\x00\x65\x00\x20\x00\x57\x00\x69\x00\x72\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x57\x69\ -\x72\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x24\x00\x44\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x20\ -\x00\x4d\x00\x65\x00\x61\x00\x73\x00\x75\x00\x72\x00\x65\x00\x6d\ -\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\ -\x44\x65\x6c\x65\x74\x65\x20\x4d\x65\x61\x73\x75\x72\x65\x6d\x65\ -\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x1e\x00\x44\x00\x69\x00\x73\x00\x70\x00\x6c\x00\x61\x00\x79\ -\x00\x20\x00\x6f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x44\x69\x73\x70\x6c\x61\ -\x79\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x44\x00\x69\x00\x73\x00\ -\x74\x00\x61\x00\x6e\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x49\x00\x6b\x00\ -\x6b\x00\x65\x00\x20\x00\x76\x00\x69\x00\x73\x00\x20\x00\x70\x00\ -\x75\x00\x6e\x00\x6b\x00\x74\x00\x65\x00\x72\x00\x20\x00\x70\x00\ -\xe5\x00\x20\x00\x65\x00\x74\x00\x20\x00\x74\x00\x65\x00\x67\x00\ -\x6e\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x70\x00\x6c\x00\x61\x00\ -\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x44\x6f\x20\x6e\x6f\ -\x74\x20\x70\x72\x6f\x6a\x65\x63\x74\x20\x70\x6f\x69\x6e\x74\x73\ -\x20\x74\x6f\x20\x61\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x70\x6c\ -\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x0a\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x05\x44\x72\x61\x66\x74\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x44\x00\x72\ -\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\ -\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x72\x61\x66\ -\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x40\x00\x4b\x00\x61\x00\x6e\x00\x74\x00\ -\x65\x00\x6e\x00\x65\x00\x20\x00\x6b\x00\x72\x00\x79\x00\x73\x00\ -\x73\x00\x65\x00\x72\x00\x20\x00\x69\x00\x6b\x00\x6b\x00\x65\x00\ -\x20\x00\x68\x00\x76\x00\x65\x00\x72\x00\x61\x00\x6e\x00\x64\x00\ -\x72\x00\x65\x00\x21\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x17\x45\x64\x67\x65\x73\x20\x64\x6f\x6e\x27\x74\x20\x69\x6e\x74\ -\x65\x72\x73\x65\x63\x74\x21\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x52\x00\x65\x00\x64\x00\x69\ -\x00\x67\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ -\x45\x64\x69\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x0e\x00\x46\x00\x26\x00\x69\x00\x6c\x00\x6c\x00\x65\ -\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x46\x26\x69\x6c\ -\x6c\x65\x64\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x1c\x00\x46\x00\x61\x00\x72\x00\x67\x00\x65\x00\x20\x00\ -\x70\x00\xe5\x00\x20\x00\x66\x00\x6c\x00\x61\x00\x74\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x46\x61\x63\x65\x20\x43\x6f\ -\x6c\x6f\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x4e\x00\x46\x00\x75\x00\x6c\x00\x6c\x00\x66\x00\xf8\x00\ -\x72\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x67\x00\x20\x00\x6c\x00\ -\x75\x00\x6b\x00\x6b\x00\x65\x00\x72\x00\x20\x00\x67\x00\x6a\x00\ -\x65\x00\x6c\x00\x64\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\ -\x6c\x00\x69\x00\x6e\x00\x6a\x00\x65\x00\x20\x00\x28\x00\x43\x00\ -\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x46\x69\x6e\x69\x73\ -\x68\x65\x73\x20\x61\x6e\x64\x20\x63\x6c\x6f\x73\x65\x73\x20\x74\ -\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\x6e\x65\x20\ -\x28\x43\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x6a\x00\x46\x00\x69\x00\x6e\x00\x69\x00\x73\x00\x68\x00\ -\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\ -\x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x64\x00\ -\x72\x00\x61\x00\x77\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\ -\x72\x00\x20\x00\x65\x00\x64\x00\x69\x00\x74\x00\x69\x00\x6e\x00\ -\x67\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x72\x00\x61\x00\x74\x00\ -\x69\x00\x6f\x00\x6e\x00\x20\x00\x28\x00\x46\x00\x29\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x35\x46\x69\x6e\x69\x73\x68\x65\x73\x20\ -\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x64\x72\x61\x77\ -\x69\x6e\x67\x20\x6f\x72\x20\x65\x64\x69\x74\x69\x6e\x67\x20\x6f\ -\x70\x65\x72\x61\x74\x69\x6f\x6e\x20\x28\x46\x29\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x53\x00\x6b\ -\x00\x72\x00\x69\x00\x66\x00\x74\x00\x73\x00\x74\x00\xf8\x00\x72\ -\x00\x72\x00\x65\x00\x6c\x00\x73\x00\x65\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x09\x46\x6f\x6e\x74\x20\x53\x69\x7a\x65\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x66\x00\x46\x00\ -\x61\x00\x6e\x00\x74\x00\x20\x00\x65\x00\x74\x00\x20\x00\x6c\x00\ -\x75\x00\x6b\x00\x6b\x00\x65\x00\x74\x00\x20\x00\x73\x00\x6b\x00\ -\x69\x00\x73\x00\x73\x00\x65\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x6b\x00\x74\x00\x3a\x00\x20\x00\x6c\x00\x61\x00\x67\x00\x65\x00\ -\x72\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x66\x00\x6c\x00\x61\x00\ -\x74\x00\x65\x00\x20\x00\x61\x00\x76\x00\x20\x00\x64\x00\x65\x00\ -\x74\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x46\x6f\x75\ -\x6e\x64\x20\x31\x20\x63\x6c\x6f\x73\x65\x64\x20\x73\x6b\x65\x74\ -\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x6d\x61\x6b\x69\x6e\ -\x67\x20\x61\x20\x66\x61\x63\x65\x20\x66\x72\x6f\x6d\x20\x69\x74\ -\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x58\x00\x46\x00\x61\x00\x6e\x00\x74\x00\x20\x00\x65\x00\x6e\x00\ -\x20\x00\x66\x00\x6c\x00\x61\x00\x74\x00\x65\x00\x3a\x00\x20\x00\ -\x76\x00\x65\x00\x64\x00\x20\x00\xe5\x00\x20\x00\x65\x00\x6b\x00\ -\x73\x00\x74\x00\x72\x00\x61\x00\x68\x00\x65\x00\x72\x00\x65\x00\ -\x20\x00\x64\x00\x65\x00\x6e\x00\x73\x00\x20\x00\x74\x00\x72\x00\ -\xe5\x00\x64\x00\x65\x00\x72\x00\x20\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x23\x46\x6f\x75\x6e\x64\x20\x31\x20\x66\x61\x63\x65\x3a\ -\x20\x65\x78\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x69\x74\x73\x20\ -\x77\x69\x72\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x5e\x00\x46\x00\x61\x00\x6e\x00\x74\x00\x20\ -\x00\x65\x00\x74\x00\x20\x00\x69\x00\x6b\x00\x6b\x00\x65\x00\x20\ -\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\ -\x00\x69\x00\x73\x00\x6b\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ -\x00\x6b\x00\x74\x00\x3a\x00\x20\x00\x73\x00\x6b\x00\x69\x00\x73\ -\x00\x73\x00\x65\x00\x72\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\ -\x00\x74\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x46\x6f\ -\x75\x6e\x64\x20\x31\x20\x6e\x6f\x6e\x2d\x70\x61\x72\x61\x6d\x65\ -\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x64\x72\ -\x61\x66\x74\x69\x66\x79\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x00\x46\x00\ -\x61\x00\x6e\x00\x74\x00\x20\x00\x65\x00\x6e\x00\x20\x00\xe5\x00\ -\x70\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x72\x00\xe5\x00\x64\x00\ -\x3a\x00\x20\x00\x6c\x00\x75\x00\x6b\x00\x6b\x00\x65\x00\x72\x00\ -\x20\x00\x64\x00\x65\x00\x6e\x00\x20\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x1e\x46\x6f\x75\x6e\x64\x20\x31\x20\x6f\x70\x65\x6e\x20\ -\x77\x69\x72\x65\x3a\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\ -\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x6c\x00\x46\x00\x61\x00\x6e\x00\x74\x00\x20\x00\x65\x00\x74\x00\ -\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\ -\x72\x00\x69\x00\x73\x00\x6b\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x6b\x00\x74\x00\x3a\x00\x20\x00\x62\x00\x72\x00\x79\x00\ -\x74\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x73\x00\ -\x20\x00\x61\x00\x76\x00\x68\x00\x65\x00\x6e\x00\x67\x00\x69\x00\ -\x67\x00\x68\x00\x65\x00\x74\x00\x65\x00\x72\x00\x20\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x35\x46\x6f\x75\x6e\x64\x20\x31\x20\x70\ -\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\ -\x3a\x20\x62\x72\x65\x61\x6b\x69\x6e\x67\x20\x69\x74\x73\x20\x64\ -\x65\x70\x65\x6e\x64\x65\x6e\x63\x69\x65\x73\x0a\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5a\x00\x46\x00\x6f\ -\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\x73\x00\x6f\ -\x00\x6c\x00\x69\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\ -\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ -\x00\x63\x00\x74\x00\x3a\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\ -\x00\x64\x00\x69\x00\x66\x00\x79\x00\x69\x00\x6e\x00\x67\x00\x20\ -\x00\x69\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\ -\x46\x6f\x75\x6e\x64\x20\x31\x20\x73\x6f\x6c\x69\x64\x69\x66\x69\ -\x63\x61\x62\x6c\x65\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x73\x6f\ -\x6c\x69\x64\x69\x66\x79\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x00\x46\x00\ -\x61\x00\x6e\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x72\x00\x3a\x00\ -\x20\x00\x73\x00\x6d\x00\x65\x00\x6c\x00\x74\x00\x65\x00\x72\x00\ -\x20\x00\x64\x00\x65\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x1d\x46\x6f\x75\x6e\x64\x20\x32\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x46\ -\x00\x61\x00\x6e\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x6f\ -\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x72\x00\x3a\ -\x00\x20\x00\x74\x00\x72\x00\x65\x00\x6b\x00\x6b\x00\x65\x00\x72\ -\x00\x20\x00\x64\x00\x65\x00\x20\x00\x66\x00\x72\x00\x61\x00\x20\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x46\x6f\x75\x6e\x64\x20\ -\x32\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x73\x75\x62\x74\x72\ -\x61\x63\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\x00\x46\x00\x61\ -\x00\x6e\x00\x74\x00\x20\x00\x6c\x00\x75\x00\x6b\x00\x6b\x00\x65\ -\x00\x64\x00\x65\x00\x20\x00\x74\x00\x72\x00\xe5\x00\x64\x00\x65\ -\x00\x72\x00\x3a\x00\x20\x00\x6c\x00\x61\x00\x67\x00\x65\x00\x72\ -\x00\x20\x00\x66\x00\x6c\x00\x61\x00\x74\x00\x65\x00\x72\x00\x20\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x46\x6f\x75\x6e\x64\x20\ -\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x73\x3a\x20\x6d\x61\ -\x6b\x69\x6e\x67\x20\x66\x61\x63\x65\x73\x0a\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x56\x00\x46\x00\x61\x00\ -\x6e\x00\x74\x00\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\ -\x65\x00\x72\x00\x3a\x00\x20\x00\x6c\x00\x75\x00\x6b\x00\x6b\x00\ -\x65\x00\x72\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\ -\xe5\x00\x70\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x6b\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x6e\x00\x69\x00\ -\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x46\x6f\x75\x6e\x64\ -\x20\x67\x72\x6f\x75\x70\x73\x3a\x20\x63\x6c\x6f\x73\x69\x6e\x67\ -\x20\x65\x61\x63\x68\x20\x6f\x70\x65\x6e\x20\x6f\x62\x6a\x65\x63\ -\x74\x20\x69\x6e\x73\x69\x64\x65\x0a\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x5a\x00\x46\x00\x6f\x00\x75\x00\ -\x6e\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ -\x74\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\ -\x69\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x63\x00\x75\x00\ -\x72\x00\x76\x00\x65\x00\x73\x00\x3a\x00\x20\x00\x66\x00\x75\x00\ -\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\ -\x6d\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x46\x6f\x75\ -\x6e\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x63\x6f\x6e\x74\x61\ -\x69\x6e\x69\x6e\x67\x20\x63\x75\x72\x76\x65\x73\x3a\x20\x66\x75\ -\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x60\x00\x46\x00\x61\x00\x6e\ -\x00\x74\x00\x20\x00\x62\x00\x61\x00\x72\x00\x65\x00\x20\x00\x74\ -\x00\x72\x00\xe5\x00\x64\x00\x65\x00\x72\x00\x3a\x00\x20\x00\x76\ -\x00\x65\x00\x64\x00\x20\x00\xe5\x00\x20\x00\x65\x00\x6b\x00\x73\ -\x00\x74\x00\x72\x00\x61\x00\x68\x00\x65\x00\x72\x00\x65\x00\x20\ -\x00\x64\x00\x65\x00\x72\x00\x65\x00\x73\x00\x20\x00\x6b\x00\x61\ -\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x20\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x29\x46\x6f\x75\x6e\x64\x20\x6f\x6e\x6c\x79\x20\x77\ -\x69\x72\x65\x73\x3a\x20\x65\x78\x74\x72\x61\x63\x74\x69\x6e\x67\ -\x20\x74\x68\x65\x69\x72\x20\x65\x64\x67\x65\x73\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x00\x46\x00\ -\x61\x00\x6e\x00\x74\x00\x20\x00\x66\x00\x6c\x00\x65\x00\x72\x00\ -\x65\x00\x20\x00\x6b\x00\x61\x00\x6e\x00\x74\x00\x65\x00\x72\x00\ -\x3a\x00\x20\x00\x62\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x72\x00\ -\x20\x00\x64\x00\x65\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x21\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x65\ -\x64\x67\x65\x73\x3a\x20\x77\x69\x72\x69\x6e\x67\x20\x74\x68\x65\ -\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x3e\x00\x46\x00\x61\x00\x6e\x00\x74\x00\x20\x00\x66\x00\x6c\ -\x00\x65\x00\x72\x00\x65\x00\x20\x00\x66\x00\x6c\x00\x61\x00\x74\ -\x00\x65\x00\x72\x00\x3a\x00\x20\x00\x73\x00\x70\x00\x6c\x00\x69\ -\x00\x74\x00\x74\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x46\x6f\x75\x6e\x64\x20\ -\x73\x65\x76\x65\x72\x61\x6c\x20\x66\x61\x63\x65\x73\x3a\x20\x73\ -\x70\x6c\x69\x74\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x66\x00\x46\ -\x00\x61\x00\x6e\x00\x74\x00\x20\x00\x66\x00\x6c\x00\x65\x00\x72\ -\x00\x65\x00\x20\x00\x69\x00\x6b\x00\x6b\x00\x65\x00\x20\x00\x74\ -\x00\x69\x00\x6c\x00\x6b\x00\x6f\x00\x62\x00\x6c\x00\x65\x00\x64\ -\x00\x65\x00\x20\x00\x6b\x00\x61\x00\x6e\x00\x74\x00\x65\x00\x72\ -\x00\x3a\x00\x20\x00\x67\x00\x6a\x00\xf8\x00\x72\x00\x20\x00\x73\ -\x00\x61\x00\x6d\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x61\x00\x74\ -\x00\x74\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x46\x6f\ -\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6e\x6f\x6e\x2d\ -\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64\x20\x65\x64\x67\x65\x73\x3a\ -\x20\x6d\x61\x6b\x69\x6e\x67\x20\x63\x6f\x6d\x70\x6f\x75\x6e\x64\ -\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x74\x00\x46\x00\x61\x00\x6e\x00\x74\x00\x20\x00\x66\x00\x6c\x00\ -\x65\x00\x72\x00\x65\x00\x20\x00\x69\x00\x6b\x00\x6b\x00\x65\x00\ -\x20\x00\x62\x00\x65\x00\x68\x00\x61\x00\x6e\x00\x64\x00\x6c\x00\ -\x69\x00\x6e\x00\x67\x00\x73\x00\x62\x00\x61\x00\x72\x00\x65\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\ -\x72\x00\x3a\x00\x20\x00\x67\x00\x6a\x00\xf8\x00\x72\x00\x20\x00\ -\x73\x00\x61\x00\x6d\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x61\x00\ -\x74\x00\x74\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x46\ -\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6e\x6f\x6e\ -\x2d\x74\x72\x65\x61\x74\x61\x62\x6c\x65\x20\x6f\x62\x6a\x65\x63\ -\x74\x73\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x63\x6f\x6d\x70\x6f\ -\x75\x6e\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x72\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\ -\x00\x73\x00\x65\x00\x76\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\ -\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\ -\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\ -\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\ -\x00\x20\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\ -\x00\x65\x00\x74\x00\x72\x00\x69\x00\x63\x00\x20\x00\x66\x00\x61\ -\x00\x63\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x39\ -\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6f\x62\ -\x6a\x65\x63\x74\x73\x20\x6f\x72\x20\x66\x61\x63\x65\x73\x3a\x20\ -\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x70\x61\x72\x61\x6d\x65\x74\ -\x72\x69\x63\x20\x66\x61\x63\x65\x0a\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x46\x00\x6f\x00\x75\x00\ -\x6e\x00\x64\x00\x20\x00\x73\x00\x65\x00\x76\x00\x65\x00\x72\x00\ -\x61\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ -\x74\x00\x73\x00\x3a\x00\x20\x00\x66\x00\x75\x00\x73\x00\x69\x00\ -\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x0a\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x23\x46\x6f\x75\x6e\x64\x20\x73\ -\x65\x76\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\ -\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x56\x00\x46\x00\x61\ -\x00\x6e\x00\x74\x00\x20\x00\x66\x00\x6c\x00\x65\x00\x72\x00\x65\ -\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\ -\x00\x72\x00\x3a\x00\x20\x00\x74\x00\x72\x00\x65\x00\x6b\x00\x6b\ -\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x66\x00\x72\ -\x00\x61\x00\x20\x00\x66\x00\xf8\x00\x72\x00\x73\x00\x74\x00\x65\ -\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3b\x46\x6f\x75\x6e\ -\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\ -\x73\x3a\x20\x73\x75\x62\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x74\ -\x68\x65\x6d\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x66\x69\x72\ -\x73\x74\x20\x6f\x6e\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x9e\x00\x49\x00\x66\x00\x20\x00\x63\x00\ -\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ -\x61\x00\x6e\x00\x20\x00\x4f\x00\x43\x00\x43\x00\x2d\x00\x73\x00\ -\x74\x00\x79\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x66\x00\ -\x73\x00\x65\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\ -\x20\x00\x62\x00\x65\x00\x20\x00\x70\x00\x65\x00\x72\x00\x66\x00\ -\x6f\x00\x72\x00\x6d\x00\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\ -\x73\x00\x74\x00\x65\x00\x61\x00\x64\x00\x20\x00\x6f\x00\x66\x00\ -\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6c\x00\x61\x00\ -\x73\x00\x73\x00\x69\x00\x63\x00\x20\x00\x6f\x00\x66\x00\x66\x00\ -\x73\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x49\ -\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x6e\x20\x4f\x43\ -\x43\x2d\x73\x74\x79\x6c\x65\x20\x6f\x66\x66\x73\x65\x74\x20\x77\ -\x69\x6c\x6c\x20\x62\x65\x20\x70\x65\x72\x66\x6f\x72\x6d\x65\x64\ -\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x74\x68\x65\x20\ -\x63\x6c\x61\x73\x73\x69\x63\x20\x6f\x66\x66\x73\x65\x74\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\xb4\x00\x48\ -\x00\x76\x00\x69\x00\x73\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x6e\ -\x00\x65\x00\x20\x00\x65\x00\x72\x00\x20\x00\x6d\x00\x65\x00\x72\ -\x00\x6b\x00\x65\x00\x74\x00\x20\x00\x76\x00\x69\x00\x6c\x00\x20\ -\x00\x6b\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x6f\ -\x00\x65\x00\x6e\x00\x20\x00\x69\x00\x6b\x00\x6b\x00\x65\x00\x20\ -\x00\x62\x00\x6c\x00\x69\x00\x20\x00\x66\x00\x75\x00\x6c\x00\x6c\ -\x00\x66\x00\xf8\x00\x72\x00\x74\x00\x20\x00\x66\x00\xf8\x00\x72\ -\x00\x20\x00\x64\x00\x75\x00\x20\x00\x74\x00\x72\x00\x79\x00\x6b\ -\x00\x6b\x00\x65\x00\x72\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x6d\ -\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x6b\x00\x6e\x00\x61\x00\x70\ -\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x69\x00\x67\x00\x6a\x00\x65\ -\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4c\x49\x66\x20\x63\ -\x68\x65\x63\x6b\x65\x64\x2c\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\ -\x77\x69\x6c\x6c\x20\x6e\x6f\x74\x20\x66\x69\x6e\x69\x73\x68\x20\ -\x75\x6e\x74\x69\x6c\x20\x79\x6f\x75\x20\x70\x72\x65\x73\x73\x20\ -\x74\x68\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x62\x75\x74\x74\ -\x6f\x6e\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x78\x00\x48\x00\x76\x00\x69\x00\x73\ -\x00\x20\x00\x6d\x00\x65\x00\x72\x00\x6b\x00\x65\x00\x74\x00\x20\ -\x00\x76\x00\x69\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ -\x00\x6b\x00\x74\x00\x65\x00\x74\x00\x20\x00\x6b\x00\x6f\x00\x70\ -\x00\x69\x00\x65\x00\x72\x00\x65\x00\x73\x00\x20\x00\x69\x00\x20\ -\x00\x73\x00\x74\x00\x65\x00\x64\x00\x65\x00\x74\x00\x20\x00\x66\ -\x00\x6f\x00\x72\x00\x20\x00\xe5\x00\x20\x00\x66\x00\x6c\x00\x79\ -\x00\x74\x00\x74\x00\x65\x00\x73\x00\x20\x00\x28\x00\x43\x00\x29\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x49\x66\x20\x63\x68\x65\ -\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\ -\x6c\x6c\x20\x62\x65\x20\x63\x6f\x70\x69\x65\x64\x20\x69\x6e\x73\ -\x74\x65\x61\x64\x20\x6f\x66\x20\x6d\x6f\x76\x65\x64\x20\x28\x43\ -\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x20\x00\x49\x00\x6e\x00\x73\x00\x74\x00\x61\x00\x6c\x00\x6c\x00\ -\x65\x00\x64\x00\x20\x00\x4d\x00\x61\x00\x63\x00\x72\x00\x6f\x00\ -\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x49\x6e\x73\x74\x61\ -\x6c\x6c\x65\x64\x20\x4d\x61\x63\x72\x6f\x73\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x00\x53\x00\x69\x00\ -\x73\x00\x74\x00\x65\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\ -\x74\x00\x20\x00\x68\x00\x61\x00\x72\x00\x20\x00\x62\x00\x6c\x00\ -\x69\x00\x74\x00\x74\x00\x20\x00\x66\x00\x6a\x00\x65\x00\x72\x00\ -\x6e\x00\x65\x00\x74\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x1c\x4c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x68\x61\x73\x20\ -\x62\x65\x65\x6e\x20\x72\x65\x6d\x6f\x76\x65\x64\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x4c\x00\ -\x69\x00\x6e\x00\x6a\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x14\x00\x4c\x00\x69\x00\x6e\x00\x6a\x00\x65\x00\ -\x66\x00\x61\x00\x72\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0a\x4c\x69\x6e\x65\x20\x43\x6f\x6c\x6f\x72\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x4c\x00\ -\x69\x00\x6e\x00\x6a\x00\x65\x00\x62\x00\x72\x00\x65\x00\x64\x00\ -\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4c\x69\x6e\ -\x65\x20\x57\x69\x64\x74\x68\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x0a\x00\x46\x00\x6c\x00\x79\x00\x74\x00\ -\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4d\x6f\x76\x65\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\ -\x49\x00\x6e\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x18\x00\x41\x00\x6e\x00\x74\x00\x61\x00\ -\x6c\x00\x6c\x00\x20\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4e\x75\x6d\x62\x65\x72\x20\ -\x6f\x66\x20\x73\x69\x64\x65\x73\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x12\x00\x41\x00\x76\x00\x73\x00\x65\ -\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x60\x00\x41\x00\x76\x00\x73\ -\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x66\ -\x00\x75\x00\x6e\x00\x67\x00\x65\x00\x72\x00\x65\x00\x72\x00\x20\ -\x00\x62\x00\x61\x00\x72\x00\x65\x00\x20\x00\x70\x00\xe5\x00\x20\ -\x00\x65\x00\x74\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ -\x00\x6b\x00\x74\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x67\x00\x61\ -\x00\x6e\x00\x67\x00\x65\x00\x6e\x00\x20\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x2a\x4f\x66\x66\x73\x65\x74\x20\x6f\x6e\x6c\x79\x20\ -\x77\x6f\x72\x6b\x73\x20\x6f\x6e\x20\x6f\x6e\x65\x20\x6f\x62\x6a\ -\x65\x63\x74\x20\x61\x74\x20\x61\x20\x74\x69\x6d\x65\x0a\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x56\ -\x00\x65\x00\x6c\x00\x67\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ -\x00\x6b\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x50\x69\ -\x63\x6b\x20\x4f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x00\x56\x00\x65\x00\x6c\x00\ -\x67\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x66\x00\x6c\x00\x61\x00\ -\x74\x00\x65\x00\x20\x00\xe5\x00\x20\x00\x64\x00\x65\x00\x66\x00\ -\x69\x00\x6e\x00\x65\x00\x72\x00\x65\x00\x20\x00\x70\x00\x6c\x00\ -\x61\x00\x6e\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x50\ -\x69\x63\x6b\x20\x61\x20\x66\x61\x63\x65\x20\x74\x6f\x20\x64\x65\ -\x66\x69\x6e\x65\x20\x74\x68\x65\x20\x64\x72\x61\x77\x69\x6e\x67\ -\x20\x70\x6c\x61\x6e\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x1a\x00\x56\x00\x65\x00\x6c\x00\x67\x00\ -\x20\x00\xe5\x00\x70\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x3a\x00\ -\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x50\x69\x63\x6b\x20\ -\x61\x70\x65\x72\x74\x75\x72\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\x56\x00\x65\x00\x6c\ -\x00\x67\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x76\ -\x00\x69\x00\x6e\x00\x6b\x00\x65\x00\x6c\x00\x3a\x00\x20\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\x62\x61\x73\ -\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x56\x00\x65\x00\x6c\x00\ -\x67\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x70\x00\x75\x00\ -\x6e\x00\x6b\x00\x74\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x11\x50\x69\x63\x6b\x20\x62\x61\x73\x65\x20\x70\x6f\x69\ -\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x20\x00\x56\x00\x65\x00\x6c\x00\x67\x00\x20\x00\x6d\ -\x00\x69\x00\x64\x00\x74\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\ -\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x50\x69\ -\x63\x6b\x20\x63\x65\x6e\x74\x65\x72\x20\x70\x6f\x69\x6e\x74\x3a\ -\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x1c\x00\x56\x00\x65\x00\x6c\x00\x67\x00\x20\x00\x61\x00\x76\x00\ -\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x3a\x00\x20\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0f\x50\x69\x63\x6b\x20\x64\x69\x73\x74\ -\x61\x6e\x63\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x22\x00\x56\x00\x65\x00\x6c\x00\x67\x00\x20\ -\x00\x73\x00\x6c\x00\x75\x00\x74\x00\x74\x00\x70\x00\x75\x00\x6e\ -\x00\x6b\x00\x74\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x10\x50\x69\x63\x6b\x20\x65\x6e\x64\x20\x70\x6f\x69\x6e\x74\ -\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x26\x00\x56\x00\x65\x00\x6c\x00\x67\x00\x20\x00\x66\x00\xf8\ -\x00\x72\x00\x73\x00\x74\x00\x65\x00\x20\x00\x70\x00\x75\x00\x6e\ -\x00\x6b\x00\x74\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x12\x50\x69\x63\x6b\x20\x66\x69\x72\x73\x74\x20\x70\x6f\x69\ -\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x2e\x00\x56\x00\x65\x00\x6c\x00\x67\x00\x20\x00\x70\ -\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x65\x00\x72\x00\x69\x00\x6e\ -\x00\x67\x00\x73\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x3a\ -\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\ -\x20\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x20\x70\x6f\x69\x6e\x74\x3a\ -\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x7c\x00\x56\x00\x65\x00\x6c\x00\x67\x00\x20\x00\x6e\x00\x65\x00\ -\x73\x00\x74\x00\x65\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\ -\x74\x00\x20\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\x00\ -\x28\x00\x41\x00\x29\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\ -\x61\x00\x76\x00\x73\x00\x6c\x00\x75\x00\x74\x00\x74\x00\x20\x00\ -\x65\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x28\x00\x4c\x00\ -\x29\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\xe5\x00\x20\x00\ -\x6c\x00\x75\x00\x6b\x00\x6b\x00\x65\x00\x3a\x00\x20\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x29\x50\x69\x63\x6b\x20\x6e\x65\x78\x74\ -\x20\x70\x6f\x69\x6e\x74\x2c\x20\x6f\x72\x20\x28\x46\x29\x69\x6e\ -\x69\x73\x68\x20\x6f\x72\x20\x28\x43\x29\x6c\x6f\x73\x65\x3a\x0a\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\ -\x00\x56\x00\x65\x00\x6c\x00\x67\x00\x20\x00\x6e\x00\x65\x00\x73\ -\x00\x74\x00\x65\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\ -\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\ -\x63\x6b\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\ -\x56\x00\x65\x00\x6c\x00\x67\x00\x20\x00\x6d\x00\x6f\x00\x74\x00\ -\x73\x00\x61\x00\x74\x00\x74\x00\x20\x00\x70\x00\x75\x00\x6e\x00\ -\x6b\x00\x74\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x50\ -\x69\x63\x6b\x20\x6f\x70\x70\x6f\x73\x69\x74\x65\x20\x70\x6f\x69\ -\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x1a\x00\x56\x00\x65\x00\x6c\x00\x67\x00\x20\x00\x72\ -\x00\x61\x00\x64\x00\x69\x00\x75\x00\x73\x00\x3a\x00\x20\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0d\x50\x69\x63\x6b\x20\x72\x61\x64\ -\x69\x75\x73\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x2c\x00\x56\x00\x65\x00\x6c\x00\x67\x00\x20\x00\ -\x72\x00\x6f\x00\x74\x00\x61\x00\x73\x00\x6a\x00\x6f\x00\x6e\x00\ -\x73\x00\x76\x00\x69\x00\x6e\x00\x6b\x00\x65\x00\x6c\x00\x3a\x00\ -\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\ -\x72\x6f\x74\x61\x74\x69\x6f\x6e\x20\x61\x6e\x67\x6c\x65\x3a\x0a\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\ -\x00\x56\x00\x65\x00\x6c\x00\x67\x00\x20\x00\x72\x00\x6f\x00\x74\ -\x00\x61\x00\x73\x00\x6a\x00\x6f\x00\x6e\x00\x73\x00\x73\x00\x65\ -\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x3a\x00\x20\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x16\x50\x69\x63\x6b\x20\x72\x6f\x74\x61\x74\ -\x69\x6f\x6e\x20\x63\x65\x6e\x74\x65\x72\x3a\x0a\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\x56\x00\x65\ -\x00\x6c\x00\x67\x00\x20\x00\x73\x00\x6b\x00\x61\x00\x6c\x00\x61\ -\x00\x66\x00\x61\x00\x6b\x00\x74\x00\x6f\x00\x72\x00\x3a\x00\x20\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x50\x69\x63\x6b\x20\x73\ -\x63\x61\x6c\x65\x20\x66\x61\x63\x74\x6f\x72\x3a\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\x56\x00\ -\x65\x00\x6c\x00\x67\x00\x20\x00\x73\x00\x74\x00\x61\x00\x72\x00\ -\x74\x00\x76\x00\x69\x00\x6e\x00\x6b\x00\x65\x00\x6c\x00\x3a\x00\ -\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\x6b\x20\ -\x73\x74\x61\x72\x74\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x56\x00\ -\x65\x00\x6c\x00\x67\x00\x20\x00\x73\x00\x74\x00\x61\x00\x72\x00\ -\x74\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x3a\x00\x20\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\x6b\x20\x73\x74\ -\x61\x72\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x50\x00\x6f\x00\ -\x69\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x50\ -\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x0c\x00\x52\x00\x61\x00\x64\x00\x69\x00\x75\x00\x73\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x61\x64\x69\x75\x73\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\ -\x00\x53\x00\x69\x00\x72\x00\x6b\x00\x65\x00\x6c\x00\x72\x00\x61\ -\x00\x64\x00\x69\x00\x75\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x10\x52\x61\x64\x69\x75\x73\x20\x6f\x66\x20\x43\x69\x72\x63\ -\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x4a\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x20\ -\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x66\ -\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ -\x00\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x20\ -\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x25\x52\x65\x6d\x6f\x76\x65\x20\x70\x6f\x69\ -\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x63\x75\x72\ -\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x52\x00\x6f\x00\ -\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\ -\x6f\x74\x61\x74\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x0c\x00\x53\x00\x6b\x00\x61\x00\x6c\x00\x65\x00\ -\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x53\x63\x61\x6c\x65\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\ -\x00\x56\x00\x65\x00\x6c\x00\x67\x00\x20\x00\x70\x00\x6c\x00\x61\ -\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x65\x6c\x65\ -\x63\x74\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x18\x00\x56\x00\x65\x00\x6c\x00\x67\ -\x00\x20\x00\x58\x00\x59\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\ -\x20\x58\x59\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x56\x00\x65\x00\x6c\x00\ -\x67\x00\x20\x00\x58\x00\x5a\x00\x20\x00\x70\x00\x6c\x00\x61\x00\ -\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\ -\x74\x20\x58\x5a\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x56\x00\x65\x00\x6c\ -\x00\x67\x00\x20\x00\x59\x00\x5a\x00\x20\x00\x70\x00\x6c\x00\x61\ -\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\ -\x63\x74\x20\x59\x5a\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x56\x00\x65\x00\ -\x6c\x00\x67\x00\x20\x00\x65\x00\x74\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\xe5\x00\x20\x00\x66\x00\ -\x6c\x00\x79\x00\x74\x00\x74\x00\x65\x00\x20\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x19\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\ -\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x6d\x6f\x76\x65\x0a\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x00\x56\ -\x00\x65\x00\x6c\x00\x67\x00\x20\x00\x65\x00\x74\x00\x20\x00\x6f\ -\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x74\x00\x69\ -\x00\x6c\x00\x20\x00\xe5\x00\x20\x00\x61\x00\x76\x00\x73\x00\x65\ -\x00\x74\x00\x74\x00\x65\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x1b\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\ -\x63\x74\x20\x74\x6f\x20\x6f\x66\x66\x73\x65\x74\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x56\x00\ -\x65\x00\x6c\x00\x67\x00\x20\x00\x65\x00\x74\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\xe5\x00\x20\x00\ -\x72\x00\x6f\x00\x74\x00\x65\x00\x72\x00\x65\x00\x20\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x1b\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\ -\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x72\x6f\x74\x61\x74\ -\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x32\x00\x56\x00\x65\x00\x6c\x00\x67\x00\x20\x00\x65\x00\x74\ -\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\ -\x00\xe5\x00\x20\x00\x73\x00\x6b\x00\x61\x00\x6c\x00\x65\x00\x72\ -\x00\x65\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x53\x65\ -\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\ -\x6f\x20\x73\x63\x61\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x50\x00\x56\x00\x65\x00\x6c\x00\x67\ -\x00\x20\x00\x65\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ -\x00\x6b\x00\x74\x00\x20\x00\x74\x00\x69\x00\x6c\x00\x20\x00\xe5\ -\x00\x20\x00\x74\x00\x72\x00\x69\x00\x6d\x00\x6d\x00\x65\x00\x2f\ -\x00\x20\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x64\ -\x00\x65\x00\x72\x00\x65\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x20\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\ -\x63\x74\x20\x74\x6f\x20\x74\x72\x69\x6d\x2f\x65\x78\x74\x65\x6e\ -\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x38\x00\x56\x00\x65\x00\x6c\x00\x67\x00\x20\x00\x65\x00\x74\ -\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\ -\x00\xe5\x00\x20\x00\x6f\x00\x70\x00\x70\x00\x67\x00\x72\x00\x61\ -\x00\x64\x00\x65\x00\x72\x00\x65\x00\x20\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x1c\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\ -\x6a\x65\x63\x74\x20\x74\x6f\x20\x75\x70\x67\x72\x61\x64\x65\x0a\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x52\ -\x00\x56\x00\x65\x00\x6c\x00\x67\x00\x20\x00\x70\x00\x6c\x00\x61\ -\x00\x6e\x00\x20\x00\x76\x00\x69\x00\x6e\x00\x6b\x00\x65\x00\x6c\ -\x00\x72\x00\x65\x00\x74\x00\x74\x00\x20\x00\x70\x00\xe5\x00\x20\ -\x00\x67\x00\x6a\x00\x65\x00\x6c\x00\x64\x00\x65\x00\x6e\x00\x64\ -\x00\x65\x00\x20\x00\x76\x00\x69\x00\x73\x00\x6e\x00\x69\x00\x6e\ -\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x53\x65\x6c\x65\ -\x63\x74\x20\x70\x6c\x61\x6e\x65\x20\x70\x65\x72\x70\x65\x6e\x64\ -\x69\x63\x75\x6c\x61\x72\x20\x74\x6f\x20\x74\x68\x65\x20\x63\x75\ -\x72\x72\x65\x6e\x74\x20\x76\x69\x65\x77\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x53\x00\x70\x00\x6c\ -\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x65\x00\x72\x00\x20\x00\x61\ -\x00\x76\x00\x73\x00\x6c\x00\x75\x00\x74\x00\x74\x00\x65\x00\x74\ -\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x53\x70\x6c\x69\ -\x6e\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x63\x6c\x6f\x73\ -\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x16\x00\x53\x00\x74\x00\x61\x00\x72\x00\x74\x00\x20\x00\ -\x41\x00\x6e\x00\x67\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0b\x53\x74\x61\x72\x74\x20\x41\x6e\x67\x6c\x65\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4a\x00\x44\ -\x00\x65\x00\x6e\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\ -\x00\x65\x00\x6b\x00\x74\x00\x74\x00\x79\x00\x70\x00\x65\x00\x6e\ -\x00\x20\x00\x65\x00\x72\x00\x20\x00\x69\x00\x6b\x00\x6b\x00\x65\ -\x00\x20\x00\x72\x00\x65\x00\x64\x00\x69\x00\x67\x00\x65\x00\x72\ -\x00\x62\x00\x61\x00\x72\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x21\x54\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\ -\x70\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x65\x64\x69\x74\x61\x62\ -\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x34\x00\x56\x00\x65\x00\x6b\x00\x73\x00\x6c\x00\x65\x00\ -\x72\x00\x20\x00\x6b\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\ -\x75\x00\x6b\x00\x73\x00\x6a\x00\x6f\x00\x6e\x00\x73\x00\x6d\x00\ -\x6f\x00\x64\x00\x75\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x19\x54\x6f\x67\x67\x6c\x65\x73\x20\x43\x6f\x6e\x73\x74\x72\x75\ -\x63\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x65\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x00\x54\x00\x72\x00\x69\ -\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\x72\x69\x6d\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\ -\x00\x41\x00\x6e\x00\x67\x00\x72\x00\x65\x00\x20\x00\x73\x00\x69\ -\x00\x73\x00\x74\x00\x65\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\ -\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x28\x00\x43\x00\x54\x00\x52\ -\x00\x4c\x00\x2b\x00\x5a\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x1e\x55\x6e\x64\x6f\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\ -\x73\x65\x67\x6d\x65\x6e\x74\x20\x28\x43\x54\x52\x4c\x2b\x5a\x29\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\ -\x00\x56\x00\x69\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ -\x56\x69\x65\x77\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\xa2\x00\x57\x00\x69\x00\x70\x00\x65\x00\x73\x00\x20\ -\x00\x74\x00\x68\x00\x65\x00\x20\x00\x65\x00\x78\x00\x69\x00\x73\ -\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x65\x00\x67\ -\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x66\ -\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6c\x00\x69\ -\x00\x6e\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x73\ -\x00\x74\x00\x61\x00\x72\x00\x74\x00\x73\x00\x20\x00\x61\x00\x67\ -\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\ -\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x73\ -\x00\x74\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\ -\x00\x28\x00\x57\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\ -\x57\x69\x70\x65\x73\x20\x74\x68\x65\x20\x65\x78\x69\x73\x74\x69\ -\x6e\x67\x20\x73\x65\x67\x6d\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\ -\x68\x69\x73\x20\x6c\x69\x6e\x65\x20\x61\x6e\x64\x20\x73\x74\x61\ -\x72\x74\x73\x20\x61\x67\x61\x69\x6e\x20\x66\x72\x6f\x6d\x20\x74\ -\x68\x65\x20\x6c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x28\x57\ -\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x1e\x00\x54\x00\x72\x00\xe5\x00\x64\x00\x20\x00\x65\x00\x72\x00\ -\x20\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x20\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x15\x57\x69\x72\x65\x20\x68\x61\ -\x73\x20\x62\x65\x65\x6e\x20\x63\x6c\x6f\x73\x65\x64\x0a\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x57\ -\x00\x69\x00\x72\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\ -\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x57\x69\x72\x65\ -\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x02\x00\x58\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x01\x58\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x36\x00\x58\x00\x20\x00\x6b\x00\x6f\x00\x6f\x00\x72\x00\ -\x64\x00\x69\x00\x6e\x00\x61\x00\x74\x00\x20\x00\x66\x00\x6f\x00\ -\x72\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x74\x00\x65\x00\x20\x00\ -\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x1a\x58\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x20\ -\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x58\x00\ -\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x58\x59\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x58\x00\ -\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x58\x5a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\x00\x59\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x01\x59\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\x00\x59\x00\x20\x00\x6b\ -\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x69\x00\x6e\x00\x61\x00\x74\ -\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x73\ -\x00\x74\x00\x65\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x59\x20\x63\x6f\x6f\x72\ -\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\ -\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x04\x00\x59\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x02\x59\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x02\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\ -\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x36\x00\x5a\x00\x20\x00\x6b\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\ -\x69\x00\x6e\x00\x61\x00\x74\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ -\x20\x00\x6e\x00\x65\x00\x73\x00\x74\x00\x65\x00\x20\x00\x70\x00\ -\x75\x00\x6e\x00\x6b\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x1a\x5a\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\ -\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x61\x00\x6b\x00\ -\x74\x00\x69\x00\x76\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x6d\x00\ -\x61\x00\x6e\x00\x64\x00\x6f\x00\x3a\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0f\x61\x63\x74\x69\x76\x65\x20\x63\x6f\x6d\x6d\x61\x6e\ -\x64\x3a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x1a\x00\x6b\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\ -\x00\x6f\x00\x6c\x00\x69\x00\x6e\x00\x6a\x00\x65\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x11\x64\x72\x61\x66\x74\x20\x43\x6f\x6d\x6d\ -\x61\x6e\x64\x20\x42\x61\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\ -\x00\x00\x32\x3a\ -\x00\ -\x00\xa7\x87\x78\x9c\xbd\x7d\x09\x78\x1c\xc5\x99\x68\xc9\xd2\xe8\ -\x18\x5d\xb6\x31\xc6\x18\x63\xda\xb2\x11\xb2\x2d\xcb\xc6\x06\x1b\ -\x2b\x60\x90\x25\xcb\xb7\xad\x58\xc2\x57\x78\xe0\xd6\x4c\x8f\xa6\ -\xad\x99\xee\xa1\xbb\x47\x07\xc9\x02\x21\x2c\x10\xc2\x0d\xe1\x0c\ -\xbc\x5c\x10\x72\xed\x66\x5f\x48\x1e\xc9\x06\xc8\xc9\x4b\x20\x6c\ -\xf2\x72\xb0\x8f\x9c\x24\x98\x5c\x64\x43\x42\x12\x92\x5d\x20\xfb\ -\xfe\xfa\xab\xaa\xab\xfa\x18\xa9\xe5\x64\xf7\xe3\x33\x33\xea\xe9\ -\xfa\xeb\xaf\xbf\xfe\xfa\xef\xaa\x3a\xf7\xd1\xec\x82\xa7\x5e\x7e\ -\xcf\xbb\x9f\x59\xb2\xe8\x89\x23\xef\x7b\xec\x87\x9b\x09\x69\xb8\ -\x9b\x10\x72\x90\x90\xfb\xce\x81\xcf\x43\x84\xbc\xa7\x1a\x3e\x0f\ -\xc3\xe7\x3f\x10\x92\x7a\x0e\x9e\x7f\x09\x3e\xbf\x07\x9f\x2f\xc0\ -\xe7\xaf\xe0\xf9\x4d\x84\xd4\x4d\x10\x72\xf4\x32\x42\xb6\xbd\x83\ -\x90\xea\x46\xf6\x59\xfa\x1c\x21\xf9\xb3\x08\x31\xb6\x93\x9a\x87\ -\x26\x09\x71\x7f\x48\x6a\xfe\xb9\x86\x90\xc6\x6d\xec\x73\xa2\x93\ -\xa4\xd6\x6c\x21\xa4\xf9\x1e\xf6\xf9\xce\x37\x91\x54\xff\x57\xe0\ -\xef\x27\xd9\xe7\x3b\xbf\x4f\x52\xfb\xe1\x79\xef\xa5\xec\xf3\xfa\ -\x2a\x92\xfa\xd8\x1f\x08\x59\x70\x25\x49\x3d\xfa\x06\x21\x77\xff\ -\x3f\x92\xfa\xc6\xff\x21\xe4\x1e\x87\xa4\x9e\xff\x7b\x42\x96\x7c\ -\x89\xd4\x7e\xf4\x06\x42\x72\xf7\x93\xd9\x57\x6f\x27\x64\xcf\xb7\ -\xc9\xdc\xd4\x67\x09\x79\x77\x8e\xcc\x7f\x12\xf0\xbd\x3c\x47\x56\ -\x50\x3c\x8a\x8b\xc9\xca\x2f\xff\x23\x7c\xfe\x99\xac\x7c\xde\x20\ -\xc4\x5a\x42\x36\xfe\x78\x1d\x21\x6b\xbf\x48\xce\x7b\xdf\xc9\x84\ -\x5c\xfa\x14\xd9\x74\x3b\xe0\xbf\xee\x07\x64\xdb\xcd\x6f\x23\x64\ -\xd9\x25\x64\x67\xee\x6c\x42\xd6\xd4\xc2\xe7\x06\xf8\xdc\x0a\x9f\ -\x1b\xe1\xf3\x3a\xb2\xf3\xda\xef\x10\x32\x6e\x92\x03\x47\x86\x08\ -\xb9\xf5\x03\xe4\xe0\x1b\x80\x5f\xff\xb3\xe4\xd0\xdd\xa7\x13\x72\ -\xc2\xbd\xec\xf3\xb6\x97\xc8\xd1\x83\xf7\x12\x72\xc3\x1c\x32\xf9\ -\x32\xbc\x7f\xf4\x7f\x91\xcb\xaf\x68\x21\x44\xff\x15\xb9\x7e\xe9\ -\xbb\x09\x39\xe3\x93\xf0\x79\x17\x7c\xbe\x01\x9f\xf7\x10\xd2\xb1\ -\x95\xdc\xfa\xb9\x5f\x02\x1d\x7e\x47\x1e\xda\x70\x3e\x21\xed\xd7\ -\x91\x8f\x5c\x09\x70\xc6\x1e\x24\x4f\xbe\x60\x11\xb2\xf4\x24\xf2\ -\xf4\xc3\xf3\x08\x31\x3f\x46\x5e\x27\x4f\x11\x72\xf5\x1f\xaa\x96\ -\x3c\x0b\xf8\xec\xfe\x6c\x55\xdb\x23\xff\x0e\xfd\x3e\x53\xb5\xfa\ -\xa6\xcb\x61\x0a\x6f\xab\xda\xf6\x97\x0f\x10\x72\xd6\xfe\xaa\xc1\ -\xdf\x7f\x84\x90\xb7\x5e\x59\xb5\x7f\xfe\x0e\x78\xff\xd2\xaa\x91\ -\xe6\xeb\x09\xb9\xb2\xae\xca\x9c\x03\x73\x76\xf3\x67\xab\xae\xda\ -\x98\x06\xfc\x1e\xac\x7a\x57\xbe\x0c\x74\x75\xab\xde\x77\x45\x86\ -\x90\x85\x6f\x54\x7d\xe1\xb9\x1f\x11\x32\xf0\xe7\xaa\x6f\xdd\xfc\ -\x6d\x42\xb6\x5e\x51\xf5\xe3\x39\xbd\x30\xe7\x43\x55\x3f\xfd\x03\ -\xf0\xc3\x1d\xaf\x55\xbd\xfe\x0f\xf0\xfc\xe8\xef\x67\xa5\x1e\x07\ -\xfc\xca\x7b\x66\xf5\x1f\x04\x38\x37\xcf\x9b\x65\x7c\x7c\x98\x90\ -\xfb\xaf\x9b\x65\xd5\xfd\x94\x90\xed\x1f\x9d\x35\xb6\xec\x04\x42\ -\xce\xe9\x9d\xf5\x77\xcf\x5f\x48\xc8\x8e\x9d\xb3\xee\xe8\x5f\x08\ -\xfd\x1d\x9c\xf5\xa1\xce\x13\x81\x5f\x5e\x9f\xf5\x91\xf5\x40\x87\ -\xc2\x63\xb3\xfe\xe9\xb7\x30\x5f\x6f\xff\xec\xac\x27\x3e\x02\x3c\ -\xb5\xfe\xa7\xb3\x3e\x9f\x7b\x85\x90\xa1\x4f\xcc\xfa\xea\xf9\x7f\ -\x24\xe4\x92\x2f\xcd\x7a\xee\x83\x9f\x21\x24\xfb\xfa\xac\xef\x2f\ -\xbc\x83\x90\xda\x3f\x55\x57\x5d\xfd\x65\x42\xfe\xfe\x89\xea\xb9\ -\x77\x1d\x25\xe4\x1d\x1f\xab\x5e\x38\x0f\xe8\xb2\xea\xd3\xd5\x0b\ -\xe7\x03\xdf\xee\x78\xb1\x7a\xf5\x42\x78\x6e\x3d\x5c\x7d\xf9\x53\ -\x9f\x22\xe4\xfc\x05\xd5\xd7\x9d\x06\xf4\x3f\xff\xa5\xea\x07\x0e\ -\x3e\x08\x3c\xbd\xa9\xfa\x93\x0f\xfc\x07\x21\x37\x6e\xa9\xfe\xd4\ -\x57\x61\x7e\x6e\xba\xa2\xfa\xb1\xef\x1c\x23\xc4\x7e\x4b\xf5\x97\ -\xcf\x85\xfe\x2e\xbd\xa1\xfa\x2b\xdf\xbd\x98\x90\xfa\xff\xac\x7e\ -\xba\xf9\x45\x42\x6e\x5f\x50\xfd\x83\x26\x68\x5f\x1c\xab\x7e\xa5\ -\x04\xfc\xb0\xe2\xc6\xea\x57\x1e\x3b\x42\xc8\x89\x55\xd5\xaf\xb5\ -\x02\x3f\xaf\xda\x55\xb3\x64\xe9\x52\x42\x4e\x1b\xaf\xd9\x5f\x7b\ -\x3b\x21\x2b\xdf\x5e\x73\xe4\x6d\x30\xbe\x5b\xff\x50\x33\xf9\x32\ -\xc0\x7f\xfb\x79\x35\x57\x8d\x03\x7f\xec\xa8\xaa\xb9\xf6\xdf\x1f\ -\x20\xe4\x9a\x27\x6b\x6e\x78\x16\xd6\xd4\xc5\x5a\xcd\x7b\xaf\x07\ -\xfa\xa5\x96\xb0\x4f\xe7\x8f\x35\x1f\x3c\x13\xe8\x7b\xdd\x33\x35\ -\x0f\xbf\x04\x7c\xbd\xe6\x6b\x35\x3f\xb1\x60\xad\x35\x94\x6b\x8e\ -\xb5\xc2\xfc\xcc\xfa\x78\xcd\x4b\x3d\xb0\x06\x57\xd6\xd4\xbc\xfc\ -\xdc\xc3\xc0\x6f\x67\xa5\xaa\xdf\x01\xf4\xcb\x7d\x3f\x95\x7a\x1a\ -\xe8\xbc\x89\xa4\x5a\x5f\xf1\x08\x79\xd7\xb9\xa9\x53\x66\x03\x1d\ -\x7a\xae\x4a\xad\x78\x11\xf8\x6b\x5b\x4f\xaa\xef\x4d\x97\xc0\x9a\ -\x7c\x32\x75\xd1\x73\x40\xb7\xd6\xc5\xec\xf3\xfa\x89\x54\xe6\x55\ -\xc0\x77\xeb\x49\x29\xe3\x37\xb0\x1e\x2e\x6b\x49\x5d\xfb\x09\x80\ -\x7f\xeb\xd7\x53\x77\x3e\x0c\x74\x9a\x3b\xc0\x3e\x6f\x7b\x22\xf5\ -\xf1\x9d\xf0\xfc\xfc\x7c\xea\x33\xd5\x5f\x25\x64\xd1\x91\xd4\x63\ -\x4d\x30\x5f\x6f\x3b\x23\xf5\xd8\x4d\xc0\x27\x17\x79\xa9\xc7\xf7\ -\x03\x9c\x2d\x5f\x4f\x7d\x65\x80\xae\xf3\xc9\xd4\x8b\x37\x75\x11\ -\x32\x7b\x47\xea\xb5\x1f\xc0\x7a\xda\x74\x51\xed\xe2\x9f\xc1\x3c\ -\xdc\xf5\xcf\xb5\xcb\x7f\xf3\x61\x90\x07\x4b\x6a\xd7\xbe\x00\xe3\ -\x1a\xbf\xad\xf6\xc0\xc9\x40\x17\x98\xd1\xc3\x2f\x03\xbd\x0a\xbf\ -\xac\x7d\xcb\xb7\xe0\xbd\xee\x9f\xd7\x16\xae\x03\x3e\x38\x77\x67\ -\xad\x77\x2a\xf0\xcd\xc0\x91\xda\x77\xdd\xd9\x47\x48\xd3\xca\xda\ -\xbb\x0e\x7e\x8d\x90\x9d\x56\xed\xe7\xae\x04\xbc\x4e\x79\xad\xf6\ -\x6b\x8f\xa6\x60\xde\xbe\x5b\xfb\x8b\xd4\x1e\x80\x72\x7d\xed\x6f\ -\x3e\x72\x80\x90\x3b\x3f\x5d\xfb\xdb\xa7\x81\x9e\x27\xbf\x50\xfb\ -\x1f\xff\x09\x78\x6f\x7a\xbc\xf6\xf5\x85\xc0\x1f\x67\x7e\xb7\xf6\ -\xf5\xf7\x02\xff\xbf\xeb\x8a\xba\xfa\x5b\x60\x5e\x97\xb7\xd4\x35\ -\xff\xef\x3f\x01\xbf\xad\xae\x6b\xb9\x66\x13\xf0\xfd\xae\xba\xb3\ -\xf3\xb0\xce\xe6\xcf\xaf\x3b\xfb\x17\x30\x6f\x37\xbf\x56\xd7\xd7\ -\xb3\x02\xe8\xf2\x46\xdd\x8e\xd3\x60\x5d\x54\x3d\x5f\xb7\xdb\x6d\ -\x03\xf9\x94\xa9\xdb\xf3\x10\xf0\xe7\xc4\xb5\x75\x07\x9f\xfe\x05\ -\xfc\x7d\x7f\x5d\xe6\x2f\xb0\xae\xe7\x9c\x5a\x77\xe5\x93\x9f\x04\ -\xf9\x48\xea\xae\x73\x60\x1e\x4b\x2f\xd4\x7d\xe0\x18\x3c\xd7\x7e\ -\x5e\xf7\x85\xd7\x61\x7e\x3a\xcf\xad\x3f\xe3\x11\xa0\xdb\x4d\xed\ -\xf5\x6b\xbf\x0c\xeb\xf2\x96\x4f\xd4\xaf\xf7\x00\xaf\xb6\x6f\xd6\ -\xf7\x7d\x06\xe8\xb4\x76\x57\xfd\xf6\xaf\xad\x01\xbe\xda\x59\xaf\ -\xbf\x0d\xe0\x2c\xba\xbd\xfe\xfd\x4f\x8d\x00\xdf\xdc\x57\xff\x81\ -\xe7\x41\x4e\x79\xd5\xf5\xff\x74\x62\x07\xc0\x79\xa1\xfe\x91\x1a\ -\xa0\xf3\x6d\xeb\xeb\xbf\xb9\x16\xe8\x37\x71\xb0\xfe\x3b\xcf\x98\ -\xf0\xf9\x44\xfd\x4f\xee\x7b\x1c\xc6\x7d\x7a\xfd\x4f\xbe\x00\xfc\ -\x7d\xd9\xd6\xfa\x97\x6e\x84\x75\x7e\xef\x87\x1a\xb4\xef\x2d\x03\ -\x79\xad\xc1\xe7\x23\xf0\xf9\x34\x7c\x02\x3f\xdf\x77\x61\xc3\xee\ -\x3b\x41\xae\x2f\x7d\xa8\xc1\xf8\x1e\xd0\xe5\xef\xfe\xd8\x90\x6f\ -\x5e\x4e\xc8\xb5\x5f\x6e\xb8\xf4\x46\xa0\x5f\x6d\x7f\x43\x79\x29\ -\xe0\x67\xed\x68\x18\xfb\x37\x90\xe7\xfa\xac\x86\x6b\x1e\x02\x7a\ -\x2f\xf9\x6d\xc3\xbb\x96\xc2\x38\x6e\xad\x6e\x78\xe0\x0d\x90\x37\ -\xfa\xae\x86\x4f\xaf\x00\xfa\x9c\xb9\xa1\xe1\x99\x45\x30\x5f\xb7\ -\xef\x6f\xf8\xd6\x12\xd0\x0f\x87\xee\x69\x78\x71\x29\x8c\x7f\xf0\ -\xae\x86\x5f\xaf\x04\x39\xde\xf8\x62\xc3\xcb\xeb\x40\x2e\x9d\x54\ -\xd7\xf0\xdb\xd3\x80\xce\xd5\xeb\x1b\xde\xd8\x42\xe5\xc1\x2b\xe9\ -\x86\x2f\x50\x79\xa4\xa7\x3b\xee\x05\x3e\xdc\xf6\x2c\x7c\xc2\xb8\ -\xb7\x9f\x0a\x9f\x30\xae\xed\xd9\xf4\xaa\xc7\x61\x7d\x76\x9d\x92\ -\x3e\xfb\xc3\x30\xae\xab\x2e\x48\x9f\x7f\x06\xf0\x79\xf9\xee\xf4\ -\xf9\xa3\x80\x4f\xf9\xdb\xe9\xed\x0f\x82\x7c\xbb\xeb\xd5\xf4\x91\ -\xe7\x81\x8f\x96\xbd\x17\x3e\x4f\x82\xcf\xdf\xc3\x27\xc8\xf5\xd3\ -\xfb\xd3\xc6\x7d\x80\xcf\xf5\x1f\x4c\x4f\xa4\xae\x84\x79\x5c\x99\ -\xbe\xe2\x66\xe8\x67\x63\x3e\x7d\xf7\x35\x0b\x40\xee\xde\x9a\xbe\ -\xe7\x22\x98\x8f\x5b\x07\xd3\x0f\xcf\x87\xf5\x34\xb7\x39\xfd\xe1\ -\x77\xfe\x9a\x90\x0b\xfa\xd2\x5f\xbd\x08\xd6\x51\xeb\x9b\xd3\xdf\ -\x1c\x78\x14\xd6\xff\xd6\xf4\x37\x7f\x06\xf2\x61\xfe\xe7\xd3\xcf\ -\xfe\x0e\xf0\x18\x7f\x26\xfd\xd2\xad\xd7\x11\x72\xe4\x40\x63\xdd\ -\x04\xa5\xdf\x50\xe3\x29\xcf\xbb\xc0\x9f\x3f\x68\x5c\x76\x3f\xd0\ -\x79\xd7\xff\x6d\x5c\xf6\x15\xe0\xd7\xb9\xef\x68\x6c\xbf\x1c\xe8\ -\xe0\x7d\xbe\x71\xe5\x00\xb4\xbb\xf2\xe1\xc6\x55\x9f\x04\x79\x9d\ -\x1d\x6e\xdc\xe0\xc2\xf8\xee\xb9\xb7\xf1\x82\x0b\x80\xff\x7a\x8e\ -\x35\xf6\x3e\x03\xf8\x5e\xf0\x78\x63\xae\xe3\x5b\x00\x77\x76\xe3\ -\x75\xcf\xd7\x11\x92\xce\x37\xde\xd1\x07\x7a\xb1\xeb\x9a\xc6\x2f\ -\xde\x03\x72\xed\x6d\xf7\x35\x7e\xfb\x0c\x90\x1f\x35\xeb\x1b\xbf\ -\x73\x39\xc8\x93\xf4\xff\x6c\xfc\xe3\x6f\x06\x61\x7c\x67\x36\xd5\ -\x0e\xc0\xba\x6b\x7a\xa4\xa9\xbe\x1f\xe4\xd1\xd8\xc5\x4d\x27\xff\ -\x07\xe8\x95\xc9\x0b\x9b\x3a\xee\x03\xfa\x17\xbf\xd4\x74\xe6\xe5\ -\x40\xa7\x1b\x6f\x68\x3a\x67\x37\xf0\x7f\xdd\xa6\xa6\xee\xf9\xdf\ -\x84\xf9\xf8\x73\xd3\xe1\xcf\xc3\xba\xbe\xf4\x70\x93\x75\x2d\x8c\ -\x4f\xfb\x44\xd3\xad\xef\x85\xf9\xb8\xeb\xa2\xa6\x3b\x6f\xa1\x72\ -\xe4\xa4\xa6\xa7\x7e\x08\x78\xbf\xfb\x5f\x9a\x9e\x7d\x79\x2e\xc8\ -\x9f\x5f\x36\xfd\xe8\x1e\xd0\xb3\xd9\x8f\x35\xfd\xf6\x47\x40\xb7\ -\x2b\x32\xcd\x8b\x5e\xfd\x0d\xac\xa7\x6f\x34\x77\x17\x80\x2f\x6e\ -\x7c\xb6\x79\xcb\x4f\x01\xcf\x3b\x6e\x69\x3e\xf4\x3e\xe8\x77\xec\ -\x5f\x9b\x0f\x7f\x1c\xf8\xb7\xf4\xe6\xe6\x8b\x7f\x0e\xf3\x7e\xfa\ -\x3d\xcd\xd9\x07\x81\xef\x0e\x3c\xda\x5c\xfc\x33\xf0\x6f\xdd\xef\ -\x9a\xc7\x3e\x75\x1b\xc8\xd5\xd3\x9b\xef\xfb\x35\xd0\x6b\xef\xcb\ -\xcd\x0f\x3e\x07\x72\x7e\xf9\x58\xf3\x43\xdf\xfb\x20\xd8\x01\x0d\ -\xcd\x4f\x3e\x09\xeb\xf0\x96\xa1\xe6\x57\x36\x02\xfc\xab\x7e\xdf\ -\xb2\xb2\x06\xe6\xd9\xbb\xa2\xa5\xf3\x18\x3c\xbf\x63\x65\xcb\x9e\ -\xaf\x03\x7d\x1a\xd6\xb7\xd8\xf7\x02\x3f\xdd\xb9\xad\xe5\xad\x97\ -\x75\x12\xb2\xfa\x9a\x96\x9b\x8f\x82\xde\x5e\x77\x4d\xcb\xad\x06\ -\x8c\x6b\xc1\x3f\xb6\x3c\xf5\xaf\xc0\xc7\x8b\xf7\xb6\x30\x3e\xbd\ -\x1f\x3e\x81\x0f\x6e\x3f\xd6\xf2\xab\x17\xc1\xd6\x19\xbd\xba\xe5\ -\xdf\x7e\x02\xf3\xd2\xfb\x99\xd6\xba\x1b\x41\x3e\x15\x16\xb5\x9e\ -\x74\x15\xc8\x15\xf2\x5c\xeb\x69\x37\x82\xbc\xf1\xde\xd4\xba\xb7\ -\xdc\x0d\xfa\x6d\x63\xeb\x25\x4f\x7d\x17\xe6\xe3\x4f\xad\xe5\x4f\ -\x80\xfe\x1f\x6b\x69\x1d\xff\x12\xcc\xb7\x71\x75\xeb\x3b\x1b\x61\ -\xfd\xf5\x9d\xda\x7a\xf3\xc3\x1f\x02\xba\x7e\xb4\xf5\xee\x34\xe8\ -\xe7\xbb\xff\xd2\xfa\xc0\xaf\xdf\x0b\xf2\xe1\x70\xeb\x13\xd7\x02\ -\xff\x5f\xf7\x8e\xd6\x67\xfe\x05\xf8\x6c\xdd\xb2\xd6\x1f\x2f\x01\ -\xfe\x6d\x7b\x6b\xeb\xab\xb5\x8b\x01\xaf\x4f\xb5\xbe\xba\x1c\xf4\ -\x68\xa9\xae\xf5\x4f\xe3\x40\xd7\xcb\x7f\xd6\xfa\xda\x25\x30\xcf\ -\xe5\x34\x30\xc9\xfd\xdf\xa5\xd6\xd8\x5c\xd2\x43\xb2\xf0\x9f\x46\ -\x06\x88\x4d\x4c\x62\x11\xaf\x1e\x05\x28\xfc\x6b\xe8\xc9\x66\xb5\ -\x01\xdb\xb4\x3c\xe0\x19\xd2\xd2\xe7\xe8\x39\xef\x12\x78\x86\x8f\ -\xaa\x68\xeb\x01\xde\xda\x85\xf6\x3a\xfc\x2b\x09\x18\xf0\xdd\x83\ -\xef\xf4\xa9\x05\xff\x37\xc8\x04\x3c\x77\xe1\x19\xfd\x75\x04\x9e\ -\x8c\xc3\x37\x07\x9e\xaf\x26\xc3\xf0\xbc\x44\x0a\xf8\x8b\xe1\xf7\ -\xdd\x01\xfd\xb8\x9a\xae\x95\x68\x5f\x9a\x67\x6b\xba\xa5\x19\x13\ -\xa6\xeb\x99\xd6\x88\x36\x6e\x3a\xc6\xea\x61\xb7\x54\x30\x2d\xa3\ -\x12\x6a\x8b\xfd\x81\x31\x44\x46\xa0\x3b\x9b\x94\xa1\xab\x2e\xfa\ -\x9f\xdf\x51\x2b\x1d\x24\xc0\x1f\x71\xec\x72\xa9\xab\xab\x8b\xc2\ -\x9b\xed\xc3\x1b\xb2\xb7\xd2\xe7\x08\xf1\x88\x32\x58\x8f\xe4\x01\ -\x79\x0d\xbe\x1b\x80\xba\x41\x32\xf0\xc4\xc0\xde\x6c\x18\xd0\x51\ -\xfe\xa4\x03\x7e\x5f\x3e\x2d\x29\x7c\xcc\x7c\x9c\xd6\xe0\xe0\xbd\ -\xbc\xa1\xb9\x46\xc1\xc8\x78\x46\x56\xb3\x87\x8f\xc2\x97\x0e\x77\ -\x79\x98\x16\x88\x77\x65\xa4\x4b\x80\x74\x89\xd3\xd7\x40\xd4\x33\ -\xd0\x95\x83\xb4\x67\xf3\xc4\x29\xcf\xe7\x24\x8b\x43\x63\xc8\x66\ -\xf1\x6d\x1b\xde\xb0\xe1\x7d\x31\x8c\xa9\x87\xec\xfa\x83\x38\xa7\ -\xa7\x04\x13\x64\xb8\x5a\xa6\xec\x38\x06\x4c\x22\x9d\x2d\x98\xba\ -\xac\x97\x87\x01\x64\xb5\x8c\x5d\xb0\x1d\x3a\x9a\xd0\x18\x5d\x75\ -\x30\x00\x62\x72\xd0\x9b\x2c\x18\x38\x98\x76\x7f\x30\x93\xd0\x6d\ -\x6f\x68\x20\x83\xf0\xff\x49\x8a\x9a\x8f\xc2\x09\xd8\x5e\xeb\xe5\ -\x08\x20\xa0\xca\xd0\xd3\x64\x27\x0c\x5b\x07\x88\xa6\x0f\xa1\xba\ -\xc7\xc9\xd0\x16\x0d\xbc\x85\x93\xc1\x57\x27\xc8\x2e\xe8\x9c\x52\ -\x63\x94\x37\xa1\x48\x74\x21\x52\x43\x64\x1f\xfc\x4a\x7f\xb1\x81\ -\x92\x59\x3e\xd9\x3a\xae\x0f\xf6\x8c\xd2\x8d\x3e\x35\x91\xf2\x9d\ -\x88\xfa\x36\xb2\x9d\xf4\x43\x5b\x3a\x1f\x0c\xb2\x03\x2d\x8e\xe2\ -\x7a\xf2\x78\x0b\x80\x22\x59\xa4\xd7\x31\x74\x0f\xa8\x0b\xbc\xa0\ -\x3b\x99\x2e\xad\x77\x68\xdf\x2e\xa4\xa6\xa5\x97\x3a\xb5\xc1\x6d\ -\xdb\xfb\x87\xe8\x9f\x19\xdb\x72\x3d\x47\x37\xad\x98\x51\xcc\x26\ -\x9b\xc9\x2a\xe8\x3b\xba\xfa\xea\x37\xaf\x1a\xf4\x57\x57\x33\x6b\ -\xb5\x99\x3d\xc1\x96\xd7\xc0\x38\xe9\x98\x75\xc4\x4c\xac\xfe\x22\ -\x60\x5e\x40\xc6\x2e\x21\x87\xac\x0a\xc8\x83\x61\xf8\x5b\x59\xe9\ -\x21\x6a\x09\xde\xb2\x00\x52\x29\x42\x13\xf6\x2b\xe5\x45\x0b\xa9\ -\x49\x69\x03\x50\x7c\x7c\x7b\x7d\x6a\x68\xc5\x72\xc1\x33\x4b\x05\ -\x63\x15\x93\x1c\xc3\xab\x98\x98\x48\x46\xa0\x98\xa1\x36\x81\xe3\ -\x5a\x04\x94\x26\xa1\xd3\x63\x7e\x87\xb5\xbd\xa6\x93\x61\xcc\xd4\ -\xc4\xda\xb0\x07\xd8\xe4\x0e\x9f\x3b\x26\x65\xd3\x19\xf2\x87\x81\ -\xeb\xcc\xe0\xfc\xd1\x03\x2d\x28\x1d\xc6\xe0\xad\x02\x72\x02\xfb\ -\x55\xc3\x96\x54\x8c\xb0\x45\x60\xa2\x88\x11\xeb\x71\x94\xf3\x4d\ -\x21\xb0\x28\xce\x93\xb4\xca\x20\xce\x61\xd2\xf4\xec\x1a\x92\xcb\ -\x52\xf3\x74\x6b\x84\x2e\x1e\x65\x71\x46\x47\x3c\x1f\x66\x8b\xce\ -\xfd\x51\xc4\x69\x3f\x72\xf6\x98\xc2\xad\xe9\xde\x82\xed\x1a\xda\ -\x2e\xce\x51\xad\x1c\x00\x7d\xb8\x4b\x10\xba\x8b\xc3\x18\xe5\x23\ -\x2b\x21\x14\xb6\xc0\xe9\xc2\xb6\x70\xfc\x1c\xb2\x32\xf7\xa7\x20\ -\x18\x26\x2e\x51\xc4\x0c\x1b\x54\x2e\x66\x1d\x7d\xdc\xaa\xd8\xd9\ -\x02\x98\x04\x03\x26\xc7\x06\x60\x46\xac\xf2\x6b\xda\x67\x14\xed\ -\x31\x23\xa2\xff\xfa\x8c\x82\x54\x32\x47\x02\x60\xe2\xb4\x60\x0e\ -\x85\x7b\x31\x81\x26\xd4\xb8\x94\x8d\xd7\x87\x6b\x18\x3a\x52\x25\ -\xe6\x1c\xbb\x18\x51\x8a\x1a\x48\xd4\xa8\x5e\x0c\xa0\xfc\x9e\xd8\ -\xa5\x4b\xd9\xb0\x88\x4c\x44\xc5\x92\x1d\x61\xd6\xe3\x5a\x9e\x01\ -\xd6\x8d\x2a\x0f\xd6\x33\x7d\x32\xc2\xfb\x96\xd4\xdf\x23\x99\x34\ -\x6b\x16\x0d\xcb\x35\x6d\x6b\xfa\x25\x1c\xe6\x5d\x1d\xbe\x8c\x40\ -\x6b\x4f\xe1\x83\x3e\x01\x8e\xcb\xfc\xdd\x5c\xc0\x4a\x66\x6d\xf0\ -\x5f\xa9\xd8\x6c\x2e\xe9\x83\xe1\x8c\xe3\x0c\xd2\xc1\x66\x95\x99\ -\x6a\xe8\xb3\xc7\xad\x11\x47\xcf\xaa\xac\xee\x3f\xc3\xe6\xd7\x93\ -\x2d\xc0\x06\x25\x54\xac\x59\x3e\x0b\xc9\x2c\x0a\xfa\x26\x63\x2d\ -\x46\x4d\x13\x05\x0c\x7d\xdf\x89\xbc\xd9\xe9\xb3\x94\x0b\x0b\x6b\ -\x98\xcf\x4b\x86\xb3\x25\xfd\x66\x28\xea\x7a\xcb\x96\x89\x52\xc1\ -\xce\x1a\xb1\x76\x87\xab\x01\xfb\x00\x59\xcd\x22\x48\x56\x47\x3c\ -\xec\xa4\xec\xe6\x96\x87\x81\xf6\x40\xec\x9c\x9e\x31\xdc\x8a\x43\ -\x6e\x01\x8a\xd1\xee\xc7\x19\xdf\xfb\xdd\xd6\xc1\xcb\xe3\xc0\xbe\ -\x8a\xf4\xe5\x4f\xaa\x58\xb0\x70\x00\x70\xf7\x66\x48\x21\x1b\x97\ -\x1a\xe5\xae\x40\xa7\xd8\x36\x8f\xe2\xc5\x53\x2c\xc0\x55\x03\x65\ -\xaf\xc2\xa8\x6d\x50\xae\x1a\xc7\x47\x73\xf3\x86\xe1\x75\x55\x40\ -\xb4\x05\x18\x89\xca\xfc\x51\x66\x11\xf8\xc0\x6b\xb6\x64\x4d\x64\ -\xbf\x34\x6b\x43\xff\xc4\x06\xeb\x83\x0d\x10\xdf\x51\x14\x0b\x26\ -\x8a\x39\xa6\x14\x82\xc2\xdc\x54\x00\x9f\x44\x21\x31\xb4\x81\xfa\ -\x26\x48\x2a\x86\x74\x5c\x5f\xf3\x61\x9d\x52\x0a\x98\x38\x7e\x2d\ -\x22\x5c\x1a\xfb\x4d\xcb\x74\xf3\x9a\x90\x1b\xdc\x3e\x62\x4f\x7d\ -\x99\xb9\x99\x0b\xf6\x22\x37\x5f\x3c\x3e\x0f\xaa\x58\x66\xbc\xc6\ -\x84\x78\x11\x65\x8c\xc7\x9f\xd2\x55\x26\xf5\x67\x1b\x83\x8d\x0b\ -\x9c\xdb\x85\x5e\xde\x2e\x7b\x5a\x06\xc4\x34\x25\x36\x23\x5a\x3c\ -\x22\x37\xf9\xfa\x75\x2d\xd7\x13\x2e\xd7\x99\x41\x1d\xf1\xb7\xb1\ -\xc7\x3c\x24\x3e\xd3\x49\xaa\x4d\x56\x86\xa7\x6e\x60\x4a\xce\x91\ -\x42\x6b\x2d\x37\x3f\x92\x9b\x1e\x7c\xce\xfc\x41\xa6\x63\xd4\x68\ -\x8d\x50\xa0\xe1\x97\xeb\x81\x99\x50\x07\xc9\x57\x77\x83\xb6\x50\ -\x5e\xa5\x7f\xe2\xab\x8f\x88\x57\x67\xb8\xa6\x86\x71\xd5\x8c\xfb\ -\x64\x5e\x1b\x50\x74\xee\x7f\x91\xbe\xa0\xef\x80\x01\xe5\x0f\xeb\ -\xf0\x6e\x54\x82\xb1\x8b\x75\xd8\xf0\xc6\x0d\xc3\xd2\xd6\x32\x0d\ -\xe9\xce\x40\x5f\x64\xec\xd2\x64\x1c\xb1\x9a\xc8\x5e\x10\x95\x39\ -\x24\x8f\x54\x4e\xb5\x7b\x73\x39\xd7\xf0\x14\x53\x88\x3d\xc0\x26\ -\xb7\xa8\x4d\x02\x34\x66\xb2\xd7\xe4\x16\x87\x4a\xdf\xff\x1e\xda\ -\x6d\x63\x58\xc6\xc8\x8c\xe3\xa0\x54\x74\xe0\x63\xb1\x86\x85\x83\ -\xea\x9d\x8a\x04\x1d\x55\x51\x09\xfd\xc9\x49\x78\xf6\x37\x32\x32\ -\xfc\xe1\xbd\x49\xae\x3e\xc7\x18\x29\x17\x74\x07\xf8\xa0\x30\x39\ -\x92\xc4\x70\x50\x84\xfa\x00\x6b\x83\x43\x9a\x87\x6b\x85\xca\xcd\ -\x51\x1c\x42\x91\xda\x46\x52\x75\xf1\x57\x2b\x34\xce\x29\x52\x6a\ -\x55\x44\x4a\xb9\xf8\x9b\x83\x42\x5f\x47\xbf\x3b\xec\x11\x25\x94\ -\x57\x3e\x3a\xcb\xa3\xd2\xc7\x81\xb9\x05\xf3\x3d\x6c\xe2\x2b\x4a\ -\x7a\x9f\x78\x43\x31\xe3\x05\x5a\xd1\x11\x37\xf8\xaf\x57\x04\xd1\ -\x04\xd8\xdb\x88\xaf\xa7\x48\xa3\xda\x7d\xb6\x07\xb8\x29\x8c\xc3\ -\x1e\x60\x93\x0f\xaa\x4d\x66\x24\x95\xfe\xd6\xeb\x26\x13\xc3\xc0\ -\xe1\x55\xb4\x8f\x61\x1e\x2f\x83\x92\x2e\xa4\x8c\x74\xc1\x82\xeb\ -\x49\x21\x4b\x0b\xa0\xcf\x4c\x83\x42\xc0\xa2\x48\x0d\x66\x74\x36\ -\x01\x8d\xac\x0d\xfe\x8d\x4d\x1e\x85\x26\x19\x6c\x30\x53\xe9\xae\ -\xba\x29\x54\xd6\xeb\xd8\x46\x95\xf0\xff\x3d\x32\xea\x22\x1c\x4c\ -\x05\x01\xcf\x5c\x1e\x6d\x58\x07\x57\x12\x19\xfc\x38\xe4\x56\x84\ -\x66\x0b\x00\x73\xd5\x27\x89\x46\xe3\x9a\x06\x99\x37\xe1\x47\xda\ -\xe6\x70\x18\xf8\x58\x86\xda\xac\x00\x24\xc6\x3f\xd4\xf5\x8e\x52\ -\x7b\x1c\x0d\x88\x7c\x60\x86\x74\xb4\xab\x28\xc5\x45\x38\x49\xc0\ -\x10\x33\x69\xe2\xb7\x28\x7e\x1b\x18\x22\xc0\x4d\x85\x82\x4f\x2b\ -\x6a\x4f\x31\x2a\xea\x45\xa0\x96\x4e\x03\x60\xf0\x06\xa5\xac\xe9\ -\x4e\x3b\x94\x83\x21\xa2\xe8\x88\x34\x15\x0c\xa3\xbe\x29\x5d\x42\ -\xbe\x64\x91\xc3\x1c\x77\x34\x68\x1c\xc2\xc6\x81\xd0\x49\x9f\x0c\ -\x2c\x29\x74\x2b\x7d\xa4\x3b\x07\x85\x8b\x36\x6e\x3b\xa3\xd4\xe2\ -\x2b\x15\x74\xb0\x03\x73\xe0\x52\x8c\x18\x76\xd1\xf0\x9c\x49\xb6\ -\x4c\xb8\x1f\x16\xc0\x74\x80\xbe\xeb\x8b\x2c\x89\xe9\x80\xc0\x49\ -\x9a\xb6\x4a\x83\x29\xc0\x0c\x45\x94\xd7\x20\x50\x9c\xf2\xb6\x81\ -\x02\xbc\x8f\x1b\x96\x06\x90\x81\x79\x18\xb9\xe9\xd7\x95\x8f\xc4\ -\x0a\x21\x9a\x07\xf3\x7a\xc9\xd0\xd6\xf6\x69\x63\xa6\x31\x0e\xee\ -\x45\x2e\x36\xf8\x29\x70\xa4\x2f\xaf\xed\xdb\x0f\xaf\x22\x8e\x0b\ -\x2b\xe3\xe4\xf7\xd4\x1c\xe8\x61\x0a\x60\xfd\x31\xda\xda\xe2\xff\ -\xb7\x7c\x71\x3c\x6d\x28\xc0\xef\x78\xa9\x1a\x8f\xb4\x2c\x2a\xc6\ -\x22\x2e\xbb\x62\x61\x0d\x19\x13\x1e\xd7\x17\x43\x68\x5f\x63\x44\ -\x44\x5a\xaf\xf4\xf7\xb8\xd7\xbb\xe0\x75\x1b\xd8\x6c\x84\x7b\x1e\ -\xaa\x8c\x29\xc3\x5f\x26\xf7\xfd\x76\x33\xcf\x5a\x7a\x4b\x43\xf6\ -\x08\xa8\x28\x2e\x18\xca\x19\xc0\x4d\xdb\x6d\x33\x17\x7d\x11\xef\ -\x03\xdf\xe8\xe5\x2f\x50\xec\xe9\x0b\xd8\xeb\xc5\x81\x5e\x55\xc9\ -\xda\x1b\xea\xdf\x0b\x63\xa0\x2c\x0e\x0b\x83\x3f\x5e\x54\x8b\xf9\ -\x58\xae\x66\x38\x30\xf1\xa7\x62\x82\xb8\xe2\xda\xb0\x80\x12\xbe\ -\xb6\x49\x86\x7d\x47\x2c\xcd\x58\x00\xaa\x8c\x4f\xc2\xd4\x9a\x27\ -\xa9\xe5\x99\x56\xd9\xf0\x49\xb5\x20\xd4\x19\xfe\xea\x77\x74\x70\ -\x1a\x32\xc5\x74\x19\x4b\x9e\x0c\xca\x90\x22\xcf\x41\xa8\x04\xea\ -\x0c\x11\x48\x62\x27\x89\x93\xb1\x8b\x45\xdd\xca\x32\xea\x4c\x8d\ -\xf0\x0d\xb0\xa2\xc6\x71\x45\x51\x64\x99\xa9\xc5\xc4\x1a\x15\x5d\ -\x45\x1f\xc5\x44\xab\x3d\xc6\x47\x12\xa1\xbd\x1c\x6a\xc0\x22\xf7\ -\x02\x58\x62\x25\x87\xfd\x78\x7e\x38\x5c\x4a\x8b\xfe\xc1\x71\xbd\ -\xe4\x6a\x59\xd3\x05\x91\x38\xa9\x15\xe9\xe8\x62\x24\x85\xef\xef\ -\xd0\xc0\x5f\xce\xa1\x62\x9e\xa6\x55\x72\x05\xdd\xa3\x5e\x27\x4a\ -\x92\x93\xd4\xe1\xf7\x31\x80\xfe\xe8\xdb\x43\x7c\x51\x61\xfc\x32\ -\x9b\xc2\xb9\x42\x45\x6c\xda\x4e\xe8\xfa\x76\x78\xd0\x60\x42\xda\ -\x83\x43\x8e\x59\x34\x26\x14\xc3\x87\x3d\xa0\x4d\xaa\xe6\xfa\x4d\ -\x98\xa4\xa5\xcc\xc1\x58\xc3\xe0\x0c\x91\xd4\xb2\xe9\x0c\xb5\xa7\ -\x6b\x54\xc4\xdb\x5c\xae\xc8\x0a\x9c\x09\x79\x3c\x2c\x24\xec\x84\ -\x85\xe3\x46\x6c\x9c\xa8\x75\xe3\x2a\x56\x4d\x30\x33\x15\x88\x71\ -\xfa\x38\xb1\x77\x2d\xfc\xab\x88\xb6\x82\x6a\x1f\x51\x88\x63\x18\ -\xd7\x53\x35\xc9\x3b\x29\x9d\x5c\x1a\x77\x03\x56\x37\xac\xf8\x2c\ -\x61\x27\xff\xdd\x29\xd3\x70\x1e\x0d\xa7\xc0\xac\x61\x78\x8e\xcb\ -\x63\x2a\x8c\x5d\x61\x2e\xf9\xb6\x92\x8b\x76\x12\xcf\x95\xf1\xc0\ -\xa9\xc6\x52\x74\x96\xed\x14\xf5\x02\x33\xa6\x4c\x6b\xcc\x70\x02\ -\x89\x00\x39\x77\xa0\x95\x76\xc2\xd8\x29\xe7\xe8\x44\x84\x62\x58\ -\xbc\xc8\xf2\x1d\x1f\x95\x16\xaa\xd0\x9f\x73\xa1\x95\xb5\xb5\x82\ -\xee\x7a\x6a\xd8\x96\xc7\xb0\xe9\x6f\x7e\xb8\xe3\x28\xb9\x10\x39\ -\xc1\x0e\x89\x99\x02\x5a\x4b\x1e\xf2\x32\x8b\xfb\x45\x7b\x14\xab\ -\x59\xb6\x11\xe9\xcf\x61\x8e\xe7\x88\xda\xde\xc7\xee\x6c\x8a\x81\ -\x48\x33\x50\x1c\x31\xc1\x20\xe9\x94\xab\x98\x80\x88\x1b\xc1\x67\ -\xc9\x0e\x6e\x59\x1f\x6f\xec\xd7\x46\xac\x25\x87\x33\x7e\xf4\x39\ -\x06\x9f\xd0\xf8\xb2\xcb\x21\x09\x59\x24\xb9\x34\x27\x52\x43\x5c\ -\x1e\x89\x15\x20\x61\x96\xd1\xf7\xf5\x82\x2b\xc4\xa7\xc8\xff\xd8\ -\x61\x23\xd3\x54\x0c\x17\xdb\x96\x81\xac\x08\x1c\x86\x2c\x83\xc1\ -\x3d\x78\x89\x0a\x2c\x64\xb6\x9c\x59\x28\xc0\xdf\xc8\x9a\xf8\x66\ -\xd9\x32\x3d\x43\x46\x92\xb9\x57\x7d\x61\x49\x8d\x23\x0f\x90\x63\ -\x3c\x44\xaa\x06\x14\xeb\xf8\x4b\x15\x9a\x5d\x7e\x1c\x09\x4b\x41\ -\xb1\xbf\x65\x90\xe2\xfc\x8a\x89\x4a\x4a\x94\x19\x45\x0a\x0f\x40\ -\x03\x1e\x29\xdc\x85\x5a\x65\x54\x8d\x14\xd2\x5f\xe3\x5e\xde\xcc\ -\x75\xb1\xca\x28\x61\xb5\x75\xc0\xcf\x48\x09\x65\xb5\x39\x36\x4b\ -\xbc\xa4\x57\x4c\xac\x50\x45\xb4\x1b\xd4\x42\x9b\x65\xfa\xf8\x04\ -\x89\xc1\x90\xad\x66\x56\x17\x2b\x1d\x31\xba\xc5\x77\xd3\x8a\x50\ -\x81\x0a\x49\x80\xb6\x80\x00\x2d\xe0\xf4\xa1\xfa\x92\xfc\xd1\x53\ -\xf0\xa8\xc6\xa2\x8d\x4f\xdd\x5a\x36\xbb\xbb\xfb\x4c\xbd\x60\x8f\ -\xc0\x67\x61\x64\xd0\xf0\x68\x0a\xcd\x45\xa0\x08\x66\x13\x07\x43\ -\x89\x64\x71\xae\xa1\x33\xbd\x9f\x6c\x25\x34\x5b\xc8\x22\xdb\xec\ -\x57\x17\xa5\x88\x8d\x9e\x77\xd8\xcd\x39\x0d\xba\x35\x1c\x0b\xa6\ -\x5c\x1b\xdc\xbf\x55\x1b\xd0\x3d\xfa\xa7\xab\x15\xec\x8c\xef\xd9\ -\x24\x40\xe7\x30\xa2\x33\x8e\x8a\xd9\x55\xd8\x4f\xf3\x85\x41\x50\ -\x4c\x74\x70\x65\xae\xc3\xf3\x02\x17\x2d\xa2\x05\x53\xeb\x1a\xc6\ -\xb4\x27\xc9\x72\x99\x06\xe9\x29\x8c\xeb\x93\x2e\xb2\x1e\xa5\xb6\ -\x58\xca\x1d\xa0\xef\xf5\x61\xd0\x20\xf8\x03\x90\x50\x1b\x35\x26\ -\x97\x27\x44\x3c\x0d\x88\x53\x5d\x0e\xda\x4d\x06\x30\x7a\x1c\x68\ -\x92\x10\xc0\x7c\x60\x0a\x2a\x78\xa8\x87\xc0\xc4\x3b\x75\x9b\xcf\ -\x96\xfe\xdd\x66\x3d\x33\xea\x82\x40\xce\x6b\x67\xff\x55\x20\x37\ -\xc4\x81\xdc\xf0\x57\x81\xdc\x18\x07\x72\x63\x42\x90\x54\x62\xe5\ -\x71\x4a\x47\x03\xfe\xbf\x89\xda\x6b\x12\x63\x00\x1a\xb2\x84\x28\ -\xb7\x12\x51\x66\x26\xe7\x18\x1b\xac\x43\x2f\x51\xca\x76\x59\x8d\ -\x34\x8c\x6f\xb3\xfc\xa1\x8d\xa2\xc0\xf0\xab\xa5\x6c\xc5\xe4\x3e\ -\xbf\x37\x6f\x64\x46\x59\xd8\xc0\xcc\x69\x93\x76\x59\x1b\xd7\x69\ -\x49\x16\x0d\x22\x83\x30\x03\x06\x59\xd7\xc7\x44\x36\xd6\x26\x0d\ -\x1b\x9a\x59\x2c\xd9\x0e\xd5\x06\x9e\x6d\x77\x25\x1c\xee\x43\xc7\ -\x39\x5c\x0b\xa5\xd9\x2a\xe4\xee\x22\x1f\xc2\x30\x5f\x8e\xa3\x9c\ -\x08\xc3\x68\x00\x98\xe8\xd9\xaa\x59\x77\x51\xe9\xa4\x91\x15\x49\ -\x09\xe3\x93\x65\x70\x0a\xb2\x58\xb6\xb5\xca\x02\x7b\x3c\xab\x0d\ -\xc3\x3a\x1f\x05\x0a\x0d\x1b\x23\xa6\x65\xb1\x2c\x3d\x2d\x7f\xd2\ -\x56\xc4\xd1\x2a\x21\xa9\x66\x03\xa9\xa8\xdc\xcc\xf0\xa5\x2d\x17\ -\x43\x3d\x2b\xc9\x48\xbc\x12\xc2\x90\x36\x44\x20\x25\x5d\x00\x61\ -\x48\x1b\x23\x90\x92\xf2\xfd\x5a\x54\x50\xa2\xe4\xac\x88\x42\xab\ -\xa4\x4c\x81\xb4\xd8\xfc\x72\x35\xbf\xaf\x93\x7b\xb1\xa6\xac\xa8\ -\x97\x4a\x48\x51\x34\xc7\xb0\xe2\x2c\x61\xe7\xcb\x62\x3b\x17\x3c\ -\xc3\x0c\x26\xa9\x98\xe6\xca\xee\xe8\xd4\x82\x35\x63\x24\xec\x67\ -\x61\x20\x70\xa0\xf3\xba\x9d\xa0\xc6\x6a\xee\x15\x4a\x7f\x06\x7a\ -\x6b\x41\xa5\x88\x84\x8c\x66\xaa\x31\x82\x19\x91\x25\x3e\xce\xe1\ -\x17\x08\xaa\x64\x51\x22\x17\x58\xe6\x97\xb0\x9f\xae\x29\xfa\x91\ -\xf5\x9b\x9a\x58\xec\x32\xba\x13\xe8\x11\x83\x9b\x1a\x5d\x80\x33\ -\x60\x39\x69\x1c\x8a\x10\xac\xee\xc7\x31\x4d\x40\xa4\x52\x68\xef\ -\x64\x66\xd0\xd1\x08\xab\x4e\x83\x96\x66\x46\x8d\xe4\x25\xa2\x6d\ -\x1f\x39\x08\xd6\xa3\x08\x84\xb0\xac\xb9\x86\x71\x71\x31\x7a\xd9\ -\xdd\xdc\xbe\x83\xfd\x34\xd4\x51\xd4\xc1\xe5\x28\xd1\xe1\x26\xed\ -\x67\x1e\xd9\x8b\x6b\x93\x26\xae\x5d\x30\xff\x8e\x05\xea\x1c\x9b\ -\xfb\x8c\x9c\x0e\x06\xe9\x8c\xa6\x6b\x0f\xa0\x6e\xa0\x72\x29\x73\ -\x9b\x2b\x8f\x2e\xd4\x08\xe6\xa8\x64\x64\xc7\xe3\xee\xb7\x88\x32\ -\x66\x49\x5c\xc1\x91\x1c\xe4\x19\x02\x99\xbc\x61\x8e\xe4\x3d\x0c\ -\xed\x78\xe0\xcf\xba\x68\x5a\xfa\xf5\x40\x49\x47\xde\x1e\x18\x79\ -\xa0\x88\x0c\x9f\x8f\xa1\x21\x24\xbb\x9f\x23\xba\x9f\xa9\xf4\x68\ -\x0b\x75\x54\xe4\x09\x00\x13\xf9\x89\x16\x7a\x48\x82\xcf\x17\x9d\ -\x78\x46\xb1\x54\xa0\x1c\x84\xe5\x25\x89\x7b\x0a\x53\x5e\xd0\x98\ -\x51\x5d\x2d\xa5\x9a\x23\x7b\x9a\xa0\xb4\xb4\x92\x76\xd2\x3e\x45\ -\x27\xca\x44\xcb\xf8\x50\xa0\x23\x36\x77\x09\xbb\x5a\x11\xe9\xaa\ -\x62\xb6\xc1\xef\xee\x44\xd1\x5d\x20\x81\x90\xd8\xbe\xef\x8b\x32\ -\x20\x74\xd3\x0e\xff\x76\xa1\x28\xc8\x12\x56\x53\xa5\x63\x24\x87\ -\x16\x7b\x69\x28\x97\x82\x15\xc6\xa7\xf9\x75\x61\xae\xd6\xae\xed\ -\x32\xc0\xdf\x74\xc0\x2c\x72\xec\x71\xcd\x15\xd5\xc6\x09\xd0\x39\ -\xab\x02\x3a\x25\x94\x4b\x19\x9e\xed\x65\x82\x50\xb0\xac\x34\xa8\ -\x17\x2a\x48\x94\x1c\x23\x63\xd2\xaf\x5a\xc1\x18\x33\x92\x5a\xd9\ -\x69\xac\x67\xf3\x02\xc6\x44\xaa\xcf\xf6\x12\x5b\x12\x12\xc0\x86\ -\x20\x80\xa4\x06\x84\x04\xb0\x31\x08\x20\xa9\xdd\xd0\xc1\x6b\xbd\ -\x72\x08\x84\xf9\xf0\x74\x06\x85\xed\x1b\x8d\x67\xce\xc3\xc6\x34\ -\x54\x61\x38\xd4\x7e\xf5\x03\x9a\x09\x7a\xdb\xc6\x2b\xf8\x98\x81\ -\xa8\x71\x3b\x3b\xec\x86\xe9\x7c\x12\x59\xc9\x83\x8a\x89\xc1\x2b\ -\xd1\xa4\xd4\x59\xb6\x65\x82\x5a\x82\x1a\x18\xd3\xc2\xf3\x02\xdb\ -\x9a\x56\x30\x30\xdc\x0c\x5a\x2d\x95\x58\x8f\xf6\xf3\xd8\x4e\x5c\ -\x8c\x7a\x12\xc5\xaf\xb2\xdc\xa4\x1e\xed\x37\x95\x14\xe2\xf0\xa4\ -\x96\x65\x4b\x2c\x71\xb7\x87\x90\x3b\x4d\x5e\xfc\xa2\x21\x9f\x66\ -\x31\x08\xa5\xf1\x94\xb2\xa8\x9b\x52\xeb\x69\xe6\x6f\x35\x2c\xc3\ -\xd1\x0b\x1a\x9b\x10\x01\x38\x61\xaf\x1a\xb8\xe4\x06\x1a\x84\x0e\ -\xca\x5b\x8d\xf7\x23\x2a\x6c\x25\x89\x67\x8b\x7e\xdc\x99\xf7\x50\ -\x40\x42\x32\xf8\x3c\x69\x1d\xc3\x52\xb3\xb7\x16\xec\x61\xe8\x80\ -\x66\x9b\x67\xc2\x4e\x0b\xa0\x07\x07\xcd\x59\x0d\x43\xf0\x3a\xae\ -\x79\xb5\x4e\xb2\x69\xab\x63\x66\x35\xb7\xa4\x67\x78\xb1\x64\x02\ -\xa8\x6b\x10\xaa\x30\x9a\x58\x58\x9f\x52\x29\x18\x48\x54\xbc\x25\ -\xbf\xb7\x05\x98\x0a\xd6\x0a\xfa\xa4\xe1\xf0\x60\x1e\x73\x65\x92\ -\xf5\x5c\xb5\x10\x16\x88\xc1\x43\x3b\xc2\x77\xcb\xf0\x0c\xa3\x8b\ -\xe6\x7c\x06\x3d\xbb\x49\x22\xcb\x8f\x1d\xce\xa4\xb6\x9f\x39\x66\ -\x39\x23\x9d\x97\x2e\x32\x3d\x20\x42\x30\xdc\x16\xe7\x81\xce\xb8\ -\x37\xcf\x45\x3a\xca\x30\xcd\x26\x9f\xed\x4d\x1e\xd6\x94\x72\xd6\ -\xc3\xc4\xaa\xa7\x60\x39\xcc\x9d\xe9\x2c\xb6\x91\xce\x87\x0c\xd5\ -\x7a\xdc\x96\xa1\x0a\x82\xfe\xae\x8a\x1f\x06\x2d\x83\xfe\x65\x10\ -\x0b\x49\xe3\x1b\xb7\x19\x8e\x81\x8e\x63\x46\xb7\x60\x66\x41\x6e\ -\xe7\x26\xb1\xde\x99\x96\xed\xd8\x34\xfd\x0d\xba\x1a\xcc\x7f\xaa\ -\xdb\x68\xf0\x88\xfa\x17\xae\xfa\xf0\xdc\x12\x0b\x27\x6d\xa2\xeb\ -\x14\x1e\xa1\x39\x08\x1e\x28\xd8\x86\x14\x24\x78\x97\x7a\x36\xcb\ -\x1c\x21\x0c\xd2\x7a\x60\x3e\xe9\x4e\x96\x2f\x33\x78\x2d\x93\xd7\ -\x38\x88\xa4\x4b\x61\x3f\xd9\x8e\x0e\x79\xc6\x77\xd6\x29\x71\x3a\ -\xf9\x34\x8e\xf8\x4c\x3c\xee\xcb\x1f\xe1\xbf\xb1\xf2\xaf\x71\x6c\ -\x67\x11\x19\x61\x0f\xb2\xf9\xca\xed\x39\x2d\x43\x3d\x6b\x23\xdb\ -\x09\xb4\x18\xa1\x4c\x3f\x4e\x85\x12\x75\xe9\x74\x47\x1b\xcf\x1b\ -\x16\x46\xd6\x93\xaf\x82\xa7\x2a\xa2\x9c\x43\x9e\x33\x70\xce\x83\ -\x48\x8b\xea\x05\x36\xe7\x47\x95\xa0\x70\x86\x7f\xcf\xf0\x9a\x2d\ -\x91\x52\xa8\x14\xa6\x97\x61\x77\x1a\x46\xde\x8c\x6e\x2b\x0b\xd1\ -\x74\x06\xe2\x1c\x82\xef\x3c\x2c\xbd\x32\x88\xa8\xb9\xc8\x73\x3e\ -\x0f\x6e\x5a\x33\x54\x32\xe5\x1c\xc3\xc8\xe8\x9c\x4e\xb4\x6c\x02\ -\xe6\xfb\x28\xc6\x94\x33\xf0\xff\x8c\x99\x55\xb6\x6f\xb0\xb5\x8c\ -\x01\xf8\x2e\x6d\xb3\x31\xae\x3b\x46\x27\x0b\x62\x50\x8e\xf1\xf4\ -\x51\x83\x56\x64\xe4\x81\xd3\xf8\x56\xb8\x04\x04\x7e\x3f\x27\xb0\ -\x1a\xb4\x71\x2b\xf0\x48\xbc\x4e\x8a\x5f\xc0\x32\x6a\xa5\x4e\x0d\ -\x5b\x98\x86\xa2\x7d\xd9\xf2\x64\xba\x76\x1d\x7e\x0f\x6b\x5c\xb9\ -\xe8\xde\xbc\x3d\xc7\x63\x36\xae\xc2\x67\x8a\xd2\x53\x96\x17\xc6\ -\xb4\x18\x55\x61\x29\x19\x13\x3c\x50\x03\x5a\x79\x5d\xd6\x57\xcc\ -\x49\x17\xce\x8f\x12\x13\x29\xa2\x5d\x62\x86\x4f\xdf\x2e\x11\x56\ -\x99\x93\x41\x19\xef\xfa\x84\x94\x99\x73\x96\xc8\x61\x12\xcb\x41\ -\x18\xac\xa8\x2b\x9c\x5f\x0f\x2e\xd7\x60\x9c\xd9\x43\x6e\x15\x26\ -\x15\x8b\xb7\xad\x9a\x42\x03\xda\x71\x04\xf6\xd5\xa1\x4f\xcd\x51\ -\xa3\xe4\x69\x7a\xc6\xb1\x5d\x57\x24\xec\x3b\x35\x1b\xa4\x94\x33\ -\x6e\xba\x86\x9f\xc3\xe7\x6b\x9f\x07\xa6\x3d\xdd\xa1\xe6\x9a\x66\ -\xd9\xab\x66\xaa\x60\xbf\x9e\x98\xfc\x71\xb5\x5a\x71\x92\x4c\xe7\ -\x75\x73\x6a\x0e\x4d\xe7\x75\x04\xaa\x2b\x43\x97\xfd\xde\xc8\x24\ -\x88\xc5\x6f\x20\x11\xa7\xee\x23\x52\x45\xe0\x13\x3b\x17\x47\x6c\ -\x59\x01\x26\xc5\x26\xf0\x2c\xcf\xb5\xc1\x37\x6e\xd4\x75\x69\x7b\ -\x05\xbd\xa9\x08\x30\x26\xc3\x2d\xfc\xba\x82\x84\x4a\x7f\x56\x62\ -\x1a\xcb\x70\x6e\x25\xb6\x0b\xa6\x37\xa2\x9b\xa6\xa2\xb3\x24\x04\ -\x65\x48\xb3\x20\xfd\x19\x5e\xac\xac\x29\xbe\xff\xe1\x40\x92\xa4\ -\xa4\xf4\x63\x91\x02\x9f\x23\xa1\xb9\x4a\x5c\xa0\xbb\xfe\x5b\x22\ -\x3b\x28\x05\xf4\xdb\xe3\x66\x06\x83\xc4\x2a\x43\xf3\x4c\x8b\xbf\ -\x85\xcb\x9f\x3a\x2a\x80\x85\x9a\xeb\xd2\x00\x96\x65\x7b\x4a\xfb\ -\x61\x96\x8c\xc1\xa8\xa3\x6d\x15\x26\x99\x5a\x04\xd7\xcf\xc5\xbd\ -\x13\x34\x89\x98\x54\x78\x2f\x02\xe2\x14\x15\x47\x66\x45\xac\x3d\ -\xd8\xb2\x1d\xc3\xd4\xda\x8a\x99\x58\x81\x48\x78\x15\xf6\x5e\x20\ -\x54\x0f\x51\x52\x14\xd2\x6e\xe6\xf0\xf7\xf6\xf6\xb0\xa4\x42\xe2\ -\x38\xea\x10\xaf\xb1\x16\xde\x05\xdb\x94\x52\x56\xbc\x0b\x81\x3b\ -\x18\xb3\x76\x39\x71\x58\x6e\xae\x0f\x99\xba\xfc\xd4\xe9\x97\xb1\ -\x9b\x26\x0e\x71\x26\x1e\xfe\xfa\x10\x2d\x66\x1a\x13\x3b\x85\xf7\ -\xf9\x57\xc4\xc1\x16\x06\x50\x58\xad\x7a\xb0\x32\x0e\xc8\xba\x59\ -\xcd\x9c\xd1\xc4\x7e\xc6\x76\xdf\xdd\xb6\xb8\x8f\x94\x2c\x72\xb1\ -\x60\xbb\x85\xe9\xd1\xc2\x71\xc6\x2d\x16\xfa\x65\x14\x91\xda\x53\ -\x39\x24\x5a\xa6\xe0\xd7\x94\x26\x8e\x7d\xed\x42\x89\x4b\xa7\xaa\ -\x03\x86\x37\x08\xcc\x1b\x35\xfa\x65\xf2\xf4\x84\x5d\x06\x98\xd4\ -\x1d\xdb\x07\xf7\xfa\x66\x76\xd2\x14\x29\xad\x85\x13\x19\x00\xbf\ -\x18\x0c\x85\x1e\xcb\xd1\xcb\x91\xcc\xde\x4d\x93\x01\x58\xdc\xa5\ -\x01\x91\x12\x0f\xe6\xfd\x7e\x0f\x2a\xfc\xb0\xf0\x53\x4b\x66\x98\ -\x08\x67\x22\xdb\x41\x11\x3a\x18\xf2\xda\xf2\xbe\x7f\x97\xe7\xc1\ -\x31\x66\x4f\x4c\x22\x99\x2e\x85\xb5\xa3\xfb\xe5\x26\xe1\xfa\x82\ -\x62\x04\x1b\x29\x38\xdf\x4c\xc7\xc8\x86\x28\x44\x1d\x2b\xb4\x01\ -\x69\x0a\x52\xd4\xe9\xd2\x06\xb9\xa7\x94\xa7\xee\x53\xde\x1e\xd7\ -\xc0\x52\x98\xd4\xdc\x4b\xcb\x3a\xad\x2a\x11\x95\x08\x45\x01\x26\ -\xa9\x20\x5c\x86\x44\x9a\xe0\x43\x95\x55\x41\xb4\xbc\x38\xba\x3f\ -\x75\xee\x6e\x7d\x42\x63\x65\x07\xda\xa0\x2c\x56\x4a\x24\x58\xb6\ -\x00\x6c\x0d\x77\x56\x78\xe4\x18\xdd\x18\x2e\xab\x36\xf6\xd8\x89\ -\x23\x98\xcb\xa2\x70\x90\x57\x2d\x34\xcd\x58\x25\x93\xe4\xcf\x16\ -\x0a\x59\xeb\xc8\xe9\xae\x67\xb8\x5e\x52\xd6\xfc\x0b\xd9\xa3\x54\ -\xa7\x51\x3d\xc8\xac\xf8\x1c\x5f\xec\xd2\x58\x8d\xd7\xcb\xd2\xca\ -\x11\x6f\x8a\x43\x28\x46\x78\x80\x28\x5c\xf1\x24\xb5\xb5\xb4\x22\ -\xd4\x4c\x48\x65\x9b\x42\xf4\x23\xf7\x2e\x54\xb6\xe4\x84\xb6\x0f\ -\x57\x5b\x99\x3c\xf7\xc4\xe2\xbf\x92\x29\xaf\xd8\x83\xf5\x6f\x85\ -\x49\xf0\x15\x72\x20\xb0\xd0\xa0\x55\x14\x36\xda\x4f\xf4\x21\x3d\ -\xee\x62\xc4\xf0\xfc\x7a\x28\xd4\xdd\x68\x07\xb0\x64\x4d\xc0\x1c\ -\xa0\x6d\x70\x2f\x43\xc0\x62\x1b\x56\xaa\xa9\x4c\x0b\xa6\x4b\xcf\ -\x26\x67\x61\xa1\x61\x13\xa5\x92\xa8\xb2\x3d\xae\x54\xd2\x10\x56\ -\xa3\x8c\x62\x5c\x89\xb2\xc1\x31\x22\xcb\xfb\x78\x62\x89\x50\xaf\ -\x59\x27\x6a\x79\x23\x3b\xb9\x60\xfa\xf4\xcb\xa2\xbd\x8e\x39\x62\ -\x5a\x18\x45\xa3\xe9\x55\xaa\xeb\x66\x9a\x89\x49\x83\x39\x16\x4e\ -\x4f\xa4\xf6\xcd\x20\x21\xb1\x4c\x09\x34\x25\x20\x25\x86\x67\x8e\ -\x87\x94\x47\xa0\x1f\x9d\xef\x08\x0c\x57\x8d\xaa\x47\xaf\x08\x13\ -\x21\x92\xfb\x8e\xb8\x80\xae\x6f\x9b\x06\x71\x5c\x33\xa8\x8f\x19\ -\x7e\x79\x67\x0c\x69\x85\x3b\xe6\x52\x2b\x32\xf9\x08\x36\x87\xb6\ -\x8a\x54\x5e\x7f\x15\xe5\x86\x2c\x28\xe3\x9b\x42\x02\xab\x22\xb0\ -\xe2\x12\x22\x45\xf7\x4e\xc5\x55\x0b\xd5\x0d\xce\xa8\x52\x28\x08\ -\x66\x43\x18\x4c\xd2\xdc\x46\x10\xcc\xc6\x30\x98\xa4\x19\x8e\x85\ -\x64\x27\x09\x6e\x09\xd4\x22\x79\xdc\xf4\x20\xf5\x29\x66\x92\xc4\ -\x9d\x0d\xc8\x05\x4a\xc3\x64\xe5\xc6\x20\x2f\xf8\x4a\x9c\x61\x96\ -\x90\x1c\xc2\x8f\x25\x09\x61\xe6\xd0\xd3\x44\x12\x63\x36\x84\x44\ -\x1b\x8d\xec\x72\xa9\x1f\xd2\xdd\x51\xb1\xc1\x25\x01\xa4\x6e\x80\ -\x14\xdd\xaf\x11\x8c\x36\xb1\x40\x86\x89\x1e\x3d\xe3\x51\x2c\x90\ -\xf3\xfb\x3c\x75\xc8\xdf\x93\xc1\xe3\x43\x40\x19\x33\x67\x02\x6f\ -\x8e\x1a\x49\x2d\xb1\x0e\x1f\x11\x5d\xad\x52\x9c\xa2\xdb\x79\xb4\ -\x5b\x9d\xd5\x2e\xce\xb4\xb7\xab\xfc\xde\x54\x51\x52\xa1\xaa\x85\ -\xa8\xf9\x7a\x36\x7d\x2e\xdf\xa2\x20\x8b\xa2\x27\x78\x24\x55\x40\ -\x0b\xc6\x3a\xa3\xc2\x49\x8a\x9f\x9e\x21\xd4\x90\xe1\x7a\x19\x96\ -\xdb\x07\xae\x70\x0b\x3a\xba\xc0\xd9\x89\x1c\x7b\x8d\x87\x2a\x7d\ -\xf1\x94\x54\x1e\x5d\xe6\x0f\x3a\x18\x87\x61\x2e\x57\x91\x27\x92\ -\x59\xa1\x07\x43\xbb\xcc\xe5\x95\xf4\xf0\xd5\x4d\x6b\x6c\xe8\x4c\ -\x95\x19\x68\xe8\x06\xe3\x0b\xca\x99\x12\xfe\x60\xcf\xa3\x83\xcd\ -\x86\x13\xfc\x30\x9a\x32\xc8\x35\xf4\xd5\xd9\xce\x36\x18\xaf\xae\ -\xc1\xf8\x84\xab\x3f\xa3\x1a\x80\x7b\xfd\x81\x5a\x58\x72\x3f\x4c\ -\xc4\x21\x20\x39\x3e\xf8\x0c\xfa\x93\x94\xd3\xc4\x3c\xa9\x89\x51\ -\xe1\xa9\xd1\xd9\xb4\xd1\x9d\x31\x89\x28\x75\x15\x66\x17\xcb\xa9\ -\xa9\x99\x92\x0e\x9f\x4b\xa8\xff\x4a\xcd\xb5\x75\xf0\xef\x3c\xf8\ -\xb7\x06\xfe\x5a\x03\xff\x9d\xa9\x98\x9d\xbb\x29\x21\xac\x72\x71\ -\x98\x1e\x1a\x92\x03\x92\x64\x4c\xb0\xa3\xe8\xd4\xb2\xb4\x2b\xd3\ -\xf2\xb6\x93\x35\x2d\xac\x8a\xb6\x4b\x86\xa3\xb3\x34\x46\x47\x0e\ -\x37\x31\x74\x69\xeb\xb4\xf3\xb4\x35\x5d\x6b\xd6\x9c\x99\xd4\x6a\ -\x7d\x8f\x4f\x18\x76\x34\x8b\xc9\xcb\x31\x04\xe2\xd1\x28\x8f\xa8\ -\xe9\x16\x2e\x8e\x70\x61\x83\xa7\x1b\x0c\x72\x9b\x95\xbd\xbd\x86\ -\xa8\x5b\x97\x6c\xa2\x29\x72\xd9\xe2\x79\xde\x0e\x6c\x2f\x13\x4e\ -\x86\x42\x9a\x3d\x94\x34\x8e\x9e\x35\xcb\x2e\x2e\x02\x3f\xa0\x43\ -\xab\xbf\xa9\x8b\x43\x9d\x62\x7e\x8e\x01\x8c\x91\x3e\x5e\xc3\x36\ -\x39\xd9\x74\x07\x0e\x38\x99\x19\x30\xe8\x4d\x0b\x13\x3f\x46\x52\ -\xda\xac\xf0\x69\x13\x2e\x08\xae\x2c\x82\x4e\xa4\x98\x8a\xe2\xdf\ -\x99\xca\xa0\x3e\xa5\x43\x25\xaf\x19\xe3\x15\x1a\xf8\x6b\x9e\xa8\ -\x69\xa4\x70\x29\x78\x1b\xa2\xc2\x92\xa0\xbe\xab\x67\xe8\x99\x3c\ -\xcb\x14\x89\xea\xf0\x04\xc1\xca\x07\x10\x2f\x35\x4c\x29\x1c\x88\ -\x0b\xc1\x01\x51\x63\xef\x6c\xdd\x8c\x73\x8f\x58\xdd\xb4\xab\x66\ -\xfc\xd8\xfb\x65\x2e\x49\xa5\xab\x21\xea\x58\xba\xe1\xfb\x10\xae\ -\xb4\x02\x9a\x48\x0e\x89\x8f\xef\x33\xf1\x94\xf1\x75\x44\x21\xd4\ -\x4f\x28\xb7\xed\xe3\x27\x8e\x52\x12\xb5\x6b\x52\xc0\xc9\x1e\x3b\ -\x49\x30\x50\xea\x71\xf5\x3a\x15\x3e\x42\x38\x8a\x31\xf7\xf3\x9c\ -\x19\xf5\x33\xfa\x70\x4c\x01\x15\x8d\x58\x4c\x72\x27\xaa\xa8\x2c\ -\x11\x31\x16\x93\x1b\x83\x0c\xae\x13\x90\x48\xe2\x80\x0c\xb5\x5c\ -\xf1\x1b\x43\x3c\x8a\x4a\xbd\xa5\x0b\xb7\xb3\x2c\x02\x88\x8f\xf1\ -\xbc\x99\x61\x1b\x9c\x59\x36\x13\x9e\x97\x0b\x3c\xbf\x40\x0b\x82\ -\xba\xb5\x21\xdb\x2e\x0c\xeb\x8e\x92\x77\x00\x31\x9c\x31\x30\xdb\ -\xc3\xda\x88\x32\x00\x0a\x8f\x1e\x15\x45\x6b\xf8\x50\x4e\x63\xc3\ -\x4e\x1e\x86\xf5\xc0\xd6\x08\xc2\xa1\x52\x9c\xf6\xdc\xef\x18\x46\ -\x6f\x4f\x9f\x26\xac\x11\xcd\x9d\x04\x7f\xad\x88\xab\x94\xf6\x42\ -\xcf\xe7\x81\x77\x1d\x26\xeb\xf4\x99\x54\x5c\xde\x5b\x91\x3d\xc3\ -\x5a\x4d\x55\xed\x82\xd8\x71\xfb\x12\x23\x3b\x9b\x42\xcc\x60\x12\ -\x51\xcd\x19\x5f\x7f\x29\x98\xa3\x4b\x15\xee\x72\x6a\xb2\x6a\xfd\ -\x20\x52\x40\x6e\x53\xf4\x77\x43\x71\x8a\x9a\x96\xbf\x0f\x17\x9d\ -\x62\x4a\xd9\x84\x3e\x6e\xd5\xb1\xc4\x84\xe1\x75\x70\xc4\x2f\x17\ -\x8d\xe1\x46\x75\x65\x25\x8c\xc8\x82\x2a\x48\x83\x84\x88\xab\x15\ -\x88\xef\xd3\x45\x42\x32\x47\x8d\xc2\x6e\x93\x5b\x22\xe0\xbb\x48\ -\x9d\x87\xb1\xf7\x4b\xcd\x62\x21\xb8\xdc\x3e\x63\xed\xdb\xf8\x5a\ -\xa2\x22\xbc\x0d\xb0\x63\x63\x6c\xc3\x29\xa3\xaa\xa9\x4d\xd9\xd2\ -\xc5\xb0\xd4\x31\x6c\x54\xe0\xd1\xba\xca\xf8\x75\x62\x1d\x47\x01\ -\x1d\x54\x0f\xe5\x9f\x0e\xcf\x64\xef\x2a\x54\x39\xe2\x60\x6d\xbd\ -\x1c\x49\x7a\xca\xbe\xba\xc1\x95\xa4\xac\x9c\x25\x6d\x3e\x8b\xbd\ -\x12\xc7\x62\xb4\x84\x11\xcb\x7b\xfd\x85\xc6\x96\x73\x5c\x68\xbc\ -\x2b\xbd\x5d\x16\x43\x28\x2d\xdd\x32\x48\x0f\xdd\xd5\xda\x70\x2f\ -\x4a\x1b\xad\x35\x10\xe0\x31\xaa\x2f\x5f\x70\xc1\x36\x85\xdf\xdb\ -\x60\x1d\x9b\xb9\xb6\x34\xf4\xd8\x56\xb4\x2d\xbb\x0d\xf7\xab\x01\ -\x48\xbd\x68\x16\x26\x43\xf0\x3a\xb7\x19\x85\x31\xc3\x33\x33\x7a\ -\x27\x36\x67\xaf\x62\xc7\xbc\xfe\x1f\x3b\x49\x07\x5b\x75\x6f\xb6\ -\x0b\xd9\xb6\x84\x02\xa2\x94\x78\x1d\xc4\x14\x4e\x2b\x2b\xa1\xf2\ -\x82\xaf\x14\x4f\x3f\x27\x6e\x4e\x64\xcd\x35\x4e\x4a\x60\x79\xcf\ -\x30\xf4\x7e\x53\xc5\x91\x31\x5c\xf2\xc4\xe6\x27\xd3\xe6\x51\xbb\ -\x89\x0d\x8e\x62\x44\xea\xce\x8d\x70\xd5\x90\x2a\x18\x83\xa2\x53\ -\x7a\x31\x41\x0d\x27\xc5\xdd\x56\x75\xdc\x30\xa0\xbc\x9d\xd5\x32\ -\x79\x1b\x77\x34\xd2\x31\xb3\x9d\x1c\xa2\x58\x87\x49\x3f\x2e\x0e\ -\xd1\x93\xe1\xda\x22\xa9\xa0\x7b\xf2\xbf\x80\x0c\x53\xbb\x77\xa2\ -\x0e\xfd\x38\x88\x04\x4f\xd2\x7e\x99\x4d\x65\x57\x53\xc6\x6e\x25\ -\xc6\x6a\x3e\xb6\x88\x66\x81\x17\x7a\x47\x9e\xc3\x33\xbd\x0b\x1b\ -\x5f\x49\xa2\xc7\x8e\xda\xf6\x0b\x6e\x86\x7d\x83\x48\x94\x81\x49\ -\x03\x28\xb8\xaf\x76\x46\xce\x2f\x55\x15\x3e\xfb\xbc\x90\x98\x7d\ -\x42\x1e\x31\xad\xf8\xaf\xcc\x4d\x5a\x7a\x7b\x2e\xe4\x57\x63\x8c\ -\x19\x01\xb3\x94\x71\xb1\xec\x7a\xfc\x89\xa6\xc7\xf9\xe0\x4a\xcd\ -\x8b\x2e\xbb\xb6\x69\x3d\x10\xdd\xf7\x87\x05\x65\x68\xf8\xf0\x8d\ -\xbc\x15\x1c\xf4\xae\x74\xc2\x15\xfe\x7a\x45\xd6\xb6\x51\x1b\x18\ -\x7c\x0a\xe5\x24\x05\xb7\x6c\x47\xb5\x72\x50\x7b\x4b\x47\x9e\x2d\ -\x13\xb7\x42\x2b\xa6\xe9\x59\x16\x4b\x4c\x30\xd3\x71\x05\x64\xe9\ -\x70\x4d\x3a\xc3\xb5\x40\x58\x62\x50\x5a\xd3\x4c\xa3\x05\x47\x52\ -\x29\x65\x28\xe5\xc9\xe5\x2a\x43\xd8\x8e\x69\x58\xec\xcc\x14\xb1\ -\x95\xdc\x57\x62\x5c\xb1\x61\xdc\x00\xd8\xc6\x55\x7e\x72\x69\xb6\ -\x5c\xa3\x73\x02\xba\xa6\xd0\xa5\x89\x92\x78\x80\x5a\x30\x72\x5e\ -\x27\x37\x93\x79\x27\x6a\x76\x32\x69\x4e\xe1\xd5\x8a\x73\xc5\xce\ -\x22\x66\xa7\x79\x94\x7d\xf1\xc3\xca\x8b\x73\xb8\x75\x5c\x6a\x93\ -\x60\x8d\x65\x59\x59\xd6\x1e\x2e\x27\x83\x2f\x4e\xea\xf7\x74\xe1\ -\xd1\x87\x02\x76\xf0\xb8\x24\xe6\xa6\xe6\x88\xc1\xc3\xe4\xa2\x3c\ -\x6c\x18\xad\x14\x96\x87\x94\x89\x23\x15\xc3\x70\xf2\xc7\x23\x72\ -\xc7\x8f\x2c\xdd\x11\xc7\x30\xc9\x59\x7a\xab\x3a\x4b\x63\x7a\xa1\ -\x6c\x50\x93\x3e\x4b\x8b\xa3\x73\x65\x2b\xa3\x94\x5c\x96\x71\x79\ -\x79\x76\x01\x4c\x7d\xf0\xcd\xbb\xd2\xfb\xe9\xdb\xfc\x24\x26\xf0\ -\x9b\x73\x86\x63\x58\x19\x4c\x51\x16\xec\x71\x96\x15\x62\x00\x45\ -\xde\xc7\xc3\xad\x44\x58\xa3\x43\x4f\x6d\x4a\x3a\x45\x73\xd1\xb1\ -\x0c\x10\x51\x9e\xd8\x36\x24\xf0\x49\x1c\xab\x0e\x78\xa9\x32\x56\ -\xcd\xdd\xa9\xc4\x1b\x96\x77\x92\x63\xc0\x0a\x34\x33\xa9\x71\xec\ -\x02\x3b\x8f\xf0\x79\x7c\x8a\x48\x9e\x1c\x11\x4e\x12\x51\xc7\x57\ -\x6e\xf9\x3f\xed\x42\x37\xec\x77\x1c\x4f\xae\x68\x36\x78\xfc\x8c\ -\x1f\x79\xdc\x41\x86\x99\x69\x07\x34\xb0\x90\x78\x53\xc0\xfe\x90\ -\x14\xa9\x24\x75\xe4\x46\x9a\x58\x89\x27\x37\x05\xec\xe7\x4b\x5b\ -\x5d\xf2\xb8\xbd\x46\x11\x18\x09\x0d\x8a\xab\xc9\x01\x5f\x2e\xaa\ -\xe5\x93\x32\x8c\x29\xd3\xde\xf2\x90\x08\x66\x14\x04\xcb\xd5\x84\ -\xcc\x94\x2a\x55\x24\xc9\x64\x1a\x55\x16\x61\x2a\x59\x7e\xa2\x29\ -\xd2\x44\x5d\x9d\x61\x03\x47\xc7\x82\xaf\x22\xc6\x35\x99\xc4\xa5\ -\x38\x32\x19\xc0\x74\x81\x8c\x16\x05\x75\x43\xb8\xd7\xf0\xf1\x1f\ -\xae\x92\x62\x5e\xa3\x8c\xcb\x52\x60\x8c\xa3\xd6\x10\xbe\x97\x5a\ -\x0c\x20\xf0\x8c\x93\x1d\xc2\xd7\x61\x89\x05\xb1\x07\x2e\xd8\xbb\ -\x94\x2b\x5f\x3c\x40\xc5\x39\x2b\x2a\xc5\xc8\x6f\x89\x15\x3d\x80\ -\x46\x05\x85\xcf\x0b\xf2\xa8\x70\x47\x7d\x4c\x73\x8b\x98\x0f\xc6\ -\xba\x53\x56\xd7\xa0\x0d\x49\x09\x22\xcc\x0a\x7d\xc2\x2c\x96\x8b\ -\x20\xfb\xad\x11\x10\x3a\xa0\x48\x30\x36\xc6\x15\x8a\x68\x2a\xce\ -\x2c\x71\x31\x3b\xbd\x06\xfb\xb2\xf0\x8d\xf1\xbc\x4d\x5d\x1f\x56\ -\xd6\x40\x61\x4a\x81\x44\x5d\x16\x47\xc7\xed\x78\xbc\x79\x52\xf1\ -\x34\x1b\x38\xe8\x10\xd1\xf8\x31\x54\x25\x25\x04\x5a\x7f\xf0\x90\ -\xd6\x31\x64\x97\x92\x06\x2f\xe7\x01\xa4\xc3\x08\xa9\x1f\x7d\x1a\ -\x4a\x51\x09\x2d\x7d\xf0\xb0\xd6\xd1\xef\x80\x2d\x93\x14\xde\x5c\ -\xc0\x8b\xc1\x1b\x24\xac\x9a\x5b\x42\x6b\x38\x04\xd0\x06\xcd\x6c\ -\xe2\xc8\x6a\x2d\x4b\xe9\xf8\x00\xaa\xf5\xc4\xfb\x66\xee\x55\xca\ -\x19\x92\xed\x7d\x57\xd3\x16\x6a\x81\x05\x33\x4c\x57\xc7\xa6\x89\ -\xe5\x11\x8f\xa2\x45\x30\x3a\x18\x5b\xbe\x2a\x83\x3d\x99\x0a\xfb\ -\xdd\x6d\x3f\x1c\x86\x22\x78\xb5\xcc\x27\xe3\x71\x8d\xf4\x07\x1e\ -\x50\x53\x6a\x4f\x13\x12\xa6\x1e\x4d\x08\x47\x29\x18\xab\xc9\x78\ -\x4e\xc2\xe2\xb0\xaa\x76\x4e\xc0\x99\xd7\xfc\x46\x49\x25\xcf\x67\ -\x0c\x6e\xa3\x09\x9b\x15\x62\xab\x80\x14\x84\x42\x8c\xca\x40\xd3\ -\x66\x59\x60\xc9\x05\x50\x19\xd3\x31\x32\x1b\x21\xcd\x5c\xf5\x3c\ -\xae\x1c\xd1\x79\x60\x95\x85\x72\x87\xf1\x64\x74\x26\x2e\x47\x43\ -\xad\x85\xd8\x64\x35\x01\xec\x3c\x08\x11\xf0\x31\x10\xb2\xef\xf7\ -\xf8\xb4\xbd\xdd\x9c\xa2\x9a\xd8\x9f\x4c\x3c\x4f\x92\x6f\x0c\x12\ -\x86\x0b\xdd\x6d\x80\xe2\x89\x4a\x2f\x8c\xc5\x6c\xc6\x3a\x51\x10\ -\x2d\x65\x07\xfd\x0a\x66\xd0\xb2\x73\xc3\xb0\x08\xc9\xe9\xd4\x86\ -\xcb\x1e\x48\xac\x51\xfe\x33\x95\x5a\xae\x0b\x02\xcb\xa5\xf1\x14\ -\x23\x6b\xa2\xf3\x91\x90\x51\x26\x12\x4f\x75\x89\xe8\x3c\xaf\x25\ -\x33\x12\x49\x8a\x85\xa6\x3b\x0f\xe2\xdc\x38\xe2\x95\xf4\x92\xe1\ -\x60\xbe\x22\x5a\xe4\x73\x1c\x07\x3f\xe4\x2b\x8c\x92\xd9\xda\xd1\ -\x82\x28\xe1\x11\xad\x06\xdc\x83\xfe\x11\x95\x9d\x67\x10\xaf\xd2\ -\xe8\xfc\x51\x9d\xa5\x8c\x0a\xac\x5d\xbf\x72\x89\x3a\x24\xab\x8b\ -\xdc\x2f\xb1\xad\x33\x3c\x75\x44\x09\x47\x53\x03\x3d\xca\x13\xe1\ -\x66\x95\x26\x12\xd7\xf6\xb8\x9c\x12\x4a\x6d\x8f\x9b\x37\x73\x49\ -\xa5\xca\xa6\xc8\x7e\x70\x51\xb2\x54\xc6\x27\xa2\xa2\x7f\xba\x8b\ -\x54\x96\xc4\xc7\xbd\x69\x3e\x77\x66\x47\x00\xf4\xcd\x28\xb8\x2f\ -\x13\x77\x2e\xde\x2f\x33\x8c\xef\xc8\x4c\x7b\x5b\x3c\x5a\x98\xc0\ -\x73\x27\x8b\xc3\x76\x21\x29\x5e\x3b\x2a\xe2\x15\xaf\x5f\xe4\x39\ -\x8e\xe3\xe1\x15\xe5\x63\x77\xba\x8a\x9d\xa2\x2b\x8e\x8b\x70\x4d\ -\xa4\x9d\xf4\x12\x7e\xca\x99\x3c\x5c\xb0\x1d\xef\x7a\xa1\x30\x52\ -\x59\x45\xd9\xb7\x87\x8f\xa1\x94\xca\xbe\x5d\x1c\x0d\x19\x6a\x94\ -\xe6\x8d\xd4\x23\x8a\x53\xf0\x32\x3b\x4b\x58\x79\xb1\x05\x5e\x54\ -\xee\x58\x90\x6e\x53\x3b\xbb\xbb\x20\xf4\x7a\x1b\x1e\x4a\xd0\x0b\ -\xff\xad\x0a\x44\xfa\xed\x98\xd3\xe6\xe7\xb4\xef\xed\xed\x5d\xc5\ -\xa2\xd2\xb6\x7f\xf0\x7c\x68\x64\xfb\xd0\x01\x66\x0e\xc4\x58\x60\ -\x64\xfb\x0c\x1a\xcc\x19\x8b\x1b\x19\x3f\x44\x4f\x19\x19\x3d\xa3\ -\x2e\xe6\x45\x7a\x4e\x57\x49\x81\x9a\x6a\x3f\x60\x96\xc2\x10\xd7\ -\x90\x9e\xc0\x05\x16\xb2\x22\x50\xec\x01\x5e\x85\xe7\x97\x0b\x5b\ -\x58\xf6\x3b\xaf\x87\x1d\x46\xcf\x54\x07\xdf\xfb\x13\x82\x9e\x03\ -\xe8\x95\x8e\xcf\x57\x03\x87\x34\xc6\x30\x46\xc4\x76\x6f\xe1\xa7\ -\xe4\x89\xd8\x5d\x37\x8e\xea\x58\x4d\xed\xaf\x46\x07\x94\x1d\x0b\ -\x29\xc3\x75\xeb\x7a\xd4\x03\xf2\x59\x0c\x2d\x4f\x2b\xe8\x8a\xb6\ -\x83\x21\x31\xb0\x98\xc7\x6d\x9e\xa1\x5f\x6d\xd1\x8b\x53\xd2\x21\ -\x94\x2f\xf0\x6f\xa0\x53\xbb\x0b\x6f\x24\x0d\x57\xfd\x29\x03\xf3\ -\x91\xd1\xe8\x1d\x75\xac\x2b\xb1\x99\x53\x14\xf2\xc9\x4b\x3f\x94\ -\x9e\x67\xe3\x3d\x69\xcc\x15\xa5\xd0\x95\x8b\xbd\x7a\x40\x23\x81\ -\x52\x0e\x4f\x9e\x16\x6e\x41\x58\x12\x8c\x9d\x8f\xd9\xad\x10\x66\ -\xb6\x80\xa0\xe1\xa1\xef\xdd\xe1\x51\x9f\x13\xf0\xfc\xe5\x85\x55\ -\x14\xae\x89\x82\x9b\x4e\xc4\x54\x07\xd9\x9f\xcc\x6e\x6d\xab\x70\ -\x33\x5c\x80\x35\x2b\x5f\xd8\xa6\xbc\xb6\x09\x96\x99\x3c\xd6\x38\ -\xb0\xc8\x02\xca\x34\xc8\x52\x74\x51\x52\x8a\xc8\x91\x9f\xd6\x8b\ -\x07\x1b\xf3\x45\xc8\xcb\x7a\x19\x7b\x78\x93\x25\x23\x4c\x08\x7a\ -\x24\x92\xe1\xe7\xb6\x35\x72\x50\x39\x12\xc9\xa0\x09\x61\xed\x60\ -\xa8\xc5\x02\x3c\x03\x4b\xdc\xe7\x15\x77\xa1\x5d\x53\x6f\x9e\x16\ -\xd0\xc9\x9b\xec\x94\xd6\x9f\x9e\xf2\x04\x2d\x19\x61\x55\x07\xe9\ -\xa2\xa7\x5b\xc6\xac\xdb\xf4\x1b\xdc\x2a\xed\x27\x34\x43\x21\xf3\ -\x44\x9b\xd8\x08\x2b\x8f\x91\x1e\xd7\x5b\x82\x27\x6a\x61\x54\x94\ -\x51\xd7\xcd\xdb\xe5\x42\x36\xb2\x97\x4d\xdd\x30\x68\x7a\x15\x77\ -\xaf\x69\x1d\xe6\xf2\x10\xa9\xa6\xbd\xd3\x4d\x79\xb7\x80\x0a\x20\ -\xae\x40\xca\x09\xca\x5c\x7f\x65\xcb\x53\x48\xd5\xd3\x24\x45\xa2\ -\x94\x5e\xef\x65\x63\xe0\xc3\xe3\x44\x18\xc4\x6b\x34\x7b\xc9\x16\ -\x85\x18\xeb\x7b\x95\xaa\x28\x87\x8b\x70\x3c\xd1\x8a\x1e\x3d\xca\ -\x4e\x8c\xa4\xf1\xae\x61\xd7\x2e\x94\x3d\x18\xe3\xe0\x40\x4f\xef\ -\x96\xf0\x38\xeb\x23\xca\xab\x26\x46\x77\xcd\x0b\x1d\x7f\x44\x53\ -\xb2\x19\xe9\x56\xf3\x03\x8e\xa2\xeb\x6a\x51\xa8\x5d\xfc\xe9\x8d\ -\x2d\xbc\xbd\x72\x78\xa3\x02\x63\x61\x08\x86\x72\x8a\x98\x72\x10\ -\x16\x83\x10\x3b\x3d\x5a\x08\x40\xe4\x1c\x15\x29\xb8\x38\x98\xc0\ -\xed\x5e\x53\x0c\x67\x80\x28\x37\x95\x44\x86\xa3\xdc\xfd\x31\x05\ -\x36\xfb\xf8\x4a\xf3\x45\x69\x04\x9b\xc0\x8d\x1a\x0a\xa4\xf9\x21\ -\x48\x43\xcc\x7e\xf7\xdb\x37\xf2\xf6\xe2\xa0\xf4\x29\x9a\xf2\x53\ -\x36\x23\x4d\xc5\x11\xa1\x4a\xd3\x65\x98\xf3\x60\xc6\x31\x6d\xba\ -\x9b\xbb\x8e\x4c\x25\x44\x36\xc1\xf4\x81\x7c\x06\x40\xbb\xc1\x69\ -\x03\x85\x20\x36\xc1\x28\xf0\x16\xe3\x7c\xa8\x4e\x6c\x7c\x01\x7d\ -\x2b\x3f\x36\x5a\xad\x9e\x0f\x88\x52\x06\xc6\xaf\xad\x93\xa2\xb4\ -\x8f\x97\xc2\x85\x5a\x0c\xe0\x71\x32\x9a\x2f\xf3\x4b\xe8\xd1\x4b\ -\xc1\x17\xa7\x91\x59\x19\x46\xb0\xb6\x33\x7a\xec\x50\x47\x1f\x3d\ -\x0e\x19\xd6\xa0\x63\xa3\x70\x92\x6a\x59\xf7\xcb\x38\xfd\x93\x88\ -\x02\xca\xca\x8f\x01\x28\x07\xdc\xd0\x9f\x23\xd3\x17\xac\x4a\xb1\ -\x43\xf6\x7d\x23\xaf\x76\xb0\xb9\x21\xaf\x34\xed\x02\x19\x92\x45\ -\xe5\xc1\x02\x39\xd2\xcd\x93\x45\x56\x2e\xa7\xc1\x12\x45\xb3\x9d\ -\xb4\x25\x3b\x02\x72\x26\x8b\x9e\x1c\x16\x2b\xb9\x30\xb4\x25\x61\ -\x8d\x36\xed\x1d\x67\x81\x77\xfb\x49\xbb\xd4\x1d\xd2\x20\xee\x6f\ -\x47\xe1\x1d\x91\x41\xfd\xbe\x2b\xee\x1f\xc1\x27\x65\x50\x3f\xf5\ -\xa0\x7b\x45\x55\xbb\xd2\x6e\xa8\xc2\x9d\x64\x2c\x16\x13\xbc\x8f\ -\x8c\x95\xca\x4e\xc2\xf7\x49\xae\xba\x42\x57\x4a\xa2\x34\xee\x55\ -\xa4\x70\x87\xbc\xa5\x8c\x5e\x58\x2b\xef\x99\x0c\x5c\x69\xdb\xd1\ -\x1b\x96\xbb\x47\x03\xf7\xad\x05\xcf\xa8\x0e\xdb\x7b\x61\x8e\x13\ -\xc5\xb5\x2c\x46\x23\x9f\x86\x8b\x71\x59\x18\x54\xe2\x7a\xb6\x8f\ -\xab\x8a\xa0\xe0\x48\x5a\x4b\x0b\x93\x84\x5f\x45\x8d\xad\xd6\xd1\ -\x1f\x46\x9c\x5e\x14\x27\x5d\x24\x66\xa6\x8d\xaa\x17\x00\xf5\xd3\ -\x0a\x9a\x41\xf3\xb2\x30\x77\xe7\xb1\x61\x99\x97\x4d\x9d\x49\xc2\ -\xa7\x4f\xbb\x38\x03\x9e\x1f\xb2\x97\x46\x48\x77\x24\x82\x25\x4a\ -\x94\x18\x37\xc8\x58\x1c\xa5\x87\xe4\xd9\xb3\xfa\xed\x32\x4c\xca\ -\x99\xe2\x50\x69\x77\xd4\xa0\xe7\x99\x30\x93\xa1\x5b\x04\x96\x74\ -\x3c\xc5\x81\x45\xaf\x4c\x2f\xcc\xd0\xfd\x11\xac\x45\xbf\xdd\x44\ -\x9e\x19\x2f\xca\x12\x45\x0d\x83\x17\x30\x68\x54\xa7\x61\xa9\xc0\ -\x89\x76\xda\x8d\x47\xb0\xd3\xaa\x3f\xbc\xce\x8e\x59\x24\x11\x27\ -\xe1\xe2\x08\x0a\xe2\x44\xd3\x04\xa7\x10\x22\x9a\x59\x5f\x5a\xb0\ -\xbd\x99\x2a\xa2\x12\xb5\xd5\x02\x35\x7a\x38\x69\xf4\xb0\xc2\x6e\ -\x0d\x51\x32\x73\x93\x0c\xdb\x30\x9a\xe7\x46\xd0\x64\x1c\xa9\xde\ -\x72\xd0\xad\xcc\x7a\x3c\x12\x8b\x05\x12\xc0\x83\xec\xde\x82\x6e\ -\xe5\xc2\xbf\x70\x9f\x47\x23\x7d\x4e\x4f\x92\x6e\x0c\x69\x31\xed\ -\x37\x1a\x99\x33\xea\xe4\x31\xac\xd9\xd1\x2d\x19\x62\x86\x66\xf0\ -\x6c\x81\x61\x84\x44\xdd\xda\x30\xa8\xcd\x51\x31\x99\x59\x03\x86\ -\x90\x35\xac\x8c\x19\x9d\xd3\xc3\x11\xc4\x99\xc9\x67\xfa\x65\xd6\ -\x19\xa5\xe8\x24\x8c\x7e\xf0\xdd\x4a\xf3\xb9\x4a\x20\x0a\x06\xa0\ -\x49\xab\xb2\x33\x58\xab\x21\x70\xe5\x4f\x2b\xcc\x66\x77\x00\xc1\ -\xb5\xb1\x6c\x95\xe3\xb1\xb0\x60\x54\x59\x22\x70\x2a\x43\x60\xad\ -\xe4\xa0\x5c\xd9\x15\xb1\xdc\x70\x87\x7d\x09\x3a\x0c\x5f\x52\x5a\ -\xb9\xeb\xb6\x48\xd7\xe2\x12\xd2\x4a\xfd\x6f\x0e\xf4\x5f\xe9\x60\ -\xfc\xa8\x28\x92\x47\xd0\xc8\xde\x97\xb0\xde\xd5\xb3\xec\x7d\x71\ -\x83\x27\xc2\x84\x3b\xbf\x28\xd0\xb9\x2c\xc7\x73\x63\x57\x8c\x9a\ -\xd8\x14\x2b\x2c\xe8\xb4\x99\xdc\xb8\xcd\x06\xbc\xd3\x2e\x86\x16\ -\x16\xe2\xb9\x72\x59\xb1\x04\x20\x5d\x6e\xdc\x99\x32\xc1\xf6\xcd\ -\x46\x9c\xd5\x20\xcb\x26\x3b\x9f\x87\x69\xb2\x31\x9f\x74\xd3\x71\ -\x0c\x67\xd9\x98\x93\x76\x40\x5b\x8d\x19\x53\x73\xd0\xbe\x10\x82\ -\xf2\x58\x0e\x75\xf6\xe2\x45\x36\x43\xc5\xf4\x15\xeb\x48\x68\x46\ -\x97\x73\xc4\xf0\x24\x0d\x36\x9f\x8a\xe8\x06\x6c\x4c\xaa\x3d\x47\ -\xa2\x33\x1b\x64\x2b\xca\x50\x63\x44\x1e\x43\x27\xbb\xea\xf6\x11\ -\xad\x4c\x1d\xce\x56\x2e\xdd\xd8\xaf\x17\x58\x7f\xdd\x14\x9d\x4a\ -\x14\xd9\x36\x65\xe7\x92\x73\xd9\xda\x2a\xf9\x61\x98\xca\x28\x2c\ -\x0b\xa2\x80\xcc\xdc\x8d\xe9\x60\xaf\xe2\xca\xca\x4d\x89\x85\xd0\ -\x65\x8c\x81\x2c\xa2\x6e\xb6\x0e\x92\x27\xb8\xee\xd8\x09\x45\x25\ -\x1f\xb2\x12\x97\x0b\xe2\x48\xb5\x19\x30\x92\xc5\xc2\x44\x9c\x68\ -\x7c\x31\x66\xec\x62\x89\xbe\x3c\xb5\x5e\xa9\x84\xb2\x4c\xf2\xc7\ -\x8b\xea\x99\xa1\x7d\x76\x14\x6d\x4c\xae\x2b\x42\x7b\x7a\xc4\x9d\ -\x29\x11\x8f\x5e\x82\xec\x44\xf8\x20\x6a\x68\xc5\xab\x54\xd1\x4a\ -\x0e\x60\x63\x70\x00\xfe\x05\xc9\x8e\x60\x13\xdf\xe0\x52\x34\x27\ -\xfd\x69\x6a\x9b\x6b\xea\x41\x24\x91\x2a\x4b\x63\x11\x9b\x52\x96\ -\x8c\xcd\x10\x85\xe9\x34\x53\x5c\xc2\x38\x87\xcb\xdd\xe5\xa1\x1f\ -\x2b\x40\xcb\x37\x55\x40\x39\xac\xc5\x64\xd2\x35\x67\x3a\xae\x47\ -\xef\x53\x09\x0f\xe5\x81\x29\xce\xe3\xa3\x9a\x63\x9a\x24\x03\x89\ -\x26\x3a\x99\x9f\x11\x2d\xe8\x91\xe7\x22\x84\x4b\x6e\x32\x3c\xe2\ -\xe5\xfa\xf6\x58\x34\x89\xb1\x37\x70\xae\x9f\xa5\x85\x53\x1a\x7e\ -\x5a\x14\x9c\x13\xbf\xd8\x05\x0f\x3f\x10\xd5\x2b\x99\x82\xee\xba\ -\xd4\x1a\x8b\x4b\x81\xdc\x5d\x91\x0c\xc1\xb3\xce\xd4\xe1\x8a\xd0\ -\x80\xd8\x9e\xc7\x76\x67\x97\xb9\xf7\x43\xdf\x10\x95\x17\xf2\xc0\ -\xa7\x60\xb5\x85\x0a\x97\x25\xe3\x3d\x22\xae\x1e\x1f\x21\xc1\x8b\ -\x5f\x76\xa9\x04\xe0\x29\x0e\x36\x68\x1a\x4c\xc8\xb1\xfb\xb7\xcb\ -\x96\x67\x16\xb0\xb6\x02\xcf\x72\xe2\x55\x15\xec\xdd\xe1\xb2\xe7\ -\xd1\xeb\xc8\x47\xf8\x2d\x30\xca\xe8\xad\x8a\xa3\x9f\x2e\xab\x2d\ -\x0f\xe5\xa8\x3c\xcd\x34\x8f\x32\xc6\xdf\x08\xba\xc7\x1b\xd4\x31\ -\x85\xf3\xdb\x78\x1a\x46\x60\x16\x8b\xf6\x18\x3c\x88\x7a\xcb\x1a\ -\x1e\x1f\xc4\xa2\x3b\xf2\x2c\xb5\xdd\xc4\x3f\xd7\x40\x39\x26\x0a\ -\xa0\xe9\x78\x8e\xd9\x6e\x3c\xad\x20\x92\x7b\xd8\x15\x1b\x7b\xcd\ -\xf3\x20\xf4\x30\x11\x9b\x0d\x59\x38\x4b\x0c\x4c\x2e\xcd\x45\xbb\ -\x64\x7c\x35\xaf\xd3\x5a\x4d\xb0\x9c\x1c\x03\x51\x0f\xaf\xbd\x29\ -\x6f\xe8\x0e\x38\xd5\xfe\x7b\x44\x39\x22\x43\x46\x37\x68\x9b\xd8\ -\xe8\xc6\xc2\x50\xcb\xb8\xe3\x32\x58\xeb\x03\xa2\xe0\x31\x10\xfd\ -\xad\x78\x29\x78\x20\x7b\x98\xe0\x3c\x9a\x40\x48\x6f\x4f\xcc\x76\ -\x63\x61\x8f\x2a\x21\xbd\x3d\xfe\xb6\x5f\x6a\x70\x86\xa7\x6a\xda\ -\x9b\xb5\x03\x41\x9e\xbd\x01\x91\xa5\x5a\x7f\x6c\x77\xa5\xcb\x9f\ -\x0a\x59\x1b\x36\x99\x75\x22\x6e\x31\xf5\x78\xb0\x48\x4e\xf9\x0a\ -\xd6\x27\x37\xff\x6c\x67\x14\xb4\x9a\x45\x65\xad\xb0\x98\x75\x7a\ -\x4b\xa9\x67\x16\x23\xc2\x77\x31\xaf\x53\x66\xee\x65\xb8\x60\x40\ -\x4e\x70\xe3\x80\x99\x19\xd5\xf6\xc6\x65\xea\x06\xe0\x3f\x93\xa7\ -\x6c\x82\x71\x0f\x16\x93\x94\x07\xd6\xaa\xa5\x5e\x15\xa3\x94\xca\ -\xb0\x3a\xb0\x53\x1e\xff\xf0\x6c\x76\x44\x2c\x2b\xd4\x0a\x84\x29\ -\xa3\x83\x52\x31\x0a\xe6\x04\xd5\x3c\x60\x2b\x83\xcf\x93\x81\x91\ -\x34\x60\x9b\x02\x46\x1e\x09\x12\x9f\x52\x9c\x83\xa0\xf0\xd0\x8f\ -\xf8\x9c\x62\x3c\x30\xb9\xc2\x2b\x00\xc3\x65\x1c\x01\xd6\xae\x00\ -\xcb\x10\x35\x43\x17\x0f\xf0\x04\x04\x98\x61\x29\xbb\x78\x90\x2a\ -\xcd\xc2\xbb\xc0\xa3\x34\x13\xbb\xb7\x23\x60\x34\x05\x8c\xc1\xf5\ -\x4a\x3c\x4e\xb3\x11\x90\x61\x65\x2b\x20\xb4\x4c\x81\xa4\x5a\x22\ -\xf1\xd0\xe6\x22\x34\x66\x63\xc4\xc3\x5b\xa1\xc0\x0b\x5d\x75\x55\ -\x11\xea\x89\x08\x55\x5c\x74\x55\x01\xf0\x3e\x05\xb0\xbc\x00\x54\ -\x02\x94\x1b\x17\x31\xda\x19\x50\xd5\xe2\x39\xa8\x24\xdf\xa1\x57\ -\x11\x58\x8e\x08\xe0\x9d\xa0\xd8\x39\xee\xd8\xeb\xe8\x5f\xce\x74\ -\x2d\xfd\xde\xbb\x9c\x3a\xf1\x53\xb2\x5b\x1c\x52\x51\x76\x93\x9d\ -\x4c\x49\x3a\x1b\x13\xa3\xcc\xdb\xf7\xa6\xe0\x61\x46\x3a\xbb\x54\ -\x02\x1f\xde\xab\xc4\xc7\x0b\x15\xc0\xea\x41\x07\x2a\xa0\x66\x04\ -\xc4\x4e\x19\x98\x12\x33\x87\x04\xaf\xfc\xad\xb4\x54\x19\x66\x0e\ -\xbf\xde\xb7\xc2\x72\xed\x9c\x12\xb0\xba\xe6\x54\xd0\xf3\x83\xa0\ -\xd9\x82\x9b\x72\xf5\xba\x44\x5c\x76\x2e\x04\x27\x3b\x3d\x3c\xba\ -\x7a\x5d\x7a\xdd\x37\x15\x85\x9e\x1d\x05\xb9\x2c\x00\x52\x1e\x78\ -\x1b\x4f\x01\xb6\x58\xd8\x59\xb4\xf1\xc3\xaf\x04\x6f\xaa\xc5\xc7\ -\xe0\xc5\x4f\x74\x1a\x53\x91\x66\x20\xf5\x96\x1a\xa0\xaf\x46\x14\ -\xfe\x20\xa8\x6f\xf5\x34\xde\xda\x7d\x38\xf5\x91\x3a\x03\x25\xfd\ -\x4d\xd8\x99\xec\xc1\x76\xb3\x59\x3b\xaa\xbc\x63\xb3\xae\x3b\x30\ -\xb3\x29\x0c\xa8\x70\x3a\x2d\xea\x0d\x25\x29\x72\x39\x7d\x1f\x9a\ -\x59\x22\xa1\xe6\xfb\x3e\x53\x56\xba\x34\x01\x22\x82\xc1\xd4\x61\ -\x53\x2e\x0a\x23\x4d\x8f\x61\xc2\xc4\x15\x6a\x4b\x69\xb3\xa5\xf0\ -\x32\xf8\x08\x8d\xc2\xba\x9d\x9d\x96\x20\x73\x21\xe2\x5a\xf8\x81\ -\x98\x64\x5f\xd4\x32\x98\x00\x6a\xaf\x8a\xc0\x68\xe5\x30\x0e\x1e\ -\x8a\xcd\x19\x46\xc1\xd0\x02\xf8\x29\xc0\x1c\x4e\x08\xe6\xd0\x94\ -\x60\x0e\xc5\x83\x59\x1b\xb9\x14\x3e\x1a\x9b\x64\x56\x8b\x60\x0c\ -\xc9\xe5\x27\x8b\xeb\xde\xfd\x38\x24\x98\x24\x74\xba\xc3\xcc\xbe\ -\x3e\x71\x27\xaa\x1b\x2b\x3b\x3a\x25\xae\x23\xe6\x33\x1e\x7f\x57\ -\x52\x88\x19\xd3\x75\x85\xf2\x2b\x32\xaa\xb3\x12\x77\x25\x65\x9a\ -\xec\x68\x61\x5c\x47\x28\xd2\xa2\x25\x67\x49\xfb\x61\xb1\x9e\x22\ -\x59\x4d\xd4\xab\x95\x65\x9f\x5a\x5c\x9f\x9e\x63\x16\x57\xb3\x8b\ -\x87\xa3\x65\x5f\x49\x7b\xa6\xa1\xef\x11\xae\xb1\xd4\x51\x2e\x8a\ -\xeb\xb1\xcc\xee\x70\x8d\x66\xcd\x2a\xac\x4e\x12\x4e\xf1\x8a\x52\ -\x5e\x51\x70\x66\x62\x34\xc7\xe6\xd1\x1e\xf6\x9b\x05\xd2\x6f\x14\ -\x6b\x69\x8f\x85\x4a\x7c\xbb\x38\x4e\xb8\x1c\x68\x6c\x82\x26\x7d\ -\xcc\x4c\xb9\xa0\x3b\xe1\x42\x3c\x71\x1c\x59\x20\x1d\x1f\x3c\x4a\ -\x34\xea\x86\xaa\x99\x08\x25\x1d\xcf\x0f\x16\xf5\x1d\x50\x96\x6b\ -\x08\x13\x61\x3e\x16\x88\x09\xed\xd2\x43\xc2\x25\x26\x8d\x83\xa8\ -\x54\x7a\x62\xaa\x4b\x36\x2b\xfb\xb0\xe2\xcb\xde\x44\x6d\xb9\x88\ -\x92\x84\x36\x0d\xa8\x81\xeb\xa1\x50\x21\x1c\x2d\x16\xa7\x41\x0d\ -\x51\xc3\x1f\xc6\x7b\x6d\xe4\x9a\xf8\xca\xb7\xbe\x85\x6f\xa6\x3f\ -\x59\x5c\x00\x1f\xb8\xf1\x4d\x5c\x4f\x1f\xd0\x85\xfc\x12\x71\xe9\ -\xcc\xd2\x6b\xaa\x23\x69\x4d\x71\x91\xb4\xd4\x55\xb2\x7c\x2b\x7c\ -\x71\x74\x87\x7f\xd0\xf7\x4a\x90\x9f\x32\x0e\xb2\x18\x2f\xae\xf6\ -\x2f\x86\x16\x57\x42\x77\xd0\x73\xb8\x57\x1e\x0e\x87\x3b\xd2\xe0\ -\x40\xf3\x02\x49\x89\xdb\xfe\x28\xf7\xbc\x5f\x94\xdd\x06\xe2\x4e\ -\xd1\xa3\xd0\xc3\xfb\xdb\xd4\xf0\x9c\xd8\xb1\x2c\x38\x50\x44\xab\ -\xa4\x59\xc2\x76\xae\xf1\x68\x55\xac\xee\x8e\x2f\x67\xeb\x00\xec\ -\x24\x05\xde\x4c\xeb\x81\x59\xbc\xca\x3f\xcc\x5c\xec\x32\x63\x01\ -\x3c\xba\x23\x99\xf2\x34\x0d\x65\xa1\xb1\xe3\xb2\x50\x96\xd4\xf3\ -\x4a\x65\x5b\xc7\x81\x30\xd1\x56\x28\x77\x05\x27\x5d\x46\x27\xe2\ -\xbd\xc1\xd3\x2c\xa2\x79\xa1\x4b\x88\x83\xb5\x36\x69\x7e\xf5\x70\ -\xb4\xd4\x66\x96\x52\xcf\x59\x15\x2e\xe4\xec\x06\x3d\xcd\x8a\x9d\ -\xd5\xba\x41\x71\xd6\x02\x9b\xb2\x32\x8a\x20\x1d\x63\x3b\x52\x3c\ -\x49\xab\x64\xe1\x41\xe5\x64\x34\x4a\x43\xe9\x63\x84\x7a\xab\xa1\ -\x1b\xec\xe4\x46\x8a\x83\x87\x62\x7e\x3f\xac\xfc\x7e\x38\x32\x14\ -\xd9\xba\x2a\xdc\xb8\x1b\x6c\x85\xbf\x7a\x28\x87\x92\x0f\xe5\x90\ -\x8a\xea\xa1\x28\xaa\xf2\xd7\xaa\xf0\x8f\xdd\x68\xd4\xfc\x95\xa8\ -\x1e\x4e\x8a\x6a\x3b\xa6\x52\xa2\xe5\xee\x81\x12\x77\xd2\x2d\x8d\ -\x2b\x9d\x15\x94\xf3\x78\x6e\x77\xc4\xe7\x94\x75\x1c\x4c\x20\xaa\ -\xd1\x65\x7a\xbb\xb0\x2c\x87\x9a\x83\xcd\x40\x04\xb2\xc8\xf0\x66\ -\x5d\x8d\x1b\xfe\x7f\x15\x11\x41\xe5\ -\x00\x00\xab\x29\ -\x3c\ -\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ -\x00\x00\x09\x98\x00\x00\x00\x58\x00\x00\x9e\xbc\x00\x00\x00\x59\ -\x00\x00\x9f\x8b\x00\x00\x00\x5a\x00\x00\xa0\x3a\x00\x00\x05\xd9\ -\x00\x00\x9f\x4b\x00\x00\x05\xda\x00\x00\x9f\x6b\x00\x00\x05\xea\ -\x00\x00\xa0\x1a\x00\x00\x07\x78\x00\x00\x6b\x30\x00\x00\x48\x83\ -\x00\x00\x03\x39\x00\x00\x48\x83\x00\x00\x71\xc2\x00\x00\x68\x34\ -\x00\x00\x65\xc3\x00\x04\xa6\x79\x00\x00\x75\x03\x00\x04\xbb\x04\ -\x00\x00\x0b\x56\x00\x04\xbb\x04\x00\x00\x79\x78\x00\x05\x30\x45\ -\x00\x00\x0d\x81\x00\x05\x30\x45\x00\x00\x8b\x6f\x00\x05\x46\xc5\ -\x00\x00\x0d\xae\x00\x05\x46\xc5\x00\x00\x8c\x13\x00\x05\x56\x45\ -\x00\x00\x44\x35\x00\x05\x56\x45\x00\x00\x8c\x3f\x00\x05\xac\xf4\ -\x00\x00\x18\x90\x00\x05\xb8\xfd\x00\x00\x9c\x58\x00\x05\xcf\xc7\ -\x00\x00\x9c\xfc\x00\x05\xe0\x85\x00\x00\x22\x0d\x00\x06\xab\x8c\ -\x00\x00\x67\x1b\x00\x10\x84\x49\x00\x00\x4f\x3f\x00\x12\x05\xba\ -\x00\x00\x98\xb8\x00\x16\xc6\xda\x00\x00\x80\x04\x00\x2a\xa6\x79\ -\x00\x00\x6e\x06\x00\x2b\xc4\xaf\x00\x00\x6e\xe4\x00\x2b\xe0\x65\ -\x00\x00\x6f\x0f\x00\x39\xdf\x33\x00\x00\x33\x76\x00\x3d\xa1\x19\ -\x00\x00\x72\xd4\x00\x3e\x93\x83\x00\x00\x34\xa2\x00\x48\x8f\x7c\ -\x00\x00\x24\xbf\x00\x4b\x66\x35\x00\x00\x30\xb0\x00\x4b\x66\x37\ -\x00\x00\x30\xf1\x00\x4b\x66\x39\x00\x00\x31\x32\x00\x4b\x87\xd4\ -\x00\x00\x78\xa9\x00\x57\x60\x54\x00\x00\x94\xb9\x00\x58\xfd\xf4\ -\x00\x00\x47\x7e\x00\x59\x98\x25\x00\x00\x13\x70\x00\x59\x98\x25\ -\x00\x00\x95\xfd\x00\x6a\x58\x9a\x00\x00\x8e\x83\x00\x79\xef\xd4\ -\x00\x00\x6b\x68\x00\x7e\x7f\x0e\x00\x00\x62\x2e\x00\x8a\x23\x95\ -\x00\x00\x28\x07\x00\x8a\x23\x97\x00\x00\x28\x4f\x00\x8a\x23\x99\ -\x00\x00\x28\x99\x00\x91\xbc\xe9\x00\x00\x0d\xdf\x00\xa6\x37\x3f\ -\x00\x00\x26\xdc\x00\xaa\x80\x25\x00\x00\x77\xe1\x00\xc6\xe3\x6e\ -\x00\x00\x23\x77\x00\xcb\xa8\x14\x00\x00\x6a\x44\x00\xfc\x00\xca\ -\x00\x00\x86\xfa\x01\x21\xd6\x39\x00\x00\x4e\x4e\x01\x22\xb4\xf9\ -\x00\x00\x13\x9f\x01\x2f\x8e\x7e\x00\x00\x58\xf0\x01\x48\xfe\xa3\ -\x00\x00\x35\x1a\x01\x53\xf3\xaa\x00\x00\x7c\xee\x01\x56\x16\x4a\ -\x00\x00\x86\x85\x01\x67\x0d\x8a\x00\x00\x81\xdb\x01\x69\x11\x7a\ -\x00\x00\x92\x9e\x01\x82\x39\x0a\x00\x00\x8f\x23\x01\x8b\x68\x75\ -\x00\x00\x9b\xf3\x01\xa1\x7f\x63\x00\x00\x1b\x09\x01\xc1\xd9\xde\ -\x00\x00\x51\x64\x01\xd2\x8f\xd3\x00\x00\x48\x25\x01\xdf\x11\x43\ -\x00\x00\x05\x5a\x01\xe2\xf4\x5a\x00\x00\x98\x4b\x01\xfc\xae\xd3\ -\x00\x00\x6b\xa9\x02\x05\xbe\x25\x00\x00\x76\x80\x02\x46\x58\x0a\ -\x00\x00\x91\xe0\x02\x65\xad\x62\x00\x00\xa1\x16\x02\x6e\x07\xe2\ -\x00\x00\x4a\x55\x02\x76\x24\x13\x00\x00\x38\xf9\x02\x7d\xe0\x55\ -\x00\x00\x4b\x03\x02\x94\x46\x1a\x00\x00\x8e\xca\x02\xa7\x2c\x15\ -\x00\x00\x04\x04\x02\xaa\x36\x95\x00\x00\x6d\x91\x02\xb1\xf0\xba\ -\x00\x00\x83\xbe\x02\xbf\xaa\x8e\x00\x00\x37\x82\x02\xc0\x66\xf2\ -\x00\x00\x55\x16\x02\xc8\x3f\xf5\x00\x00\x5f\xff\x02\xd9\xa4\xb9\ -\x00\x00\x65\x72\x02\xdb\x1a\x94\x00\x00\x06\xdd\x03\x01\x84\xc4\ -\x00\x00\x87\xc1\x03\x12\x97\x6a\x00\x00\x85\xb2\x03\x1a\x14\x14\ -\x00\x00\x2e\x5c\x03\x1a\x16\x59\x00\x00\x4b\xa3\x03\x2f\x1a\x6a\ -\x00\x00\x6f\xa2\x03\x7e\xca\xb5\x00\x00\x3f\xd4\x03\x88\x1f\xd4\ -\x00\x00\x40\xa7\x03\x9e\x58\xa5\x00\x00\x00\x42\x03\xb3\x9e\xfa\ -\x00\x00\x8f\xd3\x03\xb5\xc8\x9a\x00\x00\x91\x33\x03\xbd\xd4\xe4\ -\x00\x00\x70\x5b\x03\xc4\x3c\xf5\x00\x00\x72\x96\x03\xc5\xd5\x5e\ -\x00\x00\x08\xe5\x03\xcb\x0d\xe5\x00\x00\x96\x26\x03\xdc\x0c\xd4\ -\x00\x00\x6e\x62\x03\xf2\x70\x35\x00\x00\x2b\x17\x03\xf2\xbd\x60\ -\x00\x00\x14\xef\x03\xfb\x0f\x04\x00\x00\x2d\xe4\x04\x21\x23\x23\ -\x00\x00\x1f\x9d\x04\x56\x06\x93\x00\x00\x2c\x0f\x04\x60\x7c\x15\ -\x00\x00\x95\x10\x04\x79\xef\x9a\x00\x00\x83\x27\x04\x82\x77\xf4\ -\x00\x00\x4a\xb7\x04\x87\xf9\x9e\x00\x00\x88\xc8\x04\x8c\xd6\xae\ -\x00\x00\x5e\x5c\x04\xa0\x8a\x25\x00\x00\x05\x29\x04\xa0\x8a\x25\ -\x00\x00\x73\xff\x04\xa4\x31\x5a\x00\x00\x8a\xff\x04\xa8\xeb\x85\ -\x00\x00\x31\x73\x04\xe1\x6e\xe3\x00\x00\x09\x87\x04\xe4\x0f\x75\ -\x00\x00\x02\xd7\x04\xeb\x41\xc3\x00\x00\x2b\x8e\x04\xef\xd9\xa8\ -\x00\x00\x46\xec\x05\x03\x83\x95\x00\x00\x67\x59\x05\x05\xcb\x13\ -\x00\x00\x3e\xa4\x05\x0f\xf2\x74\x00\x00\x8d\x8c\x05\x1b\x10\x59\ -\x00\x00\x42\x40\x05\x2a\xe5\x97\x00\x00\x48\xeb\x05\x44\x3b\x5f\ -\x00\x00\x69\x44\x05\x5c\xd9\xc4\x00\x00\x0f\x0c\x05\x5c\xd9\xc4\ -\x00\x00\x8c\xa8\x05\x63\xf6\x93\x00\x00\x47\xbf\x05\x65\xee\x65\ -\x00\x00\x7b\x60\x05\x87\xb0\xc3\x00\x00\x94\xe2\x05\x96\xa8\xa5\ -\x00\x00\x12\x38\x05\x96\xa8\xa5\x00\x00\x95\xd3\x05\xad\x4b\xc3\ -\x00\x00\x40\x2a\x05\xb9\x03\xc8\x00\x00\x1c\x94\x05\xbd\x0c\xba\ -\x00\x00\x7d\x99\x05\xbd\x8e\xde\x00\x00\x5c\xb0\x05\xbe\x56\x93\ -\x00\x00\x46\x86\x05\xc5\x50\x04\x00\x00\x0b\x85\x05\xe5\x8e\x2e\ -\x00\x00\x10\x38\x05\xfb\xdc\x83\x00\x00\x3f\x00\x06\x1e\xe6\xb5\ -\x00\x00\x9b\x31\x06\x29\xee\xa9\x00\x00\x74\x29\x06\x32\xe3\xe3\ -\x00\x00\x78\xd2\x06\x57\x19\xf4\x00\x00\x00\x00\x06\x5a\xef\x15\ -\x00\x00\x6d\xbf\x06\x5b\xd2\xb5\x00\x00\x3b\x8f\x06\x6c\x88\x8e\ -\x00\x00\x3c\xc7\x06\x74\x1d\x55\x00\x00\x50\xcc\x06\x8b\x96\x44\ -\x00\x00\x0c\x37\x06\x97\x58\xc9\x00\x00\x4c\x2c\x06\xbc\x80\xa5\ -\x00\x00\x1c\x21\x06\xc9\xb8\x05\x00\x00\x70\xd7\x06\xe8\x05\x4e\ -\x00\x00\x06\x74\x06\xee\xaa\x57\x00\x00\x9a\x2c\x06\xf0\xcb\x25\ -\x00\x00\x19\xef\x06\xfa\xff\xc3\x00\x00\x3f\x6e\x06\xfc\x1a\x14\ -\x00\x00\x32\x7b\x06\xfc\xa0\x8a\x00\x00\x8d\xcd\x07\x08\x90\xe5\ -\x00\x00\x29\x72\x07\x0d\xb7\xf7\x00\x00\x36\xcf\x07\x0e\x86\x3e\ -\x00\x00\x1a\x58\x07\x35\x68\x6e\x00\x00\x16\x0c\x07\x35\xe8\x9a\ -\x00\x00\x92\xe5\x07\x44\x41\x2a\x00\x00\x7c\x5d\x07\x4a\x1f\x63\ -\x00\x00\x01\xf6\x07\x4d\x73\x22\x00\x00\x8b\x97\x07\x4e\xa6\xf2\ -\x00\x00\x79\xd9\x07\x58\xcb\xe8\x00\x00\x8b\xd1\x07\x63\xfe\x0e\ -\x00\x00\x11\x09\x07\x80\xc6\xb3\x00\x00\x9e\x84\x07\x88\x72\x5a\ -\x00\x00\x71\xe5\x07\xa3\xe4\x0e\x00\x00\x21\x3b\x07\xc1\xfc\x13\ -\x00\x00\x2c\xd0\x08\x27\xb4\xba\x00\x00\x90\xce\x08\x32\xc4\xaa\ -\x00\x00\x93\x96\x08\x36\x74\x14\x00\x00\x23\x30\x08\x44\xb9\x83\ -\x00\x00\x32\xf8\x08\x49\xc9\x30\x00\x00\x15\x41\x08\x61\x7c\xb3\ -\x00\x00\x1c\xe1\x08\xa2\xca\x67\x00\x00\x4b\x53\x08\xa3\xe0\x33\ -\x00\x00\x75\x2d\x08\xb1\x15\x28\x00\x00\x2d\x71\x08\xb4\x04\x04\ -\x00\x00\x95\x56\x08\xd0\x32\xf4\x00\x00\x79\xa2\x08\xd4\xcd\x69\ -\x00\x00\x7a\x1f\x08\xe1\x9b\xbe\x00\x00\x19\x35\x08\xe1\xc1\xfa\ -\x00\x00\x7b\xa3\x08\xeb\x8d\x7a\x00\x00\x9e\x31\x09\x20\xda\x24\ -\x00\x00\x9f\xa8\x09\x20\xda\xb4\x00\x00\xa0\x57\x09\x20\xda\xd4\ -\x00\x00\x9e\xd9\x09\x4d\x96\xd9\x00\x00\x24\x06\x09\x65\xda\x8a\ -\x00\x00\x7f\x7f\x09\x68\x0d\x29\x00\x00\x89\xc6\x09\x71\x8d\x25\ -\x00\x00\x06\x2c\x09\x75\x23\x14\x00\x00\x6f\x3a\x09\x76\xed\x34\ -\x00\x00\x61\x46\x09\x86\xa6\x05\x00\x00\x22\x56\x09\x8b\x23\xba\ -\x00\x00\x94\x01\x09\x9e\xfd\x7e\x00\x00\x61\x90\x09\xb6\x2a\x63\ -\x00\x00\x31\xcd\x09\xcd\x1c\x55\x00\x00\x96\x72\x09\xd2\x21\xea\ -\x00\x00\x59\xd5\x09\xe5\x23\x0e\x00\x00\x54\x03\x09\xec\x2b\x45\ -\x00\x00\x0b\xe5\x09\xef\x33\xa3\x00\x00\x17\x19\x09\xf0\x1f\x6e\ -\x00\x00\x03\x60\x09\xfd\x45\x1a\x00\x00\x8f\x78\x0a\x09\xc1\x7a\ -\x00\x00\x92\x39\x0a\x28\x9a\x65\x00\x00\x49\x80\x0a\x28\x9a\x67\ -\x00\x00\x49\xc7\x0a\x28\x9a\x69\x00\x00\x4a\x0e\x0a\x2d\xbe\xe4\ -\x00\x00\x2e\xcf\x0a\x35\xa9\xfa\x00\x00\x84\x46\x0a\x3f\x27\x74\ -\x00\x00\x76\xca\x0a\x3f\x6b\x05\x00\x00\x77\x07\x0a\x49\xa5\x4a\ -\x00\x00\x9b\x72\x0a\x60\xe0\x15\x00\x00\x25\x00\x0a\x60\xe0\x17\ -\x00\x00\x25\x53\x0a\x60\xe0\x19\x00\x00\x25\xa6\x0a\x65\x9b\xea\ -\x00\x00\x8c\xd4\x0a\x78\x05\x80\x00\x00\x01\x3f\x0a\x7f\x8f\x65\ -\x00\x00\x3a\x1e\x0a\x98\x86\x18\x00\x00\x28\xe3\x0a\x99\x5c\xaa\ -\x00\x00\x94\x5b\x0a\xa8\x16\x95\x00\x00\x11\xf9\x0a\xa9\x89\xec\ -\x00\x00\x41\x02\x0a\xc8\x5c\x59\x00\x00\x0f\x3f\x0a\xd0\x50\xb8\ -\x00\x00\x6e\x31\x0a\xd0\xe6\xf5\x00\x00\x16\xc2\x0a\xd6\xf1\xfa\ -\x00\x00\x79\x0d\x0a\xeb\x91\x88\x00\x00\x60\xa3\x0b\x07\x78\x8a\ -\x00\x00\x7e\xde\x0b\x1b\xe0\x73\x00\x00\x4c\x9a\x0b\x24\x9d\xb4\ -\x00\x00\x4d\x65\x0b\x24\xc5\xc9\x00\x00\x12\x69\x0b\x26\x7e\x0e\ -\x00\x00\x75\xea\x0b\x2b\x50\xfa\x00\x00\x82\x80\x0b\x2d\xb3\xf9\ -\x00\x00\x64\xd6\x0b\x37\x73\x69\x00\x00\x9d\x24\x0b\x40\x40\x3e\ -\x00\x00\x42\xa2\x0b\x43\xcd\x19\x00\x00\x41\x7c\x0b\x66\x28\xd2\ -\x00\x00\x60\x4e\x0b\x88\xe0\x07\x00\x00\x0a\x70\x0b\x94\x44\xc5\ -\x00\x00\x2f\x44\x0b\xc2\x99\x6a\x00\x00\x7e\x21\x0b\xd3\x27\xae\ -\x00\x00\x04\x3e\x0b\xd4\x7e\x9e\x00\x00\x0a\xa7\x0b\xf5\xee\x53\ -\x00\x00\x8c\x67\x0c\x06\x50\x2e\x00\x00\x0c\xbc\x0c\x08\x46\x23\ -\x00\x00\x77\x9a\x0c\x19\xfa\x99\x00\x00\x7a\xa7\x0c\x28\x9b\x45\ -\x00\x00\x6e\xaf\x0c\x31\x7e\x4a\x00\x00\x90\x1e\x0c\x38\x4d\xe5\ -\x00\x00\x07\x20\x0c\x3a\x16\xd0\x00\x00\x18\x0a\x0c\x5a\xc0\xc8\ -\x00\x00\x72\x64\x0c\x6e\x87\xf5\x00\x00\x20\xfe\x0c\x91\xa0\x7a\ -\x00\x00\x9a\xdc\x0c\x96\x90\x59\x00\x00\x41\xd5\x0c\xca\xdd\xfa\ -\x00\x00\x99\x26\x0c\xd6\xef\x12\x00\x00\x2c\x75\x0c\xde\x99\x49\ -\x00\x00\x65\x22\x0c\xf0\xde\xaa\x00\x00\x81\x1f\x0d\x1c\xf6\xee\ -\x00\x00\x2a\x5d\x0d\x3a\x6c\xba\x00\x00\x90\x74\x0d\x45\xe2\x6a\ -\x00\x00\x97\xe4\x0d\x59\xa1\x45\x00\x00\x78\x15\x0d\x5a\xad\x33\ -\x00\x00\x71\x53\x0d\x5e\xe7\x6e\x00\x00\x25\xf9\x0d\x64\xa5\xd9\ -\x00\x00\x58\x1a\x0d\x6d\xf8\xf4\x00\x00\x07\xd1\x0d\x76\xb5\x92\ -\x00\x00\x2a\xb1\x0d\x9b\xec\xc9\x00\x00\x50\x5b\x0d\xa5\xd9\x94\ -\x00\x00\x2a\x04\x0d\xa6\xda\xa4\x00\x00\x43\xc7\x0d\xc6\xc6\x2a\ -\x00\x00\x93\x3a\x0d\xf2\x39\xba\x00\x00\x84\xf9\x0e\x2b\x04\x15\ -\x00\x00\x75\xab\x0e\x2c\xe4\x2a\x00\x00\x97\x71\x0e\x4e\xcc\xc5\ -\x00\x00\x09\x1e\x0e\x6f\x9a\x1a\x00\x00\x99\xb6\x0e\x7b\x7a\x2c\ -\x00\x00\x30\x36\x0e\x8f\x6a\x37\x00\x00\x34\x4c\x0e\x91\x65\xf5\ -\x00\x00\x18\xbd\x0e\xca\xd7\x34\x00\x00\x1e\x9d\x0e\xcd\x1c\x55\ -\x00\x00\x96\xc7\x0e\xcd\x1c\x65\x00\x00\x97\x1c\x0e\xea\xe5\x03\ -\x00\x00\x6c\x40\x0e\xed\xe1\xf9\x00\x00\x44\x75\x0f\x07\x8d\xe3\ -\x00\x00\x6c\xe2\x0f\x17\x82\x4e\x00\x00\x00\xe9\x0f\x1f\x8d\xa5\ -\x00\x00\x75\x65\x0f\x4f\x75\x3a\x00\x00\xa0\xc9\x0f\x5f\xca\xd5\ -\x00\x00\x2f\xc3\x0f\x75\xb0\x54\x00\x00\x77\x4a\x0f\x77\xc3\xb4\ -\x00\x00\x65\xfe\x0f\x89\x0b\xbe\x00\x00\x44\xd7\x0f\x8f\xa8\xa7\ -\x00\x00\x17\xbd\x0f\x98\x0a\x39\x00\x00\x9c\x86\x0f\x9e\xec\xa0\ -\x00\x00\x11\x42\x0f\xbf\x87\xa3\x00\x00\x8a\xb5\x0f\xcd\xce\x95\ -\x00\x00\x33\xda\x0f\xdf\x21\x05\x00\x00\x22\xd7\x0f\xf6\x06\x1e\ -\x00\x00\x1e\xfd\x0f\xf6\x29\x0a\x00\x00\x71\x09\x0f\xf7\x77\xaa\ -\x00\x00\x80\x82\x0f\xfb\x5f\xae\x00\x00\x76\x3a\x69\x00\x00\xa1\ -\x77\x03\x00\x00\x00\x16\x00\x44\x00\x6f\x00\x64\x00\x61\x00\x6a\ -\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x09\x41\x64\x64\x20\x50\x6f\x69\x6e\x74\x07\ -\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x50\x6f\x69\ -\x6e\x74\x01\x03\x00\x00\x00\x5c\x00\x57\x00\x73\x00\x74\x00\x61\ -\x00\x77\x00\x69\x00\x61\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\ -\x00\x74\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x62\x00\x69\x00\x65\ -\x01\x7c\x01\x05\x00\x63\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x73\ -\x00\x7a\x00\x6b\x00\x69\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x75\ -\x00\x2f\x00\x42\x00\x2d\x00\x53\x00\x70\x00\x6c\x00\x61\x00\x6a\ -\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x41\x64\ -\x64\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x74\x6f\x20\x61\x6e\ -\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x77\x69\x72\x65\x2f\x62\ -\x73\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\ -\x5f\x41\x64\x64\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x22\x00\ -\x44\x00\x6f\x00\x64\x00\x61\x00\x6a\x00\x20\x00\x64\x00\x6f\x00\ -\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\x79\x00\x2e\x00\x2e\x00\ -\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x41\x64\x64\x20\x74\ -\x6f\x20\x67\x72\x6f\x75\x70\x2e\x2e\x2e\x07\x00\x00\x00\x10\x44\ -\x72\x61\x66\x74\x5f\x41\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\x01\ -\x03\x00\x00\x00\x62\x00\x44\x00\x6f\x00\x64\x00\x61\x00\x77\x00\ -\x61\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x7a\x00\x61\x00\x7a\x00\ -\x6e\x00\x61\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x79\x00\x63\x00\ -\x68\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\ -\xf3\x00\x77\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x62\x00\x69\x00\ -\x65\x01\x7c\x01\x05\x00\x63\x00\x65\x00\x6a\x00\x20\x00\x67\x00\ -\x72\x00\x75\x00\x70\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x30\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\ -\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x28\x73\x29\x20\x74\x6f\x20\ -\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x67\x72\x6f\x75\ -\x70\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x54\ -\x6f\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x84\x00\x53\x00\x74\ -\x00\x6f\x00\x73\x00\x75\x00\x6a\x00\x65\x00\x20\x00\x62\x00\x69\ -\x00\x65\x01\x7c\x01\x05\x00\x63\x01\x05\x00\x20\x00\x73\x00\x7a\ -\x00\x65\x00\x72\x00\x6f\x00\x6b\x00\x6f\x01\x5b\x01\x07\x00\x20\ -\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x69\x00\x20\x00\x69\x00\x20\ -\x00\x6b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\xf3\x00\x77\x00\x20\ -\x00\x64\x00\x6f\x00\x20\x00\x7a\x00\x61\x00\x7a\x00\x6e\x00\x61\ -\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x79\x00\x63\x00\x68\x00\x20\ -\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\xf3\x00\x77\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x41\x70\x70\x6c\x69\x65\ -\x73\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\x6e\x65\x20\x77\ -\x69\x64\x74\x68\x20\x61\x6e\x64\x20\x63\x6f\x6c\x6f\x72\x20\x74\ -\x6f\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ -\x74\x73\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x70\x70\ -\x6c\x79\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\x2a\x00\x5a\x00\ -\x61\x00\x73\x00\x74\x00\x6f\x00\x73\x00\x75\x00\x6a\x00\x20\x00\ -\x42\x00\x69\x00\x65\x01\x7c\x01\x05\x00\x63\x00\x79\x00\x20\x00\ -\x73\x00\x74\x00\x79\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x13\x41\x70\x70\x6c\x79\x20\x43\x75\x72\x72\x65\x6e\x74\x20\x53\ -\x74\x79\x6c\x65\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\ -\x70\x70\x6c\x79\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\x06\x01\ -\x41\x00\x75\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\ -\x72\x63\x07\x00\x00\x00\x09\x44\x72\x61\x66\x74\x5f\x41\x72\x63\ -\x01\x03\x00\x00\x00\x56\x00\x54\x00\x77\x00\x6f\x00\x72\x00\x7a\ -\x00\x79\x00\x20\x01\x42\x00\x75\x00\x6b\x00\x2e\x00\x20\x00\x43\ -\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x79\ -\x00\x63\x00\x69\x01\x05\x00\x67\x00\x61\x00\x6a\x00\x2c\x00\x20\ -\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x6f\x00\x67\ -\x00\x72\x00\x61\x00\x6e\x00\x69\x00\x63\x00\x7a\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\ -\x20\x61\x72\x63\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ -\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\ -\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x09\x44\x72\x61\x66\x74\ -\x5f\x41\x72\x63\x01\x03\x00\x00\x00\x10\x00\x42\x00\x2d\x00\x53\ -\x00\x70\x00\x6c\x00\x61\x00\x6a\x00\x6e\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x08\x42\x2d\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\ -\x0d\x44\x72\x61\x66\x74\x5f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\ -\x00\x00\x00\x86\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\ -\x00\x73\x00\x20\x00\x61\x00\x20\x00\x6d\x00\x75\x00\x6c\x00\x74\ -\x00\x69\x00\x70\x00\x6c\x00\x65\x00\x2d\x00\x70\x00\x6f\x00\x69\ -\x00\x6e\x00\x74\x00\x20\x00\x62\x00\x2d\x00\x73\x00\x70\x00\x6c\ -\x00\x69\x00\x6e\x00\x65\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\ -\x00\x4c\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x6e\x00\x61\ -\x00\x70\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\ -\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\ -\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x43\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x6d\x75\ -\x6c\x74\x69\x70\x6c\x65\x2d\x70\x6f\x69\x6e\x74\x20\x62\x2d\x73\ -\x70\x6c\x69\x6e\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\ -\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\ -\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\ -\x74\x5f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x0a\x00\ -\x4f\x00\x6b\x00\x72\x01\x05\x00\x67\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x06\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x0c\x44\x72\ -\x61\x66\x74\x5f\x43\x69\x72\x63\x6c\x65\x01\x03\x00\x00\x00\x74\ -\x00\x54\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\x79\x00\x20\x00\x6f\ -\x00\x6b\x00\x72\x01\x05\x00\x67\x00\x2e\x00\x20\x00\x43\x00\x54\ -\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x79\x00\x63\ -\x00\x69\x01\x05\x00\x67\x00\x61\x00\x6a\x00\x2c\x00\x20\x00\x41\ -\x00\x4c\x00\x54\x00\x20\x00\x77\x00\x79\x00\x62\x00\x69\x00\x65\ -\x00\x72\x00\x7a\x00\x20\x00\x73\x00\x74\x00\x79\x00\x63\x00\x7a\ -\x00\x6e\x01\x05\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\ -\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3d\x43\x72\ -\x65\x61\x74\x65\x73\x20\x61\x20\x63\x69\x72\x63\x6c\x65\x2e\x20\ -\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x41\x4c\ -\x54\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x20\x74\x61\x6e\x67\ -\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0c\ -\x44\x72\x61\x66\x74\x5f\x43\x69\x72\x63\x6c\x65\x01\x03\x00\x00\ -\x00\x1a\x00\x5a\x00\x61\x00\x6d\x00\x6b\x00\x6e\x00\x69\x00\x6a\ -\x00\x20\x00\x4c\x00\x69\x00\x6e\x00\x69\x01\x19\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0a\x43\x6c\x6f\x73\x65\x20\x4c\x69\x6e\x65\ -\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\x73\x65\ -\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x2a\x00\x5a\x00\x61\x00\x6d\ -\x00\x79\x00\x6b\x00\x61\x00\x20\x00\x72\x00\x79\x00\x73\x00\x6f\ -\x00\x77\x00\x61\x00\x6e\x01\x05\x00\x20\x00\x6c\x00\x69\x00\x6e\ -\x00\x69\x01\x19\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x43\x6c\ -\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x6c\x69\x6e\x65\x20\x62\x65\ -\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x07\x00\x00\x00\x0f\x44\x72\ -\x61\x66\x74\x5f\x43\x6c\x6f\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\ -\x00\x00\x14\x00\x55\x00\x73\x00\x75\x01\x44\x00\x20\x00\x70\x00\ -\x75\x00\x6e\x00\x6b\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0c\x52\x65\x6d\x6f\x76\x65\x20\x50\x6f\x69\x6e\x74\x07\x00\x00\ -\x00\x0e\x44\x72\x61\x66\x74\x5f\x44\x65\x6c\x50\x6f\x69\x6e\x74\ -\x01\x03\x00\x00\x00\x5e\x00\x55\x00\x73\x00\x75\x00\x77\x00\x61\ -\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x20\x00\x7a\ -\x00\x20\x00\x62\x00\x69\x00\x65\x01\x7c\x01\x05\x00\x63\x00\x65\ -\x00\x67\x00\x6f\x00\x20\x00\x73\x00\x7a\x00\x6b\x00\x69\x00\x65\ -\x00\x6c\x00\x65\x00\x74\x00\x75\x00\x20\x00\x6c\x00\x75\x00\x62\ -\x00\x20\x00\x42\x00\x2d\x00\x53\x00\x70\x00\x6c\x00\x61\x00\x6a\ -\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x52\x65\ -\x6d\x6f\x76\x65\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x66\x72\ -\x6f\x6d\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x77\ -\x69\x72\x65\x20\x6f\x72\x20\x62\x73\x70\x6c\x69\x6e\x65\x07\x00\ -\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x44\x65\x6c\x50\x6f\x69\x6e\ -\x74\x01\x03\x00\x00\x00\xa2\x00\x54\x00\x77\x00\x6f\x00\x72\x00\ -\x7a\x00\x79\x00\x20\x00\x77\x00\x79\x00\x6d\x00\x69\x00\x61\x00\ -\x72\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\ -\x70\x00\x72\x00\x7a\x00\x79\x00\x63\x00\x69\x01\x05\x00\x67\x00\ -\x61\x00\x6a\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\ -\x54\x00\x2c\x00\x20\x00\x61\x00\x62\x00\x79\x00\x20\x00\x6f\x00\ -\x67\x00\x72\x00\x61\x00\x6e\x00\x69\x00\x63\x00\x7a\x00\x79\x01\ -\x07\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x2c\x00\x20\x00\ -\x61\x00\x62\x00\x79\x00\x20\x00\x7a\x00\x61\x00\x7a\x00\x6e\x00\ -\x61\x00\x63\x00\x7a\x00\x79\x01\x07\x00\x20\x00\x73\x00\x65\x00\ -\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x4e\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x64\x69\x6d\ -\x65\x6e\x73\x69\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\ -\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\ -\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\ -\x20\x73\x65\x6c\x65\x63\x74\x20\x61\x20\x73\x65\x67\x6d\x65\x6e\ -\x74\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x69\x6d\x65\ -\x6e\x73\x69\x6f\x6e\x01\x03\x00\x00\x00\x0c\x00\x57\x00\x79\x00\ -\x6d\x00\x69\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x09\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\x0f\x44\ -\x72\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x01\x03\ -\x00\x00\x00\x3c\x00\x5a\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x74\ -\x00\x61\x00\x6c\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x65\ -\x00\x20\x00\x73\x00\x74\x00\x61\x00\x72\x00\x73\x00\x7a\x00\x65\ -\x00\x6a\x00\x20\x00\x77\x00\x65\x00\x72\x00\x73\x00\x6a\x00\x69\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x44\x6f\x77\x6e\x67\x72\ -\x61\x64\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x6f\ -\x77\x6e\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x80\x00\x52\x00\ -\x6f\x00\x7a\x00\x77\x00\x69\x00\x6a\x00\x61\x00\x20\x00\x7a\x00\ -\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\ -\x65\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\ -\x79\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ -\x73\x00\x74\x00\x73\x00\x7a\x00\x65\x00\x20\x00\x6c\x00\x75\x00\ -\x62\x00\x20\x00\x6f\x00\x64\x00\x65\x00\x6a\x00\x6d\x00\x75\x00\ -\x6a\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x77\x00\x69\x00\x65\x00\ -\x72\x00\x7a\x00\x63\x00\x68\x00\x6e\x00\x69\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x45\x45\x78\x70\x6c\x6f\x64\x65\x73\x20\ -\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ -\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\x73\x69\x6d\x70\x6c\x65\ -\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x2c\x20\x6f\x72\x20\x73\x75\ -\x62\x74\x72\x61\x63\x74\x20\x66\x61\x63\x65\x73\x07\x00\x00\x00\ -\x0f\x44\x72\x61\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\ -\x01\x03\x00\x00\x00\x0e\x00\x52\x00\x79\x00\x73\x00\x75\x00\x6e\ -\x00\x65\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x44\x72\ -\x61\x77\x69\x6e\x67\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\ -\x44\x72\x61\x77\x69\x6e\x67\x01\x03\x00\x00\x00\x60\x00\x55\x00\ -\x6d\x00\x69\x00\x65\x00\x73\x00\x7a\x00\x63\x00\x7a\x00\x61\x00\ -\x20\x00\x7a\x00\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\ -\x6f\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\ -\x6b\x00\x74\x00\x79\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x61\x00\ -\x72\x00\x6b\x00\x75\x00\x73\x00\x7a\x00\x75\x00\x20\x00\x72\x00\ -\x79\x00\x73\x00\x75\x00\x6e\x00\x6b\x00\x75\x00\x2e\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x2d\x50\x75\x74\x73\x20\x74\x68\x65\x20\ -\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x20\x6f\x6e\x20\x61\x20\x44\x72\x61\x77\x69\x6e\x67\x20\x73\x68\ -\x65\x65\x74\x2e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x44\ -\x72\x61\x77\x69\x6e\x67\x01\x03\x00\x00\x00\x0c\x00\x45\x00\x64\ -\x00\x79\x00\x74\x00\x75\x00\x6a\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\ -\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\x2a\x00\x45\x00\x64\x00\ -\x79\x00\x74\x00\x75\x00\x6a\x00\x20\x00\x61\x00\x6b\x00\x74\x00\ -\x79\x00\x77\x00\x6e\x00\x79\x00\x20\x00\x6f\x00\x62\x00\x69\x00\ -\x65\x00\x6b\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x45\ -\x64\x69\x74\x73\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\ -\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\ -\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\x22\x00\x5a\x00\x61\x00\ -\x6b\x00\x6f\x01\x44\x00\x63\x00\x7a\x00\x65\x00\x6e\x00\x69\x00\ -\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x69\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0b\x46\x69\x6e\x69\x73\x68\x20\x6c\x69\ -\x6e\x65\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\ -\x69\x73\x68\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x3e\x00\x5a\x00\ -\x61\x00\x6b\x00\x6f\x01\x44\x00\x63\x00\x7a\x00\x65\x00\x6e\x00\ -\x69\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x69\x00\ -\x20\x00\x62\x00\x65\x00\x7a\x00\x20\x00\x7a\x00\x61\x00\x6d\x00\ -\x79\x00\x6b\x00\x61\x00\x6e\x00\x69\x00\x61\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x22\x46\x69\x6e\x69\x73\x68\x65\x73\x20\x61\x20\ -\x6c\x69\x6e\x65\x20\x77\x69\x74\x68\x6f\x75\x74\x20\x63\x6c\x6f\ -\x73\x69\x6e\x67\x20\x69\x74\x07\x00\x00\x00\x10\x44\x72\x61\x66\ -\x74\x5f\x46\x69\x6e\x69\x73\x68\x4c\x69\x6e\x65\x01\x03\x00\x00\ -\x00\x6e\x00\x54\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\x79\x00\x20\ -\x00\x32\x00\x2d\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x6f\ -\x00\x77\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x2e\ -\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x72\ -\x00\x7a\x00\x79\x00\x63\x00\x69\x01\x05\x00\x67\x00\x61\x00\x6a\ -\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\ -\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x6e\x00\x69\x00\x63\x00\x7a\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x43\x72\x65\x61\x74\x65\ -\x73\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\x74\x20\x6c\x69\x6e\x65\ -\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\ -\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\ -\x69\x6e\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4c\x69\x6e\ -\x65\x01\x03\x00\x00\x00\x0a\x00\x4c\x00\x69\x00\x6e\x00\x69\x00\ -\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4c\x69\x6e\x65\x07\ -\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4c\x69\x6e\x65\x01\x03\ -\x00\x00\x00\x0e\x00\x50\x00\x72\x00\x7a\x00\x65\x00\x73\x00\x75\ -\x01\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4d\x6f\x76\x65\ -\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4d\x6f\x76\x65\x01\ -\x03\x00\x00\x00\xb4\x00\x50\x00\x72\x00\x7a\x00\x65\x00\x6e\x00\ -\x6f\x00\x73\x00\x69\x00\x20\x00\x7a\x00\x61\x00\x7a\x00\x6e\x00\ -\x61\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\ -\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x20\x00\x6d\x00\ -\x69\x01\x19\x00\x64\x00\x7a\x00\x79\x00\x20\x00\x32\x00\x20\x00\ -\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x79\x00\x2e\x00\x20\x00\ -\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x72\x00\x7a\x00\ -\x79\x00\x63\x00\x69\x01\x05\x00\x67\x00\x61\x00\x6a\x00\x2c\x00\ -\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x2c\x00\x20\x00\ -\x6f\x00\x67\x00\x72\x00\x61\x00\x6e\x00\x69\x00\x63\x00\x7a\x00\ -\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x2c\x00\x20\x00\x6b\x00\ -\x6f\x00\x70\x00\x69\x00\x75\x00\x6a\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x5a\x4d\x6f\x76\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\ -\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\ -\x74\x77\x65\x65\x6e\x20\x32\x20\x70\x6f\x69\x6e\x74\x73\x2e\x20\ -\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\ -\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\ -\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\ -\x00\x0a\x44\x72\x61\x66\x74\x5f\x4d\x6f\x76\x65\x01\x03\x00\x00\ -\x00\x0c\x00\x4f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\ -\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x4f\x66\x66\x73\x65\x74\x01\ -\x03\x00\x00\x00\x90\x00\x4f\x00\x66\x00\x66\x00\x73\x00\x65\x00\ -\x74\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x79\x00\x77\x00\x6e\x00\ -\x65\x00\x67\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\ -\x6b\x00\x74\x00\x75\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\ -\x4c\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x79\x00\x63\x00\x69\x01\ -\x05\x00\x67\x00\x6e\x00\x69\x00\x6a\x00\x2c\x00\x20\x00\x53\x00\ -\x48\x00\x49\x00\x46\x00\x54\x00\x2c\x00\x20\x00\x6f\x00\x67\x00\ -\x72\x00\x61\x00\x6e\x00\x69\x00\x63\x00\x7a\x00\x2c\x00\x20\x00\ -\x41\x00\x4c\x00\x54\x00\x2c\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\ -\x69\x00\x75\x00\x6a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x48\x4f\ -\x66\x66\x73\x65\x74\x73\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\ -\x65\x20\x6f\x62\x6a\x65\x63\x74\x2e\x20\x43\x54\x52\x4c\x20\x74\ -\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\ -\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\ -\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0c\x44\x72\x61\x66\ -\x74\x5f\x4f\x66\x66\x73\x65\x74\x01\x03\x00\x00\x00\x74\x00\x54\ -\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\x79\x00\x20\x00\x72\x00\x65\ -\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x6e\x00\x79\x00\x20\ -\x00\x77\x00\x69\x00\x65\x00\x6c\x00\x6f\x00\x62\x00\x6f\x00\x6b\ -\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\ -\x00\x72\x00\x7a\x00\x79\x00\x63\x00\x69\x01\x05\x00\x67\x00\x61\ -\x00\x6a\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\ -\x00\x20\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x6e\x00\x69\x00\x63\ -\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3b\x43\x72\x65\x61\ -\x74\x65\x73\x20\x61\x20\x72\x65\x67\x75\x6c\x61\x72\x20\x70\x6f\ -\x6c\x79\x67\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\ -\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\ -\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\ -\x74\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\x03\x00\x00\x00\x10\x00\ -\x57\x00\x69\x00\x65\x00\x6c\x00\x6f\x00\x6b\x01\x05\x00\x74\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x07\x50\x6f\x6c\x79\x67\x6f\x6e\ -\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x50\x6f\x6c\x79\x67\ -\x6f\x6e\x01\x03\x00\x00\x00\x6a\x00\x54\x00\x77\x00\x6f\x00\x72\ -\x00\x7a\x00\x79\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x73\x00\x74\ -\x00\x6f\x00\x6b\x01\x05\x00\x74\x00\x20\x00\x77\x00\x7a\x00\x67\ -\x00\x6c\x01\x19\x00\x64\x00\x65\x00\x6d\x00\x20\x00\x32\x00\x20\ -\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\xf3\x00\x77\x00\x2e\ -\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x72\ -\x00\x7a\x00\x79\x00\x63\x00\x69\x01\x05\x00\x67\x00\x6e\x00\x69\ -\x00\x6a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x43\x72\x65\x61\ -\x74\x65\x73\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\x74\x20\x72\x65\ -\x63\x74\x61\x6e\x67\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\ -\x20\x73\x6e\x61\x70\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\ -\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\x12\x00\ -\x50\x00\x72\x00\x6f\x00\x73\x00\x74\x00\x6f\x00\x6b\x01\x05\x00\ -\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x52\x65\x63\x74\x61\ -\x6e\x67\x6c\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x52\ -\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\x0a\x00\x4f\ -\x00\x62\x00\x72\x00\xf3\x01\x07\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x06\x52\x6f\x74\x61\x74\x65\x07\x00\x00\x00\x0c\x44\x72\x61\ -\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\x01\x03\x00\x00\x00\x94\x00\ -\x4f\x00\x62\x00\x72\x00\x61\x00\x63\x00\x61\x00\x20\x00\x77\x00\ -\x79\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\ -\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x2e\x00\x20\x00\ -\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x72\x00\x7a\x00\ -\x79\x00\x63\x00\x69\x01\x05\x00\x67\x00\x61\x00\x6a\x00\x2c\x00\ -\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x2c\x00\x20\x00\ -\x6f\x00\x67\x00\x72\x00\x61\x00\x6e\x00\x69\x00\x63\x00\x7a\x00\ -\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x74\x00\x77\x00\ -\x6f\x00\x72\x00\x7a\x00\x79\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\ -\x69\x01\x19\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x6f\x74\ -\x61\x74\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ -\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\ -\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\ -\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\ -\x20\x63\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x6f\x70\x79\x07\ -\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\ -\x01\x03\x00\x00\x00\x0a\x00\x53\x00\x6b\x00\x61\x00\x6c\x00\x61\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x07\ -\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\x01\ -\x03\x00\x00\x00\xd4\x00\x53\x00\x6b\x00\x61\x00\x6c\x00\x75\x00\ -\x6a\x00\x65\x00\x20\x00\x7a\x00\x61\x00\x7a\x00\x6e\x00\x61\x00\ -\x63\x00\x7a\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ -\x69\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x20\x00\x7a\x00\x20\x00\ -\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x75\x00\x20\x00\x62\x00\ -\x61\x00\x7a\x00\x6f\x00\x77\x00\x65\x00\x67\x00\x6f\x00\x2e\x00\ -\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x72\x00\ -\x7a\x00\x79\x00\x63\x00\x69\x01\x05\x00\x67\x00\x61\x00\x6e\x00\ -\x69\x00\x65\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\ -\x54\x00\x2c\x00\x20\x00\x61\x00\x62\x00\x79\x00\x20\x00\x6f\x00\ -\x67\x00\x72\x00\x61\x00\x6e\x00\x69\x00\x63\x00\x7a\x00\x79\x01\ -\x07\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x2c\x00\x20\x00\ -\x61\x00\x62\x00\x79\x00\x20\x00\x73\x00\x6b\x00\x6f\x00\x70\x00\ -\x69\x00\x6f\x00\x77\x00\x61\x01\x07\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x5c\x53\x63\x61\x6c\x65\x73\x20\x74\x68\x65\x20\x73\x65\ -\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\ -\x72\x6f\x6d\x20\x61\x20\x62\x61\x73\x65\x20\x70\x6f\x69\x6e\x74\ -\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\ -\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\ -\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\ -\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\x01\ -\x03\x00\x00\x00\x20\x00\x5a\x00\x61\x00\x7a\x00\x6e\x00\x61\x00\ -\x63\x00\x7a\x00\x20\x00\x67\x00\x72\x00\x75\x00\x70\x01\x19\x00\ -\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\ -\x65\x6c\x65\x63\x74\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x11\ -\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x47\x72\x6f\x75\ -\x70\x01\x03\x00\x00\x00\x6e\x00\x53\x00\x65\x00\x6c\x00\x65\x00\ -\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ -\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x74\x00\x68\x00\x65\x00\ -\x20\x00\x73\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x70\x00\x61\x00\ -\x72\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x61\x00\x73\x00\ -\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x67\x00\x72\x00\ -\x6f\x00\x75\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x53\ -\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\ -\x74\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x73\x61\x6d\x65\ -\x20\x70\x61\x72\x65\x6e\x74\x73\x20\x61\x73\x20\x74\x68\x69\x73\ -\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\ -\x5f\x53\x65\x6c\x65\x63\x74\x47\x72\x6f\x75\x70\x01\x03\x00\x00\ -\x00\x64\x00\x57\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\x00\x7a\ -\x00\x20\x00\x70\x01\x42\x00\x61\x00\x73\x00\x7a\x00\x63\x00\x7a\ -\x00\x79\x00\x7a\x00\x6e\x01\x19\x00\x20\x00\x72\x00\x6f\x00\x62\ -\x00\x6f\x00\x63\x00\x7a\x01\x05\x00\x20\x00\x64\x00\x6f\x00\x20\ -\x00\x74\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\x65\x00\x6e\x00\x69\ -\x00\x61\x00\x20\x00\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\x00\x74\ -\x00\x72\x00\x69\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\ -\x53\x65\x6c\x65\x63\x74\x20\x61\x20\x77\x6f\x72\x6b\x69\x6e\x67\ -\x20\x70\x6c\x61\x6e\x65\x20\x66\x6f\x72\x20\x67\x65\x6f\x6d\x65\ -\x74\x72\x79\x20\x63\x72\x65\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\ -\x11\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\ -\x6e\x65\x01\x03\x00\x00\x00\x26\x00\x57\x00\x79\x00\x62\x00\x69\ -\x00\x65\x00\x72\x00\x7a\x00\x20\x00\x70\x01\x42\x00\x61\x00\x73\ -\x00\x7a\x00\x63\x00\x7a\x00\x79\x00\x7a\x00\x6e\x01\x19\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x65\x6c\x65\x63\x74\x50\x6c\ -\x61\x6e\x65\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\ -\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\x54\x00\ -\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\ -\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x32\x00\x44\x00\ -\x20\x00\x76\x00\x69\x00\x65\x00\x77\x00\x73\x00\x20\x00\x6f\x00\ -\x66\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ -\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ -\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x43\x72\x65\ -\x61\x74\x65\x73\x20\x53\x68\x61\x70\x65\x20\x32\x44\x20\x76\x69\ -\x65\x77\x73\x20\x6f\x66\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ -\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x11\x44\x72\x61\x66\ -\x74\x5f\x53\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\x00\ -\x00\x00\x1a\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\ -\x32\x00\x44\x00\x20\x00\x76\x00\x69\x00\x65\x00\x77\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0d\x53\x68\x61\x70\x65\x20\x32\x44\x20\ -\x76\x69\x65\x77\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\ -\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\x44\ -\x00\x54\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\x79\x00\x20\x00\x61\ -\x00\x64\x00\x6e\x00\x6f\x00\x74\x00\x61\x00\x63\x00\x6a\x00\x65\ -\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\ -\x00\x72\x00\x7a\x00\x79\x00\x63\x00\x69\x01\x05\x00\x67\x00\x6e\ -\x00\x69\x00\x6a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x43\x72\ -\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x6e\x6e\x6f\x74\x61\x74\ -\x69\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\ -\x70\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\x78\x74\ -\x01\x03\x00\x00\x00\x0a\x00\x54\x00\x65\x00\x6b\x00\x73\x00\x74\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\x65\x78\x74\x07\x00\ -\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\x78\x74\x01\x03\x00\ -\x00\x00\x30\x00\x50\x00\x72\x00\x7a\x00\x65\x01\x42\x01\x05\x00\ -\x63\x00\x7a\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x74\x00\x72\x00\ -\x79\x00\x62\x00\x75\x00\x20\x00\x62\x00\x75\x00\x64\x00\x6f\x00\ -\x77\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x54\x6f\x67\ -\x67\x6c\x65\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x69\x6f\x6e\x20\ -\x4d\x6f\x64\x65\x07\x00\x00\x00\x1c\x44\x72\x61\x66\x74\x5f\x54\ -\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\ -\x6e\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x5a\x00\x50\x00\x72\x00\ -\x7a\x00\x65\x01\x42\x01\x05\x00\x63\x00\x7a\x00\x61\x00\x20\x00\ -\x74\x00\x72\x00\x79\x00\x62\x00\x20\x00\x62\x00\x75\x00\x64\x00\ -\x6f\x00\x77\x00\x79\x00\x20\x00\x64\x00\x6c\x00\x61\x00\x20\x00\ -\x6b\x00\x6f\x00\x6c\x00\x65\x00\x6a\x00\x6e\x00\x79\x00\x63\x00\ -\x68\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\ -\xf3\x00\x77\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x54\ -\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\x65\x20\x43\x6f\x6e\x73\x74\ -\x72\x75\x63\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x65\x20\x66\x6f\x72\ -\x20\x6e\x65\x78\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x07\x00\ -\x00\x00\x1c\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\ -\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x4d\x6f\x64\x65\x01\ -\x03\x00\x00\x00\x28\x00\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\ -\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\ -\x75\x00\x65\x00\x20\x00\x4d\x00\x6f\x00\x64\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x14\x54\x6f\x67\x67\x6c\x65\x20\x63\x6f\ -\x6e\x74\x69\x6e\x75\x65\x20\x4d\x6f\x64\x65\x07\x00\x00\x00\x18\ -\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x74\ -\x69\x6e\x75\x65\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x58\x00\x54\ -\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x74\ -\x00\x68\x00\x65\x00\x20\x00\x43\x00\x6f\x00\x6e\x00\x74\x00\x69\ -\x00\x6e\x00\x75\x00\x65\x00\x20\x00\x4d\x00\x6f\x00\x64\x00\x65\ -\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x78\ -\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\ -\x00\x64\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\ -\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\x65\x20\x43\x6f\x6e\x74\ -\x69\x6e\x75\x65\x20\x4d\x6f\x64\x65\x20\x66\x6f\x72\x20\x6e\x65\ -\x78\x74\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x2e\x07\x00\x00\x00\ -\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\ -\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\xa6\x00\ -\x5a\x00\x61\x00\x6d\x00\x69\x00\x61\x00\x6e\x00\x61\x00\x20\x00\ -\x74\x00\x72\x00\x79\x00\x62\x00\x75\x00\x20\x00\x77\x00\x79\x01\ -\x5b\x00\x77\x00\x69\x00\x65\x00\x74\x00\x6c\x00\x61\x00\x6e\x00\ -\x69\x00\x61\x00\x20\x00\x77\x00\x79\x00\x62\x00\x72\x00\x61\x00\ -\x6e\x00\x79\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x69\x00\ -\x65\x00\x6b\x00\x74\x00\xf3\x00\x77\x00\x20\x00\x70\x00\x6f\x00\ -\x6d\x00\x69\x01\x19\x00\x64\x00\x7a\x00\x79\x00\x20\x00\x6d\x00\ -\x6f\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x20\x00\x73\x00\ -\x69\x00\x61\x00\x74\x00\x6b\x00\x6f\x00\x77\x00\x79\x00\x6d\x00\ -\x20\x00\x69\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x6f\x00\ -\x77\x00\x79\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x46\x53\ -\x77\x61\x70\x73\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x6d\x6f\x64\ -\x65\x20\x6f\x66\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ -\x6a\x65\x63\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x77\x69\ -\x72\x65\x66\x72\x61\x6d\x65\x20\x61\x6e\x64\x20\x66\x6c\x61\x74\ -\x6c\x69\x6e\x65\x73\x07\x00\x00\x00\x17\x44\x72\x61\x66\x74\x5f\ -\x54\x6f\x67\x67\x6c\x65\x44\x69\x73\x70\x6c\x61\x79\x4d\x6f\x64\ -\x65\x01\x03\x00\x00\x00\x34\x00\x50\x00\x72\x00\x7a\x00\x65\x01\ -\x42\x01\x05\x00\x63\x00\x7a\x00\x20\x00\x74\x00\x72\x00\x79\x00\ -\x62\x00\x20\x00\x77\x00\x79\x01\x5b\x00\x77\x00\x69\x00\x65\x00\ -\x74\x00\x6c\x00\x61\x00\x6e\x00\x69\x00\x61\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x13\x54\x6f\x67\x67\x6c\x65\x20\x64\x69\x73\x70\ -\x6c\x61\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x17\x44\x72\x61\ -\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x44\x69\x73\x70\x6c\x61\x79\ -\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x26\x00\x50\x00\x72\x00\x7a\ -\x00\x79\x00\x74\x00\x6e\x00\x69\x00\x6a\x00\x2f\x00\x52\x00\x6f\ -\x00\x7a\x00\x63\x00\x69\x01\x05\x00\x67\x00\x6e\x00\x69\x00\x6a\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x54\x72\x69\x6d\x65\x78\ -\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x54\x72\x69\x6d\x65\ -\x78\x01\x03\x00\x00\x01\x12\x00\x54\x00\x72\x00\x69\x00\x6d\x00\ -\x73\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\ -\x65\x00\x6e\x00\x64\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\ -\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\ -\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ -\x2c\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\ -\x72\x00\x75\x00\x64\x00\x65\x00\x73\x00\x20\x00\x73\x00\x69\x00\ -\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\ -\x65\x00\x73\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ -\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x73\x00\x2c\x00\x20\x00\ -\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x63\x00\x6f\x00\ -\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x73\x00\ -\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\ -\x65\x00\x6e\x00\x74\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\ -\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x74\x00\ -\x6f\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\ -\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x69\x00\x6e\x00\ -\x76\x00\x65\x00\x72\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x89\x54\x72\x69\x6d\x73\x20\x6f\x72\x20\x65\x78\x74\x65\ -\x6e\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ -\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x6f\x72\x20\x65\x78\x74\x72\ -\x75\x64\x65\x73\x20\x73\x69\x6e\x67\x6c\x65\x20\x66\x61\x63\x65\ -\x73\x2e\x20\x43\x54\x52\x4c\x20\x73\x6e\x61\x70\x73\x2c\x20\x53\ -\x48\x49\x46\x54\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x73\x20\ -\x74\x6f\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x73\x65\x67\x6d\x65\ -\x6e\x74\x20\x6f\x72\x20\x74\x6f\x20\x6e\x6f\x72\x6d\x61\x6c\x2c\ -\x20\x41\x4c\x54\x20\x69\x6e\x76\x65\x72\x74\x73\x07\x00\x00\x00\ -\x0c\x44\x72\x61\x66\x74\x5f\x54\x72\x69\x6d\x65\x78\x01\x03\x00\ -\x00\x00\x2c\x00\x43\x00\x6f\x00\x66\x00\x6e\x00\x69\x00\x6a\x00\ -\x20\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x74\x00\x6e\x00\x69\x00\ -\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x11\x55\x6e\x64\x6f\x20\x6c\x61\ -\x73\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x0e\x44\ -\x72\x61\x66\x74\x5f\x55\x6e\x64\x6f\x4c\x69\x6e\x65\x01\x03\x00\ -\x00\x00\x48\x00\x43\x00\x6f\x00\x66\x00\x61\x00\x20\x00\x6f\x00\ -\x73\x00\x74\x00\x61\x00\x74\x00\x6e\x00\x69\x00\x20\x00\x73\x00\ -\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x72\x00\ -\x79\x00\x73\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x65\x00\x6a\x00\ -\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x69\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x35\x55\x6e\x64\x6f\x65\x73\x20\x74\x68\x65\x20\ -\x6c\x61\x73\x74\x20\x64\x72\x61\x77\x6e\x20\x73\x65\x67\x6d\x65\ -\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x6c\x69\x6e\x65\x20\x62\ -\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x07\x00\x00\x00\x0e\x44\ -\x72\x61\x66\x74\x5f\x55\x6e\x64\x6f\x4c\x69\x6e\x65\x01\x03\x00\ -\x00\x00\xe2\x01\x41\x01\x05\x00\x63\x00\x7a\x00\x79\x00\x20\x00\ -\x77\x00\x79\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x65\x00\x20\x00\ -\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x20\x00\ -\x77\x00\x20\x00\x6a\x00\x65\x00\x64\x00\x65\x00\x6e\x00\x2c\x00\ -\x20\x00\x6c\x00\x75\x00\x62\x00\x20\x00\x7a\x00\x61\x00\x6d\x00\ -\x69\x00\x65\x00\x6e\x00\x69\x00\x61\x00\x20\x00\x7a\x00\x61\x00\ -\x6d\x00\x6b\x00\x6e\x00\x69\x01\x19\x00\x74\x00\x65\x00\x20\x00\ -\x70\x00\x6f\x00\x6c\x00\x69\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\ -\x65\x00\x20\x00\x77\x00\x20\x00\x70\x00\x65\x01\x42\x00\x6e\x00\ -\x65\x00\x20\x00\x70\x00\x6f\x00\x77\x00\x69\x00\x65\x00\x72\x00\ -\x7a\x00\x63\x00\x68\x00\x6e\x00\x69\x00\x65\x00\x2c\x00\x20\x00\ -\x6c\x00\x75\x00\x62\x00\x20\x00\x70\x00\x6f\x01\x42\x01\x05\x00\ -\x63\x00\x7a\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x70\x00\x6f\x00\ -\x77\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x63\x00\x68\x00\x6e\x00\ -\x69\x00\x65\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x4a\ -\x6f\x69\x6e\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ -\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\x6f\ -\x6e\x65\x2c\x20\x6f\x72\x20\x63\x6f\x6e\x76\x65\x72\x74\x73\x20\ -\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x73\x20\x74\x6f\x20\ -\x66\x69\x6c\x6c\x65\x64\x20\x66\x61\x63\x65\x73\x2c\x20\x6f\x72\ -\x20\x75\x6e\x69\x74\x65\x20\x66\x61\x63\x65\x73\x07\x00\x00\x00\ -\x0d\x44\x72\x61\x66\x74\x5f\x55\x70\x67\x72\x61\x64\x65\x01\x03\ -\x00\x00\x00\x14\x00\x41\x00\x6b\x00\x74\x00\x75\x00\x61\x00\x6c\ -\x00\x69\x00\x7a\x00\x75\x00\x6a\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x07\x55\x70\x67\x72\x61\x64\x65\x07\x00\x00\x00\x0d\x44\x72\ -\x61\x66\x74\x5f\x55\x70\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\ -\x74\x00\x54\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\x79\x00\x20\x00\ -\x6c\x00\x69\x00\x6e\x00\x69\x01\x19\x00\x20\x00\x77\x00\x69\x00\ -\x65\x00\x6c\x00\x6f\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\ -\x6f\x00\x77\x01\x05\x00\x2e\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ -\x20\x00\x70\x00\x72\x00\x7a\x00\x79\x00\x63\x00\x69\x01\x05\x00\ -\x67\x00\x61\x00\x6a\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\ -\x46\x00\x54\x00\x20\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x6e\x00\ -\x69\x00\x63\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3f\x43\ -\x72\x65\x61\x74\x65\x73\x20\x61\x20\x6d\x75\x6c\x74\x69\x70\x6c\ -\x65\x2d\x70\x6f\x69\x6e\x74\x20\x77\x69\x72\x65\x2e\x20\x43\x54\ -\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\ -\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\ -\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x01\x03\x00\ -\x00\x00\x26\x00\x4c\x00\x69\x00\x6e\x00\x69\x00\x61\x00\x20\x00\ -\x77\x00\x69\x00\x65\x00\x6c\x00\x6f\x00\x70\x00\x75\x00\x6e\x00\ -\x6b\x00\x74\x00\x6f\x00\x77\x00\x61\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x04\x57\x69\x72\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\ -\x74\x5f\x57\x69\x72\x65\x01\x03\x00\x00\x00\x38\x00\x4b\x00\x6f\ -\x00\x6e\x00\x77\x00\x65\x00\x72\x00\x73\x00\x6a\x00\x61\x00\x20\ -\x00\x4c\x00\x69\x00\x6e\x00\x69\x00\x61\x00\x20\x00\x3c\x00\x2d\ -\x00\x3e\x00\x20\x00\x42\x00\x2d\x00\x53\x00\x70\x00\x6c\x00\x61\ -\x00\x6a\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x43\x6f\ -\x6e\x76\x65\x72\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x57\ -\x69\x72\x65\x20\x61\x6e\x64\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\ -\x00\x00\x00\x13\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x54\x6f\ -\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x22\x00\x4c\x00\ -\x69\x00\x6e\x00\x69\x00\x61\x00\x20\x00\x64\x00\x6f\x00\x20\x00\ -\x42\x00\x2d\x00\x53\x00\x70\x00\x6c\x00\x61\x00\x6a\x00\x6e\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x57\x69\x72\x65\x20\x74\x6f\ -\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x13\x44\x72\x61\ -\x66\x74\x5f\x57\x69\x72\x65\x54\x6f\x42\x53\x70\x6c\x69\x6e\x65\ -\x01\x03\x00\x00\x00\x0e\x00\x41\x00\x6c\x00\x74\x00\x20\x00\x6d\ -\x00\x6f\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x41\x6c\ -\x74\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x41\x00\ -\x6c\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\x74\x00\x65\x00\ -\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x50\x00\x61\x00\x74\x00\ -\x74\x00\x65\x00\x72\x00\x6e\x00\x73\x00\x20\x00\x6c\x00\x6f\x00\ -\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x1f\x41\x6c\x74\x65\x72\x6e\x61\x74\x65\x20\x53\ -\x56\x47\x20\x50\x61\x74\x74\x65\x72\x6e\x73\x20\x6c\x6f\x63\x61\ -\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5a\x00\x41\x00\x6c\ -\x00\x77\x00\x61\x00\x79\x00\x73\x00\x20\x00\x73\x00\x6e\x00\x61\ -\x00\x70\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\ -\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x28\x00\x64\x00\x69\ -\x00\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x73\x00\x6e\ -\x00\x61\x00\x70\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x20\x00\x6b\ -\x00\x65\x00\x79\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\ -\x41\x6c\x77\x61\x79\x73\x20\x73\x6e\x61\x70\x20\x74\x6f\x20\x6f\ -\x62\x6a\x65\x63\x74\x73\x20\x28\x64\x69\x73\x61\x62\x6c\x65\x20\ -\x73\x6e\x61\x70\x20\x6d\x6f\x64\x20\x6b\x65\x79\x29\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x0a\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x72\x69\x61\x6c\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x16\x00\x42\x00\x61\x00\x63\x00\x6b\x00\x73\ -\x00\x6c\x00\x61\x00\x73\x00\x68\x00\x20\x00\x35\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\ -\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x42\x00\x61\x00\x63\x00\ -\x6b\x00\x73\x00\x6c\x00\x61\x00\x73\x00\x68\x00\x20\x00\x37\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\ -\x73\x68\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x42\x00\x61\ -\x00\x63\x00\x6b\x00\x73\x00\x6c\x00\x61\x00\x73\x00\x68\x00\x20\ -\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\ -\x73\x6c\x61\x73\x68\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x72\x00\ -\x5a\x00\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\x20\x00\ -\x6a\x00\x65\x01\x5b\x00\x6c\x00\x69\x00\x20\x00\x63\x00\x68\x00\ -\x63\x00\x65\x00\x73\x00\x7a\x00\x20\x00\x7a\x00\x61\x00\x69\x00\ -\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x6f\x00\x77\x00\x61\x01\ -\x07\x00\x20\x00\x70\x00\x6f\x00\x77\x00\x69\x00\x65\x00\x72\x00\ -\x7a\x00\x63\x00\x68\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x28\x00\ -\x33\x00\x44\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x29\x00\ -\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3f\x43\x68\x65\x63\x6b\ -\x20\x74\x68\x69\x73\x20\x69\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\ -\x74\x20\x74\x68\x65\x20\x61\x72\x65\x61\x73\x20\x28\x33\x44\x20\ -\x66\x61\x63\x65\x73\x29\x20\x74\x6f\x20\x62\x65\x20\x69\x6d\x70\ -\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\x2e\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\xa6\x00\x43\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x20\x00\x74\ -\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x66\x00\x20\x00\x79\ -\x00\x6f\x00\x75\x00\x20\x00\x77\x00\x61\x00\x6e\x00\x74\x00\x20\ -\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\ -\x00\x6e\x00\x61\x00\x6d\x00\x65\x00\x64\x00\x20\x00\x62\x00\x6c\ -\x00\x6f\x00\x63\x00\x6b\x00\x73\x00\x20\x00\x28\x00\x62\x00\x65\ -\x00\x67\x00\x69\x00\x6e\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\ -\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x61\x00\x20\x00\x2a\ -\x00\x29\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x65\x00\x20\ -\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x64\ -\x00\x20\x00\x74\x00\x6f\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x53\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\ -\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x68\x65\x20\x6e\x6f\x6e\ -\x2d\x6e\x61\x6d\x65\x64\x20\x62\x6c\x6f\x63\x6b\x73\x20\x28\x62\ -\x65\x67\x69\x6e\x6e\x69\x6e\x67\x20\x77\x69\x74\x68\x20\x61\x20\ -\x2a\x29\x20\x74\x6f\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\ -\x64\x20\x74\x6f\x6f\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x4f\x00\ -\x6b\x00\x72\x01\x05\x00\x67\x00\x20\x00\x35\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x35\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x10\x00\x43\x00\x69\x00\x72\x00\x63\x00\x6c\x00\ -\x65\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\ -\x69\x72\x63\x6c\x65\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\ -\x43\x00\x69\x00\x72\x00\x63\x00\x6c\x00\x65\x00\x20\x00\x39\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\x20\ -\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x44\x00\x4d\x00\x61\x00\x70\x00\ -\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x6b\x00\ -\x6f\x00\x6c\x00\x6f\x00\x72\x00\x75\x00\x20\x00\x64\x00\x6f\x00\ -\x20\x00\x67\x00\x72\x00\x75\x00\x62\x00\x6f\x01\x5b\x00\x63\x00\ -\x69\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x69\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x19\x43\x6f\x6c\x6f\x72\x20\x6d\x61\x70\ -\x70\x65\x64\x20\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x4e\x00\x50\x00\x6c\x00\x69\x00\x6b\ -\x00\x20\x00\x6d\x00\x61\x00\x70\x00\x6f\x00\x77\x00\x61\x00\x6e\ -\x00\x69\x00\x61\x00\x20\x00\x6b\x00\x6f\x00\x6c\x00\x6f\x00\x72\ -\x00\x75\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x67\x00\x72\x00\x75\ -\x00\x62\x00\x6f\x01\x5b\x00\x63\x00\x69\x00\x20\x00\x6c\x00\x69\ -\x00\x6e\x00\x69\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\ -\x43\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\ -\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x43\x00\x6f\x00\x6e\ -\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x6d\ -\x00\x6f\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\ -\x6e\x73\x74\x72\x61\x69\x6e\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x16\x00\x4b\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\ -\x75\x00\x6b\x00\x63\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0c\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x22\x00\x4b\x00\x6f\x00\x6c\x00\x6f\x00\ -\x72\x00\x20\x00\x4b\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\ -\x75\x00\x6b\x00\x63\x00\x6a\x00\x69\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x12\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\ -\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x4e\x00\ -\x61\x00\x7a\x00\x77\x00\x61\x00\x20\x00\x67\x00\x72\x00\x75\x00\ -\x70\x00\x79\x00\x20\x00\x4b\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\ -\x72\x00\x75\x00\x6b\x00\x63\x00\x6a\x00\x61\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x17\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\ -\x6e\x20\x67\x72\x6f\x75\x70\x20\x6e\x61\x6d\x65\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x36\x00\x55\x00\x74\x00\x77\x00\xf3\x00\x72\x00\x7a\ -\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x20\ -\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\ -\x00\x79\x00\x63\x00\x7a\x00\x6e\x00\x79\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x19\x43\x72\x65\x61\x74\x65\x20\x70\x61\x72\x61\x6d\ -\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x22\x00\x4f\x00\x70\x00\x63\x00\x6a\x00\x65\x00\ -\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x75\x00\ -\x20\x00\x44\x00\x58\x00\x46\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x12\x44\x58\x46\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\ -\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x4b\x00\x6f\x00\ -\x6c\x00\x6f\x00\x72\x00\x20\x00\x64\x00\x6f\x00\x6d\x00\x79\x01\ -\x5b\x00\x6c\x00\x6e\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0d\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x48\x00\x44\x00\x6f\x00\x6d\x00\x79\x01\x5b\ -\x00\x6c\x00\x6e\x00\x61\x00\x20\x00\x77\x00\x79\x00\x73\x00\x6f\ -\x00\x6b\x00\x6f\x01\x5b\x01\x07\x00\x20\x00\x74\x00\x65\x00\x6b\ -\x00\x73\x00\x74\x00\xf3\x00\x77\x00\x20\x00\x69\x00\x20\x00\x77\ -\x00\x79\x00\x6d\x00\x69\x00\x61\x00\x72\x00\xf3\x00\x77\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x27\x44\x65\x66\x61\x75\x6c\x74\x20\ -\x68\x65\x69\x67\x68\x74\x20\x66\x6f\x72\x20\x74\x65\x78\x74\x73\ -\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x30\x00\x44\x00\x6f\x00\x6d\x00\x79\x01\ -\x5b\x00\x6c\x00\x6e\x00\x61\x00\x20\x00\x73\x00\x7a\x00\x65\x00\ -\x72\x00\x6f\x00\x6b\x00\x6f\x01\x5b\x01\x07\x00\x20\x00\x6c\x00\ -\x69\x00\x6e\x00\x69\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x11\x44\x65\x66\x61\x75\x6c\x74\x20\x6c\x69\x6e\x65\x77\x69\x64\ -\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x44\x00\x6f\x00\x6d\ -\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x7a\ -\x00\x61\x00\x62\x00\x6c\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x72\ -\x00\x6b\x00\x75\x00\x73\x00\x7a\x00\x61\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x16\x44\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x6d\x70\ -\x6c\x61\x74\x65\x20\x73\x68\x65\x65\x74\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x30\x00\x44\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\ -\x00\x61\x00\x20\x00\x63\x00\x7a\x00\x63\x00\x69\x00\x6f\x00\x6e\ -\x00\x6b\x00\x61\x00\x20\x00\x74\x00\x65\x00\x6b\x00\x73\x00\x74\ -\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\x65\x66\x61\ -\x75\x6c\x74\x20\x74\x65\x78\x74\x20\x66\x6f\x6e\x74\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x30\x00\x44\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\ -\x6c\x00\x6e\x00\x61\x00\x20\x00\x77\x00\x79\x00\x73\x00\x6f\x00\ -\x6b\x00\x6f\x01\x5b\x01\x07\x00\x20\x00\x74\x00\x65\x00\x6b\x00\ -\x73\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x44\ -\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x78\x74\x20\x68\x65\x69\x67\ -\x68\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x00\x44\x00\x6f\x00\x6d\ -\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x61\x00\x20\x00\x70\x01\x42\ -\x00\x61\x00\x73\x00\x7a\x00\x63\x00\x7a\x00\x79\x00\x7a\x00\x6e\ -\x00\x61\x00\x20\x00\x72\x00\x6f\x00\x62\x00\x6f\x00\x63\x00\x7a\ -\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x44\x65\x66\x61\ -\x75\x6c\x74\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\x6c\x61\x6e\ -\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x53\x00\x74\x00\x79\x00\ -\x6c\x00\x20\x00\x77\x00\x79\x00\x6d\x00\x69\x00\x61\x00\x72\x00\ -\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x61\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x1f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\ -\x26\x20\x4c\x65\x61\x64\x65\x72\x20\x61\x72\x72\x6f\x77\x20\x73\ -\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x44\x00\x6f\ -\x00\x6b\x01\x42\x00\x61\x00\x64\x00\x6e\x00\x6f\x01\x5b\x01\x07\ -\x00\x20\x00\x77\x00\x79\x00\x6d\x00\x69\x00\x61\x00\x72\x00\x6f\ -\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x61\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x1a\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x70\ -\x72\x65\x63\x69\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x0a\x00\x44\x00\x6f\x00\x74\x00\x20\x00\x35\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\x35\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x0a\x00\x44\x00\x6f\x00\x74\x00\x20\x00\ -\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\x37\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x44\x00\x6f\x00\x74\x00\x20\ -\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\ -\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x54\x00\x72\x00\x79\x00\ -\x62\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x14\x44\x72\x61\x66\x74\x20\x69\x6e\x74\ -\x65\x72\x66\x61\x63\x65\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x58\x00\x45\x00\x6b\x00\x73\x00\x70\x00\x6f\x00\x72\x00\ -\x74\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\ -\x75\x00\x20\x00\x33\x00\x44\x00\x20\x00\x6a\x00\x61\x00\x6b\x00\ -\x6f\x00\x20\x00\x77\x00\x69\x00\x65\x00\x6c\x00\x6f\x00\x66\x00\ -\x61\x00\x73\x00\x65\x00\x74\x00\x6f\x00\x77\x00\x61\x00\x20\x00\ -\x73\x00\x69\x00\x61\x00\x74\x00\x6b\x00\x61\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x24\x45\x78\x70\x6f\x72\x74\x20\x33\x44\x20\x6f\ -\x62\x6a\x65\x63\x74\x73\x20\x61\x73\x20\x70\x6f\x6c\x79\x66\x61\ -\x63\x65\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x34\x00\x57\x00\x79\x00\x70\x00\x65\x01\x42\x00\x6e\x00\x69\x00\ -\x6a\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\ -\x79\x00\x20\x00\x64\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\ -\x6e\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x46\ -\x69\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x79\x20\x64\ -\x65\x66\x61\x75\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\x00\x4f\ -\x00\x67\x00\xf3\x00\x6c\x00\x6e\x00\x65\x00\x20\x00\x75\x00\x73\ -\x00\x74\x00\x61\x00\x77\x00\x69\x00\x65\x00\x6e\x00\x69\x00\x61\ -\x00\x20\x00\x72\x00\x79\x00\x73\x00\x75\x00\x6e\x00\x6b\x00\x6f\ -\x00\x77\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x47\x65\ -\x6e\x65\x72\x61\x6c\x20\x44\x72\x61\x66\x74\x20\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x55\x00\x73\ -\x00\x74\x00\x61\x00\x77\x00\x69\x00\x65\x00\x6e\x00\x69\x00\x61\ -\x00\x20\x00\x6f\x00\x67\x00\xf3\x00\x6c\x00\x6e\x00\x65\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\ -\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\ -\x00\x54\x00\x72\x00\x79\x00\x62\x00\x20\x00\x67\x00\x6c\x00\x6f\ -\x00\x62\x00\x61\x00\x6c\x00\x6e\x00\x79\x00\x20\x00\x6b\x00\x6f\ -\x00\x70\x00\x69\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x61\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x6c\x6f\x62\x61\x6c\ -\x20\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x18\x00\x47\x00\x72\x00\x69\x00\x64\x00\x20\x00\x73\x00\x70\ -\x00\x61\x00\x63\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0c\x47\x72\x69\x64\x20\x73\x70\x61\x63\x69\x6e\x67\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x5a\x00\x67\x00\x72\x00\x75\ -\x00\x70\x00\x75\x00\x6a\x00\x20\x00\x77\x00\x61\x00\x72\x00\x73\ -\x00\x74\x00\x77\x00\x79\x00\x20\x00\x77\x00\x20\x00\x42\x00\x6c\ -\x00\x6f\x00\x6b\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\ -\x47\x72\x6f\x75\x70\x20\x6c\x61\x79\x65\x72\x73\x20\x69\x6e\x74\ -\x6f\x20\x62\x6c\x6f\x63\x6b\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xf6\ -\x00\x50\x00\x6f\x00\x64\x00\x61\x00\x6a\x00\x20\x00\x66\x00\x6f\ -\x00\x6c\x00\x64\x00\x65\x00\x72\x00\x20\x00\x7a\x00\x61\x00\x77\ -\x00\x69\x00\x65\x00\x72\x00\x61\x00\x6a\x01\x05\x00\x63\x00\x79\ -\x00\x20\x00\x70\x00\x6c\x00\x69\x00\x6b\x00\x69\x00\x20\x00\x53\ -\x00\x56\x00\x47\x00\x20\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\ -\x00\x69\x00\x63\x00\x6a\x00\x69\x00\x20\x00\x77\x00\x7a\x00\x6f\ -\x00\x72\x00\xf3\x00\x77\x00\x20\x00\x77\x00\x79\x00\x70\x00\x65\ -\x01\x42\x00\x6e\x00\x69\x00\x65\x00\x6e\x00\x69\x00\x61\x00\x20\ -\x00\x2c\x00\x6b\x00\x74\x00\xf3\x00\x72\x00\x65\x00\x20\x00\x6d\ -\x00\x6f\x01\x7c\x00\x6e\x00\x61\x00\x20\x00\x64\x00\x6f\x00\x64\ -\x00\x61\x01\x07\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x73\x00\x74\ -\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x6f\x00\x77\ -\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x75\ -\x01\x42\x00\x75\x00\x20\x00\x77\x00\x79\x00\x70\x00\x65\x01\x42\ -\x00\x6e\x00\x69\x00\x65\x01\x44\x00\x20\x00\x44\x00\x72\x00\x61\ -\x00\x66\x00\x74\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x8d\ -\x48\x65\x72\x65\x20\x79\x6f\x75\x20\x63\x61\x6e\x20\x73\x70\x65\ -\x63\x69\x66\x79\x20\x61\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\ -\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x53\x56\x47\x20\ -\x66\x69\x6c\x65\x73\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\ -\x20\x3c\x70\x61\x74\x74\x65\x72\x6e\x3e\x20\x64\x65\x66\x69\x6e\ -\x69\x74\x69\x6f\x6e\x73\x20\x74\x68\x61\x74\x20\x63\x61\x6e\x20\ -\x62\x65\x20\x61\x64\x64\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x20\ -\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x44\x72\x61\x66\x74\x20\x68\ -\x61\x74\x63\x68\x20\x70\x61\x74\x74\x65\x72\x6e\x73\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x56\x00\x49\x00\x66\x00\x20\x00\x63\x00\x68\x00\ -\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x61\x00\ -\x20\x00\x67\x00\x72\x00\x69\x00\x64\x00\x20\x00\x77\x00\x69\x00\ -\x6c\x00\x6c\x00\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\x00\ -\x72\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x64\x00\ -\x72\x00\x61\x00\x77\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x2b\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ -\x20\x61\x20\x67\x72\x69\x64\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\ -\x65\x61\x72\x20\x77\x68\x65\x6e\x20\x64\x72\x61\x77\x69\x6e\x67\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\xe0\x00\x4a\x00\x65\x01\x5b\x00\x6c\ -\x00\x69\x00\x20\x00\x7a\x00\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\ -\x00\x7a\x00\x6f\x00\x6e\x00\x6f\x00\x2c\x00\x20\x00\x46\x00\x72\ -\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x20\x00\x73\x00\x70\ -\x00\x72\x00\xf3\x00\x62\x00\x75\x00\x6a\x00\x65\x00\x20\x00\x70\ -\x00\x6f\x01\x42\x01\x05\x00\x63\x00\x7a\x00\x79\x01\x07\x00\x20\ -\x00\x6e\x00\x61\x00\x6b\x01\x42\x00\x61\x00\x64\x00\x61\x00\x6a\ -\x01\x05\x00\x63\x00\x65\x00\x20\x00\x73\x00\x69\x01\x19\x00\x20\ -\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x20\ -\x00\x77\x00\x20\x00\x73\x00\x7a\x00\x6b\x00\x69\x00\x65\x00\x6c\ -\x00\x65\x00\x74\x00\x2e\x00\x20\x00\x55\x00\x77\x00\x61\x00\x67\ -\x00\x61\x00\x2c\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x6d\x00\x6f\ -\x01\x7c\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x74\x00\x72\x00\x77\ -\x00\x61\x01\x07\x00\x20\x00\x63\x00\x68\x00\x77\x00\x69\x00\x6c\ -\x01\x19\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x65\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x66\x72\ -\x65\x65\x63\x61\x64\x20\x77\x69\x6c\x6c\x20\x74\x72\x79\x20\x74\ -\x6f\x20\x6a\x6f\x69\x6e\x74\x20\x63\x6f\x69\x6e\x63\x69\x64\x65\ -\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\ -\x77\x69\x72\x65\x73\x2e\x20\x42\x65\x77\x61\x72\x65\x2c\x20\x74\ -\x68\x69\x73\x20\x63\x61\x6e\x20\x74\x61\x6b\x65\x20\x61\x20\x77\ -\x68\x69\x6c\x65\x2e\x2e\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa2\x00\ -\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ -\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\ -\x65\x00\x64\x00\x2c\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ -\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x69\x00\ -\x6e\x00\x67\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\ -\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\ -\x20\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\ -\x64\x00\x20\x00\x61\x00\x73\x00\x20\x00\x33\x00\x64\x00\x20\x00\ -\x70\x00\x6f\x00\x6c\x00\x79\x00\x66\x00\x61\x00\x63\x00\x65\x00\ -\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x49\x66\x20\x74\x68\ -\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\ -\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x63\x6f\x6e\x74\x61\ -\x69\x6e\x69\x6e\x67\x20\x66\x61\x63\x65\x73\x20\x77\x69\x6c\x6c\ -\x20\x62\x65\x20\x65\x78\x70\x6f\x72\x74\x65\x64\x20\x61\x73\x20\ -\x33\x64\x20\x70\x6f\x6c\x79\x66\x61\x63\x65\x73\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\xd0\x00\x4a\x00\x65\x01\x5b\x00\x6c\x00\x69\x00\x20\ -\x00\x77\x01\x42\x01\x05\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x65\ -\x00\x2c\x00\x20\x00\x74\x00\x72\x00\x79\x00\x62\x00\x20\x00\x6b\ -\x00\x6f\x00\x70\x00\x69\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\ -\x00\x61\x00\x20\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x20\x00\x61\ -\x00\x6b\x00\x74\x00\x79\x00\x77\x00\x6e\x00\x79\x00\x20\x00\x77\ -\x00\x20\x00\x63\x00\x7a\x00\x61\x00\x73\x00\x69\x00\x65\x00\x20\ -\x00\x6b\x00\x6f\x00\x6d\x00\x65\x00\x6e\x00\x64\x00\x79\x00\x2e\ -\x00\x20\x00\x44\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\ -\x00\x69\x00\x65\x00\x20\x00\x74\x00\x72\x00\x79\x00\x62\x00\x20\ -\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x6f\x00\x77\x00\x61\x00\x6e\ -\x00\x69\x00\x61\x00\x20\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x20\ -\x00\x77\x00\x79\x01\x42\x01\x05\x00\x63\x00\x7a\x00\x6f\x00\x6e\ -\x00\x79\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x6f\x49\x66\ -\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\ -\x2c\x20\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\ -\x20\x62\x65\x20\x6b\x65\x70\x74\x20\x61\x63\x72\x6f\x73\x73\x20\ -\x63\x6f\x6d\x6d\x61\x6e\x64\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\ -\x73\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x20\x77\x69\x6c\x6c\ -\x20\x61\x6c\x77\x61\x79\x73\x20\x73\x74\x61\x72\x74\x20\x69\x6e\ -\x20\x6e\x6f\x2d\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\xa0\x00\x4a\x00\x65\x01\x5b\x00\x6c\x00\x69\x00\ -\x20\x00\x7a\x00\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\ -\x6f\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\ -\x6b\x00\x74\x00\x79\x00\x20\x00\x62\x01\x19\x00\x64\x01\x05\x00\ -\x20\x00\x77\x00\x69\x00\x64\x00\x6f\x00\x63\x00\x7a\x00\x6e\x00\ -\x65\x00\x20\x00\x6a\x00\x61\x00\x6b\x00\x6f\x00\x20\x00\x77\x00\ -\x79\x00\x70\x00\x65\x01\x42\x00\x6e\x00\x69\x00\x6f\x00\x6e\x00\ -\x65\x00\x2e\x00\x20\x00\x44\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\ -\x6c\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x6a\x00\x61\x00\x6b\x00\ -\x6f\x00\x20\x00\x73\x00\x7a\x00\x6b\x00\x69\x00\x65\x00\x6c\x00\ -\x65\x00\x74\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x66\x49\ -\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\ -\x64\x2c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\ -\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x66\x69\x6c\x6c\x65\x64\ -\x20\x61\x73\x20\x64\x65\x66\x61\x75\x6c\x74\x2e\x20\x4f\x74\x68\ -\x65\x72\x77\x69\x73\x65\x2c\x20\x74\x68\x65\x79\x20\x77\x69\x6c\ -\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x77\x69\x72\x65\ -\x66\x72\x61\x6d\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x2a\x00\x4a\x00\ -\x65\x01\x5b\x00\x6c\x00\x69\x00\x20\x00\x7a\x00\x61\x00\x7a\x00\ -\x6e\x00\x61\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x65\x00\x2c\x00\ -\x20\x00\x62\x01\x19\x00\x64\x00\x7a\x00\x69\x00\x65\x00\x20\x00\ -\x7a\x00\x61\x00\x77\x00\x73\x00\x7a\x00\x65\x00\x20\x00\x70\x00\ -\x72\x00\x7a\x00\x79\x00\x63\x00\x69\x01\x05\x00\x67\x00\x61\x01\ -\x42\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x69\x00\x73\x00\x74\x00\ -\x6e\x00\x69\x00\x65\x00\x6a\x01\x05\x00\x63\x00\x79\x00\x63\x00\ -\x68\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\ -\xf3\x00\x77\x00\x20\x00\x70\x00\x6f\x00\x64\x00\x63\x00\x7a\x00\ -\x61\x00\x73\x00\x20\x00\x72\x00\x79\x00\x73\x00\x6f\x00\x77\x00\ -\x61\x00\x6e\x00\x69\x00\x61\x00\x2e\x00\x20\x00\x4a\x00\x65\x01\ -\x5b\x00\x6c\x00\x69\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x2c\x00\ -\x20\x00\x62\x01\x19\x00\x64\x00\x7a\x00\x69\x00\x65\x00\x20\x00\ -\x70\x00\x72\x00\x7a\x00\x79\x00\x63\x00\x69\x01\x05\x00\x67\x00\ -\x61\x01\x42\x00\x20\x00\x74\x00\x79\x00\x6c\x00\x6b\x00\x6f\x00\ -\x20\x00\x77\x00\x74\x00\x65\x00\x64\x00\x79\x00\x2c\x00\x20\x00\ -\x67\x00\x64\x00\x79\x00\x20\x00\x6e\x00\x61\x00\x63\x00\x69\x01\ -\x5b\x00\x6e\x00\x69\x00\x65\x00\x73\x00\x7a\x00\x20\x00\x43\x00\ -\x54\x00\x52\x00\x4c\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x81\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ -\x6b\x65\x64\x2c\x20\x79\x6f\x75\x20\x77\x69\x6c\x6c\x20\x61\x6c\ -\x77\x61\x79\x73\x20\x73\x6e\x61\x70\x20\x74\x6f\x20\x65\x78\x69\ -\x73\x74\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x68\ -\x69\x6c\x65\x20\x64\x72\x61\x77\x69\x6e\x67\x2e\x20\x49\x66\x20\ -\x6e\x6f\x74\x2c\x20\x79\x6f\x75\x20\x77\x69\x6c\x6c\x20\x62\x65\ -\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x20\x6f\x6e\x6c\x79\x20\x77\ -\x68\x65\x6e\x20\x70\x72\x65\x73\x73\x69\x6e\x67\x20\x43\x54\x52\ -\x4c\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x49\x00\x6d\x00\x70\ -\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x2a\x00\x42\x00\x6c\x00\x6f\ -\x00\x6b\x00\xf3\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ -\x49\x6d\x70\x6f\x72\x74\x20\x2a\x62\x6c\x6f\x63\x6b\x73\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x2c\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\ -\x00\x74\x00\x20\x00\x70\x00\x6f\x00\x77\x00\x69\x00\x65\x00\x72\ -\x00\x7a\x00\x63\x00\x68\x00\x6e\x00\x69\x00\x20\x00\x4f\x00\x43\ -\x00\x41\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x49\x6d\x70\x6f\ -\x72\x74\x20\x4f\x43\x41\x20\x61\x72\x65\x61\x73\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x26\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\ -\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x77\ -\x00\x61\x00\x72\x00\x73\x00\x74\x00\x77\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0e\x49\x6d\x70\x6f\x72\x74\x20\x6c\x61\x79\x6f\x75\ -\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x49\x00\x6d\x00\x70\ -\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x73\x00\x74\x00\x79\x00\x6c\ -\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x49\x6d\x70\x6f\ -\x72\x74\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\ -\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x75\x00\x6a\ -\x00\x20\x00\x74\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x20\x00\x69\ -\x00\x20\x00\x77\x00\x79\x00\x6d\x00\x69\x00\x61\x00\x72\x00\x79\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x49\x6d\x70\x6f\x72\x74\ -\x20\x74\x65\x78\x74\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\ -\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x49\x00\ -\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x2f\x00\x65\x00\x6b\x00\ -\x73\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0d\x49\x6d\x70\x6f\x72\x74\x2f\x45\x78\x70\x6f\x72\x74\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x30\x00\x49\x00\x6e\x00\x74\x00\x65\ -\x00\x72\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x70\x00\x72\x00\x65\ -\x00\x63\x00\x69\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6c\ -\x00\x65\x00\x76\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x18\x49\x6e\x74\x65\x72\x6e\x61\x6c\x20\x70\x72\x65\x63\x69\ -\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x1a\x00\x4a\x00\x6f\x00\x69\x00\x6e\x00\x20\x00\x67\x00\x65\ -\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x79\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0d\x4a\x6f\x69\x6e\x20\x67\x65\x6f\x6d\x65\ -\x74\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x4c\x00\x65\x00\ -\x77\x00\x6f\x00\x20\x00\x28\x00\x73\x00\x74\x00\x61\x00\x6e\x00\ -\x64\x00\x61\x00\x72\x00\x64\x00\x20\x00\x49\x00\x53\x00\x4f\x00\ -\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x4c\x65\x66\x74\x20\ -\x28\x49\x53\x4f\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x29\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x20\x00\x4d\x00\x61\x00\x69\x00\x6e\x00\x20\ -\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x65\x00\x76\ -\x00\x65\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ -\x4d\x61\x69\x6e\x20\x6c\x69\x6e\x65\x73\x20\x65\x76\x65\x72\x79\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\xa2\x00\x4d\x00\x61\x00\x69\x00\x6e\ -\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\ -\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x64\x00\x72\ -\x00\x61\x00\x77\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x69\x00\x63\ -\x00\x6b\x00\x65\x00\x72\x00\x2e\x00\x20\x00\x53\x00\x70\x00\x65\ -\x00\x63\x00\x69\x00\x66\x00\x79\x00\x20\x00\x68\x00\x65\x00\x72\ -\x00\x65\x00\x20\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x6d\x00\x61\ -\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x71\x00\x75\x00\x61\x00\x72\ -\x00\x65\x00\x73\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\ -\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x61\x00\x69\x00\x6e\x00\x6c\ -\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x51\x4d\x61\x69\x6e\x6c\x69\x6e\x65\x73\x20\x77\x69\ -\x6c\x6c\x20\x62\x65\x20\x64\x72\x61\x77\x6e\x20\x74\x68\x69\x63\ -\x6b\x65\x72\x2e\x20\x53\x70\x65\x63\x69\x66\x79\x20\x68\x65\x72\ -\x65\x20\x68\x6f\x77\x20\x6d\x61\x6e\x79\x20\x73\x71\x75\x61\x72\ -\x65\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x6d\x61\x69\x6e\x6c\ -\x69\x6e\x65\x73\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x4d\x00\ -\x61\x00\x78\x00\x2e\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\ -\x65\x00\x6e\x00\x74\x00\x20\x00\x53\x00\x70\x00\x6c\x00\x61\x00\ -\x6a\x00\x6e\x00\x2d\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x12\x4d\x61\x78\x20\x53\x70\x6c\x69\x6e\x65\x20\x53\x65\x67\x6d\ -\x65\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x01\x7b\x00\x61\x00\ -\x64\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\ -\x6f\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x42\x00\x72\x00\ -\x61\x00\x6b\x00\x20\x00\x28\x00\x6e\x00\x61\x00\x6a\x00\x73\x00\ -\x7a\x00\x79\x00\x62\x00\x73\x00\x7a\x00\x79\x00\x29\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0e\x4e\x6f\x6e\x65\x20\x28\x66\x61\x73\ -\x74\x65\x73\x74\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xfe\x00\x4e\x00\ -\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\x79\x00\x2c\x00\ -\x20\x00\x61\x00\x66\x00\x74\x00\x65\x00\x72\x00\x20\x00\x63\x00\ -\x6f\x00\x70\x00\x79\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x2c\x00\x20\x00\ -\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\ -\x65\x00\x73\x00\x20\x00\x67\x00\x65\x00\x74\x00\x20\x00\x73\x00\ -\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x2e\x00\ -\x20\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ -\x20\x00\x6f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ -\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\ -\x65\x00\x64\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ -\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ -\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ -\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\ -\x73\x00\x74\x00\x65\x00\x61\x00\x64\x00\x2e\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x7f\x4e\x6f\x72\x6d\x61\x6c\x6c\x79\x2c\x20\x61\ -\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\x6e\x67\x20\x6f\x62\x6a\ -\x65\x63\x74\x73\x2c\x20\x74\x68\x65\x20\x63\x6f\x70\x69\x65\x73\ -\x20\x67\x65\x74\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x2e\x20\x49\ -\x66\x20\x74\x68\x69\x73\x20\x6f\x70\x74\x69\x6f\x6e\x20\x69\x73\ -\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x62\x61\ -\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\ -\x62\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x69\x6e\x73\x74\ -\x65\x61\x64\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x4f\x00\x70\ -\x00\x63\x00\x6a\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\ -\x00\x61\x00\x74\x00\x75\x00\x20\x00\x4f\x00\x43\x00\x41\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x12\x4f\x43\x41\x20\x66\x6f\x72\x6d\ -\x61\x74\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x44\x00\x4f\x00\x72\x00\x79\x00\x67\x00\x69\x00\x6e\x00\x61\ -\x00\x6c\x00\x6e\x00\x79\x00\x20\x00\x6b\x00\x6f\x00\x6c\x00\x6f\ -\x00\x72\x00\x20\x00\x69\x00\x20\x00\x73\x00\x7a\x00\x65\x00\x72\ -\x00\x6f\x00\x6b\x00\x6f\x01\x5b\x01\x07\x00\x20\x00\x6c\x00\x69\ -\x00\x6e\x00\x69\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\ -\x4f\x72\x69\x67\x69\x6e\x61\x6c\x20\x63\x6f\x6c\x6f\x72\x20\x61\ -\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x0a\x00\x50\x00\x72\x00\x61\x00\x77\x00\x6f\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x05\x52\x69\x67\x68\x74\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x22\x00\x4f\x00\x70\x00\x63\x00\x6a\x00\x65\x00\ -\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x75\x00\ -\x20\x00\x53\x00\x56\x00\x47\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x12\x53\x56\x47\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\ -\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x64\x00\x5a\x00\x61\x00\ -\x70\x00\x69\x00\x73\x00\x7a\x00\x20\x00\x62\x00\x69\x00\x65\x01\ -\x7c\x01\x05\x00\x63\x00\x79\x00\x20\x00\x6b\x00\x6f\x00\x6c\x00\ -\x6f\x00\x72\x00\x20\x00\x69\x00\x20\x00\x73\x00\x7a\x00\x65\x00\ -\x72\x00\x6f\x00\x6b\x00\x6f\x01\x5b\x01\x07\x00\x20\x00\x6c\x00\ -\x69\x00\x6e\x00\x69\x00\x69\x00\x20\x00\x63\x00\x61\x01\x42\x00\ -\x65\x00\x6a\x00\x20\x00\x73\x00\x65\x00\x73\x00\x6a\x00\x69\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x30\x53\x61\x76\x65\x20\x63\x75\ -\x72\x72\x65\x6e\x74\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\ -\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\x61\x63\x72\x6f\x73\x73\ -\x20\x73\x65\x73\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x42\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\ -\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x66\x00\x74\x00\ -\x65\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x79\x00\x69\x00\ -\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x53\x65\x6c\ -\x65\x63\x74\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x20\x61\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\x6e\x67\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x0e\x00\x53\x00\x6c\x00\x61\x00\x73\x00\x68\ -\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\ -\x61\x73\x68\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x53\x00\ -\x6c\x00\x61\x00\x73\x00\x68\x00\x20\x00\x37\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\x20\x37\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x0e\x00\x53\x00\x6c\x00\x61\x00\x73\x00\x68\x00\x20\ -\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\ -\x68\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x50\x00\x72\x00\ -\x7a\x00\x79\x00\x63\x00\x69\x01\x05\x00\x67\x00\x61\x00\x6e\x00\ -\x69\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ -\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x6e\x61\x70\x20\ -\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x54\x00\ -\x72\x00\x79\x00\x62\x00\x20\x00\x53\x00\x6e\x00\x61\x00\x70\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x08\x53\x6e\x61\x70\x20\x6d\x6f\ -\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x53\x00\x6e\x00\x61\x00\ -\x70\x00\x20\x00\x72\x00\x61\x00\x6e\x00\x67\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0a\x53\x6e\x61\x70\x20\x72\x61\x6e\x67\ -\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x50\x00\x61\x00\x73\x00\ -\x65\x00\x6b\x00\x20\x00\x7a\x00\x61\x00\x64\x00\x61\x01\x44\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x08\x54\x61\x73\x6b\x76\x69\x65\ -\x77\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x00\x54\x00\x68\x00\x65\x00\ -\x20\x00\x43\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\ -\x69\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x6d\x00\x6f\x00\ -\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x72\x00\x20\x00\x6b\x00\ -\x65\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x54\x68\x65\ -\x20\x43\x6f\x6e\x73\x74\x72\x61\x69\x6e\x69\x6e\x67\x20\x6d\x6f\ -\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x28\x00\x54\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x74\ -\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\ -\x00\x72\x00\x20\x00\x6b\x00\x65\x00\x79\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x14\x54\x68\x65\x20\x61\x6c\x74\x20\x6d\x6f\x64\x69\ -\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x58\ -\x00\x50\x00\x6c\x00\x69\x00\x6b\x00\x20\x00\x6d\x00\x61\x00\x70\ -\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x61\x00\x20\x00\x6b\ -\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\xf3\x00\x77\x00\x20\x00\x44\ -\x00\x58\x00\x46\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x67\x00\x72\ -\x00\x75\x00\x62\x00\x6f\x01\x5b\x00\x63\x00\x69\x00\x20\x00\x6c\ -\x00\x69\x00\x6e\x00\x69\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x41\x54\x68\x65\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\ -\x69\x6e\x67\x20\x66\x69\x6c\x65\x20\x66\x6f\x72\x20\x74\x72\x61\ -\x6e\x73\x6c\x61\x74\x69\x6e\x67\x20\x64\x78\x66\x20\x63\x6f\x6c\ -\x6f\x72\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\ -\x74\x68\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x7a\x00\x44\x00\x6f\x00\ -\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x79\x00\x20\x00\x73\x00\ -\x7a\x00\x61\x00\x62\x00\x6c\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\ -\x6f\x00\x64\x00\x63\x00\x7a\x00\x61\x00\x73\x00\x20\x00\x74\x00\ -\x77\x00\x6f\x00\x72\x00\x7a\x00\x65\x00\x6e\x00\x69\x00\x61\x00\ -\x20\x00\x6e\x00\x6f\x00\x77\x00\x65\x00\x67\x00\x6f\x00\x20\x00\ -\x61\x00\x72\x00\x6b\x00\x75\x00\x73\x00\x7a\x00\x61\x00\x20\x00\ -\x72\x00\x79\x00\x73\x00\x75\x00\x6e\x00\x6b\x00\x6f\x00\x77\x00\ -\x65\x00\x67\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3d\x54\ -\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x6d\x70\x6c\ -\x61\x74\x65\x20\x74\x6f\x20\x75\x73\x65\x20\x77\x68\x65\x6e\x20\ -\x63\x72\x65\x61\x74\x69\x6e\x67\x20\x61\x20\x6e\x65\x77\x20\x64\ -\x72\x61\x77\x69\x6e\x67\x20\x73\x68\x65\x65\x74\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x72\x00\x49\x00\x6c\x00\x6f\x01\x5b\x01\x07\x00\x20\ -\x00\x6d\x00\x69\x00\x65\x00\x6a\x00\x73\x00\x63\x00\x20\x00\x64\ -\x00\x7a\x00\x69\x00\x65\x00\x73\x00\x69\x01\x19\x00\x74\x00\x6e\ -\x00\x79\x00\x63\x00\x68\x00\x20\x00\x64\x00\x6c\x00\x61\x00\x20\ -\x00\x77\x00\x73\x00\x70\x00\xf3\x01\x42\x00\x72\x00\x7a\x01\x19\ -\x00\x64\x00\x6e\x00\x79\x00\x63\x00\x68\x00\x20\x00\x77\x00\x65\ -\x00\x77\x00\x6e\x01\x19\x00\x74\x00\x72\x00\x7a\x00\x6e\x00\x79\ -\x00\x63\x00\x68\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\ -\x54\x68\x65\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x64\x65\ -\x63\x69\x6d\x61\x6c\x73\x20\x69\x6e\x20\x69\x6e\x74\x65\x72\x6e\ -\x61\x6c\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x73\x20\x6f\ -\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x20\x28\x66\x6f\x72\x20\x65\ -\x78\x2e\x20\x33\x20\x3d\x20\x30\x2e\x30\x30\x31\x29\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x9c\x00\x54\x00\x68\x00\x65\x00\x20\x00\x72\x00\ -\x61\x00\x64\x00\x69\x00\x75\x00\x73\x00\x20\x00\x66\x00\x6f\x00\ -\x72\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x69\x00\ -\x6e\x00\x67\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x70\x00\ -\x65\x00\x63\x00\x69\x00\x61\x00\x6c\x00\x20\x00\x70\x00\x6f\x00\ -\x69\x00\x6e\x00\x74\x00\x73\x00\x2e\x00\x20\x00\x53\x00\x65\x00\ -\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x30\x00\x20\x00\x66\x00\ -\x6f\x00\x72\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x64\x00\x69\x00\ -\x73\x00\x74\x00\x61\x00\x6e\x00\x63\x00\x65\x00\x20\x00\x28\x00\ -\x69\x00\x6e\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\x65\x00\ -\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4e\x54\x68\x65\x20\x72\ -\x61\x64\x69\x75\x73\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x70\x69\ -\x6e\x67\x20\x74\x6f\x20\x73\x70\x65\x63\x69\x61\x6c\x20\x70\x6f\ -\x69\x6e\x74\x73\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\x30\x20\x66\ -\x6f\x72\x20\x6e\x6f\x20\x64\x69\x73\x74\x61\x6e\x63\x65\x20\x28\ -\x69\x6e\x66\x69\x6e\x69\x74\x65\x29\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x2a\x00\x54\x00\x68\x00\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\ -\x70\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\ -\x65\x00\x72\x00\x20\x00\x6b\x00\x65\x00\x79\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x15\x54\x68\x65\x20\x73\x6e\x61\x70\x20\x6d\x6f\ -\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x44\x00\x54\x00\x68\x00\x65\x00\x20\x00\x73\x00\x70\x00\x61\ -\x00\x63\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x62\x00\x65\x00\x74\ -\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x61\x00\x63\ -\x00\x68\x00\x20\x00\x67\x00\x72\x00\x69\x00\x64\x00\x20\x00\x6c\ -\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\ -\x54\x68\x65\x20\x73\x70\x61\x63\x69\x6e\x67\x20\x62\x65\x74\x77\ -\x65\x65\x6e\x20\x65\x61\x63\x68\x20\x67\x72\x69\x64\x20\x6c\x69\ -\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x01\x9e\x00\x54\x00\x68\x00\x69\ -\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\ -\x00\x20\x00\x55\x00\x49\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\ -\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x77\x00\x68\x00\x69\x00\x63\ -\x00\x68\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\x00\x72\ -\x00\x61\x00\x66\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x75\ -\x00\x6c\x00\x65\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\ -\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x3a\x00\x20\x00\x54\x00\x6f\ -\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x00\x20\x00\x6d\x00\x6f\ -\x00\x64\x00\x65\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\ -\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x20\x00\x61\x00\x6c\ -\x00\x6c\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\ -\x00\x73\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\ -\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\ -\x00\x70\x00\x61\x00\x72\x00\x61\x00\x74\x00\x65\x00\x20\x00\x74\ -\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x00\x2c\x00\x20\ -\x00\x77\x00\x68\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x74\x00\x61\ -\x00\x73\x00\x6b\x00\x62\x00\x61\x00\x72\x00\x20\x00\x6d\x00\x6f\ -\x00\x64\x00\x65\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\ -\x00\x75\x00\x73\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ -\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x20\ -\x00\x54\x00\x61\x00\x73\x00\x6b\x00\x76\x00\x69\x00\x65\x00\x77\ -\x00\x20\x00\x73\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x20\ -\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\ -\x00\x69\x00\x74\x00\x73\x00\x20\x00\x75\x00\x73\x00\x65\x00\x72\ -\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x61\x00\x63\ -\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\xcf\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x55\x49\ -\x20\x6d\x6f\x64\x65\x20\x69\x6e\x20\x77\x68\x69\x63\x68\x20\x74\ -\x68\x65\x20\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\x75\x6c\x65\x20\ -\x77\x69\x6c\x6c\x20\x77\x6f\x72\x6b\x3a\x20\x54\x6f\x6f\x6c\x62\ -\x61\x72\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x70\x6c\x61\ -\x63\x65\x20\x61\x6c\x6c\x20\x44\x72\x61\x66\x74\x20\x73\x65\x74\ -\x74\x69\x6e\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x65\x70\x61\x72\ -\x61\x74\x65\x20\x74\x6f\x6f\x6c\x62\x61\x72\x2c\x20\x77\x68\x69\ -\x6c\x65\x20\x74\x61\x73\x6b\x62\x61\x72\x20\x6d\x6f\x64\x65\x20\ -\x77\x69\x6c\x6c\x20\x75\x73\x65\x20\x74\x68\x65\x20\x46\x72\x65\ -\x65\x43\x41\x44\x20\x54\x61\x73\x6b\x76\x69\x65\x77\x20\x73\x79\ -\x73\x74\x65\x6d\x20\x66\x6f\x72\x20\x61\x6c\x6c\x20\x69\x74\x73\ -\x20\x75\x73\x65\x72\x20\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x6f\ -\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x94\x00\x4a\x00\x65\x00\x73\x00\ -\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x6f\x00\x6d\x00\ -\x79\x01\x5b\x00\x6c\x00\x6e\x00\x79\x00\x20\x00\x6b\x00\x6f\x00\ -\x6c\x00\x6f\x00\x72\x00\x20\x00\x64\x00\x6c\x00\x61\x00\x20\x00\ -\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\xf3\x00\x77\x00\ -\x2c\x00\x20\x00\x6b\x00\x74\x00\xf3\x00\x72\x00\x65\x00\x20\x00\ -\x73\x01\x05\x00\x20\x00\x73\x00\x70\x00\x6f\x00\x72\x00\x7a\x01\ -\x05\x00\x64\x00\x7a\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x77\x00\ -\x20\x00\x74\x00\x72\x00\x79\x00\x62\x00\x69\x00\x65\x00\x20\x00\ -\x62\x00\x75\x00\x64\x00\x6f\x00\x77\x00\x79\x00\x2e\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x4d\x54\x68\x69\x73\x20\x69\x73\x20\x74\ -\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\ -\x20\x66\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\x69\ -\x6e\x67\x20\x64\x72\x61\x77\x6e\x20\x77\x68\x69\x6c\x65\x20\x69\ -\x6e\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x6d\ -\x6f\x64\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\xe0\x00\x54\x00\x6f\ -\x00\x20\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x20\x00\x6e\x00\x61\ -\x00\x7a\x00\x77\x00\x61\x00\x20\x00\x64\x00\x6f\x00\x6d\x00\x79\ -\x01\x5b\x00\x6c\x00\x6e\x00\x65\x00\x6a\x00\x20\x00\x63\x00\x7a\ -\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x6b\x00\x69\x00\x20\x00\x64\ -\x00\x6c\x00\x61\x00\x20\x00\x77\x00\x73\x00\x7a\x00\x79\x00\x73\ -\x00\x74\x00\x6b\x00\x69\x00\x63\x00\x68\x00\x20\x00\x74\x00\x65\ -\x00\x6b\x00\x73\x00\x74\x00\xf3\x00\x77\x00\x20\x00\x69\x00\x20\ -\x00\x77\x00\x79\x00\x6d\x00\x69\x00\x61\x00\x72\x00\xf3\x00\x77\ -\x00\x2e\x00\x20\x00\x4d\x00\x6f\x01\x7c\x00\x65\x00\x20\x00\x74\ -\x00\x6f\x00\x20\x00\x62\x00\x79\x01\x07\x00\x20\x00\x6e\x00\x70\ -\x00\x2e\x00\x20\x00\x6e\x00\x61\x00\x7a\x00\x77\x00\x61\x00\x20\ -\x00\x63\x00\x7a\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x6b\x00\x69\ -\x00\x20\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x22\ -\x00\x2c\x00\x20\x00\x64\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\ -\x00\x6e\x00\x79\x00\x20\x00\x73\x00\x74\x00\x79\x00\x6c\x00\x2c\ -\x00\x20\x00\x74\x00\x61\x00\x6b\x00\x20\x00\x6a\x00\x61\x00\x6b\ -\x00\x20\x00\x22\x00\x73\x00\x61\x00\x6e\x00\x73\x00\x22\x00\x2c\ -\x00\x20\x00\x22\x00\x73\x00\x65\x00\x72\x00\x69\x00\x66\x00\x22\ -\x00\x20\x00\x6c\x00\x75\x00\x62\x00\x20\x00\x22\x00\x6d\x00\x6f\ -\x00\x6e\x00\x6f\x00\x22\x00\x20\x00\x6c\x00\x75\x00\x62\x00\x20\ -\x00\x72\x00\x6f\x00\x64\x00\x7a\x00\x69\x00\x6e\x00\x79\x00\x2c\ -\x00\x20\x00\x6a\x00\x61\x00\x6b\x00\x20\x00\x6e\x00\x70\x00\x2e\ -\x00\x20\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x2c\ -\x00\x20\x00\x48\x00\x65\x00\x6c\x00\x76\x00\x65\x00\x74\x00\x69\ -\x00\x63\x00\x61\x00\x2c\x00\x20\x00\x73\x00\x61\x00\x6e\x00\x73\ -\x00\x20\x00\x22\x00\x6c\x00\x75\x00\x62\x00\x20\x00\x6e\x00\x61\ -\x00\x7a\x00\x77\x01\x19\x00\x20\x00\x77\x00\x20\x00\x73\x00\x74\ -\x00\x79\x00\x6c\x00\x75\x00\x20\x00\x6e\x00\x70\x00\x2e\x00\x22\ -\x00\x20\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x3a\x00\x20\ -\x00\x42\x00\x6f\x00\x6c\x00\x64\x00\x20\x00\x22\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\xf2\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\ -\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x66\x6f\x6e\x74\x20\x6e\ -\x61\x6d\x65\x20\x66\x6f\x72\x20\x61\x6c\x6c\x20\x44\x72\x61\x66\ -\x74\x20\x74\x65\x78\x74\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\ -\x6e\x73\x69\x6f\x6e\x73\x2e\x0a\x49\x74\x20\x63\x61\x6e\x20\x62\ -\x65\x20\x61\x20\x66\x6f\x6e\x74\x20\x6e\x61\x6d\x65\x20\x73\x75\ -\x63\x68\x20\x61\x73\x20\x22\x41\x72\x69\x61\x6c\x22\x2c\x20\x61\ -\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x73\x74\x79\x6c\x65\x20\x73\ -\x75\x63\x68\x20\x61\x73\x20\x22\x73\x61\x6e\x73\x22\x2c\x20\x22\ -\x73\x65\x72\x69\x66\x22\x0a\x6f\x72\x20\x22\x6d\x6f\x6e\x6f\x22\ -\x2c\x20\x6f\x72\x20\x61\x20\x66\x61\x6d\x69\x6c\x79\x20\x73\x75\ -\x63\x68\x20\x61\x73\x20\x22\x41\x72\x69\x61\x6c\x2c\x48\x65\x6c\ -\x76\x65\x74\x69\x63\x61\x2c\x73\x61\x6e\x73\x22\x20\x6f\x72\x20\ -\x61\x20\x6e\x61\x6d\x65\x20\x77\x69\x74\x68\x20\x61\x20\x73\x74\ -\x79\x6c\x65\x0a\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\x72\x69\ -\x61\x6c\x3a\x42\x6f\x6c\x64\x22\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6c\ -\x00\x4a\x00\x65\x00\x73\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\ -\x00\x64\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x61\ -\x00\x20\x00\x6e\x00\x61\x00\x7a\x00\x77\x00\x61\x00\x20\x00\x67\ -\x00\x72\x00\x75\x00\x70\x00\x79\x00\x20\x00\x64\x00\x6c\x00\x61\ -\x00\x20\x00\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\ -\x00\x69\x00\x69\x00\x20\x00\x6b\x00\x6f\x00\x6e\x00\x73\x00\x74\ -\x00\x72\x00\x75\x00\x6b\x00\x63\x00\x6a\x00\x69\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x38\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\ -\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x67\x72\x6f\x75\x70\x20\ -\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\x63\x6f\x6e\x73\x74\x72\x75\ -\x63\x74\x69\x6f\x6e\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x6c\x00\x57\x00\x79\x00\x62\x00\x72\x00\x61\ -\x00\x6e\x00\x6f\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x6f\x00\x64\ -\x01\x19\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\ -\x00\x75\x00\x20\x00\x6b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x75\ -\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x75\ -\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x64\x00\x6f\x00\x20\ -\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x61\ -\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x47\x54\x68\x69\x73\ -\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x63\ -\x68\x6f\x6f\x73\x65\x64\x20\x66\x6f\x72\x20\x69\x6d\x70\x6f\x72\ -\x74\x69\x6e\x67\x20\x53\x56\x47\x20\x6f\x62\x6a\x65\x63\x74\x20\ -\x63\x6f\x6c\x6f\x72\x20\x69\x6e\x74\x6f\x20\x46\x72\x65\x65\x43\ -\x41\x44\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\xc6\x00\x54\x00\x68\x00\ -\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\ -\x65\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x68\x00\x6f\x00\x64\x00\ -\x20\x00\x63\x00\x68\x00\x6f\x00\x6f\x00\x73\x00\x65\x00\x64\x00\ -\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x69\x00\x6d\x00\x70\x00\ -\x6f\x00\x72\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\ -\x72\x00\x20\x00\x74\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x6c\x00\ -\x61\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x44\x00\x58\x00\ -\x46\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ -\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x69\x00\ -\x6e\x00\x74\x00\x6f\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\ -\x43\x00\x41\x00\x44\x00\x2e\x00\x20\x00\x0a\x00\x49\x00\x66\x00\ -\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x6d\x00\ -\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x69\x00\ -\x73\x00\x20\x00\x63\x00\x68\x00\x6f\x00\x6f\x00\x73\x00\x65\x00\ -\x64\x00\x2c\x00\x20\x00\x79\x00\x6f\x00\x75\x00\x20\x00\x6d\x00\ -\x75\x00\x73\x00\x74\x00\x20\x00\x63\x00\x68\x00\x6f\x00\x6f\x00\ -\x73\x00\x65\x00\x20\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\ -\x6f\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x70\x00\x70\x00\x69\x00\ -\x6e\x00\x67\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x20\x00\ -\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x69\x00\ -\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x74\x00\x72\x00\x61\x00\ -\x6e\x00\x73\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ -\x20\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x74\x00\ -\x68\x00\x61\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\ -\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\ -\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x73\x00\x20\x00\ -\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\ -\x65\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x73\x00\x2e\x00\ -\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\xe3\x54\x68\x69\x73\x20\ -\x69\x73\x20\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x63\x68\ -\x6f\x6f\x73\x65\x64\x20\x66\x6f\x72\x20\x69\x6d\x70\x6f\x72\x74\ -\x69\x6e\x67\x20\x6f\x72\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\ -\x6e\x67\x20\x44\x58\x46\x20\x6f\x62\x6a\x65\x63\x74\x20\x63\x6f\ -\x6c\x6f\x72\x20\x69\x6e\x74\x6f\x20\x46\x72\x65\x65\x43\x41\x44\ -\x2e\x20\x0a\x49\x66\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\ -\x69\x6e\x67\x20\x69\x73\x20\x63\x68\x6f\x6f\x73\x65\x64\x2c\x20\ -\x79\x6f\x75\x20\x6d\x75\x73\x74\x20\x63\x68\x6f\x6f\x73\x65\x20\ -\x61\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\ -\x66\x69\x6c\x65\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\ -\x61\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6f\x6e\x20\x74\x61\ -\x62\x6c\x65\x20\x74\x68\x61\x74\x20\x77\x69\x6c\x6c\x20\x63\x6f\ -\x6e\x76\x65\x72\x74\x20\x63\x6f\x6c\x6f\x72\x73\x20\x69\x6e\x74\ -\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x73\x2e\x0a\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\xfc\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\ -\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6f\ -\x00\x72\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x74\x00\x69\ -\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\ -\x00\x65\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\ -\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\ -\x00\x73\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x74\ -\x00\x68\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x64\x00\x69\x00\x6d\ -\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\ -\x00\x61\x00\x72\x00\x65\x00\x20\x00\x76\x00\x65\x00\x72\x00\x74\ -\x00\x69\x00\x63\x00\x61\x00\x6c\x00\x2e\x00\x20\x00\x44\x00\x65\ -\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x69\x00\x73\ -\x00\x20\x00\x6c\x00\x65\x00\x66\x00\x74\x00\x2c\x00\x20\x00\x77\ -\x00\x68\x00\x69\x00\x63\x00\x68\x00\x20\x00\x69\x00\x73\x00\x20\ -\x00\x74\x00\x68\x00\x65\x00\x20\x00\x49\x00\x53\x00\x4f\x00\x20\ -\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\ -\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7e\x54\x68\x69\x73\ -\x20\x69\x73\x20\x74\x68\x65\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\ -\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x64\x69\x6d\x65\x6e\ -\x73\x69\x6f\x6e\x20\x74\x65\x78\x74\x73\x20\x77\x68\x65\x6e\x20\ -\x74\x68\x6f\x73\x65\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\ -\x20\x61\x72\x65\x20\x76\x65\x72\x74\x69\x63\x61\x6c\x2e\x20\x44\ -\x65\x66\x61\x75\x6c\x74\x20\x69\x73\x20\x6c\x65\x66\x74\x2c\x20\ -\x77\x68\x69\x63\x68\x20\x69\x73\x20\x74\x68\x65\x20\x49\x53\x4f\ -\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x2e\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\xf6\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\ -\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6c\ -\x00\x75\x00\x65\x00\x20\x00\x75\x00\x73\x00\x65\x00\x64\x00\x20\ -\x00\x62\x00\x79\x00\x20\x00\x66\x00\x75\x00\x6e\x00\x63\x00\x74\ -\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x74\x00\x68\x00\x61\ -\x00\x74\x00\x20\x00\x75\x00\x73\x00\x65\x00\x20\x00\x61\x00\x20\ -\x00\x74\x00\x6f\x00\x6c\x00\x65\x00\x72\x00\x61\x00\x6e\x00\x63\ -\x00\x65\x00\x2e\x00\x0a\x00\x56\x00\x61\x00\x6c\x00\x75\x00\x65\ -\x00\x73\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x64\ -\x00\x69\x00\x66\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x63\ -\x00\x65\x00\x73\x00\x20\x00\x62\x00\x65\x00\x6c\x00\x6f\x00\x77\ -\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x76\x00\x61\ -\x00\x6c\x00\x75\x00\x65\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\ -\x00\x20\x00\x62\x00\x65\x00\x20\x00\x74\x00\x72\x00\x65\x00\x61\ -\x00\x74\x00\x65\x00\x64\x00\x20\x00\x61\x00\x73\x00\x20\x00\x73\ -\x00\x61\x00\x6d\x00\x65\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x7b\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x76\x61\ -\x6c\x75\x65\x20\x75\x73\x65\x64\x20\x62\x79\x20\x66\x75\x6e\x63\ -\x74\x69\x6f\x6e\x73\x20\x74\x68\x61\x74\x20\x75\x73\x65\x20\x61\ -\x20\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x2e\x0a\x56\x61\x6c\x75\ -\x65\x73\x20\x77\x69\x74\x68\x20\x64\x69\x66\x66\x65\x72\x65\x6e\ -\x63\x65\x73\x20\x62\x65\x6c\x6f\x77\x20\x74\x68\x69\x73\x20\x76\ -\x61\x6c\x75\x65\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x74\x72\x65\ -\x61\x74\x65\x64\x20\x61\x73\x20\x73\x61\x6d\x65\x2e\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x14\x00\x54\x00\x6f\x00\x6c\x00\x65\x00\x72\x00\ -\x61\x00\x6e\x00\x63\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x09\x54\x6f\x6c\x65\x72\x61\x6e\x63\x65\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x1c\x00\x50\x00\x61\x00\x73\x00\x65\x00\x6b\x00\x20\ -\x00\x6e\x00\x61\x00\x72\x00\x7a\x01\x19\x00\x64\x00\x7a\x00\x69\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x54\x6f\x6f\x6c\x62\x61\ -\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x52\x00\x55\x01\x7c\x00\x79\x00\ -\x6a\x00\x20\x00\x64\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\ -\x6e\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x6b\x00\x6f\x00\x6c\x00\ -\x6f\x00\x72\x00\x75\x00\x20\x00\x69\x00\x20\x00\x73\x00\x7a\x00\ -\x65\x00\x72\x00\x6f\x00\x6b\x00\x6f\x01\x5b\x00\x63\x00\x69\x00\ -\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x69\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x1f\x55\x73\x65\x20\x64\x65\x66\x61\x75\x6c\x74\ -\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\ -\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x55\x00\x73\ -\x00\x65\x00\x20\x00\x67\x00\x72\x00\x69\x00\x64\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x08\x55\x73\x65\x20\x67\x72\x69\x64\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x48\x00\x56\x00\x65\x00\x72\x00\x74\x00\x69\ -\x00\x63\x00\x61\x00\x6c\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\ -\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x74\ -\x00\x65\x00\x78\x00\x74\x00\x20\x00\x6f\x00\x72\x00\x69\x00\x65\ -\x00\x6e\x00\x74\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x24\x56\x65\x72\x74\x69\x63\x61\x6c\ -\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x74\x65\x78\x74\ -\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x01\xb4\x00\x50\x00\x6f\x00\x64\x00\x63\x00\x7a\x00\x61\ -\x00\x73\x00\x20\x00\x65\x00\x6b\x00\x73\x00\x70\x00\x6f\x00\x72\ -\x00\x74\x00\x75\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x44\x00\x58\ -\x00\x46\x00\x20\x00\x53\x00\x70\x00\x6c\x00\x61\x00\x6a\x00\x6e\ -\x00\x79\x00\x20\x00\x7a\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x6e\ -\x01\x05\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x65\x00\x6b\x00\x6f\ -\x00\x6e\x00\x77\x00\x65\x00\x72\x00\x74\x00\x6f\x00\x77\x00\x61\ -\x00\x6e\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x70\x00\x6f\ -\x00\x6c\x00\x69\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x69\x00\x2e\ -\x00\x20\x00\x50\x00\x6f\x00\x64\x00\x61\x00\x6e\x00\x61\x00\x20\ -\x00\x77\x00\x61\x00\x72\x00\x74\x00\x6f\x01\x5b\x01\x07\x00\x20\ -\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x20\x00\x6d\x00\x61\x00\x78\ -\x00\x2e\x00\x20\x00\x64\x01\x42\x00\x75\x00\x67\x00\x6f\x01\x5b\ -\x00\x63\x00\x69\x01\x05\x00\x20\x00\x6b\x00\x61\x01\x7c\x00\x64\ -\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\ -\x00\x65\x00\x6e\x00\x74\x00\x75\x00\x20\x00\x70\x00\x6f\x00\x6c\ -\x00\x69\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x69\x00\x2e\x00\x20\ -\x00\x4a\x00\x65\x01\x5b\x00\x6c\x00\x69\x00\x20\x00\x77\x00\x61\ -\x00\x72\x00\x74\x00\x6f\x01\x5b\x01\x07\x00\x20\x00\x77\x00\x79\ -\x00\x6e\x00\x6f\x00\x73\x00\x69\x00\x20\x00\x27\x00\x30\x00\x27\ -\x00\x2c\x00\x20\x00\x63\x00\x61\x01\x42\x00\x61\x00\x20\x00\x70\ -\x00\x6f\x00\x6c\x00\x69\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x61\ -\x00\x20\x00\x62\x01\x19\x00\x64\x00\x7a\x00\x69\x00\x65\x00\x20\ -\x00\x74\x00\x72\x00\x61\x00\x6b\x00\x74\x00\x6f\x00\x77\x00\x61\ -\x00\x6e\x00\x61\x00\x20\x00\x6a\x00\x61\x00\x6b\x00\x6f\x00\x20\ -\x00\x70\x00\x6f\x00\x6a\x00\x65\x00\x64\x00\x79\x00\x6e\x00\x63\ -\x00\x7a\x00\x79\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\ -\x00\x6e\x00\x74\x00\x2e\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\xc2\x57\x68\x65\x6e\x20\x65\x78\x70\x6f\x72\x74\x69\x6e\x67\ -\x20\x73\x70\x6c\x69\x6e\x65\x73\x20\x74\x6f\x20\x44\x58\x46\x2c\ -\x20\x74\x68\x65\x79\x20\x61\x72\x65\x20\x74\x72\x61\x6e\x73\x66\ -\x6f\x72\x6d\x65\x64\x20\x69\x6e\x20\x70\x6f\x6c\x79\x6c\x69\x6e\ -\x65\x73\x2e\x20\x54\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x69\ -\x73\x20\x74\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6c\x65\ -\x6e\x67\x74\x68\x20\x6f\x66\x20\x65\x61\x63\x68\x20\x6f\x66\x20\ -\x74\x68\x65\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\x20\x73\x65\x67\ -\x6d\x65\x6e\x74\x73\x2e\x20\x49\x66\x20\x30\x2c\x20\x74\x68\x65\ -\x6e\x20\x74\x68\x65\x20\x77\x68\x6f\x6c\x65\x20\x73\x70\x6c\x69\ -\x6e\x65\x20\x69\x73\x20\x74\x72\x65\x61\x74\x65\x64\x20\x61\x73\ -\x20\x61\x20\x73\x74\x72\x61\x69\x67\x68\x74\x20\x73\x65\x67\x6d\ -\x65\x6e\x74\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x58\x00\x59\ -\x00\x20\x00\x28\x00\x67\x00\xf3\x00\x72\x00\x61\x00\x29\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x08\x58\x59\x20\x28\x54\x6f\x70\x29\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x14\x00\x58\x00\x5a\x00\x20\x00\x28\ -\x00\x70\x00\x72\x00\x7a\x00\xf3\x00\x64\x00\x29\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0a\x58\x5a\x20\x28\x46\x72\x6f\x6e\x74\x29\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x16\x00\x59\x00\x5a\x00\x20\x00\x28\ -\x00\x73\x00\x74\x00\x72\x00\x6f\x00\x6e\x00\x61\x00\x29\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x09\x59\x5a\x20\x28\x53\x69\x64\x65\ -\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x06\x00\x41\x00\x4c\x00\x54\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x03\x61\x6c\x74\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x9e\x00\x5a\x00\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\ -\x00\x7a\x00\x2c\x00\x20\x00\x6a\x00\x65\x01\x5b\x00\x6c\x00\x69\ -\x00\x20\x00\x63\x00\x68\x00\x63\x00\x65\x00\x73\x00\x7a\x00\x20\ -\x00\x75\x01\x7c\x00\x79\x01\x07\x00\x20\x00\x6a\x00\x61\x00\x6b\ -\x00\x6f\x00\x20\x00\x64\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\ -\x00\x6e\x00\x79\x00\x20\x00\x6b\x00\x6f\x00\x6c\x00\x6f\x00\x72\ -\x00\x2f\x00\x73\x00\x7a\x00\x65\x00\x72\x00\x6f\x00\x6b\x00\x6f\ -\x01\x5b\x01\x07\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x69\ -\x00\x20\x00\x7a\x00\x20\x00\x70\x00\x61\x00\x73\x00\x6b\x00\x61\ -\x00\x20\x00\x6e\x00\x61\x00\x72\x00\x7a\x01\x19\x00\x64\x00\x7a\ -\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x63\x68\x65\x63\ -\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x79\x6f\x75\x20\x77\x61\ -\x6e\x74\x20\x74\x6f\x20\x75\x73\x65\x20\x74\x68\x65\x20\x63\x6f\ -\x6c\x6f\x72\x2f\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\x66\x72\ -\x6f\x6d\x20\x74\x68\x65\x20\x74\x6f\x6f\x6c\x62\x61\x72\x20\x61\ -\x73\x20\x64\x65\x66\x61\x75\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x08\x00\x43\x00\x54\x00\x52\x00\x4c\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x04\x63\x74\x72\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x26\x00\ -\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ -\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\ -\x65\x00\x64\x00\x2c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x63\x00\x74\x00\x73\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ -\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x61\x00\x6d\x00\ -\x65\x00\x20\x00\x6c\x00\x61\x00\x79\x00\x65\x00\x72\x00\x73\x00\ -\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\ -\x20\x00\x6a\x00\x6f\x00\x69\x00\x6e\x00\x65\x00\x64\x00\x20\x00\ -\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x44\x00\x72\x00\x61\x00\ -\x66\x00\x74\x00\x20\x00\x42\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\ -\x73\x00\x2c\x00\x20\x00\x74\x00\x75\x00\x72\x00\x6e\x00\x69\x00\ -\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\ -\x69\x00\x73\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x20\x00\x66\x00\ -\x61\x00\x73\x00\x74\x00\x65\x00\x72\x00\x2c\x00\x20\x00\x62\x00\ -\x75\x00\x74\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\ -\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x20\x00\x6c\x00\ -\x65\x00\x73\x00\x73\x00\x20\x00\x65\x00\x61\x00\x73\x00\x69\x00\ -\x6c\x00\x79\x00\x20\x00\x65\x00\x64\x00\x69\x00\x74\x00\x61\x00\ -\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x93\x69\ -\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\ -\x64\x2c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x72\x6f\x6d\x20\ -\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x6c\x61\x79\x65\x72\x73\x20\ -\x77\x69\x6c\x6c\x20\x62\x65\x20\x6a\x6f\x69\x6e\x65\x64\x20\x69\ -\x6e\x74\x6f\x20\x44\x72\x61\x66\x74\x20\x42\x6c\x6f\x63\x6b\x73\ -\x2c\x20\x74\x75\x72\x6e\x69\x6e\x67\x20\x74\x68\x65\x20\x64\x69\ -\x73\x70\x6c\x61\x79\x20\x66\x61\x73\x74\x65\x72\x2c\x20\x62\x75\ -\x74\x20\x6d\x61\x6b\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\x6c\x65\ -\x73\x73\x20\x65\x61\x73\x69\x6c\x79\x20\x65\x64\x69\x74\x61\x62\ -\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x92\x00\x4a\x00\x65\x01\x5b\ -\x00\x6c\x00\x69\x00\x20\x00\x7a\x00\x61\x00\x7a\x00\x6e\x00\x61\ -\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x6f\x00\x2c\x00\x20\x00\x7a\ -\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x6e\x01\x05\x00\x20\x00\x72\ -\x00\xf3\x00\x77\x00\x6e\x00\x69\x00\x65\x01\x7c\x00\x20\x00\x7a\ -\x00\x61\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x6f\ -\x00\x77\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x69\ -\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x20\x00\x7a\x00\x20\x00\x6f\ -\x00\x62\x00\x73\x00\x7a\x00\x61\x00\x72\x00\x75\x00\x20\x00\x70\ -\x00\x61\x00\x70\x00\x69\x00\x65\x00\x72\x00\x75\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x3c\x69\x66\x20\x74\x68\x69\x73\x20\x69\x73\ -\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x70\x61\x70\x65\x72\x20\ -\x73\x70\x61\x63\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\ -\x6c\x6c\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\ -\x6f\x6f\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x86\x00\x6a\x00\x65\x01\x5b\ -\x00\x6c\x00\x69\x00\x20\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x20\ -\x00\x74\x00\x6f\x00\x20\x00\x6f\x00\x64\x00\x7a\x00\x6e\x00\x61\ -\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x65\x00\x2c\x00\x20\x00\x74\ -\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x79\x00\x20\x00\x2f\x00\x20\ -\x00\x6d\x00\x74\x00\x65\x00\x78\x00\x74\x00\x73\x00\x20\x00\x6e\ -\x00\x69\x00\x65\x00\x20\x00\x7a\x00\x6f\x00\x73\x00\x74\x00\x61\ -\x00\x6e\x01\x05\x00\x20\x00\x7a\x00\x61\x00\x69\x00\x6d\x00\x70\ -\x00\x6f\x00\x72\x00\x74\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x65\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x69\x66\x20\x74\x68\x69\ -\x73\x20\x69\x73\x20\x75\x6e\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\ -\x74\x65\x78\x74\x73\x2f\x6d\x74\x65\x78\x74\x73\x20\x77\x6f\x6e\ -\x27\x74\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x04\x00\x70\x00\x78\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x02\x70\x78\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x53\ -\x00\x48\x00\x49\x00\x46\x00\x54\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x05\x73\x68\x69\x66\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\x00\ -\x64\x00\x6f\x00\x6d\x00\x79\x01\x5b\x00\x6c\x00\x6e\x00\x79\x00\ -\x20\x00\x6b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x64\x00\ -\x6c\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x77\x00\x79\x00\x63\x00\ -\x68\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\ -\xf3\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x74\x68\x65\ -\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\ -\x6f\x72\x20\x6e\x65\x77\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x4e\x00\x44\x00\x6f\x00\x6d\x00\x79\x01\x5b\ -\x00\x6c\x00\x6e\x00\x79\x00\x20\x00\x6b\x00\x6f\x00\x6c\x00\x6f\ -\x00\x72\x00\x20\x00\x64\x00\x6c\x00\x61\x00\x20\x00\x70\x00\x72\ -\x00\x7a\x00\x79\x00\x63\x00\x69\x01\x05\x00\x67\x00\x61\x00\x6e\ -\x00\x69\x00\x61\x00\x20\x00\x73\x00\x79\x00\x6d\x00\x62\x00\x6f\ -\x00\x6c\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x74\x68\ -\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\ -\x66\x6f\x72\x20\x73\x6e\x61\x70\x20\x73\x79\x6d\x62\x6f\x6c\x73\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x58\x00\x44\x00\x6f\x00\x6d\x00\x79\ -\x01\x5b\x00\x6c\x00\x6e\x00\x61\x00\x20\x00\x73\x00\x7a\x00\x65\ -\x00\x72\x00\x6f\x00\x6b\x00\x6f\x01\x5b\x01\x07\x00\x20\x00\x6c\ -\x00\x69\x00\x6e\x00\x69\x00\x69\x00\x20\x00\x64\x00\x6c\x00\x61\ -\x00\x20\x00\x6e\x00\x6f\x00\x77\x00\x79\x00\x63\x00\x68\x00\x20\ -\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\xf3\x00\x77\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x25\x74\x68\x65\x20\x64\x65\ -\x66\x61\x75\x6c\x74\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\ -\x66\x6f\x72\x20\x6e\x65\x77\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x0e\x00\x5a\x00\x61\x00\x6d\x00\x6b\x00\ -\x6e\x00\x69\x00\x6a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x26\ -\x43\x6c\x6f\x73\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x24\x00\x5a\x00\x61\x00\x6d\x00\x6b\x00\x6e\x00\ -\x69\x01\x19\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x7a\x00\x6b\x00\ -\x69\x00\x65\x00\x6c\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x09\x26\x43\x6f\x6e\x74\x69\x6e\x75\x65\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x4b\x00\x6f\ -\x00\x70\x00\x69\x00\x75\x00\x6a\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x05\x26\x43\x6f\x70\x79\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x10\x00\x26\x00\x5a\x00\x61\x00\x6b\x00\ -\x6f\x01\x44\x00\x63\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x07\x26\x46\x69\x6e\x69\x73\x68\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x22\x00\x26\x00\x4f\x00\x43\x00\x43\ -\x00\x2d\x00\x73\x00\x74\x00\x79\x00\x6c\x00\x65\x00\x20\x00\x6f\ -\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x11\x26\x4f\x43\x43\x2d\x73\x74\x79\x6c\x65\x20\x6f\ -\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x12\x00\x26\x00\x52\x00\x65\x00\x6c\x00\x61\x00\ -\x74\x00\x69\x00\x76\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x09\x26\x52\x65\x6c\x61\x74\x69\x76\x65\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x43\x00\x6f\x00\x66\ -\x00\x6e\x00\x69\x00\x6a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ -\x26\x55\x6e\x64\x6f\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x0c\x00\x26\x00\x57\x00\x79\x00\x6d\x00\x61\x01\ -\x7c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x57\x69\x70\x65\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\ -\x00\x41\x00\x6b\x00\x74\x00\x79\x00\x77\x00\x6e\x00\x65\x00\x20\ -\x00\x70\x00\x6f\x00\x6c\x00\x65\x00\x63\x00\x65\x00\x6e\x00\x69\ -\x00\x65\x00\x20\x00\x6b\x00\x72\x00\x65\x01\x5b\x00\x6c\x00\x61\ -\x00\x72\x00\x73\x00\x6b\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x14\x41\x63\x74\x69\x76\x65\x20\x44\x72\x61\x66\x74\ -\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x6c\x00\x41\x00\x6b\x00\x74\x00\x79\ -\x00\x77\x00\x6e\x00\x79\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\ -\x00\x6b\x00\x74\x00\x20\x00\x6d\x00\x75\x00\x73\x00\x69\x00\x20\ -\x00\x70\x00\x6f\x00\x73\x00\x69\x00\x61\x00\x64\x00\x61\x01\x07\ -\x00\x20\x00\x77\x00\x69\x01\x19\x00\x63\x00\x65\x00\x6a\x00\x20\ -\x00\x6e\x00\x69\x01\x7c\x00\x20\x00\x32\x00\x20\x00\x70\x00\x75\ -\x00\x6e\x00\x6b\x00\x74\x00\x79\x00\x2f\x00\x77\x01\x19\x00\x7a\ -\x01\x42\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x41\x63\ -\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x6d\x75\x73\x74\ -\x20\x68\x61\x76\x65\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\ -\x74\x77\x6f\x20\x70\x6f\x69\x6e\x74\x73\x2f\x6e\x6f\x64\x65\x73\ -\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x42\x00\x44\x00\x6f\x00\x64\x00\x61\x00\x6a\x00\x20\x00\x70\x00\ -\x75\x00\x6e\x00\x6b\x00\x74\x00\x79\x00\x20\x00\x64\x00\x6f\x00\ -\x20\x00\x61\x00\x6b\x00\x74\x00\x79\x00\x77\x00\x6e\x00\x65\x00\ -\x67\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\ -\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x41\x64\x64\ -\x20\x70\x6f\x69\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x63\ -\x75\x72\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x41\x00\ -\x70\x00\x65\x00\x72\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x08\x41\x70\x65\x72\x74\x75\x72\x65\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\ -\x41\x00\x70\x00\x65\x00\x72\x00\x74\x00\x75\x00\x72\x00\x65\x00\ -\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x3a\x00\x0a\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x10\x41\x70\x65\x72\x74\x75\x72\ -\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x00\x5a\x00\x61\x00\x73\x00\ -\x74\x00\x6f\x00\x73\x00\x75\x00\x6a\x00\x20\x00\x64\x00\x6f\x00\ -\x20\x00\x77\x00\x79\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x79\x00\ -\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\ -\x74\x00\xf3\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x41\ -\x70\x70\x6c\x79\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ -\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x06\x01\x41\x00\x75\x00\x6b\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x03\x41\x72\x63\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x4e\x00\x69\x00\ -\x65\x00\x20\x00\x6d\x00\x6f\x01\x7c\x00\x6e\x00\x61\x00\x20\x00\ -\x6f\x00\x64\x00\x73\x00\x75\x00\x6e\x01\x05\x01\x07\x00\x20\x00\ -\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x20\x00\ -\x74\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x74\x00\x79\x00\x70\x00\ -\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x43\x61\x6e\x6e\x6f\ -\x74\x20\x6f\x66\x66\x73\x65\x74\x20\x74\x68\x69\x73\x20\x6f\x62\ -\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x01\x5a\x00\x72\x00\x6f\ -\x00\x64\x00\x65\x00\x6b\x00\x20\x00\x58\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x08\x43\x65\x6e\x74\x65\x72\x20\x58\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x5a\x00\x6d\ -\x00\x69\x00\x61\x00\x6e\x00\x61\x00\x20\x00\x53\x00\x74\x00\x79\ -\x00\x6c\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x68\ -\x61\x6e\x67\x65\x20\x53\x74\x79\x6c\x65\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\xb6\x00\x43\x00\x68\x00\x65\ -\x00\x63\x00\x6b\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ -\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6f\ -\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x73\x00\x68\ -\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x20\x00\x61\x00\x70\x00\x70\ -\x00\x65\x00\x61\x00\x72\x00\x20\x00\x61\x00\x73\x00\x20\x00\x66\ -\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x6f\ -\x00\x74\x00\x68\x00\x65\x00\x72\x00\x77\x00\x69\x00\x73\x00\x65\ -\x00\x20\x00\x69\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\ -\x00\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\x20\ -\x00\x61\x00\x73\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x66\ -\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x28\x00\x69\x00\x29\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5b\x43\x68\x65\x63\x6b\x20\ -\x74\x68\x69\x73\x20\x69\x66\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\ -\x63\x74\x20\x73\x68\x6f\x75\x6c\x64\x20\x61\x70\x70\x65\x61\x72\ -\x20\x61\x73\x20\x66\x69\x6c\x6c\x65\x64\x2c\x20\x6f\x74\x68\x65\ -\x72\x77\x69\x73\x65\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x61\x70\ -\x70\x65\x61\x72\x20\x61\x73\x20\x77\x69\x72\x65\x66\x72\x61\x6d\ -\x65\x20\x28\x69\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x0a\x00\x4f\x00\x6b\x00\x72\x01\x05\x00\x67\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\x69\x72\x63\x6c\x65\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x8a\x00\ -\x57\x00\x73\x00\x70\x00\xf3\x01\x42\x00\x72\x00\x7a\x01\x19\x00\ -\x64\x00\x6e\x00\x65\x00\x20\x00\x77\x00\x20\x00\x73\x00\x74\x00\ -\x6f\x00\x73\x00\x75\x00\x6e\x00\x6b\x00\x75\x00\x20\x00\x64\x00\ -\x6f\x00\x20\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x74\x00\x6e\x00\ -\x69\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x70\x00\x75\x00\x6e\x00\ -\x6b\x00\x74\x00\x75\x00\x20\x00\x6c\x00\x75\x00\x62\x00\x20\x00\ -\x62\x00\x65\x00\x7a\x00\x77\x00\x7a\x00\x67\x00\x6c\x01\x19\x00\ -\x64\x00\x6e\x00\x65\x00\x6a\x00\x20\x00\x28\x00\x53\x00\x50\x00\ -\x41\x00\x43\x00\x4a\x00\x41\x00\x29\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x36\x43\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x73\x20\x72\ -\x65\x6c\x61\x74\x69\x76\x65\x20\x74\x6f\x20\x6c\x61\x73\x74\x20\ -\x70\x6f\x69\x6e\x74\x20\x6f\x72\x20\x61\x62\x73\x6f\x6c\x75\x74\ -\x65\x20\x28\x53\x50\x41\x43\x45\x29\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x4b\x00\x6f\x00\x70\x00\ -\x69\x00\x75\x00\x6a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x43\ -\x6f\x70\x79\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x14\x00\x55\x00\x74\x00\x77\x00\xf3\x00\x72\x00\x7a\x00\ -\x20\x01\x41\x00\x75\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0a\x43\x72\x65\x61\x74\x65\x20\x41\x72\x63\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x55\x00\x74\x00\ -\x77\x00\xf3\x00\x72\x00\x7a\x00\x20\x00\x42\x00\x2d\x00\x53\x00\ -\x70\x00\x6c\x00\x61\x00\x6a\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0e\x43\x72\x65\x61\x74\x65\x20\x42\x53\x70\x6c\x69\x6e\ -\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x18\x00\x55\x00\x74\x00\x77\x00\xf3\x00\x72\x00\x7a\x00\x20\x00\ -\x4f\x00\x6b\x00\x72\x01\x05\x00\x67\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0d\x43\x72\x65\x61\x74\x65\x20\x43\x69\x72\x63\x6c\x65\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\ -\x00\x55\x00\x74\x00\x77\x00\xf3\x00\x72\x00\x7a\x00\x20\x00\x57\ -\x00\x79\x00\x6d\x00\x69\x00\x61\x00\x72\x00\x6f\x00\x77\x00\x61\ -\x00\x6e\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ -\x43\x72\x65\x61\x74\x65\x20\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\ -\x00\x55\x00\x74\x00\x77\x00\xf3\x00\x72\x00\x7a\x00\x20\x00\x57\ -\x00\x69\x00\x65\x00\x6c\x00\x6f\x00\x6b\x01\x05\x00\x74\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0e\x43\x72\x65\x61\x74\x65\x20\x50\ -\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x20\x00\x55\x00\x74\x00\x77\x00\xf3\x00\x72\ -\x00\x7a\x00\x20\x00\x50\x00\x72\x00\x6f\x00\x73\x00\x74\x00\x6f\ -\x00\x6b\x01\x05\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ -\x43\x72\x65\x61\x74\x65\x20\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\ -\x00\x55\x00\x74\x00\x77\x00\xf3\x00\x72\x00\x7a\x00\x20\x00\x54\ -\x00\x65\x00\x6b\x00\x73\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x54\x65\x78\x74\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x55\x00\ -\x74\x00\x77\x00\xf3\x00\x72\x00\x7a\x00\x20\x00\x53\x00\x7a\x00\ -\x6b\x00\x69\x00\x65\x00\x6c\x00\x65\x00\x74\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x57\x69\x72\x65\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\ -\x00\x44\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x20\x00\x4d\ -\x00\x65\x00\x61\x00\x73\x00\x75\x00\x72\x00\x65\x00\x6d\x00\x65\ -\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x44\x65\ -\x6c\x65\x74\x65\x20\x4d\x65\x61\x73\x75\x72\x65\x6d\x65\x6e\x74\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\ -\x00\x44\x00\x69\x00\x73\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x20\ -\x00\x6f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0f\x44\x69\x73\x70\x6c\x61\x79\x20\ -\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x12\x00\x4f\x00\x64\x00\x6c\x00\x65\x00\ -\x67\x01\x42\x00\x6f\x01\x5b\x01\x07\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x52\x00\x4e\x00\x69\x00\ -\x65\x00\x20\x00\x72\x00\x7a\x00\x75\x00\x74\x00\x75\x00\x6a\x00\ -\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\xf3\x00\x77\x00\ -\x20\x00\x6e\x00\x61\x00\x20\x00\x70\x01\x42\x00\x61\x00\x73\x00\ -\x7a\x00\x63\x00\x7a\x00\x79\x00\x7a\x00\x6e\x01\x19\x00\x20\x00\ -\x72\x00\x79\x00\x73\x00\x75\x00\x6e\x00\x6b\x00\x75\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x28\x44\x6f\x20\x6e\x6f\x74\x20\x70\x72\ -\x6f\x6a\x65\x63\x74\x20\x70\x6f\x69\x6e\x74\x73\x20\x74\x6f\x20\ -\x61\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\ -\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x05\x44\x72\x61\x66\x74\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x16\x00\x44\x00\x72\x00\x61\x00\x66\ -\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x20\x74\x6f\ -\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x3a\x00\x4b\x00\x72\x00\x61\x00\x77\x01\x19\x00\x64\x00\ -\x7a\x00\x69\x00\x65\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x20\x00\ -\x70\x00\x72\x00\x7a\x00\x65\x00\x63\x00\x69\x00\x6e\x00\x61\x00\ -\x6a\x01\x05\x00\x20\x00\x73\x00\x69\x01\x19\x00\x21\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x17\x45\x64\x67\x65\x73\x20\x64\x6f\x6e\ -\x27\x74\x20\x69\x6e\x74\x65\x72\x73\x65\x63\x74\x21\x0a\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x45\ -\x00\x64\x00\x79\x00\x74\x00\x75\x00\x6a\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x16\x00\x57\x00\x26\x00\x79\x00\x70\ -\x00\x65\x01\x42\x00\x6e\x00\x69\x00\x6f\x00\x6e\x00\x65\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x07\x46\x26\x69\x6c\x6c\x65\x64\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\ -\x4b\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x6f\x00\ -\x77\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x63\x00\x68\x00\x6e\x00\ -\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x46\x61\x63\x65\x20\ -\x43\x6f\x6c\x6f\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x46\x00\x5a\x00\x61\x00\x6b\x00\x61\x01\x44\x00\ -\x63\x00\x7a\x00\x61\x00\x20\x00\x69\x00\x20\x00\x7a\x00\x61\x00\ -\x6d\x00\x79\x00\x6b\x00\x61\x00\x20\x00\x62\x00\x69\x00\x65\x01\ -\x7c\x01\x05\x00\x63\x01\x05\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\ -\x69\x01\x19\x00\x20\x00\x28\x00\x43\x00\x29\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x28\x46\x69\x6e\x69\x73\x68\x65\x73\x20\x61\x6e\ -\x64\x20\x63\x6c\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x63\x75\x72\ -\x72\x65\x6e\x74\x20\x6c\x69\x6e\x65\x20\x28\x43\x29\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6a\x00\x46\x00\ -\x69\x00\x6e\x00\x69\x00\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\ -\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\ -\x65\x00\x6e\x00\x74\x00\x20\x00\x64\x00\x72\x00\x61\x00\x77\x00\ -\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x65\x00\ -\x64\x00\x69\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\ -\x70\x00\x65\x00\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ -\x20\x00\x28\x00\x46\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x35\x46\x69\x6e\x69\x73\x68\x65\x73\x20\x74\x68\x65\x20\x63\x75\ -\x72\x72\x65\x6e\x74\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x6f\x72\ -\x20\x65\x64\x69\x74\x69\x6e\x67\x20\x6f\x70\x65\x72\x61\x74\x69\ -\x6f\x6e\x20\x28\x46\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x20\x00\x52\x00\x6f\x00\x7a\x00\x6d\x00\x69\ -\x00\x61\x00\x72\x00\x20\x00\x43\x00\x7a\x00\x63\x00\x69\x00\x6f\ -\x00\x6e\x00\x6b\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ -\x46\x6f\x6e\x74\x20\x53\x69\x7a\x65\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x6c\x00\x5a\x00\x6e\x00\x61\x00\ -\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\ -\x31\x00\x20\x00\x7a\x00\x61\x00\x6d\x00\x6b\x00\x6e\x00\x69\x01\ -\x19\x00\x74\x00\x79\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\ -\x6b\x00\x74\x00\x20\x00\x53\x00\x7a\x00\x6b\x00\x69\x00\x63\x00\ -\x3a\x00\x20\x00\x74\x00\x77\x00\x6f\x00\x72\x00\x7a\x00\x65\x00\ -\x6e\x00\x69\x00\x65\x00\x20\x00\x66\x00\x61\x00\x73\x00\x65\x00\ -\x74\x00\x6b\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x46\ -\x6f\x75\x6e\x64\x20\x31\x20\x63\x6c\x6f\x73\x65\x64\x20\x73\x6b\ -\x65\x74\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x6d\x61\x6b\ -\x69\x6e\x67\x20\x61\x20\x66\x61\x63\x65\x20\x66\x72\x6f\x6d\x20\ -\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x54\x00\x5a\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\x00\ -\x69\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\x31\x00\x20\x00\x66\x00\ -\x61\x00\x73\x00\x65\x00\x74\x00\x6b\x01\x19\x00\x3a\x00\x20\x00\ -\x65\x00\x6b\x00\x73\x00\x74\x00\x72\x00\x61\x00\x6b\x00\x63\x00\ -\x6a\x00\x61\x00\x20\x00\x73\x00\x7a\x00\x6b\x00\x69\x00\x65\x00\ -\x6c\x00\x65\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x23\x46\x6f\x75\x6e\x64\x20\x31\x20\x66\x61\x63\x65\x3a\x20\x65\ -\x78\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x69\x74\x73\x20\x77\x69\ -\x72\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x62\x00\x5a\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\ -\x00\x69\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\x31\x00\x20\x00\x6f\ -\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x6e\x00\x69\ -\x00\x65\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\ -\x00\x72\x00\x79\x00\x63\x00\x7a\x00\x6e\x00\x79\x00\x3a\x00\x20\ -\x00\x64\x00\x72\x00\x61\x00\x66\x00\x74\x00\x79\x00\x66\x00\x79\ -\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2f\ -\x46\x6f\x75\x6e\x64\x20\x31\x20\x6e\x6f\x6e\x2d\x70\x61\x72\x61\ -\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\ -\x64\x72\x61\x66\x74\x69\x66\x79\x69\x6e\x67\x20\x69\x74\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x50\x00\ -\x5a\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\ -\x6e\x00\x6f\x00\x20\x00\x31\x00\x20\x00\x6f\x00\x74\x00\x77\x00\ -\x61\x00\x72\x00\x74\x00\x79\x00\x20\x00\x73\x00\x7a\x00\x6b\x00\ -\x69\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x3a\x00\x20\x00\x7a\x00\ -\x61\x00\x6d\x00\x79\x00\x6b\x00\x61\x00\x6e\x00\x69\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x46\x6f\x75\x6e\x64\x20\x31\ -\x20\x6f\x70\x65\x6e\x20\x77\x69\x72\x65\x3a\x20\x63\x6c\x6f\x73\ -\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x6e\x00\x5a\x00\x6e\x00\x61\x00\x6c\x00\ -\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\x31\x00\ -\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x20\x00\ -\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\ -\x79\x00\x63\x00\x7a\x00\x6e\x00\x79\x00\x3a\x00\x20\x00\x6b\x00\ -\x61\x00\x73\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x65\x00\ -\x20\x00\x7a\x00\x61\x00\x6c\x00\x65\x01\x7c\x00\x6e\x00\x6f\x01\ -\x5b\x00\x63\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x46\ -\x6f\x75\x6e\x64\x20\x31\x20\x70\x61\x72\x61\x6d\x65\x74\x72\x69\ -\x63\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x62\x72\x65\x61\x6b\x69\ -\x6e\x67\x20\x69\x74\x73\x20\x64\x65\x70\x65\x6e\x64\x65\x6e\x63\ -\x69\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x5a\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\ -\x00\x31\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x69\ -\x00\x66\x00\x69\x00\x63\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\ -\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x3a\x00\x20\ -\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x69\x00\x66\x00\x79\ -\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x69\x00\x74\x00\x0a\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x2d\x46\x6f\x75\x6e\x64\x20\x31\x20\ -\x73\x6f\x6c\x69\x64\x69\x66\x69\x63\x61\x62\x6c\x65\x20\x6f\x62\ -\x6a\x65\x63\x74\x3a\x20\x73\x6f\x6c\x69\x64\x69\x66\x79\x69\x6e\ -\x67\x20\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x4e\x00\x5a\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\ -\x7a\x00\x69\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\x32\x00\x20\x00\ -\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x3a\x00\ -\x20\x00\x7a\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x6e\x01\x05\x00\ -\x20\x00\x70\x00\x6f\x01\x42\x01\x05\x00\x63\x00\x7a\x00\x6f\x00\ -\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x46\x6f\x75\ -\x6e\x64\x20\x32\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x66\x75\ -\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x5a\x00\x6e\x00\x61\ -\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x6f\x00\x20\ -\x00\x32\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\ -\x00\x79\x00\x3a\x00\x20\x00\x6f\x00\x64\x00\x65\x00\x6a\x00\x6d\ -\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x65\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x22\x46\x6f\x75\x6e\x64\x20\x32\x20\x6f\x62\ -\x6a\x65\x63\x74\x73\x3a\x20\x73\x75\x62\x74\x72\x61\x63\x74\x69\ -\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x62\x00\x5a\x00\x6e\x00\x61\x00\x6c\ -\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\x7a\ -\x00\x61\x00\x6d\x00\x6b\x00\x6e\x00\x69\x01\x19\x00\x74\x00\x65\ -\x00\x20\x00\x73\x00\x7a\x00\x6b\x00\x69\x00\x65\x00\x6c\x00\x65\ -\x00\x74\x00\x79\x00\x3a\x00\x20\x00\x74\x00\x77\x00\x6f\x00\x72\ -\x00\x7a\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x66\x00\x61\ -\x00\x73\x00\x65\x00\x74\x00\x65\x00\x6b\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x21\x46\x6f\x75\x6e\x64\x20\x63\x6c\x6f\x73\x65\x64\ -\x20\x77\x69\x72\x65\x73\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x66\ -\x61\x63\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x74\x00\x5a\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\ -\x7a\x00\x69\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\x67\x00\x72\x00\ -\x75\x00\x70\x00\x79\x00\x3a\x00\x20\x00\x7a\x00\x61\x00\x6d\x00\ -\x79\x00\x6b\x00\x61\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x6b\x00\ -\x61\x01\x7c\x00\x64\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x6f\x00\ -\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x20\x00\x77\x00\ -\x65\x00\x77\x00\x6e\x01\x05\x00\x74\x00\x72\x00\x7a\x00\x20\x00\ -\x67\x00\x72\x00\x75\x00\x70\x00\x79\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x2e\x46\x6f\x75\x6e\x64\x20\x67\x72\x6f\x75\x70\x73\x3a\ -\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x65\x61\x63\x68\x20\x6f\x70\ -\x65\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x73\x69\x64\x65\ -\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x5e\x00\x5a\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\ -\x6f\x00\x6e\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\ -\x6b\x00\x74\x00\x79\x00\x20\x00\x7a\x00\x61\x00\x77\x00\x69\x00\ -\x65\x00\x72\x00\x61\x00\x6a\x01\x05\x00\x63\x00\x65\x00\x20\x00\ -\x6b\x00\x72\x00\x7a\x00\x79\x00\x77\x00\x65\x00\x3a\x00\x20\x01\ -\x42\x01\x05\x00\x63\x00\x7a\x00\x65\x00\x6e\x00\x69\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x46\x6f\x75\x6e\x64\x20\x6f\ -\x62\x6a\x65\x63\x74\x73\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\ -\x67\x20\x63\x75\x72\x76\x65\x73\x3a\x20\x66\x75\x73\x69\x6e\x67\ -\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x64\x00\x5a\x00\x6e\x00\x61\x00\x6c\x00\x65\ -\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\x77\x00\x79\ -\x01\x42\x01\x05\x00\x63\x00\x7a\x00\x6e\x00\x69\x00\x65\x00\x20\ -\x00\x73\x00\x7a\x00\x6b\x00\x69\x00\x65\x00\x6c\x00\x65\x00\x74\ -\x00\x3a\x00\x20\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x72\x00\x61\ -\x00\x6b\x00\x63\x00\x6a\x00\x61\x00\x20\x00\x6b\x00\x72\x00\x61\ -\x00\x77\x01\x19\x00\x64\x00\x7a\x00\x69\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x29\x46\x6f\x75\x6e\x64\x20\x6f\x6e\x6c\x79\x20\x77\ -\x69\x72\x65\x73\x3a\x20\x65\x78\x74\x72\x61\x63\x74\x69\x6e\x67\ -\x20\x74\x68\x65\x69\x72\x20\x65\x64\x67\x65\x73\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5c\x00\x5a\x00\ -\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\ -\x6f\x00\x20\x00\x6b\x00\x69\x00\x6c\x00\x6b\x00\x61\x00\x20\x00\ -\x6b\x00\x72\x00\x61\x00\x77\x01\x19\x00\x64\x00\x7a\x00\x69\x00\ -\x3a\x00\x20\x01\x42\x01\x05\x00\x63\x00\x7a\x00\x65\x00\x6e\x00\ -\x69\x00\x65\x00\x20\x00\x77\x00\x20\x00\x73\x00\x7a\x00\x6b\x00\ -\x69\x00\x65\x00\x6c\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x21\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\ -\x20\x65\x64\x67\x65\x73\x3a\x20\x77\x69\x72\x69\x6e\x67\x20\x74\ -\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x4a\x00\x5a\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\ -\x00\x69\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\x6b\x00\x69\x00\x6c\ -\x00\x6b\x00\x20\x00\x66\x00\x61\x00\x73\x00\x65\x00\x74\x00\x65\ -\x00\x6b\x00\x3a\x00\x20\x00\x72\x00\x6f\x00\x7a\x00\x64\x00\x7a\ -\x00\x69\x00\x65\x00\x6c\x00\x61\x00\x6e\x00\x69\x00\x65\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x24\x46\x6f\x75\x6e\x64\x20\x73\x65\ -\x76\x65\x72\x61\x6c\x20\x66\x61\x63\x65\x73\x3a\x20\x73\x70\x6c\ -\x69\x74\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x66\x00\x46\x00\x6f\ -\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x65\x00\x76\x00\x65\ -\x00\x72\x00\x61\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\ -\x00\x63\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x63\x00\x74\x00\x65\ -\x00\x64\x00\x20\x00\x65\x00\x64\x00\x67\x00\x65\x00\x73\x00\x3a\ -\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\ -\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x75\x00\x6e\x00\x64\ -\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x46\x6f\x75\x6e\ -\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6e\x6f\x6e\x2d\x63\x6f\ -\x6e\x6e\x65\x63\x74\x65\x64\x20\x65\x64\x67\x65\x73\x3a\x20\x6d\ -\x61\x6b\x69\x6e\x67\x20\x63\x6f\x6d\x70\x6f\x75\x6e\x64\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6a\x00\ -\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x65\x00\ -\x76\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\ -\x6e\x00\x2d\x00\x74\x00\x72\x00\x65\x00\x61\x00\x74\x00\x61\x00\ -\x62\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x63\x00\x74\x00\x73\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\ -\x69\x00\x6e\x00\x67\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\ -\x6f\x00\x75\x00\x6e\x00\x64\x00\x0a\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x35\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\ -\x20\x6e\x6f\x6e\x2d\x74\x72\x65\x61\x74\x61\x62\x6c\x65\x20\x6f\ -\x62\x6a\x65\x63\x74\x73\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x63\ -\x6f\x6d\x70\x6f\x75\x6e\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x80\x00\x5a\x00\x6e\x00\x61\x00\x6c\ -\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\x6f\ -\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x79\x00\x20\x00\x6c\ -\x00\x75\x00\x62\x00\x20\x00\x66\x00\x61\x00\x73\x00\x65\x00\x74\ -\x00\x6b\x00\x69\x00\x3a\x00\x20\x00\x74\x00\x77\x00\x6f\x00\x72\ -\x00\x7a\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x66\x00\x61\ -\x00\x73\x00\x65\x00\x74\x00\x6b\x00\x69\x00\x20\x00\x70\x00\x61\ -\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x79\x00\x63\ -\x00\x7a\x00\x6e\x00\x65\x00\x6a\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x39\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\ -\x6f\x62\x6a\x65\x63\x74\x73\x20\x6f\x72\x20\x66\x61\x63\x65\x73\ -\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x70\x61\x72\x61\x6d\ -\x65\x74\x72\x69\x63\x20\x66\x61\x63\x65\x0a\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x00\x5a\x00\x6e\x00\ -\x61\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x6f\x00\ -\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x79\x00\ -\x3a\x00\x20\x01\x42\x01\x05\x00\x63\x00\x7a\x00\x65\x00\x6e\x00\ -\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x46\x6f\x75\ -\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\ -\x74\x73\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x72\ -\x00\x5a\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\ -\x00\x6e\x00\x6f\x00\x20\x00\x6b\x00\x69\x00\x6c\x00\x6b\x00\x61\ -\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\xf3\ -\x00\x77\x00\x3a\x00\x20\x00\x6f\x00\x64\x00\x65\x00\x6a\x00\x6d\ -\x00\x75\x00\x6a\x01\x19\x00\x20\x00\x6f\x00\x64\x00\x20\x00\x70\ -\x00\x69\x00\x65\x00\x72\x00\x77\x00\x73\x00\x7a\x00\x65\x00\x67\ -\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\ -\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3b\x46\x6f\x75\x6e\ -\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\ -\x73\x3a\x20\x73\x75\x62\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x74\ -\x68\x65\x6d\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x66\x69\x72\ -\x73\x74\x20\x6f\x6e\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x9e\x00\x49\x00\x66\x00\x20\x00\x63\x00\ -\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ -\x61\x00\x6e\x00\x20\x00\x4f\x00\x43\x00\x43\x00\x2d\x00\x73\x00\ -\x74\x00\x79\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x66\x00\ -\x73\x00\x65\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\ -\x20\x00\x62\x00\x65\x00\x20\x00\x70\x00\x65\x00\x72\x00\x66\x00\ -\x6f\x00\x72\x00\x6d\x00\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\ -\x73\x00\x74\x00\x65\x00\x61\x00\x64\x00\x20\x00\x6f\x00\x66\x00\ -\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6c\x00\x61\x00\ -\x73\x00\x73\x00\x69\x00\x63\x00\x20\x00\x6f\x00\x66\x00\x66\x00\ -\x73\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x49\ -\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x6e\x20\x4f\x43\ -\x43\x2d\x73\x74\x79\x6c\x65\x20\x6f\x66\x66\x73\x65\x74\x20\x77\ -\x69\x6c\x6c\x20\x62\x65\x20\x70\x65\x72\x66\x6f\x72\x6d\x65\x64\ -\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x74\x68\x65\x20\ -\x63\x6c\x61\x73\x73\x69\x63\x20\x6f\x66\x66\x73\x65\x74\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x98\x00\x49\ -\x00\x66\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\ -\x00\x64\x00\x2c\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\ -\x00\x6e\x00\x64\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\ -\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x66\x00\x69\x00\x6e\x00\x69\ -\x00\x73\x00\x68\x00\x20\x00\x75\x00\x6e\x00\x74\x00\x69\x00\x6c\ -\x00\x20\x00\x79\x00\x6f\x00\x75\x00\x20\x00\x70\x00\x72\x00\x65\ -\x00\x73\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\ -\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x62\ -\x00\x75\x00\x74\x00\x74\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x67\ -\x00\x61\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4c\ -\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x63\x6f\x6d\x6d\ -\x61\x6e\x64\x20\x77\x69\x6c\x6c\x20\x6e\x6f\x74\x20\x66\x69\x6e\ -\x69\x73\x68\x20\x75\x6e\x74\x69\x6c\x20\x79\x6f\x75\x20\x70\x72\ -\x65\x73\x73\x20\x74\x68\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\ -\x62\x75\x74\x74\x6f\x6e\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x9e\x00\x4a\x00\x65\ -\x01\x5b\x00\x6c\x00\x69\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x65\ -\x00\x20\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x20\x00\x7a\x00\x61\ -\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\x6f\x00\x6e\x00\x65\ -\x00\x2c\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\ -\x00\x79\x00\x20\x00\x7a\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x6e\ -\x01\x05\x00\x20\x00\x73\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x6f\ -\x00\x77\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x7a\x00\x61\x00\x6d\ -\x00\x69\x00\x61\x00\x73\x00\x74\x00\x20\x00\x70\x00\x72\x00\x7a\ -\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x73\x00\x69\x00\x6f\x00\x6e\ -\x00\x65\x00\x20\x00\x28\x00\x43\x00\x29\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x37\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\ -\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\ -\x63\x6f\x70\x69\x65\x64\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\ -\x66\x20\x6d\x6f\x76\x65\x64\x20\x28\x43\x29\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x49\x00\x6e\x00\ -\x73\x00\x74\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x64\x00\x20\x00\ -\x4d\x00\x61\x00\x63\x00\x72\x00\x6f\x00\x73\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x10\x49\x6e\x73\x74\x61\x6c\x6c\x65\x64\x20\x4d\ -\x61\x63\x72\x6f\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x3a\x00\x4f\x00\x73\x00\x74\x00\x61\x00\x74\x00\ -\x6e\x00\x69\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\ -\x20\x00\x7a\x00\x6f\x00\x73\x00\x74\x00\x61\x01\x42\x00\x20\x00\ -\x75\x00\x73\x00\x75\x00\x6e\x00\x69\x01\x19\x00\x74\x00\x79\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x4c\x61\x73\x74\x20\x70\x6f\ -\x69\x6e\x74\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x72\x65\x6d\ -\x6f\x76\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x0a\x00\x4c\x00\x69\x00\x6e\x00\x69\x00\x61\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4c\x69\x6e\x65\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x4b\x00\ -\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\ -\x69\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4c\x69\x6e\ -\x65\x20\x43\x6f\x6c\x6f\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x1e\x00\x53\x00\x7a\x00\x65\x00\x72\x00\ -\x6f\x00\x6b\x00\x6f\x01\x5b\x01\x07\x00\x20\x00\x6c\x00\x69\x00\ -\x6e\x00\x69\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4c\ -\x69\x6e\x65\x20\x57\x69\x64\x74\x68\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x50\x00\x72\x00\x7a\x00\ -\x65\x00\x73\x00\x75\x01\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x04\x4d\x6f\x76\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x0a\x01\x7b\x00\x61\x00\x64\x00\x65\x00\x6e\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x4c\x00\ -\x69\x00\x63\x00\x7a\x00\x62\x00\x61\x00\x20\x00\x62\x00\x6f\x00\ -\x6b\x00\xf3\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4e\ -\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x73\x69\x64\x65\x73\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x4f\ -\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x74\x00\x4f\x00\x66\x00\x66\ -\x00\x73\x00\x65\x00\x74\x00\x20\x00\x64\x00\x7a\x00\x69\x00\x61\ -\x01\x42\x00\x61\x00\x20\x00\x74\x00\x79\x00\x6c\x00\x6b\x00\x6f\ -\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x6a\x00\x65\x00\x64\x00\x6e\ -\x00\x79\x00\x6d\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\ -\x00\x63\x00\x69\x00\x65\x00\x20\x00\x77\x00\x20\x00\x74\x00\x79\ -\x00\x6d\x00\x20\x00\x73\x00\x61\x00\x6d\x00\x79\x00\x6d\x00\x20\ -\x00\x63\x00\x7a\x00\x61\x00\x73\x00\x69\x00\x65\x00\x20\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x2a\x4f\x66\x66\x73\x65\x74\x20\x6f\ -\x6e\x6c\x79\x20\x77\x6f\x72\x6b\x73\x20\x6f\x6e\x20\x6f\x6e\x65\ -\x20\x6f\x62\x6a\x65\x63\x74\x20\x61\x74\x20\x61\x20\x74\x69\x6d\ -\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x1c\x00\x57\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\x00\x7a\ -\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0b\x50\x69\x63\x6b\x20\x4f\x62\x6a\ -\x65\x63\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x74\x00\x57\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\x00\ -\x7a\x00\x20\x00\x70\x00\x6f\x00\x77\x00\x69\x00\x65\x00\x72\x00\ -\x7a\x00\x63\x00\x68\x00\x6e\x00\x69\x01\x19\x00\x20\x00\x64\x00\ -\x6f\x00\x20\x00\x7a\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\ -\x69\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\x00\x61\x00\x20\x00\ -\x70\x01\x42\x00\x61\x00\x73\x00\x7a\x00\x63\x00\x7a\x00\x79\x00\ -\x7a\x00\x6e\x00\x79\x00\x20\x00\x72\x00\x79\x00\x73\x00\x75\x00\ -\x6e\x00\x6b\x00\x75\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x28\x50\x69\x63\x6b\x20\x61\x20\x66\x61\x63\x65\x20\x74\x6f\x20\ -\x64\x65\x66\x69\x6e\x65\x20\x74\x68\x65\x20\x64\x72\x61\x77\x69\ -\x6e\x67\x20\x70\x6c\x61\x6e\x65\x0a\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x50\x00\x69\x00\x63\x00\ -\x6b\x00\x20\x00\x61\x00\x70\x00\x65\x00\x72\x00\x74\x00\x75\x00\ -\x72\x00\x65\x00\x3a\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0f\x50\x69\x63\x6b\x20\x61\x70\x65\x72\x74\x75\x72\x65\x3a\x0a\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\ -\x00\x57\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x20\ -\x00\x70\x00\x6f\x00\x64\x00\x73\x00\x74\x00\x61\x00\x77\x00\x6f\ -\x00\x77\x00\x79\x00\x20\x00\x6b\x01\x05\x00\x74\x00\x20\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\x62\x61\x73\ -\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x57\x00\x79\x00\x62\x00\ -\x69\x00\x65\x00\x72\x00\x7a\x00\x20\x00\x70\x00\x75\x00\x6e\x00\ -\x6b\x00\x74\x00\x20\x00\x62\x00\x61\x00\x7a\x00\x6f\x00\x77\x00\ -\x79\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\ -\x6b\x20\x62\x61\x73\x65\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x57\ -\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x20\x00\x70\ -\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x20\x01\x5b\x00\x72\x00\x6f\ -\x00\x64\x00\x6b\x00\x6f\x00\x77\x00\x79\x00\x20\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x13\x50\x69\x63\x6b\x20\x63\x65\x6e\x74\x65\ -\x72\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x57\x00\x79\x00\x62\x00\ -\x72\x00\x61\x01\x07\x00\x20\x00\x6f\x00\x64\x00\x6c\x00\x65\x00\ -\x67\x01\x42\x00\x6f\x01\x5b\x01\x07\x00\x20\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x0f\x50\x69\x63\x6b\x20\x64\x69\x73\x74\x61\x6e\ -\x63\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x2c\x00\x57\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\ -\x00\x7a\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x20\ -\x00\x6b\x00\x6f\x01\x44\x00\x63\x00\x6f\x00\x77\x00\x79\x00\x20\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x50\x69\x63\x6b\x20\x65\ -\x6e\x64\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x57\x00\x79\x00\x62\ -\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x20\x00\x70\x00\x69\x00\x65\ -\x00\x72\x00\x77\x00\x73\x00\x7a\x00\x79\x00\x20\x00\x70\x00\x75\ -\x00\x6e\x00\x6b\x00\x74\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x12\x50\x69\x63\x6b\x20\x66\x69\x72\x73\x74\x20\x70\x6f\x69\ -\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x36\x00\x57\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\ -\x00\x7a\x00\x20\x00\x6c\x00\x6f\x00\x6b\x00\x61\x00\x6c\x00\x69\ -\x00\x7a\x00\x61\x00\x63\x00\x6a\x01\x19\x00\x20\x00\x70\x00\x75\ -\x00\x6e\x00\x6b\x00\x74\x00\x75\x00\x20\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x6c\x6f\x63\x61\x74\x69\x6f\ -\x6e\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x6a\x00\x57\x00\x79\x00\x62\x00\ -\x69\x00\x65\x00\x72\x00\x7a\x00\x20\x00\x6e\x00\x61\x00\x73\x00\ -\x74\x01\x19\x00\x70\x00\x6e\x00\x79\x00\x20\x00\x70\x00\x75\x00\ -\x6e\x00\x6b\x00\x74\x00\x2c\x00\x20\x00\x61\x00\x6c\x00\x62\x00\ -\x6f\x00\x20\x00\x28\x00\x46\x00\x29\x00\x6b\x00\x6f\x00\x6e\x00\ -\x69\x00\x65\x00\x63\x00\x20\x00\x6c\x00\x75\x00\x62\x00\x20\x00\ -\x28\x00\x43\x00\x29\x00\x7a\x00\x61\x00\x6d\x00\x6b\x00\x6e\x00\ -\x69\x00\x6a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x50\x69\x63\ -\x6b\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x2c\x20\x6f\x72\ -\x20\x28\x46\x29\x69\x6e\x69\x73\x68\x20\x6f\x72\x20\x28\x43\x29\ -\x6c\x6f\x73\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x2e\x00\x57\x00\x79\x00\x62\x00\x69\x00\x65\ -\x00\x72\x00\x7a\x00\x20\x00\x6e\x00\x61\x00\x73\x00\x74\x01\x19\ -\x00\x70\x00\x6e\x00\x79\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\ -\x00\x74\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\ -\x63\x6b\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\x00\ -\x57\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x20\x00\ -\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x20\x00\x70\x00\x72\x00\ -\x7a\x00\x65\x00\x63\x00\x69\x00\x77\x00\x6c\x00\x65\x00\x67\x01\ -\x42\x00\x79\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x50\ -\x69\x63\x6b\x20\x6f\x70\x70\x6f\x73\x69\x74\x65\x20\x70\x6f\x69\ -\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x20\x00\x57\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\ -\x00\x7a\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x6d\x00\x69\x00\x65\ -\x01\x44\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x50\x69\ -\x63\x6b\x20\x72\x61\x64\x69\x75\x73\x3a\x0a\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x57\x00\x79\x00\ -\x62\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x20\x00\x6b\x01\x05\x00\ -\x74\x00\x20\x00\x6f\x00\x62\x00\x72\x00\x6f\x00\x74\x00\x75\x00\ -\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\ -\x72\x6f\x74\x61\x74\x69\x6f\x6e\x20\x61\x6e\x67\x6c\x65\x3a\x0a\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\ -\x00\x57\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x20\ -\x01\x5b\x00\x72\x00\x6f\x00\x64\x00\x65\x00\x6b\x00\x20\x00\x6f\ -\x00\x62\x00\x72\x00\x6f\x00\x74\x00\x75\x00\x20\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x16\x50\x69\x63\x6b\x20\x72\x6f\x74\x61\x74\ -\x69\x6f\x6e\x20\x63\x65\x6e\x74\x65\x72\x3a\x0a\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x57\x00\x79\ -\x00\x62\x00\x72\x00\x61\x01\x07\x00\x20\x00\x77\x00\x73\x00\x70\ -\x00\xf3\x01\x42\x00\x63\x00\x7a\x00\x79\x00\x6e\x00\x6e\x00\x69\ -\x00\x6b\x00\x20\x00\x73\x00\x6b\x00\x61\x00\x6c\x00\x6f\x00\x77\ -\x00\x61\x00\x6e\x00\x69\x00\x61\x00\x20\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x13\x50\x69\x63\x6b\x20\x73\x63\x61\x6c\x65\x20\x66\ -\x61\x63\x74\x6f\x72\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x2e\x00\x57\x00\x79\x00\x62\x00\x69\x00\ -\x65\x00\x72\x00\x7a\x00\x20\x00\x4b\x01\x05\x00\x74\x00\x20\x00\ -\x70\x00\x6f\x00\x63\x00\x7a\x01\x05\x00\x74\x00\x6b\x00\x6f\x00\ -\x77\x00\x79\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\ -\x69\x63\x6b\x20\x73\x74\x61\x72\x74\x20\x61\x6e\x67\x6c\x65\x3a\ -\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x32\x00\x57\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\x00\x7a\x00\ -\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x20\x00\x70\x00\ -\x6f\x00\x63\x00\x7a\x01\x05\x00\x74\x00\x6b\x00\x6f\x00\x77\x00\ -\x79\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\ -\x6b\x20\x73\x74\x61\x72\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\ -\x50\x00\x75\x00\x6e\x00\x6b\x00\x74\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x05\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x50\x00\x72\x00\x6f\x00\x6d\ -\x00\x69\x00\x65\x01\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ -\x52\x61\x64\x69\x75\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x1c\x00\x50\x00\x72\x00\x6f\x00\x6d\x00\x69\ -\x00\x65\x01\x44\x00\x20\x00\x6f\x00\x6b\x00\x72\x01\x19\x00\x67\ -\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x61\x64\x69\ -\x75\x73\x20\x6f\x66\x20\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x55\x00\x73\ -\x00\x75\x01\x44\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\ -\x00\x79\x00\x20\x00\x7a\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x79\ -\x00\x77\x00\x6e\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x6f\x00\x62\ -\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x25\x52\x65\x6d\x6f\x76\x65\x20\x70\x6f\x69\x6e\x74\ -\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\ -\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x4f\x00\x62\x00\x72\x00\ -\xf3\x01\x07\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x6f\x74\ -\x61\x74\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x0a\x00\x53\x00\x6b\x00\x61\x00\x6c\x00\x61\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x57\x00\x79\ -\x00\x62\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x20\x00\x50\x01\x42\ -\x00\x61\x00\x73\x00\x7a\x00\x63\x00\x7a\x00\x79\x00\x7a\x00\x6e\ -\x01\x19\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x65\x6c\x65\ -\x63\x74\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x57\x00\x79\x00\x62\x00\x69\ -\x00\x65\x00\x72\x00\x7a\x00\x20\x00\x70\x01\x42\x00\x61\x00\x73\ -\x00\x7a\x00\x63\x00\x7a\x00\x79\x00\x7a\x00\x6e\x01\x19\x00\x20\ -\x00\x58\x00\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\ -\x6c\x65\x63\x74\x20\x58\x59\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x57\x00\ -\x79\x00\x62\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x20\x00\x70\x01\ -\x42\x00\x61\x00\x73\x00\x7a\x00\x63\x00\x7a\x00\x79\x00\x7a\x00\ -\x6e\x01\x19\x00\x20\x00\x58\x00\x5a\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x58\x5a\x20\x70\x6c\x61\ -\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x2c\x00\x57\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\x00\x7a\ -\x00\x20\x00\x70\x01\x42\x00\x61\x00\x73\x00\x7a\x00\x63\x00\x7a\ -\x00\x79\x00\x7a\x00\x6e\x01\x19\x00\x20\x00\x59\x00\x5a\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x59\ -\x5a\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x40\x00\x5a\x00\x61\x00\x7a\x00\x6e\x00\ -\x61\x00\x63\x00\x7a\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\ -\x6b\x00\x74\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x70\x00\x72\x00\ -\x7a\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x73\x00\x69\x00\x65\x00\ -\x6e\x00\x69\x00\x61\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x19\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\ -\x74\x20\x74\x6f\x20\x6d\x6f\x76\x65\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x00\x57\x00\x79\x00\x62\ -\x00\x69\x00\x65\x00\x72\x00\x7a\x00\x20\x00\x6f\x00\x62\x00\x69\ -\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x6f\ -\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x00\x20\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x1b\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\ -\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x6f\x66\x66\x73\x65\x74\ -\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x38\x00\x5a\x00\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\ -\x20\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x2c\x00\ -\x20\x00\x61\x00\x62\x00\x79\x00\x20\x00\x6f\x00\x62\x00\x72\x00\ -\xf3\x00\x63\x00\x69\x01\x07\x00\x20\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x1b\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\ -\x65\x63\x74\x20\x74\x6f\x20\x72\x6f\x74\x61\x74\x65\x0a\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x00\x5a\ -\x00\x61\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\x20\x00\x6f\ -\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x64\x00\x6f\ -\x00\x20\x00\x73\x00\x6b\x00\x61\x00\x6c\x00\x6f\x00\x77\x00\x61\ -\x00\x6e\x00\x69\x00\x61\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\ -\x63\x74\x20\x74\x6f\x20\x73\x63\x61\x6c\x65\x0a\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x56\x00\x5a\x00\x61\ -\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\x20\x00\x6f\x00\x62\ -\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x2c\x00\x20\x00\x64\x00\x6f\ -\x00\x20\x00\x7a\x00\x77\x01\x19\x01\x7c\x00\x65\x00\x6e\x00\x69\ -\x00\x61\x00\x20\x00\x2f\x00\x20\x00\x72\x00\x6f\x00\x7a\x00\x73\ -\x00\x7a\x00\x65\x00\x72\x00\x7a\x00\x65\x00\x6e\x00\x69\x00\x61\ -\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x53\x65\x6c\x65\ -\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\ -\x74\x72\x69\x6d\x2f\x65\x78\x74\x65\x6e\x64\x0a\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\x00\x5a\x00\x61\ -\x00\x7a\x00\x6e\x00\x61\x00\x63\x00\x7a\x00\x20\x00\x6f\x00\x62\ -\x00\x69\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x64\x00\x6f\x00\x20\ -\x00\x75\x00\x61\x00\x6b\x00\x74\x00\x75\x00\x61\x00\x6c\x00\x6e\ -\x00\x69\x00\x65\x00\x6e\x00\x69\x00\x61\x00\x20\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x1c\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\ -\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x75\x70\x67\x72\x61\x64\ -\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x68\x00\x57\x00\x79\x00\x62\x00\x69\x00\x65\x00\x72\x00\x7a\ -\x00\x20\x00\x70\x01\x42\x00\x61\x00\x73\x00\x7a\x00\x63\x00\x7a\ -\x00\x79\x00\x7a\x00\x6e\x01\x19\x00\x20\x00\x70\x00\x72\x00\x6f\ -\x00\x73\x00\x74\x00\x6f\x00\x70\x00\x61\x00\x64\x01\x42\x01\x05\ -\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x75\ -\x00\x61\x00\x6c\x00\x6e\x00\x65\x00\x67\x00\x6f\x00\x20\x00\x77\ -\x00\x69\x00\x64\x00\x6f\x00\x6b\x00\x75\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x2e\x53\x65\x6c\x65\x63\x74\x20\x70\x6c\x61\x6e\x65\ -\x20\x70\x65\x72\x70\x65\x6e\x64\x69\x63\x75\x6c\x61\x72\x20\x74\ -\x6f\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x76\x69\ -\x65\x77\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x24\x00\x5a\x00\x61\x00\x6d\x00\x6b\x00\x6e\x00\x69\x01\x19\ -\x00\x74\x00\x6f\x00\x20\x00\x42\x00\x2d\x00\x53\x00\x70\x00\x6c\ -\x00\x61\x00\x6a\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\ -\x53\x70\x6c\x69\x6e\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\ -\x63\x6c\x6f\x73\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x1c\x00\x4b\x01\x05\x00\x74\x00\x20\x00\ -\x70\x00\x6f\x00\x63\x00\x7a\x01\x05\x00\x74\x00\x6b\x00\x6f\x00\ -\x77\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x74\x61\ -\x72\x74\x20\x41\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x46\x00\x54\x00\x65\x00\x6e\x00\x20\ -\x00\x74\x00\x79\x00\x70\x00\x20\x00\x6f\x00\x62\x00\x69\x00\x65\ -\x00\x6b\x00\x74\x00\x75\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x20\ -\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x20\x00\x65\x00\x64\x00\x79\ -\x00\x74\x00\x6f\x00\x77\x00\x61\x00\x6c\x00\x6e\x00\x79\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x21\x54\x68\x69\x73\x20\x6f\x62\x6a\ -\x65\x63\x74\x20\x74\x79\x70\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\ -\x65\x64\x69\x74\x61\x62\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x32\x00\x50\x00\x72\x00\x7a\x00\ -\x65\x01\x42\x01\x05\x00\x63\x00\x7a\x00\x61\x00\x20\x00\x64\x00\ -\x6f\x00\x20\x00\x74\x00\x72\x00\x79\x00\x62\x00\x75\x00\x20\x00\ -\x62\x00\x75\x00\x64\x00\x6f\x00\x77\x00\x79\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x19\x54\x6f\x67\x67\x6c\x65\x73\x20\x43\x6f\x6e\ -\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x65\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x55\ -\x00\x63\x00\x69\x00\x6e\x00\x61\x00\x6e\x00\x69\x00\x65\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x04\x54\x72\x69\x6d\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x43\x00\x6f\ -\x00\x66\x00\x61\x00\x20\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x74\ -\x00\x6e\x00\x69\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\ -\x00\x6e\x00\x74\x00\x20\x00\x28\x00\x43\x00\x54\x00\x52\x00\x4c\ -\x00\x20\x00\x2b\x00\x20\x00\x5a\x00\x29\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x1e\x55\x6e\x64\x6f\x20\x74\x68\x65\x20\x6c\x61\x73\ -\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x28\x43\x54\x52\x4c\x2b\ -\x5a\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x0a\x00\x57\x00\x69\x00\x64\x00\x6f\x00\x6b\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x04\x56\x69\x65\x77\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa2\x00\x57\x00\x69\x00\x70\ -\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x65\ -\x00\x78\x00\x69\x00\x73\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\ -\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\ -\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ -\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x61\x00\x6e\ -\x00\x64\x00\x20\x00\x73\x00\x74\x00\x61\x00\x72\x00\x74\x00\x73\ -\x00\x20\x00\x61\x00\x67\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x66\ -\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ -\x00\x6c\x00\x61\x00\x73\x00\x74\x00\x20\x00\x70\x00\x6f\x00\x69\ -\x00\x6e\x00\x74\x00\x20\x00\x28\x00\x57\x00\x29\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x51\x57\x69\x70\x65\x73\x20\x74\x68\x65\x20\ -\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x73\x65\x67\x6d\x65\x6e\x74\ -\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6c\x69\x6e\x65\x20\x61\ -\x6e\x64\x20\x73\x74\x61\x72\x74\x73\x20\x61\x67\x61\x69\x6e\x20\ -\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x70\x6f\ -\x69\x6e\x74\x20\x28\x57\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x24\x00\x5a\x00\x61\x00\x6d\x00\x6b\x00\ -\x6e\x00\x69\x01\x19\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x7a\x00\ -\x6b\x00\x69\x00\x65\x00\x6c\x00\x65\x00\x74\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x15\x57\x69\x72\x65\x20\x68\x61\x73\x20\x62\x65\ -\x65\x6e\x20\x63\x6c\x6f\x73\x65\x64\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x57\x00\x69\x00\x72\ -\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0a\x57\x69\x72\x65\x20\x74\x6f\x6f\ -\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x02\x00\x58\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\x58\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\ -\x57\x00\x73\x00\x70\x00\xf3\x01\x42\x00\x72\x00\x7a\x01\x19\x00\ -\x64\x00\x6e\x00\x61\x00\x20\x00\x58\x00\x20\x00\x6e\x00\x61\x00\ -\x73\x00\x74\x01\x19\x00\x70\x00\x6e\x00\x65\x00\x67\x00\x6f\x00\ -\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x75\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x1a\x58\x20\x63\x6f\x6f\x72\x64\x69\x6e\ -\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\ -\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x04\x00\x58\x00\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x58\ -\x59\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x04\x00\x58\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x58\ -\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x02\x00\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\x59\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x57\ -\x00\x73\x00\x70\x00\xf3\x01\x42\x00\x72\x00\x7a\x01\x19\x00\x64\ -\x00\x6e\x00\x61\x00\x20\x00\x59\x00\x20\x00\x6e\x00\x61\x00\x73\ -\x00\x74\x01\x19\x00\x70\x00\x6e\x00\x65\x00\x67\x00\x6f\x00\x20\ -\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x75\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x1a\x59\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\ -\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\ -\x00\x59\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x59\x5a\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\ -\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\x5a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x57\x00\ -\x73\x00\x70\x00\xf3\x01\x42\x00\x72\x00\x7a\x01\x19\x00\x64\x00\ -\x6e\x00\x61\x00\x20\x00\x5a\x00\x20\x00\x6e\x00\x61\x00\x73\x00\ -\x74\x01\x19\x00\x70\x00\x6e\x00\x65\x00\x67\x00\x6f\x00\x20\x00\ -\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x75\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x1a\x5a\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\ -\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\ -\x61\x00\x6b\x00\x74\x00\x79\x00\x77\x00\x6e\x00\x65\x00\x20\x00\ -\x70\x00\x6f\x00\x6c\x00\x65\x00\x63\x00\x65\x00\x6e\x00\x69\x00\ -\x65\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x61\x63\x74\ -\x69\x76\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x3a\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\x00\x50\x00\x61\ -\x00\x73\x00\x65\x00\x6b\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x65\ -\x00\x63\x00\x65\x01\x44\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x6a\ -\x00\x65\x00\x6b\x00\x74\x00\x6f\x00\x77\x00\x61\x00\x6e\x00\x69\ -\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x64\x72\x61\x66\ -\x74\x20\x43\x6f\x6d\x6d\x61\x6e\x64\x20\x42\x61\x72\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\ -\x00\x00\x95\xad\ -\x3c\ -\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ -\x00\x00\x09\x98\x00\x00\x00\x58\x00\x00\x89\xec\x00\x00\x00\x59\ -\x00\x00\x8a\x8f\x00\x00\x00\x5a\x00\x00\x8b\x12\x00\x00\x05\xd9\ -\x00\x00\x8a\x4f\x00\x00\x05\xda\x00\x00\x8a\x6f\x00\x00\x05\xea\ -\x00\x00\x8a\xf2\x00\x00\x07\x78\x00\x00\x5e\xda\x00\x00\x48\x83\ -\x00\x00\x02\x5b\x00\x00\x48\x83\x00\x00\x64\x5c\x00\x00\x68\x34\ -\x00\x00\x59\xcd\x00\x04\xa6\x79\x00\x00\x67\x19\x00\x04\xbb\x04\ -\x00\x00\x09\x22\x00\x04\xbb\x04\x00\x00\x6a\x94\x00\x05\x30\x45\ -\x00\x00\x0b\x15\x00\x05\x30\x45\x00\x00\x7b\x27\x00\x05\x46\xc5\ -\x00\x00\x0b\x3c\x00\x05\x46\xc5\x00\x00\x7b\x9d\x00\x05\x56\x45\ -\x00\x00\x3d\x1d\x00\x05\x56\x45\x00\x00\x7b\xbf\x00\x05\xac\xf4\ -\x00\x00\x14\xc6\x00\x05\xb8\xfd\x00\x00\x87\xba\x00\x05\xcf\xc7\ -\x00\x00\x88\x42\x00\x05\xe0\x85\x00\x00\x1d\x35\x00\x06\xab\x8c\ -\x00\x00\x5b\x21\x00\x10\x84\x49\x00\x00\x47\x87\x00\x12\x05\xba\ -\x00\x00\x84\xec\x00\x16\xc6\xda\x00\x00\x70\x74\x00\x2a\xa6\x79\ -\x00\x00\x61\x0a\x00\x2b\xc4\xaf\x00\x00\x61\xee\x00\x2b\xe0\x65\ -\x00\x00\x62\x1d\x00\x39\xdf\x33\x00\x00\x2c\xba\x00\x3d\xa1\x19\ -\x00\x00\x65\x4a\x00\x3e\x93\x83\x00\x00\x2d\xc0\x00\x48\x8f\x7c\ -\x00\x00\x1f\xa7\x00\x4b\x66\x35\x00\x00\x2a\x16\x00\x4b\x66\x37\ -\x00\x00\x2a\x57\x00\x4b\x66\x39\x00\x00\x2a\x98\x00\x4b\x87\xd4\ -\x00\x00\x69\xe1\x00\x57\x60\x54\x00\x00\x81\xc7\x00\x58\xfd\xf4\ -\x00\x00\x40\x1c\x00\x59\x98\x25\x00\x00\x10\x30\x00\x59\x98\x25\ -\x00\x00\x82\xeb\x00\x6a\x58\x9a\x00\x00\x7d\x5b\x00\x79\xef\xd4\ -\x00\x00\x5f\x12\x00\x7e\x7f\x0e\x00\x00\x57\x3c\x00\x8a\x23\x95\ -\x00\x00\x22\xfb\x00\x8a\x23\x97\x00\x00\x23\x45\x00\x8a\x23\x99\ -\x00\x00\x23\x8f\x00\x91\xbc\xe9\x00\x00\x0b\x63\x00\xa6\x37\x3f\ -\x00\x00\x21\xd0\x00\xaa\x80\x25\x00\x00\x69\x57\x00\xc6\xe3\x6e\ -\x00\x00\x1e\x5f\x00\xcb\xa8\x14\x00\x00\x5e\x2a\x00\xfc\x00\xca\ -\x00\x00\x77\x02\x01\x21\xd6\x39\x00\x00\x46\x6e\x01\x22\xb4\xf9\ -\x00\x00\x10\x5d\x01\x2f\x8e\x7e\x00\x00\x50\xc2\x01\x48\xfe\xa3\ -\x00\x00\x2e\x3a\x01\x53\xf3\xaa\x00\x00\x6d\x8e\x01\x56\x16\x4a\ -\x00\x00\x76\x7f\x01\x67\x0d\x8a\x00\x00\x72\x15\x01\x69\x11\x7a\ -\x00\x00\x80\x42\x01\x82\x39\x0a\x00\x00\x7d\xe9\x01\x8b\x68\x75\ -\x00\x00\x87\x71\x01\xa1\x7f\x63\x00\x00\x17\x3f\x01\xc1\xd9\xde\ -\x00\x00\x49\xac\x01\xd2\x8f\xd3\x00\x00\x40\xb7\x01\xdf\x11\x43\ -\x00\x00\x04\x58\x01\xe2\xf4\x5a\x00\x00\x84\x95\x01\xfc\xae\xd3\ -\x00\x00\x5f\x53\x02\x05\xbe\x25\x00\x00\x68\x40\x02\x46\x58\x0a\ -\x00\x00\x7f\xc0\x02\x65\xad\x62\x00\x00\x8b\xbc\x02\x6e\x07\xe2\ -\x00\x00\x42\xe3\x02\x76\x24\x13\x00\x00\x32\x27\x02\x7d\xe0\x55\ -\x00\x00\x43\x75\x02\x94\x46\x1a\x00\x00\x7d\xa2\x02\xa7\x2c\x15\ -\x00\x00\x03\x08\x02\xaa\x36\x95\x00\x00\x60\xa9\x02\xb1\xf0\xba\ -\x00\x00\x73\xc8\x02\xbf\xaa\x8e\x00\x00\x30\xc6\x02\xc0\x66\xf2\ -\x00\x00\x4d\x64\x02\xc8\x3f\xf5\x00\x00\x55\x8b\x02\xd9\xa4\xb9\ -\x00\x00\x59\x82\x02\xdb\x1a\x94\x00\x00\x05\x9d\x03\x01\x84\xc4\ -\x00\x00\x77\xcd\x03\x12\x97\x6a\x00\x00\x75\xba\x03\x1a\x14\x14\ -\x00\x00\x28\x44\x03\x1a\x16\x59\x00\x00\x44\x0f\x03\x2f\x1a\x6a\ -\x00\x00\x62\x8e\x03\x7e\xca\xb5\x00\x00\x38\xf8\x03\x88\x1f\xd4\ -\x00\x00\x39\xaf\x03\x9e\x58\xa5\x00\x00\x00\x34\x03\xb3\x9e\xfa\ -\x00\x00\x7e\x5b\x03\xb5\xc8\x9a\x00\x00\x7f\x49\x03\xbd\xd4\xe4\ -\x00\x00\x63\x11\x03\xc4\x3c\xf5\x00\x00\x65\x16\x03\xc5\xd5\x5e\ -\x00\x00\x07\x23\x03\xcb\x0d\xe5\x00\x00\x83\x12\x03\xdc\x0c\xd4\ -\x00\x00\x61\x68\x03\xf2\x70\x35\x00\x00\x25\x7d\x03\xf2\xbd\x60\ -\x00\x00\x11\x91\x03\xfb\x0f\x04\x00\x00\x27\xde\x04\x21\x23\x23\ -\x00\x00\x1a\xe9\x04\x56\x06\x93\x00\x00\x26\x71\x04\x60\x7c\x15\ -\x00\x00\x82\x0c\x04\x79\xef\x9a\x00\x00\x73\x4b\x04\x82\x77\xf4\ -\x00\x00\x43\x2b\x04\x87\xf9\x9e\x00\x00\x78\xd4\x04\x8c\xd6\xae\ -\x00\x00\x54\x7c\x04\xa0\x8a\x25\x00\x00\x04\x2f\x04\xa0\x8a\x25\ -\x00\x00\x66\x75\x04\xa4\x31\x5a\x00\x00\x7a\xb9\x04\xa8\xeb\x85\ -\x00\x00\x2a\xd9\x04\xe1\x6e\xe3\x00\x00\x07\x8f\x04\xe4\x0f\x75\ -\x00\x00\x02\x0b\x04\xeb\x41\xc3\x00\x00\x25\xf4\x04\xef\xd9\xa8\ -\x00\x00\x3f\xc0\x05\x03\x83\x95\x00\x00\x5b\x5f\x05\x05\xcb\x13\ -\x00\x00\x37\xe4\x05\x0f\xf2\x74\x00\x00\x7c\xd2\x05\x1b\x10\x59\ -\x00\x00\x3b\x3a\x05\x2a\xe5\x97\x00\x00\x41\x79\x05\x44\x3b\x5f\ -\x00\x00\x5d\x4a\x05\x5c\xd9\xc4\x00\x00\x0c\x4a\x05\x5c\xd9\xc4\ -\x00\x00\x7c\x10\x05\x63\xf6\x93\x00\x00\x40\x5d\x05\x65\xee\x65\ -\x00\x00\x6c\x24\x05\x87\xb0\xc3\x00\x00\x81\xe8\x05\x96\xa8\xa5\ -\x00\x00\x0f\x2e\x05\x96\xa8\xa5\x00\x00\x82\xc7\x05\xad\x4b\xc3\ -\x00\x00\x39\x48\x05\xb9\x03\xc8\x00\x00\x18\x30\x05\xbd\x0c\xba\ -\x00\x00\x6e\x35\x05\xbd\x8e\xde\x00\x00\x53\x86\x05\xbe\x56\x93\ -\x00\x00\x3f\x58\x05\xc5\x50\x04\x00\x00\x09\x49\x05\xe5\x8e\x2e\ -\x00\x00\x0d\x74\x05\xfb\xdc\x83\x00\x00\x38\x40\x06\x1e\xe6\xb5\ -\x00\x00\x86\xd7\x06\x29\xee\xa9\x00\x00\x66\x97\x06\x32\xe3\xe3\ -\x00\x00\x6a\x0a\x06\x57\x19\xf4\x00\x00\x00\x00\x06\x5a\xef\x15\ -\x00\x00\x60\xd9\x06\x5b\xd2\xb5\x00\x00\x34\xcb\x06\x6c\x88\x8e\ -\x00\x00\x36\x2f\x06\x74\x1d\x55\x00\x00\x49\x14\x06\x8b\x96\x44\ -\x00\x00\x09\xe9\x06\x97\x58\xc9\x00\x00\x44\x98\x06\xbc\x80\xa5\ -\x00\x00\x17\xdb\x06\xc9\xb8\x05\x00\x00\x63\x8b\x06\xe8\x05\x4e\ -\x00\x00\x05\x28\x06\xee\xaa\x57\x00\x00\x86\x1e\x06\xf0\xcb\x25\ -\x00\x00\x16\x25\x06\xfa\xff\xc3\x00\x00\x38\xa2\x06\xfc\x1a\x14\ -\x00\x00\x2b\xe5\x06\xfc\xa0\x8a\x00\x00\x7d\x09\x07\x08\x90\xe5\ -\x00\x00\x24\x36\x07\x0d\xb7\xf7\x00\x00\x30\x13\x07\x0e\x86\x3e\ -\x00\x00\x16\x8e\x07\x35\x68\x6e\x00\x00\x12\x9c\x07\x35\xe8\x9a\ -\x00\x00\x80\x7d\x07\x44\x41\x2a\x00\x00\x6d\x0b\x07\x4a\x1f\x63\ -\x00\x00\x01\x7c\x07\x4d\x73\x22\x00\x00\x7b\x49\x07\x4e\xa6\xf2\ -\x00\x00\x6a\xe5\x07\x58\xcb\xe8\x00\x00\x7b\x73\x07\x63\xfe\x0e\ -\x00\x00\x0e\x47\x07\x80\xc6\xb3\x00\x00\x89\xb4\x07\x88\x72\x5a\ -\x00\x00\x64\x7d\x07\xa3\xe4\x0e\x00\x00\x1c\x59\x07\xc1\xfc\x13\ -\x00\x00\x27\x18\x08\x27\xb4\xba\x00\x00\x7f\x0e\x08\x32\xc4\xaa\ -\x00\x00\x81\x02\x08\x36\x74\x14\x00\x00\x1e\x18\x08\x44\xb9\x83\ -\x00\x00\x2c\x5c\x08\x49\xc9\x30\x00\x00\x11\xd1\x08\x61\x7c\xb3\ -\x00\x00\x18\x63\x08\xa2\xca\x67\x00\x00\x43\xc5\x08\xa3\xe0\x33\ -\x00\x00\x67\x3d\x08\xb1\x15\x28\x00\x00\x27\x91\x08\xb4\x04\x04\ -\x00\x00\x82\x3e\x08\xd0\x32\xf4\x00\x00\x6a\xb6\x08\xd4\xcd\x69\ -\x00\x00\x6b\x0f\x08\xe1\x9b\xbe\x00\x00\x15\x67\x08\xe1\xc1\xfa\ -\x00\x00\x6c\x55\x08\xeb\x8d\x7a\x00\x00\x89\x71\x09\x20\xda\x24\ -\x00\x00\x8a\xac\x09\x20\xda\xb4\x00\x00\x8b\x2f\x09\x20\xda\xd4\ -\x00\x00\x8a\x09\x09\x4d\x96\xd9\x00\x00\x1e\xee\x09\x65\xda\x8a\ -\x00\x00\x70\x03\x09\x68\x0d\x29\x00\x00\x79\xd2\x09\x71\x8d\x25\ -\x00\x00\x04\xf2\x09\x75\x23\x14\x00\x00\x62\x46\x09\x76\xed\x34\ -\x00\x00\x56\x86\x09\x86\xa6\x05\x00\x00\x1d\x5c\x09\x8b\x23\xba\ -\x00\x00\x81\x45\x09\x9e\xfd\x7e\x00\x00\x56\xd0\x09\xb6\x2a\x63\ -\x00\x00\x2b\x47\x09\xcd\x1c\x55\x00\x00\x83\x40\x09\xd2\x21\xea\ -\x00\x00\x51\x8b\x09\xe5\x23\x0e\x00\x00\x4c\x4b\x09\xec\x2b\x45\ -\x00\x00\x09\xa5\x09\xef\x33\xa3\x00\x00\x13\x4f\x09\xf0\x1f\x6e\ -\x00\x00\x02\x80\x09\xfd\x45\x1a\x00\x00\x7e\x20\x0a\x09\xc1\x7a\ -\x00\x00\x7f\xf9\x0a\x28\x9a\x65\x00\x00\x42\x0e\x0a\x28\x9a\x67\ -\x00\x00\x42\x55\x0a\x28\x9a\x69\x00\x00\x42\x9c\x0a\x2d\xbe\xe4\ -\x00\x00\x28\xa5\x0a\x35\xa9\xfa\x00\x00\x74\x4e\x0a\x3f\x27\x74\ -\x00\x00\x68\x74\x0a\x3f\x6b\x05\x00\x00\x68\xa7\x0a\x49\xa5\x4a\ -\x00\x00\x87\x12\x0a\x60\xe0\x15\x00\x00\x1f\xe8\x0a\x60\xe0\x17\ -\x00\x00\x20\x3b\x0a\x60\xe0\x19\x00\x00\x20\x8e\x0a\x65\x9b\xea\ -\x00\x00\x7c\x3a\x0a\x78\x05\x80\x00\x00\x00\xf9\x0a\x7f\x8f\x65\ -\x00\x00\x33\x4c\x0a\x98\x86\x18\x00\x00\x23\xd9\x0a\x99\x5c\xaa\ -\x00\x00\x81\x89\x0a\xa8\x16\x95\x00\x00\x0e\xfb\x0a\xa9\x89\xec\ -\x00\x00\x3a\x06\x0a\xc8\x5c\x59\x00\x00\x0c\x7b\x0a\xd0\x50\xb8\ -\x00\x00\x61\x39\x0a\xd0\xe6\xf5\x00\x00\x13\x12\x0a\xd6\xf1\xfa\ -\x00\x00\x6a\x45\x0a\xeb\x91\x88\x00\x00\x56\x0d\x0b\x07\x78\x8a\ -\x00\x00\x6f\x62\x0b\x1b\xe0\x73\x00\x00\x45\x06\x0b\x24\x9d\xb4\ -\x00\x00\x45\xbb\x0b\x24\xc5\xc9\x00\x00\x0f\x59\x0b\x26\x7e\x0e\ -\x00\x00\x67\xd8\x0b\x2b\x50\xfa\x00\x00\x72\xb6\x0b\x2d\xb3\xf9\ -\x00\x00\x58\xec\x0b\x37\x73\x69\x00\x00\x88\x64\x0b\x40\x40\x3e\ -\x00\x00\x3b\x9c\x0b\x43\xcd\x19\x00\x00\x3a\x80\x0b\x66\x28\xd2\ -\x00\x00\x55\xca\x0b\x88\xe0\x07\x00\x00\x08\x82\x0b\x94\x44\xc5\ -\x00\x00\x29\x02\x0b\xc2\x99\x6a\x00\x00\x6e\xa9\x0b\xd3\x27\xae\ -\x00\x00\x03\x44\x0b\xd4\x7e\x9e\x00\x00\x08\xaf\x0b\xf5\xee\x53\ -\x00\x00\x7b\xe1\x0c\x06\x50\x2e\x00\x00\x0a\x74\x0c\x08\x46\x23\ -\x00\x00\x69\x10\x0c\x19\xfa\x99\x00\x00\x6b\x6b\x0c\x28\x9b\x45\ -\x00\x00\x61\xb9\x0c\x31\x7e\x4a\x00\x00\x7e\x94\x0c\x38\x4d\xe5\ -\x00\x00\x05\xd4\x0c\x3a\x16\xd0\x00\x00\x14\x40\x0c\x5a\xc0\xc8\ -\x00\x00\x64\xee\x0c\x6e\x87\xf5\x00\x00\x1c\x22\x0c\x91\xa0\x7a\ -\x00\x00\x86\x88\x0c\x96\x90\x59\x00\x00\x3a\xcf\x0c\xca\xdd\xfa\ -\x00\x00\x85\x46\x0c\xd6\xef\x12\x00\x00\x26\xcb\x0c\xde\x99\x49\ -\x00\x00\x59\x36\x0c\xf0\xde\xaa\x00\x00\x71\x71\x0d\x1c\xf6\xee\ -\x00\x00\x24\xeb\x0d\x3a\x6c\xba\x00\x00\x7e\xd2\x0d\x45\xe2\x6a\ -\x00\x00\x84\x40\x0d\x59\xa1\x45\x00\x00\x69\x7d\x0d\x5a\xad\x33\ -\x00\x00\x64\x07\x0d\x5e\xe7\x6e\x00\x00\x20\xe1\x0d\x64\xa5\xd9\ -\x00\x00\x4f\xe8\x0d\x6d\xf8\xf4\x00\x00\x06\x5b\x0d\x76\xb5\x92\ -\x00\x00\x25\x2f\x0d\x9b\xec\xc9\x00\x00\x48\xa3\x0d\xa5\xd9\x94\ -\x00\x00\x24\x92\x0d\xa6\xda\xa4\x00\x00\x3c\xc1\x0d\xc6\xc6\x2a\ -\x00\x00\x80\xba\x0d\xf2\x39\xba\x00\x00\x75\x01\x0e\x2b\x04\x15\ -\x00\x00\x67\xa9\x0e\x2c\xe4\x2a\x00\x00\x83\xeb\x0e\x4e\xcc\xc5\ -\x00\x00\x07\x54\x0e\x6f\x9a\x1a\x00\x00\x85\xc0\x0e\x7b\x7a\x2c\ -\x00\x00\x29\xc2\x0e\x8f\x6a\x37\x00\x00\x2d\x6a\x0e\x91\x65\xf5\ -\x00\x00\x14\xf1\x0e\xca\xd7\x34\x00\x00\x1a\x1f\x0e\xcd\x1c\x55\ -\x00\x00\x83\x79\x0e\xcd\x1c\x65\x00\x00\x83\xb2\x0e\xea\xe5\x03\ -\x00\x00\x5f\xbe\x0e\xed\xe1\xf9\x00\x00\x3d\x57\x0f\x07\x8d\xe3\ -\x00\x00\x60\x30\x0f\x17\x82\x4e\x00\x00\x00\xb1\x0f\x1f\x8d\xa5\ -\x00\x00\x67\x6b\x0f\x4f\x75\x3a\x00\x00\x8b\x75\x0f\x5f\xca\xd5\ -\x00\x00\x29\x5b\x0f\x75\xb0\x54\x00\x00\x68\xd6\x0f\x77\xc3\xb4\ -\x00\x00\x5a\x08\x0f\x89\x0b\xbe\x00\x00\x3d\xa9\x0f\x8f\xa8\xa7\ -\x00\x00\x13\xf3\x0f\x98\x0a\x39\x00\x00\x87\xe0\x0f\x9e\xec\xa0\ -\x00\x00\x0e\x76\x0f\xbf\x87\xa3\x00\x00\x7a\x6f\x0f\xcd\xce\x95\ -\x00\x00\x2d\x08\x0f\xdf\x21\x05\x00\x00\x1d\xc5\x0f\xf6\x06\x1e\ -\x00\x00\x1a\x67\x0f\xf6\x29\x0a\x00\x00\x63\xbd\x0f\xf7\x77\xaa\ -\x00\x00\x70\xf4\x0f\xfb\x5f\xae\x00\x00\x68\x0c\x69\x00\x00\x8b\ -\xfb\x03\x00\x00\x00\x08\x70\xb9\x30\x6e\x8f\xfd\x52\xa0\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x09\x41\x64\x64\x20\x50\x6f\x69\x6e\ -\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x50\ -\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x32\x65\xe2\x5b\x58\x30\x6e\ -\x90\x23\x7d\xda\x30\x7e\x30\x5f\x30\x6f\x00\x42\x30\xb9\x30\xd7\ -\x30\xe9\x30\xa4\x30\xf3\x66\xf2\x7d\xda\x30\x6b\x70\xb9\x30\x92\ -\x8f\xfd\x52\xa0\x30\x57\x30\x7e\x30\x59\x30\x02\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x28\x41\x64\x64\x73\x20\x61\x20\x70\x6f\x69\ -\x6e\x74\x20\x74\x6f\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\ -\x67\x20\x77\x69\x72\x65\x2f\x62\x73\x70\x6c\x69\x6e\x65\x07\x00\ -\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x50\x6f\x69\x6e\ -\x74\x01\x03\x00\x00\x00\x14\x30\xb0\x30\xeb\x30\xfc\x30\xd7\x30\ -\x6b\x8f\xfd\x52\xa0\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x0f\x41\x64\x64\x20\x74\x6f\x20\x67\x72\x6f\x75\ -\x70\x2e\x2e\x2e\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\ -\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x2e\x90\ -\x78\x62\x9e\x30\x57\x30\x5f\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\ -\xaf\x30\xc8\x30\x92\x65\xe2\x5b\x58\x30\x6e\x30\xb0\x30\xeb\x30\ -\xfc\x30\xd7\x30\x6b\x8f\xfd\x52\xa0\x30\x59\x30\x8b\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x30\x41\x64\x64\x73\x20\x74\x68\x65\x20\ -\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x28\ -\x73\x29\x20\x74\x6f\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\ -\x67\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x10\x44\x72\x61\x66\ -\x74\x5f\x41\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\x01\x03\x00\x00\ -\x00\x32\x73\xfe\x57\x28\x30\x6e\x7d\xda\x30\x68\x82\x72\x30\x4c\ -\x90\x78\x62\x9e\x30\x57\x30\x5f\x30\xaa\x30\xd6\x30\xb8\x30\xa7\ -\x30\xaf\x30\xc8\x30\x6b\x90\x69\x75\x28\x30\x55\x30\x8c\x30\x7e\ -\x30\x59\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x41\x70\ -\x70\x6c\x69\x65\x73\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\ -\x6e\x65\x20\x77\x69\x64\x74\x68\x20\x61\x6e\x64\x20\x63\x6f\x6c\ -\x6f\x72\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ -\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\ -\x5f\x41\x70\x70\x6c\x79\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\ -\x18\x73\xfe\x57\x28\x30\x6e\x30\xb9\x30\xbf\x30\xa4\x30\xeb\x30\ -\x92\x90\x69\x75\x28\x30\x59\x30\x8b\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x13\x41\x70\x70\x6c\x79\x20\x43\x75\x72\x72\x65\x6e\x74\ -\x20\x53\x74\x79\x6c\x65\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\ -\x5f\x41\x70\x70\x6c\x79\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\ -\x04\x51\x86\x5f\x27\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\ -\x72\x63\x07\x00\x00\x00\x09\x44\x72\x61\x66\x74\x5f\x41\x72\x63\ -\x01\x03\x00\x00\x00\x3a\x51\x86\x5f\x27\x30\x92\x4f\x5c\x62\x10\ -\x30\x01\x00\x20\x00\x5b\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x5d\ -\x30\x67\x30\xb9\x30\xca\x30\xc3\x30\xd7\x30\x01\x00\x5b\x00\x53\ -\x00\x68\x00\x69\x00\x66\x00\x74\x00\x5d\x30\x67\x62\xd8\x67\x5f\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\ -\x73\x20\x61\x6e\x20\x61\x72\x63\x2e\x20\x43\x54\x52\x4c\x20\x74\ -\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\ -\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x09\x44\ -\x72\x61\x66\x74\x5f\x41\x72\x63\x01\x03\x00\x00\x00\x12\x00\x42\ -\x00\x2d\x30\xb9\x30\xd7\x30\xe9\x30\xa4\x30\xf3\x66\xf2\x7d\xda\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x2d\x53\x70\x6c\x69\ -\x6e\x65\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x42\x53\x70\ -\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x86\x00\x43\x00\x72\x00\x65\ -\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x6d\ -\x00\x75\x00\x6c\x00\x74\x00\x69\x00\x70\x00\x6c\x00\x65\x00\x2d\ -\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x62\x00\x2d\ -\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x2e\x00\x20\ -\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x74\x00\x6f\x00\x20\ -\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x2c\x00\x20\x00\x53\x00\x48\ -\x00\x49\x00\x46\x00\x54\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\ -\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\x43\x72\x65\x61\x74\x65\ -\x73\x20\x61\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\x70\x6f\x69\ -\x6e\x74\x20\x62\x2d\x73\x70\x6c\x69\x6e\x65\x2e\x20\x43\x54\x52\ -\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\ -\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\ -\x00\x0d\x44\x72\x61\x66\x74\x5f\x42\x53\x70\x6c\x69\x6e\x65\x01\ -\x03\x00\x00\x00\x02\x51\x86\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x06\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x0c\x44\x72\x61\x66\ -\x74\x5f\x43\x69\x72\x63\x6c\x65\x01\x03\x00\x00\x00\x3c\x51\x86\ -\x30\x92\x4f\x5c\x62\x10\x30\x57\x30\x7e\x30\x59\x30\x02\x00\x5b\ -\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x5d\x30\x67\x30\xb9\x30\xca\ -\x30\xc3\x30\xd7\x30\x01\x00\x5b\x00\x41\x00\x6c\x00\x74\x00\x5d\ -\x63\xa5\x7d\xda\x30\x92\x63\x07\x5b\x9a\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x3d\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x69\ -\x72\x63\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ -\x61\x70\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\ -\x74\x20\x74\x61\x6e\x67\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\ -\x73\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x43\x69\x72\x63\ -\x6c\x65\x01\x03\x00\x00\x00\x08\x95\x89\x30\x58\x30\x5f\x7d\xda\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6c\x6f\x73\x65\x20\ -\x4c\x69\x6e\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\ -\x6c\x6f\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x36\x00\x43\ -\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\ -\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x62\ -\x00\x65\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x64\x00\x72\x00\x61\ -\x00\x77\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x43\x6c\ -\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x6c\x69\x6e\x65\x20\x62\x65\ -\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x07\x00\x00\x00\x0f\x44\x72\ -\x61\x66\x74\x5f\x43\x6c\x6f\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\ -\x00\x00\x08\x70\xb9\x30\x6e\x52\x4a\x96\x64\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x0c\x52\x65\x6d\x6f\x76\x65\x20\x50\x6f\x69\x6e\ -\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x44\x65\x6c\x50\ -\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x34\x65\xe2\x5b\x58\x30\x6e\ -\x90\x23\x7d\xda\x30\x7e\x30\x5f\x30\x6f\x00\x42\x30\xb9\x30\xd7\ -\x30\xe9\x30\xa4\x30\xf3\x66\xf2\x7d\xda\x30\x4b\x30\x89\x70\xb9\ -\x30\x92\x52\x4a\x96\x64\x30\x57\x30\x7e\x30\x59\x30\x02\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x30\x52\x65\x6d\x6f\x76\x65\x73\x20\ -\x61\x20\x70\x6f\x69\x6e\x74\x20\x66\x72\x6f\x6d\x20\x61\x6e\x20\ -\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x77\x69\x72\x65\x20\x6f\x72\ -\x20\x62\x73\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x0e\x44\x72\x61\ -\x66\x74\x5f\x44\x65\x6c\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\ -\x56\x5b\xf8\x6c\xd5\x30\x92\x8a\x18\x51\x65\x30\x57\x30\x7e\x30\ -\x59\x30\x02\x00\x5b\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x5d\x30\ -\x67\x30\xb9\x30\xca\x30\xc3\x30\xd7\x30\x01\x00\x5b\x00\x53\x00\ -\x68\x00\x69\x00\x66\x00\x74\x00\x5d\x30\x67\x62\xd8\x67\x5f\x30\ -\x01\x00\x5b\x00\x41\x00\x6c\x00\x74\x00\x5d\x30\x67\x90\xe8\x52\ -\x06\x30\x92\x90\x78\x62\x9e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x4e\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x64\x69\x6d\x65\x6e\ -\x73\x69\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ -\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\ -\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x73\ -\x65\x6c\x65\x63\x74\x20\x61\x20\x73\x65\x67\x6d\x65\x6e\x74\x07\ -\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\x73\ -\x69\x6f\x6e\x01\x03\x00\x00\x00\x04\x5b\xf8\x6c\xd5\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x09\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ -\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\ -\x73\x69\x6f\x6e\x01\x03\x00\x00\x00\x0e\x30\xc0\x30\xa6\x30\xf3\ -\x30\xb0\x30\xec\x30\xfc\x30\xc9\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x09\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x07\x00\x00\x00\x0f\ -\x44\x72\x61\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\ -\x03\x00\x00\x00\x8a\x00\x45\x00\x78\x00\x70\x00\x6c\x00\x6f\x00\ -\x64\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ -\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\ -\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x69\x00\ -\x6d\x00\x70\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x2c\x00\x20\x00\x6f\x00\ -\x72\x00\x20\x00\x73\x00\x75\x00\x62\x00\x74\x00\x72\x00\x61\x00\ -\x63\x00\x74\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x45\x45\x78\x70\x6c\x6f\x64\x65\ -\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ -\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\x73\x69\x6d\x70\ -\x6c\x65\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x2c\x20\x6f\x72\x20\ -\x73\x75\x62\x74\x72\x61\x63\x74\x20\x66\x61\x63\x65\x73\x07\x00\ -\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\ -\x64\x65\x01\x03\x00\x00\x00\x04\x56\xf3\x97\x62\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x07\x44\x72\x61\x77\x69\x6e\x67\x07\x00\x00\ -\x00\x0d\x44\x72\x61\x66\x74\x5f\x44\x72\x61\x77\x69\x6e\x67\x01\ -\x03\x00\x00\x00\x24\x90\x78\x62\x9e\x30\x55\x30\x8c\x30\x5f\x30\ -\xaa\x30\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\x92\x56\xf3\x97\ -\x62\x4e\x0a\x30\x6b\x91\x4d\x7f\x6e\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x2d\x50\x75\x74\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\ -\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x6f\x6e\x20\ -\x61\x20\x44\x72\x61\x77\x69\x6e\x67\x20\x73\x68\x65\x65\x74\x2e\ -\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x44\x72\x61\x77\x69\ -\x6e\x67\x01\x03\x00\x00\x00\x04\x7d\xe8\x96\xc6\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x0a\x44\ -\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\x26\x30\ -\xa2\x30\xaf\x30\xc6\x30\xa3\x30\xd6\x30\x6a\x30\xaa\x30\xd6\x30\ -\xb8\x30\xa7\x30\xaf\x30\xc8\x30\x92\x7d\xe8\x96\xc6\x30\x57\x30\ -\x7e\x30\x59\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x45\ -\x64\x69\x74\x73\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\ -\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\ -\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\x14\x30\xd5\x30\xa3\x30\ -\xcb\x30\xc3\x30\xb7\x30\xe5\x00\x20\x30\xe9\x30\xa4\x30\xf3\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x46\x69\x6e\x69\x73\x68\x20\ -\x6c\x69\x6e\x65\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x46\ -\x69\x6e\x69\x73\x68\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x44\x00\ -\x46\x00\x69\x00\x6e\x00\x69\x00\x73\x00\x68\x00\x65\x00\x73\x00\ -\x20\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\ -\x77\x00\x69\x00\x74\x00\x68\x00\x6f\x00\x75\x00\x74\x00\x20\x00\ -\x63\x00\x6c\x00\x6f\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ -\x69\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x46\x69\x6e\ -\x69\x73\x68\x65\x73\x20\x61\x20\x6c\x69\x6e\x65\x20\x77\x69\x74\ -\x68\x6f\x75\x74\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\x07\ -\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\x69\x73\x68\ -\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x4a\xff\x12\x70\xb9\x30\x92\ -\x63\x07\x5b\x9a\x30\x57\x30\x66\x7d\xda\x30\x92\x4f\x5c\x62\x10\ -\x30\x57\x30\x7e\x30\x59\x30\x02\x00\x5b\x00\x43\x00\x74\x00\x72\ -\x00\x6c\x00\x5d\x00\x3a\x30\xb9\x30\xca\x30\xc3\x30\xd7\x30\x01\ -\x00\x5b\x00\x53\x00\x68\x00\x69\x00\x66\x00\x74\x00\x5d\x00\x3a\ -\x62\xd8\x67\x5f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x43\x72\ -\x65\x61\x74\x65\x73\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\x74\x20\ -\x6c\x69\x6e\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ -\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\ -\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\ -\x5f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x04\x76\xf4\x7d\xda\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4c\x69\x6e\x65\x07\x00\x00\ -\x00\x0a\x44\x72\x61\x66\x74\x5f\x4c\x69\x6e\x65\x01\x03\x00\x00\ -\x00\x04\x79\xfb\x52\xd5\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ -\x4d\x6f\x76\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4d\ -\x6f\x76\x65\x01\x03\x00\x00\x00\x6e\x00\x32\x70\xb9\x95\x93\x30\ -\x67\x90\x78\x62\x9e\x30\x57\x30\x5f\x30\xaa\x30\xd6\x30\xb8\x30\ -\xa7\x30\xaf\x30\xc8\x30\x92\x79\xfb\x52\xd5\x30\x57\x30\x7e\x30\ -\x59\x30\x02\x00\x5b\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x5d\x30\ -\x67\x30\xb9\x30\xca\x30\xc3\x30\xd7\x30\x01\x00\x5b\x00\x53\x00\ -\x68\x00\x69\x00\x66\x00\x74\x00\x5d\x30\x67\x62\xd8\x67\x5f\x30\ -\x01\x00\x5b\x00\x41\x00\x6c\x00\x74\x00\x5d\x30\x67\x30\xb3\x30\ -\xd4\x30\xfc\x30\x02\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x5a\x4d\x6f\x76\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ -\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\x74\x77\ -\x65\x65\x6e\x20\x32\x20\x70\x6f\x69\x6e\x74\x73\x2e\x20\x43\x54\ -\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\ -\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\ -\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0a\ -\x44\x72\x61\x66\x74\x5f\x4d\x6f\x76\x65\x01\x03\x00\x00\x00\x0a\ -\x30\xaa\x30\xd5\x30\xbb\x30\xc3\x30\xc8\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x0c\x44\ -\x72\x61\x66\x74\x5f\x4f\x66\x66\x73\x65\x74\x01\x03\x00\x00\x00\ -\x90\x00\x4f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x00\x73\x00\ -\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\x00\x63\x00\x74\x00\ -\x69\x00\x76\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x63\x00\x74\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ -\x20\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\ -\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\ -\x74\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\ -\x72\x00\x61\x00\x69\x00\x6e\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\ -\x54\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x70\x00\ -\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x48\x4f\x66\x66\x73\x65\ -\x74\x73\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\ -\x6a\x65\x63\x74\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ -\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\ -\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\ -\x6f\x70\x79\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x4f\x66\ -\x66\x73\x65\x74\x01\x03\x00\x00\x00\x76\x00\x43\x00\x72\x00\x65\ -\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x72\ -\x00\x65\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x70\ -\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x2e\x00\x20\ -\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x74\x00\x6f\x00\x20\ -\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x2c\x00\x20\x00\x53\x00\x48\ -\x00\x49\x00\x46\x00\x54\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\ -\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3b\x43\x72\x65\x61\x74\x65\ -\x73\x20\x61\x20\x72\x65\x67\x75\x6c\x61\x72\x20\x70\x6f\x6c\x79\ -\x67\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\ -\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\ -\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\ -\x50\x6f\x6c\x79\x67\x6f\x6e\x01\x03\x00\x00\x00\x06\x59\x1a\x89\ -\xd2\x5f\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x50\x6f\x6c\ -\x79\x67\x6f\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x50\ -\x6f\x6c\x79\x67\x6f\x6e\x01\x03\x00\x00\x00\x38\x00\x32\x00\x20\ -\x70\xb9\x30\x92\x63\x07\x5b\x9a\x30\x57\x56\xdb\x89\xd2\x5f\x62\ -\x30\x92\x4f\x5c\x62\x10\x30\x57\x30\x7e\x30\x59\x30\x02\x00\x5b\ -\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x5d\x30\x67\x30\xb9\x30\xca\ -\x30\xc3\x30\xd7\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x43\x72\ -\x65\x61\x74\x65\x73\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\x74\x20\ -\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\ -\x74\x6f\x20\x73\x6e\x61\x70\x07\x00\x00\x00\x0f\x44\x72\x61\x66\ -\x74\x5f\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\ -\x06\x56\xdb\x89\xd2\x5f\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x09\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x0f\x44\ -\x72\x61\x66\x74\x5f\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\ -\x00\x00\x00\x04\x56\xde\x8e\xe2\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x06\x52\x6f\x74\x61\x74\x65\x07\x00\x00\x00\x0c\x44\x72\x61\ -\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\x01\x03\x00\x00\x00\x64\x90\ -\x78\x62\x9e\x30\x57\x30\x5f\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\ -\xaf\x30\xc8\x30\x92\x56\xde\x8e\xe2\x30\x57\x30\x7e\x30\x59\x30\ -\x02\x00\x5b\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x5d\x30\x67\x30\ -\xb9\x30\xca\x30\xc3\x30\xd7\x30\x01\x00\x5b\x00\x53\x00\x68\x00\ -\x69\x00\x66\x00\x74\x00\x5d\x30\x67\x62\xd8\x67\x5f\x30\x01\x00\ -\x5b\x00\x41\x00\x6c\x00\x74\x00\x5d\x30\x67\x30\xb3\x30\xd4\x30\ -\xfc\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x6f\x74\ -\x61\x74\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ -\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\ -\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\ -\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\ -\x20\x63\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x6f\x70\x79\x07\ -\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\ -\x01\x03\x00\x00\x00\x08\x62\xe1\x59\x27\x7e\x2e\x5c\x0f\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x07\x00\x00\ -\x00\x0b\x44\x72\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\x01\x03\x00\ -\x00\x00\xb8\x00\x53\x00\x63\x00\x61\x00\x6c\x00\x65\x00\x73\x00\ -\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ -\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x66\x00\x72\x00\ -\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\x62\x00\x61\x00\x73\x00\ -\x65\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x2e\x00\ -\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x74\x00\x6f\x00\ -\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x2c\x00\x20\x00\x53\x00\ -\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ -\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\ -\x6e\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x74\x00\ -\x6f\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x79\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x5c\x53\x63\x61\x6c\x65\x73\x20\x74\x68\x65\x20\ -\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x20\x66\x72\x6f\x6d\x20\x61\x20\x62\x61\x73\x65\x20\x70\x6f\x69\ -\x6e\x74\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\ -\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\ -\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\ -\x79\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x53\x63\x61\x6c\ -\x65\x01\x03\x00\x00\x00\x0e\x30\xb0\x30\xeb\x30\xfc\x30\xd7\x30\ -\x92\x90\x78\x62\x9e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\ -\x65\x6c\x65\x63\x74\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x11\ -\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x47\x72\x6f\x75\ -\x70\x01\x03\x00\x00\x00\x6e\x00\x53\x00\x65\x00\x6c\x00\x65\x00\ -\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ -\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x74\x00\x68\x00\x65\x00\ -\x20\x00\x73\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x70\x00\x61\x00\ -\x72\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x61\x00\x73\x00\ -\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x67\x00\x72\x00\ -\x6f\x00\x75\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x53\ -\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\ -\x74\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x73\x61\x6d\x65\ -\x20\x70\x61\x72\x65\x6e\x74\x73\x20\x61\x73\x20\x74\x68\x69\x73\ -\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\ -\x5f\x53\x65\x6c\x65\x63\x74\x47\x72\x6f\x75\x70\x01\x03\x00\x00\ -\x00\x24\x30\xb8\x30\xaa\x30\xe1\x30\xc8\x30\xea\x30\x92\x4f\x5c\ -\x62\x10\x30\x59\x30\x8b\x4f\x5c\x69\x6d\x97\x62\x30\x92\x90\x78\ -\x62\x9e\x30\x59\x30\x8b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\ -\x53\x65\x6c\x65\x63\x74\x20\x61\x20\x77\x6f\x72\x6b\x69\x6e\x67\ -\x20\x70\x6c\x61\x6e\x65\x20\x66\x6f\x72\x20\x67\x65\x6f\x6d\x65\ -\x74\x72\x79\x20\x63\x72\x65\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\ -\x11\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\ -\x6e\x65\x01\x03\x00\x00\x00\x0c\x97\x62\x30\x92\x90\x78\x62\x9e\ -\x30\x59\x30\x8b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x65\ -\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x44\x72\ -\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x01\ -\x03\x00\x00\x00\x54\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\ -\x65\x00\x73\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\ -\x20\x00\x32\x00\x44\x00\x20\x00\x76\x00\x69\x00\x65\x00\x77\x00\ -\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ -\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x2a\x43\x72\x65\x61\x74\x65\x73\x20\x53\x68\x61\x70\x65\ -\x20\x32\x44\x20\x76\x69\x65\x77\x73\x20\x6f\x66\x20\x73\x65\x6c\ -\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ -\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x61\x70\x65\x32\x44\x56\ -\x69\x65\x77\x01\x03\x00\x00\x00\x1a\x00\x53\x00\x68\x00\x61\x00\ -\x70\x00\x65\x00\x20\x00\x32\x00\x44\x00\x20\x00\x76\x00\x69\x00\ -\x65\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x68\x61\ -\x70\x65\x20\x32\x44\x20\x76\x69\x65\x77\x07\x00\x00\x00\x11\x44\ -\x72\x61\x66\x74\x5f\x53\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\ -\x01\x03\x00\x00\x00\x44\x30\xa2\x30\xce\x30\xc6\x30\xfc\x30\xb7\ -\x30\xe7\x30\xf3\xff\x08\x6c\xe8\x91\xc8\x30\x01\x30\xb3\x30\xe1\ -\x30\xf3\x30\xc8\xff\x09\x30\x92\x4f\x5c\x62\x10\x30\x57\x30\x7e\ -\x30\x59\x30\x02\x00\x5b\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x5d\ -\x30\x67\x30\xb9\x30\xca\x30\xc3\x30\xd7\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x23\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\ -\x6e\x6e\x6f\x74\x61\x74\x69\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\ -\x74\x6f\x20\x73\x6e\x61\x70\x07\x00\x00\x00\x0a\x44\x72\x61\x66\ -\x74\x5f\x54\x65\x78\x74\x01\x03\x00\x00\x00\x08\x30\xc6\x30\xad\ -\x30\xb9\x30\xc8\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\x65\ -\x78\x74\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\x78\ -\x74\x01\x03\x00\x00\x00\x2e\x00\x54\x00\x6f\x00\x67\x00\x67\x00\ -\x6c\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\ -\x72\x00\x75\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x4d\x00\ -\x6f\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x54\ -\x6f\x67\x67\x6c\x65\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x69\x6f\ -\x6e\x20\x4d\x6f\x64\x65\x07\x00\x00\x00\x1c\x44\x72\x61\x66\x74\ -\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\ -\x69\x6f\x6e\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x5e\x00\x54\x00\ -\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x74\x00\ -\x68\x00\x65\x00\x20\x00\x43\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\ -\x72\x00\x75\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ -\x4d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ -\x20\x00\x6e\x00\x65\x00\x78\x00\x74\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x2e\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x2f\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\x65\ -\x20\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x4d\x6f\ -\x64\x65\x20\x66\x6f\x72\x20\x6e\x65\x78\x74\x20\x6f\x62\x6a\x65\ -\x63\x74\x73\x2e\x07\x00\x00\x00\x1c\x44\x72\x61\x66\x74\x5f\x54\ -\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\ -\x6e\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x28\x00\x54\x00\x6f\x00\ -\x67\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\ -\x74\x00\x69\x00\x6e\x00\x75\x00\x65\x00\x20\x00\x4d\x00\x6f\x00\ -\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x6f\x67\ -\x67\x6c\x65\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x20\x4d\x6f\x64\ -\x65\x07\x00\x00\x00\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\ -\x6c\x65\x43\x6f\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\x01\x03\ -\x00\x00\x00\x58\x00\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\ -\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x43\x00\x6f\ -\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x65\x00\x20\x00\x4d\ -\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ -\x00\x6e\x00\x65\x00\x78\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6d\ -\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x73\x00\x2e\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x2c\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\ -\x65\x20\x43\x6f\x6e\x74\x69\x6e\x75\x65\x20\x4d\x6f\x64\x65\x20\ -\x66\x6f\x72\x20\x6e\x65\x78\x74\x20\x63\x6f\x6d\x6d\x61\x6e\x64\ -\x73\x2e\x07\x00\x00\x00\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\ -\x67\x6c\x65\x43\x6f\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\x01\ -\x03\x00\x00\x00\x2a\x90\x78\x62\x9e\x30\x57\x30\x5f\x30\xaa\x30\ -\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\x6e\x88\x68\x79\x3a\x30\ -\xe2\x30\xfc\x30\xc9\x30\x92\x59\x09\x66\xf4\x30\x59\x30\x8b\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x46\x53\x77\x61\x70\x73\x20\x64\ -\x69\x73\x70\x6c\x61\x79\x20\x6d\x6f\x64\x65\x20\x6f\x66\x20\x73\ -\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ -\x62\x65\x74\x77\x65\x65\x6e\x20\x77\x69\x72\x65\x66\x72\x61\x6d\ -\x65\x20\x61\x6e\x64\x20\x66\x6c\x61\x74\x6c\x69\x6e\x65\x73\x07\ -\x00\x00\x00\x17\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\ -\x44\x69\x73\x70\x6c\x61\x79\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\ -\x16\x88\x68\x79\x3a\x30\xe2\x30\xfc\x30\xc9\x30\x92\x52\x07\x30\ -\x8a\x66\xff\x30\x48\x30\x8b\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x13\x54\x6f\x67\x67\x6c\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\ -\x6d\x6f\x64\x65\x07\x00\x00\x00\x17\x44\x72\x61\x66\x74\x5f\x54\ -\x6f\x67\x67\x6c\x65\x44\x69\x73\x70\x6c\x61\x79\x4d\x6f\x64\x65\ -\x01\x03\x00\x00\x00\x0c\x00\x54\x00\x72\x00\x69\x00\x6d\x00\x65\ -\x00\x78\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x54\x72\x69\x6d\ -\x65\x78\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x54\x72\x69\ -\x6d\x65\x78\x01\x03\x00\x00\x01\x12\x00\x54\x00\x72\x00\x69\x00\ -\x6d\x00\x73\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x78\x00\ -\x74\x00\x65\x00\x6e\x00\x64\x00\x73\x00\x20\x00\x74\x00\x68\x00\ -\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ -\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ -\x74\x00\x2c\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x78\x00\ -\x74\x00\x72\x00\x75\x00\x64\x00\x65\x00\x73\x00\x20\x00\x73\x00\ -\x69\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x66\x00\x61\x00\ -\x63\x00\x65\x00\x73\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\ -\x4c\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x73\x00\x2c\x00\ -\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x63\x00\ -\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\ -\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x75\x00\x72\x00\ -\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x73\x00\x65\x00\x67\x00\ -\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x72\x00\x20\x00\ -\x74\x00\x6f\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\ -\x6c\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x69\x00\ -\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x73\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x89\x54\x72\x69\x6d\x73\x20\x6f\x72\x20\x65\x78\ -\x74\x65\x6e\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\ -\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x6f\x72\x20\x65\x78\ -\x74\x72\x75\x64\x65\x73\x20\x73\x69\x6e\x67\x6c\x65\x20\x66\x61\ -\x63\x65\x73\x2e\x20\x43\x54\x52\x4c\x20\x73\x6e\x61\x70\x73\x2c\ -\x20\x53\x48\x49\x46\x54\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\ -\x73\x20\x74\x6f\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x73\x65\x67\ -\x6d\x65\x6e\x74\x20\x6f\x72\x20\x74\x6f\x20\x6e\x6f\x72\x6d\x61\ -\x6c\x2c\x20\x41\x4c\x54\x20\x69\x6e\x76\x65\x72\x74\x73\x07\x00\ -\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x54\x72\x69\x6d\x65\x78\x01\ -\x03\x00\x00\x00\x14\x67\x00\x5f\x8c\x30\x6e\x64\xcd\x4f\x5c\x30\ -\x92\x51\x43\x30\x6b\x62\x3b\x30\x59\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x11\x55\x6e\x64\x6f\x20\x6c\x61\x73\x74\x20\x73\x65\x67\ -\x6d\x65\x6e\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x55\ -\x6e\x64\x6f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x2a\x63\xcf\x75\ -\x3b\x30\x55\x30\x8c\x30\x8b\x7d\xda\x30\x6e\x67\x00\x5f\x8c\x30\ -\x6e\x63\xcf\x75\x3b\x90\xe8\x52\x06\x30\x92\x51\x43\x30\x6b\x62\ -\x3b\x30\x57\x30\x7e\x30\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x35\x55\x6e\x64\x6f\x65\x73\x20\x74\x68\x65\x20\x6c\x61\x73\x74\ -\x20\x64\x72\x61\x77\x6e\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\ -\x66\x20\x74\x68\x65\x20\x6c\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\ -\x20\x64\x72\x61\x77\x6e\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\ -\x5f\x55\x6e\x64\x6f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\xba\x00\ -\x4a\x00\x6f\x00\x69\x00\x6e\x00\x73\x00\x20\x00\x74\x00\x68\x00\ -\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ -\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ -\x74\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\ -\x6f\x00\x6e\x00\x65\x00\x2c\x00\x20\x00\x6f\x00\x72\x00\x20\x00\ -\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x73\x00\ -\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x64\x00\x20\x00\ -\x77\x00\x69\x00\x72\x00\x65\x00\x73\x00\x20\x00\x74\x00\x6f\x00\ -\x20\x00\x66\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x64\x00\x20\x00\ -\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x2c\x00\x20\x00\x6f\x00\ -\x72\x00\x20\x00\x75\x00\x6e\x00\x69\x00\x74\x00\x65\x00\x20\x00\ -\x66\x00\x61\x00\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x5d\x4a\x6f\x69\x6e\x73\x20\x74\x68\x65\x20\x73\x65\x6c\ -\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\ -\x74\x6f\x20\x6f\x6e\x65\x2c\x20\x6f\x72\x20\x63\x6f\x6e\x76\x65\ -\x72\x74\x73\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x73\ -\x20\x74\x6f\x20\x66\x69\x6c\x6c\x65\x64\x20\x66\x61\x63\x65\x73\ -\x2c\x20\x6f\x72\x20\x75\x6e\x69\x74\x65\x20\x66\x61\x63\x65\x73\ -\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x55\x70\x67\x72\x61\ -\x64\x65\x01\x03\x00\x00\x00\x0e\x30\xa2\x30\xc3\x30\xd7\x30\xb0\ -\x30\xec\x30\xfc\x30\xc9\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ -\x55\x70\x67\x72\x61\x64\x65\x07\x00\x00\x00\x0d\x44\x72\x61\x66\ -\x74\x5f\x55\x70\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x7e\x00\ -\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\ -\x61\x00\x20\x00\x6d\x00\x75\x00\x6c\x00\x74\x00\x69\x00\x70\x00\ -\x6c\x00\x65\x00\x2d\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\ -\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x2e\x00\x20\x00\x43\x00\ -\x54\x00\x52\x00\x4c\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x73\x00\ -\x6e\x00\x61\x00\x70\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\ -\x46\x00\x54\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\ -\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x3f\x43\x72\x65\x61\x74\x65\x73\x20\x61\ -\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\x70\x6f\x69\x6e\x74\x20\ -\x77\x69\x72\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ -\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\ -\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\ -\x5f\x57\x69\x72\x65\x01\x03\x00\x00\x00\x04\x90\x23\x7d\xda\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x69\x72\x65\x07\x00\x00\ -\x00\x0a\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x01\x03\x00\x00\ -\x00\x20\x90\x23\x7d\xda\x30\x68\x00\x42\x30\xb9\x30\xd7\x30\xe9\ -\x30\xa4\x30\xf3\x66\xf2\x7d\xda\x30\x92\x76\xf8\x4e\x92\x59\x09\ -\x63\xdb\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x43\x6f\x6e\x76\ -\x65\x72\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x57\x69\x72\ -\x65\x20\x61\x6e\x64\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\ -\x00\x13\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x54\x6f\x42\x53\ -\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x1c\x90\x23\x7d\xda\x30\ -\x92\x00\x42\x30\xb9\x30\xd7\x30\xe9\x30\xa4\x30\xf3\x66\xf2\x7d\ -\xda\x30\x6b\x59\x09\x63\xdb\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0f\x57\x69\x72\x65\x20\x74\x6f\x20\x42\x53\x70\x6c\x69\x6e\x65\ -\x07\x00\x00\x00\x13\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x54\ -\x6f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x0e\x00\x41\ -\x00\x6c\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x07\x41\x6c\x74\x20\x6d\x6f\x64\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x3e\x00\x41\x00\x6c\x00\x74\x00\x65\x00\x72\x00\ -\x6e\x00\x61\x00\x74\x00\x65\x00\x20\x00\x53\x00\x56\x00\x47\x00\ -\x20\x00\x50\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x6e\x00\ -\x73\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x74\x00\x69\x00\ -\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x41\x6c\x74\ -\x65\x72\x6e\x61\x74\x65\x20\x53\x56\x47\x20\x50\x61\x74\x74\x65\ -\x72\x6e\x73\x20\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x5a\x00\x41\x00\x6c\x00\x77\x00\x61\x00\x79\x00\x73\ -\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x74\x00\x6f\ -\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\ -\x00\x20\x00\x28\x00\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\x6c\ -\x00\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6d\ -\x00\x6f\x00\x64\x00\x20\x00\x6b\x00\x65\x00\x79\x00\x29\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x2d\x41\x6c\x77\x61\x79\x73\x20\x73\ -\x6e\x61\x70\x20\x74\x6f\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x28\ -\x64\x69\x73\x61\x62\x6c\x65\x20\x73\x6e\x61\x70\x20\x6d\x6f\x64\ -\x20\x6b\x65\x79\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x41\x00\ -\x72\x00\x69\x00\x61\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x05\x41\x72\x69\x61\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x42\ -\x00\x61\x00\x63\x00\x6b\x00\x73\x00\x6c\x00\x61\x00\x73\x00\x68\ -\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\ -\x63\x6b\x73\x6c\x61\x73\x68\x20\x35\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x16\x00\x42\x00\x61\x00\x63\x00\x6b\x00\x73\x00\x6c\x00\x61\x00\ -\x73\x00\x68\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x37\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x16\x00\x42\x00\x61\x00\x63\x00\x6b\x00\x73\x00\x6c\ -\x00\x61\x00\x73\x00\x68\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x39\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x7e\x00\x43\x00\x68\x00\x65\x00\x63\x00\ -\x6b\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\ -\x66\x00\x20\x00\x79\x00\x6f\x00\x75\x00\x20\x00\x77\x00\x61\x00\ -\x6e\x00\x74\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x61\x00\ -\x72\x00\x65\x00\x61\x00\x73\x00\x20\x00\x28\x00\x33\x00\x44\x00\ -\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x29\x00\x20\x00\ -\x74\x00\x6f\x00\x20\x00\x62\x00\x65\x00\x20\x00\x69\x00\x6d\x00\ -\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x64\x00\x20\x00\x74\x00\ -\x6f\x00\x6f\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3f\x43\ -\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x79\x6f\x75\ -\x20\x77\x61\x6e\x74\x20\x74\x68\x65\x20\x61\x72\x65\x61\x73\x20\ -\x28\x33\x44\x20\x66\x61\x63\x65\x73\x29\x20\x74\x6f\x20\x62\x65\ -\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\x2e\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\xa6\x00\x43\x00\x68\x00\x65\x00\x63\x00\x6b\ -\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x66\ -\x00\x20\x00\x79\x00\x6f\x00\x75\x00\x20\x00\x77\x00\x61\x00\x6e\ -\x00\x74\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6e\x00\x6f\ -\x00\x6e\x00\x2d\x00\x6e\x00\x61\x00\x6d\x00\x65\x00\x64\x00\x20\ -\x00\x62\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x73\x00\x20\x00\x28\ -\x00\x62\x00\x65\x00\x67\x00\x69\x00\x6e\x00\x6e\x00\x69\x00\x6e\ -\x00\x67\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x61\ -\x00\x20\x00\x2a\x00\x29\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\ -\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\ -\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x6f\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x53\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\ -\x20\x69\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x68\x65\ -\x20\x6e\x6f\x6e\x2d\x6e\x61\x6d\x65\x64\x20\x62\x6c\x6f\x63\x6b\ -\x73\x20\x28\x62\x65\x67\x69\x6e\x6e\x69\x6e\x67\x20\x77\x69\x74\ -\x68\x20\x61\x20\x2a\x29\x20\x74\x6f\x20\x62\x65\x20\x69\x6d\x70\ -\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x10\x00\x43\x00\x69\x00\x72\x00\x63\x00\x6c\x00\x65\x00\x20\x00\ -\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x69\x72\x63\x6c\ -\x65\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x43\x00\x69\x00\ -\x72\x00\x63\x00\x6c\x00\x65\x00\x20\x00\x37\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x37\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x10\x00\x43\x00\x69\x00\x72\x00\x63\x00\x6c\x00\ -\x65\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\ -\x69\x72\x63\x6c\x65\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x7d\ -\xda\x5e\x45\x30\x6e\x30\xab\x30\xe9\x30\xfc\x30\xde\x30\xc3\x30\ -\xd7\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x43\x6f\x6c\x6f\x72\ -\x20\x6d\x61\x70\x70\x65\x64\x20\x74\x6f\x20\x6c\x69\x6e\x65\x77\ -\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x30\xab\x30\xe9\ -\x30\xfc\x30\xde\x30\xc3\x30\xd4\x30\xf3\x30\xb0\x30\xd5\x30\xa1\ -\x30\xa4\x30\xeb\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x43\x6f\ -\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x43\x00\x6f\x00\x6e\x00\x73\ -\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x6d\x00\x6f\ -\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x73\ -\x74\x72\x61\x69\x6e\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x06\x69\xcb\x90\x20\x72\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0c\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x0a\x69\xcb\x90\x20\x72\x69\x30\x6e\x82\x72\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x12\x43\x6f\x6e\x73\x74\x72\x75\ -\x63\x74\x69\x6f\x6e\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x2e\x00\x43\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\ -\x75\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x67\x00\ -\x72\x00\x6f\x00\x75\x00\x70\x00\x20\x00\x6e\x00\x61\x00\x6d\x00\ -\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\x6f\x6e\x73\x74\ -\x72\x75\x63\x74\x69\x6f\x6e\x20\x67\x72\x6f\x75\x70\x20\x6e\x61\ -\x6d\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x00\x43\x00\x72\x00\x65\ -\x00\x61\x00\x74\x00\x65\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\ -\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x63\x00\x20\x00\x6f\ -\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x19\x43\x72\x65\x61\x74\x65\x20\x70\x61\x72\ -\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x16\x00\x44\x00\x58\x00\x46\x5f\x62\x5f\ -\x0f\x30\x6e\x30\xaa\x30\xd7\x30\xb7\x30\xe7\x30\xf3\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x12\x44\x58\x46\x20\x66\x6f\x72\x6d\x61\ -\x74\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x0e\x30\xc7\x30\xd5\x30\xa9\x30\xeb\x30\xc8\x30\x6e\x82\x72\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x44\x65\x66\x61\x75\x6c\x74\ -\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x30\xc6\ -\x30\xad\x30\xb9\x30\xc8\x30\x68\x5b\xf8\x6c\xd5\x30\x6e\x30\xc7\ -\x30\xd5\x30\xa9\x30\xeb\x30\xc8\x30\x6e\x9a\xd8\x30\x55\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x27\x44\x65\x66\x61\x75\x6c\x74\x20\ -\x68\x65\x69\x67\x68\x74\x20\x66\x6f\x72\x20\x74\x65\x78\x74\x73\ -\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x0a\x65\xe2\x5b\x9a\x30\x6e\x7d\xda\x5e\ -\x45\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\x65\x66\x61\x75\ -\x6c\x74\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x1e\x30\xc7\x30\xd5\x30\xa9\x30\xeb\x30\xc8\x30\x6e\ -\x30\xc6\x30\xf3\x30\xd7\x30\xec\x30\xfc\x30\xc8\x30\xb7\x30\xfc\ -\x30\xc8\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x44\x65\x66\x61\ -\x75\x6c\x74\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x20\x73\x68\x65\ -\x65\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x30\xc7\x30\xd5\x30\xa9\ -\x30\xeb\x30\xc8\x30\x6e\x30\xc6\x30\xad\x30\xb9\x30\xc8\x30\x6e\ -\x30\xd5\x30\xa9\x30\xf3\x30\xc8\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x11\x44\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x78\x74\x20\x66\ -\x6f\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x30\xc7\x30\xd5\x30\ -\xa9\x30\xeb\x30\xc8\x30\x6e\x30\xc6\x30\xad\x30\xb9\x30\xc8\x9a\ -\xd8\x30\x55\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x44\x65\x66\ -\x61\x75\x6c\x74\x20\x74\x65\x78\x74\x20\x68\x65\x69\x67\x68\x74\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x12\x30\xc7\x30\xd5\x30\xa9\x30\xeb\ -\x30\xc8\x30\x6e\x4f\x5c\x69\x6d\x97\x62\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x15\x44\x65\x66\x61\x75\x6c\x74\x20\x77\x6f\x72\x6b\ -\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x16\x5b\xf8\x6c\xd5\x53\xca\x30\x73\x77\xe2\x53\x70\x30\x6e\x30\ -\xb9\x30\xbf\x30\xa4\x30\xeb\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x1f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x26\x20\x4c\x65\ -\x61\x64\x65\x72\x20\x61\x72\x72\x6f\x77\x20\x73\x74\x79\x6c\x65\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x08\x5b\xf8\x6c\xd5\x7c\xbe\x5e\xa6\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x44\x69\x6d\x65\x6e\x73\ -\x69\x6f\x6e\x73\x20\x70\x72\x65\x63\x69\x73\x69\x6f\x6e\x20\x6c\ -\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x44\x00\x6f\ -\x00\x74\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ -\x44\x6f\x74\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x44\x00\ -\x6f\x00\x74\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x05\x44\x6f\x74\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x44\ -\x00\x6f\x00\x74\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x05\x44\x6f\x74\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\ -\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x69\x00\x6e\x00\ -\x74\x00\x65\x00\x72\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\ -\x6d\x00\x6f\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x14\x44\x72\x61\x66\x74\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\ -\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x48\x00\x45\x00\ -\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x33\x00\x44\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\ -\x20\x00\x61\x00\x73\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\ -\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6d\x00\x65\x00\x73\x00\ -\x68\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x45\ -\x78\x70\x6f\x72\x74\x20\x33\x44\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x20\x61\x73\x20\x70\x6f\x6c\x79\x66\x61\x63\x65\x20\x6d\x65\x73\ -\x68\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x46\x00\x69\x00\ -\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ -\x74\x00\x73\x00\x20\x00\x62\x00\x79\x00\x20\x00\x64\x00\x65\x00\ -\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x17\x46\x69\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ -\x62\x79\x20\x64\x65\x66\x61\x75\x6c\x74\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x16\x4e\x00\x82\x2c\x76\x84\x30\x6a\x30\xc9\x30\xe9\x30\xd5\ -\x30\xc8\x30\x6e\x8a\x2d\x5b\x9a\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x16\x47\x65\x6e\x65\x72\x61\x6c\x20\x44\x72\x61\x66\x74\x20\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\ -\x51\x68\x82\x2c\x76\x84\x30\x6a\x8a\x2d\x5b\x9a\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\ -\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x47\ -\x00\x6c\x00\x6f\x00\x62\x00\x61\x00\x6c\x00\x20\x00\x63\x00\x6f\ -\x00\x70\x00\x79\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x10\x47\x6c\x6f\x62\x61\x6c\x20\x63\ -\x6f\x70\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\ -\x00\x47\x00\x72\x00\x69\x00\x64\x00\x20\x00\x73\x00\x70\x00\x61\ -\x00\x63\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0c\x47\x72\x69\x64\x20\x73\x70\x61\x63\x69\x6e\x67\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x30\x00\x47\x00\x72\x00\x6f\x00\x75\x00\x70\ -\x00\x20\x00\x6c\x00\x61\x00\x79\x00\x65\x00\x72\x00\x73\x00\x20\ -\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x6c\x00\x6f\ -\x00\x63\x00\x6b\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\ -\x47\x72\x6f\x75\x70\x20\x6c\x61\x79\x65\x72\x73\x20\x69\x6e\x74\ -\x6f\x20\x62\x6c\x6f\x63\x6b\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x1a\ -\x00\x48\x00\x65\x00\x72\x00\x65\x00\x20\x00\x79\x00\x6f\x00\x75\ -\x00\x20\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x73\x00\x70\x00\x65\ -\x00\x63\x00\x69\x00\x66\x00\x79\x00\x20\x00\x61\x00\x20\x00\x64\ -\x00\x69\x00\x72\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x79\ -\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\ -\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\ -\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x63\x00\x6f\ -\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x69\x00\x6e\x00\x67\ -\x00\x20\x00\x3c\x00\x70\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\ -\x00\x6e\x00\x3e\x00\x20\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\ -\x00\x69\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x74\ -\x00\x68\x00\x61\x00\x74\x00\x20\x00\x63\x00\x61\x00\x6e\x00\x20\ -\x00\x62\x00\x65\x00\x20\x00\x61\x00\x64\x00\x64\x00\x65\x00\x64\ -\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ -\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\ -\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x68\ -\x00\x61\x00\x74\x00\x63\x00\x68\x00\x20\x00\x70\x00\x61\x00\x74\ -\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x8d\x48\x65\x72\x65\x20\x79\x6f\x75\x20\x63\x61\x6e\ -\x20\x73\x70\x65\x63\x69\x66\x79\x20\x61\x20\x64\x69\x72\x65\x63\ -\x74\x6f\x72\x79\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\ -\x53\x56\x47\x20\x66\x69\x6c\x65\x73\x20\x63\x6f\x6e\x74\x61\x69\ -\x6e\x69\x6e\x67\x20\x3c\x70\x61\x74\x74\x65\x72\x6e\x3e\x20\x64\ -\x65\x66\x69\x6e\x69\x74\x69\x6f\x6e\x73\x20\x74\x68\x61\x74\x20\ -\x63\x61\x6e\x20\x62\x65\x20\x61\x64\x64\x65\x64\x20\x74\x6f\x20\ -\x74\x68\x65\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x44\x72\x61\ -\x66\x74\x20\x68\x61\x74\x63\x68\x20\x70\x61\x74\x74\x65\x72\x6e\ -\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x56\x00\x49\x00\x66\x00\x20\x00\ -\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\ -\x20\x00\x61\x00\x20\x00\x67\x00\x72\x00\x69\x00\x64\x00\x20\x00\ -\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\x70\x00\x70\x00\ -\x65\x00\x61\x00\x72\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\ -\x20\x00\x64\x00\x72\x00\x61\x00\x77\x00\x69\x00\x6e\x00\x67\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\x66\x20\x63\x68\x65\x63\ -\x6b\x65\x64\x2c\x20\x61\x20\x67\x72\x69\x64\x20\x77\x69\x6c\x6c\ -\x20\x61\x70\x70\x65\x61\x72\x20\x77\x68\x65\x6e\x20\x64\x72\x61\ -\x77\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xca\x00\x49\x00\x66\ -\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\ -\x00\x2c\x00\x20\x00\x66\x00\x72\x00\x65\x00\x65\x00\x63\x00\x61\ -\x00\x64\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x74\ -\x00\x72\x00\x79\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x6a\x00\x6f\ -\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x69\x00\x6e\ -\x00\x63\x00\x69\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\ -\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x69\ -\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\ -\x00\x73\x00\x2e\x00\x20\x00\x42\x00\x65\x00\x77\x00\x61\x00\x72\ -\x00\x65\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ -\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x74\x00\x61\x00\x6b\x00\x65\ -\x00\x20\x00\x61\x00\x20\x00\x77\x00\x68\x00\x69\x00\x6c\x00\x65\ -\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x65\ -\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x66\x72\x65\x65\ -\x63\x61\x64\x20\x77\x69\x6c\x6c\x20\x74\x72\x79\x20\x74\x6f\x20\ -\x6a\x6f\x69\x6e\x74\x20\x63\x6f\x69\x6e\x63\x69\x64\x65\x6e\x74\ -\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\x77\x69\ -\x72\x65\x73\x2e\x20\x42\x65\x77\x61\x72\x65\x2c\x20\x74\x68\x69\ -\x73\x20\x63\x61\x6e\x20\x74\x61\x6b\x65\x20\x61\x20\x77\x68\x69\ -\x6c\x65\x2e\x2e\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa2\x00\x49\x00\ -\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\ -\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\ -\x64\x00\x2c\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x63\x00\ -\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x69\x00\x6e\x00\ -\x67\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\ -\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\ -\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x64\x00\ -\x20\x00\x61\x00\x73\x00\x20\x00\x33\x00\x64\x00\x20\x00\x70\x00\ -\x6f\x00\x6c\x00\x79\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x51\x49\x66\x20\x74\x68\x69\x73\ -\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x6c\x6c\ -\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x63\x6f\x6e\x74\x61\x69\x6e\ -\x69\x6e\x67\x20\x66\x61\x63\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\ -\x65\x20\x65\x78\x70\x6f\x72\x74\x65\x64\x20\x61\x73\x20\x33\x64\ -\x20\x70\x6f\x6c\x79\x66\x61\x63\x65\x73\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\xde\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ -\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\ -\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x63\x00\x6f\x00\x70\ -\x00\x79\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x77\ -\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x6b\ -\x00\x65\x00\x70\x00\x74\x00\x20\x00\x61\x00\x63\x00\x72\x00\x6f\ -\x00\x73\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\ -\x00\x6e\x00\x64\x00\x2c\x00\x20\x00\x6f\x00\x74\x00\x68\x00\x65\ -\x00\x72\x00\x77\x00\x69\x00\x73\x00\x65\x00\x20\x00\x63\x00\x6f\ -\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x73\x00\x20\x00\x77\ -\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\x6c\x00\x77\x00\x61\ -\x00\x79\x00\x73\x00\x20\x00\x73\x00\x74\x00\x61\x00\x72\x00\x74\ -\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x6e\x00\x6f\x00\x2d\x00\x63\ -\x00\x6f\x00\x70\x00\x79\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x6f\x49\x66\x20\x74\x68\x69\ -\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x63\x6f\ -\x70\x79\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\ -\x6b\x65\x70\x74\x20\x61\x63\x72\x6f\x73\x73\x20\x63\x6f\x6d\x6d\ -\x61\x6e\x64\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x63\ -\x6f\x6d\x6d\x61\x6e\x64\x73\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\ -\x61\x79\x73\x20\x73\x74\x61\x72\x74\x20\x69\x6e\x20\x6e\x6f\x2d\ -\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\xcc\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ -\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\ -\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ -\x6c\x00\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\ -\x20\x00\x61\x00\x73\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x6c\x00\ -\x65\x00\x64\x00\x20\x00\x61\x00\x73\x00\x20\x00\x64\x00\x65\x00\ -\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x2e\x00\x20\x00\x4f\x00\ -\x74\x00\x68\x00\x65\x00\x72\x00\x77\x00\x69\x00\x73\x00\x65\x00\ -\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x79\x00\x20\x00\x77\x00\ -\x69\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\ -\x61\x00\x72\x00\x20\x00\x61\x00\x73\x00\x20\x00\x77\x00\x69\x00\ -\x72\x00\x65\x00\x66\x00\x72\x00\x61\x00\x6d\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x66\x49\x66\x20\x74\x68\x69\x73\x20\x69\ -\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\x65\x63\ -\x74\x73\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x61\ -\x73\x20\x66\x69\x6c\x6c\x65\x64\x20\x61\x73\x20\x64\x65\x66\x61\ -\x75\x6c\x74\x2e\x20\x4f\x74\x68\x65\x72\x77\x69\x73\x65\x2c\x20\ -\x74\x68\x65\x79\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\ -\x20\x61\x73\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x01\x02\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\ -\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\ -\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x79\x00\ -\x6f\x00\x75\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\ -\x61\x00\x6c\x00\x77\x00\x61\x00\x79\x00\x73\x00\x20\x00\x73\x00\ -\x6e\x00\x61\x00\x70\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x65\x00\ -\x78\x00\x69\x00\x73\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ -\x77\x00\x68\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x72\x00\ -\x61\x00\x77\x00\x69\x00\x6e\x00\x67\x00\x2e\x00\x20\x00\x49\x00\ -\x66\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x2c\x00\x20\x00\x79\x00\ -\x6f\x00\x75\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\ -\x62\x00\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\ -\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x6e\x00\x6c\x00\x79\x00\ -\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x70\x00\x72\x00\ -\x65\x00\x73\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x43\x00\ -\x54\x00\x52\x00\x4c\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x81\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ -\x6b\x65\x64\x2c\x20\x79\x6f\x75\x20\x77\x69\x6c\x6c\x20\x61\x6c\ -\x77\x61\x79\x73\x20\x73\x6e\x61\x70\x20\x74\x6f\x20\x65\x78\x69\ -\x73\x74\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x68\ -\x69\x6c\x65\x20\x64\x72\x61\x77\x69\x6e\x67\x2e\x20\x49\x66\x20\ -\x6e\x6f\x74\x2c\x20\x79\x6f\x75\x20\x77\x69\x6c\x6c\x20\x62\x65\ -\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x20\x6f\x6e\x6c\x79\x20\x77\ -\x68\x65\x6e\x20\x70\x72\x65\x73\x73\x69\x6e\x67\x20\x43\x54\x52\ -\x4c\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x49\x00\x6d\x00\x70\ -\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x2a\x00\x62\x00\x6c\x00\x6f\ -\x00\x63\x00\x6b\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ -\x49\x6d\x70\x6f\x72\x74\x20\x2a\x62\x6c\x6f\x63\x6b\x73\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x20\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\ -\x00\x74\x00\x20\x00\x4f\x00\x43\x00\x41\x00\x20\x00\x61\x00\x72\ -\x00\x65\x00\x61\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ -\x49\x6d\x70\x6f\x72\x74\x20\x4f\x43\x41\x20\x61\x72\x65\x61\x73\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x16\x30\xec\x30\xa4\x30\xa2\x30\xa6\ -\x30\xc8\x30\x6e\x30\xa4\x30\xf3\x30\xdd\x30\xfc\x30\xc8\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0e\x49\x6d\x70\x6f\x72\x74\x20\x6c\ -\x61\x79\x6f\x75\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x30\xa4\ -\x30\xf3\x30\xdd\x30\xfc\x30\xc8\x30\xb9\x30\xbf\x30\xa4\x30\xeb\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x49\x6d\x70\x6f\x72\x74\ -\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x30\xc6\ -\x30\xad\x30\xb9\x30\xc8\x30\x68\x5b\xf8\x6c\xd5\x30\x92\x30\xa4\ -\x30\xf3\x30\xdd\x30\xfc\x30\xc8\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x1b\x49\x6d\x70\x6f\x72\x74\x20\x74\x65\x78\x74\x73\x20\x61\ -\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x18\x30\xa4\x30\xf3\x30\xdd\x30\xfc\x30\xc8\x00\ -\x2f\x30\xa8\x30\xaf\x30\xb9\x30\xdd\x30\xfc\x30\xc8\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0d\x49\x6d\x70\x6f\x72\x74\x2f\x45\x78\ -\x70\x6f\x72\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x49\x00\x6e\ -\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x70\ -\x00\x72\x00\x65\x00\x63\x00\x69\x00\x73\x00\x69\x00\x6f\x00\x6e\ -\x00\x20\x00\x6c\x00\x65\x00\x76\x00\x65\x00\x6c\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x18\x49\x6e\x74\x65\x72\x6e\x61\x6c\x20\x70\ -\x72\x65\x63\x69\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x10\x30\xb8\x30\xaa\x30\xe1\x30\xc8\x30\xea\ -\x30\x92\x7d\x50\x54\x08\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ -\x4a\x6f\x69\x6e\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x26\x00\x4c\x00\x65\x00\x66\x00\x74\x00\x20\x00\ -\x28\x00\x49\x00\x53\x00\x4f\x00\x20\x00\x73\x00\x74\x00\x61\x00\ -\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x29\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x13\x4c\x65\x66\x74\x20\x28\x49\x53\x4f\x20\x73\ -\x74\x61\x6e\x64\x61\x72\x64\x29\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\ -\x00\x4d\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x6c\x00\x69\x00\x6e\ -\x00\x65\x00\x73\x00\x20\x00\x65\x00\x76\x00\x65\x00\x72\x00\x79\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x4d\x61\x69\x6e\x20\x6c\ -\x69\x6e\x65\x73\x20\x65\x76\x65\x72\x79\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\xa2\x00\x4d\x00\x61\x00\x69\x00\x6e\x00\x6c\x00\x69\x00\x6e\ -\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\ -\x00\x62\x00\x65\x00\x20\x00\x64\x00\x72\x00\x61\x00\x77\x00\x6e\ -\x00\x20\x00\x74\x00\x68\x00\x69\x00\x63\x00\x6b\x00\x65\x00\x72\ -\x00\x2e\x00\x20\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\ -\x00\x79\x00\x20\x00\x68\x00\x65\x00\x72\x00\x65\x00\x20\x00\x68\ -\x00\x6f\x00\x77\x00\x20\x00\x6d\x00\x61\x00\x6e\x00\x79\x00\x20\ -\x00\x73\x00\x71\x00\x75\x00\x61\x00\x72\x00\x65\x00\x73\x00\x20\ -\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\ -\x00\x6d\x00\x61\x00\x69\x00\x6e\x00\x6c\x00\x69\x00\x6e\x00\x65\ -\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x4d\x61\ -\x69\x6e\x6c\x69\x6e\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\ -\x64\x72\x61\x77\x6e\x20\x74\x68\x69\x63\x6b\x65\x72\x2e\x20\x53\ -\x70\x65\x63\x69\x66\x79\x20\x68\x65\x72\x65\x20\x68\x6f\x77\x20\ -\x6d\x61\x6e\x79\x20\x73\x71\x75\x61\x72\x65\x73\x20\x62\x65\x74\ -\x77\x65\x65\x6e\x20\x6d\x61\x69\x6e\x6c\x69\x6e\x65\x73\x2e\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x18\x67\x00\x59\x27\x30\xb9\x30\xd7\x30\ -\xe9\x30\xa4\x30\xf3\x30\xbb\x30\xb0\x30\xe1\x30\xf3\x30\xc8\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4d\x61\x78\x20\x53\x70\x6c\ -\x69\x6e\x65\x20\x53\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x04\x30\x6a\x30\x57\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x4f\x7f\x75\ -\x28\x30\x57\x30\x6a\x30\x44\xff\x08\x67\x00\x90\x1f\xff\x09\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x4e\x6f\x6e\x65\x20\x28\x66\ -\x61\x73\x74\x65\x73\x74\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xfe\x00\ -\x4e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\x79\x00\ -\x2c\x00\x20\x00\x61\x00\x66\x00\x74\x00\x65\x00\x72\x00\x20\x00\ -\x63\x00\x6f\x00\x70\x00\x79\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x2c\x00\ -\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x70\x00\ -\x69\x00\x65\x00\x73\x00\x20\x00\x67\x00\x65\x00\x74\x00\x20\x00\ -\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ -\x2e\x00\x20\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\ -\x73\x00\x20\x00\x6f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ -\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\ -\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\ -\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x77\x00\x69\x00\ -\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x73\x00\x65\x00\ -\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x69\x00\ -\x6e\x00\x73\x00\x74\x00\x65\x00\x61\x00\x64\x00\x2e\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x7f\x4e\x6f\x72\x6d\x61\x6c\x6c\x79\x2c\ -\x20\x61\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\x6e\x67\x20\x6f\ -\x62\x6a\x65\x63\x74\x73\x2c\x20\x74\x68\x65\x20\x63\x6f\x70\x69\ -\x65\x73\x20\x67\x65\x74\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x2e\ -\x20\x49\x66\x20\x74\x68\x69\x73\x20\x6f\x70\x74\x69\x6f\x6e\x20\ -\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\ -\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\ -\x6c\x20\x62\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x69\x6e\ -\x73\x74\x65\x61\x64\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\x4f\ -\x00\x43\x00\x41\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\ -\x00\x74\x00\x20\x00\x6f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\ -\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4f\x43\x41\x20\ -\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x0e\x6a\x19\x6e\x96\x30\x6e\x82\x72\x30\x68\ -\x7d\xda\x5e\x45\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x4f\x72\ -\x69\x67\x69\x6e\x61\x6c\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\ -\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x0a\x00\x52\x00\x69\x00\x67\x00\x68\x00\x74\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x05\x52\x69\x67\x68\x74\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x16\x00\x53\x00\x56\x00\x47\x5f\x62\x5f\x0f\x30\x6e\x30\ -\xaa\x30\xd7\x30\xb7\x30\xe7\x30\xf3\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x12\x53\x56\x47\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\ -\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x60\x00\x53\x00\ -\x61\x00\x76\x00\x65\x00\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\ -\x65\x00\x6e\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\ -\x72\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x6c\x00\x69\x00\ -\x6e\x00\x65\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x20\x00\ -\x61\x00\x63\x00\x72\x00\x6f\x00\x73\x00\x73\x00\x20\x00\x73\x00\ -\x65\x00\x73\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x30\x53\x61\x76\x65\x20\x63\x75\x72\x72\ -\x65\x6e\x74\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\ -\x6e\x65\x77\x69\x64\x74\x68\x20\x61\x63\x72\x6f\x73\x73\x20\x73\ -\x65\x73\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\ -\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x62\x00\ -\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x66\x00\x74\x00\x65\x00\ -\x72\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x79\x00\x69\x00\x6e\x00\ -\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x53\x65\x6c\x65\x63\ -\x74\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\ -\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\x6e\x67\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x0e\x00\x53\x00\x6c\x00\x61\x00\x73\x00\x68\x00\x20\ -\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\ -\x68\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x53\x00\x6c\x00\ -\x61\x00\x73\x00\x68\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x07\x53\x6c\x61\x73\x68\x20\x37\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x0e\x00\x53\x00\x6c\x00\x61\x00\x73\x00\x68\x00\x20\x00\x39\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\x20\ -\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x30\xb9\x30\xca\x30\xc3\x30\ -\xd7\x30\x6e\x82\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\ -\x6e\x61\x70\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x10\x00\x53\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6d\x00\x6f\x00\ -\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x53\x6e\x61\x70\x20\ -\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x53\x00\x6e\x00\ -\x61\x00\x70\x00\x20\x00\x72\x00\x61\x00\x6e\x00\x67\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x6e\x61\x70\x20\x72\x61\ -\x6e\x67\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x54\x00\x61\x00\ -\x73\x00\x6b\x00\x76\x00\x69\x00\x65\x00\x77\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x08\x54\x61\x73\x6b\x76\x69\x65\x77\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x3a\x00\x54\x00\x68\x00\x65\x00\x20\x00\x43\x00\ -\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\ -\x69\x00\x6e\x00\x67\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\ -\x66\x00\x69\x00\x65\x00\x72\x00\x20\x00\x6b\x00\x65\x00\x79\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x54\x68\x65\x20\x43\x6f\x6e\ -\x73\x74\x72\x61\x69\x6e\x69\x6e\x67\x20\x6d\x6f\x64\x69\x66\x69\ -\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x54\ -\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x74\x00\x20\x00\x6d\ -\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x72\x00\x20\ -\x00\x6b\x00\x65\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\ -\x54\x68\x65\x20\x61\x6c\x74\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\ -\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x64\x00\x78\ -\x00\x66\x30\xab\x30\xe9\x30\xfc\x30\x4b\x30\x89\x30\xe9\x30\xa4\ -\x30\xf3\x5e\x45\x30\x6b\x59\x09\x63\xdb\x30\x59\x30\x8b\x30\x5f\ -\x30\x81\x30\x6e\x30\xab\x30\xe9\x30\xfc\x30\xfb\x30\xde\x30\xc3\ -\x30\xd4\x30\xf3\x30\xb0\x30\xd5\x30\xa1\x30\xa4\x30\xeb\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x41\x54\x68\x65\x20\x63\x6f\x6c\x6f\ -\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x20\x66\ -\x6f\x72\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6e\x67\x20\x64\ -\x78\x66\x20\x63\x6f\x6c\x6f\x72\x73\x20\x69\x6e\x74\x6f\x20\x6c\ -\x69\x6e\x65\x77\x69\x64\x74\x68\x73\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x44\x30\xc7\x30\xd5\x30\xa9\x30\xeb\x30\xc8\x30\x6e\x30\xc6\x30\ -\xf3\x30\xd7\x30\xec\x30\xfc\x30\xc8\x30\x6f\x30\x01\x65\xb0\x89\ -\x8f\x30\x6b\x56\xf3\x97\x62\x30\xb7\x30\xfc\x30\xc8\x30\x92\x4f\ -\x5c\x62\x10\x30\x59\x30\x8b\x30\x68\x30\x4d\x30\x6b\x4f\x7f\x75\ -\x28\x30\x59\x30\x8b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3d\x54\ -\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x6d\x70\x6c\ -\x61\x74\x65\x20\x74\x6f\x20\x75\x73\x65\x20\x77\x68\x65\x6e\x20\ -\x63\x72\x65\x61\x74\x69\x6e\x67\x20\x61\x20\x6e\x65\x77\x20\x64\ -\x72\x61\x77\x69\x6e\x67\x20\x73\x68\x65\x65\x74\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x9a\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6e\x00\x75\ -\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\ -\x00\x64\x00\x65\x00\x63\x00\x69\x00\x6d\x00\x61\x00\x6c\x00\x73\ -\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\ -\x00\x72\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x63\x00\x6f\x00\x6f\ -\x00\x72\x00\x64\x00\x69\x00\x6e\x00\x61\x00\x74\x00\x65\x00\x73\ -\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x72\x00\x61\x00\x74\x00\x69\ -\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x28\x00\x66\x00\x6f\x00\x72\ -\x00\x20\x00\x65\x00\x78\x00\x2e\x00\x20\x00\x33\x00\x20\x00\x3d\ -\x00\x20\x00\x30\x00\x2e\x00\x30\x00\x30\x00\x31\x00\x29\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x4d\x54\x68\x65\x20\x6e\x75\x6d\x62\ -\x65\x72\x20\x6f\x66\x20\x64\x65\x63\x69\x6d\x61\x6c\x73\x20\x69\ -\x6e\x20\x69\x6e\x74\x65\x72\x6e\x61\x6c\x20\x63\x6f\x6f\x72\x64\ -\x69\x6e\x61\x74\x65\x73\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\ -\x73\x20\x28\x66\x6f\x72\x20\x65\x78\x2e\x20\x33\x20\x3d\x20\x30\ -\x2e\x30\x30\x31\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x9c\x00\x54\x00\ -\x68\x00\x65\x00\x20\x00\x72\x00\x61\x00\x64\x00\x69\x00\x75\x00\ -\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x73\x00\x6e\x00\ -\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\ -\x6f\x00\x20\x00\x73\x00\x70\x00\x65\x00\x63\x00\x69\x00\x61\x00\ -\x6c\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\x00\ -\x2e\x00\x20\x00\x53\x00\x65\x00\x74\x00\x20\x00\x74\x00\x6f\x00\ -\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\ -\x6f\x00\x20\x00\x64\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6e\x00\ -\x63\x00\x65\x00\x20\x00\x28\x00\x69\x00\x6e\x00\x66\x00\x69\x00\ -\x6e\x00\x69\x00\x74\x00\x65\x00\x29\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x4e\x54\x68\x65\x20\x72\x61\x64\x69\x75\x73\x20\x66\x6f\ -\x72\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x20\x74\x6f\x20\x73\x70\ -\x65\x63\x69\x61\x6c\x20\x70\x6f\x69\x6e\x74\x73\x2e\x20\x53\x65\ -\x74\x20\x74\x6f\x20\x30\x20\x66\x6f\x72\x20\x6e\x6f\x20\x64\x69\ -\x73\x74\x61\x6e\x63\x65\x20\x28\x69\x6e\x66\x69\x6e\x69\x74\x65\ -\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x54\x00\x68\x00\x65\x00\ -\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6d\x00\x6f\x00\ -\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x72\x00\x20\x00\x6b\x00\ -\x65\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x54\x68\x65\ -\x20\x73\x6e\x61\x70\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\ -\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\x00\x54\x00\x68\x00\x65\ -\x00\x20\x00\x73\x00\x70\x00\x61\x00\x63\x00\x69\x00\x6e\x00\x67\ -\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\ -\x00\x20\x00\x65\x00\x61\x00\x63\x00\x68\x00\x20\x00\x67\x00\x72\ -\x00\x69\x00\x64\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x22\x54\x68\x65\x20\x73\x70\x61\x63\ -\x69\x6e\x67\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x65\x61\x63\x68\ -\x20\x67\x72\x69\x64\x20\x6c\x69\x6e\x65\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x01\x9e\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\ -\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x55\x00\x49\x00\x20\ -\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x20\ -\x00\x77\x00\x68\x00\x69\x00\x63\x00\x68\x00\x20\x00\x74\x00\x68\ -\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\ -\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x6c\x00\x65\x00\x20\x00\x77\ -\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\ -\x00\x3a\x00\x20\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\ -\x00\x72\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x77\ -\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x63\ -\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x44\x00\x72\ -\x00\x61\x00\x66\x00\x74\x00\x20\x00\x73\x00\x65\x00\x74\x00\x74\ -\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x20\ -\x00\x61\x00\x20\x00\x73\x00\x65\x00\x70\x00\x61\x00\x72\x00\x61\ -\x00\x74\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\ -\x00\x61\x00\x72\x00\x2c\x00\x20\x00\x77\x00\x68\x00\x69\x00\x6c\ -\x00\x65\x00\x20\x00\x74\x00\x61\x00\x73\x00\x6b\x00\x62\x00\x61\ -\x00\x72\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x77\ -\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x75\x00\x73\x00\x65\x00\x20\ -\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\ -\x00\x43\x00\x41\x00\x44\x00\x20\x00\x54\x00\x61\x00\x73\x00\x6b\ -\x00\x76\x00\x69\x00\x65\x00\x77\x00\x20\x00\x73\x00\x79\x00\x73\ -\x00\x74\x00\x65\x00\x6d\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ -\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\x00\x74\x00\x73\x00\x20\ -\x00\x75\x00\x73\x00\x65\x00\x72\x00\x20\x00\x69\x00\x6e\x00\x74\ -\x00\x65\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\xcf\x54\x68\x69\x73\x20\x69\ -\x73\x20\x74\x68\x65\x20\x55\x49\x20\x6d\x6f\x64\x65\x20\x69\x6e\ -\x20\x77\x68\x69\x63\x68\x20\x74\x68\x65\x20\x44\x72\x61\x66\x74\ -\x20\x6d\x6f\x64\x75\x6c\x65\x20\x77\x69\x6c\x6c\x20\x77\x6f\x72\ -\x6b\x3a\x20\x54\x6f\x6f\x6c\x62\x61\x72\x20\x6d\x6f\x64\x65\x20\ -\x77\x69\x6c\x6c\x20\x70\x6c\x61\x63\x65\x20\x61\x6c\x6c\x20\x44\ -\x72\x61\x66\x74\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x20\x69\x6e\ -\x20\x61\x20\x73\x65\x70\x61\x72\x61\x74\x65\x20\x74\x6f\x6f\x6c\ -\x62\x61\x72\x2c\x20\x77\x68\x69\x6c\x65\x20\x74\x61\x73\x6b\x62\ -\x61\x72\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x75\x73\x65\ -\x20\x74\x68\x65\x20\x46\x72\x65\x65\x43\x41\x44\x20\x54\x61\x73\ -\x6b\x76\x69\x65\x77\x20\x73\x79\x73\x74\x65\x6d\x20\x66\x6f\x72\ -\x20\x61\x6c\x6c\x20\x69\x74\x73\x20\x75\x73\x65\x72\x20\x69\x6e\ -\x74\x65\x72\x61\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x9a\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\ -\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\x65\x00\x66\x00\ -\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\ -\x6f\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x62\x00\ -\x65\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x64\x00\x72\x00\x61\x00\ -\x77\x00\x6e\x00\x20\x00\x77\x00\x68\x00\x69\x00\x6c\x00\x65\x00\ -\x20\x00\x69\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\ -\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ -\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x2e\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x4d\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\ -\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\ -\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\x69\x6e\x67\ -\x20\x64\x72\x61\x77\x6e\x20\x77\x68\x69\x6c\x65\x20\x69\x6e\x20\ -\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x6d\x6f\x64\ -\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x01\x60\x30\x53\x30\x8c\x30\x6f\ -\x30\x01\x30\x59\x30\x79\x30\x66\x30\x6e\x30\xc9\x30\xe9\x30\xd5\ -\x30\xc8\x30\xfb\x30\xc6\x30\xad\x30\xb9\x30\xc8\x30\x68\x5b\xf8\ -\x6c\xd5\x30\x6e\x30\xc7\x30\xd5\x30\xa9\x30\xeb\x30\xc8\xff\x08\ -\x77\x01\x75\x65\x66\x42\x30\x6e\x8a\x2d\x5b\x9a\xff\x09\x30\xd5\ -\x30\xa9\x30\xf3\x30\xc8\x54\x0d\x30\x67\x30\x59\x30\x02\x30\x0c\ -\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x30\x0d\x30\x6e\x30\x88\ -\x30\x46\x30\x6b\x30\xd5\x30\xa9\x30\xf3\x30\xc8\x54\x0d\x30\x01\ -\x30\x0c\x00\x73\x00\x61\x00\x6e\x00\x73\x30\x0d\x00\x2c\x30\x0c\ -\x00\x73\x00\x65\x00\x72\x00\x69\x00\x66\x30\x0d\x30\x01\x00\x6f\ -\x30\x0c\x00\x6d\x00\x6f\x00\x6e\x00\x6f\x30\x0d\x30\x6e\x30\x88\ -\x30\x46\x30\x6a\x30\xc7\x30\xd5\x30\xa9\x30\xeb\x30\xc8\x30\x6e\ -\x30\xb9\x30\xbf\x30\xa4\x30\xeb\x54\x0d\x30\x01\x30\x0c\x00\x41\ -\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x2c\x00\x48\x00\x65\x00\x6c\ -\x00\x76\x00\x65\x00\x74\x00\x69\x00\x63\x00\x61\x00\x2c\x00\x73\ -\x00\x61\x00\x6e\x00\x73\x30\x0d\x30\x6e\x30\x88\x30\x46\x30\x6a\ -\x7c\xfb\x7d\x71\x54\x0d\x30\x01\x00\x20\x30\x0c\x00\x41\x00\x72\ -\x00\x69\x00\x61\x00\x6c\x00\x3a\x00\x42\x00\x6f\x00\x6c\x00\x64\ -\x30\x0d\x30\x6e\x30\x88\x30\x46\x30\x6a\x30\xd5\x30\xa9\x30\xf3\ -\x30\xc8\x54\x0d\x30\x68\x30\xb9\x30\xbf\x30\xa4\x30\xeb\x54\x0d\ -\x30\x92\x7d\x44\x30\x7f\x54\x08\x30\x8f\x30\x5b\x30\x5f\x5f\x62\ -\x30\x67\x63\x07\x5b\x9a\x30\x59\x30\x8b\x30\x53\x30\x68\x30\x4c\ -\x30\x67\x30\x4d\x30\x7e\x30\x59\x30\x02\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\xf2\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\ -\x64\x65\x66\x61\x75\x6c\x74\x20\x66\x6f\x6e\x74\x20\x6e\x61\x6d\ -\x65\x20\x66\x6f\x72\x20\x61\x6c\x6c\x20\x44\x72\x61\x66\x74\x20\ -\x74\x65\x78\x74\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\ -\x69\x6f\x6e\x73\x2e\x0a\x49\x74\x20\x63\x61\x6e\x20\x62\x65\x20\ -\x61\x20\x66\x6f\x6e\x74\x20\x6e\x61\x6d\x65\x20\x73\x75\x63\x68\ -\x20\x61\x73\x20\x22\x41\x72\x69\x61\x6c\x22\x2c\x20\x61\x20\x64\ -\x65\x66\x61\x75\x6c\x74\x20\x73\x74\x79\x6c\x65\x20\x73\x75\x63\ -\x68\x20\x61\x73\x20\x22\x73\x61\x6e\x73\x22\x2c\x20\x22\x73\x65\ -\x72\x69\x66\x22\x0a\x6f\x72\x20\x22\x6d\x6f\x6e\x6f\x22\x2c\x20\ -\x6f\x72\x20\x61\x20\x66\x61\x6d\x69\x6c\x79\x20\x73\x75\x63\x68\ -\x20\x61\x73\x20\x22\x41\x72\x69\x61\x6c\x2c\x48\x65\x6c\x76\x65\ -\x74\x69\x63\x61\x2c\x73\x61\x6e\x73\x22\x20\x6f\x72\x20\x61\x20\ -\x6e\x61\x6d\x65\x20\x77\x69\x74\x68\x20\x61\x20\x73\x74\x79\x6c\ -\x65\x0a\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\x72\x69\x61\x6c\ -\x3a\x42\x6f\x6c\x64\x22\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x70\x00\x54\ -\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\ -\x00\x68\x00\x65\x00\x20\x00\x64\x00\x65\x00\x66\x00\x61\x00\x75\ -\x00\x6c\x00\x74\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\ -\x00\x20\x00\x6e\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x66\x00\x6f\ -\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\ -\x00\x75\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x67\ -\x00\x65\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x79\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x38\x54\x68\x69\x73\x20\x69\x73\x20\ -\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x67\x72\x6f\x75\ -\x70\x20\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\x63\x6f\x6e\x73\x74\ -\x72\x75\x63\x74\x69\x6f\x6e\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x50\x00\x53\x00\x56\x00\x47\x30\xaa\ -\x30\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\x6e\x82\x72\x30\x92\ -\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x30\x6b\ -\x30\xa4\x30\xf3\x30\xdd\x30\xfc\x30\xc8\x30\x59\x30\x8b\x30\x5f\ -\x30\x81\x30\x6e\x90\x78\x62\x9e\x30\x55\x30\x8c\x30\x5f\x65\xb9\ -\x6c\xd5\x30\x67\x30\x59\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x47\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x65\ -\x74\x68\x6f\x64\x20\x63\x68\x6f\x6f\x73\x65\x64\x20\x66\x6f\x72\ -\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\x53\x56\x47\x20\x6f\ -\x62\x6a\x65\x63\x74\x20\x63\x6f\x6c\x6f\x72\x20\x69\x6e\x74\x6f\ -\x20\x46\x72\x65\x65\x43\x41\x44\x2e\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\xe6\x30\x53\x30\x8c\x30\x6f\x30\x01\x00\x46\x00\x72\x00\x65\x00\ -\x65\x00\x43\x00\x41\x00\x44\x30\x6b\x00\x44\x00\x58\x00\x46\x30\ -\xaa\x30\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\x6e\x82\x72\x30\ -\x92\x30\xa4\x30\xf3\x30\xdd\x30\xfc\x30\xc8\x30\x7e\x30\x5f\x30\ -\x6f\x59\x09\x63\xdb\x30\x57\x30\x59\x30\x8b\x30\x5f\x30\x81\x30\ -\x6b\x90\x78\x62\x9e\x30\x57\x30\x5f\x65\xb9\x6c\xd5\x30\x67\x30\ -\x59\x30\x02\x30\x82\x30\x57\x30\xab\x30\xe9\x30\xfc\x30\xde\x30\ -\xc3\x30\xd4\x30\xf3\x30\xb0\x30\x92\x90\x78\x62\x9e\x30\x59\x30\ -\x8b\x30\x6a\x30\x89\x30\x01\x30\x42\x30\x6a\x30\x5f\x30\x6f\x59\ -\x09\x63\xdb\x30\x59\x30\x8b\x82\x72\x30\x84\x7d\xda\x5e\x45\x30\ -\x92\x54\x2b\x30\x80\x59\x09\x63\xdb\x30\xc6\x30\xfc\x30\xd6\x30\ -\xeb\x30\x92\x30\x82\x30\x64\x30\xab\x30\xe9\x30\xfc\x30\xde\x30\ -\xc3\x30\xd4\x30\xf3\x30\xb0\x30\xd5\x30\xa1\x30\xa4\x30\xeb\x30\ -\x92\x90\x78\x30\x70\x30\x6a\x30\x51\x30\x8c\x30\x70\x30\x6a\x30\ -\x89\x30\x6a\x30\x44\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\xe3\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x65\x74\ -\x68\x6f\x64\x20\x63\x68\x6f\x6f\x73\x65\x64\x20\x66\x6f\x72\x20\ -\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\x6f\x72\x20\x74\x72\x61\ -\x6e\x73\x6c\x61\x74\x69\x6e\x67\x20\x44\x58\x46\x20\x6f\x62\x6a\ -\x65\x63\x74\x20\x63\x6f\x6c\x6f\x72\x20\x69\x6e\x74\x6f\x20\x46\ -\x72\x65\x65\x43\x41\x44\x2e\x20\x0a\x49\x66\x20\x63\x6f\x6c\x6f\ -\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x69\x73\x20\x63\x68\x6f\ -\x6f\x73\x65\x64\x2c\x20\x79\x6f\x75\x20\x6d\x75\x73\x74\x20\x63\ -\x68\x6f\x6f\x73\x65\x20\x61\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\ -\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x20\x63\x6f\x6e\x74\x61\ -\x69\x6e\x69\x6e\x67\x20\x61\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\ -\x69\x6f\x6e\x20\x74\x61\x62\x6c\x65\x20\x74\x68\x61\x74\x20\x77\ -\x69\x6c\x6c\x20\x63\x6f\x6e\x76\x65\x72\x74\x20\x63\x6f\x6c\x6f\ -\x72\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\ -\x68\x73\x2e\x0a\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x5b\xf8\x6c\xd5\ -\x30\x4c\x7e\x26\x30\x6b\x30\x6a\x30\x63\x30\x5f\x30\x68\x30\x4d\ -\x30\x6e\x5b\xf8\x6c\xd5\x30\xc6\x30\xad\x30\xb9\x30\xc8\x30\x6e\ -\x54\x11\x30\x4d\x00\x2e\x30\xc7\x30\xd5\x30\xa9\x30\xeb\x30\xc8\ -\x30\x6f\x5d\xe6\xff\x08\x00\x49\x00\x53\x00\x4f\x6a\x19\x6e\x96\ -\xff\x09\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7e\x54\x68\x69\x73\ -\x20\x69\x73\x20\x74\x68\x65\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\ -\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x64\x69\x6d\x65\x6e\ -\x73\x69\x6f\x6e\x20\x74\x65\x78\x74\x73\x20\x77\x68\x65\x6e\x20\ -\x74\x68\x6f\x73\x65\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\ -\x20\x61\x72\x65\x20\x76\x65\x72\x74\x69\x63\x61\x6c\x2e\x20\x44\ -\x65\x66\x61\x75\x6c\x74\x20\x69\x73\x20\x6c\x65\x66\x74\x2c\x20\ -\x77\x68\x69\x63\x68\x20\x69\x73\x20\x74\x68\x65\x20\x49\x53\x4f\ -\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x2e\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x62\x30\x53\x30\x8c\x30\x6f\x8a\x31\x5b\xb9\x7b\xc4\x56\xf2\ -\x30\x92\x4f\x7f\x75\x28\x30\x59\x30\x8b\x95\xa2\x65\x70\x30\x67\ -\x4f\x7f\x75\x28\x30\x55\x30\x8c\x30\x8b\x50\x24\x30\x67\x30\x59\ -\x30\x02\x00\x0a\x30\x53\x30\x8c\x4e\xe5\x4e\x0b\x30\x6e\x50\x24\ -\x30\x6e\x90\x55\x30\x44\x30\x6f\x30\x01\x54\x0c\x30\x58\x30\x82\ -\x30\x6e\x30\x68\x30\x57\x30\x66\x62\x71\x30\x8f\x30\x8c\x30\x7e\ -\x30\x59\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7b\x54\x68\ -\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x76\x61\x6c\x75\x65\x20\ -\x75\x73\x65\x64\x20\x62\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\ -\x73\x20\x74\x68\x61\x74\x20\x75\x73\x65\x20\x61\x20\x74\x6f\x6c\ -\x65\x72\x61\x6e\x63\x65\x2e\x0a\x56\x61\x6c\x75\x65\x73\x20\x77\ -\x69\x74\x68\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x63\x65\x73\x20\ -\x62\x65\x6c\x6f\x77\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\ -\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x74\x72\x65\x61\x74\x65\x64\ -\x20\x61\x73\x20\x73\x61\x6d\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x04\x51\x6c\x5d\xee\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\ -\x6f\x6c\x65\x72\x61\x6e\x63\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\ -\x30\xc4\x30\xfc\x30\xeb\x30\xd0\x30\xfc\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x07\x54\x6f\x6f\x6c\x62\x61\x72\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x28\x30\xc7\x30\xd5\x30\xa9\x30\xeb\x30\xc8\x00\x5b\x65\ -\xe2\x5b\x9a\x50\x24\x00\x5d\x30\x6e\x82\x72\x30\x68\x7d\xda\x5e\ -\x45\x30\x92\x4f\x7f\x75\x28\x30\x59\x30\x8b\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x1f\x55\x73\x65\x20\x64\x65\x66\x61\x75\x6c\x74\ -\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\ -\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x55\x00\x73\ -\x00\x65\x00\x20\x00\x67\x00\x72\x00\x69\x00\x64\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x08\x55\x73\x65\x20\x67\x72\x69\x64\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x16\x7e\x26\x30\x6e\x5b\xf8\x6c\xd5\x30\xc6\ -\x30\xad\x30\xb9\x30\xc8\x30\x6e\x54\x11\x30\x4d\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x24\x56\x65\x72\x74\x69\x63\x61\x6c\x20\x64\ -\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x74\x65\x78\x74\x20\x6f\ -\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\xbc\x00\x44\x00\x58\x00\x46\x30\x78\x30\x6e\x30\xb9\x30\xd7\ -\x30\xe9\x30\xa4\x30\xf3\x30\x92\x30\xa8\x30\xaf\x30\xb9\x30\xdd\ -\x30\xfc\x30\xc8\x30\x59\x30\x8b\x58\x34\x54\x08\x30\x01\x30\x5d\ -\x30\x8c\x30\x89\x30\x6f\x30\xdd\x30\xea\x30\xe9\x30\xa4\x30\xf3\ -\x30\x6b\x59\x09\x63\xdb\x30\x55\x30\x8c\x30\x7e\x30\x59\x30\x02\ -\x30\x53\x30\x6e\x50\x24\x30\x6f\x30\x01\x30\xdd\x30\xea\x30\xe9\ -\x30\xa4\x30\xf3\x30\x6e\x54\x04\x30\xbb\x30\xb0\x30\xe1\x30\xf3\ -\x30\xc8\x30\x6e\x67\x00\x59\x27\x95\x77\x30\x67\x30\x59\x30\x02\ -\x00\x20\x00\x30\x30\x6e\x58\x34\x54\x08\x30\x01\x51\x68\x4f\x53\ -\x30\x6e\x30\xb9\x30\xd7\x30\xe9\x30\xa4\x30\xf3\x30\x4c\x76\xf4\ -\x7d\xda\x30\xbb\x30\xb0\x30\xe1\x30\xf3\x30\xc8\x30\x68\x30\x57\ -\x30\x66\x62\x71\x30\x8f\x30\x8c\x30\x7e\x30\x59\x30\x02\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\xc2\x57\x68\x65\x6e\x20\x65\x78\x70\ -\x6f\x72\x74\x69\x6e\x67\x20\x73\x70\x6c\x69\x6e\x65\x73\x20\x74\ -\x6f\x20\x44\x58\x46\x2c\x20\x74\x68\x65\x79\x20\x61\x72\x65\x20\ -\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x65\x64\x20\x69\x6e\x20\x70\ -\x6f\x6c\x79\x6c\x69\x6e\x65\x73\x2e\x20\x54\x68\x69\x73\x20\x76\ -\x61\x6c\x75\x65\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x61\x78\x69\ -\x6d\x75\x6d\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x65\x61\ -\x63\x68\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x6f\x6c\x79\x6c\x69\ -\x6e\x65\x20\x73\x65\x67\x6d\x65\x6e\x74\x73\x2e\x20\x49\x66\x20\ -\x30\x2c\x20\x74\x68\x65\x6e\x20\x74\x68\x65\x20\x77\x68\x6f\x6c\ -\x65\x20\x73\x70\x6c\x69\x6e\x65\x20\x69\x73\x20\x74\x72\x65\x61\ -\x74\x65\x64\x20\x61\x73\x20\x61\x20\x73\x74\x72\x61\x69\x67\x68\ -\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x2e\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x10\x00\x58\x00\x59\x00\x20\x00\x28\x5e\x73\x97\x62\x56\xf3\ -\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x58\x59\x20\x28\ -\x54\x6f\x70\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x58\x00\x5a\ -\x00\x20\x00\x28\x6b\x63\x97\x62\x56\xf3\x00\x29\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0a\x58\x5a\x20\x28\x46\x72\x6f\x6e\x74\x29\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x10\x00\x59\x00\x5a\x00\x20\x00\x28\ -\x50\x74\x97\x62\x56\xf3\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x09\x59\x5a\x20\x28\x53\x69\x64\x65\x29\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x06\x00\x61\x00\x6c\x00\x74\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x03\x61\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x9a\x00\x63\ -\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x20\x00\x74\x00\x68\x00\x69\ -\x00\x73\x00\x20\x00\x69\x00\x66\x00\x20\x00\x79\x00\x6f\x00\x75\ -\x00\x20\x00\x77\x00\x61\x00\x6e\x00\x74\x00\x20\x00\x74\x00\x6f\ -\x00\x20\x00\x75\x00\x73\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\ -\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x2f\x00\x6c\ -\x00\x69\x00\x6e\x00\x65\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\ -\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\ -\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\ -\x00\x72\x00\x20\x00\x61\x00\x73\x00\x20\x00\x64\x00\x65\x00\x66\ -\x00\x61\x00\x75\x00\x6c\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x4d\x63\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\ -\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x6f\x20\x75\x73\x65\x20\ -\x74\x68\x65\x20\x63\x6f\x6c\x6f\x72\x2f\x6c\x69\x6e\x65\x77\x69\ -\x64\x74\x68\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x74\x6f\x6f\ -\x6c\x62\x61\x72\x20\x61\x73\x20\x64\x65\x66\x61\x75\x6c\x74\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x08\x00\x43\x00\x54\x00\x52\x00\x4c\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x04\x63\x74\x72\x6c\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x01\x26\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\ -\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\ -\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x66\x00\ -\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ -\x73\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x79\x00\ -\x65\x00\x72\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\ -\x20\x00\x62\x00\x65\x00\x20\x00\x6a\x00\x6f\x00\x69\x00\x6e\x00\ -\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\ -\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x42\x00\x6c\x00\ -\x6f\x00\x63\x00\x6b\x00\x73\x00\x2c\x00\x20\x00\x74\x00\x75\x00\ -\x72\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\ -\x65\x00\x20\x00\x64\x00\x69\x00\x73\x00\x70\x00\x6c\x00\x61\x00\ -\x79\x00\x20\x00\x66\x00\x61\x00\x73\x00\x74\x00\x65\x00\x72\x00\ -\x2c\x00\x20\x00\x62\x00\x75\x00\x74\x00\x20\x00\x6d\x00\x61\x00\ -\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\ -\x6d\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x73\x00\x20\x00\x65\x00\ -\x61\x00\x73\x00\x69\x00\x6c\x00\x79\x00\x20\x00\x65\x00\x64\x00\ -\x69\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x93\x69\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\ -\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x6c\ -\x61\x79\x65\x72\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x6a\x6f\ -\x69\x6e\x65\x64\x20\x69\x6e\x74\x6f\x20\x44\x72\x61\x66\x74\x20\ -\x42\x6c\x6f\x63\x6b\x73\x2c\x20\x74\x75\x72\x6e\x69\x6e\x67\x20\ -\x74\x68\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x66\x61\x73\x74\ -\x65\x72\x2c\x20\x62\x75\x74\x20\x6d\x61\x6b\x69\x6e\x67\x20\x74\ -\x68\x65\x6d\x20\x6c\x65\x73\x73\x20\x65\x61\x73\x69\x6c\x79\x20\ -\x65\x64\x69\x74\x61\x62\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x72\ -\x30\x53\x30\x8c\x30\x4c\x30\xc1\x30\xa7\x30\xc3\x30\xaf\x30\x55\ -\x30\x8c\x30\x66\x30\x44\x30\x8b\x30\x68\x30\x01\x30\x7a\x30\xfc\ -\x30\xd0\x30\xfc\x7a\x7a\x95\x93\x30\xaa\x30\xd6\x30\xb8\x30\xa7\ -\x30\xaf\x30\xc8\x00\x5b\x00\x70\x00\x61\x00\x70\x00\x65\x00\x72\ -\x00\x20\x00\x73\x00\x70\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6f\ -\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x5d\x30\x82\x30\xa4\ -\x30\xf3\x30\xdd\x30\xfc\x30\xc8\x30\x55\x30\x8c\x30\x7e\x30\x59\ -\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3c\x69\x66\x20\x74\ -\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\ -\x70\x61\x70\x65\x72\x20\x73\x70\x61\x63\x65\x20\x6f\x62\x6a\x65\ -\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x69\x6d\x70\x6f\ -\x72\x74\x65\x64\x20\x74\x6f\x6f\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4a\ -\x30\xc1\x30\xa7\x30\xc3\x30\xaf\x30\x55\x30\x8c\x30\x66\x30\x44\ -\x30\x6a\x30\x44\x58\x34\x54\x08\x30\x01\x00\x5b\x00\x74\x00\x65\ -\x00\x78\x00\x74\x00\x73\x00\x2f\x00\x6d\x00\x74\x00\x65\x00\x78\ -\x00\x74\x00\x5d\x30\x6f\x30\xa4\x30\xf3\x30\xdd\x30\xfc\x30\xc8\ -\x30\x55\x30\x8c\x30\x7e\x30\x5b\x30\x93\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x34\x69\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x75\ -\x6e\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x65\x78\x74\x73\x2f\ -\x6d\x74\x65\x78\x74\x73\x20\x77\x6f\x6e\x27\x74\x20\x62\x65\x20\ -\x69\x6d\x70\x6f\x72\x74\x65\x64\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\ -\x00\x70\x00\x78\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x70\x78\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x73\x00\x68\x00\x69\x00\x66\ -\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x73\x68\x69\x66\ -\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x18\x65\xb0\x89\x8f\x30\xaa\x30\ -\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\x6e\x65\xe2\x5b\x9a\x82\ -\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x74\x68\x65\x20\x64\ -\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ -\x20\x6e\x65\x77\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x1e\x30\xb9\x30\xca\x30\xc3\x30\xd7\x30\xb7\x30\xf3\ -\x30\xdc\x30\xeb\x30\x6e\x30\xc7\x30\xd5\x30\xa9\x30\xeb\x30\xc8\ -\x82\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x74\x68\x65\x20\ -\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\ -\x72\x20\x73\x6e\x61\x70\x20\x73\x79\x6d\x62\x6f\x6c\x73\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x22\x65\xb0\x30\x57\x30\x44\x30\xaa\x30\xd6\ -\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\x6e\x30\xc7\x30\xd5\x30\xa9\ -\x30\xeb\x30\xc8\x7d\xda\x5e\x45\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x25\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x6c\x69\ -\x6e\x65\x77\x69\x64\x74\x68\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\ -\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x95\ -\x89\x30\x58\x30\x8b\x00\x20\x00\x28\x00\x26\x00\x43\x00\x29\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x06\x26\x43\x6c\x6f\x73\x65\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x7d\ -\x9a\x88\x4c\x00\x20\x00\x28\x00\x26\x00\x63\x00\x29\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x09\x26\x43\x6f\x6e\x74\x69\x6e\x75\x65\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\ -\x30\xb3\x30\xd4\x30\xfc\x00\x20\x00\x28\x00\x26\x00\x43\x00\x29\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x43\x6f\x70\x79\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\ -\x26\x00\x46\x00\x69\x00\x6e\x00\x69\x00\x73\x00\x68\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x07\x26\x46\x69\x6e\x69\x73\x68\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x4f\ -\x00\x43\x00\x43\x00\x20\x30\xb9\x30\xbf\x30\xa4\x30\xeb\x00\x20\ -\x30\xaa\x30\xd5\x30\xbb\x30\xc3\x30\xc8\x00\x20\x00\x28\x00\x26\ -\x00\x4f\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x26\x4f\ -\x43\x43\x2d\x73\x74\x79\x6c\x65\x20\x6f\x66\x66\x73\x65\x74\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\ -\x26\x00\x52\x00\x65\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x76\x00\ -\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\x52\x65\x6c\x61\ -\x74\x69\x76\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x10\x51\x43\x30\x6b\x62\x3b\x30\x59\xff\x08\x00\x26\ -\x00\x55\xff\x09\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x55\ -\x6e\x64\x6f\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x0a\x00\x26\x00\x57\x00\x69\x00\x70\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x05\x26\x57\x69\x70\x65\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x30\xa2\x30\xaf\ -\x30\xc6\x30\xa3\x30\xd6\x30\xc9\x30\xe9\x30\xd5\x30\xc8\x30\xb3\ -\x30\xde\x30\xf3\x30\xc9\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\ -\x41\x63\x74\x69\x76\x65\x20\x44\x72\x61\x66\x74\x20\x63\x6f\x6d\ -\x6d\x61\x6e\x64\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x36\x30\xa2\x30\xaf\x30\xc6\x30\xa3\x30\xd6\x30\xaa\ -\x30\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\x6f\xff\x12\x30\x64\ -\x4e\xe5\x4e\x0a\x30\x6e\x70\xb9\x30\x7e\x30\x5f\x30\x6f\x30\xce\ -\x30\xfc\x30\xc9\x30\x4c\x5f\xc5\x89\x81\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x33\x41\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\ -\x74\x20\x6d\x75\x73\x74\x20\x68\x61\x76\x65\x20\x6d\x6f\x72\x65\ -\x20\x74\x68\x61\x6e\x20\x74\x77\x6f\x20\x70\x6f\x69\x6e\x74\x73\ -\x2f\x6e\x6f\x64\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x40\x00\x41\x00\x64\x00\x64\x00\x20\x00\ -\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x74\x00\ -\x6f\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x75\x00\ -\x72\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x20\x41\x64\x64\x20\x70\x6f\x69\x6e\x74\x73\x20\x74\x6f\x20\x74\ -\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\ -\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x10\x00\x41\x00\x70\x00\x65\x00\x72\x00\x74\x00\x75\x00\x72\x00\ -\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x41\x70\x65\x72\x74\ -\x75\x72\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x20\x00\x41\x00\x70\x00\x65\x00\x72\x00\x74\x00\x75\x00\ -\x72\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\ -\x3a\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x41\x70\x65\ -\x72\x74\x75\x72\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x90\x78\x62\ -\x9e\x30\x57\x30\x5f\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\xaf\x30\ -\xc8\x30\x6b\x90\x69\x75\x28\x30\x57\x30\x7e\x30\x59\x30\x02\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x19\x41\x70\x70\x6c\x79\x20\x74\ -\x6f\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ -\x74\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x04\x51\x86\x5f\x27\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\ -\x41\x72\x63\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x38\x30\x53\x30\x6e\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\ -\xaf\x30\xc8\x30\x6e\x7a\x2e\x98\x5e\x30\x6f\x30\xaa\x30\xd5\x30\ -\xbb\x30\xc3\x30\xc8\x30\x59\x30\x8b\x30\x53\x30\x68\x30\x4c\x30\ -\x67\x30\x4d\x30\x7e\x30\x5b\x30\x93\x30\x02\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x1f\x43\x61\x6e\x6e\x6f\x74\x20\x6f\x66\x66\x73\ -\x65\x74\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\ -\x79\x70\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x06\x4e\x2d\x5f\xc3\x00\x58\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x08\x43\x65\x6e\x74\x65\x72\x20\x58\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x30\xb9\x30\xbf\ -\x30\xa4\x30\xeb\x30\x6e\x59\x09\x66\xf4\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0c\x43\x68\x61\x6e\x67\x65\x20\x53\x74\x79\x6c\x65\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\xb6\ -\x00\x43\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x20\x00\x74\x00\x68\ -\x00\x69\x00\x73\x00\x20\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\ -\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ -\x00\x20\x00\x73\x00\x68\x00\x6f\x00\x75\x00\x6c\x00\x64\x00\x20\ -\x00\x61\x00\x70\x00\x70\x00\x65\x00\x61\x00\x72\x00\x20\x00\x61\ -\x00\x73\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x64\ -\x00\x2c\x00\x20\x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\x77\ -\x00\x69\x00\x73\x00\x65\x00\x20\x00\x69\x00\x74\x00\x20\x00\x77\ -\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\x70\x00\x70\x00\x65\ -\x00\x61\x00\x72\x00\x20\x00\x61\x00\x73\x00\x20\x00\x77\x00\x69\ -\x00\x72\x00\x65\x00\x66\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x20\ -\x00\x28\x00\x69\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5b\ -\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x74\x68\ -\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x73\x68\x6f\x75\x6c\x64\x20\ -\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x66\x69\x6c\x6c\x65\x64\ -\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x69\x74\x20\x77\ -\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x77\x69\ -\x72\x65\x66\x72\x61\x6d\x65\x20\x28\x69\x29\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\x51\x86\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x06\x43\x69\x72\x63\x6c\x65\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x67\x00\x5f\ -\x8c\x30\x6e\x70\xb9\x30\x4b\x30\x89\x30\x6e\x76\xf8\x5b\xfe\x5e\ -\xa7\x6a\x19\x30\x01\x30\x7e\x30\x5f\x30\x6f\x7d\x76\x5b\xfe\x5e\ -\xa7\x6a\x19\x00\x5b\x30\xb9\x30\xda\x30\xfc\x30\xb9\x00\x5d\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x36\x43\x6f\x6f\x72\x64\x69\x6e\ -\x61\x74\x65\x73\x20\x72\x65\x6c\x61\x74\x69\x76\x65\x20\x74\x6f\ -\x20\x6c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x6f\x72\x20\x61\ -\x62\x73\x6f\x6c\x75\x74\x65\x20\x28\x53\x50\x41\x43\x45\x29\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\x30\ -\xb3\x30\xd4\x30\xfc\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x43\ -\x6f\x70\x79\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x0a\x51\x86\x5f\x27\x30\x92\x4f\x5c\x62\x10\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0a\x43\x72\x65\x61\x74\x65\x20\x41\x72\ -\x63\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x16\x00\x42\x30\xb9\x30\xd7\x30\xe9\x30\xa4\x30\xf3\x66\xf2\x7d\ -\xda\x30\x92\x4f\x5c\x62\x10\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0e\x43\x72\x65\x61\x74\x65\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x51\ -\x86\x30\x92\x4f\x5c\x62\x10\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0d\x43\x72\x65\x61\x74\x65\x20\x43\x69\x72\x63\x6c\x65\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x5b\xf8\ -\x6c\xd5\x30\x6e\x4f\x5c\x62\x10\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x10\x43\x72\x65\x61\x74\x65\x20\x44\x69\x6d\x65\x6e\x73\x69\ -\x6f\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x0c\x59\x1a\x89\xd2\x5f\x62\x30\x92\x4f\x5c\x62\x10\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0e\x43\x72\x65\x61\x74\x65\x20\x50\ -\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x0a\x77\xe9\x5f\x62\x30\x92\x4f\x5c\x62\x10\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\x74\x65\ -\x20\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x30\xc6\x30\xad\x30\xb9\ -\x30\xc8\x30\x92\x4f\x5c\x62\x10\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x54\x65\x78\x74\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x90\x23\x7d\ -\xda\x30\x92\x4f\x5c\x62\x10\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0b\x43\x72\x65\x61\x74\x65\x20\x57\x69\x72\x65\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x6e\x2c\x5b\x9a\ -\x30\x92\x52\x4a\x96\x64\x30\x59\x30\x8b\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x12\x44\x65\x6c\x65\x74\x65\x20\x4d\x65\x61\x73\x75\ -\x72\x65\x6d\x65\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x1e\x00\x44\x00\x69\x00\x73\x00\x70\x00\x6c\ -\x00\x61\x00\x79\x00\x20\x00\x6f\x00\x70\x00\x74\x00\x69\x00\x6f\ -\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x44\x69\ -\x73\x70\x6c\x61\x79\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x8d\xdd\x96\ -\xe2\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\ -\x6e\x63\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x22\x63\xcf\x75\x3b\x5e\x73\x97\x62\x30\x6b\x70\xb9\x30\ -\x92\x62\x95\x5f\x71\x30\x57\x30\x6a\x30\x44\x30\x67\x30\x4f\x30\ -\x60\x30\x55\x30\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x44\ -\x6f\x20\x6e\x6f\x74\x20\x70\x72\x6f\x6a\x65\x63\x74\x20\x70\x6f\ -\x69\x6e\x74\x73\x20\x74\x6f\x20\x61\x20\x64\x72\x61\x77\x69\x6e\ -\x67\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x0a\x00\x44\x00\x72\x00\x61\x00\x66\x00\ -\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x72\x61\x66\x74\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\ -\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\x00\x6f\ -\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ -\x44\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x30\xa8\x30\xc3\x30\ -\xb8\x30\x92\x4e\xa4\x5d\xee\x30\x57\x30\x6a\x30\x44\x30\x67\x30\ -\x4f\x30\x60\x30\x55\x30\x44\xff\x01\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x17\x45\x64\x67\x65\x73\x20\x64\x6f\x6e\x27\x74\x20\x69\ -\x6e\x74\x65\x72\x73\x65\x63\x74\x21\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x7d\xe8\x96\xc6\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x46\x00\x26\ -\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x64\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x07\x46\x26\x69\x6c\x6c\x65\x64\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\x97\x62\x30\x6e\x82\ -\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x46\x61\x63\x65\x20\ -\x43\x6f\x6c\x6f\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x1a\x73\xfe\x57\x28\x30\x6e\x7d\xda\x30\x92\x95\ -\x89\x30\x58\x30\x66\x7d\x42\x4e\x86\x00\x5b\x00\x43\x00\x5d\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x28\x46\x69\x6e\x69\x73\x68\x65\ -\x73\x20\x61\x6e\x64\x20\x63\x6c\x6f\x73\x65\x73\x20\x74\x68\x65\ -\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\x6e\x65\x20\x28\x43\ -\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x6a\x00\x46\x00\x69\x00\x6e\x00\x69\x00\x73\x00\x68\x00\x65\x00\ -\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x75\x00\ -\x72\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x64\x00\x72\x00\ -\x61\x00\x77\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x72\x00\ -\x20\x00\x65\x00\x64\x00\x69\x00\x74\x00\x69\x00\x6e\x00\x67\x00\ -\x20\x00\x6f\x00\x70\x00\x65\x00\x72\x00\x61\x00\x74\x00\x69\x00\ -\x6f\x00\x6e\x00\x20\x00\x28\x00\x46\x00\x29\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x35\x46\x69\x6e\x69\x73\x68\x65\x73\x20\x74\x68\ -\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x64\x72\x61\x77\x69\x6e\ -\x67\x20\x6f\x72\x20\x65\x64\x69\x74\x69\x6e\x67\x20\x6f\x70\x65\ -\x72\x61\x74\x69\x6f\x6e\x20\x28\x46\x29\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x30\xd5\x30\xa9\x30\xf3\ -\x30\xc8\x30\xb5\x30\xa4\x30\xba\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x09\x46\x6f\x6e\x74\x20\x53\x69\x7a\x65\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x68\x00\x46\x00\x6f\x00\ -\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\x63\x00\x6c\x00\ -\x6f\x00\x73\x00\x65\x00\x64\x00\x20\x00\x73\x00\x6b\x00\x65\x00\ -\x74\x00\x63\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x63\x00\x74\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\ -\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\ -\x65\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x69\x00\ -\x74\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x46\x6f\x75\ -\x6e\x64\x20\x31\x20\x63\x6c\x6f\x73\x65\x64\x20\x73\x6b\x65\x74\ -\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x6d\x61\x6b\x69\x6e\ -\x67\x20\x61\x20\x66\x61\x63\x65\x20\x66\x72\x6f\x6d\x20\x69\x74\ -\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x46\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\ -\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x3a\x00\x20\x00\x65\x00\ -\x78\x00\x74\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\x00\x6e\x00\ -\x67\x00\x20\x00\x69\x00\x74\x00\x73\x00\x20\x00\x77\x00\x69\x00\ -\x72\x00\x65\x00\x73\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x23\x46\x6f\x75\x6e\x64\x20\x31\x20\x66\x61\x63\x65\x3a\x20\x65\ -\x78\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x69\x74\x73\x20\x77\x69\ -\x72\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x5e\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\ -\x00\x31\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x70\x00\x61\ -\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x63\ -\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\ -\x00\x3a\x00\x20\x00\x64\x00\x72\x00\x61\x00\x66\x00\x74\x00\x69\ -\x00\x66\x00\x79\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x69\x00\x74\ -\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x46\x6f\x75\x6e\ -\x64\x20\x31\x20\x6e\x6f\x6e\x2d\x70\x61\x72\x61\x6d\x65\x74\x72\ -\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x64\x72\x61\x66\ -\x74\x69\x66\x79\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x00\x46\x00\x6f\x00\ -\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\x6f\x00\x70\x00\ -\x65\x00\x6e\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x3a\x00\ -\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x69\x00\x6e\x00\x67\x00\ -\x20\x00\x69\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x1e\x46\x6f\x75\x6e\x64\x20\x31\x20\x6f\x70\x65\x6e\x20\x77\x69\ -\x72\x65\x3a\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6a\x00\ -\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\ -\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\ -\x69\x00\x63\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ -\x74\x00\x3a\x00\x20\x00\x62\x00\x72\x00\x65\x00\x61\x00\x6b\x00\ -\x69\x00\x6e\x00\x67\x00\x20\x00\x69\x00\x74\x00\x73\x00\x20\x00\ -\x64\x00\x65\x00\x70\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\ -\x63\x00\x69\x00\x65\x00\x73\x00\x0a\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x35\x46\x6f\x75\x6e\x64\x20\x31\x20\x70\x61\x72\x61\x6d\ -\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x62\x72\ -\x65\x61\x6b\x69\x6e\x67\x20\x69\x74\x73\x20\x64\x65\x70\x65\x6e\ -\x64\x65\x6e\x63\x69\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x5a\x00\x46\x00\x6f\x00\x75\x00\x6e\ -\x00\x64\x00\x20\x00\x31\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\ -\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x62\x00\x6c\ -\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ -\x00\x3a\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x69\ -\x00\x66\x00\x79\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x69\x00\x74\ -\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x46\x6f\x75\x6e\ -\x64\x20\x31\x20\x73\x6f\x6c\x69\x64\x69\x66\x69\x63\x61\x62\x6c\ -\x65\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x73\x6f\x6c\x69\x64\x69\ -\x66\x79\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x00\x46\x00\x6f\x00\x75\x00\ -\x6e\x00\x64\x00\x20\x00\x32\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x63\x00\x74\x00\x73\x00\x3a\x00\x20\x00\x66\x00\x75\x00\ -\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\ -\x6d\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x46\x6f\x75\ -\x6e\x64\x20\x32\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x66\x75\ -\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\x00\x46\x00\x6f\x00\x75\ -\x00\x6e\x00\x64\x00\x20\x00\x32\x00\x20\x00\x6f\x00\x62\x00\x6a\ -\x00\x65\x00\x63\x00\x74\x00\x73\x00\x3a\x00\x20\x00\x73\x00\x75\ -\x00\x62\x00\x74\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\x00\x6e\ -\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x0a\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x22\x46\x6f\x75\x6e\x64\x20\x32\x20\ -\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x73\x75\x62\x74\x72\x61\x63\ -\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x46\x00\x6f\x00\x75\ -\x00\x6e\x00\x64\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\ -\x00\x64\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x73\x00\x3a\ -\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\ -\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x0a\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x21\x46\x6f\x75\x6e\x64\x20\x63\x6c\x6f\x73\ -\x65\x64\x20\x77\x69\x72\x65\x73\x3a\x20\x6d\x61\x6b\x69\x6e\x67\ -\x20\x66\x61\x63\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x5c\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\ -\x64\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x73\x00\ -\x3a\x00\x20\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x69\x00\x6e\x00\ -\x67\x00\x20\x00\x65\x00\x61\x00\x63\x00\x68\x00\x20\x00\x6f\x00\ -\x70\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x69\x00\x64\x00\ -\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x46\x6f\x75\ -\x6e\x64\x20\x67\x72\x6f\x75\x70\x73\x3a\x20\x63\x6c\x6f\x73\x69\ -\x6e\x67\x20\x65\x61\x63\x68\x20\x6f\x70\x65\x6e\x20\x6f\x62\x6a\ -\x65\x63\x74\x20\x69\x6e\x73\x69\x64\x65\x0a\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5a\x00\x46\x00\x6f\x00\ -\x75\x00\x6e\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x63\x00\x74\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\ -\x61\x00\x69\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x63\x00\ -\x75\x00\x72\x00\x76\x00\x65\x00\x73\x00\x3a\x00\x20\x00\x66\x00\ -\x75\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\ -\x65\x00\x6d\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x46\ -\x6f\x75\x6e\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x63\x6f\x6e\ -\x74\x61\x69\x6e\x69\x6e\x67\x20\x63\x75\x72\x76\x65\x73\x3a\x20\ -\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x52\x00\x46\x00\x6f\ -\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x6f\x00\x6e\x00\x6c\x00\x79\ -\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x73\x00\x3a\x00\x20\ -\x00\x65\x00\x78\x00\x74\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\ -\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x69\x00\x72\ -\x00\x20\x00\x65\x00\x64\x00\x67\x00\x65\x00\x73\x00\x0a\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x29\x46\x6f\x75\x6e\x64\x20\x6f\x6e\ -\x6c\x79\x20\x77\x69\x72\x65\x73\x3a\x20\x65\x78\x74\x72\x61\x63\ -\x74\x69\x6e\x67\x20\x74\x68\x65\x69\x72\x20\x65\x64\x67\x65\x73\ -\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x42\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x73\x00\ -\x65\x00\x76\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\x00\x65\x00\ -\x64\x00\x67\x00\x65\x00\x73\x00\x3a\x00\x20\x00\x77\x00\x69\x00\ -\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\ -\x6d\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x46\x6f\x75\ -\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x65\x64\x67\x65\x73\ -\x3a\x20\x77\x69\x72\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x48\x00\x46\ -\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x65\x00\x76\ -\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\x00\x66\x00\x61\x00\x63\ -\x00\x65\x00\x73\x00\x3a\x00\x20\x00\x73\x00\x70\x00\x6c\x00\x69\ -\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\ -\x00\x65\x00\x6d\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\ -\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x66\x61\ -\x63\x65\x73\x3a\x20\x73\x70\x6c\x69\x74\x74\x69\x6e\x67\x20\x74\ -\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x66\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\ -\x00\x73\x00\x65\x00\x76\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\ -\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x63\x00\x6f\x00\x6e\x00\x6e\ -\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x65\x00\x64\ -\x00\x67\x00\x65\x00\x73\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x6b\ -\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\ -\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x0a\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x33\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\ -\x6c\x20\x6e\x6f\x6e\x2d\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64\x20\ -\x65\x64\x67\x65\x73\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x63\x6f\ -\x6d\x70\x6f\x75\x6e\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x6a\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\ -\x64\x00\x20\x00\x73\x00\x65\x00\x76\x00\x65\x00\x72\x00\x61\x00\ -\x6c\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x74\x00\x72\x00\ -\x65\x00\x61\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x3a\x00\ -\x20\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ -\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\ -\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x46\x6f\x75\x6e\x64\ -\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6e\x6f\x6e\x2d\x74\x72\x65\ -\x61\x74\x61\x62\x6c\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\ -\x6d\x61\x6b\x69\x6e\x67\x20\x63\x6f\x6d\x70\x6f\x75\x6e\x64\x0a\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x72\ -\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x65\ -\x00\x76\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\x00\x6f\x00\x62\ -\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x72\ -\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x3a\x00\x20\ -\x00\x6d\x00\x61\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\ -\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\ -\x00\x72\x00\x69\x00\x63\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\ -\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x39\x46\x6f\x75\x6e\ -\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\ -\x73\x20\x6f\x72\x20\x66\x61\x63\x65\x73\x3a\x20\x6d\x61\x6b\x69\ -\x6e\x67\x20\x61\x20\x70\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\ -\x66\x61\x63\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x46\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\ -\x20\x00\x73\x00\x65\x00\x76\x00\x65\x00\x72\x00\x61\x00\x6c\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\ -\x3a\x00\x20\x00\x66\x00\x75\x00\x73\x00\x69\x00\x6e\x00\x67\x00\ -\x20\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x0a\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x23\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\ -\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x66\x75\x73\x69\ -\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x76\x00\x46\x00\x6f\x00\x75\x00\x6e\ -\x00\x64\x00\x20\x00\x73\x00\x65\x00\x76\x00\x65\x00\x72\x00\x61\ -\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ -\x00\x73\x00\x3a\x00\x20\x00\x73\x00\x75\x00\x62\x00\x74\x00\x72\ -\x00\x61\x00\x63\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\ -\x00\x68\x00\x65\x00\x6d\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\ -\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x66\x00\x69\x00\x72\ -\x00\x73\x00\x74\x00\x20\x00\x6f\x00\x6e\x00\x65\x00\x0a\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x3b\x46\x6f\x75\x6e\x64\x20\x73\x65\ -\x76\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x73\ -\x75\x62\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\ -\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x66\x69\x72\x73\x74\x20\x6f\ -\x6e\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x9e\x00\x49\x00\x66\x00\x20\x00\x63\x00\x68\x00\x65\x00\ -\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x61\x00\x6e\x00\ -\x20\x00\x4f\x00\x43\x00\x43\x00\x2d\x00\x73\x00\x74\x00\x79\x00\ -\x6c\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\ -\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\ -\x65\x00\x20\x00\x70\x00\x65\x00\x72\x00\x66\x00\x6f\x00\x72\x00\ -\x6d\x00\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\ -\x65\x00\x61\x00\x64\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\ -\x68\x00\x65\x00\x20\x00\x63\x00\x6c\x00\x61\x00\x73\x00\x73\x00\ -\x69\x00\x63\x00\x20\x00\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\ -\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x49\x66\x20\x63\x68\ -\x65\x63\x6b\x65\x64\x2c\x20\x61\x6e\x20\x4f\x43\x43\x2d\x73\x74\ -\x79\x6c\x65\x20\x6f\x66\x66\x73\x65\x74\x20\x77\x69\x6c\x6c\x20\ -\x62\x65\x20\x70\x65\x72\x66\x6f\x72\x6d\x65\x64\x20\x69\x6e\x73\ -\x74\x65\x61\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x63\x6c\x61\x73\ -\x73\x69\x63\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x98\x00\x49\x00\x66\x00\x20\ -\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\ -\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\ -\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x6e\x00\x6f\ -\x00\x74\x00\x20\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x73\x00\x68\ -\x00\x20\x00\x75\x00\x6e\x00\x74\x00\x69\x00\x6c\x00\x20\x00\x79\ -\x00\x6f\x00\x75\x00\x20\x00\x70\x00\x72\x00\x65\x00\x73\x00\x73\ -\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\ -\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x62\x00\x75\x00\x74\ -\x00\x74\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x67\x00\x61\x00\x69\ -\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4c\x49\x66\x20\x63\ -\x68\x65\x63\x6b\x65\x64\x2c\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\ -\x77\x69\x6c\x6c\x20\x6e\x6f\x74\x20\x66\x69\x6e\x69\x73\x68\x20\ -\x75\x6e\x74\x69\x6c\x20\x79\x6f\x75\x20\x70\x72\x65\x73\x73\x20\ -\x74\x68\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x62\x75\x74\x74\ -\x6f\x6e\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x4c\x30\xc1\x30\xa7\x30\xc3\x30\xaf\ -\x30\x55\x30\x8c\x30\x66\x30\x44\x30\x8b\x58\x34\x54\x08\x30\x01\ -\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\x6f\x79\xfb\ -\x52\xd5\x00\x20\x00\x28\x00\x43\x00\x29\x00\x20\x30\x67\x30\x6f\ -\x30\x6a\x30\x4f\x30\xb3\x30\xd4\x30\xfc\x30\x55\x30\x8c\x30\x7e\ -\x30\x59\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x49\x66\ -\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\x65\x63\x74\ -\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x63\x6f\x70\x69\x65\x64\ -\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x6d\x6f\x76\x65\ -\x64\x20\x28\x43\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x20\x00\x49\x00\x6e\x00\x73\x00\x74\x00\x61\x00\ -\x6c\x00\x6c\x00\x65\x00\x64\x00\x20\x00\x4d\x00\x61\x00\x63\x00\ -\x72\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x49\ -\x6e\x73\x74\x61\x6c\x6c\x65\x64\x20\x4d\x61\x63\x72\x6f\x73\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x00\ -\x4c\x00\x61\x00\x73\x00\x74\x00\x20\x00\x70\x00\x6f\x00\x69\x00\ -\x6e\x00\x74\x00\x20\x00\x68\x00\x61\x00\x73\x00\x20\x00\x62\x00\ -\x65\x00\x65\x00\x6e\x00\x20\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\ -\x76\x00\x65\x00\x64\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x1c\x4c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x68\x61\x73\x20\ -\x62\x65\x65\x6e\x20\x72\x65\x6d\x6f\x76\x65\x64\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x76\xf4\x7d\ -\xda\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4c\x69\x6e\x65\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\x7d\ -\xda\x30\x6e\x82\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4c\ -\x69\x6e\x65\x20\x43\x6f\x6c\x6f\x72\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x06\x7d\xda\x30\x6e\x5e\x45\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4c\x69\x6e\x65\x20\x57\x69\ -\x64\x74\x68\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x04\x79\xfb\x52\xd5\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x04\x4d\x6f\x76\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x04\x30\x6a\x30\x57\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x06\x8f\xba\x30\x6e\x65\x70\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0f\x4e\x75\x6d\x62\x65\x72\x20\x6f\x66\ -\x20\x73\x69\x64\x65\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x0a\x30\xaa\x30\xd5\x30\xbb\x30\xc3\x30\xc8\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x4f\x66\x66\x73\x65\x74\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x54\ -\x00\x4f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x00\x20\x00\x6f\ -\x00\x6e\x00\x6c\x00\x79\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x6b\ -\x00\x73\x00\x20\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\x6e\x00\x65\ -\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\ -\x00\x61\x00\x74\x00\x20\x00\x61\x00\x20\x00\x74\x00\x69\x00\x6d\ -\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x4f\x66\ -\x66\x73\x65\x74\x20\x6f\x6e\x6c\x79\x20\x77\x6f\x72\x6b\x73\x20\ -\x6f\x6e\x20\x6f\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x61\x74\ -\x20\x61\x20\x74\x69\x6d\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x12\x30\xaa\x30\xd6\x30\xb8\x30\xa7\ -\x30\xaf\x30\xc8\x30\x92\x90\x78\x62\x9e\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0b\x50\x69\x63\x6b\x20\x4f\x62\x6a\x65\x63\x74\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x63\ -\xcf\x75\x3b\x97\x62\x30\x92\x90\x78\x62\x9e\x30\x59\x30\x8b\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x28\x50\x69\x63\x6b\x20\x61\x20\ -\x66\x61\x63\x65\x20\x74\x6f\x20\x64\x65\x66\x69\x6e\x65\x20\x74\ -\x68\x65\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\ -\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x1e\x00\x50\x00\x69\x00\x63\x00\x6b\x00\x20\x00\x61\x00\x70\x00\ -\x65\x00\x72\x00\x74\x00\x75\x00\x72\x00\x65\x00\x3a\x00\x0a\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x50\x69\x63\x6b\x20\x61\x70\ -\x65\x72\x74\x75\x72\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x1c\x57\xfa\x67\x2c\x30\x68\x30\x6a\ -\x30\x8b\x89\xd2\x5e\xa6\x30\x92\x90\x78\x62\x9e\x30\x57\x30\x7e\ -\x30\x59\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\ -\x63\x6b\x20\x62\x61\x73\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x57\ -\xfa\x70\xb9\x30\x92\x90\x78\x62\x9e\x00\x3a\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\x62\x61\x73\x65\x20\x70\ -\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x0e\x4e\x2d\x5f\xc3\x70\xb9\x30\x92\x90\x78\ -\x62\x9e\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x50\x69\ -\x63\x6b\x20\x63\x65\x6e\x74\x65\x72\x20\x70\x6f\x69\x6e\x74\x3a\ -\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x10\x8d\xdd\x96\xe2\x30\x92\x90\x78\x62\x9e\x30\x59\x30\x8b\x00\ -\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x50\x69\x63\x6b\x20\ -\x64\x69\x73\x74\x61\x6e\x63\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x7d\x42\x4e\x86\x70\xb9\ -\x30\x92\x90\x78\x62\x9e\x30\x57\x30\x7e\x30\x59\x30\x02\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x10\x50\x69\x63\x6b\x20\x65\x6e\x64\ -\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x10\x67\x00\x52\x1d\x30\x6e\x70\xb9\ -\x30\x92\x90\x78\x62\x9e\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x12\x50\x69\x63\x6b\x20\x66\x69\x72\x73\x74\x20\x70\x6f\x69\ -\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x0c\x98\x18\x57\xdf\x30\x92\x90\x78\x62\x9e\x00\x3a\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x6c\ -\x6f\x63\x61\x74\x69\x6f\x6e\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\x6b\ -\x21\x30\x6e\x30\xdd\x30\xa4\x30\xf3\x30\xc8\x30\x92\x90\x78\x62\ -\x9e\x30\x01\x30\x7e\x30\x5f\x30\x6f\x5b\x8c\x4e\x86\x00\x28\x00\ -\x46\x00\x29\x30\x01\x95\x89\x30\x58\x30\x8b\x00\x28\x00\x43\x00\ -\x29\x30\x00\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x50\x69\x63\ -\x6b\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x2c\x20\x6f\x72\ -\x20\x28\x46\x29\x69\x6e\x69\x73\x68\x20\x6f\x72\x20\x28\x43\x29\ -\x6c\x6f\x73\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x0e\x6b\x21\x30\x6e\x70\xb9\x30\x92\x90\x78\ -\x62\x9e\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\ -\x63\x6b\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x53\ -\xcd\x5b\xfe\x50\x74\x30\x6e\x70\xb9\x30\x92\x90\x78\x62\x9e\x30\ -\x57\x30\x7e\x30\x59\x30\x02\x30\x00\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x15\x50\x69\x63\x6b\x20\x6f\x70\x70\x6f\x73\x69\x74\x65\ -\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x14\x53\x4a\x5f\x84\x30\x92\x90\x78\ -\x62\x9e\x30\x57\x30\x7e\x30\x59\x30\x02\x30\x00\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0d\x50\x69\x63\x6b\x20\x72\x61\x64\x69\x75\ -\x73\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x0e\x30\xd4\x30\xc3\x30\xaf\x56\xde\x8e\xe2\x89\xd2\xff\ -\x1a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\ -\x72\x6f\x74\x61\x74\x69\x6f\x6e\x20\x61\x6e\x67\x6c\x65\x3a\x0a\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\ -\x56\xde\x8e\xe2\x30\x6e\x4e\x2d\x5f\xc3\x30\x92\x90\x78\x62\x9e\ -\x30\x57\x30\x7e\x30\x59\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x16\x50\x69\x63\x6b\x20\x72\x6f\x74\x61\x74\x69\x6f\x6e\x20\ -\x63\x65\x6e\x74\x65\x72\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x16\x62\xe1\x59\x27\x7e\x2e\x5c\x0f\ -\x73\x87\x30\x92\x90\x78\x62\x9e\x30\x59\x30\x8b\x00\x3a\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x13\x50\x69\x63\x6b\x20\x73\x63\x61\ -\x6c\x65\x20\x66\x61\x63\x74\x6f\x72\x3a\x0a\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x95\x8b\x59\xcb\x89\ -\xd2\x5e\xa6\x30\x92\x90\x78\x62\x9e\x30\x57\x30\x7e\x30\x59\x30\ -\x02\x30\x00\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\ -\x6b\x20\x73\x74\x61\x72\x74\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x59\ -\xcb\x70\xb9\x30\x92\x90\x78\x62\x9e\x30\x57\x30\x7e\x30\x59\x30\ -\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\x6b\x20\ -\x73\x74\x61\x72\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\x70\xb9\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x05\x50\x6f\x69\x6e\x74\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x53\x4a\ -\x5f\x84\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x61\x64\x69\ -\x75\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x08\x51\x86\x30\x6e\x53\x4a\x5f\x84\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x10\x52\x61\x64\x69\x75\x73\x20\x6f\x66\x20\x43\x69\ -\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x4a\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\ -\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\x00\x20\ -\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\ -\x00\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\x74\ -\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x25\x52\x65\x6d\x6f\x76\x65\x20\x70\ -\x6f\x69\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x63\ -\x75\x72\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x56\xde\x8e\ -\xe2\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x6f\x74\x61\x74\ -\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x08\x62\xe1\x59\x27\x7e\x2e\x5c\x0f\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x05\x53\x63\x61\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x08\x5e\x73\x97\x62\x90\x78\x62\x9e\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x65\x6c\x65\x63\x74\ -\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x10\x00\x58\x00\x59\x00\x20\x5e\x73\x97\x62\ -\x30\x92\x90\x78\x62\x9e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\ -\x53\x65\x6c\x65\x63\x74\x20\x58\x59\x20\x70\x6c\x61\x6e\x65\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\ -\x58\x00\x5a\x00\x20\x5e\x73\x97\x62\x30\x92\x90\x78\x62\x9e\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\ -\x58\x5a\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x10\x00\x59\x00\x5a\x00\x20\x5e\x73\ -\x97\x62\x30\x92\x90\x78\x62\x9e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x59\x5a\x20\x70\x6c\x61\x6e\ -\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x22\x79\xfb\x52\xd5\x30\x59\x30\x8b\x30\xaa\x30\xd6\x30\xb8\x30\ -\xa7\x30\xaf\x30\xc8\x30\x92\x90\x78\x62\x9e\x30\x57\x30\x7e\x30\ -\x59\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x53\x65\x6c\ -\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\ -\x20\x6d\x6f\x76\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x20\x30\xaa\x30\xd5\x30\xbb\x30\xc3\x30\xc8\ -\x30\x59\x30\x8b\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\ -\x30\x92\x90\x78\x62\x9e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\ -\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\ -\x20\x74\x6f\x20\x6f\x66\x66\x73\x65\x74\x0a\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x56\xde\x8e\xe2\x30\ -\x59\x30\x8b\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\ -\x92\x90\x78\x62\x9e\x30\x57\x30\x7e\x30\x59\x30\x02\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x1b\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\ -\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x72\x6f\x74\x61\x74\ -\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x26\x62\xe1\x59\x27\x7e\x2e\x5c\x0f\x7e\x2e\x5c\x0f\x30\x59\ -\x30\x8b\x30\xaa\x30\xd6\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\x92\ -\x90\x78\x62\x9e\x30\x59\x30\x8b\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\ -\x63\x74\x20\x74\x6f\x20\x73\x63\x61\x6c\x65\x0a\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\x00\x53\x00\x65\ -\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x61\x00\x6e\x00\x20\ -\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x74\ -\x00\x6f\x00\x20\x00\x74\x00\x72\x00\x69\x00\x6d\x00\x2f\x00\x65\ -\x00\x78\x00\x74\x00\x65\x00\x6e\x00\x64\x00\x0a\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x20\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\ -\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x74\x72\x69\x6d\x2f\x65\ -\x78\x74\x65\x6e\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x28\x30\xa2\x30\xc3\x30\xd7\x30\xb0\x30\xec\ -\x30\xfc\x30\xc9\x30\x59\x30\x8b\x30\xaa\x30\xd6\x30\xb8\x30\xa7\ -\x30\xaf\x30\xc8\x30\x92\x90\x78\x62\x9e\x30\x59\x30\x8b\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x1c\x53\x65\x6c\x65\x63\x74\x20\x61\ -\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x75\x70\x67\x72\ -\x61\x64\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x22\x73\xfe\x57\x28\x30\x6e\x30\xd3\x30\xe5\x30\xfc\ -\x30\x6b\x57\x82\x76\xf4\x30\x6a\x97\x62\x30\x92\x90\x78\x62\x9e\ -\x30\x59\x30\x8b\x30\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\ -\x53\x65\x6c\x65\x63\x74\x20\x70\x6c\x61\x6e\x65\x20\x70\x65\x72\ -\x70\x65\x6e\x64\x69\x63\x75\x6c\x61\x72\x20\x74\x6f\x20\x74\x68\ -\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x76\x69\x65\x77\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x30\xb9\ -\x30\xd7\x30\xe9\x30\xa4\x30\xf3\x30\x6f\x95\x89\x30\x58\x30\x89\ -\x30\x8c\x30\x66\x30\x44\x30\x7e\x30\x59\x30\x02\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x17\x53\x70\x6c\x69\x6e\x65\x20\x68\x61\x73\ -\x20\x62\x65\x65\x6e\x20\x63\x6c\x6f\x73\x65\x64\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x53\x00\ -\x74\x00\x61\x00\x72\x00\x74\x00\x20\x00\x41\x00\x6e\x00\x67\x00\ -\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x74\x61\ -\x72\x74\x20\x41\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x24\x30\x53\x30\x6e\x30\xaa\x30\xd6\ -\x30\xb8\x30\xa7\x30\xaf\x30\xc8\x30\xbf\x30\xa4\x30\xd7\x30\x6f\ -\x7d\xe8\x96\xc6\x30\x67\x30\x4d\x30\x6a\x30\x44\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x21\x54\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\ -\x74\x20\x74\x79\x70\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x65\x64\ -\x69\x74\x61\x62\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x16\x4f\x5c\x62\x10\x30\xe2\x30\xfc\x30\ -\xc9\x30\x78\x30\x6e\x52\x07\x30\x8a\x66\xff\x30\x48\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x19\x54\x6f\x67\x67\x6c\x65\x73\x20\x43\ -\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x65\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\ -\x00\x54\x00\x72\x00\x69\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x04\x54\x72\x69\x6d\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x2a\x67\x00\x5f\x8c\x30\x6e\x64\xcd\x4f\x5c\ -\x30\x92\x51\x43\x30\x6b\x62\x3b\x30\x59\x00\x20\x00\x28\x00\x43\ -\x00\x74\x00\x72\x00\x6c\x00\x20\x00\x2b\x00\x20\x00\x5a\x00\x29\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x55\x6e\x64\x6f\x20\x74\ -\x68\x65\x20\x6c\x61\x73\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\ -\x28\x43\x54\x52\x4c\x2b\x5a\x29\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x04\x88\x68\x79\x3a\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x04\x56\x69\x65\x77\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa2\x00\x57\x00\x69\x00\x70\ -\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x65\ -\x00\x78\x00\x69\x00\x73\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\ -\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\ -\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ -\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x61\x00\x6e\ -\x00\x64\x00\x20\x00\x73\x00\x74\x00\x61\x00\x72\x00\x74\x00\x73\ -\x00\x20\x00\x61\x00\x67\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x66\ -\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ -\x00\x6c\x00\x61\x00\x73\x00\x74\x00\x20\x00\x70\x00\x6f\x00\x69\ -\x00\x6e\x00\x74\x00\x20\x00\x28\x00\x57\x00\x29\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x51\x57\x69\x70\x65\x73\x20\x74\x68\x65\x20\ -\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x73\x65\x67\x6d\x65\x6e\x74\ -\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6c\x69\x6e\x65\x20\x61\ -\x6e\x64\x20\x73\x74\x61\x72\x74\x73\x20\x61\x67\x61\x69\x6e\x20\ -\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x70\x6f\ -\x69\x6e\x74\x20\x28\x57\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x14\x90\x23\x7d\xda\x30\x4c\x95\x89\x30\ -\x58\x30\x89\x30\x8c\x30\x7e\x30\x57\x30\x5f\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x15\x57\x69\x72\x65\x20\x68\x61\x73\x20\x62\x65\ -\x65\x6e\x20\x63\x6c\x6f\x73\x65\x64\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x57\x00\x69\x00\x72\ -\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0a\x57\x69\x72\x65\x20\x74\x6f\x6f\ -\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x02\x00\x58\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\x58\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x6b\ -\x21\x30\x6e\x70\xb9\x30\x6e\x00\x20\x00\x58\x00\x20\x5e\xa7\x6a\ -\x19\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x58\x20\x63\x6f\x6f\ -\x72\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\ -\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x04\x00\x58\x00\x59\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x02\x58\x59\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x04\x00\x58\x00\x5a\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x02\x58\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x02\x00\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x01\x59\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x12\x6b\x21\x30\x6e\x70\xb9\x30\x6e\x00\x20\x00\x59\x00\x20\ -\x5e\xa7\x6a\x19\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x59\x20\ -\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\ -\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x04\x00\x59\x00\x5a\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x02\x59\x5a\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x02\x00\x5a\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x01\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x12\x6b\x21\x30\x6e\x70\xb9\x30\x6e\x00\x20\x00\ -\x5a\x00\x20\x5e\xa7\x6a\x19\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x1a\x5a\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\ -\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x61\x00\x63\x00\ -\x74\x00\x69\x00\x76\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\ -\x6d\x00\x61\x00\x6e\x00\x64\x00\x3a\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0f\x61\x63\x74\x69\x76\x65\x20\x63\x6f\x6d\x6d\x61\x6e\ -\x64\x3a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x14\x30\xc9\x30\xe9\x30\xd5\x30\xc8\x30\xb3\x30\xde\x30\xf3\ -\x30\xc9\x30\xd0\x30\xfc\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\ -\x64\x72\x61\x66\x74\x20\x43\x6f\x6d\x6d\x61\x6e\x64\x20\x42\x61\ -\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x00\x00\xb0\x23\ -\x3c\ -\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ -\x00\x00\x09\x98\x00\x00\x00\x58\x00\x00\xa3\xda\x00\x00\x00\x59\ -\x00\x00\xa4\xa5\x00\x00\x00\x5a\x00\x00\xa5\x50\x00\x00\x05\xd9\ -\x00\x00\xa4\x65\x00\x00\x05\xda\x00\x00\xa4\x85\x00\x00\x05\xea\ -\x00\x00\xa5\x30\x00\x00\x07\x78\x00\x00\x6f\xde\x00\x00\x48\x83\ -\x00\x00\x03\x65\x00\x00\x48\x83\x00\x00\x76\x90\x00\x00\x68\x34\ -\x00\x00\x6a\x69\x00\x04\xa6\x79\x00\x00\x79\xcb\x00\x04\xbb\x04\ -\x00\x00\x0b\xa4\x00\x04\xbb\x04\x00\x00\x7e\x50\x00\x05\x30\x45\ -\x00\x00\x0d\xf9\x00\x05\x30\x45\x00\x00\x90\x05\x00\x05\x46\xc5\ -\x00\x00\x0e\x26\x00\x05\x46\xc5\x00\x00\x90\xa7\x00\x05\x56\x45\ -\x00\x00\x47\x21\x00\x05\x56\x45\x00\x00\x90\xd1\x00\x05\xac\xf4\ -\x00\x00\x19\x6c\x00\x05\xb8\xfd\x00\x00\xa1\x64\x00\x05\xcf\xc7\ -\x00\x00\xa2\x0a\x00\x05\xe0\x85\x00\x00\x22\xf5\x00\x06\xab\x8c\ -\x00\x00\x6b\xd9\x00\x10\x84\x49\x00\x00\x53\x09\x00\x12\x05\xba\ -\x00\x00\x9d\xbc\x00\x16\xc6\xda\x00\x00\x84\xea\x00\x2a\xa6\x79\ -\x00\x00\x72\xa0\x00\x2b\xc4\xaf\x00\x00\x73\x8e\x00\x2b\xe0\x65\ -\x00\x00\x73\xc1\x00\x39\xdf\x33\x00\x00\x34\xee\x00\x3d\xa1\x19\ -\x00\x00\x77\xaa\x00\x3e\x93\x83\x00\x00\x36\x24\x00\x48\x8f\x7c\ -\x00\x00\x25\xcf\x00\x4b\x66\x35\x00\x00\x31\xf0\x00\x4b\x66\x37\ -\x00\x00\x32\x33\x00\x4b\x66\x39\x00\x00\x32\x76\x00\x4b\x87\xd4\ -\x00\x00\x7d\x89\x00\x57\x60\x54\x00\x00\x99\x91\x00\x58\xfd\xf4\ -\x00\x00\x4a\x84\x00\x59\x98\x25\x00\x00\x13\xfa\x00\x59\x98\x25\ -\x00\x00\x9a\xe3\x00\x6a\x58\x9a\x00\x00\x93\x0b\x00\x79\xef\xd4\ -\x00\x00\x70\x16\x00\x7e\x7f\x0e\x00\x00\x66\xc8\x00\x8a\x23\x95\ -\x00\x00\x29\x3b\x00\x8a\x23\x97\x00\x00\x29\x7f\x00\x8a\x23\x99\ -\x00\x00\x29\xc3\x00\x91\xbc\xe9\x00\x00\x0e\x55\x00\xa6\x37\x3f\ -\x00\x00\x28\x02\x00\xaa\x80\x25\x00\x00\x7c\xdb\x00\xc6\xe3\x6e\ -\x00\x00\x24\x51\x00\xcb\xa8\x14\x00\x00\x6e\xf0\x00\xfc\x00\xca\ -\x00\x00\x8b\xc0\x01\x21\xd6\x39\x00\x00\x51\xf4\x01\x22\xb4\xf9\ -\x00\x00\x14\x29\x01\x2f\x8e\x7e\x00\x00\x5d\x52\x01\x48\xfe\xa3\ -\x00\x00\x36\x9e\x01\x53\xf3\xaa\x00\x00\x81\xa0\x01\x56\x16\x4a\ -\x00\x00\x8b\x2b\x01\x67\x0d\x8a\x00\x00\x86\xa5\x01\x69\x11\x7a\ -\x00\x00\x97\x44\x01\x82\x39\x0a\x00\x00\x93\xa9\x01\x8b\x68\x75\ -\x00\x00\xa1\x0b\x01\xa1\x7f\x63\x00\x00\x1b\xeb\x01\xc1\xd9\xde\ -\x00\x00\x55\x52\x01\xd2\x8f\xd3\x00\x00\x4b\x37\x01\xdf\x11\x43\ -\x00\x00\x05\x74\x01\xe2\xf4\x5a\x00\x00\x9d\x39\x01\xfc\xae\xd3\ -\x00\x00\x70\x57\x02\x05\xbe\x25\x00\x00\x7b\x64\x02\x46\x58\x0a\ -\x00\x00\x96\x76\x02\x65\xad\x62\x00\x00\xa6\x20\x02\x6e\x07\xe2\ -\x00\x00\x4d\xa1\x02\x76\x24\x13\x00\x00\x3a\xeb\x02\x7d\xe0\x55\ -\x00\x00\x4e\x43\x02\x94\x46\x1a\x00\x00\x93\x5a\x02\xa7\x2c\x15\ -\x00\x00\x04\x2e\x02\xaa\x36\x95\x00\x00\x72\x3d\x02\xb1\xf0\xba\ -\x00\x00\x88\x62\x02\xbf\xaa\x8e\x00\x00\x39\x4a\x02\xc0\x66\xf2\ -\x00\x00\x59\x24\x02\xc8\x3f\xf5\x00\x00\x64\x99\x02\xd9\xa4\xb9\ -\x00\x00\x6a\x0e\x02\xdb\x1a\x94\x00\x00\x06\xff\x03\x01\x84\xc4\ -\x00\x00\x8c\x67\x03\x12\x97\x6a\x00\x00\x8a\x56\x03\x1a\x14\x14\ -\x00\x00\x2f\x86\x03\x1a\x16\x59\x00\x00\x4e\xf9\x03\x2f\x1a\x6a\ -\x00\x00\x74\x4c\x03\x7e\xca\xb5\x00\x00\x42\x7a\x03\x88\x1f\xd4\ -\x00\x00\x43\x67\x03\x9e\x58\xa5\x00\x00\x00\x4a\x03\xb3\x9e\xfa\ -\x00\x00\x94\x59\x03\xb5\xc8\x9a\x00\x00\x95\xb7\x03\xbd\xd4\xe4\ -\x00\x00\x75\x27\x03\xc4\x3c\xf5\x00\x00\x77\x6a\x03\xc5\xd5\x5e\ -\x00\x00\x09\x1d\x03\xcb\x0d\xe5\x00\x00\x9b\x0c\x03\xdc\x0c\xd4\ -\x00\x00\x72\xfe\x03\xf2\x70\x35\x00\x00\x2b\xf5\x03\xf2\xbd\x60\ -\x00\x00\x15\x8b\x03\xfb\x0f\x04\x00\x00\x2f\x02\x04\x21\x23\x23\ -\x00\x00\x20\x9f\x04\x56\x06\x93\x00\x00\x2c\xff\x04\x60\x7c\x15\ -\x00\x00\x99\xe2\x04\x79\xef\x9a\x00\x00\x87\xe9\x04\x82\x77\xf4\ -\x00\x00\x4d\xf9\x04\x87\xf9\x9e\x00\x00\x8d\x74\x04\x8c\xd6\xae\ -\x00\x00\x63\x0a\x04\xa0\x8a\x25\x00\x00\x05\x47\x04\xa0\x8a\x25\ -\x00\x00\x78\xdb\x04\xa4\x31\x5a\x00\x00\x8f\xa1\x04\xa8\xeb\x85\ -\x00\x00\x32\xb9\x04\xe1\x6e\xe3\x00\x00\x09\xa5\x04\xe4\x0f\x75\ -\x00\x00\x02\xf7\x04\xeb\x41\xc3\x00\x00\x2c\x6e\x04\xef\xd9\xa8\ -\x00\x00\x49\xfa\x05\x03\x83\x95\x00\x00\x6c\x17\x05\x05\xcb\x13\ -\x00\x00\x41\x2c\x05\x0f\xf2\x74\x00\x00\x92\x18\x05\x1b\x10\x59\ -\x00\x00\x45\x20\x05\x2a\xe5\x97\x00\x00\x4c\x1f\x05\x44\x3b\x5f\ -\x00\x00\x6d\xf0\x05\x5c\xd9\xc4\x00\x00\x0f\x7c\x05\x5c\xd9\xc4\ -\x00\x00\x91\x44\x05\x63\xf6\x93\x00\x00\x4a\xc3\x05\x65\xee\x65\ -\x00\x00\x80\x30\x05\x87\xb0\xc3\x00\x00\x99\xb8\x05\x96\xa8\xa5\ -\x00\x00\x12\xa8\x05\x96\xa8\xa5\x00\x00\x9a\xb3\x05\xad\x4b\xc3\ -\x00\x00\x42\xdc\x05\xb9\x03\xc8\x00\x00\x1d\x4e\x05\xbd\x0c\xba\ -\x00\x00\x82\x5b\x05\xbd\x8e\xde\x00\x00\x61\x7e\x05\xbe\x56\x93\ -\x00\x00\x49\x86\x05\xc5\x50\x04\x00\x00\x0b\xdd\x05\xe5\x8e\x2e\ -\x00\x00\x10\xa4\x05\xfb\xdc\x83\x00\x00\x41\x96\x06\x1e\xe6\xb5\ -\x00\x00\xa0\x47\x06\x29\xee\xa9\x00\x00\x79\x01\x06\x32\xe3\xe3\ -\x00\x00\x7d\xb2\x06\x57\x19\xf4\x00\x00\x00\x00\x06\x5a\xef\x15\ -\x00\x00\x72\x69\x06\x5b\xd2\xb5\x00\x00\x3d\xe3\x06\x6c\x88\x8e\ -\x00\x00\x3f\x5f\x06\x74\x1d\x55\x00\x00\x54\xac\x06\x8b\x96\x44\ -\x00\x00\x0c\x9f\x06\x97\x58\xc9\x00\x00\x4f\x88\x06\xbc\x80\xa5\ -\x00\x00\x1c\xdd\x06\xc9\xb8\x05\x00\x00\x75\xa3\x06\xe8\x05\x4e\ -\x00\x00\x06\x86\x06\xee\xaa\x57\x00\x00\x9f\x5c\x06\xf0\xcb\x25\ -\x00\x00\x1a\xd5\x06\xfa\xff\xc3\x00\x00\x42\x0a\x06\xfc\x1a\x14\ -\x00\x00\x33\xd9\x06\xfc\xa0\x8a\x00\x00\x92\x65\x07\x08\x90\xe5\ -\x00\x00\x2a\x8e\x07\x0d\xb7\xf7\x00\x00\x38\x89\x07\x0e\x86\x3e\ -\x00\x00\x1b\x3c\x07\x35\x68\x6e\x00\x00\x16\xe6\x07\x35\xe8\x9a\ -\x00\x00\x97\x89\x07\x44\x41\x2a\x00\x00\x81\x13\x07\x4a\x1f\x63\ -\x00\x00\x02\x0a\x07\x4d\x73\x22\x00\x00\x90\x2d\x07\x4e\xa6\xf2\ -\x00\x00\x7e\xb5\x07\x58\xcb\xe8\x00\x00\x90\x67\x07\x63\xfe\x0e\ -\x00\x00\x11\x91\x07\x80\xc6\xb3\x00\x00\xa3\xa2\x07\x88\x72\x5a\ -\x00\x00\x76\xb1\x07\xa3\xe4\x0e\x00\x00\x22\x1f\x07\xc1\xfc\x13\ -\x00\x00\x2d\xda\x08\x27\xb4\xba\x00\x00\x95\x5c\x08\x32\xc4\xaa\ -\x00\x00\x98\x8e\x08\x36\x74\x14\x00\x00\x24\x0a\x08\x44\xb9\x83\ -\x00\x00\x34\x74\x08\x49\xc9\x30\x00\x00\x15\xeb\x08\x61\x7c\xb3\ -\x00\x00\x1d\x9d\x08\xa2\xca\x67\x00\x00\x4e\xab\x08\xa3\xe0\x33\ -\x00\x00\x79\xf7\x08\xb1\x15\x28\x00\x00\x2e\x83\x08\xb4\x04\x04\ -\x00\x00\x9a\x24\x08\xd0\x32\xf4\x00\x00\x7e\x84\x08\xd4\xcd\x69\ -\x00\x00\x7e\xf1\x08\xe1\x9b\xbe\x00\x00\x1a\x11\x08\xe1\xc1\xfa\ -\x00\x00\x80\x65\x08\xeb\x8d\x7a\x00\x00\xa3\x45\x09\x20\xda\x24\ -\x00\x00\xa4\xc2\x09\x20\xda\xb4\x00\x00\xa5\x6d\x09\x20\xda\xd4\ -\x00\x00\xa3\xf7\x09\x4d\x96\xd9\x00\x00\x24\xd8\x09\x65\xda\x8a\ -\x00\x00\x84\x73\x09\x68\x0d\x29\x00\x00\x8e\x8a\x09\x71\x8d\x25\ -\x00\x00\x06\x3c\x09\x75\x23\x14\x00\x00\x73\xf0\x09\x76\xed\x34\ -\x00\x00\x65\xc8\x09\x86\xa6\x05\x00\x00\x23\x22\x09\x8b\x23\xba\ -\x00\x00\x98\xe5\x09\x9e\xfd\x7e\x00\x00\x66\x20\x09\xb6\x2a\x63\ -\x00\x00\x33\x25\x09\xcd\x1c\x55\x00\x00\x9b\x56\x09\xd2\x21\xea\ -\x00\x00\x5e\x71\x09\xe5\x23\x0e\x00\x00\x58\x2d\x09\xec\x2b\x45\ -\x00\x00\x0c\x4f\x09\xef\x33\xa3\x00\x00\x17\xeb\x09\xf0\x1f\x6e\ -\x00\x00\x03\x8a\x09\xfd\x45\x1a\x00\x00\x94\x02\x0a\x09\xc1\x7a\ -\x00\x00\x96\xd9\x0a\x28\x9a\x65\x00\x00\x4c\xcc\x0a\x28\x9a\x67\ -\x00\x00\x4d\x13\x0a\x28\x9a\x69\x00\x00\x4d\x5a\x0a\x2d\xbe\xe4\ -\x00\x00\x2f\xfb\x0a\x35\xa9\xfa\x00\x00\x88\xde\x0a\x3f\x27\x74\ -\x00\x00\x7b\xb2\x0a\x3f\x6b\x05\x00\x00\x7b\xfb\x0a\x49\xa5\x4a\ -\x00\x00\xa0\x82\x0a\x60\xe0\x15\x00\x00\x26\x10\x0a\x60\xe0\x17\ -\x00\x00\x26\x63\x0a\x60\xe0\x19\x00\x00\x26\xb6\x0a\x65\x9b\xea\ -\x00\x00\x91\x72\x0a\x78\x05\x80\x00\x00\x01\x4f\x0a\x7f\x8f\x65\ -\x00\x00\x3c\x3c\x0a\x98\x86\x18\x00\x00\x2a\x07\x0a\x99\x5c\xaa\ -\x00\x00\x99\x37\x0a\xa8\x16\x95\x00\x00\x12\x6b\x0a\xa9\x89\xec\ -\x00\x00\x43\xd0\x0a\xc8\x5c\x59\x00\x00\x0f\xb1\x0a\xd0\x50\xb8\ -\x00\x00\x72\xcb\x0a\xd0\xe6\xf5\x00\x00\x17\xa0\x0a\xd6\xf1\xfa\ -\x00\x00\x7d\xed\x0a\xeb\x91\x88\x00\x00\x65\x29\x0b\x07\x78\x8a\ -\x00\x00\x83\x9c\x0b\x1b\xe0\x73\x00\x00\x50\x00\x0b\x24\x9d\xb4\ -\x00\x00\x51\x05\x0b\x24\xc5\xc9\x00\x00\x12\xdf\x0b\x26\x7e\x0e\ -\x00\x00\x7a\xc6\x0b\x2b\x50\xfa\x00\x00\x87\x54\x0b\x2d\xb3\xf9\ -\x00\x00\x69\x5a\x0b\x37\x73\x69\x00\x00\xa2\x32\x0b\x40\x40\x3e\ -\x00\x00\x45\x8a\x0b\x43\xcd\x19\x00\x00\x44\x46\x0b\x66\x28\xd2\ -\x00\x00\x64\xde\x0b\x88\xe0\x07\x00\x00\x0a\xcc\x0b\x94\x44\xc5\ -\x00\x00\x30\x7e\x0b\xc2\x99\x6a\x00\x00\x82\xd5\x0b\xd3\x27\xae\ -\x00\x00\x04\x68\x0b\xd4\x7e\x9e\x00\x00\x0b\x05\x0b\xf5\xee\x53\ -\x00\x00\x91\x01\x0c\x06\x50\x2e\x00\x00\x0d\x34\x0c\x08\x46\x23\ -\x00\x00\x7c\x94\x0c\x19\xfa\x99\x00\x00\x7f\x73\x0c\x28\x9b\x45\ -\x00\x00\x73\x5b\x0c\x31\x7e\x4a\x00\x00\x94\xac\x0c\x38\x4d\xe5\ -\x00\x00\x07\x50\x0c\x3a\x16\xd0\x00\x00\x18\xe6\x0c\x5a\xc0\xc8\ -\x00\x00\x77\x3a\x0c\x6e\x87\xf5\x00\x00\x21\xe4\x0c\x91\xa0\x7a\ -\x00\x00\x9f\xfa\x0c\x96\x90\x59\x00\x00\x44\xb7\x0c\xca\xdd\xfa\ -\x00\x00\x9e\x34\x0c\xd6\xef\x12\x00\x00\x2d\x73\x0c\xde\x99\x49\ -\x00\x00\x69\xb4\x0c\xf0\xde\xaa\x00\x00\x85\xe7\x0d\x1c\xf6\xee\ -\x00\x00\x2b\x4d\x0d\x3a\x6c\xba\x00\x00\x94\xf8\x0d\x45\xe2\x6a\ -\x00\x00\x9c\xb4\x0d\x59\xa1\x45\x00\x00\x7d\x0d\x0d\x5a\xad\x33\ -\x00\x00\x76\x19\x0d\x5e\xe7\x6e\x00\x00\x27\x09\x0d\x64\xa5\xd9\ -\x00\x00\x5c\x74\x0d\x6d\xf8\xf4\x00\x00\x08\x05\x0d\x76\xb5\x92\ -\x00\x00\x2b\x99\x0d\x9b\xec\xc9\x00\x00\x54\x2d\x0d\xa5\xd9\x94\ -\x00\x00\x2a\xf0\x0d\xa6\xda\xa4\x00\x00\x46\xb5\x0d\xc6\xc6\x2a\ -\x00\x00\x97\xf6\x0d\xf2\x39\xba\x00\x00\x89\x99\x0e\x2b\x04\x15\ -\x00\x00\x7a\x85\x0e\x2c\xe4\x2a\x00\x00\x9c\x43\x0e\x4e\xcc\xc5\ -\x00\x00\x09\x5a\x0e\x6f\x9a\x1a\x00\x00\x9e\xd4\x0e\x7b\x7a\x2c\ -\x00\x00\x31\x74\x0e\x8f\x6a\x37\x00\x00\x35\xce\x0e\x91\x65\xf5\ -\x00\x00\x19\x9b\x0e\xca\xd7\x34\x00\x00\x1f\x7f\x0e\xcd\x1c\x55\ -\x00\x00\x9b\xa5\x0e\xcd\x1c\x65\x00\x00\x9b\xf4\x0e\xea\xe5\x03\ -\x00\x00\x70\xf0\x0e\xed\xe1\xf9\x00\x00\x47\x69\x0f\x07\x8d\xe3\ -\x00\x00\x71\x82\x0f\x17\x82\x4e\x00\x00\x00\xf7\x0f\x1f\x8d\xa5\ -\x00\x00\x7a\x37\x0f\x4f\x75\x3a\x00\x00\xa5\xdb\x0f\x5f\xca\xd5\ -\x00\x00\x30\xf5\x0f\x75\xb0\x54\x00\x00\x7c\x4a\x0f\x77\xc3\xb4\ -\x00\x00\x6a\xa4\x0f\x89\x0b\xbe\x00\x00\x47\xcf\x0f\x8f\xa8\xa7\ -\x00\x00\x18\x99\x0f\x98\x0a\x39\x00\x00\xa1\x8a\x0f\x9e\xec\xa0\ -\x00\x00\x11\xc8\x0f\xbf\x87\xa3\x00\x00\x8f\x57\x0f\xcd\xce\x95\ -\x00\x00\x35\x5a\x0f\xdf\x21\x05\x00\x00\x23\xb3\x0f\xf6\x06\x1e\ -\x00\x00\x1f\xe9\x0f\xf6\x29\x0a\x00\x00\x75\xd5\x0f\xf7\x77\xaa\ -\x00\x00\x85\x60\x0f\xfb\x5f\xae\x00\x00\x7b\x16\x69\x00\x00\xa6\ -\x71\x03\x00\x00\x00\x1e\x00\x50\x00\x6f\x00\x6e\x00\x74\x00\x20\ -\x00\x68\x00\x6f\x00\x7a\x00\x7a\x00\xe1\x00\x61\x00\x64\x00\xe1\ -\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x41\x64\ -\x64\x20\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\ -\x74\x5f\x41\x64\x64\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x62\ -\x00\x50\x00\x6f\x00\x6e\x00\x74\x00\x74\x00\x61\x00\x6c\x00\x20\ -\x00\x65\x00\x67\x00\xe9\x00\x73\x00\x7a\x00\xed\x00\x74\x00\x69\ -\x00\x20\x00\x6b\x00\x69\x00\x20\x00\x61\x00\x20\x00\x6d\x00\x65\ -\x00\x67\x00\x6c\x00\xe9\x00\x76\x01\x51\x00\x20\x00\x76\x00\x6f\ -\x00\x6e\x00\x61\x00\x6c\x00\x61\x00\x74\x00\x20\x00\x2f\x00\x20\ -\x00\x76\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x61\x00\x6b\x00\x61\ -\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x41\x64\x64\x73\ -\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x74\x6f\x20\x61\x6e\x20\x65\ -\x78\x69\x73\x74\x69\x6e\x67\x20\x77\x69\x72\x65\x2f\x62\x73\x70\ -\x6c\x69\x6e\x65\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x41\ -\x64\x64\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x24\x00\x43\x00\ -\x73\x00\x6f\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x68\x00\x6f\x00\ -\x7a\x00\x20\x00\x61\x00\x64\x00\xe1\x00\x73\x00\x2e\x00\x2e\x00\ -\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x41\x64\x64\x20\x74\ -\x6f\x20\x67\x72\x6f\x75\x70\x2e\x2e\x2e\x07\x00\x00\x00\x10\x44\ -\x72\x61\x66\x74\x5f\x41\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\x01\ -\x03\x00\x00\x00\x66\x00\x4b\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\ -\xf6\x00\x6c\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x6b\x00\x74\x00\x75\x00\x6d\x00\x28\x00\x6f\x00\x6b\x00\x29\x00\ -\x20\x00\x68\x00\x6f\x00\x7a\x00\x7a\x00\xe1\x00\x61\x00\x64\x00\ -\x6a\x00\x61\x00\x20\x00\x61\x00\x20\x00\x6c\x00\xe9\x00\x74\x00\ -\x65\x00\x7a\x01\x51\x00\x20\x00\x63\x00\x73\x00\x6f\x00\x70\x00\ -\x6f\x00\x72\x00\x74\x00\x68\x00\x6f\x00\x7a\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x30\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\x65\ -\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x28\x73\x29\ -\x20\x74\x6f\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\ -\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\ -\x41\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x90\ -\x00\x41\x00\x20\x00\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\xf6\ -\x00\x6c\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ -\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x6b\x00\x20\x00\x61\x00\x6b\ -\x00\x74\x00\x75\x00\xe1\x00\x6c\x00\x69\x00\x73\x00\x20\x00\x76\ -\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x76\x00\x61\x00\x73\ -\x00\x74\x00\x61\x00\x67\x00\x73\x00\xe1\x00\x67\x00\xe1\x00\x74\ -\x00\x20\x00\xe9\x00\x73\x00\x20\x00\x73\x00\x7a\x00\xed\x00\x6e\ -\x00\xe9\x00\x74\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x61\x00\x74\ -\x00\x6b\x00\x6f\x00\x7a\x00\x74\x00\x61\x00\x74\x00\x6a\x00\x61\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x41\x70\x70\x6c\x69\x65\ -\x73\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\x6e\x65\x20\x77\ -\x69\x64\x74\x68\x20\x61\x6e\x64\x20\x63\x6f\x6c\x6f\x72\x20\x74\ -\x6f\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ -\x74\x73\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x70\x70\ -\x6c\x79\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\x36\x00\x41\x00\ -\x6b\x00\x74\x00\x75\x00\xe1\x00\x6c\x00\x69\x00\x73\x00\x20\x00\ -\x73\x00\x74\x00\xed\x00\x6c\x00\x75\x00\x73\x00\x20\x00\x61\x00\ -\x6c\x00\x6b\x00\x61\x00\x6c\x00\x6d\x00\x61\x00\x7a\x00\xe1\x00\ -\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x41\x70\x70\ -\x6c\x79\x20\x43\x75\x72\x72\x65\x6e\x74\x20\x53\x74\x79\x6c\x65\ -\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x70\x70\x6c\x79\ -\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\x04\x00\xcd\x00\x76\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\x72\x63\x07\x00\x00\x00\ -\x09\x44\x72\x61\x66\x74\x5f\x41\x72\x63\x01\x03\x00\x00\x00\x56\ -\x00\xcd\x00\x76\x00\x20\x00\x6c\x00\xe9\x00\x74\x00\x72\x00\x65\ -\x00\x68\x00\x6f\x00\x7a\x00\xe1\x00\x73\x00\x61\x00\x2e\x00\x20\ -\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x69\x00\x67\x00\x61\ -\x00\x7a\x00\xed\x00\x74\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\ -\x00\x46\x00\x54\x00\x20\x00\x6b\x00\x6f\x00\x72\x00\x6c\x00\xe1\ -\x00\x74\x00\x6f\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\ -\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x72\x63\x2e\x20\ -\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\ -\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\ -\x07\x00\x00\x00\x09\x44\x72\x61\x66\x74\x5f\x41\x72\x63\x01\x03\ -\x00\x00\x00\x10\x00\x42\x00\x2d\x00\x53\x00\x70\x00\x6c\x00\x69\ -\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x2d\ -\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\ -\x5f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x7a\x00\x54\ -\x00\xf6\x00\x62\x00\x62\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\ -\x00\x6f\x00\x73\x00\x20\x00\x42\x00\x2d\x00\x53\x00\x70\x00\x6c\ -\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x6c\x00\xe9\x00\x74\x00\x72\ -\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\xe1\x00\x73\x00\x61\x00\x2e\ -\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x69\x00\x67\ -\x00\x61\x00\x7a\x00\xed\x00\x74\x00\x2c\x00\x20\x00\x53\x00\x48\ -\x00\x49\x00\x46\x00\x54\x00\x20\x00\x6b\x00\x6f\x00\x72\x00\x6c\ -\x00\xe1\x00\x74\x00\x6f\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x43\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x6d\x75\x6c\x74\ -\x69\x70\x6c\x65\x2d\x70\x6f\x69\x6e\x74\x20\x62\x2d\x73\x70\x6c\ -\x69\x6e\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\ -\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\ -\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\ -\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x06\x00\x4b\x00\ -\xf6\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\x69\x72\ -\x63\x6c\x65\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x43\x69\ -\x72\x63\x6c\x65\x01\x03\x00\x00\x00\x6a\x00\x4b\x00\xf6\x00\x72\ -\x00\x20\x00\x6c\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\ -\x00\x7a\x00\xe1\x00\x73\x00\x61\x00\x2e\x00\x20\x00\x43\x00\x54\ -\x00\x52\x00\x4c\x00\x20\x00\x69\x00\x67\x00\x61\x00\x7a\x00\xed\ -\x00\x74\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\xe9\ -\x00\x72\x00\x69\x00\x6e\x00\x74\x01\x51\x00\x20\x00\x6b\x00\x69\ -\x00\x76\x00\xe1\x00\x6c\x00\x61\x00\x73\x00\x7a\x00\x74\x00\xe1\ -\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3d\x43\x72\ -\x65\x61\x74\x65\x73\x20\x61\x20\x63\x69\x72\x63\x6c\x65\x2e\x20\ -\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x41\x4c\ -\x54\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x20\x74\x61\x6e\x67\ -\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0c\ -\x44\x72\x61\x66\x74\x5f\x43\x69\x72\x63\x6c\x65\x01\x03\x00\x00\ -\x00\x1c\x00\x56\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x6c\ -\x00\x65\x00\x7a\x00\xe1\x00\x72\x00\xe1\x00\x73\x00\x61\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6c\x6f\x73\x65\x20\x4c\x69\ -\x6e\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\ -\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x3a\x00\x52\x00\x61\ -\x00\x6a\x00\x7a\x00\x6f\x00\x6c\x00\x74\x00\x20\x00\x76\x00\x6f\ -\x00\x6e\x00\x61\x00\x6c\x00\x73\x00\x6f\x00\x72\x00\x6f\x00\x7a\ -\x00\x61\x00\x74\x00\x20\x00\x6c\x00\x65\x00\x7a\x00\xe1\x00\x72\ -\x00\xe1\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\ -\x43\x6c\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x6c\x69\x6e\x65\x20\ -\x62\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x07\x00\x00\x00\x0f\ -\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\x73\x65\x4c\x69\x6e\x65\x01\ -\x03\x00\x00\x00\x22\x00\x50\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\ -\x65\x00\x6c\x00\x74\x00\xe1\x00\x76\x00\x6f\x00\x6c\x00\xed\x00\ -\x74\x00\xe1\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0c\x52\x65\x6d\x6f\x76\x65\x20\x50\x6f\x69\x6e\x74\x07\x00\x00\ -\x00\x0e\x44\x72\x61\x66\x74\x5f\x44\x65\x6c\x50\x6f\x69\x6e\x74\ -\x01\x03\x00\x00\x00\x62\x00\x54\x00\xf6\x00\x72\x00\x6c\x00\x69\ -\x00\x20\x00\x61\x00\x20\x00\x6d\x00\x65\x00\x67\x00\x6c\x00\xe9\ -\x00\x76\x01\x51\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x6f\ -\x00\x74\x00\x20\x00\x61\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x61\ -\x00\x6c\x00\x72\x00\xf3\x00\x6c\x00\x20\x00\x76\x00\x61\x00\x67\ -\x00\x79\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x61\ -\x00\x6b\x00\x72\x00\xf3\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x30\x52\x65\x6d\x6f\x76\x65\x73\x20\x61\x20\x70\x6f\x69\x6e\ -\x74\x20\x66\x72\x6f\x6d\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\ -\x6e\x67\x20\x77\x69\x72\x65\x20\x6f\x72\x20\x62\x73\x70\x6c\x69\ -\x6e\x65\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x44\x65\x6c\ -\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\xa6\x00\x4c\x00\xe9\x00\ -\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\x20\x00\x65\x00\ -\x67\x00\x79\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\ -\x7a\x00\x69\x00\xf3\x00\x74\x00\x2e\x00\x20\x00\x43\x00\x54\x00\ -\x52\x00\x4c\x00\x20\x00\x28\x00\x69\x00\x67\x00\x61\x00\x7a\x00\ -\xed\x00\x74\x00\xe1\x00\x73\x00\x29\x00\x2c\x00\x20\x00\x53\x00\ -\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x28\x00\x6b\x00\x6f\x00\ -\x72\x00\x6c\x00\xe1\x00\x7a\x00\x6f\x00\x7a\x00\x29\x00\x2c\x00\ -\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x73\x00\x7a\x00\x65\x00\ -\x67\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x20\x00\x6b\x00\x69\x00\ -\x76\x00\xe1\x00\x6c\x00\x61\x00\x73\x00\x7a\x00\x74\x00\xe1\x00\ -\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4e\x43\x72\x65\x61\x74\ -\x65\x73\x20\x61\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x2e\x20\ -\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\ -\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\ -\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x20\ -\x61\x20\x73\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x0f\x44\x72\ -\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x01\x03\x00\ -\x00\x00\x10\x00\x44\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x7a\x00\ -\x69\x00\xf3\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x44\x69\x6d\ -\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\ -\x5f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x01\x03\x00\x00\x00\x1e\ -\x00\x56\x00\x69\x00\x73\x00\x73\x00\x7a\x00\x61\x00\x6d\x00\x69\ -\x00\x6e\x01\x51\x00\x73\x00\xed\x00\x74\x00\xe9\x00\x73\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x09\x44\x6f\x77\x6e\x67\x72\x61\x64\ -\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x6f\x77\x6e\ -\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\xbe\x00\x41\x00\x20\x00\ -\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x74\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\ -\x6d\x00\x6f\x00\x6b\x00\x61\x00\x74\x00\x20\x00\x73\x00\x7a\x00\ -\xe9\x00\x74\x00\x62\x00\x6f\x00\x6e\x00\x74\x00\x6a\x00\x61\x00\ -\x20\x00\x65\x00\x67\x00\x79\x00\x73\x00\x7a\x00\x65\x00\x72\x01\ -\x71\x00\x62\x00\x62\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x6b\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x6b\x00\x6b\x00\xe1\x00\ -\x20\x00\x76\x00\x61\x00\x67\x00\x79\x00\x20\x00\x6b\x00\x69\x00\ -\x76\x00\x6f\x00\x6e\x00\x6a\x00\x61\x00\x20\x00\x61\x00\x20\x00\ -\x66\x00\x65\x00\x6c\x00\xfc\x00\x6c\x00\x65\x00\x74\x00\x65\x00\ -\x6b\x00\x65\x00\x74\x00\x20\x00\x65\x00\x67\x00\x79\x00\x6d\x00\ -\xe1\x00\x73\x00\x62\x00\xf3\x00\x6c\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x45\x45\x78\x70\x6c\x6f\x64\x65\x73\x20\x74\x68\x65\x20\ -\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x20\x69\x6e\x74\x6f\x20\x73\x69\x6d\x70\x6c\x65\x72\x20\x6f\x62\ -\x6a\x65\x63\x74\x73\x2c\x20\x6f\x72\x20\x73\x75\x62\x74\x72\x61\ -\x63\x74\x20\x66\x61\x63\x65\x73\x07\x00\x00\x00\x0f\x44\x72\x61\ -\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\x03\x00\x00\ -\x00\x10\x00\x52\x00\x61\x00\x6a\x00\x7a\x00\x6f\x00\x6c\x00\xe1\ -\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x44\x72\x61\x77\ -\x69\x6e\x67\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x44\x72\ -\x61\x77\x69\x6e\x67\x01\x03\x00\x00\x00\x50\x00\x41\x00\x20\x00\ -\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x74\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\ -\x6d\x00\x6f\x00\x6b\x00\x20\x00\x72\x00\x61\x00\x6a\x00\x7a\x00\ -\x6c\x00\x61\x00\x70\x00\x72\x00\x61\x00\x20\x00\x68\x00\x65\x00\ -\x6c\x00\x79\x00\x65\x00\x7a\x00\x69\x00\x2e\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x2d\x50\x75\x74\x73\x20\x74\x68\x65\x20\x73\x65\ -\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x6f\ -\x6e\x20\x61\x20\x44\x72\x61\x77\x69\x6e\x67\x20\x73\x68\x65\x65\ -\x74\x2e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x44\x72\x61\ -\x77\x69\x6e\x67\x01\x03\x00\x00\x00\x16\x00\x53\x00\x7a\x00\x65\ -\x00\x72\x00\x6b\x00\x65\x00\x73\x00\x7a\x00\x74\x00\xe9\x00\x73\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\ -\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\ -\x00\x00\x3c\x00\x41\x00\x7a\x00\x20\x00\x61\x00\x6b\x00\x74\x00\ -\xed\x00\x76\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ -\x74\x00\x75\x00\x6d\x00\x20\x00\x73\x00\x7a\x00\x65\x00\x72\x00\ -\x6b\x00\x65\x00\x73\x00\x7a\x00\x74\x00\xe9\x00\x73\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x17\x45\x64\x69\x74\x73\x20\x74\ -\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\ -\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\ -\x03\x00\x00\x00\x20\x00\x56\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\ -\x20\x00\x62\x00\x65\x00\x66\x00\x65\x00\x6a\x00\x65\x00\x7a\x00\ -\xe9\x00\x73\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x46\ -\x69\x6e\x69\x73\x68\x20\x6c\x69\x6e\x65\x07\x00\x00\x00\x10\x44\ -\x72\x61\x66\x74\x5f\x46\x69\x6e\x69\x73\x68\x4c\x69\x6e\x65\x01\ -\x03\x00\x00\x00\x4e\x00\x42\x00\x65\x00\x66\x00\x65\x00\x6a\x00\ -\x65\x00\x7a\x00\x20\x00\x61\x00\x6e\x00\xe9\x00\x6c\x00\x6b\x00\ -\xfc\x00\x6c\x00\x2c\x00\x20\x00\x68\x00\x6f\x00\x67\x00\x79\x00\ -\x20\x00\x62\x00\x65\x00\x7a\x00\xe1\x00\x72\x00\x6e\x00\xe1\x00\ -\x20\x00\x61\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\ -\x61\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x46\x69\x6e\ -\x69\x73\x68\x65\x73\x20\x61\x20\x6c\x69\x6e\x65\x20\x77\x69\x74\ -\x68\x6f\x75\x74\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\x07\ -\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\x69\x73\x68\ -\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x6e\x00\x32\x00\x20\x00\x70\ -\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x76\x00\x6f\ -\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x6b\x00\xe9\x00\x73\x00\x7a\ -\x00\xed\x00\x74\x00\xe9\x00\x73\x00\x65\x00\x2e\x00\x20\x00\x43\ -\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x69\x00\x67\x00\x61\x00\x7a\ -\x00\xed\x00\x74\x00\xe1\x00\x73\x00\x2c\x00\x20\x00\x53\x00\x48\ -\x00\x49\x00\x46\x00\x54\x00\x20\x00\x6b\x00\x6f\x00\x72\x00\x6c\ -\x00\xe1\x00\x74\x00\x6f\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x38\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x32\x2d\x70\x6f\ -\x69\x6e\x74\x20\x6c\x69\x6e\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\ -\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\ -\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\ -\x72\x61\x66\x74\x5f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x0a\x00\ -\x56\x00\x6f\x00\x6e\x00\x61\x00\x6c\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\ -\x74\x5f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x0c\x00\x4d\x00\x6f\ -\x00\x7a\x00\x67\x00\x61\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x04\x4d\x6f\x76\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\ -\x5f\x4d\x6f\x76\x65\x01\x03\x00\x00\x00\xae\x00\x41\x00\x20\x00\ -\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x74\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\ -\x6d\x00\x20\x00\x6d\x00\x6f\x00\x7a\x00\x67\x00\x61\x00\x74\x00\ -\xe1\x00\x73\x00\x61\x00\x20\x00\x6b\x00\xe9\x00\x74\x00\x20\x00\ -\x70\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x6b\x00\xf6\x00\x7a\x00\ -\xf6\x00\x74\x00\x74\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\ -\x4c\x00\x20\x00\x69\x00\x67\x00\x61\x00\x7a\x00\xed\x00\x74\x00\ -\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\ -\x6b\x00\xe9\x00\x6e\x00\x79\x00\x73\x00\x7a\x00\x65\x00\x72\x00\ -\xed\x00\x74\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\ -\x6d\x00\xe1\x00\x73\x00\x6f\x00\x6c\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x5a\x4d\x6f\x76\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\ -\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\ -\x74\x77\x65\x65\x6e\x20\x32\x20\x70\x6f\x69\x6e\x74\x73\x2e\x20\ -\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\ -\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\ -\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\ -\x00\x0a\x44\x72\x61\x66\x74\x5f\x4d\x6f\x76\x65\x01\x03\x00\x00\ -\x00\x0e\x00\x45\x00\x6c\x00\x74\x00\x6f\x00\x6c\x00\xe1\x00\x73\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x4f\x66\x66\x73\x65\x74\ -\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x4f\x66\x66\x73\x65\ -\x74\x01\x03\x00\x00\x00\x8a\x00\x41\x00\x7a\x00\x20\x00\x61\x00\ -\x6b\x00\x74\x00\xed\x00\x76\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x20\x00\x6d\x00\x6f\x00\ -\x7a\x00\x67\x00\x61\x00\x74\x00\xe1\x00\x73\x00\x61\x00\x2e\x00\ -\x20\x00\x43\x00\x54\x00\x4c\x00\x52\x00\x20\x00\x69\x00\x67\x00\ -\x61\x00\x7a\x00\xed\x00\x74\x00\x2c\x00\x20\x00\x53\x00\x48\x00\ -\x49\x00\x46\x00\x54\x00\x20\x00\x6b\x00\xe9\x00\x6e\x00\x79\x00\ -\x73\x00\x7a\x00\x65\x00\x72\x00\xed\x00\x74\x00\x2c\x00\x20\x00\ -\x41\x00\x4c\x00\x54\x00\x20\x00\x6d\x00\xe1\x00\x73\x00\x6f\x00\ -\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x48\x4f\x66\x66\x73\x65\ -\x74\x73\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\ -\x6a\x65\x63\x74\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ -\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\ -\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\ -\x6f\x70\x79\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x4f\x66\ -\x66\x73\x65\x74\x01\x03\x00\x00\x00\x90\x00\x53\x00\x7a\x00\x61\ -\x00\x62\x00\xe1\x00\x6c\x00\x79\x00\x6f\x00\x73\x00\x20\x00\x73\ -\x00\x6f\x00\x6b\x00\x73\x00\x7a\x00\xf6\x00\x67\x00\x20\x00\x6c\ -\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\xe1\ -\x00\x73\x00\x61\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\ -\x00\x20\x00\x43\x00\x73\x00\x61\x00\x74\x00\x6c\x00\x61\x00\x6b\ -\x00\x6f\x00\x7a\x00\xe1\x00\x73\x00\x68\x00\x6f\x00\x7a\x00\x2c\ -\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x6b\ -\x00\x69\x00\x76\x00\xe1\x00\x6c\x00\x61\x00\x73\x00\x7a\x00\x74\ -\x00\xe1\x00\x73\x00\x68\x00\x6f\x00\x7a\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x3b\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x72\x65\ -\x67\x75\x6c\x61\x72\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x2e\x20\x43\ -\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\ -\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\ -\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x50\x6f\x6c\x79\x67\x6f\ -\x6e\x01\x03\x00\x00\x00\x0e\x00\x53\x00\x6f\x00\x6b\x00\x73\x00\ -\x7a\x00\xf6\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x50\ -\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\ -\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\x03\x00\x00\x00\x56\x00\x54\ -\x00\xe9\x00\x67\x00\x6c\x00\x61\x00\x6c\x00\x61\x00\x70\x00\x20\ -\x00\x6c\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\ -\x00\xe1\x00\x73\x00\x61\x00\x20\x00\x32\x00\x20\x00\x70\x00\x6f\ -\x00\x6e\x00\x74\x00\x74\x00\x61\x00\x6c\x00\x2e\x00\x20\x00\x43\ -\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x69\x00\x67\x00\x61\x00\x7a\ -\x00\xed\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x43\x72\ -\x65\x61\x74\x65\x73\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\x74\x20\ -\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\ -\x74\x6f\x20\x73\x6e\x61\x70\x07\x00\x00\x00\x0f\x44\x72\x61\x66\ -\x74\x5f\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\ -\x10\x00\x54\x00\xe9\x00\x67\x00\x6c\x00\x61\x00\x6c\x00\x61\x00\ -\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x52\x65\x63\x74\x61\ -\x6e\x67\x6c\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x52\ -\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\x10\x00\x46\ -\x00\x6f\x00\x72\x00\x67\x00\x61\x00\x74\x00\xe1\x00\x73\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x06\x52\x6f\x74\x61\x74\x65\x07\x00\ -\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\x01\ -\x03\x00\x00\x00\xa8\x00\x4b\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\ -\xf6\x00\x6c\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x6b\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x6b\x00\x20\x00\x66\x00\ -\x6f\x00\x72\x00\x67\x00\x61\x00\x74\x00\xe1\x00\x73\x00\x61\x00\ -\x2e\x00\x20\x00\x43\x00\x54\x00\x4c\x00\x52\x00\x20\x00\x69\x00\ -\x67\x00\x61\x00\x7a\x00\xed\x00\x74\x00\xe1\x00\x73\x00\x2c\x00\ -\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x6b\x00\ -\xe9\x00\x6e\x00\x79\x00\x73\x00\x7a\x00\x65\x00\x72\x00\xed\x00\ -\x74\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x6d\x00\ -\xe1\x00\x73\x00\x6f\x00\x6c\x00\x61\x00\x74\x00\x6f\x00\x74\x00\ -\x20\x00\x6b\x00\xe9\x00\x73\x00\x7a\x00\xed\x00\x74\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x52\x52\x6f\x74\x61\x74\x65\x73\x20\x74\ -\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ -\x63\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\ -\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\ -\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x63\x72\x65\x61\x74\ -\x65\x73\x20\x61\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0c\x44\x72\ -\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\x01\x03\x00\x00\x00\x0a\ -\x00\x4d\x00\xe9\x00\x72\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x07\x00\x00\x00\x0b\x44\x72\ -\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\xe6\x00\ -\x4d\x00\xe9\x00\x72\x00\x65\x00\x74\x00\x65\x00\x7a\x00\x69\x00\ -\x20\x00\x61\x00\x20\x00\x6b\x00\x69\x00\x76\x00\xe1\x00\x6c\x00\ -\x61\x00\x73\x00\x7a\x00\x74\x00\x6f\x00\x74\x00\x74\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\ -\x6f\x00\x74\x00\x20\x00\x61\x00\x7a\x00\x20\x00\x61\x00\x6c\x00\ -\x61\x00\x70\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x74\x00\ -\xf3\x00\x6c\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ -\x20\x00\x61\x00\x20\x00\x63\x00\x73\x00\x61\x00\x74\x00\x6f\x00\ -\x6c\x00\xe1\x00\x73\x00\x68\x00\x6f\x00\x7a\x00\x2c\x00\x20\x00\ -\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x61\x00\x20\x00\ -\x6d\x00\x65\x00\x67\x00\x74\x00\x61\x00\x72\x00\x74\x00\xe1\x00\ -\x73\x00\x68\x00\x6f\x00\x7a\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\ -\x54\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x61\x00\ -\x20\x00\x6d\x00\xe1\x00\x73\x00\x6f\x00\x6c\x00\xe1\x00\x73\x00\ -\x68\x00\x6f\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5c\x53\ -\x63\x61\x6c\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\ -\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x72\x6f\x6d\x20\ -\x61\x20\x62\x61\x73\x65\x20\x70\x6f\x69\x6e\x74\x2e\x20\x43\x54\ -\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\ -\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\ -\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0b\ -\x44\x72\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\ -\x2e\x00\x56\x00\xe1\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x7a\x00\ -\x61\x00\x20\x00\x6b\x00\x69\x00\x20\x00\x61\x00\x20\x00\x63\x00\ -\x73\x00\x6f\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x6f\x00\x74\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x65\x6c\x65\x63\x74\x20\ -\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\ -\x53\x65\x6c\x65\x63\x74\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\ -\x9e\x00\x4b\x00\x69\x00\x76\x00\xe1\x00\x6c\x00\x61\x00\x73\x00\ -\x7a\x00\x74\x00\x6a\x00\x61\x00\x20\x00\x61\x00\x7a\x00\x20\x00\ -\xf6\x00\x73\x00\x73\x00\x7a\x00\x65\x00\x73\x00\x20\x00\x61\x00\ -\x7a\x00\x6f\x00\x6e\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x7a\x00\ -\xfc\x00\x6c\x01\x51\x00\x6b\x00\x6b\x00\x65\x00\x6c\x00\x20\x00\ -\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6c\x00\x6b\x00\x65\x00\ -\x7a\x01\x51\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ -\x74\x00\x75\x00\x6d\x00\x6f\x00\x74\x00\x20\x00\x65\x00\x62\x00\ -\x62\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x63\x00\x73\x00\ -\x6f\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x62\x00\x61\x00\x6e\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x37\x53\x65\x6c\x65\x63\x74\x73\ -\x20\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x74\ -\x68\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x70\x61\x72\x65\x6e\ -\x74\x73\x20\x61\x73\x20\x74\x68\x69\x73\x20\x67\x72\x6f\x75\x70\ -\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\ -\x74\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x68\x00\x56\x00\xe1\ -\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x7a\x00\x20\x00\x6b\x00\x69\ -\x00\x20\x00\x65\x00\x67\x00\x79\x00\x20\x00\x6d\x00\x75\x00\x6e\ -\x00\x6b\x00\x61\x00\x73\x00\xed\x00\x6b\x00\x6f\x00\x74\x00\x20\ -\x00\x61\x00\x20\x00\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\x00\x74\ -\x00\x72\x00\x69\x00\x61\x00\x20\x00\x6c\x00\xe9\x00\x74\x00\x72\ -\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\xe1\x00\x73\x00\xe1\x00\x68\ -\x00\x6f\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x53\x65\ -\x6c\x65\x63\x74\x20\x61\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\ -\x6c\x61\x6e\x65\x20\x66\x6f\x72\x20\x67\x65\x6f\x6d\x65\x74\x72\ -\x79\x20\x63\x72\x65\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x11\x44\ -\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\ -\x01\x03\x00\x00\x00\x1a\x00\x53\x00\xed\x00\x6b\x00\x20\x00\x6b\ -\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\xe9\x00\x73\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x65\x6c\x65\x63\x74\ -\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\ -\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x01\x03\x00\x00\x00\ -\x5e\x00\x41\x00\x20\x00\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\ -\xf6\x00\x6c\x00\x74\x00\x20\x00\x74\x00\xe1\x00\x72\x00\x67\x00\ -\x79\x00\x20\x00\x32\x00\x44\x00\x20\x00\x66\x00\x65\x00\x6c\x00\ -\xfc\x00\x6c\x00\x65\x00\x74\x00\x20\x00\x6e\x00\xe9\x00\x7a\x00\ -\x65\x00\x74\x00\xe9\x00\x74\x00\x20\x00\x68\x00\x6f\x00\x7a\x00\ -\x7a\x00\x61\x00\x20\x00\x6c\x00\xe9\x00\x74\x00\x72\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x43\x72\x65\x61\x74\x65\x73\ -\x20\x53\x68\x61\x70\x65\x20\x32\x44\x20\x76\x69\x65\x77\x73\x20\ -\x6f\x66\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ -\x63\x74\x73\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\ -\x61\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\x1a\x00\ -\x32\x00\x44\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x6b\x00\x20\x00\ -\x6e\x00\xe9\x00\x7a\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0d\x53\x68\x61\x70\x65\x20\x32\x44\x20\x76\x69\x65\x77\ -\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x61\x70\x65\ -\x32\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\x44\x00\x4d\x00\x65\ -\x00\x67\x00\x6a\x00\x65\x00\x67\x00\x79\x00\x7a\x00\xe9\x00\x73\ -\x00\x20\x00\x6c\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\ -\x00\x7a\x00\xe1\x00\x73\x00\x61\x00\x2e\x00\x20\x00\x43\x00\x54\ -\x00\x52\x00\x4c\x00\x20\x00\x69\x00\x67\x00\x61\x00\x7a\x00\x74\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x43\x72\x65\x61\x74\x65\ -\x73\x20\x61\x6e\x20\x61\x6e\x6e\x6f\x74\x61\x74\x69\x6f\x6e\x2e\ -\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x07\x00\x00\ -\x00\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\x78\x74\x01\x03\x00\x00\ -\x00\x0c\x00\x53\x00\x7a\x00\xf6\x00\x76\x00\x65\x00\x67\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x04\x54\x65\x78\x74\x07\x00\x00\x00\ -\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\x78\x74\x01\x03\x00\x00\x00\ -\x2e\x00\x56\x00\xe1\x00\x6c\x00\x74\x00\xe1\x00\x73\x00\x20\x00\ -\x73\x00\x7a\x00\x65\x00\x72\x00\x6b\x00\x65\x00\x7a\x00\x65\x00\ -\x74\x00\x69\x00\x20\x00\x6d\x00\xf3\x00\x64\x00\x72\x00\x61\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x17\x54\x6f\x67\x67\x6c\x65\x20\ -\x63\x6f\x6e\x73\x74\x72\x75\x63\x69\x6f\x6e\x20\x4d\x6f\x64\x65\ -\x07\x00\x00\x00\x1c\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\ -\x65\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x4d\x6f\x64\ -\x65\x01\x03\x00\x00\x00\x64\x00\x56\x00\xe1\x00\x6c\x00\x74\x00\ -\xe1\x00\x73\x00\x20\x00\x73\x00\x7a\x00\x65\x00\x72\x00\x6b\x00\ -\x65\x00\x7a\x00\x65\x00\x74\x00\x69\x00\x20\x00\x6d\x00\xf3\x00\ -\x64\x00\x72\x00\x61\x00\x20\x00\x61\x00\x20\x00\x6b\x00\xf6\x00\ -\x76\x00\x65\x00\x74\x00\x6b\x00\x65\x00\x7a\x01\x51\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\ -\x6f\x00\x6b\x00\x6e\x00\xe1\x00\x6c\x00\x2e\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x2f\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\x65\ -\x20\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x4d\x6f\ -\x64\x65\x20\x66\x6f\x72\x20\x6e\x65\x78\x74\x20\x6f\x62\x6a\x65\ -\x63\x74\x73\x2e\x07\x00\x00\x00\x1c\x44\x72\x61\x66\x74\x5f\x54\ -\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\ -\x6e\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x26\x00\x56\x00\xe1\x00\ -\x6c\x00\x74\x00\xe1\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x76\x00\ -\xe1\x00\x62\x00\x62\x00\x20\x00\x6d\x00\xf3\x00\x64\x00\x72\x00\ -\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x6f\x67\x67\x6c\ -\x65\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x20\x4d\x6f\x64\x65\x07\ -\x00\x00\x00\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\ -\x43\x6f\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\x01\x03\x00\x00\ -\x00\x56\x00\x41\x00\x20\x00\x66\x00\x6f\x00\x6c\x00\x79\x00\x61\ -\x00\x6d\x00\x61\x00\x74\x00\x20\x00\x6d\x00\xf3\x00\x64\x00\x20\ -\x00\x6b\x00\xf6\x00\x76\x00\x65\x00\x74\x00\x6b\x00\x65\x00\x7a\ -\x01\x51\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6e\x00\x63\ -\x00\x73\x00\x72\x00\x61\x00\x20\x00\x76\x00\xe1\x00\x6c\x00\x74\ -\x00\xe1\x00\x73\x00\x61\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x2c\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\x65\x20\x43\x6f\ -\x6e\x74\x69\x6e\x75\x65\x20\x4d\x6f\x64\x65\x20\x66\x6f\x72\x20\ -\x6e\x65\x78\x74\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x2e\x07\x00\ -\x00\x00\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\ -\x6f\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\ -\x80\x00\x56\x00\xe1\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x7a\x00\ -\x20\x00\x6d\x00\x65\x00\x67\x00\x6a\x00\x65\x00\x6c\x00\x65\x00\ -\x6e\x00\xed\x00\x74\x00\xe9\x00\x73\x00\x69\x00\x20\x00\x6d\x00\ -\xf3\x00\x64\x00\x6f\x00\x74\x00\x20\x00\x61\x00\x20\x00\x44\x00\ -\x72\x00\xf3\x00\x74\x00\x76\x00\xe1\x00\x7a\x00\x61\x00\x73\x00\ -\x20\x00\xe9\x00\x73\x00\x20\x00\x61\x00\x20\x00\x53\x00\x69\x00\ -\x6d\x00\x61\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\ -\x61\x00\x6b\x00\x20\x00\x6b\x00\xf6\x00\x7a\x00\xf6\x00\x74\x00\ -\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x46\x53\x77\x61\x70\x73\ -\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x6d\x6f\x64\x65\x20\x6f\x66\ -\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ -\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x77\x69\x72\x65\x66\x72\ -\x61\x6d\x65\x20\x61\x6e\x64\x20\x66\x6c\x61\x74\x6c\x69\x6e\x65\ -\x73\x07\x00\x00\x00\x17\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\ -\x6c\x65\x44\x69\x73\x70\x6c\x61\x79\x4d\x6f\x64\x65\x01\x03\x00\ -\x00\x00\x32\x00\x4d\x00\x65\x00\x67\x00\x6a\x00\x65\x00\x6c\x00\ -\x65\x00\x6e\x00\xed\x00\x74\x00\xe9\x00\x73\x00\x69\x00\x20\x00\ -\x6d\x00\xf3\x00\x64\x00\x20\x00\x76\x00\xe1\x00\x6c\x00\x74\x00\ -\xe1\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x54\ -\x6f\x67\x67\x6c\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x6d\x6f\ -\x64\x65\x07\x00\x00\x00\x17\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\ -\x67\x6c\x65\x44\x69\x73\x70\x6c\x61\x79\x4d\x6f\x64\x65\x01\x03\ -\x00\x00\x00\x28\x00\x4c\x00\x65\x00\x76\x00\xe1\x00\x67\x00\x2d\ -\x00\x42\x01\x51\x00\x76\x00\xed\x00\x74\x00\x20\x00\x28\x00\x74\ -\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x78\x00\x29\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x06\x54\x72\x69\x6d\x65\x78\x07\x00\x00\x00\ -\x0c\x44\x72\x61\x66\x74\x5f\x54\x72\x69\x6d\x65\x78\x01\x03\x00\ -\x00\x01\x38\x00\x41\x00\x20\x00\x6b\x00\x69\x00\x6a\x00\x65\x00\ -\x6c\x00\xf6\x00\x6c\x00\x74\x00\x20\x00\x74\x00\xe1\x00\x72\x00\ -\x67\x00\x79\x00\x61\x00\x74\x00\x20\x00\x6c\x00\x65\x00\x76\x00\ -\xe1\x00\x67\x00\x20\x00\xe9\x00\x73\x00\x20\x00\x6d\x00\x65\x00\ -\x67\x00\x68\x00\x6f\x00\x73\x00\x73\x00\x7a\x00\x61\x00\x62\x00\ -\x62\x00\xed\x00\x74\x00\x20\x00\x76\x00\x61\x00\x67\x00\x79\x00\ -\x20\x00\x6b\x00\x69\x00\x68\x00\xfa\x00\x7a\x00\x20\x00\x65\x00\ -\x67\x00\x79\x00\x20\x00\x65\x00\x67\x00\x79\x00\x6f\x00\x6c\x00\ -\x74\x00\x61\x00\x6c\x00\xfa\x00\x20\x00\x66\x00\x65\x00\x6c\x00\ -\xfc\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x74\x00\x2e\x00\x20\x00\ -\x43\x00\x54\x00\x52\x00\x4c\x00\x2d\x00\x61\x00\x6c\x00\x20\x00\ -\x6b\x00\x61\x00\x70\x00\x63\x00\x73\x00\x6f\x00\x6c\x00\xf3\x00\ -\x64\x00\x69\x00\x6b\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\ -\x46\x00\x54\x00\x2d\x00\x65\x00\x6c\x00\x20\x00\x73\x00\x7a\x00\ -\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x74\x00\x20\x00\ -\x76\x00\xe1\x00\x6c\x00\x61\x00\x73\x00\x7a\x00\x74\x00\x20\x00\ -\x76\x00\x61\x00\x67\x00\x79\x00\x20\x00\x61\x00\x20\x00\x6e\x00\ -\x6f\x00\x72\x00\x6d\x00\xe1\x00\x6c\x00\x69\x00\x73\x00\x2c\x00\ -\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x6d\x00\x65\x00\x67\x00\ -\x66\x00\x6f\x00\x72\x00\x64\x00\xed\x00\x74\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x89\x54\x72\x69\x6d\x73\x20\x6f\x72\x20\x65\x78\ -\x74\x65\x6e\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\ -\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x6f\x72\x20\x65\x78\ -\x74\x72\x75\x64\x65\x73\x20\x73\x69\x6e\x67\x6c\x65\x20\x66\x61\ -\x63\x65\x73\x2e\x20\x43\x54\x52\x4c\x20\x73\x6e\x61\x70\x73\x2c\ -\x20\x53\x48\x49\x46\x54\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\ -\x73\x20\x74\x6f\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x73\x65\x67\ -\x6d\x65\x6e\x74\x20\x6f\x72\x20\x74\x6f\x20\x6e\x6f\x72\x6d\x61\ -\x6c\x2c\x20\x41\x4c\x54\x20\x69\x6e\x76\x65\x72\x74\x73\x07\x00\ -\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x54\x72\x69\x6d\x65\x78\x01\ -\x03\x00\x00\x00\x36\x00\x55\x00\x74\x00\x6f\x00\x6c\x00\x73\x00\ -\xf3\x00\x20\x00\x73\x00\x7a\x00\x61\x00\x6b\x00\x61\x00\x73\x00\ -\x7a\x00\x20\x00\x76\x00\x69\x00\x73\x00\x73\x00\x7a\x00\x61\x00\ -\x76\x00\x6f\x00\x6e\x00\xe1\x00\x73\x00\x61\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x11\x55\x6e\x64\x6f\x20\x6c\x61\x73\x74\x20\x73\ -\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\ -\x5f\x55\x6e\x64\x6f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x5e\x00\ -\x41\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\ -\x75\x00\x74\x00\x6f\x00\x6c\x00\x73\x00\xf3\x00\x20\x00\x72\x00\ -\x61\x00\x6a\x00\x7a\x00\x6f\x00\x6c\x00\x74\x00\x20\x00\x73\x00\ -\x7a\x00\x61\x00\x6b\x00\x61\x00\x73\x00\x7a\x00\xe1\x00\x6e\x00\ -\x61\x00\x6b\x00\x20\x00\x76\x00\x69\x00\x73\x00\x73\x00\x7a\x00\ -\x61\x00\x76\x00\x6f\x00\x6e\x00\xe1\x00\x73\x00\x61\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x35\x55\x6e\x64\x6f\x65\x73\x20\x74\x68\ -\x65\x20\x6c\x61\x73\x74\x20\x64\x72\x61\x77\x6e\x20\x73\x65\x67\ -\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x6c\x69\x6e\x65\ -\x20\x62\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x07\x00\x00\x00\ -\x0e\x44\x72\x61\x66\x74\x5f\x55\x6e\x64\x6f\x4c\x69\x6e\x65\x01\ -\x03\x00\x00\x00\xc6\x00\xd6\x00\x73\x00\x73\x00\x7a\x00\x65\x00\ -\x6b\x00\x61\x00\x70\x00\x63\x00\x73\x00\x6f\x00\x6c\x00\x6a\x00\ -\x61\x00\x20\x00\x61\x00\x20\x00\x6b\x00\x69\x00\x76\x00\xe1\x00\ -\x6c\x00\x61\x00\x73\x00\x7a\x00\x74\x00\x6f\x00\x74\x00\x74\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\ -\x6d\x00\x6f\x00\x6b\x00\x61\x00\x74\x00\x2c\x00\x20\x00\x76\x00\ -\x61\x00\x67\x00\x79\x00\x20\x00\x61\x00\x7a\x00\x20\x00\xf6\x00\ -\x73\x00\x73\x00\x7a\x00\x65\x00\x6b\x00\xf6\x00\x74\x00\xf6\x00\ -\x74\x00\x74\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\ -\x61\x00\x6b\x00\x61\x00\x74\x00\x20\x00\x66\x00\x65\x00\x6c\x00\ -\xfc\x00\x6c\x00\x65\x00\x74\x00\x74\x00\xe9\x00\x2c\x00\x20\x00\ -\x73\x00\xed\x00\x6b\x00\x6b\x00\xe1\x00\x20\x00\x61\x00\x6c\x00\ -\x61\x00\x6b\x00\xed\x00\x74\x00\x6a\x00\x61\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x5d\x4a\x6f\x69\x6e\x73\x20\x74\x68\x65\x20\x73\ -\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ -\x69\x6e\x74\x6f\x20\x6f\x6e\x65\x2c\x20\x6f\x72\x20\x63\x6f\x6e\ -\x76\x65\x72\x74\x73\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\ -\x65\x73\x20\x74\x6f\x20\x66\x69\x6c\x6c\x65\x64\x20\x66\x61\x63\ -\x65\x73\x2c\x20\x6f\x72\x20\x75\x6e\x69\x74\x65\x20\x66\x61\x63\ -\x65\x73\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x55\x70\x67\ -\x72\x61\x64\x65\x01\x03\x00\x00\x00\x12\x00\x46\x00\x72\x00\x69\ -\x00\x73\x00\x73\x00\xed\x00\x74\x00\xe9\x00\x73\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x07\x55\x70\x67\x72\x61\x64\x65\x07\x00\x00\ -\x00\x0d\x44\x72\x61\x66\x74\x5f\x55\x70\x67\x72\x61\x64\x65\x01\ -\x03\x00\x00\x00\x78\x00\x54\x00\xf6\x00\x62\x00\x62\x00\x20\x00\ -\x70\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x73\x00\x2d\x00\x68\x00\ -\x75\x00\x7a\x00\x61\x00\x6c\x00\x20\x00\x6c\x00\xe9\x00\x74\x00\ -\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\xe1\x00\x73\x00\x61\x00\ -\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x69\x00\ -\x67\x00\x61\x00\x7a\x00\xed\x00\x74\x00\xe1\x00\x73\x00\x2c\x00\ -\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x6b\x00\ -\x6f\x00\x72\x00\x6c\x00\xe1\x00\x74\x00\x6f\x00\x7a\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x3f\x43\x72\x65\x61\x74\x65\x73\x20\x61\ -\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\x70\x6f\x69\x6e\x74\x20\ -\x77\x69\x72\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ -\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\ -\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\ -\x5f\x57\x69\x72\x65\x01\x03\x00\x00\x00\x0a\x00\x68\x00\x75\x00\ -\x7a\x00\x61\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\ -\x69\x72\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x57\x69\ -\x72\x65\x01\x03\x00\x00\x00\x48\x00\x4b\x00\x6f\x00\x6e\x00\x76\ -\x00\x65\x00\x72\x00\x74\x00\xe1\x00\x6c\x00\xe1\x00\x73\x00\x20\ -\x00\x68\x00\x75\x00\x7a\x00\x61\x00\x6c\x00\x20\x00\xe9\x00\x73\ -\x00\x20\x00\x42\x00\x2d\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\ -\x00\x65\x00\x20\x00\x6b\x00\xf6\x00\x7a\x00\xf6\x00\x74\x00\x74\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x43\x6f\x6e\x76\x65\x72\ -\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x57\x69\x72\x65\x20\ -\x61\x6e\x64\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x13\ -\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x54\x6f\x42\x53\x70\x6c\ -\x69\x6e\x65\x01\x03\x00\x00\x00\x20\x00\x48\x00\x75\x00\x7a\x00\ -\x61\x00\x6c\x00\x20\x00\x2d\x00\x20\x00\x42\x00\x2d\x00\x53\x00\ -\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0f\x57\x69\x72\x65\x20\x74\x6f\x20\x42\x53\x70\x6c\x69\ -\x6e\x65\x07\x00\x00\x00\x13\x44\x72\x61\x66\x74\x5f\x57\x69\x72\ -\x65\x54\x6f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x0e\ -\x00\x41\x00\x6c\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x07\x41\x6c\x74\x20\x6d\x6f\x64\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x36\x00\x41\x00\x6c\x00\x74\x00\x65\x00\ -\x72\x00\x6e\x00\x61\x00\x74\x00\xed\x00\x76\x00\x20\x00\x53\x00\ -\x56\x00\x47\x00\x20\x00\x6d\x00\x69\x00\x6e\x00\x74\x00\xe1\x00\ -\x6b\x00\x20\x00\x68\x00\x65\x00\x6c\x00\x79\x00\x65\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x1f\x41\x6c\x74\x65\x72\x6e\x61\x74\x65\ -\x20\x53\x56\x47\x20\x50\x61\x74\x74\x65\x72\x6e\x73\x20\x6c\x6f\ -\x63\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x98\x00\x4d\ -\x00\x69\x00\x6e\x00\x64\x00\x69\x00\x67\x00\x20\x00\x6b\x00\x61\ -\x00\x70\x00\x63\x00\x73\x00\x6f\x00\x6c\x00\xf3\x00\x64\x00\x6a\ -\x00\x6f\x00\x6e\x00\x20\x00\x74\x00\xe1\x00\x72\x00\x67\x00\x79\ -\x00\x61\x00\x6b\x00\x68\x00\x6f\x00\x7a\x00\x20\x00\x28\x00\x6b\ -\x00\x61\x00\x70\x00\x63\x00\x73\x00\x6f\x00\x6c\x00\x6a\x00\x61\ -\x00\x20\x00\x6b\x00\x69\x00\x20\x00\x61\x00\x20\x00\x6b\x00\x61\ -\x00\x70\x00\x63\x00\x73\x00\x6f\x00\x6c\x00\xf3\x00\x64\x00\xe1\ -\x00\x73\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x20\x00\x62\x00\x69\ -\x00\x6c\x00\x6c\x00\x65\x00\x6e\x00\x74\x00\x79\x01\x71\x00\x76\ -\x00\x65\x00\x6c\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\ -\x41\x6c\x77\x61\x79\x73\x20\x73\x6e\x61\x70\x20\x74\x6f\x20\x6f\ -\x62\x6a\x65\x63\x74\x73\x20\x28\x64\x69\x73\x61\x62\x6c\x65\x20\ -\x73\x6e\x61\x70\x20\x6d\x6f\x64\x20\x6b\x65\x79\x29\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x0a\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x72\x69\x61\x6c\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x16\x00\x42\x00\x61\x00\x63\x00\x6b\x00\x73\ -\x00\x6c\x00\x61\x00\x73\x00\x68\x00\x20\x00\x35\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\ -\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x42\x00\x61\x00\x63\x00\ -\x6b\x00\x73\x00\x6c\x00\x61\x00\x73\x00\x68\x00\x20\x00\x37\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\ -\x73\x68\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x42\x00\x61\ -\x00\x63\x00\x6b\x00\x73\x00\x6c\x00\x61\x00\x73\x00\x68\x00\x20\ -\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\ -\x73\x6c\x61\x73\x68\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x88\x00\ -\x45\x00\x6c\x00\x6c\x00\x65\x00\x6e\x01\x51\x00\x72\x00\x69\x00\ -\x7a\x00\x7a\x00\x65\x00\x20\x00\x65\x00\x7a\x00\x74\x00\x2c\x00\ -\x20\x00\x68\x00\x61\x00\x20\x00\x61\x00\x20\x00\x74\x00\x65\x00\ -\x72\x00\xfc\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x6b\x00\x65\x00\ -\x74\x00\x20\x00\x28\x00\x33\x00\x44\x00\x20\x00\x66\x00\x65\x00\ -\x6c\x00\xfc\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x6b\x00\x29\x00\ -\x20\x00\x69\x00\x73\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\ -\x72\x00\x74\x00\xe1\x00\x6c\x00\x6e\x00\x69\x00\x20\x00\x6b\x00\ -\x65\x00\x6c\x00\x6c\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x3f\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x79\ -\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x68\x65\x20\x61\x72\x65\x61\ -\x73\x20\x28\x33\x44\x20\x66\x61\x63\x65\x73\x29\x20\x74\x6f\x20\ -\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\x2e\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\xb4\x00\x4a\x00\x65\x00\x6c\x00\xf6\ -\x00\x6c\x00\x6a\x00\x65\x00\x20\x00\x62\x00\x65\x00\x2c\x00\x20\ -\x00\x68\x00\x61\x00\x20\x00\x61\x00\x7a\x00\x74\x00\x20\x00\x73\ -\x00\x7a\x00\x65\x00\x72\x00\x65\x00\x74\x00\x6e\x00\xe9\x00\x2c\ -\x00\x20\x00\x68\x00\x6f\x00\x67\x00\x79\x00\x20\x00\x61\x00\x20\ -\x00\x6e\x00\xe9\x00\x76\x00\x20\x00\x6e\x00\xe9\x00\x6c\x00\x6b\ -\x00\xfc\x00\x6c\x00\x69\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x6b\ -\x00\x6b\x00\x6f\x00\x6b\x00\x20\x00\x28\x00\x2a\x00\x2d\x00\x61\ -\x00\x6c\x00\x20\x00\x6b\x00\x65\x00\x7a\x00\x64\x01\x51\x00\x64\ -\x01\x51\x00\x29\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\ -\x00\x74\x00\xe1\x00\x6c\x00\x76\x00\x61\x00\x20\x00\x6c\x00\x65\ -\x00\x67\x00\x79\x00\x65\x00\x6e\x00\x65\x00\x6b\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x53\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\ -\x20\x69\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x68\x65\ -\x20\x6e\x6f\x6e\x2d\x6e\x61\x6d\x65\x64\x20\x62\x6c\x6f\x63\x6b\ -\x73\x20\x28\x62\x65\x67\x69\x6e\x6e\x69\x6e\x67\x20\x77\x69\x74\ -\x68\x20\x61\x20\x2a\x29\x20\x74\x6f\x20\x62\x65\x20\x69\x6d\x70\ -\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x0a\x00\x4b\x00\xf6\x00\x72\x00\x20\x00\x35\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x35\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x0a\x00\x4b\x00\xf6\x00\x72\x00\x20\x00\x37\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\x20\ -\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x4b\x00\xf6\x00\x72\x00\ -\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x69\x72\ -\x63\x6c\x65\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x00\x56\x00\ -\x6f\x00\x6e\x00\x61\x00\x6c\x00\x76\x00\x61\x00\x73\x00\x74\x00\ -\x61\x00\x67\x00\x73\x00\xe1\x00\x67\x00\x68\x00\x6f\x00\x7a\x00\ -\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6c\x00\x74\x00\ -\x20\x00\x73\x00\x7a\x00\xed\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x19\x43\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x65\x64\x20\ -\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x1e\x00\x53\x00\x7a\x00\xed\x00\x6e\x00\x74\x00\xe9\ -\x00\x72\x00\x6b\x00\xe9\x00\x70\x00\x20\x00\x66\x00\xe1\x00\x6a\ -\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x43\x6f\x6c\x6f\ -\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x1e\x00\x4b\x00\xe9\x00\x6e\x00\x79\x00\x73\ -\x00\x7a\x00\x65\x00\x72\x00\xed\x00\x74\x01\x51\x00\x20\x00\x6d\ -\x00\xf3\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\ -\x6e\x73\x74\x72\x61\x69\x6e\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x0e\x00\x41\x00\x6c\x00\x6b\x00\x6f\x00\x74\x00\xe1\x00\ -\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x6f\x6e\x73\x74\ -\x72\x75\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\ -\xc9\x00\x70\x00\xed\x00\x74\x00\xe9\x00\x73\x00\x69\x00\x20\x00\ -\x73\x00\x7a\x00\xed\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x12\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x63\x6f\ -\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x4b\x00\x6f\x00\ -\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x63\x00\x69\x00\ -\xf3\x00\x2d\x00\x63\x00\x73\x00\x6f\x00\x70\x00\x6f\x00\x72\x00\ -\x74\x00\x20\x00\x6e\x00\x65\x00\x76\x00\x65\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x17\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\ -\x6e\x20\x67\x72\x6f\x75\x70\x20\x6e\x61\x6d\x65\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x46\x00\x50\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\ -\x00\x74\x00\x72\x00\x69\x00\x6b\x00\x75\x00\x73\x00\x20\x00\x6f\ -\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x6f\ -\x00\x6b\x00\x20\x00\x6c\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\ -\x00\x6f\x00\x7a\x00\xe1\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x19\x43\x72\x65\x61\x74\x65\x20\x70\x61\x72\x61\x6d\ -\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x30\x00\x44\x00\x58\x00\x46\x00\x20\x00\x66\x00\ -\x6f\x00\x72\x00\x6d\x00\xe1\x00\x74\x00\x75\x00\x6d\x00\x20\x00\ -\x62\x00\x65\x00\xe1\x00\x6c\x00\x6c\x00\xed\x00\x74\x00\xe1\x00\ -\x73\x00\x61\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x44\ -\x58\x46\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\x6f\x6e\ -\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x41\x00\x6c\x00\x61\x00\ -\x70\x00\xe9\x00\x72\x00\x74\x00\x65\x00\x6c\x00\x6d\x00\x65\x00\ -\x7a\x00\x65\x00\x74\x00\x74\x00\x20\x00\x73\x00\x7a\x00\xed\x00\ -\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x44\x65\x66\x61\x75\ -\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x50\ -\x00\x41\x00\x6c\x00\x61\x00\x70\x00\xe9\x00\x72\x00\x74\x00\x65\ -\x00\x6c\x00\x6d\x00\x65\x00\x7a\x00\x65\x00\x74\x00\x74\x00\x20\ -\x00\x73\x00\x7a\x00\xf6\x00\x76\x00\x65\x00\x67\x00\x20\x00\xe9\ -\x00\x73\x00\x20\x00\x6d\x00\xe9\x00\x74\x00\x65\x00\x72\x00\x20\ -\x00\x6d\x00\x61\x00\x67\x00\x61\x00\x73\x00\x73\x00\xe1\x00\x67\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x44\x65\x66\x61\x75\x6c\ -\x74\x20\x68\x65\x69\x67\x68\x74\x20\x66\x6f\x72\x20\x74\x65\x78\ -\x74\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ -\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x00\x41\x00\x6c\x00\x61\x00\ -\x70\x00\xe9\x00\x72\x00\x74\x00\x65\x00\x6c\x00\x6d\x00\x65\x00\ -\x7a\x00\x65\x00\x74\x00\x74\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\ -\x61\x00\x6c\x00\x76\x00\x61\x00\x73\x00\x74\x00\x61\x00\x67\x00\ -\x73\x00\xe1\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\ -\x65\x66\x61\x75\x6c\x74\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x3c\x00\x41\x00\x6c\x00\x61\x00\x70\ -\x00\xe9\x00\x72\x00\x74\x00\x65\x00\x6c\x00\x6d\x00\x65\x00\x7a\ -\x00\x65\x00\x74\x00\x74\x00\x20\x00\x72\x00\x61\x00\x6a\x00\x7a\ -\x00\x6c\x00\x61\x00\x70\x00\x20\x00\x73\x00\x61\x00\x62\x00\x6c\ -\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x44\x65\ -\x66\x61\x75\x6c\x74\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x20\x73\ -\x68\x65\x65\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x00\x41\x00\x6c\ -\x00\x61\x00\x70\x00\xe9\x00\x72\x00\x74\x00\x65\x00\x6c\x00\x6d\ -\x00\x65\x00\x7a\x00\x65\x00\x74\x00\x74\x00\x20\x00\x62\x00\x65\ -\x00\x74\x01\x71\x00\x74\x00\xed\x00\x70\x00\x75\x00\x73\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x11\x44\x65\x66\x61\x75\x6c\x74\x20\ -\x74\x65\x78\x74\x20\x66\x6f\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x3e\x00\x41\x00\x6c\x00\x61\x00\x70\x00\xe9\x00\x72\x00\x74\x00\ -\x65\x00\x6c\x00\x6d\x00\x65\x00\x7a\x00\x65\x00\x74\x00\x74\x00\ -\x20\x00\x73\x00\x7a\x00\xf6\x00\x76\x00\x65\x00\x67\x00\x20\x00\ -\x6d\x00\x61\x00\x67\x00\x61\x00\x73\x00\x73\x00\xe1\x00\x67\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x13\x44\x65\x66\x61\x75\x6c\x74\ -\x20\x74\x65\x78\x74\x20\x68\x65\x69\x67\x68\x74\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x30\x00\x41\x00\x6c\x00\x61\x00\x70\x00\xe9\x00\x72\ -\x00\x74\x00\x65\x00\x6c\x00\x6d\x00\x65\x00\x7a\x00\x65\x00\x74\ -\x00\x74\x00\x20\x00\x6d\x00\x75\x00\x6e\x00\x6b\x00\x61\x00\x73\ -\x00\xed\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x44\x65\ -\x66\x61\x75\x6c\x74\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\x6c\ -\x61\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x4d\x00\xe9\x00\ -\x72\x00\x65\x00\x74\x00\x65\x00\x6b\x00\x20\x00\xe9\x00\x73\x00\ -\x20\x00\x6e\x00\x79\x00\xed\x00\x6c\x00\x73\x00\x74\x00\xed\x00\ -\x6c\x00\x75\x00\x73\x00\x6f\x00\x6b\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x1f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x26\x20\ -\x4c\x65\x61\x64\x65\x72\x20\x61\x72\x72\x6f\x77\x20\x73\x74\x79\ -\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x4d\x00\xe9\x00\x72\ -\x00\x65\x00\x74\x00\x65\x00\x6b\x00\x20\x00\x70\x00\x6f\x00\x6e\ -\x00\x74\x00\x6f\x00\x73\x00\x73\x00\xe1\x00\x67\x00\x69\x00\x20\ -\x00\x73\x00\x7a\x00\x69\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x1a\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x70\ -\x72\x65\x63\x69\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x0c\x00\x50\x00\x6f\x00\x6e\x00\x74\x00\x20\ -\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\ -\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x50\x00\x6f\x00\x6e\x00\ -\x74\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\ -\x6f\x74\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x50\x00\x6f\ -\x00\x6e\x00\x74\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x05\x44\x6f\x74\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\ -\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x69\x00\x6e\x00\ -\x74\x00\x65\x00\x72\x00\x66\x00\xe9\x00\x73\x00\x7a\x00\x20\x00\ -\x6d\x00\xf3\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x44\ -\x72\x61\x66\x74\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x6d\ -\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5e\x00\x33\x00\x44\x00\ -\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\ -\x6d\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ -\xe1\x00\x6c\x00\xe1\x00\x73\x00\x61\x00\x20\x00\x74\x00\xf6\x00\ -\x62\x00\x62\x00\x66\x00\x65\x00\x6c\x00\xfc\x00\x6c\x00\x65\x00\ -\x74\x01\x71\x00\x20\x00\x68\x00\xe1\x00\x6c\x00\xf3\x00\x72\x00\ -\x61\x00\x6a\x00\x7a\x00\x7a\x00\xe1\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x24\x45\x78\x70\x6f\x72\x74\x20\x33\x44\x20\x6f\x62\x6a\ -\x65\x63\x74\x73\x20\x61\x73\x20\x70\x6f\x6c\x79\x66\x61\x63\x65\ -\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x52\x00\ -\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\ -\x20\x00\x6b\x00\x69\x00\x74\x00\xf6\x00\x6c\x00\x74\x00\xe9\x00\ -\x73\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x70\x00\xe9\x00\ -\x72\x00\x74\x00\x65\x00\x6c\x00\x6d\x00\x65\x00\x7a\x00\xe9\x00\ -\x73\x00\x20\x00\x73\x00\x7a\x00\x65\x00\x72\x00\x69\x00\x6e\x00\ -\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x46\x69\x6c\x6c\x20\ -\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x79\x20\x64\x65\x66\x61\x75\ -\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x00\xc1\x00\x6c\x00\x74\ -\x00\x61\x00\x6c\x00\xe1\x00\x6e\x00\x6f\x00\x73\x00\x20\x00\x72\ -\x00\x61\x00\x6a\x00\x7a\x00\x62\x00\x65\x00\xe1\x00\x6c\x00\x6c\ -\x00\xed\x00\x74\x00\xe1\x00\x73\x00\x6f\x00\x6b\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x16\x47\x65\x6e\x65\x72\x61\x6c\x20\x44\x72\ -\x61\x66\x74\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x2a\x00\xc1\x00\x6c\x00\x74\x00\x61\x00\x6c\x00\xe1\ -\x00\x6e\x00\x6f\x00\x73\x00\x20\x00\x62\x00\x65\x00\xe1\x00\x6c\ -\x00\x6c\x00\xed\x00\x74\x00\xe1\x00\x73\x00\x6f\x00\x6b\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\ -\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\ -\x00\x47\x00\x6c\x00\x6f\x00\x62\x00\xe1\x00\x6c\x00\x69\x00\x73\ -\x00\x20\x00\x6d\x00\xe1\x00\x73\x00\x6f\x00\x6c\x00\xe1\x00\x73\ -\x00\x69\x00\x20\x00\xfc\x00\x7a\x00\x65\x00\x6d\x00\x6d\x00\xf3\ -\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x6c\x6f\x62\ -\x61\x6c\x20\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x18\x00\x52\x00\xe1\x00\x63\x00\x73\x00\x20\x00\x74\ -\x00\xe9\x00\x72\x00\x6b\x00\xf6\x00\x7a\x00\x65\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0c\x47\x72\x69\x64\x20\x73\x70\x61\x63\x69\ -\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x43\x00\x73\x00\x6f\ -\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x72\x00\xe9\x00\x74\ -\x00\x65\x00\x67\x00\x65\x00\x6b\x00\x20\x00\x74\x00\xf6\x00\x6d\ -\x00\x62\x00\xf6\x00\x6b\x00\x6b\x00\xe9\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x18\x47\x72\x6f\x75\x70\x20\x6c\x61\x79\x65\x72\x73\ -\x20\x69\x6e\x74\x6f\x20\x62\x6c\x6f\x63\x6b\x73\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x01\x2c\x00\x49\x00\x74\x00\x74\x00\x20\x00\x6c\x00\x65\ -\x00\x68\x00\x65\x00\x74\x00\x20\x00\x6d\x00\x65\x00\x67\x00\x61\ -\x00\x64\x00\x6e\x00\x69\x00\x20\x00\x65\x00\x67\x00\x79\x00\x20\ -\x00\x53\x00\x56\x00\x47\x00\x20\x00\x66\x00\xe1\x00\x6a\x00\x6c\ -\x00\x6f\x00\x6b\x00\x61\x00\x74\x00\x20\x00\x74\x00\x61\x00\x72\ -\x00\x74\x00\x61\x00\x6c\x00\x6d\x00\x61\x00\x7a\x00\xf3\x00\x20\ -\x00\x6b\x00\xf6\x00\x6e\x00\x79\x00\x76\x00\x74\x00\xe1\x00\x72\ -\x00\x20\x00\x3c\x00\x70\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\ -\x00\x6e\x00\x3e\x00\x20\x00\x6d\x00\x65\x00\x67\x00\x68\x00\x61\ -\x00\x74\x00\xe1\x00\x72\x00\x6f\x00\x7a\x00\xe1\x00\x73\x00\x6f\ -\x00\x6b\x00\x61\x00\x74\x00\x2c\x00\x20\x00\x6d\x00\x65\x00\x6c\ -\x00\x79\x00\x65\x00\x74\x00\x20\x00\x6b\x00\x69\x00\x20\x00\x6c\ -\x00\x65\x00\x68\x00\x65\x00\x74\x00\x20\x00\x65\x00\x67\x00\xe9\ -\x00\x73\x00\x7a\x00\xed\x00\x74\x00\x65\x00\x6e\x00\x69\x00\x20\ -\x00\x61\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\ -\x00\x72\x00\x64\x00\x2d\x00\x74\x00\x65\x00\x72\x00\x76\x00\x65\ -\x00\x7a\x00\x65\x00\x74\x00\x20\x00\x73\x00\x72\x00\x61\x00\x66\ -\x00\x66\x00\x6f\x00\x7a\x00\xe1\x00\x73\x00\x69\x00\x20\x00\x6d\ -\x00\x69\x00\x6e\x00\x74\x00\xe1\x00\x6b\x00\x6b\x00\x61\x00\x6c\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x8d\x48\x65\x72\x65\x20\x79\ -\x6f\x75\x20\x63\x61\x6e\x20\x73\x70\x65\x63\x69\x66\x79\x20\x61\ -\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x63\x6f\x6e\x74\x61\ -\x69\x6e\x69\x6e\x67\x20\x53\x56\x47\x20\x66\x69\x6c\x65\x73\x20\ -\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x3c\x70\x61\x74\x74\ -\x65\x72\x6e\x3e\x20\x64\x65\x66\x69\x6e\x69\x74\x69\x6f\x6e\x73\ -\x20\x74\x68\x61\x74\x20\x63\x61\x6e\x20\x62\x65\x20\x61\x64\x64\ -\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x20\x73\x74\x61\x6e\x64\x61\ -\x72\x64\x20\x44\x72\x61\x66\x74\x20\x68\x61\x74\x63\x68\x20\x70\ -\x61\x74\x74\x65\x72\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x64\x00\ -\x48\x00\x61\x00\x20\x00\x62\x00\x65\x00\x20\x00\x76\x00\x61\x00\ -\x6e\x00\x20\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x76\x00\ -\x65\x00\x2c\x00\x20\x00\x65\x00\x67\x00\x79\x00\x20\x00\x72\x00\ -\xe1\x00\x63\x00\x73\x00\x20\x00\x6a\x00\x65\x00\x6c\x00\x65\x00\ -\x6e\x00\x69\x00\x6b\x00\x20\x00\x6d\x00\x65\x00\x67\x00\x2c\x00\ -\x20\x00\x68\x00\x61\x00\x20\x00\x72\x00\x61\x00\x6a\x00\x7a\x00\ -\x6f\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2b\x49\x66\x20\ -\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x20\x67\x72\x69\x64\x20\ -\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x77\x68\x65\x6e\ -\x20\x64\x72\x61\x77\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x0a\ -\x00\x48\x00\x61\x00\x20\x00\x62\x00\x65\x00\x20\x00\x76\x00\x61\ -\x00\x6e\x00\x20\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x76\ -\x00\x65\x00\x2c\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\ -\x00\x41\x00\x44\x00\x20\x00\x6d\x00\x65\x00\x67\x00\x70\x00\x72\ -\x00\xf3\x00\x62\x00\xe1\x00\x6c\x00\x6a\x00\x61\x00\x20\x00\xf6\ -\x00\x73\x00\x73\x00\x7a\x00\x65\x00\x6b\x00\xf6\x00\x74\x00\x6e\ -\x00\x69\x00\x20\x00\x61\x00\x20\x00\x6b\x00\xf6\x00\x7a\x00\xf6\ -\x00\x73\x00\x20\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x65\ -\x00\x6e\x00\x63\x00\x69\x00\x61\x00\x70\x00\x6f\x00\x6e\x00\x74\ -\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ -\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x6b\x00\x61\x00\x74\x00\x20\ -\x00\x76\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x61\x00\x6b\x00\x6b\ -\x00\xe1\x00\x2e\x00\x20\x00\x56\x00\x69\x00\x67\x00\x79\x00\xe1\ -\x00\x7a\x00\x7a\x00\x2c\x00\x20\x00\x65\x00\x7a\x00\x20\x00\x65\ -\x00\x6c\x00\x74\x00\x61\x00\x72\x00\x74\x00\x68\x00\x61\x00\x74\ -\x00\x20\x00\x65\x00\x67\x00\x79\x00\x20\x00\x69\x00\x64\x00\x65\ -\x00\x69\x00\x67\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x65\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\ -\x66\x72\x65\x65\x63\x61\x64\x20\x77\x69\x6c\x6c\x20\x74\x72\x79\ -\x20\x74\x6f\x20\x6a\x6f\x69\x6e\x74\x20\x63\x6f\x69\x6e\x63\x69\ -\x64\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\ -\x6f\x20\x77\x69\x72\x65\x73\x2e\x20\x42\x65\x77\x61\x72\x65\x2c\ -\x20\x74\x68\x69\x73\x20\x63\x61\x6e\x20\x74\x61\x6b\x65\x20\x61\ -\x20\x77\x68\x69\x6c\x65\x2e\x2e\x2e\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\xce\x00\x48\x00\x61\x00\x20\x00\x65\x00\x7a\x00\x20\x00\x62\x00\ -\x65\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x6a\x00\x65\x00\ -\x6c\x00\xf6\x00\x6c\x00\x76\x00\x65\x00\x2c\x00\x20\x00\x6d\x00\ -\x69\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x6b\x00\x69\x00\ -\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x74\x00\x20\x00\x74\x00\ -\xe1\x00\x72\x00\x67\x00\x79\x00\x61\x00\x74\x00\x2c\x00\x20\x00\ -\x61\x00\x6d\x00\x65\x00\x6c\x00\x79\x00\x20\x00\x73\x00\xed\x00\ -\x6b\x00\x6f\x00\x6b\x00\x61\x00\x74\x00\x20\x00\x74\x00\x61\x00\ -\x72\x00\x74\x00\x61\x00\x6c\x00\x6d\x00\x61\x00\x7a\x00\x2c\x00\ -\x20\x00\x33\x00\x64\x00\x20\x00\x73\x00\x6f\x00\x6b\x00\x73\x00\ -\xed\x00\x6b\x00\xfa\x00\x20\x00\x66\x00\x65\x00\x6c\x00\xfc\x00\ -\x6c\x00\x65\x00\x74\x00\x74\x00\xe9\x00\x20\x00\x65\x00\x78\x00\ -\x70\x00\x6f\x00\x72\x00\x74\x00\xe1\x00\x6c\x00\x6a\x00\x61\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x51\x49\x66\x20\x74\x68\x69\x73\ -\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x6c\x6c\ -\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x63\x6f\x6e\x74\x61\x69\x6e\ -\x69\x6e\x67\x20\x66\x61\x63\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\ -\x65\x20\x65\x78\x70\x6f\x72\x74\x65\x64\x20\x61\x73\x20\x33\x64\ -\x20\x70\x6f\x6c\x79\x66\x61\x63\x65\x73\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x01\x06\x00\x48\x00\x61\x00\x20\x00\x65\x00\x7a\x00\x20\x00\x62\ -\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x6a\x00\x65\ -\x00\x6c\x00\xf6\x00\x6c\x00\x76\x00\x65\x00\x2c\x00\x20\x00\x6d\ -\x00\xe1\x00\x73\x00\x6f\x00\x6c\x00\xe1\x00\x73\x00\x69\x00\x20\ -\x00\xfc\x00\x7a\x00\x65\x00\x6d\x00\x6d\x00\xf3\x00\x64\x00\x62\ -\x00\x61\x00\x6e\x00\x20\x00\x6d\x00\x61\x00\x72\x00\x61\x00\x64\ -\x00\x20\x00\x61\x00\x7a\x00\x20\x00\x65\x00\x67\x00\xe9\x00\x73\ -\x00\x7a\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6e\x00\x63\ -\x00\x73\x00\x6f\x00\x6e\x00\x20\x00\x6b\x00\x65\x00\x72\x00\x65\ -\x00\x73\x00\x7a\x00\x74\x00\xfc\x00\x6c\x00\x2c\x00\x20\x00\x6b\ -\x00\xfc\x00\x6c\x00\xf6\x00\x6e\x00\x62\x00\x65\x00\x6e\x00\x20\ -\x00\x69\x00\x6e\x00\x64\x00\x75\x00\x6c\x00\xe1\x00\x73\x00\x6b\ -\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x6d\x00\x20\x00\x61\ -\x00\x20\x00\x6d\x00\xe1\x00\x73\x00\x6f\x00\x6c\x00\xe1\x00\x73\ -\x00\x69\x00\x20\x00\x6d\x00\xf3\x00\x64\x00\x64\x00\x61\x00\x6c\ -\x00\x20\x00\x66\x00\x6f\x00\x67\x00\x20\x00\x69\x00\x6e\x00\x64\ -\x00\x75\x00\x6c\x00\x6e\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x6f\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\ -\x63\x6b\x65\x64\x2c\x20\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x20\ -\x77\x69\x6c\x6c\x20\x62\x65\x20\x6b\x65\x70\x74\x20\x61\x63\x72\ -\x6f\x73\x73\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x2c\x20\x6f\x74\x68\ -\x65\x72\x77\x69\x73\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x20\ -\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x73\x74\x61\x72\ -\x74\x20\x69\x6e\x20\x6e\x6f\x2d\x63\x6f\x70\x79\x20\x6d\x6f\x64\ -\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\xe4\x00\x48\x00\x61\x00\x20\x00\ -\x65\x00\x7a\x00\x20\x00\x62\x00\x65\x00\x20\x00\x76\x00\x61\x00\ -\x6e\x00\x20\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x76\x00\ -\x65\x00\x2c\x00\x20\x00\x61\x00\x7a\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x6b\x00\ -\x20\x00\x61\x00\x7a\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x70\x00\ -\xe9\x00\x72\x00\x74\x00\x65\x00\x6c\x00\x6d\x00\x65\x00\x7a\x00\ -\x65\x00\x74\x00\x74\x00\x20\x00\x6b\x00\x69\x00\x74\x00\xf6\x00\ -\x6c\x00\x74\x00\xe9\x00\x73\x00\x73\x00\x65\x00\x6c\x00\x20\x00\ -\x6a\x00\x65\x00\x6c\x00\x65\x00\x6e\x00\x6e\x00\x65\x00\x6b\x00\ -\x20\x00\x6d\x00\x65\x00\x67\x00\x2e\x00\x20\x00\x45\x00\x6c\x00\ -\x6c\x00\x65\x00\x6e\x00\x6b\x00\x65\x00\x7a\x01\x51\x00\x20\x00\ -\x65\x00\x73\x00\x65\x00\x74\x00\x62\x00\x65\x00\x6e\x00\x20\x00\ -\x64\x00\x72\x00\xf3\x00\x74\x00\x76\x00\xe1\x00\x7a\x00\x61\x00\ -\x73\x00\x20\x00\x6d\x00\xf3\x00\x64\x00\x6f\x00\x6e\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x66\x49\x66\x20\x74\x68\x69\x73\x20\x69\ -\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\x65\x63\ -\x74\x73\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x61\ -\x73\x20\x66\x69\x6c\x6c\x65\x64\x20\x61\x73\x20\x64\x65\x66\x61\ -\x75\x6c\x74\x2e\x20\x4f\x74\x68\x65\x72\x77\x69\x73\x65\x2c\x20\ -\x74\x68\x65\x79\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\ -\x20\x61\x73\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x01\x1a\x00\x48\x00\x61\x00\x20\x00\x65\x00\x7a\x00\ -\x20\x00\x62\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\ -\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x76\x00\x65\x00\x2c\x00\ -\x20\x00\x61\x00\x6b\x00\x6b\x00\x6f\x00\x72\x00\x20\x00\x6d\x00\ -\x69\x00\x6e\x00\x64\x00\x69\x00\x67\x00\x20\x00\x69\x00\x67\x00\ -\x61\x00\x7a\x00\xed\x00\x74\x00\x20\x00\x61\x00\x20\x00\x6d\x00\ -\x65\x00\x67\x00\x6c\x00\xe9\x00\x76\x01\x51\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\ -\x6b\x00\x20\x00\x72\x00\x61\x00\x6a\x00\x7a\x00\x6f\x00\x6c\x00\ -\xe1\x00\x73\x00\x20\x00\x6b\x00\xf6\x00\x7a\x00\x62\x00\x65\x00\ -\x6e\x00\x2e\x00\x20\x00\x48\x00\x61\x00\x20\x00\x6e\x00\x65\x00\ -\x6d\x00\x2c\x00\x20\x00\x61\x00\x6b\x00\x6b\x00\x6f\x00\x72\x00\ -\x20\x00\x61\x00\x7a\x00\x20\x00\x69\x00\x67\x00\x61\x00\x7a\x00\ -\xed\x00\x74\x00\xe1\x00\x73\x00\x68\x00\x6f\x00\x7a\x00\x20\x00\ -\x6d\x00\x65\x00\x67\x00\x20\x00\x6b\x00\x65\x00\x6c\x00\x6c\x00\ -\x20\x00\x6e\x00\x79\x00\x6f\x00\x6d\x00\x6e\x00\x69\x00\x20\x00\ -\x61\x00\x20\x00\x61\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ -\x20\x00\x67\x00\x6f\x00\x6d\x00\x62\x00\x6f\x00\x74\x00\x2e\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x81\x49\x66\x20\x74\x68\x69\x73\ -\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x79\x6f\x75\ -\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x73\x6e\x61\ -\x70\x20\x74\x6f\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x6f\x62\ -\x6a\x65\x63\x74\x73\x20\x77\x68\x69\x6c\x65\x20\x64\x72\x61\x77\ -\x69\x6e\x67\x2e\x20\x49\x66\x20\x6e\x6f\x74\x2c\x20\x79\x6f\x75\ -\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x73\x6e\x61\x70\x70\x69\x6e\ -\x67\x20\x6f\x6e\x6c\x79\x20\x77\x68\x65\x6e\x20\x70\x72\x65\x73\ -\x73\x69\x6e\x67\x20\x43\x54\x52\x4c\x2e\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x2a\x00\x42\x00\x6c\x00\x6f\x00\x6b\x00\x6b\x00\x6f\x00\x6b\ -\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\xe1\ -\x00\x6c\x00\xe1\x00\x73\x00\x61\x00\x20\x00\x2a\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0e\x49\x6d\x70\x6f\x72\x74\x20\x2a\x62\x6c\ -\x6f\x63\x6b\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x00\x4f\x00\x43\ -\x00\x41\x00\x20\x00\x74\x00\x65\x00\x72\x00\xfc\x00\x6c\x00\x65\ -\x00\x74\x00\x65\x00\x6b\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\ -\x00\x72\x00\x74\x00\xe1\x00\x6c\x00\xe1\x00\x73\x00\x61\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x10\x49\x6d\x70\x6f\x72\x74\x20\x4f\ -\x43\x41\x20\x61\x72\x65\x61\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\ -\x00\x45\x00\x6c\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x7a\ -\x00\xe9\x00\x73\x00\x65\x00\x6b\x00\x20\x00\x69\x00\x6d\x00\x70\ -\x00\x6f\x00\x72\x00\x74\x00\xe1\x00\x6c\x00\xe1\x00\x73\x00\x61\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x49\x6d\x70\x6f\x72\x74\ -\x20\x6c\x61\x79\x6f\x75\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\ -\x00\x53\x00\x74\x00\xed\x00\x6c\x00\x75\x00\x73\x00\x20\x00\x69\ -\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\xe1\x00\x6c\x00\xe1\ -\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x49\x6d\ -\x70\x6f\x72\x74\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x3e\x00\x53\x00\x7a\x00\xf6\x00\x76\x00\x65\x00\x67\x00\x65\ -\x00\x6b\x00\x20\x00\xe9\x00\x73\x00\x20\x00\x6d\x00\xe9\x00\x72\ -\x00\x65\x00\x74\x00\x65\x00\x6b\x00\x20\x00\x69\x00\x6d\x00\x70\ -\x00\x6f\x00\x72\x00\x74\x00\xe1\x00\x6c\x00\xe1\x00\x73\x00\x61\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x49\x6d\x70\x6f\x72\x74\ -\x20\x74\x65\x78\x74\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\ -\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x49\x00\ -\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\xe1\x00\x6c\x00\xe1\x00\ -\x73\x00\x2f\x00\x45\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ -\xe1\x00\x6c\x00\xe1\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0d\x49\x6d\x70\x6f\x72\x74\x2f\x45\x78\x70\x6f\x72\x74\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x2c\x00\x42\x00\x65\x00\x6c\x00\x73\x01\x51\ -\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x73\x00\x73\ -\x00\xe1\x00\x67\x00\x69\x00\x20\x00\x73\x00\x7a\x00\x69\x00\x6e\ -\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x49\x6e\x74\x65\ -\x72\x6e\x61\x6c\x20\x70\x72\x65\x63\x69\x73\x69\x6f\x6e\x20\x6c\ -\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x00\x47\x00\x65\ -\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x61\x00\x20\ -\x00\x63\x00\x73\x00\x61\x00\x74\x00\x6c\x00\x61\x00\x6b\x00\x6f\ -\x00\x7a\x00\x74\x00\x61\x00\x74\x00\xe1\x00\x73\x00\x61\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0d\x4a\x6f\x69\x6e\x20\x67\x65\x6f\ -\x6d\x65\x74\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\x42\x00\ -\x61\x00\x6c\x00\x20\x00\x28\x00\x49\x00\x53\x00\x4f\x00\x20\x00\ -\x73\x00\x7a\x00\x61\x00\x62\x00\x76\x00\xe1\x00\x6e\x00\x79\x00\ -\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x4c\x65\x66\x74\x20\ -\x28\x49\x53\x4f\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x29\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x28\x00\x4d\x00\x69\x00\x6e\x00\x64\x00\x65\ -\x00\x6e\x00\x20\x00\x65\x00\x67\x00\x79\x00\x65\x00\x73\x00\x20\ -\x00\x66\x01\x51\x00\x76\x00\x6f\x00\x6e\x00\x61\x00\x6c\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x10\x4d\x61\x69\x6e\x20\x6c\x69\x6e\ -\x65\x73\x20\x65\x76\x65\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa8\ -\x00\x41\x00\x20\x00\x66\x01\x51\x00\x20\x00\x76\x00\x6f\x00\x6e\ -\x00\x61\x00\x6c\x00\x61\x00\x6b\x00\x20\x00\x76\x00\x61\x00\x73\ -\x00\x74\x00\x61\x00\x67\x00\x61\x00\x62\x00\x20\x00\x72\x00\x61\ -\x00\x6a\x00\x7a\x00\x6f\x00\x6c\x00\x61\x00\x74\x00\xfa\x00\x61\ -\x00\x6b\x00\x2e\x00\x20\x00\x41\x00\x64\x00\x6a\x00\x61\x00\x20\ -\x00\x6d\x00\x65\x00\x67\x00\x2c\x00\x20\x00\x6d\x00\x65\x00\x6e\ -\x00\x6e\x00\x79\x00\x69\x00\x20\x00\x6e\x00\xe9\x00\x67\x00\x79\ -\x00\x7a\x00\x65\x00\x74\x00\x20\x00\x6c\x00\x65\x00\x67\x00\x79\ -\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x66\x01\x51\x00\x76\ -\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x61\x00\x6b\x00\x20\x00\x6b\ -\x00\xf6\x00\x7a\x00\x74\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x51\x4d\x61\x69\x6e\x6c\x69\x6e\x65\x73\x20\x77\x69\x6c\x6c\ -\x20\x62\x65\x20\x64\x72\x61\x77\x6e\x20\x74\x68\x69\x63\x6b\x65\ -\x72\x2e\x20\x53\x70\x65\x63\x69\x66\x79\x20\x68\x65\x72\x65\x20\ -\x68\x6f\x77\x20\x6d\x61\x6e\x79\x20\x73\x71\x75\x61\x72\x65\x73\ -\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x6d\x61\x69\x6e\x6c\x69\x6e\ -\x65\x73\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x4d\x00\x61\x00\ -\x78\x00\x2e\x00\x20\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\ -\x65\x00\x20\x00\x73\x00\x7a\x00\x65\x00\x67\x00\x6d\x00\x65\x00\ -\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4d\x61\x78\ -\x20\x53\x70\x6c\x69\x6e\x65\x20\x53\x65\x67\x6d\x65\x6e\x74\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x12\x00\x45\x00\x67\x00\x79\x00\x69\x00\ -\x6b\x00\x20\x00\x73\x00\x65\x00\x6d\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\ -\x4e\x00\x69\x00\x6e\x00\x63\x00\x73\x00\x20\x00\x28\x00\x6c\x00\ -\x65\x00\x67\x00\x67\x00\x79\x00\x6f\x00\x72\x00\x73\x00\x61\x00\ -\x62\x00\x62\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x4e\ -\x6f\x6e\x65\x20\x28\x66\x61\x73\x74\x65\x73\x74\x29\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x01\x06\x00\x54\x00\xe1\x00\x72\x00\x67\x00\x79\x00\ -\x20\x00\x6d\x00\xe1\x00\x73\x00\x6f\x00\x6c\x00\xe1\x00\x73\x00\ -\x61\x00\x20\x00\x75\x00\x74\x00\xe1\x00\x6e\x00\x2c\x00\x20\x00\ -\x6e\x00\x6f\x00\x72\x00\x6d\x00\xe1\x00\x6c\x00\x69\x00\x73\x00\ -\x2c\x00\x68\x00\x61\x00\x20\x00\x61\x00\x20\x00\x6d\x00\xe1\x00\ -\x73\x00\x6f\x00\x6c\x00\x61\x00\x74\x00\x20\x00\x76\x00\x61\x00\ -\x6e\x00\x20\x00\x6b\x00\x69\x00\x76\x00\xe1\x00\x6c\x00\x61\x00\ -\x73\x00\x7a\x00\x74\x00\x76\x00\x61\x00\x2e\x00\x20\x00\x48\x00\ -\x61\x00\x20\x00\x65\x00\x7a\x00\x20\x00\x61\x00\x7a\x00\x20\x00\ -\x6f\x00\x70\x00\x63\x00\x69\x00\xf3\x00\x20\x00\x6e\x00\x69\x00\ -\x6e\x00\x63\x00\x73\x00\x20\x00\x6b\x00\x69\x00\x76\x00\xe1\x00\ -\x6c\x00\x61\x00\x73\x00\x7a\x00\x74\x00\x76\x00\x61\x00\x2c\x00\ -\x20\x00\x61\x00\x6b\x00\x6b\x00\x6f\x00\x72\x00\x20\x00\x61\x00\ -\x7a\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x70\x00\x20\x00\x74\x00\ -\xe1\x00\x72\x00\x67\x00\x79\x00\x20\x00\x6c\x00\x65\x00\x73\x00\ -\x7a\x00\x20\x00\x6b\x00\x69\x00\x76\x00\xe1\x00\x6c\x00\x61\x00\ -\x73\x00\x7a\x00\x74\x00\x76\x00\x61\x00\x2e\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x7f\x4e\x6f\x72\x6d\x61\x6c\x6c\x79\x2c\x20\x61\ -\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\x6e\x67\x20\x6f\x62\x6a\ -\x65\x63\x74\x73\x2c\x20\x74\x68\x65\x20\x63\x6f\x70\x69\x65\x73\ -\x20\x67\x65\x74\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x2e\x20\x49\ -\x66\x20\x74\x68\x69\x73\x20\x6f\x70\x74\x69\x6f\x6e\x20\x69\x73\ -\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x62\x61\ -\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\ -\x62\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x69\x6e\x73\x74\ -\x65\x61\x64\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x4f\x00\x43\ -\x00\x41\x00\x20\x00\x46\x00\x6f\x00\x72\x00\x6d\x00\xe1\x00\x74\ -\x00\x75\x00\x6d\x00\x20\x00\x62\x00\x65\x00\xe1\x00\x6c\x00\x6c\ -\x00\xed\x00\x74\x00\xe1\x00\x73\x00\x61\x00\x69\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x12\x4f\x43\x41\x20\x66\x6f\x72\x6d\x61\x74\ -\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3c\ -\x00\x45\x00\x72\x00\x65\x00\x64\x00\x65\x00\x74\x00\x69\x00\x20\ -\x00\x73\x00\x7a\x00\xed\x00\x6e\x00\x20\x00\xe9\x00\x73\x00\x20\ -\x00\x76\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x76\x00\x61\x00\x73\ -\x00\x74\x00\x61\x00\x67\x00\x73\x00\xe1\x00\x67\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x1c\x4f\x72\x69\x67\x69\x6e\x61\x6c\x20\x63\ -\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\ -\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x00\x4a\x00\x6f\x00\x62\ -\x00\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x52\x69\x67\x68\ -\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x53\x00\x56\x00\x47\x00\ -\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\xe1\x00\x74\x00\x75\x00\ -\x6d\x00\x20\x00\x62\x00\x65\x00\xe1\x00\x6c\x00\x6c\x00\xed\x00\ -\x74\x00\xe1\x00\x73\x00\x61\x00\x69\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x12\x53\x56\x47\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\ -\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x86\x00\x4d\x00\ -\x65\x00\x6e\x00\x74\x00\xe9\x00\x73\x00\x65\x00\x20\x00\x61\x00\ -\x7a\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x75\x00\xe1\x00\x6c\x00\ -\x69\x00\x73\x00\x20\x00\x73\x00\x7a\x00\xed\x00\x6e\x00\x74\x00\ -\x20\x00\xe9\x00\x73\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x61\x00\ -\x6c\x00\x76\x00\x61\x00\x73\x00\x74\x00\x61\x00\x67\x00\x73\x00\ -\xe1\x00\x67\x00\x6f\x00\x74\x00\x20\x00\x61\x00\x20\x00\x65\x00\ -\x72\x00\x72\x00\x65\x00\x20\x00\x61\x00\x20\x00\x6d\x00\x75\x00\ -\x6e\x00\x6b\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x65\x00\x74\x00\ -\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x53\x61\x76\ -\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x63\x6f\x6c\x6f\x72\x20\ -\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\x61\x63\ -\x72\x6f\x73\x73\x20\x73\x65\x73\x73\x69\x6f\x6e\x73\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x5a\x00\x56\x00\xe1\x00\x6c\x00\x61\x00\x73\x00\ -\x73\x00\x7a\x00\x61\x00\x20\x00\x6b\x00\x69\x00\x20\x00\x61\x00\ -\x20\x00\x62\x00\xe1\x00\x7a\x00\x69\x00\x73\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\ -\x6b\x00\x61\x00\x74\x00\x20\x00\x6d\x00\xe1\x00\x73\x00\x6f\x00\ -\x6c\x00\xe1\x00\x73\x00\x20\x00\x75\x00\x74\x00\xe1\x00\x6e\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x21\x53\x65\x6c\x65\x63\x74\x20\ -\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x66\x74\ -\x65\x72\x20\x63\x6f\x70\x79\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x0e\x00\x53\x00\x6c\x00\x61\x00\x73\x00\x68\x00\x20\x00\x35\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\x20\ -\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x53\x00\x6c\x00\x61\x00\ -\x73\x00\x68\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x07\x53\x6c\x61\x73\x68\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\ -\x00\x53\x00\x6c\x00\x61\x00\x73\x00\x68\x00\x20\x00\x39\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\x20\x39\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x1c\x00\x49\x00\x67\x00\x61\x00\x7a\x00\ -\xed\x00\x74\x00\xe1\x00\x73\x00\x20\x00\x73\x00\x7a\x00\xed\x00\ -\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x6e\x61\ -\x70\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\ -\x53\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6d\x00\x6f\x00\x64\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x08\x53\x6e\x61\x70\x20\x6d\x6f\ -\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x4b\x00\x61\x00\x70\x00\ -\x63\x00\x73\x00\x6f\x00\x6c\x00\xf3\x00\x64\x00\xe1\x00\x73\x00\ -\x20\x00\x74\x00\x61\x00\x72\x00\x74\x00\x6f\x00\x6d\x00\xe1\x00\ -\x6e\x00\x79\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\ -\x6e\x61\x70\x20\x72\x61\x6e\x67\x65\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x14\x00\x54\x00\xe1\x00\x72\x00\x67\x00\x79\x00\x6e\x00\xe9\x00\ -\x7a\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x54\ -\x61\x73\x6b\x76\x69\x65\x77\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\x00\ -\x41\x00\x20\x00\x6d\x00\x65\x00\x67\x00\x73\x00\x7a\x00\x6f\x00\ -\x72\x00\xed\x00\x74\x00\xe1\x00\x73\x00\x20\x00\x6d\x00\xf3\x00\ -\x64\x00\x6f\x00\x73\x00\xed\x00\x74\x00\xf3\x00\x20\x00\x62\x00\ -\x69\x00\x6c\x00\x6c\x00\x65\x00\x6e\x00\x74\x00\x79\x01\x71\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x54\x68\x65\x20\x43\x6f\x6e\ -\x73\x74\x72\x61\x69\x6e\x69\x6e\x67\x20\x6d\x6f\x64\x69\x66\x69\ -\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x00\x41\ -\x00\x7a\x00\x20\x00\x61\x00\x6c\x00\x74\x00\x20\x00\x6d\x00\xf3\ -\x00\x64\x00\x6f\x00\x73\x00\xed\x00\x74\x00\xf3\x00\x20\x00\x62\ -\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x6e\x00\x74\x00\x79\x01\x71\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\x20\x61\x6c\ -\x74\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x92\x00\x53\x00\x7a\x00\xed\x00\x6e\x00\x2d\ -\x00\x68\x00\x6f\x00\x7a\x00\x7a\x00\xe1\x00\x72\x00\x65\x00\x6e\ -\x00\x64\x00\x65\x00\x6c\x00\xe9\x00\x73\x00\x69\x00\x20\x00\x66\ -\x00\xe1\x00\x6a\x00\x6c\x00\x2c\x00\x20\x00\x61\x00\x20\x00\x64\ -\x00\x78\x00\x66\x00\x20\x00\x73\x00\x7a\x00\xed\x00\x6e\x00\x65\ -\x00\x6b\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x76\ -\x00\x61\x00\x73\x00\x74\x00\x61\x00\x67\x00\x73\x00\xe1\x00\x67\ -\x00\x62\x00\x61\x00\x20\x00\x76\x00\x61\x00\x6c\x00\xf3\x00\x20\ -\x00\x66\x00\x6f\x00\x72\x00\x64\x00\xed\x00\x74\x00\xe1\x00\x73\ -\x00\xe1\x00\x68\x00\x6f\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x41\x54\x68\x65\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\ -\x69\x6e\x67\x20\x66\x69\x6c\x65\x20\x66\x6f\x72\x20\x74\x72\x61\ -\x6e\x73\x6c\x61\x74\x69\x6e\x67\x20\x64\x78\x66\x20\x63\x6f\x6c\ -\x6f\x72\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\ -\x74\x68\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x80\x00\x41\x00\x7a\x00\ -\x20\x00\x61\x00\x6c\x00\x61\x00\x70\x00\xe9\x00\x72\x00\x74\x00\ -\x65\x00\x6c\x00\x6d\x00\x65\x00\x7a\x00\x65\x00\x74\x00\x74\x00\ -\x20\x00\x73\x00\x61\x00\x62\x00\x6c\x00\x6f\x00\x6e\x00\x2c\x00\ -\x20\x00\x61\x00\x6d\x00\x69\x00\x20\x00\x61\x00\x6c\x00\x61\x00\ -\x70\x00\x6a\x00\xe1\x00\x6e\x00\x20\x00\x6c\x00\xe9\x00\x74\x00\ -\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\x20\x00\x65\x00\x67\x00\ -\x79\x00\x20\x00\xfa\x00\x6a\x00\x20\x00\x72\x00\x61\x00\x6a\x00\ -\x7a\x00\x6c\x00\x61\x00\x70\x00\x6f\x00\x74\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x3d\x54\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\ -\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x20\x74\x6f\x20\x75\x73\x65\ -\x20\x77\x68\x65\x6e\x20\x63\x72\x65\x61\x74\x69\x6e\x67\x20\x61\ -\x20\x6e\x65\x77\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x73\x68\x65\ -\x65\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x96\x00\x41\x00\x20\x00\x62\ -\x00\x65\x00\x6c\x00\x73\x01\x51\x00\x20\x00\x6b\x00\x6f\x00\x6f\ -\x00\x72\x00\x64\x00\x69\x00\x6e\x00\xe1\x00\x74\x00\x61\x00\x20\ -\x00\x6d\x01\x71\x00\x76\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\ -\x00\x6b\x00\x68\x00\x65\x00\x7a\x00\x20\x00\x68\x00\x61\x00\x73\ -\x00\x7a\x00\x6e\x00\xe1\x00\x6c\x00\x74\x00\x20\x00\x74\x00\x69\ -\x00\x7a\x00\x65\x00\x64\x00\x65\x00\x73\x00\x6a\x00\x65\x00\x67\ -\x00\x79\x00\x65\x00\x6b\x00\x20\x00\x73\x00\x7a\x00\xe1\x00\x6d\ -\x00\x61\x00\x20\x00\x28\x00\x70\x00\x6c\x00\x2e\x00\x3a\x00\x20\ -\x00\x33\x00\x3d\x00\x30\x00\x2c\x00\x30\x00\x30\x00\x31\x00\x29\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x54\x68\x65\x20\x6e\x75\ -\x6d\x62\x65\x72\x20\x6f\x66\x20\x64\x65\x63\x69\x6d\x61\x6c\x73\ -\x20\x69\x6e\x20\x69\x6e\x74\x65\x72\x6e\x61\x6c\x20\x63\x6f\x6f\ -\x72\x64\x69\x6e\x61\x74\x65\x73\x20\x6f\x70\x65\x72\x61\x74\x69\ -\x6f\x6e\x73\x20\x28\x66\x6f\x72\x20\x65\x78\x2e\x20\x33\x20\x3d\ -\x20\x30\x2e\x30\x30\x31\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa4\x00\ -\x41\x00\x20\x00\x73\x00\x70\x00\x65\x00\x63\x00\x69\x00\xe1\x00\ -\x6c\x00\x69\x00\x73\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\ -\x6f\x00\x6b\x00\x20\x00\x6b\x00\x61\x00\x63\x00\x73\x00\x6f\x00\ -\x6c\x00\xf3\x00\x64\x00\xe1\x00\x73\x00\x20\x00\x72\x00\xe1\x00\ -\x64\x00\x69\x00\x75\x00\x73\x00\x7a\x00\x61\x00\x2e\x00\x20\x00\ -\xc1\x00\x6c\x00\x6c\x00\xed\x00\x74\x00\x73\x00\x61\x00\x20\x00\ -\x30\x00\x2d\x00\x72\x00\x61\x00\x2c\x00\x20\x00\x68\x00\x61\x00\ -\x20\x00\x6e\x00\x69\x00\x6e\x00\x63\x00\x73\x00\x20\x00\x74\x00\ -\xe1\x00\x76\x00\x6f\x00\x6c\x00\x73\x00\xe1\x00\x67\x00\x20\x00\ -\x28\x00\x76\x00\xe9\x00\x67\x00\x74\x00\x65\x00\x6c\x00\x65\x00\ -\x6e\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4e\x54\x68\x65\ -\x20\x72\x61\x64\x69\x75\x73\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\ -\x70\x69\x6e\x67\x20\x74\x6f\x20\x73\x70\x65\x63\x69\x61\x6c\x20\ -\x70\x6f\x69\x6e\x74\x73\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\x30\ -\x20\x66\x6f\x72\x20\x6e\x6f\x20\x64\x69\x73\x74\x61\x6e\x63\x65\ -\x20\x28\x69\x6e\x66\x69\x6e\x69\x74\x65\x29\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x38\x00\x41\x00\x20\x00\x62\x00\x65\x00\xe9\x00\x70\x00\ -\xfc\x00\x6c\x01\x51\x00\x20\x00\x6d\x00\xf3\x00\x64\x00\x6f\x00\ -\x73\x00\xed\x00\x74\x00\xf3\x00\x20\x00\x62\x00\x69\x00\x6c\x00\ -\x6c\x00\x65\x00\x6e\x00\x74\x00\x79\x01\x71\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x15\x54\x68\x65\x20\x73\x6e\x61\x70\x20\x6d\x6f\ -\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x52\x00\x41\x00\x20\x00\x72\x00\xe1\x00\x63\x00\x73\x00\x20\ -\x00\x76\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x61\x00\x69\x00\x6e\ -\x00\x61\x00\x6b\x00\x20\x00\x65\x00\x67\x00\x79\x00\x6d\x00\xe1\ -\x00\x73\x00\x20\x00\x6b\x00\xf6\x00\x7a\x00\x74\x00\x69\x00\x20\ -\x00\x74\x00\xe1\x00\x76\x00\x6f\x00\x6c\x00\x73\x00\xe1\x00\x67\ -\x00\x61\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x54\x68\ -\x65\x20\x73\x70\x61\x63\x69\x6e\x67\x20\x62\x65\x74\x77\x65\x65\ -\x6e\x20\x65\x61\x63\x68\x20\x67\x72\x69\x64\x20\x6c\x69\x6e\x65\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x01\xda\x00\x45\x00\x7a\x00\x20\x00\x61\ -\x00\x7a\x00\x20\x00\x55\x00\x49\x00\x20\x00\xfc\x00\x7a\x00\x65\ -\x00\x6d\x00\x6d\x00\xf3\x00\x64\x00\x2c\x00\x20\x00\x61\x00\x6d\ -\x00\x65\x00\x6c\x00\x79\x00\x62\x00\x65\x00\x6e\x00\x20\x00\x61\ -\x00\x20\x00\x74\x00\x65\x00\x72\x00\x76\x00\x65\x00\x7a\x00\x65\ -\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x6c\x00\x20\ -\x00\x6d\x01\x71\x00\x6b\x00\xf6\x00\x64\x00\x69\x00\x6b\x00\x3a\ -\x00\x20\x00\x45\x00\x73\x00\x7a\x00\x6b\x00\xf6\x00\x7a\x00\x74\ -\x00\xe1\x00\x72\x00\x20\x00\x6d\x00\xf3\x00\x64\x00\x20\x00\x68\ -\x00\x65\x00\x6c\x00\x79\x00\xe9\x00\x72\x00\x65\x00\x20\x00\x61\ -\x00\x7a\x00\x20\x00\xf6\x00\x73\x00\x73\x00\x7a\x00\x65\x00\x73\ -\x00\x20\x00\x74\x00\x65\x00\x72\x00\x76\x00\x65\x00\x7a\x00\x65\ -\x00\x74\x00\x20\x00\x62\x00\x65\x00\xe1\x00\x6c\x00\x6c\x00\xed\ -\x00\x74\x00\xe1\x00\x73\x00\x6f\x00\x6b\x00\x20\x00\x65\x00\x67\ -\x00\x79\x00\x20\x00\x6b\x00\xfc\x00\x6c\x00\xf6\x00\x6e\x00\x20\ -\x00\x65\x00\x73\x00\x7a\x00\x6b\x00\xf6\x00\x7a\x00\x74\x00\xe1\ -\x00\x72\x00\x62\x00\x61\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x7a\ -\x00\x20\x00\x74\x00\xe9\x00\x76\x00\x65\x00\x2c\x00\x20\x00\x6d\ -\x00\xed\x00\x67\x00\x20\x00\x61\x00\x20\x00\x74\x00\xe1\x00\x6c\ -\x00\x63\x00\x61\x00\x20\x00\x6d\x00\xf3\x00\x64\x00\x6f\x00\x74\ -\x00\x20\x00\x66\x00\x6f\x00\x67\x00\x6a\x00\x61\x00\x20\x00\x68\ -\x00\x61\x00\x73\x00\x7a\x00\x6e\x00\xe1\x00\x6c\x00\x6e\x00\x69\ -\x00\x20\x00\x61\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\ -\x00\x41\x00\x44\x00\x20\x00\x54\x00\xe1\x00\x6c\x00\x63\x00\x61\ -\x00\x6e\x00\xe9\x00\x7a\x00\x65\x00\x74\x00\x20\x00\x72\x00\x65\ -\x00\x6e\x00\x64\x00\x73\x00\x7a\x00\x65\x00\x72\x00\x20\x00\x6d\ -\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x66\x00\x65\ -\x00\x6c\x00\x68\x00\x61\x00\x73\x00\x7a\x00\x6e\x00\xe1\x00\x6c\ -\x00\xf3\x00\x69\x00\x20\x00\x62\x00\x65\x00\x61\x00\x76\x00\x61\ -\x00\x74\x00\x6b\x00\x6f\x00\x7a\x00\xe1\x00\x73\x00\x68\x00\x6f\ -\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\xcf\x54\x68\x69\x73\ -\x20\x69\x73\x20\x74\x68\x65\x20\x55\x49\x20\x6d\x6f\x64\x65\x20\ -\x69\x6e\x20\x77\x68\x69\x63\x68\x20\x74\x68\x65\x20\x44\x72\x61\ -\x66\x74\x20\x6d\x6f\x64\x75\x6c\x65\x20\x77\x69\x6c\x6c\x20\x77\ -\x6f\x72\x6b\x3a\x20\x54\x6f\x6f\x6c\x62\x61\x72\x20\x6d\x6f\x64\ -\x65\x20\x77\x69\x6c\x6c\x20\x70\x6c\x61\x63\x65\x20\x61\x6c\x6c\ -\x20\x44\x72\x61\x66\x74\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x20\ -\x69\x6e\x20\x61\x20\x73\x65\x70\x61\x72\x61\x74\x65\x20\x74\x6f\ -\x6f\x6c\x62\x61\x72\x2c\x20\x77\x68\x69\x6c\x65\x20\x74\x61\x73\ -\x6b\x62\x61\x72\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x75\ -\x73\x65\x20\x74\x68\x65\x20\x46\x72\x65\x65\x43\x41\x44\x20\x54\ -\x61\x73\x6b\x76\x69\x65\x77\x20\x73\x79\x73\x74\x65\x6d\x20\x66\ -\x6f\x72\x20\x61\x6c\x6c\x20\x69\x74\x73\x20\x75\x73\x65\x72\x20\ -\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x78\x00\x45\x00\x7a\x00\x20\x00\x61\x00\x7a\x00\x20\x00\ -\x61\x00\x6c\x00\x61\x00\x70\x00\xe9\x00\x72\x00\x74\x00\x65\x00\ -\x6c\x00\x6d\x00\x65\x00\x7a\x00\x65\x00\x74\x00\x74\x00\x20\x00\ -\x73\x00\x7a\x00\xed\x00\x6e\x00\x65\x00\x20\x00\x61\x00\x20\x00\ -\x74\x00\xe1\x00\x72\x00\x67\x00\x79\x00\x61\x00\x6b\x00\x6e\x00\ -\x61\x00\x6b\x00\x2c\x00\x20\x00\x61\x00\x7a\x00\x20\x00\xe9\x00\ -\x70\x00\xed\x00\x74\x00\xe9\x00\x73\x00\x69\x00\x20\x00\x6d\x00\ -\xf3\x00\x64\x00\x62\x00\x61\x00\x6e\x00\x2e\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x4d\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\ -\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\ -\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\x69\x6e\x67\ -\x20\x64\x72\x61\x77\x6e\x20\x77\x68\x69\x6c\x65\x20\x69\x6e\x20\ -\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x6d\x6f\x64\ -\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x02\x2c\x00\x45\x00\x7a\x00\x20\ -\x00\x61\x00\x7a\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x70\x00\xe9\ -\x00\x72\x00\x74\x00\x65\x00\x6c\x00\x6d\x00\x65\x00\x7a\x00\x65\ -\x00\x74\x00\x74\x00\x20\x00\x62\x00\x65\x00\x74\x01\x71\x00\x74\ -\x00\xed\x00\x70\x00\x75\x00\x73\x00\x20\x00\x6e\x00\xe9\x00\x76\ -\x00\x20\x00\x6d\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x20\ -\x00\x52\x00\x61\x00\x6a\x00\x7a\x00\x20\x00\x73\x00\x7a\x00\xf6\ -\x00\x76\x00\x65\x00\x67\x00\x68\x00\x65\x00\x7a\x00\x20\x00\xe9\ -\x00\x73\x00\x20\x00\x61\x00\x20\x00\x6d\x00\xe9\x00\x72\x00\x65\ -\x00\x74\x00\x68\x00\x65\x00\x7a\x00\x2e\x00\x20\x00\x45\x00\x7a\ -\x00\x20\x00\x6c\x00\x65\x00\x68\x00\x65\x00\x74\x00\x20\x00\x65\ -\x00\x67\x00\x79\x00\x20\x00\x62\x00\x65\x00\x74\x01\x71\x00\x74\ -\x00\xed\x00\x70\x00\x75\x00\x73\x00\x20\x00\x6e\x00\xe9\x00\x76\ -\x00\x2c\x00\x20\x00\x6d\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x61\ -\x00\x20\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x22\ -\x00\x2c\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x70\x00\xe9\x00\x72\ -\x00\x74\x00\x65\x00\x6c\x00\x6d\x00\x65\x00\x7a\x00\x65\x00\x74\ -\x00\x74\x00\x20\x00\x73\x00\x74\x00\xed\x00\x6c\x00\x75\x00\x73\ -\x00\x2c\x00\x20\x00\x6d\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x61\ -\x00\x20\x00\x22\x00\x73\x00\x61\x00\x6e\x00\x73\x00\x22\x00\x2c\ -\x00\x20\x00\x22\x00\x73\x00\x65\x00\x72\x00\x69\x00\x66\x00\x22\ -\x00\x20\x00\x76\x00\x61\x00\x67\x00\x79\x00\x20\x00\x22\x00\x6d\ -\x00\x6f\x00\x6e\x00\x6f\x00\x22\x00\x2c\x00\x20\x00\x76\x00\x61\ -\x00\x67\x00\x79\x00\x20\x00\x61\x00\x20\x00\x63\x00\x73\x00\x61\ -\x00\x6c\x00\xe1\x00\x64\x00\x69\x00\x2c\x00\x20\x00\x6d\x00\x69\ -\x00\x6e\x00\x74\x00\x20\x00\x70\x00\xe9\x00\x6c\x00\x64\x00\xe1\ -\x00\x75\x00\x6c\x00\x20\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\ -\x00\x6c\x00\x2c\x00\x20\x00\x48\x00\x65\x00\x6c\x00\x76\x00\x65\ -\x00\x74\x00\x69\x00\x63\x00\x61\x00\x2c\x00\x20\x00\x73\x00\x61\ -\x00\x6e\x00\x73\x00\x22\x00\x2c\x00\x20\x00\x76\x00\x61\x00\x67\ -\x00\x79\x00\x20\x00\x65\x00\x67\x00\x79\x00\x20\x00\x6e\x00\xe9\ -\x00\x76\x00\x20\x00\x73\x00\x74\x00\xed\x00\x6c\x00\x75\x00\x73\ -\x00\x73\x00\x61\x00\x6c\x00\x2c\x00\x20\x00\x6d\x00\x69\x00\x6e\ -\x00\x74\x00\x20\x00\x61\x00\x20\x00\x22\x00\x20\x00\x41\x00\x72\ -\x00\x69\x00\x61\x00\x6c\x00\x3a\x00\x20\x00\x44\x01\x51\x00\x6c\ -\x00\x74\x00\x20\x00\x22\x08\x00\x00\x00\x00\x06\x00\x00\x00\xf2\ -\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\ -\x75\x6c\x74\x20\x66\x6f\x6e\x74\x20\x6e\x61\x6d\x65\x20\x66\x6f\ -\x72\x20\x61\x6c\x6c\x20\x44\x72\x61\x66\x74\x20\x74\x65\x78\x74\ -\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\ -\x2e\x0a\x49\x74\x20\x63\x61\x6e\x20\x62\x65\x20\x61\x20\x66\x6f\ -\x6e\x74\x20\x6e\x61\x6d\x65\x20\x73\x75\x63\x68\x20\x61\x73\x20\ -\x22\x41\x72\x69\x61\x6c\x22\x2c\x20\x61\x20\x64\x65\x66\x61\x75\ -\x6c\x74\x20\x73\x74\x79\x6c\x65\x20\x73\x75\x63\x68\x20\x61\x73\ -\x20\x22\x73\x61\x6e\x73\x22\x2c\x20\x22\x73\x65\x72\x69\x66\x22\ -\x0a\x6f\x72\x20\x22\x6d\x6f\x6e\x6f\x22\x2c\x20\x6f\x72\x20\x61\ -\x20\x66\x61\x6d\x69\x6c\x79\x20\x73\x75\x63\x68\x20\x61\x73\x20\ -\x22\x41\x72\x69\x61\x6c\x2c\x48\x65\x6c\x76\x65\x74\x69\x63\x61\ -\x2c\x73\x61\x6e\x73\x22\x20\x6f\x72\x20\x61\x20\x6e\x61\x6d\x65\ -\x20\x77\x69\x74\x68\x20\x61\x20\x73\x74\x79\x6c\x65\x0a\x73\x75\ -\x63\x68\x20\x61\x73\x20\x22\x41\x72\x69\x61\x6c\x3a\x42\x6f\x6c\ -\x64\x22\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x74\x00\x45\x00\x7a\x00\x20\ -\x00\x61\x00\x7a\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x70\x00\xe9\ -\x00\x72\x00\x74\x00\x65\x00\x6c\x00\x6d\x00\x65\x00\x7a\x00\x65\ -\x00\x74\x00\x74\x00\x20\x00\x63\x00\x73\x00\x6f\x00\x70\x00\x6f\ -\x00\x72\x00\x74\x00\x2d\x00\x6e\x00\xe9\x00\x76\x00\x2c\x00\x20\ -\x00\x61\x00\x7a\x00\x20\x00\xe9\x00\x70\x00\xed\x00\x74\x00\xe9\ -\x00\x73\x00\x69\x00\x20\x00\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\ -\x00\x74\x00\x72\x00\x69\x00\xe1\x00\x6e\x00\xe1\x00\x6c\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x38\x54\x68\x69\x73\x20\x69\x73\x20\ -\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x67\x72\x6f\x75\ -\x70\x20\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\x63\x6f\x6e\x73\x74\ -\x72\x75\x63\x74\x69\x6f\x6e\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\xa6\x00\x45\x00\x7a\x00\x20\x00\x61\ -\x00\x20\x00\x6d\x00\xf3\x00\x64\x00\x73\x00\x7a\x00\x65\x00\x72\ -\x00\x20\x00\x76\x00\xe1\x00\x6c\x00\x61\x00\x73\x00\x7a\x00\x74\ -\x00\x6f\x00\x74\x00\x74\x00\x2c\x00\x20\x00\x61\x00\x7a\x00\x20\ -\x00\x53\x00\x56\x00\x47\x00\x2d\x00\x6f\x00\x62\x00\x6a\x00\x65\ -\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x20\x00\x73\x00\x7a\x00\xed\ -\x00\x6e\x00\xe9\x00\x6e\x00\x65\x00\x6b\x00\x20\x00\x61\x00\x20\ -\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x2d\ -\x00\x62\x00\x61\x00\x20\x00\x76\x00\x61\x00\x6c\x00\xf3\x00\x20\ -\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\xe1\x00\x6c\ -\x00\xe1\x00\x73\x00\xe1\x00\x68\x00\x6f\x00\x7a\x00\x2e\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x47\x54\x68\x69\x73\x20\x69\x73\x20\ -\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x63\x68\x6f\x6f\x73\ -\x65\x64\x20\x66\x6f\x72\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\ -\x20\x53\x56\x47\x20\x6f\x62\x6a\x65\x63\x74\x20\x63\x6f\x6c\x6f\ -\x72\x20\x69\x6e\x74\x6f\x20\x46\x72\x65\x65\x43\x41\x44\x2e\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x01\xf8\x00\x45\x00\x7a\x00\x20\x00\x61\x00\ -\x20\x00\x6b\x00\x69\x00\x76\x00\xe1\x00\x6c\x00\x61\x00\x73\x00\ -\x7a\x00\x74\x00\x6f\x00\x74\x00\x74\x00\x20\x00\x6d\x00\xf3\x00\ -\x64\x00\x73\x00\x7a\x00\x65\x00\x72\x00\x20\x00\x61\x00\x20\x00\ -\x44\x00\x58\x00\x46\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x6b\x00\x74\x00\x75\x00\x6d\x00\x20\x00\x73\x00\x7a\x00\xed\x00\ -\x6e\x00\xe9\x00\x6e\x00\x65\x00\x6b\x00\x20\x00\x69\x00\x6d\x00\ -\x70\x00\x6f\x00\x72\x00\x74\x00\xe1\x00\x6c\x00\xe1\x00\x73\x00\ -\xe1\x00\x72\x00\x61\x00\x20\x00\x76\x00\x61\x00\x67\x00\x79\x00\ -\x20\x00\x66\x00\x6f\x00\x72\x00\x64\x00\xed\x00\x74\x00\xe1\x00\ -\x73\x00\xe1\x00\x72\x00\x61\x00\x20\x00\x61\x00\x20\x00\x46\x00\ -\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x2d\x00\x62\x00\ -\x65\x00\x2e\x00\x20\x00\x20\x00\x48\x00\x61\x00\x20\x00\x61\x00\ -\x20\x00\x73\x00\x7a\x00\xed\x00\x6e\x00\x20\x00\x68\x00\x6f\x00\ -\x7a\x00\x7a\x00\xe1\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\ -\x6c\x00\xe9\x00\x73\x00\x65\x00\x20\x00\x6b\x00\x69\x00\x76\x00\ -\xe1\x00\x6c\x00\x61\x00\x73\x00\x7a\x00\x74\x00\x6f\x00\x74\x00\ -\x74\x00\x2c\x00\x20\x00\x61\x00\x6b\x00\x6b\x00\x6f\x00\x72\x00\ -\x20\x00\x76\x00\xe1\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x7a\x00\ -\x6f\x00\x6e\x00\x20\x00\x6f\x00\x6c\x00\x79\x00\x61\x00\x6e\x00\ -\x20\x00\x66\x00\x6f\x00\x72\x00\x64\x00\xed\x00\x74\x00\xe1\x00\ -\x73\x00\x69\x00\x20\x00\x74\x00\xe1\x00\x62\x00\x6c\x00\xe1\x00\ -\x74\x00\x20\x00\x74\x00\x61\x00\x72\x00\x74\x00\x61\x00\x6c\x00\ -\x6d\x00\x61\x00\x7a\x00\xf3\x00\x20\x00\x73\x00\x7a\x00\xed\x00\ -\x6e\x00\x20\x00\x74\x00\xe1\x00\x62\x00\x6c\x00\xe1\x00\x74\x00\ -\x2c\x00\x20\x00\x61\x00\x6d\x00\x65\x00\x6c\x00\x79\x00\x20\x00\ -\x61\x00\x20\x00\x73\x00\x7a\x00\xed\x00\x6e\x00\x65\x00\x6b\x00\ -\x20\x00\x6b\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\ -\xe1\x00\x6c\x00\xe1\x00\x73\x00\xe1\x00\x72\x00\x61\x00\x20\x00\ -\x61\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\ -\x76\x00\x61\x00\x73\x00\x74\x00\x61\x00\x67\x00\x73\x00\xe1\x00\ -\x67\x00\x6f\x00\x74\x00\x20\x00\x61\x00\x64\x00\x2e\x00\x20\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\xe3\x54\x68\x69\x73\x20\x69\x73\ -\x20\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x63\x68\x6f\x6f\ -\x73\x65\x64\x20\x66\x6f\x72\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\ -\x67\x20\x6f\x72\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6e\x67\ -\x20\x44\x58\x46\x20\x6f\x62\x6a\x65\x63\x74\x20\x63\x6f\x6c\x6f\ -\x72\x20\x69\x6e\x74\x6f\x20\x46\x72\x65\x65\x43\x41\x44\x2e\x20\ -\x0a\x49\x66\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\ -\x67\x20\x69\x73\x20\x63\x68\x6f\x6f\x73\x65\x64\x2c\x20\x79\x6f\ -\x75\x20\x6d\x75\x73\x74\x20\x63\x68\x6f\x6f\x73\x65\x20\x61\x20\ -\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\ -\x6c\x65\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x61\x20\ -\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6f\x6e\x20\x74\x61\x62\x6c\ -\x65\x20\x74\x68\x61\x74\x20\x77\x69\x6c\x6c\x20\x63\x6f\x6e\x76\ -\x65\x72\x74\x20\x63\x6f\x6c\x6f\x72\x73\x20\x69\x6e\x74\x6f\x20\ -\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x73\x2e\x0a\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\xdc\x00\x45\x00\x7a\x00\x20\x00\x61\x00\x20\x00\x6d\ -\x00\xe9\x00\x72\x00\x65\x00\x74\x00\x65\x00\x7a\x00\xe9\x00\x73\ -\x00\x69\x00\x20\x00\x73\x00\x7a\x00\xf6\x00\x76\x00\x65\x00\x67\ -\x00\x20\x00\x69\x00\x72\x00\xe1\x00\x6e\x00\x79\x00\x75\x00\x6c\ -\x00\x74\x00\x73\x00\xe1\x00\x67\x00\x61\x00\x20\x00\x61\x00\x6d\ -\x00\x69\x00\x6b\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x7a\x00\x65\ -\x00\x6b\x00\x20\x00\x69\x00\x72\x00\xe1\x00\x6e\x00\x79\x00\x61\ -\x00\x20\x00\x66\x00\xfc\x00\x67\x00\x67\x01\x51\x00\x6c\x00\x65\ -\x00\x67\x00\x65\x00\x73\x00\x2e\x00\x20\x00\x41\x00\x6c\x00\x61\ -\x00\x70\x00\xe9\x00\x72\x00\x74\x00\x65\x00\x6c\x00\x6d\x00\x65\ -\x00\x7a\x00\x65\x00\x74\x00\x74\x00\x20\x00\x61\x00\x20\x00\x62\ -\x00\x61\x00\x6c\x00\x2c\x00\x20\x00\x61\x00\x6d\x00\x69\x00\x20\ -\x00\x61\x00\x7a\x00\x20\x00\x49\x00\x53\x00\x4f\x00\x2d\x00\x73\ -\x00\x7a\x00\x61\x00\x62\x00\x76\x00\xe1\x00\x6e\x00\x79\x00\x2e\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7e\x54\x68\x69\x73\x20\x69\ -\x73\x20\x74\x68\x65\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\ -\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x64\x69\x6d\x65\x6e\x73\x69\ -\x6f\x6e\x20\x74\x65\x78\x74\x73\x20\x77\x68\x65\x6e\x20\x74\x68\ -\x6f\x73\x65\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x61\ -\x72\x65\x20\x76\x65\x72\x74\x69\x63\x61\x6c\x2e\x20\x44\x65\x66\ -\x61\x75\x6c\x74\x20\x69\x73\x20\x6c\x65\x66\x74\x2c\x20\x77\x68\ -\x69\x63\x68\x20\x69\x73\x20\x74\x68\x65\x20\x49\x53\x4f\x20\x73\ -\x74\x61\x6e\x64\x61\x72\x64\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xe2\ -\x00\x45\x00\x7a\x00\x20\x00\x61\x00\x7a\x00\x20\x00\xe9\x00\x72\ -\x00\x74\x00\xe9\x00\x6b\x00\x20\x00\x61\x00\x20\x00\x74\x01\x71\ -\x00\x72\x00\xe9\x00\x73\x00\x68\x00\x61\x00\x74\x00\xe1\x00\x72\ -\x00\x74\x00\x20\x00\x68\x00\x61\x00\x73\x00\x7a\x00\x6e\x00\xe1\ -\x00\x6c\x00\xf3\x00\x20\x00\x66\x00\x75\x00\x6e\x00\x6b\x00\x63\ -\x00\x69\x00\xf3\x00\x6b\x00\x20\x00\xe1\x00\x6c\x00\x74\x00\x61\ -\x00\x6c\x00\x20\x00\x68\x00\x61\x00\x73\x00\x7a\x00\x6e\x00\xe1\ -\x00\x6c\x00\x74\x00\x2e\x00\x20\x00\x45\x00\x7a\x00\x65\x00\x6e\ -\x00\x20\x00\xe9\x00\x72\x00\x74\x00\xe9\x00\x6b\x00\x20\x00\x61\ -\x00\x6c\x00\x61\x00\x74\x00\x74\x00\x69\x00\x20\x00\xe9\x00\x72\ -\x00\x74\x00\xe9\x00\x6b\x00\x65\x00\x6b\x00\x65\x00\x74\x00\x20\ -\x00\x61\x00\x7a\x00\x6f\x00\x6e\x00\x6f\x00\x73\x00\x6e\x00\x61\ -\x00\x6b\x00\x20\x00\x6b\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\x74\ -\x00\x65\x00\x6b\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x6e\x00\x69\ -\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7b\x54\x68\x69\x73\ -\x20\x69\x73\x20\x74\x68\x65\x20\x76\x61\x6c\x75\x65\x20\x75\x73\ -\x65\x64\x20\x62\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\ -\x74\x68\x61\x74\x20\x75\x73\x65\x20\x61\x20\x74\x6f\x6c\x65\x72\ -\x61\x6e\x63\x65\x2e\x0a\x56\x61\x6c\x75\x65\x73\x20\x77\x69\x74\ -\x68\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x63\x65\x73\x20\x62\x65\ -\x6c\x6f\x77\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x77\ -\x69\x6c\x6c\x20\x62\x65\x20\x74\x72\x65\x61\x74\x65\x64\x20\x61\ -\x73\x20\x73\x61\x6d\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\ -\x54\x01\x71\x00\x72\x00\xe9\x00\x73\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x09\x54\x6f\x6c\x65\x72\x61\x6e\x63\x65\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x12\x00\x45\x00\x73\x00\x7a\x00\x6b\x00\xf6\x00\x7a\ -\x00\x74\x00\xe1\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ -\x54\x6f\x6f\x6c\x62\x61\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4e\x00\ -\x41\x00\x6c\x00\x61\x00\x70\x00\xe9\x00\x72\x00\x74\x00\x65\x00\ -\x6c\x00\x6d\x00\x65\x00\x7a\x00\x65\x00\x74\x00\x74\x00\x20\x00\ -\x73\x00\x7a\x00\xed\x00\x6e\x00\x20\x00\xe9\x00\x73\x00\x20\x00\ -\x76\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x76\x00\x61\x00\ -\x73\x00\x74\x00\x61\x00\x67\x00\x73\x00\xe1\x00\x67\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x1f\x55\x73\x65\x20\x64\x65\x66\x61\x75\ -\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\ -\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x52\ -\x00\xe1\x00\x63\x00\x73\x00\x20\x00\x68\x00\x61\x00\x73\x00\x7a\ -\x00\x6e\x00\xe1\x00\x6c\x00\x61\x00\x74\x00\x61\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x08\x55\x73\x65\x20\x67\x72\x69\x64\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x52\x00\x46\x00\xfc\x00\x67\x00\x67\x01\x51\ -\x00\x6c\x00\x65\x00\x67\x00\x65\x00\x73\x00\x20\x00\x6d\x00\xe9\ -\x00\x72\x00\x65\x00\x74\x00\x65\x00\x7a\x00\xe9\x00\x73\x00\x69\ -\x00\x20\x00\x73\x00\x7a\x00\xf6\x00\x76\x00\x65\x00\x67\x00\x20\ -\x00\x69\x00\x72\x00\xe1\x00\x6e\x00\x79\x00\x75\x00\x6c\x00\x74\ -\x00\x73\x00\xe1\x00\x67\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x24\x56\x65\x72\x74\x69\x63\x61\x6c\x20\x64\x69\x6d\x65\x6e\ -\x73\x69\x6f\x6e\x73\x20\x74\x65\x78\x74\x20\x6f\x72\x69\x65\x6e\ -\x74\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x9e\x00\x48\ -\x00\x61\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x20\ -\x00\x73\x00\x7a\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x73\ -\x00\x65\x00\x6b\x00\x65\x00\x74\x00\x20\x00\x65\x00\x78\x00\x70\ -\x00\x6f\x00\x72\x00\x74\x00\xe1\x00\x6c\x00\x20\x00\x44\x00\x58\ -\x00\x46\x00\x2d\x00\x62\x00\x65\x00\x2c\x00\x20\x00\xe1\x00\x74\ -\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x7a\x00\x6e\x00\x65\x00\x6b\ -\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x6b\x00\xed\x00\x74\x00\x76\ -\x00\x61\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x20\ -\x00\x6c\x00\xe1\x00\x6e\x00\x63\x00\x6f\x00\x6b\x00\x6b\x00\xe1\ -\x00\x2e\x00\x20\x00\x45\x00\x7a\x00\x20\x00\x61\x00\x7a\x00\x20\ -\x00\xe9\x00\x72\x00\x74\x00\xe9\x00\x6b\x00\x20\x00\x61\x00\x7a\ -\x00\x20\x00\x65\x00\x67\x00\x79\x00\x65\x00\x73\x00\x20\x00\x20\ -\x00\x76\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x6c\x00\xe1\x00\x6e\ -\x00\x63\x00\x20\x00\x73\x00\x7a\x00\x65\x00\x67\x00\x6d\x00\x65\ -\x00\x6e\x00\x73\x00\x65\x00\x6b\x00\x20\x00\x20\x00\x6d\x00\x61\ -\x00\x78\x00\x69\x00\x6d\x00\xe1\x00\x6c\x00\x69\x00\x73\x00\x20\ -\x00\x68\x00\x6f\x00\x73\x00\x73\x00\x7a\x00\xe1\x00\x74\x00\x20\ -\x00\x61\x00\x64\x00\x6a\x00\x61\x00\x20\x00\x6d\x00\x65\x00\x67\ -\x00\x2e\x00\x20\x00\x48\x00\x61\x00\x20\x00\x30\x00\x2c\x00\x20\ -\x00\x61\x00\x6b\x00\x6b\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x20\ -\x00\x74\x00\x65\x00\x6c\x00\x6a\x00\x65\x00\x73\x00\x20\x00\x76\ -\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x73\x00\x7a\x00\x65\ -\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x74\x00\x20\x00\x65\ -\x00\x67\x00\x79\x00\x20\x00\x65\x00\x67\x00\x79\x00\x65\x00\x6e\ -\x00\x65\x00\x73\x00\x6b\x00\xe9\x00\x6e\x00\x74\x00\x20\x00\x6b\ -\x00\x65\x00\x7a\x00\x65\x00\x6c\x00\x69\x00\x2e\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\xc2\x57\x68\x65\x6e\x20\x65\x78\x70\x6f\x72\ -\x74\x69\x6e\x67\x20\x73\x70\x6c\x69\x6e\x65\x73\x20\x74\x6f\x20\ -\x44\x58\x46\x2c\x20\x74\x68\x65\x79\x20\x61\x72\x65\x20\x74\x72\ -\x61\x6e\x73\x66\x6f\x72\x6d\x65\x64\x20\x69\x6e\x20\x70\x6f\x6c\ -\x79\x6c\x69\x6e\x65\x73\x2e\x20\x54\x68\x69\x73\x20\x76\x61\x6c\ -\x75\x65\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\ -\x6d\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x65\x61\x63\x68\ -\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\ -\x20\x73\x65\x67\x6d\x65\x6e\x74\x73\x2e\x20\x49\x66\x20\x30\x2c\ -\x20\x74\x68\x65\x6e\x20\x74\x68\x65\x20\x77\x68\x6f\x6c\x65\x20\ -\x73\x70\x6c\x69\x6e\x65\x20\x69\x73\x20\x74\x72\x65\x61\x74\x65\ -\x64\x20\x61\x73\x20\x61\x20\x73\x74\x72\x61\x69\x67\x68\x74\x20\ -\x73\x65\x67\x6d\x65\x6e\x74\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\ -\x00\x58\x00\x59\x00\x20\x00\x28\x00\x46\x00\x65\x00\x6c\x00\xfc\ -\x00\x6c\x00\x20\x00\x6e\x00\xe9\x00\x7a\x00\x65\x00\x74\x00\x29\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x58\x59\x20\x28\x54\x6f\ -\x70\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x58\x00\x5a\x00\x20\ -\x00\x28\x00\x45\x00\x6c\x00\xf6\x00\x6c\x00\x20\x00\x6e\x00\xe9\ -\x00\x7a\x00\x65\x00\x74\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0a\x58\x5a\x20\x28\x46\x72\x6f\x6e\x74\x29\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x20\x00\x59\x00\x5a\x00\x20\x00\x28\x00\x4f\x00\x6c\ -\x00\x64\x00\x61\x00\x6c\x00\x20\x00\x6e\x00\xe9\x00\x7a\x00\x65\ -\x00\x74\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x59\x5a\ -\x20\x28\x53\x69\x64\x65\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\x00\ -\x61\x00\x6c\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x61\ -\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\xb6\x00\x4a\x00\x65\x00\x6c\ -\x00\xf6\x00\x6c\x00\x6a\x00\x65\x00\x20\x00\x62\x00\x65\x00\x2c\ -\x00\x20\x00\x68\x00\x61\x00\x20\x00\x61\x00\x7a\x00\x20\x00\x65\ -\x00\x73\x00\x7a\x00\x6b\x00\xf6\x00\x7a\x00\x74\x00\xe1\x00\x72\ -\x00\x72\x00\xf3\x00\x6c\x00\x20\x00\x73\x00\x7a\x00\x65\x00\x72\ -\x00\x65\x00\x74\x00\x6e\x00\xe9\x00\x20\x00\x68\x00\x61\x00\x73\ -\x00\x7a\x00\x6e\x00\xe1\x00\x6c\x00\x6e\x00\x69\x00\x20\x00\x61\ -\x00\x7a\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x70\x00\xe9\x00\x72\ -\x00\x74\x00\x65\x00\x6c\x00\x6d\x00\x65\x00\x7a\x00\x65\x00\x74\ -\x00\x74\x00\x20\x00\x73\x00\x7a\x00\xed\x00\x6e\x00\x74\x00\x2f\ -\x00\x76\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x76\x00\x61\x00\x73\ -\x00\x74\x00\x61\x00\x67\x00\x73\x00\xe1\x00\x67\x00\x6f\x00\x74\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x63\x68\x65\x63\x6b\x20\ -\x74\x68\x69\x73\x20\x69\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\ -\x20\x74\x6f\x20\x75\x73\x65\x20\x74\x68\x65\x20\x63\x6f\x6c\x6f\ -\x72\x2f\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\x66\x72\x6f\x6d\ -\x20\x74\x68\x65\x20\x74\x6f\x6f\x6c\x62\x61\x72\x20\x61\x73\x20\ -\x64\x65\x66\x61\x75\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x00\ -\x63\x00\x74\x00\x72\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x04\x63\x74\x72\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x14\x00\x68\x00\ -\x61\x00\x20\x00\x65\x00\x7a\x00\x20\x00\x62\x00\x65\x00\x20\x00\ -\x76\x00\x61\x00\x6e\x00\x20\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\ -\x6c\x00\x76\x00\x65\x00\x2c\x00\x20\x00\x74\x00\xe1\x00\x72\x00\ -\x67\x00\x79\x00\x61\x00\x6b\x00\x61\x00\x74\x00\x20\x00\x61\x00\ -\x7a\x00\x6f\x00\x6e\x00\x6f\x00\x73\x00\x20\x00\x72\x00\xe9\x00\ -\x74\x00\x65\x00\x67\x00\x65\x00\x6b\x00\x62\x01\x51\x00\x6c\x00\ -\x20\x00\xf6\x00\x73\x00\x73\x00\x7a\x00\x65\x00\x20\x00\x6c\x00\ -\x65\x00\x73\x00\x7a\x00\x6e\x00\x65\x00\x6b\x00\x20\x00\x6b\x00\ -\xf6\x00\x74\x00\x76\x00\x65\x00\x20\x00\x76\x00\xe1\x00\x7a\x00\ -\x6c\x00\x61\x00\x74\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x6b\x00\ -\x6b\x00\xe1\x00\x2c\x00\x20\x00\x67\x00\x79\x00\x6f\x00\x72\x00\ -\x73\x00\x61\x00\x62\x00\x62\x00\x20\x00\x6b\x00\x69\x00\x6a\x00\ -\x65\x00\x6c\x00\x7a\x00\xe9\x00\x73\x00\x68\x00\x65\x00\x7a\x00\ -\x2c\x00\x20\x00\x64\x00\x65\x00\x20\x00\xed\x00\x67\x00\x79\x00\ -\x20\x00\x6e\x00\x65\x00\x68\x00\x65\x00\x7a\x00\x65\x00\x62\x00\ -\x62\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x7a\x00\x65\x00\x72\x00\ -\x6b\x00\x65\x00\x73\x00\x7a\x00\x74\x00\x68\x00\x65\x00\x74\x01\ -\x51\x08\x00\x00\x00\x00\x06\x00\x00\x00\x93\x69\x66\x20\x74\x68\ -\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\ -\x62\x6a\x65\x63\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\ -\x73\x61\x6d\x65\x20\x6c\x61\x79\x65\x72\x73\x20\x77\x69\x6c\x6c\ -\x20\x62\x65\x20\x6a\x6f\x69\x6e\x65\x64\x20\x69\x6e\x74\x6f\x20\ -\x44\x72\x61\x66\x74\x20\x42\x6c\x6f\x63\x6b\x73\x2c\x20\x74\x75\ -\x72\x6e\x69\x6e\x67\x20\x74\x68\x65\x20\x64\x69\x73\x70\x6c\x61\ -\x79\x20\x66\x61\x73\x74\x65\x72\x2c\x20\x62\x75\x74\x20\x6d\x61\ -\x6b\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\x6c\x65\x73\x73\x20\x65\ -\x61\x73\x69\x6c\x79\x20\x65\x64\x69\x74\x61\x62\x6c\x65\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x92\x00\x48\x00\x61\x00\x20\x00\x65\x00\x7a\ -\x00\x20\x00\x62\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\ -\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x76\x00\x65\x00\x2c\ -\x00\x20\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x70\x00\x6f\x00\x6b\ -\x00\x20\x00\x68\x00\x65\x00\x6c\x00\x79\x00\x65\x00\x74\x00\x74\ -\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\ -\x00\x6d\x00\x6f\x00\x6b\x00\x20\x00\x69\x00\x73\x00\x20\x00\x69\ -\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\xe1\x00\x6c\x00\xe1\ -\x00\x73\x00\x72\x00\x61\x00\x20\x00\x6b\x00\x65\x00\x72\x00\xfc\ -\x00\x6c\x00\x6e\x00\x65\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x3c\x69\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\ -\x63\x6b\x65\x64\x2c\x20\x70\x61\x70\x65\x72\x20\x73\x70\x61\x63\ -\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\ -\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x88\x00\x68\x00\x61\x00\x20\x00\x65\x00\x7a\ -\x00\x20\x00\x6e\x00\x69\x00\x6e\x00\x63\x00\x73\x00\x20\x00\x62\ -\x00\x65\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x76\x00\x65\ -\x00\x2c\x00\x20\x00\x73\x00\x7a\x00\xf6\x00\x76\x00\x65\x00\x67\ -\x00\x65\x00\x6b\x00\x2f\x00\xf6\x00\x73\x00\x73\x00\x7a\x00\x65\ -\x00\x74\x00\x65\x00\x74\x00\x74\x00\x20\x00\x73\x00\x7a\x00\xf6\ -\x00\x76\x00\x65\x00\x67\x00\x65\x00\x6b\x00\x20\x00\x6e\x00\x65\ -\x00\x6d\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\ -\x00\xe1\x00\x6c\x00\x68\x00\x61\x00\x74\x00\xf3\x00\x6b\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x34\x69\x66\x20\x74\x68\x69\x73\x20\ -\x69\x73\x20\x75\x6e\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x65\ -\x78\x74\x73\x2f\x6d\x74\x65\x78\x74\x73\x20\x77\x6f\x6e\x27\x74\ -\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x04\x00\x70\x00\x78\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x02\x70\x78\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x73\x00\x68\ -\x00\x69\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ -\x73\x68\x69\x66\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\xda\x00\ -\x6a\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ -\x75\x00\x6d\x00\x6f\x00\x6b\x00\x20\x00\x61\x00\x6c\x00\x61\x00\ -\x70\x00\xe9\x00\x72\x00\x74\x00\x65\x00\x6c\x00\x6d\x00\x65\x00\ -\x7a\x00\x65\x00\x74\x00\x74\x00\x20\x00\x73\x00\x7a\x00\xed\x00\ -\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x74\x68\x65\ -\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\ -\x6f\x72\x20\x6e\x65\x77\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x3e\x00\x41\x00\x20\x00\x63\x00\x73\x00\x61\ -\x00\x74\x00\x6f\x00\x6c\x00\xe1\x00\x73\x00\x20\x00\x73\x00\x7a\ -\x00\x69\x00\x6d\x00\x62\x00\xf3\x00\x6c\x00\x75\x00\x6d\x00\x20\ -\x00\x61\x00\x6c\x00\x61\x00\x70\x00\x20\x00\x73\x00\x7a\x00\xed\ -\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x74\x68\ -\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\ -\x66\x6f\x72\x20\x73\x6e\x61\x70\x20\x73\x79\x6d\x62\x6f\x6c\x73\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x64\x00\x41\x00\x6c\x00\x61\x00\x70\ -\x00\xe9\x00\x72\x00\x74\x00\x65\x00\x6c\x00\x6d\x00\x65\x00\x7a\ -\x00\x65\x00\x74\x00\x74\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x61\ -\x00\x6c\x00\x76\x00\x61\x00\x73\x00\x74\x00\x61\x00\x67\x00\x73\ -\x00\xe1\x00\x67\x00\x20\x00\x61\x00\x7a\x00\x20\x00\xfa\x00\x6a\ -\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\ -\x00\x6d\x00\x6f\x00\x6b\x00\x6e\x00\xe1\x00\x6c\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x25\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\ -\x74\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\x66\x6f\x72\x20\ -\x6e\x65\x77\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x0c\x00\x24\x00\x42\x00\x65\x00\x7a\x00\xe1\x00\x72\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x06\x26\x43\x6c\x6f\x73\x65\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\ -\x26\x00\x46\x00\x6f\x00\x6c\x00\x79\x00\x74\x00\x61\x00\x74\x00\ -\xe1\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\x43\x6f\ -\x6e\x74\x69\x6e\x75\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x0c\x00\x26\x00\x4d\x00\xe1\x00\x73\x00\x6f\ -\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x43\x6f\x70\ -\x79\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x12\x00\x42\x00\x65\x00\x66\x00\x65\x00\x6a\x00\x65\x00\x7a\x00\ -\xe9\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x26\x46\x69\ -\x6e\x69\x73\x68\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x32\x00\x26\x00\x61\x00\x6d\x00\x70\x00\x3b\x00\x20\ -\x00\x4f\x00\x43\x00\x43\x00\x2d\x00\x73\x00\x74\x00\xed\x00\x6c\ -\x00\x75\x00\x73\x00\xfa\x00\x20\x00\x65\x00\x6c\x00\x74\x00\x6f\ -\x00\x6c\x00\xe1\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\ -\x26\x4f\x43\x43\x2d\x73\x74\x79\x6c\x65\x20\x6f\x66\x66\x73\x65\ -\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x10\x00\x24\x00\x52\x00\x65\x00\x6c\x00\x61\x00\x74\x00\xed\x00\ -\x76\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\x52\x65\x6c\x61\ -\x74\x69\x76\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x14\x00\x24\x00\x56\x00\x69\x00\x73\x00\x73\x00\x7a\ -\x00\x61\x00\x76\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x05\x26\x55\x6e\x64\x6f\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x10\x00\x26\x00\x54\x00\x69\x00\x73\x00\ -\x7a\x00\x74\x00\xed\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x05\x26\x57\x69\x70\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x2e\x00\x41\x00\x6b\x00\x74\x00\xed\x00\x76\ -\x00\x20\x00\x74\x00\x65\x00\x72\x00\x76\x00\x65\x00\x7a\x00\xe9\ -\x00\x73\x00\x69\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6e\ -\x00\x63\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x41\x63\ -\x74\x69\x76\x65\x20\x44\x72\x61\x66\x74\x20\x63\x6f\x6d\x6d\x61\ -\x6e\x64\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x8e\x00\x41\x00\x6b\x00\x74\x00\xed\x00\x76\x00\x20\x00\x6f\ -\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x6e\ -\x00\x61\x00\x6b\x00\x20\x00\x6b\x00\x65\x00\x74\x00\x74\x01\x51\ -\x00\x6e\x00\xe9\x00\x6c\x00\x20\x00\x74\x00\xf6\x00\x62\x00\x62\ -\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x74\x00\x2c\ -\x00\x20\x00\x63\x00\x73\x00\x6f\x00\x6d\x00\xf3\x00\x70\x00\x6f\ -\x00\x6e\x00\x74\x00\x6f\x00\x74\x00\x20\x00\x6b\x00\x65\x00\x6c\ -\x00\x6c\x00\x20\x00\x74\x00\x61\x00\x72\x00\x74\x00\x61\x00\x6c\ -\x00\x6d\x00\x61\x00\x7a\x00\x6e\x00\x69\x00\x61\x00\x2e\x00\x20\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x41\x63\x74\x69\x76\x65\ -\x20\x6f\x62\x6a\x65\x63\x74\x20\x6d\x75\x73\x74\x20\x68\x61\x76\ -\x65\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\x74\x77\x6f\x20\ -\x70\x6f\x69\x6e\x74\x73\x2f\x6e\x6f\x64\x65\x73\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x50\x00\ -\x6f\x00\x6e\x00\x74\x00\x6f\x00\x74\x00\x20\x00\x61\x00\x64\x00\ -\x20\x00\x61\x00\x7a\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x75\x00\ -\xe1\x00\x6c\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x68\x00\x6f\x00\x7a\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x20\x41\x64\x64\x20\x70\x6f\x69\ -\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\ -\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x41\x00\x70\x00\x65\x00\ -\x72\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x08\x41\x70\x65\x72\x74\x75\x72\x65\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x4e\x00\x79\x00\ -\xed\x00\x6c\x00\xe1\x00\x73\x00\x20\x00\x73\x00\x7a\x00\xf6\x00\ -\x67\x00\x65\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x41\ -\x70\x65\x72\x74\x75\x72\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\x00\ -\x41\x00\x6c\x00\x6b\x00\x61\x00\x6c\x00\x6d\x00\x61\x00\x7a\x00\ -\xe1\x00\x73\x00\x20\x00\x61\x00\x20\x00\x6b\x00\x69\x00\x6a\x00\ -\x65\x00\x6c\x00\xf6\x00\x6c\x00\x74\x00\x20\x00\x6f\x00\x62\x00\ -\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x6b\x00\ -\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x41\x70\x70\ -\x6c\x79\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ -\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x04\x00\xcd\x00\x76\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x03\x41\x72\x63\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x50\x00\x45\x00\x7a\x00\x74\x00\x20\x00\ -\x61\x00\x7a\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ -\x74\x00\x75\x00\x6d\x00\x20\x00\x74\x00\xed\x00\x70\x00\x75\x00\ -\x73\x00\x74\x00\x20\x00\x6e\x00\x65\x00\x6d\x00\x20\x00\x6b\x00\ -\xe9\x00\x70\x00\x65\x00\x73\x00\x20\x00\x65\x00\x6c\x00\x74\x00\ -\x6f\x00\x6c\x00\x6e\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x1f\x43\x61\x6e\x6e\x6f\x74\x20\x6f\x66\x66\x73\x65\x74\x20\x74\ -\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x0a\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\ -\x00\x4b\x00\xf6\x00\x7a\x00\xe9\x00\x70\x00\x20\x00\x58\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x08\x43\x65\x6e\x74\x65\x72\x20\x58\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\ -\x00\x53\x00\x74\x00\xed\x00\x6c\x00\x75\x00\x73\x00\x20\x00\x76\ -\x00\xe1\x00\x6c\x00\x74\x00\xe1\x00\x73\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0c\x43\x68\x61\x6e\x67\x65\x20\x53\x74\x79\x6c\x65\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\xbc\ -\x00\x4a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x6a\x00\x65\x00\x20\ -\x00\x62\x00\x65\x00\x20\x00\x65\x00\x7a\x00\x74\x00\x2c\x00\x20\ -\x00\x68\x00\x61\x00\x20\x00\x61\x00\x20\x00\x74\x00\xe1\x00\x72\ -\x00\x67\x00\x79\x00\x61\x00\x74\x00\x20\x00\x6b\x00\x69\x00\x74\ -\x00\xf6\x00\x6c\x00\x74\x00\x76\x00\x65\x00\x20\x00\x73\x00\x7a\ -\x00\x65\x00\x72\x00\x65\x00\x74\x00\x6e\x00\xe9\x00\x20\x00\x6d\ -\x00\x65\x00\x67\x00\x6a\x00\x65\x00\x6c\x00\x65\x00\x6e\x00\xed\ -\x00\x74\x00\x65\x00\x6e\x00\x69\x00\x2c\x00\x20\x00\x6b\x00\xfc\ -\x00\x6c\x00\xf6\x00\x6e\x00\x62\x00\x65\x00\x6e\x00\x20\x00\x64\ -\x00\x72\x00\xf3\x00\x74\x00\x76\x00\xe1\x00\x7a\x00\x20\x00\x28\ -\x00\x46\x00\x29\x00\x20\x00\x6a\x00\x65\x00\x6c\x00\x65\x00\x6e\ -\x00\x69\x00\x6b\x00\x20\x00\x6d\x00\x65\x00\x67\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x5b\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\ -\x20\x69\x66\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x73\ -\x68\x6f\x75\x6c\x64\x20\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\ -\x66\x69\x6c\x6c\x65\x64\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\x73\ -\x65\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\ -\x20\x61\x73\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\x28\x69\ -\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x06\x00\x4b\x00\xf6\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x06\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x7a\x00\x45\x00\x6c\x01\x51\x00\x7a\x01\ -\x51\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x68\x00\x6f\x00\ -\x7a\x00\x20\x00\x76\x00\x69\x00\x73\x00\x7a\x00\x6f\x00\x6e\x00\ -\x79\x00\xed\x00\x74\x00\x6f\x00\x74\x00\x74\x00\x20\x00\x76\x00\ -\x61\x00\x67\x00\x79\x00\x20\x00\x61\x00\x62\x00\x73\x00\x7a\x00\ -\x6f\x00\x6c\x00\xfa\x00\x74\x00\x20\x00\x6b\x00\x6f\x00\x6f\x00\ -\x72\x00\x64\x00\x69\x00\x6e\x00\xe1\x00\x74\x00\xe1\x00\x6b\x00\ -\x20\x00\x28\x00\x53\x00\x5a\x00\xd3\x00\x4b\x00\xd6\x00\x5a\x00\ -\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x36\x43\x6f\x6f\x72\x64\ -\x69\x6e\x61\x74\x65\x73\x20\x72\x65\x6c\x61\x74\x69\x76\x65\x20\ -\x74\x6f\x20\x6c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x6f\x72\ -\x20\x61\x62\x73\x6f\x6c\x75\x74\x65\x20\x28\x53\x50\x41\x43\x45\ -\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x0e\x00\x4d\x00\xe1\x00\x73\x00\x6f\x00\x6c\x00\xe1\x00\x73\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x04\x43\x6f\x70\x79\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\xcd\x00\ -\x76\x00\x20\x00\x6c\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\ -\x6f\x00\x7a\x00\xe1\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0a\x43\x72\x65\x61\x74\x65\x20\x41\x72\x63\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x42\x00\ -\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x6c\x00\ -\xe9\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\xe1\x00\ -\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x43\x72\x65\ -\x61\x74\x65\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x4b\x00\xf6\x00\ -\x72\x00\x20\x00\x72\x00\x61\x00\x6a\x00\x7a\x00\x6f\x00\x6c\x00\ -\xe1\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\ -\x72\x65\x61\x74\x65\x20\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x4d\x00\xe9\ -\x00\x72\x00\x65\x00\x74\x00\x65\x00\x6b\x00\x20\x00\x6c\x00\xe9\ -\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\xe1\x00\x73\ -\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\ -\x74\x65\x20\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x50\x00\x6f\ -\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x20\x00\x6c\x00\xe9\ -\x00\x74\x00\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\xe1\x00\x73\ -\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x43\x72\x65\x61\ -\x74\x65\x20\x50\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\x54\x00\xe9\x00\x67\ -\x00\x6c\x00\x61\x00\x6c\x00\x61\x00\x70\x00\x20\x00\x72\x00\x61\ -\x00\x6a\x00\x7a\x00\x6f\x00\x6c\x00\xe1\x00\x73\x00\x61\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\x74\x65\x20\x52\ -\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x24\x00\x53\x00\x7a\x00\xf6\x00\x76\ -\x00\x65\x00\x67\x00\x20\x00\x6c\x00\xe9\x00\x74\x00\x72\x00\x65\ -\x00\x68\x00\x6f\x00\x7a\x00\xe1\x00\x73\x00\x61\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x54\x65\x78\ -\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x2a\x00\x52\x00\xe1\x00\x63\x00\x73\x00\x76\x00\x6f\x00\x6e\x00\ -\x61\x00\x6c\x00\x20\x00\x6c\x00\xe9\x00\x74\x00\x72\x00\x65\x00\ -\x68\x00\x6f\x00\x7a\x00\xe1\x00\x73\x00\x61\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x57\x69\x72\x65\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\ -\x00\x4d\x00\xe9\x00\x72\x00\x65\x00\x74\x00\x65\x00\x6b\x00\x20\ -\x00\x74\x00\xf6\x00\x72\x00\x6c\x00\xe9\x00\x73\x00\x65\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x12\x44\x65\x6c\x65\x74\x65\x20\x4d\ -\x65\x61\x73\x75\x72\x65\x6d\x65\x6e\x74\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x44\x00\x69\x00\x73\ -\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x20\x00\x6f\x00\x70\x00\x74\ -\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0f\x44\x69\x73\x70\x6c\x61\x79\x20\x6f\x70\x74\x69\x6f\x6e\ -\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x10\x00\x54\x00\xe1\x00\x76\x00\x6f\x00\x6c\x00\x73\x00\xe1\x00\ -\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\ -\x6e\x63\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x3a\x00\x4e\x00\x65\x00\x20\x00\x76\x00\x65\x00\x74\x00\ -\xed\x00\x74\x00\x73\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\ -\x6f\x00\x74\x00\x20\x00\x61\x00\x20\x00\x52\x00\x61\x00\x6a\x00\ -\x7a\x00\x20\x00\x73\x00\xed\x00\x6b\x00\x72\x00\x61\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x28\x44\x6f\x20\x6e\x6f\x74\x20\x70\x72\ -\x6f\x6a\x65\x63\x74\x20\x70\x6f\x69\x6e\x74\x73\x20\x74\x6f\x20\ -\x61\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\ -\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x05\x44\x72\x61\x66\x74\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x16\x00\x44\x00\x72\x00\x61\x00\x66\ -\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x20\x74\x6f\ -\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x32\x00\xc9\x00\x6c\x00\x65\x00\x6b\x00\x20\x00\x6e\x00\ -\x65\x00\x6d\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x73\x00\x7a\x00\ -\x69\x00\x6b\x00\x20\x00\x65\x00\x67\x00\x79\x00\x6d\x00\xe1\x00\ -\x73\x00\x74\x00\x21\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x45\ -\x64\x67\x65\x73\x20\x64\x6f\x6e\x27\x74\x20\x69\x6e\x74\x65\x72\ -\x73\x65\x63\x74\x21\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x16\x00\x53\x00\x7a\x00\x65\x00\x72\x00\x6b\ -\x00\x65\x00\x73\x00\x7a\x00\x74\x00\xe9\x00\x73\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x4b\x00\x69\x00\x74\ -\x00\xf6\x00\x6c\x00\x74\x00\xe9\x00\x73\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x07\x46\x26\x69\x6c\x6c\x65\x64\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x46\x00\x65\x00\ -\x6c\x00\xfc\x00\x6c\x00\x65\x00\x74\x00\x20\x00\x73\x00\x7a\x00\ -\xed\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x46\x61\x63\ -\x65\x20\x43\x6f\x6c\x6f\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x40\x00\x56\x00\x6f\x00\x6e\x00\x61\x00\ -\x6c\x00\x20\x00\x62\x00\x65\x00\x66\x00\x65\x00\x6a\x00\x65\x00\ -\x7a\x00\xe9\x00\x73\x00\x65\x00\x20\x00\xe9\x00\x73\x00\x20\x00\ -\x6c\x00\x65\x00\x7a\x00\xe1\x00\x72\x00\xe1\x00\x73\x00\x61\x00\ -\x20\x00\x28\x00\x43\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x28\x46\x69\x6e\x69\x73\x68\x65\x73\x20\x61\x6e\x64\x20\x63\x6c\ -\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\ -\x20\x6c\x69\x6e\x65\x20\x28\x43\x29\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x6e\x00\x42\x00\x65\x00\x66\x00\ -\x65\x00\x6a\x00\x65\x00\x7a\x00\x69\x00\x20\x00\x61\x00\x7a\x00\ -\x20\x00\x61\x00\x6b\x00\x74\x00\x75\x00\xe1\x00\x6c\x00\x69\x00\ -\x73\x00\x20\x00\x72\x00\x61\x00\x6a\x00\x7a\x00\x20\x00\x76\x00\ -\x61\x00\x67\x00\x79\x00\x20\x00\x73\x00\x7a\x00\x65\x00\x72\x00\ -\x6b\x00\x65\x00\x73\x00\x7a\x00\x74\x00\xe9\x00\x73\x00\x69\x00\ -\x20\x00\x6d\x01\x71\x00\x76\x00\x65\x00\x6c\x00\x65\x00\x74\x00\ -\x20\x00\x28\x00\x46\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x35\x46\x69\x6e\x69\x73\x68\x65\x73\x20\x74\x68\x65\x20\x63\x75\ -\x72\x72\x65\x6e\x74\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x6f\x72\ -\x20\x65\x64\x69\x74\x69\x6e\x67\x20\x6f\x70\x65\x72\x61\x74\x69\ -\x6f\x6e\x20\x28\x46\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x12\x00\x42\x00\x65\x00\x74\x01\x71\x00\x6d\ -\x00\xe9\x00\x72\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x09\x46\x6f\x6e\x74\x20\x53\x69\x7a\x65\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x60\x00\x31\x00\x20\x00\ -\x7a\x00\xe1\x00\x72\x00\x74\x00\x20\x00\x76\x00\xe1\x00\x7a\x00\ -\x6c\x00\x61\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ -\x6b\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x74\x00\x20\x00\x74\x00\ -\x61\x00\x6c\x00\xe1\x00\x6c\x00\x74\x00\x3a\x00\x20\x00\x66\x00\ -\x65\x00\x6c\x00\xfc\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x74\x00\ -\x20\x00\x6b\x00\xe9\x00\x70\x00\x65\x00\x7a\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x34\x46\x6f\x75\x6e\x64\x20\x31\x20\x63\x6c\x6f\ -\x73\x65\x64\x20\x73\x6b\x65\x74\x63\x68\x20\x6f\x62\x6a\x65\x63\ -\x74\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x66\x61\x63\x65\ -\x20\x66\x72\x6f\x6d\x20\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x50\x00\x54\x00\x61\x00\x6c\x00\ -\xe1\x00\x6c\x00\x74\x00\x75\x00\x6e\x00\x6b\x00\x20\x00\x31\x00\ -\x20\x00\x66\x00\x65\x00\x6c\x00\xfc\x00\x6c\x00\x65\x00\x74\x00\ -\x65\x00\x74\x00\x3a\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x61\x00\ -\x6c\x00\x61\x00\x6b\x00\x72\x00\x61\x00\x20\x00\x62\x00\x6f\x00\ -\x6e\x00\x74\x00\x6a\x00\x75\x00\x6b\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x23\x46\x6f\x75\x6e\x64\x20\x31\x20\x66\x61\x63\x65\x3a\ -\x20\x65\x78\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x69\x74\x73\x20\ -\x77\x69\x72\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x72\x00\x54\x00\x61\x00\x6c\x00\xe1\x00\x6c\ -\x00\x74\x00\x75\x00\x6e\x00\x6b\x00\x20\x00\x31\x00\x20\x00\x6e\ -\x00\x65\x00\x6d\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\ -\x00\x65\x00\x74\x00\x72\x00\x69\x00\x6b\x00\x75\x00\x73\x00\x20\ -\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\ -\x00\x6f\x00\x6b\x00\x3a\x00\x20\x00\x76\x00\xe1\x00\x7a\x00\x72\ -\x00\x61\x00\x6a\x00\x7a\x00\x7a\x00\xe1\x00\x20\x00\x61\x00\x6c\ -\x00\x61\x00\x6b\x00\xed\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x2f\x46\x6f\x75\x6e\x64\x20\x31\x20\x6e\x6f\x6e\x2d\x70\x61\ -\x72\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x3a\x20\x64\x72\x61\x66\x74\x69\x66\x79\x69\x6e\x67\x20\x69\x74\ -\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x42\x00\x31\x00\x20\x00\x6e\x00\x79\x00\xed\x00\x6c\x00\x74\x00\ -\x20\x00\x73\x00\x7a\x00\x61\x00\x6b\x00\x61\x00\x73\x00\x7a\x00\ -\x74\x00\x20\x00\x74\x00\x61\x00\x6c\x00\xe1\x00\x6c\x00\x74\x00\ -\x3a\x00\x20\x00\x42\x00\x65\x00\x7a\x00\xe1\x00\x72\x00\x6a\x00\ -\x61\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x46\x6f\x75\ -\x6e\x64\x20\x31\x20\x6f\x70\x65\x6e\x20\x77\x69\x72\x65\x3a\x20\ -\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x78\x00\x54\x00\x61\x00\ -\x6c\x00\xe1\x00\x6c\x00\x74\x00\x75\x00\x6e\x00\x6b\x00\x20\x00\ -\x31\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\ -\x74\x00\x72\x00\x69\x00\x6b\x00\x75\x00\x73\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\ -\x74\x00\x3a\x00\x20\x00\x66\x00\xfc\x00\x67\x00\x67\x01\x51\x00\ -\x73\x00\xe9\x00\x67\x00\x65\x00\x6b\x00\x65\x00\x74\x00\x20\x00\ -\x66\x00\x65\x00\x6c\x00\x6f\x00\x73\x00\x7a\x00\x74\x00\x6a\x00\ -\x75\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x46\x6f\x75\ -\x6e\x64\x20\x31\x20\x70\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\ -\x6f\x62\x6a\x65\x63\x74\x3a\x20\x62\x72\x65\x61\x6b\x69\x6e\x67\ -\x20\x69\x74\x73\x20\x64\x65\x70\x65\x6e\x64\x65\x6e\x63\x69\x65\ -\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x90\x00\x54\x00\x61\x00\x6c\x00\xe1\x00\x6c\x00\x74\x00\x75\ -\x00\x6e\x00\x6b\x00\x20\x00\x31\x00\x20\x00\x6b\x00\x69\x00\x61\ -\x00\x6c\x00\x61\x00\x6b\x00\xed\x00\x74\x00\x68\x00\x61\x00\x74\ -\x00\xf3\x00\x20\x00\x66\x00\x65\x00\x6c\x00\xfc\x00\x6c\x00\x65\ -\x00\x74\x00\x65\x00\x74\x00\x3a\x00\x20\x00\x6d\x00\x65\x00\x67\ -\x00\x73\x00\x7a\x00\x69\x00\x6c\x00\xe1\x00\x72\x00\x64\x00\xed\ -\x00\x74\x00\x6a\x00\x75\x00\x6b\x00\x2c\x00\x20\x00\x66\x00\x65\ -\x00\x6c\x00\xfc\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x74\x00\x20\ -\x00\x6b\x00\xe9\x00\x70\x00\x65\x00\x7a\x00\xfc\x00\x6e\x00\x6b\ -\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x46\x6f\x75\x6e\ -\x64\x20\x31\x20\x73\x6f\x6c\x69\x64\x69\x66\x69\x63\x61\x62\x6c\ -\x65\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x73\x6f\x6c\x69\x64\x69\ -\x66\x79\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x40\x00\x32\x00\x20\x00\x4f\x00\ -\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x20\x00\ -\x74\x00\x61\x00\x6c\x00\xe1\x00\x6c\x00\x68\x00\x61\x00\x74\x00\ -\xf3\x00\x3a\x00\x20\x00\xf6\x00\x73\x00\x73\x00\x7a\x00\x65\x00\ -\x76\x00\x6f\x00\x6e\x00\xe1\x00\x73\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x1d\x46\x6f\x75\x6e\x64\x20\x32\x20\x6f\x62\x6a\x65\x63\ -\x74\x73\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\ -\x00\x4b\x00\xe9\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ -\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x20\x00\x74\x00\x61\x00\x6c\ -\x00\xe1\x00\x6c\x00\x61\x00\x74\x00\x3a\x00\x20\x00\x6b\x00\x69\ -\x00\x76\x00\x6f\x00\x6e\x00\xe1\x00\x73\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x22\x46\x6f\x75\x6e\x64\x20\x32\x20\x6f\x62\x6a\x65\ -\x63\x74\x73\x3a\x20\x73\x75\x62\x74\x72\x61\x63\x74\x69\x6e\x67\ -\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x4c\x00\x5a\x00\xe1\x00\x72\x00\x74\x00\x20\ -\x00\x76\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x61\x00\x6b\x00\x61\ -\x00\x74\x00\x20\x00\x74\x00\x61\x00\x6c\x00\xe1\x00\x6c\x00\x74\ -\x00\x3a\x00\x20\x00\x66\x00\x65\x00\x6c\x00\xfc\x00\x6c\x00\x65\ -\x00\x74\x00\x65\x00\x74\x00\x20\x00\x6b\x00\xe9\x00\x70\x00\x65\ -\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x46\x6f\x75\x6e\ -\x64\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x73\x3a\x20\ -\x6d\x61\x6b\x69\x6e\x67\x20\x66\x61\x63\x65\x73\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x76\x00\x43\x00\ -\x73\x00\x6f\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x6f\x00\x6b\x00\ -\x61\x00\x74\x00\x20\x00\x74\x00\x61\x00\x6c\x00\xe1\x00\x6c\x00\ -\x74\x00\x3a\x00\x20\x00\x6d\x00\x69\x00\x6e\x00\x64\x00\x65\x00\ -\x6e\x00\x20\x00\x62\x00\x65\x00\x6c\x00\x73\x01\x51\x00\x20\x00\ -\x6e\x00\x79\x00\x69\x00\x74\x00\x6f\x00\x74\x00\x74\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\ -\x20\x00\x62\x00\x65\x00\x7a\x00\xe1\x00\x72\x00\xe1\x00\x73\x00\ -\x61\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x46\x6f\x75\ -\x6e\x64\x20\x67\x72\x6f\x75\x70\x73\x3a\x20\x63\x6c\x6f\x73\x69\ -\x6e\x67\x20\x65\x61\x63\x68\x20\x6f\x70\x65\x6e\x20\x6f\x62\x6a\ -\x65\x63\x74\x20\x69\x6e\x73\x69\x64\x65\x0a\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x68\x00\x32\x00\x20\x00\ -\x67\x00\xf6\x00\x72\x00\x62\x00\xe9\x00\x74\x00\x20\x00\x74\x00\ -\x61\x00\x72\x00\x74\x00\x61\x00\x6c\x00\x6d\x00\x61\x00\x7a\x00\ -\xf3\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ -\x75\x00\x6d\x00\x6f\x00\x6b\x00\x20\x00\x74\x00\x61\x00\x6c\x00\ -\xe1\x00\x6c\x00\x74\x00\x3a\x00\x20\x00\x65\x00\x67\x00\x79\x00\ -\x62\x00\x65\x00\x6f\x00\x6c\x00\x76\x00\x61\x00\x73\x00\x7a\x00\ -\x74\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x46\x6f\x75\ -\x6e\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x63\x6f\x6e\x74\x61\ -\x69\x6e\x69\x6e\x67\x20\x63\x75\x72\x76\x65\x73\x3a\x20\x66\x75\ -\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x52\x00\x43\x00\x73\x00\x61\ -\x00\x6b\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x61\ -\x00\x6b\x00\x20\x00\x74\x00\x61\x00\x6c\x00\xe1\x00\x6c\x00\x68\ -\x00\x61\x00\x74\x00\xf3\x00\x6b\x00\x3a\x00\x20\x00\xe9\x00\x6c\ -\x00\x65\x00\x69\x00\x6b\x00\x20\x00\x6b\x00\x69\x00\x62\x00\x6f\ -\x00\x6e\x00\x74\x00\xe1\x00\x73\x00\x61\x00\x20\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x29\x46\x6f\x75\x6e\x64\x20\x6f\x6e\x6c\x79\ -\x20\x77\x69\x72\x65\x73\x3a\x20\x65\x78\x74\x72\x61\x63\x74\x69\ -\x6e\x67\x20\x74\x68\x65\x69\x72\x20\x65\x64\x67\x65\x73\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\ -\x54\x00\xf6\x00\x62\x00\x62\x00\x20\x00\xe9\x00\x6c\x00\x74\x00\ -\x20\x00\x74\x00\x61\x00\x6c\x00\xe1\x00\x6c\x00\x74\x00\x3a\x00\ -\x20\x00\xf6\x00\x73\x00\x73\x00\x7a\x00\x65\x00\x6b\x00\xf6\x00\ -\x74\x00\x69\x00\x20\x01\x51\x00\x6b\x00\x65\x00\x74\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x21\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\ -\x65\x72\x61\x6c\x20\x65\x64\x67\x65\x73\x3a\x20\x77\x69\x72\x69\ -\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x54\x00\xf6\x00\x62\x00\x62\ -\x00\x20\x00\x66\x00\x65\x00\x6c\x00\xfc\x00\x6c\x00\x65\x00\x74\ -\x00\x20\x00\x74\x00\x61\x00\x6c\x00\xe1\x00\x6c\x00\x61\x00\x74\ -\x00\x3a\x00\x20\x00\x66\x00\x65\x00\x6c\x00\x6f\x00\x73\x00\x7a\ -\x00\x74\x00\xe1\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\ -\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x66\x61\ -\x63\x65\x73\x3a\x20\x73\x70\x6c\x69\x74\x74\x69\x6e\x67\x20\x74\ -\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x6e\x00\x54\x00\x61\x00\x6c\x00\xe1\x00\x6c\x00\x74\ -\x00\x20\x00\x74\x00\xf6\x00\x62\x00\x62\x00\x2c\x00\x20\x00\x6e\ -\x00\x65\x00\x6d\x00\x20\x00\xf6\x00\x73\x00\x73\x00\x7a\x00\x65\ -\x00\x66\x00\xfc\x00\x67\x00\x67\x01\x51\x00\x20\x00\xe9\x00\x6c\ -\x00\x65\x00\x74\x00\x3a\x00\x20\x00\xf6\x00\x73\x00\x73\x00\x7a\ -\x00\x65\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x73\x00\x7a\x00\x74\ -\x00\xe9\x00\x73\x00\x74\x00\x20\x00\x76\x00\xe9\x00\x67\x00\x65\ -\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x46\x6f\x75\x6e\ -\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6e\x6f\x6e\x2d\x63\x6f\ -\x6e\x6e\x65\x63\x74\x65\x64\x20\x65\x64\x67\x65\x73\x3a\x20\x6d\ -\x61\x6b\x69\x6e\x67\x20\x63\x6f\x6d\x70\x6f\x75\x6e\x64\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6e\x00\ -\x54\x00\xf6\x00\x62\x00\x62\x00\x20\x00\x6e\x00\x65\x00\x6d\x00\ -\x20\x00\x6b\x00\x65\x00\x7a\x00\x65\x00\x6c\x00\x68\x00\x65\x00\ -\x74\x01\x51\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ -\x74\x00\x75\x00\x6d\x00\x6f\x00\x6b\x00\x20\x00\x74\x00\x61\x00\ -\x6c\x00\xe1\x00\x6c\x00\x68\x00\x61\x00\x74\x00\xf3\x00\x3a\x00\ -\x20\x00\xf6\x00\x73\x00\x73\x00\x7a\x00\x65\x00\x72\x00\x65\x00\ -\x6e\x00\x64\x00\x65\x00\x7a\x00\xe9\x00\x73\x00\x20\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x35\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\ -\x65\x72\x61\x6c\x20\x6e\x6f\x6e\x2d\x74\x72\x65\x61\x74\x61\x62\ -\x6c\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x6d\x61\x6b\x69\ -\x6e\x67\x20\x63\x6f\x6d\x70\x6f\x75\x6e\x64\x0a\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x82\x00\x54\x00\xf6\ -\x00\x62\x00\x62\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ -\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x74\x00\x2c\x00\x20\x00\x66\ -\x00\x65\x00\x6c\x00\xfc\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x74\ -\x00\x20\x00\x74\x00\x61\x00\x6c\x00\xe1\x00\x6c\x00\x74\x00\x3a\ -\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\ -\x00\x72\x00\x75\x00\x6b\x00\x75\x00\x73\x00\x20\x00\x66\x00\x65\ -\x00\x6c\x00\xfc\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x74\x00\x20\ -\x00\x6b\x00\xe9\x00\x73\x00\x7a\x00\xed\x00\x74\x00\x20\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x39\x46\x6f\x75\x6e\x64\x20\x73\x65\ -\x76\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x6f\x72\ -\x20\x66\x61\x63\x65\x73\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\ -\x20\x70\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\x66\x61\x63\x65\ -\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x58\x00\x54\x00\x61\x00\x6c\x00\xe1\x00\x6c\x00\x74\x00\x20\x00\ -\x74\x00\xf6\x00\x62\x00\x62\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x74\x00\x3a\x00\ -\x20\x00\xf6\x00\x73\x00\x73\x00\x7a\x00\x65\x00\x6f\x00\x6c\x00\ -\x76\x00\x61\x00\x73\x00\x7a\x00\x74\x00\x6a\x00\x61\x00\x20\x01\ -\x51\x00\x6b\x00\x65\x00\x74\x00\x20\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x23\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\ -\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x66\x75\x73\x69\x6e\x67\ -\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x52\x00\x54\x00\xf6\x00\x62\x00\x62\x00\x20\ -\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\ -\x00\x20\x00\x74\x00\x61\x00\x6c\x00\xe1\x00\x6c\x00\x61\x00\x74\ -\x00\x3a\x00\x20\x00\x6b\x00\x69\x00\x76\x00\x6f\x00\x6e\x00\x6a\ -\x00\x61\x00\x20\x00\x61\x00\x7a\x00\x20\x00\x65\x00\x6c\x00\x73\ -\x01\x51\x00\x62\x01\x51\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x3b\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\ -\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x73\x75\x62\x74\x72\x61\x63\ -\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\x66\x72\x6f\x6d\x20\x74\ -\x68\x65\x20\x66\x69\x72\x73\x74\x20\x6f\x6e\x65\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa4\x00\x48\x00\ -\x61\x00\x20\x00\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\ -\x6c\x00\x74\x00\x2c\x00\x20\x00\x65\x00\x67\x00\x79\x00\x20\x00\ -\x4f\x00\x43\x00\x43\x00\x2d\x00\x73\x00\x74\x00\xed\x00\x6c\x00\ -\x75\x00\x73\x00\xfa\x00\x20\x00\x65\x00\x6c\x00\x74\x00\x6f\x00\ -\x6c\x00\xe1\x00\x73\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x7a\x00\ -\x20\x00\x76\x00\xe9\x00\x67\x00\x72\x00\x65\x00\x68\x00\x61\x00\ -\x6a\x00\x74\x00\x76\x00\x61\x00\x20\x00\x61\x00\x20\x00\x6b\x00\ -\x6c\x00\x61\x00\x73\x00\x73\x00\x7a\x00\x69\x00\x6b\x00\x75\x00\ -\x73\x00\x20\x00\x65\x00\x6c\x00\x74\x00\x6f\x00\x6c\x00\xe1\x00\ -\x73\x00\x20\x00\x68\x00\x65\x00\x6c\x00\x79\x00\x65\x00\x74\x00\ -\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x49\x66\x20\x63\x68\ -\x65\x63\x6b\x65\x64\x2c\x20\x61\x6e\x20\x4f\x43\x43\x2d\x73\x74\ -\x79\x6c\x65\x20\x6f\x66\x66\x73\x65\x74\x20\x77\x69\x6c\x6c\x20\ -\x62\x65\x20\x70\x65\x72\x66\x6f\x72\x6d\x65\x64\x20\x69\x6e\x73\ -\x74\x65\x61\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x63\x6c\x61\x73\ -\x73\x69\x63\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\xb0\x00\x48\x00\x61\x00\x20\ -\x00\x62\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x6a\ -\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x76\x00\x65\x00\x2c\x00\x20\ -\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6e\x00\x63\ -\x00\x73\x00\x20\x00\x6e\x00\x65\x00\x6d\x00\x20\x00\x66\x00\x65\ -\x00\x6a\x00\x65\x00\x7a\x01\x51\x00\x64\x00\x69\x00\x6b\x00\x20\ -\x00\x62\x00\x65\x00\x2c\x00\x20\x00\x61\x00\x6d\x00\xed\x00\x67\ -\x00\x20\x00\xfa\x00\x6a\x00\x72\x00\x61\x00\x20\x00\x6d\x00\x65\ -\x00\x67\x00\x20\x00\x6e\x00\x65\x00\x6d\x00\x20\x00\x6e\x00\x79\ -\x00\x6f\x00\x6d\x00\x6a\x00\x61\x00\x20\x00\x61\x00\x20\x00\x70\ -\x00\x61\x00\x72\x00\x61\x00\x6e\x00\x63\x00\x73\x00\x20\x00\x67\ -\x00\x6f\x00\x6d\x00\x62\x00\x6f\x00\x74\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x4c\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\ -\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x77\x69\x6c\x6c\x20\x6e\x6f\x74\ -\x20\x66\x69\x6e\x69\x73\x68\x20\x75\x6e\x74\x69\x6c\x20\x79\x6f\ -\x75\x20\x70\x72\x65\x73\x73\x20\x74\x68\x65\x20\x63\x6f\x6d\x6d\ -\x61\x6e\x64\x20\x62\x75\x74\x74\x6f\x6e\x20\x61\x67\x61\x69\x6e\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x7c\ -\x00\x42\x00\x65\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x76\ -\x00\x65\x00\x20\x00\x61\x00\x7a\x00\x20\x00\x6f\x00\x62\x00\x6a\ -\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x6b\x00\x20\ -\x00\x6d\x00\xe1\x00\x73\x00\x6f\x00\x6c\x00\xe1\x00\x73\x00\xe1\ -\x00\x74\x00\x20\x00\x65\x00\x72\x00\x65\x00\x64\x00\x6d\x00\xe9\ -\x00\x6e\x00\x79\x00\x65\x00\x7a\x00\x69\x00\x20\x00\x6d\x00\x6f\ -\x00\x7a\x00\x67\x00\x61\x00\x74\x00\xe1\x00\x73\x00\x20\x00\x68\ -\x00\x65\x00\x6c\x00\x79\x00\x65\x00\x74\x00\x74\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x37\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\ -\x2c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\ -\x65\x20\x63\x6f\x70\x69\x65\x64\x20\x69\x6e\x73\x74\x65\x61\x64\ -\x20\x6f\x66\x20\x6d\x6f\x76\x65\x64\x20\x28\x43\x29\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x49\x00\ -\x6e\x00\x73\x00\x74\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x64\x00\ -\x20\x00\x4d\x00\x61\x00\x63\x00\x72\x00\x6f\x00\x73\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x10\x49\x6e\x73\x74\x61\x6c\x6c\x65\x64\ -\x20\x4d\x61\x63\x72\x6f\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x2e\x00\x55\x00\x74\x00\x6f\x00\x6c\x00\ -\x73\x00\xf3\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\ -\x65\x00\x6c\x00\x74\x00\xe1\x00\x76\x00\x6f\x00\x6c\x00\xed\x00\ -\x74\x00\x76\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x4c\ -\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x68\x61\x73\x20\x62\x65\ -\x65\x6e\x20\x72\x65\x6d\x6f\x76\x65\x64\x0a\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x56\x00\x6f\x00\ -\x6e\x00\x61\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4c\ -\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x16\x00\x56\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\ -\x73\x00\x7a\x00\xed\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0a\x4c\x69\x6e\x65\x20\x43\x6f\x6c\x6f\x72\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x56\x00\ -\x6f\x00\x6e\x00\x61\x00\x6c\x00\x76\x00\x61\x00\x73\x00\x74\x00\ -\x61\x00\x67\x00\x73\x00\xe1\x00\x67\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0a\x4c\x69\x6e\x65\x20\x57\x69\x64\x74\x68\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x4d\x00\ -\x6f\x00\x7a\x00\x67\x00\x61\x00\x74\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x04\x4d\x6f\x76\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x12\x00\x45\x00\x67\x00\x79\x00\x69\x00\ -\x6b\x00\x20\x00\x73\x00\x65\x00\x6d\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x1a\x00\x4f\x00\x6c\x00\x64\x00\x61\x00\ -\x6c\x00\x61\x00\x6b\x00\x20\x00\x73\x00\x7a\x00\xe1\x00\x6d\x00\ -\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4e\x75\x6d\x62\x65\ -\x72\x20\x6f\x66\x20\x73\x69\x64\x65\x73\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x45\x00\x6c\x00\x74\ -\x00\x6f\x00\x6c\x00\xe1\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x62\x00\x41\x00\x7a\x00\x20\x00\x65\ -\x00\x6c\x00\x74\x00\x6f\x00\x6c\x00\xe1\x00\x73\x00\x68\x00\x6f\ -\x00\x7a\x00\x20\x00\x63\x00\x73\x00\x61\x00\x6b\x00\x20\x00\x65\ -\x00\x67\x00\x79\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ -\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x74\x00\x20\x00\x6c\x00\x65\ -\x00\x68\x00\x65\x00\x74\x00\x20\x00\x6b\x00\x69\x00\x6a\x00\x65\ -\x00\x6c\x00\xf6\x00\x6c\x00\x6e\x00\x69\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x2a\x4f\x66\x66\x73\x65\x74\x20\x6f\x6e\x6c\x79\x20\ -\x77\x6f\x72\x6b\x73\x20\x6f\x6e\x20\x6f\x6e\x65\x20\x6f\x62\x6a\ -\x65\x63\x74\x20\x61\x74\x20\x61\x20\x74\x69\x6d\x65\x0a\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x4f\ -\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x20\ -\x00\x6b\x00\x69\x00\x76\x00\xe1\x00\x6c\x00\x61\x00\x73\x00\x7a\ -\x00\x74\x00\xe1\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ -\x50\x69\x63\x6b\x20\x4f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x64\x00\x46\x00\x65\x00\ -\x6c\x00\xfc\x00\x6c\x00\x65\x00\x74\x00\x20\x00\x6d\x00\x65\x00\ -\x67\x00\x61\x00\x64\x00\xe1\x00\x73\x00\x61\x00\x2c\x00\x20\x00\ -\x61\x00\x6d\x00\x65\x00\x6c\x00\x79\x00\x20\x00\x6d\x00\x65\x00\ -\x67\x00\x68\x00\x61\x00\x74\x00\xe1\x00\x72\x00\x6f\x00\x7a\x00\ -\x7a\x00\x61\x00\x20\x00\x61\x00\x20\x00\x72\x00\x61\x00\x6a\x00\ -\x7a\x00\x20\x00\x73\x00\xed\x00\x6b\x00\x6a\x00\xe1\x00\x74\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x28\x50\x69\x63\x6b\x20\x61\x20\ -\x66\x61\x63\x65\x20\x74\x6f\x20\x64\x65\x66\x69\x6e\x65\x20\x74\ -\x68\x65\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\ -\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x26\x00\x4e\x00\x79\x00\xed\x00\x6c\x00\xe1\x00\x73\x00\x20\x00\ -\x6b\x00\x69\x00\x76\x00\xe1\x00\x6c\x00\x61\x00\x73\x00\x7a\x00\ -\x74\x00\xe1\x00\x73\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0f\x50\x69\x63\x6b\x20\x61\x70\x65\x72\x74\x75\x72\x65\x3a\x0a\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\ -\x00\x41\x00\x6c\x00\x61\x00\x70\x00\x20\x00\x73\x00\x7a\x00\xf6\ -\x00\x67\x00\x20\x00\x6d\x00\x65\x00\x67\x00\x61\x00\x64\x00\xe1\ -\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\ -\x63\x6b\x20\x62\x61\x73\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\ -\x42\x00\xe1\x00\x7a\x00\x69\x00\x73\x00\x20\x00\x70\x00\x6f\x00\ -\x6e\x00\x74\x00\x20\x00\x6b\x00\x69\x00\x76\x00\xe1\x00\x6c\x00\ -\x61\x00\x73\x00\x7a\x00\x74\x00\xe1\x00\x73\x00\x61\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\x62\x61\x73\x65\ -\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x4b\x00\xf6\x00\x7a\x00\xe9\ -\x00\x70\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x6b\x00\x69\ -\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\xe9\x00\x73\x00\x65\ -\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x50\x69\x63\x6b\ -\x20\x63\x65\x6e\x74\x65\x72\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\ -\x41\x00\x64\x00\x6a\x00\x61\x00\x20\x00\x6d\x00\x65\x00\x67\x00\ -\x20\x00\x61\x00\x20\x00\x74\x00\xe1\x00\x76\x00\x6f\x00\x6c\x00\ -\x73\x00\xe1\x00\x67\x00\x6f\x00\x74\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0f\x50\x69\x63\x6b\x20\x64\x69\x73\x74\x61\x6e\x63\x65\ -\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x22\x00\x56\x00\xe9\x00\x67\x00\x70\x00\x6f\x00\x6e\x00\x74\ -\x00\x20\x00\x6d\x00\x65\x00\x67\x00\x61\x00\x64\x00\xe1\x00\x73\ -\x00\x61\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x50\x69\ -\x63\x6b\x20\x65\x6e\x64\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x00\x56\ -\x00\xe1\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x7a\x00\x61\x00\x20\ -\x00\x6b\x00\x69\x00\x20\x00\x61\x00\x7a\x00\x20\x00\x65\x00\x6c\ -\x00\x73\x01\x51\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x6f\ -\x00\x74\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\ -\x50\x69\x63\x6b\x20\x66\x69\x72\x73\x74\x20\x70\x6f\x69\x6e\x74\ -\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x2c\x00\x48\x00\x65\x00\x6c\x00\x79\x00\x7a\x00\x65\x00\x74\ -\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x6d\x00\x65\ -\x00\x67\x00\x61\x00\x64\x00\xe1\x00\x73\x00\x61\x00\x3a\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x6c\x6f\x63\ -\x61\x74\x69\x6f\x6e\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x7c\x00\x4b\x00\ -\xf6\x00\x76\x00\x65\x00\x74\x00\x6b\x00\x65\x00\x7a\x01\x51\x00\ -\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x6b\x00\x69\x00\ -\x76\x00\xe1\x00\x6c\x00\x61\x00\x73\x00\x7a\x00\x74\x00\xe1\x00\ -\x73\x00\x61\x00\x2c\x00\x20\x00\x76\x00\x61\x00\x67\x00\x79\x00\ -\x20\x00\x28\x00\x46\x00\x29\x00\x20\x00\x62\x00\x65\x00\x66\x00\ -\x65\x00\x6a\x00\x65\x00\x7a\x00\x2c\x00\x20\x00\x76\x00\x61\x00\ -\x67\x00\x79\x00\x20\x00\x28\x00\x43\x00\x29\x00\x20\x00\x6c\x00\ -\x65\x00\x7a\x00\xe1\x00\x72\x00\x3a\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x29\x50\x69\x63\x6b\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\ -\x6e\x74\x2c\x20\x6f\x72\x20\x28\x46\x29\x69\x6e\x69\x73\x68\x20\ -\x6f\x72\x20\x28\x43\x29\x6c\x6f\x73\x65\x3a\x0a\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x00\x4b\x00\xf6\ -\x00\x76\x00\x65\x00\x74\x00\x6b\x00\x65\x00\x7a\x01\x51\x00\x20\ -\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x6b\x00\x69\x00\x76\ -\x00\xe1\x00\x6c\x00\x61\x00\x73\x00\x7a\x00\x74\x00\xe1\x00\x73\ -\x00\x61\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\ -\x63\x6b\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x00\ -\x45\x00\x6c\x00\x6c\x00\x65\x00\x6e\x00\x6b\x00\x65\x00\x7a\x01\ -\x51\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x74\x00\ -\x20\x00\x6b\x00\x69\x00\x76\x00\xe1\x00\x6c\x00\x61\x00\x73\x00\ -\x7a\x00\x74\x00\xe1\x00\x73\x00\x61\x00\x3a\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x6f\x70\x70\x6f\x73\x69\ -\x74\x65\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x53\x00\x75\x00\x67\ -\x00\xe1\x00\x72\x00\x20\x00\x6d\x00\x65\x00\x67\x00\x61\x00\x64\ -\x00\xe1\x00\x73\x00\x61\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0d\x50\x69\x63\x6b\x20\x72\x61\x64\x69\x75\x73\x3a\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\ -\x41\x00\x64\x00\x6a\x00\x61\x00\x20\x00\x6d\x00\x65\x00\x67\x00\ -\x20\x00\x61\x00\x7a\x00\x20\x00\x45\x00\x6c\x00\x66\x00\x6f\x00\ -\x72\x00\x67\x00\x61\x00\x74\x00\xe1\x00\x73\x00\x20\x00\x73\x00\ -\x7a\x00\xf6\x00\x67\x00\xe9\x00\x74\x00\x3a\x00\x20\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x72\x6f\x74\x61\ -\x74\x69\x6f\x6e\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x68\x00\x56\x00\xe1\ -\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x7a\x00\x61\x00\x20\x00\x6b\ -\x00\x69\x00\x20\x00\x61\x00\x7a\x00\x20\x00\x65\x00\x6c\x00\x66\ -\x00\x6f\x00\x72\x00\x67\x00\x61\x00\x74\x00\xe1\x00\x73\x00\x20\ -\x00\x6b\x00\xf6\x00\x7a\x00\xe9\x00\x70\x00\x70\x00\x6f\x00\x6e\ -\x00\x74\x00\x6a\x00\xe1\x00\x74\x00\x20\x00\x28\x00\x74\x00\x65\ -\x00\x6e\x00\x67\x00\x65\x00\x6c\x00\x79\x00\xe9\x00\x74\x00\x29\ -\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x50\x69\ -\x63\x6b\x20\x72\x6f\x74\x61\x74\x69\x6f\x6e\x20\x63\x65\x6e\x74\ -\x65\x72\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x2a\x00\x4d\x00\xe9\x00\x72\x00\x65\x00\x74\x00\x74\ -\x00\xe9\x00\x6e\x00\x79\x00\x65\x00\x7a\x01\x51\x00\x20\x00\x6d\ -\x00\x65\x00\x67\x00\x61\x00\x64\x00\xe1\x00\x73\x00\x61\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x13\x50\x69\x63\x6b\x20\x73\x63\x61\ -\x6c\x65\x20\x66\x61\x63\x74\x6f\x72\x3a\x0a\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x4b\x00\x65\x00\ -\x7a\x00\x64\x01\x51\x00\x20\x00\x66\x00\x6f\x00\x6b\x00\x20\x00\ -\x6d\x00\x65\x00\x67\x00\x61\x00\x64\x00\xe1\x00\x73\x00\x61\x00\ -\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\x6b\x20\ -\x73\x74\x61\x72\x74\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x4b\x00\ -\x69\x00\x69\x00\x6e\x00\x64\x00\x75\x00\x6c\x00\xf3\x00\x20\x00\ -\x70\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x6d\x00\x65\x00\x67\x00\ -\x61\x00\x64\x00\xe1\x00\x73\x00\x61\x00\x3a\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x12\x50\x69\x63\x6b\x20\x73\x74\x61\x72\x74\x20\ -\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x08\x00\x50\x00\x6f\x00\x6e\x00\x74\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x05\x50\x6f\x69\x6e\x74\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x53\ -\x00\x75\x00\x67\x00\xe1\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x06\x52\x61\x64\x69\x75\x73\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x18\x00\x41\x00\x20\x00\x6b\x00\xf6\ -\x00\x72\x00\x20\x00\x73\x00\x75\x00\x67\x00\x61\x00\x72\x00\x61\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x61\x64\x69\x75\x73\ -\x20\x6f\x66\x20\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x50\x00\x41\x00\x20\x00\x6d\ -\x00\x65\x00\x67\x00\x6c\x00\xe9\x00\x76\x01\x51\x00\x20\x00\x6f\ -\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x62\ -\x00\xf3\x00\x6c\x00\x20\x00\x6b\x00\x69\x00\x76\x00\x65\x00\x73\ -\x00\x7a\x00\x69\x00\x20\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x6e\ -\x00\x74\x00\x6f\x00\x6b\x00\x61\x00\x74\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x25\x52\x65\x6d\x6f\x76\x65\x20\x70\x6f\x69\x6e\x74\ -\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\ -\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x46\x00\x6f\x00\x72\x00\ -\x67\x00\x61\x00\x74\x00\xe1\x00\x73\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x06\x52\x6f\x74\x61\x74\x65\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x4d\x00\xe9\x00\x72\x00\ -\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x53\x63\x61\ -\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x24\x00\x4a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x6a\x00\x65\ -\x00\x20\x00\x6b\x00\x69\x00\x20\x00\x61\x00\x20\x00\x73\x00\xed\ -\x00\x6b\x00\x6f\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ -\x53\x65\x6c\x65\x63\x74\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x58\x00\x59\ -\x00\x20\x00\x73\x00\xed\x00\x6b\x00\x20\x00\x6b\x00\x69\x00\x76\ -\x00\xe1\x00\x6c\x00\x61\x00\x73\x00\x7a\x00\x74\x00\xe1\x00\x73\ -\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\ -\x63\x74\x20\x58\x59\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x58\x00\x5a\x00\ -\x20\x00\x73\x00\xed\x00\x6b\x00\x20\x00\x6b\x00\x69\x00\x76\x00\ -\xe1\x00\x6c\x00\x61\x00\x73\x00\x7a\x00\x74\x00\xe1\x00\x73\x00\ -\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\ -\x74\x20\x58\x5a\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x59\x00\x5a\x00\x20\ -\x00\x73\x00\xed\x00\x6b\x00\x20\x00\x6b\x00\x69\x00\x76\x00\xe1\ -\x00\x6c\x00\x61\x00\x73\x00\x7a\x00\x74\x00\xe1\x00\x73\x00\x61\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\ -\x20\x59\x5a\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x4f\x00\x62\x00\x6a\x00\ -\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x20\x00\x6b\x00\x69\x00\ -\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\xe9\x00\x73\x00\x65\x00\ -\x20\x00\x6d\x00\x6f\x00\x7a\x00\x67\x00\x61\x00\x74\x00\xe1\x00\ -\x73\x00\x68\x00\x6f\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x19\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\ -\x74\x20\x74\x6f\x20\x6d\x6f\x76\x65\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x50\x00\x4a\x00\x65\x00\x6c\ -\x00\xf6\x00\x6c\x00\x6a\x00\xf6\x00\x6e\x00\x20\x00\x6b\x00\x69\ -\x00\x20\x00\x65\x00\x67\x00\x79\x00\x20\x00\x6f\x00\x62\x00\x6a\ -\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x74\x00\x20\ -\x00\x61\x00\x7a\x00\x20\x00\x65\x00\x6c\x00\x74\x00\x6f\x00\x6c\ -\x00\xe1\x00\x73\x00\x68\x00\x6f\x00\x7a\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x1b\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\ -\x6a\x65\x63\x74\x20\x74\x6f\x20\x6f\x66\x66\x73\x65\x74\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4e\x00\ -\x4a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x6a\x00\xf6\x00\x6e\x00\ -\x20\x00\x6b\x00\x69\x00\x20\x00\x65\x00\x67\x00\x79\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\ -\x6f\x00\x74\x00\x20\x00\x65\x00\x6c\x00\x66\x00\x6f\x00\x72\x00\ -\x67\x00\x61\x00\x74\x00\x68\x00\x61\x00\x74\x00\xf3\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x1b\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\ -\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x72\x6f\x74\x61\x74\ -\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x44\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\ -\x00\x6d\x00\x20\x00\x6b\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\xf6\ -\x00\x6c\x00\xe9\x00\x73\x00\x65\x00\x20\x00\x61\x00\x20\x00\x6d\ -\x00\xe9\x00\x72\x00\x65\x00\x74\x00\x65\x00\x7a\x00\xe9\x00\x73\ -\x00\x68\x00\x65\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\ -\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\ -\x20\x74\x6f\x20\x73\x63\x61\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x66\x00\x56\x00\xe1\x00\x6c\ -\x00\x61\x00\x73\x00\x73\x00\x7a\x00\x6f\x00\x6e\x00\x20\x00\x6b\ -\x00\x69\x00\x20\x00\x65\x00\x67\x00\x79\x00\x20\x00\x6f\x00\x62\ -\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x74\ -\x00\x20\x00\x61\x00\x20\x00\x6c\x00\x65\x00\x76\x00\xe1\x00\x67\ -\x00\xe1\x00\x73\x00\x68\x00\x6f\x00\x7a\x00\x2f\x00\x62\x01\x51\ -\x00\x76\x00\xed\x00\x74\x00\xe9\x00\x73\x00\x68\x00\x65\x00\x7a\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x53\x65\x6c\x65\x63\x74\ -\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x74\x72\ -\x69\x6d\x2f\x65\x78\x74\x65\x6e\x64\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x52\x00\x4a\x00\x65\x00\x6c\ -\x00\xf6\x00\x6c\x00\x6a\x00\xf6\x00\x6e\x00\x20\x00\x6b\x00\x69\ -\x00\x20\x00\x65\x00\x67\x00\x79\x00\x20\x00\x6f\x00\x62\x00\x6a\ -\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\x74\x00\x20\ -\x00\x61\x00\x20\x00\x66\x00\x72\x00\x69\x00\x73\x00\x73\x00\xed\ -\x00\x74\x00\xe9\x00\x73\x00\x68\x00\x65\x00\x7a\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x1c\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\ -\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x75\x70\x67\x72\x61\x64\ -\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x56\x00\x41\x00\x6b\x00\x74\x00\x75\x00\xe1\x00\x6c\x00\x69\ -\x00\x73\x00\x20\x00\x6e\x00\xe9\x00\x7a\x00\x65\x00\x74\x00\x72\ -\x00\x65\x00\x20\x00\x6d\x00\x65\x00\x72\x01\x51\x00\x6c\x00\x65\ -\x00\x67\x00\x65\x00\x73\x00\x20\x00\x73\x00\xed\x00\x6b\x00\x20\ -\x00\x6b\x00\x69\x00\x76\x00\xe1\x00\x6c\x00\x61\x00\x73\x00\x7a\ -\x00\x74\x00\xe1\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x2e\x53\x65\x6c\x65\x63\x74\x20\x70\x6c\x61\x6e\x65\x20\x70\ -\x65\x72\x70\x65\x6e\x64\x69\x63\x75\x6c\x61\x72\x20\x74\x6f\x20\ -\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x76\x69\x65\x77\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\ -\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x6c\ -\x00\x65\x00\x7a\x00\xe1\x00\x72\x00\x76\x00\x61\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x17\x53\x70\x6c\x69\x6e\x65\x20\x68\x61\x73\ -\x20\x62\x65\x65\x6e\x20\x63\x6c\x6f\x73\x65\x64\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x53\x00\ -\x74\x00\x61\x00\x72\x00\x74\x00\x20\x00\x41\x00\x6e\x00\x67\x00\ -\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x74\x61\ -\x72\x74\x20\x41\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x4e\x00\x45\x00\x68\x00\x68\x00\x65\ -\x00\x7a\x00\x20\x00\x61\x00\x7a\x00\x20\x00\x6f\x00\x62\x00\x6a\ -\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x74\x00\xed\x00\x70\ -\x00\x75\x00\x73\x00\x20\x00\x6e\x00\x65\x00\x6d\x00\x20\x00\x73\ -\x00\x7a\x00\x65\x00\x72\x00\x6b\x00\x65\x00\x7a\x00\x74\x00\x68\ -\x00\x65\x00\x74\x01\x51\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\ -\x54\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\ -\x20\x69\x73\x20\x6e\x6f\x74\x20\x65\x64\x69\x74\x61\x62\x6c\x65\ -\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x26\x00\xc9\x00\x70\x00\xed\x00\x74\x00\xe9\x00\x73\x00\x69\x00\ -\x20\x00\x6d\x00\xf3\x00\x64\x00\x20\x00\x76\x00\xe1\x00\x6c\x00\ -\x74\x00\xe1\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x19\x54\x6f\x67\x67\x6c\x65\x73\x20\x43\x6f\x6e\x73\x74\x72\x75\ -\x63\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x65\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x00\x54\x00\x72\x00\x69\ -\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\x72\x69\x6d\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x48\ -\x00\x55\x00\x74\x00\x6f\x00\x6c\x00\x73\x00\xf3\x00\x20\x00\x73\ -\x00\x7a\x00\x61\x00\x6b\x00\x61\x00\x73\x00\x7a\x00\x20\x00\x76\ -\x00\x69\x00\x73\x00\x73\x00\x7a\x00\x61\x00\x76\x00\x6f\x00\x6e\ -\x00\xe1\x00\x73\x00\x61\x00\x20\x00\x28\x00\x43\x00\x54\x00\x52\ -\x00\x4c\x00\x2b\x00\x5a\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x1e\x55\x6e\x64\x6f\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\ -\x73\x65\x67\x6d\x65\x6e\x74\x20\x28\x43\x54\x52\x4c\x2b\x5a\x29\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\ -\x00\x4e\x00\xe9\x00\x7a\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x04\x56\x69\x65\x77\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\xa8\x00\x4b\x00\x69\x00\x74\x00\x69\ -\x00\x73\x00\x7a\x00\x74\x00\xed\x00\x74\x00\x6a\x00\x61\x00\x20\ -\x00\x61\x00\x20\x00\x6d\x00\x65\x00\x67\x00\x6c\x00\xe9\x00\x76\ -\x01\x51\x00\x20\x00\x73\x00\x7a\x00\x65\x00\x67\x00\x6d\x00\x65\ -\x00\x6e\x00\x73\x00\x74\x00\x20\x00\x65\x00\x62\x00\x62\x01\x51\ -\x00\x6c\x00\x20\x00\x61\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x61\ -\x00\x6c\x00\x62\x00\xf3\x00\x6c\x00\x20\x00\xe9\x00\x73\x00\x20\ -\x00\x69\x00\x73\x00\x6d\x00\xe9\x00\x74\x00\x20\x00\x61\x00\x7a\ -\x00\x20\x00\x75\x00\x74\x00\x6f\x00\x6c\x00\x73\x00\xf3\x00\x20\ -\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x74\x00\xf3\x00\x6c\x00\x20\ -\x00\x6b\x00\x65\x00\x7a\x00\x64\x00\x69\x00\x28\x00\x57\x00\x29\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x57\x69\x70\x65\x73\x20\ -\x74\x68\x65\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x73\x65\x67\ -\x6d\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6c\x69\ -\x6e\x65\x20\x61\x6e\x64\x20\x73\x74\x61\x72\x74\x73\x20\x61\x67\ -\x61\x69\x6e\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x6c\x61\x73\ -\x74\x20\x70\x6f\x69\x6e\x74\x20\x28\x57\x29\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x41\x00\x20\x00\ -\x76\x00\x65\x00\x7a\x00\x65\x00\x74\x00\xe9\x00\x6b\x00\x20\x00\ -\x6c\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x74\x00\x74\x00\x20\x00\ -\x7a\x00\xe1\x00\x72\x00\x76\x00\x61\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x15\x57\x69\x72\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\ -\x20\x63\x6c\x6f\x73\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x14\x00\x57\x00\x69\x00\x72\x00\x65\ -\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0a\x57\x69\x72\x65\x20\x74\x6f\x6f\x6c\x73\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\ -\x00\x58\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\x58\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x00\x4b\x00\ -\xf6\x00\x76\x00\x65\x00\x74\x00\x6b\x00\x65\x00\x7a\x01\x51\x00\ -\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x58\x00\x20\x00\ -\x6b\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x69\x00\x6e\x00\xe1\x00\ -\x74\x00\xe1\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x03\x00\x00\x00\x32\x00\x58\x00\x20\x00\x73\x00\x6f\x00\x75\x01\ +\x59\x00\x61\x00\x64\x00\x6e\x00\x69\x00\x63\x00\x65\x00\x20\x00\ +\x64\x00\x61\x00\x6c\x01\x61\x00\xed\x00\x68\x00\x6f\x00\x20\x00\ +\x62\x00\x6f\x00\x64\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x1a\x58\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\ \x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\ \x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x58\x00\x59\x08\ @@ -17139,9481 +46937,33 @@ qt_resource_data = "\ \x00\x00\x00\x00\x06\x00\x00\x00\x02\x58\x5a\x07\x00\x00\x00\x05\ \x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\x00\x59\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x01\x59\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x3a\x00\x4b\x00\xf6\x00\x76\x00\x65\ -\x00\x74\x00\x6b\x00\x65\x00\x7a\x01\x51\x00\x20\x00\x70\x00\x6f\ -\x00\x6e\x00\x74\x00\x20\x00\x59\x00\x20\x00\x6b\x00\x6f\x00\x6f\ -\x00\x72\x00\x64\x00\x69\x00\x6e\x00\xe1\x00\x74\x00\xe1\x00\x6a\ -\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x59\x20\x63\x6f\ -\x6f\x72\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\ -\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x04\x00\x59\x00\x5a\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x02\x59\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x02\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x01\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x3a\x00\x4b\x00\xf6\x00\x76\x00\x65\x00\x74\x00\x6b\x00\ -\x65\x00\x7a\x01\x51\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\ -\x20\x00\x5a\x00\x20\x00\x6b\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\ -\x69\x00\x6e\x00\xe1\x00\x74\x00\xe1\x00\x6a\x00\x61\x08\x00\x00\ +\x66\x74\x01\x03\x00\x00\x00\x32\x00\x59\x00\x20\x00\x73\x00\x6f\ +\x00\x75\x01\x59\x00\x61\x00\x64\x00\x6e\x00\x69\x00\x63\x00\x65\ +\x00\x20\x00\x64\x00\x61\x00\x6c\x01\x61\x00\xed\x00\x68\x00\x6f\ +\x00\x20\x00\x62\x00\x6f\x00\x64\x00\x75\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1a\x59\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\ +\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x59\ +\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x59\x5a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\x00\x5a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\x5a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x00\x5a\x00\x20\x00\ +\x73\x00\x6f\x00\x75\x01\x59\x00\x61\x00\x64\x00\x6e\x00\x69\x00\ +\x63\x00\x65\x00\x20\x00\x64\x00\x61\x00\x6c\x01\x61\x00\xed\x00\ +\x68\x00\x6f\x00\x20\x00\x62\x00\x6f\x00\x64\x00\x75\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x1a\x5a\x20\x63\x6f\x6f\x72\x64\x69\x6e\ \x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\ \x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x1c\x00\x61\x00\x6b\x00\x74\x00\xed\x00\x76\x00\x20\x00\x70\x00\ -\x61\x00\x72\x00\x61\x00\x6e\x00\x63\x00\x73\x00\x3a\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0f\x61\x63\x74\x69\x76\x65\x20\x63\x6f\ -\x6d\x6d\x61\x6e\x64\x3a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x26\x00\x72\x00\x61\x00\x6a\x00\x7a\x00\x6f\ -\x00\x6c\x00\xf3\x00\x69\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\ -\x00\x6e\x00\x63\x00\x73\x00\x73\x00\x6f\x00\x72\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x11\x64\x72\x61\x66\x74\x20\x43\x6f\x6d\x6d\ -\x61\x6e\x64\x20\x42\x61\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\ -\x00\x00\x33\x50\ -\x00\ -\x00\xb2\x3b\x78\x9c\xcd\x7d\x0b\x98\x1c\x55\x99\xe8\x99\xcc\xf4\ -\x3c\x7a\x5e\x21\x40\x08\x21\x92\xca\x24\x84\x49\x98\x99\x84\x40\ -\x08\x19\x79\x38\x99\xc9\x24\x81\xbc\xc8\x0c\x79\x89\x40\x4d\x77\ -\x75\x77\x31\xdd\x5d\x6d\x55\xf5\x3c\x02\x86\x87\x3c\x02\x0a\x91\ -\x87\xbc\xa2\xc8\x43\x10\xb9\xab\xee\xae\xba\xe2\xae\x80\x28\xb2\ -\x08\xe2\x72\x11\xd9\x0f\x77\x55\x54\xdc\xab\xa2\xc4\xcb\x75\x11\ -\x15\x77\xef\x7f\xfe\x73\x4e\x9d\x53\x8f\xee\xa9\x19\xf4\x7e\xf7\ -\xe3\xd3\xce\x74\x57\xfd\xe7\x3f\xff\xf9\xcf\xff\x3e\xff\x39\xe3\ -\xd1\xf4\xbc\x67\x0f\x7f\xe2\xe3\xcf\x2f\x5a\xf0\xc4\xc5\xf7\x3d\ -\xf6\xc3\x75\x84\x34\xdd\x49\x08\xd9\x4d\xc8\x83\xdf\x81\xcf\x3d\ -\x84\x3c\x74\x1f\x7c\xee\x25\xe4\x33\x3b\x09\x49\xbc\x02\x7f\xeb\ -\xf0\xf9\x03\xf8\xbc\x12\x3e\x7f\x05\xdf\x9f\x46\x48\xc3\x04\x21\ -\x1f\xbc\x9d\x90\x8d\x1f\x26\xa4\xd6\x61\x9f\x13\xa7\x13\x92\x3b\ -\x95\x90\xd1\xdf\x93\xba\x87\x26\x09\xb9\xf4\xcb\xa4\xee\x9f\xea\ -\x08\x69\xd9\xc1\x3e\xaf\x58\x49\x12\x2b\xd7\x13\xd2\xf6\x15\xf6\ -\x79\xcb\xf7\x49\x62\xf0\x5b\xf0\xf7\x4f\xd9\xe7\xad\x59\x92\xd8\ -\x09\xdf\x6f\xbc\x86\x7d\xde\x7a\x88\x24\xfe\xe6\x77\x84\xcc\x7f\ -\x96\x24\x1e\xfd\x33\x21\x0f\x6c\x26\x89\x7f\xf9\x67\xf8\x7c\x9b\ -\x24\x5e\xbd\x86\x90\x25\xdf\x26\xf5\xff\xe3\xa3\x84\x14\x16\x93\ -\xd9\x57\x6f\x22\x64\xf8\x20\x99\x93\xf8\x47\x42\x3e\x65\x93\xb9\ -\x4f\x03\xbe\xd7\xde\x4b\x96\x53\x3c\xdc\x0b\xc9\x49\x4f\x7d\x81\ -\x90\xf2\x4e\x72\xd2\xab\x06\x7c\xde\x4a\xd6\xfe\xf8\x14\x42\x4e\ -\x4b\x93\x33\xef\x3b\x96\x90\xc9\x0c\x39\xeb\x56\xc0\x7f\xcd\x2d\ -\x64\xe3\xc1\xcb\x08\x39\xf1\x20\x39\x37\xb3\x9a\x90\x53\x0e\xc0\ -\xe7\x1a\xf8\x7c\x0e\x3e\xd7\x12\x72\x6a\x1b\x39\xf7\xba\x97\x08\ -\xb9\x3c\x4b\x76\x5d\x3c\x4c\xc8\xa1\x6d\x64\xf7\x9f\x01\xbf\xcd\ -\x75\x64\xcf\x9d\x27\x10\x72\x74\x91\x7d\x7e\xe2\xcb\xe4\x92\xdd\ -\x77\x13\xf2\xf1\xc7\xc8\xe4\x61\x78\xfe\x83\xdf\x25\xfb\x2f\x6f\ -\x03\xda\xec\x24\x37\x2c\xfe\x38\x21\x27\x35\xc3\xe7\x1d\xf0\x79\ -\x3e\x7c\xde\x05\x9f\x9f\x22\x37\x7f\xed\x97\x84\xb4\x1f\x47\x1e\ -\x5a\x73\x36\x21\xcb\xbe\x4e\x1e\xb9\x02\xe0\xec\x7f\x80\x3c\xfd\ -\xb3\x22\x21\x4b\x4f\x22\xcf\x3d\x7c\x14\x21\xa5\x7b\xc9\x3b\xe4\ -\x59\x42\x6e\xfc\x45\xcd\xa2\x97\x01\x9f\xa1\xdb\x6b\x3a\xbe\xf4\ -\x07\x18\xf7\xbe\x9a\x15\x37\xed\x27\xe4\xc2\x47\x6b\x36\xfe\xd7\ -\x03\x84\x9c\x3e\xbb\x66\xe8\xff\x3c\x42\xc8\x87\x0f\xd4\xec\x9c\ -\x7b\x0e\x3c\x7f\x5e\x4d\xb6\xf5\x06\x42\x0e\x5c\x54\x63\x1e\xb1\ -\x8f\x90\xbb\xae\xa8\xb9\x6a\x6d\x92\x90\xdb\xcf\xab\xf9\x48\xae\ -\x4c\xc8\xfd\xff\x5a\x73\xdf\xe5\x29\x42\xde\x33\x59\xf3\xe4\x2b\ -\x3f\x22\x64\xe7\xa3\x35\x2f\x1e\xfc\x1e\xcc\xeb\x0b\x35\x3f\x3e\ -\xa2\x1f\xd6\xfc\xa9\x9a\x9f\xfe\x0e\xf8\xe1\x9e\xff\xae\x79\xe7\ -\xf3\xf0\xbd\xdd\x3e\x2b\xf1\x38\xe0\xf7\xa1\xb3\x66\x0d\xee\x06\ -\x38\x77\x3e\x3e\xcb\xf8\xdc\x08\x21\x0f\x9f\x36\xab\xd8\xf0\x53\ -\x42\xb6\x75\xcf\x1a\x5b\x72\x24\x21\x67\x18\xb3\x3e\xf4\xea\xf9\ -\xf0\xf7\x0f\x67\xdd\x36\x38\x1f\xc6\xab\x9f\xf5\x99\xae\xa3\x09\ -\xa9\xbb\x70\xd6\x23\xa7\x01\x1d\x9c\xdf\xcf\xfa\xbb\xdf\xc2\x7a\ -\xdd\xd0\x35\xeb\x89\x47\x6e\x22\xa4\xf7\xc5\x59\x5f\xcf\xbc\x09\ -\xac\x77\xcb\xac\x67\xce\xfe\x4f\x42\x32\xc7\xcd\x7a\xe5\xd3\x5f\ -\x05\x7e\xfa\xf4\xac\x7f\x9b\x7f\x1b\xf0\x9c\x53\x5b\x73\xf5\x53\ -\x84\xdc\xf4\xd5\xda\x39\x77\x5c\x42\xc8\x47\x77\xd7\xce\x3f\x0a\ -\xe8\x72\x72\x4f\xed\xfc\xb9\xc0\xb7\xdb\x2f\xad\x5d\x31\x1f\xbe\ -\x1f\x4b\xd6\xee\x7f\xf6\xcb\x84\x0c\xb4\xd4\x1e\x58\x08\xf4\x1f\ -\x38\x5c\x7b\xcf\xee\x07\x81\xa7\x37\xd6\x7e\xf1\x9e\x3f\x02\x1e\ -\xaf\xd7\x7e\xf9\x19\x58\x9f\x3b\x8f\xab\x7d\xec\xa5\xd7\xe0\xf9\ -\x6f\xd6\x3e\x75\x06\x8c\x37\xb9\xa4\xf6\x5b\xdf\xbf\x10\xf6\xc3\ -\x3f\xd5\x3e\xd7\xfa\x73\x58\xc7\x9f\xd6\xfe\x7b\x0b\xbc\xef\x3e\ -\x53\xfb\x66\x09\xf8\xa1\xfb\xcf\xb5\x6f\x3e\x76\x31\x21\xc7\xd4\ -\xd4\xfe\xa9\x1d\xf8\x79\xe5\xd7\xea\x16\x2d\x5e\x4c\x48\xc7\x96\ -\xba\x9d\xf5\xb7\x12\xd2\xf3\xb3\xba\x8b\x2f\x83\xf9\x1d\xba\xbf\ -\x6e\xf2\x30\xc0\xbf\xfe\x50\xdd\x55\xe3\xc0\x1f\xdb\x0e\xd6\x5d\ -\xf7\x87\x7b\x08\x39\xf8\x46\xdd\x47\x5f\xfe\x3c\x21\xe9\xd3\xeb\ -\xee\xbd\x01\xe8\x97\xb8\x99\x7d\xee\xfb\x42\xdd\xa7\x4f\x06\xfa\ -\xde\x32\x5a\xf7\xf0\xeb\xc0\xd7\xa7\x9e\x57\xf7\x93\xe2\xcf\x08\ -\x49\x9e\x5d\xf7\x5a\x3b\xac\x4f\x6d\x6b\xdd\xeb\x7d\xdf\x04\xf8\ -\x23\x75\x87\x5f\x79\x98\x90\x73\xf7\x27\x6a\x3f\x0c\xf4\x2b\xe8\ -\x89\xc4\x73\x40\xe7\x75\x2f\x26\xda\xdf\x74\x09\xb9\xed\xb5\xc4\ -\x71\xb3\x81\x0e\x83\x07\x12\xcb\x7f\x0e\xfc\xb5\xe5\xca\xc4\xc0\ -\x7b\x2f\x22\xc4\xfa\x9b\xc4\x05\xaf\x00\xdd\x66\x4f\xb0\xcf\xdb\ -\xea\x12\xa9\xb7\x00\xdf\xcd\x1b\x12\xc6\x1b\xb0\x1f\xae\x22\x89\ -\xeb\xfe\x16\xe0\x1f\x1a\x4b\xdc\xfe\x30\xd0\xe9\xc8\xb7\xd9\xe7\ -\x27\xae\x4b\x7c\xee\x5c\xf8\x7e\x60\x24\xf1\xd5\xda\x67\x08\x39\ -\xfe\xcd\xc4\x63\x2d\xb0\x5e\x57\xf7\x27\x1e\xbb\x09\xf8\x64\xe4\ -\xce\xc4\xe3\x3b\x01\xce\xb9\x73\x13\xdf\xda\x4e\xf7\xf9\x35\x89\ -\x9f\xdf\xd4\x43\xc8\x11\x2f\x27\xfe\xf4\xef\xb0\x9f\xfa\x4f\xaf\ -\x3f\xfe\x3f\x60\x1d\xee\x3f\xa6\x7e\xd9\x1b\x9f\x85\x79\xfe\x5b\ -\xfd\xaa\x9f\xc1\xbc\x2e\xff\x58\xfd\xae\x63\x81\x2e\x84\xd4\xef\ -\x3d\x0c\xf4\x72\x97\xd5\xbf\xff\x45\x78\xee\xec\xbb\xea\xf3\x07\ -\x80\x0f\xfa\x12\xf5\xee\x7b\x80\x6f\x76\x76\xd4\x7f\xe4\xf6\x01\ -\x42\x5a\xd7\xd4\xdf\xb1\xfb\xdb\x84\x9c\x47\xea\xbf\x76\x05\xe0\ -\x75\xfc\xf5\xf5\xdf\x7e\x34\x41\xc8\xf8\xb9\xf5\xbf\x48\x6c\x05\ -\xbe\xa8\xaf\x7f\xe3\x91\x5d\x84\xdc\x37\xbb\xfe\xb7\xcf\x01\x3d\ -\x17\xac\xaf\xff\xe3\x7f\x03\xde\xfd\x0f\xd7\xbf\x33\x1f\xf8\x63\ -\xb5\x59\xff\xce\xbd\xc0\xff\x1f\x5f\xd8\xd0\xf8\x31\x58\xd7\xae\ -\x52\x43\xeb\x57\x7e\x4f\xc8\xda\xdf\x34\xb4\x5d\x7b\x16\x3c\xff\ -\xa5\x86\xd5\x39\xd8\x67\xf3\x96\x34\xac\xfe\x05\xac\xdb\x5d\x4f\ -\x36\x0c\xf4\x2d\x07\xba\xfc\xa1\xe1\x9c\x85\xb0\x2f\x66\xad\x6a\ -\xd8\xe2\x74\xc0\xfa\xfc\xa9\x61\xeb\x43\xc0\x9f\x57\xdc\xd8\xb0\ -\xfb\xb9\x5f\x80\x7c\x3a\xb9\x21\xf5\x5f\xb0\xaf\xe7\x3c\xd9\x70\ -\xc5\xd3\x5f\x04\xf9\x79\x43\xc3\x01\x1b\xd6\x71\xe2\x03\x0d\x0f\ -\xbc\x06\xdf\x2f\xfe\x71\xc3\x93\xef\xc0\xfa\xac\x78\xa8\xf1\xc4\ -\x2f\x01\xdd\xee\x78\xa1\x71\xd5\x53\xb0\x2f\xef\x4e\x37\x9e\xe6\ -\x02\x5e\x27\xbc\xda\x38\xf0\x55\xa0\xd3\xea\xd7\x1a\x37\x7d\x7b\ -\x25\xf0\xd5\x79\x8d\xfa\x65\x00\x67\xe1\x09\x8d\xf7\x3f\x9b\x05\ -\x7e\x5e\xd1\xf8\xc0\xab\x20\xa7\x2e\xfd\x61\xe3\xdf\x1d\xdd\x09\ -\xfc\x36\xd4\xf8\xa5\x3a\xa0\xf3\xa1\xb7\x1a\x5f\x58\x05\xf4\xbb\ -\xe2\xc2\xc6\x97\x9e\x37\xe1\xf3\xf9\xc6\x9f\x1c\x7a\x9c\x90\xe3\ -\x9c\xc6\x9f\x3c\x09\xfc\x7d\xd5\x7b\x1b\x5f\xbf\x11\xf6\xf9\x83\ -\x6b\x9a\xb4\x1f\x2c\x01\xb9\xfd\x38\x7c\x7e\x09\xe4\xb6\x03\x9f\ -\xc0\xcf\x0f\xfe\xb2\x69\xcb\xed\x20\xd7\x97\x3e\xde\x64\xfc\x00\ -\xe8\x72\xed\x89\x4d\xb9\xd6\x65\x84\xdc\xac\x35\x7d\xf0\x46\xa0\ -\x5f\xfd\x53\x4d\xe5\xc5\x80\x5f\xf9\x6b\x4d\x63\xbf\x01\x79\x9e\ -\xdd\xdc\x74\xed\x43\x40\xef\x25\x6f\x35\x7d\x64\x31\xcc\xe3\xee\ -\xaf\x34\xdd\xf3\x67\x90\x37\xd9\xfb\x9b\xfe\x61\x39\xd0\xe7\xd4\ -\x27\x9a\x9e\x5f\x00\xeb\xf5\xc9\x25\x4d\x2f\x2e\x02\xfd\x70\xd1\ -\x73\x4d\x3f\x5f\x0c\xf3\xdf\x73\x63\xd3\xaf\x4f\x02\x39\xde\x72\ -\xb8\xe9\xf0\x29\x20\x97\x8e\x7d\x4f\xd3\x6f\x17\x02\x9d\x6b\x3f\ -\xd1\xf4\xe7\xf5\x54\x1e\x7c\x22\xd9\xf4\x24\x95\x47\x47\x24\x3b\ -\xef\x06\x3e\xdc\xda\x01\x9f\x30\xef\xad\x97\xc2\x27\xcc\x6b\xeb\ -\x4b\xc9\xee\xc7\x61\x7f\x9e\x7c\x47\x72\xf5\x67\x61\x5e\x37\x3c\ -\x9e\x3c\xfb\x44\xe0\xf3\x0f\x7d\x34\x79\xf6\x28\xe0\xf3\xa1\xe7\ -\x93\x9b\x1e\x04\xf9\x76\xff\xd6\xe4\xc5\xaf\x02\x1f\x9d\xf8\x02\ -\x7c\x1e\x43\x48\xe7\x62\xf8\x04\xb9\xde\x39\x96\x34\x0e\x01\x3e\ -\xb7\x9d\x91\x9c\x48\x5c\x41\x48\xcd\xfb\x93\x97\x1f\x84\x71\xce\ -\xbc\x37\x79\xe7\xb5\xf3\x40\xee\xfe\x32\x79\xd7\x05\xb0\x1e\x87\ -\x6a\x93\x0f\xcf\x85\xfd\x74\xe4\x57\x93\x9f\xbd\xfe\xd7\x84\xac\ -\xdf\x98\x7c\xe6\x02\xd8\x47\xb3\xbf\x92\x7c\x61\xfb\xa3\xc0\x9f\ -\x07\x93\x2f\xfc\x07\xc8\x87\x79\x2f\x24\x5f\xfe\xdf\x80\xc7\xe5\ -\xdf\x4f\xbe\x7e\xf3\x01\x90\x4f\x5f\x6c\x6e\x98\x00\xfa\x5d\x73\ -\x75\xf3\x71\xaf\x82\x0e\x3c\xcf\x6e\x5e\xf2\x49\xa0\xf3\x8e\x5b\ -\x9b\x97\x7c\x0b\xf8\xf5\xa8\xee\xe6\xa5\xfb\x81\x0e\x97\x3d\xdc\ -\x7c\xd2\x76\x78\xef\xc0\xdb\xcd\xdd\x5f\x04\x79\x7d\xc9\xdb\xcd\ -\x6b\x1c\x98\xdf\xa7\x97\x36\xbf\xef\x7d\xc0\x7f\x83\xbf\x6a\xee\ -\x7f\x1e\xf0\x5d\xff\xf5\xe6\x4c\xe7\x8b\x00\xf7\x92\xe6\x03\xaf\ -\x36\x10\xd2\xbc\xa3\xf9\xb6\x01\xd0\x8b\xab\xea\x9b\xbf\x71\x17\ -\xc8\xb5\xab\x9f\x68\xfe\xde\x89\x20\x3f\xea\xee\x6c\x7e\x69\x3f\ -\xc8\x93\xe6\x8f\x34\xff\xe7\x1b\x43\xc0\x87\x4f\xb6\xd4\x6f\x87\ -\x7d\xd7\xfa\x9d\x96\xc6\x41\x90\x47\xfb\x2f\x6c\x39\xf6\x8f\xa0\ -\x57\xae\xdc\xd3\xd2\x79\x08\xe8\x5f\x5e\xd4\x72\xf2\x7e\xa0\xd3\ -\x1d\x2b\x5b\x4e\xdf\x02\xfc\xdf\xf0\x8d\x96\xde\xb9\x2f\x80\x5e\ -\xed\x68\xd9\xfb\x75\xd8\xd7\x13\xbf\x6a\x29\x5e\x07\xf3\x5b\x7c\ -\x6f\xcb\xcd\xf7\xc2\x7a\xdc\xf7\xf5\x96\xdb\x3f\x46\xe5\xc8\xe2\ -\x96\x67\x7f\x08\x78\x7f\xea\xd7\x2d\x2f\x1f\x9e\x03\x7c\x7c\x6e\ -\xcb\x8f\xee\x02\x3d\x3b\xba\xb5\xe5\xb7\x3f\x02\xba\x5d\xf7\x99\ -\xd6\x05\x6f\xbd\x01\x72\xf1\xbd\xad\xbd\x79\xca\xdf\x57\xb4\xae\ -\xff\x29\xe0\x79\xcf\xfe\xd6\x3d\xf7\xc1\xb8\xfb\xbf\xd7\xba\xf7\ -\x73\xc0\xbf\xe3\x4f\xb4\x5e\xf8\xbf\x60\xdd\x3b\xbf\xdd\x9a\x7e\ -\x10\xf8\xee\x03\x2f\xb7\x16\xde\x06\xfe\x6d\xbc\xb2\x75\xec\xcb\ -\xb7\xc0\xfb\x07\x5b\x0f\xfd\x1a\xe8\x75\xfe\xe7\x5a\x1f\x7c\x05\ -\xe4\x7c\xd7\xab\xad\x0f\xfd\xe0\xd3\x20\xae\x17\xb6\x3e\xfd\x34\ -\xec\xc3\xbb\x8f\x6a\x7d\x73\x2d\xc0\xff\xc8\x35\x6d\x27\xd5\xc1\ -\x3a\x5f\x96\x6a\xeb\x7a\x0d\xbe\xbf\x27\xd1\xb6\xf5\x3b\x40\x9f\ -\xa6\xb7\xdb\xac\xbb\x81\x9f\xee\xbd\xa9\xed\xd2\x7d\x5d\xa0\xaf\ -\x1b\xdb\x0e\x5e\x02\x7a\x7b\x4d\x6f\xdb\xcd\x06\xcc\x6b\xfe\xef\ -\xdb\x9e\xfd\x57\xe0\xe3\x45\xcd\x6d\x8c\x4f\x2d\xf8\x04\x3e\xf8\ -\xe4\x3f\xb6\xfd\xea\xe7\xb5\xa0\xcf\x3e\xdf\xf6\x9b\x9f\xc0\xba\ -\x6c\xfc\x66\x7b\xc3\x8d\x20\x9f\x9c\x73\xda\x8f\xb9\x0a\xe4\x0a\ -\xf9\x53\xfb\xc2\x1b\x41\xde\x5c\x76\x5c\xfb\xb6\x72\x2f\xec\x9f\ -\xd7\xdb\x2f\x7a\xf6\xfb\xb0\x1e\x1f\x6c\x2f\xff\x2d\xe8\xff\xfd\ -\x6d\xed\xe3\xdf\x84\xf5\xce\xaf\x6a\xbf\xbe\x19\xf6\xdf\xa6\x85\ -\xed\x07\x1f\xfe\x0c\xf0\xf9\xff\x6c\xbf\x33\x09\xfa\xf9\x01\xbb\ -\xfd\x9e\x5f\xdf\x0b\xf2\xe1\x8f\xed\x4f\x5c\x07\xfc\x7f\xcb\x91\ -\xed\xcf\x7f\x17\xf8\xec\xb4\x17\xda\x7f\xbc\x08\xf8\xf7\x84\x6b\ -\xda\xdf\xaa\x3f\x1e\xf0\x9a\x6c\x7f\x6b\x19\xe8\xd1\xf1\x4b\xdb\ -\x7f\x3f\x4e\xe9\xba\xb4\xfd\x4f\x17\xc1\x3a\x5f\xf6\x3b\x60\x92\ -\x87\xaf\x07\x0c\xc9\x02\xb2\x9d\x94\x49\x91\xb8\x44\x83\xff\x59\ -\xc4\x20\x63\xf8\xff\x59\xf8\x5f\xb1\x11\x45\x29\xfc\xaf\xa9\x2f\ -\x9d\xd6\xb6\x5b\x66\xd1\x05\xee\x21\x6d\x03\xb6\x9e\x71\x2f\x82\ -\xef\xf0\xab\x1a\x0a\x27\x47\x76\xf2\xf7\x28\x24\x83\xbe\x0d\x9f\ -\xa5\x00\x6c\x8d\xe8\xf0\x5f\x51\x3e\xa1\x35\x6b\xcd\x64\x04\xfe\ -\xed\xc0\x13\xec\xb7\x34\x3e\x97\x26\x36\xfe\x9d\x26\x2b\xe0\x77\ -\x07\x20\xe5\x89\x09\xbf\x1a\x1e\x4e\x9d\x30\xbe\xa3\xe9\x5a\x89\ -\xe2\xa0\xb9\x96\xa6\x17\x35\x63\xc2\x74\x5c\xb3\x98\xd5\xc6\x4d\ -\xdb\x58\x31\xe2\x94\xf2\x66\xd1\xa8\x84\x72\x17\x19\x0e\x4e\x58\ -\x41\x30\x0b\x08\xd0\xef\x4b\xa4\x87\xfe\xe7\x0d\xdb\x4e\x49\x01\ -\xa3\x65\x6d\xab\x5c\xea\xe9\xe9\xa1\xd0\x67\x7b\xd0\x87\xad\x0d\ -\xf4\x7b\x84\x7f\x95\x8f\x24\x39\xf8\x97\x0b\x93\x61\xd3\xcb\xe2\ -\x94\x0d\x98\x94\x41\x52\xf0\x3d\x25\x87\xcd\x7f\xb3\x60\xc2\x97\ -\xf0\xef\x3b\x11\xab\x65\x61\xc2\x45\x12\x4d\xe2\xcc\x09\xee\x61\ -\xbd\x12\x89\xe5\xe6\x0c\xcd\x31\xf2\x46\xca\x35\xd2\x9a\x35\x72\ -\x09\xfc\xa3\xd3\x59\x16\xa4\x1d\xce\xac\xf2\xb4\xf6\x93\x8d\xb0\ -\xaa\x26\x0c\x69\xe2\x34\x34\x5c\x99\x4b\x10\x09\x93\x8c\xe2\x64\ -\x34\x8e\x64\x37\xfc\x4d\xa7\x58\x06\xc4\x04\x0f\x94\x00\x61\x07\ -\x27\x5f\xc4\xc9\x96\xa6\x41\x0e\x95\x27\x4f\xef\x2b\xc1\xf2\x1a\ -\x8e\x96\x2a\xdb\xb6\x01\x2c\x40\xd7\x1a\x16\x3e\xed\xe6\x60\x3a\ -\x69\x2d\x65\xe5\x2d\x9b\xce\x2d\x30\x63\x47\x9d\x1a\x80\x98\x1c\ -\x72\x27\xf3\x06\x4e\xad\x27\x34\x35\x4a\x61\x3a\xb9\x7c\x14\xfa\ -\x1e\x2a\x47\x22\x1c\xad\x9f\x23\x82\x00\x2b\x8f\xd2\x48\xd6\x01\ -\x24\x8b\x64\xbd\xf7\x6b\xfb\xec\x14\x7d\xbe\x89\x3f\x6f\xa7\xf0\ -\x41\x97\xf4\x03\x15\x0c\xf2\x3a\x52\xc3\xf5\x2d\x3e\x02\x00\x84\ -\x35\x78\x66\x98\xec\x20\x9b\x91\x52\x05\x44\x93\x21\x5e\x04\x44\ -\x4b\xf0\x1f\x7d\xa3\x0b\xbe\x19\x82\xc9\x6d\x22\x83\xf0\xb4\xff\ -\xc9\x11\x9c\x14\x1d\x61\xd4\x37\xa9\x95\xfd\xb6\xa1\xbb\x40\x5f\ -\xe0\x0d\xdd\x4e\xf5\x68\xfd\xc3\x3b\x36\x23\x3d\x8b\x7a\xa9\x4b\ -\x1b\xda\xb8\x69\x70\x98\xfe\x99\xb2\x8a\x8e\x6b\xeb\x66\x31\x62\ -\x06\xb3\x61\xaa\xdd\x30\x72\x78\xf7\x36\xae\xeb\x1e\xf2\x76\x67\ -\x2b\x7b\x6b\x1d\xfb\x06\xdf\xbc\xad\xe2\xdc\x0b\x9c\x3b\xe8\xb6\ -\x2d\x2b\x4b\x35\x02\x23\x29\x72\x62\x46\xb4\x71\x63\xd2\xa6\xdf\ -\xa3\x8d\x56\x28\xe7\x5d\xb3\x94\x37\xba\x99\x1c\x1a\xe9\x66\x42\ -\x27\x1e\xb9\x22\x26\xde\x02\x48\x9b\x7c\xc0\xbc\x37\x60\x7d\xbf\ -\x69\xa7\x18\x53\xb5\xb0\x77\xd8\x17\xf8\xca\xfd\x80\xbd\x89\x58\ -\x32\xda\x50\x1a\x51\xb1\x30\x8a\xf3\x29\x2b\xb4\x4b\x49\xd0\xd3\ -\xa2\x4f\x1f\x3c\x23\xf9\xc6\x46\xd8\x86\x27\x76\x02\x3b\xd4\x83\ -\x33\x8a\x58\xed\xf3\x51\xee\x4c\x49\xb9\x14\xce\x20\x48\xa8\xbe\ -\xcd\xc3\x72\xd3\x6a\xae\x5e\xcc\xd2\x2d\xa5\x6c\xdd\xf0\xfc\x8f\ -\x82\xf5\xcb\xe3\xc6\x75\xa5\x34\xf2\x46\x4c\xf6\xe7\x2d\xc7\xd0\ -\x36\x73\x5e\x6b\xe7\xaf\xd3\x2f\x37\x0b\xa2\xf7\xf8\x20\x48\x11\ -\x4d\xe7\xa1\xce\x34\x08\xfb\x38\x04\xc3\x04\x2b\x8a\x9f\x11\x83\ -\x4a\xd0\xb4\xad\x8f\x17\x2b\x0e\xa6\x29\x2a\x77\x0c\x97\x6d\x1c\ -\xc1\xa6\xf1\xdf\x2a\xb1\x5a\x76\x18\x05\x6b\xcc\x08\x69\xde\x01\ -\x23\x2f\xd5\x58\x1e\xd4\x4c\x10\x48\xb4\x0e\x16\xf3\xab\xa6\x42\ -\xa4\xde\xa5\xeb\x9a\xc1\xa7\xa2\xb4\xef\x4a\x86\x9a\x54\xc0\x19\ -\xdb\x2a\x84\x54\xb0\x06\x12\x38\xac\x85\x7d\xe8\x3f\x13\x9b\x79\ -\xe9\x56\x2f\xe0\xbf\x1d\x7c\xe3\xaf\x20\xfc\x22\x98\x5d\x8c\xee\ -\xa0\x26\x67\xe3\xbb\x55\x59\x7c\xab\x64\xf1\xb4\x59\x30\x8a\x8e\ -\x69\x15\xa7\x16\x07\x41\xce\xd7\xe1\x1f\x59\x78\xdb\x55\xf8\x68\ -\x40\x80\xe3\xc2\xb5\x0f\x16\xa8\x80\x6c\x4a\x17\x47\xea\x93\x26\ -\xef\xc1\x8a\x2f\xcf\x47\xe3\xc4\xf6\xa4\x27\x63\x44\x24\xac\x02\ -\xc6\x1a\x2f\x66\x6d\x3d\xad\x6e\x1c\xef\x3b\x04\xf3\x08\x67\xbe\ -\x34\xd2\x29\x1f\xd8\x3e\x31\x55\x3a\x7c\x63\x72\x1a\xd3\x15\x2e\ -\xf1\xb7\xec\xc8\x67\xbb\x3c\xc6\x1c\xe3\x5c\x63\x72\xe6\x65\x6c\ -\xcf\x98\x99\x32\x35\xd5\xd9\xfb\xbc\x4d\x21\xd7\x67\xfd\xfa\x89\ -\x52\xde\x4a\x1b\x91\xf6\x90\xa3\x01\x63\xc2\x22\x98\x05\x90\xe9\ -\xb6\xf8\xb2\x8b\x32\xb2\x53\x1e\x81\x95\x82\xa5\xc9\xe8\x29\xc3\ -\xa9\x48\x92\xd9\xc0\x3c\x42\x6a\xf8\x97\xa5\x01\x1e\x1f\x87\xad\ -\xa1\x48\x7e\xfe\x0d\xbe\x38\x11\xda\x09\x74\xdb\xd1\xf9\xb8\xb8\ -\x4d\xd9\x6e\x98\x09\x75\x99\x91\x25\x38\x59\x0a\xb5\x31\xa6\x08\ -\x3c\x04\xbb\xb7\x97\xdd\x0a\x54\xb1\xc0\x08\xd0\x38\xb6\x9a\x93\ -\x33\x0c\xb7\xa7\xc2\x34\xa8\xce\x37\x40\x1a\x85\xb5\x66\xdd\xfa\ -\xb4\x89\xec\x9c\x64\x6f\xd1\x3f\xf1\x95\x53\x7d\xaf\x48\x6b\x99\ -\xae\x66\x0a\xb9\xdb\x40\x5c\x7d\x73\xf3\xc0\x1e\x43\xe1\x30\xb4\ -\x61\x75\x4c\x90\x97\x0c\xe9\xa8\x91\xe6\x21\xdb\xe7\xd1\x96\xb3\ -\x00\x6e\x58\xa4\x37\x0f\x9a\x45\xd3\xc9\x69\x42\x66\x71\x1b\x8e\ -\x7d\xeb\xc9\xf0\xad\x01\x38\xaa\x58\x15\xe6\x30\xe5\x3e\xcb\xe3\ -\x4d\x36\x27\x55\x46\x09\x85\xa3\x92\xa8\x83\x8d\x83\xc2\x83\xdb\ -\xb3\x6e\xce\x2a\xbb\x5a\x0a\x54\x08\x25\x3d\x23\x60\x34\x52\xb7\ -\xc5\x16\xa5\xab\xc0\x56\x12\x7a\xc1\x51\x50\xfe\x6b\xda\x93\xa7\ -\x4b\xb1\xb8\x8a\x1b\x4b\xf1\x0d\x25\xbe\x8e\xde\x54\x1b\x01\x41\ -\xff\xba\xd5\x09\x05\x1f\x7c\x74\x2e\x17\x51\xea\x66\xf2\x71\xe5\ -\x16\xd0\x63\xca\x8b\xf4\x4f\x7c\xf1\xb5\x88\x17\x67\x2a\xdf\x5c\ -\x20\xb6\x74\x7a\x56\x29\x6a\xd9\xf8\xeb\x90\x3d\x42\x93\x09\x8d\ -\x45\xa5\x81\x09\x86\xb5\xdf\xd6\xd8\xbb\x05\xd5\x79\xe4\xe6\x1f\ -\x31\xdc\x71\xc3\x28\x6a\xab\x98\xae\x77\xa6\xa1\xcd\x52\x56\x69\ -\x32\x8a\xb8\xf3\x38\x71\x1d\x20\x52\x0e\x37\xc2\x58\x40\x5a\xd6\ -\x6f\xcb\x64\x1c\xc3\x55\x4c\x3e\xf6\x05\xbe\xfe\x0f\xa1\xd7\x33\ -\x71\xe5\xc6\xff\x17\xd4\xde\xc8\xe6\x12\x21\xb5\x66\x40\xdb\x30\ -\x79\x6e\xaa\xe8\x3d\xd9\x84\x85\x3a\xf2\x28\x1b\x5c\x9f\xfe\xa7\ -\xdf\xe6\xd0\xc9\x1d\x9d\x31\x91\xaa\xcb\x80\xf7\x4a\x19\x60\x1b\ -\xd9\x72\x5e\xb7\x81\xa3\xf2\x93\xd9\x38\x06\x92\xa2\x6e\xb6\xb3\ -\x77\xb8\xba\xd9\xe9\x47\x5d\xaa\x5b\xfe\x58\x85\x17\xed\x19\x4b\ -\x4b\x1b\x19\x29\x07\x7f\x4d\x93\x5a\x1e\x6a\xcb\xc2\xb2\xd0\x86\ -\xb5\x07\x67\x27\xe8\x10\x29\x66\xc6\x0e\xf1\x04\xa2\x3f\x27\x8c\ -\x86\x34\xdc\xbc\x47\x2b\xbe\xde\x46\x06\xb8\xa5\x6f\xfa\x30\xab\ -\xdf\x61\xb9\x80\x99\xc2\x56\xec\x0b\x7c\xe9\xbb\xca\x4b\x33\x93\ -\x84\xff\x6f\x6d\x76\xb1\xfb\x0c\xef\xdd\x14\xdf\x16\xfe\xdd\xb8\ -\x83\xcd\x31\x5a\xfa\xc5\xdd\x90\x29\xe9\xd8\xfa\xf7\xa5\x42\xc0\ -\x36\x98\x14\x5d\x32\x1d\x89\x25\x11\x48\x0c\xa5\x74\xb6\x58\xcd\ -\xec\x1d\xfc\x9b\x6b\x21\xf1\x8a\xfe\x2e\xec\xeb\xb0\xeb\xa7\xa3\ -\xb5\xed\x78\x8c\x5d\x6d\x65\x6c\xa4\x62\x91\xc7\x48\xff\x9a\x72\ -\xf1\x02\x9c\x78\x05\x35\xc4\x5c\x4c\x6d\x44\x07\x77\x1e\x37\xcd\ -\x0c\x64\x65\x88\xbe\xc7\xc3\x5c\x82\x54\x54\x22\xa9\xd2\x17\x1f\ -\x62\x7e\x99\x17\x1d\x3d\x82\x43\xc2\xaf\x65\x78\x74\x2c\x02\x1e\ -\xd3\x48\x79\xfc\x36\x6a\x75\x0a\x5c\x6b\xd1\xd5\xdb\x87\x6f\x67\ -\xbc\x95\x2c\x73\xfb\xd1\xe1\x30\x1c\xe5\xb9\x28\x3c\xd7\x30\x84\ -\x80\x0f\xf3\x79\x8f\x72\xd4\x8a\x64\x34\xd5\x0b\x40\x3b\x9d\x86\ -\x29\xe1\x09\x4a\x67\xd3\x99\x72\x4a\x7b\x23\x49\x24\x58\x49\x98\ -\xed\x63\x68\x26\x8d\xa2\x2e\xb1\xd0\xb7\x64\x4c\x6a\xf1\xe9\xd9\ -\x7c\x23\xb2\x2d\xc8\x74\x8f\xf4\x35\xbb\x86\x84\xdb\x3b\x6e\xd9\ -\xa3\xd4\xd2\x2d\xe5\x75\xb0\x7f\x33\xe0\x78\x65\x0d\xab\x60\xb8\ -\xf6\x24\xdb\x62\xdc\xab\xf5\xe1\xba\x9d\x3e\x5b\xc3\xf2\x19\x51\ -\xb8\x72\xdc\xa4\x91\xaf\xbc\x56\x05\x58\x9a\x6c\x51\x54\xc2\x2a\ -\x90\x7e\xdd\x7c\x27\x51\xbf\x92\xc9\xde\x31\x9c\x6a\x81\x13\x63\ -\xcc\xcb\x1e\x4c\x3f\xa0\xbd\x5c\x28\x85\xa1\x9c\x5e\x32\xb4\x55\ -\x03\xda\x98\x69\x8c\x83\xeb\x95\x89\x0c\x61\x0b\x9c\xe9\xc3\xab\ -\x06\x76\xc2\xa3\x9c\x9f\xab\xe2\xe9\x8d\xd6\xea\x1b\xa5\x0a\xc0\ -\x4c\x6c\x3d\x29\x5c\x6f\x9f\xf7\x1b\x12\x2c\xa5\x29\x74\xe3\x62\ -\x35\xee\x5c\x2c\x52\xe1\x19\x0a\xa0\x28\x16\xe5\xb0\x31\xc1\x6c\ -\x9e\x24\xf7\xbb\x1d\xc5\x35\xac\xa3\xbf\x46\x3d\x7c\x2a\xc6\xe0\ -\xcb\xc0\xbc\x05\xf8\x4c\xa3\x75\xce\xa2\x10\xdd\x64\x05\xa7\x9d\ -\xc3\xe5\xee\x28\x5f\x47\x89\xe2\x31\xc3\x56\x16\x14\x29\x17\x33\ -\xe5\x14\xe0\xa7\x6d\xb1\x58\x98\x64\x01\x1f\x09\x9f\xe8\xe7\x0f\ -\xd0\x19\xd0\x07\xb8\xe1\x31\xe4\x83\x2c\x65\xba\xc0\xa9\xdb\x87\ -\x95\xdc\x4e\x69\x6e\xaa\x51\xcf\x93\xc9\xe2\x4a\xf2\x9e\x2d\x85\ -\x98\x89\xf4\xf0\x57\x30\xbc\x98\x80\x55\xb1\x43\xfc\x71\xb7\x15\ -\x81\x46\x9e\xee\x8b\x37\xa3\x1e\x6e\x8d\x0b\xcc\xfc\xf8\x57\xa6\ -\xe3\x51\x92\x8e\xae\x59\x2c\x1b\x1e\x11\xe7\x05\x86\xc4\x5f\xbd\ -\xe1\xf2\x15\x09\x38\x56\x05\x8d\x38\x64\x2c\xf1\xf8\x27\xdb\x32\ -\x68\xb0\x48\x09\x15\x20\x9d\xc4\x58\x92\x2d\x65\x15\x0a\x7a\x31\ -\xcd\xe8\x56\x7d\x12\xf7\x44\x4c\x62\x9c\xcb\x89\x2c\x7c\x4b\xa7\ -\xe2\x47\x7f\xda\x92\x85\x04\xfd\xce\x71\x0c\xff\x1b\xb0\xa5\xe9\ -\x24\x0b\x44\x26\xea\x32\x28\x20\x5d\x2f\x79\xe2\x78\xd3\x1e\x1c\ -\x1a\xd7\x4b\x8e\x96\x36\x1d\x10\xc8\x93\x5a\x81\xce\x37\x42\x22\ -\x79\x3e\x22\x0d\xfb\x66\x6c\xaa\x66\x68\x12\x2e\x93\xd7\x5d\xea\ -\xe5\xa3\xc4\x3a\x46\x25\xc8\x00\x03\xe8\xd1\x63\x39\xd9\x85\xf6\ -\x08\x9b\x5b\x98\x16\xca\x62\xca\xbc\x1b\xe7\x1f\x15\xb9\x29\x07\ -\x6a\x01\x39\x61\xf3\x50\xf2\x84\xb4\x7b\x87\x6d\xb3\x60\x4c\x28\ -\x66\x1b\xfb\x82\xbe\x52\x73\x86\xf7\x0a\x4b\x10\xb1\xb0\x38\xa5\ -\x24\xcd\x15\xaa\x7e\x67\xdc\xd5\x11\x16\x99\x8c\x66\x02\x32\xa8\ -\x24\xcb\x3c\x96\x2a\xdc\xb6\xa2\xb7\x6f\x18\x83\x96\x38\x8b\x33\ -\x65\xcb\x04\xad\x5f\xc4\x0a\xb1\xea\x06\x2c\xb5\xae\x80\x7d\x26\ -\xd2\xf2\x0c\xff\x60\xde\xd3\x1f\xed\x66\x38\x8a\xa7\xd9\x7c\x8a\ -\x5c\xf3\x31\x63\x36\x68\xe9\x8d\x8a\x59\x78\x24\xbe\x9e\x52\xd4\ -\xa1\x91\x54\xd8\x2a\x46\x31\x3a\x1f\xdd\xc5\x7f\xb7\xcb\x34\x40\ -\x4b\x43\x5e\xb0\xbe\x18\x70\xe5\x1a\x80\x8a\x7f\x47\x98\x7a\x9e\ -\x9d\xe7\xa0\x8d\xc7\xf3\xaf\x3c\x70\xae\xb1\xf4\x6f\xd1\xb2\x0b\ -\x7a\x9e\x19\x82\x66\x71\xcc\xb0\x7d\x69\x24\xb9\xca\xa4\xd7\xd3\ -\xf6\x9a\x2f\xe2\x13\x4d\x0f\x66\x0d\xa7\x99\xa4\xf5\xe6\x78\xc4\ -\xf9\xc5\xb4\xa5\xe5\x75\xc7\x55\xc3\xf7\x3c\xef\x41\x7f\xf3\xc2\ -\x52\x97\x55\x48\xdb\x08\x4e\xf2\xc7\x9c\xa2\x92\x51\x41\x9c\x84\ -\x84\x60\xbf\xba\xde\xff\xb3\x77\x7c\xb1\x49\x0f\xdf\xd5\x14\x27\ -\x91\xc0\xa2\x58\x63\xea\x4a\x52\x30\x53\x31\xb5\x15\x35\xa7\x97\ -\x7c\x15\x0f\x33\xf1\x53\x1c\x2e\x97\xd4\x38\x7f\x0a\xa9\x3d\xc6\ -\x29\x24\xf7\x06\x83\x9c\x47\x9e\xf4\x47\x5e\x85\xec\xb3\x7c\x3e\ -\x8f\xd8\x33\x6a\x06\x41\x62\xeb\xdf\x51\x0a\x26\x1e\xad\x3e\x70\ -\x8e\x85\x8c\x56\x31\x69\x60\x15\x0d\x64\x5f\xe0\x4a\x64\x33\x0c\ -\xda\xc2\x43\x54\x24\x22\x83\x66\xcc\x7c\x1e\xfe\x46\x76\xc6\x27\ -\xcb\x45\xd3\x35\x64\x3e\x81\x47\x29\xce\x2f\xc9\x6c\xc2\x5c\xb2\ -\x0d\x36\xec\x38\x32\x83\x1d\x91\x22\x6c\xe0\x0f\x57\x78\xfd\xa3\ -\xd3\x4e\xa3\xbf\x9b\x50\x70\xdc\xf4\xf9\xd9\x15\xd3\xe7\x94\x54\ -\xd3\x8a\x08\xef\x82\x17\xb8\xf9\x27\x62\x13\x69\x69\xfe\xd1\x5f\ -\xa3\x1e\x1e\x84\xa9\x45\x33\x95\x5f\x61\xaa\xd9\x50\xf6\xcd\xba\ -\xc8\x6a\x86\x45\xfd\x62\xc9\x85\x1a\xa4\x43\xa1\x06\x5c\x27\xcb\ -\x1c\x8e\x94\x58\x0c\x5b\x6a\xce\x7f\x89\xc4\x1d\xe5\x2a\x5b\xec\ -\x4a\x83\xb5\x23\x6c\xa0\x47\x1c\xd0\x73\x3c\xa1\x1c\x56\x9f\x0d\ -\x7d\x79\x97\xea\x4c\x0a\xe0\x3d\x1b\xca\x66\x6f\xef\x80\xa9\xe7\ -\xad\x2c\x7c\xe6\xb3\x43\x86\x4b\xd3\xb8\x0e\x02\x46\x50\xeb\x00\ -\x54\x1e\x89\x65\x23\x8e\x6a\x7c\x75\x08\x76\xfe\x06\xa2\x61\x75\ -\x8c\x8b\x3e\xa9\x94\x38\x16\xec\xe0\xa0\xbb\xb7\x10\x86\x36\xec\ -\x22\x30\x81\x36\xb4\x73\x83\xb6\x5d\x77\xe9\x9f\x8e\x96\xb7\x52\ -\x9e\x87\x17\x03\x25\x9b\xa3\xc4\x44\xa8\xc6\xab\x8d\xc6\x7c\x46\ -\x70\x94\x98\xe9\xac\x64\xe2\x7b\x30\x0c\x14\x10\x8c\x66\xdd\x84\ -\x95\xfe\xd0\xe7\x97\xc9\x64\x59\x5f\x7e\x5c\x9f\x74\x90\x49\xe9\ -\x6a\x08\x51\xd0\x09\xd6\x88\x3e\x02\x5a\x0b\x7f\x00\xf2\x6a\xa3\ -\xc6\xe4\xb2\x98\x13\x4a\xc2\x84\xa8\xa5\xa1\x2b\xb5\x1f\x89\x3e\ -\x1b\x5e\x89\x09\x60\x2e\x2c\x13\xb5\x5f\x47\x51\x34\xd2\x20\x4f\ -\x0e\xe6\xb1\x5a\x7a\xbe\xeb\xf4\xd4\xa8\x03\xa2\x3e\xa7\xad\x7e\ -\x57\x20\xd7\x44\x81\x5c\xf3\xae\x40\xae\x8d\x02\xb9\x36\x26\xc8\ -\x6b\x03\xf6\x34\xab\x17\x10\x91\x17\x87\xbb\xaa\x54\xdb\x06\xa3\ -\x68\x23\xc8\xc7\x69\x8f\x35\x4e\x81\xdd\x58\xd9\xd6\x5a\xe6\x49\ -\x37\x96\xab\xb6\xb8\x00\xb1\x89\xdf\x5d\x38\xbb\x3f\x67\xa4\x46\ -\x59\x80\xc5\xcc\x68\x93\x56\x59\x1b\xd7\x69\xa1\x22\x0d\xf8\x83\ -\xf8\x03\x46\x39\x65\x80\x89\x7e\xac\xc0\x1b\x31\x34\xb3\x50\xb2\ -\x6c\xaa\x55\x5c\xcb\xea\x89\x39\xed\xa7\x2b\x4e\xdb\xe4\x7b\x40\ -\x86\x8c\x34\xf4\xc9\x29\x1f\x77\x73\xbf\x87\x72\x75\x81\xff\x36\ -\x82\x5b\x55\x2a\xc0\x4e\x84\x24\xc4\x78\x16\xe1\x89\x4d\x2d\x02\ -\x56\x42\x99\x2c\x47\xb2\x14\xf8\x2e\x11\x49\x67\x0b\x4d\xa9\x71\ -\x24\x91\x20\x2f\x1d\xf7\xb0\x8f\x70\x68\x0e\x78\x64\x1b\xaa\x42\ -\xb6\xa2\x55\xec\x2e\x82\x67\x91\xd6\x46\x40\x4e\x8c\x02\x05\x47\ -\x8c\xac\x59\x2c\xb2\x6a\x13\x5a\xf6\xa7\x2d\x8f\xa2\x65\x4c\x52\ -\xce\x56\x2b\xaf\x7c\x9b\xa6\x91\x15\x1b\xc5\xde\x31\x41\x48\x6b\ -\x42\x90\xe2\x6e\x94\x20\xa4\xb5\x21\x48\x71\xf7\xc7\x19\xe4\xdc\ -\x50\x29\x26\x5d\x0c\xea\x67\xed\x0b\x08\xcc\x50\x41\xa7\x37\xea\ -\xb1\xfd\x58\x55\x59\xd0\x4b\x25\xa4\x2d\x9a\x86\x58\x73\x19\x13\ -\x8d\x2e\xa5\x22\x54\x68\x5f\x9d\xab\xb8\x2c\x70\xaa\xac\x49\x2a\ -\x2a\x5c\x31\x47\x0e\x4b\x17\x1b\xec\x28\x23\xe6\x78\x0b\xb0\xb4\ -\x40\x0d\x49\x47\x69\xc2\xd6\x7e\x61\x5a\x4c\x43\x1f\xce\xe5\x46\ -\x84\xc3\xfd\xb6\x54\x40\xc7\xb5\xa8\xb1\x92\x98\x30\x97\x47\xc3\ -\xe4\xde\x40\xd6\x53\x4f\x40\x3e\x95\x38\x4a\x1c\x07\xcb\x5e\xa7\ -\x41\x1c\x16\x71\x92\x95\xc3\x0e\xb7\x3f\x64\xa4\xf0\x18\x1f\x7c\ -\x0c\x16\x6b\x74\x1b\xc6\x1c\xe4\x34\xc5\xad\x2a\xa1\x61\xa3\x2b\ -\x11\x61\xa6\x81\xab\x85\x45\x8f\x65\xc6\x22\x8d\x5a\xeb\x34\x0c\ -\x6c\xa6\xd4\x28\x68\x0c\x04\xa8\x75\xb5\x1b\x4c\xbe\x6e\x50\xe9\ -\xc2\x63\xd5\xb9\xad\x5a\xe2\xf4\x95\xac\x30\x67\x60\xf7\x20\x0d\ -\xe8\x14\x74\x70\x7f\x4a\x74\xca\x71\xc7\xa1\xa1\x67\xce\xb8\x9e\ -\xb9\x1e\x5e\xad\xd6\x01\x23\xa3\x83\xd1\x3b\xad\x85\x1a\x8e\x00\ -\x9d\x23\xac\x06\x98\x29\x23\x19\xdd\x62\x2e\x9f\xe3\xc9\x61\xb1\ -\xb5\x7d\xa5\x62\x3e\x0a\x9f\x28\x50\xca\x19\x66\x36\xe7\x62\x38\ -\xcb\x05\x1f\xdc\x41\x03\xd6\xab\x61\x8b\x4b\x87\xa5\x11\xc8\x56\ -\x93\x29\x47\x88\xe1\xa7\x2b\x4b\x96\x47\x0e\xe4\xc0\x30\x3a\xd7\ -\x66\xc2\xc6\x97\xc6\xd4\x5c\x31\x98\x6b\x14\x4a\x79\xca\x57\x58\ -\xcc\xf4\x2e\xa6\x96\x47\xaa\xba\x5c\x96\x4d\x52\x59\x13\x9e\x1a\ -\x25\x27\xd0\xb5\x18\x77\xa0\xe8\xa9\xc9\xa5\x55\x16\x5f\x46\xc3\ -\x7c\x83\xb1\xb5\x8c\xbd\x45\xa2\x86\x0b\x64\x76\xbc\x81\x8e\x16\ -\x03\xf9\x52\x35\x31\x87\x1a\x24\xdb\x79\x45\xbd\x5a\x5b\x2f\xd9\ -\x37\x82\x51\xe1\xdb\xa5\xc8\x41\x2c\xde\x86\xd9\x30\xe9\x49\x78\ -\x75\x8d\x8e\xb6\x54\xdb\x6c\x80\xe7\x6b\x83\x81\x65\x5b\xe3\x9a\ -\x23\xea\xf0\x63\xa0\x75\x6a\xb0\x98\x92\x88\xea\x59\x96\x66\x37\ -\x79\xd1\x69\x37\xda\x50\x94\xa7\x74\x52\xf6\x90\x98\xaf\x20\x51\ -\xb2\x8d\x94\x49\xff\xa9\xe5\x8d\x31\x23\xae\xdd\xde\xa2\x14\x05\ -\x4b\xc3\x23\x31\x60\xb9\xb1\xad\x0e\x15\xc4\x1a\x3f\x88\xb8\xe6\ -\x86\x0a\x62\xad\x1f\x44\x5c\x3b\xa3\x93\xfb\xb2\x19\xcf\x08\x65\ -\x5b\x23\x83\x06\xbf\x11\xa1\x7c\x8f\xc2\x97\x69\x08\xc5\xb0\xa9\ -\x3d\xec\x85\x71\x63\x09\xc6\x53\x30\xdb\x15\x76\xf1\x68\x3c\x35\ -\x68\x9d\x4b\x73\xb8\x84\xc1\xff\x49\x0f\x2b\x0d\x4d\x5b\x37\xa0\ -\x7a\x96\xac\x9f\xa0\x56\xa4\x06\x86\xba\xf0\xee\xc0\x6e\xa7\x15\ -\x2b\x0c\x4f\x83\x56\xea\xc5\xc4\x74\x55\xe4\x16\x0b\xe3\x3d\x06\ -\xb4\xc9\x07\xf3\x4d\x83\xa6\x92\xcc\x1d\x99\xd4\xd2\x6c\x03\xc6\ -\x1c\xfa\x74\xf4\x92\xb3\x48\x7c\x16\x0a\x64\x01\x4c\x97\xef\x70\ -\x96\xdc\x67\x1a\x23\xef\xd9\x62\x2a\x02\x73\x37\x18\x45\xc3\xd6\ -\xf3\x1a\x5b\x2a\x31\x44\x6c\x61\x16\x1e\x7f\xaa\x11\x67\x8b\x11\ -\x9d\xe9\x8d\xd5\x49\x36\xa0\xe4\x1f\xe1\x61\x69\xb5\x08\x84\xe5\ -\x30\x83\xec\x37\x7b\x43\xde\x1a\x81\x81\x68\x85\xc0\x74\x58\x6f\ -\x3e\xd9\x81\x9e\x2b\x63\x2f\xca\xf0\x61\xbb\xb5\x65\x83\x6d\xa6\ -\x35\xa7\xa4\xa7\x78\xd9\x6f\x2c\x49\xb4\x19\x4d\x3d\xe1\x2f\x09\ -\xc3\x4c\x32\xb1\xc9\x4b\x38\x14\x7f\xcd\x1b\x71\x1e\xa6\xed\xb5\ -\xbc\x3e\x69\xd8\x3c\x2c\xc9\x9c\xa5\x78\xa3\xd7\x1c\xef\x65\x7b\ -\x29\xe5\xe4\xc9\x01\x35\x70\xa8\x63\x0e\x57\x9c\x1a\x28\x73\xa1\ -\xac\xfa\x85\x22\x1c\xe4\xb3\xe6\xbd\x98\x1a\xf3\x2a\xcf\xe0\xc1\ -\x22\x11\x50\x3a\x8b\x7b\xa9\x19\x9c\x9f\x29\x0c\x33\x0e\x65\x8c\ -\x9b\x6c\xe2\x6d\xe9\xc0\x88\x20\x6e\x5a\x71\x60\x44\x80\x3c\xbc\ -\xe1\x54\xe1\x94\x43\x98\x29\x8c\x3d\x84\x03\x57\xfb\xe4\x46\x24\ -\xa2\x90\x5c\xd2\xf9\xc6\x8d\x86\x6d\xa0\x7b\x9a\xd2\x8b\xb0\xc2\ -\x20\xf3\x33\x93\x58\xf1\x4f\x0b\xb9\x2c\x5a\xac\x00\xda\x1e\x1c\ -\x0a\xaa\x1f\x69\x88\x8b\xfa\x2c\x8e\xfa\xe5\x19\x25\x16\xf4\x3a\ -\x8b\xee\x66\xf8\x0a\x4d\x4d\xf0\x73\xc1\xee\xa4\x20\xc1\x87\xd5\ -\xd3\x69\xe6\x64\x61\xc8\xd9\x05\x63\x4c\xb7\xd3\x7c\x0b\xc2\x63\ -\xa9\x9c\xc6\x41\xc4\xdd\x1c\x07\xc8\x26\x6e\x81\xa9\xfe\x1e\x23\ -\xa2\x89\x99\x26\x96\x33\xda\x47\x58\xf5\xbc\x2c\x1a\x94\x8c\x1e\ -\x74\xe8\x65\x9e\x4e\x2c\x87\xa8\x30\xa2\x04\x93\xf9\x0c\x5f\x26\ -\xc2\x23\xe3\x49\x9b\x32\x5a\x8a\x7a\xfc\x46\xba\x0b\xa8\x97\xa5\ -\xdb\x65\x9c\x0a\x3b\xea\x60\xea\xb6\x36\x9e\x33\x8a\x98\x73\x88\ -\xbf\x7f\xde\x09\x4c\x52\xc8\x16\x7f\xac\x2f\xed\x9b\x68\x06\xf7\ -\x96\x81\x81\xca\x34\xd7\xfa\x16\xf2\x9d\xd8\x73\x59\x74\x93\x45\ -\x72\x82\x19\xb3\xa3\x44\x4d\x58\x8c\x11\xdd\xe3\x97\xea\xc7\x1c\ -\x58\x54\x59\x10\x90\x06\xcc\xf7\x49\xe5\x83\x81\xf7\xed\x48\x70\ -\xe6\xa0\x74\x29\x31\x9d\x51\x22\x0e\x81\x0a\x32\xa7\xd1\x93\x66\ -\xef\xa9\xc7\x54\x0d\x95\xb0\x19\xdb\x30\x52\x3a\xa7\x2c\x2d\xa4\ -\x01\x9e\xba\x04\xe3\xed\x29\xf8\xff\x94\x99\x56\x8e\x58\x31\x99\ -\x81\x29\x8b\x1e\x6d\x9d\x31\xae\xdb\x46\x17\x0b\xc7\x50\xae\x74\ -\xf5\x51\x83\xd6\xe8\xe4\x80\x9b\xf9\xe1\xd7\x18\x4b\xf2\x28\x2a\ -\x00\x27\x10\x9c\x8a\x5a\x14\x0d\x0d\xad\xae\x10\x97\xc5\xa9\x9e\ -\xaa\x14\xb1\x63\x8b\xf7\xba\xcf\x1e\x30\xb8\x38\x10\xf6\x00\xb3\ -\x22\x82\x56\x81\x54\x12\xe7\x6d\xca\xf0\x98\x94\xa3\xf0\xab\xa2\ -\x94\x95\x8d\x8d\x31\x3d\x46\x6b\xd8\xc4\xc6\x04\x0f\x44\x81\xe5\ -\x70\x4a\xda\x33\x1e\xe2\xca\xe3\xdd\x11\xa4\x73\x2a\x6c\x5d\xc9\ -\xcf\x8c\xff\x4e\x54\x74\xdf\x89\x6a\xdc\x83\x93\x24\xc7\xa5\x23\ -\x2b\x2e\xcc\x70\x9b\x5f\x25\x7b\x9a\x9b\xe5\x39\x4f\x14\x58\x48\ -\x62\xc6\xef\xc1\xfa\x89\x14\xf2\x72\x81\x43\xb5\x60\x4c\x07\xb9\ -\xf9\x5c\xa5\x0c\x53\xc5\x41\x70\x33\x8b\xc5\x47\xb3\x43\x34\x3e\ -\x6a\xa1\xb7\x8e\xb8\x30\x1a\x08\x1c\x7d\xc9\x59\x22\x02\xb6\x05\ -\x22\xce\x2d\x02\x56\xde\xd2\x5a\x51\x4b\xeb\x19\x03\xde\x3a\x8e\ -\x1a\x25\x57\xd3\x53\xb6\xe5\x38\xa2\xcc\xa3\x4b\xb3\x40\x32\xdb\ -\xe3\xa6\x63\x78\x95\x1f\x5c\x7a\xf1\xd4\x80\xab\xdb\xd4\xb0\xd5\ -\x8a\x56\xf7\x74\xcd\x8b\x97\x66\xb0\x67\xc4\x21\x2e\xfa\xbb\x9a\ -\x09\x0d\xef\x19\xc6\x38\x65\xfe\x3e\x2b\xca\xf2\x15\xe6\xe1\xc2\ -\xed\x45\xb2\x89\x25\x60\xe4\x16\xe7\x59\x9c\x2a\xb2\x5f\xec\xaa\ -\x50\xbd\x89\x47\xf4\x4c\x14\xd1\x65\xb5\xa2\x54\x00\xb0\x6b\x78\ -\xd6\x14\xfe\xc5\xcd\xde\x1e\x6d\x9b\xa0\x3b\x15\x4d\xc6\x64\xf0\ -\x0d\xaf\x06\x25\xe6\x26\x9b\x3f\x03\x5a\x8b\xad\x56\xe6\xf3\x95\ -\x49\x28\x46\xcd\xa8\xc3\x95\x51\xf9\x6e\x35\x97\xaa\x79\x50\x0c\ -\x34\x8f\x2b\x68\x4f\x5c\x1b\x81\xb1\x08\xe9\x77\x71\x5c\x04\x5e\ -\x41\xc8\xb2\x92\x44\xc3\x74\x32\x0b\xe6\x33\x8d\xce\x30\x96\xd9\ -\xde\x34\xc6\x1e\xa9\x48\x91\x0a\xe5\xca\xa8\x15\xc3\xf0\xbc\xca\ -\xf0\x3c\x17\xe6\x1d\x02\xf5\x96\x94\x2a\x0c\xa1\xc8\x7b\x34\x80\ -\x55\xb4\x5c\xe5\xfd\x11\x96\x2e\xc3\xe8\xae\x55\xcc\x4f\x32\xc5\ -\x0f\xae\xb4\x83\xa7\x9e\x68\x42\x38\xae\xb2\x59\x0a\xfa\x3f\x9c\ -\x98\xa1\x39\x8a\x68\x8b\xb9\x6d\x13\xa6\x0a\xb4\xe5\xd3\xb1\x93\ -\x61\x09\xb6\x01\xc1\xfa\x48\x54\x0a\x29\x22\x31\x24\xbd\x0d\x3e\ -\xda\xb6\xfe\x3e\x96\x06\x8a\x1d\xa1\xd9\x14\xca\x9a\xb0\x22\x91\ -\x49\x74\x7f\xcb\x34\x3b\x19\x9a\x13\xb8\x01\x56\x39\x76\xa0\x74\ -\x9e\x6f\x0c\xa5\xf9\x81\xf4\x67\x38\xdc\xe9\x44\x56\xde\x27\xeb\ -\x32\x15\x56\xac\x14\xe8\xa9\x46\xbb\xe3\xf8\xe8\xef\x22\x36\x39\ -\xdf\x37\xc5\x15\x64\xbd\xb4\x0a\x64\x84\x96\x0d\xb3\x82\x39\xff\ -\xb1\xf9\x61\x93\x17\xea\x60\x1e\x6e\xbc\xc8\xd1\xbc\x4d\x45\x4c\ -\x84\xe7\x67\x18\x37\x5a\x02\x7e\x56\xb8\xc6\x7a\xd4\x33\x86\xfc\ -\x81\x84\x56\x5a\xc2\xe2\xd5\x53\xc7\x1c\x42\xc3\xb3\x76\x45\x5c\ -\x42\x9a\x16\xdc\x04\xee\xdd\x36\x9c\x0e\x8b\xa6\xcb\x94\xf8\x91\ -\x9b\x0d\x70\x4d\x3a\x37\x0d\x6d\xf3\xdc\x95\xb8\x89\x6f\x0d\xfc\ -\x4e\x0b\xcb\x72\xd2\x81\x32\x1e\x3a\x87\x51\x45\x75\xcc\xde\x42\ -\xd3\x34\x58\x54\xa8\x01\xa1\x62\x4f\xe3\xef\x2b\x8e\x10\xb4\x31\ -\x4c\x2e\x23\x44\x05\x3b\xf3\x0b\xd5\x62\xbb\x0d\x44\x54\x08\xe4\ -\x3c\x6f\x59\xd8\x1a\xec\x30\x8e\x38\x4f\xa5\xa1\x28\xa5\x4a\xe5\ -\x12\xc2\xbc\xd9\x60\x85\x89\xc1\xdf\x09\x63\x26\x85\xef\x79\x74\ -\xce\x6c\xca\x42\x5c\xb2\x42\x2d\x90\xc8\x20\x89\xed\x1e\x6d\x88\ -\x7b\xa0\x39\xea\x96\xe6\xac\x71\x0d\xac\x91\x49\xcd\xf9\x60\x59\ -\xa7\xb5\x47\xa2\x2a\xa5\x20\xc0\xc4\x15\xa6\x1d\x98\xbc\x99\x40\ -\x61\x20\x5b\x6b\xf8\x2a\xcf\x64\xe6\x64\x8b\x3e\xa1\xb1\xd2\x13\ -\x6d\x48\x16\xbf\xc5\x18\xa5\x91\x13\x54\x39\x94\xb9\xd5\x8a\x1d\ -\x51\x5e\x20\xde\x46\xee\x74\x10\xc3\x3c\x17\x37\x92\x37\xdb\x28\ -\x44\xad\x33\xa3\x3b\xae\xe1\xb8\x31\xd9\xb2\x66\x90\x6c\x55\x72\ -\x46\x79\xd4\xb2\x54\xaf\x4a\xcd\x1c\x38\xc9\x42\x64\x1d\x5e\xd4\ -\xc9\xf5\x20\xab\xf9\x03\x54\xaf\x7b\xb6\x59\x54\xc5\x9c\xaa\xf5\ -\xe5\x09\x10\x99\xc3\xaa\xe6\x1a\x30\x8b\x45\x0d\x68\x88\xa4\xbf\ -\x38\x07\x54\xc9\x59\x55\x4f\xbf\x6a\x5e\x28\x45\xcc\x31\x9c\xdc\ -\x8f\xc4\xdc\x5b\x85\xcb\xb7\x62\x35\x66\x7e\x12\xbc\xa7\x0c\x08\ -\x3e\x34\xb4\x15\x43\x01\xed\x39\xfa\x25\x6d\xec\x93\x35\x5c\xaf\ -\xd2\x0e\x6d\x06\xb4\x3f\x58\x52\xce\x67\x86\xd0\x77\xf0\x54\x90\ -\xcf\x82\x1c\x51\xea\xf4\xcc\x22\x2c\xbb\x9e\x8e\xcb\xf6\x4b\xb8\ -\x76\x8f\x99\x32\xa4\xca\x7c\x46\x29\xc3\xd3\x61\x1c\xd6\x83\xc1\ -\xe4\x6c\xcb\x18\x42\x26\xea\xfd\x85\x8d\xe1\xe4\xd9\x82\x6d\xb6\ -\x99\x35\x8b\x18\xbf\xa4\x29\x72\xaa\x15\xa7\x9b\x47\x6b\x01\xb3\ -\x4f\x1c\x25\x94\xb3\x4a\xec\x98\x66\x02\x89\x86\xfc\x62\x12\x0c\ -\x03\x62\x33\x21\x58\x09\x1b\xb5\xe8\x8a\xe0\xf4\xd7\x2d\x57\x26\ -\xdd\x08\x0f\xf1\xa4\xb9\x33\xc8\x6c\x5e\x35\xef\x24\x22\x0c\x0e\ -\x72\xb1\x13\xc0\x79\xe5\x90\x3e\x66\x78\x25\xc6\x11\xc4\x16\xce\ -\xa1\x43\x6d\xd6\xf8\x33\xda\x1a\x79\x60\xa9\xda\xbe\xac\x2a\x7f\ -\x64\x49\x22\x3f\x50\xe5\xdb\x17\xbe\x3d\x17\x5b\x33\x0f\x79\x87\ -\xac\x8b\x44\xc4\x55\x19\x31\x29\x09\x65\xb6\xaa\x61\x68\x5a\x75\ -\x65\x53\x01\x5e\x13\x04\x1c\x37\x8b\x35\x15\xe0\xb5\x41\xc0\x71\ -\x73\x5b\x4b\x7d\x35\x34\x62\x05\xfc\x75\xfd\xa6\xda\x7a\x68\x88\ -\xfa\x43\xd3\x49\xf4\xd3\x56\x46\x45\x1e\x60\x0f\xa7\x2a\x1a\x87\ -\x78\x49\x61\xec\x0a\x95\x73\xbd\x62\x46\x11\xcc\x34\x95\x44\x2e\ -\xc3\xcf\xa6\x3d\x96\x62\x42\x9c\x03\xc6\x3c\x2b\xe6\xf0\x4e\x96\ -\x49\xec\x86\x75\x67\x54\x1c\x26\x8b\x55\x18\x32\x40\xd8\xa9\xa7\ -\x60\x81\x0e\xab\x89\xdf\xe7\x09\xc6\x2c\x2e\x20\x2f\xc1\xf4\xc6\ -\x7b\xcf\xb0\x77\x86\x89\x47\xde\x80\x32\x66\xc6\x04\x0e\x1f\x35\ -\xe2\x5a\x85\x5d\x1c\x09\xe6\xc2\x77\xc7\x1c\xfa\x28\x3a\xb4\xce\ -\xaa\x67\xa7\x3b\xe2\xe7\xf9\x88\xd3\xa8\x83\x22\xfe\xb2\x6a\xe6\ -\x71\x32\xbb\x52\x90\x4c\x0a\xb2\x60\x3c\x59\x3d\x18\x30\x81\x36\ -\xab\x1c\x59\x55\xf4\xd1\x82\x52\x32\x73\xdf\x30\x6a\xe6\x60\x1d\ -\x16\xab\x16\x01\x1e\x72\xf2\x3a\xba\xfc\xe9\x89\x0c\x7b\x8c\x87\ -\x92\x3d\x01\x19\x57\x22\xde\xc6\x09\x14\x4e\xdf\x04\x4b\x3b\xa6\ -\x26\x4b\x30\x0b\x21\x43\x80\x92\x2c\xc2\x76\x64\x91\x94\x32\x46\ -\xb5\xd4\x88\x8b\xbf\x2d\xc5\x99\x94\x0c\xe9\x60\x11\x09\xcc\xb3\ -\x0c\x72\x16\xa3\x16\xec\x94\x2a\x50\x42\xd7\x60\xe6\x22\xe8\x31\ -\xad\x3a\x93\x7d\xe0\xab\xa8\xf1\x4d\xd1\xce\x28\x4d\x98\x47\x29\ -\x0e\xdd\xc8\xd5\x93\x89\x76\x26\xf1\x68\x2c\xf6\x2d\x24\x9a\x49\ -\x58\xb1\xb6\x30\x90\x19\x49\xc6\xd0\x9c\x5c\x09\xff\xbf\x12\xfe\ -\x3b\x19\xfe\x7d\x26\xa1\x61\x70\x69\x30\x6f\xa1\x13\x2d\x96\x0b\ -\x23\xb4\x0d\x52\x06\xa6\x9c\x32\xc1\x72\xa3\x8b\xca\x52\xf5\xcc\ -\xe6\xb0\xec\xb4\x59\xc4\x5a\x7e\xab\x64\xd8\x3a\x4b\x62\x75\x66\ -\xf0\x10\x4f\x8f\x76\x8a\x76\xa6\xb6\xb2\x67\xe5\xca\x93\xe3\xba\ -\x81\xf7\x28\x6b\x6f\x73\x9b\x5b\xae\x94\xd4\x79\x51\x65\xde\x0e\ -\x4a\x11\x4a\x1e\x91\xfa\x0d\xf6\x58\xd9\x86\x72\x75\x25\x09\x1e\ -\x51\x96\x01\x09\x75\xcb\x75\xf2\x64\xa0\xc9\x0d\xaf\xac\x42\x9c\ -\xad\x94\x38\xb6\x9e\x36\xcb\x0e\x6e\x00\x2f\x78\x45\x4f\x2d\x50\ -\x57\x8c\x3a\xf4\xbc\x57\x0a\xcc\x92\x7e\xbd\x92\x1d\x13\xb4\xe8\ -\x69\x35\x70\x8e\x53\xe0\x8c\x98\x45\x4c\xfc\x19\x71\xa9\xd3\xe3\ -\x51\x87\xe9\x88\xb8\xe2\xea\x68\x8a\xad\x28\x47\x9f\xae\xbc\x5a\ -\xe7\x49\x48\x3f\x79\xfc\x7e\x2c\xf7\xd2\x89\x3f\x59\x18\x3c\x6e\ -\xd4\x81\x88\xb0\x74\xb8\xe7\x94\x1a\x7a\x2a\xc7\x32\x7f\xe2\x34\ -\x43\x0c\xc7\xec\x25\xc0\x4a\xcd\x87\x30\x73\xf0\x7c\xb2\x29\x70\ -\xea\x53\x9c\x9c\x11\x99\x37\xfa\x94\x9a\x03\x16\xcf\x32\x86\x11\ -\xc1\x53\xa5\x7b\x15\xe9\x55\xfe\x66\x55\x05\xa3\xc4\x9f\xc7\x10\ -\x6f\xa9\x49\x2a\xb5\xba\xa2\xbb\x52\xb5\x83\xb7\x7b\x25\x0b\xb2\ -\x0a\x49\x26\xd0\xc2\xa3\x06\x7a\x18\xa1\x5b\xc7\x28\x3d\xee\x95\ -\x52\xb9\x41\x05\x5d\x01\x5b\xb1\x99\x06\xb9\xbc\xa7\xfe\x0e\x2d\ -\x7c\x1f\xc6\xf5\x1b\x45\xe7\x91\x96\x07\x53\x76\x9b\xe4\xd8\xb3\ -\x06\x56\xd5\xf5\x8f\xa4\x42\x8e\x88\x83\x2c\xc1\x37\x58\xa7\x39\ -\x21\xb1\xbc\x66\x3d\x1e\x9f\xfc\xcb\x30\x8f\x34\x53\xcf\xee\xfc\ -\x4d\x2c\x13\x03\x82\x67\x3c\x67\xa6\x58\x23\x03\x96\x05\x87\xef\ -\xcb\x79\x9e\xa3\xa1\xc5\x68\xbd\xda\xb0\x65\xe5\x47\x74\x5b\xc9\ -\xdd\x80\x80\x4e\x19\x98\xab\x63\xef\x88\x82\x12\x0a\x8f\x36\xd9\ -\xa3\x75\xa5\x28\xc1\xf1\xc5\x2e\x1e\xaa\x76\xc1\x96\xf1\xc3\xa1\ -\xf2\x9d\x8e\x3c\x68\x1b\x46\x7f\xdf\x80\x26\xac\x1d\xcd\x99\x04\ -\xdf\xb2\x80\xbb\x9b\x8e\x42\x7b\x91\xc1\xb3\x36\x93\x92\xfa\x74\ -\xaa\x7f\xaf\x8d\x64\xea\x2c\x6a\x22\xcb\xab\xd2\x56\x7d\x1c\x55\ -\xed\x47\xe5\x78\xd4\x33\x83\x82\xd9\x52\x91\x15\xc6\x51\xe7\x6b\ -\xb7\xa8\xcb\x90\x56\xeb\x56\x71\xb6\xf2\xe8\xaf\x77\x32\x90\x53\ -\xcf\x2c\x7a\x67\xe3\xd1\x59\xa7\x54\x8c\xe9\x7b\xcf\xd2\x22\x89\ -\x10\x55\xcb\xc1\x0b\x95\x23\x14\x44\x44\x4d\x66\x05\x1e\x55\x65\ -\x41\xec\xca\x59\x54\x26\x42\x43\xcb\x9c\x3c\x7b\x3e\xc3\x77\xbf\ -\x8a\x1f\xaf\x1e\xe1\x61\x18\xcb\x4b\x90\x75\xc8\xe3\x3e\xf0\xef\ -\x2e\x05\x4a\xd4\x7c\x65\xc1\x64\x18\x8e\x83\x4f\x3b\x1c\x4a\x07\ -\xca\x07\x0a\x39\x03\xff\x16\xc7\x1d\x3b\x70\x89\x69\xd8\xb6\xc3\ -\x77\xf0\x58\xe0\xad\x63\x33\xc5\x3c\xb2\x43\x35\x4c\xbb\xf8\xec\ -\xf3\xa8\x82\x5d\x94\x33\x3a\x7e\x2b\xb1\x08\x42\x97\xb4\x08\x9e\ -\x1d\x51\xcb\x40\x2b\x8d\x48\x65\xf0\x3a\xcc\x37\xa7\x49\x87\xc7\ -\x9e\x6f\x46\xb1\x27\x2d\xb2\xc5\xf2\x74\x6f\x43\xb2\x6d\x1f\x95\ -\x34\xe8\x49\x6e\x92\xc5\x36\xca\x9b\x4e\x19\xa4\x8c\xee\x68\x1d\ -\x78\xf2\xaa\x83\x56\xa6\x08\xf0\x98\xf9\x90\x0f\x38\x60\xf7\xc2\ -\xef\x1d\xb0\xdf\xcd\x4c\x47\x12\x46\xec\x28\x58\x45\xab\x03\x4f\ -\x77\x02\x48\xbd\x60\xe6\x27\x03\xf0\xba\x36\x1a\xf9\x31\xc3\x35\ -\x53\x7a\x17\xbe\xce\x1e\xc5\x81\xf9\x29\x16\x1c\x24\xe9\x7f\xab\ -\x77\x9d\x95\x4f\x77\xc4\x14\x24\x13\xb1\xf7\x50\x44\xe1\x3f\x09\ -\xf7\x4a\x88\x16\x19\x11\xfd\x5d\x64\xb7\xbf\xa8\xb5\x91\x67\x07\ -\x70\x71\x7c\x22\x62\x9a\x49\x89\xbb\x23\x67\xc8\x30\xc9\xa1\x20\ -\x8b\x12\x9d\x72\x5e\x42\x52\x44\x1d\xe2\x92\xf2\x44\x04\xb5\x54\ -\xe1\xaa\x8a\x5f\x26\x50\xfd\x1a\x54\x06\x3b\x37\xa8\x34\x80\xc9\ -\xe5\xac\xb4\x96\xca\x59\x78\x26\x98\xce\x9f\x9d\x51\x12\x05\x62\ -\x4c\x9a\x72\xf1\x8a\x9e\x13\xd7\x34\x31\x05\x67\xcd\xa3\x7f\x55\ -\x92\x58\x3c\xdd\xc1\x9e\x51\x5d\x56\x3f\xc9\xc4\x59\x8b\x4a\xf1\ -\x64\x3f\xb1\xba\x03\xce\xa8\x1a\xe3\xee\x08\x68\xba\xa0\x93\xdc\ -\xe1\xcd\xd4\x3f\xa7\x2e\x22\x8f\xa2\xc9\xd2\x45\xca\xd6\x41\xa7\ -\x5a\xe9\xde\x1b\x21\x98\xc2\x23\x32\xe3\x6a\x84\xc8\x83\x76\x7e\ -\x47\x3e\x86\x3b\x4d\x22\x0a\xbe\x3c\x86\xf9\x59\x6c\x86\x09\xf8\ -\xdc\xf4\xcc\x4a\x65\xfe\xd1\x92\x9b\x32\x01\xcf\x1d\xa3\xe7\x08\ -\x98\x25\xe1\x0b\x65\xc7\xe5\xdf\x68\x7a\x94\x97\xaf\xd4\x37\xe9\ -\x72\x68\x8b\x56\x84\xd1\xb3\xae\x58\xb6\x88\x66\x12\x3f\xfc\x5e\ -\x21\x04\xd0\x93\x8c\xb9\xbf\x7f\x1b\xc9\xcc\xfe\x64\x84\xbf\xe1\ -\x41\xb0\x3d\x74\x77\x48\x9f\x07\xcb\x1e\x64\x12\x25\xf8\xae\xa3\ -\x2c\x3f\xd3\x6e\xa2\xa8\x42\x14\x74\xf4\xa0\x74\x08\xcb\x53\x86\ -\x6d\xde\x4b\x98\xb2\xea\x3d\x3d\x34\x93\x60\x12\x55\x32\xc1\x7e\ -\x95\x09\x2c\xdb\x34\x8a\xac\x03\x92\x68\xc6\xe0\xa9\x2f\xae\xd2\ -\x30\xe6\x00\xac\xe2\x28\x3f\x39\xb4\xb6\x40\xa3\xeb\x00\x5a\x26\ -\xdf\xa3\x89\x03\x1b\x00\x35\x6f\x64\xdc\x2e\x6e\x48\xf3\x41\xd4\ -\x7c\x6d\x5c\x61\xc3\x82\x77\xfb\xb8\x9f\x22\xbb\x13\xf8\xcb\x85\ -\xfc\x76\x3f\xab\xdf\x15\xe2\x26\x83\xce\xb9\xd0\x25\x8e\xb2\xa1\ -\xfc\x6f\x55\x0b\xd9\xb8\x68\x13\x30\x1f\xa2\x48\x64\xe1\xd2\x2e\ -\x05\x23\x75\x6b\xfb\x0b\xa4\x64\x32\x4c\x6d\xd3\x9b\xae\x30\x2f\ -\x7f\xfa\x4c\x58\x29\xac\x97\xa6\xa8\x06\xf5\xa7\xc3\xa8\xa0\x10\ -\x35\x76\xac\x7c\x48\xae\xf2\xa5\xea\x2a\x8f\xe9\xf9\xb2\x41\x9d\ -\x86\x34\x2d\xee\xcf\x94\x8b\x29\xa5\x18\xb8\x8c\x5b\xd2\xb5\xf2\ -\xe0\x4c\x14\x53\x46\x4f\x72\x27\x7d\x9a\xf7\x74\x03\x6f\x3e\x63\ -\xd8\x46\x31\x85\x49\xde\xbc\x35\xce\x72\x64\x0c\xa0\xc8\x82\xb9\ -\x78\x80\x0e\x2b\xa8\x68\xff\xb7\xb8\x49\xb0\xa3\xf0\x7e\x94\x00\ -\x79\x65\x8f\xc9\x61\x81\x51\xec\xa3\xac\xbb\x88\xcf\x9f\x95\x51\ -\x78\xee\xb4\xc5\x04\xb4\x11\xf3\xbd\x92\x41\xa2\x0d\x9b\xe9\x24\ -\xd1\x16\x9e\xef\x04\xfd\x9b\x99\xe4\xd1\x16\x84\x10\x53\x62\x21\ -\x32\x4c\x4e\x07\xa3\xe1\x8e\x98\x50\x2f\xe4\xf1\x97\x6a\xb2\x4f\ -\x4a\x3a\x19\xf2\xf4\xcb\x2f\xe6\xed\x54\x3b\x05\xb8\x64\x27\x17\ -\x17\xaa\x18\xc1\xa3\x64\x8a\x10\x8a\x29\x1d\x3e\x0f\xd6\xba\x3f\ -\xf0\x1a\x7d\x1c\x47\xcc\xc2\x5f\x5c\xa0\xb6\xc0\x88\x3e\xba\x19\ -\x4e\xa5\x8b\x64\x78\x81\x57\x6a\x0b\x53\x86\xa5\xb0\x59\x59\xaf\ -\xaf\xb6\x02\x61\x47\xef\x74\xbf\xf9\x44\xcb\x1f\x64\xc4\x55\xe3\ -\x12\x40\x9e\xbb\x14\x12\x89\x45\x68\xfc\xeb\x12\x1c\x39\xd8\xb4\ -\x27\x68\xf2\xac\xf4\xf4\x85\x9a\x5c\x97\xed\x0a\x72\x44\xe4\x88\ -\x55\x8a\x45\x49\x1a\x29\xa1\xd4\xce\xbf\x22\x1e\xe4\xc7\x42\x4a\ -\xa5\x6f\xec\xa2\xca\x84\x95\x2c\x63\xcc\xba\xc4\x8a\x4e\x40\x87\ -\x83\x89\xc1\x8b\x2d\xa9\x6a\x41\x0b\x80\x66\x70\x31\xb7\x8e\x55\ -\xcd\xac\xae\x44\x1b\x96\xf2\x47\x18\x32\xfa\x84\x59\x28\x17\x40\ -\xf3\x14\xb3\x20\xb2\x40\x8d\x61\xc4\x8f\xab\x33\xf1\xaa\xe8\x39\ -\xe4\x60\xa6\x7f\x25\x8e\x55\xc4\x27\xc6\x73\x16\x75\xb9\x58\x61\ -\x09\x85\x29\xc5\x19\x75\x95\x6c\x1d\x0f\xad\xf2\xd7\xe3\x0a\xb7\ -\x05\xc0\x57\x7b\x08\x0d\xf2\x52\xbf\x92\x85\x92\x47\xb9\x98\x93\ -\x61\xde\xc6\xdd\x7b\xb4\xce\x61\xab\x14\x37\x40\x3b\x1f\xa0\xee\ -\x45\xa8\xc2\xac\x0e\xc3\x4c\xee\xde\xab\x75\x0e\xda\x60\x4f\xc5\ -\x85\x3a\x0f\x30\x65\x50\xf7\x71\x4d\x13\x84\xd9\xb4\x07\x60\x0e\ -\x99\xe9\xd8\x91\xe4\x7a\x64\x0f\x99\xbb\xab\xd5\x63\x9f\x26\xb3\ -\xc1\x27\x62\xd6\x8d\xda\x62\x43\xf7\x69\x45\x79\x51\x41\x75\xd1\ -\xbc\x42\xd9\x19\xb2\x35\x47\x28\xbe\x28\x03\x52\xa9\x0a\xdd\x21\ -\x2c\x2f\x3c\x87\xe2\x7b\x85\xcc\xca\x63\xd3\x58\xfa\x03\x0f\xf0\ -\x29\x75\xc4\xb1\xab\x93\x52\xe8\xde\xca\x32\xc8\xba\x94\x6b\xc7\ -\x2c\xd0\xab\xb9\x76\x46\xb5\xc5\xaa\xa9\x51\xe9\x3e\x07\x61\xf6\ -\x06\x7b\xc6\x52\x35\xe1\x0f\x2f\xab\x41\xae\x60\x9b\x0f\xbf\x18\ -\xf5\x0b\xd0\x2e\x9f\x68\x0c\xfa\x89\x69\x62\x72\x31\x44\x8b\x50\ -\x35\xaf\xf2\x2a\xcf\x0d\x29\x79\x18\x41\x69\x34\xcd\xbd\x33\x21\ -\xde\x2b\xd5\x45\xab\xb7\x7a\x68\xfc\xe8\xa0\x38\xd1\x21\xcd\x2d\ -\x2a\xf6\xd4\x20\xb9\xce\xc7\xad\x76\x70\xeb\x56\xb3\x4a\xe5\xb9\ -\xc7\x2c\xd8\x27\x97\x1f\xa2\x13\x66\x14\x3d\x31\x83\xe2\x8e\x4a\ -\x43\x8c\x29\xad\xc3\x8a\x61\x10\x55\x65\x1b\x3d\x23\x66\x9e\xb3\ -\x5e\x84\x58\x68\x66\x77\x69\x23\x65\x17\x24\xe0\x28\xff\x99\x4a\ -\x41\xc7\x01\x01\xe8\xd0\xb8\x90\x91\x36\xd1\x7d\x8a\x1d\x1e\x9e\ -\x09\x2b\x89\xfd\x55\xc2\xec\x02\x23\xa8\x83\x7f\xa5\x2a\x10\x5f\ -\x74\x6e\x99\xaa\x57\xcb\x19\x51\xa4\x2c\xe9\x25\xc3\xc6\x1c\x4f\ -\xb8\x1c\x6b\x06\x4d\x59\x3e\x16\x9a\xb3\x28\x78\x8f\x77\x88\xc8\ -\x50\x98\x3b\x3a\xbe\x5b\xc0\xbf\x27\xb8\x5d\x25\xa1\x4f\x35\xfb\ -\x53\x95\xd9\x83\xc5\xee\xd5\xa2\x51\xa7\x6c\x45\x81\xfb\x66\x56\ -\xf1\x44\x57\x9d\x79\xcc\x59\xd7\xc1\xa8\xb2\x37\xe5\xac\xd2\x44\ -\xec\xf6\x51\x0e\x7a\x36\x19\x45\xb4\x27\x9c\x9c\x99\x89\x2b\xeb\ -\x36\x57\x14\xdb\xd1\x59\x07\x7f\xce\xbc\x52\x0b\x8f\x45\xd1\xf9\ -\x03\x9a\x1d\x9f\x5e\x2b\x8f\x8d\xd3\x44\x4f\x24\x4a\x59\x0e\xab\ -\x80\xf7\xe6\xf9\x2b\xa2\x3b\xa2\x51\xc3\x64\xa9\x33\x59\x18\xb1\ -\xf2\x71\x71\xdb\x59\x45\xe3\x45\xdd\x90\x38\x5d\x22\x9e\xa0\x62\ -\xaa\xe8\xb7\x19\x11\x72\x0e\x76\x54\x90\x97\x9e\xa9\x03\xd5\x2f\ -\xc5\xfb\xca\x28\xa4\x44\xda\xf7\xc6\x00\x47\x39\x4b\xfc\x5d\x2f\ -\x9b\x96\x8a\xf6\xb6\x11\x2f\x89\xd3\x5f\xc1\x02\xb5\x04\xbc\xc4\ -\x7a\xb2\x2b\x2f\xcc\x83\x17\x68\x3d\xd0\xeb\x4a\xd6\x1d\xb7\xa9\ -\x74\x16\x97\xb2\x5b\x6f\x02\x2f\xf6\xc0\x8b\xb4\x66\xb3\x1f\x6f\ -\x01\x54\x1b\x4b\x54\xbf\x65\xe4\x88\xa5\xdb\xfa\xfb\xbb\x59\x54\ -\xdf\xf2\x2e\x1c\x09\x4c\x61\x07\x61\x1d\x78\x58\x80\x21\xa3\xcc\ -\x7b\x87\x41\xc3\x60\x63\xc1\x79\x1f\x8f\xd8\x04\x4f\xa1\x79\x91\ -\x0c\x85\x06\xb4\x7f\x66\xe0\xe5\x24\xbc\xcc\xee\xb4\xc8\x2a\x0f\ -\xee\x32\x4b\xc1\x51\xa8\xdf\x10\xbc\xe6\xc4\xd7\xc1\x58\xd6\x2b\ -\xf5\xb1\x2b\x46\x98\xda\xe2\x67\xd5\x02\xd0\xf2\x11\xd0\xd4\xc2\ -\x36\x19\x52\x15\xad\x23\xa5\xa7\xe2\xf2\xa3\x60\xfe\x92\x8b\x15\ -\x18\xdd\x4a\x73\x9f\x2e\x87\x56\xdd\x08\xfe\x92\xf4\x30\x3b\xa5\ -\x4f\xbd\xfc\x84\xc5\x21\x73\xb4\xd2\xb2\x60\xd9\x18\x56\x04\x1f\ -\x60\xdc\xe2\xb5\x14\x2b\x8a\xf4\xda\xae\x64\x00\xf1\xad\x5e\xd3\ -\x0a\x7f\x3d\x88\xb0\x53\x82\x35\xa2\xfe\x69\x55\xbe\xf4\x56\xa3\ -\x37\xbd\xb2\x81\xc5\x21\x6c\x51\xfe\x29\x2f\x98\x52\xf0\x68\xc3\ -\xfa\x92\x70\xc5\x50\x63\x1f\x68\x44\x30\x11\x82\xcb\x37\xdf\xff\ -\x3c\x8a\x6e\x76\x9d\x48\xaf\x3c\xec\x20\xde\xd5\xf0\xea\x8e\xde\ -\xe0\xdc\x07\xf9\x1d\xb6\x7f\xa9\x4b\x55\x8f\x65\x37\x99\x56\xb8\ -\x35\x55\x19\xb8\xf2\x25\xa6\xca\x43\xc3\x5e\x10\x57\x1d\x4f\x26\ -\x64\xa5\xb2\x15\x49\xd4\xe0\x76\x65\x36\xab\x6a\xa3\x4a\xd6\x59\ -\xd8\x8f\xed\xe1\xf9\xb6\xe5\xc5\xe1\x8c\x8d\xdc\xc9\x92\x11\x24\ -\xd5\x3c\xb2\x05\xd9\x80\x79\xc8\xf2\x56\xc4\xdd\x4a\x4b\x35\x83\ -\xa6\xec\xb5\xdd\x81\x37\x59\x63\x27\x21\x51\xd4\x92\x1b\x95\x74\ -\x2d\xfd\x39\x5a\x48\x29\x6f\x7f\x55\x20\xbc\x14\xb3\x4b\x5f\x74\ -\x49\xa9\xdc\x79\xe2\x39\x61\xf9\xc8\x23\x9c\xd1\x47\x3f\xbb\x48\ -\xf0\xc8\x66\xb0\xfa\xa3\xca\x61\xcd\x8a\x50\xa9\x27\x6a\x2a\xde\ -\xe7\xfb\xfd\x3d\xfb\x30\x6e\xcd\xd6\xc1\xc9\x59\xe5\x7c\x3a\x74\ -\x96\x53\x3d\x38\x6b\xba\x15\x4f\x6f\x6a\x9d\xe6\xb2\x00\x21\xa7\ -\xbc\x1d\x55\x79\xf6\x06\xec\xa5\x16\x55\x04\x67\xfb\xe5\x39\x37\ -\x0d\xc5\xce\x91\x85\x33\x6a\x80\x87\xdd\x9f\x60\x62\x16\x48\x32\ -\x0f\xcb\x8a\xe9\x78\x49\xa6\x85\xda\xb4\x8c\xdf\x77\xc2\x82\x6f\ -\x07\x81\x3a\x4c\x36\x91\xf5\x0a\xa9\x4e\xeb\x57\x2a\xe6\x6c\xae\ -\x3c\xb0\x8f\x1e\x6d\xbe\xcc\x7a\xe0\xd2\xe8\xe3\x88\x63\xe5\xcb\ -\x2e\x50\x60\x68\x7b\x5f\xff\xfa\x20\x15\x92\xf2\x48\xb5\xf4\x49\ -\x23\xb4\xe9\x7c\xb1\x49\x3d\xa9\x18\x56\x41\x49\xde\x5e\x2d\xbc\ -\x7b\x69\xca\xdd\x1f\x66\xaa\x04\xa3\x8d\xc3\x50\x1a\xd2\xfa\x94\ -\xa1\xbf\x87\x61\x25\x28\xad\x1c\x4a\xe4\x62\x76\xa0\x28\x51\x73\ -\x34\x95\x01\xcd\xe6\x80\x7c\xb7\x60\xfa\x60\x05\xae\x8c\x8a\x31\ -\x35\xe5\x2e\x29\x05\xd2\x12\xe5\xe4\xc4\xd4\xb0\x04\x5e\xbe\xdb\ -\x99\x7c\x72\x46\x9e\x94\xac\x0c\xa5\x99\x43\x11\x57\x5b\xf8\x00\ -\xa8\x7d\x84\xa7\x02\x20\x9a\x23\xfb\xe6\xb3\x85\xc8\xe8\xf0\x54\ -\xd7\xd3\xce\x19\x00\x1d\x01\x80\xb6\x80\x3b\x0b\x2a\x4a\x1c\xf8\ -\xf2\x21\xb4\x8b\xf8\xdb\xf8\x47\x1d\x07\x69\xe7\x2d\xfa\xd5\xb3\ -\x20\x3e\xbd\xda\x17\xd9\x5c\xa7\x71\x80\x17\x52\x06\x9e\xdf\x01\ -\x3b\x8f\x16\x35\x48\xfd\x26\xa3\x08\x06\x77\x85\x55\x7b\x41\x06\ -\x9b\xa3\x6e\xc8\xf4\xb7\x3e\xeb\x1c\xa0\x0d\xe5\x61\xa7\xda\x16\ -\x0a\x38\x69\x1e\xe8\x5e\xa1\xaf\xd7\x0d\xcd\xb7\x63\xbd\x18\x8c\ -\xd2\x56\x8b\xfe\x1c\xda\x74\x6a\xb0\x46\x5e\x89\x59\x0e\xe9\x9b\ -\x66\x5e\xd7\x62\x71\x17\x45\x01\xb2\x1c\x5b\x13\xc9\x96\x3b\x52\ -\xcf\x3a\xf8\x6f\x71\xc2\x7c\x91\xa2\x4d\x8f\x59\x9f\xce\x82\x4c\ -\x4a\xa3\xc7\x8a\xa5\x6b\x0e\x4c\x70\x51\x50\x8b\xc6\xb8\xdd\xd3\ -\xb7\x74\x1b\x50\x4b\x2d\x65\x7a\x4a\x1a\xf1\x83\x4b\x51\x11\x84\ -\xd8\x65\x5b\x44\x0f\x8f\x60\x07\xc5\xe4\x20\x8d\x2d\xf4\x8b\x53\ -\x15\xca\xfb\xe7\x44\xde\xca\xc9\xc2\xee\xc1\xeb\x9d\x83\x56\xa1\ -\x0c\x44\x76\x82\xbc\x92\x12\xbb\x53\xde\xc8\x49\x2f\x95\x97\xf7\ -\x3d\xfb\xae\x9d\xef\xec\x0f\xca\xe8\xdd\x20\xf7\xa5\x0f\x53\x79\ -\xdc\xe0\x75\x39\xf2\x7e\x09\x49\x66\xf1\x4b\x27\xd8\x7b\x12\xb3\ -\xd5\x1e\x66\x2a\x3a\x82\x0b\x69\x05\x36\x2c\x08\xfe\x53\x54\x66\ -\x6b\x9d\x83\x41\x34\xe7\x29\xb7\xd5\xb2\x5a\x20\x8b\x15\x26\x48\ -\x27\x67\x90\xd6\x45\x0d\x99\xfb\x82\x3c\x5d\xc2\xb2\xf1\x0d\x24\ -\xd8\x85\x5f\xb4\xf4\xa4\x01\x95\xee\x80\x29\x23\x1a\x36\x09\xde\ -\xec\xf5\xa2\x81\xa3\xb8\x56\xea\x2e\x54\x2f\x94\xd2\x7d\x3e\xe0\ -\xa9\x83\x56\x19\x16\xe3\x64\xd1\x60\xdf\x19\x35\x68\x37\x24\x66\ -\x74\xf4\x8a\x70\x9b\x8e\x9d\x58\x58\x4c\xcf\x74\x83\x8c\xbc\x03\ -\xb1\x97\x63\x44\x61\xc6\x38\xa6\x44\xd4\x5e\x32\xc1\xa2\x03\xa5\ -\x95\x8f\x87\xdf\x62\x81\x1f\x45\xa0\x17\xaf\xb3\xa0\x75\xa0\x78\ -\x7d\x2b\xb3\x6f\x42\x4e\x8c\x8d\xe8\x6c\x25\xa2\x3f\x73\xdc\x4e\ -\xa9\xd1\x88\xab\x32\x24\x68\x4b\x8a\x6c\xba\xdc\xfa\x2b\x04\xba\ -\xb4\xc1\x72\xb8\xcd\x6a\xaf\x86\x68\x9a\x99\x49\x36\x83\x20\xea\ -\x03\x88\xba\xe5\x75\x9a\x50\x9b\xe6\x6f\x88\x40\xce\x77\xf3\x2d\ -\x37\x45\x65\xb7\xd9\xe3\x05\x32\xc0\xb5\xec\x36\x99\x5e\xe5\xf2\ -\xdb\xe0\xd8\x63\x38\xf6\xf6\x77\x45\x2c\x51\xa1\x33\xea\xad\x2a\ -\x25\x1d\x4b\xa7\xa9\xf1\x66\x0a\x2f\xb8\xd2\xab\x05\xb6\x21\xb2\ -\xf5\x6a\x23\xa0\x66\x47\xc5\xa2\xa7\x0d\x98\x4e\xda\x28\xa6\xcc\ -\xf0\xda\x5f\x80\x93\x18\x42\xd1\xc5\x7a\xa9\x75\x07\xea\x0a\xa6\ -\x9e\x84\xa3\xbc\x1d\xbd\xca\xdd\x02\x55\x30\x2d\x4d\x7a\x0a\x20\ -\x85\x95\x3b\x02\x5b\xfe\x6d\x85\x35\x5e\x87\x77\xd6\x6e\xab\xd0\ -\x47\xc6\x8f\x8a\x70\x1a\x0a\x44\xdc\x6b\x84\x49\x56\x79\x6e\x8b\ -\x21\xb2\x4a\xf2\x57\xa6\xec\x88\xf8\x78\x70\xe0\x73\x70\xe0\x4a\ -\x0d\x6c\xfc\x03\x0b\xdf\x66\x9f\xb7\x88\xec\xd4\x5f\xb0\xe3\x47\ -\x47\x08\x01\x71\xb5\x77\x25\x2c\x06\x23\xc4\x9c\xbf\x8b\x57\x75\ -\xc1\x16\x34\x23\x16\x31\x0c\xd4\xfb\x41\x3c\xb1\x85\xdd\xa1\x82\ -\x08\x94\x00\x01\xd9\x08\xb0\xd2\x80\xc1\x9d\x25\xcb\x9c\xb3\xdc\ -\xf4\x32\x48\xe5\x5e\x34\x23\x44\x69\xf1\xee\xa1\xda\xc3\x50\xc5\ -\xd2\x4d\x47\x6e\x45\x96\xc2\xa5\x5b\x94\xbb\x7a\x26\x58\xda\xe9\ -\x90\xd3\xbd\x23\x24\x01\xaa\x75\xf0\x4a\x79\xc7\xe1\xa2\x39\x29\ -\x92\xa1\x23\x3a\x70\x81\x2e\x1c\x33\xaa\xf3\xd5\xc5\x98\x57\xc8\ -\x7b\xca\x66\xea\xd5\xac\xa6\x0c\x72\x68\x50\x6a\xbc\x50\x26\xed\ -\xe3\xb6\x65\x1c\x4d\xec\x6a\xc3\x56\x5a\x51\x08\x80\x9b\x49\x35\ -\x75\x36\xbc\xe6\x3b\x7d\x77\x1c\xcb\x72\x25\xb6\x7e\xb6\xcf\xc2\ -\x8b\x42\x58\x95\xc3\x51\x02\x81\x33\xa1\x43\x9b\x68\xe8\x79\x86\ -\x43\x2f\x45\xb1\x12\xcd\x86\xab\x22\x14\xd5\x74\x2d\xcc\xa0\xcc\ -\x9d\x74\x79\x2c\x42\x15\x0b\x4b\xfc\xe8\xe0\x36\xe8\xc5\xb4\xbf\ -\x5b\x71\x5f\xee\xab\x8a\x91\xbc\xed\x80\x31\xd2\x88\x8f\x0d\xa7\ -\x26\x20\xeb\x67\x46\xf3\x3f\x65\x52\x0c\x90\x51\xe2\x7d\x8a\x1f\ -\x6f\xaa\x43\x81\x15\x8b\x2c\x78\xc6\x89\xca\xb7\x76\xca\x2a\x94\ -\xe8\xc3\xc1\x69\x5c\x1d\x73\x1a\xc1\x32\x8f\x11\xd4\x7b\xd1\xbb\ -\x79\xe6\x13\x5a\x1d\x9e\x10\x96\x5c\x28\xea\x62\xea\x29\x3d\x54\ -\x75\x4a\x51\x39\xc7\x0c\x99\xaa\x85\x5f\x70\x3a\xd2\x9d\xab\xa6\ -\xfe\x83\x10\xa3\x37\xc3\x5a\xff\xa4\x85\x50\xa1\xe9\x20\xc6\x88\ -\x9e\x51\xa9\x68\x7a\xfa\x53\x70\xe2\x7b\xa7\x39\xf1\x99\x68\xd0\ -\xc5\x91\xc8\x56\x95\x77\x97\xfd\x05\xd0\x92\x95\x91\x21\xdd\x1a\ -\x32\x8c\x0d\x3e\x9a\xeb\x43\xfc\xbd\x15\x10\x0f\xea\x5f\x99\x88\ -\xcf\x98\xb6\xe3\xd2\x9b\xb5\x82\x13\xfa\xce\x0c\xda\x7c\x0a\x86\ -\x99\x46\xa2\x88\x04\x2b\x24\x64\xb3\x42\x96\x33\x10\x65\xbf\x8c\ -\x11\x2b\x97\xe8\x8d\x92\x3c\x8f\xd1\x9b\xc4\xe0\x47\x25\xc3\x0d\ -\xb6\xb6\xf9\xfa\xa1\x16\xb5\x60\x72\xca\x4b\xa5\x83\x4b\xe7\x95\ -\x5f\x61\x6b\x13\x51\x4f\x95\xca\xeb\x8e\x43\xad\xd0\xa8\x64\xd6\ -\x4c\x88\x16\xed\xb6\x06\xef\xca\x54\x83\x0c\x54\x4c\x85\x12\x78\ -\x84\x5d\xc7\x26\x6a\xa1\xcb\x1c\x86\xcc\x7d\xfa\xcb\x5a\xfc\xbd\ -\x24\xd5\x1b\x98\xbc\xf6\x74\x1e\xd1\x36\xab\x44\xe3\xc9\x2d\x46\ -\x28\x1a\xaa\xc9\xa0\x97\xac\x95\x8b\xae\x99\xc7\x8a\x21\xec\x2a\ -\xc7\x6b\x85\xd8\xb3\x23\x65\xd7\x05\xef\x58\xcf\xf2\xbb\xc5\x14\ -\x8a\xdd\x1f\xbb\x65\x6e\xf5\x92\x9d\x70\xa3\x1c\x7f\x5f\xea\xa9\ -\x98\x88\xb1\xa7\xfa\x1b\x0b\x33\xab\xa1\x8a\x35\x2a\x1d\x82\xb5\ -\x17\xd8\x53\xc7\xc7\x2d\x05\x6b\x0c\xbe\x08\x47\x2e\x7a\xd0\x66\ -\x3b\x4c\x8a\x3c\xe6\x26\xcc\x24\x91\x3b\x2a\xe0\xa2\x53\x6b\x94\ -\xb6\x18\x55\x1a\x69\x6f\x02\xd8\x3a\xf6\x6a\xdc\x82\xbd\x50\x02\ -\x70\x59\x63\x6b\xf5\x56\x45\x19\x47\x37\x95\x92\x7b\x35\xdc\x28\ -\x43\x46\x0b\x36\xcb\x08\x79\x4e\xa7\xd5\xce\x60\x7b\xda\x06\x4e\ -\x22\x28\x1b\x1a\xb1\x63\x99\x5a\xf5\x53\xb7\x39\x1c\x97\x9e\x23\ -\x9e\x8a\x8a\x31\xd1\xe7\x23\x63\x4c\xf2\xad\x70\x1d\x31\x7b\x6b\ -\x97\x28\x19\x56\xde\x9a\xcb\xc5\x6f\xe0\x00\xaf\xc4\x6f\x8b\x15\ -\x4a\x22\x57\xe9\x8a\xe5\x8b\xf1\xf7\x11\xb5\x45\xc0\x3e\x19\xdf\ -\x93\x01\xd6\xad\xde\x31\x7e\x6a\xa4\x07\x17\x66\x9e\x4f\x37\x44\ -\x65\xc9\xeb\xb7\x45\x49\x93\x74\xa5\xf7\x88\x1a\xb9\x64\x6e\x89\ -\xd7\x5f\xc8\xdb\xe7\xbf\x84\xff\x82\x7b\x45\xf3\x2a\x94\xc4\xf5\ -\xa1\x52\x43\x2f\x67\x38\x70\x43\xda\xb2\x47\x41\x3b\x17\xa9\x66\ -\x10\x1e\x88\x4e\x6f\x0f\x77\xcd\x42\x48\x55\xd0\x36\x28\xe2\x8c\ -\x81\x32\x9a\x8c\xa4\x6e\x37\x53\xa3\xda\xb6\xa8\x9c\xee\x05\xca\ -\xab\x51\x71\xa9\x60\x4d\x1c\xe3\x6b\x4a\x7d\xd1\xc6\x5c\xf6\x05\ -\xab\x12\x55\x46\x04\x78\xbc\xca\xb5\x58\x43\x70\x56\xce\xe8\x0b\ -\x2a\x07\x27\xa6\x29\xd8\x51\x6e\xd4\x79\xf2\x2e\x8b\x7b\xb4\x57\ -\x21\x5e\x3b\x1b\x81\x27\x93\x43\x69\x64\x15\x90\x6c\x3d\xe4\xa5\ -\xa3\x15\x0d\x7e\x04\x02\xc2\xa6\x42\xd1\x19\xe9\x68\x50\x62\xa7\ -\x57\x00\x85\xdb\x3a\x04\xaa\x43\x01\x55\x88\xc8\xdd\xaa\xc0\x8e\ -\x44\x60\x29\x96\xc0\x8d\x06\xb7\x40\x01\xe7\x6f\x66\x10\xa6\x94\ -\xe8\xd1\x10\x02\xb2\x34\x82\x21\x44\x8b\x88\x28\xbc\x66\x23\x38\ -\xa3\x98\xae\x80\xd4\x92\x00\x3c\x3b\x24\x1c\x55\x68\x73\x10\x1a\ -\xb3\x89\xa6\x9e\xa4\xef\xea\x45\x1f\x9c\xa3\x11\x8e\xb8\x6c\xb1\ -\x02\xa8\x8b\x15\x50\xe1\x66\xcf\x02\x3d\xf5\x20\xb1\x54\xf9\x3c\ -\x56\xed\xfd\x26\x2b\x8d\xb8\xd2\xf2\xa1\xb3\x0c\xd1\xc1\x1b\xb4\ -\x11\x15\x3c\x3d\xdb\x39\xb8\x8c\x69\x6e\xfa\xef\xfe\x65\x34\x54\ -\x12\x42\xb1\x33\x16\x8a\x61\xa6\x93\x43\x85\x40\xbe\xcf\xb7\xa7\ -\x44\x84\x5e\x5c\x97\xc7\x34\x54\x1e\xe7\x38\xd5\x50\x8c\xc8\x56\ -\xa9\x64\x39\xf4\x96\xd7\xe8\xe1\xe6\x2b\xc3\xa9\x4d\x4f\x54\x40\ -\xad\x08\x88\x75\x1b\xa9\xca\x40\x36\x9a\x58\x62\xc1\xa3\xb6\x2f\ -\xc3\xc9\xb6\xf8\x91\xb2\xa9\xb7\xb0\x2c\xde\x8d\x9a\xe2\x5c\x3f\ -\x38\xb6\xfd\xaa\xee\x19\x61\x69\xea\x58\xb0\xcc\x3a\x3f\x50\x11\ -\x1a\xde\xcb\x4e\x4a\x67\x57\x3f\xbb\x56\x18\xa4\x5f\xca\x88\xeb\ -\x09\xa3\x66\xcc\xb6\x0c\xeb\xc4\x3d\xf5\x74\x99\x4c\xb0\x31\xd0\ -\x53\x69\xfb\x31\x58\xd1\xcb\xd9\x28\x6a\x91\x64\x96\x6f\x3b\x7d\ -\x30\x54\xc6\x30\x24\xd7\x5a\x6a\xd9\x1d\xb8\xc4\xa1\x64\x9e\xf2\ -\x6c\xc8\xad\x48\xa9\xa9\x75\x29\x75\x18\x24\xaa\xf0\x23\xb3\xe9\ -\x3b\x02\x25\x53\xc1\xfe\x09\xd5\x4b\xa6\xaa\x67\x85\x4f\xd8\x81\ -\x46\x99\x48\x8d\x7a\x9e\xdc\x14\xb5\x53\x03\x44\xa9\x12\x57\x48\ -\x42\x79\x2b\x88\x7e\x9b\x57\x4e\xe3\x2f\xe6\x4c\x0c\x51\x9e\x89\ -\xa8\xde\x09\x37\xd8\x0b\xaa\xe0\x16\xde\x2e\x6f\x7b\x44\xf2\xb6\ -\x23\x12\x02\x3d\x3f\xd2\x1d\x82\xd3\xce\xe1\xec\xde\x13\x99\x07\ -\x9e\x11\xa8\xbd\xd3\x00\xc5\x4e\x8a\x54\x02\xb5\x27\x1a\xd4\x60\ -\x24\x28\x35\x1b\x1e\xe5\x80\x84\x5c\x1d\x59\x45\xc6\x87\xd3\xbd\ -\xe8\x30\x18\x35\x94\x29\x82\xdb\x65\x73\xd5\x81\xfd\x5c\xa7\xb6\ -\xfa\x0a\x3b\xeb\x2a\x1b\x1c\x17\x35\x3c\xf3\x87\x83\x08\x9c\x15\ -\x63\xe6\xfe\xf3\x0b\xd1\x33\x8e\x1c\x12\xe5\x62\x68\xce\xd5\x89\ -\x5d\x79\xce\x8e\xca\xf2\xca\x5e\x9f\x1f\x35\x34\x0a\xcf\xe0\xc8\ -\xb9\x19\x8e\xcc\x62\x6a\x05\x5e\x7d\xa3\x91\x15\x5e\x18\x44\x5e\ -\xf4\xcd\x5a\x0b\x06\xd3\x63\x5a\x14\x6e\xae\x6d\x16\x56\x80\x02\ -\x36\xc2\x51\xc3\x99\xf2\x03\xf5\x28\x2a\xdf\x91\xbe\x20\x0a\x8b\ -\x32\xbb\x25\x7d\x7a\x34\x92\xa6\x3f\x6b\x41\x97\x26\xea\xa9\x3a\ -\xe6\xd7\x54\x92\xa1\x2c\x72\x10\x6e\x9b\xd8\xc3\xb1\xc3\x8d\x49\ -\xe3\x3a\x34\x51\x68\xa6\xca\x79\xdd\x0e\x96\x9d\x8a\xe6\x8a\x3e\ -\xdd\xaa\x5c\x11\x4e\xd4\x86\x08\xbe\x6c\x95\x2c\xf3\xe0\x0d\x9a\ -\x3d\x17\x9a\xe5\xa0\x82\x64\x98\xc3\x0f\xb7\x53\x4d\xc8\xb5\xaa\ -\x74\x97\x86\x50\x01\xf6\x45\x54\x30\x6d\x9d\xa2\xe0\x53\x94\x79\ -\xca\x58\x51\xf8\xc4\xb4\xe2\x39\xca\x54\xc5\x70\xa0\xb8\x93\x1e\ -\xba\xa0\xc1\x1d\x71\x82\x26\x9c\xaf\x8c\xbe\x47\xd5\xdf\x1c\x8c\ -\x12\x6d\x05\xa9\x70\x15\xb8\x94\x66\xc3\x56\x36\x4b\x2f\x6f\xf2\ -\xdd\x83\xba\x85\x5f\xe5\xe1\x53\xfe\xc3\x6c\xa7\x48\x87\x7d\x18\ -\x78\x3d\x44\xa3\x60\x18\xc4\x7f\x1a\x33\xea\xfe\x12\xf5\x0c\x7c\ -\xa7\x77\x51\xc3\x49\x20\xeb\x65\xf4\xe7\x78\x5a\x4a\x8e\xec\x82\ -\xb5\x84\xfc\x3c\x24\x98\xce\xc3\x3b\x36\x9f\xb4\x37\x18\xe4\x99\ -\xcd\xc3\x06\x61\x7e\xac\xdb\x19\xe6\xb2\x87\x44\x41\x3a\x91\x85\ -\x2c\x51\x17\x5c\x84\x4f\xb7\xfa\xed\x15\x16\x3d\x96\xa5\x36\x72\ -\xd5\x99\x01\x27\x6a\x9e\x84\x8e\xa6\x6f\xea\xe8\x40\xc8\xa3\x6d\ -\xd1\x01\xa4\x4e\xb2\x4b\xa1\xc5\x79\xb4\x5a\x9e\xc5\xf8\xbc\xab\ -\x28\xc4\xf9\x52\x16\x28\xa5\x9d\x10\xe8\x3e\xa0\xe1\x3f\x34\xe8\ -\x1c\x16\xfe\x93\xf6\x8a\x52\x91\xd9\xb9\x2b\x48\xbe\x25\xbe\x4a\ -\xbb\xa9\x36\xdd\xd1\xb4\xd4\x6e\xaa\x2d\x77\xbc\x02\xb2\x5a\xdd\ -\x57\x12\x81\x45\x95\x7d\xcd\x52\x6a\x99\x6b\x82\x45\xcc\xf4\x20\ -\x75\x77\xa8\x2d\xa4\xce\x0d\x3a\xbf\xf9\x57\xd1\x95\x92\x4a\x67\ -\xb7\xd2\xfb\x91\x52\x54\x7a\x54\x81\x71\xeb\xa8\x75\x23\x8f\x32\ -\xed\xde\x13\xf1\xfb\x5e\xe5\xf7\xbd\xa1\x49\xc9\xb7\x6b\x82\x2f\ -\x0f\xa0\xe1\xf4\x17\x9b\xd4\x9e\xf8\x93\xda\xa3\x22\xbd\x27\x8c\ -\xb4\xfc\xb5\x26\xf8\xe3\x00\x6c\xdb\xbf\x20\xd2\x7b\xe3\x22\xdd\ -\x41\xbc\x46\x7b\xd1\xc7\x45\x94\x73\x07\xed\x3a\x3b\x96\xc1\x23\ -\xe4\xbd\x21\xbf\x3b\xd8\xe1\x30\x08\x2a\xd8\xe3\xe1\x08\x7c\x19\ -\x44\x28\x8b\xb8\xaf\xd3\xd5\xb8\xea\xff\x05\x7f\xfc\x6a\xbf\ -\x00\x00\xb0\xcb\ -\x3c\ -\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ -\x00\x00\x09\x98\x00\x00\x00\x58\x00\x00\xa4\x90\x00\x00\x00\x59\ -\x00\x00\xa5\x51\x00\x00\x00\x5a\x00\x00\xa5\xf2\x00\x00\x05\xd9\ -\x00\x00\xa5\x11\x00\x00\x05\xda\x00\x00\xa5\x31\x00\x00\x05\xea\ -\x00\x00\xa5\xd2\x00\x00\x07\x78\x00\x00\x70\x22\x00\x00\x48\x83\ -\x00\x00\x03\x47\x00\x00\x48\x83\x00\x00\x76\xb8\x00\x00\x68\x34\ -\x00\x00\x6a\x7d\x00\x04\xa6\x79\x00\x00\x7a\x45\x00\x04\xbb\x04\ -\x00\x00\x0b\xaa\x00\x04\xbb\x04\x00\x00\x7e\xc8\x00\x05\x30\x45\ -\x00\x00\x0e\x17\x00\x05\x30\x45\x00\x00\x90\xcd\x00\x05\x46\xc5\ -\x00\x00\x0e\x44\x00\x05\x46\xc5\x00\x00\x91\x6b\x00\x05\x56\x45\ -\x00\x00\x48\x21\x00\x05\x56\x45\x00\x00\x91\x9f\x00\x05\xac\xf4\ -\x00\x00\x1a\x14\x00\x05\xb8\xfd\x00\x00\xa2\x30\x00\x05\xcf\xc7\ -\x00\x00\xa2\xd8\x00\x05\xe0\x85\x00\x00\x23\xd5\x00\x06\xab\x8c\ -\x00\x00\x6c\x01\x00\x10\x84\x49\x00\x00\x53\x8d\x00\x12\x05\xba\ -\x00\x00\x9e\x78\x00\x16\xc6\xda\x00\x00\x85\x58\x00\x2a\xa6\x79\ -\x00\x00\x72\xf0\x00\x2b\xc4\xaf\x00\x00\x73\xe6\x00\x2b\xe0\x65\ -\x00\x00\x74\x17\x00\x39\xdf\x33\x00\x00\x35\xde\x00\x3d\xa1\x19\ -\x00\x00\x77\xde\x00\x3e\x93\x83\x00\x00\x37\x0e\x00\x48\x8f\x7c\ -\x00\x00\x26\xa3\x00\x4b\x66\x35\x00\x00\x32\xee\x00\x4b\x66\x37\ -\x00\x00\x33\x33\x00\x4b\x66\x39\x00\x00\x33\x78\x00\x4b\x87\xd4\ -\x00\x00\x7e\x07\x00\x57\x60\x54\x00\x00\x9a\x5d\x00\x58\xfd\xf4\ -\x00\x00\x4b\x6a\x00\x59\x98\x25\x00\x00\x14\xf6\x00\x59\x98\x25\ -\x00\x00\x9b\xb9\x00\x6a\x58\x9a\x00\x00\x93\xd5\x00\x79\xef\xd4\ -\x00\x00\x70\x5a\x00\x7e\x7f\x0e\x00\x00\x67\x24\x00\x8a\x23\x95\ -\x00\x00\x2a\x27\x00\x8a\x23\x97\x00\x00\x2a\x6d\x00\x8a\x23\x99\ -\x00\x00\x2a\xb3\x00\x91\xbc\xe9\x00\x00\x0e\x7d\x00\xa6\x37\x3f\ -\x00\x00\x29\x02\x00\xaa\x80\x25\x00\x00\x7d\x3b\x00\xc6\xe3\x6e\ -\x00\x00\x25\x5b\x00\xcb\xa8\x14\x00\x00\x6f\x32\x00\xfc\x00\xca\ -\x00\x00\x8c\x66\x01\x21\xd6\x39\x00\x00\x52\x5c\x01\x22\xb4\xf9\ -\x00\x00\x15\x29\x01\x2f\x8e\x7e\x00\x00\x5d\x4c\x01\x48\xfe\xa3\ -\x00\x00\x37\x88\x01\x53\xf3\xaa\x00\x00\x82\x3a\x01\x56\x16\x4a\ -\x00\x00\x8b\xe3\x01\x67\x0d\x8a\x00\x00\x87\x17\x01\x69\x11\x7a\ -\x00\x00\x98\x2c\x01\x82\x39\x0a\x00\x00\x94\x71\x01\x8b\x68\x75\ -\x00\x00\xa1\xb7\x01\xa1\x7f\x63\x00\x00\x1c\xbf\x01\xc1\xd9\xde\ -\x00\x00\x55\xb2\x01\xd2\x8f\xd3\x00\x00\x4c\x19\x01\xdf\x11\x43\ -\x00\x00\x05\x94\x01\xe2\xf4\x5a\x00\x00\x9e\x09\x01\xfc\xae\xd3\ -\x00\x00\x70\x9b\x02\x05\xbe\x25\x00\x00\x7b\xcc\x02\x46\x58\x0a\ -\x00\x00\x97\x66\x02\x65\xad\x62\x00\x00\xa6\xc4\x02\x6e\x07\xe2\ -\x00\x00\x4e\x49\x02\x76\x24\x13\x00\x00\x3b\x93\x02\x7d\xe0\x55\ -\x00\x00\x4e\xe5\x02\x94\x46\x1a\x00\x00\x94\x20\x02\xa7\x2c\x15\ -\x00\x00\x04\x2c\x02\xaa\x36\x95\x00\x00\x72\x89\x02\xb1\xf0\xba\ -\x00\x00\x88\xe2\x02\xbf\xaa\x8e\x00\x00\x3a\x14\x02\xc0\x66\xf2\ -\x00\x00\x59\x5a\x02\xc8\x3f\xf5\x00\x00\x64\xfd\x02\xd9\xa4\xb9\ -\x00\x00\x6a\x2e\x02\xdb\x1a\x94\x00\x00\x07\x29\x03\x01\x84\xc4\ -\x00\x00\x8d\x23\x03\x12\x97\x6a\x00\x00\x8a\xf4\x03\x1a\x14\x14\ -\x00\x00\x30\x68\x03\x1a\x16\x59\x00\x00\x4f\x7f\x03\x2f\x1a\x6a\ -\x00\x00\x74\xa4\x03\x7e\xca\xb5\x00\x00\x43\x96\x03\x88\x1f\xd4\ -\x00\x00\x44\x6b\x03\x9e\x58\xa5\x00\x00\x00\x48\x03\xb3\x9e\xfa\ -\x00\x00\x95\x25\x03\xb5\xc8\x9a\x00\x00\x96\x95\x03\xbd\xd4\xe4\ -\x00\x00\x75\x59\x03\xc4\x3c\xf5\x00\x00\x77\x9c\x03\xc5\xd5\x5e\ -\x00\x00\x09\x4d\x03\xcb\x0d\xe5\x00\x00\x9b\xe6\x03\xdc\x0c\xd4\ -\x00\x00\x73\x54\x03\xf2\x70\x35\x00\x00\x2d\x11\x03\xf2\xbd\x60\ -\x00\x00\x16\x85\x03\xfb\x0f\x04\x00\x00\x2f\xee\x04\x21\x23\x23\ -\x00\x00\x21\x65\x04\x56\x06\x93\x00\x00\x2e\x07\x04\x60\x7c\x15\ -\x00\x00\x9a\xb2\x04\x79\xef\x9a\x00\x00\x88\x5f\x04\x82\x77\xf4\ -\x00\x00\x4e\x9b\x04\x87\xf9\x9e\x00\x00\x8e\x44\x04\x8c\xd6\xae\ -\x00\x00\x63\x34\x04\xa0\x8a\x25\x00\x00\x05\x59\x04\xa0\x8a\x25\ -\x00\x00\x79\x45\x04\xa4\x31\x5a\x00\x00\x90\x5d\x04\xa8\xeb\x85\ -\x00\x00\x33\xbd\x04\xe1\x6e\xe3\x00\x00\x09\xc9\x04\xe4\x0f\x75\ -\x00\x00\x02\xe1\x04\xeb\x41\xc3\x00\x00\x2d\x8a\x04\xef\xd9\xa8\ -\x00\x00\x4a\xda\x05\x03\x83\x95\x00\x00\x6c\x3f\x05\x05\xcb\x13\ -\x00\x00\x42\x74\x05\x0f\xf2\x74\x00\x00\x92\xf0\x05\x1b\x10\x59\ -\x00\x00\x46\x1e\x05\x2a\xe5\x97\x00\x00\x4c\xe5\x05\x44\x3b\x5f\ -\x00\x00\x6e\x2a\x05\x5c\xd9\xc4\x00\x00\x0f\xd2\x05\x5c\xd9\xc4\ -\x00\x00\x92\x14\x05\x63\xf6\x93\x00\x00\x4b\xab\x05\x65\xee\x65\ -\x00\x00\x80\xa8\x05\x87\xb0\xc3\x00\x00\x9a\x86\x05\x96\xa8\xa5\ -\x00\x00\x13\x8e\x05\x96\xa8\xa5\x00\x00\x9b\x87\x05\xad\x4b\xc3\ -\x00\x00\x43\xec\x05\xb9\x03\xc8\x00\x00\x1e\x48\x05\xbd\x0c\xba\ -\x00\x00\x82\xed\x05\xbd\x8e\xde\x00\x00\x61\x88\x05\xbe\x56\x93\ -\x00\x00\x4a\x6c\x05\xc5\x50\x04\x00\x00\x0b\xd9\x05\xe5\x8e\x2e\ -\x00\x00\x11\x28\x05\xfb\xdc\x83\x00\x00\x42\xd2\x06\x1e\xe6\xb5\ -\x00\x00\xa0\xfd\x06\x29\xee\xa9\x00\x00\x79\x79\x06\x32\xe3\xe3\ -\x00\x00\x7e\x30\x06\x57\x19\xf4\x00\x00\x00\x00\x06\x5a\xef\x15\ -\x00\x00\x72\xb9\x06\x5b\xd2\xb5\x00\x00\x3e\x9f\x06\x6c\x88\x8e\ -\x00\x00\x40\x43\x06\x74\x1d\x55\x00\x00\x55\x1a\x06\x8b\x96\x44\ -\x00\x00\x0c\x97\x06\x97\x58\xc9\x00\x00\x50\x08\x06\xbc\x80\xa5\ -\x00\x00\x1d\xcf\x06\xc9\xb8\x05\x00\x00\x75\xd3\x06\xe8\x05\x4e\ -\x00\x00\x06\xbe\x06\xee\xaa\x57\x00\x00\x9f\xea\x06\xf0\xcb\x25\ -\x00\x00\x1b\xa5\x06\xfa\xff\xc3\x00\x00\x43\x3a\x06\xfc\x1a\x14\ -\x00\x00\x34\xc9\x06\xfc\xa0\x8a\x00\x00\x93\x33\x07\x08\x90\xe5\ -\x00\x00\x2b\x8c\x07\x0d\xb7\xf7\x00\x00\x39\x61\x07\x0e\x86\x3e\ -\x00\x00\x1c\x0e\x07\x35\x68\x6e\x00\x00\x17\x9a\x07\x35\xe8\x9a\ -\x00\x00\x98\x71\x07\x44\x41\x2a\x00\x00\x81\x99\x07\x4a\x1f\x63\ -\x00\x00\x02\x0a\x07\x4d\x73\x22\x00\x00\x90\xf5\x07\x4e\xa6\xf2\ -\x00\x00\x7f\x29\x07\x58\xcb\xe8\x00\x00\x91\x2d\x07\x63\xfe\x0e\ -\x00\x00\x12\x39\x07\x80\xc6\xb3\x00\x00\xa4\x58\x07\x88\x72\x5a\ -\x00\x00\x76\xdd\x07\xa3\xe4\x0e\x00\x00\x23\x25\x07\xc1\xfc\x13\ -\x00\x00\x2e\xd6\x08\x27\xb4\xba\x00\x00\x96\x28\x08\x32\xc4\xaa\ -\x00\x00\x99\x2e\x08\x36\x74\x14\x00\x00\x25\x14\x08\x44\xb9\x83\ -\x00\x00\x35\x60\x08\x49\xc9\x30\x00\x00\x16\xcf\x08\x61\x7c\xb3\ -\x00\x00\x1e\x7b\x08\xa2\xca\x67\x00\x00\x4f\x35\x08\xa3\xe0\x33\ -\x00\x00\x7a\x79\x08\xb1\x15\x28\x00\x00\x2f\x79\x08\xb4\x04\x04\ -\x00\x00\x9a\xfe\x08\xd0\x32\xf4\x00\x00\x7e\xf2\x08\xd4\xcd\x69\ -\x00\x00\x7f\x61\x08\xe1\x9b\xbe\x00\x00\x1a\xcf\x08\xe1\xc1\xfa\ -\x00\x00\x80\xe5\x08\xeb\x8d\x7a\x00\x00\xa4\x05\x09\x20\xda\x24\ -\x00\x00\xa5\x6e\x09\x20\xda\xb4\x00\x00\xa6\x0f\x09\x20\xda\xd4\ -\x00\x00\xa4\xad\x09\x4d\x96\xd9\x00\x00\x25\xea\x09\x65\xda\x8a\ -\x00\x00\x84\xe5\x09\x68\x0d\x29\x00\x00\x8f\x30\x09\x71\x8d\x25\ -\x00\x00\x06\x74\x09\x75\x23\x14\x00\x00\x74\x44\x09\x76\xed\x34\ -\x00\x00\x66\x3c\x09\x86\xa6\x05\x00\x00\x24\x06\x09\x8b\x23\xba\ -\x00\x00\x99\xa7\x09\x9e\xfd\x7e\x00\x00\x66\x86\x09\xb6\x2a\x63\ -\x00\x00\x34\x2b\x09\xcd\x1c\x55\x00\x00\x9c\x30\x09\xd2\x21\xea\ -\x00\x00\x5e\x41\x09\xe5\x23\x0e\x00\x00\x58\x51\x09\xec\x2b\x45\ -\x00\x00\x0c\x49\x09\xef\x33\xa3\x00\x00\x18\x9d\x09\xf0\x1f\x6e\ -\x00\x00\x03\x70\x09\xfd\x45\x1a\x00\x00\x94\xc4\x0a\x09\xc1\x7a\ -\x00\x00\x97\xc1\x0a\x28\x9a\x65\x00\x00\x4d\x7a\x0a\x28\x9a\x67\ -\x00\x00\x4d\xbf\x0a\x28\x9a\x69\x00\x00\x4e\x04\x0a\x2d\xbe\xe4\ -\x00\x00\x30\xdd\x0a\x35\xa9\xfa\x00\x00\x89\x7a\x0a\x3f\x27\x74\ -\x00\x00\x7c\x20\x0a\x3f\x6b\x05\x00\x00\x7c\x5f\x0a\x49\xa5\x4a\ -\x00\x00\xa1\x38\x0a\x60\xe0\x15\x00\x00\x26\xe4\x0a\x60\xe0\x17\ -\x00\x00\x27\x3f\x0a\x60\xe0\x19\x00\x00\x27\x9a\x0a\x65\x9b\xea\ -\x00\x00\x92\x44\x0a\x78\x05\x80\x00\x00\x01\x4f\x0a\x7f\x8f\x65\ -\x00\x00\x3c\xb8\x0a\x98\x86\x18\x00\x00\x2a\xf9\x0a\x99\x5c\xaa\ -\x00\x00\x9a\x01\x0a\xa8\x16\x95\x00\x00\x13\x47\x0a\xa9\x89\xec\ -\x00\x00\x44\xc6\x0a\xc8\x5c\x59\x00\x00\x10\x09\x0a\xd0\x50\xb8\ -\x00\x00\x73\x25\x0a\xd0\xe6\xf5\x00\x00\x18\x4e\x0a\xd6\xf1\xfa\ -\x00\x00\x7e\x6b\x0a\xeb\x91\x88\x00\x00\x65\x8f\x0b\x07\x78\x8a\ -\x00\x00\x84\x44\x0b\x1b\xe0\x73\x00\x00\x50\x76\x0b\x24\x9d\xb4\ -\x00\x00\x51\x67\x0b\x24\xc5\xc9\x00\x00\x13\xc7\x0b\x26\x7e\x0e\ -\x00\x00\x7b\x3a\x0b\x2b\x50\xfa\x00\x00\x87\xb8\x0b\x2d\xb3\xf9\ -\x00\x00\x69\x8a\x0b\x37\x73\x69\x00\x00\xa2\xfc\x0b\x40\x40\x3e\ -\x00\x00\x46\x80\x0b\x43\xcd\x19\x00\x00\x45\x40\x0b\x66\x28\xd2\ -\x00\x00\x65\x48\x0b\x88\xe0\x07\x00\x00\x0a\xce\x0b\x94\x44\xc5\ -\x00\x00\x31\x56\x0b\xc2\x99\x6a\x00\x00\x83\x79\x0b\xd3\x27\xae\ -\x00\x00\x04\x66\x0b\xd4\x7e\x9e\x00\x00\x0b\x05\x0b\xf5\xee\x53\ -\x00\x00\x91\xc9\x0c\x06\x50\x2e\x00\x00\x0d\x1e\x0c\x08\x46\x23\ -\x00\x00\x7c\xf4\x0c\x19\xfa\x99\x00\x00\x7f\xef\x0c\x28\x9b\x45\ -\x00\x00\x73\xa9\x0c\x31\x7e\x4a\x00\x00\x95\x76\x0c\x38\x4d\xe5\ -\x00\x00\x07\x72\x0c\x3a\x16\xd0\x00\x00\x19\x8e\x0c\x5a\xc0\xc8\ -\x00\x00\x77\x6c\x0c\x6e\x87\xf5\x00\x00\x22\xec\x0c\x91\xa0\x7a\ -\x00\x00\xa0\x96\x0c\x96\x90\x59\x00\x00\x45\xb3\x0c\xca\xdd\xfa\ -\x00\x00\x9e\xf4\x0c\xd6\xef\x12\x00\x00\x2e\x75\x0c\xde\x99\x49\ -\x00\x00\x69\xda\x0c\xf0\xde\xaa\x00\x00\x86\x5b\x0d\x1c\xf6\xee\ -\x00\x00\x2c\x59\x0d\x3a\x6c\xba\x00\x00\x95\xd2\x0d\x45\xe2\x6a\ -\x00\x00\x9d\x9a\x0d\x59\xa1\x45\x00\x00\x7d\x71\x0d\x5a\xad\x33\ -\x00\x00\x76\x49\x0d\x5e\xe7\x6e\x00\x00\x27\xf5\x0d\x64\xa5\xd9\ -\x00\x00\x5c\x7e\x0d\x6d\xf8\xf4\x00\x00\x08\x37\x0d\x76\xb5\x92\ -\x00\x00\x2c\xad\x0d\x9b\xec\xc9\x00\x00\x54\xa9\x0d\xa5\xd9\x94\ -\x00\x00\x2c\x00\x0d\xa6\xda\xa4\x00\x00\x47\xa5\x0d\xc6\xc6\x2a\ -\x00\x00\x98\xce\x0d\xf2\x39\xba\x00\x00\x8a\x31\x0e\x2b\x04\x15\ -\x00\x00\x7a\xfb\x0e\x2c\xe4\x2a\x00\x00\x9d\x29\x0e\x4e\xcc\xc5\ -\x00\x00\x09\x86\x0e\x6f\x9a\x1a\x00\x00\x9f\x7a\x0e\x7b\x7a\x2c\ -\x00\x00\x32\x6e\x0e\x8f\x6a\x37\x00\x00\x36\xb8\x0e\x91\x65\xf5\ -\x00\x00\x1a\x41\x0e\xca\xd7\x34\x00\x00\x20\x37\x0e\xcd\x1c\x55\ -\x00\x00\x9c\x83\x0e\xcd\x1c\x65\x00\x00\x9c\xd6\x0e\xea\xe5\x03\ -\x00\x00\x71\x36\x0e\xed\xe1\xf9\x00\x00\x48\x63\x0f\x07\x8d\xe3\ -\x00\x00\x71\xd8\x0f\x17\x82\x4e\x00\x00\x00\xfd\x0f\x1f\x8d\xa5\ -\x00\x00\x7a\xb5\x0f\x4f\x75\x3a\x00\x00\xa6\x7b\x0f\x5f\xca\xd5\ -\x00\x00\x31\xd9\x0f\x75\xb0\x54\x00\x00\x7c\xa6\x0f\x77\xc3\xb4\ -\x00\x00\x6a\xb8\x0f\x89\x0b\xbe\x00\x00\x48\xbd\x0f\x8f\xa8\xa7\ -\x00\x00\x19\x41\x0f\x98\x0a\x39\x00\x00\xa2\x56\x0f\x9e\xec\xa0\ -\x00\x00\x12\x7c\x0f\xbf\x87\xa3\x00\x00\x90\x13\x0f\xcd\xce\x95\ -\x00\x00\x36\x3e\x0f\xdf\x21\x05\x00\x00\x24\xb1\x0f\xf6\x06\x1e\ -\x00\x00\x20\x9f\x0f\xf6\x29\x0a\x00\x00\x76\x05\x0f\xf7\x77\xaa\ -\x00\x00\x85\xd4\x0f\xfb\x5f\xae\x00\x00\x7b\x86\x69\x00\x00\xa7\ -\x19\x03\x00\x00\x00\x1c\x04\x14\x04\x3e\x04\x31\x04\x30\x04\x32\ -\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\ -\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x41\x64\x64\x20\ -\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\ -\x41\x64\x64\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x6a\x04\x14\ -\x04\x3e\x04\x31\x04\x30\x04\x32\x04\x3b\x04\x4f\x04\x35\x04\x42\ -\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x43\x00\x20\x04\x3a\ -\x00\x20\x04\x41\x04\x43\x04\x49\x04\x35\x04\x41\x04\x42\x04\x32\ -\x04\x43\x04\x4e\x04\x49\x04\x35\x04\x39\x00\x20\x04\x1d\x04\x30\ -\x04\x3f\x04\x40\x04\x30\x04\x32\x04\x3b\x04\x4f\x04\x4e\x04\x49\ -\x04\x35\x04\x39\x00\x2f\x00\x42\x00\x2d\x04\x41\x04\x3f\x04\x3b\ -\x04\x30\x04\x39\x04\x3d\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x28\x41\x64\x64\x73\x20\x61\x20\x70\x6f\x69\x6e\x74\x20\x74\ -\x6f\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x77\x69\ -\x72\x65\x2f\x62\x73\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x0e\x44\ -\x72\x61\x66\x74\x5f\x41\x64\x64\x50\x6f\x69\x6e\x74\x01\x03\x00\ -\x00\x00\x1e\x00\x41\x00\x64\x00\x64\x00\x20\x00\x74\x00\x6f\x00\ -\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x2e\x00\x2e\x00\ -\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x41\x64\x64\x20\x74\ -\x6f\x20\x67\x72\x6f\x75\x70\x2e\x2e\x2e\x07\x00\x00\x00\x10\x44\ -\x72\x61\x66\x74\x5f\x41\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\x01\ -\x03\x00\x00\x00\x66\x04\x14\x04\x3e\x04\x31\x04\x30\x04\x32\x04\ -\x3b\x04\x4f\x04\x35\x04\x42\x00\x20\x04\x32\x04\x4b\x04\x31\x04\ -\x40\x04\x30\x04\x3d\x04\x3d\x04\x4b\x04\x39\x00\x20\x04\x3e\x04\ -\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x00\x28\x04\x4b\x00\x29\x00\ -\x20\x04\x32\x00\x20\x04\x41\x04\x43\x04\x49\x04\x35\x04\x41\x04\ -\x42\x04\x32\x04\x43\x04\x4e\x04\x49\x04\x43\x04\x4e\x00\x20\x04\ -\x33\x04\x40\x04\x43\x04\x3f\x04\x3f\x04\x43\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x30\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\x65\ -\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x28\x73\x29\ -\x20\x74\x6f\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\ -\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\ -\x41\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x7a\ -\x04\x1f\x04\x40\x04\x38\x04\x3c\x04\x35\x04\x3d\x04\x38\x04\x42\ -\x04\x4c\x00\x20\x04\x42\x04\x35\x04\x3a\x04\x43\x04\x49\x04\x43\ -\x04\x4e\x00\x20\x04\x48\x04\x38\x04\x40\x04\x38\x04\x3d\x04\x43\ -\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x38\x00\x20\x04\x38\ -\x00\x20\x04\x46\x04\x32\x04\x35\x04\x42\x00\x20\x04\x34\x04\x3b\ -\x04\x4f\x00\x20\x04\x32\x04\x4b\x04\x34\x04\x35\x04\x3b\x04\x35\ -\x04\x3d\x04\x3d\x04\x4b\x04\x45\x00\x20\x04\x3e\x04\x31\x04\x4a\ -\x04\x35\x04\x3a\x04\x42\x04\x3e\x04\x32\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x38\x41\x70\x70\x6c\x69\x65\x73\x20\x63\x75\x72\x72\ -\x65\x6e\x74\x20\x6c\x69\x6e\x65\x20\x77\x69\x64\x74\x68\x20\x61\ -\x6e\x64\x20\x63\x6f\x6c\x6f\x72\x20\x74\x6f\x20\x73\x65\x6c\x65\ -\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\ -\x10\x44\x72\x61\x66\x74\x5f\x41\x70\x70\x6c\x79\x53\x74\x79\x6c\ -\x65\x01\x03\x00\x00\x00\x2e\x04\x1f\x04\x40\x04\x38\x04\x3c\x04\ -\x35\x04\x3d\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x42\x04\x35\x04\ -\x3a\x04\x43\x04\x49\x04\x38\x04\x39\x00\x20\x04\x41\x04\x42\x04\ -\x38\x04\x3b\x04\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x41\ -\x70\x70\x6c\x79\x20\x43\x75\x72\x72\x65\x6e\x74\x20\x53\x74\x79\ -\x6c\x65\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x70\x70\ -\x6c\x79\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\x08\x04\x14\x04\ -\x43\x04\x33\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\ -\x72\x63\x07\x00\x00\x00\x09\x44\x72\x61\x66\x74\x5f\x41\x72\x63\ -\x01\x03\x00\x00\x00\x6e\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\ -\x04\x42\x04\x4c\x00\x20\x04\x34\x04\x43\x04\x33\x04\x43\x00\x2e\ -\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x04\x34\x04\x3b\ -\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x04\x4f\x04\x37\ -\x04\x3a\x04\x38\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\ -\x00\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\x33\ -\x04\x40\x04\x30\x04\x3d\x04\x38\x04\x47\x04\x35\x04\x3d\x04\x38\ -\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x72\ -\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x72\x63\x2e\x20\x43\x54\ -\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\ -\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\ -\x00\x00\x09\x44\x72\x61\x66\x74\x5f\x41\x72\x63\x01\x03\x00\x00\ -\x00\x10\x00\x42\x00\x2d\x04\x41\x04\x3f\x04\x3b\x04\x30\x04\x39\ -\x04\x3d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x2d\x53\x70\ -\x6c\x69\x6e\x65\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x42\ -\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x8e\x04\x21\x04\x3e\ -\x04\x37\x04\x34\x04\x30\x04\x35\x04\x42\x00\x20\x04\x3d\x04\x35\ -\x04\x41\x04\x3a\x04\x3e\x04\x3b\x04\x4c\x04\x3a\x04\x3e\x00\x20\ -\x04\x42\x04\x3e\x04\x47\x04\x35\x04\x3a\x00\x20\x04\x12\x00\x2d\ -\x04\x41\x04\x3f\x04\x3b\x04\x30\x04\x39\x04\x3d\x04\x30\x00\x2e\ -\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x2d\x00\x20\ -\x04\x3f\x04\x40\x04\x38\x04\x32\x04\x4f\x04\x37\x04\x30\x04\x42\ -\x04\x4c\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\ -\x00\x20\x00\x2d\x00\x20\x04\x3e\x04\x33\x04\x40\x04\x30\x04\x3d\ -\x04\x38\x04\x47\x04\x38\x04\x42\x04\x4c\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x43\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x6d\x75\ -\x6c\x74\x69\x70\x6c\x65\x2d\x70\x6f\x69\x6e\x74\x20\x62\x2d\x73\ -\x70\x6c\x69\x6e\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\ -\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\ -\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\ -\x74\x5f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x14\x04\ -\x1e\x04\x3a\x04\x40\x04\x43\x04\x36\x04\x3d\x04\x3e\x04\x41\x04\ -\x42\x04\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\x69\x72\ -\x63\x6c\x65\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x43\x69\ -\x72\x63\x6c\x65\x01\x03\x00\x00\x00\x82\x04\x21\x04\x3e\x04\x37\ -\x04\x34\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x3e\x04\x3a\x04\x40\ -\x04\x43\x04\x36\x04\x3d\x04\x3e\x04\x41\x04\x42\x04\x4c\x00\x2e\ -\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x04\x34\x04\x3b\ -\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x04\x4f\x04\x37\ -\x04\x3a\x04\x38\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\ -\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x32\x04\x4b\x04\x31\x04\x3e\ -\x04\x40\x04\x30\x00\x20\x04\x3a\x04\x30\x04\x41\x04\x30\x04\x42\ -\x04\x35\x04\x3b\x04\x4c\x04\x3d\x04\x3e\x04\x39\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x3d\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ -\x63\x69\x72\x63\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\ -\x73\x6e\x61\x70\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x73\x65\x6c\ -\x65\x63\x74\x20\x74\x61\x6e\x67\x65\x6e\x74\x20\x6f\x62\x6a\x65\ -\x63\x74\x73\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x43\x69\ -\x72\x63\x6c\x65\x01\x03\x00\x00\x00\x1c\x04\x17\x04\x30\x04\x3c\ -\x04\x3a\x04\x3d\x04\x43\x04\x42\x04\x4c\x00\x20\x04\x3b\x04\x38\ -\x04\x3d\x04\x38\x04\x4e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\ -\x43\x6c\x6f\x73\x65\x20\x4c\x69\x6e\x65\x07\x00\x00\x00\x0f\x44\ -\x72\x61\x66\x74\x5f\x43\x6c\x6f\x73\x65\x4c\x69\x6e\x65\x01\x03\ -\x00\x00\x00\x2c\x04\x17\x04\x30\x04\x3a\x04\x40\x04\x4b\x04\x42\ -\x04\x4c\x00\x20\x04\x40\x04\x38\x04\x41\x04\x43\x04\x35\x04\x3c\ -\x04\x43\x04\x4e\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x4e\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x43\x6c\x6f\x73\x65\x73\ -\x20\x74\x68\x65\x20\x6c\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\x20\ -\x64\x72\x61\x77\x6e\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\ -\x43\x6c\x6f\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x1a\x04\ -\x23\x04\x34\x04\x30\x04\x3b\x04\x38\x04\x42\x04\x4c\x00\x20\x04\ -\x42\x04\x3e\x04\x47\x04\x3a\x04\x43\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0c\x52\x65\x6d\x6f\x76\x65\x20\x50\x6f\x69\x6e\x74\x07\ -\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x44\x65\x6c\x50\x6f\x69\ -\x6e\x74\x01\x03\x00\x00\x00\x72\x04\x23\x04\x34\x04\x30\x04\x3b\ -\x04\x4f\x04\x35\x04\x42\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\ -\x04\x38\x00\x20\x04\x38\x04\x37\x00\x20\x04\x41\x04\x43\x04\x49\ -\x04\x35\x04\x41\x04\x42\x04\x32\x04\x43\x04\x4e\x04\x49\x04\x38\ -\x04\x45\x00\x20\x04\x1d\x04\x30\x04\x3f\x04\x40\x04\x30\x04\x32\ -\x04\x3b\x04\x4f\x04\x4e\x04\x49\x04\x38\x04\x45\x00\x20\x04\x38\ -\x04\x3b\x04\x38\x00\x20\x00\x42\x00\x2d\x04\x41\x04\x3f\x04\x3b\ -\x04\x30\x04\x39\x04\x3d\x04\x3e\x04\x32\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x30\x52\x65\x6d\x6f\x76\x65\x73\x20\x61\x20\x70\x6f\ -\x69\x6e\x74\x20\x66\x72\x6f\x6d\x20\x61\x6e\x20\x65\x78\x69\x73\ -\x74\x69\x6e\x67\x20\x77\x69\x72\x65\x20\x6f\x72\x20\x62\x73\x70\ -\x6c\x69\x6e\x65\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x44\ -\x65\x6c\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\xa4\x04\x21\x04\ -\x3e\x04\x37\x04\x34\x04\x30\x04\x35\x04\x42\x00\x20\x04\x40\x04\ -\x30\x04\x37\x04\x3c\x04\x35\x04\x40\x00\x2e\x00\x20\x00\x43\x00\ -\x54\x00\x52\x00\x4c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\ -\x3f\x04\x40\x04\x38\x04\x32\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\ -\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x04\ -\x34\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\x33\x04\x40\x04\x30\x04\ -\x3d\x04\x38\x04\x47\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\x2c\x00\ -\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\ -\x20\x04\x32\x04\x4b\x04\x31\x04\x3e\x04\x40\x04\x30\x00\x20\x04\ -\x41\x04\x35\x04\x33\x04\x3c\x04\x35\x04\x3d\x04\x42\x04\x30\x00\ -\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4e\x43\x72\x65\x61\x74\ -\x65\x73\x20\x61\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x2e\x20\ -\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\ -\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\ -\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x20\ -\x61\x20\x73\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x0f\x44\x72\ -\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x01\x03\x00\ -\x00\x00\x0c\x04\x20\x04\x30\x04\x37\x04\x3c\x04\x35\x04\x40\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x09\x44\x69\x6d\x65\x6e\x73\x69\ -\x6f\x6e\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x69\x6d\ -\x65\x6e\x73\x69\x6f\x6e\x01\x03\x00\x00\x00\x16\x04\x1f\x04\x35\ -\x04\x40\x04\x35\x04\x41\x04\x42\x04\x40\x04\x3e\x04\x38\x04\x42\ -\x04\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x44\x6f\x77\x6e\ -\x67\x72\x61\x64\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\ -\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x9c\x04\ -\x20\x04\x30\x04\x41\x04\x47\x04\x3b\x04\x35\x04\x3d\x04\x38\x04\ -\x42\x04\x4c\x00\x20\x04\x32\x04\x4b\x04\x31\x04\x40\x04\x30\x04\ -\x3d\x04\x3d\x04\x4b\x04\x35\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\ -\x35\x04\x3a\x04\x42\x04\x4b\x00\x20\x04\x3d\x04\x30\x00\x20\x04\ -\x31\x04\x3e\x04\x3b\x04\x35\x04\x35\x00\x20\x04\x3f\x04\x40\x04\ -\x3e\x04\x41\x04\x42\x04\x4b\x04\x35\x00\x20\x04\x3e\x04\x31\x04\ -\x4a\x04\x35\x04\x3a\x04\x42\x04\x4b\x00\x2c\x00\x20\x04\x38\x04\ -\x3b\x04\x38\x00\x20\x04\x32\x04\x4b\x04\x47\x04\x35\x04\x41\x04\ -\x42\x04\x4c\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\x35\x04\x40\x04\ -\x45\x04\x3d\x04\x3e\x04\x41\x04\x42\x04\x38\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x45\x45\x78\x70\x6c\x6f\x64\x65\x73\x20\x74\x68\ -\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ -\x74\x73\x20\x69\x6e\x74\x6f\x20\x73\x69\x6d\x70\x6c\x65\x72\x20\ -\x6f\x62\x6a\x65\x63\x74\x73\x2c\x20\x6f\x72\x20\x73\x75\x62\x74\ -\x72\x61\x63\x74\x20\x66\x61\x63\x65\x73\x07\x00\x00\x00\x0f\x44\ -\x72\x61\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\x03\ -\x00\x00\x00\x0e\x04\x20\x04\x38\x04\x41\x04\x43\x04\x3d\x04\x3e\ -\x04\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x44\x72\x61\x77\ -\x69\x6e\x67\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x44\x72\ -\x61\x77\x69\x6e\x67\x01\x03\x00\x00\x00\x56\x04\x1f\x04\x3e\x04\ -\x3c\x04\x35\x04\x49\x04\x30\x04\x35\x04\x42\x00\x20\x04\x32\x04\ -\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3d\x04\x4b\x04\x35\x00\ -\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x4b\x00\ -\x20\x04\x3d\x04\x30\x00\x20\x04\x3b\x04\x38\x04\x41\x04\x42\x00\ -\x20\x04\x47\x04\x35\x04\x40\x04\x42\x04\x35\x04\x36\x04\x30\x00\ -\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x50\x75\x74\x73\x20\ -\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ -\x65\x63\x74\x73\x20\x6f\x6e\x20\x61\x20\x44\x72\x61\x77\x69\x6e\ -\x67\x20\x73\x68\x65\x65\x74\x2e\x07\x00\x00\x00\x0d\x44\x72\x61\ -\x66\x74\x5f\x44\x72\x61\x77\x69\x6e\x67\x01\x03\x00\x00\x00\x0c\ -\x04\x1f\x04\x40\x04\x30\x04\x32\x04\x3a\x04\x30\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x0a\x44\ -\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\x3a\x04\ -\x20\x04\x35\x04\x34\x04\x30\x04\x3a\x04\x42\x04\x38\x04\x40\x04\ -\x3e\x04\x32\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x30\x04\x3a\x04\ -\x42\x04\x38\x04\x32\x04\x3d\x04\x4b\x04\x39\x00\x20\x04\x3e\x04\ -\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x17\x45\x64\x69\x74\x73\x20\x74\x68\x65\x20\x61\x63\x74\ -\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x0a\x44\ -\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\x1e\x04\ -\x17\x04\x30\x04\x3a\x04\x3e\x04\x3d\x04\x47\x04\x38\x04\x42\x04\ -\x4c\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x4e\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0b\x46\x69\x6e\x69\x73\x68\x20\x6c\x69\ -\x6e\x65\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\ -\x69\x73\x68\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x40\x04\x17\x04\ -\x30\x04\x3a\x04\x3e\x04\x3d\x04\x47\x04\x38\x04\x42\x04\x4c\x00\ -\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x4e\x00\x20\x04\x31\x04\ -\x35\x04\x37\x00\x20\x04\x35\x04\x35\x00\x20\x04\x37\x04\x30\x04\ -\x3a\x04\x40\x04\x4b\x04\x42\x04\x38\x04\x4f\x00\x20\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x22\x46\x69\x6e\x69\x73\x68\x65\x73\x20\ -\x61\x20\x6c\x69\x6e\x65\x20\x77\x69\x74\x68\x6f\x75\x74\x20\x63\ -\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\x07\x00\x00\x00\x10\x44\x72\ -\x61\x66\x74\x5f\x46\x69\x6e\x69\x73\x68\x4c\x69\x6e\x65\x01\x03\ -\x00\x00\x00\xa2\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x35\ -\x04\x42\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x4e\x00\x20\ -\x04\x3f\x04\x3e\x00\x20\x00\x32\x00\x2d\x04\x3c\x00\x20\x04\x42\ -\x04\x3e\x04\x47\x04\x3a\x04\x30\x04\x3c\x00\x2e\x00\x20\x04\x18\ -\x04\x41\x04\x3f\x04\x3e\x04\x3b\x04\x4c\x04\x37\x04\x43\x04\x39\ -\x04\x42\x04\x35\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\ -\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\ -\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\x2c\x00\x20\x00\x53\x00\x48\ -\x00\x49\x00\x46\x00\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\ -\x04\x3e\x04\x33\x04\x40\x04\x30\x04\x3d\x04\x38\x04\x47\x04\x35\ -\x04\x3d\x04\x38\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\ -\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\ -\x74\x20\x6c\x69\x6e\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\ -\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\ -\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\x72\x61\ -\x66\x74\x5f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x0a\x04\x1b\x04\ -\x38\x04\x3d\x04\x38\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\ -\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x16\x04\x1f\x04\x35\x04\x40\ -\x04\x35\x04\x3c\x04\x35\x04\x49\x04\x35\x04\x3d\x04\x38\x04\x35\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4d\x6f\x76\x65\x07\x00\ -\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4d\x6f\x76\x65\x01\x03\x00\ -\x00\x00\xdc\x04\x1f\x04\x35\x04\x40\x04\x35\x04\x3c\x04\x35\x04\ -\x49\x04\x30\x04\x35\x04\x42\x00\x20\x04\x32\x04\x4b\x04\x31\x04\ -\x40\x04\x30\x04\x3d\x04\x3d\x04\x4b\x04\x35\x00\x20\x04\x3e\x04\ -\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x4b\x00\x20\x04\x3c\x04\ -\x35\x04\x36\x04\x34\x04\x43\x00\x20\x00\x32\x00\x20\x04\x42\x04\ -\x3e\x04\x47\x04\x3a\x04\x30\x04\x3c\x04\x38\x00\x2e\x00\x20\x00\ -\x43\x00\x54\x00\x52\x00\x4c\x00\x2c\x00\x20\x04\x34\x04\x3b\x04\ -\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x04\x4f\x04\x37\x04\ -\x3a\x04\x38\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\ -\x54\x00\x2c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\ -\x33\x04\x40\x04\x30\x04\x3d\x04\x38\x04\x47\x04\x35\x04\x3d\x04\ -\x38\x04\x4f\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x04\ -\x34\x04\x3b\x04\x4f\x00\x20\x04\x3a\x04\x3e\x04\x3f\x04\x38\x04\ -\x40\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x38\x04\x4f\x00\x20\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x5a\x4d\x6f\x76\x65\x73\x20\x74\ -\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ -\x63\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x32\x20\x70\x6f\ -\x69\x6e\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ -\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\ -\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\ -\x6f\x70\x79\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4d\x6f\ -\x76\x65\x01\x03\x00\x00\x00\x10\x04\x21\x04\x3c\x04\x35\x04\x49\ -\x04\x35\x04\x3d\x04\x38\x04\x35\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x0c\x44\x72\x61\ -\x66\x74\x5f\x4f\x66\x66\x73\x65\x74\x01\x03\x00\x00\x00\xb6\x04\ -\x21\x04\x3c\x04\x35\x04\x49\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\ -\x20\x04\x30\x04\x3a\x04\x42\x04\x38\x04\x32\x04\x3d\x04\x3e\x04\ -\x33\x04\x3e\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\ -\x42\x04\x30\x00\x2e\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x2c\x00\ -\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x04\ -\x32\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\x2c\x00\x20\x00\x53\x00\ -\x48\x00\x49\x00\x46\x00\x54\x00\x2c\x00\x20\x04\x34\x04\x3b\x04\ -\x4f\x00\x20\x04\x3e\x04\x33\x04\x40\x04\x30\x04\x3d\x04\x38\x04\ -\x47\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\x2c\x00\x20\x00\x41\x00\ -\x4c\x00\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3a\x04\ -\x3e\x04\x3f\x04\x38\x04\x40\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\ -\x38\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x48\x4f\ -\x66\x66\x73\x65\x74\x73\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\ -\x65\x20\x6f\x62\x6a\x65\x63\x74\x2e\x20\x43\x54\x52\x4c\x20\x74\ -\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\ -\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\ -\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0c\x44\x72\x61\x66\ -\x74\x5f\x4f\x66\x66\x73\x65\x74\x01\x03\x00\x00\x00\xb4\x04\x21\ -\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x35\x04\x42\x00\x20\x04\x3f\ -\x04\x40\x04\x30\x04\x32\x04\x38\x04\x3b\x04\x4c\x04\x3d\x04\x4b\ -\x04\x39\x00\x20\x04\x3c\x04\x3d\x04\x3e\x04\x33\x04\x3e\x04\x43\ -\x04\x33\x04\x3e\x04\x3b\x04\x4c\x04\x3d\x04\x38\x04\x3a\x00\x2e\ -\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x04\x34\x04\x3b\ -\x04\x4f\x00\x20\x04\x37\x04\x30\x04\x34\x04\x30\x04\x3d\x04\x38\ -\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x04\x4f\x04\x37\ -\x04\x3a\x04\x38\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\ -\x00\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x37\x04\x30\ -\x04\x34\x04\x30\x04\x3d\x04\x38\x04\x4f\x00\x20\x04\x3e\x04\x33\ -\x04\x40\x04\x30\x04\x3d\x04\x38\x04\x47\x04\x35\x04\x3d\x04\x38\ -\x04\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3b\x43\x72\x65\x61\ -\x74\x65\x73\x20\x61\x20\x72\x65\x67\x75\x6c\x61\x72\x20\x70\x6f\ -\x6c\x79\x67\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\ -\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\ -\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\ -\x74\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\x03\x00\x00\x00\x1a\x04\ -\x1c\x04\x3d\x04\x3e\x04\x33\x04\x3e\x04\x43\x04\x33\x04\x3e\x04\ -\x3b\x04\x4c\x04\x3d\x04\x38\x04\x3a\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x07\x50\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\x00\x0d\x44\ -\x72\x61\x66\x74\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\x03\x00\x00\ -\x00\x7e\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x42\x04\x4c\ -\x00\x20\x04\x3f\x04\x40\x04\x4f\x04\x3c\x04\x3e\x04\x43\x04\x33\ -\x04\x3e\x04\x3b\x04\x4c\x04\x3d\x04\x38\x04\x3a\x00\x20\x04\x3f\ -\x04\x3e\x00\x20\x04\x34\x04\x32\x04\x43\x04\x3c\x00\x20\x04\x42\ -\x04\x3e\x04\x47\x04\x3a\x04\x30\x04\x3c\x00\x2e\x00\x20\x04\x1a\ -\x04\x3b\x04\x30\x04\x32\x04\x38\x04\x48\x04\x30\x00\x20\x00\x43\ -\x00\x54\x00\x52\x00\x4c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\ -\x04\x3f\x04\x40\x04\x38\x04\x32\x04\x4f\x04\x37\x04\x3a\x04\x38\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x43\x72\x65\x61\x74\x65\ -\x73\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\x74\x20\x72\x65\x63\x74\ -\x61\x6e\x67\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\ -\x6e\x61\x70\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x52\x65\ -\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\x1a\x04\x1f\x04\ -\x40\x04\x4f\x04\x3c\x04\x3e\x04\x43\x04\x33\x04\x3e\x04\x3b\x04\ -\x4c\x04\x3d\x04\x38\x04\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x09\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x0f\x44\ -\x72\x61\x66\x74\x5f\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\ -\x00\x00\x00\x12\x04\x1f\x04\x3e\x04\x32\x04\x35\x04\x40\x04\x3d\ -\x04\x43\x04\x42\x04\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ -\x52\x6f\x74\x61\x74\x65\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\ -\x5f\x52\x6f\x74\x61\x74\x65\x01\x03\x00\x00\x00\xbc\x04\x1f\x04\ -\x3e\x04\x32\x04\x3e\x04\x40\x04\x3e\x04\x42\x00\x20\x04\x32\x04\ -\x4b\x04\x34\x04\x35\x04\x3b\x04\x35\x04\x3d\x04\x3d\x04\x4b\x04\ -\x45\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\ -\x3e\x04\x32\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ -\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x04\ -\x32\x04\x4f\x04\x37\x04\x3a\x04\x38\x00\x2c\x00\x20\x00\x53\x00\ -\x48\x00\x49\x00\x46\x00\x54\x00\x2c\x00\x20\x04\x34\x04\x3b\x04\ -\x4f\x00\x20\x04\x3e\x04\x33\x04\x40\x04\x30\x04\x3d\x04\x38\x04\ -\x47\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\x2c\x00\x20\x00\x41\x00\ -\x4c\x00\x54\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x41\x04\ -\x3e\x04\x37\x04\x34\x04\x30\x04\x3d\x04\x38\x04\x4f\x00\x20\x04\ -\x3a\x04\x3e\x04\x3f\x04\x38\x04\x38\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x52\x52\x6f\x74\x61\x74\x65\x73\x20\x74\x68\x65\x20\x73\ -\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\ -\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\ -\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\ -\x6e\x2c\x20\x41\x4c\x54\x20\x63\x72\x65\x61\x74\x65\x73\x20\x61\ -\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\ -\x52\x6f\x74\x61\x74\x65\x01\x03\x00\x00\x00\x0e\x04\x1c\x04\x30\ -\x04\x41\x04\x48\x04\x42\x04\x30\x04\x31\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x07\x00\x00\x00\x0b\x44\x72\ -\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\xe0\x04\ -\x1c\x04\x30\x04\x41\x04\x48\x04\x42\x04\x30\x04\x31\x04\x38\x04\ -\x40\x04\x43\x04\x35\x04\x42\x00\x20\x04\x32\x04\x4b\x04\x31\x04\ -\x40\x04\x30\x04\x3d\x04\x3d\x04\x4b\x04\x35\x00\x20\x04\x3e\x04\ -\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x4b\x00\x20\x04\x38\x04\ -\x37\x00\x20\x04\x31\x04\x30\x04\x37\x04\x3e\x04\x32\x04\x3e\x04\ -\x39\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x38\x00\x2e\x00\ -\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x2c\x00\x20\x04\x34\x04\ -\x3b\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x04\x4f\x04\ -\x37\x04\x3a\x04\x38\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\ -\x46\x00\x54\x00\x2c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\ -\x3e\x04\x33\x04\x40\x04\x30\x04\x3d\x04\x38\x04\x47\x04\x35\x04\ -\x3d\x04\x38\x04\x4f\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\ -\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3a\x04\x3e\x04\x3f\x04\ -\x38\x04\x40\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x38\x04\x4f\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x5c\x53\x63\x61\x6c\x65\x73\x20\ -\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ -\x65\x63\x74\x73\x20\x66\x72\x6f\x6d\x20\x61\x20\x62\x61\x73\x65\ -\x20\x70\x6f\x69\x6e\x74\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\ -\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\ -\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\ -\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\ -\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\x18\x00\x53\x00\x65\x00\ -\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x67\x00\x72\x00\x6f\x00\ -\x75\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x65\x6c\ -\x65\x63\x74\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x11\x44\x72\ -\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x47\x72\x6f\x75\x70\x01\ -\x03\x00\x00\x00\x6e\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ -\x74\x00\x73\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x77\x00\ -\x69\x00\x74\x00\x68\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ -\x73\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x70\x00\x61\x00\x72\x00\ -\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x61\x00\x73\x00\x20\x00\ -\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x67\x00\x72\x00\x6f\x00\ -\x75\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x53\x65\x6c\ -\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x70\ -\x61\x72\x65\x6e\x74\x73\x20\x61\x73\x20\x74\x68\x69\x73\x20\x67\ -\x72\x6f\x75\x70\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\ -\x65\x6c\x65\x63\x74\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x62\ -\x04\x12\x04\x4b\x04\x31\x04\x35\x04\x40\x04\x38\x04\x42\x04\x35\ -\x00\x20\x04\x40\x04\x30\x04\x31\x04\x3e\x04\x47\x04\x43\x04\x4e\ -\x00\x20\x04\x3f\x04\x3b\x04\x3e\x04\x41\x04\x3a\x04\x3e\x04\x41\ -\x04\x42\x04\x4c\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x41\ -\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x3d\x04\x38\x04\x4f\x00\x20\ -\x04\x33\x04\x35\x04\x3e\x04\x3c\x04\x35\x04\x42\x04\x40\x04\x38\ -\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x53\x65\x6c\x65\ -\x63\x74\x20\x61\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\x6c\x61\ -\x6e\x65\x20\x66\x6f\x72\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\x20\ -\x63\x72\x65\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x11\x44\x72\x61\ -\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x01\x03\ -\x00\x00\x00\x1e\x04\x12\x04\x4b\x04\x31\x04\x3e\x04\x40\x00\x20\ -\x04\x3f\x04\x3b\x04\x3e\x04\x41\x04\x3a\x04\x3e\x04\x41\x04\x42\ -\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x65\x6c\x65\ -\x63\x74\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x44\x72\x61\x66\ -\x74\x5f\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x01\x03\x00\ -\x00\x00\x54\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\ -\x73\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\ -\x32\x00\x44\x00\x20\x00\x76\x00\x69\x00\x65\x00\x77\x00\x73\x00\ -\x20\x00\x6f\x00\x66\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ -\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x2a\x43\x72\x65\x61\x74\x65\x73\x20\x53\x68\x61\x70\x65\x20\x32\ -\x44\x20\x76\x69\x65\x77\x73\x20\x6f\x66\x20\x73\x65\x6c\x65\x63\ -\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x11\ -\x44\x72\x61\x66\x74\x5f\x53\x68\x61\x70\x65\x32\x44\x56\x69\x65\ -\x77\x01\x03\x00\x00\x00\x1a\x00\x53\x00\x68\x00\x61\x00\x70\x00\ -\x65\x00\x20\x00\x32\x00\x44\x00\x20\x00\x76\x00\x69\x00\x65\x00\ -\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x68\x61\x70\x65\ -\x20\x32\x44\x20\x76\x69\x65\x77\x07\x00\x00\x00\x11\x44\x72\x61\ -\x66\x74\x5f\x53\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\ -\x00\x00\x00\x44\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x42\ -\x04\x4c\x00\x20\x04\x3d\x04\x30\x04\x34\x04\x3f\x04\x38\x04\x41\ -\x04\x4c\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\ -\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\ -\x04\x4f\x04\x37\x04\x3a\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x23\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x6e\x6e\ -\x6f\x74\x61\x74\x69\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\ -\x20\x73\x6e\x61\x70\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\ -\x54\x65\x78\x74\x01\x03\x00\x00\x00\x0a\x04\x22\x04\x35\x04\x3a\ -\x04\x41\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\x65\ -\x78\x74\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\x78\ -\x74\x01\x03\x00\x00\x00\x46\x04\x1f\x04\x35\x04\x40\x04\x35\x04\ -\x3a\x04\x3b\x04\x4e\x04\x47\x04\x35\x04\x3d\x04\x38\x04\x35\x00\ -\x20\x04\x40\x04\x35\x04\x36\x04\x38\x04\x3c\x04\x30\x00\x20\x04\ -\x3a\x04\x3e\x04\x3d\x04\x41\x04\x42\x04\x40\x04\x43\x04\x38\x04\ -\x40\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x38\x04\x4f\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x17\x54\x6f\x67\x67\x6c\x65\x20\x63\x6f\ -\x6e\x73\x74\x72\x75\x63\x69\x6f\x6e\x20\x4d\x6f\x64\x65\x07\x00\ -\x00\x00\x1c\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\ -\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x4d\x6f\x64\x65\x01\ -\x03\x00\x00\x00\x76\x04\x1f\x04\x35\x04\x40\x04\x35\x04\x3a\x04\ -\x3b\x04\x4e\x04\x47\x04\x35\x04\x3d\x04\x38\x04\x35\x00\x20\x04\ -\x40\x04\x35\x04\x36\x04\x38\x04\x3c\x04\x30\x00\x20\x04\x3a\x04\ -\x3e\x04\x3d\x04\x41\x04\x42\x04\x40\x04\x43\x04\x38\x04\x40\x04\ -\x3e\x04\x32\x04\x30\x04\x3d\x04\x38\x04\x4f\x00\x20\x04\x34\x04\ -\x3b\x04\x4f\x00\x20\x04\x41\x04\x3b\x04\x35\x04\x34\x04\x43\x04\ -\x4e\x04\x49\x04\x38\x04\x45\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\ -\x35\x04\x3a\x04\x42\x04\x3e\x04\x32\x00\x2e\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x2f\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\x65\ -\x20\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x4d\x6f\ -\x64\x65\x20\x66\x6f\x72\x20\x6e\x65\x78\x74\x20\x6f\x62\x6a\x65\ -\x63\x74\x73\x2e\x07\x00\x00\x00\x1c\x44\x72\x61\x66\x74\x5f\x54\ -\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\ -\x6e\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x28\x00\x54\x00\x6f\x00\ -\x67\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\ -\x74\x00\x69\x00\x6e\x00\x75\x00\x65\x00\x20\x00\x4d\x00\x6f\x00\ -\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x6f\x67\ -\x67\x6c\x65\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x20\x4d\x6f\x64\ -\x65\x07\x00\x00\x00\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\ -\x6c\x65\x43\x6f\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\x01\x03\ -\x00\x00\x00\x58\x00\x54\x00\x6f\x00\x67\x00\x67\x00\x6c\x00\x65\ -\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x43\x00\x6f\ -\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x65\x00\x20\x00\x4d\ -\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ -\x00\x6e\x00\x65\x00\x78\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6d\ -\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x73\x00\x2e\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x2c\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\ -\x65\x20\x43\x6f\x6e\x74\x69\x6e\x75\x65\x20\x4d\x6f\x64\x65\x20\ -\x66\x6f\x72\x20\x6e\x65\x78\x74\x20\x63\x6f\x6d\x6d\x61\x6e\x64\ -\x73\x2e\x07\x00\x00\x00\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\ -\x67\x6c\x65\x43\x6f\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\x01\ -\x03\x00\x00\x00\x9e\x04\x1f\x04\x35\x04\x40\x04\x35\x04\x3a\x04\ -\x3b\x04\x4e\x04\x47\x04\x30\x04\x35\x04\x42\x00\x20\x04\x40\x04\ -\x35\x04\x36\x04\x38\x04\x3c\x00\x20\x04\x3e\x04\x42\x04\x3e\x04\ -\x31\x04\x40\x04\x30\x04\x36\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\ -\x20\x04\x32\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3d\x04\ -\x4b\x04\x45\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\ -\x42\x04\x3e\x04\x32\x00\x20\x04\x3c\x04\x35\x04\x36\x04\x34\x04\ -\x43\x00\x20\x04\x3a\x04\x30\x04\x40\x04\x3a\x04\x30\x04\x41\x04\ -\x3d\x04\x4b\x04\x3c\x00\x20\x04\x38\x00\x20\x04\x44\x04\x3b\x04\ -\x4d\x04\x42\x04\x3b\x04\x30\x04\x39\x04\x3d\x04\x3e\x04\x32\x04\ -\x4b\x04\x3c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x46\x53\x77\x61\ -\x70\x73\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x6d\x6f\x64\x65\x20\ -\x6f\x66\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ -\x63\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x77\x69\x72\x65\ -\x66\x72\x61\x6d\x65\x20\x61\x6e\x64\x20\x66\x6c\x61\x74\x6c\x69\ -\x6e\x65\x73\x07\x00\x00\x00\x17\x44\x72\x61\x66\x74\x5f\x54\x6f\ -\x67\x67\x6c\x65\x44\x69\x73\x70\x6c\x61\x79\x4d\x6f\x64\x65\x01\ -\x03\x00\x00\x00\x3a\x04\x1f\x04\x35\x04\x40\x04\x35\x04\x3a\x04\ -\x3b\x04\x4e\x04\x47\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x40\x04\ -\x35\x04\x36\x04\x38\x04\x3c\x00\x20\x04\x3e\x04\x42\x04\x3e\x04\ -\x31\x04\x40\x04\x30\x04\x36\x04\x35\x04\x3d\x04\x38\x04\x4f\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x13\x54\x6f\x67\x67\x6c\x65\x20\ -\x64\x69\x73\x70\x6c\x61\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\ -\x17\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x44\x69\x73\ -\x70\x6c\x61\x79\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x0c\x00\x54\ -\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x78\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x06\x54\x72\x69\x6d\x65\x78\x07\x00\x00\x00\x0c\x44\ -\x72\x61\x66\x74\x5f\x54\x72\x69\x6d\x65\x78\x01\x03\x00\x00\x01\ -\x12\x00\x54\x00\x72\x00\x69\x00\x6d\x00\x73\x00\x20\x00\x6f\x00\ -\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\x65\x00\x6e\x00\x64\x00\ -\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\ -\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x2c\x00\x20\x00\x6f\x00\ -\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\x72\x00\x75\x00\x64\x00\ -\x65\x00\x73\x00\x20\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x6c\x00\ -\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x2e\x00\ -\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x73\x00\x6e\x00\ -\x61\x00\x70\x00\x73\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\ -\x46\x00\x54\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\ -\x72\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x20\x00\x74\x00\x6f\x00\ -\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\x74\x00\ -\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ -\x20\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x6e\x00\ -\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x2c\x00\x20\x00\x41\x00\ -\x4c\x00\x54\x00\x20\x00\x69\x00\x6e\x00\x76\x00\x65\x00\x72\x00\ -\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x89\x54\x72\x69\ -\x6d\x73\x20\x6f\x72\x20\x65\x78\x74\x65\x6e\x64\x73\x20\x74\x68\ -\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ -\x74\x2c\x20\x6f\x72\x20\x65\x78\x74\x72\x75\x64\x65\x73\x20\x73\ -\x69\x6e\x67\x6c\x65\x20\x66\x61\x63\x65\x73\x2e\x20\x43\x54\x52\ -\x4c\x20\x73\x6e\x61\x70\x73\x2c\x20\x53\x48\x49\x46\x54\x20\x63\ -\x6f\x6e\x73\x74\x72\x61\x69\x6e\x73\x20\x74\x6f\x20\x63\x75\x72\ -\x72\x65\x6e\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\x72\x20\ -\x74\x6f\x20\x6e\x6f\x72\x6d\x61\x6c\x2c\x20\x41\x4c\x54\x20\x69\ -\x6e\x76\x65\x72\x74\x73\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\ -\x5f\x54\x72\x69\x6d\x65\x78\x01\x03\x00\x00\x00\x34\x04\x1e\x04\ -\x42\x04\x3c\x04\x35\x04\x3d\x04\x38\x04\x42\x04\x4c\x00\x20\x04\ -\x3f\x04\x3e\x04\x41\x04\x3b\x04\x35\x04\x34\x04\x3d\x04\x38\x04\ -\x39\x00\x20\x04\x41\x04\x35\x04\x33\x04\x3c\x04\x35\x04\x3d\x04\ -\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x55\x6e\x64\x6f\x20\ -\x6c\x61\x73\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\ -\x0e\x44\x72\x61\x66\x74\x5f\x55\x6e\x64\x6f\x4c\x69\x6e\x65\x01\ -\x03\x00\x00\x00\x6e\x04\x1e\x04\x42\x04\x3c\x04\x35\x04\x3d\x04\ -\x30\x00\x20\x04\x3f\x04\x3e\x04\x41\x04\x3b\x04\x35\x04\x34\x04\ -\x3d\x04\x35\x04\x33\x04\x3e\x00\x20\x04\x3d\x04\x30\x04\x40\x04\ -\x38\x04\x41\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x3e\x04\ -\x33\x04\x3e\x00\x20\x04\x41\x04\x35\x04\x33\x04\x3c\x04\x35\x04\ -\x3d\x04\x42\x04\x30\x00\x20\x04\x40\x04\x38\x04\x41\x04\x43\x04\ -\x35\x04\x3c\x04\x3e\x04\x39\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\ -\x38\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x55\x6e\x64\ -\x6f\x65\x73\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x64\x72\x61\ -\x77\x6e\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\x66\x20\x74\x68\ -\x65\x20\x6c\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\x20\x64\x72\x61\ -\x77\x6e\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x55\x6e\x64\ -\x6f\x4c\x69\x6e\x65\x01\x03\x00\x00\x01\x08\x04\x1e\x04\x31\x04\ -\x4a\x04\x35\x04\x34\x04\x38\x04\x3d\x04\x38\x04\x42\x04\x4c\x00\ -\x20\x04\x32\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x3d\x04\ -\x4b\x04\x35\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\ -\x42\x04\x4b\x00\x20\x04\x32\x00\x20\x04\x3e\x04\x34\x04\x38\x04\ -\x3d\x00\x2c\x00\x20\x04\x38\x04\x3b\x04\x38\x00\x20\x04\x3f\x04\ -\x40\x04\x35\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x37\x04\x3e\x04\ -\x32\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x37\x04\x30\x04\x3c\x04\ -\x3a\x04\x3d\x04\x43\x04\x42\x04\x4b\x04\x35\x00\x20\x04\x3d\x04\ -\x30\x04\x30\x04\x3f\x04\x40\x04\x30\x04\x32\x04\x3b\x04\x4f\x04\ -\x4e\x04\x49\x04\x38\x04\x35\x00\x20\x04\x32\x00\x20\x04\x41\x04\ -\x3a\x04\x40\x04\x43\x04\x33\x04\x3b\x04\x35\x04\x3d\x04\x3d\x04\ -\x4b\x04\x35\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\x35\x04\x40\x04\ -\x45\x04\x3d\x04\x3e\x04\x41\x04\x42\x04\x38\x00\x2c\x00\x20\x04\ -\x38\x04\x3b\x04\x38\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\ -\x34\x04\x38\x04\x3d\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x3f\x04\ -\x3e\x04\x32\x04\x35\x04\x40\x04\x45\x04\x3d\x04\x3e\x04\x41\x04\ -\x42\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5d\x4a\x6f\x69\ -\x6e\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ -\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\x6f\x6e\x65\ -\x2c\x20\x6f\x72\x20\x63\x6f\x6e\x76\x65\x72\x74\x73\x20\x63\x6c\ -\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x73\x20\x74\x6f\x20\x66\x69\ -\x6c\x6c\x65\x64\x20\x66\x61\x63\x65\x73\x2c\x20\x6f\x72\x20\x75\ -\x6e\x69\x74\x65\x20\x66\x61\x63\x65\x73\x07\x00\x00\x00\x0d\x44\ -\x72\x61\x66\x74\x5f\x55\x70\x67\x72\x61\x64\x65\x01\x03\x00\x00\ -\x00\x10\x04\x1e\x04\x31\x04\x3d\x04\x3e\x04\x32\x04\x38\x04\x42\ -\x04\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x55\x70\x67\x72\ -\x61\x64\x65\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x55\x70\ -\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x52\x04\x21\x04\x3e\x04\ -\x37\x04\x34\x04\x30\x04\x3d\x04\x38\x04\x35\x00\x20\x04\x48\x04\ -\x3b\x04\x35\x04\x39\x04\x44\x04\x3e\x04\x32\x00\x20\x04\x3f\x04\ -\x40\x04\x3e\x04\x32\x04\x3e\x04\x34\x04\x3e\x04\x32\x00\x2e\x00\ -\x20\x00\x22\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x22\x00\x2b\x00\ -\x22\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x22\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x3f\x43\x72\x65\x61\x74\x65\x73\x20\x61\ -\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\x70\x6f\x69\x6e\x74\x20\ -\x77\x69\x72\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ -\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\ -\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\ -\x5f\x57\x69\x72\x65\x01\x03\x00\x00\x00\x0e\x04\x1b\x04\x3e\x04\ -\x3c\x04\x30\x04\x3d\x04\x30\x04\x4f\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x04\x57\x69\x72\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\ -\x74\x5f\x57\x69\x72\x65\x01\x03\x00\x00\x00\x62\x04\x1f\x04\x40\ -\x04\x35\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x37\x04\x3e\x04\x32\ -\x04\x30\x04\x3d\x04\x38\x04\x35\x00\x20\x04\x1d\x04\x30\x04\x3f\ -\x04\x40\x04\x30\x04\x32\x04\x3b\x04\x4f\x04\x4e\x04\x49\x04\x35\ -\x04\x39\x00\x20\x04\x32\x00\x20\x00\x42\x00\x2d\x04\x41\x04\x3f\ -\x04\x3b\x04\x30\x04\x39\x04\x3d\x00\x20\x04\x38\x00\x20\x04\x3d\ -\x04\x30\x04\x3e\x04\x31\x04\x3e\x04\x40\x04\x3e\x04\x42\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x21\x43\x6f\x6e\x76\x65\x72\x74\x73\ -\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x57\x69\x72\x65\x20\x61\x6e\ -\x64\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x13\x44\x72\ -\x61\x66\x74\x5f\x57\x69\x72\x65\x54\x6f\x42\x53\x70\x6c\x69\x6e\ -\x65\x01\x03\x00\x00\x00\x2c\x04\x1d\x04\x30\x04\x3f\x04\x40\x04\ -\x30\x04\x32\x04\x3b\x04\x4f\x04\x4e\x04\x49\x04\x30\x04\x4f\x00\ -\x20\x04\x32\x00\x20\x00\x42\x00\x53\x00\x70\x00\x6c\x00\x69\x00\ -\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x57\x69\x72\ -\x65\x20\x74\x6f\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\ -\x13\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\x54\x6f\x42\x53\x70\ -\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x0e\x00\x41\x00\x6c\x00\x74\ -\x00\x20\x00\x6d\x00\x6f\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x07\x41\x6c\x74\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x3e\x00\x41\x00\x6c\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\ -\x74\x00\x65\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x50\x00\ -\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x73\x00\x20\x00\ -\x6c\x00\x6f\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x41\x6c\x74\x65\x72\x6e\x61\ -\x74\x65\x20\x53\x56\x47\x20\x50\x61\x74\x74\x65\x72\x6e\x73\x20\ -\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5a\ -\x00\x41\x00\x6c\x00\x77\x00\x61\x00\x79\x00\x73\x00\x20\x00\x73\ -\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x6f\ -\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x28\ -\x00\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\ -\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6d\x00\x6f\x00\x64\ -\x00\x20\x00\x6b\x00\x65\x00\x79\x00\x29\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x2d\x41\x6c\x77\x61\x79\x73\x20\x73\x6e\x61\x70\x20\ -\x74\x6f\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x28\x64\x69\x73\x61\ -\x62\x6c\x65\x20\x73\x6e\x61\x70\x20\x6d\x6f\x64\x20\x6b\x65\x79\ -\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x41\x00\x72\x00\x69\x00\ -\x61\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x41\x72\x69\ -\x61\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x04\x1e\x04\x31\x04\x40\ -\x04\x30\x04\x42\x04\x3d\x04\x4b\x04\x39\x00\x20\x04\x41\x04\x3b\ -\x04\x4d\x04\x48\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x35\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x1e\x04\x1e\x04\x31\x04\x40\x04\x30\x04\x42\x04\ -\x3d\x04\x4b\x04\x39\x00\x20\x04\x41\x04\x3b\x04\x4d\x04\x48\x00\ -\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\x63\ -\x6b\x73\x6c\x61\x73\x68\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\ -\x04\x1e\x04\x31\x04\x40\x04\x30\x04\x42\x04\x3d\x04\x4b\x04\x39\ -\x00\x20\x04\x41\x04\x3b\x04\x4d\x04\x48\x00\x20\x00\x39\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\ -\x68\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x9c\x04\x23\x04\x41\x04\ -\x42\x04\x30\x04\x3d\x04\x3e\x04\x32\x04\x38\x04\x42\x04\x35\x00\ -\x20\x04\x4d\x04\x42\x04\x3e\x04\x42\x00\x20\x04\x44\x04\x3b\x04\ -\x30\x04\x36\x04\x3e\x04\x3a\x00\x2c\x00\x20\x04\x35\x04\x41\x04\ -\x3b\x04\x38\x00\x20\x04\x32\x04\x4b\x00\x20\x04\x45\x04\x3e\x04\ -\x42\x04\x38\x04\x42\x04\x35\x00\x20\x04\x42\x04\x30\x04\x3a\x04\ -\x36\x04\x35\x00\x20\x04\x38\x04\x3c\x04\x3f\x04\x3e\x04\x40\x04\ -\x42\x04\x38\x04\x40\x04\x3e\x04\x32\x04\x30\x04\x42\x04\x4c\x00\ -\x20\x04\x3e\x04\x31\x04\x3b\x04\x30\x04\x41\x04\x42\x04\x38\x00\ -\x20\x00\x28\x00\x33\x00\x44\x00\x20\x04\x33\x04\x40\x04\x30\x04\ -\x3d\x04\x38\x00\x29\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x3f\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x79\ -\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x68\x65\x20\x61\x72\x65\x61\ -\x73\x20\x28\x33\x44\x20\x66\x61\x63\x65\x73\x29\x20\x74\x6f\x20\ -\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\x2e\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\xa0\x04\x1f\x04\x40\x04\x3e\x04\x32\ -\x04\x35\x04\x40\x04\x4c\x04\x42\x04\x35\x00\x20\x04\x4d\x04\x42\ -\x04\x3e\x00\x2c\x00\x20\x04\x35\x04\x41\x04\x3b\x04\x38\x00\x20\ -\x04\x32\x04\x4b\x00\x20\x04\x45\x04\x3e\x04\x42\x04\x38\x04\x42\ -\x04\x35\x00\x20\x04\x3d\x04\x35\x04\x38\x04\x3c\x04\x35\x04\x3d\ -\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x3d\x04\x4b\x04\x35\x00\x20\ -\x04\x31\x04\x3b\x04\x3e\x04\x3a\x04\x38\x00\x20\x00\x28\x04\x3d\ -\x04\x30\x04\x47\x04\x38\x04\x3d\x04\x30\x04\x4f\x00\x20\x04\x41\ -\x00\x20\x00\x2a\x00\x29\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\ -\x04\x38\x04\x3c\x04\x3f\x04\x3e\x04\x40\x04\x42\x04\x30\x00\x20\ -\x04\x42\x04\x3e\x04\x36\x04\x35\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x53\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\ -\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x68\x65\x20\x6e\x6f\x6e\ -\x2d\x6e\x61\x6d\x65\x64\x20\x62\x6c\x6f\x63\x6b\x73\x20\x28\x62\ -\x65\x67\x69\x6e\x6e\x69\x6e\x67\x20\x77\x69\x74\x68\x20\x61\x20\ -\x2a\x29\x20\x74\x6f\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\ -\x64\x20\x74\x6f\x6f\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x04\x1a\x04\ -\x40\x04\x43\x04\x33\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x35\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x0c\x04\x1a\x04\x40\x04\x43\x04\x33\x00\x20\x00\x37\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\x20\ -\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x04\x1a\x04\x40\x04\x43\x04\ -\x33\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\ -\x69\x72\x63\x6c\x65\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x48\x04\ -\x26\x04\x32\x04\x35\x04\x42\x00\x2c\x00\x20\x04\x41\x04\x3e\x04\ -\x3f\x04\x3e\x04\x41\x04\x42\x04\x30\x04\x32\x04\x3b\x04\x35\x04\ -\x3d\x04\x3d\x04\x4b\x04\x39\x00\x20\x04\x41\x00\x20\x04\x48\x04\ -\x38\x04\x40\x04\x38\x04\x3d\x04\x3e\x04\x39\x00\x20\x04\x3b\x04\ -\x38\x04\x3d\x04\x38\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x19\x43\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x65\x64\x20\x74\x6f\ -\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x30\x04\x24\x04\x30\x04\x39\x04\x3b\x00\x20\x04\x41\x04\x3e\ -\x04\x3f\x04\x3e\x04\x41\x04\x42\x04\x30\x04\x32\x04\x3b\x04\x35\ -\x04\x3d\x04\x38\x04\x4f\x00\x20\x04\x46\x04\x32\x04\x35\x04\x42\ -\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x43\x6f\x6c\x6f\ -\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x1a\x00\x43\x00\x6f\x00\x6e\x00\x73\x00\x74\ -\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x6d\x00\x6f\x00\x64\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x73\x74\x72\ -\x61\x69\x6e\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x04\ -\x1a\x04\x3e\x04\x3d\x04\x41\x04\x42\x04\x40\x04\x43\x04\x3a\x04\ -\x42\x04\x3e\x04\x40\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\ -\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x20\x04\x26\x04\x32\x04\x35\x04\x42\x00\x20\x04\x3a\x04\ -\x3e\x04\x3d\x04\x41\x04\x42\x04\x40\x04\x43\x04\x3a\x04\x46\x04\ -\x38\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x43\x6f\x6e\ -\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x63\x6f\x6c\x6f\x72\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x30\x04\x18\x04\x3c\x04\x4f\x00\x20\x04\ -\x3f\x04\x40\x04\x3e\x04\x35\x04\x3a\x04\x42\x04\x38\x04\x40\x04\ -\x43\x04\x4e\x04\x49\x04\x35\x04\x39\x00\x20\x04\x33\x04\x40\x04\ -\x43\x04\x3f\x04\x3f\x04\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x17\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x67\x72\ -\x6f\x75\x70\x20\x6e\x61\x6d\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\ -\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x70\ -\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\ -\x00\x63\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ -\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x43\x72\x65\x61\ -\x74\x65\x20\x70\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\ -\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x04\x1f\x04\ -\x30\x04\x40\x04\x30\x04\x3c\x04\x35\x04\x42\x04\x40\x04\x4b\x00\ -\x20\x04\x44\x04\x3e\x04\x40\x04\x3c\x04\x30\x04\x42\x04\x30\x00\ -\x20\x00\x44\x00\x58\x00\x46\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x12\x44\x58\x46\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\ -\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x04\x26\x04\x32\x04\ -\x35\x04\x42\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\x3c\x04\ -\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0d\x44\x65\x66\x61\x75\x6c\x74\x20\x63\ -\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4a\x04\x12\x04\x4b\ -\x04\x41\x04\x3e\x04\x42\x04\x30\x00\x20\x04\x42\x04\x35\x04\x3a\ -\x04\x41\x04\x42\x04\x30\x00\x20\x04\x38\x00\x20\x04\x40\x04\x30\ -\x04\x37\x04\x3c\x04\x35\x04\x40\x04\x3e\x04\x32\x00\x20\x04\x3f\ -\x04\x3e\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\ -\x04\x3d\x04\x38\x04\x4e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\ -\x44\x65\x66\x61\x75\x6c\x74\x20\x68\x65\x69\x67\x68\x74\x20\x66\ -\x6f\x72\x20\x74\x65\x78\x74\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\ -\x65\x6e\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x04\ -\x28\x04\x38\x04\x40\x04\x38\x04\x3d\x04\x30\x00\x20\x04\x3b\x04\ -\x38\x04\x3d\x04\x38\x04\x38\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\ -\x43\x04\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\x04\x38\x04\ -\x4e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\x65\x66\x61\x75\ -\x6c\x74\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x32\x04\x28\x04\x30\x04\x31\x04\x3b\x04\x3e\x04\x3d\ -\x00\x20\x04\x3b\x04\x38\x04\x41\x04\x42\x04\x30\x00\x20\x04\x3f\ -\x04\x3e\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\ -\x04\x3d\x04\x38\x04\x4e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\ -\x44\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\ -\x20\x73\x68\x65\x65\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x04\x28\ -\x04\x40\x04\x38\x04\x44\x04\x42\x00\x20\x04\x42\x04\x35\x04\x3a\ -\x04\x41\x04\x42\x04\x30\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\ -\x04\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\x65\x66\x61\x75\x6c\ -\x74\x20\x74\x65\x78\x74\x20\x66\x6f\x6e\x74\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x34\x04\x12\x04\x4b\x04\x41\x04\x3e\x04\x42\x04\x30\x00\ -\x20\x04\x42\x04\x35\x04\x3a\x04\x41\x04\x42\x04\x30\x00\x20\x04\ -\x3f\x04\x3e\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\x47\x04\ -\x30\x04\x3d\x04\x38\x04\x4e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x13\x44\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x78\x74\x20\x68\x65\ -\x69\x67\x68\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x04\x20\x04\x30\ -\x04\x31\x04\x3e\x04\x47\x04\x30\x04\x4f\x00\x20\x04\x3f\x04\x3b\ -\x04\x3e\x04\x41\x04\x3a\x04\x3e\x04\x41\x04\x42\x04\x4c\x00\x20\ -\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\x47\ -\x04\x30\x04\x3d\x04\x38\x04\x4e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x15\x44\x65\x66\x61\x75\x6c\x74\x20\x77\x6f\x72\x6b\x69\x6e\ -\x67\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\x04\ -\x20\x04\x30\x04\x37\x04\x3c\x04\x35\x04\x40\x04\x4b\x00\x20\x04\ -\x38\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x04\x35\x04\x3b\x04\ -\x35\x04\x33\x04\x38\x04\x38\x00\x20\x04\x41\x04\x42\x04\x38\x04\ -\x3b\x04\x4f\x00\x20\x04\x41\x04\x42\x04\x40\x04\x35\x04\x3b\x04\ -\x3a\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x44\x69\x6d\ -\x65\x6e\x73\x69\x6f\x6e\x73\x20\x26\x20\x4c\x65\x61\x64\x65\x72\ -\x20\x61\x72\x72\x6f\x77\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x34\x00\x44\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\ -\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x70\x00\x72\x00\x65\ -\x00\x63\x00\x69\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6c\ -\x00\x65\x00\x76\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x1a\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x70\x72\x65\ -\x63\x69\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x0e\x04\x22\x04\x3e\x04\x47\x04\x3a\x04\x30\x00\x20\ -\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\ -\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x04\x22\x04\x3e\x04\x47\x04\ -\x3a\x04\x30\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x05\x44\x6f\x74\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x04\x22\ -\x04\x3e\x04\x47\x04\x3a\x04\x30\x00\x20\x00\x39\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\x39\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x28\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\ -\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x66\x00\x61\x00\x63\x00\ -\x65\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x14\x44\x72\x61\x66\x74\x20\x69\x6e\x74\x65\x72\ -\x66\x61\x63\x65\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x48\x00\x45\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\ -\x33\x00\x44\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ -\x74\x00\x73\x00\x20\x00\x61\x00\x73\x00\x20\x00\x70\x00\x6f\x00\ -\x6c\x00\x79\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6d\x00\ -\x65\x00\x73\x00\x68\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x24\x45\x78\x70\x6f\x72\x74\x20\x33\x44\x20\x6f\x62\x6a\ -\x65\x63\x74\x73\x20\x61\x73\x20\x70\x6f\x6c\x79\x66\x61\x63\x65\ -\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4e\x04\ -\x12\x04\x4b\x04\x3f\x04\x3e\x04\x3b\x04\x3d\x04\x38\x04\x42\x04\ -\x4c\x00\x20\x04\x37\x04\x30\x04\x3b\x04\x38\x04\x32\x04\x3a\x04\ -\x43\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\ -\x3e\x04\x32\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\x3c\x04\ -\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x17\x46\x69\x6c\x6c\x20\x6f\x62\x6a\x65\ -\x63\x74\x73\x20\x62\x79\x20\x64\x65\x66\x61\x75\x6c\x74\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x36\x04\x1e\x04\x41\x04\x3d\x04\x3e\x04\x32\ -\x04\x3d\x04\x4b\x04\x35\x00\x20\x04\x3f\x04\x30\x04\x40\x04\x30\ -\x04\x3c\x04\x35\x04\x42\x04\x40\x04\x4b\x00\x20\x04\x47\x04\x35\ -\x04\x40\x04\x47\x04\x35\x04\x3d\x04\x38\x04\x4f\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x16\x47\x65\x6e\x65\x72\x61\x6c\x20\x44\x72\ -\x61\x66\x74\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x1e\x04\x1e\x04\x31\x04\x49\x04\x38\x04\x35\x00\x20\ -\x04\x3d\x04\x30\x04\x41\x04\x42\x04\x40\x04\x3e\x04\x39\x04\x3a\ -\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\ -\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x38\x04\x13\x04\x3b\x04\x3e\x04\x31\x04\x30\x04\x3b\ -\x04\x4c\x04\x3d\x04\x4b\x04\x39\x00\x20\x04\x40\x04\x35\x04\x36\ -\x04\x38\x04\x3c\x00\x20\x04\x3a\x04\x3e\x04\x3f\x04\x38\x04\x40\ -\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x38\x04\x4f\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x10\x47\x6c\x6f\x62\x61\x6c\x20\x63\x6f\x70\ -\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x47\ -\x00\x72\x00\x69\x00\x64\x00\x20\x00\x73\x00\x70\x00\x61\x00\x63\ -\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ -\x47\x72\x69\x64\x20\x73\x70\x61\x63\x69\x6e\x67\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x30\x00\x47\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x20\ -\x00\x6c\x00\x61\x00\x79\x00\x65\x00\x72\x00\x73\x00\x20\x00\x69\ -\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x63\ -\x00\x6b\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x47\x72\ -\x6f\x75\x70\x20\x6c\x61\x79\x65\x72\x73\x20\x69\x6e\x74\x6f\x20\ -\x62\x6c\x6f\x63\x6b\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x1a\x00\x48\ -\x00\x65\x00\x72\x00\x65\x00\x20\x00\x79\x00\x6f\x00\x75\x00\x20\ -\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x73\x00\x70\x00\x65\x00\x63\ -\x00\x69\x00\x66\x00\x79\x00\x20\x00\x61\x00\x20\x00\x64\x00\x69\ -\x00\x72\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x79\x00\x20\ -\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x69\ -\x00\x6e\x00\x67\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x66\ -\x00\x69\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\ -\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\ -\x00\x3c\x00\x70\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x6e\ -\x00\x3e\x00\x20\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\ -\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x74\x00\x68\ -\x00\x61\x00\x74\x00\x20\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x62\ -\x00\x65\x00\x20\x00\x61\x00\x64\x00\x64\x00\x65\x00\x64\x00\x20\ -\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\ -\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x20\ -\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x68\x00\x61\ -\x00\x74\x00\x63\x00\x68\x00\x20\x00\x70\x00\x61\x00\x74\x00\x74\ -\x00\x65\x00\x72\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x8d\x48\x65\x72\x65\x20\x79\x6f\x75\x20\x63\x61\x6e\x20\x73\ -\x70\x65\x63\x69\x66\x79\x20\x61\x20\x64\x69\x72\x65\x63\x74\x6f\ -\x72\x79\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x53\x56\ -\x47\x20\x66\x69\x6c\x65\x73\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\ -\x6e\x67\x20\x3c\x70\x61\x74\x74\x65\x72\x6e\x3e\x20\x64\x65\x66\ -\x69\x6e\x69\x74\x69\x6f\x6e\x73\x20\x74\x68\x61\x74\x20\x63\x61\ -\x6e\x20\x62\x65\x20\x61\x64\x64\x65\x64\x20\x74\x6f\x20\x74\x68\ -\x65\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x44\x72\x61\x66\x74\ -\x20\x68\x61\x74\x63\x68\x20\x70\x61\x74\x74\x65\x72\x6e\x73\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x56\x00\x49\x00\x66\x00\x20\x00\x63\x00\ -\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ -\x61\x00\x20\x00\x67\x00\x72\x00\x69\x00\x64\x00\x20\x00\x77\x00\ -\x69\x00\x6c\x00\x6c\x00\x20\x00\x61\x00\x70\x00\x70\x00\x65\x00\ -\x61\x00\x72\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\ -\x64\x00\x72\x00\x61\x00\x77\x00\x69\x00\x6e\x00\x67\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x2b\x49\x66\x20\x63\x68\x65\x63\x6b\x65\ -\x64\x2c\x20\x61\x20\x67\x72\x69\x64\x20\x77\x69\x6c\x6c\x20\x61\ -\x70\x70\x65\x61\x72\x20\x77\x68\x65\x6e\x20\x64\x72\x61\x77\x69\ -\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\xe8\x04\x15\x04\x41\x04\x3b\ -\x04\x38\x00\x20\x04\x3e\x04\x42\x04\x3c\x04\x35\x04\x47\x04\x35\ -\x04\x3d\x04\x3e\x00\x2c\x00\x20\x00\x66\x00\x72\x00\x65\x00\x65\ -\x00\x63\x00\x61\x00\x64\x00\x20\x04\x31\x04\x43\x04\x34\x04\x35\ -\x04\x42\x00\x20\x04\x3f\x04\x4b\x04\x42\x04\x30\x04\x42\x04\x4c\ -\x04\x41\x04\x4f\x00\x20\x04\x41\x04\x3e\x04\x32\x04\x3c\x04\x35\ -\x04\x49\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x41\x04\x3e\x04\x32\ -\x04\x3f\x04\x30\x04\x34\x04\x30\x04\x4e\x04\x49\x04\x38\x04\x35\ -\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x4b\ -\x00\x2e\x00\x20\x04\x1e\x04\x41\x04\x42\x04\x3e\x04\x40\x04\x3e\ -\x04\x36\x04\x3d\x04\x3e\x00\x2c\x00\x20\x04\x4d\x04\x42\x04\x3e\ -\x00\x20\x04\x3c\x04\x3e\x04\x36\x04\x35\x04\x42\x00\x20\x04\x37\ -\x04\x30\x04\x3d\x04\x4f\x04\x42\x04\x4c\x00\x20\x04\x3d\x04\x35\ -\x04\x3a\x04\x3e\x04\x42\x04\x3e\x04\x40\x04\x3e\x04\x35\x00\x20\ -\x04\x32\x04\x40\x04\x35\x04\x3c\x04\x4f\x00\x20\x00\x2e\x00\x2e\ -\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x65\x49\x66\x20\x63\ -\x68\x65\x63\x6b\x65\x64\x2c\x20\x66\x72\x65\x65\x63\x61\x64\x20\ -\x77\x69\x6c\x6c\x20\x74\x72\x79\x20\x74\x6f\x20\x6a\x6f\x69\x6e\ -\x74\x20\x63\x6f\x69\x6e\x63\x69\x64\x65\x6e\x74\x20\x6f\x62\x6a\ -\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\x77\x69\x72\x65\x73\x2e\ -\x20\x42\x65\x77\x61\x72\x65\x2c\x20\x74\x68\x69\x73\x20\x63\x61\ -\x6e\x20\x74\x61\x6b\x65\x20\x61\x20\x77\x68\x69\x6c\x65\x2e\x2e\ -\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\xa2\x00\x49\x00\x66\x00\x20\x00\ -\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\ -\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\ -\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\ -\x74\x00\x61\x00\x69\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ -\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\ -\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x65\x00\x78\x00\ -\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x64\x00\x20\x00\x61\x00\ -\x73\x00\x20\x00\x33\x00\x64\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\ -\x79\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x51\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\ -\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x6c\x6c\x20\x6f\x62\x6a\ -\x65\x63\x74\x73\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\ -\x66\x61\x63\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x65\x78\ -\x70\x6f\x72\x74\x65\x64\x20\x61\x73\x20\x33\x64\x20\x70\x6f\x6c\ -\x79\x66\x61\x63\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x46\x04\x15\ -\x04\x41\x04\x3b\x04\x38\x00\x20\x04\x32\x04\x4b\x04\x31\x04\x40\ -\x04\x30\x04\x3d\x00\x20\x04\x4d\x04\x42\x04\x3e\x04\x42\x00\x20\ -\x04\x3f\x04\x43\x04\x3d\x04\x3a\x04\x42\x00\x2c\x00\x20\x04\x40\ -\x04\x35\x04\x36\x04\x38\x04\x3c\x00\x20\x04\x3a\x04\x3e\x04\x3f\ -\x04\x38\x04\x40\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x38\x04\x4f\ -\x00\x20\x04\x31\x04\x43\x04\x34\x04\x35\x04\x42\x00\x20\x04\x3f\ -\x04\x40\x04\x38\x04\x3c\x04\x35\x04\x3d\x04\x35\x04\x3d\x00\x20\ -\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\x3e\x04\x3b\x04\x35\ -\x04\x34\x04\x43\x04\x4e\x04\x49\x04\x38\x04\x45\x00\x20\x04\x3a\ -\x04\x3e\x04\x3c\x04\x30\x04\x3d\x04\x34\x00\x2c\x00\x20\x04\x32\ -\x00\x20\x04\x3f\x04\x40\x04\x3e\x04\x42\x04\x38\x04\x32\x04\x3d\ -\x04\x3e\x04\x3c\x00\x20\x04\x41\x04\x3b\x04\x43\x04\x47\x04\x30\ -\x04\x35\x00\x20\x04\x32\x04\x4b\x04\x3f\x04\x3e\x04\x3b\x04\x3d\ -\x04\x35\x04\x3d\x04\x38\x04\x35\x00\x20\x04\x3a\x04\x3e\x04\x3c\ -\x04\x30\x04\x3d\x04\x34\x00\x20\x04\x32\x04\x41\x04\x35\x04\x33\ -\x04\x34\x04\x30\x00\x20\x04\x31\x04\x43\x04\x34\x04\x35\x04\x42\ -\x00\x20\x04\x3d\x04\x30\x04\x47\x04\x38\x04\x3d\x04\x30\x04\x42\ -\x04\x4c\x04\x41\x04\x4f\x00\x20\x04\x31\x04\x35\x04\x37\x00\x20\ -\x04\x40\x04\x35\x04\x36\x04\x38\x04\x3c\x04\x30\x00\x20\x04\x3a\ -\x04\x3e\x04\x3f\x04\x38\x04\x40\x04\x3e\x04\x32\x04\x30\x04\x3d\ -\x04\x38\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x6f\x49\x66\ -\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\ -\x2c\x20\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\ -\x20\x62\x65\x20\x6b\x65\x70\x74\x20\x61\x63\x72\x6f\x73\x73\x20\ -\x63\x6f\x6d\x6d\x61\x6e\x64\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\ -\x73\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x20\x77\x69\x6c\x6c\ -\x20\x61\x6c\x77\x61\x79\x73\x20\x73\x74\x61\x72\x74\x20\x69\x6e\ -\x20\x6e\x6f\x2d\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x01\x0c\x04\x15\x04\x41\x04\x3b\x04\x38\x00\x20\x04\ -\x4d\x04\x42\x04\x3e\x04\x42\x00\x20\x04\x3f\x04\x30\x04\x40\x04\ -\x30\x04\x3c\x04\x35\x04\x42\x04\x40\x00\x20\x04\x32\x04\x4b\x04\ -\x31\x04\x40\x04\x30\x04\x3d\x00\x2c\x00\x20\x04\x3f\x04\x3e\x00\ -\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\x04\ -\x38\x04\x4e\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\ -\x42\x04\x4b\x00\x20\x04\x31\x04\x43\x04\x34\x04\x43\x04\x42\x00\ -\x20\x04\x3e\x04\x42\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x36\x04\ -\x30\x04\x42\x04\x4c\x04\x41\x04\x4f\x00\x20\x04\x3a\x04\x30\x04\ -\x3a\x00\x20\x04\x37\x04\x30\x04\x3f\x04\x3e\x04\x3b\x04\x3d\x04\ -\x35\x04\x3d\x04\x3d\x04\x4b\x04\x35\x00\x2e\x00\x20\x04\x12\x00\ -\x20\x04\x3f\x04\x40\x04\x3e\x04\x42\x04\x38\x04\x32\x04\x3d\x04\ -\x3e\x04\x3c\x00\x20\x04\x41\x04\x3b\x04\x43\x04\x47\x04\x30\x04\ -\x35\x00\x20\x04\x3e\x04\x3d\x04\x38\x00\x20\x04\x31\x04\x43\x04\ -\x34\x04\x43\x04\x42\x00\x20\x04\x3f\x04\x3e\x04\x4f\x04\x32\x04\ -\x3b\x04\x4f\x04\x42\x04\x4c\x04\x41\x04\x4f\x00\x20\x04\x3a\x04\ -\x30\x04\x3a\x00\x20\x04\x3a\x04\x30\x04\x40\x04\x3a\x04\x30\x04\ -\x41\x08\x00\x00\x00\x00\x06\x00\x00\x00\x66\x49\x66\x20\x74\x68\ -\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\ -\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\ -\x61\x72\x20\x61\x73\x20\x66\x69\x6c\x6c\x65\x64\x20\x61\x73\x20\ -\x64\x65\x66\x61\x75\x6c\x74\x2e\x20\x4f\x74\x68\x65\x72\x77\x69\ -\x73\x65\x2c\x20\x74\x68\x65\x79\x20\x77\x69\x6c\x6c\x20\x61\x70\ -\x70\x65\x61\x72\x20\x61\x73\x20\x77\x69\x72\x65\x66\x72\x61\x6d\ -\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x01\x7e\x04\x15\x04\x41\x04\x3b\x04\ -\x38\x00\x20\x04\x32\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x00\ -\x20\x04\x4d\x04\x42\x04\x3e\x04\x42\x00\x20\x04\x3f\x04\x43\x04\ -\x3d\x04\x3a\x04\x42\x00\x2c\x00\x20\x04\x32\x04\x4b\x00\x20\x04\ -\x32\x04\x41\x04\x35\x04\x33\x04\x34\x04\x30\x00\x20\x04\x31\x04\ -\x43\x04\x34\x04\x35\x04\x42\x04\x35\x00\x20\x04\x3f\x04\x40\x04\ -\x38\x04\x32\x04\x4f\x04\x37\x04\x4b\x04\x32\x04\x30\x04\x42\x04\ -\x4c\x04\x41\x04\x4f\x00\x20\x04\x3a\x00\x20\x04\x41\x04\x43\x04\ -\x49\x04\x35\x04\x41\x04\x42\x04\x32\x04\x43\x04\x4e\x04\x49\x04\ -\x38\x04\x3c\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\ -\x42\x04\x30\x04\x3c\x00\x20\x04\x32\x04\x3e\x00\x20\x04\x32\x04\ -\x40\x04\x35\x04\x3c\x04\x4f\x00\x20\x04\x40\x04\x38\x04\x41\x04\ -\x3e\x04\x32\x04\x30\x04\x3d\x04\x38\x04\x4f\x00\x2e\x00\x20\x04\ -\x15\x04\x41\x04\x3b\x04\x38\x00\x20\x04\x3d\x04\x35\x04\x42\x00\ -\x2c\x00\x20\x04\x32\x04\x4b\x00\x20\x04\x31\x04\x43\x04\x34\x04\ -\x35\x04\x42\x04\x35\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x32\x04\ -\x4f\x04\x37\x04\x4b\x04\x32\x04\x30\x04\x42\x04\x4c\x04\x41\x04\ -\x4f\x00\x20\x04\x3a\x00\x20\x04\x3a\x00\x20\x04\x41\x04\x43\x04\ -\x49\x04\x35\x04\x41\x04\x42\x04\x32\x04\x43\x04\x4e\x04\x49\x04\ -\x38\x04\x3c\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\ -\x42\x04\x30\x04\x3c\x00\x20\x04\x42\x04\x3e\x04\x3b\x04\x4c\x04\ -\x3a\x04\x3e\x00\x20\x04\x3f\x04\x40\x04\x38\x00\x20\x04\x3d\x04\ -\x30\x04\x36\x04\x30\x04\x42\x04\x3e\x04\x39\x00\x20\x04\x3a\x04\ -\x3b\x04\x30\x04\x32\x04\x38\x04\x48\x04\x35\x00\x20\x00\x43\x00\ -\x54\x00\x52\x00\x4c\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x81\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ -\x6b\x65\x64\x2c\x20\x79\x6f\x75\x20\x77\x69\x6c\x6c\x20\x61\x6c\ -\x77\x61\x79\x73\x20\x73\x6e\x61\x70\x20\x74\x6f\x20\x65\x78\x69\ -\x73\x74\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x68\ -\x69\x6c\x65\x20\x64\x72\x61\x77\x69\x6e\x67\x2e\x20\x49\x66\x20\ -\x6e\x6f\x74\x2c\x20\x79\x6f\x75\x20\x77\x69\x6c\x6c\x20\x62\x65\ -\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x20\x6f\x6e\x6c\x79\x20\x77\ -\x68\x65\x6e\x20\x70\x72\x65\x73\x73\x69\x6e\x67\x20\x43\x54\x52\ -\x4c\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x04\x18\x04\x3c\x04\x3f\ -\x04\x3e\x04\x40\x04\x42\x00\x20\x04\x31\x04\x3b\x04\x3e\x04\x3a\ -\x04\x3e\x04\x32\x00\x20\x00\x2a\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0e\x49\x6d\x70\x6f\x72\x74\x20\x2a\x62\x6c\x6f\x63\x6b\x73\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x26\x04\x18\x04\x3c\x04\x3f\x04\x3e\ -\x04\x40\x04\x42\x00\x20\x04\x1e\x04\x21\x04\x10\x00\x20\x04\x3e\ -\x04\x31\x04\x3b\x04\x30\x04\x41\x04\x42\x04\x35\x04\x39\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x10\x49\x6d\x70\x6f\x72\x74\x20\x4f\ -\x43\x41\x20\x61\x72\x65\x61\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\ -\x04\x18\x04\x3c\x04\x3f\x04\x3e\x04\x40\x04\x42\x00\x20\x04\x3c\ -\x04\x30\x04\x3a\x04\x35\x04\x42\x04\x3e\x04\x32\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0e\x49\x6d\x70\x6f\x72\x74\x20\x6c\x61\x79\ -\x6f\x75\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x04\x18\x04\x3c\ -\x04\x3f\x04\x3e\x04\x40\x04\x42\x00\x20\x04\x41\x04\x42\x04\x38\ -\x04\x3b\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x49\x6d\ -\x70\x6f\x72\x74\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x32\x04\x18\x04\x3c\x04\x3f\x04\x3e\x04\x40\x04\x42\x00\x20\ -\x04\x42\x04\x35\x04\x3a\x04\x41\x04\x42\x04\x3e\x04\x32\x00\x20\ -\x04\x38\x00\x20\x04\x40\x04\x30\x04\x37\x04\x3c\x04\x35\x04\x40\ -\x04\x3e\x04\x32\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x49\x6d\ -\x70\x6f\x72\x74\x20\x74\x65\x78\x74\x73\x20\x61\x6e\x64\x20\x64\ -\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x1c\x04\x18\x04\x3c\x04\x3f\x04\x3e\x04\x40\x04\x42\x00\x2f\x04\ -\x4d\x04\x3a\x04\x41\x04\x3f\x04\x3e\x04\x40\x04\x42\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0d\x49\x6d\x70\x6f\x72\x74\x2f\x45\x78\ -\x70\x6f\x72\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x49\x00\x6e\ -\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x70\ -\x00\x72\x00\x65\x00\x63\x00\x69\x00\x73\x00\x69\x00\x6f\x00\x6e\ -\x00\x20\x00\x6c\x00\x65\x00\x76\x00\x65\x00\x6c\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x18\x49\x6e\x74\x65\x72\x6e\x61\x6c\x20\x70\ -\x72\x65\x63\x69\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x34\x04\x1f\x04\x40\x04\x38\x04\x41\x04\x3e\ -\x04\x35\x04\x34\x04\x38\x04\x3d\x04\x38\x04\x42\x04\x4c\x04\x41\ -\x04\x4f\x00\x20\x04\x3a\x00\x20\x04\x33\x04\x35\x04\x3e\x04\x3c\ -\x04\x35\x04\x42\x04\x40\x04\x38\x04\x38\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0d\x4a\x6f\x69\x6e\x20\x67\x65\x6f\x6d\x65\x74\x72\ -\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x4c\x00\x65\x00\x66\x00\ -\x74\x00\x20\x00\x28\x00\x49\x00\x53\x00\x4f\x00\x20\x00\x73\x00\ -\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x29\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x13\x4c\x65\x66\x74\x20\x28\x49\ -\x53\x4f\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x29\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x20\x00\x4d\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x6c\ -\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x65\x00\x76\x00\x65\ -\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x4d\x61\ -\x69\x6e\x20\x6c\x69\x6e\x65\x73\x20\x65\x76\x65\x72\x79\x07\x00\ -\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ -\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\xa2\x00\x4d\x00\x61\x00\x69\x00\x6e\x00\x6c\ -\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\ -\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x64\x00\x72\x00\x61\ -\x00\x77\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x69\x00\x63\x00\x6b\ -\x00\x65\x00\x72\x00\x2e\x00\x20\x00\x53\x00\x70\x00\x65\x00\x63\ -\x00\x69\x00\x66\x00\x79\x00\x20\x00\x68\x00\x65\x00\x72\x00\x65\ -\x00\x20\x00\x68\x00\x6f\x00\x77\x00\x20\x00\x6d\x00\x61\x00\x6e\ -\x00\x79\x00\x20\x00\x73\x00\x71\x00\x75\x00\x61\x00\x72\x00\x65\ -\x00\x73\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\ -\x00\x6e\x00\x20\x00\x6d\x00\x61\x00\x69\x00\x6e\x00\x6c\x00\x69\ -\x00\x6e\x00\x65\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x51\x4d\x61\x69\x6e\x6c\x69\x6e\x65\x73\x20\x77\x69\x6c\x6c\ -\x20\x62\x65\x20\x64\x72\x61\x77\x6e\x20\x74\x68\x69\x63\x6b\x65\ -\x72\x2e\x20\x53\x70\x65\x63\x69\x66\x79\x20\x68\x65\x72\x65\x20\ -\x68\x6f\x77\x20\x6d\x61\x6e\x79\x20\x73\x71\x75\x61\x72\x65\x73\ -\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x6d\x61\x69\x6e\x6c\x69\x6e\ -\x65\x73\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x04\x1c\x04\x30\x04\ -\x3a\x04\x41\x04\x38\x04\x3c\x04\x30\x04\x3b\x04\x4c\x04\x3d\x04\ -\x4b\x04\x39\x00\x20\x04\x41\x04\x35\x04\x33\x04\x3c\x04\x35\x04\ -\x3d\x04\x42\x00\x20\x04\x41\x04\x3f\x04\x3b\x04\x30\x04\x39\x04\ -\x3d\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4d\x61\x78\ -\x20\x53\x70\x6c\x69\x6e\x65\x20\x53\x65\x67\x6d\x65\x6e\x74\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x0c\x04\x1d\x04\x38\x04\x47\x04\x35\x04\ -\x33\x04\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\x6f\x6e\ -\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ -\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x04\x1d\x04\x35\x04\x42\x00\ -\x20\x00\x28\x04\x31\x04\x4b\x04\x41\x04\x42\x04\x40\x04\x4b\x04\ -\x39\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x4e\x6f\x6e\ -\x65\x20\x28\x66\x61\x73\x74\x65\x73\x74\x29\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\xfe\x00\x4e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\ -\x6c\x00\x79\x00\x2c\x00\x20\x00\x61\x00\x66\x00\x74\x00\x65\x00\ -\x72\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x79\x00\x69\x00\x6e\x00\ -\x67\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ -\x73\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\ -\x6f\x00\x70\x00\x69\x00\x65\x00\x73\x00\x20\x00\x67\x00\x65\x00\ -\x74\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ -\x65\x00\x64\x00\x2e\x00\x20\x00\x49\x00\x66\x00\x20\x00\x74\x00\ -\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x70\x00\x74\x00\x69\x00\ -\x6f\x00\x6e\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\ -\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x74\x00\ -\x68\x00\x65\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\ -\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ -\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\ -\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ -\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x61\x00\x64\x00\ -\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7f\x4e\x6f\x72\x6d\x61\ -\x6c\x6c\x79\x2c\x20\x61\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\ -\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x73\x2c\x20\x74\x68\x65\x20\ -\x63\x6f\x70\x69\x65\x73\x20\x67\x65\x74\x20\x73\x65\x6c\x65\x63\ -\x74\x65\x64\x2e\x20\x49\x66\x20\x74\x68\x69\x73\x20\x6f\x70\x74\ -\x69\x6f\x6e\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\ -\x74\x68\x65\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ -\x64\x20\x69\x6e\x73\x74\x65\x61\x64\x2e\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x2a\x04\x1f\x04\x30\x04\x40\x04\x30\x04\x3c\x04\x35\x04\x42\ -\x04\x40\x04\x4b\x00\x20\x04\x44\x04\x3e\x04\x40\x04\x3c\x04\x30\ -\x04\x42\x04\x30\x00\x20\x04\x1e\x04\x21\x04\x10\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x12\x4f\x43\x41\x20\x66\x6f\x72\x6d\x61\x74\ -\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\ -\x04\x1e\x04\x40\x04\x38\x04\x33\x04\x38\x04\x3d\x04\x30\x04\x3b\ -\x04\x4c\x04\x3d\x04\x4b\x04\x39\x00\x20\x04\x46\x04\x32\x04\x35\ -\x04\x42\x00\x20\x04\x38\x00\x20\x04\x42\x04\x3e\x04\x3b\x04\x49\ -\x04\x38\x04\x3d\x04\x30\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\ -\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x4f\x72\x69\x67\ -\x69\x6e\x61\x6c\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\ -\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\ -\x00\x52\x00\x69\x00\x67\x00\x68\x00\x74\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x05\x52\x69\x67\x68\x74\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x2a\x04\x1f\x04\x30\x04\x40\x04\x30\x04\x3c\x04\x35\x04\x42\x04\ -\x40\x04\x4b\x00\x20\x04\x44\x04\x3e\x04\x40\x04\x3c\x04\x30\x04\ -\x42\x04\x30\x00\x20\x00\x53\x00\x56\x00\x47\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x12\x53\x56\x47\x20\x66\x6f\x72\x6d\x61\x74\x20\ -\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6a\x04\ -\x21\x04\x3e\x04\x45\x04\x40\x04\x30\x04\x3d\x04\x38\x04\x42\x04\ -\x4c\x00\x20\x04\x42\x04\x35\x04\x3a\x04\x43\x04\x49\x04\x38\x04\ -\x39\x00\x20\x04\x46\x04\x32\x04\x35\x04\x42\x00\x20\x04\x38\x00\ -\x20\x04\x42\x04\x3e\x04\x3b\x04\x49\x04\x38\x04\x3d\x04\x43\x00\ -\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x38\x00\x20\x04\x3c\x04\ -\x35\x04\x36\x04\x34\x04\x43\x00\x20\x04\x41\x04\x35\x04\x41\x04\ -\x41\x04\x38\x04\x4f\x04\x3c\x04\x38\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x30\x53\x61\x76\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\ -\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\ -\x64\x74\x68\x20\x61\x63\x72\x6f\x73\x73\x20\x73\x65\x73\x73\x69\ -\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x53\x00\x65\x00\ -\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x62\x00\x61\x00\x73\x00\ -\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ -\x73\x00\x20\x00\x61\x00\x66\x00\x74\x00\x65\x00\x72\x00\x20\x00\ -\x63\x00\x6f\x00\x70\x00\x79\x00\x69\x00\x6e\x00\x67\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x21\x53\x65\x6c\x65\x63\x74\x20\x62\x61\ -\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x66\x74\x65\x72\ -\x20\x63\x6f\x70\x79\x69\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\ -\x04\x21\x04\x3b\x04\x4d\x04\x48\x00\x20\x00\x35\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\x20\x35\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x0c\x04\x21\x04\x3b\x04\x4d\x04\x48\x00\x20\x00\ -\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\ -\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x04\x21\x04\x3b\x04\x4d\ -\x04\x48\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ -\x53\x6c\x61\x73\x68\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x04\ -\x26\x04\x32\x04\x35\x04\x42\x00\x20\x04\x3a\x04\x3d\x04\x3e\x04\ -\x3f\x04\x3a\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\ -\x6e\x61\x70\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x10\x00\x53\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x6d\x00\x6f\x00\ -\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x53\x6e\x61\x70\x20\ -\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x53\x00\x6e\x00\ -\x61\x00\x70\x00\x20\x00\x72\x00\x61\x00\x6e\x00\x67\x00\x65\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x6e\x61\x70\x20\x72\x61\ -\x6e\x67\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ -\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ -\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x54\x00\x61\x00\ -\x73\x00\x6b\x00\x76\x00\x69\x00\x65\x00\x77\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x08\x54\x61\x73\x6b\x76\x69\x65\x77\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x3a\x00\x54\x00\x68\x00\x65\x00\x20\x00\x43\x00\ -\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\ -\x69\x00\x6e\x00\x67\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\ -\x66\x00\x69\x00\x65\x00\x72\x00\x20\x00\x6b\x00\x65\x00\x79\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x54\x68\x65\x20\x43\x6f\x6e\ -\x73\x74\x72\x61\x69\x6e\x69\x6e\x67\x20\x6d\x6f\x64\x69\x66\x69\ -\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x54\ -\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x74\x00\x20\x00\x6d\ -\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x72\x00\x20\ -\x00\x6b\x00\x65\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\ -\x54\x68\x65\x20\x61\x6c\x74\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\ -\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x7e\x04\x24\x04\x30\ -\x04\x39\x04\x3b\x00\x20\x04\x41\x04\x3e\x04\x3f\x04\x3e\x04\x41\ -\x04\x42\x04\x30\x04\x32\x04\x3b\x04\x35\x04\x3d\x04\x38\x04\x4f\ -\x00\x20\x04\x46\x04\x32\x04\x35\x04\x42\x04\x30\x00\x20\x04\x34\ -\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\x35\x04\x40\x04\x35\x04\x32\ -\x04\x3e\x04\x34\x04\x30\x00\x20\x00\x64\x00\x78\x00\x66\x00\x20\ -\x04\x46\x04\x32\x04\x35\x04\x42\x04\x3e\x04\x32\x00\x20\x04\x32\ -\x00\x20\x04\x48\x04\x38\x04\x40\x04\x38\x04\x3d\x04\x43\x00\x20\ -\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x38\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x41\x54\x68\x65\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\ -\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x20\x66\x6f\x72\x20\x74\ -\x72\x61\x6e\x73\x6c\x61\x74\x69\x6e\x67\x20\x64\x78\x66\x20\x63\ -\x6f\x6c\x6f\x72\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\x65\x77\ -\x69\x64\x74\x68\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ -\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ -\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x86\x04\x28\x04\ -\x30\x04\x31\x04\x3b\x04\x3e\x04\x3d\x00\x20\x04\x3f\x04\x3e\x00\ -\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\x04\ -\x38\x04\x4e\x00\x2c\x00\x20\x04\x38\x04\x41\x04\x3f\x04\x3e\x04\ -\x3b\x04\x4c\x04\x37\x04\x43\x04\x35\x04\x3c\x04\x4b\x04\x39\x00\ -\x20\x04\x3f\x04\x40\x04\x38\x00\x20\x04\x41\x04\x3e\x04\x37\x04\ -\x34\x04\x30\x04\x3d\x04\x38\x04\x38\x00\x20\x04\x3d\x04\x3e\x04\ -\x32\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\x3b\x04\x38\x04\x41\x04\ -\x42\x04\x30\x00\x20\x04\x47\x04\x35\x04\x40\x04\x42\x04\x35\x04\ -\x36\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3d\x54\x68\x65\ -\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x6d\x70\x6c\x61\x74\ -\x65\x20\x74\x6f\x20\x75\x73\x65\x20\x77\x68\x65\x6e\x20\x63\x72\ -\x65\x61\x74\x69\x6e\x67\x20\x61\x20\x6e\x65\x77\x20\x64\x72\x61\ -\x77\x69\x6e\x67\x20\x73\x68\x65\x65\x74\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\xb2\x04\x1a\x04\x3e\x04\x3b\x04\x38\x04\x47\x04\x35\x04\x41\ -\x04\x42\x04\x32\x04\x3e\x00\x20\x04\x34\x04\x35\x04\x41\x04\x4f\ -\x04\x42\x04\x38\x04\x47\x04\x3d\x04\x4b\x04\x45\x00\x20\x04\x37\ -\x04\x3d\x04\x30\x04\x3a\x04\x3e\x04\x32\x00\x20\x04\x32\x04\x3e\ -\x00\x20\x04\x32\x04\x3d\x04\x43\x04\x42\x04\x40\x04\x35\x04\x3d\ -\x04\x3d\x04\x38\x04\x45\x00\x20\x04\x3e\x04\x3f\x04\x35\x04\x40\ -\x04\x30\x04\x46\x04\x38\x04\x4f\x04\x45\x00\x20\x04\x41\x00\x20\ -\x04\x3a\x04\x3e\x04\x3e\x04\x40\x04\x34\x04\x38\x04\x3d\x04\x30\ -\x04\x42\x04\x30\x04\x3c\x04\x38\x00\x20\x00\x28\x04\x3d\x04\x30\ -\x04\x3f\x04\x40\x04\x38\x04\x3c\x04\x35\x04\x40\x00\x2e\x00\x20\ -\x00\x33\x00\x20\x00\x3d\x00\x20\x00\x30\x00\x2c\x00\x30\x00\x30\ -\x00\x31\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x54\x68\ -\x65\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x64\x65\x63\x69\ -\x6d\x61\x6c\x73\x20\x69\x6e\x20\x69\x6e\x74\x65\x72\x6e\x61\x6c\ -\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x73\x20\x6f\x70\x65\ -\x72\x61\x74\x69\x6f\x6e\x73\x20\x28\x66\x6f\x72\x20\x65\x78\x2e\ -\x20\x33\x20\x3d\x20\x30\x2e\x30\x30\x31\x29\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x9c\x00\x54\x00\x68\x00\x65\x00\x20\x00\x72\x00\x61\x00\ -\x64\x00\x69\x00\x75\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ -\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\ -\x67\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x70\x00\x65\x00\ -\x63\x00\x69\x00\x61\x00\x6c\x00\x20\x00\x70\x00\x6f\x00\x69\x00\ -\x6e\x00\x74\x00\x73\x00\x2e\x00\x20\x00\x53\x00\x65\x00\x74\x00\ -\x20\x00\x74\x00\x6f\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\ -\x72\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x73\x00\ -\x74\x00\x61\x00\x6e\x00\x63\x00\x65\x00\x20\x00\x28\x00\x69\x00\ -\x6e\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\x65\x00\x29\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x4e\x54\x68\x65\x20\x72\x61\x64\ -\x69\x75\x73\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\ -\x20\x74\x6f\x20\x73\x70\x65\x63\x69\x61\x6c\x20\x70\x6f\x69\x6e\ -\x74\x73\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\x30\x20\x66\x6f\x72\ -\x20\x6e\x6f\x20\x64\x69\x73\x74\x61\x6e\x63\x65\x20\x28\x69\x6e\ -\x66\x69\x6e\x69\x74\x65\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\ -\x54\x00\x68\x00\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\ -\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\ -\x72\x00\x20\x00\x6b\x00\x65\x00\x79\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x15\x54\x68\x65\x20\x73\x6e\x61\x70\x20\x6d\x6f\x64\x69\ -\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\ -\x00\x54\x00\x68\x00\x65\x00\x20\x00\x73\x00\x70\x00\x61\x00\x63\ -\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x62\x00\x65\x00\x74\x00\x77\ -\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x61\x00\x63\x00\x68\ -\x00\x20\x00\x67\x00\x72\x00\x69\x00\x64\x00\x20\x00\x6c\x00\x69\ -\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x54\x68\ -\x65\x20\x73\x70\x61\x63\x69\x6e\x67\x20\x62\x65\x74\x77\x65\x65\ -\x6e\x20\x65\x61\x63\x68\x20\x67\x72\x69\x64\x20\x6c\x69\x6e\x65\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x01\x9e\x00\x54\x00\x68\x00\x69\x00\x73\ -\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ -\x00\x55\x00\x49\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\ -\x00\x69\x00\x6e\x00\x20\x00\x77\x00\x68\x00\x69\x00\x63\x00\x68\ -\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\ -\x00\x66\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x6c\ -\x00\x65\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x77\ -\x00\x6f\x00\x72\x00\x6b\x00\x3a\x00\x20\x00\x54\x00\x6f\x00\x6f\ -\x00\x6c\x00\x62\x00\x61\x00\x72\x00\x20\x00\x6d\x00\x6f\x00\x64\ -\x00\x65\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x70\ -\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x6c\ -\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x73\ -\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x20\ -\x00\x69\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x70\ -\x00\x61\x00\x72\x00\x61\x00\x74\x00\x65\x00\x20\x00\x74\x00\x6f\ -\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x00\x2c\x00\x20\x00\x77\ -\x00\x68\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x74\x00\x61\x00\x73\ -\x00\x6b\x00\x62\x00\x61\x00\x72\x00\x20\x00\x6d\x00\x6f\x00\x64\ -\x00\x65\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x75\ -\x00\x73\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\ -\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x20\x00\x54\ -\x00\x61\x00\x73\x00\x6b\x00\x76\x00\x69\x00\x65\x00\x77\x00\x20\ -\x00\x73\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x20\x00\x66\ -\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x69\ -\x00\x74\x00\x73\x00\x20\x00\x75\x00\x73\x00\x65\x00\x72\x00\x20\ -\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x61\x00\x63\x00\x74\ -\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\xcf\ -\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x55\x49\x20\x6d\ -\x6f\x64\x65\x20\x69\x6e\x20\x77\x68\x69\x63\x68\x20\x74\x68\x65\ -\x20\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\x75\x6c\x65\x20\x77\x69\ -\x6c\x6c\x20\x77\x6f\x72\x6b\x3a\x20\x54\x6f\x6f\x6c\x62\x61\x72\ -\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x70\x6c\x61\x63\x65\ -\x20\x61\x6c\x6c\x20\x44\x72\x61\x66\x74\x20\x73\x65\x74\x74\x69\ -\x6e\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x65\x70\x61\x72\x61\x74\ -\x65\x20\x74\x6f\x6f\x6c\x62\x61\x72\x2c\x20\x77\x68\x69\x6c\x65\ -\x20\x74\x61\x73\x6b\x62\x61\x72\x20\x6d\x6f\x64\x65\x20\x77\x69\ -\x6c\x6c\x20\x75\x73\x65\x20\x74\x68\x65\x20\x46\x72\x65\x65\x43\ -\x41\x44\x20\x54\x61\x73\x6b\x76\x69\x65\x77\x20\x73\x79\x73\x74\ -\x65\x6d\x20\x66\x6f\x72\x20\x61\x6c\x6c\x20\x69\x74\x73\x20\x75\ -\x73\x65\x72\x20\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x6f\x6e\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x8a\x04\x26\x04\x32\x04\x35\x04\x42\x00\ -\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\ -\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\x00\x20\x04\x34\x04\x3b\x04\ -\x4f\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\ -\x3e\x04\x32\x00\x2c\x00\x20\x04\x3e\x04\x31\x04\x40\x04\x30\x04\ -\x31\x04\x30\x04\x42\x04\x4b\x04\x32\x04\x30\x04\x35\x04\x3c\x04\ -\x4b\x04\x45\x00\x20\x04\x32\x00\x20\x04\x40\x04\x35\x04\x36\x04\ -\x38\x04\x3c\x04\x35\x00\x20\x04\x3a\x04\x3e\x04\x3d\x04\x41\x04\ -\x42\x04\x40\x04\x43\x04\x3a\x04\x42\x04\x3e\x04\x40\x04\x30\x00\ -\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x54\x68\x69\x73\x20\ -\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\ -\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x20\x62\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x20\x77\x68\x69\ -\x6c\x65\x20\x69\x6e\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\ -\x6f\x6e\x20\x6d\x6f\x64\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x02\x00\ -\x04\x2d\x04\x42\x04\x3e\x00\x20\x04\x38\x04\x3c\x04\x4f\x00\x20\ -\x04\x48\x04\x40\x04\x38\x04\x44\x04\x42\x04\x30\x00\x20\x04\x3f\ -\x04\x3e\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\ -\x04\x3d\x04\x38\x04\x4e\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\ -\x04\x32\x04\x41\x04\x35\x04\x45\x00\x20\x04\x47\x04\x35\x04\x40\ -\x04\x42\x04\x35\x04\x36\x04\x3d\x04\x4b\x04\x45\x00\x20\x04\x42\ -\x04\x35\x04\x3a\x04\x41\x04\x42\x04\x3e\x04\x32\x00\x20\x04\x38\ -\x00\x20\x04\x40\x04\x30\x04\x37\x04\x3c\x04\x35\x04\x40\x04\x3e\ -\x04\x32\x00\x2e\x00\x20\x04\x2d\x04\x42\x04\x3e\x00\x20\x04\x3c\ -\x04\x3e\x04\x36\x04\x35\x04\x42\x00\x20\x04\x31\x04\x4b\x04\x42\ -\x04\x4c\x00\x20\x04\x38\x04\x3c\x04\x4f\x00\x20\x04\x48\x04\x40\ -\x04\x38\x04\x44\x04\x42\x04\x30\x00\x2c\x00\x20\x04\x42\x04\x30\ -\x04\x3a\x04\x3e\x04\x3a\x00\x2c\x00\x20\x04\x3a\x04\x30\x04\x3a\ -\x00\x20\x00\xab\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\xbb\ -\x00\x2c\x00\x20\x04\x41\x04\x42\x04\x38\x04\x3b\x04\x4c\x00\x20\ -\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\x47\ -\x04\x30\x04\x3d\x04\x38\x04\x4e\x00\x2c\x00\x20\x04\x42\x04\x30\ -\x04\x3a\x04\x3e\x04\x39\x00\x20\x04\x3a\x04\x30\x04\x3a\x00\x20\ -\x00\xab\x00\x73\x00\x61\x00\x6e\x00\x73\x00\xbb\x00\x2c\x00\x20\ -\x00\xab\x00\x73\x00\x65\x00\x72\x00\x69\x00\x66\x00\xbb\x00\x20\ -\x04\x38\x04\x3b\x04\x38\x00\x20\x00\xab\x04\x3c\x04\x3e\x04\x3d\ -\x04\x3e\x00\xbb\x00\x20\x04\x38\x04\x3b\x04\x38\x00\x20\x04\x41\ -\x04\x35\x04\x3c\x04\x35\x04\x39\x04\x41\x04\x42\x04\x32\x04\x3e\ -\x00\x20\x04\x3a\x04\x30\x04\x3a\x00\x20\x00\x22\x00\x41\x00\x72\ -\x00\x69\x00\x61\x00\x6c\x00\x2c\x00\x20\x00\x48\x00\x65\x00\x6c\ -\x00\x76\x00\x65\x00\x74\x00\x69\x00\x63\x00\x61\x00\x2c\x00\x20\ -\x00\x73\x00\x61\x00\x6e\x00\x73\x00\xbb\x00\x20\x04\x38\x04\x3b\ -\x04\x38\x00\x20\x04\x38\x04\x3c\x04\x4f\x00\x20\x04\x41\x04\x3e\ -\x00\x20\x04\x41\x04\x42\x04\x38\x04\x3b\x04\x35\x04\x3c\x00\x2c\ -\x00\x20\x04\x42\x04\x30\x04\x3a\x04\x3e\x04\x35\x00\x2c\x00\x20\ -\x04\x3a\x04\x30\x04\x3a\x00\x22\x00\x20\x00\x41\x00\x72\x00\x69\ -\x00\x61\x00\x6c\x00\x3a\x00\x42\x00\x6f\x00\x6c\x00\x64\x00\xbb\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\xf2\x54\x68\x69\x73\x20\x69\ -\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x66\x6f\ -\x6e\x74\x20\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\x61\x6c\x6c\x20\ -\x44\x72\x61\x66\x74\x20\x74\x65\x78\x74\x73\x20\x61\x6e\x64\x20\ -\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x2e\x0a\x49\x74\x20\x63\ -\x61\x6e\x20\x62\x65\x20\x61\x20\x66\x6f\x6e\x74\x20\x6e\x61\x6d\ -\x65\x20\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\x72\x69\x61\x6c\ -\x22\x2c\x20\x61\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x73\x74\x79\ -\x6c\x65\x20\x73\x75\x63\x68\x20\x61\x73\x20\x22\x73\x61\x6e\x73\ -\x22\x2c\x20\x22\x73\x65\x72\x69\x66\x22\x0a\x6f\x72\x20\x22\x6d\ -\x6f\x6e\x6f\x22\x2c\x20\x6f\x72\x20\x61\x20\x66\x61\x6d\x69\x6c\ -\x79\x20\x73\x75\x63\x68\x20\x61\x73\x20\x22\x41\x72\x69\x61\x6c\ -\x2c\x48\x65\x6c\x76\x65\x74\x69\x63\x61\x2c\x73\x61\x6e\x73\x22\ -\x20\x6f\x72\x20\x61\x20\x6e\x61\x6d\x65\x20\x77\x69\x74\x68\x20\ -\x61\x20\x73\x74\x79\x6c\x65\x0a\x73\x75\x63\x68\x20\x61\x73\x20\ -\x22\x41\x72\x69\x61\x6c\x3a\x42\x6f\x6c\x64\x22\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x64\x04\x18\x04\x3c\x04\x4f\x00\x20\x04\x33\x04\x40\ -\x04\x43\x04\x3f\x04\x3f\x04\x4b\x00\x20\x04\x3f\x04\x3e\x00\x20\ -\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\x04\x38\ -\x04\x4e\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3a\x04\x3e\ -\x04\x3d\x04\x41\x04\x42\x04\x40\x04\x43\x04\x3a\x04\x42\x04\x3e\ -\x04\x40\x04\x30\x00\x20\x04\x33\x04\x35\x04\x3e\x04\x3c\x04\x35\ -\x04\x42\x04\x40\x04\x38\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x38\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\ -\x66\x61\x75\x6c\x74\x20\x67\x72\x6f\x75\x70\x20\x6e\x61\x6d\x65\ -\x20\x66\x6f\x72\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\ -\x6e\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x7c\x04\x2d\x04\x42\x04\x3e\x00\x20\x04\x3c\x04\x35\x04\x42\ -\x04\x3e\x04\x34\x00\x20\x04\x32\x04\x4b\x04\x31\x04\x38\x04\x40\ -\x04\x30\x04\x35\x04\x42\x04\x41\x04\x4f\x00\x20\x04\x34\x04\x3b\ -\x04\x4f\x00\x20\x04\x38\x04\x3c\x04\x3f\x04\x3e\x04\x40\x04\x42\ -\x04\x30\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x04\x46\x04\x32\ -\x04\x35\x04\x42\x04\x30\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\ -\x04\x3a\x04\x42\x04\x30\x00\x20\x04\x32\x04\x3e\x00\x20\x00\x46\ -\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x2e\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x47\x54\x68\x69\x73\x20\x69\x73\x20\ -\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x63\x68\x6f\x6f\x73\ -\x65\x64\x20\x66\x6f\x72\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\ -\x20\x53\x56\x47\x20\x6f\x62\x6a\x65\x63\x74\x20\x63\x6f\x6c\x6f\ -\x72\x20\x69\x6e\x74\x6f\x20\x46\x72\x65\x65\x43\x41\x44\x2e\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x02\x32\x04\x2d\x04\x42\x04\x3e\x04\x42\x00\ -\x20\x04\x3c\x04\x35\x04\x42\x04\x3e\x04\x34\x00\x20\x04\x32\x04\ -\x4b\x04\x31\x04\x38\x04\x40\x04\x30\x04\x35\x04\x42\x04\x41\x04\ -\x4f\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x38\x04\x3c\x04\ -\x3f\x04\x3e\x04\x40\x04\x42\x04\x30\x00\x20\x04\x38\x04\x3b\x04\ -\x38\x00\x20\x04\x3f\x04\x35\x04\x40\x04\x35\x04\x32\x04\x3e\x04\ -\x34\x04\x30\x00\x20\x04\x46\x04\x32\x04\x35\x04\x42\x04\x30\x00\ -\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x30\x00\ -\x2c\x00\x20\x04\x37\x04\x30\x04\x34\x04\x30\x04\x32\x04\x30\x04\ -\x35\x04\x3c\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\x32\x00\x20\x00\ -\x44\x00\x58\x00\x46\x00\x20\x04\x44\x04\x3e\x04\x40\x04\x3c\x04\ -\x30\x04\x42\x04\x35\x00\x2c\x00\x20\x04\x32\x04\x3e\x00\x20\x00\ -\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x2e\x00\ -\x20\x00\x0a\x04\x15\x04\x41\x04\x3b\x04\x38\x00\x20\x04\x32\x04\ -\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x04\x30\x00\x20\x04\x3a\x04\ -\x30\x04\x40\x04\x42\x04\x30\x00\x20\x04\x3f\x04\x40\x04\x35\x04\ -\x3e\x04\x31\x04\x40\x04\x30\x04\x37\x04\x3e\x04\x32\x04\x30\x04\ -\x3d\x04\x38\x04\x4f\x00\x20\x04\x46\x04\x32\x04\x35\x04\x42\x04\ -\x30\x00\x2c\x00\x20\x04\x32\x04\x4b\x00\x20\x04\x34\x04\x3e\x04\ -\x3b\x04\x36\x04\x3d\x04\x4b\x00\x20\x04\x43\x04\x3a\x04\x30\x04\ -\x37\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x44\x04\x30\x04\x39\x04\ -\x3b\x00\x20\x04\x3f\x04\x40\x04\x35\x04\x3e\x04\x31\x04\x40\x04\ -\x30\x04\x37\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x38\x04\x4f\x00\ -\x20\x04\x46\x04\x32\x04\x35\x04\x42\x04\x30\x00\x2c\x00\x20\x04\ -\x41\x04\x3e\x04\x34\x04\x35\x04\x40\x04\x36\x04\x30\x04\x49\x04\ -\x38\x04\x39\x00\x20\x04\x42\x04\x30\x04\x31\x04\x3b\x04\x38\x04\ -\x46\x04\x43\x00\x20\x04\x3f\x04\x35\x04\x40\x04\x35\x04\x32\x04\ -\x3e\x04\x34\x04\x30\x00\x2c\x00\x20\x04\x41\x04\x3e\x04\x33\x04\ -\x3b\x04\x30\x04\x41\x04\x3d\x04\x3e\x00\x20\x04\x3a\x04\x3e\x04\ -\x42\x04\x3e\x04\x40\x04\x3e\x04\x39\x00\x2c\x00\x20\x04\x46\x04\ -\x32\x04\x35\x04\x42\x04\x30\x00\x20\x04\x31\x04\x43\x04\x34\x04\ -\x43\x04\x42\x00\x20\x04\x3f\x04\x40\x04\x35\x04\x3e\x04\x31\x04\ -\x40\x04\x30\x04\x37\x04\x3e\x04\x32\x04\x4b\x04\x32\x04\x30\x04\ -\x42\x04\x4c\x04\x41\x04\x4f\x00\x20\x04\x32\x00\x20\x04\x42\x04\ -\x3e\x04\x3b\x04\x49\x04\x38\x04\x3d\x04\x4b\x00\x20\x04\x3b\x04\ -\x38\x04\x3d\x04\x38\x04\x39\x00\x0a\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\xe3\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6d\ -\x65\x74\x68\x6f\x64\x20\x63\x68\x6f\x6f\x73\x65\x64\x20\x66\x6f\ -\x72\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\x6f\x72\x20\x74\ -\x72\x61\x6e\x73\x6c\x61\x74\x69\x6e\x67\x20\x44\x58\x46\x20\x6f\ -\x62\x6a\x65\x63\x74\x20\x63\x6f\x6c\x6f\x72\x20\x69\x6e\x74\x6f\ -\x20\x46\x72\x65\x65\x43\x41\x44\x2e\x20\x0a\x49\x66\x20\x63\x6f\ -\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x69\x73\x20\x63\ -\x68\x6f\x6f\x73\x65\x64\x2c\x20\x79\x6f\x75\x20\x6d\x75\x73\x74\ -\x20\x63\x68\x6f\x6f\x73\x65\x20\x61\x20\x63\x6f\x6c\x6f\x72\x20\ -\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x20\x63\x6f\x6e\ -\x74\x61\x69\x6e\x69\x6e\x67\x20\x61\x20\x74\x72\x61\x6e\x73\x6c\ -\x61\x74\x69\x6f\x6e\x20\x74\x61\x62\x6c\x65\x20\x74\x68\x61\x74\ -\x20\x77\x69\x6c\x6c\x20\x63\x6f\x6e\x76\x65\x72\x74\x20\x63\x6f\ -\x6c\x6f\x72\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\ -\x64\x74\x68\x73\x2e\x0a\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xfc\x00\x54\ -\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\ -\x00\x68\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x69\x00\x65\x00\x6e\ -\x00\x74\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6f\ -\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\x69\ -\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\ -\x00\x74\x00\x65\x00\x78\x00\x74\x00\x73\x00\x20\x00\x77\x00\x68\ -\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x6f\x00\x73\x00\x65\ -\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\ -\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\ -\x00\x76\x00\x65\x00\x72\x00\x74\x00\x69\x00\x63\x00\x61\x00\x6c\ -\x00\x2e\x00\x20\x00\x44\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\ -\x00\x74\x00\x20\x00\x69\x00\x73\x00\x20\x00\x6c\x00\x65\x00\x66\ -\x00\x74\x00\x2c\x00\x20\x00\x77\x00\x68\x00\x69\x00\x63\x00\x68\ -\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ -\x00\x49\x00\x53\x00\x4f\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\ -\x00\x64\x00\x61\x00\x72\x00\x64\x00\x2e\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x7e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\ -\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\ -\x68\x65\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x20\x74\x65\x78\ -\x74\x73\x20\x77\x68\x65\x6e\x20\x74\x68\x6f\x73\x65\x20\x64\x69\ -\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x61\x72\x65\x20\x76\x65\x72\ -\x74\x69\x63\x61\x6c\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x69\ -\x73\x20\x6c\x65\x66\x74\x2c\x20\x77\x68\x69\x63\x68\x20\x69\x73\ -\x20\x74\x68\x65\x20\x49\x53\x4f\x20\x73\x74\x61\x6e\x64\x61\x72\ -\x64\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x01\x1c\x04\x2d\x04\x42\x04\x3e\ -\x00\x20\x04\x37\x04\x3d\x04\x30\x04\x47\x04\x35\x04\x3d\x04\x38\ -\x04\x35\x00\x20\x04\x38\x04\x41\x04\x3f\x04\x3e\x04\x3b\x04\x4c\ -\x04\x37\x04\x43\x04\x35\x04\x42\x04\x41\x04\x4f\x00\x20\x04\x44\ -\x04\x43\x04\x3d\x04\x3a\x04\x46\x04\x38\x04\x4f\x04\x3c\x04\x38\ -\x00\x2c\x00\x20\x04\x3a\x04\x3e\x04\x42\x04\x3e\x04\x40\x04\x4b\ -\x04\x35\x00\x20\x04\x38\x04\x41\x04\x3f\x04\x3e\x04\x3b\x04\x4c\ -\x04\x37\x04\x43\x04\x4e\x04\x42\x00\x20\x04\x34\x04\x3e\x04\x3f\ -\x04\x43\x04\x41\x04\x3a\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3d\ -\x04\x3e\x04\x41\x04\x42\x04\x38\x00\x2e\x00\x0a\x04\x17\x04\x3d\ -\x04\x30\x04\x47\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\x2c\x00\x20\ -\x04\x3e\x04\x42\x04\x3a\x04\x3b\x04\x3e\x04\x3d\x04\x4f\x04\x4e\ -\x04\x49\x04\x38\x04\x35\x04\x41\x04\x4f\x00\x20\x04\x3d\x04\x30\ -\x00\x20\x04\x3c\x04\x35\x04\x3d\x04\x4c\x04\x48\x04\x43\x04\x4e\ -\x00\x20\x04\x32\x04\x35\x04\x3b\x04\x38\x04\x47\x04\x38\x04\x3d\ -\x04\x43\x00\x2c\x00\x20\x04\x31\x04\x43\x04\x34\x04\x43\x04\x42\ -\x00\x20\x04\x42\x04\x30\x04\x3a\x04\x36\x04\x35\x00\x20\x04\x3f\ -\x04\x40\x04\x38\x04\x35\x04\x3c\x04\x3b\x04\x35\x04\x3c\x04\x4b\ -\x04\x3c\x04\x38\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7b\ -\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x76\x61\x6c\x75\ -\x65\x20\x75\x73\x65\x64\x20\x62\x79\x20\x66\x75\x6e\x63\x74\x69\ -\x6f\x6e\x73\x20\x74\x68\x61\x74\x20\x75\x73\x65\x20\x61\x20\x74\ -\x6f\x6c\x65\x72\x61\x6e\x63\x65\x2e\x0a\x56\x61\x6c\x75\x65\x73\ -\x20\x77\x69\x74\x68\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x63\x65\ -\x73\x20\x62\x65\x6c\x6f\x77\x20\x74\x68\x69\x73\x20\x76\x61\x6c\ -\x75\x65\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x74\x72\x65\x61\x74\ -\x65\x64\x20\x61\x73\x20\x73\x61\x6d\x65\x2e\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x10\x04\x22\x04\x3e\x04\x47\x04\x3d\x04\x3e\x04\x41\x04\ -\x42\x04\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\x6f\x6c\ -\x65\x72\x61\x6e\x63\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x54\ -\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x07\x54\x6f\x6f\x6c\x62\x61\x72\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x5c\x04\x18\x04\x41\x04\x3f\x04\x3e\x04\x3b\x04\ -\x4c\x04\x37\x04\x3e\x04\x32\x04\x30\x04\x42\x04\x4c\x00\x20\x04\ -\x46\x04\x32\x04\x35\x04\x42\x00\x20\x04\x38\x00\x20\x04\x42\x04\ -\x3e\x04\x3b\x04\x49\x04\x38\x04\x3d\x04\x43\x00\x20\x04\x3b\x04\ -\x38\x04\x3d\x04\x38\x04\x38\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\ -\x43\x04\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\x04\x38\x04\ -\x4e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x55\x73\x65\x20\x64\ -\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\ -\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\ -\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ -\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x10\x00\x55\x00\x73\x00\x65\x00\x20\x00\x67\x00\x72\x00\x69\ -\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x55\x73\x65\x20\ -\x67\x72\x69\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x48\x00\x56\x00\x65\ -\x00\x72\x00\x74\x00\x69\x00\x63\x00\x61\x00\x6c\x00\x20\x00\x64\ -\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\ -\x00\x73\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\x00\x6f\ -\x00\x72\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x74\x00\x69\ -\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x56\x65\ -\x72\x74\x69\x63\x61\x6c\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ -\x73\x20\x74\x65\x78\x74\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\ -\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ -\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ -\x72\x61\x66\x74\x01\x03\x00\x00\x01\x72\x04\x1f\x04\x40\x04\x38\ -\x00\x20\x04\x4d\x04\x3a\x04\x41\x04\x3f\x04\x3e\x04\x40\x04\x42\ -\x04\x35\x00\x20\x04\x41\x04\x3f\x04\x3b\x04\x30\x04\x39\x04\x3d\ -\x04\x3e\x04\x32\x00\x20\x04\x32\x00\x20\x00\x44\x00\x58\x00\x46\ -\x00\x2c\x00\x20\x04\x3e\x04\x3d\x04\x38\x00\x20\x04\x3f\x04\x40\ -\x04\x35\x04\x32\x04\x40\x04\x30\x04\x49\x04\x30\x04\x4e\x04\x42\ -\x04\x41\x04\x4f\x00\x20\x04\x32\x00\x20\x04\x3f\x04\x3e\x04\x3b\ -\x04\x38\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x38\x00\x2e\x00\x20\ -\x04\x2d\x04\x42\x04\x3e\x00\x20\x04\x37\x04\x3d\x04\x30\x04\x47\ -\x04\x35\x04\x3d\x04\x38\x04\x35\x00\x20\x04\x3c\x04\x30\x04\x3a\ -\x04\x41\x04\x38\x04\x3c\x04\x30\x04\x3b\x04\x4c\x04\x3d\x04\x3e\ -\x04\x39\x00\x20\x04\x34\x04\x3b\x04\x38\x04\x3d\x04\x4b\x00\x20\ -\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3a\x04\x30\x04\x36\x04\x34\ -\x04\x3e\x04\x33\x04\x3e\x00\x20\x04\x38\x04\x37\x00\x20\x04\x41\ -\x04\x35\x04\x33\x04\x3c\x04\x35\x04\x3d\x04\x42\x04\x3e\x04\x32\ -\x00\x20\x04\x3f\x04\x3e\x04\x3b\x04\x38\x04\x3b\x04\x38\x04\x3d\ -\x04\x38\x04\x38\x00\x2e\x00\x20\x04\x15\x04\x41\x04\x3b\x04\x38\ -\x00\x20\x00\x30\x00\x2c\x00\x20\x04\x42\x04\x3e\x00\x20\x04\x32\ -\x04\x35\x04\x41\x04\x4c\x00\x20\x04\x41\x04\x3f\x04\x3b\x04\x30\ -\x04\x39\x04\x3d\x00\x20\x04\x40\x04\x30\x04\x41\x04\x41\x04\x3c\ -\x04\x30\x04\x42\x04\x40\x04\x38\x04\x32\x04\x30\x04\x35\x04\x42\ -\x04\x41\x04\x4f\x00\x20\x04\x3a\x04\x30\x04\x3a\x00\x20\x04\x3f\ -\x04\x40\x04\x4f\x04\x3c\x04\x3e\x04\x39\x00\x20\x04\x3e\x04\x42\ -\x04\x40\x04\x35\x04\x37\x04\x3e\x04\x3a\x00\x2e\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\xc2\x57\x68\x65\x6e\x20\x65\x78\x70\x6f\x72\ -\x74\x69\x6e\x67\x20\x73\x70\x6c\x69\x6e\x65\x73\x20\x74\x6f\x20\ -\x44\x58\x46\x2c\x20\x74\x68\x65\x79\x20\x61\x72\x65\x20\x74\x72\ -\x61\x6e\x73\x66\x6f\x72\x6d\x65\x64\x20\x69\x6e\x20\x70\x6f\x6c\ -\x79\x6c\x69\x6e\x65\x73\x2e\x20\x54\x68\x69\x73\x20\x76\x61\x6c\ -\x75\x65\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\ -\x6d\x20\x6c\x65\x6e\x67\x74\x68\x20\x6f\x66\x20\x65\x61\x63\x68\ -\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x6f\x6c\x79\x6c\x69\x6e\x65\ -\x20\x73\x65\x67\x6d\x65\x6e\x74\x73\x2e\x20\x49\x66\x20\x30\x2c\ -\x20\x74\x68\x65\x6e\x20\x74\x68\x65\x20\x77\x68\x6f\x6c\x65\x20\ -\x73\x70\x6c\x69\x6e\x65\x20\x69\x73\x20\x74\x72\x65\x61\x74\x65\ -\x64\x20\x61\x73\x20\x61\x20\x73\x74\x72\x61\x69\x67\x68\x74\x20\ -\x73\x65\x67\x6d\x65\x6e\x74\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\ -\x00\x58\x00\x59\x00\x20\x00\x28\x00\x63\x04\x32\x04\x35\x04\x40\ -\x04\x45\x04\x43\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\ -\x58\x59\x20\x28\x54\x6f\x70\x29\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\ -\x00\x58\x00\x5a\x00\x20\x00\x28\x04\x41\x04\x3f\x04\x35\x04\x40\ -\x04\x35\x04\x34\x04\x38\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0a\x58\x5a\x20\x28\x46\x72\x6f\x6e\x74\x29\x07\x00\x00\x00\ -\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ -\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x14\x00\x59\x00\x5a\x00\x20\x00\x28\x04\x41\x04\x31\ -\x04\x3e\x04\x3a\x04\x43\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x09\x59\x5a\x20\x28\x53\x69\x64\x65\x29\x07\x00\x00\x00\x1d\ -\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ -\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x06\x00\x61\x00\x6c\x00\x74\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x03\x61\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xca\x04\x43\ -\x04\x41\x04\x42\x04\x30\x04\x3d\x04\x3e\x04\x32\x04\x38\x04\x42\ -\x04\x35\x00\x20\x04\x44\x04\x3b\x04\x30\x04\x36\x04\x3e\x04\x3a\ -\x00\x2c\x00\x20\x04\x35\x04\x41\x04\x3b\x04\x38\x00\x20\x04\x32\ -\x04\x4b\x00\x20\x04\x45\x04\x3e\x04\x42\x04\x38\x04\x42\x04\x35\ -\x00\x20\x04\x38\x04\x41\x04\x3f\x04\x3e\x04\x3b\x04\x4c\x04\x37\ -\x04\x3e\x04\x32\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x46\x04\x32\ -\x04\x35\x04\x42\x00\x2f\x04\x42\x04\x3e\x04\x3b\x04\x49\x04\x38\ -\x04\x3d\x04\x43\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x38\ -\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\ -\x04\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\x00\x20\x04\x3d\x04\x30\ -\x00\x20\x04\x3f\x04\x30\x04\x3d\x04\x35\x04\x3b\x04\x38\x00\x20\ -\x04\x38\x04\x3d\x04\x41\x04\x42\x04\x40\x04\x43\x04\x3c\x04\x35\ -\x04\x3d\x04\x42\x04\x3e\x04\x32\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x4d\x63\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\ -\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x6f\x20\x75\x73\x65\x20\ -\x74\x68\x65\x20\x63\x6f\x6c\x6f\x72\x2f\x6c\x69\x6e\x65\x77\x69\ -\x64\x74\x68\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x74\x6f\x6f\ -\x6c\x62\x61\x72\x20\x61\x73\x20\x64\x65\x66\x61\x75\x6c\x74\x07\ -\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ -\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x08\x00\x63\x00\x74\x00\x72\x00\x6c\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x04\x63\x74\x72\x6c\x07\x00\x00\ -\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ -\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ -\x03\x00\x00\x01\x26\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\ -\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\ -\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x6f\x00\ -\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x66\x00\ -\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ -\x73\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x79\x00\ -\x65\x00\x72\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\ -\x20\x00\x62\x00\x65\x00\x20\x00\x6a\x00\x6f\x00\x69\x00\x6e\x00\ -\x65\x00\x64\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\ -\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x42\x00\x6c\x00\ -\x6f\x00\x63\x00\x6b\x00\x73\x00\x2c\x00\x20\x00\x74\x00\x75\x00\ -\x72\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\ -\x65\x00\x20\x00\x64\x00\x69\x00\x73\x00\x70\x00\x6c\x00\x61\x00\ -\x79\x00\x20\x00\x66\x00\x61\x00\x73\x00\x74\x00\x65\x00\x72\x00\ -\x2c\x00\x20\x00\x62\x00\x75\x00\x74\x00\x20\x00\x6d\x00\x61\x00\ -\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\ -\x6d\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x73\x00\x20\x00\x65\x00\ -\x61\x00\x73\x00\x69\x00\x6c\x00\x79\x00\x20\x00\x65\x00\x64\x00\ -\x69\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x93\x69\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\ -\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x6c\ -\x61\x79\x65\x72\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x6a\x6f\ -\x69\x6e\x65\x64\x20\x69\x6e\x74\x6f\x20\x44\x72\x61\x66\x74\x20\ -\x42\x6c\x6f\x63\x6b\x73\x2c\x20\x74\x75\x72\x6e\x69\x6e\x67\x20\ -\x74\x68\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x66\x61\x73\x74\ -\x65\x72\x2c\x20\x62\x75\x74\x20\x6d\x61\x6b\x69\x6e\x67\x20\x74\ -\x68\x65\x6d\x20\x6c\x65\x73\x73\x20\x65\x61\x73\x69\x6c\x79\x20\ -\x65\x64\x69\x74\x61\x62\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x9a\ -\x04\x35\x04\x41\x04\x3b\x04\x38\x00\x20\x04\x32\x04\x4b\x04\x31\ -\x04\x40\x04\x30\x04\x3d\x00\x20\x04\x4d\x04\x42\x04\x3e\x04\x42\ -\x00\x20\x04\x3f\x04\x43\x04\x3d\x04\x3a\x04\x42\x00\x2c\x00\x20\ -\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x4b\x00\x20\ -\x04\x32\x00\x20\x04\x3f\x04\x40\x04\x3e\x04\x41\x04\x42\x04\x40\ -\x04\x30\x04\x3d\x04\x41\x04\x42\x04\x32\x04\x35\x00\x20\x04\x3b\ -\x04\x38\x04\x41\x04\x42\x04\x30\x00\x20\x04\x31\x04\x43\x04\x34\ -\x04\x43\x04\x42\x00\x20\x04\x42\x04\x3e\x04\x36\x04\x35\x00\x20\ -\x04\x38\x04\x3c\x04\x3f\x04\x3e\x04\x40\x04\x42\x04\x38\x04\x40\ -\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x4b\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x3c\x69\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\ -\x68\x65\x63\x6b\x65\x64\x2c\x20\x70\x61\x70\x65\x72\x20\x73\x70\ -\x61\x63\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\ -\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x8a\x04\x35\x04\x41\x04\x3b\x04\x38\ -\x00\x20\x04\x4d\x04\x42\x04\x3e\x04\x42\x00\x20\x04\x3f\x04\x43\ -\x04\x3d\x04\x3a\x04\x42\x00\x20\x04\x3d\x04\x35\x00\x20\x04\x32\ -\x04\x4b\x04\x31\x04\x40\x04\x30\x04\x3d\x00\x2c\x00\x20\x04\x42\ -\x04\x35\x04\x3a\x04\x41\x04\x42\x04\x4b\x00\x2f\x04\x3c\x04\x43\ -\x04\x3b\x04\x4c\x04\x42\x04\x38\x04\x42\x04\x35\x04\x3a\x04\x41\ -\x04\x42\x04\x4b\x00\x20\x04\x38\x04\x3c\x04\x3f\x04\x3e\x04\x40\ -\x04\x42\x04\x38\x04\x40\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x4b\ -\x00\x20\x04\x3d\x04\x35\x00\x20\x04\x31\x04\x43\x04\x34\x04\x43\ -\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x69\x66\x20\x74\ -\x68\x69\x73\x20\x69\x73\x20\x75\x6e\x63\x68\x65\x63\x6b\x65\x64\ -\x2c\x20\x74\x65\x78\x74\x73\x2f\x6d\x74\x65\x78\x74\x73\x20\x77\ -\x6f\x6e\x27\x74\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\ -\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ -\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x04\x00\x70\x00\x78\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x02\x70\x78\x07\x00\x00\x00\x1d\x47\x75\x69\ -\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ -\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\ -\x00\x73\x00\x68\x00\x69\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x05\x73\x68\x69\x66\x74\x07\x00\x00\x00\x1d\x47\x75\ -\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ -\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x48\x04\x46\x04\x32\x04\x35\x04\x42\x00\x20\x04\x3f\x04\x3e\x00\ -\x20\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\x04\ -\x38\x04\x4e\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3d\x04\ -\x3e\x04\x32\x04\x4b\x04\x45\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\ -\x35\x04\x3a\x04\x42\x04\x3e\x04\x32\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x21\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\ -\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x6f\x62\x6a\ -\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ -\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4e\x04\x46\x04\x32\ -\x04\x35\x04\x42\x00\x20\x04\x3f\x04\x3e\x00\x20\x04\x43\x04\x3c\ -\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\x04\x38\x04\x4e\x00\x20\ -\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x41\x04\x38\x04\x3c\x04\x32\ -\x04\x3e\x04\x3b\x04\x3e\x04\x32\x00\x20\x04\x3f\x04\x40\x04\x38\ -\x04\x32\x04\x4f\x04\x37\x04\x3a\x04\x38\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x22\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\ -\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x20\x73\ -\x79\x6d\x62\x6f\x6c\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ -\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ -\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5a\x04\x42\ -\x04\x3e\x04\x3b\x04\x49\x04\x38\x04\x3d\x04\x30\x00\x20\x04\x3b\ -\x04\x38\x04\x3d\x04\x38\x04\x38\x00\x20\x04\x3f\x04\x3e\x00\x20\ -\x04\x43\x04\x3c\x04\x3e\x04\x3b\x04\x47\x04\x30\x04\x3d\x04\x38\ -\x04\x4e\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3d\x04\x3e\ -\x04\x32\x04\x4b\x04\x45\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\ -\x04\x3a\x04\x42\x04\x3e\x04\x32\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x25\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x6c\x69\ -\x6e\x65\x77\x69\x64\x74\x68\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\ -\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ -\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ -\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\ -\x26\x04\x17\x04\x30\x04\x3a\x04\x40\x04\x4b\x04\x42\x04\x4c\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x06\x26\x43\x6c\x6f\x73\x65\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x04\ -\x1f\x04\x40\x04\x3e\x04\x34\x04\x3e\x04\x3b\x04\x36\x04\x38\x04\ -\x42\x04\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\x43\x6f\ -\x6e\x74\x69\x6e\x75\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x16\x00\x26\x04\x1a\x04\x3e\x04\x3f\x04\x38\ -\x04\x40\x04\x3e\x04\x32\x04\x30\x04\x42\x04\x4c\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x05\x26\x43\x6f\x70\x79\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x26\x04\x13\x04\ -\x3e\x04\x42\x04\x3e\x04\x32\x04\x3e\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x07\x26\x46\x69\x6e\x69\x73\x68\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x04\x21\x04\x3c\x04\x35\ -\x04\x49\x04\x35\x04\x3d\x04\x38\x04\x35\x00\x20\x04\x32\x00\x20\ -\x04\x41\x04\x42\x04\x38\x04\x3b\x04\x35\x00\x20\x00\x26\x00\x4f\ -\x00\x43\x00\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x26\x4f\ -\x43\x43\x2d\x73\x74\x79\x6c\x65\x20\x6f\x66\x66\x73\x65\x74\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\ -\x26\x04\x1e\x04\x42\x04\x3d\x04\x3e\x04\x41\x04\x38\x04\x42\x04\ -\x35\x04\x3b\x04\x4c\x04\x3d\x04\x3e\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x09\x26\x52\x65\x6c\x61\x74\x69\x76\x65\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x26\x04\x1e\ -\x04\x42\x04\x3c\x04\x35\x04\x3d\x04\x38\x04\x42\x04\x4c\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x05\x26\x55\x6e\x64\x6f\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x04\x21\x04\ -\x42\x04\x35\x04\x40\x04\x35\x04\x42\x04\x4c\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x05\x26\x57\x69\x70\x65\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x04\x10\x04\x3a\x04\x42\ -\x04\x38\x04\x32\x04\x3d\x04\x30\x04\x4f\x00\x20\x04\x3a\x04\x3e\ -\x04\x3c\x04\x30\x04\x3d\x04\x34\x04\x30\x00\x20\x04\x47\x04\x35\ -\x04\x40\x04\x47\x04\x35\x04\x3d\x04\x38\x04\x4f\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x14\x41\x63\x74\x69\x76\x65\x20\x44\x72\x61\ -\x66\x74\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x68\x04\x10\x04\x3a\x04\x42\ -\x04\x38\x04\x32\x04\x3d\x04\x4b\x04\x39\x00\x20\x04\x3e\x04\x31\ -\x04\x4a\x04\x35\x04\x3a\x04\x42\x00\x20\x04\x34\x04\x3e\x04\x3b\ -\x04\x36\x04\x35\x04\x3d\x00\x20\x04\x38\x04\x3c\x04\x35\x04\x42\ -\x04\x4c\x00\x20\x04\x31\x04\x3e\x04\x3b\x04\x35\x04\x35\x00\x20\ -\x04\x34\x04\x32\x04\x43\x04\x45\x00\x20\x04\x42\x04\x3e\x04\x47\ -\x04\x35\x04\x3a\x00\x2f\x04\x43\x04\x37\x04\x3b\x04\x3e\x04\x32\ -\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x41\x63\x74\x69\ -\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x6d\x75\x73\x74\x20\x68\ -\x61\x76\x65\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\x74\x77\ -\x6f\x20\x70\x6f\x69\x6e\x74\x73\x2f\x6e\x6f\x64\x65\x73\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\x00\ -\x41\x00\x64\x00\x64\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\ -\x74\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\ -\x65\x00\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\ -\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x20\x41\x64\x64\x20\x70\x6f\x69\ -\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\ -\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x41\x00\x70\x00\x65\x00\ -\x72\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x08\x41\x70\x65\x72\x74\x75\x72\x65\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x04\x23\x04\x33\x04\ -\x3e\x04\x3b\x00\x20\x04\x3f\x04\x40\x04\x38\x04\x46\x04\x35\x04\ -\x3b\x04\x30\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x41\ -\x70\x65\x72\x74\x75\x72\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x04\ -\x1f\x04\x40\x04\x38\x04\x3c\x04\x35\x04\x3d\x04\x38\x04\x42\x04\ -\x4c\x00\x20\x04\x3a\x00\x20\x04\x32\x04\x4b\x04\x31\x04\x40\x04\ -\x30\x04\x3d\x04\x3d\x04\x4b\x04\x3c\x00\x20\x04\x3e\x04\x31\x04\ -\x4a\x04\x35\x04\x3a\x04\x42\x04\x30\x04\x3c\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x19\x41\x70\x70\x6c\x79\x20\x74\x6f\x20\x73\x65\ -\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x04\x14\ -\x04\x43\x04\x33\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\ -\x41\x72\x63\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x56\x04\x1d\x04\x35\x00\x20\x04\x43\x04\x34\x04\x30\x04\ -\x35\x04\x42\x04\x41\x04\x4f\x00\x20\x04\x3a\x04\x3e\x04\x3c\x04\ -\x3f\x04\x35\x04\x3d\x04\x41\x04\x38\x04\x40\x04\x3e\x04\x32\x04\ -\x30\x04\x42\x04\x4c\x00\x20\x04\x4d\x04\x42\x04\x3e\x04\x42\x00\ -\x20\x04\x42\x04\x38\x04\x3f\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\ -\x35\x04\x3a\x04\x42\x04\x30\x00\x20\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x1f\x43\x61\x6e\x6e\x6f\x74\x20\x6f\x66\x66\x73\x65\x74\ -\x20\x74\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\ -\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x0e\x04\x26\x04\x35\x04\x3d\x04\x42\x04\x40\x00\x20\x00\x58\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x65\x6e\x74\x65\x72\ -\x20\x58\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x1c\x04\x18\x04\x37\x04\x3c\x04\x35\x04\x3d\x04\x38\x04\x42\ -\x04\x4c\x00\x20\x04\x21\x04\x42\x04\x38\x04\x3b\x04\x4c\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x68\x61\x6e\x67\x65\x20\x53\ -\x74\x79\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\xf2\x04\x23\x04\x41\x04\x42\x04\x30\x04\x3d\x04\x3e\ -\x04\x32\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x44\x04\x3b\x04\x30\ -\x04\x36\x04\x3e\x04\x3a\x00\x20\x04\x35\x04\x41\x04\x3b\x04\x38\ -\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x00\x20\ -\x04\x34\x04\x3e\x04\x3b\x04\x36\x04\x35\x04\x3d\x00\x20\x04\x3e\ -\x04\x42\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x36\x04\x30\x04\x42\ -\x04\x4c\x04\x41\x04\x4f\x00\x20\x04\x3a\x04\x30\x04\x3a\x00\x20\ -\x04\x37\x04\x30\x04\x3f\x04\x3e\x04\x3b\x04\x3d\x04\x35\x04\x3d\ -\x04\x4b\x04\x39\x00\x2c\x00\x20\x04\x32\x00\x20\x04\x3f\x04\x40\ -\x04\x3e\x04\x42\x04\x38\x04\x32\x04\x3d\x04\x3e\x04\x3c\x00\x20\ -\x04\x41\x04\x3b\x04\x43\x04\x47\x04\x30\x04\x35\x00\x20\x04\x3e\ -\x04\x3d\x00\x20\x04\x31\x04\x43\x04\x34\x04\x35\x04\x42\x00\x20\ -\x04\x3e\x04\x42\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x36\x04\x30\ -\x04\x42\x04\x4c\x04\x41\x04\x4f\x00\x20\x04\x3a\x04\x30\x04\x3a\ -\x00\x20\x04\x3a\x04\x30\x04\x40\x04\x3a\x04\x30\x04\x41\x00\x20\ -\x00\x28\x00\x69\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5b\ -\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x74\x68\ -\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x73\x68\x6f\x75\x6c\x64\x20\ -\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x66\x69\x6c\x6c\x65\x64\ -\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x69\x74\x20\x77\ -\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x61\x73\x20\x77\x69\ -\x72\x65\x66\x72\x61\x6d\x65\x20\x28\x69\x29\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x04\x1e\x04\x3a\x04\ -\x40\x04\x43\x04\x36\x04\x3d\x04\x3e\x04\x41\x04\x42\x04\x4c\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\x69\x72\x63\x6c\x65\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x7c\x04\ -\x1a\x04\x3e\x04\x3e\x04\x40\x04\x34\x04\x38\x04\x3d\x04\x30\x04\ -\x42\x04\x4b\x00\x20\x04\x3e\x04\x42\x04\x3d\x04\x3e\x04\x41\x04\ -\x38\x04\x42\x04\x35\x04\x3b\x04\x4c\x04\x3d\x04\x3e\x00\x20\x04\ -\x3f\x04\x3e\x04\x41\x04\x3b\x04\x35\x04\x34\x04\x3d\x04\x35\x04\ -\x39\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x38\x00\x20\x04\ -\x38\x04\x3b\x04\x38\x00\x20\x04\x30\x04\x31\x04\x41\x04\x3e\x04\ -\x3b\x04\x4e\x04\x42\x04\x3d\x04\x4b\x04\x35\x00\x20\x00\x28\x00\ -\x53\x00\x50\x00\x41\x00\x43\x00\x45\x00\x29\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x36\x43\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x73\ -\x20\x72\x65\x6c\x61\x74\x69\x76\x65\x20\x74\x6f\x20\x6c\x61\x73\ -\x74\x20\x70\x6f\x69\x6e\x74\x20\x6f\x72\x20\x61\x62\x73\x6f\x6c\ -\x75\x74\x65\x20\x28\x53\x50\x41\x43\x45\x29\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x04\x21\x04\x3a\x04\ -\x3e\x04\x3f\x04\x38\x04\x40\x04\x3e\x04\x32\x04\x30\x04\x42\x04\ -\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x43\x6f\x70\x79\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x04\ -\x21\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x42\x04\x4c\x00\x20\x04\ -\x34\x04\x43\x04\x33\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0a\x43\x72\x65\x61\x74\x65\x20\x41\x72\x63\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x04\x21\x04\x3e\x04\ -\x37\x04\x34\x04\x30\x04\x42\x04\x4c\x00\x20\x00\x42\x00\x53\x00\ -\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0e\x43\x72\x65\x61\x74\x65\x20\x42\x53\x70\x6c\x69\x6e\ -\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x18\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x42\x04\x4c\x00\ -\x20\x04\x3a\x04\x40\x04\x43\x04\x33\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0d\x43\x72\x65\x61\x74\x65\x20\x43\x69\x72\x63\x6c\x65\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\ -\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x42\x04\x4c\x00\x20\ -\x04\x18\x04\x37\x04\x3c\x04\x35\x04\x40\x04\x35\x04\x3d\x04\x38\ -\x04\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\ -\x74\x65\x20\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x04\x21\x04\x3e\ -\x04\x37\x04\x34\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x3f\x04\x3e\ -\x04\x3b\x04\x38\x04\x33\x04\x3e\x04\x3d\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x0e\x43\x72\x65\x61\x74\x65\x20\x50\x6f\x6c\x79\x67\ -\x6f\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x2a\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x42\x04\x4c\ -\x00\x20\x04\x3f\x04\x40\x04\x4f\x04\x3c\x04\x3e\x04\x43\x04\x33\ -\x04\x3e\x04\x3b\x04\x4c\x04\x3d\x04\x38\x04\x3a\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\x74\x65\x20\x52\x65\x63\ -\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x1a\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\ -\x04\x42\x04\x4c\x00\x20\x04\x22\x04\x35\x04\x3a\x04\x41\x04\x42\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\ -\x20\x54\x65\x78\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x22\x04\x21\x04\x3e\x04\x37\x04\x34\x04\x30\x04\ -\x42\x04\x4c\x00\x20\x04\x3f\x04\x40\x04\x3e\x04\x32\x04\x3e\x04\ -\x3b\x04\x3e\x04\x3a\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x0b\x43\x72\x65\x61\x74\x65\x20\x57\x69\x72\x65\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x04\x23\x04\x34\ -\x04\x30\x04\x3b\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x18\x04\x37\ -\x04\x3c\x04\x35\x04\x40\x04\x35\x04\x3d\x04\x38\x04\x35\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x12\x44\x65\x6c\x65\x74\x65\x20\x4d\ -\x65\x61\x73\x75\x72\x65\x6d\x65\x6e\x74\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x44\x00\x69\x00\x73\ -\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x20\x00\x6f\x00\x70\x00\x74\ -\x00\x69\x00\x6f\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x0f\x44\x69\x73\x70\x6c\x61\x79\x20\x6f\x70\x74\x69\x6f\x6e\ -\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x14\x04\x20\x04\x30\x04\x41\x04\x41\x04\x42\x04\x3e\x04\x4f\x04\ -\x3d\x04\x38\x04\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x44\ -\x69\x73\x74\x61\x6e\x63\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x54\x04\x1d\x04\x35\x00\x20\x04\x3f\x04\ -\x40\x04\x3e\x04\x35\x04\x46\x04\x38\x04\x40\x04\x3e\x04\x32\x04\ -\x30\x04\x42\x04\x4c\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\ -\x38\x00\x20\x04\x3d\x04\x30\x00\x20\x04\x3f\x04\x3b\x04\x3e\x04\ -\x41\x04\x3a\x04\x3e\x04\x41\x04\x42\x04\x4c\x00\x20\x04\x40\x04\ -\x38\x04\x41\x04\x43\x04\x3d\x04\x3a\x04\x30\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x28\x44\x6f\x20\x6e\x6f\x74\x20\x70\x72\x6f\x6a\ -\x65\x63\x74\x20\x70\x6f\x69\x6e\x74\x73\x20\x74\x6f\x20\x61\x20\ -\x64\x72\x61\x77\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x44\x00\ -\x72\x00\x61\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x05\x44\x72\x61\x66\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x16\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\ -\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\ -\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x2c\x04\x20\x04\x35\x04\x31\x04\x40\x04\x30\x00\x20\x04\x3d\x04\ -\x35\x00\x20\x04\x3f\x04\x35\x04\x40\x04\x35\x04\x41\x04\x35\x04\ -\x3a\x04\x30\x04\x4e\x04\x42\x04\x41\x04\x4f\x00\x21\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x17\x45\x64\x67\x65\x73\x20\x64\x6f\x6e\ -\x27\x74\x20\x69\x6e\x74\x65\x72\x73\x65\x63\x74\x21\x0a\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x04\x1f\ -\x04\x40\x04\x30\x04\x32\x04\x3a\x04\x30\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x16\x04\x17\x04\x30\x04\x3f\x04\x3e\ -\x04\x3b\x04\x3d\x04\x35\x04\x3d\x04\x3d\x04\x4b\x04\x39\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x07\x46\x26\x69\x6c\x6c\x65\x64\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x04\ -\x26\x04\x32\x04\x35\x04\x42\x00\x20\x04\x33\x04\x40\x04\x30\x04\ -\x3d\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x46\x61\x63\ -\x65\x20\x43\x6f\x6c\x6f\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x4c\x04\x17\x04\x30\x04\x3a\x04\x3e\x04\ -\x3d\x04\x47\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x38\x00\x20\x04\ -\x37\x04\x30\x04\x3c\x04\x3a\x04\x3d\x04\x43\x04\x42\x04\x4c\x00\ -\x20\x04\x42\x04\x35\x04\x3a\x04\x43\x04\x49\x04\x43\x04\x4e\x00\ -\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x4e\x00\x20\x00\x28\x00\ -\x43\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x46\x69\x6e\ -\x69\x73\x68\x65\x73\x20\x61\x6e\x64\x20\x63\x6c\x6f\x73\x65\x73\ -\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\x6e\ -\x65\x20\x28\x43\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x6a\x00\x46\x00\x69\x00\x6e\x00\x69\x00\x73\x00\ -\x68\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ -\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\ -\x64\x00\x72\x00\x61\x00\x77\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ -\x6f\x00\x72\x00\x20\x00\x65\x00\x64\x00\x69\x00\x74\x00\x69\x00\ -\x6e\x00\x67\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x72\x00\x61\x00\ -\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x28\x00\x46\x00\x29\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x35\x46\x69\x6e\x69\x73\x68\x65\ -\x73\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x64\x72\ -\x61\x77\x69\x6e\x67\x20\x6f\x72\x20\x65\x64\x69\x74\x69\x6e\x67\ -\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x20\x28\x46\x29\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x04\x20\ -\x04\x30\x04\x37\x04\x3c\x04\x35\x04\x40\x00\x20\x04\x48\x04\x40\ -\x04\x38\x04\x44\x04\x42\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x09\x46\x6f\x6e\x74\x20\x53\x69\x7a\x65\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x66\x04\x1d\x04\x30\x04\ -\x39\x04\x34\x04\x35\x04\x3d\x00\x20\x04\x37\x04\x30\x04\x3a\x04\ -\x40\x04\x4b\x04\x42\x04\x4b\x04\x39\x00\x20\x04\x4d\x04\x41\x04\ -\x3a\x04\x38\x04\x37\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\ -\x3a\x04\x42\x04\x30\x00\x3a\x00\x20\x04\x41\x04\x3e\x04\x37\x04\ -\x34\x04\x30\x04\x4e\x00\x20\x04\x38\x04\x37\x00\x20\x04\x3d\x04\ -\x35\x04\x33\x04\x3e\x00\x20\x04\x3b\x04\x38\x04\x46\x04\x3e\x00\ -\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x46\x6f\x75\x6e\x64\ -\x20\x31\x20\x63\x6c\x6f\x73\x65\x64\x20\x73\x6b\x65\x74\x63\x68\ -\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\ -\x61\x20\x66\x61\x63\x65\x20\x66\x72\x6f\x6d\x20\x69\x74\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x64\x04\ -\x1d\x04\x30\x04\x39\x04\x34\x04\x35\x04\x3d\x04\x30\x00\x20\x00\ -\x31\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\x35\x04\x40\x04\x45\x04\ -\x3d\x04\x3e\x04\x41\x04\x42\x04\x4c\x00\x3a\x00\x20\x04\x38\x04\ -\x37\x04\x32\x04\x3b\x04\x35\x04\x47\x04\x35\x04\x3d\x04\x38\x04\ -\x35\x00\x20\x04\x35\x04\x35\x00\x20\x04\x3d\x04\x30\x04\x3f\x04\ -\x40\x04\x30\x04\x32\x04\x3b\x04\x4f\x04\x4e\x04\x49\x04\x38\x04\ -\x45\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x46\x6f\x75\ -\x6e\x64\x20\x31\x20\x66\x61\x63\x65\x3a\x20\x65\x78\x74\x72\x61\ -\x63\x74\x69\x6e\x67\x20\x69\x74\x73\x20\x77\x69\x72\x65\x73\x0a\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6a\ -\x04\x1d\x04\x30\x04\x39\x04\x34\x04\x35\x04\x3d\x00\x20\x04\x3e\ -\x04\x34\x04\x38\x04\x3d\x00\x20\x04\x3d\x04\x35\x04\x3f\x04\x30\ -\x04\x40\x04\x30\x04\x3c\x04\x35\x04\x42\x04\x40\x04\x38\x04\x47\ -\x04\x35\x04\x41\x04\x3a\x04\x38\x04\x39\x00\x20\x04\x3e\x04\x31\ -\x04\x4a\x04\x35\x04\x3a\x04\x42\x00\x3a\x00\x20\x00\x64\x00\x72\ -\x00\x61\x00\x66\x00\x74\x00\x69\x00\x66\x00\x79\x00\x69\x00\x6e\ -\x00\x67\x00\x20\x00\x69\x00\x74\x00\x20\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x2f\x46\x6f\x75\x6e\x64\x20\x31\x20\x6e\x6f\x6e\x2d\ -\x70\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\ -\x74\x73\x3a\x20\x64\x72\x61\x66\x74\x69\x66\x79\x69\x6e\x67\x20\ -\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x54\x04\x1d\x04\x30\x04\x39\x04\x34\x04\x35\x04\x3d\x00\ -\x20\x04\x3e\x04\x34\x04\x38\x04\x3d\x00\x20\x04\x3e\x04\x42\x04\ -\x3a\x04\x40\x04\x4b\x04\x42\x04\x4b\x04\x39\x00\x20\x04\x3f\x04\ -\x40\x04\x3e\x04\x32\x04\x3e\x04\x34\x00\x3a\x00\x20\x04\x37\x04\ -\x30\x04\x3a\x04\x40\x04\x4b\x04\x32\x04\x30\x04\x4e\x00\x20\x04\ -\x35\x04\x33\x04\x3e\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x1e\x46\x6f\x75\x6e\x64\x20\x31\x20\x6f\x70\x65\x6e\x20\x77\x69\ -\x72\x65\x3a\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x7c\x04\ -\x1d\x04\x30\x04\x39\x04\x34\x04\x35\x04\x3d\x00\x20\x04\x3e\x04\ -\x34\x04\x38\x04\x3d\x00\x20\x04\x3f\x04\x30\x04\x40\x04\x30\x04\ -\x3c\x04\x35\x04\x42\x04\x40\x04\x38\x04\x47\x04\x35\x04\x41\x04\ -\x3a\x04\x38\x04\x39\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\ -\x3a\x04\x42\x00\x3a\x00\x20\x04\x43\x04\x3d\x04\x38\x04\x47\x04\ -\x42\x04\x3e\x04\x36\x04\x30\x04\x4e\x00\x20\x04\x35\x04\x33\x04\ -\x3e\x00\x20\x04\x37\x04\x30\x04\x32\x04\x38\x04\x41\x04\x38\x04\ -\x3c\x04\x3e\x04\x41\x04\x42\x04\x38\x00\x20\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x35\x46\x6f\x75\x6e\x64\x20\x31\x20\x70\x61\x72\ -\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\ -\x62\x72\x65\x61\x6b\x69\x6e\x67\x20\x69\x74\x73\x20\x64\x65\x70\ -\x65\x6e\x64\x65\x6e\x63\x69\x65\x73\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5a\x00\x46\x00\x6f\x00\x75\ -\x00\x6e\x00\x64\x00\x20\x00\x31\x00\x20\x00\x73\x00\x6f\x00\x6c\ -\x00\x69\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x62\ -\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ -\x00\x74\x00\x3a\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\ -\x00\x69\x00\x66\x00\x79\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x69\ -\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x46\x6f\ -\x75\x6e\x64\x20\x31\x20\x73\x6f\x6c\x69\x64\x69\x66\x69\x63\x61\ -\x62\x6c\x65\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x73\x6f\x6c\x69\ -\x64\x69\x66\x79\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x04\x1d\x04\x30\x04\ -\x39\x04\x34\x04\x35\x04\x3d\x04\x4b\x00\x20\x04\x34\x04\x32\x04\ -\x30\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\ -\x30\x00\x3a\x00\x20\x04\x41\x04\x3b\x04\x38\x04\x4f\x04\x4e\x00\ -\x20\x04\x38\x04\x45\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x1d\x46\x6f\x75\x6e\x64\x20\x32\x20\x6f\x62\x6a\x65\x63\x74\x73\ -\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\x04\x1d\ -\x04\x30\x04\x39\x04\x34\x04\x35\x04\x3d\x04\x3e\x00\x20\x00\x32\ -\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x30\ -\x00\x3a\x00\x20\x04\x32\x04\x4b\x04\x47\x04\x38\x04\x42\x04\x30\ -\x04\x3d\x04\x38\x04\x35\x00\x20\x04\x38\x04\x45\x00\x20\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x22\x46\x6f\x75\x6e\x64\x20\x32\x20\ -\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x73\x75\x62\x74\x72\x61\x63\ -\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4c\x04\x1d\x04\x30\x04\x39\ -\x04\x34\x04\x35\x04\x3d\x04\x4b\x00\x20\x04\x37\x04\x30\x04\x3a\ -\x04\x40\x04\x4b\x04\x42\x04\x4b\x04\x35\x00\x20\x04\x3f\x04\x40\ -\x04\x3e\x04\x32\x04\x3e\x04\x34\x04\x30\x00\x3a\x00\x20\x04\x41\ -\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x4e\x00\x20\x04\x3b\x04\x38\ -\x04\x46\x04\x3e\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\ -\x46\x6f\x75\x6e\x64\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\ -\x65\x73\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x66\x61\x63\x65\x73\ -\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x74\x04\x1d\x04\x30\x04\x39\x04\x34\x04\x35\x04\x3d\x04\x4b\x00\ -\x20\x04\x33\x04\x40\x04\x43\x04\x3f\x04\x3f\x04\x4b\x00\x3a\x00\ -\x20\x04\x37\x04\x30\x04\x3a\x04\x40\x04\x4b\x04\x42\x04\x38\x04\ -\x35\x00\x20\x04\x3a\x04\x30\x04\x36\x04\x34\x04\x3e\x04\x33\x04\ -\x3e\x00\x20\x04\x3e\x04\x42\x04\x3a\x04\x40\x04\x4b\x04\x42\x04\ -\x3e\x04\x33\x04\x3e\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\ -\x3a\x04\x42\x04\x30\x00\x20\x04\x32\x04\x3d\x04\x43\x04\x42\x04\ -\x40\x04\x38\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x46\ -\x6f\x75\x6e\x64\x20\x67\x72\x6f\x75\x70\x73\x3a\x20\x63\x6c\x6f\ -\x73\x69\x6e\x67\x20\x65\x61\x63\x68\x20\x6f\x70\x65\x6e\x20\x6f\ -\x62\x6a\x65\x63\x74\x20\x69\x6e\x73\x69\x64\x65\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5a\x00\x46\x00\ -\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ -\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\ -\x74\x00\x61\x00\x69\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ -\x63\x00\x75\x00\x72\x00\x76\x00\x65\x00\x73\x00\x3a\x00\x20\x00\ -\x66\x00\x75\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\ -\x68\x00\x65\x00\x6d\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x2d\x46\x6f\x75\x6e\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x63\ -\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x63\x75\x72\x76\x65\x73\ -\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x64\x04\x1d\ -\x04\x30\x04\x39\x04\x34\x04\x35\x04\x3d\x04\x4b\x00\x20\x04\x42\ -\x04\x3e\x04\x3b\x04\x4c\x04\x3a\x04\x3e\x00\x20\x04\x3d\x04\x30\ -\x04\x3f\x04\x40\x04\x30\x04\x32\x04\x3b\x04\x4f\x04\x4e\x04\x49\ -\x04\x38\x04\x35\x00\x3a\x00\x20\x04\x38\x04\x37\x04\x32\x04\x3b\ -\x04\x35\x04\x47\x04\x35\x04\x3d\x04\x38\x04\x35\x00\x20\x04\x38\ -\x04\x45\x00\x20\x04\x3a\x04\x40\x04\x3e\x04\x3c\x04\x3e\x04\x3a\ -\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x46\x6f\x75\x6e\ -\x64\x20\x6f\x6e\x6c\x79\x20\x77\x69\x72\x65\x73\x3a\x20\x65\x78\ -\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x74\x68\x65\x69\x72\x20\x65\ -\x64\x67\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x48\x04\x1d\x04\x30\x04\x39\x04\x34\x04\x35\x04\ -\x3d\x04\x3e\x00\x20\x04\x3d\x04\x35\x04\x41\x04\x3a\x04\x3e\x04\ -\x3b\x04\x4c\x04\x3a\x04\x3e\x00\x20\x04\x40\x04\x35\x04\x31\x04\ -\x35\x04\x40\x00\x3a\x00\x20\x04\x3f\x04\x40\x04\x3e\x04\x32\x04\ -\x3e\x04\x36\x04\x43\x00\x20\x04\x38\x04\x45\x00\x20\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x21\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\ -\x65\x72\x61\x6c\x20\x65\x64\x67\x65\x73\x3a\x20\x77\x69\x72\x69\ -\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x5a\x04\x1d\x04\x30\x04\x39\x04\x34\ -\x04\x35\x04\x3d\x04\x3e\x00\x20\x04\x3d\x04\x35\x04\x41\x04\x3a\ -\x04\x3e\x04\x3b\x04\x4c\x04\x3a\x04\x3e\x00\x20\x04\x3f\x04\x3e\ -\x04\x32\x04\x35\x04\x40\x04\x45\x04\x3d\x04\x3e\x04\x41\x04\x42\ -\x04\x35\x04\x39\x00\x3a\x00\x20\x04\x40\x04\x30\x04\x41\x04\x49\ -\x04\x35\x04\x3f\x04\x38\x04\x42\x04\x35\x00\x20\x04\x38\x04\x45\ -\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x46\x6f\x75\x6e\ -\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x66\x61\x63\x65\x73\x3a\ -\x20\x73\x70\x6c\x69\x74\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6a\ -\x04\x1d\x04\x30\x04\x39\x04\x34\x04\x35\x04\x3d\x04\x3e\x00\x20\ -\x04\x3d\x04\x35\x04\x41\x04\x3a\x04\x3e\x04\x3b\x04\x4c\x04\x3a\ -\x04\x3e\x00\x20\x04\x3d\x04\x35\x04\x41\x04\x32\x04\x4f\x04\x37\ -\x04\x3d\x04\x4b\x04\x45\x00\x20\x04\x3a\x04\x40\x04\x30\x04\x51\ -\x04\x32\x00\x3a\x00\x20\x04\x41\x04\x3e\x04\x37\x04\x34\x04\x30\ -\x04\x4e\x00\x20\x04\x41\x04\x3e\x04\x35\x04\x34\x04\x38\x04\x3d\ -\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x33\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\ -\x6c\x20\x6e\x6f\x6e\x2d\x63\x6f\x6e\x6e\x65\x63\x74\x65\x64\x20\ -\x65\x64\x67\x65\x73\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x63\x6f\ -\x6d\x70\x6f\x75\x6e\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x74\x04\x1d\x04\x30\x04\x39\x04\x34\x04\ -\x35\x04\x3d\x04\x3e\x00\x20\x04\x3d\x04\x35\x04\x41\x04\x3a\x04\ -\x3e\x04\x3b\x04\x4c\x04\x3a\x04\x3e\x00\x20\x04\x3d\x04\x35\x04\ -\x38\x04\x37\x04\x3b\x04\x35\x04\x47\x04\x38\x04\x3c\x04\x4b\x04\ -\x45\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\ -\x3e\x04\x32\x00\x3a\x00\x20\x04\x41\x04\x3e\x04\x37\x04\x34\x04\ -\x30\x04\x4e\x00\x20\x04\x41\x04\x3e\x04\x35\x04\x34\x04\x38\x04\ -\x3d\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\x20\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x35\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\ -\x61\x6c\x20\x6e\x6f\x6e\x2d\x74\x72\x65\x61\x74\x61\x62\x6c\x65\ -\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x6d\x61\x6b\x69\x6e\x67\ -\x20\x63\x6f\x6d\x70\x6f\x75\x6e\x64\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x9c\x04\x1d\x04\x30\x04\x39\ -\x04\x34\x04\x35\x04\x3d\x04\x3e\x00\x20\x04\x3d\x04\x35\x04\x41\ -\x04\x3a\x04\x3e\x04\x3b\x04\x4c\x04\x3a\x04\x3e\x00\x20\x04\x3e\ -\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x3e\x04\x32\x00\x20\ -\x04\x38\x04\x3b\x04\x38\x00\x20\x04\x3f\x04\x3b\x04\x3e\x04\x41\ -\x04\x3a\x04\x3e\x04\x41\x04\x42\x04\x35\x04\x39\x00\x3a\x00\x20\ -\x04\x41\x04\x3e\x04\x37\x04\x34\x04\x30\x04\x51\x04\x42\x04\x41\ -\x04\x4f\x00\x20\x04\x3f\x04\x30\x04\x40\x04\x30\x04\x3c\x04\x35\ -\x04\x42\x04\x40\x04\x38\x04\x47\x04\x35\x04\x41\x04\x3a\x04\x30\ -\x04\x4f\x00\x20\x04\x3f\x04\x3b\x04\x3e\x04\x41\x04\x3a\x04\x3e\ -\x04\x41\x04\x42\x04\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x39\ -\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6f\x62\ -\x6a\x65\x63\x74\x73\x20\x6f\x72\x20\x66\x61\x63\x65\x73\x3a\x20\ -\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x70\x61\x72\x61\x6d\x65\x74\ -\x72\x69\x63\x20\x66\x61\x63\x65\x0a\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x46\x00\x6f\x00\x75\x00\ -\x6e\x00\x64\x00\x20\x00\x73\x00\x65\x00\x76\x00\x65\x00\x72\x00\ -\x61\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ -\x74\x00\x73\x00\x3a\x00\x20\x00\x66\x00\x75\x00\x73\x00\x69\x00\ -\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x0a\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x23\x46\x6f\x75\x6e\x64\x20\x73\ -\x65\x76\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\ -\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x68\x04\x1d\x04\x30\ -\x04\x39\x04\x34\x04\x35\x04\x3d\x04\x3e\x00\x20\x04\x3d\x04\x35\ -\x04\x41\x04\x3a\x04\x3e\x04\x3b\x04\x4c\x04\x3a\x04\x3e\x00\x20\ -\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x3e\x04\x32\ -\x00\x3a\x00\x20\x04\x32\x04\x4b\x04\x47\x04\x38\x04\x42\x04\x30\ -\x04\x3d\x04\x38\x04\x35\x00\x20\x04\x38\x04\x45\x00\x20\x04\x38\ -\x04\x37\x00\x20\x04\x3f\x04\x35\x04\x40\x04\x32\x04\x3e\x04\x33\ -\x04\x3e\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3b\x46\x6f\ -\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\ -\x63\x74\x73\x3a\x20\x73\x75\x62\x74\x72\x61\x63\x74\x69\x6e\x67\ -\x20\x74\x68\x65\x6d\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x66\ -\x69\x72\x73\x74\x20\x6f\x6e\x65\x0a\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\xb8\x04\x15\x04\x41\x04\x3b\x04\ -\x38\x00\x20\x04\x44\x04\x3b\x04\x30\x04\x36\x04\x3e\x04\x3a\x00\ -\x20\x04\x43\x04\x41\x04\x42\x04\x30\x04\x3d\x04\x3e\x04\x32\x04\ -\x3b\x04\x35\x04\x3d\x00\x2c\x00\x20\x04\x32\x04\x3c\x04\x35\x04\ -\x41\x04\x42\x04\x3e\x00\x20\x04\x3a\x04\x3b\x04\x30\x04\x41\x04\ -\x41\x04\x38\x04\x47\x04\x35\x04\x41\x04\x3a\x04\x3e\x04\x33\x04\ -\x3e\x00\x20\x04\x41\x04\x3c\x04\x35\x04\x49\x04\x35\x04\x3d\x04\ -\x38\x04\x4f\x00\x20\x04\x31\x04\x43\x04\x34\x04\x35\x04\x42\x00\ -\x20\x04\x32\x04\x4b\x04\x3f\x04\x3e\x04\x3b\x04\x3d\x04\x4f\x04\ -\x42\x04\x4c\x04\x41\x04\x4f\x00\x20\x04\x41\x04\x3c\x04\x35\x04\ -\x49\x04\x35\x04\x3d\x04\x38\x04\x35\x00\x20\x04\x32\x00\x20\x04\ -\x41\x04\x42\x04\x38\x04\x3b\x04\x35\x00\x20\x00\x4f\x00\x43\x00\ -\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x49\x66\x20\x63\x68\ -\x65\x63\x6b\x65\x64\x2c\x20\x61\x6e\x20\x4f\x43\x43\x2d\x73\x74\ -\x79\x6c\x65\x20\x6f\x66\x66\x73\x65\x74\x20\x77\x69\x6c\x6c\x20\ -\x62\x65\x20\x70\x65\x72\x66\x6f\x72\x6d\x65\x64\x20\x69\x6e\x73\ -\x74\x65\x61\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x63\x6c\x61\x73\ -\x73\x69\x63\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x86\x04\x15\x04\x41\x04\x3b\ -\x04\x38\x00\x20\x04\x43\x04\x41\x04\x42\x04\x30\x04\x3d\x04\x3e\ -\x04\x32\x04\x3b\x04\x35\x04\x3d\x00\x2c\x00\x20\x04\x3a\x04\x3e\ -\x04\x3c\x04\x30\x04\x3d\x04\x34\x04\x30\x00\x20\x04\x3d\x04\x35\ -\x00\x20\x04\x31\x04\x43\x04\x34\x04\x35\x04\x42\x00\x20\x04\x37\ -\x04\x30\x04\x32\x04\x35\x04\x40\x04\x48\x04\x35\x04\x3d\x04\x30\ -\x00\x20\x04\x34\x04\x3e\x00\x20\x04\x3d\x04\x30\x04\x36\x04\x30\ -\x04\x42\x04\x38\x04\x4f\x00\x20\x04\x3a\x04\x3d\x04\x3e\x04\x3f\ -\x04\x3a\x04\x38\x00\x20\x04\x41\x04\x3d\x04\x3e\x04\x32\x04\x30\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4c\x49\x66\x20\x63\x68\x65\ -\x63\x6b\x65\x64\x2c\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x77\x69\ -\x6c\x6c\x20\x6e\x6f\x74\x20\x66\x69\x6e\x69\x73\x68\x20\x75\x6e\ -\x74\x69\x6c\x20\x79\x6f\x75\x20\x70\x72\x65\x73\x73\x20\x74\x68\ -\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x62\x75\x74\x74\x6f\x6e\ -\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x92\x04\x15\x04\x41\x04\x3b\x04\x38\x00\x20\ -\x04\x44\x04\x3b\x04\x30\x04\x36\x04\x3e\x04\x3a\x00\x20\x04\x43\ -\x04\x41\x04\x42\x04\x30\x04\x3d\x04\x3e\x04\x32\x04\x3b\x04\x35\ -\x04\x3d\x00\x2c\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\ -\x04\x42\x04\x4b\x00\x20\x04\x31\x04\x43\x04\x34\x04\x43\x04\x42\ -\x00\x20\x04\x3a\x04\x3e\x04\x3f\x04\x38\x04\x40\x04\x3e\x04\x32\ -\x04\x30\x04\x42\x04\x4c\x04\x41\x04\x4f\x00\x2c\x00\x20\x04\x30\ -\x00\x20\x04\x3d\x04\x35\x00\x20\x04\x3f\x04\x35\x04\x40\x04\x35\ -\x04\x3c\x04\x35\x04\x49\x04\x30\x04\x42\x04\x4c\x04\x41\x04\x4f\ -\x00\x20\x00\x28\x00\x43\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x37\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\ -\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x63\x6f\ -\x70\x69\x65\x64\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\ -\x6d\x6f\x76\x65\x64\x20\x28\x43\x29\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x49\x00\x6e\x00\x73\x00\ -\x74\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x64\x00\x20\x00\x4d\x00\ -\x61\x00\x63\x00\x72\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x10\x49\x6e\x73\x74\x61\x6c\x6c\x65\x64\x20\x4d\x61\x63\ -\x72\x6f\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x3a\x04\x1f\x04\x3e\x04\x41\x04\x3b\x04\x35\x04\x34\x04\ -\x3d\x04\x4f\x04\x4f\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\ -\x30\x00\x20\x04\x31\x04\x4b\x04\x3b\x04\x30\x00\x20\x04\x43\x04\ -\x34\x04\x30\x04\x3b\x04\x35\x04\x3d\x04\x30\x00\x20\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x1c\x4c\x61\x73\x74\x20\x70\x6f\x69\x6e\ -\x74\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x72\x65\x6d\x6f\x76\ -\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x0a\x04\x1b\x04\x38\x04\x3d\x04\x38\x04\x4f\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x04\x26\x04\x32\x04\ -\x35\x04\x42\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x38\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4c\x69\x6e\x65\x20\x43\x6f\ -\x6c\x6f\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x1a\x04\x22\x04\x3e\x04\x3b\x04\x49\x04\x38\x04\x3d\x04\ -\x30\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\x04\x38\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0a\x4c\x69\x6e\x65\x20\x57\x69\x64\x74\ -\x68\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x16\x04\x1f\x04\x35\x04\x40\x04\x35\x04\x3c\x04\x35\x04\x49\x04\ -\x35\x04\x3d\x04\x38\x04\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x04\x4d\x6f\x76\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x0c\x04\x1d\x04\x38\x04\x47\x04\x35\x04\x33\x04\ -\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\x6f\x6e\x65\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x04\ -\x1a\x04\x3e\x04\x3b\x04\x38\x04\x47\x04\x35\x04\x41\x04\x42\x04\ -\x32\x04\x3e\x00\x20\x04\x41\x04\x42\x04\x3e\x04\x40\x04\x3e\x04\ -\x3d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4e\x75\x6d\x62\x65\ -\x72\x20\x6f\x66\x20\x73\x69\x64\x65\x73\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x04\x21\x04\x3c\x04\x35\ -\x04\x49\x04\x35\x04\x3d\x04\x38\x04\x35\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x68\x04\x21\x04\x3c\x04\x35\ -\x04\x49\x04\x35\x04\x3d\x04\x38\x04\x35\x00\x20\x04\x40\x04\x30\ -\x04\x31\x04\x3e\x04\x42\x04\x30\x04\x35\x04\x42\x00\x20\x04\x3e\ -\x04\x34\x04\x3d\x04\x3e\x04\x32\x04\x40\x04\x35\x04\x3c\x04\x35\ -\x04\x3d\x04\x3d\x04\x3e\x00\x20\x04\x42\x04\x3e\x04\x3b\x04\x4c\ -\x04\x3a\x04\x3e\x00\x20\x04\x3d\x04\x30\x00\x20\x04\x3e\x04\x34\ -\x04\x38\x04\x3d\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\ -\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2a\x4f\x66\x66\x73\ -\x65\x74\x20\x6f\x6e\x6c\x79\x20\x77\x6f\x72\x6b\x73\x20\x6f\x6e\ -\x20\x6f\x6e\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x61\x74\x20\x61\ -\x20\x74\x69\x6d\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x1e\x04\x12\x04\x4b\x04\x31\x04\x35\x04\x40\ -\x04\x38\x04\x42\x04\x35\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\ -\x04\x3a\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x50\x69\ -\x63\x6b\x20\x4f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x60\x04\x23\x04\x3a\x04\x30\x04\ -\x36\x04\x38\x04\x42\x04\x35\x00\x20\x04\x33\x04\x40\x04\x30\x04\ -\x3d\x04\x4c\x00\x2c\x00\x20\x04\x47\x04\x42\x04\x3e\x04\x31\x04\ -\x4b\x00\x20\x04\x37\x04\x30\x04\x34\x04\x30\x04\x42\x04\x4c\x00\ -\x20\x04\x3f\x04\x3b\x04\x3e\x04\x41\x04\x3a\x04\x3e\x04\x41\x04\ -\x42\x04\x4c\x00\x20\x04\x40\x04\x38\x04\x41\x04\x3e\x04\x32\x04\ -\x30\x04\x3d\x04\x38\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x28\x50\x69\x63\x6b\x20\x61\x20\x66\x61\x63\x65\x20\x74\ -\x6f\x20\x64\x65\x66\x69\x6e\x65\x20\x74\x68\x65\x20\x64\x72\x61\ -\x77\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x0a\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x04\x12\x04\x4b\x04\ -\x31\x04\x35\x04\x40\x04\x38\x04\x42\x04\x35\x00\x20\x04\x3f\x04\ -\x40\x04\x38\x04\x46\x04\x35\x04\x3b\x00\x3a\x00\x20\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x0f\x50\x69\x63\x6b\x20\x61\x70\x65\x72\ -\x74\x75\x72\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x26\x04\x12\x04\x4b\x04\x31\x04\x35\x04\x40\ -\x04\x38\x04\x42\x04\x35\x00\x20\x04\x31\x04\x30\x04\x37\x04\x43\ -\x00\x20\x04\x43\x04\x33\x04\x3b\x04\x30\x00\x20\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\x62\x61\x73\x65\x20\ -\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x28\x04\x12\x04\x4b\x04\x31\x04\x3e\x04\ -\x40\x00\x20\x04\x31\x04\x30\x04\x37\x04\x3e\x04\x32\x04\x3e\x04\ -\x39\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x38\x00\x20\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\x62\x61\ -\x73\x65\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\x04\x23\x04\x3a\x04\x30\ -\x04\x36\x04\x38\x04\x42\x04\x35\x00\x20\x04\x46\x04\x35\x04\x3d\ -\x04\x42\x04\x40\x04\x30\x04\x3b\x04\x4c\x04\x3d\x04\x43\x04\x4e\ -\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x43\x00\x20\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x13\x50\x69\x63\x6b\x20\x63\x65\x6e\ -\x74\x65\x72\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x04\x12\x04\x4b\x04\ -\x31\x04\x35\x04\x40\x04\x38\x04\x42\x04\x35\x00\x20\x04\x40\x04\ -\x30\x04\x41\x04\x41\x04\x42\x04\x3e\x04\x4f\x04\x3d\x04\x38\x04\ -\x35\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x50\x69\x63\ -\x6b\x20\x64\x69\x73\x74\x61\x6e\x63\x65\x3a\x0a\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\x04\x12\x04\x4b\ -\x04\x31\x04\x35\x04\x40\x04\x38\x04\x42\x04\x35\x00\x20\x04\x3a\ -\x04\x3e\x04\x3d\x04\x35\x04\x47\x04\x3d\x04\x43\x04\x4e\x00\x20\ -\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x43\x00\x3a\x00\x20\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x10\x50\x69\x63\x6b\x20\x65\x6e\x64\ -\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x2a\x04\x23\x04\x3a\x04\x30\x04\x36\ -\x04\x38\x04\x42\x04\x35\x00\x20\x04\x3f\x04\x35\x04\x40\x04\x32\ -\x04\x43\x04\x4e\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x43\ -\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\x6b\ -\x20\x66\x69\x72\x73\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x04\x12\ -\x04\x4b\x04\x31\x04\x35\x04\x40\x04\x38\x04\x42\x04\x35\x00\x20\ -\x04\x3c\x04\x35\x04\x41\x04\x42\x04\x3e\x04\x3f\x04\x3e\x04\x3b\ -\x04\x3e\x04\x36\x04\x35\x04\x3d\x04\x38\x04\x35\x00\x20\x04\x42\ -\x04\x3e\x04\x47\x04\x3a\x04\x38\x00\x3a\x00\x20\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x6c\x6f\x63\x61\x74\ -\x69\x6f\x6e\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x8e\x04\x23\x04\x3a\x04\ -\x30\x04\x36\x04\x38\x04\x42\x04\x35\x00\x20\x04\x41\x04\x3b\x04\ -\x35\x04\x34\x04\x43\x04\x4e\x04\x49\x04\x43\x04\x4e\x00\x20\x04\ -\x42\x04\x3e\x04\x47\x04\x3a\x04\x43\x00\x2c\x00\x20\x04\x3d\x04\ -\x30\x04\x36\x04\x3c\x04\x38\x04\x42\x04\x35\x00\x20\x00\x28\x00\ -\x46\x00\x29\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x37\x04\ -\x30\x04\x32\x04\x35\x04\x40\x04\x48\x04\x35\x04\x3d\x04\x38\x04\ -\x4f\x00\x20\x04\x38\x04\x3b\x04\x38\x00\x20\x00\x28\x00\x43\x00\ -\x29\x00\x20\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x3e\x04\x42\x04\ -\x3c\x04\x35\x04\x3d\x04\x4b\x00\x20\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x29\x50\x69\x63\x6b\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\ -\x6e\x74\x2c\x20\x6f\x72\x20\x28\x46\x29\x69\x6e\x69\x73\x68\x20\ -\x6f\x72\x20\x28\x43\x29\x6c\x6f\x73\x65\x3a\x0a\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x04\x23\x04\x3a\ -\x04\x30\x04\x36\x04\x38\x04\x42\x04\x35\x00\x20\x04\x41\x04\x3b\ -\x04\x35\x04\x34\x04\x43\x04\x4e\x04\x49\x04\x43\x04\x4e\x00\x20\ -\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x43\x00\x20\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\x6e\x65\x78\x74\x20\ -\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x3c\x04\x23\x04\x3a\x04\x30\x04\x36\x04\ -\x38\x04\x42\x04\x35\x00\x20\x04\x3f\x04\x40\x04\x3e\x04\x42\x04\ -\x38\x04\x32\x04\x3e\x04\x3f\x04\x3e\x04\x3b\x04\x3e\x04\x36\x04\ -\x3d\x04\x43\x04\x4e\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\ -\x43\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\ -\x6b\x20\x6f\x70\x70\x6f\x73\x69\x74\x65\x20\x70\x6f\x69\x6e\x74\ -\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x1e\x04\x23\x04\x3a\x04\x30\x04\x36\x04\x38\x04\x42\x04\x35\ -\x00\x20\x04\x40\x04\x30\x04\x34\x04\x38\x04\x43\x04\x41\x00\x20\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x50\x69\x63\x6b\x20\x72\ -\x61\x64\x69\x75\x73\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x2e\x04\x12\x04\x4b\x04\x31\x04\x35\x04\ -\x40\x04\x38\x04\x42\x04\x35\x00\x20\x04\x43\x04\x33\x04\x3e\x04\ -\x3b\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\x3e\x04\x40\x04\x3e\x04\ -\x42\x04\x30\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x50\ -\x69\x63\x6b\x20\x72\x6f\x74\x61\x74\x69\x6f\x6e\x20\x61\x6e\x67\ -\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x30\x04\x12\x04\x4b\x04\x31\x04\x35\x04\x40\x04\x38\ -\x04\x42\x04\x35\x00\x20\x04\x46\x04\x35\x04\x3d\x04\x42\x04\x40\ -\x00\x20\x04\x32\x04\x40\x04\x30\x04\x49\x04\x35\x04\x3d\x04\x38\ -\x04\x4f\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x50\x69\ -\x63\x6b\x20\x72\x6f\x74\x61\x74\x69\x6f\x6e\x20\x63\x65\x6e\x74\ -\x65\x72\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x4c\x04\x12\x04\x4b\x04\x31\x04\x35\x04\x40\x04\x38\ -\x04\x42\x04\x35\x00\x20\x04\x3a\x04\x3e\x04\x4d\x04\x44\x04\x44\ -\x04\x38\x04\x46\x04\x38\x04\x35\x04\x3d\x04\x42\x00\x20\x04\x3c\ -\x04\x30\x04\x41\x04\x48\x04\x42\x04\x30\x04\x31\x04\x38\x04\x40\ -\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\x38\x04\x4f\x00\x3a\x00\x20\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x50\x69\x63\x6b\x20\x73\ -\x63\x61\x6c\x65\x20\x66\x61\x63\x74\x6f\x72\x3a\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x04\x23\x04\ -\x3a\x04\x30\x04\x36\x04\x38\x04\x42\x04\x35\x00\x20\x04\x3d\x04\ -\x30\x04\x47\x04\x30\x04\x3b\x04\x4c\x04\x3d\x04\x4b\x04\x39\x00\ -\x20\x04\x43\x04\x33\x04\x3e\x04\x3b\x00\x20\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x12\x50\x69\x63\x6b\x20\x73\x74\x61\x72\x74\x20\ -\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x30\x04\x23\x04\x3a\x04\x30\x04\x36\x04\ -\x38\x04\x42\x04\x35\x00\x20\x04\x3d\x04\x30\x04\x47\x04\x30\x04\ -\x3b\x04\x4c\x04\x3d\x04\x43\x04\x4e\x00\x20\x04\x42\x04\x3e\x04\ -\x47\x04\x3a\x04\x43\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ -\x12\x50\x69\x63\x6b\x20\x73\x74\x61\x72\x74\x20\x70\x6f\x69\x6e\ -\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x0a\x04\x22\x04\x3e\x04\x47\x04\x3a\x04\x30\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x05\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x04\x20\x04\x30\ -\x04\x34\x04\x38\x04\x43\x04\x41\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x06\x52\x61\x64\x69\x75\x73\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x22\x04\x20\x04\x30\x04\x34\x04\x38\ -\x04\x43\x04\x41\x00\x20\x04\x3e\x04\x3a\x04\x40\x04\x43\x04\x36\ -\x04\x3d\x04\x3e\x04\x41\x04\x42\x04\x38\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x10\x52\x61\x64\x69\x75\x73\x20\x6f\x66\x20\x43\x69\ -\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x4a\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\ -\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\x00\x20\ -\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x65\ -\x00\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\x74\ -\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x25\x52\x65\x6d\x6f\x76\x65\x20\x70\ -\x6f\x69\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x63\ -\x75\x72\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x04\x1f\x04\ -\x3e\x04\x32\x04\x35\x04\x40\x04\x3d\x04\x43\x04\x42\x04\x4c\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x6f\x74\x61\x74\x65\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x04\ -\x1c\x04\x30\x04\x41\x04\x48\x04\x42\x04\x30\x04\x31\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x04\x12\x04\x4b\ -\x04\x31\x04\x35\x04\x40\x04\x38\x04\x42\x04\x35\x00\x20\x04\x3f\ -\x04\x3b\x04\x3e\x04\x41\x04\x3a\x04\x3e\x04\x41\x04\x42\x04\x4c\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x65\x6c\x65\x63\x74\ -\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x2a\x04\x12\x04\x4b\x04\x31\x04\x35\x04\x40\ -\x04\x38\x04\x42\x04\x35\x00\x20\x04\x3f\x04\x3b\x04\x3e\x04\x41\ -\x04\x3a\x04\x3e\x04\x41\x04\x42\x04\x4c\x00\x20\x00\x58\x00\x59\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\ -\x20\x58\x59\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\ -\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x04\x12\x04\x4b\x04\x31\x04\ -\x35\x04\x40\x04\x38\x04\x42\x04\x35\x00\x20\x04\x3f\x04\x3b\x04\ -\x3e\x04\x41\x04\x3a\x04\x3e\x04\x41\x04\x42\x04\x4c\x00\x20\x00\ -\x58\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\ -\x65\x63\x74\x20\x58\x5a\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x04\x12\x04\x4b\ -\x04\x31\x04\x35\x04\x40\x04\x38\x04\x42\x04\x35\x00\x20\x04\x3f\ -\x04\x3b\x04\x3e\x04\x41\x04\x3a\x04\x3e\x04\x41\x04\x42\x04\x4c\ -\x00\x20\x00\x59\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\ -\x53\x65\x6c\x65\x63\x74\x20\x59\x5a\x20\x70\x6c\x61\x6e\x65\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x04\ -\x12\x04\x4b\x04\x31\x04\x35\x04\x40\x04\x38\x04\x42\x04\x35\x00\ -\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x00\x20\x04\ -\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\x35\x04\x40\x04\x35\x04\ -\x3c\x04\x35\x04\x49\x04\x35\x04\x3d\x04\x38\x04\x4f\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x19\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\ -\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x6d\x6f\x76\x65\x0a\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\ -\x04\x12\x04\x4b\x04\x34\x04\x35\x04\x3b\x04\x38\x04\x42\x04\x35\ -\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x00\x20\ -\x04\x34\x04\x3b\x04\x4f\x00\x20\x04\x41\x04\x3c\x04\x35\x04\x49\ -\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x1b\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\ -\x6a\x65\x63\x74\x20\x74\x6f\x20\x6f\x66\x66\x73\x65\x74\x0a\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x04\ -\x12\x04\x4b\x04\x34\x04\x35\x04\x3b\x04\x38\x04\x42\x04\x35\x00\ -\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x00\x20\x04\ -\x34\x04\x3b\x04\x4f\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\x3e\x04\ -\x40\x04\x3e\x04\x42\x04\x30\x00\x20\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x1b\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\ -\x65\x63\x74\x20\x74\x6f\x20\x72\x6f\x74\x61\x74\x65\x0a\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x48\x04\x12\ -\x04\x4b\x04\x31\x04\x35\x04\x40\x04\x38\x04\x42\x04\x35\x00\x20\ -\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x00\x20\x04\x34\ -\x04\x3b\x04\x4f\x00\x20\x04\x3c\x04\x30\x04\x41\x04\x48\x04\x42\ -\x04\x30\x04\x31\x04\x38\x04\x40\x04\x3e\x04\x32\x04\x30\x04\x3d\ -\x04\x38\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\ -\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\ -\x20\x74\x6f\x20\x73\x63\x61\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4c\x04\x12\x04\x4b\x04\x31\ -\x04\x35\x04\x40\x04\x38\x04\x42\x04\x35\x00\x20\x04\x3e\x04\x31\ -\x04\x4a\x04\x35\x04\x3a\x04\x42\x00\x20\x04\x34\x04\x3b\x04\x4f\ -\x00\x20\x04\x3e\x04\x31\x04\x40\x04\x35\x04\x37\x04\x3a\x04\x38\ -\x00\x2f\x04\x3f\x04\x40\x04\x3e\x04\x34\x04\x3b\x04\x35\x04\x3d\ -\x04\x38\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\ -\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\ -\x20\x74\x6f\x20\x74\x72\x69\x6d\x2f\x65\x78\x74\x65\x6e\x64\x0a\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\ -\x04\x12\x04\x4b\x04\x31\x04\x3e\x04\x40\x00\x20\x04\x3e\x04\x31\ -\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x30\x00\x20\x04\x34\x04\x3b\ -\x04\x4f\x00\x20\x04\x3e\x04\x31\x04\x3d\x04\x3e\x04\x32\x04\x3b\ -\x04\x35\x04\x3d\x04\x38\x04\x4f\x00\x20\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x1c\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\ -\x6a\x65\x63\x74\x20\x74\x6f\x20\x75\x70\x67\x72\x61\x64\x65\x0a\ -\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x64\ -\x04\x12\x04\x4b\x04\x31\x04\x35\x04\x40\x04\x38\x04\x42\x04\x35\ -\x00\x20\x04\x3f\x04\x3b\x04\x3e\x04\x41\x04\x3a\x04\x3e\x04\x41\ -\x04\x42\x04\x4c\x00\x2c\x00\x20\x04\x3f\x04\x35\x04\x40\x04\x3f\ -\x04\x35\x04\x3d\x04\x34\x04\x38\x04\x3a\x04\x43\x04\x3b\x04\x4f\ -\x04\x40\x04\x3d\x04\x43\x04\x4e\x00\x20\x04\x42\x04\x35\x04\x3a\ -\x04\x43\x04\x49\x04\x35\x04\x3c\x04\x43\x00\x20\x04\x32\x04\x38\ -\x04\x34\x04\x43\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x53\x65\ -\x6c\x65\x63\x74\x20\x70\x6c\x61\x6e\x65\x20\x70\x65\x72\x70\x65\ -\x6e\x64\x69\x63\x75\x6c\x61\x72\x20\x74\x6f\x20\x74\x68\x65\x20\ -\x63\x75\x72\x72\x65\x6e\x74\x20\x76\x69\x65\x77\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\x04\x1f\x04\x40\ -\x04\x3e\x04\x38\x04\x37\x04\x3e\x04\x48\x04\x3b\x04\x3e\x00\x20\ -\x04\x37\x04\x30\x04\x3a\x04\x40\x04\x4b\x04\x42\x04\x38\x04\x35\ -\x00\x20\x04\x41\x04\x3f\x04\x3b\x04\x30\x04\x39\x04\x3d\x04\x30\ -\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x53\x70\x6c\x69\ -\x6e\x65\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x63\x6c\x6f\x73\ -\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x16\x00\x53\x00\x74\x00\x61\x00\x72\x00\x74\x00\x20\x00\ -\x41\x00\x6e\x00\x67\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x0b\x53\x74\x61\x72\x74\x20\x41\x6e\x67\x6c\x65\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\x04\x2d\ -\x04\x42\x04\x3e\x04\x42\x00\x20\x04\x42\x04\x38\x04\x3f\x00\x20\ -\x04\x3e\x04\x31\x04\x4a\x04\x35\x04\x3a\x04\x42\x04\x30\x00\x20\ -\x04\x3d\x04\x35\x00\x20\x04\x40\x04\x35\x04\x34\x04\x30\x04\x3a\ -\x04\x42\x04\x38\x04\x40\x04\x43\x04\x35\x04\x42\x04\x41\x04\x4f\ -\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x54\x68\x69\x73\ -\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x20\x69\x73\x20\ -\x6e\x6f\x74\x20\x65\x64\x69\x74\x61\x62\x6c\x65\x0a\x07\x00\x00\ -\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x04\x1f\x04\ -\x35\x04\x40\x04\x35\x04\x3a\x04\x3b\x04\x4e\x04\x47\x04\x35\x04\ -\x3d\x04\x38\x04\x35\x00\x20\x04\x40\x04\x35\x04\x36\x04\x38\x04\ -\x3c\x04\x30\x00\x20\x04\x3a\x04\x3e\x04\x3d\x04\x41\x04\x42\x04\ -\x40\x04\x43\x04\x38\x04\x40\x04\x3e\x04\x32\x04\x30\x04\x3d\x04\ -\x38\x04\x4f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x54\x6f\x67\ -\x67\x6c\x65\x73\x20\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\ -\x6e\x20\x4d\x6f\x64\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x08\x00\x54\x00\x72\x00\x69\x00\x6d\x08\x00\ -\x00\x00\x00\x06\x00\x00\x00\x04\x54\x72\x69\x6d\x07\x00\x00\x00\ -\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4a\x04\x1e\x04\x42\ -\x04\x3c\x04\x35\x04\x3d\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x3f\ -\x04\x3e\x04\x41\x04\x3b\x04\x35\x04\x34\x04\x3d\x04\x38\x04\x39\ -\x00\x20\x04\x41\x04\x35\x04\x33\x04\x3c\x04\x35\x04\x3d\x04\x42\ -\x00\x20\x00\x28\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x20\x00\x2b\ -\x00\x20\x00\x5a\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\ -\x55\x6e\x64\x6f\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x73\x65\ -\x67\x6d\x65\x6e\x74\x20\x28\x43\x54\x52\x4c\x2b\x5a\x29\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x06\x04\x12\ -\x04\x38\x04\x34\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x56\x69\ -\x65\x77\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ -\x00\x9e\x04\x21\x04\x42\x04\x38\x04\x40\x04\x30\x04\x35\x04\x42\ -\x00\x20\x04\x41\x04\x43\x04\x49\x04\x35\x04\x41\x04\x42\x04\x32\ -\x04\x43\x04\x4e\x04\x49\x04\x38\x04\x35\x00\x20\x04\x41\x04\x35\ -\x04\x33\x04\x3c\x04\x35\x04\x3d\x04\x42\x04\x4b\x00\x20\x04\x4d\ -\x04\x42\x04\x3e\x04\x39\x00\x20\x04\x3b\x04\x38\x04\x3d\x04\x38\ -\x04\x38\x00\x20\x04\x38\x00\x20\x04\x3d\x04\x30\x04\x47\x04\x38\ -\x04\x3d\x04\x30\x04\x35\x04\x42\x00\x20\x04\x41\x04\x3d\x04\x3e\ -\x04\x32\x04\x30\x00\x20\x04\x41\x00\x20\x04\x3f\x04\x3e\x04\x41\ -\x04\x3b\x04\x35\x04\x34\x04\x3d\x04\x35\x04\x39\x00\x20\x04\x42\ -\x04\x3e\x04\x47\x04\x3a\x04\x38\x00\x20\x00\x28\x00\x57\x00\x29\ -\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x57\x69\x70\x65\x73\x20\ -\x74\x68\x65\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x73\x65\x67\ -\x6d\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6c\x69\ -\x6e\x65\x20\x61\x6e\x64\x20\x73\x74\x61\x72\x74\x73\x20\x61\x67\ -\x61\x69\x6e\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x6c\x61\x73\ -\x74\x20\x70\x6f\x69\x6e\x74\x20\x28\x57\x29\x07\x00\x00\x00\x05\ -\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x04\x1f\x04\x40\x04\ -\x3e\x04\x32\x04\x3e\x04\x34\x00\x20\x04\x31\x04\x4b\x04\x3b\x00\ -\x20\x04\x37\x04\x30\x04\x3a\x04\x40\x04\x4b\x04\x42\x00\x20\x08\ -\x00\x00\x00\x00\x06\x00\x00\x00\x15\x57\x69\x72\x65\x20\x68\x61\ -\x73\x20\x62\x65\x65\x6e\x20\x63\x6c\x6f\x73\x65\x64\x0a\x07\x00\ -\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x57\ -\x00\x69\x00\x72\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\ -\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x57\x69\x72\x65\ -\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ -\x01\x03\x00\x00\x00\x02\x00\x58\x08\x00\x00\x00\x00\x06\x00\x00\ -\x00\x01\x58\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ -\x00\x00\x30\x04\x30\x04\x31\x04\x41\x04\x46\x04\x38\x04\x41\x04\ -\x41\x04\x30\x00\x20\x04\x41\x04\x3b\x04\x35\x04\x34\x04\x43\x04\ -\x4e\x04\x49\x04\x35\x04\x39\x00\x20\x04\x42\x04\x3e\x04\x47\x04\ -\x3a\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x58\x20\x63\ -\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\ -\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x04\x00\x58\x00\x59\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x02\x58\x59\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x04\x00\x58\x00\x5a\x08\x00\x00\x00\x00\ -\x06\x00\x00\x00\x02\x58\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ -\x74\x01\x03\x00\x00\x00\x02\x00\x59\x08\x00\x00\x00\x00\x06\x00\ -\x00\x00\x01\x59\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ -\x00\x00\x00\x30\x04\x3e\x04\x40\x04\x34\x04\x38\x04\x3d\x04\x30\ -\x04\x42\x04\x30\x00\x20\x04\x41\x04\x3b\x04\x35\x04\x34\x04\x43\ -\x04\x4e\x04\x49\x04\x35\x04\x39\x00\x20\x04\x42\x04\x3e\x04\x47\ -\x04\x3a\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x59\x20\ -\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\ -\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x04\x00\x59\x00\x5a\x08\x00\x00\x00\ -\x00\x06\x00\x00\x00\x02\x59\x5a\x07\x00\x00\x00\x05\x64\x72\x61\ -\x66\x74\x01\x03\x00\x00\x00\x02\x00\x5a\x08\x00\x00\x00\x00\x06\ -\x00\x00\x00\x01\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x03\x00\x00\x00\x38\x00\x5a\x00\x20\x04\x3a\x04\x3e\x04\x3e\x04\ -\x40\x04\x34\x04\x38\x04\x3d\x04\x30\x04\x42\x04\x4b\x00\x20\x04\ -\x41\x04\x3b\x04\x35\x04\x34\x04\x43\x04\x4e\x04\x49\x04\x35\x04\ -\x39\x00\x20\x04\x42\x04\x3e\x04\x47\x04\x3a\x04\x38\x08\x00\x00\ -\x00\x00\x06\x00\x00\x00\x1a\x5a\x20\x63\x6f\x6f\x72\x64\x69\x6e\ -\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\ -\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ -\x20\x04\x22\x04\x35\x04\x3a\x04\x43\x04\x49\x04\x30\x04\x4f\x00\ -\x20\x04\x3a\x04\x3e\x04\x3c\x04\x30\x04\x3d\x04\x34\x04\x30\x00\ -\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x61\x63\x74\x69\x76\ -\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x3a\x07\x00\x00\x00\x05\x64\ -\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x04\x1f\x04\x30\x04\x3d\ -\x04\x35\x04\x3b\x04\x4c\x00\x20\x04\x1a\x04\x3e\x04\x3c\x04\x30\ -\x04\x3d\x04\x34\x00\x20\x04\x3f\x04\x40\x04\x3e\x04\x35\x04\x3a\ -\x04\x42\x04\x30\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x64\x72\ -\x61\x66\x74\x20\x43\x6f\x6d\x6d\x61\x6e\x64\x20\x42\x61\x72\x07\ -\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ -\x00\x00\x32\x14\ -\x00\ -\x00\xac\xed\x78\x9c\xcd\x7d\x0b\x78\x1c\xc5\x99\x60\xe9\x2d\x8d\ -\x9e\x18\x63\x8c\x6d\x4c\x5b\x36\x42\x36\xb2\x6c\x6c\x8c\xb1\xc2\ -\x23\xb2\x64\xd9\x06\xcb\x76\x2c\xe1\x57\x08\xa1\x35\xd3\x23\xb5\ -\x35\x33\x3d\x74\xf7\xe8\x01\xc4\xb0\x40\x80\xf0\x30\x10\xde\x21\ -\x61\x09\x09\x8f\x70\x9b\x6c\xb2\x79\x6c\x92\x0b\x64\x49\x80\x4b\ -\xc8\xe5\xc2\x97\x65\xd9\xc0\x6d\x12\x48\xec\x5c\x2e\x21\xc0\x71\ -\xc1\x7b\x79\xb0\xbb\x7f\xfd\x55\xd5\x55\xfd\x1a\xb5\x9c\xcd\xde\ -\x7e\xfe\x60\x46\x3d\x5d\x55\x7f\xfd\xf5\xbf\xff\xbf\xaa\xce\xf9\ -\x6a\x66\xfe\xf3\x6f\x7e\xfc\xee\xef\x2f\x59\xf4\xcd\x4b\x3f\xf9\ -\xe4\x8f\x37\x12\xd2\x70\x1f\x21\x64\x2f\x21\x0f\x3d\x03\x9f\xfb\ -\x08\xf9\xe4\x87\xe1\x73\x3f\x21\x0f\x77\x10\x52\xf3\x32\xfc\xbd\ -\x09\x3e\x5f\x81\x4f\x03\x3e\x7f\x05\xcf\x6b\x09\xa9\x9b\x22\xc4\ -\x82\xd7\xb6\x5c\x4b\x48\xd5\x0e\xf6\x59\x3a\x93\x90\x31\xf8\xcf\ -\x1c\x27\xd5\x8f\x4e\x13\x32\x75\x07\xa9\xfe\xaf\xd5\x84\x34\xfe\ -\x96\x7d\x5e\x79\x98\xd4\xac\x86\xbe\x5a\x86\xd8\xe7\xa1\x27\x49\ -\xcd\xc0\xb3\xf0\xf7\xd5\xec\xf3\x36\x78\xbe\x1b\x9e\x6f\x6e\x66\ -\x9f\xb7\x7d\x88\xd4\xfc\xd5\x6f\x09\x39\xe9\x57\xa4\xe6\xab\xef\ -\x12\xf2\xe0\x01\x52\xf3\x83\xff\x46\xc8\x5f\x36\x91\x9a\x57\x01\ -\xc6\xa5\x8f\x91\xda\xff\x72\x0b\x21\x07\x5e\x23\x6d\xd7\x6d\x25\ -\x64\xd7\x34\x99\x53\xf3\x75\x42\x1e\xa8\x24\xf3\x9e\x03\x78\xaf\ -\xdd\x49\x56\x50\x38\x2e\xfb\x28\x39\xfd\x99\xbf\x26\xc4\xce\x91\ -\xd3\x5f\x85\x39\xd8\xf7\x92\x0d\x3f\x5d\x4b\xc8\xba\x4e\x72\xee\ -\x27\x4f\x22\x64\xe2\x12\x72\xde\x9d\x00\xff\x59\x97\x90\x2d\xb7\ -\x5d\x49\x48\xc7\x45\xe4\xc2\xec\x3a\x42\xd6\x6c\x83\xcf\xf5\xf0\ -\x79\x07\x7c\x6e\x80\xcf\x97\xc8\x85\x37\xbc\x08\xf3\x38\x81\xec\ -\xb9\x74\x98\x90\x7b\xcf\x20\x7b\xdf\x05\xf8\x2e\xc8\x91\x7d\xf7\ -\x9d\x4a\xc8\xdc\xd7\xd9\xe7\x7d\xd7\x92\x03\x7b\x3f\x46\xc8\x1d\ -\x1f\x21\xd3\x6f\xc2\xfb\xd6\xd9\xe4\xe0\x55\x2d\x84\x64\x3b\xc8\ -\x4d\x4b\xef\x26\x64\xf9\x11\xf8\xbc\x97\x90\x15\xab\xe0\xf3\x7e\ -\xf8\x9c\x26\x77\x7c\xe3\x7f\x03\x1e\xfe\x9a\x3c\xba\xfe\x7c\x42\ -\x3a\xbf\x4e\x9e\xb8\x1a\xfa\xb9\xe2\x22\xf2\xdc\xcf\x0b\x84\x9c\ -\x5a\x41\xbe\xf7\xf8\x5c\x42\x0a\xf3\xc8\x1f\xc9\xf3\x84\xdc\xd4\ -\x5f\xb1\xe4\x25\x80\xe7\x7d\x63\x15\xed\x5f\xfa\x1d\x21\x27\x2c\ -\xac\x58\x75\xe8\x20\x21\x17\x7f\xae\x62\xcb\xbf\x7c\x0a\xe6\xf1\ -\x62\xc5\xd0\xff\x7d\x82\x90\xab\xb7\x54\xec\x9e\x77\x01\x21\x1f\ -\x79\xb6\x62\xb4\xf9\x26\x42\x3e\xdc\x5c\x61\x1e\x77\x39\x21\x77\ -\x6f\xab\xb8\x66\x43\x8a\x90\x8f\x9e\x5a\x71\xf3\x58\x09\xf0\x5a\ -\x57\xf1\xc9\xab\xd2\x84\x2c\x1a\xad\x78\xfa\xe5\x9f\x10\x32\xfc\ -\x70\xc5\x0f\x6f\xfb\x7b\x42\x2e\x5c\x58\xf1\xd3\xe3\xfa\x60\xcd\ -\x9f\xaa\xf8\xd9\x6f\x81\x1e\x3e\x76\x6f\xc5\x1f\x3f\x07\xcf\xad\ -\xe9\xca\x9a\xa7\x00\xbe\xcb\x9b\x2a\x07\xf6\x42\x3f\x77\x3d\x5a\ -\x69\x7c\x76\x04\xe8\xe2\xad\xca\x42\xdd\xcf\x08\x19\x1c\xad\x9c\ -\x58\x76\x3c\x21\x3d\xef\x56\x7e\xe8\xd5\x8b\x08\xd9\x5e\x51\x79\ -\xd7\xc0\x02\xc0\xc7\x2b\x95\x8f\x75\x9d\x40\x48\xf5\x70\xe5\x13\ -\x67\x01\x1e\x2e\x3b\xa3\xf2\x0b\x6f\xc1\x7a\x5d\xff\x4a\xe5\x37\ -\x9f\x38\x44\xc8\x06\xb7\xf2\xef\xb2\x6f\x03\x29\x3e\x53\xf9\x9d\ -\xf3\xdf\x21\x24\xfd\xbb\xca\x97\x3f\xfd\x35\xa0\xa7\xc5\x95\xff\ -\x73\xc1\x5d\x40\x73\x7a\x55\xc5\x75\x40\xa3\x37\xd7\x54\xcd\xb9\ -\xf7\x00\xcc\xab\xba\x6a\xc1\x5c\xc0\xcb\xea\xda\xaa\x05\xf3\x80\ -\x6e\xb7\x7f\xb2\x6a\xd5\x02\x78\xee\xcc\xad\x3a\xf8\xfc\x97\x09\ -\xd9\x78\x53\xd5\x8d\xa7\x00\xfe\xfb\x2e\xab\x7a\x70\xef\x23\x40\ -\xac\x17\x54\x7d\xf1\xc1\xdf\xc3\xbc\x9f\xac\xfa\xf2\x77\x60\x7d\ -\xee\x7c\xb7\xea\xc9\x17\x0f\xc3\xfb\x4f\x57\x3d\x73\x0e\x8c\x37\ -\xb1\xac\xea\xd9\x7f\xb8\x04\xf8\xe1\xfe\xaa\xef\x35\x1f\x81\x75\ -\xfc\xab\xaa\x7f\x6a\x82\xf6\x97\xbd\x51\xf5\x76\x11\xe8\xa1\xeb\ -\x1f\xab\xde\x7e\xf2\x52\x42\xe6\x8d\x57\xfd\xa1\x15\xe8\x79\xd5\ -\x83\xd5\x4b\x96\x2e\x25\x64\xc9\xc9\xd5\xbb\x6b\xef\x24\x64\xe5\ -\x77\xab\x2f\x05\xda\x20\xf7\x5e\x57\x3d\xfd\x26\xf4\x7f\xfd\x8e\ -\xea\x6b\x26\x81\x3e\x06\xbf\x5c\x7d\xc3\xef\x1e\x24\xe4\x96\xc5\ -\xd5\xb7\xbc\xf4\x39\x42\x46\x56\x57\x3f\x74\x13\xe0\xaf\xe6\x66\ -\xf6\x39\x79\x6b\xf5\xa7\xcf\x00\xfc\x1e\xba\xb0\xfa\xf1\x5f\x03\ -\x5d\xaf\x5d\x58\xfd\x5a\xe1\xe7\x84\xa4\x4e\xaa\x3e\xdc\x0a\xeb\ -\x53\xf9\x9b\xea\x5f\xf7\x7e\x1b\xfa\xdf\x56\xfd\xe6\xcb\x8f\x13\ -\xb2\xf5\x17\x35\x55\xd7\x02\xfe\xc6\x4f\xa9\xa9\xf9\x1e\xe0\xb9\ -\xf7\x92\x9a\xd6\xb7\x5d\x42\x6e\xff\x9b\x9a\x85\x6d\x80\x87\x4d\ -\xf3\x6b\x56\x1c\x01\xfa\xba\xf0\xb5\x9a\xfe\xf7\x7c\x90\x90\xfc\ -\xa2\x9a\x8b\x5f\x06\xbc\xb5\x11\xf6\x79\xdb\xe1\x9a\xf4\x51\x80\ -\xf7\x82\xcf\xd6\x18\x6f\x00\x3f\x1c\xfc\x51\xcd\x0d\x9f\x87\xfe\ -\xef\xdd\x5f\x73\xcf\xe3\x80\xa7\xe3\x6f\x67\x9f\xf7\xed\xa9\xf9\ -\xec\x85\xf0\x7c\xe3\xe1\x9a\xaf\x55\x7d\x87\x90\x93\x5f\xa8\x79\ -\xb2\x09\xd6\xeb\xea\x7f\xad\x79\xf2\x10\xd0\xc9\xa5\x0f\xd5\x3c\ -\xb5\x1b\xfa\xd9\x7a\x79\xcd\xb3\x3b\x01\x1f\x4d\xa7\xd5\x1c\x39\ -\xd4\x4d\xc8\x71\x76\xcd\x1f\xfe\x09\xf8\xa9\xf7\xa9\xda\xc5\xbf\ -\x80\x75\xf8\xc4\x85\xb5\xcb\xdf\xf8\x0c\xcc\xf3\x6b\xb5\x6b\x7e\ -\x0e\xf3\xba\xf2\xbc\xda\x3d\x27\x01\x5e\x08\xa9\xdd\xff\x26\xe0\ -\xeb\xb2\x0f\xd4\xbe\xff\x87\xf0\xde\xb9\xef\xd4\xe6\x6e\x04\x3a\ -\x38\xdf\xaa\x75\x4f\x06\xba\x19\xae\xaf\xbd\xf9\x9e\x7e\xe8\xf7\ -\xb5\xda\x7b\xf7\x7e\x97\x90\x1d\xed\xb5\xdf\xb8\x1a\xe0\x3a\x39\ -\x5f\xfb\xdd\xaf\xd6\x10\xe2\x0e\xd5\xfe\xb2\x66\x3b\xf4\xf2\x7a\ -\xed\x1b\x4f\xec\x21\xe4\xe3\x97\xd6\xbe\xf5\x3d\xc0\xe7\xc2\x7d\ -\xb5\xbf\xff\x57\x0a\x77\x47\xed\x1f\x17\x00\x7d\x9c\x79\x46\xed\ -\x1f\x1f\x02\xfa\xbf\xfd\x37\x75\xf5\xb7\xc3\xba\x9e\xbe\xbb\xae\ -\xf9\x6f\xff\x99\x90\xb3\x1f\xa9\x6b\xb9\xfe\x3c\x78\xff\xa9\xba\ -\x75\x63\xc0\x67\x27\x1e\xac\x5b\xf7\x4b\x58\xb7\xbb\x6f\xae\xeb\ -\xef\x5d\x41\xc8\x55\xdf\xae\xbb\xe0\x14\xe0\x8b\xca\x05\x75\x83\ -\x4e\x3b\xac\xcf\x91\xba\xed\x8f\x02\x7d\x7e\xe8\xfc\xba\xbd\xdf\ -\xfb\x25\xe0\x71\x61\x5d\xfa\x5f\x80\xaf\xe7\x8c\xd7\x5d\xfd\xdc\ -\x17\x41\x7e\xde\x52\x77\xa3\x0d\xeb\x58\x32\xea\x3e\x75\x18\x9e\ -\xb7\x7f\xad\xee\xe9\x3f\xc2\xfa\x74\x1f\xaa\x3f\xed\x4b\x80\xb7\ -\x3b\x1f\xae\x5f\xf3\x0c\xf0\xe5\x3d\xfd\xf5\x67\xb9\x00\xd7\xb2\ -\xaf\xd7\xf7\x7f\x0d\xf0\x74\xe6\x13\xf5\x5b\xbf\xbb\x1a\xe8\xea\ -\x0b\xf5\xfa\x95\xd0\xcf\xe2\xaa\xfa\x87\x9f\x1f\x05\x7a\x1e\xaa\ -\xff\xd4\xab\x20\xa7\xa6\x9e\xac\xff\xc2\x09\x9d\x40\x6f\xeb\xea\ -\xbf\x54\x0d\x78\xbe\xf7\x99\xfa\x17\xd6\x00\xfe\x3e\x34\xa7\xfe\ -\xc5\xef\x9b\xf0\x69\xd5\xbf\xf6\xc0\x53\x84\x2c\xb8\xb9\xfe\xb5\ -\xa7\x81\xbe\xaf\x3a\xa1\xfe\xd7\xb7\x02\x9f\x3f\xf4\x9e\x06\xed\ -\x95\x65\x20\xb7\x1f\x86\xcf\x2f\x01\x7f\xf6\xc1\x27\xd0\xf3\x43\ -\xaf\x35\x0c\xde\x03\x72\xfd\xd4\x1b\x1b\x8c\x57\x00\x2f\xd7\xfc\ -\xb8\x61\xac\x79\x39\x21\xb7\x76\x34\x5c\x76\x2b\xe0\xaf\xf6\xf1\ -\x86\xd2\x52\x80\xcf\xfe\x56\xc3\xc4\x6f\x40\x9e\x1b\x2b\x1a\xae\ -\x7f\x14\xf0\xbd\xf4\x87\x0d\x37\x2f\x85\x79\xdc\x73\x67\xc3\x83\ -\xef\x82\xbc\x31\x0e\x36\x7c\x65\x05\xe0\x67\xed\x9d\x0d\xdf\x5f\ -\x04\xeb\x75\xdf\xe1\x86\x1f\x2e\x01\xfd\xf0\x81\x2f\x37\x1c\x59\ -\x0a\xf3\xdf\xf3\xcd\x86\xd7\x4f\x07\x39\xde\x74\x6f\xc3\x9b\x6b\ -\x41\x2e\xcd\xb7\x1a\xde\x3a\x05\xf0\x5c\x75\x5d\xc3\xbb\x9b\x40\ -\x1e\x7c\xb4\x90\x6a\x78\x1a\xe0\xbc\xeb\x9d\x54\xe7\xc7\x80\x0e\ -\xb7\xb9\xf0\x09\xf3\xde\xf6\x2c\x7c\xc2\xbc\x06\xe7\xa5\x56\x3e\ -\x05\xfc\xb9\xfa\xb2\xd4\xba\xcf\xc0\xbc\x6e\x18\x4e\x9d\x7f\x1a\ -\xd0\xf9\xe5\xf0\x39\x0e\xf0\x5c\x7e\x6b\x6a\xeb\x23\x20\xdf\x3e\ -\x71\x7d\xea\xd2\x57\x81\x8e\x3a\xee\x81\xcf\x13\xe1\xf3\x77\xf0\ -\x09\x72\xfd\xb4\x8b\x53\xc6\x03\x00\xcf\xed\x6d\xa9\xa9\x9a\xab\ -\x09\xa9\x18\x4a\x5d\x75\x1b\x8c\x73\xce\x79\xa9\xfb\xae\x9f\x0f\ -\x72\xf7\xdb\xa9\xfb\x2f\xa6\xeb\xf1\xf3\xd4\xe3\xf3\x80\x9f\x8e\ -\x7f\x5f\xea\x33\x1f\x79\x1d\xe4\xc5\x4b\xa9\xef\x5c\x0c\x7c\xd4\ -\xb6\x36\xf5\xc2\xce\xaf\x02\x7d\x3e\x9d\x7a\xe1\x17\x20\x1f\xe6\ -\x77\xa5\x5e\xfa\x3f\x00\xc7\x95\xd3\xa9\x5f\xdf\x71\x23\x21\x99\ -\xbb\x1b\xeb\xa6\x28\xfe\xce\x6c\x5c\xf8\xaa\x03\xf4\x79\x63\xe3\ -\xb2\x4f\x00\x9e\x77\x5e\xd5\xb8\xec\x59\xa0\xd7\xe3\xbf\xdd\xd8\ -\x71\x10\xf0\x30\x7d\x4d\xe3\xe9\x3b\xa1\xdd\x87\xbf\xd2\xb8\xf2\ -\x8b\x20\xaf\xc7\xae\x6b\x5c\xef\xc0\xfc\xfe\xb2\xbb\xf1\xbd\xef\ -\x05\xfa\xdb\x74\x65\x63\xdf\xf7\x01\xde\xfe\x0b\x1a\xb3\x9d\x3f\ -\x84\x7e\xfb\x1b\x6f\x7c\xb5\x0e\xf4\x66\x5b\xe3\x5d\xfd\xa0\x17\ -\x57\xff\xa8\xf1\x5b\xf7\x83\x5c\xfb\x8b\x2b\x1a\xff\xfe\x34\x90\ -\x1f\xd5\x87\x1a\x5f\x3c\x08\xf2\xa4\x71\x73\xe3\x3b\x6f\x0c\x01\ -\x1d\x3e\xd2\x54\xbb\x13\xf8\xae\xd9\x6e\xaa\x1f\x00\x79\x74\x45\ -\x4b\xd3\x49\xbf\x07\xbd\x72\xb0\xa1\xa9\xf3\x01\xc0\xbf\xbd\xa1\ -\xe9\x8c\x83\x80\xa7\x3b\x2b\x9b\xce\x1e\x04\xfa\xaf\x7b\xa2\xa9\ -\x67\xde\x0b\xa0\x57\x77\x37\xed\xff\x3b\xe0\xeb\xd2\xdb\x4d\x85\ -\x1b\x60\x7e\xed\x57\x36\xdd\xf1\x10\xac\xc7\xc7\x7f\xdb\x74\xcf\ -\xed\x30\xff\xfe\xc7\x9a\x9e\xff\x31\xc0\xfd\xc0\x81\xa6\x97\xde\ -\x9c\x03\x74\xbc\xbe\xe9\x27\xf7\x83\x9e\x1d\x7b\xa1\xe9\xad\x9f\ -\x00\xde\xae\x7b\x7f\xf3\xa2\xa3\x6f\x80\x5c\x5c\xd8\xdc\x93\xa3\ -\xf4\xbd\xad\x79\xd3\xcf\x00\xce\x8f\xb5\x35\xef\xa3\x36\xc3\x15\ -\x1f\x6e\xde\xff\x59\xa0\x5f\xf7\x07\xcd\x97\xfc\x2f\x58\xf7\xd3\ -\xbe\xd9\x9c\x79\x04\xe8\xee\xfd\x3f\x6a\xce\xff\x3f\xa0\xdf\x7a\ -\xb3\x79\xe2\xcb\x1f\x85\xf6\x97\x35\x3f\xf0\x3a\xe0\x6b\xe8\x13\ -\xcd\x8f\xbc\x0c\x72\xfe\xf4\x6f\x34\x3f\xfa\xca\xa7\x09\x19\x78\ -\xa4\xf9\xb9\xe7\x80\x0f\xef\xfe\x45\xf3\xdb\x1b\xa0\xff\x1b\x4f\ -\x6d\x39\xbd\x1a\xd6\x79\xba\xaf\xa5\xeb\x30\x3c\xbf\xff\xb1\x96\ -\xed\xff\x1d\xf0\xd3\xf0\xa3\x16\xeb\x63\x40\x4f\x0f\xbc\xde\x72\ -\xc5\xe5\x5d\x84\x9c\xf1\x4c\xcb\x6d\x07\x40\x6f\x9f\x55\xdd\x72\ -\x87\x01\xf3\x5a\x70\x42\xcb\xf3\xff\x08\x74\x7c\xca\x3b\x2d\x48\ -\xa7\xf7\x9f\x0a\x9f\x40\x07\xf7\x67\x5b\x7e\x75\xa4\x8a\x90\x62\ -\x6d\xcb\x6f\x5e\x83\x75\xd9\x3c\xd8\x5a\x77\x2b\xc8\xa7\xe2\x3d\ -\xad\x27\x5e\x03\x72\x85\xbc\xd3\x7a\xca\xad\x20\x6f\xa6\x2b\x5a\ -\x77\x94\x7a\x80\x7f\x1e\x6b\xfd\xe0\xf3\xff\x00\xfd\x6f\x6a\x2d\ -\x7d\x1e\xf4\xff\xe5\xcf\xb5\x4e\x7e\x1b\xd6\xdb\x7c\xb4\xf5\x23\ -\x8d\xc0\x7f\x9b\x3f\xdb\x7a\xdb\xe3\x8f\x01\x5e\x5b\x5b\xef\x4b\ -\x81\x7e\x7e\xf0\xf6\xd6\x07\x5f\x7f\x08\xe4\xc3\xc3\xad\xdf\xbc\ -\x01\xe8\xff\x50\x45\xeb\xf7\xff\x07\xd0\xd9\xba\x7b\x5a\x7f\xba\ -\x04\xe8\x77\x99\xde\x7a\xb4\x76\x31\x21\xda\x50\xeb\xd1\xe5\xa0\ -\x47\xdd\x0f\xb7\xfe\xf3\x24\xe0\xf5\xda\x17\x5a\xff\xf0\x41\x58\ -\xe7\xe9\xe7\x81\x48\x3e\xf5\x1e\x80\x90\x2c\x26\xdb\xc8\x61\x32\ -\x0a\xff\x34\xe2\x12\x93\xe4\xe0\x9f\x46\x8a\xa4\x44\x0a\x64\x9c\ -\xb8\xf5\x28\x4c\xe1\xbf\x86\xde\x4c\x46\xdb\x69\x99\x05\x17\xe8\ -\x87\xb4\xf4\xdb\x7a\xd6\xfd\x20\x3c\xc3\x47\x15\xb4\xa7\x4b\xbd\ -\x9e\x0c\x62\xfb\x7a\x33\xa0\x2f\xa5\x4f\xf8\x6e\x7a\x4f\x47\xe0\ -\x33\x0b\x7f\x17\xe0\x79\x0e\x3e\x19\x1c\x36\x39\x42\x32\x64\x15\ -\xfc\xea\x40\xbb\x1c\xfe\x6e\x78\xb0\x74\xc2\xb8\x8e\xa6\x6b\x45\ -\x3a\xb6\xe6\x5a\x9a\x5e\xd0\x8c\x29\xd3\x71\xcd\xc2\xa8\x36\x69\ -\xda\xc6\xaa\x11\xa7\x98\x33\x0b\x46\x1c\xa8\x2b\x22\x27\x4d\x81\ -\x1a\x85\xa1\x4b\x30\x64\x11\xbe\x77\xd3\x7f\xde\xa0\xad\x14\x01\ -\x30\xd6\xa8\x6d\x95\x8a\xdd\xdd\xdd\xb4\xef\x36\xaf\xef\x61\x6b\ -\x33\x7d\x8e\xbd\xdb\xb1\x88\xc8\xc0\x13\x8d\xe4\x89\x0e\xcf\xc7\ -\xf1\x57\x9d\x3f\xb3\x60\xaa\x07\xe0\x1b\x45\x0f\x43\x4c\x10\x7d\ -\x51\x88\xf2\xa0\xf5\xa0\x5c\x8d\xa8\x71\xc7\x0c\xcd\x31\x72\x46\ -\xda\x35\x32\x9a\x35\x72\x00\xbe\x74\x3a\xcb\x83\x98\xc2\x99\xc4\ -\x4f\x63\x82\xf4\x22\x22\xe8\x60\x69\x0e\x2c\x9d\x4e\x01\x86\x9c\ -\xc0\xef\x3a\x7c\x67\xe0\xb3\x15\xa2\x13\x18\x81\xe7\x06\x3c\xcd\ -\xe0\xa4\xd2\x64\x0c\x3e\x57\x02\xe0\x87\xe1\xb9\x1f\xdd\xb4\x8f\ -\x1c\xbc\xa7\xfb\xa7\xef\x4d\xe5\xec\xde\x22\x2c\xa2\xe1\x68\xe9\ -\x92\x6d\x1b\xb0\xd0\x74\x45\x61\x79\x33\xee\x18\x4c\x23\xa3\xa5\ -\xad\x9c\x65\xd3\x39\x05\x66\xea\xa8\x53\x82\x2e\xa6\x87\xdc\xe9\ -\x9c\xc1\xd7\x7d\x98\x0f\x7f\x18\x56\xa1\x88\x43\xeb\x88\xf3\x12\ -\x0c\xce\xc0\x72\x18\x88\x1e\x18\xc7\x63\x1f\x5a\x1f\x07\x02\x3b\ -\x8b\x1f\x61\x2e\xe9\x83\xd6\x6c\x75\x73\x30\xa9\x23\x94\x0a\xbc\ -\xbe\xaa\x7a\xed\x34\x6d\xdb\xc0\xdb\xda\x69\x6c\x74\x0d\x19\x82\ -\x06\x3a\x02\x64\x7b\x0b\x9e\x0e\x77\x04\x04\xa9\xc1\x00\xc3\x64\ -\x17\x90\x98\x06\x58\x3d\x8a\xef\xeb\x00\xb2\x8b\xa0\x17\x60\x62\ -\x45\xec\xa7\x0b\xfe\x1e\x22\x17\x92\xad\x64\x00\xde\x0f\xbf\x4b\ -\xc9\x89\x92\xcf\x61\x68\xe3\x10\x5d\x12\x50\x9f\x6d\xe8\x2e\x60\ -\x1d\x28\x45\xb7\xd3\xdd\x5a\xdf\xf0\xae\x6d\x88\xe5\x82\x5e\xec\ -\xd2\x86\xb6\x6c\x1d\x18\xa6\x7f\xa6\xad\x82\xe3\xda\xba\x59\x88\ -\x98\x4f\x1b\xd9\x08\x6b\x1e\xc5\xb9\xf5\x1b\x57\x0e\x79\x9c\xd9\ -\xcc\x5a\x6d\x64\x4f\xb0\xe5\x7d\x91\x98\xc8\xc3\xf2\xe4\x70\x59\ -\x56\x2a\x52\xc4\xc1\x59\xf8\xc6\xf9\x0f\xc0\x4f\x9f\x87\x1f\x2d\ -\x5f\xca\xb9\x66\x31\x67\xac\x64\x72\x68\x64\x25\x13\x3a\xc9\x50\ -\x16\x31\xf9\x26\x95\x76\xbc\x01\x6b\xfb\x4c\x3b\xcd\x48\xae\x89\ -\xb5\x61\x0f\xb0\xc9\x2d\x33\x52\xce\xec\x30\xd2\x0b\x6f\x45\x61\ -\x63\x02\xde\xca\x01\x87\xea\xc8\xc1\x94\xef\x47\x71\x2c\x37\x92\ -\x73\xcf\x95\x38\x4a\x23\xac\x41\x94\xf4\x6e\x1b\x96\x8c\xab\xb9\ -\x7a\x61\x94\xb2\x96\xc2\xbe\xe1\x99\xce\x83\x99\xba\xb8\x1a\xa3\ -\xaa\xbc\xf1\xc6\x4c\xf5\xe5\x2c\xc7\xd0\xb6\x71\xda\x6a\xe5\x1d\ -\xd0\x87\xdb\x04\x82\xcf\x52\xfa\x60\xa2\x39\xc3\x31\x26\xe5\x17\ -\xc5\x89\x05\x14\xa7\xc1\xef\x26\xce\xd5\xf1\xc6\x58\x88\xdd\x31\ -\xf1\x8a\xc2\x68\xc4\xa0\x72\x34\x63\xeb\x93\x85\xd8\x41\x17\x00\ -\x42\x75\x24\x28\x0b\xba\x74\x23\x95\x6b\xd3\x2e\x23\x6f\x4d\x18\ -\x21\xfd\xda\x6f\xe4\xa4\xd2\xca\x61\x47\xb6\xaf\xab\xb0\x66\xcd\ -\xa2\xee\x2c\x24\xd2\xaf\x1a\x17\x7a\x06\xef\x35\x8a\x63\x57\x33\ -\xd0\xa4\xba\xcd\xda\x56\x3e\xa4\x70\x35\x90\xc4\x61\x9d\xeb\x03\ -\xff\xa9\x48\x52\xcd\xc0\x70\x79\xfc\xee\xc0\x37\x0b\x3e\xff\x6c\ -\x2c\x9c\x98\xc0\x0d\x6f\x2c\xda\x9e\x41\x27\xd7\x6a\xbb\x24\xee\ -\x8c\x99\x37\x0a\x8e\x69\x15\x66\x66\xf9\x20\xcd\xeb\xf0\x65\x14\ -\x5a\xbb\x0a\xdd\xf4\x8b\xee\x10\x5f\x73\x48\x7f\x10\x37\xd2\x18\ -\xf3\x5e\x8d\x6d\x3e\x97\x6c\x47\x3d\x3c\xea\x19\x19\xb6\x22\xc5\ -\x1a\xfa\xad\xc9\xc2\xa8\xad\x67\x54\x66\xf1\x9e\x61\x07\x87\x00\ -\xab\x47\x39\xf6\x32\x9e\xf2\x67\xea\x3e\x46\x75\x47\x5a\x2e\xe3\ -\xf0\x4d\x47\xa3\xc0\xff\x6e\x57\x80\xfc\x1c\x20\xe2\x11\x24\x4d\ -\x1d\x8c\x06\x69\x6e\x4c\xa3\x90\xb1\x3d\xd0\x37\x6d\x9a\x2a\xe6\ -\xac\x8c\x11\x69\xe5\x38\x1a\x90\x1b\x20\xd9\xcc\x83\x5c\xb6\xc5\ -\xc3\x2e\x4a\x9e\x4e\x69\x04\x56\x02\x50\x9f\xd5\xd3\x86\x13\x3b\ -\xed\x16\x20\x3c\xca\xf7\x05\xe4\x83\x51\x6f\xd8\x3a\x78\x79\x12\ -\xc8\x5d\x91\xdd\xfc\x09\x36\xbb\x84\xec\xc4\x79\xaa\x86\x52\x06\ -\x29\xa9\x1c\xb6\x98\x34\x38\xa2\xd0\x9c\xad\x0e\x8e\x54\x4b\x05\ -\xb9\xb4\x42\x57\xee\x2c\xb9\x31\x33\xb7\x40\x61\x6b\x1c\x26\xcd\ -\x19\x33\x0c\xb7\x3b\x06\xd8\x36\x98\xa3\x81\xac\x37\x1a\xa0\x8b\ -\xea\x4d\x19\x13\x49\x32\xc5\x5a\xd1\x3f\xb1\x49\x4f\xb0\x89\x6f\ -\x86\xcc\x86\x32\x71\xa6\xa1\x39\x7a\x9d\x9f\x48\x7b\x63\xc0\xc3\ -\x3a\x98\x20\xef\x18\xe8\x51\xe3\x2d\x00\x4e\x9d\x80\xf9\xe7\x80\ -\x2a\x5c\xec\x35\x2c\xf2\x1b\x07\xcc\x82\xe9\x8c\x69\x42\xea\x70\ -\x8b\x8c\x3d\xf5\xe4\xef\x05\x81\x9e\xa4\xec\x51\x85\x7e\x89\xab\ -\x35\x55\xd2\x08\x55\xa1\x0b\x45\xe1\x8d\xdc\xce\xc6\x40\x21\xc0\ -\xad\x52\x77\xcc\x2a\xb9\x5a\x1a\x44\x3f\x45\x3f\x43\x62\x34\x40\ -\x37\x45\x0a\xc2\x35\x21\xdb\x46\x82\xf7\xe7\xb7\x6a\xce\x96\x42\ -\x6d\x0d\x37\x67\x92\x9b\x32\x7c\xed\xbc\x09\xa6\x00\xcc\xe0\x5a\ -\x55\x0b\xc5\x1c\x7c\xb9\x09\x20\xcd\x21\x93\xbb\x2a\x1d\x0e\x82\ -\xce\x51\x5e\xa7\x7f\xe2\xeb\x3f\x52\x5f\x4f\x2c\x91\xf2\x5c\xd2\ -\xe8\x1c\xd5\xaa\xca\xa4\xd4\xfc\xff\x47\xe7\x8c\x03\xa4\x45\xc0\ -\x94\x9f\x05\xf7\x0f\xa2\xba\x8d\x64\xf1\x11\xc3\x9d\x34\x8c\x82\ -\xb6\x86\xe9\x62\x67\x16\x7a\x27\x6d\x15\xa7\xa3\x10\xda\x44\x76\ -\x00\x60\x59\x54\x76\x92\x55\x6b\x77\x64\xb3\x8e\xe1\x2a\xa6\x18\ -\x7b\x80\x4d\x5e\x8a\x24\x60\x4b\x76\x43\x82\x3e\xef\x8c\x32\xe2\ -\x3f\xd5\x0a\x6c\x61\x73\x8d\x90\x54\xc7\x80\xef\x30\xfa\x3e\x1e\ -\x89\x3e\x1b\xc1\x66\xbe\x5e\x89\xfb\xd5\x8c\x74\x8f\xa0\x10\x1a\ -\x43\xd0\x85\x62\xf8\xf3\x4b\x84\xf7\x48\x89\x60\x1b\xa3\xa5\x9c\ -\x6e\x03\xcd\xe5\xa6\x47\x93\x18\x3b\x8a\xda\xd9\xc9\xda\x70\xd5\ -\xba\x13\xf0\x4d\xb9\x77\xd4\x67\xcd\xd4\xf1\x97\x62\x9a\x8d\x24\ -\x94\x97\x36\x27\x27\xe1\x9d\xcc\xc2\xf7\xf1\x40\x59\x1e\x96\x83\ -\x36\xac\x3b\x38\x28\x41\x27\x46\x31\x20\x76\x89\x37\xb8\xdd\xb6\ -\x2b\x08\x88\x34\xbb\xbc\x57\x63\x9b\x37\x41\x73\x8b\x8b\x25\x09\ -\x57\xed\x2e\xcb\x05\xb8\x14\x82\x62\x0f\xb0\xc9\x57\xd4\x26\x09\ -\x65\xe2\x7f\x0c\xbf\x39\x11\x0b\x27\x78\x4e\x4e\x6e\x17\x9b\x4b\ -\xb4\xcc\x4b\xca\x72\x69\xe9\x72\xfa\x39\x4f\x41\x54\x8a\x53\x52\ -\x4e\x19\xbc\x66\x28\xad\xb3\xe5\x68\x64\xef\xe3\xdf\xf8\xfa\x8b\ -\xf2\xf5\xc4\x9a\x26\xec\x7e\xe9\xe8\x56\x09\x42\xed\xfe\x4f\x23\ -\xe5\x2e\xc6\x89\xc6\x28\x1a\xe6\xe4\x69\x23\x3a\xb8\xd4\xc8\x06\ -\xc7\x20\xf9\x42\xf8\x9c\x4b\x76\x73\x2f\x2b\x2a\x72\xd9\x34\xc4\ -\x3c\x23\x2f\x2a\x79\x1c\x6f\x8f\x8f\x65\x58\xb2\x48\x06\x7d\xf1\ -\x53\x36\x53\xa6\xdd\xfd\x2b\xc2\xf4\x7e\x06\x31\xab\xc3\xf7\x3c\ -\xbe\x91\xe5\x5e\x4d\x4e\xf1\x6a\x84\xcb\xcf\x84\x6e\x01\xdf\x0b\ -\x43\xb8\x9e\x81\x02\x34\x96\xcb\x79\x98\xa2\x96\x1f\xc3\xa1\x9e\ -\x07\x5c\xe9\x34\x48\x08\x6f\x50\xbc\x9a\xce\x8c\x93\xb9\xd8\x43\ -\x89\xc1\x59\xc4\xe5\xca\xd2\xc6\x25\x76\xb9\x4f\xae\x73\xe2\x3a\ -\xca\xc1\x15\x6c\x25\xe2\xaf\x3a\x90\xa5\x86\xc2\xc6\xc2\x49\x53\ -\x37\xca\xf4\x00\xef\x1a\x12\x4e\xe7\xa4\x65\x8f\x53\xfb\xb4\x98\ -\xd3\xc1\x6a\xcd\x82\x5b\x34\x6a\x58\x79\xc3\xb5\xa7\x19\x03\x71\ -\x8f\xd2\x07\xed\x4e\xfa\x2e\x17\x6d\x72\x01\x39\x54\xd2\x18\x57\ -\x5e\x2e\xd3\xc5\xce\x80\x30\xcf\x62\x28\x23\x8f\x02\xbd\x1f\xb9\ -\x6b\x9a\xa3\x42\x4c\x76\x86\x68\xb9\x07\xc0\x0a\x21\xba\x87\xc6\ -\xf4\xa2\xa1\xad\xe9\xd7\x26\x4c\x63\x12\xdc\xa2\x6c\x64\x80\x58\ -\xc0\x47\x5f\x5e\xd3\xbf\x1b\x5e\xe5\x34\xca\xe0\x90\x70\x01\x44\ -\xde\x18\xcd\xbe\xbe\xcb\x74\xb3\x2b\x52\x67\xe9\x48\x5c\x42\x54\ -\xcf\x52\x93\x7b\x40\x2c\x55\x23\xb4\x85\x02\x15\x6f\xa1\x10\x84\ -\x62\xe9\x0d\x1b\x53\xcc\xee\xa8\x87\x51\x0c\x32\xa5\xa0\xac\x9a\ -\xfe\x16\xf5\x6a\x37\x2e\xf4\x14\xe7\xa9\x71\x8c\xcb\x38\x48\x54\ -\x25\x6e\xc5\xb1\x27\x39\xcc\x73\x48\x2b\xff\xc4\x61\x6b\x14\x14\ -\x19\x17\x0a\xa5\x34\xc0\xa5\x0d\x5a\x2c\xc8\xb0\x88\x8f\x81\x6f\ -\xf4\xf1\x17\x28\xe4\xf4\x05\x1c\xb5\xa0\x8c\xea\xcf\x9b\xcc\x08\ -\x81\x82\x3a\x1a\xee\x62\x08\x1e\x47\x66\xc8\x2b\x6c\xa2\x4a\x07\ -\xe9\x53\xaf\x62\x30\x31\x51\xa8\x42\x86\xb0\x23\x97\x14\x00\x33\ -\x9e\x46\x4a\x36\x9b\x65\x3e\x1c\x66\x79\xc8\xce\x81\x67\x2e\x86\ -\xe2\xfc\x98\x9b\x2b\x31\xe7\x9a\x85\x92\xe1\xa1\x6d\x7e\x60\x20\ -\xfc\xd5\x1b\x64\x67\x00\x65\x03\xd1\xc3\x28\xe8\xa1\xf4\xe4\x70\ -\x97\xda\x8f\x20\x0c\xbe\x49\x99\x11\x40\x8a\x84\x4a\x22\x24\x6d\ -\xe5\xf3\x7a\x21\xc3\x30\x52\x1e\xd0\xbb\x02\x80\x4e\xc0\x0a\x3a\ -\x4a\x9c\x43\x00\xea\x2a\xa0\xce\xde\xb3\x13\x81\x4d\x36\x86\x48\ -\x3f\x31\x51\xe5\x06\xe3\x08\x4a\x4c\x69\x60\x68\x52\x2f\x3a\x5a\ -\xc6\x74\x40\x30\x4e\x6b\x79\x3a\xcb\x08\xb9\xe1\xf9\x5f\x34\xe4\ -\x99\xb5\xa9\xc0\xa7\x89\xa8\x6c\x4e\x77\xa9\xb7\x8c\x72\xe5\x44\ -\x15\x0d\xfd\xac\xc3\x18\x9a\x88\xc1\x81\xcc\x3c\x71\x9a\x50\xc1\ -\x9a\x71\x88\x26\xe0\x72\x9b\x07\x0e\xa7\xa4\xfd\x38\x6c\x9b\x79\ -\x63\x4a\x31\x8b\xd8\x03\xda\xa4\x62\x8b\xd7\x24\xef\x89\x2b\x19\ -\x97\x63\xab\x91\x0b\x85\xcd\xdd\x99\x65\x33\x7f\x4b\xed\x0d\x05\ -\x10\x72\x71\x46\xd1\xdf\x06\xe7\x6e\x1d\x85\xa6\x17\xf3\x0b\x08\ -\x47\x29\x0c\x69\xcb\xa0\x85\x14\xb4\x88\xfc\x12\x24\x2a\x69\xe9\ -\x8b\xef\x06\xe0\x54\x5b\x32\x4d\x40\xa9\x50\xb5\xb2\xe8\xaa\x4d\ -\xe0\xdb\x9e\xe5\xed\xa1\xfb\x23\x14\xbb\x0e\x8d\x3a\x02\x9b\x18\ -\x85\xe8\x8c\x6c\x17\xff\xdd\x2e\xd1\x60\x26\x0d\x1b\xc1\x5a\x63\ -\x70\x92\xcb\x72\x2a\xc8\x1d\x61\x6a\x79\x76\x96\x83\x36\x16\xcf\ -\x46\xf2\x20\xb2\xc6\x12\xa1\x05\xcb\xce\xeb\x39\x66\x88\x99\x85\ -\x09\xc3\xf6\x25\x53\xe4\x8a\x93\x15\xe4\x59\x5c\x4d\x1b\xb1\xed\ -\x20\x1d\xba\xfc\xbb\x8a\x13\x35\x24\x70\xdc\x45\x85\x8c\xa5\xe5\ -\x74\xc7\x55\x43\xd7\x3c\xd2\x4f\x7f\xf3\x42\x3a\xb6\xd2\xbb\x4a\ -\x2d\x0e\xf6\xaa\xe3\x58\x32\xbd\x12\xb5\x16\x6a\x64\x74\x76\x29\ -\x9a\x75\x14\x12\x91\xa2\xa1\xb0\x62\x72\x46\xe2\x29\x1b\x9b\xbc\ -\x89\x9a\xc9\xab\x3c\x06\xce\xe0\x3e\x96\xf8\x37\x53\xe3\xe5\xe2\ -\xde\x4c\xb7\x05\x28\x89\xa8\xf1\xc7\x4c\x50\x6e\xf9\xc6\xc8\x02\ -\xb7\xe4\x3c\x68\x04\xe7\x04\x47\xc9\x06\xe6\x11\x8c\xaa\x7f\xe0\ -\x02\x0b\x49\x2b\x36\xa4\x6e\x15\x0c\x24\x58\xa0\x43\x24\x2c\x0c\ -\x75\xc2\x4b\x54\x14\x22\x49\x66\xcd\x5c\x0e\xfe\x46\x02\xc6\x37\ -\x4b\x05\xd3\x35\x64\xb4\x9d\x7b\xf6\x17\x15\x65\xac\x7d\x2e\xb9\ -\x08\xd9\x39\x3a\x47\x51\xc7\x5f\x8d\x69\x7c\xfb\x2c\x53\xc5\x42\ -\x37\xfc\xf9\x43\x27\xe7\xc7\xa6\x88\x29\xb2\x66\x15\x53\xdd\x03\ -\x0d\x3c\xe3\x0d\xe1\x97\xc6\x1b\xfd\x2d\xea\xd5\x01\x00\x39\x9a\ -\xa4\xa2\x95\xa5\x54\x94\x1b\x61\xba\xe1\x0c\xe0\x92\x3e\xb1\xe4\ -\x42\xfd\xd1\xa1\x50\xf3\x6d\x94\xc9\xfc\xe3\x25\x14\xc3\x96\x9a\ -\xd5\x6e\x17\x90\xfb\xa8\x36\x7a\xa8\x56\xec\x19\x70\x91\xa4\xe3\ -\x16\x10\xc5\x39\xae\x86\x2c\x05\x31\x75\xbd\x39\x97\xea\x4a\xda\ -\xf8\xe4\xcd\x25\xb3\xa7\xa7\xdf\xd4\x73\xd6\x28\x7c\xe6\x46\x87\ -\x0c\x97\x26\x2d\x1d\xec\x94\x27\x85\x59\x37\x06\x86\xd7\x74\x1e\ -\xa3\xa4\x2b\xbf\x9b\x6c\x86\xcf\x41\x58\x75\xa6\x9d\xe8\x1b\xc2\ -\x96\x90\x12\xe7\x14\x18\xce\xb0\x0b\xb0\xe0\xda\xd0\xee\xcd\xda\ -\x4e\xdd\xa5\x7f\x3a\x5a\xce\x4a\x7b\xfe\x54\x02\x30\x0a\x30\xa0\ -\x20\x3d\xe1\xd0\x52\x50\xfc\x68\xf3\xbb\xb7\x9d\x88\x3e\x19\x58\ -\x35\x3c\x81\x2e\x7b\x42\xdc\x90\x60\xd6\x7e\xb9\x4c\x28\xf5\xe6\ -\x26\xf5\x69\x07\x89\x91\x62\x5e\x30\x7d\x27\x58\x1d\xfa\x08\x68\ -\x24\xfc\x01\xd0\xa9\x8d\x1b\xd3\xcb\x13\x4e\x26\x05\x38\xa5\xb2\ -\x59\x57\x62\x5f\x35\xbd\x36\x34\x49\xd8\x41\x07\xd9\x01\x90\x4f\ -\x20\x6b\x09\xb6\xa4\xae\x3c\x73\x01\x0c\xa0\xd7\x71\x78\xba\x4e\ -\x7a\x9f\x1b\xf5\xf4\xb8\x03\x02\x7f\x4c\x5b\xf7\xef\x3a\xc4\xfa\ -\xa8\x21\xd6\xff\xbb\x0e\xb1\x21\x6a\x88\x0d\x09\x87\xb8\x09\x98\ -\xdd\x06\x69\xee\xa0\xcd\xc3\x6a\xd8\xc6\xb0\xd8\x4a\xf3\x62\x1a\ -\x25\x6e\x6b\x32\x12\x12\xd2\x8b\xe5\x64\x2d\x4e\xf5\x94\x98\xd6\ -\xa2\xe7\x2b\x34\x08\x7d\xba\x9c\x88\x60\x83\x86\xf6\x61\x91\xbb\ -\x17\x8c\xd0\x1c\x2e\x3a\xc6\xe1\xdb\x11\xc5\x75\x38\xbf\x6f\xcc\ -\x48\x8f\xb3\x00\x88\x99\xd5\xa6\xad\x92\x36\xa9\xd3\x42\x3d\x1a\ -\x4e\x07\xd1\x08\xc4\xb5\xb6\x9f\x29\x06\xac\x49\x1b\x31\x34\x33\ -\x5f\xb4\x6c\xaa\x73\x5c\xcb\xea\x4e\x38\xf5\x47\x03\x81\xa0\xa4\ -\x13\x37\x11\x64\x03\x14\x44\x01\xc3\x42\x94\x2b\x28\xf7\x30\x34\ -\x8c\xc0\xbb\x16\x5f\x99\x4e\xf8\x8b\x8a\xfc\x03\x8a\xfc\xa4\xbc\ -\xb4\x62\x36\x88\xf1\xd0\x32\x54\x06\x2d\x05\xab\xb0\xb2\x00\xfe\ -\x44\x46\x1b\x01\xb9\x31\x0e\x18\x1a\x31\x46\xcd\x42\x81\xd5\x57\ -\xd0\x82\x37\x6d\x45\x14\xae\x12\xa2\xaa\xcd\x57\x95\xa6\x32\x4e\ -\x3d\x2b\xb1\x49\xcc\x35\xc1\x9e\xd6\x87\x7a\x4a\xca\x1c\xc1\x9e\ -\x36\x84\x7a\x4a\xca\x03\x5b\x40\xe5\x89\xf2\x42\x61\x19\x1e\xf6\ -\x62\x47\x4c\x97\xfb\xc5\x68\x54\xb9\xa2\x9a\xdf\x3d\xa9\x0f\x6b\ -\x0b\xf3\x7a\xb1\x88\x78\x46\x83\x11\x2b\x0f\x13\x82\xd4\xee\x81\ -\x24\x40\x90\x6e\x9e\x86\xf5\x38\x52\x30\xce\x91\x83\xd1\xe5\x06\ -\x3b\xca\x48\x38\x0a\x55\xa3\xaa\x09\xa2\x8e\xe1\xd7\x89\xcd\x7d\ -\xc2\xb8\x98\x85\x66\x9c\xcf\x0d\x89\x50\xdc\x45\xc6\x6c\xd5\xc8\ -\x47\x62\xd4\xc4\xf4\x0a\x4f\x78\x99\xa8\x8a\x1a\x25\x1a\x83\x05\ -\x9f\x09\x47\xe9\x8a\x1d\x45\xad\xf1\xe5\x02\x40\xc6\xaf\x7c\xe3\ -\x61\xf0\x56\xa3\x6c\x99\x70\xd0\x35\x8a\x49\xaa\x71\xc3\x54\x97\ -\xf1\x58\x4f\x62\x44\x85\x2f\x4f\x62\x46\x23\x8d\x20\xeb\x34\x20\ -\x6b\xa6\xd5\x68\x65\x82\xc1\x57\x80\xf4\xde\x0b\x64\x27\x63\x97\ -\x3a\x97\xf3\x21\xeb\x46\xe2\xb7\x7f\xef\x00\x0d\xe7\xe4\x75\x70\ -\x8d\x8a\x74\xd2\x49\x47\x9b\x8f\xa5\x74\xcc\x97\xa6\xd3\xcc\x84\ -\xd6\xae\xb9\xdf\xc8\xea\x60\xfe\xce\x6a\xd9\xb6\x87\xba\xa5\x79\ -\xcf\x03\xc8\xbe\xc2\xfc\x76\x79\x10\xc1\xf0\x05\x79\xc2\x85\x64\ -\x6a\x80\xe7\x34\x01\xcc\x98\x61\x8e\x8e\xb9\x18\xc2\x72\xc1\xf7\ -\x76\xd0\x8c\xf5\xea\xb8\x92\xce\xbe\x23\x04\x66\xa4\x4c\x91\xbe\ -\xb3\x18\x7e\xb6\x72\x44\x0b\x0d\x94\xe7\xb6\x21\x53\xe0\xe3\xde\ -\x10\xf3\xc4\x10\xae\x91\x2f\xe6\x28\x25\x61\x09\x50\xc2\x71\x3a\ -\x23\x26\xe4\x72\x0b\xc5\xf0\x64\x8b\xab\x86\x03\xe4\x78\x53\x14\ -\x9f\x85\xa4\x43\xb5\xc7\x0c\x45\x97\x94\x2f\xb6\x8c\x80\xf9\x06\ -\x61\x6b\xf7\x27\x2c\x51\x44\x56\xc5\x1b\xea\x04\x31\x94\x2f\x45\ -\x92\x70\xb0\x6e\x30\x45\x8e\x70\xf3\xa2\x03\x69\xc1\xe0\xc3\xd2\ -\x68\xc1\x4e\xd4\x3b\x0a\x57\x4a\xdf\xc1\xab\xd9\x73\xb4\x0e\x6d\ -\x9b\x01\xbe\xad\x0d\x26\x92\x6d\x4d\x6a\x8e\xa8\x33\x4f\x30\xfc\ -\x39\x30\x04\xb3\x27\x4d\x8f\xfa\xd9\x8a\x4d\x60\x08\x45\x06\x54\ -\xcb\xf1\xc8\x02\x05\x98\xa2\x6d\xa4\x4d\xfa\x55\xcb\x19\x13\x46\ -\x52\xab\x9d\x26\xf8\x65\x25\xaa\x34\x32\x6a\xfa\x2d\x37\xb1\x85\ -\xe1\xef\x64\xbd\xbf\x93\xa4\xc6\x85\xbf\x93\x0d\xfe\x4e\x92\xda\ -\x15\x6b\xc0\xff\x13\xaa\xd5\x63\x80\xc8\x9c\x03\x15\xec\x14\xf5\ -\xd2\x2b\x9c\x8b\xdd\xd0\xd0\x89\x61\x53\x4b\xd7\x0b\xde\x26\xb2\ -\x67\x36\x01\x37\xf8\x4d\x4a\x0d\xad\xf3\x95\x01\x07\x50\x58\x3b\ -\x45\x5e\x57\x91\x25\xac\x02\x91\x85\xf9\x25\x9d\x2d\xdb\x34\x45\ -\x6d\x46\x0d\xcc\x6e\xe1\xdf\x81\x15\x4e\xeb\x39\x18\x6c\x06\xad\ -\x65\x4b\x08\xdd\x6a\xd0\x31\xd3\x91\xee\xa8\x80\xc6\xf1\x33\x9e\ -\xd4\xae\x03\xa6\x92\x38\x1d\x99\xd6\x32\x8c\xe5\x66\xe5\xa8\xe7\ -\x60\x88\xc3\x5e\x92\xd6\x43\x3c\x0a\x5f\x16\x32\xa3\xef\x08\x4b\ -\x48\x0d\xca\xce\xdb\x6c\x14\x0c\x5b\xcf\x69\x6c\x69\xc4\x00\x89\ -\x0d\x8a\xf0\xe8\x33\x8f\xd9\x26\xc6\x74\x66\x3b\xda\x66\xf4\x43\ -\x46\xb8\xfa\xf6\x27\xf1\xe3\x12\x06\x6d\x9b\x73\xd6\x08\x0c\x46\ -\x33\xf0\xb3\x21\xb8\x45\x64\x17\x16\x40\x22\xd1\xa0\x23\x39\x81\ -\xf3\xa2\x85\x0c\x72\xf9\x9a\x36\xdb\x66\x46\x73\x8a\x7a\x9a\x97\ -\xc1\x26\x9c\x87\x30\xb6\x04\x21\x53\xb9\x2b\x12\x09\xa6\xea\x71\ -\x79\x23\xcd\xc7\x04\xb9\x96\xd3\xa7\x0d\x9b\x87\x1f\x99\x5b\x94\ -\x6c\xd4\x8a\x39\xc0\x42\x87\x79\x70\x95\xc5\xba\x98\x2f\x28\x22\ -\x20\xb2\x14\x45\x47\x52\xa5\xe3\xab\xce\x83\x89\x2b\x6c\x80\x3a\ -\x3a\xa2\x84\x50\x59\x40\x68\x25\xb3\xde\x89\x28\x5a\x2e\xd7\xe2\ -\x1c\xb4\x01\x5d\xcf\xfc\x3a\x8f\xb0\x00\x32\xab\xc7\x37\x3d\x93\ -\xd4\xdf\x97\x80\x39\xc7\x37\x91\xe9\x3c\x7c\x29\x9c\x17\x27\x42\ -\x7d\x4e\xe0\x7c\x55\x21\x95\xf7\xc2\x56\xb6\xcf\xb5\xb9\x75\x8b\ -\x61\x1b\xe8\x7c\xa6\xf5\x02\xac\x26\xc8\xf9\xec\x34\xd6\xb2\xd3\ -\x42\x27\x8b\x16\x02\x80\x2e\x07\x47\x81\xea\x40\x1a\xd0\xa2\xfe\ -\x88\xa3\x3e\x3c\xa7\xc8\x42\x5c\xe7\x51\xfe\x85\x47\x68\x36\x82\ -\x17\x0b\x36\x24\xed\x12\x3c\x54\x3d\x93\x61\x6e\x13\x86\x93\x5d\ -\x30\xb1\x74\x3b\xc3\xd9\x0e\x5e\x4b\x8f\x69\xbc\x8b\xa4\xec\x60\ -\x63\x20\x25\x98\x6f\x62\xb1\x74\x07\x55\x9c\x48\x65\xfa\xcb\x28\ -\x6c\x85\xac\xd5\x18\xef\x34\xcf\x43\x68\x5e\xa9\x9d\x4d\x02\xb5\ -\xd7\x1e\xc2\x4e\xdf\x9a\xd5\xd2\xd4\x73\x37\x32\x5d\x80\xa7\x51\ -\xca\x04\x93\x54\x90\x51\xe7\x50\xb7\xb5\xc9\x31\xa3\x80\x59\x84\ -\xe4\x5c\xf1\xf6\x2c\xa7\x93\xc5\x35\xa4\xfa\x9d\x39\xb2\x72\x2a\ -\x4c\x01\x39\xf0\xff\x71\x22\x8b\x5b\x0c\x4f\x3a\x8a\xb2\x97\x02\ -\xaa\x06\x11\xfb\x0d\x27\xea\x54\xfa\x52\x93\xa8\x34\x58\xde\xcb\ -\x8b\xd9\x34\x5e\xfe\xdd\x45\x44\x4a\x47\x64\x91\x45\x3c\x59\xf7\ -\x38\x8b\xd2\x1d\x43\x6d\x70\x1b\xa5\xa1\xa2\x33\x6b\x1b\x46\x5a\ -\xe7\xf8\xa4\x45\x28\x40\x33\x07\x30\x52\x9e\x86\xff\xa7\xcd\x8c\ -\xb2\x2d\x88\xc9\x01\x4c\x37\x74\x6b\x1b\x8d\x49\xdd\x36\xba\x58\ -\x30\x85\x52\x9d\xab\x8f\x1b\xb4\xbe\x65\x0c\xa8\x95\x6f\xce\x4c\ -\xb0\x10\x4f\xf1\x85\x50\xa7\x23\x23\x07\x49\x96\x26\xae\xf2\xa8\ -\xbc\x60\x10\x31\x36\xb9\x90\x46\x48\xe3\x3b\x4a\x2f\x4c\xf7\x07\ -\xb5\xbc\xb4\x36\xde\xb7\x35\xcb\xe3\x4a\x8e\x42\xab\x8a\xb2\x55\ -\xd8\x17\xe3\x6e\x0c\xe3\xc0\xaa\xc6\x14\x0f\x26\x81\x3d\xb0\x36\ -\xe3\x99\x04\x49\x25\xed\x3c\x05\x81\x42\x2b\x1e\xe6\x92\x7d\x5c\ -\x09\x4c\x66\x62\xd0\x57\x46\xab\xf9\x58\x76\x44\x41\x21\x43\xcd\ -\x51\x1e\xef\x0e\x57\x31\xb0\xc5\xd2\x39\x3c\x36\xbe\x1d\x1e\xd5\ -\x5f\xf7\xa0\x86\x45\xd5\xc8\x3b\x93\xb5\x36\x27\x0d\x93\x2f\xa8\ -\x8b\xd1\xc3\x24\x1a\xd9\x8a\x5a\x18\x4f\x3d\x7b\xab\x30\x6e\x14\ -\x5d\x4d\x4f\xdb\x96\xe3\x88\xa2\x8a\x2e\xcd\x02\xe9\x69\x4f\x9a\ -\x8e\xe1\xd5\x59\x70\xb9\xc3\x03\xf6\xae\x6e\x53\x03\x53\x2b\x58\ -\x2b\x67\xab\xf0\x7f\xf6\x27\x2e\x5b\x38\xe7\x29\xf7\x51\x99\xd8\ -\x52\xa5\x5e\x7f\x86\x32\xc6\x4a\xe4\xa2\x26\x7e\xd1\x44\xa1\x5b\ -\xfc\x38\x22\xfb\xea\xcf\x93\x65\xa3\x96\x40\x56\xef\x49\x41\x0e\ -\x1c\xc0\x73\x98\xf0\x8d\x9b\xa6\xdd\xda\x0e\xb1\x0a\x54\xd8\x18\ -\xd3\xc1\x16\x5e\x25\x48\x42\x86\x39\xc7\x27\x71\x64\xc8\x7a\x76\ -\x52\x47\x98\x33\x2a\xa9\x46\x65\x30\x55\xb1\x1e\xde\x08\xa8\x2a\ -\x8c\x3c\x32\x97\x08\x71\xab\x46\x93\xc8\xb1\x33\x65\xb0\xc3\x93\ -\x6a\x74\xe5\xcb\xc3\x67\xf0\xd5\x75\x02\xda\x57\x85\xaf\xc0\x67\ -\xce\x5a\xb8\x48\x7b\x69\x8e\x01\x51\x01\x20\xb2\xb5\x52\x89\xfc\ -\x45\xd4\x9a\x62\x40\x5d\x65\x10\x9e\xd1\xf2\x36\x2a\x7a\x8b\x4e\ -\x95\x84\x50\xd9\xdd\x1a\xf4\x55\xb0\x5c\xa5\xfd\x08\x4b\x7a\x61\ -\x34\xd6\x2a\xe4\xa6\x99\x8a\x07\x97\xd8\xc1\xbd\x3d\x34\x7d\x9b\ -\x54\xc1\x68\x64\x6b\x28\x3b\x40\xf3\x07\x61\x9b\xb7\x65\x2b\x86\ -\xf5\xb5\x15\xb3\xb1\x74\x49\x47\x64\xff\x3b\x00\x65\xbd\x44\x49\ -\xf1\x48\x0f\x81\x8f\xb2\xa3\xaf\x97\xa5\x62\x12\x8e\xb3\x2c\x72\ -\x1c\x2a\x8b\xa7\xe1\x59\x89\x3d\x0b\xcd\x05\x0c\x78\xab\x94\x38\ -\x80\xb9\x28\x72\x8c\xe0\x76\xfc\x26\xde\xf7\x6c\xe2\x23\xef\x8d\ -\xec\xf9\x58\xe2\x88\x0b\xf9\xe8\x7f\x52\xec\x30\x0c\xcc\xaa\xb0\ -\xc7\x2f\xe3\xa8\x6c\xc8\x55\xcc\x85\x4f\x1c\x0c\xde\xca\x59\xd4\ -\x26\x6c\x87\x70\x6c\x7c\x48\x7a\x5d\x5b\x0b\x98\xc8\xce\x1d\x63\ -\xf4\x67\xb1\xaf\x58\x26\xbe\x1a\xb9\x99\x96\x9a\x78\x75\xc7\x89\ -\x1d\xc9\xdd\x3c\x12\x23\x16\xac\x13\xa6\x38\x04\xa4\x1e\xd6\x24\ -\x32\xb9\x7d\xfc\x36\x03\x5c\x8e\xce\xad\x43\x3b\x3c\x37\x24\x69\ -\x0a\xbb\x1d\x7c\x48\x5a\x32\x46\x0b\xd5\xfc\xa5\x37\xac\x8c\x4c\ -\xdd\xdc\xd6\x36\x48\x13\x2b\x58\x02\xa8\x01\xc2\x12\x4f\xea\xd1\ -\xd8\x31\x82\x46\xa6\xba\x39\x54\xf8\x83\x07\x78\x8e\x91\x71\xb9\ -\x50\x9f\xcc\xbf\x15\x6a\x65\x0c\xfa\x66\x8a\xe5\x08\x11\x5b\x19\ -\x99\x53\x64\x91\x70\x45\xc8\x58\x24\x34\x52\xec\xbe\x8f\xce\x93\ -\x4d\x53\x08\x4a\x56\x5e\x05\xb2\x18\x64\xb0\xdd\xad\x0d\x71\x7f\ -\x72\x8c\x3a\x99\x63\xd6\xa4\x06\x76\xcb\xb4\xe6\x5c\x56\xd2\x69\ -\x95\x90\xa8\x1f\xc9\x8b\x6e\x92\x8a\xd1\x65\x98\xea\x9d\x22\x9a\ -\x5a\x35\x82\x7f\x45\xed\xd0\x9e\x33\xa8\x4f\x69\xac\x50\x44\x1b\ -\x92\xa5\x6a\x89\xea\x16\xb6\x72\x14\x2a\x45\xd2\xdb\xad\xc4\x71\ -\x60\xcd\x6b\x5f\x40\x0a\x75\x90\x15\x46\xf8\x2e\x10\xb5\xec\xa2\ -\x85\xf6\xaa\x75\x66\x75\xc7\x35\x1c\x37\x21\x51\x56\x2c\x02\x39\ -\x91\xf5\x38\x20\x6c\x80\x8a\x8d\x00\xc1\x7a\x33\xa6\xa3\x47\x10\ -\x73\xd1\xf6\x9b\x5a\xe5\x18\x5d\xd9\x29\xb5\xbf\xea\x2d\x45\x64\ -\x97\x66\x6d\xcd\xb0\x7c\x1c\x33\xc5\xe3\xec\x4a\x7f\x5f\x0e\xda\ -\x20\x32\xf4\x86\x3b\x08\x3d\xdc\x5e\xb5\x1d\xeb\x20\x73\xd3\xe0\ -\x03\x65\x41\xa4\xa1\xc1\xad\x18\x00\x68\xc9\xd1\x87\xf4\x70\x99\ -\x51\xc3\xf5\x2a\xde\xd0\x16\x40\xbb\x82\x25\xc3\x7c\xe6\x05\x6d\ -\x83\xfb\x61\x7c\xb6\xe3\x88\x52\x2f\x67\x16\x60\x31\xf5\x4c\x52\ -\xa2\xee\xf4\xf4\xb4\x9a\xb0\x2b\x9b\xae\xa3\x6a\xfb\x98\xd2\x75\ -\x67\xc3\x58\x36\x1a\x7d\xac\x62\x88\x15\x0e\x8a\xa4\xb9\xd0\x7d\ -\xe5\x52\x58\x8b\x76\xd8\xe6\xa8\x59\xc0\xe8\x22\x4d\x57\x53\xdd\ -\x37\xdb\x6c\x56\x0a\xe4\xdd\x51\x16\xfb\x93\x11\xf9\x5d\xb3\x48\ -\xea\xac\x50\x82\x70\x89\x73\x9c\x18\xc4\x3a\x16\xa4\x65\x50\xda\ -\xe8\xdc\x5c\x88\xaa\x20\x4e\x84\x42\x9f\xb3\x4a\xeb\x5c\x9d\x48\ -\xd3\x62\xf5\x90\x3e\x61\x78\x85\xbd\x11\x48\x16\x0e\xa2\x43\xed\ -\xd0\xe4\xb3\x78\x6f\x68\xd7\x55\x90\xd3\xd4\x3d\x13\x11\x52\x45\ -\x16\x02\xf2\x6d\x44\x3e\x2e\xf0\x71\xd8\x2c\x92\xc7\xe5\xeb\xb9\ -\xea\x86\x66\x55\xcb\x15\xd7\xe1\xfa\x60\x87\x49\xf3\x47\xf3\x67\ -\xac\xd5\xe2\x1d\x26\xcd\x25\xcd\x51\xca\xfb\x82\x99\xf2\xd4\x10\ -\xf5\x54\x66\x93\x26\x9f\xe3\x2b\x16\xf4\x97\x7a\xd4\x0f\xf1\x82\ -\xbd\x84\x7d\xcd\x53\xfa\xa2\x52\x99\x05\xff\x8c\x00\x74\x36\x3d\ -\xa3\x27\x61\x8f\xb2\xac\xd7\x44\xba\x72\x7c\x7b\xa8\xea\x87\x75\ -\x67\x5c\x6c\x9f\x4a\x94\x85\x8b\x2f\x72\xc9\x01\xac\xc2\xfa\x13\ -\xa5\x8d\x6a\xb0\xfb\xe4\x61\x6f\x47\x0f\x8f\x7e\x01\x5e\xcc\xac\ -\x09\x14\x3b\x6e\x24\xb5\xd2\x34\xaf\xce\x74\xa6\xe1\xe6\xd2\xe1\ -\x74\x56\x7d\x3a\xdb\x51\xae\x9b\xb9\x62\x88\xc8\x84\xa3\x10\x28\ -\x62\x9f\x4f\x21\x60\x00\x64\xc0\x58\xca\x2a\x02\x2a\x58\x34\x1e\ -\x5d\x00\x25\x85\x51\xef\x30\x6a\xc8\x60\x5d\x12\xab\x9b\x00\x5a\ -\x70\x72\x3a\xba\xd4\x99\xa9\x2c\x7b\x8d\x87\x67\x3d\x61\x95\x54\ -\x3a\x5d\x1e\x5b\xe0\x20\x02\xc9\x2c\xb6\x43\xdf\x98\xe0\x67\xd1\ -\x38\xa1\xb8\x41\x70\x9f\x31\xb3\x19\x0a\xfc\x9c\x88\x98\x53\x55\ -\xbc\xc9\x9e\x4b\x27\x9b\x09\x96\x4f\xc0\x6c\x4a\x20\xe7\xd0\xf7\ -\x67\x7b\x23\x61\xbe\xba\x06\xf3\x13\xa1\x83\x59\x55\x58\x7c\x14\ -\xad\x73\xa6\xdf\x59\xe8\x27\xc3\x3d\xb2\x3c\x7f\x26\xf2\x61\x22\ -\xb8\x22\x0a\x33\xa9\x40\xb6\x10\x35\x26\x57\x6f\x96\x97\x4d\xf3\ -\x67\x90\x3a\x89\xba\xf5\x60\x0a\xc3\x3a\x45\xc2\xca\xeb\xd6\xc2\ -\x7f\xe7\xc2\x7f\xab\xc1\x0c\x5b\x0d\xff\xce\x50\x8c\xd1\x41\x8a\ -\x80\x42\x29\x3f\x42\x8f\xcc\xc9\x02\x2a\xd2\x26\xd8\x4f\x74\x49\ -\x59\x02\x9b\x69\x7d\xcb\xce\x98\x05\xac\x6b\xb7\x8a\x86\xad\xb3\ -\xb4\x4f\x67\x16\x37\xb1\x74\x6b\x6b\xb5\x73\xb5\xd5\xdd\xab\x57\ -\x9f\x91\xd4\xc1\xfa\x34\xd9\x85\x96\xa5\x49\xc4\xce\x69\x91\x4b\ -\x17\xd2\x48\x12\xb5\x9a\xfc\x2a\x72\xb4\x51\xa4\x85\x4f\xf1\x18\ -\xe2\x0c\xa1\xb6\x59\xad\xf4\x6e\x2a\xf6\x79\x86\x98\x1e\x3b\x3b\ -\x88\x3e\x8b\x53\x18\x8b\x8f\xa9\xf6\xfa\x76\x8a\x22\x5b\xcf\x98\ -\x25\x07\x99\xc0\x0b\x10\xd1\x3a\x7e\xea\xf4\x50\xb7\x99\x9f\xc9\ -\x01\x73\xa5\x8f\x57\xb3\x8d\x72\x16\xdd\xbf\x05\xce\x67\x1a\xcc\ -\x7d\xb3\x80\x09\x33\x23\x29\x8e\x96\xf9\xe4\xfc\x4c\xe2\xe7\x04\ -\x0a\xa3\x28\xd7\x9e\xad\xfc\x19\xe0\xc7\xe4\xf0\xac\x2f\x11\x1b\ -\xbc\x54\xff\xd0\xf3\x7c\x89\x3f\xb5\xe6\x90\xf0\xe1\x3c\xed\x08\ -\x0c\x4b\x16\x7b\x8e\x9f\xa1\xa7\xc7\x58\x06\x4d\x54\xf7\xcf\x0c\ -\x59\xe5\x22\xd2\x4f\x82\xe9\x19\x01\x9f\x54\x0b\xd1\x05\x1a\x26\ -\x11\x15\xc0\xe3\x44\x6c\x42\x12\x15\x03\xac\x32\xbe\xe4\x89\x9a\ -\x68\x9f\x5b\xd6\x0c\xe9\xa4\x07\xfe\xde\x4d\xd8\xd6\x52\x17\x8f\ -\xb1\x60\x25\x8b\x42\x3b\xc8\xbc\x45\x74\x5f\xac\xe6\x48\x1c\x11\ -\xa5\x26\x8f\x24\x54\x65\xaa\x0a\x88\x38\x37\x55\x1e\x4f\x26\xcc\ -\x53\x16\x12\x8f\x86\xac\x8b\xf8\xc3\xba\xbd\xde\x7e\x01\x93\xb0\ -\xad\x56\xf2\x5d\x27\xd1\x3c\x54\x61\x4c\xa1\x1f\x20\x2c\x3f\x49\ -\xbd\x99\x7e\x72\x1a\x4f\xac\x86\x4c\x00\x4c\xbc\xb2\x00\x4e\x9e\ -\xa8\xdb\x69\x24\x16\x4c\x2e\xf3\xfc\x23\xd8\x8a\x4c\x14\xbb\x1d\ -\x82\xe6\xf3\x0f\x86\x79\x3c\x98\xfa\x69\x17\x6d\x65\xf9\x15\x10\ -\x60\x93\x63\x66\x9a\x6d\xd0\x67\xf9\x67\x78\x5e\xca\xf1\xcc\x0b\ -\x2d\xf5\xea\xd1\x86\x2d\x2b\x37\xa2\xdb\x4a\x46\x06\x14\x40\xda\ -\xc0\xfc\x19\x6b\x23\x8a\x37\x68\x7f\xf4\xe0\x36\x5a\xa3\x89\x1a\ -\x02\x1b\x76\xf1\x80\xb2\x0b\x76\x8d\xbf\x1f\xaa\x3f\xe8\xc8\x03\ -\xb6\x61\xf4\xf5\xf6\x6b\xc2\xf2\xd1\x9c\x69\xf0\x14\xf3\x28\x1f\ -\xe8\x28\xf4\x54\x2c\x78\xd7\x66\xd2\x56\x9f\x4d\x35\xed\xf5\x11\ -\xcc\x11\x8c\x87\x49\x23\x40\x95\xb3\xd1\xf9\x4a\x11\x62\x72\x39\ -\x29\x26\xd9\x7b\xad\xfa\xde\x83\xea\x32\x64\xd4\x0a\x50\x9c\xad\ -\xdc\x48\xeb\xed\xbd\xe3\xd8\x33\x0b\xde\xae\x71\x74\xbd\x29\x16\ -\x13\x7a\xd2\x15\x6f\x45\x20\x41\xd4\xf6\xab\x5b\x09\x83\x88\xa1\ -\x9c\x52\x54\x24\x87\x7f\xfb\xb1\xa8\xb3\x14\x71\xe2\x19\x62\xc4\ -\xa0\x7e\x52\x1c\x0e\x99\x13\x17\x0e\xa3\xe4\xda\xe0\x98\x8e\x07\ -\xa9\x5c\x84\x76\xb9\x7d\x06\xbe\xb3\xad\x7c\x85\x08\xf8\x79\x6c\ -\xdc\xd7\xd2\xe1\xea\x8c\xb5\x6b\x47\x29\x61\x23\x17\xb6\x03\x7c\ -\xea\x96\xc0\x76\x94\x80\x34\xf0\xd3\x1e\xda\x2e\x28\x48\x85\x42\ -\x66\x72\xe7\x31\x0a\xba\x2e\xf0\xe8\x69\xbb\x09\x9c\x9f\x89\x15\ -\x0a\x5d\x0a\x0c\xc1\x5e\x85\x61\x26\x66\x2c\x76\x54\xc8\xf9\xd1\ -\xd1\x52\x91\x63\xf5\x80\x23\x60\x61\x1a\xb1\xdd\x23\xb7\xb7\xa3\ -\xc8\x8d\x16\xa3\x62\xd9\xb6\xc7\x60\x8c\x8d\xa3\x82\xf6\xdd\xa9\ -\xad\xb2\x6c\x45\x69\xe9\x94\x40\x6a\xe8\x8e\xd6\x8e\xbb\x96\xda\ -\x69\xe5\x87\xe8\x1e\x33\x0f\xf2\x05\x07\xac\x61\xf8\xbd\x1d\xf8\ -\xd7\xcc\xb6\xa7\x60\xc4\xf6\xbc\x55\xb0\xda\x71\x0f\x24\x74\xa9\ -\xe7\xcd\xdc\x74\xa0\xbf\xae\x2d\x46\x6e\xc2\x70\xcd\xb4\xde\x85\ -\xcd\xd9\xab\x38\x30\xdf\xed\x81\x83\xa4\xfc\xad\x7a\x36\x5a\xb9\ -\x4c\x7b\x42\xc1\x90\x4b\x20\x18\x42\x85\xf0\x01\x0e\x88\x67\xfd\ -\xb8\xd8\xfe\xd9\x51\xeb\x21\xeb\xe8\x71\x41\x7c\x6c\x3e\xcb\x34\ -\xc0\xa1\x18\x5b\x40\xf0\x9a\x48\x32\x33\xc8\x2c\xef\x37\x69\xfe\ -\xc9\xd4\x8b\xf0\x95\xc4\x46\x3f\x55\x20\xc6\xf9\x4d\x7e\x4d\x27\ -\xc5\xde\x66\x75\xde\x30\xa1\x31\x2b\xa3\xa5\xc7\x2c\xdc\x21\x4b\ -\xe7\xcc\xf6\xec\x88\x92\x2a\x26\x05\xb9\x58\x44\xbf\x89\x6b\x88\ -\xa4\x02\xef\xa5\x32\x68\x90\x53\x0f\xee\x86\x11\x08\x8a\x43\x87\ -\xca\xaa\x33\x39\x98\x62\xaf\x41\x14\xd2\xca\x20\x0c\x9e\xa4\x78\ -\x14\x59\xbc\x1d\x74\x77\xfd\xd0\x32\xdd\x74\x84\xb0\x14\x06\x33\ -\x1e\xe4\xd6\x2e\xf5\xcc\xd6\x42\x99\x3e\x1d\xcf\x81\x2e\x5f\x97\ -\xc3\x7a\x89\x9b\x3b\x63\x9f\x11\x22\x4f\x0a\x17\x05\x7b\xd1\xdb\ -\x6d\x67\xe9\x7c\x13\xcd\x23\xa7\x9f\x27\x26\xa7\x80\x3f\x4e\xf7\ -\x73\xc4\x53\x97\x96\xda\x9a\x0d\x78\xf5\x18\xe1\xc6\x8e\x59\x02\ -\x3c\x5f\x72\x5c\xfe\x44\xd3\xa3\x22\x00\x4a\x25\x91\x2e\x87\xb6\ -\x68\x05\x16\xdd\x2d\x8a\x65\x80\x68\xfc\xf0\x8d\xe2\x31\xe1\x81\ -\xee\x54\x42\x8e\x7f\x35\x92\xd4\x83\xfa\xd7\x21\x32\x9b\xcb\x9c\ -\x39\xd5\xd6\x16\x84\x55\x88\x6d\x2f\xbd\x6d\x41\x7c\x6c\x31\x4d\ -\xef\x00\x30\xe6\x5c\x06\x2b\x2f\xc5\xdb\x6a\x6a\xb2\x8b\x04\x7d\ -\x0e\xf6\x56\x4c\xba\xd2\x5b\xf4\x83\xea\xa2\x5b\xb6\x69\x14\xd8\ -\xc9\x3e\xe2\xd0\x02\x4f\x69\x71\x45\x86\x91\x09\x20\x0d\x47\xf9\ -\xc9\xa1\x59\x7d\x8d\xe2\x1d\x74\x4b\xae\x5b\x13\x9b\x1a\xa0\xd7\ -\x9c\x91\x75\xbb\xb8\x39\xcc\x07\x51\xf3\xa2\x49\x45\x4f\x39\x6f\ -\x8c\x55\xa1\x8a\x03\x1d\xa2\x03\x37\x4c\x7c\x64\x3d\xc7\x3d\xaa\ -\x02\x56\x6d\xa3\x32\xa6\x8b\xfa\xdf\xe0\x21\x78\x07\xd7\x64\xb7\ -\x37\xa6\x6a\x4f\x30\x7f\x8a\xf9\x4f\xba\xd7\x8b\x5a\xec\xa9\x26\ -\xb1\x54\xb8\xa3\x3d\x1e\x56\x7f\xa6\xf3\xe0\x80\xbf\xec\x48\x56\ -\x59\x4a\x7d\x70\x85\xba\x96\x13\x7a\xae\x64\x50\x03\x3f\x43\x8b\ -\xde\xb3\xa5\x42\x5a\x29\x99\x2d\x21\xa3\xb9\x56\x0e\x0c\xff\x42\ -\xda\xe8\x4e\xed\xa6\x6f\xf3\x73\xc5\xc0\x8b\xcf\x1a\xb6\x51\x48\ -\x63\xf2\x34\x67\x4d\xb2\xec\x14\xeb\x50\xe4\x9f\x5c\xdc\x38\x86\ -\x55\x4b\xf4\x0c\xb2\xa4\xe9\xa7\x36\x32\xec\x47\xa7\x3c\xa5\x70\ -\x58\x40\x93\x38\x5a\x1e\xe3\x15\xcb\x68\x39\x77\xb2\x12\x76\xd8\ -\x8f\xc1\x32\x41\x02\xf1\x1e\x4d\xb2\xd4\xd5\x29\x17\x39\x41\x5f\ -\xe4\x58\xb2\x57\x0b\x02\x40\x29\x11\x10\x19\xdc\xa6\x43\xd1\x00\ -\x47\xc2\x3e\x77\x89\x33\xb9\x50\x09\x9b\x5e\x50\x47\xca\x2c\xa1\ -\xaa\xc3\x12\x69\xa6\x5a\x95\x65\xbb\xb9\x18\x50\xc5\x03\x6e\xa4\ -\x52\x84\x4b\x42\xae\x3f\x00\x2b\x6c\x72\x4b\x7d\x2a\x64\x41\xa9\ -\x37\x30\xf8\x6b\xd5\x99\x99\x20\x13\xbf\x94\x63\x26\x02\x7c\xc4\ -\xf8\x4e\xbd\x7b\x86\x95\xb9\xca\x1e\xbb\xb1\xa7\x68\x7e\x0d\x1a\ -\x3f\xb4\x4c\x40\xc4\x54\x59\x8d\x92\x38\x44\xc5\x6f\x09\xaa\xb1\ -\xac\xe0\x88\xc1\xe3\x68\x64\xea\x7b\xb5\x2f\x9d\x1e\x96\x09\x63\ -\x68\x1c\xe8\x01\x9c\xa8\xbe\x9d\x2c\x4d\xd7\x3d\xd7\xdb\x37\x96\ -\xb7\x7e\xdf\xda\x43\x05\x3c\x2b\xd0\xc5\x68\x73\x91\x95\x5e\x80\ -\x1e\x05\x35\xcf\xcb\x11\xa9\xb8\x47\x2d\x4c\x33\x9c\x98\x83\xc6\ -\x1a\x5e\x56\x5d\xa1\x0d\x4b\x69\x21\x8c\x09\x7d\xca\xcc\x97\xf2\ -\xa0\x0d\x0a\xa3\x20\x60\x40\xb5\x60\x4c\x8e\xab\x18\xd1\x54\x9c\ -\x97\xe3\x60\x46\x7c\x35\x8e\x55\xc0\x37\x26\xc7\x2c\xea\xfc\xb0\ -\xe2\x0a\xda\xa7\x14\x3e\xd4\x69\xb1\x75\xdc\x5e\xc9\x9b\x27\x15\ -\x45\x73\x80\x4a\xf6\x11\x1a\x80\x1d\xc6\xd8\x76\x51\x09\xbc\xd6\ -\xef\xdd\xa7\x75\x0e\x5b\xc5\xa4\x21\x53\xda\xd7\x7e\xec\x6b\x80\ -\xb0\xdd\xb7\xb2\xaf\xd4\xde\xfd\x5a\xe7\x80\x0d\x16\x4c\xf2\xde\ -\xf6\xf1\xde\x1c\xa4\x7f\x5d\xe9\xad\x61\x1f\xf4\x36\x64\x66\x12\ -\x47\x73\x6b\xd9\xd9\x51\x5e\x07\x55\x7a\xe2\xbd\x4f\xdf\x08\x9d\ -\x75\x30\x73\x11\x46\xdc\x29\x08\xfe\xd8\x9d\x10\xa5\xab\x62\xcc\ -\x52\xff\xa1\xa6\x71\x31\x46\x11\x5b\x2d\xbf\x01\x6c\x30\x1d\x73\ -\x02\x82\xe5\x85\xca\x50\x3c\xaf\x92\x39\x6f\x3c\x88\x94\xfe\xc0\ -\x83\x6d\x4a\x6d\x6e\x42\xd4\xd5\x8b\xfa\x51\x59\xd1\x93\x76\xed\ -\x84\x45\x6d\x15\x67\xff\xc9\x3b\x04\xfc\x71\x36\x89\x4a\xf5\x4c\ -\x52\x75\x4b\x94\x7f\x6b\x87\x38\x31\xcb\x9f\x03\x11\xc1\x62\x79\ -\x58\x45\xd8\xe8\x14\xfd\xa9\x35\x48\x36\x17\x6e\xe3\x38\x87\x3c\ -\x77\xfe\x33\x38\xa6\x54\x3a\x22\x60\x2c\x8e\xa5\xa6\x24\xa4\xde\ -\x6b\xc0\x9e\x89\x9b\x00\xa4\x87\x75\x14\xfb\x3c\x82\xc1\x6a\x99\ -\x95\xb8\xd3\x2c\x53\x7f\xed\x2d\x2f\x9e\x9e\xca\x37\x7c\x09\xc3\ -\x86\xee\x04\x41\x91\x46\x25\x1e\x46\x70\x36\x62\x6d\x2c\x88\xa3\ -\x92\x8d\x1e\x08\x33\x8b\xd9\xe9\x78\x58\x4a\x65\x77\x69\x23\x25\ -\x17\xa4\xdc\x38\xff\x99\x4a\x3a\xc7\x01\x21\xe7\xd0\x28\x8c\x91\ -\x31\xd1\x4d\x49\x48\x3a\xb7\x78\x3c\x74\x6c\x65\xf2\x45\xee\x86\ -\x32\x67\x92\xbe\x9f\x27\x99\x10\x49\xc8\x73\x49\x92\x9d\x23\x72\ -\x4e\x14\x42\x8b\x7a\xd1\xb0\x31\xdf\x12\x2e\x50\x3a\x86\x03\x43\ -\xae\x8b\x20\x7b\x11\x83\x8f\xc3\x41\x1c\x03\xa8\x75\xb6\xab\xe0\ -\xa9\xf8\xdb\xf1\xf5\x19\x31\x7b\x6f\xc6\x67\x2a\x33\x06\xeb\xd9\ -\xab\xc8\xa2\x6e\xd0\xaa\x3c\xf7\x86\xac\xc2\x69\xae\x3a\xdb\x84\ -\x33\xad\x86\x51\xe5\x39\x89\x95\xc5\xa9\xc4\xb5\x4c\xde\xd1\x60\ -\xb2\x96\xc9\x19\x33\xb3\x49\xe5\x52\x4f\xc2\x38\x3d\xcd\x62\xc7\ -\x1d\x1a\xb1\x24\x3a\xca\x4e\x73\xd4\xb3\x3b\x3c\xe2\x9c\x32\x26\ -\x76\x38\x31\xeb\x20\x25\x8f\x08\xf7\x41\xe6\xfc\xa2\xc1\xc1\x94\ -\xa4\x33\x9d\x1f\xb1\x72\x49\xe1\xe9\x0f\xc1\x13\x57\x5a\x95\x04\ -\x4d\xa7\xaa\x70\x29\xba\xe5\x98\x50\xd5\x04\x0b\xdf\x41\xf8\xd9\ -\x7c\xf2\x80\xcd\x0e\xbc\xf5\x89\xf6\x51\x93\x51\xcc\x87\x8e\xe0\ -\x91\xac\xd2\x7c\xe8\x10\x87\xa4\x06\x1a\xb5\x01\x5d\x75\x90\xa8\ -\x23\xbb\x6b\xa0\x09\x3b\x5b\x5b\x79\xbd\x09\x5e\xbe\x90\xb0\x73\ -\x55\x15\x87\xab\x83\xdd\x3a\x12\x78\x59\xc3\x33\xa9\xfa\xe0\xdf\ -\x4a\x25\x7b\xa0\x5c\xdd\x20\xcf\x77\xe8\xd8\xd1\xd7\xb7\x92\xc5\ -\xba\x2d\xef\x32\x08\x1f\x98\x1d\x78\xd2\x7d\x8e\x04\x2b\xee\x1a\ -\x3a\x76\x19\x34\x28\x34\x11\x9c\x59\x13\x1e\x0c\xd9\xc1\xce\xfb\ -\x53\x66\x45\xcf\x5c\x8c\x98\xd5\x2e\xee\xda\xa8\xaf\xee\x31\x8b\ -\xc1\x5e\x97\x29\x19\x4d\x59\xec\x11\xd8\xe3\x25\x6b\x74\x7a\xd9\ -\x85\x0e\x4c\xa1\xf0\x9d\x55\x81\x1e\x2f\x55\x7a\x8c\x3a\x54\x5c\ -\x06\x22\xc7\xbc\x68\x33\xdb\xc4\xc3\xa2\x14\xec\xd4\x05\x7f\x71\ -\xc2\x2a\xcc\xb4\x04\x03\x7d\x6b\x7b\xd5\xeb\x25\x58\xf4\x6d\x8c\ -\xd6\x01\xe6\x2d\x1b\x83\x69\x60\x75\x4f\x5a\xbc\xb2\x60\x55\x81\ -\x5e\x7b\x94\x0a\x00\xbb\xb7\xfc\x05\x9e\xa1\xe8\xa3\xff\x3e\x0e\ -\x71\xef\x61\xb9\x7b\x7b\x34\x7a\xf3\x25\x03\x41\x6c\xea\x15\x65\ -\x8a\xf2\x02\x1f\x1f\x65\xf4\x72\xa5\xe7\x62\xf9\xb9\x72\xfd\x5f\ -\x2f\x68\x29\x50\xde\xc1\x25\xd4\xc8\x4b\x81\x78\xed\x04\x7e\x63\ -\x67\x43\xf5\x28\x08\x6b\x13\x3d\x68\x78\x65\x42\x4f\x10\x1b\x6b\ -\x22\x2e\xad\x14\xe9\xbf\x99\x2e\x9c\x3c\x89\xdd\xf4\x18\x73\xa3\ -\xa4\x32\x48\xb2\x4b\x1e\x95\x06\xc3\xc0\xa1\x2c\x21\x28\x15\x9e\ -\xac\x59\x0a\xde\x9d\xa2\x9e\x7f\x2c\xcc\x0e\x75\x6d\x58\x0a\x51\ -\xe2\xe4\x94\x3e\x3c\x06\x9c\xb3\x29\x2f\x60\x66\x04\xe5\x4e\x17\ -\x8d\x20\x8a\xda\x80\x64\x34\x44\x0e\x8f\x35\x28\x07\x6f\x19\x34\ -\x01\xad\xed\x0d\xcd\xf7\x19\x22\x2e\x01\x63\x51\x50\xdf\x8e\x9c\ -\xbe\x31\x5a\x1c\x28\x6f\xc6\x54\x5a\x7e\xbd\xac\xdf\xc2\xac\xab\ -\xf0\x81\xc1\xe2\x9c\xa4\x72\x9b\x09\x67\xde\xe5\x29\x09\x3d\x7e\ -\xcb\xa0\xd8\xeb\x9c\xe7\xbc\xc9\x58\x84\x9e\xab\x28\xfd\xbc\xf7\ -\xfb\xcf\x6d\xc3\xe8\x2c\xc3\xae\x33\x66\x95\x72\x99\xd0\xfe\x41\ -\x75\xeb\xa6\xe9\xc6\xee\x18\xd4\x3a\xcd\xe5\x21\xa9\x37\xc3\x0d\ -\x90\xca\xbb\x37\xfa\xa5\x2f\x89\x2e\x15\x0b\x72\xbf\x7a\xd6\xaf\ -\x2a\x23\xd8\x8d\x15\x32\x13\xa2\xe3\x75\x80\x54\xc1\x8b\xfb\xb7\ -\x28\x5a\x06\xc9\x26\x90\x36\xdb\x80\xc7\xe8\x41\x4d\xf4\x73\xb3\ -\x82\xa8\xb3\xfa\x94\x1a\x31\x9b\xab\x00\x3c\x3d\x8d\x1e\xc4\xcb\ -\x4e\x40\xa5\xb1\xb7\x11\xc7\xca\x95\x5c\x98\xff\xd0\xce\xde\xbe\ -\x4d\x41\x1c\xb4\xe0\xc9\x5d\x61\xe5\x57\x1d\xa1\xfb\x34\xdf\x81\ -\x5b\xe5\x98\x32\xc5\x8f\xd7\x0a\xf3\xe6\x02\x5f\x1f\xd1\xe7\x92\ -\xb6\xf0\xd6\xca\xb1\xa4\x4a\x0f\xf3\xe3\xa0\x50\x8e\x5f\x63\xed\ -\x23\x17\x72\xb1\xaf\x79\xfc\xa5\x7f\x6d\xbc\x13\xdf\xdd\x7f\xb1\ -\x13\x89\xbe\x6a\x47\x4c\x44\xb9\x71\x27\x16\x92\xd0\x7d\x3a\x21\ -\x48\x7c\xb7\xd9\xf8\xe4\x85\xda\x4f\xf0\xd6\x81\x46\xde\x5a\x5c\ -\x3e\x50\xa6\xa1\x7f\x27\xaf\x68\x28\x0e\xbe\x55\x1a\x2e\xe2\xc5\ -\x84\x42\xca\x0c\xa2\xb1\x15\x3c\xca\x61\x4e\x3f\xc8\x75\xe8\x60\ -\x10\xdc\x41\x50\x21\x62\x63\x90\x0f\x03\xfd\xc8\x20\x2c\x7b\x34\ -\x8d\xd2\xa9\xe8\x65\x29\xa4\x47\xd2\xca\x8f\x5d\x57\x77\x14\xf8\ -\x68\xb8\x5f\xad\x2d\x94\x02\xb6\x9f\x97\x02\x06\xde\xdf\x8e\x07\ -\x38\x59\x20\x06\x55\xad\x25\x75\x45\xbc\x36\xf7\xdf\x1b\x18\x3c\ -\xd4\xaa\xb3\x9f\x1e\x0a\x0e\xbc\x67\x5b\x28\xb0\xa4\x12\xd7\xbd\ -\x22\x56\xef\x9c\x2b\x05\x1e\x5a\xc8\x42\x61\xc8\x2a\xcb\x56\x83\ -\x16\x53\xe0\xc5\x79\xf2\x45\xc2\xf2\x33\x94\xea\xe4\x84\x1b\x79\ -\xe5\x85\xc5\x4d\x7f\xa5\x69\x0f\xd7\x89\x6a\xa9\xab\x88\x4c\xa8\ -\x73\x57\xf7\x5c\xd0\xcf\x25\x8a\xe6\x3b\x71\x53\x66\x14\x64\x4d\ -\x06\x7d\x3f\x2c\x9e\x72\x60\x9a\x4b\xc2\x1a\x6f\xc6\xfb\x0e\x7d\ -\x42\x78\x00\x8c\x4f\xbe\x65\x5d\x1a\xd4\x03\x1d\x28\xdc\x43\x2f\ -\xef\x23\x5e\xe6\x5b\x4a\x9b\x01\xea\x87\xf7\x89\x8a\x7e\x9f\xb5\ -\x16\xbe\x8d\x50\xe4\x30\xe4\x89\xdf\x06\x51\x83\xda\x45\x94\x65\ -\x47\x88\x41\xc2\xd7\x6d\xb3\x7d\x66\x7d\x8a\x14\xee\x94\x77\x13\ -\xd2\x4b\xb2\xe5\x8d\xb5\xbe\x6b\xb4\x3b\xfb\x82\x72\xf7\xea\x08\ -\xc8\x04\x04\x61\x5b\xd1\x5f\x51\x1d\xd6\x1f\xd1\x31\xa2\xa8\xc2\ -\x65\x36\x83\x01\x65\x06\xeb\xbc\x19\xa8\x60\x0b\x7a\xa5\xf5\xc6\ -\xb0\x68\xf8\x55\xd4\x21\x6b\x9d\x03\xc1\xe9\x2c\x40\xb9\x23\xcf\ -\xaf\x63\x19\x16\x0a\x9e\x2c\xfc\x6e\x18\xa0\xf5\x3e\x43\xe6\xe5\ -\x41\xfa\xbf\x94\x6c\xe1\xe5\x59\xe2\x7c\xfa\x33\x7c\xeb\xe3\x2f\ -\x24\x55\x0d\x98\x1e\x8c\xbc\x89\x9b\x48\xe8\xdc\xa6\xbd\x20\xed\ -\x84\x34\x4a\x64\x68\x63\xc0\x2a\xc1\x32\x9d\x21\x8e\x53\x77\xc6\ -\x0d\x7a\x3e\x0e\x33\x30\x7a\x44\x20\x4b\xc7\x53\x3b\x58\xb4\xcc\ -\x74\x83\xe4\xbd\x25\x12\x5a\x36\x2e\x85\xa7\x84\x2e\x89\xa8\x78\ -\x10\xeb\xea\x10\xf5\x54\x74\xdd\xe7\x96\x2c\x15\x50\xd1\x61\x7b\ -\xf0\x92\x02\x5a\x95\x88\x17\x5b\x32\x0b\x26\xe4\x86\x14\x22\x81\ -\x90\x67\xed\x46\x9f\x86\x19\x3c\x1c\x5f\xa2\xcf\xf1\xec\xc3\xa8\ -\xc0\xa7\x04\x75\x95\x00\x95\x1e\xa1\x1b\x3e\x3c\xb3\x47\x43\x10\ -\xcd\xec\x34\x83\x3e\x08\x76\x7f\x24\xd8\x47\x79\xd8\x4e\x3d\x26\ -\xbd\x27\x9e\x43\x3d\x60\x16\x0b\x60\x80\x32\xd9\x2d\x21\x3d\xca\ -\x95\xa0\xc1\xb1\x0f\x44\x8e\x9d\x1c\x51\x23\x18\x7e\x73\x43\x6b\ -\x3a\x82\x4f\x2c\x4f\x5e\xa8\x10\xae\x13\x10\x86\x50\xd5\xa3\x8d\ -\x80\x7a\x1d\x17\x8b\x9c\x31\x60\x0a\x19\xa3\x90\x36\xc3\x6b\x3d\ -\x12\xc3\x1e\x16\x0a\xa6\x0c\x56\x1b\x32\xf3\x8d\x05\x9d\xa3\x80\ -\x8f\x7a\x5b\xb9\x2e\xc2\x03\x78\xa5\x00\x18\x8c\x46\x93\x56\xb5\ -\xa7\xb1\xce\x44\xc0\xcc\x9f\xc6\xac\xee\x39\x21\x40\xd7\x44\x80\ -\x12\xbc\x1b\x81\xbe\x99\x57\x70\x76\x32\x03\x61\x8d\xa4\xa9\x6c\ -\xc9\x11\xf1\xe5\x99\x09\x2a\x6a\xc8\xb8\xcb\x8e\x83\x43\xb7\x87\ -\x86\x16\xd7\x18\xc7\x8d\xbf\x33\x34\x7e\xf0\x22\x09\x95\xe5\x55\ -\x71\xa5\x1e\x4a\x34\x11\x01\xcb\x12\x06\x8b\x7a\xef\x83\x27\xa0\ -\xf0\xcc\xa0\x99\xe9\x5b\x16\x1c\x1a\x7c\xf0\x20\x47\xc9\x62\xf0\ -\xa3\x5e\x61\x62\x30\x00\x43\x25\x59\x09\xc5\x42\x18\xc8\x6e\x06\ -\x24\x96\x1c\x3a\x92\xf9\x58\x92\x93\x32\x25\x77\xdd\x4c\xb0\xa0\ -\x33\x21\xd7\x38\x4c\xd8\xb3\x39\xd5\x69\x1c\xa3\x1d\x13\x88\xc4\ -\x58\xba\x0a\x12\x76\xc4\x09\x4d\xa0\xf1\x26\x8c\xf2\x54\xb6\x3b\ -\x04\xe8\x08\x11\x95\xc6\xc1\xf5\x8d\x16\xff\x22\xbf\x30\xae\x18\ -\x61\x12\x8d\xcb\x39\x70\x78\xfa\x09\x5b\x69\x45\x09\x00\x44\x26\ -\xd5\xc2\xa3\xe1\x35\x0f\x93\x5f\xd6\xab\x31\xf1\x0f\xa6\x92\x9e\ -\xff\xde\xa6\xb2\xe4\xe7\xd0\x03\x16\xf4\x1c\x1b\xbd\x87\x02\x17\ -\x87\xa3\x30\xf3\xab\xa0\x08\x6a\xef\xe1\x43\xe5\x62\x38\x70\x99\ -\x7f\x58\x24\xf4\x1e\x4c\x80\xbb\xb1\x3c\x78\x5d\xd9\x91\xa5\x4e\ -\x64\x55\x4c\x39\x5e\x47\x52\x0e\x41\xea\x49\x6e\x0e\x91\x97\x59\ -\x05\x33\x49\x51\x88\x5b\xeb\x9f\x01\xd5\x93\x40\x6c\x05\x16\xe0\ -\xe2\x68\xe4\x6c\x9c\xb6\xf2\x45\xfa\x72\x70\x42\xb7\x27\x9c\x90\ -\xbf\x24\x42\x58\x7d\x92\x34\xe3\x2c\xa5\xa8\xe9\x25\x9b\xdc\xba\ -\xf0\xe4\xb0\x24\x41\x51\x12\x33\x4f\x2f\x6c\xbb\xa8\xd3\x0b\x6e\ -\x95\x0e\x1f\xe3\x16\x36\xfa\xa2\x95\x38\x37\xca\x3c\xe0\x37\xf8\ -\x81\xf7\x2e\x72\xb7\x05\x99\x79\xe6\x9f\xa2\xad\xe9\x4f\xc1\x09\ -\x6c\x4c\x3c\x81\x99\xe5\xd2\xd2\x48\xa0\xca\x4a\xa3\xdc\xac\x86\ -\x9f\x41\xf7\x29\x29\x72\x7f\xcd\x0e\x0f\x5b\x79\x80\xbe\x27\x06\ -\xd0\xa0\x86\x94\x49\xe6\xac\x69\x3b\x2e\xbd\xc9\x28\x38\x81\xcf\ -\x27\xce\xf2\xc7\x9d\x37\x19\xbe\x01\x9b\x6a\xa7\x70\xaa\xa5\x84\ -\xde\xe2\x51\x4f\xfc\x06\x4f\xb1\x50\x8b\xef\x59\x51\x91\xe3\x11\ -\x4f\x54\x9a\x66\x87\xef\x74\xca\x82\x16\x4c\xda\x78\x49\x60\x70\ -\x95\xbc\x12\x21\x3c\xa6\x42\xd4\xfc\xa4\x73\xba\xe3\x50\x2b\x30\ -\x2a\xc9\xf3\xf0\x8c\x27\x55\xea\x3e\xa7\xd1\x9f\xd3\x0d\x9f\xcc\ -\x27\xa6\x67\xf3\x5c\x49\xb9\x63\xbf\x82\xad\xc7\x91\x60\xa5\x61\ -\xce\x9c\x4b\x19\xec\xd8\xa6\xa2\x82\x27\x76\xd8\xf4\x69\x08\x24\ -\x8b\x3e\xa5\x56\x2a\xb8\x66\x0e\x2b\x4f\xf0\x3c\x2f\x5e\x73\xc2\ -\xde\x1d\x29\xb9\x2e\xf8\x92\xfa\x28\xbf\x83\x49\xc1\xc3\x4d\x91\ -\x78\x88\xcf\x79\xc7\x1f\x64\xe2\xbb\x8c\x77\x06\x12\x90\xa5\x20\ -\xf2\xca\x7b\x19\x5b\x59\xaf\xce\x37\x98\xf3\xc7\xd3\x4d\x7c\x6b\ -\x9d\xb7\x26\xe0\x41\xd8\xef\x67\x67\xd6\x30\xe6\x62\x20\xd0\xb4\ -\x2a\x0d\xdb\xa7\xd1\x8b\x90\x03\xb6\x6d\x85\xde\x74\x3c\x21\x6f\ -\x10\xcf\xa2\x08\x29\xdc\xa1\x32\xd1\xe5\x31\x22\xee\xe4\xd3\x71\ -\x5b\xa0\xcb\x7d\x15\x5e\x4a\x28\x0f\x1a\xd9\x26\xa3\xc5\x63\x3a\ -\xad\x7b\x05\xab\xcd\x36\x10\xfc\x20\xdf\xa6\xc8\x36\x11\x09\x91\ -\x21\x9d\x6d\xe1\x08\xed\x1c\xf9\x5e\x38\x56\x43\xdf\x8f\x8c\xd5\ -\xcc\x55\x5a\x85\xab\x4a\x59\xbb\x3d\xa2\x80\x34\x10\x40\xf2\x16\ -\x4c\xc2\x35\x68\x85\x12\xa2\x65\xcf\x1b\xf2\x85\xd9\xe4\xe6\x71\ -\x8d\x97\xa2\xa9\xc7\xba\xb5\x6e\xf7\x36\x6f\x53\xb3\x36\xb8\x30\ -\x4d\x40\xbd\x61\xd1\x51\xbb\x23\x8a\xe3\x2f\x51\xdf\x25\xa2\x52\ -\x7b\x54\x91\xd3\xfe\x63\xfd\x18\xaf\x46\x5d\x74\xa7\xe1\x91\xf8\ -\x1a\x86\xae\x44\x90\x28\xe5\x8d\xbe\x82\x8d\xce\x4d\x4c\xcb\x1e\ -\x07\xbd\x57\xa0\xb2\x59\x58\xe8\x3a\xbd\xaf\xd8\x35\xf3\x21\x61\ -\x3d\x4f\x39\xd0\x24\x2a\x8d\xd7\xb8\xd3\x4c\x8f\x6b\x3b\xa2\x32\ -\x93\xfb\x95\xa6\x42\x51\x8b\xcd\xcd\x22\x4e\x13\x64\x3e\xf5\xc0\ -\x66\xa1\xd2\x7c\xd1\x56\x9c\xbc\x9c\x58\x27\x0e\xcf\x23\x36\xae\ -\xc5\x0e\x49\x66\xc5\x6d\xbe\x90\x6b\x70\x5a\x9d\x0a\x6c\x6a\xf6\ -\x53\xf8\x41\xcc\x9a\x52\x73\xa1\xad\x6c\x24\x9e\x10\x0d\xa5\x42\ -\x35\xa5\x43\x76\x00\x95\x3f\xa9\x2a\x41\x3e\x0e\x3b\xc2\x63\x5d\ -\xa2\xb3\xaa\x8b\x43\x5d\x49\xee\x8e\xe9\x08\x19\x38\xd4\x51\xbb\ -\xd2\x91\x92\x81\x54\xbb\xf3\x3a\x3b\x1e\x3b\x4b\xb3\x94\x64\x74\ -\x77\x8b\x94\xee\xfc\xbb\xf9\x55\xa8\x18\x9e\xc4\x2e\xfc\xb2\x78\ -\x12\x9a\x2c\x7a\x7a\x6d\xd8\x91\x51\xc8\xc4\x80\xb3\x42\xe9\xc9\ -\x67\xb3\x04\x84\xa1\xda\xe7\x1c\xec\x93\x59\x26\xd1\xbd\x76\x85\ -\x6e\xdd\x56\x77\xb5\xc4\x2d\xc5\x09\xd8\xaf\xb8\x84\x2e\xa6\xeb\ -\xac\xd2\xb5\x7a\x31\xb0\xec\x32\xb8\x31\xd4\xaf\xee\x31\x6e\x1b\ -\x78\x43\x7a\xf4\x18\x97\xf6\x01\xb5\x1c\x81\xc2\xbb\x83\x11\x20\ -\xdc\x23\xd9\x39\xb0\x9c\xe9\x66\xfa\xbd\x6f\x39\x0d\x2f\x84\x00\ -\x5d\x36\x23\xa0\x61\x32\x94\xc3\x84\xba\x53\x79\x2d\x8f\x86\x89\ -\xf4\x3a\xca\xa1\xd3\x2a\x16\x2d\x87\xde\x6a\x19\xdd\xed\x7c\xa5\ -\x5b\x66\x1f\x50\x91\xa1\x76\xd3\x8c\xdd\xb0\x73\x24\xca\x2e\xb4\ -\x8d\x50\xc9\x38\x79\x3c\xf3\x32\xc8\x6c\x7e\x0d\x78\x0c\x03\x77\ -\x97\xed\x5a\x70\x22\x0d\xce\xe4\x7d\x9d\xcf\xf3\x77\xce\x98\xb1\ -\x2c\x57\x3b\x7c\x7f\x42\x96\x27\x0d\x98\x7f\x94\x0a\x70\xb5\x93\ -\xd6\xd9\x65\xb7\xae\x15\xee\x6e\x99\xaf\x3b\x71\x00\x73\xdc\xfc\ -\x19\x03\xb1\xd3\x90\xa3\x27\xdf\x1e\xd9\x5f\xf4\x3a\xab\xbd\x45\ -\x2f\x72\x4a\x5e\x2d\x22\x73\x63\x3b\xe9\xab\xa1\x17\xbd\x03\x4e\ -\xa4\xce\xdd\x85\x4b\x1f\xd2\x68\x6a\xea\xda\x0e\xb5\x6a\x63\xad\ -\xa8\x7a\x8f\xcc\x20\x0f\xc3\x3f\x5d\x35\xa6\x42\x09\x43\xbf\x4f\ -\x35\xbb\xf2\x9f\x53\x77\xa1\xf1\x25\x92\x87\x9e\x37\x55\xb6\x06\ -\xa8\x09\x26\x2f\x2e\xba\xd7\x95\xe9\x53\x4a\x0a\x5b\x41\x43\x62\ -\x53\x8b\xc4\xe8\x10\xa5\x90\x90\x19\x17\x94\x84\xca\x55\x64\xfc\ -\x70\xb2\x9d\x11\xe9\x4c\x95\x2f\xd9\x4e\x83\x60\xeb\x56\xde\x7a\ -\xef\xbe\xc8\x7c\xa8\xbf\x83\xfd\xe5\x3a\xd8\x3f\x63\x07\xfb\xca\ -\x76\xb0\x2f\xba\x83\xb3\x7c\x96\x4b\x74\x7c\x24\xec\x2c\x48\xba\ -\x3e\x89\x77\xaf\x7b\x11\x50\x30\x4d\xe8\xb2\x06\xc9\x7b\x57\xe2\ -\x81\xd4\x02\xa6\x28\x07\x58\xe4\x6d\x24\x10\x0b\xa3\x80\x60\x7e\ -\x67\x10\x8c\xe4\xf3\xb5\x25\x9d\xcd\x34\x14\xca\xb1\xd0\x8c\xcf\ -\x9c\xe5\x8c\x73\xbe\x81\x16\x44\x0d\x84\xe2\x2d\x9c\xa6\x4b\x3a\ -\x0e\x8b\x18\x31\xdf\x77\x55\xe0\x02\x76\x75\x6c\x2d\x6a\x6c\xd7\ -\x36\xf3\xab\xd8\xb5\xe3\x41\x08\xce\x4b\x0c\x81\x38\xbd\x45\xb9\ -\x97\x59\x19\x77\x51\xd4\xb8\x25\x76\x37\x73\x70\xcc\x6d\x61\x9e\ -\x0d\x18\xb8\x76\xc4\x91\x4d\x51\x87\x2d\xaa\x87\xc8\x75\x73\x08\ -\x90\x55\x68\x6c\x83\x26\xab\xcc\x74\x29\xa7\xdb\xc1\x12\x45\x71\ -\xd4\x9c\x02\x53\x47\xe0\x18\x59\xe1\x9a\xaa\x09\x5e\x35\xc7\x78\ -\x22\x3f\x4c\xd6\x73\x47\x59\x0e\x24\xec\x98\x0c\x79\xda\x45\x1c\ -\xc6\x9b\x53\xc4\x78\xe3\x10\xaa\x95\xde\x88\x8a\x99\x01\xdc\xdf\ -\x56\xa6\xd8\x8f\x88\x13\x45\x64\x74\xc5\x9f\x62\xd7\x7d\x10\x2f\ -\x19\x0e\x14\x01\xd2\xd2\x79\x1a\x06\x11\x3b\x20\x82\xb0\xaf\xc6\ -\x65\x9a\xf2\xc2\xe0\x33\x9e\xfa\x22\x25\xcb\xb0\x35\x3a\x4a\xaf\ -\x88\xf1\xdd\x9d\x38\xc8\x2f\x23\x50\x86\x60\x57\x58\x9b\x4a\xa8\ -\xb1\x9a\x5e\x49\x1f\xca\x9f\xa9\x57\xd3\xcb\xab\xe3\xcb\x5c\x51\ -\x4f\x58\x09\x04\x3b\x24\xfe\x74\x90\xae\xb2\x94\x60\x31\x5e\x5a\ -\xef\x5d\x06\x2f\xae\x81\xef\xa4\x67\xb8\x9f\xbe\x3f\x18\x0a\xa9\ -\x06\x24\x48\x1a\xab\xde\x1d\xa6\x9c\x87\x65\x51\x32\xa2\x29\xfa\ -\x50\x7d\x3f\x84\x6a\xe8\x5a\xac\xb0\x7a\x99\xbd\x28\xff\xf0\xdf\ -\x35\x6b\xc5\xc4\x42\xcb\x15\xf0\x75\x92\x3d\xca\xdc\xdf\x47\x6b\ -\xa5\x59\x84\xcb\x3b\x02\x5f\xec\xeb\x63\xc1\x3f\xba\x2b\x9c\xd2\ -\x35\x0d\x7e\xa1\xc9\xe3\xb0\xe0\x97\xd4\xf1\x4a\xe5\x5e\xe7\x9e\ -\x20\xba\xd4\x9b\xbd\x67\x62\xa1\x13\xf0\x66\xef\x19\x18\x68\x2e\ -\xc0\x6f\x12\xb6\x49\x29\x5c\x4b\x94\xe2\x97\x83\x87\x4b\x89\x2a\ -\xc9\x5e\xef\xad\x8a\x60\xf1\xea\x6a\xb2\x3d\xd2\x61\x70\x50\x97\ -\x47\xd4\x4c\x4a\xd1\xbe\x57\x39\xf5\x8e\x62\x4c\x7a\x14\x21\xc2\ -\x01\xb3\x42\x6e\x22\xd9\xbb\x2f\xe2\xf7\xfd\xca\xef\xfb\x43\x13\ -\x90\xad\x2b\x82\x8d\xcb\x4d\x60\x5f\xf9\x09\xec\x4b\x3e\x81\x7d\ -\x2a\x80\xfb\xc2\x00\xca\x5f\x2b\x82\x3f\x96\x03\x70\x7f\x79\x00\ -\xf7\x27\x05\x50\x0b\x14\xf9\x07\x83\xc3\x32\x6c\xd0\xaa\xb3\x92\ -\x7a\x1e\xd5\xed\x09\x75\xb4\x0b\x83\x37\xe1\x2e\x72\x2c\x05\x29\ -\xbd\x48\x6c\x04\x62\x8d\x45\x87\x37\xea\x6a\x7c\xf0\xdf\x00\x11\ -\x7a\x2e\x5a\ -\x00\x00\x32\xd1\ -\x00\ -\x00\xaa\x81\x78\x9c\xcd\x7d\x09\x98\x1d\x55\x95\xf0\xed\xf4\xfe\ -\x7a\x0b\x21\x04\x08\x01\x2a\x9d\x10\x3a\xa1\xd3\x1d\xb2\x10\xd2\ -\x86\xa5\xd3\x9d\x4e\x02\xd9\x4c\x37\x21\xc9\xa0\x52\xfd\x5e\x75\ -\x77\xa5\xdf\xab\x7a\x54\xd5\xeb\x0d\x0c\x88\x28\x3b\x88\x40\xd8\ -\x34\xe2\x88\x88\xcc\x8f\xe3\xfc\x2e\x3f\xee\x1b\x30\x02\x82\xfe\ -\x8e\x3a\x83\x33\x22\x08\x3a\xfe\xa2\xc2\x30\xea\xb8\xe0\xcc\x9c\ -\x7b\xee\x5a\xcb\xeb\xae\x8e\xce\xff\xf9\xf1\x85\xf7\xba\x5e\xdd\ -\x7b\xcf\x3d\xf7\xdc\xb3\xdf\x73\x37\x3e\x9a\x3b\xe1\xa9\x57\xdf\ -\x77\xe7\x33\x8b\x17\x7d\xe9\xd2\x0f\x7e\xe1\x07\x9b\x08\xa9\xbf\ -\x9b\x10\xb2\x8f\x90\x23\x5d\xf0\xb9\x9f\x90\x0f\x54\xc0\xe7\x01\ -\xf8\x7c\x88\x90\xea\xe7\xe0\xf9\x57\xe0\xf3\xfb\xf0\xf9\x22\x7c\ -\xfe\x0c\x9e\x5f\x47\x48\xed\x04\x21\xa3\x0b\x09\xd9\xfa\x4e\x42\ -\x2a\x8f\x65\x9f\x97\x1d\x24\x64\x64\x2d\x21\x43\x2d\xa4\xea\xc1\ -\x49\x42\x82\x9b\x49\xd5\xe7\xaa\x08\x69\x58\xc5\x3e\x27\x5e\x26\ -\xd5\xab\x36\x13\xd2\x74\x27\xfb\xbc\xe1\xd7\xa4\xba\xef\x71\xf8\ -\xfb\x31\xf6\x79\xe3\x5d\xa4\x7a\x2f\x3c\xdf\x5c\xc9\x3e\x6f\xfc\ -\x7b\x52\xfd\xbf\x7e\x45\xc8\x09\x6f\x90\xea\x47\xff\x48\xc8\x7d\ -\xff\x44\xaa\xbf\xf9\xf7\x84\xbc\xef\x1a\x52\xfd\xc2\xbb\x08\x69\ -\x7d\x92\xd4\xfc\xcd\x4d\x84\x0c\x0f\x93\xb9\xd7\x6c\x23\x64\x77\ -\x27\x99\x57\xfd\x59\x42\xee\x5e\x46\x16\x3c\x01\xf0\x5e\x39\x45\ -\x56\x50\x38\x0a\x8f\x92\x33\x1e\xfb\x5b\x42\x9c\xf7\x91\x33\x5e\ -\xb0\xe0\xf3\x69\xb2\xe1\x87\x6b\x08\x59\xf3\x32\x39\xe7\x83\x27\ -\x12\xe2\x1d\x22\xe7\xde\x0e\xf0\xaf\x9b\x4f\xb6\xde\x7a\x05\x21\ -\xa7\x4d\x92\x0b\x87\xd6\x11\x72\x66\x2f\x7c\xae\x87\xcf\xeb\xe1\ -\x73\x03\x7c\x3e\x4b\x2e\xbc\xf6\x3b\x30\x8f\xd3\xc8\xc5\x97\x0e\ -\x10\x72\xc7\x72\xb2\xef\x8f\x00\xdf\xd6\x15\x64\xff\xdd\xa7\x11\ -\x32\x7f\x01\xfb\xbc\xd3\x27\x07\xf7\xdd\x4b\xc8\xcd\x4f\x92\xc9\ -\x57\xe1\xfd\xd1\x3d\xe4\xd0\x95\xcd\x84\x0c\x7e\x95\xdc\xb0\xe4\ -\x4e\x42\xda\xfe\x0b\x3e\xef\x22\x64\xf9\x66\xf8\xbc\x07\x3e\x6f\ -\x24\xb7\x7d\xfe\xff\x01\x1e\x7e\x47\x1e\x5c\x7f\x1e\x21\xa7\xff\ -\x88\x3c\x7c\x15\xf4\x33\x9e\x25\x4f\xbc\xe4\x10\xb2\xf4\x38\xf2\ -\xf4\x43\xf3\x09\x39\x78\x09\x79\x83\x3c\x45\xc8\xbb\x1f\xa8\x58\ -\xfc\x3d\x80\x67\xd7\xd9\x15\xad\x9f\xfc\x1d\x8c\x7b\x61\x45\xe7\ -\x2d\x87\x60\xe9\xae\xa9\xd8\xfa\x9f\x1f\x82\x79\x1c\xae\xe8\xff\ -\xf7\x87\x09\xb9\x62\x75\xc5\xde\x05\x17\xc0\xfb\xc7\x56\x0c\x37\ -\xdd\x40\xc8\x3b\xfa\x2b\xec\x63\xa6\x08\x79\x2f\xa9\xb8\x7a\x43\ -\x86\x90\x5b\x2e\xab\xb8\x71\xa4\x04\x78\x2d\x54\x7c\xf0\xca\x2c\ -\x21\x27\xfd\x4d\xc5\x57\x9e\x7b\x9e\x90\x3d\xdb\x2b\xbe\x7d\xeb\ -\x3f\xc0\xbc\xbe\x56\xf1\xc3\x63\x7a\x60\xcd\x2f\xa9\xf8\xd1\xaf\ -\x80\x1e\xee\xfa\x54\xc5\x1b\x1f\x83\xe7\xa3\xb7\xcf\xa9\xfe\x22\ -\xc0\x37\xd6\x38\xa7\x6f\x1f\xf4\x73\xdb\xa6\x39\xd6\x23\x83\x84\ -\xdc\x3f\x31\xc7\xa9\xfd\x11\x21\x17\xae\x9b\x33\xb6\x14\x68\x62\ -\xc3\x87\xe6\xbc\xfd\x85\x8b\xe0\xef\x17\xe7\xdc\xd1\x07\xb4\x72\ -\xcb\x29\x73\x3e\xd2\x7e\x1c\xd0\xcb\x6b\x73\x1e\x3e\x0b\xf0\x50\ -\xb8\x68\xce\xdf\xbd\x06\xeb\xf5\xce\xa5\x73\xbe\xf4\xf0\x2d\x84\ -\x9c\xdd\x31\xe7\xcb\x43\xaf\x13\x72\xd1\xb3\x73\xbe\x7e\xde\xaf\ -\x09\xb9\xf4\xf2\x39\xcf\x3d\xf0\x19\x42\xac\x2f\xce\xf9\xe7\x85\ -\x77\x10\x52\xf3\xbb\xca\x8a\x6b\x1e\x23\xe4\xda\x6c\xe5\xbc\xbb\ -\x80\xd6\xde\xb5\xb6\x72\xe1\x7c\xc0\x4b\x27\xa9\x5c\xb8\x00\xe8\ -\x76\xfb\x3d\x95\x9d\x0b\xe1\xb9\xbb\xa7\xf2\xd0\x53\x9f\x22\xe4\ -\xfc\x2b\x2a\xaf\x3b\x15\xf0\xdf\xbd\xa3\xf2\xc8\xbe\x0f\x03\x4d\ -\x6f\xaa\xfc\xc4\x91\xdf\x13\x72\xeb\x99\x95\x9f\xfa\x3a\xac\xcf\ -\x7b\x6e\xab\xfc\xc2\x77\x5e\x26\xa4\x58\x5b\xf9\xd8\x46\x18\xcf\ -\x3b\xb7\xf2\xf1\xef\xbe\x15\xf6\x43\x4b\xe5\xd3\x4d\x3f\x86\x75\ -\xfc\xeb\xca\x7f\x69\x84\xf6\xce\x82\xca\xd7\x8b\x40\x0f\x67\xbc\ -\x54\xf9\xfa\x17\x2e\x25\xe4\xb8\x0f\x54\xfe\xa1\x05\xe8\xb9\xe3\ -\xa6\xaa\xc5\x4b\x96\x10\x62\xf4\x57\xed\xad\xb9\x9d\x90\xf6\x7f\ -\xae\xba\xf4\x0a\x98\xdf\x1d\x57\x55\x4d\xbe\x0a\xfd\x5f\x7d\x5f\ -\xd5\xd5\xe3\x40\x1f\x17\xde\x58\x75\xed\xef\x8e\x10\x72\xdd\xa5\ -\x55\x37\x7d\xef\x63\x84\xbc\xf5\xf3\x55\xf7\xdf\x00\xf8\xab\x5e\ -\xc9\x3e\xfd\xf7\x57\x3d\x70\x26\xe0\xf7\x86\x77\x56\x3d\xf4\x0a\ -\xd0\xf5\xea\x63\xab\x5e\x74\x5e\x02\x38\xae\xaf\x7a\xb9\x05\xd6\ -\x67\xce\x23\x55\xaf\x74\x7f\x0d\xfa\xdf\x57\xf5\xea\x73\xb0\x27\ -\xb7\x3c\x50\x5d\xf9\x4e\xc0\xdf\xf0\x87\xab\xab\x9f\x06\x3c\x9f\ -\x37\x54\xdd\xf2\x7a\x40\xc8\x4d\xcf\x57\x9f\x34\x17\xf0\xb0\xe9\ -\x37\xd5\x2b\x7e\x0c\xf4\xb5\xed\x23\xd5\xbd\x6f\x7a\x1b\x21\xf6\ -\x55\xd5\x97\x3c\x07\x78\x6b\x19\x60\x9f\x37\xad\xaa\xce\xfe\x06\ -\xe0\xdd\x3a\x5a\x6d\xfd\x12\xf6\xc3\xd4\xc7\xaa\xaf\xfd\x38\xf4\ -\x7f\xc7\x9e\xea\xc3\x0f\x01\x9e\xe6\x7d\x96\x7d\xde\xb9\xb9\xfa\ -\x91\x0b\xe1\xf9\xf9\xcf\x56\x7f\xa6\xf2\xeb\x84\x9c\xbc\xac\xfa\ -\x0b\x8d\xb0\x5e\x57\xfc\xa2\xfa\x0b\xb7\x00\x9d\xbc\xe5\xdc\xea\ -\x2f\xee\x85\x7e\xb6\x6c\xaf\x7e\x7c\x37\xdd\xe7\x6f\xa9\xfe\xf1\ -\x2d\x1d\x84\xcc\x3d\x52\xfd\x87\x7f\x81\xfd\x74\xde\x97\x6b\x4e\ -\xf9\x09\xac\xc3\xbd\x1f\xad\x59\xfe\xcb\x8f\xc2\x3c\x1f\xaf\x59\ -\xfd\x12\xcc\x6b\x62\x67\xcd\xc5\x27\x02\x5e\x60\x45\x0f\xbc\x0a\ -\xf8\x2a\xbc\xab\xe6\xaf\xbe\x0d\xef\x6d\xbc\xb8\x26\x7f\x1d\xd0\ -\xc1\x39\x9f\xab\x09\x4e\x06\xba\x79\xf3\x67\x6b\x6e\x3c\xdc\x4b\ -\x48\xe3\xb1\x35\x77\xed\x7b\x92\x90\x1d\xf3\x6b\x3e\x7f\x15\xc0\ -\xb5\xe8\x73\x35\x4f\x3e\x5a\x0d\xeb\x76\x79\xcd\x4f\xab\x77\x42\ -\x2f\xef\xae\xf9\xe5\xc3\x17\x13\x72\xcf\x43\x35\xaf\x3d\x0d\xf8\ -\x5c\x78\x79\xcd\xef\xff\x8b\xc2\xbd\xb4\xe6\x8d\x85\x40\x1f\x6b\ -\x1a\x6a\xde\xb8\x1f\xe8\xff\xe6\x25\xb5\x75\xef\x81\x75\x5d\xb1\ -\xb7\xb6\xe9\xff\xfc\x07\x21\xeb\xcd\xda\xe6\x77\x9f\x0b\xef\xbf\ -\x56\xbb\x6e\x04\xf6\xd9\x82\xcf\xd7\xae\xfb\x29\xac\xdb\x7b\x77\ -\xd4\xf6\x76\xaf\x20\xe4\xf2\xfb\x6a\x2f\x38\x15\xf6\x45\xc5\xf7\ -\x6a\x77\xf8\xad\xc0\x8f\x4e\xad\xdd\xf9\x20\xd0\xe7\x64\x77\xed\ -\xbe\xa7\x7f\x0a\x7f\xef\xaf\xcd\xfe\x27\xec\xeb\x63\x26\x6b\xaf\ -\x7a\xe2\x13\xc0\x1f\xe7\xd4\x5e\xe7\xc1\x3a\x5e\x76\x73\xed\x87\ -\x5e\x86\xe7\x8b\xbf\x5b\xfb\x95\x37\x60\x7d\x56\x5e\x57\x77\xfa\ -\x27\x01\x6f\xef\x59\x5b\xb7\xfa\x31\xd8\x97\xb7\x37\xd7\x9d\x15\ -\x00\x5c\x4b\x9e\xad\xeb\xfd\x0c\xe0\x69\x4d\xb1\x6e\xdb\x93\xab\ -\x80\xae\x5e\xa9\x33\xaf\x80\x7e\x4e\xde\x5f\xf7\xd7\x4f\x0d\x03\ -\x3d\x9f\x57\xf7\xa1\x17\x80\x4f\x05\x9f\xa9\xfb\xbb\xe3\xda\x80\ -\xde\x16\xd7\x7d\xb2\x0a\xf0\x7c\xc7\x63\x75\xdf\x5a\x0d\xf8\x9b\ -\x6c\xac\xfb\xce\x33\x36\x7c\x5e\x59\xf7\xe2\x7d\x5f\x24\xe4\xc4\ -\x47\xea\x5e\xfc\x0a\xd0\xf7\xd4\x2f\xea\x5e\xb9\x19\xf6\xf9\xfb\ -\xff\xb6\xde\xf8\xfe\x52\xe0\xd7\xa7\xc0\xe7\x27\xe1\xf3\x71\xf8\ -\x04\x7a\x3e\x72\x71\xfd\x8e\xc3\xc0\xd7\x97\x3e\x54\x6f\x7d\x1f\ -\xf0\x72\x65\x65\xfd\x48\xd3\x72\x42\xae\x77\xea\x2f\xbb\x19\xf0\ -\x57\xb3\xb1\xbe\xb4\x04\xe0\x73\x7e\x5b\x3f\xf6\x0b\xe0\xe7\xe6\ -\xa3\xf5\xef\x7e\x10\xf0\xdd\xfa\xab\xfa\x1b\x97\xc0\x3c\x6e\xf7\ -\xeb\x8f\xfc\x11\xf8\xcd\xe0\xdc\xfa\x4f\xaf\x00\xfc\xac\x2e\xd4\ -\x3f\xb3\x08\xd6\xeb\xce\x9f\xd5\x7f\x7b\x31\xc8\x87\x03\x97\xd5\ -\xff\x78\x09\xcc\x7f\xe0\x9b\xf5\x3f\x3f\x03\xf8\x78\xc3\x93\xf5\ -\xaf\xae\x01\xbe\x74\xfc\xad\xf5\xaf\x9d\x0a\x78\xae\xec\xaa\xff\ -\xe3\x66\xca\x0f\xbe\x9d\xa9\xff\x0a\xc0\x79\xdb\x07\x32\x6d\xf7\ -\x02\x1d\x5e\xb0\x15\x3e\x61\xde\x17\xdc\x05\x9f\x30\xaf\x0b\x7e\ -\x92\x59\xf9\x45\xd8\x9f\x9d\xc3\x99\x75\x1f\x85\x79\xbd\xf3\xd1\ -\xcc\x79\xa7\x03\x9d\x8f\x5d\x92\x39\x6f\x14\xe0\x19\xbb\x27\xb3\ -\xed\xc3\xc0\xdf\xee\x7d\x39\x73\xe9\x0b\x40\x47\xa7\x7d\x16\x3e\ -\x8f\x27\x64\xd9\xc9\xf0\x09\x7c\x7d\xd9\x55\x19\xeb\x3e\x80\xe7\ -\xa6\x03\x99\x89\xea\xab\x60\x1d\xcf\xc8\x5c\x79\x2b\x8c\xd3\xf5\ -\xad\xcc\xdd\xef\x3e\x01\xf8\xee\xff\xcd\xdc\x73\x09\x5d\x8f\x67\ -\x32\x0f\x2d\x80\xfd\x34\x6f\x3c\xf3\xd1\xeb\x7f\x0e\xfc\xe2\x81\ -\xcc\xd7\x2f\x81\x7d\xd4\xf2\xae\xcc\xb7\x76\x3f\x0a\xf4\xf9\xaf\ -\x99\x6f\xfd\x04\xf8\xc3\xf1\xe7\x66\xbe\xf7\x6f\x00\xc7\xc4\xf5\ -\x99\x57\x6e\x03\x19\x68\x9e\xdc\x50\x3b\x01\xf8\x3b\xb4\xb1\xe1\ -\xa4\x17\x7c\xa0\xcf\x6b\x1a\x96\xbe\x1f\xf0\xbc\xd3\x6f\x58\xfa\ -\x38\xd0\xeb\xbc\x57\x1b\x96\x1d\x02\x3c\x94\xa6\x1a\xce\xd8\x0d\ -\xed\xde\xf1\x9f\x0d\x2b\x3f\x01\xfc\xda\x5a\xd4\xb0\xde\x87\xf9\ -\xbd\xef\xe3\x0d\xe7\x9f\x0f\xf4\xd7\x73\x69\x43\xcf\x33\x00\xef\ -\xa6\x53\x1a\x86\xda\xbe\x0d\x7c\xef\x1b\x0d\xd7\xbd\x50\x4b\x48\ -\xc6\x69\xb8\xa3\x17\xe4\x62\xe7\x77\x1a\xbe\x7a\x0f\xf0\xb5\xb7\ -\x5f\xd6\xf0\x0f\xa7\x03\xff\xa8\x5a\xd1\xf0\x9d\x43\xc0\x4f\x32\ -\x1f\x6c\xf8\xf5\x2f\xfb\x81\x0e\xff\xad\xb1\x66\x37\xec\xbb\xc6\ -\xc3\x8d\x75\x7d\xc0\x8f\xc6\x17\x35\x9e\xf8\x7b\x90\x2b\x53\x4d\ -\x8d\x6d\xf7\x01\xfe\x1d\xab\xf1\xcc\x43\x80\xa7\x5b\xaf\x69\x3c\ -\x7b\x07\xd0\x7f\xed\xf9\x8d\x5d\x0b\xbe\x05\x72\x75\xa2\xf1\xc0\ -\x97\x61\x5f\x7b\x8d\x8d\xce\xb5\x30\xbf\xc5\x87\x1b\x6f\xbb\x1f\ -\xd6\xe3\xde\xed\x8d\x87\xdf\x43\xf9\xc8\xb5\x8d\x4f\xfd\x00\xe0\ -\xbe\xfb\xee\xc6\xef\xbd\x3a\x0f\xe8\x78\x4d\xe3\xf3\xf7\x80\x9c\ -\xb5\x46\x1a\x5f\x7b\x1e\xf0\x76\xd5\xb5\x4d\x8b\x7e\xf3\x4b\xe0\ -\x8b\x2b\x9b\xba\xf2\x40\x17\xb7\x3e\xdf\xb4\xf9\x47\x00\xe7\x5d\ -\xdb\x9b\xf6\x7f\x10\xc6\x1d\xbf\xa7\xe9\xc0\x23\x40\xbf\xc5\x3f\ -\x36\xbd\xf5\x5f\x61\xdd\x97\xbd\xd4\x94\xfb\x30\xd0\xdd\xbe\x47\ -\x9b\x0a\xbf\x05\xfa\xad\x7d\xa5\x69\xec\x53\xef\x85\xf6\x6f\x6f\ -\xba\xef\xe7\x80\xaf\x37\xf7\x37\x7d\xf8\x39\xe0\xf3\x2b\xbe\xde\ -\xf4\xe0\xf7\x1f\x20\xa4\xf7\xfa\xa6\x27\x9e\x80\x7d\xf8\xde\x87\ -\x9b\x5e\xdf\x00\xfd\x5f\x53\x6a\x3e\xa3\x0a\xd6\xb9\xf4\xa6\xe6\ -\xf6\x97\xe1\xf9\xe1\x1f\x34\xef\xfc\x06\xe0\xa7\x7e\x67\xb3\x7b\ -\x2f\xd0\xd3\x3d\xab\x9b\x2f\x9f\x6a\x27\x64\xd5\x63\xcd\xb7\x1e\ -\x04\xb9\xbd\xf6\xd3\xcd\xb7\x59\x30\xaf\x13\x97\x37\x3f\xf5\x8f\ -\x40\xc7\xa7\xb6\x34\x23\x9d\x1e\x7e\x13\x7c\x02\x1d\x1c\xbe\xa9\ -\xf9\x67\x3f\xae\x24\x24\xbf\xa8\xf9\x17\x2f\xc2\xba\x6c\xde\xdc\ -\x52\x7b\x33\xf0\xa7\xfc\xa7\x5b\x8e\xbf\x1a\xf8\x0a\xf9\xc7\x96\ -\x53\x6f\x06\x7e\x13\xfc\x7b\xcb\xae\x12\xe8\x46\xf7\x77\xb6\xbc\ -\xed\xa9\xef\x42\xff\xdd\x2d\xa5\x8f\x83\xfc\x1f\xfb\x7e\xcb\xf8\ -\xd7\x60\xbd\x87\x2e\x68\xb9\xbe\x01\xf6\xdf\xe6\x8f\xb4\xdc\xfa\ -\xd0\x47\x00\xaf\xa7\xb5\xdc\x9d\x01\xf9\xfc\xbe\x39\x2d\x47\x7e\ -\x7e\x3f\xf0\x87\x8f\xb7\x7c\xe9\x5a\xa0\xff\x1b\x36\xb4\x3c\xf3\ -\x2c\xd0\xd9\xda\xde\x96\x1f\x2e\x06\xfa\x5d\x32\xd9\xf2\x9b\x9a\ -\x53\x00\xae\xf1\x96\xdf\x2c\x07\x39\x5a\x7c\xa4\xe5\x3f\xc6\x01\ -\xaf\x57\xfe\xb6\xe5\x0f\x6f\x83\x75\x2e\x3d\x01\x44\x72\xff\x37\ -\x01\x42\xb2\x80\xf4\x12\x97\xe4\x88\x49\x0e\x12\x83\x04\xc4\xad\ -\x68\x22\xa3\xa4\x54\x87\x4c\x14\xfe\xd5\x77\xe7\x72\xc6\x6e\xd7\ -\x76\x02\xa0\x1b\xd2\xdc\xeb\x99\x43\xc1\xdb\xe0\x19\x3e\xaa\xa0\ -\x3d\x5c\xa0\xf5\x60\x41\x1f\x63\xc4\x23\x23\xf0\xe9\xc0\x13\x83\ -\x14\xe1\x37\x9f\xf6\x4b\x7f\xad\xa8\x25\x25\x62\x54\x1c\x22\x36\ -\xc9\xc2\xb7\x4e\x18\xc9\x83\xef\x63\xf0\x3d\x0f\xbf\xab\x51\xdb\ -\x60\x04\xdf\x30\x8d\x22\x1d\xc5\x08\x5c\xc3\x74\x0c\x6b\xc2\xf6\ -\x03\xdb\x19\x36\xc6\x6d\xcf\xea\x1c\xf4\x8b\x79\xdb\xb1\xca\x01\ -\x65\x84\xa6\x05\x83\x92\x61\x18\xaa\x04\xe0\x94\x48\x07\xfd\x4f\ -\x0e\xd5\x42\x27\x08\x23\x0c\x7b\x6e\xa9\xd8\xd1\xd1\x41\x7b\x9c\ -\x2b\x7b\x1c\x70\xb7\xd0\xe7\xd8\xe7\xde\xc8\x44\xd9\xf7\x41\xe8\ -\xd7\x84\xc9\xb2\x27\x83\xf8\xdb\x28\x4c\xb8\x0d\x3e\x97\xf3\xb1\ -\x13\x90\xa0\xe0\x91\x90\xac\xc2\x49\x07\x23\x96\xe1\x5b\x79\x2b\ -\x1b\x58\x39\xc3\x1d\x3c\x08\x5f\xda\xfc\xe5\x51\x1c\x20\xb4\xe5\ -\x41\x9d\x22\xbb\x11\xb3\x05\x04\xc7\xa1\xb8\xe5\x40\x07\xf0\x9c\ -\x3e\x29\xc1\x37\x07\x57\xc3\x84\xf7\xe8\xbb\xf8\x17\xac\x03\xfd\ -\x66\xf3\xb7\x6d\xf8\x37\x88\x60\x97\xe4\x8a\x4e\x3f\x6d\x4b\x4e\ -\xe7\xec\xee\x22\x2c\x91\xe5\x1b\xd9\x92\xe7\x59\xb0\x8c\x74\xbd\ -\x60\xf1\x72\xc1\x08\x4c\x25\x67\x64\xdd\xbc\xeb\xd1\x79\x45\x66\ -\xeb\xeb\xd3\x82\x2e\x26\xfb\x83\xc9\xbc\x85\xd3\xea\x90\xd3\xb2\ -\xf9\xc4\xec\xd8\x94\xe8\x13\x8a\x6b\x9b\xe4\x25\x28\xc7\x62\x3f\ -\x46\x0f\x07\x04\x3b\x2c\x3f\x4a\x0d\xd9\x0e\x7d\x8d\xca\xd6\x95\ -\xdd\x5e\x96\xbe\x5d\xcf\xdf\xf6\xb2\xf8\xda\x08\xe9\x87\x61\xc6\ -\x00\x0b\x1e\xe2\x25\x4f\x1b\x01\x88\x06\xe9\x21\x03\x64\x0f\x74\ -\x62\xc0\x3a\x98\x48\x02\x23\xf8\x1e\x05\x8a\xfe\x6b\x87\x67\xfd\ -\x64\x2b\xd9\x46\xfa\xe0\x4d\x03\xf1\x49\xf1\x6c\x23\x2e\x87\x39\ -\x66\x6d\xd8\x89\x36\x5d\x0f\x45\x20\x3d\x9e\x65\x06\x80\x51\xa0\ -\x04\xd3\xcb\x76\x18\x3d\x03\x7b\xb6\x23\x06\x1d\xb3\xd8\x6e\xf4\ -\x6f\xdd\xd6\x37\x40\xff\xcc\xba\x8e\x1f\x78\xa6\xed\x24\x40\x3d\ -\x97\x6c\x22\x2b\x01\x41\x45\xbe\xd2\x6a\xbd\xea\x36\xad\xec\x97\ -\x7b\xaa\x89\xb5\xda\xc4\x9e\x60\xcb\x23\x91\xf9\x46\xf6\x2e\xa2\ -\xdd\xc4\xfd\x6f\x03\x4d\x59\x92\x9b\x98\xf0\xa6\x79\x54\x78\x11\ -\xf4\x16\xc6\x48\x80\x78\xa2\x5b\xaa\x80\x7c\xc4\x44\xfa\x56\xf3\ -\xe8\x91\x58\x32\x0a\xa5\x7c\x60\x17\xf3\xd6\x4a\xc6\x47\x06\x57\ -\x32\xa6\x91\x0e\x71\x09\x28\xa8\x23\x17\xe2\xae\x1d\x96\x83\xd5\ -\xf4\xd8\x5e\x96\x11\x53\x23\x7b\x9f\x3d\xc0\xd7\xaf\x4e\xc0\x18\ -\x34\x46\x5c\xa4\xc3\x46\x37\xfc\x3e\x20\xdf\x10\x3b\x8f\xee\xd7\ -\xf0\xae\x33\x25\xb6\x02\xc4\xc7\x30\x6e\x88\x40\xa3\x9d\x73\x14\ -\x56\xb2\x08\x61\x14\x09\xdd\xdb\x07\xd4\x66\x34\x02\xd3\x19\xa6\ -\x5b\x45\xdb\x92\xf1\xf9\x2d\x02\x5b\xde\xc4\x19\xba\x48\x0b\x3a\ -\xf7\x50\x6c\x2d\xd3\x93\x77\x7d\xcb\xd8\xce\x29\xab\x85\x77\x43\ -\x1f\x6e\x17\x88\x5d\x2b\x7b\x12\xb8\xf2\x91\x82\xe8\x9c\xb2\xf0\ -\x84\xcd\xca\x0c\x8d\x60\xca\x11\x4e\xc2\xce\x18\xeb\x44\x26\x33\ -\x68\x51\x1e\x99\xf3\xcc\x71\xa7\xec\x90\x27\x90\x8b\x00\x75\x79\ -\x00\x5d\x70\x91\xa8\xe8\x6b\xdc\x63\x15\xdc\x31\x2b\x26\xfd\x7a\ -\xad\xbc\x12\x34\xfb\x78\x37\x8c\x0a\x4d\xbd\x23\xe4\x9f\x53\x09\ -\xec\xdf\x92\x32\x90\xf1\xd8\x3c\x02\x10\xde\x4f\x8a\x9e\x57\x31\ -\x30\x94\x38\x1c\xf2\xdc\x42\x4c\x20\x1a\xc0\x4b\xe3\x32\x31\x04\ -\xea\xff\x8e\x90\x63\x0e\x39\x29\x25\x94\x29\xb6\x64\x47\xb5\x49\ -\xa7\x12\x36\xa9\x89\x2d\x1c\x2e\x44\xd8\x56\x65\x6c\x60\x26\xa2\ -\xa6\xcb\x3e\xcc\xa1\x0a\xb4\x25\xde\xa9\xc8\x37\x67\x17\x2c\xc7\ -\xb7\x5d\x67\xe6\x6d\x1c\xa5\x6a\x13\xbe\x0c\x43\xeb\x40\xa3\x8a\ -\x5e\xd1\x1d\xe2\x68\x1e\xc8\xf8\x30\x56\x14\x0c\xf5\xf2\xd5\xb2\ -\xcd\x9b\x01\x75\x26\x34\x1c\x64\xc8\xd2\x9a\xba\xe3\xce\xb0\x67\ -\xe6\xf4\x2d\x20\x9f\x61\xd3\x2b\xb4\xa6\x07\xd3\x08\x5a\xae\x5b\ -\xd0\xbf\x73\xf0\x3b\x23\x31\x8a\x79\x21\xbe\xdb\x35\xe2\xa2\x7d\ -\x95\x70\x46\x05\xa9\x96\x81\xa2\x86\xc2\x5f\x17\x02\x9b\x37\x4f\ -\x14\xf3\x6e\xce\x4a\xd4\x43\x7c\x03\x48\x09\x90\x69\x17\x80\xa7\ -\x7a\xe2\x61\x3b\x25\x3d\xbf\x34\x08\x18\x07\x14\x0f\x99\x59\xcb\ -\x2f\x3b\xc9\x0c\x90\x17\xdd\xcd\x56\xc5\x21\x39\x64\x2d\xbc\x38\ -\x0e\x64\xac\xf1\x5c\xfe\x04\x9b\x9c\x8f\x54\x4b\xe7\x95\x4f\xc4\ -\x8b\x1d\xc1\x8b\xa1\x31\x0a\x8a\x11\xa5\xe9\xad\xdc\x5d\x0a\xca\ -\xcc\xcb\x05\x81\x6a\xf0\x51\x0d\x7f\xc4\xb2\x82\x8e\x32\xe0\x64\ -\x60\xbf\x7b\x88\x72\xb5\xba\x55\x9b\x73\x36\x92\x54\x86\xbd\x4f\ -\xff\xc4\x97\xcf\x62\x2f\x57\x1c\x83\x1b\x5b\xed\x08\x13\x21\xb5\ -\x71\xad\xe8\xce\x89\x30\x73\xd9\xf1\xf1\xb4\x27\x06\x32\xe0\xd6\ -\x06\x5e\xc4\x00\x4e\x1a\x6b\x21\xb2\x50\xb1\xa6\xc9\xac\xb8\xa1\ -\xcf\x76\x6c\x7f\xc4\x10\x5c\x82\xeb\x3f\xec\xa9\xe4\x8c\x1b\xb5\ -\x9e\xd8\x4e\x0e\xb1\x5d\x54\x55\x2c\x64\x6c\x53\x21\xa6\xed\x84\ -\x76\x4b\x2b\xeb\x15\xb7\x2c\xd7\xfc\x82\x11\xb7\x14\x18\x59\x60\ -\xc3\x14\xcd\x0c\x65\xc9\x20\x3c\x14\xd3\xad\xe4\x64\x24\x43\x71\ -\xb9\x22\x9d\xa3\x1a\x87\xd4\x6e\x19\xef\xb5\xfe\x6c\xac\x4c\xd7\ -\x37\xfc\x10\x21\x86\xb5\x8e\xb3\x15\x83\x5a\xcd\xd5\x8d\xf4\xaa\ -\x06\x5f\x4b\x39\xfd\x46\x00\x3a\x2e\xe6\xaa\x84\x08\x8d\xbe\x3e\ -\x0f\xd4\xe2\x72\xda\x50\xd5\x0e\x90\x1d\x5a\x23\xfa\x27\x36\xfa\ -\x11\xea\xd2\x16\x33\x11\x2a\x4c\x2e\x62\x93\x2c\x1b\x1b\xcd\x39\ -\x45\xa1\x26\x57\x38\xa8\x70\x2b\x20\x75\xd3\x65\x58\xfd\x3f\x8e\ -\xfe\xd0\x04\x13\x24\xc9\x28\xbc\x53\x44\x39\x12\x45\xc2\x81\x1d\ -\x28\x40\x13\xb7\xfe\xa0\x15\x8c\x5b\x96\x63\xac\x66\xd2\xd5\x9f\ -\x85\x54\xc9\xba\xc5\xc9\x24\xd4\x66\xf8\x7a\x98\x9a\x11\x51\xb3\ -\x6b\x68\xc8\xb7\x02\x4d\x91\x62\x0f\xb0\xc1\xc7\xc5\x02\xc2\x8c\ -\xa3\xfc\x21\xca\xdf\xfe\xb2\x30\xbb\x95\xcd\x22\x81\x47\x1d\x05\ -\x1e\xe3\x88\x39\x14\xe1\x03\x14\x4d\x94\x17\x0c\xa3\xda\xf6\x3f\ -\x8e\x0a\x39\xcd\x37\xa9\xdd\xed\x59\xc3\xa5\xbc\xe9\x01\xb5\xe4\ -\x27\x87\xd3\x28\x21\x9a\x20\xd9\xcd\xda\x70\x55\x21\x34\x19\x25\ -\x0e\xf9\x4b\x65\x9a\x4d\x45\x30\x52\xc4\x4f\xaa\x81\x8f\x4a\x03\ -\x78\x34\xc6\x23\x57\x73\xb1\xe8\xa3\xcb\xc1\x83\xdf\x02\x2e\x26\ -\x99\xb7\x26\x95\x7d\x26\x41\x5c\x1e\xe7\x75\x1e\xac\x38\x98\x0c\ -\x51\xb3\x42\x53\x04\xf6\x88\x37\x2a\x98\xdb\x69\x77\x12\xe0\x4a\ -\x61\x92\xaf\x97\xed\x82\xea\x5a\x2e\xc2\x46\x3b\x3a\xa8\x76\xda\ -\x1e\x37\x00\xe8\x34\x82\x62\x0f\xb0\xd1\x27\x43\x8d\x66\xd6\xb1\ -\xfe\xb2\x76\xdb\x1e\x36\x93\x64\x4e\x96\x76\xc3\x65\x95\x21\x18\ -\xde\x77\x1a\x9a\xe6\xc2\x84\x28\xa3\xcf\xc7\xb0\x5b\xdd\x9f\x35\ -\xd9\xa2\x34\xb0\x56\xf8\x37\x36\xfa\xa7\x48\xa3\x34\x1a\x2c\x33\ -\x90\xa8\x68\x75\x50\x23\x75\xfe\x3f\x88\xf1\xa3\xc7\xff\x25\x38\ -\xd9\x32\x82\x84\x99\x65\xc6\xa0\x09\xc6\x2e\x6e\x8a\xa3\xe0\x80\ -\x31\x9c\x2e\x24\xbb\x38\x0e\x2d\x6e\x62\xc7\xfd\x86\x8d\xfd\xcc\ -\xba\x91\x3e\xc1\x63\x78\x2f\xf8\x58\x39\x05\x03\xd9\x97\x8d\x92\ -\x9f\x5a\x5b\x63\x89\xab\xe2\xe3\xca\x30\x2f\x5a\x01\xbe\x7b\xb8\ -\x92\x36\xfe\x4a\x95\x1f\x61\x45\x8c\x32\x93\x16\xdf\x2e\x70\xac\ -\x33\x7d\x51\x40\xa9\xb4\x97\xf5\x0c\x1c\xa0\xbb\x7c\x5e\xe2\x8c\ -\xea\x84\x0c\x9b\x66\x01\xb0\x66\x52\xf7\x1c\xbc\x41\x31\x6c\xfb\ -\x33\x4e\x68\x55\x04\x39\x0c\x78\x4f\x1a\x41\xcc\xa3\xc9\x16\x95\ -\x3e\xcd\x49\x60\xda\xfb\x85\x41\x38\xee\x7a\xa3\x54\x1b\x2d\xe6\ -\x4d\xd0\x51\x87\xc0\x94\x19\xb6\xdc\x82\x15\x78\x93\x6c\xa3\x70\ -\x6b\x2f\x04\xc1\x6e\xfa\x2e\x77\x33\xc7\x21\xd8\xa3\x8f\xaf\x54\ -\x6f\xad\xe9\x34\x1d\xf6\x45\xd8\xfb\x6a\xb0\x47\x19\xd5\x0e\x03\ -\xe6\xa9\xd9\x91\x4a\x3b\x93\xc3\xae\x10\xac\xba\x7f\xc4\x2c\x5a\ -\xc6\xea\x5e\x63\xcc\xb6\xc6\xc1\xe0\x19\x4a\x74\xbb\x0a\xa8\xe8\ -\xcb\xab\x7b\xf7\xc2\xab\x7c\x9a\x02\x0e\x0f\xc5\x8b\xc9\x77\xed\ -\x20\xee\xf5\x51\x6d\xbc\xa6\xd0\x38\xd3\x74\xb9\x29\xe6\x1b\x73\ -\x95\xd9\x0f\xcf\x66\x23\x8f\x96\xe8\x7e\x51\xc7\xa1\x6c\x2c\xe6\ -\x1e\xd0\xf4\xb4\x01\x6b\x22\xe0\x7a\xda\x00\xa2\x0c\x08\x5d\xe9\ -\xcb\xf4\xd7\xa4\x97\x37\x72\x47\x0f\x98\x20\xc8\x4f\x3a\x81\xdf\ -\xf8\xa1\x27\x06\x15\xb8\xb8\x42\x94\xab\x31\xee\x93\x8b\x70\x90\ -\xe3\x07\xdc\x61\x10\x60\x9c\x05\x94\xb2\x00\xa7\xb1\xc3\x65\x6e\ -\x81\x45\x7c\x44\x7c\xa3\x87\xbf\x40\x67\x42\x5f\x40\x18\x9c\x10\ -\x0c\xcc\xa5\xdf\x89\x3b\x35\xfa\x74\x1a\x58\x24\x3a\x7d\xe6\x68\ -\x82\xe7\xdc\x29\x15\x95\x7d\x12\xea\x4e\x06\x13\x63\x7c\x3a\x64\ -\x08\x3b\xee\x1a\x07\xf0\x24\x25\x51\xba\xd9\xac\x8d\x60\x14\x55\ -\x14\xfc\xe6\x48\x75\x25\x6a\x70\x29\x4a\x9b\xaf\x30\x19\xd8\x4e\ -\xc9\x92\x68\x3c\x21\x32\x30\xfe\x2a\x07\x1d\x4c\x40\x61\xaa\x81\ -\xa7\x41\x9b\x83\x14\x4b\x9f\x0c\x86\xd0\xd6\x1e\x41\x9b\x82\x53\ -\xa1\x2c\xeb\x16\x0a\xa6\x93\x63\x38\x9b\x1e\xf4\x23\x68\x97\xc7\ -\x43\x3a\x3a\xf0\xfa\x0e\x4d\xf2\x95\xa4\xb1\xe4\x5a\x61\x6b\x9a\ -\x48\x3f\xca\x4d\xd9\x4a\x58\x30\xa8\x55\xb2\x37\x8b\x84\x83\x45\ -\xad\x72\xda\x7d\xfd\xe3\x66\xd1\x37\x72\xb6\x0f\x4c\x75\xd2\x28\ -\xd0\xf9\x26\xf0\x1b\x69\x79\x51\xf7\xe5\x90\x47\x05\x00\x0d\x0b\ -\x0d\xe5\xcd\x80\x5a\xce\xc8\x8f\x8e\xd7\x11\xd2\xcb\x3a\x94\xf8\ -\x68\x47\x1d\xd2\x95\x18\x89\x52\x50\x08\x17\x2a\x16\xc4\xe9\x46\ -\x07\x6f\xc6\xa1\x1a\x81\x53\x78\xdc\x31\x38\xa1\x34\xcd\x01\xcf\ -\x2e\x58\x13\x9a\x0a\xc5\x1e\xd0\x26\x15\x8d\xa8\x0d\x01\xde\x51\ -\x05\x17\x52\x32\xcf\xb5\x10\x26\x51\x4b\x80\x5f\xf1\xdb\x4c\x5e\ -\x2d\xd1\x96\xae\x15\x25\x4c\x93\xef\x99\x88\x27\x2f\x91\x71\x26\ -\xe9\x42\x51\xad\x29\xc9\x83\x1b\x1e\xcd\x0a\x79\x74\x0d\xd4\xd8\ -\x3c\x94\xfb\x79\x12\x0e\x57\x50\x48\xc6\x50\x24\x72\x4d\x5b\xa2\ -\xec\x7a\x8a\x21\x9f\x7a\x0c\x81\xf8\x2d\x27\x39\xde\xd9\xce\x7f\ -\xf7\x4a\xd4\x11\x49\x9d\x45\xb0\x5e\xe8\x58\xe4\x3c\x9d\x32\x74\ -\x5f\x28\x54\x52\x9b\xf2\x51\x93\xe2\x31\x3e\xee\xe8\x35\x58\x88\ -\xd1\x71\xbd\x82\x99\x67\xea\x96\xed\x8c\x59\x5e\x28\xa4\xa1\x56\ -\x0d\x78\xd2\x6e\x16\x11\xa8\x30\x43\x8e\x1f\xb1\xe5\x1d\xd4\x7e\ -\x22\x7e\x6a\x39\xbb\x63\x2e\x72\x72\xae\x91\x37\xfd\x40\x77\x34\ -\x73\x5f\x3c\xfd\x4d\xba\x6c\xae\x09\x8d\x23\xb0\x9d\x3c\x56\x38\ -\x08\x12\x1b\x9d\xb7\xcb\x73\x0a\x51\xc1\x5b\xa6\x9d\xa9\x60\x4a\ -\xcc\x85\x25\xe1\x5e\x47\x61\x13\x01\x14\x0a\x3d\x86\x4e\x14\x0e\ -\x87\xca\x86\x56\x92\xe6\xf6\x18\xd0\x55\x91\x1a\x0d\x89\x1c\x68\ -\x7a\x3f\x36\x7d\xa7\x3d\xb2\x53\xac\x90\xa2\x20\x7c\x8e\xae\x8c\ -\xfa\xaa\x84\x02\x15\x6d\x57\x3b\xa2\x14\xea\xaf\xc4\xc7\xb1\xb9\ -\x82\xa6\xb8\x68\x39\x8f\xf8\x5b\x2e\x70\x91\xb4\xca\xba\xc3\x5d\ -\xc7\x42\x82\x05\x3a\x44\xc2\x42\x07\x27\xbc\x44\xd9\x1a\x92\xe4\ -\x90\x9d\xcf\xc3\xdf\x48\xc0\xf8\x66\xc9\xb1\x03\x4b\x79\xca\xb9\ -\x95\x7f\x51\x51\xf9\xc9\x17\x90\x9d\x28\xb0\xdd\x90\xe8\x56\x0b\ -\x56\xcb\x5f\x2e\xd3\xfc\x70\x58\xb9\xd2\xf0\xf3\x97\x11\xa2\x3d\ -\xaf\x6c\x88\x96\x22\x6d\x56\x3e\xd3\x8b\xa1\x01\x8b\xcd\x56\xbc\ -\x9d\x8d\xa5\x54\x39\xfa\x5b\xd2\xab\x1b\x01\xfc\x29\x29\x36\x62\ -\x02\x30\x14\x9b\x2b\x1f\x97\x5b\xdc\x23\x16\x5c\x08\x32\x3a\x00\ -\xca\xb0\x4d\x2a\x90\x7e\xac\x1a\x7b\xc0\xd5\x63\xc9\xa7\x08\x78\ -\x39\xd5\x96\x4b\x85\x69\xc1\x5e\x61\xf6\x69\x3a\x6d\x06\x16\x9c\ -\x47\x96\x80\xea\x9f\xa2\x97\xee\x7c\x40\x25\x1d\x6d\x7c\xf2\x96\ -\x92\xdd\xd5\xd5\x6b\x9b\x79\x77\x18\x3e\xf3\xc3\xfd\x56\x40\xc3\ -\x88\x3e\x76\xca\x95\x73\xd6\x0d\xe5\xe0\x0e\x5f\xfd\x31\x19\x57\ -\x71\x91\x5a\xb2\x44\x44\x03\xfa\xc9\x5e\xb2\x05\x67\x31\x85\xbb\ -\xd2\x0c\x59\x04\xa7\xc2\xd0\x96\xe7\xc0\x72\x1b\xfd\x7b\xb7\x18\ -\xbb\xcd\x80\xfe\xe9\x1b\x79\x37\x2b\xad\xab\x14\x20\x79\xa0\xb7\ -\x09\x3f\x3f\xf5\x6f\x09\xb2\x64\x09\x3e\x42\xcc\x85\xd9\x4a\x1b\ -\xb2\x58\x0b\x71\x31\x0c\xc2\xb6\x56\x23\x4d\x1a\x96\x69\xc2\x69\ -\x88\xd6\xaa\x47\x26\xe6\x96\xab\xc0\x51\x77\x7e\xdc\x9c\xf4\x91\ -\x1c\xe9\x4a\x88\xed\xdf\x06\x3a\x84\x39\x08\xb2\x09\x7f\x00\xf4\ -\x1a\xa3\xd6\xe4\xf2\x94\x13\xca\x00\x8e\xe9\x8a\x9b\x5a\x9e\x4a\ -\x75\xb7\x07\x4d\x52\x76\xb0\x0c\x6c\xcf\x41\x5c\xa0\x12\x57\xe3\ -\x46\x91\xc1\xd3\x6f\x42\x5c\x18\x64\x9d\xb2\x40\x37\x99\xd9\x51\ -\x1f\xd8\xfb\x88\xb1\xee\xcf\x3a\xc4\xfa\xa4\x21\xd6\xff\x59\x87\ -\xd8\x90\x34\xc4\x86\x94\x43\xdc\x02\x43\x4c\x49\xcd\x30\xe0\x12\ -\x68\x0c\x75\x18\x13\x87\xa3\x5b\xde\x42\x09\x11\x48\x59\x90\xa3\ -\x1e\x0c\x68\xc1\x68\xbc\x8d\xac\x91\x96\xb8\xae\x6d\xd1\x0c\xaf\ -\x9c\x26\x63\x03\xd6\x23\x30\x12\x0b\xe3\xd9\x25\x3e\x26\x93\xf0\ -\x18\x63\xd7\xb8\xe0\x88\x95\x1d\x65\xae\x0e\x7b\xc8\x98\x74\x4b\ -\xc6\xb8\x49\xd3\xdd\xa8\x2b\x1d\x18\x24\x10\xd8\x9a\x5e\x26\x26\ -\x30\xff\x6b\xd0\x32\xec\x42\xd1\xf5\xa8\x04\x0a\x5c\xb7\x23\xe5\ -\xf4\xef\x9e\xf5\xf4\xd9\x84\xe8\xf4\x44\x28\xdc\xe5\xe1\x4b\x96\ -\x0f\xc6\x58\x80\x8b\xfb\x91\xa2\xa6\x88\x42\xc4\x22\x63\x3c\xf4\ -\x48\xdd\x47\x2b\x10\x35\xbe\x34\x45\x87\x99\x78\x96\xe8\xd0\xed\ -\xf7\xfe\x69\x10\xe1\xb8\xce\x4a\x07\x6c\x83\x9c\x31\x08\x1c\x63\ -\x14\x70\x32\x68\x0d\xdb\x8e\xc3\xf2\x1e\x68\x2a\x99\xb1\x22\x09\ -\x3b\x29\x91\xd3\x28\x32\x7a\x42\x5b\xa5\x8e\x25\xb9\xa4\xde\x27\ -\x7a\x2f\xeb\x63\xbd\xa4\xdd\x0a\x7a\x2f\x1b\x62\xbd\xa4\xa5\xf6\ -\x2e\xe0\xde\x42\xef\xa3\xba\xb9\xf2\x64\x72\x49\x53\x3e\xe1\x4f\ -\x8e\x79\x62\x0f\xe6\xe6\x15\xcc\x62\x11\xb1\x89\xaa\x1f\x66\xee\ -\xa5\x04\xa2\x03\x36\x8b\x89\x19\x2f\x01\x37\x34\xa3\xc0\x88\x40\ -\xb2\x1b\xd2\x6b\xe6\xa9\x81\xe9\x02\x83\xe6\x64\xa5\xe6\x23\x7b\ -\x50\x4f\x12\x2a\x4e\x58\x25\x11\xa6\x4b\x41\x39\xaa\x7a\x84\x32\ -\x31\x0b\xb9\x38\x0f\x15\x87\x64\x95\xac\x51\xf7\x71\xa4\xec\xaf\ -\x55\x5b\xab\x51\x14\x56\x54\x3f\xf7\x30\x91\x30\x1b\x59\x93\x79\ -\x21\xbf\x0b\x26\x4f\xa6\x1c\xa5\x1d\xa0\x2e\xe0\x46\x14\x5e\x59\ -\x2b\xc5\x78\xc7\x87\xc6\x43\x57\xac\x41\x37\x62\xca\x41\xcf\x46\ -\x0d\x56\x44\xa7\x98\xcc\x65\xea\x68\x01\x15\x7a\xfa\xdd\x47\x17\ -\x7f\xb9\xfc\xd1\x13\x99\x92\x48\xbd\xc2\x26\x75\xc8\xda\x59\xdd\ -\x53\x99\x02\x84\xf9\x40\x84\xfb\x40\x4f\x35\xd0\x9f\x1f\xc3\x67\ -\xef\xbe\x3e\xea\x86\x29\x98\x60\xe0\x14\xe9\x24\xd3\xf6\xbb\x00\ -\xfd\x30\x39\xb9\xa7\xa2\x44\xdc\xd4\x6b\x0d\x99\xa0\xd6\xce\x6a\ -\x91\xce\x8f\x74\x3a\x86\x6e\x3d\x9b\x88\xac\x3e\xee\xa7\xe4\xda\ -\x6a\x3c\x79\x4b\x4d\xec\x74\x31\xfc\x88\x65\x0f\x8f\x04\xe8\x6a\ -\x0a\xc0\x9a\xf6\x51\x35\x95\xd9\x53\x69\x67\xdb\x16\x06\x4c\xe3\ -\x1e\x66\x19\xee\x71\x8c\x00\x60\xb6\x5c\xa3\x5d\x1b\x4a\x19\x7f\ -\x39\x2a\x6f\x40\x42\x99\xa8\xf7\x89\xb4\x1e\x85\xee\x05\x62\xb8\ -\xc0\x2a\x14\xf3\x94\x62\x30\x81\x27\xe5\x98\x4b\x23\x63\x0e\xe1\ -\xb6\x08\xc2\x38\x8f\x4f\x8d\x22\x14\x30\xeb\xa4\x1d\xa6\x2d\xed\ -\xf2\x2a\x3f\x55\x68\x28\xb6\x96\xa9\x79\x61\x78\x30\x3d\x22\x22\ -\x63\x21\xda\x50\xc7\x89\xa1\x42\xc1\x90\x94\x83\xad\x46\x5b\x93\ -\xda\xd7\x71\xa2\x14\xc4\xca\xb8\x0c\x53\xde\xf3\x1a\xa5\x9c\x2a\ -\xb3\xe7\x7c\x63\x99\xb1\xdd\x02\xfb\xd5\x03\xd5\xc7\x73\xc7\x0d\ -\x5f\xe4\x68\xa7\x00\x61\x2d\xf0\x1a\x9b\x6b\x34\x8c\x66\xb2\x68\ -\xd1\x89\xa4\xb8\xa4\xfd\xa2\x66\xbf\x50\x03\xa2\xe8\x59\x59\x9b\ -\x7e\x35\xf2\xd6\x98\x95\x56\x13\x6f\x06\x53\x98\x05\x2c\xc3\x1a\ -\x77\x75\xaf\x1b\xa4\xd6\x21\xc2\x9d\xac\x0f\x77\x92\x56\x85\x08\ -\x77\xb2\x21\xdc\x49\x5a\x0d\x62\x3e\x65\xdd\xd2\x8b\x1a\x25\x96\ -\xf9\xf8\x22\x75\x7d\x58\x1e\xd5\x4d\xa5\x03\x35\x45\xcf\x5b\x51\ -\x7e\xd2\x85\xa2\xf1\x23\xa6\x51\xc7\xbd\xd1\xf4\x9b\x2b\xbd\x5a\ -\x93\xb0\x25\x4d\x6e\x8e\x17\xd0\x6c\x3b\xa4\x51\xd0\xd2\xcd\x13\ -\x54\xe7\x33\x40\x51\x16\x56\x19\xe8\xcd\x34\x37\x83\xc1\x66\xd1\ -\x0c\xb4\x94\xd0\x2d\xc2\x88\x0e\x3d\x21\x12\xf7\xbf\x6a\x72\xb1\ -\xcf\xd6\x02\x98\x83\x93\x46\x8e\x6d\x9e\xd4\x3c\x6e\x0b\x66\x0b\ -\x0b\x17\xba\xee\x94\x1b\x95\xd1\x04\x6e\xf9\x28\x1e\xb7\xc5\x72\ -\x2c\xcf\xcc\x1b\x0c\xf9\xa2\xdb\x94\x63\x9e\x32\xfd\x98\x72\x94\ -\xb9\x62\x14\x7f\x76\xfd\xaf\xc2\xfe\x29\xba\xa8\x2b\x38\xee\x88\ -\x8f\x06\xd4\x4d\x6d\xc4\xbc\x3b\x08\x03\xd2\xf8\xf7\x6c\x08\xc9\ -\x20\x7b\x99\xc5\xc2\xc7\x60\x5c\xcd\x42\xa7\x56\x10\x9a\x53\xe3\ -\x16\xcf\xce\x19\x7e\xd1\xcc\xf2\x14\xd3\x54\xba\xcb\x16\xae\x28\ -\x69\x49\x00\x84\x45\x7e\x58\xc0\x7b\x4c\xba\x6d\x74\x6b\x48\x8d\ -\x7a\x02\x06\xa9\x8d\xbc\x39\x69\x79\xdc\x4d\xc8\xcc\x97\x74\x10\ -\x54\x34\x82\xcd\x36\x06\xdb\x4e\x86\xf2\xd0\x42\x0b\x24\x7d\x50\ -\xe7\xba\xce\xd9\x3c\x4e\xa6\x2e\x67\xb3\xc2\xf9\x6b\x73\x7d\x18\ -\x8c\x59\xf4\x6a\x29\x67\x4d\x2e\xa6\x9f\xab\x60\xbe\x6a\x41\xff\ -\xda\x88\x9a\x5b\x20\xdd\x41\xe7\x62\x6b\x0b\xb6\x25\x13\xfd\xd9\ -\x88\xc3\x59\x38\xa8\x75\xbb\x2f\xc7\xdd\xc0\x81\x14\x07\x14\xab\ -\x39\xd4\x02\x59\xf2\x32\x4d\x33\xe8\x45\x6c\x0f\xa1\xf4\x15\xce\ -\x24\x3d\x21\xff\xe6\xad\x96\x67\xa1\x79\x98\x35\x1d\x58\x53\xe0\ -\xd5\x43\x93\x98\x11\x4e\xd3\x8f\x5c\x1a\xb2\x07\x89\x0c\x2a\x3d\ -\x95\x61\xd4\xd9\x44\xed\x07\x5f\x7f\xb8\xb1\xc8\xdc\x4f\xe7\xd2\ -\x5d\x0b\x8f\x50\xed\x03\x3b\x13\x74\x40\xda\x25\xd8\x90\x66\x2e\ -\xc7\x4c\x1e\x74\xf8\x06\xa0\x32\x99\x5e\x8e\x6f\x3b\x78\x2d\x3b\ -\x62\xf0\x2e\xd2\x6e\x8e\x22\xe9\x66\x46\xb6\x8c\xf3\x08\x63\x9c\ -\x19\xd6\xed\x11\xd2\xa5\x3a\x56\x2d\x5f\x06\xb1\x59\x0f\x72\x25\ -\x5a\x39\xaf\x6c\x1e\x79\x67\x88\x53\xd1\x01\x7d\x73\x9d\xb1\x6d\ -\xc8\xc8\x52\xcb\xda\xca\xb5\x03\x96\x86\xe9\x46\x18\xa7\xcc\x8b\ -\x9a\x75\xa6\x67\x8c\x8f\x58\x0e\x7a\xf2\xd3\xef\x8c\xe7\x53\x4c\ -\xa6\x0f\xa9\xd1\x22\x3d\xf0\x6e\xaf\x9c\x4c\x91\x25\x7a\x61\x4a\ -\xb1\xa0\x82\x22\xa7\x97\xf0\xdf\x56\x42\x70\xd1\x08\xf9\x65\xa9\ -\xa3\x7a\x37\x31\x51\x92\x53\xaa\x6c\xd7\x3c\x1a\x62\xaf\xb0\x11\ -\x03\x96\xbd\x24\xc7\x74\x90\xda\x5d\xc2\xf2\xde\x58\xdf\xcc\x34\ -\x0a\x1f\x0a\xb4\x74\xd4\x0d\x79\x96\x95\x35\x39\xee\x68\x62\x08\ -\x50\xc7\x41\xf4\x56\x67\xe1\xff\x59\x3b\xa7\x1d\x94\x61\x7b\x1d\ -\x5d\xff\x1d\xc6\x26\x6b\xdc\xf4\xac\x76\xe6\xd8\xa0\xf4\x15\x98\ -\xa3\x16\xcd\x39\x19\x01\xba\xe4\x47\x0d\x53\x20\xfd\xe1\x08\xd2\ -\x03\xfc\x9e\x84\x7a\x9f\x9b\x5a\xba\xe4\xb2\xcb\x30\x03\x86\x22\ -\xca\xbc\x46\xe8\xf7\x10\xcd\xb1\xa8\x9f\x62\x31\x42\x22\x2b\x1f\ -\xd8\x4c\x72\xf9\xcd\xdb\x86\xb8\x3f\xc7\xd7\x68\x50\x13\x9c\xda\ -\xa6\x44\x0f\x17\xc3\x2e\x6c\x40\x6b\x82\x3b\x71\x40\x8e\xaf\xc9\ -\x49\x51\x9e\x76\xbb\xfd\x24\x46\xa1\x8c\x2e\x4a\x5a\xd4\x5f\x21\ -\x2c\x96\xea\x15\xdb\x7c\xfa\x29\x4a\x41\xa9\x22\x0f\x60\x4c\xf2\ -\x63\x15\xfd\x67\xc1\x26\xb1\x30\xe1\xde\xc2\x6f\x52\x98\x74\x8f\ -\x36\xdb\x21\xea\x28\x23\xf3\xb5\xb1\x44\xfb\xf2\x12\xd4\x4d\x42\ -\xb4\x14\xa7\x12\xab\xa3\x56\x31\x30\xcc\xac\xe7\xfa\xbe\x48\x39\ -\x68\x37\x5c\xe0\x71\xde\xb8\xed\x5b\x32\x0b\x81\xf3\x07\xee\xee\ -\x0e\x4c\x8f\x2a\x7a\x86\xe3\xae\x9c\xad\x80\xfe\xc6\xac\x96\x21\ -\x42\xaf\x33\xf0\x3f\x41\x8d\xb6\xd4\xd6\xc4\xf2\x50\xc6\x70\x11\ -\xb6\xd4\xd3\x5c\x91\x47\xa6\xec\x93\x39\x3d\x23\xfd\x4a\x64\x0f\ -\x25\x21\x5b\xe5\xb2\x29\xd6\x0a\xb4\xcb\xa3\x7e\xf0\x8d\x2b\x88\ -\x1d\xc6\x2e\x81\x6f\xca\x12\xac\xc9\x68\x0b\x99\x07\x91\x12\xc7\ -\xbf\x9d\x15\x8e\x43\xc4\x86\xd8\x08\x34\x8c\xa8\xe0\x87\x4e\xe2\ -\x09\x07\xd7\x62\x41\x96\x1c\x92\xad\x92\x41\x22\x6b\x56\xc0\xe6\ -\xf0\x4d\xa1\x8f\x10\x1e\x9f\xe7\x9a\xe0\x1a\xe4\x88\x48\x6a\x66\ -\x2b\xe3\x63\x7b\xf6\xa6\x88\x4d\x2a\x36\xfd\x8e\xa4\xf5\x40\xf7\ -\xb1\x4e\xc6\x3c\x6a\x23\x8f\xcb\xc9\x05\xa3\x6c\x58\x08\xc0\x0e\ -\x03\xfa\x72\xdc\x40\x6b\x3f\xc8\x02\x3b\xe8\x89\x74\x9d\xfc\x24\ -\x13\x98\x60\x22\xfa\x78\x7e\x85\x06\x29\xd3\xb2\xf0\x85\x18\xbd\ -\x62\x66\xcf\x8a\x90\xce\xa8\x76\x72\xf3\x36\x74\x5f\x1b\x2b\x66\ -\xa3\x29\x92\x56\xad\xe7\x5d\x28\x73\x63\xe1\x0b\xa5\x6d\xf3\x11\ -\x76\xf5\x74\xb3\x00\x43\xca\x31\x4e\xc0\x31\x2c\x94\xb7\x22\xa1\ -\x0c\x93\x11\x63\xb0\x83\xc2\xeb\x96\x66\xe1\xa0\xd3\xfb\x8d\x1e\ -\xda\x6e\xe4\x7d\xce\xc6\x13\xb0\x5a\xc3\x86\x72\xaa\x88\xa4\xd4\ -\xe9\xfd\x00\x27\xf1\xf1\xfe\x04\x5f\xd9\x09\xda\xf0\x9d\xf0\x4f\ -\x5a\xbb\xca\x37\xc8\x06\xe9\x64\x66\x6b\x6a\xfb\x6a\x1b\xfa\xa4\ -\x98\xfe\xcd\xf4\x98\x69\xfd\x1d\xca\x0e\xd9\xe6\x60\xf0\x35\x7f\ -\x94\x9e\x8d\x15\xfc\xc0\x3d\xa3\xa6\x43\x32\x42\x44\xcf\x17\xbb\ -\xdc\x93\xcb\xf4\x28\xa5\xa5\x37\xd1\x84\x09\x99\x45\x9b\x7a\xa0\ -\xed\x9c\x3b\xb1\x69\xb5\xc1\x94\xfb\x81\xa0\xe3\xc6\x82\x0a\xcb\ -\x1e\xbb\xdd\x02\xa5\xbc\x6d\x5b\xff\x2e\xa9\xa8\xa7\x0d\xbe\xb6\ -\x45\x2c\xe2\xb0\xae\xe9\x23\xbd\x8c\xc2\xdf\x23\x6a\xef\xec\xa0\ -\xa1\x02\x4c\x4c\x33\x00\x81\xa9\x27\xf6\xe0\x74\x23\x71\x96\x3a\ -\x28\xc5\x10\xb5\xab\x06\x79\x02\x90\xae\xd6\x33\x96\xaa\xdb\x84\ -\xba\x0d\x6f\x6b\x6a\x9e\x30\x0b\xe8\x5f\x63\x4c\xd9\x93\x8e\x15\ -\x61\x4d\x8a\x44\x3f\x47\xa6\x72\x2b\x96\xfa\x66\x3a\x4f\x36\x4d\ -\xc1\x04\x59\x32\x10\xf0\x59\xe0\xaf\x5e\x87\xd1\xcf\xed\xae\x11\ -\x6a\x8c\x8d\xb8\xe3\x06\x68\x0e\x93\x86\x7f\x59\xc9\xa4\xf9\x2e\ -\x22\x17\xa2\x20\xba\x49\xcb\x22\xcf\x22\x3b\x10\xe9\x3e\x07\x49\ -\x38\x12\xa2\xb9\x4e\xe5\xd2\x31\xe6\xed\x30\x27\x0c\x96\x0a\x61\ -\xf4\xab\xe4\xab\x54\x71\x37\x76\x16\x05\x37\x90\xca\x1e\xd9\xe9\ -\xa6\xf6\x81\xb6\xa2\x03\x52\x65\x30\x51\xfa\x75\xd0\xf0\x18\xe4\ -\x86\xb7\xa2\xda\x66\xda\xaf\xd1\x36\x64\xfa\x81\xe5\x07\x69\x09\ -\xf6\x57\x30\x82\xca\xb6\x13\x32\xdd\xe1\x01\xdc\x44\x27\x0b\x89\ -\xfb\xd6\x74\x95\x57\xcf\x0c\xf3\x99\x5f\x96\xeb\x5f\xb4\x07\x5d\ -\x82\x2b\xed\x82\xf5\x59\xd4\x72\x3f\xa2\xba\x86\xc9\xf5\x39\x75\ -\x9e\x43\xe9\x73\x51\xab\x44\x91\x7d\x7c\x7c\xd4\xe6\x24\xce\xae\ -\xdc\x89\xf9\x7b\xf9\x49\xb0\x21\x86\x80\xa1\xa1\x82\xab\x89\x72\ -\xd4\xa7\xe8\x43\x5a\x6e\x64\xd8\x0a\x64\xa6\x16\x4a\x75\xd4\x10\ -\x58\x88\x27\xa4\x28\xd0\x36\x78\x5a\x23\xa4\xc1\x0d\x6a\x79\x5e\ -\xb6\x03\x8b\x64\xe6\xd2\x92\xf0\x7c\x29\x81\x13\x03\x4e\x54\xec\ -\x1e\x55\xc0\xe9\x6c\x29\x48\xbc\x70\xc8\x89\xc9\xb4\x14\x21\x99\ -\x45\xbb\x3c\x7b\xd8\x76\xd0\xd3\x46\x03\xac\x54\xba\xcd\x36\x3a\ -\x93\x01\xe3\xcf\x62\x0b\xab\xfc\xca\x7b\x66\x11\x96\x98\x2f\x9d\ -\x4f\x89\xe8\x41\x87\xcd\xd1\xa0\xe7\x6a\xcc\x37\x64\x67\x59\xe3\ -\xf5\x60\x4a\x44\x2f\x61\x63\xcf\x50\xf0\xc6\x09\x99\x76\x49\x79\ -\x8a\x4c\xcb\x3e\xc8\xa9\xd6\xc7\x96\x5a\x89\x96\x7e\x73\xcc\x92\ -\x49\xa8\x09\xc8\x16\x46\x98\x4f\xb5\xc8\xf4\x73\xdc\x99\x78\xd4\ -\x65\x10\xb9\x56\x29\x61\xa7\xcf\xc0\x1b\x54\x12\x1b\x3f\x08\x13\ -\xda\x07\xa1\x3d\x96\x3a\x28\x7a\x21\x99\x2e\xfb\xa8\xb6\x7f\x56\ -\x99\x47\xc9\xdd\xad\x8f\x76\x97\x36\x2e\x92\xdc\xdd\x86\x68\x77\ -\x69\x23\x24\x0b\xb5\xb8\xbd\xcc\x8f\xac\x08\x9f\xbc\xc9\xf4\x53\ -\xbb\x63\x36\x21\xe0\x45\x5a\x0a\x43\xd8\x27\xe8\x6a\x89\x0b\x75\ -\xfd\x3c\xd9\x2c\xb5\x6c\x8a\xbb\xca\xc3\xa9\x6e\x51\x98\x3d\x5a\ -\xfb\x25\xb5\x23\x9e\x9d\x22\x57\xa7\x93\xa6\xb8\x15\xc7\x32\xa1\ -\x54\xdf\x75\x03\xa6\x3f\x2a\x0e\x05\xa5\x0a\x94\x0c\x00\xbc\x45\ -\xee\x9c\x9e\xa1\xca\x88\x1c\xe5\xe4\x01\x79\x42\x85\x7b\x97\x00\ -\x53\xf6\x90\x0d\xf4\x3c\x6a\xa5\x57\x46\x77\x10\x76\xe0\x6d\x88\ -\xd8\x7c\x4b\xb9\x98\xce\x15\x70\x90\x2c\xc2\x93\xdd\xb5\xe3\x28\ -\x34\x6b\x8b\x65\x59\xce\x76\xbc\x2b\x66\x97\x2d\xa3\x99\xe7\x1e\ -\x53\x98\x31\xdd\x4c\x44\x29\x72\x64\x02\xe0\xd6\xdf\x0e\x27\xfd\ -\x84\xb5\x50\xb5\x40\xdd\x03\x28\x43\xa3\xf9\x37\x2c\x7f\x00\x68\ -\xc2\xcf\x9b\x68\x3e\xe7\x26\x86\xd8\x6b\xdc\xd9\x29\x59\x5b\x5a\ -\x5e\xb6\x37\x45\x98\x9f\x79\x00\x98\xf6\xaf\xd7\x97\x60\x6a\x2b\ -\xe3\xc1\xc3\x72\x33\x53\xdf\xa3\x9a\xc8\x39\x74\x22\xb9\x68\x52\ -\x00\x40\x5a\x02\x1e\x87\x36\x3c\x3b\xd9\x07\x73\x31\x0d\x80\x5d\ -\xb8\x00\x66\x95\x37\x30\x01\x2c\xc0\xe3\x82\x20\xc7\x2d\x30\xa6\ -\x9c\x89\xc8\x90\xad\xd9\x6c\xcc\x4d\x4f\x37\xb2\x8b\x46\x0c\xdb\ -\x88\xd2\x39\x85\x0e\x2b\xa1\xcd\x97\xb8\xfa\x58\xe4\xa7\xe0\xd6\ -\x90\x73\xc0\x02\x6c\x87\x7f\xab\xc8\x99\x9a\x22\xb9\x83\x4e\xd3\ -\x29\x15\x06\x69\x29\x96\x21\x98\x70\xd6\x06\x1d\x89\x2e\x0a\x0b\ -\xce\x32\x69\xef\x7a\x39\xdb\xc1\x5c\x6b\xb7\x68\x79\x26\x0b\x78\ -\xb4\x0d\xe1\x01\x8b\x0e\x63\x8d\x71\x8e\xb1\xaa\x63\xd5\xaa\x33\ -\xd3\xea\xa1\x0f\x70\x1e\xc5\x4a\x71\xf8\xa4\x5c\xf2\x6c\xb8\xfc\ -\x1f\x35\x6a\x92\x4e\xf6\xee\x8e\x18\x31\xaa\xdd\x2a\xd9\x73\xf8\ -\x74\x5b\xb8\x8e\x4a\x1b\xca\x43\x9f\xcb\x39\xea\x72\xa5\x08\x55\ -\x28\xda\x49\x51\xe4\x99\x39\xbb\xe4\x23\x19\x4b\x77\x0e\xcd\x2d\ -\xa7\x66\x0c\x35\x8c\x79\xd5\x07\x98\x2b\x7d\xbc\x8a\x1d\xcd\x72\ -\xe9\xf9\x20\x30\x2a\xb3\xa0\xaa\xdb\x0e\x86\x8a\xac\xb4\x38\x32\ -\x12\x38\x97\xce\xcd\x95\xa9\x7c\x1c\x85\x4f\x24\x0f\xcf\x96\x6b\ -\x9c\xcb\x0b\x06\x15\xf8\x96\x09\x1f\xe2\x0a\x17\x6c\x89\x47\x48\ -\x95\xca\xd2\x8a\x40\xb0\x00\xa9\x34\xdf\x2c\x33\x3b\xc2\x22\x46\ -\x22\xe7\x3c\x45\xd4\xf2\x6a\xb4\x50\x95\xc9\x10\x3d\x55\xa7\x05\ -\x22\xb8\x49\xe0\x71\x62\x12\x66\x00\x33\x23\x98\xfd\xdb\x85\x88\ -\x74\xd1\xa6\x1d\x44\x16\x10\xea\x31\xe4\xd0\x15\x0a\x9b\x1e\x41\ -\x8c\x47\xd6\xa3\xf6\x32\x53\x9c\x72\x5c\xa1\x63\xae\x52\xba\x9f\ -\xd9\x2e\x0e\xe4\xdf\x2c\x8a\x44\x77\x78\x3b\x51\x0e\xcf\x01\x62\ -\x22\xe9\x25\xc0\x86\xf3\xf4\x88\x38\x42\x2d\x67\x27\x21\x88\x45\ -\xc9\x64\x6f\x14\x3a\x8b\x8c\x6b\xe4\x2f\xb8\x88\x29\x93\xf4\x4a\ -\x5c\x45\x50\xa3\x38\xdc\xea\x57\x6a\xc2\x37\x07\xb8\x5f\x94\x5a\ -\x39\x17\x6d\x63\xd1\x00\x60\x0d\xe3\x60\xc6\xb3\x23\xd7\x2c\xa6\ -\x09\xcf\x4b\x79\x1e\x27\xa0\xe9\x3f\x5d\xc6\x80\xeb\xe6\x07\x4d\ -\x4f\x8b\x1f\x00\x03\xcd\x5a\x18\xbd\x61\x6d\x44\x7a\x00\xed\x8f\ -\x96\xd4\xa2\x19\x7a\xc8\x61\xb1\x61\x3b\x77\xac\x06\x20\xef\xc3\ -\xfd\x50\xfe\x4b\x47\xee\xf3\x2c\xab\xa7\xbb\xd7\x10\x1a\x81\xe1\ -\x4f\x82\x9d\x55\xc0\x9d\x47\x47\xa1\x35\x8f\xe0\x5d\x8f\xf1\x31\ -\x73\x36\x19\x95\x57\x45\x48\x50\x68\x23\x51\xb3\x29\xf9\xc0\x40\ -\x34\x80\x4d\xb7\x14\x3d\xc1\x77\x0c\x9e\x12\x12\xe7\x8b\xd8\xc9\ -\x5a\x51\xde\x2d\x7c\xb6\xb6\x43\x67\xcf\x6a\x01\x72\x7a\x46\x20\ -\xce\x53\x1d\x82\x94\xe7\xa9\x38\xde\x6c\x47\x9e\x0e\x46\x93\x95\ -\xe2\x2f\xa5\x05\x5a\xf1\x44\xd9\xe9\x87\x73\xdb\xc2\x11\xac\xb0\ -\xa7\x34\x5a\x77\xaf\x4c\xbe\x21\x30\xf0\x0c\xee\x4f\x3d\xe6\xaa\ -\x4c\x7a\x35\x16\x0f\xad\x54\x98\x3c\x70\xc9\x20\x6b\x55\xc7\x1f\ -\xe0\x7b\x3b\x91\xfe\xdf\x84\x16\x3e\x3f\x96\xea\xe3\x4c\x7c\xfe\ -\x7e\x2b\x2e\x92\x87\x5a\x5a\x2b\xc0\x22\x8e\x78\xb5\xe2\x02\xd1\ -\xbd\xdb\x1a\x3a\xfa\x45\x77\x17\xcb\xe9\x10\xbc\x28\x79\x14\x05\ -\x17\x6d\xbd\x15\xf9\xd1\x18\x72\x4d\x76\x5c\x87\xc1\x2a\x20\xd1\ -\x0f\x66\x16\x64\x40\x43\xcd\x86\xca\xf7\x76\x80\x6e\xe6\xd1\x58\ -\xe2\x76\x1e\x30\xad\x8e\xd2\xbe\x9e\x44\x44\x34\xed\x10\x53\x71\ -\xe5\x86\x61\xdb\x32\xc9\x71\xdd\x91\xd9\xa6\x52\x1b\xb4\x96\x7e\ -\x09\xb8\x80\xe9\x1b\xad\x78\xe2\xa4\x95\xe6\x07\x88\xee\xd1\xdf\ -\xae\x5e\xf0\x41\xf3\x83\xdf\x5b\x61\x3f\xda\x43\xad\x19\x18\xb1\ -\xb5\xe0\x3a\x6e\x2b\x9e\x64\x83\x2e\xcd\x82\x9d\x9f\x8c\xf4\xd7\ -\xbe\xd5\xca\x8f\x59\x81\x9d\x35\xdb\xb1\x39\x7b\x15\x07\xe6\x39\ -\xfb\x38\x48\x26\xdc\xaa\x6b\x93\x9b\xcf\xb5\xa6\xdc\xe8\x83\xd3\ -\x52\xba\x43\x58\x76\x00\xe5\xb4\x7a\xd2\xb3\xe0\xa9\xe1\x6d\xcb\ -\xca\xf1\x46\x3d\xda\x5a\x6d\xaf\xa4\x55\x50\x19\xd1\xb8\x0c\xa1\ -\x2d\x3b\x4b\xe7\x77\x10\x99\x0b\x83\xc2\xe5\xc1\x30\x57\x1a\xfe\ -\x82\x8d\x89\xa3\x79\x22\xd4\x30\x48\x44\xe6\x8e\x72\xb0\x84\x6b\ -\x83\x96\x62\x12\x47\x31\xaa\x2d\xfa\xec\x00\xec\x11\x37\x67\x64\ -\x47\x5c\x3c\xc3\x48\x67\xc6\x4e\x55\x88\x94\x1a\xc6\xb7\x38\x23\ -\x43\xfd\x9f\x73\xf3\xb4\x2c\xea\x51\xce\x34\xa6\x9b\xaa\x57\x76\ -\xaa\xe1\x73\xa1\x51\xd3\x47\x21\x42\x65\x7e\x47\xfd\x22\x09\xa8\ -\xc0\xb3\x58\xa3\x21\xa8\xc2\xc6\x97\xea\x3b\x0e\x25\xf3\xc4\x16\ -\x88\xcb\x1d\xed\xd1\xb3\xdc\xc2\xb1\xaf\x1b\x78\xaa\x2c\xc9\xf4\ -\x23\xe9\x27\x78\xf5\x24\xae\x00\x7b\xcf\x13\x71\xaa\xb3\x28\x93\ -\x59\xc6\x24\x2e\x65\x5b\x99\x80\x23\x4e\xd2\xba\x32\xba\xaa\x63\ -\x6c\x5a\x23\x91\x6a\xeb\x92\x60\x5e\x4a\x4d\x30\x11\xcb\x91\x66\ -\xdc\x97\xa7\x1f\x23\xb3\x6d\x28\x62\x7f\xa2\xb7\x16\x3b\x66\x61\ -\xd9\x42\xc9\x0f\xf8\x13\xc3\x4c\xb2\x55\xb5\xac\x12\x53\x0d\xed\ -\xd2\xcc\x1b\x7a\x4e\x0f\x13\xbd\x50\x15\xe1\x87\x75\xcb\x18\xb2\ -\x1d\x99\x94\x3b\xf7\xd9\xc8\xce\x75\xe5\x42\xb0\x3a\x26\xca\x51\ -\x1e\x8f\x46\x32\x02\x8f\xa7\x4c\x8b\xd2\x3a\x22\x18\xee\x73\x3d\ -\x55\x14\x50\x62\x49\x5f\xb6\x0c\xb4\x2b\x63\x5a\xc1\x91\xd7\xc8\ -\xa1\x3d\x26\x7b\xcb\x85\xd6\x14\x4f\x38\xa4\x2f\xb1\xeb\xd9\x96\ -\xc3\x6a\xaa\x88\xa3\xe0\x52\xc0\x70\xa1\x83\x56\x35\x10\x82\xaf\ -\xfd\xe4\xd3\x18\xb3\x41\xb1\x0c\x72\x20\xdf\x61\x88\x24\x73\xe8\ -\x35\x6f\x0d\x05\xed\x5c\x15\xe5\x83\xe8\x51\xbc\xb4\xac\x64\x1e\ -\x70\x3b\x81\x6f\x55\x02\x55\x90\x7e\x29\xa2\x87\x5b\xa8\x95\xd0\ -\xb4\x8e\xd1\x58\xce\xa2\xb2\x24\xa2\x2d\x02\x94\xc9\x16\xdf\xa0\ -\xa2\x1d\x65\x19\x49\x63\x8b\xd3\x6f\x2c\x9c\xc4\x8b\xe3\xf0\x15\ -\xb5\x79\x86\x5b\x8e\x53\x83\x9e\x83\x16\xea\x21\x16\x15\x0c\xf8\ -\xd6\x15\x6c\xc2\x52\xda\x8b\x6c\x6d\x32\xa3\x5a\xae\xe0\xe5\xfa\ -\x0a\x8e\x99\xf9\x92\x45\x55\xea\x1c\x4d\x58\x1e\x2a\x39\x59\x2d\ -\xf1\xb1\x84\x9b\x29\x70\xf3\xa0\x6a\x83\xbd\xdb\x91\xd9\x4b\xdf\ -\xe6\xb5\x99\xc0\x2a\x1d\xb2\x3c\xcb\xc9\x62\x68\x2f\xef\x8e\xb3\ -\x68\x0a\xeb\x50\xc4\x4b\x02\x3c\xa8\x83\xb9\x2e\xb4\x8e\x53\xda\ -\x70\xc9\x02\x94\x04\x51\xe4\x6a\xf5\x76\x07\x04\x4c\xa9\xc3\xef\ -\xdd\xd2\x72\x33\x89\xb0\xdb\x74\x27\x64\x2d\x37\x6e\x52\x76\x78\ -\x01\xba\x8d\x75\x43\x2e\xac\x6a\xcc\x22\xb6\xa0\xce\x3c\x5c\xe4\ -\x47\xed\x81\xa3\x89\xc6\x9c\x12\x01\xad\x9c\x8b\xa1\x8e\x0e\x47\ -\x0d\xf9\x94\xfd\x5e\x02\x9c\x61\x66\x1e\xa6\xf8\x97\x2a\xf3\xc1\ -\x4a\xbf\x39\x84\x95\x0c\x4b\xe4\x6b\x2a\x6d\x7f\x2f\x67\x0b\x3a\ -\xbb\xc0\x83\x2e\x1a\xb3\x49\xc9\x05\x86\x78\x8e\x82\x9e\x10\x6b\ -\xcb\x63\x06\x8c\x97\xea\x21\x63\xa1\x04\x30\x15\xa1\x9d\xf3\x56\ -\x61\xa1\x47\x05\xa5\x28\x2c\x23\x0a\x4b\x44\xcb\x6c\x88\xb8\x7c\ -\x58\x79\x08\x87\xb1\x19\x9f\x2f\xf1\xd2\x69\x2a\xc4\x64\xca\xf3\ -\x6f\xb9\xc4\xde\x45\x80\x56\x84\xbf\x99\x0a\x13\x0f\xcd\xae\xc2\ -\x59\x08\xde\x94\xd7\x84\xbe\xe0\x69\xd1\xf9\x87\x39\x8a\xe2\x26\ -\xea\xa4\x50\x34\xf0\xae\x38\xcb\x57\x2f\xa6\xcc\x9e\xa5\x69\xa2\ -\xd7\xb4\xc8\xd2\x05\x40\x82\x82\x80\xe7\xa9\x6d\x94\xf5\xa3\xfc\ -\xa5\x11\x3d\x8c\xa4\x62\x26\x27\xcb\x08\x30\x06\x14\x0f\x11\x6a\ -\x84\x39\x61\x17\x4a\x05\x90\x0c\xce\x30\xb0\x1d\x10\x33\xe8\x81\ -\xe2\xe2\x46\x34\x15\x15\x49\x7c\x8c\xeb\xae\xc2\xb1\x1c\x7c\x63\ -\x7c\xc4\xa5\x46\x0b\x0b\xff\xd3\x3e\x15\x4b\xa2\xc6\x86\x67\xe2\ -\x51\x38\xde\x3c\x2d\x83\x9a\x07\x14\xb2\x9f\x18\x98\x2d\xc2\x68\ -\x41\xb9\x16\xeb\xf6\xed\x37\xda\x06\xdc\x62\x5a\xa7\xe0\x42\xe8\ -\xeb\x00\xf6\x25\xce\x45\x0a\xce\xaf\xfa\xcc\xec\x3b\x60\xb4\xf5\ -\x79\xa0\xc3\xa4\xed\x75\x01\xc0\xc7\x7a\xed\xe7\xdc\x8e\x52\x89\ -\xea\xb1\x7e\x3f\xf4\xd8\x6f\xe7\x52\xfb\x2e\x6b\x90\x64\x55\x45\ -\x9b\x4a\x33\xf5\xc9\x96\x23\xb3\x3e\x67\x9e\xe4\x25\x13\xec\xb4\ -\x73\x86\x7b\x49\xa6\x88\xee\xa7\xb3\x34\x6e\xaf\x4b\x47\x8d\x55\ -\x2b\xc7\x4c\xb6\xcc\x69\x73\x57\x3a\xa8\x90\x2d\x77\xaa\x98\x2d\ -\x96\x76\xa4\x3f\x70\x17\x97\x96\xd5\x99\x12\x39\x75\xb0\x3d\x29\ -\x80\x2a\xbd\xad\x2a\x1b\x78\x29\xd3\xb0\x2a\x16\x08\x04\x1e\x4d\ -\x36\x2d\x47\x96\xcd\x95\xcf\x61\xa2\x0e\xb2\x44\x19\x45\xb8\x3a\ -\x8e\x72\x92\x86\x0e\xb9\xe0\x18\x45\xad\xad\x48\x5b\xd6\xbd\xff\ -\x53\xe8\xce\x64\xb7\x2b\x98\x21\x65\x66\x90\x67\x9f\xb7\xf3\x05\ -\x8c\xe6\xfb\x46\xa1\x67\xd1\x1d\x06\x9d\x5e\x4b\x5d\x4f\x73\xbb\ -\xdd\x9e\x26\x2f\x57\x2e\x1e\xd6\x98\xe4\x47\x72\x84\xea\x42\xf3\ -\xf8\x91\x3d\x51\xee\x85\x5e\x94\x4d\x98\x7d\x09\xac\xa5\xe4\xa1\ -\x1d\xc1\xd4\x5d\x56\x2b\x0c\x93\x76\xbc\x76\x63\xb0\x14\x00\xc7\ -\x1a\xe5\x3f\x53\xae\xe5\xfb\xc0\xb0\x7c\xea\x09\xb1\x72\x36\x1a\ -\x1b\x29\x09\xc3\x91\x4b\x2b\x16\x35\x29\xb1\x3f\x8a\x14\x79\x0a\ -\x56\x22\x2f\x5a\x78\x42\x21\x5c\xd5\x5c\xd0\x53\x99\x37\x26\xa1\ -\xac\x68\x16\x2d\x0f\x63\x01\xf1\xa4\x98\xa3\x28\xae\xb0\x2f\x46\ -\xb6\xf1\x99\x51\x4e\x30\x01\xff\xef\x04\x49\x23\xbe\x63\xd2\x70\ -\x4c\x0b\xd6\xe6\x21\x67\xb1\x56\x9b\x05\x68\xb5\x32\xb3\x87\x1a\ -\x25\x9d\x05\x6e\x9b\xb8\xce\xe9\x81\x3e\x83\x94\xd0\x57\x01\x91\ -\xab\x5a\x6f\x73\x8a\x13\xa9\xf3\x64\x7c\x32\x82\x5e\x49\xc5\x46\ -\xab\xfd\x11\x7b\x28\x2d\xaf\x38\x6b\x06\xaf\xb5\x23\xdd\xb4\xc9\ -\x27\x14\x17\x27\x7b\x9c\x69\xa4\x73\x76\x07\xe8\xfb\x30\xef\xd4\ -\x96\x1a\x60\x3e\x06\x10\xd3\x72\x06\x51\x73\xd1\xdd\x35\xc9\x75\ -\x3a\x5b\x93\x01\xc3\x00\x98\x3f\x59\x18\x74\xf3\x69\x21\xdb\x1a\ -\x46\x51\xf9\x0c\xa8\xd4\x48\x3b\x4d\x87\x4d\xe3\xfc\x47\x85\xb8\ -\xb9\xfc\x08\xb6\xf4\xb6\xa8\x92\x81\xcb\xf0\x16\x1a\xda\x4f\x75\ -\x2e\xf4\xfe\x4e\xa2\xca\x4e\x6a\x17\x87\x2c\x13\x65\x20\x13\x9a\ -\x50\x0b\x40\x38\x8f\xb4\x0a\xcd\xd0\x84\x55\x13\xd6\x5e\x6f\xe6\ -\x10\xf1\xda\x35\xca\x20\x5a\xc6\x6e\x5e\x88\xbc\xbe\x54\xbb\xb4\ -\x85\x89\x80\x65\x98\xdb\xd6\x83\x77\x47\x31\xcf\xb6\x92\xa8\xc7\ -\x2c\xdb\xd5\xd3\xb3\x92\xf9\x8d\x5d\x59\xe6\x5e\xeb\x6e\x3e\x96\ -\xe7\xb0\xb8\xb8\xe6\x31\x5c\x6d\x8e\x7b\x2c\xea\xa6\x19\x4b\x9a\ -\x63\xa8\x1c\x9f\x36\x47\x5a\x71\x2e\x61\x8e\xac\x98\x90\x1d\x9a\ -\x63\xf5\xb2\x8b\xed\x62\xb4\xef\x76\xd4\xa1\xf5\xc2\x56\xfa\xe9\ -\x1c\x71\xdb\x59\xf4\x1c\xee\xfc\x6e\x56\xe2\x9e\x89\x0a\x7e\x6a\ -\x26\xd2\xf3\x48\xa8\xe7\x78\x21\x47\xe1\x2a\x14\x45\x93\x19\x77\ -\x53\x25\xd9\x98\x35\x90\x7c\xab\x45\x27\x7c\x8e\x89\xf6\x12\xaa\ -\x35\xdd\x7a\xe1\x7d\xe6\x25\x1b\xa1\x79\x68\x05\xd7\x43\xa7\x17\ -\xe8\xc8\xe3\x2e\x8f\x74\x77\x3a\xf4\x7a\x97\x4c\x04\xe8\xae\xc4\ -\x6b\x00\x85\x5a\xa5\xb2\xe9\x98\x79\xa5\x4f\x48\x91\x81\x41\x6f\ -\xd2\x63\x83\x88\x03\x94\x22\x11\x4e\x5d\x5b\x12\x5a\xde\x6e\x74\ -\xcb\x53\x14\x53\xd9\xae\xe5\x0a\x75\x83\x1c\x02\x01\x1c\x5d\x34\ -\x4a\xf2\x25\x44\xa2\x2b\xf7\x96\xc9\xf5\x13\x0b\x1d\x59\x18\x36\ -\x56\x49\xdb\xa2\x1f\x03\xcb\xc6\x77\xc5\x67\x9d\x74\x9f\xdc\xec\ -\xae\xb9\x3b\x91\xdd\x2d\x57\xe6\x1e\x3b\x6d\xb0\x72\xd7\xca\x69\ -\xaf\xf4\x01\x17\xb0\x88\x7e\x70\x56\x6d\x43\x75\x28\xcc\xe5\xb5\ -\xa4\x44\x3a\x52\xcc\xdd\xaf\x7c\x0d\x3d\x58\x0e\x99\x6f\x4a\x9e\ -\x08\xcb\x88\x24\x98\x2c\x5a\x51\x74\xcc\x85\xfd\xad\x2a\x30\x1b\ -\x64\x9f\x56\x84\xc8\xa2\xa1\x58\x63\x5f\xa4\xc5\xc2\x84\x12\xac\ -\xb1\x73\x1c\x3d\x23\x34\xa1\x4c\xdd\xba\xa7\xb5\x7f\x38\x64\x33\ -\x48\x3b\x81\xdf\x85\x17\x57\x08\x05\x39\x0e\x12\x55\x22\x20\xf9\ -\x20\x17\x3b\xc0\x35\xdd\x69\xbc\xf2\x6d\x69\x34\x53\xaf\x1a\xd4\ -\x46\xf4\x04\xee\xbf\x0a\x57\xab\x42\x0f\x29\xc3\xa9\x3f\xe2\x96\ -\xf2\xb9\xd8\x19\x30\xfd\xa0\x9d\x1d\x94\x3d\xf5\x65\xb4\xd9\xcb\ -\x23\xe8\x99\xf6\xbe\x39\xed\xbd\x09\x14\x05\xe1\xd4\x22\x95\xaf\ -\x2a\x9c\x8b\xea\x0a\x47\x26\x3c\x45\xe8\x2b\x7c\x61\x59\x9e\x2f\ -\x44\x11\x5a\x50\xb1\xae\xb2\x68\xdb\xf8\x99\x3a\x66\x47\x78\x21\ -\x43\xf3\xac\x1e\x2d\xd3\xc8\xe3\xec\x1c\x2b\x47\xd1\x72\xa2\xac\ -\xb6\x23\xf5\x74\x0d\xfa\x6e\xbe\x14\xc0\x5c\xfb\x77\x77\xf7\x6c\ -\x8e\xce\xb7\xb9\x8c\x48\xab\x4a\x90\x68\x0b\x10\x37\x96\x78\x97\ -\xf0\x0b\x18\x95\x31\xcd\xcb\x07\xc5\x77\x99\x11\x6b\x59\xee\x4a\ -\xc4\x66\xde\x87\x56\x7a\x51\xeb\xe7\x84\x58\x3f\xa3\x91\xd5\x6a\ -\xe2\xed\x13\x17\xad\x35\xd6\x3c\x76\x21\x9b\x62\x64\xbc\xa3\xd0\ -\x0d\x64\x5a\x5f\xa7\xc4\xfa\x12\xde\xa4\xf0\xe5\x22\x62\x42\xda\ -\x1d\x23\x11\xf6\x1a\xed\x65\xba\x4b\x3a\x04\x54\xa1\xbb\x3a\x42\ -\x08\xea\x27\xfa\xed\x80\xd2\x7f\x28\x7b\x68\xe0\x3d\x88\xa2\xeb\ -\x5a\xe3\x45\x09\xeb\x9b\x70\xa3\x15\xef\x40\x94\xfa\x0c\x11\xc8\ -\x26\xa1\x0a\x20\x4b\x3d\x88\xa2\x46\x35\x9d\xd7\x0b\xfc\x1a\x9a\ -\xee\x00\xc3\x0d\x44\x84\x38\x30\x12\xc2\x6a\x2f\xf7\xda\x53\xc5\ -\x65\x92\xb0\xc4\x75\xca\x2b\xb0\x74\x96\xec\xa9\x85\x97\x8b\xd6\ -\xf3\xd6\x43\xda\xcf\x45\x28\x4b\xf2\x32\xc9\x48\x47\x41\x5d\x2f\ -\x4f\x34\x8b\xb4\xba\x80\xcb\x82\x22\x4f\x33\x64\x29\x86\x5e\x82\ -\x84\x66\x7b\x9a\xab\x2a\x58\xd4\x3c\x72\x09\x82\x1c\xab\xad\x97\ -\x96\x42\x86\xfd\xe8\xb9\xc8\xb0\x94\xb0\x36\x65\x12\xa4\xac\xfd\ -\xa3\xc1\x92\x51\x89\x55\x5a\x49\x19\xfa\x73\x0c\xe7\x7a\x06\x56\ -\x40\x58\xf6\x96\xc2\x54\x03\xcf\x54\x70\xb9\xaa\xaf\x35\x5d\x01\ -\x1a\x62\x09\x4d\x89\x31\x8d\xf9\x3b\x9c\x61\x8b\x93\xab\x25\xb2\ -\x58\x93\x6f\xc7\x6f\xce\x0d\x03\xbf\xc9\xa1\x85\x87\xc9\x42\x3e\ -\x4c\x6b\x71\x54\xae\x4d\x7b\x67\x5b\x68\xa1\xb6\xc1\x1e\x08\x1f\ -\xfe\x55\x67\x1d\x6a\xfb\x96\x21\x3b\x8f\x89\x40\x95\x0b\x1e\xae\ -\x0e\xa9\xe5\x55\xf7\x51\x8b\xba\x47\xe4\x82\x6b\xad\xb7\x27\xdc\ -\xb5\x26\xce\xdf\xea\x55\x8f\xe3\x67\x1a\xc2\x57\xa2\xb5\x81\xe8\ -\x56\xdc\xb8\x4d\xdd\xbd\x46\x2f\xda\x55\xb7\x63\x86\xae\xe2\x6d\ -\xeb\x89\xf2\xdf\x3d\x09\xd0\xc4\x6f\xd7\x55\x39\xb7\xfa\xfd\x82\ -\x45\x1e\xc7\xc9\x6a\x30\xf5\x69\x30\xad\x93\x30\xe9\x80\x08\xaa\ -\xa3\xf9\xa8\xb0\x20\xf8\x55\xe4\xa9\x1a\x6d\x7d\x51\x00\x17\x25\ -\x24\xb3\x8b\x4c\x23\x2d\x70\xd4\x47\xf3\x5c\xfa\xed\xa9\x28\x1d\ -\x5f\xca\xd5\x15\x07\x73\xba\x44\xf1\xdf\x33\x49\xbc\xaa\x34\x33\ -\x6e\x47\x09\x4b\xf9\xe9\x22\xf1\x4c\x64\x2b\xb6\xde\x96\x46\x99\ -\x6b\xfb\xdc\x12\xa0\xfe\x4c\x51\x0c\xda\x1f\xb5\x68\xed\x10\xa6\ -\x28\x74\x09\xe7\x91\x89\xb5\x0f\x98\x87\xca\x0e\xa2\x64\x7b\xa0\ -\x2c\xb4\x11\x3a\x43\xf8\x92\x2b\xb5\xab\xb3\xf1\x23\xb2\x80\x86\ -\xae\x21\x2e\x11\x70\x52\x40\xba\xb0\xe8\x3a\xcd\xb7\xc3\xeb\xf9\ -\x98\x6e\x12\x33\x15\xbc\x18\x58\x0c\x28\x8a\x80\xe4\x1a\x7f\x51\ -\x1b\xa8\x8b\xa8\x22\x26\x26\x95\x50\xd0\x0f\x23\x37\x6a\x5c\x0c\ -\x4b\x6b\x2c\xcb\x4d\x03\x05\x6e\xa7\x00\x97\x96\x05\x8d\x17\x06\ -\xec\x32\x10\x4c\x7b\x68\x92\xcd\x20\x0a\xfa\xf6\xb2\x18\x75\xa3\ -\xab\x2f\x71\xd5\x15\xdb\x8d\x1c\xb7\x12\xa8\x53\x04\x50\x40\xb9\ -\xec\x36\x83\x2e\xed\x92\xc3\x28\x0c\x57\x94\x41\x5f\x7a\xd4\xb1\ -\xe0\xb2\xb8\x27\x34\xbc\xd2\xc3\x9c\x7f\x8e\x70\x3b\xc1\xe6\x27\ -\xf1\x78\x90\x50\xdb\x8d\x1c\xe6\x18\x12\xbb\x8c\x41\x10\xa9\xa3\ -\x82\x04\x72\x16\x4c\x2a\x67\x39\x59\x3b\x4e\x09\x57\x95\x99\x4a\ -\x58\x63\x4f\xa8\x0a\x24\xcb\x8f\x24\xa5\xa4\x94\xb8\x61\xc3\x62\ -\x59\xae\xa4\x16\xbd\x0c\x3c\xa7\x13\x39\x9d\x95\x62\x3a\xa0\x5e\ -\xda\x34\x93\x3a\x8b\xf9\x1e\x62\x46\xfc\x69\x19\xaa\x38\x3f\x91\ -\x2a\x56\x87\x26\xc2\x42\x6f\x8c\x0f\x88\xda\xf6\x2c\xd0\x38\xa2\ -\x61\xf5\x64\x06\xc6\x6a\x45\x8f\x43\x25\x5f\x78\x89\xa3\xc3\x6e\ -\x4a\x31\xac\x18\x34\x7c\x7d\x6b\x7c\xe0\xd6\xd8\xc0\xe2\x42\xd6\ -\x72\xa3\x0f\xc4\x46\xb7\x48\x9c\x0d\x5a\x5a\xd5\x1d\xc1\x64\x78\ -\x41\xb8\x69\xd9\xdf\x62\x06\x8f\x5e\x09\x5f\x32\x3d\xac\xe6\x12\ -\x05\xe7\x9a\x44\x64\xe8\x29\x9b\x56\xf9\x9d\xc8\xeb\xde\x8c\xc4\ -\xf6\x71\xb9\xfb\x4e\x4a\x44\x94\x9b\xf6\x88\x38\x06\xad\xa3\xb3\ -\x83\x81\x8f\x29\x7e\xbe\xda\xcc\x2c\x24\x49\x37\x39\x37\xf8\x6c\ -\xd0\xc5\x73\x31\x33\x3a\x17\x9b\xcb\x6c\x6a\xf2\x44\xce\x37\xcf\ -\x48\x73\x9c\xf4\x13\xea\xea\x80\x8c\x1d\xb3\xa6\xa7\xc1\xb8\x88\ -\x09\x95\xe4\x08\xad\xfd\x98\x7c\x47\x31\x1c\x0a\x8a\x62\x38\x9e\ -\x54\xe0\x74\x11\xb3\x9c\x03\x88\x15\x34\x18\x25\x68\x62\x06\xa0\ -\xb2\xa9\xec\x1f\x8e\xd3\xc4\xce\x18\x70\xfa\xd1\x02\x2b\x72\xdc\ -\x5d\x1f\xbc\x4b\x33\xe2\xed\x18\xc6\x38\x71\xfa\xf4\x18\xbf\x99\ -\x67\x63\x77\x51\xd0\xca\x61\x69\xef\xac\x00\x49\x12\xce\x22\x36\ -\x5f\x4c\x5c\xc2\xa5\x61\x80\x70\x83\x74\x61\x30\x3b\x28\xbb\x7f\ -\x8b\xb3\x82\x89\x3e\x59\xc9\x21\xb3\x70\x13\x39\x09\x6b\x16\xdf\ -\xe1\xbe\xf4\x92\x68\xde\xc6\x30\xb4\x54\x12\x03\xd1\x39\xcc\xf5\ -\xc5\x91\xc9\xb7\x7a\xd6\x2d\x14\xe9\xcb\x7f\x3a\xf0\x53\xdc\x51\ -\xe3\x97\xdd\xd5\xe9\x80\x5f\x17\x07\x1e\x53\x05\x34\x71\x31\x33\ -\xf8\x37\xcd\x0a\xfc\xa4\xeb\x96\x44\x12\x2b\x2b\xbf\x35\x9d\x82\ -\x59\xae\x66\xb2\x2c\xdd\x25\xa7\xb6\x21\x3c\x35\x79\xb5\xb5\x27\ -\x08\x4a\x2a\x9d\x9a\xcc\xa7\x3f\xcd\x2c\x1a\x66\x33\xbd\x99\xf8\ -\xd5\x92\x44\x30\xa7\xe5\x52\x07\xff\x64\x80\xca\xc8\x4f\x22\x32\ -\x6f\x3c\x71\xa0\x50\x82\xf9\xa6\x32\x60\x46\xe5\xaa\x0a\x2f\x0f\ -\xd9\x9e\x1f\xd0\xdb\x60\xa2\xe0\xdf\x91\xa2\x68\x5e\x34\xdc\xc2\ -\x82\x2d\xea\x18\x81\x38\x6d\x22\x18\x4b\xbc\x4e\x56\x89\xbb\x38\ -\x98\x77\xce\xc0\xcc\x00\x1a\x51\xb2\xf9\xa9\xb8\xe1\xd0\x28\x4a\ -\x75\xda\x15\xaa\x12\xe8\x18\xd1\x50\x8e\x0c\x00\x83\x59\x26\x93\ -\x79\xb0\x2c\x82\xc8\xce\xc9\xe6\x4d\xdf\xa7\xfa\x63\x52\xe8\xe7\ -\xa1\x14\x93\xd7\x23\x2f\x4c\xf7\x17\xd1\xdf\x29\x69\x8e\xaa\x53\ -\x54\x2c\x8a\x27\x4e\x61\x29\x5f\xae\x28\x38\x21\x58\x46\xb9\x32\ -\x52\xc3\x88\xaa\xc1\xc8\xb8\x6a\x1f\x6d\xd7\x11\xc2\x43\x3c\x0c\ -\x09\xd4\x75\x32\xc4\x6e\x50\x2f\x39\x81\x9d\xc7\xdc\x11\xac\x07\ -\xc5\xb3\x46\xd8\xbb\x83\xa5\x20\xa0\x17\xca\x0f\xf3\x9b\x6a\x34\ -\x6c\x4c\xa5\xc0\xc6\x74\xc5\xd0\xf4\x83\xfc\x42\x5b\x0e\x2f\x7b\ -\xf4\xd2\x1d\x8a\xcf\xb0\x73\x60\xbd\x3e\xbf\x68\x94\x1f\x6b\x68\ -\x84\x56\xb8\xe0\x8e\xc1\x83\xb8\xaf\xc0\xc0\xe0\x30\x8b\x58\xe6\ -\xe5\xe9\xef\x1d\xdc\x6c\x73\x35\xa7\xcf\xdc\x6d\xd0\x9b\x89\xd5\ -\xd0\x76\x60\xf5\x83\x48\x4f\x1b\xf9\x39\x50\xfd\xde\x2b\xe6\x79\ -\x50\xa5\x8c\x45\x8e\xfa\x28\xcf\x29\x39\x28\x74\x44\x55\xe2\x62\ -\xbb\xf2\x34\x8f\x98\x34\x5b\x15\xf4\x34\xcf\x42\xf0\xa3\x3b\x72\ -\x86\xfb\xd5\x23\x4e\x44\xe1\xdd\x49\xca\xe6\xcc\xd0\x36\x89\x9e\ -\x9d\x85\x15\x97\x92\x99\xca\x72\xb0\xd6\x17\x8b\xb4\x4f\xad\x75\ -\xaa\x2b\xdd\x43\x33\x9a\xb6\x86\x4d\xcc\x2d\x2a\x2a\x58\xc8\xa4\ -\x31\xe5\xcc\xdc\x29\x8f\x14\x53\xe5\x36\xba\x58\x33\xdc\x6d\x1e\ -\x31\xab\x14\x53\x13\x27\x3d\xf5\x82\x6f\x53\x72\x69\x45\xd9\x9c\ -\x90\xe5\x28\xfb\x5f\xc1\xfa\xe7\x2a\xa4\xeb\x8d\x82\x54\x73\x28\ -\xa7\x15\x7a\xb8\x49\x6f\x72\x0d\xec\x42\x8c\xf5\x26\xdd\xcf\x1a\ -\x1a\x45\x79\x26\x77\xdb\xd9\x51\x63\x57\x52\x9c\x32\x97\xd8\x49\ -\xf4\x96\x31\x31\x1d\xbd\x34\xae\x2e\xca\x75\x8f\xac\x45\x22\x35\ -\x5b\xb5\xc9\xb6\x21\x20\xdc\x33\x14\xb8\xac\x50\x2d\x4b\x4b\x0b\ -\xb9\x68\xa3\x53\x6d\x8f\xdd\x14\xac\x6c\xa1\xf2\x11\xd2\x16\x36\ -\x1a\x0f\x93\xc6\x02\xa4\x6d\x33\x94\x1d\x19\x15\xb7\xf6\xa8\x5c\ -\x00\xec\x10\xcb\x89\x24\xc7\x5c\xcf\x4a\xec\xd2\xc6\xa4\x19\x2c\ -\xba\x50\x21\x32\xab\x55\x5c\xaa\x2b\x79\x00\xdc\xec\xb1\x01\x56\ -\x27\x0e\xe0\x0b\x0f\x70\x85\x08\x8e\x69\x2e\x74\xd9\xf9\xb1\xd8\ -\x79\x96\x05\x3b\x93\xbb\x5f\x91\xd8\x7d\x29\xee\xe1\x8f\x61\x59\ -\x9c\x28\x8f\x75\x99\x7c\x8f\xb1\x92\x7d\x51\x74\x68\x01\x6e\xec\ -\xd8\x72\x72\xb3\x02\x96\xe9\x3b\xe5\xfa\x9c\x87\x7d\x32\x6d\x26\ -\xb9\xd7\x8e\xc4\x5e\xc3\x72\x28\x09\xbb\xc7\x61\xcf\xe2\xe2\xaf\ -\x32\x9d\x3b\x65\x96\x4f\xbf\x74\x35\x0c\xba\x7e\xc8\xb3\x0d\xf6\ -\xde\x72\x3d\xd3\x25\xf4\x5b\x0f\xff\x4d\x0b\x4a\x29\x33\x15\x81\ -\xc3\x3b\x59\x11\x30\x3c\xdf\xd8\xd6\xb7\x9c\xc9\x7b\xfa\xbd\x67\ -\x39\x75\x67\xa4\xa6\xb7\xf2\x00\x47\x89\x59\x0d\x9a\xba\x73\xbd\ -\xbe\x69\xb9\xce\x19\xba\xdd\x62\xd1\xf5\xe9\x7d\x83\xc9\x03\x2c\ -\x2b\xcb\xdc\xf2\x52\xb7\xf0\xb4\x4e\x9b\xb0\x53\x56\x53\x21\x25\ -\x61\x8c\xf2\x9c\x0d\x06\xaf\xa9\x0e\xdf\x44\x20\xf5\xf8\xc5\xcd\ -\x65\x18\xc7\xda\xc4\xce\xb3\x44\xcf\x58\x28\x3f\xc4\x82\xf0\x10\ -\x6c\x8b\xc7\xc6\x38\x1b\xc7\xe0\x9c\x82\x88\x33\x43\x26\x11\xb5\ -\xd5\x99\x4b\x4a\x5d\x71\xcf\x98\x77\x57\x8c\x83\xf8\xf4\x02\x77\ -\xca\xc2\x03\x37\x3e\x48\x32\x96\xc4\x25\x5a\x01\x17\x98\x71\xd6\ -\xca\x36\x26\xab\xca\x9b\x8c\xa2\x64\x46\xa2\x7a\x2e\x4f\x2b\x7a\ -\xdf\xc9\x84\x92\x51\x57\x4b\xa8\x18\xe0\x6e\xfa\x6a\x2c\x88\x1f\ -\x2a\x11\xa2\xb4\x84\x3d\x48\x34\xb1\xf0\x59\xb4\xa0\x08\x0f\xa2\ -\xeb\x75\x4b\x59\x4b\xaa\x92\x24\x46\xd2\x37\xf1\x3b\x9d\xc5\x39\ -\x0e\x3d\x38\x6a\xf3\x5a\xa0\xe1\x24\xa6\xe1\x88\xae\xa1\xc6\x3a\ -\x6d\x0f\xaa\x8c\x22\x34\x2a\xad\xbb\x69\x33\x99\xe8\x94\x5d\x22\ -\x8e\x53\x1c\xd4\xa6\x4c\xe9\x2d\x9e\xd6\xd6\x1f\x22\x22\x2d\x75\ -\xaf\x9f\xd2\x4d\x2c\x4f\x60\xc6\x5b\xee\x55\xae\x0d\x2f\xe7\xb5\ -\x3b\x21\x88\x9b\x2c\xcb\xd9\x09\x87\xe4\xde\x5a\x78\x6f\xfb\xf6\ -\x27\x46\x85\xcb\x75\x78\x60\xe6\x0e\x0f\xcc\xa2\xc3\xfd\x29\x3a\ -\xdc\x9f\xdc\xe1\xc6\x99\xd4\x3f\xa2\x4a\x29\x45\xb4\x6d\x6d\x6f\ -\x9c\xc8\x07\x31\xa5\xdf\x17\xd4\x32\x4a\x24\xe9\x38\x54\xf9\xe1\ -\x70\xa3\xcb\x61\x4e\x4a\x1a\x86\xd9\xd4\xd1\x81\xd2\xcf\xcb\xd3\ -\xe8\x32\x3a\xaf\xc4\x01\x91\x43\xc6\x66\x76\x6e\xea\x01\xe3\xfc\ -\x51\x1f\x72\x61\xd2\x90\xc8\x2c\xa3\x23\x5e\x3a\x2b\x5c\x32\x9e\ -\xcd\x4e\xfc\x2b\x95\xbb\x93\xeb\x3a\xae\xcc\x0f\x1e\x4b\x80\xc9\ -\x48\x82\x29\xf0\xec\x42\x27\xbb\xa2\x3a\x1e\x2e\x4a\x0b\x99\x43\ -\xe2\x77\xf8\xea\x4c\x77\x51\xd2\xc8\x25\x76\x8f\x6f\x74\xd4\x4b\ -\x66\xe4\x02\x4c\xe5\x57\xa7\x83\x5d\x22\x52\x43\x92\x52\x38\xf5\ -\xcb\xd1\xd5\x7e\xea\xe0\x10\xe1\x66\xa2\x1e\x1f\x1a\xfc\xb3\xb3\ -\xa5\xbc\xe9\x45\x53\x3a\x45\x29\xb7\x90\x09\x72\x61\x28\x78\xa1\ -\x0c\xf7\x84\xf0\xba\x4a\xe2\xe0\x45\x5b\xa5\xd1\xce\xa2\x46\x51\ -\x04\x2c\xa0\xe6\xa4\x94\x63\xb6\x90\x90\xca\x80\xeb\x47\xe1\xd5\ -\x9d\x90\x87\xb4\x13\x4f\xe8\x4d\x9b\x32\x49\x54\xbe\xb8\xba\x2d\ -\x36\xf1\xd0\x89\x1e\x48\x18\x88\x24\x54\xd2\x63\x08\xd4\x49\x24\ -\xce\x80\xc4\xd5\x8b\x8b\xb4\x13\x3b\xe2\xe6\x69\x41\x1e\x6c\x51\ -\xe9\xaf\x22\xf2\x2b\x4b\x0a\x29\x5e\xc4\xee\xa7\xf7\x8d\xd0\xed\ -\x7c\x3b\x78\x61\xfe\x90\x43\x80\x5f\x3f\x4f\xf4\xbc\xe9\x2a\x7a\ -\xd5\x79\x2c\xd1\xe8\x28\xae\x3c\xe7\xea\xb4\xb8\x2c\xfa\x0c\x42\ -\xcf\xa1\x2b\x1f\xd3\x29\x78\x11\xba\xbc\x4e\x5c\x5c\x24\xde\x46\ -\x6b\xa6\x9f\x71\x20\x9e\xf6\x17\x2a\x22\xa8\xa0\xdd\x1b\xa7\xb1\ -\x3b\x64\x56\x97\x95\x12\x52\x71\x60\xca\x22\xf1\x53\x64\x71\xcf\ -\x21\x53\x96\x6c\xc9\x43\x5c\xad\xa8\xa1\x78\xa6\xeb\x17\x6d\xe4\ -\x62\x6d\xde\x6f\xa6\x99\xe6\xcc\x1b\x28\xcb\xcd\x8b\x33\x8b\xcc\ -\x5d\x4a\x4f\xbf\x53\x6a\xa7\x8e\x42\x54\xb7\x7c\xe6\x28\x54\x9a\ -\x86\x96\x31\xd9\x76\x71\x14\x55\x4b\xb5\x5b\xa3\x67\xde\x5a\xc7\ -\xe1\xdd\xd1\x33\x6c\xac\xf9\x30\x03\x76\x83\x50\x52\xc6\x56\x86\ -\x5f\x3f\x1d\x4f\xd8\x9a\xa3\xe5\x07\x57\x44\x13\x83\xcf\x02\x3d\ -\x20\xa9\xe0\x5d\xdc\x34\x0a\x21\x54\x09\x8a\x7d\x5a\xed\x3a\x8a\ -\x39\x65\x23\x45\x46\xaa\xa2\x2a\x8c\x3a\xa6\xb3\x6f\x7f\xc2\xef\ -\x07\xb4\xdf\x0f\xc4\xa6\xa1\x5a\x57\x44\x1b\x9f\x85\xda\xd1\x9f\ -\x30\x8d\xfd\xe9\xa7\xb1\x5f\x07\x73\x7f\x1c\x4c\xf5\x6b\x45\xf4\ -\xc7\xb3\x50\x45\xfa\x13\xc0\x3c\x90\x16\x4c\x83\x1b\x43\xc9\xc7\ -\x26\xc0\x14\x52\xaa\x99\xc9\x0e\x25\x70\xaf\x78\x57\x4c\x56\x0c\ -\x10\x7e\x3a\x9f\xe8\xd9\x3e\x22\xbc\xa7\x77\xab\xf8\xd7\x31\xd8\ -\x01\x30\x3f\xe6\x69\xdf\x64\xea\x5e\xd7\xff\x06\x7a\xd4\xa5\xd5\ -\ -\x00\x00\x35\x2e\ -\x00\ -\x00\xb1\xeb\x78\x9c\xb5\x7d\x09\x98\x1d\x45\xb5\x70\x4d\x66\xbf\ -\xb3\x85\x10\x42\x08\x21\x74\x16\xc2\x24\xcc\x4c\x42\x42\x80\x0c\ -\xeb\xac\x49\x60\xb2\x98\x19\xb2\x3d\x14\x7a\xee\xed\x7b\x6f\x67\ -\xee\xed\xbe\x76\xf7\x9d\xc9\x04\x0c\x08\x0a\x88\xac\x22\x3b\x44\ -\x76\x91\xdf\xed\x7d\xa2\x4f\x1f\xe2\x2e\x3f\xc2\xaf\xe2\xc6\x13\ -\x9f\x0a\x22\xf8\xf4\xa9\xe0\xcf\x53\xdc\xc0\xff\x3f\x75\xaa\xaa\ -\xab\x7a\xb9\x33\x3d\x41\x3e\x3e\x72\xe7\xf6\xed\xaa\x3a\x75\xea\ -\xd4\xd9\xeb\xd4\xe9\x9f\xcf\xcc\x7f\xea\xd5\xbb\x6e\xfe\xf6\xe2\ -\x85\x5f\xbe\xf0\xde\xc7\x7f\xd6\x4b\x48\xe3\x6d\x84\x90\x5d\x84\ -\x3c\xf8\x3e\xf8\xdc\x4d\xc8\x43\x3b\xe1\x73\x0f\x21\x1f\x4d\x11\ -\x52\xfb\x1c\x7c\x3f\x12\x3e\x7f\x02\x9f\xa7\xc0\xe7\x7f\xc3\x27\ -\xfc\x5f\xbf\x8f\x90\x12\xbc\xb3\xf1\x72\x42\xaa\x8b\xec\x73\xfc\ -\x87\x84\xe4\x4f\x22\x64\xef\xd7\x49\xcd\x43\x93\x84\xec\x3f\x91\ -\xd4\x3c\x56\x43\x48\xf3\xa9\xec\xf3\xc0\x5d\xa4\x76\xf5\x00\x21\ -\xad\xf7\xb3\xcf\x1b\x77\x93\xda\xc1\x6f\xc2\xf7\x67\xd8\xe7\x8d\ -\x7f\x26\xb5\x3b\xe0\xf9\xc6\xf3\xd8\xe7\x87\x4e\x20\xb5\x1f\xff\ -\x23\x21\x0b\xae\x26\xb5\x9f\x7f\x93\x90\xfb\xfe\x46\x6a\xbf\xfb\ -\xbf\x09\xb9\xff\xe3\xa4\xf6\x85\xf7\x13\xb2\x6c\x13\xa9\xfb\x5f\ -\xd7\x10\x52\x78\x27\x99\xfd\xbe\x4d\x84\x0c\x7f\x8f\xcc\xa9\xfd\ -\x77\x42\x0e\xfe\x8e\xcc\x7b\x02\xe0\x7d\xff\x75\x64\x25\x85\xc3\ -\x6d\x26\x27\x7c\xe3\x53\xf0\xf9\x0a\x39\xe1\x05\x83\x10\x6f\x29\ -\x59\xff\xfc\x5a\x42\xd6\x7d\x8d\x9c\x71\xef\x51\x84\xec\x9b\x4d\ -\xce\xbc\x09\xe0\x3f\xf9\x75\xb2\xf1\xfa\x8b\x09\x59\xfe\x03\x72\ -\x6e\x76\x1d\x21\x6b\x5e\x80\x4f\x98\xf3\xda\xe3\xe0\x73\x3d\x7c\ -\xee\x25\xe7\x5e\x09\x73\x7c\xcf\x77\xc9\xce\x0b\x47\x08\xb9\xe3\ -\x7f\xc8\xae\x37\x01\xbe\x73\x3f\x47\x76\xdf\x76\x1c\x21\x47\x9c\ -\xc4\x3e\xef\x3a\x8b\xec\xdd\x75\x07\x21\x1f\x9e\x20\x93\xaf\xc2\ -\xfb\xa5\x0f\x91\x03\x97\xb4\x12\x92\x3b\x95\x5c\xbd\xf4\x66\x42\ -\x56\xe6\xe0\xf3\x56\xf8\xfc\x14\x7c\xde\x0e\x9f\x7f\x26\x37\x7e\ -\xf1\x37\x84\xb4\x35\x02\x8a\xcf\x22\x64\xc5\x1c\xf2\xc8\xa5\xd0\ -\xcf\x7b\x5a\xc8\x13\xbf\xb4\x08\x39\xee\x6e\xf2\xf4\xc3\x73\x09\ -\xb1\xf7\x93\x37\xc8\x53\x84\x5c\xf3\x4a\xd5\xe2\x67\x01\x9e\xed\ -\x9f\xac\x5a\xf2\xe8\x5f\x61\xdc\xb1\xaa\x55\xd7\x1d\x20\xe4\x9d\ -\x3f\xae\xda\xf8\x8f\xfb\x09\x39\xa5\x54\x35\xfc\x3f\x8f\x10\x72\ -\xd9\x39\x55\x3b\xe6\x9d\x03\xef\x8f\x55\xe5\x5a\xae\x26\xe4\xca\ -\x89\x2a\xf3\xb0\xfd\x84\xdc\xf6\x95\xaa\xcb\xd6\xc3\xda\xde\x7c\ -\x4c\xd5\x07\xf3\x65\xc0\xeb\xb5\x55\xf7\x5e\x92\x26\xe4\x98\x15\ -\x55\x5f\x7d\xee\xe7\x84\x9c\xf7\x7a\xd5\xf7\xaf\xff\x01\x21\x43\ -\xe5\xaa\xe7\x0f\xeb\x83\x35\xff\x5a\xd5\x8b\x7f\x84\xb5\x3e\x78\ -\x49\xd5\x1b\x9f\x84\xe7\xa5\x1f\xcc\xaa\xfd\x12\xc0\x77\xd1\xa7\ -\x67\x0d\xee\x82\x7e\x6e\xfd\xf5\x2c\xe3\x13\xa3\x40\x2f\x2f\xcd\ -\xb2\xea\x5f\x24\x64\xcb\xd7\x67\x8d\x2f\x3b\x9c\x90\xd3\x7e\x36\ -\xeb\x3d\x2f\x9c\x47\xc8\xd6\xdc\xac\x0f\x0f\x2e\x00\x7c\x3c\x35\ -\xeb\xa3\x1d\x47\x10\x52\x53\x98\xf5\xc8\xc9\x80\x07\xe7\xfe\x59\ -\xff\xfa\x07\x58\xaf\x0f\xec\x9d\xf5\xe5\x47\xae\x23\xa4\x7b\xe5\ -\xac\xaf\x64\x5f\x03\x12\xfc\xe2\xac\x27\xcf\xfa\x13\x21\x46\xdb\ -\xac\xe7\x1e\xf8\x02\xd0\x93\x37\xeb\x3f\x17\x7c\x18\x68\xee\xf2\ -\xea\xaa\xf7\x7d\x83\x90\x6b\xbf\x5a\x3d\xe7\xd6\xbd\x84\x7c\xf0\ -\xa1\xea\x05\x73\x01\x2f\xab\xaf\xab\x5e\x30\x0f\xe8\x76\x5b\x55\ -\xf5\xaa\x05\xf0\xdc\xbb\xaf\xfa\xc0\x53\x9f\x25\xa4\xef\x73\xd5\ -\x57\x1d\x0b\xf8\xef\xff\x44\xf5\xc1\x5d\x0f\x02\x4d\x0f\x55\x7f\ -\xe6\xe0\xdf\x60\xde\x3f\xa8\xfe\xec\x93\xb0\x3e\xb7\xae\xad\x7e\ -\xfc\x87\x2f\x11\x52\xbe\xa0\xfa\x1b\xa7\xc3\x78\x13\xdf\xaf\xfe\ -\xe6\x8f\xde\x05\xfb\xe1\x0b\xd5\x4f\xb7\xbc\x0c\xeb\x58\xaa\xfe\ -\x69\x33\xb4\x77\xad\xea\xd7\x4a\x40\x0f\x9d\xef\xac\x7e\xed\xf1\ -\x0b\x09\x99\xf7\xad\xea\xbf\xb7\x01\x3d\xaf\x5e\x5e\xb3\x78\xe9\ -\x52\x42\x16\x7f\xa6\x66\x47\xdd\x4d\x84\x74\x0d\xd7\x5c\x78\x31\ -\xcc\xef\xce\x8d\x35\x93\xaf\x42\xff\x57\x7d\xb9\xe6\xb2\x09\xa0\ -\x8f\xad\xc7\xd4\x5c\xf9\xd7\x83\x84\x5c\xf7\x64\xcd\x35\xcf\x7e\ -\x92\x90\xf4\x60\xcd\x3d\x57\x03\xfe\x6a\x6f\x64\x9f\x93\xa7\xd5\ -\x3c\x70\x22\xe0\xf7\x86\xdf\xd4\x3c\xfc\x5b\xa0\xeb\xb5\x9f\xaa\ -\xf9\x85\xf5\x4b\x42\x52\x3d\x35\x2f\xb5\xc1\xfa\x54\xd7\xd6\xfc\ -\xb6\xe7\xeb\x30\xfe\xb3\x35\xaf\x3e\xf7\x30\xd0\x9b\x56\x5b\x7d\ -\x39\xe0\xaf\x70\x67\x6d\xed\xd3\x80\xe7\xde\x8b\x6b\xdb\x5e\xf3\ -\x08\xb9\xe9\x9a\xda\xa3\x67\x03\x1e\x06\xb3\xb5\x2b\x5f\x06\xfa\ -\xda\xbc\xbb\xb6\xff\xb4\x0b\x08\xb1\xae\xa8\x3d\xff\x39\xc0\xdb\ -\xec\x3c\xfb\xfc\xd0\x5d\xb5\xe9\xd7\x01\xde\x73\xff\x5a\x6b\xbc\ -\x02\xfb\xe1\xd2\x3b\x6a\xaf\xfc\x34\xf4\x7f\xe7\xc2\xda\x5b\x1e\ -\x06\x3c\x1d\xfe\x14\xfb\xbc\xeb\xf0\xda\x4f\x9c\x0b\xcf\xfb\xe7\ -\xd6\x7e\xa1\xfa\x49\x42\x16\x3d\x5a\xfb\x78\x33\xac\xd7\xe5\x8b\ -\x6b\x1f\xbf\x0e\xe8\x44\xbf\xa3\xf6\x4b\x3b\xa0\x9f\x73\x1e\xa8\ -\xfd\xe6\x36\xba\xcf\xed\xda\x97\xaf\xeb\x22\xe4\xb0\xcf\xd7\xfe\ -\xfd\xa7\xb0\x9f\x7a\x5f\xac\x5b\xf4\x2b\x58\x87\x7b\x1f\xab\x5b\ -\xf1\xca\xc7\x60\x9e\x46\xdd\x9a\x5f\xc2\xbc\xde\xf3\x97\xba\x9d\ -\x47\x01\x5e\x08\xa9\xdb\xf3\x2a\xe0\xcb\xf9\x8f\xba\x7f\xf9\x3e\ -\xbc\x77\xe6\xb7\xea\x0a\x57\x01\x1d\x9c\x6d\xd6\x79\xc7\x00\xdd\ -\x9c\xf7\xae\xba\x0f\xde\xd2\x4f\x48\xcb\xf1\x75\xb7\xee\xfa\x16\ -\xac\xef\xd5\x75\x5f\xbc\x14\xe0\x5a\x34\x50\xf7\xad\xcf\xd7\xc2\ -\xba\xbd\x5c\xf7\xeb\xda\x2d\x40\x17\x0d\x75\xaf\x3c\x02\x3c\xeb\ -\x9e\x1b\xea\xfe\xf0\x34\xe0\x73\x61\x5b\xdd\xdf\xfe\x1f\xc0\xdd\ -\xb7\xbd\xee\x8d\x05\x40\x1f\x27\x3d\x56\xf7\xc6\x3d\x40\xff\x37\ -\x3d\x5d\xdf\x70\x03\xac\xeb\x09\xcf\xd6\xb7\xfc\xdb\x9f\x09\x59\ -\x3f\x51\xdf\x7a\xc5\x99\xf0\xfe\xbe\xfa\x75\x79\xd8\x67\x47\xbe\ -\x58\xbf\xee\xd7\xb0\x6e\xb7\x37\xd5\xf7\xf7\xac\x24\xe4\xbd\x9f\ -\xa8\x3f\xe7\x58\xd8\x17\xb3\xda\xeb\x37\xbb\x4b\x80\x3f\xbd\xb7\ -\x7e\xcb\x43\x40\x9f\x07\xde\xac\xdf\xf5\xf4\xaf\xe1\xfb\x63\xf5\ -\xe9\x7f\xc0\xbe\x9e\xf3\x60\xfd\xa5\x4f\x7c\x06\xf8\xe7\x50\xfd\ -\x55\x0e\xac\xe3\x44\x6d\xfd\xfd\x2f\xc1\xf3\xa5\xc3\xf5\x5f\x7d\ -\x03\xd6\x67\xd5\xbc\x86\xe3\x1f\x05\xbc\xdd\xf2\x6c\xc3\x9a\x6f\ -\xc0\xbe\xbc\xfd\xc7\x0d\x27\x7b\x00\xd7\x71\x3b\x1a\xfa\xbf\x00\ -\x78\x5a\xd7\xdd\xb0\xe9\x5b\xab\x61\xfc\xc3\x1b\xf4\x8b\xa1\x9f\ -\x45\xff\xd5\x70\xdf\x53\x39\xa0\x9b\x7f\x6b\xb8\xff\x05\xe0\x53\ -\xfb\x2f\x68\xf8\xd7\x23\xda\xa1\x9f\x2f\x34\x3c\x5a\x03\x78\xbe\ -\xf3\xaa\x86\x67\xd6\x00\xfe\x0e\x7c\xa7\xe1\x87\xdf\x36\x09\xb9\ -\xa4\xa7\xe1\x17\x77\x7e\x89\x90\xa3\x4f\x69\xf8\xc5\x57\x81\xbe\ -\x2f\xfd\x51\xc3\x6f\xaf\x85\x7d\xfe\xc0\xcb\x8d\xda\x4f\x96\x01\ -\xbf\xf6\xe0\xf3\x51\xd8\x9f\xc7\xc3\x27\xd0\xf3\x83\xf7\x36\x6e\ -\xbe\x05\xf8\xfa\xf2\x05\x8d\xc6\x4f\x00\x2f\xef\x6f\x69\xcc\xb7\ -\xac\x20\xe4\xfa\x67\x1b\xdf\x7d\x2d\xe0\xaf\xee\x8b\x8d\xe5\xa5\ -\x00\x9f\x37\xd4\x38\xfe\x7b\xe0\xe7\xd9\xb3\x1b\xaf\x78\x08\xf0\ -\xbd\x6c\xbc\xf1\x83\x4b\x61\x1e\x77\xf4\x34\x1e\x7c\x13\xf8\x4d\ -\xf6\x8e\xc6\xcf\xad\x04\xfc\x9c\x74\x4c\xe3\xb7\x17\xc2\x7a\xdd\ -\xf5\x68\xe3\xf7\x17\x83\x6c\x78\xd7\x6f\x1a\x5f\x5e\x0a\xf3\xdf\ -\x75\x73\xe3\xef\x4e\x00\x3e\xde\xfc\xb3\xc6\x57\xd7\x02\x5f\x3a\ -\xaa\xba\xf1\x0f\xc7\x02\x9e\xab\xef\x6b\x7c\x73\x00\xf8\xc1\xcd\ -\xe3\xa9\xc6\xaf\x52\x7e\xb4\x21\xd5\x7e\x07\xd0\xe1\xe6\x57\xe0\ -\x13\xe6\xbd\x65\x1d\x7c\xc2\xbc\xb6\x5c\x9c\xea\xfc\x12\xec\xcf\ -\xd5\x7f\x4e\xad\xfb\x18\xcc\xeb\x03\xaf\xa5\xce\x3a\x1e\xe8\xfc\ -\xa2\xbf\xa5\xce\x1a\x03\x78\x2e\x3e\x2d\xb5\xe9\x41\xe0\x6f\xf7\ -\xbe\x9e\xba\xf0\x05\xa0\xa3\xe3\xe7\xc2\x27\xc8\xaa\xe3\x73\xf0\ -\x09\x7c\xfd\xf8\x7f\x4f\x19\x77\x02\x3c\x1f\xfa\x4e\x6a\x5f\xed\ -\xa5\x84\x54\xe9\xa9\x4b\xae\x87\x71\xce\x98\x95\xba\xed\x8a\xf9\ -\x40\x07\x67\xa5\x6e\x3f\x1f\xd6\xe3\x8e\x3b\x53\x0f\xcf\x83\xfd\ -\x74\xf8\xb5\xa9\x8f\x7d\xe0\x77\x84\x0c\x2c\x4a\x3d\x79\x3e\xec\ -\xa3\xd9\xf7\xa6\x9e\xd9\xf6\x79\xd8\xff\x67\xa4\x9e\xf9\x15\xf0\ -\x87\xf9\x8f\xa6\x9e\xfd\xbf\x00\xc7\x81\xb5\xa9\xdf\xde\x78\x15\ -\xf0\xa7\x7b\x9b\xea\xf7\x01\xfe\xde\x57\x68\x3a\xfa\x05\x17\xe8\ -\xf3\x2f\x4d\xcb\xee\x06\x3c\xbf\xe3\x7b\x4d\xcb\xbe\x09\xf4\x7a\ -\xf8\x9b\x4d\xcb\x0f\x00\x1e\x2e\x5a\xd8\x74\xc2\x36\x68\x77\xd5\ -\xfc\xa6\xce\xcf\x00\xbf\x36\x7f\xdc\x74\x8a\x0b\xf3\xbb\xff\xc7\ -\x4d\x67\x9f\x0d\xf4\x37\xf8\x64\x53\xdf\xb7\x01\xde\x81\xdb\x9a\ -\xb2\xed\xdf\x87\x7e\xf7\x34\x5d\xf5\x42\x3d\x21\x4d\x23\x4d\x1f\ -\xee\x07\xb9\x78\xe2\xbb\x9a\xbe\x76\x3b\xf0\xb5\xcb\x3f\xd6\xf4\ -\x83\xe3\x81\x7f\xd4\x3c\xd4\xf4\xc3\x03\xc0\x4f\x9a\xae\x6f\xfa\ -\xd3\x2b\xc3\x30\xbf\x77\x34\xd7\x6d\x83\x7d\xd7\xf2\x95\xe6\x86\ -\x41\xe0\x47\x17\x3f\xd1\x7c\xd4\xdf\x40\xae\x5c\xf2\x5c\x73\xfb\ -\x9d\x80\x7f\xf7\xb1\xe6\x13\x0f\x00\x9e\x6e\x69\x6f\x3e\x75\x33\ -\xd0\x7f\xfd\x33\xcd\xdd\xf3\x9e\x81\xf5\xf8\x63\xf3\x9e\xaf\xc0\ -\xbe\x9e\xb8\xa5\xd9\xba\x12\xe6\xb7\x74\x76\xf3\x8d\xf7\xc0\x7a\ -\xdc\xbb\xab\xf9\x96\x1b\x60\xfe\x03\x7f\x6f\x7e\xea\x67\x00\xf7\ -\x47\xf2\xcd\xcf\xbe\x3a\x07\xf8\xdb\xe3\xcd\x3f\xbf\x1d\xe4\xec\ -\xde\x65\xcd\x7f\xf8\x39\xe0\xed\x8a\xc7\x5a\x16\xbe\xfe\x0a\x21\ -\x1d\x1f\x69\xe9\x2e\x50\xfa\xde\xdf\x32\xf0\x22\xc0\x79\x30\xd5\ -\xb2\xfb\x5e\x18\xf7\x3d\x67\xb4\xec\xf9\x04\xd0\xef\xb8\xde\xf2\ -\xae\xff\x82\x75\x6f\x6f\x69\xc9\x3c\x08\x74\x77\xfe\x2b\x2d\xc5\ -\xbf\x00\xfd\x36\x5c\xde\x32\xfe\xd9\x0f\x41\xfb\x3f\xb5\xdc\xf9\ -\x3b\xc0\xd7\xc8\xef\x5b\x1e\x7c\x0e\xf8\x7c\xc7\x60\xcb\x43\x3f\ -\x79\x80\x90\x0d\xbf\x6f\x79\xe2\x09\xd8\x87\xb7\x67\x5b\x5e\x5b\ -\x0f\xfd\x5f\xfd\x74\xeb\x09\x35\xb0\xce\xfb\xff\xb3\xb5\xe3\x25\ -\x78\x7e\xf7\xcd\xad\x5b\xfe\x0f\xe0\xa7\xf1\x2f\xad\xf6\x1d\x40\ -\x4f\xf7\x34\xb4\x5e\xb4\xbf\x03\xe4\xf6\x85\xad\xd7\xef\x05\xb9\ -\x7d\xf2\xc1\xd6\x1b\x0d\x98\xd7\x82\xcf\xb6\x3e\xf5\x1f\x40\xc7\ -\xda\xfd\xad\x48\xa7\x77\x57\xc1\x27\xd0\xc1\xdd\x5b\x5a\xff\xfb\ -\xe5\x6a\x42\xde\x3d\xda\xfa\xfb\x5f\xc0\xba\x6c\xbc\xa9\xad\xfe\ -\x5a\xe0\x4f\x0e\x69\x3b\xf2\x32\xe0\x2b\xe4\xcd\xb6\x63\xaf\x05\ -\x7e\xb3\xff\xd6\xb6\xad\xe5\x6e\xd8\x3f\x77\xb7\x5d\xf0\xd4\x8f\ -\x60\x3d\xbe\xd7\x56\xfe\x34\xc8\xff\x8b\xc7\xdb\x26\xbe\x0e\xeb\ -\xbd\xf7\x1f\x6d\x1f\x68\x82\xfd\xb7\xf1\x4f\x6d\xd7\x3f\xfc\x51\ -\xc0\xeb\x47\xdb\x6e\x4b\x81\x7c\xbe\x5f\x6b\x3b\xf8\xbb\x7b\x80\ -\x3f\xfc\xb4\xed\xcb\x57\x02\xfd\xdf\xf0\x91\xb6\x6f\x7f\x07\xe8\ -\xec\xe4\x93\xda\x9e\x5f\x0c\xf4\x7b\x5c\x55\xdb\xeb\x75\x8b\x40\ -\x7e\x1c\xd5\xf6\xfa\x0a\x90\xa3\xe3\x47\xb6\xfd\x79\x82\xe2\xb5\ -\xb9\xed\xef\x17\xc0\x3a\x5f\x94\x05\x22\x79\x78\x3d\x40\x48\x34\ -\xb2\x8d\x94\x89\x45\xc6\x88\x07\x7f\xe7\x89\x09\x7f\xef\x87\x27\ -\x59\xd0\x08\x72\xc4\x20\x56\x03\xb2\x53\xf8\xbf\xb1\x27\x93\xd1\ -\xb6\xd9\xa6\xe5\x01\x05\x91\xd6\x7e\x47\xcf\x7a\x17\xc0\x33\x7c\ -\x54\x45\xfb\xca\x92\x41\x6c\x45\x7b\x32\xb0\x27\x68\x1f\x1a\x81\ -\xf6\x2d\x7f\x75\xe0\xef\x71\x62\xc3\x67\x9e\xe8\xf0\x24\x83\x2d\ -\x58\xab\x21\x7c\xc7\x84\x6f\xab\xc8\x28\x71\x49\x89\x14\x58\x2b\ -\x1f\xa2\x76\x18\xdd\xd5\x74\xad\x44\x21\xd0\x3c\x5b\xd3\x2d\xcd\ -\xd8\x67\xba\x9e\x69\xe5\xb4\x09\xd3\x31\x56\x8d\xba\xa5\x82\x69\ -\x19\x95\x00\x5e\x0d\xca\x68\x19\x81\xd8\x00\xff\x96\x61\x88\x12\ -\x0c\x17\x8b\x06\xd2\x45\xff\xf3\x87\x6e\xa3\xc8\x80\x11\x73\x8e\ -\x5d\x2e\x75\x75\x75\xd1\x11\x66\xfb\x23\x8c\xd8\x1b\xe8\x73\x1c\ -\xc3\x51\x90\x92\xc1\xe9\x68\x30\xd5\x32\x4c\x88\xf6\x3b\x41\x5e\ -\x82\xd1\x0a\xf0\x2b\x9b\xf4\x56\x98\xea\x5e\xf8\x7b\x0c\x9f\xcc\ -\x04\x5d\xca\x0c\x7c\x28\x57\x23\x82\xbc\xbc\xa1\xb9\x46\xc1\x48\ -\x7b\x46\x46\xb3\x47\xf7\xc2\x1f\xed\xee\x8a\x30\xbe\x70\x26\x95\ -\xa7\x71\x29\xe9\x41\xa0\xca\x30\x5c\x01\xfe\x33\x02\x2b\x64\x01\ -\xd8\x0e\x82\xc9\xc0\x2e\x23\x70\x1a\x4c\x5d\x87\xe7\xa3\xfe\xa4\ -\xb3\x15\x27\x1f\x9d\x3a\x9d\xe0\x04\xf6\x9d\x09\xd0\xe1\xa9\x3d\ -\x25\x58\x54\xc3\xd5\xd2\x65\xc7\x31\x60\xe1\xe9\x0a\xc3\x72\x67\ -\xbc\x3c\x4c\x28\xa3\xa5\xed\x82\xed\xd0\xd9\x85\xe6\xec\xaa\x93\ -\x83\x2e\x26\x87\xbd\xc9\x82\xc1\xe9\x20\x3c\x39\x8a\xd1\x61\x78\ -\x32\xc9\xa7\x5a\x09\x98\xc3\xb1\x27\xad\x8f\x83\x82\x5d\x56\x1e\ -\x67\x2e\x39\x97\xa3\xc9\x85\xc9\xda\xa1\x0d\x56\xdd\xe3\xa4\x69\ -\xdb\x46\xde\xd6\x49\x63\xa3\x8b\xc9\x00\x34\xda\x0f\xaf\x96\x63\ -\xf6\x56\xaf\xe8\x06\xc8\x53\x23\x7d\x64\x84\x6c\x87\x75\x61\x84\ -\x53\x84\xcf\x01\x7c\xd7\x81\x09\xb8\x9c\xc8\x3a\x70\x6a\x1b\xc9\ -\x26\x58\x9d\x11\xe5\xcd\x5e\xf8\xd5\x25\x69\x58\x11\x07\xd6\x85\ -\xee\x57\x15\xb8\xd5\x7d\x8e\xa1\x7b\x80\x75\xa0\x19\xdd\x49\x77\ -\x69\x7d\x23\xdb\x87\x10\xcb\x96\x5e\xea\xd0\x86\x37\x6e\x1a\x1c\ -\xa1\x5f\xd3\xb6\xe5\x7a\x8e\x6e\x5a\x31\x33\x99\x0d\x63\x74\xc2\ -\xd8\xd1\x9d\xdc\xd0\xdb\x39\xec\xef\xd4\x16\xd6\xaa\x97\x3d\xc1\ -\x96\x57\xc0\xcc\x28\xe2\x74\x9c\x83\x8b\x0b\xa2\x01\xd4\x65\xa4\ -\x1e\x13\x7b\x34\xa0\xef\x12\x60\x83\xf6\x4c\xb1\x34\x0a\xdf\x15\ -\xae\x11\xc2\x8f\x07\x6f\x6a\xf0\xbb\x05\x3d\x95\x22\x38\x61\xbf\ -\xa6\xe1\x5f\x0b\xf1\x46\xf1\x67\x2a\xd8\xe8\xf3\xb1\xa1\x15\xcb\ -\x05\xcf\x2c\x15\x8c\x4e\xc6\x85\x46\x3b\x19\xcb\x49\x86\xa0\x98\ -\xa9\xa6\x24\x8d\xf8\xc3\xd5\xf5\x99\x4e\x9a\x11\x56\x33\x6b\xc1\ -\x1e\x60\x83\xbb\xa6\xa4\x0f\x49\x70\x5d\x38\x47\x3a\xff\x0d\xd3\ -\xd2\x47\x0f\xe0\x68\x04\xf7\x71\x11\x31\x49\x59\xcf\x1b\x48\x19\ -\x62\x0b\xc4\xed\x57\xba\xaf\x69\xbf\x62\x5f\xab\xf4\x73\x86\xc4\ -\x58\x1a\x61\x0f\x23\xa8\x67\x68\x44\x6e\x5a\xcd\xd3\xad\x1c\xdd\ -\x50\xca\xd6\x8d\xce\x7c\x91\xc2\x81\x34\x4e\xbb\x05\xfc\xf6\x7c\ -\x60\xec\x54\x5f\xc1\x76\x0d\x6d\x88\xd3\x57\x1b\xef\x88\x3e\x1c\ -\x12\x68\x3f\x1d\x70\xa3\xb6\x57\xd9\x35\xdd\x5f\xfb\x11\x8b\xf4\ -\x0d\x8a\x59\x2f\xc8\xff\xfc\x91\x8e\xc6\x4e\x19\xcb\x45\xb6\x34\ -\x6a\x50\xde\x9a\x71\xf4\x09\xab\xe2\xd0\x8b\x02\x02\xd2\x40\xf2\ -\xcd\x22\xca\xad\xc0\x34\x9a\xb7\x1b\x45\x7b\xdc\x88\xc8\xe0\x7e\ -\xa3\x20\x45\xda\x85\xb0\xbe\x06\xac\x9a\x0d\x82\x42\xee\x14\x75\ -\x5f\x64\xa1\x63\x1b\xd7\x55\x47\x0a\x31\xc8\x3e\xa4\x0f\x0f\xdf\ -\xc8\xc1\x93\x09\xf8\xcb\xc1\x19\xda\x28\x72\xe2\xa5\xef\x6a\x06\ -\x8e\x14\xc0\x59\xc7\x2e\x46\x44\xb0\x06\xbc\x38\x2a\x85\x03\x20\ -\x7f\x03\x09\x98\x91\x5f\x01\x37\xb4\x24\x61\x8d\xf4\xc3\x5f\x45\ -\xc4\x8a\x0b\x7f\xd9\x6f\x17\xa3\x8b\x21\x7b\x06\x03\xed\xc3\x00\ -\xb4\x14\xf9\xca\x4c\x47\xe8\x5b\x24\xa1\x67\xcc\xa2\x61\xb9\xa6\ -\x6d\x4d\xcf\x0c\xc2\xf4\xaf\xc3\x1f\x39\x68\xed\x29\x54\xd3\x2f\ -\xba\x43\xac\xcd\x01\x68\x47\x11\x2a\x17\xfe\xa3\xf4\x93\x93\xaa\ -\x9a\xff\x6a\xc5\xe6\x0b\x01\x70\x03\x55\x06\x0b\xd1\xc5\x16\xa0\ -\x8c\x84\xa7\xe8\x7c\xfd\xf6\x84\x95\x73\xf4\x8c\xba\x71\xfc\x67\ -\xd8\xd1\x23\xc8\xd0\x19\x63\x08\x6a\x39\x45\x14\xfe\x63\xf8\xcd\ -\xa9\xa8\xe1\x98\x9c\x08\xe9\x67\x16\x5a\xa4\x39\x60\x95\x58\x4c\ -\x16\xc9\x32\xc3\xb5\x21\x3a\xf3\x51\xce\xa0\xf3\xfe\x48\xac\x25\ -\xfd\x3b\x0b\xab\xf3\x12\xef\x53\x4e\x6b\x60\x60\x5f\xa9\x60\x67\ -\x8c\x58\xdd\xc8\xd5\x80\x30\x61\x21\xcc\x22\x70\x75\x47\x3c\xec\ -\xa0\x84\xec\x96\x47\x61\xb5\x60\x79\xb2\x7a\xda\x70\x2b\xa2\x64\ -\x0e\xa8\x95\x92\x5b\x04\x97\xa6\x1e\x1a\x4c\xc0\xe6\x50\xb8\x3f\ -\x7f\x82\x4d\xf7\x20\x2f\xf0\x70\xe3\x7a\x08\x35\x9d\xa3\x81\x34\ -\x96\x46\x2c\x64\x70\xfe\x0c\x2f\x69\xfe\xa6\x8d\x38\xd4\x71\xb7\ -\x50\x4c\x4c\xf8\x5b\xd9\xc5\x3e\x28\xc3\x92\xba\x6b\xe7\xb6\xb2\ -\x57\x61\xe6\x36\x08\x77\x8d\xc3\xa3\xb9\x79\xc3\xf0\xba\x2a\x00\ -\x3a\x17\xb7\x91\xd0\xee\x98\xde\x27\x11\x5c\x33\x90\x31\x91\x74\ -\x53\xac\x25\xfd\x8a\xcd\x4e\x8d\x69\xc6\x68\x46\xe7\xcc\x6a\x0c\ -\x19\xd1\x78\x78\xfd\xfd\xae\x8f\xa4\x7d\x31\xf0\x61\x25\x4c\xe0\ -\x87\x0c\xf8\xb8\xd1\x16\x04\x04\xc4\x28\x62\x22\xac\xc1\x35\x0d\ -\x9a\x96\xe9\xe6\x35\xc1\xa1\xb8\xe6\xc6\x9e\xfa\x3c\x7a\x3b\xc2\ -\x2d\x5a\x07\x39\x94\x1c\xa3\x03\xd7\x22\xcf\x9f\xbb\x7c\x5c\xa6\ -\xc3\x57\x16\x4f\x4b\xd8\x58\xc8\x32\xb8\x2e\xeb\xe5\xed\xb2\xa7\ -\xa5\x41\x4c\xd0\x85\x60\xa8\x8c\x07\xec\x9a\x88\xf4\x57\xa7\xcc\ -\x58\x95\x46\xd6\x04\xac\x30\xa1\x2d\x26\xd5\x06\x66\xae\x2d\x9e\ -\x2a\x99\xe0\x1a\xae\x18\x25\x57\x8a\xf8\x2a\x0e\x49\x8d\x28\x2a\ -\x68\x6b\x84\x30\x0f\xbf\x3c\x8f\xec\xe0\xdc\x2c\xcd\x19\xc2\x68\ -\x90\x32\x37\x83\xcc\x52\x1a\xd2\xaf\xd8\xf0\x57\x31\x0d\x0f\xd5\ -\x66\x9b\x40\x81\xca\xb9\x4e\x45\xf4\xbf\xbd\x32\x4c\xbc\x79\x2e\ -\x50\x64\x89\x73\x46\x15\x11\x7b\x36\xa3\xf0\x8e\x65\x03\xa3\x86\ -\x37\x61\x18\x96\xb6\x86\x49\x76\x77\x06\xf2\x2b\x6d\x97\x26\xe3\ -\xd0\x3b\xc7\x47\x2f\xdd\x3e\xfb\x03\xa0\xd4\x6d\xcd\x66\x5d\xc3\ -\x53\x94\x3c\xf6\x00\x1b\x7e\x32\xd4\x30\x11\xb7\xe0\x78\xfb\x27\ -\x93\xf7\x8c\xf0\xbb\x91\xcd\x21\x86\x53\x1d\x02\x36\xa3\x68\xb9\ -\xa1\xa2\xd2\xa4\x21\x20\x39\x7c\x5e\x04\xe0\x9f\x87\xa7\x39\xae\ -\x0b\x6e\x03\x60\x0b\x60\xd4\xe6\x7c\x45\x4a\x22\xe9\x0c\xae\x11\ -\x66\x11\x3d\x6e\x2c\x7a\xce\xf0\x47\xa9\xbc\xf7\x4f\x93\x7b\xdf\ -\x31\x72\xe5\x82\xee\x00\x15\x15\x26\x73\x49\xd4\x20\x45\xd8\x6c\ -\x63\x6d\x70\xb2\xad\x41\xc0\xa5\x30\xe5\x2f\x55\x68\x96\x99\x52\ -\xb1\x5c\x03\xf6\xa1\xdc\x94\x9d\xa8\x37\xd3\x39\x79\xf8\x39\x86\ -\xd8\x89\x12\x0c\x55\x6b\x4c\xec\x89\x63\xce\x07\x66\x45\x94\xe7\ -\x39\xb0\xda\x60\xc8\x84\x8d\x1d\x45\x71\xd8\x2e\xde\xe0\x06\x72\ -\x08\x08\xa9\x88\xf9\x2f\x56\x6c\xdc\x8c\xc2\xdf\x08\xa9\x3a\x75\ -\xdb\x6d\x0f\xa0\x52\x88\x88\x3d\xe0\x9a\xb7\x68\x72\x28\x9c\xee\ -\x6d\x11\x21\x81\x3d\x66\x4c\xb1\x7c\xfe\xbe\xf3\xa7\xba\x9d\xcd\ -\x2c\x9e\xa7\x25\xdd\x74\x69\x69\xa6\x06\xf7\x9e\x82\xb6\x39\x30\ -\x9d\x31\x98\x60\x21\x66\xdb\xd7\x0e\xa7\x75\xb6\x48\x4d\xac\x1d\ -\x7e\xc7\x66\x2f\x86\x9a\xcd\x5c\x57\x1e\xe7\x9a\x9e\xc0\x02\xc3\ -\xa2\x8e\x9a\x06\x35\xd1\x04\x31\xbf\xfd\x2b\x33\x1d\xf7\x3b\x1f\ -\xa7\x5d\x41\xbc\x30\x43\x51\x1b\xd5\xc1\x28\xc7\x8d\x72\x08\x1c\ -\x31\x82\xdd\xf9\x64\xa7\x6f\x8d\xc5\x7b\x43\x9b\x87\x99\x6d\xe5\ -\x7b\x3a\x0f\xe3\x7d\xe0\x63\xd5\x63\xbb\xd3\xa7\x7b\x0d\xd7\xab\ -\x10\x6b\x8d\x08\x46\x90\xe1\xab\xc5\xf4\xf4\x51\xfe\x6d\x80\xef\ -\x1b\x07\xbf\x4d\xf0\x75\x66\xeb\xed\x56\x84\xf1\x14\x06\x0c\xd0\ -\x5f\xa1\xe0\xe3\x8b\xea\x83\x0c\x93\x7a\x11\x30\xa6\x53\x57\x23\ -\xbc\x41\xb1\x6b\xba\xd3\x4e\xe7\x52\xb2\x39\x40\x5c\xc2\xb9\xc9\ -\x00\x92\x1b\x2a\xac\x98\xa3\xdd\x82\xa0\xb2\x29\xd1\x77\xa8\x3b\ -\xdc\x51\xc8\x76\x03\xfc\x6b\xa3\x11\x4a\x4d\x30\x13\x55\x64\x75\ -\xcb\x06\x6d\x9f\x8e\x61\x61\xdc\x4e\xd8\xce\x18\xd5\x6c\x4b\x05\ -\x1d\xf4\xdd\x2c\x98\x56\x39\xc3\x2e\x1a\x9e\x33\xc9\x36\x20\xb7\ -\x5c\x03\x33\xda\x46\xdf\xe5\x0e\x93\x01\x05\xa6\x62\x78\x76\x52\ -\xb5\x57\x1a\x4e\xd1\xdd\x48\xc4\xb9\x38\x8c\xfe\xf5\x12\x17\x13\ -\xfd\xb8\xf3\x4c\xe4\x87\xcc\xda\xca\x4e\x6f\x95\xf9\x40\xac\x14\ -\x62\x61\x38\xaf\x97\x0c\x6d\x4d\xbf\x36\x6e\x1a\x13\x60\x6a\x65\ -\x63\x1d\xd4\x02\x46\xfa\xf2\x9a\xfe\x1d\xf0\x2a\xb7\x64\x2a\xc2\ -\xe4\x8f\xd4\x12\x18\x61\x8a\xce\x46\x2a\x7a\x0c\xe9\x06\xb7\x70\ -\x3d\x29\x46\x19\x05\x24\x64\x26\x3e\x18\x4b\x55\x4f\xb1\x65\x51\ -\xb6\x19\x71\x81\x28\x1a\xe2\x88\xb1\x8f\x69\x34\x0d\x30\x06\xf5\ -\x45\x49\x53\xaf\x86\xfe\x16\xf7\x6a\x37\xf2\x1d\xe1\x9a\x2d\x73\ -\x2d\x90\x3d\x29\xa2\x77\x80\x99\x3d\x14\x54\xc6\xc7\x74\x21\xc5\ -\xa4\x1d\x39\x62\xe7\x40\x74\x72\x16\x53\x4e\x03\x8c\xda\x66\x9b\ -\x39\x3a\x16\xf2\xf1\xf0\x8d\x3e\xfe\x02\x9d\x05\x7d\x01\x21\xd8\ -\xc7\xdd\x85\xa2\x5f\x95\x0f\x24\x83\x2d\xbc\x95\x2c\xee\xa7\x70\ -\x2b\x72\x7f\x3a\x1b\x69\xc5\xaf\x62\xd0\x31\x16\xab\xc2\x88\xb3\ -\xc0\x3d\x65\x01\xbe\x7c\xf9\x97\x6c\x5e\xed\xb0\x08\x34\xa0\x90\ -\xe3\x3c\x8f\xb9\xc0\x99\x6b\xb0\x8c\x4f\x36\x33\xef\x8b\x0f\xc7\ -\x5c\x89\x47\xcf\xb4\xca\x86\x8f\xc4\xf9\xa1\xc1\xf0\x57\x7f\xa0\ -\x5d\x81\x81\x54\x77\x47\x5f\xa5\x21\x11\x69\xcc\x23\x69\x31\x4a\ -\xe1\x00\x16\x91\x07\x50\xd3\xdc\x55\x10\xd4\x11\x42\x90\x84\x4e\ -\x22\x27\x6d\x17\x8b\xba\x95\x61\xd8\x99\x1a\xe0\x47\x40\x2a\x18\ -\x7c\x85\x0c\x2e\x1b\xc4\x8a\xd3\x4d\xc3\x1c\xc4\x39\x62\x04\x56\ -\x59\xf8\xa9\xde\x8a\xf5\xd8\xcf\xbd\x5b\x1e\xef\x99\xb1\x56\x19\ -\x64\xa3\x3e\x2e\xca\xbb\x44\xa0\x43\xf2\x9e\xc1\xe1\x09\xbd\xe4\ -\x6a\x19\xd3\x05\x46\x3b\xa9\x15\xe9\xdc\x63\xf8\x8e\x6f\xef\x51\ -\x87\x6d\xd6\xa1\x42\x86\x06\xd2\xb2\x05\xdd\xa3\x56\x3b\xf2\xa5\ -\x23\x55\xe4\xf4\xb3\x0e\x7d\xdc\xac\x0e\x61\xa0\x93\x2f\xd9\xf4\ -\xbb\xf0\x70\x4e\x3d\x2a\x88\xd3\x0e\xd7\x0c\xb4\xe3\x70\xb7\xf0\ -\x3e\xa9\xe9\x8e\x38\x66\xd1\xd8\xa7\xa8\x6c\xec\x01\x6d\x52\x35\ -\xc7\x6f\xc2\x38\xb8\x43\x34\x4e\x42\x06\x27\x9c\xa4\xfe\xb6\x8e\ -\x50\x7b\xba\xc7\x33\x9c\x84\x5d\xee\x77\x2b\x70\x62\xa5\xde\x4c\ -\x83\x87\x5e\xa4\xb5\x2f\x82\x4e\x6e\x44\xff\x8a\x04\x9c\x38\x5c\ -\x2c\x18\x45\x23\xd5\x4c\x7c\x7b\x1c\x4a\xd5\x2b\xcd\x60\x62\xef\ -\x5a\xf8\xad\x88\xf8\x56\xb5\x36\xda\xe3\x38\xd7\x30\x25\x95\x7c\ -\x80\xe2\xc9\xa5\xfe\x4d\xd8\x12\x86\x15\x1f\x31\xee\xe0\xbf\x3b\ -\x65\xea\x36\xa5\x6e\x29\x58\x35\x74\x83\x72\xce\x4e\xd9\xba\x2b\ -\x54\x37\x5f\x6f\x73\x51\x67\xe3\xd1\x51\xee\xd2\xd6\x58\x78\xd6\ -\xb2\x9d\xa2\x5e\x60\x8a\x9d\x69\x8d\x1b\x4e\x20\xcc\x23\xd7\x0e\ -\x14\x93\x21\x22\x6c\x7f\x21\x9f\x83\x73\xa7\xc1\x29\x6a\xb2\xe5\ -\x50\x5b\xcd\x21\x15\x32\xc5\x20\xec\xf9\x3d\xec\x3c\x2b\x63\x6b\ -\x05\xdd\xf5\x54\x07\x3b\x8f\x4a\xd0\xdf\x7c\x47\xd2\x3f\x73\xd4\ -\x75\xb4\x67\x11\x16\xa2\x63\x63\x40\x48\xe2\x23\x5b\x31\x60\x14\ -\x07\xd9\xcf\xb9\x47\x64\x14\xd7\x53\xf8\x23\x67\x66\x49\x30\x9f\ -\xe4\x80\x6f\x47\x50\x2a\x19\x43\xea\x13\xf4\x21\x6d\x94\x7e\xb4\ -\x02\xf2\x81\x96\x3a\xf4\x97\x23\x22\x80\xc0\x60\x10\xd2\x4f\xe7\ -\x21\x05\x8b\xa8\x9e\xfa\xf1\x18\x98\xa7\xf6\xd2\xbf\xf3\x1c\x1b\ -\x09\xa8\xa2\x8b\xde\xb6\x0c\x24\x4b\xa0\x36\x24\x1f\x74\x98\xc2\ -\x4b\x94\x8d\x21\xe1\x65\xcd\x42\x01\xbe\x23\x99\xe2\x9b\x65\xcb\ -\xf4\x0c\xe9\xbd\xe7\x3e\x83\xf3\x4a\xd2\x77\xbf\xc0\x4f\x05\x60\ -\x86\x9a\x1b\xa3\x57\xd6\xf3\x06\x15\xba\xb8\x6d\x4a\xb7\xc3\x66\ -\x62\xa0\x5d\x25\xad\xb5\xce\x40\x22\xc5\x7e\x54\xca\xde\x5e\xf7\ -\xec\x59\x15\xc3\xd7\x14\x75\x33\xf2\xd2\xee\x84\x06\xdc\x4b\xeb\ -\xcb\x29\xa9\xc0\xd1\x5f\xe3\x5e\xee\xe5\x52\xde\x67\x46\x84\xb9\ -\xe7\x3d\x4c\xb2\x60\xa4\xb3\xd3\x8f\x42\xea\x5c\xd0\xf5\xc6\xe6\ -\x0e\x2c\xee\x13\xcb\x2f\xc4\x18\x1d\x06\x25\x58\xaf\x4c\x2a\x38\ -\x5c\x42\x30\x62\xab\xf1\xf6\x45\xca\x40\x8c\x7b\xc6\x0f\xd3\x86\ -\xbd\x02\x16\x92\x74\xda\x0a\x54\xc4\x16\x1e\x45\xb6\xa4\x9c\x9e\ -\x82\x47\x65\x1c\x6d\x7c\xcc\x86\xb2\xd9\xdd\xdd\x6f\xea\x05\x3b\ -\x07\x9f\x85\xdc\xb0\xe1\xd1\xb0\xa9\x8b\x9d\x62\x37\x1d\xbc\x1b\ -\x66\x45\xea\x8a\xaf\x73\x18\x78\xc0\x06\x94\xb3\x65\x4e\x0b\x8e\ -\x3f\xc8\xb1\x30\x88\xe1\x58\xb0\xc0\xda\xf0\x8e\x0d\xda\x36\xdd\ -\xa3\x5f\x5d\xad\x60\xa7\x7d\xcb\x2a\xc1\xe0\x7b\x70\xf0\x09\x18\ -\x76\x92\x0b\x37\x26\xb6\x04\x9a\xc2\x41\xa8\x76\x64\x41\x2e\xb2\ -\x86\x02\x17\xa4\xa2\x05\x53\x5c\x34\x24\xc3\x49\xb2\x42\x86\xa2\ -\x7a\x0a\x13\xfa\xa4\x8b\x84\x46\x71\x2b\xb6\x77\x3b\xe8\x03\xfa\ -\x28\x48\x18\xfc\x01\x10\xa6\x8d\x19\x93\x2b\x12\x02\x9e\x02\xc0\ -\xa9\xac\x87\x0d\x2c\xdd\x32\x3d\x0e\x34\x49\xd8\xc1\x3c\x74\xaa\ -\x50\xd6\xee\xa2\x6a\x45\x83\x68\x1a\x59\x27\xed\xca\x5e\x3d\x3d\ -\xe6\x02\x23\xcf\x6b\xeb\xde\x52\x97\xa7\xc4\x75\x79\xca\x5b\xea\ -\x72\x7d\x5c\x97\xeb\x13\x76\xf9\x61\xce\xfc\x4c\x6e\x5b\x86\x9d\ -\x05\xc2\x7b\xd1\xc1\xb5\x1b\xca\xdd\xdc\xc8\xef\x1a\x59\x0b\xbc\ -\xa0\x13\x38\x92\xc2\xd5\x91\x07\x32\xa3\x5d\x6d\x49\x35\xb2\x12\ -\x6a\x2b\x1e\xe7\x7f\x94\x58\x5e\xf7\x7d\xa0\x96\xa2\xd0\x9f\xd5\ -\x97\x37\xd2\x63\xcc\xe9\x61\x66\xb5\x49\xbb\xac\x4d\xe8\x34\xf1\ -\x8f\x3a\xd8\x81\xa1\x01\xd9\xac\xed\x67\xcc\x1d\xb3\xdb\x46\x0d\ -\xcd\x2c\x96\x6c\x87\xca\x0d\xcf\xb6\xbb\x12\x22\xe1\x99\x84\x48\ -\x60\x2e\xa1\x92\x6f\xde\x75\xa0\x9b\x87\xbe\xab\xbe\x6d\xf1\x38\ -\xb0\xc7\x39\x9c\x85\xdc\xcc\xe2\xc2\xb4\x17\xd0\xf0\x3a\xae\xa1\ -\x81\x3b\x68\x14\x55\x0c\x13\xdf\x30\x38\xd7\x13\x6e\x26\x1a\xde\ -\x5d\x49\x56\x70\x63\x22\x8d\xab\x1d\x46\x9f\x13\x87\x42\x1f\x81\ -\xc3\x53\x20\xd0\xb2\xad\x4e\x0b\x34\xff\x8c\x36\x0a\x7c\x62\x0c\ -\x70\x39\x6a\xe4\x4c\xcb\x62\x79\x1c\x34\xb5\x4e\x5b\x19\x87\xd5\ -\x84\x48\x6d\x55\x12\x91\xd4\xad\xd4\xc0\xd2\x79\x12\xef\xa3\x60\ -\x3f\xa7\x44\xfa\x49\xba\x79\x82\xfd\xac\x8f\xf4\x93\x74\xc7\x0c\ -\x05\x52\x1c\x59\xe2\x4c\x46\xb1\xfb\x54\xc9\x4e\xf9\xf4\x4b\xa8\ -\x9b\x09\x3d\x8a\x6a\x50\x36\xb6\xc0\xa4\x22\x1f\x8a\xa3\xfa\x30\ -\x87\xb1\xa8\x97\x4a\x88\x65\x54\x0d\x31\xc3\x31\xb1\xe0\xe8\xe7\ -\xee\x2c\x93\x0f\x45\x81\x11\xa0\xd2\xef\x6c\xd8\xa0\x7f\x6e\x8e\ -\x1c\x96\x2e\x3b\x68\x4f\x46\xc2\xf1\x16\x70\x79\xae\x9a\x2e\x61\ -\xd9\xd7\xd2\x27\xd4\x87\x19\x48\xc0\xf9\x95\xbc\x29\xd2\xab\xab\ -\xfa\x31\x12\xf6\xba\x6c\x0a\x1f\x4d\x56\xac\xa7\x8a\x16\xc5\xbb\ -\x82\xe9\xa5\x09\xc7\x59\x3d\xc5\x38\x39\xe9\xfd\xc5\xed\xae\x53\ -\xcb\x42\x7a\xa7\x02\x63\xa2\x8b\x57\xa3\xdb\x33\xe1\xc0\x6b\x02\ -\x2e\x4d\x9a\xff\xa5\xe3\xba\x48\x4f\x6d\x3a\x2c\xc1\x15\xe2\x43\ -\xe5\x90\xfa\x99\x75\xea\x92\x35\xd3\xaa\x7f\x32\xc1\xe0\xcb\x81\ -\xf8\x76\x01\xb1\x51\x09\x20\xec\x50\x2f\xc4\x2c\x55\xb6\x34\xa7\ -\x7f\xd7\x20\x75\xc9\x14\x75\x30\x85\x4a\x74\xc2\x49\x47\x5a\x80\ -\x39\xba\x4c\x3d\xd4\x91\xa0\xa3\xab\xd7\xd2\x6f\x64\x75\x50\x72\ -\x67\xb4\x70\xe7\x44\x3a\xce\x03\x47\xcd\x13\xd5\x07\x3e\xe2\x3b\ -\x10\xa4\x2b\xa6\x17\x8d\x29\x9d\x3c\xcf\x7d\xa7\xea\x34\x8f\x17\ -\x80\xe4\x0d\x33\x97\xf7\xd0\x09\xe5\x81\x45\xed\xa2\xaa\xea\xe7\ -\x8a\x25\x9d\xfb\xca\x08\x88\x9d\x95\x12\xb2\xa5\xf5\x2b\x40\x98\ -\x29\x3f\xd1\x22\x83\x69\xa0\x80\xd2\xc5\xa5\x9a\x47\x4e\x19\x62\ -\x9e\x18\xc2\x33\x8a\xa5\x02\xa5\x23\x4c\x23\x4a\x4c\x3a\xd1\x49\ -\x0d\x73\x33\xc6\x04\xcc\x7b\xf8\xd4\x8b\x4e\x88\x22\x12\x30\x6a\ -\x25\x1d\x68\x49\xcc\x40\x62\x41\xf9\x52\x4b\x1f\x55\x60\x10\xb6\ -\x7a\x89\xf9\x70\x74\x98\x1e\x25\xc6\xe2\xaa\xf1\x15\x7f\xc0\x23\ -\xc4\x80\x81\x30\x49\xc2\x21\xcf\x8c\xe6\x05\xa2\x8c\x5b\x8e\x02\ -\x80\x25\xf1\x8a\xa7\x25\x4c\xf7\x33\x61\x11\x3b\x11\x50\x53\xd1\ -\x98\x8f\xf5\xf3\x05\x5d\x6d\xb9\x36\x64\x80\x75\xeb\x80\x9a\xe5\ -\xd8\x13\x9a\x2b\xb2\xdc\x13\x80\x73\x52\x4c\x02\xa7\x8b\x1c\xc9\ -\x41\xce\x63\xfa\x4f\x35\xb4\x1a\xa8\x79\x23\x81\x58\xa0\x00\x51\ -\x72\x8c\xb4\x49\xff\xd4\x0a\xc6\xb8\x91\x54\x97\x6f\x0d\x24\xd7\ -\x4a\xc5\xa3\xb6\xdf\xf6\x66\xa0\x75\xa8\x9d\x9c\x12\xec\x24\xb9\ -\xca\xa1\x76\xb2\x3e\xd8\x49\x52\x7d\xa3\x9d\x5b\xd9\x59\xec\xc4\ -\x24\x22\x79\x53\xf8\x1a\x85\xa9\xa5\xf8\xe7\xb1\x31\x75\x98\x18\ -\x0e\xd5\x8d\x7d\x17\x6b\x82\xd1\x36\x92\x01\xd8\x11\x42\xc1\x64\ -\x7a\x7d\xd4\xf0\xd3\xf9\x82\xb2\x0c\x0d\x15\x12\x83\xe7\x1f\x4a\ -\xe1\xb2\x6c\x60\x1f\xd5\x1d\x35\x50\xd4\x85\xad\x07\x7a\x3b\xcd\ -\x0f\x61\xb0\x19\x34\x0f\x2e\x21\x74\x27\x23\x3d\x57\x8a\xce\xba\ -\xa1\x8d\xe7\xa7\xc2\x48\x19\x3b\x68\x2a\x41\xd6\xd1\x49\x2d\xc3\ -\xb6\x5d\xc2\xe1\xcf\xc6\xe8\xa7\xc5\xb5\x6e\x01\xc6\x00\x2e\xc9\ -\x04\x6a\x5c\x59\x00\xa2\x93\x3b\x6d\x42\x31\xd1\x80\x64\x98\xb7\ -\xc1\xb0\x0c\x47\x2f\x68\x6c\xa9\xc4\x50\x89\x95\x8c\x1e\xec\x97\ -\x85\x1e\xa4\xa3\x69\xfa\x71\x67\x8b\x71\xdd\x99\x8d\xd8\x0e\x33\ -\x2f\x20\x19\xe8\x38\x6b\x87\x04\x13\x01\xfc\x00\x88\x32\x52\xc1\ -\x1e\x85\x81\x68\xf4\x7e\x26\x04\xb8\x80\x6c\xf7\x9d\x5d\x0e\x7a\ -\x16\xfc\x65\x95\x0a\xe0\x06\xc7\xcc\x68\x6e\x49\x4f\xf3\xb4\xda\ -\x44\x38\xa3\xc1\x77\x1b\x15\x30\x0d\x65\xd8\x24\x61\x91\x6b\xb1\ -\xa9\x6c\xb4\xd7\xe8\x2c\xd1\xc2\xf6\x47\x9b\x8f\x81\x75\xad\xa0\ -\x4f\x1a\x0e\x77\x43\x32\x83\x29\xd9\xc8\x55\x1b\x61\x53\x99\x1c\ -\x67\x63\x20\x68\x84\xa5\x17\x8e\xc8\x6b\xdc\xc9\xab\x9e\x3b\x30\ -\xf9\x76\x63\xeb\x38\xea\x3b\x00\x45\x3a\x9c\x70\x0a\x49\xdd\x3f\ -\x98\xb1\x74\x3a\xea\x81\x9e\xef\x50\x3a\x13\xdf\x35\x80\x4e\x99\ -\xda\xa0\x28\x67\x44\x1c\x44\xc8\xc3\xb6\xa1\x2e\xa8\x2e\xc2\x52\ -\xf1\x85\xe5\x3b\x81\x7d\x88\x00\x18\x73\x0a\x67\xfc\x99\x84\x65\ -\x5e\x74\x57\x08\xa9\x4e\x59\x59\x96\x63\x44\x88\xa5\xa2\x74\x6a\ -\x61\x7f\xf2\x38\x5e\x0e\xa1\xc5\xe3\x74\xfe\x8a\x5c\xbb\xd1\x70\ -\x0c\x34\x66\xd3\xba\x05\x74\x00\x52\x22\x3b\x89\xd9\xf7\x34\xfd\ -\xca\xa6\x29\x05\xa0\x17\x80\xd9\x41\x25\x29\x75\x88\x51\xbb\xc6\ -\x55\x1f\x9e\x5e\x62\x2e\xb2\x33\x29\x07\x80\x47\xa8\x82\x82\x55\ -\x0c\xfa\x28\xed\x12\x2c\x5e\x3d\x93\x61\x86\x18\x3a\xa3\x3d\x50\ -\xd8\x74\x27\xc3\xb7\x2b\xbc\x96\xce\x6b\xbc\x8b\xa4\x5b\x68\x07\ -\xd9\x84\x59\x04\xcc\x3b\xc2\x1c\x00\x19\x5c\x4c\x6a\xe6\xe7\x50\ -\xdd\xc9\x70\x8b\x92\x45\xfb\x74\x6e\x2b\xe8\x48\x3a\x13\xbe\x57\ -\x25\x43\x94\x8c\x6f\x1f\x29\x27\x6c\xca\x6a\x69\x6a\xed\x1b\x99\ -\x0e\xc0\x45\x8e\x6e\x91\x09\xca\xee\xa8\x49\xa9\x3b\xda\x44\xde\ -\xb0\x30\xca\x90\x78\xcf\x54\x2d\x44\xfb\x51\x38\x6e\xf4\x90\x8f\ -\xc4\xf3\xfd\x1f\x41\xaa\x70\xd1\xea\x10\x41\x13\x07\xd7\x2f\x4b\ -\xa6\x3a\x45\xc4\xfa\x0f\xba\xc4\xd9\x21\x4c\xea\x21\x11\xce\x5a\ -\x17\x3d\x21\xe1\x11\x18\x7d\xb0\xfc\x45\x46\xb3\x3d\xdc\x0f\xc2\ -\x68\xab\x43\xf1\xdf\x68\x98\x8c\x65\x11\x99\x50\x65\xf2\x51\xf6\ -\x70\xed\x4c\x1c\x4e\xe8\x41\x3e\x5a\x42\x0a\x65\x7e\x17\xba\x47\ -\xf2\x7c\xcc\xe0\xc1\x50\x43\x45\x7c\xd6\x31\x8c\xb4\xce\x31\x4f\ -\x93\x5b\x80\x82\xf6\xa2\x9f\x3d\x0d\xff\xa6\xcd\x8c\x72\xc4\x89\ -\xf1\x12\x0c\x5d\x74\x69\xbd\xc6\x84\xee\x18\x1d\xcc\x55\x43\x69\ -\xd0\xd3\xc7\x0c\x9a\x37\x93\x07\xda\xe5\xc7\x4d\x13\x50\xd9\x7d\ -\x9c\xca\x3c\xdc\x42\x8c\xb9\xb9\x15\xa8\x8e\x51\x59\x58\xb6\x8b\ -\xf8\xbf\xce\x11\xc4\x4e\x15\xc8\xc8\xa6\x4a\xa1\xa3\x9c\x7d\x49\ -\x8d\x81\x45\x4f\x19\x73\x5a\x8b\x7f\x87\xb5\x04\xc9\x58\xdf\xb1\ -\x29\xcb\x3d\x53\xae\x42\xb9\x8a\x80\x56\x36\x2c\xfa\xf8\x18\x56\ -\x61\x73\x1a\xfb\xb8\x3b\x0a\x34\x89\xb5\x19\x5f\x99\x48\xca\x91\ -\x97\x63\x60\xdf\xe2\x9b\x49\x70\x38\x97\x88\x44\x0e\x0f\x25\x05\ -\x9d\xe2\x18\xf0\x42\x4a\x57\xd2\xa5\x19\xdd\x05\x0c\xc5\x62\x37\ -\x84\xdd\x41\xb1\x52\x12\x9e\xbf\xc1\x03\x61\x92\x87\xf6\x22\x25\ -\x1b\x98\x2a\x20\x38\xa0\xc8\xe6\xcf\xe1\x73\x3f\x98\x8e\x63\xb9\ -\xbe\xa3\x41\x8b\x78\x11\x83\xbd\x19\xdc\x6f\x58\xe4\x23\x9a\x18\ -\x30\xda\xe2\xfb\x29\x3b\xa7\x91\xe5\x76\xdc\x42\xf9\x82\xdd\x5f\ -\x95\x31\xa3\xe4\x69\x7a\xda\xb1\x5d\x57\xa4\x59\x74\x68\x36\xf0\ -\x4f\x67\xc2\x74\x0d\x3f\xf3\x82\x73\x25\x1e\x06\xf0\x74\x87\xaa\ -\xaa\x9a\x65\x77\xce\x50\x55\xa8\x6a\x78\xdb\x96\x51\x9e\x0a\x50\ -\x0f\x56\x0a\x5f\x77\x98\x81\x45\x3d\x12\x6f\x28\xea\x57\x17\x67\ -\x27\x19\x2e\xdc\x54\x5f\x78\x90\x79\x0a\x75\x40\x30\xc4\x4a\x59\ -\x20\x42\x1d\x10\xd9\x17\x52\x30\x66\xe3\x16\x4a\xe6\x14\x4a\x61\ -\x00\xfb\x86\x47\x4a\xe1\x2f\xae\x04\x77\x69\x5b\xc5\x5a\x51\x36\ -\x64\x4c\x86\x5b\xf8\xb9\x22\x09\xd7\xe7\xc2\xb7\x71\x9b\xc5\xe1\ -\x4d\x25\x71\xa6\x9e\x54\x3a\x39\x1f\x5c\x41\x96\xad\xf9\x92\x72\ -\xd8\x55\xf3\xf3\x3b\xd4\x63\x5d\x06\x37\x64\x99\x60\x30\x85\x72\ -\x8d\x2b\x2c\x67\x2a\xdd\xff\x95\x21\xb5\xb8\x7b\x36\xdc\x53\x7c\ -\x40\x41\x46\x85\x33\x7e\x06\x42\x30\x4e\xf2\xde\xb8\x75\x47\x67\ -\xbf\xba\xd5\x78\xc4\xcd\x3f\xac\xe9\x13\x06\x15\x31\x42\x35\xe8\ -\xd2\xa0\x2f\xcb\xf6\x94\xf6\xa3\x2c\x28\x87\x1e\x62\xdb\x2a\x4c\ -\x32\x55\x02\x8c\x73\x17\xcf\x2a\xd1\xd0\x71\x52\xf1\xb4\x9c\xac\ -\x54\x75\x6c\x52\x21\x9e\xe1\x4f\xac\x75\x13\x06\x1e\xb4\x95\x33\ -\xd1\xb8\x61\x41\x36\x45\x7a\x65\xee\xc8\x3e\xd8\x8a\x8c\x37\x3a\ -\xfe\xc2\x4a\xc3\x79\x36\x1f\x6d\x6b\x5f\x0f\x0b\x2f\x25\x76\x2e\ -\x47\xc7\x63\xc7\xc4\xa8\x95\x61\xb3\xe3\x7d\x91\x39\x81\x41\x61\ -\x97\x13\xbb\x58\xb5\x0a\x63\xf8\x25\x0b\xa4\x75\xc4\xfb\x9f\x89\ -\xcf\x66\x28\xb6\x77\x8b\xc8\x04\x74\xe9\xfb\xa4\xdf\x84\xf7\x33\ -\xea\xe9\x51\x57\xef\x68\x0e\xc9\x5b\xf0\x79\xae\xa9\x08\xd8\x2a\ -\x34\x78\xf7\x4d\x41\x3c\x2d\x6c\xf8\x55\xcc\x01\x91\xd8\x4e\xdc\ -\xe4\xbb\x58\x2c\x64\xc5\x49\x3d\x57\xf3\x37\x59\x18\x84\x2f\x1c\ -\xa2\xdf\x6a\x59\x4c\x6e\xb5\x48\xa2\xf1\xc5\x90\x9c\x1c\x4d\x95\ -\xf1\x73\xa8\x13\x6f\xbf\x21\x54\x0b\x3c\x54\xac\x37\x01\xf1\x6c\ -\x25\x51\xbf\x89\x0c\xd6\x1f\x3e\x64\x80\xb9\xd3\xbe\x69\x78\xab\ -\x6f\x02\x25\x0d\xc9\x6b\x98\x83\x6e\x72\x5c\xf1\x34\x45\x14\xad\ -\x6c\x46\x93\x72\xd7\x6d\xa6\x01\x22\x4c\x3b\xd4\x00\x5d\x89\x27\ -\x73\x9f\x3f\x82\xda\x7f\x58\x39\x15\xc6\x92\xe5\x2b\xc5\x8c\x7d\ -\x3a\x3c\xe1\xa6\xc4\x57\x36\x0b\xbb\x48\x53\x0e\x22\xe7\x61\x25\ -\x26\x88\xc6\xf3\x4c\x27\x11\x4d\xef\xc6\x1c\x21\x87\x8f\x14\xce\ -\x5e\x29\x46\xa0\x91\x0c\xfa\x1d\x74\x8e\x6c\x8a\x82\xa5\xb2\x84\ -\x30\xe0\xda\xc0\xad\x9d\x2e\x6d\x98\x5b\xb1\x79\x6a\xda\xe6\xed\ -\x09\x0d\x74\xa5\x49\xcd\x7d\x77\x59\xa7\x99\x4d\x22\xcf\xa5\x28\ -\xba\x49\xca\x70\x97\x21\x92\xf6\xf1\xa9\x0a\xd0\x3a\x83\x99\x6d\ -\x32\x2e\xb3\x59\xdf\xa7\xb1\xa4\x16\x6d\x58\x26\xcb\x25\x18\xa7\ -\x01\x64\x3a\x12\xa9\xcc\x04\xda\x62\x27\xf6\x60\x2f\x11\xad\x91\ -\x2e\x5d\x5f\xde\x32\x3d\x89\x6e\x46\x49\x93\xad\xb4\x5f\xad\x3d\ -\xab\xbb\x9e\xe1\x7a\x49\xc9\xf1\x1f\xa0\xee\xca\x0c\x49\x6a\x8f\ -\x30\x1b\x28\xcb\xb7\x3a\xb3\x7b\x4a\xf0\x5c\x58\x3c\x41\xbb\xa8\ -\x83\xc8\x6c\xd1\xb4\xaf\x2c\x0b\xd5\x5c\x64\x67\xaa\x39\xa4\x5d\ -\xc8\xb2\x83\xb6\x98\xad\xc4\xc3\x2a\x5b\x66\x62\x9c\x51\xb4\xa3\ -\x8c\x18\x1b\x2d\x4c\xe4\xd1\xfc\x55\xe9\x08\xd4\x29\x2c\x3e\xf6\ -\x2e\xd9\x82\x39\x98\x85\x49\xb0\xb4\xb2\xc0\xae\x50\x8d\x57\x94\ -\x01\xd4\xfc\xe8\x43\x5a\x6e\x27\x67\x78\x7e\x1e\x1e\xea\x05\xa8\ -\x63\xb0\x80\x5d\x40\xd5\xa0\x6d\xf0\x6c\x4f\x40\xd7\x1c\x55\xb2\ -\xf8\x4c\x0b\x96\x4b\xcf\x24\x25\xdb\x53\x2b\xfb\x32\x89\x8c\xc7\ -\x09\x79\xae\x04\x1d\x25\x29\x53\x21\x7e\x48\x21\xc6\x8d\xe4\x3c\ -\x54\xff\x4b\xa8\x6c\xb1\xe4\x5e\xae\x29\x90\x60\x7d\x23\x21\x05\ -\x2b\x84\xfc\x7d\x58\x16\x6e\x75\xcc\x9c\x69\xa1\x37\x94\x86\xdb\ -\xa9\x24\x9c\x69\x3c\xae\x59\x39\x28\x28\x75\x89\xda\xed\x33\x08\ -\x4d\x25\x43\x2a\x73\x29\x56\x40\x2a\x3a\xd3\x0e\x05\xa9\x97\x71\ -\x56\x2b\x10\xe9\x70\xab\x40\xe4\xca\x47\x6b\x31\x4d\x87\xe8\x60\ -\xf9\x29\x93\x5b\x0d\x6a\x2d\x27\xfa\xdb\xfe\x18\x27\xf8\xea\x61\ -\x7d\xdc\xf0\x53\x94\x63\x96\x44\x18\xb1\x2e\xd5\x70\x93\xcf\xb1\ -\x17\xb9\xaa\xd8\x87\x53\xed\xdf\x8a\x7c\x47\xa6\x38\xf2\x83\x53\ -\x81\x5d\x15\xd8\xb1\x89\x63\x50\xc3\xb1\x19\x6d\xf5\xc3\x33\xca\ -\x66\x0b\x76\x73\x4a\xb8\x9b\xe4\x11\x31\xb5\x9b\xf5\xe1\x6e\x92\ -\xc6\xc4\x16\x05\xa8\x83\x49\x8e\xb8\x83\x49\xa9\x61\x6a\xf3\xcc\ -\x24\x0d\x60\x36\x00\x18\x48\x61\x94\x79\x42\xc3\x3c\x31\x31\x61\ -\x4f\x73\x95\x9e\x1c\x61\xb3\x87\x20\x73\x68\xcd\xa3\xc4\x90\x8d\ -\xe0\x0c\xc7\x22\xa7\xc0\x1a\x46\x74\x77\x4c\x1c\x00\x4b\xd0\x53\ -\x37\xf4\xa4\x1e\xbc\x51\x53\x78\x84\xf4\x63\x1e\x07\xd3\x77\xd4\ -\xf3\x44\x4e\x7f\xcc\x63\x46\xfc\x33\x48\xdc\x43\x07\x98\x31\xb3\ -\x26\xd0\xe7\x98\x91\x54\x83\x6b\xf7\x01\xd1\xd5\xdc\xd9\x29\x86\ -\x9d\x4b\x87\xd5\x59\x46\xed\x4c\x47\xcb\xf2\x68\x86\x16\x9b\x29\ -\xb5\xc7\xcf\x90\xe2\xf5\x5b\x14\xdb\x47\x12\x9b\x8c\x7c\x54\x4a\ -\xf3\x92\xc4\xd7\x33\x82\x92\x34\x9c\x5f\xc5\xb2\x40\x60\xe5\xdd\ -\x82\x8e\x66\x78\x66\x5f\x96\xbd\xc6\x1d\xc2\x3e\x1b\x4a\xca\x77\ -\x2c\x7f\x62\x61\x4f\xd4\xb8\x9a\xb0\x41\xd4\xac\x72\x35\x5b\x5d\ -\x04\x7f\x64\xc5\x41\xfa\x59\xe6\xcf\x2b\x17\xb6\x39\x83\x4e\x30\ -\x13\x4e\xfe\x80\x19\x94\x81\x67\xa1\x8f\x80\x9d\xec\x84\x39\xea\ -\x1a\xcc\x49\xb8\x18\x66\x94\x1f\xf2\x80\x3f\x39\x76\xe0\x48\xe7\ -\xfe\x51\x21\x3a\x68\x34\x6b\x3f\x5a\xa1\xba\xaf\x2c\xca\x49\x99\ -\xfe\xbf\xc2\xa2\x93\x07\xf6\xd8\x6a\x33\x2f\xab\x3c\x34\x51\x22\ -\x2c\xee\x18\x8c\x8c\xb5\xc3\x18\x5d\xc0\xe0\xa9\x52\xb7\x96\xb0\ -\xaa\x08\xab\x41\x59\x5b\x0d\xff\x9d\xa8\x28\xa7\x9b\x29\x4a\xac\ -\x72\x71\x94\x96\x11\xca\x02\x72\xd2\x26\x68\x5b\x74\x61\x59\x38\ -\x9e\xe9\x00\xb6\x93\x31\x2d\xcc\xc6\xb7\x4b\x86\xa3\xb3\xe0\x53\ -\x7b\x16\x8f\xdb\x74\x69\x6b\xb5\x33\xb4\xd5\x5d\xab\x57\x9f\x98\ -\x54\xb7\xbd\xcb\xdf\x46\x0e\x6a\x7b\xa6\x7f\xde\xd0\xe6\x5e\x26\ -\x8b\xc7\x92\xc4\xee\x16\xa5\xf0\x84\xf1\x23\xcc\x5c\x51\x32\x4c\ -\x94\x8e\x63\x9a\x2d\x7b\x7b\x35\x51\x0f\xe3\xd9\x44\xe3\xc9\xdf\ -\x8c\xe2\x58\xfc\xbf\x9d\xb0\x9a\x4e\x22\xb8\xa8\xea\xed\x5b\x28\ -\x6a\x1c\x3d\x63\x96\x5d\xdc\x02\xbe\x4b\x89\x9e\x3a\xa0\xc6\x0f\ -\x35\x9c\x79\xed\x11\x98\x23\x7d\xbc\x9a\x1d\xdb\xb3\xe9\x59\x31\ -\x30\x3f\xd3\xa0\xf6\x9b\x16\x86\xeb\x8c\xa4\xb8\x59\xe9\xe3\x26\ -\x9c\x9a\x5e\x99\xc9\x1c\x41\x21\x15\x69\xe8\x33\xe5\x32\xfd\xca\ -\x80\x25\x0c\x79\x08\xa4\x87\xed\x45\x83\xe8\x3c\xb6\x24\x83\x7f\ -\xe1\x23\x08\x4b\x10\x14\x16\xe8\xf6\x8d\x40\x43\x4f\xe7\x59\x7c\ -\x4f\x9c\x4a\x48\xe0\x8c\x3d\x88\x70\xa9\x21\x21\x61\x66\x9c\x07\ -\x66\x8a\x9f\x44\xe2\xef\x99\x09\x6e\x2b\xe7\x95\x37\xd5\x44\x14\ -\x11\x25\x60\xd1\x05\x69\x90\x4c\x20\x89\x8c\x81\x90\xd1\xf0\xbc\ -\xa7\x8d\x07\xe4\x59\x08\x53\x8e\x21\xdf\x2f\x21\x7b\x4a\xfb\x52\ -\xa0\x10\x1a\x87\x15\x81\x11\x95\xea\x5c\x22\x55\x3d\xf6\x9b\xc8\ -\x73\x64\x6a\xa0\x17\x18\xb1\xc3\x9f\x47\x81\xff\xca\x04\xe8\x54\ -\xf0\x94\xb9\xca\xe6\xf9\xfa\xbe\x83\x2b\x46\x2d\x8d\x7e\x9c\x53\ -\x40\x08\x23\x14\x93\x9c\xef\x14\x95\x2d\x22\xe6\x62\x72\x95\x8f\ -\xf5\xeb\x04\xb8\x91\x8e\x0a\x61\x30\xb9\xf5\xbb\x23\xdc\x8f\x4b\ -\x6d\xaa\xf3\x36\xb1\x08\x0b\xb0\x8f\x89\xbc\x99\x66\x25\x01\x58\ -\x0c\x1a\x9e\x97\x0b\x3c\xf6\x42\x93\xc6\xba\xb5\x11\xdb\x2e\x8c\ -\xea\x8e\x12\x93\x01\x86\x9c\x36\x30\xa2\xc6\xda\x88\xa4\x0f\xda\ -\x1f\x2d\x37\x47\xf3\x3d\x91\x63\x63\xc3\x0e\xee\x08\xf6\x40\x9b\ -\x08\xf6\x43\xf9\x39\x1d\x79\xd0\x31\x8c\xbe\x9e\x7e\x4d\xe8\x1b\ -\x9a\x3b\x09\x56\x5d\x11\x77\x29\x1d\x85\x56\xe9\x82\x77\x1d\xc6\ -\xeb\xf4\x99\xe4\xe7\x3e\xec\xa7\x1a\x08\x3f\xbf\x8c\xb7\x54\xcc\ -\xf8\x0c\x98\x82\xaa\x47\xbf\x43\x69\x6d\xfa\x55\x2b\xa6\x3f\xa1\ -\x1d\x57\xf6\x31\xe8\xc3\xef\x52\x59\xbd\x5c\xa8\x8c\x9a\x71\x8a\ -\xf8\x90\x07\x6d\xfd\xd3\x7d\x1c\xbf\xa6\xe5\x9f\x40\x47\x43\x9a\ -\xe2\x39\xa1\x5d\x3c\xab\x75\x06\x68\x8a\xcd\xa3\x54\x50\x26\xcb\ -\x5c\xa8\xbe\x5d\xca\xa1\xde\xc0\x9c\x0d\xd5\xf0\x8a\xf5\xf3\xf2\ -\x7a\x39\x71\x71\x75\x06\x4f\xdc\xe8\xa2\x2c\xc6\x12\x79\x64\x07\ -\xfe\xee\x20\x6a\xf1\xc5\xe8\x3c\x30\x51\x31\xd0\xda\xc5\x77\x5c\ -\xde\x76\x09\xdf\x5d\x74\xac\x25\x44\x3d\x84\xb8\x04\x17\x98\x0a\ -\xac\x25\xfc\x20\xaf\xf8\x45\x42\x3a\x88\xf9\x04\x26\x29\xf0\xde\ -\xe3\x60\xa4\x6d\x37\xa2\x6e\x31\x8e\x64\x41\x49\x44\xe7\x71\x58\ -\x01\x49\x5c\xef\x74\x46\x5b\x88\xce\xb1\x27\x33\x73\xd4\x82\x2e\ -\x71\xf3\xd3\x94\xb1\x29\x2f\xed\x45\xbe\x96\xe1\xbf\xb9\x24\xe8\ -\x6c\x7b\x2d\x8e\x18\x69\x72\x2c\xa6\x90\xfb\x1b\x94\xb1\x81\x38\ -\x77\x7c\x57\x6a\x93\x4c\x7d\x51\x5a\xba\x65\xe0\x3a\xba\xab\x2d\ -\xc1\xd3\x54\x4b\x68\x66\x89\xe8\x1e\xe3\x0b\xf2\x05\x17\x34\x5a\ -\xf8\x7d\x09\xec\x7f\x33\xbb\x24\x05\x23\x2e\x29\xda\x96\xbd\x04\ -\x4f\x61\x42\x97\x7a\xd1\x2c\x4c\x86\xfa\xeb\xd8\x68\x14\xc6\x0d\ -\xcf\x4c\xeb\x1d\xd8\x9c\xbd\x8a\x03\xf3\x13\x28\x38\x48\x2a\xd8\ -\xaa\xbb\xd7\x2e\x64\x96\x24\x64\x2c\x97\xc6\xee\x18\x83\xbb\x3a\ -\xc2\x94\xa6\x16\x05\xf7\x53\xf4\x49\xb4\x74\xc3\x54\x49\xfe\x21\ -\x1f\xbe\xac\x90\x17\xb7\x46\x32\xcf\x1f\x17\x29\xc0\x18\x66\xe8\ -\xdc\xbf\x0d\xed\x9a\x38\xce\x10\x57\x8a\x80\x1d\x4b\xf5\xd0\xcf\ -\x9d\xe1\x2c\x53\x64\x93\x05\x99\xa9\x64\xb7\x52\xa3\x0e\x4b\x45\ -\x66\x13\xc5\x9f\x4d\x92\x2c\x73\x83\x8a\x01\x98\x5a\xde\xce\x68\ -\xe9\xbc\x8d\x27\x78\xe9\xec\xd9\x29\x23\x91\xb4\xc5\x38\x28\x67\ -\xa9\x68\x19\x71\xf9\x93\x90\x59\x56\xdd\x55\x11\x21\xd1\x52\xe4\ -\x51\x64\x30\x4b\x49\x9c\x6b\x50\x51\xf2\x96\x11\x02\xbf\xa4\x02\ -\xa9\x55\xd1\x63\x3a\xd2\x08\x8d\x5f\x3c\x19\x0b\x2f\x02\x69\x8a\ -\xe2\x6d\x71\x45\x7e\x54\x63\x37\xcc\x7c\xd8\x79\x25\xaa\x32\x8d\ -\xc1\x1c\x29\xe1\x77\xa2\x82\x33\x4a\x64\x7a\x6b\x01\x6d\x0a\x99\ -\x78\x68\xfa\x2c\x33\x8c\x83\x8a\x26\x31\x32\x36\x11\x83\x67\xa9\ -\x85\x29\x9f\x28\x7e\x99\x98\x28\x42\x76\x33\x3d\x43\x52\x99\x46\ -\xb4\xd4\xa6\x6c\xc8\xfa\x46\x8f\x35\x76\xcc\x82\xdb\xc5\xb2\xeb\ -\xf1\x27\x9a\x1e\x67\xa9\x2b\xf9\x47\xba\x1c\xda\xa6\xb9\x59\xf4\ -\xa4\x2a\xa6\x0b\xa2\x82\xc4\x8f\xa3\x57\x30\xe3\xbb\x52\x09\x77\ -\xf0\x1b\x15\x75\x74\x9b\xc7\x03\x59\x62\x96\x0c\x21\xd8\x7e\x80\ -\x41\x9c\x53\x0c\x4a\x69\x0d\x97\x7e\x9f\x1f\x36\x10\xe9\x15\x8c\ -\xd4\xdd\x0a\xad\x98\x8b\x92\xc5\xc1\x64\x71\x80\x34\x12\x2c\xcb\ -\x0a\x65\x5c\xa1\xac\x10\x23\x8b\x88\x66\xfd\xb4\x07\x69\x3d\x04\ -\x67\x52\x29\xe8\x28\xb9\xc4\x01\x95\x20\x6c\xc7\x34\x2c\x56\x4f\ -\x48\x14\x4d\xf0\x85\x16\x17\x64\xe8\x69\x00\xb2\x71\x95\x9f\x5c\ -\x1a\xbf\xd7\xe8\x9a\x80\x6c\x29\x74\x69\xe2\x78\x05\xf4\x5a\x30\ -\xb2\x5e\x07\x57\xa7\xf9\x20\x6a\x7c\x33\x29\x73\x59\xa8\xe4\xc6\ -\xd2\x6d\xb4\x93\x88\x2c\x03\x99\x03\x26\xfd\x47\xe2\x14\x80\xea\ -\x53\x60\x98\x95\x57\x0c\x78\x81\x0d\x36\x82\xf2\xde\xe0\xae\xc3\ -\xfd\xbc\x0d\xdb\x70\x65\xc2\xeb\x69\xd2\x8d\xe4\x8f\xac\x16\x28\ -\xeb\x47\x4d\x28\xeb\xb3\x1c\xd1\x5e\xd6\x7e\x66\xd9\x64\xa3\x44\ -\x4d\xcd\xb1\x94\x79\x88\x68\xaa\x9a\xbe\x22\x12\x93\x58\xb9\x13\ -\xb1\xbe\x14\xa6\x7c\x70\x7b\xfb\x6b\x79\x91\xba\x96\xe3\x7a\xa1\ -\x6c\x50\x03\x21\x43\x53\xef\xb3\x65\x2b\xad\xa4\xdd\x96\x71\x13\ -\x7a\x76\x01\x0c\x07\xb0\xf4\xbb\x52\x3b\xe8\xdb\xbc\x12\x1a\x58\ -\xe1\x59\xc3\x31\xac\x34\x86\x42\x0b\xf6\x04\x8b\x44\xb1\x0e\x45\ -\xac\xc9\xc3\x43\x6c\x98\xd1\x44\xab\xa6\x25\x0d\x35\xcd\x0e\xa3\ -\x5a\x56\x60\x1c\x11\xd0\x24\xf6\x6e\x07\x2c\x5e\xe9\xdd\xe6\xa6\ -\x59\xc2\x6e\xb6\x60\x82\x8a\x5c\xe6\xb8\xa3\x58\x87\x12\x86\x3a\ -\xf6\x3c\x37\x6c\xa9\x1c\x4a\x24\x4a\x0b\x64\xe8\x47\xe9\x58\x6a\ -\xa5\x0d\x74\x40\xea\xa8\x48\x1c\x79\xdb\x11\xe2\x36\x95\xb8\x93\ -\xe0\x6a\x15\x38\xa3\x3c\x7c\xb2\x83\xb3\x00\x95\x35\xe0\xa1\x2e\ -\x85\xb1\x24\xdc\xf1\x1f\x57\x92\xbc\xd4\x60\xba\xf4\x49\x30\x65\ -\x21\x98\x10\x2b\xb3\x8f\xd4\xbd\x14\x4d\x0d\x13\xa5\xa3\x59\x4f\ -\xc1\xaa\xad\x32\x1b\x9a\x2a\x25\x4c\x15\x08\x8a\x53\xad\x22\x37\ -\x0a\xab\x3e\x45\x4c\x07\x10\xfe\x52\x96\xa5\xc4\x8a\xd9\xa8\x6a\ -\x43\xb4\xf8\x8d\x28\x6d\x15\xad\x29\x2b\xb2\xf4\x99\xd3\x50\x55\ -\x6b\x56\x47\x72\x62\x85\xfa\x25\x78\x5a\x38\x2d\xe1\x5c\xf4\xc6\ -\x8f\x13\x35\x0d\x52\xd8\x85\x1b\xf8\x16\xcd\xf8\x04\xce\x52\xe1\ -\xa6\xe6\x40\x5f\xdb\x49\xc5\x03\x4b\x18\x46\xdf\x73\x89\xa5\x61\ -\x80\x84\x06\x05\x82\x27\x3a\x52\x61\x81\xf2\x9d\xc6\x36\x31\x5a\ -\x8d\x39\xc5\x2c\xd3\x42\x1b\x91\xbc\x46\xa8\x29\xfa\x3e\xb3\x58\ -\x2e\x82\x2c\xb1\x72\xc0\x9e\x40\x30\xa1\x4f\x8e\x0b\x28\xd1\x54\ -\x54\xfb\x71\x31\x76\xbe\x1a\xc7\xb2\xf0\x8d\x89\xbc\x4d\x4d\x27\ -\x96\x68\x41\xfb\x94\xac\x8b\x9a\x3c\x8e\x8e\xc7\x45\x79\xf3\xa4\ -\x8c\x6c\x0e\x50\xdf\x6e\x42\x9d\xb0\x36\x97\x13\xd2\xf9\xda\xb0\ -\x6b\xb7\xd6\x3e\x62\x97\x92\xba\x4d\xe7\x42\x5f\x7b\xb0\x2f\x16\ -\x42\xa0\xab\x23\x7b\x4b\xed\xda\xa3\xb5\x0f\x3a\xa0\x1d\x25\xef\ -\x6f\x37\xef\x6f\x98\x88\xa0\xad\xec\xaf\x71\x37\xf4\x37\x6c\x66\ -\x12\x7b\x75\xeb\x58\x95\x14\xbf\x83\x6a\x3d\xf1\x19\xae\x17\xfe\ -\xa9\xb5\x1e\xa2\xea\xf0\xaa\x29\x82\xd4\x22\x9b\x5b\xda\x9f\x93\ -\xb0\xbf\x46\x79\x12\xac\xc1\xf7\xaa\x4a\xfb\x51\xc6\x1f\xe1\xb6\ -\xa4\x52\xed\x87\xcd\xe9\x0a\xb5\x1f\x6c\xdf\xa1\x87\x42\x60\x95\ -\x8c\x7b\x63\x99\x56\xfa\x03\x77\x09\x2a\xd9\xc1\x89\xf3\x80\x86\ -\xd1\xf0\x95\x51\xa2\x9a\xb4\xe7\x24\x4c\x81\xab\x5a\x8e\x6a\x4b\ -\x92\xd3\x0b\xe1\x88\xba\xbc\xe2\x44\xd6\x74\x13\xc6\x7b\xf0\xb0\ -\x57\x38\x77\x66\x2f\x8f\x7a\xc8\xbc\x19\x16\xef\x50\x9d\xd0\xbd\ -\x4a\xca\x2a\xcb\xd0\x29\xe3\xa6\x90\xf1\x14\xa9\x80\xbb\xdc\xa5\ -\x3d\x49\x34\x7e\x30\x85\x09\xca\x0e\x1c\xb1\xcc\x9d\xe7\x3a\xd6\ -\xeb\x52\x5b\x17\xb9\x0a\xed\x72\xa6\xc7\x6a\xfc\x16\xb0\x1f\x03\ -\x7b\xf6\x08\x2f\xb4\xe3\xe3\xf6\x26\x73\x8a\x7c\x6f\x7f\x31\xb1\ -\x86\x2c\x3f\xbe\x26\x94\x25\x7a\x26\x05\x19\x1d\xe5\x83\xe8\x15\ -\xea\xc5\x0c\x5b\x60\x52\x65\x07\x2d\x1e\xa6\x6a\xb3\x1a\x7d\x98\ -\x6c\xe5\x74\x68\xa3\x65\x0f\x78\xdf\x18\xff\x99\xf2\x3f\xd7\x05\ -\xd6\xe7\x52\xcf\x8e\x91\x31\xd1\x2c\x4a\x48\x28\x57\xcc\xf8\x6c\ -\xd1\x36\x0c\xdf\xb0\xdf\x47\x89\x9a\xc1\xeb\x46\x7c\x16\xc9\x4a\ -\xcf\xa8\xe7\xca\x4f\x8f\x43\x65\x49\x2f\x19\x0e\xc6\x5f\xa2\xa9\ -\x4d\x87\x50\x12\x65\x7f\x4c\x42\x3c\xe3\x06\x49\x4f\x95\x48\x6b\ -\x6e\x15\xcc\x45\xb5\xed\xd4\xaa\x33\x53\xcd\xf3\x24\x65\x9e\xa0\ -\x81\xfb\x19\x5c\xd4\x94\x5a\x55\xe4\x16\x95\x6d\x1d\xef\xa9\x73\ -\x4c\x38\xbf\x1a\x18\x55\x56\x67\x9c\x55\xda\x97\xb8\x7c\x93\x8b\ -\x1b\x3e\xab\xc0\x59\xeb\xe6\xcd\x6c\x52\xae\x73\x7a\xa2\x18\x81\ -\x88\x6a\x87\xa2\x05\x32\xe7\x26\xde\x93\x4f\x23\xd7\x33\x2b\x87\ -\x71\x4e\xc5\x80\x7c\x1c\x58\xc1\x12\x6f\x41\xa9\xa0\x44\x02\xe3\ -\x81\xc3\x30\xa5\x3b\x59\x1c\xb5\x0b\x49\xa1\x1b\x4a\x5e\x46\x62\ -\x06\xc8\x3b\x4e\x85\x4f\x91\x28\x87\x84\x40\x9a\x3b\xb3\xbc\xe2\ -\xed\x29\x75\xcb\xf1\x36\x2d\xda\x57\x6d\x46\x51\x7f\x96\x87\x0b\ -\xc9\x4a\x05\x63\xb9\x28\xee\x1a\xd3\xa8\x52\x41\xf3\x5a\x68\xc4\ -\x2a\x8f\x2b\x0d\x66\x43\x03\xf5\x5e\x18\xa5\x44\xe0\x72\x76\x4f\ -\x4b\xa8\xc1\x12\x68\x40\xf3\x14\xfb\xf0\x6e\x3a\x79\xbd\xa0\x8d\ -\xf6\x39\x46\x37\x65\x6d\x8b\xe5\x5b\xfb\xfa\x3a\x99\x5f\xdd\xf6\ -\x2f\xc8\x08\x8d\xbe\x1d\x55\x5c\x5e\x19\x4e\x99\xe1\x76\x83\x3a\ -\xa7\xc6\xc3\x33\x9c\x87\x4d\x22\x65\x2b\x95\x59\xd2\x4a\x93\xa1\ -\x46\x29\xb2\x1c\x8f\x5d\xaa\x75\xca\x6b\x97\xef\x34\x4b\xe1\xde\ -\xdb\x15\x6d\x4a\xe4\x63\x08\xb1\xd9\xa9\x9e\x41\x93\x19\x3c\x3d\ -\xec\x62\x0c\x26\x74\xf8\x99\xb0\x50\xaf\xa5\x40\xaf\x6e\x88\xe6\ -\x34\x7e\x5a\xd8\x25\xac\xe0\x40\xde\x8f\x66\xd1\x27\xfb\x51\x6a\ -\x98\x24\x78\xfd\x0a\x3b\x2e\x70\x2e\xc6\x81\x44\xae\x47\x9e\x3b\ -\x3a\x2d\xc5\x19\xb9\xb6\x47\xbd\xb6\x83\x79\x08\xf3\x34\x5b\xb0\ -\x68\x3b\xe8\xf0\x03\xfd\x7d\xc2\xe6\x79\x0a\xab\x2c\x7a\xa1\x54\ -\x2a\x04\xfc\x50\x68\x60\xe6\x09\x2e\xf2\xa0\x80\xc5\xb7\x1e\x93\ -\xf7\xc1\x69\x4d\x75\x15\xab\x46\x6f\x1f\x65\xc3\x8a\x43\xc9\x22\ -\x81\x51\x5e\x86\x14\xa0\x94\x1e\x9e\xca\xc2\x74\x15\xe5\xe2\xc5\ -\x1e\x90\x69\x20\xe4\xc3\x4b\xa9\x85\x5b\x10\x71\xd2\x8c\x12\x6c\ -\xb7\x82\xa4\xd9\xa2\x07\x0d\xaf\xa2\xe8\x0e\x63\xe0\x6c\xe8\xa9\ -\x1c\xa8\x98\x3e\xa6\x18\xc2\xf1\x47\x80\xe3\xef\xda\x3c\x8a\xdd\ -\xb5\x59\xe1\x66\x4f\x65\xc8\x64\xd7\x6c\x2a\x0d\x76\x85\x0c\x66\ -\x15\x22\xba\x49\x69\x9e\x88\x0c\x6a\xaa\xc2\x75\x9c\x6b\x92\xf2\ -\x6e\x1a\x55\x4d\x91\x58\x3a\xb6\x0f\x4b\xa1\xf3\x8d\xcc\x53\xa7\ -\x19\x59\x79\x93\x25\x23\x8c\xb4\x05\x64\x33\xf2\x5c\x96\xbf\x24\ -\x4b\x85\x6a\x64\x97\x52\xaa\xcc\xa0\x81\x75\x6d\x57\xa8\xed\x7c\ -\xe0\x2e\x79\x22\x8e\x05\xc6\x9e\x09\xea\xcb\xd3\x54\x43\x79\x5b\ -\xa9\xd2\xfa\x73\xd8\xda\xe0\xb6\xb4\xaa\x7a\xab\xbe\x65\x55\xe1\ -\x66\x97\x8c\xd9\xe8\xff\x65\xc7\x7d\xd5\x83\xea\x3a\x57\xc8\x4d\ -\x6e\xd5\x08\x85\xdd\xe3\x89\xbf\xac\xd8\x35\xf3\x75\x08\x7f\x69\ -\xdc\x81\x77\xdd\x57\xd7\xd9\x19\x72\x51\xcd\x8a\xa5\x19\x49\xeb\ -\xf1\x5f\x82\x35\xee\xd0\x6b\xcc\xf0\xec\xe6\xed\x72\x21\x13\x39\ -\xf3\xa8\x1e\x4a\x35\xbd\x8a\xa7\x1c\xb5\x76\x73\x45\x84\x2f\x4e\ -\x79\x53\xa7\xf2\xe6\xc5\x15\x53\xcc\x1c\x95\x7f\x13\x99\x93\x57\ -\x20\xb2\xf6\xb0\x45\x82\x57\x28\xcb\xb0\x32\x2b\x88\x61\x63\xee\ -\x36\x3b\xc5\x33\x44\x0c\xbe\xb3\x84\xad\x21\x51\x73\x72\x9f\x92\ -\x6b\xe6\x70\x01\x81\xd5\xe5\x68\x49\x62\x56\xff\x95\x7a\x01\x47\ -\x5d\xbb\x50\xf6\x60\xc6\xc3\xdb\x7a\xfa\x06\xc2\xb3\x9e\x5d\x51\ -\x44\xd6\xc4\x48\xc8\xb9\xa1\x42\x64\x34\x8c\x9d\x96\xae\x03\x5e\ -\x6a\x2c\xba\x23\x17\x86\xda\xc5\xd7\x64\x6d\xe5\xed\x95\x92\xac\ -\x81\x4d\x14\xec\xa3\x0f\x89\x27\x1d\xd8\x0a\x2d\xbc\x87\xd8\x65\ -\xd3\x42\x1d\x44\xf2\x1e\x24\x13\xe4\xdd\x04\xee\x5d\x0c\xc8\xfd\ -\xa0\x97\x2c\x7c\xb5\x4d\xe0\x94\x23\xef\x4b\xb9\xdb\x68\x0a\x98\ -\xb6\xf3\x5d\xe8\x33\xe7\x08\x4c\x81\x9b\x83\x02\x28\x16\x99\x1e\ -\x53\x41\xd3\xc4\x7b\x11\x57\x31\x04\x94\x89\x20\x28\xbc\x34\x43\ -\xa4\xa9\x28\x02\xac\x34\x5d\x86\x51\x23\x46\xe4\x22\xe0\x4a\x09\ -\x96\x89\x9a\xc8\x41\xa4\x7e\xe0\xf7\xd0\xd1\x66\x30\x2e\x41\xd0\ -\x88\x83\x48\x4a\x7f\x8b\x70\x6d\x54\x63\x5b\x3d\x5c\x23\xb7\x67\ -\x1b\x2f\x25\xaf\x9e\x57\x50\xba\x69\xc5\xda\x59\xd1\x12\x33\x0d\ -\xfd\x3c\xe5\x30\xf4\xfe\xb6\xc0\xbe\x54\xe5\x82\xb8\xa9\x52\xe6\ -\xcb\xb2\xf3\xc6\xf2\xda\x92\x12\xfa\x28\xf6\xc2\xaf\xfb\x63\xf6\ -\x52\x7b\x3f\x2d\x90\x0e\xbb\xd2\xb1\x91\x79\x49\x61\xaf\xfb\x89\ -\xb3\x7e\x55\xb0\x00\x4f\xf2\x55\x2e\xa5\xc0\x14\xfd\x39\xb2\x78\ -\xaa\x4b\x43\x64\xca\x49\x4c\x35\xf1\xec\x10\x9b\x9b\x12\x4a\xd3\ -\x53\x43\x35\xbe\x45\xf1\x02\x79\x52\xcb\xf4\xcd\x74\x89\x93\xc5\ -\x8a\x34\x3c\x72\x20\x93\x03\x1e\x94\x41\xcb\x12\xd3\xc3\x5c\x98\ -\xe4\xe2\xb0\x14\x4c\x78\xc7\x64\x60\x01\x07\xc9\x72\x29\x6b\xa4\ -\x3a\x3e\xb8\x1c\x99\x7d\x64\x33\xc5\x56\x20\x8f\xa9\x22\x98\x1a\ -\xa4\x56\x7f\x9f\x38\x3b\xa0\xf4\xb1\x23\x72\x33\xa4\x88\xc0\x04\ -\x6f\x7c\x0c\xa6\x60\x54\xbe\x4a\x9d\x72\xf1\x3e\x85\x6b\xb7\xcb\ -\xdb\x21\xe9\xe5\xe6\xf2\x7e\xe1\xc0\xf5\xe7\xed\x7d\x61\x3e\xed\ -\xe0\x1d\x0c\x41\x2d\x33\x36\x83\x1b\x1d\x26\xaa\x54\x19\xe0\xfe\ -\x25\x46\x95\x9d\x31\x69\xd0\x14\xc6\x41\x2c\xc0\x12\x7f\xa7\xe6\ -\x3a\x1f\x66\x15\x50\x41\xb7\x34\xb3\x19\x96\x0e\xff\x14\x19\xcf\ -\x5a\xfb\x60\x78\x02\xf3\x43\x39\x63\x34\x2f\xf6\x75\x6a\xfc\x49\ -\x33\x67\x90\x66\x26\x0d\x9b\xfb\xc3\xbb\xe0\x6a\x72\x22\xd1\x78\ -\x18\x82\xad\x81\xed\x67\x45\x88\x70\xc6\x18\xee\x3c\x16\x0a\xed\ -\x0c\xe9\xde\xac\x8c\x8c\xa8\x6c\x6f\x61\xca\x55\x98\x45\x06\x53\ -\xc6\x24\xf5\x68\xdc\x90\x66\xee\x5d\x49\xf3\x27\x0d\xda\x65\x58\ -\xc0\x13\x45\x91\x7a\x77\xcc\xa0\x75\x83\x98\x72\xd2\x2d\x1c\x69\ -\x3a\xd6\x36\x61\xde\x3a\xd3\x0b\x6f\x88\x0b\x71\x5e\xc1\xd1\xe2\ -\x60\x75\x15\xd8\xe2\x0b\xe9\x88\xbb\x2b\xe4\xad\xb9\x41\x7d\x75\ -\xa9\x80\x96\x82\xd3\x8d\x17\x3f\xd0\x0c\x4e\xbc\x8c\x94\x69\x45\ -\x11\x53\xe7\x3a\x04\x4e\x6e\xf8\xce\x98\xaa\xa3\xa2\x8c\x46\xd4\ -\x8a\x4b\x86\xf2\x01\x12\xac\x23\x65\x07\xfa\x88\x47\xfc\x2a\x31\ -\x15\x5a\xe2\x38\x5a\xd4\xb4\x5b\xc3\x29\x98\xd9\x49\x36\xbb\xf0\ -\xb4\xb6\xe1\xb4\x6c\xbf\x6c\x11\xdb\x45\xd1\x8a\xfd\x95\x56\x22\ -\xe4\xb7\x50\x00\x5b\x24\x00\x83\x5d\xc0\xee\x5e\xe9\x56\xae\x7c\ -\x0d\xc3\xe1\x21\x1c\x6f\x15\xa5\xb4\xdc\xb4\xcb\x35\xb1\x51\x2c\ -\xee\x25\x6e\xae\x18\x93\x2c\xd6\x97\x5f\x29\x65\x47\x73\x58\x23\ -\x08\xec\xd6\x46\x41\xcc\x8f\x09\xd2\xc8\x18\x30\x99\x8c\x61\xa5\ -\xcd\x28\x85\xec\xc1\x63\x84\x82\x3d\x9e\x48\x34\xae\xbc\x9a\x7e\ -\x02\x7e\x9a\xc8\xea\xf1\xaa\x8d\xd1\x1d\x79\x57\x1e\xcd\xa5\x40\ -\x4b\x40\x3b\x05\xa0\xa0\xc4\x9a\x34\x5f\x3f\x8d\xd9\x39\x02\x56\ -\xfe\xb4\xc2\x5a\x9f\x83\x37\xb5\x86\xed\xd1\x38\x3c\x06\x9d\xd1\ -\xea\xb1\x7c\xac\xc1\xa2\x00\x74\x0c\x03\x68\x8d\xa4\xb7\x6c\xd9\ -\x15\x3e\xf3\x30\x00\xbd\x89\x01\x88\xbb\xf8\x3a\x48\x5e\x4b\x22\ -\x03\x8b\xeb\xab\x2b\x8d\xee\x61\x54\x35\x8e\x65\x56\x62\x23\xc9\ -\x76\x6d\xb8\x10\x7c\xfc\x3e\x5d\xcc\xe0\x55\xef\xf0\xf0\xd9\x22\ -\xd6\x73\x8a\x03\x57\x4d\xd0\x8c\x07\x87\x22\x52\x84\xaa\x83\xfb\ -\x43\x14\x48\x52\xd3\x5f\xa4\x73\x3d\x5e\x7a\x48\x70\xbb\x18\xb8\ -\x98\xb2\xe9\xca\x8d\xcb\x42\xbf\x74\x43\x73\xb3\xd3\x04\x7b\x20\ -\x13\x31\xf0\x83\x5b\x21\x59\xd5\xad\xb4\x1f\x0e\x77\x71\x66\x59\ -\x44\x60\x38\x6e\x14\xd9\x0a\x31\xf5\xb3\x40\x22\x8f\x1b\x53\x53\ -\x62\x86\x6c\xe1\x67\xe1\x66\xb2\xf2\x71\x42\x85\x22\x3a\xcf\x5d\ -\x48\xaa\xe2\x98\x22\x9a\x0f\xea\x0a\x0e\x2a\xd6\x93\x61\x2b\xaf\ -\x88\x1c\x80\xcf\xa4\x3a\x43\x2e\x4a\x03\x25\xff\x3e\x15\x23\x66\ -\x88\x99\x4b\xf2\x38\xbe\x3e\x25\xb9\xba\xb4\x48\x85\x5e\x60\xd0\ -\x75\x53\xe0\x2b\x61\xf4\x9c\x08\xa8\xe1\x7d\x11\x07\x2c\x63\xc4\ -\xcc\x0b\x2f\xde\x94\x40\x2c\x0b\x02\x81\xdb\xa4\x1b\x53\x09\xbc\ -\x8a\xbb\xfc\x9a\x08\x1c\xaa\xcc\x16\xd7\xf4\x48\x28\xde\x1a\x52\ -\x35\xff\xb2\x22\xf6\x7e\x50\xd5\x52\x7c\xad\xc1\x99\x50\x59\x0d\ -\x04\x6b\x31\x37\x1f\x47\x2e\x67\x06\x69\xbb\x58\xa2\x2f\xcf\x64\ -\x62\xd1\xb4\x10\x83\x1f\xfc\x89\xf3\x40\x26\x9b\x60\xb2\x89\xad\ -\x8b\x4e\x0c\x13\x3c\x14\xb1\x34\xfd\xd4\x9c\x00\xbb\xa0\xac\x88\ -\xad\x13\xcb\x8a\x0a\xb3\x0f\x76\xe6\x48\x16\xe9\xa3\xe0\x07\x83\ -\xcc\x7a\xac\x2a\x91\x56\x5a\xc9\x09\xac\x0f\x4e\x40\xb0\x13\x1a\ -\x72\x62\xe4\xe6\xab\xae\x8a\x6e\x40\x7f\x0a\x4f\x62\x70\x06\x93\ -\x48\xc2\xdf\x96\xc6\x02\x36\x25\x57\x3b\x10\x21\x91\x24\x4b\xaf\ -\x66\x81\x8c\xf3\xc4\x02\x49\x0e\xe1\x12\x62\x49\x64\xf3\x69\x15\ -\x40\x0f\x4b\x68\x19\xb6\xcf\x9a\x8e\xeb\xd1\x1b\xaf\xc2\x53\x3a\ -\x38\x45\x25\x51\x06\xda\x94\xe1\x26\x12\xcd\x81\x60\xd6\x5e\x96\ -\x57\x7c\x88\xab\x20\x12\x4e\x35\x4e\x13\x76\x8c\xdf\x25\xe2\x62\ -\x81\x68\x38\x6b\x6b\xa0\x22\xa9\xa5\x85\x83\x5b\x7e\x28\x1d\x4c\ -\x42\x3f\xf1\x0a\xcb\x84\x88\x4c\xaa\x74\x41\x77\x5d\xaa\x77\xc6\ -\x05\xc3\x1e\x4e\x94\x41\x20\x84\x7b\xb0\xba\x62\x98\x4d\xa8\xc6\ -\xfc\x28\xf7\x7f\xcb\x1c\x1f\xb6\xe2\x6a\x0f\xf4\x04\xa0\x85\x1e\ -\xa7\x2c\x61\xc7\x61\x69\x6f\xe2\x0c\xb2\x2c\xd4\x16\xbc\xde\x6c\ -\x48\x45\x08\x0f\x7d\x31\x24\x50\xc7\x4f\x16\x2d\x68\xad\x6c\x79\ -\x66\x01\xb3\x75\xb0\xc2\x1a\xcf\xd3\x61\xef\x8e\x96\x3d\x0f\x2c\ -\x67\x3d\xc7\x6f\xe4\x52\xb0\xb1\x2f\x80\x8d\x1c\xa7\x5e\xe6\x50\ -\xee\x88\xa1\xfa\xa0\x3a\x3b\xa6\x38\x78\x3d\x4e\x48\xcc\x29\xe6\ -\x05\x82\x1e\x69\xf4\xfb\x8b\xb4\xff\xa0\xdb\xe2\x14\x75\x76\xe1\ -\x6c\x09\xac\x28\x13\x58\xdf\xa2\x3d\x0e\x0f\xa2\x5e\x0c\x0d\x0b\ -\x70\xb1\xc1\x45\x00\x81\x15\x93\x4a\xa3\xff\x4c\x29\x31\xbd\x09\ -\x7a\xd3\xb1\x8a\xe1\x66\xac\xd8\x11\xea\xa9\x3b\x70\x9f\x1f\x65\ -\x90\xaa\xef\x8e\x99\x94\x19\x2e\xb8\xa8\xa8\x63\xe9\xd2\x56\x80\ -\x97\x2f\x1c\x92\x9e\xf2\xbc\x4e\xb3\x8f\x41\xcf\x73\x0c\x04\x3e\ -\xbc\x2f\x53\x52\x97\x90\x2e\xab\xa1\xa8\x97\x7a\x5e\x40\xe7\x88\ -\xf1\x3c\xd1\x36\xb1\x9e\xa7\xf9\xd3\xde\xf7\xc0\xda\xee\x14\xe9\ -\xbc\x81\x51\x77\x28\x8b\x68\x12\xee\x99\x94\x90\x6e\xb6\x23\xc1\ -\xe3\x29\xaa\x3a\x05\x5c\xdd\xf1\x47\xf3\x65\xaa\x9f\x6c\xdf\xb6\ -\xc5\x3f\x1c\x4f\x95\xe4\xf0\x92\xcd\xf1\x81\x64\x0b\x17\x08\xfb\ -\x6f\x8d\xe3\x02\xfb\xa3\x2d\xb8\x20\x51\x33\xee\x25\x65\x8b\xd2\ -\x8b\xc2\x5d\x2b\x74\x96\x20\x3f\x67\x41\x5b\xf5\x8c\x9e\xa8\x10\ -\x2c\x23\x73\x92\x48\x56\x32\xc8\xb8\x32\x6b\x3b\x63\x20\x2b\x2d\ -\xca\xb9\x85\x45\xa0\xd3\x1b\xb0\x3d\xb3\x18\x13\xf5\x0b\x8e\x2b\ -\x8e\xf8\x04\xfc\xf1\xdb\xcc\xf4\x98\xb6\x35\x2e\xca\xbb\x17\xcb\ -\x56\xb0\x73\x4a\xb2\xa8\xb7\x54\xc3\xc5\x4a\x04\x2f\xa0\x50\x7d\ -\xd2\x71\xde\x50\x91\xa8\xa8\x00\xa3\x28\xee\xed\x08\x0e\xf7\x5a\ -\x79\x36\x2b\xa0\xcd\xd2\x09\x03\x6e\xea\xf0\x54\x57\x2a\xb7\xb5\ -\xab\x29\x94\xe1\xa8\xb3\x1a\x69\x6e\x63\x63\xf1\x70\x73\x24\xd0\ -\xdc\x8e\xf7\xa1\xb9\xc8\xaf\x59\x39\xec\x31\x54\xd6\x02\x78\x0c\ -\x74\x78\x18\x76\x88\x45\x75\xe2\x63\xd7\x5d\x4a\x97\x6a\x10\x36\ -\x8a\x11\xaa\x26\xc4\x76\x8c\xcc\x22\xd2\xf1\xea\x8a\xf1\xdd\xe9\ -\xba\x3e\x1c\xbb\x4e\xb3\xd0\x6f\x7c\xe7\x1d\xdc\x4d\x26\x38\x98\ -\xf4\xe8\x4c\xd5\x31\xc3\xae\xa8\xad\x10\x83\xdd\x01\x94\x8a\xd3\ -\xc1\xaa\x24\x06\x60\x87\x86\x95\xa9\x88\x83\x81\x80\x0e\xb5\x6d\ -\x3a\x2c\xc8\x78\x10\xf6\xcc\x34\xa2\xf8\xbe\xbb\x78\x1e\xd5\x28\ -\xf6\x94\x1c\xe6\x23\xb0\x67\x71\x51\x62\x85\xce\x1d\x30\x8d\xc3\ -\x77\x75\x4f\x0d\x7c\x07\x57\x18\xd4\x34\x5d\xe1\x41\xb7\x15\x0e\ -\xd9\x0e\xbd\xae\x08\xf9\x0b\xb5\x00\x80\x2b\x10\x40\xbc\xbb\x1a\ -\x81\xc3\xf3\xb4\xed\x83\x2b\x98\xb6\x40\xff\xee\x5b\x41\x1d\x28\ -\x11\xa0\x4f\x9a\x31\xd0\x2a\xc6\x0f\x0b\x0d\x1b\xe9\xfe\x1c\x74\ -\x1d\xb1\xea\x61\x22\x1e\xc4\x66\x91\x0b\xcc\x7a\xda\x21\x23\x8b\ -\x61\x97\x4a\xb6\x4b\x6f\x6d\x8d\x1f\x78\x19\x9e\x3f\x91\x65\x4e\ -\xa6\x5e\xdf\x16\xec\x92\xd5\x1d\x89\xd9\x37\xfd\xc8\x73\xf2\x21\ -\xf6\x91\x84\x64\x1c\x7e\xcd\x7d\x05\x46\xd2\x0b\x50\xda\x44\x3d\ -\xad\xe7\xf2\xd3\x59\x33\xe7\x00\xf3\x82\x03\x32\x56\x10\x19\xf1\ -\x74\x0c\x71\xe8\x7c\x11\xe4\xdd\x0a\x59\xae\x1b\xdb\xbe\xdc\x9b\ -\x9e\xdb\xb8\x69\x9d\x5d\xf6\xec\xd9\xd1\x81\xba\x78\x02\xa1\x83\ -\x8e\xf9\xe4\x78\x63\x9b\x98\x55\xfc\x8e\x47\x5a\x87\xd2\x73\xf2\ -\x2d\xac\xf6\x1b\x4f\x32\x29\x49\x85\x32\x46\xba\x8d\xbe\x1a\x7a\ -\xb1\x59\xa5\x2d\xa9\x79\x6c\x47\xf2\x89\x28\x54\x32\xe7\xc8\x89\ -\x69\x35\x9b\xb5\xa2\xaa\x4e\x6c\xae\x41\x38\x51\x4c\x9c\x16\x4c\ -\x92\x2a\x16\x54\x58\x55\x6d\xe1\xb8\xed\xa8\x9c\x8a\xf0\xb1\x6f\ -\x4d\x4e\x99\x2d\xd6\xec\xef\x83\x80\xc2\xb5\x9d\x52\x5c\x34\x65\ -\x32\x48\x66\x81\x94\xc9\x61\x4a\x37\x91\x48\xfd\x80\xa2\x70\x44\ -\x96\x52\xe6\x28\xf1\x92\x77\xdb\x62\x82\xdc\xcb\xf0\x6c\x4b\x67\ -\xc2\x9e\xda\x78\x4f\xbb\x76\xc7\x46\xcc\x0f\xb1\xb3\x3d\xb1\x9d\ -\x2d\xc2\x93\x2d\xc1\xce\xa6\xea\x66\x77\x7c\x37\xbd\x5c\x7c\xc5\ -\x29\xa2\xe2\x76\xe7\x09\x9f\xb7\xc6\xed\x08\xb9\x1f\x8e\xe2\x43\ -\xe9\xbe\x47\x1a\xd4\x34\x4a\x14\xd1\x44\xbd\xf8\xc1\xe2\x34\xea\ -\xe0\x25\xe3\xec\x99\x1c\xf2\xe8\xb8\x21\x99\xd5\x1e\x1e\xf4\xd4\ -\x0a\x83\x2a\x14\x38\xcd\xfc\x62\x07\x43\xee\x18\x99\xe1\xc6\x69\ -\xd0\x1a\x21\xe5\x78\xe5\x57\x19\x7c\x41\xdc\xe0\xc8\x2e\xc3\x63\ -\x67\x2b\x28\xbc\x95\x2d\x8e\xe0\x35\xde\xc1\xb4\x0a\x56\xee\xda\ -\xe1\xd9\xad\xf2\xa6\x1c\x09\x99\x16\x07\x99\xe7\x98\xc5\x55\x20\ -\xc4\x8d\xa8\x87\x71\xfb\x21\xc1\x57\xf1\xae\xf4\x00\x2c\x0b\xe3\ -\x60\x29\xb3\x1b\xd3\xc3\x70\x5c\x3a\x25\x1c\x2c\x06\x2c\xf7\x16\ -\x0b\xca\x8c\xf9\xde\x71\x01\x9b\xa8\xe7\x14\x4d\x7f\xe8\x25\xac\ -\x7e\xeb\x18\xf7\x78\xca\xbb\x61\xf8\x5a\xcb\x00\x0f\x87\x1a\x37\ -\x28\xf5\x4a\xd1\xc0\xa6\x99\x2e\x17\x74\x27\x9c\x74\x2b\xca\x2d\ -\x2a\xf3\x58\x13\x38\xcb\x18\x74\x30\x4c\x17\x5a\x3a\x92\x17\x5d\ -\xf6\x5d\x0c\x2c\x26\x16\x46\xd5\x3c\x45\x3e\xb2\x82\x78\xc1\x04\ -\xb0\xa6\x61\x14\x82\x3d\x31\xb9\x5f\xe7\x1f\x72\xc2\x2b\xc5\x7d\ -\x30\x23\xa7\x72\xd2\xeb\xe2\x91\x50\x9a\x2b\x3d\x66\x42\x9d\x5b\ -\xe2\x74\x50\x78\x46\xdd\x09\x2b\x33\x51\xe2\x63\x08\xf4\x2f\x41\ -\x91\xfc\x6e\xc4\xce\xe5\xe8\x05\x4f\x81\x1b\x54\x37\xf3\x8b\x44\ -\x02\xee\x8c\x11\xa4\x81\xa2\x74\x67\x8c\xc0\xfe\x08\xbd\x35\x12\ -\x70\x1b\x45\x4f\xc2\x6a\xc4\x89\xe6\xd3\x73\x0e\x29\x23\x3b\xed\ -\xe2\x20\x1c\x39\x01\xe4\x83\xf4\x92\x2d\xa2\xe9\xf6\x48\x4a\x98\ -\x83\xc9\xcf\x78\x82\x12\x3f\xb2\x7d\xe8\x84\x3d\x61\x67\x58\x2b\ -\xbf\x89\x88\xaf\x86\x84\x7b\x47\x94\xfe\xee\x13\x29\xfb\x44\xad\ -\xb7\x60\xe0\x69\x5f\x97\x88\x0a\x6a\x6c\x07\x05\xcf\xf5\x4a\xd7\ -\xae\xa8\xe4\x20\x68\x98\x05\x4f\x44\xb5\x06\x87\x88\xf2\xb5\x39\ -\x22\x6a\xbb\x47\x0f\xde\x15\x88\x38\xc9\x22\x0b\x0a\xb2\x7b\x9c\ -\x24\x16\xde\x41\xcf\x12\x30\xdf\xa6\x7f\x1d\x85\x38\x2d\xcb\x9c\ -\xbf\xb4\x52\x03\xdd\x11\xd4\xed\x89\xaa\x9d\xcb\xdc\x9e\x52\xa3\ -\x51\x72\x58\xdb\x77\x86\x11\x77\x6a\x6c\x5c\x6f\x26\x5b\xf2\x08\ -\x9a\xc4\x38\xdd\x86\x9c\xeb\xdf\x4e\x15\x97\x51\x97\xc2\x2e\xe2\ -\x12\xea\x66\x29\x59\xdd\x55\xe1\x74\xee\x5e\xd0\x4f\x3a\x63\xf3\ -\x87\xe5\x11\x6c\x6b\x0a\xd3\x4e\xbd\x63\x69\xc1\x2e\xa5\xde\x24\ -\xc5\xac\xb4\xe8\x42\xa3\xd6\x50\xad\x48\x1e\xde\xda\xb5\x3b\xe6\ -\xf7\x3d\xca\xef\x7b\x22\x53\x92\xad\xab\xc2\x8d\x7b\x51\xe1\xfa\ -\x27\x4d\x69\x77\xf2\x29\xed\x56\x41\xde\x1d\x05\x59\xfe\x5a\x15\ -\xfe\xb1\x17\xd5\xba\x7f\x12\xc8\x7b\x92\x82\xbc\x48\x09\x64\x30\ -\x46\xad\x86\x1d\xba\xa5\x3a\xa9\xb3\x83\x2a\x3c\x32\xd0\x1d\x71\ -\xb6\x05\xf3\xa6\xc2\xd1\x0b\xe5\xb4\xb1\xb4\xf8\xb1\x39\x30\x51\ -\x16\x6b\xe8\xd5\x55\xef\xf3\xff\x07\x83\x66\x98\xc1\ -\x00\x00\x34\xb8\ -\x00\ -\x00\xb3\x13\x78\x9c\xc5\x7d\x09\x98\x1d\x55\x99\xe8\xe9\xf4\x7e\ -\x7b\x0b\x21\x84\x10\x62\xa8\x74\x30\x74\x42\xa7\x13\x12\x42\xa0\ -\x65\x4b\xba\xd3\x49\x20\x9b\xe9\x26\x9b\x8c\x50\x7d\x6f\xdd\xee\ -\xa2\xef\xad\xba\x54\xd5\xed\x05\x21\x20\x28\x41\x16\x11\x41\x76\ -\x23\xbb\xc8\x1b\x79\xfa\x14\x9f\xbe\x51\x14\x07\x79\x88\x0f\xe5\ -\x53\x46\x1f\x8c\xa3\x04\x45\x71\x14\x50\x70\x1b\x44\x9d\xff\xfc\ -\x67\xad\xe5\x76\x57\x07\x9d\xf9\xf8\xc2\xed\x5b\xb7\xce\x39\xff\ -\xf9\xcf\xbf\xff\xff\x39\xe7\xd4\x2f\xe6\xe6\x3e\xf5\xda\x9d\x1f\ -\x7b\x7a\xe1\xfc\xaf\x9e\x7f\xf7\x57\xfe\x6d\x1d\x21\x8d\xb7\x12\ -\x42\x76\x13\xf2\xc0\x01\xf8\xdc\x43\xc8\x27\x5d\xf8\xdc\x4b\xc8\ -\x83\x06\x21\xb5\xcf\xc1\xf7\xe5\xf0\xf9\x3c\x7c\x6e\x83\xcf\x7f\ -\x87\xe7\xf0\x73\xfd\x38\x21\x17\xfe\x8c\x90\x8d\x57\x10\x52\x7d\ -\x0e\xfb\x1c\xff\x5f\x84\x0c\x9f\x48\x48\x61\x17\xa9\x79\x60\x82\ -\x90\x8b\x6b\x49\xcd\x3f\xd5\x10\xd2\xf4\x26\xfb\xbc\xac\x44\x6a\ -\x57\xac\x27\xa4\x75\x0d\xfb\xfc\xe8\x75\xa4\xb6\xef\x1b\xf0\x3d\ -\xc7\x3e\x6f\x84\xe7\x3b\xe1\xf9\xc6\x4b\xd8\xe7\x8d\xe7\x91\xda\ -\x7f\xfc\x2d\x21\x47\xbd\x48\x6a\xbf\xf8\x67\x42\xee\xeb\x24\xb5\ -\xdf\xf9\xbf\xf0\xf9\x0c\xa9\x7d\xe1\x83\x84\x2c\xfa\x31\xa9\xfb\ -\x1f\xd7\x12\x52\x7c\x89\xcc\xfc\xc0\x26\x42\x06\x76\x91\x59\xb5\ -\xff\x87\x90\xbb\x72\x64\xce\x13\x00\xef\xfe\x06\xb2\x94\xc2\x11\ -\xbc\x4c\x8e\x7f\xfc\x7f\x12\x52\x7e\x82\x1c\xff\x82\x05\x9f\x7f\ -\x20\xa7\xfc\x78\x15\x21\x27\x3d\x4c\x4e\xbb\xfb\x28\x42\x26\xfe\ -\x3f\x39\xfd\x46\x80\x7f\xcd\xb3\x64\xe3\xf5\x17\x13\xb2\x78\x3f\ -\x39\x3b\xbf\x9a\x90\x55\x8f\xc3\xe7\x1a\x42\x4e\x6c\x84\xcf\x53\ -\xe0\x73\x2b\x39\x7b\xff\xb3\x84\x5c\x7a\x3d\xd9\x75\xfe\x00\x21\ -\x77\x2e\x23\xbb\xff\x0c\xf0\x9d\xfd\x7d\xb2\xe7\xd6\x77\x12\x32\ -\xfb\xcb\xec\xf3\xe3\x1f\x22\x17\xec\xbe\x9d\x90\x8f\xdd\x4f\x26\ -\x5e\x83\xf7\xbd\x05\x64\xdf\xa5\xad\x80\x9b\x2f\x93\xab\x17\x7d\ -\x8c\x90\xa5\xbb\xe0\xf3\x16\xf8\xbc\x17\x3e\x6f\x83\xcf\xd7\xc8\ -\x0d\x5f\xfe\x05\xe0\xe1\x06\xf2\xc0\x9a\x33\x08\x59\x52\x43\x1e\ -\xba\x0c\xfa\xd9\xf7\x34\x79\xe2\x27\x0e\x21\xef\x3c\x83\x7c\xeb\ -\xc1\xd9\x80\xef\x1a\xf2\x16\x79\x8a\x90\x0f\xcf\xaa\x5a\xf8\x7d\ -\x80\xa7\xbf\xab\xaa\xfd\xf3\xff\x01\xe3\xbe\x56\xb5\xfc\xc3\xfb\ -\x08\x79\xef\x13\x55\x1b\xff\x72\x2f\x21\x27\x6f\xad\xea\x7f\xe3\ -\x21\x42\xae\x78\xbd\x6a\xe7\x9c\xb3\x08\xb9\xee\xfa\xaa\xa1\x96\ -\xab\x09\xb9\xea\x60\x95\x7d\xd8\x45\x84\xdc\xf6\x6a\xd5\xe5\xa7\ -\x64\x08\xb9\xb9\xa7\xea\x9a\xe1\x32\x21\xf7\x7e\xa9\xea\xee\x4b\ -\xb3\x84\xcc\xbf\xb4\xea\xb1\xe7\x7e\x44\xc8\xce\x8b\xab\xbe\x7b\ -\xfd\xf7\x08\xd9\x7c\x5d\xd5\x8f\x0f\xeb\x81\x35\xff\x42\xd5\x8b\ -\xbf\x05\x7a\xf8\xc4\x2b\x55\x6f\x3d\x0c\xcf\xbd\xf3\x66\xd4\x3e\ -\x0a\xf0\x5d\x32\x3a\xa3\x6f\x37\xf4\x73\x5b\xfb\x0c\xeb\xd3\x83\ -\x40\x17\x7f\x9c\xe1\xd4\xbf\x48\xc8\xd6\xe7\x66\x8c\x1e\x7b\x38\ -\x21\xa7\xee\x99\x71\xc9\x0b\x40\x1b\xdb\x2e\x9d\x71\x53\xdf\x3c\ -\xc0\xc7\xaf\x66\x7c\xb2\xf3\x08\x42\x6a\x4e\x9a\xf1\xd0\x49\x80\ -\x87\xe0\x8a\x19\x9f\xfd\x35\xac\xd7\xd5\xdf\x9e\xf1\xd5\x87\x3e\ -\x4c\x48\xf7\xf3\x33\xbe\x96\x7f\x1d\x48\xef\xfc\x19\x4f\x9e\xf1\ -\x3b\x42\xf2\xb7\xcc\x78\xee\xbe\x2f\x01\x3d\xd5\xcc\xf8\xd7\x79\ -\x37\x01\xcd\x7d\xb0\xba\xea\x03\x8f\xc3\xfc\x9f\xab\x9e\x75\xcb\ -\x05\x84\x5c\xfb\x54\xf5\xbc\xd9\x80\x97\x13\xea\xaa\xe7\xcd\x01\ -\xba\xdd\x7e\x54\xf5\xf2\x79\xf0\x7c\xf4\xaa\xea\x7d\x4f\x3d\x42\ -\x48\xcf\x0b\xd5\x57\x1d\x03\xf8\xef\xfd\x4e\xf5\x81\xdd\xf7\x03\ -\xd1\xf6\x56\x7f\xee\xc0\x9b\x30\xef\xdf\x55\x3f\xf2\x24\xac\xcf\ -\xad\x23\xd5\x5f\x79\xf6\xa7\x84\x8c\x9d\x56\xfd\xf8\xa9\x30\xde\ -\xc4\xcd\xd5\xdf\xf8\x97\xf7\x02\x3f\xdc\x5f\xfd\xad\x96\x97\x60\ -\x1d\xbf\x50\xfd\xc3\x66\x68\x5f\xee\xad\x7e\xbd\x04\xf4\xb0\xec\ -\x3d\xd5\xaf\x7f\xe5\x7c\x42\xe6\x6c\xa8\xfe\x53\x1b\xd0\xf3\x8a\ -\x7d\x35\x0b\x17\x2d\x22\x64\x61\xb1\x66\x67\xdd\x8d\x84\x74\x99\ -\x35\xe7\x5f\x0c\xf3\xbb\xf3\xb2\x9a\x89\xd7\xa0\xff\xab\x97\xd4\ -\x5c\x3e\x06\xf4\xb1\x6d\x75\xcd\xfe\xff\x00\xde\xba\xfe\x85\x9a\ -\x6b\xbf\xff\x30\x21\xb9\x47\x6b\xee\xba\x1a\xf0\x57\xeb\xb3\xcf\ -\xf7\x55\xd7\xdc\x77\x02\xe0\xf7\xa3\x47\xd6\x3c\xf8\x4b\xa0\xeb\ -\x13\x6f\xac\x39\xe8\xfc\x84\x90\xcc\x11\x35\x3f\x6d\x83\xf5\x99\ -\xf1\x46\xcd\x2f\xd7\xfe\x33\x8c\xff\x62\xcd\x6b\xcf\x01\xf3\x9d\ -\xbd\xae\xb6\xfa\x0a\xc0\x9f\xb3\xa8\xb6\xf6\x5b\x80\xe7\x75\x0f\ -\xd5\xb6\xbd\x1e\x10\x72\xd3\x97\x6b\x8f\x9e\x09\x78\xe8\x1b\xaf\ -\x5d\xfa\x12\xd0\xd7\x16\xb7\xb6\xf7\x5d\xe7\x11\x52\x6a\xad\x3d\ -\xf7\x39\xc0\x5b\xdb\xf3\xec\xf3\xc6\xef\xd6\x66\x7f\x0f\xf0\x6e\ -\x3e\xba\xd6\x7a\x15\xf8\xe1\xf2\xb3\x6a\xf7\x7f\x06\xfa\xbf\x73\ -\x67\xed\xcd\x0f\x02\x9e\x0e\xe7\x9f\x1f\x3f\xaf\xf6\xd3\x67\xc3\ -\xf3\xde\x8d\xb5\x5f\xaa\x7e\x92\x90\x05\x4b\x6b\xbf\xd2\x0c\xeb\ -\xf5\x81\x4f\xd4\x7e\xe5\xc3\x40\x27\xd9\x59\xb5\x8f\xee\x84\x7e\ -\xce\x7a\xa6\xf6\x1b\xdb\x01\x1f\xcd\x4b\x6a\x5f\xfa\x70\x17\x21\ -\x87\xf5\xd6\xfe\xe9\x87\xc0\x4f\x3d\xcd\x75\x0b\x7e\x06\xeb\x70\ -\xcf\x9f\xeb\x96\xbc\xfa\x29\x98\xe7\x19\x75\x2b\x7f\x02\xf3\xba\ -\xf4\x8b\x75\xbb\x8e\x02\xbc\x10\x52\xb7\xf7\x35\xc0\x57\xf0\xd9\ -\xba\xf7\x7c\x17\xde\x3b\x63\x53\x5d\xe1\x2a\xa0\x83\x33\xff\xb5\ -\x2e\x78\x07\xd0\xcd\x39\x3f\xad\xbb\xe6\xe6\x5e\xe8\xf7\x07\x75\ -\xb7\xec\xfe\x26\xac\xef\x3d\x75\x5f\xbe\x0c\xe0\x7a\xc7\x23\x75\ -\xdf\xfc\x62\x2d\xac\xdb\x23\x75\x2f\xd7\x6e\x85\x5e\xde\xaa\x7b\ -\xf5\xa1\x5d\x84\xdc\xfd\x7a\xdd\xaf\xbf\x05\xf8\x3c\xda\xaa\x7b\ -\xf3\xaf\x00\x77\x8f\x57\xf7\xd6\x3c\xa0\x8f\xd5\x9f\xa8\x7b\xeb\ -\x2e\xa0\xff\x9b\xfe\x5a\xdf\xf0\x11\x58\xd7\xe3\x1f\xaf\x6f\xf9\ -\xdf\x7f\x00\x7a\x3b\xae\xbe\xf5\xca\xd3\xe1\xfd\x6f\xd7\xaf\x1e\ -\x06\x3e\x3b\xf2\xdc\xfa\xd5\x2f\xc3\xba\xdd\xbe\xba\xbe\x77\xed\ -\x52\xe0\x9f\xf3\xea\xcf\x3a\x06\xf8\x62\x46\x73\xfd\x16\xbf\x1d\ -\xd6\xe7\x91\xfa\xad\x0f\x00\x7d\x5e\xf6\xcd\xfa\xdd\xdf\x7a\x19\ -\xbe\xff\xae\x3e\xfb\x17\xe0\xeb\x59\x8b\xea\x2f\x7b\xe2\x73\x20\ -\x3f\xf3\xf5\x57\x79\xb0\x8e\xe3\x3f\xa8\xbf\xf7\xa7\xf0\xbc\xfd\ -\xe7\xf5\x8f\xbd\x05\xeb\xb3\xbc\xbb\xe1\xb8\xcf\x03\xde\x6e\x79\ -\xab\x61\xe5\xe3\xc0\x97\x77\x34\x34\x9c\x14\x00\x5c\xc7\xfe\xb1\ -\xa1\xf7\x4b\x80\xa7\x93\x8c\x86\x4d\xdf\x5c\x01\x74\x75\x43\x83\ -\x79\x31\xf4\xb3\x60\xac\xe1\x9e\xa7\x86\x80\x6e\xbe\xd3\x70\xef\ -\x0b\x20\xa7\x2e\x3e\xbe\xe1\xb3\x47\x74\x00\xbd\x55\x35\x7c\xbe\ -\x06\xf0\x7c\xe7\x8f\x1a\x9e\x59\x09\xf8\xbb\xec\xf6\x86\x67\x9f\ -\xb6\x09\x79\x7f\x7d\xc3\xc1\x3b\x1e\x25\x64\xde\x0d\x0d\x07\x1f\ -\x03\xfa\xbe\xfc\xba\x86\x5f\x5e\x07\x7c\xfe\x40\x6d\xa3\xf1\xfc\ -\xb1\x20\xb7\xaf\x85\xcf\xcf\x03\x7f\x9e\x06\x9f\x40\xcf\x0f\xfc\ -\x53\xe3\x96\x9b\x41\xae\xbf\xf3\xdb\x8d\xd6\xf3\x80\x97\x2b\xaf\ -\x68\x1c\x6e\x59\x42\xc8\x47\x7e\xdb\x78\xe1\x75\x80\xbf\xba\x2f\ -\x34\x96\x17\x01\x7c\xa3\x46\xe3\xe8\x2b\x20\xcf\x87\x9e\x6d\xbc\ -\xf2\x01\xc0\xf7\xb1\xb3\x1a\xaf\x59\x04\xf3\xb8\x63\xa4\xf1\xc0\ -\x9f\x41\xde\x0c\x2f\x68\xfc\xc2\x52\xc0\xcf\xea\xaa\xc6\xa7\xe7\ -\xc3\x7a\x7d\xfc\x2f\x8d\xdf\x5d\x08\xfa\xe1\xbc\x83\x8d\x2f\x2d\ -\x82\xf9\xef\x39\xba\xf1\x57\xc7\x83\x1c\x6f\xbe\xa6\xf1\xb5\x55\ -\x20\x97\xe6\x0e\x35\xfe\xfa\x18\xc0\x73\xf5\xbe\xc6\x3f\xaf\x07\ -\x79\x70\xf3\xad\x99\xc6\xc7\xa8\x3c\xda\x9f\xe9\xb8\x1d\xe8\x70\ -\x6b\x0d\x7c\xc2\xbc\xb7\x9e\x0d\x9f\x30\xaf\xad\x1f\xcd\x2c\x7b\ -\x14\xf8\xf3\x84\xfd\x99\xd5\x9f\x82\x79\x5d\x33\x90\x39\xe3\x38\ -\xa0\xf3\x4b\xbe\x96\x39\x63\x04\xe0\xb9\xe4\x4f\x99\x4d\xf7\x83\ -\x7c\xbb\xf7\xe4\xcc\xf9\x2f\x00\x1d\x2d\x7e\x12\x3e\x8f\x24\xe4\ -\xb8\xe3\xe0\x13\xe4\xfa\x71\x57\x66\xac\x3b\x00\x9e\x9b\x9a\x33\ -\xe3\xb5\x97\x11\x52\x75\x5a\xe6\xd2\xeb\x61\x9c\xd3\xf6\x65\x6e\ -\xbd\x72\x2e\xd0\xc1\xbb\x32\xb7\x9d\x4b\xd7\xe3\xe9\xcc\x83\x73\ -\x80\x9f\x0e\x3f\x22\xf3\xa9\x0f\xfd\x8a\x90\xf5\x2b\x32\x4f\x9e\ -\x0b\x7c\x34\xf3\xe8\xcc\x33\xdb\xbf\x08\xfc\x7f\x44\xe6\x99\x9f\ -\x81\x7c\x98\x3b\x3b\xf3\xfd\xdf\x00\x1c\x97\xbe\x91\xf9\xe5\x0d\ -\x57\x01\x5e\x96\x35\xd5\x8f\x03\xfe\x3e\xf8\x62\xd3\xd1\x2f\xf8\ -\x84\xbc\x7b\x66\xd3\xb1\x1f\x07\x3c\xef\x58\xd2\x74\xec\x37\x80\ -\x5e\x0f\xdf\xdf\xb4\x78\x1f\xe0\xe1\xe2\x97\x9b\x8e\xdf\x0e\xed\ -\x3e\x74\x79\xd3\xb2\xcf\x81\xbc\x1e\x39\xb7\x69\x8d\x0f\xf3\xbb\ -\xef\x8f\x4d\x67\x9e\x09\xf4\xd7\xf7\x7c\x53\xcf\xd3\x00\xef\xfa\ -\x87\x9b\xf2\x1d\xdf\x05\xb9\xf7\xb3\xa6\xab\x5e\xa8\x07\xbd\x99\ -\x69\xba\xa9\x17\xf4\xe2\xca\x4c\xd3\xd7\x6f\x03\xb9\xf6\xc1\x85\ -\x4d\xdf\x3b\x0e\xe4\x47\x4d\xa9\xe9\xd9\x7d\x20\x4f\x9a\xce\x68\ -\xfa\xdd\xab\xfd\xc0\xcf\xd7\x34\xd7\x6d\x07\xbe\x6b\xd9\xdb\xdc\ -\xd0\x07\xf2\x68\xdf\x95\xcd\x47\xbd\x09\x7a\xe5\xfd\x37\x34\x77\ -\xdc\x01\xf8\x2f\xdf\xd0\x7c\xc2\x3e\xc0\xd3\x2d\x7d\xcd\x27\x6f\ -\x01\xfa\xaf\x7f\xa6\xb9\x7b\xce\x33\xa0\x57\x77\x37\xef\xfd\x1a\ -\xf0\xf5\x44\xae\xd9\xd9\x0f\xf3\x6b\x7f\xb8\xf9\x86\xbb\x60\x3d\ -\xee\xb9\xb3\xf9\xe6\x8f\x50\x39\xd2\xd8\xfc\xd4\xbf\x01\xdc\x77\ -\xfd\xa8\xf9\xfb\xaf\xcd\x02\xf9\xf6\xbd\xe6\x1f\xdd\x06\x7a\x76\ -\xe4\x33\xcd\xbf\xfe\x11\xe0\xed\xaa\xa3\x5b\xe6\xff\xfe\x55\x42\ -\x3a\x6f\x6c\xe9\x2e\x50\xfa\xbe\xb3\x65\xfd\x8b\x00\xe7\x27\xf2\ -\x2d\x7b\xee\x86\x71\x2f\xad\x6a\xd9\xfb\x69\xa0\xdf\xf1\x53\x5a\ -\xde\xfb\x73\x58\xf7\xe3\x5e\x6a\xc9\xdd\x0f\x74\xf7\x0f\x8f\xb6\ -\x14\xff\x08\xf4\xdb\x70\x45\xcb\xe8\x23\x1f\x85\xf6\xbf\x68\xb9\ -\xe3\x57\x80\xaf\x73\xfc\x96\xfb\x9f\x03\x39\xdf\xd9\xdd\xf2\xc0\ -\xf3\xf7\x11\xb2\xe1\xaf\x2d\x4f\x3c\x01\x7c\x78\xfb\x81\x96\xd7\ -\x4f\x81\xfe\xaf\x6d\x6b\x3d\xbe\x06\xd6\xf9\xe2\x4f\xb6\x76\xfe\ -\x14\x9e\x1f\xf8\x4d\xeb\xd6\xff\x07\xf8\x69\x7c\xbe\xd5\xbd\x1d\ -\xe8\xe9\xee\xd1\xd6\xf7\x5d\xd4\x09\x7a\xbb\xab\xf5\xfa\x0b\x40\ -\x6f\xaf\xd9\xd7\x7a\x83\x05\xf3\x9a\xd7\xd6\xfa\xd4\x0f\x80\x8e\ -\x8d\x55\xad\x48\xa7\x07\xb6\xc1\x27\xd0\xc1\x81\xbb\x5a\xff\xfd\ -\xa5\x6a\x42\xfc\x86\xd6\x57\x0e\xc2\xba\x6c\x7c\xac\xad\xfe\x3a\ -\x90\x4f\xfe\x93\x6d\x47\x5e\x0e\x72\x85\xfc\xb2\xed\x98\xeb\x40\ -\xde\x5c\x9c\x6d\xdb\x56\xee\x06\xfe\xf9\x6c\xdb\x79\x4f\xfd\x0b\ -\xac\xc7\xf5\x6d\xe5\xcf\x80\xfe\xdf\x77\x52\xdb\xd8\x3f\xc3\x7a\ -\x17\x3e\xda\xf6\xa1\x26\xe0\xbf\x4d\x0b\xdb\xae\x7f\xf0\x93\x80\ -\xd7\xa6\xb6\x5b\x33\xa0\x9f\xef\xdb\xd1\x76\xe0\x57\x77\x81\x7c\ -\x38\xb7\xed\xab\xfb\x81\xfe\x6f\x78\xba\xed\xe9\x6f\x03\x9d\xad\ -\x99\xdd\xf6\xe3\x85\x94\x9f\x3e\xd1\xf6\xfb\xba\x05\x00\xd7\xc7\ -\xdb\x7e\xbf\x04\xf4\xe8\xd8\xcf\xdb\xfe\x30\x06\x78\xdd\xff\x81\ -\xb6\x3f\x9d\x07\xeb\x7c\xc9\x4a\x20\x92\x4f\x99\x00\x21\x99\x4b\ -\xd6\x92\xdf\x10\x93\xe4\x88\x4d\x3c\x62\x90\x12\x29\x13\x87\x04\ -\xc4\x6d\x40\x31\x0a\xff\x1a\xd7\xe6\x72\xc6\x76\xd7\x76\x02\xa0\ -\x1c\xd2\xda\xeb\x99\xf9\xe0\x3c\x78\x86\x8f\xaa\x68\x1f\xe7\x42\ -\x1f\x43\xd0\xda\x82\xff\x9b\xd0\x07\xed\x41\xeb\x09\xfe\x56\x4f\ -\x4d\x52\x80\x7f\x45\x32\x88\xef\x2f\x87\x4f\x1f\xde\x2c\xc0\xe8\ -\x0e\x7c\x37\xe0\xdf\x38\xfc\xed\x43\x3b\x0b\x5b\x5b\x12\x8e\x0e\ -\x18\xd3\x37\x4c\xa3\x44\xc7\x35\x02\xd7\x30\x1d\xc3\x1a\xb7\xfd\ -\xc0\x76\x86\x8c\x31\xdb\xb3\x96\x0f\xfa\xa5\x82\xed\x58\x95\xc0\ -\x5c\x00\x60\xe6\xe0\x3f\x83\x03\x45\x41\x76\x01\xac\x12\xe9\xa2\ -\xff\xc9\x81\xda\xe8\x84\xa1\xff\x21\xcf\x2d\x97\xba\xba\xba\x68\ -\x7f\x33\x65\x7f\x03\xee\x06\xfa\x1c\x7b\xbc\x28\x32\x71\x0b\x26\ -\xd2\x01\xff\x5c\x98\xc0\x12\xf8\xee\xc2\xf4\x2e\x80\xa7\x74\xbc\ -\x0e\xfe\xcc\xc7\xb7\x2c\x92\x85\xff\x6c\x78\xee\x20\xf2\xd5\xef\ -\x0a\x55\xb4\x67\x0a\x9d\x3b\x29\x5a\x56\x20\x5a\x82\x61\xcb\xf0\ -\xad\x82\x95\x0d\xac\x9c\xe1\x0e\x5e\x00\x7f\x74\xf8\x4b\xa2\x58\ -\xc2\x19\x55\x9e\xce\xd5\x30\x1d\xb6\x16\x59\x39\x1d\x0a\x90\x03\ -\xdf\x87\x11\x8c\x1c\xae\x51\x81\xbc\x82\xab\x45\xdf\x99\x80\x7f\ -\x59\xf8\x8d\x4e\xda\xc3\xb7\xb3\x00\x5e\x19\xd7\xd9\x02\x80\xd9\ -\x84\x18\x4a\xc2\x08\xf1\x27\x41\x86\x2f\xa7\x77\xf2\xda\x12\x2c\ -\xaa\xe5\x1b\xd9\xb2\xe7\x59\xb0\xf0\x74\x85\x61\xb9\x73\xc1\x30\ -\x4c\x2d\x67\x64\xdd\x82\xeb\xd1\x79\x46\x66\xef\xeb\xd3\x84\x2e\ -\x26\xfa\x83\x89\x82\x85\xd3\x5c\x1a\x9a\x26\x05\x7a\x3d\x62\xd6\ -\x46\x30\x0d\xf8\x55\x4e\x41\x82\x71\x38\xf6\x61\xf4\x70\x20\xb0\ -\xb3\xca\x23\x34\x40\x1f\x1e\x45\x8b\x6c\x5f\xbd\xd6\xcb\xd2\xf7\ -\x1b\xf9\xfb\x5e\x16\x5f\xbc\x80\xf4\x20\xf9\xe8\xfc\x81\x0d\x81\ -\x20\x0d\xf8\x6d\x80\xec\x20\x9b\x91\x97\xe8\x73\xfa\x56\x1e\xf1\ -\x7c\x11\x7e\xef\x84\xef\xfd\x64\x23\xd9\x44\xfa\xe0\x4d\xfd\x2d\ -\x0f\x71\x1f\xc0\x27\xe5\xab\x21\xca\xdb\x8a\x60\x7a\x3c\xcb\x0c\ -\x00\xa3\x40\x19\xa6\x97\xed\x32\x7a\x06\x76\x6c\x46\x0c\x3a\x66\ -\xa9\xd3\xe8\xdf\xb8\xa9\x6f\x80\x7e\xcd\xba\x8e\x1f\x78\xa6\xed\ -\x24\xc0\x3d\x93\xac\x23\xcb\x60\x6c\xc9\xb9\xb2\xf7\x86\x75\xcb\ -\xfa\x25\x17\xb6\xb0\x56\xeb\xd8\x13\x6c\x79\x20\x32\x63\xfa\x49\ -\xfb\x0a\x4b\x01\x46\x67\x4a\x82\x50\x5a\x29\x92\x37\xe1\x0d\xba\ -\x4c\x25\x4e\x5b\x95\x70\x64\x02\x5e\xcb\x38\xff\x43\xc7\x52\x8f\ -\xc4\x92\x51\x2c\x17\x02\xbb\x54\xb0\x96\x31\xc9\x33\xb8\x8c\x89\ -\x99\x74\x88\x4b\x40\xc1\x7c\x00\xda\xc6\x65\xa6\xd3\xcb\x03\x10\ -\x1e\x72\x35\x65\x01\x53\x02\x50\xd7\x63\x7b\x59\x46\x64\xcd\xac\ -\x0f\xf6\x00\xbb\xb8\x27\x01\x8b\xd9\xca\x9d\xa6\xa6\xa6\xb5\xf0\ -\x7b\x18\x47\x49\x1c\xea\x25\x70\x72\x80\x72\x62\x48\x88\x27\x8d\ -\x83\x4f\x53\x98\xcc\xe2\x0c\xa2\x88\x5b\xbb\x79\x40\x31\xb0\x11\ -\x98\xce\x10\x65\x31\x8d\x8d\xe3\xf3\x9f\x0b\xb3\xa1\x33\xf4\x38\ -\x34\x52\x22\xc9\x51\x33\x3d\x05\xd7\xb7\x8c\xcd\x9c\x12\xdb\x78\ -\x17\xf4\xe1\x66\xb1\x10\x67\xe1\x42\x88\x7e\x0c\xd4\x4c\x61\xe9\ -\x76\x21\x60\xd3\xe2\x58\x30\x38\xb5\x1c\x44\xfa\xb4\x61\xfe\x65\ -\xc0\x00\x9d\x75\x4e\x63\xf4\xa3\x71\x08\x26\x90\x51\x54\x0d\x5a\ -\x54\xf2\xe6\x3c\x73\xcc\xa9\x08\xc8\x7c\x90\x40\x94\xf8\x8b\x48\ -\x88\x66\x05\x45\xdc\xbc\xc3\x2a\xba\xa3\x56\x4c\x17\xf7\x5a\x05\ -\xa5\xe4\xce\x27\xef\x86\x86\x36\xae\x47\x92\x26\x66\x9c\x95\xa4\ -\x8b\x0d\xfc\x3d\xbd\x3e\x5e\xc1\xc0\x51\x2a\x39\xef\xb9\xc5\x98\ -\x52\x36\x40\x3a\xc7\xf5\x72\x08\xe4\xcf\x24\x12\xb3\x8b\x53\xf8\ -\x9b\x8b\xc1\x69\x92\x39\x43\x94\x8f\x1a\xbe\xc8\x51\xa0\x56\x64\ -\xab\x22\xed\x9c\x5d\xb4\x1c\xdf\x76\x9d\xa9\xc5\x42\x94\xe2\x4d\ -\xf8\x63\x08\x5a\x07\x1a\x7d\xf4\x8a\xee\xb8\x3e\xe9\x61\xf8\x50\ -\x46\x99\x7c\xa1\x62\xa3\x56\x40\x9a\x05\xeb\x5d\x66\x92\x41\x6b\ -\xea\x8e\x39\x43\x9e\x99\xd3\x19\x43\x3e\xc3\xa6\xd7\x22\x99\xf8\ -\xb8\x0a\x45\xb4\x40\x1c\xae\xf8\xa7\xa9\xc6\x91\x80\x9c\xc4\x16\ -\x36\xf6\xcc\x04\x79\x27\x27\x3e\xb1\x5e\x8c\x02\xd8\xda\x28\x41\ -\xb2\x7e\xfd\x78\xa9\xe0\xe6\xac\x44\x6b\xc7\x37\x80\x9c\x00\xa5\ -\x76\x11\x24\xb5\x27\x1e\x76\x52\xf2\xf3\xcb\x83\x80\x77\x40\x74\ -\xde\xcc\x5a\x7e\xc5\x49\x37\x93\x5e\xc9\xd5\x6a\x89\xeb\xe1\xd5\ -\x31\x20\x66\x4d\x96\xf3\x27\xd8\xa8\x40\xb6\x73\xec\x78\x6f\x0b\ -\x3f\x82\xee\xa9\x99\x75\x01\xfe\xc5\x18\x55\x03\x49\xb3\x50\x97\ -\x6d\x2f\x07\x15\xb0\xe0\x82\x52\x37\x38\x84\x86\x3f\x6c\x59\x41\ -\x57\x05\xd0\x9b\x41\xe8\xe4\xb8\xa4\x50\xd4\x51\xb3\x3e\x67\x23\ -\x21\x66\x58\x0b\xfa\x15\x5f\xef\xd4\x5e\x17\xa6\xa1\x3e\x4f\x61\ -\xfa\xd9\x64\x54\x43\xdf\x91\xb4\x3d\x03\x15\x56\xc0\x06\xe9\xc5\ -\x00\x4d\x1a\x61\x3e\xf0\x24\xc5\xa3\x2e\x05\xe3\x82\xbd\xa9\xcf\ -\x76\x6c\x7f\xd8\x10\x12\x85\x5b\x60\xec\xa9\x94\xa8\xa7\x46\xfa\ -\x52\x18\xd6\xc5\xbb\x8f\xbf\x52\x5a\x53\xca\xa4\xa0\x8d\xd5\xce\ -\x7a\x45\x06\xe7\x76\x67\x30\xec\x96\x03\x23\x0b\xe2\x9b\x22\x98\ -\xa1\x2a\x19\x84\x2b\x13\xc4\x9a\x3e\x38\x5b\xe0\x95\x11\x3b\xe7\ -\xef\x67\xf7\x9d\xac\x84\xd5\x4a\x6e\xca\xa4\x37\x63\xf8\x5a\xc9\ -\xc9\x65\x00\xbc\xe8\xca\xd4\x08\x65\x1b\x7f\x79\x0b\x40\x3f\x4a\ -\x91\xac\x5e\xde\x02\xba\x43\x7b\x99\x7e\xc5\x97\x9f\x81\x97\xa9\ -\xd2\x1d\x7d\x5b\x12\x27\xe0\x2a\xed\xef\x8e\xde\x0a\xfa\x84\x4a\ -\xce\x12\x9a\x5e\x6a\xca\x7b\xb7\xa0\xba\x4c\x64\xdb\x41\x2b\x18\ -\xb3\x2c\xc7\x58\xc9\x74\xa9\x3f\x0d\x2d\x92\x75\x4b\x13\x49\x88\ -\x9c\x07\x0c\x7b\x21\xda\x02\x39\xae\xc1\xcd\xb8\x91\xb9\x2d\x9f\ -\xf7\xad\x40\x33\xb2\xd8\x03\xec\xe0\x6b\x09\x04\x6c\x25\x74\x19\ -\x20\xa6\xcd\xc9\x25\xc2\x7f\x2b\xe6\x37\xb2\x59\x25\xc8\xa1\x43\ -\xc0\x73\x1c\x51\x97\xc7\xbc\xb8\x12\x7a\xc4\xaf\x00\xa0\x94\x34\ -\x85\x6a\x1b\x82\x5f\x0b\x08\xe8\xdf\x8f\xcb\xdf\xa5\xb8\xdc\xb3\ -\x86\xca\x05\xd3\x03\x8a\x2a\x4c\x0c\xa5\x31\x4c\x34\x45\xb1\x9d\ -\xb5\xe1\xce\xde\xf6\xf0\x74\x94\x72\xe4\xaf\x55\x68\x58\x88\xe1\ -\xc5\x43\x96\xa5\x36\xb4\xc3\xb1\xc1\x6c\x52\xc6\xbc\x0c\x6f\xde\ -\xa1\xb1\xad\x04\x6a\x49\x5c\xce\x79\xb0\xd2\xe0\x56\x44\x5d\x0f\ -\xcd\x14\xd8\x21\xde\x40\xc0\x67\xa3\xe9\x14\x01\x54\x19\x50\xf2\ -\xe5\x8a\x1d\x64\xc8\x06\x24\x51\x1d\xae\xba\x1d\x6e\x00\x70\x69\ -\x24\xc4\x1e\x60\x83\xaf\xcb\x06\x87\x22\xf3\xfe\xeb\x78\x8b\x2d\ -\xa7\xb0\x8c\x43\xfc\x26\x27\xba\x83\xcd\x2b\x59\xd2\xa5\x65\xb8\ -\xac\x72\x1a\xc3\x7c\xa7\x21\xad\x15\x03\x37\x59\xee\xc7\x28\x4c\ -\xd7\xf6\x67\x4d\xb6\x38\x4d\xac\x0d\x7e\xc7\x26\x3f\x0c\x35\x39\ -\x34\xfd\xc2\x6c\x63\xdd\x91\xd2\x1d\xac\x41\x6a\xb3\xc2\x6f\xff\ -\x9d\xf2\xee\x5c\x9c\x70\x05\x55\xc3\xdc\x34\x63\xd0\x04\xf7\x18\ -\xd9\xe3\x10\x64\x60\x0c\xaf\x73\x61\x1e\x02\x63\x01\xd1\x62\xab\ -\xca\x7b\xed\x67\xde\x8e\x8c\x41\x1e\xc6\xfb\xc0\xc7\x2a\x08\xe9\ -\x84\x7a\xf2\xb9\x66\xd1\x75\x8b\x78\x3e\x86\xd6\xe8\x30\x31\xf0\ -\xff\xcc\x4d\x37\xd1\x4b\x13\xf8\x61\x96\x00\xeb\xc3\xe7\xef\xd9\ -\xf8\x57\x1c\xbe\x35\x0c\x10\xa0\xb8\x42\x41\xe2\x8a\xda\x7b\x0c\ -\x8b\x66\x11\xb0\x65\xd2\xe0\x1f\xbc\x41\x31\x6b\xfb\x53\x4e\x25\ -\xaf\x4d\x45\x91\x91\x22\x9a\x02\xaa\x4f\xe5\x95\x07\xb8\xa4\x83\ -\x18\xbf\x72\x2b\x32\x1e\x8d\xb1\xb8\x38\x4d\xfa\xfe\x2b\x1a\xe3\ -\x75\xf6\x0b\x87\x72\xcc\xf5\x46\xa8\x7d\x5a\x2a\x98\x60\xb5\xe6\ -\xc1\x09\x1a\xb2\xdc\xa2\x15\x78\x13\x8c\xb1\xb8\xdf\x18\x82\x7b\ -\x3b\x7d\x17\xe1\x6e\x4f\x84\xdb\xd3\x61\x56\xe6\xb8\xd6\x78\x92\ -\x2e\x07\xa4\x2a\x08\x78\x58\xb8\x1f\xd6\xc2\x84\x0e\x99\x95\xd6\ -\x0b\xff\x1f\xc5\x60\xcc\x18\xe7\xc7\x7c\x88\x0b\x03\x74\x65\x23\ -\x34\x20\x81\x58\x2a\x44\x7e\xff\xb0\x59\xb2\x8c\x95\xbd\xc6\xa8\ -\x6d\x8d\x81\x33\x94\x4f\x0c\x0b\x0b\x18\xe9\xcb\x2b\x7b\x77\xc2\ -\xab\xdc\x60\xaa\x08\x93\x1c\xa9\x25\x34\xc2\x24\x9d\x6d\x4c\x30\ -\x9e\xd8\x6a\x07\x68\x16\xd9\xe4\x0d\xf8\x36\x1d\xbd\xb6\x48\x8f\ -\xdb\x3a\x0e\x15\x83\xb1\x70\x83\x66\x07\x0e\x58\xe3\x01\xd7\x45\ -\x03\x18\xc5\xd1\x03\x17\x35\xf4\xd7\xa4\x97\xbb\x31\xd2\xe0\x00\ -\x79\x95\x79\xf8\x94\x06\x5e\x5d\xae\x9e\x19\x99\x66\xf1\x0d\x26\ -\x9d\xca\x9c\x44\x60\x32\xca\xe7\x1b\x70\x87\x40\x11\x72\xf1\x51\ -\xce\x02\x94\xc6\x16\x97\x85\x1b\xe6\xf3\xf1\xf0\x8d\x1e\xfe\x02\ -\x9d\x07\x7d\x01\x21\x08\x22\x10\x08\x5f\x33\x25\x14\x21\x34\x0a\ -\xe9\x5e\x82\xef\x6f\x60\x20\xab\x98\x28\xef\x95\x67\xbd\x9c\x41\ -\xc6\x44\xa7\x0e\x1f\xce\x00\x39\xc9\x01\x5c\x49\x6d\x96\x6e\x4e\ -\x1d\xb0\x04\x2e\x30\xee\x10\x52\xb3\x80\x3d\x40\xd9\xce\x02\x8c\ -\x5b\x70\x76\x2a\xb8\x36\x5b\xe1\x30\xb0\x9d\xb2\x25\x11\x38\x37\ -\x32\x18\xfe\x2a\x07\xda\x1d\x1a\x48\x88\x3c\x0b\xa9\xac\xc2\x90\ -\x92\xda\x0c\x74\xe7\xc6\x51\x7c\xb3\xc0\x4f\x91\x47\x37\x75\x04\ -\x75\x46\x10\xa4\xa0\x53\xc8\xc9\xba\xc5\xa2\xe9\xe4\x18\x76\x26\ -\x07\xf8\x71\xd0\x7d\xcc\x83\xf0\x50\x2b\xd3\x60\xa4\x3d\xc9\xaa\ -\x53\x00\x87\x31\x26\x62\x27\x46\x5c\xb2\x09\x1a\x7c\x32\xff\xb0\ -\xc8\x91\x50\xd0\xc6\x88\x86\x45\x19\x12\x74\xe7\xdd\xd7\x44\xa1\ -\x1e\xa1\xea\xeb\x1f\x33\x4b\xbe\x91\xb3\x7d\x10\xbc\x13\x46\x91\ -\x62\x25\x41\x06\x49\x6f\x8f\x06\x48\xf3\x1e\x55\x2d\x34\x95\x95\ -\x2f\x98\x01\xf5\xc8\x51\x46\x1d\xa9\xa3\xad\x97\x75\x28\xb1\x76\ -\x12\xd8\x01\x05\x8e\x35\xa7\x02\x97\xea\x98\x8a\x72\xe8\xe1\x9c\ -\xba\x74\x40\xa7\x1c\x74\x31\x37\x8a\x29\xad\x08\xd1\x20\x52\x93\ -\x2c\x3a\x9c\x0b\x79\xf8\x75\x03\x9e\x5d\xb4\xc6\x35\xd3\x8d\x3d\ -\xa0\x9d\x55\xcd\x02\x42\xf5\x90\x1f\xd9\xea\x79\x91\x8e\x74\xd2\ -\x9d\x5c\x0b\x74\x46\xda\x53\x69\x90\xe3\xc4\xef\x73\xeb\xa9\xc0\ -\xc9\xdc\xc4\x48\x4f\xd4\x5e\xf6\x11\x87\x25\x1e\x87\xd4\xed\x31\ -\x5d\xc6\x98\xd8\x17\x83\xcb\xc5\xdf\xca\x18\x33\x62\xd4\x14\x8d\ -\x11\x0b\x98\xd8\xbb\x0e\x7e\x2b\x22\x65\xe9\x56\x1c\xed\x11\xc3\ -\x22\x21\x6d\xf6\x21\x8a\x27\x9f\x46\x2e\x81\x99\x2c\x27\x39\xbb\ -\xdb\xc9\x7f\xf7\xca\x34\x20\x4a\x83\x51\xb0\x9e\x18\xe0\xe4\x1a\ -\x81\xaa\x03\x5f\x18\x73\xd2\x92\xf3\xd1\x8a\xe3\x59\x4c\x1e\x76\ -\x36\x58\x02\xd5\x71\xbd\xa2\x59\x60\xa6\x9e\xed\x8c\x5a\x5e\x28\ -\xf9\xa2\xd6\x0e\xa8\xaf\x17\xb1\x38\xcc\xf1\xe9\x49\x6e\x15\x09\ -\xba\x22\xce\xba\x52\xd4\xfc\xb0\x73\x9c\x9c\x6b\x14\x4c\x3f\xd0\ -\x03\xdf\x3c\x33\x40\x7f\x93\x81\xa3\xf1\xc8\x48\xa9\xc6\x21\x2a\ -\x4d\xfd\xf6\xd3\x39\xab\x29\x3c\x22\x9d\x43\x21\xc6\x44\x8e\xc2\ -\x5c\xbe\x62\xa2\x27\x69\x3e\x5f\x27\x67\x71\x4f\xe1\x50\x7d\x0f\ -\x15\x2d\x76\x65\xd4\x9c\x51\xe9\x28\x4f\x65\x05\xa1\xb8\x99\xd0\ -\x34\x2e\x4a\x0a\xf1\x4c\x44\x3b\xc3\xbd\x8a\x88\xfb\x85\x5a\x44\ -\xbe\xcc\x23\xff\xf1\x68\xfc\x3f\x9c\xe5\x22\x39\x55\x0c\xc5\xbb\ -\x8e\x85\x44\x0a\xb4\x87\xc4\x84\x41\x53\x78\x89\x0a\x3d\x24\xc3\ -\xbc\x5d\x28\xc0\x77\x24\x5a\x7c\xb3\xec\xd8\x81\xa5\xa2\xf4\x3c\ -\xa2\x70\x4e\x49\xc5\xe8\x67\x02\xeb\x94\xe5\x52\xeb\xd6\x51\x3d\ -\x7f\xad\x42\xc3\xdb\x63\xa1\x88\x28\x66\x04\xd5\xc4\xd3\xcc\xff\ -\x55\x01\xda\x33\x2a\xa6\x9c\x29\xca\xa6\x15\xa7\xdd\x05\x0d\x38\ -\xc2\x7a\xc2\xf3\x54\x26\x20\x7d\x27\xa9\x49\x2f\x6f\xc2\x04\x93\ -\x2f\xcd\x2a\x5d\x6d\x46\x55\x24\xad\x02\x59\x97\x58\x0f\xb0\xb0\ -\x47\x2c\xbf\x50\x7a\x74\x20\xd4\x77\xeb\x54\xa1\xc0\xe1\x0a\x86\ -\x01\x57\xcf\x95\xb7\xa3\xa6\x0b\x6b\xe3\x4a\x43\xb5\x61\xcf\x80\ -\x91\x34\x1d\xb7\x72\x15\xca\x15\xa7\xa2\xa3\xb5\x85\x80\xea\x43\ -\xda\xf8\x1d\x1b\xca\x76\x77\x77\xaf\x6d\x16\xdc\x21\xf8\x2c\x0c\ -\xf5\x5b\x01\x4d\x6c\xfa\xd8\x29\x76\x73\x7a\x44\x13\x33\xee\xeb\ -\x27\x3b\xc9\x06\xf8\xdc\x8e\x4f\xc4\xaf\x3e\xe7\xcb\x2c\x3e\x45\ -\xce\x96\xc3\x1e\x03\xc3\x5a\x9e\x03\xcb\x6f\xf4\xef\xdc\x60\x6c\ -\x37\x03\xfa\xd5\x37\x0a\x6e\x56\x7a\x6b\x29\xc0\xd9\x8b\xe0\x8c\ -\xc1\x00\x13\x5c\x94\x30\xd5\x26\x14\x51\xd4\x85\xee\xe0\x81\x5c\ -\xea\x75\x16\xb8\x68\x14\x2d\x98\x41\x61\x90\x11\x78\x3e\x41\x96\ -\xa8\xe4\xd3\xda\xc2\x98\x39\xe1\x23\x19\x52\x6c\x0b\xa6\xef\x00\ -\x6b\xc2\x1c\x04\x2d\x84\x3f\x00\x0a\x8d\x11\x6b\x62\x49\x4a\xc0\ -\x33\x58\x31\x43\x2d\x3f\x55\x73\x53\xbb\xd6\x83\x26\x29\x3b\x68\ -\x07\xa2\x30\x89\xc8\xe4\xeb\x8a\xd5\xc6\xf8\xa2\x41\x56\x2b\x9f\ -\x75\x9d\x99\x1d\xf1\x41\x9c\x0f\x1b\xab\xff\x66\xdd\xaf\x49\xea\ -\x7e\xcd\xdf\xac\xfb\x53\x92\xba\x3f\x25\x65\xf7\x0f\x27\x38\xf4\ -\xbf\x90\x1a\xd0\x44\xc2\x28\x69\x1e\x14\x65\x7a\x83\x97\xd0\x30\ -\x8b\x8b\x59\x54\x61\x2d\x5a\xe0\x96\xf0\x41\x2e\x59\x19\x41\x49\ -\x4d\x01\xdf\x56\x81\x30\x59\x42\x58\x71\x08\xb3\xec\x7f\x21\xf3\ -\xe9\x26\xfe\x65\xf3\xfc\x32\x33\x29\x73\xd8\xae\x4b\x93\x88\xc3\ -\x56\x76\x84\x05\x5b\xec\xbc\x31\xe1\x96\x8d\x31\x93\x16\xff\xd1\ -\x30\x3e\x08\x4b\x20\xba\x55\xbd\x4c\x61\x60\xad\xdb\xa0\x65\xd8\ -\xc5\x92\xeb\x51\x5d\x14\xb8\x6e\x57\x4a\xf4\x7c\x1b\x7c\x21\x0a\ -\xb4\x98\xd8\xe4\x68\x49\x46\x05\x53\xa4\x83\xf8\x17\x7b\xaa\x0c\ -\x50\x66\x00\x2a\x11\xd6\x21\xdb\x31\x3f\xcb\x46\xd9\x7a\x11\x47\ -\x09\x53\x4c\x42\x4d\x2d\x95\x45\x83\xc9\x08\x53\xd5\x37\x12\xc1\ -\x12\x7d\xfd\x93\xa0\xcf\x71\x9d\x65\x0e\x78\x1e\x39\x63\x10\x64\ -\xcc\x08\x60\x72\xd0\x1a\xb2\x1d\x87\xd5\x6d\xd0\xe2\x3a\x63\x69\ -\x12\x4e\x53\xa2\x74\x16\x28\x91\x57\x08\x2b\x47\x62\xbe\x95\x62\ -\xbf\x06\x56\xc8\x93\x9a\xf7\xe2\x7d\xad\x89\xf5\x95\x96\xd1\xe2\ -\x7d\x9d\x12\xeb\x2b\x2d\x57\x9d\x8e\x8a\x52\x15\x3e\xd2\xc5\x1e\ -\x92\xd6\x9a\x21\x43\x3e\x15\x8a\x27\xe5\xb8\x47\xf5\x60\x0d\x63\ -\xd1\x2c\x95\x10\xc7\x68\x4e\x62\x85\x63\x4a\x40\x56\xf2\x72\xc3\ -\x61\x9e\x6a\x53\xa6\x0c\x0b\x66\x85\x83\x26\x08\xb0\x1c\x7c\x96\ -\x1a\x9c\x2e\x3d\xd8\x64\x56\xca\x51\xe7\x71\x3b\x41\x77\x8f\xa2\ -\xda\xb4\xa5\x47\x18\x27\xd3\xd0\xa9\x73\x43\x1d\x27\x45\x98\x9a\ -\xf5\x28\x4b\xca\x5e\xbb\x42\xab\xa5\x7b\x08\xca\xcb\x4b\x1a\x6b\ -\x56\x28\x0a\x84\xe5\xa6\xa9\xe9\x63\x6b\x88\xed\xd9\x98\x7a\x55\ -\x6f\xca\x78\x5a\x08\x02\x0c\x3a\x1b\x94\x75\x53\x82\x71\xa2\x34\ -\x7d\x93\xea\xf6\x84\x69\x5a\x04\xc9\xc1\xcc\x52\x0a\x8e\xaf\x11\ -\x27\x1a\xa5\x34\xf6\x6d\xd2\x00\xb2\x9d\xd5\x23\xa9\xa9\xf0\xbe\ -\x8d\x0b\x51\x56\x27\xe3\xcb\x79\xe7\xa5\x57\xcc\x8c\x93\x5e\xb2\ -\x9b\xf4\x29\xbc\xf7\xee\xee\xa3\x21\xa5\xa2\x09\x6e\x56\x89\x4e\ -\x3d\xed\x88\x1d\xa1\x95\x2e\xe1\xe4\x73\x38\x65\xbd\x22\x44\xf7\ -\xf2\x5a\x7a\xad\xbc\x09\x26\xf7\xb4\x96\xd7\xe1\xa6\x5f\x99\x6b\ -\xed\xca\x03\x99\x24\x29\x28\x19\x88\xa8\x2c\x7e\x9b\xd0\x14\x6a\ -\x0e\xa5\xbc\x85\x44\x21\xd1\x26\x81\x3d\x4e\x00\x3b\x6c\xd9\x43\ -\xc3\x01\x86\xdd\x02\x6b\x9c\xe6\x25\xc0\xa8\x96\x75\x68\x69\xb1\ -\xd5\x0d\xd3\x98\xac\xc0\x3b\x0d\xfe\x0e\x13\x20\x4d\x57\x72\x9d\ -\x09\x4e\x52\xb8\xe0\x49\x84\xd5\x58\x39\x76\x61\x2a\xcc\x4a\x10\ -\xe6\x08\x10\x02\xab\x58\x2a\x50\x8a\xc5\xe2\xa7\xd4\xac\xda\x87\ -\x1a\x59\x14\x33\x4c\xbe\x96\x39\x1e\x86\x90\x2b\x18\x47\x04\x5d\ -\x10\x58\x19\x27\x3d\x00\xd3\x21\xa6\xca\x00\x1c\x1e\x02\x80\x51\ -\x48\x6a\x10\xb6\xa7\xc8\x48\x4d\x4d\x0c\x47\x08\x10\x42\x49\xa8\ -\x94\x40\x6c\x8d\xd4\xe2\xe7\xb8\xe4\x4c\x60\x08\xce\x34\x25\x2d\ -\xa2\x22\xe4\x0a\xb3\x74\x87\x35\xf2\x38\x46\xd6\x46\xfa\xc6\x62\ -\x63\xb3\x65\xe6\x2c\x0f\x4c\x48\xcf\x1d\x33\x7c\x51\xcb\x9f\x02\ -\xbc\xb3\x00\x40\x1b\x6d\xf3\x82\x46\xb1\xac\xaa\xc1\xd6\x7c\x65\ -\xa5\x5e\xa6\xe6\xe7\x79\x1a\x68\x25\xcf\xca\xda\xf4\x4f\xa3\x60\ -\x8d\x5a\x69\x7d\x9f\x56\x58\x39\x95\x80\x56\x86\x56\x6d\xaf\x1b\ -\xa4\xb6\xb2\xc2\x9d\xac\x09\x77\x92\xd6\xbc\x0a\x77\x72\x4a\xb8\ -\x93\xb4\x76\x55\x07\x68\x02\x4a\x76\x79\x74\xcf\x6d\x99\x1f\x10\ -\xf1\x5b\x19\xb5\x57\xd9\x12\x6c\x4c\xc3\x4e\x96\x47\xbd\x01\x19\ -\xd0\x4e\x31\xda\x46\xa0\xb8\x71\x69\x52\x33\x9f\x25\xee\x28\x8b\ -\x98\x3f\xd5\x2b\x13\x21\x48\x58\x7c\x52\x5f\xd0\x63\xd7\x8f\x53\ -\x7b\xd9\x00\xd7\x44\xf8\xc6\xe0\xa9\xd0\x2a\x1c\x06\x9b\x45\x2b\ -\x0a\x53\x42\x77\x32\x06\xdd\x0b\x48\xd1\x95\x4a\xef\x4b\x9a\x4d\ -\x93\xe7\x30\x6b\x15\x98\x7d\xb6\x96\xd0\x1e\x9c\x30\x72\x8c\x3d\ -\x53\x02\xd0\xc7\x8d\xb1\x3c\x1a\xb7\x4c\x3c\x29\x8f\x88\xd5\xfb\ -\x5b\xf8\x54\x71\x44\x0f\x26\xd7\x59\xa1\xd8\x45\x11\xe9\x30\x67\ -\x83\xe5\x58\x9e\x59\x30\xd8\x92\x89\x01\x53\x42\x73\x6c\x82\x31\ -\x11\x86\x41\x5f\x88\x99\x62\x2c\x7f\x7a\xa3\x74\xf0\xdc\x58\xd8\ -\x44\x2b\xf1\xc4\xd4\x10\x8a\xa6\xc1\x50\xa8\x62\xe6\x86\x82\x3b\ -\x08\x03\xd1\xfa\x88\xe9\x10\xdf\x5c\xb2\x01\x6d\xae\x1c\xfa\x78\ -\x25\x8e\x5b\x87\x0c\x29\x53\x77\x83\x67\xe7\x0c\xbf\x64\x66\x79\ -\x11\x72\x8a\x5e\x57\x60\xaf\x6c\x6b\x1b\x93\x42\x13\x3c\x96\x27\ -\xd8\xc9\x95\xbe\x6a\x96\x8c\x68\x18\x9b\x8b\xc5\x0b\x46\xc1\x9c\ -\xb0\x3c\x1e\xc6\x65\xee\x61\xba\x91\xab\xe6\x01\x3b\x59\x32\x26\ -\x48\x21\x60\xa1\x63\x87\xcf\x8f\xc9\xc9\x3c\x0a\x6e\x93\x4b\x46\ -\x51\x13\x46\x89\x58\xec\x26\x63\x02\x9d\xc2\xca\xc2\xa4\x2a\xa4\ -\x96\x47\xd5\x60\x85\x82\xdb\xe1\x37\x4f\x45\x3c\xaa\xb0\xdb\xe9\ -\x92\x35\xd8\x5b\x3c\xf4\x26\x53\x4c\x26\xcf\x78\x32\x28\x07\x79\ -\x90\x31\x87\x6d\xd4\x66\x41\x95\x8c\x0a\x78\x92\x80\x32\x63\x0e\ -\xcd\x56\x25\xac\x58\x6f\x59\x2c\x4a\x09\x43\xa1\x70\x7c\xdd\x46\ -\xcb\xb3\xd0\x19\xcf\x9a\x0e\xac\x2c\x48\xfc\xfc\x04\xee\x20\xa0\ -\x65\x6a\x2e\x2d\xd1\x00\xbb\x01\x5c\x26\xaa\x3b\x69\x30\x90\xfa\ -\x64\xbe\xfe\xf0\xd4\x12\x0b\x0f\x9e\x4e\x79\x19\x1e\xa1\x71\x0c\ -\x5e\x3d\x58\xca\xb4\x4b\xf0\xd8\xcd\x5c\x8e\xb9\x92\x18\x9e\x0f\ -\xc0\x30\x34\xbd\x1c\x67\x39\x78\x2d\x3b\x6c\xf0\x2e\xd2\xb2\xc4\ -\x4e\xb2\x09\x2b\x32\xb2\x88\x86\x2c\x06\x05\x73\x18\xe7\x36\xb9\ -\x4f\xc3\x88\x78\x8c\x9b\x6d\x06\xba\x9e\x25\xe9\x76\x8c\x61\x3b\ -\xa6\x1a\x29\xba\xc6\x22\x64\x7e\xfc\xa6\xbc\x91\xa5\xd1\x0a\x2b\ -\xd7\x09\xb8\x18\xa2\x44\x3f\x46\x05\x17\x75\x8a\x4d\xcf\x18\x1b\ -\xb6\x1c\xcc\xad\xa4\xe7\x82\x97\x81\x66\x6c\xa2\xa7\x79\x92\x13\ -\x2b\x26\x4e\xa3\x0f\xe9\xd0\x02\xd9\xb5\x16\x15\x80\x50\x3b\x3c\ -\xcf\x80\xed\xcb\x48\x3f\x49\x22\x98\x52\xa2\x4d\x58\x75\x6d\x4e\ -\xda\x91\x2a\xb5\x12\x8e\x97\xb3\x24\xc2\x7a\xce\x11\xf4\x49\xa7\ -\x84\xd3\xe5\x26\x8d\x25\x2d\x30\x17\x5d\x24\xb5\x19\x25\xc0\x78\ -\x11\x8b\x02\x85\x37\xae\x5a\x3a\x12\xf3\x9e\x65\x65\x4d\x8e\x45\ -\x5a\xf8\x03\xd4\x70\x01\x66\x13\xb2\xf0\xff\xac\x9d\xd3\x36\x59\ -\x31\x4e\xc7\xc4\x4c\x97\xb1\xce\x1a\x33\x3d\xab\x93\x85\x8d\x28\ -\x3d\x05\xe6\x88\x45\x6b\x8a\x86\x81\x0e\xf9\x76\xd8\x14\xe8\xbf\ -\x87\x53\x8c\xaa\xb9\xb2\x39\xaa\xe2\x14\x94\x5c\xdf\x95\xcc\xde\ -\x2a\x8b\xab\x53\xdb\x20\x11\x39\x6f\xa1\xc9\x19\xf3\x8a\x38\x64\ -\x2e\x41\x7b\x2b\x96\x7c\xf7\xa6\x3c\x8f\x92\xf9\x1a\x15\x6a\x6a\ -\x53\x63\x3e\x8c\x36\x32\xac\x02\xa3\x59\xe3\x3c\x34\x06\x1a\x7e\ -\x55\x4e\x2a\xf9\xb4\xf2\x72\x69\x88\x46\xdd\x10\xb5\xb2\x55\xcf\ -\xf2\x70\x12\xa3\x90\x4a\x85\x30\xbc\x00\x90\x88\xd4\x66\x89\xd3\ -\x19\xa5\xae\x51\x49\xbf\x7a\xc9\x62\x96\xd3\x95\xa3\x05\xab\x5c\ -\xb4\xf7\x5d\xf2\x2e\xf9\xae\x78\x62\xf0\x77\x99\x96\xed\x24\xe1\ -\x04\xa3\xea\x47\xc4\x3c\x19\x7d\x7a\x7c\x51\x8a\x48\xe7\x17\x71\ -\x38\x44\x2e\xa9\xd2\x7c\xda\x79\xd4\x74\x59\x68\x66\xed\x72\xb1\ -\xdc\xa4\xc5\x92\x8a\x57\xae\xcc\x88\x55\x0a\x0c\x33\xeb\xb9\xbe\ -\x2f\x0a\x52\x3a\x0d\x17\xe4\xa1\x37\x66\xfb\x96\xac\x51\xe1\x52\ -\x86\xa7\x34\x02\xd3\xa3\x66\xa4\xe1\xb8\xcb\xa6\xab\xca\xdf\x9c\ -\x64\x29\x2b\x65\x74\x75\x44\x46\x45\x8a\x29\x6b\x18\x59\xbe\x96\ -\x21\xce\x0b\x59\x83\x0c\xe5\x9d\x95\x6c\xc0\xd8\x42\x9a\x09\x0b\ -\x99\x3c\x0e\x5b\x56\x97\x84\x2b\x64\x54\xec\x26\x24\xd0\xe4\xd2\ -\xe4\x93\x96\x46\xd5\x52\x2a\x71\x0e\xdc\xc2\xb3\xbf\xf0\x17\x37\ -\x48\xbb\x8c\x6d\x62\x75\xa8\xf0\xb1\x26\xa2\x2d\x64\xb5\x4c\x4a\ -\xe6\x9a\x7f\x88\x2b\xa2\xe7\x3d\xa2\xc4\x1c\xde\x5a\x7c\x50\x93\ -\x52\x1e\x67\xa1\x68\x1d\x52\x6c\x03\x25\x61\x9b\x99\x6d\x62\xc9\ -\x76\xc2\x49\x64\x35\x08\xac\x76\x98\xc1\xee\x24\xc0\x14\x87\xc1\ -\xe7\xf1\x2e\x56\x95\xa2\x98\x5a\x88\x01\x61\x2e\xab\xcc\xb5\x52\ -\x1a\xef\x4f\x5a\x33\x4c\x15\xe8\x8c\xc1\x73\x7d\x72\x6b\xa7\x5c\ -\x54\xaa\x14\x84\x62\xee\x32\xa0\x2f\xc7\x0d\xb4\xf6\x83\x2c\x1d\ -\x88\xb1\x65\xd7\x29\x4c\x30\x45\x0e\x6e\xae\x8f\xfb\xa7\x68\x4a\ -\x3b\xad\x42\x69\x07\x85\xa2\xe7\x3e\x28\xb9\x2f\x0d\x67\x5c\xe4\ -\xa4\x5a\x37\x61\xca\xc2\x58\x3a\x1d\xeb\x15\xbc\x8b\xf8\x08\xa6\ -\x96\xdc\xda\x46\xad\x03\x65\xf3\xf3\x31\xb6\xf5\xac\x65\xc9\xa8\ -\xd4\x01\xd1\xf8\x28\x4a\x5e\x33\x85\xa7\x79\x38\xb1\x39\x81\x71\ -\xee\x96\x53\x87\x5f\x97\x46\x46\x53\xbe\x9b\x28\x13\x93\xe1\x16\ -\xe5\x73\xf0\x91\xa6\x13\x19\xe9\x4e\x98\x55\x3c\xc2\x39\x79\x24\ -\xe4\x68\x3e\xee\xdb\x88\x66\xc6\x89\x64\x79\xc8\xbf\xd7\x4b\x46\ -\x5a\xd8\x70\xcb\x99\xbb\x9e\x3a\x9a\x9e\x2e\x02\xa4\xc2\x16\x7a\ -\xd1\xc5\xdc\x4d\x0e\xa6\xf9\x0b\x87\x18\xe9\x99\x4f\xce\x91\x36\ -\x68\xe5\x3a\xf0\x16\x5a\x9a\x23\x2b\xbe\xa7\x41\x28\x17\x71\xa7\ -\xdd\x42\xd7\x86\xca\xb3\x0e\xa2\x6a\xd7\x0c\x78\xa3\x1f\x98\x40\ -\x95\x02\x1c\xbe\xd9\x02\x87\xa2\x63\x53\xff\x36\xe9\x64\xa4\x4d\ -\xf8\x1b\x98\x73\x65\x39\x23\xb1\xdb\x9c\x89\x4b\x96\xf9\x9e\x50\ -\x7c\xb6\x85\xa6\x8f\xb0\x30\xd2\x00\x54\xa5\x9e\xd0\x3d\x72\x04\ -\xbd\xff\xa8\xc9\x28\xdc\x11\x47\x9a\xaa\xcc\x34\xf5\xb8\x10\x0e\ -\xfb\xac\xc3\xd2\xbb\xa5\xe1\xf2\x31\xa9\x4e\x27\x50\x08\x5f\x88\ -\xc2\xd7\xe3\x23\x0d\xe2\xca\x8c\xa1\x57\xe1\xf0\x37\xc3\xd0\x28\ -\x21\xfc\x6e\x3a\x47\x36\x45\x21\x36\x59\xa1\x19\x48\x66\x90\xc8\ -\x5e\x97\xd1\xcf\xfd\xc4\x61\xea\x3c\x0e\xbb\x63\x06\x58\x2f\x13\ -\x86\x7f\x61\xd9\xa4\xd5\x54\xa2\xb6\xa6\x28\xba\x49\x2b\x54\xbb\ -\x01\x49\x07\x65\x65\xb4\x20\xe8\x68\x45\x9d\x72\x64\xb4\xc3\x01\ -\x54\xa6\x66\x8b\x39\x6e\xb0\xd2\x1a\xa3\x5f\x15\xf4\xa5\x0a\x17\ -\x6e\xe5\x76\x7d\x39\xc4\x26\x35\x5b\xdd\xd4\x11\x63\x23\xdc\x07\ -\xd2\x2c\xd5\x8a\x25\x74\xc5\x5c\x8d\x5a\x5b\x69\xaf\x46\x47\xde\ -\xf4\x03\xcb\x0f\xd2\x12\xea\x5f\x30\x8b\x27\xaa\x37\xa9\xff\xc0\ -\xac\xa6\x3c\x67\x6f\x61\x80\x4f\x48\x0f\x25\xec\xc7\x74\x12\x15\ -\x3c\x10\x06\xad\x0a\x5c\x89\xca\x51\xbd\xbe\xb5\x0b\x39\x2d\xec\ -\x3b\xd1\x76\x22\x70\x51\xd9\x93\x12\xe3\x88\x3d\x48\xc9\x7b\x66\ -\x74\xf2\x8f\xd7\xd6\xda\x3c\x17\x69\xa1\x45\xa4\x48\xf4\xd2\xad\ -\x58\x1f\x5a\x98\x00\xcf\x28\x0f\x42\x0c\x4d\x6e\xcd\x14\x40\x9b\ -\x8d\x3e\xa4\x87\xf5\x0c\x59\x81\xac\x0a\x44\xab\x00\x2d\x0c\x96\ -\xc6\x0b\x19\x1a\xb4\x0d\xee\x44\x0a\x59\x89\x83\x5a\x4d\xa1\xed\ -\xc0\x72\x99\xb9\xb4\x04\x9d\x3e\xdd\x18\xd6\xe6\xb3\xa8\x1a\x3f\ -\xa4\x74\x63\x5f\x28\xdd\xc8\x22\x5b\x2c\xa1\x26\x92\x39\xf1\xa4\ -\x9a\x8b\x01\x93\x21\x9e\x3d\x09\x47\x2d\xe7\x6f\xf3\xec\x21\xdb\ -\xc1\x68\x22\x4d\xcd\x53\x3d\x38\xdd\xbc\x5a\x2b\x16\xce\x32\xad\ -\xa4\xa7\x41\x6a\x77\x4c\x23\x21\x94\x1e\x95\x18\x9c\x53\xa8\xc4\ -\xa0\xd5\xa1\xa0\xf2\x32\xb2\x3d\xe6\xb8\x86\x8f\x97\xd2\xd1\x3b\ -\x59\xbe\x52\x98\x52\x3a\xd4\x62\x1b\x8e\x8f\x4f\x7d\xc9\x4d\xca\ -\xf5\x55\x88\x5a\xd1\x6f\x8e\x5a\xb2\x50\x3a\x61\x21\x84\x6b\xe9\ -\x53\x4b\x36\xfd\x0c\xd7\x45\xf6\xc9\x55\xe6\xd4\x8a\x12\x46\x95\ -\x56\xf2\xed\x5e\x21\xfe\x09\xf1\x66\x6a\x6a\xd1\xab\xcf\x54\xfe\ -\xa8\xbe\x7f\x5a\x35\x72\xe1\x6e\xd6\x44\xbb\x49\x9f\x43\xd2\xbb\ -\x39\x25\xda\x4d\xda\x2c\x12\xad\xb2\xd7\xfd\x24\x11\x6e\x88\x97\ -\xc0\x64\xfa\xa9\x77\x33\x9d\xd4\xff\x4c\x58\xc5\x50\x99\xa4\xaa\ -\x21\xea\xe7\xc5\x8f\x29\x7b\x9a\xad\xf5\xe4\x11\x7e\x84\x52\x04\ -\x32\x8f\x9e\x88\x94\x1a\xb2\x01\xa4\xa8\x91\xd8\xce\xb5\x86\x01\ -\xd3\x1f\x11\x9b\xd6\x52\x59\x06\x03\xa1\xad\x43\x7a\x99\x8f\xd0\ -\x74\x2c\x36\x60\x63\x68\x9d\x51\x2a\x16\x8b\xca\x31\xdf\x31\x20\ -\x77\x51\xf1\xe8\x19\x60\xc6\xce\xdb\x40\xa1\x23\x56\x5a\x3b\xae\ -\x43\x02\x62\xea\x15\xbb\x93\x0c\x3b\x9b\x0e\x6b\xb2\x3a\xde\xe9\ -\x8e\xf6\x00\x1e\xc5\x24\xce\x61\x8b\x56\x54\xe9\x45\x5e\x51\x4f\ -\x4a\x89\x29\x51\x34\x2e\x2a\x3e\x18\xe2\xe4\x49\x3c\x09\xef\x8a\ -\xd0\xf8\x38\xaa\x7d\x11\x52\x77\xd1\xb1\xd7\xcb\x95\xe4\x06\x24\ -\x39\xd7\xb5\x03\xa8\x75\xa3\x35\x5c\xac\x2a\x04\x28\xc7\x2f\x98\ -\xe8\xb0\xe7\xc6\xf3\xec\x35\x1e\xec\x95\x82\x2c\xad\xe4\xba\x99\ -\x6c\xe6\xf2\x35\xa9\x40\x23\x29\xfa\x24\xce\x32\x64\x6f\xda\x3c\ -\x00\x18\x8d\x51\xf8\x1c\x79\xd1\xcd\x92\x0e\x3f\x05\x24\xe9\x54\ -\x1c\x15\x2b\x51\x36\xe3\x69\x14\x11\xb9\x68\x11\x08\xcc\xb4\x0c\ -\xd2\x11\xa3\x0e\x6c\xe7\x2b\xe0\xc2\x34\x60\xee\x22\x68\x31\xad\ -\x3a\x91\x87\x38\x75\x38\xe4\x4d\x34\x8f\x3d\xa2\x17\x29\x30\x4f\ -\xa1\x48\xd4\xd9\x87\x16\xf7\x6f\x4c\x69\xc4\x59\x32\x83\x1a\x55\ -\xaa\x94\x26\x5c\x74\xbc\x44\x70\xcf\xd4\x32\x76\xa2\xc0\x9c\x15\ -\xd9\x0a\x84\x5b\x80\x02\x6a\x2e\xae\x82\x7f\xa7\xc1\xbf\x15\xf0\ -\x6d\x05\xfc\x77\x82\x66\xf6\x6e\xa1\x88\x71\xca\xc5\x41\x7a\x2c\ -\x52\x1e\x50\x94\xb5\xc1\x8e\xa3\x64\xc0\x12\xe6\xcc\xd2\x70\xbd\ -\x9c\xed\xe0\xee\x03\xb7\x64\x79\x26\x4b\x29\x75\xe4\x71\x93\x51\ -\x97\xb1\xca\x38\xcd\x58\xd1\xb5\x62\xc5\x09\x69\xad\xe6\x3b\x25\ -\xd3\x32\xd2\xb7\x51\x12\xab\xad\x86\xa2\xcc\xbc\x24\x65\x49\xc0\ -\xa9\x41\x38\x5c\x2c\xa1\x5c\xe2\x89\x95\x80\x27\x4d\xfa\xb9\xcd\ -\xcc\xde\x5e\x41\xf4\xcd\x8b\x2e\xa7\x0c\x75\xd4\x09\x2b\xb6\xb5\ -\x79\xfa\x9a\x25\xff\x2c\x0d\x35\x5b\x29\x6a\x3c\x33\x67\x97\x7d\ -\x64\x18\x19\xaa\xa2\xbb\x2c\xa8\xc3\x45\x1d\x75\x7e\x1e\x0b\xcc\ -\x91\x3e\x5e\xc1\xb6\x39\xba\x74\xef\x1c\xb8\xbc\x59\x70\x28\x6c\ -\x07\x93\x70\x56\x5a\xdc\x2c\x95\xb8\x89\x16\xdb\x57\x16\x69\x47\ -\x50\x48\x45\x61\xfd\x74\x65\x5a\xaf\x36\xa0\x96\x63\x4e\xf0\x51\ -\x2d\xfc\x75\x98\xe8\x29\xbd\xa8\xbb\xd7\x8e\xa0\xb0\x84\xb4\x74\ -\x3c\x2d\x33\x3b\xcc\xb2\x76\x62\xe7\x45\x8a\x00\xed\x01\x84\x4b\ -\x4f\x0e\x09\x07\xe6\x1c\x70\x80\x54\xe8\xd9\xe0\x71\x82\x31\xee\ -\x9f\xeb\x5b\xfe\xf5\xec\x2b\x7b\xbf\xcc\x77\x32\x28\x57\x67\x0c\ -\x49\x64\x04\x54\x9a\x81\xfb\x63\xa9\xec\x1d\x24\xfa\xb6\xc9\xf0\ -\xfb\x4c\xc4\x65\xa5\xce\x29\x44\xc6\xf1\x11\x6b\x01\xc7\xa2\x2f\ -\xe1\x13\xc6\xa5\x90\xfc\xac\x96\x2c\x08\x8d\xd8\x29\xe7\x51\xe0\ -\xbf\x32\x75\x3d\x19\x3c\x65\x2e\x24\xc5\x9c\xa3\xb9\xca\x88\xca\ -\x47\x28\x26\xb8\x13\x57\xd4\x58\x44\xcc\xc5\xe6\x26\x66\x99\x1b\ -\xda\xba\x8c\x11\x47\xf6\xe8\x9b\x53\xbe\x33\xc0\xe3\xc3\xd4\x5b\ -\x3b\x67\x13\xcb\xb3\x80\xf8\x18\x1b\xb6\xb3\xec\x78\x04\x96\x59\ -\x86\xe7\xe5\x02\xcf\xc0\xd0\xe2\xaf\x6e\x63\xc0\x75\x0b\x83\xa6\ -\xa7\x65\x66\x40\x2c\x67\x2d\xcc\xad\xb1\x36\xa2\x34\x83\xf6\x47\ -\x0f\xc2\xa3\x75\xa6\x28\xb7\xb1\x61\x27\x0f\x30\x07\x60\xbb\x84\ -\xfb\xa1\x52\x9d\x8e\xdc\xe7\x59\x56\xcf\xda\x5e\x43\x58\x37\x86\ -\x3f\x01\xfe\x62\x11\xb9\x94\x8e\x42\x4f\x1f\x83\x77\x3d\x26\xeb\ -\xcc\xe9\x54\x0c\x3f\xc1\x6b\xd1\x44\x98\x34\x66\x41\x92\x49\x0b\ -\xe2\x42\x26\x40\x34\xbb\x13\xde\x6a\x70\x90\x88\xed\x05\x96\xd4\ -\x8b\xfa\x9e\xc4\xf0\x3e\xbd\xe9\xed\x87\xef\xd2\x15\x81\x5a\xc6\ -\x9c\x5e\xf1\x8a\xd8\x52\x9b\x93\xe5\x3e\x46\x8e\x7d\xdb\x91\x7b\ -\xf9\xd1\x81\xa7\xab\x90\xd2\x1f\x9f\xd1\x5d\x01\x89\xe1\x1d\x11\ -\x7a\x39\x76\x3e\x52\x89\x99\x6c\x5a\xe8\xd6\x95\x2b\x11\x54\xb9\ -\xb6\xd6\x24\xe2\x48\xc9\xb8\xee\xa5\xf0\x24\xd4\x2c\xa1\xc2\xd9\ -\xae\xe5\xe2\x05\xb7\xb0\x0c\x6a\xd2\x0c\xc2\xb0\xab\x24\x5a\xbb\ -\xda\xde\x04\x7f\x77\xca\x3e\xb4\xe8\xfb\x94\xc4\xa4\xf7\xe6\xa3\ -\x82\xf3\x79\x5f\xed\x1c\x32\xaa\x3e\xda\x89\xc1\xdf\x29\x12\x76\ -\xf6\x54\x7b\x68\x33\x27\xc3\xb0\x89\x7d\x17\x08\xab\x68\x4a\x86\ -\x93\xb6\xda\x88\xd8\x19\x45\x88\xd8\x71\xc9\x9d\xc4\x90\xa3\xd3\ -\xf7\xdd\x0a\xf8\x08\xef\x62\x09\xcf\x33\x79\xbc\x6e\xb2\x95\x58\ -\x5c\xef\xd0\x75\x52\x19\xdf\xd7\x93\x08\x97\x16\xd7\x62\x19\xbc\ -\x64\x75\x26\x50\x92\x92\x07\x5d\x99\x4d\xaa\x34\x46\x6b\xe9\x97\ -\x41\x7e\x99\xbe\xd1\x8e\x3b\xcd\xda\x69\xe5\x89\xe8\x1e\x73\x1f\ -\xea\x05\x1f\x2c\x69\xf8\xbd\x1d\x24\x89\x9d\x6f\xcf\xc0\x88\xed\ -\x45\xd7\x71\xdb\x71\xdf\x2a\x74\x69\x16\xed\xc2\x44\xa4\xbf\xce\ -\x8d\x56\x61\xd4\x0a\xec\xac\xd9\x89\xcd\xd9\xab\x38\x30\xdf\x61\ -\x83\x83\x64\xc2\xad\xba\xd7\xb9\x85\x5c\x7b\x4a\x11\x75\x20\x35\ -\x77\x15\x48\x78\xeb\x41\x5a\xc1\x55\xe0\xde\x48\x24\xd7\x10\xe1\ -\xd9\xa9\xb6\x30\x9c\x9c\xb4\x82\x6a\x27\x03\x2e\x61\x48\xc4\x4c\ -\x33\x79\x71\x4f\x05\x3c\xb0\x5d\x0d\x42\x50\x8a\x23\x4d\x87\x78\ -\x68\x38\x3e\xcf\xf0\xee\xaa\xca\x1e\x9e\xc2\x69\xf8\xc0\x3b\x51\ -\xa5\x66\xc6\xb4\xb4\x12\xc3\x1b\x74\x5c\xc0\x24\x87\xdd\x9c\x91\ -\x1d\x76\x71\x6f\x34\xc5\x03\xdb\x6d\x25\x8a\xbf\x98\x54\xe6\x62\ -\x1a\x3d\x37\xae\xf1\xd2\x0a\xe0\xf9\x29\x51\x53\x40\xe6\x9b\x2e\ -\x62\x5c\xf9\x86\xee\xe4\xea\xbf\xeb\xe8\x89\xa3\x11\xf7\x7c\x48\ -\xcd\x16\x41\x19\x11\x59\x70\x36\x42\x3a\xe7\x5b\x9f\xa5\x9a\x51\ -\x27\x7f\x33\x1a\xf5\x4e\x3a\xed\xf7\xed\xbb\xfe\xfa\xf6\x3e\x87\ -\x17\x6c\xb1\xfc\xbb\x10\xc1\x14\x8b\x83\x7c\x5e\x7a\xa9\x7d\x14\ -\x7f\xe1\x73\xbe\xf4\x6d\xa1\xfa\xe9\x27\xc9\xe1\x04\x3d\x84\xa0\ -\x3b\x9a\x22\x01\x65\x6a\x44\xf9\x93\xd4\x44\x19\x89\x2b\xd0\x5d\ -\x3a\x95\x69\xd4\xc8\x6c\xca\x47\xa2\x13\x18\xfd\xc7\x8e\x59\x99\ -\x40\xb1\xec\x07\xfc\x89\x61\x26\x45\x32\xb4\xda\x2b\x53\x0d\xed\ -\xd2\xba\x34\xba\xdb\x18\xcb\x1e\xd1\x24\xe4\x07\x0d\x54\x08\x73\ -\x74\x65\x52\xca\x92\xb7\x2a\x7a\x25\x2c\x6a\x2f\x72\xf4\x2a\x1d\ -\xe3\xca\x64\x4d\xf2\x66\x05\x65\x8f\xb0\x14\x8c\x28\x85\x0c\x30\ -\xb0\xe1\x57\x68\xe5\x13\x51\x7d\x60\x68\xcb\xce\x8e\xae\xeb\x42\ -\xd6\xb1\x50\x93\x97\x79\x54\xcc\xe6\x16\x90\x85\x5e\x8a\xf2\x33\ -\x98\xbf\x14\x9e\x09\x4b\xe4\xc6\xab\x59\x15\x41\xec\xd3\x09\xc2\ -\xf5\x6c\xcb\x61\xe7\x4d\x89\x23\x2f\xa4\x72\xe5\x0a\x17\x23\x2c\ -\x40\x36\xbe\xf6\x93\x4f\xeb\x22\x0c\xba\x26\xa0\x03\x0b\x5d\x86\ -\xd8\x18\x02\xbd\x16\xac\x7c\xd0\xc9\x1d\x08\x3e\x88\x9e\x45\x4e\ -\x29\xdc\xaa\x3a\x2b\x08\xb7\x51\xc4\x92\xcb\x99\x5a\x0f\x40\x85\ -\xcf\x99\xcc\x23\x43\x86\x2d\x42\xc1\xbc\xe1\x76\xfa\x21\xcd\x01\ -\xb2\x9b\xc5\x03\xb6\xea\x84\xfd\x9d\x72\x54\xbd\x3e\xd9\xe0\x8e\ -\x7d\xf8\x44\xfe\x68\xe1\xbe\xda\x63\xa3\xd7\x65\x58\x91\xb9\x08\ -\x3f\x90\x79\x97\xaa\x9e\x4e\xd7\xc5\x45\x5c\xeb\x22\x89\x16\x7b\ -\xa9\xb5\x7d\x9f\xbe\xb6\xa3\x66\xa1\x6c\x51\x17\x29\x47\x37\x07\ -\xe4\xcb\x4e\x56\x2b\x27\x2e\x23\x53\x06\x6e\x01\x5c\x27\x27\x6b\ -\x75\x65\x76\xd2\xb7\xf9\xb9\x78\x39\x3b\x9f\xb7\x3c\xcb\xc9\x62\ -\x02\xba\xe0\x8e\xb1\x2c\x1f\xeb\x50\xe4\xf1\x02\xdc\x3e\x88\x75\ -\x5e\xf4\x0c\xbd\xb4\x69\xbc\xd9\xe8\xa8\x47\x90\xac\x4e\xe0\x1c\ -\x10\x10\xa5\xce\x29\x84\xfc\x7e\x95\x53\xe0\x0e\x6a\xea\x2a\xe8\ -\x73\xd0\xf8\x4d\xca\x4a\x4d\x1e\xb0\x4d\xb7\x75\xea\x98\x73\xfc\ -\xa8\x67\x76\x28\xd9\xbf\x99\x08\xa6\xd8\x6c\x6a\xeb\xe9\x09\x3a\ -\x00\x0d\xd3\xa4\xde\x1c\xb3\x33\x22\x79\x2a\x49\x2a\x21\xe1\x2a\ -\x48\x49\xb5\x39\x66\x27\x17\x07\xba\x98\xc0\xcd\x6a\x9a\x90\x49\ -\xc9\xfd\xff\x88\x9b\xe6\xc2\x65\xbf\xa2\xf2\x88\x1d\xa6\xea\x73\ -\x5b\x8c\x99\x19\x9d\x44\xc5\x62\xf5\x37\x98\xf7\x74\x90\xcb\x64\ -\x8f\x7b\x37\x2a\xc9\x29\x22\xb1\x16\x51\x67\xfb\xda\x7a\x34\x5e\ -\xd6\x73\xc7\x39\xd6\xe2\x52\x59\xec\xfc\x64\x87\xbe\x04\x78\x48\ -\x15\xe5\x4f\x51\x7c\xa1\x0c\x81\x2c\x11\xdb\xfc\x44\x41\x83\x20\ -\x26\x75\x3c\x50\xb4\x38\x43\xe7\xff\x38\x7c\xca\x90\x62\xd0\xac\ -\xe0\xd5\xc4\xac\xbd\x23\xcb\xa9\x99\x39\xa8\x8c\x3e\x81\xa3\x64\ -\xb9\xa3\xfb\x71\x89\xd7\x24\x10\x75\xde\xaf\x7e\x78\xfd\xd7\x77\ -\x51\x55\xc1\x0a\xa7\x31\xfe\x5e\x62\x85\x2f\xa0\xad\xc1\x98\xe0\ -\xa5\x9f\x54\x71\xa0\xae\xa7\x79\x64\xac\x02\xc0\xda\x6a\x56\xdb\ -\x62\x0c\x28\x39\x23\x4c\x16\x73\xdc\x2e\x96\x8b\xa0\x57\x9c\x21\ -\x10\x4d\xa0\xa4\x30\x22\xc9\x95\x95\x68\x2a\xce\x6d\xf2\xb1\x26\ -\x61\x05\x8e\xe5\xe0\x1b\x63\xc3\x2e\x75\xf7\x58\x11\x0b\xed\x53\ -\x89\x2d\xea\xa6\x79\x26\x6e\xb5\xe5\xcd\xd3\x0a\xb1\x79\x40\x75\ -\x7b\x08\x0d\x41\xf7\xa3\xdf\xc5\x7c\x74\x4a\x17\x2a\x04\xdd\xb0\ -\x7b\x8f\xd1\x31\xe0\x96\xd2\x06\x8f\xe7\x42\x9f\x7b\xb1\xcf\x3e\ -\x14\x38\x8c\xcb\x0a\x5a\x8f\x99\xdd\x7b\x8d\x8e\x3e\x0f\xac\xa6\ -\xf4\x7d\xee\xe1\x7d\x6e\xe6\x51\x4b\x2f\xd2\x67\xe3\x1e\xe8\xb3\ -\xdf\xce\xa5\x8e\x71\xd7\x61\x07\x81\xec\xa0\xda\x4c\xbd\xe3\xec\ -\xd9\x84\xc3\x4a\xa6\x77\x2a\x47\x3c\xe5\x14\x0d\xdc\x2d\x27\x53\ -\xd7\x68\xe8\x3c\xc5\xa2\xb3\xfa\x9b\xac\x12\xcc\xe3\x91\x14\x21\ -\xed\xa6\xde\x8e\xb7\x25\x5b\xe1\x4c\x0e\x57\x86\x34\x51\xf0\x2f\ -\x57\x95\x06\x78\x60\x2f\xfd\x81\x07\x45\xb5\x9a\xe9\x94\x28\x6d\ -\x40\x20\x3c\x6d\xc3\x5a\x4d\x36\xf0\x52\x16\x1d\x56\x2d\x46\xf3\ -\x25\xcd\x4e\x8e\x68\x0d\x43\x1e\x49\xb4\xa8\x19\x9e\xea\x84\xde\ -\xf0\xb6\xb4\x68\x5d\x12\x35\x85\x98\x97\x22\x6a\x92\xc4\x19\x01\ -\x2a\x0c\xbf\x8e\xc8\x0d\x6c\xbc\xfa\xa9\x8c\x49\x32\x95\x51\x52\ -\x06\xb9\xcf\x83\xfa\x13\x84\x85\xbf\x7c\x4e\xe6\x9d\x38\x62\x99\ -\xa7\x0f\x4c\xe8\x2b\xdc\xba\xc8\x4d\x6a\x9f\x2b\x00\xe6\x05\x16\ -\xb0\x1f\x8b\x88\xfb\x30\xf0\xf0\x24\x89\xdb\x1b\xed\x49\xaa\xe0\ -\xe5\x62\xe2\x89\xc2\x7c\xa3\x9d\x30\x96\xe8\xfe\x1c\x14\x76\x54\ -\x16\x62\x34\x6b\x1d\xd6\x2f\x83\xa0\x2a\x7b\xe8\x01\x31\xd3\x9b\ -\x9d\xda\x88\x85\x6c\x5e\xa7\x31\x58\x0e\x40\xfe\x8d\xf0\x9f\xa9\ -\x0c\xf4\x7d\x10\x7f\x3e\x8d\x48\x59\x39\x1b\xdd\xa4\x94\x84\x72\ -\x15\xe7\x26\xc5\x6b\xfa\x2e\x14\x73\xd2\x0d\x0b\x22\x22\x62\x69\ -\x59\x26\x11\x4a\x28\xf1\xdf\x98\x1e\x09\x07\x13\x94\xe6\x4d\x3a\ -\xc3\xe6\xd4\x24\x64\x96\xcc\x92\xe5\x61\x0e\x2a\x5e\x38\x76\x08\ -\x87\xd5\x5c\x1c\xdb\x28\xe0\xc8\x78\xd1\xd4\xdb\x05\x94\x6f\xb7\ -\x1c\xe0\xd7\x3d\x3d\xd6\x8b\x6e\x5d\x24\x9c\xde\x23\x67\x7a\xa2\ -\x36\x53\xb0\xc2\x65\x85\x1c\x75\xaf\x96\x17\xb9\x97\xe5\x3a\xc7\ -\x05\xfa\x2c\x53\xce\xb0\x06\x46\x1d\x97\x23\xcd\x28\x8d\xa7\x3e\ -\x96\xcb\x47\xa6\xcf\x6b\xa2\xbc\xd6\x1f\xb6\xf3\x69\x25\xcf\xce\ -\x98\xe8\x3d\xf4\x9c\x89\xa8\x08\xd0\x91\xb6\x30\x39\x97\x41\xf3\ -\xfb\xd3\x3b\xa6\xa4\xf0\x36\x00\xf5\x41\x6b\x50\xca\x75\x49\x74\ -\x93\x8c\x28\x40\x62\x89\x70\x59\x94\xaa\x72\xa9\xc9\xe0\x63\xa2\ -\xd7\x9f\x28\x0e\xba\x85\xb4\xf0\xe7\xf8\x9e\xdf\xa8\x03\x62\x93\ -\x14\x0e\x48\x68\x36\x1a\x9a\xa3\x8b\x20\xe1\x7e\xa7\x0e\xb7\xa6\ -\xa9\x0e\x09\xf5\xad\x64\xb1\x7e\x9d\x9b\x3a\x40\x76\x31\xde\x92\ -\x46\x7b\xa9\xcd\x69\x9e\xe1\xe2\xc8\x61\xc6\x7a\x9b\xc6\xc5\xe2\ -\x88\xe1\x48\xb3\x56\xde\x2c\x7a\x54\x7e\x2d\x34\x60\x67\xda\x47\ -\x5e\xee\x23\xac\x62\x00\x18\x40\xb9\x8b\x8b\xd9\x1d\x3f\x91\xd7\ -\xdb\xe1\x75\x5a\x4d\xda\x83\xf7\x18\x06\xa0\x1c\x0a\x3c\x5e\x94\ -\x87\xff\x30\x5b\xac\x4e\x08\x59\xbc\xad\xa7\x67\x19\xcb\x2e\xb8\ -\xf2\xf2\x15\xad\xb3\x59\xfc\xa0\xdd\x02\x77\x9e\xf4\xdb\x94\x1a\ -\x17\xef\xb0\x68\xf0\x6b\x34\x3a\x3b\xda\x28\x72\x28\xab\x36\x43\ -\x7a\x06\x69\xa4\x41\x06\x1a\xec\x22\xf4\x8c\x4b\x4b\x7b\x71\x97\ -\x5d\x8a\xf6\xdc\xcd\xaf\xc3\xb4\x43\xe5\x98\xfa\xce\x41\xe1\xb5\ -\x54\xde\xf3\x3f\x7b\x2d\xbb\x72\x85\xa9\x34\xbe\xf3\x2e\x32\xce\ -\x30\xaf\xac\xa9\x7c\x81\x8c\x1e\xc0\x65\x9b\xa9\x2c\x9e\x31\x3f\ -\xa8\xf1\x9c\xc8\x04\xea\x47\x76\x2e\x47\x49\xcc\x7f\x91\x50\xad\ -\x5a\xab\x5f\x04\xc3\xe2\x90\xc3\xb4\xea\xb3\xe8\x7a\x18\x56\x04\ -\xcf\x60\xcc\xe5\xf5\x1f\xcb\x1d\x7a\xf1\x58\x26\x02\xf4\xe9\xa1\ -\xfb\x5f\xbd\xc8\xb0\x93\xdd\x89\x13\xbe\x5d\xd4\xa0\x37\xce\xb2\ -\x81\xc4\xa6\x6d\x51\x7a\xaa\xae\xcb\xd2\xc6\x9d\x89\x37\x98\x32\ -\xc7\x9c\xda\x3c\xda\xf5\x9b\x6b\x41\x33\x82\xb1\x10\x5d\xc6\x0e\ -\xf2\x18\x09\x5f\xb9\xc2\x04\x94\xde\x8b\x49\x0b\x24\xd4\xb6\x0b\ -\xd1\x93\x81\xd7\x9a\x74\x47\xe7\xde\x17\xbb\x45\xf5\x90\xce\xb4\ -\x55\x07\x4d\xb1\x1b\x56\x2b\xdc\xe4\xaa\x0d\x5c\xf9\x72\x55\xed\ -\xa5\x01\xac\xda\x57\xdb\x61\x55\x12\x57\xdc\x69\xc7\x02\x18\xc2\ -\x3d\x10\x42\x9a\x9d\xfb\xaa\x30\x14\x5a\x3b\x15\xa7\xe9\xc1\x03\ -\xf8\x39\x03\xf3\xe2\x76\x46\x46\xc1\x44\xc9\x8a\xa2\x6a\x26\x8a\ -\x37\xb6\xd9\x8f\x76\xbd\x5b\x3b\x72\xce\xa2\x65\x09\xc6\xee\x48\ -\x0b\x7a\x45\xa8\x3a\x0c\x5d\x81\x18\xd9\xa7\xd5\x33\x4c\x4b\x43\ -\xd5\x6d\xb4\x5a\x0f\x5f\x80\x1e\x84\x79\x1e\x36\xdd\xf5\x58\xb5\ -\x6e\xb0\x1b\x28\x3d\x5c\x24\x91\x1c\x89\x6e\xe0\x37\xb9\x41\xcf\ -\xcc\x74\x65\xf0\x07\xdc\x13\x1a\xc3\xfe\x99\x75\x17\x90\xca\x07\ -\x01\x98\xd2\xdc\xf7\xd0\x3f\xf2\xa4\x43\x40\x0b\xb5\x94\xc7\xf9\ -\x9e\xf0\xd9\x85\x18\x85\x66\x18\xf6\x87\xdd\x72\x21\x17\xdb\x49\ -\xaa\x6f\xee\xb5\x83\x8a\x7b\x47\x8d\x0e\x7b\x49\x02\xb2\xa7\x75\ -\x1f\xab\xd6\x76\x14\x95\x4a\x52\xd9\x9e\x17\x92\xe1\xa6\x26\x0f\ -\xc2\xa7\x57\xeb\x77\xc7\x30\xf9\x30\x48\xd8\x7e\xce\xb2\x74\x29\ -\x3b\x40\x38\xf6\x93\xed\x40\xf8\x3d\x64\x53\x68\x07\xd6\x49\x3d\ -\x5a\xe5\x9e\xc7\x95\x03\x9e\x21\x48\x0f\xab\x66\xa7\x07\xd3\x28\ -\xe2\xa0\xef\x16\xca\x01\xcc\xbe\x7f\xfb\xda\x9e\xf5\x51\x0c\x34\ -\x70\xd5\xa8\xea\xcd\x6a\x12\xb4\xe2\xec\xd0\x1d\x1e\x06\x63\x43\ -\x15\x76\xe0\x07\xc5\xc5\x79\x71\x7e\xa4\x5d\xf2\xe9\xbd\xad\xbc\ -\xbd\x76\x78\xaf\xd6\xc7\xbc\x48\x1f\x62\xc5\x74\xbf\xab\x85\xf7\ -\x90\xb8\x50\x46\xa4\x83\xde\x68\x14\x53\x09\x3e\xde\x4d\xe8\x86\ -\xcd\x49\xa6\xc3\x2e\xc7\x9a\x60\x97\x63\xc5\xa6\xa3\xdd\x90\x35\ -\x09\x34\xe2\xba\x29\x56\x00\xae\x4f\x4a\x40\x13\xba\x73\x4a\xeb\ -\x69\x4e\xe8\x74\xbf\xf8\x81\x60\x4d\xbc\xbd\xb8\xf0\x23\xb1\x29\ -\x03\x62\x17\x63\xca\x58\x53\x71\x50\xb4\xd6\xf4\x58\xb4\x36\x0a\ -\xdc\x96\xa4\x7b\xf9\x98\x6b\x8c\xca\x48\x44\x00\xb5\xa3\xfc\x40\ -\xa2\x43\x47\x5b\xc0\x29\x05\x85\x22\x36\x88\x69\xfd\x2d\xc0\xf5\ -\xd0\x9d\x74\x7d\xc3\x93\x52\x12\x6d\xfc\x52\x02\x7d\x5f\x49\xc8\ -\x0c\x62\xdd\x24\x5d\x75\xd7\xd0\xcb\x0b\x36\x23\x6d\x36\x73\x4d\ -\x51\x42\xe1\x3c\x21\x17\xa2\x92\x36\x8f\x5f\xdb\x93\x54\x8d\xdc\ -\xd1\x4b\x0f\xd4\x07\x0e\xf4\x5c\x14\x5a\x4a\xb9\x9b\xb2\xf0\x58\ -\x9e\x8b\x16\xb2\xcb\x64\x84\x43\x3b\x3c\x8b\xfe\x1c\x5b\x3c\x3d\ -\x14\x22\x6a\x0c\x15\xa6\x9a\x78\x35\x8c\xcb\x5d\x88\xd0\x8c\xef\ -\xc6\x40\x9f\x48\x30\x0a\x8c\x85\x5d\x56\x5d\x6b\x86\x37\xb4\xfa\ -\x88\x23\xda\x72\xa1\xa6\x13\x8f\x5c\x9f\x1b\x02\x19\x94\x43\x0f\ -\x15\x8b\xed\x7c\x98\xf8\xc2\xa8\x2e\x9c\xe2\xd6\xd1\x90\x11\xde\ -\x47\x16\x2b\x7d\xa3\x8c\xf0\xbe\xc5\x28\xf0\x13\x24\x44\xf4\x7c\ -\x4f\x7e\x16\xb1\x92\x51\x7d\x34\x62\xd0\x23\x76\x7a\x68\xad\x37\ -\xc6\xee\x0b\x65\x47\x11\x4d\x7e\x3d\xb4\x7e\xd9\xbd\x81\xe7\x4e\ -\x2a\xc9\xdc\xa1\xee\x0e\xa5\xd7\xd4\xab\x5b\xa1\x43\x17\xd9\x77\ -\xf4\x44\x65\xf1\x05\xba\xe7\x41\xc2\x97\xb8\x44\xef\x9c\x08\x9d\ -\xa5\x43\xd4\x3d\x18\x0c\xc1\xea\xa9\x28\x3b\x57\x29\x6b\x1a\x3e\ -\x56\xb0\xae\x96\xb0\xea\x00\x0a\x3a\xa5\x35\xe0\xb0\x3c\xf8\xa7\ -\xa8\x0d\x37\x3a\xfa\xa2\x80\xb3\x3a\x54\xea\x19\xfc\x46\x63\x0e\ -\xad\x22\x4e\xb9\x31\x7d\xb4\x02\xab\xdf\xbe\x28\x4a\xfd\x1f\x00\ -\xe2\x70\x64\xd5\x84\xb8\xa1\xc0\x20\x27\xc4\xac\x68\x75\x02\xa2\ -\xb0\xd7\x74\x07\x84\x45\x27\xf5\x5b\x0e\x68\xe9\xaf\x7e\x5f\x85\ -\xba\xbd\x4e\xb8\xbd\x22\xed\xaa\xac\xf2\x13\xfb\xdc\x32\x2c\xdd\ -\x09\xe2\xe2\x02\x7f\xc4\xa2\x27\x27\x31\x33\xa4\x5b\x84\xdc\x4c\ -\x3c\x11\x86\xc5\xf5\xec\x20\x4a\xee\x3b\x13\x66\x64\xf2\x19\x89\ -\xb1\xbb\x89\xba\xbb\x84\xc5\x44\xd5\xde\x88\xb2\x94\x3c\xfa\xf1\ -\x41\x8a\xeb\x16\x09\x18\x29\x10\xdd\x78\x21\x08\xad\x71\xc5\xab\ -\x69\x99\xd5\x13\x73\x5a\x72\x89\x48\x4e\x32\xda\x9d\x50\x64\x20\ -\x72\x42\x2c\x4e\xa2\x5b\x13\x9c\xbf\xe0\x9b\x48\x0b\x21\xb3\x7e\ -\xb9\x00\x90\x1e\x38\x1d\x3f\x44\xb6\xdb\x40\xc0\xec\xfc\x04\x83\ -\x39\x0a\xec\x59\x93\x50\x44\x96\xa8\x63\xeb\x4d\x34\x95\x99\x2f\ -\xc3\x56\x5b\xf1\x2e\xbf\xdd\x47\x82\xb4\x40\x80\x04\xd4\xcc\xee\ -\xe0\xe9\xd6\x2e\xf4\x8d\x42\xe0\x55\x80\xa0\x9c\x50\xdf\x94\x8c\ -\xaa\x6e\xb4\x06\x85\xd7\xe1\x69\xeb\x4a\x69\xae\x44\xc4\xd5\x39\ -\xb2\x34\x40\xe3\x4b\x0e\x69\x0c\x71\xdd\xc6\x20\x28\xe7\x11\xb1\ -\xd0\x39\x0b\xa6\x92\xb3\x9c\xac\x1d\x5f\xef\xbd\xc0\xea\x2e\x82\ -\x9b\xe3\x88\x63\xe6\xa5\x2d\x37\x1c\xe8\x88\xd4\x3d\x82\xee\xd8\ -\xbb\x6a\x93\x33\x15\x30\x19\x09\xe8\x32\x01\x28\x98\x99\x36\xdd\ -\x9f\x90\xc5\xda\x1c\x01\x2b\x7f\x5a\x61\x8d\xb7\x56\x24\xc8\x95\ -\x31\xa2\xa4\x20\xf5\x21\xf6\x44\x62\xc8\xe1\xda\xca\xe4\x21\x38\ -\x85\xbd\x77\x30\xa0\x56\x2a\x5a\xcb\x97\x7d\x11\x25\x8f\x02\x71\ -\xe6\x34\x81\xd8\x41\x44\x8c\xdc\x8b\x50\x7c\x7b\x6c\x58\x71\x01\ -\x79\xa5\xb1\xcf\xad\x38\x76\x8c\xf1\x49\xf4\xf2\x16\x25\xd8\xf4\ -\xe2\x71\xed\x10\x7e\x15\x2a\x65\x70\xe9\xb7\xb0\x48\x21\x86\x67\ -\x56\x45\xc1\xda\x57\x11\x2c\x55\x48\xea\x73\x5e\x53\xf7\x67\xeb\ -\x09\xec\x68\xe4\x43\xe7\x51\x83\x88\x83\xd2\xd4\x26\xaa\x50\x91\ -\xaa\x04\xbc\x8b\x01\x8e\xe5\xa2\xbe\x62\x55\x96\xe0\xa5\x2c\xcc\ -\x1d\x43\x1b\xac\xf5\x5c\xcc\xf9\x0e\x93\x7f\xba\x33\xc6\x98\x9e\ -\x1d\x45\x94\x77\x73\x25\xe6\x93\x68\x66\x28\x46\xfe\x09\xa7\x85\ -\x81\x2e\x1d\xb5\x26\xa7\xbc\x24\x79\x2c\xea\x12\xde\xe0\xe1\x9a\ -\x28\x1d\xa4\x51\x19\x21\xc3\x4e\x82\xba\x84\x83\x8a\x67\xf1\x30\ -\x1a\xd0\x94\x06\xc0\x67\x53\x6d\x3f\x14\xa7\x86\x0b\x2a\x82\x39\ -\xca\x07\x4b\xb2\x28\xbb\x89\xd8\x3f\xaa\xee\x27\x32\x65\x11\x46\ -\xf2\xe1\x78\x31\x92\xf5\xe9\xb1\x1f\x66\x81\xc1\xd5\x4d\xc1\xae\ -\x84\xcb\x8d\x29\x81\x54\xfc\xd1\x2d\xc5\x36\xab\x76\x28\x44\xf0\ -\x75\x6c\x18\x04\x64\x94\x6e\x2c\x14\x08\x2a\xf2\xb3\x73\x48\xa8\ -\x12\xfa\x36\xcb\x05\x5b\x96\xa8\x2b\x31\x04\x1a\x59\x44\xc8\xc1\ -\x6c\x52\x0e\x25\xb3\xae\x2e\x56\x85\x61\xa5\x1a\x17\x48\xd1\x61\ -\xc1\x34\x8e\x3c\xce\xf0\x59\xb7\x58\xa2\x2f\x47\x41\x2f\x54\xe4\ -\x79\x01\xfa\x64\xa6\x82\x2a\x10\x19\xe4\x59\xd3\xca\x80\xbb\x71\ -\x3d\xa7\x03\x8e\x05\x18\x9a\x12\x99\x1a\x74\x2f\xc4\xe8\x54\x29\ -\x8c\x12\x75\x32\x6d\x94\xf1\x45\xfd\x9f\x38\x4c\x90\x02\x1a\x4e\ -\x00\xeb\xa7\xb6\x8b\xca\x77\xaa\x2b\x55\x2b\x25\x00\x4e\x09\x4f\ -\x40\x08\x02\x9a\xce\x61\x04\x23\x8d\x45\x4d\x93\xd3\x9f\xe2\x51\ -\xd5\xf4\x93\x48\x23\x99\x16\x25\x02\x36\xa9\x3c\x4a\x36\x78\xa6\ -\x22\x01\x66\xe4\x44\x74\xa2\x7c\x56\x22\xfa\xa6\xe0\x02\xb7\x1a\ -\x6d\xb1\x87\x56\x82\xfb\xae\x0a\xe0\x46\x35\xa8\x4a\xa3\xe7\x6d\ -\xcf\x0f\xe8\x5d\x63\xd1\x69\x1c\x98\xe4\xc4\x52\x2a\x75\xa6\x48\ -\xd8\x90\x78\x4d\x02\xb3\xde\x44\x59\x58\xd2\x69\x29\xd1\x52\xe0\ -\x2c\x17\x27\x3e\x27\x9c\xa4\x84\xd0\xb6\xd0\xc9\xa7\x8e\x11\x4d\ -\x0f\xc9\xc4\x36\xb8\x5e\xb2\x18\x0a\x8f\x44\x11\xd5\x4d\xd9\x82\ -\xe9\xfb\xd4\x32\x4c\x4a\x27\x3d\x1c\x3b\x05\x55\xe5\x54\xa2\x27\ -\x4b\x46\x33\x3b\x82\xa9\x75\xc7\x98\x55\x7e\x0d\x13\x53\x56\x08\ -\x88\x7a\xd9\x51\xfc\x2c\xf0\x2d\xdb\x8c\x7b\x68\x2c\x59\x05\xd9\ -\x19\x2a\x69\xcc\x38\x5a\x3c\x2f\x47\x95\x68\xd9\xac\xa3\x85\xa7\ -\x8c\x18\x2a\x68\x58\x25\x8f\xfe\xaa\x51\x76\x02\xbb\x80\x35\x34\ -\x78\xa2\x1c\xaf\x9e\x61\xef\x0e\x96\x83\x00\xfc\x54\x73\x88\xdf\ -\x8c\xa6\xe1\xe4\xaa\x29\x70\x32\x79\x9d\x83\x9e\xcf\x57\x27\x54\ -\x86\xb7\xe8\xd1\xe0\xad\x48\x09\x89\xbb\x58\x5c\x54\x81\xe2\xbd\ -\x70\xb0\x60\x8d\x3e\xdb\x68\x45\x03\x9e\xa9\x13\x5a\xf5\xa2\x3b\ -\x0a\x0f\xe2\xb1\x03\x03\x6f\x53\xf5\xb9\x8e\x2d\x70\x1a\xdd\x82\ -\xd3\xf3\x42\x12\x77\xe6\x26\xe8\xcd\xc4\x13\x18\xb7\xe0\x49\x26\ -\x31\x73\xb8\x9f\x58\x7c\xa1\xd9\xd2\xd9\x91\x84\x71\xd2\x4d\x8c\ -\x2a\x5e\xa6\x24\xd0\xfc\xcd\x2a\x12\x3d\x6c\xd2\x4a\x61\xb0\xd8\ -\x3c\x0b\xa7\x10\xe5\xd9\x0c\xd9\x1c\xbb\x1d\xa7\x66\x73\x3c\x1a\ -\x3c\x3f\xf1\x2e\x97\x68\xcb\x0c\x6d\x99\x18\xed\x59\x50\x21\x59\ -\x9e\xdc\xc3\x2e\x51\x7a\x1b\x82\x74\x0b\x2e\xa8\x9e\x68\xad\xd9\ -\xe2\xc6\x12\xb3\x53\x9e\x70\x15\x82\x6a\x6b\xc2\xb1\x02\x05\x12\ -\xcd\x94\xb5\x6d\x95\x9b\xf9\xa9\xc1\x1b\x5d\xba\x79\x20\xbf\x59\ -\x18\x24\xbc\x19\x3e\x94\xcc\xd8\x96\x24\x2b\x0a\x95\x5b\x4a\x4f\ -\xd0\x25\xd1\xaa\x79\xb5\x39\x25\xd9\x29\x8e\x56\xb5\x52\xa4\x5d\ -\xa4\x11\xc8\x52\x06\x0b\x37\x49\x5d\x6f\x04\xf4\xa6\x43\x25\xba\ -\xb0\xeb\x4d\x7a\xa3\x79\x60\x17\x63\x22\x7e\x01\xcf\x79\x8b\x6d\ -\x39\x91\x93\x99\x55\x2c\x74\xbb\x9d\x1d\x31\xb6\x25\x65\x52\x73\ -\x09\x5d\xc4\x63\x43\xaa\x38\x42\x3f\x48\x5c\x09\xb5\x49\x63\xc2\ -\xda\x54\x3b\x10\x10\x1e\x31\x0a\x5c\x76\x7c\x37\x2b\xfa\x0b\x05\ -\x85\xe3\x13\x5d\x8f\x1c\x78\x01\x17\xad\x91\xac\xad\xa2\x0c\xd6\ -\x3f\x4f\xdc\xc6\x52\xb6\x9d\x09\x93\x3d\x18\x4a\x0b\x8b\xe3\x88\ -\xba\x35\xa0\x0f\xc3\x4e\xf1\x90\xa1\xe4\x4c\xf0\xd2\x84\x6e\xf5\ -\xac\xd6\x14\x9d\xa2\x68\x88\x75\xba\x62\x8a\x4e\xb3\xd2\x79\x64\ -\x7b\x47\x55\xd7\x87\x63\xd7\x59\x96\x58\x4d\xee\xbc\x23\xa1\xf3\ -\x38\xc9\xeb\x9d\x32\xcc\x8a\x33\x1f\x52\x61\x56\x87\x36\x4f\xc4\ -\x49\x5f\x7a\xa7\x33\xb1\x53\xcb\xc9\x55\x00\xf3\xc4\x84\x5e\xad\ -\x98\xf5\xa4\x8f\xa4\xf7\x3e\x0b\x7b\x67\xf6\x51\x72\xff\x67\x26\ -\xf4\x2f\x2e\xa8\x14\xd5\xb3\xd1\xad\x6e\xc9\x63\x1d\x81\x63\x89\ -\xcb\x2a\x2b\x0c\x17\xf0\x22\xdd\xf8\x74\xd8\xb3\x32\x11\x85\xb4\ -\xe1\x81\xc4\xf6\x65\x8c\x59\x27\x18\x24\xe2\xd7\x1e\xfc\x55\x8f\ -\x45\xe8\x20\x2e\x41\x10\xf1\x7e\x72\x04\x0f\x77\xee\x76\xf4\x2d\ -\x61\x96\x04\xfd\xbb\x67\x09\x0d\x8d\xc4\xc0\xee\xae\xb8\x0a\x93\ -\x83\x1d\x27\x77\x35\x78\x6c\x90\x93\xa7\x20\x20\x11\x9d\x76\x30\ -\x65\x2e\x86\x8b\x2f\x81\x5b\x2a\xb9\x3e\xbd\x45\x37\x79\x18\x23\ -\x61\x18\x71\x40\x4b\x18\xe2\x16\xec\x8e\x9d\x8d\x92\x0a\x25\x61\ -\x41\xc2\xe0\xf5\x88\xda\x72\x4f\x89\x28\x0e\xaf\xe7\xf2\x6d\x65\ -\xc9\xa2\x25\x69\x20\xc5\xf9\xe9\x06\x9a\x13\x1e\x88\x09\x86\xd8\ -\x48\x27\x25\x8c\x94\xe7\x76\xa1\x6e\x24\xb0\x3d\xc4\x2c\x64\x11\ -\x97\x3a\x7e\xd6\x64\xd7\x70\x07\x6e\xba\x21\x92\xb0\xc6\xb4\x4b\ -\x36\xb6\x24\x8c\xa1\xd9\x19\xe5\xc9\xe8\x4a\x12\x18\x71\x2a\x4a\ -\xd3\x7f\x32\xf9\x64\xd4\xf5\x3e\x2a\x3b\xb9\x9d\xbe\x1a\x7b\x71\ -\x87\xa0\x2a\x65\x73\xec\x40\x62\x8a\x81\xac\xe8\x2f\xba\xa7\x7c\ -\xea\xa2\x8c\x99\xac\x4f\x6a\x0a\x25\x66\xfd\xd7\x71\xc5\xa9\x0b\ -\x8b\x70\x52\x37\x79\x1f\x77\x52\x91\xd6\x3b\x77\xa0\xd1\x2a\x52\ -\xb9\xd2\x03\x9d\xb4\x52\x2b\x03\x96\x26\xdb\x44\xa3\xd5\x35\xee\ -\xa0\xb4\x18\xb7\x14\xd7\x6b\xa4\xa5\x95\xef\xf5\x53\x9a\x8a\x55\ -\x1c\xc6\xf7\x48\x88\xd9\x71\x53\x44\x55\x09\xf1\x63\x02\xb7\x27\ -\xa4\x9b\x3b\xa6\xee\x07\xfe\xde\x4d\xf6\x28\x45\xc8\x7b\xdb\xbd\ -\x27\x31\x7f\x9d\xb6\xc3\xbd\xf1\x0e\xf7\xbe\x8d\x0e\xf7\x24\x74\ -\xb8\x27\xb9\xc3\x75\x15\x3b\x9c\x2c\xa3\x23\x1c\x38\x4a\x86\x8a\ -\x63\x8e\xe2\x43\x99\x32\x06\x0d\x46\x1d\x25\x92\x28\xe3\xec\x38\ -\xc4\x41\xad\x8a\xf6\xb8\x02\xe2\xe8\x24\x20\x58\x2c\x20\x0a\xc6\ -\xa1\xce\x7d\x48\xd0\xf0\x54\xc3\xa2\x94\x4d\x08\x6a\x1d\xea\xec\ -\x35\x86\xd0\x86\x9e\x97\x34\x34\x8a\xde\xe8\xc8\xef\x3d\xc4\x91\ -\xd9\xbe\x35\x7d\x47\xe1\x72\x22\x22\xee\x22\x5d\xa7\x43\x64\x24\ -\x41\x14\x78\x76\x71\x39\xa8\x7c\x2b\x1e\xab\x4c\xc6\xc8\x54\x50\ -\xd1\xbd\xde\x62\x77\x5d\x18\x23\xf3\x93\xc6\x2f\x97\x86\x40\x7f\ -\xc7\x70\x32\x98\x8a\xa3\x98\x8b\x21\x92\x93\x36\x61\x17\xe6\xea\ -\x85\x9e\xcc\x97\x13\x74\x99\x2c\x33\xbb\x38\x5c\xc8\x88\x34\x82\ -\x45\xd3\x94\x76\xb6\x5c\x30\xbd\x68\xa1\xab\x38\x9a\x32\xe4\x03\ -\xe8\x41\x88\x70\xe6\x4b\x40\xa0\x1d\x48\xad\x17\xa3\xf0\xe3\xa8\ -\x65\xc0\x81\x65\xbd\xa2\xa8\x98\x03\x03\x30\x54\xd2\x78\xdf\x5a\ -\x12\x2d\xbe\x6a\xea\x47\x65\xb8\x36\xa1\xee\xaa\x4f\xdb\xef\x39\ -\x69\xd1\x28\x51\x7b\x49\x62\x5b\x86\xb4\x15\x5c\x38\x10\x29\x22\ -\xa5\xdb\x40\x68\xa8\x4b\xec\xe0\x89\x1b\xef\x2c\xaf\x52\xe4\x75\ -\x82\xca\x2c\x4d\x79\x32\x94\x92\x62\x03\xee\xd0\x10\xbd\x62\x2a\ -\x74\xcf\xec\x16\x7e\xf5\x49\xa8\x4c\x70\x80\xf9\x1d\x2a\x8c\x31\ -\x00\x34\x1e\xc3\x4c\xb8\x12\x3d\x39\x54\x14\xdf\x2b\xda\x21\x2f\ -\xa7\x38\x9e\xec\xd5\x62\x63\x0b\x68\xf9\x3a\x92\x0a\xd6\x34\xf2\ -\x3d\x98\x60\xae\x0f\xec\xd8\x7c\xfc\xde\x68\x08\x2c\x43\x76\x0a\ -\x9a\x54\x50\xee\x8c\xd3\xd6\x3d\xa2\xfc\x3d\x54\x60\xa3\x2e\xeb\ -\x10\x21\xf5\x30\x9c\x2c\x1e\x18\xde\x0c\x27\xa9\x8f\xc7\x30\xc5\ -\xa9\x0a\x1e\x11\x07\xf9\xd2\x48\x20\x3b\x21\x2e\xbe\x21\xae\xc0\ -\x23\xa9\xfa\x51\x87\x14\x17\xbb\x34\x0c\xbc\x9b\xd6\xe5\xb3\xe8\ -\xa6\xbc\x80\x43\xec\x64\x65\x41\x60\x7a\xa2\x02\xa5\x77\x1a\xf8\ -\x44\x03\xce\x67\x81\x4f\x65\xa5\x68\xf5\xa0\x1d\xbb\xa2\x48\x5b\ -\x39\x29\xa3\x59\xbc\x8c\x57\xcf\xd2\x29\x56\x3b\x82\x96\x07\x4e\ -\xc5\x68\xb3\x45\x71\x21\x49\xaa\x55\xcb\x60\x17\x49\xa5\x6a\x33\ -\xb4\x5a\xe9\xaa\x68\x91\xf4\x99\x89\xb5\xb7\xd4\xba\x50\x66\xdd\ -\xa4\x2e\x9a\x52\x28\xbb\xb5\x13\x30\x29\x46\x95\xa7\x16\x19\xb3\ -\x26\x64\x0c\xcd\xd8\xbd\x27\xe1\xf7\xbd\xda\xef\x7b\x63\x13\x52\ -\xad\xab\xa2\x8d\x2b\x4d\x68\xcf\xf4\x27\xb4\x27\xfd\x84\x74\xdb\ -\x69\xc6\x9e\x38\xc0\xea\xd7\xaa\xe8\x8f\x95\x00\xde\x3b\x7d\x80\ -\xf7\xa6\x05\x78\x01\xcf\x27\xea\x57\x57\xa9\x4d\x22\x5a\x2c\xcc\ -\x64\xdb\x3b\x78\x3e\xa0\x3b\xb6\x75\x43\x3f\x65\x3a\x21\x13\x21\ -\xbd\x83\xc9\xf7\xb6\x1c\x86\x5d\x82\xe8\x64\x59\x87\x75\xa6\x1e\ -\x6b\xfe\x4f\xf2\x87\xa0\xb8\ -\x00\x00\x33\xa7\ -\x00\ -\x00\xb9\x55\x78\x9c\xc5\x7d\x09\x78\x1c\xc5\x95\x70\xe9\x96\x46\ -\x97\x31\x60\x6e\x68\x0b\x63\xcb\x46\x96\x8d\x8d\xb1\x2d\x4e\x5b\ -\xb2\x6c\x13\x5f\x58\xc2\xd8\x0e\x01\xb7\x66\x7a\xa4\xb6\x47\xd3\ -\x43\x77\x8f\x0e\x87\x75\x80\x70\x86\x2b\x6c\x08\x67\xc2\x9a\x33\ -\x40\x20\x21\x5f\x92\xfd\xc3\xbf\x4b\xb2\x21\x81\x0d\xb0\x6c\x58\ -\x96\xb0\x81\x6c\x12\x93\x84\x2c\x22\x09\x64\xf9\x73\x6d\xce\xff\ -\xd5\xab\xaa\xae\xaa\xee\x9e\x51\x4b\xc0\xe6\xf3\x07\xa3\xe9\xe9\ -\xaa\x7a\xf5\xea\xd5\xbb\xeb\xd5\x69\x5f\xc9\x1c\xfe\xec\xdb\x9f\ -\xfa\xe4\xf3\xb3\x8f\xfe\xda\xae\xbb\x9f\xf8\xfe\x6a\x42\x1a\x6e\ -\x23\x84\x6c\x27\xe4\x91\xdf\xc1\xe7\x0e\x42\x1e\x7d\x0a\x3e\x77\ -\x12\xf2\x39\x97\x90\x9a\x57\xe0\xfb\x15\xf0\xf9\x2a\x7c\xde\x0f\ -\x9f\x6f\xc2\xf3\xad\x84\xd4\x8d\x11\x32\xf2\x31\x42\xd6\x7d\x94\ -\x90\x2a\x9b\x7d\xfe\xcd\x26\x42\x86\x4e\x26\xa4\xf0\x28\xa9\x7e\ -\x60\x9c\x90\x4b\x2e\x25\xd5\xff\x50\x4d\x48\xd3\x12\xf6\x79\xc5\ -\x12\x52\xb3\x78\x0d\x21\x2d\x9f\x64\x9f\xb7\xfe\x37\xa9\xe9\x85\ -\xb1\x5a\x9e\x64\x9f\xb7\xdd\x4d\x6a\xb6\xc1\xf3\xb3\xff\x8b\x7d\ -\xde\xf6\x6d\x52\xf3\xc8\xaf\x08\x39\xf2\x55\x52\xf3\x95\x3f\x11\ -\xf2\x70\x9e\xd4\x7c\xfb\x9f\x09\xf9\xec\xe1\xa4\xe6\x00\xc0\x34\ -\xe7\xdf\x48\xed\x67\xaf\x23\xc4\x5d\x46\x66\x5c\xbe\x9e\x90\xf3\ -\x7e\x41\x66\xd6\xfc\x5f\x42\x1e\x18\x20\xb3\x9e\x06\x78\xaf\xbd\ -\x8b\x2c\xa0\x70\x8c\xdf\x40\x4e\xfc\xe6\xe7\x09\xd9\x3b\x42\x4e\ -\x3c\x60\xc1\xe7\xfd\x64\xe5\x0f\x97\x12\xb2\x82\x90\xd3\xef\x3e\ -\x82\x90\x7d\xb7\x90\x33\x3e\x01\xf0\xaf\x3c\x83\xac\xbb\xf1\x62\ -\x42\xe6\x3d\x41\x3e\x90\x5d\x46\xc8\xc9\x7f\x86\xcf\xe5\x84\x2c\ -\xeb\x86\xcf\x95\xf0\x79\x35\xf9\xc0\x55\x2f\x11\x72\xf9\x07\xc9\ -\x79\xbb\xfa\x09\xb9\xa7\x99\x6c\xff\x13\xc0\xb7\x69\x8c\xec\xb8\ -\xed\x04\x42\x0e\xed\x60\x9f\xf7\x9a\x64\xf7\xf6\x3b\x08\xb9\xf3\ -\x08\x32\xfe\x36\xbc\x3f\xf2\x24\xd9\xf7\x91\x16\x42\x72\xaf\x92\ -\x8f\x1d\xff\x49\x42\x4e\xfc\x32\x7c\xde\x0a\x9f\x7f\x81\xcf\xdb\ -\x09\xe9\x58\x4f\x6e\xfa\xc7\x09\xc0\xc3\xaf\xc9\x03\xcb\xcf\x24\ -\x64\xc1\x2e\xf2\xf0\x25\xd0\xcf\x47\xaf\x22\x4f\xff\x38\x4f\xc8\ -\xdc\xe5\xe4\xb9\x07\x0f\x21\xa4\x78\x1d\xf9\x23\x79\x96\x90\x4f\ -\xf4\x56\xcc\x7e\x19\xe0\xd9\xf6\x64\x45\xdb\x97\xfe\x07\xc6\xbd\ -\xb0\x62\xd1\x0d\xfb\x08\x19\xf8\x4a\xc5\xba\x3f\xdf\x0b\xf3\xf8\ -\x97\x8a\xbe\xff\xf7\x30\x21\x57\xdf\x51\xb1\x6d\xd6\xd9\x84\xfc\ -\xed\x53\x15\x83\xcd\xb0\x56\xd7\x5f\x51\x61\x1f\xb4\x97\x90\xbf\ -\xdb\x5f\x71\xd9\xca\x14\xc0\xf7\x9d\x8a\x6b\x87\x8a\x84\x3c\xf4\ -\x8b\x8a\xbb\x3f\x92\x26\xe4\x98\x6b\x2b\xbe\xfe\xca\x0f\x60\xe9\ -\xb7\x57\xbc\x78\xe3\xbf\x13\xb2\x79\x5e\xc5\x0f\x0f\xea\x86\x35\ -\x7f\xa1\xe2\x47\xbf\x02\x7a\xb8\xff\xb5\x8a\x3f\x7e\x0e\x9e\x8f\ -\xfc\xa5\xb2\xe6\xab\x00\xdf\x65\x33\x2b\x7b\xb7\x43\x3f\x77\x7d\ -\xb7\xd2\x7a\x74\x80\x90\xcf\x9f\x5d\x99\xaf\xfb\x11\x21\xe7\x7c\ -\xbf\x72\x64\xce\xc1\x84\x9c\x71\x4c\xe5\xdf\x1c\x38\x97\x90\xad\ -\x9f\xae\xbc\xb9\xf7\x48\x18\xcf\xad\xfc\x4c\xc7\xa1\x84\x54\xef\ -\xaa\x7c\xf8\x14\xc0\xc3\xf8\xfc\xca\x2f\xfc\x12\xd6\xeb\xc6\x91\ -\xca\xaf\x3d\x7c\x03\x21\xa7\xf9\x95\xff\x94\x7d\x87\x90\x0b\xee\ -\xab\xfc\xd6\x99\xbf\x26\x64\xf7\x78\xe5\x2b\xf7\x3d\x0e\xf4\xb4\ -\xab\xf2\x7b\x47\xde\x0c\x34\x77\x51\x55\xc5\xe5\xdf\x24\xe4\xe6\ -\x83\xab\x66\xde\xba\x9b\x90\x9b\xde\xac\x3a\xf2\x10\xc0\xcb\x92\ -\x5d\x55\x47\xce\x02\xba\xed\xdb\x58\xb5\xe8\x48\x78\xfe\x61\xa3\ -\x6a\xdf\xb3\x5f\x26\x64\xcd\x0b\x55\x57\x1f\x07\xf8\xef\x7d\xbc\ -\xea\xae\xed\x40\xbb\x64\x43\xd5\x17\xef\xfa\x3d\x21\x9f\xba\xb1\ -\xea\xcb\xdf\x82\xf5\xb9\x6b\x76\xd5\x13\x2f\xfd\x04\xde\xff\x4e\ -\xd5\x37\x4f\x83\xf1\xf6\x9d\x5d\xf5\xd4\x77\x2e\x80\xfd\xf0\x8d\ -\xaa\xe7\x9a\x5f\x87\x75\xbc\xa1\xea\x3f\x9b\xa0\xfd\xf8\x5b\x55\ -\xef\x14\x80\x1e\x3a\xff\xad\xea\x9d\x27\x76\x11\x32\xeb\x7b\x55\ -\x7f\x68\x05\x7a\x3e\xe9\x40\xf5\xec\xe3\x8f\x27\xa4\xed\xd4\xea\ -\x6d\xb5\x9f\x20\x64\xd1\xf7\xaa\x77\x5d\x0c\xf3\xbb\x67\x57\xf5\ -\xf8\xdb\xd0\xff\x0d\x4f\x55\x5f\x36\x0a\xf4\xb1\x75\x55\xf5\x55\ -\xff\x73\x17\x21\x9f\x9c\x55\x7d\xdd\xcb\x9f\x83\x3d\x72\x5b\xf5\ -\xfe\x8f\x01\xfe\x6a\x3e\xcd\x3e\x3f\x72\x6b\xf5\x7d\x27\x01\x7e\ -\x6f\xfd\x70\xf5\x83\x3f\x03\xba\x5e\xf6\x7c\xf5\x6b\xf9\x1f\x13\ -\x92\x3a\xb5\xfa\x27\xad\xb0\x3e\x95\x7f\xa9\xfe\xd9\xaa\x6f\x40\ -\xff\xfd\xd5\x6f\xbf\xf2\x20\x21\x1b\xbf\x5b\x53\xf5\x51\xc0\x9f\ -\xeb\xd5\xd4\x3c\x07\x78\xee\xb9\xb2\xa6\xf5\x1d\x9f\x90\x3b\xda\ -\x6b\x8e\x9a\x01\x78\x58\xb7\xb7\x66\xc1\xeb\x40\x5f\x5b\xe6\xd7\ -\xf4\x9c\x7a\x21\x21\xfe\x95\x35\xe7\xbf\x02\x78\x9b\xd1\xc3\x3e\ -\x6f\x3f\xa3\x26\xfd\x1b\x80\x77\xd3\xe3\x35\xd6\x5b\xb0\x1f\xae\ -\xaa\xae\xb9\xea\x31\xe8\xff\x9e\x53\x6a\x6e\x79\x10\xf0\x74\xf0\ -\x63\xec\xf3\xde\xa5\x35\x8f\x7e\x00\x9e\xf7\x76\xd4\x3c\x5e\xf5\ -\x2d\x42\x8e\xab\xad\x79\xa2\x09\xd6\xeb\x9a\xf5\x35\x4f\xdc\x00\ -\x74\x32\xd8\x52\xf3\xd5\x6d\xd0\xcf\xc6\xdd\x35\x4f\x6d\xa1\xfb\ -\xdc\xac\x79\xfd\x86\x4e\x42\x0e\xba\xbc\xe6\x0f\xff\x09\xfb\xa9\ -\xe7\xad\xda\x63\x7f\x0a\xeb\xf0\xd0\x09\xb5\xf3\xdf\x7a\x08\xe6\ -\xf9\x8d\xda\x25\x3f\x86\x79\x5d\x7e\x79\xed\x79\x47\x00\x5e\x08\ -\xa9\xdd\xf9\x36\xe0\x6b\xfc\xbc\xda\x0f\xbe\x08\xef\xad\x5a\x5a\ -\x9b\xbb\x1a\xe8\x60\xf5\x17\x6a\xfd\x63\x80\x6e\x76\x3c\x56\x7b\ -\xed\x2d\x3d\x84\x34\xb7\xd6\xde\xba\xfd\x19\x58\xdf\xdf\xd7\xfe\ -\xe3\x25\x00\xd7\xb1\x37\xd5\x3e\xf3\x95\x1a\x42\x2e\x3e\xb7\xf6\ -\x8d\x1a\xe0\x39\x75\x95\xb5\x6f\x3d\x7c\x1e\x21\x0f\x92\xda\x5f\ -\x3e\x07\xf8\x3c\xfa\xdc\xda\xdf\xff\x05\xe0\x5e\x73\x7e\xed\x1f\ -\x8f\x04\xfa\x58\x5e\x57\xfb\xc7\xfd\x40\xff\x77\x0c\xd7\xd5\x7f\ -\x1c\xd6\x75\xe1\xdc\xba\xe6\xff\xf3\x5b\x42\x4e\xbd\xb3\xae\xe5\ -\xca\x33\xe0\xfd\xa7\xeb\x96\x0d\xc1\x3e\x3b\x7c\x56\xdd\xb2\x37\ -\x60\xdd\xfe\xee\xed\xba\x9e\x55\x0b\x60\xff\xd4\xd5\x9d\x7d\x1c\ -\xec\x8b\xca\xda\xba\x8d\x5e\x1b\xf0\xa3\x23\xea\x36\x3d\x00\xf4\ -\x79\xc5\xb5\x75\xdb\x9f\x7b\x03\xbe\x7f\xa8\x2e\xfd\x67\xd8\xd7\ -\x33\xed\xba\x4b\x9e\xfe\x22\xf0\xcf\xc7\xea\xae\x76\x61\x1d\xff\ -\xe6\xa2\xba\x7b\x7f\x02\xcf\x8f\x7f\xae\xee\xeb\x7f\x84\xf5\x59\ -\xfc\x48\xfd\xbc\x2f\x01\xde\x3e\xfd\x70\xfd\x92\x6f\xc2\xbe\xdc\ -\xff\x62\xfd\x29\x3e\xc0\x75\xc2\x5b\xf5\x3d\x8f\x03\x9e\x96\x7f\ -\xac\x7e\xfd\x33\x8b\x09\x39\x6c\x65\xbd\x79\x31\xf4\x73\xdc\xca\ -\xfa\x7b\x9e\x1d\x04\xba\xf9\x4b\xfd\xbd\x07\x80\x4f\x5d\xf2\x50\ -\xfd\x17\x0e\x6d\x07\x7a\x4b\xd7\x7f\xa9\x1a\xf0\x7c\xcf\x83\xf5\ -\x2f\x2c\x01\xfc\x5d\x71\x7e\xfd\x4b\xcf\x03\xef\xbd\xe2\xf9\xfa\ -\xd7\xee\xfc\x2a\x21\x47\x5d\x55\xff\xda\xd7\x81\xbe\xaf\x5a\x5b\ -\xff\xb3\xeb\x61\x9f\x3f\xd2\xd7\x60\xbc\x3a\x07\xf8\xf6\x8f\xe0\ -\xf3\x4b\xc0\xb7\x6f\x84\x4f\xa0\xe7\x47\x0f\x6d\xd8\x78\x0b\xf0\ -\xf5\xb9\x3f\x68\xb0\x5e\x05\xbc\x5c\x7b\x62\xc3\x50\xf3\x7c\x42\ -\x6e\x39\xa3\xe1\xa2\xeb\x01\x7f\xb5\x7f\xdf\x50\x3c\x1e\xe0\xdb\ -\xfb\x52\xc3\xc8\x2f\x80\x9f\xef\x79\xb9\xe1\xca\x07\x00\xdf\x27\ -\x54\x36\x5c\x7b\x3c\xcc\xe3\xee\x33\x1b\xee\xfa\x13\xf0\x9b\xdc\ -\x92\x86\xbf\x5f\x00\xf8\x39\xe5\xcc\x86\xe7\x8f\x86\xf5\xba\xf7\ -\x9d\x86\x17\x67\x83\x7c\x48\x3f\xd1\xf0\xfa\xf1\x30\xff\x0f\x5d\ -\xda\xf0\xf3\x13\x81\x8f\x37\x3d\xd1\xf0\xf6\x52\xe0\x4b\x47\x9c\ -\xd0\xf0\xcb\xe3\x00\xcf\x55\x1f\x6f\xf8\xd3\x1a\xe0\x07\x9f\x5a\ -\x91\x6a\xf8\x3a\xe5\x47\xa7\xa6\xda\xef\x00\x3a\xdc\xf2\x5d\xf8\ -\x84\x79\x9f\xb3\x08\x3e\x61\x5e\xe7\x5c\x99\x5a\xf8\x55\xd8\x9f\ -\x4b\x5e\x4b\x2d\x7b\x08\xe6\xf5\xf1\x39\xa9\x33\xe7\x01\x9d\x5f\ -\xb6\x2b\x75\xe6\x1e\x80\xe7\xb2\xbb\x53\xeb\xef\x07\xfe\xf6\xd0\ -\x50\x6a\xd7\x01\xa0\xa3\x79\x7f\x86\xcf\xc3\x08\x69\xb7\xe1\x13\ -\xf8\x7a\xfb\x4b\x29\xeb\x4e\x80\xe7\xf6\x7c\x6a\xac\xe6\x12\x42\ -\x2a\xfa\x52\x1f\xb9\x11\xc6\x39\xf3\x92\xd4\x6d\x57\x1e\x0e\x7c\ -\xf7\x13\xa9\xdb\xcf\x87\xf5\xb8\xfb\xfe\xd4\x83\xb3\x60\x3f\x1d\ -\x7c\x51\xea\xa1\x6b\x7e\x4e\xc8\xda\x05\xa9\x6f\x9d\x0f\xfb\x68\ -\xc6\x87\x53\x2f\x6c\xf9\x0a\xd0\xe7\x3f\xa4\x5e\xf8\x29\xf0\x87\ -\xc3\x5f\x4e\xbd\xfc\xdf\x00\xc7\xe5\x5f\x4f\xfd\xec\xa6\xab\x01\ -\x2f\x47\x35\xd6\x8d\x01\xfe\x3e\x76\x65\xe3\x51\x07\x3c\x42\xfa\ -\xf7\x36\xce\xf9\x34\xe0\xf9\xdc\xcf\x36\xce\x79\x0a\xe8\xf5\xe0\ -\xd7\x1b\xe7\xee\x03\x3c\x5c\x7a\x59\xe3\x89\x5b\xa0\xdd\x0d\xed\ -\x8d\x0b\xbf\x08\xfc\xda\x79\xb2\x71\xb9\x07\xf3\xfb\xec\x69\x8d\ -\x67\x9d\x05\xf4\xb7\xee\x37\x8d\xdd\xcf\x03\xbc\x6b\x1f\x6e\xcc\ -\xb6\xbf\x08\x7c\xef\xe9\xc6\xab\x0f\xd4\x11\xd2\x78\x46\xe3\xcd\ -\x3d\x20\x17\x97\x9e\xdf\xf8\xe4\xed\xc0\xd7\xae\xf9\xe7\xc6\x7f\ -\x9f\x07\xfc\xa3\xfa\x8e\xc6\x97\xf6\x01\x3f\x69\xf4\x1a\x7f\xfd\ -\x56\x1f\xd0\xe1\x6f\x9b\x6a\xb7\xc0\xbe\x6b\xbe\xa5\xa9\xbe\x17\ -\xf8\xd1\x47\x57\x34\x1d\xf1\x7b\x90\x2b\x57\x5e\xd8\xd4\x7e\x27\ -\xe0\x7f\x6f\x77\xd3\x49\xfb\x00\x4f\x9f\x7a\xa3\x69\xc5\x46\xa0\ -\xff\xba\x6f\x36\x75\xcd\x7a\x01\xe4\xea\x92\xa6\x9d\xff\x04\xfb\ -\x7a\xdf\xe1\x4d\xf9\xab\x60\x7e\xc7\x5f\xde\x74\xd3\x7e\x58\x8f\ -\x07\x9f\x6e\xba\xe5\xe3\x94\x8f\x1c\xd4\xf4\xec\xf7\x01\xee\x07\ -\xde\x6a\x7a\xf9\xed\x99\x40\xc7\xeb\x9b\x7e\x70\x3b\xc8\xd9\xc2\ -\xcc\xa6\x5f\xfe\x00\xf0\x76\xdd\x33\xcd\x47\xff\xe6\x2d\xe0\x8b\ -\x0d\xcd\x5d\x39\x4a\xdf\xbd\xcd\x6b\x7e\x04\x70\xde\x9f\x6b\xde\ -\x71\x37\x8c\xfb\xd1\xc7\x9b\x77\x3e\x0a\xf4\x7b\xf1\x2b\xcd\x17\ -\xfc\x17\xac\xfb\xfc\x33\x9b\x33\xf7\x03\xdd\x99\x2f\x34\x0f\xff\ -\x0e\xe8\xb7\xfe\xaa\xe6\x91\x2f\xff\x2d\xb4\xbf\xb0\xf9\xce\x9f\ -\x03\xbe\x76\x1c\xd3\x7c\xff\x2b\xc0\xe7\x17\x3e\xd0\xfc\xc0\xab\ -\xf7\x81\x1e\x90\x6e\x7e\xfa\x69\xd8\x87\xfb\x2f\x68\x7e\x67\x25\ -\xf4\x7f\x53\x5d\xcb\x89\xd5\xb0\xce\x97\x9e\xde\xd2\xf1\x13\x78\ -\x7e\xdf\x6f\x5b\x36\xfd\x0b\xe0\xa7\xe1\x77\x2d\xce\x1d\x40\x4f\ -\x9f\xb9\xb8\xe5\xc3\x7b\x3b\x40\x6e\x8f\xb5\xdc\xb8\x1b\xe4\xf6\ -\x8a\x17\x5b\x6e\xb2\x60\x5e\x47\xd5\xb5\x3c\xfb\x1f\x40\xc7\xb3\ -\x8f\x69\x41\x3a\xbd\x6f\x3d\x7c\x02\x1d\xdc\xb7\xbf\xe5\xcd\xd7\ -\xab\x08\x19\xfd\x5c\xcb\x2f\x5e\x83\x75\xf9\xc0\xbc\xd6\xba\xeb\ -\x81\x3f\x8d\xed\x6e\x3d\xec\x32\xe0\x2b\xe4\xb7\xad\xc7\x5d\x0f\ -\xfc\xe6\x92\xd7\x5b\x37\x17\xbb\x60\xff\xfc\xa5\xf5\xc2\x67\xbf\ -\x03\xeb\xf1\x1f\xad\xc5\xc7\x40\xfe\x5f\xf6\x83\xd6\xd1\x6f\xc0\ -\x7a\x17\xde\x68\xbd\xa6\x11\xf6\xdf\x07\xae\x6f\xbd\xf1\xc1\xcf\ -\x00\x9d\x3f\xdf\x7a\x5b\x0a\xe4\xf3\xc3\x77\xb4\xde\xf5\xf3\xfd\ -\xc0\x1f\xee\x69\xfd\xda\x55\x40\xff\xb7\x2e\x6a\x7d\xfe\x5f\x81\ -\xce\x56\x0c\xb5\xfe\x70\x36\xdd\x4f\x37\xb6\xfe\xa6\xf6\x58\x80\ -\xeb\x8a\xd6\xdf\xcc\x07\x39\x7a\xf1\x35\xad\xbf\x1d\xa5\x78\x6d\ -\x6b\xfd\xc3\x85\xb0\xce\x97\x7e\x0b\x88\xe4\xf3\xf7\x02\x84\xc4\ -\x20\xab\xc8\x6e\xe2\x90\x22\xf1\x89\x45\x5c\xf8\x5e\x24\x79\xf8\ -\x7f\x01\x9e\xd9\xf0\x97\x5f\x8f\xec\x14\xfe\x6b\x58\x95\xc9\x18\ -\x5b\x1c\x3b\xef\x03\x05\x91\x96\x1e\xd7\xcc\xfa\x17\xc2\x33\x7c\ -\x54\x41\xfb\xda\xa5\xf5\x15\xe9\x09\xfe\x3e\x10\x3c\xcd\xc2\xb3\ -\x1c\x31\xe1\xff\x2e\xbe\x4b\x5b\x19\x64\x80\x78\xf0\x7e\x0e\xdf\ -\xa7\x4f\x2d\x32\x06\x7f\x7b\xd0\xd6\xd4\x60\x69\x87\x71\x3d\xc3\ -\x34\x0a\x74\x6c\xc3\x77\x0c\x33\x6f\x58\x63\xb6\xe7\xdb\xf9\x41\ -\x63\xd4\x76\xad\x45\x03\x5e\x21\x67\xe7\xad\x52\xa0\xb6\x47\xa6\ -\x6d\x22\x00\x83\xf0\x37\x7d\x5a\x80\xa7\x9d\xf4\x5f\x30\x64\x2b\ -\x9d\x3e\x8c\x34\xe8\x3a\xc5\x42\x67\x67\x27\xed\x79\x46\xd0\x73\ -\xbf\xb3\x96\x3e\xc7\xbe\x2f\x08\xa1\x21\x47\xe6\xc1\xb7\x01\x78\ -\x66\x21\x12\x3c\x32\x01\xcf\x2c\x92\x86\x6f\x36\xfc\x92\x87\x7f\ -\x13\x1a\x72\x54\x28\x4a\x23\x61\x31\x22\xc1\x1f\xb2\x0c\xcf\xca\ -\x59\x69\xdf\xca\x18\xce\xc0\x6e\xf8\xa3\xdd\x9b\x1f\xc6\x09\x42\ -\x5d\x1a\xe4\x4f\x01\xc8\x05\x8e\xf9\x8b\x60\x60\x86\x12\x0a\xf8\ -\x04\x3c\x35\x71\x78\x0f\x9e\x16\xf1\x39\x9b\x06\x5d\x3d\x03\x26\ -\x41\x01\xcd\x05\xbf\x65\xf8\x94\x6d\x98\x04\x5b\x43\x13\x27\x4a\ -\xfb\xcc\xe1\x7b\x1e\x47\xf6\x18\xae\xba\x40\x8b\x57\x12\x31\x5e\ -\x30\xe1\x15\xab\x0a\xb0\xa8\x96\x67\xa4\x8b\xae\x6b\xc1\xc2\xd3\ -\x15\x86\xe5\xce\xf8\x43\x30\xd9\x8c\x91\x76\x72\x8e\x4b\x67\x1e\ -\xc2\x87\xa7\x4e\x1c\xba\x18\xef\xf3\xc7\x73\x16\x4e\x7c\x49\x89\ -\x89\x5b\x08\x8e\x4f\xc6\xf9\xdf\xca\x24\x02\x70\x0e\xc6\xbe\x8c\ -\x6e\x0e\x0c\x76\x5a\x7a\xa4\x5a\x18\xc9\x25\xe9\xa0\x75\xd5\x2a\ -\x37\x4d\xdf\x6e\xe0\x6f\xbb\x69\x7c\xed\x32\xd2\x0d\xaf\x4d\x28\ -\xfb\xc7\xa4\xcd\x80\x14\x0d\xf8\xa5\x9f\x6c\x25\x1b\xf8\x9e\x2a\ -\x72\xb2\x4d\xc3\x3f\x4a\x2e\x69\x32\xa4\x90\x72\x18\xbb\x1d\xf0\ -\x7d\x23\x80\x70\xb6\xd6\x3a\x8d\x58\xf6\xe1\x6f\x13\xf7\x5c\x86\ -\xee\x46\x49\x60\xdd\xae\x65\xfa\x80\x6f\xa0\x24\xd3\x4d\x77\x1a\ -\xdd\xfd\x5b\x37\x20\x7e\xf3\x66\xa1\xc3\xe8\x5b\xb7\xbe\xb7\x9f\ -\x7e\x4d\x3b\x79\xcf\x77\x4d\x3b\x1f\x33\x9f\x19\x64\x35\x59\x48\ -\xfa\xe4\xae\x0e\x7a\xaf\x5f\xbd\xb0\x2f\xd8\xa3\xcd\xac\xd5\x6a\ -\xf6\x04\x5b\xde\x15\xc2\x04\xfd\x0c\xf5\xc5\x37\x0d\xfd\x5e\x84\ -\x39\xda\x9c\x0a\x3d\x8d\xeb\x78\x53\xc0\x1d\xc3\x12\x58\x59\x53\ -\xc0\x52\x77\x80\x25\x63\xb8\x98\xf3\xed\x42\xce\x5a\xc8\xf8\xd2\ -\xc0\x42\xc6\x84\x92\x21\x2e\x06\x05\x4d\x00\xb6\x85\xcb\x9f\x53\ -\x06\xac\xed\xb6\xdd\x34\x23\xb5\x26\xd6\x86\x3d\xc0\x26\x57\x47\ -\xe8\x27\x2d\xbb\xf8\xab\x50\xd1\xe9\x12\x3f\x69\x84\x33\x8c\x8e\ -\x55\x1b\xfa\xe5\xa6\x35\x7c\x33\x3f\x48\xb7\x93\xb2\x75\xa3\xb3\ -\x3c\x96\xf4\x22\x94\xc3\xc1\x86\x35\x55\xae\x13\x8c\x9d\xea\xce\ -\x39\x9e\x65\x6c\xe0\x54\xd6\xca\x3b\xa2\x0f\x37\x08\x24\x2f\x2e\ -\xdf\x57\x94\x83\x05\xbd\x1f\x85\x1d\x31\x16\x8c\xac\x68\xc0\xa2\ -\xbc\x36\xe3\x9a\xa3\xf9\x92\xc3\xcd\x01\x02\x2e\x22\xcf\x71\x61\ -\x08\x31\x68\x29\xa1\xdb\xb4\xd5\x1a\x76\x46\xac\x88\xdc\xed\xb1\ -\x72\x52\x98\x15\x22\x5d\xc6\xc9\xde\x0c\x70\xf3\x72\xb2\x57\xfc\ -\x6e\x4d\x41\x0e\x2f\x66\xe0\x49\x51\x9c\x75\x9d\xe1\x88\x30\x36\ -\x80\x2b\x47\xe5\xb1\x36\x85\x67\x63\x36\x3b\x25\x2b\xff\x7f\x97\ -\x68\xf1\xdd\x55\x30\x4e\xbf\xf6\x6e\x9c\x60\x52\xd7\x8d\x8a\xc6\ -\x41\x44\xbc\x8a\x9c\x4d\x92\xf0\x33\xf6\xb0\x95\xf7\x6c\x27\x3f\ -\x39\x2b\x08\xef\x07\x13\xfe\x18\x84\xd6\xbe\x42\x51\x3d\xa2\x3b\ -\xc4\x5d\x3d\x60\x07\x31\x25\x55\xb5\xe0\x85\x92\x8d\x66\x01\x3a\ -\x27\x70\xfa\x0e\xaa\x1b\x26\x4a\x6e\x57\xe9\xc2\x19\xcd\x0f\xba\ -\x66\x46\xdd\x38\xc1\x33\xec\xe2\x0e\xf2\x0c\xb2\x15\x33\xd0\x73\ -\x98\x70\x4f\x24\xd4\x91\xa8\xf2\x91\xb7\x05\x2b\x37\x90\x9d\x0f\ -\xe3\x77\x8b\xaf\x21\x23\x53\x0f\x3f\xbd\x60\xe5\x7c\x65\xe4\x2c\ -\xd2\x84\xa5\xa8\x0c\x6b\xd6\x8c\x15\x72\x4e\xc6\x8a\xd5\x93\x3c\ -\x03\xc8\x0f\x10\x6d\x0f\x03\xcf\x76\xc5\xc3\x0e\x4a\xae\x5e\x71\ -\x00\x56\x03\xd0\x9f\x35\xd3\x96\x57\x12\x05\x4d\xa4\x07\x87\xa6\ -\xc0\xe6\x83\x41\xeb\xe0\xd5\x51\x20\x7e\x85\xab\xf3\x27\x7c\xbb\ -\x6e\x41\xac\xa5\xa7\x85\x35\x8f\xd3\xa4\xd8\x25\x59\x14\x7a\x36\ -\x57\xae\x84\x02\x96\x91\x60\x29\x3a\xec\xc2\x2d\x45\xbf\x04\x26\ -\x1c\x10\xf1\x06\x87\xd2\xf0\x86\x2c\xcb\xef\x2c\x01\x7e\x13\x2c\ -\x7b\x06\x11\xaf\xd2\x4b\xf5\x9a\x8c\x8d\x24\x9a\x62\x2d\xe8\x57\ -\x7c\x7d\xae\xf2\x7a\x54\x17\x36\xf9\x0c\xb3\x41\x47\x87\xd1\x96\ -\x0c\x48\xc0\xbf\x0d\xbc\x8f\x81\x18\xd7\x77\x1b\xec\x53\xc6\xba\ -\xed\x60\x47\x96\x12\x05\x8d\xbd\x76\xde\xf6\x86\x0c\xc1\x85\xb8\ -\x96\xc6\x9e\x06\xdc\xf9\xac\xc9\x7b\xc4\x35\xa0\x6c\xd0\x0b\x7e\ -\xcb\x4a\x01\x12\x8c\xd7\xc6\x7a\xc6\xed\xcf\xf5\x54\x7f\xc8\x29\ -\xfa\x46\x1a\xc4\x01\x45\x32\x43\x57\x3c\x18\x0f\xc6\xb0\x43\x15\ -\x80\x02\x6a\x85\x6c\x99\x19\xc3\x9b\x9e\xbe\x53\x8e\x61\x4e\x4d\ -\x0b\x5a\x21\x99\xdd\x12\xae\xfe\x24\x57\x7d\xf8\xba\x06\xd3\x4f\ -\x01\xe0\xe1\xf5\xab\x16\x42\x3c\xfc\xf2\x0c\xd8\x83\x13\xc8\x28\ -\xd8\x96\x52\x68\x72\x23\xc8\x26\xa5\x09\xfd\x8a\x4d\x5e\x0e\x37\ -\x99\x26\xf7\xf2\xb9\x00\x5d\xf2\x2e\x15\xce\x77\x23\x9b\xe8\xbb\ -\x05\x54\x7d\xe5\xc4\x77\x6e\x44\xa1\x1c\xbb\xd1\x07\x2c\x7f\xd4\ -\xb2\xf2\xc6\x12\x26\xb1\xbd\x29\x48\xa4\xb4\x53\x18\x8f\x43\x27\ -\x5b\x81\x34\x00\x4b\x11\x3a\xa8\xaa\xaa\x9b\xb3\x59\xcf\xf2\x15\ -\x25\x8e\x3d\xc0\x66\xfb\x95\x66\x65\x79\xc3\xfb\xa3\xc0\x73\x7c\ -\xe6\x70\xac\xf2\xf8\x5c\xc7\xa0\x8e\xe1\x4a\xd3\xc0\x5e\x14\x11\ -\x51\x9d\x9d\x82\x93\x03\xe3\x73\x10\x01\xa7\xcf\xe9\xef\x83\x68\ -\x69\x23\x68\xef\xb3\x4d\x73\xaa\xdc\xcd\xae\x35\x58\xcc\x99\x2e\ -\x50\x4b\x6e\x7c\x30\x89\x02\xa3\x88\x8d\x2d\xac\x0d\x27\x92\x2d\ -\xfa\xa4\xa4\xb8\xe4\xaf\x95\x68\x18\xb5\x88\x5d\xbe\x21\x29\x13\ -\x1e\xe4\xc4\xf3\xbe\x72\xc4\x00\xd4\xf9\x51\x2e\xe7\x02\x15\x80\ -\xc9\x12\x36\x6b\x14\x95\x61\xab\x78\x03\xa7\x33\x13\x80\x08\x81\ -\x2f\x95\xae\xe0\xd5\x92\xcd\x5b\x00\x8d\x36\x19\xe1\xaa\xb1\x24\ -\xd1\xda\xad\x8e\x0f\x90\x29\x04\xc6\x1e\x60\xa3\x97\xc0\xc4\x91\ -\xea\x7e\x41\xed\x60\xca\x9c\xef\x7f\x97\xb7\xb1\x85\x57\xf5\x9d\ -\x60\x7f\x06\x53\xdf\xca\x66\x1a\xcf\xef\x92\x6e\xd0\xb4\x34\x52\ -\xf5\x7d\xaa\xa0\xb1\x05\x15\xde\xa1\x88\x1d\x58\xd3\x97\x36\xd9\ -\x92\x35\xb2\x36\xf8\x9d\x36\xa9\x20\x80\xab\x21\xbe\xd2\x82\xc7\ -\x4d\xa8\x9d\x04\xba\x5a\x72\xc9\x73\x20\x20\x77\x1f\xd7\x54\x35\ -\xed\x74\x83\x8f\x99\x72\x26\xda\x27\x7f\x6d\x99\x74\x3e\x22\xa5\ -\x84\x50\x62\x66\xa3\x31\x60\x82\xb1\x8e\xdb\x6a\x1a\x7c\x35\x8c\ -\x7b\x80\xad\xaf\xa4\xdd\xc6\x30\xaf\xf8\x59\xa5\xc5\xdd\xc7\xec\ -\xae\xc0\x63\x7a\x10\xef\x17\x1f\x4b\x97\xe9\x25\x25\x7a\x37\xe0\ -\x9b\xc3\x6d\x98\xf8\x9d\x65\xc2\xee\xa3\xad\xe4\xef\xc3\xe4\x4d\ -\xd4\x1e\xbd\x60\x65\x2d\xce\xb8\x0c\xee\x95\x34\xb8\xb5\x10\x07\ -\xf1\x72\x06\x1a\xd0\x6e\x2e\x17\x60\x94\x6a\x9b\x0c\xd7\xe6\x30\ -\xe0\xd4\xa4\x2e\x4a\x78\x83\xe2\xdf\xf6\x26\x9d\x5c\x1e\xc9\xd6\ -\x41\x9b\xdf\xd6\x1c\x14\x39\x24\x66\x41\x5c\x8c\x1c\x46\x90\x24\ -\x72\x1a\x09\x08\xef\x30\xdd\xc0\x66\x80\x20\x46\xaa\x3a\x3a\x96\ -\x90\x9e\x60\x2a\x1d\x7d\xc2\xe8\x1d\x75\xdc\x3d\x54\x4b\x2e\xe4\ -\x4c\xd0\x9d\xb3\x60\x92\x0d\x5a\xce\xb0\xe5\xbb\xe3\x6c\xab\x72\ -\xdb\x56\x83\x7f\x0b\x7d\x97\xfb\x87\xb6\x94\x83\x54\x1a\x05\x4a\ -\xc3\x32\xdd\x6d\x8f\x51\xc7\x0b\xb8\x12\xbb\xb5\xf5\xc7\xc9\xc4\ -\x4e\x72\x32\xd7\xf6\x02\x21\x58\xfa\x86\xcc\x82\x65\x2c\xe9\x31\ -\x46\x6c\x6b\x14\xcc\xb2\x6c\xac\x33\x5b\xc0\x49\x5f\x5e\xd2\xb3\ -\x0d\x5e\xe5\xde\xec\x2d\x93\x40\x25\xad\x46\x87\x59\x2c\x01\x04\ -\xcd\xda\xc8\x65\x06\xc9\xc6\x20\xc3\xc4\x09\x39\x28\xd4\xc4\xb0\ -\xef\x95\xcc\x3d\x5e\xf5\x42\xe7\xf3\x94\x1d\x47\x1c\x29\x8a\x56\ -\xda\x6f\x8d\xf9\xdc\x88\xe8\x47\xbf\x95\xea\x18\xa9\xa6\xbf\xc6\ -\xbd\xbc\x82\xac\x46\x3e\x99\xe6\xc1\x0c\xe1\x9d\x18\x06\x90\x32\ -\x81\xdc\xc9\x73\xbf\x43\x51\x62\x57\xda\xad\xfd\xce\x20\x08\x69\ -\xce\xa0\x8a\x69\x80\xd1\xd8\xe8\x30\xf7\xc9\xd1\x7c\x34\x7c\xa3\ -\x9b\xbf\x40\x67\x41\x5f\xe0\x1b\x6e\x9a\xe3\x87\x36\x9d\xe0\x21\ -\x02\xbd\x8c\x57\x87\x79\x90\xf4\x08\x2c\x62\x30\x31\xb6\xac\x42\ -\x86\xb0\xe3\xbe\xcb\x03\x8e\x02\x69\x9a\x6c\x36\x8b\x43\xb3\x71\ -\x4b\xce\xc7\x47\xf8\x8a\x01\x3c\x87\x48\x2c\xfa\x76\xbe\x68\x05\ -\x28\x3c\x3c\x34\x28\xfe\x1a\x0c\x98\x8b\xa0\x8f\xfd\x5f\x0e\xd7\ -\xad\x0e\x97\x08\x69\xec\x29\x05\x73\x18\xfe\x99\x28\xf2\x2c\x0d\ -\x79\x1d\x21\xe4\x49\x88\x25\xe2\xd2\xce\xf0\xb0\x99\xcf\x30\xcc\ -\x95\x9f\xc4\xcd\x93\x4e\x82\xee\x60\x13\x36\x20\x75\xe0\x32\x40\ -\x07\xa7\xa5\x41\xa8\xb6\x6b\xbc\x33\x98\x4e\x7a\x80\x6e\xf3\x60\ -\xb2\xbd\x7d\xa3\x66\xc1\x33\x32\xb6\x07\x2c\x79\xdc\x18\xa6\xb3\ -\x8c\xe1\x4e\x81\x7d\x49\x1d\xbf\x59\x97\x0a\x1f\x1a\x9a\xcb\xe6\ -\x4c\x9f\xfa\x03\x90\x7b\x1d\xa6\xa2\xa1\x87\x75\x18\x60\xe1\x94\ -\xe9\x61\x41\x46\xe5\x38\x05\xa9\x80\x4e\x3a\x68\x13\xf0\x0a\xe1\ -\x3b\x1f\x93\x3a\x75\xbf\x6b\x0f\x5b\x63\x8a\x32\xc8\x1e\xa0\x66\ -\xd7\x85\x51\x5e\xe6\x89\x94\x78\x63\x44\x94\x43\x6c\x4b\x8d\x6f\ -\xf2\xe8\xaf\xf4\x6f\x32\x96\x45\xf7\x78\x26\x98\xbd\xe6\xdb\x24\ -\x61\xdf\xa8\xce\x68\x85\xd5\x3c\x12\x8c\xae\x33\x5c\x46\x33\xaa\ -\x51\x18\xd6\xec\x7c\x22\xa2\xe1\x9a\x5f\x9b\x88\x60\xaf\xcb\x82\ -\x00\x01\xc4\x07\x02\x71\x9f\xe7\x52\x85\x59\xf4\xaa\x7d\x4d\xfb\ -\x1d\x41\x4e\xe0\x29\x6b\x75\x0d\xc5\xa7\x47\xfd\xad\xb0\x55\xac\ -\x7c\x7c\x34\xbb\x83\xff\xee\x16\xa9\x1b\x97\xba\xce\x60\x75\xd1\ -\x2d\xcb\x65\x00\x15\x00\x9e\x50\x11\x03\xfd\xd0\x43\xdd\x90\xc7\ -\x66\xb9\x0b\xdd\x60\xe1\xe1\xbc\xe3\x0e\x9b\x39\xa6\x40\xda\xf9\ -\x11\xcb\xd5\xc2\x4c\x72\x8d\xc9\xc9\x00\x7f\x1e\x19\x86\xe0\x62\ -\x52\x63\x77\xe1\xb9\xcd\x9f\xc6\xfb\xff\x0f\x3a\x37\x9f\x71\x8c\ -\x9c\xe9\xf9\xaa\x0b\x9f\x47\x3f\xe8\x6f\x81\x0b\xeb\x82\xe9\x8c\ -\x43\x64\xb0\x3d\x69\xc0\x6a\x19\x1d\x55\x04\xac\x28\x5c\x18\xaa\ -\x92\xd8\xc9\x96\x0c\x65\xc5\x41\xfd\x2c\x58\x08\xd2\xda\x98\x9e\ -\xf7\x5f\xc6\x4f\xe8\xdc\xe5\x2e\x60\x34\xc9\x28\xc6\x0f\x79\xf9\ -\xe5\x4c\xd9\xbe\x60\xbe\xd7\x09\xfe\xdd\xe2\x21\x2e\xb1\x5b\x64\ -\x9f\x45\xc4\xa4\xc0\x5b\x7c\xbc\xe0\x43\x67\x3b\x48\x3a\x25\x83\ -\x05\x4e\xde\x42\x82\x04\x3a\x43\xc2\x41\x77\x2e\xbc\x44\xd9\x1d\ -\x92\x5c\xd6\xce\xe5\xe0\x3b\x12\x28\xbe\x59\xcc\xdb\xbe\x25\xe3\ -\x08\xdc\xc3\x71\x6e\x41\x46\x11\x8e\x85\xad\x48\x11\x26\x58\xf2\ -\x01\xdc\x4a\x6c\x0b\x9b\x8a\x70\xac\xe3\x8d\x4a\x74\x33\x99\xd3\ -\x38\xcc\xe9\xff\xfa\xa1\xf3\x33\x4b\x86\xce\x29\x3a\xa7\xe4\x3b\ -\x3e\x0f\x1a\x70\x23\xbd\x57\x9d\xa7\x54\xfd\xe8\x1b\x71\x0d\x7a\ -\xb8\x6e\xa0\x13\x5b\x39\x11\xc9\x18\xf9\xea\xd8\xac\x86\xd9\xdd\ -\x82\x30\x84\x20\xa4\x03\xa1\x0c\x5c\x2d\xd3\x1d\x0e\x96\x30\xf4\ -\x3b\x6a\xc4\xbf\x5d\x87\x1e\x86\x11\x5c\xb3\xd4\x80\xad\xd8\x3f\ -\x60\x25\x49\xf7\x33\x60\x89\x84\x18\x45\xd6\x2c\x69\x6b\x55\xce\ -\xa7\xb2\x92\x36\x3f\x66\x6d\xd1\xee\xea\xea\xb1\xcd\x9c\x33\x08\ -\x9f\xb9\xc1\x3e\xcb\xa7\xc1\x5c\x0f\xbb\xc5\x8e\xb6\x41\xf3\x62\ -\x80\x20\x8b\x4b\x23\xb6\x9b\xc2\xfc\x69\x18\x0d\x03\xea\xc7\xf5\ -\x82\x67\x43\xf8\xee\x10\x52\x09\xdb\x8b\x7d\xd0\xe7\xda\x00\x9c\ -\xe3\x00\x1c\xcb\xcd\x03\x71\x18\x7d\xdb\xd6\x1a\x5b\x4c\x9f\x7e\ -\xf5\x8c\x9c\x93\x0e\x6c\xbf\x04\x60\x5e\x02\xa4\x4b\x49\x71\x37\ -\x27\x48\x2f\xb9\xfd\x01\xdf\xda\x01\xd8\x09\x0c\xf6\xe8\x22\x95\ -\xb2\x5b\x66\xe4\xb3\x1e\x84\x4a\x12\x15\xb3\xf3\x65\xe8\x6d\x55\ -\x6e\xd4\x1c\xf7\x90\x94\xe9\x6a\x09\xa6\xd2\x0e\x7a\x8a\x39\x00\ -\x12\x0d\x7f\x80\x05\x30\xf6\x58\xe3\xf3\x13\x4e\x2f\x85\x39\x45\ -\x36\x95\xb7\xd2\x19\xb5\xca\x85\x26\x09\x3b\xe8\x44\x65\xcb\x0d\ -\x54\xbf\x01\x25\x11\x2a\x24\xb4\xe1\xfb\x32\x69\x37\xaf\x36\xd3\ -\x7b\x3c\x10\x21\x43\xc6\xb2\xf7\x65\xa8\xe5\x71\x43\x2d\x7f\x5f\ -\x86\x5a\x19\x37\xd4\xca\x84\x43\x3d\x86\xcc\x83\x91\xc1\x5e\xc2\ -\xbc\x34\x3e\xd7\x08\xd3\xdc\xf3\xc6\xf4\x35\x03\x7d\xae\x22\xb6\ -\x4d\xff\x1a\xe2\xf1\x6b\xd6\x52\x80\x27\x53\xe4\xec\x60\x6f\xb4\ -\x6b\xda\xdf\x52\x60\x59\xf3\x79\x2f\x76\xb0\xd7\x98\x46\xe8\x20\ -\x0b\x13\xb2\x90\x86\x0c\x98\x2e\x26\xf6\x64\xa7\xc2\x7b\x87\xac\ -\xf4\x1e\xe6\x0e\xb2\xb3\xc6\xb8\x53\x34\x46\x4d\x9a\x4c\x49\x43\ -\x1c\xc0\x96\x81\x34\x97\xf6\x30\xb1\x85\xd9\x84\x03\x96\x61\x0f\ -\x17\x1c\x97\x4a\x44\xdf\x71\x3a\x13\x22\xe8\x85\x69\x21\x88\xfd\ -\x95\x2b\x81\x9a\x01\x54\xb0\xd3\x1c\x4d\x79\xe4\xde\xe3\x81\x03\ -\x8d\xee\x5a\x47\x51\x4a\x98\x5a\x3a\x4c\xa4\x2d\x47\x51\xc1\xdc\ -\x69\x22\x6a\x20\xc4\xe5\x82\x49\x11\x2b\x55\x85\xbe\x32\x08\xcc\ -\x3b\xf9\x85\x79\xb0\x7d\x32\xc6\x00\x70\xac\x3d\x80\xcb\x01\x6b\ -\xd0\xce\xe7\x59\x46\x0c\x4d\x57\x34\x16\xc4\x61\x35\x21\x52\x67\ -\xa8\x79\x61\xda\xc6\xac\x67\x49\x52\x89\x77\x65\xb8\xa7\xe5\x91\ -\x9e\x92\x6e\xba\x70\x4f\x2b\x23\x3d\x25\xdd\x53\xeb\x90\x64\xd4\ -\xa4\x52\x6a\x51\xd0\xf4\xa6\x89\x40\x6f\x11\x3a\x2f\x5d\xbe\x41\ -\x52\x22\xf9\x34\x80\xe0\x88\x6e\xcc\x0c\x1d\x36\x0b\x05\xc4\x33\ -\xaa\xb8\x98\x37\x9a\x10\xa4\xd3\x50\x2c\x53\x2a\x16\xaa\xb8\x10\ -\x6d\x0c\x30\xd5\x10\x0f\xe7\xc4\x4a\x8a\x99\x29\xc1\xa0\x84\x00\ -\x9a\xa2\x95\x70\xfc\x39\x8a\xdc\xd6\xdd\x27\xd2\x68\x53\x5c\x79\ -\xdd\x42\x41\x9a\x82\x44\x3f\x9c\xab\x41\xa5\x3d\x5c\x4d\xaa\xaf\ -\x27\x31\x2b\x0e\xaf\x65\x32\x6f\xda\x4c\xcd\x17\x85\x89\xbd\x09\ -\x47\xec\x22\x9b\xf8\x76\xcf\x90\x70\x46\x77\xd2\xd1\x0f\xd3\x46\ -\x47\x67\xb9\x41\xb7\x73\x62\x6a\x11\x8a\xb8\x98\x70\xd4\x30\x62\ -\x9c\xc7\x44\xc3\xc5\x47\x21\xce\xb8\x9c\xa7\x10\x2d\x2a\xc7\xd4\ -\x77\x6f\x52\xc7\xb7\x9d\x56\x3d\xc0\x09\xc0\x58\x40\x36\xc3\x30\ -\xc2\xee\x92\xba\x97\xf0\xfd\x9a\xc8\xde\x7a\xc8\x76\xd2\x2b\xf1\ -\xde\xb3\xbd\x97\x3a\xaf\x86\x4d\x30\x07\x0b\x74\xfa\x49\x47\x9b\ -\x13\x59\x69\x19\x92\x9d\x40\xf9\x55\x54\xd4\xcd\xe6\x1e\x2b\x6b\ -\x82\xca\x3f\xa5\xa5\xbd\x00\x58\x03\x76\x53\x6e\x08\x12\xe7\xdb\ -\xa3\x2d\xd0\x13\xcc\x4d\x44\xd5\x9c\x14\x69\x86\x12\xf3\xf3\x04\ -\x70\x43\x96\x3d\x38\xe4\xa3\x33\xcf\xb7\xc6\x68\xfc\x04\xd4\xf8\ -\x20\x97\x2f\x29\x66\xba\xc8\x33\x31\x49\xf4\xd1\x44\xf9\x72\xf8\ -\x3a\x48\x80\x34\x55\xce\xb5\x02\xb3\x5b\xa3\x09\x62\xcc\x9d\xf6\ -\x46\x24\x7a\x1e\x1d\x7a\x96\x18\xda\xb7\x86\x0b\x39\x4a\x91\x98\ -\x1e\x96\x70\xfc\x33\x78\xd8\xdf\xe6\x12\x57\x6c\x40\x46\xfd\x74\ -\xeb\xbd\x11\xa8\x39\x89\x10\x40\x17\x02\x56\x24\x9f\x14\x80\x53\ -\x22\x44\xc3\xf8\x82\x24\x89\xf2\x03\x1f\xac\x0d\xcc\x28\x22\xe1\ -\xd0\x27\x97\x8f\x42\x4d\x32\xf0\xa1\x62\x60\x2d\x14\x96\x70\xe8\ -\x2d\x60\x4f\xc9\xd3\x0b\x62\xdf\xe7\x00\xd9\xd2\x64\x09\x91\x7f\ -\xb0\x31\xe2\x82\x39\x72\x73\x1c\x17\xe4\x91\x7a\xc6\x5c\x63\x83\ -\x65\x66\x2c\x17\x14\x46\xd7\x19\x35\x3c\x71\x02\x22\x21\x9b\x0e\ -\x3c\x1c\x01\x88\x05\xe4\x9b\x69\x1e\x77\x74\x02\xcc\xc5\xef\xd3\ -\x23\x15\x50\x0a\xae\x95\xb6\xe9\x9f\x46\xce\x1a\xb1\x92\xda\x3f\ -\x2d\x48\x9d\xc2\x85\x25\xd5\xa8\x9a\x1e\xc7\x4f\xac\x43\xe9\x9d\ -\x2c\xd7\x3b\x49\xaa\x3e\xe9\x9d\xac\xd4\x3b\x49\xaa\x39\x75\x68\ -\x6a\xc2\x3c\xa1\x18\x00\x52\x85\xfd\x40\xf9\xbd\x8b\xde\x73\x49\ -\x68\x87\x60\x07\xd4\xbd\x65\xb9\x54\xdf\x0f\x5c\xe6\x09\x46\x74\ -\xc9\x1a\xd8\x45\x42\x3d\x2e\x27\xf0\x96\x62\x0c\x52\xaa\xe0\xf2\ -\xbd\x61\xbe\x1d\x78\xf2\x18\x7f\x56\x44\xcf\xb1\x4d\x16\x06\xb0\ -\xfb\xa1\xe5\x9f\xb3\x66\x8c\x6a\xce\x06\x98\x29\xc2\x9a\x06\xab\ -\x85\xe6\x29\xb1\x59\x58\x34\xfb\x32\x31\x39\x6e\x0d\xbc\x18\xb6\ -\x26\x3a\xe2\xc4\x76\xfc\x86\x3d\xac\xd7\x56\x02\xf0\x03\xe3\x46\ -\x86\x6d\xe0\xc4\xaa\xd2\x56\x34\xd8\x54\x34\x0c\xc2\x13\xea\x30\ -\x75\x03\x0f\x45\x74\xf9\x66\xad\xb5\xf2\x96\x6b\xe6\x0c\xb6\x8c\ -\xa2\xe3\x84\xa3\xce\x05\xba\x13\x9a\xc8\x1b\xdc\xa1\x13\x33\x72\ -\x30\xda\x0c\x31\x9a\x37\xb5\x71\xda\x63\x35\x58\x96\x24\x62\xe0\ -\xac\x1d\x4c\x55\xc9\x29\x23\xe5\x9c\x01\x18\x88\xe6\x77\x4c\x85\ -\x24\x3b\x81\x24\x3d\x5c\xa8\x38\x67\x14\x33\x1c\x06\x51\xe3\xd2\ -\x9d\xe3\x4d\x6b\x5d\x3b\x63\x78\x05\x33\xcd\x53\xb7\x13\x8c\xd5\ -\x43\xd6\x2a\xea\xa5\x4a\x36\x69\xc5\x3f\xc4\x54\x2f\x53\x51\xc2\ -\x34\x2b\x36\x80\xe0\x70\x4c\xc0\x30\x72\xe6\xb8\xe5\x72\x77\x33\ -\x33\x1f\x93\x41\x53\x31\x03\x1d\x84\x8c\x7f\x66\x03\x4b\x45\xe4\ -\xcc\x4d\x70\x18\x7d\xe4\x33\xae\x66\x45\x50\x1c\x99\x0a\x9e\x98\ -\x73\x5c\xb5\x78\x02\x17\x9d\xa6\x41\x4c\xee\xd6\xbb\x08\x75\x0f\ -\x03\xc7\x2e\x22\xbf\x67\xa3\xbc\x19\x38\x0f\xcd\xe0\xb0\xa4\x70\ -\x5b\x08\x5a\x67\x9b\xcc\xe6\x6e\xfb\xb0\x1a\x1b\x1d\x4b\x9c\x4f\ -\xc9\x20\x45\x67\x14\xcc\x5e\xbf\xce\x72\x2d\x34\xd1\xd3\x66\x1e\ -\xd6\x18\x64\x45\x76\x1c\xcf\x65\xd0\xf4\x3d\x87\x26\x95\x80\x46\ -\x01\x06\x13\x95\xb3\xd4\xe1\x48\x6d\x33\x4f\x7d\x78\x5a\x81\xb9\ -\x20\xcf\xa0\xbb\x1a\x1e\xa1\x6a\x0c\xb6\x3e\xe8\xc9\xb4\x4b\xb0\ -\xe3\xcd\x4c\x86\x19\x97\x18\x3c\xf0\x41\x55\x34\xdd\x0c\xdf\x94\ -\xf0\x5a\x7a\xc8\xe0\x5d\x24\xdd\x32\x17\x03\xc2\x6d\x52\xca\x65\ -\x62\xe1\x74\xd9\x12\x52\x34\x50\xe4\x75\x28\xae\x0c\x85\xc4\x11\ -\xa5\x85\xc0\xe4\x78\x8b\xab\x21\x06\x12\xa0\xcb\x51\x5a\x0c\x96\ -\x5e\x3f\xcc\x70\xe2\xfa\xac\x91\xa6\x9e\x0e\x2b\xd3\x01\x18\x1b\ -\xa4\x9b\x64\x94\x32\x3a\x6a\x4c\x9b\xae\x31\x3a\x64\xe5\x31\x4e\ -\x94\x78\xd7\x54\xcc\x9c\xd6\xc4\x7a\x71\x9d\x2d\x30\x33\x56\xa1\ -\x28\xf1\x39\x2d\x59\x7c\x32\x8c\x2a\x76\x73\x29\x9a\xe1\xd4\x15\ -\xcf\xc6\x69\xdf\x6f\xa3\x17\xc8\xc6\x76\x22\xd9\x4a\x04\x8f\x54\ -\x17\x3c\x0b\x82\xac\xe2\x90\xe6\x03\x4a\xec\xe0\x33\x48\x2b\xf4\ -\xed\x73\x1d\xc6\x52\x20\x50\x4f\xe1\xf9\xdc\x5a\x67\xd0\x53\x71\ -\xe3\x85\x8e\x19\x5b\x2a\xba\xb3\xae\x65\xa5\x4d\x8e\x6f\x9a\xfa\ -\x04\xd4\xb5\x1b\xe3\x23\x69\xf8\x7f\xda\xce\x28\x07\xe5\x18\xbf\ -\xc0\x30\x54\xa7\xb1\xda\x1a\x35\x5d\xab\x83\x39\xa7\x28\x7d\xfa\ -\xe6\x1e\x8b\x66\x55\x0d\x01\x5d\xf3\xc3\xcb\x09\x28\xf0\xc0\xb4\ -\x16\x6a\xb2\xfc\xb7\xf2\x4c\x47\x8d\x72\x5b\xc8\x5c\xf3\x3c\x20\ -\x33\xa6\xba\xe1\x4a\xe8\x12\x71\x3a\x47\x12\x5d\xe2\x9c\xf5\x59\ -\xee\xc9\xf3\x14\x6a\x57\xc4\xb9\xc2\x0a\xd0\x27\xca\xd6\x04\xb6\ -\xbd\x35\xc6\xdd\x77\xa0\x7b\x2c\xcd\x04\xea\x47\x52\x9e\x3d\xbd\ -\xbd\x10\x4e\x89\x50\x65\xa9\x17\xec\x08\xe1\xe6\xa0\xdf\x47\xb8\ -\xf3\x4c\xca\x21\x79\x7e\x5b\xcd\x6f\xe9\x20\xcc\x1b\x9b\xe7\xda\ -\xb7\x2a\xcf\xf4\x3c\x98\xf0\x02\xf9\x91\x48\x0b\xe5\xdf\xc3\xdc\ -\x13\x3f\x11\xb4\x91\xe3\x97\x98\x43\xb0\x28\x4e\xdc\xa2\x04\xea\ -\x40\xb0\x02\x7b\xac\x82\x6f\x98\x69\xd7\xf1\x3c\x91\x6e\xd3\x61\ -\x38\xc0\x85\xdd\x51\xdb\xb3\x82\x0c\x1c\xce\xb5\x78\x18\xc6\x37\ -\x5d\xaa\xf2\x1a\x79\x67\xe1\x54\x15\x8c\x9f\x4e\x7b\xc9\xe2\x72\ -\x41\xc3\x7c\x59\xa0\x53\xa5\x6e\x57\xd1\x4d\x4b\x68\xa1\xc8\xa4\ -\xfa\x82\x85\xa3\x23\x52\x26\x96\x7c\x8c\x08\xd3\x0b\x96\x21\x1b\ -\xb7\x0c\x32\xcf\x54\x8a\x02\xd8\x01\x3c\xfa\x0d\x7f\x71\xe5\xb7\ -\xd3\xd8\x2c\x56\x82\xb2\x23\x6b\x3c\xdc\x22\xc8\x13\x4a\xb8\x61\ -\xda\xde\x93\x0d\x53\x2a\x60\xa7\x6e\x9f\x28\x41\xcb\x40\xe0\x04\ -\x67\xf9\x79\xbe\xa1\x7c\x22\xc3\x14\x32\x8c\xa1\x9e\xc2\xa3\xa1\ -\x8c\xe8\x1a\xe9\xef\x8e\x20\xee\xf7\x12\x99\xb7\x23\xc2\x8e\x32\ -\x83\x8e\xad\x66\x11\x6c\x7b\x31\xae\x38\x11\x28\xe2\xf4\x72\xe5\ -\x2e\x8d\x5b\x39\x0c\x54\xa8\x5b\x81\x47\x24\x83\x23\xbb\xc1\xd2\ -\x52\x61\x21\x44\x7b\xa7\x01\x7d\xe5\x1d\x5f\x69\x3f\xc0\x82\x96\ -\xe8\xcb\x76\xf2\xb9\x71\xa6\x0a\x80\x21\xee\xe1\xf9\x36\x1a\xbc\ -\x4f\x2a\x68\xda\xc9\x7a\x25\xca\xa2\x6b\xd2\x6a\xb4\x67\x41\x30\ -\xb5\x96\xf5\x18\x36\x31\x16\x4c\x45\x43\x06\x94\x97\x1e\x47\x0d\ -\xb8\x6d\xa6\x5a\x86\xb4\x44\xf8\x58\x9b\xbb\x57\xb1\xd0\x58\x62\ -\xff\x4f\xe9\xd1\x86\x71\x2b\xab\x29\x2b\x3c\xb7\x3a\x32\x43\x30\ -\x07\x9c\x62\x62\xa7\xef\xb1\xda\x98\x42\x2b\x0a\x4a\x59\x48\x6b\ -\x87\xf7\x3e\x15\x9f\xcd\x59\x65\xe6\x33\x35\x0f\xeb\x51\x7c\xf4\ -\x77\xe1\x55\x5d\xa2\x01\xa3\xa6\x98\x2f\x82\xff\x54\xaf\x44\xf0\ -\x9b\xf4\x3e\xb3\xe1\x17\x31\x07\x42\x62\x47\x62\x52\x8f\x95\x74\ -\xbb\xa8\x41\xa8\xc3\xd7\xe7\x31\xa5\x21\x37\x4d\x5f\x55\x7b\x90\ -\x6e\x25\x75\x5b\x66\xcb\x4e\x20\x1b\x17\x71\x04\x25\x0e\x44\x93\ -\x99\x82\xbc\xf9\xc4\x7e\xfc\xb5\x38\x41\xe1\x27\x6c\x0f\xb2\xfa\ -\xe8\xb7\xf5\xc0\xbf\x36\x2b\x69\x0d\x07\x6f\xb0\xc0\xbc\x69\x5f\ -\xdf\xb7\x39\x30\x79\x92\x26\x2f\x74\xc9\x43\x9e\x44\xe4\xdf\xda\ -\x5c\x27\x2f\xf0\xb0\xb5\x17\xb0\x61\x41\x59\x39\x8d\x8e\x66\x6c\ -\xa4\x41\x2e\x4c\x2c\x35\x00\x95\x89\x27\xf9\x26\x8c\x2d\x7a\x17\ -\xc7\xc8\xa5\x65\x99\x4b\x04\x97\xae\xfd\xc8\x83\xeb\xb2\x62\x0e\ -\x63\xf7\xba\x45\xbe\x17\xe9\x83\xd9\x0c\x6a\x74\x7a\x80\xaf\xa9\ -\xea\x1f\x77\x39\xad\x8d\x11\x3d\x1f\x29\x3e\x11\x2e\x1e\x4e\x29\ -\x0c\xce\xa1\xb8\x62\xa8\x12\xec\x9b\xa5\xff\x81\x84\x00\xc9\xe0\ -\x76\x1a\x7d\xdc\x2e\x1e\xa2\xc6\xf2\x90\x33\x6a\x80\xde\x34\x6e\ -\x78\x17\x15\x4d\x9a\xdb\x26\xf2\x99\x86\x45\x37\x49\x99\xfb\x59\ -\x80\x84\xb8\xbc\x45\x91\x4d\x3a\x80\xdf\xf4\xb2\x2e\x54\x6d\x1c\ -\xc3\xd0\xbb\xea\x12\x9a\xb9\xd1\x1c\x33\x58\x3a\x93\xd1\x27\x53\ -\x2a\x13\x66\xca\x14\x31\xa7\x58\x72\x81\xea\x4d\x4e\x62\x7f\xfa\ -\x5c\xd9\x1e\xf7\x84\x5c\x6e\x17\x25\x32\x33\x23\xe5\xbe\x68\xa1\ -\x7d\x1b\xed\x59\xd3\xf3\x2d\xcf\x4f\xb8\x25\x2a\x3a\x30\x76\x29\ -\x33\x68\x05\xc6\x3a\xb8\xdc\x77\xc9\x1b\x44\x9c\x20\x72\xb8\x9f\ -\x52\xa8\xcd\x13\x25\x74\x4c\x55\xf7\x94\x66\x42\x94\x80\xe3\x33\ -\x35\x99\xf9\x9b\x8a\xd1\xb9\x1c\x25\xb6\x38\x55\xad\x57\x3f\x99\ -\x16\xbf\x95\x7c\xf2\xab\x32\x70\xa9\x84\xfd\x91\x4d\x98\xcf\x9b\ -\x1b\x07\x8b\x2d\x0b\x2c\x16\x4d\x04\x45\x91\x41\xbd\x93\x3e\xa4\ -\xa5\xa3\x06\x2d\x3f\xc8\xec\x44\x9d\x06\xf5\x23\x16\xea\xd4\xd4\ -\x24\xda\x06\xcf\xa3\x69\x9a\xee\x80\x92\x17\x6a\xe7\x61\x71\xcd\ -\x4c\xd2\x6d\x90\x2c\x1c\xab\x6b\x1e\x33\xa9\xca\x31\xad\x70\xec\ -\xd6\x48\x38\x56\xad\xda\x35\x49\xe2\x04\x2e\x98\x8b\xdf\x6c\x34\ -\xd2\x75\xae\x7b\xf4\x66\xd7\x1e\xb4\xf3\xe8\x9b\xa5\x09\x0d\x54\ -\x7e\x4f\x35\x2e\x99\x42\x4f\x36\x25\x62\xe9\xc9\xae\xd9\x3a\x85\ -\xe0\x5a\x32\x74\xea\x59\x85\x33\xd1\xb5\x37\x1d\x74\xee\x07\x8d\ -\x22\x8f\xec\x77\x90\xb0\x42\x38\x6e\xa0\x00\xc5\x95\x41\x9b\x1a\ -\xb2\xe3\x4a\xa4\xc9\x20\x76\x8c\x00\xe4\x7b\xc6\x0b\x94\x0e\xb9\ -\x38\x8b\xfb\xcc\x11\x2b\x48\x7c\x8f\x59\x20\x61\x2a\x7b\x54\x4f\ -\x4f\x8e\x81\xf3\x27\x39\x4d\x39\xf9\x2e\x57\x39\x98\xc4\x9a\x6e\ -\xf2\xcf\xe6\x07\x00\xb5\x9d\xa7\xed\xea\xc4\x7a\x70\xb9\x1c\x40\ -\x19\xe9\xab\xeb\x9b\x52\x16\x63\xf9\x6e\x97\x87\xbb\x4d\x1a\xfd\ -\x2b\xdf\xed\xca\x70\xb7\x49\xe3\x81\xed\x31\xd9\x37\xb1\x76\xaf\ -\x2c\x98\xd5\x47\xad\xc1\xa9\x24\x65\xb4\x85\x62\x8e\xe5\x7a\xaf\ -\xef\xe3\x49\xae\x53\x08\x4e\xc9\x8c\xc6\xa4\xd0\xbb\xb4\x82\x58\ -\xc2\x11\x0e\x01\xfe\xc0\x90\xdc\x4f\x7e\x24\xc2\x35\x12\xde\x7e\ -\xd3\xdb\x23\x8e\x43\x26\x4a\x50\x91\x6a\xa5\x1e\xfe\x91\xbb\x99\ -\xf9\x20\xd4\x00\x4d\xd4\x37\x31\x59\x82\xd7\x31\xfd\xc1\x69\x3d\ -\xee\x93\x04\x9c\xda\x59\x1b\x76\xc9\x1e\x2b\xa9\x0e\x4c\xf5\xef\ -\xb8\x4c\x66\x2b\x04\x64\x5a\x33\xae\xf4\xac\xf1\x43\x28\x20\x26\ -\xcb\x1c\x9f\xea\xf8\x5f\x45\x64\x85\xe3\x4c\x53\xca\xac\x23\x06\ -\x8f\x69\x0d\x73\xc5\xc4\x8c\x28\x98\x6a\x5e\x7f\x34\x3e\xa7\xf6\ -\x84\x89\x50\x81\x35\xae\x33\xed\x18\xdb\x20\xc0\xc1\xaa\x7e\xd4\ -\x2e\xc2\x99\x7d\x2c\x6b\x08\x68\xd1\xcb\x99\xe8\x56\xc9\x8c\x65\ -\xd9\x6b\xdc\x55\x1f\x30\xe4\xa4\x1c\xf8\x41\x8e\xb0\x49\x53\x77\ -\x88\xa8\x25\xea\xa3\x4f\xcf\xe6\xfa\x95\x1e\xef\x91\x06\x64\xfc\ -\x21\x6d\x11\x47\xca\x23\xa2\x46\x88\xac\x57\x30\x69\xc5\xa9\x00\ -\x35\xa7\x53\xd4\x64\xc2\xe9\x43\x30\xf7\x22\x70\x77\xf4\x16\xb1\ -\xb3\xdc\x80\x1d\xd3\x00\x6c\x08\x67\xd3\x94\x32\x8c\x1e\xe1\x68\ -\x89\xb3\xa3\x32\xdc\xf6\x12\x0a\xb5\x1e\x89\x95\x62\xab\xc0\x23\ -\xdd\x51\x75\x82\xd2\x89\x83\xd1\x44\x55\x25\x0e\xd9\xf8\xc4\xe3\ -\x46\x81\xc9\x85\xff\x18\xda\x7e\x4b\xe1\xbf\xd3\xe1\xbf\xc5\xa0\ -\x0a\x2f\x86\x7f\x27\x29\x06\xc2\x46\x8a\x9a\x7c\x71\x78\x80\x16\ -\x1e\xcb\x02\x92\xd2\x36\xe8\xb0\x94\x34\x58\x22\x06\xd3\xae\x1c\ -\x37\x63\xe7\xf1\x84\x8c\x53\xb0\x5c\x93\x05\x1d\xdb\xb3\x78\x20\ -\xae\xd3\x58\x6a\x9c\x6e\x2c\xee\x5c\xbc\xf8\xa4\xa4\x26\xf7\x63\ -\x1c\x55\x74\xaa\xe3\xca\x5a\x97\xf2\x84\x4a\x7d\x25\x7c\x2e\x88\ -\xfe\x2a\x0c\x5b\x66\xa2\xd2\x09\x8b\x04\x06\x66\xe6\x1e\xc0\xa9\ -\xeb\xa7\x86\x84\x0d\xc5\x16\x47\x96\x14\x64\xb9\x29\xed\xd8\xbf\ -\x08\xf9\xaa\xf6\xd4\x26\x8a\x2e\xd7\xcc\xd8\x45\x0f\x37\x56\xe0\ -\x78\xa4\xa7\x83\xa8\xd9\x4a\xdd\x2a\xbc\x9e\x11\xcc\x9b\x3e\x5e\ -\xcc\x0e\xe1\x3a\xf4\x24\xa8\x6f\xe6\xd3\x60\x8e\xd9\x79\x0c\xdd\ -\x5a\x49\xf1\xb5\x61\x5a\x2c\x72\x32\x29\x75\x28\x9d\x8b\x38\xee\ -\x31\x55\xae\xd9\x5f\x22\xbb\x41\xf5\x0f\xb0\x21\x65\xd6\xbc\x54\ -\x34\x27\xcb\x81\x68\x43\xd0\x58\x0a\x44\x60\xf0\x5b\x66\x7a\x88\ -\xc5\x7d\xc5\xf9\xa2\xc9\xe1\xac\xa4\x1e\xdd\x1c\x92\xc9\x3c\x9c\ -\xbe\x38\x78\x57\x24\x61\x37\x7c\x5c\x92\x92\xca\xba\x58\x79\x41\ -\x5d\x75\x9e\xc7\x9f\xe6\x02\xa9\x11\xe4\xc5\x80\xaa\xde\x15\x23\ -\x54\x07\x14\xfd\x8a\x95\x67\x10\x63\x30\xd2\x96\x05\xf9\xa2\xe1\ -\x4b\x99\xab\xab\x66\xc8\xc8\x11\x55\x9e\x22\x2b\x68\x96\x1b\x4f\ -\x90\x3e\xf3\xd7\xf8\x44\x04\x4e\x59\x74\x8d\x05\x79\xd4\x53\x0f\ -\x51\xf5\x60\x24\xaa\xb6\xc4\xb0\x7c\x33\x68\xef\xc1\x86\xa7\x23\ -\xbe\xc1\x1d\x79\x31\x6a\x4f\xd0\x77\x38\xd2\x3e\x99\x29\x22\x57\ -\x50\x84\x2c\x04\x0f\x55\x4b\x9d\xcc\x8b\x5f\xd5\x80\xf6\xbe\xdd\ -\xcf\x23\x15\xd4\xf2\x3e\x77\x3d\x8b\xf1\x01\x3b\x1c\x1d\xb2\xd3\ -\xac\x94\x09\xcb\xa5\x80\xe7\xc5\x1c\x8f\xfe\xd1\xd4\xc8\x2e\xa3\ -\xdf\x71\x72\x03\xa6\xab\x44\x05\x41\xd0\xa4\x2d\x8c\xdf\xb2\x36\ -\x22\x59\x89\xf6\x47\x0b\x6a\xd2\x9c\x6a\x94\x44\xd8\xb0\x83\x87\ -\x3a\x7c\xd0\xf6\xf4\x7e\xa8\x9c\xa2\x23\xf7\xba\x96\xd5\xbd\xaa\ -\xc7\x10\xfa\xa0\xe1\x8d\x83\xed\x3f\x8c\x1c\x86\x8e\x42\x2b\x16\ -\xc2\xbb\x2e\xe3\xdd\xe6\x54\x32\xe4\xef\xe3\x3c\x26\x6c\x41\x26\ -\x4d\x6d\xd6\x6d\x2e\x8b\x27\x1b\x38\x21\xb5\x85\xa9\x42\x94\xc0\ -\x75\xaf\x4d\xb2\x1a\x13\x9d\xaa\xd8\x92\x8b\x94\x51\x73\xb8\x11\ -\x17\xb2\x08\x40\x70\x7a\x98\xe3\xd6\xce\x07\x95\x31\xd0\xd5\x42\ -\x71\x9c\xd0\x73\x52\x59\x9f\x30\x87\x78\x72\xa4\x45\xf7\x76\xa2\ -\xb8\x05\x0a\xb7\xf5\x3c\x63\x57\xe4\x79\x48\xce\xe6\x92\x14\x91\ -\x25\x98\xc4\x69\x23\x11\x1f\x50\x21\x57\x03\xae\x6d\xf2\xf0\x1e\ -\xfc\x2d\x52\x77\xf4\xb2\xe3\xf1\xf3\x61\x9c\x4f\x72\x88\xb6\x20\ -\xaa\xce\xfa\x69\xe3\xbb\x9f\x0a\xa7\x36\xc2\x8e\x3f\xa7\xe0\xaf\ -\x61\x5c\x4c\x87\xbf\x25\x0f\x45\x33\xa5\xce\xc4\x98\x94\x50\xea\ -\x4a\x41\xda\x41\xd6\xe1\xe8\x23\x88\x2b\x26\xfa\x3a\x94\xf1\xc3\ -\xfd\xea\xf3\x97\xfc\x20\x3c\xd7\x54\xc9\x11\xbb\xc0\x36\xa6\x7d\ -\x64\x48\x5b\x40\x86\xef\xc4\x91\x21\x4d\x0a\xc7\x63\x1a\xc1\xb6\ -\x64\x9b\x3f\x2e\xc8\xd4\x99\x5a\x2f\x13\xb7\x94\x96\x5e\x11\x78\ -\x8d\xe9\x19\x6d\x78\x8a\xb2\x8d\x66\x3c\x89\xee\x31\x52\x26\x5f\ -\xf0\x40\xb3\x87\xdf\xdb\x60\xd7\xdb\xd9\xb6\x14\x8c\xd8\x36\xec\ -\xe4\x9d\x36\x3c\xf3\x0d\x5d\x9a\xc3\x76\x6e\x3c\xd4\x5f\xc7\x3a\ -\x2b\x37\x62\xf9\x76\xda\xec\xc0\xe6\xec\x55\x1c\x98\x9f\x0a\xc3\ -\x41\x52\x7a\xab\xae\xd5\x4e\x2e\xd3\x96\x90\x9d\xec\xd3\xb4\xe1\ -\xf8\x43\x30\x49\x59\x4b\x24\xb2\x14\x61\x28\xa5\x8f\xd0\xac\x88\ -\x5b\x21\x79\x92\x06\x97\x48\x63\x08\x53\x0c\x53\x5d\x87\xc7\xcd\ -\x84\x33\x9a\xc1\x38\x14\x30\x32\xd5\x2a\x14\x5a\x46\xa9\xc8\x65\ -\xd4\x12\xcc\x84\x4a\x76\xc8\xbc\x47\x21\xe5\x75\x09\x29\xd9\xe3\ -\x5a\x75\xd6\x30\x9d\x21\x27\x63\xa4\x87\x1c\xac\x10\x40\x67\xcc\ -\xce\xfa\x89\x24\x43\xc6\x2d\x39\xfb\x44\x9b\x90\xcb\x99\xa4\x8c\ -\xf1\xb4\x12\x4a\x96\x54\xf2\xc2\x88\x49\x2b\x65\xbd\x2c\x6d\xd1\ -\xa3\x08\x8a\xaf\xc4\x30\x35\xd4\x49\xb6\x28\xcc\xeb\x92\x48\x0c\ -\xa2\x0c\xd2\x37\xe8\x72\x65\xab\x80\x30\x64\x14\x4b\x21\x53\x12\ -\x02\x19\x89\x50\x67\x1a\x97\x6b\x21\x0e\xa4\xc6\x15\x3a\x7b\x37\ -\x4e\x89\x54\x6c\x86\x9b\x60\x88\x54\xc9\x1b\xd0\x2c\x67\x15\xc3\ -\x32\x88\x2c\x12\x67\xa3\xf8\x37\xcb\xae\x40\x42\xf7\x85\x42\xb4\ -\x3f\x4e\x4c\xb4\x21\x8f\x06\x3d\x2b\x56\x9a\x86\x8d\xd4\xfa\x6c\ -\xc8\x2f\x82\xf1\x15\xec\x98\xa5\x91\x0c\x17\x3d\x9f\x3f\x31\xcc\ -\x38\x1f\x8a\x92\x75\x67\xca\xa1\x1d\x9a\xcf\x48\xcf\xcc\x63\xfa\ -\x2d\x2a\x6a\xbc\x1c\x47\x09\x07\x4b\x67\x2a\x21\x57\x79\xb5\xec\ -\x86\x9a\xc7\xa3\x22\xcc\xd6\xd2\x4d\xbe\xf0\x91\xa2\xb8\xe3\x35\ -\x72\x11\x45\xd1\x5b\xa6\x59\x6c\x89\xe5\xc7\xd2\xe1\x22\x48\xfa\ -\x00\xf2\x64\x19\x9c\xef\x50\xc8\x44\xbc\xa3\x17\xe2\x91\x21\x7b\ -\xb9\xdc\xfb\xd4\xe5\x76\x5c\xdb\xca\xb3\x8a\x6a\xa2\xfc\x4b\x20\ -\x24\xb9\xe0\x44\x3f\x0d\x10\x85\xa7\xfc\xe4\xd1\x3c\x18\x83\x62\ -\x1c\x64\x59\xae\xd3\x10\x47\x95\xa0\xd7\x9c\x95\xf5\x3b\xb8\xd2\ -\xce\x07\x51\xb3\x03\x12\xb2\xb6\x8a\x93\xb9\x5a\x3c\xc2\x31\x25\ -\x8a\x9e\x4b\x0b\x62\x42\x93\x65\xb2\x4c\x92\xc3\x6d\x2a\x69\x85\ -\x08\x1c\xe9\xd6\x51\x78\x5b\x52\x1d\x83\x79\x81\x18\x93\xa1\x2b\ -\xb3\x21\x58\x39\x33\xc4\xe6\x84\x03\x83\x96\xa1\x9a\x20\x2c\xe3\ -\x97\xb1\x26\xe6\xc2\x98\xe0\x94\x52\x24\xb2\xd8\x8a\x1a\x3e\xd5\ -\xe7\xa5\x07\x40\x85\x6c\xb5\x91\x22\x64\xee\xa4\xaa\x21\xc9\xbc\ -\xe5\xe0\xe4\xa8\xb2\xc6\x1f\x56\xd7\x78\xc4\xcc\x15\x2d\x6a\x9e\ -\x64\xe8\xa1\x94\x6c\x31\x9f\x56\x92\xd7\x8b\xb8\xf5\x7c\x27\x07\ -\x66\x4b\x3e\x6d\x75\xa6\xb6\xd1\xb7\x79\xfd\xc8\x8c\x9d\xcd\x5a\ -\xae\x95\x4f\x63\xf8\x3f\xe7\x8c\xb2\x68\x29\xeb\x50\xc4\x43\x7d\ -\x3c\xa6\x8a\x39\x7f\xb4\xd6\x64\xd2\x70\xe8\x4c\x2c\xcd\xa1\xa1\ -\x5c\xd6\xc1\xed\x17\xf0\x24\xec\xec\x68\x2d\x7e\x12\xb2\xb7\x65\ -\xf4\x84\x1b\x8a\x09\x3b\xdd\x4d\xce\x8d\xf1\xa0\xbe\xfb\x68\x5f\ -\xb9\x33\x44\xc7\x9d\xeb\x85\xed\xaa\xe9\x44\x57\xa9\xfe\xac\x27\ -\x0f\x96\xf6\xf9\xd4\xd3\x21\xa9\x7b\x27\x71\x64\x79\xf3\x7b\xcd\ -\x05\xe5\x91\xae\x6d\x9c\xa5\xa8\xac\x06\x0f\x5e\x2a\x8c\x2a\x21\ -\x07\xf9\x15\xec\xde\xb0\xbb\x7b\x1e\xb1\xe2\x12\xc3\x22\x0a\x05\ -\x4b\x4a\x11\x6e\x4e\x91\x96\x22\xce\xa6\xc4\x1e\xa1\xd6\x52\x6e\ -\xbd\x60\x2f\xfb\x9c\xbc\xbd\xa0\x8d\x5a\xfe\x4a\xd4\xf9\x56\x33\ -\x79\x58\xc9\xa5\x52\x9c\x42\xe7\xf3\xa2\xd0\x5c\x31\xf8\x5d\x4b\ -\x9c\x41\xbb\x4a\x2a\x7e\x66\x90\xc0\xa2\x66\x70\xcb\xc4\x9c\x70\ -\x60\x20\x0a\x9d\x48\x60\x15\xf5\xc8\x73\x4a\x49\x86\xc5\x3c\xe1\ -\xc3\x0c\x61\x4d\xf8\x26\xed\xc0\x4a\x97\xbe\x29\x53\x09\x49\xc8\ -\x4c\xac\x89\x40\x2d\x12\xdc\x2e\xe6\x9a\x15\x85\x0b\xf3\x3c\x02\ -\x4d\xa9\x79\xf2\x3c\x2a\xb6\x58\x72\x3e\x46\x14\x0a\x2c\xf5\x09\ -\xf4\x02\x50\x5b\x78\x2a\x32\x15\x62\xa8\x55\xd0\x9c\x00\xcc\xe8\ -\xc0\xfc\x7d\x96\xdd\x64\xf4\x4b\x5e\x27\x94\x23\x73\xcc\x1e\x2e\ -\x0e\x83\x8c\xcb\x0f\x02\x7b\x04\x81\x89\xbe\x51\x2e\x38\x45\x53\ -\x51\x4f\xcd\xc3\xfc\x92\xc5\x38\x56\x1e\xdf\x18\x1d\x72\xa8\x09\ -\xc9\x12\x98\x68\x9f\x92\x75\x52\xd3\xcf\x35\xf1\xb8\x39\x6f\x9e\ -\x94\x91\xce\x02\xea\xdb\x41\x58\xdd\x13\x16\x82\xa1\x4a\xae\x74\ -\x9d\xd7\x6f\xdf\x61\xb4\xf7\x3b\x85\xa4\x4e\xef\x99\xd0\xdf\x4e\ -\xa2\x16\x9d\x91\x7d\xa5\xb6\xef\x34\xda\x7b\x5d\xd0\xca\x92\xf7\ -\xb6\x83\xf7\x96\xc6\x84\x9e\x09\xa5\xb7\x86\x1d\xd0\x5b\x9f\x9d\ -\x49\xec\x8f\xaf\x0d\x85\x1f\xab\xcc\xc4\xa7\x2b\xff\x35\x54\x87\ -\x26\x49\x49\x1e\xf5\xfc\xd9\x7b\xc5\xfc\xd5\xfd\x55\xde\x47\xac\ -\xd2\xbf\x30\x17\xa2\x02\x63\x63\xba\x44\x15\x1a\x27\x70\x5e\xa2\ -\x18\x59\x24\xf3\x3f\xb0\xd8\x36\xfd\x81\xbb\x3f\x95\x6c\xfd\x84\ -\xc8\xa4\x37\x0e\xd1\xed\x2a\x33\xf3\xaa\xd3\xbe\x9b\x30\x91\xb5\ -\x62\xd3\x7b\x78\x7e\x42\xd4\x41\x67\x16\x99\xb0\xb5\x64\x92\xb5\ -\xac\xab\x1d\x3e\x90\xa9\xab\x5c\x94\x9d\xb1\xfa\x80\x92\x39\xcb\ -\xc4\xf3\x0e\x62\x10\x71\xa8\x4b\x8e\x11\x57\x8b\x35\x55\x22\x33\ -\xb0\x83\x88\x73\xce\x9e\x26\x26\x54\x18\x86\x79\x7c\x8d\xa9\xb1\ -\x26\xc6\xd6\xd4\x2c\x40\x3d\xe6\x24\xac\x48\x29\x3c\x3f\x61\x97\ -\x39\xa7\x11\x2c\x3a\xd6\x03\xe7\x47\x4c\x85\x0a\x47\xcf\x94\x21\ -\xfb\xa3\xdc\x11\x7d\x66\xab\x31\xab\x1e\x58\x57\xd1\x45\xeb\x8b\ -\x19\x06\xac\xa2\x2a\x26\x35\xba\x1d\xc6\x40\xd1\x07\x8e\xb8\x87\ -\xff\x4c\xb9\xa2\xe7\x01\x43\xf4\xa8\xdf\xcb\xca\xd8\x68\xa2\x25\ -\x24\xa8\xdb\xde\x43\x92\x68\x43\xa2\x10\xe7\x71\x65\xac\xac\x2d\ -\x82\xf0\x50\x65\x27\x12\x53\x30\x2b\x40\xee\x69\x71\xc8\x2d\x98\ -\x05\xcb\xc5\x78\x59\x34\x4d\x70\x1a\x65\x9d\xca\x63\x21\x8f\xda\ -\x8b\xc7\x7d\x75\x66\x40\xd4\x93\x63\x44\xd4\xc1\x5e\x44\x36\x06\ -\xda\x99\x41\xc4\x55\x46\x7a\xea\xa5\xc9\x09\x34\xbe\xe6\xd5\xc9\ -\x0a\x16\xc0\x8e\x08\x72\x25\xa9\xa1\xb8\x68\x98\xdb\x8b\x4e\x7e\ -\x9e\xaf\x62\x20\xe1\xec\xab\x61\x44\x79\xce\xbc\xb2\x30\x96\x58\ -\x28\x60\xd9\x49\x99\x45\xe8\x0d\xd9\xd9\xa4\x9c\xec\xfc\x12\x4c\ -\x3d\xa9\x8b\x54\x66\x47\x94\x2b\x61\x3e\x3b\x3e\x5a\x42\x33\x1e\ -\xa6\x56\xd2\x67\xe8\x5d\x82\xeb\x61\x9d\xb4\x01\xd4\xeb\x84\x37\ -\xb7\x7c\xb0\xba\x2d\x1e\x74\x0c\x5f\x7b\xe3\xc3\x03\x4e\x6e\x6a\ -\xb0\x4f\xd9\x34\x7a\x17\x68\x3f\x41\x85\x5d\x91\x7f\xd3\x42\x7d\ -\x0b\x99\xab\x5e\x14\x29\x8b\x44\xcf\xc5\xfb\x1d\x69\x2f\x35\x19\ -\x25\xaf\x6c\x6e\xa8\xe4\xb8\x76\xb9\xde\x5c\x51\xfc\x3b\xd4\xac\ -\x85\x37\x0b\x5f\x9e\x51\x03\x0d\xd8\x2d\x17\xca\xcb\x33\xe1\xe5\ -\xd0\x6d\x65\xd2\xd4\x9d\xcb\x6e\x14\x0b\x35\x59\x10\xbe\xa9\x29\ -\x58\x05\x1a\x87\x61\xd1\x81\xb9\x98\x83\xdc\x2d\x2b\xef\xcc\xdd\ -\xdc\xdd\xbd\x90\x45\x3f\x9c\xe0\x3a\x27\xa5\xd3\x19\x60\x12\xce\ -\x25\x16\xc9\x71\x83\x2a\xab\xcc\x73\xab\x45\x1d\x76\x23\xe1\x79\ -\xce\xc0\x84\x7a\xa5\xe4\xb1\x32\x53\x5a\x63\x38\xe6\xf5\x35\x28\ -\x6b\xc3\x57\x7c\xd5\xcc\x3d\xcf\x2e\x84\x7b\x3f\x16\x71\xa8\x9e\ -\x56\xd5\xca\x62\xcb\xec\xb5\x55\xec\x2a\x27\x26\xf2\xf8\x39\xd1\ -\x50\x5f\x43\xe4\x5c\xa2\x5f\x53\xa8\x5e\x4c\x65\x60\x5e\x90\xcd\ -\x9f\xca\xa4\x7c\xa9\x04\xc8\x98\x7d\xf4\x56\xa2\x45\x24\x5f\x41\ -\x6f\xee\xcc\xd0\x37\x03\xa8\x96\xae\x52\x2f\x98\x62\x3e\xd2\x21\ -\x9a\xd3\x3b\xec\xb8\xe8\xf2\x04\x5b\x62\xd4\xe1\xd9\x2e\x8b\xf2\ -\xf4\x72\xc3\x54\x08\xe8\xde\xc8\xed\xd6\xf1\x39\x3c\x07\x48\xa9\ -\x5b\xb7\xf4\x9b\x8e\x0d\x7a\xf7\x35\x1b\x50\x14\x38\x10\x09\xc6\ -\xf2\x72\x3e\x8d\x32\x37\xf3\xed\xe9\x62\x5f\x6a\x1d\xde\xfa\x55\ -\x20\x33\x41\xad\x08\x2f\x1a\x23\x88\xc1\x40\xd5\x9d\x17\x6c\xf1\ -\xa0\x0f\x9a\xda\x21\x8f\xfe\x88\x7e\x0c\xbc\x1c\xa9\x2b\x8c\x83\ -\xd5\xb1\x37\x3b\x4f\xef\xe2\xe9\x23\xd8\x4d\xcf\x25\x6e\x96\x56\ -\x06\x2d\x75\xc9\xb3\xf2\x4a\x3e\x38\xb7\xc6\xb2\xe5\xf4\x58\x00\ -\xcb\xc4\x53\x3d\x4e\xc2\x60\x0f\x6f\x5b\x91\x9d\x95\x0e\x6d\x5f\ -\x3d\x02\x93\x92\x9e\xa5\x6e\xbc\x3c\x83\x6f\x61\x7e\xec\x81\x91\ -\x98\x3f\x5e\xb0\xc2\xe8\x63\xe5\x1c\x65\x4e\xd1\x76\xa5\x9c\xa3\ -\x45\x93\x1c\x8c\xed\x91\x05\x54\xaf\x3a\x0a\x5b\xe9\x31\x27\x10\ -\xbb\x87\x68\xa2\xae\xbc\x37\x5b\xe9\xeb\x3a\xc5\x5a\x73\x35\x09\ -\xa0\x1e\x85\x76\x23\xe4\x1b\x3e\xbd\x6e\x73\x6f\xbe\xf4\x37\x48\ -\x85\x7d\x82\x44\x13\x20\xc2\x95\x9e\x69\x42\x9a\xb4\x57\x3f\xa8\ -\x57\xfc\x44\xff\x39\xc3\xa0\x37\xe4\x14\x73\x99\xc8\x39\x68\xf5\ -\x18\xba\xed\x97\x3c\xf9\x6c\xb4\xdb\xf3\x43\x08\x98\xf4\xe6\x67\ -\x8d\xa2\x28\xb2\xe2\x92\x14\x5d\x85\x2b\x8f\x10\xd5\x81\x15\xae\ -\x2c\xaf\xde\x1b\xd5\x8e\x7b\x67\x2b\xfc\x5b\x43\xa8\x73\x6b\x1e\ -\x7c\xf6\x91\x2d\xf0\xac\x1b\xfe\x92\xe8\x38\xa5\x5b\xc9\x4f\x74\ -\x39\xa3\xc7\xea\x9a\xb4\xb4\x3c\xab\xe3\x4d\xfd\x97\x03\x9e\x93\ -\x2b\xfa\x30\xcb\xbe\x2d\xab\xba\xd7\x84\x67\x9a\x92\x02\x4f\x5a\ -\x93\x31\xd2\xee\x70\xad\xa8\xa2\x72\x35\xba\x74\x4e\xf0\x82\x89\ -\xd1\x3d\xb7\x38\xd2\x56\xc6\xed\xc4\xf9\xb3\xf8\xea\xda\x2d\xbc\ -\x4f\xa5\xb8\x76\x48\xd0\x84\x61\x4a\xc7\xac\x5b\x33\xef\x25\x76\ -\xf9\x8e\x2e\x09\x9c\x9a\xf2\x3d\x83\x77\xa1\xdd\xec\xab\xf4\xd2\ -\x16\x03\x4a\xe8\x16\xc1\xc8\xa4\x94\x7b\xf7\x94\x9e\xe6\xc4\xf4\ -\x14\xb9\x71\x2f\x02\x97\x76\x73\x5d\xd9\xd9\x29\x1e\xe2\xa0\x97\ -\x46\xde\x8b\xb8\x9e\x67\x92\x75\xc7\x6d\x1a\x69\x2c\x0a\xbc\x2b\ -\x8d\x3b\x4b\x5e\xb6\x2d\xe2\x37\x8c\x4f\x79\xa1\xec\x85\x99\x3d\ -\xc0\xe7\xa1\xcb\x8d\x60\xce\x82\x88\x11\x07\x0d\x35\x6e\x17\x3d\ -\x7e\x54\xee\x5a\x92\x56\x7e\xe5\x88\x7a\xee\x48\x63\xb7\x3d\x44\ -\xcb\x86\x95\xec\xb6\x87\xa7\xaf\x86\x5a\xec\x22\x9b\x02\x95\x59\ -\x1c\xff\x74\x38\x1b\xd4\x13\x1c\xc2\x79\xbb\x45\x8d\x44\xf4\x02\ -\x85\x71\x59\xdc\xed\x3d\xf4\xca\x0c\xd8\xd1\xae\x83\xcc\x4e\x2a\ -\x02\x66\x90\xb0\x1d\xd4\x26\xd4\x76\x76\xb4\x58\x59\x0d\xea\x5a\ -\x91\x25\xde\xac\x79\xbe\xa2\xcd\x1a\x79\x26\x8f\xc3\xcd\x0d\xa5\ -\xf1\x59\x41\x90\x8e\x72\x83\x37\x83\x30\x83\x34\x6f\x0d\x6e\xdc\ -\xa8\x61\x3f\x86\xb5\xfd\x64\xb6\x22\x21\x0f\x5b\x93\x19\x04\x4e\ -\x96\x41\xfb\x15\x13\xf9\x3c\x98\xee\xec\xb0\x64\x9c\xe4\xfe\x63\ -\x4d\x9b\x97\x45\xe5\xe6\x12\x5b\x2a\xe7\xbd\x73\x51\x3c\xc4\xaa\ -\xad\xd1\x5a\xb9\x5c\xeb\x95\x7c\xae\x97\xfa\x1b\xba\xc5\x19\x1d\ -\xa5\x87\x2d\x31\xb7\x17\x33\xad\x4e\xb9\xa1\x98\x24\xb8\x31\x04\ -\xa5\x40\xb7\xc2\xeb\xdb\xe5\x6d\xc6\xf9\x0c\xbb\xf3\xc2\xd3\xf4\ -\x40\x74\x69\xb7\x77\x87\xb9\xfb\xb6\x10\x44\xea\xcd\x26\xa2\x32\ -\x46\x5c\xd6\x22\xcb\x3d\x61\xb7\x25\x32\x64\x8b\x40\x0d\xbd\x21\ -\x41\xc2\xb5\x2c\x80\x4b\x05\x46\x50\x25\xcd\x93\x87\x65\xc1\x3f\ -\x45\xfe\xbc\xd1\xde\x1b\x06\x92\x7a\x48\x44\x09\x42\xa9\x8a\x29\ -\x99\x6b\xd2\xa0\xe9\xa5\x99\x62\x7d\xf6\xde\x30\xad\xbb\x9c\x4b\ -\x95\x3a\x45\x21\x53\x9b\xcb\xdd\xde\xa8\x67\xce\x48\xca\x65\x01\ -\x6c\x8f\xa8\xb7\x9d\x48\xba\x3d\xb9\xd7\x29\xc2\xa2\x9c\x24\xae\ -\x22\xf1\xf6\x58\xb4\xda\x18\x53\x4d\xba\x84\x8b\xce\xc4\xba\x45\ -\xcc\x0f\x68\xfb\x61\xa2\xde\x46\x4e\xd2\xa0\x64\x55\x62\x8a\x41\ -\xd9\xa0\x2e\x22\x6f\x26\x52\x93\x7c\xa5\x7a\xe7\x48\xce\x1c\x28\ -\x50\x12\xc6\xe3\x05\x8c\x14\x88\x2e\xbc\xce\x87\x66\xc9\xe2\x35\ -\xd8\x4c\x13\x8a\x18\x31\x59\xa5\x32\xa1\xc8\x40\xf3\x62\x11\xac\ -\x23\x8e\xe9\x7e\x0b\x95\xac\x6d\xbd\xc2\xb2\x3e\x39\x09\xe2\x22\ -\x01\x22\x2d\xde\x1e\x2d\xba\xdc\x65\x20\x68\x76\x76\x9c\x41\x1d\ -\xb5\xb9\xba\x61\xe6\xbf\x0a\x6c\x15\x15\xbc\xb8\x3b\xb6\x84\x65\ -\x53\x0a\x9c\x63\x05\x38\x40\xb9\xec\x36\xad\x2e\xe5\xea\xf0\xf0\ -\xe8\x05\x5c\x3f\x15\x0d\xc9\xa6\xdf\x85\xc2\xbd\x88\xa2\x4c\xc2\ -\x2d\x38\xa7\xc7\x2d\x0f\xb5\xd2\x0d\xab\xce\x95\x52\x76\x20\x87\ -\x33\x82\xb2\x2e\x63\x00\x04\xf3\x1e\xb1\xc8\x19\x0b\x26\x92\xb1\ -\xf2\x69\x3b\xba\xd6\x17\x94\xd9\x3e\x8c\xb8\x72\xdc\x91\x9e\x7c\ -\x03\x29\xd3\x0c\x80\x5d\x28\x80\x05\x95\xd4\xa6\x67\x2f\xd2\x98\ -\x47\x24\xe0\xe5\x4f\x4b\xac\x30\x2d\x02\x5f\x54\x32\xb4\xc2\xa6\ -\xbd\x6e\x53\xaa\x58\x56\xf1\x75\x0c\x03\x61\x89\xa4\xab\x6c\xd1\ -\x13\x3e\xf4\xf0\x90\xeb\x40\x7f\x61\x11\xaa\x52\x1b\x6f\xaa\xc3\ -\xb7\x45\x86\xf7\x8a\x03\xc1\x66\x8c\x83\x21\x17\xbb\x36\x2a\x53\ -\xf3\x4a\xac\x4a\xd4\xa2\xd2\x59\x58\x39\x38\x67\x33\x38\xd5\xdb\ -\x95\x02\x56\x86\xf5\xd5\xc2\x60\xfa\x5a\x29\xce\x68\xd7\xec\x58\ -\x88\x94\x83\x61\x7a\xd7\x0f\xcd\xa8\x84\x24\xbc\x24\x4c\x87\x52\ -\x13\x7b\x24\xb8\x9d\x0c\x5c\x4c\x70\xf5\xe4\x46\x65\xe1\x61\xba\ -\x81\xb9\xa1\x68\x83\xee\x9e\x89\x18\xdb\xe7\x47\x28\x2b\x7c\x7f\ -\xa8\x3e\x97\xf2\x35\xf4\x42\x29\x0c\x61\xe2\x8f\xa9\x68\x07\x72\ -\x73\xc4\x2a\x4f\x89\x3b\x43\x17\x13\x45\x81\x9a\x4c\x44\xa8\xf9\ -\x53\xaa\xaa\x26\x91\x38\x9f\x03\x88\xb5\xa4\xd8\x8a\x2b\x82\x02\ -\xa0\xb2\xa9\x3c\x1f\x8c\xae\xfd\x48\x59\xf6\x11\x7f\xef\x55\x94\ -\x54\xe3\xee\xc2\xd2\x75\x4a\x5d\x2a\x7a\x61\x62\xf5\x68\x09\x1a\ -\x33\xc7\x60\xec\xa2\x53\x28\x85\xcd\x02\x1e\xa6\x17\x2c\x3a\x7c\ -\x20\xa3\xf4\x55\x7f\xe5\x40\x55\x5b\x85\x00\x55\x70\x3c\x47\x07\ -\x15\xb7\x52\x17\xa6\x24\xf8\x25\x39\xc0\x2d\x65\xd1\xcb\xe2\xd4\ -\xcc\xa1\x35\xf1\xae\xd0\x2b\xbc\x36\x69\x22\x8a\x0b\xa4\x89\xac\ -\x0a\x5b\x7a\x4e\x4b\xf5\x39\x51\xf9\x0d\xc4\x9d\x67\x8e\x3a\xbe\ -\x18\x9c\x75\xa4\x9d\xe1\x02\x7d\x39\x3c\xc5\x9b\xdf\xb7\x29\xea\ -\xfb\x58\x4c\x51\x26\xbb\x04\x71\xdc\x32\xcc\x70\x59\x74\x82\x98\ -\x3a\xa2\x08\xaf\xc9\xa7\x78\x35\x56\xa3\x2f\x0f\x9e\xc3\xb3\x9b\ -\xe2\x29\x49\x30\xd1\xf2\x07\x86\xa5\x12\x59\x42\x05\x09\xa6\xb5\ -\x52\x9f\x96\x60\x4c\x34\xc4\xc4\xc8\x32\x50\x5d\x15\xdd\x82\xfe\ -\x14\x9e\x5a\x4f\xac\x64\x9e\x7c\x35\xb4\xc9\x85\x75\xd5\x10\x58\ -\x65\xb9\xe3\x58\x02\xdc\x86\x59\x78\x17\x11\x59\x27\x71\xd2\x3d\ -\x8e\xc4\xc4\x05\xa3\x16\x9a\x53\x96\x26\x80\x4e\x2d\x01\x74\x58\ -\xba\xcb\x44\x80\xac\xed\x7a\x3e\xbd\xcf\x30\x3c\x99\x3b\x82\x30\ -\xb4\x08\x2e\xcb\xc3\x49\x51\x3f\x74\x38\x7c\x84\xc1\x23\xa2\x3a\ -\x5d\x2d\x74\x8a\x58\xdc\xc2\x9c\x20\xc2\x07\x99\xe3\xc8\x12\x53\ -\x8b\xf6\x9d\xc6\xbf\x99\x9d\xa8\x93\xce\x66\xad\x2a\x71\xde\x08\ -\x87\xa8\x82\x30\x3c\x98\x7d\x41\x72\x17\x96\xeb\x11\xd9\x5a\xe9\ -\x9c\xe9\x79\x54\x57\x8d\x0b\x69\x3d\x39\xcd\x7c\x84\xb8\x8a\xaa\ -\xba\x2b\xc2\x0f\x19\xe8\xb4\x85\x50\x3a\xc2\x39\x49\xb2\xd4\xa3\ -\x3c\x50\xad\x47\x3e\xa5\x3b\x47\x18\x60\x36\xe6\x59\xa9\xde\xbe\ -\x0d\x2a\xaa\x78\x90\x8b\xa1\x87\x3a\x75\xb2\x68\x3f\x1b\xc5\xbc\ -\x6f\xe7\x30\x7b\x08\xeb\x37\xf2\xbc\x21\xf6\xee\x40\xd1\xf7\xc1\ -\x6e\x36\x07\xf9\x8d\x8b\x0a\x9e\xf6\xbf\xc7\x85\xa1\xa2\x79\xd0\ -\xac\xb4\x95\x17\x4b\x34\xf3\x94\x2a\xe2\xcc\x4c\x61\xa7\x78\xd9\ -\xfb\xba\x03\x63\xb9\x8a\x85\x70\xae\x06\xd6\x86\xd2\x28\x64\xd8\ -\x19\x81\x07\x51\x7f\x46\x1b\x26\x1b\x30\xab\x5c\x1c\x7d\x65\x5e\ -\xbb\x1c\x4f\x86\x54\x8a\xd3\xad\x87\xfe\x4c\xac\x87\xba\x11\x6b\ -\xee\xc4\x7a\xae\xca\xfb\xe2\x29\x79\x4c\xa0\x10\x64\x4b\x2d\x5d\ -\x99\xaa\xad\x78\xf4\x06\xe9\x71\x1f\x32\x69\xae\x36\x68\x9c\xae\ -\x85\x93\x08\xef\xee\x94\x2c\xbb\x27\x9d\x57\x1b\xa2\xbe\x6d\xa3\ -\x84\x37\x2a\x5a\x00\x23\x45\x5b\xc7\xfa\xa3\x0c\x4c\xe2\x4f\x72\ -\x43\x17\xeb\xe3\x3c\x91\xe2\x1c\xf2\x8c\xca\xa5\xd5\x5c\x6e\x1b\ -\x9d\x48\x60\xb9\x6c\x9d\x37\xcd\xd7\xc6\x6e\x89\x0a\x97\xdd\x63\ -\x29\x8a\x72\x0d\x5b\x37\x05\x25\x1a\xa8\xe2\x1e\xe7\xb6\xd5\x98\ -\x96\x0c\xd5\x6c\x8e\xe3\x2b\x23\xc1\x92\x87\x59\x9d\x90\x9d\xfa\ -\xe9\x05\xf6\x54\xf0\x07\x19\x05\xd3\xaf\xcd\x8d\x33\x57\x4c\xde\ -\x9b\xad\x99\x00\x0b\x18\x54\x5c\xc5\x76\xdc\x3d\x20\x6d\xf3\x54\ -\x06\x08\xfb\xc4\xf4\xe9\x69\x00\x7b\x38\x22\x14\x0c\x8c\xee\x45\ -\x0f\x4a\x05\x23\x4b\x5f\xed\x16\x3b\xbd\xc7\xd8\x1c\x17\x17\xde\ -\x5d\xa2\x86\xd4\x5e\xa2\x1f\x44\x4d\x87\xa6\x1b\x4e\xc4\x8c\xf7\ -\x5d\x6b\x97\xeb\x48\xcf\x25\x82\xc3\xbd\x5f\xbe\xc3\xca\xf7\xb3\ -\xc4\x48\xcd\x79\x1d\x9e\xf0\x62\x6d\xc2\xec\xe6\x26\x51\x99\xb7\ -\x7c\x64\xba\x95\x8d\xc8\xc3\xd3\x91\xc0\xf4\x8a\x32\x1d\x07\xf1\ -\x95\x60\x52\xa2\x7c\x96\x3a\xc0\x41\x38\x00\x96\xc8\x8a\x8f\x7d\ -\xaf\x20\xeb\x09\x2b\x24\xc0\x48\x67\x2f\x51\x43\x42\x82\xb7\x44\ -\x06\x50\x38\x8a\x32\x04\xb2\x95\xc8\x10\x0b\x62\x86\x10\x27\x87\ -\x65\xdc\x58\xef\xf4\x60\xec\x34\xcd\xc2\xc7\xf1\xdd\x96\xc6\x3a\ -\x2b\xf1\xaf\x57\x0c\x89\x62\x5d\xd4\xfa\x88\x74\x7c\x72\x49\x78\ -\x55\x94\x30\x22\xa3\xfb\x52\x87\x7c\x06\x76\x6e\xe5\x33\x25\xc0\ -\x8e\x43\xb8\xe8\x5d\xd5\xd7\xd4\xd1\xf4\x11\x66\xe2\x08\x4c\x27\ -\x8b\x1f\x63\x5d\xa2\x19\x08\x06\xeb\x70\xfe\xa2\xfb\x4c\xf5\x31\ -\x0f\xc5\x31\xc5\x95\xba\x25\x86\xf5\x13\x0d\xeb\xa1\x87\x7a\x24\ -\xf0\x45\x30\x43\x22\xac\xec\x70\xef\xbd\x62\x68\xa8\x51\x09\x14\ -\xd8\x21\x10\xe7\x23\x88\x79\x7a\x02\x04\xc1\xc3\xd3\xd5\xed\xbd\ -\xf3\x99\xd6\x42\xff\xee\x9e\x4f\x5d\x44\x53\x5a\x91\x52\x60\xc7\ -\x6d\x01\x39\x74\x64\x88\x53\x12\x0d\xe1\xa0\xcc\x66\x96\x63\x1c\ -\xfa\x9d\x42\xc1\xf1\xe8\x0d\xe1\xf1\x83\xb4\x97\x1c\x44\x16\xf1\ -\xd1\xbb\x6d\xc6\x6e\x59\xad\x9c\x48\x77\x67\x4d\x89\xf9\xb8\x44\ -\xbf\x05\x4c\xdd\x6f\x0c\x7a\xd7\xe1\x87\x07\xe3\x19\x51\x4f\xc9\ -\xe1\xc2\x9c\x22\xc9\x90\xb3\xf4\x21\x19\x23\x89\x99\x62\x29\xe6\ -\x97\xe5\x36\x96\x5a\x0c\x6f\x82\x67\x99\xb0\xd8\x4f\x1c\xbf\xf2\ -\xd2\x66\x0e\xef\x6f\xf7\x9d\xe8\x60\x5d\xb1\xcb\x13\x87\xcb\x4c\ -\xe0\xf0\x89\xdf\xfa\xec\x46\x82\x78\x34\x9e\x36\x85\xad\x9f\x6c\ -\x9c\x78\x62\x4b\xc9\x4b\xc8\x64\xc4\x76\x0b\x7d\x35\xf2\xe2\x56\ -\x41\x7d\x52\xe3\xd9\x8a\x24\x17\x51\xb4\x82\x37\x03\x43\x2f\x2e\ -\x45\x62\x06\x6b\x4d\x15\xad\xd8\x2c\x89\x0d\xb1\x91\xfc\xf8\xb4\ -\x36\xf5\xbc\x6e\xf9\xc4\xb6\x13\xb6\xa2\x92\x2c\x42\xda\x81\x6d\ -\x5c\x36\xbb\x8d\x5e\xd5\x66\xa3\x99\xa6\x87\x80\x6b\xb7\x52\xca\ -\x8c\xa6\x74\x3e\xa3\x92\x98\xc4\x6b\x1f\xa5\xab\xd0\xcb\x67\x94\ -\x29\xb2\x39\x15\xa5\xa7\x89\x97\xd1\xdc\x12\x13\x96\xef\x9c\xa4\ -\x90\xa7\x3a\xc6\x76\xb2\x43\x0a\x58\xde\xe7\xf6\x1d\xb1\xd1\xfe\ -\xa9\x75\xbb\x33\xda\xed\xce\x77\xdd\xed\x8e\x98\x6e\x77\xc4\x77\ -\xbb\x7a\x12\x4d\x34\xaa\x52\x67\x74\x2b\x44\xd9\x57\x47\xf0\xa1\ -\xcc\xc0\xcb\x0f\x6a\x26\x25\xab\x28\x67\x9a\xce\xa0\xe2\x94\xa4\ -\xab\xe8\xf1\x47\xc5\x0d\xc9\x3c\x19\xe1\x41\x37\x4c\x79\xd0\xac\ -\xe2\x2b\x2f\xa8\x94\x3e\x19\x00\xc8\x99\x23\xb3\xde\x3e\x29\x4d\ -\x87\x01\x10\xd5\x1c\x19\x08\x32\x00\xa3\xf3\x6a\x09\xcc\x91\x71\ -\xc0\x20\xdb\x0e\xc3\xd2\x3f\x65\x64\x98\x5a\x22\xed\x22\x9e\x66\ -\x23\xce\x5d\xea\x84\x60\xc4\xc1\xe1\xbb\xf6\xf0\x22\x50\x22\xac\ -\xa8\x47\x76\xd3\x94\xa1\xd1\x31\xc3\xfc\x41\xc1\x9d\x04\xd2\x1d\ -\x10\x07\x47\xb1\x30\x08\x3a\x41\x04\x23\xfb\xa6\xb0\xbf\xd8\x99\ -\x1a\x11\x0c\xb6\xd1\xcc\x0e\x07\x56\x98\xf0\x1b\x53\x04\x1f\x53\ -\xdd\x45\xbd\xb2\x50\xa2\x89\x0c\xa0\x71\x98\x71\xb3\x52\xaf\x1d\ -\x0d\x16\xdb\xe9\x62\xce\x74\xc3\x29\xc7\xa2\x20\xab\xc6\x25\x58\ -\xb5\x00\xbd\x88\xbc\xea\x3c\x91\x51\x47\x35\x2d\xe1\x30\x5e\x4c\ -\x3e\x70\x9a\xb0\x78\x63\x18\x49\xc7\x86\x72\x93\x43\x72\x56\x9a\ -\xbe\x7d\x28\x5c\x57\xc5\xe4\xc1\x9d\x8d\x09\x9d\xa5\x13\x75\xe3\ -\xcf\xf7\xc4\x1d\xf8\x92\x74\x3f\xbb\x3f\x94\xc4\x4b\x8f\xe5\x50\ -\xa7\x9e\x38\x7d\x15\x25\x38\xfd\x58\xf8\x22\x9c\x85\x47\x4c\x12\ -\x3e\x2c\x6e\x11\x35\x2d\x76\xb2\x9b\xc1\x8f\xe8\x77\x06\x07\xe9\ -\x85\x79\xda\xbd\xd9\x1b\xf9\x95\x4a\x9a\x30\xa4\x89\xe9\xcc\xe3\ -\xad\xb9\x72\xfa\x61\x97\xc4\x24\xb1\x2b\x27\x04\x02\xb0\xc2\xee\ -\xb2\xf0\xa9\xe0\xf6\xe0\x22\x9c\x13\xc9\x4e\xc5\x03\x78\x2c\x3d\ -\x58\x80\x84\x84\xf9\xa9\xfc\x94\x2d\x18\x10\xfd\x5b\x37\x9c\xb8\ -\x33\xec\xe8\xab\x65\x15\xf2\x24\x84\xdb\xa2\x54\xf7\x88\x76\x28\ -\x41\x2f\xcd\xad\x9f\xaa\xb6\xf0\x4c\xb6\x30\x5d\x55\x2d\x45\xf5\ -\x9c\xaa\x09\x59\x8c\x26\x58\xde\xa5\x38\x07\xaa\x16\xbf\x29\x10\ -\x91\x12\x14\x8f\x15\x3d\xa1\xf7\x3c\x05\x0f\xe7\xd0\x13\x13\xcc\ -\xc3\x1b\x5c\xf9\x23\x4e\x2c\x33\xe7\x38\xad\xe2\x41\x77\x05\x75\ -\xfe\xa2\xba\xe8\x31\xe7\xaf\xd4\x8f\x94\x0c\xdf\xf6\xf3\xc2\xa8\ -\xeb\x54\x0a\xfb\xaa\xec\x21\x7e\x3b\x2a\xf6\x10\x4d\xe0\x9c\x6c\ -\x2b\xce\x09\xe5\x0a\xc6\x66\x19\x48\xb7\x22\x76\x19\x97\x36\x58\ -\xa9\x64\xb4\x57\x84\x53\xd9\x4f\x8b\xcd\xa8\xa6\x7a\x8b\x1a\x86\ -\x11\xc7\xa5\x6c\xdd\xb3\x22\xc5\xd2\x76\xa5\x82\x2b\xc5\xac\xb4\ -\x25\x43\xe3\x55\x6b\x8a\x56\xe5\xf6\x1d\x31\xbf\xef\x54\x7e\xdf\ -\x19\x99\x8c\x6c\x5d\x11\x6e\x5c\x6a\x32\x3b\xa6\x36\x99\x1d\xc9\ -\x27\xa3\xea\x61\x95\x3b\xa2\xc0\xca\x5f\x2b\xc2\x3f\x96\x02\x76\ -\xe7\xd4\x80\xdd\x99\x14\xd8\xb6\x98\x70\x8d\xca\x0d\x35\x0f\x93\ -\xc9\x0e\xe6\xf0\xb8\x48\x57\x84\xec\xf5\x1a\x24\x22\x8b\x5b\xef\ -\x3c\x9a\xdb\x7a\x10\x76\x01\xac\x93\x45\x5b\x56\x9b\xaa\x17\xfd\ -\xff\x03\x13\xbd\x35\x83\ -\x00\x00\x33\x05\ -\x00\ -\x00\xb1\x9d\x78\x9c\xc5\x7d\x09\x74\x1c\xc5\xb5\x68\x69\x97\x46\ -\x9b\xb1\x1d\x63\x8c\x31\x6d\xd9\x31\xb2\x2d\xcb\xc6\x0b\xc6\xc2\ -\x31\xc8\x92\x65\x1b\x6c\xd9\x58\xc2\xd8\x86\x04\x5a\x33\x3d\x52\ -\xdb\x33\xd3\x43\x77\x8f\x16\x76\x08\x5b\x58\x03\x84\x3d\xe1\x41\ -\x08\x4b\xf8\x49\x7e\xd6\xff\xc8\x7f\x81\xac\xf0\x13\x08\x09\x3f\ -\xdb\x0f\x79\x59\x30\x90\x85\x2d\x24\xf0\x42\x36\xf2\xf2\x6f\xdd\ -\xaa\xea\xaa\xde\xa4\x1e\x93\xbc\x77\x7c\xe4\x91\x7a\xba\xab\x6e\ -\xdd\xba\xfb\xbd\x75\x7b\xfd\x23\x99\xd9\x4f\xbe\xfe\xe1\x5b\x9e\ -\x9e\x3f\xf7\xcb\x67\xdf\xfb\xe8\xcf\x36\x12\xd2\x70\x3b\x21\x64\ -\x0f\x21\xf7\x0f\xc2\xe7\x5e\x42\x1e\x98\x0f\x9f\xfb\xe0\xf3\x3b\ -\x84\xd4\x3c\x0b\xd7\x0f\xc2\xe7\x4f\xe0\xef\x0a\xf8\x7c\x19\x3e\ -\x3f\x45\x48\xdd\x38\x21\xe7\xcc\x25\x64\xcb\xfb\x09\xa9\xd2\xd9\ -\xe7\x58\x8e\x90\x91\xd5\x84\x1c\x78\x2f\xa9\x7e\x60\x82\x90\x73\ -\x5f\x20\xd5\xff\x56\x4d\x48\xe3\x8b\xec\xf3\xa2\x25\xa4\x66\xc5\ -\x26\x42\x5a\x0e\x67\x9f\x37\x0e\x93\x9a\xbe\xc7\xe1\xef\x5e\xf6\ -\x79\xd3\x0c\x52\xb3\x7b\x13\x8e\x85\x9f\x37\x9d\x40\x6a\x3e\xf1\ -\x1f\x84\x1c\xf1\x3d\x52\xf3\xc8\xdf\x08\xf9\xe8\x57\x48\xcd\x77\ -\xff\x0f\x21\xf7\xe5\x48\xcd\x73\x97\x13\xb2\xe0\x72\x52\xfb\x3f\ -\xae\x25\x24\xf7\x5d\x32\xed\xb2\xad\x84\x0c\x6e\x26\xd3\x6b\xfe\ -\x37\x21\xff\x42\xc8\xac\x27\x00\xde\xcb\xef\x26\x4b\x28\x1c\xce\ -\x4f\xc9\xd2\x6f\xfc\x4f\x42\xdc\x4f\x91\xa5\xcf\x19\xf0\xf9\x0b\ -\xb2\xee\x17\xab\x08\x59\x73\x2d\x79\xcf\xbd\x47\x10\x32\xfe\x00\ -\xd9\x70\x33\xc0\x7f\xdc\x13\x64\xcb\x0d\xe7\x13\xb2\x68\x2d\x39\ -\x25\xbb\x86\x90\x95\xd7\xc2\xe7\x5a\xf8\xfc\xbf\xf0\xb9\x8e\x90\ -\x55\xb3\xc8\x29\x57\xfe\x80\x90\x0b\x4f\x27\xa7\x9f\x0d\xb8\xba\ -\xf3\x05\xb2\xe7\x6f\x00\xdf\xb6\x4a\xb2\xf7\xf6\x77\x13\x32\xd3\ -\x66\x9f\x1f\x5e\x4a\xf6\xef\xb9\x93\x90\x0f\xe9\x64\xe2\x75\xb8\ -\xff\x9c\x41\x72\xe1\x45\x2d\x84\x0c\xbf\x45\xae\x5e\x70\x0b\x21\ -\x8b\xbf\x0e\x9f\xb7\x11\xb2\xa4\x15\x3e\xef\x80\xcf\x33\xc8\x8d\ -\x5f\x7a\x09\xf0\x70\x0e\x79\x60\xed\x89\x84\xb4\x17\xc8\xc3\x17\ -\xc3\x38\x17\x3c\x48\x9e\x78\xa1\x40\xc8\xc2\x9f\x91\xa7\x1e\x9a\ -\x49\x48\x71\x21\x79\x9b\x3c\x49\xc8\xb5\xaf\x56\xcc\xff\x11\xc0\ -\x33\x70\x52\x45\xdb\xe7\xff\x0c\xf3\xde\x5f\xb1\xfc\xfa\x0b\x09\ -\x79\xdf\x65\x15\x5b\xfe\xf3\x3e\x42\xd6\x6e\xac\x18\x78\xf3\x61\ -\x42\x2e\xdd\x56\xb1\x7b\xd6\xc9\x70\xff\x69\x15\xc3\xcd\x57\x13\ -\x72\xe5\x58\x85\x79\xd8\xb9\x84\xdc\xfe\x40\xc5\xa5\xeb\x52\x84\ -\xdc\x72\x58\xc5\x35\x23\x25\xc0\xeb\x89\x15\xf7\x5e\x94\x26\x64\ -\xee\x0d\x15\x5f\x7d\xf6\xe7\x84\xec\x2e\x54\x7c\xef\x86\xef\xc3\ -\xba\xbe\x50\xf1\x8b\xc3\x7a\x60\xcf\x1f\xae\x78\xfe\x3f\x80\x1e\ -\xee\x7e\x7f\xc5\xdb\x9f\x82\xeb\xe7\xdc\x52\x59\xf3\x18\xc0\x77\ -\xfe\xae\xca\xbe\x3d\x30\xce\x6d\x2f\x57\x1a\x9f\x1c\x22\xe4\xc1\ -\x7b\x2a\x0b\x75\xcf\x13\xd2\xff\xc7\xca\xd1\x85\x33\x08\x39\xe1\ -\xa2\xca\x0b\x9e\x3b\x8d\x90\x1d\x37\x57\x7e\xa8\x6f\x0e\xe0\xe3\ -\xb3\x95\x0f\x76\xbc\x8b\x90\xea\x0d\x95\x0f\x1f\x07\x78\x70\xc6\ -\x2a\x3f\xf3\x3b\xd8\xaf\x0f\xec\xaa\xfc\xf2\xc3\xd7\x13\xb2\xee\ -\xed\xca\xaf\x64\xdf\x00\xd2\xbb\xb3\xf2\x9b\x27\xfe\x81\x10\xe3\ -\x5b\x95\xcf\x7e\xec\x8b\x40\x4f\xa9\xca\x7f\x9f\xf3\x21\xa0\x39\ -\xa3\xaa\xe2\xb2\x6f\x10\x72\xdd\xa3\x55\xd3\x6f\xdb\x4f\xc8\x35\ -\x17\x57\xcd\x99\x09\x78\x59\xd1\x54\x35\x67\x16\xd0\xed\xce\x13\ -\xaa\x96\xcf\x81\xeb\xa5\xfe\xaa\x0b\x9f\xfc\x02\x21\x3d\x76\xd5\ -\x55\x47\x03\xfe\x7b\xcf\xa8\xba\x7b\xcf\xfd\x40\xd3\x27\x57\x7d\ -\xee\xee\xbf\xc0\xba\xbf\x5e\xf5\x85\x6f\xc2\xfe\xdc\xb6\xb6\xea\ -\xd1\x1f\xbc\x08\xf7\xff\xb5\xea\x1b\xeb\x61\xbe\xf1\x4c\xd5\xe3\ -\x3f\x7c\x1f\xf0\xc3\xe5\x55\x4f\x35\xff\x12\xf6\x71\x4f\xd5\x4f\ -\x9b\xe0\x79\x77\x7d\xd5\x1b\x45\xa0\x87\x8e\xaf\x56\xbd\xf1\xe8\ -\xd9\x40\x5c\x75\x55\x7f\x6d\x05\x7a\x5e\x7e\x7b\xf5\xfc\x05\x0b\ -\x08\x99\x7f\x54\xf5\xee\xda\x9b\x09\x59\xf6\xe5\xea\xb3\xcf\x87\ -\xf5\xdd\xb5\xba\x7a\xe2\x75\x18\xff\xaa\xaf\x57\x5f\x3a\x06\xf4\ -\xb1\x63\x6b\xf5\x95\x7f\xbe\x9b\x90\xeb\x3f\x51\x7d\xed\x8f\x80\ -\x77\x32\x5a\xf5\x3d\x57\x03\xfe\x6a\x4a\xec\x73\xe2\xf5\xea\x8f\ -\x1d\x0b\xf8\xfd\xe0\x9f\xab\x1f\x7a\x05\xe8\x7a\xd5\x19\xd5\x07\ -\x0b\x2f\x00\x1c\x7f\xaf\x7e\xb1\x15\xf6\xa7\xf2\x6f\xd5\xaf\x74\ -\x7f\x1d\xc6\x3f\xa9\xfa\xf5\x67\x1f\x22\xe4\x94\x62\x4d\xd5\xfb\ -\x01\x7f\xf9\xe6\x9a\x9a\xa7\x00\xcf\x1b\x97\xd4\xb4\xbe\xe1\x12\ -\x72\xb3\x5b\x73\xe4\x34\xc0\x43\x5f\xaa\x66\xc9\x2f\x81\xbe\xb6\ -\x5f\x52\xd3\x7b\xc2\x59\x84\x58\x73\x6b\xce\x7c\x16\xf0\xd6\xfa\ -\x69\xf6\x79\xd3\x27\x6a\xd2\x6f\x01\xbc\xdb\x36\xd7\x18\xbf\x05\ -\x7e\xb8\xf8\x99\x9a\x2b\x3f\x0d\xe3\xdf\xd5\x54\x73\xeb\x43\x80\ -\xa7\x19\xd3\xd9\xe7\x5d\x7f\xac\xf9\xe4\x29\x70\xbd\xe7\xc7\x35\ -\x5f\xac\xfa\x26\x21\xf3\x5a\x6a\x1e\x6d\x82\xfd\x7a\xff\x82\x9a\ -\x47\xaf\x07\x3a\x19\xba\xbe\xe6\xb1\xdd\x30\xce\x29\x95\x35\x8f\ -\xef\x04\x7c\x34\xcd\xa8\xf9\xe5\xf5\x9d\x84\x1c\x96\xaa\xf9\xeb\ -\x4f\x81\x9f\x36\x7e\xa2\x76\xde\xaf\x60\x1f\xee\xbd\xa0\x76\xf1\ -\x6f\x3f\x0e\xf2\xe0\xa8\xda\x95\x2f\xc0\xba\x2e\xbc\xb8\xf6\xf4\ -\x23\x00\x2f\x84\xd4\xee\x7b\x1d\xf0\xe5\xdc\x5f\x7b\xc6\xf7\xe0\ -\xbe\x0d\xb7\xd4\xe6\xae\x02\x3a\x38\xe9\xd8\x5a\xf7\x28\xa0\x9b\ -\xd3\xbe\x5d\x7b\xcd\xad\xbd\x30\xee\x97\x6b\x6f\xdb\xf3\x2d\xd8\ -\xdf\x6f\xd7\x7e\xe9\x62\x80\xeb\xa8\x3b\x6a\xbf\xf5\x48\x0d\x21\ -\xa3\xa5\xda\xdf\xd4\xf4\xc3\x28\x3f\xae\xfd\xed\xc3\xa7\x13\x72\ -\xcf\xc5\xb5\xbf\x7b\x0a\xf0\x79\xa4\x5e\xfb\x97\xbf\x53\xb8\xa7\ -\xd7\xbe\x3d\x07\xe8\x63\xf5\x79\xb5\x6f\xdf\x03\xf4\x7f\xf3\xbf\ -\xd5\xd5\x7f\x10\xf6\x75\xe9\xf1\x75\xcd\xff\xfa\x47\xa0\xb7\xc3\ -\xeb\x5a\xae\xd8\x00\xf7\x3f\x53\xb7\x66\x04\xf8\xec\xf0\xce\xba\ -\x35\xbf\x81\x7d\xbb\xfd\x95\xba\xde\xee\x25\x84\x5c\xf2\x68\xdd\ -\xc9\x47\x03\x5f\x54\xce\xad\xdb\xee\xb4\x81\xbc\xba\xa1\xae\xff\ -\x01\xa0\xcf\x8b\xae\xa9\xdb\xf3\xd4\x6f\xe0\xef\xa7\xea\xd2\xff\ -\x09\x7c\x7d\xd8\xef\xeb\x2e\x7e\xe2\x73\x20\x27\xeb\xeb\xae\xb2\ -\x61\x1f\xc7\x6e\xac\xbb\xef\x45\xb8\xde\x76\x5b\xdd\x57\xdf\x86\ -\xfd\xe9\xbc\xb8\xfe\x98\xcf\x03\xde\x6e\x7d\xb2\x7e\xe5\x37\x80\ -\x2f\xef\x78\xac\xfe\x38\x17\xe0\x5a\x78\x6b\x7d\xef\x17\x01\x4f\ -\xab\xdf\xae\xdf\xfa\xad\x15\x40\x57\x7b\xeb\xf5\xf3\x61\x9c\x79\ -\xdd\xf5\x1f\x7d\x72\x18\xe8\xe6\xf7\xf5\xf7\x3d\x07\x72\xea\xbc\ -\xc6\xfa\xcf\xbc\xab\x1d\xe8\x6d\x41\xfd\xe7\xab\x01\xcf\x77\x9d\ -\x5f\xff\xcc\x4a\xc0\xdf\x45\x83\xf5\x3f\x78\xda\x84\xcf\xc7\xeb\ -\x0f\xde\xf5\x18\x21\x73\x6e\xa9\x3f\xf8\x55\xa0\xef\x4b\x66\xd4\ -\xbf\x72\x1d\xf0\xf9\xc7\x3e\xd3\xa0\xfd\x64\x21\xc8\xeb\x0d\xf0\ -\xf9\x79\xf8\x7c\x05\x3e\x81\x9e\xef\x3f\xa7\x61\xfb\xad\x20\xd7\ -\xdf\x5d\x6c\x30\x7e\x02\x78\xb9\xfc\xc8\x86\x91\xe6\xc5\x84\xdc\ -\xf0\x9d\x86\x73\xae\x03\xfc\xd5\xde\xd4\x50\x5a\x00\xf0\x95\x9a\ -\x1a\x46\x5f\x03\x79\x9e\xfd\x53\xc3\x15\x0f\x00\xbe\x17\x7c\xb6\ -\xe1\x9a\x05\xb0\x8e\x3b\xe7\x37\xdc\xfd\x37\x90\x37\xc3\x27\x37\ -\xfc\xaf\x25\x80\x9f\x55\x3f\x6c\x78\x7a\x2e\xec\xd7\x87\xef\x6e\ -\xf8\xde\x7c\xd0\x0f\x67\xdd\xdc\xf0\xcb\x05\xb0\xfe\xbd\xb7\x35\ -\xbc\xba\x14\xe4\x78\xd3\x39\x0d\xaf\xaf\x02\xb9\x34\xfb\x94\x86\ -\xdf\x1d\x0d\x78\xae\xba\xba\xe1\x6f\x9b\x40\x1e\xdc\x52\x48\x35\ -\x7c\x95\xca\xa3\xcd\xa9\xf6\x3b\x81\x0e\xfb\xdb\xe0\x13\xd6\xdd\ -\x6f\xc2\x27\xac\xab\xff\xd3\xa9\x65\x8f\x01\x7f\xae\xb8\x24\xb5\ -\xe6\xe3\xb0\xae\x0f\xfc\x29\x75\xe2\x31\x40\xe7\xe7\xdf\x99\x3a\ -\xf1\x00\xc0\x73\xfe\x0f\x53\x5b\xef\x07\xf9\x76\xef\x63\xa9\xb3\ -\x9f\x03\x3a\x5a\x34\x0e\x9f\x87\xc3\xe7\x53\xf0\x09\x72\xfd\x98\ -\x79\x29\xe3\x2e\x80\xe7\xa6\x1f\xa7\xc6\x6b\x2e\x26\xa4\xe2\xd4\ -\xd4\x45\x37\xc0\x3c\xeb\xbf\x99\xba\xfd\x8a\xd9\x20\x77\x1f\x4c\ -\xdd\x71\x26\xec\xc7\x9d\x97\xa4\x1e\x9a\x05\xfc\x34\xfd\xfb\xa9\ -\x8f\x7f\xe0\x55\x90\x17\x5f\x4a\x7d\xf3\x4c\xe0\xa3\xd6\x17\x52\ -\xcf\xec\x7c\x04\xf8\xbf\x21\xf5\xcc\xaf\x40\x3e\x1c\xfe\xa7\xd4\ -\x8f\x7e\x0f\x70\x5c\xf8\x74\xea\x95\x1b\xaf\x02\xbc\x9c\xd5\x58\ -\x37\x0e\xf8\xbb\x2c\xd7\x78\xe4\x73\x0e\x21\xa7\x6e\x6c\x5c\xf8\ -\x11\xc0\xf3\xae\xbd\x8d\x0b\x1f\x07\x7a\x9d\xb1\xbd\x71\xd1\x85\ -\x80\x87\xf3\x9e\x68\x5c\xba\x13\x9e\xbb\x4a\x6b\x5c\xf6\x39\x90\ -\xd7\xfb\x73\x8d\x6b\x1d\x58\xdf\x7d\x1f\x6a\x3c\xe9\x24\xa0\xbf\ -\xbe\xf1\xc6\x9e\xa7\x01\xde\x4d\xc7\x37\x66\xdb\xbf\x07\xe3\xce\ -\x6e\xbc\xea\xb9\x3a\x42\x52\xbf\x6b\xfc\x50\x2f\xe8\xc5\x15\x6f\ -\x34\x7e\xed\x0e\x90\x6b\xef\xbf\xaf\xf1\xfb\xc7\x80\xfc\xa8\x1e\ -\x6f\xfc\xc1\x85\x20\x4f\x1a\x8f\x69\xfc\xc3\x6f\x07\x60\x7d\x46\ -\x53\xed\x4e\xe0\xbb\xe6\xf5\x4d\xf5\x7d\x20\x8f\x2e\xd8\xd7\x74\ -\xc4\x5f\x40\xaf\x5c\xbc\xb5\xa9\xfd\x2e\xc0\xbf\x3b\xd1\x74\xec\ -\x85\x80\xa7\x5b\x67\x36\x1d\xbf\x1d\xe8\xbf\xee\x53\x4d\x5d\xb3\ -\x9e\x01\xbd\xda\xdf\xb4\xef\x2b\xc0\xd7\xe3\x2b\x9b\x0a\x57\xc2\ -\xfa\xda\xde\xd7\x74\xe3\x3d\xb0\x1f\xf7\x6a\x4d\xb7\x7e\x10\xd6\ -\xbf\xe9\xae\xa6\x27\x7f\x06\x70\xff\xcb\x68\xd3\x8f\x5e\x9f\x0e\ -\x74\xbc\xac\xe9\xe7\x77\x80\x9e\xdd\xff\x48\xd3\xef\x7e\x0e\x78\ -\xbb\xe2\x5f\x9b\xe7\xbe\xf5\x5b\x90\x8b\x0d\xcd\x5d\x39\x4a\xdf\ -\xb9\xe6\x4d\xcf\x03\x9c\x1f\x79\xbb\x79\xef\xbd\x30\xef\x05\xff\ -\xde\xbc\xef\x93\x40\xbf\xa3\x7f\x6e\x7e\xdf\xaf\x61\xdf\x8f\x39\ -\xa7\x39\x73\x3f\xd0\xdd\x7b\x3f\xda\x9c\xff\x13\xd0\x6f\xbd\xde\ -\x3c\xfa\x85\x9b\xe0\xf9\x33\x9a\xef\x7a\x15\xf0\x75\xda\xf6\xe6\ -\xfb\x9f\x05\x39\xbf\xf4\x91\xe6\x07\x7e\xf2\x31\xb0\x03\x9a\x9b\ -\x9f\x78\x02\xf8\xf0\x8e\xc1\xe6\x37\xd6\xc1\xf8\x57\x7f\xb1\x65\ -\x69\x35\xec\xf3\x79\x97\xb7\x74\xbc\x08\xd7\x3f\x72\x4d\x4b\xff\ -\xb7\x01\x3f\x0d\x5f\x6b\xb1\xee\x04\x7a\xba\xa7\xb6\xe5\xbc\x73\ -\x3b\x40\x5f\x57\xb6\xdc\xb0\x1f\xf4\xf6\x71\x67\xb7\xdc\x68\xc0\ -\xba\x8e\xf8\x7b\xcb\x93\xff\x0f\xe8\xf8\xe8\x97\x5a\x18\x9d\xbe\ -\x06\x9f\x40\x07\x1f\x59\xdf\xf2\xf2\x2f\xab\x08\xb1\x17\xb5\xbc\ -\x76\x10\xf6\x65\xcb\xe3\xad\x75\xd7\x81\x7c\xb2\xbf\xd1\x7a\xf8\ -\xa5\x20\x57\xc8\xef\x5b\x8f\xbe\x0e\xe4\xcd\x79\x3d\xad\x3b\x4a\ -\x5d\xa0\xdf\xce\x68\x3d\xeb\xc9\x1f\x12\x72\xac\xd9\x5a\xfa\x34\ -\xe8\xff\x0b\xa6\xb5\x8e\x7d\x1d\xf6\xfb\xc0\xed\xad\x1f\x68\x04\ -\xfe\xdb\xba\xac\xf5\x86\x87\x1e\x04\x3a\xff\x7b\xeb\xed\x29\xd0\ -\xcf\x1f\x7d\xb9\xf5\xee\x57\xef\x01\xba\x5a\xd2\xfa\xe5\x2b\x81\ -\xfe\x3f\xf8\xc9\xd6\xa7\xbf\x03\x74\xb6\xe6\xad\xd6\x5f\xcc\x07\ -\xfa\x5d\x78\x42\xeb\x5b\xb5\xf3\x08\xd1\x4e\x6d\x7d\x6b\x31\xe8\ -\xd1\xd1\x07\x5b\xff\x38\x46\xf1\xba\xa8\xf5\xaf\x67\xc1\x3e\x9f\ -\xdf\x02\x44\xf2\xe0\x2b\x00\x21\x99\x47\xba\x49\x86\x98\x24\x0d\ -\x3f\x16\x29\x10\x9d\xd8\x44\x23\x45\xfc\xdd\x25\x56\x3d\x0a\x53\ -\xf8\x69\xe8\xce\x64\xb4\x9d\x96\x59\x70\x81\x7e\xc0\xb0\xb2\xf5\ -\xac\x7b\x16\x5c\xc3\x4b\x15\x74\xa4\x33\x43\x23\x69\xa4\x44\xf2\ -\xea\x68\xf0\xbb\xbc\x4a\x67\xd2\xe1\x37\x83\x2c\x27\x43\xc4\x81\ -\xbb\x72\xf0\x64\x01\xfe\xd6\xe0\x67\x1c\x7e\x77\xe0\x19\x03\x9f\ -\x34\x3c\x38\xda\x61\x4e\x47\xd3\xb5\x22\x9d\x57\x73\x2d\x4d\x2f\ -\x68\xc6\xb8\xe9\xb8\x66\x61\x58\x1b\x33\x6d\x63\xf9\x90\x53\xcc\ -\x99\x05\x23\x0e\xcc\x8e\xc8\x05\xeb\x08\xdc\x30\xfc\x5e\x42\x70\ -\x35\xd2\x49\xff\x79\xd3\xb6\xd2\xe5\xc3\x6c\xc3\xb6\x55\x2a\x76\ -\x76\x76\xd2\xd1\xa7\x79\xa3\x0f\x5a\x9b\xe9\x75\x1c\x7f\x34\x02\ -\x0d\x16\x69\x87\xc5\x2c\xc6\xdf\x86\xc8\x7e\x58\x94\xab\x5c\x73\ -\xe0\xef\x1c\xfc\xc8\x27\x32\xca\xb7\x12\x61\x2a\x74\xf1\x08\x5a\ -\x81\x08\x72\x47\x0c\xcd\x31\x72\x46\xda\x35\x32\x9a\x35\xb4\x1f\ -\x7e\x69\x77\x16\x07\xf1\x85\xab\x89\x5f\xca\x65\xb0\x14\xb6\x2b\ -\x69\x04\x43\xc7\x89\xe9\x4e\xd1\xff\x1d\x00\xc6\xc6\x6b\x19\xdc\ -\x33\xb6\x7b\x23\xfc\x2e\x76\x77\x1a\x80\x65\xe8\x75\xe1\x6e\x1d\ -\xee\x61\xa8\x76\x02\xa8\x70\x62\xd1\xe0\x78\x0b\x3b\xbe\xbb\x08\ -\x1b\x6b\x38\x5a\xba\x64\xdb\x06\x6c\x3e\xdd\x65\xd8\xf2\x8c\x3b\ -\x02\x8b\xca\x68\x69\x2b\x67\xd9\x74\x85\x81\x75\x3b\xea\x02\x61\ -\x88\x89\x01\x77\x22\x67\x78\xb4\x20\x17\x68\x23\x50\x6c\x89\x2e\ -\x5c\xcb\x71\x82\xe5\xa0\x7b\x80\xcc\xc0\x51\xb4\x1e\x0e\x06\x0e\ -\x17\x3f\x47\x3d\xcc\x61\x53\x44\x78\xcf\x57\x75\xdb\x69\x7a\x7f\ -\x03\xbf\xdf\x4e\xe3\x8d\x59\xd2\x03\x37\x9a\x01\x0e\xa1\x18\xec\ -\x84\xdf\x7b\xc8\x20\xd9\x45\xb6\x21\x37\xe9\x1c\xef\x0e\x62\xa9\ -\x08\xcb\xd0\xc8\x00\x60\xde\x84\x31\x5c\xdf\x1d\x36\x5f\x8c\x8d\ -\x7b\x33\x0c\xff\xdb\x92\x50\x7a\x6c\x43\x77\x01\x9f\x40\x11\xba\ -\x9d\xee\xd4\x7a\x06\x77\x6d\x43\xfc\x15\xf4\x62\x87\x36\xb0\x65\ -\x6b\xdf\x20\xfd\x33\x6d\x15\x1c\xd7\xd6\xcd\x42\x04\xcc\xd3\xc8\ -\x46\xb2\x0c\xe6\xf6\x78\xd7\x1b\xbd\x7e\xe3\xb2\x01\x8f\x0f\x9b\ -\xd9\x53\x1b\xd9\x15\x7c\xf2\xf6\xc0\x6a\xe9\xe7\x10\x8c\xe5\x97\ -\x03\x8c\xb2\xf2\xe4\x2f\x70\x8d\x6e\x49\x11\x37\xc5\xf1\xc9\x14\ -\xe7\x9f\x84\x9f\x1e\x0f\x3f\x5a\xbe\x94\x73\xcd\x62\xce\x58\xc6\ -\xa4\xce\xd0\x32\x26\x62\x92\xa1\x2c\x62\xf1\x2d\x00\xee\x6b\xb8\ -\xb9\x25\xba\x20\x6f\xca\xda\x1e\xd3\x4e\x33\x62\x6a\x62\x4f\xb1\ -\x0b\xf8\xd0\xd5\x21\xfa\x48\xab\x83\x24\xc2\x42\x37\x7c\x37\x18\ -\xf8\x36\xc8\x75\x76\x04\x6f\xba\x70\x9d\xe2\x27\x28\x6c\xde\x23\ -\x71\x94\x46\x48\x83\x28\xe9\xde\x36\x28\x59\x52\x73\xf5\xc2\x30\ -\x65\x19\x85\x31\xc3\xeb\x9c\x4d\xfa\x10\x9e\x11\x0e\x8b\x27\x57\ -\xbc\x59\x53\x3d\x39\xcb\x31\xb4\x6d\x9c\xba\x5a\xf9\x10\xf4\xe2\ -\x36\x81\xe2\xfe\xc0\x28\x7a\x40\x42\x9d\x03\x58\x33\x3c\x66\x3f\ -\xc8\x31\x51\x40\x99\xc3\xe8\x8e\xfd\x3d\x82\x72\x48\xce\x7d\x24\ -\x4e\xc3\x04\x2c\x0a\xa0\x21\x83\x4a\xd2\x8c\xad\x8f\x15\x62\x81\ -\x99\x03\x9b\x62\xc0\x96\x59\xa0\x1d\x8c\x18\x05\xdb\xb4\xcb\xc8\ -\x5b\xa3\x46\x48\xc7\xf6\x1a\x39\xa9\xbc\xce\xf6\x0d\x14\xa5\x5f\ -\x33\xca\x75\xa9\x61\xe9\x8e\x96\x90\xc3\x92\xea\xd9\x15\x0c\x1c\ -\xa9\x6a\xb3\xb6\x95\x0f\x29\x5b\x0d\x24\x6e\x58\xdf\xfa\x40\xfe\ -\x6c\x04\xa3\x53\xfd\x98\xc7\x29\x1d\xf2\xc2\x3f\x5a\xc0\x95\x45\ -\xe8\x0c\x51\xf4\xbb\x61\x0e\x91\xba\x27\xfd\x92\xbc\x33\x66\xde\ -\x28\x38\xa6\x55\x98\x9a\xe9\x83\x54\xaf\xc3\x2f\xc3\xf0\xb4\xab\ -\xd0\x47\xaf\x18\x8e\x8b\xd1\x5e\x3f\x46\xa4\xd9\xe5\xdd\x38\xc9\ -\xc3\x94\x26\x86\x60\x41\x26\xec\xa6\xae\x48\xb0\x86\x5e\x6b\xac\ -\x30\x6c\xeb\x19\x95\x4d\xbc\x6b\xf8\xf0\x55\x64\x13\x3c\xc4\xc4\ -\x6a\x86\x13\x4a\x19\xca\x19\x49\x28\x1f\x79\x3f\x5d\x4f\x11\x9f\ -\x71\x70\x47\x18\x01\x52\xa3\x61\x08\xf7\x8b\x82\xab\xc1\x7e\xea\ -\x30\xa6\xa1\xa8\xf9\x4d\x9b\xc6\x8b\x39\x2b\x63\x44\xda\x30\x8e\ -\x06\x64\x05\x88\x35\xf3\x20\x8d\x6d\x71\xb1\x83\x92\xa1\x53\x1a\ -\x02\xec\x03\xba\xb3\x7a\xda\x70\x62\x17\xdc\x02\xa8\x96\xbc\x2d\ -\x11\x5d\x07\x37\x8f\x01\x59\x2b\x12\x9b\x5f\xc1\xc7\x0a\x40\x9f\ -\x16\x62\x29\xcd\x2d\xba\x43\xc1\x92\xa0\xff\x2c\x8e\x35\xa2\x18\ -\x4f\xaa\xc0\xb1\x14\xbb\x73\xd9\xce\x92\x1b\x83\x09\x0b\xd4\xb6\ -\xc6\x61\xd4\x9c\x11\xc3\x70\x3b\x63\x80\x6f\x82\x4d\xa6\x2c\xe7\ -\xfa\xa8\xa3\x7a\x53\xc6\x44\x92\x4c\xb1\x27\xe8\x9f\x78\x7b\xbb\ -\x72\x3b\xb3\x88\xd4\x75\x32\x8b\xc8\x04\x01\x24\x91\x77\x38\x7d\ -\x96\x81\x09\x3b\x60\x82\x14\x63\x40\x46\x8d\x3e\x0f\x04\xb3\x89\ -\xb8\xa1\x62\xe8\xdc\x58\x21\xdf\xd8\x67\x16\x4c\x67\x44\x13\xb2\ -\x85\x5b\x57\xec\xaa\x27\x59\x8f\x03\x2e\xa7\x12\x35\xcf\xc7\x8c\ -\x12\xf5\x0e\xc7\x7e\x56\x2a\x04\x6f\x96\x36\x36\x1e\xb2\x38\xb7\ -\x27\xdd\x11\xab\xe4\x6a\x69\x10\xe0\x14\xb1\x0c\x45\xd1\x93\x5f\ -\xe6\x89\x36\x5b\xd9\x5c\x75\x6a\xb6\xb9\x2b\xff\x4b\xec\x95\xe3\ -\xa5\xb0\x5a\xc9\x0d\x95\xe4\x46\x0a\xdf\x25\x6f\x69\x29\x00\x2d\ -\xb8\x23\xd5\x42\xe1\x86\x6f\xde\x2e\x54\x9b\xbc\x79\x3b\x68\x0f\ -\xe5\x66\xfa\x27\xde\xfc\x84\x77\xf3\xa1\x70\x51\x01\x17\xff\x4f\ -\x47\x6a\x8c\x0e\xa1\xc6\x78\x91\x6d\xb8\xb7\xd0\x7d\xdb\x51\x4d\ -\x46\xb2\xe8\x90\xe1\x8e\x19\x46\x41\x5b\xc9\x74\xa8\x53\x86\xee\ -\x48\x5b\xc5\x89\x28\xf4\x35\x91\x1d\xb0\x80\x2c\x22\xc9\x95\x86\ -\xe3\x8e\x6c\xd6\x31\x5c\xc5\xa0\x62\x17\xf0\x91\xc7\x42\x86\xa3\ -\x25\x87\x40\x22\x9d\x84\xc7\xff\x8b\xf0\x1a\x66\xa3\x34\x79\x93\ -\xe1\xda\x5b\xe4\x16\xb6\xa6\x08\x39\x73\x08\x78\x0d\xa3\x29\x6c\ -\x5f\x17\x51\x4c\xbf\x06\xa0\x53\x32\xb3\xf8\x92\x86\xd1\xde\xa6\ -\xc0\xc6\xa1\x86\x2a\xb5\x73\xb9\xa1\xf7\xce\x78\xfa\x04\xc9\xd3\ -\xb6\x31\x5c\xca\xe9\x36\x50\x52\x6e\x62\x38\x89\x19\xa2\x28\x83\ -\x9d\xec\x19\x6e\x2e\xec\xf4\x2f\x4b\xaa\x40\x7e\x5b\xcc\x83\x67\ -\x86\xf0\x63\x23\xb9\x3c\x8f\x50\x97\xb8\xbb\x4c\x59\x24\x5f\x3e\ -\x7b\x7a\x40\x2c\x0e\x4b\x31\x1b\x76\x18\x1c\x87\xa0\x73\xa1\xa8\ -\xf8\x5d\xe2\x0e\x04\x74\x3a\x1a\x44\x3e\xc0\xa4\x49\xe4\xdd\x1a\ -\xfb\xf8\x4c\x78\xdc\x42\xe5\xa7\x98\x8a\x92\xd3\x76\x59\x2e\xc0\ -\xa7\x90\x10\xbb\xc0\x6d\xdd\xf0\xa3\x51\x1a\x34\x5a\xc2\xfd\xf3\ -\x38\x2d\x4d\x82\x16\x78\x98\xbb\x76\xb1\x75\x44\x4b\xb2\xa4\x0c\ -\x96\x96\xee\xa0\x9f\xcf\x14\x24\xb5\x80\x79\xe1\xa0\x19\x95\xf3\ -\x61\xb6\x66\x20\xad\xb3\x6d\x69\x64\xcf\xe0\xdf\xf8\xc8\xaf\x7c\ -\x8f\x94\xaf\x37\x74\x0f\x5b\x2e\xe2\xc6\xef\x26\x85\xdd\x27\x6a\ -\x4c\xd3\xd1\xfe\xbb\x74\xca\x99\xb8\xf4\x18\xa5\xc2\x1c\x31\x6d\ -\x48\x07\x17\x18\x19\xe4\x10\xa4\x5f\x08\xc3\x74\x1d\x51\xfe\x91\ -\x17\x73\x94\x7e\xea\x00\xf3\x6a\xbc\xd8\xe1\x61\x7c\x2c\xbc\x2c\ -\x83\x87\xe3\x11\x23\x6a\x88\xe5\x8c\xb7\x7f\x51\xbb\x28\x04\x08\ -\xfb\x2b\x8f\x78\xcc\x7b\x41\x1f\x1d\xdd\xd5\xa0\xfb\x6e\x44\x42\ -\xba\x96\x81\x04\xd4\x98\xcb\x79\xd8\xa3\xf6\x1d\xc3\xab\x9e\x07\ -\xfc\xe9\x34\x84\x07\x77\x50\x5c\x9b\xce\x21\x2d\xca\x56\x08\x29\ -\x87\x71\x12\x49\x48\xcc\xd1\x19\x42\xc2\x1d\xc1\xeb\x72\xe3\x55\ -\xc5\xf7\x6b\x74\x83\x35\xcf\x05\xf3\xa3\x64\x25\xe9\xf5\x16\xd5\ -\x31\x20\x9c\xca\x31\xcb\x3e\x40\x2d\xd4\x62\x4e\x07\xbb\x35\x0b\ -\x2e\xd0\xb0\x61\xe5\x0d\xd7\x9e\x60\x6c\xc8\x7d\x46\xdf\x4a\x76\ -\xd2\x7b\x71\x25\x6d\xa0\x06\xa6\x80\x56\x9a\xe2\xca\xc3\x93\x0c\ -\x99\x51\x14\x44\x16\x03\xbf\x79\xe4\x23\xb9\xa7\xa3\x3c\xd8\xa0\ -\x8b\x65\x71\xeb\xe3\x50\xc2\xc1\x4b\x84\xa2\x18\x18\xd1\x8b\x86\ -\xb6\xb2\x57\x1b\x35\x8d\x31\x70\x8b\xb2\x91\x01\x60\x01\x33\xbd\ -\x79\x65\xef\x6e\xb8\x15\x61\x9e\x0b\xde\x88\x80\x54\x85\xcf\x8f\ -\xf4\x66\xdf\x1c\x93\x0c\xb7\x31\x22\xd8\xc1\x70\xec\x7a\xbb\x9c\ -\x54\x13\x2e\x50\xe3\xb3\x85\x02\x15\xa0\xa1\xf0\x83\x62\x21\x0e\ -\x1a\xe3\x2e\xb7\xc6\x07\x31\xae\xa3\x06\x32\xaa\xe9\xb7\x51\x37\ -\xf7\x83\x44\x62\x96\x1e\x23\xe4\xe5\x44\xf8\xa2\xba\xef\xba\x85\ -\xbc\x68\x29\xe1\x31\xb6\xab\x05\x2e\xe5\x4a\x6c\x71\xd2\x23\x1c\ -\xb4\x86\x41\xa1\x72\x11\x54\x4a\x03\xe4\xda\x76\x8b\x05\x22\xe6\ -\x72\x18\xf0\x8e\x1e\x7e\x03\x5d\x1b\xbd\x01\xa1\xca\x01\x54\x39\ -\xe4\x6b\x5b\xd1\xa1\x09\xe6\xf7\x21\x54\xc8\x0c\x1b\x74\xdd\x38\ -\xc6\x23\xa2\x28\x4d\xfa\xda\xcb\x19\x44\x4c\xec\xaa\x70\x21\xe4\ -\xc8\x61\x05\xc0\x9b\xa7\x13\x93\xad\xa5\x33\xb0\x16\xdb\xb7\x92\ -\x34\xd7\x3d\x54\x4b\x94\x7c\x3a\x60\xa6\xc4\xa0\x6b\x16\x4a\x86\ -\x87\xbe\xd9\x81\x29\xf1\x5b\x6f\xba\x6c\x19\xa8\x53\xa6\x0d\xa9\ -\xa4\x3c\xd2\x6d\x26\x06\x89\x12\x69\x1d\x01\xa4\x49\x58\x25\xc2\ -\xd2\x56\x3e\xaf\x17\x32\x0c\x63\x93\x83\x7f\x3b\x78\x87\x25\x1a\ -\x70\x8d\x01\x9c\x05\x2c\x87\xe0\x47\x8a\xcc\x77\xe2\x45\x8e\xa1\ -\x66\x36\x00\x6d\x32\x54\x6a\xa0\xfc\xca\x21\x07\x88\x50\xa9\x94\ -\x3b\x7d\x03\x63\x7a\xd1\xd1\x32\xa6\x03\x82\x77\x42\xcb\xd3\x95\ -\x46\xc8\x1c\xcf\xf7\xa3\x61\xd2\xac\x4d\x95\x0d\x4d\x52\x65\x73\ -\xba\x4b\xbd\x72\x94\x49\x87\xab\xa8\xe8\x65\x03\x7a\x98\x38\x2e\ -\x82\x6e\x12\x60\x44\x66\xa9\x38\xfd\xa8\x80\x4e\x39\x69\x13\xc8\ -\x0e\x9b\x87\x22\xc7\xa5\xcd\x3b\x68\x9b\x79\x63\x5c\x31\xe7\xd8\ -\x05\x7c\xe4\x3f\x31\x87\x26\x79\xae\xa4\x68\xe5\x82\xa7\xd0\x92\ -\x59\xc0\xf2\xf9\x71\xce\xd5\x19\xcf\xa1\xc2\x28\x61\x42\x8b\x6c\ -\x0b\xd9\x0a\x72\x7d\x30\xc2\x0e\x13\xd0\x04\x22\xbe\xc4\x9f\xa2\ -\x64\x50\x14\x3c\xcd\x90\xf3\xd9\x6e\x74\x24\x16\xc7\x57\x03\xe6\ -\x1f\xa0\x38\x71\x68\x24\x12\x48\xde\x28\x44\xe7\x60\x3b\xf8\xf7\ -\x76\x89\x06\x38\x69\x80\x09\x76\x08\x03\x96\x5c\xae\x53\xa1\xee\ -\x08\x13\xce\xb3\xdf\x1c\xb4\xdd\x78\xbe\x91\x07\x93\x35\x96\xec\ -\x2c\x58\x76\x5e\xcf\x31\x03\xcf\x2c\x8c\x1a\xb6\x2f\xad\xa2\xec\ -\xd3\x6a\x1e\xf8\x54\x9d\x53\xba\x6e\x91\x5a\xcb\x47\xe1\xc5\x5b\ -\xdd\x61\xa7\x15\x32\x96\x96\xd3\x1d\x57\x0d\x66\xf3\x78\x3f\xfd\ -\xce\x0b\x06\xb9\xbe\x79\x12\xcc\x81\x94\xfc\x8f\x4a\xcf\xac\xa1\ -\xb0\x88\xf4\x0c\x85\x16\x13\x33\x12\x67\xd9\xd8\xc4\x4d\xd4\x5a\ -\xbe\x46\x4e\x06\x38\x0a\x5e\x24\xf4\x50\x63\xbe\x32\xfe\xcd\x04\ -\xaf\x47\x3d\x44\x4d\xd2\x38\x44\x8d\x51\x4a\xd1\xab\x86\x15\xd2\ -\xfc\x3e\x7a\x8f\x81\x86\x86\x1a\x5d\xa7\xb0\x32\xff\x26\x1c\x57\ -\x7f\xef\xc9\x16\x12\x52\x6c\x50\xdd\x2a\x18\x48\x9e\x40\x75\x48\ -\x46\x18\x02\x85\x9b\xa8\x00\x43\x02\xcc\x9a\xb9\x1c\xfc\x8d\xe4\ -\x8a\x77\x96\x0a\xa6\x6b\xc8\x78\x3b\x8f\x19\x9c\x56\x94\xd1\x76\ -\x1a\x6c\xb0\x51\x9b\x04\xe3\x83\x75\xfc\xb6\x98\x07\x3f\x18\x99\ -\x0c\x17\x12\xfa\xbf\x33\x2d\x7c\x62\x6c\x5a\x98\x22\xaa\xac\x68\ -\xeb\xe9\xf0\x00\x37\xd9\xba\xc5\xea\xa4\xc9\x46\xbf\x8d\xba\xf9\ -\x24\x4c\x45\xf8\x89\x48\x55\x69\x56\x00\x59\xf4\x67\x63\x64\x8e\ -\x7e\x7e\x8f\xd8\x6a\xa1\xac\xe8\x24\xa8\xa7\x36\xca\xe4\xfd\x0c\ -\x39\xff\xa0\xa5\x66\xb1\x17\x4a\xa8\x7d\xd8\x8b\x9e\xac\x15\xc7\ -\x06\x4c\x24\x19\xba\x85\x2b\x3f\xae\xee\x24\xd5\x74\xe7\x5c\xaa\ -\xc9\xe8\xc3\x47\x6d\x2e\x99\x5d\x5d\xbd\xa6\x9e\xb3\x86\xe1\x33\ -\x37\x3c\x60\xb8\x34\x31\xe9\xe0\xa0\xdc\x1c\xdf\x46\x2c\x1e\x37\ -\xd0\xf0\x7f\xa9\x4f\x45\x7c\x53\x50\xd3\x08\x72\xcc\x08\x2f\x6a\ -\x71\x90\x36\x76\x93\xcd\xde\xd4\x47\xc3\xd4\x86\x5d\x80\xad\xd7\ -\x06\x76\x6f\xd6\x76\xea\x2e\xfd\xd3\xd1\x72\x56\xda\xf3\xb5\x12\ -\x80\x34\x82\x1e\x64\x1e\x2d\x2a\x43\x21\x46\x83\xc8\x42\xa4\x28\ -\x31\xd3\x1e\x69\x96\xbb\x28\x2e\x58\x50\x24\xe3\x1b\x6f\xb1\x4c\ -\x21\x75\xe7\xc6\xf4\x09\x07\x09\x92\xe2\x5f\x30\x7d\x3b\x58\x06\ -\xfa\x10\xe8\x1f\xfc\x02\x90\xaa\x1d\x30\x26\x16\x27\x5c\x06\xa3\ -\x58\xca\x9f\xb2\x2e\xa6\xa6\xdb\x86\x47\x12\x0e\x30\x0b\x36\x87\ -\x22\xfc\x00\x40\x9c\x43\x84\x8f\x00\xf4\x6b\xa4\xcf\xb9\x51\x4f\ -\x1f\x70\x40\x84\x8f\x68\x6b\xde\xd1\x90\x6b\xa3\x86\x5c\xfb\x8e\ -\x86\x5c\x17\x35\xe4\xba\x84\x43\x5e\x0b\x16\x2e\xdd\x3c\xa1\xe1\ -\xa8\xc7\xe9\x78\x7a\x91\x69\x3e\x13\x7f\xb7\x15\x3d\xc8\x28\xf2\ -\x20\x12\x8d\xce\x09\x42\xd5\x07\xab\x40\xeb\x8a\x5a\xb2\xfd\xc8\ -\x93\x1a\xcf\xc0\x5a\x28\x24\x50\x4b\x12\x51\xca\x91\x07\xe2\x7a\ -\x09\xfe\xef\x54\xa4\xda\x88\x91\x3e\xc0\x82\x20\x66\x56\x9b\xb0\ -\x4a\xda\x98\x4e\x0b\xec\x68\xa8\x1d\x04\x1e\x90\xcb\xaa\x5e\x26\ -\xea\xb1\x8a\x6c\xc8\xd0\xcc\x7c\xd1\xb2\xa9\x16\x71\x2d\xab\x33\ -\xe1\xe2\x9f\x09\x2c\xde\xf0\xdc\x6d\x1a\x04\x13\x26\x3d\x43\xc4\ -\x28\xb2\xee\xcb\x1e\x12\x54\x74\x30\x9e\x18\xe2\x09\x59\xf6\x57\ -\x01\x9f\x5e\x86\x66\x5b\x1e\xd1\x94\xf1\x78\x27\xcd\xaf\xfd\xda\ -\xf3\x6a\x64\x50\x82\xa9\x97\x25\x88\x3e\x61\xb8\xc6\xa1\xd0\x0a\ -\xa2\xd0\x43\xe0\xc0\x24\x08\x2c\x58\x85\x65\x05\xf0\x00\x32\xda\ -\x10\x48\x8b\x03\x80\xcb\x21\x63\xd8\x2c\x14\x58\x15\x05\x2d\x5f\ -\xd3\x96\x44\x61\x35\x21\x52\xa7\xfb\xab\x89\x7c\x6c\x54\xcf\x0a\ -\x6b\x12\xf3\x50\x78\xac\xb5\xa1\xb1\x92\x32\x4f\x78\xac\x75\xa1\ -\xb1\x92\x72\x4d\x1f\x2a\x3d\xe6\x3b\x0b\x71\xc9\xac\x46\xa9\x77\ -\x12\x94\x26\x7a\xf3\x1f\xd1\x83\xd5\x82\x79\xbd\x58\x44\x5c\xa3\ -\x49\x88\xb5\x84\x09\x01\x5a\x8f\x02\x90\x31\xab\xaa\x46\x24\x78\ -\x7e\x03\x57\x78\xdd\xb6\xcf\x28\x9b\x2e\xc1\xa0\xc4\x00\x16\x96\ -\x91\x18\xb9\xbb\x3c\x23\x25\xa8\x25\x9b\x7b\x84\xb1\x51\x86\xae\ -\x9c\xc9\xcd\x8a\xe8\x78\x4e\x93\x1a\xdb\x48\x38\x62\x9b\xb7\x67\ -\x53\xc7\x8b\xa6\xfb\xe2\x2d\x58\xca\x99\x70\x96\xe3\x48\x3f\x67\ -\x6e\x91\xc9\x54\xeb\x64\x13\x44\xaa\x7c\x33\x63\x00\x58\xa3\xcc\ -\x9a\x70\xfa\xd5\xbe\x1a\x80\xa0\xd6\x16\xc4\x99\x07\x59\xc1\xcc\ -\xc9\xb4\x2f\x88\x79\x04\x33\x26\x69\x1c\x5a\xa7\xa1\x5b\x33\xad\ -\xc6\x2c\x13\x4c\xbf\x84\xec\x40\xc1\xf9\x07\xae\x07\x32\x3c\x7a\ -\x21\x3c\x57\x46\x7e\xbd\x64\x0f\xe9\x93\xb8\xee\xdd\xd3\x47\x83\ -\x33\x79\x1d\x1c\xa2\x22\x5d\x76\xd2\xd9\x66\x7a\x3b\x5a\x44\xfe\ -\xb3\x7d\x98\x6c\xee\x35\xb2\x3a\x98\xc4\x65\x6d\xdf\xc9\xdc\xd2\ -\x13\x0c\xab\x0c\xec\x63\x6e\x57\xc4\x34\xb9\x6b\xe5\x2f\x22\xfb\ -\x83\x8f\xab\x8e\x11\x80\x8c\x18\xe6\xf0\x88\x8b\x81\x28\x17\xbc\ -\x6e\x07\x4d\x5b\xaf\x92\x2b\xe9\xaa\x57\x62\xf6\x69\xea\xa2\xe7\ -\x28\x9c\x1c\x26\x40\x29\x57\xbe\x74\x60\x99\x44\x06\x9d\x4b\xcb\ -\xb7\xb1\xb9\x49\xa6\x9b\x25\xa6\x73\x8d\x7c\x31\x47\x29\x0b\x0b\ -\x83\x12\x2f\xb4\x8f\xbb\x4f\x92\x99\x58\x61\xf4\x41\x6e\x38\x1b\ -\x1e\x55\xc7\x2e\x94\x22\x1a\x30\x5e\x48\x3a\x69\x47\x80\x00\x44\ -\x2a\x42\x6c\x77\xf4\x74\x33\x7c\xd3\xb1\x7d\x4e\x38\xe1\x8a\xa9\ -\x33\x1f\x31\x93\xbe\x4b\x4c\xea\x4b\xbd\x24\x9c\x76\x0b\x78\xa2\ -\xa6\x4f\x2a\xb1\xfa\x0b\x9d\xc7\x3f\x9c\x28\x92\xe6\xa4\x9e\xe3\ -\xfa\x8e\x6e\x81\x24\xf3\xa3\xbd\x3a\x40\x47\x5b\xa4\x6d\x33\xc0\ -\x77\xb6\xc1\x58\xb3\xad\x31\xcd\x11\x35\xe9\x09\x00\xdb\x00\x02\ -\xf4\x35\xf4\x26\x73\x1e\x68\xcc\x3b\x49\xa3\x21\x2a\xc2\xac\x31\ -\x20\x7a\xe0\xcc\x51\xc0\x29\xda\x46\xda\xa4\xbf\x6a\x39\x63\xd4\ -\x48\xea\x13\xb4\x60\x69\x82\xd0\x99\xd2\x88\xa9\xe9\xb5\xdc\xc4\ -\x16\x8c\x7f\x90\xb5\xfe\x41\x92\x9a\x2e\xfe\x41\xd6\xf9\x07\x49\ -\x6a\xb3\xac\xe6\x2c\x2c\x77\xdc\xe4\xcc\x65\x7b\xb6\xbb\x60\xb3\ -\x5e\x24\xc0\xac\x52\xd2\x33\x13\x07\xa2\xa1\x19\xc3\xa6\x76\xb7\ -\x17\xc0\x4d\x30\xf3\x4e\x5e\xd5\x29\x0c\xd7\x28\xd5\xb4\x0a\xb3\ -\x6f\x69\x1e\x9c\xd1\x78\x9c\x73\x84\x6f\x33\xab\x11\x99\x10\x70\ -\x7a\x50\x2d\xdc\x34\x4e\xed\x53\x0d\x9c\x01\xe1\x47\x82\x6f\x40\ -\x6b\x52\x18\x8c\x06\xad\xa5\x4b\x08\xe5\xf1\x18\x1c\x32\x90\x98\ -\x58\x3c\x2b\x5a\x85\xc6\x6b\x9c\xc3\xfb\x4c\x25\xb5\x3b\x34\xa1\ -\x65\x18\x83\x26\x66\x49\x66\xf2\x64\x61\x63\x86\xb9\x00\x92\xaa\ -\x74\x18\x01\x12\x09\xe7\x0c\x47\xd2\x9b\xf0\x9b\x30\x67\xc3\x9b\ -\x36\x6b\xb3\x51\x30\x6c\x3d\xa7\xb1\xcd\x13\x53\x26\x84\xa7\x3d\ -\x29\x3c\xde\x7c\xd3\xc4\x7c\x4e\xb9\x33\x05\x49\xd3\x2b\x08\xc1\ -\x99\x72\xb8\x0d\xaa\x73\x3f\x6d\x73\xce\x1a\x82\x89\x68\x05\x41\ -\x39\xa4\xd8\xce\x95\xa7\x8e\xbe\x57\x38\xe8\x3b\x8c\x6b\xca\x28\ -\x24\xd6\xb4\xd9\x36\x33\x9a\x53\xd4\xd3\xbc\x1c\x37\x91\xe6\xea\ -\xf6\xcc\x3e\x46\xee\x69\x9c\x4d\xba\xbd\x2c\x18\xab\x78\x8c\xde\ -\x7c\xb3\x31\xbd\xaf\xe5\xf4\x09\xc3\xe6\xa1\x50\xe6\xa6\x25\x9b\ -\xbb\x62\x16\xcc\xcd\xfc\x00\xd5\x67\x2d\x12\x51\x50\x2d\xdc\x92\ -\x34\x06\x1a\xe5\x51\x23\xe6\x77\x66\x78\x02\xca\x05\xfc\xdb\x18\ -\x42\x96\xd9\x39\x19\xf0\x16\x3e\x33\xf3\x35\xbc\xe0\x54\xe4\xbd\ -\x94\xe1\x87\xf1\x9e\xf5\x88\x0d\xd7\x0b\x7a\x6d\x50\x3c\x68\x01\ -\x9f\x28\x7f\x67\xb1\x27\xff\xc1\x35\xe1\xef\x3e\x87\xff\x87\x03\ -\x64\x7e\x5b\x2d\x4e\x90\x5d\xb7\xc5\xb0\x0d\x74\x88\xd3\x7a\x01\ -\xf6\x15\x34\x43\x76\x02\x2b\xea\x69\x61\x97\x45\xcb\x15\xc0\x5a\ -\x00\x67\x85\x6a\x54\x1a\x5a\xa3\x5e\x90\xa3\x5e\x5c\x5f\x64\xc1\ -\xb6\x0d\x94\xbf\xe1\x12\x9a\xac\xe0\x59\x83\xfd\x4a\x87\x04\xaf\ -\x59\xcf\x64\x98\x1b\x87\xe1\x6d\x17\xcc\x3c\xdd\xce\x70\x26\x84\ -\xdb\xd2\x23\x1a\x1f\x22\x29\x83\x5c\x85\x61\xba\xb8\x00\x85\x38\ -\x21\x26\x4e\x73\xe4\x09\x3b\xaa\xc5\xc8\xad\x83\xc8\xe4\xbf\x47\ -\xde\x88\x5e\x46\x9c\x06\x4a\x7e\x1b\xb3\x1a\x19\x8e\x4e\x61\x74\ -\x05\xb3\x1b\x52\xd6\x2d\xdd\x9a\xd5\xd2\x34\xc6\x60\x64\x3a\x00\ -\x7b\xc3\x94\x49\xc6\xa8\xf8\xa3\x2e\xac\x6e\x6b\x63\x23\x46\x01\ -\xb3\x19\xc9\xb9\xe6\x55\xbe\x48\x56\xf4\x30\xd5\xc2\x2c\x5c\x58\ -\x96\x8b\x6c\x76\x4d\x23\xe2\xe4\x88\xce\x17\xb4\xdf\x4b\x98\x44\ -\x09\x73\x4a\xad\x26\x8a\x7b\x13\x97\xc9\x96\x2d\xf9\x53\x4d\x86\ -\xb0\xf0\x7d\x09\xef\x94\xf3\xcb\x70\x99\xe4\x30\x46\xc7\x16\x3e\ -\xab\x56\xe3\xd0\xa4\x08\x3b\x3f\xa7\x1e\xe5\x34\x54\x44\x66\x6d\ -\xc3\x48\xeb\x1c\x93\xb4\x74\x06\x68\x68\x3f\x46\xf3\xd3\xf0\x7f\ -\xda\xcc\x28\xc7\x95\x98\x6c\xc0\x74\x48\xa7\xb6\xd1\x18\xd3\x6d\ -\xa3\x83\x05\x7c\x28\x15\xba\xfa\x01\x83\x56\xe5\x8c\x00\xf5\xf2\ -\x03\xa2\x09\xb6\xe0\x09\x85\xce\x9c\x43\xa0\xb3\xa9\xeb\xa9\x04\ -\xc3\x0b\x41\xf1\x32\xaf\x85\x97\xb1\x43\xc6\xfe\x62\x46\xd5\x6e\ -\xc8\x28\xdb\x96\xf7\x90\xae\xd8\x05\xdc\x92\x90\xa1\x87\x53\xb7\ -\x66\x79\x0c\xcc\x51\xa8\x55\x51\xd2\x0a\x5b\x63\x34\x91\x61\x1e\ -\x58\xd8\x18\xe7\x81\x2f\xb0\x27\x56\x65\x3c\x93\x22\xa9\x14\xee\ -\x78\x87\x88\x8c\xae\x92\x90\x3a\xd1\xf1\x58\x36\xcf\xd9\xd5\xe4\ -\xf7\xaa\xb9\x97\x70\xe5\x84\x83\x34\xc8\xa0\x12\xd2\xbb\x83\xeb\ -\x27\xc7\x27\xed\x6d\x0c\xef\x32\x0d\xa0\xa2\xdd\x3f\x9a\x9a\x3b\ -\x30\x31\xdd\x97\xe6\xd1\x07\xb1\xd2\xbc\x6f\x25\x6d\x44\x1c\x7f\ -\x90\xab\x69\xf3\xb6\xcb\x8a\xda\x2e\x4f\xc5\x7b\x7b\x73\xc0\x28\ -\xba\x9a\x9e\xb6\x2d\xc7\x11\xc5\x1c\x1d\x9a\x05\xb2\xd6\x1e\x33\ -\x1d\xc3\xab\xef\xe0\xf2\x88\xa7\x1b\x5c\xdd\xa6\xe6\xab\x56\xb0\ -\x96\x95\x69\x34\x54\x54\xbf\xe3\xcd\xf4\xf3\x40\x50\xf2\xbe\xa0\ -\x04\x80\x2d\xcf\xdd\x11\x76\xa8\x19\x49\xf7\x52\xd5\x31\xc1\x14\ -\xbf\x7d\x1d\x08\x63\x2e\x86\xbb\x58\xad\x46\x78\x86\x50\x25\x8a\ -\xb7\x49\xd9\xa8\x4d\x92\xf5\x8c\x52\x05\x00\xe7\xf0\x1c\x2d\xfc\ -\xc6\x4d\xe1\x4e\x6d\x87\xd8\x27\x2a\xac\x8c\x89\xe0\x13\x5e\x7d\ -\x4a\xc2\xbd\xe9\x7b\x87\x7b\x23\x4d\x24\x3f\x31\x8f\x12\x79\x22\ -\x2c\x58\x3c\x1f\x77\xca\x2c\x74\x7c\x91\x9b\xea\x53\xe8\x54\xdc\ -\x41\xb6\x0a\x96\x34\x10\x02\x40\xce\x27\xd9\x5d\xcd\x14\x3a\xc4\ -\xf2\x4c\x58\x91\xab\x91\x09\x85\x22\x0f\x90\x38\x4a\xbd\xab\x08\ -\x5d\x89\x24\x9d\xc8\x47\x4b\x75\x74\x49\xd4\xee\x62\xfa\x40\x65\ -\x26\x9e\xbb\xf3\x0e\x5f\x7a\xdb\x4f\xd5\x8d\x50\xfb\x9d\x1a\x8c\ -\x55\xb0\x5c\xe5\xf9\x21\x96\xde\xc3\xe8\xb2\x55\xc8\x4d\x30\x33\ -\x01\xdc\x73\x07\x4f\x37\xd1\x64\x75\x52\x55\xb5\x91\x6c\xf5\x65\ -\x43\xe8\x06\xf9\x33\x30\xaa\xaa\x11\xd9\x96\x3c\x91\x99\x96\x25\ -\xde\xa2\x5b\xb6\x62\x9a\x43\x5b\x52\x8e\xa5\x4d\x16\x46\x40\xa0\ -\xa6\xc4\x76\x00\x7a\xbb\xa5\xc7\xc2\xe7\xd8\xd1\xd3\xcd\x52\x58\ -\x09\x67\xd1\x22\x66\xa1\x9b\x37\x81\xf6\x84\xab\x78\x0e\x62\x15\ -\xe0\x3a\x58\xa5\xc4\x21\x5b\xe6\x11\xc9\x06\x03\x22\x34\xa0\xce\ -\x19\x08\xbe\xf3\x79\xca\x89\xea\x1c\x17\xb1\x8a\x72\x62\xa8\x47\ -\xf2\x39\xdf\x41\xdc\xb4\x2d\x04\xc2\xf2\x80\x7d\x21\xab\x2a\x9a\ -\xd9\x74\xcb\x59\x78\x21\xb1\xd7\x97\x24\x72\x25\x83\x2e\xea\x61\ -\x97\xd9\x5b\x0b\x98\xce\xcf\x1d\x62\xac\x6a\xa1\x52\x1a\x24\x0e\ -\x1d\x52\x0f\x9d\x51\x3e\x8b\xf5\xcb\x74\x53\x33\x2d\xbe\xf1\xea\ -\xb3\x13\xc7\xf6\x29\xa1\x88\xe4\x27\x73\x97\xdb\x03\x4e\xd7\x56\ -\x90\x63\x3b\x94\x64\xff\x8c\x6d\x06\xb8\x3c\xed\x5b\x07\x76\x78\ -\x6e\x50\xd2\x94\x7e\x87\x3c\xf2\x47\x44\xcd\xa7\xb0\xd5\x65\xe1\ -\x3d\x17\xe5\x92\xcb\xb6\xd3\x34\x13\x96\x34\x6a\x80\xbe\xa4\x8b\ -\xab\x98\x0e\x5e\xb3\x43\xd4\x00\x7a\xfc\x9c\xaa\x0a\xa5\xbb\x2b\ -\x04\xad\xf0\x3c\x64\x6c\x52\x64\xe0\x68\xc9\xa6\xc9\x03\xca\x79\ -\x25\x86\x23\xdc\x39\xa1\x90\xa8\x22\x10\xc1\x7d\xe1\x9f\xcb\x94\ -\xbb\xf0\xea\x85\x98\x57\x4d\x6a\xb6\x09\xd2\x44\x16\x0a\x66\x3f\ -\xd1\x03\x36\xa1\x9e\x70\x9d\x52\x25\x9c\x4a\x71\xca\x50\x2a\x84\ -\x38\x2b\x63\x03\x3d\x01\xfa\xc1\xee\xd4\x06\xb8\x17\x3d\x42\x5d\ -\xeb\x11\x6b\x4c\x03\xfb\x6b\x42\x73\xce\x29\xe9\xb4\x56\x4b\x54\ -\xf3\xe4\xc5\x30\x49\x45\xfc\x4a\xd4\x8a\xc1\xda\x3c\x03\xb5\xa5\ -\xda\x36\x20\x0f\x62\x97\x17\x03\xcb\xac\xd2\x76\x7d\x5c\x63\x25\ -\x3c\xda\x80\x2c\x11\x4c\x30\x6b\x13\xb0\x31\xd3\xcc\x25\x25\xa1\ -\x5e\xdd\x6f\x25\x8e\xad\xb7\xab\x23\x20\x97\xc8\x4d\xa7\x5a\xbc\ -\xc8\x2d\x2e\xc9\x27\x2d\x74\x74\xad\x3d\xab\x3b\xae\xe1\xb8\x09\ -\x59\xa4\x62\x21\xe6\x1a\x45\x4d\xa8\xb4\x04\x3a\x38\x9e\x8a\xe8\ -\xde\x4a\x52\x54\xce\xf6\x84\xac\x97\x0e\x8f\x34\xa4\x61\xce\x88\ -\x5d\x16\x41\x04\xeb\x0a\x75\xee\x16\xbf\xb3\xd8\x84\xc1\xcf\x62\ -\x18\x58\x9f\x99\xf1\x5c\xea\x0e\x12\xed\x43\x2e\xf3\xce\x43\xa9\ -\x76\x51\x5c\xdd\xa3\x24\xe3\x8b\xfa\xb1\x36\x35\x37\x01\x1e\x60\ -\x16\x84\x2d\x3a\x16\x8a\xf1\x82\xf6\x28\xbd\x48\x9b\xfa\x0c\x1b\ -\xae\x57\x97\x88\x76\x0c\xda\x44\x2c\x3d\xe9\x33\x8d\xe8\x33\x78\ -\xf6\xc9\x67\x01\x0f\x29\x55\x8d\x66\x01\x36\x55\xcf\x24\x25\xfa\ -\x64\x29\x54\xbf\x6d\x31\x9d\x1a\x15\x87\x94\x42\xed\xf5\x52\xa8\ -\x6a\x6c\x70\xf2\xc4\xa2\x85\xd2\x62\x98\xb0\x23\xee\x6a\xfc\x77\ -\xee\x0e\xdb\x1c\x36\x0b\x18\x97\xa5\x85\x04\x54\x4f\x97\x9b\x69\ -\x6c\xc1\xe6\x13\x36\x4a\x4c\xb5\xe4\xb7\x66\x57\x19\x49\xb5\x64\ -\x48\xf4\x57\xd4\x4d\xc7\x60\xdf\xa1\x20\x71\x3f\x8c\x44\x39\x50\ -\x94\xc1\xa9\xad\xa6\x92\xa3\x55\xad\xf8\x56\x05\xb6\xc3\x9f\xf4\ -\x1b\x44\x2b\x06\xf4\x51\xc3\x2b\xc2\x8e\x40\xb7\x70\x90\x1d\x6a\ -\x5b\x27\x5f\x4b\x7f\xcc\x91\xb2\xa0\xaf\xe3\x3f\x99\xc8\x7c\xda\ -\x37\x89\xe3\xad\x3e\x78\x9e\x73\x3e\x3f\x28\xe6\xe3\x15\x1f\x1f\ -\x26\xa6\x8f\x81\xc8\x0a\xbd\xba\x81\xb2\xaa\xf3\xfc\xc3\xac\x0d\ -\x0e\x93\x3c\x33\xa7\x0e\xb3\x2e\x38\x4c\xd2\xdc\xdc\xac\x40\x6d\ -\x4a\xf0\xf0\x55\x6a\x80\x7a\x5c\xe5\x14\x32\x4c\x03\xc0\x84\xf7\ -\xe8\x2f\xc7\xa9\x1f\xe0\x05\x96\x65\xd8\xcd\xc2\x64\x1d\x45\xfa\ -\xb4\xa6\x80\xd3\xa6\x7d\x95\x12\xc3\x39\x88\xe8\x3b\x80\xa7\xdd\ -\x0c\x32\x26\xe1\x1c\xd4\x9d\x03\xe2\x80\x5b\x22\x87\xb0\x3b\xe0\ -\xdd\xb2\xb0\x93\x4c\x73\x64\x78\x50\x56\x40\xaf\xd6\x55\xfb\x5d\ -\x9c\xa3\x06\xbd\x33\x57\x3c\x3a\x08\xf8\x32\xb3\x26\x50\xeb\x01\ -\x23\xa9\xc1\xbc\xa2\x0c\x80\xb0\x18\x58\x39\x6c\x45\xeb\x1c\x59\ -\x6d\x71\xb9\xb3\x7e\x0c\x44\x5f\x30\x43\x53\x56\x35\x18\xf1\xd7\ -\xb9\x30\xab\xb2\x04\xca\xd9\xe4\xc2\xcd\x09\xdc\x9d\x01\xe3\x2b\ -\xeb\x29\xf2\xb0\xb0\x93\xe2\x22\x5c\xf8\xd6\x3d\x88\x3a\x37\x58\ -\x75\xc6\x6a\x64\x80\x8e\x9c\x9c\x8e\x01\x86\xcc\x78\x96\xdd\xc6\ -\xc3\xde\x9e\x98\x4b\x2a\xd7\xc6\x11\x2d\x79\xa2\x16\xb1\xc4\x15\ -\xf7\x94\x30\x92\x24\xfb\x30\x46\xf5\x83\xa0\xe5\x1a\xa3\x24\x41\ -\xf7\x1c\x6f\xa9\xef\xa1\x4b\xcd\x04\x0b\x62\x60\x2d\x25\x90\x88\ -\x18\x07\x61\xe7\x64\x61\xb5\xba\x06\xab\x13\x61\x94\xb2\x6a\x66\ -\xae\xc2\x65\x16\xc8\x5f\x70\x87\x6d\xdf\xfe\xea\xb8\x2c\xb1\x1b\ -\x69\x34\x98\x85\x59\x2a\x02\x5a\x45\x62\x04\xf2\xbc\xaa\xbf\x2a\ -\x4a\x7d\x8b\x9e\x72\x1b\x47\x03\x70\x15\xfc\xbc\x07\x7e\x56\x80\ -\xd1\xb6\x02\xfe\x1d\xab\x98\xb6\xdb\xe9\xb2\x0b\xa5\xfc\x10\x6d\ -\x90\x94\x05\x04\xa4\x4d\xb0\xc2\xe8\x36\xb2\x62\x02\x66\x2d\x58\ -\x76\xc6\x2c\xe0\x39\x06\xab\x68\xd8\x3a\x4b\xa9\xb5\x67\xf1\x78\ -\x52\xa7\xb6\x4a\x7b\x8f\xb6\xa2\x73\xc5\x8a\x63\x93\x3a\x8f\x57\ -\x20\x1a\x58\x7a\xda\x22\x5a\x60\x57\x0b\x24\x7c\x3a\x23\x58\xb0\ -\xce\xa2\xaa\xac\xc7\x92\x70\xc1\x56\xf8\xa8\x24\xc3\x63\x7d\xcf\ -\x73\xc7\x49\xe7\xc8\xca\xf2\x40\xb8\xab\x90\x79\x3f\x45\x82\xad\ -\x67\xcc\x92\x83\xa4\xed\x05\xc1\xe8\xc9\x0c\xea\x3c\x51\xc7\x9f\ -\xf7\x64\x81\xd5\xd0\xcb\x2b\xd8\x81\x45\x8b\x9e\x98\x03\xd7\x39\ -\x0d\xee\x81\x59\xc0\x74\xa3\x91\x14\x0b\xc7\x97\x2d\x11\x83\xf2\ -\xfc\x5d\x14\x6e\x51\x90\x5f\xae\x24\xea\xc7\x4d\x60\xf2\x20\x9c\ -\x6f\xf7\xe7\x29\x44\xf9\xac\xbf\x5b\x51\x74\x46\xbe\x0d\x81\x62\ -\x09\x79\xcf\xb9\x34\xf4\xf4\x08\xcb\x42\x8a\xd3\x1c\x53\x43\x58\ -\x29\x62\x5f\x14\x86\x97\x48\x74\xd6\x25\xbe\x48\xa6\x84\x12\x4e\ -\x66\x49\x18\x0f\xc9\x9a\xf0\xd8\xfa\x0c\x1c\x95\xb9\x2d\xfe\x4a\ -\x2f\x4a\x5a\x5d\x70\x55\x56\x43\x0c\xc2\xff\x94\x08\x87\x38\xe9\ -\x8a\xb0\x74\x9a\xc8\xf6\x5f\x2c\x96\x66\x79\x71\x07\x29\xa1\xe3\ -\x6a\x37\x32\x21\x78\xfc\x0d\xc1\xd8\x6c\x2a\x61\x64\x11\x03\xb6\ -\xb2\x87\x6a\x1d\x83\x83\xce\xa6\xce\x77\x4a\xb8\x75\x05\x5f\xa4\ -\x22\x88\xdd\x80\xda\x57\x70\x52\xe2\xd1\x48\xd9\x8e\x8b\x39\xa0\ -\x22\xb4\xce\x60\x0c\x3f\xcf\xc6\xed\xe3\xc9\x13\xf0\x8f\xb0\xa4\ -\x48\xd5\x65\x16\xa7\x29\xc1\xaa\xae\x27\xed\xd4\x14\x8c\x16\xde\ -\x5d\x8f\xf6\xbe\x3b\xc8\x63\xe3\xd4\xef\x3b\x6d\x2b\xcb\x4b\x81\ -\x28\x1b\x1b\x31\xd3\xac\x91\x03\xcb\xf2\xc3\xf5\x52\x8e\x67\xac\ -\x68\x79\x5e\x97\x36\x68\x59\xb9\x21\xdd\x56\x32\x59\xa0\x00\xd2\ -\x06\x66\x23\xd9\x33\xa2\x68\x86\x8e\x47\x9b\xf4\xd1\x2a\x5c\xd4\ -\x10\xf8\x60\x07\x0f\xae\xbb\x60\x15\xf9\xc7\xa1\xfa\x83\xce\xdc\ -\x67\x1b\x46\x4f\x77\xaf\x26\xec\x26\xcd\x99\x00\xcf\x33\x8f\x72\ -\x84\xce\x42\x7b\xa2\xc1\xbd\x36\x93\xbb\x7a\x39\xb5\xd3\x97\x71\ -\x46\xd1\x39\xa3\xa8\x1e\x4e\x9c\x16\x8d\xf2\x18\xd4\x53\x92\xe2\ -\x98\x44\xd2\xb3\xf4\x9d\xaa\x4a\x91\x9b\x90\x51\xab\x7c\x71\xad\ -\xf2\xc8\xb3\x77\xa2\x92\xe3\xce\x2c\x78\x1d\x00\xd0\x91\xa7\x38\ -\x4c\xe8\x97\x57\xbc\x18\x21\x2b\xc4\xd9\x0e\x21\xab\xb2\x44\xd6\ -\xab\xc6\x57\x0e\x07\x53\xe4\x09\xe2\xe0\x3c\x32\x98\x23\x6a\xad\ -\x8c\xac\x94\x61\x61\x26\x15\x1a\xc3\x07\x4d\x07\x51\x53\x7b\x6d\ -\xf2\xb0\x14\xfc\xde\xe1\x3d\xef\x6f\x34\xec\x87\x5f\x7d\xda\x41\ -\x9e\x76\xf8\xb3\x6d\x1c\x0a\xaa\x54\xda\x88\x38\xfa\xd9\x86\x77\ -\x53\x88\xda\x7c\x05\x28\x59\x94\x20\xaf\x21\x77\xeb\xb1\x50\xd1\ -\x27\xb6\xa0\x99\x36\x8a\x04\xc4\x94\x55\x07\xae\x58\xcc\x2d\x0f\ -\x99\xfa\xd7\xee\x3f\x47\xe3\x5f\x93\x98\x4d\x9d\x8b\xca\xdb\x8d\ -\x28\x4d\x33\x4a\x26\xfa\x8d\x28\x12\xa3\x65\xc4\x58\x8c\xef\xb1\ -\x14\x63\xdc\xa8\xa4\x44\x67\x6a\xab\x2c\x07\x52\x9e\x74\x4a\x20\ -\x27\x74\x47\x6b\xc3\xd3\x69\x6d\xb4\x76\x46\x0c\x8f\xf9\x14\x79\ -\x83\x03\xd6\x2f\x7c\xdf\x06\x1c\x6b\x66\xdb\x52\x30\x63\x5b\xde\ -\x2a\x58\x6d\x78\xd6\x15\x86\xd4\xf3\x66\x6e\x22\x30\x5e\xc7\x16\ -\x23\x37\x6a\xb8\x66\x5a\xef\xc0\xc7\xd9\xad\x38\x31\x3f\xd9\x83\ -\x93\xa4\xfc\x4f\x75\x6d\xb4\x72\x99\xb6\xc4\x86\xf4\x64\x7c\x10\ -\x2f\x0c\xa2\x0e\x42\x84\x32\x14\x93\x09\x00\xd9\x59\x30\x6a\x6f\ -\xe4\x49\x09\xdc\x1c\x1f\x9b\x97\x99\xe8\xb8\x35\xd2\x2a\x78\xc9\ -\xe3\x5c\x46\x55\x69\x6e\xf6\x8b\xba\x0b\xb9\x56\x7f\xee\x2c\x18\ -\x10\x8a\x6b\x10\x21\x2a\xe8\xe4\x38\x7e\x4d\x26\xc5\xdf\x66\x75\ -\xfd\xb0\xb0\x11\x2b\xa3\xa5\x47\x2c\x3c\x1d\x4d\xd7\xce\xce\x6c\ -\x89\xf2\x35\x26\x0d\xb9\x78\x44\xdf\x89\xeb\x89\xa4\x82\xef\x57\ -\x65\xa2\x63\x72\x54\x30\xa6\x0d\xbb\x95\x41\x74\xe0\x19\x11\x4f\ -\x3f\x04\x50\x01\x57\xd4\xa8\xb3\x98\x5b\x46\x98\xa7\x76\x72\xfd\ -\xb9\x7f\xfa\xed\x68\xcc\x78\xf2\xbc\xf7\xa1\x3b\xd4\xc1\xaa\xa7\ -\x97\x7c\xe6\x96\x8b\x26\xa0\xe1\x3b\x38\xab\x9e\xcc\x17\x31\x78\ -\x79\x46\x93\x19\x4a\xc1\xd3\xfb\x76\x60\xd6\x32\x1c\x72\x85\xbc\ -\x5e\x48\x4c\x5e\x01\x1f\x9d\x9e\xe3\x89\xa7\x36\x2d\xb5\x35\x1b\ -\xf0\xf4\x31\x8e\x8e\x03\xb3\x12\x81\x7c\xc9\x71\xf9\x15\x4d\x8f\ -\x8a\x0a\x28\xd5\x5a\xba\x9c\xda\xa2\xd5\x6e\xf4\xe4\x30\x96\x60\ -\xa2\x49\xc4\x9b\x06\xc4\x84\x0c\x3a\x53\x09\x25\xc1\xf3\x11\x66\ -\x0f\x8b\x7e\x0b\x1b\x38\xd8\xf6\xc5\xaf\xcb\x27\x3b\x48\xe1\x2f\ -\xd6\x10\xe5\x2b\x6a\xca\x45\x6c\x2c\xd3\x7e\x26\xb7\x02\x76\x84\ -\xa4\xec\x4b\xfc\x79\x99\x9a\x65\xc9\x13\x41\x2e\x82\x69\xa3\x52\ -\xb5\x72\xdb\x2f\x54\xb7\xdd\xb2\x4d\xa3\xc0\x3a\x3c\x89\x26\x15\ -\x9e\x6a\xe3\xea\x0e\x23\x16\x40\x1c\x8e\xf2\x95\x43\x2b\x1b\x34\ -\x8a\x79\xd0\x40\xb9\x4e\x4d\x1c\x50\x81\x51\x73\x46\xd6\xed\xe0\ -\x66\x32\x9f\x44\xcd\x0a\x27\xcd\x8e\xbc\x8d\x3b\xe2\xf8\xd6\x25\ -\x82\x92\x8c\x59\x1d\xa2\x7b\x12\x99\x5d\xcb\x62\x66\xfc\xd7\x3e\ -\xcc\x1b\xde\xbd\x7e\x46\xb4\xd0\xc6\xb2\x15\xa7\x9e\xe2\x7c\xb7\ -\x37\x83\x68\x77\x61\x79\xd5\xd2\xcc\x33\x32\x70\x06\xe1\x7f\x89\ -\xee\xd7\xb2\xd4\x47\x9c\x21\x96\x90\xaa\x59\x64\x26\x0e\xa3\x4b\ -\x1c\x99\xff\x46\x9f\x93\x7b\x75\x9e\xba\x57\xa3\x7a\xae\x64\x50\ -\xc3\x3e\x43\x8f\x1c\x64\x4b\x85\xb4\x52\x90\x5c\x42\x56\x72\xad\ -\x1c\x18\xfc\x85\xb4\xd1\x99\xda\x4d\xef\xe6\x7d\xe7\xc0\xa3\xcf\ -\x1a\xb6\x51\x48\x63\x92\x36\x67\x8d\xb1\x2c\x17\x1b\x50\xe4\xb1\ -\x5c\x3c\x12\x88\x35\x5c\xb4\x47\x5d\xd2\x8d\x9a\x89\xae\x6b\x00\ -\x99\xb2\xef\xe5\xa0\x80\x28\x71\x9c\xdd\xe7\x09\xcb\x38\x3b\x77\ -\xab\x12\x1f\xb1\x38\xcd\x8b\x02\x95\x9f\xa1\x89\x3a\xf3\x71\xf4\ -\x69\x4e\xd0\x07\x39\x94\xac\xd7\x6c\x05\xb0\xe8\xa8\x47\x3d\x9d\ -\x88\x06\x38\x12\x8e\xb8\x1b\xb8\x3b\x5a\x52\x05\x0f\xb4\x4d\x26\ -\xa5\x42\x32\x48\x1e\xbd\xd9\xcd\xd9\x5c\x65\x7f\x3c\xfe\xa6\x08\ -\x8f\x84\x26\xc6\xa5\xa0\xd6\xc3\xe5\xbe\x8c\x4b\x64\xa2\xdf\x1f\ -\x99\x66\x06\x82\x28\x6e\xf4\x4b\x4e\xc6\x4f\x74\x1d\x32\xe5\xe7\ -\x3f\x79\xc1\x0a\x87\x4d\x5f\x1d\x84\xa8\xbe\x08\xf3\xaa\x90\x34\ -\xec\xa4\xbd\xce\xcb\xf6\x7c\x85\x07\x8a\xe2\x16\xb1\x2c\x71\xa2\ -\x42\xd6\xca\xaa\xa5\x0c\x42\x3f\x44\xc1\x22\x93\xea\x59\x0e\xc1\ -\x0a\x9e\xa0\xf7\x63\x44\x8d\x69\xbc\x14\x90\x23\x7e\xef\x2a\xf2\ -\xc5\x02\x44\xf4\xcc\x55\x9d\xeb\xaf\x9d\x4e\x05\x3b\x2b\x7f\xc6\ -\xe8\x73\x91\x95\x7e\x80\x06\x05\x05\xcf\x8b\x36\xa9\x98\x47\xfd\ -\x4b\xf3\xa5\x98\xe3\xc6\x0a\x69\x56\xdd\xa1\x0d\x4a\x29\x22\xcc\ -\x08\x7d\xdc\xcc\x97\xf2\xa0\x05\x0a\xc3\x20\x78\x40\xa5\x60\xbc\ -\x8e\xab\x16\xf1\xa8\xe8\x8b\xe4\x60\xc6\x7d\x05\xce\x55\xc0\x3b\ -\xc6\x46\x2c\xea\x1a\xb1\x72\x0e\x3a\xa6\x14\x4a\xd4\xa5\xb1\x75\ -\x3c\x58\xcb\x1f\x4f\x2a\xa2\xa6\x03\x05\xed\x25\x1a\x9e\x73\x62\ -\xb1\x70\x19\xb5\xae\xdf\xb3\x57\x6b\x1f\xb4\x8a\x49\x43\xad\xb3\ -\x60\xac\x7d\x38\x56\x1f\xd7\x06\x94\xc3\xe4\x78\xa9\x3d\xfb\xb4\ -\xf6\x3e\x1b\xec\x97\xa4\x23\xce\x06\xd8\xd8\x88\xdb\x70\x4f\x59\ -\xa4\x2a\xa7\x8c\xd9\xb0\x17\xc6\x1c\x30\x33\x89\xe3\xc1\xb5\xc4\ -\x9f\x66\xaa\xd2\x13\x9f\x4d\x7b\x24\xa2\x4d\x88\x6c\x9d\x16\xec\ -\x8e\x21\x1b\x86\xc8\xa0\xbb\xf0\xbf\x59\xd9\x5d\x12\x71\x9b\x29\ -\x33\x16\x19\x59\x1e\x2d\x83\x46\xe9\x98\x8e\x18\x96\x17\x40\x43\ -\xf1\xbd\x5c\x66\xd0\xb1\xb5\x2d\xfd\x82\x87\xe0\x94\x3a\xe6\x84\ -\x68\xab\x07\xa0\x28\x53\xca\x83\x6b\xd5\x69\xd7\x4e\x58\xd4\x57\ -\x71\xf2\x3f\xb8\xee\x5c\x88\x40\xd1\xc5\x56\xa0\xcd\x7f\x34\x4d\ -\x35\x4c\xe4\xf1\x19\x7f\x17\x31\xb5\xd0\x56\x9c\xfb\x60\x09\x22\ -\x79\x44\x2c\xaa\x3b\x62\x1e\x89\xc3\x25\xe2\x84\x67\xb0\x26\x8a\ -\xc1\x2d\x20\x0b\x8e\xba\x8c\xc8\x2e\xbc\x22\x87\xc3\x82\xf2\xa6\ -\xaf\xfe\x89\xce\xcc\xde\x18\x71\x10\xb1\xa3\xaa\xad\x9b\xcd\x49\ -\xaa\xd7\xbd\x0d\xc7\x6e\xbc\xfc\x08\x9e\x30\x84\xe8\x39\x1c\x14\ -\x75\x54\x12\x62\xdc\x67\x23\x56\x0b\x83\x98\x2a\xd9\xe8\x93\x30\ -\x33\x99\xf5\x37\xc4\x52\x2e\xbb\x43\x1b\x2a\xb9\x20\xfd\x0e\xf0\ -\xaf\xa9\x04\x74\x1c\x10\x7e\x0e\x8d\xdd\x18\x19\x13\x1d\x97\x84\ -\xc4\x74\xe7\x3f\x9c\x1c\x04\xaf\x14\x89\xe1\x69\x5b\x91\xe3\x50\ -\xc9\x20\x79\xdf\x99\xf5\x51\xe8\x2d\xea\x45\xc3\xc6\x8c\x4d\xb8\ -\x4c\xea\x10\x1a\xcc\xdc\x54\x56\xc1\x59\xc6\x23\xf6\x20\x36\xa2\ -\x63\xaf\x79\xef\x9a\xec\xe2\x33\x25\x36\xbc\xf5\xaf\x56\xd6\x0f\ -\x96\xb8\x57\x25\x46\x5d\xa6\xe5\x79\xee\x39\x59\x85\x63\x5c\x75\ -\xed\x09\xd7\x5d\x0d\xb3\xca\x2e\x98\x95\xc5\xf1\xc4\xcd\xb1\x1c\ -\xd1\x56\x4e\x56\x53\x39\x23\x66\x36\xa9\x14\xdb\xe0\x0b\x60\xc5\ -\x85\xf8\x58\x46\x3c\x22\xb8\x25\x6b\x80\xa2\xe3\xf5\x34\xd7\x5d\ -\x5e\x9b\x91\x93\x13\x01\x24\xec\xae\xd7\x90\x4a\x2d\xaf\x29\x5f\ -\x74\xaa\xb3\x2d\x1a\x38\x4c\x7e\x3a\x13\xf9\x21\x2b\x97\x14\xba\ -\x33\x49\xc2\xf6\x3f\xef\x08\x99\xef\x56\xe1\x55\x74\xd6\x21\x21\ -\xb4\x85\x2c\x52\x5f\x50\x26\x5b\xad\x2e\xc2\x37\x87\xd1\x51\x6a\ -\x32\x8a\x6f\xb7\x88\x1f\x0d\x8f\xea\x14\xdc\xb0\x48\xb4\xd1\x0d\ -\x3c\xd6\xc2\x1f\x0b\xb6\x97\xaf\x81\x07\x58\x1f\x78\xe5\xe6\xe9\ -\xde\x1c\x34\x77\x4d\xb5\x86\xe2\xf4\x2d\x62\x6f\xbe\x09\x3d\x22\ -\xf3\xa6\x8b\xb0\x42\xb2\x47\xf6\x03\x59\xb4\xa3\xa7\x67\x19\x8b\ -\xb0\x5b\xde\xcb\x49\x02\xf3\xed\xe2\xae\x44\xf0\x7d\x42\x0d\x8b\ -\x76\x19\x34\xd0\x34\x1a\x5c\x11\x7d\x28\xd0\xc6\x54\x59\x15\xed\ -\xdd\x19\x81\x82\x6d\x5c\x80\xf8\x51\x70\xba\x59\x0c\xa3\xb9\xdb\ -\x93\x6a\x5e\x9f\x3d\x59\x23\xd4\xcd\x5e\x39\xc2\x54\x11\x3f\xf3\ -\x16\x18\xe1\x6c\x8c\x16\xc5\xbd\x4a\x45\x0d\x7b\xba\x8a\xd6\x50\ -\x4b\x86\x29\x36\x4d\x12\x2c\x96\x58\x0e\xbf\x61\xb1\x9f\x07\xcd\ -\xaa\x6e\xf5\x05\x28\x2c\x92\x37\x42\x2b\x14\xf3\x96\x8d\x81\x39\ -\xb0\xe3\xc7\x2c\x5e\xe3\xb0\xbc\x40\x5f\xa8\x95\x0a\x00\x7b\xd2\ -\xe4\xaf\x7e\x25\x32\x5b\x18\x5e\x90\xff\x8d\x98\x1a\x7d\x3b\x2a\ -\x9b\x4a\x1c\xc2\x16\x85\x92\xf2\x45\x50\xca\xcc\xd3\x60\xe6\x21\ -\xee\xe8\x22\xab\x4a\x37\xa0\x1b\x34\x17\xa8\xf7\xe0\xd6\xb4\x93\ -\xaf\x11\xf5\x35\x23\xe2\x44\xb5\x6f\x14\xd2\x45\x52\xf2\x60\x82\ -\x18\x49\xc3\x57\x7b\x74\x45\xad\xde\xff\xee\xcf\x43\x7d\x31\xe9\ -\x11\xec\x7d\xa0\x31\x6f\x1e\x55\xa6\x8c\x7f\x15\xa8\x72\xd3\x08\ -\xe9\x57\xc2\x8c\x45\x84\xc1\x51\x8e\xb9\x88\x36\x10\x32\x52\x1e\ -\x7c\x9b\x8f\x0c\x7f\xb1\xde\xa8\x12\x5f\xbe\x7d\x94\x11\x95\x1e\ -\x6c\x2f\xcf\xd9\x94\x17\x5e\x33\xb2\x72\x27\x8a\x46\x10\x71\xd3\ -\x80\xcf\x45\x2d\x09\x1d\x7a\x8f\xd2\xd4\xcd\xa0\x89\x6e\x6d\x4f\ -\xe0\x89\xb9\x4a\x2b\x6b\x9d\x87\x80\xbc\x2c\xa1\xd2\x62\x6c\x84\ -\x96\x31\xca\xf7\xa9\x2a\x23\xfc\xa0\x8c\xbe\x81\x61\x82\x95\x5c\ -\x17\x3c\x08\xaa\xfa\x30\xa2\xa5\xae\x95\xe0\x7c\xae\xc1\x33\xc3\ -\x22\x31\x30\xd9\xb8\x51\x2d\xc6\xdb\xe1\x9a\xf4\x2b\xcf\xf0\xf7\ -\x0e\xc4\x78\x30\xc3\xbf\x33\x62\x95\x72\x99\xd0\xf9\x4e\xf5\xf0\ -\xad\xe9\xc6\x9e\xe8\xd4\xda\xcd\xc5\x21\x79\x38\xe5\x9b\x47\x95\ -\xbb\x47\x51\x23\x58\x18\xe2\x36\x94\x33\x08\x2c\x8c\x21\x25\xb7\ -\x08\xc3\xd2\xe5\xfa\x7b\x3d\x4b\x69\x22\xbb\x14\xeb\xf8\x1a\x4a\ -\x0b\xb5\x8c\x70\x25\xdb\xc1\xc4\xdc\x09\x64\xd2\x43\x36\x29\x88\ -\x39\xae\x47\xa9\x53\xb3\xb9\x4a\xc0\x6e\x7d\xb4\xb5\x33\xeb\xba\ -\x4b\xe3\x7f\x43\x8e\x95\x2b\xb9\xb0\xde\x81\x9d\xdd\x3d\x9b\x82\ -\x6b\x4e\xc1\xa8\xc1\xea\xe8\xea\x08\x0d\x38\xd3\xd7\xca\x2d\xc8\ -\xaa\x29\xde\xaa\x2d\xcc\xb1\x73\x7c\xcf\x45\x77\xbf\x6d\xe1\x4f\ -\x2b\xcd\x6f\x63\x47\x88\xde\xa1\x66\x3e\x42\xe4\x46\xcd\xf3\x0d\ -\xa0\xbe\x4c\x12\x45\x96\x14\x8a\x7c\x10\xdf\x5b\x25\x7d\x9c\xaa\ -\x8e\x13\xf7\xa2\x28\xb1\x18\xe5\x7d\x51\xb1\xb0\xc4\xbf\x8a\x49\ -\xc0\xe2\x7b\x23\x93\x32\xce\x2c\xdf\x38\x9e\xdf\xe0\x3d\xdf\xc8\ -\x9f\x17\xaf\xb6\x88\x7d\xd4\x6b\x2a\x11\x7a\x54\xb4\x58\xf6\x41\ -\x4f\x5b\x27\x79\x26\x10\x77\x7e\x33\xa1\x82\xe5\xe9\xbd\x20\xeb\ -\x61\x88\xed\xe0\x5a\x82\x92\x11\xc7\x9d\x94\x91\x16\x46\x1e\x89\ -\x88\x6b\xd7\xdf\xca\x5b\xf1\xab\x27\x21\x7c\x86\x4f\x6f\xb0\xfa\ -\x51\x8a\xdd\x5e\x5e\xb0\x18\x78\xa6\xcb\xd3\x24\xe1\x02\xaf\xf0\ -\xab\x6a\xa2\x6b\x68\xdb\x7b\x69\x8b\x79\xe0\x35\xdb\x42\x81\x24\ -\x95\xbc\xee\x95\xcb\x7a\x5d\xd0\x7c\x3c\x17\x6e\x04\x53\x83\x96\ -\x53\x48\xb1\xf7\xc5\x44\x97\xe2\xfa\xc9\x34\xf2\x1a\x10\x8b\x3b\ -\x08\xca\x60\x1d\x58\x58\x62\x7b\x52\xaa\xe0\x53\x0c\xb4\xaa\xb8\ -\x84\x18\xc8\x93\xf9\x8a\xa5\x70\xf8\xa6\xcc\x30\xc8\x97\x0c\x7a\ -\x89\x58\xaa\xe5\xc0\x52\xe7\x07\xf5\xde\x14\x6f\xd1\xf4\x91\xdf\ -\xa2\x40\x6b\x2b\xac\x59\x90\xe6\x74\xdf\x22\x14\xe3\x11\x54\xab\ -\x9e\x49\x08\xf6\xde\x4a\xf5\x51\x7f\xbe\x47\x9c\x49\x50\x9e\xdc\ -\x18\x78\x0b\xa6\x78\x87\x85\xf0\x2f\xc2\xef\xc4\x54\xcf\xbe\xd0\ -\x70\xac\x94\xb9\xed\xf2\x8d\x98\xf4\xa5\xea\xf2\x6d\xc7\xbe\xd7\ -\xae\xb7\xf7\x04\xa5\xec\xf1\x21\x18\x84\x7a\xf6\x97\xfc\xf9\x67\ -\xee\x53\x66\x5e\xe3\xcd\xac\x4e\x27\xa8\x8c\x56\x26\x03\xaa\xf1\ -\x57\x51\xb1\xac\xb5\xf7\x05\xc1\x60\x75\x8a\x6a\xce\x20\x50\x9b\ -\x25\x9d\x8c\x3e\x5a\x23\x34\x60\x9e\x1b\xa4\xdd\x33\x61\xa3\x0b\ -\x8a\xda\x17\xe9\xcd\x63\xb9\xe1\x41\x5d\xdb\x5f\xe3\x15\x7f\xb7\ -\xfe\x2e\x22\x2b\xd7\x45\x54\x4e\x2d\xc3\xa2\xa6\x81\xa4\xba\xd5\ -\x7d\x56\x09\x10\x7c\xac\x68\xb3\xef\x1c\x30\x68\x9f\x22\xa6\xf8\ -\xbb\x44\x08\x4b\xc7\x2e\x29\x2c\x4e\x66\xba\x41\x92\xdc\x35\x09\ -\xa4\x62\xc6\x2e\x22\xdf\xa7\xa1\xe3\xde\x64\x3c\x9e\x28\x71\xbd\ -\xad\xbc\x81\xc0\x83\x6f\x81\x80\x8f\x02\xd0\x85\x2f\xad\xa0\x15\ -\x8c\xf8\x4a\x54\x66\x63\x84\x1c\x8a\xeb\x71\x62\xbf\xed\x25\xba\ -\x32\x47\x77\x42\xd5\x38\x87\xf8\x17\xd0\x45\xa2\x33\x4a\x32\x77\ -\x9f\xe3\xb2\x34\xd8\x14\x42\xad\xb1\x95\xa8\x5e\x2e\x96\x42\x1b\ -\x31\x87\x5b\xad\x76\x69\xb8\x04\x33\x3b\xc1\x56\x17\x5c\xd6\x96\ -\x49\xb0\xac\x36\xda\x97\xde\x08\x5b\x82\xa4\x0e\x06\xb8\x04\x68\ -\x9e\x00\x08\x28\x99\xbd\x21\xa6\x4b\x79\xe1\x6c\x70\xfe\x73\x63\ -\xe6\x2f\x45\x2c\x3f\x1a\xcd\x5d\x68\xb1\x59\xe8\x05\x1b\x0a\x05\ -\x94\x88\xac\x4d\x11\xdf\xbc\xec\x25\xe2\x1d\x05\xe2\x35\x02\xe2\ -\x10\xfa\xba\xb4\x21\x50\xa6\x07\x04\x61\x64\x0c\x58\x52\xc6\x28\ -\xa4\xcd\x30\x7d\x8c\x4c\x82\xc8\xe0\xeb\x61\x58\x86\x4e\x2d\x9d\ -\x67\x0e\x50\x1c\x93\xd1\x67\xde\xe4\xcf\x48\x49\xbb\x4c\x80\x0d\ -\x06\xa2\x49\xeb\xe9\xd3\x58\xb7\x22\x20\xe7\x57\x63\xf6\x7d\x5b\ -\x24\xb8\x42\x35\x99\x11\xbe\x22\xdb\xf5\x12\x02\x26\x38\x8d\xc5\ -\xd0\x25\x26\x8f\x62\x20\xad\x94\xd4\x97\x2d\x39\x22\x5a\x9d\x0c\ -\x04\xf6\x76\xcd\xf0\xd4\xfe\x97\x6b\x8b\xe9\x59\x61\x95\xca\xda\ -\x6d\x21\x10\xc4\xcb\xb3\xe3\xe0\xd8\xad\xbc\xea\xc1\x09\x09\x3e\ -\x27\x86\x8f\x9d\xc8\xdd\x92\xad\xa3\x24\x52\xe6\x33\x88\xd4\x37\ -\x8e\x78\x22\x10\xbb\x40\x05\x01\x1a\x27\x9b\x89\x28\x6e\x9c\x7c\ -\xfa\x20\x17\xaa\x09\xe3\x60\x5c\x43\xf2\xaf\x88\x7c\xc8\xa2\x75\ -\x13\xc5\x90\x04\xb9\x93\x81\x8c\x65\x90\x8e\x64\x5f\x96\x66\xa5\ -\x6c\xcd\x5d\x38\x13\xec\xec\x4c\xc8\x89\x1e\x02\xe3\x30\xfa\xbd\ -\x87\x69\x8c\x65\x08\x9f\x6a\xb2\x75\xb1\x00\x58\x58\xd3\x94\x88\ -\xff\x1d\xf2\x9c\x09\x22\x3a\x70\x81\x8e\x1d\x35\x26\xa7\xc0\xb3\ -\x63\x28\x50\xe7\x02\x43\x0f\xa9\x90\x78\x85\x23\xc4\xcd\x90\x6a\ -\xa4\x79\x60\x2e\xe6\x60\x62\x97\x1a\x46\x01\x8a\xd2\x01\xd8\x4c\ -\x6a\x01\x0c\x87\x69\x61\x10\xc8\xf3\x20\x27\x32\x01\x8c\x08\x10\ -\x44\xe3\x50\x8f\x21\x4d\xb9\x8c\x10\x69\x3a\xb4\xb9\x85\x9e\x63\ -\x10\x74\x51\x00\xe3\x30\x36\x12\x00\x47\x6d\x95\x16\x0f\x8a\x7a\ -\xa2\x43\xea\xb9\x70\xab\x36\x0b\xdd\x6b\xbf\x70\x5e\xe8\x07\x11\ -\x19\xa6\x0b\x93\xf7\x6e\x2c\x47\xbb\x53\x20\x4d\x74\x0d\xcb\x61\ -\x3d\x94\xae\x64\x7b\x92\x22\x33\xcd\x15\x8e\xc5\x33\xd7\xbe\xe8\ -\xa5\x1f\x62\xaa\x97\x81\x2c\x0b\x2c\x78\xc6\x51\xcc\xd9\x3f\x6d\ -\xe5\x8b\xf4\xe6\xb0\x04\xd8\xed\x05\x64\xa2\xa2\x76\x85\x40\xa9\ -\x97\x97\x99\x2c\x4b\x58\x85\x17\x11\xd2\x89\xea\x22\xb0\x4c\x42\ -\x51\x31\x53\x2f\xe3\xd2\x29\x96\xc1\x42\x26\x93\xd3\xd0\xd4\x22\ -\x41\xe4\x18\xa3\xcc\x03\xe9\x48\xae\xf3\x2f\x48\x08\x0c\x9a\x98\ -\x61\x24\xe5\x19\xa5\x8a\x15\x40\xbf\x0a\x2e\x6a\xdf\x14\x8b\xfa\ -\x47\x48\xb5\x05\x91\xc0\x4e\x2a\xcb\xce\x3f\x64\xb0\xa2\x34\xab\ -\xda\xe4\x4d\x3d\x63\x22\x9b\x81\xb1\x28\x8c\x89\xa6\x97\x24\x9b\ -\x13\x62\x00\x0f\xea\x60\x99\x1c\xcf\x9a\xb6\xe3\xd2\xf7\x73\x05\ -\x17\x74\x05\x4f\xcc\x86\xdb\x74\xb2\x20\xa8\x1a\x17\x96\x9d\x3b\ -\xb2\xc4\xf0\x6a\x02\x82\xa7\x81\x30\x89\xe3\x89\x1e\xd9\x23\xc4\ -\x7f\x17\x0d\x8f\x1c\x24\xac\xd3\x99\x1a\x23\xdb\xe1\xeb\x51\x5a\ -\xd0\x82\x29\x20\x2f\x09\x0d\x0e\x9c\x57\xc8\x84\xcd\x3a\x44\x65\ -\x52\x3a\xa7\x3b\x0e\xb5\x2d\xa3\x52\x46\x5f\x2a\xab\x5f\xa9\xec\ -\xeb\xc8\x98\x58\x32\xb5\x14\x0d\xaa\xc3\x2a\xdb\xbd\xd1\xc0\xbb\ -\x88\x34\xab\x1d\x7d\xfd\xed\xdd\x44\xac\xf9\x35\x4e\x33\x22\x88\ -\xc2\x7c\x13\x71\x5c\xd9\x2b\x92\xf0\x90\xb4\x4d\x45\x12\x4f\x23\ -\x31\xc4\xd0\x40\x4b\x16\x7d\x60\xad\x54\x70\xcd\x1c\xd6\xcc\x60\ -\xaf\x36\x5e\x2d\xc3\xee\x1d\x2a\xb9\x2e\xf8\xbe\xfa\x30\x7f\x9b\ -\x98\xcf\x03\x53\x33\xf5\x12\x2f\xd1\xcd\x64\xe2\x1a\xbe\xf8\xb3\ -\xef\xb2\x89\x8d\xbf\x24\x45\x12\x87\xc1\x89\x63\x94\xc8\xc6\x86\ -\xfe\xa0\xc2\x5a\x75\xcd\xc1\x8a\x04\xec\x00\xe3\xa3\x84\xbc\x35\ -\x0a\x17\xc2\x31\x86\x36\x4c\x03\xa4\x91\xa1\xc4\x51\x69\xa6\xb2\ -\x72\x42\x15\x29\xed\xdf\x60\x3c\x1d\xbb\x21\x6e\xc7\xce\x1c\xa1\ -\x78\x05\x4d\xd5\xc5\x45\xab\x59\xc0\xc0\x24\x2c\xd2\xad\x2e\x4e\ -\x32\xf2\xdc\x6d\x32\x0a\x3d\xa2\xd3\x8a\x5e\xb0\xfa\x6c\x03\x81\ -\x0f\x72\x6a\x4a\x36\xd7\x92\xa1\xa3\x6d\xe1\x48\xf0\xec\x40\x0c\ -\x28\x7c\x80\x3f\x45\x9f\x8a\x8c\x02\x2d\x4c\xf2\x9e\x8a\xc0\x38\ -\xa7\x8b\x92\x59\x1f\xac\xdb\x49\xf0\x75\x7d\xd5\xdb\xad\x50\x32\ -\x76\x8a\xbe\x4d\xbe\xa0\x6a\x7f\xc4\x01\xf9\x1c\x09\x66\xd2\x5a\ -\xfb\xbd\x63\xeb\xd4\x68\x0e\x6e\x59\x13\x6c\x99\x27\xd2\x64\xea\ -\x62\x47\x94\xac\xd8\xa3\xde\xcb\xbd\x43\xe1\x9c\xa9\x2f\x24\x97\ -\xe7\x70\xa3\xb2\x46\xaa\xb3\xc0\xe8\x5d\x6e\xff\x12\x36\x2f\x37\ -\x58\x2d\xfb\x00\x68\xca\x02\x95\xd2\xc2\xf2\xd7\xe9\x5b\xba\x5d\ -\x33\x1f\x12\xdb\x6d\x53\xb7\x7c\x91\xd1\xce\x9d\x66\xfa\x80\xb6\ -\x23\x2a\x8b\x9a\xc1\xfd\x16\x67\x67\x44\x01\x6c\xb4\xc2\x67\xcb\ -\x11\x27\xe5\x45\x79\x60\x82\x17\x96\xcb\xb8\x20\x02\xc2\xe3\x51\ -\xae\xc5\x5a\x71\xb3\x32\x3e\x5f\x20\x38\xb8\xd8\x76\x1f\x94\x2c\ -\x4e\x32\x79\xe6\xb6\x95\xcd\xc4\xd3\xb7\xa1\xc4\xed\xea\xc8\x65\ -\x6b\x6a\x8e\xc1\x5b\x8e\x68\x97\x23\x07\x3f\x0c\x07\xc7\xa6\x38\ -\xd1\x79\xe1\x95\x31\xc3\xab\xb2\x21\xc1\xe0\x28\x16\x42\x83\xb7\ -\x87\x76\x5e\x68\x91\x34\x91\x39\xd5\x2e\x05\xed\x33\x70\xc8\x34\ -\x4b\xac\xc6\x0d\x1a\x84\x38\xba\x5b\x42\x10\xc3\xa2\xcf\x41\x68\ -\xc0\xce\x04\x28\xc8\x72\xad\x99\x53\x53\xee\x38\xac\x51\xc8\xc4\ -\x00\x1a\x46\x6d\x94\xa5\xe4\x9b\x47\xe6\x5b\x70\x6c\x66\x09\x45\ -\x8f\xbe\x21\x66\xf4\xe0\xb6\x89\x53\xfc\x22\x1d\xc2\x3c\x9b\x2e\ -\xd9\x82\x01\x67\x12\xaf\x75\x8c\x99\xac\x18\xbb\x94\x37\x95\x02\ -\xf5\xa8\xec\x67\x9f\x87\x38\x99\x8d\xc1\x38\xb8\x72\x87\x57\x17\ -\x24\x14\xa9\x02\xde\x62\x04\x0f\xdf\xab\x8d\xa0\xe1\xe9\xd4\xf6\ -\xbe\xc5\xcc\x6e\xa0\xbf\xf7\x2c\xa6\x61\x94\xc4\xd8\x97\xf8\x61\ -\xd5\xea\x25\x2f\xe8\xd1\x15\x20\x6c\x39\x69\x68\xf0\x15\x53\x0e\ -\x6e\x29\x5e\x94\x4a\xe0\x0c\xdd\x56\xb1\x68\x39\xf4\x6d\xb2\xd1\ -\xc3\xcf\xc3\x96\x48\x94\xa4\xd5\x6e\x0f\xa2\xdd\x88\x84\xb3\x19\ -\x07\x63\x7d\x3f\x42\x83\x74\x95\x21\x38\x28\x21\xca\x43\x1c\xa9\ -\x00\xb4\xb6\xc5\x8f\x6a\x45\x8b\x90\xb8\x89\x54\x1e\x9f\x6a\xa2\ -\x59\xfe\x89\x98\x00\x08\xcd\x74\x5c\xcc\x4c\x59\xc2\x5a\xae\x49\ -\x43\x82\x1d\xb3\x64\x86\x52\x2a\x20\x5d\x9c\xb4\xce\x5e\x43\xed\ -\x5a\xe1\x29\x56\x47\xa2\xde\x8f\x33\xb5\x11\x79\xce\xb7\xbb\x8c\ -\x6d\x59\x2f\xf0\x68\x64\x85\x97\x10\xcd\xb6\x4c\x93\xb9\xbc\x6a\ -\x39\x15\x39\x43\x34\xf1\xa4\xe4\xcb\x7c\x64\x2e\x72\x27\xbd\x35\ -\x54\x9f\xb3\x8b\x51\x94\xb4\x2d\x76\x21\x29\x85\xa8\x91\xdf\xe7\ -\xb9\x46\xe9\xc8\x94\xfd\x34\xf6\x34\x35\x67\x22\xb3\xf6\xeb\x31\ -\x3b\xee\xbd\x1b\x99\x04\x8b\xaf\xc4\x2b\xd1\x27\x2f\xbe\x7a\xf7\ -\x2e\x34\x39\x45\x6a\xd6\xf3\x1a\x27\xad\xc0\x9a\x09\x53\x33\xc2\ -\x53\x4c\x10\x65\xd9\x94\xee\xc2\xe5\x84\x9b\x14\x22\x52\x6a\xe9\ -\x06\x28\xfd\x84\xf2\x70\xd1\x36\x8e\x67\x72\xc8\xba\x1f\xde\xa8\ -\x6e\x67\x44\x1a\x79\xd1\x54\xa3\xc0\xef\x7b\xc8\x5e\xa9\xd8\xf8\ -\x58\x7b\xf6\x46\x66\xa5\x93\x0d\xb7\x2f\x3c\xdc\xbe\x43\x1e\x6e\ -\x6f\xc4\x70\x7b\xa3\x87\xdb\x10\x69\x1c\x4c\x96\xe5\xd1\x54\xe2\ -\x91\xf5\x68\x7c\x1a\xdd\x8b\x41\x83\xb9\x46\x49\x24\x9c\x3e\x2c\ -\x7f\x42\xb5\x3d\x7b\xb8\xfc\x4c\xb2\xe5\x91\x51\x40\x30\xaf\x3e\ -\x9c\x5f\x2b\x1f\x0c\x3b\x4c\xbd\x53\x4d\x8e\xb2\x34\x84\x83\x8d\ -\x87\x30\xb9\x2a\x4b\xd5\x69\xe7\x44\x4d\x8b\xc2\x35\x9c\x4f\x29\ -\x7f\x56\x76\x5a\x90\x95\xff\x52\x4b\x89\x35\xd3\x16\x6f\xfe\x31\ -\x7c\x90\x68\x51\x90\xb8\xb6\x99\x5f\x0e\x2a\xdc\x08\x47\x21\x7b\ -\x0f\x01\x9e\x22\x11\x6f\x76\x0f\xea\xae\xb9\x51\xb3\x97\xd8\xdb\ -\xdd\x83\x33\xef\x49\xc0\x43\xac\x84\x40\x24\x28\x4d\x2e\x67\xd9\ -\x7d\xcf\xa1\x67\x66\x12\x51\x0f\x18\x96\x8f\x9d\x1c\x1a\x64\x39\ -\x1a\x79\xa2\x09\x4a\x33\x5d\xca\xe9\x76\xb0\x58\x55\x34\x3f\xf4\ -\x95\x94\x74\x93\x60\xfb\x63\x11\x1a\x50\xb3\x60\xf4\x0c\xa1\x52\ -\x52\xc2\x1b\x21\x7b\x61\x01\x96\xd9\x0a\x2e\x7e\x6e\xa0\xaa\xd5\ -\xa7\x47\xa5\x0b\x38\x80\xca\xad\x3b\xa2\x46\xaa\x4f\x69\x15\x31\ -\x69\xb1\xa7\x17\xf3\x62\x67\xd7\xd5\xc3\x3a\x39\x45\x74\xcc\x1f\ -\x0c\x14\x7f\xd2\x63\x15\x34\x2c\x25\x4e\xce\x04\x57\xd0\x0f\xe8\ -\x51\x5f\x48\xbe\x9c\x88\x4a\x22\xff\x8b\xca\xfd\xf1\xc3\xa9\x5b\ -\x8e\x1c\x31\x68\x0d\x0f\xd3\xd7\x40\xf9\xde\xce\xba\x9d\xbf\x42\ -\xc4\x17\x13\xe8\xf6\x68\x52\x09\x57\x0c\x02\xad\x07\xee\x3c\x39\ -\x58\x39\xce\xc1\xf2\x87\x80\xc2\x27\x36\xdb\xbd\x97\x36\x68\x64\ -\x29\xfc\xec\x53\xe2\x5a\xf3\x68\xc9\x39\x92\x10\x56\x24\xf2\xf3\ -\x90\x60\x82\x0f\xee\xda\xb6\x74\x5f\xb8\x10\x71\xb7\xa0\x54\x09\ -\xe9\xee\x30\xcd\x7d\x56\x29\x59\x97\xa7\x2a\xc2\xa7\x59\xe3\x5e\ -\x7f\x21\xab\x63\xd5\x92\x1f\xd9\xab\x87\xbd\x99\x21\x22\x46\xc9\ -\x5d\x47\x69\x6a\x89\xfe\x29\x93\x05\xca\xda\xc9\xe9\x0a\x46\x4e\ -\xa5\x75\xf5\x2c\x5e\xe9\xbd\xac\x42\x9c\x32\x65\x41\x5e\xda\x9b\ -\x80\xf2\x06\x0d\x65\xa2\xd9\xe6\xb0\x50\xa6\xb4\x5c\x94\xea\xce\ -\xf6\xd3\x83\x48\x6c\xc7\xb8\x9d\x4c\x47\x47\xb3\xa3\xcf\x66\xa7\ -\x65\x7e\x53\xb1\xe2\x64\x75\x68\x0c\x2f\xc1\x22\xc2\x14\x0e\x1b\ -\x55\x86\x56\xa9\xd4\x44\x57\x04\x8b\xa1\xd7\x47\xd6\xd4\x52\xbb\ -\x43\xa6\x0e\x62\x5d\x32\xa9\x6a\xf6\x28\x3d\x1c\x29\x5e\xa5\x6f\ -\x16\x98\xaf\xda\x67\x20\x55\xee\xd9\x1b\xf1\xfd\x3e\xe5\xfb\x7d\ -\xa1\xc5\xc8\xa7\x2b\x82\x0f\xc7\x2d\x66\x6f\x79\x8b\xd9\x9b\x7c\ -\x31\xaa\x3d\x55\xb9\x37\x0c\xac\xfc\xb6\x22\xf8\x65\x1c\xb0\xfb\ -\xca\x03\x76\x5f\x52\x60\xe7\x86\x12\x0f\xf2\x28\x88\x74\x59\x5b\ -\x75\x76\x90\x83\x47\xf7\xbb\x42\x76\xf4\x46\x12\x3c\x8f\xeb\x1b\ -\x56\xfa\xe8\xf8\x10\x08\x4c\x96\x25\xd8\xa8\xab\xf1\xe1\xff\x0f\ -\x9b\xb4\x9e\xeb\ -\x00\x00\x33\x7f\ -\x00\ -\x00\xac\x35\x78\x9c\xc5\x7d\x09\x98\x5d\x45\x95\x70\xf5\xbe\x77\ -\x87\x10\x42\x08\x08\x37\x0d\x86\x4e\xe8\x74\x42\x20\xc4\x34\x4b\ -\xe8\x74\xa7\x49\x20\x1b\xe9\x26\x9b\xa8\xdc\x7e\xef\xbe\xd7\x37\ -\xfd\xde\xbb\x8f\x7b\xef\xeb\x05\x18\x40\x51\x16\xd9\x44\x56\x01\ -\x11\x10\x1c\x64\xc6\x99\x71\x04\x47\xfd\x45\x47\x47\x19\x04\x51\ -\xc7\xf5\x87\xdf\x51\x54\x70\x54\x14\x14\x97\x71\x01\xe7\x3f\x75\ -\x4e\xd5\xad\xba\xcb\xeb\xdc\x0e\xfa\xcd\x97\x0f\xde\xeb\xfb\x6e\ -\x9d\x3a\x75\xea\xd4\xd9\xab\xea\xb4\x4f\x64\x17\x3d\xf9\xf2\xdd\ -\xb7\x3e\xbd\xe4\xa8\xcf\x5e\x70\xdf\x63\xff\xb9\x81\xb1\x96\x3b\ -\x18\x63\x7b\x18\xfb\xc0\x37\xe1\x73\x2f\x63\xf7\x7e\x18\x3e\xf7\ -\x31\x76\xdf\x5b\x19\x6b\x78\x06\xfe\xb6\xe1\xf3\x59\xf8\xbc\x06\ -\x3e\x7f\x06\xcf\xcf\x60\xac\x69\x9a\xb1\xc2\x13\x8c\x6d\xba\x82\ -\xb1\xba\x35\xf4\xe9\x2d\x64\x6c\xfc\x64\xc6\xf2\x79\x56\xff\xa1\ -\x19\xc6\x26\x47\x58\xfd\xff\xa9\x67\xac\xed\x5e\xfa\xbc\xe8\xd3\ -\xac\x61\xd5\x46\xc6\x3a\x9e\xa1\xcf\xeb\x8f\x60\x0d\xc3\x5f\x64\ -\xac\xb3\x96\x3e\xaf\x7f\x90\x35\xec\x82\xe7\x43\xf7\xd1\xe7\xf5\ -\xdf\x60\x0d\x7f\xff\x1b\xc6\x8e\x58\xc5\x1a\x3e\xf1\x1a\x63\xef\ -\x2f\xb0\x86\xaf\xfe\x3b\x63\xf7\xcc\x63\x0d\xcf\xbd\x8b\xb1\xee\ -\x47\x59\xe3\xdf\x5d\x07\x7d\x3e\xc5\xe6\xbd\x73\x33\x63\x3b\x8e\ -\x61\xf3\x1b\x3e\xc5\xd8\xfb\xbe\xc2\x16\x3e\x0e\xf8\xbe\xdd\x65\ -\xcb\x39\x1e\xce\x25\xec\x84\x2f\xfc\x23\x63\xe5\xf3\xd9\x09\xcf\ -\x59\xf0\x79\x2d\x5b\xf7\xfd\x93\x18\x3b\xe9\x06\x76\xfa\x7d\x47\ -\x30\xe6\x9f\xc6\xce\xb8\x19\xf0\x3f\xf9\x11\xb6\xe9\xc6\x4b\x18\ -\x7b\xe3\x08\x3b\x27\x07\x63\x5a\xf5\x29\xf8\x5c\x0b\x9f\xaf\xc1\ -\xe7\x3a\xc6\x4e\x3c\x93\x9d\x73\x15\xd0\x68\xe6\x45\xb6\xfb\x82\ -\x51\xc6\x6e\xbd\x96\xed\x79\x0d\xf0\x3b\xeb\x39\xb6\xf7\x8e\x37\ -\x32\xb6\xe0\x68\xfa\xbc\xed\xa7\x6c\xff\x9e\x3b\x19\xbb\xf1\x17\ -\x6c\xe6\x65\x78\xbf\xc8\xd8\xa5\x97\x75\x32\x96\xb9\x9a\xbd\xfb\ -\xd8\x5b\x19\xeb\xb9\x1e\x3e\x6f\x87\xcf\xef\xc0\xe7\xfb\x18\x5b\ -\xb6\x84\xdd\xf4\xe9\x9f\x02\x1d\xd6\xb0\x0f\xad\x5d\xcf\xd8\xf1\ -\x2e\x7b\xf8\x72\x80\x33\x73\x24\x7b\xfc\x47\x25\xc6\x8e\x3b\x8c\ -\x3d\xf5\xd0\x02\xc6\x26\x7e\xcc\x5e\x65\x4f\x32\x76\xf5\x3d\x35\ -\x4b\xbe\x0d\xf8\x6c\x5f\x54\xd3\xfd\xc8\x1f\xa0\xdf\xad\x35\x2b\ -\x6f\xb8\x14\xa6\xee\xbb\x35\x9b\xfe\xfc\x41\xc6\xd6\xf4\xd5\x8c\ -\xfc\xfa\x61\xe8\xb4\xaf\x66\xd7\xc2\xb3\xe1\xfd\x23\x6b\xf2\x1d\ -\xef\x66\xec\x8a\xe3\x6b\xec\x43\x2e\x62\xec\xe6\xcf\xd7\xbc\x63\ -\x5d\x2b\x63\xef\xb9\xb8\xe6\xda\xf1\x0a\x63\x77\xbf\x56\x73\xdf\ -\x65\x19\xc6\x8e\x7c\xb1\xe6\x73\xcf\x7c\x8f\xb1\x9d\x43\x35\x5f\ -\xbf\xf1\x1b\x30\xa7\x57\xd5\x7c\xff\x90\x41\x98\xf3\x52\xcd\x0f\ -\x7f\x03\xfc\x70\xc7\xcb\x35\xaf\xfe\x03\x3c\x2f\x0e\xd4\x36\x7c\ -\x06\xf0\x9b\xfa\x42\xed\xf0\x1e\x80\x73\x73\x6d\xad\xf5\x91\x31\ -\xc6\xee\xef\xaf\x2d\x35\xfd\x90\xb1\xb3\x5f\xa8\x9d\x3c\xee\x50\ -\xc6\xd6\xad\xad\xfd\x9b\xe7\xce\x63\xec\x9c\xb7\xd7\xde\x32\xbc\ -\x18\xfa\x5b\x55\xfb\xb7\xbd\x87\x31\x56\x3f\xaf\xf6\xe1\x53\x80\ -\x0e\xce\x61\xb5\x1f\xfd\x25\xcc\xd7\xbb\x6a\x6b\x3f\xfb\xf0\x0d\ -\x8c\xad\xfd\x54\xed\xbf\xe6\x5e\x61\xec\xbc\xdf\xd7\x3e\xb1\xfe\ -\xb7\x8c\x99\x13\xb5\xcf\x3c\xf0\x49\xe0\xa7\x79\xb5\xff\x6f\xf1\ -\x2d\xc0\x73\x2d\x75\x35\xef\xfc\x02\x63\xd7\x5c\x56\x37\xff\xf6\ -\xfd\x8c\x5d\xb5\xab\x6e\xf1\x02\xa0\x4b\xdf\xbb\xeb\x16\x2f\x04\ -\xbe\xdd\x72\x64\xdd\xca\xc5\xf0\xfc\xc2\xce\xba\x4b\x9f\x7c\x94\ -\xb1\x33\xfb\xea\xae\x3e\x06\xe8\x3f\x50\x53\x77\xcf\x9e\x07\x81\ -\xa7\xb7\xd5\x7d\xec\x9e\x3f\x32\x76\xd3\xe1\x75\x8f\x3e\x01\xf3\ -\xf3\xde\xad\x75\x8f\x7d\xf3\x79\x78\xff\xb3\x75\x5f\x38\x0d\xfa\ -\xf3\xfe\x5c\xf7\xc5\x6f\x01\xcf\xb7\x9c\x50\xf7\x54\xc7\x0b\x8c\ -\xdd\x3e\xbf\xee\xbb\xed\xd0\xde\x79\xb6\xee\x95\x32\xf0\xc3\x09\ -\xf9\xba\x57\x1e\xbb\x80\xb1\xc3\x6e\xae\xfb\x53\x17\xf0\x73\xdf\ -\xa2\xfa\x25\xc7\x1e\xcb\x98\xb1\xb9\x7e\x57\xe3\xcd\x8c\xf5\xee\ -\xae\xbf\xe0\x12\x18\xdf\xad\xcf\xd5\xcf\xbc\x0c\xf0\xdf\x59\xa9\ -\x7f\xc7\x14\xf0\xc7\x39\x6b\xeb\xaf\xfa\xc3\x3d\x8c\xbd\xfb\xca\ -\xfa\xeb\xbe\xfd\x0f\x8c\xbd\x6d\xba\xfe\xde\x77\x03\xfd\x1a\x4e\ -\xa5\xcf\x4a\xbe\xfe\x81\x13\x81\xbe\xd7\x7d\xac\xfe\xa1\x17\x81\ -\xaf\x4f\xbc\xa2\xfe\x07\xa5\x1f\x01\x1e\x8f\xd6\x3f\xdf\x05\xf3\ -\x53\xfb\xad\xfa\x17\x07\xfe\x0d\xfa\x7f\xb6\xfe\xe5\x67\x1e\x02\ -\x7e\x1b\x6d\xa8\xbb\x02\xe8\x67\xb7\x34\x34\x3c\x05\x74\x5e\xdf\ -\xd9\xd0\xf5\x8a\x0f\xfc\xd6\xde\x70\xe4\x3c\xa0\xc3\x86\xfb\x1b\ -\x96\xbf\x00\xfc\xb5\xf9\xdc\x86\xa1\x53\xdf\xc6\xd8\xfe\xdf\x34\ -\x9c\xff\x0c\xd0\xad\xeb\x22\xfa\xbc\xe1\x94\x86\xcc\xef\x00\xdf\ -\x4d\x4b\x1a\xac\x97\x60\x3d\x5c\xf2\xde\x86\xab\xfe\x09\xe0\xdf\ -\xfa\x48\xc3\x6d\x0f\x01\x9d\xe6\x7f\x85\x3e\x6f\x7b\xac\xe1\x23\ -\xe7\xc0\xf3\x33\x2f\x6f\xf8\x64\x1d\xac\xf5\x37\xec\x68\x78\xac\ -\x1d\xe6\xeb\xd2\x3f\x34\x3c\x76\x03\xf0\xc9\x5b\xbe\xdc\xf0\x99\ -\x5d\x00\x67\xf8\xa5\x86\x2f\xee\xe0\xeb\xfc\xe9\x86\x17\x6e\xe8\ -\x63\x6c\xde\xd7\x1a\xfe\xf4\x5d\x58\x4f\xeb\xf7\x37\x1e\xfd\x63\ -\x98\x87\xbb\x4f\x68\x5c\xf6\x12\xc8\x94\xca\xcd\x8d\xab\x7f\x04\ -\xe3\xba\x68\x41\xe3\xee\x23\x80\x2e\x8c\x35\xee\x7b\x19\xe8\xe5\ -\x6c\x6c\x7c\xf3\xd7\xe1\xbd\x53\xbf\xd3\x58\xb8\x1a\xf8\xe0\xf4\ -\xed\x8d\xfe\x1b\x80\x6f\xce\xfd\xfb\xc6\x6b\x6f\x1b\x62\xac\xfd\ -\xb2\xc6\xdb\xf7\x7c\x09\xe6\xf7\x81\xc6\x4f\x5f\x0e\x78\x1d\xf5\ -\xd3\xc6\x2f\x7d\xa2\x81\x31\x77\x5d\xe3\x4f\x1a\xb6\x01\x94\x3b\ -\x1b\x5f\x7a\x78\x37\x63\x77\x6d\x68\xfc\xe5\x53\x40\xcf\xc5\x1f\ -\x6b\xfc\xe3\xff\x00\xde\xeb\xbf\xd2\xf8\xea\x62\xe0\x8f\xd5\x37\ -\x36\xbe\x7a\x2f\xf0\xff\x8d\xe7\x34\x35\xbf\x07\xe6\x75\xd9\xcf\ -\x9b\x3a\xfe\xe5\xbf\x81\xdf\x9a\x9a\x3a\xaf\x04\x59\x76\xe4\xd2\ -\xa6\x35\xe3\xb0\xce\x16\xfe\x73\xd3\x9a\x9f\xc0\xbc\xdd\x52\xd3\ -\x34\x34\xb0\x9c\xb1\xbf\xb9\xa9\xe9\xec\x63\x60\x5d\xd4\x36\x37\ -\x6d\xf5\xba\x41\x1e\x9d\xde\xb4\xed\x43\xc0\x9f\x17\x1f\xda\xb4\ -\xe7\xa9\x9f\xc0\xdf\x17\x36\x65\xfe\x0c\xeb\xfa\x90\x4f\x36\x5d\ -\xfe\xf8\xc7\x40\x7e\xde\xdd\x74\xb5\x0b\xf3\xe8\x9d\xda\xf4\xc1\ -\xe7\xe1\xf9\x92\xaf\x36\x7d\xee\x55\x98\x9f\x15\x0b\x9a\x8f\x7f\ -\x04\xe8\x76\xd3\x1f\x9b\x57\x7f\x01\xd6\xe5\x2d\xf7\x37\x9f\xe2\ -\x03\x5e\xc7\x7e\xa5\x79\xe8\x93\x40\xa7\x93\x3a\x9b\x37\x7f\x69\ -\x15\xf0\xd5\x33\xcd\xe6\x25\x00\xe7\x0d\x57\x34\xdf\xff\x64\x1e\ -\xf8\xe6\x3f\x9a\x3f\xf8\x1c\xc8\xa9\xc9\x99\xe6\x8f\x1e\xd6\x03\ -\x70\x1e\x6d\x7e\xa4\x1e\xe8\x7c\xdb\xc9\xcd\x5f\x5b\x0d\xf4\xbb\ -\xe8\xf9\xe6\x6f\x3e\x0d\xb2\xf9\xe2\xcd\xcd\x3f\xb8\xeb\x33\x20\ -\x27\xbf\xdf\xfc\x83\xcf\x01\x7f\x5f\xf2\x74\xf3\x8b\xd7\xc3\x3a\ -\xff\xc0\x39\x2d\xc6\xb3\xc7\x81\xdc\x7e\x1c\x3e\x1f\x01\xb9\x7d\ -\x31\x7c\x02\x3f\x7f\xe0\x57\x2d\x5b\x6f\x03\xb9\x7e\xdc\x9d\x2d\ -\xd6\xb3\x40\x97\xcb\x7f\xda\x32\xde\xb1\x8c\xb1\x6b\xdf\xd3\x72\ -\xe1\xf5\x40\xbf\xc6\xd1\x96\xca\xb1\x80\x5f\xf9\x91\x96\xc9\x5f\ -\x80\x3c\x1f\xbb\xb7\xe5\xca\x0f\x01\xbd\xbb\x7f\xd8\x72\xed\xb1\ -\x30\x8e\x5b\x7e\xdd\x72\xcf\x6b\x20\x6f\xc6\x7e\xd6\xf2\xf1\xe5\ -\x40\x9f\x13\x7f\xd5\xf2\xf4\x51\x30\x5f\xb7\x9f\xdd\xf2\xf5\x25\ -\xa0\x1f\xf6\xbd\xdc\xf2\xc2\xb1\x30\xfe\xd1\x1f\xb5\xfc\xfc\x04\ -\x90\xe3\xed\x6b\x5b\x5e\x3e\x09\xe4\xd2\xe1\x0f\xb6\xfc\xf2\x18\ -\xa0\x73\xdd\x5b\x5b\x5e\xdb\xc8\xe5\xc1\xe3\xad\x2d\x9f\xe3\xf2\ -\xe8\x2d\xad\x3d\x77\x02\x1f\x6e\xfe\x31\x7c\xc2\xb8\xcf\x3e\x15\ -\x3e\x61\x5c\x67\xbf\xa7\x75\xc5\x67\x60\x7d\xf6\xbd\xd0\xba\xe6\ -\xc3\x30\xae\x77\xdd\xd3\xba\xfe\x78\xe0\xf3\xe9\xce\xd6\xf5\x13\ -\x80\xcf\xf4\xe6\xd6\xcd\x0f\x82\x7c\xbb\x3b\xd7\x7a\xc1\x73\xc0\ -\x47\x6f\xbc\x05\x3e\x0f\x87\xcf\xff\x82\x4f\x90\xeb\x4b\xfb\x5b\ -\xad\xbb\x00\x9f\x1b\xf6\xb7\x4e\x37\x5c\xce\x58\xcd\x60\xeb\x65\ -\x37\x42\x3f\xfd\xe7\xb7\xde\x71\xe5\x22\xe0\x83\x89\xd6\xf7\x9d\ -\x0f\xf3\x71\xeb\xfa\xd6\x87\x16\xc2\x7a\x9a\x7f\x73\xeb\x87\xaf\ -\xf9\x39\xc8\x8b\xf3\x5b\x9f\x38\x1f\xd6\x51\xd7\xa3\xad\x5f\xdb\ -\xf1\x09\xe0\xcf\xbf\x6b\xfd\xda\x8f\x41\x3e\x1c\x9e\x6d\xfd\xf6\ -\xaf\x00\x8f\x8b\xb6\xb7\xbe\x78\xd3\xd5\x30\xfe\x9a\xb6\xa6\x69\ -\x4e\xbf\x4d\x6d\x47\x3e\xe7\x31\xb6\x75\x7e\xdb\x71\xef\x07\x3a\ -\x6f\x3b\xbc\xed\xb8\x2f\x02\xbf\x1e\x5a\xd3\xb6\xf4\x52\xa0\xc3\ -\xd4\x29\x6d\x27\xec\x80\x76\x57\x3c\xd1\xb6\xe2\x63\x20\xaf\x73\ -\x17\xb4\xad\xf5\x60\x7c\xf7\x9c\xd1\x76\xe6\x99\xc0\x7f\x83\xf5\ -\x6d\x83\x4f\x03\xbe\x03\xdf\x6e\xcb\xf5\x7c\x1d\xe4\xde\xa7\xda\ -\xae\x7e\xae\x89\xb1\xd6\xc7\xdb\x6e\x19\x02\xbd\xb8\x72\x47\xdb\ -\xe7\xdf\x07\x72\xed\xb2\xcb\xda\xbe\x71\x3c\xc8\x8f\xfa\x4d\x6d\ -\xdf\xbc\x14\xe4\x49\xeb\xff\xb4\xfd\xf6\xa5\x11\xe0\xc3\x3f\xb4\ -\x37\xee\x80\x75\xd7\xd1\xda\xde\x3c\x0c\xf2\x68\xfa\x9b\xed\x47\ -\xfc\x11\xf4\xca\xc5\xcf\xb4\xf7\xdc\x05\xf4\x2f\x1f\xdf\x7e\xe2\ -\xa5\x40\xa7\x9b\xce\x6f\x7f\xd3\x56\xe0\xff\xa6\x9d\xed\xfd\x0b\ -\xbf\xc6\xd8\xa2\x7b\xdb\xf7\xfd\x2b\xac\x6b\xef\x89\xf6\xd2\x55\ -\x30\xbe\x25\xb7\xb4\xdf\x74\x2f\xcc\xc7\x5d\xff\xb7\xfd\xb6\xf7\ -\x70\x39\xb2\xb6\xfd\xc9\xff\x04\xbc\xef\x3c\xad\xfd\xdb\x2f\xcf\ -\x07\xf9\xf6\x58\xfb\xf7\xde\x07\x7a\x36\xf7\xf1\xf6\x5f\x7e\x0f\ -\xe8\xf6\x8e\x6b\x3a\x8e\xfa\xdd\x4b\x8c\x2d\xff\xc7\x8e\xfe\x02\ -\xe7\xef\x07\x3a\x36\xfe\x10\xf0\xbc\xe3\xa2\x8e\xbd\xf7\x41\xbf\ -\x33\x5b\x3b\xf6\x7d\x04\xf8\xd7\xfd\x48\xc7\x5b\xff\x0b\xe6\x7d\ -\xe9\xf5\x1d\xd9\x07\x9f\xe1\x26\x46\x47\xf1\xf7\xc0\xbf\xcd\x87\ -\x74\x4c\x3e\xfa\x5e\x90\x6b\x75\x1d\x77\xfd\x1c\xe8\x75\xee\xa9\ -\x1d\x0f\x3e\x03\x72\x7e\xf9\xae\x8e\x0f\x3d\xfb\x00\xd8\x01\xcb\ -\x3a\x1e\x7f\x1c\xd6\xe1\x2d\xa3\x1d\xaf\xac\x03\xf8\x57\x5e\xd8\ -\x79\x42\x3d\xcc\xf3\xe4\x6f\x3b\x7b\x9f\x87\xe7\x77\x74\x74\x6e\ -\xfb\x32\xd0\xa7\xa5\xdc\xe9\xdc\x09\xfc\x74\xe7\x13\x9d\x17\x5f\ -\xd4\x0b\xfa\xba\xbf\xf3\xc6\xfd\xa0\xb7\x4f\x7e\x6b\xe7\x4d\x16\ -\x8c\xeb\x88\x37\x77\x3e\xf9\x1d\xe0\xe3\x63\x4e\xed\x24\x3e\xbd\ -\x16\x3e\x81\x0f\x6e\xff\x72\xe7\xcf\x5e\xa8\x03\x7d\xf6\x6c\xe7\ -\x2f\x7e\x00\xf3\x32\xf4\xfd\xae\xa6\xeb\x41\x3e\x95\xdc\xae\xc3\ -\xdf\x01\x72\x85\xfd\xa2\xeb\x18\xb0\x49\xd8\xe4\x47\xbb\xb6\x57\ -\xfa\x61\xfd\xfc\xba\xeb\x6d\x4f\x7e\x0b\xe6\xe3\x5f\xba\x2a\xff\ -\x04\xfa\x7f\xfa\x9d\x5d\x53\xff\x06\xf3\x9d\xbf\xbf\xeb\x9a\x36\ -\x58\x7f\x1b\xd7\x77\xdd\xf8\xd0\xdf\x02\x5d\xcf\xed\xba\xa3\x15\ -\xf4\xf3\xfb\xdf\xdb\x75\xcf\xcf\xef\x05\xf9\xf0\x4a\xd7\x67\xaf\ -\x02\xfe\xbf\xce\xee\x7a\xfa\x2b\xc0\x67\x27\xfd\xbe\xeb\xfb\x4b\ -\x80\x7f\x8f\x75\xba\x7e\xd7\x78\x34\xe0\xf5\xc1\xae\xdf\x2d\x03\ -\x3d\xea\x4e\x74\xfd\xf7\x14\xa7\x6b\x6d\xd7\x9f\xde\x06\xf3\x3c\ -\x75\x39\x30\xc9\xfd\x57\x00\x86\xac\x9b\xed\x62\x0e\xb3\x58\x9e\ -\x19\x6c\x8c\xcd\xc0\xff\x4b\xac\xc2\xa6\xe0\x89\xc1\xca\xf0\xad\ -\xc4\xfc\x66\x14\xa8\xf0\x5f\xcb\x40\x36\x6b\xec\x70\xec\x92\x0f\ -\x3c\xc4\x3a\x87\x5c\x33\xe7\xbf\x0d\x9e\xe1\xa3\x1a\x0e\x6d\x54\ -\x83\x76\x3c\xb4\x0d\x60\x04\xd0\xe9\xe9\x18\xbc\xe3\xc1\x53\x13\ -\xfe\x95\x58\x16\x7b\xcb\x32\x17\xff\xce\xb2\x95\xf0\xbb\x07\x2d\ -\x0b\xcc\x86\x5f\xad\xa0\xff\x1e\xe8\xcb\x33\x4c\xa3\xcc\xfb\x33\ -\x7c\xc7\x30\x4b\x86\x35\x6d\x7b\xbe\x5d\xca\x1b\x53\xb6\x6b\xad\ -\x1c\xf3\xca\x05\xbb\x64\x55\x43\x2f\x3e\xd8\x3c\x74\xca\x9f\x94\ -\xe1\x7b\x1f\xff\x17\x74\xd6\xc5\x07\x0b\x7d\xe4\x5d\xa7\x52\xee\ -\xeb\xeb\xe3\x30\xe7\x05\x30\x47\x9d\xb3\xf8\x73\x84\x5a\xd6\xa0\ -\x66\x01\x65\x0b\xe1\xf2\x01\x5a\x30\x04\x8b\x4d\xc0\x40\x2d\xf8\ -\xe7\x8a\x81\x4e\xc2\xdb\x0e\xfc\x35\x85\xcf\xca\xac\x07\x3e\x97\ -\xa5\x20\x50\x80\x6b\x80\xe3\x2a\x24\x88\x3f\x6e\x19\x9e\x55\xb0\ -\x32\xbe\x95\x35\x9c\xb1\xfd\xf0\xa5\xc7\x5b\x16\xa5\x0f\x8e\x63\ -\xb6\x41\xec\x06\xd0\xbc\x2b\x43\x74\x6a\xb0\x71\x98\x3b\x1b\x87\ -\x94\x47\x04\x0a\x80\x60\x09\x50\x73\x71\x38\x59\x1c\x96\x81\xad\ -\x0c\x18\x24\x1f\x6a\x05\x7e\x33\x00\xc9\xb2\x20\xc1\x04\x7c\xf7\ -\x12\x07\xad\x66\xf5\x4d\x03\x65\x98\x34\xcb\x33\x32\x15\xd7\xb5\ -\x60\x62\xf9\x0c\xc2\x74\x66\xfd\x71\x18\x40\xd6\xc8\x38\x05\xc7\ -\xe5\xa3\x89\x8c\xd1\xd3\x07\x03\x20\x66\x46\xfc\x99\x82\x85\x83\ -\xe9\x61\x3b\x60\x08\x5e\xc2\x10\x38\x4d\x67\x00\x55\x03\x3e\x1d\ -\x0d\x89\x43\x11\x82\x31\x28\x50\x40\x50\xd5\xe1\x37\xb3\x0d\x38\ -\x9c\x7c\xd0\xbe\x6e\xc0\xcd\xf0\xf7\x5b\xc4\xfb\x6e\x06\x5f\xcc\ -\xb2\x11\xa0\x01\xb1\x97\x9c\x58\x6c\x08\xac\x66\xb0\x41\x58\x2f\ -\x3b\xd9\x16\xa4\x0e\xa1\x4b\x14\x1d\x47\x66\xea\x85\x6f\x23\x6c\ -\x13\xdb\xcc\x86\xe1\x3d\x4e\xd5\x62\xc2\x9b\x0e\xab\x28\x76\x18\ -\x74\x2d\xd3\x07\x4a\xc2\xbc\x9b\x6e\xa6\xcf\x18\x1c\xdd\xb9\x05\ -\x29\x57\x32\xcb\xbd\xc6\xc8\xa6\xcd\xc3\xa3\xfc\xcf\x8c\x53\xf2\ -\x7c\xd7\xb4\x4b\x09\x18\x77\xc2\xd0\x56\xb0\x73\x70\x26\xa7\x34\ -\x02\x35\x6f\x58\x31\x12\xac\xad\x0e\x6a\xb3\x81\x9e\x60\xbb\x1b\ -\x62\x23\x9d\x44\x2e\x29\xc0\x67\x05\xfe\x2f\xa7\x60\x85\x26\x11\ -\x26\x64\x2f\x11\x6a\x24\x8f\xf4\xe0\x68\x32\x18\xd0\xc4\x28\x56\ -\x0a\xbe\x5d\x2e\x58\x2b\x48\x7e\x8c\xad\x20\x61\x91\x8e\x4c\x09\ -\x43\x6e\x07\x54\x6c\x18\x00\x1f\x76\x21\xe8\xb0\x71\xd0\x76\x33\ -\xc4\x3c\xed\xd4\x86\x1e\x60\x93\xab\x63\x54\xf2\x14\x88\x39\x51\ -\x61\x00\xde\x51\x14\x20\xc9\x39\x21\x56\x68\xc2\x6a\x0b\x20\x4c\ -\xa0\x80\xf2\x02\x74\x4f\x57\xf4\xc9\x20\x9e\x51\x72\x0c\x6c\x19\ -\x55\x8b\xcf\xf0\xcd\x52\x9e\x2f\x10\x6d\x09\xc6\x47\xb9\x88\x6d\ -\x15\xf8\x18\x01\x46\xe1\xe5\xd6\x3a\x58\x70\x3c\xcb\xd8\x22\xf8\ -\xa9\x4b\x80\xe0\x0f\xb7\x48\xf2\xae\xd2\xa0\x48\xb1\x9a\x2c\x91\ -\xa2\xd0\x8f\x44\x40\x24\x18\x51\x98\x8c\x59\x5c\x02\x66\x5d\x73\ -\xaa\x54\xb5\xbb\xc5\x20\xc5\x2d\x24\xd9\x0c\xca\x5b\x37\x41\x01\ -\xb6\xef\xb4\x8a\xce\xa4\x15\xd3\x81\x43\x56\x41\x29\x99\x42\x02\ -\xa0\xa8\x2e\x9c\x14\x12\x36\x8d\x36\xa4\x39\x9c\xc0\xb9\xce\xe1\ -\xdb\x49\xba\x71\x15\xa1\xa6\xd4\x63\xce\x75\x8a\x31\x05\x69\x80\ -\x24\x8d\xeb\xc8\x10\xfa\x0f\xc5\x58\x94\x93\xbb\x88\x62\xde\xc3\ -\x69\x48\xc7\xa6\x7e\xfa\xc5\x9a\xc0\xd0\x72\x71\x70\x76\xa7\xbe\ -\xfd\xaa\x2c\xbc\x4d\xb1\x70\xd6\x2e\x5a\x25\xcf\x76\x4a\x07\x5e\ -\xd4\x51\xce\x36\xe1\x4b\x1e\x5a\xfb\x1a\x87\x0c\x49\x70\x82\xad\ -\x87\x42\x94\x70\xf8\x04\xf0\xc9\x51\x06\x52\xd0\x60\x16\x20\x67\ -\xe1\xcc\x66\x85\x49\x60\x24\x00\x71\xa6\x4a\x79\xd7\xcc\xea\x4b\ -\x23\x78\x26\xe6\x68\x18\x81\x28\xda\x48\x60\x07\x63\x7f\x58\x88\ -\x84\x89\xaa\x9c\x43\x9b\xc4\x39\x91\x8b\xcc\x4d\x6c\xd1\x1b\xb0\ -\xe3\x64\x8c\xd9\x27\xa1\x57\xbe\x6c\x27\x34\xf6\xdc\xb8\x71\xba\ -\x5c\x70\xb2\x56\xa2\xb5\xe2\x19\xc0\x7c\x30\x11\x76\x11\xa4\xb3\ -\x2b\x1f\xf6\x72\x66\xf5\x2a\x63\x30\x5b\x30\x3d\x39\x33\x63\x79\ -\x55\x09\x32\x0f\x58\xc7\x42\xb6\x2d\xe1\xba\x50\x8a\xb9\x09\x5e\ -\x9f\x02\xf6\xd7\x64\xb8\x78\x82\x0d\x77\xa2\x0c\xf7\x23\x94\x9b\ -\xc5\x6c\x09\xcc\x9b\xe3\x85\xe0\x91\xdd\x8e\xe1\xa8\xb3\x9a\x05\ -\xb9\x62\x47\xc5\xaf\x32\x5e\x07\x14\xb4\x21\xf0\x30\xbc\x71\xcb\ -\xf2\xfb\xaa\x20\xd8\x0a\x76\xd9\x0c\xb2\x9b\x1a\x53\xfd\xc6\xac\ -\x8d\x6c\xda\x4a\xef\xf3\x3f\xf1\xe5\x93\xd5\xcb\xda\x88\x4c\xe4\ -\x00\xfe\x7d\x2a\x69\x4c\x01\xd8\xc3\x39\x1c\x42\x18\x28\x6e\x83\ -\x9c\x23\x74\x93\x7a\x5a\x04\x66\x82\xc5\x5e\x44\x62\x67\x45\x7f\ -\x28\x8c\x03\x68\x6d\xc3\x76\xc9\xf6\xc6\x0d\x29\x6b\x84\x25\x45\ -\x4f\x03\xa9\x3b\x54\x0d\x0e\xae\x7e\x47\x88\x43\x37\x90\x0b\x28\ -\xe8\x03\x49\x50\x24\x05\x11\xf4\xd9\x4d\xd0\x51\x14\x08\x2b\xd2\ -\x1f\x77\x2a\xbe\x91\x01\x51\xcf\x49\x4d\x64\x4b\x46\x65\x1a\x97\ -\xb7\x8f\x1d\x87\x05\xe0\xea\x90\xd5\x42\xe8\x1d\xac\xc5\x32\x9b\ -\xad\xf2\x26\x25\xc8\x56\x0b\x23\x25\xbd\x81\x22\x66\x28\x18\x4e\ -\x23\x20\xa6\xcf\x47\xbd\x54\xb6\xd1\x17\xe7\x09\x7d\xe5\xa1\x3d\ -\x66\xb3\x9c\x6a\xb2\x15\x34\x8a\xd6\x84\xff\x89\x4d\xbe\x8c\xb3\ -\x36\x85\xf2\x22\xea\xf5\xcc\xbe\x76\x7c\xe8\xc2\xc3\xdf\x89\xb0\ -\x4a\x29\xfe\x15\x8c\xc0\x04\xbd\x22\x35\x08\x5f\xc3\x76\x44\xf0\ -\xee\xdb\x8a\x0a\x34\x71\xc1\x8e\x59\xfe\x94\x65\x95\x8c\xd5\xa4\ -\x5d\xbd\x39\xe8\x97\x8c\x53\x9e\x49\x22\xe2\x02\x41\xf7\x32\x0a\ -\x0e\x2f\x22\xb7\x1a\xb7\xe7\x72\x9e\xe5\x6b\x06\x16\x3d\xc0\xa6\ -\xff\x1c\x6a\x4a\xe3\x4e\xb9\xda\xff\xd7\xa9\xbc\x89\xc6\x91\x20\ -\x67\x0e\x82\xa6\x71\xd2\x5c\x17\x33\x5f\xf2\xa8\x06\x67\xe0\xe9\ -\x38\x0a\x8f\x89\xc0\x7a\x94\x1e\x8a\x7c\xfe\xd7\xf3\x42\x4e\x55\ -\x2b\xdb\xb5\xf2\x95\x82\xe9\x02\x1f\x15\x66\xf2\x69\x0c\x15\x4d\ -\x31\xec\xa0\x36\xda\xb2\xd5\xd0\x57\x2a\x4f\xbc\x56\xa5\xe1\x68\ -\x8c\x42\x61\xf9\xe6\xe2\x18\xe7\x48\x93\xa0\xf3\x65\x71\x19\xe6\ -\xc2\xdc\x82\xdb\x10\x75\x2d\x34\x65\xbe\x53\xbe\x21\x5c\xd0\x9d\ -\x3a\x0a\xca\x30\x0a\x5e\xab\xda\xb4\x1d\x9a\x3a\xd2\xdc\x51\x6b\ -\x69\xa7\xe3\x03\x4e\x1a\xc3\xd0\x03\x6c\xf2\xb0\xde\xa4\xaa\x2c\ -\x73\x40\xbf\xef\x0f\x6c\xa9\xff\xed\x35\xb4\x93\xf0\x4f\x96\x55\ -\x69\x97\x51\x46\x39\x7e\xe1\xd5\xa4\x11\xa7\x15\x79\x85\x8b\x18\ -\xe5\xe0\x36\x8c\x64\x4c\x9a\x82\x36\x7a\x1f\xff\xc6\xd7\x9f\x54\ -\xaf\xa7\xa4\x64\xdc\x15\x22\x51\xe8\x05\x0c\x99\x86\xd6\x92\x82\ -\x7f\x0d\x5a\x9f\x8f\xc3\xab\xa2\x16\xc8\xc9\x32\xc6\x4c\x70\x66\ -\x91\xd9\x0f\x42\x86\xc5\xa8\xb8\x80\x9d\x43\x1e\x0e\x4b\x8a\xf9\ -\xb5\x8f\x90\xbf\x12\xc4\xf3\x0e\x11\xed\xf1\xb1\x0a\xe8\x5d\xa2\ -\x41\x09\xcf\x47\x92\x5e\xe6\x7e\x84\x6e\x05\x67\x45\x5b\x2e\x5f\ -\x72\xc2\x6f\xe0\xb4\x23\x43\xc1\x08\xa2\x6b\xb6\xf0\x2b\xe4\x4c\ -\x47\xb1\x5d\x4b\x68\x01\x97\x15\x0a\x01\xd5\xb8\x55\x46\xf4\x34\ -\x8b\x40\x37\x93\x87\xdc\xe0\x0d\x4e\x63\xdb\x3b\xe0\xc0\x2e\xd0\ -\x06\x46\x4c\x23\x3d\x64\x2b\xf0\x9e\x27\xd1\x3f\xe6\x4b\xd0\x47\ -\x9b\x26\x8f\xcf\x6c\x5c\xe0\x9c\x1d\x1d\x31\x60\x57\x40\x22\x79\ -\x58\x8e\xe8\xe0\xde\x11\xe9\x1a\x4e\x39\xee\x04\xb7\x1f\xcb\x05\ -\x13\xac\xca\x1c\x38\x26\x79\xcb\x29\x5a\xbe\x3b\x43\xcb\x48\x78\ -\x7c\x21\x8c\x77\xf0\x77\x85\xa8\x96\x18\xef\x22\xd7\x48\x19\xc9\ -\xda\xab\xb3\x00\x38\x5f\x13\xd9\x93\x38\x77\x45\x14\xdb\x43\x4c\ -\x06\x6b\xc9\xe6\x0f\xaf\xa8\x94\x56\x59\x80\xcc\x72\x29\xba\x47\ -\xc6\xcd\xb2\x65\xac\x1e\x32\x26\x6d\x6b\x0a\x9c\x95\x5c\x62\xe8\ -\x55\xe2\xca\x5f\x5e\x3d\xb4\x0b\x5e\x45\x5c\x8f\xc2\x68\x78\x15\ -\x0c\x83\xbe\x3a\x42\x7d\xcc\x02\x6e\x5b\x4c\x5b\x11\x38\xe5\x78\ -\xe1\x9c\xcd\x59\x4f\x1d\xab\xc7\x4a\x4b\x25\x2e\xf2\x62\x61\x03\ -\xcd\x6a\x1b\xb5\xa6\x7d\x11\xfa\x25\x4f\x53\x85\x1f\xea\xf9\x6f\ -\x49\xaf\x9e\x26\xa4\x21\x05\xf7\x0c\x60\x02\x07\xe9\xc0\xd9\xae\ -\xc2\x41\xe0\xfc\x14\xe1\x69\x16\xad\x62\x39\xb4\x95\xf0\x7f\x65\ -\x84\x1f\x3e\xea\xe4\x41\xbd\x09\x01\x52\xc9\x00\x96\xc6\x56\x87\ -\x82\x03\x47\x89\x1e\xf1\x8d\x41\xf1\x02\x1f\x07\x7f\x01\x71\xf0\ -\x23\x38\x4c\xcc\x05\x07\x6d\xd1\xe8\xb2\xa3\x80\x1c\x55\xaa\x1a\ -\x4d\x50\x1e\xf0\x4a\xc2\x8c\x84\xa7\x8e\x1f\x8e\x00\xd7\x51\x09\ -\xa8\x15\x68\xae\x74\x63\x5a\x0d\x5e\xae\x2d\xbc\x88\x82\x86\x81\ -\x8f\x4f\x7c\xb4\x7e\x39\x4b\x78\x6a\x5c\x01\x46\x0b\x14\x35\x7d\ -\xbb\x54\xb1\x02\x52\x2e\x8a\x74\x8b\xbf\x06\x5d\x16\x22\x5d\x46\ -\x45\xe9\x2c\x5d\xa7\x22\x22\x8f\x00\x4e\x32\x0a\xd7\x28\xf2\xf5\ -\x46\xc8\xa7\x30\x56\xa4\xcb\x38\xc5\xa2\x59\xca\x12\xed\x66\x1f\ -\xc4\x75\xc2\x6b\x30\x35\xaf\x9a\xa2\x37\x3e\x72\x05\xa1\xae\xe4\ -\xc7\x5c\xbd\x39\x15\xb2\xa4\xc1\x13\xa9\x2c\x11\xfa\xe4\x82\x4f\ -\xb9\xcf\x4a\xea\x0c\x8f\x4c\x99\x65\xcf\xc8\xda\x1e\x08\xd7\x19\ -\xa3\xc8\x47\x97\x20\x71\x02\x0f\x8c\x87\x31\x73\x2e\x57\x1c\x3c\ -\x39\x94\x2b\x98\x3e\xf7\x91\x51\x22\x1d\xae\x0f\x7f\x88\x00\x06\ -\xa3\xef\xa9\xc2\x35\x13\x28\x2c\x92\x78\xe5\x50\xc1\x2b\x3a\x6a\ -\x07\xec\xa6\x1d\xe4\x83\x2b\xc2\x84\xd3\xca\x02\x1d\x75\xed\xa2\ -\x35\xad\x19\x59\xf4\x80\x37\xa9\xe9\x04\xc9\xc0\xa9\x5f\x66\x32\ -\xa6\xe6\x22\xe5\xd3\x4a\x70\x15\x8b\xa3\x75\x4d\x6d\x49\x58\x72\ -\xea\x4f\x08\xc6\x52\x91\xb9\xb0\xb0\x4c\xb6\x55\xc7\x50\xe8\xca\ -\xd0\xb3\x8f\x36\x72\x52\x3e\x2d\x1c\xa1\x25\x3c\xe4\xdb\x12\xff\ -\x92\xd0\x08\x64\x19\x12\x07\xe8\x56\xd8\x44\x60\x7d\xc3\x5c\x04\ -\x44\xbb\x86\xd3\xc8\xe3\x51\x40\x60\x74\xab\x94\x9c\xe9\xec\x15\ -\xbf\xbb\x15\x1e\x5c\xe4\x41\x1e\x98\x31\x0c\x16\x0a\x59\xce\x05\ -\xb9\x27\x0d\xb1\xc0\x0a\xf3\xd0\x02\x13\xd9\x3e\x11\xf8\x35\x28\ -\xcd\x58\x72\xdc\xa2\x59\x20\x33\xcd\x2e\x4d\x5a\x6e\x28\xcd\xa1\ -\xe6\x8d\x9d\x0c\xd4\x22\x7b\xc8\x8f\x88\x05\xe9\x95\xfb\x71\x1a\ -\x05\xa3\x3b\xe4\xbc\x52\xd6\x31\x0a\xa6\xe7\xeb\x81\x67\x11\x91\ -\xe7\xbf\x05\x01\x9a\x6d\x29\xfb\xc9\xa3\x08\xb2\x42\x86\x10\xd1\ -\x3a\x19\x83\x35\xbc\x17\x99\x26\xe1\x78\x60\x82\x44\x51\x23\x57\ -\x35\x81\x92\x84\xe5\x97\x81\x7b\x8a\x88\xdf\xdc\xa2\xa9\x1e\x8e\ -\x81\xab\x6b\x5b\x70\xac\x25\xb8\x43\x8f\x2f\xeb\x32\x8b\x62\xdb\ -\x05\xe1\xb5\x49\xb9\x43\xe3\xb5\x03\xc9\x25\xd3\x8e\x3a\xdf\x73\ -\xca\x44\x21\x93\x09\x91\x0f\xbf\x15\xd0\xe8\x2d\x67\x3b\xc8\x2c\ -\x55\x83\xd6\x4e\xc9\x42\x16\x04\xce\x42\x56\xc1\x50\x23\xbc\xc4\ -\xc5\x14\x32\x59\xce\x2e\x14\xe0\x6f\x64\x49\x7c\xb3\x52\xb2\x7d\ -\x4b\xc5\xb3\x85\x87\x7e\x5e\x59\x45\xb3\xe7\xb3\xed\x40\x9c\xbc\ -\x9e\x27\x50\xce\xbd\x78\xb1\x4a\xd3\x78\x82\xf1\xc0\x69\x58\x25\ -\xb7\xff\x1a\x49\xe9\xf5\x55\x13\xb0\x9c\x44\x73\x8a\x6d\xee\x86\ -\x06\xc2\x2d\x1d\x92\x38\x2b\x33\x8c\xff\x9a\xf4\xf2\x50\x44\xf0\ -\x87\x95\x56\x00\x48\xcb\xb3\xd1\x2f\x1b\x60\xa0\xf1\x3c\xdb\x92\ -\x41\x39\xd1\x52\x21\xf1\x8e\x50\x17\x6d\x50\x09\xf2\x43\x15\x0e\ -\xa3\x8e\x9e\x33\xee\x49\xec\x90\xb2\x2f\x1b\x12\x13\x7b\x5d\x08\ -\x1f\x28\x92\x06\x7c\x27\x88\x54\x5a\x80\xa8\xce\x14\xd7\x0c\x14\ -\x7c\xae\xbf\x78\xe3\x37\x9c\x55\xb1\xfb\xfb\x87\x6c\xb3\xe0\xe4\ -\xe1\xb3\x90\x1f\xb1\x7c\x9e\x20\xf4\x10\x68\x90\x47\xd0\x49\x36\ -\x02\x96\xc3\x59\xf0\xb9\x03\x75\xb8\x2b\x32\x5f\x06\xe2\x9a\x87\ -\x7f\x61\xb7\xe9\x18\xe8\xcc\x72\x4b\x30\xe9\xc6\xc8\xae\xb3\x8c\ -\x1d\xa6\xcf\xff\xf4\x8c\x82\x93\x09\x3c\xa5\x14\x48\xec\xc3\xb1\ -\x4c\x41\x97\x33\xc8\x5c\x1e\x92\xa9\x2c\xd4\x8b\x0a\x24\x64\xd0\ -\xfa\x32\x80\xb4\x59\x44\xda\xc4\x54\x8c\x15\x6a\x41\xca\x9d\x14\ -\xcd\x0c\x5b\xa6\x52\x34\x03\x85\x29\x73\xc6\x43\xe6\xe3\x34\x96\ -\x4b\xbb\x07\x74\xbe\x39\x06\x9a\x04\x7f\x00\xc2\x19\x13\xd6\xcc\ -\xb2\x94\x88\xb7\x02\xe2\xdc\x04\x08\x05\x4d\x06\x5c\x68\x92\x12\ -\xc0\x42\xb4\x21\x2a\x81\x3a\xa7\xe5\xbc\x46\x79\x8d\x1b\xcc\xcc\ -\x84\x07\x22\x7b\xdc\x58\xf3\xba\x40\xae\x4d\x02\xb9\xf6\x75\x81\ -\x5c\x97\x04\x72\x5d\x4a\x90\xbe\xf0\x91\x88\xc7\x0a\x81\x55\x10\ -\x8d\x33\x90\xb4\xd9\x8f\xf5\x52\xea\x19\x47\xc2\x14\xac\x70\x12\ -\x7a\x9e\xba\xdc\xe7\x15\x56\x53\xf0\x6e\x41\x68\x89\x49\x8c\x54\ -\xb8\x9a\xb9\xbd\x7e\x70\xdc\xca\x4c\x50\x10\xc2\xce\x19\x33\x4e\ -\xc5\x98\x32\x79\xa1\x19\x0f\x54\x83\x10\x03\xb6\x38\x69\x88\x04\ -\x37\x56\x57\x8d\x59\x86\x5d\x2c\x3b\x2e\xd7\x09\xbe\xe3\xf4\xa5\ -\x1c\xe4\x6d\x6c\x6b\xb0\xf0\xb3\x22\xe3\x24\xd3\x5f\x24\x79\xc2\ -\x03\x1b\x43\x55\x47\x83\x88\x26\xc5\x4a\x81\xf2\xec\xc1\x95\xe2\ -\x0b\xc3\x2d\x2f\x14\xa1\x0c\xeb\x98\x6c\x39\x12\xc0\x41\x48\x89\ -\x84\x08\xc8\x30\x32\x0b\x19\x4a\x4e\x69\x45\x09\x6c\xef\xac\x31\ -\x06\xab\x79\x02\x28\x32\x66\xe5\xed\x52\x89\xea\x0b\x78\xc1\x96\ -\xb1\x3c\x89\x36\x29\x49\x33\x4f\xaf\xa8\x09\xb1\x7c\x33\x95\x97\ -\xa4\xe6\xf7\x28\xa4\xb5\x31\x48\x69\xd9\x3c\x0a\x69\x5d\x0c\x52\ -\x5a\xee\x3e\x05\xb8\x5b\x15\xc9\x49\xcb\xa8\x8c\x76\x50\x81\xa9\ -\xb2\x3b\xb2\xd9\x28\xa3\xee\x6b\x9a\xe0\x88\x41\xac\x84\x2b\x9a\ -\xe5\x32\x52\x15\x4d\x33\xac\x93\x4b\x89\xc0\x52\x0d\x81\x09\x5c\ -\x30\x3e\xf2\x91\xf4\x59\x0b\xec\x67\x21\x4e\x98\xaf\x3a\xe4\x13\ -\x0c\x96\x8c\x95\xb2\xa7\xc5\x60\x46\xa8\x40\x83\x19\x70\xa3\xae\ -\x93\x3a\x06\xa5\x8a\x9f\x83\x66\x5a\x98\x1c\x45\x51\xd1\x51\x3d\ -\x62\x90\x12\x66\xb5\xc8\x4c\x50\xd2\xa8\x13\x44\x8b\x61\x60\x61\ -\x62\xca\x3e\x96\x57\xe9\x43\xaf\x40\x15\x8b\x59\x45\x7e\x42\xbd\ -\x61\x58\xd4\xe0\x8b\x2f\x65\x97\xab\x61\x0e\x48\x24\x92\x59\x56\ -\xc6\x19\x37\xb5\xc8\x67\x26\xaa\x45\x35\x56\x43\xa3\x8d\xc7\x66\ -\x4d\x1e\xe6\xb4\x33\x7a\xe4\x2f\x45\xe7\xdd\x20\x7f\xf7\x80\x8d\ -\x68\x80\xa5\xad\x7c\x3f\x1f\xf9\xdd\x8b\xd4\xef\xcc\x1f\xda\x33\ -\xcc\x03\x1a\x45\x13\x9c\x8e\x32\x1f\x6c\xda\x5e\x16\x05\xa9\xeb\ -\x0a\xba\xdc\xf1\x19\xeb\x18\xb2\x72\x26\x98\x9d\x73\x9a\xac\x4d\ -\x11\xb0\xe3\x8c\x6a\x36\x65\x78\x95\xa2\x39\x3c\x6a\xcc\xa9\x98\ -\x0b\x2c\xc6\x68\xa1\x94\x1a\xe2\xf1\x12\x8d\x71\xcb\xce\x8f\xfb\ -\x18\xbe\xf1\xc1\x6b\xf5\xd0\x70\x0c\xaa\x96\xd2\x8e\xdb\x88\x20\ -\x58\x5d\x66\x1c\x22\x3b\x9e\xab\xac\x58\x1e\xeb\x82\x2a\xd4\xb8\ -\xee\x31\x91\x93\xb2\xb2\xe4\x25\xe8\x6c\xa1\xec\xcc\xb7\x8a\xe5\ -\x02\xe7\x1f\x2c\x6d\x39\xc8\xc9\x0c\xe8\x1b\x1f\x0c\x27\x1d\xd0\ -\xb0\x94\x16\xf4\xd2\x84\xc1\xc8\xc9\xd3\x26\x57\x45\x7e\x42\x1d\ -\xd1\x9c\x1d\xf4\xd4\x48\x33\x7f\x32\x12\xfb\x3f\x4c\x76\x12\x4a\ -\x2e\xa4\x5e\xdc\x43\x51\x66\x03\x9f\xce\x80\x91\x1a\xe0\xbb\x59\ -\xc2\x5e\x2a\x63\xad\xb3\xa8\x79\x56\xf6\x79\x50\x91\xe6\x19\x4b\ -\x8d\x2d\x16\xf8\x8e\x2e\x18\x38\xae\x33\x65\x78\xb2\xee\x39\x95\ -\x93\x10\x2f\x87\xf3\x50\xce\xb8\x28\x4f\xec\xe0\xa9\x81\xcb\x12\ -\xe3\x9b\x01\x12\x8b\x35\x24\xca\xae\x95\xb1\xf9\x57\xa3\x60\x4d\ -\x5a\x69\xad\xe4\x76\x70\x47\xa4\x0b\xab\x0c\x85\x86\x21\xc7\x4f\ -\x6d\x25\xe8\x20\xd6\x86\x41\xa4\x35\x0f\x74\x10\xeb\xc2\x20\xd2\ -\xda\x05\xd2\x27\xcc\x05\xa6\x20\xa9\xe5\x1c\x3c\xcb\x30\x2b\x70\ -\x5f\x14\x7f\x2e\xc0\xc6\x3c\x00\x61\xb9\xdc\x1e\x0d\x42\x93\xa9\ -\x84\xdb\x46\x36\x0d\x93\x44\x61\x6b\x43\x58\xca\x51\x67\xca\x14\ -\x53\xe9\xa0\x64\xd1\x31\xe1\x9c\x36\x1e\x12\x6e\xc7\x6d\x9c\xe6\ -\x96\x9e\x01\xc6\xb1\xf4\x9f\xc0\x56\xe6\xf5\x0d\x84\x9b\xc5\x2b\ -\xb2\x52\xdb\x48\xbb\x30\x4e\x91\x1c\x2b\x8a\x66\xb6\x02\x53\x57\ -\xe9\xcc\x61\x5b\x4b\x34\x8e\xcd\x18\x59\x5a\x64\x29\xbb\x7f\x13\ -\xfa\x9c\xdc\x34\x23\xbe\x96\xa5\x66\x7a\xa6\xc9\x16\x6a\xdc\xc2\ -\x50\xa6\xb0\x9d\x94\x0c\x3c\xcb\x2a\x59\xae\x59\x30\x68\x8a\x64\ -\x17\xa9\x59\x21\xde\xff\xec\xfd\xcd\x93\xfd\x79\x73\xeb\xe9\x38\ -\x70\xe8\x0b\x38\xed\xa6\xf0\x96\x55\xfa\x3b\x1e\x0a\x9f\x77\x56\ -\xc1\x19\x83\x4e\x78\xce\x7a\x2e\xcc\x46\xd5\xae\x36\xfa\xde\x1e\ -\x5a\x20\x99\x48\xb0\xa0\xfd\x2c\xd7\xce\x1a\x5e\xd9\xcc\x88\x22\ -\xcd\x14\x50\x57\x21\x54\x9e\x8e\x2e\x8b\x20\xe8\x0c\x93\x89\x69\ -\x5a\x3e\x4e\xe0\x37\x65\x42\xb9\xba\x45\x98\x46\x36\x0a\xe6\x8c\ -\xe5\x8a\x00\x1e\x39\x32\xe9\x7a\xae\x59\x2c\x42\xb1\x9c\x5e\x33\ -\x88\x81\x01\x3d\x98\xa2\x5c\xb1\x2c\xe4\x5e\x0e\xfd\x37\x53\x30\ -\xaa\x2b\x96\x15\x67\xe6\x19\x7c\x9f\x5c\x5c\xb2\x8a\x65\xd2\x45\ -\x86\x58\x72\xe8\x99\x51\x76\x3b\xf9\xcd\xd3\x90\x8e\xbe\x10\x12\ -\x25\x76\x06\xf6\x63\x61\xcb\x12\xfa\x93\x4a\x16\xfb\xb0\x54\xc9\ -\x2b\x94\x58\x8e\x09\x67\x39\x8b\x6d\xb2\x41\x34\xc5\xc7\x45\x1d\ -\xd6\xf2\x2e\xfe\xae\x0b\x27\x82\x96\x81\x4f\x23\x82\x85\xa2\xf1\ -\xf5\x9b\x2c\xd7\x42\xb7\x31\x63\x96\x60\x66\x41\xb6\xe7\x66\xb0\ -\x36\x9b\x17\x02\x39\x3c\x65\x0e\x9a\x1b\xcc\x7e\xae\xf3\x78\x80\ -\x88\xfb\x15\x9e\xfe\xf0\xb4\x32\x85\x8c\xce\xe0\xab\x17\x1e\xa1\ -\x49\x08\xfe\x27\xd8\x87\x1c\x24\xf8\x96\x66\x36\x4b\x2e\x10\x06\ -\x66\x7d\x30\xa2\x4c\x37\x2b\x96\x1c\xbc\x96\x19\x37\x04\x88\xb4\ -\xcb\x61\x17\xdb\x8c\x86\x5c\x06\xc9\x90\xc1\x05\x9f\xc5\x68\xa7\ -\x29\x6c\x74\x62\x62\x72\x9c\xc9\x5b\x23\xcf\xcd\x44\x63\x70\x0a\ -\xdb\xa9\x2c\xd8\x54\x84\xcd\x4f\xd8\x9c\x33\x32\xdc\xaf\xb6\xb2\ -\xbd\x40\x8b\x3c\x67\xfa\x29\x2e\xaa\xb8\x33\x67\xba\xc6\xd4\xb8\ -\x55\xc2\xf8\x7a\xfa\x55\xf0\x63\x40\x59\x8f\x1a\x48\xa9\xc1\x6d\ -\x8d\x5e\x46\x81\x75\x8e\xe8\xb0\x88\xce\x64\x70\xd6\x49\x3f\x3b\ -\xc8\x07\x7a\x61\xad\x27\x3c\x83\x49\x91\xa2\x99\x2d\xc1\x6b\x04\ -\x96\x70\x38\x80\x6e\x6b\x85\x3c\xf1\xfd\x0b\x7d\xc8\x4b\x14\xef\ -\x98\x08\x15\xfd\x90\x43\x34\x11\x24\x8b\x2c\x1c\x49\x74\x43\x9e\ -\xa5\x93\x30\xe7\x5a\x56\xc6\x14\x34\xe4\x65\x18\xc0\x0b\xfb\x31\ -\xaa\x9c\x81\xff\x67\xec\xac\xb6\x49\x85\xd6\x39\x06\xe4\xfb\x8c\ -\x0d\xd6\x94\xe9\x5a\xbd\x14\xde\xe0\xdc\xe4\x9b\x13\x16\xaf\xf0\ -\x18\x07\x2e\x14\xdb\xfc\x52\x10\xff\x7e\xc1\x2f\x3e\xc6\xa6\x48\ -\xf0\x78\x55\xf8\x87\xf8\x25\xaa\x61\x93\x17\xb7\xd4\xb4\x5e\x88\ -\xd7\x68\xd1\x5a\x9a\xde\xb6\xc4\x46\x3d\x0f\x35\x78\x36\x41\x57\ -\xab\x05\x79\xee\xe6\x9c\x88\xe6\x78\x1a\x0f\x6a\x6a\x52\x5b\x7a\ -\x18\xdd\x22\xaa\xc2\x32\xb3\xa6\x45\x08\x07\xf4\xf9\x49\xd9\x40\ -\xa5\xa7\x5d\x54\xcf\x82\x36\x93\xa5\xa9\x7e\x10\xf2\x90\xb5\x3b\ -\x9c\x60\x3a\x9f\x26\xe8\x1f\x31\xf4\x71\x21\x69\xa7\x70\xf0\xd9\ -\x80\xd3\x24\xa7\x86\xf3\xe7\x44\x74\x19\x23\xf3\xb4\x1e\xf4\xb7\ -\xa8\xb5\x8f\x0e\x53\x38\x66\xa6\x52\x48\x9c\xb3\x57\x68\x78\x19\ -\x09\x9a\xd1\x49\x22\x6e\xa0\x26\x03\x4a\x4e\x58\x65\xdf\x30\x33\ -\xae\xe3\x79\x32\x65\xdf\x6b\x38\x20\xbd\xdc\x29\xdb\xb3\x82\x2c\ -\xbe\x90\x09\x22\x28\xed\x9b\x2e\x37\xf2\x8c\x92\xb3\x62\xae\x8a\ -\xf7\xb9\x39\x91\x3e\x69\x89\xab\x1c\x5a\x34\x57\x2e\x49\xa4\xca\ -\x19\x74\x87\x87\x2a\xf4\x95\x1a\xe1\xcb\x7e\x40\x9b\x0e\x5b\xa8\ -\x26\xd9\xb7\xc4\x50\x55\x22\x38\x62\x72\x55\x81\x57\x42\x65\x41\ -\x30\x01\xb9\xa4\x09\x50\x95\x66\x4a\xc4\x02\x0f\x8b\x5c\x1c\x7c\ -\x13\x66\x61\x9f\xb1\x5d\xce\x01\x17\x09\xd6\x4c\xb4\x45\x50\x6d\ -\x90\xd2\x40\x68\x9f\x13\xdd\xf7\x0b\x43\x41\x31\xa2\xcc\xa4\x51\ -\xb6\x4d\xc5\x04\x93\xb6\x88\x55\x13\xcc\xb4\x1b\x47\xc1\x57\x06\ -\x2c\x9f\x8b\xb0\xd2\x28\xe1\xb7\x38\x4e\x1e\x2e\x92\xbc\x28\x5f\ -\x09\xe3\x34\x85\x38\x94\x02\x05\x42\x2d\x54\xde\x30\x2b\x04\xba\ -\x12\xdd\x6f\x4f\x9a\x23\x0c\x2c\xeb\xec\x2e\x72\x30\xc1\x86\xb5\ -\x60\x12\xb9\x68\x96\xca\xb1\xcf\x00\x58\x25\xc7\xd7\xda\x8f\x51\ -\x9a\x06\x63\x94\x4e\xa9\x30\x43\xca\x14\x9c\x4a\x0f\xf7\x7c\xf0\ -\x04\x63\x5a\xb1\x7e\x14\x92\x47\xa6\x06\x0c\xb6\x5c\x8f\xbe\x07\ -\xc3\xe9\xdc\x8c\xa1\x6d\x63\xf9\x5c\x6c\xc7\x60\xf3\x39\x87\xbb\ -\x1d\xc8\x35\xc0\xc2\x49\x0b\xdd\x8d\x99\x27\x7a\xd8\x3e\x38\x40\ -\xa9\x87\x39\x44\x1f\x64\x1f\x15\x64\x41\x9a\x46\x5f\x7a\x12\xb1\ -\x31\x80\x29\xec\x54\x52\x87\xf5\x16\x84\xe8\x13\x0d\x2c\xb4\x0b\ -\x98\x73\x8b\x22\x28\x8c\x89\x51\xbd\x40\x7e\x27\x44\xd4\x22\xa3\ -\x38\x52\xf4\xf8\x3a\x62\x69\xe1\x29\x5f\xc9\xce\x43\xb2\x45\x93\ -\x22\x1d\xd4\xd1\x4a\x72\x75\x53\xfb\x29\x9b\x03\x67\xbe\x24\x96\ -\x57\xba\xe8\xc8\xa2\xcd\x25\x4c\xa1\x16\x0e\x32\x36\xd2\x2d\xa2\ -\x50\x7a\x71\x43\xb5\xb2\xcf\x0e\x5e\xe2\x10\xd4\xb3\xa6\x8e\xa8\ -\x6d\x41\x97\x83\xcb\xb8\x1e\x18\xe6\x08\xb0\x74\xdc\x79\x50\x89\ -\xd6\x43\xb7\x58\x60\x9a\xf7\x6c\x1e\xd9\x1e\x98\xeb\x69\xd3\xa9\ -\x06\xee\x03\xb6\x05\xa5\x30\x39\x8e\x7c\x60\x09\x95\x31\xa3\x56\ -\xcd\x56\x9e\x4c\xc0\x72\x30\x03\x88\x95\x7a\x30\xf7\x07\x3d\xe8\ -\xf0\xa3\xe6\x97\x34\xec\x4b\x81\xd9\x47\x66\x9e\x8b\x62\x75\x24\ -\xe2\xfd\x8d\x07\x7e\x22\xb7\x5e\xa6\x18\x6d\x56\x2b\x09\xe1\x7a\ -\x21\xac\x4e\x5a\xfb\xd2\xc6\xf1\xc5\x76\xaa\x92\x78\x33\x8c\x8d\ -\x12\xa5\xe7\xf2\x31\xd2\x10\xa5\xf0\xa3\xb2\x1d\x90\xaf\x20\x57\ -\xdd\x3e\x63\x44\x78\x5c\xe3\xdc\x0d\x1b\x77\xa6\x0c\xb0\x2c\x66\ -\x0c\xef\xc2\x8a\xc9\x2b\x52\x64\xd5\x42\x51\x82\x49\x2b\x1a\x4f\ -\x46\x22\xd1\xf2\x3c\x07\xed\x80\xb2\xd8\x5d\x4a\xb5\x3d\x5b\xc4\ -\xae\xbd\x11\x96\x54\x6b\x34\x7f\xab\x39\x6d\x50\xa1\x82\x31\xa2\ -\xca\x9d\x52\xf4\xdb\x0c\x6e\x31\x12\x46\x55\x7a\x6c\x73\x52\xc7\ -\x49\x0d\xd9\x1a\xf9\x74\x12\x09\x4a\x4b\x82\x42\x2a\x8a\x43\x3b\ -\x39\x54\xa3\x27\x67\x7a\xbe\xe5\xf9\x69\x99\xf3\xcf\x6c\x5b\x90\ -\xdf\xa0\xca\x36\x32\x3f\x73\x62\xd9\x93\x9d\xcf\xe3\xb0\xd2\xc2\ -\x0f\xfb\x01\xbd\x4c\xb9\xde\x99\xc0\xd0\xf4\x98\xac\xe6\x32\x98\ -\xdc\xc5\x9b\x11\x56\x3f\xe9\xf0\xb0\xef\xc1\xdb\xf9\x81\x38\xa9\ -\xe6\x89\xc8\x7e\x68\x8f\x85\x15\xc3\x25\xce\xf2\xd1\xbe\xf5\x60\ -\x54\x78\xaf\xeb\x65\xdb\xb0\x6a\xae\x30\x03\x9e\x45\x0e\x44\x17\ -\x9a\xc0\x9a\x12\x47\xeb\x8a\x3f\xe4\x07\x7d\xe4\x2d\x3f\xa8\xa6\ -\x42\x7d\x8e\xb6\x01\xa5\x7e\x42\x26\x02\x6f\x83\x7b\x2b\x42\xf6\ -\xdc\x98\x56\x8b\x65\x97\x60\xba\xcc\x6c\x5a\x26\xee\x0e\x34\x6f\ -\x8a\xb4\x14\x57\xbe\x07\x95\x96\x3a\x03\x7a\x71\x50\x3f\x96\x45\ -\xb1\xcc\x04\xae\x65\xca\xe0\xeb\x27\xa5\x58\xb3\x26\x7c\x8f\xda\ -\xee\xda\x79\xbb\x84\x71\x37\x9e\x88\xe5\xfa\x6d\xae\x79\x9c\x56\ -\x30\xca\x6c\xdc\x4c\xa5\x16\x63\xc3\xce\x39\x24\x34\xba\x45\x68\ -\x6a\x45\x1a\x92\x61\x38\xe7\x60\x48\x36\x8e\x02\xd4\x14\xd1\x94\ -\x6a\xc7\x3d\x1c\x90\x74\x4c\xa5\xe7\x94\x73\xe8\xe1\x8a\x8a\xe2\ -\xba\x6a\xc4\x9c\xb4\x82\x12\xd0\x04\x02\x4b\x77\xcd\xe3\x76\x64\ -\xfa\x91\x6c\x40\x09\x28\x57\xcd\x6c\xab\xad\xaa\x94\x50\xc5\x66\ -\x62\x03\x4a\x68\x0d\x84\xd6\x57\x6a\x23\x67\x44\xec\xee\x2d\x21\ -\x29\x92\xeb\x8a\x9a\x46\xe6\x54\x53\x34\x1b\xd0\xb5\x51\xa0\x69\ -\xf3\x29\xb3\x01\x5d\x17\x05\x9a\x36\xc3\xb2\x10\x38\xd8\x14\x79\ -\x8b\x7c\x42\x96\xb8\x75\x84\xfb\x1e\x73\x49\x11\xf3\xaa\x90\x50\ -\x71\x99\xaa\x0a\x19\x11\x25\x63\xa9\x4d\x6a\x05\x89\xea\x5c\xf3\ -\xfa\x41\x29\x08\xcd\xe5\xa7\xae\xa4\xc6\x6c\x14\xc7\x3a\x81\x2b\ -\xc1\x62\x53\x0a\xb3\x51\xd3\x9b\x90\xdb\x6d\x52\x40\xea\x07\x48\ -\xa4\x31\xe2\xc5\x1c\x52\x9b\x91\x3f\x6e\x63\xf0\x99\x38\x19\x4b\ -\xec\x82\x3e\xdf\x30\x1a\xec\xfc\x10\x11\x26\xa0\x8c\x9d\xb3\x81\ -\x83\x27\xac\xb4\xf6\x59\x4f\x80\x88\xa9\x57\x37\xce\xd2\xed\x02\ -\xde\xad\x49\x35\x8f\x73\xed\xed\xbd\x18\xa5\x0c\x8b\x9b\x59\xaa\ -\x65\x58\x7c\x7f\x87\x2f\x26\xd2\xd3\x44\xa6\x2c\xf7\x90\x29\x2c\ -\x59\x1e\xa1\xfa\x50\xc7\x70\x44\x85\x9a\x12\x5a\x03\xa3\xa8\x45\ -\xa3\x55\x39\x54\x4f\x00\x5c\xe2\x15\x4c\x74\x9d\xb3\xd3\x39\x7a\ -\x4d\x04\x3f\x03\xa1\x96\x56\x8a\x29\x22\x84\xa3\x3b\x49\x65\x00\ -\xe1\x5d\x94\x5c\x52\x8f\x61\x04\xc0\x16\xa5\x66\xe1\x68\xc1\xf1\ -\x22\xee\x20\x0f\x99\x8b\x9f\xa0\x21\x2b\xbc\x65\x1d\xb3\x08\xfb\ -\x05\x44\x38\x9d\x13\x21\x1b\x2d\x35\x80\x51\x56\x40\x4a\xa2\xef\ -\x4f\x7b\xf2\x80\x0e\xa6\x01\xe3\x96\xa1\x83\x39\x55\x23\x5c\x1d\ -\x10\x40\xee\x37\x93\xe1\x2a\x0b\xe7\xb2\x18\xe4\xcd\x54\xd4\x50\ -\x7a\x7a\x32\x9b\xf6\x3b\x46\x25\x8b\x25\xa1\x32\xc7\x84\x4f\xa0\ -\x67\x13\x2d\x34\x4c\xc7\x80\xcc\xdc\xb0\x3b\x09\xfe\x3b\x1d\xfe\ -\x5b\x05\x06\xdb\x2a\xf8\x77\xa2\x66\xa0\x6e\xe5\xc3\x2e\x55\x8a\ -\x63\xfc\x88\x94\x1c\x10\x20\x63\x83\xc5\xc5\x27\x98\x12\xc1\x64\ -\x27\x38\x6e\xd6\x2e\x61\xbd\xb5\x53\xb6\x5c\x93\x52\x27\x3d\x39\ -\xdc\x24\xd1\x67\x9c\x64\x9c\x6e\xac\xea\x5b\xb5\xea\xc4\xb4\xf6\ -\xed\xdd\xc1\xd2\xa3\x62\x74\x5b\x84\x65\x89\xb1\x55\x89\x6d\x39\ -\x90\x08\x94\x4e\x52\xc9\x30\xe9\xf6\x3a\x82\x44\x9e\x70\x97\xc8\ -\xba\xa5\xb7\x57\x69\x10\x4b\xf8\x84\x4a\x79\x89\xd3\x32\x82\x48\ -\xbc\xbd\x4a\x72\xe9\xb6\xfb\x36\x4e\x1a\xd7\xcc\xda\x15\x0f\x97\ -\x42\x10\x0e\xe2\x75\xe5\xdc\x1d\xe2\x8e\xb4\x38\xb7\x01\xc6\xc8\ -\x1f\xaf\xa2\x2d\x54\x0e\xdf\xdd\x03\x0e\x69\x06\x4c\x7f\xbb\x84\ -\xc9\x26\x2b\x2d\x6d\x96\x07\xb4\x89\x16\x1a\x57\x17\x4c\x87\x71\ -\x4c\x65\x51\xf1\x5c\x25\xd3\x90\xd6\xa1\x96\x4b\x4d\xf0\x20\x2d\ -\xfc\x75\x9c\xe9\xa9\xab\x68\x61\x79\x37\xa2\x42\x89\xd7\xc0\x2d\ -\xb4\xcc\xcc\x38\x65\xa7\x64\xad\x79\x8a\xa0\xe7\x3d\x88\x97\x9e\ -\x06\x91\xae\xc6\x79\xe0\xaa\x04\xe5\x0b\xc1\x5a\x99\x12\xde\xf3\ -\xb8\xf6\xa6\x9e\x65\x94\x51\x76\x5a\x5f\xca\x29\x99\x12\x41\xe8\ -\x7e\xf8\x3e\x8a\xf1\x8c\x02\x9a\x57\x6e\xa8\x0f\xf5\x3e\x6d\x3a\ -\xcb\x04\x9a\xa3\x10\xe9\x27\xba\x67\x4f\xe5\x15\xe8\x37\x59\x31\ -\xe7\x0b\x41\xa5\xf7\xd8\x1b\x8c\xa3\x20\x7e\x25\xa5\x3b\x1b\x3e\ -\x15\x61\x08\xca\x31\xcb\xcc\x1c\xf7\x48\x86\x70\x4c\x21\xc5\x8d\ -\x58\xcc\x08\x77\xab\xa8\x2d\x11\x39\x16\x5b\x18\x92\x04\xd7\x0d\ -\x49\x21\x13\xcd\x4c\x74\x09\x83\x19\xff\xea\xa8\x88\xc1\x72\xbf\ -\xea\xbc\xcd\x94\xa1\x00\xf1\x31\x35\x6e\x67\x68\x43\x36\x65\x50\ -\xe1\x79\xa5\x20\x72\x17\xbc\x38\xa9\xdf\x18\x75\x9c\xc2\x98\xe9\ -\x6a\x39\x0d\x10\xba\x19\x0b\xb3\x48\xd4\x46\x96\x1f\x70\x78\xfc\ -\x28\x2d\x5e\x39\x88\x52\x19\x1b\xf6\x8a\x20\xae\x0f\x16\x48\x18\ -\x0e\x97\xd9\xbc\xe7\x61\xd7\xb2\x06\x07\x86\x0c\x69\xa3\x18\xde\ -\x0c\x78\x76\x45\x5c\xa5\xbc\x17\x7e\x32\x11\xbc\xeb\x92\xac\x33\ -\xe7\x52\xdf\x79\x5b\x90\x76\xb4\x83\xd8\x7c\x5c\xb3\xe9\xbe\x85\ -\x54\xe8\x49\x11\x76\x59\x66\x1d\xde\x6d\x15\x4f\x4e\x1d\x68\xa7\ -\x6d\x9f\x2e\xd8\xd5\xb4\x64\xf5\x7a\x45\x1c\xbd\xda\x00\x19\xec\ -\xc1\x12\xd4\xb4\x4b\xc1\xae\x60\x74\x9d\x39\x55\x53\x7a\xc2\x35\ -\xcf\xb3\x4d\x2c\x5c\x54\x3f\x1b\x71\xf4\x82\x39\x55\x73\x1e\x77\ -\xb5\xa2\xb5\x32\x32\xa2\xab\x9f\x14\x1a\x8f\xe9\x56\xcf\x0c\x27\ -\xf5\xea\xe1\xa4\x70\x5c\xbb\xd5\x46\x0b\xf8\xde\xcb\xf4\x2d\x4f\ -\x7a\x1d\xa1\x3c\xf2\x53\x6f\xe9\x09\x0b\x8d\xda\x75\x8b\x15\xc4\ -\x7b\xea\x66\x72\x83\x58\x37\x4e\x17\x57\x48\xdd\xda\xb6\x31\xea\ -\x23\x87\xd8\xd8\xac\x20\xe8\x95\x8c\x15\x6f\xb5\x89\xd1\xf6\x2b\ -\x0b\xd7\x23\xcf\xc2\xcb\x74\x0b\xf5\x1f\x86\xab\xc6\x29\x6b\xf7\ -\x25\x25\x92\x46\xa1\x7a\xea\xc7\x23\x49\xf9\x06\xaf\x6e\x66\x08\ -\x4d\xa0\xec\xc6\x57\x92\x58\x8c\x17\x50\x62\x41\x71\xb0\xc8\x68\ -\x29\x27\x05\xd3\xfb\x5a\x37\xab\xe2\x0b\xad\xa5\x57\x01\xc9\x61\ -\x7a\x46\x37\xee\x6f\xe9\xe6\xb5\x0d\x12\x3c\x66\x01\xd4\x0b\x1e\ -\x58\xa7\xf0\x7b\x37\xac\x61\x3b\xd7\xdd\x0a\x3d\x76\x17\x9d\x92\ -\xd3\x8d\x7b\xe2\x00\xa4\x59\xb4\x0b\x33\x11\x78\xbd\x9b\xac\xc2\ -\xa4\xe5\xdb\x19\xb3\x17\x9b\xd3\xab\xd8\xb1\xd8\x6d\x80\x9d\xb4\ -\x86\x5b\xf5\x6f\x70\x0a\xd9\xee\x94\xc2\xc1\x4d\x25\x1c\x12\xca\ -\xb4\x59\xdc\xee\x4f\x5e\xf2\xb1\xf3\x26\xd4\x79\x5f\x49\xb3\xa2\ -\xea\xbc\x71\x5a\x42\x0b\x7c\x8e\x41\xfa\x3b\x0f\xb0\xc6\xc3\x9b\ -\x33\x09\x43\xa9\xb5\xa2\x63\xd3\xb7\xcc\x28\x2f\x46\x56\x2d\x45\ -\x05\xa5\x2e\x4c\xc9\xa7\x09\xeb\x3a\x25\xfc\xce\xd2\x69\x00\x83\ -\x1b\x77\xb2\x46\x66\xdc\xc1\x3d\x94\x7c\xfc\xb4\x8b\x44\x96\x0a\ -\x91\x2c\x14\xc2\x11\x3d\x1b\xa1\x37\xd2\x8a\xbd\x27\xaa\x4c\xf7\ -\xc1\x93\x22\x7c\x0a\x22\x95\xba\x44\x77\xd2\x4b\x67\x6f\xce\x64\ -\x62\xd1\x7c\xed\x6c\x2e\x69\x72\xb6\xb9\x88\x98\xf2\x11\xef\xd7\ -\xce\x97\x4e\xeb\xda\x2a\x68\x52\xef\xe9\x22\x36\x3c\x5e\xb2\xd7\ -\xc7\x98\xa5\x15\x5b\x50\x1b\xd9\x56\x2d\x14\xdd\xe9\x55\x55\x08\ -\xd1\x9d\xbe\x55\xdc\x61\x4e\x97\x80\x81\x7e\x94\x9a\x81\x22\x3e\ -\x32\xdf\x75\x50\x9d\x9f\x8c\xd6\xcd\xb9\x88\xa7\x8d\x91\x69\x04\ -\x4c\xc9\xe7\x62\xc5\xf3\xc5\x13\xc3\x4c\xf2\xca\xb5\xba\x1a\x53\ -\x75\xed\xf0\x9a\x23\xbe\xb7\x10\x0b\xda\xd0\x08\x12\x9b\x87\xab\ -\xb8\xec\x7d\xad\x29\xd7\xfb\xab\x55\xed\x70\x87\x24\x8f\xf0\x63\ -\x55\xaa\xc0\x09\x12\x09\xf2\xd0\x9f\x70\x3d\x37\x69\xf4\xe9\x20\ -\x3d\x20\x8b\xdc\x7c\xcc\x6a\x79\x55\x5a\x51\x70\xd3\xd5\xe4\xa8\ -\xd4\x7c\x05\xa1\xeb\x2d\xd4\x9f\x15\x11\xcd\x21\x5c\x0b\x8c\x12\ -\x8a\xca\xb2\x26\x0f\x21\x3c\x92\x6a\xa9\x46\x25\x51\x2e\xd5\x19\ -\xc2\x71\x6d\xab\x44\x67\xbb\xc8\x0d\xed\x81\x52\x13\x8a\x0e\x23\ -\x06\xc0\x36\x9e\xf6\x93\xc7\xb3\xee\x06\x9f\x13\xd0\x3d\x85\x3e\ -\x43\x96\xea\x03\xd4\x82\x95\xf3\x7b\x85\xc9\x2c\x3a\xd1\xb3\x9a\ -\x69\x05\xd1\x70\x15\x41\x34\x15\x84\x55\xa2\xc6\x66\x38\xa8\x22\ -\x8d\xcd\x6c\x20\x40\x72\x58\x87\x2e\xb5\x8e\x37\x4b\x6b\x71\x6c\ -\xa6\x26\xa0\xe4\x61\xa6\xb4\xe9\x52\x46\xaf\x74\x5c\xf8\xbc\xed\ -\xd6\xfe\xf6\x34\x0b\x45\xea\xca\x09\xe1\xe9\x10\xc7\xa9\x65\x1c\ -\xdd\xbe\x19\x1e\xa3\x5e\x9d\x35\x1e\x2c\xff\x42\x68\x94\xfa\x11\ -\x87\xfa\xa1\x54\x6a\xd6\x2f\xd6\x67\x7d\xd2\x2c\x54\x2c\xee\x2e\ -\x64\x79\x09\x78\xae\x52\xca\x68\x25\xa4\x15\x5c\xae\xbe\x53\x00\ -\x37\x02\xfc\xfe\xbe\xd6\x5d\xfc\x6d\x71\x2a\x15\xf8\xe4\x39\xcb\ -\xb5\x4a\x19\x4c\x95\x16\x9c\x29\xca\x4d\x11\x40\x99\x7d\xf2\x71\ -\x73\x14\xd6\x11\xf1\x13\xac\xd2\x26\x9f\x16\xa0\xd3\xaa\x13\x58\ -\x37\x06\x5a\x46\x25\x46\x29\xc1\x75\x86\x7d\x60\x15\x1b\x17\xce\ -\x5a\x4a\x30\xdb\x30\x43\xaa\xb3\x47\x75\xbf\xc8\x4a\x30\xaf\xab\ -\x25\xaf\x8e\x39\xcf\x8b\x7a\x33\x07\x93\xbf\x9a\xc7\xce\x13\x72\ -\x46\x44\x32\x54\x38\x9b\x77\xc0\x43\x15\x73\xdc\xd5\xa5\x64\x51\ -\x35\xd9\x25\x65\x5e\x15\xb9\xa9\x36\x3e\xec\x12\x02\x42\x17\x1c\ -\xb8\x65\x48\x13\x3b\xa9\xfd\xb1\xdd\x91\x40\xe9\x44\x42\x92\x5d\ -\x1c\x9e\x83\x53\x31\x81\x51\x20\x59\x0e\x4a\x6d\xd4\x8a\x21\xd5\ -\x49\x86\x47\x6f\xe8\x97\x71\x94\xbb\x72\x95\x16\xb5\x40\xab\x1d\ -\x4c\x6f\xfc\xc0\x88\xc4\xa3\x44\x84\x5c\x88\x5a\x99\xe1\xf5\x1d\ -\x96\x6f\x45\x51\x44\xc0\xe9\x5e\x11\x5b\xd7\xac\xc0\x57\x54\x12\ -\x89\x63\x40\xc7\xc2\x94\xb4\xa7\x51\x49\x52\x1d\xa7\xb0\xd9\xb4\ -\x2a\x42\x03\xd9\xde\x99\x35\x4f\x5b\x8d\xfe\xb2\x1c\x8f\xbf\x51\ -\x61\xe1\x52\x45\x3a\x3d\xb3\xc2\xe4\x49\xc2\x3a\x66\x4a\x5a\x7d\ -\x7e\x37\x57\x3a\x54\x5e\x8b\x91\xe9\x32\x95\x74\x80\xde\x07\xb3\ -\x44\x94\x22\x72\x15\x84\x56\x03\xcf\xa8\x62\xae\x1b\x2b\x70\xa9\ -\x6a\xc3\x18\x55\x72\x49\x1a\x3f\xe6\xb4\x5d\xac\x14\x41\x43\x95\ -\xf2\x20\xca\x40\xdd\x61\x34\x4f\xa8\x3d\xd9\x54\x9e\xef\xe2\x61\ -\xe6\x7d\x15\xf6\x55\xc2\x37\xa6\xc6\x1d\xee\xb0\x51\x91\x06\x87\ -\xa9\xc4\x1c\x77\xb4\x5c\x13\xb7\x2e\x8a\xe6\xe9\x2b\xea\xf6\xb0\ -\xbd\x8c\x87\x6f\xb9\x7f\xba\x82\xe9\xc7\xd5\xa9\x00\x6e\xf3\x9e\ -\xbd\x46\xcf\xa8\x53\x4e\x1b\x7a\x3d\x1a\xa0\xee\x43\xa8\xbb\xc4\ -\x1c\x26\xc3\x6d\xdd\xb3\xcf\xe8\x19\x76\xc1\x0e\x4b\x0b\xf9\x28\ -\xc0\x96\x20\x8f\xc0\x5c\x57\xc3\xb7\x65\x2f\xc0\x1d\xb1\xb3\xa9\ -\x63\xc5\x8d\x94\xba\x0a\x00\xd4\x99\xa9\xf7\x24\x3d\xfc\x3a\x0e\ -\x45\x50\xc2\x7b\x65\x42\xaa\x5c\x9e\x02\x10\xb5\x0f\xa2\xdb\xac\ -\x78\xb2\x86\x5b\x80\xb4\x57\x68\x22\xe8\x2b\x96\x0a\x52\x21\xad\ -\x4c\x95\x33\x04\x9c\x20\xe0\x87\x2a\x61\xa5\xca\xb6\xe3\x51\x9a\ -\xfc\x07\x11\x32\xd4\xaa\x74\x53\x57\x0a\x65\x90\x48\xaa\x8c\xae\ -\x3e\xe3\xbb\x29\x4b\xe6\x6a\x96\x32\x3b\x65\x45\x7f\x34\x8f\x9f\ -\xc3\x89\x29\x32\x7d\x13\x0d\x6d\xa6\x88\x6e\x4e\x8a\xd6\xd7\xec\ -\x17\x59\x11\x55\x5b\x43\xf9\x10\x3d\x48\xbd\x81\x05\xdb\x98\x44\ -\x15\x4f\x05\x93\x4c\x2a\xdf\xa2\x8c\x77\x4f\x84\xbc\x67\x18\x05\ -\xa8\x3c\xe1\xd7\xf5\x62\x8f\x15\x11\x5c\x37\x35\x0f\x95\x5a\x4b\ -\x31\xec\x31\x2a\xac\xa3\x74\x65\x01\xe1\x58\xa2\x96\x59\x1c\xab\ -\x12\xd0\xf6\x66\x7b\x96\xba\xeb\x60\x32\xf1\x84\x4f\xb1\xdd\x4a\ -\x9a\x4f\x7c\x9f\x06\x8a\x33\x2e\xed\x30\xe2\xb4\x01\xeb\x68\x41\ -\x14\x55\x5c\xf4\x96\xc8\x4c\xa7\x53\xd7\xb0\x20\xcb\xed\x35\xc6\ -\x2a\x3e\x48\xb8\x09\xf1\x33\x97\x72\x9e\x07\x02\xce\xe3\x51\x23\ -\x2b\x6b\xa3\x4b\x95\x92\x51\xde\xc9\xc2\xe7\x6d\xa4\x2b\xd6\x2e\ -\x63\x8a\x87\xd6\x9c\x1b\x14\xbb\x57\x2b\xc4\x96\x27\x6d\xc8\x2c\ -\x9f\x0a\x18\x44\xd3\x99\xa7\x25\x11\xb2\x6c\x96\x2d\x17\xb3\x33\ -\xf1\xe2\xa7\x83\x38\x58\xe3\x12\xcd\x82\xa6\xf3\x40\x72\x41\x92\ -\x55\x1d\x0e\x19\x1d\xb1\x1e\xbd\x5d\x29\x46\xab\xa2\xb9\x25\x2d\ -\x1c\x92\x38\x42\xf9\x4e\x30\xd2\x93\xb5\x91\x82\x4d\x1e\x54\x79\ -\x71\x37\x6c\x65\x51\x78\x63\x4e\xe9\x78\x5f\x1f\x65\xca\x11\xd6\ -\x03\xdd\xd5\x79\x7b\xb5\xe5\xe9\xd4\xf5\x51\x1e\x2e\xf8\x9c\x5e\ -\x1f\xe5\x8d\xdb\xb9\xb4\x52\x67\x78\x0e\xf9\x04\x95\xf5\xae\x5e\ -\x8e\xbb\x24\x39\x0b\xc0\xf3\xd8\x73\x3b\x82\x61\x68\x4e\x89\x0e\ -\x55\x1e\x43\xb6\xd9\x18\xe9\x1a\x95\x2d\x4c\x46\x0b\x53\x99\xde\ -\x4c\x71\xcc\x29\xa4\xc5\x6b\x4b\x15\xbc\xaa\x97\x72\xa5\x21\xdb\ -\x1b\x75\xfc\x34\xad\x72\x50\xa4\x9b\xc7\x96\x06\x97\x0f\x71\x27\ -\x4b\x75\xd3\xb8\x14\x6f\x0d\xe2\x70\x1a\xb2\x9a\x67\xb7\x14\xbc\ -\x28\x32\x15\xa4\x41\xa2\x5d\x9b\xb7\x54\x1e\xc5\x19\x69\x36\x0f\ -\x4f\x64\x49\x3a\x74\xba\x01\x9a\xd0\xe9\xd0\xda\xeb\x9d\xf0\xfa\ -\x30\xa3\xfc\x37\x4c\x96\x72\xf8\x96\xd2\x4d\x16\x91\xd7\xbb\xe1\ -\x75\x5e\xed\x38\x08\x56\x8c\xcc\x1e\x90\x64\xca\xc1\x3f\xcc\x7d\ -\xaa\x93\x15\x96\x6e\x1f\x1c\x5c\x41\x11\x7b\x27\xb8\x78\x40\x03\ -\x36\x1f\x80\xed\x44\x31\x41\x6e\x90\xa5\x1d\xcb\xd0\xb2\x74\xa7\ -\xc5\x03\x5b\x93\x49\xe3\x0b\x1d\x5d\xa8\x8d\x8f\x9f\x1d\x18\x79\ -\xbd\x15\x5e\xe7\xe7\x8e\xe9\xd3\xda\xb0\x74\xb7\x5d\x8e\xc2\xed\ -\x65\x03\x2c\x7c\xc9\x41\xe4\xf6\x17\xa6\xed\xf5\x52\x35\x41\x03\ -\x74\xd9\x00\xa9\x1c\xb1\xe3\x2a\x02\x39\x1b\x83\x1c\xe5\x38\x43\ -\x0b\xa8\x16\x03\x5b\x4c\x1e\x7f\x47\x79\x17\xfd\x52\x8b\x95\x98\ -\x3f\x92\x11\x93\x71\xf6\x33\x2d\x74\x79\xd2\x80\x7e\xfd\x01\xc5\ -\x13\xc7\x79\x55\x62\xd1\x71\x31\x3c\x08\x76\xf9\x94\x23\x2a\x17\ -\x56\x96\xf8\xf5\x39\xad\x11\x84\xcf\x04\x84\xb3\xc1\xfe\x3f\x59\ -\x61\x11\xdd\xd4\x9b\xc1\xe5\xee\x32\x75\x4a\x67\x60\xc1\x04\xc8\ -\x18\xfc\xbe\x43\xea\x4a\x6e\xac\x95\xc5\x91\xea\x1a\x98\xd0\xe4\ -\x0e\x88\xf3\x41\xc9\x22\xd1\xae\x8a\x1b\x00\xdd\x05\xaa\x3c\x3a\ -\x6d\x8b\xf0\x58\x43\x35\x49\xf2\x8a\x01\x45\x90\x79\xb2\xa5\x81\ -\x47\xfa\xf7\x47\x47\x7b\x4a\x70\xaf\x9f\xbc\x07\x66\x6e\x57\x0d\ -\x1e\x41\xb7\xfc\x55\xb9\x4b\x50\xeb\xa8\xfa\x05\x7f\xda\x4b\xa3\ -\xb0\x78\x4d\xa6\x76\x51\xc5\x4d\xf2\x28\x26\x3e\x71\x37\xd3\x43\ -\x66\x15\x61\x77\x0a\x18\x2a\x7e\x32\x88\xc7\x52\x8b\xe5\x28\x4a\ -\xa4\x89\x51\xfc\x99\xb2\x15\x25\xcd\x02\x2c\xa9\x29\x05\xf5\x92\ -\x9c\x2b\xf7\x68\x47\x55\x59\x3c\x6d\x6e\xec\x89\x4d\xc9\xa0\x88\ -\xb9\x91\x8f\x3f\x22\xe5\x84\x76\xa0\xd2\x38\x2f\x3e\x54\x37\x22\ -\x6a\xad\x3f\x8e\xad\xc9\x38\x0e\x1b\xce\x7a\x54\x59\x37\x97\x0d\ -\xd4\x32\x8e\x88\x2c\x44\x37\x51\x9b\xc2\x9c\x96\x51\x44\x69\x6e\ -\xfb\x62\x37\xc5\x14\xc2\x27\x9b\xc3\x0f\x99\xd3\x49\x70\xa6\x18\ -\xed\xbd\xcf\x31\x37\x30\xc7\x79\x11\x91\xf2\xe2\xde\x1c\x3e\xe9\ -\x0c\xe3\xc5\x44\x61\x6f\xdc\xa9\x14\xb2\xb1\x9d\x83\xfa\x96\x4d\ -\xdb\xaf\xba\x57\xd0\xe8\xb1\x97\x45\x48\x75\xc0\xbb\x02\xb5\x77\ -\xcb\xa8\x14\xf4\xe2\x31\x52\x87\x6e\x58\xfe\x32\x75\xce\x6e\xf8\ -\x1c\x58\x75\xb2\x27\x85\xf7\x4d\xbc\x32\x8e\xab\xf3\x8a\xf0\x01\ -\xb8\x73\xbb\x03\xd6\xef\x08\xdb\xcc\x36\x6a\x04\x39\x65\x50\xab\ -\x1f\x73\x85\x50\xc7\x93\xc6\xf8\xf1\xb0\x74\x6a\x27\x8f\xe3\x8d\ -\x79\x4e\xa1\xe2\xc3\x38\x47\x76\x0c\x0c\x6e\x8c\x8e\xb5\x19\xeb\ -\x45\xcb\x5a\xd5\x53\x7d\x82\x36\x5b\x10\x39\x9e\x8a\xa7\xb2\x33\ -\xca\x71\x17\x07\x50\xc5\x57\xdd\x51\x91\x76\xc9\xc7\x74\x76\x8a\ -\xf6\xda\xa1\x99\x1a\x8c\xc5\x11\x18\x83\x38\x37\x99\x10\xe3\x77\ -\x08\x08\x89\x53\x64\x44\x00\xc4\x4e\xc2\x51\x22\x4d\x80\x09\xdd\ -\x0c\x37\xcb\x70\x76\x30\xda\xc6\x9d\x0f\x41\x91\xc3\xd1\x6e\x76\ -\x99\x05\x9b\x9d\x62\xb5\xd1\xba\xd6\x07\x25\xb1\x09\xdd\xa4\xa2\ -\x41\x5a\x18\x81\xc4\xf5\xea\xb4\xa6\x24\xda\x44\x7b\x79\xe4\xfd\ -\x2c\x4d\x77\xd3\xf2\x8b\x35\x95\xc7\xb4\x6a\x4d\x8f\xc3\x8c\x50\ -\x81\x59\xa2\xe9\x56\xe1\x82\x52\x82\x30\xb6\x95\x68\x08\x64\x37\ -\x00\xda\x0a\xce\x1f\xa8\x0a\xb9\x95\x48\x83\x77\x34\xce\x87\xee\ -\x0c\xeb\x1b\x64\x54\x55\x44\x97\x38\xbc\x5b\xdf\xab\x10\xd2\x70\ -\x04\x26\xa8\x42\x54\xe2\x74\x48\x14\x0d\x46\x5a\x9c\x0f\xa8\x3b\ -\x42\xc3\x85\xcd\x00\x79\xec\x82\xba\xf9\x44\xcf\x70\x46\xef\x92\ -\x23\xfd\x28\x4f\xaf\x8c\xba\x51\x3d\x43\xfc\x90\x6a\x58\x8f\xae\ -\x83\xc2\x4a\x29\x6d\x33\x28\x75\x0d\xce\x92\x0a\xd9\x57\x41\x5c\ -\x41\x3b\xa8\x88\xff\x1c\x9b\x4a\x3d\x00\x21\xeb\xde\x14\xdd\xda\ -\x44\x9d\x88\x23\x8c\x7e\xad\xe9\x69\x5a\xf1\xb4\x19\x8c\x9d\xd7\ -\x47\xce\x68\x7a\xb2\x88\x23\x95\xbb\x3d\xe8\xe9\x12\x4d\xf7\x1d\ -\xbe\x31\x9b\x07\x09\x94\x45\x5f\x10\x0b\xbe\x3c\x18\xe8\x92\xa8\ -\xce\x9b\xf5\x6e\xbc\x90\xe1\x3c\xcc\x96\x2a\xad\xa2\x0c\xe7\xe1\ -\xa5\x28\xd6\x63\xb6\xae\xb8\xa6\x23\x69\xa7\xc0\x30\xf7\xc8\x07\ -\xe5\x4e\x01\xad\xd5\x36\xb4\xfc\x0b\x82\x5c\x36\x93\xd9\x12\x6e\ -\x88\x86\xef\xb7\x3b\xd0\x65\xa6\x3d\xb0\x92\x94\x4c\xee\x51\x77\ -\xda\xf1\xcb\x90\xd5\xcd\xa6\xa1\xeb\x92\x7b\x06\xa3\x52\x78\xbf\ -\xee\x2b\x08\xf3\xb3\x9a\x3d\x18\x3a\xb3\x84\x19\xa2\xcc\x50\x46\ -\x7e\xd4\x53\xb2\xf7\xf4\x04\x72\x0f\xf4\xa2\x70\x5d\x13\xe0\xaa\ -\x23\x28\x79\x92\xd7\x20\xc3\xe4\xe0\x57\x59\x9b\x6c\xf4\x0c\x47\ -\x11\x5f\x84\x3b\x40\xa8\x16\x8b\xaa\x6e\xb8\x92\xd3\x53\x4b\x2d\ -\xc3\xbc\xfe\x68\xc4\xbe\x28\xca\xe1\x93\xe8\x6e\xf8\x4c\x9e\x22\ -\x1e\x3f\x2b\x9c\x92\x1d\xdc\x46\x8e\x1b\xf6\x14\xc4\xa0\x99\xea\ -\x67\x7a\x9a\x54\xd6\x3c\xc8\xf5\xa8\x07\x48\x7d\x8d\x6f\x4f\x1e\ -\x76\x2a\x30\x49\x27\xca\x43\xc0\xbd\x09\x8b\x9f\x45\x43\x46\x45\ -\xbf\x0c\x5f\x99\x78\xca\x06\xc5\xc8\x6c\x3f\xca\xd4\x17\xc4\xc6\ -\xa0\xfa\x8d\x62\xa8\x6e\xeb\x51\x27\xa0\xab\xe0\x4b\x1e\x39\x6f\ -\x82\xc9\x7d\x1b\x42\xe6\x04\xd8\x1e\x2b\xb1\xe5\xe8\xf4\xe3\x21\ -\xfa\xbc\xae\x12\xaf\x49\x24\x6b\x26\xe6\x6e\xbc\x23\x86\x1c\x2d\ -\xde\x15\x09\xa7\x4b\x5a\x55\xcc\xf1\xf8\x30\xc2\x59\x28\xfd\x4c\ -\x5c\xbd\x0e\x90\xa6\x4d\xa1\xbf\x52\xa2\xcf\x0f\xa5\x8d\x1f\x54\ -\xd9\x6f\x20\xda\x76\x6e\x86\x46\x14\x1d\xca\xb6\xd8\x50\x1c\xe1\ -\x4d\xa8\xd3\x26\x66\xe3\x09\x89\xa6\xf0\x44\x02\xb4\x8e\x96\x68\ -\x01\x8f\xd3\x6d\x15\xfd\xda\xf5\x93\x51\x2c\x2e\x8a\x61\xf1\x7a\ -\x08\x29\xaf\x66\x9f\x60\x54\x3a\x4c\x81\x3e\x32\xf0\x65\x6a\x6b\ -\x1c\xd7\xb5\x8e\xf1\x1a\x89\x71\x8c\x88\xfd\xc6\x18\x28\xed\x09\ -\xc9\x12\x59\x0b\x86\x94\xb5\x4a\x19\x3b\xce\x19\xfb\x40\x10\x38\ -\xa8\xee\x38\xd9\x4e\x64\x86\x30\x39\xed\xa0\x1c\x3e\xc3\xd4\xc9\ -\xdc\xba\x4f\xd0\x1f\x7b\x57\x6d\x96\xe5\x24\x6e\x0d\x10\x5d\x21\ -\x11\x05\xf3\xd3\xe6\xd5\xf3\x19\xac\xa3\x91\xb8\x8a\xa7\x55\xe6\ -\x7b\x67\x40\x69\xe5\xa6\x57\x3f\xf7\x44\xd1\x34\x7a\xc8\x91\x96\ -\x3e\x55\xbb\x9c\x08\xb1\xd5\x8a\xf7\x72\x15\x4f\x46\xaa\xa3\x88\ -\x8c\xbe\x2e\x44\xf4\x8b\x76\x93\x50\xe9\x8e\xa1\x22\xaf\xd0\xad\ -\x86\xcf\x96\x00\x9f\xd9\x2e\x56\xa8\xbe\x10\xf4\x43\xb6\x15\x1e\ -\x4b\x08\x0f\xfd\x36\x84\x40\x00\xe2\x19\x42\x51\x34\x76\x69\x68\ -\xc8\x52\xcb\xa4\x8e\x3d\xf4\x63\x6c\xb1\x66\x0a\x22\x59\x2b\xd7\ -\x6e\x6c\x8d\x04\x08\xf5\x11\x42\x58\x5e\xe9\xa9\x25\x49\x29\x52\ -\xbe\x54\x85\xeb\x67\x83\x95\x9e\x8d\xb9\xd7\x61\xf6\x4e\x77\x96\ -\x13\x69\xd9\x49\x24\x6a\x3f\xa3\x02\x1d\x2f\x96\x79\x89\xb1\x77\ -\xc2\xa9\x4c\xa0\x49\x27\xad\xd9\xb9\x6a\x7f\x40\x3e\xfd\xe8\x96\ -\xd9\x66\x50\xaf\x03\xd0\x8d\xb5\xf4\x0a\x64\x99\x40\x18\xcf\x5c\ -\xa1\x19\xd6\x94\x08\x60\x69\x73\x8d\x9f\x8f\xcf\xb5\x5a\x8b\x2a\ -\x0e\x62\x25\xd8\x8d\x71\xf9\x66\x85\xa4\x73\xd2\x02\x10\x8c\xe7\ -\xf1\x03\x20\xcc\x02\xf5\xdf\xcf\xd1\xab\x46\xb9\xb7\xce\x82\x4c\ -\x88\xb7\x67\xa5\xa0\xa2\x1a\x41\xa1\x7b\x3b\x0a\x1a\x62\xc7\x85\ -\x11\xc3\x45\xd0\x8f\xe9\x76\xbf\xea\xda\xbc\x72\x16\xdc\x38\xcb\ -\x71\x82\x8c\x05\xb5\x56\xb3\x13\x2f\x6a\xce\xc8\x8b\x57\x68\xd5\ -\xd3\xf9\x92\xc9\x07\x0b\x69\x11\xcb\xf0\x18\xb8\xe6\x05\x36\x2d\ -\x51\x28\x4d\x90\x5a\x2c\xf2\x8c\x53\x2c\xf3\x97\xa3\x43\xba\xed\ -\x00\x43\x0a\x57\x96\xd2\x76\x9a\xb4\x22\xf2\x2f\x31\xc4\x35\xf1\ -\x21\x62\x21\x84\xa6\x6a\x0e\x3c\x48\x37\x24\x2e\x3c\x26\xcf\x2a\ -\xa1\xbc\x5a\x54\x7c\x90\xb9\xad\x8e\x7e\x93\x43\x51\x69\x5a\x33\ -\xd1\x30\xc8\x68\xad\x94\x18\x59\x17\x1e\x40\x70\xe5\xb8\x2b\x59\ -\x2e\x30\x43\x35\x7d\xcf\x7f\x8a\x0e\x62\x78\x0e\x83\x48\x23\xdf\ -\x8e\x4d\x44\x6c\x56\xa9\x76\xdd\xac\x6b\xf3\xc0\x0c\x31\xdb\x0a\ -\x0d\x5f\x59\x1f\xae\x78\xb0\x98\xca\x5a\x04\xa6\x59\x30\x90\x53\ -\xab\x0c\x24\xaa\x69\x55\x1a\x3c\x67\xbb\x9e\xcf\xef\x0a\x8a\x0e\ -\xf0\x9e\x59\xce\x9d\xe4\x08\x1d\x20\x81\xc3\xe2\x35\x05\xe4\xa3\ -\xc9\x8d\xc7\x49\xa7\x76\x44\xcb\x7e\x33\x8c\x2e\xa0\xf6\x98\x3c\ -\x12\x3e\x9e\x20\xda\x1e\x3a\xbf\xb2\x64\x44\xd3\x45\x41\x72\x1a\ -\x1c\xbb\xa0\x5c\x09\x8f\xe6\x90\xf5\x47\x99\x82\xe9\x79\xdc\xb2\ -\x4c\x4a\x2f\x3d\x90\x70\x6c\x9a\x3c\xcb\x32\x9e\x97\x56\xd5\x5b\ -\x65\xa1\x0e\xf2\x4c\x05\x17\x26\x23\x6e\xb8\x9a\x77\x0a\x97\x66\ -\x19\x55\xc5\x46\x6f\xd9\x90\x67\x03\xca\xdd\x33\xf2\x92\x86\x20\ -\xd7\x1d\x10\x63\x8b\x4e\x0c\x91\x48\x22\x02\xf0\xb0\x4c\x8e\xee\ -\xbd\xaf\x94\x7c\xbb\x80\x95\x2f\x78\x12\x99\xa8\x79\xa1\x77\xc7\ -\x2a\xbe\x0f\xbe\xaf\x99\x17\xf7\x1b\x69\x94\xb8\x3a\xe5\xa9\x9e\ -\xd5\xb8\x3f\x74\x89\x2d\x93\x5e\x94\x7e\x51\xb8\x7e\xbd\x9f\x9e\ -\x80\x50\x74\x0a\x07\x20\xd6\xea\xa3\x8d\xd6\x22\xe0\x89\x2e\xa1\ -\xb9\x2e\x3a\x93\xf0\x20\x1e\x8f\xa0\x92\x3c\x8a\xa6\xc9\xf0\x3e\ -\x1d\xed\x94\x41\x7b\x4f\x3b\x6c\x78\x33\x40\x33\xf1\xa4\xbe\xad\ -\x78\x06\x47\x04\xd2\x2a\x30\x59\x93\xe3\xdd\xb6\x18\x60\x64\x79\ -\xab\x03\x55\xb6\xa8\x38\xf6\xb8\xc9\x2b\x7c\xc1\xee\x73\x2d\x44\ -\x39\xba\x32\x1b\xe9\x44\x23\x15\x58\xda\x12\x8f\x23\xcf\x13\xa7\ -\x1e\x25\xc4\x89\xf8\xdb\x89\x71\x22\xd9\x26\x5e\x31\x4b\x6d\x76\ -\xcb\xe2\xd8\x50\x1b\x79\xa8\xbc\x98\x2e\x85\x15\xbf\x4e\x3e\x16\ -\x7f\xaf\x7a\x62\x52\x28\xfe\x3e\xc0\xf4\x8d\xed\xdc\x5f\xd4\x6e\ -\x9d\xda\x16\x6c\x34\xe7\xe6\x70\x74\x0a\x52\xdf\x5d\x1f\xb2\xb3\ -\x12\xda\x30\x75\x3e\x3e\x9d\xfc\xea\x33\x99\xd4\x53\xe1\x8f\xa8\ -\xdb\xeb\x68\xd7\x9b\x79\x08\x2d\xaf\x4d\xf2\x72\xea\x5d\x98\xa5\ -\x8e\x3b\x01\xba\xaf\xc4\x65\xaf\xb4\xf0\x4d\x7e\xa3\xaf\x6f\x17\ -\x63\xc2\x78\xb1\x76\xb3\x70\xa4\x57\x15\xfb\xdc\x61\x67\x26\x8c\ -\xed\x49\x19\xd1\xf8\xc5\xc4\x7a\xf1\xa0\x3c\x25\x41\x1d\x12\x51\ -\x2d\xda\x2b\x9d\x2f\x75\xa4\x73\xd4\xf0\xee\x41\x24\x44\x1c\xc9\ -\x77\xe8\x98\x64\x2a\xab\x0b\x05\x80\x67\x1b\xa0\x13\xca\xc5\x2a\ -\xd8\x5d\x04\x5b\x24\x62\x63\x29\x58\x43\x03\xa1\x2e\xeb\x96\xa9\ -\xdc\x7e\x0d\xd0\x21\x08\x08\x8f\xae\x49\xce\xe6\x26\x83\x92\xab\ -\xb9\x0a\x28\x5c\xbc\x31\x50\xc7\x69\xa0\xe8\x66\x37\xda\x83\x57\ -\x4c\x04\x77\x28\x82\xcb\x50\x4a\x34\x19\xe0\x51\xa1\xdb\xb3\x73\ -\x5a\xa9\x63\x7f\x8c\x56\xf2\x04\x81\x18\x90\xa3\x35\x20\x96\xb0\ -\x4a\x92\xf0\x99\x87\x60\xac\x52\xb6\x0a\x32\xcb\x35\x38\xc9\x16\ -\x4a\x20\x02\x55\x96\x04\x61\x92\xdd\x71\x60\x9a\x85\x2e\x72\x4b\ -\xc4\xf1\x30\x84\x27\xaf\x70\xab\x02\xd2\x4d\x40\x34\x7e\xd9\xad\ -\x04\xaf\xdf\x5b\xaa\x7c\x7a\xba\x77\x18\xe3\xca\xc1\xef\xca\xae\ -\x97\x79\x7f\x54\x51\x21\x04\x97\x21\x82\x78\x27\x2e\x22\x87\xfb\ -\x4a\x7b\x86\x97\x91\x36\xe6\xdf\x07\x97\xf1\x60\x44\x0c\xe9\x55\ -\x73\x42\x3a\xce\x96\xaa\xcb\x84\x7a\x05\x05\xda\x17\x02\x8d\xc4\ -\x4a\xdc\x23\xa9\x4e\x74\xa7\x5c\x76\x3c\x7e\x67\x64\x72\x27\x8b\ -\xb4\x4e\x42\x87\x74\xa8\x54\x26\x82\xa1\xf3\x31\x66\x65\x03\x17\ -\x0d\x24\x79\x58\x4d\xd2\xa2\x26\x8c\x5c\x71\x5d\x76\x95\x85\x7d\ -\x74\x68\x35\x96\xd1\x40\x4d\x1a\xde\xc2\x30\x30\x5a\x90\x07\x58\ -\xdb\x94\x36\x2a\xa0\xdf\x33\xc1\xe8\x54\xfd\xf8\xda\xf6\x32\x26\ -\x5d\x03\xeb\x3b\x71\x80\x61\xb9\x23\x0f\x7e\x4e\x1a\x2d\x2d\x22\ -\x3a\x87\x39\x8d\x0c\x93\xb0\x92\x06\xab\xc3\x4a\x9e\xc8\x56\x4c\ -\xfe\xda\xa1\x64\x67\xc3\x0e\xfe\x6a\xac\x98\x60\xa7\x9a\x67\xa5\ -\x75\x77\xe2\x04\xc7\x64\xc7\x4e\x9d\x27\x62\x9e\x0e\x9f\xea\x68\ -\x59\xc2\x3c\x82\xc4\x95\x7f\x62\xf6\xfb\x6c\xcc\x30\xf3\x3a\xa8\ -\x49\xc1\xba\x7a\xe9\x51\xbc\x1c\x3a\x4d\xf9\xd1\x1b\x77\xa2\x19\ -\x26\x93\x99\x81\xe7\x34\x6b\x0d\x12\x27\x84\x23\xb3\xa9\x1a\x21\ -\x38\x47\xc5\xb3\x9f\x23\x92\x79\x14\x75\x47\x38\x9f\xc4\xd2\x7f\ -\xba\x15\x10\xbe\xb3\xa7\x5d\x1c\xc8\xb6\x23\x21\xbd\xaa\xaf\x43\ -\xda\xf3\x10\x6d\xdd\x25\x5a\xef\xd9\x9b\x98\x9f\x0d\x03\xd8\x37\ -\x1b\x80\x7d\x07\x04\xc0\x77\x31\xac\xa8\x0a\x60\x6f\x32\x80\xfe\ -\x98\x05\x93\x64\x7c\xa9\xb3\x9e\x34\xf7\x41\xd5\x58\x89\x2e\xcc\ -\x20\xa2\x0a\x06\x0a\x9f\xda\x78\xe9\xda\xdc\x3a\x9b\xd4\xac\x47\ -\x33\x24\xdf\x8e\x4c\xea\x92\xfc\xcc\x68\xa7\x0f\xeb\x1c\xa3\x2d\ -\x83\x70\x05\x99\x64\x50\xca\xd4\x87\x6f\xc5\x4d\xbe\xf1\x76\x4e\ -\x77\xe3\x86\xee\xbe\xd6\x87\x18\x72\xde\x66\x1f\x1e\x4a\xcd\x18\ -\x4d\x0f\x66\x02\x49\x9e\x2a\x6a\x2e\x4e\xea\x0e\x05\x6a\x3c\x8c\ -\x7b\x30\x33\x48\xce\x12\x97\x17\x2b\xc5\x13\x95\xe5\x55\x58\x18\ -\x49\x58\xf8\xae\x5d\x5c\x49\x97\x81\x47\x71\x19\x4a\x8d\x0b\x79\ -\x0f\x32\x46\xaa\xdd\xb1\xac\x3b\x8a\x49\xbd\x57\xe8\x9e\xe5\x78\ -\x22\x31\x26\x2f\xd0\xa2\xe2\xbd\x67\x19\xed\x07\x93\xbd\x56\x4b\ -\xfd\x6b\x8e\x82\x4a\x58\x08\x1c\x70\xa1\xf2\xb8\x0a\x4f\xbe\xd9\ -\x99\x4a\xc1\x74\xa3\x05\x9a\xf2\x50\xbf\x50\xf5\xef\x39\x28\x75\ -\xa9\x8a\x95\x1c\x63\x99\xdf\xa9\x44\xd2\xd6\x87\x8b\x83\x79\x03\ -\x97\x98\xb2\x36\xd1\x81\x2e\xc4\xf2\x40\x3a\x2d\x80\xce\xf4\x0f\ -\x17\x17\xb5\x8d\xa0\x72\x1b\x48\xa8\x2b\x3a\x3f\xb6\x47\xb0\x7a\ -\x69\xa4\x3c\x01\xa6\xa4\x2d\xcd\x29\x59\xe7\xc1\x62\xbb\x0b\xf4\ -\xd0\xff\x68\xa4\x48\x92\x6f\x34\xe0\x21\x19\xb9\x3f\x24\x3a\xa2\ -\xd3\x84\x4e\x90\x1b\x20\x92\xef\x68\xd4\xaf\xa3\xa0\x89\x5a\xc9\ -\xad\x54\x25\xf1\x46\x9d\x7c\x9e\x5f\x61\x13\xba\xaf\x71\xab\xb8\ -\xac\x21\xe4\x98\x8f\x62\xdc\x56\x5d\xf1\x58\xcf\xaf\x93\x8f\x85\ -\x5d\x0f\xe2\x5a\x79\x61\x12\x93\x90\x3a\x01\x64\xbf\x8a\xdf\x1c\ -\x8d\x17\xcd\x07\x97\xbc\xcb\xeb\xdd\x7b\xf8\xb9\xf8\x27\xec\x8b\ -\x86\x69\xe6\x05\x05\xec\xb4\xff\x51\xd9\x17\xf5\xbb\xe2\x5c\x76\ -\xbf\x2c\xd8\x0e\x95\x97\xf0\x9a\x31\x2a\x9c\x92\x3e\x7e\x18\x57\ -\x8f\xe9\x21\x48\xb9\xfb\x9f\x36\x42\xa9\xb3\xdf\xbd\x80\xd9\x88\ -\xf0\x79\x26\x4f\x01\x8f\x5b\x18\x05\x41\x17\xdd\x16\xe1\x14\xd9\ -\xad\xd1\xe1\x5c\x5e\x49\x4e\x71\xb8\xe0\x8a\x01\xb9\x17\x92\x82\ -\x94\x7c\x77\x3f\x5f\x07\x3c\x44\x87\x86\x9a\x47\x21\x3a\x65\x8d\ -\x68\x75\x90\x3d\xbb\xa3\xa4\xeb\xd6\xee\xf6\x3e\xd0\x92\x3b\x0c\ -\x6f\xf5\x3e\xc0\x82\x5b\x20\x8b\xe8\x58\x52\x15\x56\xab\xb8\x18\ -\x3c\x5e\x84\x55\xab\x55\xfe\xd6\x44\x4b\x7e\xf9\x96\x60\xba\xd4\ -\x24\x7a\x3c\x61\xdc\x38\xac\xea\x06\x29\x65\xb1\x47\x3b\x73\x90\ -\x53\x51\x79\x43\x91\x7e\xeb\xb9\x51\xa4\x36\xe8\xec\xd9\x9b\xf0\ -\xfb\x3e\xed\xf7\x7d\xb1\x41\xa9\xd6\x35\xd1\xc6\x43\x60\xef\xfc\ -\x05\x07\xb5\x37\xfd\xa0\xf6\xea\x48\xef\x8d\x23\xad\x7e\xad\x89\ -\xfe\x38\x84\x26\xda\x5f\x0c\xe9\x7d\x69\x91\x3e\x5a\xb8\x4e\x6a\ -\x93\x83\x1e\x48\xef\x57\xc6\xa2\x49\xdb\x13\x44\xd4\xba\x3f\x06\ -\x46\x3f\xfe\x6c\x03\x93\xf1\x73\xb1\x4b\x54\x79\xc9\xd8\x04\x84\ -\x23\xc5\xbe\x37\x98\x7a\x44\xf4\xff\x03\x15\x2c\x14\x99\ +\x1e\x00\x61\x00\x6b\x00\x74\x00\x69\x00\x76\x00\x6e\x00\xed\x00\ +\x20\x00\x70\x01\x59\x00\xed\x00\x6b\x00\x61\x00\x7a\x00\x3a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x61\x63\x74\x69\x76\x65\x20\ +\x63\x6f\x6d\x6d\x61\x6e\x64\x3a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x6e\x00\xe1\x00\x76\x00\x72\ +\x00\x68\x00\x20\x00\x70\x01\x59\x00\xed\x00\x6b\x00\x61\x00\x7a\ +\x00\x6f\x00\x76\x00\xe9\x00\x20\x00\x74\x00\x61\x00\x62\x00\x75\ +\x00\x6c\x00\x6b\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\ +\x64\x72\x61\x66\x74\x20\x43\x6f\x6d\x6d\x61\x6e\x64\x20\x42\x61\ +\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ \x00\x00\x09\x69\ \x00\ \x00\x48\x24\x78\x9c\xed\x5c\x5b\x73\xdb\xb6\x12\x7e\xf7\xaf\xc0\ @@ -37524,41 +57874,37 @@ qt_resource_name = "\ \x00\x63\ \x00\x6f\x00\x6e\x00\x63\x00\x72\x00\x65\x00\x74\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x0b\ -\x0a\xe7\xba\xdd\ -\x00\x44\ -\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x7a\x00\x68\x00\x2e\x00\x71\x00\x6d\ -\x00\x0b\ \x0a\xfc\xea\xdd\ \x00\x44\ \x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x75\x00\x6b\x00\x2e\x00\x71\x00\x6d\ \x00\x0b\ -\x0a\xf7\x7a\xdd\ -\x00\x44\ -\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x69\x00\x74\x00\x2e\x00\x71\x00\x6d\ -\x00\x0b\ -\x0a\xf2\x2a\xdd\ -\x00\x44\ -\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x6e\x00\x6f\x00\x2e\x00\x71\x00\x6d\ -\x00\x0b\ -\x0a\xcb\xca\xdd\ -\x00\x44\ -\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x66\x00\x69\x00\x2e\x00\x71\x00\x6d\ -\x00\x0b\ \x0a\xf1\xfa\xdd\ \x00\x44\ \x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x70\x00\x6c\x00\x2e\x00\x71\x00\x6d\ \x00\x0b\ -\x0a\xf7\x4a\xdd\ +\x0a\xc8\x5a\xdd\ \x00\x44\ -\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x6a\x00\x61\x00\x2e\x00\x71\x00\x6d\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x68\x00\x72\x00\x2e\x00\x71\x00\x6d\ +\x00\x0b\ +\x0a\xfe\x2a\xdd\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x72\x00\x6f\x00\x2e\x00\x71\x00\x6d\ +\x00\x0e\ +\x0b\xd2\xf9\x9d\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x7a\x00\x68\x00\x2d\x00\x54\x00\x57\x00\x2e\x00\x71\x00\x6d\ +\x00\x0b\ +\x0a\xf2\x2a\xdd\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x6e\x00\x6f\x00\x2e\x00\x71\x00\x6d\ \x00\x0b\ \x0a\xc8\x8a\xdd\ \x00\x44\ \x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x68\x00\x75\x00\x2e\x00\x71\x00\x6d\ \x00\x0b\ -\x0a\xf3\xfa\xdd\ +\x0a\xf0\x7a\xdd\ \x00\x44\ -\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x6e\x00\x6c\x00\x2e\x00\x71\x00\x6d\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x70\x00\x74\x00\x2e\x00\x71\x00\x6d\ \x00\x0b\ \x0a\xfe\x8a\xdd\ \x00\x44\ @@ -37567,30 +57913,70 @@ qt_resource_name = "\ \x0a\xfe\x8a\xdd\ \x00\x44\ \x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x73\x00\x65\x00\x2e\x00\x71\x00\x6d\ -\x00\x0b\ -\x0a\xc8\x5a\xdd\ +\x00\x0e\ +\x06\xe1\x3c\x1d\ \x00\x44\ -\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x68\x00\x72\x00\x2e\x00\x71\x00\x6d\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x65\x00\x73\x00\x2d\x00\x45\x00\x53\x00\x2e\x00\x71\x00\x6d\ \x00\x0b\ \x0a\xcd\x8a\xdd\ \x00\x44\ \x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x64\x00\x65\x00\x2e\x00\x71\x00\x6d\ +\x00\x0e\ +\x0b\xef\x49\x9d\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x7a\x00\x68\x00\x2d\x00\x43\x00\x4e\x00\x2e\x00\x71\x00\x6d\ \x00\x0b\ \x0a\xcb\x6a\xdd\ \x00\x44\ \x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x65\x00\x73\x00\x2e\x00\x71\x00\x6d\ \x00\x0b\ +\x0a\xfe\xea\xdd\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x73\x00\x6b\x00\x2e\x00\x71\x00\x6d\ +\x00\x0b\ +\x0a\xf3\xfa\xdd\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x6e\x00\x6c\x00\x2e\x00\x71\x00\x6d\ +\x00\x0b\ \x0a\xca\x5a\xdd\ \x00\x44\ \x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x66\x00\x72\x00\x2e\x00\x71\x00\x6d\ -\x00\x0b\ -\x0a\xf0\x7a\xdd\ +\x00\x0e\ +\x09\xdc\x5a\xdd\ \x00\x44\ -\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x70\x00\x74\x00\x2e\x00\x71\x00\x6d\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x73\x00\x76\x00\x2d\x00\x53\x00\x45\x00\x2e\x00\x71\x00\x6d\ +\x00\x0b\ +\x0a\xcb\xca\xdd\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x66\x00\x69\x00\x2e\x00\x71\x00\x6d\ +\x00\x0b\ +\x0a\xfc\x5a\xdd\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x74\x00\x72\x00\x2e\x00\x71\x00\x6d\ +\x00\x0b\ +\x0a\xf7\x4a\xdd\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x6a\x00\x61\x00\x2e\x00\x71\x00\x6d\ +\x00\x0b\ +\x0a\xe7\xba\xdd\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x7a\x00\x68\x00\x2e\x00\x71\x00\x6d\ +\x00\x0e\ +\x07\xec\x0b\x7d\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x70\x00\x74\x00\x2d\x00\x42\x00\x52\x00\x2e\x00\x71\x00\x6d\ +\x00\x0b\ +\x0a\xf7\x7a\xdd\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x69\x00\x74\x00\x2e\x00\x71\x00\x6d\ \x00\x0b\ \x0a\xc0\x9a\xdd\ \x00\x44\ \x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x61\x00\x66\x00\x2e\x00\x71\x00\x6d\ +\x00\x0b\ +\x0a\xcd\x6a\xdd\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x63\x00\x73\x00\x2e\x00\x71\x00\x6d\ \x00\x13\ \x02\xb7\x50\xf9\ \x00\x75\ @@ -37841,87 +58227,96 @@ qt_resource_name = "\ qt_resource_struct = "\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\x01\ -\x00\x00\x00\x10\x00\x02\x00\x00\x00\x02\x00\x00\x00\x50\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x35\x00\x00\x00\x1b\ -\x00\x00\x00\x38\x00\x02\x00\x00\x00\x05\x00\x00\x00\x16\ -\x00\x00\x00\x1a\x00\x02\x00\x00\x00\x11\x00\x00\x00\x05\ -\x00\x00\x02\x8e\x00\x01\x00\x00\x00\x01\x00\x06\x48\x2e\ -\x00\x00\x02\x02\x00\x01\x00\x00\x00\x01\x00\x05\x44\xb7\ -\x00\x00\x01\x92\x00\x00\x00\x00\x00\x01\x00\x03\x7e\x55\ -\x00\x00\x02\x56\x00\x01\x00\x00\x00\x01\x00\x05\xe1\x7a\ -\x00\x00\x02\x3a\x00\x01\x00\x00\x00\x01\x00\x05\xac\xbe\ -\x00\x00\x01\x3e\x00\x01\x00\x00\x00\x01\x00\x02\x0b\x39\ -\x00\x00\x02\x1e\x00\x01\x00\x00\x00\x01\x00\x05\x77\x8c\ +\x00\x00\x00\x10\x00\x02\x00\x00\x00\x02\x00\x00\x00\x59\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x35\x00\x00\x00\x24\ +\x00\x00\x00\x38\x00\x02\x00\x00\x00\x05\x00\x00\x00\x1f\ +\x00\x00\x00\x1a\x00\x02\x00\x00\x00\x1a\x00\x00\x00\x05\ +\x00\x00\x01\xec\x00\x01\x00\x00\x00\x01\x00\x04\x69\x9c\ +\x00\x00\x03\x4e\x00\x01\x00\x00\x00\x01\x00\x09\xf0\xb3\ +\x00\x00\x02\xbc\x00\x01\x00\x00\x00\x01\x00\x06\xed\xcd\ +\x00\x00\x03\x8c\x00\x01\x00\x00\x00\x01\x00\x0a\x6a\xd0\ +\x00\x00\x01\x06\x00\x01\x00\x00\x00\x01\x00\x01\xad\x53\ +\x00\x00\x01\x7c\x00\x01\x00\x00\x00\x01\x00\x02\xf0\x8c\ +\x00\x00\x02\xa0\x00\x01\x00\x00\x00\x01\x00\x06\xb0\xba\ +\x00\x00\x02\x4c\x00\x01\x00\x00\x00\x01\x00\x05\x73\x1c\ +\x00\x00\x02\xde\x00\x00\x00\x00\x00\x01\x00\x07\x29\xb3\ +\x00\x00\x03\xa8\x00\x00\x00\x00\x00\x01\x00\x0a\xa8\x10\ +\x00\x00\x02\x0e\x00\x01\x00\x00\x00\x01\x00\x04\xa8\x1d\ +\x00\x00\x03\x32\x00\x00\x00\x00\x00\x01\x00\x09\x7b\xc8\ +\x00\x00\x01\x98\x00\x01\x00\x00\x00\x01\x00\x03\x2f\xdc\ +\x00\x00\x00\xea\x00\x00\x00\x00\x00\x01\x00\x00\xde\x04\ +\x00\x00\x01\x60\x00\x01\x00\x00\x00\x01\x00\x02\xb4\x25\ +\x00\x00\x02\x84\x00\x01\x00\x00\x00\x01\x00\x06\x72\xdd\ +\x00\x00\x03\x16\x00\x00\x00\x00\x00\x01\x00\x08\xc7\x6b\ +\x00\x00\x03\x70\x00\x01\x00\x00\x00\x01\x00\x0a\x2d\xa3\ +\x00\x00\x02\xfa\x00\x00\x00\x00\x00\x01\x00\x07\xf9\x00\ \x00\x00\x00\xce\x00\x00\x00\x00\x00\x01\x00\x00\x0f\x03\ -\x00\x00\x02\x72\x00\x01\x00\x00\x00\x01\x00\x06\x15\x25\ -\x00\x00\x01\x5a\x00\x00\x00\x00\x00\x01\x00\x02\x3d\x77\ -\x00\x00\x01\x22\x00\x00\x00\x00\x00\x01\x00\x01\x62\xc2\ -\x00\x00\x01\xae\x00\x01\x00\x00\x00\x01\x00\x04\x2e\x7c\ -\x00\x00\x01\x76\x00\x00\x00\x00\x00\x01\x00\x02\xe8\xa4\ -\x00\x00\x01\x06\x00\x01\x00\x00\x00\x01\x00\x01\x2f\xb3\ -\x00\x00\x00\xea\x00\x00\x00\x00\x00\x01\x00\x00\x83\xee\ -\x00\x00\x01\xca\x00\x00\x00\x00\x00\x01\x00\x04\x61\xd0\ -\x00\x00\x01\xe6\x00\x01\x00\x00\x00\x01\x00\x05\x12\x9f\ +\x00\x00\x01\x22\x00\x01\x00\x00\x00\x01\x00\x01\xe9\xa9\ +\x00\x00\x01\xd0\x00\x01\x00\x00\x00\x01\x00\x04\x37\x84\ +\x00\x00\x01\xb4\x00\x00\x00\x00\x00\x01\x00\x03\x62\xe5\ +\x00\x00\x02\x68\x00\x00\x00\x00\x00\x01\x00\x05\xa7\xd8\ +\x00\x00\x01\x3e\x00\x00\x00\x00\x00\x01\x00\x02\x28\xa8\ +\x00\x00\x02\x2a\x00\x00\x00\x00\x00\x01\x00\x04\xe6\x89\ \x00\x00\x00\x4e\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x00\xb0\x00\x00\x00\x00\x00\x01\x00\x00\x06\x29\ \x00\x00\x00\x64\x00\x00\x00\x00\x00\x01\x00\x00\x01\x64\ \x00\x00\x00\x96\x00\x00\x00\x00\x00\x01\x00\x00\x04\xc4\ \x00\x00\x00\x7c\x00\x00\x00\x00\x00\x01\x00\x00\x03\x12\ -\x00\x00\x06\x02\x00\x01\x00\x00\x00\x01\x00\x07\x65\xdf\ -\x00\x00\x03\xb0\x00\x00\x00\x00\x00\x01\x00\x06\xc2\xc8\ -\x00\x00\x08\x38\x00\x01\x00\x00\x00\x01\x00\x08\x19\xa9\ -\x00\x00\x0a\x7e\x00\x01\x00\x00\x00\x01\x00\x08\xe2\xf6\ -\x00\x00\x04\xba\x00\x01\x00\x00\x00\x01\x00\x07\x02\x73\ -\x00\x00\x06\x4a\x00\x00\x00\x00\x00\x01\x00\x07\x83\x29\ -\x00\x00\x07\x5e\x00\x01\x00\x00\x00\x01\x00\x07\xdb\xc7\ -\x00\x00\x06\xbe\x00\x00\x00\x00\x00\x01\x00\x07\xac\xf8\ -\x00\x00\x08\xd2\x00\x01\x00\x00\x00\x01\x00\x08\x5a\x4a\ -\x00\x00\x0a\xce\x00\x01\x00\x00\x00\x01\x00\x08\xff\x1a\ -\x00\x00\x03\xf6\x00\x01\x00\x00\x00\x01\x00\x06\xdb\xea\ -\x00\x00\x07\x84\x00\x01\x00\x00\x00\x01\x00\x07\xe1\x8b\ -\x00\x00\x06\x24\x00\x00\x00\x00\x00\x01\x00\x07\x70\x93\ -\x00\x00\x04\x1a\x00\x01\x00\x00\x00\x01\x00\x06\xe1\x69\ -\x00\x00\x06\x92\x00\x01\x00\x00\x00\x01\x00\x07\x9b\xee\ -\x00\x00\x03\xd2\x00\x01\x00\x00\x00\x01\x00\x06\xd1\x7e\ -\x00\x00\x0a\x08\x00\x00\x00\x00\x00\x01\x00\x08\xc5\x22\ -\x00\x00\x03\x30\x00\x01\x00\x00\x00\x01\x00\x06\x9d\x12\ -\x00\x00\x05\x0a\x00\x01\x00\x00\x00\x01\x00\x07\x1d\x92\ -\x00\x00\x09\xc0\x00\x01\x00\x00\x00\x01\x00\x08\xad\xf3\ -\x00\x00\x09\xe2\x00\x01\x00\x00\x00\x01\x00\x08\xbb\x8e\ -\x00\x00\x04\xe8\x00\x00\x00\x00\x00\x01\x00\x07\x0b\x79\ -\x00\x00\x02\xfe\x00\x01\x00\x00\x00\x01\x00\x06\x95\x59\ -\x00\x00\x07\xee\x00\x01\x00\x00\x00\x01\x00\x08\x02\x7f\ -\x00\x00\x09\x2c\x00\x00\x00\x00\x00\x01\x00\x08\x6a\x92\ -\x00\x00\x05\x5e\x00\x01\x00\x00\x00\x01\x00\x07\x2f\x02\ -\x00\x00\x09\x50\x00\x00\x00\x00\x00\x01\x00\x08\x81\x45\ -\x00\x00\x07\x18\x00\x00\x00\x00\x00\x01\x00\x07\xc3\x9a\ -\x00\x00\x04\x6c\x00\x01\x00\x00\x00\x01\x00\x06\xf1\x69\ -\x00\x00\x0a\x9e\x00\x00\x00\x00\x00\x01\x00\x08\xed\xa4\ -\x00\x00\x05\xb8\x00\x00\x00\x00\x00\x01\x00\x07\x46\x41\ -\x00\x00\x03\x5c\x00\x00\x00\x00\x00\x01\x00\x06\xa5\x19\ -\x00\x00\x0a\xfe\x00\x00\x00\x00\x00\x01\x00\x09\x0a\xf3\ -\x00\x00\x09\x98\x00\x00\x00\x00\x00\x01\x00\x08\x9e\xcc\ -\x00\x00\x03\x80\x00\x01\x00\x00\x00\x01\x00\x06\xba\x39\ -\x00\x00\x08\x5a\x00\x01\x00\x00\x00\x01\x00\x08\x22\x52\ -\x00\x00\x0a\x2e\x00\x01\x00\x00\x00\x01\x00\x08\xcd\xaf\ -\x00\x00\x05\xe0\x00\x01\x00\x00\x00\x01\x00\x07\x58\x80\ -\x00\x00\x06\xf0\x00\x01\x00\x00\x00\x01\x00\x07\xb9\xe9\ -\x00\x00\x08\xb0\x00\x00\x00\x00\x00\x01\x00\x08\x45\xb9\ -\x00\x00\x04\x90\x00\x01\x00\x00\x00\x01\x00\x06\xf8\x32\ -\x00\x00\x07\x3e\x00\x01\x00\x00\x00\x01\x00\x07\xd5\x52\ -\x00\x00\x05\x3e\x00\x01\x00\x00\x00\x01\x00\x07\x29\x83\ -\x00\x00\x08\xfc\x00\x01\x00\x00\x00\x01\x00\x08\x60\xbf\ -\x00\x00\x07\xc6\x00\x01\x00\x00\x00\x01\x00\x07\xf7\x0d\ -\x00\x00\x08\x10\x00\x01\x00\x00\x00\x01\x00\x08\x09\xd3\ -\x00\x00\x0a\x54\x00\x01\x00\x00\x00\x01\x00\x08\xd8\x74\ -\x00\x00\x09\x74\x00\x01\x00\x00\x00\x01\x00\x08\x94\x1c\ -\x00\x00\x04\x3c\x00\x01\x00\x00\x00\x01\x00\x06\xe9\x47\ -\x00\x00\x07\xa6\x00\x00\x00\x00\x00\x01\x00\x07\xe7\x3b\ -\x00\x00\x05\x8c\x00\x00\x00\x00\x00\x01\x00\x07\x36\xe7\ -\x00\x00\x06\x72\x00\x01\x00\x00\x00\x01\x00\x07\x92\x7a\ -\x00\x00\x08\x7e\x00\x00\x00\x00\x00\x01\x00\x08\x29\xa3\ -\x00\x00\x02\xaa\x00\x01\x00\x00\x00\x01\x00\x06\x7b\xb1\ -\x00\x00\x02\xd6\x00\x01\x00\x00\x00\x01\x00\x06\x85\x1e\ +\x00\x00\x07\x1c\x00\x01\x00\x00\x00\x01\x00\x0c\x5c\x8f\ +\x00\x00\x04\xca\x00\x00\x00\x00\x00\x01\x00\x0b\xb9\x78\ +\x00\x00\x09\x52\x00\x01\x00\x00\x00\x01\x00\x0d\x10\x59\ +\x00\x00\x0b\x98\x00\x01\x00\x00\x00\x01\x00\x0d\xd9\xa6\ +\x00\x00\x05\xd4\x00\x01\x00\x00\x00\x01\x00\x0b\xf9\x23\ +\x00\x00\x07\x64\x00\x00\x00\x00\x00\x01\x00\x0c\x79\xd9\ +\x00\x00\x08\x78\x00\x01\x00\x00\x00\x01\x00\x0c\xd2\x77\ +\x00\x00\x07\xd8\x00\x00\x00\x00\x00\x01\x00\x0c\xa3\xa8\ +\x00\x00\x09\xec\x00\x01\x00\x00\x00\x01\x00\x0d\x50\xfa\ +\x00\x00\x0b\xe8\x00\x01\x00\x00\x00\x01\x00\x0d\xf5\xca\ +\x00\x00\x05\x10\x00\x01\x00\x00\x00\x01\x00\x0b\xd2\x9a\ +\x00\x00\x08\x9e\x00\x01\x00\x00\x00\x01\x00\x0c\xd8\x3b\ +\x00\x00\x07\x3e\x00\x00\x00\x00\x00\x01\x00\x0c\x67\x43\ +\x00\x00\x05\x34\x00\x01\x00\x00\x00\x01\x00\x0b\xd8\x19\ +\x00\x00\x07\xac\x00\x01\x00\x00\x00\x01\x00\x0c\x92\x9e\ +\x00\x00\x04\xec\x00\x01\x00\x00\x00\x01\x00\x0b\xc8\x2e\ +\x00\x00\x0b\x22\x00\x00\x00\x00\x00\x01\x00\x0d\xbb\xd2\ +\x00\x00\x04\x4a\x00\x01\x00\x00\x00\x01\x00\x0b\x93\xc2\ +\x00\x00\x06\x24\x00\x01\x00\x00\x00\x01\x00\x0c\x14\x42\ +\x00\x00\x0a\xda\x00\x01\x00\x00\x00\x01\x00\x0d\xa4\xa3\ +\x00\x00\x0a\xfc\x00\x01\x00\x00\x00\x01\x00\x0d\xb2\x3e\ +\x00\x00\x06\x02\x00\x00\x00\x00\x00\x01\x00\x0c\x02\x29\ +\x00\x00\x04\x18\x00\x01\x00\x00\x00\x01\x00\x0b\x8c\x09\ +\x00\x00\x09\x08\x00\x01\x00\x00\x00\x01\x00\x0c\xf9\x2f\ +\x00\x00\x0a\x46\x00\x00\x00\x00\x00\x01\x00\x0d\x61\x42\ +\x00\x00\x06\x78\x00\x01\x00\x00\x00\x01\x00\x0c\x25\xb2\ +\x00\x00\x0a\x6a\x00\x00\x00\x00\x00\x01\x00\x0d\x77\xf5\ +\x00\x00\x08\x32\x00\x00\x00\x00\x00\x01\x00\x0c\xba\x4a\ +\x00\x00\x05\x86\x00\x01\x00\x00\x00\x01\x00\x0b\xe8\x19\ +\x00\x00\x0b\xb8\x00\x00\x00\x00\x00\x01\x00\x0d\xe4\x54\ +\x00\x00\x06\xd2\x00\x00\x00\x00\x00\x01\x00\x0c\x3c\xf1\ +\x00\x00\x04\x76\x00\x00\x00\x00\x00\x01\x00\x0b\x9b\xc9\ +\x00\x00\x0c\x18\x00\x00\x00\x00\x00\x01\x00\x0e\x01\xa3\ +\x00\x00\x0a\xb2\x00\x00\x00\x00\x00\x01\x00\x0d\x95\x7c\ +\x00\x00\x04\x9a\x00\x01\x00\x00\x00\x01\x00\x0b\xb0\xe9\ +\x00\x00\x09\x74\x00\x01\x00\x00\x00\x01\x00\x0d\x19\x02\ +\x00\x00\x0b\x48\x00\x01\x00\x00\x00\x01\x00\x0d\xc4\x5f\ +\x00\x00\x06\xfa\x00\x01\x00\x00\x00\x01\x00\x0c\x4f\x30\ +\x00\x00\x08\x0a\x00\x01\x00\x00\x00\x01\x00\x0c\xb0\x99\ +\x00\x00\x09\xca\x00\x00\x00\x00\x00\x01\x00\x0d\x3c\x69\ +\x00\x00\x05\xaa\x00\x01\x00\x00\x00\x01\x00\x0b\xee\xe2\ +\x00\x00\x08\x58\x00\x01\x00\x00\x00\x01\x00\x0c\xcc\x02\ +\x00\x00\x06\x58\x00\x01\x00\x00\x00\x01\x00\x0c\x20\x33\ +\x00\x00\x0a\x16\x00\x01\x00\x00\x00\x01\x00\x0d\x57\x6f\ +\x00\x00\x08\xe0\x00\x01\x00\x00\x00\x01\x00\x0c\xed\xbd\ +\x00\x00\x09\x2a\x00\x01\x00\x00\x00\x01\x00\x0d\x00\x83\ +\x00\x00\x0b\x6e\x00\x01\x00\x00\x00\x01\x00\x0d\xcf\x24\ +\x00\x00\x0a\x8e\x00\x01\x00\x00\x00\x01\x00\x0d\x8a\xcc\ +\x00\x00\x05\x56\x00\x01\x00\x00\x00\x01\x00\x0b\xdf\xf7\ +\x00\x00\x08\xc0\x00\x00\x00\x00\x00\x01\x00\x0c\xdd\xeb\ +\x00\x00\x06\xa6\x00\x00\x00\x00\x00\x01\x00\x0c\x2d\x97\ +\x00\x00\x07\x8c\x00\x01\x00\x00\x00\x01\x00\x0c\x89\x2a\ +\x00\x00\x09\x98\x00\x00\x00\x00\x00\x01\x00\x0d\x20\x53\ +\x00\x00\x03\xc4\x00\x01\x00\x00\x00\x01\x00\x0b\x72\x61\ +\x00\x00\x03\xf0\x00\x01\x00\x00\x00\x01\x00\x0b\x7b\xce\ " def qInitResources(): diff --git a/src/Mod/Draft/Makefile.am b/src/Mod/Draft/Makefile.am index f93f64cfe..de7bfaab4 100644 --- a/src/Mod/Draft/Makefile.am +++ b/src/Mod/Draft/Makefile.am @@ -100,8 +100,8 @@ EXTRA_DIST = \ Resources/translations/Draft_af.ts \ Resources/translations/Draft_de.qm \ Resources/translations/Draft_de.ts \ - Resources/translations/Draft_es.qm \ - Resources/translations/Draft_es.ts \ + Resources/translations/Draft_es-ES.qm \ + Resources/translations/Draft_es-ES.ts \ Resources/translations/Draft_fi.qm \ Resources/translations/Draft_fi.ts \ Resources/translations/Draft_fr.qm \ @@ -120,16 +120,26 @@ EXTRA_DIST = \ Resources/translations/Draft_no.ts \ Resources/translations/Draft_pl.qm \ Resources/translations/Draft_pl.ts \ - Resources/translations/Draft_pt.qm \ - Resources/translations/Draft_pt.ts \ + Resources/translations/Draft_pt-BR.qm \ + Resources/translations/Draft_pt-BR.ts \ Resources/translations/Draft_ru.qm \ Resources/translations/Draft_ru.ts \ - Resources/translations/Draft_se.qm \ - Resources/translations/Draft_se.ts \ + Resources/translations/Draft_sv-SE.qm \ + Resources/translations/Draft_sv-SE.ts \ Resources/translations/Draft_uk.qm \ Resources/translations/Draft_uk.ts \ - Resources/translations/Draft_zh.qm \ - Resources/translations/Draft_zh.ts \ + Resources/translations/Draft_zh-CN.qm \ + Resources/translations/Draft_zh-CN.ts \ + Resources/translations/Draft_zh-TW.qm \ + Resources/translations/Draft_zh-TW.ts \ + Resources/translations/Draft_cs.qm \ + Resources/translations/Draft_cs.ts \ + Resources/translations/Draft_sk.qm \ + Resources/translations/Draft_sk.ts \ + Resources/translations/Draft_tr.qm \ + Resources/translations/Draft_tr.ts \ + Resources/translations/Draft_ro.qm \ + Resources/translations/Draft_ro.ts \ Resources/ui/userprefs-base.ui \ Resources/ui/userprefs-import.ui diff --git a/src/Mod/Draft/Resources/Draft.qrc b/src/Mod/Draft/Resources/Draft.qrc index c2ac4a36d..b20d9cd0a 100644 --- a/src/Mod/Draft/Resources/Draft.qrc +++ b/src/Mod/Draft/Resources/Draft.qrc @@ -60,21 +60,26 @@ patterns/square.svg translations/Draft_af.qm translations/Draft_de.qm - translations/Draft_es.qm translations/Draft_fi.qm translations/Draft_fr.qm translations/Draft_it.qm translations/Draft_nl.qm translations/Draft_no.qm translations/Draft_ru.qm - translations/Draft_se.qm translations/Draft_uk.qm translations/Draft_pl.qm - translations/Draft_pt.qm translations/Draft_hr.qm - translations/Draft_zh.qm translations/Draft_ja.qm translations/Draft_hu.qm + translations/Draft_tr.qm + translations/Draft_sv-SE.qm + translations/Draft_zh-TW.qm + translations/Draft_pt-BR.qm + translations/Draft_cs.qm + translations/Draft_sk.qm + translations/Draft_es-ES.qm + translations/Draft_zh-CN.qm + translations/Draft_ro.qm ui/userprefs-base.ui ui/userprefs-import.ui diff --git a/src/Mod/Draft/Resources/translations/Draft_af.qm b/src/Mod/Draft/Resources/translations/Draft_af.qm index 034a42f69..d83d7a47d 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_af.qm and b/src/Mod/Draft/Resources/translations/Draft_af.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_af.ts b/src/Mod/Draft/Resources/translations/Draft_af.ts index 73575b642..4471bb7b0 100644 --- a/src/Mod/Draft/Resources/translations/Draft_af.ts +++ b/src/Mod/Draft/Resources/translations/Draft_af.ts @@ -4,12 +4,12 @@ Draft_AddPoint - + Add Point Voeg by nuwe punt - + Adds a point to an existing wire/bspline Voeg 'n punt by 'n bestaande draad/bspline @@ -17,12 +17,12 @@ Draft_AddToGroup - + Adds the selected object(s) to an existing group Voeg die geselekteerde voorwerp(e) by 'n bestaande groep - + Add to group... Voeg by groep ... @@ -30,12 +30,12 @@ Draft_ApplyStyle - + Apply Current Style Pas huidige styl toe - + Applies current line width and color to selected objects Wend aan huidige lynbreedte en kleur op gekose voorwerpe @@ -43,25 +43,38 @@ Draft_Arc - + Arc Boog - + Creates an arc. CTRL to snap, SHIFT to constrain Skep 'n boog. CTRL vas te heg, SHIFT om vas te hou + + Draft_Array + + + Array + Array + + + + Creates a polar or rectangular array from a selected object + Creates a polar or rectangular array from a selected object + + Draft_BSpline - + B-Spline B-Kurwe - + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain Skep 'n veelvuldige-punt kurwe. CTRL om vas te heg, SHIFT om vas te hou @@ -69,25 +82,38 @@ Draft_Circle - + Circle Sirkel - + Creates a circle. CTRL to snap, ALT to select tangent objects Skep 'n sirkel. CTRL om vas te heg, ALT om raaklyn voorwerpe te kies + + Draft_Clone + + + Clone + Clone + + + + Clones the selected object(s) + Clones the selected object(s) + + Draft_CloseLine - + Close Line Maak lyn toe - + Closes the line being drawn Maak die huidige lyn toe @@ -95,12 +121,12 @@ Draft_DelPoint - + Remove Point Verwyder punt - + Removes a point from an existing wire or bspline Verwyder 'n punt van 'n bestaande draadwerk of bspline @@ -108,12 +134,12 @@ Draft_Dimension - + Dimension Dimensioneer - + Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment Skep 'n dimensie. CTRL om vas te het, SHIFT om vas te hou, ALT om 'n segment te kies @@ -121,25 +147,33 @@ Draft_Downgrade - + Downgrade Gradeer neer - + Explodes the selected objects into simpler objects, or subtract faces Fragmenteer die geselekteerde voorwerpe na eenvoudiger voorwerpe, of verwyder vlakke + + Draft_Draft2Sketch + + + Draft to Sketch + Draft to Sketch + + Draft_Drawing - + Drawing Tekening - + Puts the selected objects on a Drawing sheet. Sit die gekose voorwerpe op 'n tekenblad. @@ -147,12 +181,12 @@ Draft_Edit - + Edit Wysig - + Edits the active object Wysig die aktiewe voorwerp @@ -160,12 +194,12 @@ Draft_FinishLine - + Finish line Beëindig lyn - + Finishes a line without closing it Beëindig lyn sonder om toe te maak @@ -173,12 +207,12 @@ Draft_Line - + Line Lyn - + Creates a 2-point line. CTRL to snap, SHIFT to constrain Dit skep 'n 2-punt lyn. CTRL om vas te heg, SHIFT vas te hou @@ -186,12 +220,12 @@ Draft_Move - + Move Verskuif - + Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy Beweeg die gekose voorwerpe tussen 2 punte. CTRL om vas te heg, SHIFT om vas te hou, ALT om te kopieer @@ -199,25 +233,38 @@ Draft_Offset - + Offset Verplasing - + Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy Verplaas die aktiewe voorwerp. CTRL om vas te heg, SHIFT om vas te hou, ALT om te kopieer + + Draft_Point + + + Point + Punt + + + + Creates a point object + Creates a point object + + Draft_Polygon - + Polygon Veelhoek - + Creates a regular polygon. CTRL to snap, SHIFT to constrain Skep 'n gelykhoekige veelhoek. CTRL om vas te heg, SHIFT om vas te hou @@ -225,12 +272,12 @@ Draft_Rectangle - + Rectangle Reghoek - + Creates a 2-point rectangle. CTRL to snap Skep 'n 2-punt reghoek. CTRL om vas te heg @@ -238,12 +285,12 @@ Draft_Rotate - + Rotate Roteer - + Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy Roteer die gekose objekte. CTRL om vas te heg, SHIFT om vas te hou, ALT om te kopieer @@ -251,12 +298,12 @@ Draft_Scale - + Scale Skaal - + Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy Skaal die gekose objekte van 'n basispunt. CTRL om vas te hou, SHIFT om vas te hou, ALT om te kopieer @@ -264,12 +311,12 @@ Draft_SelectGroup - + Select group Kies groep - + Selects all objects with the same parents as this group Kies al die voorwerpe met die dieselfde ouers as hierdie groep @@ -277,12 +324,12 @@ Draft_SelectPlane - + SelectPlane KiesVlak - + Select a working plane for geometry creation Kies 'n werkende vliegtuig vir geometrieskepping @@ -290,25 +337,43 @@ Draft_Shape2DView - + Shape 2D view Vorm 2D aansig - + Creates Shape 2D views of selected objects Skep vorm 2D aansigte van die gekose voorwerpe + + + Convert bidirectionally between Draft and Sketch objects + Convert bidirectionally between Draft and Sketch objects + + + + Draft_ShowSnapBar + + + Show Snap Bar + Show Snap Bar + + + + Shows Draft snap toolbar + Shows Draft snap toolbar + Draft_Text - + Text Teks - + Creates an annotation. CTRL to snap Skep 'n aantekening. CTRL om vas te heg @@ -316,12 +381,12 @@ Draft_ToggleConstructionMode - + Toggle construcion Mode Skakel Konstruksiemodus aan/af - + Toggles the Construction Mode for next objects. Skakel konstruksiemodus aan/af vir die volgende voorwerpe. @@ -329,12 +394,12 @@ Draft_ToggleContinueMode - + Toggle continue Mode Wissel voortsettingsmodus - + Toggles the Continue Mode for next commands. Wissel die voortsettingsmodus vir die volgende bevele. @@ -342,25 +407,51 @@ Draft_ToggleDisplayMode - + Toggle display mode Wissel voorkomsmodus - + Swaps display mode of selected objects between wireframe and flatlines Verander vertoning van gekose voorwerpe tussen draadmodel en plat lyne + + Draft_ToggleGrid + + + Toggle Grid + Toggle Grid + + + + Toggles the Draft gid on/off + Toggles the Draft gid on/off + + + + Draft_ToggleSnap + + + Toggle snap + Toggle snap + + + + Toggles Draft snap on or off + Toggles Draft snap on or off + + Draft_Trimex - + Trimex Trimex - + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts Knip of rek die gekose voorwerp, of strek 'n enkele vlak. CTRL heg, SHIFT beperk tot huidige segment of tot die normaallyn, ALT keer om @@ -368,12 +459,12 @@ Draft_UndoLine - + Undo last segment Herstel die laaste segment - + Undoes the last drawn segment of the line being drawn Herstel die laaste getekende lynsegment @@ -381,12 +472,12 @@ Draft_Upgrade - + Upgrade Opgradeer - + Joins the selected objects into one, or converts closed wires to filled faces, or unite faces Smelt die gekose voorwerpe saam in een, of verander geslote drade in gevulde vlakke, of verenig vlakke @@ -394,25 +485,25 @@ Draft_Wire - - Wire - Draad + + DWire + DWire - - Creates a multiple-point wire. CTRL to snap, SHIFT to constrain - Skep 'n veelvuldige-punt draad. CTRL vas te heg, SHIFT om vas te hou + + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain Draft_WireToBSpline - + Wire to BSpline Draadwerk na Bspline - + Converts between Wire and BSpline Wissel tussen Draadwerk en BSpline @@ -425,137 +516,137 @@ Algemene tekeninginstellings - + Default color Versuimkleur - + the default color for new objects die versuimkleur vir nuwe voorwerpe - + Default linewidth - Versuim lynwydte + Versuimlynwydte - + the default linewidth for new objects die versuimlynwydte vir nuwe voorwerpe - + Snap color Vashegkleur - + the default color for snap symbols die versuimkleur vir vashegsimbole - + Construction color Konstruksiekleur - + This is the default color for objects being drawn while in construction mode. Dit is die versuimkleur vir voorwerpe wat geteken word in konstruksiemodus. - + This is the default group name for construction geometry Dit is die versuim groepnaam vir die konstruksiegeometrie - + Construction Konstruksie - + check this if you want to use the color/linewidth from the toolbar as default Kontroleer hierdie as jy die kleur/lynwydte wil gebruik van die nutsbalk as standaard - + Save current color and linewidth across sessions Spaar die huidige kleur en lynwydte vir alle sessies - + If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode As dit gekies is, sal kopiemodus behou word in alle bevele, anders sal bevele altyd begin in geen-kopie modus - + Global copy mode Globale kopiemodus - + If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. As dit gekies is, sal jy altyd vas heg aan bestaande voorwerpe terwyl jy teken. Indien nie, sal jy slegs vas heg wanneer jy CTRL druk. - + If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe As dit gekies is, sal voorwerpe gevul voorkom in die versuimtoestand. Andersins sal dit vertoon as 'n draadmodel - + Fill objects by default Vul voorwerpe van die begin - + Default working plane Versuim werkvlak - + None Geen - + XY (Top) XY (Bo-aansig) - + XZ (Front) XZ (Vooraansig) - + YZ (Side) YZ (Sy-aansig) - + The number of decimals in internal coordinates operations (for ex. 3 = 0.001) Die aantal desimale in interne koördinaatberekeninge (bv. 3 = 0,001) - + Default text height Versuim skrifhoogte - + Default height for texts and dimensions Versuimhoogte vir skrif en dimensies - + Default text font Versuimskrif - + This is the default font name for all Draft texts and dimensions. It can be a font name such as "Arial", a default style such as "sans", "serif" or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style @@ -563,22 +654,22 @@ such as "Arial:Bold" Hierdie is die versuim skrifnaam vir alle tekeningtekste en dimensies. Dit kan 'n skrifnaam soos "Arial", 'n versuimstyl soos "sans", "serif" of "mono", of 'n familie soos "Arial, Helvetica, sans" of 'n naam met 'n styl soos "Arial:Bold" wees - + Arial Arial - + Default template sheet Versuim standaardblad - + The default template to use when creating a new drawing sheet Die versuim standaard om te gebruik wanneer 'n nuwe tekenblad geskep word - + Import style Invoerstyl @@ -590,17 +681,17 @@ If color mapping is choosed, you must choose a color mapping file containing a t Dit is die gekose metode vir die invoer of verwerking van DXF voorwerpkleur na FreeCAD. Indien kleurkartering gekies is,moet jy 'n kleurkarteringslêer kies wat 'n verwerkingstabel bevat wat die kleure sal verander na lynwydtes. - + None (fastest) Geen (vinnigste) - + Use default color and linewidth Gebruik versuimkleur en versuimlynwydte - + Original color and linewidth Oorspronklike kleur en lynwydte @@ -610,52 +701,52 @@ If color mapping is choosed, you must choose a color mapping file containing a t Kleur gekoppel aan lynwydte - + if this is checked, paper space objects will be imported too indien dit gekies is, sal papierruimte voorwerpe ook ingevoer word - + Import layouts Voer uitlegte in - + if this is unchecked, texts/mtexts won't be imported as dit afgeskakel is, sal tekste/mtekste nie ingevoer word nie - + Color mapping file Kleurkarteringslêer - + The color mapping file for translating dxf colors into linewidths Die kleurkarteringslêer vir die transformasie van DXF kleure na lynwydtes - + Max Spline Segment Maks Komplekse Lyn Segment - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Wanneer komplekse lyne eksporteer word na DXF, word hulle omskep in veelvuldige lynsegmente. Hierdie waarde is die maksimum lengte van elkeen van hierdie lynsegmente. Indien 0, word die oorspronklike komplekse lyn beskou as 'n reguit segment. - + This is the method choosed for importing SVG object color into FreeCAD. Hierdie is die gekose metode vir die invoer van SVG voorwerpkleur na FreeCAD. - + Check this if you want the areas (3D faces) to be imported too. Kontroleer hierdie as jy die areas (3D vlakke) wil invoer. - + Import OCA areas Voer OCA areas in @@ -665,83 +756,83 @@ If color mapping is choosed, you must choose a color mapping file containing a t Algemene instellings - + Construction group name Konstruksie groepnaam - + Tolerance Toleransie - + This is the value used by functions that use a tolerance. Values with differences below this value will be treated as same. Dit is die waarde wat gebruik word deur funksies wat gebruik maak van 'n toleranswaarde. Waardes met verskille onder hierdie waarde sal behandel word as dieselfde. - + Dimensions & Leader arrow style Dimensies- & Leierpylstyl - + Dot 5 Punt 5 - + Dot 7 Punt 7 - + Dot 9 Punt 9 - + Circle 5 Sirkel 5 - + Circle 7 Sirkel 7 - + Circle 9 Sirkel 9 - + Slash 5 Skuinsstreep 5 - + Slash 7 Skuinsstreep 7 - + Slash 9 Skuinsstreep 9 - + Backslash 5 Trustreep 5 - + Backslash 7 Trustreep 7 - + Backslash 9 Trustreep 9 @@ -756,948 +847,1148 @@ Values with differences below this value will be treated as same. DXF formaatopsies - + Import texts and dimensions Voer teks and dimensies in - + Check this if you want the non-named blocks (beginning with a *) to be imported too Merk dit indien jy die blokke sonder naam (wat begin met a*) ook wil invoer - + Import *blocks Invoer *blokke - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Indien gemerk, sal Freecad probeer om samevallende voorwerpe te verenig in 'n draadwerk. Dit kan 'n rukkie neem ... - + Join geometry Verenig voorwerpe - + SVG format options SVG-formaatopsies - + OCA format options OCA formaatopsies - + Alternate SVG Patterns location Wissel SVG Patrone ligging - + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns - Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns + Hier kan jy 'n vouer spesifiseer wat SVG-lêers bevat wat <pattern> definisies bevat wat tot die standaard Skets-mosaïekpatrone gevoeg kan word - + Draft interface mode - Draft interface mode + Skets koppelvlakmodus - + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction - This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction + Hierdie is die gebruikerskoppelvlak waarin die Tekenmodule sal werk: Nutsbalkmodus sal alle Tekeninstellings in 'n aparte nutsbalk plaas, terwyl taakbalkmodus die FreeCAD Taakaansigstelsel sal gebruik vir alle gebruiker interaksie - + Toolbar - Toolbar + Nutsbalk - + Taskview - Taskview + Taakaansig - + Constrain mod - Constrain mod + Beperkte verandering - + The Constraining modifier key - The Constraining modifier key + Die Beperkende veranderingssleutel - + shift shift - + ctrl ctrl - + alt alt - + Snap mod - Snap mod + Kleef verandering - + The snap modifier key - The snap modifier key + Die kleef veranderingssleutel - + Alt mod - Alt mod + Alt verandering - + The alt modifier key - The alt modifier key + Die alt veranderingssleutel - + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. - Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. + Gewoonlik, na kopiëring van voorwerpe, word die kopieë gemerk. Indien hierdie opsie gekies is, word die oorspronklike voorwerpe gemerk. - + Select base objects after copying - Select base objects after copying + Merk/kies die oorspronklike voorwerpe na kopiëring - + Always snap to objects (disable snap mod key) - Always snap to objects (disable snap mod key) + Kleef altyd aan voorwerpe (deaktiveer kleef veranderingssleutel) - + The radius for snapping to special points. Set to 0 for no distance (infinite) - The radius for snapping to special points. Set to 0 for no distance (infinite) + Die radius om te kleef aan spesiale punte. Stel 0 vir geen afstand (oneindig) - + Snap range - Snap range + Kleefradius - + px px - + If checked, a grid will appear when drawing - If checked, a grid will appear when drawing + Indien gekies, sal 'n ruitnet verskyn wanneer geteken word - + Use grid - Use grid + Gebruik ruitnet - + Grid spacing - Grid spacing + Ruitnet spasiëring - + The spacing between each grid line - The spacing between each grid line + Die spasiëring tussen elke ruitlyn - + Main lines every - Main lines every + Hooflyne elke - + Mainlines will be drawn thicker. Specify here how many squares between mainlines. - Mainlines will be drawn thicker. Specify here how many squares between mainlines. + Hooflyne sal dikker wees. Spesifiseer hier hoeveel ruite tussen hooflyne. - + Internal precision level - Internal precision level + Interne presisievlak - + Dimensions precision level - Dimensions precision level + Dimensie presisievlak - + Vertical dimensions text orientation - Vertical dimensions text orientation + Vertikale dimensie teksoriëntasie - + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. - This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. + Hierdie is die oriëntasie van die dimensietekste wanneer daardie dimensies vertikaal is. Verstek is links, wat ook die ISO-standaard is. - + Left (ISO standard) - Left (ISO standard) + Links (ISO-standaard) - + Right - Right + Regs Create parametric objects - Create parametric objects + Skep parametriese voorwerpe - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable - if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable + indien dit gemerk is, sal voorwerpe van dieselfde lae saamgevoeg word tot tekenblokke, wat die vertoonspoed verbeter, maar hulle minder wysigbaar maak - + Group layers into blocks - Group layers into blocks + Groepeer lae in blokke - + If this is checked, all objects containing faces will be exported as 3d polyfaces - If this is checked, all objects containing faces will be exported as 3d polyfaces + Indien dit gemerk is, sal alle voorwerpe wat vlakke het uitgevoer word as 3D veelvlakke - + Export 3D objects as polyface meshes - Export 3D objects as polyface meshes + Voer 3D-voorwerpe uit as veelvlakmase + + + + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + + + + Hide Draft workbench + Hide Draft workbench + + + + If this is checked, snapping will not occur against objects with more than the indicated number of edges + If this is checked, snapping will not occur against objects with more than the indicated number of edges + + + + Snap maximum + Snap maximum + + + + Maximum number of edges to be considered for snapping + Maximum number of edges to be considered for snapping + + + + Maximum number of edges + Maximum number of edges + + + + If checked, the Snap toolbar will be shown whenever you use snapping + If checked, the Snap toolbar will be shown whenever you use snapping + + + + Show Draft Snap toolbar + Show Draft Snap toolbar + + + + Hide Draft snap toolbar after use + Hide Draft snap toolbar after use + + + + if checked, a widget indicating the current working plane orientation appears during drawing operations + if checked, a widget indicating the current working plane orientation appears during drawing operations + + + + Show Working Plane tracker + Show Working Plane tracker + + + + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + + + + Always show + Always show + + + + Create Sketches + Create Sketches + + + + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + + + + Use standard font size for texts + Use standard font size for texts + + + + If this is checked, hatches will be converted into simple wires + If this is checked, hatches will be converted into simple wires + + + + Import hatch boundaries as wires + Import hatch boundaries as wires + + + + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + + + + Render polylines with width + Render polylines with width + + + + Export Style + Export Style + + + + Style of SVG file to write when exporting a Sketch. + Style of SVG file to write when exporting a Sketch. + + + + Translated (for print & display) + Translated (for print & display) + + + + Raw (for CAM) + Raw (for CAM) + + + + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + + + + Translate white line color to black + Translate white line color to black draft - + active command: aktiewe opdrag: - + None Geen - + Active Draft command Aktiewe Tekening bevel - + X coordinate of next point X-koördinaat van die volgende punt - + X X - + Y Y - + Z Z - + Y coordinate of next point Y-koördinaat van die volgende punt - + Z coordinate of next point Z-koördinaat van die volgende punt - + Radius Radius - + Radius of Circle Radius van die sirkel - + Coordinates relative to last point or absolute (SPACE) Koördinate relatief tot laaste punt of absoluut (SPASIE) - + Undo the last segment (CTRL+Z) Herstel die laaste segment (CTRL+Z) - + Finishes and closes the current line (C) Voltooi en beëindig die huidige lyn (C) - + Offset Verplasing - + XY XY - + Select XY plane Kies XY vlak - + XZ XZ - + Select XZ plane Kies XZ vlak - + YZ YZ - + Select YZ plane Kies YZ-vlak - + View Voorkoms - + Select plane perpendicular to the current view Kies vlak loodreg op die huidige aansig - + Do not project points to a drawing plane Moenie punte projekteer na 'n tekeningvlak nie - + If checked, objects will be copied instead of moved (C) Indien gemerk, sal voorwerpe gekopieer in plaas van geskuif word (C) - + Line Color Lynkleur - + Face Color Vlakkleur - + Line Width Lynwydte - + Font Size Skrifgrootte - + Apply to selected objects Pas toe op gekose voorwerpe - + Toggles Construction Mode Skakel Konstruksiemodus aan/af - + Select Plane Kies vlak - + Line Lyn - + Circle Sirkel - + Center X Sentreer X - + Arc Boog - + Pick Object Kies voorwerp - + draft Command Bar teken Bevelbalk - + Pick a face to define the drawing plane Kies 'n aansig om die tekeningvlak te definieer - + Pick first point: Kies die eerste punt - + Pick next point: Kies die volgende punt: - + Pick next point, or (F)inish or (C)lose: Kies die volgende punt, of sluit af (F) of maak toe (C): - + Pick opposite point: Kies teenoorgestelde punt: - + Pick center point: Kies sentrumpunt: - + Pick radius: Kies radius - + Pick start angle: Kies beginhoek: - + Pick aperture: Kies opening - + Aperture angle: Openinghoek - + Pick location point: Kies liggingpunt: - + Select an object to move Kies 'n voorwerp om te skuif - + Pick start point: Kies beginpunt: - + Pick end point: Kies eindpunt: - + Select an object to rotate Roteer die gekose objekte. CTRL om vas te heg, SHIFT om vas te hou, ALT om te kopieer - + Pick rotation center: Kies spilpunt: - + Pick base angle: Kies basishoek: - + Pick rotation angle: Kies rotasiehoek: - + Select an object to offset Kies 'n voorwerp om te verplaas - + Offset only works on one object at a time Verplasing werk net op een voorwerp op 'n slag - + Pick distance: Kies afstand: - + Select an object to upgrade Kies 'n voorwerp om op te gradeer - + Select an object to trim/extend Kies 'n voorwerp om te verklein/vergroot - + Select an object to scale Kies 'n voorwerp om te skaal - + Pick base point: Kies basispunt: - + Pick scale factor: Kies skaalfaktor: - + Number of sides Aantal sye - + &Relative &Relatief - + &Undo &Herstel - + &Close &MaakToe - + &Copy &Kopieer - + If checked, command will not finish until you press the command button again As dit gemerk is, sal die opdrag nie voltooi word totdat jy die bevel weer gee nie - + &Continue &GaanVoort - - Wire has been closed - - Draad is gesluit - - - + Last point has been removed Laaste punt is verwyder - + Spline has been closed Kurwe is gesluit - + Edges don't intersect! Die kante sny nie mekaar nie! - + Cannot offset this object type Kan nie hierdie voorwerptipe verskuif nie - + Found groups: closing each open object inside Het groepe gevind: sluit elke oop voorwerp - + Found 2 objects: fusing them Het twee voorwerpe gevind: verenig hulle - + Found 1 non-parametric objects: draftifying it Het een nie-parametriese voorwerp gevind: omskep dit in 'n skets - + Found 1 closed sketch object: making a face from it Het een geslote sketsvoorwerp gevind: maak 'n vlak van dit - - Found closed wires: making faces - - Het geslote drade gevind: maak vlakke - - - + Found 1 open wire: closing it Het een oop draad gevind: maak dit toe - + Found several edges: wiring them Het verskeie kante gevind: bedraad hulle - + Found several non-connected edges: making compound Het verskeie onbebonde kante gevind: maak 'n saamgestelde voorwerp - + Found several non-treatable objects: making compound Het verskeie onverwerkbare voorwerpe gevind: maak 'n saamgestelde voorwerp - + Found 1 parametric object: breaking its dependencies Het een parametriese voorwerp gevind: breek sy afhanklikhede - + Found 2 objects: subtracting them Het twee voorwerpe gevind: verwyder hulle - + Found several faces: splitting them Het verskeie vlakke gevind: hulle word verdeel - + Found several objects: subtracting them from the first one Het verskeie voorwerpe gevind: hulle word verwyder van die eerste een - + Found 1 face: extracting its wires Het een vlak gevind: die drade word geëkstraeer - + Found only wires: extracting their edges Het slegs drade gevind: hulle kante word geëkstraeer - + This object type is not editable Hierdie voorwerptipe kan nie gewysig word nie - + Active object must have more than two points/nodes Aktiewe voorwerp moet meer as twee punte/nodes hê - + Finishes the current drawing or editing operation (F) - Finishes the current drawing or editing operation (F) + Beëindig die huidige teken- of wysigingsoperasie (F) - + Add points to the current object - Add points to the current object + Voeg punte by die huidige voorwerp - + Remove points from the current object - Remove points from the current object + Verwyder punte van die huidige voorwerp - + F&illed - F&illed + &Gevul - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) - Check this if the object should appear as filled, otherwise it will appear as wireframe (i) + Kies dit as die voorwerp moet voorkom as gevul, anders sal dit lyk soos 'n draadwerk (i) - + &Finish - &Finish + &Beëindig - + If checked, an OCC-style offset will be performed instead of the classic offset - If checked, an OCC-style offset will be performed instead of the classic offset + Indien gekies, sal 'n OCC-styl verskuiwing gedoen word in plaas van die klassieke verskuiwing - + &OCC-style offset - &OCC-style offset + &OCC-styl verskuiwing - + &Wipe - &Wipe + &Vee - + Wipes the existing segments of this line and starts again from the last point (W) - Wipes the existing segments of this line and starts again from the last point (W) + Vee die bestaande segmente van hierdie lyn uit en begin weer van die laaste punt (W) - + Point - Point + Punt - + Distance - Distance + Afstand - + Edit Wysig - - Create Wire - Create Wire - - - + Create BSpline - Create BSpline + Skep Kurwe - + Create Rectangle - Create Rectangle + Skep Reghoek - + Create Circle - Create Circle + Skep Sirkel - + Create Arc - Create Arc + Skep Boog - + Create Polygon - Create Polygon + Skep Veelvlak - + Create Text - Create Text + Skep Teks - + Create Dimension - Create Dimension + Skep Dimensie - - Delete Measurement - Delete Measurement - - - + Copy - Copy + Kopieer - + Move Verskuif - + Change Style - Change Style + Verander Styl - + Rotate Roteer - + Found 1 solidificable object: solidifying it - Found 1 solidificable object: solidifying it - + Het 1 solidifieerbare voorwerp gevind: besig om te solidifieer - + Found several objects or faces: making a parametric face - Found several objects or faces: making a parametric face - + Het verskeie voorwerpe of vlakke gevind: besig om 'n parametriese vlak te maak - + Found objects containing curves: fusing them - Found objects containing curves: fusing them - + Het voorwerpe met kurwes gevind: besig om hulle saam te smelt - + Found several objects: fusing them - Found several objects: fusing them - + Het verskeie voorwerpe gevind: besig om hulle saam te smelt - + Scale Skaal - + Trim - Trim + Vernou - + Start Angle - Start Angle + Beginhoek - + Aperture - Aperture + Gaping - + Installed Macros - Installed Macros + Geïnstalleerde Makro's - - Draft tools - Draft tools - - - - Draft - Draft - - - - Display options - Display options - - - + Wire tools - Wire tools + Draadwerktuie + + + + DWire + DWire + + + + Create DWire + Create DWire + + + + DWire has been closed + + DWire has been closed + + + + + BSpline + BSpline + + + + Rectangle + Reghoek + + + + Polygon + Veelhoek + + + + Text + Teks + + + + Dimension + Dimensioneer + + + + No upgrade available for this object + + No upgrade available for this object + + + + + Couldn't upgrade these objects + + Couldn't upgrade these objects + + + + + One wire is not planar, upgrade not done + + One wire is not planar, upgrade not done + + + + + Found a closed wire: making a face + + Found a closed wire: making a face + + + + + Found 1 open edge: making a line + + Found 1 open edge: making a line + + + + + Found 1 circular edge: making a circle + + Found 1 circular edge: making a circle + + + + + No more downgrade possible + + No more downgrade possible + + + + + Draft creation tools + Draft creation tools + + + + Draft modification tools + Draft modification tools + + + + &Draft + &Draft + + + + Context tools + Context tools diff --git a/src/Mod/Draft/Resources/translations/Draft_cs.qm b/src/Mod/Draft/Resources/translations/Draft_cs.qm new file mode 100644 index 000000000..9c9e75816 Binary files /dev/null and b/src/Mod/Draft/Resources/translations/Draft_cs.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_cs.ts b/src/Mod/Draft/Resources/translations/Draft_cs.ts new file mode 100644 index 000000000..71859c34c --- /dev/null +++ b/src/Mod/Draft/Resources/translations/Draft_cs.ts @@ -0,0 +1,2014 @@ + + + + + Draft_AddPoint + + + Add Point + Přidat bod + + + + Adds a point to an existing wire/bspline + Adds a point to an existing wire/bspline + + + + Draft_AddToGroup + + + Adds the selected object(s) to an existing group + Adds the selected object(s) to an existing group + + + + Add to group... + Přidat do skupiny... + + + + Draft_ApplyStyle + + + Apply Current Style + Použít aktuální styl + + + + Applies current line width and color to selected objects + Použít aktuální tloušťku čáry a barvu na vybrané objekty + + + + Draft_Arc + + + Arc + oblouk + + + + Creates an arc. CTRL to snap, SHIFT to constrain + Vytvoří oblouk. CTRL pro uchopení, SHIFT pro vynucení + + + + Draft_Array + + + Array + Array + + + + Creates a polar or rectangular array from a selected object + Creates a polar or rectangular array from a selected object + + + + Draft_BSpline + + + B-Spline + B-Spline + + + + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain + Vytváří vlnovku z více bodů. CTRL pro uchopení, SHIFT pro omezení + + + + Draft_Circle + + + Circle + Kruh + + + + Creates a circle. CTRL to snap, ALT to select tangent objects + Vytvoří kruh. CTRL pro přichycení, ALT vybere objekty na tangentě + + + + Draft_Clone + + + Clone + Clone + + + + Clones the selected object(s) + Clones the selected object(s) + + + + Draft_CloseLine + + + Close Line + zavře čáru + + + + Closes the line being drawn + Zavřená čára nakreslena + + + + Draft_DelPoint + + + Remove Point + Odstranit bod + + + + Removes a point from an existing wire or bspline + Removes a point from an existing wire or bspline + + + + Draft_Dimension + + + Dimension + Rozměr + + + + Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment + Vytvoří rozměr. CTRL pro přichycení, SHIFT pro omezení, ALT vybere segment + + + + Draft_Downgrade + + + Downgrade + Downgrade + + + + Explodes the selected objects into simpler objects, or subtract faces + Rozebere vybrané objekty do jednodušších objektů, nebo odečítá plochy + + + + Draft_Draft2Sketch + + + Draft to Sketch + Draft to Sketch + + + + Draft_Drawing + + + Drawing + Výkres + + + + Puts the selected objects on a Drawing sheet. + Umístí vybrané objekty na výkres. + + + + Draft_Edit + + + Edit + Upravit + + + + Edits the active object + Upravuje aktivní objekt + + + + Draft_FinishLine + + + Finish line + Cílová čára + + + + Finishes a line without closing it + ukončí čáru bez uzavření + + + + Draft_Line + + + Line + Čára + + + + Creates a 2-point line. CTRL to snap, SHIFT to constrain + vytvoří čáru 2 body. CTRL pro uchopení, SHIFT pro vynucení + + + + Draft_Move + + + Move + Přesun + + + + Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy + Přesune vybrané objekty mezi 2 body. CTRL pro přichycení, SHIFT pro omezení, ALT pro kopírování + + + + Draft_Offset + + + Offset + Odstup + + + + Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy + Posune aktivní objekt. CTRL pro přichycení, SHIFT pro omezení, ALT pro kopírování + + + + Draft_Point + + + Point + Bod + + + + Creates a point object + Creates a point object + + + + Draft_Polygon + + + Polygon + Mnohoúhelník + + + + Creates a regular polygon. CTRL to snap, SHIFT to constrain + Vytváří pravidelný mnohoúhelník. CTRL pro přichycení, SHIFT pro omezení + + + + Draft_Rectangle + + + Rectangle + Obdélník + + + + Creates a 2-point rectangle. CTRL to snap + Vytvoří obdélník 2-body. CTRL pro uchopení + + + + Draft_Rotate + + + Rotate + Rotace + + + + Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy + Otočí vybrané objekty. CTRL pro přichycení, SHIFT pro omezení, ALT vytvoří kopii + + + + Draft_Scale + + + Scale + Změna velikosti + + + + Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy + Změní velikost vybraných objektů ze základního bodu. CTRL pro přichycení, SHIFT pro omezení, ALT pro kopírování + + + + Draft_SelectGroup + + + Select group + Vybrat skupinu + + + + Selects all objects with the same parents as this group + Selects all objects with the same parents as this group + + + + Draft_SelectPlane + + + SelectPlane + Výběr roviny + + + + Select a working plane for geometry creation + Vyberte pracovní rovinu pro tvorbu geometrie + + + + Draft_Shape2DView + + + Shape 2D view + Shape 2D view + + + + Creates Shape 2D views of selected objects + Creates Shape 2D views of selected objects + + + + Convert bidirectionally between Draft and Sketch objects + Convert bidirectionally between Draft and Sketch objects + + + + Draft_ShowSnapBar + + + Show Snap Bar + Show Snap Bar + + + + Shows Draft snap toolbar + Shows Draft snap toolbar + + + + Draft_Text + + + Text + Text + + + + Creates an annotation. CTRL to snap + Vytvoří anotace. CTRL na přichycení + + + + Draft_ToggleConstructionMode + + + Toggle construcion Mode + Přepíná konstrukční režim + + + + Toggles the Construction Mode for next objects. + Přepíná režim konstrukce pro další objekty. + + + + Draft_ToggleContinueMode + + + Toggle continue Mode + Toggle continue Mode + + + + Toggles the Continue Mode for next commands. + Toggles the Continue Mode for next commands. + + + + Draft_ToggleDisplayMode + + + Toggle display mode + Přepnout režim zobrazení + + + + Swaps display mode of selected objects between wireframe and flatlines + Přepne režim zobrazení vybraných objektů mezi drátěným a stínovaným + + + + Draft_ToggleGrid + + + Toggle Grid + Toggle Grid + + + + Toggles the Draft gid on/off + Toggles the Draft gid on/off + + + + Draft_ToggleSnap + + + Toggle snap + Toggle snap + + + + Toggles Draft snap on or off + Toggles Draft snap on or off + + + + Draft_Trimex + + + Trimex + Trimex + + + + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts + + + + Draft_UndoLine + + + Undo last segment + Vrátit zpět poslední segment + + + + Undoes the last drawn segment of the line being drawn + Vrátí zpět poslední nakreslený segment kreslené čáry + + + + Draft_Upgrade + + + Upgrade + Aktualizace + + + + Joins the selected objects into one, or converts closed wires to filled faces, or unite faces + Spojuje vybrané objekty do jednoho, nebo převede uzavřené obrysy na plné plochy, nebo sjednotí plochy + + + + Draft_Wire + + + DWire + DWire + + + + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + + + + Draft_WireToBSpline + + + Wire to BSpline + Wire to BSpline + + + + Converts between Wire and BSpline + Converts between Wire and BSpline + + + + Gui::Dialog::DlgSettingsDraft + + + General Draft Settings + Obecné návrh nastavení + + + + Default color + Výchozí barva + + + + the default color for new objects + Výchozí barva pro nové objekty + + + + Default linewidth + Výchozí šířka čáry + + + + the default linewidth for new objects + výchozí čára pro nové objekty + + + + Snap color + přitáhnout barvu + + + + the default color for snap symbols + Výchozí barva pro přichycené symboly + + + + Construction color + Barva konstrukce + + + + This is the default color for objects being drawn while in construction mode. + Toto je výchozí barva pro objekty nakreslena v konstrukčním režimu. + + + + This is the default group name for construction geometry + Toto je výchozí název skupiny pro konstrukční geometrii + + + + Construction + Konstrukce + + + + check this if you want to use the color/linewidth from the toolbar as default + Zatrhněte tuto volbu pokud chcete použít barvu / čáry z panelu nástrojů jako výchozí + + + + Save current color and linewidth across sessions + Uložit aktuální barvy a čáry během sezení + + + + If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode + Pokud je toto políčko zaškrtnuto, režim kopírování bude zachován během příkazu, jinak příkazy vždy spustí v no-copy režimu + + + + Global copy mode + globální režim kopírování + + + + If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. + Pokud je toto políčko zaškrtnuto, budete moci vždy uchopit existující objekty při kreslení. Pokud tomu tak není, vám bude přitahování, pouze v případě, že stisknete klávesu CTRL. + + + + If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe + Pokud je toto políčko zaškrtnuto, objekty se objeví jako vyplněné jako výchozí. V opačném případě se zobrazí jako drátový model + + + + Fill objects by default + Vyplnit objekty podle výchozího nastavení + + + + Default working plane + Výchozí pracovní rovina + + + + None + Žádný + + + + XY (Top) + XY (nahoře) + + + + XZ (Front) + XZ (přední) + + + + YZ (Side) + YZ (strana) + + + + The number of decimals in internal coordinates operations (for ex. 3 = 0.001) + Počet desetinných míst ve vnitřních souřadnicových operacích (např. 3 = 0,001) + + + + Default text height + výška výchozího textu + + + + Default height for texts and dimensions + Výchozí výšku pro texty a rozměry + + + + Default text font + Výchozí písmo pro text + + + + This is the default font name for all Draft texts and dimensions. +It can be a font name such as "Arial", a default style such as "sans", "serif" +or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style +such as "Arial:Bold" + Toto je výchozí název písma pro všechny pracovní verze textů a rozměry. Název písma, jako je například "Arial", výchozí styl, jako například "sans", "serif" nebo "mono" nebo rodina může být například "Arial, Helvetica, sans"nebo název s styl, jako například"Arial: Bold" + + + + Arial + Arial + + + + Default template sheet + Výchozí šablona listu + + + + The default template to use when creating a new drawing sheet + Výchozí šablona pro použití při vytváření nového výkresového listu + + + + Import style + Import stylu + + + + This is the method choosed for importing or translating DXF object color into FreeCAD. +If color mapping is choosed, you must choose a color mapping file containing a translation table that will convert colors into linewidths. + + Je to metoda vybraná pro import nebo překládání barvu objektu DXF do FreeCAD. Je-li mapování barev vybráno, musíte zvolit soubor mapování barev obsahující převodní tabulku, která převede barvy do čar + + + + None (fastest) + None (nejrychlejší) + + + + Use default color and linewidth + Použít výchozí barvu a šířku čáry + + + + Original color and linewidth + Původní barva a šířka čáry + + + + Color mapped to linewidth + Barvy mapované na šířku čáry + + + + if this is checked, paper space objects will be imported too + pokud je zatrženo, budou importovány i objekty na ploše papíru + + + + Import layouts + Import rozvržení + + + + if this is unchecked, texts/mtexts won't be imported + pokud je zaškrtnuta, text/mtext nebude importován + + + + Color mapping file + Soubor mapování barev + + + + The color mapping file for translating dxf colors into linewidths + Soubor mapování barev pro převod barev dxf do šířky čáry + + + + Max Spline Segment + Max křivka segmentu + + + + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. + Při exportu splinů do DXF, jsou transformovány do křivek. Tato hodnota je maximální délka každého segmentu křivky. Je-li 0, pak je celá spline považována za rovnou část. + + + + This is the method choosed for importing SVG object color into FreeCAD. + Toto je metoda zvolené pro import barvy SVG objektu do FreeCADu. + + + + Check this if you want the areas (3D faces) to be imported too. + Zaškrtněte pokud chcete plochy (3D plochy)importovat také. + + + + Import OCA areas + Importovat OCA oblastí + + + + General settings + Obecná nastavení + + + + Construction group name + Název konstrukční skupiny + + + + Tolerance + Odchylka + + + + This is the value used by functions that use a tolerance. +Values with differences below this value will be treated as same. + Toto je hodnota použitá funkcemi, které používají toleranci. Hodnoty s rozdíly pod tuto hodnotu budou považovány za stejné. + + + + Dimensions & Leader arrow style + Kóty & styl šipek + + + + Dot 5 + Bod 5 + + + + Dot 7 + Bod 7 + + + + Dot 9 + Bod 9 + + + + Circle 5 + Kruh 5 + + + + Circle 7 + Kruh 7 + + + + Circle 9 + Kruh 9 + + + + Slash 5 + Lomítko 5 + + + + Slash 7 + Lomítko 7 + + + + Slash 9 + Lomítko 9 + + + + Backslash 5 + Zpětné lomítko 5 + + + + Backslash 7 + Zpětné lomítko 7 + + + + Backslash 9 + Zpětné lomítko 9 + + + + Import/Export + Import a Export + + + + DXF format options + Možnosti formátu DXF + + + + Import texts and dimensions + Import textů a rozměrů + + + + Check this if you want the non-named blocks (beginning with a *) to be imported too + Toto zaškrtněte, pokud chcete nepojmenovaný blok (počáteční *) bude importováno také + + + + Import *blocks + Import * bloků + + + + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... + Je-li toto políčko zaškrtnuto, freecad se pokusí spojit shodné objekty do drátů. Pozor, může to chvíli trvat... + + + + Join geometry + Spojit geometrie + + + + SVG format options + Možnosti formátu SVG + + + + OCA format options + Možnosti formátu OCA + + + + Alternate SVG Patterns location + Alternate SVG Patterns location + + + + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns + + + + Draft interface mode + Draft interface mode + + + + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction + + + + Toolbar + Toolbar + + + + Taskview + Taskview + + + + Constrain mod + Constrain mod + + + + The Constraining modifier key + The Constraining modifier key + + + + shift + SHIFT + + + + ctrl + CTRL + + + + alt + ALT + + + + Snap mod + Mód přichytávání + + + + The snap modifier key + The snap modifier key + + + + Alt mod + Alt mod + + + + The alt modifier key + The alt modifier key + + + + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. + + + + Select base objects after copying + Select base objects after copying + + + + Always snap to objects (disable snap mod key) + Always snap to objects (disable snap mod key) + + + + The radius for snapping to special points. Set to 0 for no distance (infinite) + The radius for snapping to special points. Set to 0 for no distance (infinite) + + + + Snap range + Snap range + + + + px + px + + + + If checked, a grid will appear when drawing + If checked, a grid will appear when drawing + + + + Use grid + Použít mřížku + + + + Grid spacing + Rozteč mřížky + + + + The spacing between each grid line + The spacing between each grid line + + + + Main lines every + Hlavní čáry každých + + + + Mainlines will be drawn thicker. Specify here how many squares between mainlines. + Mainlines will be drawn thicker. Specify here how many squares between mainlines. + + + + Internal precision level + Internal precision level + + + + Dimensions precision level + Dimensions precision level + + + + Vertical dimensions text orientation + Vertical dimensions text orientation + + + + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. + + + + Left (ISO standard) + Left (ISO standard) + + + + Right + Vpravo + + + + Create parametric objects + Vytvořit parametrické objekty + + + + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable + + + + Group layers into blocks + Group layers into blocks + + + + If this is checked, all objects containing faces will be exported as 3d polyfaces + If this is checked, all objects containing faces will be exported as 3d polyfaces + + + + Export 3D objects as polyface meshes + Export 3D objects as polyface meshes + + + + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + + + + Hide Draft workbench + Hide Draft workbench + + + + If this is checked, snapping will not occur against objects with more than the indicated number of edges + If this is checked, snapping will not occur against objects with more than the indicated number of edges + + + + Snap maximum + Snap maximum + + + + Maximum number of edges to be considered for snapping + Maximum number of edges to be considered for snapping + + + + Maximum number of edges + Maximum number of edges + + + + If checked, the Snap toolbar will be shown whenever you use snapping + If checked, the Snap toolbar will be shown whenever you use snapping + + + + Show Draft Snap toolbar + Show Draft Snap toolbar + + + + Hide Draft snap toolbar after use + Hide Draft snap toolbar after use + + + + if checked, a widget indicating the current working plane orientation appears during drawing operations + if checked, a widget indicating the current working plane orientation appears during drawing operations + + + + Show Working Plane tracker + Show Working Plane tracker + + + + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + + + + Always show + Always show + + + + Create Sketches + Create Sketches + + + + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + + + + Use standard font size for texts + Use standard font size for texts + + + + If this is checked, hatches will be converted into simple wires + If this is checked, hatches will be converted into simple wires + + + + Import hatch boundaries as wires + Import hatch boundaries as wires + + + + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + + + + Render polylines with width + Render polylines with width + + + + Export Style + Export Style + + + + Style of SVG file to write when exporting a Sketch. + Style of SVG file to write when exporting a Sketch. + + + + Translated (for print & display) + Translated (for print & display) + + + + Raw (for CAM) + Raw (for CAM) + + + + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + + + + Translate white line color to black + Translate white line color to black + + + + draft + + + active command: + aktivní příkaz: + + + + None + Žádný + + + + Active Draft command + aktivní příkaz návrhu + + + + X coordinate of next point + X souřadnice dalšího bodu + + + + X + X + + + + Y + Y + + + + Z + Z + + + + Y coordinate of next point + Y souřadnice dalšího bodu + + + + Z coordinate of next point + Z souřadnice dalšího bodu + + + + Radius + Poloměr + + + + Radius of Circle + Poloměr kruhu + + + + Coordinates relative to last point or absolute (SPACE) + Souřadnice vztažené k poslednímu bodu nebo absolutní (mezerník) + + + + Undo the last segment (CTRL+Z) + Vrátit zpět poslední segment (CTRL + Z) + + + + Finishes and closes the current line (C) + ukončí a zavře aktuální řádek (C) + + + + Offset + Odstup + + + + XY + XY + + + + Select XY plane + Vyberte rovinu XY + + + + XZ + XZ + + + + Select XZ plane + Vyberte rovinu XY + + + + YZ + YZ + + + + Select YZ plane + Vyberte rovinu YZ + + + + View + Pohled + + + + Select plane perpendicular to the current view + Vyberte rovinu kolmou na aktuální pohled + + + + Do not project points to a drawing plane + nepromítat body do kreslící roviny + + + + If checked, objects will be copied instead of moved (C) + Je-li zaškrtnuta, objekty budou zkopírovány namísto přesunutý (C) + + + + Line Color + Barva čáry + + + + Face Color + Barva plochy + + + + Line Width + Šířka čáry + + + + Font Size + Velikost písma + + + + Apply to selected objects + použít na vybrané objekty + + + + Toggles Construction Mode + Přepíná konstrukční režim + + + + Select Plane + Vyberte rovinu + + + + Line + Čára + + + + Circle + Kruh + + + + Center X + Střed X + + + + Arc + oblouk + + + + Pick Object + Vybrat objekt + + + + draft Command Bar + návrh příkazové tabulky + + + + Pick a face to define the drawing plane + + Vyberte si plochu pro definování kreslící roviny + + + + Pick first point: + + Vyberte první bod: + + + + Pick next point: + + Vyberte další bod: + + + + Pick next point, or (F)inish or (C)lose: + + Vyberte další bod, nebo (F) pro konec nebo (C) pro zavření: + + + + Pick opposite point: + + Výběr protilehlého bodu: + + + + Pick center point: + + Výběr středového bodu: + + + + Pick radius: + + Vyberte poloměr: + + + + Pick start angle: + + Vyberte počáteční úhel: + + + + Pick aperture: + + Vyberte otvor: + + + + Aperture angle: + + Úhel otvoru: + + + + Pick location point: + + Vyberte umístění bodu: + + + + Select an object to move + + Vyberte objekt, který chcete přesunout + + + + Pick start point: + + Vyberte počáteční bod: + + + + Pick end point: + + Vyberte koncový bod: + + + + Select an object to rotate + + Vyberte objekt, který chcete otočit + + + + Pick rotation center: + + Vyberte střed otáčení: + + + + Pick base angle: + + Vyberte základní úhel: + + + + Pick rotation angle: + + Vyberte úhel natočení: + + + + Select an object to offset + + Vyberte objekt pro vyrovnání + + + + Offset only works on one object at a time + + Ofset funguje pouze na jeden objekt najednou + + + + Pick distance: + + Vyberte vzdálenost: + + + + Select an object to upgrade + + Vyberte objekt pro upgrade + + + + Select an object to trim/extend + + Vyberte objekt pro oříznutí/rozšíření + + + + Select an object to scale + + Vyberte objekt ke změně velikosti + + + + Pick base point: + + Vyberte základní bod: + + + + Pick scale factor: + + Vybrat měřítko: + + + + Number of sides + Počet stran + + + + &Relative + &Relativní + + + + &Undo + &Zpět + + + + &Close + &Zavřít + + + + &Copy + &Kopírovat + + + + If checked, command will not finish until you press the command button again + Je-li zaškrtnuto, příkaz se nedokončí, dokud nestisknete znovu na příkazové tlačítko + + + + &Continue + &Pokračovat + + + + Last point has been removed + + Poslední bod byl odstraněn + + + + Spline has been closed + + Křivka byla uzavřena + + + + Edges don't intersect! + + Hrany se neprotínají! + + + + Cannot offset this object type + + Nelze ofsetovat tento typ objektu + + + + Found groups: closing each open object inside + + Found groups: closing each open object inside + + + + + Found 2 objects: fusing them + + Found 2 objects: fusing them + + + + + Found 1 non-parametric objects: draftifying it + + Found 1 non-parametric objects: draftifying it + + + + + Found 1 closed sketch object: making a face from it + + Found 1 closed sketch object: making a face from it + + + + + Found 1 open wire: closing it + + Found 1 open wire: closing it + + + + + Found several edges: wiring them + + Found several edges: wiring them + + + + + Found several non-connected edges: making compound + + Found several non-connected edges: making compound + + + + + Found several non-treatable objects: making compound + + Found several non-treatable objects: making compound + + + + + Found 1 parametric object: breaking its dependencies + + Found 1 parametric object: breaking its dependencies + + + + + Found 2 objects: subtracting them + + Found 2 objects: subtracting them + + + + + Found several faces: splitting them + + Found several faces: splitting them + + + + + Found several objects: subtracting them from the first one + + Found several objects: subtracting them from the first one + + + + + Found 1 face: extracting its wires + + Found 1 face: extracting its wires + + + + + Found only wires: extracting their edges + + Found only wires: extracting their edges + + + + + This object type is not editable + + This object type is not editable + + + + + Active object must have more than two points/nodes + + Active object must have more than two points/nodes + + + + + Finishes the current drawing or editing operation (F) + Finishes the current drawing or editing operation (F) + + + + Add points to the current object + Add points to the current object + + + + Remove points from the current object + Remove points from the current object + + + + F&illed + F&illed + + + + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) + + + + &Finish + &Finish + + + + If checked, an OCC-style offset will be performed instead of the classic offset + If checked, an OCC-style offset will be performed instead of the classic offset + + + + &OCC-style offset + &OCC-style offset + + + + &Wipe + &Wipe + + + + Wipes the existing segments of this line and starts again from the last point (W) + Wipes the existing segments of this line and starts again from the last point (W) + + + + Point + Bod + + + + Distance + Distance + + + + Edit + Upravit + + + + Create BSpline + Create BSpline + + + + Create Rectangle + Vytvořit obdélník + + + + Create Circle + Vytvořit kruh + + + + Create Arc + Vytvořit oblouk + + + + Create Polygon + Vytvořit mnohoúhelník + + + + Create Text + Vytvořit text + + + + Create Dimension + Vytvořit kótu + + + + Copy + Kopírovat + + + + Move + Přesun + + + + Change Style + Změnit styl + + + + Rotate + Rotace + + + + Found 1 solidificable object: solidifying it + + Found 1 solidificable object: solidifying it + + + + + Found several objects or faces: making a parametric face + + Found several objects or faces: making a parametric face + + + + + Found objects containing curves: fusing them + + Found objects containing curves: fusing them + + + + + Found several objects: fusing them + + Found several objects: fusing them + + + + + Scale + Změna velikosti + + + + Trim + Trim + + + + Start Angle + Start Angle + + + + Aperture + Aperture + + + + Installed Macros + Installed Macros + + + + Wire tools + Wire tools + + + + DWire + DWire + + + + Create DWire + Create DWire + + + + DWire has been closed + + DWire has been closed + + + + + BSpline + BSpline + + + + Rectangle + Obdélník + + + + Polygon + Mnohoúhelník + + + + Text + Text + + + + Dimension + Rozměr + + + + No upgrade available for this object + + No upgrade available for this object + + + + + Couldn't upgrade these objects + + Couldn't upgrade these objects + + + + + One wire is not planar, upgrade not done + + One wire is not planar, upgrade not done + + + + + Found a closed wire: making a face + + Found a closed wire: making a face + + + + + Found 1 open edge: making a line + + Found 1 open edge: making a line + + + + + Found 1 circular edge: making a circle + + Found 1 circular edge: making a circle + + + + + No more downgrade possible + + No more downgrade possible + + + + + Draft creation tools + Draft creation tools + + + + Draft modification tools + Draft modification tools + + + + &Draft + &Draft + + + + Context tools + Context tools + + + diff --git a/src/Mod/Draft/Resources/translations/Draft_de.qm b/src/Mod/Draft/Resources/translations/Draft_de.qm index e99e6c980..f6e678a7f 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_de.qm and b/src/Mod/Draft/Resources/translations/Draft_de.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_de.ts b/src/Mod/Draft/Resources/translations/Draft_de.ts index 01449e1a2..c2383919c 100644 --- a/src/Mod/Draft/Resources/translations/Draft_de.ts +++ b/src/Mod/Draft/Resources/translations/Draft_de.ts @@ -4,12 +4,12 @@ Draft_AddPoint - + Add Point Punkt hinzufügen - + Adds a point to an existing wire/bspline Fügt einen Punkt zu einer vorhandenen Linie/bspline @@ -17,12 +17,12 @@ Draft_AddToGroup - + Adds the selected object(s) to an existing group Fügt die ausgewählten Objekte zu einer vorhandenen Gruppe - + Add to group... Zur Gruppe hinzufügen... @@ -30,12 +30,12 @@ Draft_ApplyStyle - + Apply Current Style Aktuellen Style anwenden - + Applies current line width and color to selected objects Aktuelle Linienbreite und Farbe auf ausgewählte Objekte anwenden @@ -43,25 +43,38 @@ Draft_Arc - + Arc Kreisbogen - + Creates an arc. CTRL to snap, SHIFT to constrain Erzeugt einen Bogen. CTRL zum Einrasten, SHIFT zum Beschränken + + Draft_Array + + + Array + Anordnung + + + + Creates a polar or rectangular array from a selected object + Erstellt eine polare oder rechteckige Anordnung des ausgewählten Objekts + + Draft_BSpline - + B-Spline B-Spline - + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain @@ -69,25 +82,38 @@ Draft_Circle - + Circle Kreis - + Creates a circle. CTRL to snap, ALT to select tangent objects Erzeugt einen Kreis. STRG zum Einrasten, ALT um berührende Objekte auszuwählen + + Draft_Clone + + + Clone + Klonen + + + + Clones the selected object(s) + Ausgewählte Objekte klonen + + Draft_CloseLine - + Close Line Linie schließen - + Closes the line being drawn Schließt die gezeichnete Linie @@ -95,12 +121,12 @@ Draft_DelPoint - + Remove Point Punkt entfernen - + Removes a point from an existing wire or bspline Removes a point from an existing wire or bspline @@ -108,12 +134,12 @@ Draft_Dimension - + Dimension Abmessung - + Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment Erstellt eine Dimension. CTRL zum Einrasten, SHIFT zum Beschränken, ALT um ein Segment auszuwählen @@ -121,25 +147,33 @@ Draft_Downgrade - + Downgrade - herunterstufen + Herabstufen - + Explodes the selected objects into simpler objects, or subtract faces Sprengt die markierten Objekte in einfachere Objekte auf oder subtrahiert Oberflächen + + Draft_Draft2Sketch + + + Draft to Sketch + Entwurf zu Skizze + + Draft_Drawing - + Drawing Zeichnung - + Puts the selected objects on a Drawing sheet. Puts the selected objects on a Drawing sheet. @@ -147,12 +181,12 @@ Draft_Edit - + Edit Bearbeiten - + Edits the active object Bearbeitet das aktive Objekt @@ -160,12 +194,12 @@ Draft_FinishLine - + Finish line Linie beenden - + Finishes a line without closing it Beendet eine Linie, ohne sie zu schließen @@ -173,12 +207,12 @@ Draft_Line - + Line Linie - + Creates a 2-point line. CTRL to snap, SHIFT to constrain Erzeugt Linie aus 2 Punkten. STRG zum Einrasten, SHIFT zum Beschränken @@ -186,12 +220,12 @@ Draft_Move - + Move Verschieben - + Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy Verschiebt die ausgewählten Objekte zwischen 2 Punkten. CTRL zum Einrasten, SHIFT zum Beschränken, ALT zum Kopieren @@ -199,25 +233,38 @@ Draft_Offset - + Offset Versetzen - + Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy Versetzt das aktive Objekt, STRG zum Einrasten, SHIFT zum Beschränken, ALT zum Kopieren + + Draft_Point + + + Point + Punkt + + + + Creates a point object + Erzeugt ein Punkt-Objekt + + Draft_Polygon - + Polygon Polygon - + Creates a regular polygon. CTRL to snap, SHIFT to constrain Erstellt ein regelmäßiges Polygon. STRG = anfassen, SHIFT = einschränken @@ -225,12 +272,12 @@ Draft_Rectangle - + Rectangle Rechteck - + Creates a 2-point rectangle. CTRL to snap Erstellt eine 2-Punkt-Rechteck. Einrasten mit STRG @@ -238,12 +285,12 @@ Draft_Rotate - + Rotate Drehen - + Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy Dreht die ausgewählten Objekte. STRG zum Einrasten, SHIFT zum Beschränken, ALT erstellt eine Kopie @@ -251,12 +298,12 @@ Draft_Scale - + Scale Skalieren - + Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy Skaliert die markierten Objekte von einem Basispunkt. STRG zum Einrasten, SHIFT zum Beschränken, ALT zum Kopieren @@ -264,12 +311,12 @@ Draft_SelectGroup - + Select group Wähle Gruppe - + Selects all objects with the same parents as this group Wählt alle Objekte mit den selben Eltern wie diese Gruppe @@ -277,12 +324,12 @@ Draft_SelectPlane - + SelectPlane Ebene markieren - + Select a working plane for geometry creation Markieren Sie eine Bearbeitungsebene für die Geometrieerstellung @@ -290,25 +337,43 @@ Draft_Shape2DView - + Shape 2D view - Shape 2D view + Form in 2D Ansicht - + Creates Shape 2D views of selected objects - Creates Shape 2D views of selected objects + Erzeugt 2D Ansichten von ausgewählten Objekten + + + + Convert bidirectionally between Draft and Sketch objects + Bidirektional zwischen Draft und Sketch konvertieren + + + + Draft_ShowSnapBar + + + Show Snap Bar + Zeige Fang-Symbolleiste + + + + Shows Draft snap toolbar + Entwurfs-Fang-Werkzeugleiste einblenden Draft_Text - + Text Text - + Creates an annotation. CTRL to snap Erzeugt eine Anmerkung. STRG zum Einrasten @@ -316,12 +381,12 @@ Draft_ToggleConstructionMode - + Toggle construcion Mode Konstruktionsmodus umschalten - + Toggles the Construction Mode for next objects. Schaltet den Konstruktionsmodus für die nächsten Objekte um. @@ -329,51 +394,77 @@ Draft_ToggleContinueMode - + Toggle continue Mode - Toggle continue Mode + Fortsetzungsmodus umschalten - + Toggles the Continue Mode for next commands. - Toggles the Continue Mode for next commands. + Umschalten des Fortsetzungsmodus für nächste Befehle Draft_ToggleDisplayMode - + Toggle display mode Anzeige-Modus umschalten - + Swaps display mode of selected objects between wireframe and flatlines Wechselt den Anzeigemodus der ausgewählten Objekte zwischen Drahtmodell und flatlines + + Draft_ToggleGrid + + + Toggle Grid + Gitternetz umschalten + + + + Toggles the Draft gid on/off + Entwurfsgitter ein-/ausschalten + + + + Draft_ToggleSnap + + + Toggle snap + Einrasten umschalten + + + + Toggles Draft snap on or off + Entwurfs-Fang aus-/anschalten + + Draft_Trimex - + Trimex Trimex - + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts - Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts + Beschneidet oder erweitert das ausgewählte Objekt oder extrudiert einzelne Oberflächen. STRG fängt, Umschalttaste legt den derzeitigen Abschnitt als normal fest, ALT invertiert Draft_UndoLine - + Undo last segment Letztes Segment rückgängig machen - + Undoes the last drawn segment of the line being drawn Letztes Segment rückgängig machen @@ -381,12 +472,12 @@ Draft_Upgrade - + Upgrade - Aktualisieren + Hochstufen - + Joins the selected objects into one, or converts closed wires to filled faces, or unite faces Verbindet die markierten Objekte zu Einem, konvertiert Drähte zu abgerundeten Kanten oder verbindet Oberflächen @@ -394,25 +485,25 @@ Draft_Wire - - Wire - Draht + + DWire + DWire - - Creates a multiple-point wire. CTRL to snap, SHIFT to constrain - Erstellt eine Mehrpunkt-Linienzug. STRG zum Einrasten, SHIFT zum Beschränken + + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + Erstellt einen Mehrpunkt-Entwurfsdraht (DWire). Strg zum Fangen, Umschalt für Bezüge Draft_WireToBSpline - + Wire to BSpline Wire to BSpline - + Converts between Wire and BSpline Converts between Wire and BSpline @@ -425,137 +516,137 @@ Generelle Entwurfs-Einstellungen - + Default color Standardfarbe - + the default color for new objects Standardfarbe für neue Objekte - + Default linewidth Standard-Linienbreite - + the default linewidth for new objects Standard-Linienbreite für neue Objekte - + Snap color Farbe einrasten - + the default color for snap symbols Die Standardfarbe für Einrast Symbole - + Construction color Konstruktionsfarbe - + This is the default color for objects being drawn while in construction mode. Dies ist die Standardfarbe für Objekte, die im Konstruktionsmodus gezeichnet werden. - + This is the default group name for construction geometry Dies ist der Standard-Gruppenname für die Konstruktionsgeometrie - + Construction Konstruktion - + check this if you want to use the color/linewidth from the toolbar as default Aktivieren Sie diese Option, wenn Sie die Farbe/Linienbreite aus der Symbolleiste als Standard verwenden möchten - + Save current color and linewidth across sessions Speichern der aktuellen Farbe und Linienbreite in allen Sitzungen - + If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode Wenn dieses Kontrollkästchen aktiviert ist, wird der Kopiermodus über den Befehl hinaus gehalten, sonst beginnen Befehle immer im Nicht-Kopiermodus - + Global copy mode Globaler Kopiermodus - + If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. Wenn dieses Kontrollkästchen aktiviert ist, werden Sie immer zu vorhandenen Objekten während des Zeichnens springen. Wenn nicht, werden Sie nur springen, wenn Sie STRG drücken. - + If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe Wenn dieses Kontrollkästchen aktiviert ist, erscheinen die Objekte Standardfüllung. Andernfalls werden Sie als Drahtmodell angezeigt - + Fill objects by default Fülle Objekte standardmäßig - + Default working plane Standard-Arbeitssebene - + None Kein - + XY (Top) XY (oben) - + XZ (Front) XZ (vorne) - + YZ (Side) YZ (Seite) - + The number of decimals in internal coordinates operations (for ex. 3 = 0.001) Die Anzahl der Dezimalstellen in internen Koordinaten Operationen (z.B. 3 = 0,001) - + Default text height Standard-Texthöhe - + Default height for texts and dimensions Standardhöhe für Texte und Bemaßungen - + Default text font Standard-Schriftart - + This is the default font name for all Draft texts and dimensions. It can be a font name such as "Arial", a default style such as "sans", "serif" or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style @@ -563,22 +654,22 @@ such as "Arial:Bold" Dies ist die Standard-Schriftart für alle Textentwürfe und Dimensionen. Es kann eine Schriftart wie "Arial", ein Standard-Stil wie "sans", "serif" oder "mono", oder eine Familie wie "Arial, Helvetica, sans" oder einen Namen mit einem Stil wie " Arial: Bold " sein - + Arial Arial - + Default template sheet Standard Vorlage - + The default template to use when creating a new drawing sheet Die Standardvorlage zum Erstellen einer neuen Zeichnung - + Import style Importiere Style @@ -592,17 +683,17 @@ Falls Farbzuordnung ausgewählt ist, müssen Sie eine Datei mit einer Look-up-Ta - + None (fastest) Kein (schnellste) - + Use default color and linewidth Benutze Standard Farbe und Linienstärke - + Original color and linewidth Ursprüngliche Farbe und Linienstärke @@ -612,52 +703,52 @@ Falls Farbzuordnung ausgewählt ist, müssen Sie eine Datei mit einer Look-up-Ta Farbe wird der Linienstärke zugeordnet - + if this is checked, paper space objects will be imported too Falls aktiviert, werden Papierbereichs-Objekte ebenfalls importiert - + Import layouts Importiere Layouts - + if this is unchecked, texts/mtexts won't be imported Wenn dies deaktiviert ist, wird texts/mtexts nicht importiert - + Color mapping file Datei zur Farbzuordung - + The color mapping file for translating dxf colors into linewidths Die Datei zur Zuordnung von Farben zu Linienstärken - + Max Spline Segment Max Spline-Segment - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Wenn Splines in DXF exportiert werden, werden sie in Polygonzüge umgewandelt. Dieser Wert ist die maximale Länge eines Segments des Polygonzuges. Falls 0, wird die ganze Spline-Kurve als ein Geradenstück behandelt. - + This is the method choosed for importing SVG object color into FreeCAD. Das ist die ausgewählt Methode, SVG-Objektefarben in FreeCAD zu importieren. - + Check this if you want the areas (3D faces) to be imported too. Aktivieren Sie dies, falls Sie die 3D-Flächen ebenfalls importien möchten. - + Import OCA areas Importiert OCA Bereiche @@ -667,84 +758,84 @@ Falls Farbzuordnung ausgewählt ist, müssen Sie eine Datei mit einer Look-up-Ta Allgemeine Einstellungen - + Construction group name Konstruktionsgruppenname - + Tolerance Toleranz - + This is the value used by functions that use a tolerance. Values with differences below this value will be treated as same. Dieser Wert wird von Funktionen verwendet, die Toleranzen benutzen. Werte mit Differenzen unterhalb diesen Wertes werden als gleich behandelt. - + Dimensions & Leader arrow style Abmessungs & Führungspfeil-Stil - + Dot 5 Punkt 5 - + Dot 7 Punkt 7 - + Dot 9 Punkt 9 - + Circle 5 Kreis 5 - + Circle 7 Kreis 7 - + Circle 9 Kreis 9 - + Slash 5 Slash 5 - + Slash 7 Slash 7 - + Slash 9 Slash 9 - + Backslash 5 Backslash 5 - + Backslash 7 Backslash 7 - + Backslash 9 Backslash 9 @@ -759,993 +850,1183 @@ Werte mit Differenzen unterhalb diesen Wertes werden als gleich behandelt.DXF-Format Optionen - + Import texts and dimensions Importieren von Texten und Dimensionen - + Check this if you want the non-named blocks (beginning with a *) to be imported too Aktivieren Sie diese Option, wenn Sie nicht benannte Blöcke (beginnend mit a *) auch importieren möchten - + Import *blocks *blocks importieren - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Falls aktiviert, werden zusammentreffende Objekte als Linienzüge (Wires) zusammengefasst. Achtung, dies kann einige Zeit in Anspruch nehmen... - + Join geometry Geometrie vereinen - + SVG format options Einstellungen für SVG Format - + OCA format options Einstellungen für OCA Format - + Alternate SVG Patterns location Alternative SVG-Muster - + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns Hier können Sie ein Verzeichnis angeben, das SVG-Dateien mit <pattern>-Definitionen enthält. Diese werden zu den Standard-Entwurfs-Schraffierungsmustern hinzugefügt - + Draft interface mode - Draft interface mode + Entwurfsoberflächen-Modus - + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction - This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction + Dies ist der UI-Modus in dem das Zeichenmodul arbeiten wird: Der Werkzeugleistenmodus wird alle Zeichnungseinstellungen in einer separaten Werkzeugleiste plazieren,während der Aufgabenleistemodus das FreeCAD Aufgabenübersichts-System für jegliche Benutzerinteraktion nutzen wird - + Toolbar - Toolbar + Werkzeugleiste - + Taskview - Taskview + Aufgabenüberblick - + Constrain mod - Constrain mod + Randbedingungsmodus - + The Constraining modifier key - The Constraining modifier key + Die Randbedingungsmodus-Taste - + shift - shift + Umschalt - + ctrl Strg - + alt Alt - + Snap mod - Snap mod + Fangmodus - + The snap modifier key - The snap modifier key + Die Fangmodustaste - + Alt mod - Alt mod + Alternativer Modus - + The alt modifier key - The alt modifier key + Die alternative Modus-Taste - + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. - Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. + Normalerweise wird nach dem Kopieren von Objekten die Kopie ausgewählt. Mit dieser Option werden stattdessen die ursprünglichen Objekte ausgewählt. - + Select base objects after copying - Select base objects after copying + Wähle ursprüngliche Objekte nach dem Kopieren aus - + Always snap to objects (disable snap mod key) - Always snap to objects (disable snap mod key) + Fange immer Objekte (deaktiviere Fangmodustaste) - + The radius for snapping to special points. Set to 0 for no distance (infinite) - The radius for snapping to special points. Set to 0 for no distance (infinite) + Der Radius für Fangen von speziellen Punkten. Setze auf Null für keinen Abstand (infinitisemal) - + Snap range - Snap range + Fangbereich - + px px - + If checked, a grid will appear when drawing - If checked, a grid will appear when drawing + Wenn gesetzt, erscheint ein Raster beim Zeichnen - + Use grid Raster verwenden - + Grid spacing Rasterabstand - + The spacing between each grid line - The spacing between each grid line + Der Abstand zwischen jeder Rasterlinie - + Main lines every - Main lines every + Hauptlinien alle - + Mainlines will be drawn thicker. Specify here how many squares between mainlines. - Mainlines will be drawn thicker. Specify here how many squares between mainlines. + Hauptlinien werden dicker gezeichnet. Legen Sie hier fest, wie viele Kästchen zwischen den Hauptlinien sein sollen. - + Internal precision level - Internal precision level + Interner Präzisionsgrad - + Dimensions precision level - Dimensions precision level + Präzisionsgrad der Bemaßung - + Vertical dimensions text orientation - Vertical dimensions text orientation + Orientierung der vertikalen Bemaßungstexte - + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. - This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. + Dies ist die Orientierung der Bemaßungstexte, wenn sie vertikal sind. Standard ist wie im ISO-Standard links. - + Left (ISO standard) - Left (ISO standard) + Links (ISO-Standard) - + Right Rechts Create parametric objects - Create parametric objects + Parametrische Objekte erstellen - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable - if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable + Wenn dies ausgewählt wird, werden Objekte der gleichen Ebene in einem Zeichnungsblock miteinander verbunden, sodass zwar die Ansicht schneller gedreht, aber die Bearbeitung schwieriger wird. - + Group layers into blocks - Group layers into blocks + Gruppiere Ebenen in Blöcken - + If this is checked, all objects containing faces will be exported as 3d polyfaces - If this is checked, all objects containing faces will be exported as 3d polyfaces + Falls dies angewählt ist, werden all Objekte mit Oberflächen als 3D Polyfaces exportiert - + Export 3D objects as polyface meshes - Export 3D objects as polyface meshes + 3D Objekte als Polyface Meshes exportieren + + + + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + Wenn aktiviert, erscheint die Entwurfs-Arbeitsumgebung nicht. Nützlich, da die Arch-Arbeitsumgebung alle Entwurfs-Werkzeuge enthält. + + + + Hide Draft workbench + Entwurfs-Arbeitsumgebung ausblenden + + + + If this is checked, snapping will not occur against objects with more than the indicated number of edges + Nicht an Objekten mit mehr Kanten als angegeben fangen + + + + Snap maximum + Fang Maximum + + + + Maximum number of edges to be considered for snapping + Maximale Anzahl an Kanten die für Fangen in Frage kommen + + + + Maximum number of edges + Maximale Anzahl an Kanten + + + + If checked, the Snap toolbar will be shown whenever you use snapping + Zeige Fang-Symbolleiste immer wenn Fangen genutzt wird + + + + Show Draft Snap toolbar + Entwurfs-Fang-Werkzeugleiste einblenden + + + + Hide Draft snap toolbar after use + Entwurfs-Fang-Werkzeugleiste nach Verwendung ausblenden + + + + if checked, a widget indicating the current working plane orientation appears during drawing operations + Wenn aktiviert, wird während dem Zeichnen die Ausrichtung der Arbeitsebene angezeigt + + + + Show Working Plane tracker + Arbeitsebenen-Tracker anzeigen + + + + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + Wenn aktiviert, ist das Entwurfs-Gitter stets eingeblendet, wenn die Entwurfs-Arbeitsumgebung verwendet wird. Sonst nur, wenn ein Befehl verwendet wird + + + + Always show + Immer Anzeigen + + + + Create Sketches + Skizzen erstellen + + + + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + Wenn aktiviert, erhalten importierte Texte die standardmäßige Entwurfs-Schriftgröße, statt ihrer Ursprungsgröße im DXF Dokument + + + + Use standard font size for texts + Standard Schriftgröße für Texte verwenden + + + + If this is checked, hatches will be converted into simple wires + Wenn gesetzt, werden Schraffuren in einfache Drähte umgewandelt + + + + Import hatch boundaries as wires + Fügt Schraffurgrenzen als Drähte hinzu + + + + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + Wenn aktiviert, werden Polylinien mit definierter Breite als geschlossener Draht mit der richtigen Dicke gerendert + + + + Render polylines with width + Polylinien mit Breite rendern + + + + Export Style + Export-Stil + + + + Style of SVG file to write when exporting a Sketch. + SVG-Typ bei Skizzen-Export. + + + + Translated (for print & display) + Angepasst (für Druck und Anzeige) + + + + Raw (for CAM) + Roh (für CAM) + + + + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + Bei SVG-Export, wandle weiße Linien in schwarze, zwecks besserer Lesbarkeit auf weißen Hintergründen + + + + Translate white line color to black + Weiße Linienfarbe in schwarze umwandeln draft - + active command: aktiver Befehl: - + None Kein - + Active Draft command Aktiver Draft-Befehl - + X coordinate of next point X-Koordinate des nächsten Punktes - + X X - + Y Y - + Z Z - + Y coordinate of next point Y-Koordinate des nächsten Punktes - + Z coordinate of next point Z-Koordinate des nächsten Punktes - + Radius Radius - + Radius of Circle Kreisradius - + Coordinates relative to last point or absolute (SPACE) Koordinaten relativ zum letzten Punkt oder absolut (Leertaste) - + Undo the last segment (CTRL+Z) Letztes Segment rückgängig machen (Strg+Z) - + Finishes and closes the current line (C) Beendet und schließt die aktuelle Linie (C) - + Offset Versetzen - + XY XY - + Select XY plane XY-Ebene auswählen - + XZ XZ - + Select XZ plane XY-Ebene auswählen - + YZ YZ - + Select YZ plane YZ-Ebene wählen - + View Ansicht - + Select plane perpendicular to the current view Wählen Sie eine Ebene senkrecht zur momentanen Blickrichtung aus - + Do not project points to a drawing plane Punkt nicht auf Zeichenebene projizieren - + If checked, objects will be copied instead of moved (C) Falls gesetzt, Objekte werden kopiert anstatt verschoben (C) - + Line Color Linienfarbe - + Face Color Oberflächenfarbe - + Line Width Linienbreite - + Font Size Schriftgröße - + Apply to selected objects Auf selektierte Objekte anwenden - + Toggles Construction Mode Konstruktionsmodus umschalten - + Select Plane Ebene auswählen - + Line Linie - + Circle Kreis - + Center X Mittelpunkt X - + Arc Kreisbogen - + Pick Object Objekt wählen - + draft Command Bar Entwurf Befehlsleiste - + Pick a face to define the drawing plane Zum Definieren der Arbeitsebene Oberfläche auswählen - + Pick first point: Ersten Punkt auswählen: - + Pick next point: Nächsten Punkt auswählen: - + Pick next point, or (F)inish or (C)lose: Nächsten Punkt auswählen, Beenden (F) oder S(c)hließen : - + Pick opposite point: Gegenüberliegenden Punkt auswählen: - + Pick center point: Mittelpunkt auswählen: - + Pick radius: Radius auswählen: - + Pick start angle: Startwinkel auswählen: - + Pick aperture: Wählen Sie Aperture: - + Aperture angle: Aperture angle: - + Pick location point: Einbaupunkt auswählen: - + Select an object to move Ein Objekt zum Bewegen auswählen - + Pick start point: Startpunkt auswählen: - + Pick end point: Endpunkt auswählen: - + Select an object to rotate Objekt zum Drehen auswählen - + Pick rotation center: Rotationsmittelpunkt auswählen: - + Pick base angle: Basiswinkel wählen: - + Pick rotation angle: Drehwinkel auswählen: - + Select an object to offset Objekt zum Versetzen markieren - + Offset only works on one object at a time Versetzen funktioniert nur auf ein Objekt zu einem Zeitpunkt - + Pick distance: Entfernen auswählen: - + Select an object to upgrade - Wählen Sie ein Objekt zum Aktualisieren + Wählen Sie ein Objekt zum Hochstufen - + Select an object to trim/extend Wählen Sie ein Objekt zum Beschneiden / Erweitern - + Select an object to scale Ein Objekt zum Skalieren auswählen - + Pick base point: Basispunkt auswählen: - + Pick scale factor: Skalierungsfaktor auswählen: - + Number of sides Anzahl der Seiten - + &Relative &Relativ - + &Undo &Rückgängig - + &Close S&chließen - + &Copy &Kopieren - + If checked, command will not finish until you press the command button again Falls aktiviert, wird Befehl nicht beendet bis Sie den Befehlsknopf nochmals drüchen - + &Continue &Continue - - Wire has been closed - - Linienzug wurde geschlossen - - - - + Last point has been removed Letzter Punkt wurde entfernt - + Spline has been closed Spline wurde geschlossen - + Edges don't intersect! Kanten überschneiden nicht! - + Cannot offset this object type Dieser Objekttyp kann nicht versetzt werden - + Found groups: closing each open object inside Gruppen gefunden: jedes Objekt innerhalb wird geschlossen - + Found 2 objects: fusing them 2 Objekte gefunden: werden vereinigt - + Found 1 non-parametric objects: draftifying it 1 nicht-parametrisches Objekt gefunden: erstelle Entwurfsobjekt daraus - + Found 1 closed sketch object: making a face from it 1 geschlossenes Skizzen-Objekt gefunden: erstelle eine Fläche daraus - - Found closed wires: making faces - - Geschlossene Linienzüge gefunden: erstelle Flächen daraus - - - - + Found 1 open wire: closing it 1 offenen Linienzug gefunden: schließen - + Found several edges: wiring them Mehrere Kanten gefunden: erstelle eine Linienzug daraus - + Found several non-connected edges: making compound Mehrere nicht-verbundene Kanten gefunden: erstelle ein Verbund-Objekt - + Found several non-treatable objects: making compound Mehrere nicht behandelebare Objekte gefunden: erstelle Verbund-Objekt - + Found 1 parametric object: breaking its dependencies 1 parametrisches Objekt gefunden: löse Abhängigkeiten auf - + Found 2 objects: subtracting them 2 Objekte gefunden: subtrahieren - + Found several faces: splitting them Mehrere Flächen gefunden: aufbrechen - + Found several objects: subtracting them from the first one Mehrere Objekte gefunden: diese vom ersten Objekt subtrahieren - + Found 1 face: extracting its wires 1 Fläche gefunden: seine Linienzüge extrahieren - + Found only wires: extracting their edges Nur Linienzüge gefunden: extrahieren ihre Kanten - + This object type is not editable Dieser Objekttyp kann nicht bearbeitet werden - + Active object must have more than two points/nodes Aktives Objekt muss mehr als zwei Punkte / Knoten haben - + Finishes the current drawing or editing operation (F) Momentanen Zeichnungs- oder Editier-Operation (F) beenden - + Add points to the current object Punkte zu momentanem Objekt hinzufügen - + Remove points from the current object Punkte von momentanem Objekt entfernen - + F&illed - F&illed + Gefüllt - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) - Check this if the object should appear as filled, otherwise it will appear as wireframe (i) + Hier anwählen falls das Objekt gefüllte erscheinen soll, sonst erscheint es als Drahtgitter (i) - + &Finish - &Beenden + &Fertig - + If checked, an OCC-style offset will be performed instead of the classic offset - If checked, an OCC-style offset will be performed instead of the classic offset + Wenn gesetzt, wird ein OCC-Stil Offset anstatt eines klassischen Offsets angewendet - + &OCC-style offset - &OCC-style offset + OCC-Stil Offset - + &Wipe - &Wipe + &Radieren - + Wipes the existing segments of this line and starts again from the last point (W) - Wipes the existing segments of this line and starts again from the last point (W) + Löscht vorhandene Segmente dieser Linie und beginnt nochmals vom letzten Punkt (W) - + Point Punkt - + Distance Abstand - + Edit Bearbeiten - - Create Wire - Create Wire - - - + Create BSpline - Create BSpline + BSpline erstellen - + Create Rectangle - Create Rectangle + Rechteck erstellen - + Create Circle - Create Circle + Kreis erstellen - + Create Arc - Create Arc + Bogen erstellen - + Create Polygon Polygon erstellen - + Create Text Text erstellen - + Create Dimension - Create Dimension + Dimension erstellen - - Delete Measurement - Delete Measurement - - - + Copy Kopieren - + Move Verschieben - + Change Style - Change Style + Stil Ändern - + Rotate Drehen - + Found 1 solidificable object: solidifying it - Found 1 solidificable object: solidifying it - + 1 Objekt mit Möglichkeit zum verfestigen gefunden. Wird verfestigt - + Found several objects or faces: making a parametric face - Found several objects or faces: making a parametric face - + Mehrere Objekte oder Oberflächen gefunden: Mache parametrische Oberfläche - + Found objects containing curves: fusing them - Found objects containing curves: fusing them - + Fand Objekte mit enthaltenen Kurven: Werde sie verschmelzen - + Found several objects: fusing them - Found several objects: fusing them - + Fand mehrere Objekte: Verschmelze sie - + Scale Skalieren - + Trim Trim - + Start Angle - Start Angle + Startwinkel - + Aperture - Aperture + Blende - + Installed Macros - Installed Macros + Installierte Makros - - Draft tools - Draft tools - - - - Draft - Draft - - - - Display options - Display options - - - + Wire tools - Wire tools + Drahtwerkzeuge + + + + DWire + DWire + + + + Create DWire + Entwurfsdraht (DWire) erstellen + + + + DWire has been closed + + DWire wurde geschlossen + + + + BSpline + BSpline + + + + Rectangle + Rechteck + + + + Polygon + Polygon + + + + Text + Text + + + + Dimension + Abmessung + + + + No upgrade available for this object + + Kein Upgrade für dieses Objekt verfügbar + + + + Couldn't upgrade these objects + + Diese Objekte konnten nicht aktualisiert werden + + + + One wire is not planar, upgrade not done + + Ein Draht ist nicht planar, Upgrade nicht ausgeführt + + + + Found a closed wire: making a face + + Geschlossener Draht gefunden: Erzeuge Fläche + + + + Found 1 open edge: making a line + + Eine offene Kante gefunden: Erzeuge Linie + + + + Found 1 circular edge: making a circle + + Eine kreisförmige Kante gefunden: Erzeuge Kreis + + + + No more downgrade possible + + Kein weiteres Downgrade möglich + + + + Draft creation tools + Werkzeuge zur Erstellung von Entwürfen + + + + Draft modification tools + Werkzeuge zur Bearbeitung von Entwürfen + + + + &Draft + &Entwurf + + + + Context tools + Kontextwerkzeuge diff --git a/src/Mod/Draft/Resources/translations/Draft_es-ES.qm b/src/Mod/Draft/Resources/translations/Draft_es-ES.qm new file mode 100644 index 000000000..d3a644b76 Binary files /dev/null and b/src/Mod/Draft/Resources/translations/Draft_es-ES.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_es.ts b/src/Mod/Draft/Resources/translations/Draft_es-ES.ts old mode 100755 new mode 100644 similarity index 57% rename from src/Mod/Draft/Resources/translations/Draft_es.ts rename to src/Mod/Draft/Resources/translations/Draft_es-ES.ts index 961b522c7..0cbdd22d9 --- a/src/Mod/Draft/Resources/translations/Draft_es.ts +++ b/src/Mod/Draft/Resources/translations/Draft_es-ES.ts @@ -4,12 +4,12 @@ Draft_AddPoint - + Add Point Añadir punto - + Adds a point to an existing wire/bspline Agrega un punto a un alambre/bspline existente @@ -17,25 +17,25 @@ Draft_AddToGroup - + Adds the selected object(s) to an existing group Agrega el(los) objeto(s) seleccionado(s) a un grupo existente - + Add to group... - Add to group... + Agregar a grupo... Draft_ApplyStyle - + Apply Current Style Aplicar Estilo Actual - + Applies current line width and color to selected objects Aplica el ancho de línea y color actuales a los objetos seleccionados @@ -43,25 +43,38 @@ Draft_Arc - + Arc Arco - + Creates an arc. CTRL to snap, SHIFT to constrain Crea un arco. CTRL para forzar, SHIFT para restringir + + Draft_Array + + + Array + Array + + + + Creates a polar or rectangular array from a selected object + Creates a polar or rectangular array from a selected object + + Draft_BSpline - + B-Spline B-Spline - + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain Crea una B-spline de puntos múltiples. CTRL para ajustar, SHIFT para restringir @@ -69,25 +82,38 @@ Draft_Circle - + Circle Circunferencia - + Creates a circle. CTRL to snap, ALT to select tangent objects Crea una circunferencia. CTRL para forzar, ALT para seleccionar objetos tangentes + + Draft_Clone + + + Clone + Clone + + + + Clones the selected object(s) + Clones the selected object(s) + + Draft_CloseLine - + Close Line Cerrar línea - + Closes the line being drawn Cierra la línea que se está dibujando @@ -95,12 +121,12 @@ Draft_DelPoint - + Remove Point Eliminar punto - + Removes a point from an existing wire or bspline Quita un punto de un alambre o bspline existente @@ -108,12 +134,12 @@ Draft_Dimension - + Dimension Cota - + Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment Crea una cota. CTRL para forzar, SHIFT para restringir, ALT para seleccionar un segmento @@ -121,25 +147,33 @@ Draft_Downgrade - + Downgrade Reducir - + Explodes the selected objects into simpler objects, or subtract faces descompone los objetos seleccionados en objetos simples, o resta caras + + Draft_Draft2Sketch + + + Draft to Sketch + Draft to Sketch + + Draft_Drawing - + Drawing Dibujo - + Puts the selected objects on a Drawing sheet. Poner los objetos seleccionados en una hoja de Dibujo. @@ -147,12 +181,12 @@ Draft_Edit - + Edit Editar - + Edits the active object Edita el objeto activo @@ -160,12 +194,12 @@ Draft_FinishLine - + Finish line Terminar línea - + Finishes a line without closing it Termina una línea sin cerrarla @@ -173,12 +207,12 @@ Draft_Line - + Line Línea - + Creates a 2-point line. CTRL to snap, SHIFT to constrain Crea una línea de 2 puntos. CTRL para forzar, SHIFT para restringir @@ -186,12 +220,12 @@ Draft_Move - + Move Mover - + Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy Mueve los objetos seleccionados entre 2 puntos. CTRL para forzar, SHIFT para restringir, ALT para copiar @@ -199,25 +233,38 @@ Draft_Offset - + Offset Equidistancia - + Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy Crea una equidistante al objeto activo. CTRL para forzar, SHIFT para restringir, ALT para copiar + + Draft_Point + + + Point + Punto + + + + Creates a point object + Creates a point object + + Draft_Polygon - + Polygon Polígono - + Creates a regular polygon. CTRL to snap, SHIFT to constrain Crea un polígono regular. CTRL para forzar, SHIFT para restringir @@ -225,12 +272,12 @@ Draft_Rectangle - + Rectangle Rectángulo - + Creates a 2-point rectangle. CTRL to snap Crea un rectángulo dado por 2 puntos. CTRL para forzar @@ -238,12 +285,12 @@ Draft_Rotate - + Rotate Girar - + Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy Gira los objetos seleccionados. CTRL para forzar, SHIFT para restringir, ALT para crear una copia @@ -251,12 +298,12 @@ Draft_Scale - + Scale Escalar - + Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy Escala los objetos seleccionados desde un punto base. CTRL para forzar, SHIFT para restringir, ALT para copiar @@ -264,25 +311,25 @@ Draft_SelectGroup - + Select group - Select group + Seleccionar grupo - + Selects all objects with the same parents as this group - Selects all objects with the same parents as this group + Selecciona todos los objetos con los mismos padres de este grupo Draft_SelectPlane - + SelectPlane Seleccionar plano - + Select a working plane for geometry creation Selecciona un plano de trabajo para crear geometría @@ -290,25 +337,43 @@ Draft_Shape2DView - + Shape 2D view - Shape 2D view + Vista de forma 2D - + Creates Shape 2D views of selected objects - Creates Shape 2D views of selected objects + Crea vistas de formas 2D de los objetos seleccionados + + + + Convert bidirectionally between Draft and Sketch objects + Convert bidirectionally between Draft and Sketch objects + + + + Draft_ShowSnapBar + + + Show Snap Bar + Show Snap Bar + + + + Shows Draft snap toolbar + Shows Draft snap toolbar Draft_Text - + Text Texto - + Creates an annotation. CTRL to snap Crea una anotación. CTRL para forzar @@ -316,12 +381,12 @@ Draft_ToggleConstructionMode - + Toggle construcion Mode Conmutar modo de construcción - + Toggles the Construction Mode for next objects. Conmuta el modo de construcción para los próximos objetos. @@ -329,51 +394,77 @@ Draft_ToggleContinueMode - + Toggle continue Mode - Toggle continue Mode + Activa o desactiva el modo continuar - + Toggles the Continue Mode for next commands. - Toggles the Continue Mode for next commands. + Activa o desactiva el modo de continuar para los comandos siguientes. Draft_ToggleDisplayMode - + Toggle display mode Alternar modo de exhibición - + Swaps display mode of selected objects between wireframe and flatlines Intercambia el modo de exhibir los objectos selecionados entre modelo de alambre and líneas planas + + Draft_ToggleGrid + + + Toggle Grid + Toggle Grid + + + + Toggles the Draft gid on/off + Toggles the Draft gid on/off + + + + Draft_ToggleSnap + + + Toggle snap + Toggle snap + + + + Toggles Draft snap on or off + Toggles Draft snap on or off + + Draft_Trimex - + Trimex Recortar o extender - + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts - Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts + Recorta o extiende el objeto seleccionado, solo se puede aplicar a caras. CTRL ajustes, SHIFT restringe el segmento actual o normal, ALT invierte Draft_UndoLine - + Undo last segment Deshacer el último segmento - + Undoes the last drawn segment of the line being drawn Deshace el último segmento de la línea que se está dibujando @@ -381,12 +472,12 @@ Draft_Upgrade - + Upgrade Aumentar - + Joins the selected objects into one, or converts closed wires to filled faces, or unite faces Junta los objetos seleccionados en uno, o convierte los contornos cerrados en caraqs, o une caras @@ -394,25 +485,25 @@ Draft_Wire - - Wire - Contorno + + DWire + DWire - - Creates a multiple-point wire. CTRL to snap, SHIFT to constrain - Crea un contorno de múltiples puntos. CTRL para forzar, SHIFT para restringir + + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain Draft_WireToBSpline - + Wire to BSpline Alambre a BSpline - + Converts between Wire and BSpline Conversión entre alambre y BSpline @@ -425,137 +516,137 @@ Configuración general de Croquizado - + Default color Color predeterminado - + the default color for new objects el color predeterminado para objetos nuevos - + Default linewidth Ancho de línea predeterminado - + the default linewidth for new objects Grosor de linea predeterminado para nuevos objetos - + Snap color Ajustar el color - + the default color for snap symbols el color predeterminado para símbolos de ajuste rápido - + Construction color Color de la constucción - + This is the default color for objects being drawn while in construction mode. Este es el color predeterminado para objetos que están siendo dibujados en el modo de construcción. - + This is the default group name for construction geometry Este es el nombre del grupo predeterminado para la geometría de la construcción - + Construction Construcción - + check this if you want to use the color/linewidth from the toolbar as default Seleccione esta opción si desea utilizar el color/anchura de línea de la barra de herramientas por defecto - + Save current color and linewidth across sessions Preservar color y ancho de línea presentes de una session a otra - + If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode Si esto está marcado, el modo de copiar se preservará de un comando a otro; de otro manera, los comandos siempre empezarán en el modo de "sin-copiar" - + Global copy mode Modo de copia global - + If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. Si esto está seleccionado, usted siempre ajustará contra objectos existentes mientras dibuje. Si no, usted ajustará solo cuando presione CTRL. - + If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe Si esto está seleccionado, los objetos aparecerán rellenados, por defecto; de otra manera, aparecerán como modelos de alambre - + Fill objects by default Rellenar objetos por defecto - + Default working plane Plano de trabajo predeterminado - + None Ninguno - + XY (Top) XY (Superior) - + XZ (Front) XZ (Frontal) - + YZ (Side) YZ (Lateral) - + The number of decimals in internal coordinates operations (for ex. 3 = 0.001) El número de decimales en las operaciones de coordenadas internas (por ej. 3 = 0.001) - + Default text height Altura predeterminada del texto - + Default height for texts and dimensions Altura predeterminada para los textos y las dimensiones - + Default text font Fuente predeterminada del texto - + This is the default font name for all Draft texts and dimensions. It can be a font name such as "Arial", a default style such as "sans", "serif" or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style @@ -563,22 +654,22 @@ such as "Arial:Bold" Este es el nombre de la fuente por defecto para todos los textos y acotaciones del Croquizado. Puede ser un nombre de fuente como "Arial", un estilo predeterminado como "sans", "serif" o "mono", o una familia como "Arial, Helvetica, sans "o un nombre con un estilo como "Arial:Negrita" - + Arial Arial - + Default template sheet Hoja de plantilla predeterminada - + The default template to use when creating a new drawing sheet La plantilla por defecto a utilizar cuando se crea una nueva hoja de dibujo - + Import style Importación de estilo @@ -590,17 +681,17 @@ If color mapping is choosed, you must choose a color mapping file containing a t Este es el método elegido para la importación o la traducción objeto de color DXF en FreeCAD. Si la asignación de color es elegido, debe seleccionar un archivo de asignación de colores que contiene una tabla de traducción para convertir los colores en grosores de linea. - + None (fastest) Ninguno (rápido) - + Use default color and linewidth Usar color y grosor de línea predeterminado - + Original color and linewidth Color y anchura de línea originales @@ -610,52 +701,52 @@ If color mapping is choosed, you must choose a color mapping file containing a t Color asignado a ancho de línea - + if this is checked, paper space objects will be imported too si esta marcada, los objetos del espacio papel se importarán también - + Import layouts Importar presentaciones - + if this is unchecked, texts/mtexts won't be imported Si esto no está seleccionado, texts/mtexts no serán importados - + Color mapping file Archivo de mapeo de color - + The color mapping file for translating dxf colors into linewidths El archivo de asignación de colores para traducir colores en dxf a grosor de líneas - + Max Spline Segment Máximo de segmentos en spline - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Al exportar tiras a DXF, las tiras serán transformadas en polilíneas. Este valor es la longitud máxima de cada uno de los segmentos de la polilínea. Si es 0, entonces toda la tira se tratará como un segmento recto. - + This is the method choosed for importing SVG object color into FreeCAD. Este es el método escogido para la importación de color del objeto SVG a FreeCAD. - + Check this if you want the areas (3D faces) to be imported too. Seleccioné esta opción si usted desea que las áreas (caras 3D) también sean importadas. - + Import OCA areas Importar areas OCA @@ -665,83 +756,83 @@ If color mapping is choosed, you must choose a color mapping file containing a t Opciones generales - + Construction group name Nombre de grupo de construcción - + Tolerance Tolerancia - + This is the value used by functions that use a tolerance. Values with differences below this value will be treated as same. Este es el valor utilizado por funciones que utilizan una tolerancia. Valores con diferencias por debajo de este valor se tratarán de la misma manera. - + Dimensions & Leader arrow style Estilo de dimensiones y punta de flecha - + Dot 5 Punto 5 - + Dot 7 Punto 7 - + Dot 9 Punto 9 - + Circle 5 Círculo 5 - + Circle 7 Círculo 7 - + Circle 9 Círculo 9 - + Slash 5 Barra 5 - + Slash 7 Barra 7 - + Slash 9 Barra 9 - + Backslash 5 Barra invertida 5 - + Backslash 7 Barra invertida 7 - + Backslash 9 Barra invertida 9 @@ -756,202 +847,202 @@ Values with differences below this value will be treated as same. Opciones de formato DXF - + Import texts and dimensions Importar textos y dimensiones - + Check this if you want the non-named blocks (beginning with a *) to be imported too Marque esta opción si desea que los bloques sin nombre (que comienzan con un *) sean importados también - + Import *blocks Importar *bloques - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Si está seleccionada, FreeCAD intentará unir objetos coincidentes en alambres. Espere, esto puede tomar un tiempo... - + Join geometry Unir geometría - + SVG format options Opciones de formato SVG - + OCA format options Opciones de formato OCA - + Alternate SVG Patterns location - Alternate SVG Patterns location + Ubicación alternativa de patrones SVG - + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns - Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns + Aquí puede especificar un directorio que contenga archivos SVG con <pattern> definiciones para añadir a los patrones estándar de impresion de sombreado - + Draft interface mode - Draft interface mode + Modo de interfaz de bosquejo - + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction - + Toolbar - Toolbar + Barra de herramientas - + Taskview - Taskview + Vista de tarea - + Constrain mod Constrain mod - + The Constraining modifier key The Constraining modifier key - + shift - shift + Mayús - + ctrl ctrl - + alt alt - + Snap mod - Snap mod + Ajustes del mod - + The snap modifier key - The snap modifier key + La tecla para modificar ajustes - + Alt mod - Alt mod + Alt - + The alt modifier key - The alt modifier key + La tecla modificadora alt - + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. - Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. + Normalmente, después de copiar objetos, las copias quedan seleccionadas. Si esta opción está activada, los objetos base serán seleccionados en su lugar. - + Select base objects after copying - Select base objects after copying + Seleccione los objetos base después de copiar - + Always snap to objects (disable snap mod key) - Always snap to objects (disable snap mod key) + Siempre ajustar a objetos (deshabilitar tecla modificadora ajustar) - + The radius for snapping to special points. Set to 0 for no distance (infinite) - The radius for snapping to special points. Set to 0 for no distance (infinite) + El radio para ajustar a puntos especiales. Establecer en 0 para ninguna distancia (infinito) - + Snap range - Snap range + Rango de ajuste - + px px - + If checked, a grid will appear when drawing - If checked, a grid will appear when drawing + Si está activada, aparecerá una rejilla al dibujar - + Use grid - Use grid + Usar la rejilla - + Grid spacing - Grid spacing + Espaciado de la cuadrícula - + The spacing between each grid line - The spacing between each grid line + El espaciado entre líneas de cuadrícula - + Main lines every - Main lines every + Líneas principales cada - + Mainlines will be drawn thicker. Specify here how many squares between mainlines. - Mainlines will be drawn thicker. Specify here how many squares between mainlines. + Las líneas principales se dibujarán más gruesas. Especifique aquí cuántos cuadros dejar entre líneas principales. - + Internal precision level Nivel de precisión interno - + Dimensions precision level Nivel de precisión de las dimensiones - + Vertical dimensions text orientation - Vertical dimensions text orientation + Orientación del texto de las cotas verticales - + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. - This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. + Esta es la orientación de los textos de las cotas cuando estas son verticales. El valor predeterminado es a la izquierda, que es el estándar ISO. - + Left (ISO standard) Izquierda (norma ISO) - + Right Derecha @@ -961,769 +1052,964 @@ Values with differences below this value will be treated as same. Crear objetos paramétricos - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable - if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable + Si está marcado, los objetos de la misma capa se unirán en Draft Blocks, volviendo la visualización más rápida, pero haciéndolos menos editables - + Group layers into blocks - Group layers into blocks + Agrupar capas en bloques - + If this is checked, all objects containing faces will be exported as 3d polyfaces - If this is checked, all objects containing faces will be exported as 3d polyfaces + Si marcado, todos los objetos que contienen caras serán exportados como superficies poligonales 3D - + Export 3D objects as polyface meshes - Export 3D objects as polyface meshes + Exporta objetos 3D como formas poligonales + + + + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + + + + Hide Draft workbench + Hide Draft workbench + + + + If this is checked, snapping will not occur against objects with more than the indicated number of edges + If this is checked, snapping will not occur against objects with more than the indicated number of edges + + + + Snap maximum + Snap maximum + + + + Maximum number of edges to be considered for snapping + Maximum number of edges to be considered for snapping + + + + Maximum number of edges + Maximum number of edges + + + + If checked, the Snap toolbar will be shown whenever you use snapping + If checked, the Snap toolbar will be shown whenever you use snapping + + + + Show Draft Snap toolbar + Show Draft Snap toolbar + + + + Hide Draft snap toolbar after use + Hide Draft snap toolbar after use + + + + if checked, a widget indicating the current working plane orientation appears during drawing operations + if checked, a widget indicating the current working plane orientation appears during drawing operations + + + + Show Working Plane tracker + Show Working Plane tracker + + + + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + + + + Always show + Mostrar siempre + + + + Create Sketches + Crear Dibujos + + + + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + + + + Use standard font size for texts + Use standard font size for texts + + + + If this is checked, hatches will be converted into simple wires + If this is checked, hatches will be converted into simple wires + + + + Import hatch boundaries as wires + Import hatch boundaries as wires + + + + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + + + + Render polylines with width + Render polylines with width + + + + Export Style + Estilo de exportación + + + + Style of SVG file to write when exporting a Sketch. + Estilo de archivo SVG para escribir cuando se exporta un dibujo. + + + + Translated (for print & display) + Traducido (para imprimir & pantalla) + + + + Raw (for CAM) + Raw (for CAM) + + + + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + Al exportar vistas SVG, hacer todos los degradés de lineas blancas aparecer en negro, para mejor legibilidad contra fondos blancos + + + + Translate white line color to black + Interpretar la línea blanca como negra draft - + active command: Comando activo: - + None Ninguno - + Active Draft command Activar comando de croquizado - + X coordinate of next point Coordenada X del siguiente punto - + X X - + Y Y - + Z Z - + Y coordinate of next point Coordenada Y del siguiente punto - + Z coordinate of next point Coordenada Z del siguiente punto - + Radius Radio - + Radius of Circle radio de la circunferencia - + Coordinates relative to last point or absolute (SPACE) Coordenadas relativas al último punto o absolutas (ESPACIO) - + Undo the last segment (CTRL+Z) Deshace el último segmento (CTRL+Z) - + Finishes and closes the current line (C) Termina y cierra la línea actual (C) - + Offset Equidistancia - + XY XY - + Select XY plane Seleccionar plano XY - + XZ XZ - + Select XZ plane Seleccionar plano XZ - + YZ YZ - + Select YZ plane Seleccionar plano YZ - + View Vista - + Select plane perpendicular to the current view Seleccionar plano perpendicular a la vista actual - + Do not project points to a drawing plane No proyectar puntos al plano de dibujo - + If checked, objects will be copied instead of moved (C) Si está activada, los objetos serán copiados en lugar de movidos (C) - + Line Color Color de línea - + Face Color Color de cara - + Line Width Grosor de línea - + Font Size Tamaño de fuente - + Apply to selected objects Aplicar a los objetos seleccionados - + Toggles Construction Mode Conmutar el modo de construcción - + Select Plane Seleccionar plano - + Line Línea - + Circle Circunferencia - + Center X Centro X - + Arc Arco - + Pick Object Designar objeto - + draft Command Bar Barra de comandos de croquizado - + Pick a face to define the drawing plane Designar una cara para definir el plano de dibujo - + Pick first point: Designar el primer punto: - + Pick next point: Designar el siguiente punto: - + Pick next point, or (F)inish or (C)lose: designar el siguiente punto, o (F) terminar o (C) cerrar: - + Pick opposite point: Designar punto de enfrente: - + Pick center point: Designar punto central: - + Pick radius: Designar radio: - + Pick start angle: Designar ángulo de inicio: - + Pick aperture: Elija apertura: - + Aperture angle: Ángulo de apertura: - + Pick location point: Designar localización de punto: - + Select an object to move Seleccionar un objeto para mover - + Pick start point: Designar punto de inicio: - + Pick end point: Designar punto final: - + Select an object to rotate Seleccionar un objeto para girar - + Pick rotation center: Designar centro de rotación: - + Pick base angle: Designar ángulo base: - + Pick rotation angle: Designar ángulo de rotación: - + Select an object to offset Seleccionar un objeto para equidistancia - + Offset only works on one object at a time Equidistancia solo funciona con un objeto de cada vez - + Pick distance: Designar distancia: - + Select an object to upgrade Selecciona un objeto para aumentar - + Select an object to trim/extend Seleccionar un objeto para recortar / extender - + Select an object to scale Seleccionar un objeto para escalar - + Pick base point: Designar punto base: - + Pick scale factor: Designar factor de escala: - + Number of sides Número de lados - + &Relative &Relativo - + &Undo &Deshacer - + &Close &Cerrar - + &Copy &Copiar - + If checked, command will not finish until you press the command button again Si está activado, el comando no terminará hasta que vuelva a pulsar el botón de comando - + &Continue &Continuar - - Wire has been closed - - Se ha cerrado el alambre - - - + Last point has been removed Se ha eliminado el último punto - + Spline has been closed Se ha cerrado la spline - + Edges don't intersect! ¡Las aristas no se pueden intersecar! - + Cannot offset this object type No se puede compensar este tipo de objeto - + Found groups: closing each open object inside Encontrados grupos: cerrar cada objeto abierto dentro del grupo - + Found 2 objects: fusing them Encontrados 2 objetos: Fusionense ambos - + Found 1 non-parametric objects: draftifying it Encontrados objetos no paramétricos 1: proyéctelos - + Found 1 closed sketch object: making a face from it Encontrado 1 objeto del tipo croquis cerrado: hacer una cara de el - - Found closed wires: making faces - - Encontrados alambres cerrados: haciendo caras - - - + Found 1 open wire: closing it Encontrado 1 cable abierto: cierrelo - + Found several edges: wiring them Encontradas varias aristas: Conviertalas en alambres - + Found several non-connected edges: making compound Encontradas varias aristas no conectadas: Combinándolas - + Found several non-treatable objects: making compound Encontrados varios objetos no tratables: Combinándolos - + Found 1 parametric object: breaking its dependencies Encontrado un objeto paramétrico: romper sus dependencias - + Found 2 objects: subtracting them Encontrados 2 objetos: Restarlos - + Found several faces: splitting them Encontradas varias caras: partirlas - + Found several objects: subtracting them from the first one Encontrados varios objetos: restarlos respecto al primero - + Found 1 face: extracting its wires Encontrada 1 cara: extrayendo sus alambres - + Found only wires: extracting their edges Encontradas sólo alambres: extrayendo sus aristas - + This object type is not editable Este tipo de objeto no es editable - + Active object must have more than two points/nodes El objeto activo debe tener más de dos puntos/nodos - + Finishes the current drawing or editing operation (F) - Finishes the current drawing or editing operation (F) + Finaliza la operación actual de edición o dibujo (F) - + Add points to the current object Agregar puntos al objeto actual - + Remove points from the current object Eliminar puntos del objeto actual - + F&illed - F&illed + Llenado - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) - Check this if the object should appear as filled, otherwise it will appear as wireframe (i) + Marca esto si el objeto debe aparecer lleno, de otra manera aparecerá como líneas (i) - + &Finish - &Finish + Terminar - + If checked, an OCC-style offset will be performed instead of the classic offset - If checked, an OCC-style offset will be performed instead of the classic offset + Si marcado, una offset estilo OCC será realizada en vez del offset clásico - + &OCC-style offset - &OCC-style offset + Salida estilo OCC - + &Wipe - &Wipe + Borrar - + Wipes the existing segments of this line and starts again from the last point (W) - Wipes the existing segments of this line and starts again from the last point (W) + Borra los segmentos existentes de esta línea y comienza de nuevo desde el último punto (W) - + Point Punto - + Distance Distancia - + Edit Editar - - Create Wire - Create Wire - - - + Create BSpline - Create BSpline + Crear BSpline - + Create Rectangle - Create Rectangle + Crear Rectángulo - + Create Circle - Create Circle + Crear Círculo - + Create Arc - Create Arc + Crear Arco - + Create Polygon - Create Polygon + Crear Polígono - + Create Text Crear texto - + Create Dimension - Create Dimension + Crear dimensión - - Delete Measurement - Delete Measurement - - - + Copy - Copy + Copiar - + Move Mover - + Change Style Cambiar estilo - + Rotate Girar - + Found 1 solidificable object: solidifying it - Found 1 solidificable object: solidifying it - + Encontrado 1 objeto solidificable: solidificándolo - + Found several objects or faces: making a parametric face - Found several objects or faces: making a parametric face + Encontrados varios objetos o caras: haciendo una cara paramétrica - + Found objects containing curves: fusing them - Found objects containing curves: fusing them - + Los objetos encontrados que contienen curvas: se fusionarán - + Found several objects: fusing them - Found several objects: fusing them - + Encontraron varios objetos: se fusionarán - + Scale Escalar - + Trim - Trim + Recortar - + Start Angle - Start Angle + Ángulo inicial - + Aperture - Aperture + Apertura - + Installed Macros - Installed Macros + Macros instaladas - - Draft tools - Draft tools - - - - Draft - Draft - - - - Display options - Display options - - - + Wire tools - Wire tools + Herramientas de alambre + + + + DWire + DWire + + + + Create DWire + Create DWire + + + + DWire has been closed + + DWire has been closed + + + + + BSpline + BSpline + + + + Rectangle + Rectángulo + + + + Polygon + Polígono + + + + Text + Texto + + + + Dimension + Cota + + + + No upgrade available for this object + + Ninguna actualización disponible para este objeto + + + + Couldn't upgrade these objects + + No se pudo actualizar estos objetos + + + + One wire is not planar, upgrade not done + + One wire is not planar, upgrade not done + + + + + Found a closed wire: making a face + + Encontró un alambre cerrado: haciendo una cara + + + + Found 1 open edge: making a line + + Encontrado 1 arista abierta: haciendo una línea + + + + Found 1 circular edge: making a circle + + Encontrado 1 arista circular: haciendo un círculo + + + + No more downgrade possible + + No es posible más degradación + + + + Draft creation tools + Herramientas de creación de bosquejo + + + + Draft modification tools + Herramientas de modificación de bosquejo + + + + &Draft + &Bosquejo + + + + Context tools + Herramientas contextuales diff --git a/src/Mod/Draft/Resources/translations/Draft_es.qm b/src/Mod/Draft/Resources/translations/Draft_es.qm deleted file mode 100644 index 237cacd7f..000000000 Binary files a/src/Mod/Draft/Resources/translations/Draft_es.qm and /dev/null differ diff --git a/src/Mod/Draft/Resources/translations/Draft_fi.qm b/src/Mod/Draft/Resources/translations/Draft_fi.qm index 020b05e98..3ee122ffd 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_fi.qm and b/src/Mod/Draft/Resources/translations/Draft_fi.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_fi.ts b/src/Mod/Draft/Resources/translations/Draft_fi.ts index 38e04691c..3cd3890ab 100644 --- a/src/Mod/Draft/Resources/translations/Draft_fi.ts +++ b/src/Mod/Draft/Resources/translations/Draft_fi.ts @@ -4,90 +4,116 @@ Draft_AddPoint - + Add Point - Add Point + Lisää piste - + Adds a point to an existing wire/bspline - Adds a point to an existing wire/bspline + Lisää pisteen olemassa olevaan lankaan/bézier-käyräviivaan Draft_AddToGroup - + Adds the selected object(s) to an existing group - Adds the selected object(s) to an existing group + Lisää valittu objekti(t) aiemmin luotuun ryhmään - + Add to group... - Add to group... + Lisää ryhmä... Draft_ApplyStyle - + Apply Current Style - Apply Current Style + Käytä Nykyistä tyyliä - + Applies current line width and color to selected objects - Applies current line width and color to selected objects + Koskee nykyisen viivanleveyden ja värin valittuja objekteja Draft_Arc - + Arc Kaari - + Creates an arc. CTRL to snap, SHIFT to constrain Luo kaaren. CTRL kohdistaa kohteisiin, SHIFT luo rajoitteita - Draft_BSpline + Draft_Array - - B-Spline - B-Spline + + Array + Array - + + Creates a polar or rectangular array from a selected object + Creates a polar or rectangular array from a selected object + + + + Draft_BSpline + + + B-Spline + Bézier-käyräviiva + + + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain - Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain + Luo usean pisteen bézier-käyräviivaa. CTRL kohdistaa. SHIFT rajoittaa Draft_Circle - + Circle Ympyrä - + Creates a circle. CTRL to snap, ALT to select tangent objects Luo ympyrän. CTRL kohdistaa kohteeseen, ALT valitsee tangentin objekteille + + Draft_Clone + + + Clone + Clone + + + + Clones the selected object(s) + Clones the selected object(s) + + Draft_CloseLine - + Close Line Sulje Viiva - + Closes the line being drawn Sulkee piirretyn viivan @@ -95,64 +121,72 @@ Draft_DelPoint - + Remove Point - Remove Point + Poista piste - + Removes a point from an existing wire or bspline - Removes a point from an existing wire or bspline + Poistaa pisteen olemassa olevasta langasta tai bézier-käyräviivasta Draft_Dimension - + Dimension Mitta - + Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment - Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment + Luo mitta. CTRL-kohdista, SHIFT-rajoite, ALT-valittu segmentti Draft_Downgrade - + Downgrade - Downgrade + Alennettava - + Explodes the selected objects into simpler objects, or subtract faces - Explodes the selected objects into simpler objects, or subtract faces + Räjäyttää valitut objektit yksinkertaisiksi objekteiksi tai vahentää pintoja + + + + Draft_Draft2Sketch + + + Draft to Sketch + Draft to Sketch Draft_Drawing - + Drawing - Drawing + Piirustus - + Puts the selected objects on a Drawing sheet. - Puts the selected objects on a Drawing sheet. + Siirtää valitut objektit piirustuksen arkille. Draft_Edit - + Edit Muokkaa - + Edits the active object Muokkaa aktiivista objektia @@ -160,12 +194,12 @@ Draft_FinishLine - + Finish line - Finish line + Viimeistele viiva - + Finishes a line without closing it Viimeistele viiva sulkematta sitä @@ -173,12 +207,12 @@ Draft_Line - + Line Viiva - + Creates a 2-point line. CTRL to snap, SHIFT to constrain Luo 2 pisteen viiva. CTRL kohdistaa kohteisiin, SHIFT tekee rajoituksia @@ -186,51 +220,64 @@ Draft_Move - + Move - Move + Siirrä - + Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy - Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy + Siirtää valittuja objekteja 2 pisteen välillä. CTRL-kohdista, SHIFT-rajoita, ALT-kopioi Draft_Offset - + Offset - Offset + Siirtymä - + Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy - Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy + Aktiivisen objektin siirrokset. CTRL kohdistaa, SHIFT rajoittaa, ALT kopioi + + + + Draft_Point + + + Point + Piste + + + + Creates a point object + Creates a point object Draft_Polygon - + Polygon Monikulmio - + Creates a regular polygon. CTRL to snap, SHIFT to constrain - Creates a regular polygon. CTRL to snap, SHIFT to constrain + Luo säännöllinen monikulmio. CTRL kohdistaa, SHIFT rajoittaa Draft_Rectangle - + Rectangle Suorakulmio - + Creates a 2-point rectangle. CTRL to snap Luo 2-pisteen suorakaide. CTRL kohdistaa kohteisiin @@ -238,183 +285,227 @@ Draft_Rotate - + Rotate - Rotate + Pyöritä - + Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy - Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy + Pyörittää valittuja objekteja. CTRL-kohdista, SHIFT-rajoita, ALT-luo kopio Draft_Scale - + Scale Skaalaa - + Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy - Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy + Skaalaa valitut objektit peruspisteestä. CTRL kohdistaa, SHIFT rajoittaa, ALT kopioi Draft_SelectGroup - + Select group - Select group + Valitse ryhmä - + Selects all objects with the same parents as this group - Selects all objects with the same parents as this group + Valitsee kaikki objektit, joissa on samat vanhemmat tämän ryhmän kanssa Draft_SelectPlane - + SelectPlane - SelectPlane + Valitse pinta - + Select a working plane for geometry creation - Select a working plane for geometry creation + Valitse työskentelytaso geometrian luomista varten Draft_Shape2DView - + Shape 2D view - Shape 2D view + Muodon 2D näkymä - + Creates Shape 2D views of selected objects - Creates Shape 2D views of selected objects + Luo muodon 2D näkymän valituista objekteista + + + + Convert bidirectionally between Draft and Sketch objects + Convert bidirectionally between Draft and Sketch objects + + + + Draft_ShowSnapBar + + + Show Snap Bar + Show Snap Bar + + + + Shows Draft snap toolbar + Shows Draft snap toolbar Draft_Text - + Text Teksti - + Creates an annotation. CTRL to snap - Creates an annotation. CTRL to snap + Luo huomautus. CTRL-Kohdista Draft_ToggleConstructionMode - + Toggle construcion Mode - Toggle construcion Mode + Vaihda rajoitetilaan - + Toggles the Construction Mode for next objects. - Toggles the Construction Mode for next objects. + Vaihtaa rakennetilaa seuraaville objekteille. Draft_ToggleContinueMode - + Toggle continue Mode - Toggle continue Mode + Kytke jatkuvuustila - + Toggles the Continue Mode for next commands. - Toggles the Continue Mode for next commands. + Kytkee jatkuvuustilan seuraaville komennoille. Draft_ToggleDisplayMode - + Toggle display mode - Toggle display mode + Vaihda näyttö tilaan - + Swaps display mode of selected objects between wireframe and flatlines - Swaps display mode of selected objects between wireframe and flatlines + Vaihtaa näyttötilaan valittujen objektien Lankamallin ja nollaviivojen välillä + + + + Draft_ToggleGrid + + + Toggle Grid + Toggle Grid + + + + Toggles the Draft gid on/off + Toggles the Draft gid on/off + + + + Draft_ToggleSnap + + + Toggle snap + Toggle snap + + + + Toggles Draft snap on or off + Toggles Draft snap on or off Draft_Trimex - + Trimex Trimex - + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts - Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts + Trimmaa tai laajentaa valitut objektit, tai pursottaa yhden pinnan. CTRL kohdistaa, SHIFT rajoittaa nykyistä segmenttiä tai normaalille segmentille, ALT kääntää Draft_UndoLine - + Undo last segment Kumoa viimeinen segmentti - + Undoes the last drawn segment of the line being drawn - Undoes the last drawn segment of the line being drawn + Kumoaa viimeksi piirretyt segmentit piirretystä piirustuksesta Draft_Upgrade - + Upgrade Päivitä - + Joins the selected objects into one, or converts closed wires to filled faces, or unite faces - Joins the selected objects into one, or converts closed wires to filled faces, or unite faces + Yhdistää valitut objektit yhdeksi tai muuntaa suljetut johtimet täytetyiksi pinnoiksi tai yhdistää pinnat Draft_Wire - - Wire - Lanka + + DWire + DWire - - Creates a multiple-point wire. CTRL to snap, SHIFT to constrain - Creates a multiple-point wire. CTRL to snap, SHIFT to constrain + + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain Draft_WireToBSpline - + Wire to BSpline - Wire to BSpline + Lanka Bézier-käyräviivaksi - + Converts between Wire and BSpline - Converts between Wire and BSpline + Muuntaa langan ja Bézier-käyräviivan välillä @@ -425,163 +516,160 @@ Yleiset vedos asetukset - + Default color Oletusväri - + the default color for new objects Oletus väri uusille objekteille - + Default linewidth Oletus viivanleveys - + the default linewidth for new objects - the default linewidth for new objects + oletusarvoinen viivanpaksuus uusille objekteille - + Snap color Kohdista väri - + the default color for snap symbols - the default color for snap symbols + oletusarvoinen väri kohdistettaville symboleille - + Construction color - Construction color + Rakenteen väri - + This is the default color for objects being drawn while in construction mode. - This is the default color for objects being drawn while in construction mode. + Tämä on oletusarvoinen väri objekteille jotka on piirretty rakennetilassa. - + This is the default group name for construction geometry - This is the default group name for construction geometry + Tämä on oletusarvoinen ryhmän nimi rakennetilan geometrioille - + Construction - Construction + Rakenne - + check this if you want to use the color/linewidth from the toolbar as default - check this if you want to use the color/linewidth from the toolbar as default + Valitse tämä, jos haluat käyttää väriä/viivanleveyttä työkalupalkista oletusarvoisesti - + Save current color and linewidth across sessions - Save current color and linewidth across sessions + Tallentaa nykyisen värin ja viivanleveyden eri istuntoihin - + If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode - If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode + Jos tämä vaihtoehto on valittuna, kopiointitila pidetään komennossa, muuten komento aloitetaan aina kopioimattomassa tilassa - + Global copy mode - Global copy mode + Paikallinen kopiointitila - + If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. - If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. + Jos tämä vaihtoehto on valittuna, voit aina kohdistuu aiemmin luotujen objektien piirrosten välillä. Jos näin ei ole, kohdistetaan vain, kun painat CTRL-näppäintä. - + If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe - If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe + Jos tämä vaihtoehto on valittuna, objektit näkyvät oletusarvon mukaan täytettynä. Muutoin ne näkyvät Lankamallina - + Fill objects by default - Fill objects by default + Täytä objektit oletusarvoisesti - + Default working plane - Default working plane + Oletusarvoinen työtaso - + None Ei mitään - + XY (Top) - XY (Top) + XY (Päältä) - + XZ (Front) - XZ (Front) + XZ (edestä) - + YZ (Side) - YZ (Side) + YZ (sivulta) - + The number of decimals in internal coordinates operations (for ex. 3 = 0.001) - The number of decimals in internal coordinates operations (for ex. 3 = 0.001) + Desimaalien määrä sisäisten koordinaattien toiminnoissa (esim. 3 = 0.001) - + Default text height - Default text height + Oletusarvon mukainen tekstinkorkeus - + Default height for texts and dimensions - Default height for texts and dimensions + Oletusarvon mukaiset korkeudet tekstille ja mitoille - + Default text font - Default text font + Tekstin oletusfontti - + This is the default font name for all Draft texts and dimensions. It can be a font name such as "Arial", a default style such as "sans", "serif" or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style such as "Arial:Bold" - This is the default font name for all Draft texts and dimensions. -It can be a font name such as "Arial", a default style such as "sans", "serif" -or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style -such as "Arial:Bold" + Tämä on oletusfontin nimi kaikille tekstiluonnoksille ja mitoille. Se voi olla fontin nimi, kuten &quot;Arial&quot;, oletustyyli kuten &quot;sans&quot;, &quot;serif&quot; tai &quot;mono&quot;, tai perhe, kuten &quot;Arial, Helvetica, sans&quot; tai tyylin nimi kuten &quot; Arial: Bold &quot; - + Arial Arial - + Default template sheet Oletus malliarkki - + The default template to use when creating a new drawing sheet - The default template to use when creating a new drawing sheet + Oletusmallia käytetään luotaessa uutta piirustuksen arkkia - + Import style Tuo tyyli @@ -590,1168 +678,1318 @@ such as "Arial:Bold" This is the method choosed for importing or translating DXF object color into FreeCAD. If color mapping is choosed, you must choose a color mapping file containing a translation table that will convert colors into linewidths. - This is the method choosed for importing or translating DXF object color into FreeCAD. -If color mapping is choosed, you must choose a color mapping file containing a translation table that will convert colors into linewidths. - + Tämä on menetelmä valittaessa tuontia tai kääntämistä DXF objektin värille FreeCAD:ssa. Jos värimääritykset on valittu, valitse väri kartoitus-tiedostosta, joka sisältää käännös-taulukon, joka muuntaa värit viivanleveyksille - + None (fastest) Ei mitään (nopein) - + Use default color and linewidth Käytä oletusväriä ja normaalia viivanleveyttä - + Original color and linewidth Alkuperäinen väri ja normaali viivanleveys Color mapped to linewidth - Color mapped to linewidth + Väri kartoitettu viivanleveydelle - + if this is checked, paper space objects will be imported too - if this is checked, paper space objects will be imported too + Jos tämä vaihtoehto on valittuna, paperin tila objekteille täytyy olla myös tuotuna - + Import layouts Tuo asettelut - + if this is unchecked, texts/mtexts won't be imported - if this is unchecked, texts/mtexts won't be imported + Jos tämä ei ole valittuna, tekstejä/mtekstejä ei voi tuoda - + Color mapping file - Color mapping file + Värikartoitus-tiedosto - + The color mapping file for translating dxf colors into linewidths - The color mapping file for translating dxf colors into linewidths + Värikartoitus-tiedoston kääntämiseen dxf värit viivanpaksuuksilla - + Max Spline Segment - Max Spline Segment + Maksimi Käyräviivan Segmentti - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. - When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. + Kun viet käyräviivoja DXF:ään, ne muunnetaan murtoviivoiksi. Tämä arvo on enintään pituus kunkin murtoviivan segmenteille. Jos 0, sitten koko käyräviiva käsitellään suorana segmenttinä. - + This is the method choosed for importing SVG object color into FreeCAD. - This is the method choosed for importing SVG object color into FreeCAD. + Tämä menetelmä on valittu SVG objektin värien tuonnille FreeCAD:ssa. - + Check this if you want the areas (3D faces) to be imported too. - Check this if you want the areas (3D faces) to be imported too. + Valitse tämä, jos haluat alueet (3D pinnat) myös tuotaviksi. - + Import OCA areas - Import OCA areas + Tuo OCA alueet General settings - General settings + Yleiset asetukset - + Construction group name - Construction group name + Rajoiteryhmän nimi - + Tolerance - Tolerance + Toleranssi - + This is the value used by functions that use a tolerance. Values with differences below this value will be treated as same. - This is the value used by functions that use a tolerance. -Values with differences below this value will be treated as same. + Tämä arvo on käytetty toiminnoille, jotka käyttävät toleranssia. Arvojen erot alle tämän arvon käsitellään samana. - + Dimensions & Leader arrow style - Dimensions & Leader arrow style + Mittojen & Nuolenpään tyyli - + Dot 5 - Dot 5 + Piste 5 - + Dot 7 - Dot 7 + Piste 7 - + Dot 9 - Dot 9 + Piste 9 - + Circle 5 - Circle 5 + Ympyrä 5 - + Circle 7 - Circle 7 + Ympyrä 7 - + Circle 9 - Circle 9 + Ympyrä 9 - + Slash 5 - Slash 5 + Vinoviiva 5 - + Slash 7 - Slash 7 + Vinoviiva 7 - + Slash 9 - Slash 9 + Vinoviiva 9 - + Backslash 5 - Backslash 5 + Kenoviiva 5 - + Backslash 7 - Backslash 7 + Kenoviiva 7 - + Backslash 9 - Backslash 9 + Kenoviiva 9 Import/Export - Import/Export + Tuo/Vie DXF format options - DXF format options + DXF-muotoiluasetukset - + Import texts and dimensions - Import texts and dimensions + Tuo tekstit ja mitat - + Check this if you want the non-named blocks (beginning with a *) to be imported too - Check this if you want the non-named blocks (beginning with a *) to be imported too + Valitse tämä jos haluat että ei-nimettyjä blokkeja (alkaen a *) voidaan myös tuoda - + Import *blocks - Import *blocks + Import *lohkot - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... - If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... + Jos valittu, freecad yrittää yhdistää päällekkäisiä objekteja johdoiksi. Varo, tämä voi kestää hetken ... - + Join geometry - Join geometry + Yhdistä geometria - + SVG format options - SVG format options + SVG-muotoiluasetukset - + OCA format options - OCA format options + OCA-muotoiluasetukset - + Alternate SVG Patterns location - Alternate SVG Patterns location + Vaihtoehtoinen SVG kuvioiden sijainti - + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns - Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns + Täällä voit määrittää SVG-tiedostoja sisältävän hakemiston joka sisältää <pattern> määritelmiä, jotka voidaan lisätä draft-luonnoksen standardiin aukkojen malleina - + Draft interface mode - Draft interface mode + Hahmotelman rajapinta muoto - + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction - This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction + Tämä on UI tila jossa Hahmotelman moduuli toimii: Työkalu tilassa sijoitetaam kaikki Hahmotelman asetukset erillisessä työkalurivissä, kun tehtäväpalkin tila käyttää FreeCAD Tehtävänäkymää järjestelmän käyttäjän kaikille toimille - + Toolbar - Toolbar + Työkalurivi - + Taskview - Taskview + Tehtävänäkymä - + Constrain mod - Constrain mod + Rajoite muoto - + The Constraining modifier key - The Constraining modifier key + Rajoitteiden muokkausnäppäin - + shift shift - + ctrl ctrl - + alt alt - + Snap mod - Snap mod + Kohdistus muoto - + The snap modifier key - The snap modifier key + Kohdistuksen muokkausnäppäin - + Alt mod - Alt mod + Alt muoto - + The alt modifier key - The alt modifier key + Alt-muokkausnäppäin - + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. - Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. + Normaalisti, kun kopioidaan esineitä, kopioitavat ovat valittuna. Jos tämä vaihtoehto on valittu, perus objektit ovat valittuna niiden sijaan. - + Select base objects after copying - Select base objects after copying + Valitse perusobjektit kopioinnin jälkeen - + Always snap to objects (disable snap mod key) - Always snap to objects (disable snap mod key) + Kohdista aina objekteihin (aseta kohdistuksen muodon avain pois päältä) - + The radius for snapping to special points. Set to 0 for no distance (infinite) - The radius for snapping to special points. Set to 0 for no distance (infinite) + Säteen kohdistaminen erityiseen pisteeseen.Aseta 0 ei etäisyyttä (jatkuva) - + Snap range - Snap range + Kohdista alue - + px px - + If checked, a grid will appear when drawing - If checked, a grid will appear when drawing + Jos valintaruutu on valittuna, ruudukko näkyy piirrettäessä - + Use grid - Use grid + Käytä ruudukkoa - + Grid spacing - Grid spacing + Ruudukon välit - + The spacing between each grid line - The spacing between each grid line + Ruudukon viivojen välit - + Main lines every - Main lines every + Pääviivat joka - + Mainlines will be drawn thicker. Specify here how many squares between mainlines. - Mainlines will be drawn thicker. Specify here how many squares between mainlines. + Pääviivat ovat arvotaan paksumpia. Määritä tässä kuinka monta ruutua on pääviivojen välillä. - + Internal precision level - Internal precision level + Sisäinen tarkkuustaso - + Dimensions precision level - Dimensions precision level + Mittojen tarkkuustaso - + Vertical dimensions text orientation - Vertical dimensions text orientation + Pystysuorien mittojen tekstin suunta - + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. - This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. + Tämä on mitan tekstien suunta, kun nämä mitat ovat pystysuunnassa. Oletusarvo on vasen, joka on ISO-standardi. - + Left (ISO standard) - Left (ISO standard) + Vasen (ISO-standardi) - + Right - Right + Oikea Create parametric objects - Create parametric objects + Luo parametrisia objekteja - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable - if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable + Jos tämä on valittuna, objektit samasta kerroksesta yhdistetään yhdeksi Hahmotelman Lohkoiksi, näyttö kääntyy nopeammin, mutta tekee niistä vähemmän helpon muokata - + Group layers into blocks - Group layers into blocks + Ryhmän kerrokset lohkoiksi - + If this is checked, all objects containing faces will be exported as 3d polyfaces - If this is checked, all objects containing faces will be exported as 3d polyfaces + Jos tämä on valittuna, kaikki objektit joissa pintoja viedään 3D monipinnoiksi - + Export 3D objects as polyface meshes - Export 3D objects as polyface meshes + Vie 3D objektit monipinta verkkona + + + + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + + + + Hide Draft workbench + Hide Draft workbench + + + + If this is checked, snapping will not occur against objects with more than the indicated number of edges + If this is checked, snapping will not occur against objects with more than the indicated number of edges + + + + Snap maximum + Snap maximum + + + + Maximum number of edges to be considered for snapping + Maximum number of edges to be considered for snapping + + + + Maximum number of edges + Maximum number of edges + + + + If checked, the Snap toolbar will be shown whenever you use snapping + If checked, the Snap toolbar will be shown whenever you use snapping + + + + Show Draft Snap toolbar + Show Draft Snap toolbar + + + + Hide Draft snap toolbar after use + Hide Draft snap toolbar after use + + + + if checked, a widget indicating the current working plane orientation appears during drawing operations + if checked, a widget indicating the current working plane orientation appears during drawing operations + + + + Show Working Plane tracker + Show Working Plane tracker + + + + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + + + + Always show + Always show + + + + Create Sketches + Create Sketches + + + + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + + + + Use standard font size for texts + Use standard font size for texts + + + + If this is checked, hatches will be converted into simple wires + If this is checked, hatches will be converted into simple wires + + + + Import hatch boundaries as wires + Import hatch boundaries as wires + + + + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + + + + Render polylines with width + Render polylines with width + + + + Export Style + Export Style + + + + Style of SVG file to write when exporting a Sketch. + Style of SVG file to write when exporting a Sketch. + + + + Translated (for print & display) + Translated (for print & display) + + + + Raw (for CAM) + Raw (for CAM) + + + + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + + + + Translate white line color to black + Translate white line color to black draft - + active command: aktiivinen komento: - + None Ei mitään - + Active Draft command Aktiivinen vedos-komento - + X coordinate of next point X-koordinaatin seuraava kohta - + X X - + Y Y - + Z Z - + Y coordinate of next point Y-koordinaatin seuraava kohta - + Z coordinate of next point Z-koordinaatin seuraava kohta - + Radius Säde - + Radius of Circle Ympyrän säde - + Coordinates relative to last point or absolute (SPACE) - Coordinates relative to last point or absolute (SPACE) + Koordinaatit suhteessa viimeiseen tai suhteelliseen pisteeseen (VÄLILYÖNTI) - + Undo the last segment (CTRL+Z) - Undo the last segment (CTRL+Z) + Peruuta viimeisin segmentti (CTRL+Z) - + Finishes and closes the current line (C) Viimeistelee ja sulkee nykyisen viivan (C) - + Offset - Offset + Siirtymä - + XY XY - + Select XY plane Valitse xy-taso - + XZ XZ - + Select XZ plane Valitse XZ-taso - + YZ YZ - + Select YZ plane Valitse YZ-taso - + View Näytä - + Select plane perpendicular to the current view Valitse taso nykyiselle kohtisuoralle näkymälle - + Do not project points to a drawing plane - Do not project points to a drawing plane + Projektia ei kohdistettu piirustuksen tasoon - + If checked, objects will be copied instead of moved (C) - If checked, objects will be copied instead of moved (C) + Jos valintaruutu on valittuna, objektit kopioidaan siirtämisen sijasta (C) - + Line Color Viivan väri - + Face Color - Face Color + Pinnan väri - + Line Width Viivan leveys - + Font Size Fontin koko - + Apply to selected objects Käytä valittuihin kohteisiin - + Toggles Construction Mode - Toggles Construction Mode + Vaihtaa rajoite tilaan - + Select Plane Valitse taso - + Line Viiva - + Circle Ympyrä - + Center X - Center X + Keskitä X - + Arc Kaari - + Pick Object Valitse objekti - + draft Command Bar - draft Command Bar + Hahmotelman komentopalkki - + Pick a face to define the drawing plane - Pick a face to define the drawing plane - + Napsauta määritetyn piirustuksen tasoa - + Pick first point: - Pick first point: - + Napsauta ensimmäinen piste: - + Pick next point: - Pick next point: - + Napsauta seuraava piste: - + Pick next point, or (F)inish or (C)lose: - Pick next point, or (F)inish or (C)lose: - + Napsauta seuraava piste, tai viimeistele (F), tai sulje (C): - + Pick opposite point: - Pick opposite point: - + Napsauta vastakkainen piste: - + Pick center point: - Pick center point: - + Napsauta keskipiste: - + Pick radius: - Pick radius: - + Napsauta säde: - + Pick start angle: - Pick start angle: - + Napsauta aloituskulma: - + Pick aperture: - Pick aperture: - + Valitse aukko: - + Aperture angle: - Aperture angle: - + Aukon kulma: - + Pick location point: - Pick location point: - + Napsauta sijainti pisteelle: - + Select an object to move - Select an object to move - + Valitse objekti siirtämistä varten - + Pick start point: - Pick start point: - + Napsauta aloituspiste: - + Pick end point: - Pick end point: - + Napsauta lopetuspiste: - + Select an object to rotate - Select an object to rotate - + Valitse pyöritettävä objekti - + Pick rotation center: - Pick rotation center: + Osoita kiertoliikkeen keskikohta: - + Pick base angle: - Pick base angle: - + Osoita peruskulma: - + Pick rotation angle: - Pick rotation angle: - + Osoita kiertoliikkeen kulma: - + Select an object to offset - Select an object to offset - + Valitse objekti siirtymälle - + Offset only works on one object at a time - Offset only works on one object at a time - + Siirtymä toimii vain yhdelle objektille kerrallaan - + Pick distance: - Pick distance: - + Napsauta etäisyys: - + Select an object to upgrade - Select an object to upgrade - + Valitse päivitettävä objekti - + Select an object to trim/extend - Select an object to trim/extend - + Valitse objekti leikkaukselle/laajennokselle - + Select an object to scale - Select an object to scale - + Valitse skaalattava objekti - + Pick base point: - Pick base point: - + Osoita peruspiste: - + Pick scale factor: - Pick scale factor: - + Osoita skaalauskerroin: - + Number of sides - Number of sides + Sivujen lukumäärä - + &Relative - &Relative + &Suhteellinen - + &Undo - &Undo + &Kumoa - + &Close - &Close + &Sulje - + &Copy - &Copy + &Kopioi - + If checked, command will not finish until you press the command button again - If checked, command will not finish until you press the command button again + Jos valintaruutu on valittuna, komento ei ole valmis, ennenkuin painat komentopainiketta uudelleen - + &Continue - &Continue + &Jatka - - Wire has been closed - - Wire has been closed - - - - + Last point has been removed - Last point has been removed - + Viimeinen piste on poistettu - + Spline has been closed - Spline has been closed - + Käyräviiva on suljettu - + Edges don't intersect! - Edges don't intersect! - + Reunat eivät leikkaa! - + Cannot offset this object type - Cannot offset this object type - + Ei voi siirtää tätä objektityyppiä - + Found groups: closing each open object inside - Found groups: closing each open object inside - + Löytyi ryhmät: suljetaan kunkin avoimen objektin sisällä - + Found 2 objects: fusing them - Found 2 objects: fusing them - + Löydetty 2 objektia: yhdistellään ne - + Found 1 non-parametric objects: draftifying it - Found 1 non-parametric objects: draftifying it - + Löytyi 1 ei-parametrinen objekti: hahmotellaan se - + Found 1 closed sketch object: making a face from it - Found 1 closed sketch object: making a face from it - + Löytyi 1 suljettu objektin sketsi: Toteutetaan pinta siitä - - Found closed wires: making faces - - Found closed wires: making faces - - - - + Found 1 open wire: closing it - Found 1 open wire: closing it - + Löytyi 1 avoin lanka: suljetaan se - + Found several edges: wiring them - Found several edges: wiring them - + Löytyi useita reunoja: langoitetaan ne - + Found several non-connected edges: making compound - Found several non-connected edges: making compound - + Löytyi useita yhdistämättömiä reunoja: toteutetaan yhdistäminen - + Found several non-treatable objects: making compound - Found several non-treatable objects: making compound - + Löytyi useita käsittelemättömiä objekteja: Toteutetaan yhdistäminen - + Found 1 parametric object: breaking its dependencies - Found 1 parametric object: breaking its dependencies - + Löytyi 1 parametrinen objekti: Riippuvuuksien rikkominen - + Found 2 objects: subtracting them - Found 2 objects: subtracting them - + Löytyi 2 objektia: vähennetään ne - + Found several faces: splitting them - Found several faces: splitting them - + Löytyi useita pintoja: jaetaan ne - + Found several objects: subtracting them from the first one - Found several objects: subtracting them from the first one - + Löytyi useita objekteja: vähennetään ne ensimmäisestä - + Found 1 face: extracting its wires - Found 1 face: extracting its wires - + Löytyi 1 pinta: purkaa sen langat - + Found only wires: extracting their edges - Found only wires: extracting their edges - + Löytyi vain lankoja: puretaan niiden reunat - + This object type is not editable - This object type is not editable - + Tätä objektityyppiä ei voi muokata - + Active object must have more than two points/nodes - Active object must have more than two points/nodes - + Aktiivisessa objektissa on oltava enemmän kuin kaksi pistettä/solmua - + Finishes the current drawing or editing operation (F) - Finishes the current drawing or editing operation (F) + Viimeistelee nykyisen piirustuksen tai muokkaustoiminnon (F) - + Add points to the current object - Add points to the current object + Lisää pisteitä nykyiseen objektiin - + Remove points from the current object - Remove points from the current object + Pisteiden poistaminen nykyisestä objektista - + F&illed - F&illed + T&äytetty - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) - Check this if the object should appear as filled, otherwise it will appear as wireframe (i) + Rasti tämä, jos objektin pitäisi näkyä täytettynä, muuten se näkyy rautalankana (i) - + &Finish - &Finish + &Valmis - + If checked, an OCC-style offset will be performed instead of the classic offset - If checked, an OCC-style offset will be performed instead of the classic offset + Jos valittu, OCC-tyylin siirtymä tehdään Classisen siirtymän sijaan - + &OCC-style offset - &OCC-style offset + &OCC-tyyli siirtymä - + &Wipe - &Wipe + &Pyyhi - + Wipes the existing segments of this line and starts again from the last point (W) - Wipes the existing segments of this line and starts again from the last point (W) + Pyyhkii nykyiset segmentit tästä viivasta ja aloittaa uudelleen viimeisimmästä pisteestä (W) - + Point - Point + Piste - + Distance - Distance + Etäisyys - + Edit Muokkaa - - Create Wire - Create Wire - - - + Create BSpline - Create BSpline + Luo Bézier-käyräviiva - + Create Rectangle - Create Rectangle + Luo suorakulmio - + Create Circle - Create Circle + Luo Ympyrä - + Create Arc - Create Arc + Luo Kaari - + Create Polygon - Create Polygon + Luo monikulmio - + Create Text - Create Text + Luo teksti - + Create Dimension - Create Dimension + Luo mitta - - Delete Measurement - Delete Measurement - - - + Copy - Copy + Kopio - + Move - Move + Siirrä - + Change Style - Change Style + Muuta tyyliä - + Rotate - Rotate + Pyöritä - + Found 1 solidificable object: solidifying it - Found 1 solidificable object: solidifying it - + Löytyi 1 kiinnittämätön objekti: tee siitä kiinteä - + Found several objects or faces: making a parametric face - Found several objects or faces: making a parametric face - + Löysi useita objekteja tai pintoja: Tehtäessä parametrista pintaa - + Found objects containing curves: fusing them - Found objects containing curves: fusing them - + Löydetty objekteja, joissa käyriä: yhdistellään niitä - + Found several objects: fusing them - Found several objects: fusing them - + Löysi useita objekteja: yhdistellään niitä - + Scale Skaalaa - + Trim - Trim + rajaa - + Start Angle - Start Angle + Lähtökulma - + Aperture - Aperture + Aukko - + Installed Macros - Installed Macros + Asennetut makrot - - Draft tools - Draft tools - - - - Draft - Draft - - - - Display options - Display options - - - + Wire tools - Wire tools + Lanka työkalut + + + + DWire + DWire + + + + Create DWire + Create DWire + + + + DWire has been closed + + DWire has been closed + + + + + BSpline + BSpline + + + + Rectangle + Suorakulmio + + + + Polygon + Monikulmio + + + + Text + Teksti + + + + Dimension + Mitta + + + + No upgrade available for this object + + No upgrade available for this object + + + + + Couldn't upgrade these objects + + Couldn't upgrade these objects + + + + + One wire is not planar, upgrade not done + + One wire is not planar, upgrade not done + + + + + Found a closed wire: making a face + + Found a closed wire: making a face + + + + + Found 1 open edge: making a line + + Found 1 open edge: making a line + + + + + Found 1 circular edge: making a circle + + Found 1 circular edge: making a circle + + + + + No more downgrade possible + + No more downgrade possible + + + + + Draft creation tools + Draft creation tools + + + + Draft modification tools + Draft modification tools + + + + &Draft + &Draft + + + + Context tools + Context tools diff --git a/src/Mod/Draft/Resources/translations/Draft_fr.qm b/src/Mod/Draft/Resources/translations/Draft_fr.qm index 6778f485d..ef7fef19f 100755 Binary files a/src/Mod/Draft/Resources/translations/Draft_fr.qm and b/src/Mod/Draft/Resources/translations/Draft_fr.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_fr.ts b/src/Mod/Draft/Resources/translations/Draft_fr.ts index 2af770406..b7d0e8f36 100755 --- a/src/Mod/Draft/Resources/translations/Draft_fr.ts +++ b/src/Mod/Draft/Resources/translations/Draft_fr.ts @@ -4,12 +4,12 @@ Draft_AddPoint - + Add Point Ajouter un point - + Adds a point to an existing wire/bspline Ajoute un point à un filaire ou bspline existant @@ -17,12 +17,12 @@ Draft_AddToGroup - + Adds the selected object(s) to an existing group Ajoute l'objet sélectionné à un groupe existant - + Add to group... Ajouter au groupe... @@ -30,12 +30,12 @@ Draft_ApplyStyle - + Apply Current Style Appliquer le style actuel - + Applies current line width and color to selected objects Appliquer l'épaisseur et la couleur de ligne actuelles aux objets sélectionnés @@ -43,25 +43,38 @@ Draft_Arc - + Arc Arc - + Creates an arc. CTRL to snap, SHIFT to constrain Crée un arc. CTRL pour accrocher aux objets, MAJ pour contraindre + + Draft_Array + + + Array + Réseau + + + + Creates a polar or rectangular array from a selected object + Crée un réseau polaire ou rectangulaire à partir d'un objet sélectionné + + Draft_BSpline - + B-Spline B-Spline - + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain Crée une B-Spline à plusieurs points. CTRL pour accrocher, Maj pour contraindre @@ -69,25 +82,38 @@ Draft_Circle - + Circle Cercle - + Creates a circle. CTRL to snap, ALT to select tangent objects Crée un cercle. CTRL pour accrocher aux objets, MAJ pour contraindre + + Draft_Clone + + + Clone + Clone + + + + Clones the selected object(s) + Clone les objets sélectionnés + + Draft_CloseLine - + Close Line Fermer la ligne - + Closes the line being drawn Fermer la ligne actuelle @@ -95,12 +121,12 @@ Draft_DelPoint - + Remove Point Supprimer un point - + Removes a point from an existing wire or bspline Supprime un point d'un filaire ou d'une bspline existant @@ -108,12 +134,12 @@ Draft_Dimension - + Dimension Cote - + Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment Crée une cote. CTRL pour accrocher aux objets, MAJ pour contraindre, ALT pour sélectionner un segment @@ -121,25 +147,33 @@ Draft_Downgrade - + Downgrade Rétrograder - + Explodes the selected objects into simpler objects, or subtract faces Éclate les objets sélectionnés en objets plus simples, ou soustrait les faces + + Draft_Draft2Sketch + + + Draft to Sketch + Draft vers Esquisse + + Draft_Drawing - + Drawing Dessin - + Puts the selected objects on a Drawing sheet. Place les objets sélectionnés sur une feuille de dessin. @@ -147,12 +181,12 @@ Draft_Edit - + Edit Éditer - + Edits the active object Édite l'objet actif @@ -160,12 +194,12 @@ Draft_FinishLine - + Finish line Terminer la ligne - + Finishes a line without closing it Terminer la ligne sans la fermer @@ -173,12 +207,12 @@ Draft_Line - + Line Ligne - + Creates a 2-point line. CTRL to snap, SHIFT to constrain Crée une ligne par deux points. CTRL pour accrocher aux objets, Maj pour contraindre @@ -186,12 +220,12 @@ Draft_Move - + Move Déplacer - + Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy Déplacer les objets sélectionnés entre 2 points. CTRL pour accrocher, MAJ pour contraindre, ALT pour copier @@ -199,25 +233,38 @@ Draft_Offset - + Offset Décalage - + Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy Décale l'objet actif. CTRL pour accrocher, Maj pour contraindre, Alt pour copier + + Draft_Point + + + Point + Point + + + + Creates a point object + Crée un objet point + + Draft_Polygon - + Polygon Polygone - + Creates a regular polygon. CTRL to snap, SHIFT to constrain Crée un polygone régulier. CTRL pour accrocher, Maj pour contraindre @@ -225,12 +272,12 @@ Draft_Rectangle - + Rectangle Rectangle - + Creates a 2-point rectangle. CTRL to snap Crée un rectangle par deux points. CTRL pour accrocher aux objets @@ -238,12 +285,12 @@ Draft_Rotate - + Rotate Pivoter - + Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy Faire pivoter les objets sélectionnés. CTRL pour accrocher, MAJ pour contraindre, ALT pour créer une copie @@ -251,12 +298,12 @@ Draft_Scale - + Scale Échelle - + Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy Change l'échelle des objets sélectionnés à partir d'un point de base. CTRL pour accrocher, MAJ pour contraindre, ALT pour copier @@ -264,12 +311,12 @@ Draft_SelectGroup - + Select group Sélectionner le groupe - + Selects all objects with the same parents as this group Sélectionne tous les objets avec les mêmes parents que ce groupe @@ -277,12 +324,12 @@ Draft_SelectPlane - + SelectPlane Plan de travail - + Select a working plane for geometry creation Choisir un plan de travail pour la création d'objets 2D @@ -290,25 +337,43 @@ Draft_Shape2DView - + Shape 2D view Projection 2D d'une forme - + Creates Shape 2D views of selected objects Crée une projection 2D d'objets sélectionnés + + + Convert bidirectionally between Draft and Sketch objects + Conversion bidirectionnelle entre objets draft et esquisse + + + + Draft_ShowSnapBar + + + Show Snap Bar + Monter la barre d'accrochage + + + + Shows Draft snap toolbar + Montrer la barre d'outils d'accrochage + Draft_Text - + Text Texte - + Creates an annotation. CTRL to snap Crée une annotation. CTRL pour accrocher aux objets @@ -316,12 +381,12 @@ Draft_ToggleConstructionMode - + Toggle construcion Mode Bascule en mode construction - + Toggles the Construction Mode for next objects. Bascule en mode construction pour les prochains objets. @@ -329,12 +394,12 @@ Draft_ToggleContinueMode - + Toggle continue Mode Basculer en mode continu - + Toggles the Continue Mode for next commands. Bascule le mode Continu pour les prochaines commandes. @@ -342,25 +407,51 @@ Draft_ToggleDisplayMode - + Toggle display mode Bascule le mode d'affichage - + Swaps display mode of selected objects between wireframe and flatlines Bascule le mode d'affichage des objets sélectionnés entre filaire ou ombré + + Draft_ToggleGrid + + + Toggle Grid + Grille + + + + Toggles the Draft gid on/off + Active ou désactive la grille + + + + Draft_ToggleSnap + + + Toggle snap + Accrochage + + + + Toggles Draft snap on or off + Active ou désactive l'accrochage + + Draft_Trimex - + Trimex Trimex - + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts Ajuste ou prolonge l'objet sélectionné, ou extrude les faces simples. CTRL active l'accrochage, Maj contraint au segment courant ou à la normale, Alt inverse @@ -368,12 +459,12 @@ Draft_UndoLine - + Undo last segment Annuler le dernier segment - + Undoes the last drawn segment of the line being drawn Annuler le dernier segment de la ligne actuelle @@ -381,12 +472,12 @@ Draft_Upgrade - + Upgrade Mettre à niveau - + Joins the selected objects into one, or converts closed wires to filled faces, or unite faces Joint les objets sélectionnés en un seul, ou convertit les lignes fermées en faces, ou unit des faces @@ -394,25 +485,25 @@ Draft_Wire - - Wire + + DWire Filaire - - Creates a multiple-point wire. CTRL to snap, SHIFT to constrain - Crée une ligne filaire à plusieurs points. CTRL pour accrocher, Maj pour contraindre + + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + Crée un filaire à plusieurs points. CTRL pour forcer l'accrochage, MAJ pour contraindre. Draft_WireToBSpline - + Wire to BSpline Filaire vers BSpline - + Converts between Wire and BSpline Convertit entre filaire et BSpline @@ -425,137 +516,137 @@ Réglages généraux Draft - + Default color Couleur par défaut - + the default color for new objects la couleur par défaut pour les nouveaux objets - + Default linewidth Épaisseur de ligne par défaut - + the default linewidth for new objects largeur de ligne par défaut pour les nouveaux objets - + Snap color Couleur d'accrochage - + the default color for snap symbols la couleur par défaut pour les symboles d'accrochage - + Construction color Couleur de construction - + This is the default color for objects being drawn while in construction mode. La couleur par défaut pour les objets en cours de conception en mode construction. - + This is the default group name for construction geometry Le nom du groupe par défaut pour les géométries de construction - + Construction Construction - + check this if you want to use the color/linewidth from the toolbar as default Cochez si vous souhaitez définir la couleur et la largeur de ligne de la barre d'outils comme le défaut - + Save current color and linewidth across sessions Enregistrer la couleur et la largeur de ligne actuelles pour toutes les sessions - + If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode Si cette case est cochée, le mode copie sera conservée dans la commande, sinon les commandes seront toujours démarrées sans le mode copie - + Global copy mode Mode de copie global - + If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. Si cette case est cochée, le mode d'accrochage sera toujours activé pendant que vous dessinez. Sinon, vous devrez l'activer en appuyant sur CTRL. - + If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe Si cette case est cochée, les objets apparaîtront comme remplis par défaut. Sinon, ils apparaîtront comme filaires. - + Fill objects by default Remplir les objets par défaut - + Default working plane Plan de travail par défaut - + None Aucun - + XY (Top) XY (dessus) - + XZ (Front) XZ (face) - + YZ (Side) YZ (côté) - + The number of decimals in internal coordinates operations (for ex. 3 = 0.001) Le nombre de décimales dans les opérations de coordonnées internes (par ex. 3 = 0,001) - + Default text height Hauteur du texte par défaut - + Default height for texts and dimensions Hauteur par défaut pour les textes et les cotes - + Default text font Police de caractères par défaut - + This is the default font name for all Draft texts and dimensions. It can be a font name such as "Arial", a default style such as "sans", "serif" or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style @@ -566,22 +657,22 @@ d'un nom de police comme "Arial", un style par défaut tel que "sans", "serif" o comme "Arial:Bold" - + Arial Arial - + Default template sheet Feuille de modèle par défaut - + The default template to use when creating a new drawing sheet Le modèle par défaut à utiliser lors de la création d'une nouvelle feuille de dessin - + Import style Import de style @@ -595,17 +686,17 @@ Si la correspondance des couleurs est choisie, vous devez choisir un fichier de contenant une table de conversion qui convertira les couleurs en largeurs de ligne. - + None (fastest) Aucun (plus rapide) - + Use default color and linewidth Utiliser la couleur et la largeur de ligne par défaut - + Original color and linewidth Couleur et la largeur de ligne originales @@ -615,53 +706,53 @@ contenant une table de conversion qui convertira les couleurs en largeurs de lig Couleur mappée à la largeur de ligne - + if this is checked, paper space objects will be imported too Si cette case est cochée, les objets "paper space" seront importés également - + Import layouts Importer les mises en plan - + if this is unchecked, texts/mtexts won't be imported Si cette case n'est pas cochée, les objets Text/Mtext ne seront pas importés - + Color mapping file Fichier de mappage de couleurs - + The color mapping file for translating dxf colors into linewidths Le fichier de mappage de couleurs permettant de convertir les couleurs DXF en largeurs de ligne - + Max Spline Segment Segment de courbe Spline maximal - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Lors de l'exportation des courbes splines au format DXF, ils sont transformés en polylignes. Cette valeur est la longueur maximale de chacun des segments de la polyligne. Si réglée à 0, la spline entière sera alors traitée comme un segment de droite. - + This is the method choosed for importing SVG object color into FreeCAD. Cette méthode permet d'importer les couleurs d'objet SVG dans FreeCAD. - + Check this if you want the areas (3D faces) to be imported too. Cochez cette case si vous souhaitez que les aires (faces 3D) soient importées également. - + Import OCA areas Importer les aires OCA @@ -671,83 +762,83 @@ de chacun des segments de la polyligne. Si réglée à 0, la spline entière ser Paramètres généraux - + Construction group name Nom du groupe de construction - + Tolerance Tolérance - + This is the value used by functions that use a tolerance. Values with differences below this value will be treated as same. La valeur utilisée par les fonctions qui utilisent une tolérance. Les valeurs de différence inférieure à cette valeur seront considérées comme identiques. - + Dimensions & Leader arrow style Style de flèche des cotes et annotations - + Dot 5 Point 5 - + Dot 7 Point 7 - + Dot 9 Point 9 - + Circle 5 Cercle 5 - + Circle 7 Cercle 7 - + Circle 9 Cercle 9 - + Slash 5 Barre oblique 5 - + Slash 7 Barre oblique 7 - + Slash 9 Barre oblique 9 - + Backslash 5 Barre oblique inverse 5 - + Backslash 7 Barre oblique inverse 7 - + Backslash 9 Barre oblique inverse 9 @@ -762,203 +853,203 @@ Values with differences below this value will be treated as same. Options de format DXF - + Import texts and dimensions Importer les textes et les cotes - + Check this if you want the non-named blocks (beginning with a *) to be imported too Cochez cette case si vous voulez que les blocs anonymes (dont le nom commence par une *) soient importés - + Import *blocks Importer les blocs * - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Si cette case est cochée, FreeCAD tentera de joindre les objets coïncidents en filaires. Attention, ceci peut prendre un certain temps... - + Join geometry Joindre la géométrie - + SVG format options Options de format SVG - + OCA format options Options de format OCA - + Alternate SVG Patterns location Autre emplacement de motifs de hachures SVG - + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns Spécifier un répertoire contenant des fichiers SVG de motifs de hachures qui peuvent être ajoutées aux définitions de hachures standards - + Draft interface mode Mode d'interface Draft - + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction Il s'agit du mode d'interface utilisateur de l'atelier Draft : le mode barre d'outils place tous les paramètres Draft dans une barre d'outils distincte, tandis que le mode de vue Tâches utilisera le système Vue Tâches de FreeCAD pour toutes les interactions avec l'utilisateur - + Toolbar Barre d'outils - + Taskview Vue Tâches - + Constrain mod Mode de contrainte - + The Constraining modifier key Les touches pour modifier le mode de contrainte - + shift Maj - + ctrl Ctrl - + alt Alt - + Snap mod Mode d'accrochage - + The snap modifier key La touche de modification d'accrochage - + Alt mod Mode Alt - + The alt modifier key La touche de modification Alt - + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. Normalement, après avoir copié les objets, les copies seront sélectionnées. Si cette option est cochée, les objets de base seront plutôt sélectionnés. - + Select base objects after copying Sélectionner les objets de base après la copie - + Always snap to objects (disable snap mod key) Toujours accrocher aux objets (désactive la touche d'accrochage) - + The radius for snapping to special points. Set to 0 for no distance (infinite) Le rayon d'accrochage sur des points spéciaux. Réglez à 0 pour aucune distance (infinie) - + Snap range Portée d'accrochage - + px px - + If checked, a grid will appear when drawing Si cette case est cochée, une grille apparaîtra lors du dessin - + Use grid Activer la grille - + Grid spacing Espacement de la grille - + The spacing between each grid line Espacement entre chaque ligne de la grille - + Main lines every Lignes principales toutes les - + Mainlines will be drawn thicker. Specify here how many squares between mainlines. Les traits de lignes principales seront plus épais. Spécifiez ici le nombre de carreaux entre les lignes principales. - + Internal precision level Niveau de précision interne - + Dimensions precision level Niveau de précision des cotes - + Vertical dimensions text orientation Orientation du texte des cotes verticales - + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. Il s'agit de l'orientation du texte des cotes verticales. Par défaut elle est à gauche, qui est la norme ISO. - + Left (ISO standard) Gauche (norme ISO) - + Right Droit @@ -968,773 +1059,967 @@ Si cette option est cochée, les objets de base seront plutôt sélectionnés.Créer des objets paramétriques - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable Si cette case est cochée, les objets partageant les mêmes couches seront réunis en blocs, rendant l'affichage plus rapide, mais ils seront moins facilement modifiables - + Group layers into blocks Grouper les couches dans des blocs - + If this is checked, all objects containing faces will be exported as 3d polyfaces Si cette case est cochée, tous les objets contenant des faces seront exportés comme des objets 3D multi-facettes - + Export 3D objects as polyface meshes Exporter des objets 3D comme des maillages multi-facettes + + + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + Si coché, l'établi Draft n'apparaît pas. Tous les outils Draft sont aussi présents dans l'établi Arch. + + + + Hide Draft workbench + Masquer l'établi Draft + + + + If this is checked, snapping will not occur against objects with more than the indicated number of edges + Si coché, l'accrochage n'aura pas lieu sur les objets ayant plus d'arêtes que le nombre indiqué. + + + + Snap maximum + Accrochage maximal + + + + Maximum number of edges to be considered for snapping + Nombre maximal d'arêtes à prendre en compte pour l'accrochage. + + + + Maximum number of edges + Nombre maximal d'arêtes + + + + If checked, the Snap toolbar will be shown whenever you use snapping + Si coché, la barre d'outils sautillante s'affichera chaque fois que vous utiliserez l'accrochage + + + + Show Draft Snap toolbar + Montrer la barre d'outils d'accrochage + + + + Hide Draft snap toolbar after use + Masquer la barre d'outils d'accrochage après emploi + + + + if checked, a widget indicating the current working plane orientation appears during drawing operations + Si coché, un marqueur indiquant l'orientation actuelle du plan de travail s'affiche lors des opérations de dessin. + + + + Show Working Plane tracker + Afficher le marqueur de plan de travail + + + + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + Si coché, la grille s'affichera toujours lorsque l'établi Draft est actif. Sinon, uniquement en effectuant une commande + + + + Always show + Toujours afficher + + + + Create Sketches + Créer des esquisses + + + + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + Si coché, les textes importés auront la taille par défaut du module Draft, au lieu de leur taille dans le document DXF + + + + Use standard font size for texts + Utiliser la taille de police standard pour les textes + + + + If this is checked, hatches will be converted into simple wires + Si coché, les hachures seront converties en filaires simples + + + + Import hatch boundaries as wires + Importation des contours de hachures comme filaires + + + + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + Si cette case est cochée, lorsque les polylignes ont une épaisseur définie, elles seront rendues comme filaires fermés, dont la largeur sera l'épaisseur de la polyligne + + + + Render polylines with width + Rendre les polylignes avec leur épaisseur + + + + Export Style + Style d'exportation + + + + Style of SVG file to write when exporting a Sketch. + Style du fichier SVG à créer lors de l'exportation d'une esquisse. + + + + Translated (for print & display) + Inversé (pour impression et affichage) + + + + Raw (for CAM) + Original (pour CAM) + + + + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + Lors de l'exportation des vues en SVG, faire en sorte que toutes les lignes blanches s'affichent en noir, pour une meilleure lisibilité contre les fonds blancs. + + + + Translate white line color to black + Imprimer les lignes blanches en noir + draft - + active command: commande active : - + None Aucun - + Active Draft command Commande active - + X coordinate of next point Coordonnée X du prochain point - + X X - + Y Y - + Z Z - + Y coordinate of next point Coordonnée Y du prochain point - + Z coordinate of next point Coordonnée Z du prochain point - + Radius Rayon - + Radius of Circle Rayon du cercle - + Coordinates relative to last point or absolute (SPACE) Coordonnées relatives au dernier point (BARRE D'ESPACE) - + Undo the last segment (CTRL+Z) Annuler le dernier segment (CTRL+Z) - + Finishes and closes the current line (C) Terminer et fermer la ligne actuelle (C) - + Offset Décalage - + XY XY - + Select XY plane Sélectionner le plan XY - + XZ XZ - + Select XZ plane Sélectionner le plan XZ - + YZ YZ - + Select YZ plane Sélectionner le plan YZ - + View Vue - + Select plane perpendicular to the current view Sélectionner le plan perpendiculaire à l'axe de la vue actuelle - + Do not project points to a drawing plane Ne pas projeter les points sur un plan de dessin - + If checked, objects will be copied instead of moved (C) Si cette option est cochée, les objets seront copiés au lieu d'être déplacés (C) - + Line Color Couleur de ligne - + Face Color Couleur de face - + Line Width Largeur de ligne - + Font Size Taille de police - + Apply to selected objects Appliquer aux objets sélectionnés - + Toggles Construction Mode Activer/désactiver le mode Construction - + Select Plane Sélectionner un plan de travail - + Line Ligne - + Circle Cercle - + Center X Centre X - + Arc Arc - + Pick Object Choisir un objet - + draft Command Bar Barre de commande Draft - + Pick a face to define the drawing plane Sélectionnez une face pour définir un plan de travail - + Pick first point: Indiquez le premier point : - + Pick next point: Indiquez le point suivant : - + Pick next point, or (F)inish or (C)lose: Indiquez le point suivant ou terminer (F) ou fermer (C) : - + Pick opposite point: Indiquez le point opposé : - + Pick center point: Indiquez le centre : - + Pick radius: Indiquez le rayon : - + Pick start angle: Indiquez l'angle de départ : - + Pick aperture: Choisissez l'ouverture : - + Aperture angle: Angle d'ouverture : - + Pick location point: Indiquez le point de localisation : - + Select an object to move Sélectionnez un objet à déplacer - + Pick start point: Indiquez le point de départ : - + Pick end point: Indiquez le point final : - + Select an object to rotate Sélectionnez un objet à faire pivoter - + Pick rotation center: Choisissez le centre de rotation : - + Pick base angle: Choisissez l'angle de base : - + Pick rotation angle: Choisissez l'angle de rotation : - + Select an object to offset Sélectionnez un objet à décaler - + Offset only works on one object at a time Le décalage ne fonctionne que pour un seul objet à la fois - + Pick distance: Choisissez la distance : - + Select an object to upgrade Sélectionnez un objet à mettre à niveau - + Select an object to trim/extend Sélectionnez un objet à ajouter/prolonger - + Select an object to scale Sélectionner un objet à mettre à l'échelle - + Pick base point: Indiquez un point de base : - + Pick scale factor: Indiquez un facteur d'échelle : - + Number of sides Nombre de côtés - + &Relative R&elatif - + &Undo &Annuler - + &Close &Fermer - + &Copy &Copier - + If checked, command will not finish until you press the command button again Si cette case est cochée, la commande ne se terminera que si vous appuyez à nouveau sur son icône - + &Continue &Continuer - - Wire has been closed - - Le filaire a été fermé - - - - + Last point has been removed Le dernier point a été supprimé - + Spline has been closed La Spline a été fermée - + Edges don't intersect! Les arêtes ne se croisent pas ! - + Cannot offset this object type Impossible de réaliser un décalage sur ce type d'objet - + Found groups: closing each open object inside Groupes trouvés : fermeture de chaque objet à l'intérieur - + Found 2 objects: fusing them Fusion de deux objets trouvés - + Found 1 non-parametric objects: draftifying it Paramétrisation d'un objet non-paramétrique trouvé - + Found 1 closed sketch object: making a face from it Création d'une face à partir d'un objet de croquis fermé - - Found closed wires: making faces - - Création de faces à partir de filaires fermés trouvés - - - - + Found 1 open wire: closing it Clôture d'un filaire ouvert trouvé - + Found several edges: wiring them Création d'un filaire à partir de plusieurs arêtes trouvées - + Found several non-connected edges: making compound Création d'un composé à partir de plusieurs arêtes non connectées trouvées - + Found several non-treatable objects: making compound Création d'un composé à partir de plusieurs objets non traitables trouvés - + Found 1 parametric object: breaking its dependencies 1 objet paramétrique trouvé: rupture de ses dépendances - + Found 2 objects: subtracting them Soustraction de deux objets trouvés - + Found several faces: splitting them Séparation en faces simples de plusieurs faces trouvées - + Found several objects: subtracting them from the first one Plusieurs objets trouvés : soustraction à partir du premier - + Found 1 face: extracting its wires 1 face trouvée : extraction de son filaire - + Found only wires: extracting their edges Filaires trouvés: extraction de leurs arêtes - + This object type is not editable Ce type d'objet n'est pas modifiable - + Active object must have more than two points/nodes Un objet actif doit avoir plus de deux points/nœuds - + Finishes the current drawing or editing operation (F) Termine le dessin en cours ou l'édition (F) - + Add points to the current object Ajouter des points à l'objet actuel - + Remove points from the current object Supprimer des points de l'objet actuel - + F&illed Rempl&i - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Cocher pour remplir l'objet, sinon il sera affiché en mode filaire (i) - + &Finish &Terminer - + If checked, an OCC-style offset will be performed instead of the classic offset Si coché, un décalage de type OCC sera effectué au lieu du décalage classique - + &OCC-style offset Décalage de type &OCC - + &Wipe &Effacer - + Wipes the existing segments of this line and starts again from the last point (W) Efface les segments existants de cette ligne et recommence depuis le dernier point (W) - + Point Point - + Distance Distance - + Edit Éditer - - Create Wire - Créer un fil - - - + Create BSpline Créer une courbe BSpline - + Create Rectangle Créer un rectangle - + Create Circle Créer un cercle - + Create Arc Créer un arc - + Create Polygon Créer un polygone - + Create Text Créer un texte - + Create Dimension Créer une cote - - Delete Measurement - Supprimer une dimension - - - + Copy Copie - + Move Déplacer - + Change Style Changement de style - + Rotate Pivoter - + Found 1 solidificable object: solidifying it Création d'un solide à partir d'un objet trouvé - + Found several objects or faces: making a parametric face Plusieurs objets ou faces trouvés : création d'une face paramétrique - + Found objects containing curves: fusing them Fusion d'objets trouvés contenant des courbes - + Found several objects: fusing them Fusion de plusieurs objets trouvés - + Scale Échelle - + Trim Ajuster - + Start Angle Angle de départ - + Aperture Ouverture - + Installed Macros Macros installées - - Draft tools - Outils Draft - - - - Draft - Draft - - - - Display options - Options d'affichage - - - + Wire tools Outils de filaires + + + DWire + Filaire + + + + Create DWire + Créer un filaire + + + + DWire has been closed + + Le filaire a été fermé + + + + BSpline + BSpline + + + + Rectangle + Rectangle + + + + Polygon + Polygone + + + + Text + Texte + + + + Dimension + Cote + + + + No upgrade available for this object + + Aucune amélioration disponible pour cet objet + + + + Couldn't upgrade these objects + + Impossible d'améliorer ces objets + + + + One wire is not planar, upgrade not done + + Un filaire n'est pas plan, pas d'amélioration possible + + + + Found a closed wire: making a face + + Un filaire fermé découvert: création d'une face + + + + Found 1 open edge: making a line + + Un bord ouvert découvert: création d'une ligne + + + + Found 1 circular edge: making a circle + + Un bord circulaire découvert: création d'un cercle + + + + No more downgrade possible + + Impossible de déclasser davantage + + + + Draft creation tools + Outils de création de Draft + + + + Draft modification tools + Outils de modification de Draft + + + + &Draft + &Draft + + + + Context tools + Utilitaires + diff --git a/src/Mod/Draft/Resources/translations/Draft_hr.qm b/src/Mod/Draft/Resources/translations/Draft_hr.qm index 8d8e8bc90..30e7bbf96 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_hr.qm and b/src/Mod/Draft/Resources/translations/Draft_hr.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_hr.ts b/src/Mod/Draft/Resources/translations/Draft_hr.ts index 3de482f60..c2335fd15 100644 --- a/src/Mod/Draft/Resources/translations/Draft_hr.ts +++ b/src/Mod/Draft/Resources/translations/Draft_hr.ts @@ -4,12 +4,12 @@ Draft_AddPoint - + Add Point Dodaj točku - + Adds a point to an existing wire/bspline Dodaje vrh na postojeću žicu/krivulju @@ -17,12 +17,12 @@ Draft_AddToGroup - + Adds the selected object(s) to an existing group Dodaje odabrane objekt(e) u postojeću grupu - + Add to group... Dodaj u grupu... @@ -30,12 +30,12 @@ Draft_ApplyStyle - + Apply Current Style Primijeni trenutni stil - + Applies current line width and color to selected objects Primjenjuje trenutnu širinu linije i boju na odabrane objekte @@ -43,25 +43,38 @@ Draft_Arc - + Arc Luk - + Creates an arc. CTRL to snap, SHIFT to constrain Stvara luk. CTRL za uhvatiti, SHIFT da bi ograničili + + Draft_Array + + + Array + Polje + + + + Creates a polar or rectangular array from a selected object + Multiplicira selektirane objekte u pravokutno ili polarno polje + + Draft_BSpline - + B-Spline B-spline - + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain Stvara krivulju sa više točaka. CTRL za uhvatiti, SHIFT na ograničiti pomicanje @@ -69,25 +82,38 @@ Draft_Circle - + Circle Krug - + Creates a circle. CTRL to snap, ALT to select tangent objects Stvara krug. CTRL za uhvatiti, ALT za odabir objekta na tangenti + + Draft_Clone + + + Clone + Klon + + + + Clones the selected object(s) + Klonira selektirane objekte + + Draft_CloseLine - + Close Line Zatvori liniju - + Closes the line being drawn Zatvara se nacrtana linija @@ -95,12 +121,12 @@ Draft_DelPoint - + Remove Point Ukloni točku - + Removes a point from an existing wire or bspline Uklanja točku iz postojeće žice ili krivulje @@ -108,12 +134,12 @@ Draft_Dimension - + Dimension Dimenzija - + Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment Stvara dimenziju. CTRL za uhvatiti, SHIFT za ograničavanje pomaka, ALT za odabir segmenta @@ -121,25 +147,33 @@ Draft_Downgrade - + Downgrade Razbiti - + Explodes the selected objects into simpler objects, or subtract faces Razbija odabrane objekte u jednostavnije, ili oduzima površine + + Draft_Draft2Sketch + + + Draft to Sketch + Nacrt u skicu + + Draft_Drawing - + Drawing Crtež - + Puts the selected objects on a Drawing sheet. Stavlja odabrani objekt na list. @@ -147,12 +181,12 @@ Draft_Edit - + Edit Uredi - + Edits the active object Uređivanje aktivnog objekta @@ -160,12 +194,12 @@ Draft_FinishLine - + Finish line Završi liniju - + Finishes a line without closing it Završava linija bez zatvaranja @@ -173,12 +207,12 @@ Draft_Line - + Line Linija - + Creates a 2-point line. CTRL to snap, SHIFT to constrain Stvara liniju pomoću dvije točke. CTRL za uhvatiti, SHIFT za ograničiti postavljanje @@ -186,12 +220,12 @@ Draft_Move - + Move Pomicanje - + Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy Premještanje odabranih objekata između 2 točke. CTRL za uhvatiti, SHIFT za ograničiti pomicanje, ALT za kopiranje @@ -199,25 +233,38 @@ Draft_Offset - + Offset Pomak - + Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy Pomiče aktivni objekt. CTRL za uhvatiti, SHIFT za ograničiti pomicanje, ALT za kopiranje + + Draft_Point + + + Point + Točka + + + + Creates a point object + Kreira točku + + Draft_Polygon - + Polygon Poligon - + Creates a regular polygon. CTRL to snap, SHIFT to constrain Stvara Poligon. CTRL za uhvatiti, SHIFT za ograničiti pomicanje @@ -225,12 +272,12 @@ Draft_Rectangle - + Rectangle Pravokutnik - + Creates a 2-point rectangle. CTRL to snap Stvara pravokutnik pomoću 2 nasuprotna vrha. CTRL za uhvatiti @@ -238,12 +285,12 @@ Draft_Rotate - + Rotate Rotiraj - + Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy Rotira odabrane objekte. CTRL za uhvatiti, SHIFT za ograničiti pomicanje, ALT za kopiranje @@ -251,12 +298,12 @@ Draft_Scale - + Scale Skaliraj - + Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy Skalira odabrane objekte iz osnovne točke. CTRL za uhvatiti, SHIFT za ograničiti pomicanje, ALT za kopiranje @@ -264,12 +311,12 @@ Draft_SelectGroup - + Select group Odaberi grupu - + Selects all objects with the same parents as this group Odabire sve objekte s istim roditeljima koje ima ova grupa @@ -277,12 +324,12 @@ Draft_SelectPlane - + SelectPlane OdaberiteRavninu - + Select a working plane for geometry creation Odaberite ravninu za rad @@ -290,25 +337,43 @@ Draft_Shape2DView - + Shape 2D view 2D prikaz oblika - + Creates Shape 2D views of selected objects Stvara 2D pogled odabranih objekata + + + Convert bidirectionally between Draft and Sketch objects + Bidirekcionalno konvertiraj između Nacrta i Skice + + + + Draft_ShowSnapBar + + + Show Snap Bar + Prikaži Alatnu traku za hvatanje + + + + Shows Draft snap toolbar + Prikaži Draft snap alat + Draft_Text - + Text Tekst - + Creates an annotation. CTRL to snap Stvara komentar. CTRL za uhvatiti @@ -316,12 +381,12 @@ Draft_ToggleConstructionMode - + Toggle construcion Mode Uključi/Isključi mod izgradnje - + Toggles the Construction Mode for next objects. Uključuje/isključuje mod izgradnje za sljedeće objekte. @@ -329,12 +394,12 @@ Draft_ToggleContinueMode - + Toggle continue Mode Uključi način nastavljanja - + Toggles the Continue Mode for next commands. Uključuje način nastavljanja za sljedeće naredbe. @@ -342,25 +407,51 @@ Draft_ToggleDisplayMode - + Toggle display mode Promjeni način prikaza - + Swaps display mode of selected objects between wireframe and flatlines Zamjenjuje način prikaza odabranih objekata između "Samo žice" i "Ravne linije" + + Draft_ToggleGrid + + + Toggle Grid + Uključi/isključi rešetku + + + + Toggles the Draft gid on/off + Mjenja stanje rešetke u Nacrtu + + + + Draft_ToggleSnap + + + Toggle snap + Promjeni stanje hvatanja + + + + Toggles Draft snap on or off + Mjenja stanje hvatanja za rešetku + + Draft_Trimex - + Trimex Trimex - + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts Skraćuje ili produžuje odabrani objekt ili izvlači površine. CTRL za ograničiti, SHIFT ograničava izvlačenje po normali, ALT invertira @@ -368,12 +459,12 @@ Draft_UndoLine - + Undo last segment Poništi posljednji segment - + Undoes the last drawn segment of the line being drawn Poništava posljednji nacrtani segment polilinije koja se postavlja @@ -381,12 +472,12 @@ Draft_Upgrade - + Upgrade Nadogradnja - + Joins the selected objects into one, or converts closed wires to filled faces, or unite faces Spaja odabranie objekte u jedan, ili pretvara zatvorenu žicu u površinu, ili ujedininjuje površine @@ -394,25 +485,25 @@ Draft_Wire - - Wire - Žica + + DWire + DWire - - Creates a multiple-point wire. CTRL to snap, SHIFT to constrain - Stvara žicu sa više točaka. CTRL za uhvatiti, SHIFT na ograničiti pomicanje + + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + Kreira Žicu nacrta (DWire). CTRL za hvatanje, SHIFT za ograničavanje Draft_WireToBSpline - + Wire to BSpline Žica u krivulju - + Converts between Wire and BSpline Izmjena između žice i krivulje @@ -425,137 +516,137 @@ Glavne postavke nacrta - + Default color Zadana boja - + the default color for new objects zadana boja za nove objekte - + Default linewidth Zadana širina linije - + the default linewidth for new objects zadana širina linije za nove objekte - + Snap color Boja hvatišta - + the default color for snap symbols Inicijalna boja simbola za uhvatiti - + Construction color Boja konstrukcije - + This is the default color for objects being drawn while in construction mode. Ovo je zadana boja za objekte koji se izrađuju u modu izgradnje. - + This is the default group name for construction geometry Ovo je zadani naziv grupe za izgradnju geometrije - + Construction Izgradnja - + check this if you want to use the color/linewidth from the toolbar as default Označite ovo ako želite koristiti boju/širinu linije iz alatne trake kao zadanu - + Save current color and linewidth across sessions Spremi trenutnu boju i širinu linije na sve objekte u ovoj sesiji - + If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode Ako je ovo uključeno, kopiranje će se primjeniti za sve naredbe, inače će se naredbe uvijek pokrenuti bez kopiranja - + Global copy mode Globalni način kopiranja - + If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. Ako je ovo uključeno, uvijek ćete se hvatati za postojeće objekte dok crtate. Ako ne, hvatat ćete samo kada pritisnete CTRL. - + If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe Ako je ovo uključeno, objekti će se pojaviti kao ispunjeni. U suprotnom će se pojaviti kao neispunjeni - + Fill objects by default Ispuni objekte - + Default working plane Zadana ravnina rada - + None Prazno - + XY (Top) XY (Gore) - + XZ (Front) XZ (Naprijed) - + YZ (Side) YZ (Strana) - + The number of decimals in internal coordinates operations (for ex. 3 = 0.001) Broj decimala u internom koordinatnom sustavu (npr. 3=0,001) - + Default text height Zadana visina teksta - + Default height for texts and dimensions Zadana visina teksta i dimenzije - + Default text font Zadani font teksta - + This is the default font name for all Draft texts and dimensions. It can be a font name such as "Arial", a default style such as "sans", "serif" or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style @@ -566,22 +657,22 @@ ili "mono", ili skupina kao što su "Arial, Helvetica, sans" ili ime sa stilom, kao što su "Arial:Bold" - + Arial Arial - + Default template sheet Zadani predložak lista - + The default template to use when creating a new drawing sheet Zadani predložak pri stvaranju novog crteža - + Import style Uvezi stil @@ -594,17 +685,17 @@ If color mapping is choosed, you must choose a color mapping file containing a t Ako je mapiranje boja odabrano, morate odabrati datoteku za mapiranje boja koja sadrži tablicu prijevoda koja će pretvoriti boje u širine linija. - + None (fastest) Nijedan (najbrži) - + Use default color and linewidth Koristite zadanu boju i širinu linije - + Original color and linewidth Izvorna boja i širina linije @@ -614,52 +705,52 @@ Ako je mapiranje boja odabrano, morate odabrati datoteku za mapiranje boja koja Boja mapirana u širinu linije - + if this is checked, paper space objects will be imported too ako ovo označeno, objekti lista će također biti učitani - + Import layouts Uvezi izgled - + if this is unchecked, texts/mtexts won't be imported ako je označeno, text/mtext neće biti učitan - + Color mapping file Datoteka mapiranja boja - + The color mapping file for translating dxf colors into linewidths Datoteka mapiranja boja za prevođenje dxf boja u širine linija - + Max Spline Segment Maksimalni segment krivulje - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Prilikom izvoza krivulja u DXF, oni su pretvoreni u polilinije. Ovo je maksimalna duljina svake od polilinija segmenata. Ako je 0, cijela će se krivulja tretira kao ravni segment. - + This is the method choosed for importing SVG object color into FreeCAD. Ovo je metoda odabeana za uvoz boje SVG objekta u FreeCAD. - + Check this if you want the areas (3D faces) to be imported too. Označite ovo ako želite područja (3D površine) da se također učitavaju. - + Import OCA areas Uvoz OCA područja @@ -669,84 +760,84 @@ Ako je mapiranje boja odabrano, morate odabrati datoteku za mapiranje boja koja Glavne postavke - + Construction group name Ime grupe konstrukcije - + Tolerance Tolerancija - + This is the value used by functions that use a tolerance. Values with differences below this value will be treated as same. Vrijednost koju koriste funkcije koje se koriste tolerancije. Vrijednosti s razlikama ispod te vrijednosti će biti tretirane kao jednake. - + Dimensions & Leader arrow style Stil dimenzija i strijele - + Dot 5 Točka 5 - + Dot 7 Točka 7 - + Dot 9 Točka 9 - + Circle 5 Krug 5 - + Circle 7 Krug 7 - + Circle 9 Krug 9 - + Slash 5 Kosa crta 5 - + Slash 7 Kosa crta 7 - + Slash 9 Kosa crta 9 - + Backslash 5 Obrnuta kosa crta 5 - + Backslash 7 Obrnuta kosa crta 7 - + Backslash 9 Obrnuta kosa crta 9 @@ -761,202 +852,202 @@ Vrijednosti s razlikama ispod te vrijednosti će biti tretirane kao jednake.DXF opcije - + Import texts and dimensions Uvoz tekstova i dimenzija - + Check this if you want the non-named blocks (beginning with a *) to be imported too Označite ovo ako želite da neimenovani blokovi (počevši s *) se mogu učitati - + Import *blocks Uvoz *blokova - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Ako je označeno, FreeCAD će pokušati spojiti spojene linije u žice. Pazite, ovo može potrajati neko vrijeme ... - + Join geometry Pridružite geometriju - + SVG format options SVG opcije - + OCA format options OCA opcije - + Alternate SVG Patterns location Alternativna lokacija SVG uzoraka - + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns Ovdje možete navesti direktorij koji sadrži SVG datoteka koje sadrže <pattern> definicije koji se mogu dodati standardnom Draft uzorku - + Draft interface mode Način rada - + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction Ovo je način na koji će raditi sučelje: Toolbar način će se sve Draft postavke staviti u odvojenoj alatnoj traci, dok Taskbar način koristiti sustav FreeCAD Taskview za interakciju s korisnikom - + Toolbar Alatna traka - + Taskview Pregled zadataka - + Constrain mod Rad sa ograničenjem - + The Constraining modifier key Tipka za ograničavanje - + shift shift - + ctrl ctrl - + alt alt - + Snap mod Rad s rešetkom - + The snap modifier key Tipka za rešetku - + Alt mod Alt mod - + The alt modifier key Modifikator tipke ALT - + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. Normalno, nakon kopiranja objekata, kopija se selektira. Ako je ova opcija uključena, osnovni će objekti biti selektirani. - + Select base objects after copying Odaberite bazu objekata nakon kopiranja - + Always snap to objects (disable snap mod key) Uvijek hvataj za objekte (onemogućiti prečac za hvatanje) - + The radius for snapping to special points. Set to 0 for no distance (infinite) Radijus za hvatanje na posebne točke. Postavite na 0 za isključivanje (beskonačno) - + Snap range Veličina hvatanja - + px px - + If checked, a grid will appear when drawing Ako je označeno, rešetka će se pojaviti prilikom crtanja - + Use grid Koristi rešetku - + Grid spacing Veličina rešetke - + The spacing between each grid line Razmak između linija na rešetki - + Main lines every Glavne linije svakih - + Mainlines will be drawn thicker. Specify here how many squares between mainlines. Glavne linije će biti deblje crtane. Ovdje postaviti koliko kvadrata je među njima. - + Internal precision level Interni nivo preciznosti - + Dimensions precision level Nivo preciznosti dimenzija - + Vertical dimensions text orientation Orijentacija teksta na vertikalnim dimenzijama - + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. Ovo je orijentacija tekstova na dimenzijama kada su one okomite. Zadano je lijevo, što je ISO standard. - + Left (ISO standard) Lijevo (ISO standard) - + Right Desno @@ -966,739 +1057,935 @@ Vrijednosti s razlikama ispod te vrijednosti će biti tretirane kao jednake.Napravi parametarske objekte - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable ako je ovo uključeno, objekti iz istog sloja će se ujediniti u blokove, pa će okretanje zaslona biti brže, ali će se objekti teže uređivati - + Group layers into blocks Grupiranje slojeva u blokove - + If this is checked, all objects containing faces will be exported as 3d polyfaces Ako je to označeno, svi objekti koji sadrže plohe će se izvesti kao 3D polyface mreže - + Export 3D objects as polyface meshes Izvoz 3D objekata kao polyface mreže + + + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + Ako je ovo uključeno, Nacrtno radno okruženje se neće pojaviti. Korisno jer su svi alati iz nacrta ujedno i u Arhitektonskom radnom okruženju. + + + + Hide Draft workbench + Sakrij Nacrtno radno okruženje + + + + If this is checked, snapping will not occur against objects with more than the indicated number of edges + Ako je ovo uključeno, hvatanje se neće doggoditi na objektima sa više od indiciranog broja rubova + + + + Snap maximum + Maksimum za snap + + + + Maximum number of edges to be considered for snapping + Maksimalan broj rubova koji se može uzeti u obzir za hvatanje + + + + Maximum number of edges + Maksimalan broj rubova + + + + If checked, the Snap toolbar will be shown whenever you use snapping + Ako je uključeno, Snap alatna traka će biti prikazana kada god koristite snap + + + + Show Draft Snap toolbar + Prikaži Draft snap alat + + + + Hide Draft snap toolbar after use + Sakrij Draft Snap alat nakon korištenja + + + + if checked, a widget indicating the current working plane orientation appears during drawing operations + Ako je uključeno, prilikom korištenja operacija nacrta pojaviti će se indikator radne plohe + + + + Show Working Plane tracker + Prikaži tragač radne površine + + + + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + Ako je uključeno, rešetka će uvijek biti prikazana kada je Draft okruženje aktivno. Inače samo kada se koristi naredba + + + + Always show + Uvjek prikaži + + + + Create Sketches + Stvori skice + + + + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + Ako je ovov uključeno, uvezeni će tekst koristiti standardnu veličinu definiranu u Draft okruženju, umjesto one definirane u DXF dokumentu + + + + Use standard font size for texts + Koristi standardnu veličinu fonta za tekst + + + + If this is checked, hatches will be converted into simple wires + Ako je ovo označeno, otvori će biti prevedeni u žice + + + + Import hatch boundaries as wires + očitaj krajeve otvora kao žice + + + + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + Ako je ovo označeno, kada polilinije imaju definiranu debljinu, biti će prikazane kao zatvorene žice sa točnom debljinom + + + + Render polylines with width + Renderiraj polilinije sa debljinom + + + + Export Style + Izvoz stila + + + + Style of SVG file to write when exporting a Sketch. + Stil za zapis skice u SVG. + + + + Translated (for print & display) + Pomaknuto (za ispis i pregled) + + + + Raw (for CAM) + Raw (za CAM) + + + + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + Prilikom izvoza u SVG, pretvori sve bijele linije u crne radi lakšeg pregleda na bijeloj pozadini + + + + Translate white line color to black + Prevedi bijelu boju linije u crnu + draft - + active command: aktivna naredba: - + None Prazno - + Active Draft command Aktivna naredbu nacrta - + X coordinate of next point X koordinate sljedeće točke - + X X - + Y Y - + Z Z - + Y coordinate of next point Y koordinate sljedeće točke - + Z coordinate of next point Z koordinate sljedeće točke - + Radius Radijus - + Radius of Circle Radijus kruga - + Coordinates relative to last point or absolute (SPACE) Koordinate u odnosu na zadnju točku ili apsolutnu (prostora) - + Undo the last segment (CTRL+Z) Poništi posljednji segment (CTRL + Z) - + Finishes and closes the current line (C) Završava i zatvara trenutnu liniju (C) - + Offset Pomak - + XY XY - + Select XY plane Odaberite XY ravninu - + XZ XZ - + Select XZ plane Odaberite XZ ravninu - + YZ YZ - + Select YZ plane Odaberite YZ ravninu - + View Pregled - + Select plane perpendicular to the current view Odaberite ravnini okomito na trenutnom prikazu - + Do not project points to a drawing plane Ne projeciraj točke na crtaču ravninu - + If checked, objects will be copied instead of moved (C) Ako je označeno, objekti će se kopirati umjesto pomicanja (C) - + Line Color Boja linije - + Face Color Boja površina - + Line Width Širina linije - + Font Size Veličina fonta - + Apply to selected objects Primijeni na odabrane objekte - + Toggles Construction Mode Uključuje graditeljski način - + Select Plane Odaberite ravninu - + Line Linija - + Circle Krug - + Center X Centar X - + Arc Luk - + Pick Object Odaberite objekt - + draft Command Bar Traka nacrtnih naredbi - + Pick a face to define the drawing plane Odaberite površinu za definiranje ravnine crtanja - + Pick first point: Odaberite prvu točku - + Pick next point: Odaberite sljedeću točku - + Pick next point, or (F)inish or (C)lose: Odaberite sljedeću točku, ili (f)Završi ili (C)Zatvori - + Pick opposite point: Odaberite suprotnu točku - + Pick center point: Odaberite središte točke - + Pick radius: Odaberite polumjer - + Pick start angle: Odaberite početak kuta - + Pick aperture: Odaberi otvor blende: - + Aperture angle: Kut otvora blende: - + Pick location point: Odaberite mjesto točke - + Select an object to move Odaberite objekt za pomicanje - + Pick start point: Odaberite početnu točku - + Pick end point: Odaberite završnu točku - + Select an object to rotate Odaberite objekt za rotiranje - + Pick rotation center: Odaberite centar rotacije - + Pick base angle: Odaberite bazu kuta - + Pick rotation angle: Odaberite kut rotacije - + Select an object to offset Odaberite objekt za pomak - + Offset only works on one object at a time Pomak radi samo za jedan objekt - + Pick distance: Odaberite udaljenost - + Select an object to upgrade Odaberite objekt za nadogradnju - + Select an object to trim/extend Odaberite objekt za podrezivanje / proširivanje - + Select an object to scale Odaberite objekt za skaliranje - + Pick base point: Odaberite ishodišnu točku: - + Pick scale factor: Odredite faktor skaliranja: - + Number of sides Broj strana - + &Relative &Relativan - + &Undo &Poništi - + &Close &Zatvori - + &Copy &Kopiraj - + If checked, command will not finish until you press the command button again Ako je označeno, naredba neće završiti sve dok se ponovno ne pritisnete gumb naredbe - + &Continue &Nastavi - - Wire has been closed - - Žica je zatvorena - - - + Last point has been removed Posljednja točka je uklonjena - + Spline has been closed Krivulja je zatvorena - + Edges don't intersect! Rubovi se ne sijeku! - + Cannot offset this object type Ne mogu pomaknuti ovaj tip objekta - + Found groups: closing each open object inside Pronađena skupine: zatvaranje svih otvorenih objekata unutar njih - + Found 2 objects: fusing them Pronađena 2 objekata: spajam ih - + Found 1 non-parametric objects: draftifying it Pronađen 1 neparametarski objekt: prilagođavam ga nacrtu - + Found 1 closed sketch object: making a face from it Pronađena 1 zatvorena skica: stvaranje površine - - Found closed wires: making faces - - Pronađene zatvorene žice: izrada površine - - - + Found 1 open wire: closing it Pronađena 1 otvorena žica: zatvaranje - + Found several edges: wiring them Pronađeno je nekoliko rubova: ožiči ih - + Found several non-connected edges: making compound Pronađeno je nekoliko ne-povezanih rubova: izrada spoja - + Found several non-treatable objects: making compound Pronađeno je nekoliko nezavisnih objekata: izrada spoja - + Found 1 parametric object: breaking its dependencies Pronađen 1 parametarski objekt: razbijanje njegovih ovisnosti - + Found 2 objects: subtracting them Pronađena 2 objekta: oduzimam ih - + Found several faces: splitting them Pronađeno je nekoliko površina: cijepam ih - + Found several objects: subtracting them from the first one Pronađeno je nekoliko objekata: oduzimam ih od prvog - + Found 1 face: extracting its wires Pronađena 1 površina: izvlačenje njenih žica - + Found only wires: extracting their edges Pronađene samo žice: vađenje njihovih rubova - + This object type is not editable Ovaj tip objekta nije moguće uređivati - + Active object must have more than two points/nodes Aktivni objekt mora imati više od dvije točke/čvora - + Finishes the current drawing or editing operation (F) Završava trenutni crtež ili operaciju (F) - + Add points to the current object Dodaj točke trenutnom objektu - + Remove points from the current object Ukloni točke iz trenutnog objekta - + F&illed I&spunjeno - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Označi ako bi se objekt trebao pojaviti kao pun, inače će se pojaviti kao ožičenje(i) - + &Finish &Završi - + If checked, an OCC-style offset will be performed instead of the classic offset Ako je označeno, pomak u OCC stilu izvršiti će se umjesto klasičnog pomaka - + &OCC-style offset pomak u &OCC-stilu - + &Wipe &Obriši - + Wipes the existing segments of this line and starts again from the last point (W) Briše posljednji segmente ove linije i ponovno počinje od zadnje točke (W) - + Point Točka - + Distance Udaljenost - + Edit Uredi - - Create Wire - Kreiraj liniju - - - + Create BSpline Kreiraj B-spline - + Create Rectangle Kreiraj pravokutnik - + Create Circle Kreiraj krug - + Create Arc Kreiraj luk - + Create Polygon Kreiraj poligon - + Create Text Stvori tekst - + Create Dimension Kreiraj dimenziju - - Delete Measurement - Briši mjeru - - - + Copy Kopiraj - + Move Pomicanje - + Change Style Promjeni stil - + Rotate Rotiraj - + Found 1 solidificable object: solidifying it Pronađen 1 objekt koji se može pretvoriti u tijelo: pretvaram ga - + Found several objects or faces: making a parametric face Pronađeno je nekoliko objekata ili ploha: stvaranje parametarske plohe - + Found objects containing curves: fusing them Pronađeni objekti koji sadrže krivulje: spajam ih - + Found several objects: fusing them Pronađeno je nekoliko objekata: spajam ih - + Scale Skaliraj - + Trim Skrati - + Start Angle Početni kut - + Aperture Apertura - + Installed Macros - Installed Macros + Instalirane makro naredbe - - Draft tools - Draft tools - - - - Draft - Draft - - - - Display options - Display options - - - + Wire tools - Wire tools + alati konture + + + + DWire + DWire + + + + Create DWire + Napravi žicu + + + + DWire has been closed + + Žica je zatvorena + + + + BSpline + BSpline + + + + Rectangle + Pravokutnik + + + + Polygon + Poligon + + + + Text + Tekst + + + + Dimension + Dimenzija + + + + No upgrade available for this object + + Spajanje nije moguće na ovom objektu + + + + Couldn't upgrade these objects + + Nije moguće spojiti ove objekte + + + + One wire is not planar, upgrade not done + + Jedna žica nije na istoj površini, spajanje nije moguće + + + + Found a closed wire: making a face + + Pronađena zatvorena kontura: kreiranje plohe + + + + Found 1 open edge: making a line + + Pronađen jedan otvoren rub: kreiranje linije + + + + Found 1 circular edge: making a circle + + Pronađen jedan kružni rub: kreiranje kružnice + + + + No more downgrade possible + + Nije moguće više cijepati + + + + Draft creation tools + Alati za kreiranje nacrta + + + + Draft modification tools + Alati za modifikaciju nacrta + + + + &Draft + &Nacrt + + + + Context tools + Povezani alati diff --git a/src/Mod/Draft/Resources/translations/Draft_hu.qm b/src/Mod/Draft/Resources/translations/Draft_hu.qm index 84d4e1572..0685273cc 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_hu.qm and b/src/Mod/Draft/Resources/translations/Draft_hu.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_hu.ts b/src/Mod/Draft/Resources/translations/Draft_hu.ts index ed17bde1f..323a3878a 100644 --- a/src/Mod/Draft/Resources/translations/Draft_hu.ts +++ b/src/Mod/Draft/Resources/translations/Draft_hu.ts @@ -4,12 +4,12 @@ Draft_AddPoint - + Add Point Pont hozzáadása - + Adds a point to an existing wire/bspline Ponttal egészíti ki a meglévő vonalat / vonalakat @@ -17,12 +17,12 @@ Draft_AddToGroup - + Adds the selected object(s) to an existing group Kijelölt objektum(ok) hozzáadja a létező csoporthoz - + Add to group... Csoporthoz adás... @@ -30,12 +30,12 @@ Draft_ApplyStyle - + Apply Current Style Aktuális stílus alkalmazása - + Applies current line width and color to selected objects A kijelölt objektumok aktuális vonal vastagságát és színét vonatkoztatja @@ -43,25 +43,38 @@ Draft_Arc - + Arc Ív - + Creates an arc. CTRL to snap, SHIFT to constrain Ív létrehozása. CTRL igazít, SHIFT korlátoz + + Draft_Array + + + Array + Tömb + + + + Creates a polar or rectangular array from a selected object + Poláris vagy téglalap alakú tömb létrehozása a kijelölt objektumból + + Draft_BSpline - + B-Spline B-Spline - + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain Több pontos B-Spline létrehozása. CTRL igazít, SHIFT korlátoz @@ -69,25 +82,38 @@ Draft_Circle - + Circle Kör - + Creates a circle. CTRL to snap, ALT to select tangent objects Kör létrehozása. CTRL igazít, ALT érintő kiválasztása + + Draft_Clone + + + Clone + Klónozás + + + + Clones the selected object(s) + Kijelölt objektum(ok) klónozása + + Draft_CloseLine - + Close Line Vonal lezárása - + Closes the line being drawn Rajzolt vonalsorozat lezárása @@ -95,12 +121,12 @@ Draft_DelPoint - + Remove Point Pont eltávolítása - + Removes a point from an existing wire or bspline Törli a meglévő pontot a vonalról vagy vonalakról @@ -108,12 +134,12 @@ Draft_Dimension - + Dimension Dimenzió - + Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment Létrehoz egy dimenziót. CTRL (igazítás), SHIFT (korlázoz), ALT szegmens kiválasztás @@ -121,25 +147,33 @@ Draft_Downgrade - + Downgrade Visszaminősítés - + Explodes the selected objects into simpler objects, or subtract faces A kijelölt objektumokat szétbontja egyszerűbb objektumokká vagy kivonja a felületeket egymásból + + Draft_Draft2Sketch + + + Draft to Sketch + Vázlat tervhez + + Draft_Drawing - + Drawing Rajzolás - + Puts the selected objects on a Drawing sheet. A kijelölt objektumok rajzlapra helyezi. @@ -147,12 +181,12 @@ Draft_Edit - + Edit Szerkesztés - + Edits the active object Az aktív objektum szerkesztése @@ -160,12 +194,12 @@ Draft_FinishLine - + Finish line Vonal befejezése - + Finishes a line without closing it Befejez anélkül, hogy bezárná a vonalat @@ -173,12 +207,12 @@ Draft_Line - + Line Vonal - + Creates a 2-point line. CTRL to snap, SHIFT to constrain 2 pontos vonal készítése. CTRL igazítás, SHIFT korlátoz @@ -186,12 +220,12 @@ Draft_Move - + Move Mozgat - + Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy A kijelölt objektum mozgatása két pont között. CTRL igazít, SHIFT kényszerít, ALT másol @@ -199,25 +233,38 @@ Draft_Offset - + Offset Eltolás - + Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy Az aktív objektum mozgatása. CTLR igazít, SHIFT kényszerít, ALT másol + + Draft_Point + + + Point + Pont + + + + Creates a point object + Létrehoz egy pont objektumot + + Draft_Polygon - + Polygon Sokszög - + Creates a regular polygon. CTRL to snap, SHIFT to constrain Szabályos sokszög létrehozása. CTRL Csatlakozáshoz, SHIFT kiválasztáshoz @@ -225,12 +272,12 @@ Draft_Rectangle - + Rectangle Téglalap - + Creates a 2-point rectangle. CTRL to snap Téglalap létrehozása 2 ponttal. CTRL igazít @@ -238,12 +285,12 @@ Draft_Rotate - + Rotate Forgatás - + Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy Kijelölt objektumok forgatása. CTLR igazítás, SHIFT kényszerít, ALT másolatot készít @@ -251,12 +298,12 @@ Draft_Scale - + Scale Méret - + Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy Méretezi a kiválasztott objektumot az alap ponttól. CTRL a csatoláshoz, SHIFT a megtartáshoz, ALT CTRL a másoláshoz @@ -264,12 +311,12 @@ Draft_SelectGroup - + Select group Válassza ki a csoportot - + Selects all objects with the same parents as this group Kiválasztja az összes azonos szülőkkel rendelkező objektumot ebben a csoportban @@ -277,12 +324,12 @@ Draft_SelectPlane - + SelectPlane Sík kijelölés - + Select a working plane for geometry creation Válassz ki egy munkasíkot a geometria létrehozásához @@ -290,25 +337,43 @@ Draft_Shape2DView - + Shape 2D view 2D alak nézet - + Creates Shape 2D views of selected objects A kijelölt tárgy 2D felület nézetét hozza létre + + + Convert bidirectionally between Draft and Sketch objects + Konvertálja kettős irányba a terv és a vázlat objektumokat + + + + Draft_ShowSnapBar + + + Show Snap Bar + Illesztési sáv megjelenítése + + + + Shows Draft snap toolbar + Illesztési pont eszköztár megjelenítése + Draft_Text - + Text Szöveg - + Creates an annotation. CTRL to snap Megjegyzés létrehozása. CTRL igazt @@ -316,12 +381,12 @@ Draft_ToggleConstructionMode - + Toggle construcion Mode Váltás szerkezeti módra - + Toggles the Construction Mode for next objects. Váltás szerkezeti módra a következő objektumoknál. @@ -329,12 +394,12 @@ Draft_ToggleContinueMode - + Toggle continue Mode Váltás tovább módra - + Toggles the Continue Mode for next commands. A folyamat mód következő parancsra váltása. @@ -342,25 +407,51 @@ Draft_ToggleDisplayMode - + Toggle display mode Megjelenítési mód váltása - + Swaps display mode of selected objects between wireframe and flatlines Válassz megjelenítési módot a Drótvázas és a Sima vonalak között + + Draft_ToggleGrid + + + Toggle Grid + Rácsvonal kapcsolása + + + + Toggles the Draft gid on/off + Tervezési rácsvonal be/ki + + + + Draft_ToggleSnap + + + Toggle snap + Illesztés váltása + + + + Toggles Draft snap on or off + Be-és kikapcsolja a tervrajz illesztését + + Draft_Trimex - + Trimex Levág-Bővít (trimex) - + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts A kijelölt tárgyat levág és meghosszabbít vagy kihúz egy egyoltalú felületet. CTRL-al kapcsolódik, SHIFT-el szegmenst választ vagy a normális, ALT megfordít @@ -368,12 +459,12 @@ Draft_UndoLine - + Undo last segment Utolsó szakasz visszavonása - + Undoes the last drawn segment of the line being drawn A vonal utolsó rajzolt szakaszának visszavonása @@ -381,12 +472,12 @@ Draft_Upgrade - + Upgrade Frissítés - + Joins the selected objects into one, or converts closed wires to filled faces, or unite faces Összekapcsolja a kiválasztott objektumokat, vagy az összekötött vonalakat felületté, síkká alakítja @@ -394,25 +485,25 @@ Draft_Wire - - Wire - huzal + + DWire + Terv-vonal - - Creates a multiple-point wire. CTRL to snap, SHIFT to constrain - Több pontos-huzal létrehozása. CTRL igazítás, SHIFT korlátoz + + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + Létrehoz egy több pont Terv-vaonalat. Igazítás (CTRL), húzás a SHIFT Draft_WireToBSpline - + Wire to BSpline Huzal - B-Spline - + Converts between Wire and BSpline Konvertálás huzal és B-Spline között @@ -425,137 +516,137 @@ Általános rajzbeállítások - + Default color Alapértelmezett szín - + the default color for new objects Új objektumok alapértelmezett színe - + Default linewidth Alapértelmezett vonalvastagság - + the default linewidth for new objects Alapértelmezett vonalvastagság az új objektumoknál - + Snap color Igazítás színe - + the default color for snap symbols A csatolás szimbólum alap színe - + Construction color Építési szín - + This is the default color for objects being drawn while in construction mode. Ez az alapértelmezett színe a tárgyaknak, az építési módban. - + This is the default group name for construction geometry Ez az alapértelmezett csoport-név, az építési geometriánál - + Construction Alkotás - + check this if you want to use the color/linewidth from the toolbar as default Jelölje be, ha az eszköztárról szeretné használni az alapértelmezett színt/vonalvastagságot - + Save current color and linewidth across sessions Mentése az aktuális színt és vonalvastagságot a erre a munkamenetre - + If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode Ha ez be van jelölve, másolási üzemmódban marad az egész parancson keresztül, különben induláskor nem a másolási móddal fog indulni - + Global copy mode Globális másolási üzemmód - + If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. Ha ez be van jelölve, akkor mindig igazít a meglévő objektumok rajzolás közben. Ha nem, akkor az igazításhoz meg kell nyomni a a CTRL gombot. - + If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe Ha ez be van jelölve, az objektumok az alapértelmezett kitöltéssel jelennek meg. Ellenkező esetben drótvázas módon - + Fill objects by default Objektum kitöltése alapértelmezés szerint - + Default working plane Alapértelmezett munkasík - + None Egyik sem - + XY (Top) XY (Felül nézet) - + XZ (Front) XZ (Elöl nézet) - + YZ (Side) YZ (Oldal nézet) - + The number of decimals in internal coordinates operations (for ex. 3 = 0.001) A belső koordináta műveletekhez használt tizedesjegyek száma (pl.: 3=0,001) - + Default text height Alapértelmezett szöveg magasság - + Default height for texts and dimensions Alapértelmezett szöveg és méter magasság - + Default text font Alapértelmezett betűtípus - + This is the default font name for all Draft texts and dimensions. It can be a font name such as "Arial", a default style such as "sans", "serif" or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style @@ -563,22 +654,22 @@ such as "Arial:Bold" Ez az alapértelmezett betűtípus név minden Rajz szöveghez és a mérethez. Ez lehet egy betűtípus név, mint a "Arial", alapértelmezett stílus, mint a "sans", "serif" vagy "mono", vagy a családi, mint például "Arial, Helvetica, sans", vagy egy név stílussal, mint a " Arial: Dőlt " - + Arial Arial - + Default template sheet Alapértelmezett rajzlap sablon - + The default template to use when creating a new drawing sheet Az alapértelmezett sablon, ami alapján létrehoz egy új rajzlapot - + Import style Stílus importálása @@ -590,17 +681,17 @@ If color mapping is choosed, you must choose a color mapping file containing a t Ez a kiválasztott módszer a DXF objektum színének importálására vagy fordítására a FreeCAD-be. Ha a szín hozzárendelése kiválasztott, akkor válasszon olyan fordítási táblát tartalmazó szín táblát, amely a színek konvertálására a vonal vastagságot ad. - + None (fastest) Nincs (leggyorsabb) - + Use default color and linewidth Alapértelmezett szín és vonal vastagság - + Original color and linewidth Eredeti szín és vonalvastagság @@ -610,52 +701,52 @@ If color mapping is choosed, you must choose a color mapping file containing a t Vonalvastagsághoz rendelt szín - + if this is checked, paper space objects will be imported too Ha ez be van jelölve, a lapok helyett objektumok is importálásra kerülnek - + Import layouts Elrendezések importálása - + if this is unchecked, texts/mtexts won't be imported ha ez nincs bejelölve, szövegek/összetett szövegek nem importálhatók - + Color mapping file Színtérkép fájl - + The color mapping file for translating dxf colors into linewidths Szín-hozzárendelési fájl, a dxf színek vonalvastagságba való fordításához - + Max Spline Segment Max. Spline szegmens - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Ha vonal szegmenseket exportál DXF-be, át lesznek alakítva vonal láncokká. Ez az érték az egyes vonallánc szegmensek maximális hosszát adja meg. Ha 0, akkor a teljes vonal szegmenst egy egyenesként kezeli. - + This is the method choosed for importing SVG object color into FreeCAD. Ez a módszer választott, az SVG-objektum színének a FreeCAD-ba való importálásához. - + Check this if you want the areas (3D faces) to be imported too. Ellenőrizze ezt, ha a területeket (3D felületek) is importálni kell. - + Import OCA areas OCA területek importálása @@ -665,83 +756,83 @@ If color mapping is choosed, you must choose a color mapping file containing a t Általános beállítások - + Construction group name Konstrukció-csoport neve - + Tolerance Tűrés - + This is the value used by functions that use a tolerance. Values with differences below this value will be treated as same. Ez az érték a tűréshatárt használó funkciók által használt. Ezen érték alatti értékeket azonosnak kell tekinteni. - + Dimensions & Leader arrow style Méretek és nyílstílusok - + Dot 5 Pont 5 - + Dot 7 Pont 7 - + Dot 9 Pont 9 - + Circle 5 Kör 5 - + Circle 7 Kör 7 - + Circle 9 Kör 9 - + Slash 5 Slash 5 - + Slash 7 Slash 7 - + Slash 9 Slash 9 - + Backslash 5 Backslash 5 - + Backslash 7 Backslash 7 - + Backslash 9 Backslash 9 @@ -756,202 +847,202 @@ Values with differences below this value will be treated as same. DXF formátum beállításai - + Import texts and dimensions Szövegek és méretek importálása - + Check this if you want the non-named blocks (beginning with a *) to be imported too Jelölje be, ha azt szeretné, hogy a név nélküli blokkok (*-al kezdődő) importálva legyenek - + Import *blocks Blokkok importálása * - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Ha be van jelölve, FreeCAD megpróbálja összekötni a közös referenciapontos objektumokat vonalakká. Vigyázz, ez eltarthat egy ideig... - + Join geometry Geometria csatlakoztatása - + SVG format options SVG formátum beállításai - + OCA format options OCA Formátum beállításai - + Alternate SVG Patterns location Alternatív SVG minták helye - + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns Itt lehet megadni egy SVG fájlokat tartalmazó könyvtár <pattern> meghatározásokat, melyet ki lehet egészíteni a standard-tervezet sraffozási mintákkal - + Draft interface mode Draft interfész mód - + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction Ez az UI üzemmód, amelyben a tervezet modul működik: Eszköztár mód helyére az összes tervezet beállítások egy külön eszköztárba lesz téve, míg a tálca módot fogja használni a FreeCAD Tálcanézet rendszer minden felhasználói beavatkozáshoz - + Toolbar Eszköztár - + Taskview Tárgynézet - + Constrain mod Kényszerítő mód - + The Constraining modifier key A megszorítás módosító billentyű - + shift shift - + ctrl ctrl - + alt alt - + Snap mod - Snap mod + Az illesztés mod - + The snap modifier key - A beépülő módosító billentyű + Az illesztő módosító billentyű - + Alt mod Alt mod - + The alt modifier key Az alt módosító billentyű - + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. Tárgy másolása után, normális,ha a másolat van kiválasztva. Ha ez az opció nincs kiválasztva, akkor az alap tárgy lesz kiválasztva. - + Select base objects after copying Válassza ki a bázis objektumokat másolás után - + Always snap to objects (disable snap mod key) Mindig kapcsolódjon tárgyakhoz (kapcsolja ki a kapcsolódás mod billentyűvel) - + The radius for snapping to special points. Set to 0 for no distance (infinite) A speciális pontok kacsolódás rádiusza. Állítsa 0-ra, ha nincs távolság (végtelen) - + Snap range - Kapcsolódás tartománya + illesztés tartománya - + px px - + If checked, a grid will appear when drawing Ha be van jelölve, egy rács jelenik meg, ha rajzol - + Use grid Rács használata - + Grid spacing Rács térköze - + The spacing between each grid line A rács vonalainak egymás közti távolságai - + Main lines every Minden egyes fővonal - + Mainlines will be drawn thicker. Specify here how many squares between mainlines. A fő vonalak vastagab rajzolatúak. Adja meg, mennyi négyzet legyen a fővonalak közt. - + Internal precision level Belső pontossági szint - + Dimensions precision level Méretek pontossági szint - + Vertical dimensions text orientation Függőleges méretezési szöveg irányultsága - + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. Ez a méretezési szöveg irányultsága amikor ezek iránya függőleges. Alapértelmezett a bal, ami az ISO-szabvány. - + Left (ISO standard) Bal (ISO szabvány) - + Right Jobb @@ -961,740 +1052,936 @@ Values with differences below this value will be treated as same. Parametrikus objektumok létrehozása - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable ha ez be van jelölve, tárgyakat azonos rétegekből össze lesznek kötve vázlat blokká, gyorsabb kijelzéshez, de így nehezebben szerkeszthető - + Group layers into blocks Csoport rétegek tömbökké - + If this is checked, all objects containing faces will be exported as 3d polyfaces Ha ez be van jelölve, minden kijelölt tárgyat, amely síkokat tartalmaz, 3d soksíkú felületté exportálja - + Export 3D objects as polyface meshes 3D objektum exportálása többfelületű hálórajzzá + + + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + Ha be van jelölve, a tervrajz munkaterület nem fog megjelenni. Hasznos, mivel a tervrajz eszköz az építészeti munkaterületen is megtalálható. + + + + Hide Draft workbench + Rajzolási munkaterület elrejtése + + + + If this is checked, snapping will not occur against objects with more than the indicated number of edges + Ha be van jelölve, az illesztés nem fog megtörténni az objektumokon, ha az élek száma több mint a jelzett + + + + Snap maximum + Illesztés maximum + + + + Maximum number of edges to be considered for snapping + Maximum élek száma az illesztés figyelembe vételéhez + + + + Maximum number of edges + Élek maximális száma + + + + If checked, the Snap toolbar will be shown whenever you use snapping + Ha be van jelölve, az illesztési eszköztár jelenik meg ha illeszteni akar + + + + Show Draft Snap toolbar + Illesztési pont eszköztár megjelenítése + + + + Hide Draft snap toolbar after use + A használat után a rajz illesztési pont eszközablak elrejtése + + + + if checked, a widget indicating the current working plane orientation appears during drawing operations + Ha be van jelölve, egy munkaablak látható az aktuális tájolási sík jelzésére a rajzolási műveletek során + + + + Show Working Plane tracker + Munka sík követő megjelenítése + + + + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + Ha be van jelölve, a tervrajz rács mindig látható lesz, ha a tervrajz munkafelület aktív. Egyébként csak akkor,ha parancsot használ + + + + Always show + Mindig látható + + + + Create Sketches + Rajzok létrehozása + + + + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + Ha be van jelölve, az importált szövegek az alap rajzolási szöveg méretet kapják, nem a DXF dokumentum eredeti szövegméretét + + + + Use standard font size for texts + Használja az alap betűméretet a szövegekhez + + + + If this is checked, hatches will be converted into simple wires + Ha ez be van jelölve, a határok egyszerű vonallá lesznek alakítva + + + + Import hatch boundaries as wires + Kitöltési határok importálása vonalként + + + + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + Ha ez bekapcsolva, a megadott vonallánc szélességel, akkor összeolvasztja a vonalakat a megfelelő vastagság használatával + + + + Render polylines with width + Összekapcsolt vonalláncok vastagság meghatározása + + + + Export Style + Stílus export + + + + Style of SVG file to write when exporting a Sketch. + Vázlat exportálás kiírásához SVG fájl stílusa. + + + + Translated (for print & display) + Átalakítva (nyomtatáshoz & képernyőre) + + + + Raw (for CAM) + Nyers (CAM-hoz) + + + + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + SVG-nézetekre exportálásakor, minden fehér vonal feketére váltása, a könnyebb olvashatóság érdekében a fehér háttérhez + + + + Translate white line color to black + Fehér vonal szín feketére váltása + draft - + active command: aktív parancs: - + None Egyik sem - + Active Draft command Aktív tervezési parancs - + X coordinate of next point Következő pont X koordinátája - + X X - + Y Y - + Z Z - + Y coordinate of next point Következő pont Y koordinátája - + Z coordinate of next point Következő pont Z koordinátája - + Radius Sugár - + Radius of Circle A kör sugara - + Coordinates relative to last point or absolute (SPACE) Előző ponthoz viszonyított vagy abszolút koordináták (SZÓKÖZ) - + Undo the last segment (CTRL+Z) Utolsó szakasz visszavonása (CTRL+Z) - + Finishes and closes the current line (C) Vonal befejezése és lezárása (C) - + Offset Eltolás - + XY XY - + Select XY plane XY sík kiválasztása - + XZ XZ - + Select XZ plane XZ sík kiválasztása - + YZ YZ - + Select YZ plane YZ sík kiválasztása - + View Nézet - + Select plane perpendicular to the current view Aktuális nézetre merőleges sík kiválasztása - + Do not project points to a drawing plane Ne vetíts pontot a Rajz síkra - + If checked, objects will be copied instead of moved (C) Bejelölve az objektumok másolását eredményezi mozgatás helyett - + Line Color Vonal színe - + Face Color Felület szín - + Line Width Vonalvastagság - + Font Size Betűméret - + Apply to selected objects Alkalmazás a kijelölt objektumokon - + Toggles Construction Mode Építési mód váltása - + Select Plane Jelölje ki a síkot - + Line Vonal - + Circle Kör - + Center X Közép X - + Arc Ív - + Pick Object Objektum kiválasztás - + draft Command Bar rajzolói parancssor - + Pick a face to define the drawing plane Felület megadása, amely meghatározza a rajz síkját - + Pick first point: Válassza ki az első pontot: - + Pick next point: Következő pont kiválasztása: - + Pick next point, or (F)inish or (C)lose: Következő pont kiválasztása, vagy (F) befejez, vagy (C) lezár: - + Pick opposite point: Ellenkező pontot kiválasztása: - + Pick center point: Középpont kijelölése: - + Pick radius: Sugár megadása: - + Pick start angle: Kezdő fok megadása: - + Pick aperture: Nyílás kiválasztás: - + Aperture angle: Nyílás szöge: - + Pick location point: Helyzet pont megadása: - + Select an object to move Objektum kijelölése mozgatáshoz - + Pick start point: Kiinduló pont megadása: - + Pick end point: Végpont megadása: - + Select an object to rotate Jelöljön ki egy objektumot elforgatható - + Pick rotation center: Válassza ki az elforgatás középpontját (tengelyét): - + Pick base angle: Alap szög megadása - + Pick rotation angle: Adja meg az Elforgatás szögét: - + Select an object to offset Jelöljön ki egy objektumot az eltoláshoz - + Offset only works on one object at a time Az eltoláshoz csak egy objektumot lehet kijelölni - + Pick distance: Adja meg a távolságot - + Select an object to upgrade Jelöljön ki egy objektumot a frissítéshez - + Select an object to trim/extend Válasszon ki egy objektumot a levágáshoz/bővítéshez - + Select an object to scale Objektum kijelölése a méretezéshez - + Pick base point: Bázis pont kiválasztása - + Pick scale factor: Mérettényező megadása - + Number of sides Oldalak száma - + &Relative $Relatív - + &Undo $Visszavon - + &Close $Bezár - + &Copy &Másol - + If checked, command will not finish until you press the command button again Ha be van jelölve, a parancs nem fejeződik be, amíg újra meg nem nyomja a parancs gombot - + &Continue &Folytatás - - Wire has been closed - - A vezeték le lett zárva - - - + Last point has been removed Utolsó pont eltávolítva - + Spline has been closed Spline lezárva - + Edges don't intersect! Élek nem metszik egymást! - + Cannot offset this object type Ezt az objektum típust nem képes eltolni - + Found groups: closing each open object inside Csoportokat talált: minden belső nyitott objektum bezárása - + Found 2 objects: fusing them 2 Objektum található: összevonás - + Found 1 non-parametric objects: draftifying it Találtunk 1 nem parametrikus objektumok: vázrajzzá alakít - + Found 1 closed sketch object: making a face from it 1 zárt vázlat objektumot talált: felületet képez - - Found closed wires: making faces - - Zárt vonalakat talált: felületet képez - - - + Found 1 open wire: closing it 1 nyílt szakaszt talált: Bezárja - + Found several edges: wiring them Több élt talált: összeköti őket - + Found several non-connected edges: making compound Talált több, nem összefüggő élet: összeillesztést végez - + Found several non-treatable objects: making compound Több nem kezelhető objektumok található: összerendezés - + Found 1 parametric object: breaking its dependencies Találtunk 1 parametrikus objektumot: függőségeket felosztjuk - + Found 2 objects: subtracting them Két objektum találat: kivonás - + Found several faces: splitting them Több felület találat: felosztás - + Found several objects: subtracting them from the first one Több objektum találat: kivonja az elsőből - + Found 1 face: extracting its wires Találtunk 1 felületet: vonalakra bontjuk - + Found only wires: extracting their edges Csak vonalak találhatók: éleik kibontása - + This object type is not editable Ehhez az objektumtípus nem szerkezthető - + Active object must have more than two points/nodes Aktív objektumnak kettőnél több pontot, csomópontot kell tartalmaznia. - + Finishes the current drawing or editing operation (F) Befejezi az aktuális rajz vagy szerkesztési művelet (F) - + Add points to the current object Pontot ad az aktuális objektumhoz - + Remove points from the current object A meglévő objektumból kiveszi a pontokat - + F&illed Kitöltés - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Jelölje be ezt, ha a tárgyat kitöltve szeretné megjeleníteni, különben drótváz (F) jelenik meg - + &Finish Befejezés - + If checked, an OCC-style offset will be performed instead of the classic offset Ha kijelölt, egy OCC-stílusú eltolás lesz végrehajtva a klasszikus eltolás helyett - + &OCC-style offset &amp; OCC-stílusú eltolás - + &Wipe &Tisztít - + Wipes the existing segments of this line and starts again from the last point (W) Kitisztítja a meglévő szegmenst ebből a vonalból és ismét az utolsó ponttól kezdi(W) - + Point Pont - + Distance Távolság - + Edit Szerkesztés - - Create Wire - Rácsvonal létrehozása - - - + Create BSpline BSpline létrehozása - + Create Rectangle Téglalap rajzolása - + Create Circle Kör rajzolása - + Create Arc Ív létrehozása - + Create Polygon Polygon létrehozása - + Create Text Szöveg létrehozása - + Create Dimension Méretek létrehozása - - Delete Measurement - Méretek törlése - - - + Copy Másolás - + Move Mozgat - + Change Style Stílus váltás - + Rotate Forgatás - + Found 1 solidificable object: solidifying it Találtunk 1 kialakítható felületet: megszilárdítjuk, felületet képezünk - + Found several objects or faces: making a parametric face Több objektumot, felületet talált: parametrukus felületet készít - + Found objects containing curves: fusing them 2 görbét tartalmazó objektumok talált: egybeolvaszt - + Found several objects: fusing them Talált több objektumot: összeolvasztja őket - + Scale Méret - + Trim - Trim + Vágás - + Start Angle - Start Angle + Kezdő nézet - + Aperture - Aperture + Nyílás - + Installed Macros - Installed Macros + Telepített makrók - - Draft tools - Draft tools - - - - Draft - Draft - - - - Display options - Display options - - - + Wire tools - Wire tools + Vonal eszköztár + + + + DWire + Terv-vonal + + + + Create DWire + Rácsvonal létrehozása + + + + DWire has been closed + + A rácsvonal le lett zárva + + + + BSpline + Folyamatos ív + + + + Rectangle + Téglalap + + + + Polygon + Sokszög + + + + Text + Szöveg + + + + Dimension + Dimenzió + + + + No upgrade available for this object + + Nem érhető el, az objektumhoz tartozó frissítés + + + + Couldn't upgrade these objects + + Nem sikerült frissíteni ezeket az objektumokat + + + + One wire is not planar, upgrade not done + + Egy háló nem síkbeli, frissítés nem történik + + + + Found a closed wire: making a face + + Egy zárt hálót talált: felületet hoz létre + + + + Found 1 open edge: making a line + + Egy nyitott élt talált: vonalat hoz létre + + + + Found 1 circular edge: making a circle + + Egy kerületi élt talált: kört hoz létre + + + + No more downgrade possible + + Nem lehet több visszaminősítést végezni + + + + Draft creation tools + Tervezési létrehozó eszközök + + + + Draft modification tools + Tervezési módosítási eszközök + + + + &Draft + Rajzolás + + + + Context tools + Környezeti eszközök diff --git a/src/Mod/Draft/Resources/translations/Draft_it.qm b/src/Mod/Draft/Resources/translations/Draft_it.qm index 587d48ccf..3a58c2e4c 100755 Binary files a/src/Mod/Draft/Resources/translations/Draft_it.qm and b/src/Mod/Draft/Resources/translations/Draft_it.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_it.ts b/src/Mod/Draft/Resources/translations/Draft_it.ts index 419002f3a..3f742685b 100755 --- a/src/Mod/Draft/Resources/translations/Draft_it.ts +++ b/src/Mod/Draft/Resources/translations/Draft_it.ts @@ -4,38 +4,38 @@ Draft_AddPoint - + Add Point Aggiungi punto - + Adds a point to an existing wire/bspline - Elimina un punto da un wire o bspline esistente + Aggiunge un punto ad una polilinea/bspline esistente Draft_AddToGroup - + Adds the selected object(s) to an existing group - Aggiunge l'oggetto selezionato a un gruppo esistente + Aggiunge l'oggetto selezionato (o gli oggetti selezionati) ad un gruppo esistente - + Add to group... - Aggiungi al gruppo... + Aggiungere al gruppo... Draft_ApplyStyle - + Apply Current Style - Applica lo stile corrente + Applica Stile Corrente - + Applies current line width and color to selected objects Applica lo spessore ed il colore della linea corrente agli oggetti selezionati @@ -43,116 +43,150 @@ Draft_Arc - + Arc Arco - + Creates an arc. CTRL to snap, SHIFT to constrain - Crea un arco. CTRL per lo snap, SHIFT per limitare + Crea un arco. CTRL per agganciare, MAIUSC per vincolare + + + + Draft_Array + + + Array + Matrice + + + + Creates a polar or rectangular array from a selected object + Crea una matrice polare o rettangolare da un oggetto selezionato Draft_BSpline - + B-Spline B-Spline - + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain - Crea una b-spline multi-punto. CTRL per lo snap, SHIFT per limitare + Crea una b-spline multi-punto. CTRL per agganciare, MAIUSC per vincolare Draft_Circle - + Circle Cerchio - + Creates a circle. CTRL to snap, ALT to select tangent objects - Crea un cerchio. CTRL per lo snap, ALT per selezionare gli oggetti tangenti + Crea un cerchio. CTRL per agganciare, ALT per selezionare oggetti tangenti + + + + Draft_Clone + + + Clone + Clona + + + + Clones the selected object(s) + Clona gli oggetti selezionati Draft_CloseLine - + Close Line Chiudi la linea - + Closes the line being drawn - Chiude la linea corrente + Chiude la linea che si sta disegnando Draft_DelPoint - + Remove Point - Elimina punto + Rimuove Punto - + Removes a point from an existing wire or bspline - Elimina un punto da un wire o bspline esistente + Rimuovi un punto da una polilinea o bspline esistente Draft_Dimension - + Dimension - Quota + Quotatura - + Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment - Crea una quota. CTRL per lo snap, SHIFT per limitare, ALT per selezionare un segmento + Crea una quotatura. CTRL per agganciare, MAIUSC per vincolare, ALT per selezionare un segmento Draft_Downgrade - + Downgrade - Downgrade + Retrocedere - + Explodes the selected objects into simpler objects, or subtract faces - Esplode gli oggetti selezionati in oggetti piú semplice, o sottrae le facce + Esplode gli oggetti selezionati in oggetti piú semplici, o sottrae facce + + + + Draft_Draft2Sketch + + + Draft to Sketch + Da Draft a Sketch Draft_Drawing - + Drawing Disegno - + Puts the selected objects on a Drawing sheet. - Mette gli oggetti selezionati su un foglio di disegno. + Pone gli oggetti selezionati su un foglio di Disegno. Draft_Edit - + Edit Modifica - + Edits the active object Modifica l'oggetto attivo @@ -160,12 +194,12 @@ Draft_FinishLine - + Finish line Termina la linea - + Finishes a line without closing it Termina la linea senza chiuderla @@ -173,142 +207,173 @@ Draft_Line - + Line Linea - + Creates a 2-point line. CTRL to snap, SHIFT to constrain - Crea una linea per due punti. CTRL per lo snap, SHIFT per limitare + Crea una linea tra due punti. CTRL per agganciare, MAIUSC per vincolare Draft_Move - + Move Sposta - + Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy - Sposta gli oggetti selezionati tra 2 punti. CTRL per lo snap, SHIFT per limitare, ALT per creare una copia + Sposta gli oggetti selezionati tra 2 punti. CTRL per agganciare, MAIUSC per vincolare, ALT crea una copia Draft_Offset - + Offset Offset - + Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy - Crea un offset dell'oggetto selezionato. CTRL per lo snap, SHIFT per limitare, ALT per creare una copia + Crea un offset dell'oggetto selezionato. CTRL per agganciare, MAIUSC per vincolare, ALT crea una copia + + + + Draft_Point + + + Point + Punto + + + + Creates a point object + Crea un oggetto punto Draft_Polygon - + Polygon Poligono - + Creates a regular polygon. CTRL to snap, SHIFT to constrain - Crea un poligono regolare. CTRL per lo snap, MAIUSC per vincolare + Crea un poligono regolare. CTRL per agganciare, MAIUSC per vincolare Draft_Rectangle - + Rectangle Rettangolo - + Creates a 2-point rectangle. CTRL to snap - Crea un rettangolo per due punti. CTRL per lo snap + Crea un rettangolo tra due punti. CTRL per agganciare Draft_Rotate - + Rotate Ruota - + Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy - Routa gli oggetti selezionati. CTRL per lo snap, SHIFT per limitare, ALT per creare una copia + Ruota gli oggetti selezionati. CTRL per agganciare, MAIUSC per vincolare, ALT crea una copia Draft_Scale - + Scale Scala - + Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy - Scala gli oggetti selezionati a partire da un punto base. CTRL per lo snap, SHIFT per limitare, ALT per creare una copia + Scala gli oggetti selezionati partendo da un punto base. CTRL per agganciare, MAIUSC per vincolare, ALT crea una copia Draft_SelectGroup - + Select group - Seleziona gruppo + Selezionare gruppo - + Selects all objects with the same parents as this group - Seleziona tutti gli oggetti con gli stessi genitori di questo gruppo + Seleziona tutti gli oggetti aventi gli stessi genitori di questo gruppo Draft_SelectPlane - + SelectPlane - Piano di lavoro + SelezionaPiano - + Select a working plane for geometry creation - Seleziona un piano di lavoro per la creare la geometria + Seleziona un piano di lavoro per creare la geometria Draft_Shape2DView - + Shape 2D view - Forma vista 2D + Vista Profilo 2D - + Creates Shape 2D views of selected objects - Crea una visualizzazione 2D forma degli oggetti selezionati + Crea viste "Profilo 2D" degli oggetti selezionati + + + + Convert bidirectionally between Draft and Sketch objects + Converte in entrambe le direzioni tra oggetti Draft e Sketch + + + + Draft_ShowSnapBar + + + Show Snap Bar + Mostra barra Snap + + + + Shows Draft snap toolbar + Mostra la barra degli strumenti Snap Draft_Text - + Text Testo - + Creates an annotation. CTRL to snap Crea un'annotazione. CTRL per lo snap @@ -316,105 +381,131 @@ Draft_ToggleConstructionMode - + Toggle construcion Mode - Modo di costruzione + Attiva/Disattiva Modalità costruzione - + Toggles the Construction Mode for next objects. - Attiva/disattiva il modo Costruzione per i prossimi oggetti. + Attiva/disattiva la Modalità Costruzione per i prossimi oggetti. Draft_ToggleContinueMode - + Toggle continue Mode - Attiva/Disattiva la Modalità Continua + Attiva/Disattiva la Modalità "Continua" - + Toggles the Continue Mode for next commands. - Attiva o disattiva la Modalità Continua per i comandi successivi. + Attiva o disattiva la Modalità "Continua" per i comandi successivi. Draft_ToggleDisplayMode - + Toggle display mode Attiva/Disattiva la modalità di visualizzazione - + Swaps display mode of selected objects between wireframe and flatlines - Alterna la modalità di visualizzazione degli oggetti selezionati da wireframe a flatlines + Alterna la modalità di visualizzazione degli oggetti selezionati tra "a reticolo" e "a facce piene" + + + + Draft_ToggleGrid + + + Toggle Grid + Attiva/disattiva griglia + + + + Toggles the Draft gid on/off + Attiva/disattiva la griglia Draft + + + + Draft_ToggleSnap + + + Toggle snap + Attiva/disattiva snap + + + + Toggles Draft snap on or off + Attiva/disattiva lo snap Draft Draft_Trimex - + Trimex - Taglia/Estende + Tronca/Estende - + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts - Taglia o estende l'oggetto selezionato, o estrude le singole facce. CTRL per lo snap, SHIFT per vincolare al segmento corrente o alla normale, ALT inverte + Tronca o estende l'oggetto selezionato, o estrude singole facce. CTRL per agganciare, MAIUSC per vincolare al segmento corrente o alla sua normale, ALT inverte Draft_UndoLine - + Undo last segment Annulla l'ultimo segmento - + Undoes the last drawn segment of the line being drawn - Annulla l'ultimo segmento della linea corrente + Annulla l'ultimo segmento disegnato della linea che si sta disegnando Draft_Upgrade - + Upgrade - Upgrade + Promuovere - + Joins the selected objects into one, or converts closed wires to filled faces, or unite faces - Unisce gli oggetti selezionati in uno solo, o converte le linee chiuse in facce, o unisce le facce + Congiunge gli oggetti selezionati, o converte polilinee chiuse in facce piene, o unisce facce Draft_Wire - - Wire - Wire + + DWire + DWire - - Creates a multiple-point wire. CTRL to snap, SHIFT to constrain - Crea un wire multi-punto. CTRL per lo snap, SHIFT per limitare + + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + Crea DraftWire (DWire) multipunto. CTRL per eseguire lo snap, MAIUSC per vincolare Draft_WireToBSpline - + Wire to BSpline - Da Wire a BSpline + Da Polilinea a BSpline - + Converts between Wire and BSpline - Converte tra Wire e BSpline + Converte tra Polilinea e BSpline @@ -425,239 +516,240 @@ Impostazioni generali Draft - + Default color Colore predefinito - + the default color for new objects il colore predefinito per i nuovi oggetti - + Default linewidth - Spessore linea predefinito + Spessore di linea predefinito - + the default linewidth for new objects - lo spessore linea predefinito per i nuovi oggetti + lo spessore di linea predefinito per nuovi oggetti - + Snap color - Colore snap + Colore di aggancio - + the default color for snap symbols - il colore predefinito per i simboli snap + il colore predefinito per i simboli di aggancio - + Construction color Colore di costruzione - + This is the default color for objects being drawn while in construction mode. - Questo è il colore predefinito per gli oggetti in fase di elaborazione in modalità di costruzione. + Questo è il colore predefinito per oggetti che vengon disegnati in modalità costruzione. - + This is the default group name for construction geometry Questo è il nome predefinito del gruppo per la geometria di costruzione - + Construction Costruzione - + check this if you want to use the color/linewidth from the toolbar as default - Selezionare questa opzione se si desidera utilizzare il colore e lo spessore linea dalla barra degli strumenti come impostazione predefinita + Spuntare questa opzione se si desidera utilizzare il colore/spessore di linea dalla barra degli strumenti, come impostazione predefinita - + Save current color and linewidth across sessions - Salva il colore corrente e lo spessore linea per tutte le sessioni + Salva il colore e lo spessore di linea correnti, per tutte le sessioni - + If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode - Se questa opzione è selezionata, la modalità copia sarà mantenuta per tutti i comandi, altrimenti i comandi inizieranno sempre nella modalità senza copia + Se questa opzione è spuntata, la modalità copia sarà mantenuta per tutti i comandi, altrimenti i comandi si avvieranno sempre in modalità senza-copia - + Global copy mode Modalità di copia globale - + If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. - Se questa opzione è selezionata, lo snap agli oggetti esistenti durante il disegno sarà sempre attivo. In caso contrario, lo snap sarà attivo premendo il tasto CTRL. + Se questa opzione è spuntata, durante il disegno ti aggancerai sempre ad oggetti esistenti. In caso contrario, ti aggancerai solo premendo il tasto CTRL. - + If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe - Se questa opzione è selezionata, gli oggetti appariranno di default come riempiti. In caso contrario, appariranno come wireframe + Se questa opzione è spuntata, per difetto gli oggetti appariranno "a facce piene". Altrimenti, appariranno "a reticolo" - + Fill objects by default Riempi gli oggetti come impostazione predefinita - + Default working plane Piano di lavoro predefinito - + None Nessuno - + XY (Top) - XY (superiore) + XY (Superiore) - + XZ (Front) - XZ (anteriore) + XZ (Frontale) - + YZ (Side) - YZ (laterale) + YZ (Laterale) - + The number of decimals in internal coordinates operations (for ex. 3 = 0.001) Il numero di decimali nelle operazioni con coordinate interne (ad esempio 3=0.001) - + Default text height - Dimensione del testo predefinita + Altezza del testo predefinita - + Default height for texts and dimensions - Dimensione predefinita per testi e quote + Altezza predefinita per testi e quotature - + Default text font - Tipo di carattere predefinito + Carattere di testo predefinito - + This is the default font name for all Draft texts and dimensions. It can be a font name such as "Arial", a default style such as "sans", "serif" or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style such as "Arial:Bold" - Questo è il nome del carattere predefinito per tutti i testi e le quote nel modulo Draft. -Può essere un nome di carattere come "Arial", uno stile predefinito come "sans", "serif" o "mono", o una famiglia come "Arial, Helvetica, sans" o un nome con uno stile come "Arial:Bold" + Questo è il nome del carattere predefinito per tutti i testi e le quotature di Abbozzo. +Può essere un nome di carattere come "Arial", uno stile predefinito come "sans", "serif" o "mono", o una famiglia come "Arial,Helvetica,sans" o un nome con uno stile come "Arial:Bold" - + Arial Arial - + Default template sheet - Modello di foglio predefinito + Foglio di modello predefinito - + The default template to use when creating a new drawing sheet Il modello predefinito da utilizzare quando si crea un nuovo foglio di disegno - + Import style - Importa stile + Stile di importazione This is the method choosed for importing or translating DXF object color into FreeCAD. If color mapping is choosed, you must choose a color mapping file containing a translation table that will convert colors into linewidths. - Questo è il metodo scelto per l'importazione o la traduzione del colore dell'oggetto DXF in FreeCAD. -Se la mappatura colore è scelta, è necessario scegliere un file di mappatura colore contenente una tabella di traduzione che converte i colori in spessori linea. + Questo è il metodo scelto per importare o tradurre in FreeCAD il colore d'oggetto DXF. +Se opti per mappatura di colore, devi scegliere un file di mappatura colore contenente una tabella di traduzione che convertirà i colori in spessori linea. + - + None (fastest) Nessuno (più veloce) - + Use default color and linewidth - Usa colore e spessore linea predefiniti + Usa colore e spessore di linea predefiniti - + Original color and linewidth - Colore e spessore linea originali + Colore e spessore di linea originali Color mapped to linewidth - Da mappatura colore a spessore linea + Colore mappato a spessore di linea - + if this is checked, paper space objects will be imported too - Se questa opzione è selezionata, anche gli oggetti dello spazio carta saranno importati + Se questa opzione è spuntata, verranno importati anche gli oggetti dello spazio carta - + Import layouts - Importa layout + Importa layouts - + if this is unchecked, texts/mtexts won't be imported - Se questa opzione non è selezionata, i text/mtext non saranno importati + Se questa opzione non è spuntata, i text/mtext non saranno importati - + Color mapping file - File di mappatura colore + File di mappatura di colore - + The color mapping file for translating dxf colors into linewidths - Il file di mappatura colore per tradurre i colori dxf in spessori linea + Il file di mappatura di colore per tradurre i colori dxf in spessori linea - + Max Spline Segment Segmento Spline massimo - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. - Quando si esportano le spline in DXF, saranno trasformate in polilinee. Questo valore è la lunghezza massima di ciascun segmento della polilinea. Se impostato a 0, l'intera spline sarà trattata come un segmento. + Esportando le spline in DXF, esse vengono trasformate in polilinee. Questo valore è la lunghezza massima di ciascun segmento della polilinea. Se impostato a 0, l'intera spline sarà trattata come un unico segmento retto. - + This is the method choosed for importing SVG object color into FreeCAD. Questo è il metodo scelto per l'importazione dei colori degli oggetti SVG in FreeCAD. - + Check this if you want the areas (3D faces) to be imported too. - Selezionare questa opzione se si desidera che anche le aree (facce 3D) siano importate. + Spuntare questa opzione se si desidera che anche le aree (facce 3D) siano importate. - + Import OCA areas Importa aree OCA @@ -667,83 +759,83 @@ Se la mappatura colore è scelta, è necessario scegliere un file di mappatura c Impostazioni generali - + Construction group name Nome del gruppo di costruzione - + Tolerance Tolleranza - + This is the value used by functions that use a tolerance. Values with differences below this value will be treated as same. Questo è il valore utilizzato dalle funzioni che utilizzano una tolleranza. I valori con differenze al di sotto di questo valore saranno trattati come uguali. - + Dimensions & Leader arrow style - Dimensioni e stile della freccia + Stile delle Quotature e delle relative Linee/Frecce - + Dot 5 Punto 5 - + Dot 7 Punto 7 - + Dot 9 Punto 9 - + Circle 5 Cerchio 5 - + Circle 7 Cerchio 7 - + Circle 9 Cerchio 9 - + Slash 5 Slash 5 - + Slash 7 Slash 7 - + Slash 9 Slash 9 - + Backslash 5 Backslash 5 - + Backslash 7 Backslash 7 - + Backslash 9 Backslash 9 @@ -758,202 +850,202 @@ Values with differences below this value will be treated as same. Opzioni del formato DXF - + Import texts and dimensions - Importa testi e quote + Importa testi e quotature - + Check this if you want the non-named blocks (beginning with a *) to be imported too - Seleziona questa opzione se si desidera che anche i blocchi senza nome (che iniziano con *) vengano importati + Spuntare questa opzione se si desidera che anche i blocchi senza nome (che iniziano con *) vengano importati - + Import *blocks - Importa blocchi * + Importa blocchi* - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... - Se selezionato, freecad cercherà di unire gli oggetti coincidenti in wire. Attenzione, questo può richiedere un po' di tempo... + Se spuntato, freecad cercherà di congiungere in polilinee gli oggetti coincidenti. Attenzione, ciò può richiedere del tempo... - + Join geometry Unisci la geometria - + SVG format options Opzioni del formato SVG - + OCA format options Opzioni del formato OCA - + Alternate SVG Patterns location - Percorso alternativo Pattern SVG + Percorso alternativo per Motivi SVG - + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns - Qui è possibile specificare una directory contenente i file SVG che contengono le definizioni <pattern> che possono essere aggiunte ai modelli standard Draft di campitura + Qui è possibile specificare un repertorio con file SVG contenenti definizioni <pattern>, che possono venir aggiunti ai motivi di campitura standard d'Abbozzo - + Draft interface mode - Modalità interfaccia Draft + Modalità d'interfaccia Abbozzo - + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction - Questa è la modalità di interfaccia utente in cui il modulo Draft funzionerà: la modalità barra degli strumenti porrà tutte le impostazioni Draft in una barra degli strumenti separata, mentre la modalità barra delle attività utilizzerà il sistema finestra della attività FreeCAD per tutte le sue interazioni utente + Questa è la modalità di Interfaccia Utente con cui funzionerà il modulo Abbozzo: la modalità "barra strumenti" porrà tutte le impostazioni dell'Abbozzo in una barra degli strumenti separata, mentre la modalità "barra attività" utilizzerà il sistema di Visualizzazione d'attività di FreeCAD per tutte le sue interazioni con l'utente - + Toolbar Barra degli strumenti - + Taskview Finestra attività - + Constrain mod Vincolo mod - + The Constraining modifier key - Il tasto di modifica di vincolo + Il tasto di modifica dei vincoli - + shift maiusc - + ctrl ctrl - + alt alt - + Snap mod - Snap mod + Aggancio mod - + The snap modifier key - Il tasto modificatore snap + Il tasto modificatore dell'aggancio - + Alt mod Alt mod - + The alt modifier key Il tasto modificatore alt - + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. - Normalmente, dopo la copia degli oggetti, le copie sono selezionate. Se questa opzione è selezionata, saranno invece selezionati gli oggetti base. + Normalmente, dopo la copia di oggetti, rimangono selezionate le copie. Spuntando questa opzione, rimarranno invece selezionati gli oggetti di base. - + Select base objects after copying - Seleziona gli oggetti base dopo la copia + Seleziona gli oggetti di base dopo la copia - + Always snap to objects (disable snap mod key) - Snap ad oggetto sempre attivo (disabilità il tasto modificatore di snap) + Aggancia sempre agli oggetti (disabilita il tasto modificatore dell'aggancio) - + The radius for snapping to special points. Set to 0 for no distance (infinite) Il raggio per l'aggancio ai punti speciali. Imposta a 0 per nessuna distanza (infinito) - + Snap range - Raggio di Snap + Raggio di aggancio - + px px - + If checked, a grid will appear when drawing - Se selezionato, una griglia apparirà durante il disegno + Se spuntato, durante il disegno apparirà una griglia - + Use grid - Usa la griglia + Usa griglia - + Grid spacing Spaziatura della griglia - + The spacing between each grid line La spaziatura tra ogni riga della griglia - + Main lines every Linee principali ogni - + Mainlines will be drawn thicker. Specify here how many squares between mainlines. Le linee principali saranno disegnate più spesse. Specificare qui il numero di quadrati tra linee principali. - + Internal precision level Livello di precisione interno - + Dimensions precision level - Livello di precisione delle dimensioni + Livello di precisione delle quotature - + Vertical dimensions text orientation - Orientamento del testo delle quote verticali + Orientamento del testo delle quotature verticali - + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. - Questo è l'orientamento dei testi delle quote quando tali quote sono verticale. Predefinito è a sinistra, che è lo standard ISO. + Questo è l'orientamento dei testi delle quotature, quando esse sono verticali. Predefinito è a sinistra, come per lo standard ISO. - + Left (ISO standard) Sinistra (standard ISO) - + Right Destra @@ -963,739 +1055,961 @@ Values with differences below this value will be treated as same. Crea oggetti parametrici - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable - se questa opzione è selezionata, gli oggetti appartenenti agli stessi livelli saranno uniti in blocchi Draft, Aumentando la velocità di visualizzazione, ma rendendoli meno facilmente modificabili + se questa opzione è spuntata, oggetti appartenenti a stessi livelli saranno uniti in Blocchi di Abbozzo, aumentandone la velocità di visualizzazione, ma rendendoli meno facilmente modificabili - + Group layers into blocks - Raggruppa i livelli in blocchi + Raggruppa livelli in blocchi - + If this is checked, all objects containing faces will be exported as 3d polyfaces - Se questa opzione è selezionata, tutti gli oggetti contenenti facce saranno esportati come multifaccefacce 3D + Se questa opzione è spuntata, tutti gli oggetti contenenti facce saranno esportati come multifacce 3D - + Export 3D objects as polyface meshes - Esporta gli oggetti 3D come mesh multifaccia + Esporta gli oggetti 3D come maglie poligonali multifaccia + + + + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + Se questo è selezionato, l'ambiente Draft non sarà visualizzato. Utile dal momento che tutti gli strumenti Draft sono disponibili anche nell'ambiente Arch. + + + + Hide Draft workbench + Nascondi l'ambiente Draft + + + + If this is checked, snapping will not occur against objects with more than the indicated number of edges + Se questo è selezionato, lo snap non si verificherà su oggetti con un numero di spigoli maggiore del numero indicato + + + + Snap maximum + Snap massimo + + + + Maximum number of edges to be considered for snapping + Numero massimo di spigoli che devono essere considerati per lo snap + + + + Maximum number of edges + Numero massimo di spigoli + + + + If checked, the Snap toolbar will be shown whenever you use snapping + Se selezionato, la barra degli strumenti Snap sarà mostrata ogni volta che si usa lo snap + + + + Show Draft Snap toolbar + Mostra la barra degli strumenti Snap + + + + Hide Draft snap toolbar after use + Nascondi la barra degli strumenti snap dopo l'uso + + + + if checked, a widget indicating the current working plane orientation appears during drawing operations + Se selezionato, viene visualizzatao un widget che indica l'orientamento del piano lavoro corrente durante le operazioni di disegno + + + + Show Working Plane tracker + Visualizza piano lavoro tracciante + + + + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + Se selezionato, la griglia Draft sarà sempre visibile quando l'ambiente Draft è attivo. In caso contrario solo quando si utilizza un comando + + + + Always show + Mostra sempre + + + + Create Sketches + Crea Sketch + + + + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + Se questo è selezionato, i testi importati avranno la dimensione standard Draft, invece della dimensione che hanno nel documento DXF + + + + Use standard font size for texts + Usa dimensioni di font standard per testi + + + + If this is checked, hatches will be converted into simple wires + Se questo è selezionato, i tratteggi saranno convertiti in semplici wire + + + + Import hatch boundaries as wires + Importa i confini del tratteggio come wire + + + + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + Se questo è selezionato, quando le polilinee hanno una larghezza definita, saranno disegnate come wire chiusi con la larghezza corretta + + + + Render polylines with width + Disegna le polilinee con spessore + + + + Export Style + Stile di esportazione + + + + Style of SVG file to write when exporting a Sketch. + Stile dei file in formato SVG quando si esporta uno sketch. + + + + Translated (for print & display) + Tradotto (per stampa & visualizzazione) + + + + Raw (for CAM) + RAW (per CAM) + + + + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + Quando si esportano viste SVG, rendere nere tutte le linee bianche, per una migliore leggibilità su sfondi bianchi + + + + Translate white line color to black + Trasforma le linee di colore bianco in nero draft - + active command: comando attivo: - + None Nessuno - + Active Draft command - Comando attivo + Comando Abbozzo attivo - + X coordinate of next point Coordinata X del prossimo punto - + X X - + Y Y - + Z Z - + Y coordinate of next point Coordinata Y del prossimo punto - + Z coordinate of next point Coordinata Z del prossimo punto - + Radius Raggio - + Radius of Circle Raggio del Cerchio - + Coordinates relative to last point or absolute (SPACE) Coordinate relative all'ultimo punto o assolute (BARRA SPAZIATRICE) - + Undo the last segment (CTRL+Z) Annulla l'ultimo segmento (CTRL+Z) - + Finishes and closes the current line (C) Termina e chiude la linea corrente (C) - + Offset Offset - + XY XY - + Select XY plane Seleziona il piano XY - + XZ XZ - + Select XZ plane Seleziona il piano XZ - + YZ YZ - + Select YZ plane Seleziona il piano YZ - + View Vista - + Select plane perpendicular to the current view Seleziona il piano perpendicolare alla vista corrente - + Do not project points to a drawing plane Non proiettare i punti su un piano di disegno - + If checked, objects will be copied instead of moved (C) Se selezionato, gli oggetti saranno copiati invece che spostati (C) - + Line Color Colore linea - + Face Color Colore faccia - + Line Width Spessore linea - + Font Size Dimensione carattere - + Apply to selected objects Applica agli oggetti selezionati - + Toggles Construction Mode - Attiva/disattiva il modo Costruzione + Attiva/Disattiva Modalità Costruzione - + Select Plane Seleziona il piano - + Line Linea - + Circle Cerchio - + Center X Centro X - + Arc Arco - + Pick Object - Specificare un oggetto + Scegli Oggetto - + draft Command Bar - Barra dei comandi draft + Barra Comandi abbozzo - + Pick a face to define the drawing plane - Specificare una faccia per definire il piano di disegno + Scegliere una faccia per definire il piano di disegno - + Pick first point: - Specificare il primo punto: + Scegli primo punto: - + Pick next point: - Specificare il punto seguente: + Scegli prossimo punto: + - + Pick next point, or (F)inish or (C)lose: - Specificare il punto successivo, o termina (F) o chiudi (C): + Scegli punto successivo, o (F)inisci o (C)hiudi: + - + Pick opposite point: - Specificare il punto opposto: + Scegli punto opposto: + - + Pick center point: - Specificare il centro: + Scegli punto centrale: + - + Pick radius: - Specificare il raggio: + Scegli raggio: - + Pick start angle: - Specificare l'angolo iniziale: + Scegli angolo iniziale: + - + Pick aperture: - Apertura di selezione: + Scegli apertura: + - + Aperture angle: Angolo di apertura: - + Pick location point: - Specificare il punto di localizzazione: + Scegli punto di localizzazione: + - + Select an object to move Seleziona un oggetto da spostare - + Pick start point: - Specificare il punto iniziale: + Scegli punto iniziale: + - + Pick end point: - Specificare il punto finale: + Scegli punto finale: - + Select an object to rotate Selezionare un oggetto da ruotare - + Pick rotation center: - Specificare il centro di rotazione: + Scegli centro di rotazione: + - + Pick base angle: - Specificare l'angolo base: + Scegli angolo di base: - + Pick rotation angle: - Specificare l'angolo di rotazione: + Scegli angolo di rotazione: - + Select an object to offset - Seleziona un oggetto sul quale effettuare l'offset + Seleziona un oggetto su cui effettuare l'offset + - + Offset only works on one object at a time - Il comando offset funziona su un solo oggetto per volta + Offset funziona solo su un oggetto alla volta + - + Pick distance: - Specificare la distanza: + Scegli distanza: + - + Select an object to upgrade - Selezionare un oggetto da aggiornare + Seleziona un oggetto da promuovere + - + Select an object to trim/extend - Selezionare un oggetto da tagliare/estendere + Seleziona un oggetto da troncare/estendere + - + Select an object to scale - Selezionare un oggetto da scalare + Seleziona un oggetto da scalare + - + Pick base point: - Specificare il punto base: + Scegli punto base: + - + Pick scale factor: - Specificare il fattore di scala: + Scegli fattore di scala: + - + Number of sides Numero di lati - + &Relative &Relativo - + &Undo &Annulla - + &Close &Chiudi - + &Copy &Copia - + If checked, command will not finish until you press the command button again - Se selezionato, il comando non finirà finché non si preme nuovamente il pulsante del comando + Se spuntato, il comando non terminerà finché non si preme nuovamente il pulsante di comando - + &Continue &Continua - - Wire has been closed - - Il wire è stato chiuso - - - + Last point has been removed L'ultimo punto è stato rimosso - + Spline has been closed La Spline è stata chiusa - + Edges don't intersect! - I bordi non si intersecano! + I lati non si intersecano! + - + Cannot offset this object type - Non è possibile applicare l'offset a questo tipo di oggetto + Non è possibile creare offset con questo tipo di oggetto + - + Found groups: closing each open object inside Trovati gruppi: chiusura di ogni oggetto aperto - + Found 2 objects: fusing them - Trovati 2 oggetti: fusione + Trovati 2 oggetti: fusione degli stessi + - + Found 1 non-parametric objects: draftifying it - Trovato 1 oggetto non parametrico: draftifying + Trovato 1 oggetto non parametrico: creazione di un abbozzo dallo stesso + - + Found 1 closed sketch object: making a face from it - Trovato 1 oggetto sketch chiuso: creazione faccia + Trovato 1 oggetto schizzo chiuso: creazione di una faccia dallo stesso - - Found closed wires: making faces - - Trovati wire chiusi: creazione facce - - - + Found 1 open wire: closing it - Trovato 1 wire aperto: chiusura + Trovata 1 polilinea aperta: chiusura della stessa + - + Found several edges: wiring them - Trovati numerosi bordi: unione + Trovati numerosi lati: connessione degli stessi - + Found several non-connected edges: making compound - Trovato diversi bordi non connessi: creazione composti + Trovato diversi lati non connessi: creazione composizione - + Found several non-treatable objects: making compound - Trovato numerosi oggetti non trattabili: creazione composti + Trovato diversi oggetti non trattabili: creazione composizione - + Found 1 parametric object: breaking its dependencies - Trovato 1 oggetto parametrico: rottura delle dipendenze + Trovato 1 oggetto parametrico: rottura delle sue dipendenze - + Found 2 objects: subtracting them - Trovati 2 oggetti: sottrazione + Trovati 2 oggetti: sottrazione degli stessi + - + Found several faces: splitting them - Trovate diverse facce: divisione + Trovate diverse facce: separazione delle stesse + - + Found several objects: subtracting them from the first one Trovati diversi oggetti: sottrazione dal primo - + Found 1 face: extracting its wires - Trovata 1 faccia: estrazione di suoi wire + Trovata 1 faccia: estrazione delle sue polilinee - + Found only wires: extracting their edges - Trovati solo wire: estrazione dei loro bordi + Trovate solo polilinee: estrazione dei rispettivi lati - + This object type is not editable Questo tipo di oggetto non è modificabile - + Active object must have more than two points/nodes L'oggetto attivo deve avere più di due punti/nodi - + Finishes the current drawing or editing operation (F) - Termina il disegno corrente o l'operazione di modifica (T) + Finisce il disegno corrente o l'operazione di modifica (F) - + Add points to the current object Aggiungi punti all'oggetto corrente - + Remove points from the current object - Rimuovi i punti dall'oggetto corrente + Rimuovi punti dall'oggetto corrente - + F&illed - R&iempito + P&ieno - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) - Spunta questa opzione se l'oggetto dovrebbe apparire come riempito, altrimenti apparirà come wireframe (i) + Spunta questa opzione se l'oggetto dovrebbe apparire "a facce piene", altrimenti esso apparirà "a reticolo" (i) - + &Finish - &Termina + &Finisci - + If checked, an OCC-style offset will be performed instead of the classic offset - Se selezionato, sarà eseguito un offset in stile OCC invece dell'offset classico + Se spuntato, verrà eseguito un offset in stile OCC invece dell'offset classico - + &OCC-style offset - Offset stile &OCC + &Offset in stile OCC - + &Wipe - &Pulisce + &Cancella - + Wipes the existing segments of this line and starts again from the last point (W) - Pulisce i segmenti esistenti di questa linea e ricomincia dall'ultimo punto (W) + Cancella i segmenti esistenti di questa linea e ricomincia dall'ultimo punto (C) - + Point Punto - + Distance Distanza - + Edit Modifica - - Create Wire - Crea Wire - - - + Create BSpline Crea BSpline - + Create Rectangle Crea Rettangolo - + Create Circle - Crea Circonferenza + Crea Cerchio - + Create Arc Crea Arco - + Create Polygon Crea Poligono - + Create Text Crea Testo - + Create Dimension - Crea Quota + Crea Quotatura - - Delete Measurement - Elimina la Misura - - - + Copy Copia - + Move Sposta - + Change Style Cambia stile - + Rotate Ruota - + Found 1 solidificable object: solidifying it Trovato 1 oggetto solidificable: solidificazione - + Found several objects or faces: making a parametric face Trovati diversi oggetti o facce: creazione di una faccia parametrica - + Found objects containing curves: fusing them - Trovati oggetti contenenti curve: fusione + Trovati oggetti contenenti curve: fusione degli stessi + - + Found several objects: fusing them - Trovati diversi oggetti: fusione + Trovati diversi oggetti: fusione degli stessi + - + Scale Scala - + Trim Taglia - + Start Angle Angolo iniziale - + Aperture Apertura - + Installed Macros - Installed Macros + Macro installate - - Draft tools - Draft tools - - - - Draft - Draft - - - - Display options - Display options - - - + Wire tools - Wire tools + Strumenti Polilinea + + + + DWire + DWire + + + + Create DWire + Crea DWire + + + + DWire has been closed + + Il DWire è stato chiuso + + + + BSpline + BSpline + + + + Rectangle + Rettangolo + + + + Polygon + Poligono + + + + Text + Testo + + + + Dimension + Quotatura + + + + No upgrade available for this object + + Nessun upgrade possibile per questo oggetto + + + + Couldn't upgrade these objects + + Non è stato possibile eseguire l'upgrade di questi oggetti + + + + One wire is not planar, upgrade not done + + Un wire non è planare, upgrade non eseguito + + + + Found a closed wire: making a face + + Trovato un wire chiuso: creazione di una faccia + + + + Found 1 open edge: making a line + + Trovato 1 spigolo aperto: creazione di una linea + + + + Found 1 circular edge: making a circle + + Trovato 1 spigolo circolare: creazione di un cerchio + + + + No more downgrade possible + + Downgrade non più possibile + + + + Draft creation tools + Strumenti di creazione Draft + + + + Draft modification tools + Strumenti di modifica Draft + + + + &Draft + &Draft + + + + Context tools + Strumenti di contesto diff --git a/src/Mod/Draft/Resources/translations/Draft_ja.qm b/src/Mod/Draft/Resources/translations/Draft_ja.qm index f66aef956..658620933 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_ja.qm and b/src/Mod/Draft/Resources/translations/Draft_ja.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_ja.ts b/src/Mod/Draft/Resources/translations/Draft_ja.ts index f941953f9..c09d7c399 100644 --- a/src/Mod/Draft/Resources/translations/Draft_ja.ts +++ b/src/Mod/Draft/Resources/translations/Draft_ja.ts @@ -4,12 +4,12 @@ Draft_AddPoint - + Add Point 点の追加 - + Adds a point to an existing wire/bspline 既存の連線またはBスプライン曲線に点を追加します。 @@ -17,12 +17,12 @@ Draft_AddToGroup - + Adds the selected object(s) to an existing group 選択したオブジェクトを既存のグループに追加する - + Add to group... グループに追加... @@ -30,64 +30,90 @@ Draft_ApplyStyle - + Apply Current Style 現在のスタイルを適用する - + Applies current line width and color to selected objects - 現在の線と色が選択したオブジェクトに適用されます。 + 現在の線の幅と色を選択したオブジェクトに適用 Draft_Arc - + Arc 円弧 - + Creates an arc. CTRL to snap, SHIFT to constrain 円弧を作成、 [Ctrl]でスナップ、[Shift]で拘束 + + Draft_Array + + + Array + Array + + + + Creates a polar or rectangular array from a selected object + Creates a polar or rectangular array from a selected object + + Draft_BSpline - + B-Spline B-スプライン曲線 - + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain - Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain + 複数点からなるBスプライン曲線を作成します。[Ctrl]でスナップ、[Shift]で拘束。 Draft_Circle - + Circle - + Creates a circle. CTRL to snap, ALT to select tangent objects - 円を作成します。[Ctrl]でスナップ、[Alt]接線を指定 + 円を作成します。[Ctrl]でスナップ、[Alt]で接するオブジェクトを選択 + + + + Draft_Clone + + + Clone + Clone + + + + Clones the selected object(s) + Clones the selected object(s) Draft_CloseLine - + Close Line 閉じた線 - + Closes the line being drawn Closes the line being drawn @@ -95,12 +121,12 @@ Draft_DelPoint - + Remove Point 点の削除 - + Removes a point from an existing wire or bspline 既存の連線またはBスプライン曲線から点を削除します。 @@ -108,38 +134,46 @@ Draft_Dimension - + Dimension 寸法 - + Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment - 寸法を記入します。[Ctrl]でスナップ、[Shift]で拘束、[Alt]で部分を選択 + 寸法を記入します。[Ctrl]でスナップ、[Shift]で拘束、[Alt]でセグメントを選択 Draft_Downgrade - + Downgrade ダウングレード - + Explodes the selected objects into simpler objects, or subtract faces Explodes the selected objects into simpler objects, or subtract faces + + Draft_Draft2Sketch + + + Draft to Sketch + Draft to Sketch + + Draft_Drawing - + Drawing 図面 - + Puts the selected objects on a Drawing sheet. 選択されたオブジェクトを図面上に配置 @@ -147,12 +181,12 @@ Draft_Edit - + Edit 編集 - + Edits the active object アクティブなオブジェクトを編集します。 @@ -160,12 +194,12 @@ Draft_FinishLine - + Finish line フィニッシュ ライン - + Finishes a line without closing it Finishes a line without closing it @@ -173,25 +207,25 @@ Draft_Line - + Line 直線 - + Creates a 2-point line. CTRL to snap, SHIFT to constrain - 2点を指定して線を作成します。[Ctrl]:スナップ、[Shift]:拘束 + 2点を指定して線を作成します。[Ctrl]でスナップ、[Shift]で拘束 Draft_Move - + Move 移動 - + Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy 2点間で選択したオブジェクトを移動します。[Ctrl]でスナップ、[Shift]で拘束、[Alt]でコピー。 @@ -200,38 +234,51 @@ Draft_Offset - + Offset オフセット - + Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy - Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy + アクティブなオブジェクトをオフセットします。[Ctrl]でスナップ、[Shift]で拘束、[Alt]でコピー。 + + + + Draft_Point + + + Point + + + + + Creates a point object + Creates a point object Draft_Polygon - + Polygon 多角形 - + Creates a regular polygon. CTRL to snap, SHIFT to constrain - Creates a regular polygon. CTRL to snap, SHIFT to constrain + 正多角形を作成します。[Ctrl]でスナップ、[Shift]で拘束。 Draft_Rectangle - + Rectangle 四角形 - + Creates a 2-point rectangle. CTRL to snap 2 点を指定し四角形を作成します。[Ctrl]でスナップ @@ -239,12 +286,12 @@ Draft_Rotate - + Rotate 回転 - + Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy 選択したオブジェクトを回転します。[Ctrl]でスナップ、[Shift]で拘束、[Alt]でコピー。 @@ -252,25 +299,25 @@ Draft_Scale - + Scale 拡大縮小 - + Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy - Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy + 選択したオブジェクトを基準点を中心に拡大します。[Ctrl]でスナップ、[Shift]で拘束、[Alt]でコピー。 Draft_SelectGroup - + Select group グループを選択 - + Selects all objects with the same parents as this group Selects all objects with the same parents as this group @@ -278,12 +325,12 @@ Draft_SelectPlane - + SelectPlane 面を選択する - + Select a working plane for geometry creation ジオメトリを作成する作業面を選択する @@ -291,38 +338,56 @@ Draft_Shape2DView - + Shape 2D view Shape 2D view - + Creates Shape 2D views of selected objects Creates Shape 2D views of selected objects + + + Convert bidirectionally between Draft and Sketch objects + Convert bidirectionally between Draft and Sketch objects + + + + Draft_ShowSnapBar + + + Show Snap Bar + Show Snap Bar + + + + Shows Draft snap toolbar + Shows Draft snap toolbar + Draft_Text - + Text テキスト - + Creates an annotation. CTRL to snap - アノテーション(注釈、コメント)を作成します。[Ctrl]でスナップ + 注釈を作成します。[Ctrl]でスナップ Draft_ToggleConstructionMode - + Toggle construcion Mode Toggle construcion Mode - + Toggles the Construction Mode for next objects. Toggles the Construction Mode for next objects. @@ -330,12 +395,12 @@ Draft_ToggleContinueMode - + Toggle continue Mode Toggle continue Mode - + Toggles the Continue Mode for next commands. Toggles the Continue Mode for next commands. @@ -343,77 +408,103 @@ Draft_ToggleDisplayMode - + Toggle display mode 表示モードを切り替える - + Swaps display mode of selected objects between wireframe and flatlines 選択したオブジェクトの表示モードを変更する + + Draft_ToggleGrid + + + Toggle Grid + Toggle Grid + + + + Toggles the Draft gid on/off + Toggles the Draft gid on/off + + + + Draft_ToggleSnap + + + Toggle snap + Toggle snap + + + + Toggles Draft snap on or off + Toggles Draft snap on or off + + Draft_Trimex - + Trimex Trimex - + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts - Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts + 選択したオブジェクトをトリムまたは延長するか、もしくは単一の面を押し出します。[Ctrl]でスナップ、[Shift]で現在のセグメントまたは垂直方向に拘束、[Alt]で反転 Draft_UndoLine - + Undo last segment - 最後の操作を元に戻す + 最後のセグメントを元に戻す - + Undoes the last drawn segment of the line being drawn - 描画される線の最後の描画部分を元に戻します + 描画中の線で最後に描いたセグメントを元に戻す Draft_Upgrade - + Upgrade アップグレード - + Joins the selected objects into one, or converts closed wires to filled faces, or unite faces - Joins the selected objects into one, or converts closed wires to filled faces, or unite faces + 選択したオブジェクトをひとつに結合、または閉じた連線を塗り潰された面に変換、または面を統合 Draft_Wire - - Wire - 連線 + + DWire + DWire - - Creates a multiple-point wire. CTRL to snap, SHIFT to constrain - Creates a multiple-point wire. CTRL to snap, SHIFT to constrain + + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain Draft_WireToBSpline - + Wire to BSpline 連線をBスプライン曲線に変換 - + Converts between Wire and BSpline 連線とBスプライン曲線を相互変換 @@ -426,137 +517,137 @@ 一般的なドラフトの設定 - + Default color デフォルトの色 - + the default color for new objects 新規オブジェクトの既定色 - + Default linewidth 既定の線幅 - + the default linewidth for new objects 新しいオブジェクトのデフォルト線幅 - + Snap color スナップの色 - + the default color for snap symbols スナップシンボルのデフォルト色 - + Construction color 構造物の色 - + This is the default color for objects being drawn while in construction mode. This is the default color for objects being drawn while in construction mode. - + This is the default group name for construction geometry This is the default group name for construction geometry - + Construction 構造物 - + check this if you want to use the color/linewidth from the toolbar as default check this if you want to use the color/linewidth from the toolbar as default - + Save current color and linewidth across sessions Save current color and linewidth across sessions - + If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode - + Global copy mode Global copy mode - + If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. - If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. + これがチェックされている場合、描画中は常に既存のオブジェクトにスナップします。チェックされていない場合、[Ctrl]を押したときだけスナップします。 - + If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe - + Fill objects by default Fill objects by default - + Default working plane デフォルトの作業面 - + None なし - + XY (Top) XY (平面図) - + XZ (Front) XZ (正面図) - + YZ (Side) YZ (側面図) - + The number of decimals in internal coordinates operations (for ex. 3 = 0.001) The number of decimals in internal coordinates operations (for ex. 3 = 0.001) - + Default text height デフォルトのテキスト高さ - + Default height for texts and dimensions テキストと寸法のデフォルトの高さ - + Default text font デフォルトのテキストのフォント - + This is the default font name for all Draft texts and dimensions. It can be a font name such as "Arial", a default style such as "sans", "serif" or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style @@ -564,22 +655,22 @@ such as "Arial:Bold" これは、すべてのドラフト・テキストと寸法のデフォルト(省略時の設定)フォント名です。「Arial」のようにフォント名、「sans」,「serif」、o「mono」のようなデフォルトのスタイル名、「Arial,Helvetica,sans」のような系統名、 「Arial:Bold」のようなフォント名とスタイル名を組み合わせた形で指定することができます。 - + Arial Arial - + Default template sheet デフォルトのテンプレートシート - + The default template to use when creating a new drawing sheet デフォルトのテンプレートは、新規に図面シートを作成するときに使用する - + Import style インポートスタイル @@ -591,17 +682,17 @@ If color mapping is choosed, you must choose a color mapping file containing a t これは、FreeCADにDXFオブジェクトの色をインポートまたは変換しするために選択した方法です。もしカラーマッピングを選択するなら、あなたは変換する色や線幅を含む変換テーブルをもつカラーマッピングファイルを選ばなければならない。 - + None (fastest) 使用しない(最速) - + Use default color and linewidth デフォルト[既定値]の色と線幅を使用する - + Original color and linewidth 標準の色と線幅 @@ -611,52 +702,52 @@ If color mapping is choosed, you must choose a color mapping file containing a t 線幅のカラーマップ - + if this is checked, paper space objects will be imported too これがチェックされていると、ぺーバー空間オブジェクト[paper space object]もインポートされます。 - + Import layouts レイアウトのインポート - + if this is unchecked, texts/mtexts won't be imported チェックされていない場合、[texts/mtext]はインポートされません - + Color mapping file カラーマッピングファイル - + The color mapping file for translating dxf colors into linewidths dxfカラーからライン幅に変換するためのカラー・マッピングファイル - + Max Spline Segment 最大スプラインセグメント - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. - DXFへのスプラインをエクスポートする場合、それらはポリラインに変換されます。この値は、ポリラインの各セグメントの最大長です。 0の場合、全体のスプラインが直線セグメントとして扱われます。 + スプラインをDXFへエクスポートする場合、それらはポリラインに変換されます。この値はポリラインの各セグメントの最大長です。0の場合、スプラインの全体が直線セグメントとして扱われます。 - + This is the method choosed for importing SVG object color into FreeCAD. SVGオブジェクトの色をFreeCADにインポートするための選択された方法です。 - + Check this if you want the areas (3D faces) to be imported too. Check this if you want the areas (3D faces) to be imported too. - + Import OCA areas Import OCA areas @@ -666,84 +757,84 @@ If color mapping is choosed, you must choose a color mapping file containing a t 全般的な設定 - + Construction group name Construction group name - + Tolerance 公差 - + This is the value used by functions that use a tolerance. Values with differences below this value will be treated as same. これは許容範囲を使用する関数で使用される値です。 これ以下の値の違いは、同じものとして扱われます。 - + Dimensions & Leader arrow style 寸法及び矢印のスタイル - + Dot 5 Dot 5 - + Dot 7 Dot 7 - + Dot 9 Dot 9 - + Circle 5 Circle 5 - + Circle 7 Circle 7 - + Circle 9 Circle 9 - + Slash 5 Slash 5 - + Slash 7 Slash 7 - + Slash 9 Slash 9 - + Backslash 5 Backslash 5 - + Backslash 7 Backslash 7 - + Backslash 9 Backslash 9 @@ -758,202 +849,202 @@ Values with differences below this value will be treated as same. DXF形式のオプション - + Import texts and dimensions テキストと寸法をインポート - + Check this if you want the non-named blocks (beginning with a *) to be imported too Check this if you want the non-named blocks (beginning with a *) to be imported too - + Import *blocks Import *blocks - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... - + Join geometry ジオメトリを結合 - + SVG format options SVG形式のオプション - + OCA format options OCA format options - + Alternate SVG Patterns location Alternate SVG Patterns location - + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns - + Draft interface mode Draft interface mode - + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction - + Toolbar ツールバー - + Taskview Taskview - + Constrain mod Constrain mod - + The Constraining modifier key The Constraining modifier key - + shift shift - + ctrl - CTRL + Ctrl - + alt alt - + Snap mod Snap mod - + The snap modifier key The snap modifier key - + Alt mod Alt mod - + The alt modifier key The alt modifier key - + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. - + Select base objects after copying Select base objects after copying - + Always snap to objects (disable snap mod key) Always snap to objects (disable snap mod key) - + The radius for snapping to special points. Set to 0 for no distance (infinite) The radius for snapping to special points. Set to 0 for no distance (infinite) - + Snap range Snap range - + px px - + If checked, a grid will appear when drawing If checked, a grid will appear when drawing - + Use grid Use grid - + Grid spacing Grid spacing - + The spacing between each grid line The spacing between each grid line - + Main lines every Main lines every - + Mainlines will be drawn thicker. Specify here how many squares between mainlines. Mainlines will be drawn thicker. Specify here how many squares between mainlines. - + Internal precision level Internal precision level - + Dimensions precision level 寸法精度 - + Vertical dimensions text orientation 縦の寸法テキストの向き - + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. 寸法が縦になったときの寸法テキストの向き.デフォルトは左(ISO標準) - + Left (ISO standard) Left (ISO standard) - + Right Right @@ -963,763 +1054,964 @@ Values with differences below this value will be treated as same. Create parametric objects - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable - + Group layers into blocks Group layers into blocks - + If this is checked, all objects containing faces will be exported as 3d polyfaces If this is checked, all objects containing faces will be exported as 3d polyfaces - + Export 3D objects as polyface meshes Export 3D objects as polyface meshes + + + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + + + + Hide Draft workbench + Hide Draft workbench + + + + If this is checked, snapping will not occur against objects with more than the indicated number of edges + If this is checked, snapping will not occur against objects with more than the indicated number of edges + + + + Snap maximum + Snap maximum + + + + Maximum number of edges to be considered for snapping + Maximum number of edges to be considered for snapping + + + + Maximum number of edges + Maximum number of edges + + + + If checked, the Snap toolbar will be shown whenever you use snapping + If checked, the Snap toolbar will be shown whenever you use snapping + + + + Show Draft Snap toolbar + Show Draft Snap toolbar + + + + Hide Draft snap toolbar after use + Hide Draft snap toolbar after use + + + + if checked, a widget indicating the current working plane orientation appears during drawing operations + if checked, a widget indicating the current working plane orientation appears during drawing operations + + + + Show Working Plane tracker + Show Working Plane tracker + + + + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + + + + Always show + Always show + + + + Create Sketches + Create Sketches + + + + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + + + + Use standard font size for texts + Use standard font size for texts + + + + If this is checked, hatches will be converted into simple wires + If this is checked, hatches will be converted into simple wires + + + + Import hatch boundaries as wires + Import hatch boundaries as wires + + + + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + + + + Render polylines with width + Render polylines with width + + + + Export Style + Export Style + + + + Style of SVG file to write when exporting a Sketch. + Style of SVG file to write when exporting a Sketch. + + + + Translated (for print & display) + Translated (for print & display) + + + + Raw (for CAM) + Raw (for CAM) + + + + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + + + + Translate white line color to black + Translate white line color to black + draft - + active command: - active command: + アクティブコマンド: - + None なし - + Active Draft command アクティブドラフトコマンド - + X coordinate of next point 次の点の X 座標 - + X X - + Y Y - + Z Z - + Y coordinate of next point 次の点の Y 座標 - + Z coordinate of next point 次の点の Z 座標 - + Radius 半径 - + Radius of Circle 円の半径 - + Coordinates relative to last point or absolute (SPACE) 最後の点からの相対座標、または絶対座標[スペース] - + Undo the last segment (CTRL+Z) - 最後の操作を元に戻す (Ctrl + Z) + 最後のセグメントを元に戻す (Ctrl+Z) - + Finishes and closes the current line (C) 現在の線を閉じて終了[C] - + Offset オフセット - + XY XY - + Select XY plane XY 平面を選択 - + XZ XZ - + Select XZ plane XZ 平面を選択 - + YZ YZ - + Select YZ plane YZ 平面を選択 - + View 表示 - + Select plane perpendicular to the current view 現在のビューに垂直な面を選択する。 - + Do not project points to a drawing plane 描画平面に点を投影しないでください - + If checked, objects will be copied instead of moved (C) チェックされている場合、オブジェクトは移動 (C) ではなくコピーされます。 - + Line Color 線の色 - + Face Color 面の色 - + Line Width 線の幅 - + Font Size フォントサイズ - + Apply to selected objects 選択したオブジェクトに適用します。 - + Toggles Construction Mode 作成モードへの切り替え - + Select Plane 平面選択 - + Line 直線 - + Circle - + Center X 中心X - + Arc 円弧 - + Pick Object オブジェクトを選択 - + draft Command Bar ドラフトコマンドバー - + Pick a face to define the drawing plane 描画面を選択する - + Pick first point: 最初の点を選択: - + Pick next point: 次の点を選択: - + Pick next point, or (F)inish or (C)lose: 次のポイントを選択、または完了(F)、閉じる(C)  - + Pick opposite point: 反対側の点を選択します。  - + Pick center point: 中心点を選択: - + Pick radius: - 半径を選択します。  + 半径を選択: - + Pick start angle: - 開始角度を選択します。  + 開始角度を選択: - + Pick aperture: Pick aperture: - + Aperture angle: Aperture angle: - + Pick location point: 領域を選択: - + Select an object to move 移動するオブジェクトを選択します。 - + Pick start point: - 始点を選択します。 + 始点を選択: - + Pick end point: - 終了点を選択します。 + 終点を選択: - + Select an object to rotate 回転するオブジェクトを選択します。 - + Pick rotation center: 回転の中心を選択します。 - + Pick base angle: 基本となる角度を選択します。 - + Pick rotation angle: ピック回転角: - + Select an object to offset オフセットするオブジェクトを選択 - + Offset only works on one object at a time - Offset only works on one object at a time - + 一度に1つのオブジェクトしかオフセットできません - + Pick distance: 距離を選択する: - + Select an object to upgrade アップグレードするオブジェクトを選択する - + Select an object to trim/extend - Select an object to trim/extend - + トリムまたは延長するオブジェクトを選択します。 - + Select an object to scale 拡大縮小縮小するオブジェクトを選択する - + Pick base point: - 基点を選択: + 基準点を選択: - + Pick scale factor: 拡大縮小率を選択する: - + Number of sides 辺の数 - + &Relative &Relative - + &Undo 元に戻す(&U) - + &Close 閉じる (&C) - + &Copy コピー (&C) - + If checked, command will not finish until you press the command button again If checked, command will not finish until you press the command button again - + &Continue 続行 (&c) - - Wire has been closed - - 連線が閉じられました - - - + Last point has been removed Last point has been removed - + Spline has been closed スプラインは閉じられています。 - + Edges don't intersect! エッジを交差しないでください! - + Cannot offset this object type このオブジェクトの種類はオフセットすることができません。 - + Found groups: closing each open object inside Found groups: closing each open object inside - + Found 2 objects: fusing them Found 2 objects: fusing them - + Found 1 non-parametric objects: draftifying it Found 1 non-parametric objects: draftifying it - + Found 1 closed sketch object: making a face from it Found 1 closed sketch object: making a face from it - - Found closed wires: making faces - - Found closed wires: making faces - - - - + Found 1 open wire: closing it Found 1 open wire: closing it - + Found several edges: wiring them Found several edges: wiring them - + Found several non-connected edges: making compound Found several non-connected edges: making compound - + Found several non-treatable objects: making compound Found several non-treatable objects: making compound - + Found 1 parametric object: breaking its dependencies Found 1 parametric object: breaking its dependencies - + Found 2 objects: subtracting them Found 2 objects: subtracting them - + Found several faces: splitting them Found several faces: splitting them - + Found several objects: subtracting them from the first one Found several objects: subtracting them from the first one - + Found 1 face: extracting its wires Found 1 face: extracting its wires - + Found only wires: extracting their edges Found only wires: extracting their edges - + This object type is not editable このオブジェクトタイプは編集できない - + Active object must have more than two points/nodes アクティブオブジェクトは2つ以上の点またはノードが必要 - + Finishes the current drawing or editing operation (F) Finishes the current drawing or editing operation (F) - + Add points to the current object Add points to the current object - + Remove points from the current object Remove points from the current object - + F&illed F&illed - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Check this if the object should appear as filled, otherwise it will appear as wireframe (i) - + &Finish &Finish - + If checked, an OCC-style offset will be performed instead of the classic offset If checked, an OCC-style offset will be performed instead of the classic offset - + &OCC-style offset OCC スタイル オフセット (&O) - + &Wipe &Wipe - + Wipes the existing segments of this line and starts again from the last point (W) Wipes the existing segments of this line and starts again from the last point (W) - + Point - + Distance 距離 - + Edit 編集 - - Create Wire - 連線を作成 - - - + Create BSpline Bスプライン曲線を作成 - + Create Rectangle 矩形を作成 - + Create Circle 円を作成 - + Create Arc 円弧を作成 - + Create Polygon 多角形を作成 - + Create Text テキストを作成 - + Create Dimension 寸法の作成 - - Delete Measurement - 測定を削除する - - - + Copy コピー - + Move 移動 - + Change Style スタイルの変更 - + Rotate 回転 - + Found 1 solidificable object: solidifying it Found 1 solidificable object: solidifying it - + Found several objects or faces: making a parametric face Found several objects or faces: making a parametric face - + Found objects containing curves: fusing them Found objects containing curves: fusing them - + Found several objects: fusing them Found several objects: fusing them - + Scale 拡大縮小 - + Trim - Trim + トリム - + Start Angle Start Angle - + Aperture Aperture - + Installed Macros Installed Macros - - Draft tools - Draft tools - - - - Draft - Draft - - - - Display options - Display options - - - + Wire tools - Wire tools + 連線ツール + + + + DWire + DWire + + + + Create DWire + Create DWire + + + + DWire has been closed + + DWire has been closed + + + + + BSpline + BSpline + + + + Rectangle + 四角形 + + + + Polygon + 多角形 + + + + Text + テキスト + + + + Dimension + 寸法 + + + + No upgrade available for this object + + No upgrade available for this object + + + + + Couldn't upgrade these objects + + Couldn't upgrade these objects + + + + + One wire is not planar, upgrade not done + + One wire is not planar, upgrade not done + + + + + Found a closed wire: making a face + + Found a closed wire: making a face + + + + + Found 1 open edge: making a line + + Found 1 open edge: making a line + + + + + Found 1 circular edge: making a circle + + Found 1 circular edge: making a circle + + + + + No more downgrade possible + + No more downgrade possible + + + + + Draft creation tools + Draft creation tools + + + + Draft modification tools + Draft modification tools + + + + &Draft + &Draft + + + + Context tools + Context tools diff --git a/src/Mod/Draft/Resources/translations/Draft_nl.qm b/src/Mod/Draft/Resources/translations/Draft_nl.qm index 182e92b4e..fcd6de7d1 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_nl.qm and b/src/Mod/Draft/Resources/translations/Draft_nl.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_nl.ts b/src/Mod/Draft/Resources/translations/Draft_nl.ts index f11c258de..a5484ec21 100644 --- a/src/Mod/Draft/Resources/translations/Draft_nl.ts +++ b/src/Mod/Draft/Resources/translations/Draft_nl.ts @@ -4,12 +4,12 @@ Draft_AddPoint - + Add Point Punt toevoegen - + Adds a point to an existing wire/bspline Voegt een punt toe aan een ​​bestaande draad/bspline @@ -17,12 +17,12 @@ Draft_AddToGroup - + Adds the selected object(s) to an existing group Voegt het/de geselecteerde object(en) aan een bestaande groep toe - + Add to group... Toevoegen aan groep... @@ -30,12 +30,12 @@ Draft_ApplyStyle - + Apply Current Style Huidige stijl toepassen - + Applies current line width and color to selected objects Huidige lijndikte en -kleur toepassen op geselecteerde objecten @@ -43,25 +43,38 @@ Draft_Arc - + Arc Boog - + Creates an arc. CTRL to snap, SHIFT to constrain Creëert een boog. CTRL om te snappen, SHIFT om te beperken + + Draft_Array + + + Array + Array + + + + Creates a polar or rectangular array from a selected object + Creates a polar or rectangular array from a selected object + + Draft_BSpline - + B-Spline B-Spline - + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain Creëert een meervoudige b-spline. CTRL om te snappen, SHIFt om te beperken @@ -69,25 +82,38 @@ Draft_Circle - + Circle Cirkel - + Creates a circle. CTRL to snap, ALT to select tangent objects Hiermee maakt u een cirkel. CTRL om te snappen, ALT om rakende objecten te kiezen + + Draft_Clone + + + Clone + Clone + + + + Clones the selected object(s) + Clones the selected object(s) + + Draft_CloseLine - + Close Line Sluit lijn - + Closes the line being drawn Sluit de getekende lijn @@ -95,12 +121,12 @@ Draft_DelPoint - + Remove Point Punt verwijderen - + Removes a point from an existing wire or bspline Verwijdert een punt uit een bestaande draad of bspline @@ -108,12 +134,12 @@ Draft_Dimension - + Dimension Afmeting - + Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment Hiermee maakt u een dimensie. CTRL om te snappen, SHIFT om te beperken, ALT om een segment te kiezen @@ -121,25 +147,33 @@ Draft_Downgrade - + Downgrade Vorige versie - + Explodes the selected objects into simpler objects, or subtract faces Verdeelt de geselecteerde objecten in simpelere objecten, of vermindert aantal zijden + + Draft_Draft2Sketch + + + Draft to Sketch + Draft to Sketch + + Draft_Drawing - + Drawing Tekening - + Puts the selected objects on a Drawing sheet. Hiermee plaatst u de geselecteerde objecten op een tekenvel. @@ -147,12 +181,12 @@ Draft_Edit - + Edit Bewerken - + Edits the active object Bewerkt het actieve object @@ -160,25 +194,25 @@ Draft_FinishLine - + Finish line Voltooi lijn - + Finishes a line without closing it - Voltooit een lijn zonder hem te sluiten + Voltooit een lijn zonder deze te sluiten Draft_Line - + Line Lijn - + Creates a 2-point line. CTRL to snap, SHIFT to constrain Hiermee maakt u een 2-punts lijn. CTRL om te snappen, SHIFT om te beperken @@ -186,12 +220,12 @@ Draft_Move - + Move Verplaatsen - + Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy Verplaatst de geselecteerde objecten tussen 2 punten. CTRL om te snappen, SHIFT om te beperken, ALT om te kopiëren @@ -199,25 +233,38 @@ Draft_Offset - + Offset Verschuiving - + Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy Verschuift het actieve object. CTRL om te snappen, SHIFT om te beperken, ALT om te kopiëren + + Draft_Point + + + Point + Punt + + + + Creates a point object + Creates a point object + + Draft_Polygon - + Polygon Veelhoek - + Creates a regular polygon. CTRL to snap, SHIFT to constrain Creëert een regelmatige veelhoek. CTRL om te snappen, SHIFT te beperken @@ -225,12 +272,12 @@ Draft_Rectangle - + Rectangle - rechthoek + Rechthoek - + Creates a 2-point rectangle. CTRL to snap Hiermee maakt u een 2-punts rechthoek. CTRL om te snappen @@ -238,12 +285,12 @@ Draft_Rotate - + Rotate Draaien - + Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy Draait de geselecteerde objecten. CTRL om te snappen, SHIFT om te beperken, ALT om een kopie te creëren @@ -251,12 +298,12 @@ Draft_Scale - + Scale Schalen - + Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy Schaalt de geselecteerde objecten uit een basispunt. CTRL om te srpingen, SHIFT om te beperken, ALT om te kopiëren @@ -264,12 +311,12 @@ Draft_SelectGroup - + Select group Selecteer groep - + Selects all objects with the same parents as this group Selecteert alle objecten met dezelfde ouders als deze groep @@ -277,38 +324,56 @@ Draft_SelectPlane - + SelectPlane Selecteer vlak - + Select a working plane for geometry creation - Selecteer een werkvlak voor geometrie creatie + Selecteer een werkvlak om geometrie te creëren Draft_Shape2DView - + Shape 2D view 2D-uitzichtvorm - + Creates Shape 2D views of selected objects Maakt 2D-uitzichtvormen van geselecteerde objecten + + + Convert bidirectionally between Draft and Sketch objects + Convert bidirectionally between Draft and Sketch objects + + + + Draft_ShowSnapBar + + + Show Snap Bar + Show Snap Bar + + + + Shows Draft snap toolbar + Shows Draft snap toolbar + Draft_Text - + Text Tekst - + Creates an annotation. CTRL to snap Hiermee maakt u een aantekening. CTRL op te snappen @@ -316,12 +381,12 @@ Draft_ToggleConstructionMode - + Toggle construcion Mode Bouwmodus in-/uitschakelen - + Toggles the Construction Mode for next objects. Schakelt de Bouw-modus voor de volgende objecten aan/uit. @@ -329,12 +394,12 @@ Draft_ToggleContinueMode - + Toggle continue Mode Vervolg-modus schakelen - + Toggles the Continue Mode for next commands. Schakelt de vervolg-modus voor de volgende opdrachten. @@ -342,25 +407,51 @@ Draft_ToggleDisplayMode - + Toggle display mode Wissel weergave-modus - + Swaps display mode of selected objects between wireframe and flatlines Schakelt weergavemodus van geselecteerde objecten tussen wireframe en flatlines + + Draft_ToggleGrid + + + Toggle Grid + Toggle Grid + + + + Toggles the Draft gid on/off + Toggles the Draft gid on/off + + + + Draft_ToggleSnap + + + Toggle snap + Toggle snap + + + + Toggles Draft snap on or off + Toggles Draft snap on or off + + Draft_Trimex - + Trimex Trimex - + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts Trimt of breidt het geselecteerde object uit, of extrudeert enkele oppervlakken. CTRL snapt, SHIFT, beperkt tot huidige segment of tot de normale, ALT omkeert @@ -368,25 +459,25 @@ Draft_UndoLine - + Undo last segment Maak laatste segment ongedaan - + Undoes the last drawn segment of the line being drawn - Verwijdert het laatst getekende segment van de te tekenen lijn + Verwijdert het laatst getekende segment van de lijn die wordt getekend Draft_Upgrade - + Upgrade Opwaarderen - + Joins the selected objects into one, or converts closed wires to filled faces, or unite faces Voegt de geselecteerde objecten samen, of converteert gesloten lijnen tot een vlak, of voegt vlakken samen @@ -394,25 +485,25 @@ Draft_Wire - - Wire - Draad + + DWire + DWire - - Creates a multiple-point wire. CTRL to snap, SHIFT to constrain - Creëert een meervoudige lijn. CTRL om te snappen, SHIFt om te beperken + + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain Draft_WireToBSpline - + Wire to BSpline Draad naar BSpline - + Converts between Wire and BSpline Converteert tussen draad en BSpline @@ -425,137 +516,137 @@ Algemene ontwerpinstellingen - + Default color Standaardkleur - + the default color for new objects de standaardkleur voor nieuwe objecten - + Default linewidth Standaard lijndikte - + the default linewidth for new objects de standaard lijndikte voor nieuwe objecten - + Snap color Kleur het object in - + the default color for snap symbols de standaardkleur voor snap symbolen - + Construction color Constructielaag kleur - + This is the default color for objects being drawn while in construction mode. Dit is de gekozen kleur voor objecten getekend in constructie-modus - + This is the default group name for construction geometry Dit is de standaard groepsnaam voor de constructie geometrie - + Construction Constructie - + check this if you want to use the color/linewidth from the toolbar as default Vink dit aan als u de standaard kleur/lijn wilt gebruiken - + Save current color and linewidth across sessions Sla de huidige kleur en lijnbreedte op voor alle sessies - + If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode Als dit is aangevinkt zal de 'kopie' modus gehandhaafd worden doorheen opeenvolgende commando's. Kopie modus kan uitgeschakeld worden door het aanvinken ongedaan te maken. - + Global copy mode Globale kopieermodus - + If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. Als dit ingeschakeld is, zal u altijd op bestaande objecten snappen tijdens het tekenen. Als niet, u zal snappen enkel wanneer op CTRL drukt. - + If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe Als dit ingeschakeld is, verschijnen objecten gevuld op creatie. Ze wordt anders weergegeven als wireframe - + Fill objects by default Standaard objecten vullen - + Default working plane Standaard werkvlak - + None Geen - + XY (Top) XY (Bovenkant) - + XZ (Front) XZ (voorkant) - + YZ (Side) YZ (zijkant) - + The number of decimals in internal coordinates operations (for ex. 3 = 0.001) Het aantal decimalen in interne coördinaten (bijv. 0.001 = 3) - + Default text height Standaard teksthoogte - + Default height for texts and dimensions Standaardhoogte voor teksten en afmetingen - + Default text font Standaardlettertype - + This is the default font name for all Draft texts and dimensions. It can be a font name such as "Arial", a default style such as "sans", "serif" or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style @@ -563,22 +654,22 @@ such as "Arial:Bold" Dit is de standaard naam van het lettertype voor alle Draft teksten en afmetingen. Het kan een font naam zijn, zoals "Arial", een standaard stijl, zoals "sans", "serif" of "mono", of een familie, zoals "Arial, Helvetica, sans" of een naam met een stijl zoals "Arial: Bold" - + Arial Arial - + Default template sheet Standaard sjabloonvel - + The default template to use when creating a new drawing sheet De standaardsjabloon om te gebruiken bij het maken van een nieuwe tekening - + Import style Import stijl @@ -590,17 +681,17 @@ If color mapping is choosed, you must choose a color mapping file containing a t Dit is de methode gekozen voor het importeren of het vertalen van DXF-objecten in FreeCAD-kleuren. Als "kleur vertaling" is gekozen, moet u eem bestand kiezen met een vertaling tabel die kleuren in lijnbreedten omzetten. - + None (fastest) Geen (snelste) - + Use default color and linewidth Gebruik standaard kleur en lijndikte - + Original color and linewidth Originele kleur en lijndikte @@ -610,52 +701,52 @@ If color mapping is choosed, you must choose a color mapping file containing a t Kleur toegewezen aan lijndikte - + if this is checked, paper space objects will be imported too Als dit ingeschakeld is, zijn paper space objecten ook geïmporteerd - + Import layouts Importeer lay-outs - + if this is unchecked, texts/mtexts won't be imported Als dit niet ingeschakeld is, werden teksten en mtexts niet geïmporteerd - + Color mapping file kleurvertalingsbestand - + The color mapping file for translating dxf colors into linewidths De kleurvertalingsbestand om te gebruiken voor omzetten van dxf kleuren in lijnbreedten - + Max Spline Segment Max splinesegment - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Bij het exporteren van splines naar DXF-formaat, worden ze omgezet in polylijnen. Deze waarde is de maximale lengte van elk van de polylijn segmenten. Als 0, dan wordt de hele spline behandeld als een recht segment. - + This is the method choosed for importing SVG object color into FreeCAD. Dit is de methode gekozen voor het importeren van SVG-objectkleur in FreeCAD. - + Check this if you want the areas (3D faces) to be imported too. Schakel dit als u wilt de gebieden (3D oppervlakken) te importeren. - + Import OCA areas OCA gebieden importeren @@ -665,83 +756,83 @@ If color mapping is choosed, you must choose a color mapping file containing a t Algemene instellingen - + Construction group name Bouwgroepsnaam - + Tolerance Tolerantie - + This is the value used by functions that use a tolerance. Values with differences below this value will be treated as same. Deze waarde wordt gebruikt door functies die gebruikmaken van een tolerantie. Waarden met verschillen onder deze waarde zullen als gelijk worden behandeld. - + Dimensions & Leader arrow style Pijlstijl voor afmetingen & leiders - + Dot 5 Punt 5 - + Dot 7 Punt 7 - + Dot 9 Punt 9 - + Circle 5 Cirkel 5 - + Circle 7 Cirkel 7 - + Circle 9 Cirkel 9 - + Slash 5 Schuine streep 5 - + Slash 7 Schuine streep 7 - + Slash 9 Schuine streep 9 - + Backslash 5 Backslash 5 - + Backslash 7 Backslash 7 - + Backslash 9 Backslash 9 @@ -756,202 +847,202 @@ Values with differences below this value will be treated as same. DXF-formaat opties - + Import texts and dimensions Teksten en afmetingen importeren - + Check this if you want the non-named blocks (beginning with a *) to be imported too Schakel dit in als de niet-genoemde blokken (die beginnen met een *) moeten ook worden geïmporteerd - + Import *blocks Importeren *blokken - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Indien ingeschakeld, zal freecad proberen gezamenlijk samenvallende objecten in draden omzetten. Pas op, dit kan even duren... - + Join geometry Geometrie koppelen - + SVG format options SVG-formaat opties - + OCA format options OCA-formaat opties - + Alternate SVG Patterns location Alternatieve SVG patronen locatie - + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns Hier kunt u een map aanduiden met SVG bestanden die <pattern> definities bevat die toegevoegd aan de standaard Draft hatch patronen zullen zijn - + Draft interface mode Draft interfacemodus - + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction Dit is de UI-modus waarin de Draft module zal werken: werkbalk modus zal alle ontwerp-instellingen in een aparte werkbalk plaatsen, terwijl taakzicht modus zal het FreeCAD Taskview systeem gebruiken voor alle haar gebruikersinteractie - + Toolbar Werkbalk - + Taskview Taakzicht - + Constrain mod Beperken modus - + The Constraining modifier key De Beperken wijzigingstoets - + shift shift - + ctrl ctrl - + alt alt - + Snap mod Snap modus - + The snap modifier key De snap-wijzigingstoets - + Alt mod ALT modus - + The alt modifier key De alt-wijzigingstoets - + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. Normaal, na het kopiëren van objecten, worden de kopieën geselecteerd. Als deze optie is aangevinkt, zullen de basisobjecten in plaats daarvan worden geselecteerd. - + Select base objects after copying Selecteer basisobjecten na het kopiëren - + Always snap to objects (disable snap mod key) Altijd kleven aan objecten (uitschakelen kleef mod-toets) - + The radius for snapping to special points. Set to 0 for no distance (infinite) De straal van het kleven aan speciale punten. Op 0 voor geen afstand (oneindig) - + Snap range Kleefbereik - + px px - + If checked, a grid will appear when drawing Indien aangevinkt, zal een raster worden weergegeven bij het tekenen - + Use grid Gebruik raster - + Grid spacing Rasterafstand - + The spacing between each grid line De afstand tussen elke rasterlijn - + Main lines every Hoofdlijnen elke - + Mainlines will be drawn thicker. Specify here how many squares between mainlines. Hoofdlijnen worden dikker getrokken. Geef hier aan hoeveel ruitjes tussen de hoofdlijnen. - + Internal precision level Interne precisie-niveau - + Dimensions precision level Afmetingen precisie-niveau - + Vertical dimensions text orientation De plaats van de tekst bij verticale afmetingen - + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. Dit is de plaats van de dimensie-teksten wanneer deze dimensies verticaal staan. Standaard is links, dat is de ISO-norm. - + Left (ISO standard) Links (ISO-norm) - + Right Rechts @@ -961,750 +1052,954 @@ Values with differences below this value will be treated as same. Maak parametrische objecten - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable Als dit ingeschakeld is, zullen objecten op de dezelfde lagen in Draft blokken worden omgezet, waardoor het display sneller zal draaien, maar de objecten minder gemakkelijk bewerkbaar zullen zijn - + Group layers into blocks Lagen groeperen in blokken - + If this is checked, all objects containing faces will be exported as 3d polyfaces Als dit ingeschakeld is, worden alle objecten met oppervlakken geëxporteerd als 3D-polyfaces - + Export 3D objects as polyface meshes 3D-objecten exporteren als polyface netten + + + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + + + + Hide Draft workbench + Hide Draft workbench + + + + If this is checked, snapping will not occur against objects with more than the indicated number of edges + If this is checked, snapping will not occur against objects with more than the indicated number of edges + + + + Snap maximum + Snap maximum + + + + Maximum number of edges to be considered for snapping + Maximum number of edges to be considered for snapping + + + + Maximum number of edges + Maximum number of edges + + + + If checked, the Snap toolbar will be shown whenever you use snapping + If checked, the Snap toolbar will be shown whenever you use snapping + + + + Show Draft Snap toolbar + Show Draft Snap toolbar + + + + Hide Draft snap toolbar after use + Hide Draft snap toolbar after use + + + + if checked, a widget indicating the current working plane orientation appears during drawing operations + if checked, a widget indicating the current working plane orientation appears during drawing operations + + + + Show Working Plane tracker + Show Working Plane tracker + + + + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + + + + Always show + Always show + + + + Create Sketches + Create Sketches + + + + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + + + + Use standard font size for texts + Use standard font size for texts + + + + If this is checked, hatches will be converted into simple wires + If this is checked, hatches will be converted into simple wires + + + + Import hatch boundaries as wires + Import hatch boundaries as wires + + + + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + + + + Render polylines with width + Render polylines with width + + + + Export Style + Export Style + + + + Style of SVG file to write when exporting a Sketch. + Style of SVG file to write when exporting a Sketch. + + + + Translated (for print & display) + Translated (for print & display) + + + + Raw (for CAM) + Raw (for CAM) + + + + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + + + + Translate white line color to black + Translate white line color to black + draft - + active command: actieve opdracht: - + None Geen - + Active Draft command Actieve opdracht - + X coordinate of next point X-coördinaat van het volgende punt - + X X - + Y Y - + Z Z - + Y coordinate of next point Y-coördinaat van het volgende punt - + Z coordinate of next point Z-coördinaat van het volgende punt - + Radius Straal - + Radius of Circle Straal van de cirkel - + Coordinates relative to last point or absolute (SPACE) Coördinaten relatief ten opzichte van vorig punt of absoluut (SPATIE) - + Undo the last segment (CTRL+Z) Laatste segment ongedaan maken (CTRL+Z) - + Finishes and closes the current line (C) Voltooit en sluit de huidige lijn (C) - + Offset Verschuiving - + XY XY - + Select XY plane Selecteer XY-vlak - + XZ XZ - + Select XZ plane Selecteer XY-vlak - + YZ YZ - + Select YZ plane Selecteer YZ vlak - + View Aanzicht - + Select plane perpendicular to the current view Selecteer een vlak loodrecht op het huidige aanzicht - + Do not project points to a drawing plane Projecteer geen punten naar een tekenvlak - + If checked, objects will be copied instead of moved (C) Indien aangevinkt, zullen objecten worden gekopieerd in plaats van verplaatst (C) - + Line Color Lijnkleur - + Face Color Oppervlakkleur - + Line Width Lijndikte - + Font Size Tekengrootte - + Apply to selected objects Toepassen op geselecteerde objecten - + Toggles Construction Mode Constructie-modus in/uitschakelen - + Select Plane Selecteer vlak - + Line Lijn - + Circle Cirkel - + Center X Middelpunt X - + Arc Boog - + Pick Object - Kies object + Selecteer object - + draft Command Bar ontwerp-opdrachtbalk - + Pick a face to define the drawing plane - Kies een vlak voor het te definiëren tekenvlak + Kies een vlak om het tekenvlak te definiëren - + Pick first point: Kies eerste punt: - + Pick next point: Kies volgende punt: - + Pick next point, or (F)inish or (C)lose: - Kies volgende punt, of eindig (F) of Sluit (C): + Kies het volgende punt, eindig (F) of Sluit (C): - + Pick opposite point: - Kies de tegenoverliggende punt: + Kies het tegenoverliggende punt: - + Pick center point: Kies middelpunt: - + Pick radius: Kies straal: - + Pick start angle: Kies beginhoek: - + Pick aperture: Kies diafragma: - + Aperture angle: Openingshoek: - + Pick location point: - Kies locatie: + Kies locatiepunt: - + Select an object to move Selecteer een te verplaatsen object - + Pick start point: Kies startpunt: - + Pick end point: Kies een eindpunt: - + Select an object to rotate Selecteer een te draaien object - + Pick rotation center: Kies draaipunt: - + Pick base angle: Kies basishoek: - + Pick rotation angle: Kies rotatiehoek: - + Select an object to offset Selecteer een object om te verschuiven - + Offset only works on one object at a time Verschuiving werkt slechts op één object per keer - + Pick distance: Kies afstand: - + Select an object to upgrade Selecteer een object om te opwaarderen - + Select an object to trim/extend Selecteer een object om te trimmen / uit te breiden - + Select an object to scale Selecteer een object om te schalen - + Pick base point: Kies basispunt: - + Pick scale factor: Kies schaalfactor: - + Number of sides Aantal zijden - + &Relative &Relatief - + &Undo &Ongedaan maken - + &Close & Sluiten - + &Copy &Kopiëren - + If checked, command will not finish until you press the command button again Indien ingeschakeld, zal de huidige opdracht niet beëindigen totdat u opnieuw op de command-toets druk - + &Continue &Doorgaan - - Wire has been closed - - Draad is gesloten - - - + Last point has been removed Laatste punt is verwijderd - + Spline has been closed Spline is gesloten - + Edges don't intersect! Randen niet snijden! - + Cannot offset this object type Dit objecttype niet kan verschuift worden - + Found groups: closing each open object inside Groepen gevonden: sluiten alle geopende objecten binnen - + Found 2 objects: fusing them 2 Objecten gevonden: versmelt ze - + Found 1 non-parametric objects: draftifying it 1 Niet-parametrische object gevonden: Draft object maken - + Found 1 closed sketch object: making a face from it 1 Gesloten schets-object gevonden: maak er een vlak van - - Found closed wires: making faces - - Gesloten draden gevonden: maak vlak - - - + Found 1 open wire: closing it 1 open draad Gevonden: sluiten hem - + Found several edges: wiring them Verschillende randen gevonden: draad maken - + Found several non-connected edges: making compound Verschillende niet-verbonden randen gevonden: compound maken - + Found several non-treatable objects: making compound Verschillende niet-behandelbare objecten gevonden: compound maken - + Found 1 parametric object: breaking its dependencies 1 Parametrische object gevonden: breek de afhankelijkheden - + Found 2 objects: subtracting them 2 objecten gevonden: zal ze aftrekken - + Found several faces: splitting them Verschillende vlakken gevonden: splits ze - + Found several objects: subtracting them from the first one Verschillende objecten gevonden: deze aftrekken van de eerste - + Found 1 face: extracting its wires 1 vlak gevonden: uitpakken van de draden - + Found only wires: extracting their edges Alleen draden gevonden: uitpakken van hun randen - + This object type is not editable Dit objecttype kan niet worden bewerkt - + Active object must have more than two points/nodes Actieve object moet meer dan twee punten/nodes hebben - + Finishes the current drawing or editing operation (F) Eindigt de huidige tekening of bewerking (F) - + Add points to the current object Punten aan het huidige object toevoegen - + Remove points from the current object Punten van het huidige object verwijderen - + F&illed Gev&uld - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Schakel dit in als het object moet als ingevuld verschijnen, anders zal het als wireframe verschijnen (i) - + &Finish &Beëindigen - + If checked, an OCC-style offset will be performed instead of the classic offset Indien ingeschakeld, zal een OCC-stijl verschuiving worden uitgevoerd in plaats van de klassieke stijl - + &OCC-style offset &OCC-stijl verschuiving - + &Wipe &Veeg - + Wipes the existing segments of this line and starts again from the last point (W) Veegt de bestaande segmenten van deze lijn en begint weer vanaf de laatste punt (W) - + Point Punt - + Distance Afstand - + Edit Bewerken - - Create Wire - Draad aanmaken - - - + Create BSpline Bspline aanmaken - + Create Rectangle Rechthoek aanmaken - + Create Circle Cirkel aanmaken - + Create Arc Boog aanmaken - + Create Polygon Veelhoek aanmaken - + Create Text Tekst aanmaken - + Create Dimension Dimensie aanmaken - - Delete Measurement - Meting verwijderen - - - + Copy Kopie - + Move Verplaatsen - + Change Style Stijl wijzigen - + Rotate Draaien - + Found 1 solidificable object: solidifying it 1 Solide-gelijk object gevonden: solide maken - + Found several objects or faces: making a parametric face Verschillende objecten of oppervlakken gevonden: een parametrische oppervlak maken - + Found objects containing curves: fusing them Gevonden objecten met curven: versmelten - + Found several objects: fusing them Verschillende objecten gevonden: versmelt ze - + Scale Schalen - + Trim Trim - + Start Angle Starthoek - + Aperture Opening - + Installed Macros Geïnstalleerde macro 's - - Draft tools - Draft werktuigen - - - - Draft - Draft - - - - Display options - Weergaveopties - - - + Wire tools Draadwerktuigen + + + DWire + DWire + + + + Create DWire + Create DWire + + + + DWire has been closed + + DWire has been closed + + + + + BSpline + BSpline + + + + Rectangle + Rechthoek + + + + Polygon + Veelhoek + + + + Text + Tekst + + + + Dimension + Afmeting + + + + No upgrade available for this object + + No upgrade available for this object + + + + + Couldn't upgrade these objects + + Couldn't upgrade these objects + + + + + One wire is not planar, upgrade not done + + One wire is not planar, upgrade not done + + + + + Found a closed wire: making a face + + Found a closed wire: making a face + + + + + Found 1 open edge: making a line + + Found 1 open edge: making a line + + + + + Found 1 circular edge: making a circle + + Found 1 circular edge: making a circle + + + + + No more downgrade possible + + No more downgrade possible + + + + + Draft creation tools + Draft creation tools + + + + Draft modification tools + Draft modification tools + + + + &Draft + &Draft + + + + Context tools + Context tools + diff --git a/src/Mod/Draft/Resources/translations/Draft_no.qm b/src/Mod/Draft/Resources/translations/Draft_no.qm index 81f9194c5..467b2c3bd 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_no.qm and b/src/Mod/Draft/Resources/translations/Draft_no.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_no.ts b/src/Mod/Draft/Resources/translations/Draft_no.ts index fc15aa89a..d82da73e9 100644 --- a/src/Mod/Draft/Resources/translations/Draft_no.ts +++ b/src/Mod/Draft/Resources/translations/Draft_no.ts @@ -4,12 +4,12 @@ Draft_AddPoint - + Add Point Legg til punkt - + Adds a point to an existing wire/bspline Legger til et punkt på en eksisterende tråd/ bspline @@ -17,12 +17,12 @@ Draft_AddToGroup - + Adds the selected object(s) to an existing group Legger til valgte objekt(er) til en eksisterende gruppe - + Add to group... Add to group... @@ -30,12 +30,12 @@ Draft_ApplyStyle - + Apply Current Style Bruk gjeldende stil - + Applies current line width and color to selected objects Legg til gjeldende linjebredde og farge på valgte objekter @@ -43,25 +43,38 @@ Draft_Arc - + Arc Bue - + Creates an arc. CTRL to snap, SHIFT to constrain Lager en bue. CTRL for magnet / SHIFT for å låse + + Draft_Array + + + Array + Array + + + + Creates a polar or rectangular array from a selected object + Creates a polar or rectangular array from a selected object + + Draft_BSpline - + B-Spline B-Spline - + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain Lager en flerpunkt b-spline. CTRL for magnet/ SHIFT for å låse @@ -69,25 +82,38 @@ Draft_Circle - + Circle Sirkel - + Creates a circle. CTRL to snap, ALT to select tangent objects Lager en sirkel. CTRL for magnet/ ALT velger tangent til objekter + + Draft_Clone + + + Clone + Clone + + + + Clones the selected object(s) + Clones the selected object(s) + + Draft_CloseLine - + Close Line Lukk linje - + Closes the line being drawn Lukker linja som blir tegnet @@ -95,12 +121,12 @@ Draft_DelPoint - + Remove Point Fjern punkt - + Removes a point from an existing wire or bspline Fjerner et punkt fra en eksisterende tråd eller bspline @@ -108,12 +134,12 @@ Draft_Dimension - + Dimension Dimensjon - + Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment Lager en dimensjon. CTRL for magnet/ SHIFT for å låse/ ALT for å velge et segment @@ -121,25 +147,33 @@ Draft_Downgrade - + Downgrade Nedgrader - + Explodes the selected objects into simpler objects, or subtract faces Eksploderer de valgte objektene i enklere objekter eller fjerner flater + + Draft_Draft2Sketch + + + Draft to Sketch + Draft to Sketch + + Draft_Drawing - + Drawing Tegning - + Puts the selected objects on a Drawing sheet. Setter de valgte objektene på et tegneark. @@ -147,12 +181,12 @@ Draft_Edit - + Edit Rediger - + Edits the active object Redigerer aktivt objekt @@ -160,12 +194,12 @@ Draft_FinishLine - + Finish line Avslutt linje - + Finishes a line without closing it Avslutter en linje uten å lukke den @@ -173,12 +207,12 @@ Draft_Line - + Line Linje - + Creates a 2-point line. CTRL to snap, SHIFT to constrain Lager en 2-punkts linje. CTRL for magnet / SHIFT for å låse @@ -186,12 +220,12 @@ Draft_Move - + Move Flytt - + Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy Flytter de valgte objektene mellom to punkter. CTRL for magnet/ SHIFT for å låse/ ALT for å kopiere @@ -199,25 +233,38 @@ Draft_Offset - + Offset Avsetting - + Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy Forskyver aktivt objekt. CTRL for magnet/ SHIFT for å låse/ ALT for å kopiere + + Draft_Point + + + Point + Point + + + + Creates a point object + Creates a point object + + Draft_Polygon - + Polygon Polygon - + Creates a regular polygon. CTRL to snap, SHIFT to constrain Lager en vanlig polygon. CTRL for magnet/ SHIFT for å låse @@ -225,12 +272,12 @@ Draft_Rectangle - + Rectangle Rektangel - + Creates a 2-point rectangle. CTRL to snap Lager et 2-punkts rektangel. CTRL for magnet @@ -238,12 +285,12 @@ Draft_Rotate - + Rotate Roter - + Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy Roterer valgte objekter. CTRL for magnet/ SKIFT for å låse/ ALT lager en kopi @@ -251,12 +298,12 @@ Draft_Scale - + Scale Skaler - + Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy Skalerer valgte objekter fra et basepunkt. CTRL for magnet/ SHIFT for å låse/ ALT for å kopiere @@ -264,12 +311,12 @@ Draft_SelectGroup - + Select group Select group - + Selects all objects with the same parents as this group Selects all objects with the same parents as this group @@ -277,12 +324,12 @@ Draft_SelectPlane - + SelectPlane Velg plan - + Select a working plane for geometry creation Velg et arbeidsplan for opprettelse av geometri @@ -290,25 +337,43 @@ Draft_Shape2DView - + Shape 2D view Shape 2D view - + Creates Shape 2D views of selected objects Creates Shape 2D views of selected objects + + + Convert bidirectionally between Draft and Sketch objects + Convert bidirectionally between Draft and Sketch objects + + + + Draft_ShowSnapBar + + + Show Snap Bar + Show Snap Bar + + + + Shows Draft snap toolbar + Shows Draft snap toolbar + Draft_Text - + Text Tekst - + Creates an annotation. CTRL to snap Lager en merknad. CTRL for magnet @@ -316,12 +381,12 @@ Draft_ToggleConstructionMode - + Toggle construcion Mode Veksler konstruksjonsmodus - + Toggles the Construction Mode for next objects. Veksler konstruksjonsmodus for neste objekter. @@ -329,12 +394,12 @@ Draft_ToggleContinueMode - + Toggle continue Mode Toggle continue Mode - + Toggles the Continue Mode for next commands. Toggles the Continue Mode for next commands. @@ -342,25 +407,51 @@ Draft_ToggleDisplayMode - + Toggle display mode Bytt visningsmodus - + Swaps display mode of selected objects between wireframe and flatlines Bytter visningsmodus på utvalgte objekter mellom trådrammer og flatlinjer + + Draft_ToggleGrid + + + Toggle Grid + Toggle Grid + + + + Toggles the Draft gid on/off + Toggles the Draft gid on/off + + + + Draft_ToggleSnap + + + Toggle snap + Toggle snap + + + + Toggles Draft snap on or off + Toggles Draft snap on or off + + Draft_Trimex - + Trimex Trimex - + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts @@ -368,12 +459,12 @@ Draft_UndoLine - + Undo last segment Angre siste segment - + Undoes the last drawn segment of the line being drawn Angrer siste segment på linjen som blir tegnet @@ -381,12 +472,12 @@ Draft_Upgrade - + Upgrade Oppgrader - + Joins the selected objects into one, or converts closed wires to filled faces, or unite faces Sammenføyer valgte objekter til ett, konverterer lukkede linjer til fylte flater eller sammenføyer flater @@ -394,25 +485,25 @@ Draft_Wire - - Wire - Tråd + + DWire + DWire - - Creates a multiple-point wire. CTRL to snap, SHIFT to constrain - Lager en flerpunktstråd. CTRL for magnet/ SHIFT for å låse + + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain Draft_WireToBSpline - + Wire to BSpline Tråd til BSpline - + Converts between Wire and BSpline Konverterer mellom tråd og BSpline @@ -425,137 +516,137 @@ Generelle innstillinger for utkast - + Default color Standard farge - + the default color for new objects Standardfarge for nye objekter - + Default linewidth Standard linjebredde - + the default linewidth for new objects standard linjebredde for nye objekter - + Snap color Magnetfarge - + the default color for snap symbols standardfarge for magnetsymboler - + Construction color Konstruksjonsfarge - + This is the default color for objects being drawn while in construction mode. Dette er standard farge for objekter tegnet i konstruksjonmodus. - + This is the default group name for construction geometry Dette er standard gruppenavn for konstruksjongeometri - + Construction Konstruksjon - + check this if you want to use the color/linewidth from the toolbar as default merk av her hvis du vil bruke farge/linjebredde fra verktøylinjen som standard - + Save current color and linewidth across sessions Lagre gjeldende farge og linjebredde på tvers av økter - + If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode dersom denne er avkryssa vil kopieringsmodus beholdes på tvers av kommandoen, ellers vil kommandoer alltid starte i ikke kopieringsmodus - + Global copy mode Global kopieringsmodus - + If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. Hvis denne er avkrysset, vil alltid magnet være aktiv for eksisterende objekter under tegning. Hvis ikke aktiveres magnet kun når du trykker CTRL. - + If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe Dersom denne er avkrysset, vil objekter vises med fylte flater som standard. Hvis ikke, vil de vises som trådramme - + Fill objects by default Fyll objekter som standard - + Default working plane Standard arbeidsplan - + None Ingen - + XY (Top) XY (Topp) - + XZ (Front) XZ (Front) - + YZ (Side) YZ (Side) - + The number of decimals in internal coordinates operations (for ex. 3 = 0.001) Antall desimaler i interne koordinatoperasjoner (f.eks. 3 = 0,001) - + Default text height Standardhøyde tekst - + Default height for texts and dimensions Standardhøyde for tekst og dimensjoner - + Default text font Standard skrifttype - + This is the default font name for all Draft texts and dimensions. It can be a font name such as "Arial", a default style such as "sans", "serif" or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style @@ -563,22 +654,22 @@ such as "Arial:Bold" Dette er standardskrift for all tekst og alle dimensjoner. Det kan være et skriftnavn som "Arial", en standardstil som "sans", "serif" eller "mono", en skriftfamilie som "Arial, Helvetica, sans" eller et navn med en stil som "Arial:Bold" - + Arial Arial - + Default template sheet Standardmal - + The default template to use when creating a new drawing sheet Standardmal som brukes når du oppretter et nytt tegneark - + Import style Importer stil @@ -591,17 +682,17 @@ If color mapping is choosed, you must choose a color mapping file containing a t Hvis fargetilordning er valgt må du velge en fargetilordningsfil som inneholder en oversettelsetabell som vil konvertere fargene til linjebredde. - + None (fastest) Ingen (raskest) - + Use default color and linewidth Bruk standard farge og linjebredde - + Original color and linewidth Original farge og linjebredde @@ -611,52 +702,52 @@ Hvis fargetilordning er valgt må du velge en fargetilordningsfil som inneholder Farge tilordnet linjebredde - + if this is checked, paper space objects will be imported too hvis denne er valgt vil papirobjekter også importeres - + Import layouts Importer utforminger - + if this is unchecked, texts/mtexts won't be imported Hvis denne er avkrysset vil tekster/ mtekster ikke bli importert - + Color mapping file Fargetilordningsfil - + The color mapping file for translating dxf colors into linewidths Fargetilordningsfil for å oversette dxf farger til linjebredder - + Max Spline Segment Maks Spline segment - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Ved eksport av splines til DXF blir de konvertert til polylinjer. Denne verdien er den maksimale lengden for hver av polylinjesegmentene. Hvis 0 blir hele splinen behandlet som et rett segment. - + This is the method choosed for importing SVG object color into FreeCAD. Dette er metoden valgt for å importere SVG-objektfarger til FreeCAD. - + Check this if you want the areas (3D faces) to be imported too. Merk av her hvis du vil at områdene (3D-flater) også skal importeres. - + Import OCA areas Importer OCA områder @@ -666,83 +757,83 @@ Hvis fargetilordning er valgt må du velge en fargetilordningsfil som inneholder Generelle innstillinger - + Construction group name Konstruksjonsgruppenavn - + Tolerance Toleranse - + This is the value used by functions that use a tolerance. Values with differences below this value will be treated as same. Dette er toleranseverdien brukt av funksjoner. Verdier med forskjeller under denne verdien vil bli behandlet som like. - + Dimensions & Leader arrow style Dimensjons og leder-pilstil - + Dot 5 Punktum 5 - + Dot 7 Punktum 7 - + Dot 9 Punktum 9 - + Circle 5 Sirkel 5 - + Circle 7 Sirkel 7 - + Circle 9 Sirkel 9 - + Slash 5 Skråstrek 5 - + Slash 7 Skråstrek 7 - + Slash 9 Skråstrek 9 - + Backslash 5 Omvendt skråstrek 5 - + Backslash 7 Omvendt skråstrek 7 - + Backslash 9 Omvendt skråstrek 9 @@ -757,204 +848,204 @@ Values with differences below this value will be treated as same. DXF formatalternativer - + Import texts and dimensions Importer tekster og dimensjoner - + Check this if you want the non-named blocks (beginning with a *) to be imported too Merk av her hvis du vil at ikke navngitte blokker (som begynner med *) skal importeres også - + Import *blocks Importer *blokker - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Hvis dette er merket vil freecad prøve å sammenføye sammenfallende gjenstander som tråder. NB: dette kan ta en stund... - + Join geometry Sammenføy geometri - + SVG format options SVG formatalternativer - + OCA format options OCA formatalternativer - + Alternate SVG Patterns location Alternate SVG Patterns location - + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns - + Draft interface mode Draft interface mode - + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction - + Toolbar Toolbar - + Taskview Taskview - + Constrain mod Constrain mod - + The Constraining modifier key The Constraining modifier key - + shift shift - + ctrl ctrl - + alt alt - + Snap mod Snap mod - + The snap modifier key The snap modifier key - + Alt mod Alt mod - + The alt modifier key The alt modifier key - + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. - + Select base objects after copying Select base objects after copying - + Always snap to objects (disable snap mod key) Always snap to objects (disable snap mod key) - + The radius for snapping to special points. Set to 0 for no distance (infinite) The radius for snapping to special points. Set to 0 for no distance (infinite) - + Snap range Snap range - + px px - + If checked, a grid will appear when drawing If checked, a grid will appear when drawing - + Use grid Use grid - + Grid spacing Grid spacing - + The spacing between each grid line The spacing between each grid line - + Main lines every Main lines every - + Mainlines will be drawn thicker. Specify here how many squares between mainlines. Mainlines will be drawn thicker. Specify here how many squares between mainlines. - + Internal precision level Internal precision level - + Dimensions precision level Dimensions precision level - + Vertical dimensions text orientation Vertical dimensions text orientation - + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. - + Left (ISO standard) Left (ISO standard) - + Right - Right + Høyre @@ -962,743 +1053,947 @@ Values with differences below this value will be treated as same. Create parametric objects - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable - + Group layers into blocks Group layers into blocks - + If this is checked, all objects containing faces will be exported as 3d polyfaces If this is checked, all objects containing faces will be exported as 3d polyfaces - + Export 3D objects as polyface meshes Export 3D objects as polyface meshes + + + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + + + + Hide Draft workbench + Hide Draft workbench + + + + If this is checked, snapping will not occur against objects with more than the indicated number of edges + If this is checked, snapping will not occur against objects with more than the indicated number of edges + + + + Snap maximum + Snap maximum + + + + Maximum number of edges to be considered for snapping + Maximum number of edges to be considered for snapping + + + + Maximum number of edges + Maximum number of edges + + + + If checked, the Snap toolbar will be shown whenever you use snapping + If checked, the Snap toolbar will be shown whenever you use snapping + + + + Show Draft Snap toolbar + Show Draft Snap toolbar + + + + Hide Draft snap toolbar after use + Hide Draft snap toolbar after use + + + + if checked, a widget indicating the current working plane orientation appears during drawing operations + if checked, a widget indicating the current working plane orientation appears during drawing operations + + + + Show Working Plane tracker + Show Working Plane tracker + + + + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + + + + Always show + Always show + + + + Create Sketches + Create Sketches + + + + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + + + + Use standard font size for texts + Use standard font size for texts + + + + If this is checked, hatches will be converted into simple wires + If this is checked, hatches will be converted into simple wires + + + + Import hatch boundaries as wires + Import hatch boundaries as wires + + + + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + + + + Render polylines with width + Render polylines with width + + + + Export Style + Export Style + + + + Style of SVG file to write when exporting a Sketch. + Style of SVG file to write when exporting a Sketch. + + + + Translated (for print & display) + Translated (for print & display) + + + + Raw (for CAM) + Raw (for CAM) + + + + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + + + + Translate white line color to black + Translate white line color to black + draft - + active command: aktiv kommando: - + None Ingen - + Active Draft command Aktiv kommando - + X coordinate of next point X koordinat for neste punkt - + X X - + Y Y - + Z Z - + Y coordinate of next point Y koordinat for neste punkt - + Z coordinate of next point Z koordinat for neste punkt - + Radius Radius - + Radius of Circle Sirkelradius - + Coordinates relative to last point or absolute (SPACE) Koordinater relativt til siste punkt eller absolutt (mellomrom) - + Undo the last segment (CTRL+Z) Angre siste segment (CTRL+Z) - + Finishes and closes the current line (C) Fullfører og lukker gjeldende linje (C) - + Offset Avsetting - + XY XY - + Select XY plane Velg XY plan - + XZ XZ - + Select XZ plane Velg XZ plan - + YZ YZ - + Select YZ plane Velg YZ plan - + View Vis - + Select plane perpendicular to the current view Velg plan vinkelrett på gjeldende visning - + Do not project points to a drawing plane Ikke vis punkter på et tegningsplan - + If checked, objects will be copied instead of moved (C) Hvis merket vil objektet kopieres i stedet for å flyttes (C) - + Line Color Linjefarge - + Face Color Farge på flate - + Line Width Linjebredde - + Font Size Skriftstørrelse - + Apply to selected objects Bruk på valgte objekter - + Toggles Construction Mode Veksler konstruksjonsmodus - + Select Plane Velg plan - + Line Linje - + Circle Sirkel - + Center X Senter X - + Arc Bue - + Pick Object Velg objekt - + draft Command Bar kommandolinje - + Pick a face to define the drawing plane Velg en flate å definere plan - + Pick first point: Velg første punkt: - + Pick next point: Velg neste punkt: - + Pick next point, or (F)inish or (C)lose: Velg neste punkt eller (A) for avslutt eller (L) for å lukke: - + Pick opposite point: Velg motsatt punkt: - + Pick center point: Velg midtpunkt: - + Pick radius: Velg radius: - + Pick start angle: Velg startvinkel: - + Pick aperture: Velg åpning: - + Aperture angle: Vinkel på åpning: - + Pick location point: Velg plasseringspunkt: - + Select an object to move Velg et objekt å flytte - + Pick start point: Velg startpunkt: - + Pick end point: Velg sluttpunkt: - + Select an object to rotate Velg et objekt å rotere - + Pick rotation center: Velg rotasjonssenter: - + Pick base angle: Velg base vinkel: - + Pick rotation angle: Velg rotasjonsvinkel: - + Select an object to offset Velg et objekt til å avsette - + Offset only works on one object at a time Avsetting fungerer bare på ett objekt om gangen - + Pick distance: Velg avstand: - + Select an object to upgrade Velg et objekt å oppgradere - + Select an object to trim/extend Velg et objekt til å trimme/ ekstendere - + Select an object to scale Velg et objekt å skalere - + Pick base point: Velg basepunkt: - + Pick scale factor: Velg skalafaktor: - + Number of sides Antall sider - + &Relative &Relativ - + &Undo &Angre - + &Close &Lukk - + &Copy &Kopier - + If checked, command will not finish until you press the command button again Hvis denne er merket vil kommandoen ikke bli fullført før du trykker kommandoknappen igjen - + &Continue &Fortsett - - Wire has been closed - - Tråd er stengt - - - + Last point has been removed Siste punkt har blitt fjernet - + Spline has been closed Spline er avsluttet - + Edges don't intersect! Kantene krysser ikke hverandre! - + Cannot offset this object type Kan ikke avsette denne objekttypen - + Found groups: closing each open object inside Fant grupper: lukker alle åpne objekt inni - + Found 2 objects: fusing them Fant to objekter: smelter de - + Found 1 non-parametric objects: draftifying it Fant et ikke parametrisk objekt: skisserer det - + Found 1 closed sketch object: making a face from it Fant et lukket skisseobjekt: lager en flate av det - - Found closed wires: making faces - - Fant lukkede tråder: lager flater - - - + Found 1 open wire: closing it Fant en åpen tråd: lukker den - + Found several edges: wiring them Fant flere kanter: binder de - + Found several non-connected edges: making compound Fant flere ikke tilkoblede kanter: gjør sammensatt - + Found several non-treatable objects: making compound Fant flere ikke behandlingsbare objekter: gjør sammensatt - + Found 1 parametric object: breaking its dependencies Fant et parametrisk objekt: bryter dens avhengigheter - + Found 2 objects: subtracting them Fant to objekter: trekker de fra - + Found several faces: splitting them Fant flere flater: splitter de - + Found several objects: subtracting them from the first one Fant flere objekter: trekker de fra første - + Found 1 face: extracting its wires Fant en flate: ved å ekstrahere dens tråder - + Found only wires: extracting their edges Fant bare tråder: ved å ekstrahere deres kanter - + This object type is not editable Denne objekttypen er ikke redigerbar - + Active object must have more than two points/nodes Aktivt objekt må ha mer enn to punkt/ noder - + Finishes the current drawing or editing operation (F) Finishes the current drawing or editing operation (F) - + Add points to the current object Add points to the current object - + Remove points from the current object Remove points from the current object - + F&illed F&illed - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Check this if the object should appear as filled, otherwise it will appear as wireframe (i) - + &Finish &Finish - + If checked, an OCC-style offset will be performed instead of the classic offset If checked, an OCC-style offset will be performed instead of the classic offset - + &OCC-style offset &OCC-style offset - + &Wipe &Wipe - + Wipes the existing segments of this line and starts again from the last point (W) Wipes the existing segments of this line and starts again from the last point (W) - + Point Point - + Distance - Distance + Avstand - + Edit Rediger - - Create Wire - Create Wire - - - + Create BSpline Create BSpline - + Create Rectangle Create Rectangle - + Create Circle Create Circle - + Create Arc Create Arc - + Create Polygon Create Polygon - + Create Text Create Text - + Create Dimension Create Dimension - - Delete Measurement - Delete Measurement - - - + Copy - Copy + Kopier - + Move Flytt - + Change Style Change Style - + Rotate Roter - + Found 1 solidificable object: solidifying it Found 1 solidificable object: solidifying it - + Found several objects or faces: making a parametric face Found several objects or faces: making a parametric face - + Found objects containing curves: fusing them Found objects containing curves: fusing them - + Found several objects: fusing them Found several objects: fusing them - + Scale Skaler - + Trim Trim - + Start Angle Start Angle - + Aperture Aperture - + Installed Macros Installed Macros - - Draft tools - Draft tools - - - - Draft - Draft - - - - Display options - Display options - - - + Wire tools Wire tools + + + DWire + DWire + + + + Create DWire + Create DWire + + + + DWire has been closed + + DWire has been closed + + + + + BSpline + BSpline + + + + Rectangle + Rektangel + + + + Polygon + Polygon + + + + Text + Tekst + + + + Dimension + Dimensjon + + + + No upgrade available for this object + + No upgrade available for this object + + + + + Couldn't upgrade these objects + + Couldn't upgrade these objects + + + + + One wire is not planar, upgrade not done + + One wire is not planar, upgrade not done + + + + + Found a closed wire: making a face + + Found a closed wire: making a face + + + + + Found 1 open edge: making a line + + Found 1 open edge: making a line + + + + + Found 1 circular edge: making a circle + + Found 1 circular edge: making a circle + + + + + No more downgrade possible + + No more downgrade possible + + + + + Draft creation tools + Draft creation tools + + + + Draft modification tools + Draft modification tools + + + + &Draft + &Draft + + + + Context tools + Context tools + diff --git a/src/Mod/Draft/Resources/translations/Draft_pl.qm b/src/Mod/Draft/Resources/translations/Draft_pl.qm index f14cf1650..284b60756 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_pl.qm and b/src/Mod/Draft/Resources/translations/Draft_pl.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_pl.ts b/src/Mod/Draft/Resources/translations/Draft_pl.ts index 49af91ba8..50db3bfcc 100644 --- a/src/Mod/Draft/Resources/translations/Draft_pl.ts +++ b/src/Mod/Draft/Resources/translations/Draft_pl.ts @@ -4,12 +4,12 @@ Draft_AddPoint - + Add Point Dodaj punkt - + Adds a point to an existing wire/bspline Wstawia punkt do bieżącego szkieletu/B-Splajna @@ -17,12 +17,12 @@ Draft_AddToGroup - + Adds the selected object(s) to an existing group Dodawanie zaznaczonych obiektów do bieżącej grupy - + Add to group... Dodaj do grupy... @@ -30,12 +30,12 @@ Draft_ApplyStyle - + Apply Current Style Zastosuj Bieżący styl - + Applies current line width and color to selected objects Stosuje bieżącą szerokość linii i kolorów do zaznaczonych obiektów @@ -43,51 +43,77 @@ Draft_Arc - + Arc Łuk - + Creates an arc. CTRL to snap, SHIFT to constrain Tworzy łuk. CTRL przyciągaj, SHIFT ogranicz + + Draft_Array + + + Array + Tablica + + + + Creates a polar or rectangular array from a selected object + Creates a polar or rectangular array from a selected object + + Draft_BSpline - + B-Spline B-Splajn - + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain - Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain + Tworzy wielopunktowy b-spline. CTRL, aby przyciąć, SHIFT, aby ograniczyć Draft_Circle - + Circle Okrąg - + Creates a circle. CTRL to snap, ALT to select tangent objects Tworzy okrąg. CTRL przyciągaj, ALT wybierz styczną obiektu + + Draft_Clone + + + Clone + Klon + + + + Clones the selected object(s) + Clones the selected object(s) + + Draft_CloseLine - + Close Line Zamknij Linię - + Closes the line being drawn Zamyka rysowaną linię @@ -95,12 +121,12 @@ Draft_DelPoint - + Remove Point Usuń punkt - + Removes a point from an existing wire or bspline Usuwa punkt z bieżącego szkieletu lub B-Splajna @@ -108,12 +134,12 @@ Draft_Dimension - + Dimension Wymiar - + Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment Tworzy wymiar. CTRL przyciągaj, SHIFT, aby ograniczyć, ALT, aby zaznaczyć segment @@ -121,25 +147,33 @@ Draft_Downgrade - + Downgrade Zainstalowanie starszej wersji - + Explodes the selected objects into simpler objects, or subtract faces Rozwija zaznaczone obiekty na prostsze lub odejmuje powierzchnie + + Draft_Draft2Sketch + + + Draft to Sketch + Projekt do szkicu + + Draft_Drawing - + Drawing Rysunek - + Puts the selected objects on a Drawing sheet. Umieszcza zaznaczone obiekty na arkuszu rysunku. @@ -147,12 +181,12 @@ Draft_Edit - + Edit Edytuj - + Edits the active object Edytuj aktywny obiekt @@ -160,12 +194,12 @@ Draft_FinishLine - + Finish line Zakończenie linii - + Finishes a line without closing it Zakończenie linii bez zamykania @@ -173,12 +207,12 @@ Draft_Line - + Line Linia - + Creates a 2-point line. CTRL to snap, SHIFT to constrain Tworzy 2-punktowe line. CTRL przyciągaj, SHIFT ogranicz @@ -186,12 +220,12 @@ Draft_Move - + Move Przesuń - + Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy Przenosi zaznaczone obiekty między 2 punkty. CTRL przyciągaj, SHIFT, ogranicz, ALT, kopiuj @@ -199,25 +233,38 @@ Draft_Offset - + Offset Offset - + Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy Offset aktywnego obiektu. CTRL przyciągnij, SHIFT, ogranicz, ALT, kopiuj + + Draft_Point + + + Point + Punkt + + + + Creates a point object + Creates a point object + + Draft_Polygon - + Polygon Wielokąt - + Creates a regular polygon. CTRL to snap, SHIFT to constrain Tworzy regularny wielobok. CTRL przyciągaj, SHIFT ogranicz @@ -225,12 +272,12 @@ Draft_Rectangle - + Rectangle Prostokąt - + Creates a 2-point rectangle. CTRL to snap Tworzy prostokąt względem 2 punktów. CTRL przyciągnij @@ -238,12 +285,12 @@ Draft_Rotate - + Rotate Obróć - + Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy Obraca wybrane obiekty. CTRL przyciągaj, SHIFT, ogranicz, ALT tworzy kopię @@ -251,12 +298,12 @@ Draft_Scale - + Scale Skala - + Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy Skaluje zaznaczone obiekty z punktu bazowego. CTRL przyciąganie, SHIFT, aby ograniczyć, ALT, aby skopiować @@ -264,25 +311,25 @@ Draft_SelectGroup - + Select group Zaznacz grupę... - + Selects all objects with the same parents as this group - Selects all objects with the same parents as this group + Zaznacza wszystkie obiekty w danej grupie od tych samych rodziców Draft_SelectPlane - + SelectPlane Wybierz płaszczyznę - + Select a working plane for geometry creation Wybierz płaszczyznę roboczą do tworzenia geometrii @@ -290,25 +337,43 @@ Draft_Shape2DView - + Shape 2D view - Shape 2D view + Widok 2D kształtu - + Creates Shape 2D views of selected objects - Creates Shape 2D views of selected objects + Tworzy kształt 2D z widoków zaznaczonych obiektów + + + + Convert bidirectionally between Draft and Sketch objects + Convert bidirectionally between Draft and Sketch objects + + + + Draft_ShowSnapBar + + + Show Snap Bar + Show Snap Bar + + + + Shows Draft snap toolbar + Shows Draft snap toolbar Draft_Text - + Text Tekst - + Creates an annotation. CTRL to snap Tworzy adnotacje. CTRL przyciągnij @@ -316,12 +381,12 @@ Draft_ToggleConstructionMode - + Toggle construcion Mode Przełącz do trybu budowy - + Toggles the Construction Mode for next objects. Przełącza tryb budowy dla kolejnych obiektów. @@ -329,51 +394,77 @@ Draft_ToggleContinueMode - + Toggle continue Mode - Toggle continue Mode + Włącz/Wyłącz bieżący tryb - + Toggles the Continue Mode for next commands. - Toggles the Continue Mode for next commands. + Przełącza tryb Kontynuuj dla następnego polecenia. Draft_ToggleDisplayMode - + Toggle display mode Przełącz tryb wyświetlania - + Swaps display mode of selected objects between wireframe and flatlines Zamiana trybu wyświetlania wybranych obiektów pomiędzy modelem siatkowym i liniowym + + Draft_ToggleGrid + + + Toggle Grid + Przełącz siatki + + + + Toggles the Draft gid on/off + Toggles the Draft gid on/off + + + + Draft_ToggleSnap + + + Toggle snap + Przełącz przyciągania + + + + Toggles Draft snap on or off + Toggles Draft snap on or off + + Draft_Trimex - + Trimex Przytnij/Rozciągnij - + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts - Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts + Przycina lub rozszerza zaznaczony obiekt, lub wytłacza pojedyncze powierzchnie. CTRL skokowo, SHIFT ogranicza do aktualnego segmentu lub do prostopadłej, ALT odwraca Draft_UndoLine - + Undo last segment Cofnij ostatni segment - + Undoes the last drawn segment of the line being drawn Cofa ostatni segment rysowanej linii @@ -381,12 +472,12 @@ Draft_Upgrade - + Upgrade Aktualizuj - + Joins the selected objects into one, or converts closed wires to filled faces, or unite faces Łączy wybrane obiekty w jeden, lub zamienia zamknięte polilinie w pełne powierzchnie, lub połączone powierzchnie. @@ -394,25 +485,25 @@ Draft_Wire - - Wire - Linia wielopunktowa + + DWire + DWire - - Creates a multiple-point wire. CTRL to snap, SHIFT to constrain - Tworzy linię wielopunktową.CTRL przyciągaj, SHIFT ogranicz + + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain Draft_WireToBSpline - + Wire to BSpline Linia do B-Splajn - + Converts between Wire and BSpline Konwersja Linia <-> B-Splajn @@ -425,137 +516,137 @@ Ogólne ustawienia rysunkowe - + Default color Kolor domyślny - + the default color for new objects domyślny kolor dla nowych obiektów - + Default linewidth Domyślna szerokość linii - + the default linewidth for new objects Domyślna szerokość linii dla nowych obiektów - + Snap color Przyciąganie koloru - + the default color for snap symbols Domyślny kolor dla przyciągania symboli - + Construction color Kolor Konstrukcji - + This is the default color for objects being drawn while in construction mode. Jest to domyślny kolor dla obiektów, które są sporządzone w trybie budowy. - + This is the default group name for construction geometry Jest to domyślna nazwa grupy dla geometrii konstrukcji - + Construction Konstrukcja - + check this if you want to use the color/linewidth from the toolbar as default Zaznacz, jeśli chcesz użyć jako domyślny kolor/szerokość linii z paska narzędzi - + Save current color and linewidth across sessions Zapisz bieżący kolor i szerokość linii całej sesji - + If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode Jeśli włączone, tryb kopiowania jest aktywny w czasie komendy. Domyślnie tryb kopiowania jest wyłączony. - + Global copy mode Tryb globalny kopiowania - + If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. Jeśli zaznaczone, będzie zawsze przyciągał do istniejących obiektów podczas rysowania. Jeśli nie, będzie przyciągał tylko wtedy, gdy naciśniesz CTRL. - + If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe Jeśli zaznaczone obiekty będą widoczne jako wypełnione. Domyślnie jako szkielet. - + Fill objects by default Wypełnij obiekty domyślnie - + Default working plane Domyślna płaszczyzna robocza - + None Żaden - + XY (Top) XY (góra) - + XZ (Front) XZ (przód) - + YZ (Side) YZ (strona) - + The number of decimals in internal coordinates operations (for ex. 3 = 0.001) Ilość miejsc dziesiętnych dla współrzędnych wewnętrznych. - + Default text height Domyślna wysokość tekstu - + Default height for texts and dimensions Domyślna wysokość tekstów i wymiarów - + Default text font Domyślna czcionka tekstu - + This is the default font name for all Draft texts and dimensions. It can be a font name such as "Arial", a default style such as "sans", "serif" or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style @@ -563,22 +654,22 @@ such as "Arial:Bold" To jest nazwa domyślnej czcionki dla wszystkich tekstów i wymiarów. Może to być np. nazwa czcionki "Arial", domyślny styl, tak jak "sans", "serif" lub "mono" lub rodziny, jak np. "Arial, Helvetica, sans "lub nazwę w stylu np." Arial: Bold " - + Arial Arial - + Default template sheet Domyślny szablon arkusza - + The default template to use when creating a new drawing sheet Domyślny szablon podczas tworzenia nowego arkusza rysunkowego - + Import style Import stylu @@ -587,22 +678,20 @@ such as "Arial:Bold" This is the method choosed for importing or translating DXF object color into FreeCAD. If color mapping is choosed, you must choose a color mapping file containing a translation table that will convert colors into linewidths. - This is the method choosed for importing or translating DXF object color into FreeCAD. -If color mapping is choosed, you must choose a color mapping file containing a translation table that will convert colors into linewidths. - + Jest to metoda importowania lub tłumaczenie koloru obiektu DXF na FreeCAD. Jeśli mapowanie kolorów jest wybrane, należy wybrać plik mapowania kolorów zawierających tabelę translacji, który przekonwertuje kolory do linewidths. - + None (fastest) Brak (najszybszy) - + Use default color and linewidth Użyj domyślnego koloru i szerokości linii - + Original color and linewidth Oryginalny kolor i szerokość linii @@ -612,52 +701,52 @@ If color mapping is choosed, you must choose a color mapping file containing a t Mapowanie koloru do grubości linii - + if this is checked, paper space objects will be imported too Jeśli zaznaczono, zostaną również zaimportowane obiekty z obszaru papieru - + Import layouts Importowanie warstw - + if this is unchecked, texts/mtexts won't be imported jeśli jest to odznaczone, teksty / mtexts nie zostaną zaimportowane - + Color mapping file Plik mapowania koloru do grubości linii - + The color mapping file for translating dxf colors into linewidths Plik mapowania kolorów DXF na grubości linii - + Max Spline Segment Max. segment Splajn-u - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Podczas eksportu do DXF Splajny zostaną przekonwertowane do polilinii. Podana wartość jest max. długością każdego segmentu polilinii. Jeśli wartość wynosi '0', cała polilinia będzie traktowana jako pojedynczy segment. - + This is the method choosed for importing SVG object color into FreeCAD. Wybrano metodę importu koloru obiektu SVG do FreeCADa. - + Check this if you want the areas (3D faces) to be imported too. Zaznacz jeśli chcesz zaimportować powierzchnie (3D face). - + Import OCA areas Import powierzchni OCA @@ -667,84 +756,83 @@ If color mapping is choosed, you must choose a color mapping file containing a t Ustawienia ogólne - + Construction group name Nazwa grupy Konstrukcja - + Tolerance Tolerancja - + This is the value used by functions that use a tolerance. Values with differences below this value will be treated as same. - This is the value used by functions that use a tolerance. -Values with differences below this value will be treated as same. + Jest to wartość używana przez funkcje wykorzystujące tolerancję. Wartości poniżej tej wartości są traktowane jako takie same. - + Dimensions & Leader arrow style Styl wymiarowania - + Dot 5 - Dot 5 + Kropka 5 - + Dot 7 - Dot 7 + Kropka 7 - + Dot 9 - Dot 9 + Kropka 9 - + Circle 5 Okrąg 5 - + Circle 7 - Circle 7 + Okrąg 7 - + Circle 9 - Circle 9 + Okrąg 9 - + Slash 5 Slash 5 - + Slash 7 Slash 7 - + Slash 9 Slash 9 - + Backslash 5 Backslash 5 - + Backslash 7 Backslash 7 - + Backslash 9 Backslash 9 @@ -759,202 +847,202 @@ Values with differences below this value will be treated as same. Opcje formatu DXF - + Import texts and dimensions Importuj tekst i wymiary - + Check this if you want the non-named blocks (beginning with a *) to be imported too - Check this if you want the non-named blocks (beginning with a *) to be imported too + Zaznacz to pole aby importować również bloki bez nazwy (rozpoczynające się od znaku *) - + Import *blocks Import *Bloków - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Jeśli zaznaczono, FreeCAD spróbuje połączyć nakładające się obiekty w szkielet. Uwaga, to może potrwać chwilę... - + Join geometry - Join geometry + Łącz geometrie - + SVG format options Opcje formatu SVG - + OCA format options Opcje formatu OCA - + Alternate SVG Patterns location - Alternate SVG Patterns location + Alternatywna lokalizcja wzorców SVG - + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns Podaj folder zawierający pliki SVG definicji wzorów wypełnienia ,które można dodać do standardowego modułu wypełnień Draft. - + Draft interface mode Tryb Draft - + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction - This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction + To jest tryb UI, w którym moduł Draft będzie działać następująco: Pasek narzędzi umieści wszystkie ustawienia Draft w osobnym pasku, natomiast tryb paska zadań użyje system FreeCAD Taskview dla wszystkich jego interakcji z użytkownikiem - + Toolbar Pasek narzędzi - + Taskview Pasek zadań - + Constrain mod - Constrain mod + moduł Ograniczanie - + The Constraining modifier key - The Constraining modifier key + Klawisz modyfikujący ograniczanie - + shift SHIFT - + ctrl CTRL - + alt ALT - + Snap mod Tryb Snap - + The snap modifier key - The snap modifier key + Klawisz modyfikujący przyciąganie - + Alt mod Alt mod - + The alt modifier key - The alt modifier key + ALT klawisz modyfikujący - + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. - Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. + Po wklejeniu skopiowanych obiektów zaznaczone są kopie. Ta opcja powoduje, że zaznaczone pozostają obiekty bazowe. - + Select base objects after copying - Select base objects after copying + Zaznacz obiekty bazowe po skopiowaniu - + Always snap to objects (disable snap mod key) - Always snap to objects (disable snap mod key) + Zawsze przyciągaj do obiektów (unieaktywnij przycisk przyciągania) - + The radius for snapping to special points. Set to 0 for no distance (infinite) - The radius for snapping to special points. Set to 0 for no distance (infinite) + Promień przyciągania do punktów specjalnych. Ustaw 0 dla nieskończonego promienia - + Snap range - Snap range + Zakres przyciągania - + px px - + If checked, a grid will appear when drawing - If checked, a grid will appear when drawing + Jeśli zaznaczone, podczas rysowania będzie widoczna siatka - + Use grid - Use grid + Użyj siatki - + Grid spacing - Grid spacing + Odstępy siatki - + The spacing between each grid line - The spacing between each grid line + Odstępy między liniami siatki - + Main lines every - Main lines every + Wszystkie główne linie - + Mainlines will be drawn thicker. Specify here how many squares between mainlines. - Mainlines will be drawn thicker. Specify here how many squares between mainlines. + Linia główna będzie grubsza. Określ, ile kwadratów między liniami głównymi. - + Internal precision level - Internal precision level + Wewnętrzny poziom precyzji - + Dimensions precision level Dokładność wymiarowania - + Vertical dimensions text orientation - Vertical dimensions text orientation + Orientacja tekstu pionowego wymiaru - + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. - This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. + Jest to orientacja tekstów wymiarów, gdy te wymiary są pionowe. Pozostawiona jest domyślna, która jest normą ISO. - + Left (ISO standard) Lewo (standard ISO) - + Right Prawo @@ -964,744 +1052,937 @@ Values with differences below this value will be treated as same. Utwórz obiekt parametryczny - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable - if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable + Jeśli to jest zaznaczone, obiekty z tej samej warstwy zostaną połączone w bloki Draft , będą one wyświetlane szybciej, ale za to trudniejsze do edytowania - + Group layers into blocks Zgrupuj warstwy w Bloki - + If this is checked, all objects containing faces will be exported as 3d polyfaces - If this is checked, all objects containing faces will be exported as 3d polyfaces + Jeśli to jest zaznaczone, wszystkie obiekty zawierające powierzchnie"faces" zostanią wyeksportowane jako 3d polyfaces - + Export 3D objects as polyface meshes Eksport obiektu 3D jako wielofasetowa siatka + + + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + + + + Hide Draft workbench + Hide Draft workbench + + + + If this is checked, snapping will not occur against objects with more than the indicated number of edges + If this is checked, snapping will not occur against objects with more than the indicated number of edges + + + + Snap maximum + Przyciągaj maksymalnej + + + + Maximum number of edges to be considered for snapping + Maximum number of edges to be considered for snapping + + + + Maximum number of edges + Maksymalna liczba krawędzi + + + + If checked, the Snap toolbar will be shown whenever you use snapping + If checked, the Snap toolbar will be shown whenever you use snapping + + + + Show Draft Snap toolbar + Show Draft Snap toolbar + + + + Hide Draft snap toolbar after use + Hide Draft snap toolbar after use + + + + if checked, a widget indicating the current working plane orientation appears during drawing operations + Jeśli zaznaczone, widżet wskazujące bieżącą orientację płaszczyzny pracy która pojawi się podczas operacji rysowania + + + + Show Working Plane tracker + Show Working Plane tracker + + + + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + + + + Always show + Zawsze pokazuj + + + + Create Sketches + Tworzenie szkiców + + + + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + + + + Use standard font size for texts + Użyj standardowego rozmiaru czcionki dla tekstów + + + + If this is checked, hatches will be converted into simple wires + If this is checked, hatches will be converted into simple wires + + + + Import hatch boundaries as wires + Import hatch boundaries as wires + + + + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + + + + Render polylines with width + Render polylines with width + + + + Export Style + Eksportuj styl + + + + Style of SVG file to write when exporting a Sketch. + Style of SVG file to write when exporting a Sketch. + + + + Translated (for print & display) + Przetłumaczone (dla drukowania i wyświetlania) + + + + Raw (for CAM) + Raw (dla CAM) + + + + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + + + + Translate white line color to black + Zamień kolor linii z białego na czarny + draft - + active command: aktywne polecenie: - + None Żaden - + Active Draft command Aktywne polecenie kreślarskie - + X coordinate of next point Współrzędna X następnego punktu - + X X - + Y Y - + Z Z - + Y coordinate of next point Współrzędna Y następnego punktu - + Z coordinate of next point Współrzędna Z następnego punktu - + Radius Promień - + Radius of Circle Promień okręgu - + Coordinates relative to last point or absolute (SPACE) Współrzędne w stosunku do ostatniego punktu lub bezwzględnej (SPACJA) - + Undo the last segment (CTRL+Z) Cofa ostatni segment (CTRL + Z) - + Finishes and closes the current line (C) Zakańcza i zamyka bieżącą linię (C) - + Offset Offset - + XY XY - + Select XY plane Wybierz płaszczyznę XY - + XZ XZ - + Select XZ plane Wybierz płaszczyznę XZ - + YZ YZ - + Select YZ plane Wybierz płaszczyznę YZ - + View Widok - + Select plane perpendicular to the current view Wybierz płaszczyznę prostopadłą do aktualnego widoku - + Do not project points to a drawing plane Nie rzutuj punktów na płaszczyznę rysunku - + If checked, objects will be copied instead of moved (C) Jeśli pole jest zaznaczone, obiekty zostaną skopiowane zamiast przeniesione (C) - + Line Color Kolor linii - + Face Color Kolor powierzchni - + Line Width Szerokość linii - + Font Size Rozmiar Czcionki - + Apply to selected objects Zastosuj do wybranych obiektów - + Toggles Construction Mode Przełącza do trybu budowy - + Select Plane Wybierz Płaszczyznę - + Line Linia - + Circle Okrąg - + Center X Środek X - + Arc Łuk - + Pick Object Wybierz obiekt - + draft Command Bar Pasek poleceń projektowania - + Pick a face to define the drawing plane Wybierz powierzchnię do zdefiniowania płaszczyzny rysunku - + Pick first point: Wybierz pierwszy punkt - + Pick next point: Wybierz następny punkt - + Pick next point, or (F)inish or (C)lose: Wybierz następny punkt, albo (F)koniec lub (C)zamknij - + Pick opposite point: Wybierz punkt przeciwległy - + Pick center point: Wybierz punkt środkowy - + Pick radius: Wybierz promień - + Pick start angle: Wybierz Kąt początkowy - + Pick aperture: - Pick aperture: - + Wybierz szczelinę: - + Aperture angle: - Aperture angle: - + Kąt szczeliny: - + Pick location point: Wybierz lokalizację punktu - + Select an object to move Zaznacz obiekt do przeniesienia - + Pick start point: Wybierz punkt początkowy - + Pick end point: Wybierz punkt końcowy - + Select an object to rotate Zaznacz obiekt, aby obrócić - + Pick rotation center: Wybierz środek obrotu - + Pick base angle: Wybierz podstawowy kąt - + Pick rotation angle: Wybierz kąt obrotu - + Select an object to offset Wybierz obiekt do offset - + Offset only works on one object at a time Offset działa tylko na jednym obiekcie w tym samym czasie - + Pick distance: Wybrać odległość - + Select an object to upgrade Zaznacz obiekt do uaktualnienia - + Select an object to trim/extend Zaznacz obiekt, do zwężenia / rozszerzenia - + Select an object to scale Zaznacz obiekt do skalowania - + Pick base point: Wybierz punkt bazowy - + Pick scale factor: Wybrać współczynnik skalowania - + Number of sides Liczba boków - + &Relative - &Relative + & Względny - + &Undo Cofnij - + &Close Zamknij - + &Copy Kopiuj - + If checked, command will not finish until you press the command button again - If checked, command will not finish until you press the command button again + Jeżeli opcja jest zaznaczona, polecenie nie zostanie zakończone do momentu naciśnięcia przycisku polecenia ponownie - + &Continue Zamknięto szkielet - - Wire has been closed - - Zamknięto szkielet - - - + Last point has been removed Ostatni punkt został usunięty - + Spline has been closed Zamknięto B-Splajn - + Edges don't intersect! Krawędzie nie przecinają się! - + Cannot offset this object type Nie można odsunąć obiektu tego typu - + Found groups: closing each open object inside Znaleziono grupy: zamykanie każdego obiektu wewnątrz grupy - + Found 2 objects: fusing them Znaleziono 2 obiekty: zostaną połączone - + Found 1 non-parametric objects: draftifying it Znaleziono 1 obiekt nieparametryczny: draftyfying - + Found 1 closed sketch object: making a face from it Znaleziono 1 zamknięty obiekt Szkic: tworzenie fasetki - - Found closed wires: making faces - - Znaleziono zamknięte szkielety: tworzenie fasetek - - - + Found 1 open wire: closing it Znaleziono 1 otwarty szkielet: zamykanie - + Found several edges: wiring them Znaleziono kilka krawędzi: łączenie w szkielet - + Found several non-connected edges: making compound - Found several non-connected edges: making compound - + Znaleziono kilka niepołączonych krawędzi: Tworzenie złożonych - + Found several non-treatable objects: making compound - Found several non-treatable objects: making compound - + Znaleziono wiele nieuleczalnych obiektów: Tworzenie złożonych - + Found 1 parametric object: breaking its dependencies Znaleziono 1 obiekt parametryczny: kasowanie zależności - + Found 2 objects: subtracting them Znaleziono 2 obiekty: odejmowanie - + Found several faces: splitting them Znaleziono kilk fasetek: rozdzielanie - + Found several objects: subtracting them from the first one Znaleziono kilka obiektów: odejmuję od pierwszego obiektu - + Found 1 face: extracting its wires Znaleziono 1 fasetkę: ekstrakcja szkieletu - + Found only wires: extracting their edges Znaleziono wyłącznie szkielet: ekstrakcja krawędzi - + This object type is not editable Ten typ obiektu nie jest edytowalny - + Active object must have more than two points/nodes Aktywny obiekt musi posiadać więcej niż 2 punkty/węzły - + Finishes the current drawing or editing operation (F) - Finishes the current drawing or editing operation (F) + Kończy aktualny rysunek lub operację edycji (F) - + Add points to the current object Dodaj punkty do aktywnego obiektu - + Remove points from the current object Usuń punkty z aktywnego obiektu - + F&illed W&ypełnione - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) - Check this if the object should appear as filled, otherwise it will appear as wireframe (i) + Sprawdź to, czy obiekt powinien być jako bryła, w przeciwnym razie pojawi się jako szkielet (i) - + &Finish &Zakończ - + If checked, an OCC-style offset will be performed instead of the classic offset - If checked, an OCC-style offset will be performed instead of the classic offset + Jeśli zaznaczone, będzie wykonywane przesunięcie w stylu OCC zamiast classic - + &OCC-style offset - &OCC-style offset + &OCC-styl przesunięcie - + &Wipe &Wymaż - + Wipes the existing segments of this line and starts again from the last point (W) - Wipes the existing segments of this line and starts again from the last point (W) + Wymazuje istniejący segment linii i rozpoczyna ponownie od ostatniego punktu (W) - + Point Punkt - + Distance Odległość - + Edit Edytuj - - Create Wire - Utwórz Szkielet - - - + Create BSpline Utwórz B-Splajn - + Create Rectangle Utwórz Prostokąt - + Create Circle Utwórz Okrąg - + Create Arc Utwórz Łuk - + Create Polygon Utwórz Wielokąt - + Create Text Utwórz Tekst - + Create Dimension Utwórz Wymiarowanie - - Delete Measurement - Delete Measurement - - - + Copy Kopiuj - + Move Przesuń - + Change Style Zmiana Stylu - + Rotate Obróć - + Found 1 solidificable object: solidifying it - Found 1 solidificable object: solidifying it - + Znaleziono 1 solidificable obiekt: utrwal go - + Found several objects or faces: making a parametric face Znaleziono obiekty lub fasetki: tworzenie fasetki parametrycznej - + Found objects containing curves: fusing them Znaleziono obiekty zawierające krzywe: łączenie - + Found several objects: fusing them Znaleziono obiekty: łączenie - + Scale Skala - + Trim Ucinanie - + Start Angle Kąt początkowy - + Aperture - Aperture + Celownik - + Installed Macros - Installed Macros + Zainstalowane Makra - - Draft tools - Draft tools - - - - Draft - Draft - - - - Display options - Display options - - - + Wire tools - Wire tools + Narzędzia Szkieletu + + + + DWire + DWire + + + + Create DWire + Utwórz Szkielet + + + + DWire has been closed + + Zamknięto szkielet + + + + + BSpline + BSpline + + + + Rectangle + Prostokąt + + + + Polygon + Wielokąt + + + + Text + Tekst + + + + Dimension + Wymiar + + + + No upgrade available for this object + + Upgrade nie dostępny dla tego obiektu + + + + Couldn't upgrade these objects + + Nie można uaktualnić tych obiektów + + + + One wire is not planar, upgrade not done + + One wire is not planar, upgrade not done + + + + + Found a closed wire: making a face + + Znaleziono zamknięty ślad: tworzenie płaszczyzny + + + + Found 1 open edge: making a line + + Znaleziono jedną otwartą krawędź: tworzenie linii + + + + Found 1 circular edge: making a circle + + Znaleziono jedną okrągłą krawędź: tworzenie okręgu + + + + No more downgrade possible + + Downgrade niemożliwy + + + + Draft creation tools + Narzędzia tworzenia projektu + + + + Draft modification tools + Narzędzia modyfikacji projektu + + + + &Draft + Rysunek + + + + Context tools + Narzędzia Kontekstowe diff --git a/src/Mod/Draft/Resources/translations/Draft_pt-BR.qm b/src/Mod/Draft/Resources/translations/Draft_pt-BR.qm new file mode 100644 index 000000000..3fbac3fe6 Binary files /dev/null and b/src/Mod/Draft/Resources/translations/Draft_pt-BR.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_pt.ts b/src/Mod/Draft/Resources/translations/Draft_pt-BR.ts similarity index 56% rename from src/Mod/Draft/Resources/translations/Draft_pt.ts rename to src/Mod/Draft/Resources/translations/Draft_pt-BR.ts index 08f109f0c..e61eabb33 100644 --- a/src/Mod/Draft/Resources/translations/Draft_pt.ts +++ b/src/Mod/Draft/Resources/translations/Draft_pt-BR.ts @@ -4,12 +4,12 @@ Draft_AddPoint - + Add Point Adicionar ponto - + Adds a point to an existing wire/bspline Adiciona um ponto a um arame/bspline existente @@ -17,12 +17,12 @@ Draft_AddToGroup - + Adds the selected object(s) to an existing group Adiciona o(s) objeto(s) selecionado(s) a um grupo existente - + Add to group... Adicionar ao grupo ... @@ -30,12 +30,12 @@ Draft_ApplyStyle - + Apply Current Style Aplicar o estilo atual - + Applies current line width and color to selected objects Aplica a espessura de linha e a cor atual aos objetos selecionados @@ -43,51 +43,77 @@ Draft_Arc - + Arc Arco - + Creates an arc. CTRL to snap, SHIFT to constrain - Cria um arco. CTRL para snap, Shift para restringir + Cria um arco. CTRL para snap, Shift para parametrizar + + + + Draft_Array + + + Array + Matriz + + + + Creates a polar or rectangular array from a selected object + Cria uma matriz retangular ou polar a partir de um objeto selecionado Draft_BSpline - + B-Spline - B-Spline + Spline-B - + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain - Cria uma b-spline de múltiplos pontos. CTRL para snap, Shift para restringir + Cria uma spline-B de múltiplos pontos. CTRL para snap, Shift para paramentrizar Draft_Circle - + Circle Círculo - + Creates a circle. CTRL to snap, ALT to select tangent objects - Cria um círculo. CTRL para snap, ALT para selecionar objetos tangente + Cria um círculo. CTRL para snap, ALT para selecionar tangente a objetos + + + + Draft_Clone + + + Clone + Clonar + + + + Clones the selected object(s) + Clona o(s) objeto(s) selecionado(s) Draft_CloseLine - + Close Line Fechar linha - + Closes the line being drawn Fechar a linha que está sendo desenhada @@ -95,12 +121,12 @@ Draft_DelPoint - + Remove Point Remover ponto - + Removes a point from an existing wire or bspline Remove um ponto de um arame ou bspline existente @@ -108,12 +134,12 @@ Draft_Dimension - + Dimension Dimensão - + Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment Cria uma dimensão. CTRL para snap, Shift para restringir, ALT para selecionar um segmento @@ -121,25 +147,33 @@ Draft_Downgrade - + Downgrade Rebaixar - + Explodes the selected objects into simpler objects, or subtract faces Explode os objetos selecionados em objetos simples, ou subtrai faces + + Draft_Draft2Sketch + + + Draft to Sketch + Projeto para rascunho + + Draft_Drawing - + Drawing Desenho - + Puts the selected objects on a Drawing sheet. Coloca os objetos selecionados em uma folha de desenho. @@ -147,12 +181,12 @@ Draft_Edit - + Edit Editar - + Edits the active object Edita o objeto ativo @@ -160,12 +194,12 @@ Draft_FinishLine - + Finish line Finalizar linha - + Finishes a line without closing it Terminar a linha sem fechar @@ -173,25 +207,25 @@ Draft_Line - + Line Linha - + Creates a 2-point line. CTRL to snap, SHIFT to constrain - Criar uma linha de 2 pontos. CTRL para snap, Shift para restringir + Cria uma linha de 2 pontos. CTRL para snap, Shift para parametrizar Draft_Move - + Move Mover - + Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy Move os objetos selecionados entre 2 pontos. CTRL para snap, Shift para restringir, ALT para copiar @@ -199,25 +233,38 @@ Draft_Offset - + Offset Offset - + Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy Cria um offset do objeto ativo. CTRL para snap, Shift para restringir, ALT para criar uma cópia + + Draft_Point + + + Point + Ponto + + + + Creates a point object + Criar um objeto ponto + + Draft_Polygon - + Polygon Polígono - + Creates a regular polygon. CTRL to snap, SHIFT to constrain Cria um polígono regular. CTRL para fazer snap, Shift para restringir @@ -225,12 +272,12 @@ Draft_Rectangle - + Rectangle Retângulo - + Creates a 2-point rectangle. CTRL to snap Cria um retângulo com 2 pontos. CTRL para snap @@ -238,12 +285,12 @@ Draft_Rotate - + Rotate Rotacionar - + Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy Rotaciona o objeto selecionado. CTRL para snap, Shift para restringir, ALT cria uma cópia @@ -251,12 +298,12 @@ Draft_Scale - + Scale Escalar - + Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy Escala os objetos selecionados a partir de um ponto de base. CTRL para snap, Shift para restringir, ALT para copiar @@ -264,25 +311,25 @@ Draft_SelectGroup - + Select group Selecionar grupo - + Selects all objects with the same parents as this group - Seleciona todos os objetos com os mesmos pais que este grupo + Seleciona todos os objetos com as mesmos origens que este grupo Draft_SelectPlane - + SelectPlane Plano de trabalho - + Select a working plane for geometry creation Selecionar um plano de trabalho para a criação de objetos 2D @@ -290,25 +337,43 @@ Draft_Shape2DView - + Shape 2D view - Forma vista 2D + Vista da forma 2D - + Creates Shape 2D views of selected objects Cria formas com vistas 2D dos objetos selecionados + + + Convert bidirectionally between Draft and Sketch objects + Converter bidirecionalmente entre objetos do projeto e do rascunho + + + + Draft_ShowSnapBar + + + Show Snap Bar + Mostrar barra de Snap + + + + Shows Draft snap toolbar + Mostra a barra de ferramentas Draft snap + Draft_Text - + Text Texto - + Creates an annotation. CTRL to snap Cria uma anotação. CTRL para snap @@ -316,12 +381,12 @@ Draft_ToggleConstructionMode - + Toggle construcion Mode Ativar / desativar o modo de construção - + Toggles the Construction Mode for next objects. Alterna o modo de construção para os próximos objetos. @@ -329,51 +394,77 @@ Draft_ToggleContinueMode - + Toggle continue Mode - Alternar modo continuar + Ativa o modo continuar - + Toggles the Continue Mode for next commands. - Alterna o modo de continuar para comandos próximos. + Alterna o modo de continuar para os próximos comandos Draft_ToggleDisplayMode - + Toggle display mode Alternar o modo de exibição - + Swaps display mode of selected objects between wireframe and flatlines Muda o modo de exibição dos objetos selecionados entre wireframe e flatlines + + Draft_ToggleGrid + + + Toggle Grid + Alternar grade + + + + Toggles the Draft gid on/off + Liga ou desliga o draft gid + + + + Draft_ToggleSnap + + + Toggle snap + Ativar snap + + + + Toggles Draft snap on or off + Liga ou desliga o Draft snap + + Draft_Trimex - + Trimex Trimex - + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts - Apara ou estende o objeto selecionado ou extruda faces. CTRL para snap, SHIFT restringe o segmento atual ou normal, ALT inverte + Apara ou estende o objeto selecionado ou extruda faces. "CTRL" para snap, "SHIFT" restringe ao segmento atual ou à perpendicular, "ALT" inverte Draft_UndoLine - + Undo last segment Desfazer o último segmento - + Undoes the last drawn segment of the line being drawn Desfaz o último segmento da linha que está sendo desenhada @@ -381,12 +472,12 @@ Draft_Upgrade - + Upgrade Promover - + Joins the selected objects into one, or converts closed wires to filled faces, or unite faces Junta os objetos selecionados em um, ou converte arames fechados para faces cheias, ou unir faces @@ -394,25 +485,25 @@ Draft_Wire - - Wire - Arame + + DWire + DWire - - Creates a multiple-point wire. CTRL to snap, SHIFT to constrain - Cria um arame de múltiplos pontos. CTRL para snap, Shift para restringir + + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + Cria um DraftWire de vários pontos (DWire). CTRL para snap, tecla SHIFT para restringir Draft_WireToBSpline - + Wire to BSpline Arame para BSpline - + Converts between Wire and BSpline Converte entre o arame e BSpline @@ -425,137 +516,137 @@ Configurações gerais do módulo Draft - + Default color Cor padrão - + the default color for new objects a cor padrão para novos objetos - + Default linewidth Espessura de linha padrão - + the default linewidth for new objects a espessura de linha padrão para novos objetos - + Snap color Cor de snap - + the default color for snap symbols a cor padrão para os símbolos de snap - + Construction color Cor de construção - + This is the default color for objects being drawn while in construction mode. Esta é a cor padrão para objetos desenhados no modo de construção. - + This is the default group name for construction geometry Este é o nome padrão para o grupo de geometria de construção - + Construction Construção - + check this if you want to use the color/linewidth from the toolbar as default Marque isto se você quiser usar o cor/espessura de linha da barra de ferramentas como padrão - + Save current color and linewidth across sessions Salvar a cor e espessura de linha atual entre sessões - + If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode Se essa opção estiver marcada, o modo de cópia será mantido entre comandos sucessivos, caso contrário os comandos sempre iniciarão em modo "sem cópia" - + Global copy mode Modo de cópia global - + If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. Se essa opção estiver marcada, você sempre vai fazer snap em objetos existentes durante o desenho. Se não, o snap será ativo somente quando pressiona a tecla CTRL. - + If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe Se essa opção estiver marcada, objetos aparecerão como preenchidos como padrão. Caso contrário, eles serão exibidos como wireframe - + Fill objects by default Preencher objetos por padrão - + Default working plane Plano de trabalho padrão - + None Nenhum - + XY (Top) XY (Cima) - + XZ (Front) XZ (Frente) - + YZ (Side) YZ (Lateral) - + The number of decimals in internal coordinates operations (for ex. 3 = 0.001) O número de casas decimais em operações internas (por ex. 3 = 0,001) - + Default text height Altura de texto padrão - + Default height for texts and dimensions Altura padrão para textos e dimensões - + Default text font Fonte do caráteres padrão - + This is the default font name for all Draft texts and dimensions. It can be a font name such as "Arial", a default style such as "sans", "serif" or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style @@ -563,22 +654,22 @@ such as "Arial:Bold" Este é o nome da fonte padrão para todos os textos e dimensões. Ele pode ser um nome de fonte, como "Arial", um estilo padrão como "sans", "serif" ou "mono", uma família como "Arial, Helvetica, sans" ou um nome com um estilo como"Arial: Bold" - + Arial Arial - + Default template sheet Modelo de folha padrão - + The default template to use when creating a new drawing sheet O modelo padrão para usar ao criar uma nova folha de desenho - + Import style Estilo de importação @@ -590,17 +681,17 @@ If color mapping is choosed, you must choose a color mapping file containing a t Este é o método escolhi para importar ou traduzir objetos DXF no FreeCAD. Se escolher mapeamento de cores, você deve escolher um arquivo de mapeamento de cores que contém uma tabela de conversão que irá converter cores em espessuras de linha. - + None (fastest) Nenhum (mais rápido) - + Use default color and linewidth Usar cor e espessura de linha padrão - + Original color and linewidth Cor e espessura de linha originais @@ -610,52 +701,52 @@ If color mapping is choosed, you must choose a color mapping file containing a t Cor mapeada para espessura de linha - + if this is checked, paper space objects will be imported too - Se essa opção estiver marcada, objetos do paper space serão importados também + Se essa opção estiver marcada, objetos do espaço papel serão importados também - + Import layouts Importar layouts - + if this is unchecked, texts/mtexts won't be imported Se esta opção estiver desmarcada, os textos e mtexts não serão importados - + Color mapping file Arquivo de mapeamento de cores - + The color mapping file for translating dxf colors into linewidths O arquivo de mapeamento de cores para traduzir as cores dxf em espessuras de linha - + Max Spline Segment Segmento de Spline máximo - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Ao exportar splines para DXF, elas são transformadas em polilinhas. Esse valor é o tamanho máximo de cada um dos segmentos da polilinha. Se for 0, a spline toda é tratada como um segmento reto. - + This is the method choosed for importing SVG object color into FreeCAD. Este é o método escolhido para importar a cor dos objetos SVG para FreeCAD. - + Check this if you want the areas (3D faces) to be imported too. Marque isso se quiser que as áreas (faces 3D) sejam importadas também. - + Import OCA areas Importar áreas OCA @@ -665,83 +756,83 @@ If color mapping is choosed, you must choose a color mapping file containing a t Configurações gerais - + Construction group name Nome do grupo de construção - + Tolerance Tolerância - + This is the value used by functions that use a tolerance. Values with differences below this value will be treated as same. - Esse é o valor usado por funções que usam uma tolerância. Valores com diferenças abaixo desse valor serão tratados como igual. + Esse é o valor usado por funções que usam uma tolerância. Valores com diferenças abaixo desse valor serão tratados como iguais. - + Dimensions & Leader arrow style - Tipo de seta das dimensões e leaders + Estilo de seta e guias das dimensões - + Dot 5 Ponto 5 - + Dot 7 Ponto 7 - + Dot 9 Ponto 9 - + Circle 5 Círculo 5 - + Circle 7 Círculo 7 - + Circle 9 Círculo 9 - + Slash 5 Slash 5 - + Slash 7 Slash 7 - + Slash 9 Slash 9 - + Backslash 5 Backslash 5 - + Backslash 7 Backslash 7 - + Backslash 9 Backslash 9 @@ -756,202 +847,202 @@ Values with differences below this value will be treated as same. Opções de formato DXF - + Import texts and dimensions Importar textos e dimensões - + Check this if you want the non-named blocks (beginning with a *) to be imported too - Marque esta opção se você quer que os blocos não-nomeados (começando com um *) estejam importados também + Selecione se quiser importar também blocos não-nomeados (começando com um *) - + Import *blocks Importar blocos que começam com * - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Se isto estiver marcado, freecad tentará juntar objetos coincidentes em arames. Cuidado, isso pode demorar um pouco... - + Join geometry - Juntar a geometria + Juntar à geometria - + SVG format options Opções de formato SVG - + OCA format options Opções de formato OCA - + Alternate SVG Patterns location Local alternativo de hachuras SVG - + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns - Aqui você pode especificar um diretório contendo arquivos SVG contendo tags <pattern> que podem ser adicionados às hachuras padrão do Draft + Aqui você pode especificar um diretório contendo arquivos SVG contendo definições <pattern> que podem ser adicionadas às hachuras padrão do rascunho - + Draft interface mode - Modo de interface do Draft + Modo de interface do rascunho - + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction - Este é o modo de interface do usuário em que o módulo Draft irá trabalhar: Modo Toolbar vai colocar todas as configurações do Draft em uma barra de ferramentas em separada, enquanto o modo Taskview irá utilizar o sistema Taskview do FreeCAD para toda a interação com o usuário + Este é o modo de interface do usuário em que o módulo Draft irá trabalhar: O Modo barra de ferramentas coloca todas as configurações do rascunho em uma barra de ferramentas em separada, enquanto o modo Visualização de tarefa utiliza o sistema de interação com o usuário do FreeCAD - + Toolbar - Toolbar + Barra de ferramentas - + Taskview - Taskview + Visualização de tarefa - + Constrain mod - Restr mod + Modo Parametrizado - + The Constraining modifier key - A tecla modificadora de restrição + A tecla modificadora de parametrização - + shift - shift + "shift" - + ctrl - ctrl + "ctrl" - + alt - alt + "alt" - + Snap mod - Snap mod + Modo Captura - + The snap modifier key - A tecla modificadora de snap + A tecla modificadora da captura - + Alt mod - Alt mod + Modo "Alt" - + The alt modifier key - A tecla modificadora alt + A tecla modificadora "alt" - + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. - Normalmente, depois de copiar objetos, as cópias são selecionadas. Se esta opção estiver marcada, em vez disso, os objetos-base será selecionados. + Normalmente, depois de copiar objetos, as cópias ficam selecionadas. Se selecionado, em vez disso, os objetos-base serão selecionados. - + Select base objects after copying Selecionar objetos de base após a cópia - + Always snap to objects (disable snap mod key) - Sempre snapear aos objetos (desativar tecla de snap) + Sempre capturar objetos (chave para desativar captura) - + The radius for snapping to special points. Set to 0 for no distance (infinite) - O raio a usar nos pontos de snap. Coloque 0 para distância infinita + O raio a usar na captura de pontos especiais. Ajuste 0 para não definir distancia (infinito) - + Snap range - Intervalo de snap + distancia de captura - + px px - + If checked, a grid will appear when drawing - Se esta opção estiver marcada, uma grade aparecerá durante o desenho + Se selecionado, uma grade aparecerá durante o desenho - + Use grid - Usar a grade + Usar grade - + Grid spacing Espaçamento da grade - + The spacing between each grid line O espaçamento entre cada linha da grade - + Main lines every - Linhas principais cada + Linhas principais a cada - + Mainlines will be drawn thicker. Specify here how many squares between mainlines. - As linhas principais serão representadas de maneira mais destacada. Especifique aqui quantos quadrados deseja entre as linhas principais. + As linhas principais serão representadas mais espessas. Especifique aqui quantos quadrados deseja entre as linhas principais. - + Internal precision level Nível de precisão interno - + Dimensions precision level Nível de precisão das dimensões - + Vertical dimensions text orientation Orientação de texto das dimensões verticais - + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. - Esta é a orientação dos textos das dimensões quando essas são verticais. O padrão é esquerdo, que é o padrão ISO. + Esta é a orientação dos textos das dimensões quando verticais. O padrão é esquerda, que é o norma ISO. - + Left (ISO standard) Esquerda (padrão ISO) - + Right Direito @@ -961,770 +1052,960 @@ Values with differences below this value will be treated as same. Criar objetos paramétricos - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable - Se essa opção estiver marcada, objetos das mesmas camadas serão juntados em blocos, tornando a exibição muito mais rápida, mas tornando-os menos facilmente editáveis + Se selecionado, objetos das mesmas camadas serão reunidos em blocos, para agilizar a exibição, mas dificultando a edição - + Group layers into blocks - Agrupar camadas em blocos + Agrupar camadas nos blocos - + If this is checked, all objects containing faces will be exported as 3d polyfaces - Se essa opção estiver marcada, todos os objetos que contêm faces serão exportados como polyfaces 3d + Se selecionado, todos os objetos contendo faces serão exportados como polifaces 3d - + Export 3D objects as polyface meshes - Exportar objetos 3D como malhas Polyface + Exportar objetos 3D como malhas Polifacetadas + + + + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + Se isto estiver selecionado, a bancada de trabalho não será exibida. Útil, já que todas as ferramentas do projeto também estão na brancada de trabalho Arch. + + + + Hide Draft workbench + Esconder bancada de trabalho + + + + If this is checked, snapping will not occur against objects with more than the indicated number of edges + Se essa opção estiver marcada, o snap não ocorrerá para objetos com número maior de bordas que o indicado + + + + Snap maximum + Snap máximo + + + + Maximum number of edges to be considered for snapping + Número máximo de bordas para snap + + + + Maximum number of edges + Número máximo de bordas + + + + If checked, the Snap toolbar will be shown whenever you use snapping + Se estiver marcada, a barra de ferramentas do Snap será mostrada quando você usa o snap + + + + Show Draft Snap toolbar + Mostrar barra de ferramentas de snap + + + + Hide Draft snap toolbar after use + Esconder a barra coordenadas após o uso + + + + if checked, a widget indicating the current working plane orientation appears during drawing operations + Se estiver selecionado, uma widget indicando o plano de orientação do trabalho atual aparecerá durante as opeações de desenho + + + + Show Working Plane tracker + Exibir planejamento do trabalho + + + + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + Se isto estiver selecionado, a grade do projeto será sempre visível quando a bancada de trabalho estiver ativa. Caso contrário, somente usando um comando + + + + Always show + Exibir sempre + + + + Create Sketches + Criar esboços + + + + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + Se isto estiver selecionado, os textos importados terão o tamanho do texto de rascunho, invés do tamanho que tinham no documento DXF + + + + Use standard font size for texts + Use o tamanho padrão de fonte para textos + + + + If this is checked, hatches will be converted into simple wires + Se isto estiver seleconado, as hachuras serão convertidas em simples fios + + + + Import hatch boundaries as wires + Importar limites de hachuras como fios + + + + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + Se isto estiver selecionado, quando polilinhas tiverem uma largura definida, elas serão renderizadas como fios fechados com a largura correta + + + + Render polylines with width + Renderizar polilinhas com largura + + + + Export Style + Exportar estilo + + + + Style of SVG file to write when exporting a Sketch. + Estilo do arquivo SVG a ser escrito quando exportar um esboço. + + + + Translated (for print & display) + Tradução (para impressão e visualização) + + + + Raw (for CAM) + Raw (para CAM) + + + + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + Quando exportar para SVG, torna pretas todas as linhas de trabalho brancas, para melhor leitura em fundo branco + + + + Translate white line color to black + Traduzir linha de cor branca para preto draft - + active command: comando ativo: - + None Nenhum - + Active Draft command Ação ativa - + X coordinate of next point Coordenada X do ponto seguinte - + X X - + Y Y - + Z Z - + Y coordinate of next point Coordenada Y do ponto seguinte - + Z coordinate of next point Coordenada Z do ponto seguinte - + Radius Raio - + Radius of Circle Raio do círculo - + Coordinates relative to last point or absolute (SPACE) Coordenadas relativas ao último ponto, ou absolutas (SPACE) - + Undo the last segment (CTRL+Z) Desfazer o último segmento (CTRL + Z) - + Finishes and closes the current line (C) Termina e fecha a linha atual (C) - + Offset Offset - + XY XY - + Select XY plane Selecionar plano XY - + XZ XZ - + Select XZ plane Selecionar plano XZ - + YZ YZ - + Select YZ plane Selecionar plano YZ - + View Vista - + Select plane perpendicular to the current view Selecionar plano perpendicular à vista atual - + Do not project points to a drawing plane Não utilizar plano de desenho - + If checked, objects will be copied instead of moved (C) Se estiver selecionada, os objetos serão copiados em vez de movidos (C) - + Line Color Cor de linha - + Face Color Cor de face - + Line Width Espessura de linha - + Font Size Tamanho de fonte - + Apply to selected objects Aplicar aos objetos selecionados - + Toggles Construction Mode Ativar / desativar o modo de construção - + Select Plane Selecionar plano - + Line Linha - + Circle Círculo - + Center X Centro X - + Arc Arco - + Pick Object Selecionar objeto - + draft Command Bar Barra de comando - + Pick a face to define the drawing plane Escolha uma face para definir o plano de trabalho - + Pick first point: Escolha o primeiro ponto - + Pick next point: Escolha o ponto seguinte: - + Pick next point, or (F)inish or (C)lose: Escolha o próximo ponto, ou Finalizar (F) ou Fechar (C): - + Pick opposite point: Escolha o ponto oposto: - + Pick center point: Selecione o centro: - + Pick radius: Indique o raio: - + Pick start angle: Indique o ângulo inicial: - + Pick aperture: Escolhe a abertura: - + Aperture angle: Ângulo de abertura: - + Pick location point: Escolha o ponto de localização: - + Select an object to move Selecione um objeto para mover - + Pick start point: Escolha o ponto de partida - + Pick end point: Escolha um ponto final - + Select an object to rotate Selecione um objeto para rotacionar - + Pick rotation center: Escolha um centro de rotação - + Pick base angle: Escolha um ângulo de base - + Pick rotation angle: Escolha um ângulo de rotação - + Select an object to offset Selecione um objeto para fazer um offset - + Offset only works on one object at a time Offset só funciona em um objeto de cada vez - + Pick distance: Escolha a distância - + Select an object to upgrade Selecione um objeto para promoção - + Select an object to trim/extend Selecione um objeto para diminuir/extender - + Select an object to scale Selecione um objeto para escalar - + Pick base point: Escolha um ponto de base - + Pick scale factor: Escolha um fator de escala - + Number of sides Número de lados - + &Relative &Relativo - + &Undo &Desfazer - + &Close &Fechar - + &Copy &Copiar - + If checked, command will not finish until you press the command button again - Se isto estiver marcada, o comando não terminará até que você pressione o ícone dele novamente + Se selecionado, o comando não terminará até que você pressione o ícone dele novamente - + &Continue &Continuar - - Wire has been closed - - O Arame foi fechado - - - - + Last point has been removed O último ponto foi removido - + Spline has been closed A Spline foi fechada. - + Edges don't intersect! Bordas não se cruzam! - + Cannot offset this object type - Não é possível gerar um offset desse tipo de objeto + Não é possível gerar offset desse tipo de objeto - + Found groups: closing each open object inside - Grupos encontrados: fechando cada objeto aberto no interior + Grupos encontrados: fechando cada objeto aberto incluído - + Found 2 objects: fusing them Encontrados dois objetos: fundindo-os - + Found 1 non-parametric objects: draftifying it - 1 objeto não-paramétrico encontrado: transformando ele em objeto Draft + 1 objeto não-paramétrico encontrado: transformando em objeto Draft - + Found 1 closed sketch object: making a face from it Encontrado 1 esboço fechado: criando uma face - - Found closed wires: making faces - - Arames fechados encontrados: criando faces - - - - + Found 1 open wire: closing it Encontrado 1 arame aberto: fechando - + Found several edges: wiring them - Várias arestas encontradas: criando arame - + Várias arestas encontradas: criando aramado - + Found several non-connected edges: making compound Várias arestas sem ligação encontradas: criando compostos - + Found several non-treatable objects: making compound - Vários objetos não tratáveis encontrados: criando compostos - + Vários objetos não tratáveis encontrados: criando compostos - + Found 1 parametric object: breaking its dependencies - Encontrado um objeto paramétrico: rompendo suas dependências - + Encontrado um objeto parametrizado: eliminando suas dependências - + Found 2 objects: subtracting them - Encontrado 2 objetos: subtraindo-lhes + Encontrado 2 objetos: subtraindo-os - + Found several faces: splitting them - Várias faces encontradas: separando em faces soltas - + Várias faces encontradas: separando em faces isoladas - + Found several objects: subtracting them from the first one - Vários objetos encontrados: subtraindo eles todos do primeiro + Vários objetos encontrados: subtraindo todos eles do primeiro - + Found 1 face: extracting its wires Encontrado 1 face: extraindo seus arames - + Found only wires: extracting their edges Encontrado apenas arames: extraindo suas bordas - + This object type is not editable Este tipo de objeto não é editável - + Active object must have more than two points/nodes O objeto ativo deve ter mais de dois pontos/nós - + Finishes the current drawing or editing operation (F) - Termina a operação atual (F) + Termina a edição ou desenho atual (F) - + Add points to the current object - Adicionar pontos no objeto atual + Adicionar pontos ao objeto atual - + Remove points from the current object Remover pontos do objeto atual - + F&illed - &Preenchido + Preench&ido - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Marque esta opção se o objeto deve aparecer como cheio, caso contrário ele irá aparecer como wireframe (i) - + &Finish &Concluir - + If checked, an OCC-style offset will be performed instead of the classic offset - Se marcado, o offset será feito no modo OCC em vez do modo clássico + Selecionado, o offset será feito no modo OCC em vez do modo clássico - + &OCC-style offset - Modo &OCC + Offset no Modo &OCC - + &Wipe &Limpar - + Wipes the existing segments of this line and starts again from the last point (W) Limpa os segmentos existentes desta linha e começa novamente a partir do último ponto (W) - + Point Ponto - + Distance Distância - + Edit Editar - - Create Wire - Criar arame - - - + Create BSpline - Criar BSpline + Criar Spline-B - + Create Rectangle Criar Retângulo - + Create Circle Criar Círculo - + Create Arc Criar Arco - + Create Polygon Criar Polígono - + Create Text Criar texto - + Create Dimension - Criar Dimension + Criar Dimensão - - Delete Measurement - Excluir medição - - - + Copy - Cópia + Copiar - + Move Mover - + Change Style Alterar estilo - + Rotate Rotacionar - + Found 1 solidificable object: solidifying it Encontrado 1 objeto solidificavel: criando um sólido - + Found several objects or faces: making a parametric face - Vários objetos ou faces encontrados: fazendo uma face paramétrica + Vários objetos ou faces encontrados: construindo uma face paramétrica - + Found objects containing curves: fusing them - Objetos com curvas encontrados: fazendo uma fusão + Objetos com curvas encontrados: fazendo a fusão - + Found several objects: fusing them - Vários objetos encontrados: fazendo uma fusão + Vários objetos encontrados: fazendo a fusão - + Scale Escalar - + Trim Aparar - + Start Angle Ângulo inicial - + Aperture Abertura - + Installed Macros Macros instaladas - - Draft tools - Ferramentas do Draft - - - - Draft - Draft - - - - Display options - Opções de exibição - - - + Wire tools Ferramentas de arame + + + DWire + DWire + + + + Create DWire + Criar DWire + + + + DWire has been closed + + DWire foi fechado + + + + BSpline + BSpline + + + + Rectangle + Retângulo + + + + Polygon + Polígono + + + + Text + Texto + + + + Dimension + Dimensão + + + + No upgrade available for this object + + Nenhuma atualização disponível para este objeto + + + + Couldn't upgrade these objects + + Não foi possível atualizar estes objetos + + + + One wire is not planar, upgrade not done + + Uma das linhas não é plana, atualização não efetuada + + + + Found a closed wire: making a face + + Encontrada uma linha fechada: criando uma superfície + + + + Found 1 open edge: making a line + + Encontrada 1 aresta aberta: criando uma linha + + + + Found 1 circular edge: making a circle + + Encontrada 1 aresta circular: criando um círculo + + + + No more downgrade possible + + Não existem mais retornos possíveis + + + + Draft creation tools + Ferramentas de criação do projeto + + + + Draft modification tools + Ferramentas de modifição do projeto + + + + &Draft + &Projeto + + + + Context tools + Ferramentas de contexto + diff --git a/src/Mod/Draft/Resources/translations/Draft_pt.qm b/src/Mod/Draft/Resources/translations/Draft_pt.qm deleted file mode 100644 index d764fcd7e..000000000 Binary files a/src/Mod/Draft/Resources/translations/Draft_pt.qm and /dev/null differ diff --git a/src/Mod/Draft/Resources/translations/Draft_ro.qm b/src/Mod/Draft/Resources/translations/Draft_ro.qm new file mode 100644 index 000000000..eae995439 Binary files /dev/null and b/src/Mod/Draft/Resources/translations/Draft_ro.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_ro.ts b/src/Mod/Draft/Resources/translations/Draft_ro.ts new file mode 100644 index 000000000..f7abc0e01 --- /dev/null +++ b/src/Mod/Draft/Resources/translations/Draft_ro.ts @@ -0,0 +1,2014 @@ + + + + + Draft_AddPoint + + + Add Point + Adaugă punct + + + + Adds a point to an existing wire/bspline + Adds a point to an existing wire/bspline + + + + Draft_AddToGroup + + + Adds the selected object(s) to an existing group + Adds the selected object(s) to an existing group + + + + Add to group... + Adăugare la grup... + + + + Draft_ApplyStyle + + + Apply Current Style + Aplică stilul curent + + + + Applies current line width and color to selected objects + Aplică lăţimea și culoarea liniei curente pentru obiectele selectate + + + + Draft_Arc + + + Arc + Arc + + + + Creates an arc. CTRL to snap, SHIFT to constrain + Creează un arc de cerc. CTRL pentru ajustare, SHIFT pentru constrângere + + + + Draft_Array + + + Array + Matrice + + + + Creates a polar or rectangular array from a selected object + Creates a polar or rectangular array from a selected object + + + + Draft_BSpline + + + B-Spline + B-Spline + + + + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain + Creează o curba spline multi-punct. CTRL pentru a fixa, SHIFT pentru a restricţiona + + + + Draft_Circle + + + Circle + Cerc + + + + Creates a circle. CTRL to snap, ALT to select tangent objects + Creează un cerc. CTRL pentru ajustare, ALT pentru selectare obiecte tangente + + + + Draft_Clone + + + Clone + Clona + + + + Clones the selected object(s) + Clonează obiectul(ele) selectate + + + + Draft_CloseLine + + + Close Line + Închide linia + + + + Closes the line being drawn + Închide linia în curs de elaborare + + + + Draft_DelPoint + + + Remove Point + Eliminare punct + + + + Removes a point from an existing wire or bspline + Removes a point from an existing wire or bspline + + + + Draft_Dimension + + + Dimension + Dimensiune + + + + Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment + Creează o dimensiune. CTRL pentru ajustare, SHIFT pentru constrângere, ALT pentru selectare segment + + + + Draft_Downgrade + + + Downgrade + Downgrade + + + + Explodes the selected objects into simpler objects, or subtract faces + Explodează obiectele selectate în obiecte simple, sau extrage fețele + + + + Draft_Draft2Sketch + + + Draft to Sketch + Draft to Sketch + + + + Draft_Drawing + + + Drawing + Desen + + + + Puts the selected objects on a Drawing sheet. + Pune obiectele selectate într-o foaie de desen. + + + + Draft_Edit + + + Edit + Editare + + + + Edits the active object + Editează obiectul activ + + + + Draft_FinishLine + + + Finish line + Linia de sosire + + + + Finishes a line without closing it + Termină o linie fără a o închide + + + + Draft_Line + + + Line + Linie + + + + Creates a 2-point line. CTRL to snap, SHIFT to constrain + Creează o linie din 2 puncte. CTRL pentru ajustare, SHIFT pentru constrângere + + + + Draft_Move + + + Move + Mută + + + + Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy + Mută ​​obiectele selectate între 2 puncte. CTRL pentru ajustare, SHIFT pentru constrângere, ALT pentru copiere + + + + Draft_Offset + + + Offset + Compensare + + + + Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy + Compensează obiectul activ. CTRL la ajustare, SHIFT pentru constrângere, ALT pentru a copia + + + + Draft_Point + + + Point + Punct + + + + Creates a point object + Creează un obiect punct + + + + Draft_Polygon + + + Polygon + Poligon + + + + Creates a regular polygon. CTRL to snap, SHIFT to constrain + Creează un poligon regulat. CTRL pentru a fixa, SHIFT pentru a limita + + + + Draft_Rectangle + + + Rectangle + Dreptunghi + + + + Creates a 2-point rectangle. CTRL to snap + Creează un dreptunghi din 2 puncte. CTRL pentru a fixa + + + + Draft_Rotate + + + Rotate + Rotire + + + + Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy + Roteşte obiectele selectate. CTRL pentru ajustare, SHIFT pentru constrângere, ALT crează copie + + + + Draft_Scale + + + Scale + Scalare + + + + Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy + Scalează obiectele selectate de la un punct de bază. CTRL pentru ajustare, SHIFT pentru constrângere, ALT pentru a copia + + + + Draft_SelectGroup + + + Select group + Selectați un grup + + + + Selects all objects with the same parents as this group + Selectează toate obiectele cu aceeaşi părinţii ca acest grup + + + + Draft_SelectPlane + + + SelectPlane + Selecție plan + + + + Select a working plane for geometry creation + Selectare plan de lucru pentru creare obiect geometric + + + + Draft_Shape2DView + + + Shape 2D view + Shape 2D view + + + + Creates Shape 2D views of selected objects + Creates Shape 2D views of selected objects + + + + Convert bidirectionally between Draft and Sketch objects + Convert bidirectionally between Draft and Sketch objects + + + + Draft_ShowSnapBar + + + Show Snap Bar + Show Snap Bar + + + + Shows Draft snap toolbar + Shows Draft snap toolbar + + + + Draft_Text + + + Text + Text + + + + Creates an annotation. CTRL to snap + Creează o notă. CTRL pentru a fixa + + + + Draft_ToggleConstructionMode + + + Toggle construcion Mode + Comutare modul de construcție + + + + Toggles the Construction Mode for next objects. + Comută Modul de Construcţie pentru obiectele următoare. + + + + Draft_ToggleContinueMode + + + Toggle continue Mode + Toggle continue Mode + + + + Toggles the Continue Mode for next commands. + Toggles the Continue Mode for next commands. + + + + Draft_ToggleDisplayMode + + + Toggle display mode + Comutare mod de afişare + + + + Swaps display mode of selected objects between wireframe and flatlines + Schimbă modul de afişare a obiectelor selectate între wireframe şi linii bidimensionale + + + + Draft_ToggleGrid + + + Toggle Grid + Toggle Grid + + + + Toggles the Draft gid on/off + Toggles the Draft gid on/off + + + + Draft_ToggleSnap + + + Toggle snap + Toggle snap + + + + Toggles Draft snap on or off + Toggles Draft snap on or off + + + + Draft_Trimex + + + Trimex + Trimex + + + + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts + + + + Draft_UndoLine + + + Undo last segment + Anulare ultimul segment + + + + Undoes the last drawn segment of the line being drawn + Anulează ultimul segment al liniei în curs de elaborare + + + + Draft_Upgrade + + + Upgrade + Upgrade + + + + Joins the selected objects into one, or converts closed wires to filled faces, or unite faces + Alătură obiectele selectate într-unul singur, sau converteşte firele închise în fețe pline, sau unește fețele + + + + Draft_Wire + + + DWire + DWire + + + + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + + + + Draft_WireToBSpline + + + Wire to BSpline + Wire to BSpline + + + + Converts between Wire and BSpline + Converts between Wire and BSpline + + + + Gui::Dialog::DlgSettingsDraft + + + General Draft Settings + Setări generale proiect + + + + Default color + Culoare implicită + + + + the default color for new objects + culoarea implicită pentru obiecte noi + + + + Default linewidth + lăţimea liniei - implicită + + + + the default linewidth for new objects + Grosimea implicită a liniei pentru obiecte noi + + + + Snap color + Fixează culoarea + + + + the default color for snap symbols + culoarea implicită pentru simbolurile fixate + + + + Construction color + Culoarea de construcţie + + + + This is the default color for objects being drawn while in construction mode. + Aceasta este culoarea implicită pentru obiecte în curs de elaborare în Modul de Construcţie. + + + + This is the default group name for construction geometry + Acesta este numele implicit al grupurilor pentru geometria de construcţie + + + + Construction + Construcţie + + + + check this if you want to use the color/linewidth from the toolbar as default + bifaţi aici dacă doriţi să utilizaţi culoarea/grosimea liniei din bara de instrumente în mod implicit + + + + Save current color and linewidth across sessions + Save current color and linewidth across sessions + + + + If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode + Dacă casuţa este bifată, modul de copiere se păstrează pentru toate comenzile, altfel comenzile vor începe întotdeauna în modul fără copiere + + + + Global copy mode + Modul de copiere global + + + + If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. + Dacă această căsuţă este bifată atunci întodeauna veţi fixa ceea ce desenaţi de obiectele existente. În caz contrar fixarea se va face doar când apăsaţi CRTL. + + + + If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe + Dacă această căsuţă este bifată, obiecte vor apărea umplute implicit. Altfel, ele vor apărea ca obiecte wireframe + + + + Fill objects by default + Umple obiectele implicit + + + + Default working plane + Planul de lucru implicit + + + + None + Niciunul + + + + XY (Top) + XY (sus) + + + + XZ (Front) + XZ (faţă) + + + + YZ (Side) + YZ (lateral) + + + + The number of decimals in internal coordinates operations (for ex. 3 = 0.001) + Numărul de zecimale în operaţiile cu coordonate interne (de ex. 3 = 0,001) + + + + Default text height + Înălţimea implicită a textului + + + + Default height for texts and dimensions + Înălţimea implicită pentru texte şi cote + + + + Default text font + Font-ul implicit al textului + + + + This is the default font name for all Draft texts and dimensions. +It can be a font name such as "Arial", a default style such as "sans", "serif" +or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style +such as "Arial:Bold" + Acesta este numele implicit al fontului pentru toate textele şi dimensiunile din Schiţe. +Acesta poate fi un nume de font cum ar fi "Arial", un stil implicit cum ar fi "sans", "serif" +sau "mono", sau o familie cum ar fi "Arial,Helvetica,sans", sau un nume şi un stil cum ar fi " Arial:Bold " + + + + Arial + Arial + + + + Default template sheet + Foaia şablon implicită + + + + The default template to use when creating a new drawing sheet + Şablonul implicit folosit atunci când creaţi o foaie nouă de desen + + + + Import style + Importă un stil + + + + This is the method choosed for importing or translating DXF object color into FreeCAD. +If color mapping is choosed, you must choose a color mapping file containing a translation table that will convert colors into linewidths. + + Aceasta este metoda aleasă pentru importul sau traducerea unui obiect color DXF în FreeCAD. +Dacă maparea culorilor este aleasă, trebuie să alegeţi un fişier de mapare a culorilor care conţine un tabel de traducere prin care se vor converti culorile în grosimi de linie. + + + + None (fastest) + Nici unul (cel mai rapid) + + + + Use default color and linewidth + Foloseşte culoarea şi grosimea de linie implicită + + + + Original color and linewidth + Culoarea şi grosime de linie originală + + + + Color mapped to linewidth + Culoare mapată în grosime de linie + + + + if this is checked, paper space objects will be imported too + dacă această căsuţă este bifată, vor fi importate şi obiecte spaţiale de hârtie + + + + Import layouts + Importă layout + + + + if this is unchecked, texts/mtexts won't be imported + Dacă această casuţă este debifată, textele/mtexts nu vor fi importate + + + + Color mapping file + Fişier de mapare a culorilor + + + + The color mapping file for translating dxf colors into linewidths + The color mapping file for translating dxf colors into linewidths + + + + Max Spline Segment + Max Spline Segment + + + + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. + + + + This is the method choosed for importing SVG object color into FreeCAD. + This is the method choosed for importing SVG object color into FreeCAD. + + + + Check this if you want the areas (3D faces) to be imported too. + Check this if you want the areas (3D faces) to be imported too. + + + + Import OCA areas + Importă zone OCA + + + + General settings + Setări generale + + + + Construction group name + Construction group name + + + + Tolerance + Toleranţă + + + + This is the value used by functions that use a tolerance. +Values with differences below this value will be treated as same. + Aceasta este valoarea utilizată de funcţii care utilizează o toleranţă. Valorile cu diferenţe mai jos această valoare vor fi tratate ca fiind la fel. + + + + Dimensions & Leader arrow style + Stil săgeată pentru cote şi ghidaje + + + + Dot 5 + Dot 5 + + + + Dot 7 + Dot 7 + + + + Dot 9 + Dot 9 + + + + Circle 5 + Circle 5 + + + + Circle 7 + Circle 7 + + + + Circle 9 + Circle 9 + + + + Slash 5 + Slash 5 + + + + Slash 7 + Slash 7 + + + + Slash 9 + Slash 9 + + + + Backslash 5 + Backslash 5 + + + + Backslash 7 + Backslash 7 + + + + Backslash 9 + Backslash 9 + + + + Import/Export + Import/Export + + + + DXF format options + Opţiuni de formatare DXF + + + + Import texts and dimensions + Importă texte şi cote + + + + Check this if you want the non-named blocks (beginning with a *) to be imported too + Bifaţi dacă doriţi să importaţi şi blocurile fără nume (începând cu o *) + + + + Import *blocks + Importă blocuri * + + + + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... + + + + Join geometry + Reuneşte formele geometrice + + + + SVG format options + Opţiunile de formatare SVG + + + + OCA format options + Opţiunile de formatare OCA + + + + Alternate SVG Patterns location + Alternate SVG Patterns location + + + + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns + + + + Draft interface mode + Draft interface mode + + + + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction + + + + Toolbar + Bara de instrumente + + + + Taskview + Taskview + + + + Constrain mod + Constrain mod + + + + The Constraining modifier key + The Constraining modifier key + + + + shift + shift + + + + ctrl + ctrl + + + + alt + alt + + + + Snap mod + Snap mod + + + + The snap modifier key + The snap modifier key + + + + Alt mod + Alt mod + + + + The alt modifier key + The alt modifier key + + + + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. + În mod normal, după copierea unui obiect, copiile obţinute vor fi selectate. Dacă această opţiune este bifată, obiectele de bază vor fi selectate în schimb. + + + + Select base objects after copying + Selectează obiectele de bază după copiere + + + + Always snap to objects (disable snap mod key) + Always snap to objects (disable snap mod key) + + + + The radius for snapping to special points. Set to 0 for no distance (infinite) + The radius for snapping to special points. Set to 0 for no distance (infinite) + + + + Snap range + Raza de fixare + + + + px + px + + + + If checked, a grid will appear when drawing + Dacă bifaţi căsuţa, o grilă va apărea atunci când desenaţi + + + + Use grid + Utilizează grila + + + + Grid spacing + Spaţierea grilei + + + + The spacing between each grid line + Spaţierea dintre liniile grilei + + + + Main lines every + Linii principale la fiecare + + + + Mainlines will be drawn thicker. Specify here how many squares between mainlines. + Liniile principale vor fi trasate îngroşat. Specificaţi aici cate pătrăţele sunt între liniile principale. + + + + Internal precision level + Nivel de precizie internă + + + + Dimensions precision level + Nivel de precizie pentru dimensiuni + + + + Vertical dimensions text orientation + Orientarea textului pentru cotele verticale + + + + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. + Aceasta este orientarea pentru textele cotelor când acestea sunt verticale. Implicit este la stânga, acesta este şi standardul ISO. + + + + Left (ISO standard) + Stânga (ISO standard) + + + + Right + Right + + + + Create parametric objects + Crează obiecte parametrice + + + + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable + dacă bifaţi căsuţa obiectele de pe acelaşi strat vor fi unite în Blocuri de Schiţe, făcând afişarea lor mai rapidă dar editarea lor ulterioară devine mai complicată + + + + Group layers into blocks + Grupează straturile în blocuri + + + + If this is checked, all objects containing faces will be exported as 3d polyfaces + If this is checked, all objects containing faces will be exported as 3d polyfaces + + + + Export 3D objects as polyface meshes + Export 3D objects as polyface meshes + + + + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + Dacă această căsuţă este bifată, bancul de lucru Schiţe nu va mai apărea. Este util deoarece toate instrumentele pentru Schiţe sunt, de asemenea, prezente şi în bancul de lucru Arch. + + + + Hide Draft workbench + Ascunde bancul de lucru Schiţe + + + + If this is checked, snapping will not occur against objects with more than the indicated number of edges + If this is checked, snapping will not occur against objects with more than the indicated number of edges + + + + Snap maximum + Snap maximum + + + + Maximum number of edges to be considered for snapping + Maximum number of edges to be considered for snapping + + + + Maximum number of edges + Maximum number of edges + + + + If checked, the Snap toolbar will be shown whenever you use snapping + If checked, the Snap toolbar will be shown whenever you use snapping + + + + Show Draft Snap toolbar + Show Draft Snap toolbar + + + + Hide Draft snap toolbar after use + Hide Draft snap toolbar after use + + + + if checked, a widget indicating the current working plane orientation appears during drawing operations + if checked, a widget indicating the current working plane orientation appears during drawing operations + + + + Show Working Plane tracker + Show Working Plane tracker + + + + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + + + + Always show + Always show + + + + Create Sketches + Create Sketches + + + + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + + + + Use standard font size for texts + Utilizaţi dimensiunea standard a fontului pentru texte + + + + If this is checked, hatches will be converted into simple wires + If this is checked, hatches will be converted into simple wires + + + + Import hatch boundaries as wires + Import hatch boundaries as wires + + + + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + + + + Render polylines with width + Render polylines with width + + + + Export Style + Exportaţi stilul + + + + Style of SVG file to write when exporting a Sketch. + Style of SVG file to write when exporting a Sketch. + + + + Translated (for print & display) + Tradus (pentru imprimare & afişare) + + + + Raw (for CAM) + Brut (pentru CAM) + + + + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + + + + Translate white line color to black + Translate white line color to black + + + + draft + + + active command: + Comanda activă: + + + + None + Niciunul + + + + Active Draft command + Comanda activă proiect + + + + X coordinate of next point + Coordonata X a punctului următor + + + + X + X + + + + Y + Y + + + + Z + Z + + + + Y coordinate of next point + Coordonata Y a punctului următor + + + + Z coordinate of next point + Coordonata Z a punctului următor + + + + Radius + Raza + + + + Radius of Circle + Raza cercului + + + + Coordinates relative to last point or absolute (SPACE) + Coordonatele relative la ultimul punct sau absolute (SPAȚIU) + + + + Undo the last segment (CTRL+Z) + Anulare ultimul segment (CTRL + Z) + + + + Finishes and closes the current line (C) + Încheie şi închide linia curentă (C) + + + + Offset + Compensare + + + + XY + XY + + + + Select XY plane + Selectare plan XY + + + + XZ + XZ + + + + Select XZ plane + Selectare plan XZ + + + + YZ + YZ + + + + Select YZ plane + Selectare plan YZ + + + + View + Vizualizare + + + + Select plane perpendicular to the current view + Selectare plan perpendicular pe vizualizarea curentă + + + + Do not project points to a drawing plane + Nu proiectează punctele pe planul desenului + + + + If checked, objects will be copied instead of moved (C) + Dacă este bifată, obiecte vor fi copiate, și nu mutate (C) + + + + Line Color + Culoarea liniei + + + + Face Color + Culoarea feţei + + + + Line Width + Grosimea liniei + + + + Font Size + Dimensiunea font-ului + + + + Apply to selected objects + Se aplică la obiectele selectate + + + + Toggles Construction Mode + Comută în Modul de Construcție + + + + Select Plane + Selectare plan + + + + Line + Linie + + + + Circle + Cerc + + + + Center X + Centrul X + + + + Arc + Arc + + + + Pick Object + Alege obiect + + + + draft Command Bar + Schiță Bara de Comandă + + + + Pick a face to define the drawing plane + + Alege o faţă pentru a defini planul de desenare + + + + Pick first point: + + Alege primul punct: + + + + Pick next point: + + Alege următorul punct: + + + + Pick next point, or (F)inish or (C)lose: + + Alege următorul punct, termină(F) sau închide(C): + + + + Pick opposite point: + + Alege punctul opus: + + + + Pick center point: + + Alege punctul central: + + + + Pick radius: + + Alege raza: + + + + Pick start angle: + + Alege unghiul de start: + + + + Pick aperture: + + Alege deschiderea: + + + + Aperture angle: + + Unghiul de deschidere: + + + + Pick location point: + + Alege punctul locaţiei: + + + + Select an object to move + + Selectează obiectul pentru mutare + + + + Pick start point: + + Alege punctul de start: + + + + Pick end point: + + Alege punctul final: + + + + Select an object to rotate + + Selectează un obiect pentru rotire + + + + Pick rotation center: + + Alege centrul de rotaţie: + + + + Pick base angle: + + Alege unghiul de bază: + + + + Pick rotation angle: + + Alege unghiul de rotaţie: + + + + Select an object to offset + + Selectaţi un obiect pentru compensare + + + + Offset only works on one object at a time + + Compensarea funcţionează doar pe un singur obiect la un moment dat + + + + Pick distance: + + Alege distanța + + + + Select an object to upgrade + + Selectaţi un obiect pentru upgrade + + + + Select an object to trim/extend + + Selectare obiect pentru tăiere/extindere + + + + Select an object to scale + + Selectează un obiect pentru scalare + + + + Pick base point: + + Alege punctul de bază: + + + + Pick scale factor: + + Alege factorului de scalare: + + + + Number of sides + Numărul de laturi + + + + &Relative + &Relativ + + + + &Undo + &Anulare + + + + &Close + &Inchide + + + + &Copy + &Copie + + + + If checked, command will not finish until you press the command button again + Dacă bifaţi casuţa, comanda nu se va termina până când nu apăsaţi butonul de comandă din nou + + + + &Continue + &Continua + + + + Last point has been removed + + Ultimul punct a fost eliminat + + + + Spline has been closed + + Curba Spline a fost închisă + + + + Edges don't intersect! + + Muchiile nu se intersectează! + + + + Cannot offset this object type + + Cannot offset this object type + + + + + Found groups: closing each open object inside + + Found groups: closing each open object inside + + + + + Found 2 objects: fusing them + + Am descoperit 2 obiecte: le unesc + + + + Found 1 non-parametric objects: draftifying it + + Found 1 non-parametric objects: draftifying it + + + + + Found 1 closed sketch object: making a face from it + + Found 1 closed sketch object: making a face from it + + + + + Found 1 open wire: closing it + + Found 1 open wire: closing it + + + + + Found several edges: wiring them + + Found several edges: wiring them + + + + + Found several non-connected edges: making compound + + Found several non-connected edges: making compound + + + + + Found several non-treatable objects: making compound + + Found several non-treatable objects: making compound + + + + + Found 1 parametric object: breaking its dependencies + + Found 1 parametric object: breaking its dependencies + + + + + Found 2 objects: subtracting them + + Found 2 objects: subtracting them + + + + + Found several faces: splitting them + + Found several faces: splitting them + + + + + Found several objects: subtracting them from the first one + + Found several objects: subtracting them from the first one + + + + + Found 1 face: extracting its wires + + Found 1 face: extracting its wires + + + + + Found only wires: extracting their edges + + Found only wires: extracting their edges + + + + + This object type is not editable + + This object type is not editable + + + + + Active object must have more than two points/nodes + + Obiectul activ trebuie să aibă mai mult de două puncte/noduri + + + + Finishes the current drawing or editing operation (F) + Finishes the current drawing or editing operation (F) + + + + Add points to the current object + Adăuga puncte la obiectul curent + + + + Remove points from the current object + Elimina puncte din obiectul curent + + + + F&illed + F&illed + + + + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) + Verifica dacă obiectul ar trebui să apară ca umplut, altfel va apare ca wireframe (i) + + + + &Finish + &Termina + + + + If checked, an OCC-style offset will be performed instead of the classic offset + If checked, an OCC-style offset will be performed instead of the classic offset + + + + &OCC-style offset + &OCC-style offset + + + + &Wipe + &Şterge + + + + Wipes the existing segments of this line and starts again from the last point (W) + Şterge toate segmentele existente ale acestei linii şi reporneşte de la ultimul punct (W) + + + + Point + Punct + + + + Distance + Distance + + + + Edit + Editare + + + + Create BSpline + Creează o BSpline + + + + Create Rectangle + Creează un Dreptunghi + + + + Create Circle + Creează un Cerc + + + + Create Arc + Creează un Arc de cerc + + + + Create Polygon + Creează un Poligon + + + + Create Text + Creează un Text + + + + Create Dimension + Creează Cotă + + + + Copy + Copiere + + + + Move + Mută + + + + Change Style + Modifică stilul + + + + Rotate + Rotire + + + + Found 1 solidificable object: solidifying it + + Found 1 solidificable object: solidifying it + + + + + Found several objects or faces: making a parametric face + + Found several objects or faces: making a parametric face + + + + + Found objects containing curves: fusing them + + Found objects containing curves: fusing them + + + + + Found several objects: fusing them + + Found several objects: fusing them + + + + + Scale + Scalare + + + + Trim + Trim + + + + Start Angle + Start Angle + + + + Aperture + Aperture + + + + Installed Macros + Installed Macros + + + + Wire tools + Wire tools + + + + DWire + DWire + + + + Create DWire + Creează DWire + + + + DWire has been closed + + DWire a fost închis + + + + BSpline + BSpline + + + + Rectangle + Dreptunghi + + + + Polygon + Poligon + + + + Text + Text + + + + Dimension + Dimensiune + + + + No upgrade available for this object + + Nici o îmbunătăţire nu este disponibilă pentru acest obiect + + + + Couldn't upgrade these objects + + Couldn't upgrade these objects + + + + + One wire is not planar, upgrade not done + + One wire is not planar, upgrade not done + + + + + Found a closed wire: making a face + + Found a closed wire: making a face + + + + + Found 1 open edge: making a line + + Found 1 open edge: making a line + + + + + Found 1 circular edge: making a circle + + Found 1 circular edge: making a circle + + + + + No more downgrade possible + + No more downgrade possible + + + + + Draft creation tools + Draft creation tools + + + + Draft modification tools + Draft modification tools + + + + &Draft + &Schiţă + + + + Context tools + Instrumente contextuale + + + diff --git a/src/Mod/Draft/Resources/translations/Draft_ru.qm b/src/Mod/Draft/Resources/translations/Draft_ru.qm index bb955d006..ddfa6f78e 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_ru.qm and b/src/Mod/Draft/Resources/translations/Draft_ru.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_ru.ts b/src/Mod/Draft/Resources/translations/Draft_ru.ts index 200591d44..838321854 100644 --- a/src/Mod/Draft/Resources/translations/Draft_ru.ts +++ b/src/Mod/Draft/Resources/translations/Draft_ru.ts @@ -4,12 +4,12 @@ Draft_AddPoint - + Add Point Добавить точку - + Adds a point to an existing wire/bspline Добавляет точку к существующей Направляющей/B-сплайну @@ -17,25 +17,25 @@ Draft_AddToGroup - + Adds the selected object(s) to an existing group Добавляет выбранный объект(ы) в существующую группу - + Add to group... - Add to group... + Добавить в группу... Draft_ApplyStyle - + Apply Current Style Применить текущий стиль - + Applies current line width and color to selected objects Применить текущую ширину линии и цвет для выделенных объектов @@ -43,25 +43,38 @@ Draft_Arc - + Arc Дуга - + Creates an arc. CTRL to snap, SHIFT to constrain Создать дугу. CTRL для привязки, SHIFT для ограничения + + Draft_Array + + + Array + Array + + + + Creates a polar or rectangular array from a selected object + Creates a polar or rectangular array from a selected object + + Draft_BSpline - + B-Spline B-сплайн - + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain Создает несколько точек В-сплайна. CTRL - привязать, SHIFT - ограничить @@ -69,25 +82,38 @@ Draft_Circle - + Circle Окружность - + Creates a circle. CTRL to snap, ALT to select tangent objects Создать окружность. CTRL для привязки, ALT для выбора касательной + + Draft_Clone + + + Clone + Clone + + + + Clones the selected object(s) + Clones the selected object(s) + + Draft_CloseLine - + Close Line Замкнуть линию - + Closes the line being drawn Закрыть рисуемую линию @@ -95,12 +121,12 @@ Draft_DelPoint - + Remove Point Удалить точку - + Removes a point from an existing wire or bspline Удаляет точки из существующих Направляющих или B-сплайнов @@ -108,12 +134,12 @@ Draft_Dimension - + Dimension Размер - + Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment Создает размер. CTRL для привязки, SHIFT для ограничения, ALT для выбора сегмента @@ -121,25 +147,33 @@ Draft_Downgrade - + Downgrade Перестроить - + Explodes the selected objects into simpler objects, or subtract faces Расчленить выбранные объекты на более простые объекты, или вычесть поверхности + + Draft_Draft2Sketch + + + Draft to Sketch + Draft to Sketch + + Draft_Drawing - + Drawing Рисунок - + Puts the selected objects on a Drawing sheet. Помещает выбранные объекты на лист чертежа. @@ -147,12 +181,12 @@ Draft_Edit - + Edit Правка - + Edits the active object Редактировать активный объект @@ -160,12 +194,12 @@ Draft_FinishLine - + Finish line Закончить линию - + Finishes a line without closing it Закончить линию без ее закрытия @@ -173,12 +207,12 @@ Draft_Line - + Line Линия - + Creates a 2-point line. CTRL to snap, SHIFT to constrain Создает линию по 2-м точкам. Используйте CTRL для привязки, SHIFT для ограничения @@ -186,12 +220,12 @@ Draft_Move - + Move Перемещение - + Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy Перемещает выбранные объекты между 2 точками. CTRL, для привязки, SHIFT, для ограничения, ALT для копирования @@ -199,25 +233,38 @@ Draft_Offset - + Offset Смещение - + Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy Смещения активного объекта.CTRL, для привязки, SHIFT, для ограничения, ALT для копирования + + Draft_Point + + + Point + Точка + + + + Creates a point object + Creates a point object + + Draft_Polygon - + Polygon Многоугольник - + Creates a regular polygon. CTRL to snap, SHIFT to constrain Создает правильный многоугольник. CTRL для задания привязки, SHIFT для задания ограничений @@ -225,12 +272,12 @@ Draft_Rectangle - + Rectangle Прямоугольник - + Creates a 2-point rectangle. CTRL to snap Создать прямоугольник по двум точкам. Клавиша CTRL для привязки @@ -238,12 +285,12 @@ Draft_Rotate - + Rotate Повернуть - + Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy Поворот выделенных объектов. CTRL для привязки, SHIFT, для ограничения, ALT для создания копии @@ -251,12 +298,12 @@ Draft_Scale - + Scale Масштаб - + Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy Масштабирует выбранные объекты из базовой точки. CTRL, для привязки, SHIFT, для ограничения, ALT для копирования @@ -264,12 +311,12 @@ Draft_SelectGroup - + Select group - Select group + Выбрать группу - + Selects all objects with the same parents as this group Selects all objects with the same parents as this group @@ -277,12 +324,12 @@ Draft_SelectPlane - + SelectPlane Выбор плоскости - + Select a working plane for geometry creation Выберите рабочую плоскость для создания геометрии @@ -290,25 +337,43 @@ Draft_Shape2DView - + Shape 2D view - Shape 2D view + 2D вид фигуры - + Creates Shape 2D views of selected objects Creates Shape 2D views of selected objects + + + Convert bidirectionally between Draft and Sketch objects + Convert bidirectionally between Draft and Sketch objects + + + + Draft_ShowSnapBar + + + Show Snap Bar + Show Snap Bar + + + + Shows Draft snap toolbar + Shows Draft snap toolbar + Draft_Text - + Text Текст - + Creates an annotation. CTRL to snap Создать надпись. CTRL для привязки @@ -316,12 +381,12 @@ Draft_ToggleConstructionMode - + Toggle construcion Mode - Переключение режима конструирования + Переключить режим конструирования - + Toggles the Construction Mode for next objects. Переключение режима конструирования для следующих объектов. @@ -329,51 +394,77 @@ Draft_ToggleContinueMode - + Toggle continue Mode - Toggle continue Mode + Переключить режима продления - + Toggles the Continue Mode for next commands. - Toggles the Continue Mode for next commands. + Переключение режима продления для следующей команды. Draft_ToggleDisplayMode - + Toggle display mode Переключить режим отображения - + Swaps display mode of selected objects between wireframe and flatlines Переключает режим отображения выбранных объектов между каркасным и флэтлайновым + + Draft_ToggleGrid + + + Toggle Grid + Переключить сетку + + + + Toggles the Draft gid on/off + Toggles the Draft gid on/off + + + + Draft_ToggleSnap + + + Toggle snap + Переключить привязку + + + + Toggles Draft snap on or off + Toggles Draft snap on or off + + Draft_Trimex - + Trimex Trimex - + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts - Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts + Обрезать удлинить выбранный объект или выдавить одиночную грань. CTRL привязки, SHIFT привязать к текущему сегменту или нормально, ALT инвертировать Draft_UndoLine - + Undo last segment Отменить последний сегмент - + Undoes the last drawn segment of the line being drawn Отмена последнего нарисованного сегмента рисуемой линии @@ -381,12 +472,12 @@ Draft_Upgrade - + Upgrade Обновить - + Joins the selected objects into one, or converts closed wires to filled faces, or unite faces Объединить выбранные объекты в один, или преобразовать замкнутые нааправляющие в скругленные поверхности, или объединить поверхности @@ -394,25 +485,25 @@ Draft_Wire - - Wire - Ломаная + + DWire + DWire - - Creates a multiple-point wire. CTRL to snap, SHIFT to constrain - Создание шлейфов проводов. "CTRL"+"SHIFT" + + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain Draft_WireToBSpline - + Wire to BSpline Направляющая в BSpline - + Converts between Wire and BSpline Преобразование Направляющей в B-сплайн и наоборот @@ -425,137 +516,137 @@ Основные параметры черчения - + Default color Цвет по умолчанию - + the default color for new objects цвет по умолчанию для новых объектов - + Default linewidth Ширина линии по умолчанию - + the default linewidth for new objects толщина линии по умолчанию для новых объектов - + Snap color Цвет кнопки - + the default color for snap symbols цвет по умолчанию для символов привязки - + Construction color Цвет конструкции - + This is the default color for objects being drawn while in construction mode. Цвет по умолчанию для объектов, обрабатываемых в режиме конструктора. - + This is the default group name for construction geometry Имя группы по умолчанию для конструктора геометрии - + Construction Конструктор - + check this if you want to use the color/linewidth from the toolbar as default установите флажок, если вы хотите использовать цвет/толщину линии по умолчанию на панели инструментов - + Save current color and linewidth across sessions Сохранить текущий цвет и толщину линии между сессиями - + If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode Если выбран этот пункт, режим копирования будет применен для поледующих команд, в противном случае выполнение команд всегда будет начинаться без режима копирования - + Global copy mode Глобальный режим копирования - + If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. Если выбран этот пункт, вы всегда будете привязываться к существующим объектам во время рисования. Если нет, вы будете привязываться к к существующим объектам только при нажатой клавише CTRL. - + If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe Если этот параметр выбран, по умолчанию объекты будут отображаться как заполненные. В противном случае они будут появляться как каркас - + Fill objects by default Выполнить заливку объектов по умолчанию - + Default working plane Рабочая плоскость по умолчанию - + None Ничего - + XY (Top) XY (cверху) - + XZ (Front) XZ (спереди) - + YZ (Side) YZ (сбоку) - + The number of decimals in internal coordinates operations (for ex. 3 = 0.001) Количество десятичных знаков во внутренних операциях с координатами (например. 3 = 0,001) - + Default text height Высота текста по умолчанию - + Default height for texts and dimensions Высота текста и размеров по умолчанию - + Default text font Шрифт текста по умолчанию - + This is the default font name for all Draft texts and dimensions. It can be a font name such as "Arial", a default style such as "sans", "serif" or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style @@ -563,22 +654,22 @@ such as "Arial:Bold" Это имя шрифта по умолчанию для всех чертежных текстов и размеров. Это может быть имя шрифта, такок, как «Arial», стиль по умолчанию, такой как «sans», «serif» или «моно» или семейство как "Arial, Helvetica, sans» или имя со стилем, такое, как" Arial:Bold» - + Arial Arial - + Default template sheet Шаблон листа по умолчанию - + The default template to use when creating a new drawing sheet Шаблон по умолчанию, используемый при создании нового листа чертежа - + Import style Импорт стиля @@ -592,17 +683,17 @@ If color mapping is choosed, you must choose a color mapping file containing a t - + None (fastest) Нет (быстрый) - + Use default color and linewidth Использовать цвет и толщину линии по умолчанию - + Original color and linewidth Оригинальный цвет и толщина линии @@ -612,52 +703,52 @@ If color mapping is choosed, you must choose a color mapping file containing a t Цвет, сопоставленный с шириной линии - + if this is checked, paper space objects will be imported too если выбран этот пункт, объекты в пространстве листа будут тоже импортированы - + Import layouts Импорт макетов - + if this is unchecked, texts/mtexts won't be imported если этот пункт не выбран, тексты/мультитексты импортированы не будут - + Color mapping file Файл сопоставления цвета - + The color mapping file for translating dxf colors into linewidths Файл сопоставления цвета для перевода dxf цветов в ширину линии - + Max Spline Segment Максимальный сегмент сплайна - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. При экспорте сплайнов в DXF, они превращаются в полилинии. Это значение максимальной длины для каждого из сегментов полилинии. Если 0, то весь сплайн рассматривается как прямой отрезок. - + This is the method choosed for importing SVG object color into FreeCAD. Это метод выбирается для импорта SVG цвета объекта во FreeCAD. - + Check this if you want the areas (3D faces) to be imported too. Установите этот флажок, если вы хотите также импортировать области (3D грани). - + Import OCA areas Импорт ОСА областей @@ -667,84 +758,84 @@ If color mapping is choosed, you must choose a color mapping file containing a t Общие настройки - + Construction group name Имя проектирующей группы - + Tolerance Точность - + This is the value used by functions that use a tolerance. Values with differences below this value will be treated as same. Это значение используется функциями, которые используют допуск точности. Значения, отклоняющиеся на меньшую величину, будут также приемлемыми. - + Dimensions & Leader arrow style Размеры и привелегии стиля стрелки - + Dot 5 Точка 5 - + Dot 7 Точка 7 - + Dot 9 Точка 9 - + Circle 5 Круг 5 - + Circle 7 Круг 7 - + Circle 9 Круг 9 - + Slash 5 Слэш 5 - + Slash 7 Слэш 7 - + Slash 9 Слэш 9 - + Backslash 5 Обратный слэш 5 - + Backslash 7 Обратный слэш 7 - + Backslash 9 Обратный слэш 9 @@ -759,947 +850,1148 @@ Values with differences below this value will be treated as same. Параметры формата DXF - + Import texts and dimensions Импорт текстов и размеров - + Check this if you want the non-named blocks (beginning with a *) to be imported too Проверьте это, если вы хотите неименованные блоки (начиная с *) для импорта тоже - + Import *blocks Импорт блоков * - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Если отмечено, freecad будет пытаться совмещать совпадающие объекты. Осторожно, это может занять некоторое время ... - + Join geometry Присоединиться к геометрии - + SVG format options Параметры формата SVG - + OCA format options Параметры формата ОСА - + Alternate SVG Patterns location Alternate SVG Patterns location - + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns - Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns + Здесь можно указать каталог, содержащий файлы SVG, содержащие определения <шаблонов>, которые могут быть добавлены в стандартные шаблоны типов штриховок модуля Черчения - + Draft interface mode Draft interface mode - + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction - This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction + Это режим пользовательского интерфейса, в котором будет работать модуль Проект: панели инструментов будут вмещать все параметры проекта на отдельной панели инструментов, в то время как Панель задач будет использовать Панель задач FreeCAD для его взаимодействия с пользователем - + Toolbar - Toolbar + Панель инструментов - + Taskview Taskview - + Constrain mod - Constrain mod + Режим ограничений - + The Constraining modifier key The Constraining modifier key - + shift - shift + Shift - + ctrl - ctrl + Ctrl - + alt - alt + Alt - + Snap mod - Snap mod + Режим привязки - + The snap modifier key The snap modifier key - + Alt mod - Alt mod + Режим alt - + The alt modifier key - The alt modifier key + Клавиша Alt - + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. - Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. + Как правило, после копирования объектов будут выбраны полученные копии. Если установить этот параметр, будут выбираться базовые объекты. - + Select base objects after copying - Select base objects after copying + Выбор базовых объектов после копирования - + Always snap to objects (disable snap mod key) - Always snap to objects (disable snap mod key) + Всегда привязываться к объектам (отключить режим привязки) - + The radius for snapping to special points. Set to 0 for no distance (infinite) - The radius for snapping to special points. Set to 0 for no distance (infinite) + Радиус привязки к специальным точкам. Установите 0 отключения (бесконечный радиус) - + Snap range - Snap range + Привязка диапазона - + px - px + пиксел - + If checked, a grid will appear when drawing - If checked, a grid will appear when drawing + Если флажок установлен, сетка будет отображаться при черчении - + Use grid - Use grid + Использование сетки - + Grid spacing - Grid spacing + Расстояние между линиями сетки - + The spacing between each grid line - The spacing between each grid line + Расстояние между каждой линией сетки - + Main lines every - Main lines every + Основные линии каждые - + Mainlines will be drawn thicker. Specify here how many squares between mainlines. - Mainlines will be drawn thicker. Specify here how many squares between mainlines. + Основные линии рисуются толще. Укажите здесь, сколько квадратов между линиями. - + Internal precision level - Internal precision level + Уровень внутренней точности - + Dimensions precision level - Dimensions precision level + Уровень точности измерения - + Vertical dimensions text orientation - Vertical dimensions text orientation + Вертикальные размеры ориентации текста - + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. - This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. + Это ориентация размерности текстов, когда эти размерности вертикальны. По умолчанию - влево, согласно стандарта ISO. - + Left (ISO standard) - Left (ISO standard) + Влево (стандарт ISO) - + Right - Right + Вправо Create parametric objects - Create parametric objects + Создание параметрических объектов - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable - if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable + Если этот параметр выбран, объекты одного слоя будут объединены в блоки. Это ускорит работу с объектами, но сделает сложнее в редактировании - + Group layers into blocks - Group layers into blocks + Группировать слои в блоки - + If this is checked, all objects containing faces will be exported as 3d polyfaces - If this is checked, all objects containing faces will be exported as 3d polyfaces + Если этот параметр выбран, все объекты, содержащие грани, будут экспортированы как 3d многогранники - + Export 3D objects as polyface meshes - Export 3D objects as polyface meshes + Экспорт 3D объектов как многогранной сетки + + + + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + + + + Hide Draft workbench + Hide Draft workbench + + + + If this is checked, snapping will not occur against objects with more than the indicated number of edges + If this is checked, snapping will not occur against objects with more than the indicated number of edges + + + + Snap maximum + Snap maximum + + + + Maximum number of edges to be considered for snapping + Maximum number of edges to be considered for snapping + + + + Maximum number of edges + Maximum number of edges + + + + If checked, the Snap toolbar will be shown whenever you use snapping + If checked, the Snap toolbar will be shown whenever you use snapping + + + + Show Draft Snap toolbar + Show Draft Snap toolbar + + + + Hide Draft snap toolbar after use + Hide Draft snap toolbar after use + + + + if checked, a widget indicating the current working plane orientation appears during drawing operations + if checked, a widget indicating the current working plane orientation appears during drawing operations + + + + Show Working Plane tracker + Show Working Plane tracker + + + + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + + + + Always show + Always show + + + + Create Sketches + Create Sketches + + + + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + + + + Use standard font size for texts + Use standard font size for texts + + + + If this is checked, hatches will be converted into simple wires + If this is checked, hatches will be converted into simple wires + + + + Import hatch boundaries as wires + Import hatch boundaries as wires + + + + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + + + + Render polylines with width + Render polylines with width + + + + Export Style + Export Style + + + + Style of SVG file to write when exporting a Sketch. + Style of SVG file to write when exporting a Sketch. + + + + Translated (for print & display) + Translated (for print & display) + + + + Raw (for CAM) + Raw (for CAM) + + + + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + + + + Translate white line color to black + Translate white line color to black draft - + active command: Текущая команда: - + None Ничего - + Active Draft command Активная команда черчения - + X coordinate of next point абсцисса следующей точки - + X X - + Y Y - + Z Z - + Y coordinate of next point ордината следующей точки - + Z coordinate of next point - Z координаты следующей точки + аппликата следующей точки - + Radius Радиус - + Radius of Circle Радиус окружности - + Coordinates relative to last point or absolute (SPACE) Координаты относительно последней точки или абсолютные (SPACE) - + Undo the last segment (CTRL+Z) Отменить последний сегмент (Ctrl + Z) - + Finishes and closes the current line (C) Закончить и замкнуть текущую линию (C) - + Offset Смещение - + XY XY - + Select XY plane Выберите плоскость XY - + XZ XZ - + Select XZ plane Выберите плоскость XZ - + YZ YZ - + Select YZ plane Выберите плоскость YZ - + View Вид - + Select plane perpendicular to the current view Выберите плоскость, перпендикулярную текущему виду - + Do not project points to a drawing plane Не проецировать точки на плоскость рисунка - + If checked, objects will be copied instead of moved (C) Если флажок установлен, объекты будут копироваться, а не перемещаться (C) - + Line Color Цвет линии - + Face Color Цвет грани - + Line Width Толщина линии - + Font Size Размер шрифта - + Apply to selected objects Применить к выбранным объектам - + Toggles Construction Mode Переключение режима конструирования - + Select Plane Выберите плоскость - + Line Линия - + Circle Окружность - + Center X Центр X - + Arc Дуга - + Pick Object Выберите объект - + draft Command Bar Панель Команд проекта - + Pick a face to define the drawing plane Укажите грань, чтобы задать плоскость рисования - + Pick first point: Укажите первую точку - + Pick next point: Укажите следующую точку - + Pick next point, or (F)inish or (C)lose: Укажите следующую точку, нажмите (F) для завершения или (C) для отмены - + Pick opposite point: Укажите противоположную точку - + Pick center point: Укажите центральную точку - + Pick radius: Укажите радиус - + Pick start angle: Укажите начальный угол - + Pick aperture: Выберите прицел: - + Aperture angle: Угол прицела: - + Pick location point: Выберите местоположение точки: - + Select an object to move Выберите объект для перемещения - + Pick start point: Укажите начальную точку - + Pick end point: Выберите конечную точку: - + Select an object to rotate Выделите объект для поворота - + Pick rotation center: Выберите центр вращения: - + Pick base angle: Выберите базу угла - + Pick rotation angle: Выберите угол поворота: - + Select an object to offset Выделите объект для смещения - + Offset only works on one object at a time Смещение работает одновременно только на один объект - + Pick distance: Выберите расстояние - + Select an object to upgrade Выбор объекта для обновления - + Select an object to trim/extend Выберите объект для обрезки/продления - + Select an object to scale Выберите объект для масштабирования - + Pick base point: Выбор базовой точки - + Pick scale factor: Выберите коэффициент масштабирования: - + Number of sides Количество сторон - + &Relative &Относительно - + &Undo &Отменить - + &Close &Закрыть - + &Copy &Копировать - + If checked, command will not finish until you press the command button again Если установлен, команда не будет завершена до нажатия кнопки снова - + &Continue Продолжить - - Wire has been closed - - Провод был закрыт - - - + Last point has been removed Последняя точка была удалена - + Spline has been closed Произошло закрытие сплайна - + Edges don't intersect! Ребра не пересекаются! - + Cannot offset this object type Не удается компенсировать этот тип объекта - + Found groups: closing each open object inside Найдены группы: закрытие каждого открытого объекта внутри - + Found 2 objects: fusing them Найдены два объекта: слияю их - + Found 1 non-parametric objects: draftifying it Найден один непараметрический объект: draftifying it - + Found 1 closed sketch object: making a face from it Найден закрытый эскиз объекта: создаю из него лицо - - Found closed wires: making faces - - Найдены закрытые провода: создаю лицо - - - + Found 1 open wire: closing it Найден один открытый провод: закрываю его - + Found several edges: wiring them Найдено несколько ребер: провожу их - + Found several non-connected edges: making compound Найдено несколько несвязных краёв: создаю соединения - + Found several non-treatable objects: making compound Найдено несколько неизлечимых объектов: создаю соединения - + Found 1 parametric object: breaking its dependencies Найден один параметрический объект: уничтожаю его зависимости - + Found 2 objects: subtracting them Найдено 2 объекта: вычитание их - + Found several faces: splitting them Найдено несколько поверхностей: расщепите их - + Found several objects: subtracting them from the first one Найдено несколько объектов: вычитание их из первого - + Found 1 face: extracting its wires Найдена 1 поверхность: извлечение ее направляющих - + Found only wires: extracting their edges Найдены только направляющие: извлечение их кромок - + This object type is not editable Этот тип объекта не редактируется - + Active object must have more than two points/nodes Активный объект должен иметь более двух точек/узлов - + Finishes the current drawing or editing operation (F) - Finishes the current drawing or editing operation (F) + Завершить текущий чертёж или операцию редактирования (F) - + Add points to the current object - Add points to the current object + Добавление точек к текущему объекту - + Remove points from the current object - Remove points from the current object + Удаление точек из текущего объекта - + F&illed Заполненный - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Установить флажок если объект должен отображаться как заполненый, в противном случае он будет отображаться как каркас (i) - + &Finish &Готово - + If checked, an OCC-style offset will be performed instead of the classic offset Если флажок установлен, вместо классического смещения будет выполняться смещение в стиле OCC - + &OCC-style offset Смещение в стиле &OCC - + &Wipe Стереть - + Wipes the existing segments of this line and starts again from the last point (W) Стирает существующие сегменты этой линии и начинает снова с последней точки (W) - + Point Точка - + Distance Расстояние - + Edit Правка - - Create Wire - Создать проволоку - - - + Create BSpline Создать BSpline - + Create Rectangle Создать прямоугольник - + Create Circle Создать круг - + Create Arc Создать дугу - + Create Polygon Создать полигон - + Create Text Создать Текст - + Create Dimension Создать Измерение - - Delete Measurement - Удалить Измерение - - - + Copy Скопировать - + Move Перемещение - + Change Style Изменить Стиль - + Rotate Повернуть - + Found 1 solidificable object: solidifying it - Found 1 solidificable object: solidifying it - + Найден 1 незамкнутый объект: исправляем его - + Found several objects or faces: making a parametric face Найдено несколько объектов или плоскостей: создаётся параметрическая плоскость - + Found objects containing curves: fusing them - Found objects containing curves: fusing them - + Найдены объекты, содержащие кривые: провести их слияние - + Found several objects: fusing them - Found several objects: fusing them - + Найдено несколько объектов: провести их слияние - + Scale Масштаб - + Trim - Trim + Обрезка - + Start Angle - Start Angle + Начальный угол - + Aperture - Aperture + Отверстие - + Installed Macros - Installed Macros + Установленные макросы - - Draft tools - Draft tools - - - - Draft - Draft - - - - Display options - Display options - - - + Wire tools - Wire tools + Проволочные инструменты + + + + DWire + DWire + + + + Create DWire + Create DWire + + + + DWire has been closed + + DWire has been closed + + + + + BSpline + BSpline + + + + Rectangle + Прямоугольник + + + + Polygon + Многоугольник + + + + Text + Текст + + + + Dimension + Размер + + + + No upgrade available for this object + + No upgrade available for this object + + + + + Couldn't upgrade these objects + + Couldn't upgrade these objects + + + + + One wire is not planar, upgrade not done + + One wire is not planar, upgrade not done + + + + + Found a closed wire: making a face + + Found a closed wire: making a face + + + + + Found 1 open edge: making a line + + Found 1 open edge: making a line + + + + + Found 1 circular edge: making a circle + + Found 1 circular edge: making a circle + + + + + No more downgrade possible + + No more downgrade possible + + + + + Draft creation tools + Draft creation tools + + + + Draft modification tools + Draft modification tools + + + + &Draft + &Черчение + + + + Context tools + Контекстные инструменты diff --git a/src/Mod/Draft/Resources/translations/Draft_se.qm b/src/Mod/Draft/Resources/translations/Draft_se.qm deleted file mode 100644 index 9164232d9..000000000 Binary files a/src/Mod/Draft/Resources/translations/Draft_se.qm and /dev/null differ diff --git a/src/Mod/Draft/Resources/translations/Draft_sk.qm b/src/Mod/Draft/Resources/translations/Draft_sk.qm new file mode 100644 index 000000000..3f84f64d2 Binary files /dev/null and b/src/Mod/Draft/Resources/translations/Draft_sk.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_sk.ts b/src/Mod/Draft/Resources/translations/Draft_sk.ts new file mode 100644 index 000000000..0092b0feb --- /dev/null +++ b/src/Mod/Draft/Resources/translations/Draft_sk.ts @@ -0,0 +1,1998 @@ + + + + + Draft_AddPoint + + + Add Point + Pridá bod + + + + Adds a point to an existing wire/bspline + Pridá bod do existujúceho drôtu/bspline + + + + Draft_AddToGroup + + + Adds the selected object(s) to an existing group + Pridá vybraté objekty do existujúcej skupiny + + + + Add to group... + Pridať do skupiny... + + + + Draft_ApplyStyle + + + Apply Current Style + Použi aktuálny štýl + + + + Applies current line width and color to selected objects + Na vybraté objekty použiť aktuálnu hrúbku čiary aj farbu + + + + Draft_Arc + + + Arc + Oblúk + + + + Creates an arc. CTRL to snap, SHIFT to constrain + Vytvorí oblúk. CTRL pre uchopenie, SHIFT pre vynútenie + + + + Draft_Array + + + Array + Array + + + + Creates a polar or rectangular array from a selected object + Creates a polar or rectangular array from a selected object + + + + Draft_BSpline + + + B-Spline + B-vlnovka + + + + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain + Vytvára viac bodovú vlnovku. CTRL pre uchopenie, SHIFT pre vynútenie + + + + Draft_Circle + + + Circle + Kružnica + + + + Creates a circle. CTRL to snap, ALT to select tangent objects + Vytvorí kruh. CTRL pre prichytenie, ALT vyberie tangent + + + + Draft_Clone + + + Clone + Clone + + + + Clones the selected object(s) + Clones the selected object(s) + + + + Draft_CloseLine + + + Close Line + Ukončiť čiaru + + + + Closes the line being drawn + Ukončiť rozpracovanú čiaru + + + + Draft_DelPoint + + + Remove Point + Odstráni bod + + + + Removes a point from an existing wire or bspline + Odstráni bod z existujúceho drôtu alebo bspline + + + + Draft_Dimension + + + Dimension + Kóta + + + + Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment + Vytvorí kótu. CTRL uchopiť, SHIFT obmedziť, ALT vybrať časť + + + + Draft_Downgrade + + + Downgrade + Degradácia + + + + Explodes the selected objects into simpler objects, or subtract faces + Rozloží vybraté objekty na jednoduchšie objekty, alebo odoberie plochy + + + + Draft_Draft2Sketch + + + Draft to Sketch + Draft to Sketch + + + + Draft_Drawing + + + Drawing + Kreslenie + + + + Puts the selected objects on a Drawing sheet. + Umiestní vybraté objekty na výkres. + + + + Draft_Edit + + + Edit + Upraviť + + + + Edits the active object + Upraviť aktívny objekt + + + + Draft_FinishLine + + + Finish line + Dokončiť čiaru + + + + Finishes a line without closing it + Ukončiť čiaru bez jej uzatvorenia + + + + Draft_Line + + + Line + čiara + + + + Creates a 2-point line. CTRL to snap, SHIFT to constrain + Vytvoriť 2-bodovú čiaru. CTRL uchopiť, SHIFT obmedziť + + + + Draft_Move + + + Move + Presunúť + + + + Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy + Presunie vybraté objekty medzi 2 body. CTRL pre prichytenie, SHIFT pre obmedzenie, ALT pre skopírovanie + + + + Draft_Offset + + + Offset + Odsadenie + + + + Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy + Odsadí aktívny objekt. CTRL pre prichytenie, SHIFT pre obmedzenie, ALT pre kopírovanie + + + + Draft_Point + + + Point + Bod + + + + Creates a point object + Creates a point object + + + + Draft_Polygon + + + Polygon + Polygón + + + + Creates a regular polygon. CTRL to snap, SHIFT to constrain + Vytvára pravidelný polygón. CTRL prichytiť, SHIFT obmedziť + + + + Draft_Rectangle + + + Rectangle + Obdĺžnik + + + + Creates a 2-point rectangle. CTRL to snap + Vytvorí 2-bodový obdĺžnik. CTRL pre uchopenie + + + + Draft_Rotate + + + Rotate + Otočiť + + + + Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy + Otočí vybraté objekty. CTRL pre prichytenie, SHIFT pre obmedzenie, ALT vytvorí kópiu + + + + Draft_Scale + + + Scale + Škála, zmena veľkosti + + + + Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy + Zmení veľkosť vybratých objektov zo základného bodu. CTRL pre prichytenie, SHIFT pre obmedzenie, ALT pre kopírovanie + + + + Draft_SelectGroup + + + Select group + Vyberte skupinu + + + + Selects all objects with the same parents as this group + Vyberie všetky objekty s rovnakými rodičmi ako má táto skupina + + + + Draft_SelectPlane + + + SelectPlane + Vybrať rovinu + + + + Select a working plane for geometry creation + Vyberať pracovnú rovinu na vytvorenie geometrie + + + + Draft_Shape2DView + + + Shape 2D view + Tvary 2D + + + + Creates Shape 2D views of selected objects + Vytvorí 2D pohľady vybratých objektov + + + + Convert bidirectionally between Draft and Sketch objects + Convert bidirectionally between Draft and Sketch objects + + + + Draft_ShowSnapBar + + + Show Snap Bar + Show Snap Bar + + + + Shows Draft snap toolbar + Shows Draft snap toolbar + + + + Draft_Text + + + Text + Text + + + + Creates an annotation. CTRL to snap + Vytvorí poznámky. CTRL na prichytenie + + + + Draft_ToggleConstructionMode + + + Toggle construcion Mode + Prepnúť konštrukčný režim + + + + Toggles the Construction Mode for next objects. + Prepnúť režim konštrukcie pre ďalšie objekty. + + + + Draft_ToggleContinueMode + + + Toggle continue Mode + Prepnúť mód pokračovania + + + + Toggles the Continue Mode for next commands. + Prepne mód Pokračovania na ďalšie príkazy. + + + + Draft_ToggleDisplayMode + + + Toggle display mode + Prepnúť režim zobrazenia + + + + Swaps display mode of selected objects between wireframe and flatlines + Prepína režim zobrazenia vybratých objektov medzi drôtovým modelom a plochami + + + + Draft_ToggleGrid + + + Toggle Grid + Toggle Grid + + + + Toggles the Draft gid on/off + Toggles the Draft gid on/off + + + + Draft_ToggleSnap + + + Toggle snap + Toggle snap + + + + Toggles Draft snap on or off + Toggles Draft snap on or off + + + + Draft_Trimex + + + Trimex + Orezať/Rozšíriť + + + + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts + Odreže alebo rozširuje vybraný objekt alebo vysunie jednotlivé plochy. CTRL zachytiť, SHIFT obmedziť na aktuálny alebo na Normálny segment, ALT invertovať + + + + Draft_UndoLine + + + Undo last segment + Vrátiť späť posledný segment + + + + Undoes the last drawn segment of the line being drawn + Vrátiť späť posledný segment rozpracovanej čiary + + + + Draft_Upgrade + + + Upgrade + Aktualizácia + + + + Joins the selected objects into one, or converts closed wires to filled faces, or unite faces + Spojí vybraté objekty alebo konvertuje uzavreté obrysy na plné plochy, alebo zjednotí plochy + + + + Draft_Wire + + + DWire + DWire + + + + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + + + + Draft_WireToBSpline + + + Wire to BSpline + Drôt na BSpline (drážku) + + + + Converts between Wire and BSpline + Konvertuje medzi drôtom a BSpline (drážkovanie) + + + + Gui::Dialog::DlgSettingsDraft + + + General Draft Settings + Všeobecné nastavenie návrhu + + + + Default color + Predvolená farba + + + + the default color for new objects + predvolená farba pre nové objekty + + + + Default linewidth + Predvolená hrúbka čiary + + + + the default linewidth for new objects + východzia šírka čiary pre nové objekty + + + + Snap color + Prichytiť farbu + + + + the default color for snap symbols + Východzia farba pre prichytené symboly + + + + Construction color + Farba konštrukcie + + + + This is the default color for objects being drawn while in construction mode. + Toto je predvolená farba pre kreslené objekty počas počas konštrukčného módu. + + + + This is the default group name for construction geometry + Toto je predvolený názov konštrukčnej geometrie + + + + Construction + Konštrukcia + + + + check this if you want to use the color/linewidth from the toolbar as default + začiarknite, ak chcete použiť farbu/ŠírkuČiary z panela nástrojov ako predvolenú + + + + Save current color and linewidth across sessions + Uložiť aktuálnu farbu a šírku čiary okolo relácie + + + + If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode + Ak je toto začiarknuté, bude uchovaný režim kopírovania, inak budú príkazy spúšťané v móde ne-kopírovať + + + + Global copy mode + Všeobecný mód kopírovania + + + + If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. + Ak je toto začiarknuté, počas kreslenia sa bude vždy prichytávať k existujúcim objektom. Ak nie je, bude sa dať prichytávať stlačením Ctrl. + + + + If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe + Ak je toto začiarknuté,predvolenou farbou objektov bude sivá. V opačnom prípade sa zobrazia ako drôtový model + + + + Fill objects by default + Výplň objektov podľa predvoľby + + + + Default working plane + Predvolená pracovná rovina + + + + None + Žiadny + + + + XY (Top) + XY (hore) + + + + XZ (Front) + XZ (Predok) + + + + YZ (Side) + YZ (Bok) + + + + The number of decimals in internal coordinates operations (for ex. 3 = 0.001) + Počet desatinných miest vnútorných súradníc pri operáciach (napr. 3 = 0,001) + + + + Default text height + Predvolená výška textu + + + + Default height for texts and dimensions + Predvolená výška pre texty a rozmery + + + + Default text font + Predvolený font písma + + + + This is the default font name for all Draft texts and dimensions. +It can be a font name such as "Arial", a default style such as "sans", "serif" +or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style +such as "Arial:Bold" + Toto je predvolený font textov a rozmerov Návrhu. +Môže ním byť názov fontu napr. "Arial" a predvoleným štýlom napr. "sans","serif" +alebo "mono", alebo skupina napr. "Arial,Helvetica,sans" alebo názov a štýl ako +napríklad "Arial:Bold" + + + + Arial + Arial + + + + Default template sheet + Predvolená šablóna listu + + + + The default template to use when creating a new drawing sheet + Predvolená šablóna použitá pri vytvorení nového listu Návrhu + + + + Import style + Importovať štýl + + + + This is the method choosed for importing or translating DXF object color into FreeCAD. +If color mapping is choosed, you must choose a color mapping file containing a translation table that will convert colors into linewidths. + + To je metóda zvolená pre import alebo preklad DXF farby objektu do FreeCAD. Ak je farba mapovania zvolená, musíte zvoliť súbor farby mapovania obsahujúci prekladovú tabuľku, ktorá bude konvertovať farby do šíriekČiar. + + + + None (fastest) + Žiadne (najrýchlejšia) + + + + Use default color and linewidth + Použiť predvolenú farbu a šírkuČiary + + + + Original color and linewidth + Pôvodné farby a šírkaČiary + + + + Color mapped to linewidth + Farby priradené k šírkeČiary + + + + if this is checked, paper space objects will be imported too + ak je začiarknuté, budú importované aj objekty priestoru výkresu + + + + Import layouts + Importovať hladiny + + + + if this is unchecked, texts/mtexts won't be imported + ak nie je začiarknuté, texty/mtexty nebudú importované + + + + Color mapping file + Súbor mapovania farieb + + + + The color mapping file for translating dxf colors into linewidths + Súbor mapovania farieb pre preklad dxf farby do šíriekČiar + + + + Max Spline Segment + Max drážkovanie segmentu + + + + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. + Keď sa exportujú drážky do DXF, tak sú transformované do kriviek. Táto hodnota je max dĺžka každej krivky segmentu. Ak je 0, tak sa s celou drážkou zaobchádza ako s rovným segmentom. + + + + This is the method choosed for importing SVG object color into FreeCAD. + Toto je metóda vybratá pre import SVG objektových farieb do FreeCAD. + + + + Check this if you want the areas (3D faces) to be imported too. + Začiarknite, ak chcete importovať aj oblasti (3D). + + + + Import OCA areas + Importovať OCA oblastí + + + + General settings + Základné nastavenia + + + + Construction group name + Názov Konštrukčnej skupiny + + + + Tolerance + Tolerancia + + + + This is the value used by functions that use a tolerance. +Values with differences below this value will be treated as same. + Toto je hodnota použitá funkciou využívajúcou toleranciu. +Hodnoty s nižším rozdielom ako táto hodnota sa bude zaobchádzať akoby nebol. + + + + Dimensions & Leader arrow style + Rozmery & štýl hrotu šípky + + + + Dot 5 + Bod 5 + + + + Dot 7 + Bod 7 + + + + Dot 9 + Bod 9 + + + + Circle 5 + Kruh 5 + + + + Circle 7 + Kruh 7 + + + + Circle 9 + Kruh 9 + + + + Slash 5 + Lomka 5 + + + + Slash 7 + Lomka 7 + + + + Slash 9 + Lomka 9 + + + + Backslash 5 + Opačná lomka 5 + + + + Backslash 7 + Opačná lomka 7 + + + + Backslash 9 + Opačná lomka 9 + + + + Import/Export + Import/Export + + + + DXF format options + Nastavenia formátu DXF + + + + Import texts and dimensions + Importuj texty a rozmery + + + + Check this if you want the non-named blocks (beginning with a *) to be imported too + Začiarknite, ak chcete aby boli importované aj nepomenované bloky (začínajúce *) + + + + Import *blocks + Import *blokov + + + + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... + Ak je začiarknité, freecad sa pokúsi spojiť zhodné objekty do drôtov. Pozor, môže to chvíľu trvať... + + + + Join geometry + Spojiť geometriu + + + + SVG format options + Nastavenia formátu SVG + + + + OCA format options + Nastavenia formátu OCA + + + + Alternate SVG Patterns location + Alternatívne umiestnenie SVG vzorov + + + + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns + Tu môžete určiť adresár obsahujúci SVG súbory obsahujúce definície <šablóna>, ktoré môžu byť pridané medzi štandardné šrafovacie vzory Návrhu + + + + Draft interface mode + Režim rozhrania Návrhu + + + + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction + Toto je UI režim, v ktorom bude modul Návrhu pracovať: Panel nástrojov premietne všetky nastavenia Návrhu do samostatných Panelov nástrojov dovtedy, pokiaľ bude FreeCAD používať systém Zobrazenia úloh pre všetky užívateľské interakcie + + + + Toolbar + Panel nástrojov + + + + Taskview + Zobrazenie úloh + + + + Constrain mod + Vynucovací mód + + + + The Constraining modifier key + Klávesa vynucovacieho modifikátora + + + + shift + shift + + + + ctrl + ctrl + + + + alt + alt + + + + Snap mod + Prichytávací mód + + + + The snap modifier key + Kláves prichytávacieho modifikátora + + + + Alt mod + ALT mód + + + + The alt modifier key + Klávesa alternatívneho modifikátora + + + + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. + Normálne sú po kopírovaní vybraté kópie. Ak vyberiete túto možnosť, budú namiesto nich vyberané pôvodné objekty. + + + + Select base objects after copying + Po kopírovaní vyberať základné objekty + + + + Always snap to objects (disable snap mod key) + Vždy prichytávať k objektom (zakázať klávesu prichytávania) + + + + The radius for snapping to special points. Set to 0 for no distance (infinite) + Rádius pre prichytenie ku špeciálnym bodom. Nastav 0 pre zrušenie + + + + Snap range + Veľkosť prichytenia + + + + px + px + + + + If checked, a grid will appear when drawing + Ak je začiarknuté, pri kreslení použije mriežku + + + + Use grid + Použiť mriežku + + + + Grid spacing + Rozostup mriežky + + + + The spacing between each grid line + Rozstupy medzi riadkami mriežky + + + + Main lines every + Vždy Hlavné čiary + + + + Mainlines will be drawn thicker. Specify here how many squares between mainlines. + Hlavné čiary budú hrubšie. Určite koľko štvorcov bude medzi hlavnými čiarami. + + + + Internal precision level + Úroveň internej precíznosti + + + + Dimensions precision level + Stupeň precíznosti rozmerov + + + + Vertical dimensions text orientation + Vertikálna orientácia textu rozmerov + + + + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. + Toto je operácia s vertikálnymi textami rozmerov. Štandardne je podľa ISO vľavo. + + + + Left (ISO standard) + Vľavo (ISO štandard) + + + + Right + Vpravo + + + + Create parametric objects + Vytvorí parametrické objekty + + + + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable + Ak je začiarknuté, objekty tej istej úrovne spojí do Návrhových blokov, čím bude zobrazenie rýchlejšie ale ich editácia pomalšia + + + + Group layers into blocks + Zoskupenie úrovní do blokov + + + + If this is checked, all objects containing faces will be exported as 3d polyfaces + Ak je začiarknuté, všetky plochy exportuje do 3D mriežky + + + + Export 3D objects as polyface meshes + Exportuje 3D objekty ako mriežky jednotlivých plôch + + + + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + + + + Hide Draft workbench + Hide Draft workbench + + + + If this is checked, snapping will not occur against objects with more than the indicated number of edges + If this is checked, snapping will not occur against objects with more than the indicated number of edges + + + + Snap maximum + Snap maximum + + + + Maximum number of edges to be considered for snapping + Maximum number of edges to be considered for snapping + + + + Maximum number of edges + Maximum number of edges + + + + If checked, the Snap toolbar will be shown whenever you use snapping + If checked, the Snap toolbar will be shown whenever you use snapping + + + + Show Draft Snap toolbar + Show Draft Snap toolbar + + + + Hide Draft snap toolbar after use + Hide Draft snap toolbar after use + + + + if checked, a widget indicating the current working plane orientation appears during drawing operations + if checked, a widget indicating the current working plane orientation appears during drawing operations + + + + Show Working Plane tracker + Show Working Plane tracker + + + + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + + + + Always show + Always show + + + + Create Sketches + Create Sketches + + + + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + + + + Use standard font size for texts + Use standard font size for texts + + + + If this is checked, hatches will be converted into simple wires + If this is checked, hatches will be converted into simple wires + + + + Import hatch boundaries as wires + Import hatch boundaries as wires + + + + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + + + + Render polylines with width + Render polylines with width + + + + Export Style + Export Style + + + + Style of SVG file to write when exporting a Sketch. + Style of SVG file to write when exporting a Sketch. + + + + Translated (for print & display) + Translated (for print & display) + + + + Raw (for CAM) + Raw (for CAM) + + + + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + + + + Translate white line color to black + Translate white line color to black + + + + draft + + + active command: + aktívny príkaz: + + + + None + Žiadny + + + + Active Draft command + Aktívny príkaz návrhu + + + + X coordinate of next point + X-ová súradnica ďalšieho bodu + + + + X + X + + + + Y + Y + + + + Z + Z + + + + Y coordinate of next point + Y-ová súradnica ďalšieho bodu + + + + Z coordinate of next point + Z-ová súradnica ďalšieho bodu + + + + Radius + Polomer + + + + Radius of Circle + Polomer kruhu + + + + Coordinates relative to last point or absolute (SPACE) + Súradnice vzhľadom na posledný bod alebo absolútny (priestor) + + + + Undo the last segment (CTRL+Z) + Vrátiť späť posledný segment (CTRL + Z) + + + + Finishes and closes the current line (C) + Dokončiť a uzavrieť aktuálnu čiaru (C) + + + + Offset + Odsadenie + + + + XY + XY + + + + Select XY plane + Vybrať rovinu XY + + + + XZ + XZ + + + + Select XZ plane + Vybrať rovinu XZ + + + + YZ + YZ + + + + Select YZ plane + Vybrať rovinu YZ + + + + View + Pohľad + + + + Select plane perpendicular to the current view + Vyberte rovinu kolmú na aktuálny pohľad + + + + Do not project points to a drawing plane + Nepremietať body do kresliacej roviny + + + + If checked, objects will be copied instead of moved (C) + Ak je začiarknuté, objekty nebudú presúvané, ale skopírované (C) + + + + Line Color + Farba čiary + + + + Face Color + Farba predného panelu + + + + Line Width + Hrúbka čiary + + + + Font Size + Veľkosť písma + + + + Apply to selected objects + Aplikovať na vybrané objekty + + + + Toggles Construction Mode + Prepína konštrukčný režim + + + + Select Plane + Vybrať rovinu + + + + Line + čiara + + + + Circle + Kružnica + + + + Center X + Stredové X + + + + Arc + Oblúk + + + + Pick Object + Vybrať objekt + + + + draft Command Bar + návrh príkazovej tabuľky + + + + Pick a face to define the drawing plane + + Vybrať líc na definovanie kresliacej roviny + + + + Pick first point: + + Vyberte prvý bod: + + + + Pick next point: + + Vyberte daľší bod: + + + + Pick next point, or (F)inish or (C)lose: + + Vyberte další bod, alebo (F) pre koniec alebo (C) pro zatvorenie: + + + + Pick opposite point: + + Výber protiľahlého bodu: + + + + Pick center point: + + Výber stredového bodu: + + + + Pick radius: + + Vyberte polomer: + + + + Pick start angle: + + Vyberte počiatočný uhol: + + + + Pick aperture: + + Vybrať otvor: + + + + Aperture angle: + + Uhol otvoru: + + + + Pick location point: + + Vyberte umiestnenie bodu: + + + + Select an object to move + + Vyberte objekt, ktorý chcete presunúť + + + + Pick start point: + + Vyberať východiskový bod: + + + + Pick end point: + + Vyberať koncový bod: + + + + Select an object to rotate + + Vyberte objekt, ktorý chcete otočiť + + + + Pick rotation center: + + Vyberte stred otáčania: + + + + Pick base angle: + + Vyberte základný uhol: + + + + Pick rotation angle: + + Vyberte uhol natočenia: + + + + Select an object to offset + + Vyberte objekt na odsadenie + + + + Offset only works on one object at a time + + Naraz je možné odsadiť len jeden objekt + + + + Pick distance: + + Vyberte vzdialenosť: + + + + Select an object to upgrade + + Vyberte objekt aktualizácie + + + + Select an object to trim/extend + + Vyberte objekt na orezanie/rozšírenie + + + + Select an object to scale + + Vyberte objekt ku zmene veľkosti + + + + Pick base point: + + Vyberte základný bod: + + + + Pick scale factor: + + Vyberte merítko: + + + + Number of sides + Počet strán + + + + &Relative + &Relatívne + + + + &Undo + &Späť + + + + &Close + &Zavrieť + + + + &Copy + &Kopírovať + + + + If checked, command will not finish until you press the command button again + Ak je začiarknuté, príkaz sa neskončí kým znova nestlačíte tlačítko + + + + &Continue + &Pokračovať + + + + Last point has been removed + + Posledný bod bol odstránený + + + + Spline has been closed + + Vlnovka bola uzatvorená + + + + Edges don't intersect! + + Okraje nie sú spojené! + + + + Cannot offset this object type + + Tento typ objektu sa nedá odsadiť + + + + Found groups: closing each open object inside + + Nájdené skupiny: uzatváram v nich každý otvorený objekt + + + + Found 2 objects: fusing them + + Nájdené 2 objekty: zaisťujem ich + + + + Found 1 non-parametric objects: draftifying it + + Nájdený 1 objekt bez parametrov: navrhujem ho + + + + Found 1 closed sketch object: making a face from it + + Nájdený 1 uzatvorený náčrt: vytváram jeho plochy + + + + Found 1 open wire: closing it + + Nájdený 1 otvorený drôt: uzatváram ho + + + + Found several edges: wiring them + + Nájdených niekoľko hrán: pripájam ich + + + + Found several non-connected edges: making compound + + Nájdených niekoľko nepripojených hrán: tvorím väzby + + + + Found several non-treatable objects: making compound + + Nájdených niekoľko nepriradených objektov: tvorím väzby + + + + Found 1 parametric object: breaking its dependencies + + Nájdený 1 parametrický objekt: zastavujem jeho väzby + + + + Found 2 objects: subtracting them + + Nájdené 2 objekty: rozdeľujem ich + + + + Found several faces: splitting them + + Nájdených viacero plôch: rozdeľujem ich + + + + Found several objects: subtracting them from the first one + + Nájdených viacero objektov: rozdeľujem ich od prvého + + + + Found 1 face: extracting its wires + + Nájdená 1 plocha: získavam jeho drôty + + + + Found only wires: extracting their edges + + Nájdene iba drôty: získavam ich okraje + + + + This object type is not editable + + Tento typ objektu sa nedá editovať + + + + Active object must have more than two points/nodes + + Aktívny objekt musí mať viac ako dva body/uzly + + + + Finishes the current drawing or editing operation (F) + Ukončí aktuálne kreslenie alebo editovanie (F) + + + + Add points to the current object + Pridá body do aktuálneho objektu + + + + Remove points from the current object + Odstráni body z aktuálneho objektu + + + + F&illed + V&ýplň + + + + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) + Začiarknite, ak má objekt zobraziť vyplnený, inak sa zobrazí ako drôtový model (i) + + + + &Finish + Hotovo + + + + If checked, an OCC-style offset will be performed instead of the classic offset + Ak je začiarknuté, tak sa namiesto klasického použije OCC štýl odchýlky + + + + &OCC-style offset + &OCC-štýl odchýlky + + + + &Wipe + Zotrieť + + + + Wipes the existing segments of this line and starts again from the last point (W) + Vymaže existujúce segmenty tejto čiary a začne znovu od posledného bodu (W) + + + + Point + Bod + + + + Distance + Vzdialenosť + + + + Edit + Upraviť + + + + Create BSpline + Vytvoriť BSpline + + + + Create Rectangle + Vytvorte obdĺžnik + + + + Create Circle + Vytvoriť kruh + + + + Create Arc + Vytvoriť oblúk + + + + Create Polygon + Vytvoriť mnohouholník + + + + Create Text + Vytvoriť Text + + + + Create Dimension + Vytvoriť rozmer + + + + Copy + Kópia + + + + Move + Presunúť + + + + Change Style + Zmeniť štýl + + + + Rotate + Otočiť + + + + Found 1 solidificable object: solidifying it + + Našiel som 1 upevniteľný objekt: upevňujem ho + + + + Found several objects or faces: making a parametric face + + Nájdených niekoľko objektov alebo plôch: tvorím parametrické plochy + + + + Found objects containing curves: fusing them + + Nájdené objekty obsahujúce krivky: fixujem ich + + + + Found several objects: fusing them + + Nájdených niekoľko objektov: zľučujem ich + + + + Scale + Škála, zmena veľkosti + + + + Trim + Odrezať + + + + Start Angle + Úvodný uhol + + + + Aperture + Clona + + + + Installed Macros + Nainštalované makrá + + + + Wire tools + Drôtové nástroje + + + + DWire + DWire + + + + Create DWire + Create DWire + + + + DWire has been closed + + DWire has been closed + + + + + BSpline + BSpline + + + + Rectangle + Obdĺžnik + + + + Polygon + Polygón + + + + Text + Text + + + + Dimension + Kóta + + + + No upgrade available for this object + + No upgrade available for this object + + + + + Couldn't upgrade these objects + + Couldn't upgrade these objects + + + + + One wire is not planar, upgrade not done + + One wire is not planar, upgrade not done + + + + + Found a closed wire: making a face + + Found a closed wire: making a face + + + + + Found 1 open edge: making a line + + Found 1 open edge: making a line + + + + + Found 1 circular edge: making a circle + + Found 1 circular edge: making a circle + + + + + No more downgrade possible + + No more downgrade possible + + + + + Draft creation tools + Draft creation tools + + + + Draft modification tools + Draft modification tools + + + + &Draft + &Draft + + + + Context tools + Context tools + + + diff --git a/src/Mod/Draft/Resources/translations/Draft_sv-SE.qm b/src/Mod/Draft/Resources/translations/Draft_sv-SE.qm new file mode 100644 index 000000000..1878905d3 Binary files /dev/null and b/src/Mod/Draft/Resources/translations/Draft_sv-SE.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_se.ts b/src/Mod/Draft/Resources/translations/Draft_sv-SE.ts similarity index 62% rename from src/Mod/Draft/Resources/translations/Draft_se.ts rename to src/Mod/Draft/Resources/translations/Draft_sv-SE.ts index ce9a1da2e..c90b8937c 100644 --- a/src/Mod/Draft/Resources/translations/Draft_se.ts +++ b/src/Mod/Draft/Resources/translations/Draft_sv-SE.ts @@ -4,12 +4,12 @@ Draft_AddPoint - + Add Point Lägg till punkt - + Adds a point to an existing wire/bspline Lägger till en punkt i en befintlig tråd/bspline @@ -17,12 +17,12 @@ Draft_AddToGroup - + Adds the selected object(s) to an existing group Lägger till de markerade objekten till en befintlig grupp - + Add to group... Lägg till i grupp ... @@ -30,12 +30,12 @@ Draft_ApplyStyle - + Apply Current Style Tillämpa aktuell stil - + Applies current line width and color to selected objects Applicerar nuvarande linjebredd och -färg till valda objekt @@ -43,25 +43,38 @@ Draft_Arc - + Arc Cirkelbåge - + Creates an arc. CTRL to snap, SHIFT to constrain Skapar en cirkelbåge. CTRL för att snäppa, SKIFT för att begränsa + + Draft_Array + + + Array + Matris + + + + Creates a polar or rectangular array from a selected object + Skapar en polar eller rektangulär matris från ett markerat objekt + + Draft_BSpline - + B-Spline B-spline - + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain Skapar en multi-punkts b-spline. CTRL för att snäppa, SKIFT för att begränsa @@ -69,25 +82,38 @@ Draft_Circle - + Circle Cirkel - + Creates a circle. CTRL to snap, ALT to select tangent objects Skapar en cirkel. CTRL för att snäppa, ALT för att välja tangentobjekt + + Draft_Clone + + + Clone + Klon + + + + Clones the selected object(s) + Klonar valda objekt + + Draft_CloseLine - + Close Line Stäng linje - + Closes the line being drawn Stänger den linje som ritas @@ -95,12 +121,12 @@ Draft_DelPoint - + Remove Point Ta bort punkt - + Removes a point from an existing wire or bspline Tar bort en punkt från en befintlig tråd eller bspline @@ -108,12 +134,12 @@ Draft_Dimension - + Dimension Dimension - + Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment Skapar en dimension. CTRL för att snäppa, SKIFT för att begränsa, ALT för att välja ett segment @@ -121,25 +147,33 @@ Draft_Downgrade - + Downgrade Nedgradera - + Explodes the selected objects into simpler objects, or subtract faces Förändrar de valda objekten till enklare objekt, eller subtraherar ytor + + Draft_Draft2Sketch + + + Draft to Sketch + Rita till skiss + + Draft_Drawing - + Drawing Ritning - + Puts the selected objects on a Drawing sheet. Placerar det valda objektet på ett ritningsark. @@ -147,12 +181,12 @@ Draft_Edit - + Edit Redigera - + Edits the active object Redigerar det aktiva objektet @@ -160,12 +194,12 @@ Draft_FinishLine - + Finish line Avsluta linje - + Finishes a line without closing it Avslutar en linje utan att stänga den @@ -173,12 +207,12 @@ Draft_Line - + Line Linje - + Creates a 2-point line. CTRL to snap, SHIFT to constrain Skapar en 2-punkts linje. CTRL för att snäppa, SKIFT för att begränsa @@ -186,12 +220,12 @@ Draft_Move - + Move Flytta - + Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy Flyttar de valda objekten mellan 2 punkter. CTRL för att snäppa, SKIFT för att begränsa, ALT för att kopiera @@ -199,25 +233,38 @@ Draft_Offset - + Offset Offset - + Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy Skapar en offset till det aktiva objektet. CTRL för att snäppa, SKIFT för att begränsa, ALT för att kopiera + + Draft_Point + + + Point + Punkt + + + + Creates a point object + Skapar ett punktobjekt + + Draft_Polygon - + Polygon Polygon - + Creates a regular polygon. CTRL to snap, SHIFT to constrain Skapar en regelbunden månghörning. CTRL för att snäppa, SKIFT för att begränsa @@ -225,12 +272,12 @@ Draft_Rectangle - + Rectangle Rektangel - + Creates a 2-point rectangle. CTRL to snap Skapar en 2-punkts rektangel. CTRL för att snäppa @@ -238,12 +285,12 @@ Draft_Rotate - + Rotate Rotera - + Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy Roterar de valda objekten. CTRL för att snäppa, SKIFT för att begränsa, ALT skapar en kopia @@ -251,12 +298,12 @@ Draft_Scale - + Scale Skala - + Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy Skalar de valda objekten från en baspunkt.CTRL för att snäppa, SKIFT för att begränsa, ALT för att kopiera @@ -264,12 +311,12 @@ Draft_SelectGroup - + Select group Välj grupp - + Selects all objects with the same parents as this group Markerar alla objekt med samma föräldrar som denna grupp @@ -277,12 +324,12 @@ Draft_SelectPlane - + SelectPlane Välj plan - + Select a working plane for geometry creation Väljer ett arbetsplan för skapande av geometri @@ -290,25 +337,43 @@ Draft_Shape2DView - + Shape 2D view 2D form vy - + Creates Shape 2D views of selected objects Skapar form 2D vyer för markerade objekt + + + Convert bidirectionally between Draft and Sketch objects + Konvertera bidirektionellt mellan ritning och skiss objekt + + + + Draft_ShowSnapBar + + + Show Snap Bar + Visa snäppfält + + + + Shows Draft snap toolbar + Visar snäpp-verktygsfältför ritning + Draft_Text - + Text Text - + Creates an annotation. CTRL to snap Skapar en annotering. CTRL för att snäppa @@ -316,12 +381,12 @@ Draft_ToggleConstructionMode - + Toggle construcion Mode Växla konstruktionsläge - + Toggles the Construction Mode for next objects. Växlar till konstruktionsläge för efterkommande objekt. @@ -329,12 +394,12 @@ Draft_ToggleContinueMode - + Toggle continue Mode Växla fortsättläge - + Toggles the Continue Mode for next commands. Växlar Fortsättläge för nästa kommandon. @@ -342,25 +407,51 @@ Draft_ToggleDisplayMode - + Toggle display mode Växla visningsläge - + Swaps display mode of selected objects between wireframe and flatlines Växlar visningsläget för de valda objekten mellan trådar och platta linjer + + Draft_ToggleGrid + + + Toggle Grid + Växla rutnät + + + + Toggles the Draft gid on/off + Växlar ritningsrutnätet på/av + + + + Draft_ToggleSnap + + + Toggle snap + Växla snäpp + + + + Toggles Draft snap on or off + Växlar ritningssnäpp på eller av + + Draft_Trimex - + Trimex Trimex - + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts Trimmar eller förlänger det markerade objektet eller extruderar enstaka ytor. CTRL snäpper, SKIFT begränsar till nuvarande segment eller till normal, ALT inverterar @@ -368,12 +459,12 @@ Draft_UndoLine - + Undo last segment Ångra sista segmentet - + Undoes the last drawn segment of the line being drawn Ångrar det senast ritade segmentet på den linje som ritas @@ -381,12 +472,12 @@ Draft_Upgrade - + Upgrade Uppgradera - + Joins the selected objects into one, or converts closed wires to filled faces, or unite faces Förenar de valda objekten till ett objekt, eller konverterar stängda linjer till fyllda ytor, eller förenar ytor @@ -394,25 +485,25 @@ Draft_Wire - - Wire - Tråd + + DWire + DWire - - Creates a multiple-point wire. CTRL to snap, SHIFT to constrain - Skapar en multi-punkts tråd. CTRL för att snäppa, SKIFT för att begränsa + + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + Skapar en flerpunkts DraftWire (DWire). CTRL för att snäppa, SKIFT för att begränsa Draft_WireToBSpline - + Wire to BSpline Tråd till BSpline - + Converts between Wire and BSpline Konverterar mellan tråd och BSpline @@ -425,137 +516,137 @@ Allmänna skissinställningar - + Default color Standardfärg - + the default color for new objects standardfärgen för nya objekt - + Default linewidth Standard linjebredd - + the default linewidth for new objects standard linjebredd för nya objekt - + Snap color Snäppfärg - + the default color for snap symbols standardfärg för snäppsymboler - + Construction color Konstruktionsfärg - + This is the default color for objects being drawn while in construction mode. Detta är standardfärgen för objekt som ritats i konstruktionsläget. - + This is the default group name for construction geometry Detta är standardgruppnamnet för konstruktionsgeometri - + Construction Konstruktion - + check this if you want to use the color/linewidth from the toolbar as default Markera detta alternativ om du vill använda färg/linjebredden från verktygsfältet som standard - + Save current color and linewidth across sessions Spara nuvarande färg och linjebredd över sessioner - + If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode Om denna är ikryssad så kommer kopieringsläget att behållas över kommandot, annars kommer kommandon att alltid starta i inte-kopieringsläge - + Global copy mode Globalt kopieringsläge - + If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. Om det här är markerat, så kommer du alltid att snäppa till befintliga föremål medan du ritar. Om inte, så kommer du endast att snäppa när du trycker på CTRL. - + If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe Om denna är ikryssad så kommer objekten att visas som fyllda som standard. Annars kommer de att visas som en tråd - + Fill objects by default Fyll objekt som standard - + Default working plane Standard arbetsplan - + None Inget - + XY (Top) XY (Topp) - + XZ (Front) XZ (Fram) - + YZ (Side) YZ (sida) - + The number of decimals in internal coordinates operations (for ex. 3 = 0.001) Antalet decimaler i interna koordinatoperationer (till exempel 3 = 0,001) - + Default text height Standard texthöjd - + Default height for texts and dimensions Standardhöjd för texter och dimensioner - + Default text font Standard teckensnitt - + This is the default font name for all Draft texts and dimensions. It can be a font name such as "Arial", a default style such as "sans", "serif" or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style @@ -566,22 +657,22 @@ eller "mono", eller en familj som "Arial,Helvetica,sans" eller ett namn med en s som "Arial:Bold" - + Arial Arial - + Default template sheet Standardmall ark - + The default template to use when creating a new drawing sheet Standardmallen som används när du skapar ett nytt ritningsark - + Import style Importera stil @@ -594,17 +685,17 @@ If color mapping is choosed, you must choose a color mapping file containing a t Om färgmappning är valt så måste du välja en färgmappningsfil som innehåller en översättningstabell som konverterar färger till linjebredder - + None (fastest) Ingen (snabbast) - + Use default color and linewidth Använd standardfärg och linjebredd - + Original color and linewidth Original färg och linjebredd @@ -614,52 +705,52 @@ Om färgmappning är valt så måste du välja en färgmappningsfil som innehål Färg som är mappad till linjebredden - + if this is checked, paper space objects will be imported too om denna är ikryssad så kommer pappersrymd objekt att importeras också - + Import layouts Importera layouter - + if this is unchecked, texts/mtexts won't be imported Om detta inte är ikryssad, så kommer texter/mtexts inte importeras - + Color mapping file Färgmappnings fil - + The color mapping file for translating dxf colors into linewidths Färgmappnings fil för översättning av dxf färger till linjebredder - + Max Spline Segment Max Spline Segment - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. Vid export av splines till DXF, så omvandlas de till polylines. Detta värde är den maximala längden för varje polyline segment. Om 0, så behandlas hela splinen som ett rakt segment. - + This is the method choosed for importing SVG object color into FreeCAD. Detta är den valda metoden för import av SVG objektfärger till FreeCAD. - + Check this if you want the areas (3D faces) to be imported too. Kryssa i här om du vill att areorna (3D ytorna) ska importeras också. - + Import OCA areas Importera OCA areor @@ -669,83 +760,83 @@ Om färgmappning är valt så måste du välja en färgmappningsfil som innehål Allmänna inställningar - + Construction group name Konstruktion gruppnamn - + Tolerance Tolerans - + This is the value used by functions that use a tolerance. Values with differences below this value will be treated as same. Detta är det värde som används av funktioner som använder en tolerans. Värden med skillnader under detta värde kommer att behandlas som samma. - + Dimensions & Leader arrow style Mått & ledare Pilformat - + Dot 5 Punkt 5 - + Dot 7 Punkt 7 - + Dot 9 Punkt 9 - + Circle 5 Cirkel 5 - + Circle 7 Cirkel 7 - + Circle 9 Cirkel 9 - + Slash 5 Snedstreck 5 - + Slash 7 Snedstreck 7 - + Slash 9 snedstreck 9 - + Backslash 5 Omvänt snedstreck 5 - + Backslash 7 Omvänt snedstreck 7 - + Backslash 9 Omvänt snedstreck 9 @@ -760,202 +851,202 @@ Values with differences below this value will be treated as same. DXF format alternativ - + Import texts and dimensions Importera texter och dimensioner - + Check this if you want the non-named blocks (beginning with a *) to be imported too Markera här om du vill att icke-namngivna block (börjar med *) ska importeras också - + Import *blocks Importera *block - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... Om markerat, så kommer freecad att försöka förena sammanfallande objekt till trådar. Akta dig, detta kan ta en stund ... - + Join geometry Förena geometri - + SVG format options SVG-format alternativ - + OCA format options OCA formatalternativ - + Alternate SVG Patterns location Alternativ SVG Mönsterplats - + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns Här kan du ange en katalog som innehåller SVG-filer som innehåller <pattern> definitioner som kan läggas till standard tvärsnittsmönstren - + Draft interface mode Gränssnittsläge för skiss - + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction Detta är det gränssnittsläge i vilket skissmodulen kommer att arbeta: Verktygsfält läget kommer att placera alla skiss inställningar i ett separat verktygsfält, medan Aktivitetsfälts läget kommer att använda FreeCAD's uppgiftsvysystem för alla sina användarinteraktioner - + Toolbar Verktygsfält - + Taskview Uppgiftsvy - + Constrain mod Begränsnings mod - + The Constraining modifier key Begränsnings låstangenten - + shift SKIFT - + ctrl CTRL - + alt ALT - + Snap mod Snäpp mod - + The snap modifier key Snäpp låstangenten - + Alt mod Alt mod - + The alt modifier key Alt låstangenten - + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. Efter kopiering av objekt, så blir objekten normalt markerade. Om detta alternativ är markerat, så kommer grundobjekten att markeras istället. - + Select base objects after copying Välj grundobjekt efter kopiering - + Always snap to objects (disable snap mod key) Snäpp alltid till objekt (inaktivera snäpp mod tangent) - + The radius for snapping to special points. Set to 0 for no distance (infinite) Radien för snäppning till specialpunkter. Sätt till 0 för ingen distans (oändligt) - + Snap range Snäppområde - + px px - + If checked, a grid will appear when drawing Om markerat, så kommer ett rutnät att synas under ritning - + Use grid Använd rutnät - + Grid spacing Rutnätsavstånd - + The spacing between each grid line Avståndet mellan varje rutnätslinje - + Main lines every Huvudlinjer varje - + Mainlines will be drawn thicker. Specify here how many squares between mainlines. Huvudlinjer kommer att ritas tjockare. Ange här hur många rutor mellan huvudlinjer. - + Internal precision level Intern precisionsnivå - + Dimensions precision level Precisionsnivå för dimensioner - + Vertical dimensions text orientation Textorientering för vertikala dimensioner - + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. Detta är dimensionstextens placering när dimensionerna är vertikala. Standard är vänster, vilket är ISO standard - + Left (ISO standard) Vänster (ISO standard) - + Right Höger @@ -965,762 +1056,966 @@ Values with differences below this value will be treated as same. Skapa parametriska objekt - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable Om detta är markerat, så kommer objekt från samma lager att förenas till skissblock, vilket ger snabbare skärmuppdatering, men reducerar redigeringsförmågan - + Group layers into blocks Gruppera lager i block - + If this is checked, all objects containing faces will be exported as 3d polyfaces Om detta är markerat, så kommer alla objekt som innehåller ytor att exporteras som 3D-polyfaces - + Export 3D objects as polyface meshes Exportera 3D-objekt som polyface nät + + + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + Om detta är markerat, så visas inte ritarbetsbänken. Användbart eftersom alla ritverktyg även finns i Arch arbetsbänk. + + + + Hide Draft workbench + Göm Ritarbetsbänk + + + + If this is checked, snapping will not occur against objects with more than the indicated number of edges + Om detta är markerat, så kommer snäppning inte att fungera mot objekt med fler än det angivna antalet kanter + + + + Snap maximum + Maximal snäpp + + + + Maximum number of edges to be considered for snapping + Maximala antalet kanter för snäppning + + + + Maximum number of edges + Maximala antalet kanter + + + + If checked, the Snap toolbar will be shown whenever you use snapping + Om markerat så kommer snäppverktygsfältet att visas varje gång du använder snäpp + + + + Show Draft Snap toolbar + Visar snäpp-verktygsfält för ritning + + + + Hide Draft snap toolbar after use + Göm snäpp-verktygsfält för ritning efter användning + + + + if checked, a widget indicating the current working plane orientation appears during drawing operations + om markerat visar en widget det aktuella arbetsplanets orientering under ritningsoperationer + + + + Show Working Plane tracker + Visa arbetsplan tracker + + + + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + Om markerat, så kommer rit rutnätet alltid vara synligt när ritarbetsbänken är aktiv, annars bara när du använder ett kommando + + + + Always show + Visa alltid + + + + Create Sketches + Skapa skisser + + + + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + Om detta är markerat, så kommer importerade texter att få standard ritnings-textstorlek, i stället för den storlek som de har i DXF-dokumentet + + + + Use standard font size for texts + Använd standardteckensnittsstorlek för texter + + + + If this is checked, hatches will be converted into simple wires + If this is checked, hatches will be converted into simple wires + + + + Import hatch boundaries as wires + Import hatch boundaries as wires + + + + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + + + + Render polylines with width + Render polylines with width + + + + Export Style + Export Style + + + + Style of SVG file to write when exporting a Sketch. + Style of SVG file to write when exporting a Sketch. + + + + Translated (for print & display) + Translated (for print & display) + + + + Raw (for CAM) + Raw (for CAM) + + + + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + + + + Translate white line color to black + Translate white line color to black + draft - + active command: Aktivt kommando: - + None Inget - + Active Draft command Aktivt ritkommando - + X coordinate of next point Nästa punkts X koordinat - + X X - + Y Y - + Z Z - + Y coordinate of next point Nästa punkts Y koordinat - + Z coordinate of next point Nästa punkts Z koordinat - + Radius Radie - + Radius of Circle Cirkelradie - + Coordinates relative to last point or absolute (SPACE) Relativa koordinater till sista punkten eller absoluta (MELLANSLAG) - + Undo the last segment (CTRL+Z) Ångra det sista segmentet (CTRL+Z) - + Finishes and closes the current line (C) Avslutar och stänger den pågående linjen (C) - + Offset Offset - + XY XY - + Select XY plane Välj XY plan - + XZ XZ - + Select XZ plane Välj XZ plan - + YZ YZ - + Select YZ plane Välj YZ plan - + View Vy - + Select plane perpendicular to the current view Välj plan vinkelrätt till nuvarande vy - + Do not project points to a drawing plane Projicera inte punkter till ett ritplan - + If checked, objects will be copied instead of moved (C) Om markerad, så kommer objekten att kopieras istället för att flyttas - + Line Color Linjefärg - + Face Color Ytfärg - + Line Width Linjebredd - + Font Size Teckenstorlek - + Apply to selected objects Applicera på valda objekt - + Toggles Construction Mode Växlar konstruktionsläge - + Select Plane Välj plan - + Line Linje - + Circle Cirkel - + Center X X center - + Arc Cirkelbåge - + Pick Object Välj objekt - + draft Command Bar Rit kommandolåda - + Pick a face to define the drawing plane Välj en plan yta för att definiera ritplanet - + Pick first point: Välj första punkten: - + Pick next point: Välj nästa punkt: - + Pick next point, or (F)inish or (C)lose: Välj nästa punkt, eller avsluta(F) eller stäng(C): - + Pick opposite point: Välj motsatt punkt: - + Pick center point: Välj centerpunkt: - + Pick radius: Välj radie: - + Pick start angle: Välj startvinkel: - + Pick aperture: Välj vinkelöppning: - + Aperture angle: Öppningsvinkel: - + Pick location point: Välj placeringspunkt: - + Select an object to move Välj ett objekt att flytta - + Pick start point: Välj startpunkt: - + Pick end point: Välj slutpunkt: - + Select an object to rotate Välj ett objekt att rotera - + Pick rotation center: Välj rotationscentrum: - + Pick base angle: Välj basvinkel: - + Pick rotation angle: Välj rotationsvinkel: - + Select an object to offset Välj ett objekt att skapa en offset till - + Offset only works on one object at a time Offset fungerar endast på ett objekt åt gången - + Pick distance: Välj distans: - + Select an object to upgrade Välj ett objekt att uppgradera - + Select an object to trim/extend Välj ett objekt att trimma/förlänga - + Select an object to scale Välj ett objekt att skala - + Pick base point: Välj baspunkt: - + Pick scale factor: Välj skalfaktor: - + Number of sides Antal sidor - + &Relative &Relativ - + &Undo Ån&gra - + &Close S&täng - + &Copy K&opiera - + If checked, command will not finish until you press the command button again Om markerat, så avslutas inte kommandot förrän du trycker på kommandoknappen igen - + &Continue &Fortsätt - - Wire has been closed - - Tråd har stängts - - - + Last point has been removed Sista punkten har tagits bort - + Spline has been closed Spline har stängts - + Edges don't intersect! Kanterna skär inte varandra! - + Cannot offset this object type Kan inte skapa offset för denna objekttyp - + Found groups: closing each open object inside Hittade grupper: stänger alla öppna objekt inuti dem - + Found 2 objects: fusing them Hittade 2 objekt: förenar dem - + Found 1 non-parametric objects: draftifying it Hittade 1 icke-parametriskt objekt: görs om till skiss - + Found 1 closed sketch object: making a face from it Hittade 1 stängt skissobjekt: gör en yta av det - - Found closed wires: making faces - - Hittade stängda trådar: gör ytor av dem - - - + Found 1 open wire: closing it Hittade 1 öppen tråd: stänger den - + Found several edges: wiring them Hittade flera kanter: gör trådar av dem - + Found several non-connected edges: making compound Hittade flera icke-anslutna kanter: gör sammansatta objekt av dem - + Found several non-treatable objects: making compound Hittade flera icke-behandlingsbara objekt: gör sammansatt objekt av dem - + Found 1 parametric object: breaking its dependencies Hittade 1 parametriskt objekt: bryter dess beroenden - + Found 2 objects: subtracting them Hittade 2 objekt: subtraherar dem - + Found several faces: splitting them Hittade flera ytor: delar dem - + Found several objects: subtracting them from the first one Hittade flera objekt: subtraherar dem från den första - + Found 1 face: extracting its wires Hittade 1 yta: utvinner dess trådar - + Found only wires: extracting their edges Hittade bara trådar: utvinner deras kanter - + This object type is not editable Denna objekttyp kan inte redigeras - + Active object must have more than two points/nodes Aktiva objekt måste ha mer än två punkter/noder - + Finishes the current drawing or editing operation (F) Avslutar den aktuella ritningen eller redigeringsoperationen (F) - + Add points to the current object Lägg till punkter till det aktuella objektet - + Remove points from the current object Ta bort punkter från det aktuella objektet - + F&illed F&ylld - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Markera detta om objektet ska visas som fyllt, annars kommer det att visas som trådmodell (i) - + &Finish &Klart - + If checked, an OCC-style offset will be performed instead of the classic offset Om detta är markerat så kommer en offset i OCC-stil utföras istället för klassisk offset - + &OCC-style offset &OCC-stil offset - + &Wipe &Rensa - + Wipes the existing segments of this line and starts again from the last point (W) Rensar befintliga segment av denna linje och börjar om från den sista punkten (W) - + Point Punkt - + Distance Distans - + Edit Redigera - - Create Wire - Skapa Tråd - - - + Create BSpline Skapa BSpline - + Create Rectangle Skapa rektangel - + Create Circle Skapa Cirkel - + Create Arc Skapa Cirkelbåge - + Create Polygon Skapa Polygon - + Create Text Skapa Text - + Create Dimension Skapa Dimension - - Delete Measurement - Radera Mätning - - - + Copy Kopiera - + Move Flytta - + Change Style Ändra Stil - + Rotate Rotera - + Found 1 solidificable object: solidifying it Hittade 1 solidifierbart objekt: solidifierar det - + Found several objects or faces: making a parametric face Hittade flera objekt eller ytor: gör en parametrisk yta - + Found objects containing curves: fusing them Hittade objekt som innehåller kurvor: förenar dem - + Found several objects: fusing them Hittade flera objekt: förenar dem - + Scale Skala - + Trim - Trim + Trimma - + Start Angle - Start Angle + Startvinkel - + Aperture - Aperture + Öppning - + Installed Macros - Installed Macros + Installerade makron - - Draft tools - Draft tools - - - - Draft - Draft - - - - Display options - Display options - - - + Wire tools - Wire tools + Trådverktyg + + + + DWire + DWire + + + + Create DWire + Create DWire + + + + DWire has been closed + + DWire has been closed + + + + + BSpline + BSpline + + + + Rectangle + Rektangel + + + + Polygon + Polygon + + + + Text + Text + + + + Dimension + Dimension + + + + No upgrade available for this object + + No upgrade available for this object + + + + + Couldn't upgrade these objects + + Couldn't upgrade these objects + + + + + One wire is not planar, upgrade not done + + One wire is not planar, upgrade not done + + + + + Found a closed wire: making a face + + Found a closed wire: making a face + + + + + Found 1 open edge: making a line + + Found 1 open edge: making a line + + + + + Found 1 circular edge: making a circle + + Found 1 circular edge: making a circle + + + + + No more downgrade possible + + No more downgrade possible + + + + + Draft creation tools + Draft creation tools + + + + Draft modification tools + Draft modification tools + + + + &Draft + &Draft + + + + Context tools + Context tools diff --git a/src/Mod/Draft/Resources/translations/Draft_tr.qm b/src/Mod/Draft/Resources/translations/Draft_tr.qm new file mode 100644 index 000000000..c67b3721e Binary files /dev/null and b/src/Mod/Draft/Resources/translations/Draft_tr.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_tr.ts b/src/Mod/Draft/Resources/translations/Draft_tr.ts new file mode 100644 index 000000000..5493aa125 --- /dev/null +++ b/src/Mod/Draft/Resources/translations/Draft_tr.ts @@ -0,0 +1,2009 @@ + + + + + Draft_AddPoint + + + Add Point + Nokta Ekle + + + + Adds a point to an existing wire/bspline + Mevcut bağlantı/bspline'a bir nokta ekler + + + + Draft_AddToGroup + + + Adds the selected object(s) to an existing group + Seçili nesneyi/nesneleri mevcut bir gruba ekler + + + + Add to group... + Add to group... + + + + Draft_ApplyStyle + + + Apply Current Style + Varsayılan çizim şeklini uygula + + + + Applies current line width and color to selected objects + Seçili nesnelere geçerli çizgi genişliğini ve rengini uygular + + + + Draft_Arc + + + Arc + Çember yayı + + + + Creates an arc. CTRL to snap, SHIFT to constrain + Bir çember yayı oluşturur.kilitlemek için CTRL, sınırlamak için SHIFT + + + + Draft_Array + + + Array + Array + + + + Creates a polar or rectangular array from a selected object + Creates a polar or rectangular array from a selected object + + + + Draft_BSpline + + + B-Spline + B-Spline + + + + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain + + + + Draft_Circle + + + Circle + Çember + + + + Creates a circle. CTRL to snap, ALT to select tangent objects + Bir çember oluşturur.kilitlemek için CTRL, sınırlamak için SHIFT + + + + Draft_Clone + + + Clone + Clone + + + + Clones the selected object(s) + Clones the selected object(s) + + + + Draft_CloseLine + + + Close Line + Çizgiyi kapatır + + + + Closes the line being drawn + Çizilen çizgiyi kapatır + + + + Draft_DelPoint + + + Remove Point + Nokta Kaldır + + + + Removes a point from an existing wire or bspline + Mevcut bağlantı veya bspline içinden bir noktayı kaldırır + + + + Draft_Dimension + + + Dimension + Boyut + + + + Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment + Bir boyut oluşturur.kilitlemek için CTRL, sınırlamak için SHIFT, bir segment seçmek için ALT + + + + Draft_Downgrade + + + Downgrade + Önceki sürüme dön + + + + Explodes the selected objects into simpler objects, or subtract faces + Seçili nesneleri daha basit parçacıklara ayrıştırır, veya yüzleri birbirinden çıkarır + + + + Draft_Draft2Sketch + + + Draft to Sketch + Draft to Sketch + + + + Draft_Drawing + + + Drawing + Çizim + + + + Puts the selected objects on a Drawing sheet. + Seçili nesneleri çizim sayfasına koyar. + + + + Draft_Edit + + + Edit + Düzenle + + + + Edits the active object + Etkin nesneyi düzenler + + + + Draft_FinishLine + + + Finish line + Çizgiyi bitir + + + + Finishes a line without closing it + Kapatmadan bir çizgiyi bitirir + + + + Draft_Line + + + Line + Çizgi + + + + Creates a 2-point line. CTRL to snap, SHIFT to constrain + 2-noktalı çizgi oluşturur. kilitlemek için CTRL, sınırlamak için SHIFT + + + + Draft_Move + + + Move + Taşı + + + + Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy + Seçilen nesneleri 2 nokta arasında taşır. kilitlemek için CTRL, kısıtlamak için SHIFT, kopyalamak için ALT + + + + Draft_Offset + + + Offset + Uzaklaşma + + + + Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy + Aktif nesneyi uzaklaştırır. kilitlemek için CTRL, kısıtlamak için SHIFT, kopyalamak için ALT + + + + Draft_Point + + + Point + Nokta + + + + Creates a point object + Creates a point object + + + + Draft_Polygon + + + Polygon + Çokgen + + + + Creates a regular polygon. CTRL to snap, SHIFT to constrain + Sıradan bir çokgen oluşturur. CTRL koparır, SHIFT sınırlar + + + + Draft_Rectangle + + + Rectangle + Dikdörtgen + + + + Creates a 2-point rectangle. CTRL to snap + 2-noktalı bir dikdörtgen oluşturur. kilitlemek için CTRL + + + + Draft_Rotate + + + Rotate + Döndür + + + + Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy + Seçili nesneleri döndürür. kilitlemek için CTRL, kısıtlamak için SHIFT, kopyalamak için ALT + + + + Draft_Scale + + + Scale + Ölçek + + + + Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy + Temel bir noktaya göre seçilen nesneleri ölçekler. CTRL ile koparılabilir, SHIFT ile eksen üzerinde sınırlandırılabilir, ALT ile kopyalanabilir + + + + Draft_SelectGroup + + + Select group + Select group + + + + Selects all objects with the same parents as this group + Selects all objects with the same parents as this group + + + + Draft_SelectPlane + + + SelectPlane + DüzlemSeçin + + + + Select a working plane for geometry creation + Geometri oluşturulması için bir çalışma düzlemi seçin + + + + Draft_Shape2DView + + + Shape 2D view + Shape 2D view + + + + Creates Shape 2D views of selected objects + Creates Shape 2D views of selected objects + + + + Convert bidirectionally between Draft and Sketch objects + Convert bidirectionally between Draft and Sketch objects + + + + Draft_ShowSnapBar + + + Show Snap Bar + Show Snap Bar + + + + Shows Draft snap toolbar + Shows Draft snap toolbar + + + + Draft_Text + + + Text + Metin + + + + Creates an annotation. CTRL to snap + Bir açıklama oluşturur.kilitlemek için CTRL + + + + Draft_ToggleConstructionMode + + + Toggle construcion Mode + İnşa kipini değiştir + + + + Toggles the Construction Mode for next objects. + Sonraki nesneler için inşa kipini değiştirir + + + + Draft_ToggleContinueMode + + + Toggle continue Mode + Toggle continue Mode + + + + Toggles the Continue Mode for next commands. + Toggles the Continue Mode for next commands. + + + + Draft_ToggleDisplayMode + + + Toggle display mode + Görüntüleme modunu değiştir + + + + Swaps display mode of selected objects between wireframe and flatlines + Seçili nesneler, ağkafes ve düzgüçizgiler arasında değişimini sağlar. + + + + Draft_ToggleGrid + + + Toggle Grid + Toggle Grid + + + + Toggles the Draft gid on/off + Toggles the Draft gid on/off + + + + Draft_ToggleSnap + + + Toggle snap + Toggle snap + + + + Toggles Draft snap on or off + Toggles Draft snap on or off + + + + Draft_Trimex + + + Trimex + Trimex + + + + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts + + + + Draft_UndoLine + + + Undo last segment + Son segmenti geri alır + + + + Undoes the last drawn segment of the line being drawn + Çizilen çizginin son çizilen segmentini geri alır + + + + Draft_Upgrade + + + Upgrade + Güncelle + + + + Joins the selected objects into one, or converts closed wires to filled faces, or unite faces + Seçili parçaları tek hale getirir, veya uç uca bağlanmış vektörler birleştirip içi doldurulmuş bir yüz haline getirir, veya yüzleri birleştirir + + + + Draft_Wire + + + DWire + DWire + + + + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + + + + Draft_WireToBSpline + + + Wire to BSpline + BSpline'a bağla + + + + Converts between Wire and BSpline + Tel ve BSpline arasında dönüştürür + + + + Gui::Dialog::DlgSettingsDraft + + + General Draft Settings + Genel Çizim Ayarları + + + + Default color + varsayılan renk + + + + the default color for new objects + yeni nesneler için varsayılan renk + + + + Default linewidth + Varsayılan Çizgikalınlığı + + + + the default linewidth for new objects + yeni nesneler için varsayılan çizgi kalınlığı + + + + Snap color + Snap renk + + + + the default color for snap symbols + Koparma simgesi için varsayılan renk + + + + Construction color + İnşa rengi + + + + This is the default color for objects being drawn while in construction mode. + Bu, inşa kipinde çizine nesneler için varsayılan renktir. + + + + This is the default group name for construction geometry + Bu, inşa geometrisi için varsayılan grup adıdır. + + + + Construction + İnşaat + + + + check this if you want to use the color/linewidth from the toolbar as default + Araç çubuğun içerisinden varsayılan olarak renk/çizgi kalınlığını kullanmak için bunu işaretleyin + + + + Save current color and linewidth across sessions + Oturumlar arası kullanım için mevcut rengi ve çizgi kalınlığını sakla + + + + If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode + Eğer bu işaretli ise, kopyalama kipi, uçbirimler arasında kullanılabilir olacaktır, aksi durumda uçbirimler her zaman kopyalanamaz kipte başlayacaktır + + + + Global copy mode + Genel kopyalama kipi + + + + If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. + Eğer bu işaretli ise, siz, çizim sırasında her zaman var olan nesneye kilitleneceksiniz. Aksi durumda, sadece CTRL'e bastığınızda kilitlenme gerçekleşecektir. + + + + If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe + Eğer bu işaretli ise, nesneler varsayılan olarak doldurulmuş şekilde görünecekler. Aksi durumda, çerçeve şeklinde görünecekler + + + + Fill objects by default + Varsayılan olarak nesneleri doldur + + + + Default working plane + Varsayılan çalışma düzlemi + + + + None + Hiçbiri + + + + XY (Top) + XY (Üst) + + + + XZ (Front) + XZ (Ön) + + + + YZ (Side) + YZ (tarafı) + + + + The number of decimals in internal coordinates operations (for ex. 3 = 0.001) + Dahili koordinat işlemlerinde ondalıkların sayısı (Örneğin 3 için 0.001) + + + + Default text height + Varsayılan yazı yüksekliği + + + + Default height for texts and dimensions + Yazılar ve boyutlar için varsayılan yükseklik + + + + Default text font + Varsayılan metin yazı tipi + + + + This is the default font name for all Draft texts and dimensions. +It can be a font name such as "Arial", a default style such as "sans", "serif" +or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style +such as "Arial:Bold" + Bu, mevcut taslak metinler ve boyutlar için varsayılan yazı tipi adıdır. +Bu değer, "Arial", varsayılan stiller "sans", "serif" veya "mono", veya aile adı olarak "Arial,Helvetica,sans", veya stil ile herhangi bir ad "Arial:Bold" gibi yazı tipi değerleri alabilir. + + + + Arial + Arial + + + + Default template sheet + Varsayılan şablon sayfası + + + + The default template to use when creating a new drawing sheet + Yeni bir çizim sayfası oluştururken varsayılan taslağı kullan + + + + Import style + Çizim şeklini içeri aktar + + + + This is the method choosed for importing or translating DXF object color into FreeCAD. +If color mapping is choosed, you must choose a color mapping file containing a translation table that will convert colors into linewidths. + + Bu, DXF renkli nesnesini FreeCAD'e aktarırken veya dönüştürürken kullanılan yöntemdir. Eğer renk eşleştirilmesi seçiliyse, Renkleri çizgi kalınlığına çevirecek dönüşüm tablosu içeren bir renk eşleştirme dosyası seçmeniz gerekmektedir. + + + + None (fastest) + Hiçbiri (en hızlısı) + + + + Use default color and linewidth + Varsayılan renk ve çizgi kalınlığı kullanın. + + + + Original color and linewidth + Öz renk ve çizgi kalınlığını kullan + + + + Color mapped to linewidth + Çizgi kalınlığına eşleştirilmiş renk + + + + if this is checked, paper space objects will be imported too + Eğer bu işaretliyse, sayfa uzay nesnesi de içeri aktarılacaktır + + + + Import layouts + Planı/Taslak çizimi içeri aktar + + + + if this is unchecked, texts/mtexts won't be imported + Eğer bu işaretli değilse, metinler(texts)/mmetinler(mtexts) içeri aktarılmayacaktır + + + + Color mapping file + Renk eşleme dosyası + + + + The color mapping file for translating dxf colors into linewidths + dxf renklerini çizgi kalınlıklarına çevirmek için renk eşleme dosyası + + + + Max Spline Segment + En büyük Dilim Kesiti + + + + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. + Dilimleri DXF'e aktarırken, Dilimler çokludoğrulara dönüşürler. Bu değer her bir çokludoğru bölümü için en büyük uzunluktur.. Eğer sıfırsa, bütün dilime tek bir bölüm gibi davranılmıştır. + + + + This is the method choosed for importing SVG object color into FreeCAD. + Bu, SVG renkli nesnesini FreeCAD'e aktarmak için seçili yöntemdir. + + + + Check this if you want the areas (3D faces) to be imported too. + Eğer alanlarında (3B yüzeylerin de) içeri aktarılmasını istiyorsanız, bunu işaretleyin. + + + + Import OCA areas + OCA alanlarını içeri aktar + + + + General settings + Genel ayarlar + + + + Construction group name + Yapı grup adı + + + + Tolerance + Tolerans + + + + This is the value used by functions that use a tolerance. +Values with differences below this value will be treated as same. + Bu bir tolerans kullanan işlevler tarafından kullanılan değerdir. Bu değerin altında farklılıkları olan değerler aynı olarak kabul edilecektir. + + + + Dimensions & Leader arrow style + Boyutlandırma ve Lider ok stili + + + + Dot 5 + Nokta 5 + + + + Dot 7 + Nokta 7 + + + + Dot 9 + Nokta 9 + + + + Circle 5 + Daire 5 + + + + Circle 7 + Daire 7 + + + + Circle 9 + Daire 9 + + + + Slash 5 + Bölü 5 + + + + Slash 7 + Bölü 7 + + + + Slash 9 + Bölü 9 + + + + Backslash 5 + Tersbölü 5 + + + + Backslash 7 + Tersbölü 7 + + + + Backslash 9 + Tersbölü 9 + + + + Import/Export + İçeri al/Dışarı ver + + + + DXF format options + DXF biçimi seçenekleri + + + + Import texts and dimensions + Metinleri ve boyutlandırmaları içeri al + + + + Check this if you want the non-named blocks (beginning with a *) to be imported too + Eğer isimlendirilmemiş blokları istiyorsanız, bunu işaretleyin + + + + Import *blocks + *blokları içeri al + + + + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... + Bu onay kutusu işaretliyse, freecad çakışan nesneleri tel olarak birleştirmeyi deneyecek. Dikkat edin, bu biraz zaman alabilir... + + + + Join geometry + Geometriyi birleştir + + + + SVG format options + SVG biçim seçenekleri + + + + OCA format options + OCA biçim seçenekleri + + + + Alternate SVG Patterns location + Alternate SVG Patterns location + + + + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns + + + + Draft interface mode + Draft interface mode + + + + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction + + + + Toolbar + Toolbar + + + + Taskview + Taskview + + + + Constrain mod + Constrain mod + + + + The Constraining modifier key + The Constraining modifier key + + + + shift + shift + + + + ctrl + ctrl + + + + alt + alt + + + + Snap mod + Snap mod + + + + The snap modifier key + The snap modifier key + + + + Alt mod + Alt mod + + + + The alt modifier key + The alt modifier key + + + + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. + + + + Select base objects after copying + Select base objects after copying + + + + Always snap to objects (disable snap mod key) + Always snap to objects (disable snap mod key) + + + + The radius for snapping to special points. Set to 0 for no distance (infinite) + The radius for snapping to special points. Set to 0 for no distance (infinite) + + + + Snap range + Snap range + + + + px + px + + + + If checked, a grid will appear when drawing + If checked, a grid will appear when drawing + + + + Use grid + Use grid + + + + Grid spacing + Grid spacing + + + + The spacing between each grid line + The spacing between each grid line + + + + Main lines every + Main lines every + + + + Mainlines will be drawn thicker. Specify here how many squares between mainlines. + Mainlines will be drawn thicker. Specify here how many squares between mainlines. + + + + Internal precision level + Internal precision level + + + + Dimensions precision level + Dimensions precision level + + + + Vertical dimensions text orientation + Vertical dimensions text orientation + + + + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. + + + + Left (ISO standard) + Left (ISO standard) + + + + Right + Sağ + + + + Create parametric objects + Create parametric objects + + + + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable + + + + Group layers into blocks + Group layers into blocks + + + + If this is checked, all objects containing faces will be exported as 3d polyfaces + If this is checked, all objects containing faces will be exported as 3d polyfaces + + + + Export 3D objects as polyface meshes + Export 3D objects as polyface meshes + + + + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + + + + Hide Draft workbench + Hide Draft workbench + + + + If this is checked, snapping will not occur against objects with more than the indicated number of edges + If this is checked, snapping will not occur against objects with more than the indicated number of edges + + + + Snap maximum + Snap maximum + + + + Maximum number of edges to be considered for snapping + Maximum number of edges to be considered for snapping + + + + Maximum number of edges + Maximum number of edges + + + + If checked, the Snap toolbar will be shown whenever you use snapping + If checked, the Snap toolbar will be shown whenever you use snapping + + + + Show Draft Snap toolbar + Show Draft Snap toolbar + + + + Hide Draft snap toolbar after use + Hide Draft snap toolbar after use + + + + if checked, a widget indicating the current working plane orientation appears during drawing operations + if checked, a widget indicating the current working plane orientation appears during drawing operations + + + + Show Working Plane tracker + Show Working Plane tracker + + + + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + + + + Always show + Always show + + + + Create Sketches + Create Sketches + + + + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + + + + Use standard font size for texts + Use standard font size for texts + + + + If this is checked, hatches will be converted into simple wires + If this is checked, hatches will be converted into simple wires + + + + Import hatch boundaries as wires + Import hatch boundaries as wires + + + + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + + + + Render polylines with width + Render polylines with width + + + + Export Style + Export Style + + + + Style of SVG file to write when exporting a Sketch. + Style of SVG file to write when exporting a Sketch. + + + + Translated (for print & display) + Translated (for print & display) + + + + Raw (for CAM) + Raw (for CAM) + + + + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + + + + Translate white line color to black + Translate white line color to black + + + + draft + + + active command: + Etkin söz dizisi: + + + + None + Hiçbiri + + + + Active Draft command + Aktif Çizim komutu + + + + X coordinate of next point + birsonraki noktanın X koordinatı + + + + X + X + + + + Y + Y + + + + Z + Z + + + + Y coordinate of next point + birsonraki noktanın Y koordinatı + + + + Z coordinate of next point + birsonraki noktanın Z koordinatı + + + + Radius + Yarıçap + + + + Radius of Circle + Çemberin Yarıçapı + + + + Coordinates relative to last point or absolute (SPACE) + Mutlak ya da son noktaya göre koordinatlar.(SPACE tuşu) + + + + Undo the last segment (CTRL+Z) + Son segmenti geri al (CTRL+Z) + + + + Finishes and closes the current line (C) + Sonlandırır ve geçerli çizgiyi kapatır (C) + + + + Offset + Uzaklaşma + + + + XY + XY + + + + Select XY plane + XY düzlemini seçin + + + + XZ + XZ + + + + Select XZ plane + XZ düzlemini seçin + + + + YZ + YZ + + + + Select YZ plane + YZ düzlemini seçin + + + + View + Görünüm + + + + Select plane perpendicular to the current view + Geçerli görünüşe dik düzlemi seçin + + + + Do not project points to a drawing plane + Çizim düzlemine noktaların izdüşümünü almayın + + + + If checked, objects will be copied instead of moved (C) + Bu onay kutusu işaretliyse, nesneler taşıma değil kopyalama yapılır (C) + + + + Line Color + Çizgi rengi + + + + Face Color + Yüz rengi + + + + Line Width + Çizgi genişliği + + + + Font Size + Yazı tipi boyutu + + + + Apply to selected objects + Seçili nesnelere uygulayın + + + + Toggles Construction Mode + Konstrüksiyon duna geçer + + + + Select Plane + Düzlemi seçin + + + + Line + Çizgi + + + + Circle + Çember + + + + Center X + Merkez X + + + + Arc + Çember yayı + + + + Pick Object + Nesne Seç + + + + draft Command Bar + Taslak komut çubuğu + + + + Pick a face to define the drawing plane + + Çizim düzlemini tanımlamak için bir yüz seçin + + + + Pick first point: + + Birinci noktayı seçin + + + + Pick next point: + + Bir sonraki noktayı seçin + + + + Pick next point, or (F)inish or (C)lose: + + Bir sonraki noktayı seçin, ya da (F)Bitir ya da (C)Kapat + + + + Pick opposite point: + + Karşıt noktayı seçin + + + + Pick center point: + + Merkez noktasını seçin + + + + Pick radius: + + Yarıçapı seçin + + + + Pick start angle: + + Başlangıç açısını seçin + + + + Pick aperture: + + Aralık seç + + + + Aperture angle: + + Aralık açısı: + + + + Pick location point: + + Konum noktasını seçin + + + + Select an object to move + + Taşımak için bir nesne seçin + + + + Pick start point: + + Başlangıç noktasını seçin: + + + + Pick end point: + + Bitiş noktasını seçin: + + + + Select an object to rotate + + Döndürmek için bir nesne seçin + + + + Pick rotation center: + + Döndürme merkezini seçin: + + + + Pick base angle: + + Taban açısını seçin: + + + + Pick rotation angle: + + Döndürme açısını seçin: + + + + Select an object to offset + + Uzaklaştırmak için bir nesne seçin + + + + Offset only works on one object at a time + + Uzaklaştırma bir kerede sadece bir nesne üzerinde çalışır + + + + Pick distance: + + Mesafeyi seçin: + + + + Select an object to upgrade + + Yükseltmek için bir nesne seçin + + + + Select an object to trim/extend + + Seçili nesneyi düzenle/genişlet + + + + Select an object to scale + + Ölçeklemek için bir nesne seçin + + + + Pick base point: + + Temel noktayı seçin: + + + + Pick scale factor: + + Ölçekleme katsayısını seçin: + + + + Number of sides + Yüzlerin sayısı + + + + &Relative + &Göreli + + + + &Undo + Gerial + + + + &Close + Kapat + + + + &Copy + &amp; Kopyala + + + + If checked, command will not finish until you press the command button again + If checked, command will not finish until you press the command button again + + + + &Continue + &amp; Devam + + + + Last point has been removed + + Last point has been removed + + + + + Spline has been closed + + Spline has been closed + + + + + Edges don't intersect! + + Kenarlar kesişmiyor! + + + + Cannot offset this object type + + Cannot offset this object type + + + + + Found groups: closing each open object inside + + Found groups: closing each open object inside + + + + + Found 2 objects: fusing them + + Found 2 objects: fusing them + + + + + Found 1 non-parametric objects: draftifying it + + Found 1 non-parametric objects: draftifying it + + + + + Found 1 closed sketch object: making a face from it + + Found 1 closed sketch object: making a face from it + + + + + Found 1 open wire: closing it + + 1 açık çizgi bulundu: kapatılıyor + + + + Found several edges: wiring them + + Found several edges: wiring them + + + + + Found several non-connected edges: making compound + + Found several non-connected edges: making compound + + + + + Found several non-treatable objects: making compound + + Found several non-treatable objects: making compound + + + + + Found 1 parametric object: breaking its dependencies + + Bulunan 1 parametrik nesne: bağımlılıkları çözülüyor + + + + Found 2 objects: subtracting them + + Bulunan 2 nesne: birbirlerinden çıkarılıyor + + + + Found several faces: splitting them + + Bulunan birden fazla yüz: yüzler ayrıştırılıyor + + + + Found several objects: subtracting them from the first one + + Bulunan birden fazla nesne: ilk nesneden bulunanlar çıkarılıyor + + + + Found 1 face: extracting its wires + + Bulunan 1 yüz: bağlantıları ayıklanıyor + + + + Found only wires: extracting their edges + + Bulunan sadece bağlantılar: kenarları ayıklanıyor + + + + This object type is not editable + + Bu nesne düzenlenebilir değildir + + + + Active object must have more than two points/nodes + + Etkin nesne ikiden fazla nokta/bağlanma noktasına sahip olmalıdır + + + + Finishes the current drawing or editing operation (F) + Finishes the current drawing or editing operation (F) + + + + Add points to the current object + Add points to the current object + + + + Remove points from the current object + Remove points from the current object + + + + F&illed + F&illed + + + + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) + + + + &Finish + &Bitir + + + + If checked, an OCC-style offset will be performed instead of the classic offset + If checked, an OCC-style offset will be performed instead of the classic offset + + + + &OCC-style offset + &amp; OCC tarzı ofset + + + + &Wipe + & Silme + + + + Wipes the existing segments of this line and starts again from the last point (W) + Wipes the existing segments of this line and starts again from the last point (W) + + + + Point + Nokta + + + + Distance + Uzaklık + + + + Edit + Düzenle + + + + Create BSpline + BSpline oluştur + + + + Create Rectangle + Dikdörtgen oluştur + + + + Create Circle + Daire oluştur + + + + Create Arc + Ark oluştur + + + + Create Polygon + Poligon oluşturun + + + + Create Text + Metin oluşturma + + + + Create Dimension + Boyut oluştur + + + + Copy + Kopyala + + + + Move + Taşı + + + + Change Style + Stil Değiştir + + + + Rotate + Döndür + + + + Found 1 solidificable object: solidifying it + + Found 1 solidificable object: solidifying it + + + + + Found several objects or faces: making a parametric face + + Found several objects or faces: making a parametric face + + + + + Found objects containing curves: fusing them + + Found objects containing curves: fusing them + + + + + Found several objects: fusing them + + Found several objects: fusing them + + + + + Scale + Ölçek + + + + Trim + Trim + + + + Start Angle + Başlangıç açısı + + + + Aperture + Açıklık + + + + Installed Macros + Installed Macros + + + + Wire tools + Wire tools + + + + DWire + DWire + + + + Create DWire + Create DWire + + + + DWire has been closed + + DWire has been closed + + + + + BSpline + BSpline + + + + Rectangle + Dikdörtgen + + + + Polygon + Çokgen + + + + Text + Metin + + + + Dimension + Boyut + + + + No upgrade available for this object + + No upgrade available for this object + + + + + Couldn't upgrade these objects + + Couldn't upgrade these objects + + + + + One wire is not planar, upgrade not done + + One wire is not planar, upgrade not done + + + + + Found a closed wire: making a face + + Found a closed wire: making a face + + + + + Found 1 open edge: making a line + + Found 1 open edge: making a line + + + + + Found 1 circular edge: making a circle + + Found 1 circular edge: making a circle + + + + + No more downgrade possible + + No more downgrade possible + + + + + Draft creation tools + Draft creation tools + + + + Draft modification tools + Draft modification tools + + + + &Draft + &Draft + + + + Context tools + Context tools + + + diff --git a/src/Mod/Draft/Resources/translations/Draft_uk.qm b/src/Mod/Draft/Resources/translations/Draft_uk.qm index 93998cc3d..f803bc06b 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_uk.qm and b/src/Mod/Draft/Resources/translations/Draft_uk.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_uk.ts b/src/Mod/Draft/Resources/translations/Draft_uk.ts index 3f4f38f6b..ad6ecbf76 100644 --- a/src/Mod/Draft/Resources/translations/Draft_uk.ts +++ b/src/Mod/Draft/Resources/translations/Draft_uk.ts @@ -4,12 +4,12 @@ Draft_AddPoint - + Add Point Додати Точку - + Adds a point to an existing wire/bspline Adds a point to an existing wire/bspline @@ -17,25 +17,25 @@ Draft_AddToGroup - + Adds the selected object(s) to an existing group Додати обраний(ні) об’єкт(ти) до вже створеної групи - + Add to group... - Add to group... + Додати до групи... Draft_ApplyStyle - + Apply Current Style Застосувати поточний стиль - + Applies current line width and color to selected objects Застосувати поточну ширину лінії та колір до обраного об'єкту @@ -43,25 +43,38 @@ Draft_Arc - + Arc Дуга - + Creates an arc. CTRL to snap, SHIFT to constrain Створює дугу. Використовуйте CTRL для прив'язки, SHIFT для обмеження - Draft_BSpline + Draft_Array - - B-Spline - B-Spline + + Array + Array - + + Creates a polar or rectangular array from a selected object + Creates a polar or rectangular array from a selected object + + + + Draft_BSpline + + + B-Spline + B-сплайн + + + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain @@ -69,25 +82,38 @@ Draft_Circle - + Circle Коло - + Creates a circle. CTRL to snap, ALT to select tangent objects Створює коло. CTRL для прив’язки, ALT, для вибору дотичної + + Draft_Clone + + + Clone + Clone + + + + Clones the selected object(s) + Clones the selected object(s) + + Draft_CloseLine - + Close Line Закрити лінію - + Closes the line being drawn Закриває лінію, що креслиться @@ -95,12 +121,12 @@ Draft_DelPoint - + Remove Point Видалити Точку - + Removes a point from an existing wire or bspline Removes a point from an existing wire or bspline @@ -108,12 +134,12 @@ Draft_Dimension - + Dimension Розмірність - + Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment Створює розмірність. CTRL для прив'язки, SHIFT для обмеження, ALT для вибору сегмента @@ -121,38 +147,46 @@ Draft_Downgrade - + Downgrade Понизити - + Explodes the selected objects into simpler objects, or subtract faces Розірвати обраний об'єкт на прості об'єкти, або відняти поверхні + + Draft_Draft2Sketch + + + Draft to Sketch + Draft to Sketch + + Draft_Drawing - + Drawing Малюнок - + Puts the selected objects on a Drawing sheet. - Puts the selected objects on a Drawing sheet. + Розмістити обрані об'єкти на аркуші креслення. Draft_Edit - + Edit Правка - + Edits the active object Редагування активного об'єкта @@ -160,12 +194,12 @@ Draft_FinishLine - + Finish line Завершити лінію - + Finishes a line without closing it Завершення лінії без її закриття @@ -173,12 +207,12 @@ Draft_Line - + Line Лінія - + Creates a 2-point line. CTRL to snap, SHIFT to constrain Створює лінію по 2-м точкам. Використовуйте CTRL для прив'язки, SHIFT для обмеження @@ -186,12 +220,12 @@ Draft_Move - + Move Переміщення - + Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy Переміщення обраних об’єктів між двома точками. CTRL для прив’язки, SHIFT для обмеження, ALT для копіювання @@ -199,25 +233,38 @@ Draft_Offset - + Offset Зміщення - + Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy Зміщення активного об'єкта.CTRL для прив'язки, SHIFT для обмеження, ALT для копіювання + + Draft_Point + + + Point + Точка + + + + Creates a point object + Creates a point object + + Draft_Polygon - + Polygon Багатокутник - + Creates a regular polygon. CTRL to snap, SHIFT to constrain Створює вірний багатокутник. CTRL для прив'язки, SHIFT для обмеження @@ -225,12 +272,12 @@ Draft_Rectangle - + Rectangle Прямокутник - + Creates a 2-point rectangle. CTRL to snap Створює прямокутник по 2 точкам. CTRL для прив'язки @@ -238,12 +285,12 @@ Draft_Rotate - + Rotate Обертання - + Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy Обертання обраних об'єктів. CTRL для прив'язки, SHIFT, для обмеження, ALT для створення копії @@ -251,12 +298,12 @@ Draft_Scale - + Scale Масштабування - + Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy Масштабує обрані об'єкти з базової точки. CTRL, для прив'язки, SHIFT, для обмеження, ALT для копіювання @@ -264,12 +311,12 @@ Draft_SelectGroup - + Select group - Select group + Обрати групу - + Selects all objects with the same parents as this group Selects all objects with the same parents as this group @@ -277,12 +324,12 @@ Draft_SelectPlane - + SelectPlane Вибір площини - + Select a working plane for geometry creation Вибір робочої площини для створення геометрії @@ -290,25 +337,43 @@ Draft_Shape2DView - + Shape 2D view - Shape 2D view + 2D вигляд фігури - + Creates Shape 2D views of selected objects Creates Shape 2D views of selected objects + + + Convert bidirectionally between Draft and Sketch objects + Convert bidirectionally between Draft and Sketch objects + + + + Draft_ShowSnapBar + + + Show Snap Bar + Show Snap Bar + + + + Shows Draft snap toolbar + Shows Draft snap toolbar + Draft_Text - + Text Текст - + Creates an annotation. CTRL to snap Створює анотацію. CTRL для прив'язки @@ -316,12 +381,12 @@ Draft_ToggleConstructionMode - + Toggle construcion Mode Переключення режиму конструювання - + Toggles the Construction Mode for next objects. Перехід в режим конструювання для наступних об'єктів. @@ -329,12 +394,12 @@ Draft_ToggleContinueMode - + Toggle continue Mode - Toggle continue Mode + Перемикання режиму продовження - + Toggles the Continue Mode for next commands. Toggles the Continue Mode for next commands. @@ -342,25 +407,51 @@ Draft_ToggleDisplayMode - + Toggle display mode - Toggle display mode + Переключити режим відображення - + Swaps display mode of selected objects between wireframe and flatlines Swaps display mode of selected objects between wireframe and flatlines + + Draft_ToggleGrid + + + Toggle Grid + Toggle Grid + + + + Toggles the Draft gid on/off + Toggles the Draft gid on/off + + + + Draft_ToggleSnap + + + Toggle snap + Toggle snap + + + + Toggles Draft snap on or off + Toggles Draft snap on or off + + Draft_Trimex - + Trimex Trimex - + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts @@ -368,12 +459,12 @@ Draft_UndoLine - + Undo last segment Скасувати останній сегмент - + Undoes the last drawn segment of the line being drawn Скасовує останній накреслений сегмент лінії @@ -381,12 +472,12 @@ Draft_Upgrade - + Upgrade Оновлення - + Joins the selected objects into one, or converts closed wires to filled faces, or unite faces Об'єднати обрані об'єкти в один, або перетворити замкнені напрямні в закруглені поверхні, або об'єднати поверхні @@ -394,25 +485,25 @@ Draft_Wire - - Wire - Дріт + + DWire + DWire - - Creates a multiple-point wire. CTRL to snap, SHIFT to constrain - Малює дріт по декількох точках. Використовуйте CTRL для прив'язки, SHIFT для обмеження + + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain Draft_WireToBSpline - + Wire to BSpline Wire to BSpline - + Converts between Wire and BSpline Converts between Wire and BSpline @@ -425,137 +516,137 @@ Загальні налаштування креслення - + Default color Стандартний колір - + the default color for new objects колір за умовчанням для нових об'єктів - + Default linewidth Стандартна товщина ліній - + the default linewidth for new objects стандартна ширина лінії для нових об'єктів - + Snap color Колір захоплення - + the default color for snap symbols стандартний колір для символів прив'язки - + Construction color Колір конструкції - + This is the default color for objects being drawn while in construction mode. Стандартний колір для об’єктів створюваних в режимі конструктора. - + This is the default group name for construction geometry Стандартне ім’я групи для конструкції - + Construction Конструкція - + check this if you want to use the color/linewidth from the toolbar as default - check this if you want to use the color/linewidth from the toolbar as default + встановіть, якщо хочете використовувати колір та ширину лінії на панелі інструментів за замовчуванням - + Save current color and linewidth across sessions - Save current color and linewidth across sessions + Зберігати поточний колір та ширину лінії між сеансами - + If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode - If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode + Якщо встановлено, режим копіювання буде зберігатися між командами, в іншому випадку команди будуть завжди починатися в режимі "не копіювати" - + Global copy mode Режим глобального копіювання - + If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. - + If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe Якщо це обрано, то по замовчуванню, об’єкти будуть мати вигляд заповнених. В іншому випадку, вони будуть мати вигляд каркасу - + Fill objects by default Заповняти об'єкт - + Default working plane Стандартна робоча площина - + None Немає - + XY (Top) XY (Зверху) - + XZ (Front) XZ (З переду) - + YZ (Side) YZ (З боку) - + The number of decimals in internal coordinates operations (for ex. 3 = 0.001) Кількість десятинних знаків у внутрішніх операціях (приклад: 3 = 0,001) - + Default text height Стандартна висота тексту - + Default height for texts and dimensions Стандартна висота для тексту та розмірів - + Default text font Стандартний шрифт - + This is the default font name for all Draft texts and dimensions. It can be a font name such as "Arial", a default style such as "sans", "serif" or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style @@ -566,22 +657,22 @@ such as "Arial:Bold" стилем - як "Arial:Bold" - + Arial Arial - + Default template sheet Стандартний шаблон аркуша - + The default template to use when creating a new drawing sheet Стандартний шаблон для використання при створенні нового аркуша креслення - + Import style Стиль імпорту @@ -594,17 +685,17 @@ If color mapping is choosed, you must choose a color mapping file containing a t Якщо обрано карту перетворення (співставлення) кольору, Ви повинні обрати файл перетворення кольору, що містить таблицю перетворення, згідно якої кольори будуть перетворені в товщини ліній - + None (fastest) Жодний (швидко) - + Use default color and linewidth Брати стандартний колір та товщину лінії - + Original color and linewidth Оригінальний колір та товщина лінії @@ -614,52 +705,52 @@ If color mapping is choosed, you must choose a color mapping file containing a t Зіставлення кольору з товщиною лінії - + if this is checked, paper space objects will be imported too якщо це обрано, об'єкти простору аркуша будуть також імпортовані - + Import layouts Імпорт макетів - + if this is unchecked, texts/mtexts won't be imported якщо це НЕ обрано, тексти/мультитексти не будуть імпортуватись - + Color mapping file Файл співставлення кольору - + The color mapping file for translating dxf colors into linewidths Файл співставлення кольору, для перетворення dxf кольорів в ширину ліній - + Max Spline Segment - Max Spline Segment + Максимальний сегмент сплайна - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. - When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. + При експортуванні сплайнів у DXF, вони трансформуються у полілінії. Це значення є максимальною довжиною кожного сегменту полілінії. Якщо значення дорівнює 0, то весь сплайн розглядається як відрізок прямої. - + This is the method choosed for importing SVG object color into FreeCAD. - This is the method choosed for importing SVG object color into FreeCAD. + Цей метод обраний для імпортування кольору об'єкта SVG до FreeCAD. - + Check this if you want the areas (3D faces) to be imported too. Check this if you want the areas (3D faces) to be imported too. - + Import OCA areas Import OCA areas @@ -669,84 +760,84 @@ If color mapping is choosed, you must choose a color mapping file containing a t Загальні параметри - + Construction group name Construction group name - + Tolerance Точність - + This is the value used by functions that use a tolerance. Values with differences below this value will be treated as same. Це значення використовується функціями, що використовують обрахунок точності. Значення, що відхиляються на меншу величину, також будуть вірні. - + Dimensions & Leader arrow style Стиль Розмірів та Стрілок - + Dot 5 Крапка 5 - + Dot 7 Крапка 7 - + Dot 9 Крапка 9 - + Circle 5 Коло 5 - + Circle 7 Коло 7 - + Circle 9 Коло 9 - + Slash 5 Слеш 5 - + Slash 7 Слеш 7 - + Slash 9 Слеш 9 - + Backslash 5 Зворотній слеш 5 - + Backslash 7 Зворотній слеш 7 - + Backslash 9 Зворотній слеш 9 @@ -761,973 +852,1169 @@ Values with differences below this value will be treated as same. Параметри DXF формату - + Import texts and dimensions Імпортування тексту та розмірів - + Check this if you want the non-named blocks (beginning with a *) to be imported too Check this if you want the non-named blocks (beginning with a *) to be imported too - + Import *blocks Імпорт блоків* - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... - + Join geometry - Join geometry + Об'єднати геометрію - + SVG format options Параметри SVG формату - + OCA format options Параметри OCA формату - + Alternate SVG Patterns location Alternate SVG Patterns location - + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns - + Draft interface mode Draft interface mode - + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction - + Toolbar - Toolbar + Панель інструментів - + Taskview Taskview - + Constrain mod Constrain mod - + The Constraining modifier key The Constraining modifier key - + shift - shift + змістити - + ctrl ctrl - + alt alt - + Snap mod Snap mod - + The snap modifier key The snap modifier key - + Alt mod Alt mod - + The alt modifier key The alt modifier key - + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. - Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. + Зазвичай, після копіювання об'єктів, вибраними стають копії. Якщо встановлена ця опція, вибраними будуть початкові об'єкти. - + Select base objects after copying - Select base objects after copying + Після копіювання вибрати початкові об'єкти - + Always snap to objects (disable snap mod key) - Always snap to objects (disable snap mod key) + Завжди прив'язуватися до об'єктів (вимкнути кнопку модуля прив'язки) - + The radius for snapping to special points. Set to 0 for no distance (infinite) - The radius for snapping to special points. Set to 0 for no distance (infinite) + Радіус прив'язування до спеціальної точки. Встановіть 0 для відсутності дистанції (нескінчений) - + Snap range - Snap range + Діапазон прив'язування - + px px - + If checked, a grid will appear when drawing - If checked, a grid will appear when drawing + Якщо встановлено, при виконанні креслення буде показуватися сітка - + Use grid - Use grid + Використовувати сітку - + Grid spacing - Grid spacing + Розмір сітки - + The spacing between each grid line - The spacing between each grid line + Відстань між кожною лінією сітки - + Main lines every Main lines every - + Mainlines will be drawn thicker. Specify here how many squares between mainlines. Mainlines will be drawn thicker. Specify here how many squares between mainlines. - + Internal precision level - Internal precision level + Рівень внутрішньої точності - + Dimensions precision level - Dimensions precision level + Рівень точності розмірів - + Vertical dimensions text orientation - Vertical dimensions text orientation + Вертикальна орієнтація тексту розміру - + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. - + Left (ISO standard) - Left (ISO standard) + Наліво (стандарт ISO) - + Right - Right + Направо Create parametric objects - Create parametric objects + Створити параметричний об'єкт - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable - + Group layers into blocks - Group layers into blocks + Групувати шари у блоки - + If this is checked, all objects containing faces will be exported as 3d polyfaces - If this is checked, all objects containing faces will be exported as 3d polyfaces + Якщо встановлено, всі об'єкти, що мають грані, будуть експортовані у 3D багатогранники - + Export 3D objects as polyface meshes - Export 3D objects as polyface meshes + Експортувати 3D-об'єкти як багатогранні сітки + + + + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + + + + Hide Draft workbench + Hide Draft workbench + + + + If this is checked, snapping will not occur against objects with more than the indicated number of edges + If this is checked, snapping will not occur against objects with more than the indicated number of edges + + + + Snap maximum + Snap maximum + + + + Maximum number of edges to be considered for snapping + Maximum number of edges to be considered for snapping + + + + Maximum number of edges + Maximum number of edges + + + + If checked, the Snap toolbar will be shown whenever you use snapping + If checked, the Snap toolbar will be shown whenever you use snapping + + + + Show Draft Snap toolbar + Show Draft Snap toolbar + + + + Hide Draft snap toolbar after use + Hide Draft snap toolbar after use + + + + if checked, a widget indicating the current working plane orientation appears during drawing operations + if checked, a widget indicating the current working plane orientation appears during drawing operations + + + + Show Working Plane tracker + Show Working Plane tracker + + + + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + + + + Always show + Always show + + + + Create Sketches + Create Sketches + + + + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + + + + Use standard font size for texts + Use standard font size for texts + + + + If this is checked, hatches will be converted into simple wires + If this is checked, hatches will be converted into simple wires + + + + Import hatch boundaries as wires + Import hatch boundaries as wires + + + + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + + + + Render polylines with width + Render polylines with width + + + + Export Style + Export Style + + + + Style of SVG file to write when exporting a Sketch. + Style of SVG file to write when exporting a Sketch. + + + + Translated (for print & display) + Translated (for print & display) + + + + Raw (for CAM) + Raw (for CAM) + + + + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + + + + Translate white line color to black + Translate white line color to black draft - + active command: активна команда: - + None Немає - + Active Draft command Активна команда креслення - + X coordinate of next point X координати наступної точки - + X X - + Y Y - + Z Z - + Y coordinate of next point Y координати наступної точки - + Z coordinate of next point Z координати наступної точки - + Radius Радіус - + Radius of Circle Радіус кола - + Coordinates relative to last point or absolute (SPACE) Координати по відношенню до останнього пункту або абсолютні (Пробіл) - + Undo the last segment (CTRL+Z) Скасувати останній сегмент (Ctrl + Z) - + Finishes and closes the current line (C) Завершити та закрити поточну лінію (C) - + Offset Зміщення - + XY XY - + Select XY plane Вибір XY площини - + XZ XZ - + Select XZ plane Вибір XZ площини - + YZ YZ - + Select YZ plane Вибір YZ площини - + View - Перегляд + Вигляд - + Select plane perpendicular to the current view Вибір площини, перпендикулярної до поточної - + Do not project points to a drawing plane Не проектувати точки на площину креслення - + If checked, objects will be copied instead of moved (C) Якщо це обрано, об'єкти будуть скопійовані замість переміщення (C) - + Line Color Колір лінії - + Face Color Колір площини - + Line Width Ширина лінії - + Font Size Розмір шрифту - + Apply to selected objects Застосувати до вибраних об'єктів - + Toggles Construction Mode Перемикання режиму конструювання - + Select Plane Вибір площини - + Line Лінія - + Circle Коло - + Center X Центр X - + Arc Дуга - + Pick Object Виберіть об'єкт - + draft Command Bar Панель команд креслення - + Pick a face to define the drawing plane Оберіть фрагмент щоб визначити площину малювання - + Pick first point: Вибрати першу точку: - + Pick next point: Вибрати наступну точку: - + Pick next point, or (F)inish or (C)lose: Вибрати наступну точку, або завершити (F) чи закрити (C) - + Pick opposite point: Вибір протилежної точки - + Pick center point: Вибрати центральну точку - + Pick radius: Вибрати радіус - + Pick start angle: Вибрати початковий кут - + Pick aperture: Pick aperture: - + Aperture angle: - Aperture angle: - + Кутова апертура: - + Pick location point: Вибрати точку розміщення - + Select an object to move Оберіть об'єкт для переміщення - + Pick start point: Вибір початкової точки - + Pick end point: Вибір кінцевої точки - + Select an object to rotate Оберіть об'єкт для обертання - + Pick rotation center: Вибір центру обертання - + Pick base angle: Вибір базового кута - + Pick rotation angle: Вибір кута обертання - + Select an object to offset Оберіть об'єкт для зміщення - + Offset only works on one object at a time Зсув працює лише з одним об'єктом в один час - + Pick distance: Вибір відстані - + Select an object to upgrade Виберіть об'єкт для оновлення - + Select an object to trim/extend Оберіть об'єкт для обрізки/подовження - + Select an object to scale Оберіть об'єкт для масштабування - + Pick base point: Вибір базової точки - + Pick scale factor: Виберіть коефіцієнт масштабування: - + Number of sides Кількість сторін - + &Relative &Відносно - + &Undo &Скасувати - + &Close &Закрити - + &Copy &Копіювати - + If checked, command will not finish until you press the command button again If checked, command will not finish until you press the command button again - + &Continue &Продовжити - - Wire has been closed - - Wire has been closed - - - - + Last point has been removed Last point has been removed - + Spline has been closed Spline has been closed - + Edges don't intersect! Edges don't intersect! - + Cannot offset this object type Cannot offset this object type - + Found groups: closing each open object inside Found groups: closing each open object inside - + Found 2 objects: fusing them Found 2 objects: fusing them - + Found 1 non-parametric objects: draftifying it Found 1 non-parametric objects: draftifying it - + Found 1 closed sketch object: making a face from it Found 1 closed sketch object: making a face from it - - Found closed wires: making faces - - Found closed wires: making faces - - - - + Found 1 open wire: closing it Found 1 open wire: closing it - + Found several edges: wiring them Found several edges: wiring them - + Found several non-connected edges: making compound Found several non-connected edges: making compound - + Found several non-treatable objects: making compound - Found several non-treatable objects: making compound - + Знайдено декілька об'єктів, які незмінні: створення складного - + Found 1 parametric object: breaking its dependencies - Found 1 parametric object: breaking its dependencies - + Знайдений 1 параметричний об'єкт: розривання його залежностей - + Found 2 objects: subtracting them - Found 2 objects: subtracting them - + Знайдено 2 об'єкти: їх віднімання - + Found several faces: splitting them - Found several faces: splitting them - + Знайдено декілька поверхонь: їх розділення - + Found several objects: subtracting them from the first one - Found several objects: subtracting them from the first one - + Знайдено декілька об'єктів: віднімання їх від першого - + Found 1 face: extracting its wires Found 1 face: extracting its wires - + Found only wires: extracting their edges Found only wires: extracting their edges - + This object type is not editable Цей тип об'єкта не редагується - + Active object must have more than two points/nodes Active object must have more than two points/nodes - + Finishes the current drawing or editing operation (F) - Finishes the current drawing or editing operation (F) + Завершити поточне креслення або операцію редагування (З) - + Add points to the current object - Add points to the current object + Додати точку до поточного об'єкта - + Remove points from the current object - Remove points from the current object + Видалити точки з поточного об'єкту - + F&illed - F&illed + За&повнити - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) Check this if the object should appear as filled, otherwise it will appear as wireframe (i) - + &Finish - &Finish + &Завершити - + If checked, an OCC-style offset will be performed instead of the classic offset If checked, an OCC-style offset will be performed instead of the classic offset - + &OCC-style offset &OCC-style offset - + &Wipe - &Wipe + &Очистити - + Wipes the existing segments of this line and starts again from the last point (W) Wipes the existing segments of this line and starts again from the last point (W) - + Point - Point + Точка - + Distance - Distance + Відстань - + Edit Правка - - Create Wire - Create Wire - - - + Create BSpline - Create BSpline + Створити BSpline - + Create Rectangle - Create Rectangle + Створити прямокутник - + Create Circle - Create Circle + Створити коло - + Create Arc - Create Arc + Створити дугу - + Create Polygon - Create Polygon + Створити багатокутник - + Create Text - Create Text + Створити текст - + Create Dimension - Create Dimension + Створити розмір - - Delete Measurement - Delete Measurement - - - + Copy - Copy + Копіювати - + Move Переміщення - + Change Style - Change Style + Змінити стиль - + Rotate Обертання - + Found 1 solidificable object: solidifying it Found 1 solidificable object: solidifying it - + Found several objects or faces: making a parametric face Found several objects or faces: making a parametric face - + Found objects containing curves: fusing them Found objects containing curves: fusing them - + Found several objects: fusing them Found several objects: fusing them - + Scale Масштабування - + Trim - Trim + Обрізати - + Start Angle Start Angle - + Aperture Aperture - + Installed Macros - Installed Macros + Встановлені макроси - - Draft tools - Draft tools - - - - Draft - Draft - - - - Display options - Display options - - - + Wire tools Wire tools + + + DWire + DWire + + + + Create DWire + Create DWire + + + + DWire has been closed + + DWire has been closed + + + + + BSpline + BSpline + + + + Rectangle + Прямокутник + + + + Polygon + Багатокутник + + + + Text + Текст + + + + Dimension + Розмірність + + + + No upgrade available for this object + + No upgrade available for this object + + + + + Couldn't upgrade these objects + + Couldn't upgrade these objects + + + + + One wire is not planar, upgrade not done + + One wire is not planar, upgrade not done + + + + + Found a closed wire: making a face + + Found a closed wire: making a face + + + + + Found 1 open edge: making a line + + Found 1 open edge: making a line + + + + + Found 1 circular edge: making a circle + + Found 1 circular edge: making a circle + + + + + No more downgrade possible + + No more downgrade possible + + + + + Draft creation tools + Draft creation tools + + + + Draft modification tools + Draft modification tools + + + + &Draft + &Draft + + + + Context tools + Context tools + diff --git a/src/Mod/Draft/Resources/translations/Draft_zh-CN.qm b/src/Mod/Draft/Resources/translations/Draft_zh-CN.qm new file mode 100644 index 000000000..f0f4e186b Binary files /dev/null and b/src/Mod/Draft/Resources/translations/Draft_zh-CN.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_zh.ts b/src/Mod/Draft/Resources/translations/Draft_zh-CN.ts similarity index 60% rename from src/Mod/Draft/Resources/translations/Draft_zh.ts rename to src/Mod/Draft/Resources/translations/Draft_zh-CN.ts index e9332dd10..1a537fb56 100644 --- a/src/Mod/Draft/Resources/translations/Draft_zh.ts +++ b/src/Mod/Draft/Resources/translations/Draft_zh-CN.ts @@ -4,12 +4,12 @@ Draft_AddPoint - + Add Point 添加点 - + Adds a point to an existing wire/bspline 添加点至现有多段线/B样条曲线 @@ -17,12 +17,12 @@ Draft_AddToGroup - + Adds the selected object(s) to an existing group 添加选中对象至现有组 - + Add to group... 添加到组... @@ -30,12 +30,12 @@ Draft_ApplyStyle - + Apply Current Style 应用当前样式 - + Applies current line width and color to selected objects 将当前线宽及颜色应用到选中对象 @@ -43,25 +43,38 @@ Draft_Arc - + Arc 圆弧 - + Creates an arc. CTRL to snap, SHIFT to constrain 创建圆弧.CTRL捕捉,Shift约束 + + Draft_Array + + + Array + 阵列 + + + + Creates a polar or rectangular array from a selected object + Creates a polar or rectangular array from a selected object + + Draft_BSpline - + B-Spline B样条曲线 - + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain 创建多点B样条曲线.Ctrl捕捉,Shift约束 @@ -69,25 +82,38 @@ Draft_Circle - + Circle - + Creates a circle. CTRL to snap, ALT to select tangent objects 创建圆.Ctrl捕捉,Alt选择相切对象 + + Draft_Clone + + + Clone + 克隆 + + + + Clones the selected object(s) + 克隆所选对象 + + Draft_CloseLine - + Close Line 闭合线段 - + Closes the line being drawn 闭合当前绘制线段 @@ -95,12 +121,12 @@ Draft_DelPoint - + Remove Point 删除点 - + Removes a point from an existing wire or bspline 自现有多段线或B样条曲线上删除点 @@ -108,12 +134,12 @@ Draft_Dimension - + Dimension 尺寸标注 - + Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment 创建尺寸标注.Ctrl捕捉,Shift约束,Alt选择线段 @@ -121,25 +147,33 @@ Draft_Downgrade - + Downgrade 降级 - + Explodes the selected objects into simpler objects, or subtract faces 分解选定对象为简单对象,或去除填充面 + + Draft_Draft2Sketch + + + Draft to Sketch + Draft to Sketch + + Draft_Drawing - + Drawing 图纸 - + Puts the selected objects on a Drawing sheet. 将选中对象放置到图纸. @@ -147,12 +181,12 @@ Draft_Edit - + Edit 编辑 - + Edits the active object 编辑当前对象 @@ -160,12 +194,12 @@ Draft_FinishLine - + Finish line 完成线段 - + Finishes a line without closing it 完成线段但不闭合 @@ -173,12 +207,12 @@ Draft_Line - + Line 线 - + Creates a 2-point line. CTRL to snap, SHIFT to constrain 两点创建线段.Ctrl捕捉,Shift约束 @@ -186,12 +220,12 @@ Draft_Move - + Move 移动 - + Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy 移动选中对象.Ctrl捕捉,Shift约束,Alt复制 @@ -199,25 +233,38 @@ Draft_Offset - + Offset 偏移 - + Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy 偏移当前对象.Ctrl捕捉,Shift约束,Alt复制 + + Draft_Point + + + Point + + + + + Creates a point object + 创建点对象 + + Draft_Polygon - + Polygon 多边形 - + Creates a regular polygon. CTRL to snap, SHIFT to constrain 创建正多边形.CTRL捕捉,Shift约束 @@ -225,12 +272,12 @@ Draft_Rectangle - + Rectangle 矩形 - + Creates a 2-point rectangle. CTRL to snap 两点创建矩形.Ctrl捕捉 @@ -238,12 +285,12 @@ Draft_Rotate - + Rotate 旋转 - + Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy 旋转选中对象.CTRL捕捉,Shift约束,Alt复制 @@ -251,12 +298,12 @@ Draft_Scale - + Scale 缩放 - + Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy 自基点缩放选定对象.Ctrl捕捉,Shift约束,Alt复制 @@ -264,12 +311,12 @@ Draft_SelectGroup - + Select group 选择组 - + Selects all objects with the same parents as this group 选择同一父级下的所有对象 @@ -277,12 +324,12 @@ Draft_SelectPlane - + SelectPlane 选择平面 - + Select a working plane for geometry creation 选择工作平面以创建几何对象 @@ -290,25 +337,43 @@ Draft_Shape2DView - + Shape 2D view 2D 形体视图 - + Creates Shape 2D views of selected objects 创建所选对象的2D形体视图 + + + Convert bidirectionally between Draft and Sketch objects + 绘图和草绘间双向转换 + + + + Draft_ShowSnapBar + + + Show Snap Bar + 显示捕捉栏 + + + + Shows Draft snap toolbar + 显示绘图捕捉工具栏 + Draft_Text - + Text 文本 - + Creates an annotation. CTRL to snap 创建注释.Ctrl捕捉 @@ -316,12 +381,12 @@ Draft_ToggleConstructionMode - + Toggle construcion Mode 切换构造模式 - + Toggles the Construction Mode for next objects. 切换后续对象为构造模式. @@ -329,12 +394,12 @@ Draft_ToggleContinueMode - + Toggle continue Mode 切换连续模式 - + Toggles the Continue Mode for next commands. 后续命令切换为连续模式. @@ -342,25 +407,51 @@ Draft_ToggleDisplayMode - + Toggle display mode 切换显示模式 - + Swaps display mode of selected objects between wireframe and flatlines 切换选中对象的显示模式为"线框"或"带边框着色" + + Draft_ToggleGrid + + + Toggle Grid + 切换网格 + + + + Toggles the Draft gid on/off + 打开/关闭绘图网格 + + + + Draft_ToggleSnap + + + Toggle snap + 切换捕捉 + + + + Toggles Draft snap on or off + 打开/关闭绘图捕捉 + + Draft_Trimex - + Trimex 修剪/延伸 - + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts 修剪或延伸所选对象,或拉伸单一面. CTRL捕捉,shift约束到当前段或正交,ALT反转 @@ -368,12 +459,12 @@ Draft_UndoLine - + Undo last segment 撤销上一段 - + Undoes the last drawn segment of the line being drawn 撤销当前绘制线段的上一段 @@ -381,12 +472,12 @@ Draft_Upgrade - + Upgrade 升级 - + Joins the selected objects into one, or converts closed wires to filled faces, or unite faces 连接选中对象,或将闭合线框转化为填充面,或合并面 @@ -394,25 +485,25 @@ Draft_Wire - - Wire - 线框 + + DWire + DWire - - Creates a multiple-point wire. CTRL to snap, SHIFT to constrain - 创建多点线框.CTRL捕捉,Shift约束 + + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain Draft_WireToBSpline - + Wire to BSpline 多段线转换为B样条曲线 - + Converts between Wire and BSpline 多段线和B样条曲线相互转换 @@ -422,140 +513,140 @@ General Draft Settings - 绘图总体设置 + 绘图全局设置 - + Default color 默认颜色 - + the default color for new objects 新对象的默认颜色 - + Default linewidth 默认线宽 - + the default linewidth for new objects 新对象的默认线宽 - + Snap color 捕捉颜色 - + the default color for snap symbols 捕捉符号的默认颜色 - + Construction color 构造颜色 - + This is the default color for objects being drawn while in construction mode. 这是构造模式下绘制对象的默认颜色. - + This is the default group name for construction geometry 这是构造几何元素的默认组名 - + Construction 构造 - + check this if you want to use the color/linewidth from the toolbar as default 选中则工具栏颜色/线宽设为默认 - + Save current color and linewidth across sessions 保存当前颜色及线宽到所有会话 - + If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode 选中则命令间启用复制模式,否则为非复制模式 - + Global copy mode 全局复制模式 - + If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. 选中则绘图时可捕捉已存在对象.否则需按住Ctrl激活捕捉. - + If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe 选中则对象默认显示为填充,否则显示为线框 - + Fill objects by default 默认填充对象 - + Default working plane 默认工作平面 - + None - + XY (Top) XY(顶面) - + XZ (Front) XZ(前面) - + YZ (Side) YZ(侧面) - + The number of decimals in internal coordinates operations (for ex. 3 = 0.001) 内部坐标操作小数位数(如:3=0.001) - + Default text height 默认文本高度 - + Default height for texts and dimensions 文本及尺寸标注的默认高度 - + Default text font 默认文本字体 - + This is the default font name for all Draft texts and dimensions. It can be a font name such as "Arial", a default style such as "sans", "serif" or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style @@ -563,22 +654,22 @@ such as "Arial:Bold" 所有绘图文字及尺寸标注的默认字体名称.如:字体名称"Arial",默认样式"sans","serif"或"mono",或组合"Arial,Helvetica,sans"或包含名称和样式"Arial:Bold" - + Arial Arial - + Default template sheet 默认图纸模板 - + The default template to use when creating a new drawing sheet 用于创建新图纸的默认模板 - + Import style 导入样式 @@ -590,17 +681,17 @@ If color mapping is choosed, you must choose a color mapping file containing a t 导入或转化DXF对象颜色到FreeCAD的可选方法.如果选择颜色映射,则必须选择转化颜色到线宽的映射文件. - + None (fastest) 无(最快) - + Use default color and linewidth 使用默认颜色和线宽 - + Original color and linewidth 原始颜色和线宽 @@ -610,52 +701,52 @@ If color mapping is choosed, you must choose a color mapping file containing a t 颜色映射到线宽 - + if this is checked, paper space objects will be imported too 选中则导入图纸空间的对象 - + Import layouts 导入布局 - + if this is unchecked, texts/mtexts won't be imported 选中则导入文本/多行文本 - + Color mapping file 颜色映射文件 - + The color mapping file for translating dxf colors into linewidths 用于转化DXF颜色成线宽的颜色映射文件 - + Max Spline Segment 样条曲线最大分段 - + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. 当导出样条曲线至DXF时,将被转化为多段线.这个数据是多段线每节分段的最大长度.如果为零,样条曲线将被视为直线段. - + This is the method choosed for importing SVG object color into FreeCAD. 导入SVG对象颜色到FreeCAD的可选方法. - + Check this if you want the areas (3D faces) to be imported too. 选中则导入面域(3D面). - + Import OCA areas 导入OCA面域 @@ -665,83 +756,83 @@ If color mapping is choosed, you must choose a color mapping file containing a t 常规设置 - + Construction group name 构造组名 - + Tolerance 公差 - + This is the value used by functions that use a tolerance. Values with differences below this value will be treated as same. 设置相关功能的公差,在此范围内的数据皆视为相同. - + Dimensions & Leader arrow style 尺寸线箭头样式 - + Dot 5 点 5 - + Dot 7 点 7 - + Dot 9 点 9 - + Circle 5 圆 5 - + Circle 7 圆 7 - + Circle 9 圆 9 - + Slash 5 斜杠 5 - + Slash 7 斜杠 7 - + Slash 9 斜杠 9 - + Backslash 5 反斜杠 5 - + Backslash 7 反斜杠 7 - + Backslash 9 反斜杠 9 @@ -756,202 +847,202 @@ Values with differences below this value will be treated as same. DXF格式选项 - + Import texts and dimensions 导入文本和尺寸 - + Check this if you want the non-named blocks (beginning with a *) to be imported too 选中则导入匿名块(块名以"*"开头) - + Import *blocks 导入匿名块 - + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... 选中则FreeCAD将尝试把重合对象联合成线.注意,此操作较耗时间... - + Join geometry 联合几何图形 - + SVG format options SVG格式选项 - + OCA format options OCA格式选项 - + Alternate SVG Patterns location 切换SVG样式的位置 - + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns 此处你可以指定一个包含SVG样式定义的文件目录,该SVG样式定义可添加至标准草图填充样式 - + Draft interface mode 草图界面模式 - + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction 草图模块工作的界面模式:工具栏模式将所有的草图设置放置在单独的工具条内,任务栏模式使用FreeCAD的任务浏览器系统与用户进行所有交互 - + Toolbar 工具栏 - + Taskview 任务视图 - + Constrain mod 约束模式 - + The Constraining modifier key 约束修改键 - + shift shift - + ctrl ctrl - + alt alt - + Snap mod 捕捉模式 - + The snap modifier key 捕捉修改键 - + Alt mod Alt 模式 - + The alt modifier key Alt 修改键 - + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. 通常,复制对象后,副本被选种.如果选中此选项,则原对象被选种. - + Select base objects after copying 复制后选中原对象 - + Always snap to objects (disable snap mod key) 始终捕捉到对象(禁用捕捉模式键) - + The radius for snapping to special points. Set to 0 for no distance (infinite) 点位捕捉半径.设置为0表示无捕捉距离(无限) - + Snap range 捕捉范围 - + px px - + If checked, a grid will appear when drawing 若选中绘图时显示网格 - + Use grid 使用网格 - + Grid spacing 网格间距 - + The spacing between each grid line 每个网格线之间的间距 - + Main lines every - Main lines every + 主网格线分格 - + Mainlines will be drawn thicker. Specify here how many squares between mainlines. - Mainlines will be drawn thicker. Specify here how many squares between mainlines. + 主网格线加厚绘制. 在此处指定主网格线间的分格数. - + Internal precision level 内部精度等级 - + Dimensions precision level 尺寸精度等级 - + Vertical dimensions text orientation 垂直标注文字方向 - + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. 垂直尺寸标注的文字方向.默认为左(ISO标准). - + Left (ISO standard) 左(ISO标准) - + Right @@ -961,739 +1052,940 @@ Values with differences below this value will be treated as same. 创建参数对象 - + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable - if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable + 选中则同一图层的对象组成绘图图块, 显示速度较快, 但不易编辑 - + Group layers into blocks 图层编组创建成图块 - + If this is checked, all objects containing faces will be exported as 3d polyfaces - If this is checked, all objects containing faces will be exported as 3d polyfaces + 选中则所有含面对象转换成三维多边形网格面 - + Export 3D objects as polyface meshes 导出3D对象为多边形网格 + + + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + 选中则绘图工作台不显示. 因为建筑工作台包含所有的绘图工具. + + + + Hide Draft workbench + 隐藏绘图工作台 + + + + If this is checked, snapping will not occur against objects with more than the indicated number of edges + If this is checked, snapping will not occur against objects with more than the indicated number of edges + + + + Snap maximum + 最大捕捉数 + + + + Maximum number of edges to be considered for snapping + 捕捉考虑的最大边数 + + + + Maximum number of edges + 最大边数 + + + + If checked, the Snap toolbar will be shown whenever you use snapping + If checked, the Snap toolbar will be shown whenever you use snapping + + + + Show Draft Snap toolbar + 显示绘图捕捉工具栏 + + + + Hide Draft snap toolbar after use + 使用后隐藏绘图捕捉工具栏 + + + + if checked, a widget indicating the current working plane orientation appears during drawing operations + if checked, a widget indicating the current working plane orientation appears during drawing operations + + + + Show Working Plane tracker + 显示工作平面追踪器 + + + + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + + + + Always show + 总是显示 + + + + Create Sketches + 创建草绘 + + + + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + 选中则导入文本使用标准绘图文字大小, 而非DXF文档中指定的大小 + + + + Use standard font size for texts + 文本使用标准字体大小 + + + + If this is checked, hatches will be converted into simple wires + 选中则填充被转换成简单线条 + + + + Import hatch boundaries as wires + 填充边界导入为线 + + + + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + 选中则当多段线定义了线宽, 它们显示为相应宽度的闭合线框 + + + + Render polylines with width + 显示多段线线宽 + + + + Export Style + 导出样式 + + + + Style of SVG file to write when exporting a Sketch. + 导出草绘时的SVG输出样式 + + + + Translated (for print & display) + 转译(用于打印和显示) + + + + Raw (for CAM) + 粗略(用于CAM) + + + + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + 在导出SVG视图时, 使所有白线显示为黑色, 提高白色背景下的可视性 + + + + Translate white line color to black + 转换白线为黑色 + draft - + active command: 当前命令: - + None - + Active Draft command 当前绘图命令 - + X coordinate of next point 下一个点的X坐标 - + X X - + Y Y - + Z Z - + Y coordinate of next point 下一个点的Y坐标 - + Z coordinate of next point 下一个点的Z坐标 - + Radius 半径 - + Radius of Circle 圆半径 - + Coordinates relative to last point or absolute (SPACE) 相对于上一点坐标或绝对坐标(空间) - + Undo the last segment (CTRL+Z) 撤消上一段(CTRL+Z) - + Finishes and closes the current line (C) 完成并闭合当前线段(C) - + Offset 偏移 - + XY XY - + Select XY plane 选择XY平面 - + XZ XZ - + Select XZ plane 选择XZ平面 - + YZ YZ - + Select YZ plane 选择YZ平面 - + View 视图 - + Select plane perpendicular to the current view 选择垂直于当前视图的平面 - + Do not project points to a drawing plane 不在绘图平面上投影点 - + If checked, objects will be copied instead of moved (C) 选中则对象将被复制而非移动(C) - + Line Color 线条颜色 - + Face Color 表面颜色 - + Line Width 线宽 - + Font Size 字体大小 - + Apply to selected objects 应用于选中对象 - + Toggles Construction Mode 切换构造模式 - + Select Plane 选择平面 - + Line 线 - + Circle - + Center X 圆心 X - + Arc 圆弧 - + Pick Object 选择对象 - + draft Command Bar 绘图命令栏 - + Pick a face to define the drawing plane 选择一个面作为绘图平面 - + Pick first point: 选择第一点: - + Pick next point: 选择下一点: - + Pick next point, or (F)inish or (C)lose: 选择下一点,或完成(F)|闭合(C): - + Pick opposite point: 选择对角点: - + Pick center point: 选择中心点: - + Pick radius: 选择半径: - + Pick start angle: 选择起始角: - + Pick aperture: 选择捕捉靶框: - + Aperture angle: 捕捉靶框角: - + Pick location point: 选择定位点: - + Select an object to move 选择要移动的对象 - + Pick start point: 选择起点: - + Pick end point: 选择终点: - + Select an object to rotate 选择要旋转的对象 - + Pick rotation center: 选择旋转中心: - + Pick base angle: 选择基准角: - + Pick rotation angle: 选择旋转角度: - + Select an object to offset 选择要偏移的对象 - + Offset only works on one object at a time 偏移操作每次只能针对一个对象 - + Pick distance: 选择距离: - + Select an object to upgrade 选择要升级的对象 - + Select an object to trim/extend 选择要修剪/延伸的对象 - + Select an object to scale 选择要缩放的对象 - + Pick base point: 选择基准点: - + Pick scale factor: 选择缩放比例: - + Number of sides 边数 - + &Relative 相对(&R) - + &Undo 撤消(&U) - + &Close 闭合(&C) - + &Copy 复制(&C) - + If checked, command will not finish until you press the command button again 选中则命令连续运行直至再次按下命令按钮 - + &Continue 连续(&C) - - Wire has been closed - - 线已闭合 - - - + Last point has been removed 最后一点已被删除 - + Spline has been closed 样条曲线已闭合 - + Edges don't intersect! 边不相交! - + Cannot offset this object type 无法偏移此类对象 - + Found groups: closing each open object inside 发现组:关闭组中打开的对象 - + Found 2 objects: fusing them 发现两个对象:融合 - + Found 1 non-parametric objects: draftifying it 发现一个非参数化对象:草绘修正 - + Found 1 closed sketch object: making a face from it 发现一个闭合的草绘对象:从其创建面 - - Found closed wires: making faces - - 发现闭合线框:创建面 - - - + Found 1 open wire: closing it 发现一个开放多段线:闭合 - + Found several edges: wiring them 发现若干边:组成多段线 - + Found several non-connected edges: making compound 发现若干未连接边:混合 - + Found several non-treatable objects: making compound 发现若干未处理对象:混合 - + Found 1 parametric object: breaking its dependencies 发现一个参数化对象:去除依赖 - + Found 2 objects: subtracting them 发现两个对象:相减 - + Found several faces: splitting them 发现若干面:炸开它们 - + Found several objects: subtracting them from the first one 发现若干对象:从第一个中减去 - + Found 1 face: extracting its wires 发现一个面:提取线框 - + Found only wires: extracting their edges 仅发现线框:提取边 - + This object type is not editable 此类型对象不可编辑 - + Active object must have more than two points/nodes 当前对象必须包含2个以上的点/节点 - + Finishes the current drawing or editing operation (F) 完成当前绘图或编辑操作(F) - + Add points to the current object 将点添加到当前对象 - + Remove points from the current object 从当前对象中删除点 - + F&illed 填充(&F) - + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) 若选中则对象显示为填充,否则现实为线框 - + &Finish 完成(&F) - + If checked, an OCC-style offset will be performed instead of the classic offset 若选中则使用OCC风格偏移而非经典偏移 - + &OCC-style offset &OCC风格偏移 - + &Wipe 擦除(&W) - + Wipes the existing segments of this line and starts again from the last point (W) Wipes the existing segments of this line and starts again from the last point (W) - + Point - + Distance 距离 - + Edit 编辑 - - Create Wire - 创建线框 - - - + Create BSpline 创建B样条曲线 - + Create Rectangle 创建矩形 - + Create Circle 创建圆 - + Create Arc 创建弧 - + Create Polygon 创建多边形 - + Create Text 创建文本 - + Create Dimension 创建尺寸标注 - - Delete Measurement - 删除测量 - - - + Copy 复制 - + Move 移动 - + Change Style 更改样式 - + Rotate 旋转 - + Found 1 solidificable object: solidifying it 发现可实体化对象: 实体化 - + Found several objects or faces: making a parametric face 发现了若干对象或面: 创建参数化面 - + Found objects containing curves: fusing them 发现包含曲线的对象: 融合 - + Found several objects: fusing them 发现若干对象: 融合 - + Scale 缩放 - + Trim - Trim + 修剪 - + Start Angle - Start Angle + 起始角度 - + Aperture - Aperture + 张角 - + Installed Macros - Installed Macros + 已安装的宏 - - Draft tools - Draft tools - - - - Draft - Draft - - - - Display options - Display options - - - + Wire tools - Wire tools + 线框工具 + + + + DWire + DWire + + + + Create DWire + Create DWire + + + + DWire has been closed + + DWire has been closed + + + + + BSpline + B样条曲线 + + + + Rectangle + 矩形 + + + + Polygon + 多边形 + + + + Text + 文本 + + + + Dimension + 尺寸标注 + + + + No upgrade available for this object + + 该对象无法升级 + + + + Couldn't upgrade these objects + + 无法升级该对象 + + + + One wire is not planar, upgrade not done + + One wire is not planar, upgrade not done + + + + + Found a closed wire: making a face + + Found a closed wire: making a face + + + + + Found 1 open edge: making a line + + Found 1 open edge: making a line + + + + + Found 1 circular edge: making a circle + + Found 1 circular edge: making a circle + + + + + No more downgrade possible + + 无法再降级 + + + + Draft creation tools + 绘图创建工具 + + + + Draft modification tools + 绘图修改工具 + + + + &Draft + 绘图(&D) + + + + Context tools + 上下文工具 diff --git a/src/Mod/Draft/Resources/translations/Draft_zh-TW.qm b/src/Mod/Draft/Resources/translations/Draft_zh-TW.qm new file mode 100644 index 000000000..5dd31f073 Binary files /dev/null and b/src/Mod/Draft/Resources/translations/Draft_zh-TW.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_zh-TW.ts b/src/Mod/Draft/Resources/translations/Draft_zh-TW.ts new file mode 100644 index 000000000..4f2c418b1 --- /dev/null +++ b/src/Mod/Draft/Resources/translations/Draft_zh-TW.ts @@ -0,0 +1,1986 @@ + + + + + Draft_AddPoint + + + Add Point + 添加點 + + + + Adds a point to an existing wire/bspline + 將點添加到現有的聚合線/雲形線 + + + + Draft_AddToGroup + + + Adds the selected object(s) to an existing group + 將所選的物件添加到現有群組 + + + + Add to group... + 加入群阻... + + + + Draft_ApplyStyle + + + Apply Current Style + 套用目前的樣式 + + + + Applies current line width and color to selected objects + 將當前的線寬和顏色應用於所選物件 + + + + Draft_Arc + + + Arc + + + + + Creates an arc. CTRL to snap, SHIFT to constrain + 創建弧。按Ctrl 貼齊,按SHIFT 正交 + + + + Draft_Array + + + Array + 矩陣 + + + + Creates a polar or rectangular array from a selected object + 由所選物件建立一個極或矩形陣列 + + + + Draft_BSpline + + + B-Spline + B-Spline + + + + Creates a multiple-point b-spline. CTRL to snap, SHIFT to constrain + 建立一多點b-spline,CTRL為快速,SHIFT為手動 + + + + Draft_Circle + + + Circle + + + + + Creates a circle. CTRL to snap, ALT to select tangent objects + 創建圓。按Ctrl 貼齊、按ALT 選擇相切物件 + + + + Draft_Clone + + + Clone + 複製 + + + + Clones the selected object(s) + 複製所選物件 + + + + Draft_CloseLine + + + Close Line + 閉合線 + + + + Closes the line being drawn + 閉合正在繪製的線條 + + + + Draft_DelPoint + + + Remove Point + 移除點 + + + + Removes a point from an existing wire or bspline + 從現有的有聚合線或雲形線中移除點 + + + + Draft_Dimension + + + Dimension + 標註 + + + + Creates a dimension. CTRL to snap, SHIFT to constrain, ALT to select a segment + 創建標註。按CTRL 貼齊,按SHIFT 正交,按ALT 選取線段 + + + + Draft_Downgrade + + + Downgrade + 降級 + + + + Explodes the selected objects into simpler objects, or subtract faces + 分解所選的物件為簡單的物件,或差集面 + + + + Draft_Draft2Sketch + + + Draft to Sketch + 草圖至素描 + + + + Draft_Drawing + + + Drawing + 圖面 + + + + Puts the selected objects on a Drawing sheet. + 將所選的物件放到圖面上。 + + + + Draft_Edit + + + Edit + 編輯 + + + + Edits the active object + 編輯使用中物件 + + + + Draft_FinishLine + + + Finish line + 完成線 + + + + Finishes a line without closing it + 完成線而不閉合它 + + + + Draft_Line + + + Line + + + + + Creates a 2-point line. CTRL to snap, SHIFT to constrain + 創建 2點線。Ctrl 鍵可對齊,SHIFT 鍵正交限制 + + + + Draft_Move + + + Move + 移動 + + + + Moves the selected objects between 2 points. CTRL to snap, SHIFT to constrain, ALT to copy + 2點之間移動選取的物件。按CTRL 貼齊,按SHIFT 正交,按ALT 複製 + + + + Draft_Offset + + + Offset + 偏移複製 + + + + Offsets the active object. CTRL to snap, SHIFT to constrain, ALT to copy + 偏移複製使用中物件。按Ctrl 貼齊,按SHIFT 正交,按ALT 複製 + + + + Draft_Point + + + Point + + + + + Creates a point object + 建立一個點物件 + + + + Draft_Polygon + + + Polygon + 多邊形 + + + + Creates a regular polygon. CTRL to snap, SHIFT to constrain + 創建正多邊形。按CTRL 貼齊,按SHIFT 正交 + + + + Draft_Rectangle + + + Rectangle + 矩形 + + + + Creates a 2-point rectangle. CTRL to snap + 創建 2 點矩形。按Ctrl 貼齊 + + + + Draft_Rotate + + + Rotate + 旋轉 + + + + Rotates the selected objects. CTRL to snap, SHIFT to constrain, ALT creates a copy + 旋轉所選的物件。按CTRL 貼齊,按SHIFT 正交,按ALT 創建副本 + + + + Draft_Scale + + + Scale + 縮放 + + + + Scales the selected objects from a base point. CTRL to snap, SHIFT to constrain, ALT to copy + 從基準點縮放選取的物件。按CTRL 貼齊,按SHIFT 正交,按ALT 複製 + + + + Draft_SelectGroup + + + Select group + 選擇群組 + + + + Selects all objects with the same parents as this group + 選擇此群組中同系物件 + + + + Draft_SelectPlane + + + SelectPlane + 選取平面 + + + + Select a working plane for geometry creation + 選取一個幾何創建的工作平面 + + + + Draft_Shape2DView + + + Shape 2D view + 造型2D視圖 + + + + Creates Shape 2D views of selected objects + 建立選定物件之2D造型視圖 + + + + Convert bidirectionally between Draft and Sketch objects + 於草圖及素描物件間雙向轉換 + + + + Draft_ShowSnapBar + + + Show Snap Bar + 顯示快選區 + + + + Shows Draft snap toolbar + 顯示草圖快選工具列 + + + + Draft_Text + + + Text + 文字 + + + + Creates an annotation. CTRL to snap + 創建註解。按Ctrl 貼齊 + + + + Draft_ToggleConstructionMode + + + Toggle construcion Mode + 切換建造模式 + + + + Toggles the Construction Mode for next objects. + 切換下一個物件的建造模式。 + + + + Draft_ToggleContinueMode + + + Toggle continue Mode + 切換連續模式 + + + + Toggles the Continue Mode for next commands. + 為下一個指令切換連續模式 + + + + Draft_ToggleDisplayMode + + + Toggle display mode + 切換顯示模式 + + + + Swaps display mode of selected objects between wireframe and flatlines + 切換選取物件(線框和平板+邊緣)之間的顯示模式 + + + + Draft_ToggleGrid + + + Toggle Grid + 切換網格 + + + + Toggles the Draft gid on/off + 開/關草圖格線 + + + + Draft_ToggleSnap + + + Toggle snap + 切換快選 + + + + Toggles Draft snap on or off + 開啟或關閉草圖快選 + + + + Draft_Trimex + + + Trimex + Trimex + + + + Trims or extends the selected object, or extrudes single faces. CTRL snaps, SHIFT constrains to current segment or to normal, ALT inverts + 修剪或延展選定物件或延展單一面,CTRL為快速,SHIFT為手動限制為目前片斷或垂直,ALT為相反 + + + + Draft_UndoLine + + + Undo last segment + 復原上一段 + + + + Undoes the last drawn segment of the line being drawn + 復原已繪製線的上一線段 + + + + Draft_Upgrade + + + Upgrade + 升級 + + + + Joins the selected objects into one, or converts closed wires to filled faces, or unite faces + 將選取的物件連結成一個物件,或將閉合線成轉換成填實面,或聯結面 + + + + Draft_Wire + + + DWire + DWire + + + + Creates a multiple-point DraftWire (DWire). CTRL to snap, SHIFT to constrain + 建立一多點草圖線(DWire),CTRL可快選,SHIFT可限制 + + + + Draft_WireToBSpline + + + Wire to BSpline + 聚合線轉雲形線 + + + + Converts between Wire and BSpline + 聚合線和雲形線之間的轉換 + + + + Gui::Dialog::DlgSettingsDraft + + + General Draft Settings + 一般草案設定 + + + + Default color + 預設顏色 + + + + the default color for new objects + 新物件的的預設顏色 + + + + Default linewidth + 預設線寬 + + + + the default linewidth for new objects + 新物件的預設線寬 + + + + Snap color + 貼齊顏色 + + + + the default color for snap symbols + 貼齊符號的預設顏色 + + + + Construction color + 建構顏色 + + + + This is the default color for objects being drawn while in construction mode. + 這是建構模式中繪製物件的預設顏色。 + + + + This is the default group name for construction geometry + 這是建構幾何的預設組名稱 + + + + Construction + 建構 + + + + check this if you want to use the color/linewidth from the toolbar as default + 如果您要使用工具列預設顏色/線寬,請勾選 + + + + Save current color and linewidth across sessions + 儲存目前色彩及線寬橫跨工作階段 + + + + If this is checked, copy mode will be kept across command, otherwise commands will always start in no-copy mode + 如果這個被勾選,複製模式將被保存在指令中,否則指令開始時將維持在不複製模式 + + + + Global copy mode + 全球複製模式 + + + + If this is checked, you will always snap to existing objects while drawing. If not, you will be snapping only when pressing CTRL. + 如果勾選此選項,您將始終貼齊繪圖時的所有物件。否則,你只有按住CTRL 時會貼齊。 + + + + If this is checked, objects will appear as filled as default. Otherwise, they will appear as wireframe + 如果勾選此選項,物件將依預設值顯示為填實。否則,它們將顯示為線框 + + + + Fill objects by default + 依預設值填實物件 + + + + Default working plane + 預設工作平面 + + + + None + + + + + XY (Top) + XY (上) + + + + XZ (Front) + XZ (正面) + + + + YZ (Side) + YZ(側面) + + + + The number of decimals in internal coordinates operations (for ex. 3 = 0.001) + 這個數字為小數點後的位數(如 3 = 0.001) + + + + Default text height + 預設文字高度 + + + + Default height for texts and dimensions + 預設文字和標註高度 + + + + Default text font + 預設文字字體 + + + + This is the default font name for all Draft texts and dimensions. +It can be a font name such as "Arial", a default style such as "sans", "serif" +or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style +such as "Arial:Bold" + 這是所有草案文字和標註的預設字體名稱。如"Arial"、預設樣式如"san"、"serif"或"mono"或一個家族""Arial,Helvetica,sans"或名稱的樣式如"arial:粗體" + + + + Arial + Arial + + + + Default template sheet + 預設範本表 + + + + The default template to use when creating a new drawing sheet + 創建新圖面時使用的預設範本 + + + + Import style + 匯入樣式 + + + + This is the method choosed for importing or translating DXF object color into FreeCAD. +If color mapping is choosed, you must choose a color mapping file containing a translation table that will convert colors into linewidths. + + 這是匯入或轉譯 DXF檔成為 FreeCAD 物件顏色的方法選擇。如果選用色彩對映,您必須選擇一個顏色對映檔,包含一個將顏色轉換成線寬的轉換表。 + + + + None (fastest) + 無(最快) + + + + Use default color and linewidth + 使用預設顏色和線寬 + + + + Original color and linewidth + 原有的顏色和線寬 + + + + Color mapped to linewidth + 顏色對映到線寬 + + + + if this is checked, paper space objects will be imported too + 如果勾選此選項,圖紙空間的物件也將一併匯入 + + + + Import layouts + 匯入配置 + + + + if this is unchecked, texts/mtexts won't be imported + 如果未勾選,文字/多行文字將不會被匯入 + + + + Color mapping file + 顏色對映檔 + + + + The color mapping file for translating dxf colors into linewidths + 轉換DXF格式顏色成線寬的顏色對映檔 + + + + Max Spline Segment + 匯入文字和標註 + + + + When exporting splines to DXF, they are transformed in polylines. This value is the maximum length of each of the polyline segments. If 0, then the whole spline is treated as a straight segment. + 當雲形線匯出為 DXF,它們將轉換為聚合線。這個值是聚合線每個線段的最大長度,如果值為0,則整條雲形線將被視為一條直線段。 + + + + This is the method choosed for importing SVG object color into FreeCAD. + 這是匯入 SVG 檔成為 FreeCAD 物件顏色的方法選擇。 + + + + Check this if you want the areas (3D faces) to be imported too. + 如果你想要一併匯入(3D 面)的面域,請勾選此。 + + + + Import OCA areas + 匯入OCA區域 + + + + General settings + 一般設定 + + + + Construction group name + 建構群組名稱 + + + + Tolerance + 公差 + + + + This is the value used by functions that use a tolerance. +Values with differences below this value will be treated as same. + 這是透過公差函數的使用值。低於此值時不同的值將被視為相同值。 + + + + Dimensions & Leader arrow style + 標註及引線箭頭樣式 + + + + Dot 5 + 5號點 + + + + Dot 7 + 7號點 + + + + Dot 9 + 9號點 + + + + Circle 5 + 圓 5 + + + + Circle 7 + 圓 7 + + + + Circle 9 + 圓 9 + + + + Slash 5 + 斜線 5 + + + + Slash 7 + 斜線 7 + + + + Slash 9 + 斜線 9 + + + + Backslash 5 + 反斜線 5 + + + + Backslash 7 + 反斜線 7 + + + + Backslash 9 + 反斜線 9 + + + + Import/Export + 匯入/匯出 + + + + DXF format options + DXF 格式選項 + + + + Import texts and dimensions + 匯入文字和標註 + + + + Check this if you want the non-named blocks (beginning with a *) to be imported too + 如果您要(以 * 開頭)的未命名圖塊也要一併匯入,請勾選 + + + + Import *blocks + 匯入 *圖塊 + + + + If checked, freecad will try to joint coincident objects into wires. Beware, this can take a while... + 如果勾選此選項,freecad 將嘗試接合重合物件到聚合線。請注意,這可能需要一些時間... + + + + Join geometry + 加入幾何形 + + + + SVG format options + SVG 格式選項 + + + + OCA format options + OCA 格式選項 + + + + Alternate SVG Patterns location + 替換SVG模式位置 + + + + Here you can specify a directory containing SVG files containing <pattern> definitions that can be added to the standard Draft hatch patterns + 您可於此指定含有SVG檔之目錄,其含有可加入標準草圖影像之特徵定義 + + + + Draft interface mode + 草圖介面模式 + + + + This is the UI mode in which the Draft module will work: Toolbar mode will place all Draft settings in a separate toolbar, while taskbar mode will use the FreeCAD Taskview system for all its user interaction + 此為草圖模組之使用者介面模式,可執行:工具列模式將含有所有草圖設定於各別之工具列,工作列模式則對所有使用者介面採用FreeCAD工作視圖 + + + + Toolbar + 工具列 + + + + Taskview + 工作視圖 + + + + Constrain mod + 約束模式 + + + + The Constraining modifier key + 約束編輯鍵 + + + + shift + shift鍵 + + + + ctrl + ctrl 鍵 + + + + alt + alt鍵 + + + + Snap mod + 快選模式 + + + + The snap modifier key + 快選編輯鍵 + + + + Alt mod + Alt模式 + + + + The alt modifier key + alt編輯鍵 + + + + Normally, after copying objects, the copies get selected. If this option is checked, the base objects will be selected instead. + 通常複製物件後,會選定複製者,若勾選此選項,將改為選定原始物件 + + + + Select base objects after copying + 複製後選定原始物件 + + + + Always snap to objects (disable snap mod key) + 永遠對物件快選(取消快選模式編輯鍵) + + + + The radius for snapping to special points. Set to 0 for no distance (infinite) + 特定點之搜尋半徑設定為0或無距離(無限大) + + + + Snap range + 搜尋範圍 + + + + px + px + + + + If checked, a grid will appear when drawing + 若勾選,於繪圖時會顯示網格 + + + + Use grid + 使用網格 + + + + Grid spacing + 網格間距 + + + + The spacing between each grid line + 格線間距 + + + + Main lines every + Main lines every + + + + Mainlines will be drawn thicker. Specify here how many squares between mainlines. + 主線較粗,特別於主線間有許多方形時 + + + + Internal precision level + 內部精度等級 + + + + Dimensions precision level + 尺度精度等級 + + + + Vertical dimensions text orientation + 垂直尺度文字方向 + + + + This is the orientation of the dimension texts when those dimensions are vertical. Default is left, which is the ISO standard. + 當尺度為垂直時,此為尺度文字方向,預設為左且為ISO標準 + + + + Left (ISO standard) + 左側(ISO標準) + + + + Right + + + + + Create parametric objects + 建立參數化物件 + + + + if this is checked, objects from the same layers will be joined into Draft Blocks, turning the display faster, but making them less easily editable + 若勾選此項目,相同圖層之物件將會被整合至草圖圖塊,使顯示加快,但卻使其修正變困難 + + + + Group layers into blocks + 將圖層作為圖塊 + + + + If this is checked, all objects containing faces will be exported as 3d polyfaces + 若勾選此項目,所有具面之物件將會以3d聚合面匯出 + + + + Export 3D objects as polyface meshes + 以聚合面網格匯出3D物件 + + + + If this is checked, the Draft workbench won't appear. Useful since all of the Draft tools are also in the Arch workbench. + 若勾選,將不會顯示草圖工作區,當所有的草圖工具亦都顯示於建築工作區的時候非常有用 + + + + Hide Draft workbench + 隱藏草圖工作區 + + + + If this is checked, snapping will not occur against objects with more than the indicated number of edges + If this is checked, snapping will not occur against objects with more than the indicated number of edges + + + + Snap maximum + 同時選取相關點 + + + + Maximum number of edges to be considered for snapping + 快選邊緣最大可選數量 + + + + Maximum number of edges + 邊緣之最大數量 + + + + If checked, the Snap toolbar will be shown whenever you use snapping + 若勾選,當您使用快選時會顯示快選工具列 + + + + Show Draft Snap toolbar + 顯示草圖快選工具列 + + + + Hide Draft snap toolbar after use + 於使用後隱藏草圖快選工具列 + + + + if checked, a widget indicating the current working plane orientation appears during drawing operations + if checked, a widget indicating the current working plane orientation appears during drawing operations + + + + Show Working Plane tracker + Show Working Plane tracker + + + + If checked, the Draft grid will always be visible when the Draft workbench is active. Otherwise only when using a command + 若勾選,草圖格線當草圖工作區啟動時皆會顯示,否則僅要求時顯示 + + + + Always show + 永遠顯示 + + + + Create Sketches + 建立草圖 + + + + If this is checked, imported texts will get the standard Draft text size, instead of the size they have in the DXF document + 若勾選,匯入之文字會採用標準草圖文字尺寸來代替DXF文件中的尺寸 + + + + Use standard font size for texts + 文字採用標準尺寸 + + + + If this is checked, hatches will be converted into simple wires + 若勾選,剖面線會轉變為簡單線條 + + + + Import hatch boundaries as wires + 匯入剖面線邊界為線條 + + + + If this is checked, when polylines have a width defined, they will be rendered as closed wires with the correct width + 若勾選,當聚合線具有寬度設定時,其會以正確寬度的封閉線條渲染 + + + + Render polylines with width + 渲染帶有寬度之聚合線 + + + + Export Style + 匯出樣式 + + + + Style of SVG file to write when exporting a Sketch. + 當匯出素描時寫入SVG檔案型式 + + + + Translated (for print & display) + 轉換(用於列印和顯示) + + + + Raw (for CAM) + 原始檔(用於CAM) + + + + When exporting SVG views, make all white linework appear in black, for better readability against white backgrounds + 當匯出SVD視圖時,為使可於白色背景容易閱讀,將所有白線以黑色呈現 + + + + Translate white line color to black + 轉換白線色彩為黑色 + + + + draft + + + active command: + 啟動指令: + + + + None + + + + + Active Draft command + 啟動草案指令 + + + + X coordinate of next point + 下一個點的X座標 + + + + X + X + + + + Y + Ÿ + + + + Z + Z + + + + Y coordinate of next point + 下一個點的Y座標 + + + + Z coordinate of next point + 下一個點的Z座標 + + + + Radius + 半徑 + + + + Radius of Circle + 圓半徑 + + + + Coordinates relative to last point or absolute (SPACE) + 最後一點的相對或絕對坐標(空間) + + + + Undo the last segment (CTRL+Z) + 復原上一段 (CTRL + Z) + + + + Finishes and closes the current line (C) + 完成並閉合當前線(C) + + + + Offset + 偏移複製 + + + + XY + XY + + + + Select XY plane + 選擇 XY 平面 + + + + XZ + XZ + + + + Select XZ plane + 選擇 XZ平面 + + + + YZ + YZ + + + + Select YZ plane + 選擇 YZ 平面 + + + + View + 檢視 + + + + Select plane perpendicular to the current view + 選取垂直於當前視圖的平面 + + + + Do not project points to a drawing plane + 不投射點到繪圖平面 + + + + If checked, objects will be copied instead of moved (C) + 若選取,物件將被複製而不是移動(C) + + + + Line Color + 線條顏色 + + + + Face Color + 面顏色 + + + + Line Width + 線寬 + + + + Font Size + 字體大小 + + + + Apply to selected objects + 應用於所選物件 + + + + Toggles Construction Mode + 切換建造模式 + + + + Select Plane + 選擇平面 + + + + Line + + + + + Circle + + + + + Center X + 中心 X + + + + Arc + + + + + Pick Object + 選取物件 + + + + draft Command Bar + 草案指令列 + + + + Pick a face to define the drawing plane + + 選取一個面來定義繪圖的平面 + + + + Pick first point: + + 選取第一個點: + + + + Pick next point: + + 選取下一個點: + + + + Pick next point, or (F)inish or (C)lose: + + 選取下一個點,或(F)完成或(C)閉合: + + + + Pick opposite point: + + 選取對角點: + + + + Pick center point: + + 選取中心點: + + + + Pick radius: + + 選擇半徑: + + + + Pick start angle: + + 選取開始角度: + + + + Pick aperture: + + 選擇孔徑: + + + + Aperture angle: + + 孔徑角: + + + + Pick location point: + + 選取定位點: + + + + Select an object to move + + 選擇要移動的物件 + + + + Pick start point: + + 選取起始點: + + + + Pick end point: + + 選取終結點: + + + + Select an object to rotate + + 選取要旋轉的物件 + + + + Pick rotation center: + + 選取旋轉中心: + + + + Pick base angle: + + 選取底角: + + + + Pick rotation angle: + + 選取旋轉角度: + + + + Select an object to offset + + 選取一個物件,以偏移複製 + + + + Offset only works on one object at a time + + 每次只能對一個物件偏移複製 + + + + Pick distance: + + 選取距離: + + + + Select an object to upgrade + + 選取要升級的物件 + + + + Select an object to trim/extend + + 選取要修剪/延伸物件 + + + + Select an object to scale + + 選取要縮放的物件 + + + + Pick base point: + + 選取基準點: + + + + Pick scale factor: + + 選取縮放比例: + + + + Number of sides + 邊數 + + + + &Relative + 相對(&R) + + + + &Undo + 復原(&U) + + + + &Close + 關閉(&C) + + + + &Copy + 複製(&C) + + + + If checked, command will not finish until you press the command button again + 如果選取,命令將不會完成直到你再次按這個命令按鈕 + + + + &Continue + 繼續(&C) + + + + Last point has been removed + + 被移除之最後一點 + + + + Spline has been closed + + Spline已封閉 + + + + Edges don't intersect! + + 邊緣未相交! + + + + Cannot offset this object type + + 無法顯示此物件類型 + + + + Found groups: closing each open object inside + + 找到群組:封閉內部各開放物件 + + + + Found 2 objects: fusing them + + 找到兩個物件:將其融合 + + + + Found 1 non-parametric objects: draftifying it + + 找到一個未參數化物件:編輯此物件 + + + + Found 1 closed sketch object: making a face from it + + 找到一封閉素描物件:由其產生面 + + + + Found 1 open wire: closing it + + 找到一開放線條:將其封閉 + + + + Found several edges: wiring them + + 找到數個邊緣:將其轉為線條 + + + + Found several non-connected edges: making compound + + 找到數個未連結邊緣:將其組合 + + + + Found several non-treatable objects: making compound + + 找到數個未設定物件:製作元件 + + + + Found 1 parametric object: breaking its dependencies + + 找到一參數化物件:分離其相依性 + + + + Found 2 objects: subtracting them + + 找到兩個物件:取其差集 + + + + Found several faces: splitting them + + 找到數個面:將其分割 + + + + Found several objects: subtracting them from the first one + + 找到數個物件:由第一個進行差集 + + + + Found 1 face: extracting its wires + + 尋找一面:擷取它的線條 + + + + Found only wires: extracting their edges + + 僅找到線條:提取邊緣 + + + + This object type is not editable + + 此物件類型是不可編輯的 + + + + Active object must have more than two points/nodes + + 使用中的物件必須有兩個以上的點/節點 + + + + Finishes the current drawing or editing operation (F) + 結束目前繪圖或編輯程序(F) + + + + Add points to the current object + 於目前物件中增加點 + + + + Remove points from the current object + 將點從目前物件上移除 + + + + F&illed + &充填 + + + + Check this if the object should appear as filled, otherwise it will appear as wireframe (i) + 若要物件顯示填滿請點選此項目,否則其將顯示為線架構 + + + + &Finish + &結束 + + + + If checked, an OCC-style offset will be performed instead of the classic offset + 若勾選,會以OCC型式取代基本印刷型式 + + + + &OCC-style offset + &OCC型式印刷 + + + + &Wipe + &擦 + + + + Wipes the existing segments of this line and starts again from the last point (W) + 清除此現存在片段並重新由最後一點開始(W) + + + + Point + + + + + Distance + 距離 + + + + Edit + 編輯 + + + + Create BSpline + 建立BSpline + + + + Create Rectangle + 建立矩型 + + + + Create Circle + 建立圓 + + + + Create Arc + 建立弧線 + + + + Create Polygon + 建立多邊形 + + + + Create Text + 建立文字 + + + + Create Dimension + 建立尺度 + + + + Copy + 複製 + + + + Move + 移動 + + + + Change Style + 改變樣式 + + + + Rotate + 旋轉 + + + + Found 1 solidificable object: solidifying it + + 找到1可實體化物件:將其實體化 + + + + Found several objects or faces: making a parametric face + + 尋找不同的物件或面:建立一個面的參數 + + + + Found objects containing curves: fusing them + + 找到包還曲線之物件:將其融合 + + + + Found several objects: fusing them + + 找到數個物件:將其融合 + + + + Scale + 縮放 + + + + Trim + 修剪 + + + + Start Angle + 起始角度 + + + + Aperture + 孔徑 + + + + Installed Macros + 已安裝巨集 + + + + Wire tools + 線條工具 + + + + DWire + DWire + + + + Create DWire + 建立DWire + + + + DWire has been closed + + DWire已封閉 + + + + BSpline + BSpline + + + + Rectangle + 矩形 + + + + Polygon + 多邊形 + + + + Text + 文字 + + + + Dimension + 標註 + + + + No upgrade available for this object + + 此物件無可用更新 + + + + Couldn't upgrade these objects + + 無法更新物件 + + + + One wire is not planar, upgrade not done + + 線條未平面化無法升級 + + + + Found a closed wire: making a face + + 找到一封閉線條:產生面 + + + + Found 1 open edge: making a line + + 找到一開放邊緣:產生線 + + + + Found 1 circular edge: making a circle + + 找到一圓形邊緣:產生圓 + + + + No more downgrade possible + + 無法在下降 + + + + Draft creation tools + 草圖建立工具 + + + + Draft modification tools + 草圖修改工具 + + + + &Draft + &草圖 + + + + Context tools + 註釋工具 + + + diff --git a/src/Mod/Draft/Resources/translations/Draft_zh.qm b/src/Mod/Draft/Resources/translations/Draft_zh.qm deleted file mode 100644 index 860fe0ca7..000000000 Binary files a/src/Mod/Draft/Resources/translations/Draft_zh.qm and /dev/null differ diff --git a/src/Mod/Draft/importSVG.py b/src/Mod/Draft/importSVG.py index 7a7c7056f..5bf9de859 100644 --- a/src/Mod/Draft/importSVG.py +++ b/src/Mod/Draft/importSVG.py @@ -370,7 +370,7 @@ class svgHandler(xml.sax.ContentHandler): r = float(draftui.color.red()/255.0) g = float(draftui.color.green()/255.0) b = float(draftui.color.blue()/255.0) - self.lw = float(draftui.widthButton.value()) + self.lw = float(draftui.linewidth) else: self.lw = float(params.GetInt("linewidth")) c = params.GetUnsigned("color") diff --git a/src/Mod/Drawing/Gui/Resources/Drawing.qrc b/src/Mod/Drawing/Gui/Resources/Drawing.qrc index bc0ae4cdf..31d580141 100644 --- a/src/Mod/Drawing/Gui/Resources/Drawing.qrc +++ b/src/Mod/Drawing/Gui/Resources/Drawing.qrc @@ -20,7 +20,6 @@ icons/actions/drawing-clip.svg translations/Drawing_af.qm translations/Drawing_de.qm - translations/Drawing_es.qm translations/Drawing_fi.qm translations/Drawing_fr.qm translations/Drawing_hr.qm @@ -28,10 +27,18 @@ translations/Drawing_nl.qm translations/Drawing_no.qm translations/Drawing_pl.qm - translations/Drawing_pt.qm translations/Drawing_ru.qm - translations/Drawing_se.qm translations/Drawing_uk.qm - translations/Drawing_zh.qm + translations/Drawing_tr.qm + translations/Drawing_sv-SE.qm + translations/Drawing_zh-TW.qm + translations/Drawing_pt-BR.qm + translations/Drawing_cs.qm + translations/Drawing_sk.qm + translations/Drawing_es-ES.qm + translations/Drawing_zh-CN.qm + translations/Drawing_ja.qm + translations/Drawing_ro.qm + translations/Drawing_hu.qm diff --git a/src/Mod/Drawing/Gui/Resources/Makefile.am b/src/Mod/Drawing/Gui/Resources/Makefile.am index 69b335394..e0cfc8dfe 100644 --- a/src/Mod/Drawing/Gui/Resources/Makefile.am +++ b/src/Mod/Drawing/Gui/Resources/Makefile.am @@ -27,7 +27,7 @@ EXTRA_DIST = \ icons/View.svg \ translations/Drawing_af.qm \ translations/Drawing_de.qm \ - translations/Drawing_es.qm \ + translations/Drawing_es-ES.qm \ translations/Drawing_fi.qm \ translations/Drawing_fr.qm \ translations/Drawing_hr.qm \ @@ -35,14 +35,21 @@ EXTRA_DIST = \ translations/Drawing_nl.qm \ translations/Drawing_no.qm \ translations/Drawing_pl.qm \ - translations/Drawing_pt.qm \ + translations/Drawing_pt-BR.qm \ translations/Drawing_ru.qm \ - translations/Drawing_se.qm \ + translations/Drawing_sv-SE.qm \ translations/Drawing_uk.qm \ - translations/Drawing_zh.qm \ + translations/Drawing_zh-CN.qm \ + translations/Drawing_zh-TW.qm \ + translations/Drawing_cs.qm \ + translations/Drawing_tr.qm \ + translations/Drawing_ro.qm \ + translations/Drawing_sk.qm \ + translations/Drawing_ja.qm \ + translations/Drawing_hu.qm \ translations/Drawing_af.ts \ translations/Drawing_de.ts \ - translations/Drawing_es.ts \ + translations/Drawing_es-ES.ts \ translations/Drawing_fi.ts \ translations/Drawing_fr.ts \ translations/Drawing_hr.ts \ @@ -50,11 +57,18 @@ EXTRA_DIST = \ translations/Drawing_nl.ts \ translations/Drawing_no.ts \ translations/Drawing_pl.ts \ - translations/Drawing_pt.ts \ + translations/Drawing_pt-BR.ts \ translations/Drawing_ru.ts \ - translations/Drawing_se.ts \ + translations/Drawing_sv-SE.ts \ translations/Drawing_uk.ts \ - translations/Drawing_zh.ts \ + translations/Drawing_zh-CN.ts \ + translations/Drawing_zh-TW.ts \ + translations/Drawing_cs.ts \ + translations/Drawing_tr.ts \ + translations/Drawing_ro.ts \ + translations/Drawing_sk.ts \ + translations/Drawing_ja.ts \ + translations/Drawing_hu.ts \ Drawing.qrc \ UpdateResources.bat diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_af.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_af.qm index 343076e6a..ce8108559 100644 Binary files a/src/Mod/Drawing/Gui/Resources/translations/Drawing_af.qm and b/src/Mod/Drawing/Gui/Resources/translations/Drawing_af.qm differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_af.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_af.ts index 0cdf7b7cc..ddb2dd45c 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_af.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_af.ts @@ -1,636 +1,522 @@ - - + + CmdDrawingAnnotation - - Drawing - Tekening + + Drawing + Tekening - - &Annotation - + &Annotation + &Annotation - - - Inserts an Annotation view in the active drawing - + Inserts an Annotation view in the active drawing + Inserts an Annotation view in the active drawing - - + + CmdDrawingClip - - Drawing - Tekening + Drawing + Tekening - - &Clip - + &Clip + &Clip - - - Inserts a clip group in the active drawing - + Inserts a clip group in the active drawing + Inserts a clip group in the active drawing - - + + CmdDrawingExportPage - - File - Lêer + File + Lêer - - &Export page... - &Voer bladsy uit... + &Export page... + &Voer bladsy uit... - - - Export a page to an SVG file - Voer 'n blad uit na 'n SVG-lêer + Export a page to an SVG file + Voer 'n blad uit na 'n SVG-lêer - - + + CmdDrawingNewA3Landscape - - Drawing - Tekening + Drawing + Tekening - - - Insert new A3 landscape drawing - Voeg nuwe A3 landskaptekening in + Insert new A3 landscape drawing + Voeg nuwe A3 landskaptekening in - - + + CmdDrawingNewPage - - Drawing - Tekening + Drawing + Tekening - - - Insert new drawing - Insert new drawing + Insert new drawing + Voeg nuwe tekening in - - + + CmdDrawingNewView - - Drawing - Tekening + Drawing + Tekening - - Insert view in drawing - Voeg aansig in in die tekening + Insert view in drawing + Voeg aansig in in die tekening - - Insert a new View of a Part in the active drawing - Voeg 'n nuwe aansig van 'n onderdeel in in die aktiewe tekening + Insert a new View of a Part in the active drawing + Voeg 'n nuwe aansig van 'n onderdeel in in die aktiewe tekening - - + + CmdDrawingOpen - - Drawing - Tekening + Drawing + Tekening - - Open SVG... - Maak SVG oop... + Open SVG... + Maak SVG oop... - - Open a scalable vector graphic - Maak skaalbare vektor grafika (SVG) oop + Open a scalable vector graphic + Maak skaalbare vektor grafika (SVG) oop - - + + CmdDrawingOpenBrowserView - - Drawing - Tekening + Drawing + Tekening - - Open &browser view - + Open &browser view + Open &browser view - - - Opens the selected page in a browser view - + Opens the selected page in a browser view + Opens the selected page in a browser view - - + + CmdDrawingOrthoViews - - Drawing - Tekening + Drawing + Tekening - - Insert orthographic views - + Insert orthographic views + Insert orthographic views - - Insert an orthographic projection of a part in the active drawing - + Insert an orthographic projection of a part in the active drawing + Insert an orthographic projection of a part in the active drawing - - + + CmdDrawingProjectShape - - Drawing - Tekening + Drawing + Tekening - - Project shape... - Project shape... + Project shape... + Projekvorm... - - - Project shape onto a user-defined plane - Project shape onto a user-defined plane + Project shape onto a user-defined plane + Projekteer vorm op 'n gebruikergedefinieerde vlak - - + + DrawingGui::DrawingView - - &Background - &Agtergrond + + &Background + &Agtergrond - - &Outline - &Buitelyn + &Outline + &Buitelyn - - &Native - &Native + &Native + &Native - - &OpenGL - &OpenGL + &OpenGL + &OpenGL - - &Image - &Beeld + &Image + &Beeld - - &High Quality Antialiasing - &Hoë kwaliteit kantversagting + &High Quality Antialiasing + &Hoë kwaliteit kantversagting - - Open SVG File - Maak SVG-lêer oop + Open SVG File + Maak SVG-lêer oop - - Could not open file '%1'. - Kon nie lêer '%1' oop maak nie. + Could not open file '%1'. + Kon nie lêer '%1' oop maak nie. - - &Renderer - &Skepper + &Renderer + &Skepper - - Export PDF - Stoor na PDF + Export PDF + Stoor na PDF - - PDF file (*.pdf) - PDF-lêer (*.pdf) + PDF file (*.pdf) + PDF-lêer (*.pdf) - - Page sizes - Page sizes + Page sizes + Bladsygroottes - - A0 - A0 + A0 + A0 - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4 + A4 + A4 - - A5 - A5 + A5 + A5 - - + + DrawingGui::TaskOrthoViews - - Orthographic Projection - + + Orthographic Projection + Orthographic Projection - - Projection - + Projection + Projection - - Third Angle - + Third Angle + Third Angle - - First Angle - + First Angle + First Angle - - Primary View - + Primary View + Primary View - - Front - + Front + Vooraansig - - Right - + Right + Regs - - Back - + Back + Back - - Left - + Left + Links - - Top - + Top + Bo-aansig - - Bottom - + Bottom + Bodem - - - Rotate - + - Rotate + - Rotate - - 0 - + 0 + - - 90 - + 90 + 90 - - 180 - + 180 + 180 - - 270 - + 270 + 270 - - Primary view - + Primary view + Primary view - - Secondary Views - + Secondary Views + Secondary Views - - General - + General + Algemeen - - Auto scale / position - + Auto scale / position + Auto scale / position - - Scale - + Scale + Skaal - - Primary x / y - + Primary x / y + Primary x / y - - Secondary dx / dy - + Secondary dx / dy + Secondary dx / dy - - Show hidden - + Show hidden + Show hidden - - Show smooth - + Show smooth + Show smooth - - Axonometric - + Axonometric + Axonometric - - + + DrawingGui::TaskProjection - - Visible sharp edges - Visible sharp edges + + Visible sharp edges + Sigbare skerp kante - - Visible smooth edges - Visible smooth edges + Visible smooth edges + Sigbare sagte kante - - Visible sewn edges - Visible sewn edges + Visible sewn edges + Sigbare gestikte kante - - Visible outline edges - Visible outline edges + Visible outline edges + Sigbare buitelynkante - - Visible isoparameters - Visible isoparameters + Visible isoparameters + Sigbare isoparameters - - Hidden sharp edges - Hidden sharp edges + Hidden sharp edges + Verskuilde skerp kante - - Hidden smooth edges - Hidden smooth edges + Hidden smooth edges + Verskuilde sagte kante - - Hidden sewn edges - Hidden sewn edges + Hidden sewn edges + Verskuilde gestikte kante - - Hidden outline edges - Hidden outline edges + Hidden outline edges + Verskuilde buitelynkante - - Hidden isoparameters - Hidden isoparameters + Hidden isoparameters + Verskuilde isoparameters - - Project shapes - Project shapes + Project shapes + Projekvorms - - + + Drawing_NewPage - A0 landscape - A0 landscape + A0 landscape + A0 landskap - Insert new A0 landscape drawing - Insert new A0 landscape drawing + Insert new A0 landscape drawing + Voeg nuwe A0 landskap tekening in - A1 landscape - A1 landscape + A1 landscape + A1 landskap - Insert new A1 landscape drawing - Insert new A1 landscape drawing + Insert new A1 landscape drawing + Voeg nuwe A1 landskap tekening in - A2 landscape - A2 landscape + A2 landscape + A2 landskap - Insert new A2 landscape drawing - Insert new A2 landscape drawing + Insert new A2 landscape drawing + Voeg nuwe A2 landskap tekening in - A3 landscape - A3 landscape + A3 landscape + A3 landskap - Insert new A3 landscape drawing - Voeg nuwe A3 landskaptekening in + Insert new A3 landscape drawing + Voeg nuwe A3 landskaptekening in - A4 landscape - A4 landscape + A4 landscape + A4 landskap - Insert new A4 landscape drawing - Insert new A4 landscape drawing + Insert new A4 landscape drawing + Voeg nuwe A4 landskap tekening in - - A%1 landscape - + + Insert new A%1 landscape drawing + Insert new A%1 landscape drawing - - Insert new A%1 landscape drawing - + A%1 landscape + A%1 landscape - - + + QObject - - Choose an SVG file to open - Kies 'n SVG-lêer om oop te maak + Choose an SVG file to open + Kies 'n SVG-lêer om oop te maak - - - - Drawing viewer - Tekeningleser + + Drawing viewer + Tekeningleser - - Scalable Vector Graphics (*.svg *.svgz) - Skaalbare Vektor Grafika (*.svg *.svgz) + + Scalable Vector Graphics (*.svg *.svgz) + Skaalbare Vektor Grafika (*.svg *.svgz) - - - - - Wrong selection - Verkeerde keuse + Wrong selection + Verkeerde keuse - - - Select a Part object. - Kies 'n onderdeel. + Select a Part object. + Kies 'n onderdeel. - - - - - No page to insert - Geen bladsy om in te voeg nie + No page to insert + Geen bladsy om in te voeg nie - - - - Create a page to insert. - Skep 'n bladsy om in te voeg. + Create a page to insert. + Skep 'n bladsy om in te voeg. - - Create a page to insert views into. - + Create a page to insert views into. + Create a page to insert views into. - - - Select one Page object. - Kies een Bladsyvoorwerp. + Select one Page object. + Kies een Bladsyvoorwerp. - - SVG(*.svg) - SVG (*.svg) + SVG(*.svg) + SVG (*.svg) - - All Files (*.*) - Alle lêers (*.*) + All Files (*.*) + Alle lêers (*.*) - - Export page - Voer bladsy uit + Export page + Voer bladsy uit - - Show drawing - Show drawing + + Show drawing + Wys tekening - - Front - + + Front + Vooraansig - - Back - + Back + Back - - Right - + Right + Regs - - Left - + Left + Links - - Top - + Top + Bo-aansig - - Bottom - + Bottom + Bodem - - + + Workbench - - Drawing - Tekening + + Drawing + Tekening - + diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_cs.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_cs.qm new file mode 100644 index 000000000..103f760ae Binary files /dev/null and b/src/Mod/Drawing/Gui/Resources/translations/Drawing_cs.qm differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_cs.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_cs.ts new file mode 100644 index 000000000..3e3443151 --- /dev/null +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_cs.ts @@ -0,0 +1,522 @@ + + + + + CmdDrawingAnnotation + + + Drawing + Výkres + + + &Annotation + &Poznámka + + + Inserts an Annotation view in the active drawing + Vloží zobrazení poznámky v aktivním výkresu + + + + CmdDrawingClip + + Drawing + Výkres + + + &Clip + Výřez + + + Inserts a clip group in the active drawing + Vložení výřezu skupiny v aktivním výkresu + + + + CmdDrawingExportPage + + File + Soubor + + + &Export page... + &Exportovat stránku... + + + Export a page to an SVG file + Exportovat stránku do souboru SVG + + + + CmdDrawingNewA3Landscape + + Drawing + Výkres + + + Insert new A3 landscape drawing + Insert new A3 landscape drawing + + + + CmdDrawingNewPage + + Drawing + Výkres + + + Insert new drawing + Vložit nový výkres + + + + CmdDrawingNewView + + Drawing + Výkres + + + Insert view in drawing + Vložit pohled do výkresu + + + Insert a new View of a Part in the active drawing + Vložit nový pohled na díl do aktivního výkresu + + + + CmdDrawingOpen + + Drawing + Výkres + + + Open SVG... + Otevřít SVG... + + + Open a scalable vector graphic + Otevřít škálovatelnou vektorovou grafiku + + + + CmdDrawingOpenBrowserView + + Drawing + Výkres + + + Open &browser view + Otevřít prohlížeč + + + Opens the selected page in a browser view + Otevře vybranou stránku v prohlížeči + + + + CmdDrawingOrthoViews + + Drawing + Výkres + + + Insert orthographic views + Vložit pravoúhlé zobrazení + + + Insert an orthographic projection of a part in the active drawing + V aktivním výkresu vložit pravoúhlé promítání části + + + + CmdDrawingProjectShape + + Drawing + Výkres + + + Project shape... + Projekce tvaru... + + + Project shape onto a user-defined plane + Projekce tvaru na plochu definovanou uživatelem + + + + DrawingGui::DrawingView + + + &Background + &Pozadí + + + &Outline + Obrysová čára + + + &Native + Přirozený + + + &OpenGL + &OpenGL + + + &Image + Obrázek + + + &High Quality Antialiasing + Vysoká kvalita vyhlazování + + + Open SVG File + Otevřít soubor SVG + + + Could not open file '%1'. + Nelze otevřít soubor '%1'. + + + &Renderer + Stínovací software + + + Export PDF + Export PDF + + + PDF file (*.pdf) + Soubor PDF (*.pdf) + + + Page sizes + Rozměry stránky + + + A0 + A0 + + + A1 + A1 + + + A2 + A2 + + + A3 + A3 + + + A4 + A4 + + + A5 + A5 + + + + DrawingGui::TaskOrthoViews + + + Orthographic Projection + Pravoúhlé promítání + + + Projection + Projekce + + + Third Angle + Třetí úhel + + + First Angle + První úhel + + + Primary View + Hlavní pohled + + + Front + Přední + + + Right + Vpravo + + + Back + Zpět + + + Left + Vlevo + + + Top + Horní + + + Bottom + Dole + + + - Rotate + -Otočit + + + 0 + + + + 90 + 90 + + + 180 + 180 + + + 270 + 270 + + + Primary view + Hlavní pohled + + + Secondary Views + Sekundární zobrazení + + + General + Obecné + + + Auto scale / position + Auto měřítko / pozice + + + Scale + Změna velikosti + + + Primary x / y + Primární x / y + + + Secondary dx / dy + Sekundární dx / dy + + + Show hidden + Zobrazit skryté + + + Show smooth + Zobrazit hladké + + + Axonometric + Axonometrický + + + + DrawingGui::TaskProjection + + + Visible sharp edges + Viditelné ostré hrany + + + Visible smooth edges + Hladké hrany Viditelné + + + Visible sewn edges + Šité okraje viditelné + + + Visible outline edges + Viditelný obrys okrajů + + + Visible isoparameters + Viditelné iso parametry + + + Hidden sharp edges + Ostré hrany skryté + + + Hidden smooth edges + Hladké hrany skryté + + + Hidden sewn edges + Šité okraje skryté + + + Hidden outline edges + Obrysové čáry skryté + + + Hidden isoparameters + Skryté iso parametry + + + Project shapes + Projekce tvaru + + + + Drawing_NewPage + + A0 landscape + A0 landscape + + + Insert new A0 landscape drawing + Insert new A0 landscape drawing + + + A1 landscape + A1 landscape + + + Insert new A1 landscape drawing + Insert new A1 landscape drawing + + + A2 landscape + A2 landscape + + + Insert new A2 landscape drawing + Insert new A2 landscape drawing + + + A3 landscape + A3 landscape + + + Insert new A3 landscape drawing + Insert new A3 landscape drawing + + + A4 landscape + A4 landscape + + + Insert new A4 landscape drawing + Insert new A4 landscape drawing + + + + Insert new A%1 landscape drawing + Vložit nový výkres A%1 na šířku + + + A%1 landscape + A%1 na šířku + + + + QObject + + Choose an SVG file to open + Zvolte soubor SVG pro otevření + + + + Drawing viewer + Prohlížeč výkresů + + + + Scalable Vector Graphics (*.svg *.svgz) + Scalable Vector Graphics (*.svg *.svgz) + + + Wrong selection + Neplatný výběr + + + Select a Part object. + Vybrat díl. + + + No page to insert + Není vložen žádný výkres + + + Create a page to insert. + Vytvoření stránky pro vložení. + + + Create a page to insert views into. + Vytvoří stránku pro vkládání pohledů. + + + Select one Page object. + Vyberte jeden objekt stránky. + + + SVG(*.svg) + SVG(*.svg) + + + All Files (*.*) + Všechny soubory (*.*) + + + Export page + Exportovat stránku + + + + Show drawing + Zobrazit výkres + + + + Front + Přední + + + Back + Zpět + + + Right + Vpravo + + + Left + Vlevo + + + Top + Horní + + + Bottom + Dole + + + + Workbench + + + Drawing + Výkres + + + diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_de.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_de.qm index 1b31c06f9..d6df8abb8 100644 Binary files a/src/Mod/Drawing/Gui/Resources/translations/Drawing_de.qm and b/src/Mod/Drawing/Gui/Resources/translations/Drawing_de.qm differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_de.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_de.ts index 5506c5ec3..385bebf2b 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_de.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_de.ts @@ -1,636 +1,522 @@ - - + + CmdDrawingAnnotation - - Drawing - Zeichnung + + Drawing + Zeichnung - - &Annotation - + &Annotation + &Anmerkung - - - Inserts an Annotation view in the active drawing - + Inserts an Annotation view in the active drawing + Fügt eine Anmerkungsansicht in die aktive Zeichnung ein - - + + CmdDrawingClip - - Drawing - Zeichnung + Drawing + Zeichnung - - &Clip - + &Clip + &Ausschnitt - - - Inserts a clip group in the active drawing - + Inserts a clip group in the active drawing + eine Auschnittsgruppe in die aktive Zeichnung einfügen - - + + CmdDrawingExportPage - - File - Datei + File + Datei - - &Export page... - Seite &exportieren... + &Export page... + Seite &exportieren... - - - Export a page to an SVG file - Seite in SVG-Datei exportieren + Export a page to an SVG file + Seite in SVG-Datei exportieren - - + + CmdDrawingNewA3Landscape - - Drawing - Zeichnung + Drawing + Zeichnung - - - Insert new A3 landscape drawing - Neue A3-Zeichung einfügen (im Querformat) + Insert new A3 landscape drawing + Neue A3-Zeichung einfügen (im Querformat) - - + + CmdDrawingNewPage - - Drawing - Zeichnung + Drawing + Zeichnung - - - Insert new drawing - Neue Zeichnung einfügen + Insert new drawing + Neue Zeichnung einfügen - - + + CmdDrawingNewView - - Drawing - Zeichnung + Drawing + Zeichnung - - Insert view in drawing - Ansicht in Zeichnung einfügen + Insert view in drawing + Ansicht in Zeichnung einfügen - - Insert a new View of a Part in the active drawing - Neue Ansicht eines Teils in aktive Zeichnung einfügen + Insert a new View of a Part in the active drawing + Neue Ansicht eines Teils in aktive Zeichnung einfügen - - + + CmdDrawingOpen - - Drawing - Zeichnung + Drawing + Zeichnung - - Open SVG... - Öffne SVG... + Open SVG... + Öffne SVG... - - Open a scalable vector graphic - Eine skalierbare Vektorgrafik (SVG) öffnen + Open a scalable vector graphic + Eine skalierbare Vektorgrafik (SVG) öffnen - - + + CmdDrawingOpenBrowserView - - Drawing - Zeichnung + Drawing + Zeichnung - - Open &browser view - + Open &browser view + &Browser-Ansicht öffnen - - - Opens the selected page in a browser view - + Opens the selected page in a browser view + Öffnet die ausgewählte Seite in einer Browseransicht - - + + CmdDrawingOrthoViews - - Drawing - Zeichnung + Drawing + Zeichnung - - Insert orthographic views - + Insert orthographic views + Orthografische Ansichten einfügen - - Insert an orthographic projection of a part in the active drawing - + Insert an orthographic projection of a part in the active drawing + Orthografische Projektion eines Bauteils in die aktive Zeichnung einfügen - - + + CmdDrawingProjectShape - - Drawing - Zeichnung + Drawing + Zeichnung - - Project shape... - Fläche projizieren... + Project shape... + Fläche projizieren... - - - Project shape onto a user-defined plane - Fläche auf eine benutzerdefinierte Ebene projizieren + Project shape onto a user-defined plane + Fläche auf eine benutzerdefinierte Ebene projizieren - - + + DrawingGui::DrawingView - - &Background - &Hintergrund + + &Background + &Hintergrund - - &Outline - &Umriss + &Outline + &Umriss - - &Native - &Nativ + &Native + &Nativ - - &OpenGL - &OpenGL + &OpenGL + &OpenGL - - &Image - &Grafik + &Image + &Grafik - - &High Quality Antialiasing - &High Quality Antialiasing + &High Quality Antialiasing + &High Quality Antialiasing - - Open SVG File - SVG-Datei öffnen + Open SVG File + SVG-Datei öffnen - - Could not open file '%1'. - Datei '%1' konnte nicht geöffnet werden. + Could not open file '%1'. + Datei '%1' konnte nicht geöffnet werden. - - &Renderer - &Rendern + &Renderer + &Rendern - - Export PDF - PDF exportieren + Export PDF + PDF exportieren - - PDF file (*.pdf) - PDF-Datei (*.pdf) + PDF file (*.pdf) + PDF-Datei (*.pdf) - - Page sizes - Seiten Größen + Page sizes + Seitengrößen - - A0 - A0 + A0 + A0 - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4 + A4 + A4 - - A5 - A5 + A5 + A5 - - + + DrawingGui::TaskOrthoViews - - Orthographic Projection - + + Orthographic Projection + Orthografische Projektion - - Projection - + Projection + Projektion - - Third Angle - + Third Angle + Dritter Winkel - - First Angle - + First Angle + Erster Winkel - - Primary View - + Primary View + Hauptansicht - - Front - + Front + Vorne - - Right - + Right + Rechts - - Back - + Back + Zurück - - Left - + Left + Links - - Top - + Top + Oben - - Bottom - + Bottom + Unten - - - Rotate - + - Rotate + -Drehen - - 0 - + 0 + - - 90 - + 90 + 90 - - 180 - + 180 + 180 - - 270 - + 270 + 270 - - Primary view - + Primary view + Hauptansicht - - Secondary Views - + Secondary Views + Sekundäre Ansichen - - General - + General + Allgemein - - Auto scale / position - + Auto scale / position + Auto-Skalierung / -Position - - Scale - + Scale + Skalieren - - Primary x / y - + Primary x / y + Primäre x / y - - Secondary dx / dy - + Secondary dx / dy + Sekundäre dx / dy - - Show hidden - + Show hidden + Zeige versteckte - - Show smooth - + Show smooth + Zeige glatte - - Axonometric - + Axonometric + Axonometrisch - - + + DrawingGui::TaskProjection - - Visible sharp edges - Sichtbare scharfe Kanten + + Visible sharp edges + Sichtbare scharfe Kanten - - Visible smooth edges - Sichtbare glatte Kanten + Visible smooth edges + Sichtbare glatte Kanten - - Visible sewn edges - Visible sewn edges + Visible sewn edges + Sichtbare genähte Kanten - - Visible outline edges - Visible outline edges + Visible outline edges + Sichtbare Außenkanten - - Visible isoparameters - Visible isoparameters + Visible isoparameters + Sichtbare Isoparameter - - Hidden sharp edges - Hidden sharp edges + Hidden sharp edges + Versteckte scharfe Kanten - - Hidden smooth edges - Hidden smooth edges + Hidden smooth edges + Versteckte glatte Kanten - - Hidden sewn edges - Hidden sewn edges + Hidden sewn edges + Versteckte genähte Kanten - - Hidden outline edges - Hidden outline edges + Hidden outline edges + Versteckte Außenkanten - - Hidden isoparameters - Hidden isoparameters + Hidden isoparameters + Versteckte Isoparameter - - Project shapes - Project shapes + Project shapes + Projekt Formen - - + + Drawing_NewPage - A0 landscape - A0 landscape + A0 landscape + A0 Querformat - Insert new A0 landscape drawing - Neue A3-Zeichung einfügen (im Querformat) {0 ?} + Insert new A0 landscape drawing + Neue A3-Zeichung einfügen (im Querformat) {0 ?} - A1 landscape - A1 landscape + A1 landscape + A1 Querformat - Insert new A1 landscape drawing - Neue A3-Zeichung einfügen (im Querformat) {1 ?} + Insert new A1 landscape drawing + Neue A3-Zeichung einfügen (im Querformat) {1 ?} - A2 landscape - A2 landscape + A2 landscape + A2 Querformat - Insert new A2 landscape drawing - Neue A3-Zeichung einfügen (im Querformat) {2 ?} + Insert new A2 landscape drawing + Neue A3-Zeichung einfügen (im Querformat) {2 ?} - A3 landscape - A3 landscape + A3 landscape + A3 Querformat - Insert new A3 landscape drawing - Neue A3-Zeichung einfügen (im Querformat) + Insert new A3 landscape drawing + Neue A3-Zeichung einfügen (im Querformat) - A4 landscape - A4 landscape + A4 landscape + A4 Querformat - Insert new A4 landscape drawing - Neue A3-Zeichung einfügen (im Querformat) {4 ?} + Insert new A4 landscape drawing + Neue A3-Zeichung einfügen (im Querformat) {4 ?} - - Insert new A%1 landscape drawing - Neue A%1-Zeichung im Querformat einfügen + + Insert new A%1 landscape drawing + Füge neue Zeichnung im A%1 Querformat ein - - A%1 landscape - A%1 im Querformat + A%1 landscape + A%1-Querformat - - + + QObject - - Choose an SVG file to open - Wählen Sie eine SVG-Datei zum Öffnen aus + Choose an SVG file to open + Wählen Sie eine SVG-Datei zum Öffnen aus - - - - Drawing viewer - Zeichnungsbetrachter + + Drawing viewer + Zeichnungsbetrachter - - Scalable Vector Graphics (*.svg *.svgz) - Skalierbare Vektorgrafik (*.svg *.svgz) + + Scalable Vector Graphics (*.svg *.svgz) + Skalierbare Vektorgrafik (*.svg *.svgz) - - - - - Wrong selection - Falsche Auswahl + Wrong selection + Falsche Auswahl - - - Select a Part object. - Wählen Sie ein Teile-Objekt aus.. + Select a Part object. + Wählen Sie ein Teile-Objekt aus.. - - - - - No page to insert - Keine Seite zum einfügen + No page to insert + Keine Seite zum einfügen - - - - Create a page to insert. - Erzeugen Sie eine Seite zum Einfügen des Objekts. + Create a page to insert. + Erzeugen Sie eine Seite zum Einfügen des Objekts. - - Create a page to insert views into. - + Create a page to insert views into. + Erstelle Seite um Ansichten einzufügen. - - - Select one Page object. - Wählen Sie ein Page-Objekt aus. + Select one Page object. + Wählen Sie ein Page-Objekt aus. - - SVG(*.svg) - SVG(*.svg) + SVG(*.svg) + SVG(*.svg) - - All Files (*.*) - Alle Dateien (*.*) + All Files (*.*) + Alle Dateien (*.*) - - Export page - Seite exportieren + Export page + Seite exportieren - - Show drawing - Show drawing + + Show drawing + Zeichnung anzeigen - - Front - + + Front + Vorne - - Back - + Back + Zurück - - Right - + Right + Rechts - - Left - + Left + Links - - Top - + Top + Oben - - Bottom - + Bottom + Unten - - + + Workbench - - Drawing - Zeichnung + + Drawing + Zeichnung - + diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_es-ES.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_es-ES.qm new file mode 100644 index 000000000..b78d094b8 Binary files /dev/null and b/src/Mod/Drawing/Gui/Resources/translations/Drawing_es-ES.qm differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_es-ES.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_es-ES.ts new file mode 100644 index 000000000..0f61a7b2d --- /dev/null +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_es-ES.ts @@ -0,0 +1,522 @@ + + + + + CmdDrawingAnnotation + + + Drawing + Dibujo + + + &Annotation + &Anotación + + + Inserts an Annotation view in the active drawing + Inserta una nota en el actual dibujo + + + + CmdDrawingClip + + Drawing + Dibujo + + + &Clip + &Clip + + + Inserts a clip group in the active drawing + Inserta un clip de grupo en el actual dibujo + + + + CmdDrawingExportPage + + File + Archivo + + + &Export page... + &Exportar página... + + + Export a page to an SVG file + Exportar una página a un archivo SVG + + + + CmdDrawingNewA3Landscape + + Drawing + Dibujo + + + Insert new A3 landscape drawing + Inserta un nuevo dibujo en formato A3 + + + + CmdDrawingNewPage + + Drawing + Dibujo + + + Insert new drawing + Insertar nuevo dibujo + + + + CmdDrawingNewView + + Drawing + Dibujo + + + Insert view in drawing + Insertar vista en el dibujo + + + Insert a new View of a Part in the active drawing + Insertar una nueva Vista de una Pieza en el dibujo activo + + + + CmdDrawingOpen + + Drawing + Dibujo + + + Open SVG... + Abrir SVG... + + + Open a scalable vector graphic + Abre una imagen vectorial escalable + + + + CmdDrawingOpenBrowserView + + Drawing + Dibujo + + + Open &browser view + Abrir &vista de navegador + + + Opens the selected page in a browser view + Abre la página seleccionada en una vista de navegador + + + + CmdDrawingOrthoViews + + Drawing + Dibujo + + + Insert orthographic views + Insertar vistas ortogonales + + + Insert an orthographic projection of a part in the active drawing + Insertar una proyección ortogonal de una parte in el actual dibujo + + + + CmdDrawingProjectShape + + Drawing + Dibujo + + + Project shape... + Formas del proyecto... + + + Project shape onto a user-defined plane + Forma de proyecto en un plano definido por el usuario + + + + DrawingGui::DrawingView + + + &Background + &Fondo + + + &Outline + &Contorno + + + &Native + &Nativo + + + &OpenGL + &OpenGL + + + &Image + &Imagen + + + &High Quality Antialiasing + &Antialiasing alta calidad + + + Open SVG File + Abrir archivo SVG + + + Could not open file '%1'. + No se pudo abrir el archivo '%1'. + + + &Renderer + &Renderizador + + + Export PDF + Exportar PDF + + + PDF file (*.pdf) + Archivo PDF (*.pdf) + + + Page sizes + Tamaños de página + + + A0 + A0 + + + A1 + A1 + + + A2 + A2 + + + A3 + A3 + + + A4 + A4 + + + A5 + A5 + + + + DrawingGui::TaskOrthoViews + + + Orthographic Projection + Proyección ortogonal + + + Projection + Proyección + + + Third Angle + Tercer ángulo + + + First Angle + Primer ángulo + + + Primary View + Vista principal + + + Front + Alzado + + + Right + Derecha + + + Back + Volver + + + Left + Izquierda + + + Top + Planta + + + Bottom + Inferior + + + - Rotate + - Rotar + + + 0 + + + + 90 + 90 + + + 180 + 180 + + + 270 + 270 + + + Primary view + Vista principal + + + Secondary Views + Vistas Secundarias + + + General + General + + + Auto scale / position + Auto Escalar / Situar + + + Scale + Escalar + + + Primary x / y + x / y primario + + + Secondary dx / dy + dx / dy secundario + + + Show hidden + Mostrar ocultos + + + Show smooth + Mostrar alisado + + + Axonometric + Axonométrica + + + + DrawingGui::TaskProjection + + + Visible sharp edges + Aristas visibles + + + Visible smooth edges + Bordes suavizados visibles + + + Visible sewn edges + Bordes cosidos visibles + + + Visible outline edges + Aristas de contorno visibles + + + Visible isoparameters + Isoparámetros visibles + + + Hidden sharp edges + Aristas ocultas + + + Hidden smooth edges + Bordes suavizados ocultos + + + Hidden sewn edges + Aristas ocultas cosidas + + + Hidden outline edges + Aristas de contorno ocultas + + + Hidden isoparameters + Isoparámetros ocultos + + + Project shapes + Formas del proyecto + + + + Drawing_NewPage + + A0 landscape + A0 horizontal + + + Insert new A0 landscape drawing + Insertar nuevo dibujo A0 horizontal + + + A1 landscape + A1 horizontal + + + Insert new A1 landscape drawing + Insertar nuevo dibujo A1 horizontal + + + A2 landscape + A2 horizontal + + + Insert new A2 landscape drawing + Insertar nuevo dibujo A2 horizontal + + + A3 landscape + A3 horizontal + + + Insert new A3 landscape drawing + Inserta un nuevo dibujo en formato A3 + + + A4 landscape + A4 horizontal + + + Insert new A4 landscape drawing + Insertar nuevo dibujo A4 horizontal + + + + Insert new A%1 landscape drawing + Insertar nuevo dibujo A%1 horizontal + + + A%1 landscape + A%1 horizontal + + + + QObject + + Choose an SVG file to open + Seleccionar un archivo SVG para abrir + + + + Drawing viewer + Visor de dibujos + + + + Scalable Vector Graphics (*.svg *.svgz) + Imagen vectorial escalable (*.svg *.svgz) + + + Wrong selection + Selección incorrecta + + + Select a Part object. + Seleccionar un objeto Pieza. + + + No page to insert + Ninguna página para insertar + + + Create a page to insert. + Crear una página para insertar. + + + Create a page to insert views into. + Crear una página para insertar vistas. + + + Select one Page object. + Seleccionar una página de objetos. + + + SVG(*.svg) + SVG(*.svg) + + + All Files (*.*) + Todos los archivos (*.*) + + + Export page + Exportar página + + + + Show drawing + Mostrar dibujo + + + + Front + Alzado + + + Back + Volver + + + Right + Derecha + + + Left + Izquierda + + + Top + Planta + + + Bottom + Inferior + + + + Workbench + + + Drawing + Dibujo + + + diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_es.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_es.qm deleted file mode 100644 index 26fbf226f..000000000 Binary files a/src/Mod/Drawing/Gui/Resources/translations/Drawing_es.qm and /dev/null differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_es.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_es.ts deleted file mode 100644 index f031c0539..000000000 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_es.ts +++ /dev/null @@ -1,636 +0,0 @@ - - - - - CmdDrawingAnnotation - - - Drawing - Dibujo - - - - &Annotation - - - - - - Inserts an Annotation view in the active drawing - - - - - CmdDrawingClip - - - Drawing - Dibujo - - - - &Clip - - - - - - Inserts a clip group in the active drawing - - - - - CmdDrawingExportPage - - - File - Archivo - - - - &Export page... - &Exportar página... - - - - - Export a page to an SVG file - Exportar una página a un archivo SVG - - - - CmdDrawingNewA3Landscape - - - Drawing - Dibujo - - - - - Insert new A3 landscape drawing - Inserta un nuevo dibujo en formato A3 - - - - CmdDrawingNewPage - - - Drawing - Dibujo - - - - - Insert new drawing - Insertar nuevo dibujo - - - - CmdDrawingNewView - - - Drawing - Dibujo - - - - Insert view in drawing - Insertar vista en el dibujo - - - - Insert a new View of a Part in the active drawing - Insertar una nueva Vista de una Pieza en el dibujo activo - - - - CmdDrawingOpen - - - Drawing - Dibujo - - - - Open SVG... - Abrir SVG... - - - - Open a scalable vector graphic - Abre una imagen vectorial escalable - - - - CmdDrawingOpenBrowserView - - - Drawing - Dibujo - - - - Open &browser view - - - - - - Opens the selected page in a browser view - - - - - CmdDrawingOrthoViews - - - Drawing - Dibujo - - - - Insert orthographic views - - - - - Insert an orthographic projection of a part in the active drawing - - - - - CmdDrawingProjectShape - - - Drawing - Dibujo - - - - Project shape... - Project shape... - - - - - Project shape onto a user-defined plane - Project shape onto a user-defined plane - - - - DrawingGui::DrawingView - - - &Background - &Fondo - - - - &Outline - &Contorno - - - - &Native - &Nativo - - - - &OpenGL - &OpenGL - - - - &Image - &Imagen - - - - &High Quality Antialiasing - &Antialiasing alta calidad - - - - Open SVG File - Abrir archivo SVG - - - - Could not open file '%1'. - No se pudo abrir el archivo '%1'. - - - - &Renderer - &Renderizador - - - - Export PDF - Exportar PDF - - - - PDF file (*.pdf) - Archivo PDF (*.pdf) - - - - Page sizes - Tamaños de página - - - - A0 - A0 - - - - A1 - A1 - - - - A2 - A2 - - - - A3 - A3 - - - - A4 - A4 - - - - A5 - A5 - - - - DrawingGui::TaskOrthoViews - - - Orthographic Projection - - - - - Projection - - - - - Third Angle - - - - - First Angle - - - - - Primary View - - - - - Front - - - - - Right - - - - - Back - - - - - Left - - - - - Top - - - - - Bottom - - - - - - Rotate - - - - - 0 - - - - - 90 - - - - - 180 - - - - - 270 - - - - - Primary view - - - - - Secondary Views - - - - - General - - - - - Auto scale / position - - - - - Scale - - - - - Primary x / y - - - - - Secondary dx / dy - - - - - Show hidden - - - - - Show smooth - - - - - Axonometric - - - - - DrawingGui::TaskProjection - - - Visible sharp edges - Visible sharp edges - - - - Visible smooth edges - Visible smooth edges - - - - Visible sewn edges - Visible sewn edges - - - - Visible outline edges - Visible outline edges - - - - Visible isoparameters - Visible isoparameters - - - - Hidden sharp edges - Hidden sharp edges - - - - Hidden smooth edges - Hidden smooth edges - - - - Hidden sewn edges - Hidden sewn edges - - - - Hidden outline edges - Hidden outline edges - - - - Hidden isoparameters - Hidden isoparameters - - - - Project shapes - Project shapes - - - - Drawing_NewPage - - A0 landscape - A0 landscape - - - Insert new A0 landscape drawing - Insert new A0 landscape drawing - - - A1 landscape - A1 landscape - - - Insert new A1 landscape drawing - Insert new A1 landscape drawing - - - A2 landscape - A2 landscape - - - Insert new A2 landscape drawing - Insert new A2 landscape drawing - - - A3 landscape - A3 landscape - - - Insert new A3 landscape drawing - Inserta un nuevo dibujo en formato A3 - - - A4 landscape - A4 landscape - - - Insert new A4 landscape drawing - Insert new A4 landscape drawing - - - - A%1 landscape - - - - - Insert new A%1 landscape drawing - - - - - QObject - - - Choose an SVG file to open - Seleccionar un archivo SVG para abrir - - - - - - Drawing viewer - Visor de dibujos - - - - Scalable Vector Graphics (*.svg *.svgz) - Imagen vectorial escalable (*.svg *.svgz) - - - - - - - Wrong selection - Selección incorrecta - - - - - Select a Part object. - Seleccionar un objeto Pieza. - - - - - - - No page to insert - Ninguna página para insertar - - - - - - Create a page to insert. - Crear una página para insertar. - - - - Create a page to insert views into. - - - - - - Select one Page object. - Seleccionar una página de objetos. - - - - SVG(*.svg) - SVG(*.svg) - - - - All Files (*.*) - Todos los archivos (*.*) - - - - Export page - Exportar página - - - - Show drawing - Show drawing - - - - Front - - - - - Back - - - - - Right - - - - - Left - - - - - Top - - - - - Bottom - - - - - Workbench - - - Drawing - Dibujo - - - diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_fi.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_fi.qm index c0c0fc76c..a0817549b 100644 Binary files a/src/Mod/Drawing/Gui/Resources/translations/Drawing_fi.qm and b/src/Mod/Drawing/Gui/Resources/translations/Drawing_fi.qm differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_fi.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_fi.ts index 0cfc259dd..547282745 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_fi.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_fi.ts @@ -1,636 +1,522 @@ - - + + CmdDrawingAnnotation - - Drawing - Piirustus + + Drawing + Piirustus - - &Annotation - + &Annotation + &Annotation - - - Inserts an Annotation view in the active drawing - + Inserts an Annotation view in the active drawing + Inserts an Annotation view in the active drawing - - + + CmdDrawingClip - - Drawing - Piirustus + Drawing + Piirustus - - &Clip - + &Clip + &Clip - - - Inserts a clip group in the active drawing - + Inserts a clip group in the active drawing + Inserts a clip group in the active drawing - - + + CmdDrawingExportPage - - File - Tiedosto + File + Tiedosto - - &Export page... - &Vie sivu... + &Export page... + &Vie sivu... - - - Export a page to an SVG file - Vie sivu SVG-tiedostoon + Export a page to an SVG file + Vie sivu SVG-tiedostoon - - + + CmdDrawingNewA3Landscape - - Drawing - Piirustus + Drawing + Piirustus - - - Insert new A3 landscape drawing - Lisää uusi A3 piirustus + Insert new A3 landscape drawing + Lisää uusi A3 piirustus - - + + CmdDrawingNewPage - - Drawing - Piirustus + Drawing + Piirustus - - - Insert new drawing - Insert new drawing + Insert new drawing + Lisää uusi piirros - - + + CmdDrawingNewView - - Drawing - Piirustus + Drawing + Piirustus - - Insert view in drawing - Insert view in drawing + Insert view in drawing + Lisää näkymä piirustukseen - - Insert a new View of a Part in the active drawing - Insert a new View of a Part in the active drawing + Insert a new View of a Part in the active drawing + Lisää uusi näkymä aktiivisen piirustuksen osasta - - + + CmdDrawingOpen - - Drawing - Piirustus + Drawing + Piirustus - - Open SVG... - Avaa SVG ... + Open SVG... + Avaa SVG ... - - Open a scalable vector graphic - Open a scalable vector graphic + Open a scalable vector graphic + Avaa skaalautuva vektorigrafiikka - - + + CmdDrawingOpenBrowserView - - Drawing - Piirustus + Drawing + Piirustus - - Open &browser view - + Open &browser view + Open &browser view - - - Opens the selected page in a browser view - + Opens the selected page in a browser view + Opens the selected page in a browser view - - + + CmdDrawingOrthoViews - - Drawing - Piirustus + Drawing + Piirustus - - Insert orthographic views - + Insert orthographic views + Insert orthographic views - - Insert an orthographic projection of a part in the active drawing - + Insert an orthographic projection of a part in the active drawing + Insert an orthographic projection of a part in the active drawing - - + + CmdDrawingProjectShape - - Drawing - Piirustus + Drawing + Piirustus - - Project shape... - Project shape... + Project shape... + Projektin muodot... - - - Project shape onto a user-defined plane - Project shape onto a user-defined plane + Project shape onto a user-defined plane + Projektin muoto käyttäjän määrittelemän tason päälle - - + + DrawingGui::DrawingView - - &Background - &Tausta + + &Background + &Tausta - - &Outline - &Outline + &Outline + &Jäsennys - - &Native - &Native + &Native + &Paikallinen - - &OpenGL - &OpenGL + &OpenGL + &OpenGL - - &Image - &Kuva + &Image + &Kuva - - &High Quality Antialiasing - &High Quality Antialiasing + &High Quality Antialiasing + &Korkealaatuinen reunojen pehmennys - - Open SVG File - Avaa SVG-tiedosto + Open SVG File + Avaa SVG-tiedosto - - Could not open file '%1'. - Tiedostoa '%1' ei voitu avata. + Could not open file '%1'. + Tiedostoa '%1' ei voitu avata. - - &Renderer - &Renderöinti + &Renderer + &Renderöinti - - Export PDF - Vie PDF-asiakirjaan + Export PDF + Vie PDF-asiakirjaan - - PDF file (*.pdf) - PDF-tiedosto (*.pdf) + PDF file (*.pdf) + PDF-tiedosto (*.pdf) - - Page sizes - Page sizes + Page sizes + Sivukoot - - A0 - A0 + A0 + A0 - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4 + A4 + A4 - - A5 - A5 + A5 + A5 - - + + DrawingGui::TaskOrthoViews - - Orthographic Projection - + + Orthographic Projection + Orthographic Projection - - Projection - + Projection + Projektio - - Third Angle - + Third Angle + Third Angle - - First Angle - + First Angle + First Angle - - Primary View - + Primary View + Primary View - - Front - + Front + Etupuoli - - Right - + Right + Oikea - - Back - + Back + Back - - Left - + Left + Vasen - - Top - + Top + Yläpuoli - - Bottom - + Bottom + Bottom - - - Rotate - + - Rotate + - Rotate - - 0 - + 0 + - - 90 - + 90 + 90 - - 180 - + 180 + 180 - - 270 - + 270 + 270 - - Primary view - + Primary view + Primary view - - Secondary Views - + Secondary Views + Secondary Views - - General - + General + Yleiset - - Auto scale / position - + Auto scale / position + Auto scale / position - - Scale - + Scale + Skaalaa - - Primary x / y - + Primary x / y + Primary x / y - - Secondary dx / dy - + Secondary dx / dy + Secondary dx / dy - - Show hidden - + Show hidden + Show hidden - - Show smooth - + Show smooth + Show smooth - - Axonometric - + Axonometric + Axonometric - - + + DrawingGui::TaskProjection - - Visible sharp edges - Visible sharp edges + + Visible sharp edges + Näytä terävät reunat - - Visible smooth edges - Visible smooth edges + Visible smooth edges + Näytä pehmeät reunat - - Visible sewn edges - Visible sewn edges + Visible sewn edges + Näytä pehmeäkantiset reunat - - Visible outline edges - Visible outline edges + Visible outline edges + Näytä jäsennyksen reunat - - Visible isoparameters - Visible isoparameters + Visible isoparameters + Näytä isoparametriset - - Hidden sharp edges - Hidden sharp edges + Hidden sharp edges + Piilota terävät reunat - - Hidden smooth edges - Hidden smooth edges + Hidden smooth edges + Hidden pehmeät reunat - - Hidden sewn edges - Hidden sewn edges + Hidden sewn edges + Piilota pehmeäkantiset reunat - - Hidden outline edges - Hidden outline edges + Hidden outline edges + Piilotetut ääriviivojen reunat - - Hidden isoparameters - Hidden isoparameters + Hidden isoparameters + Piilota isoparametrit - - Project shapes - Project shapes + Project shapes + Projektin muodot - - + + Drawing_NewPage - A0 landscape - A0 landscape + A0 landscape + A0 vaakakuva - Insert new A0 landscape drawing - Insert new A0 landscape drawing + Insert new A0 landscape drawing + Lisää uusi A0 vaakakuva, piirustus - A1 landscape - A1 landscape + A1 landscape + A1 vaakakuva - Insert new A1 landscape drawing - Insert new A1 landscape drawing + Insert new A1 landscape drawing + Lisää uusi A1 vaakakuva, piirustus - A2 landscape - A2 landscape + A2 landscape + A2 vaakakuva - Insert new A2 landscape drawing - Insert new A2 landscape drawing + Insert new A2 landscape drawing + Lisää uusi A2 vaakakuva, piirustus - A3 landscape - A3 landscape + A3 landscape + A3 pystykuva - Insert new A3 landscape drawing - Lisää uusi A3 piirustus + Insert new A3 landscape drawing + Lisää uusi A3 piirustus - A4 landscape - A4 landscape + A4 landscape + A4 vaakakuva - Insert new A4 landscape drawing - Insert new A4 landscape drawing + Insert new A4 landscape drawing + Lisää uusi A4 vaakakuva, piirustus - - A%1 landscape - + + Insert new A%1 landscape drawing + Insert new A%1 landscape drawing - - Insert new A%1 landscape drawing - + A%1 landscape + A%1 landscape - - + + QObject - - Choose an SVG file to open - Valitse avattava SVG-tiedosto + Choose an SVG file to open + Valitse avattava SVG-tiedosto - - - - Drawing viewer - Piirustuksen katseluohjelma + + Drawing viewer + Piirustuksen katseluohjelma - - Scalable Vector Graphics (*.svg *.svgz) - Scalable Vector Graphics (*.svg *.svgz) + + Scalable Vector Graphics (*.svg *.svgz) + Skaalautuvat Vektori Grafiikat (*.svg *.svgz) - - - - - Wrong selection - Väärä valinta + Wrong selection + Väärä valinta - - - Select a Part object. - Select a Part object. + Select a Part object. + Valitse osa-objekti. - - - - - No page to insert - No page to insert + No page to insert + Sivua ei ole luotu kuvan lisäämistä varten - - - - Create a page to insert. - Create a page to insert. + Create a page to insert. + Luo sivu kuvien lisäämistä varten. - - Create a page to insert views into. - + Create a page to insert views into. + Create a page to insert views into. - - - Select one Page object. - Valitse yksi sivu objektista. + Select one Page object. + Valitse yksi sivu objektista. - - SVG(*.svg) - SVG(*.svg) + SVG(*.svg) + SVG(*.svg) - - All Files (*.*) - Kaikki tiedostot (*.*) + All Files (*.*) + Kaikki tiedostot (*.*) - - Export page - Vie sivu + Export page + Vie sivu - - Show drawing - Show drawing + + Show drawing + Näytä piirustus - - Front - + + Front + Etupuoli - - Back - + Back + Back - - Right - + Right + Oikea - - Left - + Left + Vasen - - Top - + Top + Yläpuoli - - Bottom - + Bottom + Bottom - - + + Workbench - - Drawing - Piirustus + + Drawing + Piirustus - + diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_fr.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_fr.qm index 1816d3912..f9b75f535 100644 Binary files a/src/Mod/Drawing/Gui/Resources/translations/Drawing_fr.qm and b/src/Mod/Drawing/Gui/Resources/translations/Drawing_fr.qm differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_fr.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_fr.ts index 2b77a3904..0a60f32e4 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_fr.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_fr.ts @@ -1,636 +1,522 @@ - - + + CmdDrawingAnnotation - - Drawing - Mise en plan + + Drawing + Mise en plan - - &Annotation - + &Annotation + &Annotation - - - Inserts an Annotation view in the active drawing - + Inserts an Annotation view in the active drawing + Insère une annotation sur la feuille active - - + + CmdDrawingClip - - Drawing - Mise en plan + Drawing + Mise en plan - - &Clip - + &Clip + &Masque - - - Inserts a clip group in the active drawing - + Inserts a clip group in the active drawing + Insère un groupe de masquage sur la feuille active - - + + CmdDrawingExportPage - - File - Fichier + File + Fichier - - &Export page... - &Exporter la page... + &Export page... + &Exporter la page... - - - Export a page to an SVG file - Exporter une page vers un fichier SVG + Export a page to an SVG file + Exporter une page vers un fichier SVG - - + + CmdDrawingNewA3Landscape - - Drawing - Mise en plan + Drawing + Mise en plan - - - Insert new A3 landscape drawing - Insérer une nouvelle mise en plan A3 paysage + Insert new A3 landscape drawing + Insère une nouvelle feuille A3 paysage - - + + CmdDrawingNewPage - - Drawing - Mise en plan + Drawing + Mise en plan - - - Insert new drawing - Insérer une nouvelle mise en plan + Insert new drawing + Insérer une nouvelle feuille - - + + CmdDrawingNewView - - Drawing - Mise en plan + Drawing + Mise en plan - - Insert view in drawing - Insérer une vue dans la page + Insert view in drawing + Insérer une vue dans la page - - Insert a new View of a Part in the active drawing - Insérer une nouvelle vue de la pièce dans la page active + Insert a new View of a Part in the active drawing + Insérer une nouvelle vue de la pièce dans la page active - - + + CmdDrawingOpen - - Drawing - Mise en plan + Drawing + Mise en plan - - Open SVG... - Ouvrir SVG... + Open SVG... + Ouvrir SVG... - - Open a scalable vector graphic - Ouvrir un fichier vectoriel SVG + Open a scalable vector graphic + Ouvrir un fichier vectoriel SVG - - + + CmdDrawingOpenBrowserView - - Drawing - Mise en plan + Drawing + Mise en plan - - Open &browser view - + Open &browser view + Vue &web - - - Opens the selected page in a browser view - + Opens the selected page in a browser view + Ouvre la feuille sélectionnée dans le navigateur web - - + + CmdDrawingOrthoViews - - Drawing - Mise en plan + Drawing + Mise en plan - - Insert orthographic views - + Insert orthographic views + Insérer des vues orthographiques - - Insert an orthographic projection of a part in the active drawing - + Insert an orthographic projection of a part in the active drawing + Insérer une projection orthographique d'une forme sur la feuille active - - + + CmdDrawingProjectShape - - Drawing - Mise en plan + Drawing + Mise en plan - - Project shape... - Projeter la forme... + Project shape... + Projeter la forme... - - - Project shape onto a user-defined plane - Projeter une forme sur un plan défini par l'utilisateur + Project shape onto a user-defined plane + Projeter une forme sur un plan défini par l'utilisateur - - + + DrawingGui::DrawingView - - &Background - &Arrière-plan + + &Background + &Arrière-plan - - &Outline - &Contour + &Outline + &Contour - - &Native - &Natif + &Native + &Natif - - &OpenGL - &OpenGL + &OpenGL + &OpenGL - - &Image - &Image + &Image + &Image - - &High Quality Antialiasing - Anticrénelage &haute qualité + &High Quality Antialiasing + Anticrénelage &haute qualité - - Open SVG File - Ouvrir un fichier SVG + Open SVG File + Ouvrir un fichier SVG - - Could not open file '%1'. - Impossible d'ouvrir le fichier'%1'. + Could not open file '%1'. + Impossible d'ouvrir le fichier'%1'. - - &Renderer - Moteur de &rendu + &Renderer + Moteur de &rendu - - Export PDF - Exporter vers PDF + Export PDF + Exporter vers PDF - - PDF file (*.pdf) - Fichier PDF (*.pdf) + PDF file (*.pdf) + Fichier PDF (*.pdf) - - Page sizes - Formats de papier + Page sizes + Formats de papier - - A0 - A0 + A0 + A0 - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4 + A4 + A4 - - A5 - A5 + A5 + A5 - - + + DrawingGui::TaskOrthoViews - - Orthographic Projection - + + Orthographic Projection + Projection orthographique - - Projection - + Projection + Projection - - Third Angle - + Third Angle + Troisième angle - - First Angle - + First Angle + Premier angle - - Primary View - + Primary View + Vue principale - - Front - + Front + Frontal - - Right - + Right + Droit - - Back - + Back + Arrière - - Left - + Left + Gauche - - Top - + Top + Dessus - - Bottom - + Bottom + Dessous - - - Rotate - + - Rotate + -Faire pivoter - - 0 - + 0 + - - 90 - + 90 + 90 - - 180 - + 180 + 180 - - 270 - + 270 + 270 - - Primary view - + Primary view + Vue principale - - Secondary Views - + Secondary Views + Vues secondaires - - General - + General + Général - - Auto scale / position - + Auto scale / position + Échelle / position auto - - Scale - + Scale + Échelle - - Primary x / y - + Primary x / y + x / y principaux - - Secondary dx / dy - + Secondary dx / dy + dx et dy secondaires - - Show hidden - + Show hidden + Monter les bords cachés - - Show smooth - + Show smooth + Montrer les bords lissés - - Axonometric - + Axonometric + Axonométrique - - + + DrawingGui::TaskProjection - - Visible sharp edges - Arêtes vives visibles + + Visible sharp edges + Arêtes vives visibles - - Visible smooth edges - Arêtes de tangence visibles + Visible smooth edges + Arêtes de tangence visibles - - Visible sewn edges - Arêtes cousues visibles + Visible sewn edges + Arêtes cousues visibles - - Visible outline edges - Arêtes de contour visibles + Visible outline edges + Arêtes de contour visibles - - Visible isoparameters - Isoparamètres visibles + Visible isoparameters + Isoparamètres visibles - - Hidden sharp edges - Arêtes vives masquées + Hidden sharp edges + Arêtes vives masquées - - Hidden smooth edges - Arêtes de tangence masquées + Hidden smooth edges + Arêtes de tangence masquées - - Hidden sewn edges - Arêtes cousues masquées + Hidden sewn edges + Arêtes cousues masquées - - Hidden outline edges - Arêtes de contour masquées + Hidden outline edges + Arêtes de contour masquées - - Hidden isoparameters - Isoparamètres masqués + Hidden isoparameters + Isoparamètres masqués - - Project shapes - Projeter les formes + Project shapes + Projeter les formes - - + + Drawing_NewPage - A0 landscape - A0 paysage + A0 landscape + A0 paysage - Insert new A0 landscape drawing - Insérer une mise en plan A0 paysage + Insert new A0 landscape drawing + Insérer une feuille A0 paysage - A1 landscape - A1 paysage + A1 landscape + A1 paysage - Insert new A1 landscape drawing - Insérer une mise en plan A1 paysage + Insert new A1 landscape drawing + Insérer une feuille A1 paysage - A2 landscape - A2 paysage + A2 landscape + A2 paysage - Insert new A2 landscape drawing - Insérer une mise en plan A2 paysage + Insert new A2 landscape drawing + Insérer une feuille A2 paysage - A3 landscape - A3 Paysage + A3 landscape + A3 Paysage - Insert new A3 landscape drawing - Insérer une nouvelle mise en plan A3 paysage + Insert new A3 landscape drawing + Insère une nouvelle feuille A3 paysage - A4 landscape - A4 paysage + A4 landscape + A4 paysage - Insert new A4 landscape drawing - Insérer une mise en plan A4 paysage + Insert new A4 landscape drawing + Insérer une feuille A4 paysage - - A%1 landscape - + + Insert new A%1 landscape drawing + Insérer une nouvelle feuille A%1 paysage - - Insert new A%1 landscape drawing - + A%1 landscape + A%1 paysage - - + + QObject - - Choose an SVG file to open - Choisir un fichier SVG à ouvrir + Choose an SVG file to open + Choisir un fichier SVG à ouvrir - - - - Drawing viewer - Visionneuse de mise en plan + + Drawing viewer + Visionneuse de mise en plan - - Scalable Vector Graphics (*.svg *.svgz) - Fichier vectoriel SVG (*.svg *.svgz) + + Scalable Vector Graphics (*.svg *.svgz) + Fichier vectoriel SVG (*.svg *.svgz) - - - - - Wrong selection - Mauvaise sélection + Wrong selection + Mauvaise sélection - - - Select a Part object. - Sélectionnez un objet pièce. + Select a Part object. + Sélectionnez un objet pièce. - - - - - No page to insert - Aucune page pour insérer + No page to insert + Aucune page pour insérer - - - - Create a page to insert. - Créer une page à insérer. + Create a page to insert. + Créer une page à insérer. - - Create a page to insert views into. - + Create a page to insert views into. + Crée une feuille pour y insérer des vues - - - Select one Page object. - Sélectionnez un objet Page. + Select one Page object. + Sélectionnez un objet Page. - - SVG(*.svg) - SVG (*.svg) + SVG(*.svg) + SVG (*.svg) - - All Files (*.*) - Tous les fichiers (*.*) + All Files (*.*) + Tous les fichiers (*.*) - - Export page - Exporter la page + Export page + Exporter la page - - Show drawing - Afficher la mise en plan + + Show drawing + Afficher la mise en plan - - Front - + + Front + Frontal - - Back - + Back + Arrière - - Right - + Right + Droit - - Left - + Left + Gauche - - Top - + Top + Dessus - - Bottom - + Bottom + Dessous - - + + Workbench - - Drawing - Mise en plan + + Drawing + Mise en plan - + diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_hr.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_hr.qm index 930f588c9..228d1ed4c 100644 Binary files a/src/Mod/Drawing/Gui/Resources/translations/Drawing_hr.qm and b/src/Mod/Drawing/Gui/Resources/translations/Drawing_hr.qm differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_hr.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_hr.ts index 5f224d090..ee468b243 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_hr.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_hr.ts @@ -1,636 +1,522 @@ - - + + CmdDrawingAnnotation - - Drawing - Crtanje + + Drawing + Crtež - - &Annotation - + &Annotation + Anotacija - - - Inserts an Annotation view in the active drawing - + Inserts an Annotation view in the active drawing + Dodaje anotacijski pogled aktivnom crtežu - - + + CmdDrawingClip - - Drawing - Crtanje + Drawing + Crtež - - &Clip - + &Clip + &Izrez - - - Inserts a clip group in the active drawing - + Inserts a clip group in the active drawing + Dodaje izrezanu grupu aktivnom pogledu - - + + CmdDrawingExportPage - - File - Datoteka + File + Datoteka - - &Export page... - Izvedi stranicu... + &Export page... + Izvedi stranicu... - - - Export a page to an SVG file - Izvoz stranicu za SVG datoteku + Export a page to an SVG file + Izvoz stranicu za SVG datoteku - - + + CmdDrawingNewA3Landscape - - Drawing - Crtanje + Drawing + Crtež - - - Insert new A3 landscape drawing - Umetanje novog A3 pejzaža za crtanje + Insert new A3 landscape drawing + Umetanje novog A3 pejzaža za crtanje - - + + CmdDrawingNewPage - - Drawing - Crtanje + Drawing + Crtež - - - Insert new drawing - Umetni novi crtež + Insert new drawing + Umetni novi crtež - - + + CmdDrawingNewView - - Drawing - Crtanje + Drawing + Crtež - - Insert view in drawing - Umetnite pogled u crtežu + Insert view in drawing + Umetnite pogled u crtežu - - Insert a new View of a Part in the active drawing - Umetnite novi pogled na dio u aktivnom crtežu + Insert a new View of a Part in the active drawing + Umetnite novi pogled na dio u aktivnom crtežu - - + + CmdDrawingOpen - - Drawing - Crtanje + Drawing + Crtež - - Open SVG... - Otvori SVG ... + Open SVG... + Otvori SVG ... - - Open a scalable vector graphic - Otvorite ljestivcu- vektorska grafika + Open a scalable vector graphic + Otvorite ljestivcu- vektorska grafika - - + + CmdDrawingOpenBrowserView - - Drawing - Crtanje + Drawing + Crtež - - Open &browser view - + Open &browser view + Otvori za pregledavanje - - - Opens the selected page in a browser view - + Opens the selected page in a browser view + Otvara odabrani crtež u modu pregledavanja - - + + CmdDrawingOrthoViews - - Drawing - Crtanje + Drawing + Crtež - - Insert orthographic views - + Insert orthographic views + Umetni ortografske poglede - - Insert an orthographic projection of a part in the active drawing - + Insert an orthographic projection of a part in the active drawing + Postavi ortografsku projekciju parta u aktivnom crtežu - - + + CmdDrawingProjectShape - - Drawing - Crtanje + Drawing + Crtež - - Project shape... - Projecirani oblik ... + Project shape... + Projecirani oblik ... - - - Project shape onto a user-defined plane - Projeciraj oblik na korisnički definiranu ravninu + Project shape onto a user-defined plane + Projeciraj oblik na korisnički definiranu ravninu - - + + DrawingGui::DrawingView - - &Background - I pozadina + + &Background + I pozadina - - &Outline - &amp; Potez + &Outline + &amp; Potez - - &Native - &amp; Prirodan + &Native + &amp; Prirodan - - &OpenGL - I OpenGL + &OpenGL + I OpenGL - - &Image - I slike + &Image + I slike - - &High Quality Antialiasing - &amp; visko kvalitetno anti prekrivanje + &High Quality Antialiasing + &amp; visko kvalitetno anti prekrivanje - - Open SVG File - Otvori SVG datoteku + Open SVG File + Otvori SVG datoteku - - Could not open file '%1'. - Nije moguće otvoriti datoteku '%1. + Could not open file '%1'. + Nije moguće otvoriti datoteku '%1. - - &Renderer - &; Renderer + &Renderer + &; Renderer - - Export PDF - Izvoz PDF + Export PDF + Izvoz PDF - - PDF file (*.pdf) - PDF datoteke (*. pdf) + PDF file (*.pdf) + PDF datoteke (*. pdf) - - Page sizes - Veličine stranica + Page sizes + Veličine stranica - - A0 - A0 + A0 + A0 - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4 + A4 + A4 - - A5 - A5 + A5 + A5 - - + + DrawingGui::TaskOrthoViews - - Orthographic Projection - + + Orthographic Projection + Ortografska projekcija - - Projection - + Projection + Projekcija - - Third Angle - + Third Angle + Treći kut - - First Angle - + First Angle + Prvi kut - - Primary View - + Primary View + Primarni pogled - - Front - + Front + Ispred - - Right - + Right + Desno - - Back - + Back + Natrag - - Left - + Left + Lijevo - - Top - + Top + Gore - - Bottom - + Bottom + Ispod - - - Rotate - + - Rotate + - Rotiraj - - 0 - + 0 + - - 90 - + 90 + 90 - - 180 - + 180 + 180 - - 270 - + 270 + 270 - - Primary view - + Primary view + Primarni pogled - - Secondary Views - + Secondary Views + Sekundarni pogledi - - General - + General + Općenito - - Auto scale / position - + Auto scale / position + automatski skaliraj/pozicioniraj - - Scale - + Scale + Skaliraj - - Primary x / y - + Primary x / y + Primarni x / y - - Secondary dx / dy - + Secondary dx / dy + Sekundarni dx / dy - - Show hidden - + Show hidden + Prikaži skriveno - - Show smooth - + Show smooth + Prikaži izglađeno - - Axonometric - + Axonometric + Aksonometrijski - - + + DrawingGui::TaskProjection - - Visible sharp edges - Vidljivi oštri rubovi + + Visible sharp edges + Vidljivi oštri rubovi - - Visible smooth edges - Vidljivi glatki rubovi + Visible smooth edges + Vidljivi glatki rubovi - - Visible sewn edges - Vidljivi iscrtkani rubovi + Visible sewn edges + Vidljivi iscrtkani rubovi - - Visible outline edges - Vidljivi vanjski rubovi + Visible outline edges + Vidljivi vanjski rubovi - - Visible isoparameters - Vidljivi izometrijski parametri + Visible isoparameters + Vidljivi izometrijski parametri - - Hidden sharp edges - Skriveni oštri rubovi + Hidden sharp edges + Skriveni oštri rubovi - - Hidden smooth edges - Skriveni glatki rubovi + Hidden smooth edges + Skriveni glatki rubovi - - Hidden sewn edges - Skriveni iscrtkani rubovi + Hidden sewn edges + Skriveni iscrtkani rubovi - - Hidden outline edges - Skriveni vanjski rubovi + Hidden outline edges + Skriveni vanjski rubovi - - Hidden isoparameters - Skriveni izometrijski parametri + Hidden isoparameters + Skriveni izometrijski parametri - - Project shapes - Projecirani oblik + Project shapes + Projecirani oblik - - + + Drawing_NewPage - A0 landscape - A0 pejzaž + A0 landscape + A0 pejzaž - Insert new A0 landscape drawing - Umetnite novi A0 pejzažni crtež + Insert new A0 landscape drawing + Umetnite novi A0 pejzažni crtež - A1 landscape - A1 pejzaž + A1 landscape + A1 pejzaž - Insert new A1 landscape drawing - Umetnite novi A1 pejzažni crtež + Insert new A1 landscape drawing + Umetnite novi A1 pejzažni crtež - A2 landscape - A2 pejzaž + A2 landscape + A2 pejzaž - Insert new A2 landscape drawing - Umetnite novi A2 pejzažni crtež + Insert new A2 landscape drawing + Umetnite novi A2 pejzažni crtež - A3 landscape - A3 pejzaž + A3 landscape + A3 pejzaž - Insert new A3 landscape drawing - Umetanje novog A3 pejzaža za crtanje + Insert new A3 landscape drawing + Umetanje novog A3 pejzaža za crtanje - A4 landscape - A4 pejzaž + A4 landscape + A4 pejzaž - Insert new A4 landscape drawing - Umetnite novi A4 pejzažni crtež + Insert new A4 landscape drawing + Umetnite novi A4 pejzažni crtež - - A%1 landscape - + + Insert new A%1 landscape drawing + Umetni novi A%1 pejzažni crtež - - Insert new A%1 landscape drawing - + A%1 landscape + A%1 pejzaž - - + + QObject - - Choose an SVG file to open - Odaberite SVG datoteku za otvaranje + Choose an SVG file to open + Odaberite SVG datoteku za otvaranje - - - - Drawing viewer - Preglednik za crtanje + + Drawing viewer + Preglednik za crtanje - - Scalable Vector Graphics (*.svg *.svgz) - Ljestvica- Vector Graphics (SVG *. *. svgz) + + Scalable Vector Graphics (*.svg *.svgz) + Ljestvica- Vector Graphics (SVG *. *. svgz) - - - - - Wrong selection - Pogrešan odabir + Wrong selection + Pogrešan odabir - - - Select a Part object. - Odaberite dio objekta. + Select a Part object. + Odaberite dio objekta. - - - - - No page to insert - Nema stranica za umetanje + No page to insert + Nema stranica za umetanje - - - - Create a page to insert. - Stvaranje stranica za umetanje. + Create a page to insert. + Stvaranje stranica za umetanje. - - Create a page to insert views into. - + Create a page to insert views into. + Stvori stranicu na koju će se dodati pogled. - - - Select one Page object. - Odaberite jednu stranicu objekta + Select one Page object. + Odaberite jednu stranicu objekta - - SVG(*.svg) - SVG (*. svg) + SVG(*.svg) + SVG (*. svg) - - All Files (*.*) - Sve datoteke (*.*) + All Files (*.*) + Sve datoteke (*.*) - - Export page - Izvedi stranicu + Export page + Izvedi stranicu - - Show drawing - Prikaži crtež + + Show drawing + Prikaži crtež - - Front - + + Front + Ispred - - Back - + Back + Natrag - - Right - + Right + Desno - - Left - + Left + Lijevo - - Top - + Top + Gore - - Bottom - + Bottom + Ispod - - + + Workbench - - Drawing - Crtanje + + Drawing + Crtež - + diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_hu.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_hu.qm index 22a197a69..055008d58 100644 Binary files a/src/Mod/Drawing/Gui/Resources/translations/Drawing_hu.qm and b/src/Mod/Drawing/Gui/Resources/translations/Drawing_hu.qm differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_hu.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_hu.ts index 7e6c83c5a..c7f71ccdb 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_hu.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_hu.ts @@ -1,636 +1,522 @@ - - + + CmdDrawingAnnotation - - Drawing - Rajz + + Drawing + Rajzolás - - &Annotation - + &Annotation + M&Agyarázó jesgyzet - - - Inserts an Annotation view in the active drawing - + Inserts an Annotation view in the active drawing + Egy jegyzet nézet beillesztése az aktív rajzba - - + + CmdDrawingClip - - Drawing - Rajz + Drawing + Rajzolás - - &Clip - + &Clip + Kivágás - - - Inserts a clip group in the active drawing - + Inserts a clip group in the active drawing + Kivágás csoport beillesztése az aktív rajzba - - + + CmdDrawingExportPage - - File - Fájl + File + Fájl - - &Export page... - #Oldal exportálása... + &Export page... + Oldal &exportálása... - - - Export a page to an SVG file - Oldalt exportál SVG fájlba + Export a page to an SVG file + Oldalt exportál SVG fájlba - - + + CmdDrawingNewA3Landscape - - Drawing - Rajz + Drawing + Rajzolás - - - Insert new A3 landscape drawing - Új A3 tájkép rajzot illeszt + Insert new A3 landscape drawing + Új A3 tájkép rajzot illeszt - - + + CmdDrawingNewPage - - Drawing - Rajz + Drawing + Rajzolás - - - Insert new drawing - Helyezze be az új rajzot + Insert new drawing + Helyezze be az új rajzot - - + + CmdDrawingNewView - - Drawing - Rajz + Drawing + Rajzolás - - Insert view in drawing - A rajzba nézetet illeszt + Insert view in drawing + A rajzba nézetet illeszt - - Insert a new View of a Part in the active drawing - A meglévő rajzba új rész nézetet illeszt + Insert a new View of a Part in the active drawing + A meglévő rajzba új rész nézetet illeszt - - + + CmdDrawingOpen - - Drawing - Rajz + Drawing + Rajzolás - - Open SVG... - SVG megynyitása... + Open SVG... + SVG megynyitása... - - Open a scalable vector graphic - Skálázható vektor grafikát nyit meg + Open a scalable vector graphic + Skálázható vektor grafikát nyit meg - - + + CmdDrawingOpenBrowserView - - Drawing - Rajz + Drawing + Rajzolás - - Open &browser view - + Open &browser view + &böngésző nézet megynyitása - - - Opens the selected page in a browser view - + Opens the selected page in a browser view + Megnyitja a kijelölt lapot egy böngésző nézetben - - + + CmdDrawingOrthoViews - - Drawing - Rajz + Drawing + Rajzolás - - Insert orthographic views - + Insert orthographic views + Merőleges vetítés nézetek beszúrása - - Insert an orthographic projection of a part in the active drawing - + Insert an orthographic projection of a part in the active drawing + Az aktív rajz egy részének a merőleges vetítés beszúrása - - + + CmdDrawingProjectShape - - Drawing - Rajz + Drawing + Rajzolás - - Project shape... - Terv formák... + Project shape... + Terv formák... - - - Project shape onto a user-defined plane - A felhasználó által meghatározott síkra vetített formák + Project shape onto a user-defined plane + A felhasználó által meghatározott síkra vetített formák - - + + DrawingGui::DrawingView - - &Background - &Háttér + + &Background + Háttér &B - - &Outline - &Körvonal + &Outline + Körv&onal - - &Native - &Natív + &Native + &Natív - - &OpenGL - &OpenGL + &OpenGL + &OpenGL - - &Image - &Kép + &Image + &Kép &I - - &High Quality Antialiasing - &Magas minőségű Antialiasing + &High Quality Antialiasing + &Magas minőségű Antialiasing &H - - Open SVG File - SVG fájl megnyitása + Open SVG File + SVG fájl megnyitása - - Could not open file '%1'. - Nem tudja megnyitni a '%1'fájlt. + Could not open file '%1'. + Nem tudja megnyitni a '%1'fájlt. - - &Renderer - Renderelő + &Renderer + &Renderelő - - Export PDF - Exportálás PDF-be + Export PDF + Exportálás PDF-be - - PDF file (*.pdf) - PDF fájl (*.pdf) + PDF file (*.pdf) + PDF fájl (*.pdf) - - Page sizes - Oldalméretek + Page sizes + Oldalméretek - - A0 - A0 + A0 + A0 - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4-es + A4 + A4-es - - A5 - A5 + A5 + A5 - - + + DrawingGui::TaskOrthoViews - - Orthographic Projection - + + Orthographic Projection + A merőleges vetítés - - Projection - + Projection + Vetítés - - Third Angle - + Third Angle + Harmadik szög - - First Angle - + First Angle + Első szög - - Primary View - + Primary View + Elsődleges nézet - - Front - + Front + Elölnézet - - Right - + Right + Jobb - - Back - + Back + Vissza - - Left - + Left + Bal nézet - - Top - + Top + Felülnézet - - Bottom - + Bottom + Alsó - - - Rotate - + - Rotate + -Forgatás - - 0 - + 0 + - - 90 - + 90 + 90 - - 180 - + 180 + 180 - - 270 - + 270 + 270 - - Primary view - + Primary view + Elsődleges nézet - - Secondary Views - + Secondary Views + Másodlagos nézetek - - General - + General + Általános - - Auto scale / position - + Auto scale / position + Az automatikus méretezés / elhelyezés - - Scale - + Scale + Méret - - Primary x / y - + Primary x / y + Elsődleges x / y - - Secondary dx / dy - + Secondary dx / dy + Másodlagos dx / dy - - Show hidden - + Show hidden + Rejtettek megjelenítése - - Show smooth - + Show smooth + Simítás megjelenítése - - Axonometric - + Axonometric + Axonometric - - + + DrawingGui::TaskProjection - - Visible sharp edges - Látható éles élek + + Visible sharp edges + Látható éles élek - - Visible smooth edges - Látható simított élek + Visible smooth edges + Látható simított élek - - Visible sewn edges - Látható varrott élek + Visible sewn edges + Látható varrott élek - - Visible outline edges - Látható körvonal élek + Visible outline edges + Látható körvonal élek - - Visible isoparameters - Látható isoparaméterek + Visible isoparameters + Látható isoparaméterek - - Hidden sharp edges - Rejtett éles élek + Hidden sharp edges + Rejtett éles élek - - Hidden smooth edges - Rejtett simított élek + Hidden smooth edges + Rejtett simított élek - - Hidden sewn edges - Rejtett varrott élek + Hidden sewn edges + Rejtett varrott élek - - Hidden outline edges - Rejtett vázlat élek + Hidden outline edges + Rejtett vázlat élek - - Hidden isoparameters - Rejtett iso-paraméterek + Hidden isoparameters + Rejtett iso-paraméterek - - Project shapes - Terv formák + Project shapes + Terv formák - - + + Drawing_NewPage - A0 landscape - A0-es fekvő + A0 landscape + A0-es fekvő - Insert new A0 landscape drawing - Helyezze be az új A4-es fekvő rajzot + Insert new A0 landscape drawing + Helyezze be az új A4-es fekvő rajzot - A1 landscape - A4-es fekvő + A1 landscape + A4-es fekvő - Insert new A1 landscape drawing - Helyezze be az új A4-es fekvő rajzot + Insert new A1 landscape drawing + Helyezze be az új A4-es fekvő rajzot - A2 landscape - A4-es fekvő + A2 landscape + A4-es fekvő - Insert new A2 landscape drawing - Helyezze be az új A4-es fekvő rajzot + Insert new A2 landscape drawing + Helyezze be az új A4-es fekvő rajzot - A3 landscape - A4-es fekvő + A3 landscape + A4-es fekvő - Insert new A3 landscape drawing - Új A3 tájkép rajzot illeszt + Insert new A3 landscape drawing + Új A3 tájkép rajzot illeszt - A4 landscape - A4-es fekvő + A4 landscape + A4-es fekvő - Insert new A4 landscape drawing - Helyezze be az új A4-es fekvő rajzot + Insert new A4 landscape drawing + Helyezze be az új A4-es fekvő rajzot - - A%1 landscape - + + Insert new A%1 landscape drawing + Egy új A%1 fekvő rajz beszúrása - - Insert new A%1 landscape drawing - + A%1 landscape + A%1 lfekvő - - + + QObject - - Choose an SVG file to open - SVG fájl kiválasztása megnyitáshoz + Choose an SVG file to open + SVG fájl kiválasztása megnyitáshoz - - - - Drawing viewer - Rajz nézegető + + Drawing viewer + Rajz nézegető - - Scalable Vector Graphics (*.svg *.svgz) - Skálázható vektor grafika (*.svg *.svgz) + + Scalable Vector Graphics (*.svg *.svgz) + Skálázható vektor grafika (*.svg *.svgz) - - - - - Wrong selection - Nem megfelelő kiválasztás + Wrong selection + Nem megfelelő kiválasztás - - - Select a Part object. - Objektum rész kiválasztása. + Select a Part object. + Objektum rész kiválasztása. - - - - - No page to insert - Nem létező oldal a beillesztéshez + No page to insert + Nem létező oldal a beillesztéshez - - - - Create a page to insert. - Oldal létrehozása a beillesztéshez. + Create a page to insert. + Oldal létrehozása a beillesztéshez. - - Create a page to insert views into. - + Create a page to insert views into. + Hozzon létre egy lapot a nézet beszúrásához. - - - Select one Page object. - Válasszon ki egy oldalas objektumot. + Select one Page object. + Válasszon ki egy oldalas objektumot. - - SVG(*.svg) - SVG(*.svg) + SVG(*.svg) + SVG(*.svg) - - All Files (*.*) - Összes fájl (*.*) + All Files (*.*) + Összes fájl (*.*) - - Export page - Oldal exportálása + Export page + Oldal exportálása - - Show drawing - Mutasd a rajzot + + Show drawing + Mutasd a rajzot - - Front - + + Front + Elölnézet - - Back - + Back + Vissza - - Right - + Right + Jobb - - Left - + Left + Bal nézet - - Top - + Top + Felülnézet - - Bottom - + Bottom + Alsó - - + + Workbench - - Drawing - Rajz + + Drawing + Rajzolás - + diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_it.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_it.qm index 561e8e6fb..b6a94c8de 100644 Binary files a/src/Mod/Drawing/Gui/Resources/translations/Drawing_it.qm and b/src/Mod/Drawing/Gui/Resources/translations/Drawing_it.qm differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_it.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_it.ts index 99a799394..91b7e15ba 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_it.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_it.ts @@ -1,636 +1,522 @@ - - + + CmdDrawingAnnotation - - Drawing - Disegno + + Drawing + Disegno - - &Annotation - + &Annotation + &Annotazione - - - Inserts an Annotation view in the active drawing - + Inserts an Annotation view in the active drawing + Inserisce un'annotazione nel disegno attivo - - + + CmdDrawingClip - - Drawing - Disegno + Drawing + Disegno - - &Clip - + &Clip + &Clip - - - Inserts a clip group in the active drawing - + Inserts a clip group in the active drawing + Iserisce un gruppo clip nel disegno attivo - - + + CmdDrawingExportPage - - File - File + File + File - - &Export page... - &Esporta pagina... + &Export page... + &Esporta pagina... - - - Export a page to an SVG file - Esporta una pagina in un file SVG + Export a page to an SVG file + Esporta una pagina in un file SVG - - + + CmdDrawingNewA3Landscape - - Drawing - Disegno + Drawing + Disegno - - - Insert new A3 landscape drawing - Inserisci un nuovo disegno A3 orizzontale + Insert new A3 landscape drawing + Inserisci un nuovo disegno A3 orizzontale - - + + CmdDrawingNewPage - - Drawing - Disegno + Drawing + Disegno - - - Insert new drawing - Inserisci nuovo disegno + Insert new drawing + Inserisci nuovo disegno - - + + CmdDrawingNewView - - Drawing - Disegno + Drawing + Disegno - - Insert view in drawing - Inserisci vista nel disegno + Insert view in drawing + Inserisci vista nel disegno - - Insert a new View of a Part in the active drawing - Inserisce una nuova vista di una parte del disegno attivo + Insert a new View of a Part in the active drawing + Inserisce una nuova vista di una parte del disegno attivo - - + + CmdDrawingOpen - - Drawing - Disegno + Drawing + Disegno - - Open SVG... - Apri SVG... + Open SVG... + Apri SVG... - - Open a scalable vector graphic - Apre una grafica vettoriale scalabile + Open a scalable vector graphic + Apre una grafica vettoriale scalabile - - + + CmdDrawingOpenBrowserView - - Drawing - Disegno + Drawing + Disegno - - Open &browser view - + Open &browser view + Apri finestra &browser - - - Opens the selected page in a browser view - + Opens the selected page in a browser view + Visualizza la pagina selezionata in una nuova vista browser - - + + CmdDrawingOrthoViews - - Drawing - Disegno + Drawing + Disegno - - Insert orthographic views - + Insert orthographic views + Inserisci viste ortogonali - - Insert an orthographic projection of a part in the active drawing - + Insert an orthographic projection of a part in the active drawing + Inserisce una proiezione ortogonale di una parte del disegno attivo - - + + CmdDrawingProjectShape - - Drawing - Disegno + Drawing + Disegno - - Project shape... - Proietta le forme... + Project shape... + Proietta le forme... - - - Project shape onto a user-defined plane - Proietta una forma su di un piano definito dall'utente + Project shape onto a user-defined plane + Proietta una forma su di un piano definito dall'utente - - + + DrawingGui::DrawingView - - &Background - &Sfondo + + &Background + &Sfondo - - &Outline - C&ontorno + &Outline + C&ontorno - - &Native - &Nativo + &Native + &Nativo - - &OpenGL - &OpenGL + &OpenGL + &OpenGL - - &Image - &Immagine + &Image + &Immagine - - &High Quality Antialiasing - &Antialiasing di qualità elevata + &High Quality Antialiasing + &Antialiasing di qualità elevata - - Open SVG File - Apri file SVG + Open SVG File + Apri file SVG - - Could not open file '%1'. - Impossibile aprire il file '%1'. + Could not open file '%1'. + Impossibile aprire il file '%1'. - - &Renderer - &Render + &Renderer + &Render - - Export PDF - Esporta PDF + Export PDF + Esporta PDF - - PDF file (*.pdf) - File PDF (*.pdf) + PDF file (*.pdf) + File PDF (*.pdf) - - Page sizes - Dimensioni pagina + Page sizes + Dimensioni pagina - - A0 - A0 + A0 + A0 - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4 + A4 + A4 - - A5 - A5 + A5 + A5 - - + + DrawingGui::TaskOrthoViews - - Orthographic Projection - + + Orthographic Projection + Proiezione ortogonale - - Projection - + Projection + Proiezione - - Third Angle - + Third Angle + Terzo angolo - - First Angle - + First Angle + Primo angolo - - Primary View - + Primary View + Vista primaria - - Front - + Front + Di fronte - - Right - + Right + Destra - - Back - + Back + Indietro - - Left - + Left + Da sinistra - - Top - + Top + Dall'alto - - Bottom - + Bottom + Dal basso - - - Rotate - + - Rotate + -Ruotare - - 0 - + 0 + - - 90 - + 90 + 90 - - 180 - + 180 + 180 - - 270 - + 270 + 270 - - Primary view - + Primary view + Vista primaria - - Secondary Views - + Secondary Views + Vista secondaria - - General - + General + Generale - - Auto scale / position - + Auto scale / position + Scala/posiziona automaticamente - - Scale - + Scale + Scala - - Primary x / y - + Primary x / y + Primario x / y - - Secondary dx / dy - + Secondary dx / dy + Secondario dx / dy - - Show hidden - + Show hidden + Visualizza linee nascoste - - Show smooth - + Show smooth + Visualizzazione lisciata - - Axonometric - + Axonometric + Assonometrica - - + + DrawingGui::TaskProjection - - Visible sharp edges - mostra gli spigoli vivi + + Visible sharp edges + mostra gli spigoli vivi - - Visible smooth edges - Mostra i bordi smussati + Visible smooth edges + Mostra i bordi smussati - - Visible sewn edges - Mostra i bordi cuciti + Visible sewn edges + Mostra i bordi cuciti - - Visible outline edges - Mostra i bordi esterni + Visible outline edges + Mostra i bordi esterni - - Visible isoparameters - Mostra le isoparametriche + Visible isoparameters + Mostra le isoparametriche - - Hidden sharp edges - Nascondi gli spigoli vivi + Hidden sharp edges + Nascondi gli spigoli vivi - - Hidden smooth edges - Nascondi i bordi smussati + Hidden smooth edges + Nascondi i bordi smussati - - Hidden sewn edges - Nascondi i bordi cuciti + Hidden sewn edges + Nascondi i bordi cuciti - - Hidden outline edges - Nascondi i bordi esterni + Hidden outline edges + Nascondi i bordi esterni - - Hidden isoparameters - Nascondi le isoparametriche + Hidden isoparameters + Nascondi le isoparametriche - - Project shapes - Proietta le forme + Project shapes + Proietta le forme - - + + Drawing_NewPage - A0 landscape - A0 orizzontale + A0 landscape + A0 orizzontale - Insert new A0 landscape drawing - Inserisce nuovo disegno A0 orizzontale + Insert new A0 landscape drawing + Inserisce nuovo disegno A0 orizzontale - A1 landscape - A1 orizzontale + A1 landscape + A1 orizzontale - Insert new A1 landscape drawing - Inserisce nuovo disegno A2 orizzontale + Insert new A1 landscape drawing + Inserisce nuovo disegno A2 orizzontale - A2 landscape - A2 orizzontale + A2 landscape + A2 orizzontale - Insert new A2 landscape drawing - Inserisce nuovo disegno A2 orizzontale + Insert new A2 landscape drawing + Inserisce nuovo disegno A2 orizzontale - A3 landscape - A3 orizzontale + A3 landscape + A3 orizzontale - Insert new A3 landscape drawing - Inserisci un nuovo disegno A3 orizzontale + Insert new A3 landscape drawing + Inserisci un nuovo disegno A3 orizzontale - A4 landscape - A4 orizzontale + A4 landscape + A4 orizzontale - Insert new A4 landscape drawing - Inserisce nuovo disegno A4 orizzontale + Insert new A4 landscape drawing + Inserisce nuovo disegno A4 orizzontale - - A%1 landscape - + + Insert new A%1 landscape drawing + Inserisce nuovo disegno A%1 orizzontale - - Insert new A%1 landscape drawing - + A%1 landscape + A%1 orizzontale - - + + QObject - - Choose an SVG file to open - Seleziona un file SVG da aprire + Choose an SVG file to open + Seleziona un file SVG da aprire - - - - Drawing viewer - Visualizzatore disegno + + Drawing viewer + Visualizzatore disegno - - Scalable Vector Graphics (*.svg *.svgz) - Grafica Vettoriale Scalabile (*.svg *.svgz) + + Scalable Vector Graphics (*.svg *.svgz) + Grafica Vettoriale Scalabile (*.svg *.svgz) - - - - - Wrong selection - Selezione errata + Wrong selection + Selezione errata - - - Select a Part object. - Seleziona un oggetto Parte. + Select a Part object. + Seleziona un oggetto Parte. - - - - - No page to insert - Nessuna pagina da inserire + No page to insert + Nessuna pagina da inserire - - - - Create a page to insert. - Crea una pagina da inserire. + Create a page to insert. + Crea una pagina da inserire. - - Create a page to insert views into. - + Create a page to insert views into. + Crea una pagina per inserirvi delle viste. - - - Select one Page object. - Seleziona un oggetto Pagina. + Select one Page object. + Seleziona un oggetto Pagina. - - SVG(*.svg) - SVG (*.svg) + SVG(*.svg) + SVG (*.svg) - - All Files (*.*) - Tutti i file (*.*) + All Files (*.*) + Tutti i file (*.*) - - Export page - Esporta pagina + Export page + Esporta pagina - - Show drawing - Mostra disegno + + Show drawing + Mostra disegno - - Front - + + Front + Di fronte - - Back - + Back + Indietro - - Right - + Right + Destra - - Left - + Left + Da sinistra - - Top - + Top + Dall'alto - - Bottom - + Bottom + Dal basso - - + + Workbench - - Drawing - Disegno + + Drawing + Disegno - + diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_ja.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_ja.qm index 3f54ae44e..68796c09d 100644 Binary files a/src/Mod/Drawing/Gui/Resources/translations/Drawing_ja.qm and b/src/Mod/Drawing/Gui/Resources/translations/Drawing_ja.qm differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_ja.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_ja.ts index 6402207c1..ded6e6944 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_ja.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_ja.ts @@ -1,636 +1,522 @@ - - + + CmdDrawingAnnotation - - Drawing - 図面 + + Drawing + 図面 - - &Annotation - + &Annotation + &Annotation - - - Inserts an Annotation view in the active drawing - + Inserts an Annotation view in the active drawing + Inserts an Annotation view in the active drawing - - + + CmdDrawingClip - - Drawing - 図面 + Drawing + 図面 - - &Clip - + &Clip + &Clip - - - Inserts a clip group in the active drawing - + Inserts a clip group in the active drawing + Inserts a clip group in the active drawing - - + + CmdDrawingExportPage - - File - ファイル + File + ファイル - - &Export page... - &Export page... + &Export page... + &Export page... - - - Export a page to an SVG file - SVGファイルにエクスポート + Export a page to an SVG file + SVGファイルにエクスポート - - + + CmdDrawingNewA3Landscape - - Drawing - 図面 + Drawing + 図面 - - - Insert new A3 landscape drawing - Insert new A3 landscape drawing + Insert new A3 landscape drawing + Insert new A3 landscape drawing - - + + CmdDrawingNewPage - - Drawing - 図面 + Drawing + 図面 - - - Insert new drawing - 新しい図面を挿入 + Insert new drawing + 新しい図面を挿入 - - + + CmdDrawingNewView - - Drawing - 図面 + Drawing + 図面 - - Insert view in drawing - Insert view in drawing + Insert view in drawing + Insert view in drawing - - Insert a new View of a Part in the active drawing - Insert a new View of a Part in the active drawing + Insert a new View of a Part in the active drawing + Insert a new View of a Part in the active drawing - - + + CmdDrawingOpen - - Drawing - 図面 + Drawing + 図面 - - Open SVG... - Open SVG... + Open SVG... + Open SVG... - - Open a scalable vector graphic - ベクトルグラフィックを開きます。 + Open a scalable vector graphic + ベクトルグラフィックを開きます。 - - + + CmdDrawingOpenBrowserView - - Drawing - 図面 + Drawing + 図面 - - Open &browser view - + Open &browser view + Open &browser view - - - Opens the selected page in a browser view - + Opens the selected page in a browser view + Opens the selected page in a browser view - - + + CmdDrawingOrthoViews - - Drawing - 図面 + Drawing + 図面 - - Insert orthographic views - + Insert orthographic views + Insert orthographic views - - Insert an orthographic projection of a part in the active drawing - + Insert an orthographic projection of a part in the active drawing + Insert an orthographic projection of a part in the active drawing - - + + CmdDrawingProjectShape - - Drawing - 図面 + Drawing + 図面 - - Project shape... - Project shape... + Project shape... + Project shape... - - - Project shape onto a user-defined plane - Project shape onto a user-defined plane + Project shape onto a user-defined plane + Project shape onto a user-defined plane - - + + DrawingGui::DrawingView - - &Background - &Background + + &Background + &Background - - &Outline - &Outline + &Outline + &Outline - - &Native - &Native + &Native + &Native - - &OpenGL - OpenGL (&o) + &OpenGL + OpenGL (&o) - - &Image - 画像(&i) + &Image + 画像(&i) - - &High Quality Antialiasing - 高品質アンチエイリアス(&H) + &High Quality Antialiasing + 高品質アンチエイリアス(&H) - - Open SVG File - SVG ファイルを開く + Open SVG File + SVG ファイルを開く - - Could not open file '%1'. - Could not open file '%1'. + Could not open file '%1'. + ファイル '%1' を開けませんでした。 - - &Renderer - &Renderer + &Renderer + &Renderer - - Export PDF - PDFファイル形式でエクスポート + Export PDF + PDFファイル形式でエクスポート - - PDF file (*.pdf) - PDF ファイル (*.pdf) + PDF file (*.pdf) + PDF ファイル (*.pdf) - - Page sizes - ページサイズ + Page sizes + ページサイズ - - A0 - A0 + A0 + A0 - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4 + A4 + A4 - - A5 - A5 + A5 + A5 - - + + DrawingGui::TaskOrthoViews - - Orthographic Projection - + + Orthographic Projection + Orthographic Projection - - Projection - + Projection + Projection - - Third Angle - + Third Angle + Third Angle - - First Angle - + First Angle + First Angle - - Primary View - + Primary View + Primary View - - Front - + Front + 前面 - - Right - + Right + Right - - Back - + Back + Back - - Left - + Left + 左面 - - Top - + Top + 上面 - - Bottom - + Bottom + Bottom - - - Rotate - + - Rotate + - Rotate - - 0 - + 0 + - - 90 - + 90 + 90 - - 180 - + 180 + 180 - - 270 - + 270 + 270 - - Primary view - + Primary view + Primary view - - Secondary Views - + Secondary Views + Secondary Views - - General - + General + 標準 - - Auto scale / position - + Auto scale / position + Auto scale / position - - Scale - + Scale + 拡大縮小 - - Primary x / y - + Primary x / y + Primary x / y - - Secondary dx / dy - + Secondary dx / dy + Secondary dx / dy - - Show hidden - + Show hidden + Show hidden - - Show smooth - + Show smooth + Show smooth - - Axonometric - + Axonometric + Axonometric - - + + DrawingGui::TaskProjection - - Visible sharp edges - Visible sharp edges + + Visible sharp edges + Visible sharp edges - - Visible smooth edges - Visible smooth edges + Visible smooth edges + Visible smooth edges - - Visible sewn edges - Visible sewn edges + Visible sewn edges + Visible sewn edges - - Visible outline edges - Visible outline edges + Visible outline edges + Visible outline edges - - Visible isoparameters - Visible isoparameters + Visible isoparameters + Visible isoparameters - - Hidden sharp edges - Hidden sharp edges + Hidden sharp edges + Hidden sharp edges - - Hidden smooth edges - Hidden smooth edges + Hidden smooth edges + Hidden smooth edges - - Hidden sewn edges - Hidden sewn edges + Hidden sewn edges + Hidden sewn edges - - Hidden outline edges - Hidden outline edges + Hidden outline edges + Hidden outline edges - - Hidden isoparameters - Hidden isoparameters + Hidden isoparameters + Hidden isoparameters - - Project shapes - Project shapes + Project shapes + Project shapes - - + + Drawing_NewPage - A0 landscape - A0 横 + A0 landscape + A0 横 - Insert new A0 landscape drawing - Insert new A0 landscape drawing + Insert new A0 landscape drawing + Insert new A0 landscape drawing - A1 landscape - A1 横 + A1 landscape + A1 横 - Insert new A1 landscape drawing - Insert new A1 landscape drawing + Insert new A1 landscape drawing + Insert new A1 landscape drawing - A2 landscape - A2 横 + A2 landscape + A2 横 - Insert new A2 landscape drawing - Insert new A2 landscape drawing + Insert new A2 landscape drawing + Insert new A2 landscape drawing - A3 landscape - A3 横 + A3 landscape + A3 横 - Insert new A3 landscape drawing - Insert new A3 landscape drawing + Insert new A3 landscape drawing + Insert new A3 landscape drawing - A4 landscape - A4 横 + A4 landscape + A4 横 - Insert new A4 landscape drawing - Insert new A4 landscape drawing + Insert new A4 landscape drawing + Insert new A4 landscape drawing - - A%1 landscape - + + Insert new A%1 landscape drawing + Insert new A%1 landscape drawing - - Insert new A%1 landscape drawing - + A%1 landscape + A%1 landscape - - + + QObject - - Choose an SVG file to open - SVG ファイルを選択 + Choose an SVG file to open + SVG ファイルを選択 - - - - Drawing viewer - Drawing viewer + + Drawing viewer + Drawing viewer - - Scalable Vector Graphics (*.svg *.svgz) - Scalable Vector Graphics (*.svg *.svgz) + + Scalable Vector Graphics (*.svg *.svgz) + Scalable Vector Graphics (*.svg *.svgz) - - - - - Wrong selection - 誤った選択 + Wrong selection + 誤った選択 - - - Select a Part object. - Select a Part object. + Select a Part object. + Select a Part object. - - - - - No page to insert - No page to insert + No page to insert + No page to insert - - - - Create a page to insert. - Create a page to insert. + Create a page to insert. + 挿入するページを作成 - - Create a page to insert views into. - + Create a page to insert views into. + Create a page to insert views into. - - - Select one Page object. - Select one Page object. + Select one Page object. + Select one Page object. - - SVG(*.svg) - SVG(*.svg) + SVG(*.svg) + SVG(*.svg) - - All Files (*.*) - すべてのファイル (*.*) + All Files (*.*) + すべてのファイル (*.*) - - Export page - Export page + Export page + Export page - - Show drawing - Show drawing + + Show drawing + Show drawing - - Front - + + Front + 前面 - - Back - + Back + Back - - Right - + Right + Right - - Left - + Left + 左面 - - Top - + Top + 上面 - - Bottom - + Bottom + Bottom - - + + Workbench - - Drawing - 図面 + + Drawing + 図面 - + diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_nl.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_nl.qm index 91ccedd9d..3932bbf0e 100644 Binary files a/src/Mod/Drawing/Gui/Resources/translations/Drawing_nl.qm and b/src/Mod/Drawing/Gui/Resources/translations/Drawing_nl.qm differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_nl.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_nl.ts index 533849f94..830cbf41c 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_nl.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_nl.ts @@ -1,636 +1,522 @@ - - + + CmdDrawingAnnotation - - Drawing - Tekening + + Drawing + Tekening - - &Annotation - + &Annotation + &Annotation - - - Inserts an Annotation view in the active drawing - + Inserts an Annotation view in the active drawing + Inserts an Annotation view in the active drawing - - + + CmdDrawingClip - - Drawing - Tekening + Drawing + Tekening - - &Clip - + &Clip + &Clip - - - Inserts a clip group in the active drawing - + Inserts a clip group in the active drawing + Inserts a clip group in the active drawing - - + + CmdDrawingExportPage - - File - Bestand + File + Bestand - - &Export page... - &Exporteer pagina... + &Export page... + &Exporteer pagina... - - - Export a page to an SVG file - Een pagina naar een SVG-bestand exporteren + Export a page to an SVG file + Een pagina naar een SVG-bestand exporteren - - + + CmdDrawingNewA3Landscape - - Drawing - Tekening + Drawing + Tekening - - - Insert new A3 landscape drawing - Nieuwe A3-tekening (liggend) invoegen + Insert new A3 landscape drawing + Nieuwe A3-tekening (liggend) invoegen - - + + CmdDrawingNewPage - - Drawing - Tekening + Drawing + Tekening - - - Insert new drawing - Nieuwe tekening invoegen + Insert new drawing + Nieuwe tekening invoegen - - + + CmdDrawingNewView - - Drawing - Tekening + Drawing + Tekening - - Insert view in drawing - Aanzicht invoegen in een tekening + Insert view in drawing + Aanzicht invoegen in een tekening - - Insert a new View of a Part in the active drawing - Plaats een nieuwe aanzicht van een onderdeel in de actieve tekening + Insert a new View of a Part in the active drawing + Plaats een nieuwe aanzicht van een onderdeel in de actieve tekening - - + + CmdDrawingOpen - - Drawing - Tekening + Drawing + Tekening - - Open SVG... - Open SVG... + Open SVG... + Open SVG... - - Open a scalable vector graphic - Open een scalable vector graphic + Open a scalable vector graphic + Open een scalable vector graphic - - + + CmdDrawingOpenBrowserView - - Drawing - Tekening + Drawing + Tekening - - Open &browser view - + Open &browser view + Open &browser view - - - Opens the selected page in a browser view - + Opens the selected page in a browser view + Opens the selected page in a browser view - - + + CmdDrawingOrthoViews - - Drawing - Tekening + Drawing + Tekening - - Insert orthographic views - + Insert orthographic views + Insert orthographic views - - Insert an orthographic projection of a part in the active drawing - + Insert an orthographic projection of a part in the active drawing + Insert an orthographic projection of a part in the active drawing - - + + CmdDrawingProjectShape - - Drawing - Tekening + Drawing + Tekening - - Project shape... - Projectvorm... + Project shape... + Projectvorm... - - - Project shape onto a user-defined plane - Projecteer vorm op een door de gebruiker gedefinieerd vlak + Project shape onto a user-defined plane + Projecteer vorm op een door de gebruiker gedefinieerd vlak - - + + DrawingGui::DrawingView - - &Background - &Achtergrond + + &Background + &Achtergrond - - &Outline - &Omtrek + &Outline + &Omtrek - - &Native - &Eigen + &Native + &Eigen - - &OpenGL - &OpenGL + &OpenGL + &OpenGL - - &Image - &Afbeelding + &Image + &Afbeelding - - &High Quality Antialiasing - Hoge kwaliteit Antialiasing + &High Quality Antialiasing + Hoge kwaliteit Antialiasing - - Open SVG File - Open SVG-bestand + Open SVG File + Open SVG-bestand - - Could not open file '%1'. - Kon bestand '%1' niet openen. + Could not open file '%1'. + Kon bestand '%1' niet openen. - - &Renderer - Renderer + &Renderer + Renderer - - Export PDF - Exporteren als PDF + Export PDF + Exporteren als PDF - - PDF file (*.pdf) - PDF-bestand (*.pdf) + PDF file (*.pdf) + PDF-bestand (*.pdf) - - Page sizes - Paginaformaten + Page sizes + Paginaformaten - - A0 - A0 + A0 + A0 - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4 + A4 + A4 - - A5 - A5 + A5 + A5 - - + + DrawingGui::TaskOrthoViews - - Orthographic Projection - + + Orthographic Projection + Orthographic Projection - - Projection - + Projection + Projection - - Third Angle - + Third Angle + Third Angle - - First Angle - + First Angle + First Angle - - Primary View - + Primary View + Primary View - - Front - + Front + Voorkant - - Right - + Right + Rechts - - Back - + Back + Back - - Left - + Left + Links - - Top - + Top + Boven - - Bottom - + Bottom + Onderkant - - - Rotate - + - Rotate + - Rotate - - 0 - + 0 + - - 90 - + 90 + 90 - - 180 - + 180 + 180 - - 270 - + 270 + 270 - - Primary view - + Primary view + Primary view - - Secondary Views - + Secondary Views + Secondary Views - - General - + General + Algemeen - - Auto scale / position - + Auto scale / position + Auto scale / position - - Scale - + Scale + Schalen - - Primary x / y - + Primary x / y + Primary x / y - - Secondary dx / dy - + Secondary dx / dy + Secondary dx / dy - - Show hidden - + Show hidden + Show hidden - - Show smooth - + Show smooth + Show smooth - - Axonometric - + Axonometric + Axonometric - - + + DrawingGui::TaskProjection - - Visible sharp edges - Zichtbare scherpe randen + + Visible sharp edges + Zichtbare scherpe randen - - Visible smooth edges - Zichtbare gladde randen + Visible smooth edges + Zichtbare gladde randen - - Visible sewn edges - Zichtbare genaaide randen + Visible sewn edges + Zichtbare genaaide randen - - Visible outline edges - Zichtbare omtrekranden + Visible outline edges + Zichtbare omtrekranden - - Visible isoparameters - Zichtbare ISO-parameters + Visible isoparameters + Zichtbare ISO-parameters - - Hidden sharp edges - Verborgen scherpe randen + Hidden sharp edges + Verborgen scherpe randen - - Hidden smooth edges - Verborgen gladde randen + Hidden smooth edges + Verborgen gladde randen - - Hidden sewn edges - Verborgen genaaide randen + Hidden sewn edges + Verborgen genaaide randen - - Hidden outline edges - Verborgen omtrekranden + Hidden outline edges + Verborgen omtrekranden - - Hidden isoparameters - Verborgen ISO-parameters + Hidden isoparameters + Verborgen ISO-parameters - - Project shapes - Projecteer vormen + Project shapes + Projecteer vormen - - + + Drawing_NewPage - A0 landscape - A0 liggend + A0 landscape + A0 liggend - Insert new A0 landscape drawing - Nieuwe A0-tekening (liggend) invoegen + Insert new A0 landscape drawing + Nieuwe A0-tekening (liggend) invoegen - A1 landscape - A1 liggend + A1 landscape + A1 liggend - Insert new A1 landscape drawing - Nieuwe A1-tekening (liggend) invoegen + Insert new A1 landscape drawing + Nieuwe A1-tekening (liggend) invoegen - A2 landscape - A2 liggend + A2 landscape + A2 liggend - Insert new A2 landscape drawing - Nieuwe A2-tekening (liggend) invoegen + Insert new A2 landscape drawing + Nieuwe A2-tekening (liggend) invoegen - A3 landscape - A3 liggend + A3 landscape + A3 liggend - Insert new A3 landscape drawing - Nieuwe A3-tekening (liggend) invoegen + Insert new A3 landscape drawing + Nieuwe A3-tekening (liggend) invoegen - A4 landscape - A4 liggend + A4 landscape + A4 liggend - Insert new A4 landscape drawing - Nieuwe A4-tekening (liggend) invoegen + Insert new A4 landscape drawing + Nieuwe A4-tekening (liggend) invoegen - - A%1 landscape - + + Insert new A%1 landscape drawing + Insert new A%1 landscape drawing - - Insert new A%1 landscape drawing - + A%1 landscape + A%1 landscape - - + + QObject - - Choose an SVG file to open - Kies een SVG-bestand om te openen + Choose an SVG file to open + Kies een SVG-bestand om te openen - - - - Drawing viewer - Tekening bekijker + + Drawing viewer + Tekening bekijker - - Scalable Vector Graphics (*.svg *.svgz) - Scalable Vector Graphics (*.svg *.svgz) + + Scalable Vector Graphics (*.svg *.svgz) + Scalable Vector Graphics (*.svg *.svgz) - - - - - Wrong selection - Verkeerde selectie + Wrong selection + Verkeerde selectie - - - Select a Part object. - Selecteer een onderdeel-object. + Select a Part object. + Selecteer een onderdeel-object. - - - - - No page to insert - Geen pagina om in te voegen + No page to insert + Geen pagina om in te voegen - - - - Create a page to insert. - Maak een pagina om in te voegen. + Create a page to insert. + Maak een pagina om in te voegen. - - Create a page to insert views into. - + Create a page to insert views into. + Create a page to insert views into. - - - Select one Page object. - Selecteer een pagina-object. + Select one Page object. + Selecteer een pagina-object. - - SVG(*.svg) - SVG (*.svg) + SVG(*.svg) + SVG (*.svg) - - All Files (*.*) - Alle bestanden (*.*) + All Files (*.*) + Alle bestanden (*.*) - - Export page - Exporteer pagina + Export page + Exporteer pagina - - Show drawing - Toon tekening + + Show drawing + Toon tekening - - Front - + + Front + Voorkant - - Back - + Back + Back - - Right - + Right + Rechts - - Left - + Left + Links - - Top - + Top + Boven - - Bottom - + Bottom + Onderkant - - + + Workbench - - Drawing - Tekening + + Drawing + Tekening - + diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_no.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_no.qm index 9bc45573c..d35951955 100644 Binary files a/src/Mod/Drawing/Gui/Resources/translations/Drawing_no.qm and b/src/Mod/Drawing/Gui/Resources/translations/Drawing_no.qm differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_no.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_no.ts index 9c71f7fa5..773d10139 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_no.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_no.ts @@ -1,636 +1,522 @@ - - + + CmdDrawingAnnotation - - Drawing - Tegning + + Drawing + Tegning - - &Annotation - + &Annotation + &Annotation - - - Inserts an Annotation view in the active drawing - + Inserts an Annotation view in the active drawing + Inserts an Annotation view in the active drawing - - + + CmdDrawingClip - - Drawing - Tegning + Drawing + Tegning - - &Clip - + &Clip + &Clip - - - Inserts a clip group in the active drawing - + Inserts a clip group in the active drawing + Inserts a clip group in the active drawing - - + + CmdDrawingExportPage - - File - Fil + File + Fil - - &Export page... - &Eksporter side... + &Export page... + &Eksporter side... - - - Export a page to an SVG file - Eksportere en side til en SVG-fil + Export a page to an SVG file + Eksportere en side til en SVG-fil - - + + CmdDrawingNewA3Landscape - - Drawing - Tegning + Drawing + Tegning - - - Insert new A3 landscape drawing - Sett inn ny A3 landskapstegning + Insert new A3 landscape drawing + Sett inn ny A3 landskapstegning - - + + CmdDrawingNewPage - - Drawing - Tegning + Drawing + Tegning - - - Insert new drawing - Insert new drawing + Insert new drawing + Insert new drawing - - + + CmdDrawingNewView - - Drawing - Tegning + Drawing + Tegning - - Insert view in drawing - Sett inn visning i tegning + Insert view in drawing + Sett inn visning i tegning - - Insert a new View of a Part in the active drawing - Sett inn en ny visning av et komponent i den aktive tegningen + Insert a new View of a Part in the active drawing + Sett inn en ny visning av et komponent i den aktive tegningen - - + + CmdDrawingOpen - - Drawing - Tegning + Drawing + Tegning - - Open SVG... - Åpne SVG... + Open SVG... + Åpne SVG... - - Open a scalable vector graphic - Åpne skalerbar vektorgrafikk + Open a scalable vector graphic + Åpne skalerbar vektorgrafikk - - + + CmdDrawingOpenBrowserView - - Drawing - Tegning + Drawing + Tegning - - Open &browser view - + Open &browser view + Open &browser view - - - Opens the selected page in a browser view - + Opens the selected page in a browser view + Opens the selected page in a browser view - - + + CmdDrawingOrthoViews - - Drawing - Tegning + Drawing + Tegning - - Insert orthographic views - + Insert orthographic views + Insert orthographic views - - Insert an orthographic projection of a part in the active drawing - + Insert an orthographic projection of a part in the active drawing + Insert an orthographic projection of a part in the active drawing - - + + CmdDrawingProjectShape - - Drawing - Tegning + Drawing + Tegning - - Project shape... - Project shape... + Project shape... + Project shape... - - - Project shape onto a user-defined plane - Project shape onto a user-defined plane + Project shape onto a user-defined plane + Project shape onto a user-defined plane - - + + DrawingGui::DrawingView - - &Background - &Bakgrunn + + &Background + &Bakgrunn - - &Outline - &Disposisjon + &Outline + &Disposisjon - - &Native - &Opprinnelig + &Native + &Opprinnelig - - &OpenGL - &OpenGL + &OpenGL + &OpenGL - - &Image - &Bilde + &Image + &Bilde - - &High Quality Antialiasing - &Høykvalitets kantutjevning + &High Quality Antialiasing + &Høykvalitets kantutjevning - - Open SVG File - Åpne SVG-fil + Open SVG File + Åpne SVG-fil - - Could not open file '%1'. - Kunne ikke åpne filen '%1'. + Could not open file '%1'. + Kunne ikke åpne filen '%1'. - - &Renderer - &Bildegenerering + &Renderer + &Bildegenerering - - Export PDF - Eksporter PDF + Export PDF + Eksporter PDF - - PDF file (*.pdf) - PDF-fil (*.pdf) + PDF file (*.pdf) + PDF-fil (*.pdf) - - Page sizes - Page sizes + Page sizes + Page sizes - - A0 - A0 + A0 + A0 - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4 + A4 + A4 - - A5 - A5 + A5 + A5 - - + + DrawingGui::TaskOrthoViews - - Orthographic Projection - + + Orthographic Projection + Orthographic Projection - - Projection - + Projection + Projection - - Third Angle - + Third Angle + Third Angle - - First Angle - + First Angle + First Angle - - Primary View - + Primary View + Primary View - - Front - + Front + Front - - Right - + Right + Høyre - - Back - + Back + Back - - Left - + Left + Venstre - - Top - + Top + Topp - - Bottom - + Bottom + Bunn - - - Rotate - + - Rotate + - Rotate - - 0 - + 0 + - - 90 - + 90 + 90 - - 180 - + 180 + 180 - - 270 - + 270 + 270 - - Primary view - + Primary view + Primary view - - Secondary Views - + Secondary Views + Secondary Views - - General - + General + Generelle - - Auto scale / position - + Auto scale / position + Auto scale / position - - Scale - + Scale + Skaler - - Primary x / y - + Primary x / y + Primary x / y - - Secondary dx / dy - + Secondary dx / dy + Secondary dx / dy - - Show hidden - + Show hidden + Show hidden - - Show smooth - + Show smooth + Show smooth - - Axonometric - + Axonometric + Axonometric - - + + DrawingGui::TaskProjection - - Visible sharp edges - Visible sharp edges + + Visible sharp edges + Visible sharp edges - - Visible smooth edges - Visible smooth edges + Visible smooth edges + Visible smooth edges - - Visible sewn edges - Visible sewn edges + Visible sewn edges + Visible sewn edges - - Visible outline edges - Visible outline edges + Visible outline edges + Visible outline edges - - Visible isoparameters - Visible isoparameters + Visible isoparameters + Visible isoparameters - - Hidden sharp edges - Hidden sharp edges + Hidden sharp edges + Hidden sharp edges - - Hidden smooth edges - Hidden smooth edges + Hidden smooth edges + Hidden smooth edges - - Hidden sewn edges - Hidden sewn edges + Hidden sewn edges + Hidden sewn edges - - Hidden outline edges - Hidden outline edges + Hidden outline edges + Hidden outline edges - - Hidden isoparameters - Hidden isoparameters + Hidden isoparameters + Hidden isoparameters - - Project shapes - Project shapes + Project shapes + Project shapes - - + + Drawing_NewPage - A0 landscape - A0 landscape + A0 landscape + A0 landscape - Insert new A0 landscape drawing - Insert new A0 landscape drawing + Insert new A0 landscape drawing + Insert new A0 landscape drawing - A1 landscape - A1 landscape + A1 landscape + A1 landscape - Insert new A1 landscape drawing - Insert new A1 landscape drawing + Insert new A1 landscape drawing + Insert new A1 landscape drawing - A2 landscape - A2 landscape + A2 landscape + A2 landscape - Insert new A2 landscape drawing - Insert new A2 landscape drawing + Insert new A2 landscape drawing + Insert new A2 landscape drawing - A3 landscape - A3 landscape + A3 landscape + A3 landscape - Insert new A3 landscape drawing - Sett inn ny A3 landskapstegning + Insert new A3 landscape drawing + Sett inn ny A3 landskapstegning - A4 landscape - A4 landscape + A4 landscape + A4 landscape - Insert new A4 landscape drawing - Insert new A4 landscape drawing + Insert new A4 landscape drawing + Insert new A4 landscape drawing - - A%1 landscape - + + Insert new A%1 landscape drawing + Insert new A%1 landscape drawing - - Insert new A%1 landscape drawing - + A%1 landscape + A%1 landscape - - + + QObject - - Choose an SVG file to open - Velg en SVG-fil å åpne + Choose an SVG file to open + Velg en SVG-fil å åpne - - - - Drawing viewer - Tegningsviser + + Drawing viewer + Tegningsviser - - Scalable Vector Graphics (*.svg *.svgz) - Skalerbar Vektor Grafikk (SVG *. *. svgz) + + Scalable Vector Graphics (*.svg *.svgz) + Skalerbar Vektor Grafikk (SVG *. *. svgz) - - - - - Wrong selection - Feil valg + Wrong selection + Feil valg - - - Select a Part object. - Velg et komponentobjekt. + Select a Part object. + Velg et komponentobjekt. - - - - - No page to insert - Ingen side å sette inn + No page to insert + Ingen side å sette inn - - - - Create a page to insert. - Lag en side å sette inn. + Create a page to insert. + Lag en side å sette inn. - - Create a page to insert views into. - + Create a page to insert views into. + Create a page to insert views into. - - - Select one Page object. - Velg ett objekt på siden. + Select one Page object. + Velg ett objekt på siden. - - SVG(*.svg) - SVG (*.svg) + SVG(*.svg) + SVG (*.svg) - - All Files (*.*) - Alle filer (*.*) + All Files (*.*) + Alle filer (*.*) - - Export page - Eksporter side + Export page + Eksporter side - - Show drawing - Show drawing + + Show drawing + Show drawing - - Front - + + Front + Front - - Back - + Back + Back - - Right - + Right + Høyre - - Left - + Left + Venstre - - Top - + Top + Topp - - Bottom - + Bottom + Bunn - - + + Workbench - - Drawing - Tegning + + Drawing + Tegning - + diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_pl.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_pl.qm index 4eaf6a508..49e919e6f 100644 Binary files a/src/Mod/Drawing/Gui/Resources/translations/Drawing_pl.qm and b/src/Mod/Drawing/Gui/Resources/translations/Drawing_pl.qm differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_pl.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_pl.ts index 6ed1b1286..d65d75524 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_pl.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_pl.ts @@ -1,636 +1,522 @@ - - + + CmdDrawingAnnotation - - Drawing - Rysunek + + Drawing + Rysunek - - &Annotation - + &Annotation + &Adnotacja - - - Inserts an Annotation view in the active drawing - + Inserts an Annotation view in the active drawing + Wstawia widok adnotacji w aktywnym rysunku - - + + CmdDrawingClip - - Drawing - Rysunek + Drawing + Rysunek - - &Clip - + &Clip + &Clip - - - Inserts a clip group in the active drawing - + Inserts a clip group in the active drawing + Inserts a clip group in the active drawing - - + + CmdDrawingExportPage - - File - Plik + File + Plik - - &Export page... - &Eksportuj stronę... + &Export page... + &Eksportuj stronę... - - - Export a page to an SVG file - Eksport strony do pliku SVG + Export a page to an SVG file + Eksport strony do pliku SVG - - + + CmdDrawingNewA3Landscape - - Drawing - Rysunek + Drawing + Rysunek - - - Insert new A3 landscape drawing - Wstaw formatkę A3 poziomo + Insert new A3 landscape drawing + Wstaw formatkę A3 poziomo - - + + CmdDrawingNewPage - - Drawing - Rysunek + Drawing + Rysunek - - - Insert new drawing - Wstaw nowy rysunek + Insert new drawing + Wstaw nowy rysunek - - + + CmdDrawingNewView - - Drawing - Rysunek + Drawing + Rysunek - - Insert view in drawing - Wstaw widok w rysunku + Insert view in drawing + Wstaw widok w rysunku - - Insert a new View of a Part in the active drawing - Wstaw nowy widok części w aktywnym rysunku + Insert a new View of a Part in the active drawing + Wstaw nowy widok części w aktywnym rysunku - - + + CmdDrawingOpen - - Drawing - Rysunek + Drawing + Rysunek - - Open SVG... - Otwórz SVG... + Open SVG... + Otwórz SVG... - - Open a scalable vector graphic - Otwórz skalowalną grafikę wektorową + Open a scalable vector graphic + Otwórz skalowalną grafikę wektorową - - + + CmdDrawingOpenBrowserView - - Drawing - Rysunek + Drawing + Rysunek - - Open &browser view - + Open &browser view + Open &browser view - - - Opens the selected page in a browser view - + Opens the selected page in a browser view + Opens the selected page in a browser view - - + + CmdDrawingOrthoViews - - Drawing - Rysunek + Drawing + Rysunek - - Insert orthographic views - + Insert orthographic views + Wstaw widoki ortogonalne - - Insert an orthographic projection of a part in the active drawing - + Insert an orthographic projection of a part in the active drawing + Wstaw rzut ortogonalny części aktywnego rysunku - - + + CmdDrawingProjectShape - - Drawing - Rysunek + Drawing + Rysunek - - Project shape... - Project shape... + Project shape... + Rzut obwiedni... - - - Project shape onto a user-defined plane - Project shape onto a user-defined plane + Project shape onto a user-defined plane + Rzut obwiedni na płaszczyznę użytkownika - - + + DrawingGui::DrawingView - - &Background - &Tło + + &Background + &Tło - - &Outline - &Zarys + &Outline + &Zarys - - &Native - &Wbudowany + &Native + &Wbudowany - - &OpenGL - OpenGL + &OpenGL + OpenGL - - &Image - &Obraz + &Image + &Obraz - - &High Quality Antialiasing - &Wygładzanie wysokiej jakości + &High Quality Antialiasing + &Wygładzanie wysokiej jakości - - Open SVG File - Otwórz plik SVG + Open SVG File + Otwórz plik SVG - - Could not open file '%1'. - Nie można otworzyć pliku '%1'. + Could not open file '%1'. + Nie można otworzyć pliku '%1'. - - &Renderer - &Renderer + &Renderer + &Renderer - - Export PDF - Eksport PDF + Export PDF + Eksport PDF - - PDF file (*.pdf) - Plik PDF (*. pdf) + PDF file (*.pdf) + Plik PDF (*. pdf) - - Page sizes - Rozmiary stron + Page sizes + Rozmiary stron - - A0 - A0 + A0 + A0 - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4 + A4 + A4 - - A5 - A5 + A5 + A5 - - + + DrawingGui::TaskOrthoViews - - Orthographic Projection - + + Orthographic Projection + Rzutowanie ortogonalne - - Projection - + Projection + Rzut - - Third Angle - + Third Angle + Kąt trzeci - - First Angle - + First Angle + Kąt pierwszy - - Primary View - + Primary View + Widok podstawowy - - Front - + Front + Przód - - Right - + Right + Prawo - - Back - + Back + Wstecz - - Left - + Left + Lewa - - Top - + Top + Góra - - Bottom - + Bottom + U dołu - - - Rotate - + - Rotate + -Obrót - - 0 - + 0 + - - 90 - + 90 + 90 - - 180 - + 180 + 180 - - 270 - + 270 + 270 - - Primary view - + Primary view + Widok główny - - Secondary Views - + Secondary Views + Secondary Views - - General - + General + Ogólne - - Auto scale / position - + Auto scale / position + Auto skala / pozycja - - Scale - + Scale + Skala - - Primary x / y - + Primary x / y + Primary x / y - - Secondary dx / dy - + Secondary dx / dy + Secondary dx / dy - - Show hidden - + Show hidden + Pokaż ukryte - - Show smooth - + Show smooth + Show smooth - - Axonometric - + Axonometric + Axonometric - - + + DrawingGui::TaskProjection - - Visible sharp edges - Visible sharp edges + + Visible sharp edges + Widoczne ostre krawędzie - - Visible smooth edges - Visible smooth edges + Visible smooth edges + Widoczne gładkie krawędzie - - Visible sewn edges - Visible sewn edges + Visible sewn edges + Widoczne wszyte krawędzie - - Visible outline edges - Visible outline edges + Visible outline edges + Widoczny obrys krawędzi - - Visible isoparameters - Visible isoparameters + Visible isoparameters + Widoczne izoparametry - - Hidden sharp edges - Hidden sharp edges + Hidden sharp edges + Ukryte ostre krawędzie - - Hidden smooth edges - Hidden smooth edges + Hidden smooth edges + Ukryte gładkie krawędzie - - Hidden sewn edges - Hidden sewn edges + Hidden sewn edges + Ukryte wszyte krawędzie - - Hidden outline edges - Hidden outline edges + Hidden outline edges + Ukryty obrys krawędzi - - Hidden isoparameters - Hidden isoparameters + Hidden isoparameters + Ukryte krzywe isoparametryczne - - Project shapes - Project shapes + Project shapes + Rzutowanie obwiedni - - + + Drawing_NewPage - A0 landscape - A0 poziomo + A0 landscape + A0 poziomo - Insert new A0 landscape drawing - Wstaw formatkę A0 poziomo + Insert new A0 landscape drawing + Wstaw formatkę A0 poziomo - A1 landscape - A1 poziomo + A1 landscape + A1 poziomo - Insert new A1 landscape drawing - Wstaw formatkę A1 poziomo + Insert new A1 landscape drawing + Wstaw formatkę A1 poziomo - A2 landscape - A2 poziomo + A2 landscape + A2 poziomo - Insert new A2 landscape drawing - Wstaw formatkę A3 poziomo + Insert new A2 landscape drawing + Wstaw formatkę A3 poziomo - A3 landscape - A3 poziomo + A3 landscape + A3 poziomo - Insert new A3 landscape drawing - Wstaw formatkę A3 poziomo + Insert new A3 landscape drawing + Wstaw formatkę A3 poziomo - A4 landscape - A4 poziomo + A4 landscape + A4 poziomo - Insert new A4 landscape drawing - Wstaw formatkę A4 poziomo + Insert new A4 landscape drawing + Wstaw formatkę A4 poziomo - - A%1 landscape - + + Insert new A%1 landscape drawing + Wstaw nowy rysunek A%1 Poziomy - - Insert new A%1 landscape drawing - + A%1 landscape + A%1 Poziomy - - + + QObject - - Choose an SVG file to open - Wybierz plik SVG do otwarcia + Choose an SVG file to open + Wybierz plik SVG do otwarcia - - - - Drawing viewer - Podgląd rysunku + + Drawing viewer + Podgląd rysunku - - Scalable Vector Graphics (*.svg *.svgz) - Skalowalna Grafika Wektorowa (*.svg *.svgz) + + Scalable Vector Graphics (*.svg *.svgz) + Skalowalna Grafika Wektorowa (*.svg *.svgz) - - - - - Wrong selection - Niewłaściwy wybór + Wrong selection + Niewłaściwy wybór - - - Select a Part object. - Wybierz stronę. + Select a Part object. + Wybierz stronę. - - - - - No page to insert - Brak strony do wstawienia. + No page to insert + Brak strony do wstawienia. - - - - Create a page to insert. - Utwórz stronę do wstawienia. + Create a page to insert. + Utwórz stronę do wstawienia. - - Create a page to insert views into. - + Create a page to insert views into. + Create a page to insert views into. - - - Select one Page object. - Wybierz jedną Stronę + Select one Page object. + Wybierz jedną Stronę - - SVG(*.svg) - SVG (*. svg) + SVG(*.svg) + SVG (*. svg) - - All Files (*.*) - Wszystkie pliki (*.*) + All Files (*.*) + Wszystkie pliki (*.*) - - Export page - Wyślij stronę + Export page + Wyślij stronę - - Show drawing - Pokaż rysunek + + Show drawing + Pokaż rysunek - - Front - + + Front + Przód - - Back - + Back + Wstecz - - Right - + Right + Prawo - - Left - + Left + Lewa - - Top - + Top + Góra - - Bottom - + Bottom + U dołu - - + + Workbench - - Drawing - Rysunek + + Drawing + Rysunek - + diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt-BR.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt-BR.qm new file mode 100644 index 000000000..11f0f1ef8 Binary files /dev/null and b/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt-BR.qm differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt-BR.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt-BR.ts new file mode 100644 index 000000000..ad20609aa --- /dev/null +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt-BR.ts @@ -0,0 +1,522 @@ + + + + + CmdDrawingAnnotation + + + Drawing + Desenho + + + &Annotation + &Anotação + + + Inserts an Annotation view in the active drawing + Inserir uma anotação no desenho ativo + + + + CmdDrawingClip + + Drawing + Desenho + + + &Clip + &Recorte + + + Inserts a clip group in the active drawing + Inserir um grupo de clipe no desenho ativo + + + + CmdDrawingExportPage + + File + Arquivo + + + &Export page... + &Exportar página... + + + Export a page to an SVG file + Exportar página para um arquivo SVG + + + + CmdDrawingNewA3Landscape + + Drawing + Desenho + + + Insert new A3 landscape drawing + Inserir um novo desenho A3 paisagem + + + + CmdDrawingNewPage + + Drawing + Desenho + + + Insert new drawing + Inserir novo desenho + + + + CmdDrawingNewView + + Drawing + Desenho + + + Insert view in drawing + Inserir uma vista no desenho + + + Insert a new View of a Part in the active drawing + Inserir uma nova Vista de uma peça no desenho ativo + + + + CmdDrawingOpen + + Drawing + Desenho + + + Open SVG... + Abrir SVG... + + + Open a scalable vector graphic + Abrir um gráfico vetorial escalável + + + + CmdDrawingOpenBrowserView + + Drawing + Desenho + + + Open &browser view + Abrir visualização no navegador + + + Opens the selected page in a browser view + Abrir a página selecionada no navegador + + + + CmdDrawingOrthoViews + + Drawing + Desenho + + + Insert orthographic views + Inserir visualizações ortográficas + + + Insert an orthographic projection of a part in the active drawing + Inserir uma projeção ortográfica em uma parte do desenho ativo + + + + CmdDrawingProjectShape + + Drawing + Desenho + + + Project shape... + Projetar uma forma... + + + Project shape onto a user-defined plane + Projeta uma forma sobre um plano definido pelo usuário + + + + DrawingGui::DrawingView + + + &Background + Plano de &Fundo + + + &Outline + &Contorno + + + &Native + &Nativo + + + &OpenGL + &OpenGL + + + &Image + &Imagem + + + &High Quality Antialiasing + Antialiasing de alta qualidade + + + Open SVG File + Abrir arquivo SVG + + + Could not open file '%1'. + Não foi possível abrir o arquivo "%1". + + + &Renderer + &Renderizador + + + Export PDF + Exportar PDF + + + PDF file (*.pdf) + Arquivo PDF (*.pdf) + + + Page sizes + Tamanhos de página + + + A0 + A0 + + + A1 + A1 + + + A2 + A2 + + + A3 + A3 + + + A4 + A4 + + + A5 + A5 + + + + DrawingGui::TaskOrthoViews + + + Orthographic Projection + Projeção ortográfica + + + Projection + Projeção + + + Third Angle + Terceiro ângulo + + + First Angle + Primeiro ângulo + + + Primary View + Visão primária + + + Front + Frente + + + Right + Direito + + + Back + Voltar + + + Left + Esquerda + + + Top + Topo + + + Bottom + De baixo + + + - Rotate + - Rotacionar + + + 0 + + + + 90 + 90 + + + 180 + 180 + + + 270 + 270 + + + Primary view + Vista principal + + + Secondary Views + Vista secundária + + + General + Geral + + + Auto scale / position + Auto escala / posição + + + Scale + Escalar + + + Primary x / y + Primária x / y + + + Secondary dx / dy + Secundária dx / dy + + + Show hidden + Exibir ocultos + + + Show smooth + Exibir suavização + + + Axonometric + Axonométrica + + + + DrawingGui::TaskProjection + + + Visible sharp edges + Bordas afiadas visíveis + + + Visible smooth edges + Bordas alisadas visíveis + + + Visible sewn edges + Bordas costuradas visíveis + + + Visible outline edges + Bordas de contorno visíveis + + + Visible isoparameters + Isoparâmetros visíveis + + + Hidden sharp edges + Bordas afiadas escondidas + + + Hidden smooth edges + Bordas alisadas escondidas + + + Hidden sewn edges + Bordas costuradas escondidas + + + Hidden outline edges + Bordas de contorno escondidas + + + Hidden isoparameters + Isoparâmetros escondidos + + + Project shapes + Projetar formas + + + + Drawing_NewPage + + A0 landscape + A0 paisagem + + + Insert new A0 landscape drawing + Inserir uma nova página A0 paisagem + + + A1 landscape + A1 paisagem + + + Insert new A1 landscape drawing + Inserir uma nova página A1 paisagem + + + A2 landscape + A2 paisagem + + + Insert new A2 landscape drawing + Inserir uma nova página A2 paisagem + + + A3 landscape + A3 paisagem + + + Insert new A3 landscape drawing + Inserir um novo desenho A3 paisagem + + + A4 landscape + A4 paisagem + + + Insert new A4 landscape drawing + Inserir uma nova página A4 paisagem + + + + Insert new A%1 landscape drawing + Inserir uma nova página A%1 paisagem + + + A%1 landscape + A%1 paisagem + + + + QObject + + Choose an SVG file to open + Escolha um arquivo SVG para abrir + + + + Drawing viewer + Visualizador de desenho + + + + Scalable Vector Graphics (*.svg *.svgz) + Scalable Vector Graphics (*.svg *.svgz) + + + Wrong selection + Seleção errada + + + Select a Part object. + Selecione um objeto Part. + + + No page to insert + Nenhuma página para inserir + + + Create a page to insert. + Criar uma página para inserir. + + + Create a page to insert views into. + Crie uma página para inserir as vistas. + + + Select one Page object. + Selecione um objeto de tipo Página. + + + SVG(*.svg) + SVG (*.svg) + + + All Files (*.*) + Todos os arquivos (*.*) + + + Export page + Exportar uma página + + + + Show drawing + Mostrar o desenho + + + + Front + Frente + + + Back + Voltar + + + Right + Direito + + + Left + Esquerda + + + Top + Topo + + + Bottom + De baixo + + + + Workbench + + + Drawing + Desenho + + + diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt.qm deleted file mode 100644 index b2e13daa2..000000000 Binary files a/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt.qm and /dev/null differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt.ts deleted file mode 100644 index ede240b9e..000000000 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_pt.ts +++ /dev/null @@ -1,636 +0,0 @@ - - - - - CmdDrawingAnnotation - - - Drawing - Desenho - - - - &Annotation - - - - - - Inserts an Annotation view in the active drawing - - - - - CmdDrawingClip - - - Drawing - Desenho - - - - &Clip - - - - - - Inserts a clip group in the active drawing - - - - - CmdDrawingExportPage - - - File - Arquivo - - - - &Export page... - &Exportar página... - - - - - Export a page to an SVG file - Exportar página para um arquivo SVG - - - - CmdDrawingNewA3Landscape - - - Drawing - Desenho - - - - - Insert new A3 landscape drawing - Inserir um novo desenho A3 paisagem - - - - CmdDrawingNewPage - - - Drawing - Desenho - - - - - Insert new drawing - Inserir novo desenho - - - - CmdDrawingNewView - - - Drawing - Desenho - - - - Insert view in drawing - Inserir uma vista no desenho - - - - Insert a new View of a Part in the active drawing - Inserir uma nova Vista de uma peça no desenho ativo - - - - CmdDrawingOpen - - - Drawing - Desenho - - - - Open SVG... - Abrir SVG... - - - - Open a scalable vector graphic - Abrir um gráfico vetorial escalável - - - - CmdDrawingOpenBrowserView - - - Drawing - Desenho - - - - Open &browser view - - - - - - Opens the selected page in a browser view - - - - - CmdDrawingOrthoViews - - - Drawing - Desenho - - - - Insert orthographic views - - - - - Insert an orthographic projection of a part in the active drawing - - - - - CmdDrawingProjectShape - - - Drawing - Desenho - - - - Project shape... - Projetar uma forma... - - - - - Project shape onto a user-defined plane - Projeta uma forma sobre um plano definido pelo usuário - - - - DrawingGui::DrawingView - - - &Background - Plano de &Fundo - - - - &Outline - &Contorno - - - - &Native - &Nativo - - - - &OpenGL - &OpenGL - - - - &Image - &Imagem - - - - &High Quality Antialiasing - Antialiasing de alta qualidade - - - - Open SVG File - Abrir arquivo SVG - - - - Could not open file '%1'. - Não foi possível abrir o arquivo "%1". - - - - &Renderer - &Renderizador - - - - Export PDF - Exportar PDF - - - - PDF file (*.pdf) - Arquivo PDF (*.pdf) - - - - Page sizes - Tamanhos de página - - - - A0 - A0 - - - - A1 - A1 - - - - A2 - A2 - - - - A3 - A3 - - - - A4 - A4 - - - - A5 - A5 - - - - DrawingGui::TaskOrthoViews - - - Orthographic Projection - - - - - Projection - - - - - Third Angle - - - - - First Angle - - - - - Primary View - - - - - Front - - - - - Right - - - - - Back - - - - - Left - - - - - Top - - - - - Bottom - - - - - - Rotate - - - - - 0 - - - - - 90 - - - - - 180 - - - - - 270 - - - - - Primary view - - - - - Secondary Views - - - - - General - - - - - Auto scale / position - - - - - Scale - - - - - Primary x / y - - - - - Secondary dx / dy - - - - - Show hidden - - - - - Show smooth - - - - - Axonometric - - - - - DrawingGui::TaskProjection - - - Visible sharp edges - Bordas afiadas visíveis - - - - Visible smooth edges - Bordas alisadas visíveis - - - - Visible sewn edges - Bordas costuradas visíveis - - - - Visible outline edges - Bordas de contorno visíveis - - - - Visible isoparameters - Isoparâmetros visíveis - - - - Hidden sharp edges - Bordas afiadas escondidas - - - - Hidden smooth edges - Bordas alisadas escondidas - - - - Hidden sewn edges - Bordas costuradas escondidas - - - - Hidden outline edges - Bordas de contorno escondidas - - - - Hidden isoparameters - Isoparâmetros escondidos - - - - Project shapes - Projetar formas - - - - Drawing_NewPage - - A0 landscape - A0 paisagem - - - Insert new A0 landscape drawing - Inserir uma nova página A0 paisagem - - - A1 landscape - A1 paisagem - - - Insert new A1 landscape drawing - Inserir uma nova página A1 paisagem - - - A2 landscape - A2 paisagem - - - Insert new A2 landscape drawing - Inserir uma nova página A2 paisagem - - - A3 landscape - A3 paisagem - - - Insert new A3 landscape drawing - Inserir um novo desenho A3 paisagem - - - A4 landscape - A4 paisagem - - - Insert new A4 landscape drawing - Inserir uma nova página A4 paisagem - - - - A%1 landscape - - - - - Insert new A%1 landscape drawing - - - - - QObject - - - Choose an SVG file to open - Escolha um arquivo SVG para abrir - - - - - - Drawing viewer - Visualizador de desenho - - - - Scalable Vector Graphics (*.svg *.svgz) - Scalable Vector Graphics (*.svg *.svgz) - - - - - - - Wrong selection - Seleção errada - - - - - Select a Part object. - Selecione um objeto Part. - - - - - - - No page to insert - Nenhuma página para inserir - - - - - - Create a page to insert. - Criar uma página para inserir. - - - - Create a page to insert views into. - - - - - - Select one Page object. - Selecione um objeto de tipo Página. - - - - SVG(*.svg) - SVG (*.svg) - - - - All Files (*.*) - Todos os arquivos (*.*) - - - - Export page - Exportar uma página - - - - Show drawing - Mostrar o desenho - - - - Front - - - - - Back - - - - - Right - - - - - Left - - - - - Top - - - - - Bottom - - - - - Workbench - - - Drawing - Desenho - - - diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_ro.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_ro.qm new file mode 100644 index 000000000..52ff4f693 Binary files /dev/null and b/src/Mod/Drawing/Gui/Resources/translations/Drawing_ro.qm differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_ro.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_ro.ts new file mode 100644 index 000000000..f402052df --- /dev/null +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_ro.ts @@ -0,0 +1,522 @@ + + + + + CmdDrawingAnnotation + + + Drawing + Desen + + + &Annotation + &Adnotație + + + Inserts an Annotation view in the active drawing + Inserează o vizualizare de adnotație în desenul activ + + + + CmdDrawingClip + + Drawing + Desen + + + &Clip + &Clip + + + Inserts a clip group in the active drawing + Inserează un grup de clipuri în desenul activ + + + + CmdDrawingExportPage + + File + Fişier + + + &Export page... + &Exportă pagina... + + + Export a page to an SVG file + Exportă pagina într-un fişier SVG + + + + CmdDrawingNewA3Landscape + + Drawing + Desen + + + Insert new A3 landscape drawing + Inserare A3 nou format peisaj + + + + CmdDrawingNewPage + + Drawing + Desen + + + Insert new drawing + Inserează un desen nou + + + + CmdDrawingNewView + + Drawing + Desen + + + Insert view in drawing + Inseraţi vizualizare în desen + + + Insert a new View of a Part in the active drawing + Insereaza o nouă vizualizare a unei piese în desenul activ + + + + CmdDrawingOpen + + Drawing + Desen + + + Open SVG... + Deschide SVG ... + + + Open a scalable vector graphic + Deschide o imagine grafică vectorială scalabilă + + + + CmdDrawingOpenBrowserView + + Drawing + Desen + + + Open &browser view + Deschideți &browser-ul + + + Opens the selected page in a browser view + Deschide pagina selectată într-un browser + + + + CmdDrawingOrthoViews + + Drawing + Desen + + + Insert orthographic views + Inserați vederi ortografice + + + Insert an orthographic projection of a part in the active drawing + Inseraţi o proiecţie ortografică a unei componente in desenul activ + + + + CmdDrawingProjectShape + + Drawing + Desen + + + Project shape... + Proiectează forma... + + + Project shape onto a user-defined plane + Proiectază forma pe un plan definit de utilizator + + + + DrawingGui::DrawingView + + + &Background + &Fundal + + + &Outline + &Contur + + + &Native + &Nativ + + + &OpenGL + &OpenGL + + + &Image + &Imagine + + + &High Quality Antialiasing + &Antialiasing de înaltă calitate + + + Open SVG File + Deschide fişier SVG + + + Could not open file '%1'. + Fişierul '%1' nu a putut fi deschis. + + + &Renderer + &Renderizator + + + Export PDF + Export format PDF + + + PDF file (*.pdf) + Fişier PDF (*.pdf) + + + Page sizes + Dimensiuni de pagină + + + A0 + A0 + + + A1 + A1 + + + A2 + A2 + + + A3 + A3 + + + A4 + A4 + + + A5 + A5 + + + + DrawingGui::TaskOrthoViews + + + Orthographic Projection + Proiecţie Ortografică + + + Projection + Proiecţie + + + Third Angle + Al treilea unghi + + + First Angle + Primul unghi + + + Primary View + Vizualizare primară + + + Front + Front + + + Right + Right + + + Back + Spate + + + Left + Left + + + Top + Top + + + Bottom + Bottom + + + - Rotate + - Rotește + + + 0 + + + + 90 + 90 + + + 180 + 180 + + + 270 + 270 + + + Primary view + Vizualizare primară + + + Secondary Views + Vizualizare secundară + + + General + General + + + Auto scale / position + Auto scalare / poziţionare + + + Scale + Scalare + + + Primary x / y + x / y primar + + + Secondary dx / dy + dx / dy secundar + + + Show hidden + Arată ce este ascuns + + + Show smooth + Arată neted + + + Axonometric + Axonometric + + + + DrawingGui::TaskProjection + + + Visible sharp edges + Muchiile ascuțite vizibile + + + Visible smooth edges + Muchiile netede vizibile + + + Visible sewn edges + Muchiile îmbinate vizibile + + + Visible outline edges + Muchiile de contur vizibile + + + Visible isoparameters + Isoparametrii vizibili + + + Hidden sharp edges + Muchiile ascuțite ascunse + + + Hidden smooth edges + Muchiile netede ascunse + + + Hidden sewn edges + Muchiile îmbinate ascunse + + + Hidden outline edges + Muchiile de contur ascunse + + + Hidden isoparameters + Isoparametrii ascunși + + + Project shapes + Proiectează formele + + + + Drawing_NewPage + + A0 landscape + A0 landscape + + + Insert new A0 landscape drawing + Insert new A0 landscape drawing + + + A1 landscape + A1 landscape + + + Insert new A1 landscape drawing + Insert new A1 landscape drawing + + + A2 landscape + A2 landscape + + + Insert new A2 landscape drawing + Insert new A2 landscape drawing + + + A3 landscape + A3 landscape + + + Insert new A3 landscape drawing + Inserare A3 nou format peisaj + + + A4 landscape + A4 landscape + + + Insert new A4 landscape drawing + Insert new A4 landscape drawing + + + + Insert new A%1 landscape drawing + Inserați un nou A%1 desen tip peisaj + + + A%1 landscape + A%1 peisaj + + + + QObject + + Choose an SVG file to open + Alegeţi un fişier SVG pentru deschidere + + + + Drawing viewer + Vizualizatorul de desen + + + + Scalable Vector Graphics (*.svg *.svgz) + Grafică vectorială scalabilă(*.svg *.svgz) + + + Wrong selection + Selecție greșită + + + Select a Part object. + Selecteaza un obiect tip piesă + + + No page to insert + Nicio pagină pentru inserare + + + Create a page to insert. + Creează o pagină pentru inserare + + + Create a page to insert views into. + Creați o pagină pentru a insera vizualizările. + + + Select one Page object. + Selectează un obiect pagină + + + SVG(*.svg) + SVG (*.SVG) + + + All Files (*.*) + Toate fișierele (*.*) + + + Export page + Exportă pagina + + + + Show drawing + Arată desenul + + + + Front + Front + + + Back + Spate + + + Right + Right + + + Left + Left + + + Top + Top + + + Bottom + Bottom + + + + Workbench + + + Drawing + Desen + + + diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_ru.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_ru.qm index ec09875cf..e244e4f31 100644 Binary files a/src/Mod/Drawing/Gui/Resources/translations/Drawing_ru.qm and b/src/Mod/Drawing/Gui/Resources/translations/Drawing_ru.qm differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_ru.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_ru.ts index 7ad0e5760..dccc8bcd2 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_ru.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_ru.ts @@ -1,636 +1,522 @@ - - + + CmdDrawingAnnotation - - Drawing - Чертеж + + Drawing + Чертеж - - &Annotation - + &Annotation + &Аннотация - - - Inserts an Annotation view in the active drawing - + Inserts an Annotation view in the active drawing + Вставляет представление аннотации в активном документе - - + + CmdDrawingClip - - Drawing - Чертеж + Drawing + Чертеж - - &Clip - + &Clip + &Clip - - - Inserts a clip group in the active drawing - + Inserts a clip group in the active drawing + Inserts a clip group in the active drawing - - + + CmdDrawingExportPage - - File - Файл + File + Файл - - &Export page... - Экспортировать страницу... + &Export page... + &Экспортировать страницу... - - - Export a page to an SVG file - Экспорт страницу в файл SVG + Export a page to an SVG file + Экспорт страницу в файл SVG - - + + CmdDrawingNewA3Landscape - - Drawing - Чертеж + Drawing + Чертеж - - - Insert new A3 landscape drawing - Вставить новый фоновый чертеж А3 + Insert new A3 landscape drawing + Вставить новый фоновый чертеж А3 - - + + CmdDrawingNewPage - - Drawing - Чертеж + Drawing + Чертеж - - - Insert new drawing - Вставить новый чертеж + Insert new drawing + Вставить новый чертеж - - + + CmdDrawingNewView - - Drawing - Чертеж + Drawing + Чертеж - - Insert view in drawing - Вставить вид в чертеж + Insert view in drawing + Вставить вид в чертеж - - Insert a new View of a Part in the active drawing - Вставить новый вид детали в текущий чертеж + Insert a new View of a Part in the active drawing + Вставить новый вид детали в текущий чертеж - - + + CmdDrawingOpen - - Drawing - Чертеж + Drawing + Чертеж - - Open SVG... - Открыть SVG... + Open SVG... + Открыть SVG... - - Open a scalable vector graphic - Открыть масштабируемую векторную графику + Open a scalable vector graphic + Открыть масштабируемую векторную графику - - + + CmdDrawingOpenBrowserView - - Drawing - Чертеж + Drawing + Чертеж - - Open &browser view - + Open &browser view + Open &browser view - - - Opens the selected page in a browser view - + Opens the selected page in a browser view + Opens the selected page in a browser view - - + + CmdDrawingOrthoViews - - Drawing - Чертеж + Drawing + Чертеж - - Insert orthographic views - + Insert orthographic views + Вставить ортографические виды - - Insert an orthographic projection of a part in the active drawing - + Insert an orthographic projection of a part in the active drawing + Insert an orthographic projection of a part in the active drawing - - + + CmdDrawingProjectShape - - Drawing - Чертеж + Drawing + Чертеж - - Project shape... - Project shape... + Project shape... + Проекция фигуры... - - - Project shape onto a user-defined plane - Project shape onto a user-defined plane + Project shape onto a user-defined plane + Проекция фигуры на выбранную плоскость - - + + DrawingGui::DrawingView - - &Background - &Фон + + &Background + &Фон - - &Outline - &Контур + &Outline + &Контур - - &Native - &Собственный + &Native + &Собственный - - &OpenGL - &OpenGL + &OpenGL + &OpenGL - - &Image - &Изображение + &Image + &Изображение - - &High Quality Antialiasing - &Высокое качество сглаживания + &High Quality Antialiasing + &Высокое качество сглаживания - - Open SVG File - Открыть файл SVG + Open SVG File + Открыть файл SVG - - Could not open file '%1'. - Не удалось открыть файл '% 1'. + Could not open file '%1'. + Не удалось открыть файл '% 1'. - - &Renderer - Рендерер + &Renderer + Рендерер - - Export PDF - Экспорт в PDF + Export PDF + Экспорт в PDF - - PDF file (*.pdf) - PDF-файл (*. PDF) + PDF file (*.pdf) + PDF-файл (*. PDF) - - Page sizes - Размеры страницы + Page sizes + Размеры страницы - - A0 - А0 + A0 + А0 - - A1 - А1 + A1 + А1 - - A2 - А2 + A2 + А2 - - A3 - А3 + A3 + А3 - - A4 - А4 + A4 + А4 - - A5 - А5 + A5 + А5 - - + + DrawingGui::TaskOrthoViews - - Orthographic Projection - + + Orthographic Projection + Ортографическая проекция - - Projection - + Projection + Проекция - - Third Angle - + Third Angle + Третий угол - - First Angle - + First Angle + Первый угол - - Primary View - + Primary View + Главный вид - - Front - + Front + Спереди - - Right - + Right + Вправо - - Back - + Back + Назад - - Left - + Left + Слева - - Top - + Top + Вверх - - Bottom - + Bottom + Дно - - - Rotate - + - Rotate + Вращение - - 0 - + 0 + - - 90 - + 90 + 90 - - 180 - + 180 + 180 - - 270 - + 270 + 270 - - Primary view - + Primary view + Главный вид - - Secondary Views - + Secondary Views + Дополнительные виды - - General - + General + Основные - - Auto scale / position - + Auto scale / position + Auto scale / position - - Scale - + Scale + Масштаб - - Primary x / y - + Primary x / y + Primary x / y - - Secondary dx / dy - + Secondary dx / dy + Secondary dx / dy - - Show hidden - + Show hidden + Показать скрытое - - Show smooth - + Show smooth + Show smooth - - Axonometric - + Axonometric + Аксонометрия - - + + DrawingGui::TaskProjection - - Visible sharp edges - Visible sharp edges + + Visible sharp edges + Видимые резкие края - - Visible smooth edges - Visible smooth edges + Visible smooth edges + Видимые плавные края - - Visible sewn edges - Visible sewn edges + Visible sewn edges + Показать пришитые края - - Visible outline edges - Visible outline edges + Visible outline edges + Видимые края контура - - Visible isoparameters - Visible isoparameters + Visible isoparameters + Видимые изопараметры - - Hidden sharp edges - Hidden sharp edges + Hidden sharp edges + Скрытые резкие края - - Hidden smooth edges - Hidden smooth edges + Hidden smooth edges + Скрытые плавные края - - Hidden sewn edges - Hidden sewn edges + Hidden sewn edges + Скрыть пришитые края - - Hidden outline edges - Hidden outline edges + Hidden outline edges + Скрытые края контура - - Hidden isoparameters - Hidden isoparameters + Hidden isoparameters + Скрытые изопараметры - - Project shapes - Project shapes + Project shapes + Проекция фигуры - - + + Drawing_NewPage - A0 landscape - А0 альбомный + A0 landscape + А0 альбомный - Insert new A0 landscape drawing - Вставить новый альбомный чертеж А0 + Insert new A0 landscape drawing + Вставить новый альбомный чертеж А0 - A1 landscape - А1 альбомный + A1 landscape + А1 альбомный - Insert new A1 landscape drawing - Вставить новый альбомный чертеж А1 + Insert new A1 landscape drawing + Вставить новый альбомный чертеж А1 - A2 landscape - А2 альбомный + A2 landscape + А2 альбомный - Insert new A2 landscape drawing - Вставить новый альбомный чертеж А2 + Insert new A2 landscape drawing + Вставить новый альбомный чертеж А2 - A3 landscape - А3 альбомный + A3 landscape + А3 альбомный - Insert new A3 landscape drawing - Вставить новый фоновый чертеж А3 + Insert new A3 landscape drawing + Вставить новый фоновый чертеж А3 - A4 landscape - А4 альбомный + A4 landscape + А4 альбомный - Insert new A4 landscape drawing - Вставить новый альбомный чертеж А4 + Insert new A4 landscape drawing + Вставить новый альбомный чертеж А4 - - A%1 landscape - + + Insert new A%1 landscape drawing + Insert new A%1 landscape drawing - - Insert new A%1 landscape drawing - + A%1 landscape + A%1 landscape - - + + QObject - - Choose an SVG file to open - Выберите SVG-файл для открытия + Choose an SVG file to open + Выберите SVG-файл для открытия - - - - Drawing viewer - Вид чертежа + + Drawing viewer + Вид чертежа - - Scalable Vector Graphics (*.svg *.svgz) - Масштабируемая векторная графика (*.svg *.svgz) + + Scalable Vector Graphics (*.svg *.svgz) + Масштабируемая векторная графика (*.svg *.svgz) - - - - - Wrong selection - Неправильный выбор + Wrong selection + Неправильный выбор - - - Select a Part object. - Выберите часть объекта. + Select a Part object. + Выберите часть объекта. - - - - - No page to insert - Нет страницы для вставки + No page to insert + Нет страницы для вставки - - - - Create a page to insert. - Создать страницу для вставки. + Create a page to insert. + Создать страницу для вставки. - - Create a page to insert views into. - + Create a page to insert views into. + Создайте страницу для вставки видов - - - Select one Page object. - Выберите одну страницу объекта. + Select one Page object. + Выберите одну страницу объекта. - - SVG(*.svg) - SVG(*.svg) + SVG(*.svg) + SVG(*.svg) - - All Files (*.*) - Все файлы (*.*) + All Files (*.*) + Все файлы (*.*) - - Export page - Экспортировать страницу + Export page + Экспортировать страницу - - Show drawing - Показать чертеж + + Show drawing + Показать чертеж - - Front - + + Front + Спереди - - Back - + Back + Назад - - Right - + Right + Вправо - - Left - + Left + Слева - - Top - + Top + Вверх - - Bottom - + Bottom + Дно - - + + Workbench - - Drawing - Чертеж + + Drawing + Чертеж - + diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_se.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_se.qm deleted file mode 100644 index 74a82310c..000000000 Binary files a/src/Mod/Drawing/Gui/Resources/translations/Drawing_se.qm and /dev/null differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_se.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_se.ts deleted file mode 100644 index 0e21fcbe3..000000000 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_se.ts +++ /dev/null @@ -1,636 +0,0 @@ - - - - - CmdDrawingAnnotation - - - Drawing - Ritning - - - - &Annotation - - - - - - Inserts an Annotation view in the active drawing - - - - - CmdDrawingClip - - - Drawing - Ritning - - - - &Clip - - - - - - Inserts a clip group in the active drawing - - - - - CmdDrawingExportPage - - - File - Fil - - - - &Export page... - &Exportera sida... - - - - - Export a page to an SVG file - Exportera en sida till en SVG-fil - - - - CmdDrawingNewA3Landscape - - - Drawing - Ritning - - - - - Insert new A3 landscape drawing - Infoga ny A3 landskap ritning - - - - CmdDrawingNewPage - - - Drawing - Ritning - - - - - Insert new drawing - Sätt in ny ritning - - - - CmdDrawingNewView - - - Drawing - Ritning - - - - Insert view in drawing - Infoga vy i ritningen - - - - Insert a new View of a Part in the active drawing - Sätt in en ny vy av en Del i den aktiva ritningen - - - - CmdDrawingOpen - - - Drawing - Ritning - - - - Open SVG... - Öppna SVG... - - - - Open a scalable vector graphic - Öppna en skalbar vektorgrafik - - - - CmdDrawingOpenBrowserView - - - Drawing - Ritning - - - - Open &browser view - - - - - - Opens the selected page in a browser view - - - - - CmdDrawingOrthoViews - - - Drawing - Ritning - - - - Insert orthographic views - - - - - Insert an orthographic projection of a part in the active drawing - - - - - CmdDrawingProjectShape - - - Drawing - Ritning - - - - Project shape... - Projekt former... - - - - - Project shape onto a user-defined plane - Projicera form på ett användardefinierat plan - - - - DrawingGui::DrawingView - - - &Background - B&akgrund - - - - &Outline - &Kontur - - - - &Native - &Nativ - - - - &OpenGL - &OpenGL - - - - &Image - &Bild - - - - &High Quality Antialiasing - &Högkvalitets kantutjämning - - - - Open SVG File - Öppna SVG-fil - - - - Could not open file '%1'. - Det gick inte att öppna fil '%1'. - - - - &Renderer - &Renderare - - - - Export PDF - Exportera PDF - - - - PDF file (*.pdf) - PDF-fil (*.pdf) - - - - Page sizes - Sidstorlekar - - - - A0 - A0 - - - - A1 - A1 - - - - A2 - A2 - - - - A3 - A3 - - - - A4 - A4 - - - - A5 - A5 - - - - DrawingGui::TaskOrthoViews - - - Orthographic Projection - - - - - Projection - - - - - Third Angle - - - - - First Angle - - - - - Primary View - - - - - Front - - - - - Right - - - - - Back - - - - - Left - - - - - Top - - - - - Bottom - - - - - - Rotate - - - - - 0 - - - - - 90 - - - - - 180 - - - - - 270 - - - - - Primary view - - - - - Secondary Views - - - - - General - - - - - Auto scale / position - - - - - Scale - - - - - Primary x / y - - - - - Secondary dx / dy - - - - - Show hidden - - - - - Show smooth - - - - - Axonometric - - - - - DrawingGui::TaskProjection - - - Visible sharp edges - Synliga vassa kanter - - - - Visible smooth edges - Synliga jämna kanter - - - - Visible sewn edges - Synliga sydda kanter - - - - Visible outline edges - Synliga kontur kanter - - - - Visible isoparameters - Synliga isoparametrar - - - - Hidden sharp edges - Dolda vassa kanter - - - - Hidden smooth edges - Dolda jämna kanter - - - - Hidden sewn edges - Dolda sydda kanter - - - - Hidden outline edges - Dolda kontur kanter - - - - Hidden isoparameters - Dolda isoparametrar - - - - Project shapes - Projekt former - - - - Drawing_NewPage - - A0 landscape - Liggande A0 - - - Insert new A0 landscape drawing - Infoga ny liggande A0 ritning - - - A1 landscape - Liggande A1 - - - Insert new A1 landscape drawing - Infoga ny liggande A1 ritning - - - A2 landscape - Liggande A2 - - - Insert new A2 landscape drawing - Infoga ny liggande A2 ritning - - - A3 landscape - Liggande A3 - - - Insert new A3 landscape drawing - Infoga ny A3 landskap ritning - - - A4 landscape - Liggande A4 - - - Insert new A4 landscape drawing - Infoga ny liggande A4 ritning - - - - A%1 landscape - - - - - Insert new A%1 landscape drawing - - - - - QObject - - - Choose an SVG file to open - Välj en SVG fil att öppna - - - - - - Drawing viewer - Ritningsvisare - - - - Scalable Vector Graphics (*.svg *.svgz) - Skalbar vektorgrafik (*.svg *.svgz) - - - - - - - Wrong selection - Fel val - - - - - Select a Part object. - Välj ett Del objekt. - - - - - - - No page to insert - Ingen sida att infoga - - - - - - Create a page to insert. - Skapa en sida att infoga. - - - - Create a page to insert views into. - - - - - - Select one Page object. - Välj ett sidobjekt. - - - - SVG(*.svg) - SVG (*.svg) - - - - All Files (*.*) - Alla filer (*.*) - - - - Export page - Exportera sida - - - - Show drawing - Visa ritning - - - - Front - - - - - Back - - - - - Right - - - - - Left - - - - - Top - - - - - Bottom - - - - - Workbench - - - Drawing - Ritning - - - diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_sk.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_sk.qm new file mode 100644 index 000000000..60b2b5785 Binary files /dev/null and b/src/Mod/Drawing/Gui/Resources/translations/Drawing_sk.qm differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_sk.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_sk.ts new file mode 100644 index 000000000..96ff3545a --- /dev/null +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_sk.ts @@ -0,0 +1,522 @@ + + + + + CmdDrawingAnnotation + + + Drawing + Kreslenie + + + &Annotation + &Annotation + + + Inserts an Annotation view in the active drawing + Inserts an Annotation view in the active drawing + + + + CmdDrawingClip + + Drawing + Kreslenie + + + &Clip + &Clip + + + Inserts a clip group in the active drawing + Inserts a clip group in the active drawing + + + + CmdDrawingExportPage + + File + Súbor + + + &Export page... + &Export stránky... + + + Export a page to an SVG file + Exportovať stranu do SVG súboru + + + + CmdDrawingNewA3Landscape + + Drawing + Kreslenie + + + Insert new A3 landscape drawing + Vložiť nový výkres A3 na šírku + + + + CmdDrawingNewPage + + Drawing + Kreslenie + + + Insert new drawing + Vložiť nové Kreslenie + + + + CmdDrawingNewView + + Drawing + Kreslenie + + + Insert view in drawing + Vložiť zobrazenie v kresbe + + + Insert a new View of a Part in the active drawing + Vložiť nový pohľad na úlohu v aktívnom výkrese + + + + CmdDrawingOpen + + Drawing + Kreslenie + + + Open SVG... + Otvoriť SVG... + + + Open a scalable vector graphic + Otvorte škálovateľnú vektorovú grafiku + + + + CmdDrawingOpenBrowserView + + Drawing + Kreslenie + + + Open &browser view + Open &browser view + + + Opens the selected page in a browser view + Opens the selected page in a browser view + + + + CmdDrawingOrthoViews + + Drawing + Kreslenie + + + Insert orthographic views + Insert orthographic views + + + Insert an orthographic projection of a part in the active drawing + Insert an orthographic projection of a part in the active drawing + + + + CmdDrawingProjectShape + + Drawing + Kreslenie + + + Project shape... + Tvary projektu... + + + Project shape onto a user-defined plane + Tvary projektu na užívateľom definovanú rovinu + + + + DrawingGui::DrawingView + + + &Background + &Pozadie + + + &Outline + &Náčrt + + + &Native + Prirodze&ne + + + &OpenGL + &OpenGL + + + &Image + Obrázok + + + &High Quality Antialiasing + &Vysoká kvalita vy&hladzovania + + + Open SVG File + Otvoriť súbor SVG + + + Could not open file '%1'. + Nepodarilo sa otvoriť súbor '%1'. + + + &Renderer + &Renderer + + + Export PDF + Export do PDF + + + PDF file (*.pdf) + Súbor PDF (*.pdf) + + + Page sizes + Veľkosti stránok + + + A0 + A0 + + + A1 + A1 + + + A2 + A2 + + + A3 + A3 + + + A4 + A4 + + + A5 + A5 + + + + DrawingGui::TaskOrthoViews + + + Orthographic Projection + Orthographic Projection + + + Projection + Projection + + + Third Angle + Third Angle + + + First Angle + First Angle + + + Primary View + Primary View + + + Front + Predok + + + Right + Vpravo + + + Back + Back + + + Left + Vľavo + + + Top + Zhora + + + Bottom + Spodok + + + - Rotate + - Rotate + + + 0 + + + + 90 + 90 + + + 180 + 180 + + + 270 + 270 + + + Primary view + Primary view + + + Secondary Views + Secondary Views + + + General + Všeobecné + + + Auto scale / position + Auto scale / position + + + Scale + Škála, zmena veľkosti + + + Primary x / y + Primary x / y + + + Secondary dx / dy + Secondary dx / dy + + + Show hidden + Show hidden + + + Show smooth + Show smooth + + + Axonometric + Axonometric + + + + DrawingGui::TaskProjection + + + Visible sharp edges + Viditeľné ostré hrany + + + Visible smooth edges + Viditeľné vyhladzovanie hrán + + + Visible sewn edges + Viditeľné všité okraje + + + Visible outline edges + Viditeľné hrany obrysu + + + Visible isoparameters + Viditeľné iso parametre + + + Hidden sharp edges + Skryté ostré hrany + + + Hidden smooth edges + Skryté vyhladzovanie hrán + + + Hidden sewn edges + Skryté všité okraje + + + Hidden outline edges + Skryté hrany obrysu + + + Hidden isoparameters + Skryté iso parametre + + + Project shapes + Tvary projektu + + + + Drawing_NewPage + + A0 landscape + A0 na šírku + + + Insert new A0 landscape drawing + Vložiť nový výkres A0 na šírku + + + A1 landscape + A1 na šírku + + + Insert new A1 landscape drawing + Vložiť nový výkres A1 na šírku + + + A2 landscape + A2 na šírku + + + Insert new A2 landscape drawing + Vložiť nový výkres A2 na šírku + + + A3 landscape + A4 na šírku + + + Insert new A3 landscape drawing + Vložiť nový výkres A3 na šírku + + + A4 landscape + A4 na šírku + + + Insert new A4 landscape drawing + Vložiť nový výkres A4 na šírku + + + + Insert new A%1 landscape drawing + Insert new A%1 landscape drawing + + + A%1 landscape + A%1 landscape + + + + QObject + + Choose an SVG file to open + Vyberte súbor SVG k otvoreniu + + + + Drawing viewer + Prehliadač kreslenia + + + + Scalable Vector Graphics (*.svg *.svgz) + Scalable Vector Graphics (*. svg *. svgz) + + + Wrong selection + Chybný výber + + + Select a Part object. + Vyberte časť objektu. + + + No page to insert + Žiadna strana pre vloženie + + + Create a page to insert. + Vytvoriť stránku pre vloženie. + + + Create a page to insert views into. + Create a page to insert views into. + + + Select one Page object. + Vyberte jednostranný objekt. + + + SVG(*.svg) + SVG (*.svg) + + + All Files (*.*) + Všetky súbory (*.*) + + + Export page + Export stránky + + + + Show drawing + Zobraziť nákres + + + + Front + Predok + + + Back + Back + + + Right + Vpravo + + + Left + Vľavo + + + Top + Zhora + + + Bottom + Spodok + + + + Workbench + + + Drawing + Kreslenie + + + diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_sv-SE.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_sv-SE.qm new file mode 100644 index 000000000..16a1c5fdd Binary files /dev/null and b/src/Mod/Drawing/Gui/Resources/translations/Drawing_sv-SE.qm differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_sv-SE.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_sv-SE.ts new file mode 100644 index 000000000..2d61f37b4 --- /dev/null +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_sv-SE.ts @@ -0,0 +1,522 @@ + + + + + CmdDrawingAnnotation + + + Drawing + Ritning + + + &Annotation + &Annotering + + + Inserts an Annotation view in the active drawing + Infogar en annoteringsvy i den aktiva ritningen + + + + CmdDrawingClip + + Drawing + Ritning + + + &Clip + &Klipp + + + Inserts a clip group in the active drawing + Infogar en Klipp-grupp i den aktiva ritningen + + + + CmdDrawingExportPage + + File + Fil + + + &Export page... + &Exportera sida... + + + Export a page to an SVG file + Exportera en sida till en SVG-fil + + + + CmdDrawingNewA3Landscape + + Drawing + Ritning + + + Insert new A3 landscape drawing + Infoga ny A3 landskap ritning + + + + CmdDrawingNewPage + + Drawing + Ritning + + + Insert new drawing + Sätt in ny ritning + + + + CmdDrawingNewView + + Drawing + Ritning + + + Insert view in drawing + Infoga vy i ritningen + + + Insert a new View of a Part in the active drawing + Sätt in en ny vy av en Del i den aktiva ritningen + + + + CmdDrawingOpen + + Drawing + Ritning + + + Open SVG... + Öppna SVG... + + + Open a scalable vector graphic + Öppna en skalbar vektorgrafik + + + + CmdDrawingOpenBrowserView + + Drawing + Ritning + + + Open &browser view + Öppna we&bbläsarvy + + + Opens the selected page in a browser view + Öppnar den valda sidan i en webbläsarvy + + + + CmdDrawingOrthoViews + + Drawing + Ritning + + + Insert orthographic views + Infoga ortografiska vyer + + + Insert an orthographic projection of a part in the active drawing + Infoga en ortografisk projektion av en del i den aktiva ritningen + + + + CmdDrawingProjectShape + + Drawing + Ritning + + + Project shape... + Projekt former... + + + Project shape onto a user-defined plane + Projicera form på ett användardefinierat plan + + + + DrawingGui::DrawingView + + + &Background + B&akgrund + + + &Outline + &Kontur + + + &Native + &Nativ + + + &OpenGL + &OpenGL + + + &Image + &Bild + + + &High Quality Antialiasing + &Högkvalitets kantutjämning + + + Open SVG File + Öppna SVG-fil + + + Could not open file '%1'. + Det gick inte att öppna fil '%1'. + + + &Renderer + &Renderare + + + Export PDF + Exportera PDF + + + PDF file (*.pdf) + PDF-fil (*.pdf) + + + Page sizes + Sidstorlekar + + + A0 + A0 + + + A1 + A1 + + + A2 + A2 + + + A3 + A3 + + + A4 + A4 + + + A5 + A5 + + + + DrawingGui::TaskOrthoViews + + + Orthographic Projection + Ortografisk projektion + + + Projection + Projektion + + + Third Angle + Tredje vinkel + + + First Angle + Första vinkel + + + Primary View + Primär vy + + + Front + Front + + + Right + Höger + + + Back + Bakåt + + + Left + Vänster + + + Top + Topp + + + Bottom + Botten + + + - Rotate + - Rotera + + + 0 + + + + 90 + 90 + + + 180 + 180 + + + 270 + 270 + + + Primary view + Primär vy + + + Secondary Views + Sekundär vy + + + General + Allmänt + + + Auto scale / position + Auto skala / position + + + Scale + Skala + + + Primary x / y + Primär x / y + + + Secondary dx / dy + Sekundär dx / dy + + + Show hidden + Visa dolda + + + Show smooth + Visa utjämnat + + + Axonometric + Axonometrisk + + + + DrawingGui::TaskProjection + + + Visible sharp edges + Synliga vassa kanter + + + Visible smooth edges + Synliga jämna kanter + + + Visible sewn edges + Synliga sydda kanter + + + Visible outline edges + Synliga kontur kanter + + + Visible isoparameters + Synliga isoparametrar + + + Hidden sharp edges + Dolda vassa kanter + + + Hidden smooth edges + Dolda jämna kanter + + + Hidden sewn edges + Dolda sydda kanter + + + Hidden outline edges + Dolda kontur kanter + + + Hidden isoparameters + Dolda isoparametrar + + + Project shapes + Projekt former + + + + Drawing_NewPage + + A0 landscape + Liggande A0 + + + Insert new A0 landscape drawing + Infoga ny liggande A0 ritning + + + A1 landscape + Liggande A1 + + + Insert new A1 landscape drawing + Infoga ny liggande A1 ritning + + + A2 landscape + Liggande A2 + + + Insert new A2 landscape drawing + Infoga ny liggande A2 ritning + + + A3 landscape + Liggande A3 + + + Insert new A3 landscape drawing + Infoga ny A3 landskap ritning + + + A4 landscape + Liggande A4 + + + Insert new A4 landscape drawing + Infoga ny liggande A4 ritning + + + + Insert new A%1 landscape drawing + Infoga ny A%1 landskaps ritning + + + A%1 landscape + A%1 landskap + + + + QObject + + Choose an SVG file to open + Välj en SVG fil att öppna + + + + Drawing viewer + Ritningsvisare + + + + Scalable Vector Graphics (*.svg *.svgz) + Skalbar vektorgrafik (*.svg *.svgz) + + + Wrong selection + Fel val + + + Select a Part object. + Välj ett Del objekt. + + + No page to insert + Ingen sida att infoga + + + Create a page to insert. + Skapa en sida att infoga. + + + Create a page to insert views into. + Skapa en sida att infoga vyer till. + + + Select one Page object. + Välj ett sidobjekt. + + + SVG(*.svg) + SVG (*.svg) + + + All Files (*.*) + Alla filer (*.*) + + + Export page + Exportera sida + + + + Show drawing + Visa ritning + + + + Front + Front + + + Back + Bakåt + + + Right + Höger + + + Left + Vänster + + + Top + Topp + + + Bottom + Botten + + + + Workbench + + + Drawing + Ritning + + + diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_tr.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_tr.qm new file mode 100644 index 000000000..61ef1d5a6 Binary files /dev/null and b/src/Mod/Drawing/Gui/Resources/translations/Drawing_tr.qm differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_tr.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_tr.ts new file mode 100644 index 000000000..aac0a0782 --- /dev/null +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_tr.ts @@ -0,0 +1,522 @@ + + + + + CmdDrawingAnnotation + + + Drawing + Çizim + + + &Annotation + &Annotation + + + Inserts an Annotation view in the active drawing + Inserts an Annotation view in the active drawing + + + + CmdDrawingClip + + Drawing + Çizim + + + &Clip + &Clip + + + Inserts a clip group in the active drawing + Inserts a clip group in the active drawing + + + + CmdDrawingExportPage + + File + Dosya + + + &Export page... + &Sayfayı dışa aktar... + + + Export a page to an SVG file + Sayfayı, SVG dosyası olarak dışarı aktar + + + + CmdDrawingNewA3Landscape + + Drawing + Çizim + + + Insert new A3 landscape drawing + Yeni yatay A3 boyutlu çizim ekle + + + + CmdDrawingNewPage + + Drawing + Çizim + + + Insert new drawing + Yeni Çizim Ekle + + + + CmdDrawingNewView + + Drawing + Çizim + + + Insert view in drawing + Çizime görünüm ekle + + + Insert a new View of a Part in the active drawing + Etkin çizimde bir parçanın yeni görünümünü ekle + + + + CmdDrawingOpen + + Drawing + Çizim + + + Open SVG... + SVG Aç... + + + Open a scalable vector graphic + Boyutlandırılabilir bir vektörel çizim seçin + + + + CmdDrawingOpenBrowserView + + Drawing + Çizim + + + Open &browser view + Open &browser view + + + Opens the selected page in a browser view + Opens the selected page in a browser view + + + + CmdDrawingOrthoViews + + Drawing + Çizim + + + Insert orthographic views + Insert orthographic views + + + Insert an orthographic projection of a part in the active drawing + Insert an orthographic projection of a part in the active drawing + + + + CmdDrawingProjectShape + + Drawing + Çizim + + + Project shape... + Proje şekilleri... + + + Project shape onto a user-defined plane + Kullanıcının tanımladığı bir düzleme şekli yansıt + + + + DrawingGui::DrawingView + + + &Background + &Arkaplan + + + &Outline + &Taslak + + + &Native + &Yerel + + + &OpenGL + &OpenGL + + + &Image + &Resim + + + &High Quality Antialiasing + &Yüksek kaliteli keskinlik yumuşatma + + + Open SVG File + SVG Dosyası Aç + + + Could not open file '%1'. + '%1' adlı dosya açılamadı. + + + &Renderer + &Oluşturucu + + + Export PDF + PDF olarak dışarı aktar + + + PDF file (*.pdf) + PDF file (*.pdf) + + + Page sizes + Sayfa boyutları + + + A0 + A0 + + + A1 + A1 + + + A2 + A2 + + + A3 + A3 + + + A4 + A4 + + + A5 + A5 + + + + DrawingGui::TaskOrthoViews + + + Orthographic Projection + Orthographic Projection + + + Projection + Projection + + + Third Angle + Third Angle + + + First Angle + First Angle + + + Primary View + Primary View + + + Front + Front + + + Right + Sağ + + + Back + Back + + + Left + Left + + + Top + üst + + + Bottom + Bottom + + + - Rotate + - Rotate + + + 0 + + + + 90 + 90 + + + 180 + 180 + + + 270 + 270 + + + Primary view + Primary view + + + Secondary Views + Secondary Views + + + General + Genel + + + Auto scale / position + Auto scale / position + + + Scale + Ölçek + + + Primary x / y + Primary x / y + + + Secondary dx / dy + Secondary dx / dy + + + Show hidden + Show hidden + + + Show smooth + Show smooth + + + Axonometric + Axonometric + + + + DrawingGui::TaskProjection + + + Visible sharp edges + Görünür keskin kenarlar + + + Visible smooth edges + Görünür pürüzsüz kenarlar + + + Visible sewn edges + Görünür dikilir kenarlar + + + Visible outline edges + Görünür anahat kenarları + + + Visible isoparameters + Görünür izodeğişkenler + + + Hidden sharp edges + Gizli keskin kenarlar + + + Hidden smooth edges + Gizli pürüzsüz kenarlar + + + Hidden sewn edges + Gizli dikilir kenarlar + + + Hidden outline edges + Gizli anahat kenarlar + + + Hidden isoparameters + Gizli izodeğişkenler + + + Project shapes + Proje şekilleri + + + + Drawing_NewPage + + A0 landscape + Yatay A0 + + + Insert new A0 landscape drawing + Yeni yatay A0 boyutlu çizim ekle + + + A1 landscape + Yatay A1 + + + Insert new A1 landscape drawing + Yeni yatay A1 boyutlu çizim ekle + + + A2 landscape + Yatay A2 + + + Insert new A2 landscape drawing + Yeni yatay A2 boyutlu çizim ekle + + + A3 landscape + Yatay A3 + + + Insert new A3 landscape drawing + Yeni yatay A3 boyutlu çizim ekle + + + A4 landscape + Yatay A4 + + + Insert new A4 landscape drawing + Yeni yatay A4 boyutlu çizim ekle + + + + Insert new A%1 landscape drawing + Insert new A%1 landscape drawing + + + A%1 landscape + A%1 landscape + + + + QObject + + Choose an SVG file to open + Açmak için bir SVG dosyası seçin + + + + Drawing viewer + Çizim görüntüleyici + + + + Scalable Vector Graphics (*.svg *.svgz) + Boyutlandırılabilinir vektör grafiği (*.svg *.svgz) + + + Wrong selection + Yanlış seçim + + + Select a Part object. + Parça nesnesi seçin. + + + No page to insert + İçeri aktarılacak hiç bir sayfa yok + + + Create a page to insert. + İçeri aktarmak için bir sayfa oluşturun. + + + Create a page to insert views into. + Create a page to insert views into. + + + Select one Page object. + Bir sayfa nesnesi seçin. + + + SVG(*.svg) + SVG(*.svg) + + + All Files (*.*) + Tüm dosyalar (*.*) + + + Export page + Sayfayı dışarı aktar + + + + Show drawing + Çizimi göster + + + + Front + Front + + + Back + Back + + + Right + Sağ + + + Left + Left + + + Top + üst + + + Bottom + Bottom + + + + Workbench + + + Drawing + Çizim + + + diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_uk.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_uk.qm index 82ccb6668..bb7ef9d66 100644 Binary files a/src/Mod/Drawing/Gui/Resources/translations/Drawing_uk.qm and b/src/Mod/Drawing/Gui/Resources/translations/Drawing_uk.qm differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_uk.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_uk.ts index 28b9d87cf..491e7d82a 100644 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_uk.ts +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_uk.ts @@ -1,636 +1,522 @@ - - + + CmdDrawingAnnotation - - Drawing - Креслення + + Drawing + Малюнок - - &Annotation - + &Annotation + &Annotation - - - Inserts an Annotation view in the active drawing - + Inserts an Annotation view in the active drawing + Inserts an Annotation view in the active drawing - - + + CmdDrawingClip - - Drawing - Креслення + Drawing + Малюнок - - &Clip - + &Clip + &Clip - - - Inserts a clip group in the active drawing - + Inserts a clip group in the active drawing + Inserts a clip group in the active drawing - - + + CmdDrawingExportPage - - File - Файл + File + Файл - - &Export page... - &Експорт сторінки... + &Export page... + &Експорт сторінки... - - - Export a page to an SVG file - Експорт сторінки в SVG файл + Export a page to an SVG file + Експорт сторінки в SVG файл - - + + CmdDrawingNewA3Landscape - - Drawing - Креслення + Drawing + Малюнок - - - Insert new A3 landscape drawing - Вставить нове фонове креслення А3 + Insert new A3 landscape drawing + Вставить нове фонове креслення А3 - - + + CmdDrawingNewPage - - Drawing - Креслення + Drawing + Малюнок - - - Insert new drawing - Insert new drawing + Insert new drawing + Вставити нове креслення - - + + CmdDrawingNewView - - Drawing - Креслення + Drawing + Малюнок - - Insert view in drawing - Додати вигляд в креслення + Insert view in drawing + Додати вигляд в креслення - - Insert a new View of a Part in the active drawing - Вставить новий вигляд деталі в поточне креслення + Insert a new View of a Part in the active drawing + Вставить новий вигляд деталі в поточне креслення - - + + CmdDrawingOpen - - Drawing - Креслення + Drawing + Малюнок - - Open SVG... - Відкрити SVG ... + Open SVG... + Відкрити SVG ... - - Open a scalable vector graphic - Відкрити масштабовану векторну графіку (SVG) + Open a scalable vector graphic + Відкрити масштабовану векторну графіку (SVG) - - + + CmdDrawingOpenBrowserView - - Drawing - Креслення + Drawing + Малюнок - - Open &browser view - + Open &browser view + Open &browser view - - - Opens the selected page in a browser view - + Opens the selected page in a browser view + Opens the selected page in a browser view - - + + CmdDrawingOrthoViews - - Drawing - Креслення + Drawing + Малюнок - - Insert orthographic views - + Insert orthographic views + Insert orthographic views - - Insert an orthographic projection of a part in the active drawing - + Insert an orthographic projection of a part in the active drawing + Insert an orthographic projection of a part in the active drawing - - + + CmdDrawingProjectShape - - Drawing - Креслення + Drawing + Малюнок - - Project shape... - Project shape... + Project shape... + Проект форми... - - - Project shape onto a user-defined plane - Project shape onto a user-defined plane + Project shape onto a user-defined plane + Проект форми на поверхні, визначеній користувачем - - + + DrawingGui::DrawingView - - &Background - &Фон + + &Background + &Фон - - &Outline - &Контур + &Outline + &Контур - - &Native - &Рідне + &Native + &Рідне - - &OpenGL - &OpenGL + &OpenGL + &OpenGL - - &Image - &Зображення + &Image + &Зображення - - &High Quality Antialiasing - &Висока якість згладжування + &High Quality Antialiasing + &Висока якість згладжування - - Open SVG File - Відкрити SVG файл + Open SVG File + Відкрити SVG файл - - Could not open file '%1'. - Не вдається відкрити файл '%1'. + Could not open file '%1'. + Не вдається відкрити файл '%1'. - - &Renderer - &Промалювувач + &Renderer + &Промалювувач - - Export PDF - Експорт в PDF + Export PDF + Експорт в PDF - - PDF file (*.pdf) - PDF файл (*.pdf) + PDF file (*.pdf) + PDF файл (*.pdf) - - Page sizes - Page sizes + Page sizes + Розміри сторінки - - A0 - A0 + A0 + A0 - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4 + A4 + A4 - - A5 - A5 + A5 + A5 - - + + DrawingGui::TaskOrthoViews - - Orthographic Projection - + + Orthographic Projection + Orthographic Projection - - Projection - + Projection + Projection - - Third Angle - + Third Angle + Third Angle - - First Angle - + First Angle + First Angle - - Primary View - + Primary View + Primary View - - Front - + Front + Фронт - - Right - + Right + Направо - - Back - + Back + Back - - Left - + Left + Ліворуч - - Top - + Top + Згори - - Bottom - + Bottom + Внизу - - - Rotate - + - Rotate + - Rotate - - 0 - + 0 + - - 90 - + 90 + 90 - - 180 - + 180 + 180 - - 270 - + 270 + 270 - - Primary view - + Primary view + Primary view - - Secondary Views - + Secondary Views + Secondary Views - - General - + General + Загальне - - Auto scale / position - + Auto scale / position + Auto scale / position - - Scale - + Scale + Масштабування - - Primary x / y - + Primary x / y + Primary x / y - - Secondary dx / dy - + Secondary dx / dy + Secondary dx / dy - - Show hidden - + Show hidden + Show hidden - - Show smooth - + Show smooth + Show smooth - - Axonometric - + Axonometric + Axonometric - - + + DrawingGui::TaskProjection - - Visible sharp edges - Visible sharp edges + + Visible sharp edges + Видимі гострі краї - - Visible smooth edges - Visible smooth edges + Visible smooth edges + Видимі згладжені краї - - Visible sewn edges - Visible sewn edges + Visible sewn edges + Видимі зшиті краї - - Visible outline edges - Visible outline edges + Visible outline edges + Видимі контурні краї - - Visible isoparameters - Visible isoparameters + Visible isoparameters + Visible isoparameters - - Hidden sharp edges - Hidden sharp edges + Hidden sharp edges + Приховані гострі краї - - Hidden smooth edges - Hidden smooth edges + Hidden smooth edges + Приховані згладжені краї - - Hidden sewn edges - Hidden sewn edges + Hidden sewn edges + Приховані зшиті краї - - Hidden outline edges - Hidden outline edges + Hidden outline edges + Приховані контурні краї - - Hidden isoparameters - Hidden isoparameters + Hidden isoparameters + Hidden isoparameters - - Project shapes - Project shapes + Project shapes + Проект форм - - + + Drawing_NewPage - A0 landscape - A0 landscape + A0 landscape + Горизонтальний A0 формат - Insert new A0 landscape drawing - Insert new A0 landscape drawing + Insert new A0 landscape drawing + Вставити нове креслення горизонтального A0 формату - A1 landscape - A1 landscape + A1 landscape + Горизонтальний A1 формат - Insert new A1 landscape drawing - Insert new A1 landscape drawing + Insert new A1 landscape drawing + Вставити нове креслення горизонтального A1 формату - A2 landscape - A2 landscape + A2 landscape + Горизонтальний A2 формат - Insert new A2 landscape drawing - Insert new A2 landscape drawing + Insert new A2 landscape drawing + Вставити нове креслення горизонтального A2 формату - A3 landscape - A3 landscape + A3 landscape + Горизонтальний A3 формат - Insert new A3 landscape drawing - Вставить нове фонове креслення А3 + Insert new A3 landscape drawing + Вставить нове фонове креслення А3 - A4 landscape - A4 landscape + A4 landscape + Горизонтальний A4 формат - Insert new A4 landscape drawing - Insert new A4 landscape drawing + Insert new A4 landscape drawing + Вставити нове креслення горизонтального A4 формату - - A%1 landscape - + + Insert new A%1 landscape drawing + Insert new A%1 landscape drawing - - Insert new A%1 landscape drawing - + A%1 landscape + A%1 landscape - - + + QObject - - Choose an SVG file to open - Виберіть файл SVG для відкриття + Choose an SVG file to open + Виберіть файл SVG для відкриття - - - - Drawing viewer - Переглядач креслення + + Drawing viewer + Переглядач креслення - - Scalable Vector Graphics (*.svg *.svgz) - Масштабована векторна графіка (*.svg *.svgz) + + Scalable Vector Graphics (*.svg *.svgz) + Масштабована векторна графіка (*.svg *.svgz) - - - - - Wrong selection - Невірний вибір + Wrong selection + Невірний вибір - - - Select a Part object. - Виберіть об'єкт деталі. + Select a Part object. + Виберіть об'єкт деталі. - - - - - No page to insert - Немає сторінки для вставки + No page to insert + Немає сторінки для вставки - - - - Create a page to insert. - Створити сторінку для вставки. + Create a page to insert. + Створити сторінку для вставки. - - Create a page to insert views into. - + Create a page to insert views into. + Create a page to insert views into. - - - Select one Page object. - Оберіть один об'єкт сторінки. + Select one Page object. + Оберіть один об'єкт сторінки. - - SVG(*.svg) - SVG(*.svg) + SVG(*.svg) + SVG(*.svg) - - All Files (*.*) - Всі файли (*.*) + All Files (*.*) + Всі файли (*.*) - - Export page - Експорт сторінки + Export page + Експорт сторінки - - Show drawing - Show drawing + + Show drawing + Показати креслення - - Front - + + Front + Фронт - - Back - + Back + Back - - Right - + Right + Направо - - Left - + Left + Ліворуч - - Top - + Top + Згори - - Bottom - + Bottom + Внизу - - + + Workbench - - Drawing - Креслення + + Drawing + Малюнок - + diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-CN.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-CN.qm new file mode 100644 index 000000000..6be76ab48 Binary files /dev/null and b/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-CN.qm differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-CN.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-CN.ts new file mode 100644 index 000000000..a5752f4ba --- /dev/null +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-CN.ts @@ -0,0 +1,522 @@ + + + + + CmdDrawingAnnotation + + + Drawing + 图纸 + + + &Annotation + 注释(&A) + + + Inserts an Annotation view in the active drawing + Inserts an Annotation view in the active drawing + + + + CmdDrawingClip + + Drawing + 图纸 + + + &Clip + &Clip + + + Inserts a clip group in the active drawing + Inserts a clip group in the active drawing + + + + CmdDrawingExportPage + + File + 文件 + + + &Export page... + 导出页(&E)... + + + Export a page to an SVG file + 将页面导出为SVG文件 + + + + CmdDrawingNewA3Landscape + + Drawing + 图纸 + + + Insert new A3 landscape drawing + 插入A3横向图框 + + + + CmdDrawingNewPage + + Drawing + 图纸 + + + Insert new drawing + 插入新图纸 + + + + CmdDrawingNewView + + Drawing + 图纸 + + + Insert view in drawing + 在图纸中插入视图 + + + Insert a new View of a Part in the active drawing + 在当前图纸中插入一个零件视图 + + + + CmdDrawingOpen + + Drawing + 图纸 + + + Open SVG... + 打开SVG... + + + Open a scalable vector graphic + 打开一个可缩放的矢量图形 + + + + CmdDrawingOpenBrowserView + + Drawing + 图纸 + + + Open &browser view + Open &browser view + + + Opens the selected page in a browser view + Opens the selected page in a browser view + + + + CmdDrawingOrthoViews + + Drawing + 图纸 + + + Insert orthographic views + 插入正交视图 + + + Insert an orthographic projection of a part in the active drawing + Insert an orthographic projection of a part in the active drawing + + + + CmdDrawingProjectShape + + Drawing + 图纸 + + + Project shape... + 投影形体... + + + Project shape onto a user-defined plane + 投影形体至用户定义平面 + + + + DrawingGui::DrawingView + + + &Background + 背景(&B) + + + &Outline + 轮廓(&O) + + + &Native + 本地(&N) + + + &OpenGL + &OpenGL + + + &Image + 图片(&I) + + + &High Quality Antialiasing + 高品质抗锯齿(&H) + + + Open SVG File + 打开SVG文件 + + + Could not open file '%1'. + 无法打开文件'%1'. + + + &Renderer + 渲染器(&R) + + + Export PDF + 导出PDF + + + PDF file (*.pdf) + PDF文件(*.pdf) + + + Page sizes + 页面大小 + + + A0 + A0 + + + A1 + A1 + + + A2 + A2 + + + A3 + A3 + + + A4 + A4 + + + A5 + A5 + + + + DrawingGui::TaskOrthoViews + + + Orthographic Projection + 正交投影 + + + Projection + 投影 + + + Third Angle + Third Angle + + + First Angle + First Angle + + + Primary View + Primary View + + + Front + 前视 + + + Right + + + + Back + 返回 + + + Left + 左视 + + + Top + 顶视 + + + Bottom + 底视 + + + - Rotate + - 旋转 + + + 0 + + + + 90 + 90 + + + 180 + 180 + + + 270 + 270 + + + Primary view + Primary view + + + Secondary Views + Secondary Views + + + General + 常规 + + + Auto scale / position + Auto scale / position + + + Scale + 缩放 + + + Primary x / y + Primary x / y + + + Secondary dx / dy + Secondary dx / dy + + + Show hidden + 显示隐藏 + + + Show smooth + Show smooth + + + Axonometric + 轴侧图 + + + + DrawingGui::TaskProjection + + + Visible sharp edges + 锐化边缘可见 + + + Visible smooth edges + 平滑边缘可见 + + + Visible sewn edges + 镶贴边缘可见 + + + Visible outline edges + 轮廓边缘可见 + + + Visible isoparameters + 可见iso参数 + + + Hidden sharp edges + 锐化边缘隐藏 + + + Hidden smooth edges + 平滑边缘隐藏 + + + Hidden sewn edges + 镶贴边缘隐藏 + + + Hidden outline edges + 轮廓边缘隐藏 + + + Hidden isoparameters + 隐藏iso参数 + + + Project shapes + 投影形体 + + + + Drawing_NewPage + + A0 landscape + A0横向 + + + Insert new A0 landscape drawing + 插入A0横向图纸 + + + A1 landscape + A1横向 + + + Insert new A1 landscape drawing + 插入A1横向图纸 + + + A2 landscape + A2横向 + + + Insert new A2 landscape drawing + 插入A2横向图纸 + + + A3 landscape + A3横向 + + + Insert new A3 landscape drawing + 插入A3横向图框 + + + A4 landscape + A4横向 + + + Insert new A4 landscape drawing + 插入A4横向图纸 + + + + Insert new A%1 landscape drawing + 插入新A%1横向图纸 + + + A%1 landscape + A%1 横向 + + + + QObject + + Choose an SVG file to open + 选择一个SVG文件打开 + + + + Drawing viewer + 图纸浏览器 + + + + Scalable Vector Graphics (*.svg *.svgz) + 可缩放矢量图形(*.svg *.svgz) + + + Wrong selection + 选择错误 + + + Select a Part object. + 选择零件对象. + + + No page to insert + 无页面可插入 + + + Create a page to insert. + 创建一个插入页面. + + + Create a page to insert views into. + Create a page to insert views into. + + + Select one Page object. + 选择一个页对象. + + + SVG(*.svg) + SVG(*.svg) + + + All Files (*.*) + 所有文件(*.*) + + + Export page + 导出页面 + + + + Show drawing + 显示绘图 + + + + Front + 前视 + + + Back + 返回 + + + Right + + + + Left + 左视 + + + Top + 顶视 + + + Bottom + 底视 + + + + Workbench + + + Drawing + 图纸 + + + diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-TW.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-TW.qm new file mode 100644 index 000000000..5e9ff2ec4 Binary files /dev/null and b/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-TW.qm differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-TW.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-TW.ts new file mode 100644 index 000000000..27aa47eef --- /dev/null +++ b/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh-TW.ts @@ -0,0 +1,522 @@ + + + + + CmdDrawingAnnotation + + + Drawing + 圖面 + + + &Annotation + &註釋 + + + Inserts an Annotation view in the active drawing + 於目前圖面插入註釋視圖 + + + + CmdDrawingClip + + Drawing + 圖面 + + + &Clip + &剪下 + + + Inserts a clip group in the active drawing + 於目前圖面插入剪下群組 + + + + CmdDrawingExportPage + + File + 檔案 + + + &Export page... + 匯出頁面(&E)... + + + Export a page to an SVG file + 匯出此頁為SVG檔 + + + + CmdDrawingNewA3Landscape + + Drawing + 圖面 + + + Insert new A3 landscape drawing + 插入新的 A3 橫式圖紙 + + + + CmdDrawingNewPage + + Drawing + 圖面 + + + Insert new drawing + 插入新繪圖區 + + + + CmdDrawingNewView + + Drawing + 圖面 + + + Insert view in drawing + 於繪圖區插入畫面 + + + Insert a new View of a Part in the active drawing + 於目前繪圖區插入新的零件畫面 + + + + CmdDrawingOpen + + Drawing + 圖面 + + + Open SVG... + 開啟 SVG ... + + + Open a scalable vector graphic + 開啟一個可縮放的向量圖形 + + + + CmdDrawingOpenBrowserView + + Drawing + 圖面 + + + Open &browser view + 開啟&瀏覽模式 + + + Opens the selected page in a browser view + 以瀏覽模式開啟選定頁面 + + + + CmdDrawingOrthoViews + + Drawing + 圖面 + + + Insert orthographic views + 插入正交視圖 + + + Insert an orthographic projection of a part in the active drawing + 插入目前圖面零件之正交投影 + + + + CmdDrawingProjectShape + + Drawing + 圖面 + + + Project shape... + 專案形式 + + + Project shape onto a user-defined plane + 投影外型至用戶定義的面上 + + + + DrawingGui::DrawingView + + + &Background + 背景(&B) + + + &Outline + &大綱 + + + &Native + &原始的 + + + &OpenGL + &OpenGL + + + &Image + 影像(&I) + + + &High Quality Antialiasing + 高品質反鋸齒(&H) + + + Open SVG File + 開啟 SVG 檔 + + + Could not open file '%1'. + 無法開啟檔案"%1"。 + + + &Renderer + 彩現(&R) + + + Export PDF + 匯出 PDF + + + PDF file (*.pdf) + PDF file (*.pdf) + + + Page sizes + 頁面尺寸 + + + A0 + A0 + + + A1 + A1 + + + A2 + A2 + + + A3 + A3 + + + A4 + A4 + + + A5 + A5 + + + + DrawingGui::TaskOrthoViews + + + Orthographic Projection + 正交投影 + + + Projection + 投影 + + + Third Angle + 第三視角 + + + First Angle + 第一視角 + + + Primary View + 主視圖 + + + Front + 前視圖 + + + Right + + + + Back + 回復 + + + Left + + + + Top + + + + Bottom + 底部 + + + - Rotate + -旋轉 + + + 0 + + + + 90 + 90 + + + 180 + 180 + + + 270 + 270 + + + Primary view + 主視圖 + + + Secondary Views + 輔助視圖 + + + General + 一般 + + + Auto scale / position + 自動縮放 / 定位 + + + Scale + 縮放 + + + Primary x / y + 一階x / y + + + Secondary dx / dy + 二階dx / dy + + + Show hidden + 顯示被隱藏 + + + Show smooth + 平滑顯示 + + + Axonometric + 軸測圖 + + + + DrawingGui::TaskProjection + + + Visible sharp edges + 顯示銳利邊緣 + + + Visible smooth edges + 顯示平滑邊緣 + + + Visible sewn edges + 可視縫合邊緣 + + + Visible outline edges + 可視輪廓邊緣 + + + Visible isoparameters + 可視等角參數 + + + Hidden sharp edges + 隱藏銳利邊緣 + + + Hidden smooth edges + 隱藏平滑邊緣 + + + Hidden sewn edges + 隱藏縫合邊緣 + + + Hidden outline edges + 隱藏輪廓邊緣 + + + Hidden isoparameters + 隱藏等角參數 + + + Project shapes + 專案形式 + + + + Drawing_NewPage + + A0 landscape + A0圖紙 + + + Insert new A0 landscape drawing + 插入新的A0圖紙 + + + A1 landscape + A1圖紙 + + + Insert new A1 landscape drawing + 插入新的A1圖紙 + + + A2 landscape + A2圖紙 + + + Insert new A2 landscape drawing + 插入新的A2圖紙 + + + A3 landscape + A3圖紙 + + + Insert new A3 landscape drawing + 插入新的 A3 橫式圖紙 + + + A4 landscape + A4圖紙 + + + Insert new A4 landscape drawing + 插入新的A4圖紙 + + + + Insert new A%1 landscape drawing + 插入新的A%1樣式圖面 + + + A%1 landscape + A%1樣式 + + + + QObject + + Choose an SVG file to open + 選擇要開啟的 SVG 檔 + + + + Drawing viewer + 繪圖檢視器 + + + + Scalable Vector Graphics (*.svg *.svgz) + 可縮放向量圖形(*.svg *.svgz) + + + Wrong selection + 錯誤的選取 + + + Select a Part object. + 選取零件物件。 + + + No page to insert + 無頁面可插入 + + + Create a page to insert. + 創建要插入的頁面。 + + + Create a page to insert views into. + 建立頁面供插入視圖資訊 + + + Select one Page object. + 選取一個頁面物件。 + + + SVG(*.svg) + SVG(*.svg) + + + All Files (*.*) + 所有檔案(*.*) + + + Export page + 匯出頁面 + + + + Show drawing + 顯示繪圖 + + + + Front + 前視圖 + + + Back + 回復 + + + Right + + + + Left + + + + Top + + + + Bottom + 底部 + + + + Workbench + + + Drawing + 圖面 + + + diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh.qm b/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh.qm deleted file mode 100644 index d1422d126..000000000 Binary files a/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh.qm and /dev/null differ diff --git a/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh.ts b/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh.ts deleted file mode 100644 index d16a45603..000000000 --- a/src/Mod/Drawing/Gui/Resources/translations/Drawing_zh.ts +++ /dev/null @@ -1,636 +0,0 @@ - - - - - CmdDrawingAnnotation - - - Drawing - 图纸 - - - - &Annotation - - - - - - Inserts an Annotation view in the active drawing - - - - - CmdDrawingClip - - - Drawing - 图纸 - - - - &Clip - - - - - - Inserts a clip group in the active drawing - - - - - CmdDrawingExportPage - - - File - 文件 - - - - &Export page... - 导出页(&E)... - - - - - Export a page to an SVG file - 将页面导出为SVG文件 - - - - CmdDrawingNewA3Landscape - - - Drawing - 图纸 - - - - - Insert new A3 landscape drawing - 插入A3横向图框 - - - - CmdDrawingNewPage - - - Drawing - 图纸 - - - - - Insert new drawing - 插入新图纸 - - - - CmdDrawingNewView - - - Drawing - 图纸 - - - - Insert view in drawing - 在图纸中插入视图 - - - - Insert a new View of a Part in the active drawing - 在当前图纸中插入一个零件视图 - - - - CmdDrawingOpen - - - Drawing - 图纸 - - - - Open SVG... - 打开SVG... - - - - Open a scalable vector graphic - 打开一个可缩放的矢量图形 - - - - CmdDrawingOpenBrowserView - - - Drawing - 图纸 - - - - Open &browser view - - - - - - Opens the selected page in a browser view - - - - - CmdDrawingOrthoViews - - - Drawing - 图纸 - - - - Insert orthographic views - - - - - Insert an orthographic projection of a part in the active drawing - - - - - CmdDrawingProjectShape - - - Drawing - 图纸 - - - - Project shape... - 投影形体... - - - - - Project shape onto a user-defined plane - 投影形体至用户定义平面 - - - - DrawingGui::DrawingView - - - &Background - 背景(&B) - - - - &Outline - 轮廓(&O) - - - - &Native - 本地(&N) - - - - &OpenGL - &OpenGL - - - - &Image - 图片(&I) - - - - &High Quality Antialiasing - 高品质抗锯齿(&H) - - - - Open SVG File - 打开SVG文件 - - - - Could not open file '%1'. - 无法打开文件'%1'. - - - - &Renderer - 渲染器(&R) - - - - Export PDF - 导出PDF - - - - PDF file (*.pdf) - PDF文件(*.pdf) - - - - Page sizes - 页面大小 - - - - A0 - A0 - - - - A1 - A1 - - - - A2 - A2 - - - - A3 - A3 - - - - A4 - A4 - - - - A5 - A5 - - - - DrawingGui::TaskOrthoViews - - - Orthographic Projection - - - - - Projection - - - - - Third Angle - - - - - First Angle - - - - - Primary View - - - - - Front - - - - - Right - - - - - Back - - - - - Left - - - - - Top - - - - - Bottom - - - - - - Rotate - - - - - 0 - - - - - 90 - - - - - 180 - - - - - 270 - - - - - Primary view - - - - - Secondary Views - - - - - General - - - - - Auto scale / position - - - - - Scale - - - - - Primary x / y - - - - - Secondary dx / dy - - - - - Show hidden - - - - - Show smooth - - - - - Axonometric - - - - - DrawingGui::TaskProjection - - - Visible sharp edges - 锐化边缘可见 - - - - Visible smooth edges - 平滑边缘可见 - - - - Visible sewn edges - 镶贴边缘可见 - - - - Visible outline edges - 轮廓边缘可见 - - - - Visible isoparameters - Visible isoparameters - - - - Hidden sharp edges - 锐化边缘隐藏 - - - - Hidden smooth edges - 平滑边缘隐藏 - - - - Hidden sewn edges - 镶贴边缘隐藏 - - - - Hidden outline edges - 轮廓边缘隐藏 - - - - Hidden isoparameters - Hidden isoparameters - - - - Project shapes - 投影形体 - - - - Drawing_NewPage - - A0 landscape - A0横向 - - - Insert new A0 landscape drawing - 插入A0横向图纸 - - - A1 landscape - A1横向 - - - Insert new A1 landscape drawing - 插入A1横向图纸 - - - A2 landscape - A2横向 - - - Insert new A2 landscape drawing - 插入A2横向图纸 - - - A3 landscape - A3横向 - - - Insert new A3 landscape drawing - 插入A3横向图框 - - - A4 landscape - A4横向 - - - Insert new A4 landscape drawing - 插入A4横向图纸 - - - - A%1 landscape - - - - - Insert new A%1 landscape drawing - - - - - QObject - - - Choose an SVG file to open - 选择一个SVG文件打开 - - - - - - Drawing viewer - 图纸浏览器 - - - - Scalable Vector Graphics (*.svg *.svgz) - 可缩放矢量图形(*.svg *.svgz) - - - - - - - Wrong selection - 选择错误 - - - - - Select a Part object. - 选择零件对象. - - - - - - - No page to insert - 无页面可插入 - - - - - - Create a page to insert. - 创建一个插入页面. - - - - Create a page to insert views into. - - - - - - Select one Page object. - 选择一个页对象. - - - - SVG(*.svg) - SVG(*.svg) - - - - All Files (*.*) - 所有文件(*.*) - - - - Export page - 导出页面 - - - - Show drawing - 显示绘图 - - - - Front - - - - - Back - - - - - Right - - - - - Left - - - - - Top - - - - - Bottom - - - - - Workbench - - - Drawing - 图纸 - - - diff --git a/src/Mod/Fem/Gui/Resources/Fem.qrc b/src/Mod/Fem/Gui/Resources/Fem.qrc index db072a5bf..08f9c4fe2 100755 --- a/src/Mod/Fem/Gui/Resources/Fem.qrc +++ b/src/Mod/Fem/Gui/Resources/Fem.qrc @@ -3,7 +3,6 @@ icons/Fem_FemMesh.svg translations/Fem_af.qm translations/Fem_de.qm - translations/Fem_es.qm translations/Fem_fi.qm translations/Fem_fr.qm translations/Fem_hr.qm @@ -11,10 +10,18 @@ translations/Fem_nl.qm translations/Fem_no.qm translations/Fem_pl.qm - translations/Fem_pt.qm translations/Fem_ru.qm - translations/Fem_se.qm translations/Fem_uk.qm - translations/Fem_zh.qm + translations/Fem_tr.qm + translations/Fem_sv-SE.qm + translations/Fem_zh-TW.qm + translations/Fem_pt-BR.qm + translations/Fem_cs.qm + translations/Fem_sk.qm + translations/Fem_es-ES.qm + translations/Fem_zh-CN.qm + translations/Fem_ja.qm + translations/Fem_ro.qm + translations/Fem_hu.qm diff --git a/src/Mod/Fem/Gui/Resources/Makefile.am b/src/Mod/Fem/Gui/Resources/Makefile.am index 742affb81..c0e453e0b 100755 --- a/src/Mod/Fem/Gui/Resources/Makefile.am +++ b/src/Mod/Fem/Gui/Resources/Makefile.am @@ -12,8 +12,8 @@ EXTRA_DIST = \ translations/Fem_af.ts \ translations/Fem_de.qm \ translations/Fem_de.ts \ - translations/Fem_es.qm \ - translations/Fem_es.ts \ + translations/Fem_es-ES.qm \ + translations/Fem_es-ES.ts \ translations/Fem_fi.qm \ translations/Fem_fi.ts \ translations/Fem_fr.qm \ @@ -28,16 +28,30 @@ EXTRA_DIST = \ translations/Fem_no.ts \ translations/Fem_pl.qm \ translations/Fem_pl.ts \ - translations/Fem_pt.qm \ - translations/Fem_pt.ts \ + translations/Fem_pt-BR.qm \ + translations/Fem_pt-BR.ts \ translations/Fem_ru.qm \ translations/Fem_ru.ts \ - translations/Fem_se.qm \ - translations/Fem_se.ts \ + translations/Fem_sv-SE.qm \ + translations/Fem_sv-SE.ts \ translations/Fem_uk.qm \ translations/Fem_uk.ts \ - translations/Fem_zh.qm \ - translations/Fem_zh.ts \ + translations/Fem_zh-CN.qm \ + translations/Fem_zh-CN.ts \ + translations/Fem_zh-TW.qm \ + translations/Fem_zh-TW.ts \ + translations/Fem_ro.qm \ + translations/Fem_ro.ts \ + translations/Fem_cs.qm \ + translations/Fem_cs.ts \ + translations/Fem_sk.qm \ + translations/Fem_sk.ts \ + translations/Fem_tr.qm \ + translations/Fem_tr.ts \ + translations/Fem_hu.qm \ + translations/Fem_hu.ts \ + translations/Fem_ja.qm \ + translations/Fem_ja.ts \ Fem.qrc \ UpdateResources.bat diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_af.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_af.qm index 321d0b2cc..4cf7f1d31 100755 Binary files a/src/Mod/Fem/Gui/Resources/translations/Fem_af.qm and b/src/Mod/Fem/Gui/Resources/translations/Fem_af.qm differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_af.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_af.ts index b5cf2fda2..5883ef3f3 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_af.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_af.ts @@ -1,63 +1,56 @@ - - + + CmdFemCreateFromShape - - Fem - Fem + + Fem + Fem - - Create FEM mesh - Skep FEM-maas + Create FEM mesh + Skep FEM-maas - - Create FEM mesh from shape - Skep FEM-maas van vorm + Create FEM mesh from shape + Skep FEM-maas van vorm - - + + FemGui::HypothesisWidget - - Hypothesis - + + Hypothesis + Hypothesis - - Quadrangle - + Quadrangle + Quadrangle - - Maximum length - + Maximum length + Maximum length - - Local length - + Local length + Local length - - Maximum element area - + Maximum element area + Maximum element area - - + + Workbench - - FEM - FEM + + FEM + FEM - - &FEM - &FEM + &FEM + &FEM - + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_cs.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_cs.qm new file mode 100644 index 000000000..f63057b66 Binary files /dev/null and b/src/Mod/Fem/Gui/Resources/translations/Fem_cs.qm differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_cs.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_cs.ts new file mode 100644 index 000000000..b2010c071 --- /dev/null +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_cs.ts @@ -0,0 +1,56 @@ + + + + + CmdFemCreateFromShape + + + Fem + Fem + + + Create FEM mesh + Vytvoř FEM síť + + + Create FEM mesh from shape + Vytvoř FEM síť z tvaru + + + + FemGui::HypothesisWidget + + + Hypothesis + Hypotéza + + + Quadrangle + Čtyřúhelník + + + Maximum length + Maximální délka + + + Local length + Lokální délka + + + Maximum element area + Maximální element plochy + + + + Workbench + + + FEM + FEM + + + &FEM + &FEM + + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_de.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_de.qm index 81722bb4d..b58848f2a 100755 Binary files a/src/Mod/Fem/Gui/Resources/translations/Fem_de.qm and b/src/Mod/Fem/Gui/Resources/translations/Fem_de.qm differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_de.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_de.ts index 22b87d550..47bb9c034 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_de.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_de.ts @@ -1,63 +1,56 @@ - - + + CmdFemCreateFromShape - - Fem - Fem + + Fem + Fem - - Create FEM mesh - FEM-Netz erzeugen + Create FEM mesh + FEM-Netz erzeugen - - Create FEM mesh from shape - FEM-Netz aus Form erstellen + Create FEM mesh from shape + FEM-Netz aus Form erstellen - - + + FemGui::HypothesisWidget - - Hypothesis - + + Hypothesis + Annahme - - Quadrangle - + Quadrangle + Kubischen - - Maximum length - + Maximum length + Maximale Länge - - Local length - + Local length + Lokale Länge - - Maximum element area - + Maximum element area + Maximale Elementgröße - - + + Workbench - - FEM - FEM + + FEM + FEM - - &FEM - &FEM + &FEM + &FEM - + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_es-ES.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_es-ES.qm new file mode 100644 index 000000000..e2bcfbe4c Binary files /dev/null and b/src/Mod/Fem/Gui/Resources/translations/Fem_es-ES.qm differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_es-ES.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_es-ES.ts new file mode 100644 index 000000000..715acc131 --- /dev/null +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_es-ES.ts @@ -0,0 +1,56 @@ + + + + + CmdFemCreateFromShape + + + Fem + Fem + + + Create FEM mesh + Crear malla FEM + + + Create FEM mesh from shape + Crear malla FEM de forma + + + + FemGui::HypothesisWidget + + + Hypothesis + Hipótesis + + + Quadrangle + cuadrilátero + + + Maximum length + Longitud máxima + + + Local length + Longitud local + + + Maximum element area + Máxima área de elementos + + + + Workbench + + + FEM + FEM + + + &FEM + &FEM + + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_es.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_es.qm deleted file mode 100755 index 34aaea758..000000000 Binary files a/src/Mod/Fem/Gui/Resources/translations/Fem_es.qm and /dev/null differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_es.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_es.ts deleted file mode 100755 index 25e12428e..000000000 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_es.ts +++ /dev/null @@ -1,63 +0,0 @@ - - - - - CmdFemCreateFromShape - - - Fem - Fem - - - - Create FEM mesh - Crear malla FEM - - - - Create FEM mesh from shape - Crear malla FEM de forma - - - - FemGui::HypothesisWidget - - - Hypothesis - - - - - Quadrangle - - - - - Maximum length - - - - - Local length - - - - - Maximum element area - - - - - Workbench - - - FEM - FEM - - - - &FEM - &FEM - - - diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_fi.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_fi.qm index 6770219ae..f9fa3a115 100755 Binary files a/src/Mod/Fem/Gui/Resources/translations/Fem_fi.qm and b/src/Mod/Fem/Gui/Resources/translations/Fem_fi.qm differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_fi.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_fi.ts index d7730b27a..b3ff7c7e0 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_fi.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_fi.ts @@ -1,63 +1,56 @@ - - + + CmdFemCreateFromShape - - Fem - Fem + + Fem + Elementtimenetelmä - - Create FEM mesh - Create FEM mesh + Create FEM mesh + Luo ELEMENTTIMENETELMÄN verkko - - Create FEM mesh from shape - Create FEM mesh from shape + Create FEM mesh from shape + Luo ELEMENTTIMENETELMÄN verkko muodosta - - + + FemGui::HypothesisWidget - - Hypothesis - + + Hypothesis + Hypothesis - - Quadrangle - + Quadrangle + Quadrangle - - Maximum length - + Maximum length + Maximum length - - Local length - + Local length + Local length - - Maximum element area - + Maximum element area + Maximum element area - - + + Workbench - - FEM - FEM + + FEM + ELEMENTTIMENETELMÄ - - &FEM - &FEM + &FEM + &ELEMENTTIMENETELMÄ - + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_fr.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_fr.qm index 22e77739d..c89c7b2fd 100755 Binary files a/src/Mod/Fem/Gui/Resources/translations/Fem_fr.qm and b/src/Mod/Fem/Gui/Resources/translations/Fem_fr.qm differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_fr.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_fr.ts index 8db45e567..e0e9c913c 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_fr.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_fr.ts @@ -1,63 +1,56 @@ - - + + CmdFemCreateFromShape - - Fem - Fem + + Fem + Fem - - Create FEM mesh - Créer un maillage FEM + Create FEM mesh + Créer un maillage FEM - - Create FEM mesh from shape - Créer un maillage FEM à partir d'une forme + Create FEM mesh from shape + Créer un maillage FEM à partir d'une forme - - + + FemGui::HypothesisWidget - - Hypothesis - + + Hypothesis + Hypothèse - - Quadrangle - + Quadrangle + Quadrilatère - - Maximum length - + Maximum length + Longueur maximale - - Local length - + Local length + Longueur locale - - Maximum element area - + Maximum element area + Surface maximale par élément - - + + Workbench - - FEM - FEM + + FEM + FEM - - &FEM - &FEM + &FEM + &FEM - + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_hr.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_hr.qm index 71aff5426..de06f4653 100755 Binary files a/src/Mod/Fem/Gui/Resources/translations/Fem_hr.qm and b/src/Mod/Fem/Gui/Resources/translations/Fem_hr.qm differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_hr.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_hr.ts index 4e3d1827f..64d60a85c 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_hr.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_hr.ts @@ -1,63 +1,56 @@ - - + + CmdFemCreateFromShape - - Fem - Metoda konačnih elemenata + + Fem + Fem - - Create FEM mesh - Napravi MKE mrežu + Create FEM mesh + Napravi FEM mrežu - - Create FEM mesh from shape - Napravite MKE mrežu od oblika + Create FEM mesh from shape + Napravite FEM mrežu od oblika - - + + FemGui::HypothesisWidget - - Hypothesis - + + Hypothesis + Hipoteza - - Quadrangle - + Quadrangle + Četverokut - - Maximum length - + Maximum length + Maksimalna duljina - - Local length - + Local length + Lokalna duljina - - Maximum element area - + Maximum element area + Maksimalna površina elementa - - + + Workbench - - FEM - MKE + + FEM + FEM - - &FEM - &MKE + &FEM + &FEM - + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_hu.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_hu.qm index ecde6a078..349e56b4d 100755 Binary files a/src/Mod/Fem/Gui/Resources/translations/Fem_hu.qm and b/src/Mod/Fem/Gui/Resources/translations/Fem_hu.qm differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_hu.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_hu.ts index c5138dd48..d4e2550c3 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_hu.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_hu.ts @@ -1,63 +1,56 @@ - - + + CmdFemCreateFromShape - - Fem - Végeselemes analízis FEM + + Fem + Végeselemes analízis FEM - - Create FEM mesh - Végeselemes analízis (FEM) háló létrehozása + Create FEM mesh + Végeselemes analízis (FEM) háló létrehozása - - Create FEM mesh from shape - Végeselemes analízis háló létrehozása az alakzaton + Create FEM mesh from shape + Végeselemes analízis háló létrehozása az alakzaton - - + + FemGui::HypothesisWidget - - Hypothesis - + + Hypothesis + Hipotézis - - Quadrangle - + Quadrangle + Quadrangle - - Maximum length - + Maximum length + Maximális hossza - - Local length - + Local length + Helyi hossz - - Maximum element area - + Maximum element area + Maximális elem terület - - + + Workbench - - FEM - FEM + + FEM + FEM - - &FEM - &FEM Végeselemes analízis + &FEM + &FEM Végeselemes analízis - + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_it.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_it.qm index 92e3e65e4..69bffb2e3 100755 Binary files a/src/Mod/Fem/Gui/Resources/translations/Fem_it.qm and b/src/Mod/Fem/Gui/Resources/translations/Fem_it.qm differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_it.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_it.ts index b33a186e3..87956ccb1 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_it.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_it.ts @@ -1,63 +1,56 @@ - - + + CmdFemCreateFromShape - - Fem - Fem + + Fem + Fem - - Create FEM mesh - Crea una mesh FEM + Create FEM mesh + Crea una mesh FEM - - Create FEM mesh from shape - Crea una mesh FEM da una forma + Create FEM mesh from shape + Crea una mesh FEM da una forma - - + + FemGui::HypothesisWidget - - Hypothesis - + + Hypothesis + Ipotesi - - Quadrangle - + Quadrangle + Quadrangolo - - Maximum length - + Maximum length + Lunghezza massima - - Local length - + Local length + Lunghezza locale - - Maximum element area - + Maximum element area + Area massima dell'elemento - - + + Workbench - - FEM - FEM + + FEM + FEM - - &FEM - &FEM + &FEM + &FEM - + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_ja.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_ja.qm index 16f237a77..6bd49ecf4 100755 Binary files a/src/Mod/Fem/Gui/Resources/translations/Fem_ja.qm and b/src/Mod/Fem/Gui/Resources/translations/Fem_ja.qm differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_ja.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_ja.ts index 0948ed668..22f062b70 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_ja.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_ja.ts @@ -1,63 +1,56 @@ - - + + CmdFemCreateFromShape - - Fem - 有限要素法 + + Fem + 有限要素法 - - Create FEM mesh - 有限要素メッシュを作成します。 + Create FEM mesh + 有限要素メッシュを作成します。 - - Create FEM mesh from shape - 形状から有限要素メッシュを作成する + Create FEM mesh from shape + 形状から有限要素メッシュを作成する - - + + FemGui::HypothesisWidget - - Hypothesis - + + Hypothesis + Hypothesis - - Quadrangle - + Quadrangle + Quadrangle - - Maximum length - + Maximum length + Maximum length - - Local length - + Local length + Local length - - Maximum element area - + Maximum element area + Maximum element area - - + + Workbench - - FEM - 有限要素法 + + FEM + 有限要素法 - - &FEM - FEM(&F) + &FEM + FEM(&F) - + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_nl.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_nl.qm index 9622e84f3..ec32a6f96 100755 Binary files a/src/Mod/Fem/Gui/Resources/translations/Fem_nl.qm and b/src/Mod/Fem/Gui/Resources/translations/Fem_nl.qm differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_nl.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_nl.ts index 201b04fed..c2d8d1195 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_nl.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_nl.ts @@ -1,63 +1,56 @@ - - + + CmdFemCreateFromShape - - Fem - EEM + + Fem + EEM - - Create FEM mesh - Creëer een EEM-net + Create FEM mesh + Creëer een EEM-net - - Create FEM mesh from shape - Creëer een EEM-net van een vorm + Create FEM mesh from shape + Creëer een EEM-net van een vorm - - + + FemGui::HypothesisWidget - - Hypothesis - + + Hypothesis + Hypothesis - - Quadrangle - + Quadrangle + Quadrangle - - Maximum length - + Maximum length + Maximum length - - Local length - + Local length + Local length - - Maximum element area - + Maximum element area + Maximum element area - - + + Workbench - - FEM - EEM + + FEM + EEM - - &FEM - &EEM + &FEM + &EEM - + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_no.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_no.qm index dfc6de294..eb0476756 100755 Binary files a/src/Mod/Fem/Gui/Resources/translations/Fem_no.qm and b/src/Mod/Fem/Gui/Resources/translations/Fem_no.qm differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_no.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_no.ts index 670e59f91..2b8af52f6 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_no.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_no.ts @@ -1,63 +1,56 @@ - - + + CmdFemCreateFromShape - - Fem - Fem + + Fem + Fem - - Create FEM mesh - Lag FEM-nett + Create FEM mesh + Lag FEM-nett - - Create FEM mesh from shape - Lag FEM-nett av figuren + Create FEM mesh from shape + Lag FEM-nett av figuren - - + + FemGui::HypothesisWidget - - Hypothesis - + + Hypothesis + Hypothesis - - Quadrangle - + Quadrangle + Quadrangle - - Maximum length - + Maximum length + Maximum length - - Local length - + Local length + Local length - - Maximum element area - + Maximum element area + Maximum element area - - + + Workbench - - FEM - FEM + + FEM + FEM - - &FEM - &FEM + &FEM + &FEM - + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_pl.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_pl.qm index 744e49c21..acb46a698 100755 Binary files a/src/Mod/Fem/Gui/Resources/translations/Fem_pl.qm and b/src/Mod/Fem/Gui/Resources/translations/Fem_pl.qm differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_pl.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_pl.ts index ffa8f6d19..98a6b3542 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_pl.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_pl.ts @@ -1,63 +1,56 @@ - - + + CmdFemCreateFromShape - - Fem - Mes + + Fem + Mes - - Create FEM mesh - Tworzenie siatki MES + Create FEM mesh + Tworzenie siatki - - Create FEM mesh from shape - Tworzenie siatki MES z kształtu + Create FEM mesh from shape + Tworzenie siatki z kształtu - - + + FemGui::HypothesisWidget - - Hypothesis - + + Hypothesis + Hipoteza - - Quadrangle - + Quadrangle + Kwadratura - - Maximum length - + Maximum length + Maksymalna długość - - Local length - + Local length + Długość lokalna - - Maximum element area - + Maximum element area + Maksymalny obszar elementu - - + + Workbench - - FEM - MES + + FEM + MES - - &FEM - &MES + &FEM + &MES - + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_pt-BR.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_pt-BR.qm new file mode 100644 index 000000000..f047473be Binary files /dev/null and b/src/Mod/Fem/Gui/Resources/translations/Fem_pt-BR.qm differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_pt-BR.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_pt-BR.ts new file mode 100644 index 000000000..8075e3b44 --- /dev/null +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_pt-BR.ts @@ -0,0 +1,56 @@ + + + + + CmdFemCreateFromShape + + + Fem + Fem + + + Create FEM mesh + Criar malha FEM + + + Create FEM mesh from shape + Criar malha FEM mesh a partir de uma forma + + + + FemGui::HypothesisWidget + + + Hypothesis + Hipótese + + + Quadrangle + Quadrângulo + + + Maximum length + Comprimento máximo + + + Local length + Comprimento local + + + Maximum element area + Área máxima dos elementos + + + + Workbench + + + FEM + FEM + + + &FEM + &FEM + + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_pt.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_pt.qm deleted file mode 100755 index b98ad7b48..000000000 Binary files a/src/Mod/Fem/Gui/Resources/translations/Fem_pt.qm and /dev/null differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_pt.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_pt.ts deleted file mode 100755 index 8ce02bed5..000000000 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_pt.ts +++ /dev/null @@ -1,63 +0,0 @@ - - - - - CmdFemCreateFromShape - - - Fem - Fem - - - - Create FEM mesh - Criar malha FEM - - - - Create FEM mesh from shape - Criar malha FEM mesh a partir de uma forma - - - - FemGui::HypothesisWidget - - - Hypothesis - - - - - Quadrangle - - - - - Maximum length - - - - - Local length - - - - - Maximum element area - - - - - Workbench - - - FEM - FEM - - - - &FEM - &FEM - - - diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_ro.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_ro.qm new file mode 100644 index 000000000..901ca47b6 Binary files /dev/null and b/src/Mod/Fem/Gui/Resources/translations/Fem_ro.qm differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_ro.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_ro.ts new file mode 100644 index 000000000..f787730da --- /dev/null +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_ro.ts @@ -0,0 +1,56 @@ + + + + + CmdFemCreateFromShape + + + Fem + Fem + + + Create FEM mesh + Create FEM mesh + + + Create FEM mesh from shape + Create FEM mesh from shape + + + + FemGui::HypothesisWidget + + + Hypothesis + Ipoteza + + + Quadrangle + Patrulater + + + Maximum length + Lungimea maximă + + + Local length + Lungimea locală + + + Maximum element area + Zona maximă a elementului + + + + Workbench + + + FEM + FEM + + + &FEM + &FEM + + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_ru.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_ru.qm index 741939d07..b124b0e68 100755 Binary files a/src/Mod/Fem/Gui/Resources/translations/Fem_ru.qm and b/src/Mod/Fem/Gui/Resources/translations/Fem_ru.qm differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_ru.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_ru.ts index f587c3931..ed6f7144d 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_ru.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_ru.ts @@ -1,63 +1,56 @@ - - + + CmdFemCreateFromShape - - Fem - МКЭ (метод конечных элементов) + + Fem + МКЭ (метод конечных элементов) - - Create FEM mesh - Создать МКЭ сетку + Create FEM mesh + Создать МКЭ сетку - - Create FEM mesh from shape - Создать МКЭ сетку из формы + Create FEM mesh from shape + Создать МКЭ сетку из формы - - + + FemGui::HypothesisWidget - - Hypothesis - + + Hypothesis + Hypothesis - - Quadrangle - + Quadrangle + Четырехугольник - - Maximum length - + Maximum length + Максимальная длина - - Local length - + Local length + Local length - - Maximum element area - + Maximum element area + Максимальная площадь элемента - - + + Workbench - - FEM - МКЭ + + FEM + МКЭ - - &FEM - &МКЭ + &FEM + &МКЭ - + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_se.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_se.qm deleted file mode 100755 index 47c0a05a4..000000000 Binary files a/src/Mod/Fem/Gui/Resources/translations/Fem_se.qm and /dev/null differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_se.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_se.ts deleted file mode 100755 index 19c6a0716..000000000 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_se.ts +++ /dev/null @@ -1,63 +0,0 @@ - - - - - CmdFemCreateFromShape - - - Fem - Fem - - - - Create FEM mesh - Skapa FEM nät - - - - Create FEM mesh from shape - Skapa FEM nät från form - - - - FemGui::HypothesisWidget - - - Hypothesis - - - - - Quadrangle - - - - - Maximum length - - - - - Local length - - - - - Maximum element area - - - - - Workbench - - - FEM - FEM - - - - &FEM - &FEM - - - diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_sk.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_sk.qm new file mode 100644 index 000000000..2738feb55 Binary files /dev/null and b/src/Mod/Fem/Gui/Resources/translations/Fem_sk.qm differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_sk.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_sk.ts new file mode 100644 index 000000000..baac2fb48 --- /dev/null +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_sk.ts @@ -0,0 +1,56 @@ + + + + + CmdFemCreateFromShape + + + Fem + Mkp + + + Create FEM mesh + Vytvoriť MKP sieť + + + Create FEM mesh from shape + Vytvoriť MKP sieť z tvaru + + + + FemGui::HypothesisWidget + + + Hypothesis + Hypothesis + + + Quadrangle + Quadrangle + + + Maximum length + Maximum length + + + Local length + Local length + + + Maximum element area + Maximum element area + + + + Workbench + + + FEM + MKP + + + &FEM + &MKP + + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_sv-SE.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_sv-SE.qm new file mode 100644 index 000000000..489734a73 Binary files /dev/null and b/src/Mod/Fem/Gui/Resources/translations/Fem_sv-SE.qm differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_sv-SE.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_sv-SE.ts new file mode 100644 index 000000000..51f5b63b3 --- /dev/null +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_sv-SE.ts @@ -0,0 +1,56 @@ + + + + + CmdFemCreateFromShape + + + Fem + Fem + + + Create FEM mesh + Skapa FEM nät + + + Create FEM mesh from shape + Skapa FEM nät från form + + + + FemGui::HypothesisWidget + + + Hypothesis + Hypotes + + + Quadrangle + Kvadrantvinkel + + + Maximum length + Maximal längd + + + Local length + Lokal längd + + + Maximum element area + Maximalt elementområde + + + + Workbench + + + FEM + FEM + + + &FEM + &FEM + + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_tr.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_tr.qm new file mode 100644 index 000000000..d94912f2f Binary files /dev/null and b/src/Mod/Fem/Gui/Resources/translations/Fem_tr.qm differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_tr.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_tr.ts new file mode 100644 index 000000000..03a98f9dd --- /dev/null +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_tr.ts @@ -0,0 +1,56 @@ + + + + + CmdFemCreateFromShape + + + Fem + Sonlu elemanlar yöntemi + + + Create FEM mesh + Sonlu elemanlar yöntemi ile parçacıklar oluştur + + + Create FEM mesh from shape + Sonlu elemanlar yöntemi ile biçimden parçacıklar oluştur + + + + FemGui::HypothesisWidget + + + Hypothesis + Hypothesis + + + Quadrangle + Quadrangle + + + Maximum length + Maximum length + + + Local length + Local length + + + Maximum element area + Maximum element area + + + + Workbench + + + FEM + Sonlu Elemanlar Yöntemi + + + &FEM + &Sonlu Elemanlar Yöntemi + + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_uk.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_uk.qm index baf98c099..62a2cc003 100755 Binary files a/src/Mod/Fem/Gui/Resources/translations/Fem_uk.qm and b/src/Mod/Fem/Gui/Resources/translations/Fem_uk.qm differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_uk.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_uk.ts index 780aed9e1..630c5f640 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_uk.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_uk.ts @@ -1,63 +1,56 @@ - - + + CmdFemCreateFromShape - - Fem - МСЕ (Метод скінченних елементів) + + Fem + МСЕ (Метод скінченних елементів) - - Create FEM mesh - Створити МСЕ сітку + Create FEM mesh + Створити МСЕ сітку - - Create FEM mesh from shape - Створити МСЕ сітку з форми + Create FEM mesh from shape + Створити МСЕ сітку з форми - - + + FemGui::HypothesisWidget - - Hypothesis - + + Hypothesis + Припущення - - Quadrangle - + Quadrangle + Чотирикутне подві́р'я - - Maximum length - + Maximum length + Максимальна довжина - - Local length - + Local length + Локальна довжина - - Maximum element area - + Maximum element area + Maximum element area - - + + Workbench - - FEM - МСЕ + + FEM + МСЕ - - &FEM - &МСЕ + &FEM + &МСЕ - + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_zh-CN.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_zh-CN.qm new file mode 100644 index 000000000..3110d920d Binary files /dev/null and b/src/Mod/Fem/Gui/Resources/translations/Fem_zh-CN.qm differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_zh-CN.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_zh-CN.ts new file mode 100644 index 000000000..48a21a2d9 --- /dev/null +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_zh-CN.ts @@ -0,0 +1,56 @@ + + + + + CmdFemCreateFromShape + + + Fem + 有限元 + + + Create FEM mesh + 创建有限元网格 + + + Create FEM mesh from shape + 从形体创建有限元网格 + + + + FemGui::HypothesisWidget + + + Hypothesis + 假设 + + + Quadrangle + Quadrangle + + + Maximum length + 最大长度 + + + Local length + 局部长度 + + + Maximum element area + Maximum element area + + + + Workbench + + + FEM + 有限元 + + + &FEM + 有限元(&F) + + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_zh-TW.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_zh-TW.qm new file mode 100644 index 000000000..19fba79d5 Binary files /dev/null and b/src/Mod/Fem/Gui/Resources/translations/Fem_zh-TW.qm differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_zh-TW.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_zh-TW.ts new file mode 100644 index 000000000..0b4a31b6f --- /dev/null +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_zh-TW.ts @@ -0,0 +1,56 @@ + + + + + CmdFemCreateFromShape + + + Fem + 有限元素法 + + + Create FEM mesh + 創建有限元素分析網格 + + + Create FEM mesh from shape + 從形狀創建有限元素分析網格 + + + + FemGui::HypothesisWidget + + + Hypothesis + 假設 + + + Quadrangle + 四邊形 + + + Maximum length + 最大長度 + + + Local length + 區域長度 + + + Maximum element area + 物件最大區域 + + + + Workbench + + + FEM + 有限元素法 + + + &FEM + 有限元素法(&F) + + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_zh.qm b/src/Mod/Fem/Gui/Resources/translations/Fem_zh.qm deleted file mode 100755 index 50399f234..000000000 Binary files a/src/Mod/Fem/Gui/Resources/translations/Fem_zh.qm and /dev/null differ diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_zh.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_zh.ts deleted file mode 100755 index 998a05837..000000000 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_zh.ts +++ /dev/null @@ -1,63 +0,0 @@ - - - - - CmdFemCreateFromShape - - - Fem - 有限元 - - - - Create FEM mesh - 创建有限元网格 - - - - Create FEM mesh from shape - 从形体创建有限元网格 - - - - FemGui::HypothesisWidget - - - Hypothesis - - - - - Quadrangle - - - - - Maximum length - - - - - Local length - - - - - Maximum element area - - - - - Workbench - - - FEM - 有限元 - - - - &FEM - 有限元(&F) - - - diff --git a/src/Mod/Image/Gui/Makefile.am b/src/Mod/Image/Gui/Makefile.am index b24c50a5c..e893b9346 100644 --- a/src/Mod/Image/Gui/Makefile.am +++ b/src/Mod/Image/Gui/Makefile.am @@ -93,8 +93,8 @@ EXTRA_DIST = \ Resources/translations/Image_af.ts \ Resources/translations/Image_de.qm \ Resources/translations/Image_de.ts \ - Resources/translations/Image_es.qm \ - Resources/translations/Image_es.ts \ + Resources/translations/Image_es-ES.qm \ + Resources/translations/Image_es-ES.ts \ Resources/translations/Image_fi.qm \ Resources/translations/Image_fi.ts \ Resources/translations/Image_fr.qm \ @@ -109,15 +109,29 @@ EXTRA_DIST = \ Resources/translations/Image_no.ts \ Resources/translations/Image_pl.qm \ Resources/translations/Image_pl.ts \ - Resources/translations/Image_pt.qm \ - Resources/translations/Image_pt.ts \ + Resources/translations/Image_pt-BR.qm \ + Resources/translations/Image_pt-BR.ts \ Resources/translations/Image_ru.qm \ Resources/translations/Image_ru.ts \ - Resources/translations/Image_se.qm \ - Resources/translations/Image_se.ts \ + Resources/translations/Image_sv-SE.qm \ + Resources/translations/Image_sv-SE.ts \ Resources/translations/Image_uk.qm \ Resources/translations/Image_uk.ts \ - Resources/translations/Image_zh.qm \ - Resources/translations/Image_zh.ts \ + Resources/translations/Image_zh-CN.qm \ + Resources/translations/Image_zh-CN.ts \ + Resources/translations/Image_hu.qm \ + Resources/translations/Image_hu.ts \ + Resources/translations/Image_ja.qm \ + Resources/translations/Image_ja.ts \ + Resources/translations/Image_ro.qm \ + Resources/translations/Image_ro.ts \ + Resources/translations/Image_zh-TW.qm \ + Resources/translations/Image_zh-TW.ts \ + Resources/translations/Image_cs.qm \ + Resources/translations/Image_cs.ts \ + Resources/translations/Image_tr.qm \ + Resources/translations/Image_tr.ts \ + Resources/translations/Image_sk.qm \ + Resources/translations/Image_sk.ts \ Resources/icons/image-import.svg diff --git a/src/Mod/Image/Gui/Resources/Image.qrc b/src/Mod/Image/Gui/Resources/Image.qrc index 41122d6b2..e3acfab64 100644 --- a/src/Mod/Image/Gui/Resources/Image.qrc +++ b/src/Mod/Image/Gui/Resources/Image.qrc @@ -3,7 +3,6 @@ icons/image-import.svg translations/Image_af.qm translations/Image_de.qm - translations/Image_es.qm translations/Image_fi.qm translations/Image_fr.qm translations/Image_hr.qm @@ -11,10 +10,18 @@ translations/Image_nl.qm translations/Image_no.qm translations/Image_pl.qm - translations/Image_pt.qm translations/Image_ru.qm - translations/Image_se.qm translations/Image_uk.qm - translations/Image_zh.qm + translations/Image_tr.qm + translations/Image_sv-SE.qm + translations/Image_zh-TW.qm + translations/Image_pt-BR.qm + translations/Image_cs.qm + translations/Image_sk.qm + translations/Image_es-ES.qm + translations/Image_zh-CN.qm + translations/Image_ja.qm + translations/Image_ro.qm + translations/Image_hu.qm diff --git a/src/Mod/Image/Gui/Resources/translations/Image_af.qm b/src/Mod/Image/Gui/Resources/translations/Image_af.qm index f27108733..0c87fefca 100644 Binary files a/src/Mod/Image/Gui/Resources/translations/Image_af.qm and b/src/Mod/Image/Gui/Resources/translations/Image_af.qm differ diff --git a/src/Mod/Image/Gui/Resources/translations/Image_af.ts b/src/Mod/Image/Gui/Resources/translations/Image_af.ts index d37cd1376..a026b4022 100644 --- a/src/Mod/Image/Gui/Resources/translations/Image_af.ts +++ b/src/Mod/Image/Gui/Resources/translations/Image_af.ts @@ -1,183 +1,147 @@ - - + + CmdCreateImagePlane - - Image - Beeld + + Image + Beeld - - Create image plane... - Skep beeldvlak... + Create image plane... + Skep beeldvlak... - - Create a planar image in the 3D space - Create a planar image in the 3D space + Create a planar image in the 3D space + Skep 'n plat beeld in die 3D ruimte - create a planar image in the 3D space - skep 'n 2D-beeld in die 3D-ruimte + create a planar image in the 3D space + skep 'n 2D-beeld in die 3D-ruimte - - + + CmdImageOpen - - Image - Beeld + Image + Beeld - - Open... - Maak oop... + Open... + Maak oop... - - Open image view - Maak beeldaansig oop + Open image view + Maak beeldaansig oop - - + + ImageGui::GLImageBox - - Undefined type of colour space for image viewing - Ongedefinieerde kleurruimte vir beeldvertoning + + Undefined type of colour space for image viewing + Ongedefinieerde kleurruimte vir beeldvertoning - - Image pixel format - Beeldelementformaat + Image pixel format + Beeldelementformaat - - + + ImageGui::ImageView - - &Fit image - &Pas beeld + + &Fit image + &Pas beeld - - Stretch the image to fit the view - Rek die beeld om die aansig te pas + Stretch the image to fit the view + Rek die beeld om die aansig te pas - - &1:1 scale - &1:1 skaal + &1:1 scale + &1:1 skaal - - Display the image at a 1:1 scale - Wys die beeld op 'n 1:1 skaal + Display the image at a 1:1 scale + Wys die beeld op 'n 1:1 skaal - &Original color - &Oorspronklike kleur + &Original color + &Oorspronklike kleur - Display the image with its original color(s) - Vertoon die beeld met sy oorspronklike kleur(e) + Display the image with its original color(s) + Vertoon die beeld met sy oorspronklike kleur(e) - &Brightened color - &Verhelderde kleur + &Brightened color + &Verhelderde kleur - Display the image with brightened color(s) - Wys die beeld met verhelderde kleur(e) + Display the image with brightened color(s) + Wys die beeld met verhelderde kleur(e) - - Standard - Standaard + Standard + Standaard - - Ready... - Gereed... + Ready... + Gereed... - - grey - grys + grey + grys - - - - - - - - - - - zoom - Zoem + zoom + Zoem - - - - - - outside image - buite beeld + outside image + buite beeld - - + + QObject - Image viewer - Beeldleser + Image viewer + Beeldleser - - Images (*.png *.xpm *.jpg *.bmp) - Beelde (*.png *.xpm *.jpg *.bmp) + + Images (*.png *.xpm *.jpg *.bmp) + Beelde (*.png *.xpm *.jpg *.bmp) - - - - Choose an image file to open - Kies 'n beeldlêer om oop te maak + Choose an image file to open + Kies 'n beeldlêer om oop te maak - - - Images - Images + Images + Beelde - - - All files - All files + All files + Alle lêers - - Error open image - Probleem om beeld oop te maak + Error open image + Probleem om beeld oop te maak - - Could not load the choosen image - Kon nie die gekose beeld laai nie + Could not load the choosen image + Kon nie die gekose beeld laai nie - - + + Workbench - - Image - Beeld + + Image + Beeld - + diff --git a/src/Mod/Image/Gui/Resources/translations/Image_cs.qm b/src/Mod/Image/Gui/Resources/translations/Image_cs.qm new file mode 100644 index 000000000..b90f0ad76 Binary files /dev/null and b/src/Mod/Image/Gui/Resources/translations/Image_cs.qm differ diff --git a/src/Mod/Image/Gui/Resources/translations/Image_cs.ts b/src/Mod/Image/Gui/Resources/translations/Image_cs.ts new file mode 100644 index 000000000..510464b04 --- /dev/null +++ b/src/Mod/Image/Gui/Resources/translations/Image_cs.ts @@ -0,0 +1,147 @@ + + + + + CmdCreateImagePlane + + + Image + Obrázek + + + Create image plane... + Vytvoření roviny obrázku... + + + Create a planar image in the 3D space + Vytvoří roviný obrázek ve 3D prostoru + + + create a planar image in the 3D space + create a planar image in the 3D space + + + + CmdImageOpen + + Image + Obrázek + + + Open... + Otevřít... + + + Open image view + Otevřít náhled obrázku + + + + ImageGui::GLImageBox + + + Undefined type of colour space for image viewing + Nedefinovaný typ barvy prostoru pro zobrazení obrázku + + + Image pixel format + Formát bodu obrázku + + + + ImageGui::ImageView + + + &Fit image + Přizpůsobit obrázek + + + Stretch the image to fit the view + Přizpůsobit obrázek velikosti pohledu + + + &1:1 scale + měřítko &1:1 + + + Display the image at a 1:1 scale + Zobrazit obrázek v měřítku 1:1 + + + &Original color + &Original color + + + Display the image with its original color(s) + Display the image with its original color(s) + + + &Brightened color + &Brightened color + + + Display the image with brightened color(s) + Display the image with brightened color(s) + + + Standard + Standard + + + Ready... + Připraven... + + + grey + šedá + + + zoom + zvětšení + + + outside image + okolí obrázku + + + + QObject + + Image viewer + Image viewer + + + + Images (*.png *.xpm *.jpg *.bmp) + Obrázky (*.png *.xpm *.jpg *.bmp) + + + Choose an image file to open + Vyber soubor obrázku pro otevření + + + Images + Obrázky + + + All files + Všechny soubory + + + Error open image + Chyba při otevírání obrázku + + + Could not load the choosen image + Nemohu načist vybraný obrázek + + + + Workbench + + + Image + Obrázek + + + diff --git a/src/Mod/Image/Gui/Resources/translations/Image_de.qm b/src/Mod/Image/Gui/Resources/translations/Image_de.qm index 841fe1e29..761046a01 100644 Binary files a/src/Mod/Image/Gui/Resources/translations/Image_de.qm and b/src/Mod/Image/Gui/Resources/translations/Image_de.qm differ diff --git a/src/Mod/Image/Gui/Resources/translations/Image_de.ts b/src/Mod/Image/Gui/Resources/translations/Image_de.ts index 9ffabd460..eff1c5e95 100644 --- a/src/Mod/Image/Gui/Resources/translations/Image_de.ts +++ b/src/Mod/Image/Gui/Resources/translations/Image_de.ts @@ -1,183 +1,147 @@ - - + + CmdCreateImagePlane - - Image - Grafik + + Image + Grafik - - Create image plane... - Erstellen Sie eine Bildebene... + Create image plane... + Erstellen Sie eine Bildebene... - - Create a planar image in the 3D space - Create a planar image in the 3D space + Create a planar image in the 3D space + Erzeuge ein planare Grafik im 3D-Raum - create a planar image in the 3D space - Erstellen Sie eine ebenes Bild im 3D-Raum + create a planar image in the 3D space + Erstellen Sie eine ebenes Bild im 3D-Raum - - + + CmdImageOpen - - Image - Grafik + Image + Grafik - - Open... - Öffnen... + Open... + Öffnen... - - Open image view - Öffne Bildansicht + Open image view + Öffne Bildansicht - - + + ImageGui::GLImageBox - - Undefined type of colour space for image viewing - Undefinierter Farbraum-Typ für die Bildbetrachtung + + Undefined type of colour space for image viewing + Undefinierter Farbraum-Typ für die Bildbetrachtung - - Image pixel format - Pixelformat des Bildes + Image pixel format + Pixelformat des Bildes - - + + ImageGui::ImageView - - &Fit image - Bild an&passen + + &Fit image + Bild an&passen - - Stretch the image to fit the view - Bild auf die Ansicht ausdehnen + Stretch the image to fit the view + Bild auf die Ansicht ausdehnen - - &1:1 scale - &1:1 Maßstab + &1:1 scale + &1:1 Maßstab - - Display the image at a 1:1 scale - Das Bild im Maßstab 1:1 anzeigen + Display the image at a 1:1 scale + Das Bild im Maßstab 1:1 anzeigen - &Original color - &Ursprüngliche Farbe + &Original color + &Ursprüngliche Farbe - Display the image with its original color(s) - Das Bild mit seinen ursprünglichen Farbe(n) anzeigen + Display the image with its original color(s) + Das Bild mit seinen ursprünglichen Farbe(n) anzeigen - &Brightened color - &Farbe aufhellen + &Brightened color + &Farbe aufhellen - Display the image with brightened color(s) - Das Bild mit aufgehellten Farben anzeigen + Display the image with brightened color(s) + Das Bild mit aufgehellten Farben anzeigen - - Standard - Standard + Standard + Standard - - Ready... - Fertig... + Ready... + Fertig... - - grey - grau + grey + grau - - - - - - - - - - - zoom - Zoom + zoom + Zoom - - - - - - outside image - außerhalb Bild + outside image + außerhalb Bild - - + + QObject - Image viewer - Bildbetrachter + Image viewer + Bildbetrachter - - Images (*.png *.xpm *.jpg *.bmp) - Bilder (*.png *.xpm *.jpg *.bmp) + + Images (*.png *.xpm *.jpg *.bmp) + Bilder (*.png *.xpm *.jpg *.bmp) - - - - Choose an image file to open - Wählen Sie ein Bild zum Öffnen aus + Choose an image file to open + Wählen Sie ein Bild zum Öffnen aus - - - Images - Images + Images + Grafiken - - - All files - All files + All files + Alle Dateien - - Error open image - Fehler beim Öffnen des Bildes + Error open image + Fehler beim Öffnen des Bildes - - Could not load the choosen image - Das gewählte Bild konnte nicht geladen werden + Could not load the choosen image + Das gewählte Bild konnte nicht geladen werden - - + + Workbench - - Image - Grafik + + Image + Grafik - + diff --git a/src/Mod/Image/Gui/Resources/translations/Image_es-ES.qm b/src/Mod/Image/Gui/Resources/translations/Image_es-ES.qm new file mode 100644 index 000000000..35141ab48 Binary files /dev/null and b/src/Mod/Image/Gui/Resources/translations/Image_es-ES.qm differ diff --git a/src/Mod/Image/Gui/Resources/translations/Image_es-ES.ts b/src/Mod/Image/Gui/Resources/translations/Image_es-ES.ts new file mode 100644 index 000000000..5b9865635 --- /dev/null +++ b/src/Mod/Image/Gui/Resources/translations/Image_es-ES.ts @@ -0,0 +1,147 @@ + + + + + CmdCreateImagePlane + + + Image + Imagen + + + Create image plane... + Crear plano de imagen... + + + Create a planar image in the 3D space + Crear una imagen plana en el espacio 3D + + + create a planar image in the 3D space + crear una imagen plana en el espacio 3D + + + + CmdImageOpen + + Image + Imagen + + + Open... + Abrir... + + + Open image view + Abrir vista de imagen + + + + ImageGui::GLImageBox + + + Undefined type of colour space for image viewing + Tipo de espacio color no definido para la visualización de la imagen + + + Image pixel format + Formato de pixel de imagen + + + + ImageGui::ImageView + + + &Fit image + &Ajustar imagen + + + Stretch the image to fit the view + Estirar la imagen para ajustarse a la vista + + + &1:1 scale + &Escala 1:1 + + + Display the image at a 1:1 scale + Muestra la imagen a escala 1:1 + + + &Original color + &Color original + + + Display the image with its original color(s) + Muestra la imagen con su(s) color(es) original(es) + + + &Brightened color + &Color más luminoso + + + Display the image with brightened color(s) + Muestra la imagen con color(es) más luminoso(s) + + + Standard + Estándar + + + Ready... + Preparado... + + + grey + Gris + + + zoom + Zoom + + + outside image + Imagen exterior + + + + QObject + + Image viewer + Visor de imagenes + + + + Images (*.png *.xpm *.jpg *.bmp) + Imagenes (*.png *.xpm *.jpg *.bmp) + + + Choose an image file to open + Selecciona un archivo de imagen para abrir + + + Images + Imágenes + + + All files + Todos los archivos + + + Error open image + Error al abrir imagen + + + Could not load the choosen image + No se pudo cargar la imagen elegida + + + + Workbench + + + Image + Imagen + + + diff --git a/src/Mod/Image/Gui/Resources/translations/Image_es.qm b/src/Mod/Image/Gui/Resources/translations/Image_es.qm deleted file mode 100644 index d912089ca..000000000 Binary files a/src/Mod/Image/Gui/Resources/translations/Image_es.qm and /dev/null differ diff --git a/src/Mod/Image/Gui/Resources/translations/Image_es.ts b/src/Mod/Image/Gui/Resources/translations/Image_es.ts deleted file mode 100644 index ab350c8a2..000000000 --- a/src/Mod/Image/Gui/Resources/translations/Image_es.ts +++ /dev/null @@ -1,183 +0,0 @@ - - - - - CmdCreateImagePlane - - - Image - Imagen - - - - Create image plane... - Crear plano de imagen... - - - - Create a planar image in the 3D space - Create a planar image in the 3D space - - - create a planar image in the 3D space - crear una imagen plana en el espacio 3D - - - - CmdImageOpen - - - Image - Imagen - - - - Open... - Abrir... - - - - Open image view - Abrir vista de imagen - - - - ImageGui::GLImageBox - - - Undefined type of colour space for image viewing - Tipo de espacio color no definido para la visualización de la imagen - - - - Image pixel format - Formato de pixel de imagen - - - - ImageGui::ImageView - - - &Fit image - &Ajustar imagen - - - - Stretch the image to fit the view - Estirar la imagen para ajustarse a la vista - - - - &1:1 scale - &Escala 1:1 - - - - Display the image at a 1:1 scale - Muestra la imagen a escala 1:1 - - - &Original color - &Color original - - - Display the image with its original color(s) - Muestra la imagen con su(s) color(es) original(es) - - - &Brightened color - &Color más luminoso - - - Display the image with brightened color(s) - Muestra la imagen con color(es) más luminoso(s) - - - - Standard - Estándar - - - - Ready... - Preparado... - - - - grey - Gris - - - - - - - - - - - - - zoom - Zoom - - - - - - - - outside image - Imagen exterior - - - - QObject - - Image viewer - Visor de imagenes - - - - Images (*.png *.xpm *.jpg *.bmp) - Imagenes (*.png *.xpm *.jpg *.bmp) - - - - - - Choose an image file to open - Selecciona un archivo de imagen para abrir - - - - - Images - Images - - - - - All files - All files - - - - Error open image - Error al abrir imagen - - - - Could not load the choosen image - No se pudo cargar la imagen elegida - - - - Workbench - - - Image - Imagen - - - diff --git a/src/Mod/Image/Gui/Resources/translations/Image_fi.qm b/src/Mod/Image/Gui/Resources/translations/Image_fi.qm index 3fa3923a5..849bda85c 100644 Binary files a/src/Mod/Image/Gui/Resources/translations/Image_fi.qm and b/src/Mod/Image/Gui/Resources/translations/Image_fi.qm differ diff --git a/src/Mod/Image/Gui/Resources/translations/Image_fi.ts b/src/Mod/Image/Gui/Resources/translations/Image_fi.ts index dbe9a1150..d22434ebb 100644 --- a/src/Mod/Image/Gui/Resources/translations/Image_fi.ts +++ b/src/Mod/Image/Gui/Resources/translations/Image_fi.ts @@ -1,183 +1,147 @@ - - + + CmdCreateImagePlane - - Image - Kuva + + Image + Kuva - - Create image plane... - Create image plane... + Create image plane... + Luo kuvan taso... - - Create a planar image in the 3D space - Create a planar image in the 3D space + Create a planar image in the 3D space + Luo tasomainen kuva 3D-avaruudessa - create a planar image in the 3D space - create a planar image in the 3D space + create a planar image in the 3D space + create a planar image in the 3D space - - + + CmdImageOpen - - Image - Kuva + Image + Kuva - - Open... - Avaa... + Open... + Avaa... - - Open image view - Avaa kuvan näkymä + Open image view + Avaa kuvan näkymä - - + + ImageGui::GLImageBox - - Undefined type of colour space for image viewing - Määrittämätön tyyppi väriavaruudesta kuvien katseluun + + Undefined type of colour space for image viewing + Määrittämätön tyyppi väriavaruudesta kuvien katseluun - - Image pixel format - Image pixel format + Image pixel format + Kuvan kuvapistemuotoilu - - + + ImageGui::ImageView - - &Fit image - &Sovita kuva + + &Fit image + &Sovita kuva - - Stretch the image to fit the view - Venytä kuva sopimaan näkymään + Stretch the image to fit the view + Venytä kuva sopimaan näkymään - - &1:1 scale - mittakaavassa &1:1 + &1:1 scale + mittakaavassa &1:1 - - Display the image at a 1:1 scale - Näytä kuva mittakaavassa 1:1 + Display the image at a 1:1 scale + Näytä kuva mittakaavassa 1:1 - &Original color - &Alkuperäinen väri + &Original color + &Alkuperäinen väri - Display the image with its original color(s) - Näyttää kuvan alkuperäisten värie(n) kanssa + Display the image with its original color(s) + Näyttää kuvan alkuperäisten värie(n) kanssa - &Brightened color - &Brightened color + &Brightened color + &Brightened color - Display the image with brightened color(s) - Display the image with brightened color(s) + Display the image with brightened color(s) + Display the image with brightened color(s) - - Standard - Standardi + Standard + Standardi - - Ready... - Valmis... + Ready... + Valmis... - - grey - harmaa + grey + harmaa - - - - - - - - - - - zoom - zoom + zoom + Zoomaus - - - - - - outside image - kuvan ulkopuolella + outside image + kuvan ulkopuolella - - + + QObject - Image viewer - Kuvakatselin + Image viewer + Kuvakatselin - - Images (*.png *.xpm *.jpg *.bmp) - Kuvat (*.png *.xpm *.jpg *.bmp) + + Images (*.png *.xpm *.jpg *.bmp) + Kuvat (*.png *.xpm *.jpg *.bmp) - - - - Choose an image file to open - Choose an image file to open + Choose an image file to open + Valitse avattava kuvatiedosto - - - Images - Images + Images + Kuvat - - - All files - All files + All files + Kaikki tiedostot - - Error open image - Error open image + Error open image + Virhe avattaessa kuvaa - - Could not load the choosen image - Could not load the choosen image + Could not load the choosen image + Valitun kuvan lataaminen ei onnistunut - - + + Workbench - - Image - Kuva + + Image + Kuva - + diff --git a/src/Mod/Image/Gui/Resources/translations/Image_fr.ts b/src/Mod/Image/Gui/Resources/translations/Image_fr.ts index 798a8ca45..49976ab76 100644 --- a/src/Mod/Image/Gui/Resources/translations/Image_fr.ts +++ b/src/Mod/Image/Gui/Resources/translations/Image_fr.ts @@ -1,183 +1,147 @@ - - + + CmdCreateImagePlane - - Image - Image + + Image + Image - - Create image plane... - Créer un plan d'image... + Create image plane... + Créer un plan d'image... - - Create a planar image in the 3D space - Créer une image plane dans l'espace 3D + Create a planar image in the 3D space + Créer une image plane dans l'espace 3D - create a planar image in the 3D space - Créer une image plane dans l'espace 3D + create a planar image in the 3D space + Créer une image plane dans l'espace 3D - - + + CmdImageOpen - - Image - Image + Image + Image - - Open... - Ouvrir... + Open... + Ouvrir... - - Open image view - Ouvrir une image + Open image view + Ouvrir une image - - + + ImageGui::GLImageBox - - Undefined type of colour space for image viewing - Type d'espace colorimétrique indéfini + + Undefined type of colour space for image viewing + Type d'espace colorimétrique indéfini - - Image pixel format - Format de l'image en pixels + Image pixel format + Format de l'image en pixels - - + + ImageGui::ImageView - - &Fit image - &Adapter l'image + + &Fit image + &Adapter l'image - - Stretch the image to fit the view - Étirer l'image pour l'adapter à la vue + Stretch the image to fit the view + Étirer l'image pour l'adapter à la vue - - &1:1 scale - Échelle &1:1 + &1:1 scale + Échelle &1:1 - - Display the image at a 1:1 scale - Afficher l'image à l'échelle 1:1 + Display the image at a 1:1 scale + Afficher l'image à l'échelle 1:1 - &Original color - Couleurs d'&origine + &Original color + Couleurs d'&origine - Display the image with its original color(s) - Afficher l'image avec ses couleurs d'origine + Display the image with its original color(s) + Afficher l'image avec ses couleurs d'origine - &Brightened color - Couleurs é&claircies + &Brightened color + Couleurs é&claircies - Display the image with brightened color(s) - Afficher l'image avec des couleurs éclaircies + Display the image with brightened color(s) + Afficher l'image avec des couleurs éclaircies - - Standard - Standard + Standard + Standard - - Ready... - Prêt... + Ready... + Prêt... - - grey - gris + grey + gris - - - - - - - - - - - zoom - zoom + zoom + zoom - - - - - - outside image - image extérieure + outside image + image extérieure - - + + QObject - Image viewer - Visionneuse d'image + Image viewer + Visionneuse d'image - - Images (*.png *.xpm *.jpg *.bmp) - Images (*.png *.xpm *.jpg *.bmp) + + Images (*.png *.xpm *.jpg *.bmp) + Images (*.png *.xpm *.jpg *.bmp) - - - - Choose an image file to open - Choisir un fichier d'image à ouvrir + Choose an image file to open + Choisir un fichier d'image à ouvrir - - - Images - Images + Images + Images - - - All files - Tous les fichiers + All files + Tous les fichiers - - Error open image - Erreur à l'ouverture de l'image + Error open image + Erreur à l'ouverture de l'image - - Could not load the choosen image - Impossible de charger l'image choisie + Could not load the choosen image + Impossible de charger l'image choisie - - + + Workbench - - Image - Image + + Image + Image - + diff --git a/src/Mod/Image/Gui/Resources/translations/Image_hr.qm b/src/Mod/Image/Gui/Resources/translations/Image_hr.qm index cfefa6e8b..ce6f399eb 100644 Binary files a/src/Mod/Image/Gui/Resources/translations/Image_hr.qm and b/src/Mod/Image/Gui/Resources/translations/Image_hr.qm differ diff --git a/src/Mod/Image/Gui/Resources/translations/Image_hr.ts b/src/Mod/Image/Gui/Resources/translations/Image_hr.ts index 7d419a9ba..5faa9d74d 100644 --- a/src/Mod/Image/Gui/Resources/translations/Image_hr.ts +++ b/src/Mod/Image/Gui/Resources/translations/Image_hr.ts @@ -1,183 +1,147 @@ - - + + CmdCreateImagePlane - - Image - Slika + + Image + Slika - - Create image plane... - Napravi ravninu slike ... + Create image plane... + Napravi ravninu slike ... - - Create a planar image in the 3D space - Create a planar image in the 3D space + Create a planar image in the 3D space + Napravi planarnu sliku u 3D prostoru - create a planar image in the 3D space - stvoriti planarnu sliku u 3D prikazu + create a planar image in the 3D space + stvoriti planarnu sliku u 3D prikazu - - + + CmdImageOpen - - Image - Slika + Image + Slika - - Open... - Otvori ... + Open... + Otvori ... - - Open image view - Otvori pogled slike + Open image view + Otvori pogled slike - - + + ImageGui::GLImageBox - - Undefined type of colour space for image viewing - nedefinirani tip boja za gledanje slika + + Undefined type of colour space for image viewing + nedefinirani tip boja za gledanje slika - - Image pixel format - format slike u pixelima + Image pixel format + format slike u pixelima - - + + ImageGui::ImageView - - &Fit image - Prilagodi sliku + + &Fit image + Prilagodi sliku - - Stretch the image to fit the view - rastegni sliku da odgovara prikazu + Stretch the image to fit the view + rastegni sliku da odgovara prikazu - - &1:1 scale - u mjerilu 1:1 + &1:1 scale + u mjerilu 1:1 - - Display the image at a 1:1 scale - Prikaz slike u mjerilu 1:1 + Display the image at a 1:1 scale + Prikaz slike u mjerilu 1:1 - &Original color - I originalna boja + &Original color + I originalna boja - Display the image with its original color(s) - Prikaži sliku s originalnim bojama + Display the image with its original color(s) + Prikaži sliku s originalnim bojama - &Brightened color - I Razvedri boju + &Brightened color + I Razvedri boju - Display the image with brightened color(s) - Prikaži sliku s s izbjeljenim bojama + Display the image with brightened color(s) + Prikaži sliku s s izbjeljenim bojama - - Standard - Standard + Standard + Standard - - Ready... - Spreman... + Ready... + Spreman... - - grey - siva + grey + siva - - - - - - - - - - - zoom - zum + zoom + zum - - - - - - outside image - izvan slike + outside image + izvan slike - - + + QObject - Image viewer - Pregled slike + Image viewer + Pregled slike - - Images (*.png *.xpm *.jpg *.bmp) - Slike (*. png *. XPM *. jpg *. bmp) + + Images (*.png *.xpm *.jpg *.bmp) + Slike (*. png *. XPM *. jpg *. bmp) - - - - Choose an image file to open - Odaberite koju ce te sliku otvoriti + Choose an image file to open + Odaberite koju ce te sliku otvoriti - - - Images - Images + Images + Slike - - - All files - All files + All files + Sve datoteke - - Error open image - Pogreška pri otvaranju slike + Error open image + Pogreška pri otvaranju slike - - Could not load the choosen image - Nije moguće učitati izabranu sliku + Could not load the choosen image + Nije moguće učitati izabranu sliku - - + + Workbench - - Image - Slika + + Image + Slika - + diff --git a/src/Mod/Image/Gui/Resources/translations/Image_hu.qm b/src/Mod/Image/Gui/Resources/translations/Image_hu.qm index ca985f13e..ce4ef6e3e 100644 Binary files a/src/Mod/Image/Gui/Resources/translations/Image_hu.qm and b/src/Mod/Image/Gui/Resources/translations/Image_hu.qm differ diff --git a/src/Mod/Image/Gui/Resources/translations/Image_hu.ts b/src/Mod/Image/Gui/Resources/translations/Image_hu.ts index 85c21561b..61af5ff80 100644 --- a/src/Mod/Image/Gui/Resources/translations/Image_hu.ts +++ b/src/Mod/Image/Gui/Resources/translations/Image_hu.ts @@ -1,183 +1,147 @@ - - + + CmdCreateImagePlane - - Image - Kép + + Image + Kép - - Create image plane... - Kép sík létrehozása... + Create image plane... + Kép sík létrehozása... - - Create a planar image in the 3D space - Create a planar image in the 3D space + Create a planar image in the 3D space + hozzon létre egy síkbeli képet a 3D-s térben - create a planar image in the 3D space - hozzon létre egy síkbeli képet a 3D-s térben + create a planar image in the 3D space + hozzon létre egy síkbeli képet a 3D-s térben - - + + CmdImageOpen - - Image - Kép + Image + Kép - - Open... - Megnyitás... + Open... + Megnyitás... - - Open image view - Kép megnyitása megtekintése + Open image view + Kép megnyitása megtekintése - - + + ImageGui::GLImageBox - - Undefined type of colour space for image viewing - A képnéző által meghatározhatatlan típusú színtér + + Undefined type of colour space for image viewing + A képnéző által meghatározhatatlan típusú színtér - - Image pixel format - Képpont formátum + Image pixel format + Képpont formátum - - + + ImageGui::ImageView - - &Fit image - Kép kitöltse a képernyőt + + &Fit image + Kép kitöltse a képernyőt &F - - Stretch the image to fit the view - Nyújtsa ki a képet, hogy illeszkedjen a nézethez + Stretch the image to fit the view + Nyújtsa ki a képet, hogy illeszkedjen a nézethez - - &1:1 scale - &1:1 léptékű + &1:1 scale + &1:1 léptékű - - Display the image at a 1:1 scale - A kép megjelenítése 1:1 méretarányban + Display the image at a 1:1 scale + A kép megjelenítése 1:1 méretarányban - &Original color - &Eredeti szín + &Original color + &Eredeti szín - Display the image with its original color(s) - Eredeti színekkel jelenítse meg a képet + Display the image with its original color(s) + Eredeti színekkel jelenítse meg a képet - &Brightened color - &Világosított szín + &Brightened color + &Világosított szín - Display the image with brightened color(s) - Világosított színekkel jelenítse meg a képet + Display the image with brightened color(s) + Világosított színekkel jelenítse meg a képet - - Standard - Szabvány + Standard + Szabvány - - Ready... - Kész ... + Ready... + Kész ... - - grey - szürke + grey + szürke - - - - - - - - - - - zoom - Nagyítás + zoom + Nagyítás - - - - - - outside image - külső kép + outside image + külső kép - - + + QObject - Image viewer - Képnéző + Image viewer + Képnéző - - Images (*.png *.xpm *.jpg *.bmp) - Képek (*.png *.xpm *.jpg *.bmp) + + Images (*.png *.xpm *.jpg *.bmp) + Képek (*.png *.xpm *.jpg *.bmp) - - - - Choose an image file to open - Egy képfájl kiválasztása megnyitásra + Choose an image file to open + Egy képfájl kiválasztása megnyitásra - - - Images - Images + Images + Képek - - - All files - All files + All files + Összes fájl - - Error open image - Hiba a kép megnyitásakor + Error open image + Hiba a kép megnyitásakor - - Could not load the choosen image - Nem sikerült betölteni a kiválasztott képet + Could not load the choosen image + Nem sikerült betölteni a kiválasztott képet - - + + Workbench - - Image - Kép + + Image + Kép - + diff --git a/src/Mod/Image/Gui/Resources/translations/Image_it.qm b/src/Mod/Image/Gui/Resources/translations/Image_it.qm index 50b06e0fc..69581dab1 100644 Binary files a/src/Mod/Image/Gui/Resources/translations/Image_it.qm and b/src/Mod/Image/Gui/Resources/translations/Image_it.qm differ diff --git a/src/Mod/Image/Gui/Resources/translations/Image_it.ts b/src/Mod/Image/Gui/Resources/translations/Image_it.ts index adedd06db..1dc8f567f 100644 --- a/src/Mod/Image/Gui/Resources/translations/Image_it.ts +++ b/src/Mod/Image/Gui/Resources/translations/Image_it.ts @@ -1,183 +1,147 @@ - - + + CmdCreateImagePlane - - Image - Immagine + + Image + Immagine - - Create image plane... - Crea un piano immagine... + Create image plane... + Crea un piano immagine... - - Create a planar image in the 3D space - Create a planar image in the 3D space + Create a planar image in the 3D space + Crea un'immagine planare nello spazio 3D - create a planar image in the 3D space - crea un'immagine piana nello spazio 3D + create a planar image in the 3D space + crea un'immagine piana nello spazio 3D - - + + CmdImageOpen - - Image - Immagine + Image + Immagine - - Open... - Apri... + Open... + Apri... - - Open image view - Apri il visualizzatore di immagini + Open image view + Apri il visualizzatore di immagini - - + + ImageGui::GLImageBox - - Undefined type of colour space for image viewing - Tipo di spazio colore indefinito per la visualizzazione delle immagini + + Undefined type of colour space for image viewing + Tipo di spazio colore indefinito per la visualizzazione delle immagini - - Image pixel format - Formato pixel + Image pixel format + Formato pixel - - + + ImageGui::ImageView - - &Fit image - &Adatta immagine + + &Fit image + &Adatta immagine - - Stretch the image to fit the view - Stira l'immagine per adattarsi alla vista + Stretch the image to fit the view + Stira l'immagine per adattarsi alla vista - - &1:1 scale - Scala &1:1 + &1:1 scale + Scala &1:1 - - Display the image at a 1:1 scale - Visualizza l'immagine in scala 1:1 + Display the image at a 1:1 scale + Visualizza l'immagine in scala 1:1 - &Original color - Colori &originali + &Original color + Colori &originali - Display the image with its original color(s) - Visualizza l'immagine con i suoi colori originali + Display the image with its original color(s) + Visualizza l'immagine con i suoi colori originali - &Brightened color - &Colori più luminosi + &Brightened color + &Colori più luminosi - Display the image with brightened color(s) - Visualizza l'immagine con colori più luminosi + Display the image with brightened color(s) + Visualizza l'immagine con colori più luminosi - - Standard - Standard + Standard + Standard - - Ready... - Pronto... + Ready... + Pronto... - - grey - grigio + grey + grigio - - - - - - - - - - - zoom - zoom + zoom + zoom - - - - - - outside image - fuori dall'immagine + outside image + fuori dall'immagine - - + + QObject - Image viewer - Visualizzatore di immagini + Image viewer + Visualizzatore di immagini - - Images (*.png *.xpm *.jpg *.bmp) - Immagini (*.png *.xpm *.jpg *.bmp) + + Images (*.png *.xpm *.jpg *.bmp) + Immagini (*.png *.xpm *.jpg *.bmp) - - - - Choose an image file to open - Seleziona un file immagine da aprire + Choose an image file to open + Seleziona un file immagine da aprire - - - Images - Images + Images + Immagini - - - All files - All files + All files + Tutti i file - - Error open image - Errore durante l'apertura dell'immagine + Error open image + Errore durante l'apertura dell'immagine - - Could not load the choosen image - Impossibile caricare l'immagine scelta + Could not load the choosen image + Impossibile caricare l'immagine scelta - - + + Workbench - - Image - Immagine + + Image + Immagine - + diff --git a/src/Mod/Image/Gui/Resources/translations/Image_ja.qm b/src/Mod/Image/Gui/Resources/translations/Image_ja.qm index 296e270bb..c7f008241 100644 Binary files a/src/Mod/Image/Gui/Resources/translations/Image_ja.qm and b/src/Mod/Image/Gui/Resources/translations/Image_ja.qm differ diff --git a/src/Mod/Image/Gui/Resources/translations/Image_ja.ts b/src/Mod/Image/Gui/Resources/translations/Image_ja.ts index 12b008308..4ba84c36d 100644 --- a/src/Mod/Image/Gui/Resources/translations/Image_ja.ts +++ b/src/Mod/Image/Gui/Resources/translations/Image_ja.ts @@ -1,183 +1,147 @@ - - + + CmdCreateImagePlane - - Image - 画像 + + Image + 画像 - - Create image plane... - Create image plane... + Create image plane... + イメージプレーンを作成します... - - Create a planar image in the 3D space - Create a planar image in the 3D space + Create a planar image in the 3D space + 3D空間に平面画像を作成します。 - create a planar image in the 3D space - create a planar image in the 3D space + create a planar image in the 3D space + create a planar image in the 3D space - - + + CmdImageOpen - - Image - 画像 + Image + 画像 - - Open... - 開く... + Open... + 開く... - - Open image view - 画像ビューを開く + Open image view + 画像ビューを開く - - + + ImageGui::GLImageBox - - Undefined type of colour space for image viewing - 表示中の画像の色空間は未定義です + + Undefined type of colour space for image viewing + 表示中の画像の色空間は未定義です - - Image pixel format - 画像のピクセルフォーマット + Image pixel format + 画像のピクセルフォーマット - - + + ImageGui::ImageView - - &Fit image - 画像に合わせる(&F) + + &Fit image + 画像に合わせる(&F) - - Stretch the image to fit the view - 画像ビューサイズに合わせて画像を拡大 + Stretch the image to fit the view + 画像ビューサイズに合わせて画像を拡大 - - &1:1 scale - 1:1スケール(&1) + &1:1 scale + 1:1スケール(&1) - - Display the image at a 1:1 scale - 1:1のスケールで画像を表示する + Display the image at a 1:1 scale + 1:1のスケールで画像を表示する - &Original color - 元の色 (&O) + &Original color + 元の色 (&O) - Display the image with its original color(s) - 元の色で画像を表示する + Display the image with its original color(s) + 元の色で画像を表示する - &Brightened color - &Brightened color + &Brightened color + &Brightened color - Display the image with brightened color(s) - Display the image with brightened color(s) + Display the image with brightened color(s) + Display the image with brightened color(s) - - Standard - 標準 + Standard + 標準 - - Ready... - Ready... + Ready... + Ready... - - grey - グレー + grey + グレー - - - - - - - - - - - zoom - ズーム + zoom + ズーム - - - - - - outside image - outside image + outside image + outside image - - + + QObject - Image viewer - 画像ビューア + Image viewer + 画像ビューア - - Images (*.png *.xpm *.jpg *.bmp) - Images (*.png *.xpm *.jpg *.bmp) + + Images (*.png *.xpm *.jpg *.bmp) + 画像(*.png, *.xpm, *.JPG, *.BMP) - - - - Choose an image file to open - Choose an image file to open + Choose an image file to open + 開く画像ファイルを選択します。 - - - Images - Images + Images + 画像 - - - All files - All files + All files + すべてのファイル - - Error open image - Error open image + Error open image + 画像が開けません - - Could not load the choosen image - Could not load the choosen image + Could not load the choosen image + 選択されたイメージが読み込めませんでした - - + + Workbench - - Image - 画像 + + Image + 画像 - + diff --git a/src/Mod/Image/Gui/Resources/translations/Image_nl.qm b/src/Mod/Image/Gui/Resources/translations/Image_nl.qm index 3f4a0fe8d..abcf4da7c 100644 Binary files a/src/Mod/Image/Gui/Resources/translations/Image_nl.qm and b/src/Mod/Image/Gui/Resources/translations/Image_nl.qm differ diff --git a/src/Mod/Image/Gui/Resources/translations/Image_nl.ts b/src/Mod/Image/Gui/Resources/translations/Image_nl.ts index bc10f1d83..d4ba78abc 100644 --- a/src/Mod/Image/Gui/Resources/translations/Image_nl.ts +++ b/src/Mod/Image/Gui/Resources/translations/Image_nl.ts @@ -1,183 +1,147 @@ - - + + CmdCreateImagePlane - - Image - Afbeelding + + Image + Afbeelding - - Create image plane... - Maak beeldvlak ... + Create image plane... + Maak beeldvlak ... - - Create a planar image in the 3D space - Create a planar image in the 3D space + Create a planar image in the 3D space + Create a planar image in the 3D space - create a planar image in the 3D space - een vlakke afbeelding maken in de 3D-ruimte + create a planar image in the 3D space + een vlakke afbeelding maken in de 3D-ruimte - - + + CmdImageOpen - - Image - Afbeelding + Image + Afbeelding - - Open... - Openen... + Open... + Openen... - - Open image view - Open afbeelding weergave + Open image view + Open afbeelding weergave - - + + ImageGui::GLImageBox - - Undefined type of colour space for image viewing - Ongedefinieerd type kleurruimte om beelden te bekijken + + Undefined type of colour space for image viewing + Ongedefinieerd type kleurruimte om beelden te bekijken - - Image pixel format - Pixel-formaat + Image pixel format + Pixel-formaat - - + + ImageGui::ImageView - - &Fit image - &Passend + + &Fit image + &Passend - - Stretch the image to fit the view - Uitrekken tot grootte weergave venster + Stretch the image to fit the view + Uitrekken tot grootte weergave venster - - &1:1 scale - Schaal &1:1 + &1:1 scale + Schaal &1:1 - - Display the image at a 1:1 scale - Toon de afbeelding op schaal van 1:1 + Display the image at a 1:1 scale + Toon de afbeelding op schaal van 1:1 - &Original color - &Oorspronkelijke kleur + &Original color + &Oorspronkelijke kleur - Display the image with its original color(s) - Toon de afbeelding met de oorspronkelijke kleur(en) + Display the image with its original color(s) + Toon de afbeelding met de oorspronkelijke kleur(en) - &Brightened color - &Verhelder kleur + &Brightened color + &Verhelder kleur - Display the image with brightened color(s) - Toon de afbeelding met verhelderde kleur(en) + Display the image with brightened color(s) + Toon de afbeelding met verhelderde kleur(en) - - Standard - Standaard + Standard + Standaard - - Ready... - Gereed... + Ready... + Gereed... - - grey - grijs + grey + grijs - - - - - - - - - - - zoom - zoom + zoom + zoom - - - - - - outside image - buiten afbeelding + outside image + buiten afbeelding - - + + QObject - Image viewer - Afbeeldingenviewer + Image viewer + Afbeeldingenviewer - - Images (*.png *.xpm *.jpg *.bmp) - Afbeeldingen(*.png *.xpm *.jpg *.bmp) + + Images (*.png *.xpm *.jpg *.bmp) + Afbeeldingen(*.png *.xpm *.jpg *.bmp) - - - - Choose an image file to open - Kies een te openen afbeeldingsbestand + Choose an image file to open + Kies een te openen afbeeldingsbestand - - - Images - Images + Images + Afbeeldingen - - - All files - All files + All files + Alle bestanden - - Error open image - Fout geopende afbeelding + Error open image + Fout geopende afbeelding - - Could not load the choosen image - Kon geselecteerde afbeelding niet laden + Could not load the choosen image + Kon geselecteerde afbeelding niet laden - - + + Workbench - - Image - Afbeelding + + Image + Afbeelding - + diff --git a/src/Mod/Image/Gui/Resources/translations/Image_no.ts b/src/Mod/Image/Gui/Resources/translations/Image_no.ts index e5c234f54..69c41d300 100644 --- a/src/Mod/Image/Gui/Resources/translations/Image_no.ts +++ b/src/Mod/Image/Gui/Resources/translations/Image_no.ts @@ -1,183 +1,147 @@ - - + + CmdCreateImagePlane - - Image - Bilde + + Image + Bilde - - Create image plane... - Opprett billedplan... + Create image plane... + Opprett billedplan... - - Create a planar image in the 3D space - Create a planar image in the 3D space + Create a planar image in the 3D space + Create a planar image in the 3D space - create a planar image in the 3D space - lag et plant bilde i 3D-område + create a planar image in the 3D space + lag et plant bilde i 3D-område - - + + CmdImageOpen - - Image - Bilde + Image + Bilde - - Open... - Åpne... + Open... + Åpne... - - Open image view - Åpne bildevisning + Open image view + Åpne bildevisning - - + + ImageGui::GLImageBox - - Undefined type of colour space for image viewing - Udefinert type fargerom for bildevisning + + Undefined type of colour space for image viewing + Udefinert type fargerom for bildevisning - - Image pixel format - Bildepikselformat + Image pixel format + Bildepikselformat - - + + ImageGui::ImageView - - &Fit image - &Tilpass bildet + + &Fit image + &Tilpass bildet - - Stretch the image to fit the view - Strekk bildet slik at det passer visningen + Stretch the image to fit the view + Strekk bildet slik at det passer visningen - - &1:1 scale - &1:1 skala + &1:1 scale + &1:1 skala - - Display the image at a 1:1 scale - Vis bildet i 1:1 skala + Display the image at a 1:1 scale + Vis bildet i 1:1 skala - &Original color - &Opprinnelig farge + &Original color + &Opprinnelig farge - Display the image with its original color(s) - Vis bildet med sine opprinnelige farger + Display the image with its original color(s) + Vis bildet med sine opprinnelige farger - &Brightened color - &Lysnet farge + &Brightened color + &Lysnet farge - Display the image with brightened color(s) - Vis bildet med lysnet farge + Display the image with brightened color(s) + Vis bildet med lysnet farge - - Standard - Standard + Standard + Standard - - Ready... - Klar... + Ready... + Klar... - - grey - grå + grey + grå - - - - - - - - - - - zoom - zoom + zoom + zoom - - - - - - outside image - utenfor bildet + outside image + utenfor bildet - - + + QObject - Image viewer - Bildeviser + Image viewer + Bildeviser - - Images (*.png *.xpm *.jpg *.bmp) - Bilder (*.png *.xpm *.jpg *.bmp) + + Images (*.png *.xpm *.jpg *.bmp) + Bilder (*.png *.xpm *.jpg *.bmp) - - - - Choose an image file to open - Velg en bildefil å åpne + Choose an image file to open + Velg en bildefil å åpne - - - Images - Images + Images + Images - - - All files - All files + All files + All files - - Error open image - Feil ved bilde åpning + Error open image + Feil ved bilde åpning - - Could not load the choosen image - Kunne ikke laste det valgte bildet + Could not load the choosen image + Kunne ikke laste det valgte bildet - - + + Workbench - - Image - Bilde + + Image + Bilde - + diff --git a/src/Mod/Image/Gui/Resources/translations/Image_pl.ts b/src/Mod/Image/Gui/Resources/translations/Image_pl.ts index 55e93297e..e47e77444 100644 --- a/src/Mod/Image/Gui/Resources/translations/Image_pl.ts +++ b/src/Mod/Image/Gui/Resources/translations/Image_pl.ts @@ -1,183 +1,147 @@ - - + + CmdCreateImagePlane - - Image - Obraz + + Image + Obraz - - Create image plane... - Utwórz płaszczyznę obrazu... + Create image plane... + Utwórz płaszczyznę obrazu... - - Create a planar image in the 3D space - Utwórz płaski obraz w przestrzeni 3D + Create a planar image in the 3D space + Utwórz płaski obraz w przestrzeni 3D - create a planar image in the 3D space - Utwórz płaski obraz w przestrzeni 3D + create a planar image in the 3D space + Utwórz płaski obraz w przestrzeni 3D - - + + CmdImageOpen - - Image - Obraz + Image + Obraz - - Open... - Otwórz... + Open... + Otwórz... - - Open image view - Otwórz widok obrazu + Open image view + Otwórz widok obrazu - - + + ImageGui::GLImageBox - - Undefined type of colour space for image viewing - Niezdefiniowana przestrzeń kolorów do podglądu obrazu + + Undefined type of colour space for image viewing + Niezdefiniowana przestrzeń kolorów do podglądu obrazu - - Image pixel format - Format piksela obrazu + Image pixel format + Format piksela obrazu - - + + ImageGui::ImageView - - &Fit image - &Dopasuj obraz + + &Fit image + &Dopasuj obraz - - Stretch the image to fit the view - Rozciąga obraz, aby dopasować do widoku + Stretch the image to fit the view + Rozciąga obraz, aby dopasować do widoku - - &1:1 scale - & skala 1: 1 + &1:1 scale + & skala 1: 1 - - Display the image at a 1:1 scale - Wyświetlanie obrazu w skali 1:1 + Display the image at a 1:1 scale + Wyświetlanie obrazu w skali 1:1 - &Original color - & Kolor oryginalny + &Original color + & Kolor oryginalny - Display the image with its original color(s) - Wyświetlanie obrazu w oryginalnym kolorze (ach) + Display the image with its original color(s) + Wyświetlanie obrazu w oryginalnym kolorze (ach) - &Brightened color - &Rozjaśniony kolor + &Brightened color + &Rozjaśniony kolor - Display the image with brightened color(s) - Wyświetlaj obraz w rozjaśnionym kolorze(rach) + Display the image with brightened color(s) + Wyświetlaj obraz w rozjaśnionym kolorze(rach) - - Standard - Standard + Standard + Standard - - Ready... - Gotowe ... + Ready... + Gotowe ... - - grey - szary + grey + szary - - - - - - - - - - - zoom - Powiększenie + zoom + Powiększenie - - - - - - outside image - poza obrazem + outside image + poza obrazem - - + + QObject - Image viewer - Przeglądarka obrazów + Image viewer + Przeglądarka obrazów - - Images (*.png *.xpm *.jpg *.bmp) - Format (*. png *. xpm *. jpg *. bmp) + + Images (*.png *.xpm *.jpg *.bmp) + Format (*. png *. xpm *. jpg *. bmp) - - - - Choose an image file to open - Wybierz plik obrazu, aby otworzyć + Choose an image file to open + Wybierz plik obrazu, aby otworzyć - - - Images - Obrazy + Images + Obrazy - - - All files - Wszystkie pliki + All files + Wszystkie pliki - - Error open image - Błąd otwarcia obrazu + Error open image + Błąd otwarcia obrazu - - Could not load the choosen image - Nie można załadować wybranego obrazu + Could not load the choosen image + Nie można załadować wybranego obrazu - - + + Workbench - - Image - Obraz + + Image + Obraz - + diff --git a/src/Mod/Image/Gui/Resources/translations/Image_pt.qm b/src/Mod/Image/Gui/Resources/translations/Image_pt-BR.qm similarity index 100% rename from src/Mod/Image/Gui/Resources/translations/Image_pt.qm rename to src/Mod/Image/Gui/Resources/translations/Image_pt-BR.qm diff --git a/src/Mod/Image/Gui/Resources/translations/Image_pt-BR.ts b/src/Mod/Image/Gui/Resources/translations/Image_pt-BR.ts new file mode 100644 index 000000000..f8a8b4e41 --- /dev/null +++ b/src/Mod/Image/Gui/Resources/translations/Image_pt-BR.ts @@ -0,0 +1,147 @@ + + + + + CmdCreateImagePlane + + + Image + Imagem + + + Create image plane... + Criar um plano de imagem... + + + Create a planar image in the 3D space + Criar uma imagem planar no espaço 3D + + + create a planar image in the 3D space + criar uma imagem planar no espaço 3D + + + + CmdImageOpen + + Image + Imagem + + + Open... + Abrir... + + + Open image view + Abrir uma imagem + + + + ImageGui::GLImageBox + + + Undefined type of colour space for image viewing + Tipo de espaço de cor indefinido para visualização de imagens + + + Image pixel format + Formato de pixel de imagem + + + + ImageGui::ImageView + + + &Fit image + &Ajustar imagem + + + Stretch the image to fit the view + Esticar a imagem para ajustar à janela + + + &1:1 scale + Escala &1:1 + + + Display the image at a 1:1 scale + Exibir a imagem em escala 1:1 + + + &Original color + Cor &original + + + Display the image with its original color(s) + Exibir a imagem com as suas cores originais + + + &Brightened color + Cor &amplificada + + + Display the image with brightened color(s) + Exibir a imagem com cores mais fortes + + + Standard + Padrão + + + Ready... + Pronto... + + + grey + cinza + + + zoom + Ampliar + + + outside image + imagem exterior + + + + QObject + + Image viewer + Visualizador de imagens + + + + Images (*.png *.xpm *.jpg *.bmp) + Imagens (*.png *.xpm *.jpg *.bmp) + + + Choose an image file to open + Escolha um arquivo de imagem para abrir + + + Images + Imagens + + + All files + Todos os arquivos + + + Error open image + Erro ao abrir a imagem + + + Could not load the choosen image + Não foi possível carregar a imagem escolhida + + + + Workbench + + + Image + Imagem + + + diff --git a/src/Mod/Image/Gui/Resources/translations/Image_pt.ts b/src/Mod/Image/Gui/Resources/translations/Image_pt.ts deleted file mode 100644 index 776fe75e3..000000000 --- a/src/Mod/Image/Gui/Resources/translations/Image_pt.ts +++ /dev/null @@ -1,183 +0,0 @@ - - - - - CmdCreateImagePlane - - - Image - Imagem - - - - Create image plane... - Criar um plano de imagem... - - - - Create a planar image in the 3D space - Criar uma imagem planar no espaço 3D - - - create a planar image in the 3D space - criar uma imagem planar no espaço 3D - - - - CmdImageOpen - - - Image - Imagem - - - - Open... - Abrir... - - - - Open image view - Abrir uma imagem - - - - ImageGui::GLImageBox - - - Undefined type of colour space for image viewing - Tipo de espaço de cor indefinido para visualização de imagens - - - - Image pixel format - Formato de pixel de imagem - - - - ImageGui::ImageView - - - &Fit image - &Ajustar imagem - - - - Stretch the image to fit the view - Esticar a imagem para ajustar à janela - - - - &1:1 scale - Escala &1:1 - - - - Display the image at a 1:1 scale - Exibir a imagem em escala 1:1 - - - &Original color - Cor &original - - - Display the image with its original color(s) - Exibir a imagem com as suas cores originais - - - &Brightened color - Cor &amplificada - - - Display the image with brightened color(s) - Exibir a imagem com cores mais fortes - - - - Standard - Padrão - - - - Ready... - Pronto... - - - - grey - cinza - - - - - - - - - - - - - zoom - Ampliar - - - - - - - - outside image - imagem exterior - - - - QObject - - Image viewer - Visualizador de imagens - - - - Images (*.png *.xpm *.jpg *.bmp) - Imagens (*.png *.xpm *.jpg *.bmp) - - - - - - Choose an image file to open - Escolha um arquivo de imagem para abrir - - - - - Images - Imagens - - - - - All files - Todos os arquivos - - - - Error open image - Erro ao abrir a imagem - - - - Could not load the choosen image - Não foi possível carregar a imagem escolhida - - - - Workbench - - - Image - Imagem - - - diff --git a/src/Mod/Image/Gui/Resources/translations/Image_ro.qm b/src/Mod/Image/Gui/Resources/translations/Image_ro.qm new file mode 100644 index 000000000..698f784af Binary files /dev/null and b/src/Mod/Image/Gui/Resources/translations/Image_ro.qm differ diff --git a/src/Mod/Image/Gui/Resources/translations/Image_ro.ts b/src/Mod/Image/Gui/Resources/translations/Image_ro.ts new file mode 100644 index 000000000..2efa07e68 --- /dev/null +++ b/src/Mod/Image/Gui/Resources/translations/Image_ro.ts @@ -0,0 +1,147 @@ + + + + + CmdCreateImagePlane + + + Image + Imagine + + + Create image plane... + Create image plane... + + + Create a planar image in the 3D space + Create a planar image in the 3D space + + + create a planar image in the 3D space + create a planar image in the 3D space + + + + CmdImageOpen + + Image + Imagine + + + Open... + Deschide... + + + Open image view + Afișează imaginea + + + + ImageGui::GLImageBox + + + Undefined type of colour space for image viewing + Tip de spațiu de culoare nedefinit pentru vizualizarea imaginii + + + Image pixel format + Formatul pixelilor pentru imagine + + + + ImageGui::ImageView + + + &Fit image + Potrivește imaginea întreagă în fereastră + + + Stretch the image to fit the view + Deformează imaginea pentru a umple fereastra + + + &1:1 scale + Scara &1:1 + + + Display the image at a 1:1 scale + Afișează imaginea la scara 1:1 + + + &Original color + Culoarea originală + + + Display the image with its original color(s) + Afișează imaginea în culorile originale + + + &Brightened color + Mai deschis + + + Display the image with brightened color(s) + Afișează imaginea în culori mai deschise + + + Standard + Standard + + + Ready... + Gata... + + + grey + gri + + + zoom + zoom + + + outside image + în afara imaginii + + + + QObject + + Image viewer + Afișare imagini + + + + Images (*.png *.xpm *.jpg *.bmp) + Imagini (*.png *.XPM *.jpg *.bmp) + + + Choose an image file to open + Alegeți un fișier imagine pentru deschidere + + + Images + Images + + + All files + All files + + + Error open image + Error open image + + + Could not load the choosen image + Could not load the choosen image + + + + Workbench + + + Image + Imagine + + + diff --git a/src/Mod/Image/Gui/Resources/translations/Image_ru.qm b/src/Mod/Image/Gui/Resources/translations/Image_ru.qm index 8b4ccc860..f882a3165 100644 Binary files a/src/Mod/Image/Gui/Resources/translations/Image_ru.qm and b/src/Mod/Image/Gui/Resources/translations/Image_ru.qm differ diff --git a/src/Mod/Image/Gui/Resources/translations/Image_ru.ts b/src/Mod/Image/Gui/Resources/translations/Image_ru.ts index 86d07052e..534303965 100644 --- a/src/Mod/Image/Gui/Resources/translations/Image_ru.ts +++ b/src/Mod/Image/Gui/Resources/translations/Image_ru.ts @@ -1,183 +1,147 @@ - - + + CmdCreateImagePlane - - Image - Изображение + + Image + Изображение - - Create image plane... - Создать плоскость изображения ... + Create image plane... + Создать плоскость изображения ... - - Create a planar image in the 3D space - Create a planar image in the 3D space + Create a planar image in the 3D space + Создать двухмерное изображение в 3D-пространстве - create a planar image in the 3D space - Cоздание плоского изображения в 3D пространстве + create a planar image in the 3D space + Cоздание плоского изображения в 3D пространстве - - + + CmdImageOpen - - Image - Изображение + Image + Изображение - - Open... - Открыть... + Open... + Открыть... - - Open image view - Открыть изображение + Open image view + Открыть изображение - - + + ImageGui::GLImageBox - - Undefined type of colour space for image viewing - Неопределенный тип цвета пространства для просмотра изображений + + Undefined type of colour space for image viewing + Неопределенный тип цвета пространства для просмотра изображений - - Image pixel format - Растровый формат изображения + Image pixel format + Растровый формат изображения - - + + ImageGui::ImageView - - &Fit image - & Растянуть изображения + + &Fit image + & Растянуть изображения - - Stretch the image to fit the view - Растянуть изображение по размеру вида + Stretch the image to fit the view + Растянуть изображение по размеру вида - - &1:1 scale - & масштаб 1:1 + &1:1 scale + & масштаб 1:1 - - Display the image at a 1:1 scale - Отображает изображение в масштабе 1: 1 + Display the image at a 1:1 scale + Отображает изображение в масштабе 1: 1 - &Original color - &Исходный цвета + &Original color + &Исходный цвета - Display the image with its original color(s) - Изображение в исходных цветах + Display the image with its original color(s) + Изображение в исходных цветах - &Brightened color - &Оживить цвет + &Brightened color + &Оживить цвет - Display the image with brightened color(s) - Показать изображение в ярком цвете(ах) + Display the image with brightened color(s) + Показать изображение в ярком цвете(ах) - - Standard - Стандарт + Standard + Стандарт - - Ready... - Готово... + Ready... + Готово... - - grey - Серый + grey + Серый - - - - - - - - - - - zoom - Масштаб + zoom + Масштаб - - - - - - outside image - за пределами изображения + outside image + за пределами изображения - - + + QObject - Image viewer - Просмотр изображения + Image viewer + Просмотр изображения - - Images (*.png *.xpm *.jpg *.bmp) - Изображения (*.png *.xpm *.jpg *.bmp) + + Images (*.png *.xpm *.jpg *.bmp) + Изображения (*.png *.xpm *.jpg *.bmp) - - - - Choose an image file to open - Выберите файл изображения, чтобы открыть + Choose an image file to open + Выберите файл изображения, чтобы открыть - - - Images - Images + Images + Изображения - - - All files - All files + All files + Все файлы - - Error open image - Ошибка при открытии изображения + Error open image + Ошибка при открытии изображения - - Could not load the choosen image - Не удалось загрузить выбранное изображение + Could not load the choosen image + Не удалось загрузить выбранное изображение - - + + Workbench - - Image - Изображение + + Image + Изображение - + diff --git a/src/Mod/Image/Gui/Resources/translations/Image_se.qm b/src/Mod/Image/Gui/Resources/translations/Image_se.qm deleted file mode 100644 index 2e457761d..000000000 Binary files a/src/Mod/Image/Gui/Resources/translations/Image_se.qm and /dev/null differ diff --git a/src/Mod/Image/Gui/Resources/translations/Image_se.ts b/src/Mod/Image/Gui/Resources/translations/Image_se.ts deleted file mode 100644 index a7bc174da..000000000 --- a/src/Mod/Image/Gui/Resources/translations/Image_se.ts +++ /dev/null @@ -1,183 +0,0 @@ - - - - - CmdCreateImagePlane - - - Image - Bild - - - - Create image plane... - Skapa bildplan ... - - - - Create a planar image in the 3D space - Create a planar image in the 3D space - - - create a planar image in the 3D space - skapa en plan bild i 3D-rymden - - - - CmdImageOpen - - - Image - Bild - - - - Open... - Öppna... - - - - Open image view - Öppna bildvy - - - - ImageGui::GLImageBox - - - Undefined type of colour space for image viewing - Odefinierad färgrymd för bildvisning - - - - Image pixel format - Bildens pixelformat - - - - ImageGui::ImageView - - - &Fit image - An&passa bild - - - - Stretch the image to fit the view - Skala bilden till vyn - - - - &1:1 scale - &1:1 Skala - - - - Display the image at a 1:1 scale - Visa bilden i 1:1 skala - - - &Original color - &Originalfärg - - - Display the image with its original color(s) - Visa bilden med dess originalfärger - - - &Brightened color - &Ljusa färger - - - Display the image with brightened color(s) - Visa bilden med ljusare färger - - - - Standard - Standard - - - - Ready... - Klar... - - - - grey - Grå - - - - - - - - - - - - - zoom - zoom - - - - - - - - outside image - Utanför bild - - - - QObject - - Image viewer - Bildvisare - - - - Images (*.png *.xpm *.jpg *.bmp) - Bildformat (*.png *.xpm *.jpg *.bmp) - - - - - - Choose an image file to open - Välj en bildfil att öppna - - - - - Images - Images - - - - - All files - All files - - - - Error open image - Fel vid öppning av bilden - - - - Could not load the choosen image - Kunde inte ladda den valda bilden - - - - Workbench - - - Image - Bild - - - diff --git a/src/Mod/Image/Gui/Resources/translations/Image_sk.qm b/src/Mod/Image/Gui/Resources/translations/Image_sk.qm new file mode 100644 index 000000000..f315e5bd4 Binary files /dev/null and b/src/Mod/Image/Gui/Resources/translations/Image_sk.qm differ diff --git a/src/Mod/Image/Gui/Resources/translations/Image_sk.ts b/src/Mod/Image/Gui/Resources/translations/Image_sk.ts new file mode 100644 index 000000000..509f27a66 --- /dev/null +++ b/src/Mod/Image/Gui/Resources/translations/Image_sk.ts @@ -0,0 +1,147 @@ + + + + + CmdCreateImagePlane + + + Image + Obrázok + + + Create image plane... + Vytvoriť rovinu obrázka... + + + Create a planar image in the 3D space + vytvoriť planárny obraz v 3D priestore + + + create a planar image in the 3D space + vytvoriť planárny obrázok v 3D priestore + + + + CmdImageOpen + + Image + Obrázok + + + Open... + Otvoriť... + + + Open image view + Otvoriť prehliadanie obrázku + + + + ImageGui::GLImageBox + + + Undefined type of colour space for image viewing + Nedefinovaný typ farebného systému pre prehliadanie obrázku + + + Image pixel format + Pixel formát obrázku + + + + ImageGui::ImageView + + + &Fit image + &Celý obraz + + + Stretch the image to fit the view + Roztiahnút obrázok do pohľadu + + + &1:1 scale + &Mierka 1:1 + + + Display the image at a 1:1 scale + Zobratiť obrázok v mierke 1:1 + + + &Original color + &Originálne farby + + + Display the image with its original color(s) + Zobraziť obrázok v jeho originálnych farbách + + + &Brightened color + &Jasnejšie farby + + + Display the image with brightened color(s) + Zobraziť obrázok v jasnejších farbách + + + Standard + Štandardné + + + Ready... + Hotovo... + + + grey + šedá + + + zoom + Lupa + + + outside image + mimo obraz + + + + QObject + + Image viewer + Prehliadač obrázkov + + + + Images (*.png *.xpm *.jpg *.bmp) + Obrázky (*. png *. XPM *. jpg *. bmp) + + + Choose an image file to open + Vyberte súbor s obrázkom na otvorenie + + + Images + Obrázky + + + All files + Všetky súbory + + + Error open image + Chyba otvoriť obrázok + + + Could not load the choosen image + Nepodarilo sa načítať obrázok + + + + Workbench + + + Image + Obrázok + + + diff --git a/src/Mod/Image/Gui/Resources/translations/Image_sv-SE.qm b/src/Mod/Image/Gui/Resources/translations/Image_sv-SE.qm new file mode 100644 index 000000000..97441108b Binary files /dev/null and b/src/Mod/Image/Gui/Resources/translations/Image_sv-SE.qm differ diff --git a/src/Mod/Image/Gui/Resources/translations/Image_sv-SE.ts b/src/Mod/Image/Gui/Resources/translations/Image_sv-SE.ts new file mode 100644 index 000000000..50c6764f9 --- /dev/null +++ b/src/Mod/Image/Gui/Resources/translations/Image_sv-SE.ts @@ -0,0 +1,147 @@ + + + + + CmdCreateImagePlane + + + Image + Bild + + + Create image plane... + Skapa bildplan ... + + + Create a planar image in the 3D space + Skapa en plan bild i 3D-rymden + + + create a planar image in the 3D space + skapa en plan bild i 3D-rymden + + + + CmdImageOpen + + Image + Bild + + + Open... + Öppna... + + + Open image view + Öppna bildvy + + + + ImageGui::GLImageBox + + + Undefined type of colour space for image viewing + Odefinierad färgrymd för bildvisning + + + Image pixel format + Bildens pixelformat + + + + ImageGui::ImageView + + + &Fit image + An&passa bild + + + Stretch the image to fit the view + Skala bilden till vyn + + + &1:1 scale + &1:1 Skala + + + Display the image at a 1:1 scale + Visa bilden i 1:1 skala + + + &Original color + &Originalfärg + + + Display the image with its original color(s) + Visa bilden med dess originalfärger + + + &Brightened color + &Ljusa färger + + + Display the image with brightened color(s) + Visa bilden med ljusare färger + + + Standard + Standard + + + Ready... + Klar... + + + grey + Grå + + + zoom + zoom + + + outside image + Utanför bild + + + + QObject + + Image viewer + Bildvisare + + + + Images (*.png *.xpm *.jpg *.bmp) + Bildformat (*.png *.xpm *.jpg *.bmp) + + + Choose an image file to open + Välj en bildfil att öppna + + + Images + Bilder + + + All files + Alla filer + + + Error open image + Fel vid öppning av bilden + + + Could not load the choosen image + Kunde inte ladda den valda bilden + + + + Workbench + + + Image + Bild + + + diff --git a/src/Mod/Image/Gui/Resources/translations/Image_tr.qm b/src/Mod/Image/Gui/Resources/translations/Image_tr.qm new file mode 100644 index 000000000..c1138c9fa Binary files /dev/null and b/src/Mod/Image/Gui/Resources/translations/Image_tr.qm differ diff --git a/src/Mod/Image/Gui/Resources/translations/Image_tr.ts b/src/Mod/Image/Gui/Resources/translations/Image_tr.ts new file mode 100644 index 000000000..bbc09af26 --- /dev/null +++ b/src/Mod/Image/Gui/Resources/translations/Image_tr.ts @@ -0,0 +1,147 @@ + + + + + CmdCreateImagePlane + + + Image + Görüntü + + + Create image plane... + Görüntü düzlemini oluştur... + + + Create a planar image in the 3D space + 3B uzayda düzlemsel bir resim oluştur + + + create a planar image in the 3D space + 3B uzayda düzlemsel bir resim oluştur + + + + CmdImageOpen + + Image + Görüntü + + + Open... + Aç... + + + Open image view + Resim görünümünü aç + + + + ImageGui::GLImageBox + + + Undefined type of colour space for image viewing + Resmi görüntülemek için tanılanamayan bir renk uzayı seçili + + + Image pixel format + Görüntü karecik (piksel) biçimi + + + + ImageGui::ImageView + + + &Fit image + &Resmi sığdır + + + Stretch the image to fit the view + Resmi, görünüme sığacak şekilde uzat + + + &1:1 scale + &1:1 oran + + + Display the image at a 1:1 scale + Birebir oranla resmi görüntüle + + + &Original color + &Öz renk + + + Display the image with its original color(s) + Resmi kendi öz renk değer(ler)iyle görüntüle + + + &Brightened color + &Aydınlatılmış renk + + + Display the image with brightened color(s) + Resmi aydınlatılmış renk(ler) ile görüntüle + + + Standard + Standart + + + Ready... + Hazır... + + + grey + gri + + + zoom + yakınlaş + + + outside image + dış görünüm + + + + QObject + + Image viewer + Resim görüntüleyeci + + + + Images (*.png *.xpm *.jpg *.bmp) + Resimler (*.png *.xpm *.jpg *.bmp) + + + Choose an image file to open + Açmak için bir görüntü dosyası seçin + + + Images + Resimler + + + All files + Tüm dosyalar + + + Error open image + Resim açarken hata + + + Could not load the choosen image + Seçilen resim yüklenemedi + + + + Workbench + + + Image + Görüntü + + + diff --git a/src/Mod/Image/Gui/Resources/translations/Image_uk.qm b/src/Mod/Image/Gui/Resources/translations/Image_uk.qm index e5898aa37..e37ae5965 100644 Binary files a/src/Mod/Image/Gui/Resources/translations/Image_uk.qm and b/src/Mod/Image/Gui/Resources/translations/Image_uk.qm differ diff --git a/src/Mod/Image/Gui/Resources/translations/Image_uk.ts b/src/Mod/Image/Gui/Resources/translations/Image_uk.ts index 4be9b5665..17aeb4f62 100644 --- a/src/Mod/Image/Gui/Resources/translations/Image_uk.ts +++ b/src/Mod/Image/Gui/Resources/translations/Image_uk.ts @@ -1,183 +1,147 @@ - - + + CmdCreateImagePlane - - Image - Зображення + + Image + Зображення - - Create image plane... - Створити площину зображення... + Create image plane... + Створити площину зображення... - - Create a planar image in the 3D space - Create a planar image in the 3D space + Create a planar image in the 3D space + Створити плоске зображення у 3D-просторі - create a planar image in the 3D space - Створення плоского зображення в 3D просторі + create a planar image in the 3D space + Створення плоского зображення в 3D просторі - - + + CmdImageOpen - - Image - Зображення + Image + Зображення - - Open... - Відкрити... + Open... + Відкрити... - - Open image view - Відкрити зображення + Open image view + Відкрити зображення - - + + ImageGui::GLImageBox - - Undefined type of colour space for image viewing - Невизначений тип кольору простору для перегляду зображень + + Undefined type of colour space for image viewing + Невизначений тип кольору простору для перегляду зображень - - Image pixel format - Формат пікселя зображення + Image pixel format + Формат пікселя зображення - - + + ImageGui::ImageView - - &Fit image - &Вмістити зображення + + &Fit image + &Вмістити зображення - - Stretch the image to fit the view - Розтягнути зображення до розмірів подання + Stretch the image to fit the view + Розтягнути зображення до розмірів виду - - &1:1 scale - Масштаб &1:1 + &1:1 scale + Масштаб &1:1 - - Display the image at a 1:1 scale - Показати зображення в масштабі 1:1 + Display the image at a 1:1 scale + Показати зображення в масштабі 1:1 - &Original color - &Оригінальний колір + &Original color + &Оригінальний колір - Display the image with its original color(s) - Відтворення зображення в оригінальних кольорах + Display the image with its original color(s) + Відтворення зображення в оригінальних кольорах - &Brightened color - &Підвищити яскравість кольору + &Brightened color + &Підвищити яскравість кольору - Display the image with brightened color(s) - Показувати зображення з підвищеною яскравістю кольорів + Display the image with brightened color(s) + Показувати зображення з підвищеною яскравістю кольорів - - Standard - Стандартно + Standard + Стандартно - - Ready... - Готово... + Ready... + Готово... - - grey - сірий + grey + сірий - - - - - - - - - - - zoom - масштаб + zoom + масштаб - - - - - - outside image - за межами зображення + outside image + зовнішнє зображення - - + + QObject - Image viewer - Перегляд зображень + Image viewer + Перегляд зображень - - Images (*.png *.xpm *.jpg *.bmp) - Зображення (*.png *.xpm *.jpg *.bmp) + + Images (*.png *.xpm *.jpg *.bmp) + Зображення (*.png *.xpm *.jpg *.bmp) - - - - Choose an image file to open - Оберіть файл зображення для відкриття + Choose an image file to open + Оберіть файл зображення для відкриття - - - Images - Images + Images + Зображення - - - All files - All files + All files + Всі файли - - Error open image - Помилка відкриття зображення + Error open image + Помилка відкриття зображення - - Could not load the choosen image - Не вдалось завантажити обране зображення + Could not load the choosen image + Не вдалось завантажити обране зображення - - + + Workbench - - Image - Зображення + + Image + Зображення - + diff --git a/src/Mod/Image/Gui/Resources/translations/Image_zh-CN.qm b/src/Mod/Image/Gui/Resources/translations/Image_zh-CN.qm new file mode 100644 index 000000000..120a27c0d Binary files /dev/null and b/src/Mod/Image/Gui/Resources/translations/Image_zh-CN.qm differ diff --git a/src/Mod/Image/Gui/Resources/translations/Image_zh-CN.ts b/src/Mod/Image/Gui/Resources/translations/Image_zh-CN.ts new file mode 100644 index 000000000..9725c0103 --- /dev/null +++ b/src/Mod/Image/Gui/Resources/translations/Image_zh-CN.ts @@ -0,0 +1,147 @@ + + + + + CmdCreateImagePlane + + + Image + 图像 + + + Create image plane... + 创建平面图像... + + + Create a planar image in the 3D space + 在三维空间中创建平面图像 + + + create a planar image in the 3D space + 三维空间中创建一个平面图像 + + + + CmdImageOpen + + Image + 图像 + + + Open... + 打开... + + + Open image view + 打开图像视图 + + + + ImageGui::GLImageBox + + + Undefined type of colour space for image viewing + 图片视图的色彩模式未定义 + + + Image pixel format + 图像像素格式 + + + + ImageGui::ImageView + + + &Fit image + 适应图像尺寸(&F) + + + Stretch the image to fit the view + 拉伸图像以适应视图 + + + &1:1 scale + &1:1 缩放 + + + Display the image at a 1:1 scale + 按1:1比例显示图像 + + + &Original color + 原始色(&O) + + + Display the image with its original color(s) + 以原始色显示图像 + + + &Brightened color + 高亮色(&B) + + + Display the image with brightened color(s) + 以高亮色显示图像 + + + Standard + 标准 + + + Ready... + 就绪... + + + grey + 灰色 + + + zoom + 缩放 + + + outside image + 图像外部 + + + + QObject + + Image viewer + 图像浏览器 + + + + Images (*.png *.xpm *.jpg *.bmp) + 图像(*.png *.xpm *.jpg *.bmp) + + + Choose an image file to open + 选择一个图像文件打开 + + + Images + 图像 + + + All files + 所有文件 + + + Error open image + 打开图像错误 + + + Could not load the choosen image + 无法加载选择的图像 + + + + Workbench + + + Image + 图像 + + + diff --git a/src/Mod/Image/Gui/Resources/translations/Image_zh-TW.qm b/src/Mod/Image/Gui/Resources/translations/Image_zh-TW.qm new file mode 100644 index 000000000..f570d3560 Binary files /dev/null and b/src/Mod/Image/Gui/Resources/translations/Image_zh-TW.qm differ diff --git a/src/Mod/Image/Gui/Resources/translations/Image_zh-TW.ts b/src/Mod/Image/Gui/Resources/translations/Image_zh-TW.ts new file mode 100644 index 000000000..8bae9344c --- /dev/null +++ b/src/Mod/Image/Gui/Resources/translations/Image_zh-TW.ts @@ -0,0 +1,147 @@ + + + + + CmdCreateImagePlane + + + Image + 影像 + + + Create image plane... + 建立影像平面 + + + Create a planar image in the 3D space + 於3D空間建立平面影像 + + + create a planar image in the 3D space + create a planar image in the 3D space + + + + CmdImageOpen + + Image + 影像 + + + Open... + 開啟 + + + Open image view + 打開影像檢視 + + + + ImageGui::GLImageBox + + + Undefined type of colour space for image viewing + 未定義色彩供圖片使用 + + + Image pixel format + 影像像素格式 + + + + ImageGui::ImageView + + + &Fit image + &符合圖片尺寸 + + + Stretch the image to fit the view + 延伸影像符合頁面大小 + + + &1:1 scale + &1:1比例 + + + Display the image at a 1:1 scale + 在1:1的比例顯示影像 + + + &Original color + 原始顏色 + + + Display the image with its original color(s) + Display the image with its original color(s) + + + &Brightened color + &Brightened color + + + Display the image with brightened color(s) + Display the image with brightened color(s) + + + Standard + 標準 + + + Ready... + 準備... + + + grey + 灰色 + + + zoom + 縮放 + + + outside image + 外部影像 + + + + QObject + + Image viewer + 影像檢視器 + + + + Images (*.png *.xpm *.jpg *.bmp) + 影像(*.PNG *.JPG *.XPM *.BMP) + + + Choose an image file to open + 選擇要打開的影像檔 + + + Images + 影像 + + + All files + 所有檔案 + + + Error open image + 開啟影像錯誤 + + + Could not load the choosen image + 無法載入選擇影像 + + + + Workbench + + + Image + 影像 + + + diff --git a/src/Mod/Image/Gui/Resources/translations/Image_zh.qm b/src/Mod/Image/Gui/Resources/translations/Image_zh.qm deleted file mode 100644 index 41fe08455..000000000 Binary files a/src/Mod/Image/Gui/Resources/translations/Image_zh.qm and /dev/null differ diff --git a/src/Mod/Image/Gui/Resources/translations/Image_zh.ts b/src/Mod/Image/Gui/Resources/translations/Image_zh.ts deleted file mode 100644 index 6657ced73..000000000 --- a/src/Mod/Image/Gui/Resources/translations/Image_zh.ts +++ /dev/null @@ -1,183 +0,0 @@ - - - - - CmdCreateImagePlane - - - Image - 图像 - - - - Create image plane... - 创建平面图像... - - - - Create a planar image in the 3D space - Create a planar image in the 3D space - - - create a planar image in the 3D space - 三维空间中创建一个平面图像 - - - - CmdImageOpen - - - Image - 图像 - - - - Open... - 打开... - - - - Open image view - 打开图像视图 - - - - ImageGui::GLImageBox - - - Undefined type of colour space for image viewing - 图片视图的色彩模式未定义 - - - - Image pixel format - 图像像素格式 - - - - ImageGui::ImageView - - - &Fit image - 适应图像尺寸(&F) - - - - Stretch the image to fit the view - 拉伸图像以适应视图 - - - - &1:1 scale - &1:1 缩放 - - - - Display the image at a 1:1 scale - 按1:1比例显示图像 - - - &Original color - 原始色(&O) - - - Display the image with its original color(s) - 以原始色显示图像 - - - &Brightened color - 高亮色(&B) - - - Display the image with brightened color(s) - 以高亮色显示图像 - - - - Standard - 标准 - - - - Ready... - 就绪... - - - - grey - 灰色 - - - - - - - - - - - - - zoom - 缩放 - - - - - - - - outside image - 图像外部 - - - - QObject - - Image viewer - 图像浏览器 - - - - Images (*.png *.xpm *.jpg *.bmp) - 图像(*.png *.xpm *.jpg *.bmp) - - - - - - Choose an image file to open - 选择一个图像文件打开 - - - - - Images - Images - - - - - All files - All files - - - - Error open image - 打开图像错误 - - - - Could not load the choosen image - 无法加载选择的图像 - - - - Workbench - - - Image - 图像 - - - diff --git a/src/Mod/Machining_Distortion/postprocess_gui.py b/src/Mod/Machining_Distortion/postprocess_gui.py index cf5d3ef19..79d1a4a2e 100755 --- a/src/Mod/Machining_Distortion/postprocess_gui.py +++ b/src/Mod/Machining_Distortion/postprocess_gui.py @@ -167,7 +167,7 @@ class MyForm(QtGui.QDialog,Ui_dialog): "set label \"" + z_axis_label + "\\nin [mm]\" at screen 0.03, screen 0.5 center rotate by 90\n"+ "set xtics in nomirror offset character 0,-0.5\n"+ "splot \"postprocessing_input.txt\" u " + str(offset_column) + ":" + str(rot_column) + ":" + str(abs_disp_column) + " with pm3d title \"\"\n" + - "exit" ) + "exit" )) gnu_plot_input_file.close() os.chdir(str(self.dirname)) diff --git a/src/Mod/Makefile.am b/src/Mod/Makefile.am index 246e76ba4..69e69f9b2 100644 --- a/src/Mod/Makefile.am +++ b/src/Mod/Makefile.am @@ -43,6 +43,8 @@ if BUILD_CAM SUBDIRS += Cam endif +SUBDIRS += Plot + EXTRA_DIST = \ __init__.py \ CMakeLists.txt \ diff --git a/src/Mod/Mesh/Gui/Makefile.am b/src/Mod/Mesh/Gui/Makefile.am index dd4405cd7..1b7669ab7 100644 --- a/src/Mod/Mesh/Gui/Makefile.am +++ b/src/Mod/Mesh/Gui/Makefile.am @@ -136,8 +136,8 @@ EXTRA_DIST = \ Resources/translations/Mesh_af.ts \ Resources/translations/Mesh_de.qm \ Resources/translations/Mesh_de.ts \ - Resources/translations/Mesh_es.qm \ - Resources/translations/Mesh_es.ts \ + Resources/translations/Mesh_es-ES.qm \ + Resources/translations/Mesh_es-ES.ts \ Resources/translations/Mesh_fi.qm \ Resources/translations/Mesh_fi.ts \ Resources/translations/Mesh_fr.qm \ @@ -152,14 +152,28 @@ EXTRA_DIST = \ Resources/translations/Mesh_no.ts \ Resources/translations/Mesh_pl.qm \ Resources/translations/Mesh_pl.ts \ - Resources/translations/Mesh_pt.qm \ - Resources/translations/Mesh_pt.ts \ + Resources/translations/Mesh_pt-BR.qm \ + Resources/translations/Mesh_pt-BR.ts \ Resources/translations/Mesh_ru.qm \ Resources/translations/Mesh_ru.ts \ - Resources/translations/Mesh_se.qm \ - Resources/translations/Mesh_se.ts \ + Resources/translations/Mesh_sv-SE.qm \ + Resources/translations/Mesh_sv-SE.ts \ Resources/translations/Mesh_uk.qm \ Resources/translations/Mesh_uk.ts \ - Resources/translations/Mesh_zh.qm \ - Resources/translations/Mesh_zh.ts \ + Resources/translations/Mesh_zh-CN.qm \ + Resources/translations/Mesh_zh-CN.ts \ + Resources/translations/Mesh_zh-TW.qm \ + Resources/translations/Mesh_zh-TW.ts \ + Resources/translations/Mesh_ja.qm \ + Resources/translations/Mesh_ja.ts \ + Resources/translations/Mesh_ro.qm \ + Resources/translations/Mesh_ro.ts \ + Resources/translations/Mesh_tr.qm \ + Resources/translations/Mesh_tr.ts \ + Resources/translations/Mesh_hu.qm \ + Resources/translations/Mesh_hu.ts \ + Resources/translations/Mesh_sk.qm \ + Resources/translations/Mesh_sk.ts \ + Resources/translations/Mesh_cs.qm \ + Resources/translations/Mesh_cs.ts \ images.h diff --git a/src/Mod/Mesh/Gui/Resources/Mesh.qrc b/src/Mod/Mesh/Gui/Resources/Mesh.qrc index 940c6d440..ac658028c 100644 --- a/src/Mod/Mesh/Gui/Resources/Mesh.qrc +++ b/src/Mod/Mesh/Gui/Resources/Mesh.qrc @@ -5,7 +5,6 @@ icons/Tree_Mesh.svg translations/Mesh_af.qm translations/Mesh_de.qm - translations/Mesh_es.qm translations/Mesh_fi.qm translations/Mesh_fr.qm translations/Mesh_hr.qm @@ -13,10 +12,18 @@ translations/Mesh_nl.qm translations/Mesh_no.qm translations/Mesh_pl.qm - translations/Mesh_pt.qm translations/Mesh_ru.qm - translations/Mesh_se.qm translations/Mesh_uk.qm - translations/Mesh_zh.qm + translations/Mesh_tr.qm + translations/Mesh_sv-SE.qm + translations/Mesh_zh-TW.qm + translations/Mesh_pt-BR.qm + translations/Mesh_cs.qm + translations/Mesh_sk.qm + translations/Mesh_es-ES.qm + translations/Mesh_zh-CN.qm + translations/Mesh_ja.qm + translations/Mesh_ro.qm + translations/Mesh_hu.qm diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_af.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_af.qm index e2283d3c6..3ad607a45 100644 Binary files a/src/Mod/Mesh/Gui/Resources/translations/Mesh_af.qm and b/src/Mod/Mesh/Gui/Resources/translations/Mesh_af.qm differ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_af.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_af.ts index f1bf8b679..4275a2169 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_af.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_af.ts @@ -1,1204 +1,1204 @@ - - + + CmdMeshAddFacet - Mesh - Maas + Mesh + Maas - Add triangle - Voeg driehoek by + Add triangle + Voeg driehoek by - Add triangle manually to a mesh - Voeg driehoek self by die maas + Add triangle manually to a mesh + Voeg driehoek self by die maas - - + + CmdMeshBoundingBox - Mesh - Maas + Mesh + Maas - Boundings info... - Begrensings informasie ... + Boundings info... + Begrensings informasie ... - Shows the boundings of the selected mesh - Wys die begrensings van die gekose maas + Shows the boundings of the selected mesh + Wys die begrensings van die gekose maas - - + + CmdMeshBuildRegularSolid - Mesh - Maas + Mesh + Maas - Regular solid... - Tipiese soliede liggaam ... + Regular solid... + Tipiese soliede liggaam ... - Builds a regular solid - Skep 'n soliede liggaam + Builds a regular solid + Skep 'n soliede liggaam - - + + CmdMeshDemolding - Interactive demolding direction - Interaktiewe ontgietingsrigting + Interactive demolding direction + Interaktiewe ontgietingsrigting - Mesh - Maas + Mesh + Maas - - + + CmdMeshDifference - Mesh - Maas + Mesh + Maas - Difference - Verskil + Difference + Verskil - - + + CmdMeshEvaluateFacet - Mesh - Maas + Mesh + Maas - Face info - Vlakinformasie + Face info + Vlakinformasie - Information about face - Informasie oor die vlak + Information about face + Informasie oor die vlak - - + + CmdMeshEvaluateSolid - Mesh - Maas + Mesh + Maas - Check solid mesh - Kontroleer soliede maas + Check solid mesh + Kontroleer soliede maas - Checks whether the mesh is a solid - Kontroleer of die maas 'n soliede is + Checks whether the mesh is a solid + Kontroleer of die maas 'n soliede is - - + + CmdMeshEvaluation - Mesh - Maas + Mesh + Maas - Opens a dialog to analyze and repair a mesh - Maak 'n dialoog oop om 'n maas te ontleed en herstel + Opens a dialog to analyze and repair a mesh + Maak 'n dialoog oop om 'n maas te ontleed en herstel - Evaluate && Repair mesh... - Evalueer en herstel maas... + Evaluate && Repair mesh... + Evalueer en herstel maas... - - + + CmdMeshExMakeMesh - Mesh - Maas + Mesh + Maas - Make a Box - Maak 'n boks + Make a Box + Maak 'n boks - - + + CmdMeshExMakeTool - Mesh - Maas + Mesh + Maas - Make a Tool - Maak 'n werktuig + Make a Tool + Maak 'n werktuig - - + + CmdMeshExMakeUnion - Mesh - Maas + Mesh + Maas - Make Union - Maak unie + Make Union + Maak unie - - + + CmdMeshExport - Mesh - Maas + Mesh + Maas - Export mesh... - Voer maas uit ... + Export mesh... + Voer maas uit ... - Exports a mesh to file - Voer maas uit na lêer + Exports a mesh to file + Voer maas uit na lêer - - + + CmdMeshFillInteractiveHole - Mesh - Maas + Mesh + Maas - Close hole - Vul gaping + Close hole + Vul gaping - Close holes interactively - Vul gapings interaktief + Close holes interactively + Vul gapings interaktief - - + + CmdMeshFillupHoles - Mesh - Maas + Mesh + Maas - Fill holes... - Vul gapings ... + Fill holes... + Vul gapings ... - Fill holes of the mesh - Vul gapings in die maas + Fill holes of the mesh + Vul gapings in die maas - - + + CmdMeshFlipNormals - Mesh - Maas + Mesh + Maas - Flip normals - Keer normaallyne om + Flip normals + Keer normaallyne om - Flips the normals of the mesh - Keer die maas se normaallyne om + Flips the normals of the mesh + Keer die maas se normaallyne om - - + + CmdMeshFromGeometry - Mesh - Maas + Mesh + Maas - Create mesh from geometry... - Skep 'n maas van 'n vorm ... + Create mesh from geometry... + Skep 'n maas van 'n vorm ... - Create mesh from the selected geometry - Skep maas van die gekose vorm + Create mesh from the selected geometry + Skep maas van die gekose vorm - - + + CmdMeshHarmonizeNormals - Mesh - Maas + Mesh + Maas - Harmonize normals - Harmoniseer normaallyne + Harmonize normals + Harmoniseer normaallyne - Harmonizes the normals of the mesh - Harmoniseer die normaallyne van die maas + Harmonizes the normals of the mesh + Harmoniseer die normaallyne van die maas - - + + CmdMeshImport - Mesh - Maas + Mesh + Maas - Import mesh... - Voer maas in ... + Import mesh... + Voer maas in ... - Imports a mesh from file - Voer 'n maas in van 'n lêer + Imports a mesh from file + Voer 'n maas in van 'n lêer - - + + CmdMeshIntersection - Mesh - Maas + Mesh + Maas - Intersection - Snyding + Intersection + Snyding - - + + CmdMeshPolyCut - Mesh - Maas + Mesh + Maas - Cut mesh - Sny maas + Cut mesh + Sny maas - Cuts a mesh with a picked polygon - Sny 'n maas met 'n gekose veelhoek + Cuts a mesh with a picked polygon + Sny 'n maas met 'n gekose veelhoek - - + + CmdMeshPolySegm - Mesh - Maas + Mesh + Maas - Make segment - Maak segment + Make segment + Maak segment - Creates a mesh segment - Skep 'n maassegment + Creates a mesh segment + Skep 'n maassegment - - + + CmdMeshPolySelect - Mesh - Maas + Mesh + Maas - Select mesh - Kies maas + Select mesh + Kies maas - Select an area of the mesh - Kies 'n gedeelte van die maas + Select an area of the mesh + Kies 'n gedeelte van die maas - - + + CmdMeshPolySplit - Mesh - Maas + Mesh + Maas - Split mesh - Verdeel 'n maas + Split mesh + Verdeel 'n maas - Splits a mesh into two meshes - Verdeel 'n maas in twee mase + Splits a mesh into two meshes + Verdeel 'n maas in twee mase - - + + CmdMeshPolyTrim - Mesh - Maas + Mesh + Maas - Trim mesh - + Trim mesh + Trim mesh - Trims a mesh with a picked polygon - + Trims a mesh with a picked polygon + Trims a mesh with a picked polygon - - + + CmdMeshRemoveCompByHand - Mesh - Maas + Mesh + Maas - Remove components by hand... - Verwyder komponente met die hand ... + Remove components by hand... + Verwyder komponente met die hand ... - Mark a component to remove it from the mesh - Merk 'n komponent om dit te verwyder uit die maas + Mark a component to remove it from the mesh + Merk 'n komponent om dit te verwyder uit die maas - - + + CmdMeshRemoveComponents - Mesh - Maas + Mesh + Maas - Remove components... - Verwyder komponente ... + Remove components... + Verwyder komponente ... - Remove topologic independent components from the mesh - Remove topologic independent components from the mesh + Remove topologic independent components from the mesh + Verwyder topologiese onafhanklike komponente van die maas - - + + CmdMeshSegmentation - Mesh - Maas + Mesh + Maas - Create mesh segments... - + Create mesh segments... + Create mesh segments... - Create mesh segments - + Create mesh segments + Create mesh segments - - + + CmdMeshSmoothing - Mesh - Maas + Mesh + Maas - Smooth... - Stryk ... + Smooth... + Stryk ... - Smooth the selected meshes - Stryk die geselekteerde mase se oppervlakke uit + Smooth the selected meshes + Stryk die geselekteerde mase se oppervlakke uit - - + + CmdMeshToolMesh - Mesh - Maas + Mesh + Maas - Segment by tool mesh - Segmenteer met 'n maaswerktuig + Segment by tool mesh + Segmenteer met 'n maaswerktuig - Creates a segment from a given tool mesh - Skep 'n segment van 'n gegewe maaswerktuig + Creates a segment from a given tool mesh + Skep 'n segment van 'n gegewe maaswerktuig - - + + CmdMeshTransform - Mesh - Maas + Mesh + Maas - Transform mesh - Transformeer maas + Transform mesh + Transformeer maas - Rotate or move a mesh - Draai of skuif 'n maas + Rotate or move a mesh + Draai of skuif 'n maas - - + + CmdMeshUnion - Mesh - Maas + Mesh + Maas - Union - Vereniging + Union + Vereniging - - + + CmdMeshVertexCurvature - Mesh - Maas + Mesh + Maas - Calculates the curvature of the vertices of a mesh - Bereken die kromming van die hoekpunte van 'n maas + Calculates the curvature of the vertices of a mesh + Bereken die kromming van die hoekpunte van 'n maas - Curvature plot - Krommingplot + Curvature plot + Krommingplot - - + + CmdMeshVertexCurvatureInfo - Mesh - Maas + Mesh + Maas - Curvature info - Kromminginformasie + Curvature info + Kromminginformasie - Information about curvature - Inligting oor die kromming + Information about curvature + Inligting oor die kromming - - + + MeshGui::DlgEvaluateMesh - &Help - &Hulp + &Help + &Hulp - F1 - F1 + F1 + F1 - &Close - &MaakToe + &Close + &MaakToe - Alt+C - Alt+C + Alt+C + Alt+C - Mesh information - Maas inligting + Mesh information + Maas inligting - No information - Geen inligting + No information + Geen inligting - Number of points: - Aantal punte: + Number of points: + Aantal punte: - Number of edges: - Aantal kante: + Number of edges: + Aantal kante: - Refresh - Verfris + Refresh + Verfris - Analyze - Ontleed + Analyze + Ontleed - Repair - Herstel + Repair + Herstel - Orientation - Oriëntasie + Orientation + Oriëntasie - Degenerated faces - Vervalle vlakke + Degenerated faces + Vervalle vlakke - Face indices - Vlakindekse + Face indices + Vlakindekse - Number of faces: - Aantal vlakke: + Number of faces: + Aantal vlakke: - Duplicated faces - Herhaalde vlakke + Duplicated faces + Herhaalde vlakke - Duplicated points - Herhaalde punte + Duplicated points + Herhaalde punte - Non-manifolds - Nie-menigvoude + Non-manifolds + Nie-menigvoude - Self-intersections - Self-snydings + Self-intersections + Self-snydings - All above tests together - Al die bogenoemde toetse saam + All above tests together + Al die bogenoemde toetse saam - Repetitive repair - Herhalende herstelling + Repetitive repair + Herhalende herstelling - Evaluate & Repair Mesh - Evalueer en herstel maas + Evaluate & Repair Mesh + Evalueer en herstel maas - Folds on surface - Voue op die oppervlak + Folds on surface + Voue op die oppervlak - - + + MeshGui::DlgEvaluateMeshImp - No information - Geen inligting + No information + Geen inligting - Invalid neighbour indices - Ongeldige buurindekse + Invalid neighbour indices + Ongeldige buurindekse - Invalid face indices - Ongeldige vlakindekse + Invalid face indices + Ongeldige vlakindekse - Invalid point indices - Ongeldige puntindekse + Invalid point indices + Ongeldige puntindekse - Multiple point indices - Veelvuldige puntindekse + Multiple point indices + Veelvuldige puntindekse - Non-manifolds - Nie-menigvoude + Non-manifolds + Nie-menigvoude - Cannot remove non-manifolds - Kan nie nie-menigvoude verwyder nie + Cannot remove non-manifolds + Kan nie nie-menigvoude verwyder nie - No selection - Geen keuse + No selection + Geen keuse - No flipped normals - Geen omgekeerde normaallyne nie + No flipped normals + Geen omgekeerde normaallyne nie - %1 flipped normals - %1 omgekeerde normaallyne + %1 flipped normals + %1 omgekeerde normaallyne - No non-manifolds - Geen nie-menigvoude nie + No non-manifolds + Geen nie-menigvoude nie - %1 non-manifolds - %1 nie-menigvoude + %1 non-manifolds + %1 nie-menigvoude - No invalid indices - Geen ongeldige indekse + No invalid indices + Geen ongeldige indekse - No degenerations - Geen vervallings + No degenerations + Geen vervallings - %1 degenerated faces - %1 vervalle vlakke + %1 degenerated faces + %1 vervalle vlakke - No duplicated faces - Geen herhaalde vlakke + No duplicated faces + Geen herhaalde vlakke - %1 duplicated faces - %1 herhaalde vlakke + %1 duplicated faces + %1 herhaalde vlakke - No duplicated points - Geen herhaalde punte nie + No duplicated points + Geen herhaalde punte nie - Duplicated points - Herhaalde punte + Duplicated points + Herhaalde punte - Orientation - Oriëntasie + Orientation + Oriëntasie - Indices - Indekse + Indices + Indekse - Degenerations - Vervallings + Degenerations + Vervallings - Duplicated faces - Herhaalde vlakke + Duplicated faces + Herhaalde vlakke - No self-intersections - Geen selfsnydings + No self-intersections + Geen selfsnydings - Self-intersections - Self-snydings + Self-intersections + Self-snydings - Mesh repair - Maasherstelling + Mesh repair + Maasherstelling - Flipped normals found - Omgekeerde normaallyne gevind + Flipped normals found + Omgekeerde normaallyne gevind - Check failed due to folds on the surface. + Check failed due to folds on the surface. Please run the command to repair folds first - Kontrole het misluk weens voue op die oppervlak. + Kontrole het misluk weens voue op die oppervlak. Gee eers die opdrag om die voue te herstel - No folds on surface - Geen voue op die oppervlak + No folds on surface + Geen voue op die oppervlak - %1 folds on surface - %1 voue op die oppervlak + %1 folds on surface + %1 voue op die oppervlak - Folds - Voue + Folds + Voue - - + + MeshGui::DlgRegularSolid - Regular Solid - Tipiese Soliede + Regular Solid + Tipiese Soliede - &Create - &Skep + &Create + &Skep - Alt+C - Alt+C + Alt+C + Alt+C - Cl&ose - &MaakToe + Cl&ose + &MaakToe - Alt+O - Alt+O + Alt+O + Alt+O - Solid: - Soliede: + Solid: + Soliede: - Cube - Kubus + Cube + Kubus - Cylinder - Silinder + Cylinder + Silinder - Cone - Keël + Cone + Keël - Sphere - Sfeer + Sphere + Sfeer - Ellipsoid - Ellipsoïed + Ellipsoid + Ellipsoïed - Torus - Torus + Torus + Torus - Height: - Hoogte: + Height: + Hoogte: - Length: - Lengte: + Length: + Lengte: - Width: - Wydte: + Width: + Wydte: - Radius: - Radius: + Radius: + Radius: - Closed - Gesluit + Closed + Gesluit - Sampling: - Steekproefneming: + Sampling: + Steekproefneming: - Edge length: - Kantlengte: + Edge length: + Kantlengte: - Radius 1: - Radius 1: + Radius 1: + Radius 1: - Radius 2: - Radius 2: + Radius 2: + Radius 2: - - + + MeshGui::DlgRegularSolidImp - Create %1 - Skep %1 + Create %1 + Skep %1 - No active document - Geen aktiewe dokument + No active document + Geen aktiewe dokument - - + + MeshGui::DlgSettingsMeshView - Mesh view - Maasaansig + Mesh view + Maasaansig - Two-side rendering - Tweekantige vorming + Two-side rendering + Tweekantige vorming - Backface color - Agtervlakkleur + Backface color + Agtervlakkleur - Smoothing - Gladmaking + Smoothing + Gladmaking - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Hierdie is die kleinste hoek tussen twee vlakke waar normaallyne bereken word om platskaduïng te doen.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Indien die hoek tussen die normaallyne van twee aangrensende vlakke kleiner is as die plooihoek, sal die vlakke gladgeskadu word om hulle gemeensame kant.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Hierdie is die kleinste hoek tussen twee vlakke waar normaallyne bereken word om platskaduïng te doen.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Indien die hoek tussen die normaallyne van twee aangrensende vlakke kleiner is as die plooihoek, sal die vlakke gladgeskadu word om hulle gemeensame kant.</p></body></html> - Crease angle - Plooihoek + Crease angle + Plooihoek - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Platskaduïng/Phong-skaduïng</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definieer die voorkoms van oppervlakke.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Met platskaduïng word die vlaknormaallyne nie gedefinieer per hoekpunt nie, dit lei tot 'n onrealistiese voorkoms vir gekurwe oppervlakke, terwyl Phong-skaduïng 'n gladder voorkoms gee. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Indien hierdie opsie gekies is, word Phong-skaduïng gebruik, andersins word platskaduïng gebruik.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Platskaduïng/Phong-skaduïng</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definieer die voorkoms van oppervlakke.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Met platskaduïng word die vlaknormaallyne nie gedefinieer per hoekpunt nie, dit lei tot 'n onrealistiese voorkoms vir gekurwe oppervlakke, terwyl Phong-skaduïng 'n gladder voorkoms gee. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Indien hierdie opsie gekies is, word Phong-skaduïng gebruik, andersins word platskaduïng gebruik.</p></body></html> - Define normal per vertex - Definieer die normale per hoekpunt - - - ° - ° + Define normal per vertex + Definieer die normale per hoekpunt - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Om die normaallyne per hoekpunt te definieer word ook genoem<span style=" font-style:italic;">Phong-skaduïng</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">terwyl die definiëring van die normale per vlak beskryf word as</span>platskaduïng<span style=" font-style:normal;">.</span></p></body></html> + ° + ° - Default appearance for new meshes - Versuimvoorkoms vir nuwe mase + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Om die normaallyne per hoekpunt te definieer word ook genoem<span style=" font-style:italic;">Phong-skaduïng</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">terwyl die definiëring van die normale per vlak beskryf word as</span>platskaduïng<span style=" font-style:normal;">.</span></p></body></html> - Default line color - Versuimlynkleur + Default appearance for new meshes + Versuimvoorkoms vir nuwe mase - Mesh transparency - Maasdeursigtigheid + Default line color + Versuimlynkleur - Default mesh color - Standaard maaskleur + Mesh transparency + Maasdeursigtigheid - Show bounding-box for highlighted or selected meshes - Wys begrensingsboks vir beklemtoonde of gekose mase + Default mesh color + Standaard maaskleur - Line transparency - Lyndeursigtigheid + Show bounding-box for highlighted or selected meshes + Wys begrensingsboks vir beklemtoonde of gekose mase - - + + Line transparency + Lyndeursigtigheid + + + MeshGui::DlgSmoothing - Smoothing - Gladmaking + Smoothing + Gladmaking - Method - Metode + Method + Metode - Taubin - Taubin + Taubin + Taubin - Laplace - Laplace + Laplace + Laplace - Parameter - Parameter + Parameter + Parameter - Iterations: - Iterasies: + Iterations: + Iterasies: - Lambda: - Lambda: + Lambda: + Lambda: - Mu: - Mu: + Mu: + Mu: - - + + MeshGui::MeshFaceAddition - Add triangle - Voeg driehoek by + Add triangle + Voeg driehoek by - Flip normal - Swaai normaallyn om + Flip normal + Swaai normaallyn om - Clear - Maak skoon + Clear + Maak skoon - Finish - Klaar + Finish + Klaar - - + + MeshGui::RemoveComponents - Remove components - Verwyder komponente + Remove components + Verwyder komponente - Select - Kies + Select + Kies - Select whole component - Kies die hele komponent + Select whole component + Kies die hele komponent - Pick triangle - Kies driehoek + Pick triangle + Kies driehoek - < faces than - < vlakke as + < faces than + < vlakke as - Region - Streek + Region + Streek - Components - Komponente + Components + Komponente - All - Almal + All + Almal - Deselect - Deselekteer + Deselect + Deselekteer - Deselect whole component - Deselekteer die hele komponent + Deselect whole component + Deselekteer die hele komponent - > faces than - > vlakke as + > faces than + > vlakke as - Region options - Streekopsies + Region options + Streekopsies - Respect only triangles with normals facing screen - Respekteer slegs driehoeke waarvan die normale in lyn met die skerm is + Respect only triangles with normals facing screen + Respekteer slegs driehoeke waarvan die normale in lyn met die skerm is - Respect only visible triangles - Respekteer slegs sigbare driehoeke + Respect only visible triangles + Respekteer slegs sigbare driehoeke - - + + MeshGui::Segmentation - Mesh segmentation - + Mesh segmentation + Mesh segmentation - Smooth mesh - + Smooth mesh + Smooth mesh - Plane - + Plane + Tekenvlak - Tolerance - + Tolerance + Toleransie - Minumum number of faces - + Minumum number of faces + Minumum number of faces - Cylinder - Silinder + Cylinder + Silinder - Radius - + Radius + Radius - Tolerance (Flat) - + Tolerance (Flat) + Tolerance (Flat) - Tolerance (Curved) - + Tolerance (Curved) + Tolerance (Curved) - Minimum number of faces - + Minimum number of faces + Minimum number of faces - Sphere - Sfeer + Sphere + Sfeer - - + + MeshGui::TaskRemoveComponents - Delete - Verwyder + Delete + Verwyder - Invert - Inverteer + Invert + Inverteer - - + + QDockWidget - Evaluate & Repair Mesh - Evalueer en herstel maas + Evaluate & Repair Mesh + Evalueer en herstel maas - - + + QObject - Import mesh - Voer maas in + Import mesh + Voer maas in - Export mesh - Voer maas uit + Export mesh + Voer maas uit - Solid Mesh - Soliede Maas + Solid Mesh + Soliede Maas - Boundings - Begrensings + Boundings + Begrensings - Fill holes - Vul gapings + Fill holes + Vul gapings - Fill holes with maximum number of edges: - Vul gapings met 'n maksimum aantal kante: + Fill holes with maximum number of edges: + Vul gapings met 'n maksimum aantal kante: - Binary STL (*.stl) - Binêre STL (*.stl) + Binary STL (*.stl) + Binêre STL (*.stl) - ASCII STL (*.ast) - ASCII STL (*.ast) + ASCII STL (*.ast) + ASCII STL (*.ast) - Binary Mesh (*.bms) - Binêre maas (*.bms) + Binary Mesh (*.bms) + Binêre maas (*.bms) - Alias Mesh (*.obj) - Alias Maas (*.obj) + Alias Mesh (*.obj) + Alias Maas (*.obj) - Inventor V2.1 ascii (*.iv) - Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*.iv) - All Files (*.*) - Alle lêers (*.*) + All Files (*.*) + Alle lêers (*.*) - ASCII STL (*.stl) - ASCII STL (*.stl) + ASCII STL (*.stl) + ASCII STL (*.stl) - VRML V2.0 (*.wrl *.vrml) - VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) - Compressed VRML 2.0 (*.wrz) - Gekomprimeerde VRML 2.0 (*.wrz) + Compressed VRML 2.0 (*.wrz) + Gekomprimeerde VRML 2.0 (*.wrz) - Nastran (*.nas *.bdf) - Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) - Python module def (*.py) - Pythonmodule def (*.py) + Python module def (*.py) + Pythonmodule def (*.py) - Meshing Tolerance - Maastoleransie + Meshing Tolerance + Maastoleransie - Enter tolerance for meshing geometry: - Gee toleransie vir maasvorms: + Enter tolerance for meshing geometry: + Gee toleransie vir maasvorms: - The mesh '%1' is a solid. - Die maas '%1' is 'n soliede. + The mesh '%1' is a solid. + Die maas '%1' is 'n soliede. - The mesh '%1' is not a solid. - Die maas '%1' is nie 'n soliede nie. + The mesh '%1' is not a solid. + Die maas '%1' is nie 'n soliede nie. - Min=<%1,%2,%3> + Min=<%1,%2,%3> Max=<%4,%5,%6> - Min=<%1,%2,%3> + Min=<%1,%2,%3> Maks=<%4,%5,%6> - [Points: %1, Edges: %2 Faces: %3] - [Punte: %1, Kante: %2, Vlakke: %3] + [Points: %1, Edges: %2 Faces: %3] + [Punte: %1, Kante: %2, Vlakke: %3] - Leave info mode - Verlaat inligtingsmodus + Leave info mode + Verlaat inligtingsmodus - Index: %1 - Indeks: %1 + Index: %1 + Indeks: %1 - Leave hole-filling mode - Verlaat gapingvullingsmodus + Leave hole-filling mode + Verlaat gapingvullingsmodus - Leave removal mode - Verlaat verwyderingsmodus + Leave removal mode + Verlaat verwyderingsmodus - All Mesh Files (*.stl *.ast *.bms *.obj *.ply) - Alle maaslêers (*.stl *.ast *.bms *.obj *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + Alle maaslêers (*.stl *.ast *.bms *.obj *.ply) - Stanford Polygon (*.ply) - Stanford-veelhoek (*.ply) + Stanford Polygon (*.ply) + Stanford-veelhoek (*.ply) - Object File Format (*.off) - Voorwerp-lêerformaat (*.off) + Object File Format (*.off) + Voorwerp-lêerformaat (*.off) - Standford Polygon (*.ply) - Standford-veelhoek (*.ply) + Standford Polygon (*.ply) + Standford-veelhoek (*.ply) - Delete selected faces - Verwyder gekose vlakke + Delete selected faces + Verwyder gekose vlakke - Clear selected faces - Verwyder gekose vlakke + Clear selected faces + Verwyder gekose vlakke - Annotation - Aantekening + Annotation + Aantekening - All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - - + + Workbench - Analyze - Ontleed + Analyze + Ontleed - Boolean - Boolese + Boolean + Boolese - &Meshes - &Mase + &Meshes + &Mase - Mesh tools - Maaswerktuie + Mesh tools + Maaswerktuie - + diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_cs.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_cs.qm new file mode 100644 index 000000000..deabbeb32 Binary files /dev/null and b/src/Mod/Mesh/Gui/Resources/translations/Mesh_cs.qm differ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_cs.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_cs.ts new file mode 100644 index 000000000..37823f2fd --- /dev/null +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_cs.ts @@ -0,0 +1,1204 @@ + + + + + CmdMeshAddFacet + + Mesh + Mesh + + + Add triangle + Přidat trojúhelník + + + Add triangle manually to a mesh + Přidat ručně trojúhelník do tvaru + + + + CmdMeshBoundingBox + + Mesh + Mesh + + + Boundings info... + Ohraničující informace... + + + Shows the boundings of the selected mesh + Zobrazuje hranici vybrané sítě + + + + CmdMeshBuildRegularSolid + + Mesh + Mesh + + + Regular solid... + Regular solid... + + + Builds a regular solid + Builds a regular solid + + + + CmdMeshDemolding + + Interactive demolding direction + Interactive demolding direction + + + Mesh + Mesh + + + + CmdMeshDifference + + Mesh + Mesh + + + Difference + Rozdíl + + + + CmdMeshEvaluateFacet + + Mesh + Mesh + + + Face info + Face info + + + Information about face + Information about face + + + + CmdMeshEvaluateSolid + + Mesh + Mesh + + + Check solid mesh + Zkontrolovat síť dílu + + + Checks whether the mesh is a solid + Checks whether the mesh is a solid + + + + CmdMeshEvaluation + + Mesh + Mesh + + + Opens a dialog to analyze and repair a mesh + Opens a dialog to analyze and repair a mesh + + + Evaluate && Repair mesh... + Evaluate && Repair mesh... + + + + CmdMeshExMakeMesh + + Mesh + Mesh + + + Make a Box + Make a Box + + + + CmdMeshExMakeTool + + Mesh + Mesh + + + Make a Tool + Make a Tool + + + + CmdMeshExMakeUnion + + Mesh + Mesh + + + Make Union + Make Union + + + + CmdMeshExport + + Mesh + Mesh + + + Export mesh... + Export mesh... + + + Exports a mesh to file + Exports a mesh to file + + + + CmdMeshFillInteractiveHole + + Mesh + Mesh + + + Close hole + Uzavřít díru + + + Close holes interactively + Close holes interactively + + + + CmdMeshFillupHoles + + Mesh + Mesh + + + Fill holes... + Výplně otvorů... + + + Fill holes of the mesh + Fill holes of the mesh + + + + CmdMeshFlipNormals + + Mesh + Mesh + + + Flip normals + Překlopit normály + + + Flips the normals of the mesh + Flips the normals of the mesh + + + + CmdMeshFromGeometry + + Mesh + Mesh + + + Create mesh from geometry... + Create mesh from geometry... + + + Create mesh from the selected geometry + Create mesh from the selected geometry + + + + CmdMeshHarmonizeNormals + + Mesh + Mesh + + + Harmonize normals + Harmonize normals + + + Harmonizes the normals of the mesh + Harmonizes the normals of the mesh + + + + CmdMeshImport + + Mesh + Mesh + + + Import mesh... + Import mesh... + + + Imports a mesh from file + Imports a mesh from file + + + + CmdMeshIntersection + + Mesh + Mesh + + + Intersection + Průnik + + + + CmdMeshPolyCut + + Mesh + Mesh + + + Cut mesh + Vyjmout síť + + + Cuts a mesh with a picked polygon + Cuts a mesh with a picked polygon + + + + CmdMeshPolySegm + + Mesh + Mesh + + + Make segment + Make segment + + + Creates a mesh segment + Creates a mesh segment + + + + CmdMeshPolySelect + + Mesh + Mesh + + + Select mesh + Select mesh + + + Select an area of the mesh + Select an area of the mesh + + + + CmdMeshPolySplit + + Mesh + Mesh + + + Split mesh + Split mesh + + + Splits a mesh into two meshes + Splits a mesh into two meshes + + + + CmdMeshPolyTrim + + Mesh + Mesh + + + Trim mesh + Trim mesh + + + Trims a mesh with a picked polygon + Trims a mesh with a picked polygon + + + + CmdMeshRemoveCompByHand + + Mesh + Mesh + + + Remove components by hand... + Remove components by hand... + + + Mark a component to remove it from the mesh + Mark a component to remove it from the mesh + + + + CmdMeshRemoveComponents + + Mesh + Mesh + + + Remove components... + Remove components... + + + Remove topologic independent components from the mesh + Remove topologic independent components from the mesh + + + + CmdMeshSegmentation + + Mesh + Mesh + + + Create mesh segments... + Create mesh segments... + + + Create mesh segments + Create mesh segments + + + + CmdMeshSmoothing + + Mesh + Mesh + + + Smooth... + Smooth... + + + Smooth the selected meshes + Smooth the selected meshes + + + + CmdMeshToolMesh + + Mesh + Mesh + + + Segment by tool mesh + Segment by tool mesh + + + Creates a segment from a given tool mesh + Creates a segment from a given tool mesh + + + + CmdMeshTransform + + Mesh + Mesh + + + Transform mesh + Transform mesh + + + Rotate or move a mesh + Rotate or move a mesh + + + + CmdMeshUnion + + Mesh + Mesh + + + Union + Sjednocení + + + + CmdMeshVertexCurvature + + Mesh + Mesh + + + Calculates the curvature of the vertices of a mesh + Calculates the curvature of the vertices of a mesh + + + Curvature plot + Curvature plot + + + + CmdMeshVertexCurvatureInfo + + Mesh + Mesh + + + Curvature info + Curvature info + + + Information about curvature + Information about curvature + + + + MeshGui::DlgEvaluateMesh + + &Help + Pomoc + + + F1 + F1 + + + &Close + &Zavřít + + + Alt+C + Alt+C + + + Mesh information + Mesh information + + + No information + No information + + + Number of points: + Number of points: + + + Number of edges: + Number of edges: + + + Refresh + Aktualizovat + + + Analyze + Analyze + + + Repair + Opravit + + + Orientation + Orientation + + + Degenerated faces + Degenerated faces + + + Face indices + Face indices + + + Number of faces: + Počet ploch: + + + Duplicated faces + Duplikované plochy + + + Duplicated points + Duplikované body + + + Non-manifolds + Non-manifolds + + + Self-intersections + Self-intersections + + + All above tests together + All above tests together + + + Repetitive repair + Opakované opravy + + + Evaluate & Repair Mesh + Evaluate & Repair Mesh + + + Folds on surface + Folds on surface + + + + MeshGui::DlgEvaluateMeshImp + + No information + No information + + + Invalid neighbour indices + Invalid neighbour indices + + + Invalid face indices + Invalid face indices + + + Invalid point indices + Invalid point indices + + + Multiple point indices + Multiple point indices + + + Non-manifolds + Non-manifolds + + + Cannot remove non-manifolds + Cannot remove non-manifolds + + + No selection + Žádný výběr + + + No flipped normals + No flipped normals + + + %1 flipped normals + %1 flipped normals + + + No non-manifolds + No non-manifolds + + + %1 non-manifolds + %1 non-manifolds + + + No invalid indices + No invalid indices + + + No degenerations + No degenerations + + + %1 degenerated faces + %1 degenerated faces + + + No duplicated faces + No duplicated faces + + + %1 duplicated faces + %1 duplicated faces + + + No duplicated points + Žádné duplicitní body + + + Duplicated points + Duplikované body + + + Orientation + Orientation + + + Indices + Indexy + + + Degenerations + Degenerations + + + Duplicated faces + Duplikované plochy + + + No self-intersections + No self-intersections + + + Self-intersections + Self-intersections + + + Mesh repair + Mesh repair + + + Flipped normals found + Flipped normals found + + + Check failed due to folds on the surface. +Please run the command to repair folds first + Check failed due to folds on the surface. +Please run the command to repair folds first + + + No folds on surface + No folds on surface + + + %1 folds on surface + %1 folds on surface + + + Folds + Folds + + + + MeshGui::DlgRegularSolid + + Regular Solid + Regular Solid + + + &Create + & Vytvořit + + + Alt+C + Alt+C + + + Cl&ose + Zavřít + + + Alt+O + Alt+O + + + Solid: + Solid: + + + Cube + Krychle + + + Cylinder + Válec + + + Cone + Kužel + + + Sphere + Koule + + + Ellipsoid + Elipsoid + + + Torus + Anuloid + + + Height: + Výška: + + + Length: + Délka: + + + Width: + Šířka: + + + Radius: + Poloměr: + + + Closed + Uzavřeno + + + Sampling: + Sampling: + + + Edge length: + Délka hrany: + + + Radius 1: + Poloměr 1: + + + Radius 2: + Poloměr 2: + + + + MeshGui::DlgRegularSolidImp + + Create %1 + Vytvořit %1 + + + No active document + Žádný aktivní dokument + + + + MeshGui::DlgSettingsMeshView + + Mesh view + Mesh view + + + Two-side rendering + Two-side rendering + + + Backface color + Backface color + + + Smoothing + Vyhlazování + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + + + Crease angle + Crease angle + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + + + Define normal per vertex + Define normal per vertex + + + ° + ° + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + + + Default appearance for new meshes + Default appearance for new meshes + + + Default line color + Výchozí barva čáry + + + Mesh transparency + Mesh transparency + + + Default mesh color + Default mesh color + + + Show bounding-box for highlighted or selected meshes + Show bounding-box for highlighted or selected meshes + + + Line transparency + Line transparency + + + + MeshGui::DlgSmoothing + + Smoothing + Vyhlazování + + + Method + Metoda + + + Taubin + Taubin + + + Laplace + Laplace + + + Parameter + Parametr + + + Iterations: + Iterations: + + + Lambda: + Lambda: + + + Mu: + Mu: + + + + MeshGui::MeshFaceAddition + + Add triangle + Přidat trojúhelník + + + Flip normal + Flip normal + + + Clear + Vyčistit + + + Finish + Dokončit + + + + MeshGui::RemoveComponents + + Remove components + Odebrat součásti + + + Select + Vybrat + + + Select whole component + Select whole component + + + Pick triangle + Vybrat trojúhelník + + + < faces than + < než ploch + + + Region + Region + + + Components + Komponenty + + + All + Vše + + + Deselect + Zrušit výběr + + + Deselect whole component + Od vybrat celý komponent + + + > faces than + > než ploch + + + Region options + Možnosti regionu + + + Respect only triangles with normals facing screen + Respektovat pouze trojúhelníky s normály ploch z obrazovky + + + Respect only visible triangles + Respektovat pouze viditelné trojúhelníky + + + + MeshGui::Segmentation + + Mesh segmentation + Mesh segmentation + + + Smooth mesh + Hladká síť + + + Plane + Rovina + + + Tolerance + Odchylka + + + Minumum number of faces + Minimální počet ploch + + + Cylinder + Válec + + + Radius + Poloměr + + + Tolerance (Flat) + Tolerance (plochy) + + + Tolerance (Curved) + Tolerance (zakřivení) + + + Minimum number of faces + Minimální počet ploch + + + Sphere + Koule + + + + MeshGui::TaskRemoveComponents + + Delete + Odstranit + + + Invert + Převrátit + + + + QDockWidget + + Evaluate & Repair Mesh + Evaluate & Repair Mesh + + + + QObject + + Import mesh + Importovat síť + + + Export mesh + Exportovat síť + + + Solid Mesh + Plná síť + + + Boundings + Hraniční + + + Fill holes + Výplně otvorů + + + Fill holes with maximum number of edges: + Výplně otvorů s největším počtem hran: + + + Binary STL (*.stl) + Binární STL (*.stl) + + + ASCII STL (*.ast) + ASCII STL (*.ast) + + + Binary Mesh (*.bms) + Binární síť (*.bms) + + + Alias Mesh (*.obj) + Alias síť (*.obj) + + + Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*.iv) + + + All Files (*.*) + Všechny soubory (*.*) + + + ASCII STL (*.stl) + ASCII STL (*.stl) + + + VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) + + + Compressed VRML 2.0 (*.wrz) + Komprimované VRML 2.0 (*.wrz) + + + Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) + + + Python module def (*.py) + Python modul def (*.py) + + + Meshing Tolerance + Tolerance sítě + + + Enter tolerance for meshing geometry: + Vložit toleranci pro síťovou geometrii: + + + The mesh '%1' is a solid. + Síť '%1' je pevná. + + + The mesh '%1' is not a solid. + Síť '%1' není plná. + + + Min=<%1,%2,%3> + +Max=<%4,%5,%6> + Min = <%1,%2,%3> + +Max = <%4,%5,%6> + + + [Points: %1, Edges: %2 Faces: %3] + [Body: %1, hrany: %2 plochy: %3] + + + Leave info mode + Opustit info režim + + + Index: %1 + Index: %1 + + + Leave hole-filling mode + Opustit režim výplně děr + + + Leave removal mode + Opustit režim odstranění + + + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + + + Stanford Polygon (*.ply) + Standfordské mnohoúhelníky (*.ply) + + + Object File Format (*.off) + Object File Format (*.off) + + + Standford Polygon (*.ply) + Standford Polygon (*.ply) + + + Delete selected faces + Odstranit vybrané plochy + + + Clear selected faces + Smazat vybrané plochy + + + Annotation + Vysvětlivka + + + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + Všechny soubory sítí (*stl *.ast *.bms *.obj *.off *.ply) + + + + Workbench + + Analyze + Analyze + + + Boolean + Boolean + + + &Meshes + &Tvary + + + Mesh tools + Nástroje sítě + + + diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_de.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_de.qm index c7aaa2d20..fc4b2515c 100644 Binary files a/src/Mod/Mesh/Gui/Resources/translations/Mesh_de.qm and b/src/Mod/Mesh/Gui/Resources/translations/Mesh_de.qm differ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_de.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_de.ts index 3b5d05cc9..8409594a0 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_de.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_de.ts @@ -1,1204 +1,1204 @@ - - + + CmdMeshAddFacet - Mesh - Netz + Mesh + Netz - Add triangle - Dreieck hinzufügen + Add triangle + Dreieck hinzufügen - Add triangle manually to a mesh - Dreieck manuell zu einem Netz hinzufügen + Add triangle manually to a mesh + Dreieck manuell zu einem Netz hinzufügen - - + + CmdMeshBoundingBox - Mesh - Netz + Mesh + Netz - Boundings info... - Abmessungen... + Boundings info... + Abmessungen... - Shows the boundings of the selected mesh - Anzeigen der Abmessungen des gewählten Netzes + Shows the boundings of the selected mesh + Anzeigen der Abmessungen des gewählten Netzes - - + + CmdMeshBuildRegularSolid - Mesh - Netz + Mesh + Netz - Regular solid... - Regelgeometrie... + Regular solid... + Regelgeometrie... - Builds a regular solid - Erstellen einer Regelgeometrie + Builds a regular solid + Erstellen einer Regelgeometrie - - + + CmdMeshDemolding - Interactive demolding direction - Interaktive Entformrichtung + Interactive demolding direction + Interaktive Entformrichtung - Mesh - Netz + Mesh + Netz - - + + CmdMeshDifference - Mesh - Netz + Mesh + Netz - Difference - Differenz + Difference + Differenz - - + + CmdMeshEvaluateFacet - Mesh - Netz + Mesh + Netz - Face info - Dreiecksinformation + Face info + Dreiecksinformation - Information about face - Information über Dreieck + Information about face + Information über Dreieck - - + + CmdMeshEvaluateSolid - Mesh - Netz + Mesh + Netz - Check solid mesh - Netz auf Solid überprüfen + Check solid mesh + Netz auf Solid überprüfen - Checks whether the mesh is a solid - Überprüft, ob das Netz ein Solid ist + Checks whether the mesh is a solid + Überprüft, ob das Netz ein Solid ist - - + + CmdMeshEvaluation - Mesh - Netz + Mesh + Netz - Opens a dialog to analyze and repair a mesh - Öffnet einen Dialog zum Analysieren und Reparieren eines Netzes + Opens a dialog to analyze and repair a mesh + Öffnet einen Dialog zum Analysieren und Reparieren eines Netzes - Evaluate && Repair mesh... - Netz auswerten && reparieren... + Evaluate && Repair mesh... + Netz auswerten && reparieren... - - + + CmdMeshExMakeMesh - Mesh - Netz + Mesh + Netz - Make a Box - Würfel erstellen + Make a Box + Würfel erstellen - - + + CmdMeshExMakeTool - Mesh - Netz + Mesh + Netz - Make a Tool - Werkzeug erstellen + Make a Tool + Werkzeug erstellen - - + + CmdMeshExMakeUnion - Mesh - Netz + Mesh + Netz - Make Union - Verschneiden + Make Union + Verschneiden - - + + CmdMeshExport - Mesh - Netz + Mesh + Netz - Export mesh... - Netz exportieren... + Export mesh... + Netz exportieren... - Exports a mesh to file - Netz in eine Datei exportieren + Exports a mesh to file + Netz in eine Datei exportieren - - + + CmdMeshFillInteractiveHole - Mesh - Netz + Mesh + Netz - Close hole - Loch schließen + Close hole + Loch schließen - Close holes interactively - Loch interaktiv schließen + Close holes interactively + Loch interaktiv schließen - - + + CmdMeshFillupHoles - Mesh - Netz + Mesh + Netz - Fill holes... - Löcher schließen... + Fill holes... + Löcher schließen... - Fill holes of the mesh - Schließt Löcher in dem Netz + Fill holes of the mesh + Schließt Löcher in dem Netz - - + + CmdMeshFlipNormals - Mesh - Netz + Mesh + Netz - Flip normals - Normalen umdrehen + Flip normals + Normalen umdrehen - Flips the normals of the mesh - Dreht die Dreiecksnormalen des Netzes um + Flips the normals of the mesh + Dreht die Dreiecksnormalen des Netzes um - - + + CmdMeshFromGeometry - Mesh - Netz + Mesh + Netz - Create mesh from geometry... - Erzeuge Netz aus Geometrie... + Create mesh from geometry... + Erzeuge Netz aus Geometrie... - Create mesh from the selected geometry - Erzeuge Netz aus selektierter Geometrie + Create mesh from the selected geometry + Erzeuge Netz aus selektierter Geometrie - - + + CmdMeshHarmonizeNormals - Mesh - Netz + Mesh + Netz - Harmonize normals - Normalen ausrichten + Harmonize normals + Normalen ausrichten - Harmonizes the normals of the mesh - Richtet die Normalen des Netzes aus + Harmonizes the normals of the mesh + Richtet die Normalen des Netzes aus - - + + CmdMeshImport - Mesh - Netz + Mesh + Netz - Import mesh... - Netz importieren... + Import mesh... + Netz importieren... - Imports a mesh from file - Importiert Netz aus einer Datei + Imports a mesh from file + Importiert Netz aus einer Datei - - + + CmdMeshIntersection - Mesh - Netz + Mesh + Netz - Intersection - Schnitt + Intersection + Schnitt - - + + CmdMeshPolyCut - Mesh - Netz + Mesh + Netz - Cut mesh - Netz schneiden + Cut mesh + Netz schneiden - Cuts a mesh with a picked polygon - Schneidet ein Netz mit einem ausgewählten Polygon + Cuts a mesh with a picked polygon + Schneidet ein Netz mit einem ausgewählten Polygon - - + + CmdMeshPolySegm - Mesh - Netz + Mesh + Netz - Make segment - Segment erzeugen + Make segment + Segment erzeugen - Creates a mesh segment - Erzeuge Netz-Segment + Creates a mesh segment + Erzeuge Netz-Segment - - + + CmdMeshPolySelect - Mesh - Netz + Mesh + Netz - Select mesh - Netz auswählen + Select mesh + Netz auswählen - Select an area of the mesh - Wähle einen Bereich des Netzes aus + Select an area of the mesh + Wähle einen Bereich des Netzes aus - - + + CmdMeshPolySplit - Mesh - Netz + Mesh + Netz - Split mesh - Netz auftrennen + Split mesh + Netz auftrennen - Splits a mesh into two meshes - Netz in zwei Teile trennen + Splits a mesh into two meshes + Netz in zwei Teile trennen - - + + CmdMeshPolyTrim - Mesh - Netz + Mesh + Netz - Trim mesh - + Trim mesh + Netz trimmen - Trims a mesh with a picked polygon - + Trims a mesh with a picked polygon + Ein Netz mit einem gewählten Polygon trimmen - - + + CmdMeshRemoveCompByHand - Mesh - Netz + Mesh + Netz - Remove components by hand... - Komponente von Hand entfernen... + Remove components by hand... + Komponente von Hand entfernen... - Mark a component to remove it from the mesh - Markiere Komponente um von Hand zu entfernen + Mark a component to remove it from the mesh + Markiere Komponente um von Hand zu entfernen - - + + CmdMeshRemoveComponents - Mesh - Netz + Mesh + Netz - Remove components... - Komponenten entfernen... + Remove components... + Komponenten entfernen... - Remove topologic independent components from the mesh - Entfernt topologisch unabhängige Komponenten aus dem Netz + Remove topologic independent components from the mesh + Entfernt topologisch unabhängige Komponenten aus dem Netz - - + + CmdMeshSegmentation - Mesh - Netz + Mesh + Netz - Create mesh segments... - + Create mesh segments... + Netz-Segmente erstellen... - Create mesh segments - + Create mesh segments + Netz-Segmente erstellen - - + + CmdMeshSmoothing - Mesh - Netz + Mesh + Netz - Smooth... - Glätten... + Smooth... + Glätten... - Smooth the selected meshes - Selektierte Netze glätten + Smooth the selected meshes + Selektierte Netze glätten - - + + CmdMeshToolMesh - Mesh - Netz + Mesh + Netz - Segment by tool mesh - Segmentieren + Segment by tool mesh + Segmentieren - Creates a segment from a given tool mesh - Segment mit Hilfe eines gegebenen Hilfsnetzes erstellen + Creates a segment from a given tool mesh + Segment mit Hilfe eines gegebenen Hilfsnetzes erstellen - - + + CmdMeshTransform - Mesh - Netz + Mesh + Netz - Transform mesh - Netz transformieren + Transform mesh + Netz transformieren - Rotate or move a mesh - Dreht oder verschiebt ein Netz + Rotate or move a mesh + Dreht oder verschiebt ein Netz - - + + CmdMeshUnion - Mesh - Netz + Mesh + Netz - Union - Vereinigung + Union + Vereinigung - - + + CmdMeshVertexCurvature - Mesh - Netz + Mesh + Netz - Calculates the curvature of the vertices of a mesh - Berechnet die Krümmungen in den Vertexen eines Netzes + Calculates the curvature of the vertices of a mesh + Berechnet die Krümmungen in den Vertexen eines Netzes - Curvature plot - Krümmungsplot + Curvature plot + Krümmungsplot - - + + CmdMeshVertexCurvatureInfo - Mesh - Netz + Mesh + Netz - Curvature info - Krümmungsinformation + Curvature info + Krümmungsinformation - Information about curvature - Informationen über Krümmung + Information about curvature + Informationen über Krümmung - - + + MeshGui::DlgEvaluateMesh - &Help - &Hilfe + &Help + &Hilfe - F1 - F1 + F1 + F1 - &Close - Schl&ießen + &Close + Schl&ießen - Alt+C - Alt+S + Alt+C + Alt+S - Mesh information - Informationen zum Netz + Mesh information + Informationen zum Netz - No information - Keine Informationen + No information + Keine Informationen - Number of points: - Anzahl Punkte: + Number of points: + Anzahl Punkte: - Number of edges: - Anzahl Kanten: + Number of edges: + Anzahl Kanten: - Refresh - Erneut laden + Refresh + Erneut laden - Analyze - Analysieren + Analyze + Analysieren - Repair - Reparieren + Repair + Reparieren - Orientation - Orientierung + Orientation + Orientierung - Degenerated faces - Entartete Facetten + Degenerated faces + Entartete Facetten - Face indices - Facettenindexe + Face indices + Facettenindexe - Number of faces: - Anzahl Facetten: + Number of faces: + Anzahl Facetten: - Duplicated faces - Doppelte Dreiecke + Duplicated faces + Doppelte Dreiecke - Duplicated points - Doppelte Punkte + Duplicated points + Doppelte Punkte - Non-manifolds - Nichtmannigfaltigkeiten + Non-manifolds + Nichtmannigfaltigkeiten - Self-intersections - Selbstdurchdringungen + Self-intersections + Selbstdurchdringungen - All above tests together - Alle Tests zusammen + All above tests together + Alle Tests zusammen - Repetitive repair - Reparatur wiederholen + Repetitive repair + Reparatur wiederholen - Evaluate & Repair Mesh - Netz auswerten & reparieren + Evaluate & Repair Mesh + Netz auswerten & reparieren - Folds on surface - Oberflächenfalten + Folds on surface + Oberflächenfalten - - + + MeshGui::DlgEvaluateMeshImp - No information - Keine Informationen + No information + Keine Informationen - Invalid neighbour indices - Ungültige Nachbarindexe + Invalid neighbour indices + Ungültige Nachbarindexe - Invalid face indices - Ungültige Facettenindexe + Invalid face indices + Ungültige Facettenindexe - Invalid point indices - Ungültige Punktindexe + Invalid point indices + Ungültige Punktindexe - Multiple point indices - Mehrfache Punktindexe + Multiple point indices + Mehrfache Punktindexe - Non-manifolds - Nichtmannigfaltigkeiten + Non-manifolds + Nichtmannigfaltigkeiten - Cannot remove non-manifolds - Nichtmannigfaltigkeiten können nicht entfernt werden + Cannot remove non-manifolds + Nichtmannigfaltigkeiten können nicht entfernt werden - No selection - Keine Auswahl + No selection + Keine Auswahl - No flipped normals - Keine verdrehten Normalen + No flipped normals + Keine verdrehten Normalen - %1 flipped normals - %1 verdrehte Normalen + %1 flipped normals + %1 verdrehte Normalen - No non-manifolds - Keine Nichtmannigfaltigkeiten + No non-manifolds + Keine Nichtmannigfaltigkeiten - %1 non-manifolds - %1 Nichtmannigfaltigkeiten + %1 non-manifolds + %1 Nichtmannigfaltigkeiten - No invalid indices - Keine ungültige Indexe + No invalid indices + Keine ungültige Indexe - No degenerations - Keine Entartungen + No degenerations + Keine Entartungen - %1 degenerated faces - %1 entartete Facetten + %1 degenerated faces + %1 entartete Facetten - No duplicated faces - Keine doppelten Facetten + No duplicated faces + Keine doppelten Facetten - %1 duplicated faces - %1 doppelte Facetten + %1 duplicated faces + %1 doppelte Facetten - No duplicated points - Keine doppelten Punkte + No duplicated points + Keine doppelten Punkte - Duplicated points - Doppelte Punkte + Duplicated points + Doppelte Punkte - Orientation - Orientierung + Orientation + Orientierung - Indices - Indexe + Indices + Indexe - Degenerations - Degenerierungen + Degenerations + Degenerierungen - Duplicated faces - Doppelte Dreiecke + Duplicated faces + Doppelte Dreiecke - No self-intersections - Keine Selbstdurchdringungen + No self-intersections + Keine Selbstdurchdringungen - Self-intersections - Selbstdurchdringungen + Self-intersections + Selbstdurchdringungen - Mesh repair - Netz reparieren + Mesh repair + Netz reparieren - Flipped normals found - Verdrehte Normalen gefunden + Flipped normals found + Verdrehte Normalen gefunden - Check failed due to folds on the surface. + Check failed due to folds on the surface. Please run the command to repair folds first - Überprüfung wegen Falten in der Oberfläche fehlgeschlagen. + Überprüfung wegen Falten in der Oberfläche fehlgeschlagen. Bitte starten Sie vorher den Befehl zum Reparieren von Falten - No folds on surface - Keine Oberflächenfalten + No folds on surface + Keine Oberflächenfalten - %1 folds on surface - %1 Oberflächenfalten + %1 folds on surface + %1 Oberflächenfalten - Folds - Falten + Folds + Falten - - + + MeshGui::DlgRegularSolid - Regular Solid - Regelgeometrie + Regular Solid + Regelgeometrie - &Create - &Erstellen + &Create + &Erstellen - Alt+C - Alt+S + Alt+C + Alt+S - Cl&ose - Schl&ießen + Cl&ose + Schl&ießen - Alt+O - Alt+I + Alt+O + Alt+I - Solid: - Körper: + Solid: + Körper: - Cube - Würfel + Cube + Würfel - Cylinder - Zylinder + Cylinder + Zylinder - Cone - Kegel + Cone + Kegel - Sphere - Kugel + Sphere + Kugel - Ellipsoid - Ellipsoid + Ellipsoid + Ellipsoid - Torus - Torus + Torus + Torus - Height: - Höhe: + Height: + Höhe: - Length: - Länge: + Length: + Länge: - Width: - Breite: + Width: + Breite: - Radius: - Radius: + Radius: + Radius: - Closed - Geschlossen + Closed + Geschlossen - Sampling: - Abtastung: + Sampling: + Abtastung: - Edge length: - Kantenlänge: + Edge length: + Kantenlänge: - Radius 1: - Radius 1: + Radius 1: + Radius 1: - Radius 2: - Radius 2: + Radius 2: + Radius 2: - - + + MeshGui::DlgRegularSolidImp - Create %1 - Erstelle %1 + Create %1 + Erstelle %1 - No active document - Kein aktives Dokument + No active document + Kein aktives Dokument - - + + MeshGui::DlgSettingsMeshView - Mesh view - Netz + Mesh view + Netz - Two-side rendering - Doppelseitiges Rendern + Two-side rendering + Doppelseitiges Rendern - Backface color - Untergrundfarbe + Backface color + Untergrundfarbe - Smoothing - Glättung + Smoothing + Glättung - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Das ist der kleinste Winkel zwischen zwei Dreiecken zur Berechenung beider Normalen für das Flat-Shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Falls der Winkel zweier benachbarter dreiecke kleiner als der Knitterwinkel ist, werden die Dreiecke um die gemeinsame Kante geglättet gerendert.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Das ist der kleinste Winkel zwischen zwei Dreiecken zur Berechenung beider Normalen für das Flat-Shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Falls der Winkel zweier benachbarter dreiecke kleiner als der Knitterwinkel ist, werden die Dreiecke um die gemeinsame Kante geglättet gerendert.</p></body></html> - Crease angle - Knitterwinkel + Crease angle + Knitterwinkel - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definiert das Aussehen von Oberflächen.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Bei Flat-Shading werden die Flächennormalen nicht pro Vertex gesetzt, was zu unnatürlichem Aussehen führen kann, während Phong-Shading zu glatterem Aussehen führt. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Falls diese Option gesetzt ist, wird Phong-Shading verwendet, andernfalls wird Flat-Shading verwendet.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definiert das Aussehen von Oberflächen.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Bei Flat-Shading werden die Flächennormalen nicht pro Vertex gesetzt, was zu unnatürlichem Aussehen führen kann, während Phong-Shading zu glatterem Aussehen führt. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Falls diese Option gesetzt ist, wird Phong-Shading verwendet, andernfalls wird Flat-Shading verwendet.</p></body></html> - Define normal per vertex - Definiere Normale pro Vertex - - - ° - ° + Define normal per vertex + Definiere Normale pro Vertex - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hinweis</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Die Angabe der Normalen per Vertex wird auch <span style=" font-style:italic;">Phong shading</span> genannt,</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">während die Angabe der Normalen pro Fläche </span>Flat shading<span style=" font-style:normal;"> gennant wird.</span></p></body></html> + ° + ° - Default appearance for new meshes - Standardmäßiges Erscheinungsbild für neue Netze + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hinweis</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Die Angabe der Normalen per Vertex wird auch <span style=" font-style:italic;">Phong shading</span> genannt,</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">während die Angabe der Normalen pro Fläche </span>Flat shading<span style=" font-style:normal;"> gennant wird.</span></p></body></html> - Default line color - Standard-Kantenfarbe + Default appearance for new meshes + Standardmäßiges Erscheinungsbild für neue Netze - Mesh transparency - Transparenz des Netzes + Default line color + Standard-Kantenfarbe - Default mesh color - Standard-Flächenfarbe + Mesh transparency + Transparenz des Netzes - Show bounding-box for highlighted or selected meshes - Bounding-Box für gehighlightete oder selekierte Netze anzeigen + Default mesh color + Standard-Flächenfarbe - Line transparency - Transparenz der Kanten + Show bounding-box for highlighted or selected meshes + Bounding-Box für gehighlightete oder selekierte Netze anzeigen - - + + Line transparency + Transparenz der Kanten + + + MeshGui::DlgSmoothing - Smoothing - Glättung + Smoothing + Glättung - Method - Methode + Method + Methode - Taubin - Taubin + Taubin + Taubin - Laplace - Laplace + Laplace + Laplace - Parameter - Parameter + Parameter + Parameter - Iterations: - Iterationen: + Iterations: + Iterationen: - Lambda: - Lambda: + Lambda: + Lambda: - Mu: - Mu: + Mu: + Mu: - - + + MeshGui::MeshFaceAddition - Add triangle - Dreieck hinzufügen + Add triangle + Dreieck hinzufügen - Flip normal - Normalen umdrehen + Flip normal + Normalen umdrehen - Clear - Löschen + Clear + Löschen - Finish - Fertig + Finish + Fertig - - + + MeshGui::RemoveComponents - Remove components - Komponenten entfernen + Remove components + Komponenten entfernen - Select - Auswählen + Select + Auswählen - Select whole component - Ganze Komponente auswählen + Select whole component + Ganze Komponente auswählen - Pick triangle - Dreieck aufnehmen + Pick triangle + Dreieck aufnehmen - < faces than - < Dreiecke als + < faces than + < Dreiecke als - Region - Bereich + Region + Bereich - Components - Komponenten + Components + Komponenten - All - Alles + All + Alles - Deselect - Auswahl aufheben + Deselect + Auswahl aufheben - Deselect whole component - Ganze Komponente abwählen + Deselect whole component + Ganze Komponente abwählen - > faces than - > Dreiecke als + > faces than + > Dreiecke als - Region options - Einstellungen + Region options + Einstellungen - Respect only triangles with normals facing screen - Nur Dreiecke mit Normalen beachten, die zum Bildschirm zeigen + Respect only triangles with normals facing screen + Nur Dreiecke mit Normalen beachten, die zum Bildschirm zeigen - Respect only visible triangles - Nur sichtbare Dreiecke berücksichtigen + Respect only visible triangles + Nur sichtbare Dreiecke berücksichtigen - - + + MeshGui::Segmentation - Mesh segmentation - + Mesh segmentation + Netz Segmentierung - Smooth mesh - + Smooth mesh + Netz glätten - Plane - + Plane + Ebene - Tolerance - + Tolerance + Toleranz - Minumum number of faces - + Minumum number of faces + Minimale Anzahl von Dreiecken - Cylinder - Zylinder + Cylinder + Zylinder - Radius - + Radius + Radius - Tolerance (Flat) - + Tolerance (Flat) + Toleranz (Flach) - Tolerance (Curved) - + Tolerance (Curved) + Toleranz (gekrümmt) - Minimum number of faces - + Minimum number of faces + Minimale Anzahl von Dreiecken - Sphere - Kugel + Sphere + Kugel - - + + MeshGui::TaskRemoveComponents - Delete - Löschen + Delete + Löschen - Invert - Umkehren + Invert + Umkehren - - + + QDockWidget - Evaluate & Repair Mesh - Netz auswerten & reparieren + Evaluate & Repair Mesh + Netz auswerten & reparieren - - + + QObject - Import mesh - Netz importieren + Import mesh + Netz importieren - Export mesh - Netz exportieren + Export mesh + Netz exportieren - Solid Mesh - Fester Körper + Solid Mesh + Fester Körper - Boundings - Abmessungen + Boundings + Abmessungen - Fill holes - Löcher schließen + Fill holes + Löcher schließen - Fill holes with maximum number of edges: - Löcher schließen mit maximaler Anzahl Kanten: + Fill holes with maximum number of edges: + Löcher schließen mit maximaler Anzahl Kanten: - Binary STL (*.stl) - Binäres STL (*.stl) + Binary STL (*.stl) + Binäres STL (*.stl) - ASCII STL (*.ast) - ASCII STL (*.ast) + ASCII STL (*.ast) + ASCII STL (*.ast) - Binary Mesh (*.bms) - Netz-Binärformat (*.bms) + Binary Mesh (*.bms) + Netz-Binärformat (*.bms) - Alias Mesh (*.obj) - Alias-Format (*.obj) + Alias Mesh (*.obj) + Alias-Format (*.obj) - Inventor V2.1 ascii (*.iv) - Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*.iv) - All Files (*.*) - Alle Dateien (*.*) + All Files (*.*) + Alle Dateien (*.*) - ASCII STL (*.stl) - ASCII STL (*.stl) + ASCII STL (*.stl) + ASCII STL (*.stl) - VRML V2.0 (*.wrl *.vrml) - VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) - Compressed VRML 2.0 (*.wrz) - Komprimiertes VRML 2.0 (*.wrz) + Compressed VRML 2.0 (*.wrz) + Komprimiertes VRML 2.0 (*.wrz) - Nastran (*.nas *.bdf) - Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) - Python module def (*.py) - Python-Modul (*.py) + Python module def (*.py) + Python-Modul (*.py) - Meshing Tolerance - Toleranz + Meshing Tolerance + Toleranz - Enter tolerance for meshing geometry: - Toleranz zum Erzeugen von Dreiecksnetz eingeben: + Enter tolerance for meshing geometry: + Toleranz zum Erzeugen von Dreiecksnetz eingeben: - The mesh '%1' is a solid. - Das Netz '%1' ist ein Solid. + The mesh '%1' is a solid. + Das Netz '%1' ist ein Solid. - The mesh '%1' is not a solid. - Das Netz '%1' ist kein Solid. + The mesh '%1' is not a solid. + Das Netz '%1' ist kein Solid. - Min=<%1,%2,%3> + Min=<%1,%2,%3> Max=<%4,%5,%6> - Min=<%1,%2,%3> + Min=<%1,%2,%3> Max=<%4,%5,%6> - [Points: %1, Edges: %2 Faces: %3] - [Punkte: %1, Kanten: %2 Dreiecke: %3] + [Points: %1, Edges: %2 Faces: %3] + [Punkte: %1, Kanten: %2 Dreiecke: %3] - Leave info mode - Info-Modus verlassen + Leave info mode + Info-Modus verlassen - Index: %1 - Index: %1 + Index: %1 + Index: %1 - Leave hole-filling mode - Löcher-Schließen-Modus verlassen + Leave hole-filling mode + Löcher-Schließen-Modus verlassen - Leave removal mode - Entfernen-Modus verlassen + Leave removal mode + Entfernen-Modus verlassen - All Mesh Files (*.stl *.ast *.bms *.obj *.ply) - Alle Mesh Formate (*.stl *.ast *.bms *.obj *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + Alle Mesh Formate (*.stl *.ast *.bms *.obj *.ply) - Stanford Polygon (*.ply) - Stanford Polygon (*.ply) + Stanford Polygon (*.ply) + Stanford Polygon (*.ply) - Object File Format (*.off) - Object File Format (*.off) + Object File Format (*.off) + Object File Format (*.off) - Standford Polygon (*.ply) - Standford Polygon (*.ply) + Standford Polygon (*.ply) + Standford Polygon (*.ply) - Delete selected faces - Selektierte Dreiecke löschen + Delete selected faces + Selektierte Dreiecke löschen - Clear selected faces - Auswahl aufheben + Clear selected faces + Auswahl aufheben - Annotation - Anmerkung + Annotation + Anmerkung - All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + Alle Netz-Dateien (*.stl *.ast *.bms *.obj *.off *.ply) - - + + Workbench - Analyze - Analysieren + Analyze + Analysieren - Boolean - Bool'sche Operationen + Boolean + Bool'sche Operationen - &Meshes - &Netze + &Meshes + &Netze - Mesh tools - Netz-Werkzeuge + Mesh tools + Netz-Werkzeuge - + diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_es.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_es-ES.qm similarity index 86% rename from src/Mod/Mesh/Gui/Resources/translations/Mesh_es.qm rename to src/Mod/Mesh/Gui/Resources/translations/Mesh_es-ES.qm index 8820d1c44..fb38500a3 100644 Binary files a/src/Mod/Mesh/Gui/Resources/translations/Mesh_es.qm and b/src/Mod/Mesh/Gui/Resources/translations/Mesh_es-ES.qm differ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_es-ES.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_es-ES.ts new file mode 100644 index 000000000..e03f81f1d --- /dev/null +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_es-ES.ts @@ -0,0 +1,1201 @@ + + + + + CmdMeshAddFacet + + Mesh + Malla + + + Add triangle + Añadir triángulo + + + Add triangle manually to a mesh + Añadir triángulo manualmente a malla + + + + CmdMeshBoundingBox + + Mesh + Malla + + + Boundings info... + Información de límites... + + + Shows the boundings of the selected mesh + Muestra los límites de la malla seleccionada + + + + CmdMeshBuildRegularSolid + + Mesh + Malla + + + Regular solid... + Sólido regular... + + + Builds a regular solid + Crea un sólido regular + + + + CmdMeshDemolding + + Interactive demolding direction + Dirección de desmoldeo interactiva + + + Mesh + Malla + + + + CmdMeshDifference + + Mesh + Malla + + + Difference + Diferencia + + + + CmdMeshEvaluateFacet + + Mesh + Malla + + + Face info + Información de la cara + + + Information about face + Información de la cara + + + + CmdMeshEvaluateSolid + + Mesh + Malla + + + Check solid mesh + Comprobar la malla del sólido + + + Checks whether the mesh is a solid + Comprueba si la malla es un sólido + + + + CmdMeshEvaluation + + Mesh + Malla + + + Opens a dialog to analyze and repair a mesh + Abre un letrero de diálogo para analizar y reparar una malla + + + Evaluate && Repair mesh... + Evaluar y reparar malla... + + + + CmdMeshExMakeMesh + + Mesh + Malla + + + Make a Box + Hacer un cuadro + + + + CmdMeshExMakeTool + + Mesh + Malla + + + Make a Tool + Crea una herramienta + + + + CmdMeshExMakeUnion + + Mesh + Malla + + + Make Union + Crear unión + + + + CmdMeshExport + + Mesh + Malla + + + Export mesh... + Esportar malla... + + + Exports a mesh to file + Esporta la malla a un archivo + + + + CmdMeshFillInteractiveHole + + Mesh + Malla + + + Close hole + Tapa agujero + + + Close holes interactively + Tapa un agujero interactivamente + + + + CmdMeshFillupHoles + + Mesh + Malla + + + Fill holes... + Rellenar agujeros... + + + Fill holes of the mesh + Rellenar agujeros de la malla + + + + CmdMeshFlipNormals + + Mesh + Malla + + + Flip normals + Invertir normales + + + Flips the normals of the mesh + Invierte la normal de la malla + + + + CmdMeshFromGeometry + + Mesh + Malla + + + Create mesh from geometry... + Crea una malla a partir de la geometría... + + + Create mesh from the selected geometry + Crea una malla a partir de la geometría seleccionada + + + + CmdMeshHarmonizeNormals + + Mesh + Malla + + + Harmonize normals + Armonizar normales + + + Harmonizes the normals of the mesh + Armonizar las normales de la malla + + + + CmdMeshImport + + Mesh + Malla + + + Import mesh... + Importar malla... + + + Imports a mesh from file + Importa una malla de un archivo + + + + CmdMeshIntersection + + Mesh + Malla + + + Intersection + Intersección + + + + CmdMeshPolyCut + + Mesh + Malla + + + Cut mesh + Cortar malla + + + Cuts a mesh with a picked polygon + Corta una malla con un poligono designado + + + + CmdMeshPolySegm + + Mesh + Malla + + + Make segment + Hacer segmento + + + Creates a mesh segment + Crea un segmento de la malla + + + + CmdMeshPolySelect + + Mesh + Malla + + + Select mesh + Seleccionar malla + + + Select an area of the mesh + Seleccionar un área de la malla + + + + CmdMeshPolySplit + + Mesh + Malla + + + Split mesh + Dividir malla + + + Splits a mesh into two meshes + Divide la malla en dos + + + + CmdMeshPolyTrim + + Mesh + Malla + + + Trim mesh + Recortar malla + + + Trims a mesh with a picked polygon + Recorta una malla con un polígono escogido + + + + CmdMeshRemoveCompByHand + + Mesh + Malla + + + Remove components by hand... + Eliminar componentes a mano... + + + Mark a component to remove it from the mesh + Marcar un componente para eliminarlo de la malla + + + + CmdMeshRemoveComponents + + Mesh + Malla + + + Remove components... + Eliminar componentes... + + + Remove topologic independent components from the mesh + Eliminar componentes topológicos independientes de la malla + + + + CmdMeshSegmentation + + Mesh + Malla + + + Create mesh segments... + Crear segmentos de malla... + + + Create mesh segments + Crear segmentos de malla + + + + CmdMeshSmoothing + + Mesh + Malla + + + Smooth... + Suavizar... + + + Smooth the selected meshes + Suaviza las mallas seleccionadas + + + + CmdMeshToolMesh + + Mesh + Malla + + + Segment by tool mesh + Segmento de la herramienta de malla + + + Creates a segment from a given tool mesh + Crea un segmento desde una herramienta de malla dada + + + + CmdMeshTransform + + Mesh + Malla + + + Transform mesh + Trasformar malla + + + Rotate or move a mesh + Rotar o mover malla + + + + CmdMeshUnion + + Mesh + Malla + + + Union + Unión + + + + CmdMeshVertexCurvature + + Mesh + Malla + + + Calculates the curvature of the vertices of a mesh + Calcula la curvatura de los vértices de una malla + + + Curvature plot + Traza la curvatura + + + + CmdMeshVertexCurvatureInfo + + Mesh + Malla + + + Curvature info + Información de la curvatura + + + Information about curvature + Información de la curvatura + + + + MeshGui::DlgEvaluateMesh + + &Help + &Ayuda + + + F1 + F1 + + + &Close + &Cerrar + + + Alt+C + Alt+C + + + Mesh information + Información de la malla + + + No information + Ninguna información + + + Number of points: + Número de puntos: + + + Number of edges: + Número de bordes: + + + Refresh + Actualizar + + + Analyze + Analizar + + + Repair + Reparar + + + Orientation + Orientación + + + Degenerated faces + Caras degeneradas + + + Face indices + Índices de cara + + + Number of faces: + Número de caras: + + + Duplicated faces + Caras duplicadas + + + Duplicated points + Puntos duplicados + + + Non-manifolds + No multiplicidad + + + Self-intersections + Autointersecciones + + + All above tests together + Todo sobre los test + + + Repetitive repair + Reparación repetitiva + + + Evaluate & Repair Mesh + Evaluar y reparar malla + + + Folds on surface + Pliegues en superficie + + + + MeshGui::DlgEvaluateMeshImp + + No information + Ninguna información + + + Invalid neighbour indices + Índices vecinos inválidos + + + Invalid face indices + índices de cara inválidos + + + Invalid point indices + Índices de puntos inválidos + + + Multiple point indices + índices de punto múltiples + + + Non-manifolds + No multiplicidad + + + Cannot remove non-manifolds + No es posible quitar la no multiplicidad + + + No selection + Ninguna selección + + + No flipped normals + Ninguna normal invertida + + + %1 flipped normals + %1 normales invertidas + + + No non-manifolds + Ninguna no multiplicidad + + + %1 non-manifolds + %1 no multiplicidad + + + No invalid indices + Ningún índice inválido + + + No degenerations + ninguna degeneración + + + %1 degenerated faces + %1 caras degeneradas + + + No duplicated faces + Ninguna cara duplicada + + + %1 duplicated faces + %1 caras duplicadas + + + No duplicated points + Ningún punto duplicado + + + Duplicated points + Puntos duplicados + + + Orientation + Orientación + + + Indices + Índices + + + Degenerations + Degeneraciones + + + Duplicated faces + Caras duplicadas + + + No self-intersections + Ninguna autointersección + + + Self-intersections + Autointersecciones + + + Mesh repair + Reparación de malla + + + Flipped normals found + Normales invertidas encontradas + + + Check failed due to folds on the surface. +Please run the command to repair folds first + La comprobación falló debido a pliegues en la superficie. Vuelva a ejecutar el comando para reparar los pliegues primero + + + No folds on surface + No hay pliegues en superficie + + + %1 folds on surface + %1 pliegues en superficie + + + Folds + Pliegues + + + + MeshGui::DlgRegularSolid + + Regular Solid + Sólido regular + + + &Create + &Crear + + + Alt+C + Alt+C + + + Cl&ose + &Cerrar + + + Alt+O + ALT+O + + + Solid: + Sólido: + + + Cube + Cubo + + + Cylinder + Cilindro + + + Cone + Cono + + + Sphere + Esféra + + + Ellipsoid + Elipsoide + + + Torus + Toro + + + Height: + Altura: + + + Length: + Longitud: + + + Width: + Ancho: + + + Radius: + Radio: + + + Closed + Cerrado + + + Sampling: + Muestreo: + + + Edge length: + Longitud de borde: + + + Radius 1: + Radio 1: + + + Radius 2: + Radio 2: + + + + MeshGui::DlgRegularSolidImp + + Create %1 + Crear %1 + + + No active document + Ningún documento activo + + + + MeshGui::DlgSettingsMeshView + + Mesh view + Vista de malla + + + Two-side rendering + Renderizado a dos caras + + + Backface color + Color de la cara posterior + + + Smoothing + Suavizado + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Este bes el menor ángulo entre dos caras donde las normales son calculadas para hacer un sombreado plano.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Si el ángulo entre las normales de dos caras vecinas es menor que el ángulo de pliegue, las caras serán suavizadas por su borde común.</p></body></html> + + + Crease angle + Ángulo de pliegue + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Sombreado plano/Sombreado Phong</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Define la apariencia de las superficies.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Con sombreado plano las normales de las superficies no están definidas por vértice lo que lleva a una apariencia no real para superficies curvas mientras que usando el sombreado Phong se consigue una apariencia más suave. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Si esta opción está definida se utiliza el sombreado Phong, si no está activada se utiliza el sombreado plano.</p></body></html> + + + Define normal per vertex + Definir la normal por vértice + + + ° + ° + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definiendo las normales por vértice también se llama <span style=" font-style:italic;">Sombreado Phong</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">mientras definiendo las normales por cara se llama </span>Sombreado plano<span style=" font-style:normal;">.</span></p></body></html> + + + Default appearance for new meshes + Apariencia predeterminada para nuevas mallas + + + Default line color + Color de línea predeterminado + + + Mesh transparency + Transparencia de malla + + + Default mesh color + Color de malla predeterminado + + + Show bounding-box for highlighted or selected meshes + Mostrar cuadro delimitador para mallas resaltadas o seleccionadas + + + Line transparency + Transparencia de línea + + + + MeshGui::DlgSmoothing + + Smoothing + Suavizado + + + Method + Método + + + Taubin + Taubin + + + Laplace + Laplace + + + Parameter + Parámetro + + + Iterations: + Iteraciones: + + + Lambda: + Lambda: + + + Mu: + Mu: + + + + MeshGui::MeshFaceAddition + + Add triangle + Añadir triángulo + + + Flip normal + Invertir normal + + + Clear + Borrar + + + Finish + Finalizar + + + + MeshGui::RemoveComponents + + Remove components + Eliminar componentes + + + Select + Seleccionar + + + Select whole component + Seleccionar componente entero + + + Pick triangle + Elija triángulo + + + < faces than + < nº de caras que + + + Region + Región + + + Components + Componentes + + + All + Todo + + + Deselect + Deseleccionar + + + Deselect whole component + Deseleccionar componente entero + + + > faces than + > nº caras que + + + Region options + Opciones de región + + + Respect only triangles with normals facing screen + Únicamente respecto a triángulos con las normales frente a pantalla + + + Respect only visible triangles + ünicamente respecto a triángulos visibles + + + + MeshGui::Segmentation + + Mesh segmentation + Segmentación de malla + + + Smooth mesh + Malla lisa + + + Plane + Plano + + + Tolerance + Tolerancia + + + Minumum number of faces + Número mínimo de caras + + + Cylinder + Cilindro + + + Radius + Radio + + + Tolerance (Flat) + Tolerancia (alisado) + + + Tolerance (Curved) + Tolerancia (curvado) + + + Minimum number of faces + Número mínimo de caras + + + Sphere + Esféra + + + + MeshGui::TaskRemoveComponents + + Delete + Eliminar + + + Invert + Invertir + + + + QDockWidget + + Evaluate & Repair Mesh + Evaluar y reparar malla + + + + QObject + + Import mesh + Importar malla + + + Export mesh + Esportar malla + + + Solid Mesh + Mallado sólido + + + Boundings + Límites + + + Fill holes + Rellenar agujeros + + + Fill holes with maximum number of edges: + Rellena los agujeros con número máximo de bordes: + + + Binary STL (*.stl) + STL binario (*.stl) + + + ASCII STL (*.ast) + STL ASCII(*.ast) + + + Binary Mesh (*.bms) + Malla-Binario (*.bms) + + + Alias Mesh (*.obj) + Alias malla (*.obj) + + + Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii(*.iv) + + + All Files (*.*) + Todos los archivos (*.*) + + + ASCII STL (*.stl) + ASCII STL (*.stl) + + + VRML V2.0 (*.wrl *.vrml) + VRML V2.0(*.wrl *.vrml) + + + Compressed VRML 2.0 (*.wrz) + VRML 2.0 Comprimido (*.wrz) + + + Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) + + + Python module def (*.py) + Definición de Modulo Python (*.py) + + + Meshing Tolerance + Tolerancia de mallado + + + Enter tolerance for meshing geometry: + Introduzca la tolerancia para la geometría de mallado: + + + The mesh '%1' is a solid. + La malla '%1' es un sólido. + + + The mesh '%1' is not a solid. + La malla '%1' no es un sólido. + + + Min=<%1,%2,%3> + +Max=<%4,%5,%6> + Mín=<%1,%2,%3> Máx=<%4,%5,%6> + + + [Points: %1, Edges: %2 Faces: %3] + [Puntos: %1, Bordes: %2 Caras: %3] + + + Leave info mode + Permitir modo info + + + Index: %1 + Índice: %1 + + + Leave hole-filling mode + Permitir modo de rellenado de agujeros + + + Leave removal mode + Permitir modo de eliminación + + + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + Todos los archivos de malla (*.stl *.ast *.bms *.obj *.ply) + + + Stanford Polygon (*.ply) + Standford Polygon(*.ply) + + + Object File Format (*.off) + Object File Format(*.off) + + + Standford Polygon (*.ply) + Standford Polygon(*.ply) + + + Delete selected faces + Eliminar caras seleccionadas + + + Clear selected faces + Borrar caras seleccionadas + + + Annotation + Anotación + + + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + Todos los archivos de malla (*.stl *.ast *.bms *.obj *.off * .ply) + + + + Workbench + + Analyze + Analizar + + + Boolean + Booleano + + + &Meshes + &Malla + + + Mesh tools + Herramientas de malla + + + diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_es.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_es.ts deleted file mode 100644 index 431366926..000000000 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_es.ts +++ /dev/null @@ -1,1201 +0,0 @@ - - - - - CmdMeshAddFacet - - Mesh - Malla - - - Add triangle - Añadir triángulo - - - Add triangle manually to a mesh - Añadir triángulo manualmente a malla - - - - CmdMeshBoundingBox - - Mesh - Malla - - - Boundings info... - Información de límites... - - - Shows the boundings of the selected mesh - Muestra los límites de la malla seleccionada - - - - CmdMeshBuildRegularSolid - - Mesh - Malla - - - Regular solid... - Sólido regular... - - - Builds a regular solid - Crea un sólido regular - - - - CmdMeshDemolding - - Interactive demolding direction - Dirección de desmoldeo interactiva - - - Mesh - Malla - - - - CmdMeshDifference - - Mesh - Malla - - - Difference - Diferencia - - - - CmdMeshEvaluateFacet - - Mesh - Malla - - - Face info - Información de la cara - - - Information about face - Información de la cara - - - - CmdMeshEvaluateSolid - - Mesh - Malla - - - Check solid mesh - Comprobar la malla del sólido - - - Checks whether the mesh is a solid - Comprueba si la malla es un sólido - - - - CmdMeshEvaluation - - Mesh - Malla - - - Opens a dialog to analyze and repair a mesh - Abre un letrero de diálogo para analizar y reparar una malla - - - Evaluate && Repair mesh... - Evaluar y reparar malla... - - - - CmdMeshExMakeMesh - - Mesh - Malla - - - Make a Box - Hacer un cuadro - - - - CmdMeshExMakeTool - - Mesh - Malla - - - Make a Tool - Crea una herramienta - - - - CmdMeshExMakeUnion - - Mesh - Malla - - - Make Union - Crear unión - - - - CmdMeshExport - - Mesh - Malla - - - Export mesh... - Esportar malla... - - - Exports a mesh to file - Esporta la malla a un archivo - - - - CmdMeshFillInteractiveHole - - Mesh - Malla - - - Close hole - Tapa agujero - - - Close holes interactively - Tapa un agujero interactivamente - - - - CmdMeshFillupHoles - - Mesh - Malla - - - Fill holes... - Rellenar agujeros... - - - Fill holes of the mesh - Rellenar agujeros de la malla - - - - CmdMeshFlipNormals - - Mesh - Malla - - - Flip normals - Invertir normales - - - Flips the normals of the mesh - Invierte la normal de la malla - - - - CmdMeshFromGeometry - - Mesh - Malla - - - Create mesh from geometry... - Crea una malla a partir de la geometría... - - - Create mesh from the selected geometry - Crea una malla a partir de la geometría seleccionada - - - - CmdMeshHarmonizeNormals - - Mesh - Malla - - - Harmonize normals - Armonizar normales - - - Harmonizes the normals of the mesh - Armonizar las normales de la malla - - - - CmdMeshImport - - Mesh - Malla - - - Import mesh... - Importar malla... - - - Imports a mesh from file - Importa una malla de un archivo - - - - CmdMeshIntersection - - Mesh - Malla - - - Intersection - Intersección - - - - CmdMeshPolyCut - - Mesh - Malla - - - Cut mesh - Cortar malla - - - Cuts a mesh with a picked polygon - Corta una malla con un poligono designado - - - - CmdMeshPolySegm - - Mesh - Malla - - - Make segment - Hacer segmento - - - Creates a mesh segment - Crea un segmento de la malla - - - - CmdMeshPolySelect - - Mesh - Malla - - - Select mesh - Seleccionar malla - - - Select an area of the mesh - Seleccionar un área de la malla - - - - CmdMeshPolySplit - - Mesh - Malla - - - Split mesh - Dividir malla - - - Splits a mesh into two meshes - Divide la malla en dos - - - - CmdMeshPolyTrim - - Mesh - Malla - - - Trim mesh - - - - Trims a mesh with a picked polygon - - - - - CmdMeshRemoveCompByHand - - Mesh - Malla - - - Remove components by hand... - Eliminar componentes a mano... - - - Mark a component to remove it from the mesh - Marcar un componente para eliminarlo de la malla - - - - CmdMeshRemoveComponents - - Mesh - Malla - - - Remove components... - Eliminar componentes... - - - Remove topologic independent components from the mesh - Eliminar componentes topológicos independientes de la malla - - - - CmdMeshSegmentation - - Mesh - Malla - - - Create mesh segments... - - - - Create mesh segments - - - - - CmdMeshSmoothing - - Mesh - Malla - - - Smooth... - Suavizar... - - - Smooth the selected meshes - Suaviza las mallas seleccionadas - - - - CmdMeshToolMesh - - Mesh - Malla - - - Segment by tool mesh - Segmento de la herramienta de malla - - - Creates a segment from a given tool mesh - Crea un segmento desde una herramienta de malla dada - - - - CmdMeshTransform - - Mesh - Malla - - - Transform mesh - Trasformar malla - - - Rotate or move a mesh - Rotar o mover malla - - - - CmdMeshUnion - - Mesh - Malla - - - Union - Unión - - - - CmdMeshVertexCurvature - - Mesh - Malla - - - Calculates the curvature of the vertices of a mesh - Calcula la curvatura de los vértices de una malla - - - Curvature plot - Traza la curvatura - - - - CmdMeshVertexCurvatureInfo - - Mesh - Malla - - - Curvature info - Información de la curvatura - - - Information about curvature - Información de la curvatura - - - - MeshGui::DlgEvaluateMesh - - &Help - &Ayuda - - - F1 - F1 - - - &Close - &Cerrar - - - Alt+C - Alt+C - - - Mesh information - Información de la malla - - - No information - Ninguna información - - - Number of points: - Número de puntos: - - - Number of edges: - Número de bordes: - - - Refresh - Actualizar - - - Analyze - Analizar - - - Repair - Reparar - - - Orientation - Orientación - - - Degenerated faces - Caras degeneradas - - - Face indices - Índices de cara - - - Number of faces: - Número de caras: - - - Duplicated faces - Caras duplicadas - - - Duplicated points - Puntos duplicados - - - Non-manifolds - No multiplicidad - - - Self-intersections - Autointersecciones - - - All above tests together - Todo sobre los test - - - Repetitive repair - Reparación repetitiva - - - Evaluate & Repair Mesh - Evaluar y reparar malla - - - Folds on surface - Pliegues en superficie - - - - MeshGui::DlgEvaluateMeshImp - - No information - Ninguna información - - - Invalid neighbour indices - Índices vecinos inválidos - - - Invalid face indices - índices de cara inválidos - - - Invalid point indices - Índices de puntos inválidos - - - Multiple point indices - índices de punto múltiples - - - Non-manifolds - No multiplicidad - - - Cannot remove non-manifolds - No es posible quitar la no multiplicidad - - - No selection - Ninguna selección - - - No flipped normals - Ninguna normal invertida - - - %1 flipped normals - %1 normales invertidas - - - No non-manifolds - Ninguna no multiplicidad - - - %1 non-manifolds - %1 no multiplicidad - - - No invalid indices - Ningún índice inválido - - - No degenerations - ninguna degeneración - - - %1 degenerated faces - %1 caras degeneradas - - - No duplicated faces - Ninguna cara duplicada - - - %1 duplicated faces - %1 caras duplicadas - - - No duplicated points - Ningún punto duplicado - - - Duplicated points - Puntos duplicados - - - Orientation - Orientación - - - Indices - Índices - - - Degenerations - Degeneraciones - - - Duplicated faces - Caras duplicadas - - - No self-intersections - Ninguna autointersección - - - Self-intersections - Autointersecciones - - - Mesh repair - Reparación de malla - - - Flipped normals found - Normales invertidas encontradas - - - Check failed due to folds on the surface. -Please run the command to repair folds first - La comprobación falló debido a pliegues en la superficie. Vuelva a ejecutar el comando para reparar los pliegues primero - - - No folds on surface - No hay pliegues en superficie - - - %1 folds on surface - %1 pliegues en superficie - - - Folds - Pliegues - - - - MeshGui::DlgRegularSolid - - Regular Solid - Sólido regular - - - &Create - &Crear - - - Alt+C - Alt+C - - - Cl&ose - &Cerrar - - - Alt+O - ALT+O - - - Solid: - Sólido: - - - Cube - Cubo - - - Cylinder - Cilindro - - - Cone - Cono - - - Sphere - Esféra - - - Ellipsoid - Elipsoide - - - Torus - Toro - - - Height: - Altura: - - - Length: - Longitud: - - - Width: - Ancho: - - - Radius: - Radio: - - - Closed - Cerrado - - - Sampling: - Muestreo: - - - Edge length: - Longitud de borde: - - - Radius 1: - Radio 1: - - - Radius 2: - Radio 2: - - - - MeshGui::DlgRegularSolidImp - - Create %1 - Crear %1 - - - No active document - Ningún documento activo - - - - MeshGui::DlgSettingsMeshView - - Mesh view - Vista de malla - - - Two-side rendering - Renderizado a dos caras - - - Backface color - Color de la cara posterior - - - Smoothing - Suavizado - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Este bes el menor ángulo entre dos caras donde las normales son calculadas para hacer un sombreado plano.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Si el ángulo entre las normales de dos caras vecinas es menor que el ángulo de pliegue, las caras serán suavizadas por su borde común.</p></body></html> - - - Crease angle - Ángulo de pliegue - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Sombreado plano/Sombreado Phong</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Define la apariencia de las superficies.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Con sombreado plano las normales de las superficies no están definidas por vértice lo que lleva a una apariencia no real para superficies curvas mientras que usando el sombreado Phong se consigue una apariencia más suave. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Si esta opción está definida se utiliza el sombreado Phong, si no está activada se utiliza el sombreado plano.</p></body></html> - - - Define normal per vertex - Definir la normal por vértice - - - ° - ° - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definiendo las normales por vértice también se llama <span style=" font-style:italic;">Sombreado Phong</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">mientras definiendo las normales por cara se llama </span>Sombreado plano<span style=" font-style:normal;">.</span></p></body></html> - - - Default appearance for new meshes - Apariencia predeterminada para nuevas mallas - - - Default line color - Color de línea predeterminado - - - Mesh transparency - Transparencia de malla - - - Default mesh color - Color de malla predeterminado - - - Show bounding-box for highlighted or selected meshes - Mostrar cuadro delimitador para mallas resaltadas o seleccionadas - - - Line transparency - Transparencia de línea - - - - MeshGui::DlgSmoothing - - Smoothing - Suavizado - - - Method - Método - - - Taubin - Taubin - - - Laplace - Laplace - - - Parameter - Parámetro - - - Iterations: - Iteraciones: - - - Lambda: - Lambda: - - - Mu: - Mu: - - - - MeshGui::MeshFaceAddition - - Add triangle - Añadir triángulo - - - Flip normal - Invertir normal - - - Clear - Borrar - - - Finish - Finalizar - - - - MeshGui::RemoveComponents - - Remove components - Eliminar componentes - - - Select - Seleccionar - - - Select whole component - Seleccionar componente entero - - - Pick triangle - Elija triángulo - - - < faces than - < nº de caras que - - - Region - Región - - - Components - Componentes - - - All - Todo - - - Deselect - Deseleccionar - - - Deselect whole component - Deseleccionar componente entero - - - > faces than - > nº caras que - - - Region options - Opciones de región - - - Respect only triangles with normals facing screen - Únicamente respecto a triángulos con las normales frente a pantalla - - - Respect only visible triangles - ünicamente respecto a triángulos visibles - - - - MeshGui::Segmentation - - Mesh segmentation - - - - Smooth mesh - - - - Plane - - - - Tolerance - - - - Minumum number of faces - - - - Cylinder - Cilindro - - - Radius - - - - Tolerance (Flat) - - - - Tolerance (Curved) - - - - Minimum number of faces - - - - Sphere - Esféra - - - - MeshGui::TaskRemoveComponents - - Delete - Eliminar - - - Invert - Invertir - - - - QDockWidget - - Evaluate & Repair Mesh - Evaluar y reparar malla - - - - QObject - - Import mesh - Importar malla - - - Export mesh - Esportar malla - - - Solid Mesh - Mallado sólido - - - Boundings - Límites - - - Fill holes - Rellenar agujeros - - - Fill holes with maximum number of edges: - Rellena los agujeros con número máximo de bordes: - - - Binary STL (*.stl) - STL binario (*.stl) - - - ASCII STL (*.ast) - STL ASCII(*.ast) - - - Binary Mesh (*.bms) - Malla-Binario (*.bms) - - - Alias Mesh (*.obj) - Alias malla (*.obj) - - - Inventor V2.1 ascii (*.iv) - Inventor V2.1 ascii(*.iv) - - - All Files (*.*) - Todos los archivos (*.*) - - - ASCII STL (*.stl) - ASCII STL (*.stl) - - - VRML V2.0 (*.wrl *.vrml) - VRML V2.0(*.wrl *.vrml) - - - Compressed VRML 2.0 (*.wrz) - VRML 2.0 Comprimido (*.wrz) - - - Nastran (*.nas *.bdf) - Nastran (*.nas *.bdf) - - - Python module def (*.py) - Definición de Modulo Python (*.py) - - - Meshing Tolerance - Tolerancia de mallado - - - Enter tolerance for meshing geometry: - Introduzca la tolerancia para la geometría de mallado: - - - The mesh '%1' is a solid. - La malla '%1' es un sólido. - - - The mesh '%1' is not a solid. - La malla '%1' no es un sólido. - - - Min=<%1,%2,%3> - -Max=<%4,%5,%6> - Mín=<%1,%2,%3> Máx=<%4,%5,%6> - - - [Points: %1, Edges: %2 Faces: %3] - [Puntos: %1, Bordes: %2 Caras: %3] - - - Leave info mode - Permitir modo info - - - Index: %1 - Índice: %1 - - - Leave hole-filling mode - Permitir modo de rellenado de agujeros - - - Leave removal mode - Permitir modo de eliminación - - - All Mesh Files (*.stl *.ast *.bms *.obj *.ply) - Todos los archivos de malla (*.stl *.ast *.bms *.obj *.ply) - - - Stanford Polygon (*.ply) - Standford Polygon(*.ply) - - - Object File Format (*.off) - Object File Format(*.off) - - - Standford Polygon (*.ply) - Standford Polygon(*.ply) - - - Delete selected faces - Eliminar caras seleccionadas - - - Clear selected faces - Borrar caras seleccionadas - - - Annotation - Anotación - - - All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - - - - - Workbench - - Analyze - Analizar - - - Boolean - Booleano - - - &Meshes - &Malla - - - Mesh tools - Herramientas de malla - - - diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_fi.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_fi.qm index 70e369201..dd06b1249 100644 Binary files a/src/Mod/Mesh/Gui/Resources/translations/Mesh_fi.qm and b/src/Mod/Mesh/Gui/Resources/translations/Mesh_fi.qm differ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_fi.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_fi.ts index 413e9ac04..e3fa9c86a 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_fi.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_fi.ts @@ -1,1204 +1,1204 @@ - - + + CmdMeshAddFacet - Mesh - Mesh + Mesh + Mesh - Add triangle - Add triangle + Add triangle + Add triangle - Add triangle manually to a mesh - Add triangle manually to a mesh + Add triangle manually to a mesh + Add triangle manually to a mesh - - + + CmdMeshBoundingBox - Mesh - Mesh + Mesh + Mesh - Boundings info... - Boundings info... + Boundings info... + Boundings info... - Shows the boundings of the selected mesh - Shows the boundings of the selected mesh + Shows the boundings of the selected mesh + Shows the boundings of the selected mesh - - + + CmdMeshBuildRegularSolid - Mesh - Mesh + Mesh + Mesh - Regular solid... - Regular solid... + Regular solid... + Regular solid... - Builds a regular solid - Builds a regular solid + Builds a regular solid + Builds a regular solid - - + + CmdMeshDemolding - Interactive demolding direction - Interactive demolding direction + Interactive demolding direction + Interactive demolding direction - Mesh - Mesh + Mesh + Mesh - - + + CmdMeshDifference - Mesh - Mesh + Mesh + Mesh - Difference - Difference + Difference + Erotus - - + + CmdMeshEvaluateFacet - Mesh - Mesh + Mesh + Mesh - Face info - Face info + Face info + Face info - Information about face - Information about face + Information about face + Information about face - - + + CmdMeshEvaluateSolid - Mesh - Mesh + Mesh + Mesh - Check solid mesh - Check solid mesh + Check solid mesh + Check solid mesh - Checks whether the mesh is a solid - Checks whether the mesh is a solid + Checks whether the mesh is a solid + Checks whether the mesh is a solid - - + + CmdMeshEvaluation - Mesh - Mesh + Mesh + Mesh - Opens a dialog to analyze and repair a mesh - Opens a dialog to analyze and repair a mesh + Opens a dialog to analyze and repair a mesh + Opens a dialog to analyze and repair a mesh - Evaluate && Repair mesh... - Evaluate && Repair mesh... + Evaluate && Repair mesh... + Evaluate && Repair mesh... - - + + CmdMeshExMakeMesh - Mesh - Mesh + Mesh + Mesh - Make a Box - Make a Box + Make a Box + Make a Box - - + + CmdMeshExMakeTool - Mesh - Mesh + Mesh + Mesh - Make a Tool - Make a Tool + Make a Tool + Make a Tool - - + + CmdMeshExMakeUnion - Mesh - Mesh + Mesh + Mesh - Make Union - Make Union + Make Union + Make Union - - + + CmdMeshExport - Mesh - Mesh + Mesh + Mesh - Export mesh... - Export mesh... + Export mesh... + Export mesh... - Exports a mesh to file - Exports a mesh to file + Exports a mesh to file + Exports a mesh to file - - + + CmdMeshFillInteractiveHole - Mesh - Mesh + Mesh + Mesh - Close hole - Close hole + Close hole + Close hole - Close holes interactively - Close holes interactively + Close holes interactively + Close holes interactively - - + + CmdMeshFillupHoles - Mesh - Mesh + Mesh + Mesh - Fill holes... - Fill holes... + Fill holes... + Fill holes... - Fill holes of the mesh - Fill holes of the mesh + Fill holes of the mesh + Fill holes of the mesh - - + + CmdMeshFlipNormals - Mesh - Mesh + Mesh + Mesh - Flip normals - Flip normals + Flip normals + Flip normals - Flips the normals of the mesh - Flips the normals of the mesh + Flips the normals of the mesh + Flips the normals of the mesh - - + + CmdMeshFromGeometry - Mesh - Mesh + Mesh + Mesh - Create mesh from geometry... - Create mesh from geometry... + Create mesh from geometry... + Create mesh from geometry... - Create mesh from the selected geometry - Create mesh from the selected geometry + Create mesh from the selected geometry + Create mesh from the selected geometry - - + + CmdMeshHarmonizeNormals - Mesh - Mesh + Mesh + Mesh - Harmonize normals - Harmonize normals + Harmonize normals + Harmonize normals - Harmonizes the normals of the mesh - Harmonizes the normals of the mesh + Harmonizes the normals of the mesh + Harmonizes the normals of the mesh - - + + CmdMeshImport - Mesh - Mesh + Mesh + Mesh - Import mesh... - Import mesh... + Import mesh... + Import mesh... - Imports a mesh from file - Imports a mesh from file + Imports a mesh from file + Imports a mesh from file - - + + CmdMeshIntersection - Mesh - Mesh + Mesh + Mesh - Intersection - Intersection + Intersection + Risteys - - + + CmdMeshPolyCut - Mesh - Mesh + Mesh + Mesh - Cut mesh - Cut mesh + Cut mesh + Cut mesh - Cuts a mesh with a picked polygon - Cuts a mesh with a picked polygon + Cuts a mesh with a picked polygon + Cuts a mesh with a picked polygon - - + + CmdMeshPolySegm - Mesh - Mesh + Mesh + Mesh - Make segment - Make segment + Make segment + Make segment - Creates a mesh segment - Creates a mesh segment + Creates a mesh segment + Creates a mesh segment - - + + CmdMeshPolySelect - Mesh - Mesh + Mesh + Mesh - Select mesh - Select mesh + Select mesh + Select mesh - Select an area of the mesh - Select an area of the mesh + Select an area of the mesh + Select an area of the mesh - - + + CmdMeshPolySplit - Mesh - Mesh + Mesh + Mesh - Split mesh - Split mesh + Split mesh + Split mesh - Splits a mesh into two meshes - Splits a mesh into two meshes + Splits a mesh into two meshes + Splits a mesh into two meshes - - + + CmdMeshPolyTrim - Mesh - Mesh + Mesh + Mesh - Trim mesh - + Trim mesh + Trim mesh - Trims a mesh with a picked polygon - + Trims a mesh with a picked polygon + Trims a mesh with a picked polygon - - + + CmdMeshRemoveCompByHand - Mesh - Mesh + Mesh + Mesh - Remove components by hand... - Remove components by hand... + Remove components by hand... + Remove components by hand... - Mark a component to remove it from the mesh - Mark a component to remove it from the mesh + Mark a component to remove it from the mesh + Mark a component to remove it from the mesh - - + + CmdMeshRemoveComponents - Mesh - Mesh + Mesh + Mesh - Remove components... - Remove components... + Remove components... + Remove components... - Remove topologic independent components from the mesh - Remove topologic independent components from the mesh + Remove topologic independent components from the mesh + Remove topologic independent components from the mesh - - + + CmdMeshSegmentation - Mesh - Mesh + Mesh + Mesh - Create mesh segments... - + Create mesh segments... + Create mesh segments... - Create mesh segments - + Create mesh segments + Create mesh segments - - + + CmdMeshSmoothing - Mesh - Mesh + Mesh + Mesh - Smooth... - Smooth... + Smooth... + Smooth... - Smooth the selected meshes - Smooth the selected meshes + Smooth the selected meshes + Smooth the selected meshes - - + + CmdMeshToolMesh - Mesh - Mesh + Mesh + Mesh - Segment by tool mesh - Segment by tool mesh + Segment by tool mesh + Segment by tool mesh - Creates a segment from a given tool mesh - Creates a segment from a given tool mesh + Creates a segment from a given tool mesh + Creates a segment from a given tool mesh - - + + CmdMeshTransform - Mesh - Mesh + Mesh + Mesh - Transform mesh - Transform mesh + Transform mesh + Transform mesh - Rotate or move a mesh - Rotate or move a mesh + Rotate or move a mesh + Rotate or move a mesh - - + + CmdMeshUnion - Mesh - Mesh + Mesh + Mesh - Union - Union + Union + Yhdiste - - + + CmdMeshVertexCurvature - Mesh - Mesh + Mesh + Mesh - Calculates the curvature of the vertices of a mesh - Calculates the curvature of the vertices of a mesh + Calculates the curvature of the vertices of a mesh + Calculates the curvature of the vertices of a mesh - Curvature plot - Curvature plot + Curvature plot + Curvature plot - - + + CmdMeshVertexCurvatureInfo - Mesh - Mesh + Mesh + Mesh - Curvature info - Curvature info + Curvature info + Curvature info - Information about curvature - Information about curvature + Information about curvature + Information about curvature - - + + MeshGui::DlgEvaluateMesh - &Help - &Ohje + &Help + &Ohje - F1 - F1 + F1 + F1 - &Close - &Close + &Close + &Sulje - Alt+C - Alt+C + Alt+C + Alt+C - Mesh information - Mesh information + Mesh information + Mesh information - No information - No information + No information + No information - Number of points: - Number of points: + Number of points: + Number of points: - Number of edges: - Number of edges: + Number of edges: + Number of edges: - Refresh - Päivitä + Refresh + Päivitä - Analyze - Analyze + Analyze + Analyze - Repair - Repair + Repair + Repair - Orientation - Orientation + Orientation + Orientation - Degenerated faces - Degenerated faces + Degenerated faces + Degenerated faces - Face indices - Face indices + Face indices + Face indices - Number of faces: - Number of faces: + Number of faces: + Number of faces: - Duplicated faces - Duplicated faces + Duplicated faces + Duplicated faces - Duplicated points - Duplicated points + Duplicated points + Duplicated points - Non-manifolds - Non-manifolds + Non-manifolds + Non-manifolds - Self-intersections - Self-intersections + Self-intersections + Self-intersections - All above tests together - All above tests together + All above tests together + All above tests together - Repetitive repair - Repetitive repair + Repetitive repair + Repetitive repair - Evaluate & Repair Mesh - Evaluate & Repair Mesh + Evaluate & Repair Mesh + Evaluate & Repair Mesh - Folds on surface - Folds on surface + Folds on surface + Folds on surface - - + + MeshGui::DlgEvaluateMeshImp - No information - No information + No information + No information - Invalid neighbour indices - Invalid neighbour indices + Invalid neighbour indices + Invalid neighbour indices - Invalid face indices - Invalid face indices + Invalid face indices + Invalid face indices - Invalid point indices - Invalid point indices + Invalid point indices + Invalid point indices - Multiple point indices - Multiple point indices + Multiple point indices + Multiple point indices - Non-manifolds - Non-manifolds + Non-manifolds + Non-manifolds - Cannot remove non-manifolds - Cannot remove non-manifolds + Cannot remove non-manifolds + Cannot remove non-manifolds - No selection - No selection + No selection + Ei valintaa - No flipped normals - No flipped normals + No flipped normals + No flipped normals - %1 flipped normals - %1 flipped normals + %1 flipped normals + %1 flipped normals - No non-manifolds - No non-manifolds + No non-manifolds + No non-manifolds - %1 non-manifolds - %1 non-manifolds + %1 non-manifolds + %1 non-manifolds - No invalid indices - No invalid indices + No invalid indices + No invalid indices - No degenerations - No degenerations + No degenerations + No degenerations - %1 degenerated faces - %1 degenerated faces + %1 degenerated faces + %1 degenerated faces - No duplicated faces - No duplicated faces + No duplicated faces + No duplicated faces - %1 duplicated faces - %1 duplicated faces + %1 duplicated faces + %1 duplicated faces - No duplicated points - No duplicated points + No duplicated points + No duplicated points - Duplicated points - Duplicated points + Duplicated points + Duplicated points - Orientation - Orientation + Orientation + Orientation - Indices - Indices + Indices + Indices - Degenerations - Degenerations + Degenerations + Degenerations - Duplicated faces - Duplicated faces + Duplicated faces + Duplicated faces - No self-intersections - No self-intersections + No self-intersections + No self-intersections - Self-intersections - Self-intersections + Self-intersections + Self-intersections - Mesh repair - Mesh repair + Mesh repair + Mesh repair - Flipped normals found - Flipped normals found + Flipped normals found + Flipped normals found - Check failed due to folds on the surface. + Check failed due to folds on the surface. Please run the command to repair folds first - Check failed due to folds on the surface. + Check failed due to folds on the surface. Please run the command to repair folds first - No folds on surface - No folds on surface + No folds on surface + No folds on surface - %1 folds on surface - %1 folds on surface + %1 folds on surface + %1 folds on surface - Folds - Folds + Folds + Folds - - + + MeshGui::DlgRegularSolid - Regular Solid - Regular Solid + Regular Solid + Regular Solid - &Create - &Create + &Create + &Luo - Alt+C - Alt+C + Alt+C + Alt+C - Cl&ose - Sulje + Cl&ose + Sulje - Alt+O - Alt+O + Alt+O + Alt+O - Solid: - Solid: + Solid: + Solid: - Cube - Cube + Cube + Cube - Cylinder - Cylinder + Cylinder + Sylinteri - Cone - Cone + Cone + Kartio - Sphere - Sphere + Sphere + Pallo(kuori) - Ellipsoid - Ellipsoid + Ellipsoid + Ellipsoidi - Torus - Torus + Torus + Torus - Height: - Height: + Height: + Korkeus: - Length: - Length: + Length: + Pituus: - Width: - Width: + Width: + Leveys: - Radius: - Radius: + Radius: + Säde: - Closed - Closed + Closed + Suljettu - Sampling: - Sampling: + Sampling: + Sampling: - Edge length: - Edge length: + Edge length: + Edge length: - Radius 1: - Radius 1: + Radius 1: + Säde 1: - Radius 2: - Radius 2: + Radius 2: + Säde 2: - - + + MeshGui::DlgRegularSolidImp - Create %1 - Create %1 + Create %1 + Luo %1 - No active document - No active document + No active document + Ei aktiivista dokumenttia - - + + MeshGui::DlgSettingsMeshView - Mesh view - Mesh view + Mesh view + Mesh view - Two-side rendering - Two-side rendering + Two-side rendering + Two-side rendering - Backface color - Backface color + Backface color + Backface color - Smoothing - Smoothing + Smoothing + Smoothing - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> - Crease angle - Crease angle + Crease angle + Crease angle - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - Define normal per vertex - Define normal per vertex - - - ° - ° + Define normal per vertex + Define normal per vertex - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + ° + ° - Default appearance for new meshes - Default appearance for new meshes + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-weight:600;">Vihje</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> Määrittely normaalit per piste kutsutaan myös <span style=" font-style:italic;">Phong shading</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"> <span style=" font-style:normal;">samalla kun määritellään normaalien kohti edessä on nimeltään</span> Flat <span style=" font-style:normal;">shading.</span> </p></body></html> - Default line color - Default line color + Default appearance for new meshes + Default appearance for new meshes - Mesh transparency - Mesh transparency + Default line color + Default line color - Default mesh color - Default mesh color + Mesh transparency + Mesh transparency - Show bounding-box for highlighted or selected meshes - Show bounding-box for highlighted or selected meshes + Default mesh color + Default mesh color - Line transparency - Line transparency + Show bounding-box for highlighted or selected meshes + Show bounding-box for highlighted or selected meshes - - + + Line transparency + Line transparency + + + MeshGui::DlgSmoothing - Smoothing - Smoothing + Smoothing + Smoothing - Method - Method + Method + Method - Taubin - Taubin + Taubin + Taubin - Laplace - Laplace + Laplace + Laplace - Parameter - Parameter + Parameter + Parametri - Iterations: - Iterations: + Iterations: + Iterations: - Lambda: - Lambda: + Lambda: + Lambda: - Mu: - Mu: + Mu: + Mu: - - + + MeshGui::MeshFaceAddition - Add triangle - Add triangle + Add triangle + Add triangle - Flip normal - Flip normal + Flip normal + Flip normal - Clear - Tyhjennä + Clear + Tyhjennä - Finish - Valmis + Finish + Valmis - - + + MeshGui::RemoveComponents - Remove components - Remove components + Remove components + Remove components - Select - Valitse + Select + Valitse - Select whole component - Select whole component + Select whole component + Select whole component - Pick triangle - Pick triangle + Pick triangle + Pick triangle - < faces than - < faces than + < faces than + < faces than - Region - Region + Region + Alue - Components - Components + Components + Components - All - All + All + Kaikki - Deselect - Deselect + Deselect + Deselect - Deselect whole component - Deselect whole component + Deselect whole component + Deselect whole component - > faces than - > faces than + > faces than + > faces than - Region options - Region options + Region options + Region options - Respect only triangles with normals facing screen - Respect only triangles with normals facing screen + Respect only triangles with normals facing screen + Respect only triangles with normals facing screen - Respect only visible triangles - Respect only visible triangles + Respect only visible triangles + Respect only visible triangles - - + + MeshGui::Segmentation - Mesh segmentation - + Mesh segmentation + Mesh segmentation - Smooth mesh - + Smooth mesh + Smooth mesh - Plane - + Plane + Taso - Tolerance - + Tolerance + Toleranssi - Minumum number of faces - + Minumum number of faces + Minumum number of faces - Cylinder - Cylinder + Cylinder + Sylinteri - Radius - + Radius + Säde - Tolerance (Flat) - + Tolerance (Flat) + Tolerance (Flat) - Tolerance (Curved) - + Tolerance (Curved) + Tolerance (Curved) - Minimum number of faces - + Minimum number of faces + Minimum number of faces - Sphere - Sphere + Sphere + Pallo(kuori) - - + + MeshGui::TaskRemoveComponents - Delete - Poista + Delete + Poista - Invert - Invert + Invert + Invert - - + + QDockWidget - Evaluate & Repair Mesh - Evaluate & Repair Mesh + Evaluate & Repair Mesh + Evaluate & Repair Mesh - - + + QObject - Import mesh - Import mesh + Import mesh + Import mesh - Export mesh - Export mesh + Export mesh + Export mesh - Solid Mesh - Solid Mesh + Solid Mesh + Solid Mesh - Boundings - Boundings + Boundings + Boundings - Fill holes - Fill holes + Fill holes + Fill holes - Fill holes with maximum number of edges: - Fill holes with maximum number of edges: + Fill holes with maximum number of edges: + Fill holes with maximum number of edges: - Binary STL (*.stl) - Binary STL (*.stl) + Binary STL (*.stl) + Binary STL (*.stl) - ASCII STL (*.ast) - ASCII STL (*.ast) + ASCII STL (*.ast) + ASCII STL (*.ast) - Binary Mesh (*.bms) - Binary Mesh (*.bms) + Binary Mesh (*.bms) + Binary Mesh (*.bms) - Alias Mesh (*.obj) - Alias Mesh (*.obj) + Alias Mesh (*.obj) + Alias Mesh (*.obj) - Inventor V2.1 ascii (*.iv) - Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*.iv) - All Files (*.*) - Kaikki tiedostot (*.*) + All Files (*.*) + Kaikki tiedostot (*.*) - ASCII STL (*.stl) - ASCII STL (*.stl) + ASCII STL (*.stl) + ASCII STL (*.stl) - VRML V2.0 (*.wrl *.vrml) - VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) - Compressed VRML 2.0 (*.wrz) - Compressed VRML 2.0 (*.wrz) + Compressed VRML 2.0 (*.wrz) + Compressed VRML 2.0 (*.wrz) - Nastran (*.nas *.bdf) - Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) - Python module def (*.py) - Python module def (*.py) + Python module def (*.py) + Python module def (*.py) - Meshing Tolerance - Meshing Tolerance + Meshing Tolerance + Meshing Tolerance - Enter tolerance for meshing geometry: - Enter tolerance for meshing geometry: + Enter tolerance for meshing geometry: + Enter tolerance for meshing geometry: - The mesh '%1' is a solid. - The mesh '%1' is a solid. + The mesh '%1' is a solid. + The mesh '%1' is a solid. - The mesh '%1' is not a solid. - The mesh '%1' is not a solid. + The mesh '%1' is not a solid. + The mesh '%1' is not a solid. - Min=<%1,%2,%3> + Min=<%1,%2,%3> Max=<%4,%5,%6> - Min=<%1,%2,%3> + Min=<%1,%2,%3> Max=<%4,%5,%6> - [Points: %1, Edges: %2 Faces: %3] - [Points: %1, Edges: %2 Faces: %3] + [Points: %1, Edges: %2 Faces: %3] + [Points: %1, Edges: %2 Faces: %3] - Leave info mode - Leave info mode + Leave info mode + Leave info mode - Index: %1 - Index: %1 + Index: %1 + Index: %1 - Leave hole-filling mode - Leave hole-filling mode + Leave hole-filling mode + Leave hole-filling mode - Leave removal mode - Leave removal mode + Leave removal mode + Leave removal mode - All Mesh Files (*.stl *.ast *.bms *.obj *.ply) - All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) - Stanford Polygon (*.ply) - Stanford Polygon (*.ply) + Stanford Polygon (*.ply) + Stanford Polygon (*.ply) - Object File Format (*.off) - Object File Format (*.off) + Object File Format (*.off) + Object File Format (*.off) - Standford Polygon (*.ply) - Standford Polygon (*.ply) + Standford Polygon (*.ply) + Standford Polygon (*.ply) - Delete selected faces - Delete selected faces + Delete selected faces + Delete selected faces - Clear selected faces - Clear selected faces + Clear selected faces + Clear selected faces - Annotation - Annotation + Annotation + Annotation - All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - - + + Workbench - Analyze - Analyze + Analyze + Analyze - Boolean - Boolean + Boolean + Boolean - &Meshes - &Meshes + &Meshes + &Meshes - Mesh tools - Mesh tools + Mesh tools + Mesh tools - + diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_fr.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_fr.qm index e556e1c9e..e87da6aba 100644 Binary files a/src/Mod/Mesh/Gui/Resources/translations/Mesh_fr.qm and b/src/Mod/Mesh/Gui/Resources/translations/Mesh_fr.qm differ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_fr.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_fr.ts index f8ba8ba46..6c090d90e 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_fr.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_fr.ts @@ -1,1203 +1,1203 @@ - - + + CmdMeshAddFacet - Mesh - Maillage + Mesh + Maillage - Add triangle - Ajouter un triangle + Add triangle + Ajouter un triangle - Add triangle manually to a mesh - Ajouter manuellement un triangle à une maille + Add triangle manually to a mesh + Ajouter manuellement un triangle à une maille - - + + CmdMeshBoundingBox - Mesh - Maillage + Mesh + Maillage - Boundings info... - Dimensions extérieures... + Boundings info... + Dimensions extérieures... - Shows the boundings of the selected mesh - Affiche les dimensions englobantes du maillage sélectionné + Shows the boundings of the selected mesh + Affiche les dimensions englobantes du maillage sélectionné - - + + CmdMeshBuildRegularSolid - Mesh - Maillage + Mesh + Maillage - Regular solid... - Solide régulier... + Regular solid... + Solide régulier... - Builds a regular solid - Construire un solide régulier + Builds a regular solid + Construire un solide régulier - - + + CmdMeshDemolding - Interactive demolding direction - Direction de démoulage interactive + Interactive demolding direction + Direction de démoulage interactive - Mesh - Maillage + Mesh + Maillage - - + + CmdMeshDifference - Mesh - Maillage + Mesh + Maillage - Difference - Différence + Difference + Différence - - + + CmdMeshEvaluateFacet - Mesh - Maillage + Mesh + Maillage - Face info - Infos sur la face + Face info + Infos sur la face - Information about face - Informations sur la face + Information about face + Informations sur la face - - + + CmdMeshEvaluateSolid - Mesh - Maillage + Mesh + Maillage - Check solid mesh - Vérifier le maillage solide + Check solid mesh + Vérifier le maillage solide - Checks whether the mesh is a solid - Vérifie si le maillage est un solide + Checks whether the mesh is a solid + Vérifie si le maillage est un solide - - + + CmdMeshEvaluation - Mesh - Maillage + Mesh + Maillage - Opens a dialog to analyze and repair a mesh - Ouvre une fenêtre permettant d'analyser et de réparer un maillage + Opens a dialog to analyze and repair a mesh + Ouvre une fenêtre permettant d'analyser et de réparer un maillage - Evaluate && Repair mesh... - Évaluer et réparer un maillage... + Evaluate && Repair mesh... + Évaluer et réparer un maillage... - - + + CmdMeshExMakeMesh - Mesh - Maillage + Mesh + Maillage - Make a Box - Créer un cube + Make a Box + Créer un cube - - + + CmdMeshExMakeTool - Mesh - Maillage + Mesh + Maillage - Make a Tool - Créer un outil + Make a Tool + Créer un outil - - + + CmdMeshExMakeUnion - Mesh - Maillage + Mesh + Maillage - Make Union - Union + Make Union + Union - - + + CmdMeshExport - Mesh - Maillage + Mesh + Maillage - Export mesh... - Exporter le maillage... + Export mesh... + Exporter le maillage... - Exports a mesh to file - Exporte le maillage dans un fichier + Exports a mesh to file + Exporte le maillage dans un fichier - - + + CmdMeshFillInteractiveHole - Mesh - Maillage + Mesh + Maillage - Close hole - Boucher un trou + Close hole + Boucher un trou - Close holes interactively - Bouche un trou de manière interactive + Close holes interactively + Bouche un trou de manière interactive - - + + CmdMeshFillupHoles - Mesh - Maillage + Mesh + Maillage - Fill holes... - Remplir les trous... + Fill holes... + Remplir les trous... - Fill holes of the mesh - Remplit un trou de manière interactive + Fill holes of the mesh + Remplit un trou de manière interactive - - + + CmdMeshFlipNormals - Mesh - Maillage + Mesh + Maillage - Flip normals - Inverser les normales + Flip normals + Inverser les normales - Flips the normals of the mesh - Inverse les normales du maillage + Flips the normals of the mesh + Inverse les normales du maillage - - + + CmdMeshFromGeometry - Mesh - Maillage + Mesh + Maillage - Create mesh from geometry... - Créer un maillage depuis une géométrie... + Create mesh from geometry... + Créer un maillage depuis une géométrie... - Create mesh from the selected geometry - Crée un maillage à partir de la géométrie sélectionnée + Create mesh from the selected geometry + Crée un maillage à partir de la géométrie sélectionnée - - + + CmdMeshHarmonizeNormals - Mesh - Maillage + Mesh + Maillage - Harmonize normals - Harmoniser les normales + Harmonize normals + Harmoniser les normales - Harmonizes the normals of the mesh - Harmonise les normales du maillage + Harmonizes the normals of the mesh + Harmonise les normales du maillage - - + + CmdMeshImport - Mesh - Maillage + Mesh + Maillage - Import mesh... - Importer un maillage... + Import mesh... + Importer un maillage... - Imports a mesh from file - Importe un maillage depuis un fichier + Imports a mesh from file + Importe un maillage depuis un fichier - - + + CmdMeshIntersection - Mesh - Maillage + Mesh + Maillage - Intersection - Intersection + Intersection + Intersection - - + + CmdMeshPolyCut - Mesh - Maillage + Mesh + Maillage - Cut mesh - Couper le maillage + Cut mesh + Couper le maillage - Cuts a mesh with a picked polygon - Coupe un maillage à l'aide du polygone sélectionné + Cuts a mesh with a picked polygon + Coupe un maillage à l'aide du polygone sélectionné - - + + CmdMeshPolySegm - Mesh - Maillage + Mesh + Maillage - Make segment - Créer un segment + Make segment + Créer un segment - Creates a mesh segment - Crée un segment de maillage + Creates a mesh segment + Crée un segment de maillage - - + + CmdMeshPolySelect - Mesh - Maillage + Mesh + Maillage - Select mesh - Sélectionnez un maillage + Select mesh + Sélectionnez un maillage - Select an area of the mesh - Sélectionnez une zone du maillage + Select an area of the mesh + Sélectionnez une zone du maillage - - + + CmdMeshPolySplit - Mesh - Maillage + Mesh + Maillage - Split mesh - Diviser un maillage + Split mesh + Diviser un maillage - Splits a mesh into two meshes - Divise un maillage en deux + Splits a mesh into two meshes + Divise un maillage en deux - - + + CmdMeshPolyTrim - Mesh - Maillage + Mesh + Maillage - Trim mesh - + Trim mesh + Découper - Trims a mesh with a picked polygon - + Trims a mesh with a picked polygon + Découper un maillage avec une succession de points - - + + CmdMeshRemoveCompByHand - Mesh - Maillage + Mesh + Maillage - Remove components by hand... - Supprimer manuellement des composants... + Remove components by hand... + Supprimer manuellement des composants... - Mark a component to remove it from the mesh - Marque un composant pour le supprimer du maillage + Mark a component to remove it from the mesh + Marque un composant pour le supprimer du maillage - - + + CmdMeshRemoveComponents - Mesh - Maillage + Mesh + Maillage - Remove components... - Supprimer des composants... + Remove components... + Supprimer des composants... - Remove topologic independent components from the mesh - Supprimer les composants de topologie indépendants du maillage + Remove topologic independent components from the mesh + Supprimer les composants de topologie indépendants du maillage - - + + CmdMeshSegmentation - Mesh - Maillage + Mesh + Maillage - Create mesh segments... - + Create mesh segments... + Diviser le maillage... - Create mesh segments - + Create mesh segments + Diviser un maillage - - + + CmdMeshSmoothing - Mesh - Maillage + Mesh + Maillage - Smooth... - Lisser... + Smooth... + Lisser... - Smooth the selected meshes - Lisse les maillages sélectionnés + Smooth the selected meshes + Lisse les maillages sélectionnés - - + + CmdMeshToolMesh - Mesh - Maillage + Mesh + Maillage - Segment by tool mesh - Segment à partir d'un maillage + Segment by tool mesh + Segment à partir d'un maillage - Creates a segment from a given tool mesh - Crée un segment à l'aide d'un outil de maillage + Creates a segment from a given tool mesh + Crée un segment à l'aide d'un outil de maillage - - + + CmdMeshTransform - Mesh - Maillage + Mesh + Maillage - Transform mesh - Transformer le maillage + Transform mesh + Transformer le maillage - Rotate or move a mesh - Rotation ou déplacement du maillage + Rotate or move a mesh + Rotation ou déplacement du maillage - - + + CmdMeshUnion - Mesh - Maillage + Mesh + Maillage - Union - Union + Union + Union - - + + CmdMeshVertexCurvature - Mesh - Maillage + Mesh + Maillage - Calculates the curvature of the vertices of a mesh - Calcule la courbure des sommets du maillage + Calculates the curvature of the vertices of a mesh + Calcule la courbure des sommets du maillage - Curvature plot - Tracé de courbure + Curvature plot + Tracé de courbure - - + + CmdMeshVertexCurvatureInfo - Mesh - Maillage + Mesh + Maillage - Curvature info - Infos de courbure + Curvature info + Infos de courbure - Information about curvature - Informations sur la courbure + Information about curvature + Informations sur la courbure - - + + MeshGui::DlgEvaluateMesh - &Help - &Aide + &Help + &Aide - F1 - F1 + F1 + F1 - &Close - &Fermer + &Close + &Fermer - Alt+C - Alt+C + Alt+C + Alt+C - Mesh information - Informations sur le maillage + Mesh information + Informations sur le maillage - No information - Aucune information + No information + Aucune information - Number of points: - Nombre de points : + Number of points: + Nombre de points : - Number of edges: - Nombre de contours : + Number of edges: + Nombre de contours : - Refresh - Actualiser + Refresh + Actualiser - Analyze - Analyser + Analyze + Analyser - Repair - Réparer + Repair + Réparer - Orientation - Orientation + Orientation + Orientation - Degenerated faces - Faces dégénérées + Degenerated faces + Faces dégénérées - Face indices - Indices des faces + Face indices + Indices des faces - Number of faces: - Nombre de faces : + Number of faces: + Nombre de faces : - Duplicated faces - Faces dupliquées + Duplicated faces + Faces dupliquées - Duplicated points - Points dupliqués + Duplicated points + Points dupliqués - Non-manifolds - Non-manifolds + Non-manifolds + Non-manifolds - Self-intersections - Collisions internes + Self-intersections + Collisions internes - All above tests together - Tous les tests ensemble + All above tests together + Tous les tests ensemble - Repetitive repair - Réparation répétitive + Repetitive repair + Réparation répétitive - Evaluate & Repair Mesh - Évaluer et réparer un maillage + Evaluate & Repair Mesh + Évaluer et réparer un maillage - Folds on surface - Plis sur la surface + Folds on surface + Plis sur la surface - - + + MeshGui::DlgEvaluateMeshImp - No information - Aucune information + No information + Aucune information - Invalid neighbour indices - Indices voisins invalides + Invalid neighbour indices + Indices voisins invalides - Invalid face indices - Indices de face invalides + Invalid face indices + Indices de face invalides - Invalid point indices - Indices de point invalides + Invalid point indices + Indices de point invalides - Multiple point indices - Indices de point multiples + Multiple point indices + Indices de point multiples - Non-manifolds - Non-manifolds + Non-manifolds + Non-manifolds - Cannot remove non-manifolds - Impossible de supprimer les non-manifolds + Cannot remove non-manifolds + Impossible de supprimer les non-manifolds - No selection - Aucune sélection + No selection + Aucune sélection - No flipped normals - Aucune normale inversée + No flipped normals + Aucune normale inversée - %1 flipped normals - %1 normales inversées + %1 flipped normals + %1 normales inversées - No non-manifolds - Aucun non-manifold + No non-manifolds + Aucun non-manifold - %1 non-manifolds - %1 non-manifolds + %1 non-manifolds + %1 non-manifolds - No invalid indices - Aucun indice invalide + No invalid indices + Aucun indice invalide - No degenerations - Aucune dégénération + No degenerations + Aucune dégénération - %1 degenerated faces - %1 faces dégénérées + %1 degenerated faces + %1 faces dégénérées - No duplicated faces - Aucune face dupliquée + No duplicated faces + Aucune face dupliquée - %1 duplicated faces - %1 faces dupliquées + %1 duplicated faces + %1 faces dupliquées - No duplicated points - Aucun point dupliqué + No duplicated points + Aucun point dupliqué - Duplicated points - Points dupliqués + Duplicated points + Points dupliqués - Orientation - Orientation + Orientation + Orientation - Indices - Indices + Indices + Indices - Degenerations - Dégénérations + Degenerations + Dégénérations - Duplicated faces - Faces dupliquées + Duplicated faces + Faces dupliquées - No self-intersections - Aucune collision interne + No self-intersections + Aucune collision interne - Self-intersections - Collisions internes + Self-intersections + Collisions internes - Mesh repair - Réparer le maillage + Mesh repair + Réparer le maillage - Flipped normals found - Normales inversées trouvées + Flipped normals found + Normales inversées trouvées - Check failed due to folds on the surface. + Check failed due to folds on the surface. Please run the command to repair folds first - Vérification échouée en raison de plis sur la surface. Exécutez d'abord la commande "réparer les plis" + Vérification échouée en raison de plis sur la surface. Exécutez d'abord la commande "réparer les plis" - No folds on surface - Aucun pli sur la surface + No folds on surface + Aucun pli sur la surface - %1 folds on surface - %1 plis sur la surface + %1 folds on surface + %1 plis sur la surface - Folds - Plis + Folds + Plis - - + + MeshGui::DlgRegularSolid - Regular Solid - Solide régulier + Regular Solid + Solide régulier - &Create - &Créer + &Create + &Créer - Alt+C - Alt+C + Alt+C + Alt+C - Cl&ose - &Fermer + Cl&ose + &Fermer - Alt+O - Alt+F + Alt+O + Alt+F - Solid: - Solide : + Solid: + Solide : - Cube - Cube + Cube + Cube - Cylinder - Cylindre + Cylinder + Cylindre - Cone - Cône + Cone + Cône - Sphere - Sphère + Sphere + Sphère - Ellipsoid - Ellipsoïde + Ellipsoid + Ellipsoïde - Torus - Tore + Torus + Tore - Height: - Hauteur : + Height: + Hauteur : - Length: - Longueur : + Length: + Longueur : - Width: - Largeur : + Width: + Largeur : - Radius: - Rayon : + Radius: + Rayon : - Closed - Fermé + Closed + Fermé - Sampling: - Numérisation : + Sampling: + Numérisation : - Edge length: - Longueur du contour : + Edge length: + Longueur du contour : - Radius 1: - Rayon 1 : + Radius 1: + Rayon 1 : - Radius 2: - Rayon 2 : + Radius 2: + Rayon 2 : - - + + MeshGui::DlgRegularSolidImp - Create %1 - Créer %1 + Create %1 + Créer %1 - No active document - Aucun document actif + No active document + Aucun document actif - - + + MeshGui::DlgSettingsMeshView - Mesh view - Vue du maillage + Mesh view + Vue du maillage - Two-side rendering - Rendu biface + Two-side rendering + Rendu biface - Backface color - Couleur de la face arrière + Backface color + Couleur de la face arrière - Smoothing - Lissage + Smoothing + Lissage - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Il s'agit du plus petit angle entre deux faces dont les normales sont calculées pour un ombrage plat.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Si l'angle entre les normales de deux faces voisines est plus petit que l'angle de pliage, les faces seront traitées en ombrage lissé autour de leur arête commune.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Il s'agit du plus petit angle entre deux faces dont les normales sont calculées pour un ombrage plat.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Si l'angle entre les normales de deux faces voisines est plus petit que l'angle de pliage, les faces seront traitées en ombrage lissé autour de leur arête commune.</p></body></html> - Crease angle - Angle de pliage + Crease angle + Angle de pliage - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Ombrage plat/Ombrage Phong</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Définit l'apparence des surfaces</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Avec l'ombrage plat, les normales des surfaces ne sont pas définies par vertex, ce qui entraîne une apparence irréelle des surfaces courbes, alors que l'ombrage Phong produit une apparence plus lisse. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Si cette option est activée, l'ombrage Phong sera utilisé, sinon l'ombrage plat sera utilisé.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Ombrage plat/Ombrage Phong</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Définit l'apparence des surfaces</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Avec l'ombrage plat, les normales des surfaces ne sont pas définies par vertex, ce qui entraîne une apparence irréelle des surfaces courbes, alors que l'ombrage Phong produit une apparence plus lisse. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Si cette option est activée, l'ombrage Phong sera utilisé, sinon l'ombrage plat sera utilisé.</p></body></html> - Define normal per vertex - Définir les normales par vertex - - - ° - ° + Define normal per vertex + Définir les normales par vertex - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Définir les normales par vertex est aussi appelé <span style=" font-style:italic;">ombrage Phong</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">alors que définir les normales par face est appelé</span>ombrage plat<span style=" font-style:normal;">.</span></p></body></html> + ° + ° - Default appearance for new meshes - Apparence par défaut pour les nouveaux maillages + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Définir les normales par vertex est aussi appelé <span style=" font-style:italic;">ombrage Phong</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">alors que définir les normales par face est appelé</span>ombrage plat<span style=" font-style:normal;">.</span></p></body></html> - Default line color - Couleur de ligne par défaut + Default appearance for new meshes + Apparence par défaut pour les nouveaux maillages - Mesh transparency - Transparence des maillages + Default line color + Couleur de ligne par défaut - Default mesh color - Couleur par défaut des maillages + Mesh transparency + Transparence des maillages - Show bounding-box for highlighted or selected meshes - Afficher le volume capable des mailles en surbrillance ou sélectionnées + Default mesh color + Couleur par défaut des maillages - Line transparency - Transparence de ligne + Show bounding-box for highlighted or selected meshes + Afficher le volume capable des mailles en surbrillance ou sélectionnées - - + + Line transparency + Transparence de ligne + + + MeshGui::DlgSmoothing - Smoothing - Lissage + Smoothing + Lissage - Method - Méthode + Method + Méthode - Taubin - Taubin + Taubin + Taubin - Laplace - Laplace + Laplace + Laplace - Parameter - Paramètre + Parameter + Paramètre - Iterations: - Itérations : + Iterations: + Itérations : - Lambda: - Lambda : + Lambda: + Lambda : - Mu: - Mu : + Mu: + Mu : - - + + MeshGui::MeshFaceAddition - Add triangle - Ajouter un triangle + Add triangle + Ajouter un triangle - Flip normal - Inverser les normales + Flip normal + Inverser les normales - Clear - Effacer + Clear + Effacer - Finish - Terminer + Finish + Terminer - - + + MeshGui::RemoveComponents - Remove components - Supprimer des composants + Remove components + Supprimer des composants - Select - Sélectionner + Select + Sélectionner - Select whole component - Sélectionner le composant entier + Select whole component + Sélectionner le composant entier - Pick triangle - Choisissez un triangle + Pick triangle + Choisissez un triangle - < faces than - < de faces que + < faces than + < de faces que - Region - Région + Region + Région - Components - Composants + Components + Composants - All - Tous + All + Tous - Deselect - Dé-sélectionner + Deselect + Dé-sélectionner - Deselect whole component - Dé-sélectionner le composant entier + Deselect whole component + Dé-sélectionner le composant entier - > faces than - > de faces que + > faces than + > de faces que - Region options - Options de région + Region options + Options de région - Respect only triangles with normals facing screen - Respecter seulement les triangles dont les normales font face à écran + Respect only triangles with normals facing screen + Respecter seulement les triangles dont les normales font face à écran - Respect only visible triangles - Respecter uniquement les triangles visibles + Respect only visible triangles + Respecter uniquement les triangles visibles - - + + MeshGui::Segmentation - Mesh segmentation - + Mesh segmentation + Segmentation du maillage - Smooth mesh - + Smooth mesh + Lissage du maillage - Plane - + Plane + Plan - Tolerance - + Tolerance + Tolérance - Minumum number of faces - + Minumum number of faces + Nombre minimum de faces - Cylinder - Cylindre + Cylinder + Cylindre - Radius - + Radius + Rayon - Tolerance (Flat) - + Tolerance (Flat) + Tolérance (plat) - Tolerance (Curved) - + Tolerance (Curved) + Tolérance (courbé) - Minimum number of faces - + Minimum number of faces + Nombre minimum de faces - Sphere - Sphère + Sphere + Sphère - - + + MeshGui::TaskRemoveComponents - Delete - Supprimer + Delete + Supprimer - Invert - Inverser + Invert + Inverser - - + + QDockWidget - Evaluate & Repair Mesh - Évaluer et réparer un maillage + Evaluate & Repair Mesh + Évaluer et réparer un maillage - - + + QObject - Import mesh - Importer un maillage + Import mesh + Importer un maillage - Export mesh - Exporter un maillage + Export mesh + Exporter un maillage - Solid Mesh - Maillage solide + Solid Mesh + Maillage solide - Boundings - Limites englobantes + Boundings + Limites englobantes - Fill holes - Remplir les trous + Fill holes + Remplir les trous - Fill holes with maximum number of edges: - Remplir les trous avec un nombre maximum de contours : + Fill holes with maximum number of edges: + Remplir les trous avec un nombre maximum de contours : - Binary STL (*.stl) - STL binaire (*.stl) + Binary STL (*.stl) + STL binaire (*.stl) - ASCII STL (*.ast) - STL ASCII (*.ast) + ASCII STL (*.ast) + STL ASCII (*.ast) - Binary Mesh (*.bms) - Maillage binaire (*.bms) + Binary Mesh (*.bms) + Maillage binaire (*.bms) - Alias Mesh (*.obj) - Maillage Alias (*.obj) + Alias Mesh (*.obj) + Maillage Alias (*.obj) - Inventor V2.1 ascii (*.iv) - ASCII Inventor V2.1 (*.iv) + Inventor V2.1 ascii (*.iv) + ASCII Inventor V2.1 (*.iv) - All Files (*.*) - Tous les fichiers (*.*) + All Files (*.*) + Tous les fichiers (*.*) - ASCII STL (*.stl) - STL ASCII (*.stl) + ASCII STL (*.stl) + STL ASCII (*.stl) - VRML V2.0 (*.wrl *.vrml) - VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) - Compressed VRML 2.0 (*.wrz) - VRML 2.0 compressé (*.wrz) + Compressed VRML 2.0 (*.wrz) + VRML 2.0 compressé (*.wrz) - Nastran (*.nas *.bdf) - Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) - Python module def (*.py) - Module Python(*.py) + Python module def (*.py) + Module Python(*.py) - Meshing Tolerance - Tolérance de maillage + Meshing Tolerance + Tolérance de maillage - Enter tolerance for meshing geometry: - Saisir la tolérance pour la géométrie maillée : + Enter tolerance for meshing geometry: + Saisir la tolérance pour la géométrie maillée : - The mesh '%1' is a solid. - Le maillage '%1' est un solide. + The mesh '%1' is a solid. + Le maillage '%1' est un solide. - The mesh '%1' is not a solid. - Le maillage '%1' n'est pas un solide. + The mesh '%1' is not a solid. + Le maillage '%1' n'est pas un solide. - Min=<%1,%2,%3> + Min=<%1,%2,%3> Max=<%4,%5,%6> - Min=<%1,%2,%3> + Min=<%1,%2,%3> Max=<%4,%5,%6> - [Points: %1, Edges: %2 Faces: %3] - [Points: %1, Contours: %2 Faces: %3] + [Points: %1, Edges: %2 Faces: %3] + [Points: %1, Contours: %2 Faces: %3] - Leave info mode - Quitter le mode d'information + Leave info mode + Quitter le mode d'information - Index: %1 - Index : %1 + Index: %1 + Index : %1 - Leave hole-filling mode - Quitter le mode de remplissage des trous + Leave hole-filling mode + Quitter le mode de remplissage des trous - Leave removal mode - Quitter le mode de suppression + Leave removal mode + Quitter le mode de suppression - All Mesh Files (*.stl *.ast *.bms *.obj *.ply) - Tous les fichiers de maillage (*.stl *.ast *.bms *.obj *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + Tous les fichiers de maillage (*.stl *.ast *.bms *.obj *.ply) - Stanford Polygon (*.ply) - Polygone de Stanford (*.ply) + Stanford Polygon (*.ply) + Polygone de Stanford (*.ply) - Object File Format (*.off) - Object File Format (*.off) + Object File Format (*.off) + Object File Format (*.off) - Standford Polygon (*.ply) - Standford Polygon (*.ply) + Standford Polygon (*.ply) + Standford Polygon (*.ply) - Delete selected faces - Supprimer les faces sélectionnées + Delete selected faces + Supprimer les faces sélectionnées - Clear selected faces - Dé-sélectionner les faces sélectionnées + Clear selected faces + Dé-sélectionner les faces sélectionnées - Annotation - Annotation + Annotation + Annotation - All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + Tous les fichiers de maillage (*.stl *.ast *.bms *.obj *.off *.ply) - - + + Workbench - Analyze - Analyser + Analyze + Analyser - Boolean - Opération booléenne + Boolean + Opération booléenne - &Meshes - &Maillages + &Meshes + &Maillages - Mesh tools - Outils de maillage + Mesh tools + Outils de maillage - + diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_hr.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_hr.qm index 0a1efb190..72c7de06e 100644 Binary files a/src/Mod/Mesh/Gui/Resources/translations/Mesh_hr.qm and b/src/Mod/Mesh/Gui/Resources/translations/Mesh_hr.qm differ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_hr.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_hr.ts index 6aa72e06d..f1eaed9b8 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_hr.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_hr.ts @@ -1,1204 +1,1204 @@ - - + + CmdMeshAddFacet - Mesh - Mreža + Mesh + Mreža - Add triangle - Dodaj trokut + Add triangle + Dodaj trokut - Add triangle manually to a mesh - Ručno dodaj trokut mreži + Add triangle manually to a mesh + Ručno dodaj trokut mreži - - + + CmdMeshBoundingBox - Mesh - Mreža + Mesh + Mreža - Boundings info... - Informacije o granicama... + Boundings info... + Informacije o granicama... - Shows the boundings of the selected mesh - Prikazuje granicu odabrane mreže + Shows the boundings of the selected mesh + Prikazuje granicu odabrane mreže - - + + CmdMeshBuildRegularSolid - Mesh - Mreža + Mesh + Mreža - Regular solid... - Obično tijelo... + Regular solid... + Obično tijelo... - Builds a regular solid - Kreira obično tijelo + Builds a regular solid + Kreira obično tijelo - - + + CmdMeshDemolding - Interactive demolding direction - Smjer interaktivnog oblikovanja + Interactive demolding direction + Smjer interaktivnog oblikovanja - Mesh - Mreža + Mesh + Mreža - - + + CmdMeshDifference - Mesh - Mreža + Mesh + Mreža - Difference - Razlika + Difference + Razlika - - + + CmdMeshEvaluateFacet - Mesh - Mreža + Mesh + Mreža - Face info - Informacije površine + Face info + Informacije površine - Information about face - Informacije o površini + Information about face + Informacije o površini - - + + CmdMeshEvaluateSolid - Mesh - Mreža + Mesh + Mreža - Check solid mesh - Provjerite tijelo MESH-a + Check solid mesh + Provjerite tijelo MESH-a - Checks whether the mesh is a solid - Provjerava je li MESH tijelo + Checks whether the mesh is a solid + Provjerava je li MESH tijelo - - + + CmdMeshEvaluation - Mesh - Mreža + Mesh + Mreža - Opens a dialog to analyze and repair a mesh - Otvara dijalog za analizu i popravak MESH-a + Opens a dialog to analyze and repair a mesh + Otvara dijalog za analizu i popravak MESH-a - Evaluate && Repair mesh... - Procijeni i Pop&ravi MESH... + Evaluate && Repair mesh... + Procijeni i Pop&ravi MESH... - - + + CmdMeshExMakeMesh - Mesh - Mreža + Mesh + Mreža - Make a Box - Napravi kvadar + Make a Box + Napravi kvadar - - + + CmdMeshExMakeTool - Mesh - Mreža + Mesh + Mreža - Make a Tool - Napravi Alat + Make a Tool + Napravi Alat - - + + CmdMeshExMakeUnion - Mesh - Mreža + Mesh + Mreža - Make Union - Napravi uniju + Make Union + Napravi uniju - - + + CmdMeshExport - Mesh - Mreža + Mesh + Mreža - Export mesh... - Izvoz MESH-a... + Export mesh... + Izvoz MESH-a... - Exports a mesh to file - Izvoz MESH-a u datoteku + Exports a mesh to file + Izvoz MESH-a u datoteku - - + + CmdMeshFillInteractiveHole - Mesh - Mreža + Mesh + Mreža - Close hole - Zatvori rupe + Close hole + Zatvori rupe - Close holes interactively - Zatvori rupe interaktivno + Close holes interactively + Zatvori rupe interaktivno - - + + CmdMeshFillupHoles - Mesh - Mreža + Mesh + Mreža - Fill holes... - Ispuni rupe... + Fill holes... + Ispuni rupe... - Fill holes of the mesh - Ispuni rupe MESH-a + Fill holes of the mesh + Ispuni rupe MESH-a - - + + CmdMeshFlipNormals - Mesh - Mreža + Mesh + Mreža - Flip normals - Zrcali normale + Flip normals + Zrcali normale - Flips the normals of the mesh - Zrcali normale MESH-a + Flips the normals of the mesh + Zrcali normale MESH-a - - + + CmdMeshFromGeometry - Mesh - Mreža + Mesh + Mreža - Create mesh from geometry... - Stvaranje MESH iz geometrije ... + Create mesh from geometry... + Stvaranje MESH iz geometrije ... - Create mesh from the selected geometry - Stvori MESH od odabranih objekata + Create mesh from the selected geometry + Stvori MESH od odabranih objekata - - + + CmdMeshHarmonizeNormals - Mesh - Mreža + Mesh + Mreža - Harmonize normals - Uskladi normale + Harmonize normals + Uskladi normale - Harmonizes the normals of the mesh - Usklađuje normale MESH-a + Harmonizes the normals of the mesh + Usklađuje normale MESH-a - - + + CmdMeshImport - Mesh - Mreža + Mesh + Mreža - Import mesh... - Uvezi MESH... + Import mesh... + Uvezi MESH... - Imports a mesh from file - Uvoz MESH-a iz datoteke + Imports a mesh from file + Uvoz MESH-a iz datoteke - - + + CmdMeshIntersection - Mesh - Mreža + Mesh + Mreža - Intersection - Presjek + Intersection + Presjek - - + + CmdMeshPolyCut - Mesh - Mreža + Mesh + Mreža - Cut mesh - Izreži MESH + Cut mesh + Izreži MESH - Cuts a mesh with a picked polygon - Presjeca MESH sa odabranim poligonom + Cuts a mesh with a picked polygon + Presjeca MESH sa odabranim poligonom - - + + CmdMeshPolySegm - Mesh - Mreža + Mesh + Mreža - Make segment - Stvori segment + Make segment + Stvori segment - Creates a mesh segment - Stvara segment MESH-a + Creates a mesh segment + Stvara segment MESH-a - - + + CmdMeshPolySelect - Mesh - Mreža + Mesh + Mreža - Select mesh - Odaberi MESH + Select mesh + Odaberi MESH - Select an area of the mesh - Odaberite područje MESH-a + Select an area of the mesh + Odaberite područje MESH-a - - + + CmdMeshPolySplit - Mesh - Mreža + Mesh + Mreža - Split mesh - Podjeli MESH + Split mesh + Podjeli MESH - Splits a mesh into two meshes - Podijeli MESH na dva dijela + Splits a mesh into two meshes + Podijeli MESH na dva dijela - - + + CmdMeshPolyTrim - Mesh - Mreža + Mesh + Mreža - Trim mesh - + Trim mesh + Izreži mesh - Trims a mesh with a picked polygon - + Trims a mesh with a picked polygon + Presjeca mrežu sa odabranim poligonom - - + + CmdMeshRemoveCompByHand - Mesh - Mreža + Mesh + Mreža - Remove components by hand... - Ukloniti komponente ručno... + Remove components by hand... + Ukloniti komponente ručno... - Mark a component to remove it from the mesh - Označi komponenta koju želite uklonili iz MESH-a + Mark a component to remove it from the mesh + Označi komponenta koju želite uklonili iz MESH-a - - + + CmdMeshRemoveComponents - Mesh - Mreža + Mesh + Mreža - Remove components... - Ukloniti komponente... + Remove components... + Ukloniti komponente... - Remove topologic independent components from the mesh - Izvadite komponente neovisne o topologiji iz MESH-a + Remove topologic independent components from the mesh + Izvadite komponente neovisne o topologiji iz MESH-a - - + + CmdMeshSegmentation - Mesh - Mreža + Mesh + Mreža - Create mesh segments... - + Create mesh segments... + Kreiraj segmente mesh-a... - Create mesh segments - + Create mesh segments + Kreiraj segmente mesh-a - - + + CmdMeshSmoothing - Mesh - Mreža + Mesh + Mreža - Smooth... - Izgladi... + Smooth... + Izgladi... - Smooth the selected meshes - Izgladi odabrani MESH + Smooth the selected meshes + Izgladi odabrani MESH - - + + CmdMeshToolMesh - Mesh - Mreža + Mesh + Mreža - Segment by tool mesh - Segmentiraj pomoću MESH-a + Segment by tool mesh + Segmentiraj pomoću MESH-a - Creates a segment from a given tool mesh - Stvara segment iz danog alata MESH-a + Creates a segment from a given tool mesh + Stvara segment iz danog alata MESH-a - - + + CmdMeshTransform - Mesh - Mreža + Mesh + Mreža - Transform mesh - Transformacija MESH-a + Transform mesh + Transformacija MESH-a - Rotate or move a mesh - Zakretanje ili premještanje MESH-a + Rotate or move a mesh + Zakretanje ili premještanje MESH-a - - + + CmdMeshUnion - Mesh - Mreža + Mesh + Mreža - Union - Unija + Union + Unija - - + + CmdMeshVertexCurvature - Mesh - Mreža + Mesh + Mreža - Calculates the curvature of the vertices of a mesh - Izračunava zakrivljenost vrhova mreže + Calculates the curvature of the vertices of a mesh + Izračunava zakrivljenost vrhova mreže - Curvature plot - Iscrtavanje krivina + Curvature plot + Iscrtavanje krivina - - + + CmdMeshVertexCurvatureInfo - Mesh - Mreža + Mesh + Mreža - Curvature info - Informacije krivina + Curvature info + Informacije krivina - Information about curvature - Informacije o zakrivljenosti + Information about curvature + Informacije o zakrivljenosti - - + + MeshGui::DlgEvaluateMesh - &Help - &Pomoć + &Help + &Pomoć - F1 - F1 + F1 + F1 - &Close - &Zatvori + &Close + &Zatvori - Alt+C - Alt+C + Alt+C + Alt+C - Mesh information - Informacije MESH-a + Mesh information + Informacije MESH-a - No information - Nema informacija + No information + Nema informacija - Number of points: - Broj vrhova: + Number of points: + Broj vrhova: - Number of edges: - Broj rubova: + Number of edges: + Broj rubova: - Refresh - Osvježi + Refresh + Osvježi - Analyze - Analiziraj + Analyze + Analiziraj - Repair - Popravak + Repair + Popravak - Orientation - Orijentacija + Orientation + Orijentacija - Degenerated faces - Degenerirane površine + Degenerated faces + Degenerirane površine - Face indices - Indeksi površina + Face indices + Indeksi površina - Number of faces: - Broj površina: + Number of faces: + Broj površina: - Duplicated faces - Dvostruke površine + Duplicated faces + Dvostruke površine - Duplicated points - Dvostruki vrhovi + Duplicated points + Dvostruki vrhovi - Non-manifolds - Jednostruki + Non-manifolds + Jednostruki - Self-intersections - Preklapanja + Self-intersections + Preklapanja - All above tests together - Sve gore testovi zajedno + All above tests together + Sve gore testovi zajedno - Repetitive repair - Ponavljajući popravak + Repetitive repair + Ponavljajući popravak - Evaluate & Repair Mesh - Procijeni & Popravi MESH + Evaluate & Repair Mesh + Procijeni & Popravi MESH - Folds on surface - Nabori na površini + Folds on surface + Nabori na površini - - + + MeshGui::DlgEvaluateMeshImp - No information - Nema informacija + No information + Nema informacija - Invalid neighbour indices - Nevažeći susjedni indeksi + Invalid neighbour indices + Nevažeći susjedni indeksi - Invalid face indices - Nevaljani indeksi površina + Invalid face indices + Nevaljani indeksi površina - Invalid point indices - Nevažeća točka indeksa + Invalid point indices + Nevažeća točka indeksa - Multiple point indices - Višestruki indeksi točaka + Multiple point indices + Višestruki indeksi točaka - Non-manifolds - Jednostruki + Non-manifolds + Jednostruki - Cannot remove non-manifolds - Ne mogu ukloniti jednostruke + Cannot remove non-manifolds + Ne mogu ukloniti jednostruke - No selection - Nema odabira + No selection + Nema odabira - No flipped normals - Nema zrcaljenih normala + No flipped normals + Nema zrcaljenih normala - %1 flipped normals - %1 zrcaljenih normala + %1 flipped normals + %1 zrcaljenih normala - No non-manifolds - Nema jednostrukih + No non-manifolds + Nema jednostrukih - %1 non-manifolds - %1 jednostrukih + %1 non-manifolds + %1 jednostrukih - No invalid indices - Nema nevažećih indeksa + No invalid indices + Nema nevažećih indeksa - No degenerations - Nema degeneracija + No degenerations + Nema degeneracija - %1 degenerated faces - %1 degeneriranih površina + %1 degenerated faces + %1 degeneriranih površina - No duplicated faces - Nema dvostrukih površina + No duplicated faces + Nema dvostrukih površina - %1 duplicated faces - %1 dvostrukih površina + %1 duplicated faces + %1 dvostrukih površina - No duplicated points - Nema dvostrukih točaka + No duplicated points + Nema dvostrukih točaka - Duplicated points - Dvostruki vrhovi + Duplicated points + Dvostruki vrhovi - Orientation - Orijentacija + Orientation + Orijentacija - Indices - Indeksi + Indices + Indeksi - Degenerations - Degeneracije + Degenerations + Degeneracije - Duplicated faces - Dvostruke površine + Duplicated faces + Dvostruke površine - No self-intersections - Nema prekalpanja + No self-intersections + Nema prekalpanja - Self-intersections - Preklapanja + Self-intersections + Preklapanja - Mesh repair - Popravi MESH + Mesh repair + Popravi MESH - Flipped normals found - Pronađene zrcaljene normale + Flipped normals found + Pronađene zrcaljene normale - Check failed due to folds on the surface. + Check failed due to folds on the surface. Please run the command to repair folds first - Provjera nije uspjela zbog nabora na površini. + Provjera nije uspjela zbog nabora na površini. Molimo pokrenite naredbu za popravak nabora - No folds on surface - Bez nabora na površini + No folds on surface + Bez nabora na površini - %1 folds on surface - %1 nabori na površini + %1 folds on surface + %1 nabori na površini - Folds - Sklapanje + Folds + Sklapanje - - + + MeshGui::DlgRegularSolid - Regular Solid - Obično tijelo + Regular Solid + Obično tijelo - &Create - &Izradi + &Create + &Izradi - Alt+C - Alt+C + Alt+C + Alt+C - Cl&ose - Za&tvori + Cl&ose + Za&tvori - Alt+O - Alt+O + Alt+O + Alt+O - Solid: - Čvrsto tijelo: + Solid: + Čvrsto tijelo: - Cube - Kocka + Cube + Kocka - Cylinder - Valjak + Cylinder + Valjak - Cone - Stožac + Cone + Stožac - Sphere - Kugla + Sphere + Kugla - Ellipsoid - Elipsoid + Ellipsoid + Elipsoid - Torus - Zavojnica + Torus + Zavojnica - Height: - Duljina: + Height: + Duljina: - Length: - Duljina: + Length: + Duljina: - Width: - Širina: + Width: + Širina: - Radius: - Polumjer: + Radius: + Polumjer: - Closed - Zatvoreno + Closed + Zatvoreno - Sampling: - Uzorkovanje: + Sampling: + Uzorkovanje: - Edge length: - Duljina ruba: + Edge length: + Duljina ruba: - Radius 1: - Polumjer 1: + Radius 1: + Polumjer 1: - Radius 2: - Polumjer 2: + Radius 2: + Polumjer 2: - - + + MeshGui::DlgRegularSolidImp - Create %1 - Napravi %1 + Create %1 + Napravi %1 - No active document - Nema aktivnog dokumenta + No active document + Nema aktivnog dokumenta - - + + MeshGui::DlgSettingsMeshView - Mesh view - Pregled MESH-a + Mesh view + Pregled MESH-a - Two-side rendering - Dvostrano renderiranje + Two-side rendering + Dvostrano renderiranje - Backface color - Boja stražnje površine + Backface color + Boja stražnje površine - Smoothing - Izglađivanje + Smoothing + Izglađivanje - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> To je najmanji kut između dva lica gdje se normale izračunavaju za napraviti ravno sjenčanje. </p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> Ako je kut između normale na dvije susjedne lica je manji od pregib kut, lica će biti smoothshaded oko njihove zajedničke ruba. </p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> To je najmanji kut između dva lica gdje se normale izračunavaju za napraviti ravno sjenčanje. </p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> Ako je kut između normale na dvije susjedne lica je manji od pregib kut, lica će biti smoothshaded oko njihove zajedničke ruba. </p></body></html> - Crease angle - Nabor kuta + Crease angle + Nabor kuta - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Sa ravnim sjenčanjem normale površina nisu definiane po točkama što vodi do neprirodnog izgleda zakrivljenih površina, dok upotreba Phong sjenčanja vodi do boljeg izgleda. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Sa ravnim sjenčanjem normale površina nisu definiane po točkama što vodi do neprirodnog izgleda zakrivljenih površina, dok upotreba Phong sjenčanja vodi do boljeg izgleda. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - Define normal per vertex - Definiraj normalu po vrhu - - - ° - ° + Define normal per vertex + Definiraj normalu po vrhu - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-weight:600;">Savjet</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> Definiranje normale na vrh je također pozvao <span style=" font-style:italic;">Phong sjenčanje</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"> <span style=" font-style:normal;">pri definiranju normale po licu se zove</span> Stan <span style=" font-style:normal;">sjenčanje.</span> </p></body></html> + ° + ° - Default appearance for new meshes - Inicijalni izgled za nove MESH-eve + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-weight:600;">Savjet</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> Definiranje normale na vrh je također pozvao <span style=" font-style:italic;">Phong sjenčanje</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"> <span style=" font-style:normal;">pri definiranju normale po licu se zove</span> Stan <span style=" font-style:normal;">sjenčanje.</span> </p></body></html> - Default line color - Zadana boja linije + Default appearance for new meshes + Inicijalni izgled za nove MESH-eve - Mesh transparency - Transparentnost MESH-a + Default line color + Zadana boja linije - Default mesh color - Zadana boja MESH-a + Mesh transparency + Transparentnost MESH-a - Show bounding-box for highlighted or selected meshes - Pokaži graničnu kutiju za istaknute ili odabrane mreže + Default mesh color + Zadana boja MESH-a - Line transparency - Transparentnost linije + Show bounding-box for highlighted or selected meshes + Pokaži graničnu kutiju za istaknute ili odabrane mreže - - + + Line transparency + Transparentnost linije + + + MeshGui::DlgSmoothing - Smoothing - Izglađivanje + Smoothing + Izglađivanje - Method - Metoda + Method + Metoda - Taubin - Taubin + Taubin + Taubin - Laplace - Laplace + Laplace + Laplace - Parameter - Parametar + Parameter + Parametar - Iterations: - Iteracije: + Iterations: + Iteracije: - Lambda: - Lambda: + Lambda: + Lambda: - Mu: - Mu: + Mu: + Mu: - - + + MeshGui::MeshFaceAddition - Add triangle - Dodaj trokut + Add triangle + Dodaj trokut - Flip normal - Okreni normalu + Flip normal + Okreni normalu - Clear - Brisanje + Clear + Brisanje - Finish - Završiti + Finish + Završiti - - + + MeshGui::RemoveComponents - Remove components - Ukloniti komponente + Remove components + Ukloniti komponente - Select - Odaberite + Select + Odaberite - Select whole component - Odznači cijelu komponentu + Select whole component + Odznači cijelu komponentu - Pick triangle - Odaberite trokut + Pick triangle + Odaberite trokut - < faces than - < lica od + < faces than + < lica od - Region - Regija + Region + Regija - Components - Komponente + Components + Komponente - All - Sve + All + Sve - Deselect - Odznači + Deselect + Odznači - Deselect whole component - Odznači cijelu komponentu + Deselect whole component + Odznači cijelu komponentu - > faces than - > lica od + > faces than + > lica od - Region options - Opcije regija + Region options + Opcije regija - Respect only triangles with normals facing screen - Poštovanje samo trokuta s normalama prema zaslonu + Respect only triangles with normals facing screen + Poštovanje samo trokuta s normalama prema zaslonu - Respect only visible triangles - Poštovanje jedino vidljivih trokuta + Respect only visible triangles + Poštovanje jedino vidljivih trokuta - - + + MeshGui::Segmentation - Mesh segmentation - + Mesh segmentation + Segmentiranje mesh-a - Smooth mesh - + Smooth mesh + Izgladi mesh - Plane - + Plane + Površina - Tolerance - + Tolerance + Tolerancija - Minumum number of faces - + Minumum number of faces + Minimalan broj ploha - Cylinder - Valjak + Cylinder + Valjak - Radius - + Radius + Radijus - Tolerance (Flat) - + Tolerance (Flat) + Tolerancija (Ravno) - Tolerance (Curved) - + Tolerance (Curved) + Tolerancija (Zakrivljeno) - Minimum number of faces - + Minimum number of faces + Minimalan broj ploha - Sphere - Kugla + Sphere + Kugla - - + + MeshGui::TaskRemoveComponents - Delete - Izbriši + Delete + Izbriši - Invert - Invertiraj + Invert + Invertiraj - - + + QDockWidget - Evaluate & Repair Mesh - Procijeni & Popravi MESH + Evaluate & Repair Mesh + Procijeni & Popravi MESH - - + + QObject - Import mesh - Uvezi mrežu + Import mesh + Uvezi mrežu - Export mesh - Izvezi mrežu + Export mesh + Izvezi mrežu - Solid Mesh - Čvrsta mreža + Solid Mesh + Čvrsta mreža - Boundings - Granice + Boundings + Granice - Fill holes - Ispuni rupe + Fill holes + Ispuni rupe - Fill holes with maximum number of edges: - Ispunite rupe s maksimalnim brojem rubova: + Fill holes with maximum number of edges: + Ispunite rupe s maksimalnim brojem rubova: - Binary STL (*.stl) - Binarni STL (*.STL) + Binary STL (*.stl) + Binarni STL (*.STL) - ASCII STL (*.ast) - ASCII STL (*.AST) + ASCII STL (*.ast) + ASCII STL (*.AST) - Binary Mesh (*.bms) - Binarni MESH (*.BMS) + Binary Mesh (*.bms) + Binarni MESH (*.BMS) - Alias Mesh (*.obj) - Alias MESH (*.obj) + Alias Mesh (*.obj) + Alias MESH (*.obj) - Inventor V2.1 ascii (*.iv) - Izumitelj V2.1 ASCII (*.iv) + Inventor V2.1 ascii (*.iv) + Izumitelj V2.1 ASCII (*.iv) - All Files (*.*) - Sve datoteke (*.*) + All Files (*.*) + Sve datoteke (*.*) - ASCII STL (*.stl) - ASCII STL (*.STL) + ASCII STL (*.stl) + ASCII STL (*.STL) - VRML V2.0 (*.wrl *.vrml) - VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) - Compressed VRML 2.0 (*.wrz) - Komprimirani VRML 2.0 (*.wrz) + Compressed VRML 2.0 (*.wrz) + Komprimirani VRML 2.0 (*.wrz) - Nastran (*.nas *.bdf) - Nastran (*.NAS *.BDF) + Nastran (*.nas *.bdf) + Nastran (*.NAS *.BDF) - Python module def (*.py) - Python modul (*.py) + Python module def (*.py) + Python modul (*.py) - Meshing Tolerance - Tolerancija MESH-a + Meshing Tolerance + Tolerancija MESH-a - Enter tolerance for meshing geometry: - Unesite toleranciju geometrije MESH-a: + Enter tolerance for meshing geometry: + Unesite toleranciju geometrije MESH-a: - The mesh '%1' is a solid. - MESH '%1' je tijelo. + The mesh '%1' is a solid. + MESH '%1' je tijelo. - The mesh '%1' is not a solid. - MESH '%1' nije tijelo. + The mesh '%1' is not a solid. + MESH '%1' nije tijelo. - Min=<%1,%2,%3> + Min=<%1,%2,%3> Max=<%4,%5,%6> - Min=<%1,%2,%3> + Min=<%1,%2,%3> Max=<%4,%5,%6> - [Points: %1, Edges: %2 Faces: %3] - [Vrhovi: %1, Rubovi: %2 Površine: %3] + [Points: %1, Edges: %2 Faces: %3] + [Vrhovi: %1, Rubovi: %2 Površine: %3] - Leave info mode - Zatvori info način rada + Leave info mode + Zatvori info način rada - Index: %1 - Indeks: %1 + Index: %1 + Indeks: %1 - Leave hole-filling mode - Zatvori način rada za popunjavanje otvora + Leave hole-filling mode + Zatvori način rada za popunjavanje otvora - Leave removal mode - Zatvori način rada za uklanjanje + Leave removal mode + Zatvori način rada za uklanjanje - All Mesh Files (*.stl *.ast *.bms *.obj *.ply) - Sve datoteke mreže (*.stl *.ast *.bms *.obj *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + Sve datoteke mreže (*.stl *.ast *.bms *.obj *.ply) - Stanford Polygon (*.ply) - Stanford Poligon (*.ply) + Stanford Polygon (*.ply) + Stanford Poligon (*.ply) - Object File Format (*.off) - Object File Format (*.off) + Object File Format (*.off) + Object File Format (*.off) - Standford Polygon (*.ply) - Standford Poligon (*. ply) + Standford Polygon (*.ply) + Standford Poligon (*. ply) - Delete selected faces - Izbriši odabrane površine + Delete selected faces + Izbriši odabrane površine - Clear selected faces - Izbriši odabrane površine + Clear selected faces + Izbriši odabrane površine - Annotation - Anotacija + Annotation + Anotacija - All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + Sve MESH datoteke (*.stl *.ast *.bms *.obj *.off *.ply) - - + + Workbench - Analyze - Analiziraj + Analyze + Analiziraj - Boolean - Boolean + Boolean + Boolean - &Meshes - &MESH-evi + &Meshes + &MESH-evi - Mesh tools - Alati mreže + Mesh tools + Alati mreže - + diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_hu.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_hu.qm index 3d86fb4a5..a740d23a1 100644 Binary files a/src/Mod/Mesh/Gui/Resources/translations/Mesh_hu.qm and b/src/Mod/Mesh/Gui/Resources/translations/Mesh_hu.qm differ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_hu.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_hu.ts index 2491443bf..de62dd0cd 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_hu.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_hu.ts @@ -1,1204 +1,1204 @@ - - + + CmdMeshAddFacet - Mesh - Mesh + Mesh + Mesh - Add triangle - Háromszöget adjon hozzá + Add triangle + Háromszöget adjon hozzá - Add triangle manually to a mesh - Addjon háromszöget kézzel a hálóhoz + Add triangle manually to a mesh + Addjon háromszöget kézzel a hálóhoz - - + + CmdMeshBoundingBox - Mesh - Mesh + Mesh + Mesh - Boundings info... - Határolók információi... + Boundings info... + Határolók információi... - Shows the boundings of the selected mesh - Megmutatja a kiválasztott háló határvoalait + Shows the boundings of the selected mesh + Megmutatja a kiválasztott háló határvoalait - - + + CmdMeshBuildRegularSolid - Mesh - Mesh + Mesh + Mesh - Regular solid... - Szabályos szilárd test... + Regular solid... + Szabályos szilárd test... - Builds a regular solid - Szabályos szilárd testet épít + Builds a regular solid + Szabályos szilárd testet épít - - + + CmdMeshDemolding - Interactive demolding direction - Interaktív formárambontás iránya + Interactive demolding direction + Interaktív formárambontás iránya - Mesh - Mesh + Mesh + Mesh - - + + CmdMeshDifference - Mesh - Mesh + Mesh + Mesh - Difference - Különbség + Difference + Különbség - - + + CmdMeshEvaluateFacet - Mesh - Mesh + Mesh + Mesh - Face info - Felület infó + Face info + Felület infó - Information about face - Információ a felületről + Information about face + Információ a felületről - - + + CmdMeshEvaluateSolid - Mesh - Mesh + Mesh + Mesh - Check solid mesh - Szilárd háló ellenőrzése + Check solid mesh + Szilárd háló ellenőrzése - Checks whether the mesh is a solid - Ellenőrzi, ha a háló egy szilárd testet ad ki + Checks whether the mesh is a solid + Ellenőrzi, ha a háló egy szilárd testet ad ki - - + + CmdMeshEvaluation - Mesh - Mesh + Mesh + Mesh - Opens a dialog to analyze and repair a mesh - Megnyit egy párbeszédablakot, a háló elemezzéséehez és javításához + Opens a dialog to analyze and repair a mesh + Megnyit egy párbeszédablakot, a háló elemezzéséehez és javításához - Evaluate && Repair mesh... - Háló értékelése & javítása... + Evaluate && Repair mesh... + Háló értékelése & javítása... - - + + CmdMeshExMakeMesh - Mesh - Mesh + Mesh + Mesh - Make a Box - Make a Box + Make a Box + Make a Box - - + + CmdMeshExMakeTool - Mesh - Mesh + Mesh + Mesh - Make a Tool - Make a Tool + Make a Tool + Make a Tool - - + + CmdMeshExMakeUnion - Mesh - Mesh + Mesh + Mesh - Make Union - Make Union + Make Union + Make Union - - + + CmdMeshExport - Mesh - Mesh + Mesh + Mesh - Export mesh... - Háló exportálása... + Export mesh... + Háló exportálása... - Exports a mesh to file - Fájlba exportálja a hálót + Exports a mesh to file + Fájlba exportálja a hálót - - + + CmdMeshFillInteractiveHole - Mesh - Mesh + Mesh + Mesh - Close hole - Lyukat bezárja + Close hole + Lyukat bezárja - Close holes interactively - Interaktívan bezárja a lyukakat + Close holes interactively + Interaktívan bezárja a lyukakat - - + + CmdMeshFillupHoles - Mesh - Mesh + Mesh + Mesh - Fill holes... - Lyukak kitöltése... + Fill holes... + Lyukak kitöltése... - Fill holes of the mesh - A hálón lévő lyukak kitöltése + Fill holes of the mesh + A hálón lévő lyukak kitöltése - - + + CmdMeshFlipNormals - Mesh - Mesh + Mesh + Mesh - Flip normals - Normál tükrözés + Flip normals + Normál tükrözés - Flips the normals of the mesh - A háló normál tükrözése + Flips the normals of the mesh + A háló normál tükrözése - - + + CmdMeshFromGeometry - Mesh - Mesh + Mesh + Mesh - Create mesh from geometry... - Háló létrehozása a geometriából... + Create mesh from geometry... + Háló létrehozása a geometriából... - Create mesh from the selected geometry - Háló létrehozása a kijelölt geometriából + Create mesh from the selected geometry + Háló létrehozása a kijelölt geometriából - - + + CmdMeshHarmonizeNormals - Mesh - Mesh + Mesh + Mesh - Harmonize normals - Normálisok összehangolása + Harmonize normals + Normálisok összehangolása - Harmonizes the normals of the mesh - A hálón lévő normálisok összehangolása + Harmonizes the normals of the mesh + A hálón lévő normálisok összehangolása - - + + CmdMeshImport - Mesh - Mesh + Mesh + Mesh - Import mesh... - Háló importálása... + Import mesh... + Háló importálása... - Imports a mesh from file - A háló importálása fájlból + Imports a mesh from file + A háló importálása fájlból - - + + CmdMeshIntersection - Mesh - Mesh + Mesh + Mesh - Intersection - Metszet + Intersection + Metszet - - + + CmdMeshPolyCut - Mesh - Mesh + Mesh + Mesh - Cut mesh - Háló vágása + Cut mesh + Háló vágása - Cuts a mesh with a picked polygon - Háló kivágása a kiválasztott sokszög rácsvonallal + Cuts a mesh with a picked polygon + Háló kivágása a kiválasztott sokszög rácsvonallal - - + + CmdMeshPolySegm - Mesh - Mesh + Mesh + Mesh - Make segment - Szegmens létrehozása + Make segment + Szegmens létrehozása - Creates a mesh segment - A háló szegmens létrehozása + Creates a mesh segment + A háló szegmens létrehozása - - + + CmdMeshPolySelect - Mesh - Mesh + Mesh + Mesh - Select mesh - Háló kijelölése + Select mesh + Háló kijelölése - Select an area of the mesh - Jelöljön egy területet a hálón + Select an area of the mesh + Jelöljön egy területet a hálón - - + + CmdMeshPolySplit - Mesh - Mesh + Mesh + Mesh - Split mesh - Háló osztása + Split mesh + Háló osztása - Splits a mesh into two meshes - Háló osztása két részre + Splits a mesh into two meshes + Háló osztása két részre - - + + CmdMeshPolyTrim - Mesh - Mesh + Mesh + Mesh - Trim mesh - + Trim mesh + Háló levágása - Trims a mesh with a picked polygon - + Trims a mesh with a picked polygon + A háló levágása kiválaszott sokszöggel - - + + CmdMeshRemoveCompByHand - Mesh - Mesh + Mesh + Mesh - Remove components by hand... - Távolítsa el kézzel az összetevőket... + Remove components by hand... + Távolítsa el kézzel az összetevőket... - Mark a component to remove it from the mesh - Egy összetevő megjelölése a hálóból való eltávolításához + Mark a component to remove it from the mesh + Egy összetevő megjelölése a hálóból való eltávolításához - - + + CmdMeshRemoveComponents - Mesh - Mesh + Mesh + Mesh - Remove components... - Összetevők eltávolítása... + Remove components... + Összetevők eltávolítása... - Remove topologic independent components from the mesh - Vegye ki a topológiailag független részegységeket a hálóból + Remove topologic independent components from the mesh + Vegye ki a topológiailag független részegységeket a hálóból - - + + CmdMeshSegmentation - Mesh - Mesh + Mesh + Mesh - Create mesh segments... - + Create mesh segments... + Háló szegmensek létrehozása... - Create mesh segments - + Create mesh segments + Háló szegmensek létrehozása - - + + CmdMeshSmoothing - Mesh - Mesh + Mesh + Mesh - Smooth... - Simítás + Smooth... + Simítás... - Smooth the selected meshes - Kiválasztott háló simítása + Smooth the selected meshes + Kiválasztott háló simítása - - + + CmdMeshToolMesh - Mesh - Mesh + Mesh + Mesh - Segment by tool mesh - Metszet a háló eszközből + Segment by tool mesh + Metszet a háló eszközből - Creates a segment from a given tool mesh - A megadott háló eszközből készít egy metszetet + Creates a segment from a given tool mesh + A megadott háló eszközből készít egy metszetet - - + + CmdMeshTransform - Mesh - Mesh + Mesh + Mesh - Transform mesh - Háló átalakítás + Transform mesh + Háló átalakítás - Rotate or move a mesh - Háló forgatása vagy mozgatása + Rotate or move a mesh + Háló forgatása vagy mozgatása - - + + CmdMeshUnion - Mesh - Mesh + Mesh + Mesh - Union - Egyesítés + Union + Egyesítés - - + + CmdMeshVertexCurvature - Mesh - Mesh + Mesh + Mesh - Calculates the curvature of the vertices of a mesh - Kiszámítja egy háló csúcspont görbületét + Calculates the curvature of the vertices of a mesh + Kiszámítja egy háló csúcspont görbületét - Curvature plot - Görbület terv + Curvature plot + Görbület terv - - + + CmdMeshVertexCurvatureInfo - Mesh - Mesh + Mesh + Mesh - Curvature info - Görbület információ + Curvature info + Görbület információ - Information about curvature - Görbület információk + Information about curvature + Görbület információk - - + + MeshGui::DlgEvaluateMesh - &Help - &Súgó + &Help + &Súgó - F1 - F1 + F1 + F1 - &Close - &Bezárás + &Close + &Bezárás - Alt+C - Alt+C + Alt+C + Alt+C - Mesh information - Háló információ + Mesh information + Háló információ - No information - Nincs információ + No information + Nincs információ - Number of points: - Pontok száma: + Number of points: + Pontok száma: - Number of edges: - Élek száma: + Number of edges: + Élek száma: - Refresh - Frissítés + Refresh + Frissítés - Analyze - Elemzése + Analyze + Elemzése - Repair - Javítás + Repair + Javítás - Orientation - Tájolás + Orientation + Tájolás - Degenerated faces - Elváltoztatott felület + Degenerated faces + Elváltoztatott felület - Face indices - Felületi jelzőszám + Face indices + Felületi jelzőszám - Number of faces: - Felületek száma: + Number of faces: + Felületek száma: - Duplicated faces - Felületek megduplázása + Duplicated faces + Felületek megduplázása - Duplicated points - Pontok megkettőzése + Duplicated points + Pontok megkettőzése - Non-manifolds - Nem szthatók + Non-manifolds + Nem szthatók - Self-intersections - Saját csomópontok + Self-intersections + Saját csomópontok - All above tests together - Minden fenti vizsgálat együtt + All above tests together + Minden fenti vizsgálat együtt - Repetitive repair - Ismétlődő javítás + Repetitive repair + Ismétlődő javítás - Evaluate & Repair Mesh - Háló értékelése & javítása + Evaluate & Repair Mesh + Háló értékelése & javítása - Folds on surface - Felszíní hajlítás + Folds on surface + Felszíní hajlítás - - + + MeshGui::DlgEvaluateMeshImp - No information - Nincs információ + No information + Nincs információ - Invalid neighbour indices - Érvénytelen szomszédos indexek + Invalid neighbour indices + Érvénytelen szomszédos indexek - Invalid face indices - Érvénytelen felület indexek + Invalid face indices + Érvénytelen felület indexek - Invalid point indices - Érvénytelen pont indexek + Invalid point indices + Érvénytelen pont indexek - Multiple point indices - Több pontos indexek + Multiple point indices + Több pontos indexek - Non-manifolds - Nem szthatók + Non-manifolds + Nem szthatók - Cannot remove non-manifolds - Nem lehet eltávolítani a nem-szétágazottakat + Cannot remove non-manifolds + Nem lehet eltávolítani a nem-szétágazottakat - No selection - Nincs kijelölés + No selection + Nincs kijelölés - No flipped normals - Nincsenek tükrözött normálisok + No flipped normals + Nincsenek tükrözött normálisok - %1 flipped normals - %1 tükrözött normalisok + %1 flipped normals + %1 tükrözött normalisok - No non-manifolds - Nincsenek nem-szétágazottak + No non-manifolds + Nincsenek nem-szétágazottak - %1 non-manifolds - %1 nem-szétágazott + %1 non-manifolds + %1 nem-szétágazott - No invalid indices - Nincsenek érvénytelen indexek + No invalid indices + Nincsenek érvénytelen indexek - No degenerations - Nincs elváltozás + No degenerations + Nincs elváltozás - %1 degenerated faces - %1 elváltozott felület + %1 degenerated faces + %1 elváltozott felület - No duplicated faces - Nincsenek duplikált felületek + No duplicated faces + Nincsenek duplikált felületek - %1 duplicated faces - %1 duplikált felület + %1 duplicated faces + %1 duplikált felület - No duplicated points - Nincsenek duplikált pontok + No duplicated points + Nincsenek duplikált pontok - Duplicated points - Pontok megkettőzése + Duplicated points + Pontok megkettőzése - Orientation - Tájolás + Orientation + Tájolás - Indices - Indexek + Indices + Indexek - Degenerations - Elváltozás + Degenerations + Elváltozás - Duplicated faces - Felületek megduplázása + Duplicated faces + Felületek megduplázása - No self-intersections - Nem belső-csomópontok + No self-intersections + Nem belső-csomópontok - Self-intersections - Saját csomópontok + Self-intersections + Saját csomópontok - Mesh repair - Háló javítása + Mesh repair + Háló javítása - Flipped normals found - Tükrözött normalist talált + Flipped normals found + Tükrözött normalist talált - Check failed due to folds on the surface. + Check failed due to folds on the surface. Please run the command to repair folds first - A felület hajlításának ellenőrzése nem sikerült. + A felület hajlításának ellenőrzése nem sikerült. Kérjük először futtassa a hajlítás javítása parancsot - No folds on surface - Nem hajítható felület + No folds on surface + Nem hajítható felület - %1 folds on surface - %1 felület hajlítása + %1 folds on surface + %1 felület hajlítása - Folds - Hajlítás + Folds + Hajlítás - - + + MeshGui::DlgRegularSolid - Regular Solid - Szabályos szilárd test + Regular Solid + Szabályos szilárd test - &Create - &Létrehozás + &Create + Létrehozás &C - Alt+C - Alt+C + Alt+C + Alt+C - Cl&ose - Bezár + Cl&ose + Bezár - Alt+O - Alt+O + Alt+O + Alt+O - Solid: - Szilárd test: + Solid: + Szilárd test: - Cube - Kocka + Cube + Kocka - Cylinder - Henger + Cylinder + Henger - Cone - Kúp + Cone + Kúp - Sphere - Gömb + Sphere + Gömb - Ellipsoid - Ellipszoid + Ellipsoid + Ellipszoid - Torus - Tórusz + Torus + Tórusz - Height: - Magasság: + Height: + Magasság: - Length: - Hossz: + Length: + Hossz: - Width: - Szélesség: + Width: + Szélesség: - Radius: - Sugár: + Radius: + Sugár: - Closed - Zárva + Closed + Zárva - Sampling: - Mintavétel: + Sampling: + Mintavétel: - Edge length: - Él hossz: + Edge length: + Él hossz: - Radius 1: - Sugár 1: + Radius 1: + Sugár 1: - Radius 2: - Sugár 2: + Radius 2: + Sugár 2: - - + + MeshGui::DlgRegularSolidImp - Create %1 - Létrehozás %1 + Create %1 + Létrehozás %1 - No active document - Nincs aktív dokumentum + No active document + Nincs aktív dokumentum - - + + MeshGui::DlgSettingsMeshView - Mesh view - Háló nézet + Mesh view + Háló nézet - Two-side rendering - Két oldali renderelés + Two-side rendering + Két oldali renderelés - Backface color - Hátsó lap szín + Backface color + Hátsó lap szín - Smoothing - Simítás + Smoothing + Simítás - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Ha a két felület között bezárt szög kisebb mint a gyűrődési szög, akkor a közös élen található felületek simák maradnak.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Ha a két felület között bezárt szög kisebb mint a gyűrődési szög, akkor a közös élen található felületek simák maradnak.</p></body></html> - Crease angle - Gyűrődési szög + Crease angle + Gyűrődési szög - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">A lapos árnyékolással a felületi normák nem vertexként definiáltak, így az ívelt felületek írreálisan jelenik meg, azonban Pong árnyékolásnál simábban jelennek meg. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">A lapos árnyékolással a felületi normák nem vertexként definiáltak, így az ívelt felületek írreálisan jelenik meg, azonban Pong árnyékolásnál simábban jelennek meg. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - Define normal per vertex - Normál vertex meghatározás - - - ° - ° + Define normal per vertex + Normál vertex meghatározás - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">A normálisok vertexként való megjelenítését úgy is nevezik, hogy<span style=" font-style:italic;">Phong árnyékolás</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + ° + ° - Default appearance for new meshes - Új háló alapértelmezett megjelenítése + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">A normálisok vertexként való megjelenítését úgy is nevezik, hogy<span style=" font-style:italic;">Phong árnyékolás</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - Default line color - Alapértelmezett vonalszín + Default appearance for new meshes + Új háló alapértelmezett megjelenítése - Mesh transparency - Háló átlátszóság + Default line color + Alapértelmezett vonalszín - Default mesh color - Alapértelmezett Rácsvonal szín + Mesh transparency + Háló átlátszóság - Show bounding-box for highlighted or selected meshes - Határolókeretben mutatja a kiemelt vagy kiválasztott hálókat + Default mesh color + Alapértelmezett Rácsvonal szín - Line transparency - Vonal átlátszóság + Show bounding-box for highlighted or selected meshes + Határolókeretben mutatja a kiemelt vagy kiválasztott hálókat - - + + Line transparency + Vonal átlátszóság + + + MeshGui::DlgSmoothing - Smoothing - Simítás + Smoothing + Simítás - Method - Módszer + Method + Módszer - Taubin - Taubin + Taubin + Taubin - Laplace - Laplace + Laplace + Laplace - Parameter - Paraméter + Parameter + Paraméter - Iterations: - Lépésszám: + Iterations: + Lépésszám: - Lambda: - Lambda: + Lambda: + Lambda: - Mu: - Mu: + Mu: + Mu: - - + + MeshGui::MeshFaceAddition - Add triangle - Háromszöget adjon hozzá + Add triangle + Háromszöget adjon hozzá - Flip normal - Normál tükrözés + Flip normal + Normál tükrözés - Clear - Tiszta + Clear + Tiszta - Finish - Befejezés + Finish + Befejezés - - + + MeshGui::RemoveComponents - Remove components - Összetevők eltávolítása + Remove components + Összetevők eltávolítása - Select - Kijelölés + Select + Kijelölés - Select whole component - Összetevő kiválasztása + Select whole component + Összetevő kiválasztása - Pick triangle - Háromszög választása + Pick triangle + Háromszög választása - < faces than - <nézd mint + < faces than + <nézd mint - Region - Régió + Region + Régió - Components - Összetevők + Components + Összetevők - All - Minden + All + Minden - Deselect - Kijelölés megszüntetése + Deselect + Kijelölés megszüntetése - Deselect whole component - Kijelölés megszüntetése az egész alkatrészen + Deselect whole component + Kijelölés megszüntetése az egész alkatrészen - > faces than - >nézd mint + > faces than + >nézd mint - Region options - Területi beállítások + Region options + Területi beállítások - Respect only triangles with normals facing screen - Csak a normál felülettel kijelzett háromszögeket részesíti előnybern + Respect only triangles with normals facing screen + Csak a normál felülettel kijelzett háromszögeket részesíti előnybern - Respect only visible triangles - Csak a látható háromszögek figyelembevétele + Respect only visible triangles + Csak a látható háromszögek figyelembevétele - - + + MeshGui::Segmentation - Mesh segmentation - + Mesh segmentation + Háló szegmentálás - Smooth mesh - + Smooth mesh + Sima háló - Plane - + Plane + Sík - Tolerance - + Tolerance + Tűrés - Minumum number of faces - + Minumum number of faces + Felületek minimum száma - Cylinder - Henger + Cylinder + Henger - Radius - + Radius + Sugár - Tolerance (Flat) - + Tolerance (Flat) + Tűréshatár (lapos) - Tolerance (Curved) - + Tolerance (Curved) + Tűréshatár (görbe) - Minimum number of faces - + Minimum number of faces + Felületek minimum száma - Sphere - Gömb + Sphere + Gömb - - + + MeshGui::TaskRemoveComponents - Delete - Töröl + Delete + Töröl - Invert - Invertálás + Invert + Invertálás - - + + QDockWidget - Evaluate & Repair Mesh - Háló értékelése & javítása + Evaluate & Repair Mesh + Háló értékelése & javítása - - + + QObject - Import mesh - Háló importálása + Import mesh + Háló importálása - Export mesh - Háló exportálása + Export mesh + Háló exportálása - Solid Mesh - Szilárde test háló + Solid Mesh + Szilárde test háló - Boundings - Csatlakozások + Boundings + Csatlakozások - Fill holes - Lyukak kitöltése + Fill holes + Lyukak kitöltése - Fill holes with maximum number of edges: - Töltse ki a lyukakat maximális számú élekkel: + Fill holes with maximum number of edges: + Töltse ki a lyukakat maximális számú élekkel: - Binary STL (*.stl) - Bináris STL (*.stl) + Binary STL (*.stl) + Bináris STL (*.stl) - ASCII STL (*.ast) - ASCII STL (*.ast) + ASCII STL (*.ast) + ASCII STL (*.ast) - Binary Mesh (*.bms) - Bináris háló (*.bms) + Binary Mesh (*.bms) + Bináris háló (*.bms) - Alias Mesh (*.obj) - Alias háló (*.obj) + Alias Mesh (*.obj) + Alias háló (*.obj) - Inventor V2.1 ascii (*.iv) - Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*.iv) - All Files (*.*) - Minden fájl (*. *) + All Files (*.*) + Minden fájl (*. *) - ASCII STL (*.stl) - ASCII STL (*.stl) + ASCII STL (*.stl) + ASCII STL (*.stl) - VRML V2.0 (*.wrl *.vrml) - VRML 2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) + VRML 2.0 (*.wrl *.vrml) - Compressed VRML 2.0 (*.wrz) - Tömörített VRML 2.0 (*.wrz) + Compressed VRML 2.0 (*.wrz) + Tömörített VRML 2.0 (*.wrz) - Nastran (*.nas *.bdf) - Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) - Python module def (*.py) - Python modul def (*.py) + Python module def (*.py) + Python modul def (*.py) - Meshing Tolerance - Hálózás tűrése + Meshing Tolerance + Hálózás tűrése - Enter tolerance for meshing geometry: - Adja meg a tűrést az erővonal geometriájának: + Enter tolerance for meshing geometry: + Adja meg a tűrést az erővonal geometriájának: - The mesh '%1' is a solid. - A(z)'%1' háló egy szilárd test. + The mesh '%1' is a solid. + A(z)'%1' háló egy szilárd test. - The mesh '%1' is not a solid. - A(z)'%1' háló nem szilárd test. + The mesh '%1' is not a solid. + A(z)'%1' háló nem szilárd test. - Min=<%1,%2,%3> + Min=<%1,%2,%3> Max=<%4,%5,%6> - Min=<%1,%2,%3> + Min=<%1,%2,%3> Max=<%4,%5,%6> - [Points: %1, Edges: %2 Faces: %3] - [Pontok: %1, Élek: %2 Felületek: %3] + [Points: %1, Edges: %2 Faces: %3] + [Pontok: %1, Élek: %2 Felületek: %3] - Leave info mode - Hagyja az info módot + Leave info mode + Hagyja az info módot - Index: %1 - Index: %1 + Index: %1 + Index: %1 - Leave hole-filling mode - Hagyja lyuk betöltő üzemmódban + Leave hole-filling mode + Hagyja lyuk betöltő üzemmódban - Leave removal mode - Hagyja eltávolítása módban + Leave removal mode + Hagyja eltávolítása módban - All Mesh Files (*.stl *.ast *.bms *.obj *.ply) - Minden háló Fájl (*.stl *.ast *.bms *.obj *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + Minden háló Fájl (*.stl *.ast *.bms *.obj *.ply) - Stanford Polygon (*.ply) - Standford Polygon (*.ply) + Stanford Polygon (*.ply) + Standford Polygon (*.ply) - Object File Format (*.off) - Objektum formátum (*.off) + Object File Format (*.off) + Objektum formátum (*.off) - Standford Polygon (*.ply) - Standford Polygon (*.ply) + Standford Polygon (*.ply) + Standford Polygon (*.ply) - Delete selected faces - Törli a kijelölt felületeket + Delete selected faces + Törli a kijelölt felületeket - Clear selected faces - Kijelölt felületek törlése + Clear selected faces + Kijelölt felületek törlése - Annotation - Jegyzet + Annotation + Jegyzet - All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + Minden háló fájl (*.stl *.ast *.bms *.obj *.off * .ply) - - + + Workbench - Analyze - Elemzése + Analyze + Elemzése - Boolean - Logikai érték + Boolean + Logikai érték - &Meshes - &Behálóz + &Meshes + Behálóz &M - Mesh tools - Háló eszközök + Mesh tools + Háló eszközök - + diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_it.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_it.qm index 6162dd263..8333cd090 100644 Binary files a/src/Mod/Mesh/Gui/Resources/translations/Mesh_it.qm and b/src/Mod/Mesh/Gui/Resources/translations/Mesh_it.qm differ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_it.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_it.ts index ccc7fb043..e02abada3 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_it.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_it.ts @@ -1,1203 +1,1203 @@ - - + + CmdMeshAddFacet - Mesh - Mesh + Mesh + Mesh - Add triangle - Aggiungi triangolo + Add triangle + Aggiungi triangolo - Add triangle manually to a mesh - Aggiunge manualmente un triangolo alla mesh + Add triangle manually to a mesh + Aggiunge manualmente un triangolo alla mesh - - + + CmdMeshBoundingBox - Mesh - Mesh + Mesh + Mesh - Boundings info... - Dettagli sulle connessioni... + Boundings info... + Dettagli sulle connessioni... - Shows the boundings of the selected mesh - Mostra le connessioni della mesh selezionata + Shows the boundings of the selected mesh + Mostra le connessioni della mesh selezionata - - + + CmdMeshBuildRegularSolid - Mesh - Mesh + Mesh + Mesh - Regular solid... - Solido regolare... + Regular solid... + Solido regolare... - Builds a regular solid - Costruisce un solido regolare + Builds a regular solid + Costruisce un solido regolare - - + + CmdMeshDemolding - Interactive demolding direction - Direzione di demodellazione interattiva + Interactive demolding direction + Direzione di demodellazione interattiva - Mesh - Mesh + Mesh + Mesh - - + + CmdMeshDifference - Mesh - Mesh + Mesh + Mesh - Difference - Differenza + Difference + Differenza - - + + CmdMeshEvaluateFacet - Mesh - Mesh + Mesh + Mesh - Face info - Dettagli faccia + Face info + Dettagli faccia - Information about face - Informazioni sulla faccia + Information about face + Informazioni sulla faccia - - + + CmdMeshEvaluateSolid - Mesh - Mesh + Mesh + Mesh - Check solid mesh - Controlla la mesh del solido + Check solid mesh + Controlla la mesh del solido - Checks whether the mesh is a solid - Controlla se la mesh è un solido + Checks whether the mesh is a solid + Controlla se la mesh è un solido - - + + CmdMeshEvaluation - Mesh - Mesh + Mesh + Mesh - Opens a dialog to analyze and repair a mesh - Apre una finestra di dialogo per analizzare e riparare una mesh + Opens a dialog to analyze and repair a mesh + Apre una finestra di dialogo per analizzare e riparare una mesh - Evaluate && Repair mesh... - Analizza && Ripara la mesh... + Evaluate && Repair mesh... + Analizza && Ripara la mesh... - - + + CmdMeshExMakeMesh - Mesh - Mesh + Mesh + Mesh - Make a Box - Crea un prisma + Make a Box + Crea un prisma - - + + CmdMeshExMakeTool - Mesh - Mesh + Mesh + Mesh - Make a Tool - Crea uno strumento + Make a Tool + Crea uno strumento - - + + CmdMeshExMakeUnion - Mesh - Mesh + Mesh + Mesh - Make Union - Crea un'unione + Make Union + Crea un'unione - - + + CmdMeshExport - Mesh - Mesh + Mesh + Mesh - Export mesh... - Esporta mesh... + Export mesh... + Esporta mesh... - Exports a mesh to file - Esporta la mesh in un file + Exports a mesh to file + Esporta la mesh in un file - - + + CmdMeshFillInteractiveHole - Mesh - Mesh + Mesh + Mesh - Close hole - Chiudi il foro + Close hole + Chiudi il foro - Close holes interactively - Chiudi i fori in modo interattivo + Close holes interactively + Chiudi i fori in modo interattivo - - + + CmdMeshFillupHoles - Mesh - Mesh + Mesh + Mesh - Fill holes... - Riempi i fori... + Fill holes... + Riempi i fori... - Fill holes of the mesh - Riempi i fori della mesh + Fill holes of the mesh + Riempi i fori della mesh - - + + CmdMeshFlipNormals - Mesh - Mesh + Mesh + Mesh - Flip normals - Inverti le normali + Flip normals + Inverti le normali - Flips the normals of the mesh - Inverte le normali della mesh + Flips the normals of the mesh + Inverte le normali della mesh - - + + CmdMeshFromGeometry - Mesh - Mesh + Mesh + Mesh - Create mesh from geometry... - Crea una mesh da una geometria... + Create mesh from geometry... + Crea una mesh da una geometria... - Create mesh from the selected geometry - Crea una mesh dalla geometria selezionata + Create mesh from the selected geometry + Crea una mesh dalla geometria selezionata - - + + CmdMeshHarmonizeNormals - Mesh - Mesh + Mesh + Mesh - Harmonize normals - Armonizza le normali + Harmonize normals + Armonizza le normali - Harmonizes the normals of the mesh - Armonizza le normali della mesh + Harmonizes the normals of the mesh + Armonizza le normali della mesh - - + + CmdMeshImport - Mesh - Mesh + Mesh + Mesh - Import mesh... - Importa mesh... + Import mesh... + Importa mesh... - Imports a mesh from file - Importa una mesh da file + Imports a mesh from file + Importa una mesh da file - - + + CmdMeshIntersection - Mesh - Mesh + Mesh + Mesh - Intersection - Intersezione + Intersection + Intersezione - - + + CmdMeshPolyCut - Mesh - Mesh + Mesh + Mesh - Cut mesh - Taglia la mesh + Cut mesh + Taglia la mesh - Cuts a mesh with a picked polygon - Taglia la mesh con un poligono + Cuts a mesh with a picked polygon + Taglia la mesh con un poligono - - + + CmdMeshPolySegm - Mesh - Mesh + Mesh + Mesh - Make segment - Crea un segmento + Make segment + Crea un segmento - Creates a mesh segment - Crea un segmento di mesh + Creates a mesh segment + Crea un segmento di mesh - - + + CmdMeshPolySelect - Mesh - Mesh + Mesh + Mesh - Select mesh - Seleziona mesh + Select mesh + Seleziona mesh - Select an area of the mesh - Seleziona un'area della mesh + Select an area of the mesh + Seleziona un'area della mesh - - + + CmdMeshPolySplit - Mesh - Mesh + Mesh + Mesh - Split mesh - Dividi la mesh + Split mesh + Dividi la mesh - Splits a mesh into two meshes - Divide la mesh in due mesh + Splits a mesh into two meshes + Divide la mesh in due mesh - - + + CmdMeshPolyTrim - Mesh - Mesh + Mesh + Mesh - Trim mesh - + Trim mesh + Taglia mesh - Trims a mesh with a picked polygon - + Trims a mesh with a picked polygon + Taglia una mesh con un poligono selezionato - - + + CmdMeshRemoveCompByHand - Mesh - Mesh + Mesh + Mesh - Remove components by hand... - Rimuovi componenti a mano... + Remove components by hand... + Rimuovi componenti a mano... - Mark a component to remove it from the mesh - Segna un componente per rimuoverlo dalla mesh + Mark a component to remove it from the mesh + Segna un componente per rimuoverlo dalla mesh - - + + CmdMeshRemoveComponents - Mesh - Mesh + Mesh + Mesh - Remove components... - Rimuovi componente... + Remove components... + Rimuovi componente... - Remove topologic independent components from the mesh - Rimuove i componenti topologici indipendenti dalla mesh + Remove topologic independent components from the mesh + Rimuove i componenti topologici indipendenti dalla mesh - - + + CmdMeshSegmentation - Mesh - Mesh + Mesh + Mesh - Create mesh segments... - + Create mesh segments... + Creare segmenti di mesh... - Create mesh segments - + Create mesh segments + Crea segmenti di mesh - - + + CmdMeshSmoothing - Mesh - Mesh + Mesh + Mesh - Smooth... - Leviga... + Smooth... + Leviga... - Smooth the selected meshes - Leviga le mesh selezionate + Smooth the selected meshes + Leviga le mesh selezionate - - + + CmdMeshToolMesh - Mesh - Mesh + Mesh + Mesh - Segment by tool mesh - Segmento da strumento di mesh + Segment by tool mesh + Segmento da strumento di mesh - Creates a segment from a given tool mesh - Crea un segmento da uno strumento di mesh dato + Creates a segment from a given tool mesh + Crea un segmento da uno strumento di mesh dato - - + + CmdMeshTransform - Mesh - Mesh + Mesh + Mesh - Transform mesh - Trasforma la mesh + Transform mesh + Trasforma la mesh - Rotate or move a mesh - Ruota o muove una mesh + Rotate or move a mesh + Ruota o muove una mesh - - + + CmdMeshUnion - Mesh - Mesh + Mesh + Mesh - Union - Unione + Union + Unione - - + + CmdMeshVertexCurvature - Mesh - Mesh + Mesh + Mesh - Calculates the curvature of the vertices of a mesh - Calcola la curvatura dei vertici di una mesh + Calculates the curvature of the vertices of a mesh + Calcola la curvatura dei vertici di una mesh - Curvature plot - Colora curvatura + Curvature plot + Colora curvatura - - + + CmdMeshVertexCurvatureInfo - Mesh - Mesh + Mesh + Mesh - Curvature info - Dettagli curvatura + Curvature info + Dettagli curvatura - Information about curvature - Informazioni sulla curvatura + Information about curvature + Informazioni sulla curvatura - - + + MeshGui::DlgEvaluateMesh - &Help - &Aiuto + &Help + &Aiuto - F1 - F1 + F1 + F1 - &Close - &Chiudi + &Close + &Chiudi - Alt+C - Alt+C + Alt+C + Alt+C - Mesh information - Informazioni sulla mesh + Mesh information + Informazioni sulla mesh - No information - Nessuna informazione + No information + Nessuna informazione - Number of points: - Numero di punti: + Number of points: + Numero di punti: - Number of edges: - Numero di spigoli: + Number of edges: + Numero di spigoli: - Refresh - Aggiorna + Refresh + Aggiorna - Analyze - Analizza + Analyze + Analizza - Repair - Ripara + Repair + Ripara - Orientation - Orientamento + Orientation + Orientamento - Degenerated faces - Facce degenerate + Degenerated faces + Facce degenerate - Face indices - Indici faccia + Face indices + Indici faccia - Number of faces: - Numero di facce: + Number of faces: + Numero di facce: - Duplicated faces - Facce duplicate + Duplicated faces + Facce duplicate - Duplicated points - Punti duplicati + Duplicated points + Punti duplicati - Non-manifolds - Non molteplici + Non-manifolds + Non-manifold - Self-intersections - Auto-intersezioni + Self-intersections + Auto-intersezioni - All above tests together - Tutti i test insieme + All above tests together + Tutti i test insieme - Repetitive repair - Riparazione ripetitiva + Repetitive repair + Riparazione ripetitiva - Evaluate & Repair Mesh - Analizza & Ripara la mesh + Evaluate & Repair Mesh + Analizza & Ripara la mesh - Folds on surface - Pieghe sulla superficie + Folds on surface + Pieghe sulla superficie - - + + MeshGui::DlgEvaluateMeshImp - No information - Nessuna informazione + No information + Nessuna informazione - Invalid neighbour indices - Indici vicini non validi + Invalid neighbour indices + Indici vicini non validi - Invalid face indices - Indici faccia non validi + Invalid face indices + Indici faccia non validi - Invalid point indices - Indici punto non validi + Invalid point indices + Indici punto non validi - Multiple point indices - Indici punto multipli + Multiple point indices + Indici punto multipli - Non-manifolds - Non molteplici + Non-manifolds + Non-manifold - Cannot remove non-manifolds - non è possibile rimuovere i non molteplici + Cannot remove non-manifolds + non è possibile rimuovere i non-manifold - No selection - Nessuna selezione + No selection + Nessuna selezione - No flipped normals - Nessuna normale invertita + No flipped normals + Nessuna normale invertita - %1 flipped normals - %1 normali invertite + %1 flipped normals + %1 normali invertite - No non-manifolds - Nessun non molteplici + No non-manifolds + Nessun non-manifold - %1 non-manifolds - %1 non molteplici + %1 non-manifolds + %1 non-manifold - No invalid indices - Nessun indice non valido + No invalid indices + Nessun indice non valido - No degenerations - Nessuna degenerazione + No degenerations + Nessuna degenerazione - %1 degenerated faces - %1 facce degenerate + %1 degenerated faces + %1 facce degenerate - No duplicated faces - Nessuna faccia duplicata + No duplicated faces + Nessuna faccia duplicata - %1 duplicated faces - %1 facce duplicate + %1 duplicated faces + %1 facce duplicate - No duplicated points - Nessun punto duplicato + No duplicated points + Nessun punto duplicato - Duplicated points - Punti duplicati + Duplicated points + Punti duplicati - Orientation - Orientamento + Orientation + Orientamento - Indices - Indici + Indices + Indici - Degenerations - Degenerazioni + Degenerations + Degenerazioni - Duplicated faces - Facce duplicate + Duplicated faces + Facce duplicate - No self-intersections - Nessuna auto-intersezione + No self-intersections + Nessuna auto-intersezione - Self-intersections - Auto-intersezioni + Self-intersections + Auto-intersezioni - Mesh repair - Ripara la mesh + Mesh repair + Ripara la mesh - Flipped normals found - Trovate normali invertite + Flipped normals found + Trovate normali invertite - Check failed due to folds on the surface. + Check failed due to folds on the surface. Please run the command to repair folds first - Controllo non riuscito a causa di pieghe sulla superficie. Eseguire il comando per riparare pieghe prima + Controllo non riuscito a causa di pieghe sulla superficie. Eseguire il comando per riparare pieghe prima - No folds on surface - Nessuna piega sulla superficie + No folds on surface + Nessuna piega sulla superficie - %1 folds on surface - %1 pieghe sulla superficie + %1 folds on surface + %1 pieghe sulla superficie - Folds - Pieghe + Folds + Pieghe - - + + MeshGui::DlgRegularSolid - Regular Solid - Solido regolare + Regular Solid + Solido regolare - &Create - &Crea + &Create + &Crea - Alt+C - Alt+C + Alt+C + Alt+C - Cl&ose - Ch&iudi + Cl&ose + Ch&iudi - Alt+O - Alt+O + Alt+O + Alt+O - Solid: - Solido: + Solid: + Solido: - Cube - Cubo + Cube + Cubo - Cylinder - Cilindro + Cylinder + Cilindro - Cone - Cono + Cone + Cono - Sphere - Sfera + Sphere + Sfera - Ellipsoid - Ellissoide + Ellipsoid + Ellissoide - Torus - Toro + Torus + Toro - Height: - Altezza: + Height: + Altezza: - Length: - Lunghezza: + Length: + Lunghezza: - Width: - Larghezza: + Width: + Larghezza: - Radius: - Raggio: + Radius: + Raggio: - Closed - Chiuso + Closed + Chiuso - Sampling: - Campionatura: + Sampling: + Campionatura: - Edge length: - Lunghezza spigolo: + Edge length: + Lunghezza spigolo: - Radius 1: - Raggio 1: + Radius 1: + Raggio 1: - Radius 2: - Raggio 2: + Radius 2: + Raggio 2: - - + + MeshGui::DlgRegularSolidImp - Create %1 - Crea %1 + Create %1 + Crea %1 - No active document - Nessun documento attivo + No active document + Nessun documento attivo - - + + MeshGui::DlgSettingsMeshView - Mesh view - Visualizzazione Mesh + Mesh view + Visualizzazione Mesh - Two-side rendering - Render di entrambi i lati + Two-side rendering + Render di entrambi i lati - Backface color - Colore della faccia posteriore + Backface color + Colore della faccia posteriore - Smoothing - Leviga + Smoothing + Leviga - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head> <body style="white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style="margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> Questo è il più piccolo angolo tra due facce nel caso in cui le normali sono calcolate per ottenere un’ombreggiatura di tipo flat. </p><p style="margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> Se l'angolo tra le normali di due facce vicine è minore dell'angolo di piega, le facce saranno levigate in prossimità del loro spigolo comune.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head> <body style="white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style="margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> Questo è il più piccolo angolo tra due facce nel caso in cui le normali sono calcolate per ottenere un’ombreggiatura di tipo flat. </p><p style="margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> Se l'angolo tra le normali di due facce vicine è minore dell'angolo di piega, le facce saranno levigate in prossimità del loro spigolo comune.</p></body></html> - Crease angle - Angolo di piega + Crease angle + Angolo di piega - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Ombreggiatura Flat/Phong</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definisce l’aspetto delle superfici.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> Con l’ombreggiatura flat le normali alla superficie non sono definite per vertice il che conduce ad un aspetto non reale per le superfici curve mentre l’ombreggiatura di Phong porta ad un aspetto più liscio. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Se questa opzione è selezionata sarà utilizzata l’ombreggiatura di Phong , altrimenti sarà utilizzata l’ombreggiatura flat.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Ombreggiatura Flat/Phong</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definisce l’aspetto delle superfici.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> Con l’ombreggiatura flat le normali alla superficie non sono definite per vertice il che conduce ad un aspetto non reale per le superfici curve mentre l’ombreggiatura di Phong porta ad un aspetto più liscio. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Se questa opzione è selezionata sarà utilizzata l’ombreggiatura di Phong , altrimenti sarà utilizzata l’ombreggiatura flat.</p></body></html> - Define normal per vertex - Definisci le normali per vertice - - - ° - ° + Define normal per vertex + Definisci le normali per vertice - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Suggerimento</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definire le normali per vertice è chiamato anche <span style=" font-style:italic;"> ombreggiatura di Phong </span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;"> mentre definire le normali per faccia è chiamato anche </span> ombreggiatura Flat<span style=" font-style:normal;">.</span></p></body></html> + ° + ° - Default appearance for new meshes - Aspetto predefinito per le nuove mesh + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Suggerimento</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definire le normali per vertice è chiamato anche <span style=" font-style:italic;"> ombreggiatura di Phong </span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;"> mentre definire le normali per faccia è chiamato anche </span> ombreggiatura Flat<span style=" font-style:normal;">.</span></p></body></html> - Default line color - Colore predefinito della linea + Default appearance for new meshes + Aspetto predefinito per le nuove mesh - Mesh transparency - Trasparenza della mesh + Default line color + Colore predefinito della linea - Default mesh color - Colore predefinito della mesh + Mesh transparency + Trasparenza della mesh - Show bounding-box for highlighted or selected meshes - Mostra riquadro per le mesh evidenziate o selezionate + Default mesh color + Colore predefinito della mesh - Line transparency - Trasparenza della linea + Show bounding-box for highlighted or selected meshes + Mostra riquadro per le mesh evidenziate o selezionate - - + + Line transparency + Trasparenza della linea + + + MeshGui::DlgSmoothing - Smoothing - Leviga + Smoothing + Leviga - Method - Metodo + Method + Metodo - Taubin - Taubin + Taubin + Taubin - Laplace - Laplace + Laplace + Laplace - Parameter - Parametro + Parameter + Parametro - Iterations: - Iterazioni: + Iterations: + Iterazioni: - Lambda: - Lambda: + Lambda: + Lambda: - Mu: - Mu: + Mu: + Mu: - - + + MeshGui::MeshFaceAddition - Add triangle - Aggiungi triangolo + Add triangle + Aggiungi triangolo - Flip normal - Inverti la normale + Flip normal + Inverti la normale - Clear - Cancella + Clear + Cancella - Finish - Termina + Finish + Termina - - + + MeshGui::RemoveComponents - Remove components - Rimuovi componenti + Remove components + Rimuovi componenti - Select - Seleziona + Select + Seleziona - Select whole component - Seleziona l'intero componente + Select whole component + Seleziona l'intero componente - Pick triangle - Scegli il triangolo + Pick triangle + Scegli il triangolo - < faces than - Facce minori di + < faces than + Facce minori di - Region - Regione + Region + Regione - Components - Componenti + Components + Componenti - All - Tutti + All + Tutti - Deselect - Deseleziona + Deselect + Deseleziona - Deselect whole component - Deseleziona l'intero componente + Deselect whole component + Deseleziona l'intero componente - > faces than - Facce maggiori di + > faces than + Facce maggiori di - Region options - Opzioni regione + Region options + Opzioni regione - Respect only triangles with normals facing screen - Rispetta solo i triangoli con le normali in direzione dello schermo + Respect only triangles with normals facing screen + Rispetta solo i triangoli con le normali in direzione dello schermo - Respect only visible triangles - Rispetta solo i triangoli visibili + Respect only visible triangles + Rispetta solo i triangoli visibili - - + + MeshGui::Segmentation - Mesh segmentation - + Mesh segmentation + Segmentazione della mesh - Smooth mesh - + Smooth mesh + Liscia la mesh - Plane - + Plane + Piano - Tolerance - + Tolerance + Tolleranza - Minumum number of faces - + Minumum number of faces + Numero minimo di facce - Cylinder - Cilindro + Cylinder + Cilindro - Radius - + Radius + Raggio - Tolerance (Flat) - + Tolerance (Flat) + Tolleranza (piano) - Tolerance (Curved) - + Tolerance (Curved) + Tolleranza (curva) - Minimum number of faces - + Minimum number of faces + Numero minimo di facce - Sphere - Sfera + Sphere + Sfera - - + + MeshGui::TaskRemoveComponents - Delete - Elimina + Delete + Elimina - Invert - Inverti + Invert + Inverti - - + + QDockWidget - Evaluate & Repair Mesh - Analizza & Ripara la mesh + Evaluate & Repair Mesh + Analizza & Ripara la mesh - - + + QObject - Import mesh - Importa mesh + Import mesh + Importa mesh - Export mesh - Esporta mesh + Export mesh + Esporta mesh - Solid Mesh - Mesh solida + Solid Mesh + Mesh solida - Boundings - Connessioni + Boundings + Connessioni - Fill holes - Riempi i fori + Fill holes + Riempi i fori - Fill holes with maximum number of edges: - Riempi i fori con il numero massimo di spigoli: + Fill holes with maximum number of edges: + Riempi i fori con il numero massimo di spigoli: - Binary STL (*.stl) - STL binario (*.stl) + Binary STL (*.stl) + STL binario (*.stl) - ASCII STL (*.ast) - STL ASCII (*.ast) + ASCII STL (*.ast) + STL ASCII (*.ast) - Binary Mesh (*.bms) - Mesh Binario (*.bms) + Binary Mesh (*.bms) + Mesh Binario (*.bms) - Alias Mesh (*.obj) - Alias mesh (*.obj) + Alias Mesh (*.obj) + Alias mesh (*.obj) - Inventor V2.1 ascii (*.iv) - Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*.iv) - All Files (*.*) - Tutti i file (*.*) + All Files (*.*) + Tutti i file (*.*) - ASCII STL (*.stl) - STL ASCII (*.ast) + ASCII STL (*.stl) + STL ASCII (*.ast) - VRML V2.0 (*.wrl *.vrml) - VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) - Compressed VRML 2.0 (*.wrz) - VRML 2.0 compresso (*.wrz) + Compressed VRML 2.0 (*.wrz) + VRML 2.0 compresso (*.wrz) - Nastran (*.nas *.bdf) - Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) - Python module def (*.py) - Modulo Python (*.py) + Python module def (*.py) + Modulo Python (*.py) - Meshing Tolerance - Tolleranza Mesh + Meshing Tolerance + Tolleranza Mesh - Enter tolerance for meshing geometry: - Inserisci la tolleranza per la geometria della mesh + Enter tolerance for meshing geometry: + Inserisci la tolleranza per la geometria della mesh - The mesh '%1' is a solid. - La mesh '%1' è un solido. + The mesh '%1' is a solid. + La mesh '%1' è un solido. - The mesh '%1' is not a solid. - La mesh '%1' non è un solido. + The mesh '%1' is not a solid. + La mesh '%1' non è un solido. - Min=<%1,%2,%3> + Min=<%1,%2,%3> Max=<%4,%5,%6> - Min=<%1,%2,%3> + Min=<%1,%2,%3> Max=<%4,%5,%6> - [Points: %1, Edges: %2 Faces: %3] - [Punti: %1, Spigoli: %2 Facce: %3] + [Points: %1, Edges: %2 Faces: %3] + [Punti: %1, Spigoli: %2 Facce: %3] - Leave info mode - Permetti modo info + Leave info mode + Permetti modo info - Index: %1 - Indice: %1 + Index: %1 + Indice: %1 - Leave hole-filling mode - Permetti modo riempimento fori + Leave hole-filling mode + Permetti modo riempimento fori - Leave removal mode - permetti modo rimozione + Leave removal mode + permetti modo rimozione - All Mesh Files (*.stl *.ast *.bms *.obj *.ply) - Tutti i file mesh (*.stl *.ast *.BMS *.obj *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + Tutti i file mesh (*.stl *.ast *.BMS *.obj *.ply) - Stanford Polygon (*.ply) - Poligono di Stanford (*.ply) + Stanford Polygon (*.ply) + Poligono di Stanford (*.ply) - Object File Format (*.off) - Formato file oggetto (*.off) + Object File Format (*.off) + Formato file oggetto (*.off) - Standford Polygon (*.ply) - Poligono di Standford (*.ply) + Standford Polygon (*.ply) + Poligono di Standford (*.ply) - Delete selected faces - Elimina le facce selezionate + Delete selected faces + Elimina le facce selezionate - Clear selected faces - Cancella le facce selezionate + Clear selected faces + Cancella le facce selezionate - Annotation - Annotazione + Annotation + Annotazione - All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + Tutti i file Mesh (*.stl *.ast *.bms *.obj *.off *.ply) - - + + Workbench - Analyze - Analizza + Analyze + Analizza - Boolean - Operazione booleana + Boolean + Operazione booleana - &Meshes - &Mesh + &Meshes + &Mesh - Mesh tools - Strumenti Mesh + Mesh tools + Strumenti Mesh - + diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_ja.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_ja.qm index 6c7b0812a..8f2415a15 100644 Binary files a/src/Mod/Mesh/Gui/Resources/translations/Mesh_ja.qm and b/src/Mod/Mesh/Gui/Resources/translations/Mesh_ja.qm differ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_ja.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_ja.ts index 4625bfcd2..e069f1983 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_ja.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_ja.ts @@ -1,1203 +1,1203 @@ - - + + CmdMeshAddFacet - Mesh - Mesh + Mesh + Mesh - Add triangle - 三角形を追加 + Add triangle + 三角形を追加 - Add triangle manually to a mesh - Add triangle manually to a mesh + Add triangle manually to a mesh + Add triangle manually to a mesh - - + + CmdMeshBoundingBox - Mesh - Mesh + Mesh + Mesh - Boundings info... - Boundings info... + Boundings info... + Boundings info... - Shows the boundings of the selected mesh - Shows the boundings of the selected mesh + Shows the boundings of the selected mesh + Shows the boundings of the selected mesh - - + + CmdMeshBuildRegularSolid - Mesh - Mesh + Mesh + Mesh - Regular solid... - Regular solid... + Regular solid... + Regular solid... - Builds a regular solid - Builds a regular solid + Builds a regular solid + Builds a regular solid - - + + CmdMeshDemolding - Interactive demolding direction - Interactive demolding direction + Interactive demolding direction + Interactive demolding direction - Mesh - Mesh + Mesh + Mesh - - + + CmdMeshDifference - Mesh - Mesh + Mesh + Mesh - Difference - Difference + Difference + Difference - - + + CmdMeshEvaluateFacet - Mesh - Mesh + Mesh + Mesh - Face info - 面の情報 + Face info + 面の情報 - Information about face - Information about face + Information about face + Information about face - - + + CmdMeshEvaluateSolid - Mesh - Mesh + Mesh + Mesh - Check solid mesh - Check solid mesh + Check solid mesh + Check solid mesh - Checks whether the mesh is a solid - Checks whether the mesh is a solid + Checks whether the mesh is a solid + Checks whether the mesh is a solid - - + + CmdMeshEvaluation - Mesh - Mesh + Mesh + Mesh - Opens a dialog to analyze and repair a mesh - Opens a dialog to analyze and repair a mesh + Opens a dialog to analyze and repair a mesh + Opens a dialog to analyze and repair a mesh - Evaluate && Repair mesh... - Evaluate && Repair mesh... + Evaluate && Repair mesh... + Evaluate && Repair mesh... - - + + CmdMeshExMakeMesh - Mesh - Mesh + Mesh + Mesh - Make a Box - Make a Box + Make a Box + Make a Box - - + + CmdMeshExMakeTool - Mesh - Mesh + Mesh + Mesh - Make a Tool - Make a Tool + Make a Tool + Make a Tool - - + + CmdMeshExMakeUnion - Mesh - Mesh + Mesh + Mesh - Make Union - Make Union + Make Union + Make Union - - + + CmdMeshExport - Mesh - Mesh + Mesh + Mesh - Export mesh... - Export mesh... + Export mesh... + Export mesh... - Exports a mesh to file - メッシュをファイルにエクスポート + Exports a mesh to file + メッシュをファイルにエクスポート - - + + CmdMeshFillInteractiveHole - Mesh - Mesh + Mesh + Mesh - Close hole - Close hole + Close hole + Close hole - Close holes interactively - 対話形式で穴を閉じる + Close holes interactively + 対話形式で穴を閉じる - - + + CmdMeshFillupHoles - Mesh - Mesh + Mesh + Mesh - Fill holes... - 穴を閉じる... + Fill holes... + 穴を閉じる... - Fill holes of the mesh - メッシュの穴を閉じる + Fill holes of the mesh + メッシュの穴を閉じる - - + + CmdMeshFlipNormals - Mesh - Mesh + Mesh + Mesh - Flip normals - 法線を反転 + Flip normals + 法線を反転 - Flips the normals of the mesh - Flips the normals of the mesh + Flips the normals of the mesh + Flips the normals of the mesh - - + + CmdMeshFromGeometry - Mesh - Mesh + Mesh + Mesh - Create mesh from geometry... - Create mesh from geometry... + Create mesh from geometry... + Create mesh from geometry... - Create mesh from the selected geometry - Create mesh from the selected geometry + Create mesh from the selected geometry + Create mesh from the selected geometry - - + + CmdMeshHarmonizeNormals - Mesh - Mesh + Mesh + Mesh - Harmonize normals - Harmonize normals + Harmonize normals + Harmonize normals - Harmonizes the normals of the mesh - Harmonizes the normals of the mesh + Harmonizes the normals of the mesh + Harmonizes the normals of the mesh - - + + CmdMeshImport - Mesh - Mesh + Mesh + Mesh - Import mesh... - Import mesh... + Import mesh... + Import mesh... - Imports a mesh from file - Imports a mesh from file + Imports a mesh from file + Imports a mesh from file - - + + CmdMeshIntersection - Mesh - Mesh + Mesh + Mesh - Intersection - Intersection + Intersection + Intersection - - + + CmdMeshPolyCut - Mesh - Mesh + Mesh + Mesh - Cut mesh - Cut mesh + Cut mesh + Cut mesh - Cuts a mesh with a picked polygon - Cuts a mesh with a picked polygon + Cuts a mesh with a picked polygon + Cuts a mesh with a picked polygon - - + + CmdMeshPolySegm - Mesh - Mesh + Mesh + Mesh - Make segment - Make segment + Make segment + セグメントを作成する - Creates a mesh segment - Creates a mesh segment + Creates a mesh segment + メッシュのセグメントを作成 - - + + CmdMeshPolySelect - Mesh - Mesh + Mesh + Mesh - Select mesh - Select mesh + Select mesh + Select mesh - Select an area of the mesh - Select an area of the mesh + Select an area of the mesh + Select an area of the mesh - - + + CmdMeshPolySplit - Mesh - Mesh + Mesh + Mesh - Split mesh - Split mesh + Split mesh + Split mesh - Splits a mesh into two meshes - Splits a mesh into two meshes + Splits a mesh into two meshes + Splits a mesh into two meshes - - + + CmdMeshPolyTrim - Mesh - Mesh + Mesh + Mesh - Trim mesh - + Trim mesh + Trim mesh - Trims a mesh with a picked polygon - + Trims a mesh with a picked polygon + Trims a mesh with a picked polygon - - + + CmdMeshRemoveCompByHand - Mesh - Mesh + Mesh + Mesh - Remove components by hand... - Remove components by hand... + Remove components by hand... + Remove components by hand... - Mark a component to remove it from the mesh - Mark a component to remove it from the mesh + Mark a component to remove it from the mesh + Mark a component to remove it from the mesh - - + + CmdMeshRemoveComponents - Mesh - Mesh + Mesh + Mesh - Remove components... - Remove components... + Remove components... + Remove components... - Remove topologic independent components from the mesh - Remove topologic independent components from the mesh + Remove topologic independent components from the mesh + Remove topologic independent components from the mesh - - + + CmdMeshSegmentation - Mesh - Mesh + Mesh + Mesh - Create mesh segments... - + Create mesh segments... + Create mesh segments... - Create mesh segments - + Create mesh segments + Create mesh segments - - + + CmdMeshSmoothing - Mesh - Mesh + Mesh + Mesh - Smooth... - Smooth... + Smooth... + Smooth... - Smooth the selected meshes - Smooth the selected meshes + Smooth the selected meshes + Smooth the selected meshes - - + + CmdMeshToolMesh - Mesh - Mesh + Mesh + Mesh - Segment by tool mesh - Segment by tool mesh + Segment by tool mesh + ツールメッシュによるセグメント - Creates a segment from a given tool mesh - Creates a segment from a given tool mesh + Creates a segment from a given tool mesh + 指定されたツールメッシュからセグメントを作成 - - + + CmdMeshTransform - Mesh - Mesh + Mesh + Mesh - Transform mesh - メッシュに変換します。 + Transform mesh + メッシュに変換します。 - Rotate or move a mesh - Rotate or move a mesh + Rotate or move a mesh + Rotate or move a mesh - - + + CmdMeshUnion - Mesh - Mesh + Mesh + Mesh - Union - Union + Union + Union - - + + CmdMeshVertexCurvature - Mesh - Mesh + Mesh + Mesh - Calculates the curvature of the vertices of a mesh - メッシュの頂点の曲率を計算 + Calculates the curvature of the vertices of a mesh + メッシュの頂点の曲率を計算 - Curvature plot - Curvature plot + Curvature plot + Curvature plot - - + + CmdMeshVertexCurvatureInfo - Mesh - Mesh + Mesh + Mesh - Curvature info - Curvature info + Curvature info + Curvature info - Information about curvature - Information about curvature + Information about curvature + Information about curvature - - + + MeshGui::DlgEvaluateMesh - &Help - ヘルプ (&H) + &Help + ヘルプ (&H) - F1 - F1 + F1 + F1 - &Close - 閉じる (&C) + &Close + 閉じる (&C) - Alt+C - Alt+C + Alt+C + Alt+C - Mesh information - Mesh information + Mesh information + Mesh information - No information - No information + No information + No information - Number of points: - Number of points: + Number of points: + Number of points: - Number of edges: - エッジの数: + Number of edges: + エッジの数: - Refresh - 更新 + Refresh + 更新 - Analyze - Analyze + Analyze + Analyze - Repair - Repair + Repair + Repair - Orientation - 向き + Orientation + 向き - Degenerated faces - Degenerated faces + Degenerated faces + Degenerated faces - Face indices - Face indices + Face indices + Face indices - Number of faces: - 面の数: + Number of faces: + 面の数: - Duplicated faces - Duplicated faces + Duplicated faces + Duplicated faces - Duplicated points - Duplicated points + Duplicated points + Duplicated points - Non-manifolds - Non-manifolds + Non-manifolds + Non-manifolds - Self-intersections - Self-intersections + Self-intersections + Self-intersections - All above tests together - All above tests together + All above tests together + All above tests together - Repetitive repair - Repetitive repair + Repetitive repair + Repetitive repair - Evaluate & Repair Mesh - Evaluate & Repair Mesh + Evaluate & Repair Mesh + Evaluate & Repair Mesh - Folds on surface - Folds on surface + Folds on surface + Folds on surface - - + + MeshGui::DlgEvaluateMeshImp - No information - No information + No information + No information - Invalid neighbour indices - Invalid neighbour indices + Invalid neighbour indices + Invalid neighbour indices - Invalid face indices - Invalid face indices + Invalid face indices + Invalid face indices - Invalid point indices - Invalid point indices + Invalid point indices + Invalid point indices - Multiple point indices - Multiple point indices + Multiple point indices + 複数点のインデックス - Non-manifolds - Non-manifolds + Non-manifolds + Non-manifolds - Cannot remove non-manifolds - Cannot remove non-manifolds + Cannot remove non-manifolds + Cannot remove non-manifolds - No selection - No selection + No selection + No selection - No flipped normals - No flipped normals + No flipped normals + No flipped normals - %1 flipped normals - %1 flipped normals + %1 flipped normals + %1 flipped normals - No non-manifolds - No non-manifolds + No non-manifolds + No non-manifolds - %1 non-manifolds - %1 non-manifolds + %1 non-manifolds + %1 non-manifolds - No invalid indices - No invalid indices + No invalid indices + No invalid indices - No degenerations - No degenerations + No degenerations + No degenerations - %1 degenerated faces - %1 degenerated faces + %1 degenerated faces + %1 degenerated faces - No duplicated faces - No duplicated faces + No duplicated faces + No duplicated faces - %1 duplicated faces - %1 の重複面 + %1 duplicated faces + %1 の重複面 - No duplicated points - No duplicated points + No duplicated points + No duplicated points - Duplicated points - Duplicated points + Duplicated points + Duplicated points - Orientation - 向き + Orientation + 向き - Indices - Indices + Indices + Indices - Degenerations - Degenerations + Degenerations + Degenerations - Duplicated faces - Duplicated faces + Duplicated faces + Duplicated faces - No self-intersections - No self-intersections + No self-intersections + No self-intersections - Self-intersections - Self-intersections + Self-intersections + Self-intersections - Mesh repair - Mesh repair + Mesh repair + メッシュの修復 - Flipped normals found - Flipped normals found + Flipped normals found + 逆向きの法線が見つかりました - Check failed due to folds on the surface. + Check failed due to folds on the surface. Please run the command to repair folds first - Check failed due to folds on the surface. + Check failed due to folds on the surface. Please run the command to repair folds first - No folds on surface - No folds on surface + No folds on surface + No folds on surface - %1 folds on surface - %1 folds on surface + %1 folds on surface + %1 folds on surface - Folds - Folds + Folds + Folds - - + + MeshGui::DlgRegularSolid - Regular Solid - Regular Solid + Regular Solid + Regular Solid - &Create - &Create + &Create + 作成(&C) - Alt+C - Alt+C + Alt+C + Alt+C - Cl&ose - 閉じる(&O) + Cl&ose + 閉じる(&O) - Alt+O - Alt+O + Alt+O + Alt+O - Solid: - Solid: + Solid: + ソリッド: - Cube - Cube + Cube + 立方体 - Cylinder - Cylinder + Cylinder + 円柱 - Cone - Cone + Cone + 三角錐 - Sphere - Sphere + Sphere + - Ellipsoid - Ellipsoid + Ellipsoid + 楕円 - Torus - Torus + Torus + トーラス - Height: - Height: + Height: + 高さ: - Length: - Length: + Length: + 長さ: - Width: - 幅: + Width: + 幅: - Radius: - 半径: + Radius: + 半径: - Closed - Closed + Closed + Closed - Sampling: - Sampling: + Sampling: + Sampling: - Edge length: - エッジの長さ: + Edge length: + エッジの長さ: - Radius 1: - 半径 1: + Radius 1: + 半径 1: - Radius 2: - 半径 2: + Radius 2: + 半径 2: - - + + MeshGui::DlgRegularSolidImp - Create %1 - Create %1 + Create %1 + %1を作成します。 - No active document - No active document + No active document + No active document - - + + MeshGui::DlgSettingsMeshView - Mesh view - Mesh view + Mesh view + メッシュ表示 - Two-side rendering - Two-side rendering + Two-side rendering + Two-side rendering - Backface color - Backface color + Backface color + Backface color - Smoothing - スムージング + Smoothing + スムージング - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> - Crease angle - Crease angle + Crease angle + Crease angle - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - Define normal per vertex - 頂点ごとに法線を定義します。 - - - ° - ° + Define normal per vertex + 頂点ごとに法線を定義します。 - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-weight:600;">ヒント</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">頂点ごとに法線を定義する方法は<span style=" font-style:italic;">フォンシェーディング</span>と呼ばれています</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"> <span style=" font-style:normal;">また、面ごとの法線を定義する方法は</span>フラットシェーディング<span style=" font-style:normal;">と呼ばれています。</span> </p></body></html> + ° + ° - Default appearance for new meshes - Default appearance for new meshes + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-weight:600;">ヒント</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">頂点ごとに法線を定義する方法は<span style=" font-style:italic;">フォンシェーディング</span>と呼ばれています</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"> <span style=" font-style:normal;">また、面ごとの法線を定義する方法は</span>フラットシェーディング<span style=" font-style:normal;">と呼ばれています。</span> </p></body></html> - Default line color - デフォルトの線の色 + Default appearance for new meshes + Default appearance for new meshes - Mesh transparency - メッシュの透過性 + Default line color + デフォルトの線の色 - Default mesh color - Default mesh color + Mesh transparency + メッシュの透過性 - Show bounding-box for highlighted or selected meshes - Show bounding-box for highlighted or selected meshes + Default mesh color + デフォルトのメッシュ色 - Line transparency - 線の透過性 + Show bounding-box for highlighted or selected meshes + Show bounding-box for highlighted or selected meshes - - + + Line transparency + 線の透過性 + + + MeshGui::DlgSmoothing - Smoothing - スムージング + Smoothing + スムージング - Method - メソッド + Method + メソッド - Taubin - Taubin + Taubin + Taubin - Laplace - Laplace + Laplace + Laplace - Parameter - パラメータ + Parameter + パラメータ - Iterations: - Iterations: + Iterations: + Iterations: - Lambda: - Lambda: + Lambda: + Lambda: - Mu: - Mu: + Mu: + Mu: - - + + MeshGui::MeshFaceAddition - Add triangle - 三角形を追加 + Add triangle + 三角形を追加 - Flip normal - 法線を逆向きに設定 + Flip normal + 法線を逆向きに設定 - Clear - クリア + Clear + クリア - Finish - 完了 + Finish + 完了 - - + + MeshGui::RemoveComponents - Remove components - Remove components + Remove components + コンポーネントを削除します。 - Select - 選択 + Select + 選択 - Select whole component - Select whole component + Select whole component + Select whole component - Pick triangle - Pick triangle + Pick triangle + 三角要素を選択 - < faces than - < faces than + < faces than + < faces than - Region - 領域 + Region + 領域 - Components - Components + Components + Components - All - すべて + All + すべて - Deselect - Deselect + Deselect + 選択を解除 - Deselect whole component - Deselect whole component + Deselect whole component + すべての選択を解除 - > faces than - > faces than + > faces than + > faces than - Region options - 領域のオプション + Region options + 領域のオプション - Respect only triangles with normals facing screen - Respect only triangles with normals facing screen + Respect only triangles with normals facing screen + Respect only triangles with normals facing screen - Respect only visible triangles - Respect only visible triangles + Respect only visible triangles + Respect only visible triangles - - + + MeshGui::Segmentation - Mesh segmentation - + Mesh segmentation + Mesh segmentation - Smooth mesh - + Smooth mesh + Smooth mesh - Plane - + Plane + Plane - Tolerance - + Tolerance + 公差 - Minumum number of faces - + Minumum number of faces + Minumum number of faces - Cylinder - Cylinder + Cylinder + 円柱 - Radius - + Radius + 半径 - Tolerance (Flat) - + Tolerance (Flat) + Tolerance (Flat) - Tolerance (Curved) - + Tolerance (Curved) + Tolerance (Curved) - Minimum number of faces - + Minimum number of faces + Minimum number of faces - Sphere - Sphere + Sphere + - - + + MeshGui::TaskRemoveComponents - Delete - 削除 + Delete + 削除 - Invert - 反転 + Invert + 反転 - - + + QDockWidget - Evaluate & Repair Mesh - Evaluate & Repair Mesh + Evaluate & Repair Mesh + Evaluate & Repair Mesh - - + + QObject - Import mesh - Import mesh + Import mesh + Import mesh - Export mesh - Export mesh + Export mesh + Export mesh - Solid Mesh - Solid Mesh + Solid Mesh + Solid Mesh - Boundings - Boundings + Boundings + Boundings - Fill holes - 穴を埋める + Fill holes + 穴を埋める - Fill holes with maximum number of edges: - Fill holes with maximum number of edges: + Fill holes with maximum number of edges: + Fill holes with maximum number of edges: - Binary STL (*.stl) - Binary STL (*.stl) + Binary STL (*.stl) + Binary STL (*.stl) - ASCII STL (*.ast) - ASCII STL (*.ast) + ASCII STL (*.ast) + ASCII STL (*.ast) - Binary Mesh (*.bms) - Binary Mesh (*.bms) + Binary Mesh (*.bms) + Binary Mesh (*.bms) - Alias Mesh (*.obj) - Alias Mesh (*.obj) + Alias Mesh (*.obj) + Alias Mesh (*.obj) - Inventor V2.1 ascii (*.iv) - Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*.iv) - All Files (*.*) - すべてのファイル (*.*) + All Files (*.*) + すべてのファイル (*.*) - ASCII STL (*.stl) - ASCII STL (*.stl) + ASCII STL (*.stl) + ASCII STL (*.stl) - VRML V2.0 (*.wrl *.vrml) - VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) - Compressed VRML 2.0 (*.wrz) - Compressed VRML 2.0 (*.wrz) + Compressed VRML 2.0 (*.wrz) + Compressed VRML 2.0 (*.wrz) - Nastran (*.nas *.bdf) - Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) - Python module def (*.py) - PythonモジュールDEF(*.py) + Python module def (*.py) + PythonモジュールDEF(*.py) - Meshing Tolerance - Meshing Tolerance + Meshing Tolerance + Meshing Tolerance - Enter tolerance for meshing geometry: - Enter tolerance for meshing geometry: + Enter tolerance for meshing geometry: + Enter tolerance for meshing geometry: - The mesh '%1' is a solid. - '%1'はソリッドメッシュです。 + The mesh '%1' is a solid. + '%1'はソリッドメッシュです。 - The mesh '%1' is not a solid. - The mesh '%1' is not a solid. + The mesh '%1' is not a solid. + The mesh '%1' is not a solid. - Min=<%1,%2,%3> + Min=<%1,%2,%3> Max=<%4,%5,%6> - 最小=<%1,%2,%3> + 最小=<%1,%2,%3> 最大=<%4,%5,%6> - [Points: %1, Edges: %2 Faces: %3] - [Points: %1, Edges: %2 Faces: %3] + [Points: %1, Edges: %2 Faces: %3] + [Points: %1, Edges: %2 Faces: %3] - Leave info mode - Leave info mode + Leave info mode + Leave info mode - Index: %1 - Index: %1 + Index: %1 + Index: %1 - Leave hole-filling mode - Leave hole-filling mode + Leave hole-filling mode + Leave hole-filling mode - Leave removal mode - Leave removal mode + Leave removal mode + Leave removal mode - All Mesh Files (*.stl *.ast *.bms *.obj *.ply) - All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) - Stanford Polygon (*.ply) - Stanford Polygon (*.ply) + Stanford Polygon (*.ply) + Stanford Polygon (*.ply) - Object File Format (*.off) - Object File Format (*.off) + Object File Format (*.off) + Object File Format (*.off) - Standford Polygon (*.ply) - Standford Polygon (*.ply) + Standford Polygon (*.ply) + Standford Polygon (*.ply) - Delete selected faces - Delete selected faces + Delete selected faces + Delete selected faces - Clear selected faces - Clear selected faces + Clear selected faces + Clear selected faces - Annotation - Annotation + Annotation + 注釈 - All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - - + + Workbench - Analyze - Analyze + Analyze + Analyze - Boolean - Boolean + Boolean + Boolean - &Meshes - メッシュ (&M) + &Meshes + メッシュ (&M) - Mesh tools - メッシュツール + Mesh tools + メッシュツール - + diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_nl.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_nl.qm index f0fee7f2d..5630b6de8 100644 Binary files a/src/Mod/Mesh/Gui/Resources/translations/Mesh_nl.qm and b/src/Mod/Mesh/Gui/Resources/translations/Mesh_nl.qm differ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_nl.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_nl.ts index 4f50ae59d..68018c7e1 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_nl.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_nl.ts @@ -1,1205 +1,1204 @@ - - + + CmdMeshAddFacet - Mesh - Mesh + Mesh + Mesh - Add triangle - Driehoek toevoegen + Add triangle + Driehoek toevoegen - Add triangle manually to a mesh - Add triangle manually to a mesh + Add triangle manually to a mesh + Add triangle manually to a mesh - - + + CmdMeshBoundingBox - Mesh - Mesh + Mesh + Mesh - Boundings info... - Boundings info... + Boundings info... + Boundings info... - Shows the boundings of the selected mesh - Shows the boundings of the selected mesh + Shows the boundings of the selected mesh + Shows the boundings of the selected mesh - - + + CmdMeshBuildRegularSolid - Mesh - Mesh + Mesh + Mesh - Regular solid... - Regular solid... + Regular solid... + Regular solid... - Builds a regular solid - Builds a regular solid + Builds a regular solid + Builds a regular solid - - + + CmdMeshDemolding - Interactive demolding direction - Interactive demolding direction + Interactive demolding direction + Interactive demolding direction - Mesh - Mesh + Mesh + Mesh - - + + CmdMeshDifference - Mesh - Mesh + Mesh + Mesh - Difference - Verschil + Difference + Verschil - - + + CmdMeshEvaluateFacet - Mesh - Mesh + Mesh + Mesh - Face info - Vlak-info + Face info + Vlak-info - Information about face - Information about face + Information about face + Information about face - - + + CmdMeshEvaluateSolid - Mesh - Mesh + Mesh + Mesh - Check solid mesh - Check solid mesh + Check solid mesh + Check solid mesh - Checks whether the mesh is a solid - Checks whether the mesh is a solid + Checks whether the mesh is a solid + Checks whether the mesh is a solid - - + + CmdMeshEvaluation - Mesh - Mesh + Mesh + Mesh - Opens a dialog to analyze and repair a mesh - Opens a dialog to analyze and repair a mesh + Opens a dialog to analyze and repair a mesh + Opens a dialog to analyze and repair a mesh - Evaluate && Repair mesh... - Evaluate && Repair mesh... + Evaluate && Repair mesh... + Evaluate && Repair mesh... - - + + CmdMeshExMakeMesh - Mesh - Mesh + Mesh + Mesh - Make a Box - Make a Box + Make a Box + Make a Box - - + + CmdMeshExMakeTool - Mesh - Mesh + Mesh + Mesh - Make a Tool - Make a Tool + Make a Tool + Make a Tool - - + + CmdMeshExMakeUnion - Mesh - Mesh + Mesh + Mesh - Make Union - Make Union + Make Union + Make Union - - + + CmdMeshExport - Mesh - Mesh + Mesh + Mesh - Export mesh... - Export mesh... + Export mesh... + Export mesh... - Exports a mesh to file - Exports a mesh to file + Exports a mesh to file + Exports a mesh to file - - + + CmdMeshFillInteractiveHole - Mesh - Mesh + Mesh + Mesh - Close hole - Dicht gat + Close hole + Dicht gat - Close holes interactively - Sluit gaten interactief + Close holes interactively + Sluit gaten interactief - - + + CmdMeshFillupHoles - Mesh - Mesh + Mesh + Mesh - Fill holes... - Vul gaten... + Fill holes... + Vul gaten... - Fill holes of the mesh - Fill holes of the mesh + Fill holes of the mesh + Fill holes of the mesh - - + + CmdMeshFlipNormals - Mesh - Mesh + Mesh + Mesh - Flip normals - Loodlijnen spiegelen + Flip normals + Loodlijnen spiegelen - Flips the normals of the mesh - Flips the normals of the mesh + Flips the normals of the mesh + Flips the normals of the mesh - - + + CmdMeshFromGeometry - Mesh - Mesh + Mesh + Mesh - Create mesh from geometry... - Create mesh from geometry... + Create mesh from geometry... + Create mesh from geometry... - Create mesh from the selected geometry - Create mesh from the selected geometry + Create mesh from the selected geometry + Create mesh from the selected geometry - - + + CmdMeshHarmonizeNormals - Mesh - Mesh + Mesh + Mesh - Harmonize normals - Harmoniseer loodlijnen + Harmonize normals + Harmoniseer loodlijnen - Harmonizes the normals of the mesh - Harmonizes the normals of the mesh + Harmonizes the normals of the mesh + Harmoniseert de loodlijnen van de mesh - - + + CmdMeshImport - Mesh - Mesh + Mesh + Mesh - Import mesh... - Import mesh... + Import mesh... + Mesh importeren... - Imports a mesh from file - Imports a mesh from file + Imports a mesh from file + Importeer een mesh uit een bestand - - + + CmdMeshIntersection - Mesh - Mesh + Mesh + Mesh - Intersection - Snijpunt + Intersection + Snijpunt - - + + CmdMeshPolyCut - Mesh - Mesh + Mesh + Mesh - Cut mesh - Cut mesh + Cut mesh + Snij de msh - Cuts a mesh with a picked polygon - Cuts a mesh with a picked polygon + Cuts a mesh with a picked polygon + Een mesh snijden met een geselecteerde polygoon - - + + CmdMeshPolySegm - Mesh - Mesh + Mesh + Mesh - Make segment - Maak segment + Make segment + Maak segment - Creates a mesh segment - Creates a mesh segment + Creates a mesh segment + Maakt een mesh segment - - + + CmdMeshPolySelect - Mesh - Mesh + Mesh + Mesh - Select mesh - Select mesh + Select mesh + Select mesh - Select an area of the mesh - Select an area of the mesh + Select an area of the mesh + Selecteer een gebied van de mesh - - + + CmdMeshPolySplit - Mesh - Mesh + Mesh + Mesh - Split mesh - Split mesh + Split mesh + Verdeel de mesh - Splits a mesh into two meshes - Splits a mesh into two meshes + Splits a mesh into two meshes + Splits a mesh into two meshes - - + + CmdMeshPolyTrim - Mesh - Mesh + Mesh + Mesh - Trim mesh - + Trim mesh + Trim mesh - Trims a mesh with a picked polygon - + Trims a mesh with a picked polygon + Trims a mesh with a picked polygon - - + + CmdMeshRemoveCompByHand - Mesh - Mesh + Mesh + Mesh - Remove components by hand... - Verwijder componenten met de hand... + Remove components by hand... + Verwijder componenten met de hand... - Mark a component to remove it from the mesh - Mark a component to remove it from the mesh + Mark a component to remove it from the mesh + Markeer een te verwijderen deel in de mesh - - + + CmdMeshRemoveComponents - Mesh - Mesh + Mesh + Mesh - Remove components... - Verwijder componenten... + Remove components... + Verwijder componenten... - Remove topologic independent components from the mesh - Remove topologic independent components from the mesh + Remove topologic independent components from the mesh + Remove topologic independent components from the mesh - - + + CmdMeshSegmentation - Mesh - Mesh + Mesh + Mesh - Create mesh segments... - + Create mesh segments... + Create mesh segments... - Create mesh segments - + Create mesh segments + Create mesh segments - - + + CmdMeshSmoothing - Mesh - Mesh + Mesh + Mesh - Smooth... - Glad... + Smooth... + Glad... - Smooth the selected meshes - Smooth the selected meshes + Smooth the selected meshes + De geselecteerde meshes glad maken - - + + CmdMeshToolMesh - Mesh - Mesh + Mesh + Mesh - Segment by tool mesh - Segment by tool mesh + Segment by tool mesh + Segment by tool mesh - Creates a segment from a given tool mesh - Creates a segment from a given tool mesh + Creates a segment from a given tool mesh + Hiermee maakt u een segment van een bepaald mesh gereedschap - - + + CmdMeshTransform - Mesh - Mesh + Mesh + Mesh - Transform mesh - Transform mesh + Transform mesh + Transformeren mesh - Rotate or move a mesh - Rotate or move a mesh + Rotate or move a mesh + Draaien of verplaatsen van een mesh - - + + CmdMeshUnion - Mesh - Mesh + Mesh + Mesh - Union - Verbinden + Union + Verbinden - - + + CmdMeshVertexCurvature - Mesh - Mesh + Mesh + Mesh - Calculates the curvature of the vertices of a mesh - Calculates the curvature of the vertices of a mesh + Calculates the curvature of the vertices of a mesh + Calculates the curvature of the vertices of a mesh - Curvature plot - Curvature plot + Curvature plot + Kromming definitie - - + + CmdMeshVertexCurvatureInfo - Mesh - Mesh + Mesh + Mesh - Curvature info - Kromming info + Curvature info + Kromming info - Information about curvature - Informatie over kromming + Information about curvature + Informatie over kromming - - + + MeshGui::DlgEvaluateMesh - &Help - &Help + &Help + &Help - F1 - F1 + F1 + F1 - &Close - &Sluiten + &Close + &Sluiten - Alt+C - Alt+C + Alt+C + Alt+C - Mesh information - Mesh information + Mesh information + Mesh informatie - No information - Geen informatie + No information + Geen informatie - Number of points: - Aantal punten: + Number of points: + Aantal punten: - Number of edges: - Aantal randen: + Number of edges: + Aantal randen: - Refresh - Verversen + Refresh + Verversen - Analyze - Analyseren + Analyze + Analyseren - Repair - Reparatie + Repair + Reparatie - Orientation - Oriëntatie + Orientation + Oriëntatie - Degenerated faces - Degenerated faces + Degenerated faces + Gedegenereerd vlakken - Face indices - Vlakindexen + Face indices + Vlakindexen - Number of faces: - Aantal vlakken: + Number of faces: + Aantal vlakken: - Duplicated faces - Dubbele vlakken + Duplicated faces + Dubbele vlakken - Duplicated points - dubbele punten + Duplicated points + dubbele punten - Non-manifolds - Non-manifolds + Non-manifolds + Non-manifolds - Self-intersections - Zelf-doorsnijdingen + Self-intersections + Zelf-doorsnijdingen - All above tests together - Alle bovenstaande tests samen + All above tests together + Alle bovenstaande tests samen - Repetitive repair - Repetitive repair + Repetitive repair + Herhalende reparatie - Evaluate & Repair Mesh - Evaluate & Repair Mesh + Evaluate & Repair Mesh + Evalueer & herstel de mesh - Folds on surface - Folds on surface + Folds on surface + Plooien op oppervlak - - + + MeshGui::DlgEvaluateMeshImp - No information - Geen informatie + No information + Geen informatie - Invalid neighbour indices - Invalid neighbour indices + Invalid neighbour indices + Ongeldige buurindexen - Invalid face indices - Invalid face indices + Invalid face indices + Ongeldige vlak indexen - Invalid point indices - Invalid point indices + Invalid point indices + Ongeldige punt indexen - Multiple point indices - Multiple point indices + Multiple point indices + Meerdere punt indexen - Non-manifolds - Non-manifolds + Non-manifolds + Non-manifolds - Cannot remove non-manifolds - Cannot remove non-manifolds + Cannot remove non-manifolds + Cannot remove non-manifolds - No selection - Geen selectie + No selection + Geen selectie - No flipped normals - No flipped normals + No flipped normals + Geen gespiegelde loodlijnen - %1 flipped normals - %1 flipped normals + %1 flipped normals + %1 gespiegelde loodlijnen - No non-manifolds - No non-manifolds + No non-manifolds + No non-manifolds - %1 non-manifolds - %1 non-manifolds + %1 non-manifolds + %1 non-manifolds - No invalid indices - Geen ongeldige indices + No invalid indices + Geen ongeldige indices - No degenerations - No degenerations + No degenerations + Geen degeneraties - %1 degenerated faces - %1 degenerated faces + %1 degenerated faces + %1 gedegenereerde vlakken - No duplicated faces - Geen gedupliceerde vlakken + No duplicated faces + Geen gedupliceerde vlakken - %1 duplicated faces - %1 dubbele vlakken + %1 duplicated faces + %1 dubbele vlakken - No duplicated points - Geen dubbele punten + No duplicated points + Geen dubbele punten - Duplicated points - dubbele punten + Duplicated points + dubbele punten - Orientation - Oriëntatie + Orientation + Oriëntatie - Indices - Indexen + Indices + Indexen - Degenerations - Degenerations + Degenerations + Degeneraties - Duplicated faces - Dubbele vlakken + Duplicated faces + Dubbele vlakken - No self-intersections - No self-intersections + No self-intersections + Niet zelfsnijdend - Self-intersections - Zelf-doorsnijdingen + Self-intersections + Zelf-doorsnijdingen - Mesh repair - Mesh repair + Mesh repair + Mesh reparatie - Flipped normals found - Gespiegelde normalen gevonden + Flipped normals found + Gespiegelde normalen gevonden - Check failed due to folds on the surface. + Check failed due to folds on the surface. Please run the command to repair folds first - Check failed due to folds on the surface. -Please run the command to repair folds first + Controle gefaald door plooien op het oppervlak. Gebruik eerst het plooi reparatie command - No folds on surface - Geen plooien op het oppervlak + No folds on surface + Geen plooien op het oppervlak - %1 folds on surface - 1% plooien op het oppervlak + %1 folds on surface + 1% plooien op het oppervlak - Folds - Plooien + Folds + Plooien - - + + MeshGui::DlgRegularSolid - Regular Solid - Regular Solid + Regular Solid + Reguliere volumemodel - &Create - &Maken + &Create + &Maken - Alt+C - Alt+C + Alt+C + Alt+C - Cl&ose - Sl&uiten + Cl&ose + Sl&uiten - Alt+O - Alt+O + Alt+O + Alt+O - Solid: - Solid: + Solid: + Volumemodel: - Cube - Kubus + Cube + Kubus - Cylinder - Cilinder + Cylinder + Cilinder - Cone - Kegel + Cone + Kegel - Sphere - Bol + Sphere + Bol - Ellipsoid - Ellipsoïde + Ellipsoid + Ellipsoïde - Torus - Torus + Torus + Torus - Height: - Hoogte: + Height: + Hoogte: - Length: - Lengte: + Length: + Lengte: - Width: - Breedte: + Width: + Breedte: - Radius: - Straal: + Radius: + Straal: - Closed - Gesloten + Closed + Gesloten - Sampling: - Sampling: + Sampling: + Bemonstering: - Edge length: - Randlengte: + Edge length: + Randlengte: - Radius 1: - Straal 1: + Radius 1: + Straal 1: - Radius 2: - Straal 2: + Radius 2: + Straal 2: - - + + MeshGui::DlgRegularSolidImp - Create %1 - Maak %1 + Create %1 + Maak %1 - No active document - Geen actief document + No active document + Geen actief document - - + + MeshGui::DlgSettingsMeshView - Mesh view - Mesh view + Mesh view + Mesh weergave - Two-side rendering - Twee-zijdig rendering + Two-side rendering + Twee-zijdig rendering - Backface color - Achtervlak kleur + Backface color + Achtervlak kleur - Smoothing - Vloeiend maken + Smoothing + Vloeiend maken - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> - Crease angle - Crease angle + Crease angle + Vouw hoek - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - Define normal per vertex - Definieer normaal per vertex - - - ° - ° + Define normal per vertex + Definieer normaal per vertex - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Het definiëren van normalen per vertex heet ook wel<span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">terwijl het definieren van normalen per vlak wordt genoemd</span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + ° + ° - Default appearance for new meshes - Standaardweergave voor nieuwe rasters + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Het definiëren van normalen per vertex heet ook wel<span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">terwijl het definieren van normalen per vlak wordt genoemd</span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - Default line color - Standaardlijnkleur + Default appearance for new meshes + Standaardweergave voor nieuwe rasters - Mesh transparency - Raster-transparantie + Default line color + Standaardlijnkleur - Default mesh color - Standaard rasterkleur + Mesh transparency + Raster-transparantie - Show bounding-box for highlighted or selected meshes - Toon omsluitende doos voor gemarkeerde of geselecteerde raster + Default mesh color + Standaard rasterkleur - Line transparency - Lijn transparantie + Show bounding-box for highlighted or selected meshes + Toon omsluitende doos voor gemarkeerde of geselecteerde raster - - + + Line transparency + Lijn transparantie + + + MeshGui::DlgSmoothing - Smoothing - Vloeiend maken + Smoothing + Vloeiend maken - Method - Methode + Method + Methode - Taubin - Taubin + Taubin + Taubin - Laplace - Laplace + Laplace + Laplace - Parameter - Parameter + Parameter + Parameter - Iterations: - Iteraties: + Iterations: + Iteraties: - Lambda: - Lambda: + Lambda: + Lambda: - Mu: - Mu: + Mu: + Mu: - - + + MeshGui::MeshFaceAddition - Add triangle - Driehoek toevoegen + Add triangle + Driehoek toevoegen - Flip normal - Normaal spiegelen + Flip normal + Normaal spiegelen - Clear - Wissen + Clear + Wissen - Finish - Voltooien + Finish + Voltooien - - + + MeshGui::RemoveComponents - Remove components - Verwijder componenten + Remove components + Verwijder componenten - Select - Selecteer + Select + Selecteer - Select whole component - Selecteer gehele component + Select whole component + Selecteer gehele component - Pick triangle - Kies driehoek + Pick triangle + Kies driehoek - < faces than - < vlakken dan + < faces than + < vlakken dan - Region - Sectie + Region + Sectie - Components - Onderdelen + Components + Onderdelen - All - Alle + All + Alle - Deselect - Deselecteer + Deselect + Deselecteer - Deselect whole component - Deselecteer gehele component + Deselect whole component + Deselecteer gehele component - > faces than - > vlakken dan + > faces than + > vlakken dan - Region options - Region options + Region options + Region options - Respect only triangles with normals facing screen - Respecteren alleen driehoeken met normalen naar het scherm toe + Respect only triangles with normals facing screen + Respecteren alleen driehoeken met normalen naar het scherm toe - Respect only visible triangles - Respect alleen zichtbaar driehoeken + Respect only visible triangles + Respect alleen zichtbaar driehoeken - - + + MeshGui::Segmentation - Mesh segmentation - + Mesh segmentation + Mesh segmentation - Smooth mesh - + Smooth mesh + Smooth mesh - Plane - + Plane + Vlak - Tolerance - + Tolerance + Tolerantie - Minumum number of faces - + Minumum number of faces + Minumum number of faces - Cylinder - Cilinder + Cylinder + Cilinder - Radius - + Radius + Straal - Tolerance (Flat) - + Tolerance (Flat) + Tolerance (Flat) - Tolerance (Curved) - + Tolerance (Curved) + Tolerance (Curved) - Minimum number of faces - + Minimum number of faces + Minimum number of faces - Sphere - Bol + Sphere + Bol - - + + MeshGui::TaskRemoveComponents - Delete - Verwijderen + Delete + Verwijderen - Invert - Omkeren + Invert + Omkeren - - + + QDockWidget - Evaluate & Repair Mesh - Evaluate & Repair Mesh + Evaluate & Repair Mesh + Evalueer & herstel de mesh - - + + QObject - Import mesh - Import mesh + Import mesh + Import mesh - Export mesh - Export mesh + Export mesh + Export mesh - Solid Mesh - Solid Mesh + Solid Mesh + Solid Mesh - Boundings - Boundings + Boundings + Boundings - Fill holes - Vul gaten + Fill holes + Vul gaten - Fill holes with maximum number of edges: - Vul de gaten met maximum aantal randen: + Fill holes with maximum number of edges: + Vul de gaten met maximum aantal randen: - Binary STL (*.stl) - Binaire STL (*.stl) + Binary STL (*.stl) + Binaire STL (*.stl) - ASCII STL (*.ast) - ASCII STL (*.ast) + ASCII STL (*.ast) + ASCII STL (*.ast) - Binary Mesh (*.bms) - Binary Mesh (*.bms) + Binary Mesh (*.bms) + Binary Mesh (*.bms) - Alias Mesh (*.obj) - Alias Mesh (*.obj) + Alias Mesh (*.obj) + Alias Mesh (*.obj) - Inventor V2.1 ascii (*.iv) - Inventor V2.1 ascii(*.iv) + Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii(*.iv) - All Files (*.*) - Alle bestanden (*.*) + All Files (*.*) + Alle bestanden (*.*) - ASCII STL (*.stl) - ASCII STL (*. stl) + ASCII STL (*.stl) + ASCII STL (*. stl) - VRML V2.0 (*.wrl *.vrml) - VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) - Compressed VRML 2.0 (*.wrz) - Gecomprimeerde VRML 2.0 (*.WRZ) + Compressed VRML 2.0 (*.wrz) + Gecomprimeerde VRML 2.0 (*.WRZ) - Nastran (*.nas *.bdf) - Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) - Python module def (*.py) - Python module def (*.py) + Python module def (*.py) + Python module def (*.py) - Meshing Tolerance - Meshing Tolerance + Meshing Tolerance + Meshing Tolerance - Enter tolerance for meshing geometry: - Enter tolerance for meshing geometry: + Enter tolerance for meshing geometry: + Enter tolerance for meshing geometry: - The mesh '%1' is a solid. - The mesh '%1' is a solid. + The mesh '%1' is a solid. + The mesh '%1' is a solid. - The mesh '%1' is not a solid. - The mesh '%1' is not a solid. + The mesh '%1' is not a solid. + The mesh '%1' is not a solid. - Min=<%1,%2,%3> + Min=<%1,%2,%3> Max=<%4,%5,%6> - Min=<%1,%2,%3> + Min=<%1,%2,%3> Max=<%4,%5,%6> - [Points: %1, Edges: %2 Faces: %3] - [Punten: %1, Randen: %2 Vlakken: %3] + [Points: %1, Edges: %2 Faces: %3] + [Punten: %1, Randen: %2 Vlakken: %3] - Leave info mode - Info modus verlaten + Leave info mode + Info modus verlaten - Index: %1 - Index: %1 + Index: %1 + Index: %1 - Leave hole-filling mode - Gatvulmodus verlaten + Leave hole-filling mode + Gatvulmodus verlaten - Leave removal mode - Verwijdermodus verlaten + Leave removal mode + Verwijdermodus verlaten - All Mesh Files (*.stl *.ast *.bms *.obj *.ply) - All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) - Stanford Polygon (*.ply) - Stanford Polygon (*.ply) + Stanford Polygon (*.ply) + Stanford Polygon (*.ply) - Object File Format (*.off) - Object-bestandsindeling (*.off) + Object File Format (*.off) + Object-bestandsindeling (*.off) - Standford Polygon (*.ply) - Standford Polygon (*.ply) + Standford Polygon (*.ply) + Standford Polygon (*.ply) - Delete selected faces - Verwijder geselecteerde vlakken + Delete selected faces + Verwijder geselecteerde vlakken - Clear selected faces - Opheffen geselecteerde vlakken + Clear selected faces + Opheffen geselecteerde vlakken - Annotation - Aantekening + Annotation + Aantekening - All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - - + + Workbench - Analyze - Analyseren + Analyze + Analyseren - Boolean - Boolean + Boolean + Boolean - &Meshes - &Meshes + &Meshes + @Meshes - Mesh tools - Mesh tools + Mesh tools + Mesh gereedschap - + diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_no.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_no.qm index 90b7089e9..aceb7dcf3 100644 Binary files a/src/Mod/Mesh/Gui/Resources/translations/Mesh_no.qm and b/src/Mod/Mesh/Gui/Resources/translations/Mesh_no.qm differ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_no.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_no.ts index 1ee1090b7..5ab75c7be 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_no.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_no.ts @@ -1,1203 +1,1203 @@ - - + + CmdMeshAddFacet - Mesh - Nett + Mesh + Nett - Add triangle - Legg til triangel + Add triangle + Legg til triangel - Add triangle manually to a mesh - Legg triangel manuelt til et nett + Add triangle manually to a mesh + Legg triangel manuelt til et nett - - + + CmdMeshBoundingBox - Mesh - Nett + Mesh + Nett - Boundings info... - Rammeinfo... + Boundings info... + Rammeinfo... - Shows the boundings of the selected mesh - Viser ramme for valgt nett + Shows the boundings of the selected mesh + Viser ramme for valgt nett - - + + CmdMeshBuildRegularSolid - Mesh - Nett + Mesh + Nett - Regular solid... - Vanlig solid... + Regular solid... + Vanlig solid... - Builds a regular solid - Bygger en vanlig solid + Builds a regular solid + Bygger en vanlig solid - - + + CmdMeshDemolding - Interactive demolding direction - Interaktive avstøpningsretning + Interactive demolding direction + Interaktive avstøpningsretning - Mesh - Nett + Mesh + Nett - - + + CmdMeshDifference - Mesh - Nett + Mesh + Nett - Difference - Differanse + Difference + Differanse - - + + CmdMeshEvaluateFacet - Mesh - Nett + Mesh + Nett - Face info - Flateinfo + Face info + Flateinfo - Information about face - Informasjon om falte + Information about face + Informasjon om falte - - + + CmdMeshEvaluateSolid - Mesh - Nett + Mesh + Nett - Check solid mesh - Sjekk solid nett + Check solid mesh + Sjekk solid nett - Checks whether the mesh is a solid - Kontrollerer om nettet er en solid + Checks whether the mesh is a solid + Kontrollerer om nettet er en solid - - + + CmdMeshEvaluation - Mesh - Nett + Mesh + Nett - Opens a dialog to analyze and repair a mesh - Åpner en dialog for å analysere og reparere et nett + Opens a dialog to analyze and repair a mesh + Åpner en dialog for å analysere og reparere et nett - Evaluate && Repair mesh... - Evaluer og reparer nett... + Evaluate && Repair mesh... + Evaluer og reparer nett... - - + + CmdMeshExMakeMesh - Mesh - Nett + Mesh + Nett - Make a Box - Lag en boks + Make a Box + Lag en boks - - + + CmdMeshExMakeTool - Mesh - Nett + Mesh + Nett - Make a Tool - Lag et verktøy + Make a Tool + Lag et verktøy - - + + CmdMeshExMakeUnion - Mesh - Nett + Mesh + Nett - Make Union - Lag sammenføyning + Make Union + Lag sammenføyning - - + + CmdMeshExport - Mesh - Nett + Mesh + Nett - Export mesh... - Eksporter nett... + Export mesh... + Eksporter nett... - Exports a mesh to file - Eksporterer et nett til fil + Exports a mesh to file + Eksporterer et nett til fil - - + + CmdMeshFillInteractiveHole - Mesh - Nett + Mesh + Nett - Close hole - Lukk hull + Close hole + Lukk hull - Close holes interactively - Lukk hull interaktivt + Close holes interactively + Lukk hull interaktivt - - + + CmdMeshFillupHoles - Mesh - Nett + Mesh + Nett - Fill holes... - Fyll hull... + Fill holes... + Fyll hull... - Fill holes of the mesh - Fyll hull i nettet + Fill holes of the mesh + Fyll hull i nettet - - + + CmdMeshFlipNormals - Mesh - Nett + Mesh + Nett - Flip normals - Vend normaler + Flip normals + Vend normaler - Flips the normals of the mesh - Vender normaler på nettet + Flips the normals of the mesh + Vender normaler på nettet - - + + CmdMeshFromGeometry - Mesh - Nett + Mesh + Nett - Create mesh from geometry... - Lag nett av geometri... + Create mesh from geometry... + Lag nett av geometri... - Create mesh from the selected geometry - Lag nett fra valgt geometri + Create mesh from the selected geometry + Lag nett fra valgt geometri - - + + CmdMeshHarmonizeNormals - Mesh - Nett + Mesh + Nett - Harmonize normals - Harmoniser normaler + Harmonize normals + Harmoniser normaler - Harmonizes the normals of the mesh - Harmoniserer normaler i nett + Harmonizes the normals of the mesh + Harmoniserer normaler i nett - - + + CmdMeshImport - Mesh - Nett + Mesh + Nett - Import mesh... - Importer nett... + Import mesh... + Importer nett... - Imports a mesh from file - Importerer et nett fra fil + Imports a mesh from file + Importerer et nett fra fil - - + + CmdMeshIntersection - Mesh - Nett + Mesh + Nett - Intersection - Kryssningspunkt + Intersection + Kryssningspunkt - - + + CmdMeshPolyCut - Mesh - Nett + Mesh + Nett - Cut mesh - Klipp ut nett + Cut mesh + Klipp ut nett - Cuts a mesh with a picked polygon - Klipper ut et nett med en valgt polygon + Cuts a mesh with a picked polygon + Klipper ut et nett med en valgt polygon - - + + CmdMeshPolySegm - Mesh - Nett + Mesh + Nett - Make segment - Lag segment + Make segment + Lag segment - Creates a mesh segment - Lager et nettsegment + Creates a mesh segment + Lager et nettsegment - - + + CmdMeshPolySelect - Mesh - Nett + Mesh + Nett - Select mesh - Velg nett + Select mesh + Velg nett - Select an area of the mesh - Velg et område i nettet + Select an area of the mesh + Velg et område i nettet - - + + CmdMeshPolySplit - Mesh - Nett + Mesh + Nett - Split mesh - Del nett + Split mesh + Del nett - Splits a mesh into two meshes - Deler et nett i to + Splits a mesh into two meshes + Deler et nett i to - - + + CmdMeshPolyTrim - Mesh - Nett + Mesh + Nett - Trim mesh - + Trim mesh + Trim mesh - Trims a mesh with a picked polygon - + Trims a mesh with a picked polygon + Trims a mesh with a picked polygon - - + + CmdMeshRemoveCompByHand - Mesh - Nett + Mesh + Nett - Remove components by hand... - Fjern elementer for hånd... + Remove components by hand... + Fjern elementer for hånd... - Mark a component to remove it from the mesh - Velg et element å fjerne fra nettet + Mark a component to remove it from the mesh + Velg et element å fjerne fra nettet - - + + CmdMeshRemoveComponents - Mesh - Nett + Mesh + Nett - Remove components... - Fjern elementer... + Remove components... + Fjern elementer... - Remove topologic independent components from the mesh - Remove topologic independent components from the mesh + Remove topologic independent components from the mesh + Remove topologic independent components from the mesh - - + + CmdMeshSegmentation - Mesh - Nett + Mesh + Nett - Create mesh segments... - + Create mesh segments... + Create mesh segments... - Create mesh segments - + Create mesh segments + Create mesh segments - - + + CmdMeshSmoothing - Mesh - Nett + Mesh + Nett - Smooth... - Jevn ut... + Smooth... + Jevn ut... - Smooth the selected meshes - Jevn ut valgte nett + Smooth the selected meshes + Jevn ut valgte nett - - + + CmdMeshToolMesh - Mesh - Nett + Mesh + Nett - Segment by tool mesh - Segment av nettverktøyet + Segment by tool mesh + Segment av nettverktøyet - Creates a segment from a given tool mesh - Oppretter et segment fra et gitt nettverktøy + Creates a segment from a given tool mesh + Oppretter et segment fra et gitt nettverktøy - - + + CmdMeshTransform - Mesh - Nett + Mesh + Nett - Transform mesh - Transformer nett + Transform mesh + Transformer nett - Rotate or move a mesh - Roter eller flytt et net + Rotate or move a mesh + Roter eller flytt et net - - + + CmdMeshUnion - Mesh - Nett + Mesh + Nett - Union - Sammenføy + Union + Sammenføy - - + + CmdMeshVertexCurvature - Mesh - Nett + Mesh + Nett - Calculates the curvature of the vertices of a mesh - Beregner krumningen rundt noder i et nett + Calculates the curvature of the vertices of a mesh + Beregner krumningen rundt noder i et nett - Curvature plot - Krummingsplot + Curvature plot + Krummingsplot - - + + CmdMeshVertexCurvatureInfo - Mesh - Nett + Mesh + Nett - Curvature info - Krummingsinfo + Curvature info + Krummingsinfo - Information about curvature - Informasjon om krumning + Information about curvature + Informasjon om krumning - - + + MeshGui::DlgEvaluateMesh - &Help - &Hjelp + &Help + &Hjelp - F1 - F1 + F1 + F1 - &Close - &Lukk + &Close + &Lukk - Alt+C - Alt+C + Alt+C + Alt+C - Mesh information - Nettinformasjon + Mesh information + Nettinformasjon - No information - Ingen informasjon + No information + Ingen informasjon - Number of points: - Antall punkter: + Number of points: + Antall punkter: - Number of edges: - Antall kanter: + Number of edges: + Antall kanter: - Refresh - Oppdater + Refresh + Oppdater - Analyze - Analyser + Analyze + Analyser - Repair - Reparer + Repair + Reparer - Orientation - Orientering + Orientation + Orientering - Degenerated faces - Degenererte flater + Degenerated faces + Degenererte flater - Face indices - Flateindekser + Face indices + Flateindekser - Number of faces: - Antall flater: + Number of faces: + Antall flater: - Duplicated faces - Dupliserte flater + Duplicated faces + Dupliserte flater - Duplicated points - Dupliserte punkter + Duplicated points + Dupliserte punkter - Non-manifolds - Åpne objekter + Non-manifolds + Åpne objekter - Self-intersections - Selfkryssende + Self-intersections + Selfkryssende - All above tests together - Alle ovennevnte tester sammen + All above tests together + Alle ovennevnte tester sammen - Repetitive repair - Repeterende reparasjon + Repetitive repair + Repeterende reparasjon - Evaluate & Repair Mesh - Evaluer og reparer nett + Evaluate & Repair Mesh + Evaluer og reparer nett - Folds on surface - Folder på overflaten + Folds on surface + Folder på overflaten - - + + MeshGui::DlgEvaluateMeshImp - No information - Ingen informasjon + No information + Ingen informasjon - Invalid neighbour indices - Ugyldige naboindekser + Invalid neighbour indices + Ugyldige naboindekser - Invalid face indices - Ugyldige flateindekser + Invalid face indices + Ugyldige flateindekser - Invalid point indices - Ugyldige punktindekser + Invalid point indices + Ugyldige punktindekser - Multiple point indices - Flere punktindekser + Multiple point indices + Flere punktindekser - Non-manifolds - Åpne objekter + Non-manifolds + Åpne objekter - Cannot remove non-manifolds - Kan ikke fjerne åpne objekter + Cannot remove non-manifolds + Kan ikke fjerne åpne objekter - No selection - Ingen valg + No selection + Ingen valg - No flipped normals - Ingen omvendte normaler + No flipped normals + Ingen omvendte normaler - %1 flipped normals - %1 omvendte normaler + %1 flipped normals + %1 omvendte normaler - No non-manifolds - Ingen åpne objekter + No non-manifolds + Ingen åpne objekter - %1 non-manifolds - %1 åpne objekter + %1 non-manifolds + %1 åpne objekter - No invalid indices - Ingen ugyldige indekser + No invalid indices + Ingen ugyldige indekser - No degenerations - Ingen degenerasjoner + No degenerations + Ingen degenerasjoner - %1 degenerated faces - %1 degenererte flater + %1 degenerated faces + %1 degenererte flater - No duplicated faces - Ingen dupliserte flater + No duplicated faces + Ingen dupliserte flater - %1 duplicated faces - %1 duplisert flate + %1 duplicated faces + %1 duplisert flate - No duplicated points - Ingen dupliserte punkter + No duplicated points + Ingen dupliserte punkter - Duplicated points - Dupliserte punkter + Duplicated points + Dupliserte punkter - Orientation - Orientering + Orientation + Orientering - Indices - Indekser + Indices + Indekser - Degenerations - Degenerasjoner + Degenerations + Degenerasjoner - Duplicated faces - Dupliserte flater + Duplicated faces + Dupliserte flater - No self-intersections - Ingen selvkryssende + No self-intersections + Ingen selvkryssende - Self-intersections - Selfkryssende + Self-intersections + Selfkryssende - Mesh repair - Nettreparasjon + Mesh repair + Nettreparasjon - Flipped normals found - Omvendte normaler funnet + Flipped normals found + Omvendte normaler funnet - Check failed due to folds on the surface. + Check failed due to folds on the surface. Please run the command to repair folds first - Sjekk mislyktes på grunn av folder på overflaten. Kjør kommandoen for å reparere folder første + Sjekk mislyktes på grunn av folder på overflaten. Kjør kommandoen for å reparere folder første - No folds on surface - Ingen folder på overflaten + No folds on surface + Ingen folder på overflaten - %1 folds on surface - %1 folder på overflaten + %1 folds on surface + %1 folder på overflaten - Folds - Folder + Folds + Folder - - + + MeshGui::DlgRegularSolid - Regular Solid - Standard solid + Regular Solid + Standard solid - &Create - &Lag + &Create + &Lag - Alt+C - Alt+C + Alt+C + Alt+C - Cl&ose - L&ukk + Cl&ose + L&ukk - Alt+O - Alt + O + Alt+O + Alt + O - Solid: - Solid: + Solid: + Solid: - Cube - Cube + Cube + Cube - Cylinder - Sylinder + Cylinder + Sylinder - Cone - Kjegle + Cone + Kjegle - Sphere - Sfære + Sphere + Sfære - Ellipsoid - Ellipsoide + Ellipsoid + Ellipsoide - Torus - Torus + Torus + Torus - Height: - Høyde: + Height: + Høyde: - Length: - Lengde: + Length: + Lengde: - Width: - Bredde: + Width: + Bredde: - Radius: - Radius: + Radius: + Radius: - Closed - Lukket + Closed + Lukket - Sampling: - Prøvetaking: + Sampling: + Prøvetaking: - Edge length: - Kantlengde: + Edge length: + Kantlengde: - Radius 1: - Radius 1: + Radius 1: + Radius 1: - Radius 2: - Radius 2: + Radius 2: + Radius 2: - - + + MeshGui::DlgRegularSolidImp - Create %1 - Lag %1 + Create %1 + Lag %1 - No active document - Ingen aktive dokumenter + No active document + Ingen aktive dokumenter - - + + MeshGui::DlgSettingsMeshView - Mesh view - Nett visning + Mesh view + Nett visning - Two-side rendering - Tosidet presentasjonsgjengivelse + Two-side rendering + Tosidet presentasjonsgjengivelse - Backface color - Bakflatefarge + Backface color + Bakflatefarge - Smoothing - Utjevning + Smoothing + Utjevning - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Dette er den minste vinkelen mellom to flater hvor normaler blir kalkulert for flateskyggelegging. </p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Hvis vinkelen på normalene til to nabo flater er mindre enn vinkel på brett, vil flatene bli jevnt skyggelagt rundt felles kant.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Dette er den minste vinkelen mellom to flater hvor normaler blir kalkulert for flateskyggelegging. </p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Hvis vinkelen på normalene til to nabo flater er mindre enn vinkel på brett, vil flatene bli jevnt skyggelagt rundt felles kant.</p></body></html> - Crease angle - Vinkel på brett + Crease angle + Vinkel på brett - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flatskygginging/Phong skyggelegging </span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definerer utseende på overflater.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Ved flatskyggelegging blir ikke overflatenormaler definert per node. Dette gir et urealistisk utseende på kurvede flater. Phongskyggelegging gir et jevnere resultat. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Hvis valgt blir Phongskyggelegging brukt. Hvis ikke blir flatskyggelegging brukt.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flatskygginging/Phong skyggelegging </span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definerer utseende på overflater.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Ved flatskyggelegging blir ikke overflatenormaler definert per node. Dette gir et urealistisk utseende på kurvede flater. Phongskyggelegging gir et jevnere resultat. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Hvis valgt blir Phongskyggelegging brukt. Hvis ikke blir flatskyggelegging brukt.</p></body></html> - Define normal per vertex - Definer normal per node - - - ° - ° + Define normal per vertex + Definer normal per node - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Å definere normaler per node kalles <span style=" font-style:italic;">Phong skyggelegging </span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">mens å definere normaler per flate kalles </span>flateskyggelegging<span style=" font-style:normal;">.</span></p></body></html> + ° + ° - Default appearance for new meshes - Standardutseende for nye nett + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Å definere normaler per node kalles <span style=" font-style:italic;">Phong skyggelegging </span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">mens å definere normaler per flate kalles </span>flateskyggelegging<span style=" font-style:normal;">.</span></p></body></html> - Default line color - Standard linefarge + Default appearance for new meshes + Standardutseende for nye nett - Mesh transparency - Gjennomsiktighet for nett + Default line color + Standard linefarge - Default mesh color - Standardnettfarge + Mesh transparency + Gjennomsiktighet for nett - Show bounding-box for highlighted or selected meshes - Vis rammeboks for uthevet eller valgt nett + Default mesh color + Standardnettfarge - Line transparency - Gjennomsiktighet for linje + Show bounding-box for highlighted or selected meshes + Vis rammeboks for uthevet eller valgt nett - - + + Line transparency + Gjennomsiktighet for linje + + + MeshGui::DlgSmoothing - Smoothing - Utjevning + Smoothing + Utjevning - Method - Metode + Method + Metode - Taubin - Taubin + Taubin + Taubin - Laplace - Laplace + Laplace + Laplace - Parameter - Parameter + Parameter + Parameter - Iterations: - Gjentakelser: + Iterations: + Gjentakelser: - Lambda: - Lambda: + Lambda: + Lambda: - Mu: - Mu: + Mu: + Mu: - - + + MeshGui::MeshFaceAddition - Add triangle - Legg til triangel + Add triangle + Legg til triangel - Flip normal - Vend normal + Flip normal + Vend normal - Clear - Tøm + Clear + Tøm - Finish - Fullfør + Finish + Fullfør - - + + MeshGui::RemoveComponents - Remove components - Fjern elementer + Remove components + Fjern elementer - Select - Velg + Select + Velg - Select whole component - Velg hele elementet + Select whole component + Velg hele elementet - Pick triangle - Velg triangel + Pick triangle + Velg triangel - < faces than - < flater enn + < faces than + < flater enn - Region - Region + Region + Region - Components - Elementer + Components + Elementer - All - Alle + All + Alle - Deselect - Velg bort + Deselect + Velg bort - Deselect whole component - Velg bort hele elementet + Deselect whole component + Velg bort hele elementet - > faces than - > flater enn + > faces than + > flater enn - Region options - Områdealternativer + Region options + Områdealternativer - Respect only triangles with normals facing screen - Ta bare hensyn til triangler med normaler vendt mot skjermen + Respect only triangles with normals facing screen + Ta bare hensyn til triangler med normaler vendt mot skjermen - Respect only visible triangles - Ta bare hensyn til synlige triangler + Respect only visible triangles + Ta bare hensyn til synlige triangler - - + + MeshGui::Segmentation - Mesh segmentation - + Mesh segmentation + Mesh segmentation - Smooth mesh - + Smooth mesh + Smooth mesh - Plane - + Plane + Plan - Tolerance - + Tolerance + Toleranse - Minumum number of faces - + Minumum number of faces + Minumum number of faces - Cylinder - Sylinder + Cylinder + Sylinder - Radius - + Radius + Radius - Tolerance (Flat) - + Tolerance (Flat) + Tolerance (Flat) - Tolerance (Curved) - + Tolerance (Curved) + Tolerance (Curved) - Minimum number of faces - + Minimum number of faces + Minimum number of faces - Sphere - Sfære + Sphere + Sfære - - + + MeshGui::TaskRemoveComponents - Delete - Slett + Delete + Slett - Invert - Inverter + Invert + Inverter - - + + QDockWidget - Evaluate & Repair Mesh - Evaluer og reparer nett + Evaluate & Repair Mesh + Evaluer og reparer nett - - + + QObject - Import mesh - Importer nett + Import mesh + Importer nett - Export mesh - Eksporter nett + Export mesh + Eksporter nett - Solid Mesh - Solid nett + Solid Mesh + Solid nett - Boundings - Rammer + Boundings + Rammer - Fill holes - Fyll hull + Fill holes + Fyll hull - Fill holes with maximum number of edges: - Fyll hull med maksimalt antall kanter: + Fill holes with maximum number of edges: + Fyll hull med maksimalt antall kanter: - Binary STL (*.stl) - Binære STL (*.stl) + Binary STL (*.stl) + Binære STL (*.stl) - ASCII STL (*.ast) - ASCII STL (*.ast) + ASCII STL (*.ast) + ASCII STL (*.ast) - Binary Mesh (*.bms) - Binære nett (*.bms) + Binary Mesh (*.bms) + Binære nett (*.bms) - Alias Mesh (*.obj) - Alias nett (*.obj) + Alias Mesh (*.obj) + Alias nett (*.obj) - Inventor V2.1 ascii (*.iv) - Inventor V2.1 ascii (*. iv) + Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*.iv) - All Files (*.*) - Alle filer (*.*) + All Files (*.*) + Alle filer (*.*) - ASCII STL (*.stl) - ASCII STL (*. STL) + ASCII STL (*.stl) + ASCII STL (*. STL) - VRML V2.0 (*.wrl *.vrml) - VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) - Compressed VRML 2.0 (*.wrz) - Komprimert VRML 2.0 (*.wrz) + Compressed VRML 2.0 (*.wrz) + Komprimert VRML 2.0 (*.wrz) - Nastran (*.nas *.bdf) - Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) - Python module def (*.py) - Python modul def (*.py) + Python module def (*.py) + Python modul def (*.py) - Meshing Tolerance - Toleranse for nett + Meshing Tolerance + Toleranse for nett - Enter tolerance for meshing geometry: - Angi toleranse for nettgeometri: + Enter tolerance for meshing geometry: + Angi toleranse for nettgeometri: - The mesh '%1' is a solid. - Nett '%1' er solid. + The mesh '%1' is a solid. + Nett '%1' er solid. - The mesh '%1' is not a solid. - Nett '%1' er ikke solid. + The mesh '%1' is not a solid. + Nett '%1' er ikke solid. - Min=<%1,%2,%3> + Min=<%1,%2,%3> Max=<%4,%5,%6> - Min=<%1,%2,%3> + Min=<%1,%2,%3> Maks=<%4,%5,%6> - [Points: %1, Edges: %2 Faces: %3] - [Punkter: %1, Kanter: %2 Flater: %3] + [Points: %1, Edges: %2 Faces: %3] + [Punkter: %1, Kanter: %2 Flater: %3] - Leave info mode - Forlat infomodus + Leave info mode + Forlat infomodus - Index: %1 - Indeks: %1 + Index: %1 + Indeks: %1 - Leave hole-filling mode - Forlat hullfyllingsmodus + Leave hole-filling mode + Forlat hullfyllingsmodus - Leave removal mode - Forlat fjerningsmodus + Leave removal mode + Forlat fjerningsmodus - All Mesh Files (*.stl *.ast *.bms *.obj *.ply) - Alle nett filer (*.stl *.ast *.bms *.obj *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + Alle nett filer (*.stl *.ast *.bms *.obj *.ply) - Stanford Polygon (*.ply) - Stanford Polygon (*. ply) + Stanford Polygon (*.ply) + Stanford Polygon (*. ply) - Object File Format (*.off) - Objekt filformat (*. off) + Object File Format (*.off) + Objekt filformat (*. off) - Standford Polygon (*.ply) - Stanford Polygon (*. ply) + Standford Polygon (*.ply) + Stanford Polygon (*. ply) - Delete selected faces - Slett valgte flater + Delete selected faces + Slett valgte flater - Clear selected faces - Fjern valgte flater + Clear selected faces + Fjern valgte flater - Annotation - Merknad + Annotation + Merknad - All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - - + + Workbench - Analyze - Analyser + Analyze + Analyser - Boolean - Boolsk + Boolean + Boolsk - &Meshes - &Nett + &Meshes + &Nett - Mesh tools - Nettverktøy + Mesh tools + Nettverktøy - + diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_pl.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_pl.qm index f21be00c6..1cdab99dd 100644 Binary files a/src/Mod/Mesh/Gui/Resources/translations/Mesh_pl.qm and b/src/Mod/Mesh/Gui/Resources/translations/Mesh_pl.qm differ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_pl.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_pl.ts index 51b4e394a..cfdc550ab 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_pl.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_pl.ts @@ -1,1203 +1,1201 @@ - - + + CmdMeshAddFacet - Mesh - siatka + Mesh + siatka - Add triangle - dodaj trójkąt + Add triangle + dodaj trójkąt - Add triangle manually to a mesh - dodaj trójkąt do siatki + Add triangle manually to a mesh + dodaj trójkąt do siatki - - + + CmdMeshBoundingBox - Mesh - siatka + Mesh + siatka - Boundings info... - granice info + Boundings info... + granice info - Shows the boundings of the selected mesh - Shows the boundings of the selected mesh + Shows the boundings of the selected mesh + Pokazuje bryły brzegowe wybranej siatki - - + + CmdMeshBuildRegularSolid - Mesh - siatka + Mesh + siatka - Regular solid... - prymityw + Regular solid... + prymityw - Builds a regular solid - wstaw prymityw + Builds a regular solid + wstaw prymityw - - + + CmdMeshDemolding - Interactive demolding direction - Interactive demolding direction + Interactive demolding direction + Interaktywny kierunek deformowania - Mesh - siatka + Mesh + siatka - - + + CmdMeshDifference - Mesh - siatka + Mesh + siatka - Difference - Różnica + Difference + Różnica - - + + CmdMeshEvaluateFacet - Mesh - siatka + Mesh + siatka - Face info - Dane fasetki + Face info + Dane fasetki - Information about face - Informacja o fasetce + Information about face + Informacja o fasetce - - + + CmdMeshEvaluateSolid - Mesh - siatka + Mesh + siatka - Check solid mesh - Sprawdź siatkę solid + Check solid mesh + Sprawdź siatkę solid - Checks whether the mesh is a solid - Sprawdza czy siatka jest solidem + Checks whether the mesh is a solid + Sprawdza czy siatka jest solidem - - + + CmdMeshEvaluation - Mesh - siatka + Mesh + siatka - Opens a dialog to analyze and repair a mesh - Okno dialogowe analizy i naprawy siatki + Opens a dialog to analyze and repair a mesh + Okno dialogowe analizy i naprawy siatki - Evaluate && Repair mesh... - Rozwiń && Napraw siatkę + Evaluate && Repair mesh... + Rozwiń && Napraw siatkę - - + + CmdMeshExMakeMesh - Mesh - siatka + Mesh + siatka - Make a Box - Make a Box + Make a Box + Make a Box - - + + CmdMeshExMakeTool - Mesh - siatka + Mesh + siatka - Make a Tool - Make a Tool + Make a Tool + Make a Tool - - + + CmdMeshExMakeUnion - Mesh - siatka + Mesh + siatka - Make Union - Make Union + Make Union + Make Union - - + + CmdMeshExport - Mesh - siatka + Mesh + siatka - Export mesh... - Eksport siatki... + Export mesh... + Eksport siatki... - Exports a mesh to file - Eksport siatki do pliku + Exports a mesh to file + Eksport siatki do pliku - - + + CmdMeshFillInteractiveHole - Mesh - siatka + Mesh + siatka - Close hole - Zamknij otwór + Close hole + Zamknij otwór - Close holes interactively - Zamknij otwory interaktywnie + Close holes interactively + Zamknij otwory interaktywnie - - + + CmdMeshFillupHoles - Mesh - siatka + Mesh + siatka - Fill holes... - Zamknij otwory... + Fill holes... + Zamknij otwory... - Fill holes of the mesh - Zamknij otwory w siatce + Fill holes of the mesh + Zamknij otwory w siatce - - + + CmdMeshFlipNormals - Mesh - siatka + Mesh + siatka - Flip normals - Odwróć 'normalne' + Flip normals + Odwróć 'normalne' - Flips the normals of the mesh - Odwróć 'normalne' siatki + Flips the normals of the mesh + Odwróć 'normalne' siatki - - + + CmdMeshFromGeometry - Mesh - siatka + Mesh + siatka - Create mesh from geometry... - Utwórz siatkę z elementów geometrii... + Create mesh from geometry... + Utwórz siatkę z elementów geometrii... - Create mesh from the selected geometry - Utwórz siatkę z zaznaczonych elementów geometrii + Create mesh from the selected geometry + Utwórz siatkę z zaznaczonych elementów geometrii - - + + CmdMeshHarmonizeNormals - Mesh - siatka + Mesh + siatka - Harmonize normals - Porządkuj normalne + Harmonize normals + Porządkuj normalne - Harmonizes the normals of the mesh - Porządkuje 'normaln'e siatki + Harmonizes the normals of the mesh + Porządkuje 'normaln'e siatki - - + + CmdMeshImport - Mesh - siatka + Mesh + siatka - Import mesh... - Import siatki... + Import mesh... + Import siatki... - Imports a mesh from file - Import siatki z pliku + Imports a mesh from file + Import siatki z pliku - - + + CmdMeshIntersection - Mesh - siatka + Mesh + siatka - Intersection - Przecięcie + Intersection + Przecięcie - - + + CmdMeshPolyCut - Mesh - siatka + Mesh + siatka - Cut mesh - Przytnij siatkę + Cut mesh + Przytnij siatkę - Cuts a mesh with a picked polygon - Przytnij siatkę zaznaczonym wielokątem + Cuts a mesh with a picked polygon + Przytnij siatkę zaznaczonym wielokątem - - + + CmdMeshPolySegm - Mesh - siatka + Mesh + siatka - Make segment - Utwórz segment + Make segment + Utwórz segment - Creates a mesh segment - Tworzy segment siatki + Creates a mesh segment + Tworzy segment siatki - - + + CmdMeshPolySelect - Mesh - siatka + Mesh + siatka - Select mesh - Zaznacz siatkę + Select mesh + Zaznacz siatkę - Select an area of the mesh - Zaznacz fragment siatki + Select an area of the mesh + Zaznacz fragment siatki - - + + CmdMeshPolySplit - Mesh - siatka + Mesh + siatka - Split mesh - Rozdziel siatkę + Split mesh + Rozdziel siatkę - Splits a mesh into two meshes - Rozdziel siatkę na dwoje + Splits a mesh into two meshes + Rozdziel siatkę na dwoje - - + + CmdMeshPolyTrim - Mesh - siatka + Mesh + siatka - Trim mesh - + Trim mesh + Przytnij siatkę - Trims a mesh with a picked polygon - + Trims a mesh with a picked polygon + Przycina siatkę wybranym wielokątem - - + + CmdMeshRemoveCompByHand - Mesh - siatka + Mesh + siatka - Remove components by hand... - Usuń fragmenty ręcznie... + Remove components by hand... + Usuń fragmenty ręcznie... - Mark a component to remove it from the mesh - Zaznacz fragment do usunięcia z siatki + Mark a component to remove it from the mesh + Zaznacz fragment do usunięcia z siatki - - + + CmdMeshRemoveComponents - Mesh - siatka + Mesh + siatka - Remove components... - Usuń składniki... + Remove components... + Usuń składniki... - Remove topologic independent components from the mesh - Kasuj topologię niezależną od siatki + Remove topologic independent components from the mesh + Kasuj topologię niezależną od siatki - - + + CmdMeshSegmentation - Mesh - siatka + Mesh + siatka - Create mesh segments... - + Create mesh segments... + Tworzenie segmentów siatki... - Create mesh segments - + Create mesh segments + Tworzenie segmentów siatki - - + + CmdMeshSmoothing - Mesh - siatka + Mesh + siatka - Smooth... - Wygładź... + Smooth... + Wygładź... - Smooth the selected meshes - Wygładź zaznaczone siatki + Smooth the selected meshes + Wygładź zaznaczone siatki - - + + CmdMeshToolMesh - Mesh - siatka + Mesh + siatka - Segment by tool mesh - Segment by tool mesh + Segment by tool mesh + Segment z narzędzia siatki - Creates a segment from a given tool mesh - Creates a segment from a given tool mesh + Creates a segment from a given tool mesh + Tworzy segment z siatki danego narzędzia - - + + CmdMeshTransform - Mesh - siatka + Mesh + siatka - Transform mesh - Przekształć siatkę + Transform mesh + Przekształć siatkę - Rotate or move a mesh - Obróć lub przesuń siatkę + Rotate or move a mesh + Obróć lub przesuń siatkę - - + + CmdMeshUnion - Mesh - siatka + Mesh + siatka - Union - Połączenie + Union + Suma - - + + CmdMeshVertexCurvature - Mesh - siatka + Mesh + siatka - Calculates the curvature of the vertices of a mesh - Oblicza krzywiznę wierzchołków siatki + Calculates the curvature of the vertices of a mesh + Oblicza krzywiznę wierzchołków siatki - Curvature plot - Curvature plot + Curvature plot + Wykres krzywizny - - + + CmdMeshVertexCurvatureInfo - Mesh - siatka + Mesh + siatka - Curvature info - Informacja o krzywiźnie + Curvature info + Informacja o krzywiźnie - Information about curvature - Information about curvature + Information about curvature + Informacje o krzywiźnie - - + + MeshGui::DlgEvaluateMesh - &Help - &Pomoc + &Help + &Pomoc - F1 - F1 + F1 + F1 - &Close - Zamknij + &Close + Zamknij - Alt+C - Alt+C + Alt+C + Alt+C - Mesh information - Informacja o siatce + Mesh information + Informacja o siatce - No information - Brak danych + No information + Brak danych - Number of points: - Ilość punktów: + Number of points: + Ilość punktów: - Number of edges: - Ilość krawędzi: + Number of edges: + Ilość krawędzi: - Refresh - Odśwież + Refresh + Odśwież - Analyze - Analizuj + Analyze + Analizuj - Repair - Napraw + Repair + Napraw - Orientation - Orientacja + Orientation + Orientacja - Degenerated faces - Fasetki zniekształcone + Degenerated faces + Fasetki zniekształcone - Face indices - Face indices + Face indices + Wskaźniki powierzchni - Number of faces: - Ilość fasetek: + Number of faces: + Ilość fasetek: - Duplicated faces - Zduplikowane fasetki + Duplicated faces + Zduplikowane fasetki - Duplicated points - Zduplikowane punkty + Duplicated points + Zduplikowane punkty - Non-manifolds - Non-manifolds + Non-manifolds + Nierozgałęźne - Self-intersections - Samoprzecięcia + Self-intersections + Samoprzecięcia - All above tests together - All above tests together + All above tests together + Wszystkie powyższe testy razem - Repetitive repair - Powtórna naprawa + Repetitive repair + Powtórna naprawa - Evaluate & Repair Mesh - Rozwiń & napraw siatkę + Evaluate & Repair Mesh + Rozwiń & napraw siatkę - Folds on surface - Zagięcia na płaszczyźnie + Folds on surface + Zagięcia na płaszczyźnie - - + + MeshGui::DlgEvaluateMeshImp - No information - Brak danych + No information + Brak danych - Invalid neighbour indices - Invalid neighbour indices + Invalid neighbour indices + Nieprawidłowe wskaźniki sąsiadów - Invalid face indices - Invalid face indices + Invalid face indices + Nieprawidłowe wskaźniki powierzchni - Invalid point indices - Invalid point indices + Invalid point indices + Nieprawidłowe wskaźniki punktu - Multiple point indices - Multiple point indices + Multiple point indices + Wielokrotne wskaźniki punktu - Non-manifolds - Non-manifolds + Non-manifolds + Nierozgałęźne - Cannot remove non-manifolds - Cannot remove non-manifolds + Cannot remove non-manifolds + Nie można usunąć nierozgałęźnych - No selection - Brak wyboru + No selection + Brak wyboru - No flipped normals - Brak odwróconych 'normalnych' + No flipped normals + Brak odwróconych 'normalnych' - %1 flipped normals - %1 odwrócone normalne + %1 flipped normals + %1 odwrócone normalne - No non-manifolds - No non-manifolds + No non-manifolds + Bez nierozgałęźnych - %1 non-manifolds - %1 non-manifolds + %1 non-manifolds + %1 nierozgałęźnych - No invalid indices - No invalid indices + No invalid indices + Nie ma nieprawidłowych wskaźników - No degenerations - Brak zniekształceń + No degenerations + Brak zniekształceń - %1 degenerated faces - %1 degenerated faces + %1 degenerated faces + %1 zdegenerowanych powierzchni - No duplicated faces - No duplicated faces + No duplicated faces + Nie zduplikowane ściany - %1 duplicated faces - %1 duplicated faces + %1 duplicated faces + %1 Zduplikowane ściany - No duplicated points - Brak zduplikowanych punktów + No duplicated points + Brak zduplikowanych punktów - Duplicated points - Zduplikowane punkty + Duplicated points + Zduplikowane punkty - Orientation - Orientacja + Orientation + Orientacja - Indices - Indices + Indices + Wskaźniki - Degenerations - Zniekształcenia + Degenerations + Zniekształcenia - Duplicated faces - Zduplikowane fasetki + Duplicated faces + Zduplikowane fasetki - No self-intersections - Brak samoprzecięć + No self-intersections + Brak samoprzecięć - Self-intersections - Samoprzecięcia + Self-intersections + Samoprzecięcia - Mesh repair - Napraw siatkę + Mesh repair + Napraw siatkę - Flipped normals found - Znaleziono odwrócone 'normalne' + Flipped normals found + Znaleziono odwrócone 'normalne' - Check failed due to folds on the surface. + Check failed due to folds on the surface. Please run the command to repair folds first - Błąd sprawdzania z powodu zagięć na powierzchni. Wykonaj najpierw naprawę zagięć. + Błąd sprawdzania z powodu zagięć na powierzchni. Wykonaj najpierw naprawę zagięć. - No folds on surface - Brak zagięć na płaszczyźnie + No folds on surface + Brak zagięć na płaszczyźnie - %1 folds on surface - %1 folds on surface + %1 folds on surface + %1 zagięć na powierzchni - Folds - Zagięcia + Folds + Zagięcia - - + + MeshGui::DlgRegularSolid - Regular Solid - Bryła podstawowa + Regular Solid + Bryła podstawowa - &Create - &Utwórz + &Create + &Utwórz - Alt+C - Alt+C + Alt+C + Alt+C - Cl&ose - ZAMKNIJ + Cl&ose + ZAMKNIJ - Alt+O - Alt + O + Alt+O + Alt + O - Solid: - Lity + Solid: + Lity - Cube - Kostka + Cube + Kostka - Cylinder - Cylinder + Cylinder + Cylinder - Cone - Stożek + Cone + Stożek - Sphere - Kula + Sphere + Kula - Ellipsoid - Elipsoida + Ellipsoid + Elipsoida - Torus - torus + Torus + torus - Height: - Wysokość: + Height: + Wysokość: - Length: - Długość: + Length: + Długość: - Width: - Szerokość: + Width: + Szerokość: - Radius: - Promień: + Radius: + Promień: - Closed - Zamknięty + Closed + Zamknięty - Sampling: - Próbkowanie: + Sampling: + Próbkowanie: - Edge length: - Długość krawędzi: + Edge length: + Długość krawędzi: - Radius 1: - Promień 1: + Radius 1: + Promień 1: - Radius 2: - Promień 2: + Radius 2: + Promień 2: - - + + MeshGui::DlgRegularSolidImp - Create %1 - Utwórz %1 + Create %1 + Utwórz %1 - No active document - Brak aktywnego dokumentu + No active document + Brak aktywnego dokumentu - - + + MeshGui::DlgSettingsMeshView - Mesh view - Widok siatki + Mesh view + Widok siatki - Two-side rendering - Rendering dwustronny + Two-side rendering + Rendering dwustronny - Backface color - Backface color + Backface color + Kolor tła - Smoothing - Wygładzanie + Smoothing + Wygładzanie - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">To najmniejszy kąt pomiędzy powierzchniami dla cieniowania płaskiego.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Jeżeli kąt pomiędzy dwoma sąsiadującymi powierzchniami jest mniejszy niż kąt zmienny wówczas powierzchnie będą łagodniejsze przy wspólnej krawędzi.</p></body></html> - Crease angle - Crease angle + Crease angle + Kąt zmienny - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Cieniowanie płaskie/Cieniowanie Phong</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definiuje wygląd powierzchni.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Przy cieniowaniu płaskim normalizowana powierzchnia nie jest definiowana przez wierzchołek co prowadzi do nierzeczywistego wyglądu krzywej. Cieniowanie Phong prowadzi do łagodniejszego wyglądu. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Jeżeli ta opcja jest zaznaczona użyte zostanie cieniowanie Phong w przywinym razie zostanie użyte cieniowanie płaskie.</p></body></html> - Define normal per vertex - Zdefiniuj 'normalną' wierzchołka - - - ° - ° + Define normal per vertex + Zdefiniuj 'normalną' wierzchołka - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + ° + ° - Default appearance for new meshes - Domyślny wygląd nowych siatek + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - Default line color - Domyślny kolor linii + Default appearance for new meshes + Domyślny wygląd nowych siatek - Mesh transparency - Przezroczystość siatki + Default line color + Domyślny kolor linii - Default mesh color - Domyślny kolor siatki + Mesh transparency + Przezroczystość siatki - Show bounding-box for highlighted or selected meshes - Pokaż kontener dla podświetlenia lub wyboru + Default mesh color + Domyślny kolor siatki - Line transparency - Przejrzystości linii + Show bounding-box for highlighted or selected meshes + Pokaż kontener dla podświetlenia lub wyboru - - + + Line transparency + Przejrzystości linii + + + MeshGui::DlgSmoothing - Smoothing - Wygładzanie + Smoothing + Wygładzanie - Method - Metoda + Method + Metoda - Taubin - Taubin + Taubin + Taubin - Laplace - Laplace + Laplace + Laplace - Parameter - parametr + Parameter + parametr - Iterations: - iteracje: + Iterations: + iteracje: - Lambda: - Lambda: + Lambda: + Lambda: - Mu: - Mu: + Mu: + Mu: - - + + MeshGui::MeshFaceAddition - Add triangle - dodaj trójkąt + Add triangle + dodaj trójkąt - Flip normal - odwróć + Flip normal + odwróć - Clear - Wyczyść + Clear + Wyczyść - Finish - Zakończ + Finish + Zakończ - - + + MeshGui::RemoveComponents - Remove components - usuń elementy + Remove components + usuń elementy - Select - Wybierz + Select + Wybierz - Select whole component - zaznacz wszystkie trójkąty + Select whole component + zaznacz wszystkie trójkąty - Pick triangle - wybierz trójkąt + Pick triangle + wybierz trójkąt - < faces than - <powierzchnie niż + < faces than + <powierzchnie niż - Region - region + Region + region - Components - komponenty + Components + komponenty - All - Wszystkie + All + Wszystkie - Deselect - odznacz + Deselect + odznacz - Deselect whole component - odznacz wszystkie komponenty + Deselect whole component + odznacz wszystkie komponenty - > faces than - powierzchnie niż + > faces than + powierzchnie niż - Region options - opcje regionalne + Region options + opcje regionalne - Respect only triangles with normals facing screen - akceptuj tylko trójkąty zwrócone stroną zewnętrzną + Respect only triangles with normals facing screen + akceptuj tylko trójkąty zwrócone stroną zewnętrzną - Respect only visible triangles - akceptuj tylko widoczne trójkąty + Respect only visible triangles + akceptuj tylko widoczne trójkąty - - + + MeshGui::Segmentation - Mesh segmentation - + Mesh segmentation + Segmentacja siatki - Smooth mesh - + Smooth mesh + Wygładzenie siatki - Plane - + Plane + Plan - Tolerance - + Tolerance + Tolerancja - Minumum number of faces - + Minumum number of faces + Minimalna liczba powierzchni - Cylinder - Cylinder + Cylinder + Cylinder - Radius - + Radius + Promień - Tolerance (Flat) - + Tolerance (Flat) + Płaszczyzna tolerancji - Tolerance (Curved) - + Tolerance (Curved) + Krzywa tolerancji - Minimum number of faces - + Minimum number of faces + Minimalna liczba powierzchni - Sphere - Kula + Sphere + Kula - - + + MeshGui::TaskRemoveComponents - Delete - Usuń + Delete + Usuń - Invert - przeciwny + Invert + przeciwny - - + + QDockWidget - Evaluate & Repair Mesh - Rozwiń & napraw siatkę + Evaluate & Repair Mesh + Rozwiń & napraw siatkę - - + + QObject - Import mesh - Import siatki + Import mesh + Import siatki - Export mesh - Eksport siatki + Export mesh + Eksport siatki - Solid Mesh - Siatka solid + Solid Mesh + Siatka solid - Boundings - Boundings + Boundings + Bryły brzegowe - Fill holes - Zamknij otwory + Fill holes + Zamknij otwory - Fill holes with maximum number of edges: - Zamknij otwory max. ilością krawędzi: + Fill holes with maximum number of edges: + Zamknij otwory max. ilością krawędzi: - Binary STL (*.stl) - Binarny STL (*.stl) + Binary STL (*.stl) + Binarny STL (*.stl) - ASCII STL (*.ast) - ASCII STL (*. ast) + ASCII STL (*.ast) + ASCII STL (*. ast) - Binary Mesh (*.bms) - Siatka binarna (*.bms) + Binary Mesh (*.bms) + Siatka binarna (*.bms) - Alias Mesh (*.obj) - Siatka Alias (*.obj) + Alias Mesh (*.obj) + Siatka Alias (*.obj) - Inventor V2.1 ascii (*.iv) - Inventor V2.1 ascii (*. iv) + Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*. iv) - All Files (*.*) - Wszystkie pliki (*.*) + All Files (*.*) + Wszystkie pliki (*.*) - ASCII STL (*.stl) - ASCII STL (*. stl) + ASCII STL (*.stl) + ASCII STL (*. stl) - VRML V2.0 (*.wrl *.vrml) - VRML V2.0 (*. wrl *. vrml) + VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*. wrl *. vrml) - Compressed VRML 2.0 (*.wrz) - Skompresowany VRML 2.0 (*.wrz) + Compressed VRML 2.0 (*.wrz) + Skompresowany VRML 2.0 (*.wrz) - Nastran (*.nas *.bdf) - Nastran (*. nas *. bdf) + Nastran (*.nas *.bdf) + Nastran (*. nas *. bdf) - Python module def (*.py) - Moduł Python def (*.py) + Python module def (*.py) + Moduł Python def (*.py) - Meshing Tolerance - Tolerancja siatki + Meshing Tolerance + Tolerancja siatki - Enter tolerance for meshing geometry: - Podaj tolerancję dla geometrii siatki: + Enter tolerance for meshing geometry: + Podaj tolerancję dla geometrii siatki: - The mesh '%1' is a solid. - The mesh '%1' is a solid. + The mesh '%1' is a solid. + Sieć '%1' jest ciągła. - The mesh '%1' is not a solid. - The mesh '%1' is not a solid. + The mesh '%1' is not a solid. + Sieć '%1' nie jest ciągła. - Min=<%1,%2,%3> + Min=<%1,%2,%3> Max=<%4,%5,%6> - Min=<%1,%2,%3> - -Max=<%4,%5,%6> + Min = <%1,%2,%3> Max = <%4,%5,%6> - [Points: %1, Edges: %2 Faces: %3] - [Points: %1, Edges: %2 Faces: %3] + [Points: %1, Edges: %2 Faces: %3] + [Punkty: %1, Krawędzie: %2 Powierzchnie: %3] - Leave info mode - Opuść tryb informacji + Leave info mode + Opuść tryb informacji - Index: %1 - Indeks :%1 + Index: %1 + Indeks :%1 - Leave hole-filling mode - Opuść tryb zamykania otworów + Leave hole-filling mode + Opuść tryb zamykania otworów - Leave removal mode - Opuść tryb kasowania + Leave removal mode + Opuść tryb kasowania - All Mesh Files (*.stl *.ast *.bms *.obj *.ply) - Wszystkie pliki siatki (*.stl *.ast *.bms *.obj *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + Wszystkie pliki siatki (*.stl *.ast *.bms *.obj *.ply) - Stanford Polygon (*.ply) - Polygon Stanford (*. ply) + Stanford Polygon (*.ply) + Polygon Stanford (*. ply) - Object File Format (*.off) - Format pliku Object (off *.) + Object File Format (*.off) + Format pliku Object (off *.) - Standford Polygon (*.ply) - Polygon Stanford (*. ply) + Standford Polygon (*.ply) + Polygon Stanford (*. ply) - Delete selected faces - Usuń zaznaczone fasetki + Delete selected faces + Usuń zaznaczone fasetki - Clear selected faces - Wyczyść zaznaczone fasetki + Clear selected faces + Wyczyść zaznaczone fasetki - Annotation - Adnotacja + Annotation + Adnotacja - All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + Wszystkie pliki siatek (*.stl *.ast *.bms *.obj *.off *.ply) - - + + Workbench - Analyze - Analizuj + Analyze + Analizuj - Boolean - Boolean + Boolean + Boolean - &Meshes - siatki + &Meshes + siatki - Mesh tools - narzędzia siatki + Mesh tools + narzędzia siatki - + diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_pt.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_pt-BR.qm similarity index 86% rename from src/Mod/Mesh/Gui/Resources/translations/Mesh_pt.qm rename to src/Mod/Mesh/Gui/Resources/translations/Mesh_pt-BR.qm index c72181d7f..c8e565706 100644 Binary files a/src/Mod/Mesh/Gui/Resources/translations/Mesh_pt.qm and b/src/Mod/Mesh/Gui/Resources/translations/Mesh_pt-BR.qm differ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_pt-BR.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_pt-BR.ts new file mode 100644 index 000000000..0f37cf7fb --- /dev/null +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_pt-BR.ts @@ -0,0 +1,1203 @@ + + + + + CmdMeshAddFacet + + Mesh + Malha + + + Add triangle + Adicionar triângulo + + + Add triangle manually to a mesh + Adicionar triângulo manualmente a uma malha + + + + CmdMeshBoundingBox + + Mesh + Malha + + + Boundings info... + Info caixa de volume... + + + Shows the boundings of the selected mesh + Mostra a caixa de volume da malha selecionada + + + + CmdMeshBuildRegularSolid + + Mesh + Malha + + + Regular solid... + Sólido regular ... + + + Builds a regular solid + Cria um sólido regular + + + + CmdMeshDemolding + + Interactive demolding direction + Direção de desmoldagem interativa + + + Mesh + Malha + + + + CmdMeshDifference + + Mesh + Malha + + + Difference + Diferença + + + + CmdMeshEvaluateFacet + + Mesh + Malha + + + Face info + Info face + + + Information about face + Informações sobre a face + + + + CmdMeshEvaluateSolid + + Mesh + Malha + + + Check solid mesh + Verificar malha sólida + + + Checks whether the mesh is a solid + Verifica se a malha é um sólido + + + + CmdMeshEvaluation + + Mesh + Malha + + + Opens a dialog to analyze and repair a mesh + Abre uma janela para analisar e consertar uma malha + + + Evaluate && Repair mesh... + Avaliar && consertar malha... + + + + CmdMeshExMakeMesh + + Mesh + Malha + + + Make a Box + Fazer uma caixa + + + + CmdMeshExMakeTool + + Mesh + Malha + + + Make a Tool + Fazer uma ferramenta + + + + CmdMeshExMakeUnion + + Mesh + Malha + + + Make Union + Fazer União + + + + CmdMeshExport + + Mesh + Malha + + + Export mesh... + Exportar malha... + + + Exports a mesh to file + Exporta uma malha para um arquivo + + + + CmdMeshFillInteractiveHole + + Mesh + Malha + + + Close hole + Fechar furo + + + Close holes interactively + Fechar furos interativamente + + + + CmdMeshFillupHoles + + Mesh + Malha + + + Fill holes... + Preencher furos... + + + Fill holes of the mesh + Preencher furos na malha + + + + CmdMeshFlipNormals + + Mesh + Malha + + + Flip normals + Inverter normais + + + Flips the normals of the mesh + Inverte as normais da malha + + + + CmdMeshFromGeometry + + Mesh + Malha + + + Create mesh from geometry... + Criar malha a partir de geometria... + + + Create mesh from the selected geometry + Criar uma malha a partir da geometria selecionada + + + + CmdMeshHarmonizeNormals + + Mesh + Malha + + + Harmonize normals + Harmonizar as normais + + + Harmonizes the normals of the mesh + Harmoniza as normais da malha + + + + CmdMeshImport + + Mesh + Malha + + + Import mesh... + Importar malha... + + + Imports a mesh from file + Importa uma malha a partir de um arquivo + + + + CmdMeshIntersection + + Mesh + Malha + + + Intersection + Intersecção + + + + CmdMeshPolyCut + + Mesh + Malha + + + Cut mesh + Cortar malha + + + Cuts a mesh with a picked polygon + Corta uma malha com um polígono escolhido + + + + CmdMeshPolySegm + + Mesh + Malha + + + Make segment + Fazer um segmento + + + Creates a mesh segment + Criar um segmento de malha + + + + CmdMeshPolySelect + + Mesh + Malha + + + Select mesh + Selecione uma malha + + + Select an area of the mesh + Selecione uma área da malha + + + + CmdMeshPolySplit + + Mesh + Malha + + + Split mesh + Dividir uma malha + + + Splits a mesh into two meshes + Dividir uma malha em duas + + + + CmdMeshPolyTrim + + Mesh + Malha + + + Trim mesh + Cortar malha + + + Trims a mesh with a picked polygon + Recorta uma malha com um polígono + + + + CmdMeshRemoveCompByHand + + Mesh + Malha + + + Remove components by hand... + Remover componentes manualmente... + + + Mark a component to remove it from the mesh + Marcar um componente para ser removido da malha + + + + CmdMeshRemoveComponents + + Mesh + Malha + + + Remove components... + Remover componentes... + + + Remove topologic independent components from the mesh + Remover componentes topológicos independentes da malha + + + + CmdMeshSegmentation + + Mesh + Malha + + + Create mesh segments... + Cria segmentos de uma malha... + + + Create mesh segments + Criar segmentos de malha + + + + CmdMeshSmoothing + + Mesh + Malha + + + Smooth... + Suavizar... + + + Smooth the selected meshes + Suavizar as malhas selecionadas + + + + CmdMeshToolMesh + + Mesh + Malha + + + Segment by tool mesh + Segmentar por malha ferramenta + + + Creates a segment from a given tool mesh + Cria um segmento usando uma determinada malha como ferramenta + + + + CmdMeshTransform + + Mesh + Malha + + + Transform mesh + Transformar malha + + + Rotate or move a mesh + Girar ou mover uma malha + + + + CmdMeshUnion + + Mesh + Malha + + + Union + União + + + + CmdMeshVertexCurvature + + Mesh + Malha + + + Calculates the curvature of the vertices of a mesh + Calcula a curvatura dos vértices de uma malha + + + Curvature plot + Traçado de curvatura + + + + CmdMeshVertexCurvatureInfo + + Mesh + Malha + + + Curvature info + Info curvatura + + + Information about curvature + Informações sobre a curvatura + + + + MeshGui::DlgEvaluateMesh + + &Help + A&juda + + + F1 + F1 + + + &Close + &Fechar + + + Alt+C + Alt+F + + + Mesh information + Informação da malha + + + No information + Sem Informação + + + Number of points: + Número de pontos: + + + Number of edges: + Número de arestas: + + + Refresh + Atualizar + + + Analyze + Analisar + + + Repair + Consertar + + + Orientation + Orientação + + + Degenerated faces + Faces degeneradas + + + Face indices + Índices de faces + + + Number of faces: + Número de faces: + + + Duplicated faces + Faces duplicadas + + + Duplicated points + Pontos duplicados + + + Non-manifolds + Não-manifolds + + + Self-intersections + Auto-intersecções + + + All above tests together + Todos os testes acima juntos + + + Repetitive repair + Conserto repetitiva + + + Evaluate & Repair Mesh + Avaliar & consertar malha + + + Folds on surface + Dobras na superfície + + + + MeshGui::DlgEvaluateMeshImp + + No information + Sem Informação + + + Invalid neighbour indices + Índices de vizinhos inválidos + + + Invalid face indices + Índices de face inválidos + + + Invalid point indices + Índices de ponto inválidos + + + Multiple point indices + Vários índices de pontos + + + Non-manifolds + Não-manifolds + + + Cannot remove non-manifolds + Não é possível remover não-manifolds + + + No selection + Nenhuma seleção + + + No flipped normals + Nenhuma normal invertida + + + %1 flipped normals + %1 normais invertidas + + + No non-manifolds + Nenhum não-manifold + + + %1 non-manifolds + %1 não-manifolds + + + No invalid indices + Nenhum índice inválido + + + No degenerations + Nenhuma degeneração + + + %1 degenerated faces + %1 faces degeneradas + + + No duplicated faces + Nenhuma face duplicada + + + %1 duplicated faces + %1 faces duplicadas + + + No duplicated points + Nenhum ponto duplicado + + + Duplicated points + Pontos duplicados + + + Orientation + Orientação + + + Indices + Índices + + + Degenerations + Degenerações + + + Duplicated faces + Faces duplicadas + + + No self-intersections + Nenhuma auto-intersecção + + + Self-intersections + Auto-intersecções + + + Mesh repair + Conserto de malha + + + Flipped normals found + Foram encontradas normais invertidas + + + Check failed due to folds on the surface. +Please run the command to repair folds first + A verificação falhou devido a dobras na superfície. Por favor, execute primeiro o comando "consertar dobras" + + + No folds on surface + Nenhuma dobra na superfície + + + %1 folds on surface + %1 dobras na superfície + + + Folds + Dobras + + + + MeshGui::DlgRegularSolid + + Regular Solid + Sólido regular + + + &Create + &Criar + + + Alt+C + Alt+F + + + Cl&ose + &Fechar + + + Alt+O + Alt+F + + + Solid: + Sólido: + + + Cube + Cubo + + + Cylinder + Cilindro + + + Cone + Cone + + + Sphere + Esfera + + + Ellipsoid + Elipsóide + + + Torus + Toro + + + Height: + Altura: + + + Length: + Comprimento: + + + Width: + Largura: + + + Radius: + Raio: + + + Closed + Fechado + + + Sampling: + Amostragem: + + + Edge length: + Comprimento da aresta: + + + Radius 1: + Raio 1: + + + Radius 2: + Raio 2: + + + + MeshGui::DlgRegularSolidImp + + Create %1 + Criar %1 + + + No active document + Nenhum documento ativo + + + + MeshGui::DlgSettingsMeshView + + Mesh view + Vista de malhas + + + Two-side rendering + Renderização de dois lados + + + Backface color + Core de faces traseiras + + + Smoothing + Suavização + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head> <body style="white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style="margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> Este é o menor ângulo entre duas faces onde será usado o sombreamento plano.</p><p style="margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> se o ângulo entre as normais de duas faces vizinhas é menor do que o ângulo de vincos, as faces serão suavizadas ao redor de sua borda comum.</p></body></html> + + + Crease angle + Ângulo dos vincos + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head> <body style="white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style="font-weight:600;"> flat sombreamento de sombreamento/Phong</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> define a aparência de superfícies.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> com sombreamento plano as normais da superfície não são definidas por vértice, o que leva a uma aparência irreal para superfícies curvas. Use sombreamento Phong para uma aparência mais suave.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> se essa opção for definida, o sombreamento Phong será usado, se estiver desactivado o sombreamento plano será usado.</p></body></html> + + + Define normal per vertex + Definir normal por vértice + + + ° + ° + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-weight:600;">Sugestão</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> Definir as normais por vértice é também chamado <span style=" font-style:italic;">sombreamento Phong</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"> <span style=" font-style:normal;">enquanto define as normais por face é chamado de</span> sombreamento <span style=" font-style:normal;">plano.</span> </p></body></html> + + + Default appearance for new meshes + Aparência padrão para novas malhas + + + Default line color + Cor de linha padrão + + + Mesh transparency + Transparência de malha + + + Default mesh color + Cor padrão de malha + + + Show bounding-box for highlighted or selected meshes + Mostrar caixa de volume para malhas destacadas ou selecionadas + + + Line transparency + Transparência das linhas + + + + MeshGui::DlgSmoothing + + Smoothing + Suavização + + + Method + Método + + + Taubin + Taubin + + + Laplace + Laplace + + + Parameter + Parâmetro + + + Iterations: + Iterações: + + + Lambda: + Lambda: + + + Mu: + Mu: + + + + MeshGui::MeshFaceAddition + + Add triangle + Adicionar triângulo + + + Flip normal + Inverter normais + + + Clear + Limpar + + + Finish + Concluir + + + + MeshGui::RemoveComponents + + Remove components + Remover componentes + + + Select + Selecione + + + Select whole component + Selecione o componente inteiro + + + Pick triangle + Escolha um triângulo + + + < faces than + < faces do que + + + Region + Região + + + Components + Componentes + + + All + Todos + + + Deselect + Deselecionar + + + Deselect whole component + Desmarcar componente inteiro + + + > faces than + > faces do que + + + Region options + Opções de região + + + Respect only triangles with normals facing screen + Respeitar somente com triângulos com normais direcionadas para a tela + + + Respect only visible triangles + Respeitar apenas triângulos visíveis + + + + MeshGui::Segmentation + + Mesh segmentation + Segmentação de malha + + + Smooth mesh + Alisar malha + + + Plane + Plano + + + Tolerance + Tolerância + + + Minumum number of faces + Número mínimo de faces + + + Cylinder + Cilindro + + + Radius + Raio + + + Tolerance (Flat) + Tolerância (Plano) + + + Tolerance (Curved) + Tolerância (curvado) + + + Minimum number of faces + Número mínimo de faces + + + Sphere + Esfera + + + + MeshGui::TaskRemoveComponents + + Delete + Excluir + + + Invert + Inverter + + + + QDockWidget + + Evaluate & Repair Mesh + Avaliar & consertar malha + + + + QObject + + Import mesh + Importar malha + + + Export mesh + Exportar malha + + + Solid Mesh + Malha sólida + + + Boundings + Caixa de volume + + + Fill holes + Preencher furos + + + Fill holes with maximum number of edges: + Preenche buracos com um número máximo de arestas: + + + Binary STL (*.stl) + STL binário (*.stl) + + + ASCII STL (*.ast) + STL ASCII (*.ast) + + + Binary Mesh (*.bms) + Malha binária (*.bms) + + + Alias Mesh (*.obj) + Malha Alias (*.obj) + + + Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*.iv) + + + All Files (*.*) + Todos os arquivos (*.*) + + + ASCII STL (*.stl) + STL ASCII (*.stl) + + + VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) + + + Compressed VRML 2.0 (*.wrz) + VRML 2.0 comprimido (*.wrz) + + + Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) + + + Python module def (*.py) + Modulo do python (*.py) + + + Meshing Tolerance + Tolerância de malhagem + + + Enter tolerance for meshing geometry: + Digite tolerância para a malhagem de geometria: + + + The mesh '%1' is a solid. + A malha '%1' é um sólido. + + + The mesh '%1' is not a solid. + A malha '%1' não é um sólido. + + + Min=<%1,%2,%3> + +Max=<%4,%5,%6> + Min=<%1,%2,%3> + +Max=<%4,%5,%6> + + + [Points: %1, Edges: %2 Faces: %3] + [Pontos: %1, Arestas: %2 Faces: %3] + + + Leave info mode + Sair do modo de info + + + Index: %1 + Índice: %1 + + + Leave hole-filling mode + Sair do modo de preenchimento de furos + + + Leave removal mode + Sair do modo de remoção + + + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + Todos os arquivos de malha (*.stl *.ast *.bms *.obj *.ply) + + + Stanford Polygon (*.ply) + Stanford Polygon (*.ply) + + + Object File Format (*.off) + Object File Format (*.off) + + + Standford Polygon (*.ply) + Standford Polygon (*.ply) + + + Delete selected faces + Excluir as faces selecionadas + + + Clear selected faces + Limpar as faces selecionadas + + + Annotation + Anotação + + + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + Todos os arquivos de malha (*.stl *.ast *.bms *.obj *.off *.ply) + + + + Workbench + + Analyze + Analisar + + + Boolean + Booleanas + + + &Meshes + &Malhas + + + Mesh tools + Ferramentas de malha + + + diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_pt.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_pt.ts deleted file mode 100644 index 5e18c9209..000000000 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_pt.ts +++ /dev/null @@ -1,1203 +0,0 @@ - - - - - CmdMeshAddFacet - - Mesh - Malha - - - Add triangle - Adicionar triângulo - - - Add triangle manually to a mesh - Adicionar triângulo manualmente a uma malha - - - - CmdMeshBoundingBox - - Mesh - Malha - - - Boundings info... - Info caixa de volume... - - - Shows the boundings of the selected mesh - Mostra a caixa de volume da malha selecionada - - - - CmdMeshBuildRegularSolid - - Mesh - Malha - - - Regular solid... - Sólido regular ... - - - Builds a regular solid - Cria um sólido regular - - - - CmdMeshDemolding - - Interactive demolding direction - Direção de desmoldagem interativa - - - Mesh - Malha - - - - CmdMeshDifference - - Mesh - Malha - - - Difference - Diferença - - - - CmdMeshEvaluateFacet - - Mesh - Malha - - - Face info - Info face - - - Information about face - Informações sobre a face - - - - CmdMeshEvaluateSolid - - Mesh - Malha - - - Check solid mesh - Verificar malha sólida - - - Checks whether the mesh is a solid - Verifica se a malha é um sólido - - - - CmdMeshEvaluation - - Mesh - Malha - - - Opens a dialog to analyze and repair a mesh - Abre uma janela para analisar e consertar uma malha - - - Evaluate && Repair mesh... - Avaliar && consertar malha... - - - - CmdMeshExMakeMesh - - Mesh - Malha - - - Make a Box - Fazer uma caixa - - - - CmdMeshExMakeTool - - Mesh - Malha - - - Make a Tool - Fazer uma ferramenta - - - - CmdMeshExMakeUnion - - Mesh - Malha - - - Make Union - Fazer União - - - - CmdMeshExport - - Mesh - Malha - - - Export mesh... - Exportar malha... - - - Exports a mesh to file - Exporta uma malha para um arquivo - - - - CmdMeshFillInteractiveHole - - Mesh - Malha - - - Close hole - Fechar furo - - - Close holes interactively - Fechar furos interativamente - - - - CmdMeshFillupHoles - - Mesh - Malha - - - Fill holes... - Preencher furos... - - - Fill holes of the mesh - Preencher furos na malha - - - - CmdMeshFlipNormals - - Mesh - Malha - - - Flip normals - Inverter normais - - - Flips the normals of the mesh - Inverte as normais da malha - - - - CmdMeshFromGeometry - - Mesh - Malha - - - Create mesh from geometry... - Criar malha a partir de geometria... - - - Create mesh from the selected geometry - Criar uma malha a partir da geometria selecionada - - - - CmdMeshHarmonizeNormals - - Mesh - Malha - - - Harmonize normals - Harmonizar as normais - - - Harmonizes the normals of the mesh - Harmoniza as normais da malha - - - - CmdMeshImport - - Mesh - Malha - - - Import mesh... - Importar malha... - - - Imports a mesh from file - Importa uma malha a partir de um arquivo - - - - CmdMeshIntersection - - Mesh - Malha - - - Intersection - Intersecção - - - - CmdMeshPolyCut - - Mesh - Malha - - - Cut mesh - Cortar malha - - - Cuts a mesh with a picked polygon - Corta uma malha com um polígono escolhido - - - - CmdMeshPolySegm - - Mesh - Malha - - - Make segment - Fazer um segmento - - - Creates a mesh segment - Criar um segmento de malha - - - - CmdMeshPolySelect - - Mesh - Malha - - - Select mesh - Selecione uma malha - - - Select an area of the mesh - Selecione uma área da malha - - - - CmdMeshPolySplit - - Mesh - Malha - - - Split mesh - Dividir uma malha - - - Splits a mesh into two meshes - Dividir uma malha em duas - - - - CmdMeshPolyTrim - - Mesh - Malha - - - Trim mesh - - - - Trims a mesh with a picked polygon - - - - - CmdMeshRemoveCompByHand - - Mesh - Malha - - - Remove components by hand... - Remover componentes manualmente... - - - Mark a component to remove it from the mesh - Marcar um componente para ser removido da malha - - - - CmdMeshRemoveComponents - - Mesh - Malha - - - Remove components... - Remover componentes... - - - Remove topologic independent components from the mesh - Remover componentes topológicos independentes da malha - - - - CmdMeshSegmentation - - Mesh - Malha - - - Create mesh segments... - - - - Create mesh segments - - - - - CmdMeshSmoothing - - Mesh - Malha - - - Smooth... - Suavizar... - - - Smooth the selected meshes - Suavizar as malhas selecionadas - - - - CmdMeshToolMesh - - Mesh - Malha - - - Segment by tool mesh - Segmentar por malha ferramenta - - - Creates a segment from a given tool mesh - Cria um segmento usando uma determinada malha como ferramenta - - - - CmdMeshTransform - - Mesh - Malha - - - Transform mesh - Transformar malha - - - Rotate or move a mesh - Girar ou mover uma malha - - - - CmdMeshUnion - - Mesh - Malha - - - Union - União - - - - CmdMeshVertexCurvature - - Mesh - Malha - - - Calculates the curvature of the vertices of a mesh - Calcula a curvatura dos vértices de uma malha - - - Curvature plot - Traçado de curvatura - - - - CmdMeshVertexCurvatureInfo - - Mesh - Malha - - - Curvature info - Info curvatura - - - Information about curvature - Informações sobre a curvatura - - - - MeshGui::DlgEvaluateMesh - - &Help - A&juda - - - F1 - F1 - - - &Close - &Fechar - - - Alt+C - Alt+F - - - Mesh information - Informação da malha - - - No information - Sem Informação - - - Number of points: - Número de pontos: - - - Number of edges: - Número de arestas: - - - Refresh - Atualizar - - - Analyze - Analisar - - - Repair - Consertar - - - Orientation - Orientação - - - Degenerated faces - Faces degeneradas - - - Face indices - Índices de faces - - - Number of faces: - Número de faces: - - - Duplicated faces - Faces duplicadas - - - Duplicated points - Pontos duplicados - - - Non-manifolds - Não-manifolds - - - Self-intersections - Auto-intersecções - - - All above tests together - Todos os testes acima juntos - - - Repetitive repair - Conserto repetitiva - - - Evaluate & Repair Mesh - Avaliar & consertar malha - - - Folds on surface - Dobras na superfície - - - - MeshGui::DlgEvaluateMeshImp - - No information - Sem Informação - - - Invalid neighbour indices - Índices de vizinhos inválidos - - - Invalid face indices - Índices de face inválidos - - - Invalid point indices - Índices de ponto inválidos - - - Multiple point indices - Vários índices de pontos - - - Non-manifolds - Não-manifolds - - - Cannot remove non-manifolds - Não é possível remover não-manifolds - - - No selection - Nenhuma seleção - - - No flipped normals - Nenhuma normal invertida - - - %1 flipped normals - %1 normais invertidas - - - No non-manifolds - Nenhum não-manifold - - - %1 non-manifolds - %1 não-manifolds - - - No invalid indices - Nenhum índice inválido - - - No degenerations - Nenhuma degeneração - - - %1 degenerated faces - %1 faces degeneradas - - - No duplicated faces - Nenhuma face duplicada - - - %1 duplicated faces - %1 faces duplicadas - - - No duplicated points - Nenhum ponto duplicado - - - Duplicated points - Pontos duplicados - - - Orientation - Orientação - - - Indices - Índices - - - Degenerations - Degenerações - - - Duplicated faces - Faces duplicadas - - - No self-intersections - Nenhuma auto-intersecção - - - Self-intersections - Auto-intersecções - - - Mesh repair - Conserto de malha - - - Flipped normals found - Foram encontradas normais invertidas - - - Check failed due to folds on the surface. -Please run the command to repair folds first - A verificação falhou devido a dobras na superfície. Por favor, execute primeiro o comando "consertar dobras" - - - No folds on surface - Nenhuma dobra na superfície - - - %1 folds on surface - %1 dobras na superfície - - - Folds - Dobras - - - - MeshGui::DlgRegularSolid - - Regular Solid - Sólido regular - - - &Create - &Criar - - - Alt+C - Alt+F - - - Cl&ose - &Fechar - - - Alt+O - Alt+F - - - Solid: - Sólido: - - - Cube - Cubo - - - Cylinder - Cilindro - - - Cone - Cone - - - Sphere - Esfera - - - Ellipsoid - Elipsóide - - - Torus - Toro - - - Height: - Altura: - - - Length: - Comprimento: - - - Width: - Largura: - - - Radius: - Raio: - - - Closed - Fechado - - - Sampling: - Amostragem: - - - Edge length: - Comprimento da aresta: - - - Radius 1: - Raio 1: - - - Radius 2: - Raio 2: - - - - MeshGui::DlgRegularSolidImp - - Create %1 - Criar %1 - - - No active document - Nenhum documento ativo - - - - MeshGui::DlgSettingsMeshView - - Mesh view - Vista de malhas - - - Two-side rendering - Renderização de dois lados - - - Backface color - Core de faces traseiras - - - Smoothing - Suavização - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head> <body style="white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style="margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> Este é o menor ângulo entre duas faces onde será usado o sombreamento plano.</p><p style="margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> se o ângulo entre as normais de duas faces vizinhas é menor do que o ângulo de vincos, as faces serão suavizadas ao redor de sua borda comum.</p></body></html> - - - Crease angle - Ângulo dos vincos - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head> <body style="white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style="font-weight:600;"> flat sombreamento de sombreamento/Phong</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> define a aparência de superfícies.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> com sombreamento plano as normais da superfície não são definidas por vértice, o que leva a uma aparência irreal para superfícies curvas. Use sombreamento Phong para uma aparência mais suave.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> se essa opção for definida, o sombreamento Phong será usado, se estiver desactivado o sombreamento plano será usado.</p></body></html> - - - Define normal per vertex - Definir normal por vértice - - - ° - ° - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-weight:600;">Sugestão</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> Definir as normais por vértice é também chamado <span style=" font-style:italic;">sombreamento Phong</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"> <span style=" font-style:normal;">enquanto define as normais por face é chamado de</span> sombreamento <span style=" font-style:normal;">plano.</span> </p></body></html> - - - Default appearance for new meshes - Aparência padrão para novas malhas - - - Default line color - Cor de linha padrão - - - Mesh transparency - Transparência de malha - - - Default mesh color - Cor padrão de malha - - - Show bounding-box for highlighted or selected meshes - Mostrar caixa de volume para malhas destacadas ou selecionadas - - - Line transparency - Transparência das linhas - - - - MeshGui::DlgSmoothing - - Smoothing - Suavização - - - Method - Método - - - Taubin - Taubin - - - Laplace - Laplace - - - Parameter - Parâmetro - - - Iterations: - Iterações: - - - Lambda: - Lambda: - - - Mu: - Mu: - - - - MeshGui::MeshFaceAddition - - Add triangle - Adicionar triângulo - - - Flip normal - Inverter normais - - - Clear - Limpar - - - Finish - Concluir - - - - MeshGui::RemoveComponents - - Remove components - Remover componentes - - - Select - Selecione - - - Select whole component - Selecione o componente inteiro - - - Pick triangle - Escolha um triângulo - - - < faces than - < faces do que - - - Region - Região - - - Components - Componentes - - - All - Todos - - - Deselect - Deselecionar - - - Deselect whole component - Desmarcar componente inteiro - - - > faces than - > faces do que - - - Region options - Opções de região - - - Respect only triangles with normals facing screen - Respeitar somente com triângulos com normais direcionadas para a tela - - - Respect only visible triangles - Respeitar apenas triângulos visíveis - - - - MeshGui::Segmentation - - Mesh segmentation - - - - Smooth mesh - - - - Plane - - - - Tolerance - - - - Minumum number of faces - - - - Cylinder - Cilindro - - - Radius - - - - Tolerance (Flat) - - - - Tolerance (Curved) - - - - Minimum number of faces - - - - Sphere - Esfera - - - - MeshGui::TaskRemoveComponents - - Delete - Excluir - - - Invert - Inverter - - - - QDockWidget - - Evaluate & Repair Mesh - Avaliar & consertar malha - - - - QObject - - Import mesh - Importar malha - - - Export mesh - Exportar malha - - - Solid Mesh - Malha sólida - - - Boundings - Caixa de volume - - - Fill holes - Preencher furos - - - Fill holes with maximum number of edges: - Preenche buracos com um número máximo de arestas: - - - Binary STL (*.stl) - STL binário (*.stl) - - - ASCII STL (*.ast) - STL ASCII (*.ast) - - - Binary Mesh (*.bms) - Malha binária (*.bms) - - - Alias Mesh (*.obj) - Malha Alias (*.obj) - - - Inventor V2.1 ascii (*.iv) - Inventor V2.1 ascii (*.iv) - - - All Files (*.*) - Todos os arquivos (*.*) - - - ASCII STL (*.stl) - STL ASCII (*.stl) - - - VRML V2.0 (*.wrl *.vrml) - VRML V2.0 (*.wrl *.vrml) - - - Compressed VRML 2.0 (*.wrz) - VRML 2.0 comprimido (*.wrz) - - - Nastran (*.nas *.bdf) - Nastran (*.nas *.bdf) - - - Python module def (*.py) - Modulo do python (*.py) - - - Meshing Tolerance - Tolerância de malhagem - - - Enter tolerance for meshing geometry: - Digite tolerância para a malhagem de geometria: - - - The mesh '%1' is a solid. - A malha '%1' é um sólido. - - - The mesh '%1' is not a solid. - A malha '%1' não é um sólido. - - - Min=<%1,%2,%3> - -Max=<%4,%5,%6> - Min=<%1,%2,%3> - -Max=<%4,%5,%6> - - - [Points: %1, Edges: %2 Faces: %3] - [Pontos: %1, Arestas: %2 Faces: %3] - - - Leave info mode - Sair do modo de info - - - Index: %1 - Índice: %1 - - - Leave hole-filling mode - Sair do modo de preenchimento de furos - - - Leave removal mode - Sair do modo de remoção - - - All Mesh Files (*.stl *.ast *.bms *.obj *.ply) - Todos os arquivos de malha (*.stl *.ast *.bms *.obj *.ply) - - - Stanford Polygon (*.ply) - Stanford Polygon (*.ply) - - - Object File Format (*.off) - Object File Format (*.off) - - - Standford Polygon (*.ply) - Standford Polygon (*.ply) - - - Delete selected faces - Excluir as faces selecionadas - - - Clear selected faces - Limpar as faces selecionadas - - - Annotation - Anotação - - - All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - - - - - Workbench - - Analyze - Analisar - - - Boolean - Booleanas - - - &Meshes - &Malhas - - - Mesh tools - Ferramentas de malha - - - diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_ro.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_ro.qm new file mode 100644 index 000000000..7b1aca323 Binary files /dev/null and b/src/Mod/Mesh/Gui/Resources/translations/Mesh_ro.qm differ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_ro.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_ro.ts new file mode 100644 index 000000000..6750e2fb2 --- /dev/null +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_ro.ts @@ -0,0 +1,1204 @@ + + + + + CmdMeshAddFacet + + Mesh + Mesh + + + Add triangle + Add triangle + + + Add triangle manually to a mesh + Add triangle manually to a mesh + + + + CmdMeshBoundingBox + + Mesh + Mesh + + + Boundings info... + Boundings info... + + + Shows the boundings of the selected mesh + Shows the boundings of the selected mesh + + + + CmdMeshBuildRegularSolid + + Mesh + Mesh + + + Regular solid... + Regular solid... + + + Builds a regular solid + Builds a regular solid + + + + CmdMeshDemolding + + Interactive demolding direction + Interactive demolding direction + + + Mesh + Mesh + + + + CmdMeshDifference + + Mesh + Mesh + + + Difference + Diferenţa + + + + CmdMeshEvaluateFacet + + Mesh + Mesh + + + Face info + Face info + + + Information about face + Information about face + + + + CmdMeshEvaluateSolid + + Mesh + Mesh + + + Check solid mesh + Check solid mesh + + + Checks whether the mesh is a solid + Checks whether the mesh is a solid + + + + CmdMeshEvaluation + + Mesh + Mesh + + + Opens a dialog to analyze and repair a mesh + Opens a dialog to analyze and repair a mesh + + + Evaluate && Repair mesh... + Evaluate && Repair mesh... + + + + CmdMeshExMakeMesh + + Mesh + Mesh + + + Make a Box + Make a Box + + + + CmdMeshExMakeTool + + Mesh + Mesh + + + Make a Tool + Make a Tool + + + + CmdMeshExMakeUnion + + Mesh + Mesh + + + Make Union + Make Union + + + + CmdMeshExport + + Mesh + Mesh + + + Export mesh... + Export mesh... + + + Exports a mesh to file + Exports a mesh to file + + + + CmdMeshFillInteractiveHole + + Mesh + Mesh + + + Close hole + Close hole + + + Close holes interactively + Close holes interactively + + + + CmdMeshFillupHoles + + Mesh + Mesh + + + Fill holes... + Fill holes... + + + Fill holes of the mesh + Fill holes of the mesh + + + + CmdMeshFlipNormals + + Mesh + Mesh + + + Flip normals + Flip normals + + + Flips the normals of the mesh + Flips the normals of the mesh + + + + CmdMeshFromGeometry + + Mesh + Mesh + + + Create mesh from geometry... + Create mesh from geometry... + + + Create mesh from the selected geometry + Create mesh from the selected geometry + + + + CmdMeshHarmonizeNormals + + Mesh + Mesh + + + Harmonize normals + Harmonize normals + + + Harmonizes the normals of the mesh + Harmonizes the normals of the mesh + + + + CmdMeshImport + + Mesh + Mesh + + + Import mesh... + Import mesh... + + + Imports a mesh from file + Imports a mesh from file + + + + CmdMeshIntersection + + Mesh + Mesh + + + Intersection + Intersecţie + + + + CmdMeshPolyCut + + Mesh + Mesh + + + Cut mesh + Cut mesh + + + Cuts a mesh with a picked polygon + Cuts a mesh with a picked polygon + + + + CmdMeshPolySegm + + Mesh + Mesh + + + Make segment + Make segment + + + Creates a mesh segment + Creates a mesh segment + + + + CmdMeshPolySelect + + Mesh + Mesh + + + Select mesh + Select mesh + + + Select an area of the mesh + Select an area of the mesh + + + + CmdMeshPolySplit + + Mesh + Mesh + + + Split mesh + Split mesh + + + Splits a mesh into two meshes + Splits a mesh into two meshes + + + + CmdMeshPolyTrim + + Mesh + Mesh + + + Trim mesh + Trim mesh + + + Trims a mesh with a picked polygon + Trims a mesh with a picked polygon + + + + CmdMeshRemoveCompByHand + + Mesh + Mesh + + + Remove components by hand... + Remove components by hand... + + + Mark a component to remove it from the mesh + Mark a component to remove it from the mesh + + + + CmdMeshRemoveComponents + + Mesh + Mesh + + + Remove components... + Remove components... + + + Remove topologic independent components from the mesh + Remove topologic independent components from the mesh + + + + CmdMeshSegmentation + + Mesh + Mesh + + + Create mesh segments... + Create mesh segments... + + + Create mesh segments + Create mesh segments + + + + CmdMeshSmoothing + + Mesh + Mesh + + + Smooth... + Smooth... + + + Smooth the selected meshes + Smooth the selected meshes + + + + CmdMeshToolMesh + + Mesh + Mesh + + + Segment by tool mesh + Segment by tool mesh + + + Creates a segment from a given tool mesh + Creates a segment from a given tool mesh + + + + CmdMeshTransform + + Mesh + Mesh + + + Transform mesh + Transform mesh + + + Rotate or move a mesh + Rotate or move a mesh + + + + CmdMeshUnion + + Mesh + Mesh + + + Union + Reuniune + + + + CmdMeshVertexCurvature + + Mesh + Mesh + + + Calculates the curvature of the vertices of a mesh + Calculates the curvature of the vertices of a mesh + + + Curvature plot + Curvature plot + + + + CmdMeshVertexCurvatureInfo + + Mesh + Mesh + + + Curvature info + Curvature info + + + Information about curvature + Information about curvature + + + + MeshGui::DlgEvaluateMesh + + &Help + &Ajutor + + + F1 + F1 + + + &Close + &Inchide + + + Alt+C + Alt + C + + + Mesh information + Mesh information + + + No information + No information + + + Number of points: + Number of points: + + + Number of edges: + Number of edges: + + + Refresh + Reîmprospătare + + + Analyze + Analizează + + + Repair + Repair + + + Orientation + Orientation + + + Degenerated faces + Degenerated faces + + + Face indices + Face indices + + + Number of faces: + Number of faces: + + + Duplicated faces + Duplicated faces + + + Duplicated points + Duplicated points + + + Non-manifolds + Non-manifolds + + + Self-intersections + Self-intersections + + + All above tests together + All above tests together + + + Repetitive repair + Repetitive repair + + + Evaluate & Repair Mesh + Evaluate & Repair Mesh + + + Folds on surface + Folds on surface + + + + MeshGui::DlgEvaluateMeshImp + + No information + No information + + + Invalid neighbour indices + Invalid neighbour indices + + + Invalid face indices + Invalid face indices + + + Invalid point indices + Invalid point indices + + + Multiple point indices + Multiple point indices + + + Non-manifolds + Non-manifolds + + + Cannot remove non-manifolds + Cannot remove non-manifolds + + + No selection + Nici o selecţie + + + No flipped normals + No flipped normals + + + %1 flipped normals + %1 flipped normals + + + No non-manifolds + No non-manifolds + + + %1 non-manifolds + %1 non-manifolds + + + No invalid indices + No invalid indices + + + No degenerations + No degenerations + + + %1 degenerated faces + %1 degenerated faces + + + No duplicated faces + No duplicated faces + + + %1 duplicated faces + %1 duplicated faces + + + No duplicated points + No duplicated points + + + Duplicated points + Duplicated points + + + Orientation + Orientation + + + Indices + Indices + + + Degenerations + Degenerations + + + Duplicated faces + Duplicated faces + + + No self-intersections + No self-intersections + + + Self-intersections + Self-intersections + + + Mesh repair + Mesh repair + + + Flipped normals found + Flipped normals found + + + Check failed due to folds on the surface. +Please run the command to repair folds first + Check failed due to folds on the surface. +Please run the command to repair folds first + + + No folds on surface + No folds on surface + + + %1 folds on surface + %1 folds on surface + + + Folds + Folds + + + + MeshGui::DlgRegularSolid + + Regular Solid + Regular Solid + + + &Create + &Create + + + Alt+C + Alt + C + + + Cl&ose + În&chide + + + Alt+O + Alt+O + + + Solid: + Solid: + + + Cube + Cube + + + Cylinder + Cylinder + + + Cone + Cone + + + Sphere + Sphere + + + Ellipsoid + Ellipsoid + + + Torus + Torus + + + Height: + Height: + + + Length: + Lungime: + + + Width: + Width: + + + Radius: + Radius: + + + Closed + Closed + + + Sampling: + Sampling: + + + Edge length: + Edge length: + + + Radius 1: + Radius 1: + + + Radius 2: + Radius 2: + + + + MeshGui::DlgRegularSolidImp + + Create %1 + Create %1 + + + No active document + No active document + + + + MeshGui::DlgSettingsMeshView + + Mesh view + Mesh view + + + Two-side rendering + Redare bilaterală + + + Backface color + Backface color + + + Smoothing + Smoothing + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + + + Crease angle + Crease angle + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + + + Define normal per vertex + Define normal per vertex + + + ° + ° + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + + + Default appearance for new meshes + Default appearance for new meshes + + + Default line color + Default line color + + + Mesh transparency + Mesh transparency + + + Default mesh color + Default mesh color + + + Show bounding-box for highlighted or selected meshes + Show bounding-box for highlighted or selected meshes + + + Line transparency + Line transparency + + + + MeshGui::DlgSmoothing + + Smoothing + Smoothing + + + Method + Method + + + Taubin + Taubin + + + Laplace + Laplace + + + Parameter + Parameter + + + Iterations: + Iterations: + + + Lambda: + Lambda: + + + Mu: + Mu: + + + + MeshGui::MeshFaceAddition + + Add triangle + Add triangle + + + Flip normal + Flip normal + + + Clear + Eliberează + + + Finish + Terminare + + + + MeshGui::RemoveComponents + + Remove components + Remove components + + + Select + Selectaţi + + + Select whole component + Select whole component + + + Pick triangle + Pick triangle + + + < faces than + < faces than + + + Region + Region + + + Components + Components + + + All + All + + + Deselect + Deselect + + + Deselect whole component + Deselect whole component + + + > faces than + > faces than + + + Region options + Region options + + + Respect only triangles with normals facing screen + Respect only triangles with normals facing screen + + + Respect only visible triangles + Respect only visible triangles + + + + MeshGui::Segmentation + + Mesh segmentation + Mesh segmentation + + + Smooth mesh + Smooth mesh + + + Plane + Plane + + + Tolerance + Toleranţă + + + Minumum number of faces + Minumum number of faces + + + Cylinder + Cylinder + + + Radius + Raza + + + Tolerance (Flat) + Tolerance (Flat) + + + Tolerance (Curved) + Tolerance (Curved) + + + Minimum number of faces + Minimum number of faces + + + Sphere + Sphere + + + + MeshGui::TaskRemoveComponents + + Delete + Ştergeţi + + + Invert + Invert + + + + QDockWidget + + Evaluate & Repair Mesh + Evaluate & Repair Mesh + + + + QObject + + Import mesh + Import mesh + + + Export mesh + Export mesh + + + Solid Mesh + Solid Mesh + + + Boundings + Boundings + + + Fill holes + Fill holes + + + Fill holes with maximum number of edges: + Fill holes with maximum number of edges: + + + Binary STL (*.stl) + Binary STL (*.stl) + + + ASCII STL (*.ast) + ASCII STL (*.ast) + + + Binary Mesh (*.bms) + Binary Mesh (*.bms) + + + Alias Mesh (*.obj) + Alias Mesh (*.obj) + + + Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*.iv) + + + All Files (*.*) + Toate fișierele (*.*) + + + ASCII STL (*.stl) + ASCII STL (*.stl) + + + VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) + + + Compressed VRML 2.0 (*.wrz) + Compressed VRML 2.0 (*.wrz) + + + Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) + + + Python module def (*.py) + Python module def (*.py) + + + Meshing Tolerance + Meshing Tolerance + + + Enter tolerance for meshing geometry: + Enter tolerance for meshing geometry: + + + The mesh '%1' is a solid. + The mesh '%1' is a solid. + + + The mesh '%1' is not a solid. + The mesh '%1' is not a solid. + + + Min=<%1,%2,%3> + +Max=<%4,%5,%6> + Min=<%1,%2,%3> + +Max=<%4,%5,%6> + + + [Points: %1, Edges: %2 Faces: %3] + [Points: %1, Edges: %2 Faces: %3] + + + Leave info mode + Leave info mode + + + Index: %1 + Index: %1 + + + Leave hole-filling mode + Leave hole-filling mode + + + Leave removal mode + Leave removal mode + + + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + + + Stanford Polygon (*.ply) + Stanford Polygon (*.ply) + + + Object File Format (*.off) + Object File Format (*.off) + + + Standford Polygon (*.ply) + Standford Polygon (*.ply) + + + Delete selected faces + Delete selected faces + + + Clear selected faces + Clear selected faces + + + Annotation + Annotation + + + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + + + + Workbench + + Analyze + Analizează + + + Boolean + Boolean + + + &Meshes + &Meshes + + + Mesh tools + Mesh tools + + + diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_ru.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_ru.qm index a80865e96..cea2bec11 100644 Binary files a/src/Mod/Mesh/Gui/Resources/translations/Mesh_ru.qm and b/src/Mod/Mesh/Gui/Resources/translations/Mesh_ru.qm differ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_ru.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_ru.ts index 58bc0ae17..910de44ec 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_ru.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_ru.ts @@ -1,1203 +1,1203 @@ - - + + CmdMeshAddFacet - Mesh - Сеть + Mesh + Сеть - Add triangle - Добавить треугольник + Add triangle + Добавить треугольник - Add triangle manually to a mesh - Добавить треугольник в сетку вручную + Add triangle manually to a mesh + Добавить треугольник в сетку вручную - - + + CmdMeshBoundingBox - Mesh - Сеть + Mesh + Сеть - Boundings info... - Информация о структуре... + Boundings info... + Информация о структуре... - Shows the boundings of the selected mesh - Показывает структуру выбранной сетки + Shows the boundings of the selected mesh + Показывает структуру выбранной сетки - - + + CmdMeshBuildRegularSolid - Mesh - Сеть + Mesh + Сеть - Regular solid... - Правлю твердое ... + Regular solid... + Правильное геометрическое тело... - Builds a regular solid - Построение правильного твердого тела + Builds a regular solid + Построение правильного твердого тела - - + + CmdMeshDemolding - Interactive demolding direction - Интерактивное извлечения направлении из формы + Interactive demolding direction + Интерактивное извлечения направлении из формы - Mesh - Сеть + Mesh + Сеть - - + + CmdMeshDifference - Mesh - Сеть + Mesh + Сеть - Difference - Разность + Difference + Разность - - + + CmdMeshEvaluateFacet - Mesh - Сеть + Mesh + Сеть - Face info - Информация о поверхности + Face info + Информация о поверхности - Information about face - Информация о поверхности + Information about face + Информация о поверхности - - + + CmdMeshEvaluateSolid - Mesh - Сеть + Mesh + Сеть - Check solid mesh - Проверить прочность сетки + Check solid mesh + Проверить прочность сетки - Checks whether the mesh is a solid - Проверяет, тверда ли сетка + Checks whether the mesh is a solid + Проверяет, тверда ли сетка - - + + CmdMeshEvaluation - Mesh - Сеть + Mesh + Сеть - Opens a dialog to analyze and repair a mesh - Открывает диалог для анализа и ремонта сети + Opens a dialog to analyze and repair a mesh + Открывает диалог для анализа и ремонта сети - Evaluate && Repair mesh... - Оценить и ремонтировать сетку... + Evaluate && Repair mesh... + Оценить и ремонтировать сетку... - - + + CmdMeshExMakeMesh - Mesh - Сеть + Mesh + Сеть - Make a Box - Создать параллелепипед + Make a Box + Создать параллелепипед - - + + CmdMeshExMakeTool - Mesh - Сеть + Mesh + Сеть - Make a Tool - Создать инструмент + Make a Tool + Создать инструмент - - + + CmdMeshExMakeUnion - Mesh - Сеть + Mesh + Сеть - Make Union - Создать объединение + Make Union + Создать объединение - - + + CmdMeshExport - Mesh - Сеть + Mesh + Сеть - Export mesh... - Экспорт сети... + Export mesh... + Экспорт сети... - Exports a mesh to file - Экспорт сети в файл + Exports a mesh to file + Экспорт сети в файл - - + + CmdMeshFillInteractiveHole - Mesh - Сеть + Mesh + Сеть - Close hole - Закрыть отверстие + Close hole + Закрыть отверстие - Close holes interactively - Закрыть отверстия интерактивно + Close holes interactively + Закрыть отверстия интерактивно - - + + CmdMeshFillupHoles - Mesh - Сеть + Mesh + Сеть - Fill holes... - Закрыть отверстия ... + Fill holes... + Закрыть отверстия ... - Fill holes of the mesh - Закрыть отверстия сетки + Fill holes of the mesh + Закрыть отверстия сетки - - + + CmdMeshFlipNormals - Mesh - Сеть + Mesh + Сеть - Flip normals - Сменить направление нормалей на противоположное + Flip normals + Сменить направление нормалей на противоположное - Flips the normals of the mesh - Сменить направление нормалей сети на противоположное + Flips the normals of the mesh + Сменить направление нормалей сети на противоположное - - + + CmdMeshFromGeometry - Mesh - Сеть + Mesh + Сеть - Create mesh from geometry... - Создать сеть по геометрии ... + Create mesh from geometry... + Создать сеть по геометрии ... - Create mesh from the selected geometry - Создание сети из выбранного геометрии + Create mesh from the selected geometry + Создание сети из выбранного геометрии - - + + CmdMeshHarmonizeNormals - Mesh - Сеть + Mesh + Сеть - Harmonize normals - Согласование нормалей + Harmonize normals + Согласование нормалей - Harmonizes the normals of the mesh - Согласует нормали сети + Harmonizes the normals of the mesh + Согласует нормали сети - - + + CmdMeshImport - Mesh - Сеть + Mesh + Сеть - Import mesh... - Импорт сети... + Import mesh... + Импорт сети... - Imports a mesh from file - Импорт сети из файла + Imports a mesh from file + Импорт сети из файла - - + + CmdMeshIntersection - Mesh - Сеть + Mesh + Сеть - Intersection - Пересечение + Intersection + Пересечение - - + + CmdMeshPolyCut - Mesh - Сеть + Mesh + Сеть - Cut mesh - Обрезать сеть + Cut mesh + Обрезать сеть - Cuts a mesh with a picked polygon - Обрезать сеть, выбранным многоугольником + Cuts a mesh with a picked polygon + Обрезать сеть, выбранным многоугольником - - + + CmdMeshPolySegm - Mesh - Сеть + Mesh + Сеть - Make segment - Создать сегмент + Make segment + Создать сегмент - Creates a mesh segment - Создает сегмент сетки + Creates a mesh segment + Создает сегмент сетки - - + + CmdMeshPolySelect - Mesh - Сеть + Mesh + Сеть - Select mesh - Выберите сеть + Select mesh + Выберите сеть - Select an area of the mesh - Выберите область сетки + Select an area of the mesh + Выберите область сетки - - + + CmdMeshPolySplit - Mesh - Сеть + Mesh + Сеть - Split mesh - Разделить сети + Split mesh + Разделить сети - Splits a mesh into two meshes - Разделяет сетку на две сетки + Splits a mesh into two meshes + Разделяет сетку на две сетки - - + + CmdMeshPolyTrim - Mesh - Сеть + Mesh + Сеть - Trim mesh - + Trim mesh + Trim mesh - Trims a mesh with a picked polygon - + Trims a mesh with a picked polygon + Trims a mesh with a picked polygon - - + + CmdMeshRemoveCompByHand - Mesh - Сеть + Mesh + Сеть - Remove components by hand... - Удалить компоненты вручную ... + Remove components by hand... + Удалить компоненты вручную ... - Mark a component to remove it from the mesh - Пометьте компонент для удаления из сетки + Mark a component to remove it from the mesh + Пометьте компонент для удаления из сетки - - + + CmdMeshRemoveComponents - Mesh - Сеть + Mesh + Сеть - Remove components... - Удалить компоненты... + Remove components... + Удалить компоненты... - Remove topologic independent components from the mesh - Удалить топологически-независимые компоненты из сетки + Remove topologic independent components from the mesh + Удалить топологически-независимые компоненты из сетки - - + + CmdMeshSegmentation - Mesh - Сеть + Mesh + Сеть - Create mesh segments... - + Create mesh segments... + Create mesh segments... - Create mesh segments - + Create mesh segments + Create mesh segments - - + + CmdMeshSmoothing - Mesh - Сеть + Mesh + Сеть - Smooth... - Сгладить ... + Smooth... + Сгладить ... - Smooth the selected meshes - Сгладить, выбранные сети + Smooth the selected meshes + Сгладить, выбранные сети - - + + CmdMeshToolMesh - Mesh - Сеть + Mesh + Сеть - Segment by tool mesh - Часть инструмента сетки + Segment by tool mesh + Часть инструмента сетки - Creates a segment from a given tool mesh - Создает сегмент из данного инструмента сети + Creates a segment from a given tool mesh + Создает сегмент из данного инструмента сети - - + + CmdMeshTransform - Mesh - Сеть + Mesh + Сеть - Transform mesh - Преобразование сетки + Transform mesh + Преобразование сетки - Rotate or move a mesh - Поворот или перемещение сетки + Rotate or move a mesh + Поворот или перемещение сетки - - + + CmdMeshUnion - Mesh - Сеть + Mesh + Сеть - Union - Объединение + Union + Объединение - - + + CmdMeshVertexCurvature - Mesh - Сеть + Mesh + Сеть - Calculates the curvature of the vertices of a mesh - Вычисляет кривизну вершин сетки + Calculates the curvature of the vertices of a mesh + Вычисляет кривизну вершин сетки - Curvature plot - Кривой участок + Curvature plot + Кривой участок - - + + CmdMeshVertexCurvatureInfo - Mesh - Сеть + Mesh + Сеть - Curvature info - Информация о кривизне + Curvature info + Информация о кривизне - Information about curvature - Информация о кривизне + Information about curvature + Информация о кривизне - - + + MeshGui::DlgEvaluateMesh - &Help - & Справки + &Help + & Справки - F1 - F1 + F1 + F1 - &Close - & Закрыть + &Close + & Закрыть - Alt+C - Alt+C + Alt+C + Alt+C - Mesh information - Информация о сети + Mesh information + Информация о сети - No information - Информация отсутствует + No information + Информация отсутствует - Number of points: - Количество точек: + Number of points: + Количество точек: - Number of edges: - Количество ребер: + Number of edges: + Количество ребер: - Refresh - Обновить + Refresh + Обновить - Analyze - Анализировать + Analyze + Анализ - Repair - Ремонт + Repair + Ремонт - Orientation - Ориентация + Orientation + Ориентация - Degenerated faces - Ухудшившийся лица + Degenerated faces + Ухудшившиеся грани - Face indices - Индексы лица + Face indices + Индексы граней - Number of faces: - Количество лиц: + Number of faces: + Количество граней: - Duplicated faces - Повторяющиеся лица + Duplicated faces + Повторяющиеся грани - Duplicated points - Повторяющиеся точки + Duplicated points + Повторяющиеся точки - Non-manifolds - Однообразия + Non-manifolds + Однообразия - Self-intersections - Самопересеченые + Self-intersections + Самопересечения - All above tests together - Использоват вместе все указанные выше тесты + All above tests together + Использоват вместе все указанные выше тесты - Repetitive repair - Серийный ремонт + Repetitive repair + Серийный ремонт - Evaluate & Repair Mesh - Оценить и ремонтировать сетку + Evaluate & Repair Mesh + Оценить и отремонтировать сетку - Folds on surface - Складки на поверхности + Folds on surface + Складки на поверхности - - + + MeshGui::DlgEvaluateMeshImp - No information - Информация отсутствует + No information + Информация отсутствует - Invalid neighbour indices - Неверные соседи указателей + Invalid neighbour indices + Неверные соседи указателей - Invalid face indices - Неверные индексы граней + Invalid face indices + Неверные индексы граней - Invalid point indices - Неверные индексы точки + Invalid point indices + Неверные индексы точки - Multiple point indices - Составные указатели точек + Multiple point indices + Составные указатели точек - Non-manifolds - Однообразия + Non-manifolds + Однообразия - Cannot remove non-manifolds - Не могу удалить однообразия + Cannot remove non-manifolds + Не могу удалить однообразия - No selection - Нет выбора + No selection + Нет выбора - No flipped normals - Перевернутых нормалей нет + No flipped normals + Перевернутых нормалей нет - %1 flipped normals - %1 перевернуть нормали + %1 flipped normals + %1 перевернуть нормали - No non-manifolds - Нет однообразий + No non-manifolds + Нет однообразий - %1 non-manifolds - %1 однообразный + %1 non-manifolds + %1 однообразный - No invalid indices - Нет недействительных индексов + No invalid indices + Нет недействительных индексов - No degenerations - Не вырождать + No degenerations + Не вырождать - %1 degenerated faces - %1 выродившиеся грани + %1 degenerated faces + %1 выродившиеся грани - No duplicated faces - Нет дублировать грани + No duplicated faces + Нет повторяющихся граней - %1 duplicated faces - %1 дублирующиеся грани + %1 duplicated faces + повторяющихся граней: %1 - No duplicated points - Нет дублировать точки + No duplicated points + Нет повторяющихся точек - Duplicated points - Повторяющиеся точки + Duplicated points + Повторяющиеся точки - Orientation - Ориентация + Orientation + Ориентация - Indices - Индексы + Indices + Индексы - Degenerations - Ухудшения + Degenerations + Ухудшения - Duplicated faces - Повторяющиеся лица + Duplicated faces + Повторяющиеся грани - No self-intersections - Не самопересечений + No self-intersections + Не самопересечений - Self-intersections - Самопересеченые + Self-intersections + Самопересечения - Mesh repair - Ремонт сетки + Mesh repair + Ремонт сетки - Flipped normals found - Найдены перевёрнутые нормали + Flipped normals found + Найдены перевёрнутые нормали - Check failed due to folds on the surface. + Check failed due to folds on the surface. Please run the command to repair folds first - Не удалось проверить из-за складок на поверхности. Сначала запустите команду для отладки складок + Не удалось проверить из-за складок на поверхности. Сначала запустите команду для отладки складок - No folds on surface - Нет складок на поверхности + No folds on surface + Нет складок на поверхности - %1 folds on surface - %1 складки на поверхности + %1 folds on surface + %1 складки на поверхности - Folds - Складки + Folds + Складки - - + + MeshGui::DlgRegularSolid - Regular Solid - Правильное геометрическое тело + Regular Solid + Правильное геометрическое тело - &Create - & Создать + &Create + &Создать - Alt+C - Alt+C + Alt+C + Alt+C - Cl&ose - Закрыть + Cl&ose + Закрыть - Alt+O - Alt+O + Alt+O + Alt+O - Solid: - Правильные: + Solid: + Правильные: - Cube - Куб + Cube + Куб - Cylinder - Цилиндр + Cylinder + Цилиндр - Cone - Конус + Cone + Конус - Sphere - Сфера + Sphere + Сфера - Ellipsoid - Эллипсоид + Ellipsoid + Эллипсоид - Torus - Тор + Torus + Тор - Height: - Высота: + Height: + Высота: - Length: - Длина: + Length: + Длина: - Width: - Ширина: + Width: + Ширина: - Radius: - Радиус: + Radius: + Радиус: - Closed - Закрыто + Closed + Закрыто - Sampling: - Выборка: + Sampling: + Выборка: - Edge length: - Длина кромки: + Edge length: + Длина кромки: - Radius 1: - Радиус 1: + Radius 1: + Радиус 1: - Radius 2: - Радиус 2: + Radius 2: + Радиус 2: - - + + MeshGui::DlgRegularSolidImp - Create %1 - Создать %1 + Create %1 + Создать %1 - No active document - Нет активного документа + No active document + Нет активного документа - - + + MeshGui::DlgSettingsMeshView - Mesh view - Просмотр в виде сетки + Mesh view + Просмотр в виде сетки - Two-side rendering - Двустороннее отображение + Two-side rendering + Двустороннее отображение - Backface color - Цвет оборотной стороны + Backface color + Цвет оборотной стороны - Smoothing - Размытие + Smoothing + Размытие - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> - Crease angle - Угол сгиба + Crease angle + Угол сгиба - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - Define normal per vertex - Определить нормаль для каждой вершины - - - ° - ° + Define normal per vertex + Определить нормаль для каждой вершины - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + ° + ° - Default appearance for new meshes - Внешний вид новых сеток по умолчанию + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - Default line color - Цвет линии по умолчанию + Default appearance for new meshes + Внешний вид новых сеток по умолчанию - Mesh transparency - Прозрачность сетки + Default line color + Цвет линии по умолчанию - Default mesh color - Цвет сетки по умолчанию + Mesh transparency + Прозрачность сетки - Show bounding-box for highlighted or selected meshes - Показать ограничивающий прямоугольник для подсвеченных или выбранных сеток + Default mesh color + Цвет сетки по умолчанию - Line transparency - Прозрачность линии + Show bounding-box for highlighted or selected meshes + Показать ограничивающий прямоугольник для подсвеченных или выбранных сеток - - + + Line transparency + Прозрачность линии + + + MeshGui::DlgSmoothing - Smoothing - Размытие + Smoothing + Размытие - Method - Метод + Method + Метод - Taubin - Таубин + Taubin + Таубин - Laplace - Лапласа + Laplace + Лапласа - Parameter - Параметр + Parameter + Параметр - Iterations: - Итерации: + Iterations: + Итерации: - Lambda: - Лямбда: + Lambda: + Лямбда: - Mu: - Mu: + Mu: + Mu: - - + + MeshGui::MeshFaceAddition - Add triangle - Добавить треугольник + Add triangle + Добавить треугольник - Flip normal - Направить нормаль в противоположную сторону + Flip normal + Направить нормаль в противоположную сторону - Clear - Очистить + Clear + Очистить - Finish - Завершить + Finish + Завершить - - + + MeshGui::RemoveComponents - Remove components - Удалить компоненты + Remove components + Удалить компоненты - Select - Выбрать + Select + Выбрать - Select whole component - Выбрать все компоненты + Select whole component + Выбрать все компоненты - Pick triangle - Подобрать треугольник + Pick triangle + Подобрать треугольник - < faces than - < faces than + < faces than + < faces than - Region - Регион + Region + Область - Components - Компоненты + Components + Компоненты - All - Все + All + Все - Deselect - Снять выделение + Deselect + Снять выделение - Deselect whole component - Снять выделение все компоненты + Deselect whole component + Снять выделение все компоненты - > faces than - > наружное покрытие + > faces than + > наружное покрытие - Region options - Параметры региона + Region options + Параметры области - Respect only triangles with normals facing screen - Привилегировать треугольники с наружным покрытием + Respect only triangles with normals facing screen + Привилегировать треугольники с наружным покрытием - Respect only visible triangles - Уважать только видимые треугольники + Respect only visible triangles + Уважать только видимые треугольники - - + + MeshGui::Segmentation - Mesh segmentation - + Mesh segmentation + Mesh segmentation - Smooth mesh - + Smooth mesh + Smooth mesh - Plane - + Plane + Плоскость - Tolerance - + Tolerance + Точность - Minumum number of faces - + Minumum number of faces + Minumum number of faces - Cylinder - Цилиндр + Cylinder + Цилиндр - Radius - + Radius + Радиус - Tolerance (Flat) - + Tolerance (Flat) + Tolerance (Flat) - Tolerance (Curved) - + Tolerance (Curved) + Tolerance (Curved) - Minimum number of faces - + Minimum number of faces + Minimum number of faces - Sphere - Сфера + Sphere + Сфера - - + + MeshGui::TaskRemoveComponents - Delete - Удалить + Delete + Удалить - Invert - Инвертировать + Invert + Инвертировать - - + + QDockWidget - Evaluate & Repair Mesh - Оценить и ремонтировать сетку + Evaluate & Repair Mesh + Оценить и отремонтировать сетку - - + + QObject - Import mesh - Импорт сети + Import mesh + Импорт сети - Export mesh - Экспорт сети + Export mesh + Экспорт сети - Solid Mesh - Прочная сетка + Solid Mesh + Прочная сетка - Boundings - Ограничения + Boundings + Ограничения - Fill holes - Закрыть отверстия + Fill holes + Закрыть отверстия - Fill holes with maximum number of edges: - Заполнить отверстия с максимальным числом ребер: + Fill holes with maximum number of edges: + Заполнить отверстия с максимальным числом ребер: - Binary STL (*.stl) - Двоичный STL (*.stl) + Binary STL (*.stl) + Двоичный STL (*.stl) - ASCII STL (*.ast) - ASCII STL (*.ast) + ASCII STL (*.ast) + ASCII STL (*.ast) - Binary Mesh (*.bms) - Двоичный сетки (*.bms) + Binary Mesh (*.bms) + Двоичный сетки (*.bms) - Alias Mesh (*.obj) - Псевдонимные сетки (*.obj) + Alias Mesh (*.obj) + Псевдонимные сетки (*.obj) - Inventor V2.1 ascii (*.iv) - Изобретатель V2.1 ascii (* .iv) + Inventor V2.1 ascii (*.iv) + Изобретатель V2.1 ascii (* .iv) - All Files (*.*) - Все файлы (*.*) + All Files (*.*) + Все файлы (*.*) - ASCII STL (*.stl) - ASCII STL (*.stl) + ASCII STL (*.stl) + ASCII STL (*.stl) - VRML V2.0 (*.wrl *.vrml) - VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) - Compressed VRML 2.0 (*.wrz) - Сжатый VRML 2.0 (*.wrz) + Compressed VRML 2.0 (*.wrz) + Сжатый VRML 2.0 (*.wrz) - Nastran (*.nas *.bdf) - Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) - Python module def (*.py) - Python module def (*.py) + Python module def (*.py) + Python module def (*.py) - Meshing Tolerance - Возможное отклонение сетки + Meshing Tolerance + Возможное отклонение сетки - Enter tolerance for meshing geometry: - Введите возможное отклонение для слияния геометрии: + Enter tolerance for meshing geometry: + Введите возможное отклонение для слияния геометрии: - The mesh '%1' is a solid. - Сетка '%1' прочная. + The mesh '%1' is a solid. + Сетка '%1' прочная. - The mesh '%1' is not a solid. - Сетка '%1' не прочная. + The mesh '%1' is not a solid. + Сетка '%1' не прочная. - Min=<%1,%2,%3> + Min=<%1,%2,%3> Max=<%4,%5,%6> - Min=<%1,%2,%3> + Min=<%1,%2,%3> Max=<%4,%5,%6> - [Points: %1, Edges: %2 Faces: %3] - [Пунктов: %1, Ребер: %2 Лиц: %3] + [Points: %1, Edges: %2 Faces: %3] + [Пунктов: %1, Ребер: %2 Лиц: %3] - Leave info mode - Выйти из информационного режима + Leave info mode + Выйти из информационного режима - Index: %1 - Индекс: %1 + Index: %1 + Индекс: %1 - Leave hole-filling mode - Выйти из режима заполнения отверстий + Leave hole-filling mode + Выйти из режима заполнения отверстий - Leave removal mode - Выйти из режима удаления + Leave removal mode + Выйти из режима удаления - All Mesh Files (*.stl *.ast *.bms *.obj *.ply) - Все файлы сеток (*.stl *.ast *.bms *.obj * .ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + Все файлы сеток (*.stl *.ast *.bms *.obj * .ply) - Stanford Polygon (*.ply) - Stanford Polygon (*.ply) + Stanford Polygon (*.ply) + Stanford Polygon (*.ply) - Object File Format (*.off) - Object File Format (*.off) + Object File Format (*.off) + Object File Format (*.off) - Standford Polygon (*.ply) - Standford Polygon (*.ply) + Standford Polygon (*.ply) + Standford Polygon (*.ply) - Delete selected faces - Удалить выбранные лица + Delete selected faces + Удалить выбранные грани - Clear selected faces - Очистить выбранные грани + Clear selected faces + Очистить выбранные грани - Annotation - Аннотация + Annotation + Аннотация - All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - - + + Workbench - Analyze - Анализировать + Analyze + Анализ - Boolean - Булевый + Boolean + Булевы операции - &Meshes - & Сетки + &Meshes + &Сетки - Mesh tools - Инструменты сетки + Mesh tools + Инструменты сетки - + diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_se.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_se.ts deleted file mode 100644 index dcb22227b..000000000 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_se.ts +++ /dev/null @@ -1,1203 +0,0 @@ - - - - - CmdMeshAddFacet - - Mesh - Nät - - - Add triangle - Addera triangel - - - Add triangle manually to a mesh - Addera triangel manuellt till ett nät - - - - CmdMeshBoundingBox - - Mesh - Nät - - - Boundings info... - Begränsningsinfo... - - - Shows the boundings of the selected mesh - Visar begränsningarna på det valda nätet - - - - CmdMeshBuildRegularSolid - - Mesh - Nät - - - Regular solid... - Reguljär solid... - - - Builds a regular solid - Skapar en reguljär solid - - - - CmdMeshDemolding - - Interactive demolding direction - Interaktiv avformningsriktning - - - Mesh - Nät - - - - CmdMeshDifference - - Mesh - Nät - - - Difference - Skillnad - - - - CmdMeshEvaluateFacet - - Mesh - Nät - - - Face info - Ytinformation - - - Information about face - Information om yta - - - - CmdMeshEvaluateSolid - - Mesh - Nät - - - Check solid mesh - Kontrolera solidnät - - - Checks whether the mesh is a solid - Kontrollerar om nätet är en solid - - - - CmdMeshEvaluation - - Mesh - Nät - - - Opens a dialog to analyze and repair a mesh - Öppnar en dialog för att analysera och reparera ett nät - - - Evaluate && Repair mesh... - Utvärdera && reparera nät... - - - - CmdMeshExMakeMesh - - Mesh - Nät - - - Make a Box - Gör en låda - - - - CmdMeshExMakeTool - - Mesh - Nät - - - Make a Tool - Gör ett verktyg - - - - CmdMeshExMakeUnion - - Mesh - Nät - - - Make Union - Gör en förening - - - - CmdMeshExport - - Mesh - Nät - - - Export mesh... - Exportera nät... - - - Exports a mesh to file - Exporterar ett nät till fil - - - - CmdMeshFillInteractiveHole - - Mesh - Nät - - - Close hole - Stäng hål - - - Close holes interactively - Stäng hål interaktivt - - - - CmdMeshFillupHoles - - Mesh - Nät - - - Fill holes... - Fyll hål... - - - Fill holes of the mesh - Fyll nätets hål - - - - CmdMeshFlipNormals - - Mesh - Nät - - - Flip normals - Invertera normaler - - - Flips the normals of the mesh - Invertera nätets normaler - - - - CmdMeshFromGeometry - - Mesh - Nät - - - Create mesh from geometry... - Skapa nät från geometri... - - - Create mesh from the selected geometry - Skapa nät från den valda geometrin - - - - CmdMeshHarmonizeNormals - - Mesh - Nät - - - Harmonize normals - Anpassa normaler - - - Harmonizes the normals of the mesh - Anpassa nätets normaler - - - - CmdMeshImport - - Mesh - Nät - - - Import mesh... - Importera nät... - - - Imports a mesh from file - Importerar ett nät från fil - - - - CmdMeshIntersection - - Mesh - Nät - - - Intersection - Skärning - - - - CmdMeshPolyCut - - Mesh - Nät - - - Cut mesh - Klipp nät - - - Cuts a mesh with a picked polygon - Klipper ett nät med en vald polygon - - - - CmdMeshPolySegm - - Mesh - Nät - - - Make segment - Skapa segment - - - Creates a mesh segment - Skapar ett nätsegment - - - - CmdMeshPolySelect - - Mesh - Nät - - - Select mesh - Välj nät - - - Select an area of the mesh - Markera ett område i nätet - - - - CmdMeshPolySplit - - Mesh - Nät - - - Split mesh - Dela nät - - - Splits a mesh into two meshes - Delar ett nät till två nät - - - - CmdMeshPolyTrim - - Mesh - Nät - - - Trim mesh - - - - Trims a mesh with a picked polygon - - - - - CmdMeshRemoveCompByHand - - Mesh - Nät - - - Remove components by hand... - Ta bort komponenter för hand... - - - Mark a component to remove it from the mesh - Markera en komponent för att ta bort den från nätet - - - - CmdMeshRemoveComponents - - Mesh - Nät - - - Remove components... - Ta bort komponenter... - - - Remove topologic independent components from the mesh - Ta bort topologiskt oberoende komponenter från nätet - - - - CmdMeshSegmentation - - Mesh - Nät - - - Create mesh segments... - - - - Create mesh segments - - - - - CmdMeshSmoothing - - Mesh - Nät - - - Smooth... - Jämna ut... - - - Smooth the selected meshes - Jämna ut de valda näten - - - - CmdMeshToolMesh - - Mesh - Nät - - - Segment by tool mesh - Segmentera - - - Creates a segment from a given tool mesh - Skapar ett segment från ett givet verktygsnät - - - - CmdMeshTransform - - Mesh - Nät - - - Transform mesh - Transformera nät - - - Rotate or move a mesh - Rotera eller flytta ett nät - - - - CmdMeshUnion - - Mesh - Nät - - - Union - Förening - - - - CmdMeshVertexCurvature - - Mesh - Nät - - - Calculates the curvature of the vertices of a mesh - Beräknar hörnens krökning på ett nät - - - Curvature plot - Krökningsplott - - - - CmdMeshVertexCurvatureInfo - - Mesh - Nät - - - Curvature info - Krökningsinfo - - - Information about curvature - Information om krökning - - - - MeshGui::DlgEvaluateMesh - - &Help - &Hjälp - - - F1 - F1 - - - &Close - &Stäng - - - Alt+C - Alt+C - - - Mesh information - Nätinformation - - - No information - Ingen Information - - - Number of points: - Antal punkter: - - - Number of edges: - Antal kanter: - - - Refresh - Ladda om - - - Analyze - Analysera - - - Repair - Reparera - - - Orientation - Orientering - - - Degenerated faces - Degenererade ytor - - - Face indices - Ytindex - - - Number of faces: - Antal ytor: - - - Duplicated faces - Duplicerade ytor - - - Duplicated points - Duplicerade punkter - - - Non-manifolds - Icke-mångfalder - - - Self-intersections - Självskärningar - - - All above tests together - Alla ovanstående test tillsammans - - - Repetitive repair - Upprepad reparation - - - Evaluate & Repair Mesh - Utvärdera & reparera Nät - - - Folds on surface - Veck på ytan - - - - MeshGui::DlgEvaluateMeshImp - - No information - Ingen Information - - - Invalid neighbour indices - Ogiltiga grannindex - - - Invalid face indices - Ogiltiga ytindex - - - Invalid point indices - Ogiltiga punktindex - - - Multiple point indices - Multipla punktindex - - - Non-manifolds - Icke-mångfalder - - - Cannot remove non-manifolds - Kan inte ta bort icke-mångfalder - - - No selection - Inget val - - - No flipped normals - Inga inverterade normaler - - - %1 flipped normals - %1 inverterade normaler - - - No non-manifolds - Inga icke-mångfalder - - - %1 non-manifolds - %1 icke-mångfalder - - - No invalid indices - Ingen ogiltig index - - - No degenerations - Inga degenerationer - - - %1 degenerated faces - %1 degenererade ytor - - - No duplicated faces - Inga duplicerade ytor - - - %1 duplicated faces - %1 duplicerade ytor - - - No duplicated points - Inga duplicerade punkter - - - Duplicated points - Duplicerade punkter - - - Orientation - Orientering - - - Indices - Index - - - Degenerations - Degenerationer - - - Duplicated faces - Duplicerade ytor - - - No self-intersections - Inga självskärningar - - - Self-intersections - Självskärningar - - - Mesh repair - Nätreparation - - - Flipped normals found - Vända normaler hittades - - - Check failed due to folds on the surface. -Please run the command to repair folds first - Kontroll misslyckades på grund av veck på ytan. Kör kommandot för att reparera veck först - - - No folds on surface - Inga veck på ytan - - - %1 folds on surface - %1 veck på ytan - - - Folds - Veck - - - - MeshGui::DlgRegularSolid - - Regular Solid - Reguljär solid - - - &Create - &Skapa - - - Alt+C - Alt+C - - - Cl&ose - S&täng - - - Alt+O - Alt+O - - - Solid: - Solid: - - - Cube - Kub - - - Cylinder - Cylinder - - - Cone - Kon - - - Sphere - Sfär - - - Ellipsoid - Ellipsoid - - - Torus - Torus - - - Height: - Höjd: - - - Length: - Längd: - - - Width: - Bredd: - - - Radius: - Radie: - - - Closed - Stängd - - - Sampling: - Skanning: - - - Edge length: - Kantlängd: - - - Radius 1: - Radie 1: - - - Radius 2: - Radie 2: - - - - MeshGui::DlgRegularSolidImp - - Create %1 - Skapa %1 - - - No active document - Inget aktivt dokument - - - - MeshGui::DlgSettingsMeshView - - Mesh view - Nätvy - - - Two-side rendering - Två-sidig rendering - - - Backface color - Bakgrundsfärg - - - Smoothing - Utjämning - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Detta är den minsta vinkeln mellan två ytor där normalerna beräknas för att göra platt skuggning.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Om vinkeln mellan normalerna på två intilliggande ytor är mindre än veckvinkeln, så kommer ytorna att mjukskuggas runt deras gemensamma kant.</p></body></html> - - - Crease angle - Veckvinkel - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Platt skuggning/Phong skuggning</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definierar ytornas utseende.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Med plattskuggning så är ytnormalerna inte definierade för hörn som leder till ett onaturligt utseende för kurvade ytor, emedan Phong skuggning leder till ett mjukare utseende. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Om detta alternativ är valt så används Phong skuggning,annars så används plattskuggning.</p></body></html> - - - Define normal per vertex - Definiera normaler för hörn - - - ° - ° - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Tips</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definiera normaler för hörn kallas också<span style=" font-style:italic;">Phong skuggning</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">medan definition av normaler för yta kallas</span>Plattskuggning<span style=" font-style:normal;">.</span></p></body></html> - - - Default appearance for new meshes - Standardutseende för nya nät - - - Default line color - Standard linjefärg - - - Mesh transparency - Nät transparens - - - Default mesh color - Standard nät färg - - - Show bounding-box for highlighted or selected meshes - Visa markeringsram för markerade eller valda nät - - - Line transparency - Linjegenomskinlighet - - - - MeshGui::DlgSmoothing - - Smoothing - Utjämning - - - Method - Metod - - - Taubin - Taubin - - - Laplace - Laplace - - - Parameter - Parameter - - - Iterations: - Iterationer: - - - Lambda: - Lambda: - - - Mu: - Mu: - - - - MeshGui::MeshFaceAddition - - Add triangle - Addera triangel - - - Flip normal - Vänd normal - - - Clear - Rensa - - - Finish - Slutför - - - - MeshGui::RemoveComponents - - Remove components - Ta bort komponenter - - - Select - Välj - - - Select whole component - Välj hela komponenten - - - Pick triangle - Markera triangel - - - < faces than - < ytor än - - - Region - Område - - - Components - Komponenter - - - All - Alla - - - Deselect - Avmarkera - - - Deselect whole component - Avmarkera hela komponenten - - - > faces than - > ytor än - - - Region options - Region alternativ - - - Respect only triangles with normals facing screen - Respekt endast trianglar med normaler vända mot skärmen - - - Respect only visible triangles - Respektera endast synliga trianglar - - - - MeshGui::Segmentation - - Mesh segmentation - - - - Smooth mesh - - - - Plane - - - - Tolerance - - - - Minumum number of faces - - - - Cylinder - Cylinder - - - Radius - - - - Tolerance (Flat) - - - - Tolerance (Curved) - - - - Minimum number of faces - - - - Sphere - Sfär - - - - MeshGui::TaskRemoveComponents - - Delete - Radera - - - Invert - Invertera - - - - QDockWidget - - Evaluate & Repair Mesh - Utvärdera & reparera Nät - - - - QObject - - Import mesh - Importera nät - - - Export mesh - Exportera nät - - - Solid Mesh - Solid nät - - - Boundings - Gränser - - - Fill holes - Fyll hål - - - Fill holes with maximum number of edges: - Fyll hål med maximalt antal kanter: - - - Binary STL (*.stl) - Binär STL (*.stl) - - - ASCII STL (*.ast) - ASCII STL (*.ast) - - - Binary Mesh (*.bms) - Nät-Binärformat (*.bms) - - - Alias Mesh (*.obj) - Alias Mesh (*.obj) - - - Inventor V2.1 ascii (*.iv) - Inventor V2.1 ascii (*.iv) - - - All Files (*.*) - Alla Filer (*.*) - - - ASCII STL (*.stl) - ASCII STL (*.STL) - - - VRML V2.0 (*.wrl *.vrml) - VRML V2.0 (*.WRL *.VRML) - - - Compressed VRML 2.0 (*.wrz) - Komprimerad VRML 2.0 (*.wrz) - - - Nastran (*.nas *.bdf) - Nastran (*.NAS *.BDF) - - - Python module def (*.py) - Python-modul def (*.py) - - - Meshing Tolerance - Nät tolerans - - - Enter tolerance for meshing geometry: - Mata in tolerans för nätning av geometri: - - - The mesh '%1' is a solid. - Nätet '%1' är en solid. - - - The mesh '%1' is not a solid. - Nätet '%1' är ingen solid. - - - Min=<%1,%2,%3> - -Max=<%4,%5,%6> - Min=<%1,%2,%3> - -Max=<%4,%5,%6> - - - [Points: %1, Edges: %2 Faces: %3] - [Punkter: %1, Kanter: %2 Ytor: %3] - - - Leave info mode - Lämna info läge - - - Index: %1 - Index: %1 - - - Leave hole-filling mode - Lämna hålfyllningsläge - - - Leave removal mode - Lämna borttagningsläge - - - All Mesh Files (*.stl *.ast *.bms *.obj *.ply) - Alla Nät-filer (*.STL *.ast *.BMS *.obj *.ply) - - - Stanford Polygon (*.ply) - Stanford Polygon (*.ply) - - - Object File Format (*.off) - Objekt-filformat (* .off) - - - Standford Polygon (*.ply) - Standford Polygon (*.ply) - - - Delete selected faces - Ta bort markerade ytor - - - Clear selected faces - Rensa valda ytor - - - Annotation - Annotering - - - All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - - - - - Workbench - - Analyze - Analysera - - - Boolean - Boolesk - - - &Meshes - &Nät - - - Mesh tools - Nätverktyg - - - diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_sk.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_sk.qm new file mode 100644 index 000000000..8ef09fec0 Binary files /dev/null and b/src/Mod/Mesh/Gui/Resources/translations/Mesh_sk.qm differ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_sk.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_sk.ts new file mode 100644 index 000000000..0feb46e19 --- /dev/null +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_sk.ts @@ -0,0 +1,1204 @@ + + + + + CmdMeshAddFacet + + Mesh + Mesh + + + Add triangle + Pridať trojuholník + + + Add triangle manually to a mesh + Pridať do siete trojuholník ručne + + + + CmdMeshBoundingBox + + Mesh + Mesh + + + Boundings info... + Info o ohraničeniach... + + + Shows the boundings of the selected mesh + Shows the boundings of the selected mesh + + + + CmdMeshBuildRegularSolid + + Mesh + Mesh + + + Regular solid... + Regular solid... + + + Builds a regular solid + Builds a regular solid + + + + CmdMeshDemolding + + Interactive demolding direction + Interactive demolding direction + + + Mesh + Mesh + + + + CmdMeshDifference + + Mesh + Mesh + + + Difference + Difference + + + + CmdMeshEvaluateFacet + + Mesh + Mesh + + + Face info + Face info + + + Information about face + Information about face + + + + CmdMeshEvaluateSolid + + Mesh + Mesh + + + Check solid mesh + Check solid mesh + + + Checks whether the mesh is a solid + Checks whether the mesh is a solid + + + + CmdMeshEvaluation + + Mesh + Mesh + + + Opens a dialog to analyze and repair a mesh + Opens a dialog to analyze and repair a mesh + + + Evaluate && Repair mesh... + Evaluate && Repair mesh... + + + + CmdMeshExMakeMesh + + Mesh + Mesh + + + Make a Box + Make a Box + + + + CmdMeshExMakeTool + + Mesh + Mesh + + + Make a Tool + Make a Tool + + + + CmdMeshExMakeUnion + + Mesh + Mesh + + + Make Union + Make Union + + + + CmdMeshExport + + Mesh + Mesh + + + Export mesh... + Export mesh... + + + Exports a mesh to file + Exports a mesh to file + + + + CmdMeshFillInteractiveHole + + Mesh + Mesh + + + Close hole + Close hole + + + Close holes interactively + Close holes interactively + + + + CmdMeshFillupHoles + + Mesh + Mesh + + + Fill holes... + Fill holes... + + + Fill holes of the mesh + Fill holes of the mesh + + + + CmdMeshFlipNormals + + Mesh + Mesh + + + Flip normals + Prevráť normály + + + Flips the normals of the mesh + Prevráť normály siete + + + + CmdMeshFromGeometry + + Mesh + Mesh + + + Create mesh from geometry... + Create mesh from geometry... + + + Create mesh from the selected geometry + Create mesh from the selected geometry + + + + CmdMeshHarmonizeNormals + + Mesh + Mesh + + + Harmonize normals + Zarovnať normály + + + Harmonizes the normals of the mesh + Zarovnať normály Siete + + + + CmdMeshImport + + Mesh + Mesh + + + Import mesh... + Import mesh... + + + Imports a mesh from file + Imports a mesh from file + + + + CmdMeshIntersection + + Mesh + Mesh + + + Intersection + Intersection + + + + CmdMeshPolyCut + + Mesh + Mesh + + + Cut mesh + Cut mesh + + + Cuts a mesh with a picked polygon + Cuts a mesh with a picked polygon + + + + CmdMeshPolySegm + + Mesh + Mesh + + + Make segment + Make segment + + + Creates a mesh segment + Creates a mesh segment + + + + CmdMeshPolySelect + + Mesh + Mesh + + + Select mesh + Vyber mesh + + + Select an area of the mesh + Select an area of the mesh + + + + CmdMeshPolySplit + + Mesh + Mesh + + + Split mesh + Split mesh + + + Splits a mesh into two meshes + Splits a mesh into two meshes + + + + CmdMeshPolyTrim + + Mesh + Mesh + + + Trim mesh + Trim mesh + + + Trims a mesh with a picked polygon + Trims a mesh with a picked polygon + + + + CmdMeshRemoveCompByHand + + Mesh + Mesh + + + Remove components by hand... + Remove components by hand... + + + Mark a component to remove it from the mesh + Mark a component to remove it from the mesh + + + + CmdMeshRemoveComponents + + Mesh + Mesh + + + Remove components... + Odstrániť časť... + + + Remove topologic independent components from the mesh + Remove topologic independent components from the mesh + + + + CmdMeshSegmentation + + Mesh + Mesh + + + Create mesh segments... + Create mesh segments... + + + Create mesh segments + Create mesh segments + + + + CmdMeshSmoothing + + Mesh + Mesh + + + Smooth... + Hladkosť... + + + Smooth the selected meshes + Smooth the selected meshes + + + + CmdMeshToolMesh + + Mesh + Mesh + + + Segment by tool mesh + Segment by tool mesh + + + Creates a segment from a given tool mesh + Vytvorí časť z daného nástroja siete + + + + CmdMeshTransform + + Mesh + Mesh + + + Transform mesh + Transformovať sieť + + + Rotate or move a mesh + Otočenie alebo presunúť siete + + + + CmdMeshUnion + + Mesh + Mesh + + + Union + Spojenie + + + + CmdMeshVertexCurvature + + Mesh + Mesh + + + Calculates the curvature of the vertices of a mesh + Počíta zakrivenie vrcholov siete + + + Curvature plot + Curvature plot + + + + CmdMeshVertexCurvatureInfo + + Mesh + Mesh + + + Curvature info + Zakrivenie-info + + + Information about curvature + Informácie o zakrivení + + + + MeshGui::DlgEvaluateMesh + + &Help + Pomoc + + + F1 + F1 + + + &Close + &Zavrieť + + + Alt+C + Alt+C + + + Mesh information + Informácie o Oku + + + No information + Žiadne informácie + + + Number of points: + Počet bodov: + + + Number of edges: + Počet hrán: + + + Refresh + Obnoviť + + + Analyze + Analyzovať + + + Repair + Oprava + + + Orientation + Orientácia + + + Degenerated faces + Degenerované plochy + + + Face indices + Ukazovatele plochy + + + Number of faces: + Počet plôch: + + + Duplicated faces + Duplikované plochy + + + Duplicated points + Duplikované body + + + Non-manifolds + Non-manifolds + + + Self-intersections + Samo-priesečníky + + + All above tests together + Všetky vyššie uvedené testy spolu + + + Repetitive repair + Opakované opravy + + + Evaluate & Repair Mesh + Kontrola & oprava oka + + + Folds on surface + Záhyby na povrchu + + + + MeshGui::DlgEvaluateMeshImp + + No information + Žiadne informácie + + + Invalid neighbour indices + Invalid neighbour indices + + + Invalid face indices + Invalid face indices + + + Invalid point indices + Neplatné ukazovatele bodu + + + Multiple point indices + Viacbodové ukazovatele + + + Non-manifolds + Non-manifolds + + + Cannot remove non-manifolds + Cannot remove non-manifolds + + + No selection + bez výberu + + + No flipped normals + Žiadne prevrátené normály + + + %1 flipped normals + %1 prevrátených normál + + + No non-manifolds + Žiadné nevarietné priestory + + + %1 non-manifolds + %1 nevarietné priestory + + + No invalid indices + Žiadne chybné ukazovatele + + + No degenerations + Žiadne degenerácie + + + %1 degenerated faces + %1 degenerovaných priečelí + + + No duplicated faces + Žiadne duplikované priečelia + + + %1 duplicated faces + %1 duplikovaných priečelí + + + No duplicated points + Žiadne duplikované body + + + Duplicated points + Duplikované body + + + Orientation + Orientácia + + + Indices + Ukazovatele + + + Degenerations + Degenerácia + + + Duplicated faces + Duplikované plochy + + + No self-intersections + Prierezy nepretínajúce samé seba + + + Self-intersections + Samo-priesečníky + + + Mesh repair + Oprava siete + + + Flipped normals found + Nájdené prevrátené normály + + + Check failed due to folds on the surface. +Please run the command to repair folds first + Kontrola zlyhala kvôli záhybom na povrchu. +Najprv spustite príkaz na opravu záhybov + + + No folds on surface + Žiadne záhyby na povrchu + + + %1 folds on surface + %1 záhybov na povrchu + + + Folds + Záhyby + + + + MeshGui::DlgRegularSolid + + Regular Solid + Pravidelné teleso + + + &Create + &Vytvoriť + + + Alt+C + Alt+C + + + Cl&ose + Zatvoriť + + + Alt+O + ALT+O + + + Solid: + Plné: + + + Cube + Kocka + + + Cylinder + Valec + + + Cone + Kužeľ + + + Sphere + Guľa + + + Ellipsoid + Elipsoid + + + Torus + Kruhový prstenec + + + Height: + Výška: + + + Length: + Dĺžka: + + + Width: + šírka: + + + Radius: + Polomer: + + + Closed + Zatvorené + + + Sampling: + Vzorkovanie : + + + Edge length: + Dĺžka okraja: + + + Radius 1: + Polomer 1: + + + Radius 2: + Polomer 2: + + + + MeshGui::DlgRegularSolidImp + + Create %1 + Vytvorené %1 + + + No active document + Žiadny aktívny dokument + + + + MeshGui::DlgSettingsMeshView + + Mesh view + Zobrazenie siete + + + Two-side rendering + Dvojstranné vykresľovanie + + + Backface color + Farba zadných stien + + + Smoothing + Vyhladzovanie + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Toto je najmenší uhol medzi dvomi priečeliami, kde sú normály prepočítavané pre tieňovanie plochy.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Plochy okolo spoločných hrán budú tieňované do hladka vtedy, ak bude uhol medzi normálami dvoch susedných plôch menší ako uhol zániku.</p></body></html> + + + Crease angle + Zánikový uhol + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Tieňovanie Plochy/Phong</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definuje vzhľad povrchov.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Pomocou Plochého tieňovania nie sú definované vrcholy, ktoré vedú k nereálnemu vzhľadu pri zakrivených povrchov. Tieňovanie Phong zabezpečí v takom prípade hladší vzhľad. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Ak nie je nastavená voľba na tieňovanie Phong, použije sa tieňovanie Plochy.</p></body></html> + + + Define normal per vertex + Definícia normál pre vrchol + + + ° + ° + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definovanie normál vrcholu sa taktiež nazýva <span style=" font-style:italic;">tieňovaním Phong</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">zatiaľ čo definovanie normál priečelia sa nazýva </span>tieňovaním Plochy<span style=" font-style:normal;">.</span></p></body></html> + + + Default appearance for new meshes + Predvolený vzhľad nových sietí + + + Default line color + Predvolená farba čiary + + + Mesh transparency + Transparentnosť siete + + + Default mesh color + Predvolenú farba siete + + + Show bounding-box for highlighted or selected meshes + Zobraziť ohraničenie pre zvýraznené alebo vybrané oká + + + Line transparency + Priesvitnosť čiary + + + + MeshGui::DlgSmoothing + + Smoothing + Vyhladzovanie + + + Method + Metóda + + + Taubin + Taubinová metóda + + + Laplace + Laplaceová metóda + + + Parameter + Parameter + + + Iterations: + Iterácie: + + + Lambda: + Lambda: + + + Mu: + Mu: + + + + MeshGui::MeshFaceAddition + + Add triangle + Pridať trojuholník + + + Flip normal + Prevrátiť normálu + + + Clear + Vyčistiť + + + Finish + Dokončiť + + + + MeshGui::RemoveComponents + + Remove components + Odstrániť komponent + + + Select + Výber + + + Select whole component + Vybrať celý komponent + + + Pick triangle + Vybrať trojuholník + + + < faces than + priečelia < ako + + + Region + Región + + + Components + Komponenty + + + All + Všetky + + + Deselect + Zrušiť výber + + + Deselect whole component + Odznačí celý komponent + + + > faces than + priečelia > ako + + + Region options + Regionálne nastavenia + + + Respect only triangles with normals facing screen + Rešpektuje len trojuholníky s normály priečelia + + + Respect only visible triangles + Rešpektovať len viditeľné trojuholníky + + + + MeshGui::Segmentation + + Mesh segmentation + Mesh segmentation + + + Smooth mesh + Smooth mesh + + + Plane + Rovina + + + Tolerance + Tolerancia + + + Minumum number of faces + Minumum number of faces + + + Cylinder + Valec + + + Radius + Polomer + + + Tolerance (Flat) + Tolerance (Flat) + + + Tolerance (Curved) + Tolerance (Curved) + + + Minimum number of faces + Minimum number of faces + + + Sphere + Guľa + + + + MeshGui::TaskRemoveComponents + + Delete + Odstrániť + + + Invert + Invertovať + + + + QDockWidget + + Evaluate & Repair Mesh + Kontrola & oprava oka + + + + QObject + + Import mesh + Importovať sieť + + + Export mesh + Exportovať sieť + + + Solid Mesh + Solid Mesh + + + Boundings + Boundings + + + Fill holes + Vyplniť diery + + + Fill holes with maximum number of edges: + Vyplniť diery maximálnym počtom hrán: + + + Binary STL (*.stl) + Binárne STL (*.stl) + + + ASCII STL (*.ast) + ASCII STL (*.AST) + + + Binary Mesh (*.bms) + Binárna sieť (*.BMS) + + + Alias Mesh (*.obj) + Sieť Alias (*.obj) + + + Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*.iv) + + + All Files (*.*) + Všetky súbory (*.*) + + + ASCII STL (*.stl) + ASCII STL (*.stl) + + + VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) + + + Compressed VRML 2.0 (*.wrz) + Komprimované VRML 2.0 (*.wrz) + + + Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) + + + Python module def (*.py) + Python module def (*.py) + + + Meshing Tolerance + Tolerancia siete + + + Enter tolerance for meshing geometry: + Enter tolerance for meshing geometry: + + + The mesh '%1' is a solid. + The mesh '%1' is a solid. + + + The mesh '%1' is not a solid. + The mesh '%1' is not a solid. + + + Min=<%1,%2,%3> + +Max=<%4,%5,%6> + Min=<%1,%2,%3> + +Max=<%4,%5,%6> + + + [Points: %1, Edges: %2 Faces: %3] + [Points: %1, Edges: %2 Faces: %3] + + + Leave info mode + Opustiť režim info + + + Index: %1 + Index: %1 + + + Leave hole-filling mode + Opustiť režim vypĺňania dier + + + Leave removal mode + Opustiť režim odstránenia + + + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + Všetky Mesh súbory (*.stl *.ast *.bms *.obj *.ply) + + + Stanford Polygon (*.ply) + Stanford mnohouholník (* .ply) + + + Object File Format (*.off) + Objekt formát súboru (* .off) + + + Standford Polygon (*.ply) + Stanford mnohouholník (* .ply) + + + Delete selected faces + Odstrániť vybraté tváre + + + Clear selected faces + Vymazať vybraté tváre + + + Annotation + Anotácia + + + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + + + + Workbench + + Analyze + Analyzovať + + + Boolean + Boolovská hodnota + + + &Meshes + Siete + + + Mesh tools + Nástroje siete + + + diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_se.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_sv-SE.qm similarity index 77% rename from src/Mod/Mesh/Gui/Resources/translations/Mesh_se.qm rename to src/Mod/Mesh/Gui/Resources/translations/Mesh_sv-SE.qm index e8ca64f80..09bb4464c 100644 Binary files a/src/Mod/Mesh/Gui/Resources/translations/Mesh_se.qm and b/src/Mod/Mesh/Gui/Resources/translations/Mesh_sv-SE.qm differ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_sv-SE.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_sv-SE.ts new file mode 100644 index 000000000..6b3b9db53 --- /dev/null +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_sv-SE.ts @@ -0,0 +1,1203 @@ + + + + + CmdMeshAddFacet + + Mesh + Nät + + + Add triangle + Addera triangel + + + Add triangle manually to a mesh + Addera triangel manuellt till ett nät + + + + CmdMeshBoundingBox + + Mesh + Nät + + + Boundings info... + Begränsningsinfo... + + + Shows the boundings of the selected mesh + Visar begränsningarna på det valda nätet + + + + CmdMeshBuildRegularSolid + + Mesh + Nät + + + Regular solid... + Reguljär solid... + + + Builds a regular solid + Skapar en reguljär solid + + + + CmdMeshDemolding + + Interactive demolding direction + Interaktiv avformningsriktning + + + Mesh + Nät + + + + CmdMeshDifference + + Mesh + Nät + + + Difference + Skillnad + + + + CmdMeshEvaluateFacet + + Mesh + Nät + + + Face info + Ytinformation + + + Information about face + Information om yta + + + + CmdMeshEvaluateSolid + + Mesh + Nät + + + Check solid mesh + Kontrolera solidnät + + + Checks whether the mesh is a solid + Kontrollerar om nätet är en solid + + + + CmdMeshEvaluation + + Mesh + Nät + + + Opens a dialog to analyze and repair a mesh + Öppnar en dialog för att analysera och reparera ett nät + + + Evaluate && Repair mesh... + Utvärdera && reparera nät... + + + + CmdMeshExMakeMesh + + Mesh + Nät + + + Make a Box + Gör en låda + + + + CmdMeshExMakeTool + + Mesh + Nät + + + Make a Tool + Gör ett verktyg + + + + CmdMeshExMakeUnion + + Mesh + Nät + + + Make Union + Gör en förening + + + + CmdMeshExport + + Mesh + Nät + + + Export mesh... + Exportera nät... + + + Exports a mesh to file + Exporterar ett nät till fil + + + + CmdMeshFillInteractiveHole + + Mesh + Nät + + + Close hole + Stäng hål + + + Close holes interactively + Stäng hål interaktivt + + + + CmdMeshFillupHoles + + Mesh + Nät + + + Fill holes... + Fyll hål... + + + Fill holes of the mesh + Fyll nätets hål + + + + CmdMeshFlipNormals + + Mesh + Nät + + + Flip normals + Invertera normaler + + + Flips the normals of the mesh + Invertera nätets normaler + + + + CmdMeshFromGeometry + + Mesh + Nät + + + Create mesh from geometry... + Skapa nät från geometri... + + + Create mesh from the selected geometry + Skapa nät från den valda geometrin + + + + CmdMeshHarmonizeNormals + + Mesh + Nät + + + Harmonize normals + Anpassa normaler + + + Harmonizes the normals of the mesh + Anpassa nätets normaler + + + + CmdMeshImport + + Mesh + Nät + + + Import mesh... + Importera nät... + + + Imports a mesh from file + Importerar ett nät från fil + + + + CmdMeshIntersection + + Mesh + Nät + + + Intersection + Skärning + + + + CmdMeshPolyCut + + Mesh + Nät + + + Cut mesh + Klipp nät + + + Cuts a mesh with a picked polygon + Klipper ett nät med en vald polygon + + + + CmdMeshPolySegm + + Mesh + Nät + + + Make segment + Skapa segment + + + Creates a mesh segment + Skapar ett nätsegment + + + + CmdMeshPolySelect + + Mesh + Nät + + + Select mesh + Välj nät + + + Select an area of the mesh + Markera ett område i nätet + + + + CmdMeshPolySplit + + Mesh + Nät + + + Split mesh + Dela nät + + + Splits a mesh into two meshes + Delar ett nät till två nät + + + + CmdMeshPolyTrim + + Mesh + Nät + + + Trim mesh + Trimma nät + + + Trims a mesh with a picked polygon + Trimmar ett nät med en vald polygon + + + + CmdMeshRemoveCompByHand + + Mesh + Nät + + + Remove components by hand... + Ta bort komponenter för hand... + + + Mark a component to remove it from the mesh + Markera en komponent för att ta bort den från nätet + + + + CmdMeshRemoveComponents + + Mesh + Nät + + + Remove components... + Ta bort komponenter... + + + Remove topologic independent components from the mesh + Ta bort topologiskt oberoende komponenter från nätet + + + + CmdMeshSegmentation + + Mesh + Nät + + + Create mesh segments... + Skapa nät segment... + + + Create mesh segments + Skapa nät segment + + + + CmdMeshSmoothing + + Mesh + Nät + + + Smooth... + Jämna ut... + + + Smooth the selected meshes + Jämna ut de valda näten + + + + CmdMeshToolMesh + + Mesh + Nät + + + Segment by tool mesh + Segmentera + + + Creates a segment from a given tool mesh + Skapar ett segment från ett givet verktygsnät + + + + CmdMeshTransform + + Mesh + Nät + + + Transform mesh + Transformera nät + + + Rotate or move a mesh + Rotera eller flytta ett nät + + + + CmdMeshUnion + + Mesh + Nät + + + Union + Förening + + + + CmdMeshVertexCurvature + + Mesh + Nät + + + Calculates the curvature of the vertices of a mesh + Beräknar hörnens krökning på ett nät + + + Curvature plot + Krökningsplott + + + + CmdMeshVertexCurvatureInfo + + Mesh + Nät + + + Curvature info + Krökningsinfo + + + Information about curvature + Information om krökning + + + + MeshGui::DlgEvaluateMesh + + &Help + &Hjälp + + + F1 + F1 + + + &Close + &Stäng + + + Alt+C + Alt+C + + + Mesh information + Nätinformation + + + No information + Ingen Information + + + Number of points: + Antal punkter: + + + Number of edges: + Antal kanter: + + + Refresh + Ladda om + + + Analyze + Analysera + + + Repair + Reparera + + + Orientation + Orientering + + + Degenerated faces + Degenererade ytor + + + Face indices + Ytindex + + + Number of faces: + Antal ytor: + + + Duplicated faces + Duplicerade ytor + + + Duplicated points + Duplicerade punkter + + + Non-manifolds + Icke-mångfalder + + + Self-intersections + Självskärningar + + + All above tests together + Alla ovanstående test tillsammans + + + Repetitive repair + Upprepad reparation + + + Evaluate & Repair Mesh + Utvärdera & reparera Nät + + + Folds on surface + Veck på ytan + + + + MeshGui::DlgEvaluateMeshImp + + No information + Ingen Information + + + Invalid neighbour indices + Ogiltiga grannindex + + + Invalid face indices + Ogiltiga ytindex + + + Invalid point indices + Ogiltiga punktindex + + + Multiple point indices + Multipla punktindex + + + Non-manifolds + Icke-mångfalder + + + Cannot remove non-manifolds + Kan inte ta bort icke-mångfalder + + + No selection + Inget val + + + No flipped normals + Inga inverterade normaler + + + %1 flipped normals + %1 inverterade normaler + + + No non-manifolds + Inga icke-mångfalder + + + %1 non-manifolds + %1 icke-mångfalder + + + No invalid indices + Ingen ogiltig index + + + No degenerations + Inga degenerationer + + + %1 degenerated faces + %1 degenererade ytor + + + No duplicated faces + Inga duplicerade ytor + + + %1 duplicated faces + %1 duplicerade ytor + + + No duplicated points + Inga duplicerade punkter + + + Duplicated points + Duplicerade punkter + + + Orientation + Orientering + + + Indices + Index + + + Degenerations + Degenerationer + + + Duplicated faces + Duplicerade ytor + + + No self-intersections + Inga självskärningar + + + Self-intersections + Självskärningar + + + Mesh repair + Nätreparation + + + Flipped normals found + Vända normaler hittades + + + Check failed due to folds on the surface. +Please run the command to repair folds first + Kontroll misslyckades på grund av veck på ytan. Kör kommandot för att reparera veck först + + + No folds on surface + Inga veck på ytan + + + %1 folds on surface + %1 veck på ytan + + + Folds + Veck + + + + MeshGui::DlgRegularSolid + + Regular Solid + Reguljär solid + + + &Create + &Skapa + + + Alt+C + Alt+C + + + Cl&ose + S&täng + + + Alt+O + Alt+O + + + Solid: + Solid: + + + Cube + Kub + + + Cylinder + Cylinder + + + Cone + Kon + + + Sphere + Sfär + + + Ellipsoid + Ellipsoid + + + Torus + Torus + + + Height: + Höjd: + + + Length: + Längd: + + + Width: + Bredd: + + + Radius: + Radie: + + + Closed + Stängd + + + Sampling: + Skanning: + + + Edge length: + Kantlängd: + + + Radius 1: + Radie 1: + + + Radius 2: + Radie 2: + + + + MeshGui::DlgRegularSolidImp + + Create %1 + Skapa %1 + + + No active document + Inget aktivt dokument + + + + MeshGui::DlgSettingsMeshView + + Mesh view + Nätvy + + + Two-side rendering + Två-sidig rendering + + + Backface color + Bakgrundsfärg + + + Smoothing + Utjämning + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Detta är den minsta vinkeln mellan två ytor där normalerna beräknas för att göra platt skuggning.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Om vinkeln mellan normalerna på två intilliggande ytor är mindre än veckvinkeln, så kommer ytorna att mjukskuggas runt deras gemensamma kant.</p></body></html> + + + Crease angle + Veckvinkel + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Platt skuggning/Phong skuggning</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definierar ytornas utseende.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Med plattskuggning så är ytnormalerna inte definierade för hörn som leder till ett onaturligt utseende för kurvade ytor, emedan Phong skuggning leder till ett mjukare utseende. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Om detta alternativ är valt så används Phong skuggning,annars så används plattskuggning.</p></body></html> + + + Define normal per vertex + Definiera normaler för hörn + + + ° + ° + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Tips</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definiera normaler för hörn kallas också<span style=" font-style:italic;">Phong skuggning</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">medan definition av normaler för yta kallas</span>Plattskuggning<span style=" font-style:normal;">.</span></p></body></html> + + + Default appearance for new meshes + Standardutseende för nya nät + + + Default line color + Standard linjefärg + + + Mesh transparency + Nät transparens + + + Default mesh color + Standard nät färg + + + Show bounding-box for highlighted or selected meshes + Visa markeringsram för markerade eller valda nät + + + Line transparency + Linjegenomskinlighet + + + + MeshGui::DlgSmoothing + + Smoothing + Utjämning + + + Method + Metod + + + Taubin + Taubin + + + Laplace + Laplace + + + Parameter + Parameter + + + Iterations: + Iterationer: + + + Lambda: + Lambda: + + + Mu: + Mu: + + + + MeshGui::MeshFaceAddition + + Add triangle + Addera triangel + + + Flip normal + Vänd normal + + + Clear + Rensa + + + Finish + Slutför + + + + MeshGui::RemoveComponents + + Remove components + Ta bort komponenter + + + Select + Välj + + + Select whole component + Välj hela komponenten + + + Pick triangle + Markera triangel + + + < faces than + < ytor än + + + Region + Område + + + Components + Komponenter + + + All + Alla + + + Deselect + Avmarkera + + + Deselect whole component + Avmarkera hela komponenten + + + > faces than + > ytor än + + + Region options + Region alternativ + + + Respect only triangles with normals facing screen + Respekt endast trianglar med normaler vända mot skärmen + + + Respect only visible triangles + Respektera endast synliga trianglar + + + + MeshGui::Segmentation + + Mesh segmentation + Nätsegmentering + + + Smooth mesh + Utjämnat nät + + + Plane + Plan + + + Tolerance + Tolerans + + + Minumum number of faces + Minsta antal ytor + + + Cylinder + Cylinder + + + Radius + Radie + + + Tolerance (Flat) + Tolerans (platt) + + + Tolerance (Curved) + Tolerans (kurva) + + + Minimum number of faces + Minsta antal ytor + + + Sphere + Sfär + + + + MeshGui::TaskRemoveComponents + + Delete + Radera + + + Invert + Invertera + + + + QDockWidget + + Evaluate & Repair Mesh + Utvärdera & reparera Nät + + + + QObject + + Import mesh + Importera nät + + + Export mesh + Exportera nät + + + Solid Mesh + Solid nät + + + Boundings + Gränser + + + Fill holes + Fyll hål + + + Fill holes with maximum number of edges: + Fyll hål med maximalt antal kanter: + + + Binary STL (*.stl) + Binär STL (*.stl) + + + ASCII STL (*.ast) + ASCII STL (*.ast) + + + Binary Mesh (*.bms) + Nät-Binärformat (*.bms) + + + Alias Mesh (*.obj) + Alias Mesh (*.obj) + + + Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*.iv) + + + All Files (*.*) + Alla Filer (*.*) + + + ASCII STL (*.stl) + ASCII STL (*.STL) + + + VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.WRL *.VRML) + + + Compressed VRML 2.0 (*.wrz) + Komprimerad VRML 2.0 (*.wrz) + + + Nastran (*.nas *.bdf) + Nastran (*.NAS *.BDF) + + + Python module def (*.py) + Python-modul def (*.py) + + + Meshing Tolerance + Nät tolerans + + + Enter tolerance for meshing geometry: + Mata in tolerans för nätning av geometri: + + + The mesh '%1' is a solid. + Nätet '%1' är en solid. + + + The mesh '%1' is not a solid. + Nätet '%1' är ingen solid. + + + Min=<%1,%2,%3> + +Max=<%4,%5,%6> + Min=<%1,%2,%3> + +Max=<%4,%5,%6> + + + [Points: %1, Edges: %2 Faces: %3] + [Punkter: %1, Kanter: %2 Ytor: %3] + + + Leave info mode + Lämna info läge + + + Index: %1 + Index: %1 + + + Leave hole-filling mode + Lämna hålfyllningsläge + + + Leave removal mode + Lämna borttagningsläge + + + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + Alla Nät-filer (*.STL *.ast *.BMS *.obj *.ply) + + + Stanford Polygon (*.ply) + Stanford Polygon (*.ply) + + + Object File Format (*.off) + Objekt-filformat (* .off) + + + Standford Polygon (*.ply) + Standford Polygon (*.ply) + + + Delete selected faces + Ta bort markerade ytor + + + Clear selected faces + Rensa valda ytor + + + Annotation + Annotering + + + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + Alla nät filer (*.stl *.ast *.bms *.obj *.off * .ply) + + + + Workbench + + Analyze + Analysera + + + Boolean + Boolesk + + + &Meshes + &Nät + + + Mesh tools + Nätverktyg + + + diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_tr.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_tr.qm new file mode 100644 index 000000000..68fda3999 Binary files /dev/null and b/src/Mod/Mesh/Gui/Resources/translations/Mesh_tr.qm differ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_tr.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_tr.ts new file mode 100644 index 000000000..72a46155c --- /dev/null +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_tr.ts @@ -0,0 +1,1204 @@ + + + + + CmdMeshAddFacet + + Mesh + Mesh + + + Add triangle + Üçgen Ekle + + + Add triangle manually to a mesh + bir kafese elle Üçgen Ekle + + + + CmdMeshBoundingBox + + Mesh + Mesh + + + Boundings info... + Boundings info... + + + Shows the boundings of the selected mesh + Shows the boundings of the selected mesh + + + + CmdMeshBuildRegularSolid + + Mesh + Mesh + + + Regular solid... + Regular solid... + + + Builds a regular solid + Builds a regular solid + + + + CmdMeshDemolding + + Interactive demolding direction + Interactive demolding direction + + + Mesh + Mesh + + + + CmdMeshDifference + + Mesh + Mesh + + + Difference + Fark + + + + CmdMeshEvaluateFacet + + Mesh + Mesh + + + Face info + Face info + + + Information about face + Information about face + + + + CmdMeshEvaluateSolid + + Mesh + Mesh + + + Check solid mesh + Check solid mesh + + + Checks whether the mesh is a solid + Checks whether the mesh is a solid + + + + CmdMeshEvaluation + + Mesh + Mesh + + + Opens a dialog to analyze and repair a mesh + Opens a dialog to analyze and repair a mesh + + + Evaluate && Repair mesh... + Evaluate && Repair mesh... + + + + CmdMeshExMakeMesh + + Mesh + Mesh + + + Make a Box + Kutu yap + + + + CmdMeshExMakeTool + + Mesh + Mesh + + + Make a Tool + Araç yap + + + + CmdMeshExMakeUnion + + Mesh + Mesh + + + Make Union + Birleştir + + + + CmdMeshExport + + Mesh + Mesh + + + Export mesh... + Export mesh... + + + Exports a mesh to file + Exports a mesh to file + + + + CmdMeshFillInteractiveHole + + Mesh + Mesh + + + Close hole + Deliği kapat + + + Close holes interactively + Etkileşimli olarak delikleri doldur + + + + CmdMeshFillupHoles + + Mesh + Mesh + + + Fill holes... + Delikleri doldur... + + + Fill holes of the mesh + Ağdaki delikleri doldur + + + + CmdMeshFlipNormals + + Mesh + Mesh + + + Flip normals + Flip normals + + + Flips the normals of the mesh + Flips the normals of the mesh + + + + CmdMeshFromGeometry + + Mesh + Mesh + + + Create mesh from geometry... + Create mesh from geometry... + + + Create mesh from the selected geometry + Create mesh from the selected geometry + + + + CmdMeshHarmonizeNormals + + Mesh + Mesh + + + Harmonize normals + Harmonize normals + + + Harmonizes the normals of the mesh + Harmonizes the normals of the mesh + + + + CmdMeshImport + + Mesh + Mesh + + + Import mesh... + Import mesh... + + + Imports a mesh from file + Imports a mesh from file + + + + CmdMeshIntersection + + Mesh + Mesh + + + Intersection + Intersection + + + + CmdMeshPolyCut + + Mesh + Mesh + + + Cut mesh + Cut mesh + + + Cuts a mesh with a picked polygon + Cuts a mesh with a picked polygon + + + + CmdMeshPolySegm + + Mesh + Mesh + + + Make segment + Make segment + + + Creates a mesh segment + Creates a mesh segment + + + + CmdMeshPolySelect + + Mesh + Mesh + + + Select mesh + Select mesh + + + Select an area of the mesh + Select an area of the mesh + + + + CmdMeshPolySplit + + Mesh + Mesh + + + Split mesh + Split mesh + + + Splits a mesh into two meshes + Splits a mesh into two meshes + + + + CmdMeshPolyTrim + + Mesh + Mesh + + + Trim mesh + Trim mesh + + + Trims a mesh with a picked polygon + Trims a mesh with a picked polygon + + + + CmdMeshRemoveCompByHand + + Mesh + Mesh + + + Remove components by hand... + Remove components by hand... + + + Mark a component to remove it from the mesh + Mark a component to remove it from the mesh + + + + CmdMeshRemoveComponents + + Mesh + Mesh + + + Remove components... + Remove components... + + + Remove topologic independent components from the mesh + Remove topologic independent components from the mesh + + + + CmdMeshSegmentation + + Mesh + Mesh + + + Create mesh segments... + Create mesh segments... + + + Create mesh segments + Create mesh segments + + + + CmdMeshSmoothing + + Mesh + Mesh + + + Smooth... + Smooth... + + + Smooth the selected meshes + Smooth the selected meshes + + + + CmdMeshToolMesh + + Mesh + Mesh + + + Segment by tool mesh + Segment by tool mesh + + + Creates a segment from a given tool mesh + Creates a segment from a given tool mesh + + + + CmdMeshTransform + + Mesh + Mesh + + + Transform mesh + Transform mesh + + + Rotate or move a mesh + Rotate or move a mesh + + + + CmdMeshUnion + + Mesh + Mesh + + + Union + Birleştir + + + + CmdMeshVertexCurvature + + Mesh + Mesh + + + Calculates the curvature of the vertices of a mesh + Calculates the curvature of the vertices of a mesh + + + Curvature plot + Eğrilik şekli + + + + CmdMeshVertexCurvatureInfo + + Mesh + Mesh + + + Curvature info + Eğrilik bilgisi + + + Information about curvature + Eğrilik hakkında bilgi + + + + MeshGui::DlgEvaluateMesh + + &Help + &Yardım + + + F1 + F1 + + + &Close + &Kapat + + + Alt+C + Alt + C + + + Mesh information + Ağ bilgisi + + + No information + Bilgi yok + + + Number of points: + Noktaların sayısı: + + + Number of edges: + Kenarların sayısı: + + + Refresh + Yenile + + + Analyze + İrdele (Analiz) + + + Repair + Onar + + + Orientation + Yönlendirme + + + Degenerated faces + Degenerated faces + + + Face indices + Face indices + + + Number of faces: + Number of faces: + + + Duplicated faces + Duplicated faces + + + Duplicated points + Duplicated points + + + Non-manifolds + Non-manifolds + + + Self-intersections + Self-intersections + + + All above tests together + All above tests together + + + Repetitive repair + Tekrarlı onarım + + + Evaluate & Repair Mesh + Ağı Değerlendir ve Onar + + + Folds on surface + Folds on surface + + + + MeshGui::DlgEvaluateMeshImp + + No information + Bilgi yok + + + Invalid neighbour indices + Invalid neighbour indices + + + Invalid face indices + Invalid face indices + + + Invalid point indices + Invalid point indices + + + Multiple point indices + Multiple point indices + + + Non-manifolds + Non-manifolds + + + Cannot remove non-manifolds + Cannot remove non-manifolds + + + No selection + Seçim yok + + + No flipped normals + No flipped normals + + + %1 flipped normals + %1 flipped normals + + + No non-manifolds + No non-manifolds + + + %1 non-manifolds + %1 non-manifolds + + + No invalid indices + No invalid indices + + + No degenerations + No degenerations + + + %1 degenerated faces + %1 degenerated faces + + + No duplicated faces + No duplicated faces + + + %1 duplicated faces + %1 duplicated faces + + + No duplicated points + No duplicated points + + + Duplicated points + Duplicated points + + + Orientation + Yönlendirme + + + Indices + Indices + + + Degenerations + Degenerations + + + Duplicated faces + Duplicated faces + + + No self-intersections + No self-intersections + + + Self-intersections + Self-intersections + + + Mesh repair + Ağı onar + + + Flipped normals found + Çevrilmiş normaller bulundu + + + Check failed due to folds on the surface. +Please run the command to repair folds first + Check failed due to folds on the surface. +Please run the command to repair folds first + + + No folds on surface + Yüzeyde kıvrım yok + + + %1 folds on surface + Yüzey üzerinde% 1 kıvrım var + + + Folds + Kıvrımlar + + + + MeshGui::DlgRegularSolid + + Regular Solid + Düzenli Katı + + + &Create + & Oluşturma + + + Alt+C + Alt + C + + + Cl&ose + Cl&ose + + + Alt+O + Alt + O + + + Solid: + Katı: + + + Cube + Küp + + + Cylinder + Silindir + + + Cone + Koni + + + Sphere + Küre + + + Ellipsoid + Elipsoid + + + Torus + Simit + + + Height: + Yükseklik: + + + Length: + Uzunluk: + + + Width: + Genişlik: + + + Radius: + Yarıçapı: + + + Closed + Kapalı + + + Sampling: + Örnekleme: + + + Edge length: + Kenar uzunluğu: + + + Radius 1: + Yarıçap 1: + + + Radius 2: + Yarıçap 2: + + + + MeshGui::DlgRegularSolidImp + + Create %1 + %1 Oluşturmak + + + No active document + Etkin belge yok + + + + MeshGui::DlgSettingsMeshView + + Mesh view + Kafes görüntüsü + + + Two-side rendering + İki taraflı kaplama + + + Backface color + Arkayüz rengi + + + Smoothing + Düzgünleştirme + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + + + Crease angle + Crease angle + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + + + Define normal per vertex + Define normal per vertex + + + ° + ° + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + + + Default appearance for new meshes + Default appearance for new meshes + + + Default line color + Varsayılan çizgi rengi + + + Mesh transparency + Kafes Saydamlığı + + + Default mesh color + Standart kafes rengi + + + Show bounding-box for highlighted or selected meshes + Show bounding-box for highlighted or selected meshes + + + Line transparency + Çizgi şeffaflığı + + + + MeshGui::DlgSmoothing + + Smoothing + Düzgünleştirme + + + Method + Yöntem + + + Taubin + Taubin + + + Laplace + Laplace + + + Parameter + Parametre + + + Iterations: + Yineleme: + + + Lambda: + Lamda: + + + Mu: + Mü: + + + + MeshGui::MeshFaceAddition + + Add triangle + Üçgen Ekle + + + Flip normal + Normal çevir + + + Clear + Temizle + + + Finish + Bitir + + + + MeshGui::RemoveComponents + + Remove components + Bileşeni kaldır + + + Select + Seç + + + Select whole component + Bütün bileşeni seç + + + Pick triangle + Üçgeni seç + + + < faces than + 'den az yüzler + + + Region + Bölge + + + Components + Bileşenler + + + All + Hepsi + + + Deselect + Seçimi kaldır + + + Deselect whole component + Tüm bileşen seçimini kaldırın + + + > faces than + 'den fazla yüz + + + Region options + Region options + + + Respect only triangles with normals facing screen + Respect only triangles with normals facing screen + + + Respect only visible triangles + Respect only visible triangles + + + + MeshGui::Segmentation + + Mesh segmentation + Mesh segmentation + + + Smooth mesh + Smooth mesh + + + Plane + Plane + + + Tolerance + Tolerans + + + Minumum number of faces + Minumum number of faces + + + Cylinder + Silindir + + + Radius + Yarıçap + + + Tolerance (Flat) + Tolerance (Flat) + + + Tolerance (Curved) + Tolerance (Curved) + + + Minimum number of faces + Minimum number of faces + + + Sphere + Küre + + + + MeshGui::TaskRemoveComponents + + Delete + Sil + + + Invert + Evir + + + + QDockWidget + + Evaluate & Repair Mesh + Ağı Değerlendir ve Onar + + + + QObject + + Import mesh + Import mesh + + + Export mesh + Export mesh + + + Solid Mesh + Solid Mesh + + + Boundings + Boundings + + + Fill holes + Fill holes + + + Fill holes with maximum number of edges: + Fill holes with maximum number of edges: + + + Binary STL (*.stl) + Binary STL (*.stl) + + + ASCII STL (*.ast) + ASCII STL (*.ast) + + + Binary Mesh (*.bms) + Binary Mesh (*.bms) + + + Alias Mesh (*.obj) + Alias Mesh (*.obj) + + + Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*.iv) + + + All Files (*.*) + All Files (*.*) + + + ASCII STL (*.stl) + ASCII STL (*.stl) + + + VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) + + + Compressed VRML 2.0 (*.wrz) + Compressed VRML 2.0 (*.wrz) + + + Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) + + + Python module def (*.py) + Python module def (*.py) + + + Meshing Tolerance + Meshing Tolerance + + + Enter tolerance for meshing geometry: + Enter tolerance for meshing geometry: + + + The mesh '%1' is a solid. + The mesh '%1' is a solid. + + + The mesh '%1' is not a solid. + The mesh '%1' is not a solid. + + + Min=<%1,%2,%3> + +Max=<%4,%5,%6> + Min=<%1,%2,%3> + +Max=<%4,%5,%6> + + + [Points: %1, Edges: %2 Faces: %3] + [Points: %1, Edges: %2 Faces: %3] + + + Leave info mode + Leave info mode + + + Index: %1 + Index: %1 + + + Leave hole-filling mode + Leave hole-filling mode + + + Leave removal mode + Leave removal mode + + + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + + + Stanford Polygon (*.ply) + Stanford Polygon (*.ply) + + + Object File Format (*.off) + Object File Format (*.off) + + + Standford Polygon (*.ply) + Standford Polygon (*.ply) + + + Delete selected faces + Delete selected faces + + + Clear selected faces + Clear selected faces + + + Annotation + Annotation + + + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + + + + Workbench + + Analyze + İrdele (Analiz) + + + Boolean + Boolean + + + &Meshes + Kafesler + + + Mesh tools + Kafes araçları + + + diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_uk.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_uk.qm index 69c03ca92..482fb4343 100644 Binary files a/src/Mod/Mesh/Gui/Resources/translations/Mesh_uk.qm and b/src/Mod/Mesh/Gui/Resources/translations/Mesh_uk.qm differ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_uk.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_uk.ts index 6bf756941..d67dbc2b8 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_uk.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_uk.ts @@ -1,1204 +1,1204 @@ - - + + CmdMeshAddFacet - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Add triangle - Додати трикутник + Add triangle + Додати трикутник - Add triangle manually to a mesh - Вручну додати трикутник до сітки + Add triangle manually to a mesh + Вручну додати трикутник до сітки - - + + CmdMeshBoundingBox - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Boundings info... - Boundings info... + Boundings info... + Boundings info... - Shows the boundings of the selected mesh - Shows the boundings of the selected mesh + Shows the boundings of the selected mesh + Shows the boundings of the selected mesh - - + + CmdMeshBuildRegularSolid - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Regular solid... - Regular solid... + Regular solid... + Regular solid... - Builds a regular solid - Builds a regular solid + Builds a regular solid + Builds a regular solid - - + + CmdMeshDemolding - Interactive demolding direction - Interactive demolding direction + Interactive demolding direction + Interactive demolding direction - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - - + + CmdMeshDifference - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Difference - Різниця + Difference + Різниця - - + + CmdMeshEvaluateFacet - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Face info - Інформація про грань + Face info + Інформація про грань - Information about face - Інформація про грань + Information about face + Інформація про грань - - + + CmdMeshEvaluateSolid - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Check solid mesh - Перевірити суцільність сітки + Check solid mesh + Перевірити суцільність сітки - Checks whether the mesh is a solid - Перевірити чи сітка суцільна + Checks whether the mesh is a solid + Перевірити чи сітка суцільна - - + + CmdMeshEvaluation - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Opens a dialog to analyze and repair a mesh - Відкриває діалог для аналізу та ремонту сітки + Opens a dialog to analyze and repair a mesh + Відкриває діалог для аналізу та ремонту сітки - Evaluate && Repair mesh... - Оцінка та Ремонт сітки... + Evaluate && Repair mesh... + Оцінка та Ремонт сітки... - - + + CmdMeshExMakeMesh - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Make a Box - Зробити Коробку + Make a Box + Зробити Коробку - - + + CmdMeshExMakeTool - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Make a Tool - Зробити Інструмент + Make a Tool + Зробити Інструмент - - + + CmdMeshExMakeUnion - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Make Union - Зробити Об’єднання + Make Union + Зробити Об’єднання - - + + CmdMeshExport - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Export mesh... - Експорт сітки... + Export mesh... + Експорт сітки... - Exports a mesh to file - Експорт сітки до файлу + Exports a mesh to file + Експорт сітки до файлу - - + + CmdMeshFillInteractiveHole - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Close hole - Закрити отвір + Close hole + Закрити отвір - Close holes interactively - Close holes interactively + Close holes interactively + Закрити отвори в діалоговому режимі - - + + CmdMeshFillupHoles - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Fill holes... - Fill holes... + Fill holes... + Заповнити отвори... - Fill holes of the mesh - Fill holes of the mesh + Fill holes of the mesh + Заповнити отвори сітки - - + + CmdMeshFlipNormals - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Flip normals - Flip normals + Flip normals + Змінити напрямок нормалей на протилежний - Flips the normals of the mesh - Flips the normals of the mesh + Flips the normals of the mesh + Змінити напрямок нормалей сітки на протилежний - - + + CmdMeshFromGeometry - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Create mesh from geometry... - Створити сітку з геометрії ... + Create mesh from geometry... + Створити сітку з геометрії ... - Create mesh from the selected geometry - Створити сітку з обраної геометрії + Create mesh from the selected geometry + Створити сітку з обраної геометрії - - + + CmdMeshHarmonizeNormals - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Harmonize normals - Узгодити нормалі + Harmonize normals + Узгодити нормалі - Harmonizes the normals of the mesh - Узгодити нормалі сітки + Harmonizes the normals of the mesh + Узгодити нормалі сітки - - + + CmdMeshImport - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Import mesh... - Імпорт сітки... + Import mesh... + Імпорт сітки... - Imports a mesh from file - Імпорт сітки з файлу + Imports a mesh from file + Імпорт сітки з файлу - - + + CmdMeshIntersection - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Intersection - Перетин + Intersection + Перетин - - + + CmdMeshPolyCut - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Cut mesh - Вирізати сітку + Cut mesh + Вирізати сітку - Cuts a mesh with a picked polygon - Вирізати сітку з обраного багатокутника + Cuts a mesh with a picked polygon + Вирізати сітку з обраного багатокутника - - + + CmdMeshPolySegm - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Make segment - Зробити сегмент + Make segment + Зробити сегмент - Creates a mesh segment - Creates a mesh segment + Creates a mesh segment + Створити сегмент сітки - - + + CmdMeshPolySelect - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Select mesh - Вибір сітки + Select mesh + Вибір сітки - Select an area of the mesh - Вибрати область сітки + Select an area of the mesh + Вибрати область сітки - - + + CmdMeshPolySplit - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Split mesh - Розбити сітку + Split mesh + Розбити сітку - Splits a mesh into two meshes - Splits a mesh into two meshes + Splits a mesh into two meshes + Розділити сітку на дві сітки - - + + CmdMeshPolyTrim - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Trim mesh - + Trim mesh + Trim mesh - Trims a mesh with a picked polygon - + Trims a mesh with a picked polygon + Trims a mesh with a picked polygon - - + + CmdMeshRemoveCompByHand - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Remove components by hand... - Remove components by hand... + Remove components by hand... + Видалити компоненти вручну... - Mark a component to remove it from the mesh - Mark a component to remove it from the mesh + Mark a component to remove it from the mesh + Позначити компонент для видалення його із сітки - - + + CmdMeshRemoveComponents - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Remove components... - Remove components... + Remove components... + Видалити компоненти... - Remove topologic independent components from the mesh - Remove topologic independent components from the mesh + Remove topologic independent components from the mesh + Remove topologic independent components from the mesh - - + + CmdMeshSegmentation - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Create mesh segments... - + Create mesh segments... + Create mesh segments... - Create mesh segments - + Create mesh segments + Create mesh segments - - + + CmdMeshSmoothing - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Smooth... - Smooth... + Smooth... + Згладжувати... - Smooth the selected meshes - Smooth the selected meshes + Smooth the selected meshes + Згладжувати вибрані сітки - - + + CmdMeshToolMesh - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Segment by tool mesh - Сегмент з інструменту сітки + Segment by tool mesh + Сегмент з інструменту сітки - Creates a segment from a given tool mesh - Створює сегмент від даного інструменту сітки + Creates a segment from a given tool mesh + Створює сегмент від даного інструменту сітки - - + + CmdMeshTransform - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Transform mesh - Перетворення сітки + Transform mesh + Перетворення сітки - Rotate or move a mesh - Обертання або переміщення сітки + Rotate or move a mesh + Обертання або переміщення сітки - - + + CmdMeshUnion - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Union - Об'єднання + Union + Об'єднання - - + + CmdMeshVertexCurvature - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Calculates the curvature of the vertices of a mesh - Розрахунок викривлення для вершин сітка + Calculates the curvature of the vertices of a mesh + Розрахунок викривлення для вершин сітка - Curvature plot - Ділянка викривлення + Curvature plot + Ділянка викривлення - - + + CmdMeshVertexCurvatureInfo - Mesh - Сітка(Меш) + Mesh + Сітка(Меш) - Curvature info - Інформація викривлення + Curvature info + Інформація викривлення - Information about curvature - Інформація про викривлення + Information about curvature + Інформація про викривлення - - + + MeshGui::DlgEvaluateMesh - &Help - &Допомога + &Help + &Допомога - F1 - F1 + F1 + F1 - &Close - &Закрити + &Close + &Закрити - Alt+C - Alt+C + Alt+C + Alt+C - Mesh information - Інформація про сітку + Mesh information + Інформація про сітку - No information - Інформація відсутня + No information + Інформація відсутня - Number of points: - Кількість точок: + Number of points: + Кількість точок: - Number of edges: - Кількість ребер: + Number of edges: + Кількість ребер: - Refresh - Оновити + Refresh + Оновити - Analyze - Аналізувати + Analyze + Аналізувати - Repair - Ремонтувати + Repair + Ремонтувати - Orientation - Orientation + Orientation + Орієнтація - Degenerated faces - Degenerated faces + Degenerated faces + Вироджені грані - Face indices - Face indices + Face indices + Індекси граней - Number of faces: - Number of faces: + Number of faces: + Кількість граней: - Duplicated faces - Duplicated faces + Duplicated faces + Дубльовані грані - Duplicated points - Duplicated points + Duplicated points + Дубльовані точки - Non-manifolds - Non-manifolds + Non-manifolds + Небагатовидний - Self-intersections - Self-intersections + Self-intersections + Самоперетинання - All above tests together - All above tests together + All above tests together + Всі перераховані тести разом - Repetitive repair - Repetitive repair + Repetitive repair + Повторне відновлення - Evaluate & Repair Mesh - Evaluate & Repair Mesh + Evaluate & Repair Mesh + Оцінити та відновити сітку - Folds on surface - Складки на поверхні + Folds on surface + Складки на поверхні - - + + MeshGui::DlgEvaluateMeshImp - No information - Інформація відсутня + No information + Інформація відсутня - Invalid neighbour indices - Хибні сусідні індекси + Invalid neighbour indices + Хибні сусідні індекси - Invalid face indices - Хибний індекс переднього плану + Invalid face indices + Хибний індекс переднього плану - Invalid point indices - Хибний індекс точки + Invalid point indices + Хибний індекс точки - Multiple point indices - Multiple point indices + Multiple point indices + Multiple point indices - Non-manifolds - Non-manifolds + Non-manifolds + Небагатовидний - Cannot remove non-manifolds - Cannot remove non-manifolds + Cannot remove non-manifolds + Cannot remove non-manifolds - No selection - Нічого не вибрано + No selection + Нічого не вибрано - No flipped normals - No flipped normals + No flipped normals + No flipped normals - %1 flipped normals - %1 flipped normals + %1 flipped normals + %1 flipped normals - No non-manifolds - No non-manifolds + No non-manifolds + No non-manifolds - %1 non-manifolds - %1 non-manifolds + %1 non-manifolds + %1 non-manifolds - No invalid indices - Невірні індекси відсутні + No invalid indices + Невірні індекси відсутні - No degenerations - Погіршені грані відсутні + No degenerations + Погіршені грані відсутні - %1 degenerated faces - %1 погіршених граней + %1 degenerated faces + %1 погіршених граней - No duplicated faces - Дубльовані грані відсутні + No duplicated faces + Дубльовані грані відсутні - %1 duplicated faces - %1 дубльованих граней + %1 duplicated faces + %1 дубльованих граней - No duplicated points - Дубльовані точки відсутні + No duplicated points + Дубльовані точки відсутні - Duplicated points - Duplicated points + Duplicated points + Дубльовані точки - Orientation - Orientation + Orientation + Орієнтація - Indices - Індекси + Indices + Індекси - Degenerations - Погіршення + Degenerations + Погіршення - Duplicated faces - Duplicated faces + Duplicated faces + Дубльовані грані - No self-intersections - Самоперетин відсутній + No self-intersections + Самоперетин відсутній - Self-intersections - Self-intersections + Self-intersections + Самоперетинання - Mesh repair - Ремонт сітки + Mesh repair + Ремонт сітки - Flipped normals found - Flipped normals found + Flipped normals found + Flipped normals found - Check failed due to folds on the surface. + Check failed due to folds on the surface. Please run the command to repair folds first - Check failed due to folds on the surface. + Check failed due to folds on the surface. Please run the command to repair folds first - No folds on surface - No folds on surface + No folds on surface + Згинів на поверхні немає - %1 folds on surface - %1 folds on surface + %1 folds on surface + %1 згинів на поверхні - Folds - Складки + Folds + Складки - - + + MeshGui::DlgRegularSolid - Regular Solid - Правильне геометричне тіло + Regular Solid + Правильне геометричне тіло - &Create - &Створити + &Create + &Створити - Alt+C - Alt+C + Alt+C + Alt+C - Cl&ose - Закрити + Cl&ose + Закрити - Alt+O - Alt+O + Alt+O + Alt+O - Solid: - Solid: + Solid: + Solid: - Cube - Куб + Cube + Куб - Cylinder - Циліндр + Cylinder + Циліндр - Cone - Конус + Cone + Конус - Sphere - Сфера + Sphere + Сфера - Ellipsoid - Еліпсоїд + Ellipsoid + Еліпсоїд - Torus - Тор + Torus + Тор - Height: - Висота: + Height: + Висота: - Length: - Довжина: + Length: + Довжина: - Width: - Ширина: + Width: + Ширина: - Radius: - Радіус: + Radius: + Радіус: - Closed - Закрито + Closed + Закрито - Sampling: - Вибірка: + Sampling: + Вибірка: - Edge length: - Довжина краю: + Edge length: + Довжина краю: - Radius 1: - Радіус 1: + Radius 1: + Радіус 1: - Radius 2: - Радіус 2: + Radius 2: + Радіус 2: - - + + MeshGui::DlgRegularSolidImp - Create %1 - Створити %1 + Create %1 + Створити %1 - No active document - Немає активного документу + No active document + Немає активного документу - - + + MeshGui::DlgSettingsMeshView - Mesh view - Вигляд сітки + Mesh view + Вигляд сітки - Two-side rendering - Дво-стороння побудова + Two-side rendering + Дво-стороння побудова - Backface color - Колір зворотньої сторони + Backface color + Колір зворотньої сторони - Smoothing - Згладжування + Smoothing + Згладжування - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> - Crease angle - Кут згину + Crease angle + Кут згину - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - Define normal per vertex - Визначити нормаль для кожної вершини - - - ° - ° + Define normal per vertex + Визначити нормаль для кожної вершини - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + ° + ° - Default appearance for new meshes - Стандартний вигляд для нових сіток + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - Default line color - Стандартний колір лінії + Default appearance for new meshes + Стандартний вигляд для нових сіток - Mesh transparency - Прозорість сітки + Default line color + Стандартний колір лінії - Default mesh color - Стандартний колір сітки + Mesh transparency + Прозорість сітки - Show bounding-box for highlighted or selected meshes - Показувати прямокутник обмеження для підсвічених чи обраних сіток + Default mesh color + Стандартний колір сітки - Line transparency - Прозорість лінії + Show bounding-box for highlighted or selected meshes + Показувати прямокутник обмеження для підсвічених чи обраних сіток - - + + Line transparency + Прозорість лінії + + + MeshGui::DlgSmoothing - Smoothing - Згладжування + Smoothing + Згладжування - Method - Метод + Method + Метод - Taubin - Таубіна + Taubin + Таубіна - Laplace - Лапласа + Laplace + Лапласа - Parameter - Параметр + Parameter + Параметр - Iterations: - Ітерації: + Iterations: + Ітерації: - Lambda: - Лямбда: + Lambda: + Лямбда: - Mu: - Mu: + Mu: + Mu: - - + + MeshGui::MeshFaceAddition - Add triangle - Додати трикутник + Add triangle + Додати трикутник - Flip normal - Flip normal + Flip normal + Flip normal - Clear - Очистити + Clear + Очистити - Finish - Завершити + Finish + Завершити - - + + MeshGui::RemoveComponents - Remove components - Видалити компоненти + Remove components + Видалити компоненти - Select - Вибрати + Select + Вибрати - Select whole component - Вибрати всі компоненти + Select whole component + Вибрати всі компоненти - Pick triangle - Вибрати трикутник + Pick triangle + Вибрати трикутник - < faces than - < faces than + < faces than + > граней, ніж - Region - Область + Region + Область - Components - Компоненти + Components + Компоненти - All - Все + All + Все - Deselect - Зняти виділення + Deselect + Зняти виділення - Deselect whole component - Зняти виділення з усіх компонентів + Deselect whole component + Зняти виділення з усіх компонентів - > faces than - > faces than + > faces than + > граней, ніж - Region options - Параметри області + Region options + Параметри області - Respect only triangles with normals facing screen - Поважати лише трикутники з нормалями на передньому плані + Respect only triangles with normals facing screen + Поважати лише трикутники з нормалями на передньому плані - Respect only visible triangles - Поважати лише видимі трикутники + Respect only visible triangles + Поважати лише видимі трикутники - - + + MeshGui::Segmentation - Mesh segmentation - + Mesh segmentation + Mesh segmentation - Smooth mesh - + Smooth mesh + Smooth mesh - Plane - + Plane + Площини - Tolerance - + Tolerance + Точність - Minumum number of faces - + Minumum number of faces + Minumum number of faces - Cylinder - Циліндр + Cylinder + Циліндр - Radius - + Radius + Радіус - Tolerance (Flat) - + Tolerance (Flat) + Tolerance (Flat) - Tolerance (Curved) - + Tolerance (Curved) + Tolerance (Curved) - Minimum number of faces - + Minimum number of faces + Minimum number of faces - Sphere - Сфера + Sphere + Сфера - - + + MeshGui::TaskRemoveComponents - Delete - Видалити + Delete + Видалити - Invert - Інвертувати + Invert + Інвертувати - - + + QDockWidget - Evaluate & Repair Mesh - Evaluate & Repair Mesh + Evaluate & Repair Mesh + Оцінити та відновити сітку - - + + QObject - Import mesh - Імпорт сітки + Import mesh + Імпорт сітки - Export mesh - Експорт сітки + Export mesh + Експорт сітки - Solid Mesh - Суцільна сітка + Solid Mesh + Суцільна сітка - Boundings - Boundings + Boundings + Прив'язки - Fill holes - Заповнити отвори + Fill holes + Заповнити отвори - Fill holes with maximum number of edges: - Заповнити отвори з максимальною кількістю ребер: + Fill holes with maximum number of edges: + Заповнити отвори з максимальною кількістю ребер: - Binary STL (*.stl) - Двійкові STL (*.stl) + Binary STL (*.stl) + Двійкові STL (*.stl) - ASCII STL (*.ast) - ASCII STL (*.ast) + ASCII STL (*.ast) + ASCII STL (*.ast) - Binary Mesh (*.bms) - Двійкова сітка (*.bms) + Binary Mesh (*.bms) + Двійкова сітка (*.bms) - Alias Mesh (*.obj) - Псевдоніми Сітки (*.obj) + Alias Mesh (*.obj) + Псевдоніми Сітки (*.obj) - Inventor V2.1 ascii (*.iv) - Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*.iv) - All Files (*.*) - Всі файли (*.*) + All Files (*.*) + Всі файли (*.*) - ASCII STL (*.stl) - ASCII STL (*.stl) + ASCII STL (*.stl) + ASCII STL (*.stl) - VRML V2.0 (*.wrl *.vrml) - VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) - Compressed VRML 2.0 (*.wrz) - Стиснутий VRML 2.0 (*.wrz) + Compressed VRML 2.0 (*.wrz) + Стиснутий VRML 2.0 (*.wrz) - Nastran (*.nas *.bdf) - Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) - Python module def (*.py) - Модуль Python def (*.py) + Python module def (*.py) + Модуль Python def (*.py) - Meshing Tolerance - Відхилення сітки + Meshing Tolerance + Відхилення сітки - Enter tolerance for meshing geometry: - Введіть відхилення для геометрії сітки: + Enter tolerance for meshing geometry: + Введіть відхилення для геометрії сітки: - The mesh '%1' is a solid. - Сітка '%1' є суцільною. + The mesh '%1' is a solid. + Сітка '%1' є суцільною. - The mesh '%1' is not a solid. - Сітка '%1' не суцільна. + The mesh '%1' is not a solid. + Сітка '%1' не суцільна. - Min=<%1,%2,%3> + Min=<%1,%2,%3> Max=<%4,%5,%6> - Мін=<%1,%2,%3> + Мін=<%1,%2,%3> Макс=<%4,%5,%6> - [Points: %1, Edges: %2 Faces: %3] - [Точок: %1, Ребер: %2 Граней: %3] + [Points: %1, Edges: %2 Faces: %3] + [Точок: %1, Ребер: %2 Граней: %3] - Leave info mode - Leave info mode + Leave info mode + Вийти з інформаційного режиму - Index: %1 - Індекс: %1 + Index: %1 + Індекс: %1 - Leave hole-filling mode - Leave hole-filling mode + Leave hole-filling mode + Вийти з режиму заповнення отворів - Leave removal mode - Leave removal mode + Leave removal mode + Вийти з режиму видалення - All Mesh Files (*.stl *.ast *.bms *.obj *.ply) - Всі файли сіток(мешу) (*.stl *.ast *.bms *.obj *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + Всі файли сіток(мешу) (*.stl *.ast *.bms *.obj *.ply) - Stanford Polygon (*.ply) - Stanford Polygon (*.ply) + Stanford Polygon (*.ply) + Stanford Polygon (*.ply) - Object File Format (*.off) - Object File Format (*.off) + Object File Format (*.off) + Object File Format (*.off) - Standford Polygon (*.ply) - Standford Polygon (*.ply) + Standford Polygon (*.ply) + Standford Polygon (*.ply) - Delete selected faces - Знищити обрані грані + Delete selected faces + Знищити обрані грані - Clear selected faces - Очистити обрані грані + Clear selected faces + Очистити обрані грані - Annotation - Анотація + Annotation + Анотація - All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - - + + Workbench - Analyze - Аналізувати + Analyze + Аналізувати - Boolean - Логічне + Boolean + Логічне - &Meshes - &Сітки(Mesh) + &Meshes + &Сітки(Mesh) - Mesh tools - Інструменти для сітки + Mesh tools + Інструменти для сітки - + diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-CN.qm similarity index 83% rename from src/Mod/Mesh/Gui/Resources/translations/Mesh_zh.qm rename to src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-CN.qm index 9064af458..cc469b5a0 100644 Binary files a/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh.qm and b/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-CN.qm differ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-CN.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-CN.ts new file mode 100644 index 000000000..3b6f16f69 --- /dev/null +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-CN.ts @@ -0,0 +1,1204 @@ + + + + + CmdMeshAddFacet + + Mesh + 网格 + + + Add triangle + 增加三角形 + + + Add triangle manually to a mesh + 手动给网格添加三角形 + + + + CmdMeshBoundingBox + + Mesh + 网格 + + + Boundings info... + 边界信息... + + + Shows the boundings of the selected mesh + 显示所选网格的边界 + + + + CmdMeshBuildRegularSolid + + Mesh + 网格 + + + Regular solid... + 合法实体... + + + Builds a regular solid + 建立合法实体 + + + + CmdMeshDemolding + + Interactive demolding direction + 交互式脱模方向 + + + Mesh + 网格 + + + + CmdMeshDifference + + Mesh + 网格 + + + Difference + 差集 + + + + CmdMeshEvaluateFacet + + Mesh + 网格 + + + Face info + 表面信息 + + + Information about face + 表面信息 + + + + CmdMeshEvaluateSolid + + Mesh + 网格 + + + Check solid mesh + 检查实体网格 + + + Checks whether the mesh is a solid + 检查网格是否为实体 + + + + CmdMeshEvaluation + + Mesh + 网格 + + + Opens a dialog to analyze and repair a mesh + 打开一个对话框,分析并修复网格 + + + Evaluate && Repair mesh... + 检测 && 修复网格... + + + + CmdMeshExMakeMesh + + Mesh + 网格 + + + Make a Box + 创建框 + + + + CmdMeshExMakeTool + + Mesh + 网格 + + + Make a Tool + 创建工具 + + + + CmdMeshExMakeUnion + + Mesh + 网格 + + + Make Union + 合集 + + + + CmdMeshExport + + Mesh + 网格 + + + Export mesh... + 导出网格... + + + Exports a mesh to file + 导出网格到文件 + + + + CmdMeshFillInteractiveHole + + Mesh + 网格 + + + Close hole + 关闭孔 + + + Close holes interactively + 交互式关闭孔 + + + + CmdMeshFillupHoles + + Mesh + 网格 + + + Fill holes... + 填充孔... + + + Fill holes of the mesh + 填充网格孔 + + + + CmdMeshFlipNormals + + Mesh + 网格 + + + Flip normals + 翻转法线 + + + Flips the normals of the mesh + 翻转网格法线 + + + + CmdMeshFromGeometry + + Mesh + 网格 + + + Create mesh from geometry... + 从几何体创建网格... + + + Create mesh from the selected geometry + 从选定的几何体创建网格 + + + + CmdMeshHarmonizeNormals + + Mesh + 网格 + + + Harmonize normals + 统一法线 + + + Harmonizes the normals of the mesh + 平滑网格法线 + + + + CmdMeshImport + + Mesh + 网格 + + + Import mesh... + 导入网格... + + + Imports a mesh from file + 从文件中导入网格 + + + + CmdMeshIntersection + + Mesh + 网格 + + + Intersection + 交集 + + + + CmdMeshPolyCut + + Mesh + 网格 + + + Cut mesh + 切割网格 + + + Cuts a mesh with a picked polygon + 使用多边形切割网格 + + + + CmdMeshPolySegm + + Mesh + 网格 + + + Make segment + 创建片段 + + + Creates a mesh segment + 创建网格 + + + + CmdMeshPolySelect + + Mesh + 网格 + + + Select mesh + 选择网格 + + + Select an area of the mesh + 选择网格的一个区域 + + + + CmdMeshPolySplit + + Mesh + 网格 + + + Split mesh + 拆分网格 + + + Splits a mesh into two meshes + 拆分成两个网格 + + + + CmdMeshPolyTrim + + Mesh + 网格 + + + Trim mesh + Trim mesh + + + Trims a mesh with a picked polygon + Trims a mesh with a picked polygon + + + + CmdMeshRemoveCompByHand + + Mesh + 网格 + + + Remove components by hand... + 手动删除组件... + + + Mark a component to remove it from the mesh + 标记要从网格中删除组件 + + + + CmdMeshRemoveComponents + + Mesh + 网格 + + + Remove components... + 删除组件... + + + Remove topologic independent components from the mesh + 从网格中删除拓扑独立部件 + + + + CmdMeshSegmentation + + Mesh + 网格 + + + Create mesh segments... + Create mesh segments... + + + Create mesh segments + Create mesh segments + + + + CmdMeshSmoothing + + Mesh + 网格 + + + Smooth... + 平滑... + + + Smooth the selected meshes + 平滑选定的网格 + + + + CmdMeshToolMesh + + Mesh + 网格 + + + Segment by tool mesh + 网格工具 + + + Creates a segment from a given tool mesh + 从给定网格工具创建 + + + + CmdMeshTransform + + Mesh + 网格 + + + Transform mesh + 变换网格 + + + Rotate or move a mesh + 旋转或移动网格 + + + + CmdMeshUnion + + Mesh + 网格 + + + Union + 并集 + + + + CmdMeshVertexCurvature + + Mesh + 网格 + + + Calculates the curvature of the vertices of a mesh + 计算网格顶点的曲率 + + + Curvature plot + 曲率图 + + + + CmdMeshVertexCurvatureInfo + + Mesh + 网格 + + + Curvature info + 曲率信息 + + + Information about curvature + 曲率信息 + + + + MeshGui::DlgEvaluateMesh + + &Help + 帮助(&H) + + + F1 + F1 + + + &Close + 关闭(&C) + + + Alt+C + Alt+C + + + Mesh information + 网格信息 + + + No information + 无信息 + + + Number of points: + 点数: + + + Number of edges: + 边数: + + + Refresh + 刷新 + + + Analyze + 分析 + + + Repair + 修复 + + + Orientation + 方向 + + + Degenerated faces + 退化的面 + + + Face indices + 表面指数 + + + Number of faces: + 面数: + + + Duplicated faces + 重复面 + + + Duplicated points + 重复点 + + + Non-manifolds + 非流形 + + + Self-intersections + 自干涉 + + + All above tests together + 测试以上所有 + + + Repetitive repair + 重复的修复 + + + Evaluate & Repair Mesh + 检测 & 修复网格 + + + Folds on surface + 表面折叠 + + + + MeshGui::DlgEvaluateMeshImp + + No information + 无信息 + + + Invalid neighbour indices + 无相邻指数 + + + Invalid face indices + 无效的面指数 + + + Invalid point indices + 无效点指数 + + + Multiple point indices + 多点指数 + + + Non-manifolds + 非流形 + + + Cannot remove non-manifolds + 不能删除非流形 + + + No selection + 无选择 + + + No flipped normals + 无翻转法线 + + + %1 flipped normals + %1 翻转法线 + + + No non-manifolds + 无非流形 + + + %1 non-manifolds + 非流形 %1 + + + No invalid indices + 没有无效指数 + + + No degenerations + 无退化 + + + %1 degenerated faces + 退化面 %1 + + + No duplicated faces + 无重复面 + + + %1 duplicated faces + 重复面 %1 + + + No duplicated points + 无重复点 + + + Duplicated points + 重复点 + + + Orientation + 方向 + + + Indices + 指数 + + + Degenerations + 退化 + + + Duplicated faces + 重复面 + + + No self-intersections + 无自干涉 + + + Self-intersections + 自干涉 + + + Mesh repair + 修复网格 + + + Flipped normals found + 发现翻转法线 + + + Check failed due to folds on the surface. +Please run the command to repair folds first + 由于表面折叠测试失败. +请先运行命令修复折叠 + + + No folds on surface + 面无折叠 + + + %1 folds on surface + 面折叠 %1 + + + Folds + 折叠 + + + + MeshGui::DlgRegularSolid + + Regular Solid + 合法实体 + + + &Create + 创建(&C) + + + Alt+C + Alt+C + + + Cl&ose + 关闭(&O) + + + Alt+O + Alt+O + + + Solid: + 实体: + + + Cube + 立方体 + + + Cylinder + 圆柱体 + + + Cone + 圆锥体 + + + Sphere + 球体 + + + Ellipsoid + 椭圆体 + + + Torus + 圆环 + + + Height: + 高度: + + + Length: + 长度: + + + Width: + 宽度: + + + Radius: + 半径: + + + Closed + 关闭 + + + Sampling: + 采样: + + + Edge length: + 边长: + + + Radius 1: + 半径 1: + + + Radius 2: + 半径 2: + + + + MeshGui::DlgRegularSolidImp + + Create %1 + 创建 %1 + + + No active document + 无活动文档 + + + + MeshGui::DlgSettingsMeshView + + Mesh view + 网格视图 + + + Two-side rendering + 双侧呈现 + + + Backface color + 背面颜色 + + + Smoothing + 平滑 + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext"content="1"/></head> <body style="white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style="margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> 这是最小的角度之间两面法线获得旨在做平底纹。</p><p style="margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> 如果之间的两个邻近表面法线的角度小于皱的角度脸上将周围常见的边缘 smoothshaded</p></body></html> + + + Crease angle + 抗皱角 + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext"content="1"/></head> <body style="white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> 平底纹/海防底纹</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> 定义外观的表面。</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> 不定义每个顶点单面阴影与表面法线,将导致不真实的外观的曲面时,如果使用多面阴影会得到更平滑的外观。</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> 如果设置此选项则使用多面阴影,否则使用单面阴影。</p></body></html> + + + Define normal per vertex + 定义每个常规顶点 + + + ° + ° + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-weight:600;">暗示</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">每个顶点的法线的定义也被称为<span style=" font-style:italic;">Phong光照</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"> <span style=" font-style:normal;">同时确定每个面的法线称为</span>平阴影<span style=" font-style:normal;">。</span> </p></body></html> + + + Default appearance for new meshes + 新网格默认外观 + + + Default line color + 默认线条颜色 + + + Mesh transparency + 网格透明度 + + + Default mesh color + 默认网格颜色 + + + Show bounding-box for highlighted or selected meshes + 显示高亮或选中网格的边界框 + + + Line transparency + 线条透明度 + + + + MeshGui::DlgSmoothing + + Smoothing + 平滑 + + + Method + 方法 + + + Taubin + Taubin + + + Laplace + 拉普拉斯 + + + Parameter + 参数 + + + Iterations: + 迭代: + + + Lambda: + Lambda: + + + Mu: + Mu: + + + + MeshGui::MeshFaceAddition + + Add triangle + 增加三角形 + + + Flip normal + 翻转法线 + + + Clear + 清除 + + + Finish + 完成 + + + + MeshGui::RemoveComponents + + Remove components + 删除组件 + + + Select + 选择 + + + Select whole component + 选择整个组件 + + + Pick triangle + 拾取三角形 + + + < faces than + < 面 + + + Region + 区域 + + + Components + 组件 + + + All + 全部 + + + Deselect + 取消选定 + + + Deselect whole component + 取消选择整个组件 + + + > faces than + >面 + + + Region options + 区域选项 + + + Respect only triangles with normals facing screen + 仅考虑屏幕常规法线三角形 + + + Respect only visible triangles + 仅考虑可见三角形 + + + + MeshGui::Segmentation + + Mesh segmentation + Mesh segmentation + + + Smooth mesh + Smooth mesh + + + Plane + 平面 + + + Tolerance + 公差 + + + Minumum number of faces + Minumum number of faces + + + Cylinder + 圆柱体 + + + Radius + 半径 + + + Tolerance (Flat) + Tolerance (Flat) + + + Tolerance (Curved) + Tolerance (Curved) + + + Minimum number of faces + Minimum number of faces + + + Sphere + 球体 + + + + MeshGui::TaskRemoveComponents + + Delete + 删除 + + + Invert + 反转 + + + + QDockWidget + + Evaluate & Repair Mesh + 检测 & 修复网格 + + + + QObject + + Import mesh + 导入网格 + + + Export mesh + 导出网格 + + + Solid Mesh + 实体网格 + + + Boundings + 边界 + + + Fill holes + 填充孔 + + + Fill holes with maximum number of edges: + 使用最大边数填充孔: + + + Binary STL (*.stl) + 二进制 STL (*.stl) + + + ASCII STL (*.ast) + ASCII STL (*.ast) + + + Binary Mesh (*.bms) + 二进制网格 (*.bms) + + + Alias Mesh (*.obj) + Alias网格 (*.obj) + + + Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*.iv) + + + All Files (*.*) + 所有文件(*.*) + + + ASCII STL (*.stl) + ASCII STL (*.stl) + + + VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) + + + Compressed VRML 2.0 (*.wrz) + 压缩 VRML 2.0 (*.wrz) + + + Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) + + + Python module def (*.py) + Python 模块定义 (*.py) + + + Meshing Tolerance + 网格化公差 + + + Enter tolerance for meshing geometry: + 输入网格化几何体公差: + + + The mesh '%1' is a solid. + 网格'%1'是实体. + + + The mesh '%1' is not a solid. + 网格 '%1' 不是实体. + + + Min=<%1,%2,%3> + +Max=<%4,%5,%6> + Min=<%1,%2,%3> + +Max=<%4,%5,%6> + + + [Points: %1, Edges: %2 Faces: %3] + [点: %1, 边: %2 面: %3] + + + Leave info mode + 退出查询模式 + + + Index: %1 + 索引: %1 + + + Leave hole-filling mode + 退出孔填充模式 + + + Leave removal mode + 退出删除模式 + + + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + 所有网格文件 (*.stl *.ast *.bms *.obj *.ply) + + + Stanford Polygon (*.ply) + 斯坦福多边形 (*.ply) + + + Object File Format (*.off) + 对象文件格式 (*.off) + + + Standford Polygon (*.ply) + 斯坦福多边形 (*.ply) + + + Delete selected faces + 删除选定的面 + + + Clear selected faces + 清除选中的面 + + + Annotation + 注释 + + + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + + + + Workbench + + Analyze + 分析 + + + Boolean + 布尔值 + + + &Meshes + 网格(&M) + + + Mesh tools + 网格工具 + + + diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-TW.qm b/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-TW.qm new file mode 100644 index 000000000..be819daef Binary files /dev/null and b/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-TW.qm differ diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-TW.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-TW.ts new file mode 100644 index 000000000..580805951 --- /dev/null +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-TW.ts @@ -0,0 +1,1204 @@ + + + + + CmdMeshAddFacet + + Mesh + Mesh + + + Add triangle + 加入三角形 + + + Add triangle manually to a mesh + 手動於網格中加入三角形 + + + + CmdMeshBoundingBox + + Mesh + Mesh + + + Boundings info... + Boundings info... + + + Shows the boundings of the selected mesh + Shows the boundings of the selected mesh + + + + CmdMeshBuildRegularSolid + + Mesh + Mesh + + + Regular solid... + 標準實體... + + + Builds a regular solid + 建立一標準實體 + + + + CmdMeshDemolding + + Interactive demolding direction + 互動脫模方向 + + + Mesh + Mesh + + + + CmdMeshDifference + + Mesh + Mesh + + + Difference + 差集 + + + + CmdMeshEvaluateFacet + + Mesh + Mesh + + + Face info + 面資訊 + + + Information about face + 面之資訊 + + + + CmdMeshEvaluateSolid + + Mesh + Mesh + + + Check solid mesh + 檢查固體網格 + + + Checks whether the mesh is a solid + 不論網格是否為實體均檢查 + + + + CmdMeshEvaluation + + Mesh + Mesh + + + Opens a dialog to analyze and repair a mesh + 開啟分析及修復網格對話窗 + + + Evaluate && Repair mesh... + 評估&&修復網格 + + + + CmdMeshExMakeMesh + + Mesh + Mesh + + + Make a Box + Make a Box + + + + CmdMeshExMakeTool + + Mesh + Mesh + + + Make a Tool + Make a Tool + + + + CmdMeshExMakeUnion + + Mesh + Mesh + + + Make Union + Make Union + + + + CmdMeshExport + + Mesh + Mesh + + + Export mesh... + 輸出網格... + + + Exports a mesh to file + 匯出網格至檔案 + + + + CmdMeshFillInteractiveHole + + Mesh + Mesh + + + Close hole + 封閉空洞 + + + Close holes interactively + Close holes interactively + + + + CmdMeshFillupHoles + + Mesh + Mesh + + + Fill holes... + 填滿空洞... + + + Fill holes of the mesh + 充填網格孔洞 + + + + CmdMeshFlipNormals + + Mesh + Mesh + + + Flip normals + Flip normals + + + Flips the normals of the mesh + Flips the normals of the mesh + + + + CmdMeshFromGeometry + + Mesh + Mesh + + + Create mesh from geometry... + 從幾何建立網格... + + + Create mesh from the selected geometry + 由所選幾何建立網格 + + + + CmdMeshHarmonizeNormals + + Mesh + Mesh + + + Harmonize normals + Harmonize normals + + + Harmonizes the normals of the mesh + Harmonizes the normals of the mesh + + + + CmdMeshImport + + Mesh + Mesh + + + Import mesh... + 匯入網格... + + + Imports a mesh from file + 從檔案中匯入網格 + + + + CmdMeshIntersection + + Mesh + Mesh + + + Intersection + 交集 + + + + CmdMeshPolyCut + + Mesh + Mesh + + + Cut mesh + 切割網格 + + + Cuts a mesh with a picked polygon + 以選取之多邊形切割網格 + + + + CmdMeshPolySegm + + Mesh + Mesh + + + Make segment + 建立分割 + + + Creates a mesh segment + 建立網格分割 + + + + CmdMeshPolySelect + + Mesh + Mesh + + + Select mesh + 選擇網格 + + + Select an area of the mesh + 選擇網格之區域 + + + + CmdMeshPolySplit + + Mesh + Mesh + + + Split mesh + 分割網格 + + + Splits a mesh into two meshes + 分為兩個網格 + + + + CmdMeshPolyTrim + + Mesh + Mesh + + + Trim mesh + 修剪網格 + + + Trims a mesh with a picked polygon + Trims a mesh with a picked polygon + + + + CmdMeshRemoveCompByHand + + Mesh + Mesh + + + Remove components by hand... + 手動移除元件... + + + Mark a component to remove it from the mesh + 使元件由網格中移出 + + + + CmdMeshRemoveComponents + + Mesh + Mesh + + + Remove components... + 刪除元件... + + + Remove topologic independent components from the mesh + Remove topologic independent components from the mesh + + + + CmdMeshSegmentation + + Mesh + Mesh + + + Create mesh segments... + 建立網格分割... + + + Create mesh segments + 建立網格分割 + + + + CmdMeshSmoothing + + Mesh + Mesh + + + Smooth... + 平滑... + + + Smooth the selected meshes + 平滑化所選網格 + + + + CmdMeshToolMesh + + Mesh + Mesh + + + Segment by tool mesh + Segment by tool mesh + + + Creates a segment from a given tool mesh + Creates a segment from a given tool mesh + + + + CmdMeshTransform + + Mesh + Mesh + + + Transform mesh + Transform mesh + + + Rotate or move a mesh + 旋轉或移除網格 + + + + CmdMeshUnion + + Mesh + Mesh + + + Union + 聯集 + + + + CmdMeshVertexCurvature + + Mesh + Mesh + + + Calculates the curvature of the vertices of a mesh + 計算網格的頂點的曲率 + + + Curvature plot + 曲率圖 + + + + CmdMeshVertexCurvatureInfo + + Mesh + Mesh + + + Curvature info + 曲率資訊 + + + Information about curvature + 曲率資訊 + + + + MeshGui::DlgEvaluateMesh + + &Help + &H説明 + + + F1 + F1 + + + &Close + 關閉(&C) + + + Alt+C + Alt+C + + + Mesh information + 網格資訊 + + + No information + 沒有資訊 + + + Number of points: + 點的數目: + + + Number of edges: + 邊緣數目: + + + Refresh + 重新整理 + + + Analyze + 分析 + + + Repair + 修復 + + + Orientation + 定位 + + + Degenerated faces + Degenerated faces + + + Face indices + Face indices + + + Number of faces: + 面數: + + + Duplicated faces + Duplicated faces + + + Duplicated points + Duplicated points + + + Non-manifolds + Non-manifolds + + + Self-intersections + Self-intersections + + + All above tests together + All above tests together + + + Repetitive repair + Repetitive repair + + + Evaluate & Repair Mesh + Evaluate & Repair Mesh + + + Folds on surface + Folds on surface + + + + MeshGui::DlgEvaluateMeshImp + + No information + 沒有資訊 + + + Invalid neighbour indices + Invalid neighbour indices + + + Invalid face indices + Invalid face indices + + + Invalid point indices + Invalid point indices + + + Multiple point indices + Multiple point indices + + + Non-manifolds + Non-manifolds + + + Cannot remove non-manifolds + Cannot remove non-manifolds + + + No selection + 未選取 + + + No flipped normals + No flipped normals + + + %1 flipped normals + %1 flipped normals + + + No non-manifolds + No non-manifolds + + + %1 non-manifolds + %1 non-manifolds + + + No invalid indices + No invalid indices + + + No degenerations + No degenerations + + + %1 degenerated faces + %1 degenerated faces + + + No duplicated faces + No duplicated faces + + + %1 duplicated faces + %1重疊面 + + + No duplicated points + 無重疊點 + + + Duplicated points + Duplicated points + + + Orientation + 定位 + + + Indices + 指數 + + + Degenerations + Degenerations + + + Duplicated faces + Duplicated faces + + + No self-intersections + 無內部交錯 + + + Self-intersections + Self-intersections + + + Mesh repair + 修復網格 + + + Flipped normals found + Flipped normals found + + + Check failed due to folds on the surface. +Please run the command to repair folds first + Check failed due to folds on the surface. +Please run the command to repair folds first + + + No folds on surface + No folds on surface + + + %1 folds on surface + %1 folds on surface + + + Folds + 折疊 + + + + MeshGui::DlgRegularSolid + + Regular Solid + 矩形實體 + + + &Create + &建立 + + + Alt+C + Alt+C + + + Cl&ose + &關閉 + + + Alt+O + Alt+O + + + Solid: + 實體: + + + Cube + 立方體 + + + Cylinder + 圓柱 + + + Cone + 錐體 + + + Sphere + 球體 + + + Ellipsoid + 橢球體 + + + Torus + 圓環 + + + Height: + 高度: + + + Length: + 長度: + + + Width: + 寬度: + + + Radius: + 半徑: + + + Closed + 關閉 + + + Sampling: + 採樣: + + + Edge length: + 邊長: + + + Radius 1: + 半徑 1: + + + Radius 2: + 半徑 2: + + + + MeshGui::DlgRegularSolidImp + + Create %1 + 創建%1 + + + No active document + 未選擇文件 + + + + MeshGui::DlgSettingsMeshView + + Mesh view + 網格視圖 + + + Two-side rendering + 雙面渲染 + + + Backface color + 背面顏色 + + + Smoothing + 平滑 + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> + + + Crease angle + Crease angle + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> + + + Define normal per vertex + Define normal per vertex + + + ° + ° + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + + + Default appearance for new meshes + 新網格的預設外觀 + + + Default line color + 預設線條顏色 + + + Mesh transparency + 網格透明度 + + + Default mesh color + 預設網格顏色 + + + Show bounding-box for highlighted or selected meshes + 顯示突出或選定的網格邊界框 + + + Line transparency + 線條透明度 + + + + MeshGui::DlgSmoothing + + Smoothing + 平滑 + + + Method + 方法 + + + Taubin + Taubin + + + Laplace + Laplace + + + Parameter + 參數 + + + Iterations: + Iterations: + + + Lambda: + Lambda: + + + Mu: + Mu: + + + + MeshGui::MeshFaceAddition + + Add triangle + 加入三角形 + + + Flip normal + 翻轉正常面 + + + Clear + 清除 + + + Finish + 完成 + + + + MeshGui::RemoveComponents + + Remove components + 移除組件 + + + Select + 選擇 + + + Select whole component + 選擇整個組件 + + + Pick triangle + 選取三角形 + + + < faces than + < faces than + + + Region + 面域 + + + Components + 組件 + + + All + 所有 + + + Deselect + 取消選擇 + + + Deselect whole component + 取消選擇整個組件 + + + > faces than + > faces than + + + Region options + 面域選項 + + + Respect only triangles with normals facing screen + 僅就法線正對畫面的三角形 + + + Respect only visible triangles + 僅就可見的三角形 + + + + MeshGui::Segmentation + + Mesh segmentation + 網格分割 + + + Smooth mesh + 平滑化網格 + + + Plane + 平面 + + + Tolerance + 公差 + + + Minumum number of faces + 面之最小數量 + + + Cylinder + 圓柱 + + + Radius + 半徑 + + + Tolerance (Flat) + 誤差(平面) + + + Tolerance (Curved) + 誤差(曲面) + + + Minimum number of faces + 面之最小數量 + + + Sphere + 球體 + + + + MeshGui::TaskRemoveComponents + + Delete + 刪除 + + + Invert + 反轉 + + + + QDockWidget + + Evaluate & Repair Mesh + Evaluate & Repair Mesh + + + + QObject + + Import mesh + 匯入網格 + + + Export mesh + 匯出網格 + + + Solid Mesh + 固體網格 + + + Boundings + Boundings + + + Fill holes + 填充孔 + + + Fill holes with maximum number of edges: + Fill holes with maximum number of edges: + + + Binary STL (*.stl) + Binary STL (*.stl) + + + ASCII STL (*.ast) + ASCII STL (*.ast) + + + Binary Mesh (*.bms) + 二進位網格 (*.bms) + + + Alias Mesh (*.obj) + Alias網格(*.obj) + + + Inventor V2.1 ascii (*.iv) + Inventor V2.1 ascii (*.iv) + + + All Files (*.*) + 所有檔 (*.*) + + + ASCII STL (*.stl) + ASCII STL (*.stl) + + + VRML V2.0 (*.wrl *.vrml) + VRML V2.0 (*.wrl *.vrml) + + + Compressed VRML 2.0 (*.wrz) + Compressed VRML 2.0 (*.wrz) + + + Nastran (*.nas *.bdf) + Nastran (*.nas *.bdf) + + + Python module def (*.py) + Python module def (*.py) + + + Meshing Tolerance + Meshing Tolerance + + + Enter tolerance for meshing geometry: + Enter tolerance for meshing geometry: + + + The mesh '%1' is a solid. + 網格'%1'為實體 + + + The mesh '%1' is not a solid. + 網格'%1'不為實體 + + + Min=<%1,%2,%3> + +Max=<%4,%5,%6> + 最小=<%1,%2,%3> + +最大=<%4,%5,%6> + + + [Points: %1, Edges: %2 Faces: %3] + [點: %1, 邊緣: %2 面: %3] + + + Leave info mode + 離開訊息模式 + + + Index: %1 + 索引: %1 + + + Leave hole-filling mode + 離開填充孔模式 + + + Leave removal mode + Leave removal mode + + + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + All Mesh Files (*.stl *.ast *.bms *.obj *.ply) + + + Stanford Polygon (*.ply) + Stanford Polygon (*.ply) + + + Object File Format (*.off) + Object File Format (*.off) + + + Standford Polygon (*.ply) + Standford Polygon (*.ply) + + + Delete selected faces + 刪除選定面 + + + Clear selected faces + 清除所選面 + + + Annotation + 注釋 + + + All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) + 所有網格檔案(*.stl *.ast *.bms *.obj *.off *.ply) + + + + Workbench + + Analyze + 分析 + + + Boolean + 布林運算 + + + &Meshes + 網面(&M) + + + Mesh tools + 網面工具 + + + diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh.ts deleted file mode 100644 index edcc10202..000000000 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh.ts +++ /dev/null @@ -1,1204 +0,0 @@ - - - - - CmdMeshAddFacet - - Mesh - 网格 - - - Add triangle - 增加三角形 - - - Add triangle manually to a mesh - 手动给网格添加三角形 - - - - CmdMeshBoundingBox - - Mesh - 网格 - - - Boundings info... - 边界信息... - - - Shows the boundings of the selected mesh - 显示所选网格的边界 - - - - CmdMeshBuildRegularSolid - - Mesh - 网格 - - - Regular solid... - 合法实体... - - - Builds a regular solid - 建立合法实体 - - - - CmdMeshDemolding - - Interactive demolding direction - 交互式脱模方向 - - - Mesh - 网格 - - - - CmdMeshDifference - - Mesh - 网格 - - - Difference - 差集 - - - - CmdMeshEvaluateFacet - - Mesh - 网格 - - - Face info - 表面信息 - - - Information about face - 表面信息 - - - - CmdMeshEvaluateSolid - - Mesh - 网格 - - - Check solid mesh - 检查实体网格 - - - Checks whether the mesh is a solid - 检查网格是否为实体 - - - - CmdMeshEvaluation - - Mesh - 网格 - - - Opens a dialog to analyze and repair a mesh - 打开一个对话框,分析并修复网格 - - - Evaluate && Repair mesh... - 检测 && 修复网格... - - - - CmdMeshExMakeMesh - - Mesh - 网格 - - - Make a Box - 创建框 - - - - CmdMeshExMakeTool - - Mesh - 网格 - - - Make a Tool - 创建工具 - - - - CmdMeshExMakeUnion - - Mesh - 网格 - - - Make Union - 合集 - - - - CmdMeshExport - - Mesh - 网格 - - - Export mesh... - 导出网格... - - - Exports a mesh to file - 导出网格到文件 - - - - CmdMeshFillInteractiveHole - - Mesh - 网格 - - - Close hole - 关闭孔 - - - Close holes interactively - 交互式关闭孔 - - - - CmdMeshFillupHoles - - Mesh - 网格 - - - Fill holes... - 填充孔... - - - Fill holes of the mesh - 填充网格孔 - - - - CmdMeshFlipNormals - - Mesh - 网格 - - - Flip normals - 翻转法线 - - - Flips the normals of the mesh - 翻转网格法线 - - - - CmdMeshFromGeometry - - Mesh - 网格 - - - Create mesh from geometry... - 从几何体创建网格... - - - Create mesh from the selected geometry - 从选定的几何体创建网格 - - - - CmdMeshHarmonizeNormals - - Mesh - 网格 - - - Harmonize normals - 统一法线 - - - Harmonizes the normals of the mesh - 平滑网格法线 - - - - CmdMeshImport - - Mesh - 网格 - - - Import mesh... - 导入网格... - - - Imports a mesh from file - 从文件中导入网格 - - - - CmdMeshIntersection - - Mesh - 网格 - - - Intersection - 交集 - - - - CmdMeshPolyCut - - Mesh - 网格 - - - Cut mesh - 切割网格 - - - Cuts a mesh with a picked polygon - 使用多边形切割网格 - - - - CmdMeshPolySegm - - Mesh - 网格 - - - Make segment - 创建片段 - - - Creates a mesh segment - 创建网格 - - - - CmdMeshPolySelect - - Mesh - 网格 - - - Select mesh - 选择网格 - - - Select an area of the mesh - 选择网格的一个区域 - - - - CmdMeshPolySplit - - Mesh - 网格 - - - Split mesh - 拆分网格 - - - Splits a mesh into two meshes - 拆分成两个网格 - - - - CmdMeshPolyTrim - - Mesh - 网格 - - - Trim mesh - - - - Trims a mesh with a picked polygon - - - - - CmdMeshRemoveCompByHand - - Mesh - 网格 - - - Remove components by hand... - 手动删除组件... - - - Mark a component to remove it from the mesh - 标记要从网格中删除组件 - - - - CmdMeshRemoveComponents - - Mesh - 网格 - - - Remove components... - 删除组件... - - - Remove topologic independent components from the mesh - 从网格中删除拓扑独立部件 - - - - CmdMeshSegmentation - - Mesh - 网格 - - - Create mesh segments... - - - - Create mesh segments - - - - - CmdMeshSmoothing - - Mesh - 网格 - - - Smooth... - 平滑... - - - Smooth the selected meshes - 平滑选定的网格 - - - - CmdMeshToolMesh - - Mesh - 网格 - - - Segment by tool mesh - 网格工具 - - - Creates a segment from a given tool mesh - 从给定网格工具创建 - - - - CmdMeshTransform - - Mesh - 网格 - - - Transform mesh - 变换网格 - - - Rotate or move a mesh - 旋转或移动网格 - - - - CmdMeshUnion - - Mesh - 网格 - - - Union - 并集 - - - - CmdMeshVertexCurvature - - Mesh - 网格 - - - Calculates the curvature of the vertices of a mesh - 计算网格顶点的曲率 - - - Curvature plot - 曲率图 - - - - CmdMeshVertexCurvatureInfo - - Mesh - 网格 - - - Curvature info - 曲率信息 - - - Information about curvature - 曲率信息 - - - - MeshGui::DlgEvaluateMesh - - &Help - 帮助(&H) - - - F1 - F1 - - - &Close - 关闭(&C) - - - Alt+C - Alt+C - - - Mesh information - 网格信息 - - - No information - 无信息 - - - Number of points: - 点数: - - - Number of edges: - 边数: - - - Refresh - 刷新 - - - Analyze - 分析 - - - Repair - 修复 - - - Orientation - 方向 - - - Degenerated faces - 退化的面 - - - Face indices - 表面指数 - - - Number of faces: - 面数: - - - Duplicated faces - 重复面 - - - Duplicated points - 重复点 - - - Non-manifolds - 非流形 - - - Self-intersections - 自干涉 - - - All above tests together - 测试以上所有 - - - Repetitive repair - 重复的修复 - - - Evaluate & Repair Mesh - 检测 & 修复网格 - - - Folds on surface - 表面折叠 - - - - MeshGui::DlgEvaluateMeshImp - - No information - 无信息 - - - Invalid neighbour indices - 无相邻指数 - - - Invalid face indices - 无效的面指数 - - - Invalid point indices - 无效点指数 - - - Multiple point indices - 多点指数 - - - Non-manifolds - 非流形 - - - Cannot remove non-manifolds - 不能删除非流形 - - - No selection - 无选择 - - - No flipped normals - 无翻转法线 - - - %1 flipped normals - %1 翻转法线 - - - No non-manifolds - 无非流形 - - - %1 non-manifolds - 非流形 %1 - - - No invalid indices - 没有无效指数 - - - No degenerations - 无退化 - - - %1 degenerated faces - 退化面 %1 - - - No duplicated faces - 无重复面 - - - %1 duplicated faces - 重复面 %1 - - - No duplicated points - 无重复点 - - - Duplicated points - 重复点 - - - Orientation - 方向 - - - Indices - 指数 - - - Degenerations - 退化 - - - Duplicated faces - 重复面 - - - No self-intersections - 无自干涉 - - - Self-intersections - 自干涉 - - - Mesh repair - 修复网格 - - - Flipped normals found - 发现翻转法线 - - - Check failed due to folds on the surface. -Please run the command to repair folds first - 由于表面折叠测试失败. -请先运行命令修复折叠 - - - No folds on surface - 面无折叠 - - - %1 folds on surface - 面折叠 %1 - - - Folds - 折叠 - - - - MeshGui::DlgRegularSolid - - Regular Solid - 合法实体 - - - &Create - 创建(&C) - - - Alt+C - Alt+C - - - Cl&ose - 关闭(&O) - - - Alt+O - Alt+O - - - Solid: - 实体: - - - Cube - 立方体 - - - Cylinder - 圆柱体 - - - Cone - 圆锥体 - - - Sphere - 球体 - - - Ellipsoid - 椭圆体 - - - Torus - 圆环 - - - Height: - 高度: - - - Length: - 长度: - - - Width: - 宽度: - - - Radius: - 半径: - - - Closed - 关闭 - - - Sampling: - 采样: - - - Edge length: - 边长: - - - Radius 1: - 半径 1: - - - Radius 2: - 半径 2: - - - - MeshGui::DlgRegularSolidImp - - Create %1 - 创建 %1 - - - No active document - 无活动文档 - - - - MeshGui::DlgSettingsMeshView - - Mesh view - 网格视图 - - - Two-side rendering - 双侧呈现 - - - Backface color - 背面颜色 - - - Smoothing - 平滑 - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This is the smallest angle between two faces where normals get calculated to do flat shading.</p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If the angle between the normals of two neighbouring faces is less than the crease angle, the faces will be smoothshaded around their common edge.</p></body></html> - <html><head><meta name="qrichtext"content="1"/></head> <body style="white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style="margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> 这是最小的角度之间两面法线获得旨在做平底纹。</p><p style="margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> 如果之间的两个邻近表面法线的角度小于皱的角度脸上将周围常见的边缘 smoothshaded</p></body></html> - - - Crease angle - 抗皱角 - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defines the appearance of surfaces.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">If this option is set Phong shading is used, if it is unset flat shading is used.</p></body></html> - <html><head><meta name="qrichtext"content="1"/></head> <body style="white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> 平底纹/海防底纹</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> 定义外观的表面。</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> 不定义每个顶点单面阴影与表面法线,将导致不真实的外观的曲面时,如果使用多面阴影会得到更平滑的外观。</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> 如果设置此选项则使用多面阴影,否则使用单面阴影。</p></body></html> - - - Define normal per vertex - 定义每个常规顶点 - - - ° - ° - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-weight:600;">暗示</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">每个顶点的法线的定义也被称为<span style=" font-style:italic;">Phong光照</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"> <span style=" font-style:normal;">同时确定每个面的法线称为</span>平阴影<span style=" font-style:normal;">。</span> </p></body></html> - - - Default appearance for new meshes - 新网格默认外观 - - - Default line color - 默认线条颜色 - - - Mesh transparency - 网格透明度 - - - Default mesh color - 默认网格颜色 - - - Show bounding-box for highlighted or selected meshes - 显示高亮或选中网格的边界框 - - - Line transparency - 线条透明度 - - - - MeshGui::DlgSmoothing - - Smoothing - 平滑 - - - Method - 方法 - - - Taubin - Taubin - - - Laplace - 拉普拉斯 - - - Parameter - 参数 - - - Iterations: - 迭代: - - - Lambda: - Lambda: - - - Mu: - Mu: - - - - MeshGui::MeshFaceAddition - - Add triangle - 增加三角形 - - - Flip normal - 翻转法线 - - - Clear - 清除 - - - Finish - 完成 - - - - MeshGui::RemoveComponents - - Remove components - 删除组件 - - - Select - 选择 - - - Select whole component - 选择整个组件 - - - Pick triangle - 拾取三角形 - - - < faces than - < 面 - - - Region - 区域 - - - Components - 组件 - - - All - 全部 - - - Deselect - 取消选定 - - - Deselect whole component - 取消选择整个组件 - - - > faces than - >面 - - - Region options - 区域选项 - - - Respect only triangles with normals facing screen - 仅考虑屏幕常规法线三角形 - - - Respect only visible triangles - 仅考虑可见三角形 - - - - MeshGui::Segmentation - - Mesh segmentation - - - - Smooth mesh - - - - Plane - - - - Tolerance - - - - Minumum number of faces - - - - Cylinder - 圆柱体 - - - Radius - - - - Tolerance (Flat) - - - - Tolerance (Curved) - - - - Minimum number of faces - - - - Sphere - 球体 - - - - MeshGui::TaskRemoveComponents - - Delete - 删除 - - - Invert - 反转 - - - - QDockWidget - - Evaluate & Repair Mesh - 检测 & 修复网格 - - - - QObject - - Import mesh - 导入网格 - - - Export mesh - 导出网格 - - - Solid Mesh - 实体网格 - - - Boundings - 边界 - - - Fill holes - 填充孔 - - - Fill holes with maximum number of edges: - 使用最大边数填充孔: - - - Binary STL (*.stl) - 二进制 STL (*.stl) - - - ASCII STL (*.ast) - ASCII STL (*.ast) - - - Binary Mesh (*.bms) - 二进制网格 (*.bms) - - - Alias Mesh (*.obj) - Alias网格 (*.obj) - - - Inventor V2.1 ascii (*.iv) - Inventor V2.1 ascii (*.iv) - - - All Files (*.*) - 所有文件(*.*) - - - ASCII STL (*.stl) - ASCII STL (*.stl) - - - VRML V2.0 (*.wrl *.vrml) - VRML V2.0 (*.wrl *.vrml) - - - Compressed VRML 2.0 (*.wrz) - 压缩 VRML 2.0 (*.wrz) - - - Nastran (*.nas *.bdf) - Nastran (*.nas *.bdf) - - - Python module def (*.py) - Python 模块定义 (*.py) - - - Meshing Tolerance - 网格化公差 - - - Enter tolerance for meshing geometry: - 输入网格化几何体公差: - - - The mesh '%1' is a solid. - 网格'%1'是实体. - - - The mesh '%1' is not a solid. - 网格 '%1' 不是实体. - - - Min=<%1,%2,%3> - -Max=<%4,%5,%6> - Min=<%1,%2,%3> - -Max=<%4,%5,%6> - - - [Points: %1, Edges: %2 Faces: %3] - [点: %1, 边: %2 面: %3] - - - Leave info mode - 退出查询模式 - - - Index: %1 - 索引: %1 - - - Leave hole-filling mode - 退出孔填充模式 - - - Leave removal mode - 退出删除模式 - - - All Mesh Files (*.stl *.ast *.bms *.obj *.ply) - 所有网格文件 (*.stl *.ast *.bms *.obj *.ply) - - - Stanford Polygon (*.ply) - 斯坦福多边形 (*.ply) - - - Object File Format (*.off) - 对象文件格式 (*.off) - - - Standford Polygon (*.ply) - 斯坦福多边形 (*.ply) - - - Delete selected faces - 删除选定的面 - - - Clear selected faces - 清除选中的面 - - - Annotation - 注释 - - - All Mesh Files (*.stl *.ast *.bms *.obj *.off *.ply) - - - - - Workbench - - Analyze - 分析 - - - Boolean - 布尔值 - - - &Meshes - 网格(&M) - - - Mesh tools - 网格工具 - - - diff --git a/src/Mod/MeshPart/Gui/Resources/Makefile.am b/src/Mod/MeshPart/Gui/Resources/Makefile.am index 15086a83a..8a9fe8abe 100644 --- a/src/Mod/MeshPart/Gui/Resources/Makefile.am +++ b/src/Mod/MeshPart/Gui/Resources/Makefile.am @@ -12,8 +12,8 @@ EXTRA_DIST = \ translations/MeshPart_af.ts \ translations/MeshPart_de.qm \ translations/MeshPart_de.ts \ - translations/MeshPart_es.qm \ - translations/MeshPart_es.ts \ + translations/MeshPart_es-ES.qm \ + translations/MeshPart_es-ES.ts \ translations/MeshPart_fi.qm \ translations/MeshPart_fi.ts \ translations/MeshPart_fr.qm \ @@ -28,16 +28,30 @@ EXTRA_DIST = \ translations/MeshPart_no.ts \ translations/MeshPart_pl.qm \ translations/MeshPart_pl.ts \ - translations/MeshPart_pt.qm \ - translations/MeshPart_pt.ts \ + translations/MeshPart_pt-BR.qm \ + translations/MeshPart_pt-BR.ts \ translations/MeshPart_ru.qm \ translations/MeshPart_ru.ts \ - translations/MeshPart_se.qm \ - translations/MeshPart_se.ts \ + translations/MeshPart_sv-SE.qm \ + translations/MeshPart_sv-SE.ts \ translations/MeshPart_uk.qm \ translations/MeshPart_uk.ts \ - translations/MeshPart_zh.qm \ - translations/MeshPart_zh.ts \ + translations/MeshPart_zh-CN.qm \ + translations/MeshPart_zh-CN.ts \ + translations/MeshPart_zh-TW.qm \ + translations/MeshPart_zh-TW.ts \ + translations/MeshPart_hu.qm \ + translations/MeshPart_hu.ts \ + translations/MeshPart_ja.qm \ + translations/MeshPart_ja.ts \ + translations/MeshPart_cs.qm \ + translations/MeshPart_cs.ts \ + translations/MeshPart_sk.qm \ + translations/MeshPart_sk.ts \ + translations/MeshPart_ro.qm \ + translations/MeshPart_ro.ts \ + translations/MeshPart_tr.qm \ + translations/MeshPart_tr.ts \ MeshPart.qrc diff --git a/src/Mod/MeshPart/Gui/Resources/MeshPart.qrc b/src/Mod/MeshPart/Gui/Resources/MeshPart.qrc index 2975b1730..e1f028692 100644 --- a/src/Mod/MeshPart/Gui/Resources/MeshPart.qrc +++ b/src/Mod/MeshPart/Gui/Resources/MeshPart.qrc @@ -3,7 +3,6 @@ icons/actions/MeshFace.svg translations/MeshPart_af.qm translations/MeshPart_de.qm - translations/MeshPart_es.qm translations/MeshPart_fi.qm translations/MeshPart_fr.qm translations/MeshPart_hr.qm @@ -11,10 +10,18 @@ translations/MeshPart_nl.qm translations/MeshPart_no.qm translations/MeshPart_pl.qm - translations/MeshPart_pt.qm translations/MeshPart_ru.qm - translations/MeshPart_se.qm translations/MeshPart_uk.qm - translations/MeshPart_zh.qm + translations/MeshPart_tr.qm + translations/MeshPart_sv-SE.qm + translations/MeshPart_zh-TW.qm + translations/MeshPart_pt-BR.qm + translations/MeshPart_cs.qm + translations/MeshPart_sk.qm + translations/MeshPart_es-ES.qm + translations/MeshPart_zh-CN.qm + translations/MeshPart_ja.qm + translations/MeshPart_ro.qm + translations/MeshPart_hu.qm diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_af.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_af.ts index 420d92965..61658705c 100644 --- a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_af.ts +++ b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_af.ts @@ -1,68 +1,61 @@ - - + + CmdMeshPartMesher - - Mesh - Maas + + Mesh + Maas - - Create mesh from shape... - Skep 'n maas van die vorm ... + Create mesh from shape... + Skep 'n maas van die vorm ... - - Tessellate shape - Tesselleer die vorm + Tessellate shape + Tesselleer die vorm - - + + MeshPartGui::Tessellation - - Tessellation - Tessellasie + + Tessellation + Tessellasie - - Shapes - Vorms + Shapes + Vorms - - Settings - Instellings + Settings + Instellings - - Surface deviation: - Oppervlakafwyking: + Surface deviation: + Oppervlakafwyking: - - Max. edge length: - Maks kantlengte: + Max. edge length: + Maks kantlengte: - - Select a shape for meshing, first. - Kies eers 'n vorm om te omskep in 'n maas. + + Select a shape for meshing, first. + Kies eers 'n vorm om te omskep in 'n maas. - - No such document '%1'. - Dokument bestaan nie '%1'. + No such document '%1'. + Dokument bestaan nie '%1'. - - + + Workbench - - MeshPart - MaasOnderdeel + + MeshPart + MaasOnderdeel - + diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_cs.qm b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_cs.qm new file mode 100644 index 000000000..212b646a5 Binary files /dev/null and b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_cs.qm differ diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_cs.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_cs.ts new file mode 100644 index 000000000..0b5686088 --- /dev/null +++ b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_cs.ts @@ -0,0 +1,61 @@ + + + + + CmdMeshPartMesher + + + Mesh + Mesh + + + Create mesh from shape... + Vytvoř síť z útvaru... + + + Tessellate shape + Plátování útvaru + + + + MeshPartGui::Tessellation + + + Tessellation + Plátování + + + Shapes + Útvar + + + Settings + Nastavení + + + Surface deviation: + Odchylka plochy: + + + Max. edge length: + Max. délka hrany: + + + + Select a shape for meshing, first. + Nejprve vyber tvar pro síťování. + + + No such document '%1'. + Není takový dokument '%1'. + + + + Workbench + + + MeshPart + Síťový díl + + + diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_de.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_de.ts index 72cd685a5..c0bedcc3a 100644 --- a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_de.ts +++ b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_de.ts @@ -1,68 +1,61 @@ - - + + CmdMeshPartMesher - - Mesh - Netz + + Mesh + Netz - - Create mesh from shape... - Netz aus Form erstellen... + Create mesh from shape... + Netz aus Form erstellen... - - Tessellate shape - Form tessellieren + Tessellate shape + Form tessellieren - - + + MeshPartGui::Tessellation - - Tessellation - Tessellierung + + Tessellation + Tessellierung - - Shapes - Formen + Shapes + Formen - - Settings - Einstellungen + Settings + Einstellungen - - Surface deviation: - Flächenabweichung: + Surface deviation: + Flächenabweichung: - - Max. edge length: - Max. Kantenlänge: + Max. edge length: + Max. Kantenlänge: - - Select a shape for meshing, first. - Wählen Sie zuerst eine Form für die Vernetzung. + + Select a shape for meshing, first. + Wählen Sie zuerst eine Form für die Vernetzung. - - No such document '%1'. - Es gibt kein Dokument "%1". + No such document '%1'. + Es gibt kein Dokument "%1". - - + + Workbench - - MeshPart - Netz-Formteil + + MeshPart + Netz-Formteil - + diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_es.qm b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_es-ES.qm similarity index 100% rename from src/Mod/MeshPart/Gui/Resources/translations/MeshPart_es.qm rename to src/Mod/MeshPart/Gui/Resources/translations/MeshPart_es-ES.qm diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_es-ES.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_es-ES.ts new file mode 100644 index 000000000..c2ce81210 --- /dev/null +++ b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_es-ES.ts @@ -0,0 +1,61 @@ + + + + + CmdMeshPartMesher + + + Mesh + Malla + + + Create mesh from shape... + Crear malla de forma ... + + + Tessellate shape + Teselar forma + + + + MeshPartGui::Tessellation + + + Tessellation + Teselado + + + Shapes + Formas + + + Settings + Opciones + + + Surface deviation: + Superficie de desviación: + + + Max. edge length: + Longitud máx. de la arista: + + + + Select a shape for meshing, first. + Seleccione primero una forma para el mallado. + + + No such document '%1'. + '%1' No es un documento. + + + + Workbench + + + MeshPart + MeshPart + + + diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_es.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_es.ts deleted file mode 100644 index 2a5f375e0..000000000 --- a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_es.ts +++ /dev/null @@ -1,68 +0,0 @@ - - - - - CmdMeshPartMesher - - - Mesh - Malla - - - - Create mesh from shape... - Crear malla de forma ... - - - - Tessellate shape - Teselar forma - - - - MeshPartGui::Tessellation - - - Tessellation - Teselado - - - - Shapes - Formas - - - - Settings - Opciones - - - - Surface deviation: - Superficie de desviación: - - - - Max. edge length: - Longitud máx. de la arista: - - - - Select a shape for meshing, first. - Seleccione primero una forma para el mallado. - - - - No such document '%1'. - '%1' No es un documento. - - - - Workbench - - - MeshPart - MeshPart - - - diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_fi.qm b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_fi.qm index 122c8bcac..0e16dc006 100644 Binary files a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_fi.qm and b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_fi.qm differ diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_fi.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_fi.ts index 0dc7a09ca..a1aba62d4 100644 --- a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_fi.ts +++ b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_fi.ts @@ -1,68 +1,61 @@ - - + + CmdMeshPartMesher - - Mesh - Mesh + + Mesh + Mesh - - Create mesh from shape... - Create mesh from shape... + Create mesh from shape... + Luo verkko muodosta... - - Tessellate shape - Tessellate shape + Tessellate shape + Geometrian pilkottu muoto - - + + MeshPartGui::Tessellation - - Tessellation - Tessellation + + Tessellation + Geometrian pilkkominen - - Shapes - Shapes + Shapes + Muodot - - Settings - Settings + Settings + Asetukset - - Surface deviation: - Surface deviation: + Surface deviation: + Pinnan poikkeama: - - Max. edge length: - Max. edge length: + Max. edge length: + Maks. reunan pituus: - - Select a shape for meshing, first. - Select a shape for meshing, first. + + Select a shape for meshing, first. + Valitse ensin muoto verkkoihin. - - No such document '%1'. - No such document '%1'. + No such document '%1'. + Ei tällainen asiakirja '%1'. - - + + Workbench - - MeshPart - VerkotaOsa + + MeshPart + VerkotaOsa - + diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_fr.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_fr.ts index f2648826d..ecdf153b1 100644 --- a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_fr.ts +++ b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_fr.ts @@ -1,68 +1,61 @@ - - + + CmdMeshPartMesher - - Mesh - Maillage + + Mesh + Maillage - - Create mesh from shape... - Créer un maillage à partir d'une forme... + Create mesh from shape... + Créer un maillage à partir d'une forme... - - Tessellate shape - Tessellation de la forme + Tessellate shape + Tessellation de la forme - - + + MeshPartGui::Tessellation - - Tessellation - Tessellation + + Tessellation + Tessellation - - Shapes - Formes + Shapes + Formes - - Settings - Réglages + Settings + Réglages - - Surface deviation: - Déviation de surface : + Surface deviation: + Déviation de surface : - - Max. edge length: - Longueur maximale d'arête : + Max. edge length: + Longueur maximale d'arête : - - Select a shape for meshing, first. - Sélectionner d'abord une forme pour le maillage. + + Select a shape for meshing, first. + Sélectionner d'abord une forme pour le maillage. - - No such document '%1'. - Aucun document '%1'. + No such document '%1'. + Aucun document '%1'. - - + + Workbench - - MeshPart - Maillage + + MeshPart + Maillage - + diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_hr.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_hr.ts index f39f3fefb..979e96929 100644 --- a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_hr.ts +++ b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_hr.ts @@ -1,68 +1,61 @@ - - + + CmdMeshPartMesher - - Mesh - Mreža + + Mesh + Mreža - - Create mesh from shape... - Stvori mrežu od oblika ... + Create mesh from shape... + Stvori mrežu od oblika ... - - Tessellate shape - Pretvori oblik u mrežu + Tessellate shape + Pretvori oblik u mrežu - - + + MeshPartGui::Tessellation - - Tessellation - Mozaik + + Tessellation + Mozaik - - Shapes - Oblici + Shapes + Oblici - - Settings - Postavke + Settings + Postavke - - Surface deviation: - Odstupanje površine: + Surface deviation: + Odstupanje površine: - - Max. edge length: - Max. duljina ruba: + Max. edge length: + Max. duljina ruba: - - Select a shape for meshing, first. - Prvo daberite oblik za umrežavanje. + + Select a shape for meshing, first. + Prvo daberite oblik za umrežavanje. - - No such document '%1'. - Ne postoji takav dokument '%1'. + No such document '%1'. + Ne postoji takav dokument '%1'. - - + + Workbench - - MeshPart - Mrežasti Oblik + + MeshPart + Mrežasti Oblik - + diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_hu.qm b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_hu.qm index 844c54d0e..1d26d99bf 100644 Binary files a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_hu.qm and b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_hu.qm differ diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_hu.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_hu.ts index 85f64b7ab..afd08ce6e 100644 --- a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_hu.ts +++ b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_hu.ts @@ -1,68 +1,61 @@ - - + + CmdMeshPartMesher - - Mesh - Hálós test + + Mesh + Hálós test - - Create mesh from shape... - Hálós test létrehozása alakzatból + Create mesh from shape... + Hálós test létrehozása alakzatból... - - Tessellate shape - Mozaik alakja + Tessellate shape + Mozaik alakja - - + + MeshPartGui::Tessellation - - Tessellation - Mozaik + + Tessellation + Mozaik - - Shapes - Alakzatok + Shapes + Alakzatok - - Settings - Beállítások + Settings + Beállítások - - Surface deviation: - Felületi eltérés: + Surface deviation: + Felületi eltérés: - - Max. edge length: - Max. él hossz: + Max. edge length: + Max. él hossz: - - Select a shape for meshing, first. - Válassza ki a formát kapcsolás előtt. + + Select a shape for meshing, first. + Válassza ki a formát kapcsolás előtt. - - No such document '%1'. - Nincs ilyen dokumentum '%1'. + No such document '%1'. + Nincs ilyen dokumentum '%1'. - - + + Workbench - - MeshPart - RészekKapcsolása + + MeshPart + RészekKapcsolása - + diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_it.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_it.ts index c09c23fd8..dc355719c 100644 --- a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_it.ts +++ b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_it.ts @@ -1,68 +1,61 @@ - - + + CmdMeshPartMesher - - Mesh - Mesh + + Mesh + Mesh - - Create mesh from shape... - Crea una mesh da una forma ... + Create mesh from shape... + Crea una mesh da una forma ... - - Tessellate shape - Forma della tassellazione + Tessellate shape + Forma della tassellazione - - + + MeshPartGui::Tessellation - - Tessellation - Tassellazione + + Tessellation + Tassellazione - - Shapes - Forme + Shapes + Forme - - Settings - Impostazioni + Settings + Impostazioni - - Surface deviation: - Deviazione di superficie: + Surface deviation: + Deviazione di superficie: - - Max. edge length: - Massima lunghezza del bordo: + Max. edge length: + Massima lunghezza del bordo: - - Select a shape for meshing, first. - Selezionare prima una forma per il meshing. + + Select a shape for meshing, first. + Selezionare prima una forma per il meshing. - - No such document '%1'. - Non esiste nessun documento '%1'. + No such document '%1'. + Non esiste nessun documento '%1'. - - + + Workbench - - MeshPart - MeshPart + + MeshPart + MeshPart - + diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_ja.qm b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_ja.qm index 93157cfaf..b4aa05f88 100644 Binary files a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_ja.qm and b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_ja.qm differ diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_ja.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_ja.ts index f3b7f272b..d5d9b3115 100644 --- a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_ja.ts +++ b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_ja.ts @@ -1,68 +1,61 @@ - - + + CmdMeshPartMesher - - Mesh - Mesh + + Mesh + Mesh - - Create mesh from shape... - Create mesh from shape... + Create mesh from shape... + 図形からメッシュを作成する... - - Tessellate shape - Tessellate shape + Tessellate shape + Tessellate shape - - + + MeshPartGui::Tessellation - - Tessellation - Tessellation + + Tessellation + Tessellation - - Shapes - Shapes + Shapes + 図形 - - Settings - Settings + Settings + 設定 - - Surface deviation: - Surface deviation: + Surface deviation: + Surface deviation: - - Max. edge length: - Max. edge length: + Max. edge length: + 最大のエッジの長さ: - - Select a shape for meshing, first. - Select a shape for meshing, first. + + Select a shape for meshing, first. + 最初にメッシングする図形を選択します。 - - No such document '%1'. - No such document '%1'. + No such document '%1'. + No such document '%1'. - - + + Workbench - - MeshPart - MeshPart + + MeshPart + MeshPart - + diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_nl.qm b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_nl.qm index a7f26a460..f6647bd3b 100644 Binary files a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_nl.qm and b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_nl.qm differ diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_nl.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_nl.ts index d605a0d1d..598f977c1 100644 --- a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_nl.ts +++ b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_nl.ts @@ -1,68 +1,61 @@ - - + + CmdMeshPartMesher - - Mesh - Mesh + + Mesh + Mesh - - Create mesh from shape... - Create mesh from shape... + Create mesh from shape... + Maak mesh van vorm... - - Tessellate shape - Tessellate shape + Tessellate shape + Tessellate shape - - + + MeshPartGui::Tessellation - - Tessellation - Tessellation + + Tessellation + Mozaïekwerk - - Shapes - Vormen + Shapes + Vormen - - Settings - Instellingen + Settings + Instellingen - - Surface deviation: - Oppervlakte-afwijking: + Surface deviation: + Oppervlakte-afwijking: - - Max. edge length: - Max. randlengte: + Max. edge length: + Max. randlengte: - - Select a shape for meshing, first. - Selecteer eerst een vorm voor rasteren + + Select a shape for meshing, first. + Selecteer eerst een vorm voor rasteren - - No such document '%1'. - Geen dergelijk document '%1'. + No such document '%1'. + Geen dergelijk document '%1'. - - + + Workbench - - MeshPart - Net-onderdeel + + MeshPart + Net-onderdeel - + diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_no.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_no.ts index d57d38dbe..b0bacbeea 100644 --- a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_no.ts +++ b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_no.ts @@ -1,68 +1,61 @@ - - + + CmdMeshPartMesher - - Mesh - Nett + + Mesh + Nett - - Create mesh from shape... - Lag nett fra figur... + Create mesh from shape... + Lag nett fra figur... - - Tessellate shape - Tessellér figur + Tessellate shape + Tessellér figur - - + + MeshPartGui::Tessellation - - Tessellation - Tessellasjon + + Tessellation + Tessellasjon - - Shapes - Figurer + Shapes + Figurer - - Settings - Innstillinger + Settings + Innstillinger - - Surface deviation: - Overflateavvik: + Surface deviation: + Overflateavvik: - - Max. edge length: - Maks kantlengde: + Max. edge length: + Maks kantlengde: - - Select a shape for meshing, first. - Velg en figur å gjøre om til nett først. + + Select a shape for meshing, first. + Velg en figur å gjøre om til nett først. - - No such document '%1'. - Ingen slike dokument '%1'. + No such document '%1'. + Ingen slike dokument '%1'. - - + + Workbench - - MeshPart - Nettkomponent + + MeshPart + Nettkomponent - + diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_pl.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_pl.ts index 64805dbca..d3f1194a7 100644 --- a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_pl.ts +++ b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_pl.ts @@ -1,68 +1,61 @@ - - + + CmdMeshPartMesher - - Mesh - siatka + + Mesh + siatka - - Create mesh from shape... - Utwórz siatkę z obwiedni... + Create mesh from shape... + Utwórz siatkę z obwiedni... - - Tessellate shape - Tesselacja obwiedni + Tessellate shape + Tesselacja obwiedni - - + + MeshPartGui::Tessellation - - Tessellation - Tesselacja + + Tessellation + Tesselacja - - Shapes - Kształty + Shapes + Kształty - - Settings - Ustawienia + Settings + Ustawienia - - Surface deviation: - Odchylenie powierzchni + Surface deviation: + Odchylenie powierzchni - - Max. edge length: - Max. Długość krawędzi: + Max. edge length: + Max. Długość krawędzi: - - Select a shape for meshing, first. - Zaznacz najpierw obwiednię w celu utworzenia siatki + + Select a shape for meshing, first. + Zaznacz najpierw obwiednię w celu utworzenia siatki - - No such document '%1'. - Brak dokumentu '%1'. + No such document '%1'. + Brak dokumentu '%1'. - - + + Workbench - - MeshPart - Składnik_Siatki + + MeshPart + Składnik_Siatki - + diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_pt.qm b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_pt-BR.qm similarity index 100% rename from src/Mod/MeshPart/Gui/Resources/translations/MeshPart_pt.qm rename to src/Mod/MeshPart/Gui/Resources/translations/MeshPart_pt-BR.qm diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_pt-BR.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_pt-BR.ts new file mode 100644 index 000000000..f5eb0a81a --- /dev/null +++ b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_pt-BR.ts @@ -0,0 +1,61 @@ + + + + + CmdMeshPartMesher + + + Mesh + Malha + + + Create mesh from shape... + Criar malha a partir de uma forma... + + + Tessellate shape + Paginar forma + + + + MeshPartGui::Tessellation + + + Tessellation + Paginação + + + Shapes + Formas + + + Settings + Configurações + + + Surface deviation: + Desvio de superfície: + + + Max. edge length: + Comprimento máximo da aresta: + + + + Select a shape for meshing, first. + Selecione primeiro uma forma para malhagem. + + + No such document '%1'. + Não há tal documento '%1'. + + + + Workbench + + + MeshPart + MeshPart + + + diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_pt.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_pt.ts deleted file mode 100644 index 572ac32de..000000000 --- a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_pt.ts +++ /dev/null @@ -1,68 +0,0 @@ - - - - - CmdMeshPartMesher - - - Mesh - Malha - - - - Create mesh from shape... - Criar malha a partir de uma forma... - - - - Tessellate shape - Paginar forma - - - - MeshPartGui::Tessellation - - - Tessellation - Paginação - - - - Shapes - Formas - - - - Settings - Configurações - - - - Surface deviation: - Desvio de superfície: - - - - Max. edge length: - Comprimento máximo da aresta: - - - - Select a shape for meshing, first. - Selecione primeiro uma forma para malhagem. - - - - No such document '%1'. - Não há tal documento '%1'. - - - - Workbench - - - MeshPart - MeshPart - - - diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_ro.qm b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_ro.qm new file mode 100644 index 000000000..5dbfe031c Binary files /dev/null and b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_ro.qm differ diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_ro.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_ro.ts new file mode 100644 index 000000000..a48c04eba --- /dev/null +++ b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_ro.ts @@ -0,0 +1,61 @@ + + + + + CmdMeshPartMesher + + + Mesh + Mesh + + + Create mesh from shape... + Create mesh from shape... + + + Tessellate shape + Tessellate shape + + + + MeshPartGui::Tessellation + + + Tessellation + Tessellation + + + Shapes + Shapes + + + Settings + Settings + + + Surface deviation: + Surface deviation: + + + Max. edge length: + Max. edge length: + + + + Select a shape for meshing, first. + Select a shape for meshing, first. + + + No such document '%1'. + No such document '%1'. + + + + Workbench + + + MeshPart + Obiect rețea 3D + + + diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_ru.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_ru.ts index bbd9421a2..c65b7918c 100644 --- a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_ru.ts +++ b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_ru.ts @@ -1,68 +1,61 @@ - - + + CmdMeshPartMesher - - Mesh - Сетка + + Mesh + Сетка - - Create mesh from shape... - Создайте сетку из фигуры... + Create mesh from shape... + Создайте сетку из фигуры... - - Tessellate shape - Мозаика из фигуры + Tessellate shape + Мозаика из фигуры - - + + MeshPartGui::Tessellation - - Tessellation - Мозаика + + Tessellation + Мозаика - - Shapes - Фигуры + Shapes + Фигуры - - Settings - Настройки + Settings + Настройки - - Surface deviation: - Отклонение поверхности: + Surface deviation: + Отклонение поверхности: - - Max. edge length: - Макс. длина ребра: + Max. edge length: + Макс. длина ребра: - - Select a shape for meshing, first. - Сначала выберите форму для слияния. + + Select a shape for meshing, first. + Сначала выберите форму для слияния. - - No such document '%1'. - Нет такого документа '%1'. + No such document '%1'. + Нет такого документа '%1'. - - + + Workbench - - MeshPart - Деталь Сетки + + MeshPart + Деталь Сетки - + diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_se.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_se.ts deleted file mode 100644 index d234e6259..000000000 --- a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_se.ts +++ /dev/null @@ -1,68 +0,0 @@ - - - - - CmdMeshPartMesher - - - Mesh - Nät - - - - Create mesh from shape... - Skapa nät från form... - - - - Tessellate shape - Tessellera form - - - - MeshPartGui::Tessellation - - - Tessellation - Tessellering - - - - Shapes - Former - - - - Settings - Inställningar - - - - Surface deviation: - Ytavvikelse: - - - - Max. edge length: - Max. kantlängd: - - - - Select a shape for meshing, first. - Markera en form för nät, först. - - - - No such document '%1'. - Inget sådant dokument '%1'. - - - - Workbench - - - MeshPart - NätDel - - - diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_sk.qm b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_sk.qm new file mode 100644 index 000000000..ef878ece1 Binary files /dev/null and b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_sk.qm differ diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_sk.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_sk.ts new file mode 100644 index 000000000..1c311b2e3 --- /dev/null +++ b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_sk.ts @@ -0,0 +1,61 @@ + + + + + CmdMeshPartMesher + + + Mesh + Mesh + + + Create mesh from shape... + Vytvoriť sieť z tvaru ... + + + Tessellate shape + Rozkúskovanie tvaru + + + + MeshPartGui::Tessellation + + + Tessellation + Rozkúskovanie + + + Shapes + Tvary + + + Settings + Nastavenia + + + Surface deviation: + Plošná odchýlka: + + + Max. edge length: + Max. dĺžka hrany: + + + + Select a shape for meshing, first. + Ako prvý vyberte tvar pre vytvorenie siete. + + + No such document '%1'. + Žiadny takýto dokument '%1'. + + + + Workbench + + + MeshPart + Sieťovaná časť + + + diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_se.qm b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_sv-SE.qm similarity index 100% rename from src/Mod/MeshPart/Gui/Resources/translations/MeshPart_se.qm rename to src/Mod/MeshPart/Gui/Resources/translations/MeshPart_sv-SE.qm diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_sv-SE.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_sv-SE.ts new file mode 100644 index 000000000..a97fbadb7 --- /dev/null +++ b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_sv-SE.ts @@ -0,0 +1,61 @@ + + + + + CmdMeshPartMesher + + + Mesh + Nät + + + Create mesh from shape... + Skapa nät från form... + + + Tessellate shape + Tessellera form + + + + MeshPartGui::Tessellation + + + Tessellation + Tessellering + + + Shapes + Former + + + Settings + Inställningar + + + Surface deviation: + Ytavvikelse: + + + Max. edge length: + Max. kantlängd: + + + + Select a shape for meshing, first. + Markera en form för nät, först. + + + No such document '%1'. + Inget sådant dokument '%1'. + + + + Workbench + + + MeshPart + NätDel + + + diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_tr.qm b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_tr.qm new file mode 100644 index 000000000..524a5a119 Binary files /dev/null and b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_tr.qm differ diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_tr.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_tr.ts new file mode 100644 index 000000000..56244c826 --- /dev/null +++ b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_tr.ts @@ -0,0 +1,61 @@ + + + + + CmdMeshPartMesher + + + Mesh + Parçacık + + + Create mesh from shape... + Parçacıktan şekil oluştur + + + Tessellate shape + Şekili mozaik döşe + + + + MeshPartGui::Tessellation + + + Tessellation + Mozaikleme + + + Shapes + Şekiller + + + Settings + Ayarlar + + + Surface deviation: + Yüzey sapması: + + + Max. edge length: + Kenar uzunluğunun en büyük değeri: + + + + Select a shape for meshing, first. + Önce parçacık haline getirmek için bir şekil seçiniz. + + + No such document '%1'. + '%1' adlı belge bulunamadı. + + + + Workbench + + + MeshPart + ParçacıkBölümü + + + diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_uk.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_uk.ts index 196de66c6..ce49b26e7 100644 --- a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_uk.ts +++ b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_uk.ts @@ -1,68 +1,61 @@ - - + + CmdMeshPartMesher - - Mesh - Сітка + + Mesh + Сітка - - Create mesh from shape... - Створення сітки з форми ... + Create mesh from shape... + Створення сітки з форми ... - - Tessellate shape - Теселяція форми + Tessellate shape + Теселяція форми - - + + MeshPartGui::Tessellation - - Tessellation - Теселяція + + Tessellation + Теселяція - - Shapes - Форми + Shapes + Форми - - Settings - Параметри + Settings + Параметри - - Surface deviation: - Поверхня відхилення: + Surface deviation: + Поверхня відхилення: - - Max. edge length: - Макс. довжина ребра: + Max. edge length: + Макс. довжина ребра: - - Select a shape for meshing, first. - Спочатку оберіть форму для злиття. + + Select a shape for meshing, first. + Спочатку оберіть форму для злиття. - - No such document '%1'. - Документ '%1' не знайдено. + No such document '%1'. + Документ '%1' не знайдено. - - + + Workbench - - MeshPart - Частина Сітки + + MeshPart + Частина Сітки - + diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_zh.qm b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_zh-CN.qm similarity index 100% rename from src/Mod/MeshPart/Gui/Resources/translations/MeshPart_zh.qm rename to src/Mod/MeshPart/Gui/Resources/translations/MeshPart_zh-CN.qm diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_zh-CN.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_zh-CN.ts new file mode 100644 index 000000000..c5551c7c5 --- /dev/null +++ b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_zh-CN.ts @@ -0,0 +1,61 @@ + + + + + CmdMeshPartMesher + + + Mesh + 网格 + + + Create mesh from shape... + 从形体创建网格... + + + Tessellate shape + 细分形状 + + + + MeshPartGui::Tessellation + + + Tessellation + 曲面细分 + + + Shapes + 形状 + + + Settings + 设置 + + + Surface deviation: + 表面偏差: + + + Max. edge length: + 最大边长: + + + + Select a shape for meshing, first. + 请先选择需要网格化的形状. + + + No such document '%1'. + 无此文档 '%1'。 + + + + Workbench + + + MeshPart + 网格零件 + + + diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_zh-TW.qm b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_zh-TW.qm new file mode 100644 index 000000000..ec05fa898 Binary files /dev/null and b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_zh-TW.qm differ diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_zh-TW.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_zh-TW.ts new file mode 100644 index 000000000..a4df0c573 --- /dev/null +++ b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_zh-TW.ts @@ -0,0 +1,61 @@ + + + + + CmdMeshPartMesher + + + Mesh + Mesh + + + Create mesh from shape... + 由造型建立網格... + + + Tessellate shape + 格紋造型 + + + + MeshPartGui::Tessellation + + + Tessellation + 鑲嵌 + + + Shapes + 形狀 + + + Settings + 設定 + + + Surface deviation: + 表面偏差: + + + Max. edge length: + 最大邊緣長度: + + + + Select a shape for meshing, first. + 請先選擇造型來產生網格 + + + No such document '%1'. + 無此檔案 '%1' + + + + Workbench + + + MeshPart + 網格零件 + + + diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_zh.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_zh.ts deleted file mode 100644 index 89439185c..000000000 --- a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_zh.ts +++ /dev/null @@ -1,68 +0,0 @@ - - - - - CmdMeshPartMesher - - - Mesh - 网格 - - - - Create mesh from shape... - 从形体创建网格... - - - - Tessellate shape - 细分形状 - - - - MeshPartGui::Tessellation - - - Tessellation - 曲面细分 - - - - Shapes - 形状 - - - - Settings - 设置 - - - - Surface deviation: - 表面偏差: - - - - Max. edge length: - 最大边长: - - - - Select a shape for meshing, first. - 请先选择需要网格化的形状. - - - - No such document '%1'. - 无此文档 '%1'。 - - - - Workbench - - - MeshPart - 网格零件 - - - diff --git a/src/Mod/OpenSCAD/OpenSCAD_rc.py b/src/Mod/OpenSCAD/OpenSCAD_rc.py index 2171e3cce..b471b8757 100644 --- a/src/Mod/OpenSCAD/OpenSCAD_rc.py +++ b/src/Mod/OpenSCAD/OpenSCAD_rc.py @@ -2,9026 +2,11340 @@ # Resource object code # -# Created: Fr. Sep 28 12:26:26 2012 -# by: The Resource Compiler for PyQt (Qt v4.6.3) +# Created: Mon Oct 29 15:19:47 2012 +# by: The Resource Compiler for PyQt (Qt v4.8.2) # # WARNING! All changes made in this file will be lost! from PyQt4 import QtCore qt_resource_data = "\ -\x00\x00\x41\x99\ +\x00\x00\x1b\x85\ \x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x3f\x3e\x0a\x3c\x75\x69\x20\x76\x65\x72\x73\x69\x6f\ -\x6e\x3d\x22\x34\x2e\x30\x22\x3e\x0a\x20\x3c\x63\x6c\x61\x73\x73\ -\x3e\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x01\xa0\x00\x00\x00\xb0\x00\x00\x0f\xa2\x00\x00\x07\x3d\ +\x00\x00\x0f\x17\x00\x39\xdf\x33\x00\x00\x01\x92\x00\x72\x97\x49\ +\x00\x00\x0f\x52\x01\x0c\x64\xae\x00\x00\x10\x12\x01\x38\xb0\x83\ +\x00\x00\x11\x8a\x01\x40\x42\x85\x00\x00\x0b\x01\x02\x1f\xd9\x48\ +\x00\x00\x03\xe2\x02\x7b\x37\xc4\x00\x00\x14\x71\x02\xbc\x05\x8e\ +\x00\x00\x0c\xad\x02\xbe\x05\x8e\x00\x00\x00\xbf\x03\x8c\x88\xc1\ +\x00\x00\x0d\x4d\x05\x08\x5c\x93\x00\x00\x03\x05\x05\x16\xa3\x95\ +\x00\x00\x13\x09\x05\x66\x9a\x34\x00\x00\x07\xdd\x05\x98\x15\x8e\ +\x00\x00\x0d\x00\x05\xcc\x9a\xd9\x00\x00\x0c\x5d\x05\xe4\x1f\xa9\ +\x00\x00\x10\x74\x05\xfb\x21\x0b\x00\x00\x06\x4f\x06\xe4\x0a\x14\ +\x00\x00\x18\x03\x06\xee\xa0\xc5\x00\x00\x09\xe9\x07\x5d\xec\x93\ +\x00\x00\x12\xaa\x07\x5d\xee\x93\x00\x00\x12\x4b\x07\xda\x68\xe7\ +\x00\x00\x0b\x78\x07\xe4\xd0\x65\x00\x00\x0d\x97\x08\x10\xb3\x89\ +\x00\x00\x05\x43\x08\x37\x4e\x99\x00\x00\x15\x1a\x08\x4d\xc0\x2e\ +\x00\x00\x19\x72\x08\x5d\x45\x73\x00\x00\x01\x12\x08\xa5\x45\x08\ +\x00\x00\x05\xf3\x08\xca\x52\x4b\x00\x00\x14\xe5\x08\xca\x72\x4b\ +\x00\x00\x0f\xda\x08\xe2\x7f\xe5\x00\x00\x13\xc7\x09\x2b\x77\x54\ +\x00\x00\x17\xbc\x09\xc0\x82\xb5\x00\x00\x06\xab\x0a\x22\x8d\xb2\ +\x00\x00\x00\x00\x0a\x2b\x47\x64\x00\x00\x0e\x94\x0a\x96\xcd\x84\ +\x00\x00\x0e\x0b\x0a\xd3\x55\x94\x00\x00\x07\x7b\x0a\xf8\x55\x94\ +\x00\x00\x07\x19\x0b\x61\x1d\x4e\x00\x00\x16\x17\x0d\x2c\x1d\x28\ +\x00\x00\x04\x3b\x0d\xaa\x21\x43\x00\x00\x13\x77\x0d\xdc\x00\x68\ +\x00\x00\x04\xe4\x0e\x02\x4e\xea\x00\x00\x19\x0d\x0e\x75\xf9\x03\ +\x00\x00\x0a\x8a\x0e\x80\x99\x15\x00\x00\x15\xbe\x0e\xc6\x00\x19\ +\x00\x00\x0c\x04\x0e\xcc\x78\xf1\x00\x00\x04\x8b\x0f\x18\x51\xc5\ +\x00\x00\x11\xcb\x0f\x68\xe5\xc7\x00\x00\x01\xfb\x0f\xd3\x1f\xf3\ +\x00\x00\x16\x97\x69\x00\x00\x19\xcb\x03\x00\x00\x00\x5c\x00\x44\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x3a\x00\x20\x00\x52\x00\x65\ +\x00\x67\x00\x69\x00\x73\x00\x74\x00\x65\x00\x72\x00\x20\x00\x66\ +\x00\x69\x00\x6c\x00\x65\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x74\x00\x6f\ +\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2e\x44\x65\x62\x75\x67\x3a\x20\x52\x65\x67\x69\x73\ +\x74\x65\x72\x20\x66\x69\x6c\x65\x74\x79\x70\x65\x20\x74\x6f\x20\ +\x70\x72\x6f\x74\x6f\x74\x79\x70\x65\x20\x69\x6d\x70\x6f\x72\x74\ +\x65\x72\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x44\x00\ +\x65\x00\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x44\x65\x66\x6c\x65\ +\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x32\ +\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x53\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x65\x6e\x65\ +\x72\x61\x6c\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x24\ +\x00\x4f\x00\x70\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x73\ +\x00\x20\x00\x67\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\ +\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\ +\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x8e\x00\x49\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x00\ +\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x63\x00\ +\x6c\x00\x61\x00\x69\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x65\x00\x72\x00\x20\x00\x63\x00\x68\x00\x69\x00\x6c\x00\x64\x00\ +\x72\x00\x65\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x74\x00\x72\x00\x65\x00\x65\x00\x20\x00\ +\x76\x00\x69\x00\x65\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x47\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x46\x65\x61\x74\x75\x72\x65\x73\x20\x77\x69\ +\x6c\x6c\x20\x63\x6c\x61\x69\x6d\x20\x74\x68\x69\x65\x72\x20\x63\ +\x68\x69\x6c\x64\x72\x65\x6e\x20\x69\x6e\x20\x74\x68\x65\x20\x74\ +\x72\x65\x65\x20\x76\x69\x65\x77\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x70\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\ +\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x4d\x00\x75\x00\ +\x6c\x00\x74\x00\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\x78\x00\ +\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ +\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\ +\x50\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\ +\x69\x00\x63\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x49\x66\x20\ +\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x4d\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\x4f\x62\x6a\x65\ +\x63\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x50\x61\x72\x61\x6d\ +\x65\x74\x72\x69\x63\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\ +\x00\x4c\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x20\x00\x4c\x00\x65\ +\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0c\x4c\x6f\x63\x61\x6c\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\x4d\x00\x61\x00\x78\x00\ +\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x09\x4d\x61\x78\x4c\x65\x6e\x67\x74\x68\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x4d\x00\x61\x00\x78\x00\ +\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x41\x00\x72\x00\x65\x00\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x4d\x61\x78\x69\x6d\ +\x75\x6d\x20\x41\x72\x65\x61\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x1c\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\ +\x00\x20\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0e\x4d\x61\x78\x69\x6d\x75\x6d\x20\ +\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x52\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\ +\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\ +\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\ +\x79\x00\x67\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x28\x00\x66\x00\ +\x6e\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x4d\x61\x78\ +\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x66\ +\x61\x63\x65\x73\x20\x66\x6f\x72\x20\x70\x6f\x6c\x79\x67\x6f\x6e\ +\x73\x20\x28\x66\x6e\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x1a\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x75\x00\x6d\x00\x20\x00\ +\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0d\x4d\x61\x78\x69\x75\x6d\x20\x4c\x65\x6e\x67\ +\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1a\x00\x4d\x00\ +\x65\x00\x73\x00\x68\x00\x20\x00\x66\x00\x61\x00\x6c\x00\x6c\x00\ +\x62\x00\x61\x00\x63\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0d\x4d\x65\x73\x68\x20\x66\x61\x6c\x6c\x62\x61\x63\x6b\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x26\x00\x4f\x00\x70\x00\x65\x00\ +\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x78\x00\ +\x65\x00\x63\x00\x75\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x13\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ \x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ -\x44\x3c\x2f\x63\x6c\x61\x73\x73\x3e\x0a\x20\x3c\x77\x69\x64\x67\ -\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x57\x69\x64\x67\x65\ -\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x47\x75\x69\x3a\x3a\x44\x69\ +\x44\x01\x03\x00\x00\x00\x1e\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\ +\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x78\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x70\x6f\x72\x74\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x1e\x00\x4f\x00\x70\x00\x65\x00\ +\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x69\x00\x6d\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x69\x6d\x70\x6f\x72\x74\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x01\x3a\x00\x54\x00\x68\x00\ +\x65\x00\x20\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\ +\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\ +\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x20\x00\x70\x00\ +\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x2c\x00\x20\x00\ +\x70\x00\x72\x00\x69\x00\x73\x00\x6d\x00\x20\x00\x6f\x00\x72\x00\ +\x20\x00\x66\x00\x72\x00\x75\x00\x73\x00\x74\x00\x75\x00\x6d\x00\ +\x2e\x00\x20\x00\x49\x00\x66\x00\x20\x00\x66\x00\x6e\x00\x20\x00\ +\x69\x00\x73\x00\x20\x00\x67\x00\x72\x00\x65\x00\x61\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\x61\x00\x6e\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x76\x00\x61\x00\x6c\x00\ +\x75\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x73\x00\ +\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\ +\x72\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\ +\x65\x00\x20\x00\x61\x00\x20\x00\x63\x00\x69\x00\x72\x00\x63\x00\ +\x75\x00\x6c\x00\x61\x00\x72\x00\x2e\x00\x20\x00\x53\x00\x65\x00\ +\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x30\x00\x20\x00\x66\x00\ +\x6f\x00\x72\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x6c\x00\x69\x00\ +\x6d\x00\x69\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x9d\x54\ +\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\ +\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x6f\x66\x20\x61\x20\ +\x70\x6f\x6c\x79\x67\x6f\x6e\x2c\x20\x70\x72\x69\x73\x6d\x20\x6f\ +\x72\x20\x66\x72\x75\x73\x74\x75\x6d\x2e\x20\x49\x66\x20\x66\x6e\ +\x20\x69\x73\x20\x67\x72\x65\x61\x74\x65\x72\x20\x74\x68\x61\x6e\ +\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x74\x68\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x69\x73\x20\x63\x6f\x6e\x73\x69\x64\ +\x65\x72\x65\x64\x20\x74\x6f\x20\x62\x65\x20\x61\x20\x63\x69\x72\ +\x63\x75\x6c\x61\x72\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\x30\x20\ +\x66\x6f\x72\x20\x6e\x6f\x20\x6c\x69\x6d\x69\x74\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x48\x00\x54\x00\x68\x00\x65\x00\x20\x00\ +\x70\x00\x61\x00\x74\x00\x68\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\ +\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x78\x00\x65\x00\ +\x63\x00\x75\x00\x74\x00\x65\x00\x61\x00\x62\x00\x6c\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x24\x54\x68\x65\x20\x70\x61\x74\ +\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x20\x65\x78\x65\x63\x75\x74\x65\x61\x62\x6c\x65\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x54\x00\x72\x00\x69\x00\x61\ +\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\ +\x00\x67\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x72\ +\x69\x61\x6e\x67\x75\x6c\x61\x74\x69\x6f\x6e\x20\x73\x65\x74\x74\ +\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ \x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ -\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x22\x3e\x0a\x20\x20\x3c\x70\ -\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x67\x65\ -\x6f\x6d\x65\x74\x72\x79\x22\x3e\x0a\x20\x20\x20\x3c\x72\x65\x63\ -\x74\x3e\x0a\x20\x20\x20\x20\x3c\x78\x3e\x30\x3c\x2f\x78\x3e\x0a\ -\x20\x20\x20\x20\x3c\x79\x3e\x30\x3c\x2f\x79\x3e\x0a\x20\x20\x20\ -\x20\x3c\x77\x69\x64\x74\x68\x3e\x35\x37\x35\x3c\x2f\x77\x69\x64\ -\x74\x68\x3e\x0a\x20\x20\x20\x20\x3c\x68\x65\x69\x67\x68\x74\x3e\ -\x36\x32\x39\x3c\x2f\x68\x65\x69\x67\x68\x74\x3e\x0a\x20\x20\x20\ -\x3c\x2f\x72\x65\x63\x74\x3e\x0a\x20\x20\x3c\x2f\x70\x72\x6f\x70\ -\x65\x72\x74\x79\x3e\x0a\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ -\x79\x20\x6e\x61\x6d\x65\x3d\x22\x77\x69\x6e\x64\x6f\x77\x54\x69\ -\x74\x6c\x65\x22\x3e\x0a\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\ -\x3e\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\ -\x73\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x3c\x2f\x70\ -\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x3c\x6c\x61\x79\x6f\ -\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x56\x42\x6f\x78\x4c\ -\x61\x79\x6f\x75\x74\x22\x3e\x0a\x20\x20\x20\x3c\x70\x72\x6f\x70\ -\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x73\x70\x61\x63\x69\ -\x6e\x67\x22\x3e\x0a\x20\x20\x20\x20\x3c\x6e\x75\x6d\x62\x65\x72\ -\x3e\x36\x3c\x2f\x6e\x75\x6d\x62\x65\x72\x3e\x0a\x20\x20\x20\x3c\ -\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x3c\x70\ -\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6d\x61\ -\x72\x67\x69\x6e\x22\x3e\x0a\x20\x20\x20\x20\x3c\x6e\x75\x6d\x62\ -\x65\x72\x3e\x39\x3c\x2f\x6e\x75\x6d\x62\x65\x72\x3e\x0a\x20\x20\ -\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ -\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x3c\x77\x69\x64\x67\ -\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x47\x72\x6f\x75\x70\ -\x42\x6f\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x72\x6f\x75\x70\ -\x42\x6f\x78\x22\x3e\x0a\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ -\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x69\x74\x6c\x65\ -\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\ -\x3e\x47\x65\x6e\x65\x72\x61\x6c\x20\x4f\x70\x65\x6e\x53\x43\x41\ -\x44\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x3c\x2f\x73\x74\x72\x69\ -\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ -\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\ -\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x56\x42\x6f\x78\x4c\x61\ -\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x76\x65\x72\x74\ -\x69\x63\x61\x6c\x4c\x61\x79\x6f\x75\x74\x5f\x32\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\ -\x3d\x22\x51\x48\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\ -\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x4c\ -\x61\x79\x6f\x75\x74\x5f\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\ -\x22\x51\x4c\x61\x62\x65\x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\x66\ -\x63\x6c\x61\x62\x65\x6c\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\ -\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x4f\x70\x65\ -\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\ -\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\ -\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\ -\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\ -\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\x50\ -\x72\x65\x66\x46\x69\x6c\x65\x43\x68\x6f\x6f\x73\x65\x72\x22\x20\ -\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\x65\x66\x66\ -\x69\x6c\x65\x63\x68\x6f\x6f\x73\x65\x72\x22\x20\x6e\x61\x74\x69\ -\x76\x65\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\ -\x61\x6d\x65\x3d\x22\x6d\x69\x6e\x69\x6d\x75\x6d\x53\x69\x7a\x65\ -\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\ -\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x77\x69\x64\x74\x68\x3e\x33\x30\x30\x3c\x2f\x77\x69\x64\ -\x74\x68\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x68\x65\x69\x67\x68\x74\x3e\x30\x3c\x2f\x68\x65\x69\x67\x68\ -\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ -\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\ -\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\ -\x6e\x67\x3e\x54\x68\x65\x20\x70\x61\x74\x68\x20\x74\x6f\x20\x74\ -\x68\x65\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\ -\x75\x74\x65\x61\x62\x6c\x65\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ -\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\ -\x22\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\ -\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x6f\x70\x65\x6e\ -\x73\x63\x61\x64\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x3c\x2f\ -\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ -\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x50\x61\x74\ -\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\ -\x6e\x67\x3e\x4d\x6f\x64\x2f\x4f\x70\x65\x6e\x53\x43\x41\x44\x3c\ -\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\ -\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\ -\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\ -\x75\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\ -\x3e\x0a\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\ -\x0a\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\ -\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x3c\x69\x74\ -\x65\x6d\x3e\x0a\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\ -\x63\x6c\x61\x73\x73\x3d\x22\x51\x47\x72\x6f\x75\x70\x42\x6f\x78\ -\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x72\x6f\x75\x70\x42\x6f\x78\ -\x5f\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\ -\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x69\x74\x6c\x65\x22\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\ -\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x69\x6d\x70\x6f\x72\x74\x3c\ -\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x3c\x2f\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x3c\ -\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x56\ -\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\ -\x22\x76\x65\x72\x74\x69\x63\x61\x6c\x4c\x61\x79\x6f\x75\x74\x22\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\ -\x61\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\ -\x22\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\ -\x61\x6c\x4c\x61\x79\x6f\x75\x74\x5f\x35\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\ -\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x43\x68\x65\ -\x63\x6b\x42\x6f\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\ -\x3a\x3a\x70\x72\x65\x66\x63\x68\x65\x63\x6b\x62\x6f\x78\x76\x69\ -\x65\x77\x74\x72\x65\x65\x70\x72\x6f\x76\x69\x64\x65\x72\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ -\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\ -\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x73\x74\x72\x69\x6e\x67\x3e\x49\x66\x20\x74\x68\x69\x73\x20\ -\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x46\x65\x61\x74\ -\x75\x72\x65\x73\x20\x77\x69\x6c\x6c\x20\x63\x6c\x61\x69\x6d\x20\ -\x74\x68\x69\x65\x72\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\x69\ -\x6e\x20\x74\x68\x65\x20\x74\x72\x65\x65\x20\x76\x69\x65\x77\x3c\ -\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ -\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\ -\x6e\x67\x3e\x55\x73\x65\x20\x56\x69\x65\x77\x50\x72\x6f\x76\x69\ -\x64\x65\x72\x20\x69\x6e\x20\x54\x72\x65\x65\x20\x56\x69\x65\x77\ -\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\ -\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x45\x6e\ -\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\ -\x72\x69\x6e\x67\x3e\x75\x73\x65\x56\x69\x65\x77\x50\x72\x6f\x76\ -\x69\x64\x65\x72\x54\x72\x65\x65\x3c\x2f\x63\x73\x74\x72\x69\x6e\ -\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ -\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\ -\x65\x3d\x22\x70\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\ -\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\ -\x2f\x4f\x70\x65\x6e\x53\x43\x41\x44\x3c\x2f\x63\x73\x74\x72\x69\ -\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\ -\x48\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\x65\ -\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x4c\x61\x79\x6f\ -\x75\x74\x5f\x36\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\ -\x69\x3a\x3a\x50\x72\x65\x66\x43\x68\x65\x63\x6b\x42\x6f\x78\x22\ -\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\x65\x66\ -\x63\x68\x65\x63\x6b\x62\x6f\x78\x6d\x75\x6c\x74\x6d\x61\x74\x72\ -\x69\x78\x66\x65\x61\x74\x75\x72\x65\x22\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\ -\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\ -\x6e\x67\x3e\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\ +\x55\x00\x73\x00\x65\x00\x20\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\ +\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\x78\x00\x20\x00\x46\x00\ +\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x16\x55\x73\x65\x20\x4d\x75\x6c\x74\x6d\x61\x74\ +\x72\x69\x78\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x3a\x00\x55\x00\x73\x00\x65\x00\x20\x00\x56\ +\x00\x69\x00\x65\x00\x77\x00\x50\x00\x72\x00\x6f\x00\x76\x00\x69\ +\x00\x64\x00\x65\x00\x72\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x54\ +\x00\x72\x00\x65\x00\x65\x00\x20\x00\x56\x00\x69\x00\x65\x00\x77\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\x65\x20\x56\x69\ +\x65\x77\x50\x72\x6f\x76\x69\x64\x65\x72\x20\x69\x6e\x20\x54\x72\ +\x65\x65\x20\x56\x69\x65\x77\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x18\x00\x61\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x72\ +\x00\x20\x00\x28\x00\x66\x00\x61\x00\x29\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x61\x6e\x67\x75\x6c\x61\x72\x20\x28\x66\x61\x29\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\x63\x00\x6f\x00\ +\x6e\x00\x76\x00\x65\x00\x78\x00\x69\x00\x74\x00\x79\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x63\x6f\x6e\x76\x65\x78\x69\x74\x79\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x64\x00\x65\x00\ +\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x64\x65\x66\x6c\x65\x63\x74\ +\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x10\x00\x6c\ +\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x4c\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x08\x6c\x6f\x63\x61\x6c\x4c\x65\x6e\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x0e\x00\x6d\x00\x61\x00\ +\x78\x00\x41\x00\x72\x00\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x07\x6d\x61\x78\x41\x72\x65\x61\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x2a\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\ +\x75\x00\x6d\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x15\x6d\x61\x78\x69\x6d\x75\x6d\ +\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x20\x73\x69\x7a\x65\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x38\x00\x6d\x00\x69\x00\x6e\x00\ +\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x61\x00\x6e\x00\x67\x00\ +\x6c\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\ +\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x6d\x69\x6e\x69\x6d\ +\x75\x6d\x20\x61\x6e\x67\x6c\x65\x20\x66\x6f\x72\x20\x61\x20\x66\ +\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x34\x00\x6d\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\x75\x00\x6d\ +\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x61\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\ +\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\ +\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x04\x00\x6d\x00\x6d\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x02\x6d\x6d\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\ +\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x28\x00\x66\x00\x73\ +\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x73\x69\x7a\x65\ +\x20\x28\x66\x73\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x02\ +\x00\xb0\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\xb0\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x12\x00\x20\x00\x50\x00\x72\x00\x65\ +\x00\x73\x00\x73\x00\x20\x00\x4f\x00\x4b\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x20\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2e\ +\x00\x41\x00\x64\x00\x64\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\ +\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x45\x00\x6c\x00\x65\ +\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x2e\x00\x2e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x17\x41\x64\x64\x20\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x20\x45\x6c\x65\x6d\x65\x6e\x74\x2e\x2e\x2e\x07\ +\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\xa6\x00\x41\x00\x64\x00\x64\x00\x20\x00\x61\x00\x6e\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x00\x20\x00\x62\x00\x79\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x65\ +\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x63\x00\x6f\ +\x00\x64\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x65\ +\x00\x78\x00\x65\x00\x63\x00\x75\x00\x74\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x62\x00\x69\ +\x00\x6e\x00\x61\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x53\x41\x64\x64\x20\x61\x6e\x20\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\x62\x79\x20\x65\x6e\x74\ +\x65\x72\x69\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x63\ +\x6f\x64\x65\x20\x61\x6e\x64\x20\x65\x78\x65\x63\x75\x74\x69\x6e\ +\x67\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x62\ +\x69\x6e\x61\x72\x79\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x18\x00\x43\x00\x6f\x00\x6c\x00\x6f\ +\x00\x72\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x6f\x6c\x6f\x72\x20\ +\x53\x68\x61\x70\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x42\x00\x43\x00\x6f\x00\x6c\x00\ +\x6f\x00\x72\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\ +\x73\x00\x20\x00\x62\x00\x79\x00\x20\x00\x76\x00\x61\x00\x6c\x00\ +\x69\x00\x64\x00\x69\x00\x74\x00\x79\x00\x20\x00\x61\x00\x6e\x00\ +\x64\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x21\x43\x6f\x6c\x6f\x72\x20\x53\x68\x61\x70\x65\ +\x73\x20\x62\x79\x20\x76\x61\x6c\x69\x64\x69\x74\x79\x20\x61\x6e\ +\x64\x20\x74\x79\x70\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x43\x00\x6f\x00\x6e\x00\ +\x76\x00\x65\x00\x72\x00\x74\x00\x20\x00\x45\x00\x64\x00\x67\x00\ +\x65\x00\x73\x00\x20\x00\x54\x00\x6f\x00\x20\x00\x46\x00\x61\x00\ +\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\ +\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\x67\x65\x73\x20\x54\x6f\x20\ +\x46\x61\x63\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x43\x00\x6f\x00\x6e\x00\x76\ +\x00\x65\x00\x72\x00\x74\x00\x20\x00\x45\x00\x64\x00\x67\x00\x65\ +\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x46\x00\x61\x00\x63\ +\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\x6f\ +\x6e\x76\x65\x72\x74\x20\x45\x64\x67\x65\x73\x20\x74\x6f\x20\x46\ +\x61\x63\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x36\x00\x43\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x20\x00\x52\x00\x65\x00\x66\x00\x69\x00\x6e\x00\ +\x65\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\ +\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1b\x43\x72\x65\x61\x74\x65\x20\x52\x65\ +\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\x65\x61\x74\x75\ +\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x22\x00\x45\x00\x78\x00\x70\x00\x61\x00\x6e\x00\ +\x64\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x11\x45\x78\x70\x61\x6e\x64\x20\x50\x6c\x61\x63\x65\x6d\x65\x6e\ +\x74\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x5e\x00\x45\x00\x78\x00\x70\x00\x61\x00\x6e\x00\ +\x64\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x70\x00\x6c\x00\ +\x61\x00\x63\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x00\ +\x20\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x77\x00\x61\x00\x72\x00\ +\x64\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\ +\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x00\x54\x00\x72\x00\ +\x65\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x45\x78\x70\ +\x61\x6e\x64\x20\x61\x6c\x6c\x20\x70\x6c\x61\x63\x65\x6d\x65\x6e\ +\x74\x73\x20\x64\x6f\x77\x6e\x77\x61\x72\x64\x73\x20\x74\x68\x65\ +\x20\x46\x65\x61\x74\x75\x72\x65\x54\x72\x65\x65\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3a\x00\ +\x50\x00\x6c\x00\x65\x00\x61\x00\x73\x00\x65\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x33\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ +\x66\x00\x69\x00\x72\x00\x73\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1d\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\ +\x20\x33\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x69\x72\x73\x74\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x10\x00\x50\x00\x72\x00\x65\x00\x73\x00\x73\x00\x20\x00\ +\x4f\x00\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x50\x72\x65\ +\x73\x73\x20\x4f\x4b\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x5a\x00\x50\x00\x72\x00\x6f\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x4e\ +\x00\x6f\x00\x74\x00\x20\x00\x79\x00\x65\x00\x74\x00\x20\x00\x43\ +\x00\x6f\x00\x64\x00\x65\x00\x64\x00\x20\x00\x77\x00\x61\x00\x69\ +\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x66\x00\x6f\x00\x72\ +\x00\x20\x00\x50\x00\x65\x00\x74\x00\x65\x00\x72\x00\x20\x00\x4c\ +\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x50\x72\x6f\x6a\ +\x65\x63\x74\x69\x6f\x6e\x20\x4e\x6f\x74\x20\x79\x65\x74\x20\x43\ +\x6f\x64\x65\x64\x20\x77\x61\x69\x74\x69\x6e\x67\x20\x66\x6f\x72\ +\x20\x50\x65\x74\x65\x72\x20\x4c\x69\x07\x00\x00\x00\x08\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x28\x00\x52\x00\x65\ +\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x53\x00\x68\x00\x61\ +\x00\x70\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\ +\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x52\x65\ +\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\x65\x61\x74\x75\ +\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x42\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\ +\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x69\x00\x72\x00\x20\x00\x43\x00\x68\x00\x69\x00\x6c\x00\ +\x64\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x21\x52\x65\x6d\x6f\x76\x65\x20\x4f\x62\x6a\x65\x63\x74\x73\x20\ +\x61\x6e\x64\x20\x74\x68\x65\x69\x72\x20\x43\x68\x69\x6c\x64\x72\ +\x65\x6e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\xb0\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\ +\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ +\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\ +\x63\x00\x68\x00\x69\x00\x6c\x00\x64\x00\x72\x00\x65\x00\x6e\x00\ +\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x61\x00\x72\x00\ +\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x72\x00\x65\x00\ +\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x65\x00\x64\x00\ +\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x6f\x00\x74\x00\ +\x68\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x58\x52\ +\x65\x6d\x6f\x76\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\ +\x61\x6c\x6c\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\x74\x68\x61\ +\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x72\x65\x66\x65\x72\x65\ +\x6e\x63\x65\x64\x20\x66\x72\x6f\x6d\x20\x6f\x74\x68\x65\x72\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1c\x00\x52\x00\x65\x00\x70\ +\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ +\x52\x65\x70\x6c\x61\x63\x65\x20\x4f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x9e\x00\x52\x00\x65\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\ +\x20\x00\x61\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\ +\x65\x00\x20\x00\x54\x00\x72\x00\x65\x00\x65\x00\x2e\x00\x20\x00\ +\x50\x00\x6c\x00\x65\x00\x61\x00\x73\x00\x65\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x6f\x00\x6c\x00\ +\x64\x00\x2c\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\x61\x00\ +\x6e\x00\x64\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x6e\x00\ +\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x52\x65\x70\x6c\x61\x63\x65\ +\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x20\x74\x68\ +\x65\x20\x46\x65\x61\x74\x75\x72\x65\x20\x54\x72\x65\x65\x2e\x20\ +\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\x20\x6f\x6c\ +\x64\x2c\x20\x6e\x65\x77\x20\x61\x6e\x64\x20\x70\x61\x72\x65\x6e\ +\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x30\x00\x52\x00\x75\x00\ +\x6e\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x4f\x00\x70\x00\ +\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x66\x00\ +\x61\x00\x69\x00\x6c\x00\x65\x00\x64\x00\x0a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x18\x52\x75\x6e\x6e\x69\x6e\x67\x20\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x20\x66\x61\x69\x6c\x65\x64\x0a\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x28\ +\x00\x55\x00\x6e\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\x65\x00\x64\x00\x20\x00\x46\x00\x75\x00\x6e\x00\x63\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x14\x55\x6e\x73\x75\x70\x70\x6f\x72\x74\x65\x64\x20\x46\x75\ +\x6e\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\ +\x00\x00\x1b\xf3\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x01\xa0\x00\x00\x00\xb0\x00\x00\x0f\xf0\x00\x00\x07\x3d\ +\x00\x00\x0f\x5d\x00\x39\xdf\x33\x00\x00\x01\x98\x00\x72\x97\x49\ +\x00\x00\x0f\x98\x01\x0c\x64\xae\x00\x00\x10\x6a\x01\x38\xb0\x83\ +\x00\x00\x11\xec\x01\x40\x42\x85\x00\x00\x0b\x17\x02\x1f\xd9\x48\ +\x00\x00\x03\xe4\x02\x7b\x37\xc4\x00\x00\x14\xf5\x02\xbc\x05\x8e\ +\x00\x00\x0c\xdd\x02\xbe\x05\x8e\x00\x00\x00\xc5\x03\x8c\x88\xc1\ +\x00\x00\x0d\x81\x05\x08\x5c\x93\x00\x00\x03\x07\x05\x16\xa3\x95\ +\x00\x00\x13\x7b\x05\x66\x9a\x34\x00\x00\x08\x11\x05\x98\x15\x8e\ +\x00\x00\x0d\x30\x05\xcc\x9a\xd9\x00\x00\x0c\x89\x05\xe4\x1f\xa9\ +\x00\x00\x10\xd0\x05\xfb\x21\x0b\x00\x00\x06\x73\x06\xe4\x0a\x14\ +\x00\x00\x18\x7d\x06\xee\xa0\xc5\x00\x00\x09\xfd\x07\x5d\xec\x93\ +\x00\x00\x13\x14\x07\x5d\xee\x93\x00\x00\x12\xad\x07\xda\x68\xe7\ +\x00\x00\x0b\x96\x07\xe4\xd0\x65\x00\x00\x0d\xd3\x08\x10\xb3\x89\ +\x00\x00\x05\x63\x08\x37\x4e\x99\x00\x00\x15\xa2\x08\x4d\xc0\x2e\ +\x00\x00\x19\xe2\x08\x5d\x45\x73\x00\x00\x01\x18\x08\xa5\x45\x08\ +\x00\x00\x06\x0d\x08\xca\x52\x4b\x00\x00\x15\x63\x08\xca\x72\x4b\ +\x00\x00\x10\x28\x08\xe2\x7f\xe5\x00\x00\x14\x49\x09\x2b\x77\x54\ +\x00\x00\x18\x36\x09\xc0\x82\xb5\x00\x00\x06\xd9\x0a\x22\x8d\xb2\ +\x00\x00\x00\x00\x0a\x2b\x47\x64\x00\x00\x0e\xd6\x0a\x96\xcd\x84\ +\x00\x00\x0e\x57\x0a\xd3\x55\x94\x00\x00\x07\xb3\x0a\xf8\x55\x94\ +\x00\x00\x07\x53\x0b\x61\x1d\x4e\x00\x00\x16\xa7\x0d\x2c\x1d\x28\ +\x00\x00\x04\x43\x0d\xaa\x21\x43\x00\x00\x13\xf3\x0d\xdc\x00\x68\ +\x00\x00\x04\xfc\x0e\x02\x4e\xea\x00\x00\x19\x6b\x0e\x75\xf9\x03\ +\x00\x00\x0a\x9e\x0e\x80\x99\x15\x00\x00\x16\x4a\x0e\xc6\x00\x19\ +\x00\x00\x0c\x34\x0e\xcc\x78\xf1\x00\x00\x04\x95\x0f\x18\x51\xc5\ +\x00\x00\x12\x2d\x0f\x68\xe5\xc7\x00\x00\x01\xfb\x0f\xd3\x1f\xf3\ +\x00\x00\x17\x27\x69\x00\x00\x1a\x39\x03\x00\x00\x00\x62\x00\x44\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x3a\x00\x20\x00\x52\x00\x65\ +\x00\x67\x00\x69\x00\x73\x00\x74\x00\x72\x00\x69\x00\x72\x00\x61\ +\x00\x6a\x00\x20\x00\x74\x00\x69\x00\x70\x00\x20\x00\x64\x00\x61\ +\x00\x74\x00\x6f\x00\x74\x00\x65\x00\x6b\x00\x65\x00\x20\x00\x7a\ +\x00\x61\x00\x20\x00\x75\x00\x76\x00\x6f\x00\x7a\x00\x20\x00\x70\ +\x00\x72\x00\x6f\x00\x74\x00\x6f\x00\x74\x00\x69\x00\x70\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x44\x65\x62\x75\x67\x3a\ +\x20\x52\x65\x67\x69\x73\x74\x65\x72\x20\x66\x69\x6c\x65\x74\x79\ +\x70\x65\x20\x74\x6f\x20\x70\x72\x6f\x74\x6f\x74\x79\x70\x65\x20\ +\x69\x6d\x70\x6f\x72\x74\x65\x72\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x14\x00\x44\x00\x65\x00\x66\x00\x6c\x00\x65\x00\x6b\x00\ +\x73\x00\x69\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x44\x65\x66\x6c\x65\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x32\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x72\ +\x00\x61\x00\x6c\x00\x6e\x00\x65\x00\x20\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x6f\x00\x70\ +\x00\x63\x00\x69\x00\x6a\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x19\x47\x65\x6e\x65\x72\x61\x6c\x20\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x1e\x00\x47\x00\x6c\x00\x61\x00\x76\x00\x6e\ +\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x76\ +\x00\x6b\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\ +\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x90\x00\x41\x00\x6b\x00\x6f\x00\ +\x20\x00\x6a\x00\x65\x00\x20\x00\x6f\x00\x7a\x00\x6e\x00\x61\x01\ +\x0d\x00\x65\x00\x6e\x00\x6f\x00\x2c\x00\x20\x00\x73\x00\x76\x00\ +\x6f\x00\x6a\x00\x73\x00\x74\x00\x76\x00\x61\x00\x20\x01\x07\x00\ +\x65\x00\x20\x00\x73\x00\x61\x00\x64\x00\x72\x01\x7e\x00\x61\x00\ +\x76\x00\x61\x00\x74\x00\x69\x00\x20\x00\x6e\x00\x6a\x00\x69\x00\ +\x68\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x74\x00\ +\x6f\x00\x6d\x00\x6b\x00\x65\x00\x20\x00\x75\x00\x20\x00\x70\x00\ +\x72\x00\x69\x00\x6b\x00\x61\x00\x7a\x00\x75\x00\x20\x00\x73\x00\ +\x74\x00\x61\x00\x62\x00\x6c\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x47\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\ +\x65\x63\x6b\x65\x64\x2c\x20\x46\x65\x61\x74\x75\x72\x65\x73\x20\ +\x77\x69\x6c\x6c\x20\x63\x6c\x61\x69\x6d\x20\x74\x68\x69\x65\x72\ +\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\x69\x6e\x20\x74\x68\x65\ +\x20\x74\x72\x65\x65\x20\x76\x69\x65\x77\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x70\x00\x41\x00\x6b\x00\x6f\x00\x20\x00\x6a\x00\ +\x65\x00\x20\x00\x6f\x00\x7a\x00\x6e\x00\x61\x01\x0d\x00\x65\x00\ +\x6e\x00\x6f\x00\x2c\x00\x20\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\ +\x69\x00\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\x78\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x01\x07\x00\ +\x65\x00\x20\x00\x62\x00\x69\x00\x74\x00\x69\x00\x20\x00\x70\x00\ +\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x61\x00\x72\x00\ +\x73\x00\x6b\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x49\ +\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\ +\x64\x2c\x20\x4d\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\x4f\x62\ +\x6a\x65\x63\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x50\x61\x72\ +\x61\x6d\x65\x74\x72\x69\x63\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x1e\x00\x4c\x00\x6f\x00\x6b\x00\x61\x00\x6c\x00\x6e\x00\x61\ +\x00\x20\x00\x64\x00\x75\x00\x6c\x00\x6a\x00\x69\x00\x6e\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x4c\x6f\x63\x61\x6c\x20\ +\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x14\x00\x4d\x00\x61\x00\x78\x00\x44\x00\x75\x00\x6c\x00\x6a\x00\ +\x69\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x4d\ +\x61\x78\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x26\x00\x4d\x00\x61\x00\x6b\x00\x73\x00\x69\x00\x6d\x00\ +\x61\x00\x6c\x00\x6e\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x76\x00\ +\x72\x01\x61\x00\x69\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0c\x4d\x61\x78\x69\x6d\x75\x6d\x20\x41\x72\x65\x61\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x24\x00\x4d\x00\x61\x00\x6b\ +\x00\x73\x00\x69\x00\x6d\x00\x61\x00\x6c\x00\x6e\x00\x61\x00\x20\ +\x00\x64\x00\x75\x00\x6c\x00\x6a\x00\x69\x00\x6e\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0e\x4d\x61\x78\x69\x6d\x75\x6d\x20\ +\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x4c\x00\x4d\x00\x61\x00\x6b\x00\x73\x00\x69\x00\x6d\x00\x61\x00\ +\x6c\x00\x6e\x00\x69\x00\x20\x00\x62\x00\x72\x00\x6f\x00\x6a\x00\ +\x20\x00\x70\x00\x6c\x00\x6f\x00\x68\x00\x61\x00\x20\x00\x7a\x00\ +\x61\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x69\x00\x67\x00\x6f\x00\ +\x6e\x00\x65\x00\x20\x00\x28\x00\x66\x00\x6e\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x29\x4d\x61\x78\x69\x6d\x75\x6d\x20\x6e\ +\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x66\ +\x6f\x72\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x73\x20\x28\x66\x6e\x29\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x24\x00\x4d\x00\x61\x00\ +\x6b\x00\x73\x00\x69\x00\x6d\x00\x61\x00\x6c\x00\x6e\x00\x61\x00\ +\x20\x00\x64\x00\x75\x00\x6c\x00\x6a\x00\x69\x00\x6e\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x61\x78\x69\x75\x6d\x20\ +\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x24\x00\x4d\x00\x65\x00\x73\x00\x68\x00\x20\x00\x72\x00\x65\x00\ +\x7a\x00\x65\x00\x72\x00\x76\x00\x6e\x00\x69\x00\x20\x00\x70\x00\ +\x6c\x00\x61\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\ +\x65\x73\x68\x20\x66\x61\x6c\x6c\x62\x61\x63\x6b\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x32\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\ +\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x69\x00\x7a\x00\x76\x00\ +\x72\x01\x61\x00\x6e\x00\x61\x00\x20\x00\x64\x00\x61\x00\x74\x00\ +\x6f\x00\x74\x00\x65\x00\x6b\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x13\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\ +\x75\x74\x61\x62\x6c\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x1c\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\ +\x44\x00\x20\x00\x69\x00\x7a\x00\x76\x00\x6f\x00\x7a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\ +\x65\x78\x70\x6f\x72\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x1a\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\ +\x44\x00\x20\x00\x75\x00\x76\x00\x6f\x00\x7a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x69\x6d\ +\x70\x6f\x72\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x01\x1a\x00\ +\x4d\x00\x61\x00\x6b\x00\x73\x00\x69\x00\x6d\x00\x61\x00\x6c\x00\ +\x6e\x00\x69\x00\x20\x00\x62\x00\x72\x00\x6f\x00\x6a\x00\x20\x00\ +\x70\x00\x6c\x00\x6f\x00\x68\x00\x61\x00\x20\x00\x6e\x00\x61\x00\ +\x20\x00\x70\x00\x6f\x00\x6c\x00\x69\x00\x67\x00\x6f\x00\x6e\x00\ +\x75\x00\x2c\x00\x20\x00\x70\x00\x72\x00\x69\x00\x7a\x00\x6d\x00\ +\x69\x00\x20\x00\x69\x00\x20\x00\x73\x00\x6c\x00\x69\x01\x0d\x00\ +\x6e\x00\x6f\x00\x2e\x00\x20\x00\x41\x00\x6b\x00\x6f\x00\x20\x00\ +\x6a\x00\x65\x00\x20\x00\x66\x00\x6e\x00\x20\x00\x76\x00\x65\x01\ +\x07\x00\x69\x00\x20\x00\x6f\x00\x64\x00\x20\x00\x6f\x00\x76\x00\ +\x65\x00\x20\x00\x76\x00\x72\x00\x69\x00\x6a\x00\x65\x00\x64\x00\ +\x6e\x00\x6f\x00\x73\x00\x74\x00\x69\x00\x2c\x00\x20\x00\x73\x00\ +\x6d\x00\x61\x00\x74\x00\x72\x00\x61\x00\x20\x00\x73\x00\x65\x00\ +\x20\x00\x64\x00\x61\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x6f\x00\x62\x00\ +\x6c\x00\x69\x00\x2e\x00\x20\x00\x4f\x00\x20\x00\x6f\x00\x7a\x00\ +\x6e\x00\x61\x01\x0d\x00\x61\x00\x76\x00\x61\x00\x20\x00\x64\x00\ +\x61\x00\x20\x00\x6e\x00\x65\x00\x6d\x00\x61\x00\x20\x00\x6c\x00\ +\x69\x00\x6d\x00\x69\x00\x74\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x9d\x54\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6e\ +\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x6f\ +\x66\x20\x61\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x2c\x20\x70\x72\x69\ +\x73\x6d\x20\x6f\x72\x20\x66\x72\x75\x73\x74\x75\x6d\x2e\x20\x49\ +\x66\x20\x66\x6e\x20\x69\x73\x20\x67\x72\x65\x61\x74\x65\x72\x20\ +\x74\x68\x61\x6e\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\ +\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x73\x20\x63\x6f\ +\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x74\x6f\x20\x62\x65\x20\x61\ +\x20\x63\x69\x72\x63\x75\x6c\x61\x72\x2e\x20\x53\x65\x74\x20\x74\ +\x6f\x20\x30\x20\x66\x6f\x72\x20\x6e\x6f\x20\x6c\x69\x6d\x69\x74\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x48\x00\x50\x00\x75\x00\ +\x74\x00\x61\x00\x6e\x00\x6a\x00\x61\x00\x20\x00\x64\x00\x6f\x00\ +\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\ +\x44\x00\x20\x00\x69\x00\x7a\x00\x76\x00\x72\x01\x61\x00\x6e\x00\ +\x65\x00\x20\x00\x64\x00\x61\x00\x74\x00\x6f\x00\x74\x00\x65\x00\ +\x6b\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x54\x68\x65\ +\x20\x70\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\x65\x61\x62\x6c\ +\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2e\x00\x4f\x00\x70\ +\x00\x63\x00\x69\x00\x6a\x00\x65\x00\x20\x00\x73\x00\x74\x00\x76\ +\x00\x61\x00\x72\x00\x61\x00\x6e\x00\x6a\x00\x61\x00\x20\x00\x4d\ +\x00\x65\x00\x73\x00\x68\x00\x2d\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x16\x54\x72\x69\x61\x6e\x67\x75\x6c\x61\x74\x69\x6f\ +\x6e\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x34\x00\x4b\x00\x6f\x00\x72\x00\x69\x00\x73\x00\ +\x74\x00\x69\x00\x20\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\x69\x00\ +\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\x78\x00\x20\x00\x6f\x00\ +\x70\x00\x63\x00\x69\x00\x6a\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x16\x55\x73\x65\x20\x4d\x75\x6c\x74\x6d\x61\x74\x72\x69\ +\x78\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x4c\x00\x6b\x00\x6f\x00\x72\x00\x69\x00\x73\x00\x74\ +\x00\x69\x00\x20\x00\x76\x00\x69\x00\x65\x00\x77\x00\x20\x00\x70\ +\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x64\x00\x65\x00\x72\x00\x20\ +\x00\x75\x00\x20\x00\x70\x00\x72\x00\x69\x00\x6b\x00\x61\x00\x7a\ +\x00\x75\x00\x20\x00\x73\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\x65\x20\x56\x69\ +\x65\x77\x50\x72\x6f\x76\x69\x64\x65\x72\x20\x69\x6e\x20\x54\x72\ +\x65\x65\x20\x56\x69\x65\x77\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x14\x00\x6b\x00\x75\x00\x74\x00\x6e\x00\x69\x00\x20\x00\x28\ +\x00\x66\x00\x61\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x61\x6e\x67\x75\x6c\x61\x72\x20\x28\x66\x61\x29\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x16\x00\x6b\x00\x6f\x00\x6e\x00\x76\x00\ +\x65\x00\x6b\x00\x73\x00\x6e\x00\x6f\x00\x73\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x63\x6f\x6e\x76\x65\x78\x69\x74\x79\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x64\x00\x65\x00\ +\x66\x00\x6c\x00\x65\x00\x6b\x00\x73\x00\x69\x00\x6a\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x64\x65\x66\x6c\x65\x63\x74\ +\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x6c\ +\x00\x6f\x00\x6b\x00\x44\x00\x75\x00\x6c\x00\x6a\x00\x69\x00\x6e\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x6c\x6f\x63\x61\ +\x6c\x4c\x65\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x16\x00\ +\x6d\x00\x61\x00\x78\x00\x50\x00\x6f\x00\x76\x00\x72\x01\x61\x00\ +\x69\x00\x6e\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x6d\ +\x61\x78\x41\x72\x65\x61\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x3a\x00\x4d\x00\x61\x00\x6b\x00\x73\x00\x69\x00\x6d\x00\x61\x00\ +\x6c\x00\x6e\x00\x61\x00\x20\x00\x76\x00\x65\x00\x6c\x00\x69\x01\ +\x0d\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x66\x00\x72\x00\x61\x00\ +\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x15\x6d\x61\x78\x69\x6d\x75\x6d\x20\x66\x72\x61\ +\x67\x6d\x65\x6e\x74\x20\x73\x69\x7a\x65\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x2e\x00\x4d\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\ +\x61\x00\x6c\x00\x6e\x00\x69\x00\x20\x00\x6b\x00\x75\x00\x74\x00\ +\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x6d\x69\x6e\ +\x69\x6d\x75\x6d\x20\x61\x6e\x67\x6c\x65\x20\x66\x6f\x72\x20\x61\ +\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x38\x00\x6d\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\x61\ +\x00\x6c\x00\x6e\x00\x61\x00\x20\x00\x76\x00\x65\x00\x6c\x00\x69\ +\x01\x0d\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x66\x00\x72\x00\x61\ +\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1a\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x73\x69\ +\x7a\x65\x20\x6f\x66\x20\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x04\x00\x6d\x00\x6d\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x02\x6d\x6d\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x1a\x00\x76\x00\x65\x00\x6c\x00\x69\x01\x0d\ +\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x28\x00\x66\x00\x6e\x00\x29\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x73\x69\x7a\x65\x20\x28\ +\x66\x73\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x02\x00\xb0\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\xb0\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x1c\x00\x20\x00\x50\x00\x72\x00\x69\x00\x74\ +\x00\x69\x00\x73\x00\x6e\x00\x69\x00\x74\x00\x65\x00\x20\x00\x4f\ +\x00\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x20\x50\x72\x65\ +\x73\x73\x20\x4f\x4b\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x32\x00\x44\x00\x6f\x00\x64\x00\x61\ +\x00\x6a\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\ +\x00\x41\x00\x44\x00\x20\x00\x45\x00\x6c\x00\x65\x00\x6d\x00\x65\ +\x00\x6e\x00\x74\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x17\x41\x64\x64\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x20\x45\x6c\x65\x6d\x65\x6e\x74\x2e\x2e\x2e\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\xac\x00\x44\ +\x00\x6f\x00\x64\x00\x61\x00\x6a\x00\x20\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x6c\ +\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x75\x00\x6e\ +\x00\x6f\x01\x61\x00\x65\x00\x6e\x00\x6a\x00\x65\x00\x6d\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x6b\x00\x6f\x00\x64\x00\x61\x00\x20\x00\x69\x00\x20\ +\x00\x70\x00\x6f\x00\x6b\x00\x72\x00\x65\x00\x74\x00\x61\x00\x6e\ +\x00\x6a\x00\x65\x00\x6d\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\ +\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x62\x00\x69\x00\x6e\ +\x00\x61\x00\x72\x00\x6e\x00\x65\x00\x20\x00\x64\x00\x61\x00\x74\ +\x00\x6f\x00\x74\x00\x65\x00\x6b\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x53\x41\x64\x64\x20\x61\x6e\x20\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\x62\x79\x20\x65\ +\x6e\x74\x65\x72\x69\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x20\x63\x6f\x64\x65\x20\x61\x6e\x64\x20\x65\x78\x65\x63\x75\x74\ +\x69\x6e\x67\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x20\x62\x69\x6e\x61\x72\x79\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x4f\x00\x62\x00\x6f\ +\x00\x6a\x00\x69\x00\x20\x00\x6f\x00\x62\x00\x6c\x00\x69\x00\x6b\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x6f\x6c\x6f\ +\x72\x20\x53\x68\x61\x70\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x42\x00\x4f\x00\x62\x00\ +\x6f\x00\x6a\x00\x69\x00\x20\x00\x6f\x00\x62\x00\x6c\x00\x69\x00\ +\x6b\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x20\x00\x74\x00\x69\x00\ +\x70\x00\x75\x00\x20\x00\x69\x00\x20\x00\x76\x00\x61\x00\x6c\x00\ +\x6a\x00\x61\x00\x6e\x00\x6f\x00\x73\x00\x74\x00\x69\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x21\x43\x6f\x6c\x6f\x72\x20\x53\x68\x61\ +\x70\x65\x73\x20\x62\x79\x20\x76\x61\x6c\x69\x64\x69\x74\x79\x20\ +\x61\x6e\x64\x20\x74\x79\x70\x65\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x34\x00\x50\x00\x72\x00\ +\x65\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x69\x00\x20\x00\x72\x00\ +\x75\x00\x62\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x75\x00\x20\x00\ +\x70\x00\x6f\x00\x76\x00\x72\x01\x61\x00\x69\x00\x6e\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\ +\x20\x45\x64\x67\x65\x73\x20\x54\x6f\x20\x46\x61\x63\x65\x73\x07\ +\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x34\x00\x50\x00\x72\x00\x65\x00\x74\x00\x76\x00\x6f\x00\x72\ +\x00\x69\x00\x20\x00\x72\x00\x75\x00\x62\x00\x6f\x00\x76\x00\x65\ +\x00\x20\x00\x75\x00\x20\x00\x70\x00\x6f\x00\x76\x00\x72\x01\x61\ +\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\ +\x43\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\x67\x65\x73\x20\x74\x6f\ +\x20\x46\x61\x63\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x40\x00\x4b\x00\x72\x00\x65\x00\ +\x69\x00\x72\x00\x61\x00\x6a\x00\x20\x00\x22\x00\x49\x00\x7a\x00\ +\x67\x00\x6c\x00\x61\x00\x64\x00\x69\x00\x20\x00\x4f\x00\x62\x00\ +\x6c\x00\x69\x00\x6b\x00\x22\x00\x20\x00\x73\x00\x76\x00\x6f\x00\ +\x6a\x00\x73\x00\x74\x00\x76\x00\x6f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1b\x43\x72\x65\x61\x74\x65\x20\x52\x65\x66\x69\x6e\x65\ +\x20\x53\x68\x61\x70\x65\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x28\x00\x50\x00\x72\x00\x6f\x01\x61\x00\x69\x00\x72\x00\x69\x00\ +\x20\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x76\x00\x6c\x00\ +\x6a\x00\x61\x00\x6e\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x11\x45\x78\x70\x61\x6e\x64\x20\x50\x6c\x61\x63\x65\x6d\ +\x65\x6e\x74\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x60\x00\x50\x00\x72\x00\x6f\x01\x61\x00\ +\x69\x00\x72\x00\x69\x00\x20\x00\x73\x00\x76\x00\x61\x00\x20\x00\ +\x70\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x76\x00\x6c\x00\x6a\x00\ +\x61\x00\x6e\x00\x6a\x00\x61\x00\x20\x00\x6e\x00\x69\x01\x7e\x00\ +\x65\x00\x20\x00\x75\x00\x20\x00\x73\x00\x74\x00\x61\x00\x62\x00\ +\x6c\x00\x75\x00\x20\x00\x73\x00\x76\x00\x6f\x00\x6a\x00\x73\x00\ +\x74\x00\x61\x00\x76\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2f\x45\x78\x70\x61\x6e\x64\x20\x61\x6c\x6c\x20\x70\x6c\x61\x63\ +\x65\x6d\x65\x6e\x74\x73\x20\x64\x6f\x77\x6e\x77\x61\x72\x64\x73\ +\x20\x74\x68\x65\x20\x46\x65\x61\x74\x75\x72\x65\x54\x72\x65\x65\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x34\x00\x4d\x00\x6f\x00\x6c\x00\x69\x00\x6d\x00\x20\x00\ +\x6f\x00\x64\x00\x61\x00\x62\x00\x65\x00\x72\x00\x69\x00\x74\x00\ +\x65\x00\x20\x00\x74\x00\x72\x00\x69\x00\x20\x00\x6f\x00\x62\x00\ +\x6c\x00\x69\x00\x6b\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1d\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\x20\x33\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x69\x72\x73\x74\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x1a\x00\x50\x00\x72\x00\x69\x00\x74\x00\x69\x00\x73\x00\x6e\x00\ +\x69\x00\x74\x00\x65\x00\x20\x00\x4f\x00\x4b\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x5e\ +\x00\x50\x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x6b\x00\x63\x00\x69\ +\x00\x6a\x00\x61\x00\x20\x00\x6e\x00\x69\x00\x6a\x00\x65\x00\x20\ +\x00\x6a\x00\x6f\x01\x61\x00\x20\x00\x69\x00\x73\x00\x6b\x00\x6f\ +\x00\x64\x00\x69\x00\x72\x00\x61\x00\x6e\x00\x61\x00\x20\x01\x0d\ +\x00\x65\x00\x6b\x00\x61\x00\x20\x00\x73\x00\x65\x00\x20\x00\x50\ +\x00\x65\x00\x74\x00\x65\x00\x72\x00\x20\x00\x4c\x00\x69\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x2d\x50\x72\x6f\x6a\x65\x63\x74\x69\ +\x6f\x6e\x20\x4e\x6f\x74\x20\x79\x65\x74\x20\x43\x6f\x64\x65\x64\ +\x20\x77\x61\x69\x74\x69\x6e\x67\x20\x66\x6f\x72\x20\x50\x65\x74\ +\x65\x72\x20\x4c\x69\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x49\x00\x7a\x00\x67\x00\x6c\ +\x00\x61\x00\x64\x00\x69\x00\x20\x00\x6f\x00\x62\x00\x6c\x00\x69\ +\x00\x6b\x00\x20\x00\x73\x00\x76\x00\x6f\x00\x6a\x00\x73\x00\x74\ +\x00\x76\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x52\x65\ +\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\x65\x61\x74\x75\ +\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x42\x00\x49\x00\x7a\x00\x62\x00\x72\x00\x69\x01\ +\x61\x00\x69\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x65\x00\x20\x00\x69\x00\x20\x00\x6e\x00\x6a\x00\x69\x00\ +\x68\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x74\x00\ +\x6f\x00\x6d\x00\x6b\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x21\x52\x65\x6d\x6f\x76\x65\x20\x4f\x62\x6a\x65\x63\x74\x73\x20\ +\x61\x6e\x64\x20\x74\x68\x65\x69\x72\x20\x43\x68\x69\x6c\x64\x72\ +\x65\x6e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x9a\x00\x42\x00\x72\x00\x69\x01\x61\x00\x65\x00\ +\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x72\x00\x61\x00\x6e\x00\ +\x69\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x20\x00\x69\x00\x20\x00\x73\x00\x76\x00\x75\x00\x20\x00\x64\x00\ +\x6a\x00\x65\x00\x63\x00\x75\x00\x20\x00\x6b\x00\x6f\x00\x6a\x00\ +\x61\x00\x20\x00\x6e\x00\x69\x00\x73\x00\x75\x00\x20\x00\x72\x00\ +\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x69\x00\ +\x72\x00\x61\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\x64\x00\x20\x00\ +\x6f\x00\x73\x00\x74\x00\x61\x00\x6c\x00\x69\x00\x68\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x61\x00\x74\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x58\x52\x65\x6d\x6f\x76\x65\x73\ +\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\x61\x6c\x6c\x20\x63\x68\ +\x69\x6c\x64\x72\x65\x6e\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\ +\x6e\x6f\x74\x20\x72\x65\x66\x65\x72\x65\x6e\x63\x65\x64\x20\x66\ +\x72\x6f\x6d\x20\x6f\x74\x68\x65\x72\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x1c\x00\x5a\x00\x61\x00\x6d\x00\x6a\x00\x65\x00\x6e\ +\x00\x69\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x52\x65\x70\x6c\x61\x63\ +\x65\x20\x4f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x82\x00\x5a\x00\x61\x00\ +\x6d\x00\x6a\x00\x65\x00\x6e\x00\x69\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x75\x00\x20\x00\x73\x00\ +\x74\x00\x61\x00\x62\x00\x6c\x00\x75\x00\x2e\x00\x20\x00\x4f\x00\ +\x64\x00\x61\x00\x62\x00\x65\x00\x72\x00\x69\x00\x74\x00\x65\x00\ +\x20\x00\x73\x00\x74\x00\x61\x00\x72\x00\x69\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x2c\x00\x20\x00\x6e\x00\ +\x6f\x00\x76\x00\x69\x00\x20\x00\x69\x00\x20\x00\x72\x00\x6f\x00\ +\x64\x00\x69\x00\x74\x00\x65\x00\x6c\x00\x6a\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4f\x52\x65\x70\x6c\x61\x63\x65\x20\x61\ +\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x20\x74\x68\x65\x20\ +\x46\x65\x61\x74\x75\x72\x65\x20\x54\x72\x65\x65\x2e\x20\x50\x6c\ +\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\x20\x6f\x6c\x64\x2c\ +\x20\x6e\x65\x77\x20\x61\x6e\x64\x20\x70\x61\x72\x65\x6e\x74\x20\ +\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x42\x00\x50\x00\x6f\x00\x6b\x00\ +\x72\x00\x65\x00\x74\x00\x61\x00\x6e\x00\x6a\x00\x65\x00\x20\x00\ +\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\ +\x20\x00\x6e\x00\x69\x00\x6a\x00\x65\x00\x20\x00\x75\x00\x73\x00\ +\x70\x00\x6a\x00\x65\x00\x6c\x00\x6f\x00\x20\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x18\x52\x75\x6e\x6e\x69\x6e\x67\x20\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x20\x66\x61\x69\x6c\x65\x64\x0a\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x26\ +\x00\x4e\x00\x65\x00\x70\x00\x6f\x00\x64\x00\x72\x01\x7e\x00\x61\ +\x00\x6e\x00\x61\x00\x20\x00\x66\x00\x75\x00\x6e\x00\x6b\x00\x63\ +\x00\x69\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\ +\x55\x6e\x73\x75\x70\x70\x6f\x72\x74\x65\x64\x20\x46\x75\x6e\x63\ +\x74\x69\x6f\x6e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\ +\x00\x00\x1c\xcf\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x01\xa0\x00\x00\x00\xb0\x00\x00\x10\x2c\x00\x00\x07\x3d\ +\x00\x00\x0f\x9b\x00\x39\xdf\x33\x00\x00\x01\xb6\x00\x72\x97\x49\ +\x00\x00\x0f\xd6\x01\x0c\x64\xae\x00\x00\x10\xa4\x01\x38\xb0\x83\ +\x00\x00\x12\x3c\x01\x40\x42\x85\x00\x00\x0b\x75\x02\x1f\xd9\x48\ +\x00\x00\x04\x10\x02\x7b\x37\xc4\x00\x00\x15\x61\x02\xbc\x05\x8e\ +\x00\x00\x0d\x15\x02\xbe\x05\x8e\x00\x00\x00\xd9\x03\x8c\x88\xc1\ +\x00\x00\x0d\xb1\x05\x08\x5c\x93\x00\x00\x03\x27\x05\x16\xa3\x95\ +\x00\x00\x13\xd9\x05\x66\x9a\x34\x00\x00\x08\x3d\x05\x98\x15\x8e\ +\x00\x00\x0d\x64\x05\xcc\x9a\xd9\x00\x00\x0c\xc1\x05\xe4\x1f\xa9\ +\x00\x00\x11\x1a\x05\xfb\x21\x0b\x00\x00\x06\x99\x06\xe4\x0a\x14\ +\x00\x00\x19\x3d\x06\xee\xa0\xc5\x00\x00\x0a\x49\x07\x5d\xec\x93\ +\x00\x00\x13\x72\x07\x5d\xee\x93\x00\x00\x13\x0b\x07\xda\x68\xe7\ +\x00\x00\x0b\xde\x07\xe4\xd0\x65\x00\x00\x0d\xfb\x08\x10\xb3\x89\ +\x00\x00\x05\x81\x08\x37\x4e\x99\x00\x00\x16\x14\x08\x4d\xc0\x2e\ +\x00\x00\x1a\xbc\x08\x5d\x45\x73\x00\x00\x01\x28\x08\xa5\x45\x08\ +\x00\x00\x06\x33\x08\xca\x52\x4b\x00\x00\x15\xd7\x08\xca\x72\x4b\ +\x00\x00\x10\x64\x08\xe2\x7f\xe5\x00\x00\x14\xb3\x09\x2b\x77\x54\ +\x00\x00\x18\xea\x09\xc0\x82\xb5\x00\x00\x06\xfb\x0a\x22\x8d\xb2\ +\x00\x00\x00\x00\x0a\x2b\x47\x64\x00\x00\x0f\x10\x0a\x96\xcd\x84\ +\x00\x00\x0e\x81\x0a\xd3\x55\x94\x00\x00\x07\xd3\x0a\xf8\x55\x94\ +\x00\x00\x07\x69\x0b\x61\x1d\x4e\x00\x00\x17\x21\x0d\x2c\x1d\x28\ +\x00\x00\x04\x73\x0d\xaa\x21\x43\x00\x00\x14\x5f\x0d\xdc\x00\x68\ +\x00\x00\x05\x1a\x0e\x02\x4e\xea\x00\x00\x1a\x4b\x0e\x75\xf9\x03\ +\x00\x00\x0a\xf0\x0e\x80\x99\x15\x00\x00\x16\xc8\x0e\xc6\x00\x19\ +\x00\x00\x0c\x68\x0e\xcc\x78\xf1\x00\x00\x04\xc3\x0f\x18\x51\xc5\ +\x00\x00\x12\x81\x0f\x68\xe5\xc7\x00\x00\x02\x23\x0f\xd3\x1f\xf3\ +\x00\x00\x17\xa5\x69\x00\x00\x1b\x15\x03\x00\x00\x00\x76\x00\x44\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x3a\x00\x20\x00\x52\x00\x65\ +\x00\x67\x00\x69\x00\x73\x00\x74\x00\x72\x00\x61\x00\x72\x00\x20\ +\x00\x74\x00\x69\x00\x70\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x61\x00\x72\x00\x71\x00\x75\x00\x69\x00\x76\x00\x6f\x00\x20\ +\x00\x6e\x00\x6f\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\x61\x00\x64\x00\x6f\x00\x72\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x74\x00\xf3\x00\x74\x00\x69\ +\x00\x70\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x44\x65\ +\x62\x75\x67\x3a\x20\x52\x65\x67\x69\x73\x74\x65\x72\x20\x66\x69\ +\x6c\x65\x74\x79\x70\x65\x20\x74\x6f\x20\x70\x72\x6f\x74\x6f\x74\ +\x79\x70\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x72\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x10\x00\x44\x00\x65\x00\x66\x00\x6c\x00\ +\x65\x00\x78\x00\xe3\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x44\x65\x66\x6c\x65\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x40\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\ +\x00\x67\x00\x75\x00\x72\x00\x61\x00\xe7\x00\xf5\x00\x65\x00\x73\ +\x00\x20\x00\x67\x00\x65\x00\x72\x00\x61\x00\x69\x00\x73\x00\x20\ +\x00\x64\x00\x6f\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\ +\x00\x43\x00\x41\x00\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\ +\x47\x65\x6e\x65\x72\x61\x6c\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x28\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\ +\x00\x75\x00\x72\x00\x61\x00\xe7\x00\xf5\x00\x65\x00\x73\x00\x20\ +\x00\x67\x00\x65\x00\x72\x00\x61\x00\x69\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\ +\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x88\x00\x53\x00\x65\x00\x20\x00\x65\x00\x73\x00\x74\x00\x61\x00\ +\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x72\x00\ +\x63\x00\x61\x00\x64\x00\x61\x00\x2c\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x76\x00\xe3\x00\ +\x6f\x00\x20\x00\x61\x00\x67\x00\x72\x00\x75\x00\x70\x00\x61\x00\ +\x72\x00\x20\x00\x73\x00\x65\x00\x75\x00\x73\x00\x20\x00\x64\x00\ +\x65\x00\x73\x00\x63\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\ +\x74\x00\x65\x00\x73\x00\x20\x00\x6e\x00\x61\x00\x20\x00\xe1\x00\ +\x72\x00\x76\x00\x6f\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x47\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\ +\x65\x63\x6b\x65\x64\x2c\x20\x46\x65\x61\x74\x75\x72\x65\x73\x20\ +\x77\x69\x6c\x6c\x20\x63\x6c\x61\x69\x6d\x20\x74\x68\x69\x65\x72\ +\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\x69\x6e\x20\x74\x68\x65\ +\x20\x74\x72\x65\x65\x20\x76\x69\x65\x77\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x7c\x00\x53\x00\x65\x00\x20\x00\x65\x00\x73\x00\ +\x74\x00\x61\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6d\x00\ +\x61\x00\x72\x00\x63\x00\x61\x00\x64\x00\x61\x00\x2c\x00\x20\x00\ +\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x6f\x00\x73\x00\x20\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\x69\x00\ +\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\x78\x00\x20\x00\x73\x00\ +\x65\x00\x72\x00\xe3\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x72\x00\ +\x61\x00\x6d\x00\xe9\x00\x74\x00\x72\x00\x69\x00\x63\x00\x6f\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x49\x66\x20\x74\x68\ +\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x4d\ +\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\x4f\x62\x6a\x65\x63\x74\ +\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x50\x61\x72\x61\x6d\x65\x74\ +\x72\x69\x63\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x22\x00\x43\ +\x00\x6f\x00\x6d\x00\x70\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x6e\ +\x00\x74\x00\x6f\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x6c\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x4c\x6f\x63\x61\x6c\x20\ +\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x12\x00\x4d\x00\x61\x00\x78\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\ +\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x4d\x61\x78\ +\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x16\x00\xc1\x00\x72\x00\x65\x00\x61\x00\x20\x00\x6d\x00\xe1\x00\ +\x78\x00\x69\x00\x6d\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0c\x4d\x61\x78\x69\x6d\x75\x6d\x20\x41\x72\x65\x61\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x24\x00\x43\x00\x6f\x00\x6d\x00\x70\ +\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\ +\x00\x6d\x00\xe1\x00\x78\x00\x69\x00\x6d\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0e\x4d\x61\x78\x69\x6d\x75\x6d\x20\x4c\x65\ +\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x54\x00\ +\x4e\x00\xfa\x00\x6d\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x6d\x00\ +\xe1\x00\x78\x00\x69\x00\x6d\x00\x6f\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x70\x00\ +\x61\x00\x72\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\xed\x00\ +\x67\x00\x6f\x00\x6e\x00\x6f\x00\x73\x00\x20\x00\x28\x00\x66\x00\ +\x6e\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x4d\x61\x78\ +\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x66\ +\x61\x63\x65\x73\x20\x66\x6f\x72\x20\x70\x6f\x6c\x79\x67\x6f\x6e\ +\x73\x20\x28\x66\x6e\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x24\x00\x43\x00\x6f\x00\x6d\x00\x70\x00\x72\x00\x69\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x6d\x00\xe1\x00\x78\x00\ +\x69\x00\x6d\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\ +\x61\x78\x69\x75\x6d\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x20\x00\x4d\x00\x61\x00\x6c\x00\x68\x00\ +\x61\x00\x20\x00\x64\x00\x65\x00\x20\x00\x73\x00\x6f\x00\x63\x00\ +\x6f\x00\x72\x00\x72\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0d\x4d\x65\x73\x68\x20\x66\x61\x6c\x6c\x62\x61\x63\x6b\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x26\x00\x65\x00\x78\x00\x65\x00\ +\x63\x00\x75\x00\x74\x00\xe1\x00\x76\x00\x65\x00\x6c\x00\x20\x00\ +\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x13\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x26\x00\x65\x00\x78\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x61\x00\xe7\x00\xe3\x00\x6f\x00\x20\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\ +\x65\x78\x70\x6f\x72\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x26\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\ +\xe7\x00\xe3\x00\x6f\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\ +\x53\x00\x43\x00\x41\x00\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x69\x6d\x70\x6f\x72\x74\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x01\x3a\x00\x4f\x00\x20\x00\ +\x6e\x00\xfa\x00\x6d\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x6d\x00\ +\xe1\x00\x78\x00\x69\x00\x6d\x00\x6f\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\ +\xed\x00\x67\x00\x6f\x00\x6e\x00\x6f\x00\x2c\x00\x20\x00\x70\x00\ +\x72\x00\x69\x00\x73\x00\x6d\x00\x61\x00\x20\x00\x6f\x00\x75\x00\ +\x20\x00\x74\x00\x72\x00\x6f\x00\x6e\x00\x63\x00\x6f\x00\x2e\x00\ +\x20\x00\x53\x00\x65\x00\x20\x00\x66\x00\x6e\x00\x20\x00\xe9\x00\ +\x20\x00\x6d\x00\x61\x00\x69\x00\x6f\x00\x72\x00\x20\x00\x64\x00\ +\x6f\x00\x20\x00\x71\x00\x75\x00\x65\x00\x20\x00\x65\x00\x73\x00\ +\x73\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x6f\x00\x72\x00\ +\x2c\x00\x20\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x74\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x72\x00\xe1\x00\x20\x00\ +\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\ +\x61\x00\x64\x00\x6f\x00\x20\x00\x63\x00\x69\x00\x72\x00\x63\x00\ +\x75\x00\x6c\x00\x61\x00\x72\x00\x2e\x00\x20\x00\x50\x00\x6f\x00\ +\x6e\x00\x68\x00\x61\x00\x20\x00\x30\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x61\x00\x20\x00\x6e\x00\xe3\x00\x6f\x00\x20\x00\x69\x00\ +\x6d\x00\x70\x00\x6f\x00\x72\x00\x20\x00\x6c\x00\x69\x00\x6d\x00\ +\x69\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x9d\x54\ +\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\ +\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x6f\x66\x20\x61\x20\ +\x70\x6f\x6c\x79\x67\x6f\x6e\x2c\x20\x70\x72\x69\x73\x6d\x20\x6f\ +\x72\x20\x66\x72\x75\x73\x74\x75\x6d\x2e\x20\x49\x66\x20\x66\x6e\ +\x20\x69\x73\x20\x67\x72\x65\x61\x74\x65\x72\x20\x74\x68\x61\x6e\ +\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x74\x68\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x69\x73\x20\x63\x6f\x6e\x73\x69\x64\ +\x65\x72\x65\x64\x20\x74\x6f\x20\x62\x65\x20\x61\x20\x63\x69\x72\ +\x63\x75\x6c\x61\x72\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\x30\x20\ +\x66\x6f\x72\x20\x6e\x6f\x20\x6c\x69\x6d\x69\x74\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x4e\x00\x4f\x00\x20\x00\x63\x00\x61\x00\ +\x6d\x00\x69\x00\x6e\x00\x68\x00\x6f\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x61\x00\x20\x00\x6f\x00\x20\x00\x65\x00\x78\x00\x65\x00\ +\x63\x00\x75\x00\x74\x00\xe1\x00\x76\x00\x65\x00\x6c\x00\x20\x00\ +\x64\x00\x6f\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\ +\x43\x00\x41\x00\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x54\ +\x68\x65\x20\x70\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\x65\x61\ +\x62\x6c\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3a\x00\x43\ +\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\x00\x61\ +\x00\xe7\x00\xf5\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x74\x00\x72\x00\x69\x00\x61\x00\x6e\x00\x67\x00\x75\x00\x6c\ +\x00\x61\x00\xe7\x00\xe3\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x16\x54\x72\x69\x61\x6e\x67\x75\x6c\x61\x74\x69\x6f\x6e\x20\ +\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x1e\x00\x55\x00\x73\x00\x61\x00\x72\x00\x20\x00\x4d\x00\ +\x75\x00\x6c\x00\x74\x00\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\ +\x78\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x55\x73\x65\x20\x4d\ +\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\x46\x65\x61\x74\x75\x72\ +\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x38\x00\x55\x00\x73\ +\x00\x61\x00\x72\x00\x20\x00\x56\x00\x69\x00\x65\x00\x77\x00\x50\ +\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x64\x00\x65\x00\x72\x00\x73\ +\x00\x20\x00\x6e\x00\x61\x00\x20\x00\xe1\x00\x72\x00\x76\x00\x6f\ +\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\ +\x65\x20\x56\x69\x65\x77\x50\x72\x6f\x76\x69\x64\x65\x72\x20\x69\ +\x6e\x20\x54\x72\x65\x65\x20\x56\x69\x65\x77\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x18\x00\x61\x00\x6e\x00\x67\x00\x75\x00\x6c\ +\x00\x61\x00\x72\x00\x20\x00\x28\x00\x66\x00\x61\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0c\x61\x6e\x67\x75\x6c\x61\x72\x20\ +\x28\x66\x61\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x16\x00\ +\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x78\x00\x69\x00\x64\x00\ +\x61\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x63\ +\x6f\x6e\x76\x65\x78\x69\x74\x79\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x10\x00\x64\x00\x65\x00\x66\x00\x6c\x00\x65\x00\x78\x00\ +\xe3\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x64\x65\x66\ +\x6c\x65\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x10\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x4c\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x6c\x6f\x63\x61\ +\x6c\x4c\x65\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x0e\x00\ +\x6d\x00\x61\x00\x78\x00\x41\x00\x72\x00\x65\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x07\x6d\x61\x78\x41\x72\x65\x61\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x3c\x00\x74\x00\x61\x00\x6d\x00\ +\x61\x00\x6e\x00\x68\x00\x6f\x00\x20\x00\x6d\x00\xe1\x00\x78\x00\ +\x69\x00\x6d\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x75\x00\ +\x6d\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x6d\ +\x61\x78\x69\x6d\x75\x6d\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x20\ +\x73\x69\x7a\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3e\x00\ +\xe2\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x6f\x00\x20\x00\x6d\x00\ +\xed\x00\x6e\x00\x69\x00\x6d\x00\x6f\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x61\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x66\x00\x72\x00\ +\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1c\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x61\ +\x6e\x67\x6c\x65\x20\x66\x6f\x72\x20\x61\x20\x66\x72\x61\x67\x6d\ +\x65\x6e\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3c\x00\x74\ +\x00\x61\x00\x6d\x00\x61\x00\x6e\x00\x68\x00\x6f\x00\x20\x00\x6d\ +\x00\xed\x00\x6e\x00\x69\x00\x6d\x00\x6f\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\ +\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1a\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x73\x69\x7a\x65\ +\x20\x6f\x66\x20\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x04\x00\x6d\x00\x6d\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x02\x6d\x6d\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x18\x00\x74\x00\x61\x00\x6d\x00\x61\x00\x6e\x00\x68\ +\x00\x6f\x00\x20\x00\x28\x00\x66\x00\x73\x00\x29\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x73\x69\x7a\x65\x20\x28\x66\x73\x29\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x02\x00\xb0\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x01\xb0\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x1a\x00\x20\x00\x50\x00\x72\x00\x65\x00\x73\x00\x73\x00\x69\ +\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x4f\x00\x4b\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x20\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\ +\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x42\x00\x41\x00\x64\x00\x69\x00\x63\x00\x69\x00\x6f\x00\x6e\ +\x00\x61\x00\x72\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x65\x00\x6c\ +\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x2e\ +\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x41\x64\ +\x64\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x45\x6c\x65\x6d\x65\ +\x6e\x74\x2e\x2e\x2e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\xb2\x00\x41\x00\x64\x00\x69\x00\x63\ +\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x75\x00\x6d\ +\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x00\x6f\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\ +\x00\x41\x00\x44\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x65\x00\x72\ +\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x63\x00\xf3\x00\x64\ +\x00\x69\x00\x67\x00\x6f\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\ +\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x20\x00\x65\ +\x00\x78\x00\x65\x00\x63\x00\x75\x00\x74\x00\x61\x00\x72\x00\x20\ +\x00\x6f\x00\x20\x00\x62\x00\x69\x00\x6e\x00\xe1\x00\x72\x00\x69\ +\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x53\x41\x64\x64\x20\x61\x6e\x20\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\x62\x79\x20\x65\ +\x6e\x74\x65\x72\x69\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x20\x63\x6f\x64\x65\x20\x61\x6e\x64\x20\x65\x78\x65\x63\x75\x74\ +\x69\x6e\x67\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x20\x62\x69\x6e\x61\x72\x79\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1c\x00\x43\x00\x6f\x00\x6c\ +\x00\x6f\x00\x72\x00\x69\x00\x72\x00\x20\x00\x66\x00\x6f\x00\x72\ +\x00\x6d\x00\x61\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x43\x6f\x6c\x6f\x72\x20\x53\x68\x61\x70\x65\x73\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x4c\x00\ +\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x69\x00\x72\x00\x20\x00\ +\x61\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\ +\x73\x00\x20\x00\x70\x00\x65\x00\x6c\x00\x6f\x00\x20\x00\x74\x00\ +\x69\x00\x70\x00\x6f\x00\x20\x00\x65\x00\x20\x00\x76\x00\x61\x00\ +\x6c\x00\x69\x00\x64\x00\x61\x00\x64\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x21\x43\x6f\x6c\x6f\x72\x20\x53\x68\x61\x70\x65\ +\x73\x20\x62\x79\x20\x76\x61\x6c\x69\x64\x69\x74\x79\x20\x61\x6e\ +\x64\x20\x74\x79\x70\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x34\x00\x43\x00\x6f\x00\x6e\x00\ +\x76\x00\x65\x00\x72\x00\x74\x00\x65\x00\x72\x00\x20\x00\x61\x00\ +\x72\x00\x65\x00\x73\x00\x74\x00\x61\x00\x73\x00\x20\x00\x65\x00\ +\x6d\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\x20\x45\ +\x64\x67\x65\x73\x20\x54\x6f\x20\x46\x61\x63\x65\x73\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x34\ +\x00\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x65\ +\x00\x72\x00\x20\x00\x61\x00\x72\x00\x65\x00\x73\x00\x74\x00\x61\ +\x00\x73\x00\x20\x00\x65\x00\x6d\x00\x20\x00\x66\x00\x61\x00\x63\ +\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\x6f\ +\x6e\x76\x65\x72\x74\x20\x45\x64\x67\x65\x73\x20\x74\x6f\x20\x46\ +\x61\x63\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x4e\x00\x43\x00\x72\x00\x69\x00\x61\x00\ +\x72\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x72\x00\ +\x65\x00\x66\x00\x69\x00\x6e\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x6d\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x43\ +\x72\x65\x61\x74\x65\x20\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\ +\x70\x65\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x26\x00\x45\x00\ +\x78\x00\x70\x00\x61\x00\x6e\x00\x64\x00\x69\x00\x72\x00\x20\x00\ +\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x45\x78\x70\ +\x61\x6e\x64\x20\x50\x6c\x61\x63\x65\x6d\x65\x6e\x74\x73\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x62\x00\x45\x00\x78\x00\x70\x00\x61\x00\x6e\x00\x64\x00\x69\x00\ +\x72\x00\x20\x00\x74\x00\x6f\x00\x64\x00\x61\x00\x73\x00\x20\x00\ +\x6f\x00\x73\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x61\x00\x20\x00\x62\x00\x61\x00\x69\x00\x78\x00\x6f\x00\ +\x20\x00\x6e\x00\x61\x00\x20\x00\xe1\x00\x72\x00\x76\x00\x6f\x00\ +\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x45\x78\x70\ +\x61\x6e\x64\x20\x61\x6c\x6c\x20\x70\x6c\x61\x63\x65\x6d\x65\x6e\ +\x74\x73\x20\x64\x6f\x77\x6e\x77\x61\x72\x64\x73\x20\x74\x68\x65\ +\x20\x46\x65\x61\x74\x75\x72\x65\x54\x72\x65\x65\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3c\x00\ +\x50\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x61\x00\x76\x00\x6f\x00\ +\x72\x00\x2c\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x33\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1d\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\x65\ +\x63\x74\x20\x33\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x69\x72\ +\x73\x74\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x18\x00\x50\x00\x72\x00\x65\x00\x73\x00\x73\x00\ +\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x4f\x00\x4b\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\ +\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x6a\x00\x50\x00\x72\x00\x6f\x00\x6a\x00\x65\x00\xe7\x00\xe3\ +\x00\x6f\x00\x20\x00\x61\x00\x69\x00\x6e\x00\x64\x00\x61\x00\x20\ +\x00\x6e\x00\xe3\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x64\x00\x69\ +\x00\x66\x00\x69\x00\x63\x00\x61\x00\x64\x00\x61\x00\x2c\x00\x20\ +\x00\x65\x00\x73\x00\x70\x00\x65\x00\x72\x00\x61\x00\x6e\x00\x64\ +\x00\x6f\x00\x20\x00\x70\x00\x6f\x00\x72\x00\x20\x00\x50\x00\x65\ +\x00\x74\x00\x65\x00\x72\x00\x20\x00\x4c\x00\x69\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x2d\x50\x72\x6f\x6a\x65\x63\x74\x69\x6f\x6e\ +\x20\x4e\x6f\x74\x20\x79\x65\x74\x20\x43\x6f\x64\x65\x64\x20\x77\ +\x61\x69\x74\x69\x6e\x67\x20\x66\x6f\x72\x20\x50\x65\x74\x65\x72\ +\x20\x4c\x69\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x28\x00\x52\x00\x65\x00\x66\x00\x69\x00\x6e\ +\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x14\x52\x65\x66\x69\x6e\x65\x20\x53\ +\x68\x61\x70\x65\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x46\x00\ +\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x72\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x75\x00\x73\x00\x20\x00\x64\x00\ +\x65\x00\x73\x00\x63\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\ +\x74\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x52\ +\x65\x6d\x6f\x76\x65\x20\x4f\x62\x6a\x65\x63\x74\x73\x20\x61\x6e\ +\x64\x20\x74\x68\x65\x69\x72\x20\x43\x68\x69\x6c\x64\x72\x65\x6e\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\xd0\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\ +\x20\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x74\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x73\x00\ +\x20\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x64\x00\x6f\x00\x73\x00\ +\x20\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\x75\x00\x73\x00\ +\x20\x00\x64\x00\x65\x00\x73\x00\x63\x00\x65\x00\x6e\x00\x64\x00\ +\x65\x00\x6e\x00\x74\x00\x65\x00\x73\x00\x20\x00\x71\x00\x75\x00\ +\x65\x00\x20\x00\x6e\x00\xe3\x00\x6f\x00\x20\x00\x73\x00\xe3\x00\ +\x6f\x00\x20\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\ +\x6e\x00\x63\x00\x69\x00\x61\x00\x64\x00\x6f\x00\x73\x00\x20\x00\ +\x70\x00\x6f\x00\x72\x00\x20\x00\x6f\x00\x75\x00\x74\x00\x72\x00\ +\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x58\x52\x65\x6d\ +\x6f\x76\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\x61\x6c\ +\x6c\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\x74\x68\x61\x74\x20\ +\x61\x72\x65\x20\x6e\x6f\x74\x20\x72\x65\x66\x65\x72\x65\x6e\x63\ +\x65\x64\x20\x66\x72\x6f\x6d\x20\x6f\x74\x68\x65\x72\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x28\x00\x53\x00\x75\x00\x62\x00\x73\ +\x00\x74\x00\x69\x00\x74\x00\x75\x00\x69\x00\x72\x00\x20\x00\x75\ +\x00\x6d\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x52\x65\x70\x6c\x61\x63\ +\x65\x20\x4f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\xa2\x00\x53\x00\x75\x00\ +\x62\x00\x73\x00\x74\x00\x69\x00\x74\x00\x75\x00\x69\x00\x72\x00\ +\x20\x00\x75\x00\x6d\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x74\x00\x6f\x00\x20\x00\x6e\x00\x61\x00\x20\x00\xe1\x00\x72\x00\ +\x76\x00\x6f\x00\x72\x00\x65\x00\x2e\x00\x20\x00\x50\x00\x6f\x00\ +\x72\x00\x20\x00\x66\x00\x61\x00\x76\x00\x6f\x00\x72\x00\x2c\x00\ +\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\ +\x6e\x00\x65\x00\x20\x00\x6f\x00\x20\x00\x76\x00\x65\x00\x6c\x00\ +\x68\x00\x6f\x00\x2c\x00\x20\x00\x6f\x00\x20\x00\x6e\x00\x6f\x00\ +\x76\x00\x6f\x00\x20\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x69\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4f\x52\x65\x70\x6c\x61\x63\x65\x20\x61\ +\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x20\x74\x68\x65\x20\ +\x46\x65\x61\x74\x75\x72\x65\x20\x54\x72\x65\x65\x2e\x20\x50\x6c\ +\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\x20\x6f\x6c\x64\x2c\ +\x20\x6e\x65\x77\x20\x61\x6e\x64\x20\x70\x61\x72\x65\x6e\x74\x20\ +\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x3c\x00\x41\x00\x20\x00\x65\x00\ +\x78\x00\x65\x00\x63\x00\x75\x00\xe7\x00\xe3\x00\x6f\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\ +\x43\x00\x41\x00\x44\x00\x20\x00\x66\x00\x61\x00\x6c\x00\x68\x00\ +\x6f\x00\x75\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x52\ +\x75\x6e\x6e\x69\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\ +\x66\x61\x69\x6c\x65\x64\x0a\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x28\x00\x46\x00\x75\x00\x6e\ +\x00\xe7\x00\xe3\x00\x6f\x00\x20\x00\x6e\x00\xe3\x00\x6f\x00\x20\ +\x00\x73\x00\x75\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x64\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x55\x6e\x73\x75\ +\x70\x70\x6f\x72\x74\x65\x64\x20\x46\x75\x6e\x63\x74\x69\x6f\x6e\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x00\x00\x1b\xeb\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x01\xa0\x00\x00\x00\xb0\x00\x00\x0f\xae\x00\x00\x07\x3d\ +\x00\x00\x0f\x23\x00\x39\xdf\x33\x00\x00\x01\x90\x00\x72\x97\x49\ +\x00\x00\x0f\x5e\x01\x0c\x64\xae\x00\x00\x10\x30\x01\x38\xb0\x83\ +\x00\x00\x11\xa8\x01\x40\x42\x85\x00\x00\x0b\x0d\x02\x1f\xd9\x48\ +\x00\x00\x03\xda\x02\x7b\x37\xc4\x00\x00\x14\xbb\x02\xbc\x05\x8e\ +\x00\x00\x0c\xb9\x02\xbe\x05\x8e\x00\x00\x00\xbf\x03\x8c\x88\xc1\ +\x00\x00\x0d\x59\x05\x08\x5c\x93\x00\x00\x02\xfd\x05\x16\xa3\x95\ +\x00\x00\x13\x53\x05\x66\x9a\x34\x00\x00\x07\xe9\x05\x98\x15\x8e\ +\x00\x00\x0d\x0c\x05\xcc\x9a\xd9\x00\x00\x0c\x69\x05\xe4\x1f\xa9\ +\x00\x00\x10\x92\x05\xfb\x21\x0b\x00\x00\x06\x4f\x06\xe4\x0a\x14\ +\x00\x00\x18\x61\x06\xee\xa0\xc5\x00\x00\x09\xf5\x07\x5d\xec\x93\ +\x00\x00\x12\xde\x07\x5d\xee\x93\x00\x00\x12\x69\x07\xda\x68\xe7\ +\x00\x00\x0b\x84\x07\xe4\xd0\x65\x00\x00\x0d\xa3\x08\x10\xb3\x89\ +\x00\x00\x05\x43\x08\x37\x4e\x99\x00\x00\x15\x76\x08\x4d\xc0\x2e\ +\x00\x00\x19\xd0\x08\x5d\x45\x73\x00\x00\x01\x12\x08\xa5\x45\x08\ +\x00\x00\x05\xf3\x08\xca\x52\x4b\x00\x00\x15\x2f\x08\xca\x72\x4b\ +\x00\x00\x0f\xe6\x08\xe2\x7f\xe5\x00\x00\x14\x11\x09\x2b\x77\x54\ +\x00\x00\x18\x18\x09\xc0\x82\xb5\x00\x00\x06\xab\x0a\x22\x8d\xb2\ +\x00\x00\x00\x00\x0a\x2b\x47\x64\x00\x00\x0e\xa0\x0a\x96\xcd\x84\ +\x00\x00\x0e\x17\x0a\xd3\x55\x94\x00\x00\x07\x87\x0a\xf8\x55\x94\ +\x00\x00\x07\x25\x0b\x61\x1d\x4e\x00\x00\x16\x73\x0d\x2c\x1d\x28\ +\x00\x00\x04\x33\x0d\xaa\x21\x43\x00\x00\x13\xc1\x0d\xdc\x00\x68\ +\x00\x00\x04\xdc\x0e\x02\x4e\xea\x00\x00\x19\x6b\x0e\x75\xf9\x03\ +\x00\x00\x0a\x96\x0e\x80\x99\x15\x00\x00\x16\x1a\x0e\xc6\x00\x19\ +\x00\x00\x0c\x10\x0e\xcc\x78\xf1\x00\x00\x04\x83\x0f\x18\x51\xc5\ +\x00\x00\x11\xe9\x0f\x68\xe5\xc7\x00\x00\x01\xf3\x0f\xd3\x1f\xf3\ +\x00\x00\x16\xf3\x69\x00\x00\x1a\x31\x03\x00\x00\x00\x5c\x00\x44\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x3a\x00\x20\x00\x52\x00\x65\ +\x00\x67\x00\x69\x00\x73\x00\x74\x00\x65\x00\x72\x00\x20\x00\x66\ +\x00\x69\x00\x6c\x00\x65\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x74\x00\x6f\ +\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2e\x44\x65\x62\x75\x67\x3a\x20\x52\x65\x67\x69\x73\ +\x74\x65\x72\x20\x66\x69\x6c\x65\x74\x79\x70\x65\x20\x74\x6f\x20\ +\x70\x72\x6f\x74\x6f\x74\x79\x70\x65\x20\x69\x6d\x70\x6f\x72\x74\ +\x65\x72\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x44\x00\ +\x65\x00\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x44\x65\x66\x6c\x65\ +\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x30\ +\x04\x1e\x04\x31\x04\x49\x04\x38\x04\x35\x00\x20\x04\x3f\x04\x30\ +\x04\x40\x04\x30\x04\x3c\x04\x35\x04\x42\x04\x40\x04\x4b\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x65\x6e\x65\x72\x61\ +\x6c\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1e\x04\x1e\ +\x04\x31\x04\x49\x04\x38\x04\x35\x00\x20\x04\x3d\x04\x30\x04\x41\ +\x04\x42\x04\x40\x04\x3e\x04\x39\x04\x3a\x04\x38\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\ +\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x8e\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\ +\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x46\x00\x65\x00\x61\x00\ +\x74\x00\x75\x00\x72\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\ +\x6c\x00\x6c\x00\x20\x00\x63\x00\x6c\x00\x61\x00\x69\x00\x6d\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x65\x00\x72\x00\x20\x00\x63\x00\ +\x68\x00\x69\x00\x6c\x00\x64\x00\x72\x00\x65\x00\x6e\x00\x20\x00\ +\x69\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x74\x00\ +\x72\x00\x65\x00\x65\x00\x20\x00\x76\x00\x69\x00\x65\x00\x77\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x47\x49\x66\x20\x74\x68\x69\x73\ +\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x46\x65\x61\ +\x74\x75\x72\x65\x73\x20\x77\x69\x6c\x6c\x20\x63\x6c\x61\x69\x6d\ +\x20\x74\x68\x69\x65\x72\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\ +\x69\x6e\x20\x74\x68\x65\x20\x74\x72\x65\x65\x20\x76\x69\x65\x77\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x70\x00\x49\x00\x66\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\ +\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\ +\x2c\x00\x20\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\x6d\x00\x61\x00\ +\x74\x00\x72\x00\x69\x00\x78\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\ +\x20\x00\x62\x00\x65\x00\x20\x00\x50\x00\x61\x00\x72\x00\x61\x00\ +\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x63\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x38\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\ +\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x4d\x75\x6c\x74\x6d\x61\x74\ +\x72\x69\x78\x20\x4f\x62\x6a\x65\x63\x74\x20\x77\x69\x6c\x6c\x20\ +\x62\x65\x20\x50\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x18\x00\x4c\x00\x6f\x00\x63\x00\x61\ +\x00\x6c\x00\x20\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x4c\x6f\x63\x61\x6c\x20\ +\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x12\x00\x4d\x00\x61\x00\x78\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\ +\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x4d\x61\x78\ +\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x18\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\ +\x20\x00\x41\x00\x72\x00\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0c\x4d\x61\x78\x69\x6d\x75\x6d\x20\x41\x72\x65\x61\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x24\x04\x1c\x04\x30\x04\x3a\ +\x04\x41\x04\x38\x04\x3c\x04\x30\x04\x3b\x04\x4c\x04\x3d\x04\x30\ +\x04\x4f\x00\x20\x04\x34\x04\x3b\x04\x38\x04\x3d\x04\x30\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0e\x4d\x61\x78\x69\x6d\x75\x6d\x20\ +\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x52\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\ +\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\ +\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\ +\x79\x00\x67\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x28\x00\x66\x00\ +\x6e\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x4d\x61\x78\ +\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x66\ +\x61\x63\x65\x73\x20\x66\x6f\x72\x20\x70\x6f\x6c\x79\x67\x6f\x6e\ +\x73\x20\x28\x66\x6e\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x1a\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x75\x00\x6d\x00\x20\x00\ +\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0d\x4d\x61\x78\x69\x75\x6d\x20\x4c\x65\x6e\x67\ +\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1a\x00\x4d\x00\ +\x65\x00\x73\x00\x68\x00\x20\x00\x66\x00\x61\x00\x6c\x00\x6c\x00\ +\x62\x00\x61\x00\x63\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0d\x4d\x65\x73\x68\x20\x66\x61\x6c\x6c\x62\x61\x63\x6b\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x32\x04\x18\x04\x41\x04\x3f\x04\ +\x3e\x04\x3b\x04\x3d\x04\x4f\x04\x35\x04\x3c\x04\x4b\x04\x39\x00\ +\x20\x04\x44\x04\x30\x04\x39\x04\x3b\x00\x20\x00\x4f\x00\x70\x00\ +\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x13\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\ +\x65\x63\x75\x74\x61\x62\x6c\x65\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x1e\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\ +\x41\x00\x44\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x20\x65\x78\x70\x6f\x72\x74\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x1e\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\ +\x43\x00\x41\x00\x44\x00\x20\x04\x38\x04\x3c\x04\x3f\x04\x3e\x04\ +\x40\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x20\x69\x6d\x70\x6f\x72\x74\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x01\x3a\x00\x54\x00\x68\x00\x65\x00\x20\x00\ +\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\ +\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\ +\x79\x00\x67\x00\x6f\x00\x6e\x00\x2c\x00\x20\x00\x70\x00\x72\x00\ +\x69\x00\x73\x00\x6d\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\ +\x72\x00\x75\x00\x73\x00\x74\x00\x75\x00\x6d\x00\x2e\x00\x20\x00\ +\x49\x00\x66\x00\x20\x00\x66\x00\x6e\x00\x20\x00\x69\x00\x73\x00\ +\x20\x00\x67\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x72\x00\ +\x20\x00\x74\x00\x68\x00\x61\x00\x6e\x00\x20\x00\x74\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x75\x00\x65\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\ +\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\x65\x00\ +\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x65\x00\x20\x00\ +\x61\x00\x20\x00\x63\x00\x69\x00\x72\x00\x63\x00\x75\x00\x6c\x00\ +\x61\x00\x72\x00\x2e\x00\x20\x00\x53\x00\x65\x00\x74\x00\x20\x00\ +\x74\x00\x6f\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x20\x00\x6e\x00\x6f\x00\x20\x00\x6c\x00\x69\x00\x6d\x00\x69\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x9d\x54\x68\x65\x20\x6d\ +\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\ +\x20\x66\x61\x63\x65\x73\x20\x6f\x66\x20\x61\x20\x70\x6f\x6c\x79\ +\x67\x6f\x6e\x2c\x20\x70\x72\x69\x73\x6d\x20\x6f\x72\x20\x66\x72\ +\x75\x73\x74\x75\x6d\x2e\x20\x49\x66\x20\x66\x6e\x20\x69\x73\x20\ +\x67\x72\x65\x61\x74\x65\x72\x20\x74\x68\x61\x6e\x20\x74\x68\x69\ +\x73\x20\x76\x61\x6c\x75\x65\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x69\x73\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\ +\x20\x74\x6f\x20\x62\x65\x20\x61\x20\x63\x69\x72\x63\x75\x6c\x61\ +\x72\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\x30\x20\x66\x6f\x72\x20\ +\x6e\x6f\x20\x6c\x69\x6d\x69\x74\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x48\x00\x54\x00\x68\x00\x65\x00\x20\x00\x70\x00\x61\x00\ +\x74\x00\x68\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\ +\x41\x00\x44\x00\x20\x00\x65\x00\x78\x00\x65\x00\x63\x00\x75\x00\ +\x74\x00\x65\x00\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x24\x54\x68\x65\x20\x70\x61\x74\x68\x20\x74\x6f\ +\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\ +\x65\x63\x75\x74\x65\x61\x62\x6c\x65\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x2c\x00\x54\x00\x72\x00\x69\x00\x61\x00\x6e\x00\x67\ +\x00\x75\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\ +\x00\x73\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x72\x69\x61\x6e\x67\ +\x75\x6c\x61\x74\x69\x6f\x6e\x20\x73\x65\x74\x74\x69\x6e\x67\x73\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x55\x00\x73\x00\ +\x65\x00\x20\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\x6d\x00\x61\x00\ +\x74\x00\x72\x00\x69\x00\x78\x00\x20\x00\x46\x00\x65\x00\x61\x00\ +\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x16\x55\x73\x65\x20\x4d\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\ +\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x3a\x00\x55\x00\x73\x00\x65\x00\x20\x00\x56\x00\x69\x00\x65\ +\x00\x77\x00\x50\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x64\x00\x65\ +\x00\x72\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x54\x00\x72\x00\x65\ +\x00\x65\x00\x20\x00\x56\x00\x69\x00\x65\x00\x77\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1d\x55\x73\x65\x20\x56\x69\x65\x77\x50\x72\ +\x6f\x76\x69\x64\x65\x72\x20\x69\x6e\x20\x54\x72\x65\x65\x20\x56\ +\x69\x65\x77\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x61\ +\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x28\ +\x00\x66\x00\x61\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x61\x6e\x67\x75\x6c\x61\x72\x20\x28\x66\x61\x29\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x12\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\ +\x65\x00\x78\x00\x69\x00\x74\x00\x79\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x63\x6f\x6e\x76\x65\x78\x69\x74\x79\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x14\x00\x64\x00\x65\x00\x66\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0a\x64\x65\x66\x6c\x65\x63\x74\x69\x6f\x6e\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x10\x00\x6c\x00\x6f\x00\x63\ +\x00\x61\x00\x6c\x00\x4c\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x08\x6c\x6f\x63\x61\x6c\x4c\x65\x6e\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x0e\x00\x6d\x00\x61\x00\x78\x00\x41\x00\ +\x72\x00\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x6d\ +\x61\x78\x41\x72\x65\x61\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x2a\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\ +\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x15\x6d\x61\x78\x69\x6d\x75\x6d\x20\x66\x72\x61\ +\x67\x6d\x65\x6e\x74\x20\x73\x69\x7a\x65\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x38\x00\x6d\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\ +\x75\x00\x6d\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\ +\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x20\x00\x66\x00\ +\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1c\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x61\ +\x6e\x67\x6c\x65\x20\x66\x6f\x72\x20\x61\x20\x66\x72\x61\x67\x6d\ +\x65\x6e\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x34\x00\x6d\ +\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x73\ +\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\ +\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x6d\x69\x6e\x69\ +\x6d\x75\x6d\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\x61\x20\x66\x72\ +\x61\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x04\x04\x3c\x04\x3c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x6d\ +\x6d\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\x73\x00\x69\ +\x00\x7a\x00\x65\x00\x20\x00\x28\x00\x66\x00\x73\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x73\x69\x7a\x65\x20\x28\x66\x73\ +\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x02\x00\xb0\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x01\xb0\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x24\x00\x20\x04\x1d\x04\x30\x04\x36\x04\x3c\x04\x38\ +\x04\x42\x04\x35\x00\x20\x04\x3a\x04\x3d\x04\x3e\x04\x3f\x04\x3a\ +\x04\x43\x00\x20\x00\x4f\x00\x4b\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x09\x20\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2e\x00\x41\ +\x00\x64\x00\x64\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\ +\x00\x43\x00\x41\x00\x44\x00\x20\x00\x45\x00\x6c\x00\x65\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x17\x41\x64\x64\x20\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x20\x45\x6c\x65\x6d\x65\x6e\x74\x2e\x2e\x2e\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\xa6\ +\x00\x41\x00\x64\x00\x64\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\ +\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\ +\x00\x62\x00\x79\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x72\ +\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\ +\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x63\x00\x6f\x00\x64\ +\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x65\x00\x78\ +\x00\x65\x00\x63\x00\x75\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\ +\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x62\x00\x69\x00\x6e\ +\x00\x61\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\ +\x41\x64\x64\x20\x61\x6e\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\ +\x65\x6c\x65\x6d\x65\x6e\x74\x20\x62\x79\x20\x65\x6e\x74\x65\x72\ +\x69\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x63\x6f\x64\ +\x65\x20\x61\x6e\x64\x20\x65\x78\x65\x63\x75\x74\x69\x6e\x67\x20\ +\x74\x68\x65\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x62\x69\x6e\ +\x61\x72\x79\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x18\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\ +\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x6f\x6c\x6f\x72\x20\x53\x68\ +\x61\x70\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x42\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\ +\x72\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x73\x00\ +\x20\x00\x62\x00\x79\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\ +\x64\x00\x69\x00\x74\x00\x79\x00\x20\x00\x61\x00\x6e\x00\x64\x00\ +\x20\x00\x74\x00\x79\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x21\x43\x6f\x6c\x6f\x72\x20\x53\x68\x61\x70\x65\x73\x20\ +\x62\x79\x20\x76\x61\x6c\x69\x64\x69\x74\x79\x20\x61\x6e\x64\x20\ +\x74\x79\x70\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x42\x04\x1f\x04\x40\x04\x35\x04\x3e\x04\ +\x31\x04\x40\x04\x30\x04\x37\x04\x3e\x04\x32\x04\x30\x04\x42\x04\ +\x4c\x00\x20\x04\x40\x04\x51\x04\x31\x04\x40\x04\x30\x00\x20\x04\ +\x32\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\x35\x04\x40\x04\x45\x04\ +\x3d\x04\x3e\x04\x41\x04\x42\x04\x4c\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\x67\x65\x73\ +\x20\x54\x6f\x20\x46\x61\x63\x65\x73\x07\x00\x00\x00\x08\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x42\x04\x1f\x04\x40\ +\x04\x35\x04\x3e\x04\x31\x04\x40\x04\x30\x04\x37\x04\x3e\x04\x32\ +\x04\x30\x04\x42\x04\x4c\x00\x20\x04\x40\x04\x51\x04\x31\x04\x40\ +\x04\x30\x00\x20\x04\x32\x00\x20\x04\x3f\x04\x3e\x04\x32\x04\x35\ +\x04\x40\x04\x45\x04\x3d\x04\x3e\x04\x41\x04\x42\x04\x4c\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\x20\ +\x45\x64\x67\x65\x73\x20\x74\x6f\x20\x46\x61\x63\x65\x73\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x36\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\ +\x52\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x53\x00\ +\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\ +\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1b\x43\x72\x65\x61\x74\x65\x20\x52\x65\x66\x69\x6e\x65\x20\x53\ +\x68\x61\x70\x65\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x22\x00\ +\x45\x00\x78\x00\x70\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x50\x00\ +\x6c\x00\x61\x00\x63\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x45\x78\x70\x61\x6e\ +\x64\x20\x50\x6c\x61\x63\x65\x6d\x65\x6e\x74\x73\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x5e\x00\ +\x45\x00\x78\x00\x70\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\ +\x6c\x00\x6c\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x64\x00\x6f\x00\ +\x77\x00\x6e\x00\x77\x00\x61\x00\x72\x00\x64\x00\x73\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\ +\x75\x00\x72\x00\x65\x00\x54\x00\x72\x00\x65\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x2f\x45\x78\x70\x61\x6e\x64\x20\x61\x6c\ +\x6c\x20\x70\x6c\x61\x63\x65\x6d\x65\x6e\x74\x73\x20\x64\x6f\x77\ +\x6e\x77\x61\x72\x64\x73\x20\x74\x68\x65\x20\x46\x65\x61\x74\x75\ +\x72\x65\x54\x72\x65\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x3a\x00\x50\x00\x6c\x00\x65\x00\ +\x61\x00\x73\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x33\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x66\x00\x69\x00\x72\x00\ +\x73\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x50\x6c\x65\ +\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\x20\x33\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x20\x66\x69\x72\x73\x74\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x22\x04\x1d\x04\ +\x30\x04\x36\x04\x3c\x04\x38\x04\x42\x04\x35\x00\x20\x04\x3a\x04\ +\x3d\x04\x3e\x04\x3f\x04\x3a\x04\x43\x00\x20\x00\x4f\x00\x4b\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x50\x72\x65\x73\x73\x20\x4f\ +\x4b\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x5a\x00\x50\x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x4e\x00\x6f\x00\x74\ +\x00\x20\x00\x79\x00\x65\x00\x74\x00\x20\x00\x43\x00\x6f\x00\x64\ +\x00\x65\x00\x64\x00\x20\x00\x77\x00\x61\x00\x69\x00\x74\x00\x69\ +\x00\x6e\x00\x67\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x50\ +\x00\x65\x00\x74\x00\x65\x00\x72\x00\x20\x00\x4c\x00\x69\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x2d\x50\x72\x6f\x6a\x65\x63\x74\x69\ +\x6f\x6e\x20\x4e\x6f\x74\x20\x79\x65\x74\x20\x43\x6f\x64\x65\x64\ +\x20\x77\x61\x69\x74\x69\x6e\x67\x20\x66\x6f\x72\x20\x50\x65\x74\ +\x65\x72\x20\x4c\x69\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x28\x00\x52\x00\x65\x00\x66\x00\x69\ +\x00\x6e\x00\x65\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\ +\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x52\x65\x66\x69\x6e\x65\ +\x20\x53\x68\x61\x70\x65\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x42\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x20\x00\ +\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ +\x61\x00\x6e\x00\x64\x00\x20\x00\x74\x00\x68\x00\x65\x00\x69\x00\ +\x72\x00\x20\x00\x43\x00\x68\x00\x69\x00\x6c\x00\x64\x00\x72\x00\ +\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x52\x65\x6d\ +\x6f\x76\x65\x20\x4f\x62\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\ +\x74\x68\x65\x69\x72\x20\x43\x68\x69\x6c\x64\x72\x65\x6e\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\xb0\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x73\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6e\x00\ +\x64\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x63\x00\x68\x00\ +\x69\x00\x6c\x00\x64\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x74\x00\ +\x68\x00\x61\x00\x74\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\ +\x6e\x00\x6f\x00\x74\x00\x20\x00\x72\x00\x65\x00\x66\x00\x65\x00\ +\x72\x00\x65\x00\x6e\x00\x63\x00\x65\x00\x64\x00\x20\x00\x66\x00\ +\x72\x00\x6f\x00\x6d\x00\x20\x00\x6f\x00\x74\x00\x68\x00\x65\x00\ +\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x58\x52\x65\x6d\x6f\x76\ +\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\x61\x6c\x6c\x20\ +\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\x74\x68\x61\x74\x20\x61\x72\ +\x65\x20\x6e\x6f\x74\x20\x72\x65\x66\x65\x72\x65\x6e\x63\x65\x64\ +\x20\x66\x72\x6f\x6d\x20\x6f\x74\x68\x65\x72\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x1e\x04\x17\x04\x30\x04\x3c\x04\x35\x04\x3d\ +\x04\x38\x04\x42\x04\x4c\x00\x20\x04\x3e\x04\x31\x04\x4a\x04\x35\ +\x04\x3a\x04\x42\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x52\x65\ +\x70\x6c\x61\x63\x65\x20\x4f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x9e\x00\ +\x52\x00\x65\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x20\x00\ +\x61\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x00\ +\x20\x00\x54\x00\x72\x00\x65\x00\x65\x00\x2e\x00\x20\x00\x50\x00\ +\x6c\x00\x65\x00\x61\x00\x73\x00\x65\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x6f\x00\x6c\x00\x64\x00\ +\x2c\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\x61\x00\x6e\x00\ +\x64\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x6e\x00\x74\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4f\x52\x65\x70\x6c\x61\x63\x65\x20\x61\ +\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x20\x74\x68\x65\x20\ +\x46\x65\x61\x74\x75\x72\x65\x20\x54\x72\x65\x65\x2e\x20\x50\x6c\ +\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\x20\x6f\x6c\x64\x2c\ +\x20\x6e\x65\x77\x20\x61\x6e\x64\x20\x70\x61\x72\x65\x6e\x74\x20\ +\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x30\x00\x52\x00\x75\x00\x6e\x00\ +\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x4f\x00\x70\x00\x65\x00\ +\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x66\x00\x61\x00\ +\x69\x00\x6c\x00\x65\x00\x64\x00\x0a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x18\x52\x75\x6e\x6e\x69\x6e\x67\x20\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x20\x66\x61\x69\x6c\x65\x64\x0a\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x30\x04\x1d\ +\x04\x35\x04\x3f\x04\x3e\x04\x34\x04\x34\x04\x35\x04\x40\x04\x36\ +\x04\x38\x04\x32\x04\x30\x04\x35\x04\x3c\x04\x4b\x04\x35\x00\x20\ +\x04\x44\x04\x43\x04\x3d\x04\x3a\x04\x46\x04\x38\x04\x38\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x14\x55\x6e\x73\x75\x70\x70\x6f\x72\ +\x74\x65\x64\x20\x46\x75\x6e\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x00\x00\x1b\x83\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x01\xa0\x00\x00\x00\xb0\x00\x00\x0f\xa0\x00\x00\x07\x3d\ +\x00\x00\x0f\x15\x00\x39\xdf\x33\x00\x00\x01\x92\x00\x72\x97\x49\ +\x00\x00\x0f\x50\x01\x0c\x64\xae\x00\x00\x10\x10\x01\x38\xb0\x83\ +\x00\x00\x11\x88\x01\x40\x42\x85\x00\x00\x0a\xff\x02\x1f\xd9\x48\ +\x00\x00\x03\xe0\x02\x7b\x37\xc4\x00\x00\x14\x6f\x02\xbc\x05\x8e\ +\x00\x00\x0c\xab\x02\xbe\x05\x8e\x00\x00\x00\xbf\x03\x8c\x88\xc1\ +\x00\x00\x0d\x4b\x05\x08\x5c\x93\x00\x00\x03\x03\x05\x16\xa3\x95\ +\x00\x00\x13\x07\x05\x66\x9a\x34\x00\x00\x07\xdb\x05\x98\x15\x8e\ +\x00\x00\x0c\xfe\x05\xcc\x9a\xd9\x00\x00\x0c\x5b\x05\xe4\x1f\xa9\ +\x00\x00\x10\x72\x05\xfb\x21\x0b\x00\x00\x06\x4d\x06\xe4\x0a\x14\ +\x00\x00\x18\x01\x06\xee\xa0\xc5\x00\x00\x09\xe7\x07\x5d\xec\x93\ +\x00\x00\x12\xa8\x07\x5d\xee\x93\x00\x00\x12\x49\x07\xda\x68\xe7\ +\x00\x00\x0b\x76\x07\xe4\xd0\x65\x00\x00\x0d\x95\x08\x10\xb3\x89\ +\x00\x00\x05\x41\x08\x37\x4e\x99\x00\x00\x15\x18\x08\x4d\xc0\x2e\ +\x00\x00\x19\x70\x08\x5d\x45\x73\x00\x00\x01\x12\x08\xa5\x45\x08\ +\x00\x00\x05\xf1\x08\xca\x52\x4b\x00\x00\x14\xe3\x08\xca\x72\x4b\ +\x00\x00\x0f\xd8\x08\xe2\x7f\xe5\x00\x00\x13\xc5\x09\x2b\x77\x54\ +\x00\x00\x17\xba\x09\xc0\x82\xb5\x00\x00\x06\xa9\x0a\x22\x8d\xb2\ +\x00\x00\x00\x00\x0a\x2b\x47\x64\x00\x00\x0e\x92\x0a\x96\xcd\x84\ +\x00\x00\x0e\x09\x0a\xd3\x55\x94\x00\x00\x07\x79\x0a\xf8\x55\x94\ +\x00\x00\x07\x17\x0b\x61\x1d\x4e\x00\x00\x16\x15\x0d\x2c\x1d\x28\ +\x00\x00\x04\x39\x0d\xaa\x21\x43\x00\x00\x13\x75\x0d\xdc\x00\x68\ +\x00\x00\x04\xe2\x0e\x02\x4e\xea\x00\x00\x19\x0b\x0e\x75\xf9\x03\ +\x00\x00\x0a\x88\x0e\x80\x99\x15\x00\x00\x15\xbc\x0e\xc6\x00\x19\ +\x00\x00\x0c\x02\x0e\xcc\x78\xf1\x00\x00\x04\x89\x0f\x18\x51\xc5\ +\x00\x00\x11\xc9\x0f\x68\xe5\xc7\x00\x00\x01\xf9\x0f\xd3\x1f\xf3\ +\x00\x00\x16\x95\x69\x00\x00\x19\xc9\x03\x00\x00\x00\x5c\x00\x44\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x3a\x00\x20\x00\x52\x00\x65\ +\x00\x67\x00\x69\x00\x73\x00\x74\x00\x65\x00\x72\x00\x20\x00\x66\ +\x00\x69\x00\x6c\x00\x65\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x74\x00\x6f\ +\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2e\x44\x65\x62\x75\x67\x3a\x20\x52\x65\x67\x69\x73\ +\x74\x65\x72\x20\x66\x69\x6c\x65\x74\x79\x70\x65\x20\x74\x6f\x20\ +\x70\x72\x6f\x74\x6f\x74\x79\x70\x65\x20\x69\x6d\x70\x6f\x72\x74\ +\x65\x72\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x44\x00\ +\x65\x00\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x44\x65\x66\x6c\x65\ +\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x32\ +\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x53\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x65\x6e\x65\ +\x72\x61\x6c\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x22\ +\x00\x59\x00\x6c\x00\x65\x00\x69\x00\x73\x00\x65\x00\x74\x00\x20\ +\x00\x61\x00\x73\x00\x65\x00\x74\x00\x75\x00\x6b\x00\x73\x00\x65\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\ +\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x8e\x00\x49\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\ +\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ +\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x00\x73\x00\ +\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x63\x00\x6c\x00\ +\x61\x00\x69\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x69\x00\x65\x00\ +\x72\x00\x20\x00\x63\x00\x68\x00\x69\x00\x6c\x00\x64\x00\x72\x00\ +\x65\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x74\x00\x72\x00\x65\x00\x65\x00\x20\x00\x76\x00\ +\x69\x00\x65\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x47\x49\ +\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\ +\x64\x2c\x20\x46\x65\x61\x74\x75\x72\x65\x73\x20\x77\x69\x6c\x6c\ +\x20\x63\x6c\x61\x69\x6d\x20\x74\x68\x69\x65\x72\x20\x63\x68\x69\ +\x6c\x64\x72\x65\x6e\x20\x69\x6e\x20\x74\x68\x65\x20\x74\x72\x65\ +\x65\x20\x76\x69\x65\x77\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x70\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\ +\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x4d\x00\x75\x00\x6c\x00\ +\x74\x00\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\x78\x00\x20\x00\ +\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x77\x00\ +\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x50\x00\ +\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\ +\x63\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x49\x66\x20\x74\x68\ +\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x4d\ +\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\x4f\x62\x6a\x65\x63\x74\ +\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x50\x61\x72\x61\x6d\x65\x74\ +\x72\x69\x63\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x4c\ +\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x20\x00\x4c\x00\x65\x00\x6e\ +\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x4c\x6f\x63\x61\x6c\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x12\x00\x4d\x00\x61\x00\x78\x00\x4c\x00\ +\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x4d\x61\x78\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x18\x00\x4d\x00\x61\x00\x78\x00\x69\x00\ +\x6d\x00\x75\x00\x6d\x00\x20\x00\x41\x00\x72\x00\x65\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x4d\x61\x78\x69\x6d\x75\x6d\ +\x20\x41\x72\x65\x61\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1c\ +\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\ +\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0e\x4d\x61\x78\x69\x6d\x75\x6d\x20\x4c\x65\ +\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x52\x00\ +\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\ +\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\ +\x66\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\ +\x67\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x28\x00\x66\x00\x6e\x00\ +\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x4d\x61\x78\x69\x6d\ +\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x66\x61\x63\ +\x65\x73\x20\x66\x6f\x72\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x73\x20\ +\x28\x66\x6e\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1a\x00\ +\x4d\x00\x61\x00\x78\x00\x69\x00\x75\x00\x6d\x00\x20\x00\x4c\x00\ +\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x4d\x61\x78\x69\x75\x6d\x20\x4c\x65\x6e\x67\x74\x68\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1a\x00\x4d\x00\x65\x00\ +\x73\x00\x68\x00\x20\x00\x66\x00\x61\x00\x6c\x00\x6c\x00\x62\x00\ +\x61\x00\x63\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\ +\x65\x73\x68\x20\x66\x61\x6c\x6c\x62\x61\x63\x6b\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x26\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\ +\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x78\x00\x65\x00\ +\x63\x00\x75\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x13\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\ +\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x1e\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\ +\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x20\x65\x78\x70\x6f\x72\x74\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x1e\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\ +\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x69\x00\x6d\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x20\x69\x6d\x70\x6f\x72\x74\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x01\x3a\x00\x54\x00\x68\x00\x65\x00\ +\x20\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\ +\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x20\x00\x70\x00\x6f\x00\ +\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x2c\x00\x20\x00\x70\x00\ +\x72\x00\x69\x00\x73\x00\x6d\x00\x20\x00\x6f\x00\x72\x00\x20\x00\ +\x66\x00\x72\x00\x75\x00\x73\x00\x74\x00\x75\x00\x6d\x00\x2e\x00\ +\x20\x00\x49\x00\x66\x00\x20\x00\x66\x00\x6e\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x67\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\ +\x72\x00\x20\x00\x74\x00\x68\x00\x61\x00\x6e\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x75\x00\ +\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\ +\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x65\x00\ +\x20\x00\x61\x00\x20\x00\x63\x00\x69\x00\x72\x00\x63\x00\x75\x00\ +\x6c\x00\x61\x00\x72\x00\x2e\x00\x20\x00\x53\x00\x65\x00\x74\x00\ +\x20\x00\x74\x00\x6f\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x6c\x00\x69\x00\x6d\x00\ +\x69\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x9d\x54\x68\x65\ +\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\ +\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x6f\x66\x20\x61\x20\x70\x6f\ +\x6c\x79\x67\x6f\x6e\x2c\x20\x70\x72\x69\x73\x6d\x20\x6f\x72\x20\ +\x66\x72\x75\x73\x74\x75\x6d\x2e\x20\x49\x66\x20\x66\x6e\x20\x69\ +\x73\x20\x67\x72\x65\x61\x74\x65\x72\x20\x74\x68\x61\x6e\x20\x74\ +\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x74\x68\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x20\x69\x73\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\ +\x65\x64\x20\x74\x6f\x20\x62\x65\x20\x61\x20\x63\x69\x72\x63\x75\ +\x6c\x61\x72\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\x30\x20\x66\x6f\ +\x72\x20\x6e\x6f\x20\x6c\x69\x6d\x69\x74\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x48\x00\x54\x00\x68\x00\x65\x00\x20\x00\x70\x00\ +\x61\x00\x74\x00\x68\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\ +\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x78\x00\x65\x00\x63\x00\ +\x75\x00\x74\x00\x65\x00\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x24\x54\x68\x65\x20\x70\x61\x74\x68\x20\ +\x74\x6f\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\ +\x65\x78\x65\x63\x75\x74\x65\x61\x62\x6c\x65\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x2c\x00\x54\x00\x72\x00\x69\x00\x61\x00\x6e\ +\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x00\x20\x00\x73\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x72\x69\x61\ +\x6e\x67\x75\x6c\x61\x74\x69\x6f\x6e\x20\x73\x65\x74\x74\x69\x6e\ +\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x55\x00\ +\x73\x00\x65\x00\x20\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\x6d\x00\ +\x61\x00\x74\x00\x72\x00\x69\x00\x78\x00\x20\x00\x46\x00\x65\x00\ +\x61\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x16\x55\x73\x65\x20\x4d\x75\x6c\x74\x6d\x61\x74\x72\x69\ +\x78\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x3a\x00\x55\x00\x73\x00\x65\x00\x20\x00\x56\x00\x69\ +\x00\x65\x00\x77\x00\x50\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x64\ +\x00\x65\x00\x72\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x54\x00\x72\ +\x00\x65\x00\x65\x00\x20\x00\x56\x00\x69\x00\x65\x00\x77\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\x65\x20\x56\x69\x65\x77\ +\x50\x72\x6f\x76\x69\x64\x65\x72\x20\x69\x6e\x20\x54\x72\x65\x65\ +\x20\x56\x69\x65\x77\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\ +\x00\x61\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x20\ +\x00\x28\x00\x66\x00\x61\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0c\x61\x6e\x67\x75\x6c\x61\x72\x20\x28\x66\x61\x29\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\x63\x00\x6f\x00\x6e\x00\ +\x76\x00\x65\x00\x78\x00\x69\x00\x74\x00\x79\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x09\x63\x6f\x6e\x76\x65\x78\x69\x74\x79\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x64\x00\x65\x00\x66\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x64\x65\x66\x6c\x65\x63\x74\x69\x6f\ +\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x10\x00\x6c\x00\x6f\ +\x00\x63\x00\x61\x00\x6c\x00\x4c\x00\x65\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x08\x6c\x6f\x63\x61\x6c\x4c\x65\x6e\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x0e\x00\x6d\x00\x61\x00\x78\x00\ +\x41\x00\x72\x00\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x07\x6d\x61\x78\x41\x72\x65\x61\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x2a\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\ +\x6d\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x15\x6d\x61\x78\x69\x6d\x75\x6d\x20\x66\ +\x72\x61\x67\x6d\x65\x6e\x74\x20\x73\x69\x7a\x65\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x38\x00\x6d\x00\x69\x00\x6e\x00\x69\x00\ +\x6d\x00\x75\x00\x6d\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\ +\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x20\x00\ +\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x6d\x69\x6e\x69\x6d\x75\x6d\ +\x20\x61\x6e\x67\x6c\x65\x20\x66\x6f\x72\x20\x61\x20\x66\x72\x61\ +\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x34\ +\x00\x6d\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\ +\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\ +\x00\x61\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x65\ +\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x6d\x69\ +\x6e\x69\x6d\x75\x6d\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\x61\x20\ +\x66\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x04\x00\x6d\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x02\x6d\x6d\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\x73\ +\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x28\x00\x66\x00\x73\x00\x29\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x73\x69\x7a\x65\x20\x28\ +\x66\x73\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x02\x00\xb0\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\xb0\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x12\x00\x20\x00\x50\x00\x72\x00\x65\x00\x73\ +\x00\x73\x00\x20\x00\x4f\x00\x4b\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x09\x20\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2e\x00\x41\ +\x00\x64\x00\x64\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\ +\x00\x43\x00\x41\x00\x44\x00\x20\x00\x45\x00\x6c\x00\x65\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x17\x41\x64\x64\x20\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x20\x45\x6c\x65\x6d\x65\x6e\x74\x2e\x2e\x2e\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\xa6\ +\x00\x41\x00\x64\x00\x64\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\ +\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\ +\x00\x62\x00\x79\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x72\ +\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\ +\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x63\x00\x6f\x00\x64\ +\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x65\x00\x78\ +\x00\x65\x00\x63\x00\x75\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\ +\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x62\x00\x69\x00\x6e\ +\x00\x61\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\ +\x41\x64\x64\x20\x61\x6e\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\ +\x65\x6c\x65\x6d\x65\x6e\x74\x20\x62\x79\x20\x65\x6e\x74\x65\x72\ +\x69\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x63\x6f\x64\ +\x65\x20\x61\x6e\x64\x20\x65\x78\x65\x63\x75\x74\x69\x6e\x67\x20\ +\x74\x68\x65\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x62\x69\x6e\ +\x61\x72\x79\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x18\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\ +\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x6f\x6c\x6f\x72\x20\x53\x68\ +\x61\x70\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x42\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\ +\x72\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x73\x00\ +\x20\x00\x62\x00\x79\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\ +\x64\x00\x69\x00\x74\x00\x79\x00\x20\x00\x61\x00\x6e\x00\x64\x00\ +\x20\x00\x74\x00\x79\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x21\x43\x6f\x6c\x6f\x72\x20\x53\x68\x61\x70\x65\x73\x20\ +\x62\x79\x20\x76\x61\x6c\x69\x64\x69\x74\x79\x20\x61\x6e\x64\x20\ +\x74\x79\x70\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x2c\x00\x43\x00\x6f\x00\x6e\x00\x76\x00\ +\x65\x00\x72\x00\x74\x00\x20\x00\x45\x00\x64\x00\x67\x00\x65\x00\ +\x73\x00\x20\x00\x54\x00\x6f\x00\x20\x00\x46\x00\x61\x00\x63\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\x6f\x6e\ +\x76\x65\x72\x74\x20\x45\x64\x67\x65\x73\x20\x54\x6f\x20\x46\x61\ +\x63\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x2c\x00\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\ +\x00\x72\x00\x74\x00\x20\x00\x45\x00\x64\x00\x67\x00\x65\x00\x73\ +\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x46\x00\x61\x00\x63\x00\x65\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\x6f\x6e\x76\ +\x65\x72\x74\x20\x45\x64\x67\x65\x73\x20\x74\x6f\x20\x46\x61\x63\ +\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x36\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\ +\x65\x00\x20\x00\x52\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x65\x00\ +\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x46\x00\ +\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1b\x43\x72\x65\x61\x74\x65\x20\x52\x65\x66\x69\ +\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\x65\x61\x74\x75\x72\x65\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x22\x00\x45\x00\x78\x00\x70\x00\x61\x00\x6e\x00\x64\x00\ +\x20\x00\x50\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x45\ +\x78\x70\x61\x6e\x64\x20\x50\x6c\x61\x63\x65\x6d\x65\x6e\x74\x73\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x5e\x00\x45\x00\x78\x00\x70\x00\x61\x00\x6e\x00\x64\x00\ +\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x70\x00\x6c\x00\x61\x00\ +\x63\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\ +\x64\x00\x6f\x00\x77\x00\x6e\x00\x77\x00\x61\x00\x72\x00\x64\x00\ +\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x65\x00\ +\x61\x00\x74\x00\x75\x00\x72\x00\x65\x00\x54\x00\x72\x00\x65\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x45\x78\x70\x61\x6e\ +\x64\x20\x61\x6c\x6c\x20\x70\x6c\x61\x63\x65\x6d\x65\x6e\x74\x73\ +\x20\x64\x6f\x77\x6e\x77\x61\x72\x64\x73\x20\x74\x68\x65\x20\x46\ +\x65\x61\x74\x75\x72\x65\x54\x72\x65\x65\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3a\x00\x50\x00\ +\x6c\x00\x65\x00\x61\x00\x73\x00\x65\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x33\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x66\x00\ +\x69\x00\x72\x00\x73\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1d\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\x20\x33\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x69\x72\x73\x74\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x10\x00\x50\x00\x72\x00\x65\x00\x73\x00\x73\x00\x20\x00\x4f\x00\ +\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x50\x72\x65\x73\x73\ +\x20\x4f\x4b\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x5a\x00\x50\x00\x72\x00\x6f\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x4e\x00\x6f\ +\x00\x74\x00\x20\x00\x79\x00\x65\x00\x74\x00\x20\x00\x43\x00\x6f\ +\x00\x64\x00\x65\x00\x64\x00\x20\x00\x77\x00\x61\x00\x69\x00\x74\ +\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ +\x00\x50\x00\x65\x00\x74\x00\x65\x00\x72\x00\x20\x00\x4c\x00\x69\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x50\x72\x6f\x6a\x65\x63\ +\x74\x69\x6f\x6e\x20\x4e\x6f\x74\x20\x79\x65\x74\x20\x43\x6f\x64\ +\x65\x64\x20\x77\x61\x69\x74\x69\x6e\x67\x20\x66\x6f\x72\x20\x50\ +\x65\x74\x65\x72\x20\x4c\x69\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x28\x00\x52\x00\x65\x00\x66\ +\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\ +\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x52\x65\x66\x69\ +\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\x65\x61\x74\x75\x72\x65\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x42\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\ +\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\ +\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x69\x00\x72\x00\x20\x00\x43\x00\x68\x00\x69\x00\x6c\x00\x64\x00\ +\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x52\ +\x65\x6d\x6f\x76\x65\x20\x4f\x62\x6a\x65\x63\x74\x73\x20\x61\x6e\ +\x64\x20\x74\x68\x65\x69\x72\x20\x43\x68\x69\x6c\x64\x72\x65\x6e\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\xb0\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\ +\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\ +\x6e\x00\x64\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x63\x00\ +\x68\x00\x69\x00\x6c\x00\x64\x00\x72\x00\x65\x00\x6e\x00\x20\x00\ +\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x61\x00\x72\x00\x65\x00\ +\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x72\x00\x65\x00\x66\x00\ +\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x65\x00\x64\x00\x20\x00\ +\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x6f\x00\x74\x00\x68\x00\ +\x65\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x58\x52\x65\x6d\ +\x6f\x76\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\x61\x6c\ +\x6c\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\x74\x68\x61\x74\x20\ +\x61\x72\x65\x20\x6e\x6f\x74\x20\x72\x65\x66\x65\x72\x65\x6e\x63\ +\x65\x64\x20\x66\x72\x6f\x6d\x20\x6f\x74\x68\x65\x72\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x1c\x00\x52\x00\x65\x00\x70\x00\x6c\ +\x00\x61\x00\x63\x00\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x52\x65\ +\x70\x6c\x61\x63\x65\x20\x4f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x9e\x00\ +\x52\x00\x65\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x20\x00\ +\x61\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x00\ +\x20\x00\x54\x00\x72\x00\x65\x00\x65\x00\x2e\x00\x20\x00\x50\x00\ +\x6c\x00\x65\x00\x61\x00\x73\x00\x65\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x6f\x00\x6c\x00\x64\x00\ +\x2c\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\x61\x00\x6e\x00\ +\x64\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x6e\x00\x74\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4f\x52\x65\x70\x6c\x61\x63\x65\x20\x61\ +\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x20\x74\x68\x65\x20\ +\x46\x65\x61\x74\x75\x72\x65\x20\x54\x72\x65\x65\x2e\x20\x50\x6c\ +\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\x20\x6f\x6c\x64\x2c\ +\x20\x6e\x65\x77\x20\x61\x6e\x64\x20\x70\x61\x72\x65\x6e\x74\x20\ +\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x30\x00\x52\x00\x75\x00\x6e\x00\ +\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x4f\x00\x70\x00\x65\x00\ +\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x66\x00\x61\x00\ +\x69\x00\x6c\x00\x65\x00\x64\x00\x0a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x18\x52\x75\x6e\x6e\x69\x6e\x67\x20\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x20\x66\x61\x69\x6c\x65\x64\x0a\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x28\x00\x55\ +\x00\x6e\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\ +\x00\x65\x00\x64\x00\x20\x00\x46\x00\x75\x00\x6e\x00\x63\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\ +\x55\x6e\x73\x75\x70\x70\x6f\x72\x74\x65\x64\x20\x46\x75\x6e\x63\ +\x74\x69\x6f\x6e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\ +\x00\x00\x1b\x8b\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x01\xa0\x00\x00\x00\xb0\x00\x00\x0f\xa8\x00\x00\x07\x3d\ +\x00\x00\x0f\x1d\x00\x39\xdf\x33\x00\x00\x01\x92\x00\x72\x97\x49\ +\x00\x00\x0f\x58\x01\x0c\x64\xae\x00\x00\x10\x18\x01\x38\xb0\x83\ +\x00\x00\x11\x90\x01\x40\x42\x85\x00\x00\x0b\x07\x02\x1f\xd9\x48\ +\x00\x00\x03\xe8\x02\x7b\x37\xc4\x00\x00\x14\x77\x02\xbc\x05\x8e\ +\x00\x00\x0c\xb3\x02\xbe\x05\x8e\x00\x00\x00\xbf\x03\x8c\x88\xc1\ +\x00\x00\x0d\x53\x05\x08\x5c\x93\x00\x00\x03\x0b\x05\x16\xa3\x95\ +\x00\x00\x13\x0f\x05\x66\x9a\x34\x00\x00\x07\xe3\x05\x98\x15\x8e\ +\x00\x00\x0d\x06\x05\xcc\x9a\xd9\x00\x00\x0c\x63\x05\xe4\x1f\xa9\ +\x00\x00\x10\x7a\x05\xfb\x21\x0b\x00\x00\x06\x55\x06\xe4\x0a\x14\ +\x00\x00\x18\x09\x06\xee\xa0\xc5\x00\x00\x09\xef\x07\x5d\xec\x93\ +\x00\x00\x12\xb0\x07\x5d\xee\x93\x00\x00\x12\x51\x07\xda\x68\xe7\ +\x00\x00\x0b\x7e\x07\xe4\xd0\x65\x00\x00\x0d\x9d\x08\x10\xb3\x89\ +\x00\x00\x05\x49\x08\x37\x4e\x99\x00\x00\x15\x20\x08\x4d\xc0\x2e\ +\x00\x00\x19\x78\x08\x5d\x45\x73\x00\x00\x01\x12\x08\xa5\x45\x08\ +\x00\x00\x05\xf9\x08\xca\x52\x4b\x00\x00\x14\xeb\x08\xca\x72\x4b\ +\x00\x00\x0f\xe0\x08\xe2\x7f\xe5\x00\x00\x13\xcd\x09\x2b\x77\x54\ +\x00\x00\x17\xc2\x09\xc0\x82\xb5\x00\x00\x06\xb1\x0a\x22\x8d\xb2\ +\x00\x00\x00\x00\x0a\x2b\x47\x64\x00\x00\x0e\x9a\x0a\x96\xcd\x84\ +\x00\x00\x0e\x11\x0a\xd3\x55\x94\x00\x00\x07\x81\x0a\xf8\x55\x94\ +\x00\x00\x07\x1f\x0b\x61\x1d\x4e\x00\x00\x16\x1d\x0d\x2c\x1d\x28\ +\x00\x00\x04\x41\x0d\xaa\x21\x43\x00\x00\x13\x7d\x0d\xdc\x00\x68\ +\x00\x00\x04\xea\x0e\x02\x4e\xea\x00\x00\x19\x13\x0e\x75\xf9\x03\ +\x00\x00\x0a\x90\x0e\x80\x99\x15\x00\x00\x15\xc4\x0e\xc6\x00\x19\ +\x00\x00\x0c\x0a\x0e\xcc\x78\xf1\x00\x00\x04\x91\x0f\x18\x51\xc5\ +\x00\x00\x11\xd1\x0f\x68\xe5\xc7\x00\x00\x02\x01\x0f\xd3\x1f\xf3\ +\x00\x00\x16\x9d\x69\x00\x00\x19\xd1\x03\x00\x00\x00\x5c\x00\x44\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x3a\x00\x20\x00\x52\x00\x65\ +\x00\x67\x00\x69\x00\x73\x00\x74\x00\x65\x00\x72\x00\x20\x00\x66\ +\x00\x69\x00\x6c\x00\x65\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x74\x00\x6f\ +\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2e\x44\x65\x62\x75\x67\x3a\x20\x52\x65\x67\x69\x73\ +\x74\x65\x72\x20\x66\x69\x6c\x65\x74\x79\x70\x65\x20\x74\x6f\x20\ +\x70\x72\x6f\x74\x6f\x74\x79\x70\x65\x20\x69\x6d\x70\x6f\x72\x74\ +\x65\x72\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x44\x00\ +\x65\x00\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x44\x65\x66\x6c\x65\ +\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x32\ +\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x53\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x65\x6e\x65\ +\x72\x61\x6c\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2a\ +\x00\x41\x00\x6c\x00\x67\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x65\ +\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\ +\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\ +\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x8e\x00\ +\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\ +\x65\x00\x64\x00\x2c\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\ +\x75\x00\x72\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x63\x00\x6c\x00\x61\x00\x69\x00\x6d\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x65\x00\x72\x00\x20\x00\x63\x00\x68\x00\ +\x69\x00\x6c\x00\x64\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x69\x00\ +\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x74\x00\x72\x00\ +\x65\x00\x65\x00\x20\x00\x76\x00\x69\x00\x65\x00\x77\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x47\x49\x66\x20\x74\x68\x69\x73\x20\x69\ +\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x46\x65\x61\x74\x75\ +\x72\x65\x73\x20\x77\x69\x6c\x6c\x20\x63\x6c\x61\x69\x6d\x20\x74\ +\x68\x69\x65\x72\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\x69\x6e\ +\x20\x74\x68\x65\x20\x74\x72\x65\x65\x20\x76\x69\x65\x77\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x70\x00\x49\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\x6d\x00\x61\x00\x74\x00\ +\x72\x00\x69\x00\x78\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\ +\x62\x00\x65\x00\x20\x00\x50\x00\x61\x00\x72\x00\x61\x00\x6d\x00\ +\x65\x00\x74\x00\x72\x00\x69\x00\x63\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x38\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\ \x65\x63\x6b\x65\x64\x2c\x20\x4d\x75\x6c\x74\x6d\x61\x74\x72\x69\ \x78\x20\x4f\x62\x6a\x65\x63\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\ -\x20\x50\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x3c\x2f\x73\x74\x72\ -\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\ -\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x55\ -\x73\x65\x20\x4d\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\x46\x65\ -\x61\x74\x75\x72\x65\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ -\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\ -\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\x74\ -\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x75\x73\x65\x4d\x75\x6c\ -\x74\x6d\x61\x74\x72\x69\x78\x46\x65\x61\x74\x75\x72\x65\x3c\x2f\ -\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ -\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x50\x61\x74\ -\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\ -\x6e\x67\x3e\x4d\x6f\x64\x2f\x4f\x70\x65\x6e\x53\x43\x41\x44\x3c\ -\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\ -\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\ -\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\ -\x75\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\ -\x61\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\ -\x22\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\ -\x61\x6c\x4c\x61\x79\x6f\x75\x74\x5f\x37\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\ -\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\x6c\x22\x20\x6e\x61\x6d\x65\ -\x3d\x22\x6c\x61\x62\x65\x6c\x5f\x31\x32\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ -\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\ -\x69\x6e\x67\x3e\x54\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\ -\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\ -\x6f\x66\x20\x61\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x2c\x20\x70\x72\ -\x69\x73\x6d\x20\x6f\x72\x20\x66\x72\x75\x73\x74\x75\x6d\x2e\x20\ -\x49\x66\x20\x66\x6e\x20\x69\x73\x20\x67\x72\x65\x61\x74\x65\x72\ -\x20\x74\x68\x61\x6e\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\ -\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x73\x20\x63\ -\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x74\x6f\x20\x62\x65\x20\ -\x61\x20\x63\x69\x72\x63\x75\x6c\x61\x72\x2e\x20\x53\x65\x74\x20\ -\x74\x6f\x20\x30\x20\x66\x6f\x72\x20\x6e\x6f\x20\x6c\x69\x6d\x69\ -\x74\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ -\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ -\x72\x69\x6e\x67\x3e\x4d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\ +\x20\x50\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x18\x00\x4c\x00\x6f\x00\x63\x00\x61\x00\x6c\ +\x00\x20\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0c\x4c\x6f\x63\x61\x6c\x20\x4c\x65\ +\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\ +\x4d\x00\x61\x00\x78\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\ +\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x4d\x61\x78\x4c\x65\ +\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\ +\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\ +\x41\x00\x72\x00\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0c\x4d\x61\x78\x69\x6d\x75\x6d\x20\x41\x72\x65\x61\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x1c\x00\x4d\x00\x61\x00\x78\x00\x69\ +\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x4c\x00\x65\x00\x6e\x00\x67\ +\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x4d\x61\ +\x78\x69\x6d\x75\x6d\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x52\x00\x4d\x00\x61\x00\x78\x00\x69\x00\ +\x6d\x00\x75\x00\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\ +\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x66\x00\x61\x00\ +\x63\x00\x65\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\ +\x70\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x73\x00\ +\x20\x00\x28\x00\x66\x00\x6e\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x29\x4d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\ +\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x66\x6f\x72\x20\x70\ +\x6f\x6c\x79\x67\x6f\x6e\x73\x20\x28\x66\x6e\x29\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x1a\x00\x4d\x00\x61\x00\x78\x00\x69\x00\ +\x75\x00\x6d\x00\x20\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\ +\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x61\x78\x69\x75\ +\x6d\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x1a\x00\x4d\x00\x65\x00\x73\x00\x68\x00\x20\x00\x66\x00\ +\x61\x00\x6c\x00\x6c\x00\x62\x00\x61\x00\x63\x00\x6b\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x66\x61\x6c\x6c\ +\x62\x61\x63\x6b\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x26\x00\ +\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\ +\x20\x00\x65\x00\x78\x00\x65\x00\x63\x00\x75\x00\x74\x00\x61\x00\ +\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\x61\x62\ +\x6c\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1e\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\ +\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\ +\x70\x6f\x72\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1e\x00\ +\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\ +\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\ +\x69\x6d\x70\x6f\x72\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x01\ +\x3a\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x78\x00\ +\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\ +\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x66\x00\ +\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x61\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\ +\x6e\x00\x2c\x00\x20\x00\x70\x00\x72\x00\x69\x00\x73\x00\x6d\x00\ +\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\x75\x00\x73\x00\ +\x74\x00\x75\x00\x6d\x00\x2e\x00\x20\x00\x49\x00\x66\x00\x20\x00\ +\x66\x00\x6e\x00\x20\x00\x69\x00\x73\x00\x20\x00\x67\x00\x72\x00\ +\x65\x00\x61\x00\x74\x00\x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\ +\x61\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x76\x00\x61\x00\x6c\x00\x75\x00\x65\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\ +\x69\x00\x64\x00\x65\x00\x72\x00\x65\x00\x64\x00\x20\x00\x74\x00\ +\x6f\x00\x20\x00\x62\x00\x65\x00\x20\x00\x61\x00\x20\x00\x63\x00\ +\x69\x00\x72\x00\x63\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x2e\x00\ +\x20\x00\x53\x00\x65\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ +\x30\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x6f\x00\ +\x20\x00\x6c\x00\x69\x00\x6d\x00\x69\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x9d\x54\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\ +\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\ +\x20\x6f\x66\x20\x61\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x2c\x20\x70\ +\x72\x69\x73\x6d\x20\x6f\x72\x20\x66\x72\x75\x73\x74\x75\x6d\x2e\ +\x20\x49\x66\x20\x66\x6e\x20\x69\x73\x20\x67\x72\x65\x61\x74\x65\ +\x72\x20\x74\x68\x61\x6e\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\ +\x65\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x73\x20\ +\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x74\x6f\x20\x62\x65\ +\x20\x61\x20\x63\x69\x72\x63\x75\x6c\x61\x72\x2e\x20\x53\x65\x74\ +\x20\x74\x6f\x20\x30\x20\x66\x6f\x72\x20\x6e\x6f\x20\x6c\x69\x6d\ +\x69\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x48\x00\x54\x00\ +\x68\x00\x65\x00\x20\x00\x70\x00\x61\x00\x74\x00\x68\x00\x20\x00\ +\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\ +\x65\x00\x78\x00\x65\x00\x63\x00\x75\x00\x74\x00\x65\x00\x61\x00\ +\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x54\ +\x68\x65\x20\x70\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\x65\x61\ +\x62\x6c\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x54\ +\x00\x72\x00\x69\x00\x61\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x61\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x74\ +\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x16\x54\x72\x69\x61\x6e\x67\x75\x6c\x61\x74\x69\x6f\ +\x6e\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x2c\x00\x55\x00\x73\x00\x65\x00\x20\x00\x4d\x00\ +\x75\x00\x6c\x00\x74\x00\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\ +\x78\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x55\x73\x65\x20\x4d\ +\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\x46\x65\x61\x74\x75\x72\ +\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3a\x00\x55\x00\x73\ +\x00\x65\x00\x20\x00\x56\x00\x69\x00\x65\x00\x77\x00\x50\x00\x72\ +\x00\x6f\x00\x76\x00\x69\x00\x64\x00\x65\x00\x72\x00\x20\x00\x69\ +\x00\x6e\x00\x20\x00\x54\x00\x72\x00\x65\x00\x65\x00\x20\x00\x56\ +\x00\x69\x00\x65\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\ +\x55\x73\x65\x20\x56\x69\x65\x77\x50\x72\x6f\x76\x69\x64\x65\x72\ +\x20\x69\x6e\x20\x54\x72\x65\x65\x20\x56\x69\x65\x77\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x18\x00\x61\x00\x6e\x00\x67\x00\x75\ +\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x28\x00\x66\x00\x61\x00\x29\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x61\x6e\x67\x75\x6c\x61\ +\x72\x20\x28\x66\x61\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x12\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x78\x00\x69\x00\ +\x74\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x63\x6f\x6e\ +\x76\x65\x78\x69\x74\x79\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x14\x00\x64\x00\x65\x00\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x64\ +\x65\x66\x6c\x65\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x10\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x4c\ +\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x6c\x6f\ +\x63\x61\x6c\x4c\x65\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x0e\x00\x6d\x00\x61\x00\x78\x00\x41\x00\x72\x00\x65\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x07\x6d\x61\x78\x41\x72\x65\x61\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2a\x00\x6d\x00\x61\x00\ +\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x66\x00\x72\x00\ +\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x73\x00\ +\x69\x00\x7a\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x6d\ +\x61\x78\x69\x6d\x75\x6d\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x20\ +\x73\x69\x7a\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x38\x00\ +\x6d\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\ +\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x20\x00\x61\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1c\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x61\x6e\x67\x6c\x65\x20\x66\ +\x6f\x72\x20\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x34\x00\x6d\x00\x69\x00\x6e\x00\x69\ +\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x20\x00\x66\x00\x72\ +\x00\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1a\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x73\x69\ +\x7a\x65\x20\x6f\x66\x20\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x04\x00\x6d\x00\x6d\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x02\x6d\x6d\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x12\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\ +\x00\x28\x00\x66\x00\x73\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x09\x73\x69\x7a\x65\x20\x28\x66\x73\x29\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x02\x00\xb0\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x01\xb0\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\x20\ +\x00\x50\x00\x72\x00\x65\x00\x73\x00\x73\x00\x20\x00\x4f\x00\x4b\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x20\x50\x72\x65\x73\x73\ +\x20\x4f\x4b\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x2e\x00\x41\x00\x64\x00\x64\x00\x20\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\ +\x00\x45\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\ +\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x41\x64\ +\x64\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x45\x6c\x65\x6d\x65\ +\x6e\x74\x2e\x2e\x2e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\xa6\x00\x41\x00\x64\x00\x64\x00\x20\ +\x00\x61\x00\x6e\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\ +\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x62\x00\x79\x00\x20\x00\x65\ +\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x63\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x61\x00\x6e\ +\x00\x64\x00\x20\x00\x65\x00\x78\x00\x65\x00\x63\x00\x75\x00\x74\ +\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x62\x00\x69\x00\x6e\x00\x61\x00\x72\x00\x79\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x53\x41\x64\x64\x20\x61\x6e\x20\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\ +\x62\x79\x20\x65\x6e\x74\x65\x72\x69\x6e\x67\x20\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x20\x63\x6f\x64\x65\x20\x61\x6e\x64\x20\x65\x78\ +\x65\x63\x75\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x20\x62\x69\x6e\x61\x72\x79\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x43\ +\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x53\x00\x68\x00\x61\ +\x00\x70\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x43\x6f\x6c\x6f\x72\x20\x53\x68\x61\x70\x65\x73\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x42\x00\ +\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x53\x00\x68\x00\ +\x61\x00\x70\x00\x65\x00\x73\x00\x20\x00\x62\x00\x79\x00\x20\x00\ +\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x69\x00\x74\x00\x79\x00\ +\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x74\x00\x79\x00\x70\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x43\x6f\x6c\x6f\x72\ +\x20\x53\x68\x61\x70\x65\x73\x20\x62\x79\x20\x76\x61\x6c\x69\x64\ +\x69\x74\x79\x20\x61\x6e\x64\x20\x74\x79\x70\x65\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\ +\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x20\x00\ +\x45\x00\x64\x00\x67\x00\x65\x00\x73\x00\x20\x00\x54\x00\x6f\x00\ +\x20\x00\x46\x00\x61\x00\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\x67\ +\x65\x73\x20\x54\x6f\x20\x46\x61\x63\x65\x73\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x43\ +\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x20\x00\x45\ +\x00\x64\x00\x67\x00\x65\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\ +\x00\x46\x00\x61\x00\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\x67\x65\ +\x73\x20\x74\x6f\x20\x46\x61\x63\x65\x73\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x36\x00\x43\x00\ +\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x52\x00\x65\x00\ +\x66\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x53\x00\x68\x00\x61\x00\ +\x70\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\ +\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x43\x72\x65\ +\x61\x74\x65\x20\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\ +\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x22\x00\x45\x00\x78\x00\ +\x70\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x50\x00\x6c\x00\x61\x00\ +\x63\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x11\x45\x78\x70\x61\x6e\x64\x20\x50\x6c\ +\x61\x63\x65\x6d\x65\x6e\x74\x73\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x5e\x00\x45\x00\x78\x00\ +\x70\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\ +\x20\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x73\x00\x20\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\ +\x77\x00\x61\x00\x72\x00\x64\x00\x73\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\ +\x65\x00\x54\x00\x72\x00\x65\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2f\x45\x78\x70\x61\x6e\x64\x20\x61\x6c\x6c\x20\x70\x6c\ +\x61\x63\x65\x6d\x65\x6e\x74\x73\x20\x64\x6f\x77\x6e\x77\x61\x72\ +\x64\x73\x20\x74\x68\x65\x20\x46\x65\x61\x74\x75\x72\x65\x54\x72\ +\x65\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x3a\x00\x50\x00\x6c\x00\x65\x00\x61\x00\x73\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x33\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x73\x00\x20\x00\x66\x00\x69\x00\x72\x00\x73\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x50\x6c\x65\x61\x73\x65\x20\ +\x73\x65\x6c\x65\x63\x74\x20\x33\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x20\x66\x69\x72\x73\x74\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x10\x00\x50\x00\x72\x00\x65\x00\ +\x73\x00\x73\x00\x20\x00\x4f\x00\x4b\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x5a\x00\x50\ +\x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x20\x00\x79\x00\x65\ +\x00\x74\x00\x20\x00\x43\x00\x6f\x00\x64\x00\x65\x00\x64\x00\x20\ +\x00\x77\x00\x61\x00\x69\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\ +\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x50\x00\x65\x00\x74\x00\x65\ +\x00\x72\x00\x20\x00\x4c\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x2d\x50\x72\x6f\x6a\x65\x63\x74\x69\x6f\x6e\x20\x4e\x6f\x74\ +\x20\x79\x65\x74\x20\x43\x6f\x64\x65\x64\x20\x77\x61\x69\x74\x69\ +\x6e\x67\x20\x66\x6f\x72\x20\x50\x65\x74\x65\x72\x20\x4c\x69\x07\ +\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x28\x00\x52\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x20\ +\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x46\x00\x65\ +\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x14\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\ +\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x42\x00\x52\x00\x65\x00\ +\x6d\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x69\x00\x72\x00\x20\x00\x43\x00\ +\x68\x00\x69\x00\x6c\x00\x64\x00\x72\x00\x65\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x21\x52\x65\x6d\x6f\x76\x65\x20\x4f\x62\ +\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\x74\x68\x65\x69\x72\x20\ +\x43\x68\x69\x6c\x64\x72\x65\x6e\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\xb0\x00\x52\x00\x65\x00\ +\x6d\x00\x6f\x00\x76\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\ +\x6c\x00\x6c\x00\x20\x00\x63\x00\x68\x00\x69\x00\x6c\x00\x64\x00\ +\x72\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\ +\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\ +\x20\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\ +\x63\x00\x65\x00\x64\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ +\x20\x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x58\x52\x65\x6d\x6f\x76\x65\x73\x20\x74\x68\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x61\x6e\x64\x20\x61\x6c\x6c\x20\x63\x68\x69\x6c\x64\x72\ +\x65\x6e\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\ +\x72\x65\x66\x65\x72\x65\x6e\x63\x65\x64\x20\x66\x72\x6f\x6d\x20\ +\x6f\x74\x68\x65\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1c\ +\x00\x52\x00\x65\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x20\ +\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0e\x52\x65\x70\x6c\x61\x63\x65\x20\x4f\x62\ +\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x9e\x00\x52\x00\x65\x00\x70\x00\x6c\x00\ +\x61\x00\x63\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\ +\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x54\x00\x72\x00\x65\x00\ +\x65\x00\x2e\x00\x20\x00\x50\x00\x6c\x00\x65\x00\x61\x00\x73\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x6f\x00\x6c\x00\x64\x00\x2c\x00\x20\x00\x6e\x00\x65\x00\ +\x77\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x52\ +\x65\x70\x6c\x61\x63\x65\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x69\x6e\x20\x74\x68\x65\x20\x46\x65\x61\x74\x75\x72\x65\x20\ +\x54\x72\x65\x65\x2e\x20\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\ +\x65\x63\x74\x20\x6f\x6c\x64\x2c\x20\x6e\x65\x77\x20\x61\x6e\x64\ +\x20\x70\x61\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x30\x00\x52\x00\x75\x00\x6e\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\ +\x44\x00\x20\x00\x66\x00\x61\x00\x69\x00\x6c\x00\x65\x00\x64\x00\ +\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x52\x75\x6e\x6e\x69\ +\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x66\x61\x69\x6c\ +\x65\x64\x0a\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x28\x00\x55\x00\x6e\x00\x73\x00\x75\x00\x70\ +\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x64\x00\x20\x00\x46\ +\x00\x75\x00\x6e\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x14\x55\x6e\x73\x75\x70\x70\x6f\x72\ +\x74\x65\x64\x20\x46\x75\x6e\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x00\x00\x13\xf3\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x01\xa0\x00\x00\x00\xb0\x00\x00\x0b\x8e\x00\x00\x07\x3d\ +\x00\x00\x0b\x09\x00\x39\xdf\x33\x00\x00\x01\x2e\x00\x72\x97\x49\ +\x00\x00\x0b\x44\x01\x0c\x64\xae\x00\x00\x0b\xf2\x01\x38\xb0\x83\ +\x00\x00\x0d\x02\x01\x40\x42\x85\x00\x00\x07\xd5\x02\x1f\xd9\x48\ +\x00\x00\x02\xa0\x02\x7b\x37\xc4\x00\x00\x0e\xdb\x02\xbc\x05\x8e\ +\x00\x00\x09\x29\x02\xbe\x05\x8e\x00\x00\x00\x81\x03\x8c\x88\xc1\ +\x00\x00\x09\xb1\x05\x08\x5c\x93\x00\x00\x02\x15\x05\x16\xa3\x95\ +\x00\x00\x0e\x03\x05\x66\x9a\x34\x00\x00\x05\xdd\x05\x98\x15\x8e\ +\x00\x00\x09\x6c\x05\xcc\x9a\xd9\x00\x00\x08\xe7\x05\xe4\x1f\xa9\ +\x00\x00\x0c\x48\x05\xfb\x21\x0b\x00\x00\x04\x85\x06\xe4\x0a\x14\ +\x00\x00\x11\x15\x06\xee\xa0\xc5\x00\x00\x07\x05\x07\x5d\xec\x93\ +\x00\x00\x0d\xc6\x07\x5d\xee\x93\x00\x00\x0d\x89\x07\xda\x68\xe7\ +\x00\x00\x08\x2e\x07\xe4\xd0\x65\x00\x00\x09\xf5\x08\x10\xb3\x89\ +\x00\x00\x03\xc3\x08\x37\x4e\x99\x00\x00\x0f\x50\x08\x4d\xc0\x2e\ +\x00\x00\x11\xfc\x08\x5d\x45\x73\x00\x00\x00\xc4\x08\xa5\x45\x08\ +\x00\x00\x04\x3b\x08\xca\x52\x4b\x00\x00\x0f\x25\x08\xca\x72\x4b\ +\x00\x00\x0b\xc6\x08\xe2\x7f\xe5\x00\x00\x0e\x81\x09\x2b\x77\x54\ +\x00\x00\x10\xe2\x09\xc0\x82\xb5\x00\x00\x04\xcf\x0a\x22\x8d\xb2\ +\x00\x00\x00\x00\x0a\x2b\x47\x64\x00\x00\x0a\xac\x0a\x96\xcd\x84\ +\x00\x00\x0a\x4d\x0a\xd3\x55\x94\x00\x00\x05\x85\x0a\xf8\x55\x94\ +\x00\x00\x05\x2d\x0b\x61\x1d\x4e\x00\x00\x0f\xf7\x0d\x2c\x1d\x28\ +\x00\x00\x02\xe9\x0d\xaa\x21\x43\x00\x00\x0e\x4b\x0d\xdc\x00\x68\ +\x00\x00\x03\x78\x0e\x02\x4e\xea\x00\x00\x11\xaf\x0e\x75\xf9\x03\ +\x00\x00\x07\x7e\x0e\x80\x99\x15\x00\x00\x0f\xba\x0e\xc6\x00\x19\ +\x00\x00\x08\x9a\x0e\xcc\x78\xf1\x00\x00\x03\x2f\x0f\x18\x51\xc5\ +\x00\x00\x0d\x35\x0f\x68\xe5\xc7\x00\x00\x01\x7b\x0f\xd3\x1f\xf3\ +\x00\x00\x10\x45\x69\x00\x00\x12\x39\x03\x00\x00\x00\x1e\x96\x64\ +\x93\x2f\xff\x1a\x76\x7b\x93\x04\x6a\x94\x68\x48\x68\x3c\x5f\x0f\ +\x81\xf3\x53\x9f\x57\x8b\x53\x2f\x51\x65\x56\x68\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x2e\x44\x65\x62\x75\x67\x3a\x20\x52\x65\x67\ +\x69\x73\x74\x65\x72\x20\x66\x69\x6c\x65\x74\x79\x70\x65\x20\x74\ +\x6f\x20\x70\x72\x6f\x74\x6f\x74\x79\x70\x65\x20\x69\x6d\x70\x6f\ +\x72\x74\x65\x72\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x04\x50\ +\x4f\x65\x9c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x44\x65\x66\ +\x6c\x65\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x1c\x4e\x00\x82\x2c\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\ +\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x8a\x2d\x5b\x9a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x19\x47\x65\x6e\x65\x72\x61\x6c\x20\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x08\x4e\x00\x82\x2c\ +\x8a\x2d\x5b\x9a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\ +\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x1e\x82\xe5\x5d\xf2\x78\xba\x8a\ +\x8d\x00\x2c\x5c\x07\x65\xbc\x6a\x39\x67\x9d\x57\x16\x7d\x0d\x51\ +\x65\x51\x76\x5b\x50\x98\x05\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x47\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x46\x65\x61\x74\x75\x72\x65\x73\x20\x77\x69\ +\x6c\x6c\x20\x63\x6c\x61\x69\x6d\x20\x74\x68\x69\x65\x72\x20\x63\ +\x68\x69\x6c\x64\x72\x65\x6e\x20\x69\x6e\x20\x74\x68\x65\x20\x74\ +\x72\x65\x65\x20\x76\x69\x65\x77\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x1e\x82\xe5\x5d\xf2\x78\xba\x8a\x8d\x00\x2c\x59\x1a\x77\ +\xe9\x96\x63\x72\x69\x4e\xf6\x5c\x07\x67\x03\x53\xc3\x65\x78\x53\ +\x16\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x49\x66\x20\x74\x68\ +\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x4d\ +\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\x4f\x62\x6a\x65\x63\x74\ +\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x50\x61\x72\x61\x6d\x65\x74\ +\x72\x69\x63\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x08\x53\x40\ +\x57\xdf\x95\x77\x5e\xa6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x4c\x6f\x63\x61\x6c\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x08\x67\x00\x59\x27\x95\x77\x5e\xa6\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x4d\x61\x78\x4c\x65\x6e\x67\ +\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x08\x67\x00\x59\ +\x27\x97\x62\x7a\x4d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x4d\ +\x61\x78\x69\x6d\x75\x6d\x20\x41\x72\x65\x61\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x08\x67\x00\x59\x27\x95\x77\x5e\xa6\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0e\x4d\x61\x78\x69\x6d\x75\x6d\x20\ +\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x1a\x59\x1a\x90\x8a\x5f\x62\x00\x28\x00\x66\x00\x6e\x00\x29\x4e\ +\x4b\x67\x00\x59\x27\x97\x62\x65\x78\x91\xcf\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x29\x4d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\ \x62\x65\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x66\x6f\x72\ -\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x73\x20\x28\x66\x6e\x29\x3c\x2f\ -\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x70\x61\x63\x65\x72\ -\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\x61\ -\x6c\x53\x70\x61\x63\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\ -\x6d\x65\x3d\x22\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x22\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x65\x6e\ -\x75\x6d\x3e\x51\x74\x3a\x3a\x48\x6f\x72\x69\x7a\x6f\x6e\x74\x61\ -\x6c\x3c\x2f\x65\x6e\x75\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ -\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x73\x69\x7a\x65\x48\x69\x6e\ -\x74\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x69\x7a\x65\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\ -\x64\x74\x68\x3e\x34\x30\x3c\x2f\x77\x69\x64\x74\x68\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x68\x65\x69\x67\ -\x68\x74\x3e\x32\x30\x3c\x2f\x68\x65\x69\x67\x68\x74\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\x69\x7a\x65\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ -\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x2f\x73\x70\x61\x63\x65\x72\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\ -\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x53\x70\x69\x6e\x42\ -\x6f\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\ -\x72\x65\x66\x6d\x61\x78\x66\x6e\x73\x70\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ -\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\ -\x69\x6e\x67\x3e\x54\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\ -\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\ -\x6f\x66\x20\x61\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x2c\x20\x70\x72\ -\x69\x73\x6d\x20\x6f\x72\x20\x66\x72\x75\x73\x74\x75\x6d\x2e\x20\ -\x49\x66\x20\x66\x6e\x20\x69\x73\x20\x67\x72\x65\x61\x74\x65\x72\ -\x20\x74\x68\x61\x6e\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\ -\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x73\x20\x63\ -\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x74\x6f\x20\x62\x65\x20\ -\x61\x20\x63\x69\x72\x63\x75\x6c\x61\x72\x2e\x20\x53\x65\x74\x20\ -\x74\x6f\x20\x30\x20\x66\x6f\x72\x20\x6e\x6f\x20\x6c\x69\x6d\x69\ -\x74\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ -\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x76\x61\x6c\x75\x65\ -\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x6e\ -\x75\x6d\x62\x65\x72\x3e\x30\x3c\x2f\x6e\x75\x6d\x62\x65\x72\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ -\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\ -\x22\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\ -\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x75\x73\x65\x4d\ -\x61\x78\x46\x4e\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ -\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\ -\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\ -\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x4f\x70\x65\ -\x6e\x53\x43\x41\x44\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ -\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\ -\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\ -\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\ -\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\ -\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x4c\x61\x79\x6f\x75\x74\x5f\x33\ -\x22\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\ -\x3e\x0a\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\ -\x0a\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\ -\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x3c\x69\x74\ -\x65\x6d\x3e\x0a\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\ -\x63\x6c\x61\x73\x73\x3d\x22\x51\x47\x72\x6f\x75\x70\x42\x6f\x78\ -\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x72\x6f\x75\x70\x42\x6f\x78\ -\x5f\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\ -\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x69\x74\x6c\x65\x22\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\ -\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x70\x6f\x72\x74\x3c\ -\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x3c\x2f\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x3c\ -\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x56\ -\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\ -\x22\x76\x65\x72\x74\x69\x63\x61\x6c\x4c\x61\x79\x6f\x75\x74\x5f\ -\x32\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\ -\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\x4c\x61\x79\ -\x6f\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\ -\x6f\x6e\x74\x61\x6c\x4c\x61\x79\x6f\x75\x74\x5f\x32\x31\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\ -\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\x6c\x22\x20\ -\x6e\x61\x6d\x65\x3d\x22\x6c\x61\x62\x65\x6c\x22\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ -\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\ -\x67\x3e\x6d\x61\x78\x69\x6d\x75\x6d\x20\x66\x72\x61\x67\x6d\x65\ -\x6e\x74\x20\x73\x69\x7a\x65\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ -\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x73\x70\x61\x63\x65\x72\x20\x6e\x61\x6d\x65\x3d\x22\ -\x68\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x53\x70\x61\x63\x65\x72\ -\x5f\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6f\ -\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x65\x6e\x75\x6d\x3e\x51\x74\ -\x3a\x3a\x48\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x3c\x2f\x65\x6e\ -\x75\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\ -\x6d\x65\x3d\x22\x73\x69\x7a\x65\x48\x69\x6e\x74\x22\x20\x73\x74\ -\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x74\x68\x3e\x34\ -\x30\x3c\x2f\x77\x69\x64\x74\x68\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x68\x65\x69\x67\x68\x74\x3e\x32\x30\ -\x3c\x2f\x68\x65\x69\x67\x68\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x2f\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\ -\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\x70\ -\x61\x63\x65\x72\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ -\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\ -\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\ -\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x4c\x61\ -\x62\x65\x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\x6c\x61\x62\x65\x6c\ -\x5f\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\ -\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x6d\x69\x6e\x69\ -\x6d\x75\x6d\x20\x61\x6e\x67\x6c\x65\x20\x66\x6f\x72\x20\x61\x20\ -\x66\x72\x61\x67\x6d\x65\x6e\x74\x3c\x2f\x73\x74\x72\x69\x6e\x67\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ -\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ -\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x61\x6e\x67\x75\ -\x6c\x61\x72\x20\x28\x66\x61\x29\x3c\x2f\x73\x74\x72\x69\x6e\x67\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ -\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\ -\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x44\x6f\x75\x62\x6c\ -\x65\x53\x70\x69\x6e\x42\x6f\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\ -\x64\x6f\x75\x62\x6c\x65\x53\x70\x69\x6e\x42\x6f\x78\x5f\x32\x22\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\ -\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\ -\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x6d\x69\x6e\x69\x6d\x75\x6d\ +\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x73\x20\x28\x66\x6e\x29\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x08\x67\x00\x59\x27\x95\x77\x5e\ +\xa6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x61\x78\x69\x75\ +\x6d\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x08\x7d\xb2\x68\x3c\x90\x00\x7e\x2e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x66\x61\x6c\x6c\x62\x61\ +\x63\x6b\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x16\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x53\xef\x57\ +\xf7\x88\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x53\x2f\x51\xfa\x00\ +\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x20\x65\x78\x70\x6f\x72\x74\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x14\x53\x2f\x51\x65\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\ +\x53\x00\x43\x00\x41\x00\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x69\x6d\x70\x6f\x72\x74\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x56\x59\x82\x67\x9c\x00\ +\x66\x00\x6e\x59\x27\x65\xbc\x59\x1a\x90\x8a\x5f\x62\x30\x01\x00\ +\x20\x68\xf1\x5f\x62\x62\x16\x93\x10\x5f\x62\x97\x62\x4e\x4b\x67\ +\x00\x59\x27\x65\x78\x76\xee\x00\x2c\x72\x69\x4e\xf6\x5c\x07\x8a\ +\x8d\x70\xba\x66\x2f\x4e\x00\x57\x13\x5f\x62\x30\x02\x8a\x2d\x5b\ +\x9a\x00\x30\x88\x68\x79\x3a\x6c\x92\x67\x09\x96\x50\x52\x36\x30\ +\x02\x08\x00\x00\x00\x00\x06\x00\x00\x00\x9d\x54\x68\x65\x20\x6d\ +\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\ +\x20\x66\x61\x63\x65\x73\x20\x6f\x66\x20\x61\x20\x70\x6f\x6c\x79\ +\x67\x6f\x6e\x2c\x20\x70\x72\x69\x73\x6d\x20\x6f\x72\x20\x66\x72\ +\x75\x73\x74\x75\x6d\x2e\x20\x49\x66\x20\x66\x6e\x20\x69\x73\x20\ +\x67\x72\x65\x61\x74\x65\x72\x20\x74\x68\x61\x6e\x20\x74\x68\x69\ +\x73\x20\x76\x61\x6c\x75\x65\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x69\x73\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\ +\x20\x74\x6f\x20\x62\x65\x20\x61\x20\x63\x69\x72\x63\x75\x6c\x61\ +\x72\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\x30\x20\x66\x6f\x72\x20\ +\x6e\x6f\x20\x6c\x69\x6d\x69\x74\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x20\x6b\x64\x8d\xef\x5f\x91\x4e\x0b\x4e\x4b\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x53\xef\x57\ +\xf7\x88\x4c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x54\x68\x65\ +\x20\x70\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\x65\x61\x62\x6c\ +\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x0c\x4e\x09\x89\xd2\ +\x6e\x2c\x91\xcf\x8a\x2d\x5b\x9a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x16\x54\x72\x69\x61\x6e\x67\x75\x6c\x61\x74\x69\x6f\x6e\x20\ +\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x0e\x4f\x7f\x75\x28\x59\x1a\x77\xe9\x96\x63\x52\x9f\x80\ +\xfd\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x55\x73\x65\x20\x4d\ +\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\x46\x65\x61\x74\x75\x72\ +\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1a\x65\xbc\x6a\x39\ +\x67\x9d\x57\x16\x4f\x7f\x75\x28\x6a\xa2\x89\x96\x63\xd0\x4f\x9b\ +\x80\x05\x52\x9f\x80\xfd\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\ +\x55\x73\x65\x20\x56\x69\x65\x77\x50\x72\x6f\x76\x69\x64\x65\x72\ +\x20\x69\x6e\x20\x54\x72\x65\x65\x20\x56\x69\x65\x77\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x0c\x89\xd2\x00\x20\x00\x28\x00\x66\ +\x00\x61\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x61\x6e\ +\x67\x75\x6c\x61\x72\x20\x28\x66\x61\x29\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x04\x51\xf8\x5e\xa6\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x63\x6f\x6e\x76\x65\x78\x69\x74\x79\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x04\x50\x4f\x65\x9c\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0a\x64\x65\x66\x6c\x65\x63\x74\x69\x6f\x6e\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x08\x53\x40\x57\xdf\x95\x77\ +\x5e\xa6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x6c\x6f\x63\x61\ +\x6c\x4c\x65\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x08\x67\ +\x00\x59\x27\x97\x62\x7a\x4d\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x07\x6d\x61\x78\x41\x72\x65\x61\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x0e\x72\x47\x6b\xb5\x4e\x4b\x5c\x0d\x59\x27\x5c\x3a\x5b\ +\xf8\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x6d\x61\x78\x69\x6d\ +\x75\x6d\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x20\x73\x69\x7a\x65\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x0e\x72\x47\x6b\xb5\x4e\ +\x4b\x67\x00\x5c\x0f\x89\xd2\x5e\xa6\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1c\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x61\x6e\x67\x6c\x65\ +\x20\x66\x6f\x72\x20\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x0e\x72\x47\x6b\xb5\x4e\x4b\ +\x67\x00\x5c\x0f\x5c\x3a\x5b\xf8\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1a\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x73\x69\x7a\x65\x20\x6f\ +\x66\x20\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x04\x00\x6d\x00\x6d\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x02\x6d\x6d\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x0c\x5c\x3a\x5b\xf8\x00\x28\x00\x66\x00\x73\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x73\x69\x7a\x65\x20\x28\x66\x73\ +\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x02\x00\xb0\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x01\xb0\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x06\x63\x09\x78\xba\x5b\x9a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x20\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x22\ +\x6d\xfb\x52\xa0\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\ +\x00\x43\x00\x41\x00\x44\x00\x20\x51\x43\x7d\x20\x00\x2e\x00\x2e\ +\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x41\x64\x64\x20\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x45\x6c\x65\x6d\x65\x6e\x74\ +\x2e\x2e\x2e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x4a\x85\xc9\x75\x31\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x8a\x9e\x6c\xd5\x52\xa0\ +\x51\x65\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\ +\x00\x44\x51\x43\x7d\x20\x4e\x26\x57\xf7\x88\x4c\x00\x4f\x00\x70\ +\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x7a\x0b\x5f\x0f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\x41\x64\x64\x20\x61\x6e\ +\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x6c\x65\x6d\x65\x6e\ +\x74\x20\x62\x79\x20\x65\x6e\x74\x65\x72\x69\x6e\x67\x20\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x20\x63\x6f\x64\x65\x20\x61\x6e\x64\x20\ +\x65\x78\x65\x63\x75\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x20\x62\x69\x6e\x61\x72\x79\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x0a\ +\x5c\x0d\x90\x20\x57\x8b\x4e\x0a\x82\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x43\x6f\x6c\x6f\x72\x20\x53\x68\x61\x70\x65\x73\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x16\x4f\x9d\x6b\x63\x5e\x38\x53\xca\x57\x8b\x5f\x0f\x5c\ +\x0d\x90\x20\x57\x8b\x4e\x0a\x82\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x21\x43\x6f\x6c\x6f\x72\x20\x53\x68\x61\x70\x65\x73\x20\ +\x62\x79\x20\x76\x61\x6c\x69\x64\x69\x74\x79\x20\x61\x6e\x64\x20\ +\x74\x79\x70\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x0a\x8f\x49\x63\xdb\x90\x8a\x70\xba\x97\ +\x62\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\x6f\x6e\x76\x65\ +\x72\x74\x20\x45\x64\x67\x65\x73\x20\x54\x6f\x20\x46\x61\x63\x65\ +\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x0a\x8f\x49\x63\xdb\x90\x8a\x70\xba\x97\x62\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\x20\ +\x45\x64\x67\x65\x73\x20\x74\x6f\x20\x46\x61\x63\x65\x73\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x10\x5e\xfa\x7a\xcb\x5f\xae\x8a\xbf\x90\x20\x57\x8b\x52\x9f\x80\ +\xfd\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x43\x72\x65\x61\x74\ +\x65\x20\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\ +\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x08\x64\xf4\x59\x27\x91\x4d\x7f\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x45\x78\x70\x61\x6e\ +\x64\x20\x50\x6c\x61\x63\x65\x6d\x65\x6e\x74\x73\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x0e\x5c\ +\x55\x95\x8b\x62\x40\x67\x09\x52\x9f\x80\xfd\x6a\x39\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x2f\x45\x78\x70\x61\x6e\x64\x20\x61\x6c\ +\x6c\x20\x70\x6c\x61\x63\x65\x6d\x65\x6e\x74\x73\x20\x64\x6f\x77\ +\x6e\x77\x61\x72\x64\x73\x20\x74\x68\x65\x20\x46\x65\x61\x74\x75\ +\x72\x65\x54\x72\x65\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x10\x8a\xcb\x51\x48\x90\x78\x64\ +\xc7\x00\x33\x50\x0b\x72\x69\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1d\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\ +\x20\x33\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x69\x72\x73\x74\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x06\x63\x09\x78\xba\x5b\x9a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x20\x62\x95\ +\x5f\x71\x52\x9f\x80\xfd\x5c\x1a\x5f\x85\x00\x50\x00\x65\x00\x74\ +\x00\x65\x00\x72\x00\x20\x00\x4c\x00\x69\x64\xb0\x5b\xeb\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x2d\x50\x72\x6f\x6a\x65\x63\x74\x69\ +\x6f\x6e\x20\x4e\x6f\x74\x20\x79\x65\x74\x20\x43\x6f\x64\x65\x64\ +\x20\x77\x61\x69\x74\x69\x6e\x67\x20\x66\x6f\x72\x20\x50\x65\x74\ +\x65\x72\x20\x4c\x69\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x0c\x5f\xae\x8a\xbf\x90\x20\x57\x8b\ +\x52\x9f\x80\xfd\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x52\x65\ +\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\x65\x61\x74\x75\ +\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x10\x79\xfb\x96\x64\x72\x69\x4e\xf6\x53\xca\x51\ +\x76\x5b\x50\x96\xc6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x52\ +\x65\x6d\x6f\x76\x65\x20\x4f\x62\x6a\x65\x63\x74\x73\x20\x61\x6e\ +\x64\x20\x74\x68\x65\x69\x72\x20\x43\x68\x69\x6c\x64\x72\x65\x6e\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x28\x79\xfb\x96\x64\x62\x40\x90\x78\x72\x69\x4e\xf6\x53\ +\xca\x51\x76\x67\x2a\x88\xab\x51\x76\x4e\xd6\x72\x69\x4e\xf6\x7d\ +\x22\x5f\x15\x75\x28\x4e\x4b\x5b\x50\x96\xc6\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x58\x52\x65\x6d\x6f\x76\x65\x73\x20\x74\x68\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x61\x6e\x64\x20\x61\x6c\x6c\x20\x63\x68\x69\x6c\x64\x72\ +\x65\x6e\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\ +\x72\x65\x66\x65\x72\x65\x6e\x63\x65\x64\x20\x66\x72\x6f\x6d\x20\ +\x6f\x74\x68\x65\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x08\ +\x53\xd6\x4e\xe3\x72\x69\x4e\xf6\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0e\x52\x65\x70\x6c\x61\x63\x65\x20\x4f\x62\x6a\x65\x63\x74\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x2e\x66\xff\x63\xdb\x52\x9f\x80\xfd\x6a\x39\x4e\x2d\x4e\ +\x4b\x72\x69\x4e\xf6\xff\x0c\x8a\xcb\x90\x78\x64\xc7\x82\x0a\x67\ +\x09\x00\x2c\x65\xb0\x5e\xfa\x62\x16\x73\xfe\x5b\x58\x72\x69\x4e\ +\xf6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x52\x65\x70\x6c\x61\ +\x63\x65\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x20\ +\x74\x68\x65\x20\x46\x65\x61\x74\x75\x72\x65\x20\x54\x72\x65\x65\ +\x2e\x20\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\x20\ +\x6f\x6c\x64\x2c\x20\x6e\x65\x77\x20\x61\x6e\x64\x20\x70\x61\x72\ +\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x57\xf7\x88\ +\x4c\x93\x2f\x8a\xa4\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x52\ +\x75\x6e\x6e\x69\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\ +\x66\x61\x69\x6c\x65\x64\x0a\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x0c\x6b\x64\x52\x9f\x80\xfd\ +\x67\x2a\x65\x2f\x63\xf4\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\ +\x55\x6e\x73\x75\x70\x70\x6f\x72\x74\x65\x64\x20\x46\x75\x6e\x63\ +\x74\x69\x6f\x6e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\ +\x00\x00\x1b\x89\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x01\xa0\x00\x00\x00\xb0\x00\x00\x0f\xa6\x00\x00\x07\x3d\ +\x00\x00\x0f\x1b\x00\x39\xdf\x33\x00\x00\x01\x92\x00\x72\x97\x49\ +\x00\x00\x0f\x56\x01\x0c\x64\xae\x00\x00\x10\x16\x01\x38\xb0\x83\ +\x00\x00\x11\x8e\x01\x40\x42\x85\x00\x00\x0b\x05\x02\x1f\xd9\x48\ +\x00\x00\x03\xe6\x02\x7b\x37\xc4\x00\x00\x14\x75\x02\xbc\x05\x8e\ +\x00\x00\x0c\xb1\x02\xbe\x05\x8e\x00\x00\x00\xbf\x03\x8c\x88\xc1\ +\x00\x00\x0d\x51\x05\x08\x5c\x93\x00\x00\x03\x09\x05\x16\xa3\x95\ +\x00\x00\x13\x0d\x05\x66\x9a\x34\x00\x00\x07\xe1\x05\x98\x15\x8e\ +\x00\x00\x0d\x04\x05\xcc\x9a\xd9\x00\x00\x0c\x61\x05\xe4\x1f\xa9\ +\x00\x00\x10\x78\x05\xfb\x21\x0b\x00\x00\x06\x53\x06\xe4\x0a\x14\ +\x00\x00\x18\x07\x06\xee\xa0\xc5\x00\x00\x09\xed\x07\x5d\xec\x93\ +\x00\x00\x12\xae\x07\x5d\xee\x93\x00\x00\x12\x4f\x07\xda\x68\xe7\ +\x00\x00\x0b\x7c\x07\xe4\xd0\x65\x00\x00\x0d\x9b\x08\x10\xb3\x89\ +\x00\x00\x05\x47\x08\x37\x4e\x99\x00\x00\x15\x1e\x08\x4d\xc0\x2e\ +\x00\x00\x19\x76\x08\x5d\x45\x73\x00\x00\x01\x12\x08\xa5\x45\x08\ +\x00\x00\x05\xf7\x08\xca\x52\x4b\x00\x00\x14\xe9\x08\xca\x72\x4b\ +\x00\x00\x0f\xde\x08\xe2\x7f\xe5\x00\x00\x13\xcb\x09\x2b\x77\x54\ +\x00\x00\x17\xc0\x09\xc0\x82\xb5\x00\x00\x06\xaf\x0a\x22\x8d\xb2\ +\x00\x00\x00\x00\x0a\x2b\x47\x64\x00\x00\x0e\x98\x0a\x96\xcd\x84\ +\x00\x00\x0e\x0f\x0a\xd3\x55\x94\x00\x00\x07\x7f\x0a\xf8\x55\x94\ +\x00\x00\x07\x1d\x0b\x61\x1d\x4e\x00\x00\x16\x1b\x0d\x2c\x1d\x28\ +\x00\x00\x04\x3f\x0d\xaa\x21\x43\x00\x00\x13\x7b\x0d\xdc\x00\x68\ +\x00\x00\x04\xe8\x0e\x02\x4e\xea\x00\x00\x19\x11\x0e\x75\xf9\x03\ +\x00\x00\x0a\x8e\x0e\x80\x99\x15\x00\x00\x15\xc2\x0e\xc6\x00\x19\ +\x00\x00\x0c\x08\x0e\xcc\x78\xf1\x00\x00\x04\x8f\x0f\x18\x51\xc5\ +\x00\x00\x11\xcf\x0f\x68\xe5\xc7\x00\x00\x01\xff\x0f\xd3\x1f\xf3\ +\x00\x00\x16\x9b\x69\x00\x00\x19\xcf\x03\x00\x00\x00\x5c\x00\x44\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x3a\x00\x20\x00\x52\x00\x65\ +\x00\x67\x00\x69\x00\x73\x00\x74\x00\x65\x00\x72\x00\x20\x00\x66\ +\x00\x69\x00\x6c\x00\x65\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x74\x00\x6f\ +\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2e\x44\x65\x62\x75\x67\x3a\x20\x52\x65\x67\x69\x73\ +\x74\x65\x72\x20\x66\x69\x6c\x65\x74\x79\x70\x65\x20\x74\x6f\x20\ +\x70\x72\x6f\x74\x6f\x74\x79\x70\x65\x20\x69\x6d\x70\x6f\x72\x74\ +\x65\x72\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x44\x00\ +\x65\x00\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x44\x65\x66\x6c\x65\ +\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x32\ +\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x53\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x65\x6e\x65\ +\x72\x61\x6c\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x28\ +\x00\x41\x00\x6c\x00\x67\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x65\ +\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\ +\x00\x69\x00\x6e\x00\x67\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\ +\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x8e\x00\x49\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\ +\x64\x00\x2c\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\ +\x72\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\ +\x20\x00\x63\x00\x6c\x00\x61\x00\x69\x00\x6d\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x65\x00\x72\x00\x20\x00\x63\x00\x68\x00\x69\x00\ +\x6c\x00\x64\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x74\x00\x72\x00\x65\x00\ +\x65\x00\x20\x00\x76\x00\x69\x00\x65\x00\x77\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x47\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\ +\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x46\x65\x61\x74\x75\x72\x65\ +\x73\x20\x77\x69\x6c\x6c\x20\x63\x6c\x61\x69\x6d\x20\x74\x68\x69\ +\x65\x72\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\x69\x6e\x20\x74\ +\x68\x65\x20\x74\x72\x65\x65\x20\x76\x69\x65\x77\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x70\x00\x49\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\ +\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ +\x4d\x00\x75\x00\x6c\x00\x74\x00\x6d\x00\x61\x00\x74\x00\x72\x00\ +\x69\x00\x78\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\ +\x65\x00\x20\x00\x50\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\ +\x74\x00\x72\x00\x69\x00\x63\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x38\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x4d\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\ +\x4f\x62\x6a\x65\x63\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x50\ +\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x18\x00\x4c\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x20\ +\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x4c\x6f\x63\x61\x6c\x20\x4c\x65\x6e\x67\ +\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\x4d\x00\ +\x61\x00\x78\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x4d\x61\x78\x4c\x65\x6e\x67\ +\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x4d\x00\ +\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x41\x00\ +\x72\x00\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x4d\ +\x61\x78\x69\x6d\x75\x6d\x20\x41\x72\x65\x61\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x1c\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\ +\x00\x75\x00\x6d\x00\x20\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\ +\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x4d\x61\x78\x69\ +\x6d\x75\x6d\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x52\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\ +\x75\x00\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\ +\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x66\x00\x61\x00\x63\x00\ +\x65\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x70\x00\ +\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\ +\x28\x00\x66\x00\x6e\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x29\x4d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\ +\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x66\x6f\x72\x20\x70\x6f\x6c\ +\x79\x67\x6f\x6e\x73\x20\x28\x66\x6e\x29\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x1a\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x75\x00\ +\x6d\x00\x20\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x61\x78\x69\x75\x6d\x20\ +\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x1a\x00\x4d\x00\x65\x00\x73\x00\x68\x00\x20\x00\x66\x00\x61\x00\ +\x6c\x00\x6c\x00\x62\x00\x61\x00\x63\x00\x6b\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x66\x61\x6c\x6c\x62\x61\ +\x63\x6b\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x26\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\ +\x65\x00\x78\x00\x65\x00\x63\x00\x75\x00\x74\x00\x61\x00\x62\x00\ +\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1e\x00\x4f\x00\x70\x00\ +\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\ +\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x70\x6f\ +\x72\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1e\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\ +\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x69\x6d\ +\x70\x6f\x72\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x01\x3a\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x78\x00\x69\x00\ +\x6d\x00\x75\x00\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\ +\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x66\x00\x61\x00\ +\x63\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\ +\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\ +\x2c\x00\x20\x00\x70\x00\x72\x00\x69\x00\x73\x00\x6d\x00\x20\x00\ +\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\x75\x00\x73\x00\x74\x00\ +\x75\x00\x6d\x00\x2e\x00\x20\x00\x49\x00\x66\x00\x20\x00\x66\x00\ +\x6e\x00\x20\x00\x69\x00\x73\x00\x20\x00\x67\x00\x72\x00\x65\x00\ +\x61\x00\x74\x00\x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\x61\x00\ +\x6e\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x76\x00\ +\x61\x00\x6c\x00\x75\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ +\x69\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\ +\x64\x00\x65\x00\x72\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x62\x00\x65\x00\x20\x00\x61\x00\x20\x00\x63\x00\x69\x00\ +\x72\x00\x63\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x2e\x00\x20\x00\ +\x53\x00\x65\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x30\x00\ +\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\ +\x6c\x00\x69\x00\x6d\x00\x69\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x9d\x54\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6e\ +\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x6f\ +\x66\x20\x61\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x2c\x20\x70\x72\x69\ +\x73\x6d\x20\x6f\x72\x20\x66\x72\x75\x73\x74\x75\x6d\x2e\x20\x49\ +\x66\x20\x66\x6e\x20\x69\x73\x20\x67\x72\x65\x61\x74\x65\x72\x20\ +\x74\x68\x61\x6e\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\ +\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x73\x20\x63\x6f\ +\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x74\x6f\x20\x62\x65\x20\x61\ +\x20\x63\x69\x72\x63\x75\x6c\x61\x72\x2e\x20\x53\x65\x74\x20\x74\ +\x6f\x20\x30\x20\x66\x6f\x72\x20\x6e\x6f\x20\x6c\x69\x6d\x69\x74\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x48\x00\x54\x00\x68\x00\ +\x65\x00\x20\x00\x70\x00\x61\x00\x74\x00\x68\x00\x20\x00\x74\x00\ +\x6f\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x4f\x00\x70\x00\ +\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\ +\x78\x00\x65\x00\x63\x00\x75\x00\x74\x00\x65\x00\x61\x00\x62\x00\ +\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x54\x68\x65\ +\x20\x70\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\x65\x61\x62\x6c\ +\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x54\x00\x72\ +\x00\x69\x00\x61\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x74\x00\x74\ +\x00\x69\x00\x6e\x00\x67\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x16\x54\x72\x69\x61\x6e\x67\x75\x6c\x61\x74\x69\x6f\x6e\x20\ +\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x2c\x00\x55\x00\x73\x00\x65\x00\x20\x00\x4d\x00\x75\x00\ +\x6c\x00\x74\x00\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\x78\x00\ +\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x16\x55\x73\x65\x20\x4d\x75\x6c\ +\x74\x6d\x61\x74\x72\x69\x78\x20\x46\x65\x61\x74\x75\x72\x65\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3a\x00\x55\x00\x73\x00\x65\ +\x00\x20\x00\x56\x00\x69\x00\x65\x00\x77\x00\x50\x00\x72\x00\x6f\ +\x00\x76\x00\x69\x00\x64\x00\x65\x00\x72\x00\x20\x00\x69\x00\x6e\ +\x00\x20\x00\x54\x00\x72\x00\x65\x00\x65\x00\x20\x00\x56\x00\x69\ +\x00\x65\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\ +\x65\x20\x56\x69\x65\x77\x50\x72\x6f\x76\x69\x64\x65\x72\x20\x69\ +\x6e\x20\x54\x72\x65\x65\x20\x56\x69\x65\x77\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x18\x00\x61\x00\x6e\x00\x67\x00\x75\x00\x6c\ +\x00\x61\x00\x72\x00\x20\x00\x28\x00\x66\x00\x61\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0c\x61\x6e\x67\x75\x6c\x61\x72\x20\ +\x28\x66\x61\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\ +\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x78\x00\x69\x00\x74\x00\ +\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x63\x6f\x6e\x76\x65\ +\x78\x69\x74\x79\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\ +\x64\x00\x65\x00\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x64\x65\x66\ +\x6c\x65\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x10\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x4c\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x6c\x6f\x63\x61\ +\x6c\x4c\x65\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x0e\x00\ +\x6d\x00\x61\x00\x78\x00\x41\x00\x72\x00\x65\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x07\x6d\x61\x78\x41\x72\x65\x61\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x2a\x00\x6d\x00\x61\x00\x78\x00\ +\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x66\x00\x72\x00\x61\x00\ +\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x73\x00\x69\x00\ +\x7a\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x6d\x61\x78\ +\x69\x6d\x75\x6d\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x20\x73\x69\ +\x7a\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x38\x00\x6d\x00\ +\x69\x00\x6e\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x61\x00\ +\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x20\x00\x61\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x6d\ +\x69\x6e\x69\x6d\x75\x6d\x20\x61\x6e\x67\x6c\x65\x20\x66\x6f\x72\ +\x20\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x34\x00\x6d\x00\x69\x00\x6e\x00\x69\x00\x6d\ +\x00\x75\x00\x6d\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\ +\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x20\x00\x66\x00\x72\x00\x61\ +\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1a\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x73\x69\x7a\x65\ +\x20\x6f\x66\x20\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x04\x00\x6d\x00\x6d\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x02\x6d\x6d\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x12\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x28\ +\x00\x66\x00\x73\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x73\x69\x7a\x65\x20\x28\x66\x73\x29\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x02\x00\xb0\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\ +\xb0\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\x20\x00\x50\ +\x00\x72\x00\x65\x00\x73\x00\x73\x00\x20\x00\x4f\x00\x4b\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x20\x50\x72\x65\x73\x73\x20\x4f\ +\x4b\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x2e\x00\x41\x00\x64\x00\x64\x00\x20\x00\x4f\x00\x70\ +\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x45\ +\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x2e\ +\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x41\x64\x64\x20\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x45\x6c\x65\x6d\x65\x6e\x74\ +\x2e\x2e\x2e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\xa6\x00\x41\x00\x64\x00\x64\x00\x20\x00\x61\ +\x00\x6e\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\ +\x00\x41\x00\x44\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\ +\x00\x6e\x00\x74\x00\x20\x00\x62\x00\x79\x00\x20\x00\x65\x00\x6e\ +\x00\x74\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\ +\x00\x63\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x64\ +\x00\x20\x00\x65\x00\x78\x00\x65\x00\x63\x00\x75\x00\x74\x00\x69\ +\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\ +\x00\x62\x00\x69\x00\x6e\x00\x61\x00\x72\x00\x79\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x53\x41\x64\x64\x20\x61\x6e\x20\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\x62\x79\ +\x20\x65\x6e\x74\x65\x72\x69\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x20\x63\x6f\x64\x65\x20\x61\x6e\x64\x20\x65\x78\x65\x63\ +\x75\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x20\x62\x69\x6e\x61\x72\x79\x07\x00\x00\x00\x08\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x43\x00\x6f\ +\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\ +\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x6f\ +\x6c\x6f\x72\x20\x53\x68\x61\x70\x65\x73\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x42\x00\x43\x00\ +\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x53\x00\x68\x00\x61\x00\ +\x70\x00\x65\x00\x73\x00\x20\x00\x62\x00\x79\x00\x20\x00\x76\x00\ +\x61\x00\x6c\x00\x69\x00\x64\x00\x69\x00\x74\x00\x79\x00\x20\x00\ +\x61\x00\x6e\x00\x64\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x21\x43\x6f\x6c\x6f\x72\x20\x53\ +\x68\x61\x70\x65\x73\x20\x62\x79\x20\x76\x61\x6c\x69\x64\x69\x74\ +\x79\x20\x61\x6e\x64\x20\x74\x79\x70\x65\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x43\x00\ +\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x20\x00\x45\x00\ +\x64\x00\x67\x00\x65\x00\x73\x00\x20\x00\x54\x00\x6f\x00\x20\x00\ +\x46\x00\x61\x00\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\x67\x65\x73\ +\x20\x54\x6f\x20\x46\x61\x63\x65\x73\x07\x00\x00\x00\x08\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x43\x00\x6f\ +\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x20\x00\x45\x00\x64\ +\x00\x67\x00\x65\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x46\ +\x00\x61\x00\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\x67\x65\x73\x20\ +\x74\x6f\x20\x46\x61\x63\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x36\x00\x43\x00\x72\x00\ +\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x52\x00\x65\x00\x66\x00\ +\x69\x00\x6e\x00\x65\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\ +\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x43\x72\x65\x61\x74\ +\x65\x20\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\ +\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x22\x00\x45\x00\x78\x00\x70\x00\ +\x61\x00\x6e\x00\x64\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x63\x00\ +\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x11\x45\x78\x70\x61\x6e\x64\x20\x50\x6c\x61\x63\ +\x65\x6d\x65\x6e\x74\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x5e\x00\x45\x00\x78\x00\x70\x00\ +\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\ +\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x73\x00\x20\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x77\x00\ +\x61\x00\x72\x00\x64\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x00\ +\x54\x00\x72\x00\x65\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2f\x45\x78\x70\x61\x6e\x64\x20\x61\x6c\x6c\x20\x70\x6c\x61\x63\ +\x65\x6d\x65\x6e\x74\x73\x20\x64\x6f\x77\x6e\x77\x61\x72\x64\x73\ +\x20\x74\x68\x65\x20\x46\x65\x61\x74\x75\x72\x65\x54\x72\x65\x65\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x3a\x00\x50\x00\x6c\x00\x65\x00\x61\x00\x73\x00\x65\x00\ +\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\ +\x33\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x73\x00\x20\x00\x66\x00\x69\x00\x72\x00\x73\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1d\x50\x6c\x65\x61\x73\x65\x20\x73\x65\ +\x6c\x65\x63\x74\x20\x33\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\ +\x69\x72\x73\x74\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x10\x00\x50\x00\x72\x00\x65\x00\x73\x00\ +\x73\x00\x20\x00\x4f\x00\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x08\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\x00\x00\x00\x08\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x5a\x00\x50\x00\x72\ +\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x20\x00\x79\x00\x65\x00\x74\ +\x00\x20\x00\x43\x00\x6f\x00\x64\x00\x65\x00\x64\x00\x20\x00\x77\ +\x00\x61\x00\x69\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x66\ +\x00\x6f\x00\x72\x00\x20\x00\x50\x00\x65\x00\x74\x00\x65\x00\x72\ +\x00\x20\x00\x4c\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\ +\x50\x72\x6f\x6a\x65\x63\x74\x69\x6f\x6e\x20\x4e\x6f\x74\x20\x79\ +\x65\x74\x20\x43\x6f\x64\x65\x64\x20\x77\x61\x69\x74\x69\x6e\x67\ +\x20\x66\x6f\x72\x20\x50\x65\x74\x65\x72\x20\x4c\x69\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x28\ +\x00\x52\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x53\ +\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\ +\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x14\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\ +\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x42\x00\x52\x00\x65\x00\x6d\x00\ +\x6f\x00\x76\x00\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x69\x00\x72\x00\x20\x00\x43\x00\x68\x00\ +\x69\x00\x6c\x00\x64\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x21\x52\x65\x6d\x6f\x76\x65\x20\x4f\x62\x6a\x65\ +\x63\x74\x73\x20\x61\x6e\x64\x20\x74\x68\x65\x69\x72\x20\x43\x68\ +\x69\x6c\x64\x72\x65\x6e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\xb0\x00\x52\x00\x65\x00\x6d\x00\ +\x6f\x00\x76\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\ +\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x6c\x00\ +\x6c\x00\x20\x00\x63\x00\x68\x00\x69\x00\x6c\x00\x64\x00\x72\x00\ +\x65\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\ +\x61\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\ +\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\ +\x65\x00\x64\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\ +\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x58\x52\x65\x6d\x6f\x76\x65\x73\x20\x74\x68\x65\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x61\x6e\x64\x20\x61\x6c\x6c\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\ +\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x72\x65\ +\x66\x65\x72\x65\x6e\x63\x65\x64\x20\x66\x72\x6f\x6d\x20\x6f\x74\ +\x68\x65\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1c\x00\x52\ +\x00\x65\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x20\x00\x4f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0e\x52\x65\x70\x6c\x61\x63\x65\x20\x4f\x62\x6a\x65\ +\x63\x74\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x9e\x00\x52\x00\x65\x00\x70\x00\x6c\x00\x61\x00\ +\x63\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\ +\x75\x00\x72\x00\x65\x00\x20\x00\x54\x00\x72\x00\x65\x00\x65\x00\ +\x2e\x00\x20\x00\x50\x00\x6c\x00\x65\x00\x61\x00\x73\x00\x65\x00\ +\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\ +\x6f\x00\x6c\x00\x64\x00\x2c\x00\x20\x00\x6e\x00\x65\x00\x77\x00\ +\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x70\x00\x61\x00\x72\x00\ +\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x52\x65\x70\ +\x6c\x61\x63\x65\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\ +\x6e\x20\x74\x68\x65\x20\x46\x65\x61\x74\x75\x72\x65\x20\x54\x72\ +\x65\x65\x2e\x20\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\ +\x74\x20\x6f\x6c\x64\x2c\x20\x6e\x65\x77\x20\x61\x6e\x64\x20\x70\ +\x61\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x30\x00\ +\x52\x00\x75\x00\x6e\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\ +\x20\x00\x66\x00\x61\x00\x69\x00\x6c\x00\x65\x00\x64\x00\x0a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x18\x52\x75\x6e\x6e\x69\x6e\x67\ +\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x66\x61\x69\x6c\x65\x64\ +\x0a\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x28\x00\x55\x00\x6e\x00\x73\x00\x75\x00\x70\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x64\x00\x20\x00\x46\x00\x75\ +\x00\x6e\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x14\x55\x6e\x73\x75\x70\x70\x6f\x72\x74\x65\ +\x64\x20\x46\x75\x6e\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x00\x00\x1b\x95\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x01\xa0\x00\x00\x00\xb0\x00\x00\x0f\xb2\x00\x00\x07\x3d\ +\x00\x00\x0f\x27\x00\x39\xdf\x33\x00\x00\x01\x90\x00\x72\x97\x49\ +\x00\x00\x0f\x62\x01\x0c\x64\xae\x00\x00\x10\x22\x01\x38\xb0\x83\ +\x00\x00\x11\x9a\x01\x40\x42\x85\x00\x00\x0b\x11\x02\x1f\xd9\x48\ +\x00\x00\x04\x00\x02\x7b\x37\xc4\x00\x00\x14\x81\x02\xbc\x05\x8e\ +\x00\x00\x0c\xbd\x02\xbe\x05\x8e\x00\x00\x00\xbf\x03\x8c\x88\xc1\ +\x00\x00\x0d\x5d\x05\x08\x5c\x93\x00\x00\x03\x23\x05\x16\xa3\x95\ +\x00\x00\x13\x19\x05\x66\x9a\x34\x00\x00\x07\xfb\x05\x98\x15\x8e\ +\x00\x00\x0d\x10\x05\xcc\x9a\xd9\x00\x00\x0c\x6d\x05\xe4\x1f\xa9\ +\x00\x00\x10\x84\x05\xfb\x21\x0b\x00\x00\x06\x6d\x06\xe4\x0a\x14\ +\x00\x00\x18\x13\x06\xee\xa0\xc5\x00\x00\x0a\x07\x07\x5d\xec\x93\ +\x00\x00\x12\xba\x07\x5d\xee\x93\x00\x00\x12\x5b\x07\xda\x68\xe7\ +\x00\x00\x0b\x88\x07\xe4\xd0\x65\x00\x00\x0d\xa7\x08\x10\xb3\x89\ +\x00\x00\x05\x61\x08\x37\x4e\x99\x00\x00\x15\x2a\x08\x4d\xc0\x2e\ +\x00\x00\x19\x82\x08\x5d\x45\x73\x00\x00\x01\x12\x08\xa5\x45\x08\ +\x00\x00\x06\x11\x08\xca\x52\x4b\x00\x00\x14\xf5\x08\xca\x72\x4b\ +\x00\x00\x0f\xea\x08\xe2\x7f\xe5\x00\x00\x13\xd7\x09\x2b\x77\x54\ +\x00\x00\x17\xcc\x09\xc0\x82\xb5\x00\x00\x06\xc9\x0a\x22\x8d\xb2\ +\x00\x00\x00\x00\x0a\x2b\x47\x64\x00\x00\x0e\xa4\x0a\x96\xcd\x84\ +\x00\x00\x0e\x1b\x0a\xd3\x55\x94\x00\x00\x07\x99\x0a\xf8\x55\x94\ +\x00\x00\x07\x37\x0b\x61\x1d\x4e\x00\x00\x16\x27\x0d\x2c\x1d\x28\ +\x00\x00\x04\x59\x0d\xaa\x21\x43\x00\x00\x13\x87\x0d\xdc\x00\x68\ +\x00\x00\x05\x02\x0e\x02\x4e\xea\x00\x00\x19\x1d\x0e\x75\xf9\x03\ +\x00\x00\x0a\x9a\x0e\x80\x99\x15\x00\x00\x15\xce\x0e\xc6\x00\x19\ +\x00\x00\x0c\x14\x0e\xcc\x78\xf1\x00\x00\x04\xa9\x0f\x18\x51\xc5\ +\x00\x00\x11\xdb\x0f\x68\xe5\xc7\x00\x00\x01\xf3\x0f\xd3\x1f\xf3\ +\x00\x00\x16\xa7\x69\x00\x00\x19\xdb\x03\x00\x00\x00\x5c\x00\x44\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x3a\x00\x20\x00\x52\x00\x65\ +\x00\x67\x00\x69\x00\x73\x00\x74\x00\x65\x00\x72\x00\x20\x00\x66\ +\x00\x69\x00\x6c\x00\x65\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x74\x00\x6f\ +\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2e\x44\x65\x62\x75\x67\x3a\x20\x52\x65\x67\x69\x73\ +\x74\x65\x72\x20\x66\x69\x6c\x65\x74\x79\x70\x65\x20\x74\x6f\x20\ +\x70\x72\x6f\x74\x6f\x74\x79\x70\x65\x20\x69\x6d\x70\x6f\x72\x74\ +\x65\x72\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x44\x00\ +\x65\x00\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x44\x65\x66\x6c\x65\ +\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x30\ +\x00\x53\x00\x65\x00\x74\x01\x03\x00\x72\x00\x69\x00\x20\x00\x67\ +\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x65\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x65\x6e\x65\x72\x61\ +\x6c\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1e\x00\x53\ +\x00\x65\x00\x74\x01\x03\x00\x72\x00\x69\x00\x20\x00\x67\x00\x65\ +\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\ +\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\xb4\x00\x44\x00\x61\x00\x63\x01\x03\x00\x20\x00\x61\x00\x63\x00\ +\x65\x00\x61\x00\x73\x00\x74\x01\x03\x00\x20\x00\x63\x00\x61\x00\ +\x73\x00\x75\x01\x63\x01\x03\x00\x20\x00\x65\x00\x73\x00\x74\x00\ +\x65\x00\x20\x00\x62\x00\x69\x00\x66\x00\x61\x00\x74\x01\x03\x00\ +\x2c\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\ +\x65\x00\x6e\x00\x74\x00\x65\x00\x6c\x00\x65\x00\x20\x00\xee\x01\ +\x5f\x00\x69\x00\x20\x00\x76\x00\x6f\x00\x72\x00\x20\x00\xee\x00\ +\x6e\x00\x73\x00\x75\x01\x5f\x00\x69\x00\x69\x00\x20\x00\x63\x00\ +\x6f\x00\x70\x00\x69\x00\x69\x00\x20\x00\xee\x00\x6e\x00\x20\x00\ +\x76\x00\x69\x00\x7a\x00\x75\x00\x61\x00\x6c\x00\x69\x00\x7a\x00\ +\x61\x00\x72\x00\x65\x00\x61\x00\x20\x00\x61\x00\x72\x00\x62\x00\ +\x6f\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x47\x49\ +\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\ +\x64\x2c\x20\x46\x65\x61\x74\x75\x72\x65\x73\x20\x77\x69\x6c\x6c\ +\x20\x63\x6c\x61\x69\x6d\x20\x74\x68\x69\x65\x72\x20\x63\x68\x69\ +\x6c\x64\x72\x65\x6e\x20\x69\x6e\x20\x74\x68\x65\x20\x74\x72\x65\ +\x65\x20\x76\x69\x65\x77\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x70\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\ +\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x4d\x00\x75\x00\x6c\x00\ +\x74\x00\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\x78\x00\x20\x00\ +\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x77\x00\ +\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x50\x00\ +\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\ +\x63\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x49\x66\x20\x74\x68\ +\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x4d\ +\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\x4f\x62\x6a\x65\x63\x74\ +\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x50\x61\x72\x61\x6d\x65\x74\ +\x72\x69\x63\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x4c\ +\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x20\x00\x4c\x00\x65\x00\x6e\ +\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x4c\x6f\x63\x61\x6c\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x12\x00\x4d\x00\x61\x00\x78\x00\x4c\x00\ +\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x4d\x61\x78\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x18\x00\x4d\x00\x61\x00\x78\x00\x69\x00\ +\x6d\x00\x75\x00\x6d\x00\x20\x00\x41\x00\x72\x00\x65\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x4d\x61\x78\x69\x6d\x75\x6d\ +\x20\x41\x72\x65\x61\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1c\ +\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\ +\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0e\x4d\x61\x78\x69\x6d\x75\x6d\x20\x4c\x65\ +\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x52\x00\ +\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\ +\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\ +\x66\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\ +\x67\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x28\x00\x66\x00\x6e\x00\ +\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x4d\x61\x78\x69\x6d\ +\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x66\x61\x63\ +\x65\x73\x20\x66\x6f\x72\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x73\x20\ +\x28\x66\x6e\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1a\x00\ +\x4d\x00\x61\x00\x78\x00\x69\x00\x75\x00\x6d\x00\x20\x00\x4c\x00\ +\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x4d\x61\x78\x69\x75\x6d\x20\x4c\x65\x6e\x67\x74\x68\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1a\x00\x4d\x00\x65\x00\ +\x73\x00\x68\x00\x20\x00\x66\x00\x61\x00\x6c\x00\x6c\x00\x62\x00\ +\x61\x00\x63\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\ +\x65\x73\x68\x20\x66\x61\x6c\x6c\x62\x61\x63\x6b\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x26\x00\x45\x00\x78\x00\x65\x00\x63\x00\ +\x75\x00\x74\x00\x61\x00\x62\x00\x69\x00\x6c\x00\x20\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x13\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\ +\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x1e\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\ +\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x20\x65\x78\x70\x6f\x72\x74\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x1e\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\ +\x43\x00\x41\x00\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x20\x69\x6d\x70\x6f\x72\x74\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x01\x3a\x00\x54\x00\x68\x00\x65\x00\ +\x20\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\ +\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x20\x00\x70\x00\x6f\x00\ +\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x2c\x00\x20\x00\x70\x00\ +\x72\x00\x69\x00\x73\x00\x6d\x00\x20\x00\x6f\x00\x72\x00\x20\x00\ +\x66\x00\x72\x00\x75\x00\x73\x00\x74\x00\x75\x00\x6d\x00\x2e\x00\ +\x20\x00\x49\x00\x66\x00\x20\x00\x66\x00\x6e\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x67\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\ +\x72\x00\x20\x00\x74\x00\x68\x00\x61\x00\x6e\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x75\x00\ +\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\ +\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x65\x00\ +\x20\x00\x61\x00\x20\x00\x63\x00\x69\x00\x72\x00\x63\x00\x75\x00\ +\x6c\x00\x61\x00\x72\x00\x2e\x00\x20\x00\x53\x00\x65\x00\x74\x00\ +\x20\x00\x74\x00\x6f\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x6c\x00\x69\x00\x6d\x00\ +\x69\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x9d\x54\x68\x65\ +\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\ +\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x6f\x66\x20\x61\x20\x70\x6f\ +\x6c\x79\x67\x6f\x6e\x2c\x20\x70\x72\x69\x73\x6d\x20\x6f\x72\x20\ +\x66\x72\x75\x73\x74\x75\x6d\x2e\x20\x49\x66\x20\x66\x6e\x20\x69\ +\x73\x20\x67\x72\x65\x61\x74\x65\x72\x20\x74\x68\x61\x6e\x20\x74\ +\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x74\x68\x65\x20\x6f\x62\ +\x6a\x65\x63\x74\x20\x69\x73\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\ +\x65\x64\x20\x74\x6f\x20\x62\x65\x20\x61\x20\x63\x69\x72\x63\x75\ +\x6c\x61\x72\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\x30\x20\x66\x6f\ +\x72\x20\x6e\x6f\x20\x6c\x69\x6d\x69\x74\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x3a\x00\x43\x00\x61\x00\x6c\x00\x65\x00\x61\x00\ +\x20\x00\x65\x00\x78\x00\x65\x00\x63\x00\x75\x00\x74\x00\x61\x00\ +\x62\x00\x69\x00\x6c\x00\x75\x00\x6c\x00\x75\x00\x69\x00\x20\x00\ +\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x24\x54\x68\x65\x20\x70\x61\x74\ +\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x20\x65\x78\x65\x63\x75\x74\x65\x61\x62\x6c\x65\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x54\x00\x72\x00\x69\x00\x61\ +\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\ +\x00\x67\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x72\ +\x69\x61\x6e\x67\x75\x6c\x61\x74\x69\x6f\x6e\x20\x73\x65\x74\x74\ +\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\ +\x55\x00\x73\x00\x65\x00\x20\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\ +\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\x78\x00\x20\x00\x46\x00\ +\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x16\x55\x73\x65\x20\x4d\x75\x6c\x74\x6d\x61\x74\ +\x72\x69\x78\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x3a\x00\x55\x00\x73\x00\x65\x00\x20\x00\x56\ +\x00\x69\x00\x65\x00\x77\x00\x50\x00\x72\x00\x6f\x00\x76\x00\x69\ +\x00\x64\x00\x65\x00\x72\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x54\ +\x00\x72\x00\x65\x00\x65\x00\x20\x00\x56\x00\x69\x00\x65\x00\x77\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\x65\x20\x56\x69\ +\x65\x77\x50\x72\x6f\x76\x69\x64\x65\x72\x20\x69\x6e\x20\x54\x72\ +\x65\x65\x20\x56\x69\x65\x77\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x18\x00\x61\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x72\ +\x00\x20\x00\x28\x00\x66\x00\x61\x00\x29\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x61\x6e\x67\x75\x6c\x61\x72\x20\x28\x66\x61\x29\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\x63\x00\x6f\x00\ +\x6e\x00\x76\x00\x65\x00\x78\x00\x69\x00\x74\x00\x79\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x63\x6f\x6e\x76\x65\x78\x69\x74\x79\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x64\x00\x65\x00\ +\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x64\x65\x66\x6c\x65\x63\x74\ +\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x10\x00\x6c\ +\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x4c\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x08\x6c\x6f\x63\x61\x6c\x4c\x65\x6e\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x0e\x00\x6d\x00\x61\x00\ +\x78\x00\x41\x00\x72\x00\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x07\x6d\x61\x78\x41\x72\x65\x61\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x2a\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\ +\x75\x00\x6d\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x15\x6d\x61\x78\x69\x6d\x75\x6d\ +\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x20\x73\x69\x7a\x65\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x38\x00\x6d\x00\x69\x00\x6e\x00\ +\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x61\x00\x6e\x00\x67\x00\ +\x6c\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\ +\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x6d\x69\x6e\x69\x6d\ +\x75\x6d\x20\x61\x6e\x67\x6c\x65\x20\x66\x6f\x72\x20\x61\x20\x66\ +\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x34\x00\x6d\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\x75\x00\x6d\ +\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x61\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\ +\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\ +\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x04\x00\x6d\x00\x6d\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x02\x6d\x6d\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\ +\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x28\x00\x66\x00\x73\ +\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x73\x69\x7a\x65\ +\x20\x28\x66\x73\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x02\ +\x00\xb0\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\xb0\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x12\x00\x20\x00\x50\x00\x72\x00\x65\ +\x00\x73\x00\x73\x00\x20\x00\x4f\x00\x4b\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x20\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2e\ +\x00\x41\x00\x64\x00\x64\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\ +\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x45\x00\x6c\x00\x65\ +\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x2e\x00\x2e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x17\x41\x64\x64\x20\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x20\x45\x6c\x65\x6d\x65\x6e\x74\x2e\x2e\x2e\x07\ +\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\xa6\x00\x41\x00\x64\x00\x64\x00\x20\x00\x61\x00\x6e\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x00\x20\x00\x62\x00\x79\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x65\ +\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x63\x00\x6f\ +\x00\x64\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x65\ +\x00\x78\x00\x65\x00\x63\x00\x75\x00\x74\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x62\x00\x69\ +\x00\x6e\x00\x61\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x53\x41\x64\x64\x20\x61\x6e\x20\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\x62\x79\x20\x65\x6e\x74\ +\x65\x72\x69\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x63\ +\x6f\x64\x65\x20\x61\x6e\x64\x20\x65\x78\x65\x63\x75\x74\x69\x6e\ +\x67\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x62\ +\x69\x6e\x61\x72\x79\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x18\x00\x43\x00\x6f\x00\x6c\x00\x6f\ +\x00\x72\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x6f\x6c\x6f\x72\x20\ +\x53\x68\x61\x70\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x42\x00\x43\x00\x6f\x00\x6c\x00\ +\x6f\x00\x72\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\ +\x73\x00\x20\x00\x62\x00\x79\x00\x20\x00\x76\x00\x61\x00\x6c\x00\ +\x69\x00\x64\x00\x69\x00\x74\x00\x79\x00\x20\x00\x61\x00\x6e\x00\ +\x64\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x21\x43\x6f\x6c\x6f\x72\x20\x53\x68\x61\x70\x65\ +\x73\x20\x62\x79\x20\x76\x61\x6c\x69\x64\x69\x74\x79\x20\x61\x6e\ +\x64\x20\x74\x79\x70\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x43\x00\x6f\x00\x6e\x00\ +\x76\x00\x65\x00\x72\x00\x74\x00\x20\x00\x45\x00\x64\x00\x67\x00\ +\x65\x00\x73\x00\x20\x00\x54\x00\x6f\x00\x20\x00\x46\x00\x61\x00\ +\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\ +\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\x67\x65\x73\x20\x54\x6f\x20\ +\x46\x61\x63\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x43\x00\x6f\x00\x6e\x00\x76\ +\x00\x65\x00\x72\x00\x74\x00\x20\x00\x45\x00\x64\x00\x67\x00\x65\ +\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x46\x00\x61\x00\x63\ +\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\x6f\ +\x6e\x76\x65\x72\x74\x20\x45\x64\x67\x65\x73\x20\x74\x6f\x20\x46\ +\x61\x63\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x36\x00\x43\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x20\x00\x52\x00\x65\x00\x66\x00\x69\x00\x6e\x00\ +\x65\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\ +\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1b\x43\x72\x65\x61\x74\x65\x20\x52\x65\ +\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\x65\x61\x74\x75\ +\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x22\x00\x45\x00\x78\x00\x70\x00\x61\x00\x6e\x00\ +\x64\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x11\x45\x78\x70\x61\x6e\x64\x20\x50\x6c\x61\x63\x65\x6d\x65\x6e\ +\x74\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x5e\x00\x45\x00\x78\x00\x70\x00\x61\x00\x6e\x00\ +\x64\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x70\x00\x6c\x00\ +\x61\x00\x63\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x00\ +\x20\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x77\x00\x61\x00\x72\x00\ +\x64\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\ +\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x00\x54\x00\x72\x00\ +\x65\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x45\x78\x70\ +\x61\x6e\x64\x20\x61\x6c\x6c\x20\x70\x6c\x61\x63\x65\x6d\x65\x6e\ +\x74\x73\x20\x64\x6f\x77\x6e\x77\x61\x72\x64\x73\x20\x74\x68\x65\ +\x20\x46\x65\x61\x74\x75\x72\x65\x54\x72\x65\x65\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3a\x00\ +\x50\x00\x6c\x00\x65\x00\x61\x00\x73\x00\x65\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x33\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ +\x66\x00\x69\x00\x72\x00\x73\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1d\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\ +\x20\x33\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x69\x72\x73\x74\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x10\x00\x50\x00\x72\x00\x65\x00\x73\x00\x73\x00\x20\x00\ +\x4f\x00\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x50\x72\x65\ +\x73\x73\x20\x4f\x4b\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x5a\x00\x50\x00\x72\x00\x6f\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x4e\ +\x00\x6f\x00\x74\x00\x20\x00\x79\x00\x65\x00\x74\x00\x20\x00\x43\ +\x00\x6f\x00\x64\x00\x65\x00\x64\x00\x20\x00\x77\x00\x61\x00\x69\ +\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x66\x00\x6f\x00\x72\ +\x00\x20\x00\x50\x00\x65\x00\x74\x00\x65\x00\x72\x00\x20\x00\x4c\ +\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x50\x72\x6f\x6a\ +\x65\x63\x74\x69\x6f\x6e\x20\x4e\x6f\x74\x20\x79\x65\x74\x20\x43\ +\x6f\x64\x65\x64\x20\x77\x61\x69\x74\x69\x6e\x67\x20\x66\x6f\x72\ +\x20\x50\x65\x74\x65\x72\x20\x4c\x69\x07\x00\x00\x00\x08\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x28\x00\x52\x00\x65\ +\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x53\x00\x68\x00\x61\ +\x00\x70\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\ +\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x52\x65\ +\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\x65\x61\x74\x75\ +\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x42\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\ +\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x69\x00\x72\x00\x20\x00\x43\x00\x68\x00\x69\x00\x6c\x00\ +\x64\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x21\x52\x65\x6d\x6f\x76\x65\x20\x4f\x62\x6a\x65\x63\x74\x73\x20\ +\x61\x6e\x64\x20\x74\x68\x65\x69\x72\x20\x43\x68\x69\x6c\x64\x72\ +\x65\x6e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\xb0\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\ +\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ +\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\ +\x63\x00\x68\x00\x69\x00\x6c\x00\x64\x00\x72\x00\x65\x00\x6e\x00\ +\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x61\x00\x72\x00\ +\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x72\x00\x65\x00\ +\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x65\x00\x64\x00\ +\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x6f\x00\x74\x00\ +\x68\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x58\x52\ +\x65\x6d\x6f\x76\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\ +\x61\x6c\x6c\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\x74\x68\x61\ +\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x72\x65\x66\x65\x72\x65\ +\x6e\x63\x65\x64\x20\x66\x72\x6f\x6d\x20\x6f\x74\x68\x65\x72\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1c\x00\x52\x00\x65\x00\x70\ +\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ +\x52\x65\x70\x6c\x61\x63\x65\x20\x4f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x9e\x00\x52\x00\x65\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\ +\x20\x00\x61\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\ +\x65\x00\x20\x00\x54\x00\x72\x00\x65\x00\x65\x00\x2e\x00\x20\x00\ +\x50\x00\x6c\x00\x65\x00\x61\x00\x73\x00\x65\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x6f\x00\x6c\x00\ +\x64\x00\x2c\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\x61\x00\ +\x6e\x00\x64\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x6e\x00\ +\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x52\x65\x70\x6c\x61\x63\x65\ +\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x20\x74\x68\ +\x65\x20\x46\x65\x61\x74\x75\x72\x65\x20\x54\x72\x65\x65\x2e\x20\ +\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\x20\x6f\x6c\ +\x64\x2c\x20\x6e\x65\x77\x20\x61\x6e\x64\x20\x70\x61\x72\x65\x6e\ +\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x30\x00\x52\x00\x75\x00\ +\x6e\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x4f\x00\x70\x00\ +\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x66\x00\ +\x61\x00\x69\x00\x6c\x00\x65\x00\x64\x00\x0a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x18\x52\x75\x6e\x6e\x69\x6e\x67\x20\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x20\x66\x61\x69\x6c\x65\x64\x0a\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x28\ +\x00\x55\x00\x6e\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\x65\x00\x64\x00\x20\x00\x46\x00\x75\x00\x6e\x00\x63\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x14\x55\x6e\x73\x75\x70\x70\x6f\x72\x74\x65\x64\x20\x46\x75\ +\x6e\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\ +\x00\x00\x1b\x8f\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x01\xa0\x00\x00\x00\xb0\x00\x00\x0f\xac\x00\x00\x07\x3d\ +\x00\x00\x0f\x21\x00\x39\xdf\x33\x00\x00\x01\x92\x00\x72\x97\x49\ +\x00\x00\x0f\x5c\x01\x0c\x64\xae\x00\x00\x10\x1c\x01\x38\xb0\x83\ +\x00\x00\x11\x94\x01\x40\x42\x85\x00\x00\x0b\x0b\x02\x1f\xd9\x48\ +\x00\x00\x03\xec\x02\x7b\x37\xc4\x00\x00\x14\x7b\x02\xbc\x05\x8e\ +\x00\x00\x0c\xb7\x02\xbe\x05\x8e\x00\x00\x00\xbf\x03\x8c\x88\xc1\ +\x00\x00\x0d\x57\x05\x08\x5c\x93\x00\x00\x03\x0f\x05\x16\xa3\x95\ +\x00\x00\x13\x13\x05\x66\x9a\x34\x00\x00\x07\xe7\x05\x98\x15\x8e\ +\x00\x00\x0d\x0a\x05\xcc\x9a\xd9\x00\x00\x0c\x67\x05\xe4\x1f\xa9\ +\x00\x00\x10\x7e\x05\xfb\x21\x0b\x00\x00\x06\x59\x06\xe4\x0a\x14\ +\x00\x00\x18\x0d\x06\xee\xa0\xc5\x00\x00\x09\xf3\x07\x5d\xec\x93\ +\x00\x00\x12\xb4\x07\x5d\xee\x93\x00\x00\x12\x55\x07\xda\x68\xe7\ +\x00\x00\x0b\x82\x07\xe4\xd0\x65\x00\x00\x0d\xa1\x08\x10\xb3\x89\ +\x00\x00\x05\x4d\x08\x37\x4e\x99\x00\x00\x15\x24\x08\x4d\xc0\x2e\ +\x00\x00\x19\x7c\x08\x5d\x45\x73\x00\x00\x01\x12\x08\xa5\x45\x08\ +\x00\x00\x05\xfd\x08\xca\x52\x4b\x00\x00\x14\xef\x08\xca\x72\x4b\ +\x00\x00\x0f\xe4\x08\xe2\x7f\xe5\x00\x00\x13\xd1\x09\x2b\x77\x54\ +\x00\x00\x17\xc6\x09\xc0\x82\xb5\x00\x00\x06\xb5\x0a\x22\x8d\xb2\ +\x00\x00\x00\x00\x0a\x2b\x47\x64\x00\x00\x0e\x9e\x0a\x96\xcd\x84\ +\x00\x00\x0e\x15\x0a\xd3\x55\x94\x00\x00\x07\x85\x0a\xf8\x55\x94\ +\x00\x00\x07\x23\x0b\x61\x1d\x4e\x00\x00\x16\x21\x0d\x2c\x1d\x28\ +\x00\x00\x04\x45\x0d\xaa\x21\x43\x00\x00\x13\x81\x0d\xdc\x00\x68\ +\x00\x00\x04\xee\x0e\x02\x4e\xea\x00\x00\x19\x17\x0e\x75\xf9\x03\ +\x00\x00\x0a\x94\x0e\x80\x99\x15\x00\x00\x15\xc8\x0e\xc6\x00\x19\ +\x00\x00\x0c\x0e\x0e\xcc\x78\xf1\x00\x00\x04\x95\x0f\x18\x51\xc5\ +\x00\x00\x11\xd5\x0f\x68\xe5\xc7\x00\x00\x02\x05\x0f\xd3\x1f\xf3\ +\x00\x00\x16\xa1\x69\x00\x00\x19\xd5\x03\x00\x00\x00\x5c\x00\x44\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x3a\x00\x20\x00\x52\x00\x65\ +\x00\x67\x00\x69\x00\x73\x00\x74\x00\x65\x00\x72\x00\x20\x00\x66\ +\x00\x69\x00\x6c\x00\x65\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x74\x00\x6f\ +\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2e\x44\x65\x62\x75\x67\x3a\x20\x52\x65\x67\x69\x73\ +\x74\x65\x72\x20\x66\x69\x6c\x65\x74\x79\x70\x65\x20\x74\x6f\x20\ +\x70\x72\x6f\x74\x6f\x74\x79\x70\x65\x20\x69\x6d\x70\x6f\x72\x74\ +\x65\x72\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x44\x00\ +\x65\x00\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x44\x65\x66\x6c\x65\ +\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x32\ +\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x53\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x65\x6e\x65\ +\x72\x61\x6c\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2e\ +\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x65\x00\x6c\x00\x6c\ +\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x6e\x00\x73\x00\x74\x00\x69\ +\x00\x6c\x00\x6c\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x72\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\ +\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x8e\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\ +\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x46\x00\x65\x00\ +\x61\x00\x74\x00\x75\x00\x72\x00\x65\x00\x73\x00\x20\x00\x77\x00\ +\x69\x00\x6c\x00\x6c\x00\x20\x00\x63\x00\x6c\x00\x61\x00\x69\x00\ +\x6d\x00\x20\x00\x74\x00\x68\x00\x69\x00\x65\x00\x72\x00\x20\x00\ +\x63\x00\x68\x00\x69\x00\x6c\x00\x64\x00\x72\x00\x65\x00\x6e\x00\ +\x20\x00\x69\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x74\x00\x72\x00\x65\x00\x65\x00\x20\x00\x76\x00\x69\x00\x65\x00\ +\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x47\x49\x66\x20\x74\x68\ +\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x46\ +\x65\x61\x74\x75\x72\x65\x73\x20\x77\x69\x6c\x6c\x20\x63\x6c\x61\ +\x69\x6d\x20\x74\x68\x69\x65\x72\x20\x63\x68\x69\x6c\x64\x72\x65\ +\x6e\x20\x69\x6e\x20\x74\x68\x65\x20\x74\x72\x65\x65\x20\x76\x69\ +\x65\x77\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x70\x00\x49\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\ +\x64\x00\x2c\x00\x20\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\x6d\x00\ +\x61\x00\x74\x00\x72\x00\x69\x00\x78\x00\x20\x00\x4f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x50\x00\x61\x00\x72\x00\ +\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x63\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x38\x49\x66\x20\x74\x68\x69\x73\x20\x69\ +\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x4d\x75\x6c\x74\x6d\ +\x61\x74\x72\x69\x78\x20\x4f\x62\x6a\x65\x63\x74\x20\x77\x69\x6c\ +\x6c\x20\x62\x65\x20\x50\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x4c\x00\x6f\x00\x63\ +\x00\x61\x00\x6c\x00\x20\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\ +\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x4c\x6f\x63\x61\ +\x6c\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x12\x00\x4d\x00\x61\x00\x78\x00\x4c\x00\x65\x00\x6e\x00\ +\x67\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x4d\ +\x61\x78\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x18\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\ +\x6d\x00\x20\x00\x41\x00\x72\x00\x65\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0c\x4d\x61\x78\x69\x6d\x75\x6d\x20\x41\x72\x65\ +\x61\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1c\x00\x4d\x00\x61\ +\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x4c\x00\x65\ +\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0e\x4d\x61\x78\x69\x6d\x75\x6d\x20\x4c\x65\x6e\x67\x74\x68\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x52\x00\x4d\x00\x61\x00\ +\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x6e\x00\x75\x00\ +\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\ +\x6e\x00\x73\x00\x20\x00\x28\x00\x66\x00\x6e\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x29\x4d\x61\x78\x69\x6d\x75\x6d\x20\x6e\ +\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x66\ +\x6f\x72\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x73\x20\x28\x66\x6e\x29\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1a\x00\x4d\x00\x61\x00\ +\x78\x00\x69\x00\x75\x00\x6d\x00\x20\x00\x4c\x00\x65\x00\x6e\x00\ +\x67\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\ +\x61\x78\x69\x75\x6d\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x1a\x00\x4d\x00\x65\x00\x73\x00\x68\x00\ +\x20\x00\x66\x00\x61\x00\x6c\x00\x6c\x00\x62\x00\x61\x00\x63\x00\ +\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\ +\x66\x61\x6c\x6c\x62\x61\x63\x6b\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x26\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\ +\x41\x00\x44\x00\x20\x00\x65\x00\x78\x00\x65\x00\x63\x00\x75\x00\ +\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x13\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\ +\x75\x74\x61\x62\x6c\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x1e\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\ +\x44\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x20\x65\x78\x70\x6f\x72\x74\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x1e\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\ +\x41\x00\x44\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x20\x69\x6d\x70\x6f\x72\x74\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x01\x3a\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6d\x00\ +\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x6e\x00\ +\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\ +\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\ +\x67\x00\x6f\x00\x6e\x00\x2c\x00\x20\x00\x70\x00\x72\x00\x69\x00\ +\x73\x00\x6d\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\ +\x75\x00\x73\x00\x74\x00\x75\x00\x6d\x00\x2e\x00\x20\x00\x49\x00\ +\x66\x00\x20\x00\x66\x00\x6e\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x67\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x72\x00\x20\x00\ +\x74\x00\x68\x00\x61\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x75\x00\x65\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x6f\x00\ +\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\x65\x00\x64\x00\ +\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x65\x00\x20\x00\x61\x00\ +\x20\x00\x63\x00\x69\x00\x72\x00\x63\x00\x75\x00\x6c\x00\x61\x00\ +\x72\x00\x2e\x00\x20\x00\x53\x00\x65\x00\x74\x00\x20\x00\x74\x00\ +\x6f\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\ +\x6e\x00\x6f\x00\x20\x00\x6c\x00\x69\x00\x6d\x00\x69\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x9d\x54\x68\x65\x20\x6d\x61\x78\ +\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x66\ +\x61\x63\x65\x73\x20\x6f\x66\x20\x61\x20\x70\x6f\x6c\x79\x67\x6f\ +\x6e\x2c\x20\x70\x72\x69\x73\x6d\x20\x6f\x72\x20\x66\x72\x75\x73\ +\x74\x75\x6d\x2e\x20\x49\x66\x20\x66\x6e\x20\x69\x73\x20\x67\x72\ +\x65\x61\x74\x65\x72\x20\x74\x68\x61\x6e\x20\x74\x68\x69\x73\x20\ +\x76\x61\x6c\x75\x65\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x69\x73\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x74\ +\x6f\x20\x62\x65\x20\x61\x20\x63\x69\x72\x63\x75\x6c\x61\x72\x2e\ +\x20\x53\x65\x74\x20\x74\x6f\x20\x30\x20\x66\x6f\x72\x20\x6e\x6f\ +\x20\x6c\x69\x6d\x69\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x48\x00\x54\x00\x68\x00\x65\x00\x20\x00\x70\x00\x61\x00\x74\x00\ +\x68\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\ +\x44\x00\x20\x00\x65\x00\x78\x00\x65\x00\x63\x00\x75\x00\x74\x00\ +\x65\x00\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x24\x54\x68\x65\x20\x70\x61\x74\x68\x20\x74\x6f\x20\x74\ +\x68\x65\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\ +\x75\x74\x65\x61\x62\x6c\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x2c\x00\x54\x00\x72\x00\x69\x00\x61\x00\x6e\x00\x67\x00\x75\ +\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x73\ +\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x16\x54\x72\x69\x61\x6e\x67\x75\x6c\ +\x61\x74\x69\x6f\x6e\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x55\x00\x73\x00\x65\x00\ +\x20\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\x6d\x00\x61\x00\x74\x00\ +\x72\x00\x69\x00\x78\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\ +\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x55\ +\x73\x65\x20\x4d\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\x46\x65\ +\x61\x74\x75\x72\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3a\ +\x00\x55\x00\x73\x00\x65\x00\x20\x00\x56\x00\x69\x00\x65\x00\x77\ +\x00\x50\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x64\x00\x65\x00\x72\ +\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x54\x00\x72\x00\x65\x00\x65\ +\x00\x20\x00\x56\x00\x69\x00\x65\x00\x77\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1d\x55\x73\x65\x20\x56\x69\x65\x77\x50\x72\x6f\x76\ +\x69\x64\x65\x72\x20\x69\x6e\x20\x54\x72\x65\x65\x20\x56\x69\x65\ +\x77\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x61\x00\x6e\ +\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x28\x00\x66\ +\x00\x61\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x61\x6e\ +\x67\x75\x6c\x61\x72\x20\x28\x66\x61\x29\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x12\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\ +\x78\x00\x69\x00\x74\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x09\x63\x6f\x6e\x76\x65\x78\x69\x74\x79\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x14\x00\x64\x00\x65\x00\x66\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0a\x64\x65\x66\x6c\x65\x63\x74\x69\x6f\x6e\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x10\x00\x6c\x00\x6f\x00\x63\x00\x61\ +\x00\x6c\x00\x4c\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x08\x6c\x6f\x63\x61\x6c\x4c\x65\x6e\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x0e\x00\x6d\x00\x61\x00\x78\x00\x41\x00\x72\x00\ +\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x6d\x61\x78\ +\x41\x72\x65\x61\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2a\x00\ +\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\ +\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x15\x6d\x61\x78\x69\x6d\x75\x6d\x20\x66\x72\x61\x67\x6d\ +\x65\x6e\x74\x20\x73\x69\x7a\x65\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x38\x00\x6d\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\x75\x00\ +\x6d\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\ +\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x20\x00\x66\x00\x72\x00\ +\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1c\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x61\x6e\x67\ +\x6c\x65\x20\x66\x6f\x72\x20\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\ +\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x34\x00\x6d\x00\x69\ +\x00\x6e\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x73\x00\x69\ +\x00\x7a\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x20\ +\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x6d\x69\x6e\x69\x6d\x75\ +\x6d\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\x61\x20\x66\x72\x61\x67\ +\x6d\x65\x6e\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x04\x00\ +\x6d\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x6d\x6d\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\x73\x00\x69\x00\x7a\ +\x00\x65\x00\x20\x00\x28\x00\x66\x00\x73\x00\x29\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x73\x69\x7a\x65\x20\x28\x66\x73\x29\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x02\x00\xb0\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x01\xb0\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x12\x00\x20\x00\x50\x00\x72\x00\x65\x00\x73\x00\x73\x00\x20\ +\x00\x4f\x00\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x20\x50\ +\x72\x65\x73\x73\x20\x4f\x4b\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2e\x00\x41\x00\x64\x00\x64\ +\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\ +\x00\x44\x00\x20\x00\x45\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\ +\x00\x74\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x17\x41\x64\x64\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x45\ +\x6c\x65\x6d\x65\x6e\x74\x2e\x2e\x2e\x07\x00\x00\x00\x08\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\xa6\x00\x41\x00\x64\ +\x00\x64\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x6c\ +\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x62\x00\x79\ +\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\ +\x00\x41\x00\x44\x00\x20\x00\x63\x00\x6f\x00\x64\x00\x65\x00\x20\ +\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x65\x00\x78\x00\x65\x00\x63\ +\x00\x75\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\ +\x00\x65\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\ +\x00\x41\x00\x44\x00\x20\x00\x62\x00\x69\x00\x6e\x00\x61\x00\x72\ +\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\x41\x64\x64\x20\ +\x61\x6e\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x6c\x65\x6d\ +\x65\x6e\x74\x20\x62\x79\x20\x65\x6e\x74\x65\x72\x69\x6e\x67\x20\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x63\x6f\x64\x65\x20\x61\x6e\ +\x64\x20\x65\x78\x65\x63\x75\x74\x69\x6e\x67\x20\x74\x68\x65\x20\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x62\x69\x6e\x61\x72\x79\x07\ +\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x18\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x53\ +\x00\x68\x00\x61\x00\x70\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x43\x6f\x6c\x6f\x72\x20\x53\x68\x61\x70\x65\x73\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x42\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\ +\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x73\x00\x20\x00\x62\x00\ +\x79\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x69\x00\ +\x74\x00\x79\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x74\x00\ +\x79\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x43\ +\x6f\x6c\x6f\x72\x20\x53\x68\x61\x70\x65\x73\x20\x62\x79\x20\x76\ +\x61\x6c\x69\x64\x69\x74\x79\x20\x61\x6e\x64\x20\x74\x79\x70\x65\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x2c\x00\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\ +\x74\x00\x20\x00\x45\x00\x64\x00\x67\x00\x65\x00\x73\x00\x20\x00\ +\x54\x00\x6f\x00\x20\x00\x46\x00\x61\x00\x63\x00\x65\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\ +\x20\x45\x64\x67\x65\x73\x20\x54\x6f\x20\x46\x61\x63\x65\x73\x07\ +\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x2c\x00\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\ +\x00\x20\x00\x45\x00\x64\x00\x67\x00\x65\x00\x73\x00\x20\x00\x74\ +\x00\x6f\x00\x20\x00\x46\x00\x61\x00\x63\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\x20\ +\x45\x64\x67\x65\x73\x20\x74\x6f\x20\x46\x61\x63\x65\x73\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x36\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\ +\x52\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x53\x00\ +\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\ +\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1b\x43\x72\x65\x61\x74\x65\x20\x52\x65\x66\x69\x6e\x65\x20\x53\ +\x68\x61\x70\x65\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x22\x00\ +\x45\x00\x78\x00\x70\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x50\x00\ +\x6c\x00\x61\x00\x63\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x45\x78\x70\x61\x6e\ +\x64\x20\x50\x6c\x61\x63\x65\x6d\x65\x6e\x74\x73\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x5e\x00\ +\x45\x00\x78\x00\x70\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\ +\x6c\x00\x6c\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x64\x00\x6f\x00\ +\x77\x00\x6e\x00\x77\x00\x61\x00\x72\x00\x64\x00\x73\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\ +\x75\x00\x72\x00\x65\x00\x54\x00\x72\x00\x65\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x2f\x45\x78\x70\x61\x6e\x64\x20\x61\x6c\ +\x6c\x20\x70\x6c\x61\x63\x65\x6d\x65\x6e\x74\x73\x20\x64\x6f\x77\ +\x6e\x77\x61\x72\x64\x73\x20\x74\x68\x65\x20\x46\x65\x61\x74\x75\ +\x72\x65\x54\x72\x65\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x3a\x00\x50\x00\x6c\x00\x65\x00\ +\x61\x00\x73\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x33\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x66\x00\x69\x00\x72\x00\ +\x73\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x50\x6c\x65\ +\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\x20\x33\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x20\x66\x69\x72\x73\x74\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x10\x00\x50\x00\ +\x72\x00\x65\x00\x73\x00\x73\x00\x20\x00\x4f\x00\x4b\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\ +\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x5a\x00\x50\x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x20\ +\x00\x79\x00\x65\x00\x74\x00\x20\x00\x43\x00\x6f\x00\x64\x00\x65\ +\x00\x64\x00\x20\x00\x77\x00\x61\x00\x69\x00\x74\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x50\x00\x65\ +\x00\x74\x00\x65\x00\x72\x00\x20\x00\x4c\x00\x69\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x2d\x50\x72\x6f\x6a\x65\x63\x74\x69\x6f\x6e\ +\x20\x4e\x6f\x74\x20\x79\x65\x74\x20\x43\x6f\x64\x65\x64\x20\x77\ +\x61\x69\x74\x69\x6e\x67\x20\x66\x6f\x72\x20\x50\x65\x74\x65\x72\ +\x20\x4c\x69\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x28\x00\x52\x00\x65\x00\x66\x00\x69\x00\x6e\ +\x00\x65\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\ +\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x14\x52\x65\x66\x69\x6e\x65\x20\x53\ +\x68\x61\x70\x65\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x42\x00\ +\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x4f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\ +\x6e\x00\x64\x00\x20\x00\x74\x00\x68\x00\x65\x00\x69\x00\x72\x00\ +\x20\x00\x43\x00\x68\x00\x69\x00\x6c\x00\x64\x00\x72\x00\x65\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x52\x65\x6d\x6f\x76\ +\x65\x20\x4f\x62\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\x74\x68\ +\x65\x69\x72\x20\x43\x68\x69\x6c\x64\x72\x65\x6e\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\xb0\x00\ +\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x73\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\ +\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x63\x00\x68\x00\x69\x00\ +\x6c\x00\x64\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\x00\ +\x61\x00\x74\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6e\x00\ +\x6f\x00\x74\x00\x20\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\ +\x65\x00\x6e\x00\x63\x00\x65\x00\x64\x00\x20\x00\x66\x00\x72\x00\ +\x6f\x00\x6d\x00\x20\x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x58\x52\x65\x6d\x6f\x76\x65\x73\ +\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\x61\x6c\x6c\x20\x63\x68\ +\x69\x6c\x64\x72\x65\x6e\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\ +\x6e\x6f\x74\x20\x72\x65\x66\x65\x72\x65\x6e\x63\x65\x64\x20\x66\ +\x72\x6f\x6d\x20\x6f\x74\x68\x65\x72\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x1c\x00\x52\x00\x65\x00\x70\x00\x6c\x00\x61\x00\x63\ +\x00\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x52\x65\x70\x6c\x61\x63\ +\x65\x20\x4f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x9e\x00\x52\x00\x65\x00\ +\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x20\x00\x61\x00\x6e\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ +\x69\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\ +\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x54\x00\ +\x72\x00\x65\x00\x65\x00\x2e\x00\x20\x00\x50\x00\x6c\x00\x65\x00\ +\x61\x00\x73\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x6f\x00\x6c\x00\x64\x00\x2c\x00\x20\x00\ +\x6e\x00\x65\x00\x77\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x4f\x52\x65\x70\x6c\x61\x63\x65\x20\x61\x6e\x20\x6f\x62\ +\x6a\x65\x63\x74\x20\x69\x6e\x20\x74\x68\x65\x20\x46\x65\x61\x74\ +\x75\x72\x65\x20\x54\x72\x65\x65\x2e\x20\x50\x6c\x65\x61\x73\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x20\x6f\x6c\x64\x2c\x20\x6e\x65\x77\ +\x20\x61\x6e\x64\x20\x70\x61\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\ +\x63\x74\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x30\x00\x52\x00\x75\x00\x6e\x00\x6e\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\ +\x43\x00\x41\x00\x44\x00\x20\x00\x66\x00\x61\x00\x69\x00\x6c\x00\ +\x65\x00\x64\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x52\ +\x75\x6e\x6e\x69\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\ +\x66\x61\x69\x6c\x65\x64\x0a\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x28\x00\x55\x00\x6e\x00\x73\ +\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x64\ +\x00\x20\x00\x46\x00\x75\x00\x6e\x00\x63\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x55\x6e\x73\x75\ +\x70\x70\x6f\x72\x74\x65\x64\x20\x46\x75\x6e\x63\x74\x69\x6f\x6e\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x00\x00\x1b\x85\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x01\xa0\x00\x00\x00\xb0\x00\x00\x0f\xa2\x00\x00\x07\x3d\ +\x00\x00\x0f\x17\x00\x39\xdf\x33\x00\x00\x01\x92\x00\x72\x97\x49\ +\x00\x00\x0f\x52\x01\x0c\x64\xae\x00\x00\x10\x12\x01\x38\xb0\x83\ +\x00\x00\x11\x8a\x01\x40\x42\x85\x00\x00\x0b\x01\x02\x1f\xd9\x48\ +\x00\x00\x03\xe2\x02\x7b\x37\xc4\x00\x00\x14\x71\x02\xbc\x05\x8e\ +\x00\x00\x0c\xad\x02\xbe\x05\x8e\x00\x00\x00\xbf\x03\x8c\x88\xc1\ +\x00\x00\x0d\x4d\x05\x08\x5c\x93\x00\x00\x03\x05\x05\x16\xa3\x95\ +\x00\x00\x13\x09\x05\x66\x9a\x34\x00\x00\x07\xdd\x05\x98\x15\x8e\ +\x00\x00\x0d\x00\x05\xcc\x9a\xd9\x00\x00\x0c\x5d\x05\xe4\x1f\xa9\ +\x00\x00\x10\x74\x05\xfb\x21\x0b\x00\x00\x06\x4f\x06\xe4\x0a\x14\ +\x00\x00\x18\x03\x06\xee\xa0\xc5\x00\x00\x09\xe9\x07\x5d\xec\x93\ +\x00\x00\x12\xaa\x07\x5d\xee\x93\x00\x00\x12\x4b\x07\xda\x68\xe7\ +\x00\x00\x0b\x78\x07\xe4\xd0\x65\x00\x00\x0d\x97\x08\x10\xb3\x89\ +\x00\x00\x05\x43\x08\x37\x4e\x99\x00\x00\x15\x1a\x08\x4d\xc0\x2e\ +\x00\x00\x19\x72\x08\x5d\x45\x73\x00\x00\x01\x12\x08\xa5\x45\x08\ +\x00\x00\x05\xf3\x08\xca\x52\x4b\x00\x00\x14\xe5\x08\xca\x72\x4b\ +\x00\x00\x0f\xda\x08\xe2\x7f\xe5\x00\x00\x13\xc7\x09\x2b\x77\x54\ +\x00\x00\x17\xbc\x09\xc0\x82\xb5\x00\x00\x06\xab\x0a\x22\x8d\xb2\ +\x00\x00\x00\x00\x0a\x2b\x47\x64\x00\x00\x0e\x94\x0a\x96\xcd\x84\ +\x00\x00\x0e\x0b\x0a\xd3\x55\x94\x00\x00\x07\x7b\x0a\xf8\x55\x94\ +\x00\x00\x07\x19\x0b\x61\x1d\x4e\x00\x00\x16\x17\x0d\x2c\x1d\x28\ +\x00\x00\x04\x3b\x0d\xaa\x21\x43\x00\x00\x13\x77\x0d\xdc\x00\x68\ +\x00\x00\x04\xe4\x0e\x02\x4e\xea\x00\x00\x19\x0d\x0e\x75\xf9\x03\ +\x00\x00\x0a\x8a\x0e\x80\x99\x15\x00\x00\x15\xbe\x0e\xc6\x00\x19\ +\x00\x00\x0c\x04\x0e\xcc\x78\xf1\x00\x00\x04\x8b\x0f\x18\x51\xc5\ +\x00\x00\x11\xcb\x0f\x68\xe5\xc7\x00\x00\x01\xfb\x0f\xd3\x1f\xf3\ +\x00\x00\x16\x97\x69\x00\x00\x19\xcb\x03\x00\x00\x00\x5c\x00\x44\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x3a\x00\x20\x00\x52\x00\x65\ +\x00\x67\x00\x69\x00\x73\x00\x74\x00\x65\x00\x72\x00\x20\x00\x66\ +\x00\x69\x00\x6c\x00\x65\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x74\x00\x6f\ +\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2e\x44\x65\x62\x75\x67\x3a\x20\x52\x65\x67\x69\x73\ +\x74\x65\x72\x20\x66\x69\x6c\x65\x74\x79\x70\x65\x20\x74\x6f\x20\ +\x70\x72\x6f\x74\x6f\x74\x79\x70\x65\x20\x69\x6d\x70\x6f\x72\x74\ +\x65\x72\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x44\x00\ +\x65\x00\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x44\x65\x66\x6c\x65\ +\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x32\ +\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x53\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x65\x6e\x65\ +\x72\x61\x6c\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x24\ +\x04\x17\x04\x30\x04\x33\x04\x30\x04\x3b\x04\x4c\x04\x3d\x04\x56\ +\x00\x20\x04\x3f\x04\x30\x04\x40\x04\x30\x04\x3c\x04\x35\x04\x42\ +\x04\x40\x04\x38\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\ +\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x8e\x00\x49\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x00\ +\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x63\x00\ +\x6c\x00\x61\x00\x69\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x65\x00\x72\x00\x20\x00\x63\x00\x68\x00\x69\x00\x6c\x00\x64\x00\ +\x72\x00\x65\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x74\x00\x72\x00\x65\x00\x65\x00\x20\x00\ +\x76\x00\x69\x00\x65\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x47\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x46\x65\x61\x74\x75\x72\x65\x73\x20\x77\x69\ +\x6c\x6c\x20\x63\x6c\x61\x69\x6d\x20\x74\x68\x69\x65\x72\x20\x63\ +\x68\x69\x6c\x64\x72\x65\x6e\x20\x69\x6e\x20\x74\x68\x65\x20\x74\ +\x72\x65\x65\x20\x76\x69\x65\x77\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x70\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\ +\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x4d\x00\x75\x00\ +\x6c\x00\x74\x00\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\x78\x00\ +\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ +\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\ +\x50\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\ +\x69\x00\x63\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x49\x66\x20\ +\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x4d\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\x4f\x62\x6a\x65\ +\x63\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x50\x61\x72\x61\x6d\ +\x65\x74\x72\x69\x63\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\ +\x00\x4c\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x20\x00\x4c\x00\x65\ +\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0c\x4c\x6f\x63\x61\x6c\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\x4d\x00\x61\x00\x78\x00\ +\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x09\x4d\x61\x78\x4c\x65\x6e\x67\x74\x68\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x4d\x00\x61\x00\x78\x00\ +\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x41\x00\x72\x00\x65\x00\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x4d\x61\x78\x69\x6d\ +\x75\x6d\x20\x41\x72\x65\x61\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x1c\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\ +\x00\x20\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0e\x4d\x61\x78\x69\x6d\x75\x6d\x20\ +\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x52\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\ +\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\ +\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\ +\x79\x00\x67\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x28\x00\x66\x00\ +\x6e\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x4d\x61\x78\ +\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x66\ +\x61\x63\x65\x73\x20\x66\x6f\x72\x20\x70\x6f\x6c\x79\x67\x6f\x6e\ +\x73\x20\x28\x66\x6e\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x1a\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x75\x00\x6d\x00\x20\x00\ +\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0d\x4d\x61\x78\x69\x75\x6d\x20\x4c\x65\x6e\x67\ +\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1a\x00\x4d\x00\ +\x65\x00\x73\x00\x68\x00\x20\x00\x66\x00\x61\x00\x6c\x00\x6c\x00\ +\x62\x00\x61\x00\x63\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0d\x4d\x65\x73\x68\x20\x66\x61\x6c\x6c\x62\x61\x63\x6b\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x26\x00\x4f\x00\x70\x00\x65\x00\ +\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x78\x00\ +\x65\x00\x63\x00\x75\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x13\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x1e\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\ +\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x78\x00\x70\x00\ +\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x70\x6f\x72\x74\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x1e\x00\x4f\x00\x70\x00\x65\x00\ +\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x69\x00\x6d\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x69\x6d\x70\x6f\x72\x74\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x01\x3a\x00\x54\x00\x68\x00\ +\x65\x00\x20\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\ +\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\ +\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x20\x00\x70\x00\ +\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x2c\x00\x20\x00\ +\x70\x00\x72\x00\x69\x00\x73\x00\x6d\x00\x20\x00\x6f\x00\x72\x00\ +\x20\x00\x66\x00\x72\x00\x75\x00\x73\x00\x74\x00\x75\x00\x6d\x00\ +\x2e\x00\x20\x00\x49\x00\x66\x00\x20\x00\x66\x00\x6e\x00\x20\x00\ +\x69\x00\x73\x00\x20\x00\x67\x00\x72\x00\x65\x00\x61\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\x61\x00\x6e\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x76\x00\x61\x00\x6c\x00\ +\x75\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x73\x00\ +\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\ +\x72\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\ +\x65\x00\x20\x00\x61\x00\x20\x00\x63\x00\x69\x00\x72\x00\x63\x00\ +\x75\x00\x6c\x00\x61\x00\x72\x00\x2e\x00\x20\x00\x53\x00\x65\x00\ +\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x30\x00\x20\x00\x66\x00\ +\x6f\x00\x72\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x6c\x00\x69\x00\ +\x6d\x00\x69\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x9d\x54\ +\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\ +\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x6f\x66\x20\x61\x20\ +\x70\x6f\x6c\x79\x67\x6f\x6e\x2c\x20\x70\x72\x69\x73\x6d\x20\x6f\ +\x72\x20\x66\x72\x75\x73\x74\x75\x6d\x2e\x20\x49\x66\x20\x66\x6e\ +\x20\x69\x73\x20\x67\x72\x65\x61\x74\x65\x72\x20\x74\x68\x61\x6e\ +\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x74\x68\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x69\x73\x20\x63\x6f\x6e\x73\x69\x64\ +\x65\x72\x65\x64\x20\x74\x6f\x20\x62\x65\x20\x61\x20\x63\x69\x72\ +\x63\x75\x6c\x61\x72\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\x30\x20\ +\x66\x6f\x72\x20\x6e\x6f\x20\x6c\x69\x6d\x69\x74\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x48\x00\x54\x00\x68\x00\x65\x00\x20\x00\ +\x70\x00\x61\x00\x74\x00\x68\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\ +\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x78\x00\x65\x00\ +\x63\x00\x75\x00\x74\x00\x65\x00\x61\x00\x62\x00\x6c\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x24\x54\x68\x65\x20\x70\x61\x74\ +\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x20\x65\x78\x65\x63\x75\x74\x65\x61\x62\x6c\x65\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x54\x00\x72\x00\x69\x00\x61\ +\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\ +\x00\x67\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x72\ +\x69\x61\x6e\x67\x75\x6c\x61\x74\x69\x6f\x6e\x20\x73\x65\x74\x74\ +\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\ +\x55\x00\x73\x00\x65\x00\x20\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\ +\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\x78\x00\x20\x00\x46\x00\ +\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x16\x55\x73\x65\x20\x4d\x75\x6c\x74\x6d\x61\x74\ +\x72\x69\x78\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x3a\x00\x55\x00\x73\x00\x65\x00\x20\x00\x56\ +\x00\x69\x00\x65\x00\x77\x00\x50\x00\x72\x00\x6f\x00\x76\x00\x69\ +\x00\x64\x00\x65\x00\x72\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x54\ +\x00\x72\x00\x65\x00\x65\x00\x20\x00\x56\x00\x69\x00\x65\x00\x77\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\x65\x20\x56\x69\ +\x65\x77\x50\x72\x6f\x76\x69\x64\x65\x72\x20\x69\x6e\x20\x54\x72\ +\x65\x65\x20\x56\x69\x65\x77\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x18\x00\x61\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x72\ +\x00\x20\x00\x28\x00\x66\x00\x61\x00\x29\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x61\x6e\x67\x75\x6c\x61\x72\x20\x28\x66\x61\x29\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\x63\x00\x6f\x00\ +\x6e\x00\x76\x00\x65\x00\x78\x00\x69\x00\x74\x00\x79\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x63\x6f\x6e\x76\x65\x78\x69\x74\x79\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x64\x00\x65\x00\ +\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x64\x65\x66\x6c\x65\x63\x74\ +\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x10\x00\x6c\ +\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x4c\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x08\x6c\x6f\x63\x61\x6c\x4c\x65\x6e\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x0e\x00\x6d\x00\x61\x00\ +\x78\x00\x41\x00\x72\x00\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x07\x6d\x61\x78\x41\x72\x65\x61\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x2a\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\ +\x75\x00\x6d\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x15\x6d\x61\x78\x69\x6d\x75\x6d\ +\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x20\x73\x69\x7a\x65\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x38\x00\x6d\x00\x69\x00\x6e\x00\ +\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x61\x00\x6e\x00\x67\x00\ +\x6c\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\ +\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x6d\x69\x6e\x69\x6d\ +\x75\x6d\x20\x61\x6e\x67\x6c\x65\x20\x66\x6f\x72\x20\x61\x20\x66\ +\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x34\x00\x6d\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\x75\x00\x6d\ +\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x61\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\ +\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\ +\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x04\x04\x3c\x04\x3c\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x02\x6d\x6d\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\ +\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x28\x00\x66\x00\x73\ +\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x73\x69\x7a\x65\ +\x20\x28\x66\x73\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x02\ +\x00\xb0\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\xb0\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x12\x00\x20\x00\x50\x00\x72\x00\x65\ +\x00\x73\x00\x73\x00\x20\x00\x4f\x00\x4b\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x20\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2e\ +\x00\x41\x00\x64\x00\x64\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\ +\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x45\x00\x6c\x00\x65\ +\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x2e\x00\x2e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x17\x41\x64\x64\x20\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x20\x45\x6c\x65\x6d\x65\x6e\x74\x2e\x2e\x2e\x07\ +\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\xa6\x00\x41\x00\x64\x00\x64\x00\x20\x00\x61\x00\x6e\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x00\x20\x00\x62\x00\x79\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x65\ +\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x63\x00\x6f\ +\x00\x64\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x65\ +\x00\x78\x00\x65\x00\x63\x00\x75\x00\x74\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x62\x00\x69\ +\x00\x6e\x00\x61\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x53\x41\x64\x64\x20\x61\x6e\x20\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\x62\x79\x20\x65\x6e\x74\ +\x65\x72\x69\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x63\ +\x6f\x64\x65\x20\x61\x6e\x64\x20\x65\x78\x65\x63\x75\x74\x69\x6e\ +\x67\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x62\ +\x69\x6e\x61\x72\x79\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x18\x00\x43\x00\x6f\x00\x6c\x00\x6f\ +\x00\x72\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x6f\x6c\x6f\x72\x20\ +\x53\x68\x61\x70\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x42\x00\x43\x00\x6f\x00\x6c\x00\ +\x6f\x00\x72\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\ +\x73\x00\x20\x00\x62\x00\x79\x00\x20\x00\x76\x00\x61\x00\x6c\x00\ +\x69\x00\x64\x00\x69\x00\x74\x00\x79\x00\x20\x00\x61\x00\x6e\x00\ +\x64\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x21\x43\x6f\x6c\x6f\x72\x20\x53\x68\x61\x70\x65\ +\x73\x20\x62\x79\x20\x76\x61\x6c\x69\x64\x69\x74\x79\x20\x61\x6e\ +\x64\x20\x74\x79\x70\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x43\x00\x6f\x00\x6e\x00\ +\x76\x00\x65\x00\x72\x00\x74\x00\x20\x00\x45\x00\x64\x00\x67\x00\ +\x65\x00\x73\x00\x20\x00\x54\x00\x6f\x00\x20\x00\x46\x00\x61\x00\ +\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\ +\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\x67\x65\x73\x20\x54\x6f\x20\ +\x46\x61\x63\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x43\x00\x6f\x00\x6e\x00\x76\ +\x00\x65\x00\x72\x00\x74\x00\x20\x00\x45\x00\x64\x00\x67\x00\x65\ +\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x46\x00\x61\x00\x63\ +\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\x6f\ +\x6e\x76\x65\x72\x74\x20\x45\x64\x67\x65\x73\x20\x74\x6f\x20\x46\ +\x61\x63\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x36\x00\x43\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x20\x00\x52\x00\x65\x00\x66\x00\x69\x00\x6e\x00\ +\x65\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\ +\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1b\x43\x72\x65\x61\x74\x65\x20\x52\x65\ +\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\x65\x61\x74\x75\ +\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x22\x00\x45\x00\x78\x00\x70\x00\x61\x00\x6e\x00\ +\x64\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x11\x45\x78\x70\x61\x6e\x64\x20\x50\x6c\x61\x63\x65\x6d\x65\x6e\ +\x74\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x5e\x00\x45\x00\x78\x00\x70\x00\x61\x00\x6e\x00\ +\x64\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x70\x00\x6c\x00\ +\x61\x00\x63\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x00\ +\x20\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x77\x00\x61\x00\x72\x00\ +\x64\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\ +\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x00\x54\x00\x72\x00\ +\x65\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x45\x78\x70\ +\x61\x6e\x64\x20\x61\x6c\x6c\x20\x70\x6c\x61\x63\x65\x6d\x65\x6e\ +\x74\x73\x20\x64\x6f\x77\x6e\x77\x61\x72\x64\x73\x20\x74\x68\x65\ +\x20\x46\x65\x61\x74\x75\x72\x65\x54\x72\x65\x65\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3a\x00\ +\x50\x00\x6c\x00\x65\x00\x61\x00\x73\x00\x65\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x33\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ +\x66\x00\x69\x00\x72\x00\x73\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1d\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\ +\x20\x33\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x69\x72\x73\x74\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x10\x00\x50\x00\x72\x00\x65\x00\x73\x00\x73\x00\x20\x00\ +\x4f\x00\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x50\x72\x65\ +\x73\x73\x20\x4f\x4b\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x5a\x00\x50\x00\x72\x00\x6f\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x4e\ +\x00\x6f\x00\x74\x00\x20\x00\x79\x00\x65\x00\x74\x00\x20\x00\x43\ +\x00\x6f\x00\x64\x00\x65\x00\x64\x00\x20\x00\x77\x00\x61\x00\x69\ +\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x66\x00\x6f\x00\x72\ +\x00\x20\x00\x50\x00\x65\x00\x74\x00\x65\x00\x72\x00\x20\x00\x4c\ +\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x50\x72\x6f\x6a\ +\x65\x63\x74\x69\x6f\x6e\x20\x4e\x6f\x74\x20\x79\x65\x74\x20\x43\ +\x6f\x64\x65\x64\x20\x77\x61\x69\x74\x69\x6e\x67\x20\x66\x6f\x72\ +\x20\x50\x65\x74\x65\x72\x20\x4c\x69\x07\x00\x00\x00\x08\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x28\x00\x52\x00\x65\ +\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x53\x00\x68\x00\x61\ +\x00\x70\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\ +\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x52\x65\ +\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\x65\x61\x74\x75\ +\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x42\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\ +\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x69\x00\x72\x00\x20\x00\x43\x00\x68\x00\x69\x00\x6c\x00\ +\x64\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x21\x52\x65\x6d\x6f\x76\x65\x20\x4f\x62\x6a\x65\x63\x74\x73\x20\ +\x61\x6e\x64\x20\x74\x68\x65\x69\x72\x20\x43\x68\x69\x6c\x64\x72\ +\x65\x6e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\xb0\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\ +\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ +\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\ +\x63\x00\x68\x00\x69\x00\x6c\x00\x64\x00\x72\x00\x65\x00\x6e\x00\ +\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x61\x00\x72\x00\ +\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x72\x00\x65\x00\ +\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x65\x00\x64\x00\ +\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x6f\x00\x74\x00\ +\x68\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x58\x52\ +\x65\x6d\x6f\x76\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\ +\x61\x6c\x6c\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\x74\x68\x61\ +\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x72\x65\x66\x65\x72\x65\ +\x6e\x63\x65\x64\x20\x66\x72\x6f\x6d\x20\x6f\x74\x68\x65\x72\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1c\x00\x52\x00\x65\x00\x70\ +\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ +\x52\x65\x70\x6c\x61\x63\x65\x20\x4f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x9e\x00\x52\x00\x65\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\ +\x20\x00\x61\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\ +\x65\x00\x20\x00\x54\x00\x72\x00\x65\x00\x65\x00\x2e\x00\x20\x00\ +\x50\x00\x6c\x00\x65\x00\x61\x00\x73\x00\x65\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x6f\x00\x6c\x00\ +\x64\x00\x2c\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\x61\x00\ +\x6e\x00\x64\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x6e\x00\ +\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x52\x65\x70\x6c\x61\x63\x65\ +\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x20\x74\x68\ +\x65\x20\x46\x65\x61\x74\x75\x72\x65\x20\x54\x72\x65\x65\x2e\x20\ +\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\x20\x6f\x6c\ +\x64\x2c\x20\x6e\x65\x77\x20\x61\x6e\x64\x20\x70\x61\x72\x65\x6e\ +\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x30\x00\x52\x00\x75\x00\ +\x6e\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x4f\x00\x70\x00\ +\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x66\x00\ +\x61\x00\x69\x00\x6c\x00\x65\x00\x64\x00\x0a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x18\x52\x75\x6e\x6e\x69\x6e\x67\x20\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x20\x66\x61\x69\x6c\x65\x64\x0a\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x28\ +\x00\x55\x00\x6e\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\x65\x00\x64\x00\x20\x00\x46\x00\x75\x00\x6e\x00\x63\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x14\x55\x6e\x73\x75\x70\x70\x6f\x72\x74\x65\x64\x20\x46\x75\ +\x6e\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\ +\x00\x00\x1e\x2b\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x01\xa0\x00\x00\x00\xb0\x00\x00\x10\xf8\x00\x00\x07\x3d\ +\x00\x00\x10\x6b\x00\x39\xdf\x33\x00\x00\x01\xb2\x00\x72\x97\x49\ +\x00\x00\x10\xa6\x01\x0c\x64\xae\x00\x00\x11\x78\x01\x38\xb0\x83\ +\x00\x00\x13\x0c\x01\x40\x42\x85\x00\x00\x0c\x09\x02\x1f\xd9\x48\ +\x00\x00\x04\x84\x02\x7b\x37\xc4\x00\x00\x16\x57\x02\xbc\x05\x8e\ +\x00\x00\x0d\xed\x02\xbe\x05\x8e\x00\x00\x00\xcb\x03\x8c\x88\xc1\ +\x00\x00\x0e\x91\x05\x08\x5c\x93\x00\x00\x03\x6b\x05\x16\xa3\x95\ +\x00\x00\x14\xd1\x05\x66\x9a\x34\x00\x00\x08\xb9\x05\x98\x15\x8e\ +\x00\x00\x0e\x44\x05\xcc\x9a\xd9\x00\x00\x0d\x9b\x05\xe4\x1f\xa9\ +\x00\x00\x11\xe8\x05\xfb\x21\x0b\x00\x00\x07\x01\x06\xe4\x0a\x14\ +\x00\x00\x1a\x43\x06\xee\xa0\xc5\x00\x00\x0a\xe9\x07\x5d\xec\x93\ +\x00\x00\x14\x5a\x07\x5d\xee\x93\x00\x00\x13\xe3\x07\xda\x68\xe7\ +\x00\x00\x0c\x8c\x07\xe4\xd0\x65\x00\x00\x0e\xdb\x08\x10\xb3\x89\ +\x00\x00\x05\xeb\x08\x37\x4e\x99\x00\x00\x17\x14\x08\x4d\xc0\x2e\ +\x00\x00\x1c\x0a\x08\x5d\x45\x73\x00\x00\x01\x22\x08\xa5\x45\x08\ +\x00\x00\x06\xa3\x08\xca\x52\x4b\x00\x00\x16\xd3\x08\xca\x72\x4b\ +\x00\x00\x11\x30\x08\xe2\x7f\xe5\x00\x00\x15\xa5\x09\x2b\x77\x54\ +\x00\x00\x19\xfa\x09\xc0\x82\xb5\x00\x00\x07\x77\x0a\x22\x8d\xb2\ +\x00\x00\x00\x00\x0a\x2b\x47\x64\x00\x00\x0f\xe4\x0a\x96\xcd\x84\ +\x00\x00\x0f\x51\x0a\xd3\x55\x94\x00\x00\x08\x4d\x0a\xf8\x55\x94\ +\x00\x00\x07\xeb\x0b\x61\x1d\x4e\x00\x00\x18\x3b\x0d\x2c\x1d\x28\ +\x00\x00\x04\xdd\x0d\xaa\x21\x43\x00\x00\x15\x4b\x0d\xdc\x00\x68\ +\x00\x00\x05\x8c\x0e\x02\x4e\xea\x00\x00\x1b\x8f\x0e\x75\xf9\x03\ +\x00\x00\x0b\x88\x0e\x80\x99\x15\x00\x00\x17\xdc\x0e\xc6\x00\x19\ +\x00\x00\x0d\x40\x0e\xcc\x78\xf1\x00\x00\x05\x2d\x0f\x18\x51\xc5\ +\x00\x00\x13\x55\x0f\x68\xe5\xc7\x00\x00\x02\x27\x0f\xd3\x1f\xf3\ +\x00\x00\x18\xbb\x69\x00\x00\x1c\x71\x03\x00\x00\x00\x68\x00\x44\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x3a\x00\x20\x00\x50\x00\x72\ +\x00\x6f\x00\x74\x00\x79\x00\x70\x00\x20\x00\x49\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x00\x20\x00\x66\x00\xfc\ +\x00\x72\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x44\x00\x61\ +\x00\x74\x00\x65\x00\x69\x00\x74\x00\x79\x00\x70\x00\x20\x00\x72\ +\x00\x65\x00\x67\x00\x69\x00\x73\x00\x74\x00\x72\x00\x69\x00\x65\ +\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\ +\x44\x65\x62\x75\x67\x3a\x20\x52\x65\x67\x69\x73\x74\x65\x72\x20\ +\x66\x69\x6c\x65\x74\x79\x70\x65\x20\x74\x6f\x20\x70\x72\x6f\x74\ +\x6f\x74\x79\x70\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x72\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x44\x00\x75\x00\x72\x00\ +\x63\x00\x68\x00\x62\x00\x69\x00\x65\x00\x67\x00\x75\x00\x6e\x00\ +\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x44\x65\x66\x6c\x65\ +\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x42\ +\x00\x41\x00\x6c\x00\x6c\x00\x67\x00\x65\x00\x6d\x00\x65\x00\x69\ +\x00\x6e\x00\x65\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\ +\x00\x43\x00\x41\x00\x44\x00\x20\x00\x45\x00\x69\x00\x6e\x00\x73\ +\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x75\x00\x6e\x00\x67\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x65\x6e\x65\ +\x72\x61\x6c\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x30\ +\x00\x41\x00\x6c\x00\x6c\x00\x67\x00\x65\x00\x6d\x00\x65\x00\x69\ +\x00\x6e\x00\x65\x00\x20\x00\x45\x00\x69\x00\x6e\x00\x73\x00\x74\ +\x00\x65\x00\x6c\x00\x6c\x00\x75\x00\x6e\x00\x67\x00\x65\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\ +\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\xc8\x00\x57\x00\x65\x00\x6e\x00\x6e\x00\x20\x00\ +\x64\x00\x69\x00\x65\x00\x73\x00\x65\x00\x20\x00\x4f\x00\x70\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x6b\x00\x74\x00\ +\x69\x00\x76\x00\x69\x00\x65\x00\x72\x00\x74\x00\x20\x00\x69\x00\ +\x73\x00\x74\x00\x2c\x00\x20\x00\x77\x00\x65\x00\x72\x00\x64\x00\ +\x65\x00\x6e\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\ +\x72\x00\x65\x00\x73\x00\x20\x00\x73\x00\x69\x00\x63\x00\x68\x00\ +\x20\x00\x69\x00\x68\x00\x72\x00\x65\x00\x20\x00\x4b\x00\x69\x00\ +\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x69\x00\x6e\x00\x20\x00\ +\x64\x00\x65\x00\x72\x00\x20\x00\x53\x00\x74\x00\x72\x00\x75\x00\ +\x6b\x00\x74\x00\x75\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x69\x00\ +\x63\x00\x68\x00\x74\x00\x20\x00\x75\x00\x6e\x00\x74\x00\x65\x00\ +\x72\x00\x6f\x00\x72\x00\x64\x00\x6e\x00\x65\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x47\x49\x66\x20\x74\x68\x69\x73\x20\x69\ +\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x46\x65\x61\x74\x75\ +\x72\x65\x73\x20\x77\x69\x6c\x6c\x20\x63\x6c\x61\x69\x6d\x20\x74\ +\x68\x69\x65\x72\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\x69\x6e\ +\x20\x74\x68\x65\x20\x74\x72\x65\x65\x20\x76\x69\x65\x77\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\xac\x00\x57\x00\x65\x00\x6e\x00\ +\x6e\x00\x20\x00\x64\x00\x69\x00\x65\x00\x73\x00\x65\x00\x20\x00\ +\x4f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\ +\x6b\x00\x74\x00\x69\x00\x76\x00\x69\x00\x65\x00\x72\x00\x74\x00\ +\x20\x00\x69\x00\x73\x00\x74\x00\x2c\x00\x20\x00\x77\x00\x65\x00\ +\x72\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x69\x00\x63\x00\ +\x68\x00\x20\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\x6d\x00\x61\x00\ +\x74\x00\x72\x00\x69\x00\x78\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x70\x00\x61\x00\x72\x00\ +\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x73\x00\x63\x00\ +\x68\x00\x20\x00\x76\x00\x65\x00\x72\x00\x68\x00\x61\x00\x6c\x00\ +\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x49\ +\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\ +\x64\x2c\x20\x4d\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\x4f\x62\ +\x6a\x65\x63\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x50\x61\x72\ +\x61\x6d\x65\x74\x72\x69\x63\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x18\x00\x4c\x00\x6f\x00\x6b\x00\x61\x00\x6c\x00\x65\x00\x20\ +\x00\x4c\x00\xe4\x00\x6e\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x4c\x6f\x63\x61\x6c\x20\x4c\x65\x6e\x67\x74\x68\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\x4d\x00\x61\x00\ +\x78\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x4d\x61\x78\x4c\x65\x6e\x67\x74\x68\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1e\x00\x4d\x00\x61\x00\ +\x78\x00\x69\x00\x6d\x00\x61\x00\x6c\x00\x65\x00\x20\x00\x46\x00\ +\x6c\x00\xe4\x00\x63\x00\x68\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0c\x4d\x61\x78\x69\x6d\x75\x6d\x20\x41\x72\x65\x61\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1c\x00\x4d\x00\x61\x00\x78\ +\x00\x69\x00\x6d\x00\x61\x00\x6c\x00\x65\x00\x20\x00\x4c\x00\xe4\ +\x00\x6e\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ +\x4d\x61\x78\x69\x6d\x75\x6d\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x5a\x00\x4d\x00\x61\x00\x78\x00\ +\x69\x00\x6d\x00\x61\x00\x6c\x00\x65\x00\x20\x00\x41\x00\x6e\x00\ +\x7a\x00\x61\x00\x68\x00\x6c\x00\x20\x00\x64\x00\x65\x00\x72\x00\ +\x20\x00\x46\x00\x6c\x00\xe4\x00\x63\x00\x68\x00\x65\x00\x6e\x00\ +\x20\x00\x66\x00\xfc\x00\x72\x00\x20\x00\x50\x00\x6f\x00\x6c\x00\ +\x79\x00\x67\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x28\x00\x66\x00\ +\x6e\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x4d\x61\x78\ +\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x66\ +\x61\x63\x65\x73\x20\x66\x6f\x72\x20\x70\x6f\x6c\x79\x67\x6f\x6e\ +\x73\x20\x28\x66\x6e\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x1c\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x61\x00\x6c\x00\ +\x65\x00\x20\x00\x4c\x00\xe4\x00\x6e\x00\x67\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0d\x4d\x61\x78\x69\x75\x6d\x20\x4c\x65\ +\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x34\x00\ +\x50\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x6e\x00\ +\x65\x00\x74\x00\x7a\x00\x20\x00\x52\x00\xfc\x00\x63\x00\x6b\x00\ +\x66\x00\x61\x00\x6c\x00\x6c\x00\x6c\x00\xf6\x00\x73\x00\x75\x00\ +\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\ +\x68\x20\x66\x61\x6c\x6c\x62\x61\x63\x6b\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x2c\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\ +\x43\x00\x41\x00\x44\x00\x20\x00\x50\x00\x72\x00\x6f\x00\x67\x00\ +\x72\x00\x61\x00\x6d\x00\x6d\x00\x64\x00\x61\x00\x74\x00\x65\x00\ +\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x1e\x00\x4f\x00\x70\x00\x65\x00\ +\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x45\x00\x78\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x70\x6f\x72\x74\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x28\x00\x4f\x00\x70\x00\ +\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x69\x00\ +\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x69\x00\x65\x00\x72\x00\ +\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x20\x69\x6d\x70\x6f\x72\x74\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x01\x5e\x00\x44\x00\x69\x00\x65\x00\x20\x00\ +\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x61\x00\x6c\x00\x65\x00\ +\x20\x00\x41\x00\x6e\x00\x7a\x00\x61\x00\x68\x00\x6c\x00\x20\x00\ +\x64\x00\x65\x00\x72\x00\x20\x00\x4b\x00\x61\x00\x6e\x00\x74\x00\ +\x65\x00\x6e\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x65\x00\ +\x69\x00\x6e\x00\x65\x00\x6d\x00\x20\x00\x50\x00\x6f\x00\x6c\x00\ +\x79\x00\x67\x00\x6f\x00\x6e\x00\x2c\x00\x20\x00\x50\x00\x72\x00\ +\x69\x00\x73\x00\x6d\x00\x61\x00\x20\x00\x6f\x00\x64\x00\x65\x00\ +\x72\x00\x20\x00\x50\x00\x72\x00\x69\x00\x73\x00\x6d\x00\x65\x00\ +\x6e\x00\x73\x00\x74\x00\x75\x00\x6d\x00\x70\x00\x66\x00\x2e\x00\ +\x20\x00\x57\x00\x65\x00\x6e\x00\x6e\x00\x20\x00\x66\x00\x6e\x00\ +\x20\x00\x67\x00\x72\x00\xf6\x00\xdf\x00\x65\x00\x72\x00\x20\x00\ +\x61\x00\x6c\x00\x73\x00\x20\x00\x64\x00\x69\x00\x65\x00\x73\x00\ +\x65\x00\x72\x00\x20\x00\x57\x00\x65\x00\x72\x00\x74\x00\x20\x00\ +\x69\x00\x73\x00\x74\x00\x20\x00\x61\x00\x6c\x00\x73\x00\x20\x00\ +\x72\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x62\x00\x65\x00\x74\x00\ +\x72\x00\x61\x00\x63\x00\x68\x00\x74\x00\x65\x00\x74\x00\x2e\x00\ +\x20\x00\x53\x00\x65\x00\x74\x00\x7a\x00\x65\x00\x6e\x00\x20\x00\ +\x53\x00\x69\x00\x65\x00\x20\x00\x64\x00\x69\x00\x65\x00\x73\x00\ +\x20\x00\x61\x00\x75\x00\x66\x00\x20\x00\x30\x00\x20\x00\x66\x00\ +\xfc\x00\x72\x00\x20\x00\x6b\x00\x65\x00\x69\x00\x6e\x00\x65\x00\ +\x20\x00\x42\x00\x65\x00\x67\x00\x72\x00\x65\x00\x6e\x00\x7a\x00\ +\x75\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x9d\x54\ +\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\ +\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x6f\x66\x20\x61\x20\ +\x70\x6f\x6c\x79\x67\x6f\x6e\x2c\x20\x70\x72\x69\x73\x6d\x20\x6f\ +\x72\x20\x66\x72\x75\x73\x74\x75\x6d\x2e\x20\x49\x66\x20\x66\x6e\ +\x20\x69\x73\x20\x67\x72\x65\x61\x74\x65\x72\x20\x74\x68\x61\x6e\ +\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x74\x68\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x69\x73\x20\x63\x6f\x6e\x73\x69\x64\ +\x65\x72\x65\x64\x20\x74\x6f\x20\x62\x65\x20\x61\x20\x63\x69\x72\ +\x63\x75\x6c\x61\x72\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\x30\x20\ +\x66\x6f\x72\x20\x6e\x6f\x20\x6c\x69\x6d\x69\x74\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x46\x00\x44\x00\x65\x00\x72\x00\x20\x00\ +\x50\x00\x66\x00\x61\x00\x64\x00\x20\x00\x7a\x00\x75\x00\x72\x00\ +\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\ +\x44\x00\x20\x00\x50\x00\x72\x00\x6f\x00\x67\x00\x72\x00\x61\x00\ +\x6d\x00\x6d\x00\x64\x00\x61\x00\x74\x00\x65\x00\x69\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x24\x54\x68\x65\x20\x70\x61\x74\x68\x20\ +\x74\x6f\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\ +\x65\x78\x65\x63\x75\x74\x65\x61\x62\x6c\x65\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x36\x00\x54\x00\x72\x00\x69\x00\x61\x00\x6e\ +\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x00\x73\x00\x65\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x6c\ +\x00\x6c\x00\x75\x00\x6e\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x16\x54\x72\x69\x61\x6e\x67\x75\x6c\x61\x74\ +\x69\x6f\x6e\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x38\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\ +\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\x78\x00\x2d\x00\x46\x00\ +\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x76\x00\ +\x65\x00\x72\x00\x77\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x16\x55\x73\x65\x20\x4d\x75\x6c\ +\x74\x6d\x61\x74\x72\x69\x78\x20\x46\x65\x61\x74\x75\x72\x65\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x62\x00\x56\x00\x65\x00\x72\ +\x00\x77\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x76\ +\x00\x6f\x00\x6e\x00\x20\x00\x56\x00\x69\x00\x65\x00\x77\x00\x50\ +\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x64\x00\x65\x00\x72\x00\x20\ +\x00\x69\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x72\x00\x20\x00\x53\ +\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x75\x00\x72\x00\x61\ +\x00\x6e\x00\x73\x00\x69\x00\x63\x00\x68\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1d\x55\x73\x65\x20\x56\x69\x65\x77\x50\x72\ +\x6f\x76\x69\x64\x65\x72\x20\x69\x6e\x20\x54\x72\x65\x65\x20\x56\ +\x69\x65\x77\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1a\x00\x77\ +\x00\x69\x00\x6e\x00\x6b\x00\x65\x00\x6c\x00\x69\x00\x67\x00\x20\ +\x00\x28\x00\x46\x00\x61\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0c\x61\x6e\x67\x75\x6c\x61\x72\x20\x28\x66\x61\x29\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x4b\x00\x6f\x00\x6e\x00\ +\x76\x00\x65\x00\x78\x00\x69\x00\x74\x00\xe4\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x63\x6f\x6e\x76\x65\x78\x69\x74\x79\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x44\x00\x75\x00\ +\x72\x00\x63\x00\x68\x00\x62\x00\x69\x00\x65\x00\x67\x00\x75\x00\ +\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x64\x65\x66\ +\x6c\x65\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x10\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x4c\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x6c\x6f\x63\x61\ +\x6c\x4c\x65\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x0e\x00\ +\x6d\x00\x61\x00\x78\x00\x41\x00\x72\x00\x65\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x07\x6d\x61\x78\x41\x72\x65\x61\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x6d\x00\x61\x00\x78\x00\ +\x69\x00\x6d\x00\x61\x00\x6c\x00\x65\x00\x20\x00\x46\x00\x72\x00\ +\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x67\x00\x72\x00\ +\xf6\x00\xdf\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x6d\ +\x61\x78\x69\x6d\x75\x6d\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x20\ +\x73\x69\x7a\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x42\x00\ +\x6d\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\x61\x00\x6c\x00\x65\x00\ +\x72\x00\x20\x00\x57\x00\x69\x00\x6e\x00\x6b\x00\x65\x00\x6c\x00\ +\x20\x00\x66\x00\xfc\x00\x72\x00\x20\x00\x65\x00\x69\x00\x6e\x00\ +\x20\x00\x46\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x6d\x69\x6e\x69\x6d\ +\x75\x6d\x20\x61\x6e\x67\x6c\x65\x20\x66\x6f\x72\x20\x61\x20\x66\ +\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x38\x00\x4d\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x73\x00\x74\ +\x00\x67\x00\x72\x00\xf6\x00\xdf\x00\x65\x00\x20\x00\x65\x00\x69\ +\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x46\x00\x72\x00\x61\x00\x67\ +\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1a\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x73\x69\x7a\x65\ +\x20\x6f\x66\x20\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x04\x00\x6d\x00\x6d\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x02\x6d\x6d\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x14\x00\x47\x00\x72\x00\xf6\x00\xdf\x00\x65\x00\x20\ +\x00\x28\x00\x66\x00\x73\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x09\x73\x69\x7a\x65\x20\x28\x66\x73\x29\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x02\x00\xb0\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x01\xb0\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x22\x00\x20\ +\x00\x42\x00\x69\x00\x74\x00\x74\x00\x65\x00\x20\x00\x4f\x00\x4b\ +\x00\x20\x00\x64\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x65\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x20\x50\x72\x65\x73\x73\ +\x20\x4f\x4b\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x3c\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\ +\x00\x43\x00\x41\x00\x44\x00\x2d\x00\x45\x00\x6c\x00\x65\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x68\x00\x69\x00\x6e\x00\x7a\ +\x00\x75\x00\x66\x00\xfc\x00\x67\x00\x65\x00\x6e\x00\x2e\x00\x2e\ +\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x41\x64\x64\x20\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x45\x6c\x65\x6d\x65\x6e\x74\ +\x2e\x2e\x2e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\xb4\x00\x46\x00\xfc\x00\x67\x00\x74\x00\x20\ +\x00\x65\x00\x69\x00\x6e\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\ +\x00\x53\x00\x43\x00\x41\x00\x44\x00\x2d\x00\x45\x00\x6c\x00\x65\ +\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x68\x00\x69\x00\x6e\ +\x00\x7a\x00\x75\x00\x2c\x00\x20\x00\x69\x00\x6e\x00\x64\x00\x65\ +\x00\x6d\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\ +\x00\x41\x00\x44\x00\x2d\x00\x43\x00\x6f\x00\x64\x00\x65\x00\x20\ +\x00\x65\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x62\x00\x65\x00\x6e\ +\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x61\x00\x75\ +\x00\x73\x00\x67\x00\x65\x00\x66\x00\xfc\x00\x68\x00\x72\x00\x74\ +\x00\x20\x00\x77\x00\x69\x00\x72\x00\x64\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x53\x41\x64\x64\x20\x61\x6e\x20\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\x62\x79\x20\x65\ +\x6e\x74\x65\x72\x69\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x20\x63\x6f\x64\x65\x20\x61\x6e\x64\x20\x65\x78\x65\x63\x75\x74\ +\x69\x6e\x67\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x20\x62\x69\x6e\x61\x72\x79\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x20\x00\x46\x00\x6f\x00\x72\ +\x00\x6d\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x66\ +\x00\xe4\x00\x72\x00\x62\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x43\x6f\x6c\x6f\x72\x20\x53\x68\x61\x70\x65\x73\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x50\x00\x46\x00\x6f\x00\x72\x00\x6d\x00\x65\x00\x6e\x00\ +\x20\x00\x6e\x00\x61\x00\x63\x00\x68\x00\x20\x00\x47\x00\xfc\x00\ +\x6c\x00\x74\x00\x69\x00\x67\x00\x6b\x00\x65\x00\x69\x00\x74\x00\ +\x20\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x54\x00\x79\x00\x70\x00\ +\x20\x00\x65\x00\x69\x00\x6e\x00\x66\x00\xe4\x00\x72\x00\x62\x00\ +\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x43\x6f\x6c\ +\x6f\x72\x20\x53\x68\x61\x70\x65\x73\x20\x62\x79\x20\x76\x61\x6c\ +\x69\x64\x69\x74\x79\x20\x61\x6e\x64\x20\x74\x79\x70\x65\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x44\x00\x4b\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\ +\x69\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x6f\x00\ +\x6e\x00\x20\x00\x4b\x00\x61\x00\x6e\x00\x74\x00\x65\x00\x6e\x00\ +\x20\x00\x7a\x00\x75\x00\x20\x00\x46\x00\x6c\x00\xe4\x00\x63\x00\ +\x68\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\ +\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\x67\x65\x73\x20\x54\x6f\x20\ +\x46\x61\x63\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x44\x00\x4b\x00\x6f\x00\x6e\x00\x76\ +\x00\x65\x00\x72\x00\x74\x00\x69\x00\x65\x00\x72\x00\x65\x00\x6e\ +\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x4b\x00\x61\x00\x6e\ +\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x7a\x00\x75\x00\x20\x00\x46\ +\x00\x6c\x00\xe4\x00\x63\x00\x68\x00\x65\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\ +\x67\x65\x73\x20\x74\x6f\x20\x46\x61\x63\x65\x73\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x42\x00\ +\x46\x00\x6f\x00\x72\x00\x6d\x00\x20\x00\x56\x00\x65\x00\x72\x00\ +\x66\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x72\x00\x6e\x00\x20\x00\ +\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\ +\x65\x00\x72\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x43\x72\x65\x61\x74\ +\x65\x20\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\ +\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x50\x00\x6c\x00\x61\x00\ +\x7a\x00\x69\x00\x65\x00\x72\x00\x75\x00\x6e\x00\x67\x00\x65\x00\ +\x6e\x00\x20\x00\x65\x00\x72\x00\x77\x00\x65\x00\x69\x00\x74\x00\ +\x65\x00\x72\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x45\ +\x78\x70\x61\x6e\x64\x20\x50\x6c\x61\x63\x65\x6d\x65\x6e\x74\x73\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x66\x00\x45\x00\x72\x00\x77\x00\x65\x00\x69\x00\x74\x00\ +\x65\x00\x72\x00\x74\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\ +\x20\x00\x50\x00\x6c\x00\x61\x00\x74\x00\x7a\x00\x69\x00\x65\x00\ +\x72\x00\x75\x00\x6e\x00\x67\x00\x65\x00\x6e\x00\x20\x00\x64\x00\ +\x65\x00\x6e\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\ +\x72\x00\x65\x00\x20\x00\x42\x00\x61\x00\x75\x00\x6d\x00\x20\x00\ +\x68\x00\x69\x00\x6e\x00\x61\x00\x62\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2f\x45\x78\x70\x61\x6e\x64\x20\x61\x6c\x6c\x20\x70\x6c\ +\x61\x63\x65\x6d\x65\x6e\x74\x73\x20\x64\x6f\x77\x6e\x77\x61\x72\ +\x64\x73\x20\x74\x68\x65\x20\x46\x65\x61\x74\x75\x72\x65\x54\x72\ +\x65\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x42\x00\x42\x00\x69\x00\x74\x00\x74\x00\x65\x00\ +\x20\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\ +\x53\x00\x69\x00\x65\x00\x20\x00\x7a\x00\x75\x00\x65\x00\x72\x00\ +\x73\x00\x74\x00\x20\x00\x33\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1d\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\x20\x33\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x69\x72\x73\x74\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x1c\x00\x44\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x65\x00\x6e\x00\ +\x20\x00\x53\x00\x69\x00\x65\x00\x20\x00\x4f\x00\x4b\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\ +\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x7e\x00\x50\x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x6b\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x66\x00\x75\x00\x6e\x00\x6b\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6e\x00\x6f\x00\x63\ +\x00\x68\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\x00\x74\x00\x20\ +\x00\x70\x00\x72\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x6d\x00\x6d\ +\x00\x69\x00\x65\x00\x72\x00\x74\x00\x2c\x00\x20\x00\x77\x00\x61\ +\x00\x72\x00\x74\x00\x65\x00\x20\x00\x61\x00\x75\x00\x66\x00\x20\ +\x00\x50\x00\x65\x00\x74\x00\x65\x00\x72\x00\x20\x00\x4c\x00\x69\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x50\x72\x6f\x6a\x65\x63\ +\x74\x69\x6f\x6e\x20\x4e\x6f\x74\x20\x79\x65\x74\x20\x43\x6f\x64\ +\x65\x64\x20\x77\x61\x69\x74\x69\x6e\x67\x20\x66\x6f\x72\x20\x50\ +\x65\x74\x65\x72\x20\x4c\x69\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2e\x00\x46\x00\x6f\x00\x72\ +\x00\x6d\x00\x20\x00\x76\x00\x65\x00\x72\x00\x66\x00\x65\x00\x69\ +\x00\x6e\x00\x65\x00\x72\x00\x6e\x00\x20\x00\x46\x00\x65\x00\x61\ +\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x14\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\ +\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x42\x00\x4f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x64\x00\ +\x20\x00\x69\x00\x68\x00\x72\x00\x65\x00\x20\x00\x4b\x00\x69\x00\ +\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x74\x00\ +\x66\x00\x65\x00\x72\x00\x6e\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x21\x52\x65\x6d\x6f\x76\x65\x20\x4f\x62\x6a\x65\ +\x63\x74\x73\x20\x61\x6e\x64\x20\x74\x68\x65\x69\x72\x20\x43\x68\ +\x69\x6c\x64\x72\x65\x6e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\xca\x00\x45\x00\x6e\x00\x74\x00\ +\x66\x00\x65\x00\x72\x00\x6e\x00\x74\x00\x20\x00\x64\x00\x69\x00\ +\x65\x00\x20\x00\x61\x00\x75\x00\x73\x00\x67\x00\x65\x00\x77\x00\ +\xe4\x00\x68\x00\x6c\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x4f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x75\x00\ +\x6e\x00\x64\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\ +\x4b\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x2c\x00\x20\x00\ +\x64\x00\x69\x00\x65\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\x00\ +\x74\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x6e\x00\ +\x64\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x4f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x72\x00\ +\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x7a\x00\x69\x00\ +\x65\x00\x72\x00\x74\x00\x20\x00\x77\x00\x65\x00\x72\x00\x64\x00\ +\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x58\x52\x65\x6d\ +\x6f\x76\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\x61\x6c\ +\x6c\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\x74\x68\x61\x74\x20\ +\x61\x72\x65\x20\x6e\x6f\x74\x20\x72\x65\x66\x65\x72\x65\x6e\x63\ +\x65\x64\x20\x66\x72\x6f\x6d\x20\x6f\x74\x68\x65\x72\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x1e\x00\x4f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x20\x00\x65\x00\x72\x00\x73\x00\x65\x00\x74\ +\x00\x7a\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ +\x52\x65\x70\x6c\x61\x63\x65\x20\x4f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\xe0\x00\x45\x00\x72\x00\x73\x00\x65\x00\x74\x00\x7a\x00\x74\x00\ +\x20\x00\x65\x00\x69\x00\x6e\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x64\x00\ +\x65\x00\x72\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\ +\x72\x00\x65\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\ +\x75\x00\x72\x00\x2e\x00\x20\x00\x42\x00\x69\x00\x74\x00\x74\x00\ +\x65\x00\x20\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x65\x00\x6e\x00\ +\x20\x00\x53\x00\x69\x00\x65\x00\x20\x00\x64\x00\x61\x00\x73\x00\ +\x20\x00\x61\x00\x6c\x00\x74\x00\x65\x00\x2c\x00\x20\x00\x64\x00\ +\x61\x00\x73\x00\x20\x00\x6e\x00\x65\x00\x75\x00\x65\x00\x20\x00\ +\x75\x00\x6e\x00\x64\x00\x20\x00\x64\x00\x61\x00\x73\x00\x20\x00\ +\xfc\x00\x62\x00\x65\x00\x72\x00\x67\x00\x65\x00\x6f\x00\x72\x00\ +\x64\x00\x6e\x00\x65\x00\x74\x00\x65\x00\x73\x00\x20\x00\x4f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x61\x00\x75\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x52\x65\x70\x6c\x61\ +\x63\x65\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x20\ +\x74\x68\x65\x20\x46\x65\x61\x74\x75\x72\x65\x20\x54\x72\x65\x65\ +\x2e\x20\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\x20\ +\x6f\x6c\x64\x2c\x20\x6e\x65\x77\x20\x61\x6e\x64\x20\x70\x61\x72\ +\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x46\x00\x46\x00\ +\x65\x00\x68\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x62\x00\x65\x00\ +\x69\x00\x6d\x00\x20\x00\x41\x00\x75\x00\x73\x00\x66\x00\xfc\x00\ +\x68\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\ +\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\ +\x44\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x52\x75\x6e\ +\x6e\x69\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x66\x61\ +\x69\x6c\x65\x64\x0a\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x36\x00\x4e\x00\x69\x00\x63\x00\x68\ +\x00\x74\x00\x20\x00\x75\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x73\ +\x00\x74\x00\xfc\x00\x74\x00\x7a\x00\x74\x00\x65\x00\x20\x00\x46\ +\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x14\x55\x6e\x73\x75\x70\x70\x6f\x72\ +\x74\x65\x64\x20\x46\x75\x6e\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x00\x00\x19\xbf\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x01\xa0\x00\x00\x00\xb0\x00\x00\x0e\x74\x00\x00\x07\x3d\ +\x00\x00\x0d\xe9\x00\x39\xdf\x33\x00\x00\x01\x78\x00\x72\x97\x49\ +\x00\x00\x0e\x24\x01\x0c\x64\xae\x00\x00\x0e\xd8\x01\x38\xb0\x83\ +\x00\x00\x10\x40\x01\x40\x42\x85\x00\x00\x09\xe7\x02\x1f\xd9\x48\ +\x00\x00\x03\xac\x02\x7b\x37\xc4\x00\x00\x13\x27\x02\xbc\x05\x8e\ +\x00\x00\x0b\x85\x02\xbe\x05\x8e\x00\x00\x00\xbf\x03\x8c\x88\xc1\ +\x00\x00\x0c\x25\x05\x08\x5c\x93\x00\x00\x02\xcf\x05\x16\xa3\x95\ +\x00\x00\x11\xbf\x05\x66\x9a\x34\x00\x00\x07\x0f\x05\x98\x15\x8e\ +\x00\x00\x0b\xd8\x05\xcc\x9a\xd9\x00\x00\x0b\x43\x05\xe4\x1f\xa9\ +\x00\x00\x0f\x2a\x05\xfb\x21\x0b\x00\x00\x05\xa3\x06\xe4\x0a\x14\ +\x00\x00\x16\x71\x06\xee\xa0\xc5\x00\x00\x09\x1b\x07\x5d\xec\x93\ +\x00\x00\x11\x60\x07\x5d\xee\x93\x00\x00\x11\x01\x07\xda\x68\xe7\ +\x00\x00\x0a\x5e\x07\xe4\xd0\x65\x00\x00\x0c\x69\x08\x10\xb3\x89\ +\x00\x00\x04\xdf\x08\x37\x4e\x99\x00\x00\x13\x9c\x08\x4d\xc0\x2e\ +\x00\x00\x17\xc8\x08\x5d\x45\x73\x00\x00\x01\x12\x08\xa5\x45\x08\ +\x00\x00\x05\x59\x08\xca\x52\x4b\x00\x00\x13\x71\x08\xca\x72\x4b\ +\x00\x00\x0e\xac\x08\xe2\x7f\xe5\x00\x00\x12\x7d\x09\x2b\x77\x54\ +\x00\x00\x16\x3e\x09\xc0\x82\xb5\x00\x00\x05\xff\x0a\x22\x8d\xb2\ +\x00\x00\x00\x00\x0a\x2b\x47\x64\x00\x00\x0d\x66\x0a\x96\xcd\x84\ +\x00\x00\x0c\xdd\x0a\xd3\x55\x94\x00\x00\x06\xb7\x0a\xf8\x55\x94\ +\x00\x00\x06\x5f\x0b\x61\x1d\x4e\x00\x00\x14\x99\x0d\x2c\x1d\x28\ +\x00\x00\x04\x05\x0d\xaa\x21\x43\x00\x00\x12\x2d\x0d\xdc\x00\x68\ +\x00\x00\x04\x94\x0e\x02\x4e\xea\x00\x00\x17\x7b\x0e\x75\xf9\x03\ +\x00\x00\x09\x90\x0e\x80\x99\x15\x00\x00\x14\x40\x0e\xc6\x00\x19\ +\x00\x00\x0a\xea\x0e\xcc\x78\xf1\x00\x00\x04\x4b\x0f\x18\x51\xc5\ +\x00\x00\x10\x81\x0f\x68\xe5\xc7\x00\x00\x01\xc5\x0f\xd3\x1f\xf3\ +\x00\x00\x15\x19\x69\x00\x00\x18\x05\x03\x00\x00\x00\x5c\x00\x44\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x3a\x00\x20\x00\x52\x00\x65\ +\x00\x67\x00\x69\x00\x73\x00\x74\x00\x65\x00\x72\x00\x20\x00\x66\ +\x00\x69\x00\x6c\x00\x65\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x74\x00\x6f\ +\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2e\x44\x65\x62\x75\x67\x3a\x20\x52\x65\x67\x69\x73\ +\x74\x65\x72\x20\x66\x69\x6c\x65\x74\x79\x70\x65\x20\x74\x6f\x20\ +\x70\x72\x6f\x74\x6f\x74\x79\x70\x65\x20\x69\x6d\x70\x6f\x72\x74\ +\x65\x72\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x44\x00\ +\x65\x00\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x44\x65\x66\x6c\x65\ +\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x5e\x38\x89\xc4\x8b\xbe\x7f\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x19\x47\x65\x6e\x65\x72\x61\x6c\x20\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x08\x5e\x38\x89\xc4\x8b\xbe\x7f\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\ +\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x8e\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\ +\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\ +\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x46\x00\x65\x00\ +\x61\x00\x74\x00\x75\x00\x72\x00\x65\x00\x73\x00\x20\x00\x77\x00\ +\x69\x00\x6c\x00\x6c\x00\x20\x00\x63\x00\x6c\x00\x61\x00\x69\x00\ +\x6d\x00\x20\x00\x74\x00\x68\x00\x69\x00\x65\x00\x72\x00\x20\x00\ +\x63\x00\x68\x00\x69\x00\x6c\x00\x64\x00\x72\x00\x65\x00\x6e\x00\ +\x20\x00\x69\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x74\x00\x72\x00\x65\x00\x65\x00\x20\x00\x76\x00\x69\x00\x65\x00\ +\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x47\x49\x66\x20\x74\x68\ +\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x46\ +\x65\x61\x74\x75\x72\x65\x73\x20\x77\x69\x6c\x6c\x20\x63\x6c\x61\ +\x69\x6d\x20\x74\x68\x69\x65\x72\x20\x63\x68\x69\x6c\x64\x72\x65\ +\x6e\x20\x69\x6e\x20\x74\x68\x65\x20\x74\x72\x65\x65\x20\x76\x69\ +\x65\x77\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x70\x00\x49\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\ +\x64\x00\x2c\x00\x20\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\x6d\x00\ +\x61\x00\x74\x00\x72\x00\x69\x00\x78\x00\x20\x00\x4f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x50\x00\x61\x00\x72\x00\ +\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x63\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x38\x49\x66\x20\x74\x68\x69\x73\x20\x69\ +\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x4d\x75\x6c\x74\x6d\ +\x61\x74\x72\x69\x78\x20\x4f\x62\x6a\x65\x63\x74\x20\x77\x69\x6c\ +\x6c\x20\x62\x65\x20\x50\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x4c\x00\x6f\x00\x63\ +\x00\x61\x00\x6c\x00\x20\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\ +\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x4c\x6f\x63\x61\ +\x6c\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x08\x67\x00\x59\x27\x95\x7f\x5e\xa6\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x09\x4d\x61\x78\x4c\x65\x6e\x67\x74\x68\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x08\x67\x00\x59\x27\x97\x62\x79\ +\xef\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x4d\x61\x78\x69\x6d\ +\x75\x6d\x20\x41\x72\x65\x61\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x08\x67\x00\x59\x27\x95\x7f\x5e\xa6\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0e\x4d\x61\x78\x69\x6d\x75\x6d\x20\x4c\x65\x6e\x67\ +\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1c\x59\x1a\x8f\ +\xb9\x5f\x62\x97\x62\x72\x47\x76\x84\x67\x00\x59\x27\x65\x70\x91\ +\xcf\x00\x28\x00\x66\x00\x6e\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x29\x4d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\ +\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x66\x6f\x72\x20\x70\ +\x6f\x6c\x79\x67\x6f\x6e\x73\x20\x28\x66\x6e\x29\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x08\x67\x00\x59\x27\x95\x7f\x5e\xa6\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x61\x78\x69\x75\x6d\x20\ +\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x1a\x00\x4d\x00\x65\x00\x73\x00\x68\x00\x20\x00\x66\x00\x61\x00\ +\x6c\x00\x6c\x00\x62\x00\x61\x00\x63\x00\x6b\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x66\x61\x6c\x6c\x62\x61\ +\x63\x6b\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x62\x67\x88\ +\x4c\x7a\x0b\x5e\x8f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\x61\x62\ +\x6c\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x5b\xfc\x51\ +\xfa\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x20\x65\x78\x70\x6f\x72\x74\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x14\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\ +\x43\x00\x41\x00\x44\x5b\xfc\x51\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x69\x6d\x70\x6f\ +\x72\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x01\x3a\x00\x54\x00\ +\x68\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\ +\x75\x00\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\ +\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x66\x00\x61\x00\x63\x00\ +\x65\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x20\x00\ +\x70\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x2c\x00\ +\x20\x00\x70\x00\x72\x00\x69\x00\x73\x00\x6d\x00\x20\x00\x6f\x00\ +\x72\x00\x20\x00\x66\x00\x72\x00\x75\x00\x73\x00\x74\x00\x75\x00\ +\x6d\x00\x2e\x00\x20\x00\x49\x00\x66\x00\x20\x00\x66\x00\x6e\x00\ +\x20\x00\x69\x00\x73\x00\x20\x00\x67\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\x61\x00\x6e\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x76\x00\x61\x00\ +\x6c\x00\x75\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\ +\x65\x00\x72\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ +\x62\x00\x65\x00\x20\x00\x61\x00\x20\x00\x63\x00\x69\x00\x72\x00\ +\x63\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x2e\x00\x20\x00\x53\x00\ +\x65\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x30\x00\x20\x00\ +\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x6c\x00\ +\x69\x00\x6d\x00\x69\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x9d\x54\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\ +\x62\x65\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x6f\x66\x20\ +\x61\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x2c\x20\x70\x72\x69\x73\x6d\ +\x20\x6f\x72\x20\x66\x72\x75\x73\x74\x75\x6d\x2e\x20\x49\x66\x20\ +\x66\x6e\x20\x69\x73\x20\x67\x72\x65\x61\x74\x65\x72\x20\x74\x68\ +\x61\x6e\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x74\x68\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x73\x20\x63\x6f\x6e\x73\ +\x69\x64\x65\x72\x65\x64\x20\x74\x6f\x20\x62\x65\x20\x61\x20\x63\ +\x69\x72\x63\x75\x6c\x61\x72\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\ +\x30\x20\x66\x6f\x72\x20\x6e\x6f\x20\x6c\x69\x6d\x69\x74\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x1c\x00\x4f\x00\x70\x00\x65\x00\ +\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x62\x67\x88\x4c\x7a\x0b\x5e\ +\x8f\x8d\xef\x5f\x84\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x54\ +\x68\x65\x20\x70\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\x65\x61\ +\x62\x6c\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x0c\x4e\x09\ +\x89\xd2\x52\x56\x52\x06\x8b\xbe\x7f\x6e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x16\x54\x72\x69\x61\x6e\x67\x75\x6c\x61\x74\x69\x6f\ +\x6e\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x2c\x00\x55\x00\x73\x00\x65\x00\x20\x00\x4d\x00\ +\x75\x00\x6c\x00\x74\x00\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\ +\x78\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x55\x73\x65\x20\x4d\ +\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\x46\x65\x61\x74\x75\x72\ +\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3a\x00\x55\x00\x73\ +\x00\x65\x00\x20\x00\x56\x00\x69\x00\x65\x00\x77\x00\x50\x00\x72\ +\x00\x6f\x00\x76\x00\x69\x00\x64\x00\x65\x00\x72\x00\x20\x00\x69\ +\x00\x6e\x00\x20\x00\x54\x00\x72\x00\x65\x00\x65\x00\x20\x00\x56\ +\x00\x69\x00\x65\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\ +\x55\x73\x65\x20\x56\x69\x65\x77\x50\x72\x6f\x76\x69\x64\x65\x72\ +\x20\x69\x6e\x20\x54\x72\x65\x65\x20\x56\x69\x65\x77\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x18\x00\x61\x00\x6e\x00\x67\x00\x75\ +\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x28\x00\x66\x00\x61\x00\x29\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x61\x6e\x67\x75\x6c\x61\ +\x72\x20\x28\x66\x61\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x04\x51\xf8\x5e\xa6\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x63\ +\x6f\x6e\x76\x65\x78\x69\x74\x79\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x14\x00\x64\x00\x65\x00\x66\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x64\x65\x66\x6c\x65\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x10\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x6c\ +\x00\x4c\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\ +\x6c\x6f\x63\x61\x6c\x4c\x65\x6e\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x08\x67\x00\x59\x27\x97\x62\x79\xef\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x07\x6d\x61\x78\x41\x72\x65\x61\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x2a\x00\x6d\x00\x61\x00\x78\x00\x69\x00\ +\x6d\x00\x75\x00\x6d\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x73\x00\x69\x00\x7a\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x6d\x61\x78\x69\x6d\ +\x75\x6d\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x20\x73\x69\x7a\x65\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x38\x00\x6d\x00\x69\x00\ +\x6e\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x61\x00\x6e\x00\ +\x67\x00\x6c\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\ +\x61\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x6d\x69\x6e\ +\x69\x6d\x75\x6d\x20\x61\x6e\x67\x6c\x65\x20\x66\x6f\x72\x20\x61\ +\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x34\x00\x6d\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\x75\ +\x00\x6d\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x6f\ +\x00\x66\x00\x20\x00\x61\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\ +\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1a\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x73\x69\x7a\x65\x20\x6f\ +\x66\x20\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x04\x00\x6d\x00\x6d\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x02\x6d\x6d\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x12\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x28\x00\x66\ +\x00\x73\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x73\x69\ +\x7a\x65\x20\x28\x66\x73\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x02\x00\xb0\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\xb0\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x06\x63\x09\x78\x6e\x5b\x9a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x20\x50\x72\x65\x73\x73\ +\x20\x4f\x4b\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x1e\x6d\xfb\x52\xa0\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x51\x43\x7d\x20\x00\x2e\ +\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x41\x64\ +\x64\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x45\x6c\x65\x6d\x65\ +\x6e\x74\x2e\x2e\x2e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\xa6\x00\x41\x00\x64\x00\x64\x00\x20\ +\x00\x61\x00\x6e\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\ +\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x62\x00\x79\x00\x20\x00\x65\ +\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x63\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x61\x00\x6e\ +\x00\x64\x00\x20\x00\x65\x00\x78\x00\x65\x00\x63\x00\x75\x00\x74\ +\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x62\x00\x69\x00\x6e\x00\x61\x00\x72\x00\x79\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x53\x41\x64\x64\x20\x61\x6e\x20\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\ +\x62\x79\x20\x65\x6e\x74\x65\x72\x69\x6e\x67\x20\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x20\x63\x6f\x64\x65\x20\x61\x6e\x64\x20\x65\x78\ +\x65\x63\x75\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x20\x62\x69\x6e\x61\x72\x79\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x43\ +\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x53\x00\x68\x00\x61\ +\x00\x70\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x43\x6f\x6c\x6f\x72\x20\x53\x68\x61\x70\x65\x73\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x42\x00\ +\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x53\x00\x68\x00\ +\x61\x00\x70\x00\x65\x00\x73\x00\x20\x00\x62\x00\x79\x00\x20\x00\ +\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x69\x00\x74\x00\x79\x00\ +\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x74\x00\x79\x00\x70\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x43\x6f\x6c\x6f\x72\ +\x20\x53\x68\x61\x70\x65\x73\x20\x62\x79\x20\x76\x61\x6c\x69\x64\ +\x69\x74\x79\x20\x61\x6e\x64\x20\x74\x79\x70\x65\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\ +\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x20\x00\ +\x45\x00\x64\x00\x67\x00\x65\x00\x73\x00\x20\x00\x54\x00\x6f\x00\ +\x20\x00\x46\x00\x61\x00\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\x67\ +\x65\x73\x20\x54\x6f\x20\x46\x61\x63\x65\x73\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x43\ +\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x20\x00\x45\ +\x00\x64\x00\x67\x00\x65\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\ +\x00\x46\x00\x61\x00\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\x67\x65\ +\x73\x20\x74\x6f\x20\x46\x61\x63\x65\x73\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x36\x00\x43\x00\ +\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x52\x00\x65\x00\ +\x66\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x53\x00\x68\x00\x61\x00\ +\x70\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\ +\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x43\x72\x65\ +\x61\x74\x65\x20\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\ +\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x22\x00\x45\x00\x78\x00\ +\x70\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x50\x00\x6c\x00\x61\x00\ +\x63\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x11\x45\x78\x70\x61\x6e\x64\x20\x50\x6c\ +\x61\x63\x65\x6d\x65\x6e\x74\x73\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x5e\x00\x45\x00\x78\x00\ +\x70\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\ +\x20\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x73\x00\x20\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\ +\x77\x00\x61\x00\x72\x00\x64\x00\x73\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\ +\x65\x00\x54\x00\x72\x00\x65\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2f\x45\x78\x70\x61\x6e\x64\x20\x61\x6c\x6c\x20\x70\x6c\ +\x61\x63\x65\x6d\x65\x6e\x74\x73\x20\x64\x6f\x77\x6e\x77\x61\x72\ +\x64\x73\x20\x74\x68\x65\x20\x46\x65\x61\x74\x75\x72\x65\x54\x72\ +\x65\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x10\x8b\xf7\x51\x48\x90\x09\x62\xe9\x4e\x09\x4e\ +\x2a\x5b\xf9\x8c\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x50\ +\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\x20\x33\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x20\x66\x69\x72\x73\x74\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x06\x63\ +\x09\x78\x6e\x5b\x9a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x50\ +\x72\x65\x73\x73\x20\x4f\x4b\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x5a\x00\x50\x00\x72\x00\x6f\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\ +\x00\x4e\x00\x6f\x00\x74\x00\x20\x00\x79\x00\x65\x00\x74\x00\x20\ +\x00\x43\x00\x6f\x00\x64\x00\x65\x00\x64\x00\x20\x00\x77\x00\x61\ +\x00\x69\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x66\x00\x6f\ +\x00\x72\x00\x20\x00\x50\x00\x65\x00\x74\x00\x65\x00\x72\x00\x20\ +\x00\x4c\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x50\x72\ +\x6f\x6a\x65\x63\x74\x69\x6f\x6e\x20\x4e\x6f\x74\x20\x79\x65\x74\ +\x20\x43\x6f\x64\x65\x64\x20\x77\x61\x69\x74\x69\x6e\x67\x20\x66\ +\x6f\x72\x20\x50\x65\x74\x65\x72\x20\x4c\x69\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x28\x00\x52\ +\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x53\x00\x68\ +\x00\x61\x00\x70\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\ +\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\ +\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\x65\x61\ +\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x42\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\ +\x76\x00\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x69\x00\x72\x00\x20\x00\x43\x00\x68\x00\x69\x00\ +\x6c\x00\x64\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x21\x52\x65\x6d\x6f\x76\x65\x20\x4f\x62\x6a\x65\x63\x74\ +\x73\x20\x61\x6e\x64\x20\x74\x68\x65\x69\x72\x20\x43\x68\x69\x6c\ +\x64\x72\x65\x6e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\xb0\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\ +\x76\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\ +\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\ +\x20\x00\x63\x00\x68\x00\x69\x00\x6c\x00\x64\x00\x72\x00\x65\x00\ +\x6e\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x61\x00\ +\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x72\x00\ +\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x65\x00\ +\x64\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x6f\x00\ +\x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x58\x52\x65\x6d\x6f\x76\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x6e\ +\x64\x20\x61\x6c\x6c\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\x74\ +\x68\x61\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x72\x65\x66\x65\ +\x72\x65\x6e\x63\x65\x64\x20\x66\x72\x6f\x6d\x20\x6f\x74\x68\x65\ +\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x08\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x08\x66\xff\x63\x62\ +\x5b\xf9\x8c\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x52\x65\ +\x70\x6c\x61\x63\x65\x20\x4f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x9e\x00\ +\x52\x00\x65\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x20\x00\ +\x61\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x00\ +\x20\x00\x54\x00\x72\x00\x65\x00\x65\x00\x2e\x00\x20\x00\x50\x00\ +\x6c\x00\x65\x00\x61\x00\x73\x00\x65\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x6f\x00\x6c\x00\x64\x00\ +\x2c\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\x61\x00\x6e\x00\ +\x64\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x6e\x00\x74\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4f\x52\x65\x70\x6c\x61\x63\x65\x20\x61\ +\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x20\x74\x68\x65\x20\ +\x46\x65\x61\x74\x75\x72\x65\x20\x54\x72\x65\x65\x2e\x20\x50\x6c\ +\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\x20\x6f\x6c\x64\x2c\ +\x20\x6e\x65\x77\x20\x61\x6e\x64\x20\x70\x61\x72\x65\x6e\x74\x20\ +\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x18\x8f\xd0\x88\x4c\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x59\x31\x8d\ +\x25\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x52\x75\x6e\x6e\x69\ +\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x66\x61\x69\x6c\ +\x65\x64\x0a\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x0c\x4e\x0d\x65\x2f\x63\x01\x76\x84\x52\x9f\ +\x80\xfd\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x55\x6e\x73\x75\ +\x70\x70\x6f\x72\x74\x65\x64\x20\x46\x75\x6e\x63\x74\x69\x6f\x6e\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x00\x00\x1d\xb1\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x01\xa0\x00\x00\x00\xb0\x00\x00\x10\xda\x00\x00\x07\x3d\ +\x00\x00\x10\x4b\x00\x39\xdf\x33\x00\x00\x01\xcc\x00\x72\x97\x49\ +\x00\x00\x10\x86\x01\x0c\x64\xae\x00\x00\x11\x56\x01\x38\xb0\x83\ +\x00\x00\x12\xd0\x01\x40\x42\x85\x00\x00\x0b\xef\x02\x1f\xd9\x48\ +\x00\x00\x04\x52\x02\x7b\x37\xc4\x00\x00\x16\x0f\x02\xbc\x05\x8e\ +\x00\x00\x0d\xd3\x02\xbe\x05\x8e\x00\x00\x00\xef\x03\x8c\x88\xc1\ +\x00\x00\x0e\x71\x05\x08\x5c\x93\x00\x00\x03\x5d\x05\x16\xa3\x95\ +\x00\x00\x14\x8b\x05\x66\x9a\x34\x00\x00\x08\x9b\x05\x98\x15\x8e\ +\x00\x00\x0e\x24\x05\xcc\x9a\xd9\x00\x00\x0d\x83\x05\xe4\x1f\xa9\ +\x00\x00\x11\xc6\x05\xfb\x21\x0b\x00\x00\x06\xed\x06\xe4\x0a\x14\ +\x00\x00\x19\xe1\x06\xee\xa0\xc5\x00\x00\x0a\xbb\x07\x5d\xec\x93\ +\x00\x00\x14\x1e\x07\x5d\xee\x93\x00\x00\x13\xb1\x07\xda\x68\xe7\ +\x00\x00\x0c\x78\x07\xe4\xd0\x65\x00\x00\x0e\xbb\x08\x10\xb3\x89\ +\x00\x00\x05\xcd\x08\x37\x4e\x99\x00\x00\x16\xd6\x08\x4d\xc0\x2e\ +\x00\x00\x1b\x9a\x08\x5d\x45\x73\x00\x00\x01\x40\x08\xa5\x45\x08\ +\x00\x00\x06\x89\x08\xca\x52\x4b\x00\x00\x16\x95\x08\xca\x72\x4b\ +\x00\x00\x11\x12\x08\xe2\x7f\xe5\x00\x00\x15\x4f\x09\x2b\x77\x54\ +\x00\x00\x19\x92\x09\xc0\x82\xb5\x00\x00\x07\x55\x0a\x22\x8d\xb2\ +\x00\x00\x00\x00\x0a\x2b\x47\x64\x00\x00\x0f\xc2\x0a\x96\xcd\x84\ +\x00\x00\x0f\x3b\x0a\xd3\x55\x94\x00\x00\x08\x2f\x0a\xf8\x55\x94\ +\x00\x00\x07\xc3\x0b\x61\x1d\x4e\x00\x00\x17\xc9\x0d\x2c\x1d\x28\ +\x00\x00\x04\xb1\x0d\xaa\x21\x43\x00\x00\x14\xef\x0d\xdc\x00\x68\ +\x00\x00\x05\x68\x0e\x02\x4e\xea\x00\x00\x1b\x2b\x0e\x75\xf9\x03\ +\x00\x00\x0b\x6e\x0e\x80\x99\x15\x00\x00\x17\x88\x0e\xc6\x00\x19\ +\x00\x00\x0d\x26\x0e\xcc\x78\xf1\x00\x00\x05\x01\x0f\x18\x51\xc5\ +\x00\x00\x13\x1d\x0f\x68\xe5\xc7\x00\x00\x02\x37\x0f\xd3\x1f\xf3\ +\x00\x00\x18\x51\x69\x00\x00\x1b\xf7\x03\x00\x00\x00\x8c\x00\x44\ +\x00\xe9\x00\x62\x00\x6f\x00\x67\x00\x61\x00\x67\x00\x65\x00\x20\ +\x00\x3a\x00\x20\x00\x43\x00\x6f\x00\x6d\x00\x6d\x00\x75\x00\x6e\ +\x00\x69\x00\x71\x00\x75\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x65\ +\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x66\x00\x69\x00\x63\x00\x68\x00\x69\x00\x65\x00\x72\ +\x00\x20\x00\xe0\x00\x20\x00\x6c\x00\x27\x00\x69\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x74\x00\x65\x00\x75\x00\x72\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x74\ +\x00\x6f\x00\x74\x00\x79\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2e\x44\x65\x62\x75\x67\x3a\x20\x52\x65\x67\x69\x73\ +\x74\x65\x72\x20\x66\x69\x6c\x65\x74\x79\x70\x65\x20\x74\x6f\x20\ +\x70\x72\x6f\x74\x6f\x74\x79\x70\x65\x20\x69\x6d\x70\x6f\x72\x74\ +\x65\x72\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\x44\x00\ +\xe9\x00\x66\x00\x6c\x00\x65\x00\x78\x00\x69\x00\x6f\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x44\x65\x66\x6c\x65\x63\x74\ +\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3e\x00\x50\ +\x00\x61\x00\x72\x00\x61\x00\x6d\x00\xe8\x00\x74\x00\x72\x00\x65\ +\x00\x73\x00\x20\x00\x67\x00\xe9\x00\x6e\x00\xe9\x00\x72\x00\x61\ +\x00\x75\x00\x78\x00\x20\x00\x64\x00\x65\x00\x20\x00\x4f\x00\x70\ +\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x19\x47\x65\x6e\x65\x72\x61\x6c\x20\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x26\x00\x50\x00\x61\x00\x72\ +\x00\x61\x00\x6d\x00\xe8\x00\x74\x00\x72\x00\x65\x00\x73\x00\x20\ +\x00\x67\x00\xe9\x00\x6e\x00\xe9\x00\x72\x00\x61\x00\x75\x00\x78\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\ +\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\xaa\x00\x53\x00\x69\x00\x20\x00\x63\x00\x65\x00\ +\x74\x00\x74\x00\x65\x00\x20\x00\x63\x00\x61\x00\x73\x00\x65\x00\ +\x20\x00\x65\x00\x73\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x63\x00\ +\x68\x00\xe9\x00\x65\x00\x2c\x00\x20\x00\x6c\x00\x65\x00\x73\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x20\x00\ +\x72\x00\x65\x00\x76\x00\x65\x00\x6e\x00\x64\x00\x69\x00\x71\x00\ +\x75\x00\x65\x00\x72\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x6c\x00\ +\x65\x00\x75\x00\x72\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x66\x00\ +\x61\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x64\x00\x61\x00\x6e\x00\ +\x73\x00\x20\x00\x6c\x00\x27\x00\x61\x00\x72\x00\x62\x00\x6f\x00\ +\x72\x00\x65\x00\x73\x00\x63\x00\x65\x00\x6e\x00\x63\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x47\x49\x66\x20\x74\x68\x69\x73\ +\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x46\x65\x61\ +\x74\x75\x72\x65\x73\x20\x77\x69\x6c\x6c\x20\x63\x6c\x61\x69\x6d\ +\x20\x74\x68\x69\x65\x72\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\ +\x69\x6e\x20\x74\x68\x65\x20\x74\x72\x65\x65\x20\x76\x69\x65\x77\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x88\x00\x53\x00\x69\x00\ +\x20\x00\x63\x00\x65\x00\x74\x00\x74\x00\x65\x00\x20\x00\x63\x00\ +\x61\x00\x73\x00\x65\x00\x20\x00\x65\x00\x73\x00\x74\x00\x20\x00\ +\x63\x00\x6f\x00\x63\x00\x68\x00\xe9\x00\x65\x00\x2c\x00\x20\x00\ +\x6c\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x74\x00\x73\x00\x20\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\x6d\x00\ +\x61\x00\x74\x00\x72\x00\x69\x00\x78\x00\x20\x00\x73\x00\x65\x00\ +\x72\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x70\x00\x61\x00\x72\x00\ +\x61\x00\x6d\x00\xe9\x00\x74\x00\x72\x00\x69\x00\x71\x00\x75\x00\ +\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x49\x66\x20\ +\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x4d\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\x4f\x62\x6a\x65\ +\x63\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x50\x61\x72\x61\x6d\ +\x65\x74\x72\x69\x63\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1e\ +\x00\x4c\x00\x6f\x00\x6e\x00\x67\x00\x75\x00\x65\x00\x75\x00\x72\ +\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0c\x4c\x6f\x63\x61\x6c\x20\x4c\x65\ +\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\ +\x4d\x00\x61\x00\x78\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\ +\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x4d\x61\x78\x4c\x65\ +\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x26\x00\ +\x53\x00\x75\x00\x70\x00\x65\x00\x72\x00\x66\x00\x69\x00\x63\x00\ +\x69\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\ +\x61\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x4d\ +\x61\x78\x69\x6d\x75\x6d\x20\x41\x72\x65\x61\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x22\x00\x4c\x00\x6f\x00\x6e\x00\x67\x00\x75\ +\x00\x65\x00\x75\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x78\x00\x69\ +\x00\x6d\x00\x61\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0e\x4d\x61\x78\x69\x6d\x75\x6d\x20\x4c\x65\x6e\x67\x74\x68\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x5e\x00\x4e\x00\x6f\x00\ +\x6d\x00\x62\x00\x72\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x78\x00\ +\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x70\x00\x6f\x00\ +\x75\x00\x72\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x70\x00\ +\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x65\x00\x73\x00\ +\x20\x00\x28\x00\x66\x00\x6e\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x29\x4d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\ +\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x66\x6f\x72\x20\x70\ +\x6f\x6c\x79\x67\x6f\x6e\x73\x20\x28\x66\x6e\x29\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x22\x00\x4c\x00\x6f\x00\x6e\x00\x67\x00\ +\x75\x00\x65\x00\x75\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x78\x00\ +\x69\x00\x6d\x00\x61\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x4d\x61\x78\x69\x75\x6d\x20\x4c\x65\x6e\x67\x74\x68\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x26\x00\x4d\x00\x61\x00\ +\x69\x00\x6c\x00\x6c\x00\x61\x00\x67\x00\x65\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x63\x00\x6f\x00\x75\x00\x72\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\ +\x66\x61\x6c\x6c\x62\x61\x63\x6b\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x26\x00\x45\x00\x78\x00\xe9\x00\x63\x00\x75\x00\x74\x00\ +\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x4f\x00\x70\x00\x65\x00\ +\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x13\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\ +\x75\x74\x61\x62\x6c\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x28\x00\x45\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x4f\x00\x70\x00\x65\x00\ +\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x70\x6f\ +\x72\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x28\x00\x49\x00\ +\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\ +\x43\x00\x41\x00\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x20\x69\x6d\x70\x6f\x72\x74\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x01\x4e\x00\x4c\x00\x65\x00\x20\x00\ +\x6e\x00\x6f\x00\x6d\x00\x62\x00\x72\x00\x65\x00\x20\x00\x6d\x00\ +\x61\x00\x78\x00\x69\x00\x6d\x00\x61\x00\x6c\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\ +\x64\x00\x27\x00\x75\x00\x6e\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\ +\x79\x00\x67\x00\x6f\x00\x6e\x00\x65\x00\x2c\x00\x20\x00\x70\x00\ +\x72\x00\x69\x00\x73\x00\x6d\x00\x65\x00\x20\x00\x6f\x00\x75\x00\ +\x20\x00\x74\x00\x72\x00\x6f\x00\x6e\x00\x63\x00\x2e\x00\x20\x00\ +\x53\x00\x69\x00\x20\x00\x66\x00\x6e\x00\x20\x00\x65\x00\x73\x00\ +\x74\x00\x20\x00\x73\x00\x75\x00\x70\x00\xe9\x00\x72\x00\x69\x00\ +\x65\x00\x75\x00\x72\x00\x20\x00\xe0\x00\x20\x00\x63\x00\x65\x00\ +\x74\x00\x74\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x65\x00\ +\x75\x00\x72\x00\x2c\x00\x20\x00\x6c\x00\x27\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x20\x00\x65\x00\x73\x00\x74\x00\x20\x00\ +\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\xe9\x00\x72\x00\ +\xe9\x00\x20\x00\x63\x00\x69\x00\x72\x00\x63\x00\x75\x00\x6c\x00\ +\x61\x00\x69\x00\x72\x00\x65\x00\x2e\x00\x20\x00\x55\x00\x6e\x00\ +\x65\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x65\x00\x75\x00\x72\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x30\x00\x20\x00\x73\x00\x69\x00\ +\x67\x00\x6e\x00\x69\x00\x66\x00\x69\x00\x65\x00\x20\x00\x61\x00\ +\x75\x00\x63\x00\x75\x00\x6e\x00\x65\x00\x20\x00\x6c\x00\x69\x00\ +\x6d\x00\x69\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x9d\x54\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\ +\x62\x65\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x6f\x66\x20\ +\x61\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x2c\x20\x70\x72\x69\x73\x6d\ +\x20\x6f\x72\x20\x66\x72\x75\x73\x74\x75\x6d\x2e\x20\x49\x66\x20\ +\x66\x6e\x20\x69\x73\x20\x67\x72\x65\x61\x74\x65\x72\x20\x74\x68\ +\x61\x6e\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x74\x68\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x73\x20\x63\x6f\x6e\x73\ +\x69\x64\x65\x72\x65\x64\x20\x74\x6f\x20\x62\x65\x20\x61\x20\x63\ +\x69\x72\x63\x75\x6c\x61\x72\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\ +\x30\x20\x66\x6f\x72\x20\x6e\x6f\x20\x6c\x69\x6d\x69\x74\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x5a\x00\x4c\x00\x65\x00\x20\x00\ +\x63\x00\x68\x00\x65\x00\x6d\x00\x69\x00\x6e\x00\x20\x00\x64\x00\ +\x27\x00\x61\x00\x63\x00\x63\x00\xe8\x00\x73\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x6c\x00\x27\x00\x65\x00\x78\x00\xe9\x00\x63\x00\ +\x75\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\ +\x41\x00\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x54\x68\x65\ +\x20\x70\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\x65\x61\x62\x6c\ +\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x36\x00\x50\x00\x61\ +\x00\x72\x00\x61\x00\x6d\x00\xe8\x00\x74\x00\x72\x00\x65\x00\x73\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x74\x00\x72\x00\x69\x00\x61\ +\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x72\x69\x61\ +\x6e\x67\x75\x6c\x61\x74\x69\x6f\x6e\x20\x73\x65\x74\x74\x69\x6e\ +\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3e\x00\x55\x00\ +\x74\x00\x69\x00\x6c\x00\x69\x00\x73\x00\x65\x00\x72\x00\x20\x00\ +\x6c\x00\x61\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x63\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x00\x20\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\ +\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\x78\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x16\x55\x73\x65\x20\x4d\x75\x6c\x74\x6d\x61\x74\ +\x72\x69\x78\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x5c\x00\x55\x00\x74\x00\x69\x00\x6c\x00\x69\ +\x00\x73\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\ +\x00\x56\x00\x69\x00\x65\x00\x77\x00\x50\x00\x72\x00\x6f\x00\x76\ +\x00\x69\x00\x64\x00\x65\x00\x72\x00\x73\x00\x20\x00\x64\x00\x61\ +\x00\x6e\x00\x73\x00\x20\x00\x6c\x00\x27\x00\x61\x00\x72\x00\x62\ +\x00\x6f\x00\x72\x00\x65\x00\x73\x00\x63\x00\x65\x00\x6e\x00\x63\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\x65\x20\ +\x56\x69\x65\x77\x50\x72\x6f\x76\x69\x64\x65\x72\x20\x69\x6e\x20\ +\x54\x72\x65\x65\x20\x56\x69\x65\x77\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x1c\x00\x61\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x61\ +\x00\x69\x00\x72\x00\x65\x00\x20\x00\x28\x00\x66\x00\x61\x00\x29\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x61\x6e\x67\x75\x6c\x61\ +\x72\x20\x28\x66\x61\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x12\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x78\x00\x69\x00\ +\x74\x00\xe9\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x63\x6f\x6e\ +\x76\x65\x78\x69\x74\x79\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x12\x00\x64\x00\xe9\x00\x66\x00\x6c\x00\x65\x00\x78\x00\x69\x00\ +\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x64\x65\x66\ +\x6c\x65\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x10\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x4c\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x6c\x6f\x63\x61\ +\x6c\x4c\x65\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x0e\x00\ +\x6d\x00\x61\x00\x78\x00\x41\x00\x72\x00\x65\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x07\x6d\x61\x78\x41\x72\x65\x61\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x36\x00\x74\x00\x61\x00\x69\x00\ +\x6c\x00\x6c\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x78\x00\x69\x00\ +\x6d\x00\x61\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x15\x6d\x61\x78\x69\x6d\x75\x6d\ +\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x20\x73\x69\x7a\x65\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x36\x00\x61\x00\x6e\x00\x67\x00\ +\x6c\x00\x65\x00\x20\x00\x6d\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\ +\x61\x00\x6c\x00\x20\x00\x64\x00\x27\x00\x75\x00\x6e\x00\x20\x00\ +\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x6d\x69\x6e\x69\x6d\x75\x6d\ \x20\x61\x6e\x67\x6c\x65\x20\x66\x6f\x72\x20\x61\x20\x66\x72\x61\ -\x67\x6d\x65\x6e\x74\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ -\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x73\ -\x75\x66\x66\x69\x78\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\xc2\xb0\x3c\x2f\x73\ -\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ -\x20\x6e\x61\x6d\x65\x3d\x22\x6d\x69\x6e\x69\x6d\x75\x6d\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x6f\x75\ -\x62\x6c\x65\x3e\x30\x2e\x30\x31\x30\x30\x30\x30\x30\x30\x30\x30\ -\x30\x30\x30\x30\x30\x3c\x2f\x64\x6f\x75\x62\x6c\x65\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ -\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6d\ -\x61\x78\x69\x6d\x75\x6d\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x64\x6f\x75\x62\x6c\x65\x3e\x33\x36\x30\x2e\ -\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x3c\ -\x2f\x64\x6f\x75\x62\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ -\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x76\x61\x6c\x75\x65\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x6f\x75\ -\x62\x6c\x65\x3e\x31\x32\x2e\x30\x30\x30\x30\x30\x30\x30\x30\x30\ -\x30\x30\x30\x30\x30\x30\x3c\x2f\x64\x6f\x75\x62\x6c\x65\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ -\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ -\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\ -\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x65\x78\x70\x6f\x72\ -\x74\x46\x61\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ -\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ -\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\ -\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\ -\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x4f\x70\x65\x6e\ -\x53\x43\x41\x44\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ -\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ -\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x4c\ -\x69\x6e\x65\x22\x20\x6e\x61\x6d\x65\x3d\x22\x6c\x69\x6e\x65\x5f\ -\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ -\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6f\x72\ -\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x22\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x65\x6e\x75\x6d\x3e\x51\x74\x3a\ -\x3a\x56\x65\x72\x74\x69\x63\x61\x6c\x3c\x2f\x65\x6e\x75\x6d\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ -\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\ -\x22\x51\x4c\x61\x62\x65\x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\x6c\ -\x61\x62\x65\x6c\x5f\x34\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\ -\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\ +\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3a\ +\x00\x74\x00\x61\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x6d\ +\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\x61\x00\x6c\x00\x65\x00\x20\ +\x00\x64\x00\x27\x00\x75\x00\x6e\x00\x20\x00\x66\x00\x72\x00\x61\ +\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1a\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x73\x69\x7a\x65\ +\x20\x6f\x66\x20\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x04\x00\x6d\x00\x6d\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x02\x6d\x6d\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x16\x00\x74\x00\x61\x00\x69\x00\x6c\x00\x6c\x00\x65\ +\x00\x20\x00\x28\x00\x66\x00\x73\x00\x29\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x73\x69\x7a\x65\x20\x28\x66\x73\x29\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x02\x00\xb0\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x01\xb0\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1e\ +\x00\x20\x00\x41\x00\x70\x00\x70\x00\x75\x00\x79\x00\x65\x00\x7a\ +\x00\x20\x00\x73\x00\x75\x00\x72\x00\x20\x00\x4f\x00\x4b\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x20\x50\x72\x65\x73\x73\x20\x4f\ +\x4b\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x3c\x00\x41\x00\x6a\x00\x6f\x00\x75\x00\x74\x00\x65\ +\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x20\x00\xe9\x00\x6c\x00\xe9\ +\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x2e\x00\x2e\x00\x2e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x41\x64\x64\x20\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x20\x45\x6c\x65\x6d\x65\x6e\x74\x2e\x2e\ +\x2e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x9a\x00\x41\x00\x6a\x00\x6f\x00\x75\x00\x74\x00\x65\ +\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x20\x00\xe9\x00\x6c\x00\xe9\ +\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x6e\ +\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x6e\x00\x74\ +\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x64\x00\x65\ +\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\ +\x00\x44\x00\x20\x00\x65\x00\x74\x00\x20\x00\x65\x00\x78\x00\xe9\ +\x00\x63\x00\x75\x00\x74\x00\x61\x00\x6e\x00\x74\x00\x20\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x53\x41\x64\x64\x20\x61\x6e\x20\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\ +\x62\x79\x20\x65\x6e\x74\x65\x72\x69\x6e\x67\x20\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x20\x63\x6f\x64\x65\x20\x61\x6e\x64\x20\x65\x78\ +\x65\x63\x75\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x20\x62\x69\x6e\x61\x72\x79\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x24\x00\x43\ +\x00\x6f\x00\x75\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x64\ +\x00\x65\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x65\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x6f\x6c\x6f\ +\x72\x20\x53\x68\x61\x70\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x56\x00\x43\x00\x6f\x00\ +\x6c\x00\x6f\x00\x72\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x65\x00\ +\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x65\x00\x73\x00\ +\x20\x00\x70\x00\x61\x00\x72\x00\x20\x00\x76\x00\x61\x00\x6c\x00\ +\x69\x00\x64\x00\x69\x00\x74\x00\xe9\x00\x20\x00\x65\x00\x74\x00\ +\x20\x00\x70\x00\x61\x00\x72\x00\x20\x00\x74\x00\x79\x00\x70\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x43\x6f\x6c\x6f\x72\ +\x20\x53\x68\x61\x70\x65\x73\x20\x62\x79\x20\x76\x61\x6c\x69\x64\ +\x69\x74\x79\x20\x61\x6e\x64\x20\x74\x79\x70\x65\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3a\x00\ +\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x69\x00\ +\x72\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x61\x00\x72\x00\ +\xea\x00\x74\x00\x65\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x20\x00\ +\x66\x00\x61\x00\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\x67\x65\x73\ +\x20\x54\x6f\x20\x46\x61\x63\x65\x73\x07\x00\x00\x00\x08\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3a\x00\x43\x00\x6f\ +\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x69\x00\x72\x00\x20\ +\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x61\x00\x72\x00\xea\x00\x74\ +\x00\x65\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x66\x00\x61\ +\x00\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\ +\x43\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\x67\x65\x73\x20\x74\x6f\ +\x20\x46\x61\x63\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x43\x00\x72\x00\xe9\x00\ +\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x74\x00\x20\x00\x61\x00\x66\x00\x66\x00\x69\x00\x6e\x00\ +\x61\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x43\ +\x72\x65\x61\x74\x65\x20\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\ +\x70\x65\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x32\x00\x44\x00\ +\xe9\x00\x76\x00\x65\x00\x6c\x00\x6f\x00\x70\x00\x70\x00\x65\x00\ +\x72\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x50\x00\x6c\x00\ +\x61\x00\x63\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x11\x45\x78\x70\x61\x6e\x64\x20\ +\x50\x6c\x61\x63\x65\x6d\x65\x6e\x74\x73\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x74\x00\x4f\x00\ +\x75\x00\x76\x00\x72\x00\x69\x00\x72\x00\x20\x00\x74\x00\x6f\x00\ +\x75\x00\x73\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x70\x00\ +\x6c\x00\x61\x00\x63\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x73\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\x00\x20\x00\x6c\x00\ +\x65\x00\x20\x00\x62\x00\x61\x00\x73\x00\x20\x00\x64\x00\x61\x00\ +\x6e\x00\x73\x00\x20\x00\x6c\x00\x27\x00\x61\x00\x72\x00\x62\x00\ +\x6f\x00\x72\x00\x65\x00\x73\x00\x63\x00\x65\x00\x6e\x00\x63\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x45\x78\x70\x61\x6e\ +\x64\x20\x61\x6c\x6c\x20\x70\x6c\x61\x63\x65\x6d\x65\x6e\x74\x73\ +\x20\x64\x6f\x77\x6e\x77\x61\x72\x64\x73\x20\x74\x68\x65\x20\x46\ +\x65\x61\x74\x75\x72\x65\x54\x72\x65\x65\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x4c\x00\x56\x00\ +\x65\x00\x75\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x7a\x00\x20\x00\ +\x64\x00\x27\x00\x61\x00\x62\x00\x6f\x00\x72\x00\x64\x00\x20\x00\ +\x73\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x6e\x00\x65\x00\x72\x00\x20\x00\x33\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1d\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\ +\x20\x33\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x69\x72\x73\x74\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x1c\x00\x41\x00\x70\x00\x70\x00\x75\x00\x79\x00\x65\x00\ +\x7a\x00\x20\x00\x73\x00\x75\x00\x72\x00\x20\x00\x4f\x00\x4b\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x50\x72\x65\x73\x73\x20\x4f\ +\x4b\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x68\x00\x50\x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x28\x00\x70\x00\x61\ +\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\x72\x00\x65\ +\x00\x20\x00\x63\x00\x6f\x00\x64\x00\xe9\x00\x2c\x00\x20\x00\x65\ +\x00\x6e\x00\x20\x00\x61\x00\x74\x00\x74\x00\x65\x00\x6e\x00\x74\ +\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x50\x00\x65\x00\x74\ +\x00\x65\x00\x72\x00\x20\x00\x4c\x00\x69\x00\x29\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x2d\x50\x72\x6f\x6a\x65\x63\x74\x69\x6f\x6e\ +\x20\x4e\x6f\x74\x20\x79\x65\x74\x20\x43\x6f\x64\x65\x64\x20\x77\ +\x61\x69\x74\x69\x6e\x67\x20\x66\x6f\x72\x20\x50\x65\x74\x65\x72\ +\x20\x4c\x69\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x10\x00\x41\x00\x66\x00\x66\x00\x69\x00\x6e\ +\x00\x61\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\ +\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\x65\x61\ +\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x4a\x00\x53\x00\x75\x00\x70\x00\x70\x00\ +\x72\x00\x69\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\x00\ +\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\ +\x20\x00\x65\x00\x74\x00\x20\x00\x6c\x00\x65\x00\x75\x00\x72\x00\ +\x73\x00\x20\x00\x65\x00\x6e\x00\x66\x00\x61\x00\x6e\x00\x74\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x52\x65\x6d\x6f\x76\ +\x65\x20\x4f\x62\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\x74\x68\ +\x65\x69\x72\x20\x43\x68\x69\x6c\x64\x72\x65\x6e\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\xcc\x00\ +\x53\x00\x75\x00\x70\x00\x70\x00\x72\x00\x69\x00\x6d\x00\x65\x00\ +\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x74\x00\x73\x00\x20\x00\x73\x00\xe9\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x00\x73\x00\ +\x20\x00\x65\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x75\x00\x73\x00\ +\x20\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x73\x00\x20\x00\x65\x00\ +\x6e\x00\x66\x00\x61\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x71\x00\ +\x75\x00\x69\x00\x20\x00\x6e\x00\x65\x00\x20\x00\x73\x00\x6f\x00\ +\x6e\x00\x74\x00\x20\x00\x70\x00\x61\x00\x73\x00\x20\x00\x72\x00\ +\xe9\x00\x66\x00\xe9\x00\x72\x00\x65\x00\x6e\x00\x63\x00\xe9\x00\ +\x65\x00\x73\x00\x20\x00\x70\x00\x61\x00\x72\x00\x20\x00\x64\x00\ +\x27\x00\x61\x00\x75\x00\x74\x00\x72\x00\x65\x00\x73\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x58\x52\x65\x6d\x6f\x76\x65\x73\x20\x74\x68\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x61\x6e\x64\x20\x61\x6c\x6c\x20\x63\x68\x69\x6c\x64\x72\ +\x65\x6e\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\ +\x72\x65\x66\x65\x72\x65\x6e\x63\x65\x64\x20\x66\x72\x6f\x6d\x20\ +\x6f\x74\x68\x65\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x24\ +\x00\x52\x00\x65\x00\x6d\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\ +\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x52\x65\ +\x70\x6c\x61\x63\x65\x20\x4f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\xde\x00\ +\x52\x00\x65\x00\x6d\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\ +\x72\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x74\x00\x20\x00\x64\x00\x61\x00\x6e\x00\x73\x00\x20\x00\ +\x6c\x00\x27\x00\x61\x00\x72\x00\x62\x00\x6f\x00\x72\x00\x65\x00\ +\x73\x00\x63\x00\x65\x00\x6e\x00\x63\x00\x65\x00\x2e\x00\x20\x00\ +\x56\x00\x65\x00\x75\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x7a\x00\ +\x20\x00\x73\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x00\x6e\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x27\x00\ +\x61\x00\x6e\x00\x63\x00\x69\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x74\x00\x2c\x00\x20\x00\x6c\x00\x65\x00\ +\x20\x00\x6e\x00\x6f\x00\x75\x00\x76\x00\x65\x00\x6c\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x20\x00\x65\x00\x74\x00\ +\x20\x00\x6c\x00\x27\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x6e\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4f\x52\x65\x70\x6c\x61\x63\x65\x20\x61\ +\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x20\x74\x68\x65\x20\ +\x46\x65\x61\x74\x75\x72\x65\x20\x54\x72\x65\x65\x2e\x20\x50\x6c\ +\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\x20\x6f\x6c\x64\x2c\ +\x20\x6e\x65\x77\x20\x61\x6e\x64\x20\x70\x61\x72\x65\x6e\x74\x20\ +\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x3a\x00\x4f\x00\x70\x00\x65\x00\ +\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x6e\x00\x27\x00\ +\x61\x00\x20\x00\x70\x00\x61\x00\x73\x00\x20\x00\x70\x00\x75\x00\ +\x20\x00\x64\x00\xe9\x00\x6d\x00\x61\x00\x72\x00\x72\x00\x65\x00\ +\x72\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x52\x75\x6e\ +\x6e\x69\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x66\x61\ +\x69\x6c\x65\x64\x0a\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x46\x00\x6f\x00\x6e\x00\x63\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6e\x00\x6f\x00\x6e\ +\x00\x20\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\ +\x00\xe9\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x55\x6e\ +\x73\x75\x70\x70\x6f\x72\x74\x65\x64\x20\x46\x75\x6e\x63\x74\x69\ +\x6f\x6e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\ +\x00\x00\x1c\x0b\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x01\xa0\x00\x00\x00\xb0\x00\x00\x0f\xd8\x00\x00\x07\x3d\ +\x00\x00\x0f\x47\x00\x39\xdf\x33\x00\x00\x01\x98\x00\x72\x97\x49\ +\x00\x00\x0f\x82\x01\x0c\x64\xae\x00\x00\x10\x60\x01\x38\xb0\x83\ +\x00\x00\x11\xd8\x01\x40\x42\x85\x00\x00\x0b\x23\x02\x1f\xd9\x48\ +\x00\x00\x03\xe6\x02\x7b\x37\xc4\x00\x00\x14\xd1\x02\xbc\x05\x8e\ +\x00\x00\x0c\xd1\x02\xbe\x05\x8e\x00\x00\x00\xbf\x03\x8c\x88\xc1\ +\x00\x00\x0d\x77\x05\x08\x5c\x93\x00\x00\x03\x09\x05\x16\xa3\x95\ +\x00\x00\x13\x69\x05\x66\x9a\x34\x00\x00\x07\xff\x05\x98\x15\x8e\ +\x00\x00\x0d\x2a\x05\xcc\x9a\xd9\x00\x00\x0c\x81\x05\xe4\x1f\xa9\ +\x00\x00\x10\xc2\x05\xfb\x21\x0b\x00\x00\x06\x71\x06\xe4\x0a\x14\ +\x00\x00\x18\x79\x06\xee\xa0\xc5\x00\x00\x0a\x0b\x07\x5d\xec\x93\ +\x00\x00\x13\x04\x07\x5d\xee\x93\x00\x00\x12\x9f\x07\xda\x68\xe7\ +\x00\x00\x0b\x9c\x07\xe4\xd0\x65\x00\x00\x0d\xc5\x08\x10\xb3\x89\ +\x00\x00\x05\x5b\x08\x37\x4e\x99\x00\x00\x15\x92\x08\x4d\xc0\x2e\ +\x00\x00\x19\xf4\x08\x5d\x45\x73\x00\x00\x01\x18\x08\xa5\x45\x08\ +\x00\x00\x06\x0b\x08\xca\x52\x4b\x00\x00\x15\x45\x08\xca\x72\x4b\ +\x00\x00\x10\x10\x08\xe2\x7f\xe5\x00\x00\x14\x27\x09\x2b\x77\x54\ +\x00\x00\x18\x34\x09\xc0\x82\xb5\x00\x00\x06\xcd\x0a\x22\x8d\xb2\ +\x00\x00\x00\x00\x0a\x2b\x47\x64\x00\x00\x0e\xc2\x0a\x96\xcd\x84\ +\x00\x00\x0e\x39\x0a\xd3\x55\x94\x00\x00\x07\x9d\x0a\xf8\x55\x94\ +\x00\x00\x07\x3b\x0b\x61\x1d\x4e\x00\x00\x16\x8f\x0d\x2c\x1d\x28\ +\x00\x00\x04\x3f\x0d\xaa\x21\x43\x00\x00\x13\xd7\x0d\xdc\x00\x68\ +\x00\x00\x04\xf4\x0e\x02\x4e\xea\x00\x00\x19\x83\x0e\x75\xf9\x03\ +\x00\x00\x0a\xac\x0e\x80\x99\x15\x00\x00\x16\x36\x0e\xc6\x00\x19\ +\x00\x00\x0c\x28\x0e\xcc\x78\xf1\x00\x00\x04\x91\x0f\x18\x51\xc5\ +\x00\x00\x12\x1f\x0f\x68\xe5\xc7\x00\x00\x01\xff\x0f\xd3\x1f\xf3\ +\x00\x00\x17\x0f\x69\x00\x00\x1a\x51\x03\x00\x00\x00\x5c\x00\x44\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x3a\x00\x20\x00\x52\x00\x65\ +\x00\x67\x00\x69\x00\x73\x00\x74\x00\x65\x00\x72\x00\x20\x00\x66\ +\x00\x69\x00\x6c\x00\x65\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x74\x00\x6f\ +\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2e\x44\x65\x62\x75\x67\x3a\x20\x52\x65\x67\x69\x73\ +\x74\x65\x72\x20\x66\x69\x6c\x65\x74\x79\x70\x65\x20\x74\x6f\x20\ +\x70\x72\x6f\x74\x6f\x74\x79\x70\x65\x20\x69\x6d\x70\x6f\x72\x74\ +\x65\x72\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1a\x00\x4f\x00\ +\x64\x00\x6b\x00\x73\x00\x7a\x00\x74\x00\x61\x01\x42\x00\x63\x00\ +\x65\x00\x6e\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x44\x65\x66\x6c\x65\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x32\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x72\ +\x00\x61\x00\x6c\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\ +\x00\x43\x00\x41\x00\x44\x00\x20\x00\x53\x00\x65\x00\x74\x00\x74\ +\x00\x69\x00\x6e\x00\x67\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x19\x47\x65\x6e\x65\x72\x61\x6c\x20\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x20\x53\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x22\x00\x55\x00\x73\x00\x74\x00\x61\x00\x77\ +\x00\x69\x00\x65\x00\x6e\x00\x69\x00\x61\x00\x20\x00\x6f\x00\x67\ +\x00\xf3\x00\x6c\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\ +\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x8e\x00\x49\x00\ +\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\ +\x64\x00\x2c\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\ +\x72\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\ +\x20\x00\x63\x00\x6c\x00\x61\x00\x69\x00\x6d\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x65\x00\x72\x00\x20\x00\x63\x00\x68\x00\x69\x00\ +\x6c\x00\x64\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x74\x00\x72\x00\x65\x00\ +\x65\x00\x20\x00\x76\x00\x69\x00\x65\x00\x77\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x47\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\ +\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x46\x65\x61\x74\x75\x72\x65\ +\x73\x20\x77\x69\x6c\x6c\x20\x63\x6c\x61\x69\x6d\x20\x74\x68\x69\ +\x65\x72\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\x69\x6e\x20\x74\ +\x68\x65\x20\x74\x72\x65\x65\x20\x76\x69\x65\x77\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x70\x00\x49\x00\x66\x00\x20\x00\x74\x00\ +\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\ +\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ +\x4d\x00\x75\x00\x6c\x00\x74\x00\x6d\x00\x61\x00\x74\x00\x72\x00\ +\x69\x00\x78\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\ +\x65\x00\x20\x00\x50\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\ +\x74\x00\x72\x00\x69\x00\x63\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x38\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x4d\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\ +\x4f\x62\x6a\x65\x63\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x50\ +\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x18\x00\x4c\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x20\ +\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x4c\x6f\x63\x61\x6c\x20\x4c\x65\x6e\x67\ +\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x4d\x00\ +\x61\x00\x78\x00\x44\x01\x42\x00\x75\x00\x67\x00\x6f\x01\x5b\x01\ +\x07\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x4d\x61\x78\x4c\x65\ +\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x22\x00\ +\x4d\x00\x61\x00\x6b\x00\x73\x00\x79\x00\x6d\x00\x61\x00\x6c\x00\ +\x6e\x00\x79\x00\x20\x00\x6f\x00\x62\x00\x73\x00\x7a\x00\x61\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x4d\x61\x78\x69\x6d\ +\x75\x6d\x20\x41\x72\x65\x61\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x24\x00\x4d\x00\x61\x00\x6b\x00\x73\x00\x79\x00\x6d\x00\x61\ +\x00\x6c\x00\x6e\x00\x61\x00\x20\x00\x64\x01\x42\x00\x75\x00\x67\ +\x00\x6f\x01\x5b\x01\x07\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ +\x4d\x61\x78\x69\x6d\x75\x6d\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x52\x00\x4d\x00\x61\x00\x78\x00\ +\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\ +\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x66\x00\ +\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\ +\x73\x00\x20\x00\x28\x00\x66\x00\x6e\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x29\x4d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\ +\x62\x65\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x66\x6f\x72\ +\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x73\x20\x28\x66\x6e\x29\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x24\x00\x4d\x00\x61\x00\x6b\x00\ +\x73\x00\x79\x00\x6d\x00\x61\x00\x6c\x00\x6e\x00\x61\x00\x20\x00\ +\x64\x01\x42\x00\x75\x00\x67\x00\x6f\x01\x5b\x01\x07\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0d\x4d\x61\x78\x69\x75\x6d\x20\x4c\x65\ +\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1a\x00\ +\x4d\x00\x65\x00\x73\x00\x68\x00\x20\x00\x66\x00\x61\x00\x6c\x00\ +\x6c\x00\x62\x00\x61\x00\x63\x00\x6b\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x4d\x65\x73\x68\x20\x66\x61\x6c\x6c\x62\x61\x63\x6b\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x26\x00\x4f\x00\x70\x00\ +\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\ +\x78\x00\x65\x00\x63\x00\x75\x00\x74\x00\x61\x00\x62\x00\x6c\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x1e\x00\x4f\x00\x70\x00\x65\x00\ +\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x78\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x70\x6f\x72\x74\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1e\x00\x4f\x00\x70\x00\ +\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x69\x00\ +\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x69\x6d\x70\x6f\ +\x72\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x01\x3a\x00\x54\x00\ +\x68\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\ +\x75\x00\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\ +\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x66\x00\x61\x00\x63\x00\ +\x65\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x20\x00\ +\x70\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x2c\x00\ +\x20\x00\x70\x00\x72\x00\x69\x00\x73\x00\x6d\x00\x20\x00\x6f\x00\ +\x72\x00\x20\x00\x66\x00\x72\x00\x75\x00\x73\x00\x74\x00\x75\x00\ +\x6d\x00\x2e\x00\x20\x00\x49\x00\x66\x00\x20\x00\x66\x00\x6e\x00\ +\x20\x00\x69\x00\x73\x00\x20\x00\x67\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\x61\x00\x6e\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x76\x00\x61\x00\ +\x6c\x00\x75\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\ +\x65\x00\x72\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ +\x62\x00\x65\x00\x20\x00\x61\x00\x20\x00\x63\x00\x69\x00\x72\x00\ +\x63\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x2e\x00\x20\x00\x53\x00\ +\x65\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x30\x00\x20\x00\ +\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x6c\x00\ +\x69\x00\x6d\x00\x69\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x9d\x54\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\ +\x62\x65\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x6f\x66\x20\ +\x61\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x2c\x20\x70\x72\x69\x73\x6d\ +\x20\x6f\x72\x20\x66\x72\x75\x73\x74\x75\x6d\x2e\x20\x49\x66\x20\ +\x66\x6e\x20\x69\x73\x20\x67\x72\x65\x61\x74\x65\x72\x20\x74\x68\ +\x61\x6e\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x74\x68\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x73\x20\x63\x6f\x6e\x73\ +\x69\x64\x65\x72\x65\x64\x20\x74\x6f\x20\x62\x65\x20\x61\x20\x63\ +\x69\x72\x63\x75\x6c\x61\x72\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\ +\x30\x20\x66\x6f\x72\x20\x6e\x6f\x20\x6c\x69\x6d\x69\x74\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x48\x00\x54\x00\x68\x00\x65\x00\ +\x20\x00\x70\x00\x61\x00\x74\x00\x68\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x4f\x00\x70\x00\x65\x00\ +\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x78\x00\ +\x65\x00\x63\x00\x75\x00\x74\x00\x65\x00\x61\x00\x62\x00\x6c\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x54\x68\x65\x20\x70\ +\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\x65\x61\x62\x6c\x65\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x54\x00\x72\x00\x69\ +\x00\x61\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x74\x00\x74\x00\x69\ +\x00\x6e\x00\x67\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\ +\x54\x72\x69\x61\x6e\x67\x75\x6c\x61\x74\x69\x6f\x6e\x20\x73\x65\ +\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x2e\x00\x55\x01\x7c\x00\x79\x00\x6a\x00\x20\x00\x66\x00\x75\x00\ +\x6e\x00\x6b\x00\x63\x00\x6a\x00\x69\x00\x20\x00\x4d\x00\x75\x00\ +\x6c\x00\x74\x00\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\x78\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x16\x55\x73\x65\x20\x4d\x75\x6c\ +\x74\x6d\x61\x74\x72\x69\x78\x20\x46\x65\x61\x74\x75\x72\x65\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3a\x00\x55\x00\x73\x00\x65\ +\x00\x20\x00\x56\x00\x69\x00\x65\x00\x77\x00\x50\x00\x72\x00\x6f\ +\x00\x76\x00\x69\x00\x64\x00\x65\x00\x72\x00\x20\x00\x69\x00\x6e\ +\x00\x20\x00\x54\x00\x72\x00\x65\x00\x65\x00\x20\x00\x56\x00\x69\ +\x00\x65\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\ +\x65\x20\x56\x69\x65\x77\x50\x72\x6f\x76\x69\x64\x65\x72\x20\x69\ +\x6e\x20\x54\x72\x65\x65\x20\x56\x69\x65\x77\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x18\x00\x61\x00\x6e\x00\x67\x00\x75\x00\x6c\ +\x00\x61\x00\x72\x00\x20\x00\x28\x00\x66\x00\x61\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0c\x61\x6e\x67\x75\x6c\x61\x72\x20\ +\x28\x66\x61\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\ +\x77\x00\x79\x00\x70\x00\x75\x00\x6b\x01\x42\x00\x6f\x01\x5b\x01\ +\x07\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x63\x6f\x6e\x76\x65\ +\x78\x69\x74\x79\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1a\x00\ +\x6f\x00\x64\x00\x6b\x00\x73\x00\x7a\x00\x74\x00\x61\x01\x42\x00\ +\x63\x00\x65\x00\x6e\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0a\x64\x65\x66\x6c\x65\x63\x74\x69\x6f\x6e\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x10\x00\x6c\x00\x6f\x00\x63\x00\x61\ +\x00\x6c\x00\x4c\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x08\x6c\x6f\x63\x61\x6c\x4c\x65\x6e\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x12\x00\x4d\x00\x61\x00\x78\x00\x4f\x00\x62\x00\ +\x73\x00\x7a\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x07\x6d\x61\x78\x41\x72\x65\x61\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x2a\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\ +\x6d\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x15\x6d\x61\x78\x69\x6d\x75\x6d\x20\x66\ +\x72\x61\x67\x6d\x65\x6e\x74\x20\x73\x69\x7a\x65\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x38\x00\x6d\x00\x69\x00\x6e\x00\x69\x00\ +\x6d\x00\x75\x00\x6d\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\ +\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x20\x00\ +\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x6d\x69\x6e\x69\x6d\x75\x6d\ +\x20\x61\x6e\x67\x6c\x65\x20\x66\x6f\x72\x20\x61\x20\x66\x72\x61\ +\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x36\ +\x00\x6d\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\x61\x00\x6c\x00\x6e\ +\x00\x79\x00\x20\x00\x72\x00\x6f\x00\x7a\x00\x6d\x00\x69\x00\x61\ +\x00\x72\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x65\ +\x00\x6e\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\ \x6d\x69\x6e\x69\x6d\x75\x6d\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\ -\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x3c\x2f\x73\x74\x72\x69\ -\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\ -\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x73\x69\ -\x7a\x65\x20\x28\x66\x73\x29\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ -\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\ -\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x44\x6f\x75\x62\x6c\x65\ -\x53\x70\x69\x6e\x42\x6f\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x64\ -\x6f\x75\x62\x6c\x65\x53\x70\x69\x6e\x42\x6f\x78\x5f\x33\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ -\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x65\x6e\x61\x62\x6c\ -\x65\x64\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x62\x6f\x6f\x6c\x3e\x74\x72\x75\x65\x3c\x2f\x62\x6f\x6f\x6c\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ -\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ -\x3d\x22\x73\x69\x7a\x65\x50\x6f\x6c\x69\x63\x79\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x69\x7a\x65\x70\ -\x6f\x6c\x69\x63\x79\x20\x68\x73\x69\x7a\x65\x74\x79\x70\x65\x3d\ -\x22\x4d\x69\x6e\x69\x6d\x75\x6d\x22\x20\x76\x73\x69\x7a\x65\x74\ -\x79\x70\x65\x3d\x22\x46\x69\x78\x65\x64\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x68\x6f\x72\x73\x74\x72\ -\x65\x74\x63\x68\x3e\x30\x3c\x2f\x68\x6f\x72\x73\x74\x72\x65\x74\ -\x63\x68\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x76\x65\x72\x73\x74\x72\x65\x74\x63\x68\x3e\x30\x3c\x2f\x76\ -\x65\x72\x73\x74\x72\x65\x74\x63\x68\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\x69\x7a\x65\x70\x6f\x6c\x69\ -\x63\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\ -\x6d\x65\x3d\x22\x6d\x69\x6e\x69\x6d\x75\x6d\x53\x69\x7a\x65\x22\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x69\ -\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x77\x69\x64\x74\x68\x3e\x30\x3c\x2f\x77\x69\x64\x74\x68\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x68\x65\ -\x69\x67\x68\x74\x3e\x30\x3c\x2f\x68\x65\x69\x67\x68\x74\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\x69\x7a\ -\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ -\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\ -\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\ -\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\ -\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x3c\x2f\x73\x74\x72\x69\ -\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\ -\x6d\x65\x3d\x22\x61\x6c\x69\x67\x6e\x6d\x65\x6e\x74\x22\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x65\x74\x3e\ -\x51\x74\x3a\x3a\x41\x6c\x69\x67\x6e\x52\x69\x67\x68\x74\x7c\x51\ -\x74\x3a\x3a\x41\x6c\x69\x67\x6e\x54\x72\x61\x69\x6c\x69\x6e\x67\ -\x7c\x51\x74\x3a\x3a\x41\x6c\x69\x67\x6e\x56\x43\x65\x6e\x74\x65\ -\x72\x3c\x2f\x73\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ -\x79\x20\x6e\x61\x6d\x65\x3d\x22\x73\x75\x66\x66\x69\x78\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\ -\x69\x6e\x67\x3e\x6d\x6d\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ -\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ -\x6d\x69\x6e\x69\x6d\x75\x6d\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x64\x6f\x75\x62\x6c\x65\x3e\x30\x2e\x30\ -\x31\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x3c\x2f\ -\x64\x6f\x75\x62\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ -\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6d\x61\x78\x69\x6d\x75\x6d\x22\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x6f\ -\x75\x62\x6c\x65\x3e\x31\x30\x30\x30\x30\x2e\x30\x30\x30\x30\x30\ -\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x3c\x2f\x64\x6f\x75\x62\ -\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\ -\x6d\x65\x3d\x22\x76\x61\x6c\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x6f\x75\x62\x6c\x65\x3e\x32\ -\x2e\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\ -\x3c\x2f\x64\x6f\x75\x62\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\ -\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x45\x6e\ -\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\ -\x72\x69\x6e\x67\x3e\x65\x78\x70\x6f\x72\x74\x46\x73\x3c\x2f\x63\ -\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ -\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x50\x61\x74\x68\ -\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\ -\x67\x3e\x4d\x6f\x64\x2f\x4f\x70\x65\x6e\x53\x43\x41\x44\x3c\x2f\ -\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\x75\ -\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\x61\ -\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\x22\ -\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\x61\ -\x6c\x4c\x61\x79\x6f\x75\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\ -\x22\x51\x4c\x61\x62\x65\x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\x6c\ -\x61\x62\x65\x6c\x5f\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\ -\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x63\x6f\x6e\ -\x76\x65\x78\x69\x74\x79\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ -\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x73\x70\x61\x63\x65\x72\x20\x6e\x61\x6d\x65\x3d\x22\x68\ -\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x53\x70\x61\x63\x65\x72\x5f\ -\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ -\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6f\x72\ -\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x22\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x65\x6e\x75\x6d\x3e\x51\x74\x3a\ -\x3a\x48\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x3c\x2f\x65\x6e\x75\ -\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ -\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\ -\x65\x3d\x22\x73\x69\x7a\x65\x48\x69\x6e\x74\x22\x20\x73\x74\x64\ -\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x74\x68\x3e\x34\x30\ -\x3c\x2f\x77\x69\x64\x74\x68\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x68\x65\x69\x67\x68\x74\x3e\x32\x30\x3c\ -\x2f\x68\x65\x69\x67\x68\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x2f\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\x70\x61\ -\x63\x65\x72\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\ -\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\ -\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\ -\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\ -\x3a\x50\x72\x65\x66\x53\x70\x69\x6e\x42\x6f\x78\x22\x20\x6e\x61\ -\x6d\x65\x3d\x22\x73\x70\x69\x6e\x42\x6f\x78\x22\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ -\x79\x20\x6e\x61\x6d\x65\x3d\x22\x76\x61\x6c\x75\x65\x22\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x6e\x75\x6d\x62\ -\x65\x72\x3e\x31\x30\x3c\x2f\x6e\x75\x6d\x62\x65\x72\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ -\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\ -\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\x74\ -\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x65\x78\x70\x6f\x72\x74\ -\x43\x6f\x6e\x76\x65\x78\x69\x74\x79\x3c\x2f\x63\x73\x74\x72\x69\ -\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\ -\x6d\x65\x3d\x22\x70\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\ -\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\ -\x64\x2f\x4f\x70\x65\x6e\x53\x43\x41\x44\x3c\x2f\x63\x73\x74\x72\ -\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\ -\x51\x47\x72\x69\x64\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\ -\x65\x3d\x22\x67\x72\x69\x64\x4c\x61\x79\x6f\x75\x74\x5f\x32\x22\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x20\ -\x72\x6f\x77\x3d\x22\x30\x22\x20\x63\x6f\x6c\x75\x6d\x6e\x3d\x22\ -\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\ -\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x4c\x61\x62\ -\x65\x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\x6c\x61\x62\x65\x6c\x22\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\ -\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\ -\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\ -\x74\x72\x69\x6e\x67\x3e\x4d\x65\x73\x68\x20\x66\x61\x6c\x6c\x62\ -\x61\x63\x6b\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\ -\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\ -\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ -\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\ -\x74\x65\x6d\x20\x72\x6f\x77\x3d\x22\x30\x22\x20\x63\x6f\x6c\x75\ -\x6d\x6e\x3d\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x73\x70\x61\x63\x65\x72\x20\x6e\x61\x6d\x65\x3d\x22\x68\ -\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x53\x70\x61\x63\x65\x72\x5f\ -\x32\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6f\ -\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x65\x6e\x75\x6d\x3e\x51\x74\ -\x3a\x3a\x48\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x3c\x2f\x65\x6e\ -\x75\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\ -\x6d\x65\x3d\x22\x73\x69\x7a\x65\x48\x69\x6e\x74\x22\x20\x73\x74\ -\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x74\x68\x3e\x34\ -\x30\x3c\x2f\x77\x69\x64\x74\x68\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x68\x65\x69\x67\x68\x74\x3e\x32\x30\ -\x3c\x2f\x68\x65\x69\x67\x68\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x2f\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\ -\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\x70\ -\x61\x63\x65\x72\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ -\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\ -\x74\x65\x6d\x20\x72\x6f\x77\x3d\x22\x30\x22\x20\x63\x6f\x6c\x75\ -\x6d\x6e\x3d\x22\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\ -\x51\x4c\x61\x62\x65\x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\x6c\x61\ -\x62\x65\x6c\x5f\x33\x6d\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\ -\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\ -\x4d\x61\x78\x69\x75\x6d\x20\x4c\x65\x6e\x67\x74\x68\x3c\x2f\x73\ -\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ -\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\ -\x3e\x4d\x61\x78\x4c\x65\x6e\x67\x74\x68\x3c\x2f\x73\x74\x72\x69\ -\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x20\x72\x6f\x77\x3d\x22\ -\x31\x22\x20\x63\x6f\x6c\x75\x6d\x6e\x3d\x22\x32\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\ -\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\ -\x44\x6f\x75\x62\x6c\x65\x53\x70\x69\x6e\x42\x6f\x78\x22\x20\x6e\ -\x61\x6d\x65\x3d\x22\x64\x6f\x75\x62\x6c\x65\x53\x70\x69\x6e\x42\ -\x6f\x78\x5f\x32\x6c\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ -\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x4d\ -\x61\x78\x69\x6d\x75\x6d\x20\x4c\x65\x6e\x67\x74\x68\x3c\x2f\x73\ -\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ -\x20\x6e\x61\x6d\x65\x3d\x22\x6d\x69\x6e\x69\x6d\x75\x6d\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x6f\x75\ -\x62\x6c\x65\x3e\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\ -\x30\x30\x30\x30\x30\x3c\x2f\x64\x6f\x75\x62\x6c\x65\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ -\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6d\ -\x61\x78\x69\x6d\x75\x6d\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x64\x6f\x75\x62\x6c\x65\x3e\x31\x30\x30\x30\ -\x2e\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\ -\x3c\x2f\x64\x6f\x75\x62\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\ -\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x76\x61\x6c\x75\x65\x22\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x6f\ -\x75\x62\x6c\x65\x3e\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x30\x30\ -\x30\x30\x30\x30\x30\x30\x3c\x2f\x64\x6f\x75\x62\x6c\x65\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ -\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ -\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\ -\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x6d\x65\x73\x68\x6d\ -\x61\x78\x6c\x65\x6e\x67\x74\x68\x3c\x2f\x63\x73\x74\x72\x69\x6e\ -\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ -\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\ -\x65\x3d\x22\x70\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\ -\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\ -\x2f\x4f\x70\x65\x6e\x53\x43\x41\x44\x3c\x2f\x63\x73\x74\x72\x69\ -\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x20\x72\x6f\x77\x3d\x22\ -\x30\x22\x20\x63\x6f\x6c\x75\x6d\x6e\x3d\x22\x33\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\ -\x63\x6c\x61\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\x6c\x22\x20\x6e\ -\x61\x6d\x65\x3d\x22\x6c\x61\x62\x65\x6c\x5f\x34\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ -\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\ -\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\ -\x74\x72\x69\x6e\x67\x3e\x4d\x61\x78\x69\x6d\x75\x6d\x20\x41\x72\ -\x65\x61\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\ -\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\ -\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\ -\x74\x72\x69\x6e\x67\x3e\x6d\x61\x78\x41\x72\x65\x61\x3c\x2f\x73\ -\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x20\x72\x6f\ -\x77\x3d\x22\x31\x22\x20\x63\x6f\x6c\x75\x6d\x6e\x3d\x22\x33\x22\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\ -\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\x50\ -\x72\x65\x66\x44\x6f\x75\x62\x6c\x65\x53\x70\x69\x6e\x42\x6f\x78\ -\x22\x20\x6e\x61\x6d\x65\x3d\x22\x64\x6f\x75\x62\x6c\x65\x53\x70\ -\x69\x6e\x42\x6f\x78\x5f\x32\x61\x22\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\ -\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\ -\x67\x3e\x4d\x61\x78\x69\x6d\x75\x6d\x20\x41\x72\x65\x61\x3c\x2f\ -\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ -\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6d\x69\x6e\x69\x6d\x75\x6d\x22\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x6f\ -\x75\x62\x6c\x65\x3e\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x30\x30\ -\x30\x30\x30\x30\x30\x30\x3c\x2f\x64\x6f\x75\x62\x6c\x65\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ -\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ -\x6d\x61\x78\x69\x6d\x75\x6d\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x64\x6f\x75\x62\x6c\x65\x3e\x31\x30\x30\ -\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\ -\x30\x3c\x2f\x64\x6f\x75\x62\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ -\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x76\x61\x6c\x75\x65\ -\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ -\x6f\x75\x62\x6c\x65\x3e\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x30\ -\x30\x30\x30\x30\x30\x30\x30\x3c\x2f\x64\x6f\x75\x62\x6c\x65\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ -\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\ -\x22\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\ -\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x6d\x65\x73\x68\ -\x6d\x61\x78\x61\x72\x65\x61\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ -\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ -\x3d\x22\x70\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\ -\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\ -\x4f\x70\x65\x6e\x53\x43\x41\x44\x3c\x2f\x63\x73\x74\x72\x69\x6e\ -\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ -\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x20\x72\x6f\x77\x3d\x22\x31\ -\x22\x20\x63\x6f\x6c\x75\x6d\x6e\x3d\x22\x34\x22\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\ -\x6c\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x44\ -\x6f\x75\x62\x6c\x65\x53\x70\x69\x6e\x42\x6f\x78\x22\x20\x6e\x61\ -\x6d\x65\x3d\x22\x64\x6f\x75\x62\x6c\x65\x53\x70\x69\x6e\x42\x6f\ -\x78\x5f\x6c\x6c\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\ -\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x4c\x6f\ -\x63\x61\x6c\x20\x4c\x65\x6e\x67\x74\x68\x3c\x2f\x73\x74\x72\x69\ -\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\ -\x6d\x65\x3d\x22\x6d\x69\x6e\x69\x6d\x75\x6d\x22\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x6f\x75\x62\x6c\x65\ -\x3e\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\ -\x30\x30\x3c\x2f\x64\x6f\x75\x62\x6c\x65\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\ -\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6d\x61\x78\x69\ -\x6d\x75\x6d\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x64\x6f\x75\x62\x6c\x65\x3e\x31\x30\x30\x30\x2e\x30\x30\ -\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x3c\x2f\x64\ -\x6f\x75\x62\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ -\x20\x6e\x61\x6d\x65\x3d\x22\x76\x61\x6c\x75\x65\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x6f\x75\x62\x6c\ -\x65\x3e\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\ -\x30\x30\x30\x3c\x2f\x64\x6f\x75\x62\x6c\x65\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\ -\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\ -\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\ -\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\ -\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x63\x73\x74\x72\x69\x6e\x67\x3e\x6d\x65\x73\x68\x6c\x6f\x63\x61\ -\x6c\x6c\x65\x6e\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ -\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\ -\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\ -\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x4f\x70\x65\ -\x6e\x53\x43\x41\x44\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ -\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x69\x74\x65\x6d\x20\x72\x6f\x77\x3d\x22\x30\x22\x20\x63\ -\x6f\x6c\x75\x6d\x6e\x3d\x22\x34\x22\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\ -\x73\x3d\x22\x51\x4c\x61\x62\x65\x6c\x22\x20\x6e\x61\x6d\x65\x3d\ -\x22\x6c\x61\x62\x65\x6c\x5f\x34\x22\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\ -\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\ -\x67\x3e\x4c\x6f\x63\x61\x6c\x20\x4c\x65\x6e\x67\x74\x68\x3c\x2f\ -\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ -\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\ -\x67\x3e\x6c\x6f\x63\x61\x6c\x4c\x65\x6e\x3c\x2f\x73\x74\x72\x69\ -\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x20\x72\x6f\x77\x3d\x22\ -\x31\x22\x20\x63\x6f\x6c\x75\x6d\x6e\x3d\x22\x35\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\ -\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\ -\x44\x6f\x75\x62\x6c\x65\x53\x70\x69\x6e\x42\x6f\x78\x22\x20\x6e\ -\x61\x6d\x65\x3d\x22\x64\x6f\x75\x62\x6c\x65\x53\x70\x69\x6e\x42\ -\x6f\x78\x5f\x32\x61\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ -\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x44\ -\x65\x66\x6c\x65\x63\x74\x69\x6f\x6e\x3c\x2f\x73\x74\x72\x69\x6e\ -\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ -\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\ -\x65\x3d\x22\x6d\x69\x6e\x69\x6d\x75\x6d\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x6f\x75\x62\x6c\x65\x3e\ -\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\ -\x30\x3c\x2f\x64\x6f\x75\x62\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ -\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6d\x61\x78\x69\x6d\ -\x75\x6d\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x64\x6f\x75\x62\x6c\x65\x3e\x31\x30\x30\x30\x2e\x30\x30\x30\ -\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x3c\x2f\x64\x6f\ -\x75\x62\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\ -\x6e\x61\x6d\x65\x3d\x22\x76\x61\x6c\x75\x65\x22\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x6f\x75\x62\x6c\x65\ -\x3e\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\ -\x30\x30\x3c\x2f\x64\x6f\x75\x62\x6c\x65\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\ -\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\ -\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\ -\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\ -\x73\x74\x72\x69\x6e\x67\x3e\x6d\x65\x73\x68\x64\x65\x66\x6c\x65\ -\x63\x74\x69\x6f\x6e\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ -\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ -\x70\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\ -\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x4f\x70\ -\x65\x6e\x53\x43\x41\x44\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ -\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x69\x74\x65\x6d\x20\x72\x6f\x77\x3d\x22\x30\x22\x20\ -\x63\x6f\x6c\x75\x6d\x6e\x3d\x22\x35\x22\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\ -\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\x6c\x22\x20\x6e\x61\x6d\x65\ -\x3d\x22\x6c\x61\x62\x65\x6c\x5f\x34\x22\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\ -\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\ -\x6e\x67\x3e\x44\x65\x66\x6c\x65\x63\x74\x69\x6f\x6e\x3c\x2f\x73\ -\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ -\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\ -\x3e\x64\x65\x66\x6c\x65\x63\x74\x69\x6f\x6e\x3c\x2f\x73\x74\x72\ -\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x20\x72\x6f\x77\x3d\ -\x22\x31\x22\x20\x63\x6f\x6c\x75\x6d\x6e\x3d\x22\x30\x22\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\ -\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\x6c\x22\x20\ -\x6e\x61\x6d\x65\x3d\x22\x6c\x61\x62\x65\x6c\x5f\x35\x22\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\ -\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\ -\x69\x6e\x67\x3e\x54\x72\x69\x61\x6e\x67\x75\x6c\x61\x74\x69\x6f\ -\x6e\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x3c\x2f\x73\x74\x72\x69\ -\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ -\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\ -\x20\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\x0a\x20\x20\x20\x20\x3c\ -\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x3c\x2f\x69\x74\ -\x65\x6d\x3e\x0a\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\ -\x20\x20\x3c\x73\x70\x61\x63\x65\x72\x20\x6e\x61\x6d\x65\x3d\x22\ -\x76\x65\x72\x74\x69\x63\x61\x6c\x53\x70\x61\x63\x65\x72\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\ -\x6e\x61\x6d\x65\x3d\x22\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\ -\x6e\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x65\x6e\x75\x6d\x3e\ -\x51\x74\x3a\x3a\x56\x65\x72\x74\x69\x63\x61\x6c\x3c\x2f\x65\x6e\ -\x75\x6d\x3e\x0a\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ -\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\ -\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x73\x69\x7a\x65\x48\x69\ -\x6e\x74\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x77\x69\x64\x74\x68\x3e\x32\x30\x3c\x2f\x77\ -\x69\x64\x74\x68\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x68\x65\ -\x69\x67\x68\x74\x3e\x34\x30\x3c\x2f\x68\x65\x69\x67\x68\x74\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\x69\x7a\x65\x3e\x0a\x20\ -\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ -\x20\x20\x20\x20\x3c\x2f\x73\x70\x61\x63\x65\x72\x3e\x0a\x20\x20\ -\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x3c\x2f\x6c\x61\x79\ -\x6f\x75\x74\x3e\x0a\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\ -\x20\x3c\x6c\x61\x79\x6f\x75\x74\x64\x65\x66\x61\x75\x6c\x74\x20\ -\x73\x70\x61\x63\x69\x6e\x67\x3d\x22\x36\x22\x20\x6d\x61\x72\x67\ -\x69\x6e\x3d\x22\x31\x31\x22\x2f\x3e\x0a\x20\x3c\x70\x69\x78\x6d\ -\x61\x70\x66\x75\x6e\x63\x74\x69\x6f\x6e\x3e\x71\x50\x69\x78\x6d\ -\x61\x70\x46\x72\x6f\x6d\x4d\x69\x6d\x65\x53\x6f\x75\x72\x63\x65\ -\x3c\x2f\x70\x69\x78\x6d\x61\x70\x66\x75\x6e\x63\x74\x69\x6f\x6e\ -\x3e\x0a\x20\x3c\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\x74\ -\x73\x3e\x0a\x20\x20\x3c\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\ -\x65\x74\x3e\x0a\x20\x20\x20\x3c\x63\x6c\x61\x73\x73\x3e\x47\x75\ -\x69\x3a\x3a\x46\x69\x6c\x65\x43\x68\x6f\x6f\x73\x65\x72\x3c\x2f\ -\x63\x6c\x61\x73\x73\x3e\x0a\x20\x20\x20\x3c\x65\x78\x74\x65\x6e\ -\x64\x73\x3e\x51\x57\x69\x64\x67\x65\x74\x3c\x2f\x65\x78\x74\x65\ -\x6e\x64\x73\x3e\x0a\x20\x20\x20\x3c\x68\x65\x61\x64\x65\x72\x3e\ -\x47\x75\x69\x2f\x46\x69\x6c\x65\x44\x69\x61\x6c\x6f\x67\x2e\x68\ -\x3c\x2f\x68\x65\x61\x64\x65\x72\x3e\x0a\x20\x20\x3c\x2f\x63\x75\ -\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x3c\x63\ -\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\ -\x3c\x63\x6c\x61\x73\x73\x3e\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\ -\x46\x69\x6c\x65\x43\x68\x6f\x6f\x73\x65\x72\x3c\x2f\x63\x6c\x61\ -\x73\x73\x3e\x0a\x20\x20\x20\x3c\x65\x78\x74\x65\x6e\x64\x73\x3e\ -\x47\x75\x69\x3a\x3a\x46\x69\x6c\x65\x43\x68\x6f\x6f\x73\x65\x72\ -\x3c\x2f\x65\x78\x74\x65\x6e\x64\x73\x3e\x0a\x20\x20\x20\x3c\x68\ -\x65\x61\x64\x65\x72\x3e\x47\x75\x69\x2f\x50\x72\x65\x66\x57\x69\ -\x64\x67\x65\x74\x73\x2e\x68\x3c\x2f\x68\x65\x61\x64\x65\x72\x3e\ -\x0a\x20\x20\x3c\x2f\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\ -\x74\x3e\x0a\x20\x20\x3c\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\ -\x65\x74\x3e\x0a\x20\x20\x20\x3c\x63\x6c\x61\x73\x73\x3e\x47\x75\ -\x69\x3a\x3a\x50\x72\x65\x66\x53\x70\x69\x6e\x42\x6f\x78\x3c\x2f\ -\x63\x6c\x61\x73\x73\x3e\x0a\x20\x20\x20\x3c\x65\x78\x74\x65\x6e\ -\x64\x73\x3e\x51\x53\x70\x69\x6e\x42\x6f\x78\x3c\x2f\x65\x78\x74\ -\x65\x6e\x64\x73\x3e\x0a\x20\x20\x20\x3c\x68\x65\x61\x64\x65\x72\ -\x3e\x47\x75\x69\x2f\x50\x72\x65\x66\x57\x69\x64\x67\x65\x74\x73\ -\x2e\x68\x3c\x2f\x68\x65\x61\x64\x65\x72\x3e\x0a\x20\x20\x3c\x2f\ -\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\ -\x3c\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\ -\x20\x20\x3c\x63\x6c\x61\x73\x73\x3e\x47\x75\x69\x3a\x3a\x50\x72\ -\x65\x66\x43\x68\x65\x63\x6b\x42\x6f\x78\x3c\x2f\x63\x6c\x61\x73\ -\x73\x3e\x0a\x20\x20\x20\x3c\x65\x78\x74\x65\x6e\x64\x73\x3e\x51\ -\x43\x68\x65\x63\x6b\x42\x6f\x78\x3c\x2f\x65\x78\x74\x65\x6e\x64\ -\x73\x3e\x0a\x20\x20\x20\x3c\x68\x65\x61\x64\x65\x72\x3e\x47\x75\ -\x69\x2f\x50\x72\x65\x66\x57\x69\x64\x67\x65\x74\x73\x2e\x68\x3c\ -\x2f\x68\x65\x61\x64\x65\x72\x3e\x0a\x20\x20\x3c\x2f\x63\x75\x73\ -\x74\x6f\x6d\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x3c\x63\x75\ -\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x3c\ -\x63\x6c\x61\x73\x73\x3e\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x44\ -\x6f\x75\x62\x6c\x65\x53\x70\x69\x6e\x42\x6f\x78\x3c\x2f\x63\x6c\ -\x61\x73\x73\x3e\x0a\x20\x20\x20\x3c\x65\x78\x74\x65\x6e\x64\x73\ -\x3e\x51\x44\x6f\x75\x62\x6c\x65\x53\x70\x69\x6e\x42\x6f\x78\x3c\ -\x2f\x65\x78\x74\x65\x6e\x64\x73\x3e\x0a\x20\x20\x20\x3c\x68\x65\ -\x61\x64\x65\x72\x3e\x47\x75\x69\x2f\x50\x72\x65\x66\x57\x69\x64\ -\x67\x65\x74\x73\x2e\x68\x3c\x2f\x68\x65\x61\x64\x65\x72\x3e\x0a\ -\x20\x20\x3c\x2f\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\x74\ -\x3e\x0a\x20\x3c\x2f\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\ -\x74\x73\x3e\x0a\x20\x3c\x72\x65\x73\x6f\x75\x72\x63\x65\x73\x2f\ -\x3e\x0a\x20\x3c\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x73\x2f\ -\x3e\x0a\x3c\x2f\x75\x69\x3e\x0a\ -\x00\x00\x19\x09\ +\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x04\x00\x6d\x00\x6d\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x02\x6d\x6d\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\ +\x00\x72\x00\x6f\x00\x7a\x00\x6d\x00\x69\x00\x61\x00\x72\x00\x20\ +\x00\x28\x00\x66\x00\x73\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x09\x73\x69\x7a\x65\x20\x28\x66\x73\x29\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x02\x00\xb0\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x01\xb0\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2a\x00\x20\ +\x00\x4e\x00\x61\x00\x63\x00\x69\x01\x5b\x00\x6e\x00\x69\x00\x6a\ +\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x79\x00\x63\x00\x69\x00\x73\ +\x00\x6b\x00\x20\x00\x4f\x00\x4b\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x09\x20\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2e\x00\x41\ +\x00\x64\x00\x64\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\ +\x00\x43\x00\x41\x00\x44\x00\x20\x00\x45\x00\x6c\x00\x65\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x17\x41\x64\x64\x20\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x20\x45\x6c\x65\x6d\x65\x6e\x74\x2e\x2e\x2e\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\xa6\ +\x00\x41\x00\x64\x00\x64\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\ +\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\ +\x00\x62\x00\x79\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x72\ +\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\ +\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x63\x00\x6f\x00\x64\ +\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x65\x00\x78\ +\x00\x65\x00\x63\x00\x75\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\ +\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x62\x00\x69\x00\x6e\ +\x00\x61\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\ +\x41\x64\x64\x20\x61\x6e\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\ +\x65\x6c\x65\x6d\x65\x6e\x74\x20\x62\x79\x20\x65\x6e\x74\x65\x72\ +\x69\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x63\x6f\x64\ +\x65\x20\x61\x6e\x64\x20\x65\x78\x65\x63\x75\x74\x69\x6e\x67\x20\ +\x74\x68\x65\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x62\x69\x6e\ +\x61\x72\x79\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x1e\x00\x4b\x00\x6f\x00\x6c\x00\x6f\x00\x72\ +\x00\x20\x00\x6b\x00\x73\x00\x7a\x00\x74\x00\x61\x01\x42\x00\x74\ +\x00\xf3\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x6f\ +\x6c\x6f\x72\x20\x53\x68\x61\x70\x65\x73\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x42\x00\x43\x00\ +\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x53\x00\x68\x00\x61\x00\ +\x70\x00\x65\x00\x73\x00\x20\x00\x62\x00\x79\x00\x20\x00\x76\x00\ +\x61\x00\x6c\x00\x69\x00\x64\x00\x69\x00\x74\x00\x79\x00\x20\x00\ +\x61\x00\x6e\x00\x64\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x21\x43\x6f\x6c\x6f\x72\x20\x53\ +\x68\x61\x70\x65\x73\x20\x62\x79\x20\x76\x61\x6c\x69\x64\x69\x74\ +\x79\x20\x61\x6e\x64\x20\x74\x79\x70\x65\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x32\x00\x4b\x00\ +\x6f\x00\x6e\x00\x77\x00\x65\x00\x72\x00\x73\x00\x6a\x00\x61\x00\ +\x20\x00\x6b\x00\x72\x00\x61\x00\x77\x01\x19\x00\x64\x00\x7a\x00\ +\x69\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x6c\x00\x69\x00\x63\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\ +\x20\x45\x64\x67\x65\x73\x20\x54\x6f\x20\x46\x61\x63\x65\x73\x07\ +\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x32\x00\x4b\x00\x6f\x00\x6e\x00\x77\x00\x65\x00\x72\x00\x73\ +\x00\x6a\x00\x61\x00\x20\x00\x6b\x00\x72\x00\x61\x00\x77\x01\x19\ +\x00\x64\x00\x7a\x00\x69\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x6c\ +\x00\x69\x00\x63\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\x6f\ +\x6e\x76\x65\x72\x74\x20\x45\x64\x67\x65\x73\x20\x74\x6f\x20\x46\ +\x61\x63\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x36\x00\x43\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x20\x00\x52\x00\x65\x00\x66\x00\x69\x00\x6e\x00\ +\x65\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\ +\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1b\x43\x72\x65\x61\x74\x65\x20\x52\x65\ +\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\x65\x61\x74\x75\ +\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x22\x00\x45\x00\x78\x00\x70\x00\x61\x00\x6e\x00\ +\x64\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x11\x45\x78\x70\x61\x6e\x64\x20\x50\x6c\x61\x63\x65\x6d\x65\x6e\ +\x74\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x5e\x00\x45\x00\x78\x00\x70\x00\x61\x00\x6e\x00\ +\x64\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x70\x00\x6c\x00\ +\x61\x00\x63\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x00\ +\x20\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x77\x00\x61\x00\x72\x00\ +\x64\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\ +\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x00\x54\x00\x72\x00\ +\x65\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x45\x78\x70\ +\x61\x6e\x64\x20\x61\x6c\x6c\x20\x70\x6c\x61\x63\x65\x6d\x65\x6e\ +\x74\x73\x20\x64\x6f\x77\x6e\x77\x61\x72\x64\x73\x20\x74\x68\x65\ +\x20\x46\x65\x61\x74\x75\x72\x65\x54\x72\x65\x65\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3a\x00\ +\x50\x00\x6c\x00\x65\x00\x61\x00\x73\x00\x65\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x33\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ +\x66\x00\x69\x00\x72\x00\x73\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1d\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\ +\x20\x33\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x69\x72\x73\x74\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x28\x00\x4e\x00\x61\x00\x63\x00\x69\x01\x5b\x00\x6e\x00\ +\x69\x00\x6a\x00\x20\x00\x70\x00\x72\x00\x7a\x00\x79\x00\x63\x00\ +\x69\x00\x73\x00\x6b\x00\x20\x00\x4f\x00\x4b\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x5a\ +\x00\x50\x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x20\x00\x79\ +\x00\x65\x00\x74\x00\x20\x00\x43\x00\x6f\x00\x64\x00\x65\x00\x64\ +\x00\x20\x00\x77\x00\x61\x00\x69\x00\x74\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x50\x00\x65\x00\x74\ +\x00\x65\x00\x72\x00\x20\x00\x4c\x00\x69\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2d\x50\x72\x6f\x6a\x65\x63\x74\x69\x6f\x6e\x20\x4e\ +\x6f\x74\x20\x79\x65\x74\x20\x43\x6f\x64\x65\x64\x20\x77\x61\x69\ +\x74\x69\x6e\x67\x20\x66\x6f\x72\x20\x50\x65\x74\x65\x72\x20\x4c\ +\x69\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x28\x00\x52\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x65\ +\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x46\ +\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x14\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\ +\x70\x65\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x42\x00\x52\x00\ +\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x4f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6e\x00\ +\x64\x00\x20\x00\x74\x00\x68\x00\x65\x00\x69\x00\x72\x00\x20\x00\ +\x43\x00\x68\x00\x69\x00\x6c\x00\x64\x00\x72\x00\x65\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x21\x52\x65\x6d\x6f\x76\x65\x20\ +\x4f\x62\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\x74\x68\x65\x69\ +\x72\x20\x43\x68\x69\x6c\x64\x72\x65\x6e\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\xb0\x00\x52\x00\ +\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x73\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\ +\x61\x00\x6c\x00\x6c\x00\x20\x00\x63\x00\x68\x00\x69\x00\x6c\x00\ +\x64\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x61\x00\ +\x74\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\ +\x74\x00\x20\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\ +\x6e\x00\x63\x00\x65\x00\x64\x00\x20\x00\x66\x00\x72\x00\x6f\x00\ +\x6d\x00\x20\x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x58\x52\x65\x6d\x6f\x76\x65\x73\x20\x74\ +\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x20\x61\x6e\x64\x20\x61\x6c\x6c\x20\x63\x68\x69\x6c\ +\x64\x72\x65\x6e\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\x6e\x6f\ +\x74\x20\x72\x65\x66\x65\x72\x65\x6e\x63\x65\x64\x20\x66\x72\x6f\ +\x6d\x20\x6f\x74\x68\x65\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\ +\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x1a\x00\x5a\x00\x61\x00\x6d\x00\x69\x00\x65\x01\x44\x00\x20\ +\x00\x6f\x00\x62\x00\x69\x00\x65\x00\x6b\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0e\x52\x65\x70\x6c\x61\x63\x65\x20\x4f\x62\ +\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x9e\x00\x52\x00\x65\x00\x70\x00\x6c\x00\ +\x61\x00\x63\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\ +\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x54\x00\x72\x00\x65\x00\ +\x65\x00\x2e\x00\x20\x00\x50\x00\x6c\x00\x65\x00\x61\x00\x73\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x6f\x00\x6c\x00\x64\x00\x2c\x00\x20\x00\x6e\x00\x65\x00\ +\x77\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x52\ +\x65\x70\x6c\x61\x63\x65\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x69\x6e\x20\x74\x68\x65\x20\x46\x65\x61\x74\x75\x72\x65\x20\ +\x54\x72\x65\x65\x2e\x20\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\ +\x65\x63\x74\x20\x6f\x6c\x64\x2c\x20\x6e\x65\x77\x20\x61\x6e\x64\ +\x20\x70\x61\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x3c\x00\x4e\x00\x69\x00\x65\x00\x75\x00\x64\x00\x61\x00\x6e\x00\ +\x65\x00\x20\x00\x75\x00\x72\x00\x75\x00\x63\x00\x68\x00\x6f\x00\ +\x6d\x00\x69\x00\x65\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x18\x52\x75\x6e\x6e\x69\x6e\x67\x20\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x20\x66\x61\x69\x6c\x65\x64\x0a\x07\ +\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x2c\x00\x46\x00\x75\x00\x6e\x00\x6b\x00\x63\x00\x6a\x00\x61\ +\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x6f\x00\x62\x00\x73\x01\x42\ +\x00\x75\x00\x67\x00\x69\x00\x77\x00\x61\x00\x6e\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x14\x55\x6e\x73\x75\x70\x70\x6f\x72\ +\x74\x65\x64\x20\x46\x75\x6e\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x00\x00\x1b\x6d\ \x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\ -\x70\x78\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\ -\x34\x70\x78\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\ -\x39\x38\x30\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ -\x3a\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x33\x32\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x34\x38\x2e\x33\x2e\x31\x20\x72\x39\ -\x38\x38\x36\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ -\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x54\x72\x65\x65\x5f\x50\ -\x61\x72\x74\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x6f\x75\x74\x70\x75\x74\x5f\x65\x78\x74\x65\ -\x6e\x73\x69\x6f\x6e\x3d\x22\x6f\x72\x67\x2e\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x2e\x6f\x75\x74\x70\x75\x74\x2e\x73\x76\x67\x2e\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x3e\x0a\x20\x20\x3c\x64\x65\ -\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\ -\x32\x39\x38\x32\x22\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x33\x38\x36\x34\x22\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x36\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x37\x31\ -\x62\x32\x66\x38\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ -\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x38\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x32\x37\ -\x39\x35\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\ -\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ -\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ -\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\ -\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\ -\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x36\x34\x20\x3a\x20\ -\x33\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\ -\x6f\x72\x69\x67\x69\x6e\x3d\x22\x33\x32\x20\x3a\x20\x32\x31\x2e\ -\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\ -\x76\x65\x32\x39\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x64\ -\x65\x66\x73\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\ -\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\ -\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\ -\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\ -\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\ -\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\ -\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\ -\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\ -\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x35\x2e\x35\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\ -\x32\x2e\x38\x31\x38\x31\x38\x31\x38\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x33\x32\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\ -\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\ -\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\ -\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\ -\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ -\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ -\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x2d\x38\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x79\x3d\x22\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\ -\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\ -\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x38\x35\x22\ -\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\ -\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ -\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\ -\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\ -\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\ -\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ -\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\ -\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\ -\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\ -\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x3c\x2f\x64\x63\x3a\x74\ -\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\ -\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\ -\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\ -\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\ -\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\ -\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x67\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x33\x38\x34\x35\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\ -\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x35\x38\x33\ -\x30\x36\x31\x34\x33\x2c\x30\x2c\x30\x2c\x30\x2e\x35\x38\x33\x30\ -\x36\x31\x34\x33\x2c\x2d\x31\x32\x2e\x36\x35\x34\x37\x38\x2c\x2d\ -\x37\x37\x2e\x34\x33\x38\x34\x34\x32\x29\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\ -\x30\x30\x38\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3a\x33\x2e\x34\x35\x31\x33\x38\x35\x39\x37\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ -\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ -\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x38\ -\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\ -\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\ -\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ -\x3a\x33\x2e\x34\x35\x31\x33\x38\x35\x39\x37\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\ -\x62\x65\x76\x65\x6c\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ -\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\ -\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\ -\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\ -\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\ -\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\ -\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\ -\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\ -\x39\x36\x2e\x31\x38\x34\x34\x34\x2c\x31\x34\x31\x2e\x34\x34\x39\ -\x36\x38\x20\x2d\x31\x39\x2e\x38\x31\x34\x34\x31\x2c\x37\x2e\x31\ -\x37\x39\x32\x31\x20\x32\x39\x2e\x34\x33\x34\x39\x2c\x33\x2e\x39\ -\x37\x32\x30\x39\x20\x2d\x30\x2e\x37\x32\x33\x35\x37\x2c\x33\x36\ -\x2e\x31\x32\x36\x36\x35\x20\x31\x37\x2e\x32\x35\x38\x38\x31\x2c\ -\x2d\x31\x30\x2e\x39\x34\x33\x38\x38\x20\x30\x2e\x35\x37\x35\x38\ -\x37\x2c\x2d\x33\x34\x2e\x33\x38\x34\x38\x35\x20\x2d\x32\x36\x2e\ -\x37\x33\x31\x36\x2c\x2d\x31\x2e\x39\x34\x39\x32\x32\x20\x7a\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ -\x74\x68\x33\x38\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\ -\x70\x65\x73\x3d\x22\x63\x63\x63\x63\x63\x63\x63\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ -\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x38\ -\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\ -\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\ -\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ -\x3a\x33\x2e\x34\x35\x31\x33\x38\x35\x39\x37\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\ -\x62\x65\x76\x65\x6c\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ -\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\ -\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\ -\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\ -\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\ -\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\ -\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\ -\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\ -\x37\x35\x2e\x35\x37\x39\x34\x31\x2c\x31\x34\x38\x2e\x36\x35\x38\ -\x39\x20\x33\x30\x2e\x37\x30\x38\x38\x34\x2c\x33\x2e\x33\x36\x35\ -\x36\x32\x20\x30\x2c\x33\x36\x2e\x34\x37\x37\x31\x39\x20\x2d\x33\ -\x31\x2e\x31\x32\x33\x38\x33\x2c\x2d\x35\x2e\x30\x36\x34\x37\x39\ -\x20\x30\x2e\x34\x31\x34\x39\x39\x2c\x2d\x33\x34\x2e\x37\x37\x38\ -\x30\x32\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x32\x35\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\ -\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x63\x63\x63\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\ -\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\ -\x30\x30\x38\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\ -\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ -\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3a\x33\x2e\x34\x35\x31\x33\x38\x35\x39\x37\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\ -\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ -\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ -\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\ -\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\ -\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\ -\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\ -\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\ -\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\ -\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\ -\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ -\x22\x6d\x20\x31\x30\x36\x2e\x30\x35\x34\x33\x35\x2c\x31\x35\x32\ -\x2e\x30\x36\x39\x34\x38\x20\x31\x36\x2e\x37\x32\x35\x39\x38\x2c\ -\x2d\x38\x2e\x34\x30\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x32\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\ -\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x74\x79\x70\x65\x3d\x22\x61\x72\x63\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\ -\x66\x66\x66\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\ -\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3a\x31\x2e\x36\x31\x33\x37\x34\x34\x33\x38\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\ -\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x35\x39\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\ -\x22\x34\x38\x2e\x30\x39\x30\x39\x30\x38\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\x22\ -\x32\x37\x2e\x36\x33\x36\x33\x36\x34\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\x37\ -\x2e\x35\x34\x35\x34\x35\x34\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x34\x2e\ -\x33\x36\x33\x36\x33\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x64\x3d\x22\x6d\x20\x35\x35\x2e\x36\x33\x36\x33\x36\x33\x2c\x32\ -\x37\x2e\x36\x33\x36\x33\x36\x34\x20\x61\x20\x37\x2e\x35\x34\x35\ -\x34\x35\x34\x35\x2c\x34\x2e\x33\x36\x33\x36\x33\x36\x35\x20\x30\ -\x20\x31\x20\x31\x20\x2d\x31\x35\x2e\x30\x39\x30\x39\x30\x39\x2c\ -\x30\x20\x37\x2e\x35\x34\x35\x34\x35\x34\x35\x2c\x34\x2e\x33\x36\ -\x33\x36\x33\x36\x35\x20\x30\x20\x31\x20\x31\x20\x31\x35\x2e\x30\ -\x39\x30\x39\x30\x39\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\ -\x72\x69\x78\x28\x31\x2e\x33\x39\x36\x30\x31\x37\x36\x2c\x30\x2e\ -\x34\x35\x30\x35\x34\x35\x33\x35\x2c\x2d\x30\x2e\x34\x32\x34\x34\ -\x37\x33\x32\x31\x2c\x31\x2e\x34\x38\x31\x37\x36\x34\x33\x2c\x2d\ -\x33\x39\x2e\x34\x39\x35\x37\x37\x33\x2c\x2d\x34\x37\x2e\x30\x33\ -\x31\x31\x31\x35\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x67\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ -\x69\x6c\x6c\x3a\x23\x66\x66\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x34\x2e\x32\x34\x39\x32\x37\ -\x36\x36\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ -\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ -\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ -\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x35\x33\x34\x38\x34\x35\ -\x39\x33\x2c\x30\x2c\x30\x2c\x30\x2e\x35\x34\x35\x39\x37\x32\x36\ -\x31\x2c\x2d\x33\x35\x2e\x39\x39\x33\x39\x34\x32\x2c\x2d\x34\x34\ -\x2e\x33\x38\x35\x34\x30\x34\x29\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x67\x33\x37\x36\x31\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\ -\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\ -\x63\x63\x63\x63\x63\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x36\x35\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x37\x35\x2e\x35\ -\x37\x39\x34\x31\x2c\x31\x34\x38\x2e\x36\x35\x38\x39\x20\x33\x30\ -\x2e\x37\x30\x38\x38\x34\x2c\x33\x2e\x33\x36\x35\x36\x32\x20\x30\ -\x2c\x33\x36\x2e\x34\x37\x37\x31\x39\x20\x2d\x33\x31\x2e\x31\x32\ -\x33\x38\x33\x2c\x2d\x35\x2e\x30\x36\x34\x37\x39\x20\x30\x2e\x34\ -\x31\x34\x39\x39\x2c\x2d\x33\x34\x2e\x37\x37\x38\x30\x32\x20\x7a\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\x66\x30\x30\x30\x30\x3b\x66\ -\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\ -\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\ -\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x34\x2e\x32\x34\ -\x39\x32\x37\x36\x36\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ -\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x62\x65\x76\x65\x6c\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\ -\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ -\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\ -\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\ -\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\ -\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\ -\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\ -\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ -\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ -\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\ -\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x36\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x30\x36\x2e\x30\ -\x35\x34\x33\x35\x2c\x31\x35\x32\x2e\x30\x36\x39\x34\x38\x20\x31\ -\x36\x2e\x37\x32\x35\x39\x38\x2c\x2d\x38\x2e\x34\x30\x38\x38\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x66\x69\x6c\x6c\x3a\x23\x66\x66\x30\x30\x30\x30\x3b\x66\x69\ -\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\ -\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\ -\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x34\x2e\x32\x34\x39\ -\x32\x37\x36\x36\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ -\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ -\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\ -\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\ -\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\ -\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\ -\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\ -\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\ -\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x3c\x67\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ -\x6c\x3a\x23\x30\x30\x38\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x33\x2e\x34\x35\x31\x33\x38\x35\x39\ -\x37\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ -\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ -\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ -\x61\x74\x72\x69\x78\x28\x30\x2e\x35\x38\x33\x30\x36\x31\x34\x33\ -\x2c\x30\x2c\x30\x2c\x30\x2e\x35\x38\x33\x30\x36\x31\x34\x33\x2c\ -\x2d\x31\x33\x2e\x32\x30\x30\x32\x33\x35\x2c\x2d\x34\x37\x2e\x32\ -\x35\x36\x36\x32\x34\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x67\x33\x37\x36\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\ -\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ -\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\ -\x63\x63\x63\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x70\x61\x74\x68\x33\x37\x37\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x39\x32\x2e\x31\x33\x30\ -\x36\x30\x32\x2c\x31\x35\x31\x2e\x34\x32\x38\x33\x36\x20\x2d\x31\ -\x37\x2e\x39\x34\x33\x34\x30\x38\x2c\x31\x36\x2e\x32\x32\x32\x33\ -\x38\x20\x33\x32\x2e\x35\x35\x33\x32\x33\x36\x2c\x31\x32\x2e\x37\ -\x30\x33\x34\x34\x20\x39\x2e\x36\x32\x37\x31\x31\x2c\x2d\x31\x38\ -\x2e\x32\x34\x35\x32\x36\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\ -\x66\x66\x66\x66\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\ -\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ -\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3a\x33\x2e\x34\x35\x31\x33\x38\x35\x39\x37\x30\x30\ -\x30\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x62\x65\x76\x65\ -\x6c\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ -\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\ -\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\ -\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\ -\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\ -\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\ -\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\ -\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\ -\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x3c\x23\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x01\xa0\x00\x00\x00\xb0\x00\x00\x0f\x8a\x00\x00\x07\x3d\ +\x00\x00\x0e\xff\x00\x39\xdf\x33\x00\x00\x01\x92\x00\x72\x97\x49\ +\x00\x00\x0f\x3a\x01\x0c\x64\xae\x00\x00\x0f\xfa\x01\x38\xb0\x83\ +\x00\x00\x11\x72\x01\x40\x42\x85\x00\x00\x0a\xe9\x02\x1f\xd9\x48\ +\x00\x00\x03\xca\x02\x7b\x37\xc4\x00\x00\x14\x59\x02\xbc\x05\x8e\ +\x00\x00\x0c\x95\x02\xbe\x05\x8e\x00\x00\x00\xbf\x03\x8c\x88\xc1\ +\x00\x00\x0d\x35\x05\x08\x5c\x93\x00\x00\x02\xed\x05\x16\xa3\x95\ +\x00\x00\x12\xf1\x05\x66\x9a\x34\x00\x00\x07\xc5\x05\x98\x15\x8e\ +\x00\x00\x0c\xe8\x05\xcc\x9a\xd9\x00\x00\x0c\x45\x05\xe4\x1f\xa9\ +\x00\x00\x10\x5c\x05\xfb\x21\x0b\x00\x00\x06\x37\x06\xe4\x0a\x14\ +\x00\x00\x17\xeb\x06\xee\xa0\xc5\x00\x00\x09\xd1\x07\x5d\xec\x93\ +\x00\x00\x12\x92\x07\x5d\xee\x93\x00\x00\x12\x33\x07\xda\x68\xe7\ +\x00\x00\x0b\x60\x07\xe4\xd0\x65\x00\x00\x0d\x7f\x08\x10\xb3\x89\ +\x00\x00\x05\x2b\x08\x37\x4e\x99\x00\x00\x15\x02\x08\x4d\xc0\x2e\ +\x00\x00\x19\x5a\x08\x5d\x45\x73\x00\x00\x01\x12\x08\xa5\x45\x08\ +\x00\x00\x05\xdb\x08\xca\x52\x4b\x00\x00\x14\xcd\x08\xca\x72\x4b\ +\x00\x00\x0f\xc2\x08\xe2\x7f\xe5\x00\x00\x13\xaf\x09\x2b\x77\x54\ +\x00\x00\x17\xa4\x09\xc0\x82\xb5\x00\x00\x06\x93\x0a\x22\x8d\xb2\ +\x00\x00\x00\x00\x0a\x2b\x47\x64\x00\x00\x0e\x7c\x0a\x96\xcd\x84\ +\x00\x00\x0d\xf3\x0a\xd3\x55\x94\x00\x00\x07\x63\x0a\xf8\x55\x94\ +\x00\x00\x07\x01\x0b\x61\x1d\x4e\x00\x00\x15\xff\x0d\x2c\x1d\x28\ +\x00\x00\x04\x23\x0d\xaa\x21\x43\x00\x00\x13\x5f\x0d\xdc\x00\x68\ +\x00\x00\x04\xcc\x0e\x02\x4e\xea\x00\x00\x18\xf5\x0e\x75\xf9\x03\ +\x00\x00\x0a\x72\x0e\x80\x99\x15\x00\x00\x15\xa6\x0e\xc6\x00\x19\ +\x00\x00\x0b\xec\x0e\xcc\x78\xf1\x00\x00\x04\x73\x0f\x18\x51\xc5\ +\x00\x00\x11\xb3\x0f\x68\xe5\xc7\x00\x00\x01\xe3\x0f\xd3\x1f\xf3\ +\x00\x00\x16\x7f\x69\x00\x00\x19\xb3\x03\x00\x00\x00\x5c\x00\x44\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x3a\x00\x20\x00\x52\x00\x65\ +\x00\x67\x00\x69\x00\x73\x00\x74\x00\x65\x00\x72\x00\x20\x00\x66\ +\x00\x69\x00\x6c\x00\x65\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x74\x00\x6f\ +\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2e\x44\x65\x62\x75\x67\x3a\x20\x52\x65\x67\x69\x73\ +\x74\x65\x72\x20\x66\x69\x6c\x65\x74\x79\x70\x65\x20\x74\x6f\x20\ +\x70\x72\x6f\x74\x6f\x74\x79\x70\x65\x20\x69\x6d\x70\x6f\x72\x74\ +\x65\x72\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x44\x00\ +\x65\x00\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x44\x65\x66\x6c\x65\ +\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x32\ +\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x53\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x65\x6e\x65\ +\x72\x61\x6c\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x0c\ +\x51\x68\x82\x2c\x76\x84\x30\x6a\x8a\x2d\x5b\x9a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\ +\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x8e\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\ +\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x46\x00\x65\x00\x61\x00\ +\x74\x00\x75\x00\x72\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\ +\x6c\x00\x6c\x00\x20\x00\x63\x00\x6c\x00\x61\x00\x69\x00\x6d\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x65\x00\x72\x00\x20\x00\x63\x00\ +\x68\x00\x69\x00\x6c\x00\x64\x00\x72\x00\x65\x00\x6e\x00\x20\x00\ +\x69\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x74\x00\ +\x72\x00\x65\x00\x65\x00\x20\x00\x76\x00\x69\x00\x65\x00\x77\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x47\x49\x66\x20\x74\x68\x69\x73\ +\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x46\x65\x61\ +\x74\x75\x72\x65\x73\x20\x77\x69\x6c\x6c\x20\x63\x6c\x61\x69\x6d\ +\x20\x74\x68\x69\x65\x72\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\ +\x69\x6e\x20\x74\x68\x65\x20\x74\x72\x65\x65\x20\x76\x69\x65\x77\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x70\x00\x49\x00\x66\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\ +\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\ +\x2c\x00\x20\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\x6d\x00\x61\x00\ +\x74\x00\x72\x00\x69\x00\x78\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\ +\x20\x00\x62\x00\x65\x00\x20\x00\x50\x00\x61\x00\x72\x00\x61\x00\ +\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x63\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x38\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\ +\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x4d\x75\x6c\x74\x6d\x61\x74\ +\x72\x69\x78\x20\x4f\x62\x6a\x65\x63\x74\x20\x77\x69\x6c\x6c\x20\ +\x62\x65\x20\x50\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x18\x00\x4c\x00\x6f\x00\x63\x00\x61\ +\x00\x6c\x00\x20\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x4c\x6f\x63\x61\x6c\x20\ +\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x12\x00\x4d\x00\x61\x00\x78\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\ +\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x4d\x61\x78\ +\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x18\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\ +\x20\x00\x41\x00\x72\x00\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0c\x4d\x61\x78\x69\x6d\x75\x6d\x20\x41\x72\x65\x61\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1c\x00\x4d\x00\x61\x00\x78\ +\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x4c\x00\x65\x00\x6e\ +\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ +\x4d\x61\x78\x69\x6d\x75\x6d\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x52\x00\x4d\x00\x61\x00\x78\x00\ +\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\ +\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x66\x00\ +\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\ +\x73\x00\x20\x00\x28\x00\x66\x00\x6e\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x29\x4d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\ +\x62\x65\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x66\x6f\x72\ +\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x73\x20\x28\x66\x6e\x29\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x1a\x00\x4d\x00\x61\x00\x78\x00\ +\x69\x00\x75\x00\x6d\x00\x20\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\ +\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x61\x78\ +\x69\x75\x6d\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x1a\x00\x4d\x00\x65\x00\x73\x00\x68\x00\x20\x00\ +\x66\x00\x61\x00\x6c\x00\x6c\x00\x62\x00\x61\x00\x63\x00\x6b\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x66\x61\ +\x6c\x6c\x62\x61\x63\x6b\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x26\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\ +\x44\x00\x20\x00\x65\x00\x78\x00\x65\x00\x63\x00\x75\x00\x74\x00\ +\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x13\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\ +\x61\x62\x6c\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1e\x00\ +\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\ +\x20\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\ +\x65\x78\x70\x6f\x72\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x1e\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\ +\x44\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x20\x69\x6d\x70\x6f\x72\x74\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x01\x3a\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6d\x00\x61\x00\ +\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x6e\x00\x75\x00\ +\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x66\x00\ +\x20\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\ +\x6f\x00\x6e\x00\x2c\x00\x20\x00\x70\x00\x72\x00\x69\x00\x73\x00\ +\x6d\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\x75\x00\ +\x73\x00\x74\x00\x75\x00\x6d\x00\x2e\x00\x20\x00\x49\x00\x66\x00\ +\x20\x00\x66\x00\x6e\x00\x20\x00\x69\x00\x73\x00\x20\x00\x67\x00\ +\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x72\x00\x20\x00\x74\x00\ +\x68\x00\x61\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\ +\x20\x00\x76\x00\x61\x00\x6c\x00\x75\x00\x65\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\ +\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\x65\x00\x64\x00\x20\x00\ +\x74\x00\x6f\x00\x20\x00\x62\x00\x65\x00\x20\x00\x61\x00\x20\x00\ +\x63\x00\x69\x00\x72\x00\x63\x00\x75\x00\x6c\x00\x61\x00\x72\x00\ +\x2e\x00\x20\x00\x53\x00\x65\x00\x74\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\ +\x6f\x00\x20\x00\x6c\x00\x69\x00\x6d\x00\x69\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x9d\x54\x68\x65\x20\x6d\x61\x78\x69\x6d\ +\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x66\x61\x63\ +\x65\x73\x20\x6f\x66\x20\x61\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x2c\ +\x20\x70\x72\x69\x73\x6d\x20\x6f\x72\x20\x66\x72\x75\x73\x74\x75\ +\x6d\x2e\x20\x49\x66\x20\x66\x6e\x20\x69\x73\x20\x67\x72\x65\x61\ +\x74\x65\x72\x20\x74\x68\x61\x6e\x20\x74\x68\x69\x73\x20\x76\x61\ +\x6c\x75\x65\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\ +\x73\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x74\x6f\x20\ +\x62\x65\x20\x61\x20\x63\x69\x72\x63\x75\x6c\x61\x72\x2e\x20\x53\ +\x65\x74\x20\x74\x6f\x20\x30\x20\x66\x6f\x72\x20\x6e\x6f\x20\x6c\ +\x69\x6d\x69\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x48\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x70\x00\x61\x00\x74\x00\x68\x00\ +\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\ +\x20\x00\x65\x00\x78\x00\x65\x00\x63\x00\x75\x00\x74\x00\x65\x00\ +\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x24\x54\x68\x65\x20\x70\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\ +\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\ +\x65\x61\x62\x6c\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\ +\x00\x54\x00\x72\x00\x69\x00\x61\x00\x6e\x00\x67\x00\x75\x00\x6c\ +\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x73\x00\x65\ +\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x16\x54\x72\x69\x61\x6e\x67\x75\x6c\x61\x74\ +\x69\x6f\x6e\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x2c\x00\x55\x00\x73\x00\x65\x00\x20\x00\ +\x4d\x00\x75\x00\x6c\x00\x74\x00\x6d\x00\x61\x00\x74\x00\x72\x00\ +\x69\x00\x78\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\ +\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x55\x73\x65\ +\x20\x4d\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\x46\x65\x61\x74\ +\x75\x72\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3a\x00\x55\ +\x00\x73\x00\x65\x00\x20\x00\x56\x00\x69\x00\x65\x00\x77\x00\x50\ +\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x64\x00\x65\x00\x72\x00\x20\ +\x00\x69\x00\x6e\x00\x20\x00\x54\x00\x72\x00\x65\x00\x65\x00\x20\ +\x00\x56\x00\x69\x00\x65\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1d\x55\x73\x65\x20\x56\x69\x65\x77\x50\x72\x6f\x76\x69\x64\ +\x65\x72\x20\x69\x6e\x20\x54\x72\x65\x65\x20\x56\x69\x65\x77\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x61\x00\x6e\x00\x67\ +\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x28\x00\x66\x00\x61\ +\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x61\x6e\x67\x75\ +\x6c\x61\x72\x20\x28\x66\x61\x29\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x12\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x78\x00\ +\x69\x00\x74\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x63\ +\x6f\x6e\x76\x65\x78\x69\x74\x79\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x14\x00\x64\x00\x65\x00\x66\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x64\x65\x66\x6c\x65\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x10\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x6c\ +\x00\x4c\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\ +\x6c\x6f\x63\x61\x6c\x4c\x65\x6e\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x0e\x00\x6d\x00\x61\x00\x78\x00\x41\x00\x72\x00\x65\x00\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x6d\x61\x78\x41\x72\ +\x65\x61\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2a\x00\x6d\x00\ +\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x66\x00\ +\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\ +\x73\x00\x69\x00\x7a\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x15\x6d\x61\x78\x69\x6d\x75\x6d\x20\x66\x72\x61\x67\x6d\x65\x6e\ +\x74\x20\x73\x69\x7a\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x38\x00\x6d\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\ +\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x66\x00\ +\x6f\x00\x72\x00\x20\x00\x61\x00\x20\x00\x66\x00\x72\x00\x61\x00\ +\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1c\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x61\x6e\x67\x6c\x65\ +\x20\x66\x6f\x72\x20\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x34\x00\x6d\x00\x69\x00\x6e\ +\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x73\x00\x69\x00\x7a\ +\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x20\x00\x66\ +\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1a\x6d\x69\x6e\x69\x6d\x75\x6d\x20\ +\x73\x69\x7a\x65\x20\x6f\x66\x20\x61\x20\x66\x72\x61\x67\x6d\x65\ +\x6e\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x04\x00\x6d\x00\ +\x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x6d\x6d\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x12\x00\x73\x00\x69\x00\x7a\x00\x65\ +\x00\x20\x00\x28\x00\x66\x00\x73\x00\x29\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x73\x69\x7a\x65\x20\x28\x66\x73\x29\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x02\x00\xb0\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x01\xb0\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\ +\x00\x20\x00\x50\x00\x72\x00\x65\x00\x73\x00\x73\x00\x20\x00\x4f\ +\x00\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x20\x50\x72\x65\ +\x73\x73\x20\x4f\x4b\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x2e\x00\x41\x00\x64\x00\x64\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x45\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\ +\x41\x64\x64\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x45\x6c\x65\ +\x6d\x65\x6e\x74\x2e\x2e\x2e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\xa6\x00\x41\x00\x64\x00\x64\ +\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\ +\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x6c\x00\x65\ +\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x62\x00\x79\x00\x20\ +\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\ +\x00\x44\x00\x20\x00\x63\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x61\ +\x00\x6e\x00\x64\x00\x20\x00\x65\x00\x78\x00\x65\x00\x63\x00\x75\ +\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\ +\x00\x44\x00\x20\x00\x62\x00\x69\x00\x6e\x00\x61\x00\x72\x00\x79\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\x41\x64\x64\x20\x61\x6e\ +\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x6c\x65\x6d\x65\x6e\ +\x74\x20\x62\x79\x20\x65\x6e\x74\x65\x72\x69\x6e\x67\x20\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x20\x63\x6f\x64\x65\x20\x61\x6e\x64\x20\ +\x65\x78\x65\x63\x75\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x20\x62\x69\x6e\x61\x72\x79\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\ +\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x53\x00\x68\ +\x00\x61\x00\x70\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0c\x43\x6f\x6c\x6f\x72\x20\x53\x68\x61\x70\x65\x73\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x42\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x53\x00\ +\x68\x00\x61\x00\x70\x00\x65\x00\x73\x00\x20\x00\x62\x00\x79\x00\ +\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x69\x00\x74\x00\ +\x79\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x74\x00\x79\x00\ +\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x43\x6f\x6c\ +\x6f\x72\x20\x53\x68\x61\x70\x65\x73\x20\x62\x79\x20\x76\x61\x6c\ +\x69\x64\x69\x74\x79\x20\x61\x6e\x64\x20\x74\x79\x70\x65\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x2c\x00\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\ +\x20\x00\x45\x00\x64\x00\x67\x00\x65\x00\x73\x00\x20\x00\x54\x00\ +\x6f\x00\x20\x00\x46\x00\x61\x00\x63\x00\x65\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\x20\x45\ +\x64\x67\x65\x73\x20\x54\x6f\x20\x46\x61\x63\x65\x73\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\ +\x00\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x20\ +\x00\x45\x00\x64\x00\x67\x00\x65\x00\x73\x00\x20\x00\x74\x00\x6f\ +\x00\x20\x00\x46\x00\x61\x00\x63\x00\x65\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\ +\x67\x65\x73\x20\x74\x6f\x20\x46\x61\x63\x65\x73\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x36\x00\ +\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x52\x00\ +\x65\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x53\x00\x68\x00\ +\x61\x00\x70\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\ +\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x43\ +\x72\x65\x61\x74\x65\x20\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\ +\x70\x65\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x22\x00\x45\x00\ +\x78\x00\x70\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x50\x00\x6c\x00\ +\x61\x00\x63\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x11\x45\x78\x70\x61\x6e\x64\x20\ +\x50\x6c\x61\x63\x65\x6d\x65\x6e\x74\x73\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x5e\x00\x45\x00\ +\x78\x00\x70\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x6c\x00\ +\x6c\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x64\x00\x6f\x00\x77\x00\ +\x6e\x00\x77\x00\x61\x00\x72\x00\x64\x00\x73\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\ +\x72\x00\x65\x00\x54\x00\x72\x00\x65\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2f\x45\x78\x70\x61\x6e\x64\x20\x61\x6c\x6c\x20\ +\x70\x6c\x61\x63\x65\x6d\x65\x6e\x74\x73\x20\x64\x6f\x77\x6e\x77\ +\x61\x72\x64\x73\x20\x74\x68\x65\x20\x46\x65\x61\x74\x75\x72\x65\ +\x54\x72\x65\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x3a\x00\x50\x00\x6c\x00\x65\x00\x61\x00\ +\x73\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x20\x00\x33\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x73\x00\x20\x00\x66\x00\x69\x00\x72\x00\x73\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x50\x6c\x65\x61\x73\ +\x65\x20\x73\x65\x6c\x65\x63\x74\x20\x33\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x66\x69\x72\x73\x74\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x10\x00\x50\x00\x72\x00\ +\x65\x00\x73\x00\x73\x00\x20\x00\x4f\x00\x4b\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x5a\ +\x00\x50\x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x20\x00\x79\ +\x00\x65\x00\x74\x00\x20\x00\x43\x00\x6f\x00\x64\x00\x65\x00\x64\ +\x00\x20\x00\x77\x00\x61\x00\x69\x00\x74\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x50\x00\x65\x00\x74\ +\x00\x65\x00\x72\x00\x20\x00\x4c\x00\x69\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2d\x50\x72\x6f\x6a\x65\x63\x74\x69\x6f\x6e\x20\x4e\ +\x6f\x74\x20\x79\x65\x74\x20\x43\x6f\x64\x65\x64\x20\x77\x61\x69\ +\x74\x69\x6e\x67\x20\x66\x6f\x72\x20\x50\x65\x74\x65\x72\x20\x4c\ +\x69\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x28\x00\x52\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x65\ +\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x46\ +\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x14\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\ +\x70\x65\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x42\x00\x52\x00\ +\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x4f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6e\x00\ +\x64\x00\x20\x00\x74\x00\x68\x00\x65\x00\x69\x00\x72\x00\x20\x00\ +\x43\x00\x68\x00\x69\x00\x6c\x00\x64\x00\x72\x00\x65\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x21\x52\x65\x6d\x6f\x76\x65\x20\ +\x4f\x62\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\x74\x68\x65\x69\ +\x72\x20\x43\x68\x69\x6c\x64\x72\x65\x6e\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\xb0\x00\x52\x00\ +\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x73\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\ +\x61\x00\x6c\x00\x6c\x00\x20\x00\x63\x00\x68\x00\x69\x00\x6c\x00\ +\x64\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x61\x00\ +\x74\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\ +\x74\x00\x20\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\ +\x6e\x00\x63\x00\x65\x00\x64\x00\x20\x00\x66\x00\x72\x00\x6f\x00\ +\x6d\x00\x20\x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x58\x52\x65\x6d\x6f\x76\x65\x73\x20\x74\ +\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x20\x61\x6e\x64\x20\x61\x6c\x6c\x20\x63\x68\x69\x6c\ +\x64\x72\x65\x6e\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\x6e\x6f\ +\x74\x20\x72\x65\x66\x65\x72\x65\x6e\x63\x65\x64\x20\x66\x72\x6f\ +\x6d\x20\x6f\x74\x68\x65\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\ +\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x1c\x00\x52\x00\x65\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\ +\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0e\x52\x65\x70\x6c\x61\x63\x65\x20\ +\x4f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x9e\x00\x52\x00\x65\x00\x70\x00\ +\x6c\x00\x61\x00\x63\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\ +\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x65\x00\ +\x61\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x54\x00\x72\x00\ +\x65\x00\x65\x00\x2e\x00\x20\x00\x50\x00\x6c\x00\x65\x00\x61\x00\ +\x73\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x20\x00\x6f\x00\x6c\x00\x64\x00\x2c\x00\x20\x00\x6e\x00\ +\x65\x00\x77\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x70\x00\ +\x61\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x4f\x52\x65\x70\x6c\x61\x63\x65\x20\x61\x6e\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x69\x6e\x20\x74\x68\x65\x20\x46\x65\x61\x74\x75\x72\ +\x65\x20\x54\x72\x65\x65\x2e\x20\x50\x6c\x65\x61\x73\x65\x20\x73\ +\x65\x6c\x65\x63\x74\x20\x6f\x6c\x64\x2c\x20\x6e\x65\x77\x20\x61\ +\x6e\x64\x20\x70\x61\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x30\x00\x52\x00\x75\x00\x6e\x00\x6e\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\ +\x41\x00\x44\x00\x20\x00\x66\x00\x61\x00\x69\x00\x6c\x00\x65\x00\ +\x64\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x52\x75\x6e\ +\x6e\x69\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x66\x61\ +\x69\x6c\x65\x64\x0a\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x28\x00\x55\x00\x6e\x00\x73\x00\x75\ +\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x64\x00\x20\ +\x00\x46\x00\x75\x00\x6e\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x55\x6e\x73\x75\x70\x70\ +\x6f\x72\x74\x65\x64\x20\x46\x75\x6e\x63\x74\x69\x6f\x6e\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x00\x00\x1b\xab\ \x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ -\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ -\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ -\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ -\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ -\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ -\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ -\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x70\x78\ -\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\x70\ -\x78\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x36\x31\ -\x32\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\ -\x2e\x31\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x34\x38\x2e\x33\x2e\ -\x31\x20\x72\x39\x38\x38\x36\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x4f\x70\ -\x65\x6e\x53\x43\x41\x44\x5f\x52\x65\x70\x6c\x61\x63\x65\x4f\x62\ -\x6a\x65\x63\x74\x2e\x73\x76\x67\x22\x3e\x0a\x20\x20\x3c\x64\x65\ -\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\ -\x33\x36\x31\x34\x22\x3e\x0a\x20\x20\x20\x20\x3c\x6d\x61\x72\x6b\ -\x65\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x73\x74\x6f\x63\x6b\x69\x64\x3d\x22\x41\x72\x72\x6f\ -\x77\x31\x4d\x65\x6e\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\ -\x72\x69\x65\x6e\x74\x3d\x22\x61\x75\x74\x6f\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x72\x65\x66\x59\x3d\x22\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x72\x65\x66\x58\x3d\x22\x30\x2e\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x41\x72\x72\x6f\ -\x77\x31\x4d\x65\x6e\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\ -\x69\x73\x69\x62\x6c\x65\x3b\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x33\x35\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x30\x2e\x30\x2c\x30\ -\x2e\x30\x20\x4c\x20\x35\x2e\x30\x2c\x2d\x35\x2e\x30\x20\x4c\x20\ -\x2d\x31\x32\x2e\x35\x2c\x30\x2e\x30\x20\x4c\x20\x35\x2e\x30\x2c\ -\x35\x2e\x30\x20\x4c\x20\x30\x2e\x30\x2c\x30\x2e\x30\x20\x7a\x20\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\ -\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\ -\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ -\x31\x2e\x30\x70\x74\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x73\x63\x61\x6c\ -\x65\x28\x30\x2e\x34\x29\x20\x72\x6f\x74\x61\x74\x65\x28\x31\x38\ -\x30\x29\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x65\x28\x31\x30\x2c\ -\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6d\x61\x72\ -\x6b\x65\x72\x3e\x0a\x20\x20\x20\x20\x3c\x6d\x61\x72\x6b\x65\x72\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x73\x74\x6f\x63\x6b\x69\x64\x3d\x22\x41\x72\x72\x6f\x77\x31\ -\x4d\x73\x74\x61\x72\x74\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\ -\x72\x69\x65\x6e\x74\x3d\x22\x61\x75\x74\x6f\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x72\x65\x66\x59\x3d\x22\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x72\x65\x66\x58\x3d\x22\x30\x2e\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x41\x72\x72\x6f\ -\x77\x31\x4d\x73\x74\x61\x72\x74\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x6f\x76\x65\x72\x66\x6c\x6f\x77\ -\x3a\x76\x69\x73\x69\x62\x6c\x65\x22\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x33\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x30\x2e\x30\x2c\ -\x30\x2e\x30\x20\x4c\x20\x35\x2e\x30\x2c\x2d\x35\x2e\x30\x20\x4c\ -\x20\x2d\x31\x32\x2e\x35\x2c\x30\x2e\x30\x20\x4c\x20\x35\x2e\x30\ -\x2c\x35\x2e\x30\x20\x4c\x20\x30\x2e\x30\x2c\x30\x2e\x30\x20\x7a\ -\x20\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\ -\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\ -\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ -\x3a\x31\x2e\x30\x70\x74\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x73\x63\x61\x6c\ -\x65\x28\x30\x2e\x34\x29\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x65\ -\x28\x31\x30\x2c\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ -\x2f\x6d\x61\x72\x6b\x65\x72\x3e\x0a\x20\x20\x20\x20\x3c\x6d\x61\ -\x72\x6b\x65\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x73\x74\x6f\x63\x6b\x69\x64\x3d\x22\x41\x72\ -\x72\x6f\x77\x31\x4c\x73\x74\x61\x72\x74\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x6f\x72\x69\x65\x6e\x74\x3d\x22\x61\x75\x74\x6f\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x65\x66\x59\x3d\x22\x30\x2e\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x65\x66\x58\x3d\x22\ -\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x41\x72\x72\x6f\x77\x31\x4c\x73\x74\x61\x72\x74\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x6f\x76\x65\x72\ -\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x32\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\ -\x30\x2e\x30\x2c\x30\x2e\x30\x20\x4c\x20\x35\x2e\x30\x2c\x2d\x35\ -\x2e\x30\x20\x4c\x20\x2d\x31\x32\x2e\x35\x2c\x30\x2e\x30\x20\x4c\ -\x20\x35\x2e\x30\x2c\x35\x2e\x30\x20\x4c\x20\x30\x2e\x30\x2c\x30\ -\x2e\x30\x20\x7a\x20\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\ -\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ -\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3a\x31\x2e\x30\x70\x74\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ -\x73\x63\x61\x6c\x65\x28\x30\x2e\x38\x29\x20\x74\x72\x61\x6e\x73\ -\x6c\x61\x74\x65\x28\x31\x32\x2e\x35\x2c\x30\x29\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x3c\x2f\x6d\x61\x72\x6b\x65\x72\x3e\x0a\x20\ -\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\ -\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x33\x32\x20\x3a\x20\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\ -\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x36\x34\x20\ -\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\ -\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x33\x32\x20\x3a\x20\x32\ -\x31\x2e\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\ -\x74\x69\x76\x65\x33\x36\x32\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ -\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x35\x38\ -\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\ -\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\ -\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\ -\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\ -\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ -\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\ -\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x36\ -\x39\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\ -\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\ -\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\ -\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ -\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\ -\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\ -\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\ -\x2d\x36\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ -\x6f\x70\x33\x31\x34\x36\x2d\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ -\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\ -\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ -\x70\x33\x31\x34\x38\x2d\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ -\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ -\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x33\x37\x30\x31\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x30\x33\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\ -\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ -\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x30\x35\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ -\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\ -\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ -\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\ -\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\ -\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x33\x31\x34\x34\x2d\x36\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x33\x36\x38\x38\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\ -\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\ -\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ -\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\ -\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\ -\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\ -\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\ -\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ -\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ -\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x30\ -\x38\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ -\x70\x33\x37\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ -\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\ -\x31\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ -\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\ -\x74\x69\x76\x65\x33\x38\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\ -\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\ -\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\ -\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\ -\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x33\x38\x36\x34\x2d\x30\x2d\x30\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x36\x2d\x35\ -\x2d\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ -\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ -\x6f\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x38\ -\x2d\x37\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ -\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ -\x6f\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\ -\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x33\x33\x37\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x33\x37\x39\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\ -\x61\x61\x30\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ -\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x73\x74\x6f\x70\x33\x33\x38\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x61\x66\x66\ -\x32\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\ -\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x2d\x30\ -\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ -\x33\x38\x36\x36\x2d\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ -\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\ -\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ -\x33\x38\x36\x38\x2d\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ -\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\ -\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\ -\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\ -\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x39\x30\x32\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ -\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\ -\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\ -\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\ -\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\ -\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\ -\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\ -\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ -\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\ -\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x35\x30\x34\x38\x22\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ -\x6f\x6c\x6f\x72\x3a\x62\x6c\x61\x63\x6b\x3b\x73\x74\x6f\x70\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ -\x70\x35\x30\x35\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x73\x74\x6f\x70\x35\x30\x35\x36\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\ -\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\x6c\ -\x61\x63\x6b\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ -\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\ -\x6c\x61\x63\x6b\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ -\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x30\x35\x32\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\ -\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x34\x31\x2d\x30\x2d\x33\x22\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\ -\x38\x34\x33\x2d\x31\x2d\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ -\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\ -\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ -\x70\x33\x38\x34\x35\x2d\x30\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ -\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\ -\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\ -\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\ -\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\ -\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\ -\x22\x31\x31\x34\x2e\x35\x36\x38\x34\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x66\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\x30\x39\x39\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x35\x2e\x32\x35\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x31\x31\x34\ -\x2e\x35\x36\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\ -\x3d\x22\x32\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x61\x69\x67\x72\x64\x32\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\ -\x35\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ -\x23\x46\x30\x46\x30\x46\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\ -\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ -\x39\x61\x39\x61\x39\x61\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ -\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x3c\x2f\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\ -\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x34\x2e\x35\x36\x37\ -\x39\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\ -\x32\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x72\x3d\x22\x35\x2e\x32\x35\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x63\x79\x3d\x22\x36\x34\x2e\x35\x36\x37\x39\x30\x32\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x30\x2e\ -\x38\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x61\x69\x67\x72\x64\x33\x22\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x37\x33\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x46\x30\x46\x30\ -\x46\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ -\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x37\x35\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ -\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x39\x61\x39\x61\x39\ -\x61\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\ -\x30\x30\x30\x30\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\ -\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\ -\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ -\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x31\x35\x36\ -\x36\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\ -\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\ -\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x36\x36\x34\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x38\x66\x38\ -\x66\x38\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\ -\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x36\x36\x36\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\ -\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x72\x3d\x22\x38\x36\x2e\x37\x30\x38\x34\x35\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x33\x35\x2e\x37\ -\x33\x36\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\ -\x3d\x22\x33\x33\x2e\x39\x36\x36\x36\x37\x39\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x63\x79\x3d\x22\x33\x35\x2e\x37\x33\x36\x39\x31\ -\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x33\x33\ -\x2e\x39\x36\x36\x36\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\ -\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x36\x30\x34\ -\x39\x32\x39\x37\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x34\x31\x31\x33\ -\x32\x2c\x2d\x35\x32\x2e\x31\x34\x34\x32\x34\x39\x2c\x2d\x37\x30\ -\x32\x2e\x33\x33\x31\x35\x38\x29\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ -\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\ -\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x34\x35\x32\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\ -\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x32\x35\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ -\x6c\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\ -\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x32\x35\x39\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ -\x6c\x6f\x72\x3a\x23\x66\x61\x66\x61\x66\x61\x3b\x73\x74\x6f\x70\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\ -\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ -\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ -\x6f\x70\x32\x36\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ -\x3a\x23\x62\x62\x62\x62\x62\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ -\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\ -\x36\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\ -\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x37\x2e\x37\x35\ -\x31\x37\x31\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\ -\x22\x33\x2e\x37\x35\x36\x31\x32\x38\x35\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x66\x78\x3d\x22\x38\x2e\x38\x32\x34\x34\x31\x39\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x33\x2e\x37\x35\ -\x36\x31\x32\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\ -\x3d\x22\x38\x2e\x38\x32\x34\x34\x31\x39\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\ -\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\ -\x36\x38\x32\x37\x32\x39\x37\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x33\ -\x32\x37\x36\x37\x2c\x2d\x34\x38\x2e\x37\x39\x30\x36\x39\x39\x2c\ -\x2d\x37\x30\x31\x2e\x36\x38\x35\x31\x33\x29\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\ -\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\ -\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x34\x35\x34\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\ -\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x32\x36\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\ -\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x36\x39\x22\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ -\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x61\x33\x61\x33\x61\x33\x3b\x73\ -\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\ -\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\ -\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x73\x74\x6f\x70\x32\x37\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ -\x6c\x6f\x72\x3a\x23\x34\x63\x34\x63\x34\x63\x3b\x73\x74\x6f\x70\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\ -\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ -\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ -\x6f\x70\x32\x37\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\ -\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\ -\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ -\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\ -\x34\x39\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\ -\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\ -\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\ -\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\ -\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\ -\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ -\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x30\ -\x39\x35\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x35\ -\x62\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ -\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x30\x39\x37\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ -\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x63\x31\x65\x33\x66\ -\x37\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ -\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x30\x39\x39\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\ -\x70\x65\x63\x74\x69\x76\x65\x35\x30\x32\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\ -\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\ -\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\ -\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\ -\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\ -\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\ -\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\ -\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\ -\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\ -\x73\x70\x65\x63\x74\x69\x76\x65\x35\x30\x37\x36\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ -\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\ -\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\ -\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\ -\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\ -\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\ -\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\ -\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\ -\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ -\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\ -\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\ -\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x34\x32\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\ -\x32\x35\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\ -\x33\x39\x34\x2e\x31\x35\x37\x38\x34\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x79\x31\x3d\x22\x31\x38\x35\x2e\x31\x33\x30\x34\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x34\x33\x34\x2e\x37\ -\x33\x39\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\ -\x22\x31\x34\x30\x2e\x32\x32\x37\x33\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\ -\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\ -\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ -\x69\x78\x28\x30\x2e\x39\x34\x32\x33\x31\x38\x32\x36\x2c\x30\x2c\ -\x30\x2c\x30\x2e\x39\x34\x32\x33\x31\x38\x32\x36\x2c\x32\x33\x2e\ -\x37\x32\x37\x35\x34\x39\x2c\x38\x2e\x38\x32\x36\x32\x35\x33\x36\ -\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\ -\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x34\x32\x34\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ -\x3a\x23\x32\x65\x38\x32\x30\x37\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\ -\x32\x34\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ -\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ -\x35\x32\x66\x66\x30\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x32\x35\ -\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\ -\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x31\x34\x30\x2e\x32\ -\x32\x37\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\ -\x22\x34\x33\x34\x2e\x37\x33\x39\x34\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x79\x31\x3d\x22\x31\x38\x35\x2e\x31\x33\x30\x34\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x33\x39\x34\x2e\ -\x31\x35\x37\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ -\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ -\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x34\x32\x33\x31\x38\ -\x32\x36\x2c\x30\x2c\x30\x2c\x30\x2e\x39\x34\x32\x33\x31\x38\x32\ -\x36\x2c\x32\x33\x2e\x37\x32\x37\x35\x34\x39\x2c\x38\x2e\x38\x32\ -\x36\x32\x35\x33\x36\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ -\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ -\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x35\x30\x38\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\ -\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\ -\x32\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\ -\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\ -\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\ -\x72\x73\x70\x65\x63\x74\x69\x76\x65\x35\x31\x34\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ -\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\ -\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\ -\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\ -\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\ -\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\ -\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\ -\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ -\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x64\x65\ -\x66\x73\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\ -\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\ -\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\ -\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\ -\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\ -\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\ -\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\ -\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x7a\x6f\x6f\x6d\x3d\x22\x35\x2e\x35\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x31\x33\ -\x2e\x34\x37\x33\x38\x30\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x33\x32\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\ -\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\ -\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\ -\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\ -\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\ -\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\ -\x69\x64\x74\x68\x3d\x22\x31\x32\x38\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x39\x36\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ -\x6f\x77\x2d\x78\x3d\x22\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\ -\x3d\x22\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\ -\x69\x7a\x65\x64\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x6d\ -\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x33\x36\x31\x37\x22\x3e\x0a\ -\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\ -\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ -\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\ -\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\ -\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\ -\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\ -\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\ -\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ -\x63\x3a\x74\x69\x74\x6c\x65\x3e\x3c\x2f\x64\x63\x3a\x74\x69\x74\ -\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\ -\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\ -\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\ -\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\ -\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\ -\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ -\x74\x72\x61\x6e\x73\x6c\x61\x74\x65\x28\x2d\x32\x35\x39\x2e\x38\ -\x35\x32\x30\x37\x2c\x2d\x31\x33\x32\x2e\x37\x38\x33\x34\x39\x29\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x34\x36\ -\x37\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x72\x65\x63\x74\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x37\x39\ -\x2e\x35\x37\x31\x34\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x78\x3d\x22\x32\x38\x30\x2e\x37\x31\x34\x32\x39\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x39\x2e\x32\x37\x39\x32\x32\x31\x35\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x34\x2e\x36\x38\ -\x38\x33\x31\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x72\x65\x63\x74\x34\x32\x35\x38\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\ -\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x3a\ -\x23\x66\x66\x66\x66\x66\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\ -\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ -\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3a\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ -\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\ -\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ -\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\ -\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\ -\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\ -\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\ -\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\ -\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ -\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x35\x31\x2e\x35\x37\x31\x34\ -\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x32\ -\x38\x30\x2e\x37\x31\x34\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x39\x2e\x36\x34\x32\ -\x38\x35\x37\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\ -\x69\x64\x74\x68\x3d\x22\x32\x34\x2e\x36\x38\x38\x33\x31\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\ -\x63\x74\x34\x32\x35\x38\x2d\x31\x2d\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\ -\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x23\ -\x30\x30\x34\x32\x66\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\ -\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ -\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3a\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ -\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ -\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\ -\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\ -\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\ -\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\ -\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\ -\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\ -\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x72\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x72\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x79\x3d\x22\x31\x36\x35\x2e\x33\x38\x39\x36\x32\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x32\x38\ -\x35\x2e\x38\x30\x35\x32\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x39\x2e\x36\x34\x32\x38\ -\x35\x37\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\ -\x64\x74\x68\x3d\x22\x32\x34\x2e\x33\x32\x34\x36\x37\x35\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\ -\x74\x34\x32\x35\x38\x2d\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\ -\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x23\x39\x66\x62\ -\x37\x66\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\ -\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\ -\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ -\x3a\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ -\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ -\x6e\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\ -\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ -\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\ -\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\ -\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\ -\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\ -\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\ -\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\ -\x75\x6d\x75\x6c\x61\x74\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x72\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x72\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x79\x3d\x22\x31\x33\x37\x2e\x35\x37\x31\x34\x34\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x32\x36\x36\x2e\x37\ -\x31\x34\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x68\ -\x65\x69\x67\x68\x74\x3d\x22\x39\x2e\x36\x34\x32\x38\x35\x37\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\ -\x3d\x22\x33\x32\x2e\x31\x34\x32\x38\x35\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x34\x32\ -\x35\x38\x2d\x31\x2d\x37\x2d\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\ -\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x23\x66\x66\ -\x66\x66\x66\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\ -\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\ -\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3a\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ -\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ -\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ -\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\ -\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\ -\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\ -\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\ -\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\ -\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\ -\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\ -\x79\x70\x65\x73\x3d\x22\x63\x63\x63\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x35\x30\x39\x38\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\ -\x32\x37\x31\x2e\x30\x37\x31\x34\x33\x2c\x32\x30\x37\x2e\x34\x32\ -\x38\x35\x37\x20\x30\x2c\x33\x37\x2e\x31\x34\x32\x38\x36\x20\x39\ -\x2e\x32\x38\x35\x37\x31\x2c\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\ -\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\ -\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ -\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ -\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\ -\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x74\x72\x61\x6e\ -\x73\x6c\x61\x74\x65\x28\x30\x2c\x2d\x36\x30\x29\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ -\x22\x74\x72\x61\x6e\x73\x6c\x61\x74\x65\x28\x30\x2c\x2d\x36\x30\ -\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x70\x61\x74\x68\x35\x31\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x38\x30\x2e\x38\x39\x32\x38\ -\x36\x2c\x32\x31\x36\x2e\x37\x31\x34\x32\x39\x20\x2d\x39\x2e\x36\ -\x34\x32\x38\x36\x2c\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\ -\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\ -\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\ -\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ -\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ -\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\ -\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ -\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ -\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\ -\x20\x32\x37\x35\x2e\x36\x31\x36\x38\x38\x2c\x31\x35\x36\x2e\x31\ -\x35\x35\x38\x34\x20\x30\x2c\x31\x34\x2e\x32\x33\x33\x37\x37\x20\ -\x39\x2e\x32\x38\x35\x37\x31\x2c\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\x35\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\ -\x63\x63\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\ -\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x3c\x70\ -\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\ -\x6b\x65\x3a\x23\x64\x33\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x33\x39\x39\x39\x39\x39\ -\x39\x39\x39\x39\x39\x39\x39\x39\x39\x39\x30\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\ -\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ -\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x35\x33\ -\x2e\x30\x39\x30\x39\x30\x39\x2c\x34\x35\x2e\x30\x39\x30\x39\x30\ -\x39\x20\x32\x34\x2e\x34\x35\x34\x35\x34\x35\x2c\x31\x36\x2e\x34\ -\x35\x34\x35\x34\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x70\x61\x74\x68\x33\x30\x36\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\ -\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\ -\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\ -\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\x36\x35\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x35\x33\x2e\x30\x39\x30\ -\x39\x30\x39\x2c\x31\x36\x2e\x34\x35\x34\x35\x34\x35\x20\x32\x34\ -\x2e\x34\x35\x34\x35\x34\x35\x2c\x34\x35\x2e\x30\x39\x30\x39\x30\ -\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x23\x64\x33\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x33\x39\x39\x39\x39\x39\x39\ -\x39\x39\x39\x39\x39\x39\x39\x39\x39\x30\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\ -\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ -\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\ -\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\ -\x3e\x0a\ -\x00\x00\x35\xe0\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x01\xa0\x00\x00\x00\xb0\x00\x00\x0f\xc8\x00\x00\x07\x3d\ +\x00\x00\x0f\x3d\x00\x39\xdf\x33\x00\x00\x01\xa0\x00\x72\x97\x49\ +\x00\x00\x0f\x78\x01\x0c\x64\xae\x00\x00\x10\x38\x01\x38\xb0\x83\ +\x00\x00\x11\xb0\x01\x40\x42\x85\x00\x00\x0b\x1b\x02\x1f\xd9\x48\ +\x00\x00\x04\x16\x02\x7b\x37\xc4\x00\x00\x14\x97\x02\xbc\x05\x8e\ +\x00\x00\x0c\xd3\x02\xbe\x05\x8e\x00\x00\x00\xc1\x03\x8c\x88\xc1\ +\x00\x00\x0d\x73\x05\x08\x5c\x93\x00\x00\x03\x17\x05\x16\xa3\x95\ +\x00\x00\x13\x2f\x05\x66\x9a\x34\x00\x00\x08\x05\x05\x98\x15\x8e\ +\x00\x00\x0d\x26\x05\xcc\x9a\xd9\x00\x00\x0c\x83\x05\xe4\x1f\xa9\ +\x00\x00\x10\x9a\x05\xfb\x21\x0b\x00\x00\x06\x7d\x06\xe4\x0a\x14\ +\x00\x00\x18\x29\x06\xee\xa0\xc5\x00\x00\x0a\x09\x07\x5d\xec\x93\ +\x00\x00\x12\xd0\x07\x5d\xee\x93\x00\x00\x12\x71\x07\xda\x68\xe7\ +\x00\x00\x0b\x9e\x07\xe4\xd0\x65\x00\x00\x0d\xbd\x08\x10\xb3\x89\ +\x00\x00\x05\x77\x08\x37\x4e\x99\x00\x00\x15\x40\x08\x4d\xc0\x2e\ +\x00\x00\x19\x98\x08\x5d\x45\x73\x00\x00\x01\x14\x08\xa5\x45\x08\ +\x00\x00\x06\x21\x08\xca\x52\x4b\x00\x00\x15\x0b\x08\xca\x72\x4b\ +\x00\x00\x10\x00\x08\xe2\x7f\xe5\x00\x00\x13\xed\x09\x2b\x77\x54\ +\x00\x00\x17\xe2\x09\xc0\x82\xb5\x00\x00\x06\xd9\x0a\x22\x8d\xb2\ +\x00\x00\x00\x00\x0a\x2b\x47\x64\x00\x00\x0e\xba\x0a\x96\xcd\x84\ +\x00\x00\x0e\x31\x0a\xd3\x55\x94\x00\x00\x07\xa3\x0a\xf8\x55\x94\ +\x00\x00\x07\x41\x0b\x61\x1d\x4e\x00\x00\x16\x3d\x0d\x2c\x1d\x28\ +\x00\x00\x04\x6f\x0d\xaa\x21\x43\x00\x00\x13\x9d\x0d\xdc\x00\x68\ +\x00\x00\x05\x18\x0e\x02\x4e\xea\x00\x00\x19\x33\x0e\x75\xf9\x03\ +\x00\x00\x0a\xa4\x0e\x80\x99\x15\x00\x00\x15\xe4\x0e\xc6\x00\x19\ +\x00\x00\x0c\x2a\x0e\xcc\x78\xf1\x00\x00\x04\xbf\x0f\x18\x51\xc5\ +\x00\x00\x11\xf1\x0f\x68\xe5\xc7\x00\x00\x02\x11\x0f\xd3\x1f\xf3\ +\x00\x00\x16\xbd\x69\x00\x00\x19\xf1\x03\x00\x00\x00\x5e\x00\x44\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x3a\x00\x20\x00\x52\x00\x65\ +\x00\x67\x00\x69\x00\x73\x00\x74\x00\x72\x00\x65\x00\x72\x00\x61\ +\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x74\x00\x79\x00\x70\x00\x20\ +\x00\x74\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x70\x00\x72\x00\x6f\ +\x00\x74\x00\x6f\x00\x74\x00\x79\x00\x70\x00\x20\x00\x69\x00\x6d\ +\x00\x70\x00\x6f\x00\x72\x00\x74\x00\xf6\x00\x72\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x2e\x44\x65\x62\x75\x67\x3a\x20\x52\x65\x67\ +\x69\x73\x74\x65\x72\x20\x66\x69\x6c\x65\x74\x79\x70\x65\x20\x74\ +\x6f\x20\x70\x72\x6f\x74\x6f\x74\x79\x70\x65\x20\x69\x6d\x70\x6f\ +\x72\x74\x65\x72\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\ +\x44\x00\x65\x00\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x44\x65\x66\ +\x6c\x65\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x3e\x00\x41\x00\x6c\x00\x6c\x00\x6d\x00\xe4\x00\x6e\x00\x6e\ +\x00\x61\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\ +\x00\x41\x00\x44\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\xe4\ +\x00\x6c\x00\x6c\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x61\x00\x72\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x65\x6e\x65\x72\x61\ +\x6c\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x41\ +\x00\x6c\x00\x6c\x00\x6d\x00\xe4\x00\x6e\x00\x6e\x00\x61\x00\x20\ +\x00\x69\x00\x6e\x00\x73\x00\x74\x00\xe4\x00\x6c\x00\x6c\x00\x6e\ +\x00\x69\x00\x6e\x00\x67\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\ +\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x8a\x00\ +\x4f\x00\x6d\x00\x20\x00\x64\x00\x65\x00\x74\x00\x74\x00\x61\x00\ +\x20\x00\xe4\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\ +\x65\x00\x72\x00\x61\x00\x74\x00\x2c\x00\x20\x00\x73\x00\xe5\x00\ +\x20\x00\x6b\x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x72\x00\x20\x00\ +\x66\x00\xf6\x00\x72\x00\x65\x00\x6d\x00\xe5\x00\x6c\x00\x20\x00\ +\x61\x00\x74\x00\x74\x00\x20\x00\x68\x00\xe4\x00\x76\x00\x64\x00\ +\x61\x00\x20\x00\x73\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x62\x00\ +\x61\x00\x72\x00\x6e\x00\x20\x00\x69\x00\x20\x00\x74\x00\x72\x00\ +\xe4\x00\x64\x00\x76\x00\x79\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x47\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\ +\x65\x63\x6b\x65\x64\x2c\x20\x46\x65\x61\x74\x75\x72\x65\x73\x20\ +\x77\x69\x6c\x6c\x20\x63\x6c\x61\x69\x6d\x20\x74\x68\x69\x65\x72\ +\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\x69\x6e\x20\x74\x68\x65\ +\x20\x74\x72\x65\x65\x20\x76\x69\x65\x77\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x92\x00\x4f\x00\x6d\x00\x20\x00\x64\x00\x65\x00\ +\x74\x00\x74\x00\x61\x00\x20\x00\xe4\x00\x72\x00\x20\x00\x6d\x00\ +\x61\x00\x72\x00\x6b\x00\x65\x00\x72\x00\x61\x00\x74\x00\x2c\x00\ +\x20\x00\x73\x00\xe5\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x6d\x00\ +\x65\x00\x72\x00\x20\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\x6d\x00\ +\x61\x00\x74\x00\x72\x00\x69\x00\x78\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x74\x00\x20\x00\x61\x00\ +\x74\x00\x74\x00\x20\x00\x76\x00\x61\x00\x72\x00\x61\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\ +\x69\x00\x73\x00\x6b\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x38\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x4d\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\ +\x4f\x62\x6a\x65\x63\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x50\ +\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x18\x00\x4c\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x20\ +\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x4c\x6f\x63\x61\x6c\x20\x4c\x65\x6e\x67\ +\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\x4d\x00\ +\x61\x00\x78\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x4d\x61\x78\x4c\x65\x6e\x67\ +\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x4d\x00\ +\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x41\x00\ +\x72\x00\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x4d\ +\x61\x78\x69\x6d\x75\x6d\x20\x41\x72\x65\x61\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x1c\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\ +\x00\x75\x00\x6d\x00\x20\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\ +\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x4d\x61\x78\x69\ +\x6d\x75\x6d\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x4c\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\ +\x61\x00\x6c\x00\x74\x00\x20\x00\x61\x00\x6e\x00\x74\x00\x61\x00\ +\x6c\x00\x20\x00\x79\x00\x74\x00\x6f\x00\x72\x00\x20\x00\x66\x00\ +\xf6\x00\x72\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\ +\x6f\x00\x6e\x00\x65\x00\x72\x00\x20\x00\x28\x00\x66\x00\x6e\x00\ +\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x4d\x61\x78\x69\x6d\ +\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x66\x61\x63\ +\x65\x73\x20\x66\x6f\x72\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x73\x20\ +\x28\x66\x6e\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1a\x00\ +\x4d\x00\x61\x00\x78\x00\x69\x00\x75\x00\x6d\x00\x20\x00\x4c\x00\ +\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x4d\x61\x78\x69\x75\x6d\x20\x4c\x65\x6e\x67\x74\x68\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1a\x00\x4d\x00\x65\x00\ +\x73\x00\x68\x00\x20\x00\x66\x00\x61\x00\x6c\x00\x6c\x00\x62\x00\ +\x61\x00\x63\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\ +\x65\x73\x68\x20\x66\x61\x6c\x6c\x62\x61\x63\x6b\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\ +\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x67\x00\x72\x00\x61\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x13\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\ +\x61\x62\x6c\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1e\x00\ +\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\ +\x20\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\ +\x65\x78\x70\x6f\x72\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x1e\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\ +\x44\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x20\x69\x6d\x70\x6f\x72\x74\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x01\x32\x00\x44\x00\x65\x00\x74\x00\x20\x00\x6d\x00\x61\x00\ +\x78\x00\x69\x00\x6d\x00\x61\x00\x6c\x00\x61\x00\x20\x00\x61\x00\ +\x6e\x00\x74\x00\x61\x00\x6c\x00\x65\x00\x74\x00\x20\x00\x79\x00\ +\x74\x00\x6f\x00\x72\x00\x20\x00\x70\x00\xe5\x00\x20\x00\x65\x00\ +\x6e\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\ +\x6e\x00\x2c\x00\x20\x00\x70\x00\x72\x00\x69\x00\x73\x00\x6d\x00\ +\x61\x00\x20\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\x00\ +\x73\x00\x74\x00\x79\x00\x6d\x00\x70\x00\x61\x00\x64\x00\x20\x00\ +\x6b\x00\x6f\x00\x6e\x00\x2e\x00\x20\x00\x4f\x00\x6d\x00\x20\x00\ +\x66\x00\x6e\x00\x20\x00\xe4\x00\x72\x00\x20\x00\x68\x00\xf6\x00\ +\x67\x00\x72\x00\x65\x00\x20\x00\xe4\x00\x6e\x00\x20\x00\x64\x00\ +\x65\x00\x74\x00\x74\x00\x61\x00\x20\x00\x76\x00\xe4\x00\x72\x00\ +\x64\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x73\x00\x65\x00\x73\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\ +\x74\x00\x20\x00\x76\x00\x61\x00\x72\x00\x61\x00\x20\x00\x65\x00\ +\x74\x00\x74\x00\x20\x00\x63\x00\x69\x00\x72\x00\x6b\x00\x75\x00\ +\x6c\x00\xe4\x00\x72\x00\x2e\x00\x20\x00\x41\x00\x6e\x00\x67\x00\ +\x65\x00\x20\x00\x30\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\ +\x69\x00\x6e\x00\x67\x00\x65\x00\x6e\x00\x20\x00\x67\x00\x72\x00\ +\xe4\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x9d\x54\ +\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\ +\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x6f\x66\x20\x61\x20\ +\x70\x6f\x6c\x79\x67\x6f\x6e\x2c\x20\x70\x72\x69\x73\x6d\x20\x6f\ +\x72\x20\x66\x72\x75\x73\x74\x75\x6d\x2e\x20\x49\x66\x20\x66\x6e\ +\x20\x69\x73\x20\x67\x72\x65\x61\x74\x65\x72\x20\x74\x68\x61\x6e\ +\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x74\x68\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x69\x73\x20\x63\x6f\x6e\x73\x69\x64\ +\x65\x72\x65\x64\x20\x74\x6f\x20\x62\x65\x20\x61\x20\x63\x69\x72\ +\x63\x75\x6c\x61\x72\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\x30\x20\ +\x66\x6f\x72\x20\x6e\x6f\x20\x6c\x69\x6d\x69\x74\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x42\x00\x53\x00\xf6\x00\x6b\x00\x76\x00\ +\xe4\x00\x67\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\ +\x41\x00\x44\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x67\x00\x72\x00\ +\x61\x00\x6d\x00\x6d\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x24\x54\x68\x65\x20\x70\x61\x74\x68\x20\x74\x6f\x20\x74\ +\x68\x65\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\ +\x75\x74\x65\x61\x62\x6c\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x2c\x00\x54\x00\x72\x00\x69\x00\x61\x00\x6e\x00\x67\x00\x75\ +\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x73\ +\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x16\x54\x72\x69\x61\x6e\x67\x75\x6c\ +\x61\x74\x69\x6f\x6e\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x38\x00\x41\x00\x6e\x00\x76\x00\ +\xe4\x00\x6e\x00\x64\x00\x20\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\ +\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\x78\x00\x20\x00\x66\x00\ +\x75\x00\x6e\x00\x6b\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x55\x73\x65\x20\x4d\ +\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\x46\x65\x61\x74\x75\x72\ +\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3a\x00\x41\x00\x6e\ +\x00\x76\x00\xe4\x00\x6e\x00\x64\x00\x20\x00\x56\x00\x69\x00\x65\ +\x00\x77\x00\x50\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x64\x00\x65\ +\x00\x72\x00\x20\x00\x69\x00\x20\x00\x74\x00\x72\x00\xe4\x00\x64\ +\x00\x76\x00\x79\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\ +\x55\x73\x65\x20\x56\x69\x65\x77\x50\x72\x6f\x76\x69\x64\x65\x72\ +\x20\x69\x6e\x20\x54\x72\x65\x65\x20\x56\x69\x65\x77\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x18\x00\x61\x00\x6e\x00\x67\x00\x75\ +\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x28\x00\x66\x00\x61\x00\x29\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x61\x6e\x67\x75\x6c\x61\ +\x72\x20\x28\x66\x61\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x12\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x78\x00\x69\x00\ +\x74\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x63\x6f\x6e\ +\x76\x65\x78\x69\x74\x79\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x14\x00\x64\x00\x65\x00\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x64\ +\x65\x66\x6c\x65\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x10\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x4c\ +\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x6c\x6f\ +\x63\x61\x6c\x4c\x65\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x0e\x00\x6d\x00\x61\x00\x78\x00\x41\x00\x72\x00\x65\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x07\x6d\x61\x78\x41\x72\x65\x61\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2a\x00\x6d\x00\x61\x00\ +\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x66\x00\x72\x00\ +\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x73\x00\ +\x69\x00\x7a\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x6d\ +\x61\x78\x69\x6d\x75\x6d\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x20\ +\x73\x69\x7a\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x38\x00\ +\x6d\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\ +\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x20\x00\x61\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1c\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x61\x6e\x67\x6c\x65\x20\x66\ +\x6f\x72\x20\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x34\x00\x6d\x00\x69\x00\x6e\x00\x69\ +\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x20\x00\x66\x00\x72\ +\x00\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1a\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x73\x69\ +\x7a\x65\x20\x6f\x66\x20\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x04\x00\x6d\x00\x6d\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x02\x6d\x6d\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x12\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\ +\x00\x28\x00\x66\x00\x73\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x09\x73\x69\x7a\x65\x20\x28\x66\x73\x29\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x02\x00\xb0\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x01\xb0\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\x20\ +\x00\x50\x00\x72\x00\x65\x00\x73\x00\x73\x00\x20\x00\x4f\x00\x4b\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x20\x50\x72\x65\x73\x73\ +\x20\x4f\x4b\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x2e\x00\x41\x00\x64\x00\x64\x00\x20\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\ +\x00\x45\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\ +\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x41\x64\ +\x64\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x45\x6c\x65\x6d\x65\ +\x6e\x74\x2e\x2e\x2e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\xa6\x00\x41\x00\x64\x00\x64\x00\x20\ +\x00\x61\x00\x6e\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\ +\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x62\x00\x79\x00\x20\x00\x65\ +\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x63\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x61\x00\x6e\ +\x00\x64\x00\x20\x00\x65\x00\x78\x00\x65\x00\x63\x00\x75\x00\x74\ +\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x62\x00\x69\x00\x6e\x00\x61\x00\x72\x00\x79\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x53\x41\x64\x64\x20\x61\x6e\x20\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\ +\x62\x79\x20\x65\x6e\x74\x65\x72\x69\x6e\x67\x20\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x20\x63\x6f\x64\x65\x20\x61\x6e\x64\x20\x65\x78\ +\x65\x63\x75\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x20\x62\x69\x6e\x61\x72\x79\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x43\ +\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x53\x00\x68\x00\x61\ +\x00\x70\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x43\x6f\x6c\x6f\x72\x20\x53\x68\x61\x70\x65\x73\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x42\x00\ +\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x53\x00\x68\x00\ +\x61\x00\x70\x00\x65\x00\x73\x00\x20\x00\x62\x00\x79\x00\x20\x00\ +\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x69\x00\x74\x00\x79\x00\ +\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x74\x00\x79\x00\x70\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x43\x6f\x6c\x6f\x72\ +\x20\x53\x68\x61\x70\x65\x73\x20\x62\x79\x20\x76\x61\x6c\x69\x64\ +\x69\x74\x79\x20\x61\x6e\x64\x20\x74\x79\x70\x65\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\ +\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x20\x00\ +\x45\x00\x64\x00\x67\x00\x65\x00\x73\x00\x20\x00\x54\x00\x6f\x00\ +\x20\x00\x46\x00\x61\x00\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\x67\ +\x65\x73\x20\x54\x6f\x20\x46\x61\x63\x65\x73\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x43\ +\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x20\x00\x45\ +\x00\x64\x00\x67\x00\x65\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\ +\x00\x46\x00\x61\x00\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\x67\x65\ +\x73\x20\x74\x6f\x20\x46\x61\x63\x65\x73\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x36\x00\x43\x00\ +\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x52\x00\x65\x00\ +\x66\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x53\x00\x68\x00\x61\x00\ +\x70\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\ +\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x43\x72\x65\ +\x61\x74\x65\x20\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\ +\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x22\x00\x45\x00\x78\x00\ +\x70\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x50\x00\x6c\x00\x61\x00\ +\x63\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x11\x45\x78\x70\x61\x6e\x64\x20\x50\x6c\ +\x61\x63\x65\x6d\x65\x6e\x74\x73\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x5e\x00\x45\x00\x78\x00\ +\x70\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\ +\x20\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x73\x00\x20\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\ +\x77\x00\x61\x00\x72\x00\x64\x00\x73\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\ +\x65\x00\x54\x00\x72\x00\x65\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2f\x45\x78\x70\x61\x6e\x64\x20\x61\x6c\x6c\x20\x70\x6c\ +\x61\x63\x65\x6d\x65\x6e\x74\x73\x20\x64\x6f\x77\x6e\x77\x61\x72\ +\x64\x73\x20\x74\x68\x65\x20\x46\x65\x61\x74\x75\x72\x65\x54\x72\ +\x65\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x3a\x00\x50\x00\x6c\x00\x65\x00\x61\x00\x73\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x33\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x73\x00\x20\x00\x66\x00\x69\x00\x72\x00\x73\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x50\x6c\x65\x61\x73\x65\x20\ +\x73\x65\x6c\x65\x63\x74\x20\x33\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x20\x66\x69\x72\x73\x74\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x10\x00\x50\x00\x72\x00\x65\x00\ +\x73\x00\x73\x00\x20\x00\x4f\x00\x4b\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x5a\x00\x50\ +\x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x20\x00\x79\x00\x65\ +\x00\x74\x00\x20\x00\x43\x00\x6f\x00\x64\x00\x65\x00\x64\x00\x20\ +\x00\x77\x00\x61\x00\x69\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\ +\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x50\x00\x65\x00\x74\x00\x65\ +\x00\x72\x00\x20\x00\x4c\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x2d\x50\x72\x6f\x6a\x65\x63\x74\x69\x6f\x6e\x20\x4e\x6f\x74\ +\x20\x79\x65\x74\x20\x43\x6f\x64\x65\x64\x20\x77\x61\x69\x74\x69\ +\x6e\x67\x20\x66\x6f\x72\x20\x50\x65\x74\x65\x72\x20\x4c\x69\x07\ +\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x28\x00\x52\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x20\ +\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x46\x00\x65\ +\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x14\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\ +\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x42\x00\x52\x00\x65\x00\ +\x6d\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x69\x00\x72\x00\x20\x00\x43\x00\ +\x68\x00\x69\x00\x6c\x00\x64\x00\x72\x00\x65\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x21\x52\x65\x6d\x6f\x76\x65\x20\x4f\x62\ +\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\x74\x68\x65\x69\x72\x20\ +\x43\x68\x69\x6c\x64\x72\x65\x6e\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\xb0\x00\x52\x00\x65\x00\ +\x6d\x00\x6f\x00\x76\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\ +\x6c\x00\x6c\x00\x20\x00\x63\x00\x68\x00\x69\x00\x6c\x00\x64\x00\ +\x72\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\ +\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\ +\x20\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\ +\x63\x00\x65\x00\x64\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ +\x20\x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x58\x52\x65\x6d\x6f\x76\x65\x73\x20\x74\x68\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x61\x6e\x64\x20\x61\x6c\x6c\x20\x63\x68\x69\x6c\x64\x72\ +\x65\x6e\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\ +\x72\x65\x66\x65\x72\x65\x6e\x63\x65\x64\x20\x66\x72\x6f\x6d\x20\ +\x6f\x74\x68\x65\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1c\ +\x00\x52\x00\x65\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x20\ +\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0e\x52\x65\x70\x6c\x61\x63\x65\x20\x4f\x62\ +\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x9e\x00\x52\x00\x65\x00\x70\x00\x6c\x00\ +\x61\x00\x63\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\ +\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x54\x00\x72\x00\x65\x00\ +\x65\x00\x2e\x00\x20\x00\x50\x00\x6c\x00\x65\x00\x61\x00\x73\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x6f\x00\x6c\x00\x64\x00\x2c\x00\x20\x00\x6e\x00\x65\x00\ +\x77\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x52\ +\x65\x70\x6c\x61\x63\x65\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x69\x6e\x20\x74\x68\x65\x20\x46\x65\x61\x74\x75\x72\x65\x20\ +\x54\x72\x65\x65\x2e\x20\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\ +\x65\x63\x74\x20\x6f\x6c\x64\x2c\x20\x6e\x65\x77\x20\x61\x6e\x64\ +\x20\x70\x61\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x30\x00\x52\x00\x75\x00\x6e\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\ +\x44\x00\x20\x00\x66\x00\x61\x00\x69\x00\x6c\x00\x65\x00\x64\x00\ +\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x52\x75\x6e\x6e\x69\ +\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x66\x61\x69\x6c\ +\x65\x64\x0a\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x28\x00\x55\x00\x6e\x00\x73\x00\x75\x00\x70\ +\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x64\x00\x20\x00\x46\ +\x00\x75\x00\x6e\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x14\x55\x6e\x73\x75\x70\x70\x6f\x72\ +\x74\x65\x64\x20\x46\x75\x6e\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x00\x00\x1d\x55\ \x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ -\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ -\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ -\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ -\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ -\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ -\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ -\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x70\x78\ -\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\x70\ -\x78\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x37\x38\ -\x34\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x76\ -\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x33\x32\x22\x0a\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\x69\x6f\ -\x6e\x3d\x22\x30\x2e\x34\x38\x2e\x33\x2e\x31\x20\x72\x39\x38\x38\ -\x36\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\ -\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x50\x61\x72\x74\x5f\x53\x70\x68\ -\x65\x72\x65\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x6f\x75\x74\x70\x75\x74\x5f\x65\x78\x74\x65\ -\x6e\x73\x69\x6f\x6e\x3d\x22\x6f\x72\x67\x2e\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x2e\x6f\x75\x74\x70\x75\x74\x2e\x73\x76\x67\x2e\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x3e\x0a\x20\x20\x3c\x64\x65\ -\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\ -\x32\x37\x38\x36\x22\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x33\x38\x30\x38\x22\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ -\x72\x3a\x23\x65\x34\x65\x61\x30\x30\x3b\x73\x74\x6f\x70\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ -\x33\x38\x31\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ -\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ -\x23\x66\x32\x64\x62\x30\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\ -\x31\x32\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\ -\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x33\ -\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ -\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ -\x6f\x72\x3a\x23\x66\x61\x66\x66\x32\x62\x3b\x73\x74\x6f\x70\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x33\x38\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ -\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ -\x3a\x23\x66\x66\x61\x61\x30\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\ -\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ -\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\ -\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x36\x39\x32\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x34\x35\x2e\x38\x38\x33\ -\x33\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\ -\x32\x38\x2e\x38\x36\x39\x35\x36\x38\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x66\x78\x3d\x22\x34\x35\x2e\x38\x38\x33\x33\x32\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x32\x38\x2e\x38\ -\x36\x39\x35\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\ -\x22\x31\x39\x2e\x34\x36\x37\x34\x33\x36\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\ -\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\ -\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ -\x72\x73\x70\x33\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\ -\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\ -\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ -\x7a\x3d\x22\x36\x34\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\ -\x33\x32\x20\x3a\x20\x32\x31\x2e\x33\x33\x33\x33\x33\x33\x20\x3a\ -\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ -\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x32\x37\x39\x32\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\ -\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ -\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x2d\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\ -\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x36\x39\x32\x2d\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x34\x35\ -\x2e\x38\x38\x33\x33\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x63\x79\x3d\x22\x32\x38\x2e\x38\x36\x39\x35\x36\x38\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x34\x35\x2e\x38\x38\x33\ -\x33\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\ -\x32\x38\x2e\x38\x36\x39\x35\x36\x38\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x72\x3d\x22\x31\x39\x2e\x34\x36\x37\x34\x33\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\ -\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\ -\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ -\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ -\x74\x72\x61\x6e\x73\x6c\x61\x74\x65\x28\x32\x2e\x35\x34\x35\x34\ -\x35\x34\x35\x2c\x33\x2e\x38\x31\x38\x31\x38\x31\x38\x29\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x33\x33\x37\x37\x2d\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ -\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x73\x74\x6f\x70\x33\x33\x37\x39\x2d\x34\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x61\ -\x66\x66\x32\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ -\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x73\x74\x6f\x70\x33\x33\x38\x31\x2d\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\ -\x61\x61\x30\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\ -\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\ -\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x31\x39\x2e\ -\x34\x36\x37\x34\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ -\x79\x3d\x22\x32\x38\x2e\x38\x36\x39\x35\x36\x38\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x34\x35\x2e\x38\x38\x33\x33\ -\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x32\ -\x38\x2e\x38\x36\x39\x35\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x63\x78\x3d\x22\x34\x35\x2e\x38\x38\x33\x33\x32\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\ -\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\ -\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\ -\x37\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\ -\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x2d\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\ -\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ -\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x2d\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\ -\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x39\x38\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\ -\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\ -\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ -\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ -\x22\x74\x72\x61\x6e\x73\x6c\x61\x74\x65\x28\x32\x2e\x31\x38\x31\ -\x38\x31\x38\x31\x2c\x33\x2e\x38\x31\x38\x31\x38\x31\x38\x29\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x34\x35\x2e\x38\ -\x38\x33\x33\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\ -\x3d\x22\x32\x38\x2e\x38\x36\x39\x35\x36\x38\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x66\x78\x3d\x22\x34\x35\x2e\x38\x38\x33\x33\x32\ -\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x32\x38\ -\x2e\x38\x36\x39\x35\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x72\x3d\x22\x31\x39\x2e\x34\x36\x37\x34\x33\x36\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\ -\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\ -\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x2d\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\ -\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x30\x32\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\ -\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\ -\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ -\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ -\x61\x74\x72\x69\x78\x28\x2d\x30\x2e\x36\x35\x36\x31\x31\x37\x37\ -\x37\x2c\x2d\x30\x2e\x37\x35\x34\x36\x35\x38\x35\x32\x2c\x30\x2e\ -\x37\x35\x34\x36\x35\x38\x35\x32\x2c\x2d\x30\x2e\x36\x35\x36\x31\ -\x31\x37\x37\x37\x2c\x32\x32\x2e\x35\x30\x37\x30\x35\x31\x2c\x37\ -\x31\x2e\x35\x34\x37\x30\x38\x33\x29\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x63\x78\x3d\x22\x34\x35\x2e\x38\x38\x33\x33\x32\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x32\x38\x2e\x38\ -\x36\x39\x35\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\ -\x3d\x22\x34\x35\x2e\x38\x38\x33\x33\x32\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x66\x79\x3d\x22\x32\x38\x2e\x38\x36\x39\x35\x36\ -\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x31\x39\x2e\ -\x34\x36\x37\x34\x33\x36\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ -\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\ -\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x33\x33\x37\x37\x2d\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x33\x38\x30\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\ -\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\ -\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ -\x30\x2e\x36\x39\x35\x30\x36\x39\x35\x37\x2c\x2d\x30\x2e\x37\x31\ -\x38\x39\x34\x32\x34\x39\x2c\x30\x2e\x37\x31\x38\x39\x34\x32\x34\ -\x39\x2c\x30\x2e\x36\x39\x35\x30\x36\x39\x35\x37\x2c\x31\x35\x2e\ -\x31\x37\x39\x38\x37\x32\x2c\x35\x35\x2e\x35\x39\x35\x32\x30\x33\ -\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x34\x35\ -\x2e\x38\x38\x33\x33\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x63\x79\x3d\x22\x32\x38\x2e\x38\x36\x39\x35\x36\x38\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x34\x35\x2e\x38\x38\x33\ -\x33\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\ -\x32\x38\x2e\x38\x36\x39\x35\x36\x38\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x72\x3d\x22\x31\x39\x2e\x34\x36\x37\x34\x33\x36\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\ -\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ -\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x2d\x32\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\ -\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x36\x39\x32\x2d\ -\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x34\x35\ -\x2e\x38\x38\x33\x33\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x63\x79\x3d\x22\x32\x38\x2e\x38\x36\x39\x35\x36\x38\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x34\x35\x2e\x38\x38\x33\ -\x33\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\ -\x32\x38\x2e\x38\x36\x39\x35\x36\x38\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x72\x3d\x22\x31\x39\x2e\x34\x36\x37\x34\x33\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\ -\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\ -\x6e\x55\x73\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ -\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x2d\x32\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x33\x37\x39\ -\x2d\x34\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ -\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ -\x6c\x6f\x72\x3a\x23\x66\x61\x66\x66\x32\x62\x3b\x73\x74\x6f\x70\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x33\x38\ -\x31\x2d\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ -\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ -\x6c\x6f\x72\x3a\x23\x66\x66\x61\x61\x30\x30\x3b\x73\x74\x6f\x70\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\ -\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x72\x3d\x22\x31\x39\x2e\x34\x36\x37\x34\x33\x36\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x32\x38\x2e\x38\x36\x39\ -\x35\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\ -\x34\x35\x2e\x38\x38\x33\x33\x32\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x63\x79\x3d\x22\x32\x38\x2e\x38\x36\x39\x35\x36\x38\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x34\x35\x2e\x38\ -\x38\x33\x33\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ -\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\ -\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x33\x37\x37\x37\x2d\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\ -\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x33\x33\x37\x37\x2d\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\ -\x22\x61\x6c\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\ -\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x33\x33\x37\x37\x2d\x32\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x33\x36\x39\x32\x2d\x35\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x63\x78\x3d\x22\x34\x35\x2e\x38\x38\x33\x33\x32\ -\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x32\x38\ -\x2e\x38\x36\x39\x35\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x66\x78\x3d\x22\x34\x35\x2e\x38\x38\x33\x33\x32\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x32\x38\x2e\x38\x36\x39\ -\x35\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x31\ -\x39\x2e\x34\x36\x37\x34\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ -\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\ -\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x74\x72\x61\x6e\x73\x6c\ -\x61\x74\x65\x28\x30\x2e\x31\x30\x32\x32\x33\x34\x34\x37\x2c\x30\ -\x2e\x33\x35\x37\x38\x32\x30\x36\x33\x29\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\ -\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\ -\x2d\x32\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ -\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ -\x74\x6f\x70\x33\x33\x37\x39\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ -\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x61\x66\x66\x32\ -\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ -\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ -\x74\x6f\x70\x33\x33\x38\x31\x2d\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ -\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x61\x61\x30\ -\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\ -\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x31\x39\x2e\x34\x36\x37\ -\x34\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\ -\x32\x38\x2e\x38\x36\x39\x35\x36\x38\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x66\x78\x3d\x22\x34\x35\x2e\x38\x38\x33\x33\x32\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x32\x38\x2e\x38\ -\x36\x39\x35\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\ -\x3d\x22\x34\x35\x2e\x38\x38\x33\x33\x32\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\ -\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\ -\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x37\x37\ -\x2d\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\ -\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x2d\x32\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x20\ -\x2f\x3e\x0a\x20\x20\x3c\x2f\x64\x65\x66\x73\x3e\x0a\x20\x20\x3c\ -\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\ -\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\ -\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\ -\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\ -\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\ -\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\ -\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\ -\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\ -\x30\x2e\x36\x31\x31\x33\x33\x39\x38\x32\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x32\x37\ -\x2e\x33\x36\x33\x36\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x32\x39\x2e\x39\x35\ -\x34\x35\x31\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\ -\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\ -\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x37\x31\x39\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x36\ -\x37\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x38\x39\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ -\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x31\x32\x35\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x30\x22\x20\ -\x2f\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\ -\x32\x37\x38\x39\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\ -\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\ -\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\ -\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\ -\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\ -\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\ -\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\ -\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x3c\ -\x2f\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\ -\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\ -\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\ -\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\ -\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\ -\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x67\x33\x35\x36\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\ -\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x74\x72\x61\x6e\x73\x6c\x61\ -\x74\x65\x28\x2d\x30\x2e\x38\x31\x35\x33\x30\x36\x38\x2c\x2d\x36\ -\x37\x2e\x35\x34\x30\x30\x34\x32\x29\x22\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ -\x69\x78\x28\x31\x2e\x32\x34\x38\x32\x38\x33\x35\x2c\x30\x2c\x30\ -\x2c\x30\x2e\x34\x31\x32\x31\x31\x33\x39\x2c\x2d\x32\x38\x2e\x39\ -\x36\x39\x38\x38\x38\x2c\x31\x30\x32\x2e\x39\x31\x38\x37\x32\x29\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\ -\x37\x31\x2e\x37\x38\x35\x37\x31\x35\x2c\x33\x34\x2e\x35\x37\x31\ -\x34\x32\x36\x20\x63\x20\x30\x2c\x31\x30\x2e\x32\x35\x36\x37\x31\ -\x37\x20\x2d\x38\x2e\x33\x31\x34\x37\x31\x32\x2c\x31\x38\x2e\x35\ -\x37\x31\x34\x32\x39\x20\x2d\x31\x38\x2e\x35\x37\x31\x34\x32\x38\ -\x2c\x31\x38\x2e\x35\x37\x31\x34\x32\x39\x20\x2d\x31\x30\x2e\x32\ -\x35\x36\x37\x31\x37\x2c\x30\x20\x2d\x31\x38\x2e\x35\x37\x31\x34\ -\x32\x38\x2c\x2d\x38\x2e\x33\x31\x34\x37\x31\x32\x20\x2d\x31\x38\ -\x2e\x35\x37\x31\x34\x32\x38\x2c\x2d\x31\x38\x2e\x35\x37\x31\x34\ -\x32\x39\x20\x30\x2c\x2d\x31\x30\x2e\x32\x35\x36\x37\x31\x36\x20\ -\x38\x2e\x33\x31\x34\x37\x31\x31\x2c\x2d\x31\x38\x2e\x35\x37\x31\ -\x34\x32\x38\x20\x31\x38\x2e\x35\x37\x31\x34\x32\x38\x2c\x2d\x31\ -\x38\x2e\x35\x37\x31\x34\x32\x38\x20\x31\x30\x2e\x32\x35\x36\x37\ -\x31\x36\x2c\x30\x20\x31\x38\x2e\x35\x37\x31\x34\x32\x38\x2c\x38\ -\x2e\x33\x31\x34\x37\x31\x32\x20\x31\x38\x2e\x35\x37\x31\x34\x32\ -\x38\x2c\x31\x38\x2e\x35\x37\x31\x34\x32\x38\x20\x7a\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ -\x3a\x72\x79\x3d\x22\x31\x38\x2e\x35\x37\x31\x34\x32\x38\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x3a\x72\x78\x3d\x22\x31\x38\x2e\x35\x37\x31\x34\x32\x38\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ -\x64\x69\x3a\x63\x79\x3d\x22\x33\x34\x2e\x35\x37\x31\x34\x32\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3a\x63\x78\x3d\x22\x35\x33\x2e\x32\x31\x34\x32\x38\ -\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x70\x61\x74\x68\x33\x36\x39\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x30\x2e\x36\x36\x35\x32\x33\x36\x30\x35\x3b\x66\x69\x6c\ -\x6c\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ -\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3a\x31\x2e\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\ -\x72\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\ -\x72\x6b\x65\x72\x2d\x73\x74\x61\x72\x74\x3a\x6e\x6f\x6e\x65\x3b\ -\x6d\x61\x72\x6b\x65\x72\x2d\x6d\x69\x64\x3a\x6e\x6f\x6e\x65\x3b\ -\x6d\x61\x72\x6b\x65\x72\x2d\x65\x6e\x64\x3a\x6e\x6f\x6e\x65\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ -\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ -\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x76\ -\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\ -\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\ -\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\ -\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\ -\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\x63\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ -\x6d\x61\x74\x72\x69\x78\x28\x31\x2e\x32\x32\x37\x36\x36\x39\x39\ -\x2c\x30\x2c\x30\x2c\x31\x2e\x32\x32\x37\x36\x36\x39\x39\x2c\x2d\ -\x33\x36\x2e\x38\x30\x32\x30\x35\x34\x2c\x35\x38\x2e\x32\x36\x33\ -\x31\x39\x32\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\ -\x3d\x22\x6d\x20\x37\x31\x2e\x37\x38\x35\x37\x31\x35\x2c\x33\x34\ -\x2e\x35\x37\x31\x34\x32\x36\x20\x63\x20\x30\x2c\x31\x30\x2e\x32\ -\x35\x36\x37\x31\x37\x20\x2d\x38\x2e\x33\x31\x34\x37\x31\x32\x2c\ -\x31\x38\x2e\x35\x37\x31\x34\x32\x39\x20\x2d\x31\x38\x2e\x35\x37\ -\x31\x34\x32\x38\x2c\x31\x38\x2e\x35\x37\x31\x34\x32\x39\x20\x2d\ -\x31\x30\x2e\x32\x35\x36\x37\x31\x37\x2c\x30\x20\x2d\x31\x38\x2e\ -\x35\x37\x31\x34\x32\x38\x2c\x2d\x38\x2e\x33\x31\x34\x37\x31\x32\ -\x20\x2d\x31\x38\x2e\x35\x37\x31\x34\x32\x38\x2c\x2d\x31\x38\x2e\ -\x35\x37\x31\x34\x32\x39\x20\x30\x2c\x2d\x31\x30\x2e\x32\x35\x36\ -\x37\x31\x36\x20\x38\x2e\x33\x31\x34\x37\x31\x31\x2c\x2d\x31\x38\ -\x2e\x35\x37\x31\x34\x32\x38\x20\x31\x38\x2e\x35\x37\x31\x34\x32\ -\x38\x2c\x2d\x31\x38\x2e\x35\x37\x31\x34\x32\x38\x20\x31\x30\x2e\ -\x32\x35\x36\x37\x31\x36\x2c\x30\x20\x31\x38\x2e\x35\x37\x31\x34\ -\x32\x38\x2c\x38\x2e\x33\x31\x34\x37\x31\x32\x20\x31\x38\x2e\x35\ -\x37\x31\x34\x32\x38\x2c\x31\x38\x2e\x35\x37\x31\x34\x32\x38\x20\ -\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x31\x38\x2e\x35\x37\x31\x34\ -\x32\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ -\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\x31\x38\x2e\x35\x37\x31\ -\x34\x32\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ -\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\x22\x33\x34\x2e\x35\x37\ -\x31\x34\x32\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\x35\x33\x2e\x32\ -\x31\x34\x32\x38\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x36\x39\x36\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x3a\x75\x72\x6c\ -\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x33\x36\x39\x32\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\ -\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x37\ -\x62\x35\x36\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3a\x31\x2e\x37\x39\x32\x30\x31\x32\x36\x39\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\ -\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ -\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\ -\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x73\x74\x61\x72\x74\ -\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x6d\x69\x64\ -\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x65\x6e\x64\ -\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ -\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\ -\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\ -\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\ -\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\ -\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\ -\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\ -\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\ -\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\ -\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\ -\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\ -\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x39\ -\x38\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x2e\x30\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\ -\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x37\x62\ -\x35\x36\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3a\x31\x2e\x37\x39\x32\x30\x31\x32\x36\x39\x30\x30\x30\x30\ -\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ -\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ -\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\ -\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\ -\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\ -\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\ -\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\ -\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\ -\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x37\x2e\x38\x32\x33\x38\x36\ -\x34\x2c\x31\x30\x2e\x37\x31\x38\x37\x35\x20\x63\x20\x2d\x35\x2e\ -\x38\x32\x34\x30\x39\x34\x2c\x30\x20\x2d\x31\x30\x2e\x35\x36\x32\ -\x35\x2c\x31\x2e\x38\x33\x34\x34\x30\x33\x20\x2d\x31\x30\x2e\x35\ -\x36\x32\x35\x2c\x34\x2e\x30\x39\x33\x37\x35\x20\x30\x2c\x32\x2e\ -\x32\x35\x39\x33\x34\x37\x20\x34\x2e\x37\x33\x38\x34\x30\x36\x2c\ -\x34\x2e\x30\x39\x33\x37\x35\x20\x31\x30\x2e\x35\x36\x32\x35\x2c\ -\x34\x2e\x30\x39\x33\x37\x35\x20\x35\x2e\x38\x32\x34\x30\x39\x34\ -\x2c\x30\x20\x31\x30\x2e\x35\x33\x31\x32\x35\x2c\x2d\x31\x2e\x38\ -\x33\x34\x34\x30\x33\x20\x31\x30\x2e\x35\x33\x31\x32\x35\x2c\x2d\ -\x34\x2e\x30\x39\x33\x37\x35\x20\x30\x2c\x2d\x32\x2e\x32\x35\x39\ -\x33\x34\x37\x20\x2d\x34\x2e\x37\x30\x37\x31\x35\x36\x2c\x2d\x34\ -\x2e\x30\x39\x33\x37\x35\x20\x2d\x31\x30\x2e\x35\x33\x31\x32\x35\ -\x2c\x2d\x34\x2e\x30\x39\x33\x37\x35\x20\x7a\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x35\x38\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\ -\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\ -\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\ -\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\ -\x31\x30\x2e\x38\x39\x30\x34\x32\x32\x2c\x34\x37\x2e\x36\x36\x38\ -\x35\x30\x39\x20\x63\x20\x33\x2e\x38\x32\x31\x32\x39\x32\x2c\x34\ -\x2e\x33\x39\x35\x32\x30\x32\x20\x38\x2e\x33\x31\x34\x35\x39\x32\ -\x2c\x36\x2e\x37\x36\x37\x34\x39\x36\x20\x31\x30\x2e\x30\x31\x39\ -\x36\x32\x37\x2c\x35\x2e\x32\x38\x35\x30\x39\x38\x20\x31\x2e\x37\ -\x30\x35\x30\x33\x36\x2c\x2d\x31\x2e\x34\x38\x32\x33\x39\x38\x20\ -\x2d\x30\x2e\x30\x31\x39\x35\x37\x2c\x2d\x36\x2e\x32\x36\x31\x38\ -\x36\x20\x2d\x33\x2e\x38\x34\x30\x38\x36\x2c\x2d\x31\x30\x2e\x36\ -\x35\x37\x30\x36\x32\x20\x2d\x33\x2e\x38\x32\x31\x32\x39\x32\x2c\ -\x2d\x34\x2e\x33\x39\x35\x32\x30\x33\x20\x2d\x38\x2e\x32\x39\x34\ -\x30\x38\x38\x32\x2c\x2d\x36\x2e\x37\x34\x33\x39\x31\x34\x20\x2d\ -\x39\x2e\x39\x39\x39\x31\x32\x34\x32\x2c\x2d\x35\x2e\x32\x36\x31\ -\x35\x31\x36\x20\x2d\x31\x2e\x37\x30\x35\x30\x33\x35\x2c\x31\x2e\ -\x34\x38\x32\x33\x39\x38\x20\x2d\x39\x2e\x33\x34\x65\x2d\x34\x2c\ -\x36\x2e\x32\x33\x38\x32\x37\x38\x20\x33\x2e\x38\x32\x30\x33\x35\ -\x37\x32\x2c\x31\x30\x2e\x36\x33\x33\x34\x38\x20\x7a\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\ -\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x3a\ -\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x33\x38\x30\x32\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\ -\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\ -\x3a\x23\x37\x62\x35\x36\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3a\x31\x2e\x37\x39\x32\x30\x31\x32\x36\x39\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\ -\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ -\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ -\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\x72\ -\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\ -\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\ -\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\ -\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\ -\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\ -\x75\x6c\x61\x74\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\ -\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ -\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x30\x36\x29\x3b\x66\x69\ -\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\ -\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\ -\x74\x72\x6f\x6b\x65\x3a\x23\x37\x62\x35\x36\x30\x30\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x37\x39\x32\ -\x30\x31\x32\x36\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ -\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ -\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\ -\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\ -\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\ -\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\ -\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\ -\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\ -\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x64\x3d\x22\x6d\x20\x33\x37\x2e\x39\x36\x33\x39\x38\ -\x39\x2c\x34\x31\x2e\x39\x35\x36\x34\x32\x32\x20\x63\x20\x2d\x34\ -\x2e\x30\x34\x38\x31\x35\x2c\x34\x2e\x31\x38\x37\x31\x38\x39\x20\ -\x2d\x36\x2e\x30\x32\x32\x38\x34\x31\x2c\x38\x2e\x38\x36\x38\x38\ -\x36\x38\x20\x2d\x34\x2e\x33\x39\x38\x35\x30\x31\x2c\x31\x30\x2e\ -\x34\x33\x39\x32\x37\x31\x20\x31\x2e\x36\x32\x34\x33\x34\x31\x2c\ -\x31\x2e\x35\x37\x30\x34\x30\x34\x20\x36\x2e\x32\x33\x36\x36\x39\ -\x32\x2c\x2d\x30\x2e\x35\x36\x31\x32\x30\x31\x20\x31\x30\x2e\x32\ -\x38\x34\x38\x34\x33\x2c\x2d\x34\x2e\x37\x34\x38\x33\x38\x38\x20\ -\x34\x2e\x30\x34\x38\x31\x35\x31\x2c\x2d\x34\x2e\x31\x38\x37\x31\ -\x38\x39\x20\x36\x2e\x30\x30\x31\x31\x32\x32\x2c\x2d\x38\x2e\x38\ -\x34\x36\x34\x30\x31\x20\x34\x2e\x33\x37\x36\x37\x38\x31\x2c\x2d\ -\x31\x30\x2e\x34\x31\x36\x38\x30\x35\x20\x2d\x31\x2e\x36\x32\x34\ -\x33\x34\x31\x2c\x2d\x31\x2e\x35\x37\x30\x34\x30\x33\x20\x2d\x36\ -\x2e\x32\x31\x34\x39\x37\x32\x2c\x30\x2e\x35\x33\x38\x37\x33\x34\ -\x20\x2d\x31\x30\x2e\x32\x36\x33\x31\x32\x33\x2c\x34\x2e\x37\x32\ -\x35\x39\x32\x32\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x30\x34\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\ -\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\ -\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\ -\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\ -\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x33\x36\x39\x32\x2d\x38\x29\x3b\x66\x69\ -\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\ -\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\ -\x74\x72\x6f\x6b\x65\x3a\x23\x37\x62\x35\x36\x30\x30\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x37\x39\x32\ -\x30\x31\x32\x36\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ -\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ -\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\ -\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\ -\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\ -\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\ -\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\ -\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\ -\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x30\x2e\x35\x33\x39\x30\x32\ -\x37\x2c\x31\x37\x2e\x32\x33\x38\x34\x34\x35\x20\x63\x20\x31\x2e\ -\x33\x31\x34\x32\x31\x36\x2c\x2d\x31\x2e\x35\x37\x34\x32\x38\x39\ -\x20\x34\x2e\x32\x32\x30\x34\x31\x2c\x2d\x32\x2e\x35\x38\x35\x39\ -\x39\x34\x20\x37\x2e\x38\x35\x33\x30\x37\x36\x2c\x2d\x30\x2e\x39\ -\x31\x34\x39\x30\x37\x20\x34\x2e\x30\x39\x30\x36\x35\x37\x2c\x2d\ -\x31\x2e\x38\x30\x36\x31\x33\x20\x36\x2e\x30\x33\x34\x35\x34\x39\ -\x2c\x2d\x30\x2e\x33\x36\x30\x38\x35\x20\x36\x2e\x38\x31\x33\x32\ -\x38\x34\x2c\x30\x2e\x38\x38\x36\x34\x34\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x31\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\ -\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\ -\x70\x65\x73\x3d\x22\x63\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\ -\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\ -\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x36\x39\x32\x2d\ -\x35\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\ -\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x37\x62\x35\x36\ -\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ -\x31\x2e\x37\x39\x32\x30\x31\x32\x36\x39\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x72\ -\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ -\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\ -\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\ -\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\ -\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\ -\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\ -\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ -\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x38\x2e\ -\x32\x38\x34\x30\x35\x32\x2c\x31\x35\x2e\x39\x39\x34\x31\x38\x35\ -\x20\x30\x2c\x33\x2e\x30\x39\x30\x39\x30\x39\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x33\x38\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\ -\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\ -\x70\x65\x73\x3d\x22\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ -\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\ -\x22\x63\x63\x63\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\ -\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x35\ -\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\ -\x30\x2e\x34\x33\x38\x30\x32\x36\x2c\x34\x38\x2e\x37\x35\x32\x36\ -\x30\x38\x20\x63\x20\x2d\x32\x2e\x30\x34\x39\x38\x37\x35\x2c\x30\ -\x2e\x30\x35\x39\x36\x34\x20\x2d\x34\x2e\x37\x33\x33\x38\x36\x37\ -\x2c\x2d\x31\x2e\x34\x34\x35\x35\x38\x36\x20\x2d\x35\x2e\x38\x39\ -\x30\x38\x31\x36\x2c\x2d\x35\x2e\x32\x37\x33\x31\x35\x33\x20\x2d\ -\x34\x2e\x30\x36\x33\x39\x36\x34\x2c\x2d\x31\x2e\x38\x36\x35\x34\ -\x31\x33\x20\x2d\x34\x2e\x32\x37\x30\x34\x38\x34\x2c\x2d\x34\x2e\ -\x32\x37\x38\x38\x39\x36\x20\x2d\x33\x2e\x38\x35\x32\x38\x35\x34\ -\x2c\x2d\x35\x2e\x36\x38\x38\x37\x37\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\ -\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\ -\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x37\x62\x35\x36\x30\x30\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\ -\x37\x39\x32\x30\x31\x32\x36\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\ -\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ -\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ -\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\ -\x30\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\ -\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\ -\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\ -\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\ -\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\ -\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\ -\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\ -\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ -\x74\x68\x33\x38\x36\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\ -\x3d\x22\x6d\x20\x31\x34\x2e\x33\x37\x32\x32\x35\x2c\x34\x33\x2e\ -\x37\x37\x38\x36\x38\x32\x20\x32\x2e\x33\x31\x34\x31\x38\x32\x2c\ -\x2d\x32\x2e\x30\x34\x38\x39\x36\x39\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\ -\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\ -\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x37\x62\x35\x36\x30\x30\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x37\ -\x39\x32\x30\x31\x32\x36\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\ -\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ -\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\ -\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\ -\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\ -\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\ -\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\ -\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\ -\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\ -\x79\x70\x65\x73\x3d\x22\x63\x63\x63\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\ -\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ -\x74\x68\x33\x38\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\ -\x3d\x22\x6d\x20\x34\x35\x2e\x39\x30\x32\x39\x33\x39\x2c\x33\x37\ -\x2e\x34\x33\x35\x34\x35\x20\x63\x20\x30\x2e\x30\x34\x30\x38\x2c\ -\x32\x2e\x30\x35\x30\x33\x33\x38\x20\x2d\x31\x2e\x34\x38\x39\x30\ -\x31\x37\x2c\x34\x2e\x37\x32\x30\x33\x38\x37\x20\x2d\x35\x2e\x33\ -\x32\x37\x30\x35\x31\x2c\x35\x2e\x38\x34\x32\x31\x32\x31\x20\x2d\ -\x31\x2e\x39\x30\x32\x36\x37\x32\x2c\x34\x2e\x30\x34\x36\x36\x35\ -\x36\x20\x2d\x34\x2e\x33\x31\x37\x39\x35\x2c\x34\x2e\x32\x33\x30\ -\x39\x39\x33\x20\x2d\x35\x2e\x37\x32\x33\x39\x32\x39\x2c\x33\x2e\ -\x38\x30\x30\x34\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\ -\x30\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ -\x72\x6f\x6b\x65\x3a\x23\x37\x62\x35\x36\x30\x30\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x37\x39\x32\x30\ -\x31\x32\x36\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ -\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ -\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\ -\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\ -\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\ -\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\ -\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\ -\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\ -\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x74\x72\x61\x6e\x73\ -\x66\x6f\x72\x6d\x2d\x63\x65\x6e\x74\x65\x72\x2d\x79\x3d\x22\x2d\ -\x30\x2e\x36\x31\x33\x34\x30\x36\x37\x39\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\ -\x65\x73\x3d\x22\x63\x63\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\ -\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\ -\x38\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\ -\x20\x34\x30\x2e\x38\x37\x33\x34\x39\x35\x2c\x34\x33\x2e\x34\x35\ -\x35\x32\x37\x34\x20\x33\x38\x2e\x38\x34\x35\x38\x37\x33\x2c\x34\ -\x31\x2e\x31\x32\x32\x33\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\ -\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\ -\x73\x74\x72\x6f\x6b\x65\x3a\x23\x37\x62\x35\x36\x30\x30\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x37\x39\ -\x32\x30\x31\x32\x36\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ -\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\ -\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ -\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\ -\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\ -\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\ -\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\ -\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\ -\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ -\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x74\x72\x61\ -\x6e\x73\x66\x6f\x72\x6d\x2d\x63\x65\x6e\x74\x65\x72\x2d\x78\x3d\ -\x22\x30\x2e\x35\x31\x38\x31\x36\x31\x36\x34\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x74\x72\x61\ -\x6e\x73\x66\x6f\x72\x6d\x2d\x63\x65\x6e\x74\x65\x72\x2d\x79\x3d\ -\x22\x2d\x30\x2e\x36\x36\x31\x34\x36\x39\x36\x31\x22\x20\x2f\x3e\ -\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\xb3\x50\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x01\xa0\x00\x00\x00\xb0\x00\x00\x10\xbe\x00\x00\x07\x3d\ +\x00\x00\x10\x31\x00\x39\xdf\x33\x00\x00\x01\xc0\x00\x72\x97\x49\ +\x00\x00\x10\x6c\x01\x0c\x64\xae\x00\x00\x11\x3e\x01\x38\xb0\x83\ +\x00\x00\x12\xba\x01\x40\x42\x85\x00\x00\x0b\xbf\x02\x1f\xd9\x48\ +\x00\x00\x04\x36\x02\x7b\x37\xc4\x00\x00\x15\xfb\x02\xbc\x05\x8e\ +\x00\x00\x0d\xb5\x02\xbe\x05\x8e\x00\x00\x00\xe1\x03\x8c\x88\xc1\ +\x00\x00\x0e\x5b\x05\x08\x5c\x93\x00\x00\x03\x4b\x05\x16\xa3\x95\ +\x00\x00\x14\x67\x05\x66\x9a\x34\x00\x00\x08\x61\x05\x98\x15\x8e\ +\x00\x00\x0e\x0a\x05\xcc\x9a\xd9\x00\x00\x0d\x63\x05\xe4\x1f\xa9\ +\x00\x00\x11\xa8\x05\xfb\x21\x0b\x00\x00\x06\xbb\x06\xe4\x0a\x14\ +\x00\x00\x19\xbb\x06\xee\xa0\xc5\x00\x00\x0a\x8b\x07\x5d\xec\x93\ +\x00\x00\x13\xfe\x07\x5d\xee\x93\x00\x00\x13\x95\x07\xda\x68\xe7\ +\x00\x00\x0c\x5e\x07\xe4\xd0\x65\x00\x00\x0e\xab\x08\x10\xb3\x89\ +\x00\x00\x05\xab\x08\x37\x4e\x99\x00\x00\x16\xc2\x08\x4d\xc0\x2e\ +\x00\x00\x1b\x3e\x08\x5d\x45\x73\x00\x00\x01\x36\x08\xa5\x45\x08\ +\x00\x00\x06\x5f\x08\xca\x52\x4b\x00\x00\x16\x7d\x08\xca\x72\x4b\ +\x00\x00\x10\xf6\x08\xe2\x7f\xe5\x00\x00\x15\x3f\x09\x2b\x77\x54\ +\x00\x00\x19\x76\x09\xc0\x82\xb5\x00\x00\x07\x21\x0a\x22\x8d\xb2\ +\x00\x00\x00\x00\x0a\x2b\x47\x64\x00\x00\x0f\xb2\x0a\x96\xcd\x84\ +\x00\x00\x0f\x25\x0a\xd3\x55\x94\x00\x00\x07\xff\x0a\xf8\x55\x94\ +\x00\x00\x07\x9d\x0b\x61\x1d\x4e\x00\x00\x17\xcb\x0d\x2c\x1d\x28\ +\x00\x00\x04\x95\x0d\xaa\x21\x43\x00\x00\x14\xeb\x0d\xdc\x00\x68\ +\x00\x00\x05\x42\x0e\x02\x4e\xea\x00\x00\x1a\xcf\x0e\x75\xf9\x03\ +\x00\x00\x0b\x40\x0e\x80\x99\x15\x00\x00\x17\x62\x0e\xc6\x00\x19\ +\x00\x00\x0d\x06\x0e\xcc\x78\xf1\x00\x00\x04\xe3\x0f\x18\x51\xc5\ +\x00\x00\x12\xff\x0f\x68\xe5\xc7\x00\x00\x02\x2f\x0f\xd3\x1f\xf3\ +\x00\x00\x18\x6f\x69\x00\x00\x1b\x9b\x03\x00\x00\x00\x7e\x00\x4e\ +\x00\x79\x00\x6f\x00\x6d\x00\x6b\x00\xf6\x00\x76\x00\x65\x00\x74\ +\x00\xe9\x00\x73\x00\x3a\x00\x20\x00\x66\x00\xe1\x00\x6a\x00\x6c\ +\x00\x74\x00\xed\x00\x70\x00\x75\x00\x73\x00\x20\x00\x72\x00\x65\ +\x00\x67\x00\x69\x00\x73\x00\x7a\x00\x74\x00\x72\x00\xe1\x00\x6c\ +\x00\xe1\x00\x73\x00\x61\x00\x20\x00\x61\x00\x20\x00\x70\x00\x72\ +\x00\x6f\x00\x74\x00\x6f\x00\x74\x00\xed\x00\x70\x00\x75\x00\x73\ +\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\xe1\ +\x00\x6c\x00\xe1\x00\x73\x00\x68\x00\x6f\x00\x7a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x2e\x44\x65\x62\x75\x67\x3a\x20\x52\x65\x67\ +\x69\x73\x74\x65\x72\x20\x66\x69\x6c\x65\x74\x79\x70\x65\x20\x74\ +\x6f\x20\x70\x72\x6f\x74\x6f\x74\x79\x70\x65\x20\x69\x6d\x70\x6f\ +\x72\x74\x65\x72\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x16\x00\ +\x4b\x00\x69\x00\xf6\x00\x62\x00\x6c\x00\xf6\x00\x73\x00\xf6\x00\ +\x64\x00\xe9\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x44\ +\x65\x66\x6c\x65\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x3c\x00\xc1\x00\x6c\x00\x74\x00\x61\x00\x6c\x00\xe1\ +\x00\x6e\x00\x6f\x00\x73\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\ +\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x62\x00\x65\x00\xe1\ +\x00\x6c\x00\x6c\x00\xed\x00\x74\x00\xe1\x00\x73\x00\x6f\x00\x6b\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x65\x6e\x65\x72\x61\ +\x6c\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2a\x00\xc1\ +\x00\x6c\x00\x74\x00\x61\x00\x6c\x00\xe1\x00\x6e\x00\x6f\x00\x73\ +\x00\x20\x00\x62\x00\x65\x00\xe1\x00\x6c\x00\x6c\x00\xed\x00\x74\ +\x00\xe1\x00\x73\x00\x6f\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\ +\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\xa0\x00\x48\x00\ +\x61\x00\x20\x00\x62\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6e\x00\ +\x20\x00\xe1\x00\x6c\x00\x6c\x00\xed\x00\x74\x00\x76\x00\x61\x00\ +\x20\x00\x61\x00\x6b\x00\x6b\x00\x6f\x00\x72\x00\x2c\x00\x20\x00\ +\x61\x00\x20\x00\x74\x00\x75\x00\x6c\x00\x61\x00\x6a\x00\x64\x00\ +\x6f\x00\x6e\x00\x73\x00\xe1\x00\x67\x00\x6f\x00\x6b\x00\x20\x00\ +\x69\x00\x67\x00\xe9\x00\x6e\x00\x79\x00\x6c\x00\x69\x00\x6b\x00\ +\x20\x00\x61\x00\x7a\x00\x20\x00\x61\x00\x6c\x00\x65\x00\x67\x00\ +\x79\x00\x73\x00\xe9\x00\x67\x00\x65\x00\x69\x00\x6b\x00\x65\x00\ +\x74\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\x20\x00\x6e\x00\ +\xe9\x00\x7a\x00\x65\x00\x74\x00\x62\x00\x65\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x47\x49\x66\x20\x74\x68\x69\x73\x20\x69\ +\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x46\x65\x61\x74\x75\ +\x72\x65\x73\x20\x77\x69\x6c\x6c\x20\x63\x6c\x61\x69\x6d\x20\x74\ +\x68\x69\x65\x72\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\x69\x6e\ +\x20\x74\x68\x65\x20\x74\x72\x65\x65\x20\x76\x69\x65\x77\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x7e\x00\x48\x00\x61\x00\x20\x00\ +\x65\x00\x7a\x00\x20\x00\x6b\x00\x69\x00\x20\x00\x76\x00\x61\x00\ +\x6e\x00\x20\x00\x6a\x00\x65\x00\x6c\x00\xf6\x00\x6c\x00\x76\x00\ +\x65\x00\x20\x00\x61\x00\x6b\x00\x6b\x00\x6f\x00\x72\x00\x20\x00\ +\x61\x00\x20\x00\x54\x00\xf6\x00\x62\x00\x62\x00\x6d\x00\xe1\x00\ +\x74\x00\x72\x00\x69\x00\x78\x00\x20\x00\x74\x00\xe1\x00\x72\x00\ +\x67\x00\x79\x00\x20\x00\x50\x00\x61\x00\x72\x00\x61\x00\x6d\x00\ +\x65\x00\x74\x00\x72\x00\x69\x00\x6b\x00\x75\x00\x73\x00\x20\x00\ +\x6c\x00\x65\x00\x73\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x38\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\ +\x6b\x65\x64\x2c\x20\x4d\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\ +\x4f\x62\x6a\x65\x63\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x50\ +\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x1e\x00\x48\x00\x65\x00\x6c\x00\x79\x00\x69\x00\x20\ +\x00\x48\x00\x6f\x00\x73\x00\x73\x00\x7a\x00\xfa\x00\x73\x00\xe1\ +\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x4c\x6f\x63\x61\ +\x6c\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x10\x00\x4d\x00\x61\x00\x78\x00\x48\x00\x6f\x00\x73\x00\ +\x73\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x4d\x61\x78\ +\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x1e\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\ +\x20\x00\x54\x00\x65\x00\x72\x00\xfc\x00\x6c\x00\x65\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x4d\x61\x78\x69\x6d\x75\x6d\ +\x20\x41\x72\x65\x61\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x26\ +\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\xe1\x00\x6c\x00\x69\ +\x00\x73\x00\x20\x00\x48\x00\x6f\x00\x73\x00\x73\x00\x7a\x00\xfa\ +\x00\x73\x00\xe1\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ +\x4d\x61\x78\x69\x6d\x75\x6d\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x56\x00\x41\x00\x20\x00\x73\x00\ +\x6f\x00\x6b\x00\x73\x00\x7a\x00\xf6\x00\x67\x00\x20\x00\x28\x00\ +\x66\x00\x6e\x00\x29\x00\x20\x00\x6d\x00\x61\x00\x78\x00\x69\x00\ +\x6d\x00\xe1\x00\x6c\x00\x69\x00\x73\x00\x20\x00\x66\x00\x65\x00\ +\x6c\x00\xfc\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x69\x00\x6e\x00\ +\x65\x00\x6b\x00\x20\x00\x73\x00\x7a\x00\xe1\x00\x6d\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x29\x4d\x61\x78\x69\x6d\x75\x6d\ +\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\ +\x20\x66\x6f\x72\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x73\x20\x28\x66\ +\x6e\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1a\x00\x4d\x00\ +\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x48\x00\ +\x6f\x00\x73\x00\x73\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0d\x4d\x61\x78\x69\x75\x6d\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x24\x00\x48\x00\xe1\x00\x6c\x00\ +\xf3\x00\x20\x00\x76\x00\x69\x00\x73\x00\x73\x00\x7a\x00\x61\x00\ +\x6d\x00\x61\x00\x72\x00\x61\x00\x64\x00\xe1\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x66\x61\x6c\x6c\ +\x62\x61\x63\x6b\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x34\x00\ +\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\ +\x20\x00\x66\x00\x75\x00\x74\x00\x74\x00\x61\x00\x74\x00\x68\x00\ +\x61\x00\x74\x00\xf3\x00\x20\x00\x66\x00\xe1\x00\x6a\x00\x6c\x00\ +\x6f\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1e\x00\x4f\x00\x70\x00\ +\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\ +\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x70\x6f\ +\x72\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1e\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\ +\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x69\x6d\ +\x70\x6f\x72\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x01\x58\x00\ +\x41\x00\x20\x00\x73\x00\x6f\x00\x6b\x00\x73\x00\x7a\x00\xf6\x00\ +\x67\x00\x2c\x00\x20\x00\x68\x00\x61\x00\x73\x00\xe1\x00\x62\x00\ +\x20\x00\x76\x00\x61\x00\x67\x00\x79\x00\x20\x00\x63\x00\x73\x00\ +\x6f\x00\x6e\x00\x6b\x00\x61\x00\x20\x00\x6d\x00\x61\x00\x78\x00\ +\x69\x00\x6d\x00\xe1\x00\x6c\x00\x69\x00\x73\x00\x20\x00\x66\x00\ +\x65\x00\x6c\x00\xfc\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x69\x00\ +\x6e\x00\x65\x00\x6b\x00\x20\x00\x73\x00\x7a\x00\xe1\x00\x6d\x00\ +\x61\x00\x2e\x00\x20\x00\x48\x00\x61\x00\x20\x00\x61\x00\x7a\x00\ +\x20\x00\x66\x00\x6e\x00\x20\x00\x6e\x00\x61\x00\x67\x00\x79\x00\ +\x6f\x00\x62\x00\x62\x00\x20\x00\x6d\x00\x69\x00\x6e\x00\x74\x00\ +\x20\x00\x65\x00\x7a\x00\x20\x00\x61\x00\x7a\x00\x20\x00\xe9\x00\ +\x72\x00\x74\x00\xe9\x00\x6b\x00\x20\x00\x61\x00\x6b\x00\x6b\x00\ +\x6f\x00\x72\x00\x20\x00\x65\x00\x7a\x00\x74\x00\x20\x00\x61\x00\ +\x20\x00\x74\x00\xe1\x00\x72\x00\x67\x00\x79\x00\x61\x00\x74\x00\ +\x20\x00\x6d\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x6b\x00\xf6\x00\ +\x72\x00\x74\x00\x20\x00\x76\x00\x65\x00\x73\x00\x7a\x00\x69\x00\ +\x20\x00\x66\x00\x69\x00\x67\x00\x79\x00\x65\x00\x6c\x00\x65\x00\ +\x6d\x00\x62\x00\x65\x00\x2e\x00\x20\x00\xc1\x00\x6c\x00\x6c\x00\ +\xed\x00\x74\x00\x73\x00\x61\x00\x20\x00\x30\x00\x2d\x00\x72\x00\ +\x61\x00\x20\x00\x61\x00\x20\x00\x68\x00\x61\x00\x74\x00\xe1\x00\ +\x72\x00\x74\x00\x61\x00\x6c\x00\x61\x00\x6e\x00\x73\x00\xe1\x00\ +\x67\x00\x68\x00\x6f\x00\x7a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x9d\x54\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\ +\x62\x65\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x6f\x66\x20\ +\x61\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x2c\x20\x70\x72\x69\x73\x6d\ +\x20\x6f\x72\x20\x66\x72\x75\x73\x74\x75\x6d\x2e\x20\x49\x66\x20\ +\x66\x6e\x20\x69\x73\x20\x67\x72\x65\x61\x74\x65\x72\x20\x74\x68\ +\x61\x6e\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x74\x68\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x73\x20\x63\x6f\x6e\x73\ +\x69\x64\x65\x72\x65\x64\x20\x74\x6f\x20\x62\x65\x20\x61\x20\x63\ +\x69\x72\x63\x75\x6c\x61\x72\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\ +\x30\x20\x66\x6f\x72\x20\x6e\x6f\x20\x6c\x69\x6d\x69\x74\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x5c\x00\x41\x00\x7a\x00\x20\x00\ +\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\ +\x20\x00\x66\x00\x69\x00\x74\x00\x74\x00\x61\x00\x74\x00\x68\x00\ +\x61\x00\x74\x00\xf3\x00\x20\x00\x66\x00\xe1\x00\x6a\x00\x6c\x00\ +\x6f\x00\x6b\x00\x20\x00\x65\x00\x6c\x00\xe9\x00\x72\x00\xe9\x00\ +\x73\x00\x69\x00\x20\x00\xfa\x00\x74\x00\x76\x00\x6f\x00\x6e\x00\ +\x61\x00\x6c\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x54\ +\x68\x65\x20\x70\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\x65\x61\ +\x62\x6c\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x34\x00\x48\ +\x00\xe1\x00\x72\x00\x6f\x00\x6d\x00\x73\x00\x7a\x00\xf6\x00\x67\ +\x00\x65\x00\x6c\x00\xe9\x00\x73\x00\x69\x00\x20\x00\x62\x00\x65\ +\x00\xe1\x00\x6c\x00\x6c\x00\xed\x00\x74\x00\xe1\x00\x73\x00\x6f\ +\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x72\x69\x61\ +\x6e\x67\x75\x6c\x61\x74\x69\x6f\x6e\x20\x73\x65\x74\x74\x69\x6e\ +\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x54\x00\x48\x00\ +\x61\x00\x73\x00\x7a\x00\x6e\x00\xe1\x00\x6c\x00\x6a\x00\x61\x00\ +\x20\x00\x61\x00\x20\x00\x54\x00\xf6\x00\x62\x00\x62\x00\x73\x00\ +\x7a\x00\xf6\x00\x72\x00\xf6\x00\x73\x00\x6d\x00\xe1\x00\x74\x00\ +\x72\x00\x69\x00\x78\x00\x20\x00\x74\x00\x75\x00\x6c\x00\x61\x00\ +\x6a\x00\x64\x00\x6f\x00\x6e\x00\x73\x00\xe1\x00\x67\x00\x6f\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x55\x73\x65\x20\x4d\ +\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\x46\x65\x61\x74\x75\x72\ +\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x56\x00\x48\x00\x61\ +\x00\x73\x00\x7a\x00\x6e\x00\xe1\x00\x6c\x00\x6a\x00\x61\x00\x20\ +\x00\x61\x00\x20\x00\x4e\x00\xe9\x00\x7a\x00\x65\x00\x74\x00\x53\ +\x00\x7a\x00\x6f\x00\x6c\x00\x67\x00\xe1\x00\x6c\x00\x74\x00\x61\ +\x00\x74\x00\xf3\x00\x74\x00\x20\x00\x61\x00\x20\x00\x46\x00\x61\ +\x00\x20\x00\x4e\x00\xe9\x00\x7a\x00\x65\x00\x74\x00\x62\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\x65\x20\ +\x56\x69\x65\x77\x50\x72\x6f\x76\x69\x64\x65\x72\x20\x69\x6e\x20\ +\x54\x72\x65\x65\x20\x56\x69\x65\x77\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x1c\x00\x44\x01\x51\x00\x6c\x00\xe9\x00\x73\x00\x73\ +\x00\x7a\x00\xf6\x00\x67\x00\x20\x00\x28\x00\x66\x00\x61\x00\x29\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x61\x6e\x67\x75\x6c\x61\ +\x72\x20\x28\x66\x61\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x14\x00\x64\x00\x6f\x00\x6d\x00\x62\x00\x6f\x00\x72\x00\xfa\x00\ +\x73\x00\xe1\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x63\ +\x6f\x6e\x76\x65\x78\x69\x74\x79\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x16\x00\x6b\x00\x69\x00\xf6\x00\x62\x00\x6c\x00\xf6\x00\ +\x73\x00\xf6\x00\x64\x00\xe9\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0a\x64\x65\x66\x6c\x65\x63\x74\x69\x6f\x6e\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x14\x00\x48\x00\x65\x00\x6c\x00\x79\ +\x00\x69\x00\x48\x00\x6f\x00\x73\x00\x73\x00\x7a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x08\x6c\x6f\x63\x61\x6c\x4c\x65\x6e\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x6d\x00\x61\x00\x78\x00\ +\x54\x00\x65\x00\x72\x00\xfc\x00\x6c\x00\x65\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x07\x6d\x61\x78\x41\x72\x65\x61\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x30\x00\x61\x00\x20\x00\x74\x00\ +\xf6\x00\x72\x00\x65\x00\x64\x00\xe9\x00\x6b\x00\x20\x00\x6d\x00\ +\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x6d\x00\ +\xe9\x00\x72\x00\x65\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x15\x6d\x61\x78\x69\x6d\x75\x6d\x20\x66\x72\x61\x67\x6d\ +\x65\x6e\x74\x20\x73\x69\x7a\x65\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x3c\x00\x6d\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\x75\x00\ +\x6d\x00\x20\x00\x64\x01\x51\x00\x6c\x00\xe9\x00\x73\x00\x73\x00\ +\x7a\x00\xf6\x00\x67\x00\x20\x00\x61\x00\x20\x00\x74\x00\xf6\x00\ +\x72\x00\x65\x00\x64\x00\xe9\x00\x6b\x00\x68\x00\x65\x00\x7a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x6d\x69\x6e\x69\x6d\x75\x6d\ +\x20\x61\x6e\x67\x6c\x65\x20\x66\x6f\x72\x20\x61\x20\x66\x72\x61\ +\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x30\ +\x00\x61\x00\x20\x00\x74\x00\xf6\x00\x72\x00\x65\x00\x64\x00\xe9\ +\x00\x6b\x00\x20\x00\x6d\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\x75\ +\x00\x6d\x00\x20\x00\x6d\x00\xe9\x00\x72\x00\x65\x00\x74\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x6d\x69\x6e\x69\x6d\x75\ +\x6d\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\x61\x20\x66\x72\x61\x67\ +\x6d\x65\x6e\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x04\x00\ +\x6d\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x6d\x6d\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x6d\x00\xe9\x00\x72\ +\x00\x65\x00\x74\x00\x20\x00\x28\x00\x66\x00\x73\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x73\x69\x7a\x65\x20\x28\x66\x73\ +\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x02\x00\xb0\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x01\xb0\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x22\x00\x20\x00\x4f\x00\x4b\x00\x2d\x00\x72\x00\x61\ +\x00\x20\x00\x6b\x00\x61\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x74\ +\x00\x73\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x20\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\x00\x00\x00\x08\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x36\x00\x4f\x00\x70\ +\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\ +\x00\x6c\x00\x65\x00\x6d\x00\x20\x00\x68\x00\x6f\x00\x7a\x00\x7a\ +\x00\xe1\x00\x61\x00\x64\x00\xe1\x00\x73\x00\x61\x00\x2e\x00\x2e\ +\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x41\x64\x64\x20\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x45\x6c\x65\x6d\x65\x6e\x74\ +\x2e\x2e\x2e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\xa2\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\ +\x00\x43\x00\x41\x00\x44\x00\x20\x00\x6b\x00\xf3\x00\x64\x00\x64\ +\x00\x61\x00\x6c\x00\x20\x00\x61\x00\x64\x00\x6a\x00\x6f\x00\x6e\ +\x00\x20\x00\x68\x00\x6f\x00\x7a\x00\x7a\x00\xe1\x00\x73\x00\x20\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\ +\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x74\x00\x20\x00\xe9\ +\x00\x73\x00\x20\x00\x68\x00\x61\x00\x6a\x00\x74\x00\x73\x00\x61\ +\x00\x20\x00\x76\x00\xe9\x00\x67\x00\x72\x00\x65\x00\x20\x00\x61\ +\x00\x7a\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\ +\x00\x41\x00\x44\x00\x20\x00\x75\x00\x74\x00\x61\x00\x73\x00\xed\ +\x00\x74\x00\xe1\x00\x73\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x53\x41\x64\x64\x20\x61\x6e\x20\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\x62\x79\x20\x65\x6e\x74\ +\x65\x72\x69\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x63\ +\x6f\x64\x65\x20\x61\x6e\x64\x20\x65\x78\x65\x63\x75\x74\x69\x6e\ +\x67\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x62\ +\x69\x6e\x61\x72\x79\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x1c\x00\x46\x00\x6f\x00\x72\x00\x6d\ +\x00\x61\x00\x20\x00\x73\x00\x7a\x00\xed\x00\x6e\x00\x65\x00\x7a\ +\x00\xe9\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x6f\ +\x6c\x6f\x72\x20\x53\x68\x61\x70\x65\x73\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x58\x00\xc9\x00\ +\x72\x00\x76\x00\xe9\x00\x6e\x00\x79\x00\x65\x00\x73\x00\x73\x00\ +\xe9\x00\x67\x00\x20\x00\xe9\x00\x73\x00\x20\x00\x74\x00\xed\x00\ +\x70\x00\x75\x00\x73\x00\x20\x00\x73\x00\x7a\x00\x65\x00\x72\x00\ +\x69\x00\x6e\x00\x74\x00\x69\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x6d\x00\x61\x00\x20\x00\x73\x00\x7a\x00\xed\x00\x6e\x00\x65\x00\ +\x7a\x00\xe9\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x43\ +\x6f\x6c\x6f\x72\x20\x53\x68\x61\x70\x65\x73\x20\x62\x79\x20\x76\ +\x61\x6c\x69\x64\x69\x74\x79\x20\x61\x6e\x64\x20\x74\x79\x70\x65\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x36\x00\xc9\x00\x6c\x00\x65\x00\x6b\x00\x20\x00\x66\x00\ +\x65\x00\x6c\x00\xfc\x00\x6c\x00\x65\x00\x74\x00\x74\x00\xe9\x00\ +\x20\x00\x6b\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\ +\xe1\x00\x6c\x00\xe1\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\x67\x65\x73\ +\x20\x54\x6f\x20\x46\x61\x63\x65\x73\x07\x00\x00\x00\x08\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x36\x00\xc9\x00\x6c\ +\x00\x65\x00\x6b\x00\x20\x00\x66\x00\x65\x00\x6c\x00\xfc\x00\x6c\ +\x00\x65\x00\x74\x00\x74\x00\xe9\x00\x20\x00\x6b\x00\x6f\x00\x6e\ +\x00\x76\x00\x65\x00\x72\x00\x74\x00\xe1\x00\x6c\x00\xe1\x00\x73\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\x6f\x6e\x76\ +\x65\x72\x74\x20\x45\x64\x67\x65\x73\x20\x74\x6f\x20\x46\x61\x63\ +\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x4c\x00\x46\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\ +\x20\x00\x54\x00\x75\x00\x6c\x00\x61\x00\x6a\x00\x64\x00\x6f\x00\ +\x6e\x00\x73\x00\xe1\x00\x67\x00\x20\x00\x6c\x00\xe9\x00\x74\x00\ +\x72\x00\x65\x00\x68\x00\x6f\x00\x7a\x00\xe1\x00\x73\x00\x20\x00\ +\x66\x00\x69\x00\x6e\x00\x6f\x00\x6d\x00\xed\x00\x74\x00\xe1\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x43\x72\x65\x61\x74\ +\x65\x20\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\ +\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x26\x00\x48\x00\x65\x00\x6c\x00\ +\x79\x00\x7a\x00\x65\x00\x74\x00\x65\x00\x6b\x00\x20\x00\x6b\x00\ +\x69\x00\x62\x00\x6f\x00\x6e\x00\x74\x00\xe1\x00\x73\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x11\x45\x78\x70\x61\x6e\x64\x20\ +\x50\x6c\x61\x63\x65\x6d\x65\x6e\x74\x73\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x70\x00\x41\x00\ +\x20\x00\x54\x00\x75\x00\x6c\x00\x61\x00\x6a\x00\x64\x00\x6f\x00\ +\x6e\x00\x73\x00\xe1\x00\x67\x00\x46\x00\x61\x00\x20\x00\x6d\x00\ +\x69\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x6c\x00\ +\x73\x00\xf3\x00\x62\x00\x62\x00\x72\x00\x65\x00\x6e\x00\x64\x01\ +\x71\x00\x20\x00\x68\x00\x65\x00\x6c\x00\x79\x00\x7a\x00\x65\x00\ +\x74\x00\xe9\x00\x6e\x00\x65\x00\x6b\x00\x20\x00\x6b\x00\x69\x00\ +\x62\x00\x6f\x00\x6e\x00\x74\x00\xe1\x00\x73\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x2f\x45\x78\x70\x61\x6e\x64\x20\x61\x6c\ +\x6c\x20\x70\x6c\x61\x63\x65\x6d\x65\x6e\x74\x73\x20\x64\x6f\x77\ +\x6e\x77\x61\x72\x64\x73\x20\x74\x68\x65\x20\x46\x65\x61\x74\x75\ +\x72\x65\x54\x72\x65\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x48\x00\x4b\x00\xe9\x00\x72\x00\ +\x65\x00\x6d\x00\x20\x00\x76\x00\xe1\x00\x6c\x00\x61\x00\x73\x00\ +\x73\x00\x7a\x00\x6f\x00\x6e\x00\x20\x00\x6b\x00\x69\x00\x20\x00\ +\x65\x00\x6c\x01\x51\x00\x73\x00\x7a\x01\x51\x00\x72\x00\x20\x00\ +\x33\x00\x20\x00\x74\x00\xe1\x00\x72\x00\x67\x00\x79\x00\x61\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x50\x6c\x65\x61\x73\ +\x65\x20\x73\x65\x6c\x65\x63\x74\x20\x33\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x66\x69\x72\x73\x74\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x20\x00\x4f\x00\x4b\x00\ +\x2d\x00\x72\x00\x61\x00\x20\x00\x6b\x00\x61\x00\x74\x00\x74\x00\ +\x69\x00\x6e\x00\x74\x00\x73\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x56\ +\x00\x56\x00\x65\x00\x74\x00\xed\x00\x74\x00\xe9\x00\x73\x00\x20\ +\x00\x6d\x00\xe9\x00\x67\x00\x20\x00\x6e\x00\x69\x00\x6e\x00\x63\ +\x00\x73\x00\x20\x00\x6b\x00\xf3\x00\x64\x00\x6f\x00\x6c\x00\x76\ +\x00\x61\x00\x2c\x00\x20\x00\x76\x00\xe1\x00\x72\x00\x6a\x00\x75\ +\x00\x6b\x00\x20\x00\x50\x00\x65\x00\x74\x00\x65\x00\x20\x00\x4c\ +\x00\x69\x00\x2d\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\ +\x50\x72\x6f\x6a\x65\x63\x74\x69\x6f\x6e\x20\x4e\x6f\x74\x20\x79\ +\x65\x74\x20\x43\x6f\x64\x65\x64\x20\x77\x61\x69\x74\x69\x6e\x67\ +\x20\x66\x6f\x72\x20\x50\x65\x74\x65\x72\x20\x4c\x69\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x38\ +\x00\x46\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x20\x00\x54\x00\x75\ +\x00\x6c\x00\x61\x00\x6a\x00\x64\x00\x6f\x00\x6e\x00\x73\x00\xe1\ +\x00\x67\x00\x20\x00\x6c\x00\xe9\x00\x74\x00\x72\x00\x65\x00\x68\ +\x00\x6f\x00\x7a\x00\xe1\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x14\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\ +\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x66\x00\x41\x00\x7a\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\ +\x20\x00\xe9\x00\x73\x00\x20\x00\x68\x00\x6f\x00\x7a\x00\x7a\x00\ +\xe1\x00\x20\x00\x74\x00\x61\x00\x72\x00\x74\x00\x6f\x00\x74\x00\ +\x7a\x00\xf3\x00\x20\x00\x61\x00\x6c\x00\x65\x00\x67\x00\x79\x00\ +\x73\x00\xe9\x00\x67\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x6b\x00\ +\x20\x00\x74\x00\xf6\x00\x72\x00\x6c\x00\xe9\x00\x73\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x21\x52\x65\x6d\x6f\x76\x65\x20\ +\x4f\x62\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\x74\x68\x65\x69\ +\x72\x20\x43\x68\x69\x6c\x64\x72\x65\x6e\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x92\x00\x41\x00\ +\x20\x00\x74\x00\xe1\x00\x72\x00\x67\x00\x79\x00\x61\x00\x74\x00\ +\x20\x00\x74\x00\xf6\x00\x72\x00\x6c\x00\x69\x00\x20\x00\xe9\x00\ +\x73\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x61\x00\x6d\x00\x65\x00\ +\x6e\x00\x6e\x00\x79\x00\x69\x00\x20\x00\x61\x00\x6c\x00\x65\x00\ +\x67\x00\x79\x00\x73\x00\xe9\x00\x67\x00\xe9\x00\x74\x00\x2c\x00\ +\x20\x00\x61\x00\x6d\x00\x65\x00\x6c\x00\x79\x00\x20\x00\x6e\x00\ +\x65\x00\x6d\x00\x20\x00\x74\x00\x65\x00\x72\x00\x74\x00\x6f\x00\ +\x7a\x00\x69\x00\x6b\x00\x20\x00\x6d\x00\xe1\x00\x73\x00\x20\x00\ +\x74\x00\xe1\x00\x72\x00\x67\x00\x79\x00\x68\x00\x6f\x00\x7a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x58\x52\x65\x6d\x6f\x76\x65\x73\ +\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\x61\x6c\x6c\x20\x63\x68\ +\x69\x6c\x64\x72\x65\x6e\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\ +\x6e\x6f\x74\x20\x72\x65\x66\x65\x72\x65\x6e\x63\x65\x64\x20\x66\ +\x72\x6f\x6d\x20\x6f\x74\x68\x65\x72\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x1a\x00\x54\x00\xe1\x00\x72\x00\x67\x00\x79\x00\x20\ +\x00\x63\x00\x73\x00\x65\x00\x72\x00\xe9\x00\x6a\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0e\x52\x65\x70\x6c\x61\x63\x65\x20\ +\x4f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\xa8\x00\x4f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x20\x00\x63\x00\x73\x00\ +\x65\x00\x72\x00\xe9\x00\x6a\x00\x65\x00\x20\x00\x61\x00\x20\x00\ +\x74\x00\x75\x00\x6c\x00\x61\x00\x6a\x00\x64\x00\x6f\x00\x6e\x00\ +\x73\x00\xe1\x00\x67\x00\x20\x00\x66\x00\xe1\x00\x62\x00\x61\x00\ +\x6e\x00\x2e\x00\x20\x00\x4b\x00\xe9\x00\x72\x00\x65\x00\x6d\x00\ +\x20\x00\x76\x00\xe1\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x7a\x00\ +\x6f\x00\x6e\x00\x20\x00\x72\x00\xe9\x00\x67\x00\x69\x00\x2c\x00\ +\x20\x00\xfa\x00\x6a\x00\x20\x00\xe9\x00\x73\x00\x20\x00\xe1\x00\ +\x6c\x00\x6c\x00\x61\x00\x6e\x00\x64\x00\xf3\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x75\x00\x6d\x00\x6f\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x52\x65\x70\x6c\x61\ +\x63\x65\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x20\ +\x74\x68\x65\x20\x46\x65\x61\x74\x75\x72\x65\x20\x54\x72\x65\x65\ +\x2e\x20\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\x20\ +\x6f\x6c\x64\x2c\x20\x6e\x65\x77\x20\x61\x6e\x64\x20\x70\x61\x72\ +\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3a\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\ +\x66\x00\x75\x00\x74\x00\x61\x00\x74\x00\xe1\x00\x73\x00\x61\x00\ +\x20\x00\x73\x00\x69\x00\x6b\x00\x65\x00\x72\x00\x74\x00\x65\x00\ +\x6c\x00\x65\x00\x6e\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x18\x52\x75\x6e\x6e\x69\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x20\x66\x61\x69\x6c\x65\x64\x0a\x07\x00\x00\x00\x08\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x4e\x00\x65\ +\x00\x6d\x00\x20\x00\x74\x00\xe1\x00\x6d\x00\x6f\x00\x67\x00\x61\ +\x00\x74\x00\x6f\x00\x74\x00\x74\x00\x20\x00\x66\x00\x75\x00\x6e\ +\x00\x6b\x00\x63\x00\x69\x00\xf3\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x14\x55\x6e\x73\x75\x70\x70\x6f\x72\x74\x65\x64\x20\x46\x75\ +\x6e\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\ +\x00\x00\x1b\x8b\ \x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ -\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ -\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ -\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ -\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ -\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ -\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ -\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x70\x78\ -\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\x70\ -\x78\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x35\x38\x32\ -\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x76\ -\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x33\x32\x22\x0a\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\x69\x6f\ -\x6e\x3d\x22\x30\x2e\x34\x38\x2e\x33\x2e\x31\x20\x72\x39\x38\x38\ -\x36\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\ -\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x65\x72\x65\x6e\ -\x63\x65\x73\x2d\x64\x72\x61\x66\x74\x2e\x73\x76\x67\x22\x0a\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6f\x75\x74\x70\x75\ -\x74\x5f\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x3d\x22\x6f\x72\x67\ -\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x75\x74\x70\x75\x74\ -\x2e\x73\x76\x67\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x3e\ -\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x64\x65\x66\x73\x35\x38\x32\x33\x22\x3e\x0a\x20\x20\x20\ -\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x36\x33\x34\x39\x22\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ -\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\ -\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ -\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x73\x74\x6f\x70\x36\x33\x35\x31\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ -\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\ -\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x3b\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ -\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x73\x74\x6f\x70\x36\x33\x35\x33\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x33\x33\x37\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ -\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ -\x66\x66\x66\x66\x36\x36\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x33\x37\ -\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ -\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x61\ -\x63\x66\x32\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ -\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x33\x38\x31\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\ -\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\ -\x3d\x22\x30\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\ -\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x36\x34\x20\x3a\x20\x33\x32\x20\ -\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\ -\x67\x69\x6e\x3d\x22\x33\x32\x20\x3a\x20\x32\x31\x2e\x33\x33\x33\ -\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x35\ -\x38\x32\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\ -\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\ -\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\ -\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x36\ -\x33\x34\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x36\x33\ -\x35\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\ -\x31\x30\x33\x2e\x36\x33\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x63\x79\x3d\x22\x31\x34\x32\x34\x2e\x34\x34\x36\x35\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x31\x31\x30\x33\x2e\ -\x36\x33\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\ -\x22\x31\x34\x32\x34\x2e\x34\x34\x36\x35\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x72\x3d\x22\x31\x39\x34\x2e\x34\x30\x36\x31\x34\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\ -\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ -\x78\x28\x30\x2e\x39\x39\x38\x33\x37\x38\x32\x35\x2c\x30\x2e\x30\ -\x30\x36\x34\x35\x33\x32\x32\x2c\x2d\x30\x2e\x30\x30\x31\x32\x33\ -\x34\x36\x33\x2c\x30\x2e\x31\x39\x31\x30\x30\x39\x31\x39\x2c\x33\ -\x2e\x35\x34\x38\x34\x37\x38\x36\x2c\x31\x31\x34\x35\x2e\x32\x34\ -\x32\x32\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ -\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\ -\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x22\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\ -\x38\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ -\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ -\x6c\x6f\x72\x3a\x23\x37\x31\x62\x32\x66\x38\x3b\x73\x74\x6f\x70\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\ -\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ -\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ -\x72\x3a\x23\x30\x30\x32\x37\x39\x35\x3b\x73\x74\x6f\x70\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\ -\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\ -\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x36\x36\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\ -\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\ -\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ -\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ -\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x36\x31\x38\x36\x35\x39\x38\ -\x2c\x30\x2e\x39\x36\x36\x36\x35\x34\x32\x2c\x2d\x31\x2e\x30\x33\ -\x33\x32\x34\x36\x32\x2c\x30\x2e\x36\x36\x31\x32\x37\x38\x36\x2c\ -\x2d\x33\x32\x37\x2e\x32\x37\x35\x36\x38\x2c\x2d\x32\x35\x35\x2e\ -\x38\x34\x31\x33\x36\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\ -\x78\x3d\x22\x32\x38\x32\x2e\x36\x34\x35\x38\x34\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x32\x39\x2e\x31\x34\x39\x30\ -\x34\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\ -\x38\x32\x2e\x36\x34\x35\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x66\x79\x3d\x22\x32\x39\x2e\x31\x34\x39\x30\x34\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x31\x39\x2e\x35\x37\x31\ -\x34\x32\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x33\x36\x38\x32\x22\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ -\x6f\x72\x3a\x23\x66\x66\x36\x64\x30\x66\x3b\x73\x74\x6f\x70\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ -\x70\x33\x36\x38\x34\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ -\x3a\x23\x66\x66\x31\x30\x30\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\ -\x36\x38\x36\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\ -\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\ -\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\ -\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\ -\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x33\x36\x38\x32\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x33\x38\x31\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ -\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\ -\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ -\x28\x31\x2e\x31\x31\x34\x39\x32\x31\x39\x2c\x30\x2e\x32\x37\x32\ -\x32\x33\x30\x36\x2c\x2d\x30\x2e\x37\x35\x30\x37\x31\x37\x31\x2c\ -\x33\x2e\x30\x37\x34\x35\x36\x33\x39\x2c\x2d\x34\x37\x31\x2e\x30\ -\x38\x36\x32\x39\x2c\x2d\x31\x34\x38\x2e\x33\x32\x38\x36\x33\x29\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x37\x30\ -\x2e\x35\x38\x33\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\ -\x79\x3d\x22\x33\x33\x2e\x38\x39\x39\x39\x38\x36\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x37\x30\x2e\x35\x38\x33\ -\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x33\ -\x33\x2e\x38\x39\x39\x39\x38\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x72\x3d\x22\x31\x39\x2e\x35\x37\x31\x34\x32\x38\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\ -\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ -\x33\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x33\x32\ -\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\ -\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\ -\x36\x34\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\ -\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x33\x32\x20\ -\x3a\x20\x32\x31\x2e\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\ -\x70\x65\x63\x74\x69\x76\x65\x33\x31\x34\x38\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ -\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\ -\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x64\x65\x66\x69\x74\x65\x6d\ -\x31\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\ -\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x34\x31\ -\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\ -\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\ -\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x63\x78\x3d\x22\x36\x33\x32\x2e\x37\x38\x31\x30\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x34\x38\x34\x2e\x34\x30\ -\x39\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\ -\x36\x33\x32\x2e\x37\x38\x31\x30\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x66\x79\x3d\x22\x34\x38\x34\x2e\x34\x30\x39\x30\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x35\x34\x30\x2e\x32\ -\x37\x38\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\ -\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\ -\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\ -\x66\x69\x74\x65\x6d\x31\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x66\x79\x3d\x22\x34\x38\x34\x2e\x34\x30\x39\x30\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x36\x33\x32\x2e\x37\x38\ -\x31\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x35\ -\x34\x30\x2e\x32\x37\x38\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x63\x79\x3d\x22\x34\x38\x34\x2e\x34\x30\x39\x30\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x36\x33\x32\x2e\x37\ -\x38\x31\x30\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ -\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x73\x74\x6f\x70\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\ -\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ -\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ -\x34\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ -\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x65\x64\x65\x64\ -\x65\x64\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x3c\x2f\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\ -\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x64\x65\ -\x66\x69\x74\x65\x6d\x31\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x33\x34\x31\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ -\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ -\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x33\x34\x32\x2e\x36\x34\x39\ -\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x37\ -\x33\x32\x2e\x31\x32\x39\x30\x33\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x78\x32\x3d\x22\x33\x37\x39\x2e\x32\x34\x31\x30\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x36\x38\x36\x2e\x38\ -\x33\x30\x30\x32\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ -\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\ -\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\ -\x66\x69\x74\x65\x6d\x31\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x79\x32\x3d\x22\x36\x38\x36\x2e\x38\x33\x30\x30\x32\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x33\x37\x39\x2e\x32\x34\ -\x31\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\ -\x37\x33\x32\x2e\x31\x32\x39\x30\x33\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x78\x31\x3d\x22\x33\x34\x32\x2e\x36\x34\x39\x39\x39\x22\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\ -\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ -\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ -\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\ -\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x35\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ -\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\ -\x63\x6f\x6c\x6f\x72\x3a\x23\x39\x38\x39\x38\x39\x38\x3b\x73\x74\ -\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\ -\x30\x30\x30\x30\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\ -\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\ -\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ -\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\ -\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x64\x65\x66\x69\x74\x65\x6d\ -\x31\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\ -\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x34\x31\ -\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\ -\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\ -\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x63\x78\x3d\x22\x31\x30\x33\x37\x2e\x32\x32\x30\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x32\x31\x31\x2e\x30\x38\ -\x38\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\ -\x31\x30\x33\x37\x2e\x32\x32\x30\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x66\x79\x3d\x22\x32\x31\x31\x2e\x30\x38\x38\x30\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x31\x31\x36\x34\x2e\ -\x32\x38\x30\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\ -\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\ -\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\ -\x66\x69\x74\x65\x6d\x31\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x66\x79\x3d\x22\x32\x31\x31\x2e\x30\x38\x38\x30\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x33\x37\x2e\x32\ -\x32\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x31\ -\x31\x36\x34\x2e\x32\x38\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x63\x79\x3d\x22\x32\x31\x31\x2e\x30\x38\x38\x30\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x33\x37\x2e\ -\x32\x32\x30\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ -\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x73\x74\x6f\x70\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\ -\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ -\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ -\x34\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ -\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x61\x61\x61\x61\ -\x61\x61\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x3c\x2f\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\ -\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x64\x65\ -\x66\x69\x74\x65\x6d\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x33\x34\x31\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ -\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ -\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x32\x37\x32\x2e\x35\x39\x32\ -\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x34\ -\x35\x32\x2e\x33\x38\x38\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x78\x32\x3d\x22\x31\x39\x33\x2e\x32\x37\x36\x39\x39\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x35\x31\x36\x2e\x33\ -\x37\x30\x30\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ -\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\ -\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\ -\x66\x69\x74\x65\x6d\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x79\x32\x3d\x22\x35\x31\x36\x2e\x33\x37\x30\x30\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x31\x39\x33\x2e\x32\x37\ -\x36\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\ -\x34\x35\x32\x2e\x33\x38\x38\x30\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x78\x31\x3d\x22\x32\x37\x32\x2e\x35\x39\x32\x30\x31\x22\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ -\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ -\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x36\x65\x36\x65\x36\ -\x65\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ -\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\ -\x63\x6f\x6c\x6f\x72\x3a\x23\x64\x38\x64\x38\x64\x38\x3b\x73\x74\ -\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\ -\x30\x30\x30\x30\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\ -\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\ -\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ -\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\ -\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x64\x65\x66\x69\x74\x65\x6d\ -\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ -\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x34\x32\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\ -\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\ -\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x78\x31\x3d\x22\x31\x30\x31\x34\x2e\x34\x33\x30\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x34\x39\x34\x2e\x37\x31\ -\x33\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\ -\x31\x30\x37\x33\x2e\x30\x31\x30\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x79\x32\x3d\x22\x34\x39\x34\x2e\x37\x31\x33\x30\x31\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ -\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ -\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x69\x74\x65\x6d\ -\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x34\ -\x39\x34\x2e\x37\x31\x33\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x78\x32\x3d\x22\x31\x30\x37\x33\x2e\x30\x31\x30\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x34\x39\x34\x2e\x37\ -\x31\x33\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\ -\x22\x31\x30\x31\x34\x2e\x34\x33\x30\x30\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x33\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\ -\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ -\x6f\x6c\x6f\x72\x3a\x23\x36\x36\x36\x36\x36\x36\x3b\x73\x74\x6f\ -\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\ -\x30\x30\x30\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ -\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x73\x74\x6f\x70\x35\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\ -\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ -\x3a\x23\x64\x63\x64\x63\x64\x63\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\ -\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\ -\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\ -\x66\x3d\x22\x23\x64\x65\x66\x69\x74\x65\x6d\x31\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x34\x32\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\ -\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\ -\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x37\ -\x33\x32\x2e\x31\x35\x36\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x79\x31\x3d\x22\x33\x35\x31\x2e\x39\x33\x39\x30\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x39\x30\x39\x2e\x35\ -\x39\x33\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\ -\x22\x33\x35\x31\x2e\x39\x33\x39\x30\x30\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\ -\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\ -\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x64\x65\x66\x69\x74\x65\x6d\x31\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x33\x35\x31\x2e\x39\x33\ -\x39\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\ -\x39\x30\x39\x2e\x35\x39\x33\x39\x39\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x79\x31\x3d\x22\x33\x35\x31\x2e\x39\x33\x39\x30\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x37\x33\x32\x2e\ -\x31\x35\x36\x30\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ -\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x73\x74\x6f\x70\x35\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\ -\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ -\x23\x36\x37\x36\x37\x36\x37\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ -\x70\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ -\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x64\x33\x64\ -\x33\x64\x33\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\ -\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\ -\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x64\ -\x65\x66\x69\x74\x65\x6d\x31\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x33\x34\x32\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\ -\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x33\x37\x30\x2e\x30\x32\ -\x32\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\ -\x33\x38\x37\x2e\x32\x37\x33\x30\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x78\x32\x3d\x22\x35\x38\x31\x2e\x33\x32\x33\x39\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x32\x39\x31\x2e\ -\x39\x37\x36\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\ -\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\ -\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\ -\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\ -\x65\x66\x69\x74\x65\x6d\x31\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x79\x32\x3d\x22\x32\x39\x31\x2e\x39\x37\x36\x39\x39\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x35\x38\x31\x2e\x33\ -\x32\x33\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\ -\x22\x33\x38\x37\x2e\x32\x37\x33\x30\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x78\x31\x3d\x22\x33\x37\x30\x2e\x30\x32\x32\x30\x30\ -\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ -\x35\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ -\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x36\x33\x36\x33\ -\x36\x33\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x36\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ -\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ -\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x64\x36\x64\x36\x64\x36\x3b\x73\ -\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\ -\x30\x30\x30\x30\x30\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ -\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\ -\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\ -\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\ -\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x64\x65\x66\x69\x74\x65\ -\x6d\x31\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x34\ -\x32\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ -\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\ -\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x78\x31\x3d\x22\x31\x30\x34\x38\x2e\x37\x32\x30\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x36\x32\x39\x2e\x30\ -\x32\x38\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\ -\x22\x31\x31\x32\x37\x2e\x39\x38\x30\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x79\x32\x3d\x22\x35\x38\x33\x2e\x37\x35\x32\x39\x39\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\ -\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x69\x74\x65\ -\x6d\x31\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\ -\x35\x38\x33\x2e\x37\x35\x32\x39\x39\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x78\x32\x3d\x22\x31\x31\x32\x37\x2e\x39\x38\x30\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x36\x32\x39\x2e\ -\x30\x32\x38\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\ -\x3d\x22\x31\x30\x34\x38\x2e\x37\x32\x30\x30\x22\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x36\x32\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ -\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\ -\x63\x6f\x6c\x6f\x72\x3a\x23\x35\x65\x35\x65\x35\x65\x3b\x73\x74\ -\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\ -\x30\x30\x30\x30\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x73\x74\x6f\x70\x36\x33\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\ -\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ -\x72\x3a\x23\x65\x64\x65\x64\x65\x64\x3b\x73\x74\x6f\x70\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\ -\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\ -\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\ -\x65\x66\x3d\x22\x23\x64\x65\x66\x69\x74\x65\x6d\x32\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\ -\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x34\x32\x38\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\ -\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\ -\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\ -\x31\x32\x39\x2e\x36\x38\x37\x30\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x79\x31\x3d\x22\x36\x33\x36\x2e\x39\x35\x33\x39\x38\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x32\x32\x30\x2e\ -\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\ -\x3d\x22\x35\x38\x34\x2e\x34\x30\x39\x39\x37\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ -\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\ -\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x64\x65\x66\x69\x74\x65\x6d\x32\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x35\x38\x34\x2e\x34\ -\x30\x39\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\ -\x22\x32\x32\x30\x2e\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x79\x31\x3d\x22\x36\x33\x36\x2e\x39\x35\x33\x39\x38\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x31\x32\x39\ -\x2e\x36\x38\x37\x30\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ -\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x73\x74\x6f\x70\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\ -\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ -\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ -\x6f\x70\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ -\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x62\x62\ -\x62\x62\x62\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\ -\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\ -\x64\x65\x66\x69\x74\x65\x6d\x32\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x33\x34\x33\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ -\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x32\x38\x30\x2e\x30\ -\x34\x34\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\ -\x22\x34\x31\x38\x2e\x36\x39\x38\x30\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x78\x32\x3d\x22\x31\x32\x38\x2e\x30\x35\x34\x39\x39\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x34\x38\x34\ -\x2e\x37\x31\x36\x30\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ -\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\ -\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\ -\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x64\x65\x66\x69\x74\x65\x6d\x32\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x79\x32\x3d\x22\x34\x38\x34\x2e\x37\x31\x36\x30\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x31\x32\x38\x2e\ -\x30\x35\x34\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\ -\x3d\x22\x34\x31\x38\x2e\x36\x39\x38\x30\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x78\x31\x3d\x22\x32\x38\x30\x2e\x30\x34\x34\x30\ -\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ -\x70\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ -\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x36\x36\x36\ -\x36\x36\x36\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x36\x39\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ -\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ -\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x64\x38\x64\x38\x64\x38\x3b\ -\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\ -\x30\x30\x30\x30\x30\x30\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ -\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\ -\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x64\x65\x66\x69\x74\ -\x65\x6d\x32\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\ -\x34\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ -\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\ -\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x78\x31\x3d\x22\x37\x38\x33\x2e\x37\x31\x36\x30\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x31\x30\x35\x2e\ -\x34\x38\x36\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\ -\x3d\x22\x35\x37\x36\x2e\x31\x34\x38\x39\x39\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x79\x32\x3d\x22\x33\x31\x33\x2e\x32\x37\x36\x30\ -\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\ -\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ -\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x69\x74\ -\x65\x6d\x32\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\ -\x22\x33\x31\x33\x2e\x32\x37\x36\x30\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x78\x32\x3d\x22\x35\x37\x36\x2e\x31\x34\x38\x39\x39\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x31\x30\x35\ -\x2e\x34\x38\x36\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ -\x31\x3d\x22\x37\x38\x33\x2e\x37\x31\x36\x30\x30\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x37\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ -\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ -\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x35\x61\x35\x61\x35\x61\x3b\x73\ -\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\ -\x30\x30\x30\x30\x30\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x73\x74\x6f\x70\x37\x32\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\ -\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ -\x6f\x72\x3a\x23\x63\x37\x63\x37\x63\x37\x3b\x73\x74\x6f\x70\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\ -\x30\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\ -\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\ -\x72\x65\x66\x3d\x22\x23\x64\x65\x66\x69\x74\x65\x6d\x32\x33\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x34\x33\x34\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\ -\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\ -\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\ -\x22\x31\x31\x37\x30\x2e\x39\x31\x30\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x79\x31\x3d\x22\x34\x37\x36\x2e\x34\x36\x35\x30\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x31\x30\x34\ -\x39\x2e\x38\x34\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\ -\x32\x3d\x22\x35\x34\x39\x2e\x33\x37\x37\x39\x39\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ -\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\ -\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x69\x74\x65\x6d\x32\x33\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x35\x34\x39\x2e\ -\x33\x37\x37\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\ -\x3d\x22\x31\x30\x34\x39\x2e\x38\x34\x30\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x79\x31\x3d\x22\x34\x37\x36\x2e\x34\x36\x35\x30\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x31\x31\ -\x37\x30\x2e\x39\x31\x30\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x73\x74\x6f\x70\x37\x34\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\ -\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ -\x72\x3a\x23\x35\x66\x35\x66\x35\x66\x3b\x73\x74\x6f\x70\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\ -\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ -\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ -\x74\x6f\x70\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x65\ -\x62\x65\x62\x65\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\ -\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\ -\x23\x64\x65\x66\x69\x74\x65\x6d\x32\x34\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x33\x34\x33\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\ -\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x31\x30\x39\x34\ -\x2e\x32\x35\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\ -\x3d\x22\x32\x37\x30\x2e\x38\x35\x34\x30\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x78\x32\x3d\x22\x39\x39\x32\x2e\x34\x38\x39\x30\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x33\x38\ -\x30\x2e\x34\x37\x31\x39\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\ -\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\ -\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x64\x65\x66\x69\x74\x65\x6d\x32\x34\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x79\x32\x3d\x22\x33\x38\x30\x2e\x34\x37\x31\x39\x38\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x39\x39\x32\ -\x2e\x34\x38\x39\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\ -\x31\x3d\x22\x32\x37\x30\x2e\x38\x35\x34\x30\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x31\x30\x39\x34\x2e\x32\x35\ -\x30\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ -\x6f\x70\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ -\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x36\x61\ -\x36\x61\x36\x61\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x37\x38\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ -\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ -\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x65\x36\x65\x36\x65\x36\ -\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\ -\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\ -\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ -\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x64\x65\x66\x69\ -\x74\x65\x6d\x32\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x33\x34\x33\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ -\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\ -\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x78\x31\x3d\x22\x31\x36\x34\x2e\x30\x31\x33\x30\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x34\x31\x32\ -\x2e\x39\x31\x39\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ -\x32\x3d\x22\x33\x30\x38\x2e\x37\x35\x30\x30\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x33\x33\x37\x2e\x36\x30\x39\ -\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\ -\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x69\ -\x74\x65\x6d\x32\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\ -\x3d\x22\x33\x33\x37\x2e\x36\x30\x39\x39\x39\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x78\x32\x3d\x22\x33\x30\x38\x2e\x37\x35\x30\x30\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x34\x31\ -\x32\x2e\x39\x31\x39\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x78\x31\x3d\x22\x31\x36\x34\x2e\x30\x31\x33\x30\x30\x22\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x38\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ -\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ -\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\ -\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\ -\x30\x30\x30\x30\x30\x30\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x38\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\ -\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ -\x6c\x6f\x72\x3a\x23\x62\x66\x62\x66\x62\x66\x3b\x73\x74\x6f\x70\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\ -\x30\x30\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\ -\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\ -\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\ -\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\ -\x68\x72\x65\x66\x3d\x22\x23\x64\x65\x66\x69\x74\x65\x6d\x32\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x34\x34\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\ -\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\ -\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\ -\x3d\x22\x35\x33\x30\x2e\x37\x36\x30\x39\x39\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x79\x31\x3d\x22\x33\x34\x36\x2e\x33\x30\x33\x39\ -\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x32\x39\ -\x33\x2e\x33\x37\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x79\x32\x3d\x22\x33\x36\x30\x2e\x32\x37\x34\x39\x39\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ -\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\ -\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x69\x74\x65\x6d\x32\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x33\x36\x30\ -\x2e\x32\x37\x34\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ -\x32\x3d\x22\x32\x39\x33\x2e\x33\x37\x30\x30\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x33\x34\x36\x2e\x33\x30\x33\ -\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x35\ -\x33\x30\x2e\x37\x36\x30\x39\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x73\x74\x6f\x70\x38\x33\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\ -\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ -\x6f\x72\x3a\x23\x35\x66\x35\x66\x35\x66\x3b\x73\x74\x6f\x70\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\ -\x30\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ -\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x73\x74\x6f\x70\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\ -\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ -\x65\x35\x65\x35\x65\x35\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ -\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\ -\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\ -\x22\x23\x64\x65\x66\x69\x74\x65\x6d\x32\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x33\x34\x34\x32\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\ -\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x39\x32\x31\ -\x2e\x30\x39\x31\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\ -\x31\x3d\x22\x34\x30\x33\x2e\x31\x38\x37\x39\x39\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x39\x38\x35\x2e\x39\x38\x31\ -\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x33\ -\x31\x37\x2e\x34\x34\x36\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\ -\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\ -\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x64\x65\x66\x69\x74\x65\x6d\x32\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x79\x32\x3d\x22\x33\x31\x37\x2e\x34\x34\x36\x39\ -\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x39\x38\ -\x35\x2e\x39\x38\x31\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x79\x31\x3d\x22\x34\x30\x33\x2e\x31\x38\x37\x39\x39\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x39\x32\x31\x2e\x30\x39\ -\x31\x30\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ -\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ -\x74\x6f\x70\x38\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x37\ -\x65\x37\x65\x37\x65\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x38\ -\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ -\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ -\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x65\x35\x65\x35\x65\ -\x35\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\ -\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x64\x65\x66\ -\x69\x74\x65\x6d\x33\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x33\x34\x34\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ -\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\ -\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\ -\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\ -\x30\x2c\x30\x2c\x31\x2e\x30\x31\x36\x30\x33\x38\x2c\x30\x2c\x2d\ -\x31\x31\x2e\x37\x33\x38\x35\x35\x29\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x78\x31\x3d\x22\x32\x38\x37\x2e\x35\x30\x30\x30\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x36\x33\x36\x2e\ -\x37\x30\x36\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\ -\x3d\x22\x39\x38\x30\x2e\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x79\x32\x3d\x22\x36\x33\x36\x2e\x37\x30\x36\x39\ -\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\ -\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ -\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x69\x74\ -\x65\x6d\x33\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\ -\x22\x36\x33\x36\x2e\x37\x30\x36\x39\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x78\x32\x3d\x22\x39\x38\x30\x2e\x30\x30\x30\x30\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x36\x33\x36\ -\x2e\x37\x30\x36\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ -\x31\x3d\x22\x32\x38\x37\x2e\x35\x30\x30\x30\x30\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x39\x35\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ -\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ -\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x34\x36\x34\x36\x34\x36\x3b\x73\ -\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\ -\x30\x30\x30\x30\x30\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x73\x74\x6f\x70\x39\x36\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\ -\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ -\x6f\x72\x3a\x23\x63\x32\x63\x32\x63\x32\x3b\x73\x74\x6f\x70\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\ -\x30\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\ -\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\ -\x72\x65\x66\x3d\x22\x23\x64\x65\x66\x69\x74\x65\x6d\x32\x38\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\ -\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x34\x34\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\ -\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\ -\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\ -\x22\x31\x30\x39\x32\x2e\x37\x30\x34\x35\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x63\x79\x3d\x22\x36\x34\x2e\x38\x34\x35\x32\x38\x34\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x38\ -\x39\x2e\x34\x30\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ -\x79\x3d\x22\x36\x34\x2e\x38\x34\x34\x37\x36\x35\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x72\x3d\x22\x31\x32\x30\x32\x2e\x31\x35\x30\ -\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\ -\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ -\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x69\x74\ -\x65\x6d\x32\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\ -\x22\x33\x34\x35\x2e\x35\x36\x30\x30\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x34\x39\x2e\x37\x32\x30\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x31\x32\x30\x32\ -\x2e\x31\x35\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\ -\x3d\x22\x33\x34\x35\x2e\x35\x36\x30\x30\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x34\x39\x2e\x37\x32\x30\ -\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ -\x70\x38\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ -\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\ -\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x39\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ -\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ -\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x61\x38\x61\x38\x61\x38\x3b\ -\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\ -\x30\x30\x30\x30\x30\x30\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x2f\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ -\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\ -\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x64\x65\x66\x69\x74\ -\x65\x6d\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\ -\x34\x34\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ -\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\ -\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x78\x31\x3d\x22\x36\x34\x39\x2e\x34\x32\x39\x30\x32\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x38\x30\x37\x2e\ -\x34\x36\x36\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\ -\x3d\x22\x36\x35\x35\x2e\x33\x35\x31\x39\x39\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x79\x32\x3d\x22\x34\x38\x35\x2e\x39\x30\x39\x30\ -\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\ -\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ -\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x69\x74\ -\x65\x6d\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\ -\x22\x34\x38\x35\x2e\x39\x30\x39\x30\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x78\x32\x3d\x22\x36\x35\x35\x2e\x33\x35\x31\x39\x39\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x38\x30\x37\ -\x2e\x34\x36\x36\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ -\x31\x3d\x22\x36\x34\x39\x2e\x34\x32\x39\x30\x32\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x39\x32\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ -\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ -\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\ -\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\ -\x30\x30\x30\x30\x30\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x73\x74\x6f\x70\x39\x33\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\ -\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ -\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x31\x33\x37\x35\x36\x36\ -\x30\x30\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\ -\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\ -\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\ -\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\ -\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x33\x36\x38\x32\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x34\x31\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ -\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\ -\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ -\x28\x31\x2e\x31\x31\x34\x39\x32\x31\x39\x2c\x30\x2e\x32\x37\x32\ -\x32\x33\x30\x36\x2c\x2d\x30\x2e\x37\x35\x30\x37\x31\x37\x31\x2c\ -\x33\x2e\x30\x37\x34\x35\x36\x33\x39\x2c\x2d\x34\x37\x31\x2e\x30\ -\x38\x36\x32\x39\x2c\x2d\x31\x34\x38\x2e\x33\x32\x38\x36\x33\x29\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x37\x30\ -\x2e\x35\x38\x33\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\ -\x79\x3d\x22\x33\x33\x2e\x38\x39\x39\x39\x38\x36\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x37\x30\x2e\x35\x38\x33\ -\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x33\ -\x33\x2e\x38\x39\x39\x39\x38\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x72\x3d\x22\x31\x39\x2e\x35\x37\x31\x34\x32\x38\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ -\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\ -\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\ -\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x31\x33\x34\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\ -\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\ -\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ -\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\ -\x74\x72\x69\x78\x28\x30\x2e\x36\x31\x38\x36\x35\x39\x38\x2c\x30\ -\x2e\x39\x36\x36\x36\x35\x34\x32\x2c\x2d\x31\x2e\x30\x33\x33\x32\ -\x34\x36\x32\x2c\x30\x2e\x36\x36\x31\x32\x37\x38\x36\x2c\x2d\x33\ -\x32\x37\x2e\x32\x37\x35\x36\x38\x2c\x2d\x32\x35\x35\x2e\x38\x34\ -\x31\x33\x36\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\ -\x22\x32\x38\x32\x2e\x36\x34\x35\x38\x34\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x63\x79\x3d\x22\x32\x39\x2e\x31\x34\x39\x30\x34\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x38\x32\ -\x2e\x36\x34\x35\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ -\x79\x3d\x22\x32\x39\x2e\x31\x34\x39\x30\x34\x36\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x72\x3d\x22\x31\x39\x2e\x35\x37\x31\x34\x32\ -\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\ -\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\ -\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\ -\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\ -\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\ -\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x31\x39\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x2e\ -\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\ -\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\ -\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x39\ -\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x72\x3d\x22\x32\x35\x2e\x31\x37\x34\x39\x39\x39\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\ -\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\ -\x55\x73\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\ -\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\ -\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\ -\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\ -\x33\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\ -\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ -\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\ -\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x63\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x39\x2e\x35\x31\x37\ -\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\ -\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x66\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x32\x35\x2e\x31\ -\x37\x34\x39\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\ -\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ -\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\ -\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x33\x33\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x35\x33\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ -\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\ -\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x39\x2e\x35\ -\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ -\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\ -\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x32\x35\ -\x2e\x31\x37\x34\x39\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\ -\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x33\x33\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x35\x33\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ -\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ -\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\ -\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x39\ -\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x66\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x39\x2e\x35\x31\x37\ -\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\ -\x32\x35\x2e\x31\x37\x34\x39\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\ -\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\ -\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x35\x33\x33\x33\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ -\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x2e\x30\x33\ -\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\ -\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x39\x2e\x35\ -\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ -\x3d\x22\x32\x35\x2e\x31\x37\x34\x39\x39\x39\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ -\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\ -\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x35\x33\x33\x35\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\ -\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x2e\ -\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\ -\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\ -\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x39\ -\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x72\x3d\x22\x32\x35\x2e\x31\x37\x34\x39\x39\x39\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ -\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\ -\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\ -\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x33\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\ -\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\ -\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\ -\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x63\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x2e\x30\x33\ -\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\ -\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x72\x3d\x22\x32\x35\x2e\x31\x37\x34\x39\x39\x39\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\ -\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\ -\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x33\x39\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\ -\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\ -\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\ -\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x63\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x2e\ -\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ -\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x72\x3d\x22\x32\x35\x2e\x31\x37\x34\x39\x39\ -\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\ -\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\ -\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\ -\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\ -\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\ -\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x34\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\ -\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\ -\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\ -\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\ -\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x31\ -\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x66\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x32\x35\x2e\x31\x37\x34\ -\x39\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\ -\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\ -\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\ -\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\ -\x33\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\ -\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ -\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\ -\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x63\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x39\x2e\x35\x31\x37\ -\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\ -\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x66\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x32\x35\x2e\x31\ -\x37\x34\x39\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\ -\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ -\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\ -\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x33\x33\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x35\x33\x34\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ -\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\ -\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x39\x2e\x35\ -\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ -\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\ -\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x32\x35\ -\x2e\x31\x37\x34\x39\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\ -\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x33\x33\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x35\x33\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ -\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ -\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\ -\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x39\ -\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x66\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x39\x2e\x35\x31\x37\ -\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\ -\x32\x35\x2e\x31\x37\x34\x39\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\ -\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\ -\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x35\x33\x34\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ -\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x2e\x30\x33\ -\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\ -\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x39\x2e\x35\ -\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ -\x3d\x22\x32\x35\x2e\x31\x37\x34\x39\x39\x39\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ -\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\ -\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x35\x33\x35\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\ -\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x2e\ -\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\ -\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\ -\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x39\ -\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x72\x3d\x22\x32\x35\x2e\x31\x37\x34\x39\x39\x39\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ -\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\ -\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\ -\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x35\x33\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\ -\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\ -\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\ -\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x63\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x2e\x30\x33\ -\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\ -\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x72\x3d\x22\x32\x35\x2e\x31\x37\x34\x39\x39\x39\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\ -\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\ -\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x35\x35\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\ -\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\ -\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\ -\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x63\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x2e\ -\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ -\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x72\x3d\x22\x32\x35\x2e\x31\x37\x34\x39\x39\ -\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\ -\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\ -\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\ -\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\ -\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\ -\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x35\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\ -\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\ -\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\ -\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\ -\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x31\ -\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x66\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x32\x35\x2e\x31\x37\x34\ -\x39\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\ -\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\ -\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\ -\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\ -\x33\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\ -\x35\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ -\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\ -\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x63\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x39\x2e\x35\x31\x37\ -\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\ -\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x66\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x32\x35\x2e\x31\ -\x37\x34\x39\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\ -\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ -\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\ -\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x33\x33\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x35\x33\x36\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ -\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\ -\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x39\x2e\x35\ -\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ -\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\ -\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x32\x35\ -\x2e\x31\x37\x34\x39\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\ -\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x33\x33\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x35\x33\x36\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ -\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ -\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\ -\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x39\ -\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x66\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x39\x2e\x35\x31\x37\ -\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\ -\x32\x35\x2e\x31\x37\x34\x39\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\ -\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\ -\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x35\x33\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ -\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x2e\x30\x33\ -\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\ -\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x39\x2e\x35\ -\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ -\x3d\x22\x32\x35\x2e\x31\x37\x34\x39\x39\x39\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ -\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\ -\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x35\x33\x36\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\ -\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x2e\ -\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\ -\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\ -\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x39\ -\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x72\x3d\x22\x32\x35\x2e\x31\x37\x34\x39\x39\x39\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ -\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\ -\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\ -\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x36\x39\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\ -\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\ -\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\ -\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x63\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x2e\x30\x33\ -\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\ -\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x72\x3d\x22\x32\x35\x2e\x31\x37\x34\x39\x39\x39\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\ -\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\ -\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x37\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\ -\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\ -\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\ -\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x63\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x2e\ -\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ -\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x72\x3d\x22\x32\x35\x2e\x31\x37\x34\x39\x39\ -\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\ -\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\ -\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\ -\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\ -\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\ -\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x37\x33\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\ -\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\ -\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\ -\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\ -\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x31\ -\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x66\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x32\x35\x2e\x31\x37\x34\ -\x39\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\ -\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\ -\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\ -\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\ -\x33\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\ -\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ -\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\ -\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x63\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x39\x2e\x35\x31\x37\ -\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\ -\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x66\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x32\x35\x2e\x31\ -\x37\x34\x39\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\ -\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ -\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\ -\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x33\x33\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x35\x33\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ -\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\ -\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x39\x2e\x35\ -\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ -\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\ -\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x32\x35\ -\x2e\x31\x37\x34\x39\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\ -\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x33\x33\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x35\x33\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ -\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ -\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\ -\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x39\ -\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x66\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x39\x2e\x35\x31\x37\ -\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\ -\x32\x35\x2e\x31\x37\x34\x39\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\ -\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\ -\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x35\x33\x38\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ -\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x2e\x30\x33\ -\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\ -\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x39\x2e\x35\ -\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ -\x3d\x22\x32\x35\x2e\x31\x37\x34\x39\x39\x39\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ -\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\ -\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x35\x33\x38\x33\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\ -\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x2e\ -\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\ -\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\ -\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x39\ -\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x72\x3d\x22\x32\x35\x2e\x31\x37\x34\x39\x39\x39\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ -\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\ -\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\ -\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x38\x35\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\ -\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\ -\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\ -\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x63\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x2e\x30\x33\ -\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\ -\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x72\x3d\x22\x32\x35\x2e\x31\x37\x34\x39\x39\x39\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\ -\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\ -\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x38\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\ -\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\ -\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\ -\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x63\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x2e\ -\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ -\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x72\x3d\x22\x32\x35\x2e\x31\x37\x34\x39\x39\ -\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\ -\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\ -\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\ -\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\ -\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\ -\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x38\x39\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\ -\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\ -\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\ -\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\ -\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x31\ -\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x66\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x32\x35\x2e\x31\x37\x34\ -\x39\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\ -\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\ -\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\ -\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\ -\x33\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\ -\x39\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ -\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\ -\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x63\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x39\x2e\x35\x31\x37\ -\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\ -\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x66\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x32\x35\x2e\x31\ -\x37\x34\x39\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\ -\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ -\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\ -\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x33\x33\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x35\x33\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ -\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\ -\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x39\x2e\x35\ -\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ -\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\ -\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x32\x35\ -\x2e\x31\x37\x34\x39\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\ -\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x33\x33\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x35\x33\x39\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ -\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ -\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\ -\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x39\ -\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x66\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x39\x2e\x35\x31\x37\ -\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\ -\x32\x35\x2e\x31\x37\x34\x39\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\ -\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\ -\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x35\x33\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ -\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x2e\x30\x33\ -\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\ -\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x39\x2e\x35\ -\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ -\x3d\x22\x32\x35\x2e\x31\x37\x34\x39\x39\x39\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ -\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\ -\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x35\x33\x39\x39\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\ -\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x2e\ -\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\ -\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x2e\x30\x33\x31\x37\ -\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x39\ -\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x72\x3d\x22\x32\x35\x2e\x31\x37\x34\x39\x39\x39\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ -\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\ -\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\ -\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x34\x30\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\ -\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\ -\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\ -\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x63\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x2e\x30\x33\ -\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\ -\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x72\x3d\x22\x32\x35\x2e\x31\x37\x34\x39\x39\x39\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\ -\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\ -\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x34\x30\x33\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\ -\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\ -\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\ -\x22\x31\x30\x2e\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x63\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x31\x30\x2e\ -\x30\x33\x31\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ -\x79\x3d\x22\x39\x2e\x35\x31\x37\x32\x35\x37\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x72\x3d\x22\x32\x35\x2e\x31\x37\x34\x39\x39\ -\x39\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x64\x65\x66\x73\x3e\x0a\ -\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\ -\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\ -\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\ -\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\ -\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\ -\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\ -\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\ -\x6d\x3d\x22\x35\x2e\x38\x32\x37\x32\x36\x38\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\ -\x34\x33\x2e\x37\x32\x33\x36\x31\x39\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x33\x31\x2e\ -\x30\x31\x37\x36\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\ -\x65\x72\x3d\x22\x67\x33\x33\x36\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\ -\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\ -\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x37\x30\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x2d\x38\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x2d\x38\x22\x0a\x20\x20\x20\ -\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\ -\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x67\x75\x69\x64\x65\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\ -\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\ -\x65\x64\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x6d\x65\x74\ -\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\ -\x65\x74\x61\x64\x61\x74\x61\x35\x38\x32\x36\x22\x3e\x0a\x20\x20\ -\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\ -\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\ -\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\ -\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\ -\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\ -\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ -\x74\x69\x74\x6c\x65\x3e\x3c\x2f\x64\x63\x3a\x74\x69\x74\x6c\x65\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\ -\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\ -\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\ -\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\ -\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\ -\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\ -\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x67\x33\x33\x36\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\ -\x70\x6f\x72\x74\x2d\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x2f\ -\x68\x6f\x6d\x65\x2f\x79\x6f\x72\x69\x6b\x2f\x44\x6f\x63\x75\x6d\ -\x65\x6e\x74\x73\x2f\x4c\x61\x62\x2f\x44\x72\x61\x66\x74\x2f\x69\ -\x63\x6f\x6e\x73\x2f\x64\x72\x61\x66\x74\x2e\x70\x6e\x67\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x33\x2e\x32\ -\x34\x37\x38\x31\x35\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\ -\x64\x70\x69\x3d\x22\x33\x2e\x32\x34\x37\x38\x31\x35\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\ -\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x31\x33\x36\x37\x38\ -\x36\x33\x2c\x30\x2c\x30\x2c\x30\x2e\x31\x33\x36\x37\x38\x36\x33\ -\x2c\x2d\x31\x31\x39\x2e\x31\x35\x35\x31\x39\x2c\x2d\x31\x33\x34\ -\x2e\x38\x36\x39\x36\x32\x29\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\ -\x64\x70\x69\x3d\x22\x36\x2e\x32\x39\x32\x36\x34\x33\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\ -\x2e\x32\x39\x32\x36\x34\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\ -\x72\x74\x2d\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x2f\x68\x6f\ -\x6d\x65\x2f\x79\x6f\x72\x69\x6b\x2f\x44\x6f\x63\x75\x6d\x65\x6e\ -\x74\x73\x2f\x4c\x61\x62\x2f\x44\x72\x61\x66\x74\x2f\x69\x63\x6f\ -\x6e\x73\x2f\x64\x72\x61\x66\x74\x2e\x70\x6e\x67\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\ -\x33\x38\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ -\x22\x6d\x20\x31\x32\x38\x32\x2e\x39\x39\x31\x32\x2c\x31\x34\x32\ -\x35\x2e\x35\x36\x34\x38\x20\x63\x20\x2d\x34\x31\x2e\x36\x35\x39\ -\x39\x2c\x33\x31\x2e\x33\x31\x33\x32\x20\x2d\x37\x32\x2e\x37\x30\ -\x33\x36\x2c\x32\x34\x2e\x36\x35\x30\x35\x20\x2d\x31\x31\x38\x2e\ -\x31\x33\x38\x35\x2c\x32\x34\x2e\x32\x34\x33\x37\x20\x2d\x37\x30\ -\x2e\x30\x37\x39\x36\x2c\x2d\x30\x2e\x36\x32\x37\x35\x20\x2d\x31\ -\x33\x35\x2e\x38\x34\x33\x2c\x38\x2e\x36\x31\x37\x37\x20\x2d\x32\ -\x30\x31\x2e\x37\x33\x36\x37\x32\x2c\x2d\x31\x37\x2e\x35\x36\x33\ -\x39\x20\x2d\x34\x35\x2e\x36\x36\x36\x33\x2c\x2d\x31\x38\x2e\x31\ -\x34\x34\x36\x20\x2d\x32\x2e\x35\x32\x36\x33\x38\x2c\x2d\x33\x39\ -\x2e\x37\x38\x37\x32\x20\x32\x31\x2e\x32\x36\x31\x34\x2c\x2d\x33\ -\x38\x2e\x39\x30\x37\x32\x20\x35\x33\x2e\x35\x37\x35\x35\x32\x2c\ -\x31\x2e\x39\x38\x32\x31\x20\x31\x31\x37\x2e\x37\x38\x39\x32\x32\ -\x2c\x2d\x33\x2e\x30\x34\x36\x32\x20\x31\x36\x39\x2e\x32\x31\x36\ -\x38\x32\x2c\x30\x20\x34\x33\x2e\x35\x36\x34\x33\x2c\x32\x2e\x35\ -\x38\x30\x34\x20\x39\x38\x2e\x36\x31\x36\x37\x2c\x35\x2e\x38\x39\ -\x30\x37\x20\x31\x32\x39\x2e\x33\x39\x37\x2c\x33\x32\x2e\x32\x32\ -\x37\x34\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\ -\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x36\x33\ -\x35\x35\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\ -\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\ -\x73\x73\x73\x73\x63\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\ -\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ -\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\ -\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3a\x30\x2e\x31\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\ -\x72\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x67\x34\x35\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\ -\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ -\x28\x32\x35\x2e\x39\x30\x33\x39\x36\x31\x2c\x30\x2c\x30\x2c\x32\ -\x35\x2e\x39\x30\x33\x39\x36\x31\x2c\x2d\x34\x35\x30\x36\x2e\x32\ -\x35\x34\x31\x2c\x2d\x32\x35\x38\x34\x2e\x32\x37\x34\x29\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x35\x32\x36\x38\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\ -\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x32\x35\x33\ -\x34\x32\x36\x32\x2c\x30\x2c\x30\x2c\x30\x2e\x32\x35\x33\x34\x32\ -\x36\x32\x2c\x31\x37\x32\x33\x2e\x37\x33\x35\x39\x2c\x31\x33\x32\ -\x30\x2e\x39\x32\x33\x37\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3a\x31\x34\x2e\x36\x32\x31\x33\x34\x37\x34\ -\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ -\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ -\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x72\x6f\x6b\ -\x65\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\ -\x74\x72\x69\x78\x28\x2d\x32\x35\x2e\x39\x30\x33\x39\x36\x31\x2c\ -\x30\x2c\x30\x2c\x2d\x32\x35\x2e\x39\x30\x33\x39\x36\x31\x2c\x2d\ -\x32\x34\x33\x33\x2e\x39\x33\x36\x37\x2c\x2d\x35\x31\x31\x2e\x39\ -\x35\x37\x34\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x56\x69\x65\x77\x30\x30\x31\x22\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x33\ -\x37\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\ -\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\ -\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x72\x6f\x6b\x65\x3a\ -\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x2d\x32\x37\x2e\x39\x32\ -\x30\x33\x2c\x32\x2e\x32\x36\x33\x33\x39\x20\x31\x35\x2e\x39\x32\ -\x30\x33\x2c\x2d\x32\x33\x2e\x30\x34\x38\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\ -\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x72\ -\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x2d\x31\ -\x35\x2e\x39\x32\x30\x33\x2c\x32\x33\x2e\x30\x34\x38\x20\x32\x37\ -\x2e\x39\x32\x30\x33\x2c\x2d\x32\x2e\x32\x36\x33\x33\x39\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ -\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\ -\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x67\x33\x37\x34\x35\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x6e\x6f\x6e\x65\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x70\x61\x74\x68\x33\x37\x34\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x33\ -\x30\x2e\x34\x30\x35\x36\x2c\x2d\x37\x2e\x37\x35\x36\x37\x32\x20\ -\x41\x20\x31\x32\x2c\x36\x2e\x39\x32\x38\x32\x20\x36\x30\x20\x30\ -\x20\x30\x20\x31\x35\x2e\x39\x32\x30\x33\x2c\x2d\x32\x33\x2e\x30\ -\x34\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\ -\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\ -\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ -\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ -\x61\x74\x68\x33\x37\x34\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x35\x2e\ -\x39\x32\x30\x33\x2c\x2d\x32\x33\x2e\x30\x34\x38\x20\x61\x20\x31\ -\x32\x2c\x36\x2e\x39\x32\x38\x32\x30\x31\x36\x20\x36\x30\x20\x30\ -\x20\x30\x20\x31\x32\x2c\x32\x30\x2e\x37\x38\x34\x36\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\ -\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x72\x6f\x6b\ -\x65\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\ -\x37\x35\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x37\x2e\x39\x32\x30\x33\ -\x2c\x2d\x32\x2e\x32\x36\x33\x33\x39\x20\x61\x20\x31\x32\x2c\x36\ -\x2e\x39\x32\x38\x32\x20\x36\x30\x20\x30\x20\x30\x20\x32\x2e\x34\ -\x38\x35\x33\x2c\x2d\x35\x2e\x34\x39\x33\x33\x33\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\ -\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\ -\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x72\x6f\x6b\x65\x3a\ -\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x35\ -\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x64\x3d\x22\x6d\x20\x2d\x32\x37\x2e\x39\x32\x30\x33\x2c\ -\x32\x2e\x32\x36\x33\x33\x39\x20\x61\x20\x31\x32\x2c\x36\x2e\x39\ -\x32\x38\x32\x30\x31\x36\x20\x36\x30\x20\x30\x20\x30\x20\x31\x32\ -\x2c\x32\x30\x2e\x37\x38\x34\x36\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\ -\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\ -\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\ -\x34\x30\x33\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ -\x3a\x30\x2e\x35\x36\x34\x34\x34\x34\x34\x38\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ -\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\ -\x72\x69\x78\x28\x2d\x32\x35\x2e\x39\x30\x33\x39\x36\x31\x2c\x30\ -\x2c\x30\x2c\x2d\x32\x35\x2e\x39\x30\x33\x39\x36\x31\x2c\x2d\x32\ -\x34\x33\x33\x2e\x39\x33\x37\x32\x2c\x2d\x35\x31\x31\x2e\x39\x35\ -\x37\x31\x32\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x56\x69\x65\x77\x22\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x33\x36\x37\x38\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\ -\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x32\ -\x39\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\ -\x35\x36\x34\x34\x34\x34\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\ -\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ -\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x69\x72\x63\ -\x6c\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\ -\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x35\x33\x32\x37\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3a\x30\x2e\x35\x36\x34\x34\x34\x34\x34\x38\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ -\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\ -\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x63\x69\x72\x63\ -\x6c\x65\x33\x36\x38\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x32\x35\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\ -\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x63\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x3a\x63\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ -\x3a\x63\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x72\x78\x3d\x22\x32\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x72\x79\x3d\x22\x32\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x35\x2c\x30\ -\x20\x43\x20\x32\x35\x2c\x31\x33\x2e\x38\x30\x37\x31\x31\x39\x20\ -\x31\x33\x2e\x38\x30\x37\x31\x31\x39\x2c\x32\x35\x20\x30\x2c\x32\ -\x35\x20\x2d\x31\x33\x2e\x38\x30\x37\x31\x31\x39\x2c\x32\x35\x20\ -\x2d\x32\x35\x2c\x31\x33\x2e\x38\x30\x37\x31\x31\x39\x20\x2d\x32\ -\x35\x2c\x30\x20\x63\x20\x30\x2c\x2d\x31\x33\x2e\x38\x30\x37\x31\ -\x31\x39\x20\x31\x31\x2e\x31\x39\x32\x38\x38\x31\x2c\x2d\x32\x35\ -\x20\x32\x35\x2c\x2d\x32\x35\x20\x31\x33\x2e\x38\x30\x37\x31\x31\ -\x39\x2c\x30\x20\x32\x35\x2c\x31\x31\x2e\x31\x39\x32\x38\x38\x31\ -\x20\x32\x35\x2c\x32\x35\x20\x7a\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x33\x36\x38\x32\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\ -\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x34\x30\ -\x31\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\ -\x35\x36\x34\x34\x34\x34\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\ -\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ -\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\ -\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\ -\x33\x33\x31\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ -\x3a\x30\x2e\x35\x36\x34\x34\x34\x34\x34\x38\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ -\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x36\ -\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x64\x3d\x22\x4d\x20\x38\x2e\x34\x38\x35\x32\x38\x2c\ -\x31\x33\x2e\x30\x30\x38\x32\x20\x41\x20\x31\x32\x2c\x36\x2e\x39\ -\x32\x38\x32\x20\x2d\x31\x38\x30\x20\x30\x20\x30\x20\x2d\x31\x32\ -\x2c\x31\x37\x2e\x39\x30\x37\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\ -\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\ -\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x33\ -\x33\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\ -\x2e\x35\x36\x34\x34\x34\x34\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ -\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x36\x38\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x64\x3d\x22\x4d\x20\x2d\x31\x32\x2c\x31\x37\x2e\x39\x30\x37\ -\x32\x20\x41\x20\x31\x32\x2c\x36\x2e\x39\x32\x38\x32\x20\x2d\x31\ -\x38\x30\x20\x30\x20\x30\x20\x38\x2e\x34\x38\x35\x32\x38\x2c\x32\ -\x32\x2e\x38\x30\x36\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ -\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\ -\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x33\x35\x29\ -\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\ -\x36\x34\x34\x34\x34\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ -\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x36\x38\x38\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\ -\x3d\x22\x4d\x20\x38\x2e\x34\x38\x35\x32\x38\x2c\x32\x32\x2e\x38\ -\x30\x36\x31\x20\x41\x20\x31\x32\x2c\x36\x2e\x39\x32\x38\x32\x20\ -\x2d\x31\x38\x30\x20\x30\x20\x30\x20\x31\x32\x2c\x31\x37\x2e\x39\ -\x30\x37\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\ -\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\ -\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x33\x37\x29\x3b\x66\x69\ -\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\x36\x34\x34\ -\x34\x34\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ -\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x61\x74\x68\x33\x36\x39\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\ -\x20\x31\x32\x2c\x31\x37\x2e\x39\x30\x37\x32\x20\x41\x20\x31\x32\ -\x2c\x36\x2e\x39\x32\x38\x32\x20\x2d\x31\x38\x30\x20\x30\x20\x30\ -\x20\x38\x2e\x34\x38\x35\x32\x38\x2c\x31\x33\x2e\x30\x30\x38\x32\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\ -\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ -\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x35\x33\x33\x39\x29\x3b\x66\x69\x6c\x6c\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\x36\x34\x34\x34\x34\x34\ -\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ -\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ -\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x70\x61\x74\x68\x33\x36\x39\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x37\x2e\ -\x30\x32\x32\x37\x38\x2c\x2d\x31\x33\x2e\x38\x35\x32\x36\x20\x41\ -\x20\x31\x32\x2c\x36\x2e\x39\x32\x38\x32\x20\x36\x30\x20\x30\x20\ -\x30\x20\x32\x31\x2e\x35\x30\x38\x31\x2c\x31\x2e\x34\x33\x38\x37\ -\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\ -\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\ -\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ -\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x35\x33\x34\x31\x29\x3b\x66\x69\x6c\x6c\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\x36\x34\x34\x34\x34\ -\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ -\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x70\x61\x74\x68\x33\x36\x39\x34\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\ -\x31\x2e\x35\x30\x38\x31\x2c\x31\x2e\x34\x33\x38\x37\x32\x20\x41\ -\x20\x31\x32\x2c\x36\x2e\x39\x32\x38\x32\x20\x36\x30\x20\x30\x20\ -\x30\x20\x32\x33\x2e\x39\x39\x33\x33\x2c\x2d\x34\x2e\x30\x35\x34\ -\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\ -\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\ -\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ -\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x35\x33\x34\x33\x29\x3b\x66\x69\x6c\x6c\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\x36\x34\x34\x34\x34\ -\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ -\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x70\x61\x74\x68\x33\x36\x39\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x37\ -\x2e\x30\x32\x32\x37\x38\x2c\x31\x33\x2e\x38\x35\x32\x36\x20\x61\ -\x20\x31\x32\x2c\x36\x2e\x39\x32\x38\x32\x20\x2d\x36\x30\x20\x30\ -\x20\x30\x20\x30\x2e\x30\x39\x35\x37\x34\x2c\x31\x2e\x34\x31\x32\ -\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\ -\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\ -\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ -\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x35\x33\x34\x35\x29\x3b\x66\x69\x6c\x6c\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\x36\x34\x34\x34\x34\ -\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ -\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x70\x61\x74\x68\x33\x36\x39\x38\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x31\ -\x36\x2e\x37\x37\x39\x31\x2c\x2d\x31\x2e\x34\x36\x37\x36\x36\x20\ -\x41\x20\x31\x32\x2c\x36\x2e\x39\x32\x38\x32\x20\x2d\x36\x30\x20\ -\x30\x20\x30\x20\x31\x34\x2e\x32\x33\x37\x2c\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\ -\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\ -\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\ -\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x35\x33\x34\x37\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3a\x30\x2e\x35\x36\x34\x34\x34\x34\x34\x38\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ -\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\ -\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ -\x33\x37\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x37\x2e\x31\x31\x38\x35\ -\x32\x2c\x31\x32\x2e\x33\x32\x39\x36\x20\x61\x20\x31\x32\x2c\x36\ -\x2e\x39\x32\x38\x32\x20\x2d\x36\x30\x20\x30\x20\x30\x20\x2d\x30\ -\x2e\x30\x39\x35\x37\x34\x2c\x31\x2e\x35\x32\x33\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\ -\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\ -\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\ -\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x35\x33\x34\x39\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3a\x30\x2e\x35\x36\x34\x34\x34\x34\x34\x38\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ -\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\ -\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ -\x33\x37\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x33\x2e\x39\x39\x33\ -\x33\x2c\x2d\x34\x2e\x30\x35\x34\x36\x20\x41\x20\x31\x32\x2c\x36\ -\x2e\x39\x32\x38\x32\x20\x36\x30\x20\x30\x20\x30\x20\x39\x2e\x35\ -\x30\x38\x30\x36\x2c\x2d\x31\x39\x2e\x33\x34\x35\x39\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\ -\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ -\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\ -\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x35\x33\x35\x31\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3a\x30\x2e\x35\x36\x34\x34\x34\x34\x34\x38\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ -\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ -\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ -\x68\x33\x37\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x39\x2e\x35\x30\x38\ -\x30\x36\x2c\x2d\x31\x39\x2e\x33\x34\x35\x39\x20\x61\x20\x31\x32\ -\x2c\x36\x2e\x39\x32\x38\x32\x20\x36\x30\x20\x30\x20\x30\x20\x2d\ -\x32\x2e\x34\x38\x35\x32\x38\x2c\x35\x2e\x34\x39\x33\x33\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\ -\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ -\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x35\x33\x35\x33\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3a\x30\x2e\x35\x36\x34\x34\x34\x34\x34\x38\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ -\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ -\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ -\x74\x68\x33\x37\x30\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x2d\x37\x2e\x30\ -\x32\x32\x37\x38\x2c\x2d\x31\x33\x2e\x38\x35\x32\x36\x20\x61\x20\ -\x31\x32\x2c\x36\x2e\x39\x32\x38\x32\x20\x2d\x36\x30\x20\x30\x20\ -\x30\x20\x2d\x32\x2e\x34\x38\x35\x32\x38\x2c\x2d\x35\x2e\x34\x39\ -\x33\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\ -\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\ -\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ -\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x35\x35\x29\x3b\x66\x69\x6c\ -\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\x36\x34\x34\x34\ -\x34\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ -\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ -\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x70\x61\x74\x68\x33\x37\x30\x38\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\ -\x2d\x39\x2e\x35\x30\x38\x30\x36\x2c\x2d\x31\x39\x2e\x33\x34\x35\ -\x39\x20\x41\x20\x31\x32\x2c\x36\x2e\x39\x32\x38\x32\x20\x2d\x36\ -\x30\x20\x30\x20\x30\x20\x2d\x32\x33\x2e\x39\x39\x33\x33\x2c\x2d\ -\x34\x2e\x30\x35\x34\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ -\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\ -\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x35\x37\x29\ -\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\ -\x36\x34\x34\x34\x34\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ -\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x31\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\ -\x3d\x22\x6d\x20\x2d\x32\x33\x2e\x39\x39\x33\x33\x2c\x2d\x34\x2e\ -\x30\x35\x34\x36\x20\x61\x20\x31\x32\x2c\x36\x2e\x39\x32\x38\x32\ -\x20\x2d\x36\x30\x20\x30\x20\x30\x20\x32\x2e\x34\x38\x35\x32\x2c\ -\x35\x2e\x34\x39\x33\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\ -\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\ -\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x35\x39\ -\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\ -\x35\x36\x34\x34\x34\x34\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ -\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x31\x32\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x64\x3d\x22\x4d\x20\x2d\x32\x31\x2e\x35\x30\x38\x31\x2c\x31\x2e\ -\x34\x33\x38\x37\x32\x20\x41\x20\x31\x32\x2c\x36\x2e\x39\x32\x38\ -\x32\x20\x2d\x36\x30\x20\x30\x20\x30\x20\x2d\x37\x2e\x30\x32\x32\ -\x37\x38\x2c\x2d\x31\x33\x2e\x38\x35\x32\x36\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\ -\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\ -\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\ -\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x35\x33\x36\x31\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3a\x30\x2e\x35\x36\x34\x34\x34\x34\x34\x38\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\ -\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\ -\x37\x31\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x38\x2e\x34\x38\x35\x32\x38\ -\x2c\x2d\x31\x33\x2e\x30\x30\x38\x32\x20\x61\x20\x31\x32\x2c\x36\ -\x2e\x39\x32\x38\x32\x20\x2d\x31\x38\x30\x20\x30\x20\x30\x20\x31\ -\x2e\x31\x37\x35\x33\x2c\x2d\x30\x2e\x37\x38\x39\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\ -\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ -\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\ -\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x35\x33\x36\x33\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3a\x30\x2e\x35\x36\x34\x34\x34\x34\x34\x38\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ -\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ -\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ -\x68\x33\x37\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x2d\x39\x2e\x36\x36\ -\x30\x35\x38\x2c\x2d\x31\x33\x2e\x37\x39\x37\x33\x20\x61\x20\x31\ -\x32\x2c\x36\x2e\x39\x32\x38\x32\x20\x2d\x31\x38\x30\x20\x30\x20\ -\x30\x20\x32\x2e\x35\x34\x32\x30\x36\x2c\x31\x2e\x34\x36\x37\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\ -\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ -\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x35\x33\x36\x35\x29\x3b\x66\x69\x6c\x6c\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\x36\x34\x34\x34\x34\x34\ -\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ -\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ -\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x70\x61\x74\x68\x33\x37\x31\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x37\x2e\ -\x31\x31\x38\x35\x32\x2c\x2d\x31\x32\x2e\x33\x32\x39\x36\x20\x61\ -\x20\x31\x32\x2c\x36\x2e\x39\x32\x38\x32\x20\x2d\x31\x38\x30\x20\ -\x30\x20\x30\x20\x31\x2e\x33\x36\x36\x37\x36\x2c\x2d\x30\x2e\x36\ -\x37\x38\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\ -\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\ -\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x36\x37\x29\x3b\x66\x69\ -\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\x36\x34\x34\ -\x34\x34\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ -\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x32\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\ -\x20\x2d\x37\x2e\x31\x31\x38\x35\x32\x2c\x31\x35\x2e\x32\x36\x34\ -\x39\x20\x61\x20\x31\x32\x2c\x36\x2e\x39\x32\x38\x32\x20\x36\x30\ -\x20\x30\x20\x30\x20\x30\x2e\x30\x39\x35\x37\x34\x2c\x2d\x31\x2e\ -\x34\x31\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ -\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\ -\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\ -\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x36\x39\x29\x3b\x66\ -\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\x36\x34\ -\x34\x34\x34\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ -\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x32\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\ -\x6d\x20\x2d\x37\x2e\x30\x32\x32\x37\x38\x2c\x31\x33\x2e\x38\x35\ -\x32\x36\x20\x61\x20\x31\x32\x2c\x36\x2e\x39\x32\x38\x32\x20\x36\ -\x30\x20\x30\x20\x30\x20\x2d\x30\x2e\x30\x39\x35\x37\x34\x2c\x2d\ -\x31\x2e\x35\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\ -\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\ -\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x37\x31\x29\x3b\ -\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\x36\ -\x34\x34\x34\x34\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ -\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x32\x34\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ -\x22\x6d\x20\x2d\x31\x34\x2e\x32\x33\x37\x2c\x30\x20\x61\x20\x31\ -\x32\x2c\x36\x2e\x39\x32\x38\x32\x20\x36\x30\x20\x30\x20\x30\x20\ -\x2d\x32\x2e\x35\x34\x32\x31\x2c\x2d\x31\x2e\x34\x36\x37\x36\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\ -\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ -\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x35\x33\x37\x33\x29\x3b\x66\x69\x6c\x6c\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\x36\x34\x34\x34\x34\x34\ -\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ -\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ -\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\ -\x20\x30\x2c\x31\x33\x2e\x38\x35\x36\x34\x20\x32\x2e\x34\x34\x31\ -\x31\x38\x2c\x31\x2e\x31\x31\x37\x37\x20\x32\x2e\x34\x36\x31\x35\ -\x38\x2c\x30\x2e\x34\x39\x36\x35\x20\x32\x2e\x31\x32\x38\x34\x36\ -\x2c\x2d\x30\x2e\x31\x39\x31\x34\x20\x31\x2e\x34\x31\x33\x33\x35\ -\x2c\x2d\x30\x2e\x35\x36\x38\x34\x20\x31\x2e\x32\x31\x36\x30\x31\ -\x2c\x2d\x30\x2e\x39\x31\x33\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x32\x32\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\ -\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ -\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x35\x33\x37\x35\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\x36\x34\x34\x34\x34\x34\x38\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\ -\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ -\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\ -\x2d\x38\x2e\x34\x38\x35\x32\x38\x2c\x31\x34\x2e\x36\x39\x36\x39\ -\x20\x31\x2e\x39\x37\x37\x37\x37\x2c\x30\x2e\x36\x39\x37\x38\x20\ -\x32\x2e\x32\x36\x37\x34\x37\x2c\x30\x2e\x30\x31\x30\x32\x20\x32\ -\x2e\x30\x38\x34\x37\x33\x2c\x2d\x30\x2e\x35\x33\x33\x33\x20\x4c\ -\x20\x30\x2c\x31\x33\x2e\x38\x35\x36\x34\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x32\ -\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\ -\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\ -\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ -\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x35\x33\x37\x37\x29\x3b\x66\x69\x6c\x6c\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\x36\x34\x34\x34\x34\ -\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ -\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\ -\x6d\x20\x2d\x39\x2e\x36\x36\x30\x35\x38\x2c\x31\x33\x2e\x37\x39\ -\x37\x33\x20\x30\x2e\x34\x39\x37\x2c\x30\x2e\x34\x33\x39\x35\x20\ -\x30\x2e\x33\x33\x31\x34\x35\x2c\x30\x2e\x32\x34\x32\x37\x20\x30\ -\x2e\x33\x34\x36\x38\x35\x2c\x30\x2e\x32\x31\x37\x34\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x32\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ -\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\ -\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\ -\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x37\x39\x29\x3b\x66\ -\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\x36\x34\ -\x34\x34\x34\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ -\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x64\x3d\x22\x4d\x20\x31\x36\x2e\x37\x37\x39\x31\x2c\x31\x2e\x34\ -\x36\x37\x36\x36\x20\x31\x36\x2e\x39\x31\x31\x32\x2c\x30\x2e\x38\ -\x31\x37\x34\x38\x37\x20\x31\x36\x2e\x39\x35\x35\x37\x2c\x30\x2e\ -\x34\x30\x39\x31\x30\x32\x20\x31\x36\x2e\x39\x37\x30\x36\x2c\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x32\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\ -\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\ -\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x38\x31\ -\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\ -\x35\x36\x34\x34\x34\x34\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ -\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x64\x3d\x22\x4d\x20\x38\x2e\x34\x38\x35\x32\x38\x2c\ -\x2d\x31\x34\x2e\x36\x39\x36\x39\x20\x37\x2e\x38\x39\x39\x36\x35\ -\x2c\x2d\x31\x34\x2e\x39\x39\x31\x31\x20\x37\x2e\x35\x31\x35\x36\ -\x33\x2c\x2d\x31\x35\x2e\x31\x34\x31\x32\x20\x37\x2e\x31\x31\x38\ -\x35\x32\x2c\x2d\x31\x35\x2e\x32\x36\x34\x39\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x32\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\ -\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\ -\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ -\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x38\x33\x29\x3b\x66\x69\x6c\ -\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\x36\x34\x34\x34\ -\x34\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ -\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ -\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ -\x22\x4d\x20\x31\x32\x2c\x2d\x36\x2e\x39\x32\x38\x32\x20\x31\x31\ -\x2e\x36\x36\x35\x35\x2c\x2d\x39\x2e\x39\x36\x38\x39\x35\x20\x31\ -\x30\x2e\x38\x31\x37\x31\x2c\x2d\x31\x32\x2e\x32\x34\x33\x32\x20\ -\x39\x2e\x37\x39\x30\x34\x37\x2c\x2d\x31\x33\x2e\x36\x36\x34\x34\ -\x20\x38\x2e\x34\x38\x35\x32\x38\x2c\x2d\x31\x34\x2e\x36\x39\x36\ -\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\ -\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\ -\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x38\ -\x35\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\ -\x2e\x35\x36\x34\x34\x34\x34\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ -\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x31\x36\x2e\x39\x37\x30\x36\ -\x2c\x30\x20\x31\x36\x2e\x35\x38\x35\x39\x2c\x2d\x32\x2e\x30\x36\ -\x31\x36\x36\x20\x31\x35\x2e\x34\x36\x31\x2c\x2d\x34\x2e\x30\x33\ -\x30\x34\x35\x20\x31\x33\x2e\x39\x35\x36\x39\x2c\x2d\x35\x2e\x35\ -\x36\x39\x32\x36\x20\x31\x32\x2c\x2d\x36\x2e\x39\x32\x38\x32\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x32\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ -\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\ -\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x38\x37\x29\ -\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\ -\x36\x34\x34\x34\x34\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ -\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x64\x3d\x22\x4d\x20\x31\x32\x2c\x2d\x36\x2e\x39\x32\x38\ -\x32\x20\x39\x2e\x35\x30\x38\x30\x36\x2c\x2d\x35\x2e\x34\x38\x39\ -\x34\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x32\x39\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\ -\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\ -\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\ -\x38\x39\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ -\x30\x2e\x35\x36\x34\x34\x34\x34\x34\x38\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ -\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x30\x2c\x31\x30\x2e\x39\ -\x37\x39\x20\x30\x2c\x32\x2e\x38\x37\x37\x34\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x33\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\ -\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\ -\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ -\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x39\x31\x29\x3b\x66\x69\x6c\ -\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\x36\x34\x34\x34\ -\x34\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ -\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ -\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ -\x22\x6d\x20\x2d\x31\x36\x2e\x39\x37\x30\x36\x2c\x30\x20\x30\x2e\ -\x30\x33\x38\x31\x2c\x30\x2e\x36\x35\x34\x32\x36\x33\x20\x30\x2e\ -\x30\x36\x32\x2c\x30\x2e\x34\x30\x37\x36\x31\x37\x20\x30\x2e\x30\ -\x39\x31\x34\x2c\x30\x2e\x34\x30\x35\x37\x38\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\ -\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\ -\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ -\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x39\x33\x29\x3b\x66\x69\x6c\ -\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\x36\x34\x34\x34\ -\x34\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ -\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ -\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ -\x22\x6d\x20\x2d\x31\x32\x2c\x2d\x36\x2e\x39\x32\x38\x32\x20\x2d\ -\x32\x2e\x34\x36\x36\x31\x2c\x31\x2e\x38\x31\x30\x30\x35\x20\x2d\ -\x31\x2e\x35\x34\x35\x33\x2c\x31\x2e\x38\x37\x31\x38\x32\x20\x2d\ -\x30\x2e\x37\x31\x37\x35\x2c\x31\x2e\x35\x39\x39\x37\x32\x20\x4c\ -\x20\x2d\x31\x36\x2e\x39\x37\x30\x36\x2c\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\ -\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\ -\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ -\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x39\x35\x29\x3b\x66\x69\x6c\ -\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\x36\x34\x34\x34\ -\x34\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ -\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ -\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ -\x22\x6d\x20\x2d\x38\x2e\x34\x38\x35\x32\x38\x2c\x2d\x31\x34\x2e\ -\x36\x39\x36\x39\x20\x2d\x31\x2e\x35\x39\x33\x31\x32\x2c\x31\x2e\ -\x33\x36\x33\x39\x20\x2d\x31\x2e\x31\x34\x32\x36\x2c\x31\x2e\x39\ -\x35\x38\x36\x20\x2d\x30\x2e\x35\x38\x30\x36\x2c\x32\x2e\x30\x37\ -\x32\x30\x32\x20\x4c\x20\x2d\x31\x32\x2c\x2d\x36\x2e\x39\x32\x38\ -\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x33\x33\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\ -\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\ -\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x39\ -\x37\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\ -\x2e\x35\x36\x34\x34\x34\x34\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ -\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x2d\x37\x2e\x31\x31\x38\x35\ -\x32\x2c\x2d\x31\x35\x2e\x32\x36\x34\x39\x20\x2d\x30\x2e\x36\x32\ -\x39\x31\x33\x2c\x30\x2e\x32\x31\x30\x36\x20\x2d\x30\x2e\x33\x37\ -\x35\x38\x39\x2c\x30\x2e\x31\x36\x35\x37\x20\x2d\x30\x2e\x33\x36\ -\x31\x37\x34\x2c\x30\x2e\x31\x39\x31\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x33\ -\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\ -\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\ -\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ -\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x35\x33\x39\x39\x29\x3b\x66\x69\x6c\x6c\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\x36\x34\x34\x34\x34\ -\x34\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ -\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\ -\x6d\x20\x2d\x31\x32\x2c\x2d\x36\x2e\x39\x32\x38\x32\x20\x32\x2e\ -\x34\x39\x31\x39\x34\x2c\x31\x2e\x34\x33\x38\x37\x32\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x33\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ -\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\ -\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x34\ -\x33\x39\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ -\x78\x28\x2d\x32\x35\x2e\x39\x30\x33\x39\x36\x31\x2c\x30\x2c\x30\ -\x2c\x2d\x32\x35\x2e\x39\x30\x33\x39\x36\x31\x2c\x2d\x32\x34\x33\ -\x33\x2e\x39\x33\x36\x37\x2c\x2d\x35\x31\x31\x2e\x39\x35\x37\x34\ -\x33\x29\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\ -\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x34\ -\x34\x30\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ -\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\ -\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ -\x74\x68\x34\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x2d\x32\x37\x2e\ -\x39\x32\x30\x33\x2c\x32\x2e\x32\x36\x33\x33\x39\x20\x31\x35\x2e\ -\x39\x32\x30\x33\x2c\x2d\x32\x33\x2e\x30\x34\x38\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\ -\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x72\x6f\x6b\x65\x3a\ -\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ -\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\ -\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x34\x34\x30\ -\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x64\x3d\x22\x4d\x20\x2d\x31\x35\x2e\x39\x32\x30\x33\x2c\ -\x32\x33\x2e\x30\x34\x38\x20\x32\x37\x2e\x39\x32\x30\x33\x2c\x2d\ -\x32\x2e\x32\x36\x33\x33\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ -\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x67\x34\x34\x30\x36\x22\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\ -\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x64\x3d\x22\x4d\x20\x33\x30\x2e\x34\x30\x35\x36\x2c\x2d\x37\x2e\ -\x37\x35\x36\x37\x32\x20\x41\x20\x31\x32\x2c\x36\x2e\x39\x32\x38\ -\x32\x20\x36\x30\x20\x30\x20\x30\x20\x31\x35\x2e\x39\x32\x30\x33\ -\x2c\x2d\x32\x33\x2e\x30\x34\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ -\x68\x34\x34\x30\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\ -\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ -\x22\x6d\x20\x31\x35\x2e\x39\x32\x30\x33\x2c\x2d\x32\x33\x2e\x30\ -\x34\x38\x20\x61\x20\x31\x32\x2c\x36\x2e\x39\x32\x38\x32\x30\x31\ -\x36\x20\x36\x30\x20\x30\x20\x30\x20\x31\x32\x2c\x32\x30\x2e\x37\ -\x38\x34\x36\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x34\x34\x31\ -\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ -\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\ -\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\ -\x37\x2e\x39\x32\x30\x33\x2c\x2d\x32\x2e\x32\x36\x33\x33\x39\x20\ -\x61\x20\x31\x32\x2c\x36\x2e\x39\x32\x38\x32\x20\x36\x30\x20\x30\ -\x20\x30\x20\x32\x2e\x34\x38\x35\x33\x2c\x2d\x35\x2e\x34\x39\x33\ -\x33\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x34\x34\x31\x32\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x72\x6f\ -\x6b\x65\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\ -\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x2d\x32\x37\ -\x2e\x39\x32\x30\x33\x2c\x32\x2e\x32\x36\x33\x33\x39\x20\x61\x20\ -\x31\x32\x2c\x36\x2e\x39\x32\x38\x32\x30\x31\x36\x20\x36\x30\x20\ -\x30\x20\x30\x20\x31\x32\x2c\x32\x30\x2e\x37\x38\x34\x36\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x70\x61\x74\x68\x34\x34\x31\x34\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x67\x3e\ -\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x76\xd9\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x01\xa0\x00\x00\x00\xb0\x00\x00\x0f\xa8\x00\x00\x07\x3d\ +\x00\x00\x0f\x1d\x00\x39\xdf\x33\x00\x00\x01\x92\x00\x72\x97\x49\ +\x00\x00\x0f\x58\x01\x0c\x64\xae\x00\x00\x10\x18\x01\x38\xb0\x83\ +\x00\x00\x11\x90\x01\x40\x42\x85\x00\x00\x0b\x07\x02\x1f\xd9\x48\ +\x00\x00\x03\xe8\x02\x7b\x37\xc4\x00\x00\x14\x77\x02\xbc\x05\x8e\ +\x00\x00\x0c\xb3\x02\xbe\x05\x8e\x00\x00\x00\xbf\x03\x8c\x88\xc1\ +\x00\x00\x0d\x53\x05\x08\x5c\x93\x00\x00\x03\x0b\x05\x16\xa3\x95\ +\x00\x00\x13\x0f\x05\x66\x9a\x34\x00\x00\x07\xe3\x05\x98\x15\x8e\ +\x00\x00\x0d\x06\x05\xcc\x9a\xd9\x00\x00\x0c\x63\x05\xe4\x1f\xa9\ +\x00\x00\x10\x7a\x05\xfb\x21\x0b\x00\x00\x06\x55\x06\xe4\x0a\x14\ +\x00\x00\x18\x09\x06\xee\xa0\xc5\x00\x00\x09\xef\x07\x5d\xec\x93\ +\x00\x00\x12\xb0\x07\x5d\xee\x93\x00\x00\x12\x51\x07\xda\x68\xe7\ +\x00\x00\x0b\x7e\x07\xe4\xd0\x65\x00\x00\x0d\x9d\x08\x10\xb3\x89\ +\x00\x00\x05\x49\x08\x37\x4e\x99\x00\x00\x15\x20\x08\x4d\xc0\x2e\ +\x00\x00\x19\x78\x08\x5d\x45\x73\x00\x00\x01\x12\x08\xa5\x45\x08\ +\x00\x00\x05\xf9\x08\xca\x52\x4b\x00\x00\x14\xeb\x08\xca\x72\x4b\ +\x00\x00\x0f\xe0\x08\xe2\x7f\xe5\x00\x00\x13\xcd\x09\x2b\x77\x54\ +\x00\x00\x17\xc2\x09\xc0\x82\xb5\x00\x00\x06\xb1\x0a\x22\x8d\xb2\ +\x00\x00\x00\x00\x0a\x2b\x47\x64\x00\x00\x0e\x9a\x0a\x96\xcd\x84\ +\x00\x00\x0e\x11\x0a\xd3\x55\x94\x00\x00\x07\x81\x0a\xf8\x55\x94\ +\x00\x00\x07\x1f\x0b\x61\x1d\x4e\x00\x00\x16\x1d\x0d\x2c\x1d\x28\ +\x00\x00\x04\x41\x0d\xaa\x21\x43\x00\x00\x13\x7d\x0d\xdc\x00\x68\ +\x00\x00\x04\xea\x0e\x02\x4e\xea\x00\x00\x19\x13\x0e\x75\xf9\x03\ +\x00\x00\x0a\x90\x0e\x80\x99\x15\x00\x00\x15\xc4\x0e\xc6\x00\x19\ +\x00\x00\x0c\x0a\x0e\xcc\x78\xf1\x00\x00\x04\x91\x0f\x18\x51\xc5\ +\x00\x00\x11\xd1\x0f\x68\xe5\xc7\x00\x00\x02\x01\x0f\xd3\x1f\xf3\ +\x00\x00\x16\x9d\x69\x00\x00\x19\xd1\x03\x00\x00\x00\x5c\x00\x44\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x3a\x00\x20\x00\x52\x00\x65\ +\x00\x67\x00\x69\x00\x73\x00\x74\x00\x65\x00\x72\x00\x20\x00\x66\ +\x00\x69\x00\x6c\x00\x65\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x74\x00\x6f\ +\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2e\x44\x65\x62\x75\x67\x3a\x20\x52\x65\x67\x69\x73\ +\x74\x65\x72\x20\x66\x69\x6c\x65\x74\x79\x70\x65\x20\x74\x6f\x20\ +\x70\x72\x6f\x74\x6f\x74\x79\x70\x65\x20\x69\x6d\x70\x6f\x72\x74\ +\x65\x72\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x44\x00\ +\x65\x00\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x44\x65\x66\x6c\x65\ +\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x32\ +\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x53\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x65\x6e\x65\ +\x72\x61\x6c\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2a\ +\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x7a\ +\x00\x69\x00\x6f\x00\x6e\x00\x69\x00\x20\x00\x67\x00\x65\x00\x6e\ +\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x69\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\ +\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x8e\x00\ +\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\ +\x65\x00\x64\x00\x2c\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\ +\x75\x00\x72\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x63\x00\x6c\x00\x61\x00\x69\x00\x6d\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x65\x00\x72\x00\x20\x00\x63\x00\x68\x00\ +\x69\x00\x6c\x00\x64\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x69\x00\ +\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x74\x00\x72\x00\ +\x65\x00\x65\x00\x20\x00\x76\x00\x69\x00\x65\x00\x77\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x47\x49\x66\x20\x74\x68\x69\x73\x20\x69\ +\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x46\x65\x61\x74\x75\ +\x72\x65\x73\x20\x77\x69\x6c\x6c\x20\x63\x6c\x61\x69\x6d\x20\x74\ +\x68\x69\x65\x72\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\x69\x6e\ +\x20\x74\x68\x65\x20\x74\x72\x65\x65\x20\x76\x69\x65\x77\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x70\x00\x49\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\ +\x20\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\x6d\x00\x61\x00\x74\x00\ +\x72\x00\x69\x00\x78\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\ +\x62\x00\x65\x00\x20\x00\x50\x00\x61\x00\x72\x00\x61\x00\x6d\x00\ +\x65\x00\x74\x00\x72\x00\x69\x00\x63\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x38\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\ +\x65\x63\x6b\x65\x64\x2c\x20\x4d\x75\x6c\x74\x6d\x61\x74\x72\x69\ +\x78\x20\x4f\x62\x6a\x65\x63\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\ +\x20\x50\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x18\x00\x4c\x00\x6f\x00\x63\x00\x61\x00\x6c\ +\x00\x20\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0c\x4c\x6f\x63\x61\x6c\x20\x4c\x65\ +\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\ +\x4d\x00\x61\x00\x78\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\ +\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x4d\x61\x78\x4c\x65\ +\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\ +\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\ +\x41\x00\x72\x00\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0c\x4d\x61\x78\x69\x6d\x75\x6d\x20\x41\x72\x65\x61\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x1c\x00\x4d\x00\x61\x00\x78\x00\x69\ +\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x4c\x00\x65\x00\x6e\x00\x67\ +\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x4d\x61\ +\x78\x69\x6d\x75\x6d\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x52\x00\x4d\x00\x61\x00\x78\x00\x69\x00\ +\x6d\x00\x75\x00\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\ +\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x66\x00\x61\x00\ +\x63\x00\x65\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\ +\x70\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x73\x00\ +\x20\x00\x28\x00\x66\x00\x6e\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x29\x4d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\ +\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x66\x6f\x72\x20\x70\ +\x6f\x6c\x79\x67\x6f\x6e\x73\x20\x28\x66\x6e\x29\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x1a\x00\x4d\x00\x61\x00\x78\x00\x69\x00\ +\x75\x00\x6d\x00\x20\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\ +\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x61\x78\x69\x75\ +\x6d\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x1a\x00\x4d\x00\x65\x00\x73\x00\x68\x00\x20\x00\x66\x00\ +\x61\x00\x6c\x00\x6c\x00\x62\x00\x61\x00\x63\x00\x6b\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x66\x61\x6c\x6c\ +\x62\x61\x63\x6b\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x26\x00\ +\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\ +\x20\x00\x65\x00\x78\x00\x65\x00\x63\x00\x75\x00\x74\x00\x61\x00\ +\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\x61\x62\ +\x6c\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1e\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\ +\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\ +\x70\x6f\x72\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1e\x00\ +\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\ +\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\ +\x69\x6d\x70\x6f\x72\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x01\ +\x3a\x00\x54\x00\x68\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x78\x00\ +\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\ +\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x66\x00\ +\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x61\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\ +\x6e\x00\x2c\x00\x20\x00\x70\x00\x72\x00\x69\x00\x73\x00\x6d\x00\ +\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\x75\x00\x73\x00\ +\x74\x00\x75\x00\x6d\x00\x2e\x00\x20\x00\x49\x00\x66\x00\x20\x00\ +\x66\x00\x6e\x00\x20\x00\x69\x00\x73\x00\x20\x00\x67\x00\x72\x00\ +\x65\x00\x61\x00\x74\x00\x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\ +\x61\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x76\x00\x61\x00\x6c\x00\x75\x00\x65\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\ +\x69\x00\x64\x00\x65\x00\x72\x00\x65\x00\x64\x00\x20\x00\x74\x00\ +\x6f\x00\x20\x00\x62\x00\x65\x00\x20\x00\x61\x00\x20\x00\x63\x00\ +\x69\x00\x72\x00\x63\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x2e\x00\ +\x20\x00\x53\x00\x65\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ +\x30\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x6f\x00\ +\x20\x00\x6c\x00\x69\x00\x6d\x00\x69\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x9d\x54\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\ +\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\ +\x20\x6f\x66\x20\x61\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x2c\x20\x70\ +\x72\x69\x73\x6d\x20\x6f\x72\x20\x66\x72\x75\x73\x74\x75\x6d\x2e\ +\x20\x49\x66\x20\x66\x6e\x20\x69\x73\x20\x67\x72\x65\x61\x74\x65\ +\x72\x20\x74\x68\x61\x6e\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\ +\x65\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x73\x20\ +\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x74\x6f\x20\x62\x65\ +\x20\x61\x20\x63\x69\x72\x63\x75\x6c\x61\x72\x2e\x20\x53\x65\x74\ +\x20\x74\x6f\x20\x30\x20\x66\x6f\x72\x20\x6e\x6f\x20\x6c\x69\x6d\ +\x69\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x48\x00\x54\x00\ +\x68\x00\x65\x00\x20\x00\x70\x00\x61\x00\x74\x00\x68\x00\x20\x00\ +\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\ +\x65\x00\x78\x00\x65\x00\x63\x00\x75\x00\x74\x00\x65\x00\x61\x00\ +\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x54\ +\x68\x65\x20\x70\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\x65\x61\ +\x62\x6c\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x54\ +\x00\x72\x00\x69\x00\x61\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x61\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x74\ +\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x16\x54\x72\x69\x61\x6e\x67\x75\x6c\x61\x74\x69\x6f\ +\x6e\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x2c\x00\x55\x00\x73\x00\x65\x00\x20\x00\x4d\x00\ +\x75\x00\x6c\x00\x74\x00\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\ +\x78\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x55\x73\x65\x20\x4d\ +\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\x46\x65\x61\x74\x75\x72\ +\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3a\x00\x55\x00\x73\ +\x00\x65\x00\x20\x00\x56\x00\x69\x00\x65\x00\x77\x00\x50\x00\x72\ +\x00\x6f\x00\x76\x00\x69\x00\x64\x00\x65\x00\x72\x00\x20\x00\x69\ +\x00\x6e\x00\x20\x00\x54\x00\x72\x00\x65\x00\x65\x00\x20\x00\x56\ +\x00\x69\x00\x65\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\ +\x55\x73\x65\x20\x56\x69\x65\x77\x50\x72\x6f\x76\x69\x64\x65\x72\ +\x20\x69\x6e\x20\x54\x72\x65\x65\x20\x56\x69\x65\x77\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x18\x00\x61\x00\x6e\x00\x67\x00\x75\ +\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x28\x00\x66\x00\x61\x00\x29\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x61\x6e\x67\x75\x6c\x61\ +\x72\x20\x28\x66\x61\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x12\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x78\x00\x69\x00\ +\x74\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x63\x6f\x6e\ +\x76\x65\x78\x69\x74\x79\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x14\x00\x64\x00\x65\x00\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x64\ +\x65\x66\x6c\x65\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x10\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x4c\ +\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x6c\x6f\ +\x63\x61\x6c\x4c\x65\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x0e\x00\x6d\x00\x61\x00\x78\x00\x41\x00\x72\x00\x65\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x07\x6d\x61\x78\x41\x72\x65\x61\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2a\x00\x6d\x00\x61\x00\ +\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x66\x00\x72\x00\ +\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x73\x00\ +\x69\x00\x7a\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x6d\ +\x61\x78\x69\x6d\x75\x6d\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x20\ +\x73\x69\x7a\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x38\x00\ +\x6d\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\ +\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x20\x00\x61\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1c\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x61\x6e\x67\x6c\x65\x20\x66\ +\x6f\x72\x20\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x34\x00\x6d\x00\x69\x00\x6e\x00\x69\ +\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\ +\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x20\x00\x66\x00\x72\ +\x00\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1a\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x73\x69\ +\x7a\x65\x20\x6f\x66\x20\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x04\x00\x6d\x00\x6d\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x02\x6d\x6d\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x12\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\ +\x00\x28\x00\x66\x00\x73\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x09\x73\x69\x7a\x65\x20\x28\x66\x73\x29\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x02\x00\xb0\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x01\xb0\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\x20\ +\x00\x50\x00\x72\x00\x65\x00\x73\x00\x73\x00\x20\x00\x4f\x00\x4b\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x20\x50\x72\x65\x73\x73\ +\x20\x4f\x4b\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x2e\x00\x41\x00\x64\x00\x64\x00\x20\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\ +\x00\x45\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\ +\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x41\x64\ +\x64\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x45\x6c\x65\x6d\x65\ +\x6e\x74\x2e\x2e\x2e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\xa6\x00\x41\x00\x64\x00\x64\x00\x20\ +\x00\x61\x00\x6e\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\ +\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x62\x00\x79\x00\x20\x00\x65\ +\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x63\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x61\x00\x6e\ +\x00\x64\x00\x20\x00\x65\x00\x78\x00\x65\x00\x63\x00\x75\x00\x74\ +\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x62\x00\x69\x00\x6e\x00\x61\x00\x72\x00\x79\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x53\x41\x64\x64\x20\x61\x6e\x20\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\ +\x62\x79\x20\x65\x6e\x74\x65\x72\x69\x6e\x67\x20\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x20\x63\x6f\x64\x65\x20\x61\x6e\x64\x20\x65\x78\ +\x65\x63\x75\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x20\x62\x69\x6e\x61\x72\x79\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x43\ +\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x53\x00\x68\x00\x61\ +\x00\x70\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x43\x6f\x6c\x6f\x72\x20\x53\x68\x61\x70\x65\x73\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x42\x00\ +\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x53\x00\x68\x00\ +\x61\x00\x70\x00\x65\x00\x73\x00\x20\x00\x62\x00\x79\x00\x20\x00\ +\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\x69\x00\x74\x00\x79\x00\ +\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x74\x00\x79\x00\x70\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x43\x6f\x6c\x6f\x72\ +\x20\x53\x68\x61\x70\x65\x73\x20\x62\x79\x20\x76\x61\x6c\x69\x64\ +\x69\x74\x79\x20\x61\x6e\x64\x20\x74\x79\x70\x65\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\ +\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x20\x00\ +\x45\x00\x64\x00\x67\x00\x65\x00\x73\x00\x20\x00\x54\x00\x6f\x00\ +\x20\x00\x46\x00\x61\x00\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\x67\ +\x65\x73\x20\x54\x6f\x20\x46\x61\x63\x65\x73\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x43\ +\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x20\x00\x45\ +\x00\x64\x00\x67\x00\x65\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\ +\x00\x46\x00\x61\x00\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\x67\x65\ +\x73\x20\x74\x6f\x20\x46\x61\x63\x65\x73\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x36\x00\x43\x00\ +\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x20\x00\x52\x00\x65\x00\ +\x66\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x53\x00\x68\x00\x61\x00\ +\x70\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\ +\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x43\x72\x65\ +\x61\x74\x65\x20\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\ +\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x22\x00\x45\x00\x78\x00\ +\x70\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x50\x00\x6c\x00\x61\x00\ +\x63\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x11\x45\x78\x70\x61\x6e\x64\x20\x50\x6c\ +\x61\x63\x65\x6d\x65\x6e\x74\x73\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x5e\x00\x45\x00\x78\x00\ +\x70\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\ +\x20\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x73\x00\x20\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\ +\x77\x00\x61\x00\x72\x00\x64\x00\x73\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\ +\x65\x00\x54\x00\x72\x00\x65\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2f\x45\x78\x70\x61\x6e\x64\x20\x61\x6c\x6c\x20\x70\x6c\ +\x61\x63\x65\x6d\x65\x6e\x74\x73\x20\x64\x6f\x77\x6e\x77\x61\x72\ +\x64\x73\x20\x74\x68\x65\x20\x46\x65\x61\x74\x75\x72\x65\x54\x72\ +\x65\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x3a\x00\x50\x00\x6c\x00\x65\x00\x61\x00\x73\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x33\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x73\x00\x20\x00\x66\x00\x69\x00\x72\x00\x73\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x50\x6c\x65\x61\x73\x65\x20\ +\x73\x65\x6c\x65\x63\x74\x20\x33\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x20\x66\x69\x72\x73\x74\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x10\x00\x50\x00\x72\x00\x65\x00\ +\x73\x00\x73\x00\x20\x00\x4f\x00\x4b\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x5a\x00\x50\ +\x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x4e\x00\x6f\x00\x74\x00\x20\x00\x79\x00\x65\ +\x00\x74\x00\x20\x00\x43\x00\x6f\x00\x64\x00\x65\x00\x64\x00\x20\ +\x00\x77\x00\x61\x00\x69\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\ +\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x50\x00\x65\x00\x74\x00\x65\ +\x00\x72\x00\x20\x00\x4c\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x2d\x50\x72\x6f\x6a\x65\x63\x74\x69\x6f\x6e\x20\x4e\x6f\x74\ +\x20\x79\x65\x74\x20\x43\x6f\x64\x65\x64\x20\x77\x61\x69\x74\x69\ +\x6e\x67\x20\x66\x6f\x72\x20\x50\x65\x74\x65\x72\x20\x4c\x69\x07\ +\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x28\x00\x52\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x20\ +\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x46\x00\x65\ +\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x14\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\ +\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x42\x00\x52\x00\x65\x00\ +\x6d\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x69\x00\x72\x00\x20\x00\x43\x00\ +\x68\x00\x69\x00\x6c\x00\x64\x00\x72\x00\x65\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x21\x52\x65\x6d\x6f\x76\x65\x20\x4f\x62\ +\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\x74\x68\x65\x69\x72\x20\ +\x43\x68\x69\x6c\x64\x72\x65\x6e\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\xb0\x00\x52\x00\x65\x00\ +\x6d\x00\x6f\x00\x76\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\ +\x6c\x00\x6c\x00\x20\x00\x63\x00\x68\x00\x69\x00\x6c\x00\x64\x00\ +\x72\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\ +\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\ +\x20\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\ +\x63\x00\x65\x00\x64\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ +\x20\x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x58\x52\x65\x6d\x6f\x76\x65\x73\x20\x74\x68\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x61\x6e\x64\x20\x61\x6c\x6c\x20\x63\x68\x69\x6c\x64\x72\ +\x65\x6e\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\ +\x72\x65\x66\x65\x72\x65\x6e\x63\x65\x64\x20\x66\x72\x6f\x6d\x20\ +\x6f\x74\x68\x65\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1c\ +\x00\x52\x00\x65\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x20\ +\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0e\x52\x65\x70\x6c\x61\x63\x65\x20\x4f\x62\ +\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x9e\x00\x52\x00\x65\x00\x70\x00\x6c\x00\ +\x61\x00\x63\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\ +\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\x54\x00\x72\x00\x65\x00\ +\x65\x00\x2e\x00\x20\x00\x50\x00\x6c\x00\x65\x00\x61\x00\x73\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x6f\x00\x6c\x00\x64\x00\x2c\x00\x20\x00\x6e\x00\x65\x00\ +\x77\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x52\ +\x65\x70\x6c\x61\x63\x65\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x69\x6e\x20\x74\x68\x65\x20\x46\x65\x61\x74\x75\x72\x65\x20\ +\x54\x72\x65\x65\x2e\x20\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\ +\x65\x63\x74\x20\x6f\x6c\x64\x2c\x20\x6e\x65\x77\x20\x61\x6e\x64\ +\x20\x70\x61\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x30\x00\x52\x00\x75\x00\x6e\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\ +\x44\x00\x20\x00\x66\x00\x61\x00\x69\x00\x6c\x00\x65\x00\x64\x00\ +\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x52\x75\x6e\x6e\x69\ +\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x66\x61\x69\x6c\ +\x65\x64\x0a\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x28\x00\x55\x00\x6e\x00\x73\x00\x75\x00\x70\ +\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x64\x00\x20\x00\x46\ +\x00\x75\x00\x6e\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x14\x55\x6e\x73\x75\x70\x70\x6f\x72\ +\x74\x65\x64\x20\x46\x75\x6e\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x00\x00\x1b\x87\ \x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\ -\x65\x2e\x63\x6f\x6d\x2f\x41\x64\x6f\x62\x65\x49\x6c\x6c\x75\x73\ -\x74\x72\x61\x74\x6f\x72\x2f\x31\x30\x2e\x30\x2f\x22\x0a\x20\x20\ -\x20\x78\x6d\x6c\x6e\x73\x3a\x64\x63\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x65\x6c\ -\x65\x6d\x65\x6e\x74\x73\x2f\x31\x2e\x31\x2f\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x63\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\ -\x2f\x63\x72\x65\x61\x74\x69\x76\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\ -\x2e\x6f\x72\x67\x2f\x6e\x73\x23\x22\x0a\x20\x20\x20\x78\x6d\x6c\ -\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\ -\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\x2f\x30\ -\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\x61\x78\x2d\ -\x6e\x73\x23\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x76\ -\x67\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\ -\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\ -\x20\x20\x78\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\ -\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\ -\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\ -\x69\x6e\x6b\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ -\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\x2f\x78\x6c\x69\x6e\ -\x6b\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\ -\x69\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\ -\x65\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\ -\x64\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\ -\x6e\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\ -\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\ -\x74\x68\x3d\x22\x36\x34\x70\x78\x22\x0a\x20\x20\x20\x68\x65\x69\ -\x67\x68\x74\x3d\x22\x36\x34\x70\x78\x22\x0a\x20\x20\x20\x69\x64\ -\x3d\x22\x73\x76\x67\x32\x39\x38\x30\x22\x0a\x20\x20\x20\x73\x6f\ -\x64\x69\x70\x6f\x64\x69\x3a\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\ -\x30\x2e\x33\x32\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x34\x38\x2e\ -\x33\x2e\x31\x20\x72\x39\x38\x38\x36\x22\x0a\x20\x20\x20\x73\x6f\ -\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\ -\x54\x72\x65\x65\x5f\x50\x61\x72\x74\x2e\x73\x76\x67\x22\x0a\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6f\x75\x74\x70\x75\ -\x74\x5f\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x3d\x22\x6f\x72\x67\ -\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x75\x74\x70\x75\x74\ -\x2e\x73\x76\x67\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x3e\ -\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x32\x22\x3e\x0a\x20\x20\x20\ -\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\ -\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ -\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ -\x6f\x72\x3a\x23\x37\x31\x62\x32\x66\x38\x3b\x73\x74\x6f\x70\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x38\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ -\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ -\x3a\x23\x30\x30\x32\x37\x39\x35\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\ -\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ -\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\ -\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x35\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\ -\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\ -\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ -\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ -\x61\x74\x72\x69\x78\x28\x30\x2e\x36\x30\x32\x38\x34\x35\x39\x2c\ -\x31\x2e\x30\x34\x37\x31\x36\x33\x39\x2c\x2d\x31\x2e\x39\x37\x39\ -\x34\x30\x32\x31\x2c\x31\x2e\x31\x33\x39\x35\x32\x39\x35\x2c\x31\ -\x32\x37\x2e\x39\x35\x38\x38\x2c\x2d\x37\x34\x2e\x34\x35\x36\x39\ -\x30\x37\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\ -\x35\x31\x2e\x33\x32\x38\x38\x39\x32\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x63\x79\x3d\x22\x33\x31\x2e\x30\x37\x34\x31\x34\x36\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x35\x31\x2e\x33\ -\x32\x38\x38\x39\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\ -\x3d\x22\x33\x31\x2e\x30\x37\x34\x31\x34\x36\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x72\x3d\x22\x31\x39\x2e\x35\x37\x31\x34\x32\x38\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\ -\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ -\x72\x73\x70\x33\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\ -\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\ -\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ -\x7a\x3d\x22\x36\x34\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\ -\x33\x32\x20\x3a\x20\x32\x31\x2e\x33\x33\x33\x33\x33\x33\x20\x3a\ -\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ -\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x32\x39\x38\x38\x22\x20\ -\x2f\x3e\x0a\x20\x20\x3c\x2f\x64\x65\x66\x73\x3e\x0a\x20\x20\x3c\ -\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\ -\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\ -\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\ -\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\ -\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\ -\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\ -\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\ -\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\ -\x31\x2e\x36\x31\x36\x30\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x31\x36\x2e\ -\x35\x37\x39\x33\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x2d\x34\x36\x2e\x37\x34\x38\ -\x38\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\ -\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\ -\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\ -\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\ -\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ -\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x39\x31\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x38\ -\x34\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x31\x37\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ -\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x31\x39\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x30\x22\x20\x2f\ -\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\ -\x39\x38\x35\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\ -\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\ -\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ -\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\ -\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\ -\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\ -\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\ -\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x3c\x2f\ -\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\ -\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\ -\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\ -\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\ -\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\ -\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\ -\x33\x38\x34\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\ -\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\ -\x2e\x34\x39\x36\x31\x31\x36\x39\x32\x2c\x30\x2c\x30\x2c\x30\x2e\ -\x34\x39\x36\x31\x31\x36\x39\x32\x2c\x2d\x36\x2e\x32\x33\x33\x36\ -\x35\x33\x36\x2c\x2d\x34\x30\x2e\x37\x31\x32\x31\x31\x32\x29\x22\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ -\x6c\x6c\x3a\x23\x30\x30\x33\x34\x66\x66\x3b\x66\x69\x6c\x6c\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\ -\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\ -\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x62\x65\ -\x76\x65\x6c\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ -\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\ -\x3a\x30\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\ -\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\ -\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\ -\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\ -\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\ -\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x39\x36\ -\x2e\x31\x38\x34\x34\x34\x2c\x31\x34\x31\x2e\x34\x34\x39\x36\x38\ -\x20\x2d\x31\x39\x2e\x38\x31\x34\x34\x31\x2c\x37\x2e\x31\x37\x39\ -\x32\x31\x20\x32\x39\x2e\x34\x33\x34\x39\x2c\x33\x2e\x39\x37\x32\ -\x30\x39\x20\x2d\x30\x2e\x37\x32\x33\x35\x37\x2c\x33\x36\x2e\x31\ -\x32\x36\x36\x35\x20\x31\x37\x2e\x32\x35\x38\x38\x31\x2c\x2d\x31\ -\x30\x2e\x39\x34\x33\x38\x38\x20\x30\x2e\x35\x37\x35\x38\x37\x2c\ -\x2d\x33\x34\x2e\x33\x38\x34\x38\x35\x20\x2d\x32\x36\x2e\x37\x33\ -\x31\x36\x2c\x2d\x31\x2e\x39\x34\x39\x32\x32\x20\x7a\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ -\x33\x38\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\ -\x73\x3d\x22\x63\x63\x63\x63\x63\x63\x63\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ -\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\ -\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ -\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x33\x34\x66\ -\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\ -\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\ -\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x34\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\ -\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x6a\x6f\x69\x6e\x3a\x62\x65\x76\x65\x6c\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ -\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ -\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\x72\ -\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\ -\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\ -\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\ -\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\ -\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\ -\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x64\x3d\x22\x6d\x20\x37\x35\x2e\x35\x37\x39\x34\x31\x2c\x31\x34\ -\x38\x2e\x36\x35\x38\x39\x20\x33\x30\x2e\x37\x30\x38\x38\x34\x2c\ -\x33\x2e\x33\x36\x35\x36\x32\x20\x30\x2c\x33\x36\x2e\x34\x37\x37\ -\x31\x39\x20\x2d\x33\x31\x2e\x31\x32\x33\x38\x33\x2c\x2d\x35\x2e\ -\x30\x36\x34\x37\x39\x20\x30\x2e\x34\x31\x34\x39\x39\x2c\x2d\x33\ -\x34\x2e\x37\x37\x38\x30\x32\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x32\x35\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\ -\x63\x63\x63\x63\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\ -\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ -\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x35\x30\x29\x3b\x66\x69\x6c\ -\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\ -\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\ -\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x34\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\ -\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ -\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\ -\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\ -\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\ -\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\ -\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\ -\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\ -\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\ -\x31\x30\x36\x2e\x30\x35\x34\x33\x35\x2c\x31\x35\x32\x2e\x30\x36\ -\x39\x34\x38\x20\x31\x36\x2e\x37\x32\x35\x39\x38\x2c\x2d\x38\x2e\ -\x34\x30\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x32\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\ -\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\ -\x67\x3e\x0a\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x72\x6f\x6b\x65\x3a\x23\ -\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3a\x31\x2e\x39\x37\x37\x38\x39\x33\x34\x37\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ -\x3a\x31\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ -\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\ -\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x67\x33\x39\x38\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ -\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x33\x34\x35\x33\x30\x30\x37\ -\x32\x2c\x2d\x30\x2e\x30\x34\x35\x39\x35\x35\x35\x2c\x30\x2e\x30\ -\x34\x35\x39\x35\x35\x35\x2c\x30\x2e\x33\x34\x35\x33\x30\x30\x37\ -\x32\x2c\x2d\x34\x33\x2e\x32\x32\x38\x39\x35\x36\x2c\x2d\x37\x2e\ -\x32\x33\x38\x31\x33\x34\x29\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x4c\x61\x79\x65\x72\x5f\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x3a\x72\x67\x62\x54\x72\x69\x6f\x3d\x22\x23\x34\x46\ -\x30\x30\x38\x30\x30\x30\x46\x46\x46\x46\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x3a\x6c\x61\x79\x65\x72\x3d\x22\x79\x65\ -\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x3a\x64\x69\ -\x6d\x6d\x65\x64\x50\x65\x72\x63\x65\x6e\x74\x3d\x22\x35\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x39\ -\x37\x37\x38\x39\x33\x34\x37\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ -\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ -\x6e\x65\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\ -\x33\x38\x39\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ -\x69\x78\x28\x2d\x30\x2e\x33\x32\x34\x33\x35\x35\x31\x34\x2c\x30\ -\x2e\x31\x33\x37\x35\x34\x34\x36\x37\x2c\x2d\x30\x2e\x31\x33\x37\ -\x35\x34\x34\x36\x37\x2c\x2d\x30\x2e\x33\x32\x34\x33\x35\x35\x31\ -\x34\x2c\x32\x37\x30\x2e\x39\x30\x32\x2c\x31\x33\x39\x2e\x34\x30\ -\x38\x37\x36\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x72\x6f\x6b\x65\x3a\x23\ -\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3a\x35\x2e\x36\x31\x34\x30\x31\x36\x30\x36\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ -\x3a\x31\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ -\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ -\x68\x33\x38\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ -\x6c\x69\x6d\x69\x74\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\ -\x75\x74\x3d\x22\x4f\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x33\x34\x38\x2e\x34\ -\x32\x36\x2c\x34\x39\x2e\x31\x31\x33\x20\x63\x20\x31\x35\x2e\x35\ -\x31\x36\x2c\x2d\x34\x2e\x31\x34\x20\x33\x30\x2e\x33\x34\x38\x2c\ -\x2d\x38\x2e\x30\x32\x38\x20\x34\x35\x2e\x34\x36\x39\x2c\x2d\x31\ -\x31\x2e\x36\x36\x34\x20\x31\x35\x2e\x30\x38\x34\x2c\x2d\x33\x2e\ -\x38\x35\x32\x20\x33\x34\x2e\x30\x35\x35\x2c\x2d\x38\x2e\x34\x36\ -\x20\x34\x34\x2e\x31\x33\x35\x2c\x2d\x31\x30\x2e\x33\x33\x32\x20\ -\x39\x2e\x39\x33\x38\x2c\x2d\x31\x2e\x38\x37\x32\x20\x31\x30\x2e\ -\x36\x32\x31\x2c\x2d\x31\x2e\x31\x31\x36\x20\x31\x35\x2e\x30\x38\ -\x34\x2c\x2d\x30\x2e\x33\x36\x20\x34\x2e\x33\x32\x2c\x30\x2e\x36\ -\x34\x38\x20\x38\x2e\x32\x34\x34\x2c\x33\x2e\x34\x39\x32\x20\x31\ -\x30\x2e\x38\x30\x31\x2c\x34\x2e\x39\x33\x32\x20\x32\x2e\x33\x34\ -\x2c\x31\x2e\x32\x39\x36\x20\x33\x2e\x35\x32\x37\x2c\x30\x2e\x36\ -\x34\x38\x20\x33\x2e\x35\x36\x34\x2c\x33\x2e\x37\x34\x34\x20\x2d\ -\x30\x2e\x31\x38\x2c\x33\x2e\x30\x39\x36\x20\x2d\x31\x2e\x34\x37\ -\x37\x2c\x31\x31\x2e\x33\x34\x20\x2d\x33\x2e\x38\x38\x39\x2c\x31\ -\x35\x2e\x31\x35\x36\x20\x2d\x32\x2e\x34\x34\x37\x2c\x33\x2e\x37\ -\x30\x38\x20\x2d\x36\x2e\x35\x35\x33\x2c\x35\x2e\x33\x36\x34\x20\ -\x2d\x31\x30\x2e\x33\x36\x37\x2c\x37\x2e\x34\x38\x38\x20\x2d\x33\ -\x2e\x38\x38\x39\x2c\x32\x2e\x30\x38\x38\x20\x2d\x37\x2e\x36\x36\ -\x38\x2c\x33\x2e\x31\x33\x32\x20\x2d\x31\x32\x2e\x36\x30\x32\x2c\ -\x35\x2e\x30\x37\x36\x20\x2d\x35\x2e\x30\x33\x39\x2c\x31\x2e\x38\ -\x37\x32\x20\x2d\x34\x2e\x32\x34\x38\x2c\x30\x2e\x37\x32\x20\x2d\ -\x31\x37\x2e\x32\x30\x37\x2c\x35\x2e\x39\x37\x36\x20\x2d\x31\x33\ -\x2e\x32\x31\x33\x2c\x35\x2e\x31\x34\x38\x20\x2d\x34\x34\x2e\x34\ -\x36\x31\x2c\x31\x38\x2e\x30\x37\x32\x20\x2d\x36\x30\x2e\x32\x36\ -\x34\x2c\x32\x34\x2e\x38\x37\x36\x20\x2d\x31\x35\x2e\x37\x33\x32\ -\x2c\x36\x2e\x36\x36\x20\x2d\x32\x32\x2e\x39\x33\x32\x2c\x39\x2e\ -\x33\x36\x20\x2d\x33\x33\x2e\x35\x35\x33\x2c\x31\x35\x2e\x31\x39\ -\x32\x20\x2d\x31\x30\x2e\x37\x36\x34\x2c\x35\x2e\x37\x39\x35\x20\ -\x2d\x32\x31\x2e\x38\x38\x39\x2c\x31\x35\x2e\x35\x38\x38\x20\x2d\ -\x33\x30\x2e\x33\x31\x33\x2c\x31\x39\x2e\x32\x36\x20\x2d\x38\x2e\ -\x34\x35\x39\x2c\x33\x2e\x34\x39\x32\x20\x2d\x31\x33\x2e\x38\x35\ -\x39\x2c\x31\x2e\x34\x37\x37\x20\x2d\x31\x39\x2e\x39\x34\x33\x2c\ -\x32\x2e\x31\x36\x20\x2d\x36\x2e\x30\x38\x34\x2c\x30\x2e\x36\x31\ -\x31\x20\x2d\x38\x2e\x37\x31\x31\x2c\x2d\x30\x2e\x31\x34\x35\x20\ -\x2d\x31\x36\x2e\x37\x37\x35\x2c\x31\x2e\x37\x36\x34\x20\x2d\x38\ -\x2e\x33\x31\x36\x2c\x31\x2e\x38\x37\x31\x20\x2d\x32\x32\x2e\x32\ -\x34\x38\x2c\x35\x2e\x39\x33\x39\x20\x2d\x33\x32\x2e\x32\x32\x31\ -\x2c\x39\x2e\x34\x33\x32\x20\x2d\x31\x30\x2e\x31\x31\x36\x2c\x33\ -\x2e\x34\x39\x32\x20\x2d\x32\x30\x2e\x39\x38\x38\x2c\x38\x2e\x31\ -\x37\x32\x20\x2d\x32\x37\x2e\x32\x31\x36\x2c\x31\x30\x2e\x39\x38\ -\x20\x2d\x36\x2e\x31\x39\x32\x2c\x32\x2e\x36\x32\x39\x20\x2d\x39\ -\x2e\x34\x33\x32\x2c\x34\x2e\x32\x31\x33\x20\x2d\x39\x2e\x37\x32\ -\x2c\x34\x2e\x38\x39\x36\x20\x2d\x30\x2e\x31\x38\x2c\x33\x2e\x31\ -\x33\x31\x20\x2d\x32\x2e\x30\x31\x36\x2c\x36\x2e\x31\x31\x39\x20\ -\x2d\x35\x2e\x35\x30\x38\x2c\x39\x2e\x31\x30\x37\x20\x2d\x33\x2e\ -\x36\x2c\x32\x2e\x39\x38\x38\x20\x2d\x36\x2e\x35\x31\x36\x2c\x34\ -\x2e\x31\x37\x36\x20\x2d\x31\x35\x2e\x35\x35\x32\x2c\x38\x2e\x37\ -\x31\x33\x20\x2d\x39\x2e\x32\x31\x36\x2c\x34\x2e\x34\x32\x38\x20\ -\x2d\x32\x36\x2e\x39\x36\x34\x2c\x31\x32\x2e\x30\x39\x36\x20\x2d\ -\x33\x38\x2e\x39\x35\x32\x2c\x31\x37\x2e\x38\x35\x35\x20\x2d\x31\ -\x32\x2e\x31\x36\x38\x2c\x35\x2e\x37\x32\x35\x20\x2d\x32\x33\x2e\ -\x35\x34\x34\x2c\x31\x31\x2e\x35\x35\x37\x20\x2d\x33\x32\x2e\x37\ -\x36\x2c\x31\x36\x2e\x31\x32\x37\x20\x2d\x39\x2e\x31\x34\x34\x2c\ -\x34\x2e\x34\x33\x20\x2d\x31\x36\x2e\x32\x33\x36\x2c\x37\x2e\x39\ -\x35\x37\x20\x2d\x32\x31\x2e\x38\x31\x36\x2c\x31\x30\x2e\x35\x38\ -\x34\x20\x2d\x35\x2e\x36\x38\x38\x2c\x32\x2e\x35\x39\x32\x20\x2d\ -\x37\x2e\x35\x39\x36\x2c\x34\x2e\x34\x33\x20\x2d\x31\x31\x2e\x39\ -\x35\x32\x2c\x34\x2e\x39\x36\x39\x20\x2d\x34\x2e\x33\x39\x32\x2c\ -\x30\x2e\x33\x35\x39\x20\x2d\x38\x2e\x31\x2c\x30\x2e\x33\x32\x34\ -\x20\x2d\x31\x34\x2e\x36\x31\x36\x2c\x2d\x32\x2e\x36\x32\x39\x20\ -\x2d\x36\x2e\x37\x33\x32\x2c\x2d\x33\x2e\x31\x33\x31\x20\x2d\x31\ -\x37\x2e\x33\x38\x38\x2c\x2d\x31\x30\x2e\x33\x36\x37\x20\x2d\x32\ -\x35\x2e\x30\x32\x2c\x2d\x31\x35\x2e\x34\x34\x33\x20\x2d\x37\x2e\ -\x37\x30\x34\x2c\x2d\x35\x2e\x31\x31\x31\x20\x2d\x31\x36\x2e\x32\ -\x2c\x2d\x31\x30\x2e\x35\x31\x32\x20\x2d\x32\x30\x2e\x34\x38\x34\ -\x2c\x2d\x31\x34\x2e\x38\x33\x32\x20\x2d\x34\x2e\x32\x34\x38\x2c\ -\x2d\x34\x2e\x33\x32\x20\x2d\x33\x2e\x38\x35\x32\x2c\x2d\x36\x2e\ -\x35\x38\x38\x20\x2d\x34\x2e\x39\x33\x32\x2c\x2d\x31\x31\x2e\x30\ -\x38\x38\x20\x2d\x31\x2e\x32\x32\x34\x2c\x2d\x34\x2e\x36\x38\x20\ -\x2d\x32\x2e\x35\x32\x2c\x2d\x31\x31\x2e\x39\x38\x38\x20\x2d\x31\ -\x2e\x38\x2c\x2d\x31\x36\x2e\x32\x33\x36\x20\x30\x2e\x36\x31\x32\ -\x2c\x2d\x34\x2e\x33\x35\x35\x20\x32\x2e\x35\x35\x36\x2c\x2d\x36\ -\x2e\x39\x38\x34\x20\x35\x2e\x39\x37\x36\x2c\x2d\x39\x2e\x33\x39\ -\x35\x20\x33\x2e\x34\x39\x32\x2c\x2d\x32\x2e\x34\x31\x32\x20\x38\ -\x2e\x30\x36\x34\x2c\x2d\x34\x2e\x31\x34\x31\x20\x31\x34\x2e\x34\ -\x2c\x2d\x35\x2e\x30\x34\x31\x20\x30\x2e\x34\x33\x32\x2c\x2d\x39\ -\x2e\x37\x39\x31\x20\x30\x2e\x31\x38\x2c\x2d\x31\x39\x2e\x34\x37\ -\x37\x20\x2d\x30\x2e\x36\x31\x32\x2c\x2d\x32\x39\x2e\x33\x34\x20\ -\x2d\x30\x2e\x39\x37\x32\x2c\x2d\x39\x2e\x39\x37\x32\x20\x2d\x33\ -\x2e\x32\x34\x2c\x2d\x32\x31\x2e\x36\x33\x36\x20\x2d\x34\x2e\x34\ -\x32\x38\x2c\x2d\x32\x39\x2e\x37\x33\x36\x20\x2d\x31\x2e\x31\x35\ -\x32\x2c\x2d\x38\x2e\x31\x37\x32\x20\x2d\x32\x2e\x30\x35\x32\x2c\ -\x2d\x31\x34\x2e\x31\x38\x34\x20\x2d\x32\x2e\x35\x35\x36\x2c\x2d\ -\x31\x38\x2e\x35\x37\x36\x20\x31\x2e\x38\x2c\x2d\x34\x2e\x31\x30\ -\x34\x20\x34\x2e\x30\x36\x38\x2c\x2d\x36\x2e\x38\x30\x34\x20\x36\ -\x2e\x38\x30\x34\x2c\x2d\x38\x2e\x35\x33\x32\x20\x32\x2e\x36\x36\ -\x34\x2c\x2d\x31\x2e\x37\x36\x34\x20\x36\x2e\x33\x33\x36\x2c\x2d\ -\x31\x2e\x36\x35\x36\x20\x39\x2e\x33\x36\x2c\x2d\x31\x2e\x36\x32\ -\x20\x32\x2e\x39\x31\x36\x2c\x2d\x30\x2e\x30\x37\x32\x20\x35\x2e\ -\x37\x32\x34\x2c\x30\x2e\x34\x36\x38\x20\x38\x2e\x32\x38\x2c\x31\ -\x2e\x34\x37\x36\x20\x31\x2e\x38\x2c\x2d\x34\x2e\x37\x38\x38\x20\ -\x34\x2e\x36\x30\x38\x2c\x2d\x37\x2e\x35\x36\x20\x38\x2e\x35\x36\ -\x38\x2c\x2d\x38\x2e\x33\x31\x36\x20\x33\x2e\x38\x35\x32\x2c\x2d\ -\x30\x2e\x37\x35\x36\x20\x38\x2e\x38\x35\x36\x2c\x30\x2e\x33\x39\ -\x36\x20\x31\x34\x2e\x38\x36\x38\x2c\x33\x2e\x36\x20\x31\x2e\x38\ -\x33\x36\x2c\x2d\x33\x2e\x39\x36\x20\x34\x2e\x35\x2c\x2d\x36\x2e\ -\x30\x38\x34\x20\x37\x2e\x39\x39\x32\x2c\x2d\x36\x2e\x35\x31\x36\ -\x20\x33\x2e\x34\x39\x32\x2c\x2d\x30\x2e\x34\x33\x32\x20\x37\x2e\ -\x37\x30\x34\x2c\x30\x2e\x38\x32\x38\x20\x31\x32\x2e\x37\x38\x2c\ -\x33\x2e\x39\x32\x34\x20\x31\x2e\x35\x34\x38\x2c\x2d\x33\x2e\x30\ -\x32\x34\x20\x33\x2e\x37\x30\x38\x2c\x2d\x34\x2e\x37\x38\x38\x20\ -\x36\x2e\x36\x32\x34\x2c\x2d\x35\x2e\x31\x34\x38\x20\x32\x2e\x38\ -\x38\x2c\x2d\x30\x2e\x33\x39\x36\x20\x36\x2e\x34\x38\x2c\x30\x2e\ -\x34\x36\x38\x20\x31\x30\x2e\x38\x2c\x32\x2e\x37\x33\x36\x20\x31\ -\x2e\x39\x30\x38\x2c\x2d\x32\x2e\x39\x35\x32\x20\x34\x2e\x34\x32\ -\x38\x2c\x2d\x34\x2e\x35\x33\x36\x20\x37\x2e\x35\x36\x2c\x2d\x34\ -\x2e\x38\x39\x36\x20\x33\x2e\x31\x33\x32\x2c\x2d\x30\x2e\x34\x33\ -\x32\x20\x36\x2e\x37\x33\x32\x2c\x30\x2e\x35\x30\x34\x20\x31\x31\ -\x2e\x30\x38\x38\x2c\x32\x2e\x36\x36\x34\x20\x30\x2e\x31\x38\x2c\ -\x2d\x31\x2e\x34\x34\x20\x31\x2e\x32\x32\x34\x2c\x2d\x32\x2e\x34\ -\x31\x32\x20\x33\x2e\x36\x37\x32\x2c\x2d\x32\x2e\x35\x32\x20\x32\ -\x2e\x32\x36\x38\x2c\x2d\x30\x2e\x32\x31\x36\x20\x37\x2e\x31\x32\ -\x38\x2c\x30\x2e\x36\x31\x32\x20\x31\x30\x2e\x32\x39\x36\x2c\x31\ -\x2e\x33\x36\x38\x20\x33\x2e\x30\x39\x36\x2c\x30\x2e\x36\x31\x32\ -\x20\x34\x2e\x36\x34\x34\x2c\x31\x2e\x33\x36\x38\x20\x38\x2e\x33\ -\x38\x38\x2c\x32\x2e\x36\x36\x34\x20\x33\x2e\x36\x2c\x31\x2e\x32\ -\x36\x20\x39\x2e\x32\x35\x32\x2c\x33\x2e\x30\x39\x36\x20\x31\x33\ -\x2e\x35\x2c\x34\x2e\x39\x33\x32\x20\x34\x2e\x32\x34\x38\x2c\x31\ -\x2e\x37\x32\x38\x20\x39\x2e\x32\x38\x38\x2c\x32\x2e\x35\x35\x36\ -\x20\x31\x31\x2e\x36\x32\x38\x2c\x35\x2e\x34\x20\x32\x2e\x31\x39\ -\x36\x2c\x32\x2e\x37\x37\x32\x20\x31\x2e\x37\x36\x34\x2c\x34\x2e\ -\x37\x38\x38\x20\x31\x2e\x37\x36\x34\x2c\x31\x31\x2e\x33\x34\x20\ -\x2d\x30\x2e\x30\x33\x36\x2c\x36\x2e\x35\x38\x38\x20\x2d\x31\x2e\ -\x38\x2c\x32\x30\x2e\x32\x36\x38\x20\x2d\x31\x2e\x38\x33\x36\x2c\ -\x32\x37\x2e\x35\x37\x36\x20\x2d\x30\x2e\x31\x38\x2c\x37\x2e\x32\ -\x33\x36\x20\x30\x2e\x31\x38\x2c\x31\x32\x2e\x32\x30\x34\x20\x30\ -\x2e\x39\x33\x36\x2c\x31\x35\x2e\x34\x34\x34\x20\x31\x33\x2e\x30\ -\x36\x38\x2c\x2d\x34\x2e\x33\x32\x20\x32\x35\x2e\x30\x35\x36\x2c\ -\x2d\x38\x2e\x37\x34\x38\x20\x33\x36\x2e\x35\x30\x34\x2c\x2d\x31\ -\x33\x2e\x38\x32\x34\x20\x31\x31\x2e\x34\x31\x32\x2c\x2d\x35\x2e\ -\x31\x34\x38\x20\x32\x33\x2e\x36\x38\x38\x2c\x2d\x31\x31\x2e\x35\ -\x35\x36\x20\x33\x31\x2e\x35\x33\x36\x2c\x2d\x31\x36\x2e\x33\x30\ -\x38\x20\x37\x2e\x35\x39\x36\x2c\x2d\x34\x2e\x38\x39\x36\x20\x39\ -\x2e\x30\x33\x35\x2c\x2d\x39\x2e\x34\x33\x32\x20\x31\x34\x2e\x34\ -\x37\x33\x2c\x2d\x31\x32\x2e\x33\x34\x38\x20\x35\x2e\x33\x39\x38\ -\x2c\x2d\x32\x2e\x39\x31\x36\x20\x31\x30\x2e\x32\x39\x35\x2c\x2d\ -\x33\x2e\x32\x34\x20\x31\x37\x2e\x37\x34\x38\x2c\x2d\x35\x2e\x31\ -\x34\x38\x20\x37\x2e\x33\x37\x39\x2c\x2d\x32\x2e\x30\x35\x32\x20\ -\x31\x36\x2e\x34\x31\x36\x2c\x2d\x34\x2e\x32\x31\x32\x20\x32\x36\ -\x2e\x32\x37\x39\x2c\x2d\x36\x2e\x37\x36\x38\x20\x39\x2e\x36\x38\ -\x34\x2c\x2d\x32\x2e\x37\x37\x32\x20\x32\x32\x2e\x33\x39\x33\x2c\ -\x2d\x36\x2e\x33\x37\x32\x20\x33\x31\x2e\x38\x35\x39\x2c\x2d\x38\ -\x2e\x38\x35\x36\x20\x39\x2e\x33\x39\x38\x2c\x2d\x32\x2e\x34\x38\ -\x33\x20\x31\x37\x2e\x33\x31\x38\x2c\x2d\x34\x2e\x34\x36\x33\x20\ -\x32\x34\x2e\x31\x35\x38\x2c\x2d\x35\x2e\x39\x33\x39\x20\x7a\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\ -\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\ -\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\ -\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\ -\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3a\x35\x2e\x36\x31\x34\x30\x31\x36\x30\x36\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\ -\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\ -\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ -\x68\x33\x38\x39\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ -\x6c\x69\x6d\x69\x74\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\ -\x75\x74\x3d\x22\x4f\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x35\x39\x2e\x33\ -\x32\x36\x2c\x37\x34\x2e\x37\x30\x39\x20\x63\x20\x31\x33\x2e\x31\ -\x30\x34\x2c\x2d\x32\x2e\x37\x20\x32\x36\x2e\x38\x35\x35\x2c\x2d\ -\x35\x2e\x39\x34\x20\x34\x32\x2e\x30\x38\x34\x2c\x2d\x31\x30\x2e\ -\x30\x30\x38\x20\x31\x35\x2e\x31\x39\x31\x2c\x2d\x34\x2e\x32\x31\ -\x32\x20\x33\x31\x2e\x36\x38\x2c\x2d\x39\x2e\x36\x38\x34\x20\x34\ -\x38\x2e\x33\x34\x38\x2c\x2d\x31\x34\x2e\x31\x38\x34\x20\x31\x36\ -\x2e\x36\x33\x33\x2c\x2d\x34\x2e\x35\x33\x36\x20\x33\x34\x2e\x39\ -\x32\x2c\x2d\x38\x2e\x37\x31\x32\x20\x35\x30\x2e\x34\x2c\x2d\x31\ -\x32\x2e\x33\x38\x34\x20\x31\x35\x2e\x32\x36\x34\x2c\x2d\x33\x2e\ -\x38\x31\x36\x20\x33\x31\x2e\x34\x36\x33\x2c\x2d\x38\x2e\x34\x39\ -\x36\x20\x34\x30\x2e\x38\x32\x34\x2c\x2d\x39\x2e\x37\x32\x20\x39\ -\x2e\x31\x38\x2c\x2d\x31\x2e\x32\x36\x20\x31\x30\x2e\x37\x36\x34\ -\x2c\x30\x2e\x39\x33\x36\x20\x31\x34\x2e\x34\x37\x31\x2c\x32\x2e\ -\x34\x31\x32\x20\x33\x2e\x36\x33\x37\x2c\x31\x2e\x33\x36\x38\x20\ -\x39\x2e\x37\x32\x31\x2c\x33\x2e\x39\x39\x36\x20\x37\x2e\x34\x31\ -\x36\x2c\x36\x2e\x30\x38\x34\x20\x2d\x32\x2e\x34\x34\x37\x2c\x31\ -\x2e\x39\x34\x34\x20\x2d\x39\x2e\x36\x38\x34\x2c\x33\x2e\x30\x39\ -\x36\x20\x2d\x32\x31\x2e\x38\x35\x32\x2c\x36\x2e\x33\x37\x32\x20\ -\x2d\x31\x32\x2e\x33\x34\x38\x2c\x33\x2e\x32\x34\x20\x2d\x33\x34\ -\x2e\x35\x32\x33\x2c\x38\x2e\x38\x35\x36\x20\x2d\x35\x31\x2e\x31\ -\x31\x39\x2c\x31\x33\x2e\x35\x33\x36\x20\x2d\x31\x36\x2e\x37\x30\ -\x35\x2c\x34\x2e\x36\x38\x20\x2d\x33\x31\x2e\x33\x39\x33\x2c\x39\ -\x2e\x31\x30\x38\x20\x2d\x34\x37\x2e\x39\x35\x33\x2c\x31\x34\x2e\ -\x34\x20\x2d\x31\x36\x2e\x36\x33\x31\x2c\x35\x2e\x32\x32\x20\x2d\ -\x33\x38\x2e\x31\x39\x35\x2c\x31\x31\x2e\x39\x38\x38\x20\x2d\x35\ -\x30\x2e\x39\x33\x39\x2c\x31\x36\x2e\x38\x31\x32\x20\x2d\x31\x32\ -\x2e\x37\x34\x34\x2c\x34\x2e\x37\x35\x32\x20\x2d\x31\x32\x2e\x37\ -\x30\x37\x2c\x36\x2e\x30\x38\x34\x20\x2d\x32\x35\x2e\x31\x36\x34\ -\x2c\x31\x31\x2e\x37\x37\x32\x20\x2d\x31\x32\x2e\x37\x30\x37\x2c\ -\x35\x2e\x35\x38\x20\x2d\x33\x35\x2e\x38\x32\x2c\x31\x35\x2e\x37\ -\x36\x38\x20\x2d\x34\x39\x2e\x37\x35\x32\x2c\x32\x31\x2e\x38\x31\ -\x36\x20\x2d\x31\x33\x2e\x39\x33\x32\x2c\x36\x2e\x30\x34\x37\x20\ -\x2d\x32\x35\x2e\x33\x38\x2c\x31\x32\x2e\x32\x34\x20\x2d\x33\x32\ -\x2e\x38\x33\x32\x2c\x31\x34\x2e\x30\x30\x34\x20\x2d\x37\x2e\x34\ -\x38\x38\x2c\x31\x2e\x34\x37\x37\x20\x2d\x38\x2e\x39\x32\x38\x2c\ -\x2d\x32\x2e\x33\x30\x35\x20\x2d\x31\x31\x2e\x36\x36\x34\x2c\x2d\ -\x34\x2e\x33\x39\x33\x20\x2d\x32\x2e\x39\x31\x36\x2c\x2d\x32\x2e\ -\x31\x32\x33\x20\x2d\x34\x2e\x35\x33\x36\x2c\x2d\x34\x2e\x36\x38\ -\x20\x2d\x35\x2e\x32\x35\x36\x2c\x2d\x37\x2e\x39\x35\x35\x20\x31\ -\x31\x2e\x34\x38\x34\x2c\x2d\x34\x2e\x31\x34\x31\x20\x32\x32\x2e\ -\x35\x37\x32\x2c\x2d\x38\x2e\x36\x30\x35\x20\x33\x33\x2e\x36\x36\ -\x2c\x2d\x31\x33\x2e\x35\x33\x37\x20\x31\x31\x2e\x30\x35\x32\x2c\ -\x2d\x35\x2e\x30\x30\x34\x20\x32\x34\x2e\x33\x2c\x2d\x31\x30\x2e\ -\x39\x34\x34\x20\x33\x32\x2e\x33\x36\x34\x2c\x2d\x31\x35\x2e\x38\ -\x37\x36\x20\x37\x2e\x38\x38\x34\x2c\x2d\x35\x2e\x30\x34\x20\x31\ -\x30\x2e\x36\x32\x31\x2c\x2d\x31\x30\x2e\x34\x30\x34\x20\x31\x35\ -\x2e\x31\x35\x36\x2c\x2d\x31\x33\x2e\x36\x30\x38\x20\x34\x2e\x35\ -\x2c\x2d\x33\x2e\x32\x30\x33\x20\x38\x2e\x33\x38\x38\x2c\x2d\x35\ -\x2e\x30\x30\x33\x20\x31\x31\x2e\x38\x30\x38\x2c\x2d\x35\x2e\x35\ -\x34\x33\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x63\x6c\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\ -\x65\x6e\x6f\x64\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\ -\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\ -\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\ -\x30\x33\x34\x66\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\ -\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\ -\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3a\x35\x2e\x36\x31\x34\x30\x31\x36\x30\x36\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ -\x31\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ -\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ -\x74\x68\x33\x38\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\x75\x74\x3d\ -\x22\x4f\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x37\x30\x2e\x31\x35\x34\x2c\ -\x31\x32\x36\x2e\x36\x32\x31\x20\x63\x20\x31\x35\x2e\x31\x35\x36\ -\x2c\x2d\x36\x2e\x35\x35\x33\x20\x32\x37\x2e\x37\x32\x2c\x2d\x31\ -\x32\x2e\x31\x33\x33\x20\x33\x38\x2e\x33\x37\x36\x2c\x2d\x31\x37\ -\x2e\x30\x32\x38\x20\x31\x30\x2e\x35\x34\x38\x2c\x2d\x34\x2e\x38\ -\x32\x34\x20\x31\x38\x2e\x34\x33\x32\x2c\x2d\x38\x2e\x34\x36\x20\ -\x32\x34\x2e\x37\x36\x38\x2c\x2d\x31\x32\x2e\x30\x32\x34\x20\x36\ -\x2e\x31\x35\x35\x2c\x2d\x33\x2e\x38\x31\x36\x20\x38\x2e\x32\x34\ -\x33\x2c\x2d\x39\x2e\x30\x33\x36\x20\x31\x32\x2e\x33\x38\x34\x2c\ -\x2d\x39\x2e\x39\x37\x32\x20\x34\x2e\x31\x34\x31\x2c\x2d\x30\x2e\ -\x39\x20\x39\x2e\x39\x2c\x32\x2e\x39\x31\x36\x20\x31\x32\x2e\x30\ -\x32\x33\x2c\x34\x2e\x36\x34\x34\x20\x31\x2e\x39\x38\x2c\x31\x2e\ -\x36\x32\x20\x32\x2e\x33\x30\x35\x2c\x33\x2e\x37\x30\x38\x20\x30\ -\x2c\x35\x2e\x32\x39\x32\x20\x2d\x32\x2e\x35\x32\x2c\x31\x2e\x33\ -\x33\x32\x20\x2d\x37\x2e\x38\x34\x38\x2c\x31\x2e\x35\x38\x34\x20\ -\x2d\x31\x34\x2e\x33\x32\x38\x2c\x33\x2e\x35\x32\x38\x20\x2d\x36\ -\x2e\x35\x35\x31\x2c\x32\x2e\x30\x35\x32\x20\x2d\x31\x36\x2e\x33\ -\x30\x37\x2c\x35\x2e\x36\x31\x36\x20\x2d\x32\x34\x2e\x32\x36\x33\ -\x2c\x38\x2e\x36\x30\x34\x20\x2d\x37\x2e\x39\x39\x32\x2c\x32\x2e\ -\x37\x37\x32\x20\x2d\x31\x35\x2e\x33\x33\x36\x2c\x35\x2e\x32\x39\ -\x32\x20\x2d\x32\x33\x2e\x32\x39\x32\x2c\x38\x2e\x36\x37\x37\x20\ -\x2d\x38\x2e\x31\x2c\x33\x2e\x34\x32\x20\x2d\x31\x36\x2e\x30\x39\ -\x32\x2c\x37\x2e\x31\x39\x39\x20\x2d\x32\x34\x2e\x35\x31\x36\x2c\ -\x31\x31\x2e\x36\x32\x37\x20\x2d\x30\x2e\x33\x36\x2c\x2d\x31\x2e\ -\x31\x31\x35\x20\x2d\x30\x2e\x37\x35\x36\x2c\x2d\x32\x2e\x32\x33\ -\x33\x20\x2d\x31\x2e\x31\x35\x32\x2c\x2d\x33\x2e\x33\x34\x38\x20\ -\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x63\x6c\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\ -\x64\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\ -\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x33\x34\ -\x66\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\ -\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\ -\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ -\x35\x2e\x36\x31\x34\x30\x31\x36\x30\x36\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ -\x3a\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\ -\x38\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ -\x6d\x69\x74\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\x75\x74\ -\x3d\x22\x4f\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x34\x36\x33\x2e\x31\x35\x38\ -\x2c\x34\x30\x2e\x37\x39\x37\x20\x63\x20\x30\x2e\x38\x32\x38\x2c\ -\x33\x2e\x39\x32\x34\x20\x2d\x30\x2e\x33\x39\x36\x2c\x37\x2e\x32\ -\x33\x36\x20\x2d\x34\x2e\x30\x36\x38\x2c\x31\x30\x2e\x32\x32\x34\ -\x20\x2d\x33\x2e\x37\x34\x34\x2c\x32\x2e\x38\x34\x34\x20\x2d\x31\ -\x30\x2e\x33\x33\x32\x2c\x34\x2e\x33\x35\x36\x20\x2d\x31\x37\x2e\ -\x36\x37\x36\x2c\x37\x2e\x33\x30\x38\x20\x2d\x37\x2e\x34\x38\x38\ -\x2c\x32\x2e\x39\x31\x36\x20\x2d\x31\x36\x2e\x30\x35\x37\x2c\x36\ -\x2e\x30\x34\x38\x20\x2d\x32\x36\x2e\x32\x34\x34\x2c\x31\x30\x2e\ -\x30\x38\x20\x2d\x31\x30\x2e\x33\x33\x32\x2c\x33\x2e\x38\x38\x38\ -\x20\x2d\x32\x34\x2e\x31\x39\x31\x2c\x39\x2e\x30\x37\x32\x20\x2d\ -\x33\x34\x2e\x36\x33\x33\x2c\x31\x33\x2e\x34\x36\x34\x20\x2d\x31\ -\x30\x2e\x34\x33\x39\x2c\x34\x2e\x33\x32\x20\x2d\x31\x37\x2e\x37\ -\x31\x31\x2c\x37\x2e\x35\x32\x34\x20\x2d\x32\x37\x2e\x36\x34\x36\ -\x2c\x31\x32\x2e\x33\x38\x34\x20\x2d\x31\x30\x2e\x31\x35\x32\x2c\ -\x34\x2e\x37\x31\x36\x20\x2d\x32\x34\x2e\x30\x38\x34\x2c\x31\x30\ -\x2e\x38\x33\x36\x20\x2d\x33\x32\x2e\x33\x36\x35\x2c\x31\x35\x2e\ -\x38\x37\x36\x20\x2d\x38\x2e\x32\x37\x39\x2c\x34\x2e\x38\x39\x36\ -\x20\x2d\x31\x31\x2e\x37\x33\x36\x2c\x31\x30\x2e\x39\x30\x38\x20\ -\x2d\x31\x37\x2e\x31\x37\x32\x2c\x31\x33\x2e\x34\x36\x35\x20\x2d\ -\x35\x2e\x36\x35\x32\x2c\x32\x2e\x34\x31\x32\x20\x2d\x39\x2e\x32\ -\x38\x37\x2c\x30\x2e\x38\x36\x33\x20\x2d\x31\x35\x2e\x37\x36\x38\ -\x2c\x31\x2e\x35\x38\x34\x20\x2d\x36\x2e\x35\x35\x33\x2c\x30\x2e\ -\x36\x38\x34\x20\x2d\x31\x32\x2e\x35\x32\x37\x2c\x30\x2e\x32\x35\ -\x32\x20\x2d\x32\x32\x2e\x37\x38\x37\x2c\x32\x2e\x35\x39\x32\x20\ -\x2d\x31\x30\x2e\x35\x31\x34\x2c\x32\x2e\x32\x36\x38\x20\x2d\x32\ -\x38\x2e\x39\x34\x35\x2c\x37\x2e\x35\x32\x33\x20\x2d\x33\x38\x2e\ -\x39\x31\x37\x2c\x31\x30\x2e\x39\x30\x38\x20\x2d\x39\x2e\x39\x37\ -\x32\x2c\x33\x2e\x33\x31\x31\x20\x2d\x31\x33\x2e\x38\x32\x34\x2c\ -\x36\x2e\x31\x31\x39\x20\x2d\x32\x30\x2e\x31\x36\x2c\x38\x2e\x38\ -\x31\x38\x20\x2d\x36\x2e\x33\x33\x36\x2c\x32\x2e\x35\x39\x34\x20\ -\x2d\x31\x32\x2e\x30\x32\x34\x2c\x34\x2e\x38\x39\x36\x20\x2d\x31\ -\x37\x2e\x34\x36\x2c\x36\x2e\x39\x31\x32\x20\x30\x2e\x37\x35\x36\ -\x2c\x34\x2e\x31\x34\x31\x20\x2d\x30\x2e\x32\x31\x36\x2c\x37\x2e\ -\x36\x36\x38\x20\x2d\x33\x2e\x33\x31\x32\x2c\x31\x30\x2e\x37\x32\ -\x39\x20\x2d\x33\x2e\x30\x39\x36\x2c\x32\x2e\x39\x35\x33\x20\x2d\ -\x38\x2e\x31\x2c\x33\x2e\x39\x39\x36\x20\x2d\x31\x35\x2e\x30\x31\ -\x32\x2c\x37\x2e\x33\x30\x39\x20\x2d\x37\x2e\x31\x32\x38\x2c\x33\ -\x2e\x32\x30\x33\x20\x2d\x31\x36\x2e\x34\x31\x36\x2c\x37\x2e\x32\ -\x33\x36\x20\x2d\x32\x37\x2e\x30\x33\x36\x2c\x31\x32\x2e\x32\x34\ -\x20\x2d\x31\x30\x2e\x37\x36\x34\x2c\x34\x2e\x39\x36\x37\x20\x2d\ -\x32\x35\x2e\x39\x32\x2c\x31\x32\x2e\x34\x39\x32\x20\x2d\x33\x36\ -\x2e\x35\x37\x36\x2c\x31\x37\x2e\x35\x36\x38\x20\x2d\x31\x30\x2e\ -\x37\x36\x34\x2c\x35\x2e\x30\x37\x34\x20\x2d\x31\x39\x2e\x36\x39\ -\x32\x2c\x39\x2e\x32\x38\x37\x20\x2d\x32\x37\x2e\x30\x37\x32\x2c\ -\x31\x32\x2e\x33\x34\x38\x20\x2d\x37\x2e\x34\x31\x36\x2c\x32\x2e\ -\x38\x37\x39\x20\x2d\x39\x2e\x37\x35\x36\x2c\x36\x2e\x34\x34\x33\ -\x20\x2d\x31\x36\x2e\x38\x38\x34\x2c\x35\x2e\x31\x34\x36\x20\x2d\ -\x37\x2e\x32\x33\x36\x2c\x2d\x31\x2e\x33\x36\x37\x20\x2d\x31\x37\ -\x2e\x35\x36\x38\x2c\x2d\x38\x2e\x31\x20\x2d\x32\x35\x2e\x39\x39\ -\x32\x2c\x2d\x31\x33\x2e\x31\x30\x34\x20\x2d\x38\x2e\x36\x37\x36\ -\x2c\x2d\x35\x2e\x31\x31\x31\x20\x2d\x31\x39\x2e\x32\x39\x36\x2c\ -\x2d\x31\x30\x2e\x33\x33\x32\x20\x2d\x32\x34\x2e\x36\x32\x34\x2c\ -\x2d\x31\x37\x2e\x30\x32\x37\x20\x2d\x35\x2e\x32\x32\x2c\x2d\x36\ -\x2e\x38\x30\x35\x20\x2d\x38\x2e\x36\x30\x34\x2c\x2d\x32\x30\x2e\ -\x33\x34\x20\x2d\x36\x2e\x36\x36\x2c\x2d\x32\x33\x2e\x31\x31\x31\ -\x20\x31\x2e\x39\x30\x38\x2c\x2d\x32\x2e\x37\x37\x33\x20\x31\x30\ -\x2e\x35\x31\x32\x2c\x32\x2e\x39\x31\x36\x20\x31\x37\x2e\x37\x34\ -\x38\x2c\x36\x2e\x35\x31\x36\x20\x37\x2e\x30\x35\x36\x2c\x33\x2e\ -\x34\x32\x20\x31\x37\x2e\x34\x39\x36\x2c\x31\x31\x2e\x35\x39\x32\ -\x20\x32\x34\x2e\x36\x36\x2c\x31\x34\x2e\x34\x20\x37\x2e\x30\x35\ -\x36\x2c\x32\x2e\x38\x34\x34\x20\x31\x30\x2e\x35\x34\x38\x2c\x33\ -\x2e\x36\x20\x31\x37\x2e\x37\x31\x32\x2c\x32\x2e\x32\x36\x38\x20\ -\x37\x2e\x30\x35\x36\x2c\x2d\x31\x2e\x35\x34\x39\x20\x31\x33\x2e\ -\x37\x38\x38\x2c\x2d\x36\x2e\x33\x33\x36\x20\x32\x34\x2e\x36\x36\ -\x2c\x2d\x31\x31\x2e\x30\x31\x36\x20\x31\x30\x2e\x39\x34\x34\x2c\ -\x2d\x34\x2e\x37\x38\x39\x20\x32\x37\x2e\x31\x30\x38\x2c\x2d\x31\ -\x31\x2e\x34\x31\x32\x20\x34\x30\x2e\x30\x33\x32\x2c\x2d\x31\x37\ -\x2e\x31\x30\x32\x20\x31\x32\x2e\x38\x31\x36\x2c\x2d\x35\x2e\x37\ -\x36\x20\x32\x36\x2e\x37\x34\x38\x2c\x2d\x31\x33\x2e\x34\x32\x38\ -\x20\x33\x36\x2e\x31\x30\x38\x2c\x2d\x31\x36\x2e\x37\x37\x35\x20\ -\x39\x2e\x32\x31\x36\x2c\x2d\x33\x2e\x33\x31\x33\x20\x31\x35\x2e\ -\x33\x33\x36\x2c\x2d\x34\x2e\x32\x34\x38\x20\x31\x38\x2e\x37\x35\ -\x36\x2c\x2d\x32\x2e\x39\x35\x31\x20\x34\x2e\x30\x36\x38\x2c\x2d\ -\x33\x2e\x31\x33\x33\x20\x31\x32\x2e\x33\x38\x34\x2c\x2d\x37\x2e\ -\x35\x36\x31\x20\x32\x35\x2e\x30\x39\x32\x2c\x2d\x31\x33\x2e\x34\ -\x32\x38\x20\x31\x32\x2e\x37\x34\x34\x2c\x2d\x36\x2e\x30\x38\x36\ -\x20\x33\x36\x2e\x37\x39\x32\x2c\x2d\x31\x35\x2e\x34\x30\x38\x20\ -\x35\x30\x2e\x37\x35\x39\x2c\x2d\x32\x31\x2e\x37\x30\x39\x20\x31\ -\x33\x2e\x38\x39\x36\x2c\x2d\x36\x2e\x32\x36\x34\x20\x31\x39\x2e\ -\x34\x37\x37\x2c\x2d\x31\x30\x2e\x37\x32\x38\x20\x33\x32\x2e\x31\ -\x34\x38\x2c\x2d\x31\x35\x2e\x34\x38\x20\x31\x32\x2e\x35\x32\x39\ -\x2c\x2d\x34\x2e\x38\x39\x36\x20\x32\x34\x2e\x36\x32\x35\x2c\x2d\ -\x37\x2e\x36\x33\x32\x20\x34\x32\x2e\x39\x34\x39\x2c\x2d\x31\x33\ -\x2e\x32\x31\x32\x20\x31\x38\x2e\x33\x35\x39\x2c\x2d\x35\x2e\x36\ -\x38\x38\x20\x34\x34\x2e\x38\x31\x38\x2c\x2d\x31\x34\x2e\x30\x30\ -\x34\x20\x36\x36\x2e\x33\x31\x31\x2c\x2d\x32\x30\x2e\x32\x33\x32\ -\x20\x32\x31\x2e\x33\x38\x35\x2c\x2d\x36\x2e\x33\x33\x36\x20\x34\ -\x31\x2e\x34\x33\x38\x2c\x2d\x31\x31\x2e\x37\x37\x32\x20\x36\x31\ -\x2e\x31\x32\x39\x2c\x2d\x31\x36\x2e\x39\x39\x32\x20\x7a\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x69\ -\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\ -\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x33\x34\x66\x66\x3b\ -\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\ -\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\ -\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x36\ -\x31\x34\x30\x31\x36\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ -\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ -\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x39\x30\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x3a\x6b\x6e\x6f\x63\x6b\x6f\x75\x74\x3d\x22\x4f\x66\x66\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\ -\x6d\x20\x35\x32\x2e\x37\x35\x38\x2c\x32\x31\x32\x2e\x38\x37\x37\ -\x20\x63\x20\x2d\x34\x2e\x31\x30\x34\x2c\x2d\x30\x2e\x39\x37\x33\ -\x20\x2d\x32\x30\x2e\x38\x34\x34\x2c\x2d\x31\x30\x2e\x36\x35\x36\ -\x20\x2d\x32\x37\x2e\x34\x33\x32\x2c\x2d\x31\x35\x2e\x30\x34\x39\ -\x20\x2d\x36\x2e\x36\x32\x34\x2c\x2d\x34\x2e\x33\x39\x31\x20\x2d\ -\x39\x2c\x2d\x36\x2e\x39\x31\x32\x20\x2d\x31\x31\x2e\x37\x2c\x2d\ -\x31\x31\x2e\x33\x30\x33\x20\x2d\x32\x2e\x38\x34\x34\x2c\x2d\x34\ -\x2e\x36\x30\x39\x20\x2d\x36\x2e\x32\x32\x38\x2c\x2d\x31\x33\x2e\ -\x38\x36\x31\x20\x2d\x34\x2e\x34\x36\x34\x2c\x2d\x31\x35\x2e\x34\ -\x30\x38\x20\x31\x2e\x39\x30\x38\x2c\x2d\x31\x2e\x34\x30\x34\x20\ -\x31\x31\x2e\x35\x32\x2c\x32\x2e\x35\x39\x32\x20\x31\x35\x2e\x35\ -\x31\x36\x2c\x36\x2e\x37\x33\x32\x20\x33\x2e\x38\x38\x38\x2c\x34\ -\x2e\x30\x36\x36\x20\x33\x2e\x33\x34\x38\x2c\x31\x32\x2e\x38\x38\ -\x37\x20\x37\x2e\x35\x36\x2c\x31\x37\x2e\x32\x37\x39\x20\x34\x2e\ -\x30\x36\x38\x2c\x34\x2e\x31\x37\x36\x20\x31\x33\x2e\x32\x38\x34\ -\x2c\x35\x2e\x31\x31\x31\x20\x31\x36\x2e\x38\x31\x32\x2c\x38\x2e\ -\x31\x20\x33\x2e\x33\x38\x34\x2c\x33\x2e\x30\x32\x34\x20\x37\x2e\ -\x36\x33\x32\x2c\x31\x30\x2e\x34\x30\x35\x20\x33\x2e\x37\x30\x38\ -\x2c\x39\x2e\x36\x34\x39\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x69\x70\x2d\x72\x75\x6c\x65\ -\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\ -\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ -\x6c\x3a\x23\x30\x30\x33\x34\x66\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ -\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x36\x31\x34\x30\x31\x36\x30\ -\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ -\x6d\x69\x74\x3a\x31\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x70\x61\x74\x68\x33\x39\x30\x33\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\ -\x6f\x75\x74\x3d\x22\x4f\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x36\x33\x2e\ -\x33\x39\x35\x2c\x31\x32\x34\x2e\x38\x32\x20\x63\x20\x2d\x38\x2e\ -\x31\x33\x37\x2c\x31\x2e\x34\x37\x37\x20\x2d\x31\x37\x2e\x33\x35\ -\x34\x2c\x34\x2e\x31\x30\x35\x20\x2d\x32\x38\x2e\x30\x38\x2c\x37\ -\x2e\x38\x38\x35\x20\x2d\x31\x30\x2e\x37\x36\x35\x2c\x33\x2e\x38\ -\x31\x36\x20\x2d\x32\x37\x2e\x37\x39\x32\x2c\x31\x31\x2e\x31\x39\ -\x35\x20\x2d\x33\x35\x2e\x39\x36\x34\x2c\x31\x34\x2e\x37\x39\x35\ -\x20\x2d\x38\x2e\x32\x38\x2c\x33\x2e\x34\x32\x32\x20\x2d\x31\x32\ -\x2e\x34\x35\x36\x2c\x35\x2e\x33\x36\x35\x20\x2d\x31\x33\x2e\x30\ -\x36\x38\x2c\x35\x2e\x38\x33\x32\x20\x31\x2e\x30\x38\x2c\x32\x2e\ -\x34\x38\x34\x20\x30\x2e\x36\x38\x34\x2c\x34\x2e\x37\x35\x32\x20\ -\x2d\x31\x2e\x31\x38\x38\x2c\x37\x2e\x32\x33\x36\x20\x2d\x31\x2e\ -\x39\x34\x34\x2c\x32\x2e\x33\x34\x20\x2d\x33\x2e\x37\x30\x38\x2c\ -\x33\x2e\x39\x36\x31\x20\x2d\x31\x30\x2e\x31\x35\x32\x2c\x37\x2e\ -\x30\x39\x32\x20\x2d\x36\x2e\x36\x39\x36\x2c\x33\x2e\x31\x36\x38\ -\x20\x2d\x32\x37\x2e\x33\x36\x2c\x31\x32\x2e\x37\x30\x39\x20\x2d\ -\x32\x38\x2e\x38\x2c\x31\x31\x2e\x37\x30\x31\x20\x2d\x31\x2e\x32\ -\x39\x36\x2c\x2d\x31\x2e\x33\x33\x32\x20\x31\x36\x2e\x39\x39\x32\ -\x2c\x2d\x31\x34\x2e\x30\x37\x36\x20\x32\x30\x2e\x38\x34\x34\x2c\ -\x2d\x31\x38\x2e\x36\x34\x38\x20\x33\x2e\x36\x33\x36\x2c\x2d\x34\ -\x2e\x35\x33\x35\x20\x2d\x30\x2e\x37\x35\x36\x2c\x2d\x36\x2e\x34\ -\x38\x20\x31\x2e\x32\x36\x2c\x2d\x38\x2e\x32\x30\x37\x20\x31\x2e\ -\x38\x37\x32\x2c\x2d\x31\x2e\x37\x32\x39\x20\x38\x2e\x37\x31\x32\ -\x2c\x2d\x30\x2e\x39\x20\x31\x30\x2e\x33\x36\x38\x2c\x2d\x32\x2e\ -\x32\x33\x32\x20\x31\x2e\x36\x32\x2c\x2d\x31\x2e\x34\x37\x37\x20\ -\x31\x2e\x34\x34\x2c\x2d\x33\x2e\x33\x38\x35\x20\x2d\x30\x2e\x35\ -\x34\x2c\x2d\x36\x2e\x31\x32\x31\x20\x31\x2e\x30\x38\x2c\x2d\x30\ -\x2e\x31\x34\x33\x20\x32\x2e\x31\x36\x2c\x2d\x30\x2e\x30\x37\x32\ -\x20\x33\x2e\x36\x37\x32\x2c\x30\x2e\x30\x37\x32\x20\x31\x2e\x34\ -\x30\x34\x2c\x30\x2e\x31\x34\x35\x20\x32\x2e\x39\x35\x32\x2c\x30\ -\x2e\x33\x35\x39\x20\x34\x2e\x37\x38\x38\x2c\x30\x2e\x37\x39\x33\ -\x20\x31\x2e\x39\x30\x38\x2c\x2d\x32\x2e\x38\x34\x34\x20\x36\x2e\ -\x30\x34\x38\x2c\x2d\x35\x2e\x39\x30\x34\x20\x31\x32\x2e\x35\x36\ -\x34\x2c\x2d\x39\x2e\x33\x32\x34\x20\x36\x2e\x35\x35\x32\x2c\x2d\ -\x33\x2e\x34\x35\x37\x20\x31\x37\x2e\x36\x34\x2c\x2d\x37\x2e\x35\ -\x32\x35\x20\x32\x36\x2e\x33\x31\x36\x2c\x2d\x31\x31\x2e\x30\x38\ -\x38\x20\x38\x2e\x35\x36\x38\x2c\x2d\x33\x2e\x36\x33\x37\x20\x32\ -\x30\x2e\x39\x31\x36\x2c\x2d\x31\x30\x2e\x34\x37\x37\x20\x32\x34\ -\x2e\x38\x34\x2c\x2d\x31\x30\x2e\x34\x30\x34\x20\x33\x2e\x37\x37\ -\x39\x2c\x30\x2e\x30\x33\x35\x20\x2d\x34\x2e\x33\x32\x2c\x38\x2e\ -\x34\x39\x36\x20\x2d\x32\x2e\x30\x38\x38\x2c\x31\x30\x2e\x34\x30\ -\x34\x20\x32\x2e\x32\x33\x31\x2c\x31\x2e\x37\x32\x36\x20\x37\x2e\ -\x31\x36\x33\x2c\x31\x2e\x37\x39\x38\x20\x31\x35\x2e\x32\x32\x38\ -\x2c\x30\x2e\x32\x31\x34\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x69\x70\x2d\x72\x75\x6c\x65\ -\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\ -\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ -\x6c\x3a\x23\x30\x30\x33\x34\x66\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ -\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x36\x31\x34\x30\x31\x36\x30\ -\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ -\x6d\x69\x74\x3a\x31\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x70\x61\x74\x68\x33\x39\x30\x35\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\ -\x6f\x75\x74\x3d\x22\x4f\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x34\x36\x31\x2e\ -\x34\x33\x2c\x34\x32\x2e\x37\x37\x37\x20\x63\x20\x32\x2e\x34\x34\ -\x37\x2c\x2d\x30\x2e\x32\x38\x38\x20\x2d\x30\x2e\x35\x37\x36\x2c\ -\x33\x2e\x36\x33\x36\x20\x2d\x32\x2e\x32\x36\x38\x2c\x35\x2e\x35\ -\x30\x38\x20\x2d\x31\x2e\x38\x30\x31\x2c\x31\x2e\x36\x39\x32\x20\ -\x2d\x31\x2e\x36\x35\x36\x2c\x32\x2e\x35\x32\x20\x2d\x37\x2e\x37\ -\x34\x2c\x34\x2e\x38\x36\x20\x2d\x36\x2e\x32\x32\x39\x2c\x32\x2e\ -\x32\x36\x38\x20\x2d\x32\x30\x2e\x35\x35\x37\x2c\x35\x2e\x37\x36\ -\x20\x2d\x32\x38\x2e\x35\x34\x39\x2c\x38\x2e\x36\x37\x36\x20\x2d\ -\x37\x2e\x39\x35\x35\x2c\x32\x2e\x37\x37\x32\x20\x2d\x38\x2e\x38\ -\x39\x31\x2c\x34\x2e\x30\x33\x32\x20\x2d\x31\x38\x2e\x37\x35\x36\ -\x2c\x38\x2e\x32\x34\x34\x20\x2d\x31\x30\x2e\x30\x34\x33\x2c\x34\ -\x2e\x31\x37\x36\x20\x2d\x33\x34\x2e\x30\x32\x2c\x31\x35\x2e\x31\ -\x35\x36\x20\x2d\x34\x30\x2e\x33\x39\x31\x2c\x31\x36\x2e\x38\x34\ -\x38\x20\x2d\x36\x2e\x32\x36\x34\x2c\x31\x2e\x34\x37\x36\x20\x2d\ -\x33\x2e\x35\x36\x34\x2c\x2d\x33\x2e\x37\x34\x34\x20\x32\x2e\x38\ -\x30\x37\x2c\x2d\x37\x2e\x33\x30\x38\x20\x36\x2e\x33\x37\x33\x2c\ -\x2d\x33\x2e\x36\x37\x32\x20\x32\x35\x2e\x34\x35\x33\x2c\x2d\x31\ -\x30\x2e\x32\x32\x34\x20\x33\x34\x2e\x38\x38\x35\x2c\x2d\x31\x33\ -\x2e\x38\x32\x34\x20\x39\x2e\x31\x34\x35\x2c\x2d\x33\x2e\x36\x20\ -\x31\x33\x2e\x35\x33\x35\x2c\x2d\x35\x2e\x31\x34\x38\x20\x32\x30\ -\x2e\x35\x35\x37\x2c\x2d\x37\x2e\x37\x30\x34\x20\x37\x2e\x30\x32\ -\x2c\x2d\x32\x2e\x37\x33\x36\x20\x31\x35\x2e\x31\x35\x36\x2c\x2d\ -\x35\x2e\x34\x20\x32\x31\x2e\x37\x37\x39\x2c\x2d\x37\x2e\x39\x39\ -\x32\x20\x36\x2e\x36\x32\x33\x2c\x2d\x32\x2e\x36\x32\x38\x20\x31\ -\x35\x2e\x30\x31\x32\x2c\x2d\x37\x2e\x30\x35\x36\x20\x31\x37\x2e\ -\x36\x37\x36\x2c\x2d\x37\x2e\x33\x30\x38\x20\x7a\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x69\x70\x2d\ -\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\ -\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x33\x34\x66\x66\x3b\x66\x69\ -\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\ -\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\ -\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x36\x31\x34\ -\x30\x31\x36\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ -\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x39\x30\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x3a\x6b\ -\x6e\x6f\x63\x6b\x6f\x75\x74\x3d\x22\x4f\x66\x66\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\ -\x34\x34\x32\x2e\x37\x38\x31\x2c\x33\x39\x2e\x34\x36\x35\x20\x63\ -\x20\x36\x2e\x36\x32\x35\x2c\x2d\x31\x2e\x33\x36\x38\x20\x37\x2e\ -\x35\x32\x35\x2c\x2d\x30\x2e\x37\x35\x36\x20\x39\x2e\x31\x30\x39\ -\x2c\x2d\x31\x2e\x39\x30\x38\x20\x31\x2e\x35\x31\x32\x2c\x2d\x31\ -\x2e\x32\x39\x36\x20\x32\x2e\x39\x31\x36\x2c\x2d\x34\x2e\x35\x33\ -\x36\x20\x30\x2e\x30\x33\x35\x2c\x2d\x35\x2e\x32\x39\x32\x20\x2d\ -\x33\x2e\x30\x39\x36\x2c\x2d\x30\x2e\x37\x39\x32\x20\x2d\x36\x2e\ -\x39\x31\x32\x2c\x2d\x31\x2e\x33\x36\x38\x20\x2d\x31\x37\x2e\x39\ -\x36\x35\x2c\x30\x2e\x37\x35\x36\x20\x2d\x31\x31\x2e\x32\x36\x38\ -\x2c\x32\x2e\x30\x38\x38\x20\x2d\x34\x34\x2e\x33\x31\x34\x2c\x39\ -\x2e\x36\x38\x34\x20\x2d\x34\x38\x2e\x33\x31\x31\x2c\x31\x31\x2e\ -\x35\x35\x36\x20\x2d\x33\x2e\x37\x34\x34\x2c\x31\x2e\x36\x32\x20\ -\x32\x30\x2e\x34\x34\x37\x2c\x2d\x31\x2e\x33\x33\x32\x20\x32\x35\ -\x2e\x30\x39\x32\x2c\x2d\x31\x2e\x32\x32\x34\x20\x34\x2e\x34\x32\ -\x38\x2c\x30\x2e\x30\x37\x32\x20\x2d\x33\x2e\x39\x36\x31\x2c\x32\ -\x2e\x35\x32\x20\x31\x2e\x34\x37\x37\x2c\x31\x2e\x39\x34\x34\x20\ -\x35\x2e\x34\x37\x31\x2c\x2d\x30\x2e\x37\x39\x32\x20\x32\x33\x2e\ -\x37\x36\x31\x2c\x2d\x34\x2e\x35\x20\x33\x30\x2e\x35\x36\x33\x2c\ -\x2d\x35\x2e\x38\x33\x32\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x69\x70\x2d\x72\x75\x6c\x65\ -\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\ -\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ -\x6c\x3a\x23\x30\x30\x33\x34\x66\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ -\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x36\x31\x34\x30\x31\x36\x30\ -\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ -\x6d\x69\x74\x3a\x31\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x70\x61\x74\x68\x33\x39\x30\x39\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3d\x22\x31\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x3a\x6b\ -\x6e\x6f\x63\x6b\x6f\x75\x74\x3d\x22\x4f\x66\x66\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\ -\x37\x37\x2e\x34\x35\x34\x2c\x38\x33\x2e\x30\x36\x31\x20\x63\x20\ -\x30\x2e\x33\x36\x2c\x31\x2e\x35\x31\x32\x20\x2d\x37\x2e\x37\x37\ -\x36\x2c\x33\x2e\x31\x36\x38\x20\x2d\x31\x30\x2e\x36\x35\x36\x2c\ -\x33\x2e\x33\x31\x32\x20\x2d\x32\x2e\x39\x38\x38\x2c\x30\x2e\x31\ -\x34\x34\x20\x2d\x36\x2e\x32\x32\x38\x2c\x2d\x30\x2e\x37\x35\x36\ -\x20\x2d\x36\x2e\x36\x36\x2c\x2d\x32\x2e\x33\x30\x34\x20\x2d\x30\ -\x2e\x34\x33\x32\x2c\x2d\x31\x2e\x36\x35\x36\x20\x30\x2e\x39\x33\ -\x36\x2c\x2d\x37\x2e\x33\x38\x20\x33\x2e\x39\x36\x2c\x2d\x37\x2e\ -\x34\x35\x32\x20\x32\x2e\x39\x31\x36\x2c\x2d\x30\x2e\x31\x38\x20\ -\x31\x32\x2e\x37\x38\x2c\x34\x2e\x37\x35\x32\x20\x31\x33\x2e\x33\ -\x35\x36\x2c\x36\x2e\x34\x34\x34\x20\x7a\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x69\x70\x2d\x72\x75\ -\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\ -\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ -\x69\x6c\x6c\x3a\x23\x65\x64\x65\x63\x66\x31\x3b\x66\x69\x6c\x6c\ -\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\ -\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x36\x31\x34\x30\ -\x31\x36\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ -\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ -\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x39\x31\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3d\x22\x31\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\x75\x74\x3d\x22\x4f\x66\x66\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ -\x22\x6d\x20\x33\x38\x2e\x34\x33\x2c\x36\x37\x2e\x31\x38\x35\x20\ -\x63\x20\x2d\x30\x2e\x31\x30\x38\x2c\x32\x2e\x30\x31\x36\x20\x2d\ -\x36\x2e\x35\x38\x38\x2c\x39\x2e\x30\x37\x32\x20\x2d\x31\x30\x2e\ -\x31\x35\x32\x2c\x39\x2e\x36\x34\x38\x20\x2d\x33\x2e\x35\x36\x34\ -\x2c\x30\x2e\x34\x33\x32\x20\x2d\x31\x30\x2e\x34\x37\x36\x2c\x2d\ -\x34\x2e\x37\x38\x38\x20\x2d\x31\x30\x2e\x35\x38\x34\x2c\x2d\x36\ -\x2e\x37\x36\x38\x20\x2d\x30\x2e\x31\x34\x34\x2c\x2d\x32\x2e\x31\ -\x36\x20\x36\x2e\x34\x38\x2c\x2d\x34\x2e\x35\x37\x32\x20\x31\x30\ -\x2e\x30\x30\x38\x2c\x2d\x35\x2e\x31\x34\x38\x20\x33\x2e\x34\x35\ -\x36\x2c\x2d\x30\x2e\x35\x30\x34\x20\x31\x30\x2e\x35\x34\x38\x2c\ -\x30\x2e\x32\x35\x32\x20\x31\x30\x2e\x37\x32\x38\x2c\x32\x2e\x32\ -\x36\x38\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x63\x6c\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\ -\x65\x6e\x6f\x64\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\ -\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\ -\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\ -\x64\x65\x63\x66\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\ -\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ -\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3a\x35\x2e\x36\x31\x34\x30\x31\x36\x30\x36\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ -\x3a\x31\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ -\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ -\x61\x74\x68\x33\x39\x31\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ -\x65\x72\x6c\x69\x6d\x69\x74\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x3a\x6b\x6e\x6f\x63\ -\x6b\x6f\x75\x74\x3d\x22\x4f\x66\x66\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x35\x37\x2e\ -\x33\x33\x2c\x37\x35\x2e\x34\x32\x39\x20\x63\x20\x30\x2e\x34\x33\ -\x32\x2c\x32\x2e\x33\x30\x34\x20\x2d\x33\x2e\x31\x33\x32\x2c\x39\ -\x2e\x30\x33\x36\x20\x2d\x36\x2e\x33\x37\x32\x2c\x39\x2e\x31\x30\ -\x38\x20\x2d\x33\x2e\x34\x32\x2c\x30\x20\x2d\x31\x32\x2e\x37\x30\ -\x38\x2c\x2d\x36\x2e\x36\x39\x36\x20\x2d\x31\x33\x2e\x32\x38\x34\ -\x2c\x2d\x38\x2e\x39\x36\x34\x20\x2d\x30\x2e\x35\x30\x34\x2c\x2d\ -\x32\x2e\x34\x34\x38\x20\x36\x2e\x35\x38\x38\x2c\x2d\x35\x2e\x31\ -\x38\x34\x20\x31\x30\x2e\x30\x30\x38\x2c\x2d\x35\x2e\x31\x34\x38\ -\x20\x33\x2e\x33\x34\x38\x2c\x2d\x30\x2e\x30\x33\x36\x20\x38\x2e\ -\x39\x36\x34\x2c\x32\x2e\x35\x35\x36\x20\x39\x2e\x36\x34\x38\x2c\ -\x35\x2e\x30\x30\x34\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x63\x6c\x69\x70\x2d\x72\x75\x6c\x65\x3d\ -\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ -\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ -\x3a\x23\x65\x64\x65\x63\x66\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ -\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x36\x31\x34\x30\x31\x36\x30\ -\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ -\x6d\x69\x74\x3a\x31\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x70\x61\x74\x68\x33\x39\x31\x35\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3d\x22\x31\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x3a\x6b\ -\x6e\x6f\x63\x6b\x6f\x75\x74\x3d\x22\x4f\x66\x66\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\ -\x35\x38\x2e\x31\x32\x32\x2c\x36\x31\x2e\x32\x38\x31\x20\x63\x20\ -\x30\x2e\x39\x37\x32\x2c\x31\x2e\x39\x34\x34\x20\x2d\x30\x2e\x37\ -\x35\x36\x2c\x37\x2e\x32\x20\x2d\x33\x2e\x33\x38\x34\x2c\x37\x2e\ -\x39\x39\x32\x20\x2d\x32\x2e\x37\x33\x36\x2c\x30\x2e\x36\x31\x32\ -\x20\x2d\x31\x31\x2e\x37\x37\x32\x2c\x2d\x32\x2e\x30\x38\x38\x20\ -\x2d\x31\x32\x2e\x36\x37\x32\x2c\x2d\x33\x2e\x39\x32\x34\x20\x2d\ -\x31\x2e\x30\x34\x34\x2c\x2d\x31\x2e\x39\x34\x34\x20\x34\x2e\x31\ -\x30\x34\x2c\x2d\x36\x2e\x37\x36\x38\x20\x36\x2e\x38\x34\x2c\x2d\ -\x37\x2e\x33\x38\x20\x32\x2e\x36\x36\x34\x2c\x2d\x30\x2e\x36\x34\ -\x38\x20\x38\x2e\x31\x33\x36\x2c\x31\x2e\x33\x33\x32\x20\x39\x2e\ -\x32\x31\x36\x2c\x33\x2e\x33\x31\x32\x20\x7a\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x69\x70\x2d\x72\ -\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\ -\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x66\x69\x6c\x6c\x3a\x23\x65\x64\x65\x63\x66\x31\x3b\x66\x69\x6c\ -\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\ -\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x36\x31\x34\ -\x30\x31\x36\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ -\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x39\x31\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3d\x22\ -\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\x75\x74\x3d\x22\x4f\x66\x66\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\ -\x3d\x22\x6d\x20\x39\x33\x2e\x36\x35\x34\x2c\x37\x39\x2e\x36\x30\ -\x35\x20\x63\x20\x30\x2e\x38\x32\x38\x2c\x31\x2e\x34\x37\x36\x20\ -\x2d\x32\x2e\x36\x36\x34\x2c\x33\x2e\x32\x34\x20\x2d\x34\x2e\x39\ -\x33\x32\x2c\x33\x2e\x33\x34\x38\x20\x2d\x32\x2e\x34\x34\x38\x2c\ -\x2d\x30\x2e\x30\x33\x36\x20\x2d\x37\x2e\x39\x39\x32\x2c\x2d\x31\ -\x2e\x36\x39\x32\x20\x2d\x38\x2e\x38\x35\x36\x2c\x2d\x33\x2e\x31\ -\x36\x38\x20\x2d\x30\x2e\x38\x36\x34\x2c\x2d\x31\x2e\x35\x31\x32\ -\x20\x31\x2e\x32\x32\x34\x2c\x2d\x35\x2e\x37\x39\x36\x20\x33\x2e\ -\x36\x33\x36\x2c\x2d\x35\x2e\x37\x36\x20\x32\x2e\x33\x34\x2c\x30\ -\x2e\x30\x37\x32\x20\x39\x2e\x31\x30\x38\x2c\x33\x2e\x39\x32\x34\ -\x20\x31\x30\x2e\x31\x35\x32\x2c\x35\x2e\x35\x38\x20\x7a\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x69\ -\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\ -\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\x64\x65\x63\x66\x31\x3b\ -\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\ -\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\ -\x36\x31\x34\x30\x31\x36\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ -\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x39\x31\ -\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ -\x74\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\x75\x74\x3d\x22\ -\x4f\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x64\x3d\x22\x6d\x20\x31\x31\x30\x2e\x34\x33\x2c\x37\x35\ -\x2e\x36\x38\x31\x20\x63\x20\x30\x2e\x30\x37\x32\x2c\x31\x2e\x35\ -\x34\x38\x20\x2d\x35\x2e\x34\x2c\x34\x2e\x37\x35\x32\x20\x2d\x37\ -\x2e\x38\x31\x32\x2c\x34\x2e\x37\x35\x32\x20\x2d\x32\x2e\x37\x2c\ -\x2d\x30\x2e\x32\x38\x38\x20\x2d\x36\x2e\x38\x30\x34\x2c\x2d\x34\ -\x2e\x31\x37\x36\x20\x2d\x37\x2e\x30\x32\x2c\x2d\x35\x2e\x36\x38\ -\x38\x20\x2d\x30\x2e\x31\x34\x34\x2c\x2d\x31\x2e\x35\x34\x38\x20\ -\x33\x2e\x38\x38\x38\x2c\x2d\x33\x2e\x35\x32\x38\x20\x36\x2e\x34\ -\x30\x38\x2c\x2d\x33\x2e\x33\x31\x32\x20\x32\x2e\x34\x31\x32\x2c\ -\x30\x2e\x31\x34\x34\x20\x38\x2e\x32\x38\x2c\x32\x2e\x36\x36\x34\ -\x20\x38\x2e\x34\x32\x34\x2c\x34\x2e\x32\x34\x38\x20\x7a\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x69\ -\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\ -\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\x64\x65\x63\x66\x31\x3b\ -\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\ -\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\ -\x36\x31\x34\x30\x31\x36\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ -\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x39\x32\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ -\x74\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\x75\x74\x3d\x22\ -\x4f\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x64\x3d\x22\x6d\x20\x31\x32\x35\x2e\x39\x31\x2c\x37\x33\ -\x2e\x38\x30\x39\x20\x63\x20\x30\x2c\x31\x2e\x31\x31\x36\x20\x2d\ -\x34\x2e\x37\x31\x36\x2c\x33\x2e\x38\x35\x32\x20\x2d\x36\x2e\x39\ -\x34\x38\x2c\x33\x2e\x38\x38\x38\x20\x2d\x32\x2e\x33\x37\x36\x2c\ -\x2d\x30\x2e\x31\x30\x38\x20\x2d\x36\x2e\x36\x36\x2c\x2d\x32\x2e\ -\x36\x32\x38\x20\x2d\x36\x2e\x37\x33\x32\x2c\x2d\x33\x2e\x38\x31\ -\x36\x20\x2d\x30\x2e\x31\x30\x38\x2c\x2d\x31\x2e\x32\x36\x20\x34\ -\x2e\x31\x30\x34\x2c\x2d\x33\x2e\x32\x37\x36\x20\x36\x2e\x34\x30\ -\x38\x2c\x2d\x33\x2e\x32\x37\x36\x20\x32\x2e\x33\x30\x34\x2c\x30\ -\x2e\x30\x37\x32\x20\x37\x2e\x30\x39\x32\x2c\x31\x2e\x38\x33\x36\ -\x20\x37\x2e\x32\x37\x32\x2c\x33\x2e\x32\x30\x34\x20\x7a\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x69\ -\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\ -\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\x64\x65\x63\x66\x31\x3b\ -\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\ -\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\ -\x36\x31\x34\x30\x31\x36\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ -\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x39\x32\ -\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ -\x74\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\x75\x74\x3d\x22\ -\x4f\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x64\x3d\x22\x6d\x20\x31\x34\x32\x2e\x34\x33\x34\x2c\x37\ -\x30\x2e\x33\x31\x37\x20\x63\x20\x2d\x30\x2e\x30\x33\x36\x2c\x31\ -\x2e\x32\x36\x20\x2d\x34\x2e\x31\x34\x2c\x34\x2e\x38\x32\x34\x20\ -\x2d\x36\x2e\x34\x38\x2c\x35\x2e\x30\x30\x34\x20\x2d\x32\x2e\x34\ -\x34\x38\x2c\x30\x2e\x30\x33\x36\x20\x2d\x37\x2e\x30\x39\x32\x2c\ -\x2d\x33\x2e\x30\x39\x36\x20\x2d\x37\x2e\x32\x37\x32\x2c\x2d\x34\ -\x2e\x33\x39\x32\x20\x2d\x30\x2e\x31\x38\x2c\x2d\x31\x2e\x34\x30\ -\x34\x20\x34\x2e\x31\x30\x34\x2c\x2d\x33\x2e\x32\x30\x34\x20\x36\ -\x2e\x34\x34\x34\x2c\x2d\x33\x2e\x33\x31\x32\x20\x32\x2e\x33\x30\ -\x34\x2c\x2d\x30\x2e\x31\x30\x38\x20\x37\x2e\x30\x35\x36\x2c\x31\ -\x2e\x32\x39\x36\x20\x37\x2e\x33\x30\x38\x2c\x32\x2e\x37\x20\x7a\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\ -\x6c\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\ -\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\ -\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\x64\x65\x63\x66\ -\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\ -\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\ -\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ -\x35\x2e\x36\x31\x34\x30\x31\x36\x30\x36\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ -\x3a\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\ -\x39\x32\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ -\x6d\x69\x74\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\x75\x74\ -\x3d\x22\x4f\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x36\x32\x2e\x39\x31\x38\ -\x2c\x36\x37\x2e\x36\x38\x39\x20\x63\x20\x30\x2e\x31\x38\x2c\x31\ -\x2e\x34\x37\x36\x20\x2d\x34\x2e\x37\x31\x36\x2c\x33\x2e\x36\x20\ -\x2d\x37\x2e\x34\x35\x32\x2c\x33\x2e\x38\x38\x38\x20\x2d\x32\x2e\ -\x38\x34\x34\x2c\x30\x2e\x31\x30\x38\x20\x2d\x38\x2e\x34\x32\x34\ -\x2c\x2d\x31\x2e\x32\x36\x20\x2d\x38\x2e\x38\x32\x2c\x2d\x32\x2e\ -\x37\x33\x36\x20\x2d\x30\x2e\x33\x36\x2c\x2d\x31\x2e\x35\x38\x34\ -\x20\x34\x2e\x30\x33\x32\x2c\x2d\x36\x2e\x30\x38\x34\x20\x36\x2e\ -\x38\x30\x34\x2c\x2d\x36\x2e\x32\x36\x34\x20\x32\x2e\x38\x30\x38\ -\x2c\x2d\x30\x2e\x31\x34\x34\x20\x38\x2e\x39\x32\x38\x2c\x33\x2e\ -\x34\x35\x36\x20\x39\x2e\x34\x36\x38\x2c\x35\x2e\x31\x31\x32\x20\ -\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x63\x6c\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\ -\x64\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\ -\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\x64\x65\x63\ -\x66\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\ -\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\ -\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ -\x3a\x35\x2e\x36\x31\x34\x30\x31\x36\x30\x36\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\ -\x79\x3a\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ -\x33\x39\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ -\x69\x6d\x69\x74\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\x75\ -\x74\x3d\x22\x4f\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x36\x34\x2e\x35\x33\ -\x38\x2c\x37\x30\x2e\x33\x38\x39\x20\x63\x20\x2d\x33\x2e\x37\x34\ -\x34\x2c\x32\x2e\x33\x30\x34\x20\x2d\x36\x2e\x39\x34\x38\x2c\x33\ -\x2e\x34\x39\x32\x20\x2d\x31\x30\x2e\x30\x30\x38\x2c\x33\x2e\x37\ -\x30\x38\x20\x2d\x33\x2e\x30\x32\x34\x2c\x30\x2e\x31\x34\x34\x20\ -\x2d\x35\x2e\x37\x39\x36\x2c\x2d\x30\x2e\x36\x38\x34\x20\x2d\x38\ -\x2e\x31\x37\x32\x2c\x2d\x32\x2e\x36\x32\x38\x20\x30\x2e\x31\x38\ -\x2c\x39\x2e\x35\x30\x34\x20\x30\x2e\x34\x36\x38\x2c\x31\x39\x2e\ -\x34\x34\x20\x30\x2e\x37\x32\x2c\x33\x30\x2e\x36\x33\x36\x20\x30\ -\x2e\x32\x35\x32\x2c\x31\x31\x2e\x30\x38\x38\x20\x30\x2e\x35\x34\ -\x2c\x32\x32\x2e\x38\x32\x35\x20\x30\x2e\x38\x36\x34\x2c\x33\x35\ -\x2e\x36\x33\x39\x20\x33\x2e\x38\x31\x36\x2c\x31\x2e\x39\x30\x38\ -\x20\x36\x2e\x39\x31\x32\x2c\x32\x2e\x33\x37\x37\x20\x39\x2e\x36\ -\x38\x34\x2c\x31\x2e\x35\x34\x39\x20\x32\x2e\x37\x2c\x2d\x30\x2e\ -\x38\x36\x33\x20\x34\x2e\x37\x38\x38\x2c\x2d\x33\x2e\x31\x36\x38\ -\x20\x36\x2e\x34\x30\x38\x2c\x2d\x36\x2e\x37\x36\x38\x20\x2d\x30\ -\x2e\x38\x32\x38\x2c\x2d\x31\x31\x2e\x37\x33\x36\x20\x2d\x31\x2e\ -\x31\x38\x38\x2c\x2d\x32\x32\x2e\x34\x32\x38\x20\x2d\x31\x2e\x30\ -\x38\x2c\x2d\x33\x32\x2e\x39\x30\x34\x20\x30\x2e\x30\x33\x36\x2c\ -\x2d\x31\x30\x2e\x35\x31\x32\x20\x30\x2e\x36\x31\x32\x2c\x2d\x31\ -\x39\x2e\x39\x38\x20\x31\x2e\x35\x38\x34\x2c\x2d\x32\x39\x2e\x32\ -\x33\x32\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x63\x6c\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\ -\x65\x6e\x6f\x64\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\ -\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\ -\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\ -\x64\x65\x63\x66\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\ -\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ -\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3a\x35\x2e\x36\x31\x34\x30\x31\x36\x30\x36\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ -\x3a\x31\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ -\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ -\x61\x74\x68\x33\x39\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ -\x65\x72\x6c\x69\x6d\x69\x74\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x3a\x6b\x6e\x6f\x63\ -\x6b\x6f\x75\x74\x3d\x22\x4f\x66\x66\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x34\x34\ -\x2e\x30\x39\x2c\x37\x32\x2e\x38\x30\x31\x20\x63\x20\x2d\x31\x2e\ -\x39\x38\x2c\x32\x2e\x33\x37\x36\x20\x2d\x34\x2e\x32\x34\x38\x2c\ -\x33\x2e\x38\x31\x36\x20\x2d\x36\x2e\x36\x36\x2c\x34\x2e\x33\x32\ -\x20\x2d\x32\x2e\x34\x34\x38\x2c\x30\x2e\x34\x36\x38\x20\x2d\x35\ -\x2e\x31\x38\x34\x2c\x30\x20\x2d\x38\x2e\x30\x36\x34\x2c\x2d\x31\ -\x2e\x34\x30\x34\x20\x2d\x31\x2e\x30\x34\x34\x2c\x39\x2e\x33\x36\ -\x20\x2d\x31\x2e\x36\x32\x2c\x31\x39\x2e\x33\x36\x38\x20\x2d\x31\ -\x2e\x37\x32\x38\x2c\x33\x30\x2e\x34\x35\x36\x20\x2d\x30\x2e\x31\ -\x38\x2c\x31\x31\x2e\x30\x35\x32\x20\x30\x2e\x31\x30\x38\x2c\x32\ -\x32\x2e\x37\x38\x38\x20\x30\x2e\x38\x36\x34\x2c\x33\x35\x2e\x36\ -\x30\x34\x20\x33\x2e\x38\x31\x36\x2c\x31\x2e\x38\x37\x31\x20\x36\ -\x2e\x39\x31\x32\x2c\x32\x2e\x34\x34\x37\x20\x39\x2e\x36\x38\x34\ -\x2c\x31\x2e\x35\x38\x34\x20\x32\x2e\x37\x2c\x2d\x30\x2e\x39\x33\ -\x36\x20\x34\x2e\x37\x38\x38\x2c\x2d\x33\x2e\x30\x36\x31\x20\x36\ -\x2e\x34\x30\x38\x2c\x2d\x36\x2e\x37\x36\x38\x20\x30\x2e\x34\x33\ -\x32\x2c\x2d\x39\x2e\x37\x32\x31\x20\x30\x2e\x36\x31\x32\x2c\x2d\ -\x31\x39\x2e\x36\x35\x36\x20\x30\x2e\x35\x34\x2c\x2d\x33\x30\x2e\ -\x33\x34\x39\x20\x2d\x30\x2e\x31\x34\x34\x2c\x2d\x31\x30\x2e\x37\ -\x39\x39\x20\x2d\x30\x2e\x33\x39\x36\x2c\x2d\x32\x31\x2e\x36\x37\ -\x31\x20\x2d\x31\x2e\x30\x34\x34\x2c\x2d\x33\x33\x2e\x34\x34\x33\ -\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x63\x6c\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\ -\x6f\x64\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\ -\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\x64\x65\ -\x63\x66\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\ -\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\ -\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3a\x35\x2e\x36\x31\x34\x30\x31\x36\x30\x36\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\ -\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\ -\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ -\x68\x33\x39\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ -\x6c\x69\x6d\x69\x74\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\ -\x75\x74\x3d\x22\x4f\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x32\x36\x2e\x33\ -\x30\x36\x2c\x37\x37\x2e\x30\x31\x33\x20\x63\x20\x2d\x31\x2e\x34\ -\x34\x2c\x31\x2e\x35\x31\x32\x20\x2d\x33\x2e\x31\x33\x32\x2c\x32\ -\x2e\x34\x34\x38\x20\x2d\x35\x2e\x30\x37\x36\x2c\x32\x2e\x36\x36\ -\x34\x20\x2d\x32\x2e\x30\x31\x36\x2c\x30\x2e\x32\x31\x36\x20\x2d\ -\x34\x2e\x31\x37\x36\x2c\x2d\x30\x2e\x32\x35\x32\x20\x2d\x36\x2e\ -\x36\x32\x34\x2c\x2d\x31\x2e\x34\x30\x34\x20\x2d\x31\x2e\x35\x38\ -\x34\x2c\x31\x31\x2e\x36\x36\x34\x20\x2d\x32\x2e\x37\x37\x32\x2c\ -\x32\x33\x2e\x30\x37\x36\x20\x2d\x33\x2e\x34\x32\x2c\x33\x35\x2e\ -\x30\x36\x34\x20\x2d\x30\x2e\x37\x32\x2c\x31\x31\x2e\x39\x35\x32\ -\x20\x2d\x30\x2e\x39\x37\x32\x2c\x32\x33\x2e\x36\x35\x31\x20\x2d\ -\x30\x2e\x37\x35\x36\x2c\x33\x35\x2e\x39\x32\x39\x20\x33\x2e\x37\ -\x34\x34\x2c\x31\x2e\x39\x37\x39\x20\x36\x2e\x39\x38\x34\x2c\x32\ -\x2e\x33\x37\x35\x20\x39\x2e\x37\x32\x2c\x31\x2e\x35\x38\x34\x20\ -\x32\x2e\x37\x2c\x2d\x30\x2e\x39\x20\x34\x2e\x37\x38\x38\x2c\x2d\ -\x33\x2e\x31\x36\x38\x20\x36\x2e\x34\x30\x38\x2c\x2d\x36\x2e\x38\ -\x30\x35\x20\x2d\x30\x2e\x36\x34\x38\x2c\x2d\x31\x30\x2e\x38\x37\ -\x31\x20\x2d\x31\x2e\x31\x35\x32\x2c\x2d\x32\x31\x2e\x36\x20\x2d\ -\x31\x2e\x31\x31\x36\x2c\x2d\x33\x32\x2e\x38\x36\x38\x20\x2d\x30\ -\x2e\x30\x37\x32\x2c\x2d\x31\x31\x2e\x33\x30\x34\x20\x30\x2e\x32\ -\x31\x36\x2c\x2d\x32\x32\x2e\x34\x36\x34\x20\x30\x2e\x38\x36\x34\ -\x2c\x2d\x33\x34\x2e\x31\x36\x34\x20\x7a\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x69\x70\x2d\x72\x75\ -\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\ -\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ -\x69\x6c\x6c\x3a\x23\x65\x64\x65\x63\x66\x31\x3b\x66\x69\x6c\x6c\ -\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\ -\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x36\x31\x34\x30\ -\x31\x36\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ -\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ -\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x39\x33\x33\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3d\x22\x31\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\x75\x74\x3d\x22\x4f\x66\x66\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ -\x22\x6d\x20\x31\x31\x31\x2e\x38\x33\x34\x2c\x37\x39\x2e\x34\x36\ -\x31\x20\x63\x20\x2d\x32\x2e\x32\x36\x38\x2c\x31\x2e\x36\x39\x32\ -\x20\x2d\x34\x2e\x35\x33\x36\x2c\x32\x2e\x35\x35\x36\x20\x2d\x36\ -\x2e\x39\x34\x38\x2c\x32\x2e\x39\x38\x38\x20\x2d\x32\x2e\x34\x34\ -\x38\x2c\x30\x2e\x33\x36\x20\x2d\x34\x2e\x39\x36\x38\x2c\x30\x2e\ -\x30\x33\x36\x20\x2d\x37\x2e\x35\x36\x2c\x2d\x30\x2e\x38\x32\x38\ -\x20\x2d\x31\x2e\x38\x2c\x31\x34\x2e\x30\x37\x36\x20\x2d\x32\x2e\ -\x37\x37\x32\x2c\x32\x37\x2e\x32\x38\x38\x20\x2d\x33\x2e\x30\x36\ -\x2c\x34\x30\x2e\x31\x37\x36\x20\x2d\x30\x2e\x33\x36\x2c\x31\x32\ -\x2e\x38\x38\x39\x20\x30\x2e\x31\x30\x38\x2c\x32\x34\x2e\x38\x30\ -\x35\x20\x31\x2e\x32\x36\x2c\x33\x36\x2e\x34\x33\x32\x20\x32\x2e\ -\x35\x39\x32\x2c\x31\x2e\x30\x38\x20\x34\x2e\x38\x36\x2c\x31\x2e\ -\x30\x30\x38\x20\x37\x2e\x32\x33\x36\x2c\x2d\x30\x2e\x30\x37\x32\ -\x20\x32\x2e\x32\x36\x38\x2c\x2d\x31\x2e\x31\x35\x20\x34\x2e\x33\ -\x35\x36\x2c\x2d\x33\x2e\x34\x35\x35\x20\x36\x2e\x34\x30\x38\x2c\ -\x2d\x36\x2e\x37\x36\x38\x20\x2d\x31\x2e\x31\x38\x38\x2c\x2d\x31\ -\x30\x2e\x30\x30\x38\x20\x2d\x31\x2e\x35\x34\x38\x2c\x2d\x32\x30\ -\x2e\x38\x37\x39\x20\x2d\x31\x2e\x30\x38\x2c\x2d\x33\x32\x2e\x39\ -\x30\x34\x20\x30\x2e\x34\x36\x38\x2c\x2d\x31\x32\x2e\x30\x39\x36\ -\x20\x31\x2e\x36\x32\x2c\x2d\x32\x34\x2e\x39\x31\x32\x20\x33\x2e\ -\x37\x34\x34\x2c\x2d\x33\x39\x2e\x30\x32\x34\x20\x7a\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x69\x70\ -\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\ -\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\x64\x65\x63\x66\x31\x3b\x66\ -\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\ -\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x36\ -\x31\x34\x30\x31\x36\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ -\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ -\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x39\x33\x35\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ -\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\x75\x74\x3d\x22\x4f\ -\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x64\x3d\x22\x6d\x20\x39\x35\x2e\x31\x33\x2c\x38\x31\x2e\x34\ -\x34\x31\x20\x63\x20\x2d\x30\x2e\x36\x34\x38\x2c\x32\x2e\x33\x34\ -\x20\x2d\x32\x2e\x31\x32\x34\x2c\x33\x2e\x35\x32\x38\x20\x2d\x34\ -\x2e\x34\x32\x38\x2c\x33\x2e\x39\x36\x20\x2d\x32\x2e\x33\x37\x36\ -\x2c\x30\x2e\x33\x36\x20\x2d\x35\x2e\x35\x30\x38\x2c\x2d\x30\x2e\ -\x32\x38\x38\x20\x2d\x39\x2e\x35\x34\x2c\x2d\x31\x2e\x38\x20\x2d\ -\x30\x2e\x36\x38\x34\x2c\x31\x31\x2e\x30\x31\x36\x20\x2d\x31\x2e\ -\x31\x38\x38\x2c\x32\x32\x2e\x38\x39\x36\x20\x2d\x31\x2e\x35\x31\ -\x32\x2c\x33\x36\x2e\x32\x31\x35\x20\x2d\x30\x2e\x33\x36\x2c\x31\ -\x33\x2e\x33\x35\x37\x20\x2d\x30\x2e\x35\x34\x2c\x32\x37\x2e\x34\ -\x36\x39\x20\x2d\x30\x2e\x35\x34\x2c\x34\x33\x2e\x31\x36\x34\x20\ -\x32\x2e\x39\x38\x38\x2c\x31\x2e\x39\x30\x38\x20\x35\x2e\x37\x36\ -\x2c\x32\x2e\x34\x34\x39\x20\x38\x2e\x31\x37\x32\x2c\x31\x2e\x37\ -\x36\x34\x20\x32\x2e\x33\x37\x36\x2c\x2d\x30\x2e\x37\x35\x36\x20\ -\x34\x2e\x35\x33\x36\x2c\x2d\x32\x2e\x38\x37\x39\x20\x36\x2e\x33\ -\x33\x36\x2c\x2d\x36\x2e\x32\x32\x37\x20\x2d\x30\x2e\x38\x32\x38\ -\x2c\x2d\x31\x30\x2e\x31\x31\x37\x20\x2d\x31\x2e\x30\x34\x34\x2c\ -\x2d\x32\x31\x2e\x34\x32\x20\x2d\x30\x2e\x37\x39\x32\x2c\x2d\x33\ -\x34\x2e\x33\x30\x39\x20\x30\x2e\x32\x35\x32\x2c\x2d\x31\x33\x2e\ -\x30\x33\x31\x20\x30\x2e\x39\x37\x32\x2c\x2d\x32\x36\x2e\x39\x36\ -\x33\x20\x32\x2e\x33\x30\x34\x2c\x2d\x34\x32\x2e\x37\x36\x37\x20\ -\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x63\x6c\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\ -\x64\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\ -\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\x64\x65\x63\ -\x66\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\ -\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\ -\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ -\x3a\x35\x2e\x36\x31\x34\x30\x31\x36\x30\x36\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\ -\x79\x3a\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ -\x33\x39\x33\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ -\x69\x6d\x69\x74\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\x75\ -\x74\x3d\x22\x4f\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x37\x38\x2e\x37\x31\x34\ -\x2c\x38\x36\x2e\x31\x39\x33\x20\x63\x20\x2d\x33\x2e\x39\x36\x2c\ -\x31\x2e\x39\x30\x38\x20\x2d\x37\x2e\x34\x38\x38\x2c\x32\x2e\x37\ -\x20\x2d\x31\x31\x2e\x30\x31\x36\x2c\x32\x2e\x35\x32\x20\x2d\x33\ -\x2e\x35\x32\x38\x2c\x2d\x30\x2e\x32\x31\x36\x20\x2d\x36\x2e\x37\ -\x36\x38\x2c\x2d\x31\x2e\x34\x34\x20\x2d\x39\x2e\x38\x36\x34\x2c\ -\x2d\x33\x2e\x36\x37\x32\x20\x30\x2e\x34\x36\x38\x2c\x31\x38\x2e\ -\x37\x39\x32\x20\x30\x2e\x37\x39\x32\x2c\x33\x34\x2e\x38\x34\x38\ -\x20\x31\x2e\x31\x31\x36\x2c\x34\x38\x2e\x39\x39\x36\x20\x30\x2e\ -\x33\x32\x34\x2c\x31\x34\x2e\x31\x31\x31\x20\x30\x2e\x35\x30\x34\ -\x2c\x32\x35\x2e\x34\x38\x38\x20\x30\x2e\x36\x38\x34\x2c\x33\x34\ -\x2e\x39\x35\x35\x20\x34\x2e\x33\x32\x2c\x32\x2e\x37\x37\x33\x20\ -\x37\x2e\x38\x34\x38\x2c\x33\x2e\x37\x34\x34\x20\x31\x30\x2e\x37\ -\x32\x38\x2c\x33\x2e\x32\x30\x35\x20\x32\x2e\x38\x38\x2c\x2d\x30\ -\x2e\x36\x34\x38\x20\x34\x2e\x39\x36\x38\x2c\x2d\x32\x2e\x38\x30\ -\x39\x20\x36\x2e\x34\x30\x38\x2c\x2d\x36\x2e\x37\x36\x38\x20\x2d\ -\x31\x2e\x30\x38\x2c\x2d\x38\x2e\x38\x39\x33\x20\x2d\x31\x2e\x34\ -\x34\x2c\x2d\x31\x39\x2e\x35\x38\x34\x20\x2d\x31\x2e\x30\x38\x2c\ -\x2d\x33\x32\x2e\x39\x30\x34\x20\x30\x2e\x32\x38\x38\x2c\x2d\x31\ -\x33\x2e\x33\x32\x20\x31\x2e\x32\x39\x36\x2c\x2d\x32\x38\x2e\x35\ -\x38\x34\x20\x33\x2e\x30\x32\x34\x2c\x2d\x34\x36\x2e\x33\x33\x32\ -\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x63\x6c\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\ -\x6f\x64\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\ -\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\x64\x65\ -\x63\x66\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\ -\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\ -\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3a\x35\x2e\x36\x31\x34\x30\x31\x36\x30\x36\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\ -\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\ -\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ -\x68\x33\x39\x33\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ -\x6c\x69\x6d\x69\x74\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\ -\x75\x74\x3d\x22\x4f\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x35\x33\x2e\x30\x38\ -\x32\x2c\x38\x37\x2e\x36\x33\x33\x20\x63\x20\x2d\x33\x2e\x38\x35\ -\x32\x2c\x30\x2e\x34\x36\x38\x20\x2d\x37\x2e\x30\x39\x32\x2c\x30\ -\x2e\x32\x35\x32\x20\x2d\x39\x2e\x38\x36\x34\x2c\x2d\x30\x2e\x37\ -\x39\x32\x20\x2d\x32\x2e\x38\x30\x38\x2c\x2d\x31\x2e\x31\x35\x32\ -\x20\x2d\x35\x2e\x30\x30\x34\x2c\x2d\x32\x2e\x38\x34\x34\x20\x2d\ -\x36\x2e\x37\x33\x32\x2c\x2d\x35\x2e\x35\x30\x38\x20\x31\x2e\x34\ -\x30\x34\x2c\x31\x37\x2e\x36\x34\x20\x32\x2e\x34\x38\x34\x2c\x33\ -\x32\x2e\x37\x36\x31\x20\x33\x2e\x30\x39\x36\x2c\x34\x36\x2e\x31\ -\x38\x38\x20\x30\x2e\x36\x31\x32\x2c\x31\x33\x2e\x33\x35\x35\x20\ -\x30\x2e\x39\x2c\x32\x34\x2e\x33\x33\x36\x20\x30\x2e\x37\x32\x2c\ -\x33\x33\x2e\x35\x31\x36\x20\x32\x2e\x34\x31\x32\x2c\x34\x2e\x30\ -\x33\x31\x20\x34\x2e\x38\x36\x2c\x36\x2e\x34\x30\x38\x20\x37\x2e\ -\x34\x38\x38\x2c\x37\x2e\x31\x32\x37\x20\x32\x2e\x36\x32\x38\x2c\ -\x30\x2e\x36\x34\x38\x20\x35\x2e\x31\x38\x34\x2c\x2d\x30\x2e\x32\ -\x31\x35\x20\x38\x2e\x30\x36\x34\x2c\x2d\x32\x2e\x38\x37\x39\x20\ -\x43\x20\x35\x35\x2e\x34\x35\x38\x2c\x31\x35\x32\x2e\x39\x20\x35\ -\x35\x2e\x30\x32\x36\x2c\x31\x34\x30\x2e\x35\x39\x20\x35\x34\x2e\ -\x35\x35\x38\x2c\x31\x32\x37\x2e\x35\x32\x31\x20\x35\x34\x2e\x30\ -\x39\x2c\x31\x31\x34\x2e\x34\x38\x38\x20\x35\x33\x2e\x35\x35\x2c\ -\x31\x30\x31\x2e\x33\x38\x35\x20\x35\x33\x2e\x30\x38\x32\x2c\x38\ -\x37\x2e\x36\x33\x33\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x63\x6c\x69\x70\x2d\x72\x75\x6c\x65\x3d\ -\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ -\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ -\x3a\x23\x65\x64\x65\x63\x66\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ -\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x36\x31\x34\x30\x31\x36\x30\ -\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ -\x6d\x69\x74\x3a\x31\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x70\x61\x74\x68\x33\x39\x34\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3d\x22\x31\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x3a\x6b\ -\x6e\x6f\x63\x6b\x6f\x75\x74\x3d\x22\x4f\x66\x66\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\ -\x33\x32\x2e\x32\x30\x32\x2c\x37\x39\x2e\x38\x35\x37\x20\x63\x20\ -\x2d\x32\x2e\x38\x34\x34\x2c\x31\x2e\x38\x20\x2d\x35\x2e\x34\x37\ -\x32\x2c\x32\x2e\x33\x30\x34\x20\x2d\x38\x2e\x31\x37\x32\x2c\x31\ -\x2e\x31\x31\x36\x20\x2d\x32\x2e\x37\x33\x36\x2c\x2d\x31\x2e\x31\ -\x38\x38\x20\x2d\x35\x2e\x32\x35\x36\x2c\x2d\x33\x2e\x37\x38\x20\ -\x2d\x37\x2e\x38\x34\x38\x2c\x2d\x37\x2e\x39\x32\x20\x32\x2e\x38\ -\x30\x38\x2c\x31\x38\x2e\x35\x37\x36\x20\x34\x2e\x35\x33\x36\x2c\ -\x33\x34\x2e\x32\x37\x32\x20\x35\x2e\x37\x32\x34\x2c\x34\x38\x2e\ -\x30\x36\x31\x20\x31\x2e\x30\x38\x2c\x31\x33\x2e\x36\x38\x20\x31\ -\x2e\x32\x36\x2c\x32\x34\x2e\x36\x36\x20\x30\x2e\x36\x38\x34\x2c\ -\x33\x33\x2e\x35\x31\x36\x20\x32\x2e\x34\x31\x32\x2c\x33\x2e\x39\ -\x36\x31\x20\x34\x2e\x38\x36\x2c\x36\x2e\x31\x39\x31\x20\x37\x2e\ -\x34\x38\x38\x2c\x37\x2e\x31\x32\x39\x20\x32\x2e\x35\x35\x36\x2c\ -\x30\x2e\x38\x32\x36\x20\x35\x2e\x31\x34\x38\x2c\x30\x2e\x30\x37\ -\x20\x37\x2e\x39\x32\x2c\x2d\x32\x2e\x31\x32\x35\x20\x43\x20\x33\ -\x37\x2e\x36\x30\x32\x2c\x31\x34\x38\x2e\x32\x32\x32\x20\x33\x36\ -\x2e\x38\x31\x2c\x31\x33\x36\x2e\x30\x35\x34\x20\x33\x35\x2e\x39\ -\x31\x2c\x31\x32\x32\x2e\x36\x39\x38\x20\x33\x34\x2e\x39\x37\x34\ -\x2c\x31\x30\x39\x2e\x32\x36\x39\x20\x33\x33\x2e\x36\x34\x32\x2c\ -\x39\x35\x2e\x32\x36\x35\x20\x33\x32\x2e\x32\x30\x32\x2c\x37\x39\ -\x2e\x38\x35\x37\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x63\x6c\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\ -\x65\x76\x65\x6e\x6f\x64\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\ -\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ -\x23\x65\x64\x65\x63\x66\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\ -\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\ -\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3a\x35\x2e\x36\x31\x34\x30\x31\x36\x30\x36\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\ -\x69\x74\x3a\x31\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ -\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x70\x61\x74\x68\x33\x39\x34\x33\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ -\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3d\x22\x31\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x3a\x6b\x6e\ -\x6f\x63\x6b\x6f\x75\x74\x3d\x22\x4f\x66\x66\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x38\ -\x30\x2e\x30\x31\x2c\x35\x39\x2e\x38\x34\x31\x20\x63\x20\x30\x2e\ -\x37\x32\x2c\x31\x2e\x33\x33\x32\x20\x2d\x32\x2e\x31\x32\x34\x2c\ -\x33\x2e\x37\x38\x20\x2d\x34\x2e\x37\x38\x38\x2c\x34\x2e\x35\x37\ -\x32\x20\x2d\x32\x2e\x38\x34\x34\x2c\x30\x2e\x37\x32\x20\x2d\x31\ -\x30\x2e\x34\x34\x2c\x30\x2e\x36\x38\x34\x20\x2d\x31\x31\x2e\x32\ -\x36\x38\x2c\x2d\x30\x2e\x35\x30\x34\x20\x2d\x30\x2e\x36\x34\x38\ -\x2c\x2d\x31\x2e\x34\x30\x34\x20\x33\x2e\x39\x39\x36\x2c\x2d\x36\ -\x2e\x37\x33\x32\x20\x36\x2e\x38\x34\x2c\x2d\x37\x2e\x33\x38\x20\ -\x32\x2e\x37\x33\x36\x2c\x2d\x30\x2e\x36\x38\x34\x20\x38\x2e\x33\ -\x35\x32\x2c\x31\x2e\x39\x30\x38\x20\x39\x2e\x32\x31\x36\x2c\x33\ -\x2e\x33\x31\x32\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x63\x6c\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\ -\x65\x76\x65\x6e\x6f\x64\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\ -\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ -\x23\x65\x64\x65\x63\x66\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\ -\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\ -\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3a\x35\x2e\x36\x31\x34\x30\x31\x36\x30\x36\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\ -\x69\x74\x3a\x31\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ -\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x70\x61\x74\x68\x33\x39\x34\x35\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ -\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3d\x22\x31\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x3a\x6b\x6e\ -\x6f\x63\x6b\x6f\x75\x74\x3d\x22\x4f\x66\x66\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x39\ -\x38\x2e\x30\x38\x32\x2c\x35\x36\x2e\x30\x39\x37\x20\x63\x20\x30\ -\x2e\x36\x31\x32\x2c\x31\x2e\x35\x38\x34\x20\x2d\x32\x2e\x32\x33\ -\x32\x2c\x35\x2e\x34\x37\x32\x20\x2d\x34\x2e\x39\x33\x32\x2c\x36\ -\x2e\x32\x32\x38\x20\x2d\x32\x2e\x38\x30\x38\x2c\x30\x2e\x36\x31\ -\x32\x20\x2d\x31\x30\x2e\x34\x30\x34\x2c\x2d\x30\x2e\x36\x31\x32\ -\x20\x2d\x31\x31\x2e\x31\x32\x34\x2c\x2d\x32\x2e\x31\x36\x20\x2d\ -\x30\x2e\x36\x34\x38\x2c\x2d\x31\x2e\x36\x35\x36\x20\x33\x2e\x39\ -\x39\x36\x2c\x2d\x36\x2e\x36\x39\x36\x20\x36\x2e\x38\x34\x2c\x2d\ -\x37\x2e\x33\x34\x34\x20\x32\x2e\x37\x33\x36\x2c\x2d\x30\x2e\x37\ -\x32\x20\x38\x2e\x33\x35\x32\x2c\x31\x2e\x36\x32\x20\x39\x2e\x32\ -\x31\x36\x2c\x33\x2e\x32\x37\x36\x20\x7a\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x69\x70\x2d\x72\x75\ -\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\ -\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ -\x69\x6c\x6c\x3a\x23\x65\x64\x65\x63\x66\x31\x3b\x66\x69\x6c\x6c\ -\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\ -\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x36\x31\x34\x30\ -\x31\x36\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ -\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ -\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x39\x34\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3d\x22\x31\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\x75\x74\x3d\x22\x4f\x66\x66\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ -\x22\x6d\x20\x31\x31\x36\x2e\x32\x39\x38\x2c\x35\x35\x2e\x30\x35\ -\x33\x20\x63\x20\x30\x2e\x33\x39\x36\x2c\x31\x2e\x36\x35\x36\x20\ -\x2d\x34\x2e\x31\x30\x34\x2c\x35\x2e\x34\x37\x32\x20\x2d\x36\x2e\ -\x36\x39\x36\x2c\x36\x2e\x33\x20\x2d\x32\x2e\x38\x30\x38\x2c\x30\ -\x2e\x36\x34\x38\x20\x2d\x38\x2e\x38\x39\x32\x2c\x2d\x30\x2e\x36\ -\x34\x38\x20\x2d\x39\x2e\x33\x36\x2c\x2d\x32\x2e\x32\x33\x32\x20\ -\x2d\x30\x2e\x33\x39\x36\x2c\x2d\x31\x2e\x37\x32\x38\x20\x33\x2e\ -\x39\x36\x2c\x2d\x36\x2e\x37\x33\x32\x20\x36\x2e\x38\x30\x34\x2c\ -\x2d\x37\x2e\x33\x38\x20\x32\x2e\x37\x2c\x2d\x30\x2e\x36\x38\x34\ -\x20\x38\x2e\x37\x34\x38\x2c\x31\x2e\x35\x38\x34\x20\x39\x2e\x32\ -\x35\x32\x2c\x33\x2e\x33\x31\x32\x20\x7a\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x69\x70\x2d\x72\x75\ -\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\ -\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ -\x69\x6c\x6c\x3a\x23\x65\x64\x65\x63\x66\x31\x3b\x66\x69\x6c\x6c\ -\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\ -\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x36\x31\x34\x30\ -\x31\x36\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ -\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ -\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x39\x34\x39\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3d\x22\x31\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\x75\x74\x3d\x22\x4f\x66\x66\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ -\x22\x6d\x20\x31\x33\x35\x2e\x31\x32\x36\x2c\x35\x34\x2e\x33\x36\ -\x39\x20\x63\x20\x30\x2e\x35\x34\x2c\x31\x2e\x32\x32\x34\x20\x2d\ -\x32\x2e\x36\x32\x38\x2c\x34\x2e\x31\x30\x34\x20\x2d\x35\x2e\x34\ -\x37\x32\x2c\x34\x2e\x37\x35\x32\x20\x2d\x32\x2e\x38\x34\x34\x2c\ -\x30\x2e\x33\x36\x20\x2d\x31\x30\x2e\x38\x2c\x2d\x30\x2e\x35\x34\ -\x20\x2d\x31\x31\x2e\x33\x37\x36\x2c\x2d\x31\x2e\x37\x32\x38\x20\ -\x2d\x30\x2e\x35\x34\x2c\x2d\x31\x2e\x33\x33\x32\x20\x34\x2e\x36\ -\x34\x34\x2c\x2d\x34\x2e\x38\x39\x36\x20\x37\x2e\x36\x33\x32\x2c\ -\x2d\x35\x2e\x34\x33\x36\x20\x32\x2e\x37\x37\x32\x2c\x2d\x30\x2e\ -\x35\x37\x36\x20\x38\x2e\x35\x36\x38\x2c\x31\x2e\x31\x35\x32\x20\ -\x39\x2e\x32\x31\x36\x2c\x32\x2e\x34\x31\x32\x20\x7a\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x69\x70\ -\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\ -\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\x64\x65\x63\x66\x31\x3b\x66\ -\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\ -\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x36\ -\x31\x34\x30\x31\x36\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ -\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ -\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x39\x35\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ -\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\x75\x74\x3d\x22\x4f\ -\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x64\x3d\x22\x6d\x20\x37\x37\x2e\x37\x34\x32\x2c\x37\x30\x2e\ -\x33\x35\x33\x20\x63\x20\x31\x2e\x30\x30\x38\x2c\x31\x2e\x37\x32\ -\x38\x20\x2d\x33\x2e\x35\x36\x34\x2c\x35\x2e\x37\x36\x20\x2d\x35\ -\x2e\x39\x34\x2c\x36\x2e\x32\x36\x34\x20\x2d\x32\x2e\x34\x38\x34\ -\x2c\x30\x2e\x32\x38\x38\x20\x2d\x37\x2e\x38\x38\x34\x2c\x2d\x32\ -\x2e\x32\x33\x32\x20\x2d\x38\x2e\x38\x35\x36\x2c\x2d\x33\x2e\x39\ -\x36\x20\x2d\x31\x2e\x30\x34\x34\x2c\x2d\x31\x2e\x38\x33\x36\x20\ -\x30\x2c\x2d\x36\x2e\x31\x35\x36\x20\x32\x2e\x35\x35\x36\x2c\x2d\ -\x36\x2e\x35\x35\x32\x20\x32\x2e\x34\x34\x38\x2c\x2d\x30\x2e\x33\ -\x32\x34\x20\x31\x31\x2e\x31\x36\x2c\x32\x2e\x33\x34\x20\x31\x32\ -\x2e\x32\x34\x2c\x34\x2e\x32\x34\x38\x20\x7a\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x69\x70\x2d\x72\ -\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\ -\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x66\x69\x6c\x6c\x3a\x23\x65\x64\x65\x63\x66\x31\x3b\x66\x69\x6c\ -\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\ -\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x36\x31\x34\ -\x30\x31\x36\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ -\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x39\x35\x33\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3d\x22\ -\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\x75\x74\x3d\x22\x4f\x66\x66\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\ -\x3d\x22\x6d\x20\x39\x35\x2e\x38\x35\x2c\x36\x37\x2e\x34\x30\x31\ -\x20\x63\x20\x31\x2e\x30\x30\x38\x2c\x31\x2e\x35\x34\x38\x20\x2d\ -\x32\x2e\x30\x35\x32\x2c\x35\x2e\x32\x35\x36\x20\x2d\x34\x2e\x33\ -\x32\x2c\x35\x2e\x37\x32\x34\x20\x2d\x32\x2e\x33\x30\x34\x2c\x30\ -\x2e\x32\x35\x32\x20\x2d\x37\x2e\x38\x34\x38\x2c\x2d\x32\x2e\x32\ -\x33\x32\x20\x2d\x39\x2c\x2d\x33\x2e\x37\x30\x38\x20\x2d\x31\x2e\ -\x31\x31\x36\x2c\x2d\x31\x2e\x35\x31\x32\x20\x2d\x30\x2e\x32\x38\ -\x38\x2c\x2d\x35\x2e\x30\x34\x20\x32\x2e\x30\x38\x38\x2c\x2d\x35\ -\x2e\x33\x32\x38\x20\x32\x2e\x31\x39\x36\x2c\x2d\x30\x2e\x33\x36\ -\x20\x31\x30\x2e\x30\x30\x38\x2c\x31\x2e\x37\x36\x34\x20\x31\x31\ -\x2e\x32\x33\x32\x2c\x33\x2e\x33\x31\x32\x20\x7a\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x69\x70\x2d\ -\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\ -\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x66\x69\x6c\x6c\x3a\x23\x65\x64\x65\x63\x66\x31\x3b\x66\x69\ -\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\ -\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x36\x31\ -\x34\x30\x31\x36\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ -\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\ -\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x39\x35\x35\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3d\ -\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\x75\x74\x3d\x22\x4f\x66\ -\x66\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x64\x3d\x22\x6d\x20\x31\x31\x33\x2e\x31\x33\x2c\x36\x36\x2e\x39\ -\x33\x33\x20\x63\x20\x30\x2e\x39\x37\x32\x2c\x31\x2e\x34\x30\x34\ -\x20\x2d\x33\x2e\x30\x39\x36\x2c\x33\x2e\x34\x39\x32\x20\x2d\x35\ -\x2e\x34\x2c\x33\x2e\x36\x33\x36\x20\x2d\x32\x2e\x34\x34\x38\x2c\ -\x30\x2e\x30\x33\x36\x20\x2d\x37\x2e\x33\x34\x34\x2c\x2d\x31\x2e\ -\x36\x39\x32\x20\x2d\x38\x2e\x34\x36\x2c\x2d\x33\x2e\x30\x39\x36\ -\x20\x2d\x31\x2e\x31\x31\x36\x2c\x2d\x31\x2e\x34\x37\x36\x20\x2d\ -\x30\x2e\x32\x38\x38\x2c\x2d\x35\x2e\x32\x35\x36\x20\x32\x2e\x30\ -\x38\x38\x2c\x2d\x35\x2e\x33\x36\x34\x20\x32\x2e\x32\x33\x32\x2c\ -\x2d\x30\x2e\x31\x38\x20\x31\x30\x2e\x36\x39\x32\x2c\x33\x2e\x34\ -\x32\x20\x31\x31\x2e\x37\x37\x32\x2c\x34\x2e\x38\x32\x34\x20\x7a\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\ -\x6c\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\ -\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\ -\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\x64\x65\x63\x66\ -\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\ -\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\ -\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ -\x35\x2e\x36\x31\x34\x30\x31\x36\x30\x36\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ -\x3a\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\ -\x39\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ -\x6d\x69\x74\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\x75\x74\ -\x3d\x22\x4f\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x32\x38\x2e\x32\x38\x36\ -\x2c\x36\x33\x2e\x37\x32\x39\x20\x63\x20\x30\x2e\x37\x39\x32\x2c\ -\x31\x2e\x34\x37\x36\x20\x2d\x32\x2e\x38\x30\x38\x2c\x34\x2e\x37\ -\x31\x36\x20\x2d\x34\x2e\x38\x32\x34\x2c\x35\x2e\x31\x34\x38\x20\ -\x2d\x32\x2e\x31\x36\x2c\x30\x2e\x32\x35\x32\x20\x2d\x36\x2e\x33\ -\x33\x36\x2c\x2d\x31\x2e\x38\x20\x2d\x37\x2e\x32\x37\x32\x2c\x2d\ -\x33\x2e\x32\x34\x20\x2d\x30\x2e\x39\x33\x36\x2c\x2d\x31\x2e\x35\ -\x34\x38\x20\x30\x2e\x30\x33\x36\x2c\x2d\x35\x2e\x30\x30\x34\x20\ -\x32\x2e\x30\x38\x38\x2c\x2d\x35\x2e\x33\x36\x34\x20\x31\x2e\x39\ -\x38\x2c\x2d\x30\x2e\x33\x32\x34\x20\x39\x2e\x30\x37\x32\x2c\x31\ -\x2e\x39\x34\x34\x20\x31\x30\x2e\x30\x30\x38\x2c\x33\x2e\x34\x35\ -\x36\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x63\x6c\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\ -\x6e\x6f\x64\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\ -\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\ -\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\x64\ -\x65\x63\x66\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\ -\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\ -\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3a\x35\x2e\x36\x31\x34\x30\x31\x36\x30\x36\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ -\x31\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ -\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ -\x74\x68\x33\x39\x35\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ -\x72\x6c\x69\x6d\x69\x74\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\ -\x6f\x75\x74\x3d\x22\x4f\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x34\x38\x2e\ -\x33\x33\x38\x2c\x36\x30\x2e\x30\x35\x37\x20\x63\x20\x30\x2e\x38\ -\x36\x34\x2c\x31\x2e\x34\x37\x36\x20\x2d\x32\x2e\x39\x31\x36\x2c\ -\x34\x2e\x37\x31\x36\x20\x2d\x34\x2e\x38\x32\x34\x2c\x35\x2e\x31\ -\x34\x38\x20\x2d\x32\x2e\x31\x36\x2c\x30\x2e\x32\x35\x32\x20\x2d\ -\x36\x2e\x33\x37\x32\x2c\x2d\x31\x2e\x38\x20\x2d\x37\x2e\x32\x33\ -\x36\x2c\x2d\x33\x2e\x32\x34\x20\x2d\x30\x2e\x38\x32\x38\x2c\x2d\ -\x31\x2e\x35\x34\x38\x20\x2d\x30\x2e\x30\x33\x36\x2c\x2d\x35\x2e\ -\x30\x30\x34\x20\x32\x2e\x30\x38\x38\x2c\x2d\x35\x2e\x33\x36\x34\ -\x20\x32\x2e\x30\x31\x36\x2c\x2d\x30\x2e\x33\x32\x34\x20\x39\x2c\ -\x31\x2e\x39\x34\x34\x20\x39\x2e\x39\x37\x32\x2c\x33\x2e\x34\x35\ -\x36\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x63\x6c\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\ -\x6e\x6f\x64\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\ -\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\ -\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\x64\ -\x65\x63\x66\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\ -\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\ -\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3a\x35\x2e\x36\x31\x34\x30\x31\x36\x30\x36\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ -\x31\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ -\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ -\x74\x68\x33\x39\x36\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\x75\x74\x3d\ -\x22\x4f\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x36\x38\x2e\x32\x38\x32\x2c\ -\x31\x33\x33\x2e\x31\x30\x32\x20\x63\x20\x2d\x31\x2e\x31\x31\x36\ -\x2c\x33\x2e\x34\x35\x35\x20\x2d\x33\x2e\x33\x31\x32\x2c\x35\x2e\ -\x37\x36\x20\x2d\x36\x2e\x38\x37\x36\x2c\x37\x2e\x30\x35\x35\x20\ -\x2d\x33\x2e\x35\x36\x34\x2c\x31\x2e\x32\x32\x35\x20\x2d\x38\x2e\ -\x33\x35\x32\x2c\x31\x2e\x34\x34\x31\x20\x2d\x31\x34\x2e\x33\x36\ -\x34\x2c\x30\x2e\x35\x30\x34\x20\x2d\x32\x2e\x36\x36\x34\x2c\x32\ -\x2e\x31\x39\x37\x20\x2d\x35\x2e\x34\x2c\x33\x2e\x37\x34\x34\x20\ -\x2d\x38\x2e\x32\x30\x38\x2c\x34\x2e\x35\x20\x2d\x32\x2e\x38\x34\ -\x34\x2c\x30\x2e\x37\x35\x36\x20\x2d\x35\x2e\x37\x36\x2c\x30\x2e\ -\x38\x36\x35\x20\x2d\x38\x2e\x37\x34\x38\x2c\x30\x2e\x31\x38\x32\ -\x20\x2d\x30\x2e\x33\x39\x36\x2c\x33\x2e\x30\x35\x39\x20\x2d\x32\ -\x2e\x31\x32\x34\x2c\x35\x2e\x31\x38\x34\x20\x2d\x35\x2e\x31\x38\ -\x34\x2c\x36\x2e\x36\x35\x38\x20\x2d\x33\x2e\x31\x36\x38\x2c\x31\ -\x2e\x34\x34\x31\x20\x2d\x37\x2e\x34\x31\x36\x2c\x31\x2e\x39\x34\ -\x35\x20\x2d\x31\x33\x2e\x31\x37\x36\x2c\x31\x2e\x38\x30\x31\x20\ -\x2d\x31\x2e\x32\x39\x36\x2c\x32\x2e\x39\x31\x36\x20\x2d\x33\x2e\ -\x30\x32\x34\x2c\x35\x2e\x31\x31\x31\x20\x2d\x35\x2e\x37\x32\x34\ -\x2c\x36\x2e\x35\x38\x38\x20\x2d\x32\x2e\x36\x32\x38\x2c\x31\x2e\ -\x33\x36\x39\x20\x2d\x36\x2e\x30\x34\x38\x2c\x32\x2e\x30\x31\x36\ -\x20\x2d\x31\x30\x2e\x31\x31\x36\x2c\x31\x2e\x39\x34\x33\x20\x2d\ -\x31\x2e\x37\x32\x38\x2c\x33\x2e\x36\x30\x32\x20\x2d\x33\x2e\x39\ -\x32\x34\x2c\x35\x2e\x37\x32\x35\x20\x2d\x36\x2e\x35\x38\x38\x2c\ -\x36\x2e\x36\x36\x20\x2d\x32\x2e\x37\x2c\x30\x2e\x39\x20\x2d\x35\ -\x2e\x38\x36\x38\x2c\x30\x2e\x33\x32\x34\x20\x2d\x39\x2e\x35\x30\ -\x34\x2c\x2d\x31\x2e\x34\x33\x39\x20\x2d\x34\x2e\x33\x39\x32\x2c\ -\x35\x2e\x31\x34\x38\x20\x2d\x38\x2e\x35\x33\x32\x2c\x37\x2e\x38\ -\x34\x38\x20\x2d\x31\x32\x2e\x32\x37\x36\x2c\x38\x2e\x33\x38\x39\ -\x20\x2d\x33\x2e\x38\x38\x38\x2c\x30\x2e\x34\x33\x32\x20\x2d\x37\ -\x2e\x32\x33\x36\x2c\x2d\x31\x2e\x32\x39\x37\x20\x2d\x31\x30\x2e\ -\x34\x37\x36\x2c\x2d\x35\x2e\x34\x37\x33\x20\x2d\x34\x2e\x38\x36\ -\x2c\x31\x2e\x32\x39\x37\x20\x2d\x38\x2e\x36\x34\x2c\x31\x2e\x34\ -\x33\x39\x20\x2d\x31\x31\x2e\x38\x38\x2c\x30\x2e\x35\x37\x36\x20\ -\x2d\x33\x2e\x32\x30\x34\x2c\x2d\x30\x2e\x39\x33\x36\x20\x2d\x35\ -\x2e\x36\x31\x36\x2c\x2d\x33\x2e\x30\x32\x33\x20\x2d\x37\x2e\x32\ -\x33\x36\x2c\x2d\x36\x2e\x31\x31\x39\x20\x2d\x35\x2e\x32\x32\x2c\ -\x31\x2e\x34\x30\x32\x20\x2d\x39\x2e\x33\x39\x36\x2c\x31\x2e\x32\ -\x39\x35\x20\x2d\x31\x32\x2e\x36\x37\x32\x2c\x2d\x30\x2e\x34\x36\ -\x39\x20\x2d\x33\x2e\x33\x31\x32\x2c\x2d\x31\x2e\x37\x36\x34\x20\ -\x2d\x35\x2e\x36\x31\x36\x2c\x2d\x35\x2e\x30\x37\x36\x20\x2d\x36\ -\x2e\x39\x31\x32\x2c\x2d\x39\x2e\x39\x33\x36\x20\x2d\x33\x2e\x31\ -\x33\x32\x2c\x2d\x30\x2e\x32\x35\x32\x20\x2d\x35\x2e\x33\x36\x34\ -\x2c\x30\x2e\x30\x37\x32\x20\x2d\x36\x2e\x36\x39\x36\x2c\x31\x2e\ -\x31\x31\x35\x20\x2d\x31\x2e\x34\x34\x2c\x30\x2e\x39\x33\x36\x20\ -\x2d\x33\x2e\x37\x34\x34\x2c\x32\x2e\x37\x37\x31\x20\x2d\x31\x2e\ -\x35\x31\x32\x2c\x34\x2e\x38\x32\x34\x20\x32\x2e\x32\x36\x38\x2c\ -\x31\x2e\x38\x37\x31\x20\x37\x2e\x33\x38\x2c\x33\x2e\x32\x34\x20\ -\x31\x34\x2e\x36\x35\x32\x2c\x37\x2e\x31\x36\x34\x20\x37\x2e\x30\ -\x39\x32\x2c\x33\x2e\x39\x35\x39\x20\x31\x38\x2e\x32\x31\x36\x2c\ -\x31\x34\x2e\x36\x31\x35\x20\x32\x37\x2e\x38\x32\x38\x2c\x31\x36\ -\x2e\x32\x37\x31\x20\x39\x2e\x33\x39\x36\x2c\x31\x2e\x34\x33\x39\ -\x20\x31\x35\x2e\x39\x38\x34\x2c\x2d\x32\x2e\x33\x30\x33\x20\x32\ -\x38\x2e\x39\x34\x34\x2c\x2d\x36\x2e\x39\x31\x32\x20\x31\x33\x2e\ -\x30\x36\x38\x2c\x2d\x34\x2e\x36\x34\x33\x20\x33\x35\x2e\x36\x37\ -\x36\x2c\x2d\x31\x35\x2e\x30\x38\x34\x20\x34\x38\x2e\x33\x38\x34\ -\x2c\x2d\x32\x30\x2e\x34\x38\x34\x20\x31\x32\x2e\x33\x38\x34\x2c\ -\x2d\x35\x2e\x33\x39\x38\x20\x31\x38\x2e\x34\x33\x32\x2c\x2d\x39\ -\x2e\x32\x35\x32\x20\x32\x36\x2e\x30\x36\x34\x2c\x2d\x31\x32\x2e\ -\x31\x33\x31\x20\x37\x2e\x35\x36\x2c\x2d\x33\x2e\x30\x39\x36\x20\ -\x31\x33\x2e\x39\x36\x38\x2c\x2d\x34\x2e\x38\x39\x36\x20\x31\x39\ -\x2e\x33\x36\x38\x2c\x2d\x35\x2e\x38\x33\x32\x20\x2d\x32\x2e\x32\ -\x36\x38\x2c\x2d\x30\x2e\x37\x39\x33\x20\x2d\x33\x2e\x39\x32\x34\ -\x2c\x2d\x31\x2e\x35\x38\x34\x20\x2d\x35\x2e\x31\x31\x32\x2c\x2d\ -\x32\x2e\x35\x32\x20\x2d\x31\x2e\x32\x32\x34\x2c\x2d\x30\x2e\x39\ -\x33\x37\x20\x2d\x31\x2e\x38\x33\x36\x2c\x2d\x31\x2e\x39\x30\x38\ -\x20\x2d\x31\x2e\x39\x38\x2c\x2d\x32\x2e\x39\x31\x35\x20\x7a\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\ -\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\ -\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x38\x30\ -\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\ -\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\ -\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\ -\x2e\x36\x31\x34\x30\x31\x36\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x31\x30\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ -\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\ -\x0a\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\ -\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x3b\x68\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x01\xa0\x00\x00\x00\xb0\x00\x00\x0f\xa4\x00\x00\x07\x3d\ +\x00\x00\x0f\x19\x00\x39\xdf\x33\x00\x00\x01\x92\x00\x72\x97\x49\ +\x00\x00\x0f\x54\x01\x0c\x64\xae\x00\x00\x10\x14\x01\x38\xb0\x83\ +\x00\x00\x11\x8c\x01\x40\x42\x85\x00\x00\x0b\x03\x02\x1f\xd9\x48\ +\x00\x00\x03\xe4\x02\x7b\x37\xc4\x00\x00\x14\x73\x02\xbc\x05\x8e\ +\x00\x00\x0c\xaf\x02\xbe\x05\x8e\x00\x00\x00\xbf\x03\x8c\x88\xc1\ +\x00\x00\x0d\x4f\x05\x08\x5c\x93\x00\x00\x03\x07\x05\x16\xa3\x95\ +\x00\x00\x13\x0b\x05\x66\x9a\x34\x00\x00\x07\xdf\x05\x98\x15\x8e\ +\x00\x00\x0d\x02\x05\xcc\x9a\xd9\x00\x00\x0c\x5f\x05\xe4\x1f\xa9\ +\x00\x00\x10\x76\x05\xfb\x21\x0b\x00\x00\x06\x51\x06\xe4\x0a\x14\ +\x00\x00\x18\x05\x06\xee\xa0\xc5\x00\x00\x09\xeb\x07\x5d\xec\x93\ +\x00\x00\x12\xac\x07\x5d\xee\x93\x00\x00\x12\x4d\x07\xda\x68\xe7\ +\x00\x00\x0b\x7a\x07\xe4\xd0\x65\x00\x00\x0d\x99\x08\x10\xb3\x89\ +\x00\x00\x05\x45\x08\x37\x4e\x99\x00\x00\x15\x1c\x08\x4d\xc0\x2e\ +\x00\x00\x19\x74\x08\x5d\x45\x73\x00\x00\x01\x12\x08\xa5\x45\x08\ +\x00\x00\x05\xf5\x08\xca\x52\x4b\x00\x00\x14\xe7\x08\xca\x72\x4b\ +\x00\x00\x0f\xdc\x08\xe2\x7f\xe5\x00\x00\x13\xc9\x09\x2b\x77\x54\ +\x00\x00\x17\xbe\x09\xc0\x82\xb5\x00\x00\x06\xad\x0a\x22\x8d\xb2\ +\x00\x00\x00\x00\x0a\x2b\x47\x64\x00\x00\x0e\x96\x0a\x96\xcd\x84\ +\x00\x00\x0e\x0d\x0a\xd3\x55\x94\x00\x00\x07\x7d\x0a\xf8\x55\x94\ +\x00\x00\x07\x1b\x0b\x61\x1d\x4e\x00\x00\x16\x19\x0d\x2c\x1d\x28\ +\x00\x00\x04\x3d\x0d\xaa\x21\x43\x00\x00\x13\x79\x0d\xdc\x00\x68\ +\x00\x00\x04\xe6\x0e\x02\x4e\xea\x00\x00\x19\x0f\x0e\x75\xf9\x03\ +\x00\x00\x0a\x8c\x0e\x80\x99\x15\x00\x00\x15\xc0\x0e\xc6\x00\x19\ +\x00\x00\x0c\x06\x0e\xcc\x78\xf1\x00\x00\x04\x8d\x0f\x18\x51\xc5\ +\x00\x00\x11\xcd\x0f\x68\xe5\xc7\x00\x00\x01\xfd\x0f\xd3\x1f\xf3\ +\x00\x00\x16\x99\x69\x00\x00\x19\xcd\x03\x00\x00\x00\x5c\x00\x44\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x3a\x00\x20\x00\x52\x00\x65\ +\x00\x67\x00\x69\x00\x73\x00\x74\x00\x65\x00\x72\x00\x20\x00\x66\ +\x00\x69\x00\x6c\x00\x65\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x74\x00\x6f\ +\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2e\x44\x65\x62\x75\x67\x3a\x20\x52\x65\x67\x69\x73\ +\x74\x65\x72\x20\x66\x69\x6c\x65\x74\x79\x70\x65\x20\x74\x6f\x20\ +\x70\x72\x6f\x74\x6f\x74\x79\x70\x65\x20\x69\x6d\x70\x6f\x72\x74\ +\x65\x72\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x44\x00\ +\x65\x00\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x44\x65\x66\x6c\x65\ +\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x32\ +\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x53\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x65\x6e\x65\ +\x72\x61\x6c\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x26\ +\x00\x5a\x00\xe1\x00\x6b\x00\x6c\x00\x61\x00\x64\x00\x6e\x00\xe9\ +\x00\x20\x00\x6e\x00\x61\x00\x73\x00\x74\x00\x61\x00\x76\x00\x65\ +\x00\x6e\x00\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x8e\x00\x49\x00\x66\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\ +\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\ +\x2c\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\ +\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\ +\x63\x00\x6c\x00\x61\x00\x69\x00\x6d\x00\x20\x00\x74\x00\x68\x00\ +\x69\x00\x65\x00\x72\x00\x20\x00\x63\x00\x68\x00\x69\x00\x6c\x00\ +\x64\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x74\x00\x72\x00\x65\x00\x65\x00\ +\x20\x00\x76\x00\x69\x00\x65\x00\x77\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x47\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\ +\x65\x63\x6b\x65\x64\x2c\x20\x46\x65\x61\x74\x75\x72\x65\x73\x20\ +\x77\x69\x6c\x6c\x20\x63\x6c\x61\x69\x6d\x20\x74\x68\x69\x65\x72\ +\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\x69\x6e\x20\x74\x68\x65\ +\x20\x74\x72\x65\x65\x20\x76\x69\x65\x77\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x70\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\ +\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x4d\x00\ +\x75\x00\x6c\x00\x74\x00\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\ +\x78\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\ +\x20\x00\x50\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\ +\x72\x00\x69\x00\x63\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x49\ +\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\ +\x64\x2c\x20\x4d\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\x4f\x62\ +\x6a\x65\x63\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x50\x61\x72\ +\x61\x6d\x65\x74\x72\x69\x63\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x18\x00\x4c\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x20\x00\x4c\ +\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x4c\x6f\x63\x61\x6c\x20\x4c\x65\x6e\x67\x74\x68\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\x4d\x00\x61\x00\ +\x78\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x09\x4d\x61\x78\x4c\x65\x6e\x67\x74\x68\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x4d\x00\x61\x00\ +\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x41\x00\x72\x00\ +\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x4d\x61\x78\ +\x69\x6d\x75\x6d\x20\x41\x72\x65\x61\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x1c\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\ +\x00\x6d\x00\x20\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x4d\x61\x78\x69\x6d\x75\ +\x6d\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x52\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\ +\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\ +\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x6f\x00\ +\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x28\x00\ +\x66\x00\x6e\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x4d\ +\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\ +\x20\x66\x61\x63\x65\x73\x20\x66\x6f\x72\x20\x70\x6f\x6c\x79\x67\ +\x6f\x6e\x73\x20\x28\x66\x6e\x29\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x1a\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x75\x00\x6d\x00\ +\x20\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0d\x4d\x61\x78\x69\x75\x6d\x20\x4c\x65\ +\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1a\x00\ +\x4d\x00\x65\x00\x73\x00\x68\x00\x20\x00\x66\x00\x61\x00\x6c\x00\ +\x6c\x00\x62\x00\x61\x00\x63\x00\x6b\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x4d\x65\x73\x68\x20\x66\x61\x6c\x6c\x62\x61\x63\x6b\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x26\x00\x4f\x00\x70\x00\ +\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\ +\x78\x00\x65\x00\x63\x00\x75\x00\x74\x00\x61\x00\x62\x00\x6c\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x1e\x00\x4f\x00\x70\x00\x65\x00\ +\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x78\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x70\x6f\x72\x74\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1e\x00\x4f\x00\x70\x00\ +\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x69\x00\ +\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x69\x6d\x70\x6f\ +\x72\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x01\x3a\x00\x54\x00\ +\x68\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\ +\x75\x00\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\ +\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x66\x00\x61\x00\x63\x00\ +\x65\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x20\x00\ +\x70\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x2c\x00\ +\x20\x00\x70\x00\x72\x00\x69\x00\x73\x00\x6d\x00\x20\x00\x6f\x00\ +\x72\x00\x20\x00\x66\x00\x72\x00\x75\x00\x73\x00\x74\x00\x75\x00\ +\x6d\x00\x2e\x00\x20\x00\x49\x00\x66\x00\x20\x00\x66\x00\x6e\x00\ +\x20\x00\x69\x00\x73\x00\x20\x00\x67\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\x61\x00\x6e\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x76\x00\x61\x00\ +\x6c\x00\x75\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\ +\x65\x00\x72\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ +\x62\x00\x65\x00\x20\x00\x61\x00\x20\x00\x63\x00\x69\x00\x72\x00\ +\x63\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x2e\x00\x20\x00\x53\x00\ +\x65\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x30\x00\x20\x00\ +\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x6c\x00\ +\x69\x00\x6d\x00\x69\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x9d\x54\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\ +\x62\x65\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x6f\x66\x20\ +\x61\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x2c\x20\x70\x72\x69\x73\x6d\ +\x20\x6f\x72\x20\x66\x72\x75\x73\x74\x75\x6d\x2e\x20\x49\x66\x20\ +\x66\x6e\x20\x69\x73\x20\x67\x72\x65\x61\x74\x65\x72\x20\x74\x68\ +\x61\x6e\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x74\x68\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x73\x20\x63\x6f\x6e\x73\ +\x69\x64\x65\x72\x65\x64\x20\x74\x6f\x20\x62\x65\x20\x61\x20\x63\ +\x69\x72\x63\x75\x6c\x61\x72\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\ +\x30\x20\x66\x6f\x72\x20\x6e\x6f\x20\x6c\x69\x6d\x69\x74\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x48\x00\x54\x00\x68\x00\x65\x00\ +\x20\x00\x70\x00\x61\x00\x74\x00\x68\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x4f\x00\x70\x00\x65\x00\ +\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x78\x00\ +\x65\x00\x63\x00\x75\x00\x74\x00\x65\x00\x61\x00\x62\x00\x6c\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x54\x68\x65\x20\x70\ +\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\x65\x61\x62\x6c\x65\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x54\x00\x72\x00\x69\ +\x00\x61\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x74\x00\x74\x00\x69\ +\x00\x6e\x00\x67\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\ +\x54\x72\x69\x61\x6e\x67\x75\x6c\x61\x74\x69\x6f\x6e\x20\x73\x65\ +\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x2c\x00\x55\x00\x73\x00\x65\x00\x20\x00\x4d\x00\x75\x00\x6c\x00\ +\x74\x00\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\x78\x00\x20\x00\ +\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x16\x55\x73\x65\x20\x4d\x75\x6c\x74\x6d\ +\x61\x74\x72\x69\x78\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\ +\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x3a\x00\x55\x00\x73\x00\x65\x00\x20\ +\x00\x56\x00\x69\x00\x65\x00\x77\x00\x50\x00\x72\x00\x6f\x00\x76\ +\x00\x69\x00\x64\x00\x65\x00\x72\x00\x20\x00\x69\x00\x6e\x00\x20\ +\x00\x54\x00\x72\x00\x65\x00\x65\x00\x20\x00\x56\x00\x69\x00\x65\ +\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\x65\x20\ +\x56\x69\x65\x77\x50\x72\x6f\x76\x69\x64\x65\x72\x20\x69\x6e\x20\ +\x54\x72\x65\x65\x20\x56\x69\x65\x77\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x18\x00\x61\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x61\ +\x00\x72\x00\x20\x00\x28\x00\x66\x00\x61\x00\x29\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x61\x6e\x67\x75\x6c\x61\x72\x20\x28\x66\ +\x61\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\x63\x00\ +\x6f\x00\x6e\x00\x76\x00\x65\x00\x78\x00\x69\x00\x74\x00\x79\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x63\x6f\x6e\x76\x65\x78\x69\ +\x74\x79\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x64\x00\ +\x65\x00\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x64\x65\x66\x6c\x65\ +\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x10\ +\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x4c\x00\x65\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x6c\x6f\x63\x61\x6c\x4c\ +\x65\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x0e\x00\x6d\x00\ +\x61\x00\x78\x00\x41\x00\x72\x00\x65\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x07\x6d\x61\x78\x41\x72\x65\x61\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x2a\x00\x6d\x00\x61\x00\x78\x00\x69\x00\ +\x6d\x00\x75\x00\x6d\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x73\x00\x69\x00\x7a\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x6d\x61\x78\x69\x6d\ +\x75\x6d\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x20\x73\x69\x7a\x65\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x38\x00\x6d\x00\x69\x00\ +\x6e\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x61\x00\x6e\x00\ +\x67\x00\x6c\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\ +\x61\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x6d\x69\x6e\ +\x69\x6d\x75\x6d\x20\x61\x6e\x67\x6c\x65\x20\x66\x6f\x72\x20\x61\ +\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x34\x00\x6d\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\x75\ +\x00\x6d\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x6f\ +\x00\x66\x00\x20\x00\x61\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\ +\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1a\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x73\x69\x7a\x65\x20\x6f\ +\x66\x20\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x04\x00\x6d\x00\x6d\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x02\x6d\x6d\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x12\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x28\x00\x66\ +\x00\x73\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x73\x69\ +\x7a\x65\x20\x28\x66\x73\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x02\x00\xb0\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\xb0\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\x20\x00\x50\x00\x72\ +\x00\x65\x00\x73\x00\x73\x00\x20\x00\x4f\x00\x4b\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x09\x20\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\ +\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x2e\x00\x41\x00\x64\x00\x64\x00\x20\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x45\x00\x6c\ +\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2e\x00\x2e\x00\x2e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x41\x64\x64\x20\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x20\x45\x6c\x65\x6d\x65\x6e\x74\x2e\x2e\ +\x2e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\xa6\x00\x41\x00\x64\x00\x64\x00\x20\x00\x61\x00\x6e\ +\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\ +\x00\x44\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\ +\x00\x74\x00\x20\x00\x62\x00\x79\x00\x20\x00\x65\x00\x6e\x00\x74\ +\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x4f\x00\x70\ +\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x63\ +\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\ +\x00\x65\x00\x78\x00\x65\x00\x63\x00\x75\x00\x74\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x4f\x00\x70\ +\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x62\ +\x00\x69\x00\x6e\x00\x61\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x53\x41\x64\x64\x20\x61\x6e\x20\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x20\x65\x6c\x65\x6d\x65\x6e\x74\x20\x62\x79\x20\x65\ +\x6e\x74\x65\x72\x69\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x20\x63\x6f\x64\x65\x20\x61\x6e\x64\x20\x65\x78\x65\x63\x75\x74\ +\x69\x6e\x67\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x20\x62\x69\x6e\x61\x72\x79\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x43\x00\x6f\x00\x6c\ +\x00\x6f\x00\x72\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x6f\x6c\x6f\ +\x72\x20\x53\x68\x61\x70\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x42\x00\x43\x00\x6f\x00\ +\x6c\x00\x6f\x00\x72\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\ +\x65\x00\x73\x00\x20\x00\x62\x00\x79\x00\x20\x00\x76\x00\x61\x00\ +\x6c\x00\x69\x00\x64\x00\x69\x00\x74\x00\x79\x00\x20\x00\x61\x00\ +\x6e\x00\x64\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x21\x43\x6f\x6c\x6f\x72\x20\x53\x68\x61\ +\x70\x65\x73\x20\x62\x79\x20\x76\x61\x6c\x69\x64\x69\x74\x79\x20\ +\x61\x6e\x64\x20\x74\x79\x70\x65\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x43\x00\x6f\x00\ +\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x20\x00\x45\x00\x64\x00\ +\x67\x00\x65\x00\x73\x00\x20\x00\x54\x00\x6f\x00\x20\x00\x46\x00\ +\x61\x00\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x16\x43\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\x67\x65\x73\x20\x54\ +\x6f\x20\x46\x61\x63\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x43\x00\x6f\x00\x6e\ +\x00\x76\x00\x65\x00\x72\x00\x74\x00\x20\x00\x45\x00\x64\x00\x67\ +\x00\x65\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x46\x00\x61\ +\x00\x63\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\ +\x43\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\x67\x65\x73\x20\x74\x6f\ +\x20\x46\x61\x63\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x36\x00\x43\x00\x72\x00\x65\x00\ +\x61\x00\x74\x00\x65\x00\x20\x00\x52\x00\x65\x00\x66\x00\x69\x00\ +\x6e\x00\x65\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\ +\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x43\x72\x65\x61\x74\x65\x20\ +\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\x65\x61\ +\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x22\x00\x45\x00\x78\x00\x70\x00\x61\x00\ +\x6e\x00\x64\x00\x20\x00\x50\x00\x6c\x00\x61\x00\x63\x00\x65\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x11\x45\x78\x70\x61\x6e\x64\x20\x50\x6c\x61\x63\x65\x6d\ +\x65\x6e\x74\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x5e\x00\x45\x00\x78\x00\x70\x00\x61\x00\ +\x6e\x00\x64\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x70\x00\ +\x6c\x00\x61\x00\x63\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x73\x00\x20\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x77\x00\x61\x00\ +\x72\x00\x64\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x00\x54\x00\ +\x72\x00\x65\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x45\ +\x78\x70\x61\x6e\x64\x20\x61\x6c\x6c\x20\x70\x6c\x61\x63\x65\x6d\ +\x65\x6e\x74\x73\x20\x64\x6f\x77\x6e\x77\x61\x72\x64\x73\x20\x74\ +\x68\x65\x20\x46\x65\x61\x74\x75\x72\x65\x54\x72\x65\x65\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x3a\x00\x50\x00\x6c\x00\x65\x00\x61\x00\x73\x00\x65\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x33\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\ +\x20\x00\x66\x00\x69\x00\x72\x00\x73\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1d\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\x65\ +\x63\x74\x20\x33\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x69\x72\ +\x73\x74\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x10\x00\x50\x00\x72\x00\x65\x00\x73\x00\x73\x00\ +\x20\x00\x4f\x00\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x50\ +\x72\x65\x73\x73\x20\x4f\x4b\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x5a\x00\x50\x00\x72\x00\x6f\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\ +\x00\x4e\x00\x6f\x00\x74\x00\x20\x00\x79\x00\x65\x00\x74\x00\x20\ +\x00\x43\x00\x6f\x00\x64\x00\x65\x00\x64\x00\x20\x00\x77\x00\x61\ +\x00\x69\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x66\x00\x6f\ +\x00\x72\x00\x20\x00\x50\x00\x65\x00\x74\x00\x65\x00\x72\x00\x20\ +\x00\x4c\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x50\x72\ +\x6f\x6a\x65\x63\x74\x69\x6f\x6e\x20\x4e\x6f\x74\x20\x79\x65\x74\ +\x20\x43\x6f\x64\x65\x64\x20\x77\x61\x69\x74\x69\x6e\x67\x20\x66\ +\x6f\x72\x20\x50\x65\x74\x65\x72\x20\x4c\x69\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x28\x00\x52\ +\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x53\x00\x68\ +\x00\x61\x00\x70\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\ +\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\ +\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\x65\x61\ +\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x42\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\ +\x76\x00\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x69\x00\x72\x00\x20\x00\x43\x00\x68\x00\x69\x00\ +\x6c\x00\x64\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x21\x52\x65\x6d\x6f\x76\x65\x20\x4f\x62\x6a\x65\x63\x74\ +\x73\x20\x61\x6e\x64\x20\x74\x68\x65\x69\x72\x20\x43\x68\x69\x6c\ +\x64\x72\x65\x6e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\xb0\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\ +\x76\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\ +\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\ +\x20\x00\x63\x00\x68\x00\x69\x00\x6c\x00\x64\x00\x72\x00\x65\x00\ +\x6e\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x61\x00\ +\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x72\x00\ +\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x65\x00\ +\x64\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x6f\x00\ +\x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x58\x52\x65\x6d\x6f\x76\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x6e\ +\x64\x20\x61\x6c\x6c\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\x74\ +\x68\x61\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x72\x65\x66\x65\ +\x72\x65\x6e\x63\x65\x64\x20\x66\x72\x6f\x6d\x20\x6f\x74\x68\x65\ +\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x08\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1c\x00\x52\x00\x65\ +\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x20\x00\x4f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0e\x52\x65\x70\x6c\x61\x63\x65\x20\x4f\x62\x6a\x65\x63\x74\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x9e\x00\x52\x00\x65\x00\x70\x00\x6c\x00\x61\x00\x63\x00\ +\x65\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\ +\x72\x00\x65\x00\x20\x00\x54\x00\x72\x00\x65\x00\x65\x00\x2e\x00\ +\x20\x00\x50\x00\x6c\x00\x65\x00\x61\x00\x73\x00\x65\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x6f\x00\ +\x6c\x00\x64\x00\x2c\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\ +\x61\x00\x6e\x00\x64\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\ +\x6e\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x52\x65\x70\x6c\x61\ +\x63\x65\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x20\ +\x74\x68\x65\x20\x46\x65\x61\x74\x75\x72\x65\x20\x54\x72\x65\x65\ +\x2e\x20\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\x20\ +\x6f\x6c\x64\x2c\x20\x6e\x65\x77\x20\x61\x6e\x64\x20\x70\x61\x72\ +\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x30\x00\x52\x00\ +\x75\x00\x6e\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\ +\x66\x00\x61\x00\x69\x00\x6c\x00\x65\x00\x64\x00\x0a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x18\x52\x75\x6e\x6e\x69\x6e\x67\x20\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x20\x66\x61\x69\x6c\x65\x64\x0a\x07\ +\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x28\x00\x55\x00\x6e\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\ +\x00\x72\x00\x74\x00\x65\x00\x64\x00\x20\x00\x46\x00\x75\x00\x6e\ +\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x14\x55\x6e\x73\x75\x70\x70\x6f\x72\x74\x65\x64\x20\ +\x46\x75\x6e\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\ +\x00\x00\x1b\x81\ \x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ -\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ -\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ -\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ -\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ -\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ -\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ -\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x70\x78\ -\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\x70\ -\x78\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x36\x31\ -\x32\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\ -\x2e\x31\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x34\x38\x2e\x33\x2e\ -\x31\x20\x72\x39\x38\x38\x36\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x44\x72\ -\x61\x66\x74\x5f\x41\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\x2e\x73\ -\x76\x67\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x36\x31\x34\x22\x3e\ -\x0a\x20\x20\x20\x20\x3c\x6d\x61\x72\x6b\x65\x72\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x74\x6f\ -\x63\x6b\x69\x64\x3d\x22\x41\x72\x72\x6f\x77\x31\x4d\x65\x6e\x64\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x65\x6e\x74\x3d\ -\x22\x61\x75\x74\x6f\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x65\ -\x66\x59\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x72\x65\x66\x58\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x41\x72\x72\x6f\x77\x31\x4d\x65\x6e\x64\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\ -\x3b\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ -\x68\x33\x38\x33\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x64\x3d\x22\x4d\x20\x30\x2e\x30\x2c\x30\x2e\x30\x20\x4c\x20\x35\ -\x2e\x30\x2c\x2d\x35\x2e\x30\x20\x4c\x20\x2d\x31\x32\x2e\x35\x2c\ -\x30\x2e\x30\x20\x4c\x20\x35\x2e\x30\x2c\x35\x2e\x30\x20\x4c\x20\ -\x30\x2e\x30\x2c\x30\x2e\x30\x20\x7a\x20\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ -\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\ -\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x70\x74\x3b\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\ -\x66\x6f\x72\x6d\x3d\x22\x73\x63\x61\x6c\x65\x28\x30\x2e\x34\x29\ -\x20\x72\x6f\x74\x61\x74\x65\x28\x31\x38\x30\x29\x20\x74\x72\x61\ -\x6e\x73\x6c\x61\x74\x65\x28\x31\x30\x2c\x30\x29\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x3c\x2f\x6d\x61\x72\x6b\x65\x72\x3e\x0a\x20\ -\x20\x20\x20\x3c\x6d\x61\x72\x6b\x65\x72\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x74\x6f\x63\x6b\ -\x69\x64\x3d\x22\x41\x72\x72\x6f\x77\x31\x4d\x73\x74\x61\x72\x74\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x65\x6e\x74\x3d\ -\x22\x61\x75\x74\x6f\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x65\ -\x66\x59\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x72\x65\x66\x58\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x41\x72\x72\x6f\x77\x31\x4d\x73\x74\x61\ -\x72\x74\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\ -\x6c\x65\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ -\x74\x68\x33\x38\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x64\x3d\x22\x4d\x20\x30\x2e\x30\x2c\x30\x2e\x30\x20\x4c\x20\ -\x35\x2e\x30\x2c\x2d\x35\x2e\x30\x20\x4c\x20\x2d\x31\x32\x2e\x35\ -\x2c\x30\x2e\x30\x20\x4c\x20\x35\x2e\x30\x2c\x35\x2e\x30\x20\x4c\ -\x20\x30\x2e\x30\x2c\x30\x2e\x30\x20\x7a\x20\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ -\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\ -\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x70\x74\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\ -\x66\x6f\x72\x6d\x3d\x22\x73\x63\x61\x6c\x65\x28\x30\x2e\x34\x29\ -\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x65\x28\x31\x30\x2c\x30\x29\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6d\x61\x72\x6b\x65\ -\x72\x3e\x0a\x20\x20\x20\x20\x3c\x6d\x61\x72\x6b\x65\x72\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\ -\x74\x6f\x63\x6b\x69\x64\x3d\x22\x41\x72\x72\x6f\x77\x31\x4c\x73\ -\x74\x61\x72\x74\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\ -\x65\x6e\x74\x3d\x22\x61\x75\x74\x6f\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x72\x65\x66\x59\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x72\x65\x66\x58\x3d\x22\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x41\x72\x72\x6f\x77\x31\ -\x4c\x73\x74\x61\x72\x74\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\ -\x69\x73\x69\x62\x6c\x65\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ -\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x70\x61\x74\x68\x33\x38\x32\x36\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x30\x2e\x30\x2c\x30\x2e\ -\x30\x20\x4c\x20\x35\x2e\x30\x2c\x2d\x35\x2e\x30\x20\x4c\x20\x2d\ -\x31\x32\x2e\x35\x2c\x30\x2e\x30\x20\x4c\x20\x35\x2e\x30\x2c\x35\ -\x2e\x30\x20\x4c\x20\x30\x2e\x30\x2c\x30\x2e\x30\x20\x7a\x20\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\ -\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\ -\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\ -\x2e\x30\x70\x74\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\ -\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x73\x63\x61\x6c\x65\x28\ -\x30\x2e\x38\x29\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x65\x28\x31\ -\x32\x2e\x35\x2c\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ -\x2f\x6d\x61\x72\x6b\x65\x72\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\ -\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ -\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\ -\x22\x30\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ -\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x76\x70\x5f\x7a\x3d\x22\x36\x34\x20\x3a\x20\x33\x32\x20\x3a\ -\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\ -\x69\x6e\x3d\x22\x33\x32\x20\x3a\x20\x32\x31\x2e\x33\x33\x33\x33\ -\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x36\ -\x32\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\ -\x70\x65\x63\x74\x69\x76\x65\x33\x35\x38\x38\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\ -\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\ -\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\ -\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\ -\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\ -\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\ -\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\ -\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\ -\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\ -\x73\x70\x65\x63\x74\x69\x76\x65\x33\x36\x39\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ -\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\ -\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\ -\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\ -\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\ -\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\ -\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\ -\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\ -\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ -\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x2d\x36\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x31\x34\x36\ -\x2d\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ -\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x31\x34\x38\x2d\ -\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\ -\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ -\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x33\x37\x30\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ -\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x73\x74\x6f\x70\x33\x37\x30\x33\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ -\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\ -\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ -\x70\x33\x37\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ -\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\ -\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\ -\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\ -\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\ -\x34\x34\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\ -\x36\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ -\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\ -\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\ -\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\ -\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\ -\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\ -\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\ -\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\ -\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\ -\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x30\x38\x22\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x31\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\ -\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ -\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x31\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ -\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\ -\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ -\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\ -\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\ -\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\ -\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x38\ -\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\ -\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\ -\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\ -\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ -\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\ -\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\ -\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\ -\x2d\x30\x2d\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ -\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x73\x74\x6f\x70\x33\x38\x36\x36\x2d\x35\x2d\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x36\ -\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ -\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x38\x2d\x37\x2d\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ -\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ -\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ -\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\ -\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\ -\x37\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ -\x6f\x70\x33\x33\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ -\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x61\x61\x30\x30\x3b\x73\ -\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ -\x33\x33\x38\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ -\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ -\x6f\x6c\x6f\x72\x3a\x23\x66\x61\x66\x66\x32\x62\x3b\x73\x74\x6f\ -\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x33\x38\x36\x34\x2d\x30\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x36\x2d\x35\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ -\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ -\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x38\x2d\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ -\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ -\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\ -\x69\x76\x65\x33\x39\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\ -\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\ -\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\ -\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\ -\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\ -\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x35\x30\x34\x38\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ -\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\ -\x6c\x61\x63\x6b\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ -\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x30\x35\x30\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ -\x70\x35\x30\x35\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x35\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ -\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\x6c\x61\x63\x6b\x3b\x73\x74\ -\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ -\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\x6c\x61\x63\x6b\x3b\x73\ -\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x3b\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ -\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x73\x74\x6f\x70\x35\x30\x35\x32\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x33\x38\x34\x31\x2d\x30\x2d\x33\x22\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x34\x33\x2d\x31\x2d\ -\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ -\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ -\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x34\x35\x2d\ -\x30\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ -\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ -\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\ -\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ -\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x31\x31\x34\x2e\x35\ -\x36\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\ -\x32\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x72\x3d\x22\x35\x2e\x32\x35\x36\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x63\x79\x3d\x22\x31\x31\x34\x2e\x35\x36\x38\x34\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x30\x2e\x38\ -\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x61\x69\x67\x72\x64\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x36\x36\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ -\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x46\x30\x46\x30\x46\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ -\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x36\x38\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ -\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x39\x61\x39\x61\x39\x61\ -\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\ -\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\ -\x30\x30\x30\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\ -\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\ -\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\ -\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\ -\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x66\x79\x3d\x22\x36\x34\x2e\x35\x36\x37\x39\x30\x32\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\ -\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x35\ -\x2e\x32\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\ -\x22\x36\x34\x2e\x35\x36\x37\x39\x30\x32\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x63\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\x30\x39\x39\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x61\x69\x67\ -\x72\x64\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ -\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ -\x74\x6f\x70\x31\x35\x35\x37\x33\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ -\x6f\x6c\x6f\x72\x3a\x23\x46\x30\x46\x30\x46\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ -\x6f\x70\x31\x35\x35\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ -\x6c\x6f\x72\x3a\x23\x39\x61\x39\x61\x39\x61\x3b\x73\x74\x6f\x70\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\ -\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ -\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x61\x64\x69\x61\x6c\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\ -\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x31\x35\x36\x36\x32\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\ -\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\ -\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\ -\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x73\x74\x6f\x70\x31\x35\x36\x36\x34\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ -\x6f\x6c\x6f\x72\x3a\x23\x66\x38\x66\x38\x66\x38\x3b\x73\x74\x6f\ -\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\ -\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ -\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ -\x74\x6f\x70\x31\x35\x36\x36\x36\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\ -\x22\x38\x36\x2e\x37\x30\x38\x34\x35\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x66\x79\x3d\x22\x33\x35\x2e\x37\x33\x36\x39\x31\x36\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x33\x33\x2e\x39\ -\x36\x36\x36\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\ -\x3d\x22\x33\x35\x2e\x37\x33\x36\x39\x31\x36\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x63\x78\x3d\x22\x33\x33\x2e\x39\x36\x36\x36\x37\ -\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\ -\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\ -\x72\x69\x78\x28\x30\x2e\x39\x36\x30\x34\x39\x32\x39\x37\x2c\x30\ -\x2c\x30\x2c\x31\x2e\x30\x34\x31\x31\x33\x32\x2c\x2d\x35\x32\x2e\ -\x31\x34\x34\x32\x34\x39\x2c\x2d\x37\x30\x32\x2e\x33\x33\x31\x35\ -\x38\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ -\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\ -\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x34\x34\x35\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x35\x39\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x32\x35\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ -\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\ -\x61\x66\x61\x66\x61\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ -\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\x36\x30\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x62\x62\x62\x62\ -\x62\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\ -\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\x36\x31\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\ -\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x72\x3d\x22\x33\x37\x2e\x37\x35\x31\x37\x31\x33\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x33\x2e\x37\x35\x36\ -\x31\x32\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\ -\x22\x38\x2e\x38\x32\x34\x34\x31\x39\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x63\x79\x3d\x22\x33\x2e\x37\x35\x36\x31\x32\x38\x35\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x38\x2e\x38\x32\ -\x34\x34\x31\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ -\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ -\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x36\x38\x32\x37\x32\x39\ -\x37\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x33\x32\x37\x36\x37\x2c\x2d\ -\x34\x38\x2e\x37\x39\x30\x36\x39\x39\x2c\x2d\x37\x30\x31\x2e\x36\ -\x38\x35\x31\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ -\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\ -\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x34\x34\x35\x34\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\ -\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x36\ -\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\ -\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x32\x36\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ -\x3a\x23\x61\x33\x61\x33\x61\x33\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ -\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\ -\x37\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ -\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x34\ -\x63\x34\x63\x34\x63\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ -\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\x37\x31\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\ -\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ -\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x34\x39\x34\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\ -\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\ -\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\ -\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\ -\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ -\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ -\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ -\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x30\x39\x35\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\ -\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x35\x62\x66\x66\x3b\x73\x74\ -\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x73\x74\x6f\x70\x34\x30\x39\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ -\x6c\x6f\x72\x3a\x23\x63\x31\x65\x33\x66\x37\x3b\x73\x74\x6f\x70\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ -\x6f\x70\x34\x30\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ -\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\ -\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ -\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\ -\x65\x35\x30\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\ -\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\ -\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ -\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\ -\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\ -\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ -\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\ -\x76\x65\x35\x30\x37\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\ -\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\ -\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\ -\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\ -\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\ -\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\ -\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ -\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\x34\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\ -\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\x35\x33\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x33\x39\x34\x2e\x31\x35\ -\x37\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\ -\x31\x38\x35\x2e\x31\x33\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x78\x32\x3d\x22\x34\x33\x34\x2e\x37\x33\x39\x34\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x31\x34\x30\x2e\x32\ -\x32\x37\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ -\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\ -\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\ -\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\ -\x34\x32\x33\x31\x38\x32\x36\x2c\x30\x2c\x30\x2c\x30\x2e\x39\x34\ -\x32\x33\x31\x38\x32\x36\x2c\x32\x33\x2e\x37\x32\x37\x35\x34\x39\ -\x2c\x38\x2e\x38\x32\x36\x32\x35\x33\x36\x29\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ -\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\x34\ -\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x32\x65\x38\x32\ -\x30\x37\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ -\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x32\x34\x39\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ -\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x35\x32\x66\x66\x30\x30\ -\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ -\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x73\x74\x6f\x70\x34\x32\x35\x31\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\ -\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x79\x32\x3d\x22\x31\x34\x30\x2e\x32\x32\x37\x33\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x34\x33\x34\x2e\x37\ -\x33\x39\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\ -\x22\x31\x38\x35\x2e\x31\x33\x30\x34\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x78\x31\x3d\x22\x33\x39\x34\x2e\x31\x35\x37\x38\x34\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\ -\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ -\x78\x28\x30\x2e\x39\x34\x32\x33\x31\x38\x32\x36\x2c\x30\x2c\x30\ -\x2c\x30\x2e\x39\x34\x32\x33\x31\x38\x32\x36\x2c\x32\x33\x2e\x37\ -\x32\x37\x35\x34\x39\x2c\x38\x2e\x38\x32\x36\x32\x35\x33\x36\x29\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\ -\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\ -\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x35\x30\x38\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\ -\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\ -\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\x34\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\ -\x69\x76\x65\x35\x31\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\ -\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\ -\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\ -\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\ -\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\ -\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\ -\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x64\x65\x66\x73\x3e\x0a\x20\x20\ -\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\ -\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\ -\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\ -\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\ -\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\ -\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\ -\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\ -\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\ -\x22\x35\x2e\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x32\x2e\x38\x31\x38\x31\x38\ -\x31\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x79\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\ -\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\ -\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\ -\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\ -\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\ -\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x37\x30\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\ -\x22\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x2d\x38\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\ -\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\ -\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\ -\x64\x61\x74\x61\x33\x36\x31\x37\x22\x3e\x0a\x20\x20\x20\x20\x3c\ -\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ -\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\ -\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\ -\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\ -\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\ -\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\ -\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\ -\x6c\x65\x3e\x3c\x2f\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\ -\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\ -\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\ -\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\ -\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\ -\x3e\x0a\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x74\x72\x61\x6e\x73\ -\x6c\x61\x74\x65\x28\x2d\x32\x35\x39\x2e\x38\x35\x32\x30\x37\x2c\ -\x2d\x31\x33\x32\x2e\x37\x38\x33\x34\x39\x29\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x34\x36\x37\x30\x22\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x37\x39\x2e\x35\x37\x31\x34\ -\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x32\ -\x38\x30\x2e\x37\x31\x34\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x39\x2e\x32\x37\x39\ -\x32\x32\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\ -\x69\x64\x74\x68\x3d\x22\x32\x34\x2e\x36\x38\x38\x33\x31\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\ -\x63\x74\x34\x32\x35\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\ -\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x23\x66\x66\x66\x66\ -\x66\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\ -\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\ -\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ -\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ -\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\ -\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\ -\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\ -\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\ -\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\ -\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\ -\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\ -\x6d\x75\x6c\x61\x74\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x72\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x72\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x79\x3d\x22\x31\x35\x31\x2e\x35\x37\x31\x34\x34\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x32\x38\x30\x2e\x37\x31\ -\x34\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x68\x65\ -\x69\x67\x68\x74\x3d\x22\x39\x2e\x36\x34\x32\x38\x35\x37\x36\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x32\x34\x2e\x36\x38\x38\x33\x31\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x34\x32\x35\ -\x38\x2d\x31\x2d\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\ -\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x34\x32\x66\ -\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\ -\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\ -\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\ -\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ -\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ -\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\x72\ -\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\ -\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\ -\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\ -\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\ -\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\ -\x75\x6c\x61\x74\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ -\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ -\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\ -\x3d\x22\x31\x36\x35\x2e\x33\x38\x39\x36\x32\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x32\x38\x35\x2e\x38\x30\x35\ -\x32\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\ -\x67\x68\x74\x3d\x22\x39\x2e\x36\x34\x32\x38\x35\x37\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\ -\x32\x34\x2e\x33\x32\x34\x36\x37\x35\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x34\x32\x35\x38\ -\x2d\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\ -\x30\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x34\x32\x66\x66\x3b\x66\ -\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\ -\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\ -\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\ -\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ -\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ -\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ -\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\ -\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\ -\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\ -\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\ -\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\ -\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\ -\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\ -\x74\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x72\x65\ -\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\ -\x33\x37\x2e\x35\x37\x31\x34\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x78\x3d\x22\x32\x36\x36\x2e\x37\x31\x34\x32\x39\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\ -\x3d\x22\x39\x2e\x36\x34\x32\x38\x35\x37\x36\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x32\x2e\ -\x31\x34\x32\x38\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x34\x32\x35\x38\x2d\x31\x2d\ -\x37\x2d\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\ -\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\ -\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\ -\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\ -\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\ -\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ -\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ -\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\ -\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\ -\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\ -\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\ -\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\ -\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\ -\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\ -\x61\x74\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\ -\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ -\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\ -\x22\x63\x63\x63\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x61\x74\x68\x35\x30\x39\x38\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x37\x31\x2e\x30\ -\x37\x31\x34\x33\x2c\x32\x30\x37\x2e\x34\x32\x38\x35\x37\x20\x30\ -\x2c\x33\x37\x2e\x31\x34\x32\x38\x36\x20\x39\x2e\x32\x38\x35\x37\ -\x31\x2c\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\ -\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ -\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ -\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\ -\x73\x66\x6f\x72\x6d\x3d\x22\x74\x72\x61\x6e\x73\x6c\x61\x74\x65\ -\x28\x30\x2c\x2d\x36\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x74\x72\x61\x6e\ -\x73\x6c\x61\x74\x65\x28\x30\x2c\x2d\x36\x30\x29\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x35\ -\x31\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ -\x22\x6d\x20\x32\x38\x30\x2e\x38\x39\x32\x38\x36\x2c\x32\x31\x36\ -\x2e\x37\x31\x34\x32\x39\x20\x2d\x39\x2e\x36\x34\x32\x38\x36\x2c\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ -\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\ -\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ -\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ -\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3a\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\ -\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ -\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x37\x35\x2e\ -\x36\x31\x36\x38\x38\x2c\x31\x35\x36\x2e\x31\x35\x35\x38\x34\x20\ -\x30\x2c\x31\x34\x2e\x32\x33\x33\x37\x37\x20\x39\x2e\x32\x38\x35\ -\x37\x31\x2c\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x61\x74\x68\x33\x30\x35\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\ -\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x63\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\ -\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ -\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\ -\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3a\x31\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ -\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x73\x74\x61\x72\x74\x3a\x75\ -\x72\x6c\x28\x23\x41\x72\x72\x6f\x77\x31\x4d\x73\x74\x61\x72\x74\ -\x29\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x65\x6e\x64\x3a\x75\x72\x6c\ -\x28\x23\x41\x72\x72\x6f\x77\x31\x4d\x65\x6e\x64\x29\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x35\x32\x2e\x33\x36\ -\x33\x36\x33\x36\x2c\x32\x34\x20\x63\x20\x37\x2e\x31\x39\x38\x35\ -\x32\x39\x2c\x30\x2e\x34\x32\x30\x35\x30\x32\x20\x38\x2e\x36\x36\ -\x38\x34\x35\x33\x2c\x2d\x31\x2e\x38\x38\x36\x36\x36\x33\x20\x38\ -\x2e\x37\x32\x37\x32\x37\x33\x2c\x36\x2e\x31\x38\x31\x38\x31\x38\ -\x20\x30\x2e\x30\x35\x38\x38\x32\x2c\x38\x2e\x30\x36\x38\x34\x38\ -\x31\x20\x2d\x30\x2e\x38\x30\x31\x32\x30\x34\x2c\x36\x2e\x38\x37\ -\x32\x37\x33\x38\x20\x2d\x37\x2e\x38\x31\x38\x31\x38\x32\x2c\x36\ -\x2e\x37\x32\x37\x32\x37\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x32\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ -\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\ -\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ -\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\ -\x22\x63\x7a\x63\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\ -\x3c\x2f\x73\x76\x67\x3e\x0a\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x01\xa0\x00\x00\x00\xb0\x00\x00\x0f\x9e\x00\x00\x07\x3d\ +\x00\x00\x0f\x13\x00\x39\xdf\x33\x00\x00\x01\x92\x00\x72\x97\x49\ +\x00\x00\x0f\x4e\x01\x0c\x64\xae\x00\x00\x10\x0e\x01\x38\xb0\x83\ +\x00\x00\x11\x86\x01\x40\x42\x85\x00\x00\x0a\xfd\x02\x1f\xd9\x48\ +\x00\x00\x03\xde\x02\x7b\x37\xc4\x00\x00\x14\x6d\x02\xbc\x05\x8e\ +\x00\x00\x0c\xa9\x02\xbe\x05\x8e\x00\x00\x00\xbf\x03\x8c\x88\xc1\ +\x00\x00\x0d\x49\x05\x08\x5c\x93\x00\x00\x03\x01\x05\x16\xa3\x95\ +\x00\x00\x13\x05\x05\x66\x9a\x34\x00\x00\x07\xd9\x05\x98\x15\x8e\ +\x00\x00\x0c\xfc\x05\xcc\x9a\xd9\x00\x00\x0c\x59\x05\xe4\x1f\xa9\ +\x00\x00\x10\x70\x05\xfb\x21\x0b\x00\x00\x06\x4b\x06\xe4\x0a\x14\ +\x00\x00\x17\xff\x06\xee\xa0\xc5\x00\x00\x09\xe5\x07\x5d\xec\x93\ +\x00\x00\x12\xa6\x07\x5d\xee\x93\x00\x00\x12\x47\x07\xda\x68\xe7\ +\x00\x00\x0b\x74\x07\xe4\xd0\x65\x00\x00\x0d\x93\x08\x10\xb3\x89\ +\x00\x00\x05\x3f\x08\x37\x4e\x99\x00\x00\x15\x16\x08\x4d\xc0\x2e\ +\x00\x00\x19\x6e\x08\x5d\x45\x73\x00\x00\x01\x12\x08\xa5\x45\x08\ +\x00\x00\x05\xef\x08\xca\x52\x4b\x00\x00\x14\xe1\x08\xca\x72\x4b\ +\x00\x00\x0f\xd6\x08\xe2\x7f\xe5\x00\x00\x13\xc3\x09\x2b\x77\x54\ +\x00\x00\x17\xb8\x09\xc0\x82\xb5\x00\x00\x06\xa7\x0a\x22\x8d\xb2\ +\x00\x00\x00\x00\x0a\x2b\x47\x64\x00\x00\x0e\x90\x0a\x96\xcd\x84\ +\x00\x00\x0e\x07\x0a\xd3\x55\x94\x00\x00\x07\x77\x0a\xf8\x55\x94\ +\x00\x00\x07\x15\x0b\x61\x1d\x4e\x00\x00\x16\x13\x0d\x2c\x1d\x28\ +\x00\x00\x04\x37\x0d\xaa\x21\x43\x00\x00\x13\x73\x0d\xdc\x00\x68\ +\x00\x00\x04\xe0\x0e\x02\x4e\xea\x00\x00\x19\x09\x0e\x75\xf9\x03\ +\x00\x00\x0a\x86\x0e\x80\x99\x15\x00\x00\x15\xba\x0e\xc6\x00\x19\ +\x00\x00\x0c\x00\x0e\xcc\x78\xf1\x00\x00\x04\x87\x0f\x18\x51\xc5\ +\x00\x00\x11\xc7\x0f\x68\xe5\xc7\x00\x00\x01\xf7\x0f\xd3\x1f\xf3\ +\x00\x00\x16\x93\x69\x00\x00\x19\xc7\x03\x00\x00\x00\x5c\x00\x44\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x3a\x00\x20\x00\x52\x00\x65\ +\x00\x67\x00\x69\x00\x73\x00\x74\x00\x65\x00\x72\x00\x20\x00\x66\ +\x00\x69\x00\x6c\x00\x65\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x74\x00\x6f\ +\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2e\x44\x65\x62\x75\x67\x3a\x20\x52\x65\x67\x69\x73\ +\x74\x65\x72\x20\x66\x69\x6c\x65\x74\x79\x70\x65\x20\x74\x6f\x20\ +\x70\x72\x6f\x74\x6f\x74\x79\x70\x65\x20\x69\x6d\x70\x6f\x72\x74\ +\x65\x72\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x44\x00\ +\x65\x00\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x44\x65\x66\x6c\x65\ +\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x32\ +\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x53\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x47\x65\x6e\x65\ +\x72\x61\x6c\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x20\ +\x00\x4f\x00\x62\x00\x65\x00\x63\x00\x6e\x00\xe1\x00\x20\x00\x6e\ +\x00\x61\x00\x73\x00\x74\x00\x61\x00\x76\x00\x65\x00\x6e\x00\xed\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\ +\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x8e\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\ +\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x46\x00\ +\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x00\x73\x00\x20\x00\ +\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x63\x00\x6c\x00\x61\x00\ +\x69\x00\x6d\x00\x20\x00\x74\x00\x68\x00\x69\x00\x65\x00\x72\x00\ +\x20\x00\x63\x00\x68\x00\x69\x00\x6c\x00\x64\x00\x72\x00\x65\x00\ +\x6e\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x74\x00\x72\x00\x65\x00\x65\x00\x20\x00\x76\x00\x69\x00\ +\x65\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x47\x49\x66\x20\ +\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\ +\x20\x46\x65\x61\x74\x75\x72\x65\x73\x20\x77\x69\x6c\x6c\x20\x63\ +\x6c\x61\x69\x6d\x20\x74\x68\x69\x65\x72\x20\x63\x68\x69\x6c\x64\ +\x72\x65\x6e\x20\x69\x6e\x20\x74\x68\x65\x20\x74\x72\x65\x65\x20\ +\x76\x69\x65\x77\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x70\x00\ +\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\ +\x65\x00\x64\x00\x2c\x00\x20\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\ +\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\x78\x00\x20\x00\x4f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x77\x00\x69\x00\ +\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x50\x00\x61\x00\ +\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x63\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x38\x49\x66\x20\x74\x68\x69\x73\ +\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x4d\x75\x6c\ +\x74\x6d\x61\x74\x72\x69\x78\x20\x4f\x62\x6a\x65\x63\x74\x20\x77\ +\x69\x6c\x6c\x20\x62\x65\x20\x50\x61\x72\x61\x6d\x65\x74\x72\x69\ +\x63\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x4c\x00\x6f\ +\x00\x63\x00\x61\x00\x6c\x00\x20\x00\x4c\x00\x65\x00\x6e\x00\x67\ +\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x4c\x6f\ +\x63\x61\x6c\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x12\x00\x4d\x00\x61\x00\x78\x00\x4c\x00\x65\x00\ +\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x09\x4d\x61\x78\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x18\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\ +\x75\x00\x6d\x00\x20\x00\x41\x00\x72\x00\x65\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0c\x4d\x61\x78\x69\x6d\x75\x6d\x20\x41\ +\x72\x65\x61\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1c\x00\x4d\ +\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x4c\ +\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0e\x4d\x61\x78\x69\x6d\x75\x6d\x20\x4c\x65\x6e\x67\ +\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x52\x00\x4d\x00\ +\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x6e\x00\ +\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\ +\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x66\x00\ +\x6f\x00\x72\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\ +\x6f\x00\x6e\x00\x73\x00\x20\x00\x28\x00\x66\x00\x6e\x00\x29\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x29\x4d\x61\x78\x69\x6d\x75\x6d\ +\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\ +\x20\x66\x6f\x72\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x73\x20\x28\x66\ +\x6e\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1a\x00\x4d\x00\ +\x61\x00\x78\x00\x69\x00\x75\x00\x6d\x00\x20\x00\x4c\x00\x65\x00\ +\x6e\x00\x67\x00\x74\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0d\x4d\x61\x78\x69\x75\x6d\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x1a\x00\x4d\x00\x65\x00\x73\x00\ +\x68\x00\x20\x00\x66\x00\x61\x00\x6c\x00\x6c\x00\x62\x00\x61\x00\ +\x63\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x65\x73\ +\x68\x20\x66\x61\x6c\x6c\x62\x61\x63\x6b\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x26\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\ +\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x78\x00\x65\x00\x63\x00\ +\x75\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x13\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\ +\x65\x63\x75\x74\x61\x62\x6c\x65\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x1e\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\ +\x41\x00\x44\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x20\x65\x78\x70\x6f\x72\x74\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x1e\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\ +\x43\x00\x41\x00\x44\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x20\x69\x6d\x70\x6f\x72\x74\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x01\x3a\x00\x54\x00\x68\x00\x65\x00\x20\x00\ +\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\ +\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\x72\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\ +\x79\x00\x67\x00\x6f\x00\x6e\x00\x2c\x00\x20\x00\x70\x00\x72\x00\ +\x69\x00\x73\x00\x6d\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x66\x00\ +\x72\x00\x75\x00\x73\x00\x74\x00\x75\x00\x6d\x00\x2e\x00\x20\x00\ +\x49\x00\x66\x00\x20\x00\x66\x00\x6e\x00\x20\x00\x69\x00\x73\x00\ +\x20\x00\x67\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x72\x00\ +\x20\x00\x74\x00\x68\x00\x61\x00\x6e\x00\x20\x00\x74\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x75\x00\x65\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\ +\x6f\x00\x6e\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\x65\x00\ +\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x65\x00\x20\x00\ +\x61\x00\x20\x00\x63\x00\x69\x00\x72\x00\x63\x00\x75\x00\x6c\x00\ +\x61\x00\x72\x00\x2e\x00\x20\x00\x53\x00\x65\x00\x74\x00\x20\x00\ +\x74\x00\x6f\x00\x20\x00\x30\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x20\x00\x6e\x00\x6f\x00\x20\x00\x6c\x00\x69\x00\x6d\x00\x69\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x9d\x54\x68\x65\x20\x6d\ +\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\ +\x20\x66\x61\x63\x65\x73\x20\x6f\x66\x20\x61\x20\x70\x6f\x6c\x79\ +\x67\x6f\x6e\x2c\x20\x70\x72\x69\x73\x6d\x20\x6f\x72\x20\x66\x72\ +\x75\x73\x74\x75\x6d\x2e\x20\x49\x66\x20\x66\x6e\x20\x69\x73\x20\ +\x67\x72\x65\x61\x74\x65\x72\x20\x74\x68\x61\x6e\x20\x74\x68\x69\ +\x73\x20\x76\x61\x6c\x75\x65\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x69\x73\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\ +\x20\x74\x6f\x20\x62\x65\x20\x61\x20\x63\x69\x72\x63\x75\x6c\x61\ +\x72\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\x30\x20\x66\x6f\x72\x20\ +\x6e\x6f\x20\x6c\x69\x6d\x69\x74\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x48\x00\x54\x00\x68\x00\x65\x00\x20\x00\x70\x00\x61\x00\ +\x74\x00\x68\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\ +\x41\x00\x44\x00\x20\x00\x65\x00\x78\x00\x65\x00\x63\x00\x75\x00\ +\x74\x00\x65\x00\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x24\x54\x68\x65\x20\x70\x61\x74\x68\x20\x74\x6f\ +\x20\x74\x68\x65\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\ +\x65\x63\x75\x74\x65\x61\x62\x6c\x65\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x2c\x00\x54\x00\x72\x00\x69\x00\x61\x00\x6e\x00\x67\ +\x00\x75\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\ +\x00\x73\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x54\x72\x69\x61\x6e\x67\ +\x75\x6c\x61\x74\x69\x6f\x6e\x20\x73\x65\x74\x74\x69\x6e\x67\x73\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x55\x00\x73\x00\ +\x65\x00\x20\x00\x4d\x00\x75\x00\x6c\x00\x74\x00\x6d\x00\x61\x00\ +\x74\x00\x72\x00\x69\x00\x78\x00\x20\x00\x46\x00\x65\x00\x61\x00\ +\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x16\x55\x73\x65\x20\x4d\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\ +\x46\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x3a\x00\x55\x00\x73\x00\x65\x00\x20\x00\x56\x00\x69\x00\x65\ +\x00\x77\x00\x50\x00\x72\x00\x6f\x00\x76\x00\x69\x00\x64\x00\x65\ +\x00\x72\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x54\x00\x72\x00\x65\ +\x00\x65\x00\x20\x00\x56\x00\x69\x00\x65\x00\x77\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1d\x55\x73\x65\x20\x56\x69\x65\x77\x50\x72\ +\x6f\x76\x69\x64\x65\x72\x20\x69\x6e\x20\x54\x72\x65\x65\x20\x56\ +\x69\x65\x77\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x61\ +\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x28\ +\x00\x66\x00\x61\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x61\x6e\x67\x75\x6c\x61\x72\x20\x28\x66\x61\x29\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x12\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\ +\x65\x00\x78\x00\x69\x00\x74\x00\x79\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x63\x6f\x6e\x76\x65\x78\x69\x74\x79\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x14\x00\x64\x00\x65\x00\x66\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0a\x64\x65\x66\x6c\x65\x63\x74\x69\x6f\x6e\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x10\x00\x6c\x00\x6f\x00\x63\ +\x00\x61\x00\x6c\x00\x4c\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x08\x6c\x6f\x63\x61\x6c\x4c\x65\x6e\x07\x00\x00\x00\ +\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x0e\x00\x6d\x00\x61\x00\x78\x00\x41\x00\ +\x72\x00\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x6d\ +\x61\x78\x41\x72\x65\x61\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x2a\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\ +\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x15\x6d\x61\x78\x69\x6d\x75\x6d\x20\x66\x72\x61\ +\x67\x6d\x65\x6e\x74\x20\x73\x69\x7a\x65\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x38\x00\x6d\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\ +\x75\x00\x6d\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\ +\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x20\x00\x66\x00\ +\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1c\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x61\ +\x6e\x67\x6c\x65\x20\x66\x6f\x72\x20\x61\x20\x66\x72\x61\x67\x6d\ +\x65\x6e\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x34\x00\x6d\ +\x00\x69\x00\x6e\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x73\ +\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\ +\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x6d\x69\x6e\x69\ +\x6d\x75\x6d\x20\x73\x69\x7a\x65\x20\x6f\x66\x20\x61\x20\x66\x72\ +\x61\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x04\x00\x6d\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x6d\ +\x6d\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\x73\x00\x69\ +\x00\x7a\x00\x65\x00\x20\x00\x28\x00\x66\x00\x73\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x73\x69\x7a\x65\x20\x28\x66\x73\ +\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x02\x00\xb0\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x01\xb0\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x12\x00\x20\x00\x50\x00\x72\x00\x65\x00\x73\x00\x73\ +\x00\x20\x00\x4f\x00\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x20\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\x00\x00\x00\x08\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2e\x00\x41\x00\x64\ +\x00\x64\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\ +\x00\x41\x00\x44\x00\x20\x00\x45\x00\x6c\x00\x65\x00\x6d\x00\x65\ +\x00\x6e\x00\x74\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x17\x41\x64\x64\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x20\x45\x6c\x65\x6d\x65\x6e\x74\x2e\x2e\x2e\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\xa6\x00\x41\ +\x00\x64\x00\x64\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x4f\x00\x70\ +\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\ +\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x62\ +\x00\x79\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x69\ +\x00\x6e\x00\x67\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\ +\x00\x43\x00\x41\x00\x44\x00\x20\x00\x63\x00\x6f\x00\x64\x00\x65\ +\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x65\x00\x78\x00\x65\ +\x00\x63\x00\x75\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\ +\x00\x43\x00\x41\x00\x44\x00\x20\x00\x62\x00\x69\x00\x6e\x00\x61\ +\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\x41\x64\ +\x64\x20\x61\x6e\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x6c\ +\x65\x6d\x65\x6e\x74\x20\x62\x79\x20\x65\x6e\x74\x65\x72\x69\x6e\ +\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x63\x6f\x64\x65\x20\ +\x61\x6e\x64\x20\x65\x78\x65\x63\x75\x74\x69\x6e\x67\x20\x74\x68\ +\x65\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x62\x69\x6e\x61\x72\ +\x79\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x18\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\ +\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x43\x6f\x6c\x6f\x72\x20\x53\x68\x61\x70\ +\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x42\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ +\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x73\x00\x20\x00\ +\x62\x00\x79\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x64\x00\ +\x69\x00\x74\x00\x79\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\ +\x74\x00\x79\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x21\x43\x6f\x6c\x6f\x72\x20\x53\x68\x61\x70\x65\x73\x20\x62\x79\ +\x20\x76\x61\x6c\x69\x64\x69\x74\x79\x20\x61\x6e\x64\x20\x74\x79\ +\x70\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x2c\x00\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\ +\x72\x00\x74\x00\x20\x00\x45\x00\x64\x00\x67\x00\x65\x00\x73\x00\ +\x20\x00\x54\x00\x6f\x00\x20\x00\x46\x00\x61\x00\x63\x00\x65\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\x6f\x6e\x76\x65\ +\x72\x74\x20\x45\x64\x67\x65\x73\x20\x54\x6f\x20\x46\x61\x63\x65\ +\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x2c\x00\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\ +\x00\x74\x00\x20\x00\x45\x00\x64\x00\x67\x00\x65\x00\x73\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x46\x00\x61\x00\x63\x00\x65\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\ +\x74\x20\x45\x64\x67\x65\x73\x20\x74\x6f\x20\x46\x61\x63\x65\x73\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x36\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\ +\x20\x00\x52\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x20\x00\ +\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x46\x00\x65\x00\ +\x61\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1b\x43\x72\x65\x61\x74\x65\x20\x52\x65\x66\x69\x6e\x65\ +\x20\x53\x68\x61\x70\x65\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x22\x00\x45\x00\x78\x00\x70\x00\x61\x00\x6e\x00\x64\x00\x20\x00\ +\x50\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x45\x78\x70\ +\x61\x6e\x64\x20\x50\x6c\x61\x63\x65\x6d\x65\x6e\x74\x73\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x5e\x00\x45\x00\x78\x00\x70\x00\x61\x00\x6e\x00\x64\x00\x20\x00\ +\x61\x00\x6c\x00\x6c\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x63\x00\ +\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x64\x00\ +\x6f\x00\x77\x00\x6e\x00\x77\x00\x61\x00\x72\x00\x64\x00\x73\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\x00\ +\x74\x00\x75\x00\x72\x00\x65\x00\x54\x00\x72\x00\x65\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x45\x78\x70\x61\x6e\x64\x20\ +\x61\x6c\x6c\x20\x70\x6c\x61\x63\x65\x6d\x65\x6e\x74\x73\x20\x64\ +\x6f\x77\x6e\x77\x61\x72\x64\x73\x20\x74\x68\x65\x20\x46\x65\x61\ +\x74\x75\x72\x65\x54\x72\x65\x65\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3a\x00\x50\x00\x6c\x00\ +\x65\x00\x61\x00\x73\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x20\x00\x33\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x66\x00\x69\x00\ +\x72\x00\x73\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x50\ +\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\x20\x33\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x20\x66\x69\x72\x73\x74\x07\x00\x00\x00\ +\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x10\x00\ +\x50\x00\x72\x00\x65\x00\x73\x00\x73\x00\x20\x00\x4f\x00\x4b\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x50\x72\x65\x73\x73\x20\x4f\ +\x4b\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x5a\x00\x50\x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x4e\x00\x6f\x00\x74\ +\x00\x20\x00\x79\x00\x65\x00\x74\x00\x20\x00\x43\x00\x6f\x00\x64\ +\x00\x65\x00\x64\x00\x20\x00\x77\x00\x61\x00\x69\x00\x74\x00\x69\ +\x00\x6e\x00\x67\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x50\ +\x00\x65\x00\x74\x00\x65\x00\x72\x00\x20\x00\x4c\x00\x69\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x2d\x50\x72\x6f\x6a\x65\x63\x74\x69\ +\x6f\x6e\x20\x4e\x6f\x74\x20\x79\x65\x74\x20\x43\x6f\x64\x65\x64\ +\x20\x77\x61\x69\x74\x69\x6e\x67\x20\x66\x6f\x72\x20\x50\x65\x74\ +\x65\x72\x20\x4c\x69\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\ +\x41\x44\x01\x03\x00\x00\x00\x28\x00\x52\x00\x65\x00\x66\x00\x69\ +\x00\x6e\x00\x65\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\ +\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x52\x65\x66\x69\x6e\x65\ +\x20\x53\x68\x61\x70\x65\x20\x46\x65\x61\x74\x75\x72\x65\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x42\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x20\x00\ +\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ +\x61\x00\x6e\x00\x64\x00\x20\x00\x74\x00\x68\x00\x65\x00\x69\x00\ +\x72\x00\x20\x00\x43\x00\x68\x00\x69\x00\x6c\x00\x64\x00\x72\x00\ +\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x52\x65\x6d\ +\x6f\x76\x65\x20\x4f\x62\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\ +\x74\x68\x65\x69\x72\x20\x43\x68\x69\x6c\x64\x72\x65\x6e\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\xb0\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x73\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6e\x00\ +\x64\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x63\x00\x68\x00\ +\x69\x00\x6c\x00\x64\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x74\x00\ +\x68\x00\x61\x00\x74\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\ +\x6e\x00\x6f\x00\x74\x00\x20\x00\x72\x00\x65\x00\x66\x00\x65\x00\ +\x72\x00\x65\x00\x6e\x00\x63\x00\x65\x00\x64\x00\x20\x00\x66\x00\ +\x72\x00\x6f\x00\x6d\x00\x20\x00\x6f\x00\x74\x00\x68\x00\x65\x00\ +\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x58\x52\x65\x6d\x6f\x76\ +\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\x61\x6c\x6c\x20\ +\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\x74\x68\x61\x74\x20\x61\x72\ +\x65\x20\x6e\x6f\x74\x20\x72\x65\x66\x65\x72\x65\x6e\x63\x65\x64\ +\x20\x66\x72\x6f\x6d\x20\x6f\x74\x68\x65\x72\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x1c\x00\x52\x00\x65\x00\x70\x00\x6c\x00\x61\ +\x00\x63\x00\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x52\x65\x70\x6c\ +\x61\x63\x65\x20\x4f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x9e\x00\x52\x00\ +\x65\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x20\x00\x61\x00\ +\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x69\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\ +\x54\x00\x72\x00\x65\x00\x65\x00\x2e\x00\x20\x00\x50\x00\x6c\x00\ +\x65\x00\x61\x00\x73\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x20\x00\x6f\x00\x6c\x00\x64\x00\x2c\x00\ +\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\x61\x00\x6e\x00\x64\x00\ +\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x4f\x52\x65\x70\x6c\x61\x63\x65\x20\x61\x6e\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x20\x74\x68\x65\x20\x46\x65\ +\x61\x74\x75\x72\x65\x20\x54\x72\x65\x65\x2e\x20\x50\x6c\x65\x61\ +\x73\x65\x20\x73\x65\x6c\x65\x63\x74\x20\x6f\x6c\x64\x2c\x20\x6e\ +\x65\x77\x20\x61\x6e\x64\x20\x70\x61\x72\x65\x6e\x74\x20\x6f\x62\ +\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x30\x00\x52\x00\x75\x00\x6e\x00\x6e\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\ +\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x66\x00\x61\x00\x69\x00\ +\x6c\x00\x65\x00\x64\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x18\x52\x75\x6e\x6e\x69\x6e\x67\x20\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x20\x66\x61\x69\x6c\x65\x64\x0a\x07\x00\x00\x00\x08\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x28\x00\x55\x00\x6e\ +\x00\x73\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\ +\x00\x64\x00\x20\x00\x46\x00\x75\x00\x6e\x00\x63\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x55\x6e\ +\x73\x75\x70\x70\x6f\x72\x74\x65\x64\x20\x46\x75\x6e\x63\x74\x69\ +\x6f\x6e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\ +\x00\x00\x1b\xe5\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x01\xa0\x00\x00\x00\xb0\x00\x00\x0f\x96\x00\x00\x07\x3d\ +\x00\x00\x0f\x0b\x00\x39\xdf\x33\x00\x00\x01\x8e\x00\x72\x97\x49\ +\x00\x00\x0f\x46\x01\x0c\x64\xae\x00\x00\x10\x1c\x01\x38\xb0\x83\ +\x00\x00\x11\x92\x01\x40\x42\x85\x00\x00\x0a\xf5\x02\x1f\xd9\x48\ +\x00\x00\x03\xd4\x02\x7b\x37\xc4\x00\x00\x14\x8f\x02\xbc\x05\x8e\ +\x00\x00\x0c\xa1\x02\xbe\x05\x8e\x00\x00\x00\xbf\x03\x8c\x88\xc1\ +\x00\x00\x0d\x41\x05\x08\x5c\x93\x00\x00\x02\xf7\x05\x16\xa3\x95\ +\x00\x00\x13\x27\x05\x66\x9a\x34\x00\x00\x07\xd1\x05\x98\x15\x8e\ +\x00\x00\x0c\xf4\x05\xcc\x9a\xd9\x00\x00\x0c\x51\x05\xe4\x1f\xa9\ +\x00\x00\x10\x7c\x05\xfb\x21\x0b\x00\x00\x06\x43\x06\xe4\x0a\x14\ +\x00\x00\x18\x63\x06\xee\xa0\xc5\x00\x00\x09\xdd\x07\x5d\xec\x93\ +\x00\x00\x12\xc0\x07\x5d\xee\x93\x00\x00\x12\x59\x07\xda\x68\xe7\ +\x00\x00\x0b\x6c\x07\xe4\xd0\x65\x00\x00\x0d\x8b\x08\x10\xb3\x89\ +\x00\x00\x05\x37\x08\x37\x4e\x99\x00\x00\x15\x54\x08\x4d\xc0\x2e\ +\x00\x00\x19\xd2\x08\x5d\x45\x73\x00\x00\x01\x12\x08\xa5\x45\x08\ +\x00\x00\x05\xe7\x08\xca\x52\x4b\x00\x00\x15\x09\x08\xca\x72\x4b\ +\x00\x00\x0f\xce\x08\xe2\x7f\xe5\x00\x00\x13\xe5\x09\x2b\x77\x54\ +\x00\x00\x18\x12\x09\xc0\x82\xb5\x00\x00\x06\x9f\x0a\x22\x8d\xb2\ +\x00\x00\x00\x00\x0a\x2b\x47\x64\x00\x00\x0e\x88\x0a\x96\xcd\x84\ +\x00\x00\x0d\xff\x0a\xd3\x55\x94\x00\x00\x07\x6f\x0a\xf8\x55\x94\ +\x00\x00\x07\x0d\x0b\x61\x1d\x4e\x00\x00\x16\x5b\x0d\x2c\x1d\x28\ +\x00\x00\x04\x2f\x0d\xaa\x21\x43\x00\x00\x13\x95\x0d\xdc\x00\x68\ +\x00\x00\x04\xd8\x0e\x02\x4e\xea\x00\x00\x19\x6d\x0e\x75\xf9\x03\ +\x00\x00\x0a\x7e\x0e\x80\x99\x15\x00\x00\x16\x02\x0e\xc6\x00\x19\ +\x00\x00\x0b\xf8\x0e\xcc\x78\xf1\x00\x00\x04\x7f\x0f\x18\x51\xc5\ +\x00\x00\x11\xd9\x0f\x68\xe5\xc7\x00\x00\x01\xed\x0f\xd3\x1f\xf3\ +\x00\x00\x16\xed\x69\x00\x00\x1a\x2b\x03\x00\x00\x00\x5c\x00\x44\ +\x00\x65\x00\x62\x00\x75\x00\x67\x00\x3a\x00\x20\x00\x52\x00\x65\ +\x00\x67\x00\x69\x00\x73\x00\x74\x00\x65\x00\x72\x00\x20\x00\x66\ +\x00\x69\x00\x6c\x00\x65\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x74\x00\x6f\ +\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2e\x44\x65\x62\x75\x67\x3a\x20\x52\x65\x67\x69\x73\ +\x74\x65\x72\x20\x66\x69\x6c\x65\x74\x79\x70\x65\x20\x74\x6f\x20\ +\x70\x72\x6f\x74\x6f\x74\x79\x70\x65\x20\x69\x6d\x70\x6f\x72\x74\ +\x65\x72\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\x44\x00\ +\x65\x00\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x44\x65\x66\x6c\x65\ +\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2e\ +\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x6c\x00\x20\x00\x4f\x00\x70\ +\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x61\ +\x00\x79\x00\x61\x00\x72\x00\x6c\x00\x61\x00\x72\x01\x31\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x19\x47\x65\x6e\x65\x72\x61\x6c\x20\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1a\x00\x47\x00\x65\ +\x00\x6e\x00\x65\x00\x6c\x00\x20\x00\x61\x00\x79\x00\x61\x00\x72\ +\x00\x6c\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x8e\x00\x49\x00\x66\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\ +\x20\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\ +\x2c\x00\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\ +\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\ +\x63\x00\x6c\x00\x61\x00\x69\x00\x6d\x00\x20\x00\x74\x00\x68\x00\ +\x69\x00\x65\x00\x72\x00\x20\x00\x63\x00\x68\x00\x69\x00\x6c\x00\ +\x64\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x74\x00\x72\x00\x65\x00\x65\x00\ +\x20\x00\x76\x00\x69\x00\x65\x00\x77\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x47\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\ +\x65\x63\x6b\x65\x64\x2c\x20\x46\x65\x61\x74\x75\x72\x65\x73\x20\ +\x77\x69\x6c\x6c\x20\x63\x6c\x61\x69\x6d\x20\x74\x68\x69\x65\x72\ +\x20\x63\x68\x69\x6c\x64\x72\x65\x6e\x20\x69\x6e\x20\x74\x68\x65\ +\x20\x74\x72\x65\x65\x20\x76\x69\x65\x77\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x70\x00\x49\x00\x66\x00\x20\x00\x74\x00\x68\x00\ +\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\ +\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x4d\x00\ +\x75\x00\x6c\x00\x74\x00\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\ +\x78\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\ +\x20\x00\x50\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\ +\x72\x00\x69\x00\x63\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x49\ +\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\ +\x64\x2c\x20\x4d\x75\x6c\x74\x6d\x61\x74\x72\x69\x78\x20\x4f\x62\ +\x6a\x65\x63\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x50\x61\x72\ +\x61\x6d\x65\x74\x72\x69\x63\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x1a\x00\x59\x00\x65\x00\x72\x00\x65\x00\x6c\x00\x20\x00\x75\ +\x00\x7a\x00\x75\x00\x6e\x00\x6c\x00\x75\x00\x6b\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0c\x4c\x6f\x63\x61\x6c\x20\x4c\x65\x6e\x67\ +\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\x4d\x00\ +\x61\x00\x78\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x4d\x61\x78\x4c\x65\x6e\x67\ +\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x18\x00\x4d\x00\ +\x61\x00\x78\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x41\x00\ +\x72\x00\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x4d\ +\x61\x78\x69\x6d\x75\x6d\x20\x41\x72\x65\x61\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x1c\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\ +\x00\x75\x00\x6d\x00\x20\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\ +\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x4d\x61\x78\x69\ +\x6d\x75\x6d\x20\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x52\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\ +\x75\x00\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\x65\x00\ +\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x66\x00\x61\x00\x63\x00\ +\x65\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x70\x00\ +\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\ +\x28\x00\x66\x00\x6e\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x29\x4d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\ +\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x66\x6f\x72\x20\x70\x6f\x6c\ +\x79\x67\x6f\x6e\x73\x20\x28\x66\x6e\x29\x07\x00\x00\x00\x20\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x1a\x00\x4d\x00\x61\x00\x78\x00\x69\x00\x75\x00\ +\x6d\x00\x20\x00\x4c\x00\x65\x00\x6e\x00\x67\x00\x74\x00\x68\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4d\x61\x78\x69\x75\x6d\x20\ +\x4c\x65\x6e\x67\x74\x68\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x1a\x00\x4d\x00\x65\x00\x73\x00\x68\x00\x20\x00\x66\x00\x61\x00\ +\x6c\x00\x6c\x00\x62\x00\x61\x00\x63\x00\x6b\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0d\x4d\x65\x73\x68\x20\x66\x61\x6c\x6c\x62\x61\ +\x63\x6b\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x26\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\ +\x65\x00\x78\x00\x65\x00\x63\x00\x75\x00\x74\x00\x61\x00\x62\x00\ +\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1e\x00\x4f\x00\x70\x00\ +\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\ +\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x78\x70\x6f\ +\x72\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1e\x00\x4f\x00\ +\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\ +\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0f\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x69\x6d\ +\x70\x6f\x72\x74\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x01\x3a\x00\ +\x54\x00\x68\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x78\x00\x69\x00\ +\x6d\x00\x75\x00\x6d\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x62\x00\ +\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x66\x00\x61\x00\ +\x63\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\ +\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\ +\x2c\x00\x20\x00\x70\x00\x72\x00\x69\x00\x73\x00\x6d\x00\x20\x00\ +\x6f\x00\x72\x00\x20\x00\x66\x00\x72\x00\x75\x00\x73\x00\x74\x00\ +\x75\x00\x6d\x00\x2e\x00\x20\x00\x49\x00\x66\x00\x20\x00\x66\x00\ +\x6e\x00\x20\x00\x69\x00\x73\x00\x20\x00\x67\x00\x72\x00\x65\x00\ +\x61\x00\x74\x00\x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\x61\x00\ +\x6e\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x76\x00\ +\x61\x00\x6c\x00\x75\x00\x65\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\ +\x69\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x69\x00\ +\x64\x00\x65\x00\x72\x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\ +\x20\x00\x62\x00\x65\x00\x20\x00\x61\x00\x20\x00\x63\x00\x69\x00\ +\x72\x00\x63\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x2e\x00\x20\x00\ +\x53\x00\x65\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x30\x00\ +\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\ +\x6c\x00\x69\x00\x6d\x00\x69\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x9d\x54\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6e\ +\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x66\x61\x63\x65\x73\x20\x6f\ +\x66\x20\x61\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x2c\x20\x70\x72\x69\ +\x73\x6d\x20\x6f\x72\x20\x66\x72\x75\x73\x74\x75\x6d\x2e\x20\x49\ +\x66\x20\x66\x6e\x20\x69\x73\x20\x67\x72\x65\x61\x74\x65\x72\x20\ +\x74\x68\x61\x6e\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\ +\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x73\x20\x63\x6f\ +\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x74\x6f\x20\x62\x65\x20\x61\ +\x20\x63\x69\x72\x63\x75\x6c\x61\x72\x2e\x20\x53\x65\x74\x20\x74\ +\x6f\x20\x30\x20\x66\x6f\x72\x20\x6e\x6f\x20\x6c\x69\x6d\x69\x74\ +\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x48\x00\x54\x00\x68\x00\ +\x65\x00\x20\x00\x70\x00\x61\x00\x74\x00\x68\x00\x20\x00\x74\x00\ +\x6f\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x4f\x00\x70\x00\ +\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\ +\x78\x00\x65\x00\x63\x00\x75\x00\x74\x00\x65\x00\x61\x00\x62\x00\ +\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x54\x68\x65\ +\x20\x70\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x20\x65\x78\x65\x63\x75\x74\x65\x61\x62\x6c\ +\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x54\x00\x72\ +\x00\x69\x00\x61\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x74\x00\x74\ +\x00\x69\x00\x6e\x00\x67\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x16\x54\x72\x69\x61\x6e\x67\x75\x6c\x61\x74\x69\x6f\x6e\x20\ +\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x20\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x2c\x00\x55\x00\x73\x00\x65\x00\x20\x00\x4d\x00\x75\x00\ +\x6c\x00\x74\x00\x6d\x00\x61\x00\x74\x00\x72\x00\x69\x00\x78\x00\ +\x20\x00\x46\x00\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x16\x55\x73\x65\x20\x4d\x75\x6c\ +\x74\x6d\x61\x74\x72\x69\x78\x20\x46\x65\x61\x74\x75\x72\x65\x07\ +\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x3a\x00\x55\x00\x73\x00\x65\ +\x00\x20\x00\x56\x00\x69\x00\x65\x00\x77\x00\x50\x00\x72\x00\x6f\ +\x00\x76\x00\x69\x00\x64\x00\x65\x00\x72\x00\x20\x00\x69\x00\x6e\ +\x00\x20\x00\x54\x00\x72\x00\x65\x00\x65\x00\x20\x00\x56\x00\x69\ +\x00\x65\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x55\x73\ +\x65\x20\x56\x69\x65\x77\x50\x72\x6f\x76\x69\x64\x65\x72\x20\x69\ +\x6e\x20\x54\x72\x65\x65\x20\x56\x69\x65\x77\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x18\x00\x61\x00\x6e\x00\x67\x00\x75\x00\x6c\ +\x00\x61\x00\x72\x00\x20\x00\x28\x00\x66\x00\x61\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0c\x61\x6e\x67\x75\x6c\x61\x72\x20\ +\x28\x66\x61\x29\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x12\x00\ +\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x78\x00\x69\x00\x74\x00\ +\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x63\x6f\x6e\x76\x65\ +\x78\x69\x74\x79\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x14\x00\ +\x64\x00\x65\x00\x66\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x64\x65\x66\ +\x6c\x65\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x10\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x4c\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x6c\x6f\x63\x61\ +\x6c\x4c\x65\x6e\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x0e\x00\ +\x6d\x00\x61\x00\x78\x00\x41\x00\x72\x00\x65\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x07\x6d\x61\x78\x41\x72\x65\x61\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x2a\x00\x6d\x00\x61\x00\x78\x00\ +\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x66\x00\x72\x00\x61\x00\ +\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x73\x00\x69\x00\ +\x7a\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x6d\x61\x78\ +\x69\x6d\x75\x6d\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x20\x73\x69\ +\x7a\x65\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x38\x00\x6d\x00\ +\x69\x00\x6e\x00\x69\x00\x6d\x00\x75\x00\x6d\x00\x20\x00\x61\x00\ +\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x20\x00\x61\x00\x20\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x6d\ +\x69\x6e\x69\x6d\x75\x6d\x20\x61\x6e\x67\x6c\x65\x20\x66\x6f\x72\ +\x20\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x20\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\ +\x01\x03\x00\x00\x00\x34\x00\x6d\x00\x69\x00\x6e\x00\x69\x00\x6d\ +\x00\x75\x00\x6d\x00\x20\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\ +\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x20\x00\x66\x00\x72\x00\x61\ +\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1a\x6d\x69\x6e\x69\x6d\x75\x6d\x20\x73\x69\x7a\x65\ +\x20\x6f\x66\x20\x61\x20\x66\x72\x61\x67\x6d\x65\x6e\x74\x07\x00\ +\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x04\x00\x6d\x00\x6d\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x02\x6d\x6d\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x12\x00\x73\x00\x69\x00\x7a\x00\x65\x00\x20\x00\x28\ +\x00\x66\x00\x73\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x73\x69\x7a\x65\x20\x28\x66\x73\x29\x07\x00\x00\x00\x20\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\ +\x00\x00\x00\x02\x00\xb0\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\ +\xb0\x07\x00\x00\x00\x20\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x28\x00\x20\x00\x4f\ +\x00\x4b\x00\x28\x00\x6f\x00\x6b\x00\x65\x00\x79\x00\x29\x00\x20\ +\x00\x74\x00\x75\x01\x5f\x00\x75\x00\x6e\x00\x61\x00\x20\x00\x62\ +\x00\x61\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x20\x50\ +\x72\x65\x73\x73\x20\x4f\x4b\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\x2c\x00\x4f\x00\x70\x00\x65\ +\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\xf6\x01\x1f\ +\x00\x65\x00\x73\x00\x69\x00\x20\x00\x65\x00\x6b\x00\x6c\x00\x65\ +\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\ +\x41\x64\x64\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x45\x6c\x65\ +\x6d\x65\x6e\x74\x2e\x2e\x2e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\ +\x53\x43\x41\x44\x01\x03\x00\x00\x00\xa6\x00\x41\x00\x64\x00\x64\ +\x00\x20\x00\x61\x00\x6e\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\ +\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x65\x00\x6c\x00\x65\ +\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x62\x00\x79\x00\x20\ +\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\ +\x00\x44\x00\x20\x00\x63\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x61\ +\x00\x6e\x00\x64\x00\x20\x00\x65\x00\x78\x00\x65\x00\x63\x00\x75\ +\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\ +\x00\x44\x00\x20\x00\x62\x00\x69\x00\x6e\x00\x61\x00\x72\x00\x79\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\x41\x64\x64\x20\x61\x6e\ +\x20\x4f\x70\x65\x6e\x53\x43\x41\x44\x20\x65\x6c\x65\x6d\x65\x6e\ +\x74\x20\x62\x79\x20\x65\x6e\x74\x65\x72\x69\x6e\x67\x20\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x20\x63\x6f\x64\x65\x20\x61\x6e\x64\x20\ +\x65\x78\x65\x63\x75\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x4f\x70\ +\x65\x6e\x53\x43\x41\x44\x20\x62\x69\x6e\x61\x72\x79\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x1e\ +\x00\x52\x00\x65\x00\x6e\x00\x6b\x00\x6c\x00\x69\x00\x20\x01\x5f\ +\x00\x65\x00\x6b\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x72\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x6f\x6c\x6f\x72\x20\x53\x68\ +\x61\x70\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x42\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\ +\x72\x00\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x73\x00\ +\x20\x00\x62\x00\x79\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\ +\x64\x00\x69\x00\x74\x00\x79\x00\x20\x00\x61\x00\x6e\x00\x64\x00\ +\x20\x00\x74\x00\x79\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x21\x43\x6f\x6c\x6f\x72\x20\x53\x68\x61\x70\x65\x73\x20\ +\x62\x79\x20\x76\x61\x6c\x69\x64\x69\x74\x79\x20\x61\x6e\x64\x20\ +\x74\x79\x70\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x34\x00\x4b\x00\x65\x00\x6e\x00\x61\x00\ +\x72\x00\x6c\x00\x61\x00\x72\x01\x31\x00\x20\x00\x79\x00\xfc\x00\ +\x7a\x00\x6c\x00\x65\x00\x72\x00\x65\x00\x20\x00\x64\x00\xf6\x00\ +\x6e\x00\xfc\x01\x5f\x00\x74\x00\xfc\x00\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x16\x43\x6f\x6e\x76\x65\x72\x74\x20\x45\x64\x67\ +\x65\x73\x20\x54\x6f\x20\x46\x61\x63\x65\x73\x07\x00\x00\x00\x08\ +\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x34\x00\x4b\ +\x00\x65\x00\x6e\x00\x61\x00\x72\x00\x6c\x00\x61\x00\x72\x01\x31\ +\x00\x20\x00\x79\x00\xfc\x00\x7a\x00\x6c\x00\x65\x00\x72\x00\x65\ +\x00\x20\x00\x64\x00\xf6\x00\x6e\x00\xfc\x01\x5f\x00\x74\x00\xfc\ +\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x43\x6f\x6e\x76\ +\x65\x72\x74\x20\x45\x64\x67\x65\x73\x20\x74\x6f\x20\x46\x61\x63\ +\x65\x73\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\ +\x03\x00\x00\x00\x36\x00\x43\x00\x72\x00\x65\x00\x61\x00\x74\x00\ +\x65\x00\x20\x00\x52\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x65\x00\ +\x20\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x46\x00\ +\x65\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1b\x43\x72\x65\x61\x74\x65\x20\x52\x65\x66\x69\ +\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\x65\x61\x74\x75\x72\x65\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x22\x00\x45\x00\x78\x00\x70\x00\x61\x00\x6e\x00\x64\x00\ +\x20\x00\x50\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x45\ +\x78\x70\x61\x6e\x64\x20\x50\x6c\x61\x63\x65\x6d\x65\x6e\x74\x73\ +\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\ +\x00\x00\x5e\x00\x45\x00\x78\x00\x70\x00\x61\x00\x6e\x00\x64\x00\ +\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x70\x00\x6c\x00\x61\x00\ +\x63\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\ +\x64\x00\x6f\x00\x77\x00\x6e\x00\x77\x00\x61\x00\x72\x00\x64\x00\ +\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x46\x00\x65\x00\ +\x61\x00\x74\x00\x75\x00\x72\x00\x65\x00\x54\x00\x72\x00\x65\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2f\x45\x78\x70\x61\x6e\ +\x64\x20\x61\x6c\x6c\x20\x70\x6c\x61\x63\x65\x6d\x65\x6e\x74\x73\ +\x20\x64\x6f\x77\x6e\x77\x61\x72\x64\x73\x20\x74\x68\x65\x20\x46\ +\x65\x61\x74\x75\x72\x65\x54\x72\x65\x65\x07\x00\x00\x00\x08\x4f\ +\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x40\x00\x4c\x00\ +\xfc\x00\x74\x00\x66\x00\x65\x00\x6e\x00\x20\x00\xf6\x00\x6e\x00\ +\x63\x00\x65\x00\x6c\x00\x69\x00\x6b\x00\x6c\x00\x65\x00\x20\x00\ +\x33\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x79\x00\ +\x69\x00\x20\x00\x73\x00\x65\x00\xe7\x00\x69\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1d\x50\x6c\x65\x61\x73\x65\x20\x73\x65\ +\x6c\x65\x63\x74\x20\x33\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\ +\x69\x72\x73\x74\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\ +\x44\x01\x03\x00\x00\x00\x26\x00\x4f\x00\x4b\x00\x28\x00\x6f\x00\ +\x6b\x00\x65\x00\x79\x00\x29\x00\x20\x00\x74\x00\x75\x01\x5f\x00\ +\x75\x00\x6e\x00\x61\x00\x20\x00\x62\x00\x61\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x50\x72\x65\x73\x73\x20\x4f\x4b\x07\ +\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\ +\x00\x64\x00\x50\x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x6b\x00\x73\ +\x00\x69\x00\x79\x00\x6f\x00\x6e\x00\x20\x00\x68\x00\x61\x00\x6c\ +\x00\x61\x00\x20\x00\x50\x00\x65\x00\x74\x00\x65\x00\x72\x00\x20\ +\x00\x4c\x00\x69\x00\x27\x00\x6e\x00\x69\x00\x6e\x00\x20\x00\x6b\ +\x00\x6f\x00\x64\x00\x6c\x00\x6d\x00\x61\x00\x73\x01\x31\x00\x6e\ +\x01\x31\x00\x20\x00\x62\x00\x65\x00\x6b\x00\x6c\x00\x69\x00\x79\ +\x00\x6f\x00\x72\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\ +\x50\x72\x6f\x6a\x65\x63\x74\x69\x6f\x6e\x20\x4e\x6f\x74\x20\x79\ +\x65\x74\x20\x43\x6f\x64\x65\x64\x20\x77\x61\x69\x74\x69\x6e\x67\ +\x20\x66\x6f\x72\x20\x50\x65\x74\x65\x72\x20\x4c\x69\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x28\ +\x00\x52\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x53\ +\x00\x68\x00\x61\x00\x70\x00\x65\x00\x20\x00\x46\x00\x65\x00\x61\ +\x00\x74\x00\x75\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x14\x52\x65\x66\x69\x6e\x65\x20\x53\x68\x61\x70\x65\x20\x46\ +\x65\x61\x74\x75\x72\x65\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\x03\x00\x00\x00\x54\x00\x4e\x00\x65\x00\x73\x00\ +\x6e\x00\x65\x00\x6c\x00\x65\x00\x72\x00\x69\x00\x20\x00\x76\x00\ +\x65\x00\x20\x00\x62\x00\x75\x00\x6e\x00\x6c\x00\x61\x00\x72\x01\ +\x31\x00\x6e\x00\x20\x00\x61\x00\x6c\x00\x74\x00\x20\x00\xf6\x01\ +\x1f\x00\x65\x00\x6c\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x69\x00\ +\x20\x00\x6b\x00\x61\x00\x6c\x00\x64\x01\x31\x00\x72\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x21\x52\x65\x6d\x6f\x76\x65\x20\x4f\x62\ +\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\x74\x68\x65\x69\x72\x20\ +\x43\x68\x69\x6c\x64\x72\x65\x6e\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\xb0\x00\x52\x00\x65\x00\ +\x6d\x00\x6f\x00\x76\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x61\x00\ +\x6c\x00\x6c\x00\x20\x00\x63\x00\x68\x00\x69\x00\x6c\x00\x64\x00\ +\x72\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\ +\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\ +\x20\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\ +\x63\x00\x65\x00\x64\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\ +\x20\x00\x6f\x00\x74\x00\x68\x00\x65\x00\x72\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x58\x52\x65\x6d\x6f\x76\x65\x73\x20\x74\x68\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x61\x6e\x64\x20\x61\x6c\x6c\x20\x63\x68\x69\x6c\x64\x72\ +\x65\x6e\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\ +\x72\x65\x66\x65\x72\x65\x6e\x63\x65\x64\x20\x66\x72\x6f\x6d\x20\ +\x6f\x74\x68\x65\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x26\ +\x00\x4e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\x79\x00\x69\x00\x20\ +\x00\x59\x00\x65\x00\x72\x00\x64\x00\x65\x01\x1f\x00\x69\x01\x5f\ +\x00\x74\x00\x69\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ +\x52\x65\x70\x6c\x61\x63\x65\x20\x4f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\ +\x9e\x00\x42\x00\x69\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x73\x00\ +\x6e\x00\x65\x00\x79\x00\x69\x00\x20\x00\xf6\x00\x7a\x00\x65\x00\ +\x6c\x00\x6c\x00\x69\x00\x6b\x00\x20\x00\x61\x01\x1f\x00\x61\x00\ +\x63\x01\x31\x00\x6e\x00\x64\x00\x61\x00\x20\x00\x64\x00\x65\x01\ +\x1f\x00\x69\x01\x5f\x00\x74\x00\x69\x00\x72\x00\x69\x00\x6e\x00\ +\x2e\x00\x20\x00\x4c\x00\xfc\x00\x74\x00\x66\x00\x65\x00\x6e\x00\ +\x20\x00\x65\x00\x73\x00\x6b\x00\x69\x00\x2c\x00\x20\x00\x79\x00\ +\x65\x00\x6e\x00\x69\x00\x20\x00\x76\x00\x65\x00\x20\x00\xfc\x00\ +\x73\x00\x74\x00\x20\x00\x6e\x00\x65\x00\x73\x00\x6e\x00\x65\x00\ +\x79\x00\x69\x00\x20\x00\x53\x00\x65\x00\xe7\x00\x69\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x4f\x52\x65\x70\x6c\x61\x63\x65\ +\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x20\x74\x68\ +\x65\x20\x46\x65\x61\x74\x75\x72\x65\x20\x54\x72\x65\x65\x2e\x20\ +\x50\x6c\x65\x61\x73\x65\x20\x73\x65\x6c\x65\x63\x74\x20\x6f\x6c\ +\x64\x2c\x20\x6e\x65\x77\x20\x61\x6e\x64\x20\x70\x61\x72\x65\x6e\ +\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x08\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x30\x00\x52\x00\x75\x00\ +\x6e\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x4f\x00\x70\x00\ +\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x20\x00\x66\x00\ +\x61\x00\x69\x00\x6c\x00\x65\x00\x64\x00\x0a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x18\x52\x75\x6e\x6e\x69\x6e\x67\x20\x4f\x70\x65\ +\x6e\x53\x43\x41\x44\x20\x66\x61\x69\x6c\x65\x64\x0a\x07\x00\x00\ +\x00\x08\x4f\x70\x65\x6e\x53\x43\x41\x44\x01\x03\x00\x00\x00\x28\ +\x00\x44\x00\x65\x00\x73\x00\x74\x00\x65\x00\x6b\x00\x6c\x00\x65\ +\x00\x6e\x00\x6d\x00\x65\x00\x79\x00\x65\x00\x6e\x00\x20\x00\x69\ +\x01\x5f\x00\x6c\x00\x65\x00\x76\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x14\x55\x6e\x73\x75\x70\x70\x6f\x72\x74\x65\x64\x20\x46\x75\ +\x6e\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x08\x4f\x70\x65\x6e\x53\ +\x43\x41\x44\x01\ +\x00\x00\x07\x90\ +\x00\ +\x00\x41\x99\x78\x9c\xed\x5c\xeb\x6e\xdb\x36\x14\xfe\x9f\xa7\x20\ +\xfc\xab\x03\xba\xc8\x76\x2e\x5d\x03\xc5\x45\x97\x2c\xe9\x80\x64\ +\x4d\x97\x34\xfb\x19\xd0\x12\x25\x73\xa3\x48\x8d\xa2\x12\xb9\xd8\ +\x43\xed\x19\xf6\x64\x23\x29\xda\xba\xda\x8e\x2c\x39\xb7\xa6\x28\ +\x50\xf1\xe2\x73\xe3\x39\xdf\x39\x3a\x92\x6a\x7f\x48\x02\x02\x6e\ +\x11\x8f\x30\xa3\x87\xbd\xc1\x76\xbf\x07\x10\x75\x98\x8b\xa9\x7f\ +\xd8\xfb\x7a\x75\xf2\xe3\x4f\xbd\x0f\xa3\x2d\x3b\xc6\xd9\xa6\x5d\ +\xb9\x69\xb4\x05\x6c\x87\xc0\x28\x1a\x9d\xc6\xf8\xe0\xe0\x18\x43\ +\xc2\x7c\xf9\x2f\xf1\x2f\x91\x10\xf2\xc7\xd1\xe7\x10\xd1\xcb\xa3\ +\x8f\xc7\xb6\x95\xee\x93\x3f\xb8\xc3\xae\x8f\x04\xd0\xe3\xc3\xde\ +\x97\x3f\xf4\xb0\x07\x28\x0c\xd0\x61\x6f\x15\x1d\xc5\x12\xd8\x21\ +\x67\x21\xe2\x62\x6a\x7e\xe4\x23\x16\x20\xc1\xa7\x7a\x11\xd8\x1c\ +\x39\x42\x5f\x01\x3b\x19\xf5\x6d\x2b\x31\x83\xa9\x1a\x4c\xcd\x40\ +\x4a\x21\x26\xa3\xbd\x77\x7b\xb6\x95\x5e\xa6\xd3\x13\x84\xfd\x89\ +\x18\xed\x0f\xdf\xdb\x96\xb9\xd6\x34\xad\x19\x51\xdb\x9a\x31\xaf\ +\x93\xe4\x0e\x53\x97\xdd\x5d\x61\x41\x90\x11\x26\x12\x5c\xca\x3f\ +\x3a\x45\x14\x71\x48\x40\x64\xf4\xb1\x2d\xb3\x50\x25\x49\xe0\x94\ +\xc5\x99\x7d\xae\x7f\x66\xc9\x99\x9e\x32\x14\x4b\x2c\xa3\x10\x3a\ +\x92\x50\xcf\x28\x40\xe3\x60\x8c\xf8\x68\xdf\xb6\xcc\x55\x2a\x7e\ +\x9e\x43\x85\x44\x00\xb9\x8f\x69\x89\xc2\xfb\xa5\x14\xb0\x40\x41\ +\x66\xc9\xfc\x79\x9e\x72\x16\x87\x52\xe6\xd9\x89\xfa\xb3\x71\xba\ +\xbd\xc2\x5c\x64\xc6\xaa\xb1\xd7\xec\xdc\xc1\x65\x8d\xe1\xaa\x72\ +\x2d\x35\x9f\x61\x28\x3d\x58\x60\x07\x92\x74\xf6\x66\x98\xf1\xce\ +\x94\xaa\x21\xf4\xa9\x42\x68\xc2\x38\xfe\xc6\xa8\xa8\x21\x55\x26\ +\x56\x35\xd3\x19\x1c\x23\x32\xa3\xe4\xc9\x59\x35\xcc\xed\xaf\xda\ +\x09\x25\xa2\xb0\x61\x6e\xab\xb9\x8d\x50\x82\x9c\x58\xc0\x31\x41\ +\x25\x2b\xd5\x9b\x2a\x9d\x4c\xe5\xca\x09\x6e\x15\x25\x5f\xa1\x88\ +\x0e\xd8\x0b\x8e\xbc\x13\x4c\xd0\xd1\x84\xb1\x08\xf1\xf9\xd1\xab\ +\xb5\x50\xae\x79\x72\xcd\xc9\xd6\x04\xbe\x55\x0a\xf1\x18\x2d\xd5\ +\x38\xc0\x14\x07\x71\x70\x89\xbf\xa1\xb2\xe2\x72\xaa\x30\x33\x8b\ +\xe7\x9d\x7e\xbf\x10\xcf\xf3\x65\x13\xcb\xfd\x42\x54\x67\x2a\x97\ +\x09\xd6\xda\xaa\x7a\x24\x8c\x91\x2b\x1c\xd6\x9f\xca\xd5\x04\x81\ +\x10\x8a\x09\x10\x0c\x08\x79\x5d\x3a\x25\xd4\xe8\x98\x2a\xac\x95\ +\x55\x7f\xa1\x0a\xf3\x40\x24\x5c\x89\x2a\x87\xbd\x7e\x49\x0e\xc7\ +\xd0\x96\xbf\xa3\x91\x03\xdd\xbc\x77\x38\x6d\xf8\x5e\x48\xad\x56\ +\xb3\x3d\x67\xae\x95\x43\xff\xae\xfc\xd1\xb6\xd2\xb8\x9c\x07\x6d\ +\x7e\xb9\xb8\x58\xa0\x95\xdb\xb7\x06\x78\x65\xa1\x7d\x3f\xf8\x9a\ +\x1f\x36\x0e\x42\xc6\x45\xd7\xa0\xd5\x1d\x64\xed\xdd\x1f\xb2\xe6\ +\x91\x7e\x34\x41\xce\x5f\x79\x23\xcd\xc2\xdc\x51\x0b\x63\x96\xdc\ +\x62\x74\x27\x38\x42\x52\xcb\x5b\xec\xca\x98\x5f\x3b\x88\x7e\xf5\ +\x64\xec\xe0\x08\xc8\xbf\x9a\x38\x72\xdf\x82\x13\x04\x45\xcc\x51\ +\x04\xee\x30\x21\x4a\x38\x1c\xa8\x4d\x88\xcb\x2d\x98\xb8\x1c\x51\ +\x80\xa9\x0e\x39\x25\x03\x50\xc2\xac\x1f\x67\x8b\x51\xf7\x6b\x84\ +\xc0\xb5\xa4\x7d\x61\x94\x54\x4c\xaf\x14\xc3\xeb\x56\x0c\x1b\x04\ +\x76\x1c\xa1\xbc\x00\x8a\xf9\x8b\x8d\xec\xf6\x9e\xbe\xbf\x09\x4f\ +\x0f\x62\x22\x02\x28\x0d\x90\x78\xa9\x57\x76\xeb\xea\xe7\x73\xf2\ +\xe0\xf3\xf8\x4f\x59\x81\xa6\x3e\x3f\x46\xe0\x02\x72\xa8\x6a\x5e\ +\xec\x6c\xca\xb7\x73\xbc\x4d\xc4\x3d\x94\x53\x67\x9c\xe7\x8c\x5f\ +\xbd\x7a\x81\x57\xbf\x5b\xb7\xe4\xd4\x05\xe7\xcd\x60\xb8\xbe\xc3\ +\xaa\x02\x27\x80\x89\x2a\xd1\x40\x7a\xa7\x00\x98\x07\x3c\xe8\x48\ +\x68\x96\x17\x10\x84\x8c\x4c\x7d\x46\xdf\x82\x90\xe3\x28\x00\x8c\ +\x03\x8f\xc7\x91\x88\x83\x6d\x20\x9d\xdd\xa3\xca\xd5\x7d\x2e\x8f\ +\x58\xfe\x52\x4c\x20\x4d\xfd\xff\x16\x92\x18\x69\xf8\x66\xa9\xcb\ +\xab\x80\x60\x34\x52\x10\x87\x5c\x55\x4d\x49\xf7\x87\xc0\xc1\xdc\ +\x89\x09\xe4\xdb\xea\xce\x40\xcd\xf6\x81\x27\x39\x50\x06\x08\x0e\ +\x70\x39\xe3\x36\xf0\x98\xc5\x51\x71\xbe\x40\x59\xc5\xd7\xe8\x1a\ +\x81\x37\x1e\xfd\x61\x93\xd5\xb7\xba\xdd\x93\xcc\xcb\xee\x70\xa9\ +\xa7\x97\x1e\xa6\xdc\x8b\xe4\x56\x21\xef\xde\x4b\xfa\x21\xa9\xd1\ +\xe8\x8b\x38\x38\xf8\x34\xa7\x67\x5b\x7a\xb2\xb1\xf5\x54\x21\xfd\ +\x09\x53\xb1\x38\xde\x16\xd6\xee\xbb\xcb\x4b\xf7\x61\xab\xda\x5d\ +\x6e\xd3\x16\x6a\x7f\x9f\x73\x19\x62\x5a\x97\x12\x64\x28\x78\x34\ +\x0a\x5f\xe3\xa9\xa4\xb3\xe6\x5f\xd2\xd8\x34\x16\xfa\x85\x16\x43\ +\x23\xaa\x0d\x33\x0a\x4c\x4e\x7e\x7b\xcd\x22\x0b\xb3\xc8\x4e\xcf\ +\x7a\xe0\xfb\xa9\x9d\x35\xef\xa7\x50\xb2\x89\xfb\xa9\x9b\xe1\xa0\ +\xc3\x2e\xd0\xa0\x55\x4e\x5e\xb3\x09\x34\x43\x0e\x8f\x43\x3f\x90\ +\x38\x0f\x14\x2c\x3e\x5a\x22\xba\x59\x5e\x57\xbc\xa6\xa2\x36\xa9\ +\xa8\xae\x90\xdb\x59\x3f\xef\x98\x36\x1b\x80\xd4\x27\x48\x83\x3e\ +\x9c\x7b\xd1\x26\xca\x28\xc9\x47\x25\x1a\x59\x29\xc1\x8d\x56\x4a\ +\x0b\xf2\xf7\x31\x8b\xc7\x04\x95\xb2\xb8\x9b\x9f\x5c\xe1\xbc\x8f\ +\x60\xcc\x28\xf6\x3c\x9c\xd4\x73\xfc\xef\xdf\xf5\xe9\x1a\x69\x4b\ +\x84\x53\x63\x8c\xfa\xdb\xfd\x41\x3f\xff\xc7\xb6\xcc\x4a\x73\x3e\ +\x29\x38\xd5\xf3\xd9\xd9\x97\x9c\xfa\x1d\x71\xaa\xab\x36\x0c\xad\ +\xc1\xb0\x3b\x36\x0d\xca\x8f\x34\x63\x9d\xc0\xe7\x5c\x7e\xac\x0a\ +\xae\x33\x4c\xd1\x1c\x8f\xe4\x75\x7b\xf8\xbf\x36\xf9\xf9\x9e\xe0\ +\xdf\x5a\x83\x3a\x4c\xdd\x6d\x0f\x03\x2a\x21\xa4\xc5\xfb\x26\x11\ +\x55\x73\x79\xe3\x45\x4f\x14\x4e\x97\xe7\x26\x44\xd5\x23\x09\xb7\ +\xa4\xd9\x58\x5a\x77\xa4\x9e\x10\xd9\x96\xbe\x5c\x2b\xfb\x5f\x30\ +\x82\x9d\x69\x4d\xd2\x0f\xf5\x02\x98\xa8\x6b\x31\x0d\xe5\xf6\x73\ +\x83\x84\xe0\x36\x9b\x3b\xc1\x49\x59\x2e\x59\x02\x30\x2e\x6d\x8c\ +\x84\x33\xd1\x0f\x93\xb2\x51\x71\x9b\x7a\x4c\x9e\x6d\xcb\x8d\xaa\ +\x05\x43\x2a\xcc\xda\xe0\xdd\xe4\xf1\xd8\x93\x79\x38\xb6\x89\xf8\ +\x80\x04\xfb\x54\x91\x28\xb3\x94\x6e\xae\x20\xe5\xa3\x5a\xff\x5d\ +\xe9\xf7\xcf\x7c\x78\xc5\x21\x96\x80\xe5\x67\x33\xd7\x47\x92\x02\ +\xe2\x52\x0c\x24\xd6\xf0\xba\x25\x89\x3a\x08\x9e\x79\xa2\xd6\x4c\ +\x1e\x24\x55\x3f\x6a\xa6\x8e\x9e\x73\xa6\xde\x6c\xa3\xa0\x5d\xb3\ +\x79\x45\x59\xbd\x30\xbd\x39\x8c\xde\xa2\x04\x8b\xe9\xe3\xdd\xce\ +\x2e\x4f\x61\xaf\xb7\xb3\x9b\xe8\xac\x46\x66\xd8\x14\x43\x4c\x4b\ +\x71\xf0\x30\xdd\xc5\x14\x34\x8e\x32\x17\xfd\x3e\xb1\xe3\x94\x63\ +\xb7\x88\x1d\xfe\x7c\xa6\xfa\x5e\x14\xe0\xec\x4e\xa9\x07\x1c\x46\ +\xe2\x80\x96\x34\xdd\x58\x8f\xec\x1c\x45\x13\xe0\x41\x42\xc6\xd0\ +\xf9\xab\x6b\x30\xa9\xe8\x34\x28\xe8\xb4\xa2\x5d\x36\x78\x05\x98\ +\xc5\xf6\xbf\x17\xc0\x54\xec\x3f\x6c\xe6\x53\x37\x3b\xc1\x72\xb7\ +\x5a\x56\xcf\xaa\x47\x83\xb2\x9c\x3d\x43\xd4\x17\x93\x0d\x3d\x7b\ +\x6c\x48\xbc\x91\xdb\x0e\xee\x67\xb6\x46\x4d\xb4\x15\x51\xba\xca\ +\x9c\x41\x07\xf6\x5c\x55\x36\x77\x55\x64\xae\x2c\x9b\x1f\xa6\xc1\ +\xf5\x28\x55\x73\x20\x41\x55\xea\x4f\xcc\x51\x3d\xdf\xf4\xb7\x00\ +\x46\x76\x1a\xc2\x48\x8b\xae\xd1\xcc\xed\x3f\x72\x04\x37\x01\x22\ +\xf2\x98\x1a\x91\x5e\x17\x42\x96\x99\xac\x11\x84\xc0\xc7\xb6\xe5\ +\xf7\x05\x20\x1d\x72\x69\x0e\x20\x50\x1f\xd4\xcb\x80\x8f\x5c\x2c\ +\xec\x76\x14\x0b\xa4\x45\x3a\x3d\x63\x0e\x24\xaf\xc9\xf4\x99\xc4\ +\x02\x51\xa7\x25\xd3\xe9\x4b\x09\x86\xfe\xfd\x82\xa1\xe3\x5c\xda\ +\x8d\xcf\x2f\xce\xa5\xfa\x94\xce\xd4\x29\x6d\x18\x40\xf6\x9e\x40\ +\x32\x3d\x46\x1e\x41\x8e\xba\xfd\x7c\x85\x8f\xa7\x0e\x1f\x6e\xee\ +\xac\x5e\x1c\x80\x2c\x0b\x86\x8e\x01\xa4\x0b\x9f\x5f\x0c\x1f\x6e\ +\x73\xea\xeb\x02\x48\xc3\xde\x5a\xe1\x93\xa0\x26\x2a\x5d\x71\x9c\ +\xbe\xda\xa3\xb4\xaa\xfd\xd0\xb5\x9d\x7a\x1d\x7f\xf9\x55\x68\xc8\ +\xcd\x5e\x07\x2c\xbe\x46\x7d\x9f\x36\xdc\x8a\x57\x16\xaa\xaf\x26\ +\x36\xe8\xba\x15\x1b\x6e\xa6\xd7\x36\xac\xf4\xda\x66\x6d\xb6\xdd\ +\x4a\x9b\xad\xd0\x61\x2b\x8b\x52\xe8\xab\x65\x46\xca\x59\x32\x67\ +\x46\xd3\xef\x95\x6e\x0b\x63\x22\x80\xf9\xe8\xf8\xb0\xb7\xdf\x03\ +\xe9\xd7\xc3\xd2\xe5\x06\xfa\x2d\x52\x3b\xc4\x49\x00\x43\x2f\xa6\ +\xda\xbd\x47\x7f\x5f\xe8\xf1\x09\x67\xc1\x39\x0e\xd0\x25\x8b\xb9\ +\x83\xa4\x2c\xc5\x5d\xea\x43\xf2\x38\x12\x2c\x48\x39\x46\x5a\x92\ +\xfc\x4c\x2a\x65\xee\x63\xf3\xdc\xf7\xa6\xd9\xc7\xe5\xea\x3c\x12\ +\x81\xa8\x1b\x8d\xcc\x87\xe5\xf2\x34\xcc\xc4\x56\x6a\x2a\xe8\x4a\ +\x95\x25\x05\x4b\x11\x48\xbf\x34\xdf\x9e\x28\xc3\xe9\x05\x6d\x80\ +\x32\xdf\xe5\x82\x94\x3e\x7e\xad\x15\xa6\x2a\xf1\x22\xa9\x14\xb5\ +\x54\xf2\xa8\xbd\x58\x26\xf7\xd7\xdb\x67\xbe\xf8\x20\xa2\xcc\x3e\ +\xa5\xaa\x97\x25\x5b\x7d\x10\x61\x0a\xe5\x52\xbd\x44\xa5\x2d\xed\ +\xc5\x2a\x4e\xe8\xff\x09\x81\xa3\x48\x47\x43\xa4\xe3\xc6\x61\x94\ +\xa6\x29\x41\x8d\x6d\x2b\xc6\xa3\xad\xff\x01\x08\xdb\xb2\x8c\ +\x00\x00\x06\xb3\ +\x00\ +\x00\x19\x09\x78\x9c\xed\x58\xdd\x6f\xe3\x36\x12\x7f\xcf\x5f\xa1\ +\x6a\x5f\xba\x38\x8b\xe2\xa7\x28\x2a\x76\xfa\xd0\x45\x0f\x05\xee\ +\xe1\x70\xb7\x87\x7b\x5c\xc8\x12\xed\xa8\x91\x25\x83\xa2\xe3\x38\ +\x7f\xfd\x0d\xf5\x65\x39\x56\xd2\xed\x76\xd1\x43\x17\x95\xb0\xb1\ +\xc4\x99\x21\x39\x33\x3f\xfe\x66\xb4\xcb\x1f\x9e\x76\xa5\xf7\xa8\ +\x4d\x53\xd4\xd5\xca\x27\x08\xfb\x9e\xae\xb2\x3a\x2f\xaa\xed\xca\ +\xff\xcf\xc7\x9f\x82\xd8\xf7\x1a\x9b\x56\x79\x5a\xd6\x95\x5e\xf9\ +\x55\xed\xff\x70\x77\xb3\xfc\x2e\x08\xbc\x1f\x8d\x4e\xad\xce\xbd\ +\x63\x61\xef\xbd\x9f\xab\x87\x26\x4b\xf7\xda\xfb\xfe\xde\xda\x7d\ +\x12\x86\xc7\xe3\x11\x15\xfd\x20\xaa\xcd\x36\x7c\xef\x05\xc1\xdd\ +\xcd\xcd\xb2\x79\xdc\xde\x78\x9e\x07\xeb\x56\x4d\x92\x67\x2b\xbf\ +\x37\xd8\x1f\x4c\xd9\x2a\xe6\x59\xa8\x4b\xbd\xd3\x95\x6d\x42\x82\ +\x48\xe8\x9f\xd5\xb3\xb3\x7a\xe6\x56\x2f\x1e\x75\x56\xef\x76\x75\ +\xd5\xb4\x96\x55\xf3\x6e\xa2\x6c\xf2\xcd\xa8\xed\x76\x73\x64\xad\ +\x12\x51\x4a\x85\x98\x86\x94\x06\xa0\x11\x34\xa7\xca\xa6\x4f\xc1\ +\xa5\x29\xec\x71\xce\x94\x62\x8c\x43\x90\x9d\x35\x3f\x4f\x2b\x69\ +\x20\xa0\x7b\xf8\x37\xaa\x0f\x03\xa8\xa9\x0f\x26\xd3\x1b\xb0\xd3\ +\xa8\xd2\x36\xfc\xf0\xf1\xc3\x28\x0c\x30\xca\x6d\x3e\x99\x66\x88\ +\xe7\xc5\xaa\x17\x41\xae\xd2\x9d\x6e\xf6\x69\xa6\x9b\x70\x18\x6f\ +\xed\x8f\x45\x6e\xef\x57\x7e\xc4\xf7\x4f\xed\xfb\xbd\x2e\xb6\xf7\ +\x76\x32\x50\xe4\x2b\x1f\xf6\x4c\x55\x8c\xdb\xf7\x61\x0f\xc9\x88\ +\x0d\x8c\x18\xed\x54\xfb\x89\xa7\x22\x1e\x23\x86\x88\x67\x54\x1c\ +\x47\x97\xf6\x79\x9d\xb9\x4d\xad\xfc\x8f\x46\xeb\x4f\xff\x4c\x8d\ +\x45\x43\x6c\xc6\x89\xea\x83\xdd\x1f\xec\x27\xfd\x64\x75\xd5\xcd\ +\x08\xbe\x4c\x1c\x6b\xc5\xce\x0c\x5d\x38\x35\x81\x2d\xf1\xef\x60\ +\x64\x99\xeb\x4d\xe3\x24\x9d\x3f\xee\x0d\x1c\xa2\xad\x0c\xa4\x65\ +\x51\xe9\xd4\xfc\xdd\xa4\x79\x01\xe0\xea\xf4\x3a\xcd\x4b\x09\x8b\ +\x23\xde\xdb\x80\x55\x63\xeb\xfd\xa0\xdb\xc7\x09\x46\x40\xa7\x73\ +\xb4\xbb\xea\xcd\xa6\xd1\x10\x4f\x3c\x19\x6b\xec\xa9\xd4\x9d\x76\ +\x90\xd5\x65\x6d\x92\x77\x92\xac\xe9\x26\xbe\x6d\x87\x6a\x48\x53\ +\x61\x4f\x09\xb9\xf5\xbd\xf0\xd7\x57\x8b\x67\x56\x23\x6f\xaf\x86\ +\x31\x95\x4a\xbc\xba\xda\x32\xbc\x74\xbb\x1f\x1d\xb3\xb2\x87\xf0\ +\xee\x75\xe6\x0e\xd9\xb0\xcc\x98\x55\x7b\x72\x28\xbc\x54\x65\xf9\ +\xb8\x9d\x33\x44\xf6\x9f\x9e\x20\x2a\x5e\xe2\x31\x0a\x7f\xc8\xac\ +\xc6\xa9\xd3\x20\x70\x6e\xe0\x07\xcf\xea\x3c\x3b\xac\xbe\x31\x4d\ +\xbf\x83\xa0\x36\xc5\xb6\x00\x48\xb4\x7a\x94\x20\xd6\x5e\x97\x36\ +\x10\xd4\x89\x6f\x80\x90\xb8\x8f\xc9\x32\x74\x90\x69\x9f\x46\x4f\ +\x1d\x78\xf3\xc7\x42\x1f\xcf\xb8\x5a\xa7\x8d\xee\x67\xdb\xa7\x5b\ +\xdd\x46\x7b\xe5\xbf\xdb\xb4\x57\x2f\x58\xd7\x26\xd7\x66\x10\x45\ +\xed\x75\x21\xea\x13\xd2\x71\xee\xcd\x0b\x67\x60\xd6\x51\x8e\xe7\ +\xe5\xcd\x7d\x9a\xd7\xc7\x95\x4f\x5f\x0a\x9f\xeb\x7a\xb7\xf2\x05\ +\x12\x2f\x05\x19\x64\x22\xa0\x28\x26\xed\x7d\x25\x3d\xb9\xa0\x5d\ +\x8d\x1e\x8c\x01\x68\x04\x65\x7a\xd2\xe0\x48\xfb\x33\x44\xb2\xb9\ +\xaf\x8f\x5b\xe3\x02\x62\xcd\x41\xbf\xb4\x84\x73\x7f\x70\x1c\x1e\ +\x1c\xaa\xc2\x02\x4f\xf6\x3c\x33\xd1\x70\xb6\xc1\x7a\x5d\x3f\xcd\ +\x4f\x70\x2c\x2a\x70\x30\xe8\x99\x8b\xb0\x31\x7e\x2f\x35\x06\x2e\ +\x93\xf8\x35\x0d\xe7\xf8\x95\xc3\xbd\xec\xf4\x86\x6c\x97\x3e\x15\ +\xbb\xe2\x59\xe7\xee\xa8\xf5\x10\xd9\x69\x9b\xe6\xa9\x4d\xcf\x70\ +\x18\x46\x00\x48\x62\xa0\x1a\xa8\x2c\xc9\xbf\x3e\xfc\x34\x1e\xeb\ +\x2c\x4b\xfe\x5b\x9b\x87\xf3\x71\x75\x0a\xe9\x1a\x98\x6d\xe5\x8f\ +\x54\xe3\x08\x2c\x4b\xa0\x16\xec\x52\x7b\x57\xec\x20\xc9\xae\x8c\ +\xfc\x0d\xb8\x1f\x80\x39\x0a\x2e\x94\xdd\x39\x3c\x4f\xda\x4d\x6b\ +\x74\x57\x54\x66\x2b\x6b\x9e\xed\x0a\x67\x14\xfe\xdb\x16\x65\xf9\ +\xb3\x5b\x64\x42\x3f\xfd\xa4\x85\x2d\xf5\x5d\xbb\x66\xf7\x38\x78\ +\x11\xf6\x6e\x0c\xfc\x31\xf1\x72\x19\x0e\x61\x68\xdf\xb6\xe7\xf0\ +\x5c\x60\x66\x8c\x70\x99\xae\x75\xb9\xf2\xff\xe1\x84\xde\x95\x74\ +\x6b\xea\xc3\x7e\x57\xe7\xba\x37\x1f\xc2\xba\x9d\x9e\xe1\x2d\x8b\ +\xb9\x18\x4f\xb5\x35\x69\xd5\xb8\x10\x41\x42\x52\x6b\x8a\xa7\xef\ +\x31\x12\x31\xc3\x11\xe1\x6c\x81\xdd\x7d\x7e\x0d\x08\x45\x91\xe0\ +\x32\x5e\x04\x52\x22\x0e\xf3\x70\xfa\x7e\x9c\xa9\x67\xd2\x0d\xc4\ +\xc7\x71\x68\x0c\xb4\x04\x1c\x6a\xea\x07\xdd\x81\x31\x61\x88\x0b\ +\xc2\x62\xa1\xe4\x30\x0e\x31\xd5\xa6\x04\xac\xd8\x84\x0f\x63\x79\ +\x0a\x47\xd4\x98\xf4\x94\x54\xd0\x39\x9d\xeb\xc9\x3e\xb5\xf7\x57\ +\xb4\x7d\xb1\x98\x7b\x99\x10\x76\xfb\x6a\x0e\xa5\x4e\xf4\xa3\xae\ +\xea\x3c\xef\x57\x70\xfa\xf8\x33\x36\xe7\x58\x1e\xa2\x9a\xac\x0f\ +\xd6\x4e\xc7\x7e\xa9\x8b\x2a\x59\xc3\x9c\xe5\x5b\x6e\x9c\xf7\x31\ +\xeb\xd7\x74\xb4\x2b\x4b\x09\xbe\xdd\xa5\xe6\x41\x9b\x4e\xfe\x58\ +\x34\xc5\xba\x28\xdd\x14\xed\x63\xa9\x6f\xf3\xa2\xd9\x43\x5a\xa1\ +\x9d\x71\xdb\xb8\xad\xa1\x8e\x6f\xca\xfa\x38\xca\x75\x95\xc2\x4f\ +\xb0\x4e\xb3\x07\x07\x84\x2a\x4f\xd2\x0c\xc8\xe4\x50\x42\xbb\x39\ +\xa9\x78\xee\xe8\x79\x2a\x42\x04\xd2\xc7\x17\x84\x13\xc4\xb9\x8a\ +\x62\x2f\x20\x0a\x48\x8e\x73\xb2\x90\x88\x48\x45\x89\x47\x15\x24\ +\x99\xab\x05\x43\x4a\x52\xac\x3c\x68\xac\x24\x65\x42\x2e\x18\x58\ +\xd3\x28\x12\x1e\x91\x88\x8a\x38\x26\x00\x0d\x8c\x14\x20\x22\xf6\ +\x00\x2f\x52\xc4\x72\x11\x30\x8e\x00\x21\xb1\xf0\x02\x1a\x21\xc9\ +\x48\x04\x4a\xa0\xa3\x28\xf5\x9e\x27\xdb\x69\xcb\x0a\xe4\x96\xc5\ +\x94\x4d\xeb\xf2\x58\x48\x00\xce\xee\xe4\x01\x17\x66\xdd\x35\x35\ +\x1e\x09\xb7\xae\x20\x5b\xb6\x36\x01\x50\xef\x63\x6a\x0f\x46\xbb\ +\xae\x62\xd2\x21\xfc\x85\x9f\xaf\x89\x1f\x09\x85\x52\x2a\xc0\x0a\ +\x81\x16\x36\x12\xb1\xf2\x18\x80\x03\xc7\x31\x07\xb4\xb0\x48\x44\ +\xd4\xc3\x0e\x26\x5c\x4a\x02\xc0\x61\xd0\x6a\x52\x16\x03\x85\x08\ +\x84\x23\x2e\x15\xc0\x84\x13\xae\x54\x0b\x13\x29\x63\xfc\x2a\x28\ +\xc4\xe7\x80\xe2\x5b\x80\x44\x8b\x82\x3f\x31\x24\x08\x8e\x10\x16\ +\x9c\x89\x05\x11\x14\xb2\xac\x78\xec\x11\x38\xf9\x54\x28\x28\x18\ +\x31\xe2\x80\x8e\xf9\x14\xcb\x2f\x48\xdf\x32\xdc\xf6\x0f\xd3\x2c\ +\xbe\x68\xb4\x53\x93\xcd\x97\x27\xd7\x71\x8e\xe9\x9a\xcf\x1e\x41\ +\x11\x61\x92\x03\xa7\xfd\x86\x6a\x75\xf3\xd2\x39\x29\x94\x7f\xb5\ +\x39\xd7\x51\xc2\xb1\xc1\x0a\xee\x78\x46\x0c\xbd\x15\x95\x28\x62\ +\x70\xf3\x6b\xb1\x01\x6b\x89\x04\x6f\xef\x19\x31\x58\x03\xf3\xb6\ +\xd6\x67\x71\x9b\x21\x21\xba\x49\xd9\x62\x9c\xde\x4b\xbd\x71\xae\ +\xc5\x68\xe6\x61\x8f\xc0\x1d\x10\xd1\x6d\x52\x2d\xf0\x1b\x6a\x53\ +\xad\xe7\x37\x1a\x0b\xf8\xaa\x50\x11\x26\x32\x82\x9e\x82\x0b\x80\ +\x8a\x00\xac\x40\x4d\xe1\x94\x73\xc9\x28\x70\x09\x7c\x0f\x83\xd8\ +\x75\x1a\x0c\x4a\x8f\x12\x52\xc2\x23\x97\x08\x33\x42\x88\x78\x7f\ +\x4e\xfe\xf6\x95\xac\x5e\xa7\x91\x23\x0a\x25\x47\x46\x11\xff\x82\ +\x34\xce\x36\x47\x8c\x43\xff\xa4\xc6\xe6\x08\x9e\x25\x8d\xa0\x02\ +\x32\x81\x94\x62\x8a\x53\xd8\xb2\x2b\x7d\x82\x63\xfe\xfe\x02\x11\ +\x5b\x26\x23\xf2\x5a\x47\xf3\x6b\xc0\xff\x8d\x2c\x38\x02\x30\x12\ +\x7f\x30\x77\xcf\xa5\xe4\x77\xf1\xe8\x75\x0a\xbf\xad\xd2\xfa\x6a\ +\x45\xfa\x7c\x48\x4c\xd2\x2d\x7f\x27\x2f\xff\xbf\xd3\xf7\xa7\x2b\ +\x83\xd7\x15\x69\x9e\x9d\xbe\xda\x27\xd1\x97\x7d\xba\x31\x44\x31\ +\xa6\x8e\x71\xb9\x6b\xda\xa3\x88\xce\xb0\x93\xfa\xa3\xd9\x49\x92\ +\xab\x2f\x13\x8a\x08\x6c\x1a\x53\x80\x2b\x14\x04\x1a\xb3\x08\x0a\ +\x91\x74\x5f\x17\x80\xd4\x05\x20\x97\x52\xa0\x23\x8f\x51\x24\x04\ +\xa3\x2c\x5a\xc0\x57\xa9\xc4\x8c\x73\x4f\xa1\x88\x4a\xe2\x3e\x46\ +\x62\xc0\x9c\xa0\xd1\x5b\xbc\xd4\x36\x00\x5f\xa9\xbf\xc3\xc3\xf5\ +\x6d\x13\x54\x8f\xf0\xf6\x67\xe9\xfe\x8f\xe5\xee\xe6\x7f\x5f\x6c\ +\x7e\x11\ +\x00\x00\x0a\x3f\ +\x00\ +\x00\x3c\x23\x78\x9c\xed\x5b\x5b\x6f\xdb\x38\x16\x7e\xcf\xaf\xd0\ +\xba\x2f\x0d\xd6\x92\x79\x17\xe5\x5c\x06\x83\x29\x3a\x18\xa0\x83\ +\x02\xd3\x16\xbb\xfb\x34\x90\x25\xda\xd1\x44\x96\x0c\x49\x8e\xe3\ +\xfe\xfa\x3d\x94\x75\xb5\xe5\x8b\x12\x37\xe8\x4d\x42\x12\x89\x3c\ +\x24\x0f\xcf\xf7\xf1\xf0\x90\x62\xae\x7f\x79\x9c\x87\xc6\x83\x4a\ +\xd2\x20\x8e\x6e\x06\xd8\x42\x03\x43\x45\x5e\xec\x07\xd1\xec\x66\ +\xf0\xe9\xe3\x5b\x53\x0e\x8c\x34\x73\x23\xdf\x0d\xe3\x48\xdd\x0c\ +\xa2\x78\xf0\xcb\xed\xc5\xf5\xbf\x4c\xd3\xf8\x2d\x51\x6e\xa6\x7c\ +\x63\x15\x64\x77\xc6\x1f\xd1\x7d\xea\xb9\x0b\x65\xbc\xbe\xcb\xb2\ +\xc5\x78\x34\x5a\xad\x56\x56\x50\x24\x5a\x71\x32\x1b\x5d\x1a\xa6\ +\x79\x7b\x71\x71\x9d\x3e\xcc\x2e\x0c\xc3\x80\x76\xa3\x74\xec\x7b\ +\x37\x83\xa2\xc0\x62\x99\x84\xb9\xa0\xef\x8d\x54\xa8\xe6\x2a\xca\ +\xd2\x11\xb6\xf0\x68\x50\x8b\x7b\xb5\xb8\xa7\x5b\x0f\x1e\x94\x17\ +\xcf\xe7\x71\x94\xe6\x25\xa3\xf4\x55\x43\x38\xf1\xa7\x95\xb4\xd6\ +\x66\x45\x73\x21\xec\x38\xce\x08\x91\x11\x21\x26\x48\x98\xe9\x3a\ +\xca\xdc\x47\xb3\x5d\x14\x74\xec\x2a\x4a\x10\x42\x23\xc8\xab\x25\ +\x4f\x93\x1a\x3f\x86\x60\x8a\xbd\xca\xe4\xb9\xcd\xd6\xc1\xfc\x0b\ +\xf8\xa9\x0a\x94\x09\x56\x1a\x2f\x13\x4f\x4d\xa1\xa4\xb2\x22\x95\ +\x8d\xde\x7c\x7c\x53\x65\x9a\xc8\xf2\x33\xbf\x51\x4d\x69\xfd\x56\ +\xbb\x2d\x48\x22\x77\xae\xd2\x85\xeb\xa9\x74\x54\xa6\xe7\xe5\x57\ +\x81\x9f\xdd\xdd\x0c\x04\x5b\x3c\xe6\xef\x77\x2a\x98\xdd\x65\x8d\ +\x84\xc0\xbf\x19\x40\x0f\xa9\xc0\x24\x7f\x6f\x10\x08\x6f\x04\x8a\ +\xea\xc6\x55\x0e\xb2\x98\xb4\xa8\x85\x8d\xc4\x91\x52\xe4\x42\xa5\ +\xe6\x63\x3f\xf6\xb4\x2a\x37\x83\xf7\x0b\x15\x7d\xf8\xed\xd7\x37\ +\x7f\xff\xa5\x16\x21\xe8\xf5\x7e\xf2\x8f\xf2\x32\x4b\x1b\xf3\x16\ +\x4a\x5c\xfb\x6a\x9a\xea\x92\x1b\x0d\xf4\x1b\xa8\xc0\xf2\x3c\xc8\ +\x9d\xbb\xc9\xbd\x4a\x36\xf9\x0d\x15\xd2\x2c\xf6\xee\xb5\xfc\xaf\ +\x49\x12\xaf\xf0\x9f\x2a\xda\x58\x49\x5f\x71\x12\x00\xcf\x6e\x06\ +\xee\x32\x8b\xab\xc4\x44\x4d\xff\xa7\x15\x46\xcd\x94\xff\xb6\x53\ +\xf6\xd4\x97\x66\xeb\x10\xfa\x11\x43\xb7\xa7\x61\xbc\x1a\x3f\x04\ +\x69\x30\x09\xd5\x55\xa1\x22\x28\xb9\x70\xb3\xbb\x52\x7a\x53\x8d\ +\x4e\xa1\x92\xf2\x41\x9d\x0c\xa9\x7f\x1a\xd0\xdc\x10\x7e\x8c\x77\ +\x06\x87\x27\x93\xe7\x8f\x26\x26\x16\x6f\x24\x6f\x52\x4b\xd1\xcf\ +\x46\xa3\x92\x42\x97\x69\x10\x86\x66\xb2\x0c\xd5\x58\x3d\xa8\x28\ +\xf6\xfd\xab\x34\x4b\xe2\x7b\x35\x7e\x85\xf2\xab\x78\x35\x73\xd0\ +\xc7\xe0\x01\x16\xd9\x55\xa3\x96\x2c\x71\xa3\x14\x18\x37\x07\xc4\ +\x3d\x37\x54\xaf\x01\xc8\x4b\x23\x89\x33\x18\xfb\xaf\xb1\x44\x97\ +\x1b\x89\x30\x7f\x05\x2d\x2e\x07\xc6\xa8\xc0\x63\xb4\x01\xa4\x1f\ +\x3a\xe0\x6c\x92\xec\xac\xf8\xb4\x6b\xdc\x83\xd0\x09\x00\x91\xaf\ +\x07\xa0\xa3\xf8\x9c\x15\x93\x77\x67\xc7\xe4\xdd\x99\x30\x21\xe2\ +\x5b\xc1\x44\xb6\x30\xc9\xd5\xd9\x8b\x4a\x85\xc3\x02\x9c\xe7\x02\ +\x1c\x20\x4c\x73\x95\xa9\x4a\x9f\x99\xad\xb5\x67\x6f\x8b\xd2\xda\ +\x11\xd5\x0e\x78\xf1\xf7\x23\xc0\x60\x8c\x0d\x4a\xe0\x17\xee\x94\ +\x58\x6f\x24\x30\xf4\x0c\xfe\xa0\x4e\x99\xcf\xda\xff\x1f\xa8\xa6\ +\xd0\xc0\x04\x7a\xcc\x02\x70\xf8\xb9\x1c\xc1\x16\xcd\xaf\x76\x19\ +\x0d\x60\xdd\x37\x2a\x08\xaa\x6d\x71\xa8\xf7\xdb\x05\xb9\x94\xc7\ +\x15\x41\x16\xd7\x9d\x2a\x14\xd9\x56\xa5\xdd\x43\x9c\x4b\xf2\x67\ +\x19\xaa\x30\xf7\x76\x35\xc7\x90\x7b\x92\x01\x84\x43\xbe\x3f\x03\ +\x40\x38\xa4\xdc\xe4\xf7\xc4\xf5\xb5\xa3\x69\x76\xbd\x9d\x43\x31\ +\x63\xa6\xa8\xbd\x04\xb8\xad\x45\xdb\x4b\xe8\x14\x90\x12\xa6\xb3\ +\x3b\xc4\x75\x9e\xe9\xc5\x61\x9c\x8c\x5f\x4d\xf3\xeb\x2a\x4f\x8a\ +\x21\x20\x0a\xb2\xf5\x18\x37\x8a\xc4\xd3\x69\xaa\xc0\xe5\xd5\x34\ +\x3d\xd4\x9c\x34\x49\xff\xe6\x50\x47\x73\xb8\xe1\x21\xda\x5d\xef\ +\x6b\x29\x1b\xe1\xa3\x76\xb2\x11\x7d\x39\x2b\xd9\x88\xbf\x90\x8d\ +\xf4\x9b\x1b\xee\xd8\xa8\x64\x1f\x34\x17\xc2\x60\x82\xe9\x2c\x5c\ +\xb9\xeb\xb4\x6a\x21\x0f\xca\xc7\x77\x30\x8b\xdd\x0c\x5e\x75\xf2\ +\xae\x69\xee\x76\x23\x54\x34\xfc\xd2\xac\x48\xfc\x14\x05\x19\xac\ +\x17\x96\xa9\x4a\x3e\xe8\x98\xfb\x7d\xf4\x29\x55\x3b\x52\x1f\xeb\ +\xa9\x63\xee\x66\x49\xf0\xf8\x1a\x0f\x91\xbe\x2d\xe1\x48\x4e\x1c\ +\x06\xcf\x04\x11\x4b\x12\x29\xe8\x65\x55\xdc\x83\x31\x47\x08\xb7\ +\x88\x60\xa8\x26\x9f\x07\xa3\x55\xd8\xc4\xb2\x1d\x9b\xd6\xfa\x4e\ +\x3b\x65\xa7\x9d\xb2\x09\xf8\x71\x66\x51\xc6\x31\xf4\xa8\xff\x00\ +\xb5\x91\x3c\x4e\x3b\x8c\x5e\x90\x76\xf8\xa5\x86\x66\x1f\x2f\x2e\ +\x1b\x83\xe1\xc7\xf3\xe2\x52\x30\x13\x99\xe8\x28\x51\xa4\x10\x26\ +\x37\xed\x4e\xe4\x0f\x62\x8a\x04\x76\x3c\xb4\x45\xa0\xab\x13\xd8\ +\x22\x85\x34\x6d\x53\x74\xc2\x7f\xb0\x45\x6a\x3b\xde\x74\xb2\xb7\ +\xc5\xe7\x7a\x73\x6a\xdb\x47\xad\x05\x2a\xf4\xb7\xd4\x74\xea\xba\ +\xe8\x29\x96\xa2\xb2\x6b\x44\x1e\xb1\xd2\xd4\x9d\x4e\xc9\x97\xb3\ +\x52\xce\xab\xd3\x58\xf5\xd2\x9c\x7a\x29\x46\xf5\x71\x42\x0e\xfa\ +\x81\x43\x49\x8e\xd8\xde\x99\x6a\x17\x8d\x49\xe8\x7a\xf7\x5b\x73\ +\xc4\xd5\x11\x0e\x95\x04\xe0\x88\x9f\x30\x51\x81\x54\x97\xdb\x01\ +\x3b\x1c\xa4\x49\x87\x62\x87\x48\xf9\xf4\x9e\xe1\xee\x9e\x91\xf3\ +\x0d\x5e\x86\x61\x52\xa0\xc7\x87\x2f\xa3\x26\x36\xe9\x4b\x0e\x60\ +\xc6\x41\x33\xf9\x52\x43\xb8\x3b\x7c\x3d\x2d\xa8\xd4\x31\x1d\xc6\ +\xcc\xe2\x42\xb2\x76\xf8\x87\x2c\xe9\x10\xe4\xd4\x53\x04\x04\x7a\ +\x10\x11\x36\x48\xe7\x75\x95\xf5\x3a\xcb\x6a\xd3\xb8\xc1\x2c\xf1\ +\xc9\x31\xb8\x30\xe7\x42\x1c\xb6\xd2\x5b\xa4\xef\xa7\x85\x77\xba\ +\x7a\x79\xb8\x7a\xc7\xd5\xf7\x16\x08\x16\x2a\x76\x75\xba\x40\x2d\ +\x33\x1b\x40\xb5\x31\x39\x13\x50\x42\xdb\xda\x6e\x7a\xe1\x83\x48\ +\xd9\x2d\xa4\x76\x0b\x1f\x81\xea\xe8\xc8\x02\x5b\xda\x47\xd6\x83\ +\xcf\x84\xca\x3e\xb2\x02\xfc\x72\x50\x9d\xea\x85\x30\xb0\x75\x2f\ +\xa7\x4f\x5d\xa9\x1c\xd2\x18\x55\x1a\x77\x59\x48\x08\xd6\xc7\x77\ +\xbf\x9a\x4a\x7d\x3f\xc9\x60\xdd\xcd\x8b\xa7\x39\x27\x60\xa8\x14\ +\x16\xac\xfd\x18\x6f\x31\x9c\x72\x0b\xd6\x96\x0e\x6e\x2f\x45\x29\ +\xb5\x1c\x68\xaa\x11\xae\x7a\x9d\xb2\x5e\xa7\xec\xfe\x75\x33\x02\ +\x51\xc4\x1c\xe2\xd8\xf9\x02\x1a\xfa\xca\x30\xa6\x64\x68\x72\x62\ +\xc1\x02\x9e\x30\x67\x68\xda\xb0\x92\xa6\x14\x73\x79\xb9\x53\xe1\ +\xe1\x01\xbb\xbb\xe6\x67\x8c\xd7\x83\xef\xc0\xe6\x01\xe1\x8d\xd1\ +\xb8\x6f\x13\xa2\x77\xfc\xa2\x6b\xed\x41\x14\x57\xdf\x67\xe2\x29\ +\x11\x07\x86\x7b\x47\xe3\x93\xfc\x3a\x13\x4b\x89\x78\xe2\xfe\x8f\ +\xde\xd8\xb0\x2d\x9b\x63\x1b\xd3\x36\x49\x21\x51\x60\x22\x79\x8b\ +\xa4\xd2\x92\x84\x31\xbc\xc5\xd1\x1d\x51\xaf\x4b\xf4\x30\x45\x25\ +\xb1\x1b\x14\xa5\xc4\x16\xf6\xd0\x64\xd2\x02\x67\x2e\x9c\x9c\xa2\ +\xd8\x12\x92\x63\x7a\x16\x8a\xb2\x93\x28\x2a\xbe\x08\x45\x45\x1f\ +\x8a\xba\x54\xdf\xe7\xa2\xa8\xdd\x8f\xa2\xcc\xd3\xf7\xb9\x28\x6a\ +\x9f\x73\xaf\x88\x39\xcc\xde\x05\xe7\x47\x59\xa6\x31\xe4\xf0\x1e\ +\x24\x42\x88\x4f\x76\xe6\xe3\x53\x17\x6a\xd0\x96\xdd\x8b\x35\x1e\ +\x56\x74\x6a\x9f\xd0\x5a\xd7\xe2\x89\xe9\x28\xed\x7c\x34\xe1\x88\ +\x7c\x87\x34\xe9\x65\x00\x5b\x7c\x7f\x06\xd8\x33\x4e\x9e\xf1\x2d\ +\x03\xe2\x20\x7b\x70\x60\xc0\x11\x5e\x4f\x8f\x8f\x18\xe6\x3c\x87\ +\x59\x98\xdb\x8d\x35\xe1\x1a\x52\xb1\xe4\x16\xa6\xa8\x31\xbb\x90\ +\x9b\x01\xa3\x0c\x62\xb8\xa6\xbf\x5a\x43\x2a\x66\xc8\x22\xc4\xa6\ +\x75\xef\x9f\xfb\x81\x04\x66\x51\x46\x28\x96\x44\x14\x5f\x4a\xaa\ +\x57\x02\x33\x34\xb1\x39\x44\x7a\x7a\x52\x16\xd0\x17\x71\xf9\x04\ +\xa7\xa3\x4d\x74\xba\x1b\x20\x4a\x12\x74\x8a\x1b\xe8\x74\x3a\x10\ +\x96\xf6\x72\x3a\x9c\x4c\xa7\x1d\x3b\xb6\x27\x3a\x1d\xc2\x9f\xf8\ +\x89\xb1\x1b\xc9\x3d\xa8\x77\x12\xa4\x93\x4b\x67\x03\xb9\x7f\xa8\ +\xb4\xbd\x1f\x28\xed\xfe\xc3\xe7\x68\xac\xd4\xc7\x81\x61\x76\xc2\ +\x21\x8b\x6f\xca\x81\x5d\x8f\xf4\x89\xbd\xfc\xa9\x2a\xa0\xcf\xfd\ +\xf9\x0f\x81\x5a\x5d\x54\x46\x98\xb8\x15\x34\x0b\x77\xa6\x72\xa2\ +\x83\xe1\x37\x8b\xeb\x22\x63\x12\x27\xbe\x4a\xca\x2c\x91\x5f\xad\ +\xac\x62\x2c\x6c\x8e\xb4\x5e\x6c\x19\x11\x6a\xad\xf2\x51\x77\x7e\ +\x7a\xe7\xfa\xf1\xea\x66\x40\xb6\x33\x3f\xc7\xf1\x5c\xef\xc0\xf0\ +\xed\x0c\x1d\xfb\x63\x6a\x31\x9b\x4a\x64\xef\x64\xea\xe5\xc2\x4e\ +\x5d\xde\x32\x49\x80\x44\x66\xe8\xae\x15\xf4\x23\xff\x53\x1a\x35\ +\xbd\x8b\x57\xb3\x44\xdb\x23\x4b\x96\x6a\xbb\xa4\x1f\x7b\x4b\x7d\ +\x42\xd6\x5c\x6e\x88\x5d\x9c\xcb\x6c\x48\xe8\xb2\xe6\x64\x12\x3f\ +\x76\x57\xb0\x0a\x22\xe8\x9f\x59\x9c\xf4\x84\x45\xcc\x8e\x15\x0a\ +\x89\xf2\xec\xa7\x23\x76\xd4\x2f\x24\xa0\x85\x6a\x3b\x74\x3b\x6f\ +\x7d\x20\x6f\xee\x3e\x06\xf3\xe0\xb3\xf2\xeb\xaf\xa9\xd7\x73\x95\ +\xb9\xbe\x9b\xb9\x35\x1b\xca\x14\x2a\x70\xe9\x85\xaf\x13\x7f\x3a\ +\xfe\xeb\xcd\xdb\xca\x4b\x7a\xde\xf8\x3f\x71\x72\x5f\x3b\x38\x2d\ +\xe0\x4e\xe2\x25\xe8\x5d\x79\x6e\x7d\x7c\xd4\x1b\x6b\xa7\xe2\x66\ +\xb7\xc1\x1c\x30\xd6\x87\x74\xff\xfd\x38\x0f\x81\x97\x55\x46\x4b\ +\x58\xb3\xb9\xae\x74\x53\x6d\xa2\x36\x87\x70\x3b\xcf\x2d\xfb\xde\ +\x3c\xd0\x85\x46\x1f\xb2\x20\x0c\xff\xd0\x8d\x34\xbc\x79\x51\x69\ +\x90\x85\xea\x36\x6f\x73\xf3\x58\xf6\x62\x54\x74\xa3\xda\xba\xaa\ +\x7b\x79\x3d\x2a\xcd\x90\xbf\xcd\x6a\xf3\xb4\x38\x53\x59\x38\x74\ +\x27\x2a\xbc\x19\xbc\xd3\x99\xc6\x4e\xee\x2c\x89\x97\x8b\x79\xec\ +\xab\xa2\x78\x69\xd6\x59\xa9\x67\xe3\xfc\x5a\x7d\x68\xcd\x24\xdc\ +\xb1\x24\x87\xb9\x6d\x68\x62\x4a\x2c\x5b\x52\xe6\x5c\xb6\x7c\xe8\ +\x8c\x09\xbb\xf1\xc5\x2d\x01\x4f\xd6\xc0\x64\xdd\x9e\xf2\x92\xc7\ +\xf6\xbb\x1e\xab\xb6\x63\x71\x1b\x33\xd6\x48\xd6\xdb\x98\x12\x59\ +\x90\x4a\x9a\x1f\x34\x2b\x5a\x5a\xc4\x76\x08\xc1\xcd\xbd\xc4\x82\ +\xd4\x84\xc1\xc2\x59\x52\xbc\x3d\xf3\x69\xb5\x60\xe6\xeb\xd8\x28\ +\xae\x96\x0d\xf9\x3a\x4f\x9f\x01\xac\xf6\xf4\xf2\x03\x81\xf5\x04\ +\xdb\xef\x7c\x20\x29\x5f\xf5\xe4\x01\x10\x8c\x27\xcb\x2c\x6b\xa6\ +\xfd\x13\x07\xd1\x18\x50\x89\xca\x7a\x4c\xe0\x91\x4a\x42\x18\x1f\ +\xd9\x98\x95\x69\x75\xf3\x45\x82\xef\x82\x9b\x4a\x12\x77\x3d\x8e\ +\xe2\x48\x35\x53\x37\xb3\xfe\x18\x5d\x6d\x0e\x16\x6e\xf2\xf3\x63\ +\x95\x41\xa8\xab\x28\xcf\x25\xfb\x41\xba\x00\x0e\x8c\x83\x48\xab\ +\x71\xb5\x73\x6e\x59\x45\x2e\xfc\x31\x27\xae\x77\x3f\xcb\xf5\x1b\ +\xbb\x1e\x78\x9e\xa5\x66\x44\x33\x4e\xe9\x0f\x35\xc7\xfd\xa1\x16\ +\x8c\x48\x6e\x8b\xfe\x50\x9b\xb8\xf5\xcd\xf5\x00\xdc\x08\x31\xf2\ +\x13\xee\xf3\xc3\x2d\xb8\x45\x65\x3d\x87\x54\x70\x73\x4b\x22\x4e\ +\x70\x6f\xb8\x29\x01\x5f\xc3\xf7\xc2\x7d\x1a\xd8\xce\x74\x62\xff\ +\x04\xfb\xfc\x60\x53\xbb\x73\x6c\x0b\xf1\x94\xb1\x4d\xf5\x76\xbd\ +\xce\x3b\x30\xb6\x4d\xf6\xd3\x99\x9f\x0f\xf0\xf6\x69\xfb\x3a\x54\ +\x87\x88\x41\x07\x37\x10\x6e\x7a\x9e\xb7\x85\x86\x2e\xc3\x91\xd3\ +\x9c\x54\x75\xf0\x66\x10\x1b\x02\x70\x40\x9d\x0e\x21\x70\xb0\x72\ +\x1c\x0d\x34\x04\x82\x68\x4c\x85\x01\xd3\x37\xa4\xe0\x61\xc7\xc7\ +\xfa\x1c\xb1\x86\x29\x9e\x83\x46\x0e\xc0\x33\xd0\x68\x68\xd7\x19\ +\x1b\xa1\xa1\x29\x1a\xe7\xf9\x77\x6c\x78\xa8\x50\x87\x1d\x71\x6b\ +\x23\x79\x63\x47\x99\x7f\xcb\x95\xb0\xde\xc5\xc5\x30\x32\xcc\xcd\ +\xa8\x11\x5f\xbd\xf5\xf6\x73\xeb\x2b\x54\x76\x87\xc0\xdc\x12\x18\ +\xa2\x8b\x21\xe6\xc2\xc2\x9c\x4b\x06\x04\xc6\xcc\x22\xfa\x18\x5e\ +\x27\x81\xab\xff\x4f\xd1\x47\x7d\x7a\x0d\xa4\x7a\x03\x21\x82\x2e\ +\x66\x71\x62\xc2\x12\xf1\xc1\xcd\x96\x89\x6a\x7e\x55\xbf\x1e\xcd\ +\x8a\x87\xa6\x39\xf7\x1a\xd3\xa7\x1d\xc6\xb4\xa8\xd3\xbe\x50\x7f\ +\xf3\xee\x98\xb2\xcb\xde\x7b\xcc\x9b\xff\xb7\x0e\xa7\x16\x72\xf4\ +\x3d\x64\xbc\x78\x32\x60\x72\x67\x5c\xdf\x43\x20\xfa\xe6\xa9\xb5\ +\xc8\xd8\x58\x56\x74\xec\x61\x1c\xb3\x5a\xd3\x58\xc7\x0a\x75\xb4\ +\xc8\xf7\xe9\x5e\xe9\xd9\xd0\xbd\xea\xcf\xe0\xdb\x82\xa7\xdc\xa9\ +\x01\x82\x5d\xeb\xf5\xf1\xed\xc5\xff\x01\x2d\xb3\xb5\xf9\ +\x00\x00\x0a\xa5\ +\x00\ +\x00\x35\xe0\x78\x9c\xed\x5a\x59\x73\xdb\xc8\x11\x7e\xd7\xaf\x40\ +\xe8\x17\xbb\x42\x80\x73\x1f\xb4\xa4\x7d\xc8\xd6\x6e\x6d\x55\x52\ +\x49\xc5\xbb\x95\x47\x17\x04\x0c\x29\xc4\x24\xc0\x02\x41\x1d\xfe\ +\xf5\xe9\x1e\x9c\x14\x21\x8b\xb4\xbd\x96\x37\x2b\xc2\x32\x81\x99\ +\xee\xe9\x99\x3e\xbe\xee\x19\xf0\xfc\x87\xbb\xf5\x2a\xb8\x71\xe5\ +\x36\x2b\xf2\x8b\x09\x8d\xc8\x24\x70\x79\x52\xa4\x59\xbe\xbc\x98\ +\xfc\xf6\xeb\x4f\xa1\x99\x04\xdb\x2a\xce\xd3\x78\x55\xe4\xee\x62\ +\x92\x17\x93\x1f\x2e\xcf\xce\xff\x12\x86\xc1\xdf\x4a\x17\x57\x2e\ +\x0d\x6e\xb3\xea\x3a\xf8\x25\xff\xb0\x4d\xe2\x8d\x0b\x5e\x5f\x57\ +\xd5\x66\x3e\x9b\xdd\xde\xde\x46\x59\xd3\x18\x15\xe5\x72\xf6\x26\ +\x08\xc3\xcb\xb3\xb3\xf3\xed\xcd\xf2\x2c\x08\x02\x90\x9b\x6f\xe7\ +\x69\x72\x31\x69\x18\x36\xbb\x72\xe5\x09\xd3\x64\xe6\x56\x6e\xed\ +\xf2\x6a\x3b\xa3\x11\x9d\x4d\x7a\xf2\xa4\x27\x4f\x50\x7a\x76\xe3\ +\x92\x62\xbd\x2e\xf2\xad\xe7\xcc\xb7\xaf\x06\xc4\x65\xba\xe8\xa8\ +\x71\x36\xb7\xdc\x13\x51\x6b\xed\x8c\xb0\x19\x63\x21\x50\x84\xdb\ +\xfb\xbc\x8a\xef\xc2\x7d\x56\x98\xe3\x18\x2b\x23\x84\xcc\xa0\xaf\ +\xa7\x3c\x8e\x6a\x7e\xb7\x02\x55\x3c\x3a\x19\xdf\x3b\x94\x0e\xea\ +\xdf\xc0\x5f\xc7\xd0\x36\x44\xdb\x62\x57\x26\x6e\x01\x9c\x2e\xca\ +\x5d\x35\xfb\xf1\xd7\x1f\xbb\xce\x90\x44\x69\x95\x0e\x86\x69\xb5\ +\xbf\x27\x77\xcf\x24\x79\xbc\x76\xdb\x4d\x9c\xb8\xed\xac\x6d\xf7\ +\xfc\xb7\x59\x5a\x5d\x5f\x4c\x94\xd8\xdc\xf9\xe7\x6b\x97\x2d\xaf\ +\xab\x41\x43\x96\x5e\x4c\x60\x85\x4c\x1b\xe1\x9f\xdb\x39\xcc\x3b\ +\x4f\x22\x11\x67\x35\x69\x33\xf0\xb0\x4b\x98\x88\x47\x34\x28\xad\ +\x31\x6a\x9f\x3f\x2d\x12\x9c\xd4\xc5\xe4\x5f\x71\x59\xbd\x7f\xb7\ +\xb9\x76\xa5\x8b\x5a\x5d\x76\x43\x15\xbb\x6a\xb3\xab\xde\xbb\xbb\ +\xca\xe5\xf5\x98\xb0\x9a\xc1\xd2\x7c\x37\xb2\x45\x7b\xcb\x1a\xb8\ +\x39\x9d\x5c\x42\xcb\x79\xea\x16\x5b\xec\xa9\x57\x84\x4f\xb0\x24\ +\xe5\xfb\xa0\x17\xcc\xe2\xe2\xf2\xe7\x32\x4e\x33\x70\xc6\x9a\xae\ +\xa6\xdc\xef\xe1\x86\x98\x86\x07\xb8\xb6\x55\xb1\x69\x69\x61\x65\ +\xd5\xfd\x0a\x96\x83\x8d\x61\x52\xac\x8a\x72\xfe\xca\x09\x17\x13\ +\xf2\xd6\x37\x15\xa0\xfd\xac\xba\x9f\xd3\xb7\x93\x9e\xa7\x58\x2c\ +\xb6\x0e\xd4\x4d\x06\x6d\x5e\xe3\xc0\xc1\x0d\x85\x10\x9d\x1d\x2f\ +\x6d\xc1\xd2\xab\xa3\xa4\xd1\x71\x69\xac\x93\x76\x3e\xdb\x5f\xf6\ +\xa9\x5a\xe2\x5a\x3f\xa6\xa5\x4e\x1e\xd7\xf6\x09\x45\x8c\x2d\x31\ +\x5e\x2c\xd8\xd5\xc1\x12\x1f\xd5\x52\x2f\xcd\xd0\x27\x14\x31\x26\ +\x6d\x11\x8f\x99\xef\x09\x2d\xe1\x53\xbc\x3a\xd0\x52\xeb\xd1\x30\ +\xf6\xca\x25\x20\x3c\x5e\xdd\xc6\xf7\xdb\x6e\x06\x1e\x1a\xe6\xd7\ +\xa5\x03\x28\x7b\x35\xa2\xcf\xa1\xba\xf7\x45\x70\x65\x59\xd7\x9d\ +\xdc\x5d\x4c\x84\x8c\x8c\xe1\x9c\xf5\x4c\xc9\xfd\xc5\x84\x99\xc8\ +\x28\x2b\x95\xe9\x5a\x17\xa3\xb4\x8b\x51\xda\x12\xb4\x65\x23\xa1\ +\xb4\xe0\xaa\x6b\x5c\x36\x33\xf8\x2d\xcf\x2a\x00\xc8\xdd\xd6\x95\ +\xef\x10\x64\xfe\x99\xff\xb6\x75\xbd\x9e\xba\xb5\x6f\x20\x2c\x37\ +\xb0\x78\x00\xf3\x76\x88\x0e\x0f\xaa\x7b\xc4\xaf\x7d\x52\x9e\x4e\ +\x0e\xf4\x77\xb3\x79\x0f\xd3\x26\xc1\x3c\xe0\x0c\xfe\xa3\xa3\x14\ +\xf7\x35\x05\x05\x7c\x86\x2f\x32\x4a\xf3\x11\x51\xee\x13\xc3\x34\ +\x33\x08\x8b\x32\x5b\x66\x00\x25\x9e\x8e\xd1\x88\xfb\xcf\x3e\x0f\ +\xd8\x64\xb0\x36\xa6\xed\x20\x96\x7e\x1f\x7f\x08\x9f\xf2\x88\x90\ +\x7e\x8f\x3e\xf1\x90\xea\xd7\x32\xce\xb7\x90\xe5\xd6\x17\x93\x0a\ +\x6f\x57\x50\x67\xbc\x66\x91\x14\xfe\x9a\xf2\xc8\x50\x7f\xbd\xe9\ +\xf5\x79\x0a\x0a\x85\x47\xe1\x50\x28\xbe\x2d\x12\x85\xe4\x79\xb1\ +\x68\xd4\x6e\xe3\x26\x1e\x77\x87\x71\xd7\x19\x77\xb3\xe3\xfc\x61\ +\xc4\x87\xf5\x00\xf4\x4e\x08\x86\xc7\xe2\xea\x59\xe3\x51\x5b\xf3\ +\x75\x03\xa4\x8e\x0a\x3a\x0c\x90\x6f\x1a\xed\xcf\xaa\x4d\x43\xd8\ +\x97\x6b\x73\x1d\x57\x65\x76\xf7\x1a\x6a\x69\x25\x15\xa5\xe0\x6d\ +\x53\xb8\xd7\x52\x28\x69\x24\x9b\x0e\x6e\x87\x24\x0c\xb0\x89\x68\ +\x22\xe9\x54\x53\x40\x29\x4d\x0c\xff\x73\x69\xfe\x2b\x00\x7d\xa3\ +\x79\xd0\xaa\x95\x04\xfe\x6a\xc5\x53\x63\x05\x13\x76\xba\x77\xdb\ +\x51\x50\x19\x51\x08\x22\xcd\xa6\x52\x46\xd2\x4a\x46\xfe\xdf\xf4\ +\xce\x3e\xa5\x77\xcc\xe7\x4f\x01\xed\xf3\xd6\x78\x27\x65\x65\x76\ +\x5c\x56\x96\xdf\x38\x2d\x8f\xc9\x7b\x49\xcb\x87\x69\x79\x50\x5a\ +\x9e\xe0\xd5\xcf\x95\x98\xd9\x93\x95\xb2\xfc\x1e\x23\xeb\xa8\x42\ +\x80\x44\x94\x30\xc6\x85\xd0\x00\x96\x5c\x6a\xc3\x88\xe2\x9f\x5b\ +\x2b\xb3\xe3\x8a\x65\xf5\x8d\xa3\xf2\x99\x37\xee\x7f\x9c\xa8\x14\ +\x9f\x15\x12\x9f\x0e\xcb\xf3\x19\x1e\x95\xf9\xbb\x6e\xa7\x8e\xc7\ +\x76\xe9\x4d\xe6\x6e\xcf\xba\xd9\x5c\xc5\xdd\xf4\x36\xf1\xd2\x79\ +\x33\x80\xe8\x85\xff\x34\x1d\x57\x45\x99\xba\xb2\xed\x52\xfe\xb3\ +\xd7\xd5\x58\xaa\x3e\x9b\x3e\xdb\x9f\x1d\x8e\xda\xf5\x93\xf1\xfe\ +\xed\x75\x9c\x16\xb7\xa0\xec\x87\x9d\x1f\x8b\x62\x8d\x5c\x50\xc3\ +\x71\x6e\xcd\x41\x3f\xda\x82\xe9\x88\x2b\xbc\x0e\x3a\xd1\x7c\x36\ +\xb2\xb0\x1d\xa5\xfa\xa0\x73\x57\x96\xa0\xd4\x70\x15\xdf\x3b\x58\ +\x95\xff\x6a\x7d\x73\x7b\x5d\xdc\x2e\x4b\xd4\x4e\x55\xee\xdc\x43\ +\xce\xb4\x48\x76\x78\xf0\x1d\xee\x6a\x53\x37\xc7\xad\x03\x0a\xe4\ +\x0d\xaf\xae\x8a\xbb\xf1\x01\x6e\xb3\x1c\x56\x1b\x36\x07\xb8\x9a\ +\xda\x47\x08\xba\x13\x5d\x7d\xa0\xb4\x86\x02\x04\x98\xc7\xb8\xd1\ +\x1a\x4c\x3e\xd2\xb9\x8e\xef\xb2\x75\xf6\xd1\xa5\x08\x00\x8d\xbf\ +\xac\x5d\x15\xa7\x71\x15\xf7\xbe\xd1\xb6\x30\x0d\x52\xda\x50\x4b\ +\x17\xf3\x7f\xff\xf8\x53\x17\xfe\x49\x32\xff\x4f\x51\x7e\xe8\x83\ +\x1a\x09\xe2\xab\x62\x07\x13\xef\x40\x09\x4f\x71\x93\x39\x42\x60\ +\x5c\x5d\x66\x6b\xb0\x38\x9e\xbd\xff\xf5\x6e\xbd\x02\x2f\xed\x3a\ +\xf6\x88\xf1\x50\xa9\x1f\xb4\x1e\xb6\x74\xf5\xd9\xfa\xe8\xeb\x88\ +\x34\x59\x67\xc8\x34\x7b\x57\x65\xab\xd5\x2f\x28\x64\x00\x53\xcd\ +\xa0\x59\xb5\x72\x97\x5e\x66\x7d\xdb\xae\x62\xd6\x2c\xa3\x45\x99\ +\xc1\x2a\xcf\x67\xad\x1a\xfc\xd3\xb2\x57\xcf\x9e\xcf\x74\x1a\x5e\ +\xc5\x57\x6e\x75\x31\xf9\x3b\x76\x06\x07\xbd\xcb\xb2\xd8\x6d\xd6\ +\x45\xea\x1a\xf6\x56\xad\xcb\x21\x42\x2c\xb9\x54\x3d\x24\x54\x63\ +\xe9\x03\xea\x6e\x43\x25\x27\xca\x4c\x43\xa5\x61\x3f\x43\x88\x60\ +\x6f\xfa\x2c\xb0\x89\xab\xeb\x5e\x7d\xd5\x41\x09\x4f\x23\x26\x0c\ +\x33\x5c\x4e\x09\x5e\x91\xa0\x0c\x42\xcc\x4e\x43\xc0\x3b\xab\xac\ +\x31\x66\x0a\xf9\x29\xb2\x14\x0a\xf7\x37\x03\xc8\x46\xaf\x08\x60\ +\x03\xa5\x8d\xd4\x54\x4e\xb9\x88\xe0\x5b\x30\x15\x24\x01\x01\x8e\ +\x88\x49\xa5\xa9\x0e\x42\x13\x71\x2a\x34\x65\x53\x6a\x6a\x0a\x1b\ +\x84\xed\xad\xd9\x6b\x6c\x79\xa6\x64\x48\xd1\x0d\xb0\xd7\xd8\xf3\ +\x91\x69\xc7\xa9\x82\x86\x96\xf6\x04\x26\x18\xe1\x82\xc6\x96\x05\ +\x84\xf5\x04\x9d\xa8\xc3\x09\x9a\xe0\xe3\x30\x5f\xb5\x38\x5a\x62\ +\x70\xb5\x24\xa3\x04\x77\x4f\x10\x20\x36\x75\xca\x1b\x25\x80\x11\ +\x24\x8f\x18\x0e\xa0\x07\x04\xfe\xc0\x12\x8c\x0b\xe5\xcf\xf0\xec\ +\xab\x49\xa5\x6d\xca\x04\xc4\x54\x92\x71\x45\xe4\xdb\x05\x44\xc3\ +\xfc\x15\xf1\x1f\xff\x30\xc8\xab\xfe\xb1\xdc\xad\xdc\xdc\xdd\xb8\ +\xbc\x48\x53\x48\xbc\x65\xf1\xc1\xcd\xf3\x22\x77\xcd\x7d\x8d\x53\ +\x73\xd8\x33\xb7\x0d\x98\x96\xc0\x99\xe7\x57\xbb\xaa\x1a\xb6\xfd\ +\xb7\xc8\xf2\x39\x04\xa1\x2b\xdf\xae\xe3\xf2\x83\x2b\xeb\x61\xea\ +\xfb\x70\x5b\xc5\x65\xb5\xd7\xb2\xce\xd2\xbd\x67\x97\xa7\x7b\x82\ +\xfd\x50\x2b\xc0\xa9\x6a\x2e\xda\xb6\x34\x86\x5c\x51\x96\xf1\xfd\ +\x1e\x25\xb6\xd6\x05\xc6\x9c\xb4\x6d\xfd\x2a\x6f\xb2\x6d\x76\x95\ +\xad\xf0\xc1\xdf\xae\xdc\xdb\x34\xdb\x6e\x20\xfe\xe6\x59\x8e\x13\ +\x7f\x5b\xdc\xb8\x72\xb1\x2a\x6e\xbb\x7e\x97\xc7\xf0\x15\x5e\xc5\ +\xc9\x07\x8c\x58\x98\x58\x9c\x00\xea\xef\x30\xf6\xc6\xac\x55\x1f\ +\x81\xc7\x65\x32\xac\x8c\x8e\x88\x41\xa6\x95\xb2\xd6\xc7\x60\xff\ +\x14\x72\x15\x19\xc2\x88\x14\x53\x69\x22\xa6\x38\xb5\x2f\x31\xf8\ +\x9d\xc6\xa0\x7a\x3c\x06\xeb\xf0\x9a\x43\x8a\x7a\xfd\xea\x70\xeb\ +\xf2\xe6\xe8\x58\x7c\xa5\xaf\xa4\x22\xe4\x61\x38\x6a\xcb\x08\x65\ +\xca\x1e\x15\x95\xde\x87\x5f\xa2\x12\x92\xf9\xb2\xb9\x19\x06\x67\ +\x63\xb8\x66\x0b\x32\x80\xca\x51\xe3\x69\x6b\x1e\x1a\x2f\x22\x9f\ +\x6d\x3e\xd2\x7e\x4e\xb0\xe3\x27\x2c\xd1\xeb\xf7\x78\xd3\x0c\xdd\ +\xe2\xf7\xb2\x8a\xc7\x2c\xa8\xd4\x0d\xe3\x46\x09\x44\x29\x0d\xa5\ +\x85\x04\xc8\x0a\x61\x2b\xc5\x04\xb1\xc2\x83\x0f\x89\xa4\x62\x12\ +\xc0\xd0\xc0\xd6\x98\xf0\xbe\x45\x44\xc4\x72\x60\x20\x53\x06\xf8\ +\x61\xb9\xd0\x81\x88\x34\x37\x82\xa8\xae\xef\x21\xed\x60\x64\xec\ +\xe2\x50\x0f\x03\x12\xb5\x43\xf7\x4d\xfd\xd8\x61\x37\x38\x34\x6a\ +\x02\xf0\xaa\xfa\xee\xf0\x90\xa3\x47\xa6\x0e\x13\xb4\xec\xc1\x66\ +\xb0\x45\xcb\xc1\xaa\x55\x51\x86\xb0\xef\xb8\x89\xab\x5d\xe9\xfa\ +\xca\xfb\x81\x37\x3e\xc5\x74\x20\xd1\x10\xb2\xaf\x67\x98\xa7\xb1\ +\x50\x0f\xb2\xa9\xd0\x50\x08\x18\x49\x2c\x28\x9a\x83\x36\x28\xb3\ +\xd0\x18\x71\x3c\x86\x65\x35\x66\x4b\x68\x51\x91\x86\x5d\xb2\x55\ +\xc8\x49\xa8\x55\x4c\x4f\x65\xc4\x90\x0f\xf0\x1a\xf4\x20\x09\x57\ +\xa8\x39\x28\x19\x61\x17\x16\x84\x9e\x0a\x4f\x7f\x15\xa4\x27\x6a\ +\x54\x10\xc2\xe0\x82\x18\xe5\x33\x82\x92\x9a\x28\xe6\xdb\x6a\x81\ +\x61\x23\x91\x63\x4e\x62\x16\x08\x0d\x43\x5e\xd8\x98\x5b\x2a\x82\ +\x10\xf6\x68\xd6\x52\x26\xa0\x51\xe2\x80\x12\xf2\x49\xd8\xc8\x45\ +\x5f\x68\xc5\xda\x88\x0b\x17\x0a\x98\x2e\x78\x11\x6c\x4a\xfc\x92\ +\x80\x44\x33\x74\x28\xc5\xb9\x18\xe6\x8a\xd3\xa2\x1a\x12\xee\x73\ +\x40\xf2\x1f\x28\x94\x47\x9d\xf5\x54\x25\xab\x17\x25\x1f\x8f\x97\ +\x5c\xc3\x5e\x0c\x3c\xdf\x4e\x05\x8d\x2c\xec\x09\x19\x43\xc0\x04\ +\xf0\x11\xb0\xf9\x83\x38\x06\x08\xa5\x06\x0a\x38\x15\x11\xc6\x8c\ +\xa0\x53\x3c\xac\x32\xf0\x2f\xf0\x21\x07\x01\x4c\x31\x32\x20\xcc\ +\x98\xa6\x10\xc9\x8a\x09\x0e\x54\x50\xcb\x6b\x22\x88\x08\x30\x90\ +\xa0\xe4\xf4\x2f\xca\xa4\xa2\xa0\x58\x5f\x9e\x19\x61\x04\xc7\xa8\ +\xd5\xc2\x70\x63\x82\x46\x20\xc5\xa6\x46\x24\x48\x24\x94\x02\xc2\ +\x40\x44\x1b\xa1\x04\x70\x82\x44\x40\x11\x43\x3d\x06\x08\xaa\x0c\ +\x41\xc8\x6c\x65\x86\x8d\x50\x8e\xb3\x85\x8a\xca\x6a\x7c\x53\x27\ +\xb9\xd1\x5c\xd4\x15\x28\xd4\xb9\x8c\xc3\xa2\x34\x20\x30\x2c\x74\ +\x04\x5a\x0d\x11\x5f\x06\xad\xa7\x79\xab\x7f\x75\xf3\xe2\xaf\x27\ +\xe4\x77\x34\xa8\x25\x90\x3d\xa8\x46\x88\x16\x02\x13\x3c\xc5\x2c\ +\xc3\xa8\xaa\x5d\x00\x4a\x69\x0b\xae\xc2\x18\x41\xa7\x60\x91\x34\ +\xd2\x5a\x11\x40\x65\x20\x39\xd1\x0a\x3d\x11\x72\x82\x25\x98\xde\ +\x89\x25\x0a\xb3\x0c\xa4\x6c\xa2\x28\x47\xa7\xe3\x42\x0a\x8b\x44\ +\xb0\xb7\x35\x12\x5a\x0c\xe5\xe0\xaf\xe0\x4a\xe0\xf6\x42\xd0\x11\ +\xa7\xa1\xea\x68\xa7\xe9\xfc\xa4\x3b\x30\x2d\x52\x87\x55\xe4\x16\ +\x9c\x26\x49\xbe\x96\x53\xc9\x17\xa7\x3a\xc1\xa9\x0c\x02\x12\x91\ +\x0c\xdf\x24\x83\xab\x50\x83\x85\x1a\x47\xe7\x80\x6b\xc4\xde\xfc\ +\xf8\xfa\xeb\xd3\xf6\x7e\xc4\xdc\x8f\xf8\xc6\xe7\x97\x6f\x83\x82\ +\xb1\x0d\x23\x81\xf5\x08\x14\xb6\x26\xd2\x92\x81\xa7\x23\xec\x33\ +\x40\x61\x0b\x35\x33\xf8\x3a\x91\x56\x09\x5f\xa2\x72\x28\xa7\x7d\ +\x84\x40\xac\x49\x2c\xc4\x24\x96\x7e\x06\xa3\x0d\x4a\x29\xcd\xa9\ +\xe4\x3e\x61\x40\x1a\x81\xb2\x1b\x23\x49\x49\x41\x7d\x1b\x03\x38\ +\x86\xc8\xf1\x77\xc6\xd8\xba\x88\x93\x50\xf5\x09\xe4\x85\x34\xa2\ +\x35\x3d\xa2\x98\x1a\x78\xc8\x9f\xd3\x5b\x4f\xf0\x92\x2f\x70\x12\ +\xf5\xb0\xc6\xc7\x74\xcb\x70\xb3\xc3\x23\xad\x21\xe5\xb3\x80\x21\ +\xd0\x52\x2c\xad\xd1\x55\xc0\xa2\xf6\xc5\x7c\x5f\xd5\x7c\x5f\x64\ +\x3f\xb5\x6f\x3f\x01\x60\x46\x98\xe5\x76\x0a\x55\x9e\xe0\xd2\xa7\ +\x4a\x88\x6c\xd8\x1c\xc1\x0e\x17\x77\x3e\xdc\x04\x7e\xcb\x65\x09\ +\xd5\xbe\x2c\x22\x50\x2c\x61\x80\x73\xe6\x7f\xc6\x04\x91\x0e\x69\ +\x95\x51\xa4\x82\xa1\x94\xc6\x9d\x1d\x11\x4a\x49\xe5\xcb\x3f\xaa\ +\x2d\xd6\x88\x8c\x13\x6b\x39\xf2\x69\xd8\x45\x31\x8b\x3f\x3c\xc3\ +\x97\x05\x2f\xce\x71\x42\x26\xea\xec\xdd\x9d\xe2\x86\x09\x64\x73\ +\x57\xe2\x6b\x36\xfc\x95\x19\xe5\x82\x28\x6d\xbf\x15\x18\xec\x65\ +\x8c\x7f\x04\x02\xca\x1f\xa8\xa3\xad\x47\x03\x48\x04\x4c\x8b\x80\ +\x63\x61\x2e\xa1\x19\x37\x0f\x50\xa9\x73\x25\x5f\x2c\xfe\x35\x2c\ +\x8e\xbf\x61\x8f\x24\x85\x1c\x4b\xd5\xc8\x7e\xe4\x31\x0f\x51\x54\ +\x28\xab\x68\xf7\x76\x7e\x79\x79\x76\x8e\x6f\x41\x2f\xcf\xfe\x07\ +\xf9\x49\x6f\x1f\ +\x00\x00\x14\x5f\ +\x00\ +\x00\xb3\x50\x78\x9c\xed\x5d\x6b\x6f\xe3\x38\x96\xfd\x5e\xbf\xc2\ +\xeb\xfe\xd2\x85\xb5\x68\xbe\x1f\xe9\xa4\x06\x8b\x69\xcc\x62\x80\ +\x1e\x2c\xb0\xd3\xbd\xfb\x71\xe0\xd8\x72\xca\xdb\x8e\x1d\xd8\x4e\ +\x25\xa9\x5f\xbf\xf7\xd2\x2f\x91\xa2\x2c\xc7\x0f\x39\xd3\x63\x0b\ +\xdd\x15\x51\x94\xc8\x7b\x78\x78\x78\xf9\x92\x6e\xff\xf4\xfa\x38\ +\x6e\x7d\xcb\x67\xf3\xd1\x74\x72\xd7\x66\x84\xb6\x5b\xf9\xa4\x3f\ +\x1d\x8c\x26\x0f\x77\xed\xdf\x7e\xfd\x4b\x66\xdb\xad\xf9\xa2\x37\ +\x19\xf4\xc6\xd3\x49\x7e\xd7\x9e\x4c\xdb\x7f\xfa\xf2\xe9\xf6\xdf\ +\xb2\xac\xf5\xe7\x59\xde\x5b\xe4\x83\xd6\xcb\x68\xf1\xb5\xf5\xd7\ +\xc9\xef\xf3\x7e\xef\x29\x6f\xfd\xf8\x75\xb1\x78\xba\xe9\x76\x5f\ +\x5e\x5e\xc8\x68\x15\x48\xa6\xb3\x87\xee\xe7\x56\x96\x7d\xf9\xf4\ +\xe9\x76\xfe\xed\xe1\x53\xab\xd5\x82\x74\x27\xf3\x9b\x41\xff\xae\ +\xbd\xba\xe1\xe9\x79\x36\xf6\x11\x07\xfd\x6e\x3e\xce\x1f\xf3\xc9\ +\x62\xde\x65\x84\x75\xdb\xdb\xe8\xfd\x6d\xf4\x3e\xa6\x3e\xfa\x96\ +\xf7\xa7\x8f\x8f\xd3\xc9\xdc\xdf\x39\x99\xff\x50\x88\x3c\x1b\x0c\ +\x37\xb1\x31\x37\x2f\xc2\x47\x62\xce\xb9\x2e\xe5\x5d\xce\x33\x88\ +\x91\xcd\xdf\x26\x8b\xde\x6b\x16\xde\x0a\x79\x4c\xdd\xca\x29\xa5\ +\x5d\xb8\xb6\x8d\xb9\x5f\xac\x9b\xd7\x31\x40\x51\x99\x19\x7f\xb5\ +\x98\x3a\xc0\xff\x04\xff\x6d\x6e\x58\x07\x90\xf9\xf4\x79\xd6\xcf\ +\x87\x70\x67\x4e\x26\xf9\xa2\xfb\xf3\xaf\x3f\x6f\x2e\x66\x94\x0c\ +\x16\x83\xc2\x63\xd6\xe8\x07\xe9\x06\x45\x32\xe9\x3d\xe6\xf3\xa7\ +\x5e\x3f\x9f\x77\xd7\xe1\xfe\xfe\x97\xd1\x60\xf1\xf5\xae\xad\xe5\ +\xd3\xab\x3f\xff\x9a\x8f\x1e\xbe\x2e\x0a\x01\xa3\xc1\x5d\x1b\x2c\ +\x54\x96\x33\x7f\xbe\xce\xc3\xcd\x86\x49\x94\x08\xbe\x8c\xba\x7a\ +\x70\xf1\x92\xb4\x44\x10\xd6\x9a\x39\x6b\x75\x78\xff\x60\xda\xc7\ +\x4c\xdd\xb5\x9f\x66\xf9\x30\x9f\x01\x15\xf3\x79\x36\x98\xf5\x86\ +\x0b\xb2\x46\x74\xf3\xc0\xe9\xf3\xe2\xe9\x79\xf1\x8f\xfc\x75\x91\ +\x4f\x96\x4f\x06\x9b\x0a\x06\xfa\xcb\x78\x1b\x09\x8c\x2b\x90\x9d\ +\xb5\xbf\x40\xc8\xed\x20\x1f\xce\xf1\xca\xd2\x2e\x3c\x03\xc3\x84\ +\xbf\x06\x57\xa1\x70\xf2\xde\xec\x3f\x67\xbd\xc1\x08\x28\xb9\x8c\ +\x57\xc8\x45\x7f\x3a\x1e\xe7\x7d\x00\xa7\x37\x7e\xe9\xbd\xcd\xdb\ +\x9b\x08\xf0\xa8\xf0\x56\x2d\xa4\x5b\x3d\x14\x1e\x3b\x5f\x4c\x9f\ +\xd6\x71\x01\x80\xc5\xdb\x18\xac\xc6\xc0\x0c\x9e\x38\x9d\xdd\xfc\ +\x40\xfd\xef\x27\x1f\x34\x85\x42\x1a\x2d\xde\x6e\xd8\x4f\xed\xed\ +\x3d\xd3\xe1\x70\x9e\x43\xc2\xb4\x10\xe6\x0b\x06\xee\xd0\x42\xb1\ +\x76\xab\x7b\x5c\x6a\x34\x95\x1a\x4b\xa7\x26\x36\xa9\xdd\x76\x43\ +\xb3\x77\xc3\x58\x42\x49\x08\x63\xde\x81\xd2\x10\x7e\x5a\x1f\x88\ +\x12\xa4\xe5\xde\x85\xd2\xb0\xd7\x1f\xf2\xfb\x3d\x52\x4b\xa1\x24\ +\x84\x65\x75\x28\x6d\x68\xf5\x04\x2c\x7d\x02\x5e\x81\xc2\xad\x9f\ +\xb4\xa9\x24\x8b\x37\xac\xd4\x61\x54\x31\x68\x97\xa8\xf9\xed\xe9\ +\x1f\xaf\x60\x78\xeb\xa6\x25\x38\xfc\x8f\x25\x63\xbc\x2d\x63\x30\ +\x28\x7d\xf8\x87\x26\xe3\x7c\xc7\xaa\xbf\xe3\x31\xab\x1c\x64\xd3\ +\xd9\xe8\x61\x04\x35\xcb\xc7\xe3\x8c\x08\xff\x0b\xef\x01\x30\x0a\ +\xb6\x41\x45\xdb\x96\xc0\x2d\x62\xd1\x1b\xbf\xbb\xaa\x79\xfd\xbc\ +\xf9\x0a\x8a\x71\xd7\xfe\x21\x51\xe7\x8a\x69\x87\x49\x00\x71\xd5\ +\xe6\x72\x1f\xc0\x62\x8c\x0a\xa2\x85\xdb\xde\xd4\x07\x80\x98\xe4\ +\x92\x48\xa9\xb7\x71\x87\xc9\xb8\xc3\x64\xdc\x19\x04\x3a\x08\xa3\ +\x9a\xc9\x4d\xe0\xc3\x2a\x07\xbf\xce\x7a\x93\x39\x08\xfa\xe3\x5d\ +\xfb\xb1\xb7\x98\x8d\x5e\x7f\xa4\xc4\x39\x2b\x8c\xe5\xaa\x43\x09\ +\xa5\x5a\x2a\xc1\x79\x27\xc3\xbf\x19\x17\x52\x0b\x08\x66\x0e\xca\ +\xcb\x31\xd7\x11\x44\x49\x2b\x8d\xd5\x1d\xc6\xa4\x22\x5c\x72\xfe\ +\xb9\x94\xc6\x6f\x93\xd1\x02\x5a\xaa\xe7\x79\x3e\xfb\x3b\xaa\xfd\ +\x7f\x4d\x7e\x9b\xe7\x5b\xd4\xf7\xae\x99\x56\xcb\xaa\x9a\xb9\xe1\ +\xb8\xd5\xba\xa6\xf2\x25\xaa\x95\x61\xf7\x7c\x68\x4b\xd5\xaa\xb2\ +\x66\x16\x52\xb3\x35\x95\x2f\x29\x75\xdc\x38\x55\x99\x5a\x45\xcd\ +\x3c\x3d\x37\x3d\x9e\xd5\xdc\x14\x5a\xb3\x3d\x8b\x72\x1f\x52\x69\ +\x66\xb5\x72\x16\xc8\xe3\xb4\xd6\x4a\x02\xa5\xc0\xdb\x13\x82\x4b\ +\xcd\x21\x10\x12\xe3\x48\xa3\x4c\x70\x43\xb8\x51\xda\x76\x32\xae\ +\x14\xb1\x92\x09\xfd\x39\xa8\x23\xdc\x72\x02\xac\xb4\x32\xa8\x23\ +\xdc\x11\x26\x1d\x95\x3a\xa8\x23\xe5\xb8\xc3\x64\x5c\x5f\x47\x88\ +\x32\x50\x7b\xec\x01\xcc\xd4\x96\xbf\xab\xcd\xd0\x03\x3a\x3c\xb4\ +\xcd\xd0\x60\xcc\xbb\xda\x8c\x21\xdb\xaf\x1d\x4f\xb6\x19\x1a\x3c\ +\xa4\xe6\x99\x89\x78\xee\x60\xa6\x65\xe6\x64\xcc\x04\x2f\x0c\xb8\ +\xc0\x41\xcb\x28\xf0\x8e\x73\x41\x35\x8a\x9d\x51\xd4\x30\xc3\x40\ +\xe0\xa8\x91\x0a\x54\xb6\x93\x49\x03\x84\xb5\x9a\xc3\x9f\x0c\x3d\ +\x48\x6e\xb5\x88\x98\x69\x28\x51\x56\x30\x1d\x30\x53\x08\x62\xc1\ +\xcd\xb6\x11\x33\x4b\x71\x87\xc9\xb8\x69\x66\xfe\xab\xb5\xd3\x02\ +\x10\x3f\x6d\x3b\x0d\x6e\xf6\x68\x91\x3f\xb2\x9d\x44\x93\x85\xcb\ +\xfb\x11\x0d\x69\xa0\x05\x27\xc6\x32\xca\x02\x1a\x40\x3b\x09\x6d\ +\xb0\xa3\x34\xa0\x41\x39\xee\x30\x19\x17\x68\xa0\x24\x32\x14\xe8\ +\x51\x07\xc4\x7e\x39\x5d\xf5\x35\x22\x10\xd2\xa9\xa7\x73\x1a\xe4\ +\x69\xb7\xa9\x21\x2c\x35\xcd\xaa\x64\x29\x2d\x24\xcb\x2e\x42\x4d\ +\x53\x3e\xf4\xbf\x48\xed\xd6\xb7\xee\xd1\xa4\x4b\x9e\x52\xc6\xfd\ +\xd2\xce\x07\x78\xd4\xa6\x7d\xdb\x0d\x8b\xed\xb8\x7e\x5e\x92\xd4\ +\x62\x47\x37\x10\x48\x5d\x76\x03\x77\x53\xe5\x95\x41\x5d\x95\xd8\ +\x92\xba\x42\x49\xbf\x41\xa8\x81\x32\x65\xdc\xd1\x6d\x82\xaf\x1c\ +\xe2\x1a\x07\xae\x20\x2b\xe0\xf5\x06\xa1\xd0\x94\x10\x2b\xc0\xfb\ +\xa9\x6b\x60\xdf\xcf\x5f\x51\x91\x50\x4d\xa6\xd2\x06\x04\xc6\xd6\ +\xd1\x45\x5e\x90\xaa\xea\x70\xaa\x3a\x8b\xc7\x1e\x54\x3d\x5b\x8b\ +\xbf\x2e\xba\x9d\x2e\xa8\x2c\x34\x8f\xfb\xeb\x2f\xf4\x8b\xc0\x87\ +\xe4\x45\xf9\x41\xa7\x8f\x61\xf3\x6d\x23\x55\x2b\xc7\x1d\x26\xe3\ +\x62\x33\xcc\xb4\x24\x1c\x03\x4f\xae\xbf\xb2\x26\xf5\x74\x4e\x83\ +\x3c\xed\x36\x35\x84\xa5\x8e\x58\xe6\x82\xa4\x4e\x76\xa8\xf6\x4b\ +\xbb\xe7\x7f\x1f\x41\x7f\x55\x50\xca\x25\xfd\xb5\xef\x24\x35\x4a\ +\x12\xf8\xa6\x44\x39\x5e\x68\x7e\x51\xbe\xa4\xe2\x44\x04\x25\x8d\ +\x52\xc7\x9c\x80\x56\x59\x17\xb5\x1a\x42\x15\xd3\x44\x18\x5a\xe4\ +\xef\xa9\xf4\x57\x55\x24\x54\x93\xa9\xb4\x01\x81\xb1\x35\x74\x51\ +\xf4\x70\xaa\xea\x1c\x8f\xc3\xa9\xaa\x52\x6e\xca\x9e\x54\x1d\x58\ +\x3c\x0e\xd5\xdf\x53\x52\x55\xef\xa4\x2a\xa7\x07\x50\x15\x5c\x3c\ +\xf0\xff\x44\xd4\xd2\x4a\x27\x89\x61\xa2\x40\x60\xcf\x0a\x6a\xa0\ +\x8b\x15\xbb\x0a\xdb\xb8\x27\xa7\xaa\xae\x48\xa8\x26\x53\x69\x03\ +\x02\x63\xeb\xe8\x22\x8e\xa0\xaa\xff\x1d\x41\xd5\x94\x9b\xb2\x2f\ +\x55\xfb\x78\x7c\x04\xaa\x9a\xdd\x54\x7d\x6f\x57\xed\x75\xed\xfe\ +\x29\x1d\xa9\xaa\x50\x8c\x38\xe1\x22\x01\x73\x14\xfa\xe1\x4e\x44\ +\xaa\xba\x8d\x7b\x72\xaa\x9a\x8a\x84\x6a\x32\x95\x36\x20\x30\xb6\ +\x8e\x2e\xc9\x31\xd4\x3d\xa9\x6a\xf0\x38\x82\xaa\x29\xe7\x63\x5f\ +\xaa\x0a\x3c\x3e\x02\x55\xed\x6e\xaa\x1e\xd4\x01\x33\x50\x02\x81\ +\xff\xe7\x4b\xda\xe2\x70\x69\x2c\x60\xca\x32\x22\xb8\x70\x21\x83\ +\xb8\x03\x56\xf8\x16\xf8\xe4\x54\xb5\x15\x09\xd5\x64\x2a\x6d\x40\ +\x60\x6c\x1d\x5d\xdc\x11\x54\x15\x78\x1c\x4e\x55\x9d\x72\x3e\xf6\ +\xa5\xaa\xc6\xe3\x23\x50\xd5\xed\xa6\xea\x7b\x3b\x60\xcb\x36\x51\ +\x5a\x62\x62\xaa\x6a\xee\xa0\x4c\x6d\xd4\x2d\x67\x8c\x1b\xe2\x6c\ +\xe4\x00\x28\x2b\x88\x51\xfc\x1c\x54\x75\x15\x09\xd5\x64\x2a\x6d\ +\x40\x60\x6c\x1d\x5d\x52\x43\x4b\x7b\x52\x55\xe5\x78\x1c\x41\xd5\ +\x94\xf3\x71\xea\x61\xad\x73\x53\xb5\xe0\x8c\x26\xa9\x7a\x48\xb7\ +\x8a\x41\x99\x6a\x6b\xe2\x92\x16\x9a\x38\x25\x9c\x0d\x58\x01\x7a\ +\x44\x42\xbc\x96\x0c\xf2\x83\x9d\x20\x6b\xa7\xa6\x2a\xaf\x4a\xa8\ +\x26\x53\x69\x03\x02\x63\xeb\xe8\x92\x1a\x5a\x6a\x68\x04\x20\x39\ +\x81\xbb\x27\x55\xef\xfd\xef\x23\x50\x95\xed\xa4\xaa\x38\xa4\x5b\ +\x05\xca\x43\xa8\x94\xf1\x08\x00\xb3\x44\xbb\xd2\x08\x00\xb7\x84\ +\x2a\x19\xf9\xaa\x38\x2e\x6f\x98\x3e\x83\xaf\x5a\xb0\x37\x4c\xa8\ +\x26\x53\x69\x03\x02\x63\xeb\xe8\x92\x1a\x30\x6a\xa8\x5b\xa5\x53\ +\xce\xc7\x3f\xdb\x08\x00\xe7\xbb\xa9\x7a\x50\xb7\x0a\x5b\xd5\xa0\ +\xfc\xdf\x7c\x4b\xa9\x88\xb4\x31\x2b\x94\xd1\x84\x49\x1b\x77\xab\ +\x98\x1f\x2d\x3a\x07\x55\x79\x45\x42\x35\x99\x4a\x1b\x10\x18\x5b\ +\x43\x17\x73\xc4\xbc\x96\xea\xe1\x71\x38\x55\xcd\x11\xf3\x5a\x7d\ +\x83\xc7\x47\xa0\xea\xee\x79\x2d\x71\x48\xb7\x8a\x31\xe8\x6a\xb8\ +\xd2\x58\x0f\x94\xbf\xd4\x2a\x16\x30\x2a\x1d\xb1\x32\x76\x00\x20\ +\x50\x18\x73\x06\x5f\x95\x8b\x8a\x84\x6a\x32\x95\x36\x20\x30\xb6\ +\x8e\x2e\x47\xcc\x6b\xa9\x21\x1e\x47\x50\xf5\x88\x79\xad\xfc\x1e\ +\x8f\x8f\x40\x55\xb9\x9b\xaa\x87\x75\xab\x9c\x24\x5c\x45\x25\x8d\ +\x0b\x49\xac\x92\x11\x55\x9d\xe3\x20\x55\x8e\x86\xed\xb2\x80\x56\ +\x55\x1a\xe6\x6a\xd7\x38\xbd\x9f\xaa\xb2\x22\xa1\x9a\x4c\xa5\x0d\ +\x08\x8c\xad\xa3\xcb\x11\xb3\x55\xba\x87\xc7\x11\x54\x3d\x62\xb6\ +\xca\xcf\x3e\x7c\x84\x11\x00\xbe\x7b\xb6\x4a\x1c\xd4\xad\xd2\x92\ +\x50\x56\x9a\x02\x60\x1c\xd4\xc7\x45\x83\x55\x82\x5a\x5c\x6e\x15\ +\xa9\xaa\x10\x86\x68\xea\xce\xa1\xaa\xaa\x22\xa1\x9a\x4c\xa5\x0d\ +\x08\x8c\xad\xa1\x8b\x3d\x62\xb6\xea\xd8\x6e\x95\x3d\x62\xb6\xea\ +\x7e\x88\xc7\x47\xa0\xea\xee\xd9\x2a\x79\x48\xb7\x4a\x09\x4a\x0c\ +\x12\x20\x1c\x96\x94\x9a\x08\x2a\x22\x56\x70\x27\xa2\x99\x4d\xcf\ +\x20\x8d\x8b\xa0\xe4\x39\xa8\xaa\x2b\x12\xaa\xc9\x54\xda\x80\xc0\ +\xd8\x3a\xba\x1c\x31\x5b\x75\xac\x03\x60\x8f\x98\xad\xf2\xe3\x64\ +\xf1\xe2\xea\x8b\x50\x75\xf7\x6c\x95\x3c\xa4\x5b\xe5\x38\x98\x52\ +\xf6\x55\xa9\x20\xcc\xc6\x6e\xa1\xb3\x8a\x38\xcb\x4a\xdd\x2a\x83\ +\x9b\x03\xce\x41\x55\x53\x91\x50\x4d\xa6\xd2\x06\x04\xc6\xd6\xd1\ +\xe5\x88\xd9\x2a\x93\xe3\x71\x04\x55\x8f\x98\xad\xfa\x30\x54\x2d\ +\x8c\x46\x25\xa9\xfa\xde\x6e\xd5\x8e\xc5\xd6\x1d\x0a\x07\x18\x09\ +\xdd\x65\x61\xe1\xcf\x8c\x31\x62\x84\x55\xea\x73\x50\xf6\xdc\x1a\ +\xa2\x02\x04\xd7\x83\x9a\x86\xea\x68\x00\xd4\xd9\xd4\xa8\xec\x36\ +\xee\xa9\x89\x2e\xaa\x12\xaa\xc9\x54\xda\x80\xc0\xd8\x1a\xb2\xb9\ +\x23\x46\x65\xa5\xc6\xe3\x70\xa2\xbb\x23\x46\x65\xfb\x1c\x8f\x0f\ +\xb0\xd8\x90\x87\xd3\xb2\xf1\x62\x43\x79\xd8\x62\x43\xe8\xd4\x18\ +\x5a\x58\x8c\x89\x2b\xf0\xc0\x23\xb4\x52\xf1\xe2\xbe\x13\x1f\xd7\ +\x3a\x02\x1d\x9d\x70\xb9\x9f\x8f\x0b\xfd\xf5\x70\xc7\x16\xa7\x38\ +\x59\x7f\x86\xc5\x86\x05\x10\xfc\x8e\x03\xa9\x88\xd2\xc5\x32\x5c\ +\xe6\x54\xba\x70\x06\x2f\xc8\x53\xd1\xd4\xf2\x03\xfa\xc1\x03\xea\ +\x14\xf4\x88\x09\xdc\x63\x7d\x62\x77\xc4\x04\x6e\xcf\xe2\xf1\x01\ +\x16\x1b\xf2\xdd\x13\xb8\xf2\x90\xee\x9b\x86\xc2\x93\xdc\x15\x66\ +\x3a\x51\xbe\x2c\x85\x36\x5d\xc7\x43\xa5\x5a\x29\x22\x54\xec\x68\ +\x48\x6c\xe9\xe9\x39\x96\xc5\xf0\xaa\x84\x6a\x32\x95\x36\x20\x30\ +\xb6\x8e\x2e\x47\x4c\xe0\x1e\x4d\xd5\x23\x26\x70\x53\x69\x53\xc2\ +\x84\x51\x88\xc5\x25\x76\x1e\xee\xde\xdf\x25\xd9\xbb\x27\x1d\xfe\ +\x68\xfb\xbb\xce\x80\xf9\xee\xdd\x9e\x80\xf9\xe9\xdc\xbc\x7f\xce\ +\xdd\x9e\x67\xc0\x5c\x18\xb3\x03\x73\xd0\xa7\xb8\xd1\x04\x8c\x98\ +\xa1\xa1\xad\x90\x53\x66\xb8\x2a\x3c\x6a\x98\x8c\x3b\x4c\xc6\x05\ +\x5b\xb9\x22\xcc\x04\x5b\x77\x76\x17\xf0\x05\x11\x11\xfc\xbd\x3b\ +\x3b\x1b\xc1\xed\xa2\x88\xec\x5b\x6c\xff\x32\x88\x88\xf7\xee\x4b\ +\xff\xe3\x23\x22\xae\x88\x44\x88\xa8\x2b\x22\x11\x22\x57\x65\x8d\ +\x11\xb9\x2a\x6b\x84\x88\xbc\x2a\x6b\x8c\xc8\x55\x59\x63\x44\xae\ +\xca\x1a\x23\x72\x55\xd6\x18\x91\xab\xb2\x46\x88\xa8\xab\xb2\xc6\ +\x88\x5c\x95\x35\x46\xe4\xaa\xac\x31\x22\x57\x65\x8d\x11\xb9\x2a\ +\x6b\x84\xc8\xbb\xdf\x52\xf7\xc7\x47\xe4\xaa\xac\x31\x22\x57\x65\ +\x8d\x11\xb9\x2a\x6b\x8c\xc8\x55\x59\x23\x44\xcc\x55\x59\x63\x44\ +\xae\xca\x1a\x23\x72\x55\xd6\x18\x91\xab\xb2\xc6\x88\x5c\x95\x35\ +\x42\xc4\x5e\x95\x35\x46\xe4\xaa\xac\x31\x22\x57\x65\x8d\x11\xb9\ +\x2a\x6b\x8c\xc8\x55\x59\x23\x44\xdc\x55\x59\x63\x44\xae\xca\x1a\ +\x23\x72\x55\xd6\x18\x91\xab\xb2\xc6\x88\x5c\x95\x35\x44\xa4\xf8\ +\xde\x99\x2b\x22\x4b\x44\x3e\xb0\xb2\xde\x76\xf1\x3b\x62\xfe\xaf\ +\xcd\xf7\x20\xf0\xcb\x66\x83\x6f\xa3\xfc\xe5\xd3\xc6\xa4\xfb\xde\ +\x26\x7b\x4f\xbd\x87\xdc\x2f\x18\x07\x20\x96\x2b\xc6\x57\x17\xee\ +\xa7\xb3\x41\x3e\x5b\x5f\x5a\xbe\x33\x27\xb8\xb4\x5a\x53\xee\xd7\ +\xa3\xaf\x2e\x6c\x3f\xf9\x00\x4f\xdd\x5c\xa7\xe9\xeb\xf3\xaf\xbd\ +\xc1\xf4\x05\x6c\x88\x2f\x7e\x9f\x4e\x1f\xef\xda\x8a\x58\x6e\xf8\ +\x76\xc9\xf8\xb6\x4c\x01\x22\x29\x88\xe1\x42\x6f\xde\xea\xb6\xbd\ +\x88\xab\xad\x71\xa7\x99\xd9\x4c\x10\x6c\xaf\x3d\xcf\x66\x50\x58\ +\xd9\xb8\xf7\x96\x83\x4d\x0f\x42\x6c\x5e\xe5\x37\xff\x3a\x7d\x79\ +\x98\x21\x34\x8b\xd9\x73\x1e\xdf\x38\x98\xf6\x9f\xf1\xc3\x80\xd9\ +\xf3\xb2\x9c\x57\x9f\xa3\x2b\xc4\xc0\x7b\xb3\xfb\xfb\xe9\x6b\xfa\ +\x01\x2f\xa3\x09\x98\x9a\xad\x3e\x70\xc7\xc4\x06\xc9\x38\xc6\xfa\ +\x93\x77\x86\x56\xc5\x80\x14\x32\x5b\x71\xed\xad\x70\xcd\x5b\xf4\ +\x3c\x1a\xe4\xf3\x74\x96\xfc\xb5\xfa\x2c\x3f\xf6\x5e\x47\x8f\xa3\ +\xef\x39\x20\xb3\x7e\x2b\xef\xed\x63\xbe\xe8\x0d\x7a\x8b\xde\x96\ +\x4f\xeb\x10\x65\xb9\x5e\x7f\xc0\x6e\x36\x18\xde\xfc\xf7\xcf\x7f\ +\xd9\x6c\x70\xe8\xf7\x6f\xfe\x77\x3a\xfb\x7d\x4d\x5e\xa0\x2f\x44\ +\xe8\xdd\x4f\x9f\xc1\xdc\xcd\x16\x0c\x88\x37\xe8\xdf\xe0\xaa\xf2\ +\xde\xe2\xcb\xe8\x11\x58\x82\x9f\x34\xfc\xf7\xd7\xc7\x31\x30\x7b\ +\x73\x21\x88\x8c\x9f\x3b\xd9\x3e\x74\xf9\xd8\x59\xbe\xfc\x64\x61\ +\xf2\x2b\x8f\x83\xfe\xe3\x08\x6f\xea\xfe\x7d\x31\x1a\x8f\xff\x8a\ +\x89\x14\x36\x62\xac\x1e\x3a\x5a\x8c\xf3\x2f\x3e\xcd\xe5\x9f\x6b\ +\x2b\xba\x2b\x33\x36\xdb\x7c\xb6\x56\xde\x76\xd7\x30\xf8\xb3\x87\ +\x2d\x3c\x9e\x70\x25\x3a\x8e\x7b\xf7\xf9\xf8\xae\xfd\x0b\x5e\x6c\ +\x95\xae\x3e\xcc\xa6\xcf\x4f\x8f\xd3\x41\xbe\xba\x7d\x0d\xeb\x43\ +\x51\x9a\x8a\x14\x2e\xdc\x9b\xbf\x3e\x4d\x67\x8b\x6c\x38\x1a\xe7\ +\xcb\xcf\x1a\x76\xbf\x4e\x1f\xf3\xee\xdb\x74\x36\xfa\xbd\xfb\xf3\ +\x8a\xcc\xf3\xee\x2f\xbd\xfb\xee\xcf\xf8\x91\xc3\xee\xa8\x3f\x9d\ +\xcc\xbb\xcb\x0f\x1e\x3e\x4d\x1e\x2a\x9f\xf8\x3a\x78\x1a\x41\xfd\ +\x22\x5c\x1a\xcb\x0a\xaf\x8b\x8d\xe3\xbd\x55\xc4\x5b\x24\xf6\x0c\ +\x40\x6d\x30\x16\x3f\x2f\x86\xc7\xe6\x2c\x63\xcc\x11\xa6\x14\xc3\ +\x6d\x19\x42\x12\xab\x9d\xe6\x9f\xb7\x5b\x75\x9e\x7a\x8b\xaf\xdb\ +\x52\x4f\xa7\xaf\x09\x77\x5c\x4b\x51\x7c\x05\x42\xda\xa2\x7d\x62\ +\x1e\x8f\xe6\xb2\xcc\x30\xe7\x42\x04\xfb\xdf\xb0\x06\xb5\x18\x6e\ +\x63\x70\x8e\xf1\x0e\x93\x1c\xf7\xd6\x49\xdb\xea\xb7\x32\xc9\x88\ +\x56\xce\x75\x40\xd4\x04\x13\xbc\x95\x19\xdc\x77\x28\x74\x87\x4b\ +\xb8\x40\x55\x0b\x90\xb2\x00\x9b\x55\x18\xc2\xa5\x30\x10\x05\x14\ +\xd7\x38\xbf\xe1\x45\x73\x83\x51\x04\x6e\xb2\x10\x1d\x4b\x34\x33\ +\x10\x81\x53\xdc\x7f\xab\x0d\xee\xcf\x30\x04\xf7\xc1\x40\x42\x8a\ +\x80\xc2\x23\xf2\xf0\x38\x29\x35\xc4\x22\x8a\x6b\x61\x3b\x99\x70\ +\xc4\x58\xc3\xf1\x9b\x3d\x5c\x33\x09\x01\x96\x38\x0a\x01\x4a\x10\ +\x65\x94\x82\x2c\x13\x67\x39\x6b\x31\x78\x9a\xb1\x0e\x3f\x1c\x27\ +\x08\x95\x9a\xb7\x98\x76\x84\x33\x50\xf1\x0e\x6d\x81\x68\x83\x55\ +\xa2\x03\xcf\xb5\x54\xb6\x1c\xe6\x46\x9b\x0e\x64\x0d\x1e\xd6\xc2\ +\xb7\x14\x82\x47\xda\x11\x9c\x70\x6e\x64\xeb\x7b\x01\xa0\xd5\xee\ +\x26\x28\x82\xf1\x0d\xd4\xe4\x1f\x7f\x08\xdb\x64\xfc\x9e\xde\xe7\ +\x9f\xf0\x6a\xe1\x53\x57\xfe\x74\xf6\x3c\x86\x02\xfc\x96\x4f\xa6\ +\x03\x7c\x95\xe5\x6c\xfa\x7b\x7e\x33\x99\x4e\xf2\xe2\xb3\x37\xed\ +\x24\x54\x36\xd4\x05\x10\xcc\xfe\x1c\x7e\xfd\x14\x19\xa0\x68\x27\ +\xe0\x50\x4c\x67\x19\xb4\x26\xdf\x7a\x8b\xe7\x59\x8e\x1f\xec\x2a\ +\x6c\xe4\x7a\x48\x67\x1b\x53\x5d\xe7\x60\xfb\xd9\x4b\x3c\x5d\x36\ +\x0b\x7e\x6b\xd6\x3a\x04\x3d\x12\x48\xee\xe6\xfe\x79\xb1\x28\x86\ +\xfd\xdf\x74\x34\xb9\x01\xf5\x02\x39\x08\x49\xf5\x20\x55\x71\x97\ +\x5a\xb9\x9e\x71\xdc\x2e\x27\x9c\x5e\x6e\xc5\xde\x9e\x41\xb1\x53\ +\x60\xbf\x92\x0c\xb7\xe2\x58\x89\x2f\x9a\xf8\x5c\x61\x8e\x4f\x08\ +\x28\x61\x77\xa6\x44\xe1\x69\xf8\x02\x59\xbe\xaa\xd1\xeb\x33\x70\ +\x5e\xa0\xd1\x16\xca\x75\x80\xc6\x94\x38\x2e\xcc\xe7\x72\x11\x07\ +\x90\x30\xa0\x38\x87\xda\x6f\xe4\x06\x19\x6f\xfc\x18\x9a\xa4\xc5\ +\x8d\x5c\x87\x0d\x7a\xe0\x4a\xcc\x66\xbd\xb7\x65\xd1\x16\x94\xbc\ +\x90\xf9\x28\x85\x98\x05\x29\x4b\xb2\x10\xb4\xc2\x69\x06\xf5\x4c\ +\x10\x07\x35\xa8\x93\x29\x06\xe4\x57\x90\xc5\xcf\xc1\xe3\x10\xac\ +\xff\x01\xa7\x8b\x16\xde\x65\x58\xce\xd3\x5a\xc6\x4d\xf0\xf1\xa3\ +\x5d\xdc\x89\x4c\xf4\x8f\x0c\xc5\x70\x2f\x6b\xf1\x07\x29\xff\x0d\ +\x6a\xb9\x81\xb2\xa0\x58\x2b\xa1\xb2\x83\x10\x30\xb5\x3c\xcf\x38\ +\x56\x61\x5b\xba\x6b\xe4\x5d\x81\x52\xe8\xde\x15\xe4\x14\x79\x5e\ +\xe7\x71\x99\xc5\xd6\xda\x84\x6c\x65\x43\x32\xcf\xfc\xc8\x3c\xdf\ +\x76\x1f\xf6\x29\x47\xd5\x7c\x39\x6e\x5a\x15\x13\x7c\xc2\xa5\x00\ +\x98\xa0\x44\x52\x05\x0d\x02\xc8\xb3\x02\xd9\x6f\xfd\x07\xc8\x6d\ +\x47\x03\x6a\x96\xb7\x34\x6d\xe1\x51\x5b\xee\x0d\x95\x70\xc1\x9a\ +\x72\x41\x2e\x5b\xca\x30\xa7\xad\xde\xd6\x18\xca\xf4\xc6\x1e\xde\ +\x01\x99\x31\x56\xea\xcb\xb1\x75\x6b\x8b\x2a\x67\xc2\xdb\x12\x53\ +\xb7\x68\xcc\xda\x12\x7c\x7b\x9a\x82\x28\x8a\x48\x57\xdc\xf3\x73\ +\x41\x6b\xca\x99\xf0\xd6\x94\xc4\xe4\xdc\x45\x13\x54\xca\xf0\x24\ +\xa5\xfd\x55\x0e\x04\x76\xea\x4b\x0e\x44\xd4\x3a\x83\xeb\x82\x3f\ +\xfb\x8e\x96\xe8\xd8\xe6\x05\xfd\xb3\x55\xf3\xc2\x78\xba\x79\xd9\ +\xa3\x6d\xd1\x26\xae\xcc\x75\x68\x08\xee\x2a\xd0\xa8\x72\x5d\x62\ +\x70\xea\x1d\x98\x83\x1a\x74\x6f\x64\x7f\x34\xeb\x8f\xf3\x0a\xfe\ +\xee\xb0\xc9\x9c\xb9\x84\xd7\x88\x2f\xf3\x27\x74\xf0\xda\xb7\xe5\ +\xcf\x8f\xd8\x94\x42\x71\xcc\xa2\x1c\x17\x87\x39\xca\xa1\x1b\x6f\ +\xb5\xee\x72\xf2\x99\x9b\xcb\xb3\xd7\x64\x4e\xb6\xd7\xdf\x92\xd7\ +\x7d\x63\x82\x5f\x88\x6e\xfd\x19\xff\x61\x82\x58\x6a\xa0\xa7\xd6\ +\xda\xfc\x05\xae\x65\x0b\xfd\x4b\xec\x73\x14\x82\xb2\x20\x76\xe6\ +\x1f\xd1\x6f\xe1\x8b\x80\xb6\x8f\x60\x84\x81\x4e\x58\xef\x88\xe2\ +\xd3\xf1\x9f\xed\x43\xa8\x4f\x70\x1d\x07\x4f\xe0\xf2\xf7\x43\xda\ +\xe8\xe2\x5b\x08\x56\x66\xd7\xaa\x03\xfb\xc0\xf5\x61\x87\x9a\x57\ +\xd7\x06\x51\x65\xd1\xa9\x6b\x83\x6f\x30\x74\xf0\x6e\xb7\x02\x97\ +\x2c\x36\x6d\xdc\x22\x37\x28\xb5\xa1\x5f\x02\x1d\xd1\x65\x73\x91\ +\x61\x9f\xd8\xf8\x1e\xe7\x59\xdb\xbe\x1d\x68\x9d\xbb\x75\x88\xd0\ +\xd2\x69\xb4\x0a\x40\xa4\x91\x5a\xc3\xc9\x39\x54\x9b\x33\xfb\x3d\ +\x3b\xd0\x2a\x77\xc6\xcf\x8a\x56\xd9\x57\x0d\xb8\xb5\x02\x23\x8d\ +\xd8\xe5\xa9\xd5\x54\xb3\xb4\x04\xcb\x95\x1b\x05\x0f\xd6\xbe\xcc\ +\x5a\x55\xd4\x4b\x81\x55\xe5\x97\x9c\x09\xac\xb2\x9d\x1e\x2c\x83\ +\x1f\x29\x32\x76\xd9\x7a\x29\xae\x53\xdd\x29\xce\x88\xa2\xd0\x98\ +\x31\x22\x85\xbd\x18\xbb\x64\xb3\x32\xef\x2a\x64\x3e\x02\x23\x89\ +\x17\x38\xbc\xd0\xbb\xe9\x64\x12\x3f\x16\x51\x16\xc0\x86\xf0\x6a\ +\x56\xe8\x5d\x52\xe8\x1f\x37\x04\x5b\xf3\xab\xd8\x29\xcc\x56\x80\ +\x51\x42\x71\xd8\x09\x31\x65\xfc\xbc\x9d\xc2\x1d\x78\x35\x2b\xf5\ +\xae\x42\xea\x99\x26\xc6\x38\x86\x6f\x1b\x92\xda\xe8\xb0\x42\xae\ +\x01\x63\x92\x70\x61\x3a\x65\x01\x6c\x08\xaa\x46\x85\xde\xd0\xa4\ +\xd0\x23\xb5\x18\xb3\x38\x62\xcf\x09\x74\xf3\xd2\xd4\xca\xb6\xdc\ +\x52\x97\xa3\x56\xa3\x5a\x6f\x68\x85\xd6\x47\xba\x94\x92\x2e\x87\ +\xe2\x86\xef\x17\x63\x8e\x40\x8d\x48\x0c\x3f\x36\x02\x98\x6a\x54\ +\xeb\x8b\xcb\x13\x02\x82\xc5\x68\xa4\x46\xb4\x32\xbe\x72\x27\x96\ +\x43\x5a\x97\x02\xac\x51\xb1\xdf\x4e\xe9\x47\x80\x65\x25\x77\x22\ +\x59\x27\xd7\x90\x65\x97\xc5\xac\x51\xc1\x37\xb4\x42\xf0\xb3\x12\ +\xcb\x52\x8a\x9f\x7d\x0c\xa7\x42\x35\xab\xfc\xac\x42\xf9\x63\x34\ +\x92\x34\x5b\xb2\x6c\x55\x2f\x2f\xe5\xb5\xaa\x66\xa5\x9f\x55\x48\ +\x7f\xb6\xcb\x6d\xdd\x70\x2c\xae\xbd\x17\xc2\x4c\x37\xab\xfe\xac\ +\x42\xfd\xd7\xfd\xc4\x6c\x3d\xa2\xd3\x4b\xf6\xba\x09\x33\x38\xa3\ +\x81\x93\x00\xee\x52\xc3\x14\xba\x59\xf9\x67\x55\xf2\xef\x88\xd6\ +\x54\x2d\x21\x33\xce\x88\x34\x64\x9c\x28\xc9\x41\xf0\xbc\x87\x5b\ +\x9e\xe6\x6b\x08\xb2\x66\xd5\x9f\x25\xd5\x7f\xeb\xc3\x66\x49\x27\ +\x76\x4b\x32\xa1\xa1\x33\xe0\x57\xc1\x98\xc4\x90\x5a\x43\x90\x35\ +\x2b\xfe\xbc\x4a\xfc\x37\x7e\xbf\x22\x5c\xcb\xa4\x57\xb6\xf6\xfa\ +\xb3\x8b\x76\x29\x75\xb3\xe2\xcf\x93\xe2\x5f\xf0\xca\x52\x4e\x59\ +\xdc\x4f\xca\x2e\xd9\x51\x32\xcd\x2a\x3f\xaf\x50\xfe\x6c\xdd\xbf\ +\xae\x70\xf8\x41\xbe\xb6\x1d\xf4\x4b\x41\xd5\x84\xe4\x7b\x34\xe8\ +\x92\x37\x5a\xa2\x47\x25\xa1\xea\x75\xf0\x8d\xd4\xc6\xe0\xa9\x66\ +\x0a\x5f\x91\x2c\x9d\x56\x70\xca\xb8\x95\x5e\xa4\x98\x63\xb2\x85\ +\x55\x4f\x08\x85\xe7\x4a\x5b\x3c\xe7\x4c\x53\x86\xe7\x8e\x89\xf2\ +\x8c\x9c\x5f\xd9\x72\x29\x3f\xcd\x34\xd1\x1c\x2c\xc9\xb5\x19\x7f\ +\x96\x44\x3b\xed\x5a\xf8\xa5\x79\xf8\xe1\x4b\xa5\x9d\xb1\x2d\x5c\ +\x6f\x60\x24\x9e\x52\x46\x39\x9c\x52\x2b\x8d\x77\x30\x70\xf2\xa6\ +\xf5\xcb\xb6\x3c\xd2\x08\x5e\xac\xee\x36\xd1\x3a\x84\x6e\xc6\xda\ +\xcb\x40\x02\x22\x60\x52\x38\x05\x27\x42\x30\xa9\x70\xb9\x9e\xe4\ +\x06\x4f\xa5\xb6\xfe\x94\x99\x0a\xc8\x12\xc1\xcd\x40\xd6\x44\xfb\ +\x10\x8c\x2a\xae\x07\x15\xe1\xdc\x31\x86\x2f\x32\xb7\x80\x8a\x35\ +\x3e\x40\x29\x0f\x22\x7e\xb2\x88\xfb\x00\xe8\xe7\xa7\xc6\x18\x07\ +\xc9\x09\xf5\x66\x20\xb3\x4d\xb4\x10\xc1\x9c\x5b\xb6\xae\xa7\x06\ +\x5f\x7c\xaf\x95\x0f\x70\x80\x1e\x04\x28\xa6\xfc\x32\x63\x45\x18\ +\xb8\x19\x05\x67\x6e\xe9\x99\xa4\xa1\xbb\x54\x8b\x61\x1b\x6a\x31\ +\xfc\x0c\x5c\xb6\x6a\x34\x19\x83\xba\xaa\x00\x34\x47\x9c\xb6\x50\ +\x3d\x99\xa7\x1c\xf3\x0e\x2f\x97\x82\xb7\x1c\xd4\x61\x0a\x7a\x87\ +\x7d\x06\x0d\x19\x28\x01\x9f\x46\xf1\x52\xfd\x06\xdb\x50\x43\xf1\ +\xb7\x6d\x0d\xc4\xbf\x94\x55\x0e\x57\xd6\x51\xcd\xb0\xfa\x2a\x6c\ +\x7a\xfd\xe8\x87\xa0\xd2\xaf\x2d\x71\x4a\x3b\x1c\x50\x83\x7f\xc0\ +\xc3\xdb\x96\x40\x1a\xbd\xf3\xae\x89\xdc\x81\x5e\x43\x8d\x44\xc0\ +\xc1\xcd\x00\x1b\x7e\xfb\xda\x55\xac\x03\xe6\x97\x1a\xeb\xb6\x0d\ +\x35\x02\xde\x91\x03\xd7\xcb\x38\x5c\xd5\x44\xac\xa9\x68\x0d\xc5\ +\xa5\x66\x95\x5c\x43\xd2\x8e\xfe\xfd\xa6\x6a\xe1\xfe\x44\xcb\xd0\ +\xf7\x02\xa7\x5e\xa3\x2b\x41\xfd\xf7\x3d\x24\x35\x9a\x19\xdf\x8f\ +\x64\xd2\x9f\xab\xd2\xda\xc3\x15\x5e\x97\x1a\xf4\x71\x8d\xf5\x00\ +\xb2\x42\x65\xc2\xc1\x7b\xad\xd1\x93\xb0\x8c\xfa\x3d\x3b\xd0\x1d\ +\x52\x02\xcf\x0d\xc3\xeb\x94\x18\x66\x14\xce\xb7\x39\x67\x38\xf8\ +\xab\xd9\x6e\x57\xe2\x62\x43\xb3\xae\x79\x97\x7f\xe3\x4b\x20\x6a\ +\x4e\xe0\x4a\x15\x22\xfc\x96\x25\xe8\x52\x01\xff\x70\xf3\x91\xb2\ +\x1a\x41\x54\xa8\x58\xa0\xf7\x86\xd3\x25\x88\xbb\x15\xfd\x62\xb3\ +\x28\xae\x39\xb7\x3f\x76\xaf\x5a\x7e\x53\x18\xf4\x25\xbd\x73\x4f\ +\x3d\x6c\xd0\x91\xb3\xf8\xa1\x24\xa6\x95\xf1\xe7\x50\x8b\xb1\xfe\ +\x42\x8f\x34\xe1\x31\x20\x70\x97\x72\xfe\x5d\x63\xba\x5f\xac\xbe\ +\x50\x7b\x1d\x73\xb2\x7a\x2d\x0f\x42\x72\xac\x73\xff\xce\xa5\xec\ +\x55\x0b\xf5\x97\xbb\xc1\x44\xb4\x52\xe2\x04\x9b\x9b\x76\x2d\xac\ +\xdd\xb9\xc9\x25\x8c\xba\xcc\x9f\x2c\x7c\x21\x70\xf5\xc8\x43\x37\ +\x25\xd4\x80\x5c\x35\x90\x05\x59\xa8\x9c\xf6\xa9\xd9\x11\x75\xb2\ +\xfd\x14\x87\x67\xbd\x62\x9d\x55\xed\xc6\xa8\x77\x2d\x97\x3e\xa0\ +\x54\xf5\x85\x4a\xf5\x74\xbb\x9c\xb6\x18\x5f\xae\xa0\x4f\xb5\xcb\ +\x69\x63\x0b\x3b\xe1\x26\xa0\x43\x6c\x39\xc9\x2e\xa7\xad\x35\xfc\ +\xb2\xd6\x9c\x62\x97\xd3\xd6\x18\xb9\x67\x3b\xb0\xf9\x73\xf5\x87\ +\xff\xe7\x16\x5f\x8f\xf0\xe5\xd3\xff\x03\x33\xa3\x32\x08\ +\x00\x00\x1f\x8d\ +\x00\ +\x00\x76\xd9\x78\x9c\xed\x5d\x69\x6f\x1b\xd9\x95\xfd\xde\xbf\xa2\ +\x46\xfd\x25\x8d\xa9\xa2\xde\xbe\xa8\xed\x0e\x06\x13\xf4\x20\xc0\ +\x00\x09\x26\x1d\xcc\xc7\x06\x2d\xd1\x32\xc7\x92\x28\x50\x94\x97\ +\xfe\xf5\x73\xcf\xb9\xef\x15\x29\x59\x4e\x9c\x46\xcb\x48\x00\x3a\ +\x48\x9b\x64\xbd\xaa\x7a\xcb\x5d\xce\x5d\xfd\xe2\xf7\x1f\xae\xaf\ +\x86\x77\xab\xed\xdd\x7a\x73\xf3\xf2\xc4\x2e\xcc\xc9\xb0\xba\x39\ +\xdf\x5c\xac\x6f\x2e\x5f\x9e\xfc\xf5\xa7\x1f\xa7\x72\x32\xdc\xed\ +\x96\x37\x17\xcb\xab\xcd\xcd\xea\xe5\xc9\xcd\xe6\xe4\xf7\x3f\x7c\ +\xf3\xe2\xdf\xa6\x69\xf8\xcf\xed\x6a\xb9\x5b\x5d\x0c\xef\xd7\xbb\ +\x37\xc3\x1f\x6f\xde\xde\x9d\x2f\x6f\x57\xc3\xef\xde\xec\x76\xb7\ +\x67\xa7\xa7\xef\xdf\xbf\x5f\xac\xdb\x8f\x8b\xcd\xf6\xf2\xf4\xbb\ +\x61\x9a\x7e\xf8\xe6\x9b\x17\x77\xef\x2e\xbf\x19\x86\x41\xde\x7b\ +\x73\x77\xb6\x7e\x79\xd2\xc6\xdf\xdc\x2d\x96\x17\x9b\x57\xab\xc5\ +\xf9\xe6\xfa\xf4\x3f\xf0\xe9\x8f\x57\x57\xf7\x77\xbb\xed\x72\xb7\ +\xd9\x9e\x5a\xb3\x30\xa7\x27\xfb\xfb\x2e\xce\xe7\x1b\x6f\xef\xb7\ +\x57\x7c\xc1\xc5\xf9\xe9\xea\x6a\x75\xbd\xba\xd9\xdd\x9d\xda\x85\ +\x3d\x1c\x7e\xbe\x1f\x7e\x8e\x59\xaf\xdf\xad\xe4\x35\xd7\x1b\x79\ +\x29\xee\xbc\xb9\xfb\xf6\x60\xf0\xf6\xe2\xf5\x3c\x1a\xab\x78\xef\ +\x39\xc8\xd6\x5a\x4f\x8d\x3b\x75\x6e\x92\x11\xd3\xdd\xc7\x9b\xdd\ +\xf2\xc3\xf4\xf0\x56\x59\xdb\x53\xb7\x3a\x63\xcc\xa9\x5c\xdb\x8f\ +\xfc\xb2\x51\x67\x1f\xae\x64\x0b\x3f\x3b\x19\x5e\x3d\x7c\xbb\x1c\ +\xdb\xad\xfc\x7f\xbe\xa1\xff\xb0\xb8\xdb\xdc\x6f\xcf\x57\xaf\xe5\ +\xce\xd5\xe2\x66\xb5\x3b\xfd\xc3\x4f\x7f\x98\x2f\x4e\x66\x71\xb1\ +\xbb\x38\x78\x4c\x3f\xb5\x07\xef\x7d\x70\x94\x37\xcb\xeb\xd5\xdd\ +\xed\xf2\x7c\x75\x77\xda\x7f\xe7\xfd\xef\xd7\x17\xbb\x37\x2f\x4f\ +\x52\xb8\xfd\xc0\xef\x6f\x56\xeb\xcb\x37\xbb\x83\x1f\xd6\x17\x2f\ +\x4f\x64\x85\xae\x16\xc3\xef\x7d\x0e\x67\x33\x05\x9a\x85\x77\x3a\ +\xb4\x3d\xf8\xf0\x52\x28\x0b\xbf\xb0\xc3\xb6\x96\x92\x1e\xde\x7f\ +\xb1\x39\xc7\xa4\x5e\x9e\xfc\xb4\x5d\xad\x7e\xfe\xf3\x72\xbb\x5b\ +\xf4\x9d\x9c\x1f\xb4\xb9\xdf\xdd\xde\xef\x7e\x5e\x7d\xd8\xad\x6e\ +\xf4\x89\xb2\x96\x83\x85\xf1\x32\x6e\x5b\x3c\x58\xd4\x01\x73\xd8\ +\x93\x1f\xe4\x97\x17\x17\xab\xd7\x77\xb8\xa2\xeb\xc1\x37\x59\x90\ +\xe3\x35\xb9\x2a\x87\xb2\x5a\x6e\xff\x6b\xbb\xbc\x58\x0b\x29\xea\ +\x38\x1d\xf9\xf0\x8a\x2f\x29\xb4\x7b\xe4\xae\xbb\xdd\xe6\xb6\x8f\ +\x6d\xfb\x24\xbf\xc8\x18\x5d\xa8\xfe\xd9\xbc\x7e\x7d\xb7\x92\xfd\ +\x34\x07\xbf\xdd\xed\x3e\x5e\xad\x74\xf4\x74\xbe\xb9\xda\x6c\xcf\ +\xbe\xcd\xf6\x95\x7b\x5d\xbe\xe7\x4f\x1b\x39\xa6\xf5\xee\xe3\x99\ +\xfd\xfe\x64\x38\xfd\xfb\x6f\x2b\x4f\xbc\xcd\xfe\xed\xb7\x19\xe3\ +\x72\x8d\x9f\x7d\xdb\x8b\xd3\x87\xcb\x6e\xbf\xe2\xdb\xf2\xea\x93\ +\x5d\xea\x67\x25\xcf\xbe\x5a\x9d\xcb\xcb\x97\x57\xef\x97\x1f\xef\ +\xe6\x19\x90\xe4\xcf\xde\x6c\x57\xc2\xa2\xdf\x3e\xb1\x9f\x87\xdb\ +\xfd\xf0\x15\xbe\xc4\xfd\xb6\x5d\xb6\x1f\xff\x7a\xb3\xde\x09\x2f\ +\xde\xdf\xad\xb6\x7f\x01\x3d\xff\xe9\xe6\xaf\x77\xab\x4f\x46\xfd\ +\xb4\x5d\xde\xdc\x09\xf3\x5c\xbf\x3c\xb9\x5e\xee\xb6\xeb\x0f\xbf\ +\x33\x8b\x64\x5c\x09\xb1\x8e\x22\x31\x43\xb6\xc9\xd7\x71\xb2\x8b\ +\x9a\x6b\x30\xce\xca\x8f\xd6\xd7\xe8\x6a\x1c\xad\xcb\x8b\x1a\x4b\ +\x19\xa7\x1c\x16\x21\xa6\x6a\xf2\x77\xf3\xf3\xcf\x3f\xbc\x3c\x89\ +\x56\x08\xbe\x94\xea\xf6\xbf\x7e\x7c\x79\xe2\xe5\xb1\x39\xd8\xb0\ +\x3f\xfc\xd7\x4f\x8e\x7d\xfd\xe4\xd8\xad\x9c\x59\x5d\xc4\x6c\x83\ +\x2b\xfb\x73\x98\xf7\xf6\x56\x08\xfa\x56\x36\x57\x84\x60\xbf\x63\ +\xe6\xa3\xdd\x47\xf0\xfd\xc3\xa1\xfe\xe2\xe4\x93\xf3\x79\x77\xfb\ +\xb3\x4c\xc8\x0c\x67\x83\x77\xf2\x1f\xfb\xe4\x88\x8f\x3a\xc2\x8a\ +\x5c\x93\xbf\xcc\x93\x63\x7e\x81\x74\xf8\x1b\x8f\x69\x33\x98\x36\ +\xdb\xf5\xe5\x5a\x98\x90\xe3\x9c\x6c\x04\xff\x3c\xbc\x47\xce\xfc\ +\x60\x6d\xc2\x93\x7d\xf5\x2f\x4e\xc1\xa4\xfc\x34\xaf\x14\xe2\xe2\ +\xe2\xdd\x7a\xf5\x7e\xcf\xc9\xaf\x96\xf3\xe1\xdf\x2e\x2f\x57\xa4\ +\x6f\x21\xb3\xd7\xfc\xd3\x2e\xbc\xda\x6c\x2f\x56\xdb\x7e\x29\xf1\ +\xcf\x83\x4b\x8d\x05\x54\x97\x7e\xf3\x68\x31\xf2\xd4\xf9\xba\x79\ +\xfa\xfa\xdd\x1b\x51\x83\xef\x5f\x9e\xb8\xc7\x17\x7f\xd9\x6c\xae\ +\xf1\xd4\x64\x93\xa9\x29\x3f\xbe\x0c\x62\xb2\x49\x4e\xbd\xfa\xf8\ +\xc9\x35\x79\xdd\x14\xd2\x22\x87\x52\x82\xff\xe4\xea\xfd\x76\x2b\ +\x54\x3e\x5d\x2d\x3f\xae\x64\x51\xfc\xab\xef\xea\xdd\x9b\xcd\xfb\ +\xcb\x2d\x36\x67\xb7\xbd\x5f\x3d\xbe\x53\xa4\xee\x3d\xf4\xed\x74\ +\xaf\x7c\xd4\xa4\xfc\xc1\x08\xdc\x3b\xbd\x7a\xb5\xf9\xf0\xf4\x03\ +\xde\xaf\x6f\x64\xb1\x53\xd3\x1b\xd5\xda\xcf\x0c\x98\x15\x49\x09\ +\x9f\x19\x81\xd5\xe7\x4f\x36\xa5\x5d\xc4\x69\xd4\xcf\x5c\xbb\x5e\ +\x7e\x58\x5f\xaf\x7f\x59\x5d\x40\xac\x36\x72\xb9\x5e\xed\x96\x17\ +\xcb\xdd\x72\x4f\x1a\xfd\x17\x21\xaa\xd8\x05\xbd\xa0\x80\xb3\xff\ +\xf9\xc3\x8f\xb3\x50\x3d\x3f\x3f\xfb\xdf\xcd\xf6\xed\x5e\x58\x62\ +\xc0\xf2\x95\xe8\x95\x97\x27\xb3\xa0\x87\xfa\x38\x3f\x83\x30\x59\ +\xee\x7e\x58\x5f\xcb\x81\x43\xe5\xff\xbb\x68\x5e\x21\xd2\xf9\xc2\ +\x83\xc1\xe0\xc9\xfd\x43\xf5\xb1\xdb\x95\xaa\xf4\x27\x51\xd0\xc5\ +\xf9\xf5\x1a\x37\x9d\xfe\x65\xb7\xbe\xba\xfa\x23\x5e\x72\x20\xfc\ +\xdb\x43\xd7\xbb\xab\xd5\x0f\x7c\xa7\x7e\xec\xab\x38\x6d\xcb\xe8\ +\xd2\xfb\x60\x95\x2f\x4e\xfb\x36\xf0\xdb\xe5\x7e\x7b\x1e\xd0\xcc\ +\xbc\xc3\x57\xcb\x57\xab\xab\x97\x27\xff\x8d\x8b\xc3\x27\x57\x2f\ +\xb7\x9b\xfb\xdb\xeb\xcd\xc5\xaa\xdd\xde\xb7\xf5\xf2\x90\x9f\x2f\ +\xbd\x48\xd9\x99\xc3\x77\x4f\x08\xe2\x50\x93\xb5\xa9\xba\xd1\xe0\ +\x7f\xfb\xaf\x53\x5a\x38\xef\x53\xf4\x69\x9c\x82\x59\x64\xeb\xac\ +\x75\xdf\xed\x15\xee\xed\x72\xf7\xe6\x13\xbd\xf6\x5a\xf6\x0b\x1a\ +\xcd\x87\xd7\xaf\xbf\xc7\x97\x03\x8d\xc6\xaf\xdb\xfb\xab\xd5\xd9\ +\xea\xdd\xea\x66\x73\x71\x21\x2a\x6f\xbb\x79\xbb\xc2\x78\xfc\x69\ +\x5f\x95\x98\xcf\x42\xff\x0a\x25\x25\xeb\x3d\x7b\x75\xbf\xdb\x1d\ +\xfe\xf6\x7f\x9b\xf5\xcd\xd9\x2b\x79\xd4\x55\xff\x55\x0e\x6d\xb5\ +\xbd\x12\x62\xdc\xed\xef\xde\xbf\xbe\xfd\x70\xb1\x14\x01\xb1\xdd\ +\x2e\x3f\x9e\xdd\x08\x1e\x3f\xfc\x55\xd5\xf5\x99\xf9\xfe\x7a\xb9\ +\x7d\xbb\xda\xea\xf5\x77\xeb\xbb\xf5\xab\xf5\x15\x1e\xc1\x8f\x57\ +\xab\xef\x2f\xd6\x77\xb7\xb2\xe1\x02\xf3\x30\x8d\xef\x37\x82\x6f\ +\x5e\x5f\x6d\xde\xcf\xd7\x57\x37\x4b\xf9\x6b\x7a\xb5\x3c\x7f\x8b\ +\x23\xba\xb9\x38\x5b\x9e\x0b\x9b\xdf\x5f\x09\xd8\x3f\x40\x02\x60\ +\x8a\xa1\xa6\x85\x2d\x21\x84\xd1\x06\xbb\x08\xb2\xf7\x65\x98\x44\ +\xf5\x14\x1b\x82\x1d\xf3\xc2\xe6\xea\xec\xe0\xea\x22\xf8\x50\x47\ +\x2f\xfa\xd1\x99\x3a\x08\xe0\xcc\xce\xc7\x3c\x7a\xb9\xdb\xa5\x14\ +\x07\x9b\x17\x4e\x94\xa4\x15\x1d\x6a\x16\x35\xf8\x52\x06\x23\x92\ +\x2c\x96\x3c\x4e\x3e\x2c\x84\x06\x4a\x1c\x26\x27\x02\xcc\xdb\x44\ +\x45\x1b\xaa\x73\xc3\x2f\x07\xd3\xa1\xf0\x97\x23\xf5\xc5\xf9\x83\ +\x9f\xf7\xe2\x5e\x08\x0d\x3c\x21\x52\xea\x5c\xff\x1c\xde\xbc\x87\ +\x1d\x37\x72\x5a\x62\x70\x4c\x22\x14\xdf\x2d\x77\xf7\xdb\xd5\x5e\ +\x2c\x1c\xc9\xe6\xb7\x22\x9b\x1c\xa1\xa7\x84\x44\xac\x20\xfa\x14\ +\x4b\x1d\xbc\xd0\x84\x11\xe5\x24\x44\x22\x3c\x9b\xdc\x60\x40\x1d\ +\x21\x67\x2b\xf4\x22\x08\xc7\x3a\x5f\xfc\x38\xc5\x85\x49\x21\x57\ +\xa1\x0e\x01\x3c\xb5\x92\x3a\x72\x2e\xe6\xb3\xb4\x10\xbf\x84\x16\ +\x7e\x6b\x4a\x10\x51\xfc\xbb\x6f\x3f\x45\x9f\xdf\x7d\x0d\xd2\x20\ +\x35\xfc\x0b\x93\x86\x35\x69\x61\x62\xf0\x02\x9d\xa3\x93\xd3\xae\ +\xa1\x0c\x02\x6b\xb2\x8b\x55\x40\x74\x59\x04\xa1\x92\xa7\x8f\x3a\ +\xff\x8a\x63\x7c\x71\x7a\xf9\x58\xeb\xcc\x16\xce\xe7\x4f\x02\x40\ +\x3f\x97\xea\x43\x7e\x62\xa3\xad\xf9\xcc\xc6\x3e\xde\x96\x93\x87\ +\x7a\xae\x16\xfb\x37\xf5\x9c\x0f\xd1\x1b\x93\x45\xb1\x09\x70\x14\ +\xcb\x23\xc6\x38\x1e\x7e\xda\x5f\x0f\x7e\xe1\x5c\xa9\x51\x24\xa5\ +\xc8\x55\x5f\xac\x0f\x07\x7a\xef\xf2\xe1\xe6\x51\x39\xff\x7c\x68\ +\xe2\xad\xcf\xb6\x97\xaf\x7e\xda\xae\x37\x82\x6f\xc3\x8f\xc6\x14\ +\x59\xff\x8f\xf2\xe7\xc1\x90\x86\x15\x3f\xae\xee\x1e\xfc\x7c\xb1\ +\xbe\x16\x54\xfd\x67\x01\xc8\x42\xf3\x62\xb0\x3c\x69\xa8\xfe\xc6\ +\x1b\x7b\x08\xad\x0e\x16\x37\xe3\x87\x7a\xb8\xb8\xa7\xf6\x76\x82\ +\xcf\x41\x28\x2e\xda\x20\xfb\x68\x7d\x8e\x21\xa4\x8c\x7d\x3e\xfc\ +\x3c\x0f\x71\x59\x74\x94\x71\xa3\x98\x78\xa0\xc6\x9c\xbe\x7b\xf0\ +\xfc\x2f\x58\x66\x14\x0c\x1f\x8c\xc0\xf8\xf4\xeb\x96\xf9\x89\xf0\ +\x79\xc8\x09\xd5\x9f\x3c\xbc\xf4\xc9\x4b\x04\x0e\x9b\x47\x63\xd6\ +\x67\x6f\x6f\x36\xe7\x6f\x09\x56\xff\x34\x5b\x3b\xfd\x0f\x59\xd3\ +\x8b\xb0\x0e\x2e\x8d\xa1\x2e\xac\xf5\xc3\xf9\x60\x45\x8c\x43\x1f\ +\x87\x85\x0d\x90\xe0\x32\x00\x2c\x2a\x96\xf1\x10\xe2\x22\x24\xd8\ +\xc4\x62\xaf\x88\x7d\x27\x23\x8d\x08\xf7\xc9\x2f\x4a\x74\xf2\x20\ +\x61\xf1\x48\x6e\x4e\x43\x90\xbb\x85\xdb\xa1\xf9\xbd\x18\x77\x75\ +\x51\x7d\x81\x8a\x2f\xd9\x89\x30\x58\x24\x07\x54\x20\x2f\x4c\xf3\ +\x43\x64\xa0\xdc\x26\x07\x22\xa7\x95\x44\x3c\x94\x85\x0b\x50\x1c\ +\x82\x09\x70\x47\x31\x76\x0c\xf2\x14\x37\x38\x99\x91\xd8\xe2\xae\ +\xa6\xc1\x2f\xa2\xcb\x6d\xbc\x7c\x4e\x18\x9f\x43\x00\x16\xb1\x45\ +\x3e\x8b\x45\x25\xc8\x05\x0a\x67\x94\x29\x7b\xb9\x20\x53\x2d\x62\ +\xde\xc7\x85\x8d\x72\xc9\x09\xba\xc9\xb8\xc7\x08\xc2\x11\x2b\x2b\ +\xfa\x31\xca\x34\x64\x1c\xe6\x2d\x14\x92\x17\x62\x5b\xf5\xbb\x44\ +\x70\xe1\x4b\x96\xb5\xe3\xe1\x56\xe6\x32\x59\x07\x9f\x81\xdc\x65\ +\xb2\x3c\x4f\xfe\xf2\x70\x1e\x60\x95\xb2\x7f\x4e\x76\x0e\xa8\x48\ +\x86\x09\xcb\x9a\x2c\xc3\x2a\x86\x59\x61\x65\x8b\x57\x89\xa2\x94\ +\x71\x41\x36\x4c\x94\xa6\x6c\x31\x86\x26\xb3\x70\xb2\x10\x17\xe4\ +\x29\x18\x1b\x05\x1e\xb9\x31\xc9\x4b\x65\xbe\x0e\x3b\x30\x56\x6c\ +\xd5\xe4\x3d\x27\x8c\xb5\x54\xc7\x19\x67\xb9\x4f\x86\x57\xa0\x2a\ +\xdb\x17\x1a\xb9\x00\x59\x8e\xbc\x51\x40\x9c\x93\x3b\xe5\x84\x62\ +\x6d\x5b\x8b\xc9\x14\x7a\x3c\x64\x97\x08\xf3\x04\xa9\xc9\x52\xe5\ +\x64\x64\x47\x70\x32\xb2\xbd\xd6\xe2\xa6\x6c\x2d\xd9\x27\xc8\xf3\ +\x21\xbc\xb3\x48\x73\xbc\x13\xd7\x80\xe0\xb0\x6e\xcb\x49\x62\xe1\ +\xb2\x56\x0f\x2d\x2f\xdf\xe4\xb0\x01\x16\x75\x92\x72\xe6\xfd\xd5\ +\x4e\x58\xae\x94\xb1\x08\xa2\xc4\x37\xd9\x23\x3c\x05\x3f\xe2\xdd\ +\xb2\x2a\x99\x47\x72\xf2\x10\xde\x2d\xc7\x2f\xbb\x86\x2f\x19\x9f\ +\x0b\xce\xb6\x9d\xb3\xf5\x78\xef\x42\x98\x4f\x36\xca\x02\x5c\xc8\ +\xba\x4d\x91\xb7\x5a\x93\x71\x7c\x49\x9e\x54\x8b\x1e\xb2\x0c\x12\ +\xe2\x6c\x7b\x1b\xa3\x1b\xb1\x32\x3e\xd7\xf1\x52\x10\x42\x07\x2a\ +\xad\xb2\x9b\x72\xbc\xa4\x21\x5f\x16\x55\x46\xca\x31\x96\x18\x79\ +\xea\x36\x61\x89\xa2\xc0\x64\xac\x1c\x04\xc0\xb2\x95\xa7\x65\xae\ +\x38\xcb\x32\x80\x82\x33\x9e\x2a\xa8\x19\x4f\xf5\xdc\x34\x27\x86\ +\x0b\x7c\x47\x59\x8f\x48\xd7\x1b\x4b\xc0\x8c\x93\xec\x85\x5b\x44\ +\xec\x4c\x96\xbf\x52\xbf\xcb\xf2\xdd\x42\xfc\xa9\x82\xaa\x3c\xac\ +\xa2\x85\x8f\x15\xfb\x6e\x47\xca\x30\x19\x15\xe0\x42\x18\xa7\xb6\ +\x63\x89\x54\x33\xb5\xad\x91\x79\x7b\x78\xab\x94\xaa\xe5\xd5\x42\ +\xa8\x72\x55\xd6\x1f\xf0\x86\x2c\x0c\x10\x00\xc3\x2c\x0e\x1a\xb3\ +\xe4\xd0\x68\xf5\x8c\x02\xd8\x53\x9e\x5f\xfc\x4c\xd5\x98\x86\x1b\ +\x94\xf1\x61\x93\x91\xc8\xc8\x9e\x14\x0e\xe4\x13\x61\x51\x17\x30\ +\x12\xe6\x83\xac\x4b\x2f\x55\xbd\x84\xc9\x70\x37\x06\x90\x97\xe3\ +\x03\x65\x67\x65\x18\x14\x9c\x6c\xbe\x6c\x09\xb9\x65\x94\x1d\xf4\ +\x42\xd1\x24\x19\x2c\x2f\xc8\xac\x0a\x00\xa3\x4a\x28\x3b\xc8\xcc\ +\x38\x79\x23\x9f\x0d\x09\x05\x24\x52\xf1\xc5\xe2\x35\x55\x29\xbb\ +\xbd\x47\xcc\x16\x4f\x01\x51\x33\x07\xd6\xcc\x75\x60\xa6\x72\x20\ +\x09\x8c\x45\x12\xe0\xc8\xec\x29\x3f\x2c\xe6\xde\xa9\x54\x84\x9c\ +\xe3\x76\x58\x9c\x5a\x9b\xb0\x30\x6f\x14\x8a\xe2\xba\xe4\x8a\x09\ +\x22\xc9\x8c\x50\x88\xac\xa4\xc8\x17\xfe\x17\x8f\x88\x94\x5f\x09\ +\x93\x57\xd6\x49\x22\x1e\x69\xfb\x08\x3c\x1e\xc0\xd7\xfc\x8c\x41\ +\x15\xa7\x69\x28\x13\x40\x67\xe0\xc3\x90\x28\x16\x0b\x99\x75\x7e\ +\x5b\x96\x1d\x95\x4d\x36\xf0\x46\x8a\x0c\x94\x11\x31\x51\x62\x0b\ +\x4f\x0e\xed\x84\x44\x36\xf0\x4a\x91\xc9\x0a\x0d\x08\x49\xe3\x3c\ +\x29\xc6\xf8\x1c\xbc\x57\x0c\x39\x08\xe0\x38\x2a\xdf\x0f\x42\xa6\ +\x6a\x70\x47\x3e\x87\xdb\xcf\xfd\x1d\x94\x5e\x44\x26\x0b\xa7\x08\ +\x2b\x64\x3c\xa6\x0a\x11\x0a\x03\x80\x36\x44\xee\xca\x17\x4a\xd5\ +\x3e\x3f\x11\x5f\x4e\x29\x4c\x24\x9e\x5b\x80\x16\x75\x1a\x62\x0d\ +\x94\xb6\x32\x08\x79\xa1\x7f\xec\xb9\x90\x09\xee\x75\x20\xfc\xa1\ +\x1d\x87\xcc\x4c\xae\x60\x85\xf8\x5c\x28\xfd\xad\x9f\xe7\xa4\x04\ +\x2f\x44\x2b\xdb\xad\x14\x38\x72\xa3\x3b\x15\x08\xa5\x0f\x8d\x22\ +\x95\x86\x64\xe5\x99\x04\x15\xb1\xdb\x2e\x71\x4a\x22\x01\xe4\x15\ +\xd6\x15\x4a\x3d\x2a\x1e\xd1\x33\xb2\xdf\x3e\x41\xc3\x88\x2c\x68\ +\x17\x64\xc3\xc1\xf2\xfc\xbd\x90\xb9\xf4\x6d\x10\x35\x16\x42\x56\ +\xa4\x89\x6c\xbc\xaa\x20\x11\xb1\xb1\x29\x2f\x65\x1f\x39\x7b\xd9\ +\x3a\x19\xa2\x1c\x2f\x47\x03\x8d\xea\x20\x51\x82\x4c\xc6\x56\xc8\ +\xab\x0c\x55\x49\x99\xae\x7b\xa8\x9f\x9b\x1e\x13\xc2\xf0\x10\x76\ +\xb1\xb3\x93\x83\xda\xd0\xcf\x72\x41\x64\x29\xe8\x51\xe5\x63\x6e\ +\x7c\x26\x1f\xe5\xb4\x9c\xc1\x9e\x54\x19\x44\xf6\x0f\x98\x1d\x49\ +\x95\x2c\x0d\xc9\x80\x1d\x2e\xf0\x2a\x0e\x62\xac\x45\x10\x2e\x74\ +\x84\xe3\xbe\x06\xf0\x50\x3b\x46\x4f\x89\x35\x51\xee\xc9\x69\xd8\ +\x05\xbd\x32\xc2\xd6\x5e\xd4\xa9\x4a\xb0\x76\x52\x55\x66\x1b\x47\ +\x15\xe3\xe4\xd7\x2c\x56\x9f\x85\x22\x2f\x42\xdc\xbe\xea\x59\x03\ +\x0c\x60\xbf\xe3\x48\x86\x84\xff\x20\x83\x9e\xf4\x75\x22\xc2\x72\ +\x1d\x95\xff\x60\x3b\x04\xc5\x28\x4e\x0e\x43\x84\xb5\xc3\x35\xa1\ +\x81\x84\x6d\x4d\x85\xa7\x8c\x0d\x14\x65\xe4\xab\xc7\x25\x2f\xdf\ +\x64\x8e\xd0\x75\x13\x19\x01\xec\xa6\x6f\x0e\xc5\xe3\x65\xde\x72\ +\x17\x42\xf2\x83\x68\x5f\x1b\xf9\x6a\x28\xb1\x5f\x1e\xe1\xa6\xf3\ +\xab\xf5\x2d\x2d\xbc\x97\x27\xcd\xc4\x7b\x0c\xbb\xfe\x8e\xa1\xf2\ +\x18\xc8\xcd\x46\xe6\x97\xdb\x8d\xbf\x0e\x6d\x1e\xfa\x0b\xff\x1e\ +\xde\x8c\xcf\x83\x37\xc5\xe4\x13\x42\x13\x2d\x28\x54\x6d\x2a\xf0\ +\xa6\x87\xc0\xe4\x81\xe1\x24\x0b\x30\xa4\xec\xbb\x88\x50\xa7\xc8\ +\x10\x51\x62\xa1\x28\x02\x1d\xdb\xcf\x5c\x8e\x12\x44\xcb\xc3\x1e\ +\x10\x41\x04\xa5\x34\xa9\x2c\xd4\x91\xbc\xef\x22\x43\x70\x69\xa5\ +\xfc\xce\x72\x5b\x34\x50\x16\x20\xbd\x42\xfc\x0a\xa8\x05\x35\x66\ +\x49\xc0\x72\xf4\xc4\xaf\x10\x84\x10\x6f\x81\xaa\x04\xf0\x55\x65\ +\x88\x23\x85\x82\x0d\xc9\x41\x4a\xca\x76\x9c\x05\x8a\xcf\x4d\x24\ +\xe0\x2e\x0b\xa9\x58\x21\x4f\x02\x71\x89\x51\x7d\x01\xc4\x09\x57\ +\x57\x18\x74\xf2\x1d\xa6\x02\x0e\x44\x00\x3d\x9f\x15\x57\x62\x45\ +\xe4\x03\xb8\x43\xa2\xf3\xa3\x52\xed\x14\x81\x9b\x05\xb0\x79\xae\ +\x8e\x48\xcc\x40\xbc\x80\xfb\x65\x0d\x20\x77\xe0\x1e\x28\x64\x20\ +\x0d\x41\x7d\x32\x4b\x8e\x4b\xde\x8a\x84\x71\x8e\x78\xc6\x22\x8e\ +\xd5\xf4\x71\xc4\x72\x2a\x30\x4b\xb1\xfa\xf2\x4c\xd0\x92\x63\xfb\ +\x26\xd8\xb5\x2f\x40\x4e\x41\xc5\x50\xce\xfb\x8b\x80\x99\xf2\xd4\ +\x28\x7b\x06\xb1\x02\x36\x9c\xc4\xa0\x90\xfb\x47\x85\x39\xc4\x99\ +\x95\x40\xd6\x04\x45\x20\x5e\xc5\x51\x20\x62\x12\x6c\x81\x79\x1a\ +\x11\x4e\x13\x41\x77\x07\xa4\x02\xbc\xa8\x8c\x45\xa8\xc4\xa1\x19\ +\x1e\x94\x55\xd5\x0f\x53\xd3\x92\x0e\x8e\xa4\x41\x8f\xbb\x03\x0e\ +\x59\xa7\x9a\xca\x62\x48\x53\x70\x95\x19\x30\x88\x4c\x88\x99\x14\ +\x91\xe4\x99\x02\xa3\x53\xa2\x88\x8b\x3e\x53\x75\x44\x8a\x38\x4c\ +\x45\xc4\x80\x6f\xde\x4b\x11\xed\x0e\xa6\x01\x51\x13\x90\xb9\x40\ +\xc1\xd2\x70\xc7\xde\xa2\x11\xea\x32\xa4\x2b\x1b\xf5\x99\xa2\x96\ +\x55\xa7\xca\x49\x1a\xdf\x54\x05\x9f\xee\xf1\xae\x62\xf8\x2d\x0a\ +\x0a\xfb\x7a\x42\xe6\xb7\xf1\x69\x3e\xbf\x00\xca\xff\xb8\x70\xb1\ +\x62\xc5\xdb\x08\xdc\x0e\xc4\x61\xd5\x9a\xb5\x0a\x29\xc5\x58\x1a\ +\x44\x2f\xe2\xe4\x81\xdf\xbd\x1f\x84\x0b\x3c\x10\xa6\xc8\x7e\x58\ +\xb7\x80\xbc\x8a\x6d\xa9\xec\x8a\x62\x49\x9a\xb3\x42\x08\x19\xe2\ +\x06\xf6\x80\x03\x6a\xb3\x31\x76\xb9\x01\x43\xd5\x43\x50\x18\x48\ +\x04\x4a\x96\x0e\x2c\x49\x6f\xc0\x15\x15\x16\xf0\xd8\x74\x1c\x9e\ +\xe1\x47\x22\x08\x20\x1d\x90\x3a\x11\x9f\x50\x78\xb3\x45\x0d\xd8\ +\x94\x16\x12\x60\xb3\xa5\x09\x2d\xa4\x5c\x08\x1d\x68\x2d\x58\x68\ +\x6b\xc8\x87\xe8\x9a\xe9\x0a\x31\x64\xc8\xaf\x50\xc0\x60\xc9\x04\ +\xb6\x93\x99\xbb\x04\xd9\x91\x94\xb5\x2a\xad\x2a\xe5\xdd\x48\xf0\ +\xd9\x5f\xe5\xf1\x37\x06\x2a\xdb\x41\x7c\x05\x7d\x9c\x91\xdf\x05\ +\x15\xd5\xca\xc7\xc1\x80\x22\x5c\x21\xa8\x56\xc4\x6a\x6d\x1c\x14\ +\x64\x82\x1b\x9d\xf7\x33\x6c\xf6\x54\xf2\x47\xe2\x7e\x4c\xdc\xf5\ +\x79\xb4\xab\x68\x30\x22\x17\xc4\xc6\x6a\x16\xfa\x27\x4a\x6f\xf8\ +\x5c\x31\x77\xc3\x83\x93\x5a\x28\x40\x5c\x94\xc1\x14\xf9\x22\x88\ +\x43\xf3\x7e\xd0\xe0\xf6\x50\x38\xc2\x1e\x29\xe3\x36\xe0\xba\x26\ +\x9d\x95\x94\x49\x1c\x91\xba\x21\xa8\xd1\x0c\x9f\x0d\xf4\x75\x99\ +\x1f\x02\xdf\x49\x21\xe1\x40\x7b\x57\x75\x72\x88\x46\x83\x86\x16\ +\x01\x19\x9a\xb7\x25\x88\xfe\x51\xa3\x12\xb0\xcf\x22\xce\x14\x31\ +\x2f\xe1\xd8\x14\xd2\xd8\x34\x36\x1d\x08\x34\x86\x73\x23\x6e\x20\ +\x04\x58\x0e\xf4\x88\x40\x42\xc3\xc5\xac\xae\x93\x42\x54\xd8\x3c\ +\x05\x50\x58\x5e\xbd\x0b\x9c\x1c\xc2\x58\x4e\x27\x10\x69\x7c\x43\ +\x55\x51\x8f\xc3\x11\x50\xe0\x55\x2a\xc9\xab\xff\x25\xcd\x6c\xa7\ +\x3e\x22\x43\xd0\x01\x61\xa0\xee\x27\x07\xb6\x73\x30\x84\x72\x37\ +\xe0\x69\x3e\x63\x3f\x09\xca\x9d\x68\xb1\x10\xb9\x24\xaf\xce\x04\ +\x9b\xe7\xa9\x50\x54\x20\x42\x42\xe3\x9b\x48\xbb\x7b\x31\x04\xd4\ +\x0b\xb3\x89\xde\xb7\x64\x72\x70\x2b\x9e\xaf\xef\x16\x41\x34\x2f\ +\x4e\x0e\x05\x10\xa3\xca\xf4\x95\x0b\x55\xd3\xa9\x45\x33\xd2\x63\ +\x85\x23\xf6\x82\xde\x01\x60\xe0\x21\x50\x6b\x06\x26\x96\xef\xec\ +\x5e\xab\x3a\x45\x8c\x75\x3c\xed\x8a\xd3\xb6\x24\x1f\x28\xaf\xa9\ +\xa1\xee\x46\x3f\x72\x32\xb0\x41\x9a\x0e\x6f\xb8\x08\x5e\x0a\x55\ +\xef\x22\x33\xe4\x12\xfd\x3c\x30\x23\xe0\x12\x81\xf1\x56\x0e\x3c\ +\x55\x26\x07\x7a\x9c\x10\xd8\xe5\xa6\xeb\x43\x33\xef\x84\xd8\x98\ +\x14\x3b\x09\x55\x66\x7a\x81\xb0\xb2\xa4\x3e\x0b\x60\x95\x12\xe8\ +\x43\x4b\x03\x3d\xe2\x14\x44\x74\x6f\xe8\x8b\x68\xb2\xeb\x54\x80\ +\xff\x14\x66\x62\xa9\x20\xe6\xd9\xd9\x51\x69\xe0\x75\x3f\x25\x28\ +\x8a\x96\x2a\x55\x42\x26\x8c\x70\x6a\xc5\x47\xde\x4a\xa0\x6a\x68\ +\x82\x25\xe2\x06\x11\x9b\x78\xd0\x6c\xb1\xe6\xec\x07\xf5\x9d\x74\ +\x71\xaf\x56\x8c\x9a\xd1\x99\xd6\x15\x05\x2b\xce\xac\x52\x92\x82\ +\x60\xf0\xde\xa4\x48\x4d\xc7\x28\x27\x36\x95\x44\x2b\x1d\x6c\xe1\ +\x1a\x45\xe9\x98\x09\x06\x77\x05\x80\xce\x85\xbe\x06\x21\x90\xf6\ +\x24\x7a\x61\xd4\xa0\x12\xec\xa2\x66\x78\x85\xfa\xb3\x46\x4d\x36\ +\x50\x7a\x80\x15\xe9\xb8\x58\x6b\x1c\x14\x13\x1c\x52\x13\x28\x1e\ +\x48\x9c\xc6\x17\x38\xc4\xd1\x12\xd4\x3b\xe9\xf7\x1b\xd4\x57\x46\ +\x8a\xf2\x43\xd3\x23\xea\x1a\x82\xde\x6c\x6a\xa0\x46\xdb\xdd\x20\ +\x9e\xfa\xb6\x2b\x47\x1c\x8f\xa5\xa9\xd9\x0e\x26\x34\x47\x02\x66\ +\x0a\x9c\x99\xf0\xbe\x5c\x9b\x8b\x4a\x98\x24\x82\xaa\x2b\x5d\x34\ +\x30\x1a\xc0\x25\x95\x4a\xdd\xc1\x0d\x4d\x0f\x0f\xcf\x10\x66\xb5\ +\x48\x01\xcb\x99\xcb\xad\x7c\x6c\x74\xb5\x1b\xa2\x3c\xde\x88\x19\ +\x24\x18\xe3\x0e\x21\xe7\x51\xfd\xb1\x0e\x33\xf7\x78\x09\x3d\x71\ +\xf0\x60\x17\xab\x36\x05\xa0\x60\x4a\x60\x50\x1e\xbe\x83\x9d\x2c\ +\xa4\x56\x62\xdf\x73\x84\xc9\xbd\xee\x2b\x34\x6b\x42\x64\xb3\x72\ +\xb3\x84\xf4\x8e\xca\xef\x91\xf2\xab\xc6\xfe\xe3\x8a\x2d\x0a\x79\ +\x88\x5e\x73\x20\xd2\x0c\xc5\xa6\x7e\x36\x82\xab\xec\x29\x2a\x4b\ +\x50\x63\x31\x45\x95\x4e\x84\x6f\x10\x67\x81\x0e\xd1\xe4\x9a\xe1\ +\x20\x6c\x4f\x67\x41\xa5\xad\x23\x47\xc6\x83\xf3\x86\x06\x45\x51\ +\x6e\x49\x86\xf7\x38\xa7\x2c\x50\x84\x5e\xe9\x1a\x08\x33\x49\x36\ +\x8e\xb7\x8a\xf8\xed\x82\xfa\x03\xac\xdc\xe2\x27\x74\x48\x0d\xd4\ +\x7e\x23\xb8\x00\xfe\x2a\x98\x74\x58\x80\x48\x3a\x3a\xb2\x10\x16\ +\x10\xc9\xa6\x4c\xa2\x4e\x69\xd0\xa2\xca\x35\x48\x15\x1a\x64\x70\ +\x90\xe3\x66\xb5\x15\x1d\x24\x44\xf2\x14\xe4\x01\xf6\x0b\xfd\x6c\ +\x22\x44\xc3\xd7\x74\x54\xfc\xab\x50\xda\xe3\xa0\xd9\x97\x38\x28\ +\x04\x42\x79\x26\x79\xc2\x10\x00\xa5\x15\x84\x0c\xe7\x08\x89\x68\ +\xc6\x08\x45\x67\xa1\x12\x44\xb3\x1b\x78\xd8\x0a\x52\x59\xa8\xd8\ +\x80\xe1\x69\xf0\xc2\xd6\x80\x12\xb4\x30\xb5\x69\x1c\x33\xa2\x10\ +\x34\x40\x43\x3f\x2e\x24\x9f\x1a\xd1\x21\x26\x86\x9e\x22\x21\x80\ +\x61\x70\x01\xfe\x76\x78\x32\x81\x4b\x0a\x9c\x76\xf0\x16\x74\xa3\ +\x7c\x61\x4b\xf7\xec\x31\x73\x06\x58\x43\x03\x5c\x20\x07\xf8\x72\ +\xed\x8c\x96\x32\x04\x2d\x59\xa0\x42\xf9\x58\x42\x92\xbc\x50\xe5\ +\x0d\x79\x8a\x65\x14\xda\xf4\xc6\xd2\x71\x5f\x55\x99\x7a\x7a\xda\ +\x54\x7d\x06\x86\xb8\x66\x36\x2b\x2d\xe8\x96\x54\xf2\x47\xbf\x37\ +\x00\x12\xe5\xae\x88\x66\x68\x60\x67\xf2\xc0\x80\x18\x3d\xde\x02\ +\x3c\xe8\x87\x51\x9b\x88\xe1\x88\xa2\x16\x03\x96\x9a\x38\x08\xbb\ +\x0c\x77\x2d\xd5\x4b\xe1\x63\x23\xf5\x82\x75\x56\xf7\x83\x41\x28\ +\x0f\x47\xe9\xec\x22\x57\x6f\xae\x7e\x26\x4b\x8e\x1a\xa8\xa2\x0b\ +\xb9\x85\x4b\xe8\x46\x45\x40\xae\xfa\xbd\xbe\x86\x96\x25\x7c\xa5\ +\xd3\x09\xac\xec\x18\x48\x44\xd8\x81\x96\x5e\x54\x2b\x26\xc4\x0c\ +\x15\x9c\x54\x7d\xb9\x08\x05\xa9\x69\x4b\x1a\xee\x68\x5e\x77\x3a\ +\x81\xb0\x4b\x74\x4c\x80\x45\x65\x35\x20\xa4\x30\x7b\x07\xe4\x84\ +\x04\x96\x42\xf5\x46\x86\x73\xc0\xdf\x81\x1e\x20\x7a\xad\xdb\x28\ +\xec\x89\xa5\xa3\x98\x1e\x69\x31\xe1\xe4\x73\xa5\x17\xcc\xd1\x3d\ +\xed\x6c\x38\xf2\xfb\x27\xfc\xfe\xd8\x69\xf9\x45\x26\x13\xb4\xf7\ +\x18\x80\xdd\xa0\x58\xd4\x45\x07\xe8\x0c\xbb\xc5\x10\xba\x7a\x8d\ +\x0c\x69\x9c\x80\xb1\x45\x7a\xda\x0d\x4e\x28\x11\xef\x43\xeb\x8c\ +\x0c\x26\x20\x9c\x46\x64\x9e\x54\x83\xd4\xd9\x0a\x30\x08\x10\x8e\ +\x84\x57\xe0\x38\xc1\x6e\x34\xb7\x89\x5f\x6b\x8c\xdd\x2e\x17\x5e\ +\xac\x08\x76\x1b\x5a\x43\x0a\xa7\x18\x0d\x27\x43\x1b\xcc\x55\xe3\ +\x97\x88\xb8\xbb\x39\x98\x1d\x60\xdd\x59\x3a\xf1\x02\xcd\x05\xf8\ +\x36\x35\x52\x34\x69\x70\x5c\x8d\x3c\xc4\x5f\x4c\x06\x19\xc3\x9e\ +\x83\xbf\xd1\x93\x6e\x33\xbd\xff\x21\xaa\xc7\x0b\x46\xa1\x3c\xbf\ +\x00\xe4\x34\xf7\x3f\x42\x99\xf4\x7a\x68\x44\xc3\xc7\x39\x12\xa0\ +\x0b\xd3\x38\x22\xb0\x29\xe3\x2a\x0c\xe4\x34\xef\x0b\xe3\x1a\x96\ +\x84\xaf\x3e\x08\x46\x84\xbc\x86\x2b\x49\xd4\xb0\x39\x26\xc2\xda\ +\xa1\xd9\x9b\x6d\x82\x47\x1a\x7f\x4c\xe3\xbf\xc2\x2f\x16\x40\xdd\ +\x45\x6c\xbc\x4a\x7b\xf7\x9c\xdb\x1f\xd5\x60\x62\xac\x06\x5f\x34\ +\x48\x08\xdf\xb1\x96\x3d\x10\xe4\xc0\x90\x51\x8d\xd0\x63\x92\xea\ +\x55\x37\x1a\xd2\x69\xce\x23\x35\x26\xf1\x04\x55\x34\x55\xef\xf2\ +\x49\x4d\xed\x9a\x90\xcb\x94\xa3\xda\xe1\xe0\xa1\x96\x4b\x21\x20\ +\xdb\x8b\x99\xac\x5e\xfc\x09\x6e\x7c\xc1\xd8\x2d\xa0\xd4\x5c\x12\ +\xea\x1c\x33\xca\x94\xaa\x93\x66\xcb\x81\x54\xaa\xf1\x41\xd3\x1c\ +\x0b\x50\x7c\xca\x87\x2d\xef\x83\xbe\xdb\x48\x3f\x7d\x9b\x9f\x98\ +\x6c\x39\x31\x90\x10\x91\xdf\x12\x13\x53\x10\xa1\x6d\x8f\xb4\xf6\ +\x98\xd6\x9e\xc9\x4d\x95\x05\x9d\x8b\x52\x2f\x80\x3a\x96\x5e\x2a\ +\x80\x11\xcd\x38\x10\x29\x92\x67\x98\xa2\x70\x9e\xde\x11\xba\x43\ +\x2b\x35\xb8\x0d\x61\x46\xe7\x8d\xae\x9a\x35\x2e\x22\x83\x7e\x2e\ +\xc5\xfe\x34\x05\x34\xd8\x09\x69\x02\xbc\x52\xf9\x31\xc4\x83\x10\ +\xbb\xed\x51\x6c\xc5\x56\x22\xdb\x7c\xf3\x33\x7c\x5d\x0d\xbb\xba\ +\x58\x9d\xbf\xfe\xa7\x23\x01\xfb\xd8\x58\xfb\xad\xf2\xce\xe0\x5f\ +\x1f\x93\x60\x9b\x02\x81\x84\x73\x20\xd4\x35\x9a\x79\x84\xea\xaa\ +\xe6\x2c\x6c\x28\xb6\x12\x71\x36\x55\x66\xe6\x7c\xa2\x90\x53\xcf\ +\x32\x98\x34\x97\xa6\x07\x82\x09\x13\x19\x58\xb4\x2d\xd1\x00\x2c\ +\xaf\x09\x68\xc6\xcc\x81\x65\x4f\xf0\x3d\xb5\xd4\x01\x75\xb8\xa8\ +\x4f\x4f\x1d\x0a\x4d\x7d\x1f\x29\xc1\x3e\x53\x06\x62\x14\xd6\xf4\ +\x63\x16\x19\xed\x2a\x65\x01\x98\xb7\x71\xb2\xe6\x78\x68\x6c\x45\ +\x83\xf8\x3d\xb8\x09\xdb\x69\x34\x2d\x02\x49\xef\x57\xaa\x2d\xb7\ +\xae\x30\xd7\xa6\x26\x4a\x82\xa8\xb1\xe5\x10\x80\x75\xa2\x46\xdf\ +\x18\x24\x7e\x44\x04\x0c\x20\x33\xad\x62\xe0\xbd\x2d\x31\x83\x54\ +\x37\x6a\x38\xf0\x48\x02\xf6\x99\x92\x02\xa2\x98\xd8\xce\x8d\x82\ +\xc4\x5d\x51\x7d\x00\x9f\x78\x0b\x93\xab\x59\x29\xb6\x2e\x5d\xd8\ +\x72\xb8\x8a\x20\x15\x62\xb6\x7c\x9c\xe6\x7a\x1b\xa7\x06\x2c\x90\ +\x97\x99\x69\xb8\x31\xf0\x81\x7a\xce\xa0\x25\x26\x00\x0c\x74\x1c\ +\xa9\x90\x48\x0b\xf5\x48\xfa\xd2\x13\xb3\x7a\xfa\xa9\xa5\x4a\xd2\ +\xec\x55\x67\xbb\x0e\x3a\xd2\x80\x7d\x8c\x3f\x7f\x23\x1a\xa8\x62\ +\x58\x08\x26\xc8\x95\x61\xf9\x1e\xb9\x6a\x06\x8c\x9e\x8d\xa6\x43\ +\x68\x9e\xa1\x06\x16\x95\xb3\x3b\xe3\xb6\xf8\xe6\xd4\x8c\x32\xcd\ +\x77\x9b\x1a\x94\x40\x40\x87\x34\x00\x94\xd1\x52\xc1\x90\x2d\x9b\ +\xba\x17\x43\xfd\xde\xc8\x2e\x56\x30\x49\x41\xd3\x53\xdb\x54\x07\ +\x31\xcf\xe1\x48\x02\xf6\x99\x60\xa1\x65\x20\x10\xaa\x20\x35\x31\ +\xc0\x60\x10\x54\x32\x42\x31\xb3\xf7\x2b\xd3\x2d\xda\xbe\xb8\xc5\ +\xde\x5a\x6f\x89\x96\xcd\x3e\x56\x4b\x54\xdd\xf9\x1d\x0c\xe8\xc3\ +\xd4\x2d\x3b\x69\xf8\x3c\xc1\x9f\xab\xc1\x0c\xa0\x42\xa4\xb8\x29\ +\xc4\xa4\x8f\x4e\xf3\xfa\x90\x23\x8f\xd7\xbb\xaf\x1c\xcc\xfe\xe7\ +\x3c\x7f\xf7\x4c\x98\xd0\x22\x58\x67\xc7\x2c\xc7\xc3\xd4\x30\x33\ +\x6a\x8d\xc0\xc4\x78\xef\xa8\x75\x06\x30\x2f\x19\x13\xd3\xb8\xb2\ +\xa6\x70\x18\x05\x05\xdd\x0a\x48\x9a\x15\xd1\x72\xa0\xe9\x8e\x35\ +\x2d\x80\x85\x24\xae\xa6\x01\x44\x9c\xe4\xb4\x3f\x7e\xa7\xec\x6f\ +\x3a\xff\xd3\x6d\x3a\x32\xa1\x72\x80\xa3\xde\x31\x0e\x7a\x84\x01\ +\x72\xfe\xcf\x84\x04\x6d\x70\x28\x2a\x1d\x33\xca\x15\xb2\x5a\x05\ +\x8c\x31\xb3\x6c\x01\x31\xed\x51\x93\x73\xe8\x63\x6e\xa8\xac\xa9\ +\x80\x59\x03\xd0\x35\xd0\x92\xea\xf4\xd8\x34\x69\xbe\x65\xc3\xb6\ +\x88\xcd\x9e\x04\x98\x9f\x1d\x9a\xbf\xd9\xba\x46\x02\x8d\xa2\x34\ +\xd0\xaa\xfe\x0f\xfa\xa3\xe0\xa4\x3b\x52\x40\x75\xcf\x04\x04\x6d\ +\x82\x59\x5e\x60\x17\xa6\xa2\xd6\x80\x9d\x41\x40\x97\x02\x3c\xd8\ +\x10\xf7\xb9\x25\x8c\x49\x34\x11\xa0\x92\x5a\xf9\x1c\x08\x60\xf6\ +\x45\xce\xc9\x4a\xc8\xe4\x08\x1a\xf9\xd6\xa4\xc6\xa6\x35\x34\x9a\ +\xec\x34\x29\xaf\x6b\x80\xaa\x61\x1a\x5a\x02\x81\xce\x5f\x7b\x44\ +\x81\x20\x80\x67\x42\x81\x36\xc1\xbf\x58\x28\x02\x48\x00\x73\x66\ +\x12\xed\xc1\x2e\xfb\x43\x4b\xb2\x31\x44\x68\x59\x0d\x42\xe3\x42\ +\x77\x0e\x11\xd8\x11\xcb\x17\xe6\x7c\x58\xb5\x0d\xa0\x17\x48\x51\ +\x95\xd6\x3e\x0b\x0f\x50\x15\x15\xf0\x19\x02\xde\xd0\xd1\x4f\xf3\ +\x7f\x6c\x91\x1d\x86\x9f\x9c\x90\x85\x8b\x83\x62\x48\x2f\xbb\xeb\ +\xeb\xe0\xb5\x7e\x87\x8e\x52\x75\x79\x42\x19\xe5\x96\x80\xae\xb9\ +\x19\x0d\x9c\x20\x95\x48\xc3\x4f\x0d\x8d\x36\xa5\x33\x3b\x2a\x8a\ +\x6b\xe9\x03\xad\xe2\x04\x23\xe5\x9d\xac\x45\xd2\x98\x97\x77\x0c\ +\x4f\xa9\x40\xec\xe5\x39\xad\xa8\x05\x55\x5b\x74\xd6\x32\xf1\xbd\ +\x32\x9c\x76\x24\x51\xf7\x5c\x28\x35\x88\xf4\xa8\x63\x86\xa4\x00\ +\x4a\x9d\x98\xc4\x49\x20\xd2\xeb\xa3\x1a\xe6\x20\x1c\xd1\xac\xb6\ +\xae\xa4\x82\x26\x27\x5b\x14\xd6\x81\x30\x8d\xda\x24\x50\x49\xcd\ +\x4a\xd5\xea\x3e\x46\x43\x6d\x6d\x2e\x74\xfa\xa1\x84\x38\x21\x87\ +\x54\x8d\x69\xa2\xf2\xd0\xbc\x66\x8e\xfe\xaf\x3d\x75\x32\xcc\x58\ +\xe6\x9a\xbc\x4e\x9d\x21\x1c\x50\x67\x09\x9d\x3a\x2b\x2b\x2f\x1b\ +\x75\xc2\x21\xfb\x80\x3a\xf7\x35\x55\xce\x1e\x10\x9c\xba\x56\x11\ +\x99\x65\x8d\x68\xdd\x23\x6c\x78\xd9\x6b\x4f\x36\x64\x55\x55\xb6\ +\xb3\x09\xee\x3d\xf3\xb7\x8e\xd4\xe9\x9f\x0d\x43\x23\xff\x37\x8d\ +\x59\xa0\x0b\xeb\x79\x59\xfb\xd4\x9d\xeb\xea\x4f\x53\x77\xd8\xc4\ +\xaa\xd5\x66\xe0\xb4\xf2\x49\x2d\x81\x52\x03\x8a\x56\x95\x02\x6e\ +\xcd\x89\xeb\x54\x0a\x31\xd3\x4a\x80\xb5\xcc\x66\x74\x5e\x0b\x60\ +\xe9\x94\xf3\xec\xe7\xa0\x0d\x41\x46\xad\x5e\xec\x05\x77\xa8\x19\ +\x8a\xb6\xbb\x74\x90\x12\xe1\x20\x47\x35\xce\x53\x73\x1d\x58\xf9\ +\x47\x5e\x8a\x2c\xa2\x78\x44\xa8\x9f\x11\xa2\xcc\xce\xa3\xdf\x86\ +\xe4\x57\x94\xde\x98\x7f\x0c\xf2\x1b\xb4\xd4\x98\x32\xb4\xa8\xbc\ +\x65\x49\x3d\xb3\x7e\x20\x52\x99\xcc\x06\x71\xcb\x7a\x31\xba\x09\ +\x7c\x40\x9d\xc3\x91\x4e\xab\x7f\x2e\xac\x8f\xf2\x07\x4f\x7f\x4f\ +\x60\x0c\xa8\x45\xd7\x9b\xef\x46\x8b\x39\xd4\x07\xdb\xb4\x7e\x2b\ +\xe1\xed\x92\x54\x73\x98\x6b\x3a\x80\xfe\xea\xc7\x2f\xae\xd5\xc4\ +\xb5\x9c\x95\x4e\xa3\x59\x7d\x04\x10\x71\xc8\x8f\xb6\xb9\x63\x42\ +\xa6\x64\xd5\x2e\x4b\x03\xc9\x89\xf9\x2b\x68\x56\xc2\x8a\xcd\x48\ +\x43\x90\xb5\x1c\x05\x42\xd5\xd0\x34\x60\xce\xa9\xda\x8a\xad\x82\ +\x10\x44\x37\x30\x6d\x5a\x73\x46\xe2\x23\x45\xdf\x34\x7b\xab\x68\ +\x9a\x5a\xc1\x24\x92\x6a\x90\xe0\xfa\x48\xd1\x87\x5e\x71\x80\x12\ +\x42\x26\xc7\xc8\xdc\x2a\x2b\x8d\x98\x29\xe9\x2b\xb3\xc1\x8e\x24\ +\xea\x9f\xc9\x18\xa9\xa2\xa7\xfd\x58\x20\x3f\xad\x1a\xa3\x89\x64\ +\xe8\x29\xf7\xac\x0b\xbd\xfe\x42\x43\xd0\x2c\xa0\x6d\x0e\x09\x25\ +\x4f\xad\x42\xef\xce\xa9\x4a\x6d\x29\x84\x39\x28\x2e\x1d\x5b\x8e\ +\x6e\xa3\x0a\x40\x4c\xed\x57\x80\x98\xbb\x90\x9e\xd3\xa2\x0a\x10\ +\x28\x42\x92\xb9\x65\x42\x21\xb3\x31\xd5\xf6\x25\x78\x8a\x29\x0d\ +\x8c\x2a\x14\x85\x1b\x93\x12\x1e\xb9\x56\x4c\x72\x67\xa5\xf1\xec\ +\x28\x41\xb8\xb4\x95\x4a\x69\x62\x75\xab\x41\x46\x3c\x35\xef\xb1\ +\x28\x2a\xf5\xf3\xac\xb6\x45\x8c\x06\x4a\x71\x66\xe5\xa2\x7b\x93\ +\xa9\x0d\x26\x33\x61\xcd\xdb\xe6\xb3\xd7\xca\x79\xdf\xad\x68\xe4\ +\x1d\xa4\xa3\xc1\x2c\x34\xfa\x4c\xf6\x52\x46\x3e\x5d\x18\x0b\xfa\ +\x25\x78\x35\x97\x6a\x37\x4a\xe6\x5a\x8d\x3c\xb4\x7c\xf0\x96\xa1\ +\x44\xb2\xed\xf5\xce\x2a\x9b\x5a\x89\xb4\x10\xa9\xaa\x3f\xe6\x03\ +\x35\xfb\xa8\x30\x6d\x42\xcf\x1e\x39\x41\x4c\xef\x83\x42\x0d\x85\ +\x35\x03\x6c\x41\x00\x69\x8b\x9c\x55\x8d\xb8\x21\x93\x88\x88\x94\ +\x15\x8e\x81\x55\x78\xcc\x75\xd3\x0c\x79\xad\x65\xd2\x74\xa4\x16\ +\x65\x85\x27\x26\xce\xb5\xe1\x08\xc1\xa8\x70\x07\x91\x9a\xfa\x89\ +\x1c\x35\xcc\xef\x2f\xd5\x37\x7c\x03\x48\xaa\x95\x51\x0f\x85\xa8\ +\x2b\x9a\xc1\xcb\x04\x43\xe6\x35\x22\xf3\xaa\x00\x1f\x1b\x26\x04\ +\x27\x86\x78\x8e\x04\xea\x9f\xc9\x5a\x8a\xb2\xd1\xc5\x8d\x05\x49\ +\xcb\x8d\x40\x0b\x53\x32\x69\x09\xa9\xbb\xae\xe1\xcc\x46\x7b\x2d\ +\x8b\xa8\x39\x62\x88\xe3\x06\x2d\xc8\xec\x09\x9b\xdd\xb5\xab\x99\ +\x78\x9a\xef\xc9\xe4\xcc\x81\xa9\xb2\x23\x5b\x70\xd8\x56\xb0\x1f\ +\xd0\xcd\xae\x34\xcb\x85\x92\x14\x76\x7c\x85\xa2\xf7\xb4\xf5\x61\ +\xf7\x7b\x96\x67\xa8\xf3\x3f\x50\x9c\x51\xd3\x93\xea\x06\x65\xa3\ +\xcc\x86\x1e\xf4\x21\xb4\x96\x33\x6a\xc6\x91\x8d\x62\xef\x49\xa1\ +\x22\xf5\x3f\x87\x88\x54\xba\xc2\x76\x57\x15\x5f\x8c\x43\x79\x87\ +\x30\x87\x7c\x13\xe9\x8b\x4b\x28\xd2\x17\x93\x2a\xd2\x9a\xb4\xa8\ +\xfd\x90\x69\x46\x74\x75\x19\xad\x61\x7d\xc1\xa3\xcd\x3b\x12\x69\ +\x78\xae\x64\x14\xf4\x45\x70\xc0\xa2\x25\x66\xc5\xa2\x85\x36\x89\ +\xc6\x9d\xf2\x9c\x8f\xd0\x35\x2a\xa3\x12\x1a\x80\x56\xf5\x3d\x57\ +\x1c\xa3\x18\xa7\x17\x6b\x22\x1e\xe9\x9a\x47\xb1\xb5\x08\x51\xcd\ +\x2b\x12\xd1\xcd\x8d\x3d\x42\xa1\xd1\x4d\xc1\x85\x92\xe1\x96\x3c\ +\xcd\x42\x9e\x2e\x41\x0f\xe9\x53\x93\xbb\x1b\x7d\xda\x6a\x0f\xe8\ +\xb3\xb6\x0e\x2a\x50\xe2\x69\x60\x6a\x03\x83\x19\x68\xe6\xe1\xb4\ +\x50\x3a\x0a\x71\xfa\xcc\xae\x45\xe8\xd3\xe7\x9c\x43\xb1\x4d\xb1\ +\xf2\x6a\xf6\x68\x1b\x3c\x63\x30\x56\xe0\x48\xaa\x85\xd5\xf3\x19\ +\x25\x76\x68\x1d\x54\x59\x2d\x2d\x26\x5e\x45\xe5\x7c\x7c\xb4\x6d\ +\x47\xf2\x0c\xcf\x64\x2b\x15\x39\x43\x3b\x46\xd9\xe6\xa0\x61\xd1\ +\x3c\x57\x05\x77\x1c\x9a\x09\x43\x33\x8b\x4d\xa2\x36\xaa\x51\xa7\ +\x78\xcb\xa0\xe2\x67\x2d\x5b\xb4\xbd\xdb\x49\xd4\x5c\x39\x35\x9b\ +\x5b\x6e\x7a\xd5\xba\xaa\xcc\x96\x2a\x07\xa9\x11\xd9\xcf\xee\x54\ +\x94\x49\xb9\x06\x31\x8e\xa9\x11\x0f\xce\xff\xb9\x0c\x91\x42\x35\ +\x10\x51\x8a\xad\x45\xbd\xd4\x65\x0a\x78\x58\x3d\x31\x52\x4a\xf5\ +\xdc\x08\xa6\x46\x76\x0d\xda\x13\x64\x58\x57\x30\x4e\xfb\x7c\x19\ +\xeb\x7a\x72\xdc\x9e\x08\xe0\xd5\x9b\x89\x20\xb1\x41\x4f\x23\x02\ +\x26\x8e\x37\x2a\xc8\x6e\x26\x82\xb4\x4f\x8f\x41\xfc\xf4\x48\x03\ +\xe1\xb9\x02\x23\xe8\x97\x55\xcb\x08\x2c\x11\xbd\xe6\xcc\x12\xe9\ +\xb3\xdc\x4d\xc3\x99\x8d\x08\xb4\xd0\x47\x80\xed\x01\x09\x84\xa2\ +\x85\x05\xae\xa3\xeb\x49\xbb\x4d\x69\xed\x4d\x77\xd6\x6a\x63\x22\ +\xcd\x92\x9d\x85\x80\x39\x90\x02\x7b\x19\x90\xe7\x66\x04\xbd\xd5\ +\xd1\x51\x06\xf0\xfc\x9f\x2b\xea\x20\x7a\xd9\x0a\x2c\x10\xb8\xe8\ +\x93\x46\x46\x23\xfb\x20\xb2\x4a\x9e\xa8\x54\x3b\x8f\x35\xc0\x32\ +\x67\xc7\xa8\x1a\x60\x4c\x01\x1d\xb6\xe8\x37\x20\xff\x6b\xef\x0b\ +\x9e\x78\xab\xb1\x52\x9d\xa2\xbd\xad\x5a\xc5\xac\xd6\x1a\xe2\x99\ +\xa8\x2d\xd6\x1c\x3b\xd6\xc4\xb4\x8a\x27\x85\xe7\x2a\x02\xb4\x7e\ +\xfe\x48\x02\xf1\x99\x50\x6a\x46\x65\x91\x63\x68\x94\x12\x80\x7e\ +\xc8\xd6\x4c\xac\xe5\x45\x6b\x71\x11\xda\x27\x8d\x1a\xce\x9e\xd4\ +\x22\x6a\x2e\xa8\xd6\xb4\xa6\x31\xfd\x9c\x1f\xa7\x6e\xa7\x96\x22\ +\x89\x74\x17\xc3\x7a\xbb\x98\xf6\x0d\xf9\x22\x33\xe6\x5b\xae\x9d\ +\xd7\x66\x60\x3c\x72\xcf\x92\xb9\x63\x72\xd4\xfe\xf4\x9f\x09\x04\ +\x0a\xe6\x2e\x11\x89\x11\x81\x51\xc7\x7e\xf8\x51\xb3\x20\x0d\xb3\ +\x13\x9d\xea\x02\xe2\x81\xac\x82\x41\xf3\x99\x5c\x9c\x3b\xc8\xf4\ +\xd3\xaf\xe3\xd4\x22\xe7\x2d\x3a\xd2\x42\x44\xcd\x67\xc2\xc6\x46\ +\x5a\x92\x28\x9f\xbd\x2b\xad\x31\x9d\x36\x6a\x6d\xa1\x77\x75\x2d\ +\x02\x51\xfa\xa3\x06\x98\x09\xe0\xb9\x72\x63\xd0\xc2\xc2\x8f\x29\ +\x09\xc6\xf3\x07\x49\xd2\x41\x13\xe5\x4d\x9d\x1b\xab\x22\x55\x72\ +\x2e\x59\x7c\x90\x1c\xe5\x95\xc7\x5b\x7a\x6c\x48\x73\xa6\xd4\x4c\ +\x03\x41\xc3\x22\x8d\x06\x1c\x65\x40\x27\x82\xa4\x75\xa9\xae\x57\ +\xcd\x18\xb6\xee\xd0\x76\x16\x9a\x7f\xad\xe9\x59\x47\x1a\x88\xcf\ +\x85\x02\x1d\x92\x52\x05\xdc\x79\x16\x53\x9f\x37\xaf\xec\x9c\x25\ +\x0d\xb4\xd7\x9a\xe3\xf0\x28\x7a\x93\x61\xd6\x4a\xcf\xe1\xdc\xd6\ +\x73\xb4\xcc\x09\x72\x9a\x58\xdd\x2a\xa5\x54\xa6\xb4\x44\x93\xd6\ +\x08\xed\x90\x04\x98\xee\xd0\xb4\x40\x6d\x19\xba\x35\xcc\x15\x15\ +\x9a\x2d\x75\x24\x81\xf8\x6c\xe9\x27\x62\x7b\xf9\x32\x26\x83\xde\ +\x4b\x9a\x28\xbf\xaf\xf4\xd5\xaa\xb6\x2f\x20\x01\xad\xc8\x2f\x73\ +\xef\x9c\x4e\x02\x1a\xfd\x51\xb5\xf2\x79\x1a\xd0\x6c\x81\x4e\x04\ +\x8d\x00\x7a\x27\xa3\xe3\xf9\xe3\xfc\xd3\xaf\xe8\x72\x62\x13\xd8\ +\x1b\x6e\x6a\xcf\x96\x3c\xe7\x5d\x30\x6b\x30\xb9\xb5\x70\x52\x90\ +\x97\xd0\xe5\x0a\xbd\x1d\xf4\x42\x4c\x6a\x0d\xb0\xb7\x84\xda\xe6\ +\x08\x5b\xb2\x53\x1c\x0b\xe6\xa2\xe6\xca\x26\x96\x36\xd9\x9a\xbb\ +\x9a\x60\xc3\x74\x34\x6a\xa0\xeb\xe8\xc0\x71\xc4\x66\x93\x0b\x06\ +\x33\x4b\xe2\x63\x33\x55\x89\x2d\xb3\xc1\x28\xca\x03\x7d\xa8\xd5\ +\x09\xa5\x75\x55\x2d\xb9\x29\xe1\x5f\x00\x19\x34\x51\xa3\x4f\x45\ +\xbb\x39\x81\x56\xb4\xcd\x05\x72\x4c\x58\x45\xdf\x7b\x4e\xb4\xae\ +\x62\x1a\x9a\x69\x1d\x9a\xd4\x47\xda\x3a\xdd\xaa\x9d\x63\x69\x01\ +\x4d\xda\xb6\xa1\x55\x0c\xb6\xce\xe2\x78\xb8\x9f\x13\xa6\xe0\xe5\ +\x1c\xb4\x06\xa8\x37\xeb\xd6\x1a\xb0\xd6\x4e\x7d\x81\xee\x5d\xec\ +\x16\x5e\x98\x46\xc0\x4e\xda\xb5\xf5\xbc\x45\x4b\xb2\xde\x6f\xbb\ +\xb1\x10\x1b\x38\x8f\x59\x0b\xec\x81\x7a\x33\x2a\xf3\x91\xa7\x38\ +\x69\x45\x41\x2b\x4b\x9c\xdb\x51\x39\x6c\x73\x2f\x52\x84\x5d\xc6\ +\x36\x95\x45\x33\x8a\xd9\x66\x4f\x39\x17\x6f\x42\x3e\x04\x9e\x10\ +\x35\x91\xc6\xb5\xe6\x36\x1a\x47\x4e\xda\x6e\xc9\x38\x3f\x3f\x7d\ +\xee\x74\xee\x14\x04\x30\x80\xa2\x2e\x01\x57\xe3\xbe\x04\xca\x68\ +\xb8\x58\x49\xa7\xb5\x9d\xee\x4f\x6c\x7d\xeb\x5b\xc1\x76\xd5\xb7\ +\xcd\x7d\x95\x9d\x06\x5e\x94\x7c\xcc\xde\xb3\xd0\xfa\xfd\x59\x75\ +\x2a\xb6\x7b\x34\x49\x33\x6b\xea\x4d\xb4\x1d\x0a\xf4\xa4\x0e\xe4\ +\xe4\xc0\x89\xa0\x35\x3c\xe8\x56\xce\xc6\x24\x08\x5e\x6b\x0c\x48\ +\x4e\x49\x48\xc9\x16\x6d\x02\x8f\x6e\xe6\x11\xfd\xaa\x58\x03\x84\ +\xfe\xbe\x76\xe8\xab\xc3\x6e\xd9\xc8\x44\x21\xe2\x5b\x3f\xb0\xbf\ +\x5a\xe8\x3d\x7d\xf6\x0d\x8d\x93\xd0\x02\xd2\xe1\x68\xe8\xf2\xdf\ +\x19\x60\xab\xd8\xa2\x4d\xbc\xd0\x54\xa5\xb7\xa4\x62\x17\xe2\xb9\ +\xe7\x23\x3d\x1a\xe8\xf0\xa1\xd9\x79\x8e\x5d\xd4\x35\xbd\x64\xee\ +\xe8\x5c\xf5\x15\xb0\x91\x35\x4d\xaf\x17\x91\x4f\x73\x37\x69\x34\ +\x1a\x69\xd4\xd7\xd2\x8e\xd9\x76\xac\x77\x9d\xee\x1d\xd2\xb1\x85\ +\xb9\x77\x6e\x6e\x85\xf7\x9a\x53\x48\x69\x1e\xbf\x72\x59\x3a\xfe\ +\x6d\x90\xaf\x2e\x4b\xe7\x7f\xb2\xe5\xf0\x5f\x6f\xd1\x0f\xfc\xeb\ +\x05\xfe\x3d\xb5\x1f\xbe\xf9\x7f\xb2\xe9\xb9\x8f\ +\x00\x00\x0a\x67\ +\x00\ +\x00\x3b\x68\x78\x9c\xed\x5b\x59\x6f\xe3\x38\x12\x7e\xcf\xaf\xd0\ +\xba\x5f\x3a\x58\x8b\xe6\x2d\xca\x49\x7a\x30\xd8\x46\x0f\x06\xe8\ +\xc1\x02\x3b\x3d\xd8\xdd\xa7\x81\x2c\xd1\x8e\x36\xb2\x64\x48\x72\ +\x9c\xf4\xaf\x9f\xa2\xac\xd3\x96\x0f\x25\x9e\xec\x5c\x12\x12\x5b\ +\x64\xf1\xaa\xef\xab\x62\x91\xa2\x6f\xbf\x79\x5a\x46\xd6\xa3\x4e\ +\xb3\x30\x89\xef\x46\x04\xe1\x91\xa5\x63\x3f\x09\xc2\x78\x71\x37\ +\xfa\xe9\xcb\x27\x5b\x8d\xac\x2c\xf7\xe2\xc0\x8b\x92\x58\xdf\x8d\ +\xe2\x64\xf4\xcd\x87\xab\xdb\xbf\xd9\xb6\xf5\x8f\x54\x7b\xb9\x0e\ +\xac\x4d\x98\xdf\x5b\xdf\xc7\x0f\x99\xef\xad\xb4\xf5\xfe\x3e\xcf\ +\x57\xd3\xc9\x64\xb3\xd9\xa0\xb0\x4c\x44\x49\xba\x98\x5c\x5b\xb6\ +\xfd\xe1\xea\xea\x36\x7b\x5c\x5c\x59\x96\x05\xed\xc6\xd9\x34\xf0\ +\xef\x46\x65\x81\xd5\x3a\x8d\x0a\xc1\xc0\x9f\xe8\x48\x2f\x75\x9c\ +\x67\x13\x82\xc8\x64\xd4\x88\xfb\x8d\xb8\x6f\x5a\x0f\x1f\xb5\x9f\ +\x2c\x97\x49\x9c\x15\x25\xe3\xec\x5d\x4b\x38\x0d\xe6\xb5\xb4\xe9\ +\xcd\x86\x15\x42\xc4\x75\xdd\x09\xa6\x13\x4a\x6d\x90\xb0\xb3\xe7\ +\x38\xf7\x9e\xec\x6e\x51\xe8\x63\x5f\x51\x8a\x31\x9e\x40\x5e\x23\ +\x79\x9e\xd4\xf4\x29\x02\x55\x1c\xec\x4c\x91\xdb\x6e\x1d\xd4\xbf\ +\x82\xbf\xba\x40\x95\x80\xb2\x64\x9d\xfa\x7a\x0e\x25\x35\x8a\x75\ +\x3e\xf9\xf8\xe5\x63\x9d\x69\x63\x14\xe4\x41\xab\x9a\x4a\xfb\x9d\ +\x76\x3b\x90\xc4\xde\x52\x67\x2b\xcf\xd7\xd9\xa4\x4a\x2f\xca\x6f\ +\xc2\x20\xbf\xbf\x1b\x49\xbe\x7a\x2a\x9e\xef\x75\xb8\xb8\xcf\x5b\ +\x09\x61\x70\x37\x82\x11\x32\x49\x68\xf1\xdc\x22\x10\xd9\x0a\x94\ +\xd5\x4d\xeb\x1c\x8c\xb8\x42\x0c\x11\x2b\x75\x95\x92\x85\x50\xd5\ +\xf3\x69\x90\xf8\xa6\x2b\x77\xa3\x8f\xa9\x37\xcf\x7f\xfe\x36\x08\ +\xbe\x24\xdf\xa5\xc9\x7a\x85\x8c\x1a\x3f\x80\xec\x6d\xa0\xe7\x99\ +\x29\xb3\x6d\xdb\x3c\x41\xe3\xbc\xc8\x83\xdc\xa5\x97\x3e\xe8\x74\ +\x9b\xdf\x6a\x3c\xcb\x13\xff\xc1\xc8\x7f\x9b\xa6\xc9\x86\xfc\xa0\ +\xe3\xad\x7e\xcc\x95\xa4\x21\x30\xec\x6e\xe4\xad\xf3\xa4\x4e\x4c\ +\xf5\xfc\xbf\xa6\xab\xb8\x9d\xf2\x9f\x6e\xca\x81\xfa\xb2\xfc\x39\ +\x82\x11\x24\x30\xe0\x79\x94\x6c\xa6\x8f\x61\x16\xce\x22\x7d\x53\ +\x76\x11\x3a\xb9\xf2\xf2\xfb\x4a\x7a\x5b\x8d\x49\x61\x8a\x89\x51\ +\x93\x0c\xa9\x3f\x58\xd0\xdc\x18\xfe\xac\xcf\x96\x80\x6f\xb6\x28\ +\xbe\xda\x84\x22\xd1\x4a\xde\xa6\x56\xa2\x5f\xad\x56\x25\x65\x5f\ +\xe6\x61\x14\xd9\xe9\x3a\xd2\x53\xfd\xa8\xe3\x24\x08\x6e\xb2\x3c\ +\x4d\x1e\xf4\xf4\x1d\x2e\xae\xf2\xd1\x2e\xe0\x9e\x82\xed\xaf\xf2\ +\x9b\x56\x2d\x79\xea\xc5\x19\x70\x6d\x09\x58\xfb\x5e\xa4\xdf\x03\ +\x84\xd7\x56\x9a\xe4\x60\xf5\xef\x89\xc2\xd7\x5b\x89\xa8\x78\x84\ +\x5e\x5c\x8f\xac\x49\x89\xc7\x64\x0b\xc8\x30\x74\xc0\xcd\xa4\xf9\ +\x45\xf1\xe9\xd6\x78\x00\xa1\x33\x00\xa2\xbf\x1d\x80\x4e\xe2\x73\ +\x51\x4c\x3e\x5f\x1c\x93\xcf\x17\xc2\x84\xca\xdf\x0b\x26\xaa\x83\ +\x49\xd1\x9d\x83\xa8\xd4\x38\xac\xc0\x6d\xae\xb4\x6f\x26\xb8\x5a\ +\x55\x95\xb7\xcc\x9f\x8d\x4f\xef\x8a\xb2\xc6\x11\x35\xae\x77\xf5\ +\xf3\x13\xc0\x60\x4d\x2d\x46\xe1\x1f\xe9\x95\x78\xde\x4a\x10\x18\ +\x19\x7c\xe0\x5e\x99\xaf\xc6\xf3\x1f\xa9\xa6\xec\x81\x0d\xf4\x58\ +\x84\xe0\xea\x0b\x39\x4a\x10\x2b\xae\x6e\x19\x03\x60\x33\x36\x26\ +\x29\x6e\x74\x71\x6c\xf4\xbb\x05\x85\x52\xa7\x3b\x82\x91\x30\x83\ +\x2a\x3b\xb2\xdb\x95\xee\x08\x49\x21\x29\x5e\xa5\xa8\x52\xdd\xbb\ +\xd5\x9c\x42\xee\x45\x0a\x90\x2e\xfd\xe3\x29\x00\x02\x21\xed\xa5\ +\xdf\xa5\x5e\x60\x1c\x4d\x7b\xe8\xdd\x1c\x46\x38\xb7\x65\xe3\x25\ +\xc0\x6d\xad\xba\x5e\xc2\xa4\x80\x94\xb4\xdd\x7d\x13\x37\x79\xb6\ +\x9f\x44\x49\x3a\x7d\x37\x2f\xae\x9b\x22\x29\x81\x50\x28\xcc\x9f\ +\xa7\xa4\x55\x24\x99\xcf\x33\x0d\x2e\xaf\xa1\xe9\xb1\xe6\x94\x4d\ +\x87\x37\x87\x7b\x9a\x23\x2d\x0f\xd1\x1d\xfa\x50\x4d\x39\x98\x9c\ +\xd4\x93\x83\xd9\xdb\x69\xc9\xc1\xe2\x8d\x74\x64\x9e\xbc\x68\x4f\ +\x47\x15\xfb\xa0\xb9\x08\x8c\x09\xa6\xb3\x68\xe3\x3d\x67\x75\x0b\ +\x45\x38\x3e\xbd\x87\x59\xec\x6e\xf4\xae\x97\x77\x6d\x75\x77\x1b\ +\x61\xb2\xe5\x97\x16\x65\xe2\x4f\x71\x98\xc3\x4a\x61\x9d\xe9\xf4\ +\x47\x13\x6d\xff\x33\xfe\x29\xd3\x7b\x52\x5f\x9a\xa9\x63\xe9\xe5\ +\x69\xf8\xf4\x9e\x8c\xb1\xb9\x91\x74\x95\xa0\x2e\x87\xef\x14\x53\ +\xa4\xa8\x92\xec\xba\x2e\xee\x83\xcd\x51\x2a\x10\x95\x1c\x37\xe4\ +\xf3\xc1\x5a\xa5\x43\x91\xe3\x3a\xac\xe9\xef\xbc\x57\x76\xde\x2b\ +\x9b\x82\x1f\xe7\x88\x71\x41\x60\x44\xc3\x0d\xd4\xc1\xea\x34\xed\ +\x08\x7e\x43\xda\x91\xb7\x32\xcd\x21\x5e\x5c\xb5\x8c\xe1\xcf\xe7\ +\xc5\x95\xe4\x36\xb6\xf1\x49\xa2\x28\x29\x6d\x61\x3b\xbd\xc8\x1f\ +\xc5\x14\x4b\xe2\xfa\x78\x87\x40\x37\x67\xb0\x45\x49\x65\x3b\xb6\ +\xec\x85\xff\x68\x8b\xcc\x71\xfd\xf9\xec\x60\x8b\xaf\xf5\xe6\xcc\ +\x71\x4e\x6a\x0b\xba\x30\x5c\x53\xf3\xb9\xe7\xe1\x97\x68\x8a\xa9\ +\x3e\x8b\x3c\xa1\xa5\xb9\x37\x9f\xd3\x5f\x4f\x4b\x05\xaf\xce\x63\ +\xd5\x5b\x73\xea\xad\x18\x35\xc4\x09\xb9\xf8\x4f\x1c\x4a\x0a\xcc\ +\x0f\xce\x54\xfb\x68\xcc\x22\xcf\x7f\xd8\x99\x23\x6e\x4e\x70\xa8\ +\x22\x80\xc0\xe2\x8c\x89\x0a\xa4\xfa\xdc\x0e\xe8\xe1\x28\x4d\x7a\ +\x3a\x76\x8c\x94\x2f\x1f\x19\xe9\x1f\x19\xbd\x9c\xf1\x72\x02\x93\ +\x02\x3b\x6d\xbe\x9c\xd9\xc4\x66\x6f\x69\xc0\x5c\x40\xcf\xd4\x5b\ +\x99\x70\x7f\xf8\x7a\x5e\x50\x69\x62\x3a\x42\x38\x12\x52\xf1\x6e\ +\xf8\x87\x91\x72\x29\x76\x9b\x29\x02\x02\x3d\x88\x08\x5b\xa4\xf3\ +\xfb\xca\xfa\xbd\x65\x8d\x6a\xbc\x70\x91\x06\xf4\x14\x5c\x44\x08\ +\x29\x8f\x6b\xe9\x13\x36\xf7\xcb\xc2\x3b\x53\xbd\x3a\x5e\xbd\xeb\ +\x99\x7b\x07\x04\x84\xcb\x5d\x9d\x3e\x50\xab\xcc\x16\x50\x5d\x4c\ +\x2e\x04\x94\x34\xba\x76\xda\x5e\xf8\x28\x52\x4e\x07\xa9\xfd\xc2\ +\x27\xa0\x3a\x69\x59\xa0\x4b\xe7\xc4\x7a\xf0\x95\x50\x39\x27\x56\ +\x80\xbf\x1e\x54\xe7\x7a\x21\x02\x6c\x3d\xc8\xe9\x73\x57\x2a\xc7\ +\x7a\x8c\xeb\x1e\xf7\x69\x48\x4a\x3e\xc4\x77\xbf\x9b\x2b\x73\xbf\ +\x48\x61\xfd\xcd\xcb\x97\x39\x27\x60\xa8\x92\x08\xd6\x7e\x5c\x74\ +\x18\xce\x04\x82\xb5\xa5\x4b\xba\x4b\x51\xc6\x90\x0b\x4d\xb5\xc2\ +\x55\xbf\x57\xd6\xef\x95\x3d\xbc\x6e\xc6\x20\x8a\xb9\x4b\x5d\xa7\ +\x58\x40\xc3\x58\x39\x21\x8c\x8e\x6d\x41\x11\x2c\xe0\x29\x77\xc7\ +\xb6\x03\x2b\x69\xc6\x88\x50\xd7\x7b\x15\x1e\x37\xd8\xfd\x35\x3f\ +\xe7\xa2\x31\xbe\x23\x9b\x07\x54\xb4\xac\xf1\xd0\x26\xc4\xe0\xf8\ +\xc5\xd4\x3a\x80\x28\x9e\xb9\x2f\xc4\x53\x2a\x8f\x98\x7b\x4f\xe3\ +\xb3\xe2\xba\x10\x4b\xa9\x7c\xe1\xfe\x8f\xd9\xd8\x70\x90\x23\x88\ +\x43\x58\x97\xa4\x90\x28\x09\x55\xa2\x43\x52\x85\x14\xe5\x9c\xec\ +\x70\x74\x4f\xd4\xef\x13\x3d\x4e\x51\x45\x9d\x16\x45\x19\x75\xa4\ +\x33\xb6\xb9\x42\xe0\xcc\xa5\x5b\x50\x94\x20\xa9\x04\x61\x17\xa1\ +\x28\x3f\x8b\xa2\xf2\x57\xa1\xa8\x1c\x42\x51\x8f\x99\xfb\x52\x14\ +\x75\x86\x51\x94\xfb\xe6\xbe\x14\x45\x9d\x4b\xee\x15\x71\x97\x3b\ +\xfb\xe0\xfc\x59\x96\x69\x1c\xbb\x62\x00\x89\x30\x16\xb3\xbd\xf9\ +\xf8\xdc\x85\x1a\xb4\xe5\x0c\x62\x8d\x4f\x34\x9b\x3b\x67\xb4\xd6\ +\xb7\x78\xe2\x26\x4a\xbb\x1c\x4d\x04\xa6\x7f\x40\x9a\x0c\x52\x80\ +\x23\xff\x78\x0a\x38\x60\x27\xaf\x78\x97\x01\x71\x90\x33\x3a\x62\ +\x70\x54\x34\xd3\xe3\x13\x81\x39\xcf\xe5\x88\x08\xa7\xb5\x26\x7c\ +\x86\x54\xa2\x04\x22\x0c\xb7\x66\x17\x7a\x37\xe2\x8c\x43\x0c\xd7\ +\xf6\x57\xcf\x90\x4a\x38\x46\x94\x3a\xac\x19\xfd\x6b\x5f\x90\xc0\ +\x2c\xca\x29\x23\x8a\xca\xf2\x4d\x49\xfd\x48\x61\x86\xa6\x8e\x80\ +\x48\xcf\x4c\xca\x12\xc6\x22\xaf\x5f\xe0\x74\x8c\x8a\xce\x77\x03\ +\x54\x2b\x8a\xcf\x71\x03\xbd\x4e\x07\xc2\xd2\x41\x4e\x47\xd0\xf9\ +\xbc\x67\xc7\xf6\x4c\xa7\x43\xc5\x0b\x5f\x31\xf6\x23\x79\x00\xf5\ +\x5e\x82\xf4\x72\xe9\x62\x20\x0f\x0f\x95\x76\xf7\x03\x95\x33\xdc\ +\x7c\x4e\xc6\x4a\x43\x1c\x18\xe1\x67\x1c\xb2\xf8\x5d\x39\xb0\xdb\ +\x89\x39\xb1\x57\x7c\xab\x0b\x98\x13\x7f\xc1\x63\xa8\x37\x57\xb5\ +\x12\x66\x5e\x0d\xcd\xca\x5b\xe8\x82\xe8\xa0\xf8\xed\xe2\xba\xcc\ +\x98\x25\x69\xa0\xd3\x2a\x4b\x16\x57\x27\xab\xb4\x85\xed\x61\xd6\ +\xab\x1d\x25\x42\xad\x75\x3e\xee\xcf\xcf\xee\xbd\x20\xd9\xdc\x8d\ +\xe8\x6e\xe6\xd7\x24\x59\x9a\x1d\x18\xb1\x9b\x61\x62\x7f\x9b\x22\ +\x45\x8a\x7b\x2f\xd7\xac\x17\xf6\x2a\xf3\xd7\x69\x0a\x2c\xb2\x23\ +\xef\x59\xc3\x40\x8a\x8f\x4a\xab\xd9\x7d\xb2\x59\xa4\x46\x21\x79\ +\xba\xd6\xbb\x25\x83\xc4\x5f\x9b\xc3\xb1\xf6\x7a\xcb\xec\xf2\x48\ +\x66\x4b\xc2\x94\xb5\x67\xb3\xe4\xa9\xbf\x82\x4d\x18\xc3\x00\xed\ +\xf2\x90\x27\x61\xb5\xfe\x76\x25\xaa\x63\x9f\x0e\x3e\x24\x61\x06\ +\xbe\x37\xe0\x32\xef\xf9\x48\xde\xd2\x7b\x0a\x97\xe1\x57\x1d\x34\ +\xaf\x53\x6f\x97\x3a\xf7\x02\x2f\xf7\x1a\x3a\x54\x29\x4c\x92\xca\ +\x0d\xdf\xa6\xc1\x7c\xfa\xaf\x8f\x9f\x6a\x37\xe9\xfb\xd3\x7f\x27\ +\xe9\x43\xe3\xe1\x8c\x80\x37\x4b\xd6\xd0\xef\xda\x75\x9b\xf3\xa3\ +\xfe\xd4\x78\x15\x2f\xff\x10\x2e\x01\x64\x73\x3e\xf7\xef\x4f\xcb\ +\x08\x88\x59\x67\x74\x84\x0d\x9d\x9b\x4a\xb7\xd5\xa6\x7a\x7b\xfe\ +\xb6\xf7\xc8\x72\xe0\x2f\x43\x53\x68\xf2\x63\x1e\x46\xd1\xf7\xa6\ +\x91\x96\x3b\x2f\x2b\x0d\xf3\x48\x7f\x28\xda\xdc\x7e\xad\x46\x31\ +\x29\x87\x51\xef\x5d\x35\xa3\xbc\x9d\x54\x6a\x28\x9e\x16\x8d\x7a\ +\x3a\x9c\xa9\x35\x1c\x79\x33\x1d\xdd\x8d\x3e\x9b\x4c\x6b\x2f\x77\ +\x61\x4e\xd5\x2e\x93\x40\x97\xc5\x2b\xb5\x2e\xaa\x7e\xb6\x0e\xb0\ +\x35\xa7\xd6\x6c\x2a\x5c\xa4\x04\x4c\x6e\x63\x9b\x30\x8a\x1c\xc5\ +\xb8\x7b\xdd\x71\xa2\x0b\x2e\x9d\xd6\x2b\xb7\x14\x5c\x59\x0b\x93\ +\xe7\xee\x9c\x97\x3e\x75\x9f\x8d\xb1\x3a\x2e\x12\x0e\xe1\xbc\x95\ +\x6c\xf6\x31\x15\x46\x90\x4a\xdb\x6f\x34\x2b\x5a\xba\x88\x3a\x2e\ +\xa5\xa4\xbd\x99\x58\x92\x9a\x72\x58\x39\x2b\x46\x76\xa7\x3e\xd3\ +\x2d\x98\xfa\x7a\x76\x8a\xeb\x75\x43\xb1\xd0\x33\x87\x00\xeb\x4d\ +\xbd\xe2\x44\x60\x33\xc3\x0e\x3b\x20\x48\xab\x47\x33\x7b\x00\x04\ +\xd3\xd9\x3a\xcf\xdb\x69\xff\x4b\xc2\x78\x0a\xa8\xc4\x55\x3d\x36\ +\xf0\x48\xa7\x11\xd8\x47\x3e\xe5\x55\x5a\xd3\x7c\x99\x10\x78\xe0\ +\xa7\xd2\xd4\x7b\x9e\xc6\x49\xac\xdb\xa9\xdb\x69\x7f\x8a\x6f\xb6\ +\x27\x0b\xb7\xf9\xc5\xb9\xca\x30\x32\x55\x54\x07\x93\x83\x30\x5b\ +\x01\x07\xa6\x61\x6c\xba\x71\xb3\x77\x70\x59\xc7\x1e\x7c\xd8\x33\ +\xcf\x7f\x58\x14\xfd\x9b\x7a\x3e\x78\x9e\xb5\x61\x44\x3b\x50\x19\ +\x0e\xb5\x20\xc3\xa1\x96\x9c\x2a\xe1\xc8\xe1\x50\xdb\xa4\xf3\xd2\ +\xf5\x08\xdc\x18\x73\xfa\x17\xdc\x97\x87\x5b\x0a\xc4\x94\x2b\xe9\ +\x2e\xdc\x02\x29\x2c\x28\x19\x0c\x37\xa3\xe0\x6b\xc4\x41\xb8\xff\ +\x02\xfb\xff\x09\x36\x73\x7a\x6d\x5b\xca\x97\xd8\x36\x33\xfb\xf5\ +\x26\xef\x88\x6d\xdb\xfc\x2f\x67\x7e\x39\xc0\xbb\xc7\xed\x9b\x58\ +\x1d\x22\x06\x13\xdc\x40\xb8\xe9\xfb\xfe\x0e\x1a\xa6\x8c\xc0\x6e\ +\x7b\x52\x35\xc1\x9b\x45\x1d\x88\xc0\x01\x75\x36\x86\xc0\x01\x15\ +\x38\x5a\x78\x0c\x04\x31\x98\x4a\x0b\xa6\x6f\x48\x21\xe3\x9e\xb7\ +\xf5\x05\x62\x2d\x55\xbc\x06\x8d\x02\x80\x57\xa0\xd1\xea\x5d\x6f\ +\x6c\x84\xc7\xb6\x6c\x1d\xe8\xdf\xd3\xe1\xb1\x42\x3d\x7a\x24\x9d\ +\x9d\xe4\xad\x1e\x55\xf1\x32\x57\xc1\x82\x97\x94\x66\x64\xd9\x5b\ +\xab\x91\xbf\x79\xed\x1d\xe6\xd6\x6f\xb0\xb3\x7b\x04\x16\x48\x12\ +\x88\x2e\xc6\x44\x48\x44\x84\x50\x1c\x08\x4c\x38\xa2\xe6\x1c\x5e\ +\x2f\x81\xeb\x1f\xa8\x98\xb3\x3e\x83\x0c\xa9\xd9\x41\x88\x61\x88\ +\x79\x92\xda\xb0\x44\x7c\xf4\xf2\x75\xaa\xdb\xaf\xd5\x6f\x27\x8b\ +\xf2\x4b\x5b\x9d\x83\x94\x49\x56\x4f\xc3\xd5\xd9\xa8\x6e\xeb\x89\ +\xec\xe2\x77\x3c\x53\x58\x00\xbd\x7f\xd7\xfe\xb5\xd5\x75\x95\xaf\ +\xc1\xc7\xb4\x73\xe1\xb9\x21\x7c\xa1\x5e\x41\x11\x93\xe6\x1e\x53\ +\x6e\xf9\x16\xf8\x85\xe2\x9c\xf3\x18\x83\xaf\x00\xf5\x51\x4b\x21\ +\x29\x15\x17\x0c\x16\x1d\x48\x29\x58\xe7\x33\x48\x72\x28\xdc\x6c\ +\x0c\x78\x14\xab\x6d\xf3\x5b\x1e\xa1\x14\x1d\x2b\x84\x41\x58\x11\ +\xcb\x06\x6b\xc1\x84\x62\x0e\x32\xca\xc8\x2a\xcb\x76\xb6\x8b\x73\ +\x0a\x49\xdb\xf2\x9d\xb5\x4b\xf9\x8b\xa2\x9e\x7d\x8f\x03\x60\xec\ +\x6d\x7e\xb4\x61\xfd\xea\xd7\x9b\x1e\x00\xd5\xad\x59\x69\x7e\xb8\ +\xfa\x05\xaa\x59\x75\xc6\ " qt_resource_name = "\ @@ -9033,6 +11347,103 @@ qt_resource_name = "\ \x00\x00\x07\xb9\ \x00\x75\ \x00\x69\ +\x00\x0c\ +\x0d\xfc\x11\x13\ +\x00\x74\ +\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\ +\x00\x11\ +\x0d\xa8\xde\x3d\ +\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x5f\x00\x65\x00\x73\x00\x2d\x00\x45\x00\x53\x00\x2e\x00\x71\x00\x6d\ +\ +\x00\x0e\ +\x07\xd9\xae\x5d\ +\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x5f\x00\x68\x00\x72\x00\x2e\x00\x71\x00\x6d\ +\x00\x11\ +\x08\xa5\xa9\x5d\ +\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x5f\x00\x70\x00\x74\x00\x2d\x00\x42\x00\x52\x00\x2e\x00\x71\x00\x6d\ +\ +\x00\x0e\ +\x07\xef\xbe\x5d\ +\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x5f\x00\x72\x00\x75\x00\x2e\x00\x71\x00\x6d\ +\x00\x0e\ +\x07\xda\x7e\x5d\ +\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x5f\x00\x66\x00\x69\x00\x2e\x00\x71\x00\x6d\ +\x00\x0e\ +\x07\xe2\x0e\x5d\ +\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x5f\x00\x6e\x00\x6c\x00\x2e\x00\x71\x00\x6d\ +\x00\x11\ +\x04\x9b\x9b\xbd\ +\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x5f\x00\x7a\x00\x68\x00\x2d\x00\x54\x00\x57\x00\x2e\x00\x71\x00\x6d\ +\ +\x00\x0e\ +\x07\xd1\x6e\x5d\ +\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x5f\x00\x61\x00\x66\x00\x2e\x00\x71\x00\x6d\ +\x00\x0e\ +\x07\xf0\x1e\x5d\ +\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x5f\x00\x72\x00\x6f\x00\x2e\x00\x71\x00\x6d\ +\x00\x0e\ +\x07\xe4\x1e\x5d\ +\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x5f\x00\x6e\x00\x6f\x00\x2e\x00\x71\x00\x6d\ +\x00\x0e\ +\x07\xed\x5e\x5d\ +\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x5f\x00\x75\x00\x6b\x00\x2e\x00\x71\x00\x6d\ +\x00\x0e\ +\x07\xdc\xbe\x5d\ +\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x5f\x00\x64\x00\x65\x00\x2e\x00\x71\x00\x6d\ +\x00\x11\ +\x04\xa6\xeb\xbd\ +\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x5f\x00\x7a\x00\x68\x00\x2d\x00\x43\x00\x4e\x00\x2e\x00\x71\x00\x6d\ +\ +\x00\x0e\ +\x07\xdb\xae\x5d\ +\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x5f\x00\x66\x00\x72\x00\x2e\x00\x71\x00\x6d\ +\x00\x0e\ +\x07\xe0\x0e\x5d\ +\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x5f\x00\x70\x00\x6c\x00\x2e\x00\x71\x00\x6d\ +\x00\x0e\ +\x07\xe6\xfe\x5d\ +\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x5f\x00\x6a\x00\x61\x00\x2e\x00\x71\x00\x6d\ +\x00\x11\ +\x06\x95\xb8\xfd\ +\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x5f\x00\x73\x00\x76\x00\x2d\x00\x53\x00\x45\x00\x2e\x00\x71\x00\x6d\ +\ +\x00\x0e\ +\x07\xd9\xbe\x5d\ +\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x5f\x00\x68\x00\x75\x00\x2e\x00\x71\x00\x6d\ +\x00\x0e\ +\x07\xe6\x8e\x5d\ +\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x5f\x00\x69\x00\x74\x00\x2e\x00\x71\x00\x6d\ +\x00\x0e\ +\x07\xef\x5e\x5d\ +\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x5f\x00\x73\x00\x6b\x00\x2e\x00\x71\x00\x6d\ +\x00\x0e\ +\x07\xdc\xde\x5d\ +\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x5f\x00\x63\x00\x73\x00\x2e\x00\x71\x00\x6d\ +\x00\x0e\ +\x07\xed\xae\x5d\ +\x00\x4f\ +\x00\x70\x00\x65\x00\x6e\x00\x53\x00\x43\x00\x41\x00\x44\x00\x5f\x00\x74\x00\x72\x00\x2e\x00\x71\x00\x6d\ \x00\x15\ \x06\xfb\x4c\x79\ \x00\x6f\ @@ -9071,16 +11482,39 @@ qt_resource_name = "\ " qt_resource_struct = "\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x01\ -\x00\x00\x00\x10\x00\x02\x00\x00\x00\x01\x00\x00\x00\x09\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x06\x00\x00\x00\x03\ -\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x01\x00\x00\x96\xd1\ -\x00\x00\x01\x04\x00\x00\x00\x00\x00\x01\x00\x00\xcc\xb5\ -\x00\x00\x01\x3a\x00\x00\x00\x00\x00\x01\x00\x01\x80\x09\ -\x00\x00\x01\x7e\x00\x00\x00\x00\x00\x01\x00\x01\xf6\xe6\ -\x00\x00\x00\x4a\x00\x00\x00\x00\x00\x01\x00\x00\x41\x9d\ -\x00\x00\x00\x86\x00\x00\x00\x00\x00\x01\x00\x00\x5a\xaa\ -\x00\x00\x00\x1a\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x01\ +\x00\x00\x00\x10\x00\x02\x00\x00\x00\x01\x00\x00\x00\x20\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x06\x00\x00\x00\x1a\ +\x00\x00\x00\x1a\x00\x02\x00\x00\x00\x16\x00\x00\x00\x04\ +\x00\x00\x01\x10\x00\x00\x00\x00\x00\x01\x00\x00\xa7\x58\ +\x00\x00\x01\xe2\x00\x00\x00\x00\x00\x01\x00\x01\x47\xc0\ +\x00\x00\x02\x70\x00\x00\x00\x00\x00\x01\x00\x01\xb6\xb8\ +\x00\x00\x01\x38\x00\x00\x00\x00\x00\x01\x00\x00\xbb\x4f\ +\x00\x00\x00\x60\x00\x00\x00\x00\x00\x01\x00\x00\x1b\x89\ +\x00\x00\x02\x98\x00\x00\x00\x00\x00\x01\x00\x01\xd2\x67\ +\x00\x00\x00\xcc\x00\x00\x00\x00\x00\x01\x00\x00\x70\x42\ +\x00\x00\x02\x0a\x00\x00\x00\x00\x00\x01\x00\x01\x61\x83\ +\x00\x00\x01\xc0\x00\x00\x00\x00\x00\x01\x00\x01\x29\x91\ +\x00\x00\x02\xfe\x00\x00\x00\x00\x00\x01\x00\x02\x26\xda\ +\x00\x00\x02\x2c\x00\x00\x00\x00\x00\x01\x00\x01\x7f\x38\ +\x00\x00\x00\xee\x00\x00\x00\x00\x00\x01\x00\x00\x8b\xc9\ +\x00\x00\x01\x7c\x00\x00\x00\x00\x00\x01\x00\x00\xf2\x75\ +\x00\x00\x02\xba\x00\x00\x00\x00\x00\x01\x00\x01\xef\xc0\ +\x00\x00\x02\x4e\x00\x00\x00\x00\x00\x01\x00\x01\x9b\x47\ +\x00\x00\x01\x9e\x00\x00\x00\x00\x00\x01\x00\x01\x0e\x08\ +\x00\x00\x03\x20\x00\x00\x00\x00\x00\x01\x00\x02\x42\x5f\ +\x00\x00\x02\xdc\x00\x00\x00\x00\x00\x01\x00\x02\x0b\x4f\ +\x00\x00\x00\xaa\x00\x00\x00\x00\x00\x01\x00\x00\x54\x53\ +\x00\x00\x01\x5a\x00\x00\x00\x00\x00\x01\x00\x00\xd6\xdc\ +\x00\x00\x00\x82\x00\x00\x00\x00\x00\x01\x00\x00\x37\x80\ +\x00\x00\x00\x38\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x03\xe8\x00\x01\x00\x00\x00\x01\x00\x02\x76\xd6\ +\x00\x00\x04\x2c\x00\x01\x00\x00\x00\x01\x00\x02\x81\x7f\ +\x00\x00\x04\x62\x00\x01\x00\x00\x00\x01\x00\x02\x95\xe2\ +\x00\x00\x04\xa6\x00\x01\x00\x00\x00\x01\x00\x02\xb5\x73\ +\x00\x00\x03\x72\x00\x01\x00\x00\x00\x01\x00\x02\x65\xdc\ +\x00\x00\x03\xae\x00\x01\x00\x00\x00\x01\x00\x02\x6c\x93\ +\x00\x00\x03\x42\x00\x01\x00\x00\x00\x01\x00\x02\x5e\x48\ " def qInitResources(): diff --git a/src/Mod/OpenSCAD/Resources/OpenSCAD.qrc b/src/Mod/OpenSCAD/Resources/OpenSCAD.qrc index 8b6c9edcd..11295193f 100644 --- a/src/Mod/OpenSCAD/Resources/OpenSCAD.qrc +++ b/src/Mod/OpenSCAD/Resources/OpenSCAD.qrc @@ -7,5 +7,27 @@ icons/OpenSCAD_ReplaceObject.svg icons/OpenSCAD_RemoveSubtree.svg ui/openscadprefs-base.ui + translations/OpenSCAD_tr.qm + translations/OpenSCAD_sv-SE.qm + translations/OpenSCAD_de.qm + translations/OpenSCAD_pl.qm + translations/OpenSCAD_fi.qm + translations/OpenSCAD_zh-TW.qm + translations/OpenSCAD_no.qm + translations/OpenSCAD_nl.qm + translations/OpenSCAD_pt-BR.qm + translations/OpenSCAD_uk.qm + translations/OpenSCAD_cs.qm + translations/OpenSCAD_sk.qm + translations/OpenSCAD_fr.qm + translations/OpenSCAD_ru.qm + translations/OpenSCAD_af.qm + translations/OpenSCAD_hr.qm + translations/OpenSCAD_es-ES.qm + translations/OpenSCAD_zh-CN.qm + translations/OpenSCAD_ja.qm + translations/OpenSCAD_ro.qm + translations/OpenSCAD_hu.qm + translations/OpenSCAD_it.qm diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_af.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_af.qm new file mode 100644 index 000000000..c44683c7a Binary files /dev/null and b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_af.qm differ diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_af.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_af.ts new file mode 100644 index 000000000..a845cd1cf --- /dev/null +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_af.ts @@ -0,0 +1,272 @@ + + + + + Gui::Dialog::DlgSettingsOpenSCAD + + + General settings + Algemene instellings + + + + General OpenSCAD Settings + General OpenSCAD Settings + + + + OpenSCAD executable + OpenSCAD executable + + + + The path to the OpenSCAD executeable + The path to the OpenSCAD executeable + + + + OpenSCAD import + OpenSCAD import + + + + If this is checked, Features will claim thier children in the tree view + If this is checked, Features will claim thier children in the tree view + + + + Use ViewProvider in Tree View + Use ViewProvider in Tree View + + + + If this is checked, Multmatrix Object will be Parametric + If this is checked, Multmatrix Object will be Parametric + + + + Use Multmatrix Feature + Use Multmatrix Feature + + + + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + + + + Maximum number of faces for polygons (fn) + Maximum number of faces for polygons (fn) + + + + Debug: Register filetype to prototype importer + Debug: Register filetype to prototype importer + + + + OpenSCAD export + OpenSCAD export + + + + maximum fragment size + maximum fragment size + + + + minimum angle for a fragment + minimum angle for a fragment + + + + angular (fa) + angular (fa) + + + + ° + ° + + + + minimum size of a fragment + minimum size of a fragment + + + + size (fs) + size (fs) + + + + mm + mm + + + + convexity + convexity + + + + Mesh fallback + Mesh fallback + + + + Maxium Length + Maxium Length + + + + MaxLength + MaxLength + + + + Maximum Length + Maximum Length + + + + Maximum Area + Maximum Area + + + + maxArea + maxArea + + + + Local Length + Local Length + + + + localLen + localLen + + + + Deflection + Deflection + + + + deflection + deflection + + + + Triangulation settings + Triangulation settings + + + + OpenSCAD + + + Color Shapes + Color Shapes + + + + Color Shapes by validity and type + Color Shapes by validity and type + + + + Convert Edges To Faces + Convert Edges To Faces + + + + Convert Edges to Faces + Convert Edges to Faces + + + + Refine Shape Feature + Refine Shape Feature + + + + Create Refine Shape Feature + Create Refine Shape Feature + + + + Expand Placements + Expand Placements + + + + Expand all placements downwards the FeatureTree + Expand all placements downwards the FeatureTree + + + + Please select 3 objects first + Please select 3 objects first + + + + Replace Object + Replace Object + + + + Replace an object in the Feature Tree. Please select old, new and parent object + Replace an object in the Feature Tree. Please select old, new and parent object + + + + Remove Objects and their Children + Remove Objects and their Children + + + + Removes the selected objects and all children that are not referenced from other objects + Removes the selected objects and all children that are not referenced from other objects + + + + Running OpenSCAD failed + + Running OpenSCAD failed + + + + + Add OpenSCAD Element... + Add OpenSCAD Element... + + + + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + + + + Unsupported Function + Unsupported Function + + + + Press OK + Press OK + + + + Projection Not yet Coded waiting for Peter Li + Projection Not yet Coded waiting for Peter Li + + + + Press OK + Press OK + + + diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_cs.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_cs.qm new file mode 100644 index 000000000..fee9f224d Binary files /dev/null and b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_cs.qm differ diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_cs.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_cs.ts new file mode 100644 index 000000000..913e26a06 --- /dev/null +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_cs.ts @@ -0,0 +1,272 @@ + + + + + Gui::Dialog::DlgSettingsOpenSCAD + + + General settings + Obecná nastavení + + + + General OpenSCAD Settings + General OpenSCAD Settings + + + + OpenSCAD executable + OpenSCAD executable + + + + The path to the OpenSCAD executeable + The path to the OpenSCAD executeable + + + + OpenSCAD import + OpenSCAD import + + + + If this is checked, Features will claim thier children in the tree view + If this is checked, Features will claim thier children in the tree view + + + + Use ViewProvider in Tree View + Use ViewProvider in Tree View + + + + If this is checked, Multmatrix Object will be Parametric + If this is checked, Multmatrix Object will be Parametric + + + + Use Multmatrix Feature + Use Multmatrix Feature + + + + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + + + + Maximum number of faces for polygons (fn) + Maximum number of faces for polygons (fn) + + + + Debug: Register filetype to prototype importer + Debug: Register filetype to prototype importer + + + + OpenSCAD export + OpenSCAD export + + + + maximum fragment size + maximum fragment size + + + + minimum angle for a fragment + minimum angle for a fragment + + + + angular (fa) + angular (fa) + + + + ° + ° + + + + minimum size of a fragment + minimum size of a fragment + + + + size (fs) + size (fs) + + + + mm + mm + + + + convexity + convexity + + + + Mesh fallback + Mesh fallback + + + + Maxium Length + Maxium Length + + + + MaxLength + MaxLength + + + + Maximum Length + Maximum Length + + + + Maximum Area + Maximum Area + + + + maxArea + maxArea + + + + Local Length + Local Length + + + + localLen + localLen + + + + Deflection + Deflection + + + + deflection + deflection + + + + Triangulation settings + Triangulation settings + + + + OpenSCAD + + + Color Shapes + Color Shapes + + + + Color Shapes by validity and type + Color Shapes by validity and type + + + + Convert Edges To Faces + Convert Edges To Faces + + + + Convert Edges to Faces + Convert Edges to Faces + + + + Refine Shape Feature + Refine Shape Feature + + + + Create Refine Shape Feature + Create Refine Shape Feature + + + + Expand Placements + Expand Placements + + + + Expand all placements downwards the FeatureTree + Expand all placements downwards the FeatureTree + + + + Please select 3 objects first + Please select 3 objects first + + + + Replace Object + Replace Object + + + + Replace an object in the Feature Tree. Please select old, new and parent object + Replace an object in the Feature Tree. Please select old, new and parent object + + + + Remove Objects and their Children + Remove Objects and their Children + + + + Removes the selected objects and all children that are not referenced from other objects + Removes the selected objects and all children that are not referenced from other objects + + + + Running OpenSCAD failed + + Running OpenSCAD failed + + + + + Add OpenSCAD Element... + Add OpenSCAD Element... + + + + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + + + + Unsupported Function + Unsupported Function + + + + Press OK + Press OK + + + + Projection Not yet Coded waiting for Peter Li + Projection Not yet Coded waiting for Peter Li + + + + Press OK + Press OK + + + diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_de.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_de.qm new file mode 100644 index 000000000..c9865c095 Binary files /dev/null and b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_de.qm differ diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_de.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_de.ts new file mode 100644 index 000000000..9af10efd0 --- /dev/null +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_de.ts @@ -0,0 +1,271 @@ + + + + + Gui::Dialog::DlgSettingsOpenSCAD + + + General settings + Allgemeine Einstellungen + + + + General OpenSCAD Settings + Allgemeine OpenSCAD Einstellungen + + + + OpenSCAD executable + OpenSCAD Programmdatei + + + + The path to the OpenSCAD executeable + Der Pfad zur OpenSCAD Programmdatei + + + + OpenSCAD import + OpenSCAD importieren + + + + If this is checked, Features will claim thier children in the tree view + Wenn diese Option aktiviert ist, werden Features sich ihre Kinder in der Strukturansicht unterordnen + + + + Use ViewProvider in Tree View + Verwenden von ViewProvider in der Strukturansicht + + + + If this is checked, Multmatrix Object will be Parametric + Wenn diese Option aktiviert ist, werden sich Multmatrix Objekte parametrisch verhalten + + + + Use Multmatrix Feature + Multmatrix-Feature verwenden + + + + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + Die maximale Anzahl der Kanten von einem Polygon, Prisma oder Prismenstumpf. Wenn fn größer als dieser Wert ist als rund betrachtet. Setzen Sie dies auf 0 für keine Begrenzung + + + + Maximum number of faces for polygons (fn) + Maximale Anzahl der Flächen für Polygone (fn) + + + + Debug: Register filetype to prototype importer + Debug: Protyp Importer für den Dateityp registrieren + + + + OpenSCAD export + OpenSCAD Export + + + + maximum fragment size + maximale Fragmentgröße + + + + minimum angle for a fragment + minimaler Winkel für ein Fragment + + + + angular (fa) + winkelig (Fa) + + + + ° + ° + + + + minimum size of a fragment + Mindestgröße eines Fragments + + + + size (fs) + Größe (fs) + + + + mm + mm + + + + convexity + Konvexität + + + + Mesh fallback + Polygonnetz Rückfalllösung + + + + Maxium Length + Maximale Länge + + + + MaxLength + MaxLength + + + + Maximum Length + Maximale Länge + + + + Maximum Area + Maximale Fläche + + + + maxArea + maxArea + + + + Local Length + Lokale Länge + + + + localLen + localLen + + + + Deflection + Durchbiegung + + + + deflection + Durchbiegung + + + + Triangulation settings + Triangulationseinstellungen + + + + OpenSCAD + + + Color Shapes + Formen einfärben + + + + Color Shapes by validity and type + Formen nach Gültigkeit und Typ einfärben + + + + Convert Edges To Faces + Konvertieren von Kanten zu Flächen + + + + Convert Edges to Faces + Konvertieren von Kanten zu Flächen + + + + Refine Shape Feature + Form verfeinern Feature + + + + Create Refine Shape Feature + Form Verfeinern Feature erstellen + + + + Expand Placements + Plazierungen erweitern + + + + Expand all placements downwards the FeatureTree + Erweitert alle Platzierungen den Feature Baum hinab + + + + Please select 3 objects first + Bitte wählen Sie zuerst 3 Objekte + + + + Replace Object + Objekt ersetzen + + + + Replace an object in the Feature Tree. Please select old, new and parent object + Ersetzt ein Objekt in der Featurestruktur. Bitte wählen Sie das alte, das neue und das übergeordnetes Objekt aus + + + + Remove Objects and their Children + Objekte und ihre Kinder entfernen + + + + Removes the selected objects and all children that are not referenced from other objects + Entfernt die ausgewählten Objekte und alle Kinder, die nicht von anderen Objekten referenziert werden + + + + Running OpenSCAD failed + + Fehler beim Ausführen von OpenSCAD + + + + Add OpenSCAD Element... + OpenSCAD-Element hinzufügen... + + + + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + Fügt ein OpenSCAD-Element hinzu, indem OpenSCAD-Code eingeben und OpenSCAD ausgeführt wird + + + + Unsupported Function + Nicht unterstützte Funktion + + + + Press OK + Drücken Sie OK + + + + Projection Not yet Coded waiting for Peter Li + Projektionsfunktion noch nicht programmiert, warte auf Peter Li + + + + Press OK + Bitte OK drücken + + + diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_es-ES.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_es-ES.qm new file mode 100644 index 000000000..22a621e09 Binary files /dev/null and b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_es-ES.qm differ diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_es-ES.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_es-ES.ts new file mode 100644 index 000000000..734cb602a --- /dev/null +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_es-ES.ts @@ -0,0 +1,272 @@ + + + + + Gui::Dialog::DlgSettingsOpenSCAD + + + General settings + Opciones generales + + + + General OpenSCAD Settings + General OpenSCAD Settings + + + + OpenSCAD executable + OpenSCAD executable + + + + The path to the OpenSCAD executeable + The path to the OpenSCAD executeable + + + + OpenSCAD import + OpenSCAD import + + + + If this is checked, Features will claim thier children in the tree view + If this is checked, Features will claim thier children in the tree view + + + + Use ViewProvider in Tree View + Use ViewProvider in Tree View + + + + If this is checked, Multmatrix Object will be Parametric + If this is checked, Multmatrix Object will be Parametric + + + + Use Multmatrix Feature + Use Multmatrix Feature + + + + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + + + + Maximum number of faces for polygons (fn) + Maximum number of faces for polygons (fn) + + + + Debug: Register filetype to prototype importer + Debug: Register filetype to prototype importer + + + + OpenSCAD export + OpenSCAD export + + + + maximum fragment size + maximum fragment size + + + + minimum angle for a fragment + minimum angle for a fragment + + + + angular (fa) + angular (fa) + + + + ° + ° + + + + minimum size of a fragment + minimum size of a fragment + + + + size (fs) + size (fs) + + + + mm + mm + + + + convexity + convexity + + + + Mesh fallback + Mesh fallback + + + + Maxium Length + Maxium Length + + + + MaxLength + MaxLength + + + + Maximum Length + Maximum Length + + + + Maximum Area + Maximum Area + + + + maxArea + maxArea + + + + Local Length + Local Length + + + + localLen + localLen + + + + Deflection + Deflection + + + + deflection + deflection + + + + Triangulation settings + Triangulation settings + + + + OpenSCAD + + + Color Shapes + Color Shapes + + + + Color Shapes by validity and type + Color Shapes by validity and type + + + + Convert Edges To Faces + Convert Edges To Faces + + + + Convert Edges to Faces + Convert Edges to Faces + + + + Refine Shape Feature + Refine Shape Feature + + + + Create Refine Shape Feature + Create Refine Shape Feature + + + + Expand Placements + Expand Placements + + + + Expand all placements downwards the FeatureTree + Expand all placements downwards the FeatureTree + + + + Please select 3 objects first + Please select 3 objects first + + + + Replace Object + Replace Object + + + + Replace an object in the Feature Tree. Please select old, new and parent object + Replace an object in the Feature Tree. Please select old, new and parent object + + + + Remove Objects and their Children + Remove Objects and their Children + + + + Removes the selected objects and all children that are not referenced from other objects + Removes the selected objects and all children that are not referenced from other objects + + + + Running OpenSCAD failed + + Running OpenSCAD failed + + + + + Add OpenSCAD Element... + Add OpenSCAD Element... + + + + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + + + + Unsupported Function + Unsupported Function + + + + Press OK + Press OK + + + + Projection Not yet Coded waiting for Peter Li + Projection Not yet Coded waiting for Peter Li + + + + Press OK + Press OK + + + diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_fi.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_fi.qm new file mode 100644 index 000000000..f5ddc325c Binary files /dev/null and b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_fi.qm differ diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_fi.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_fi.ts new file mode 100644 index 000000000..4144f6e5b --- /dev/null +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_fi.ts @@ -0,0 +1,272 @@ + + + + + Gui::Dialog::DlgSettingsOpenSCAD + + + General settings + Yleiset asetukset + + + + General OpenSCAD Settings + General OpenSCAD Settings + + + + OpenSCAD executable + OpenSCAD executable + + + + The path to the OpenSCAD executeable + The path to the OpenSCAD executeable + + + + OpenSCAD import + OpenSCAD import + + + + If this is checked, Features will claim thier children in the tree view + If this is checked, Features will claim thier children in the tree view + + + + Use ViewProvider in Tree View + Use ViewProvider in Tree View + + + + If this is checked, Multmatrix Object will be Parametric + If this is checked, Multmatrix Object will be Parametric + + + + Use Multmatrix Feature + Use Multmatrix Feature + + + + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + + + + Maximum number of faces for polygons (fn) + Maximum number of faces for polygons (fn) + + + + Debug: Register filetype to prototype importer + Debug: Register filetype to prototype importer + + + + OpenSCAD export + OpenSCAD export + + + + maximum fragment size + maximum fragment size + + + + minimum angle for a fragment + minimum angle for a fragment + + + + angular (fa) + angular (fa) + + + + ° + ° + + + + minimum size of a fragment + minimum size of a fragment + + + + size (fs) + size (fs) + + + + mm + mm + + + + convexity + convexity + + + + Mesh fallback + Mesh fallback + + + + Maxium Length + Maxium Length + + + + MaxLength + MaxLength + + + + Maximum Length + Maximum Length + + + + Maximum Area + Maximum Area + + + + maxArea + maxArea + + + + Local Length + Local Length + + + + localLen + localLen + + + + Deflection + Deflection + + + + deflection + deflection + + + + Triangulation settings + Triangulation settings + + + + OpenSCAD + + + Color Shapes + Color Shapes + + + + Color Shapes by validity and type + Color Shapes by validity and type + + + + Convert Edges To Faces + Convert Edges To Faces + + + + Convert Edges to Faces + Convert Edges to Faces + + + + Refine Shape Feature + Refine Shape Feature + + + + Create Refine Shape Feature + Create Refine Shape Feature + + + + Expand Placements + Expand Placements + + + + Expand all placements downwards the FeatureTree + Expand all placements downwards the FeatureTree + + + + Please select 3 objects first + Please select 3 objects first + + + + Replace Object + Replace Object + + + + Replace an object in the Feature Tree. Please select old, new and parent object + Replace an object in the Feature Tree. Please select old, new and parent object + + + + Remove Objects and their Children + Remove Objects and their Children + + + + Removes the selected objects and all children that are not referenced from other objects + Removes the selected objects and all children that are not referenced from other objects + + + + Running OpenSCAD failed + + Running OpenSCAD failed + + + + + Add OpenSCAD Element... + Add OpenSCAD Element... + + + + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + + + + Unsupported Function + Unsupported Function + + + + Press OK + Press OK + + + + Projection Not yet Coded waiting for Peter Li + Projection Not yet Coded waiting for Peter Li + + + + Press OK + Press OK + + + diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_fr.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_fr.qm new file mode 100644 index 000000000..a9202d270 Binary files /dev/null and b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_fr.qm differ diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_fr.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_fr.ts new file mode 100644 index 000000000..67ce5a424 --- /dev/null +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_fr.ts @@ -0,0 +1,272 @@ + + + + + Gui::Dialog::DlgSettingsOpenSCAD + + + General settings + Paramètres généraux + + + + General OpenSCAD Settings + Paramètres généraux de OpenSCAD + + + + OpenSCAD executable + Exécutable OpenSCAD + + + + The path to the OpenSCAD executeable + Le chemin d'accès de l'exécutable de OpenSCAD + + + + OpenSCAD import + Importation OpenSCAD + + + + If this is checked, Features will claim thier children in the tree view + Si cette case est cochée, les objets revendiqueront leurs enfants dans l'arborescence + + + + Use ViewProvider in Tree View + Utiliser les ViewProviders dans l'arborescence + + + + If this is checked, Multmatrix Object will be Parametric + Si cette case est cochée, les objets Multmatrix seront paramétriques + + + + Use Multmatrix Feature + Utiliser la fonction Multmatrix + + + + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + Le nombre maximal de faces d'un polygone, prisme ou tronc. Si fn est supérieur à cette valeur, l'objet est considéré circulaire. Une valeur de 0 signifie aucune limite + + + + Maximum number of faces for polygons (fn) + Nombre maximum de faces pour les polygones (fn) + + + + Debug: Register filetype to prototype importer + Débogage : Communiquer le type de fichier à l'importateur de prototype + + + + OpenSCAD export + Exportation OpenSCAD + + + + maximum fragment size + taille maximale de fragment + + + + minimum angle for a fragment + angle minimal d'un fragment + + + + angular (fa) + angulaire (fa) + + + + ° + ° + + + + minimum size of a fragment + taille minimale d'un fragment + + + + size (fs) + taille (fs) + + + + mm + mm + + + + convexity + convexité + + + + Mesh fallback + Maillage de secours + + + + Maxium Length + Longueur maximale + + + + MaxLength + MaxLength + + + + Maximum Length + Longueur maximale + + + + Maximum Area + Superficie maximale + + + + maxArea + maxArea + + + + Local Length + Longueur locale + + + + localLen + localLen + + + + Deflection + Déflexion + + + + deflection + déflexion + + + + Triangulation settings + Paramètres de triangulation + + + + OpenSCAD + + + Color Shapes + Couleur des formes + + + + Color Shapes by validity and type + Colorer les formes par validité et par type + + + + Convert Edges To Faces + Convertir les arêtes en faces + + + + Convert Edges to Faces + Convertir les arêtes en faces + + + + Refine Shape Feature + Affinage + + + + Create Refine Shape Feature + Crée un objet affinage + + + + Expand Placements + Développer les Placements + + + + Expand all placements downwards the FeatureTree + Ouvrir tous les placements vers le bas dans l'arborescence + + + + Please select 3 objects first + Veuillez d'abord sélectionner 3 objets + + + + Replace Object + Remplacer un objet + + + + Replace an object in the Feature Tree. Please select old, new and parent object + Remplacer un objet dans l'arborescence. Veuillez sélectionner l'ancien objet, le nouvel objet et l'objet parent + + + + Remove Objects and their Children + Supprimer des objets et leurs enfants + + + + Removes the selected objects and all children that are not referenced from other objects + Supprime les objets sélectionnés et tous leurs enfants qui ne sont pas référencées par d'autres objets + + + + Running OpenSCAD failed + + OpenSCAD n'a pas pu démarrer + + + + + Add OpenSCAD Element... + Ajouter un élément OpenSCAD... + + + + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + Ajouter un élément OpenSCAD en entrant un code OpenSCAD et exécutant OpenSCAD + + + + Unsupported Function + Fonction non supportée + + + + Press OK + Appuyez sur OK + + + + Projection Not yet Coded waiting for Peter Li + Projection (pas encore codé, en attente de Peter Li) + + + + Press OK + Appuyez sur OK + + + diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hr.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hr.qm new file mode 100644 index 000000000..82f24e991 Binary files /dev/null and b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hr.qm differ diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hr.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hr.ts new file mode 100644 index 000000000..af15a0e06 --- /dev/null +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hr.ts @@ -0,0 +1,271 @@ + + + + + Gui::Dialog::DlgSettingsOpenSCAD + + + General settings + Glavne postavke + + + + General OpenSCAD Settings + Generalne OpenSCAD opcije + + + + OpenSCAD executable + OpenSCAD izvršna datoteka + + + + The path to the OpenSCAD executeable + Putanja do OpenSCAD izvršne datoteke + + + + OpenSCAD import + OpenSCAD uvoz + + + + If this is checked, Features will claim thier children in the tree view + Ako je označeno, svojstva će sadržavati njihove potomke u prikazu stabla + + + + Use ViewProvider in Tree View + koristi view provider u prikazu stabla + + + + If this is checked, Multmatrix Object will be Parametric + Ako je označeno, Multimatrix objekt će biti parametarski + + + + Use Multmatrix Feature + Koristi Multimatrix opcije + + + + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + Maksimalni broj ploha na poligonu, prizmi i slično. Ako je fn veći od ove vrijednosti, smatra se da je objekt obli. O označava da nema limita + + + + Maximum number of faces for polygons (fn) + Maksimalni broj ploha za poligone (fn) + + + + Debug: Register filetype to prototype importer + Debug: Registriraj tip datoteke za uvoz prototipa + + + + OpenSCAD export + OpenSCAD izvoz + + + + maximum fragment size + Maksimalna veličina fragmenta + + + + minimum angle for a fragment + Minimalni kut fragmenta + + + + angular (fa) + kutni (fa) + + + + ° + ° + + + + minimum size of a fragment + minimalna veličina fragmenta + + + + size (fs) + veličina (fn) + + + + mm + mm + + + + convexity + konveksnost + + + + Mesh fallback + Mesh rezervni plan + + + + Maxium Length + Maksimalna duljina + + + + MaxLength + MaxDuljina + + + + Maximum Length + Maksimalna duljina + + + + Maximum Area + Maksimalna površina + + + + maxArea + maxPovršina + + + + Local Length + Lokalna duljina + + + + localLen + lokDuljina + + + + Deflection + Defleksija + + + + deflection + defleksija + + + + Triangulation settings + Opcije stvaranja Mesh-a + + + + OpenSCAD + + + Color Shapes + Oboji oblike + + + + Color Shapes by validity and type + Oboji oblike po tipu i valjanosti + + + + Convert Edges To Faces + Pretvori rubove u površine + + + + Convert Edges to Faces + Pretvori rubove u površine + + + + Refine Shape Feature + Izgladi oblik svojstvo + + + + Create Refine Shape Feature + Kreiraj "Izgladi Oblik" svojstvo + + + + Expand Placements + Proširi postavljanja + + + + Expand all placements downwards the FeatureTree + Proširi sva postavljanja niže u stablu svojstava + + + + Please select 3 objects first + Molim odaberite tri oblika + + + + Replace Object + Zamjeni objekt + + + + Replace an object in the Feature Tree. Please select old, new and parent object + Zamjeni objekt u stablu. Odaberite stari objekt, novi i roditelja + + + + Remove Objects and their Children + Izbriši objekte i njihove potomke + + + + Removes the selected objects and all children that are not referenced from other objects + Briše odabrani objekt i svu djecu koja nisu referencirana od ostalih objekata + + + + Running OpenSCAD failed + + Pokretanje OpenSCAD nije uspjelo + + + + Add OpenSCAD Element... + Dodaj OpenSCAD Element... + + + + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + Dodaj OpenSCAD element unošenjem OpenSCAD koda i pokretanjem OpenSCAD binarne datoteke + + + + Unsupported Function + Nepodržana funkcija + + + + Press OK + Pritisnite OK + + + + Projection Not yet Coded waiting for Peter Li + Projekcija nije još iskodirana čeka se Peter Li + + + + Press OK + Pritisnite OK + + + diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hu.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hu.qm new file mode 100644 index 000000000..ef63e17a0 Binary files /dev/null and b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hu.qm differ diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hu.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hu.ts new file mode 100644 index 000000000..cbae0c1fd --- /dev/null +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_hu.ts @@ -0,0 +1,271 @@ + + + + + Gui::Dialog::DlgSettingsOpenSCAD + + + General settings + Általános beállítások + + + + General OpenSCAD Settings + Általános OpenSCAD beállítások + + + + OpenSCAD executable + OpenSCAD futtatható fájlok + + + + The path to the OpenSCAD executeable + Az OpenSCAD fittatható fájlok elérési útvonala + + + + OpenSCAD import + OpenSCAD import + + + + If this is checked, Features will claim thier children in the tree view + Ha be van állítva akkor, a tulajdonságok igénylik az alegységeiket a fa nézetben + + + + Use ViewProvider in Tree View + Használja a NézetSzolgáltatót a Fa Nézetben + + + + If this is checked, Multmatrix Object will be Parametric + Ha ez ki van jelölve akkor a Többmátrix tárgy Parametrikus lesz + + + + Use Multmatrix Feature + Használja a Többszörösmátrix tulajdonságot + + + + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + A sokszög, hasáb vagy csonka maximális felületeinek száma. Ha az fn nagyobb mint ez az érték akkor ezt a tárgyat mint kört veszi figyelembe. Állítsa 0-ra a határtalansághoz + + + + Maximum number of faces for polygons (fn) + A sokszög (fn) maximális felületeinek száma + + + + Debug: Register filetype to prototype importer + Nyomkövetés: fájltípus regisztrálása a prototípus importáláshoz + + + + OpenSCAD export + OpenSCAD export + + + + maximum fragment size + a töredék maximum mérete + + + + minimum angle for a fragment + minimum dőlésszög a töredékhez + + + + angular (fa) + Dőlésszög (fa) + + + + ° + ° + + + + minimum size of a fragment + a töredék minimum mérete + + + + size (fs) + méret (fs) + + + + mm + mm + + + + convexity + domborúság + + + + Mesh fallback + Háló visszamaradás + + + + Maxium Length + Maximum Hossz + + + + MaxLength + MaxHossz + + + + Maximum Length + Maximális Hosszúság + + + + Maximum Area + Maximum Terület + + + + maxArea + maxTerület + + + + Local Length + Helyi Hosszúság + + + + localLen + HelyiHossz + + + + Deflection + Kiöblösödés + + + + deflection + kiöblösödés + + + + Triangulation settings + Háromszögelési beállítások + + + + OpenSCAD + + + Color Shapes + Forma színezés + + + + Color Shapes by validity and type + Érvényesség és típus szerinti forma színezés + + + + Convert Edges To Faces + Élek felületté konvertálása + + + + Convert Edges to Faces + Élek felületté konvertálása + + + + Refine Shape Feature + Forma Tulajdonság létrehozás + + + + Create Refine Shape Feature + Forma Tulajdonság létrehozás finomítás + + + + Expand Placements + Helyzetek kibontása + + + + Expand all placements downwards the FeatureTree + A TulajdonságFa minden alsóbbrendű helyzetének kibontása + + + + Please select 3 objects first + Kérem válasszon ki előszőr 3 tárgyat + + + + Replace Object + Tárgy cseréje + + + + Replace an object in the Feature Tree. Please select old, new and parent object + Objektum cseréje a tulajdonság fában. Kérem válasszon régi, új és állandó objektumot + + + + Remove Objects and their Children + Az objektum és hozzá tartotzó alegységeinek törlése + + + + Removes the selected objects and all children that are not referenced from other objects + A tárgyat törli és valamennyi alegységét, amely nem tertozik más tárgyhoz + + + + Running OpenSCAD failed + + OpenSCAD futatása sikertelen + + + + Add OpenSCAD Element... + OpenSCAD elem hozzáadása... + + + + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + OpenSCAD kóddal adjon hozzás penSCAD elemet és hajtsa végre az OpenSCAD utasítást + + + + Unsupported Function + Nem támogatott funkció + + + + Press OK + OK-ra kattintson + + + + Projection Not yet Coded waiting for Peter Li + Vetítés még nincs kódolva, várjuk Pete Li-t + + + + Press OK + OK-ra kattintson + + + diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_it.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_it.qm new file mode 100644 index 000000000..52a45cfe4 Binary files /dev/null and b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_it.qm differ diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_it.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_it.ts new file mode 100644 index 000000000..1cd5d5594 --- /dev/null +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_it.ts @@ -0,0 +1,272 @@ + + + + + Gui::Dialog::DlgSettingsOpenSCAD + + + General settings + Impostazioni generali + + + + General OpenSCAD Settings + General OpenSCAD Settings + + + + OpenSCAD executable + OpenSCAD executable + + + + The path to the OpenSCAD executeable + The path to the OpenSCAD executeable + + + + OpenSCAD import + OpenSCAD import + + + + If this is checked, Features will claim thier children in the tree view + If this is checked, Features will claim thier children in the tree view + + + + Use ViewProvider in Tree View + Use ViewProvider in Tree View + + + + If this is checked, Multmatrix Object will be Parametric + If this is checked, Multmatrix Object will be Parametric + + + + Use Multmatrix Feature + Use Multmatrix Feature + + + + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + + + + Maximum number of faces for polygons (fn) + Maximum number of faces for polygons (fn) + + + + Debug: Register filetype to prototype importer + Debug: Register filetype to prototype importer + + + + OpenSCAD export + OpenSCAD export + + + + maximum fragment size + maximum fragment size + + + + minimum angle for a fragment + minimum angle for a fragment + + + + angular (fa) + angular (fa) + + + + ° + ° + + + + minimum size of a fragment + minimum size of a fragment + + + + size (fs) + size (fs) + + + + mm + mm + + + + convexity + convexity + + + + Mesh fallback + Mesh fallback + + + + Maxium Length + Maxium Length + + + + MaxLength + MaxLength + + + + Maximum Length + Maximum Length + + + + Maximum Area + Maximum Area + + + + maxArea + maxArea + + + + Local Length + Local Length + + + + localLen + localLen + + + + Deflection + Deflection + + + + deflection + deflection + + + + Triangulation settings + Triangulation settings + + + + OpenSCAD + + + Color Shapes + Color Shapes + + + + Color Shapes by validity and type + Color Shapes by validity and type + + + + Convert Edges To Faces + Convert Edges To Faces + + + + Convert Edges to Faces + Convert Edges to Faces + + + + Refine Shape Feature + Refine Shape Feature + + + + Create Refine Shape Feature + Create Refine Shape Feature + + + + Expand Placements + Expand Placements + + + + Expand all placements downwards the FeatureTree + Expand all placements downwards the FeatureTree + + + + Please select 3 objects first + Please select 3 objects first + + + + Replace Object + Replace Object + + + + Replace an object in the Feature Tree. Please select old, new and parent object + Replace an object in the Feature Tree. Please select old, new and parent object + + + + Remove Objects and their Children + Remove Objects and their Children + + + + Removes the selected objects and all children that are not referenced from other objects + Removes the selected objects and all children that are not referenced from other objects + + + + Running OpenSCAD failed + + Running OpenSCAD failed + + + + + Add OpenSCAD Element... + Add OpenSCAD Element... + + + + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + + + + Unsupported Function + Unsupported Function + + + + Press OK + Press OK + + + + Projection Not yet Coded waiting for Peter Li + Projection Not yet Coded waiting for Peter Li + + + + Press OK + Press OK + + + diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ja.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ja.qm new file mode 100644 index 000000000..a3cb60275 Binary files /dev/null and b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ja.qm differ diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ja.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ja.ts new file mode 100644 index 000000000..9fbbf6f98 --- /dev/null +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ja.ts @@ -0,0 +1,272 @@ + + + + + Gui::Dialog::DlgSettingsOpenSCAD + + + General settings + 全般的な設定 + + + + General OpenSCAD Settings + General OpenSCAD Settings + + + + OpenSCAD executable + OpenSCAD executable + + + + The path to the OpenSCAD executeable + The path to the OpenSCAD executeable + + + + OpenSCAD import + OpenSCAD import + + + + If this is checked, Features will claim thier children in the tree view + If this is checked, Features will claim thier children in the tree view + + + + Use ViewProvider in Tree View + Use ViewProvider in Tree View + + + + If this is checked, Multmatrix Object will be Parametric + If this is checked, Multmatrix Object will be Parametric + + + + Use Multmatrix Feature + Use Multmatrix Feature + + + + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + + + + Maximum number of faces for polygons (fn) + Maximum number of faces for polygons (fn) + + + + Debug: Register filetype to prototype importer + Debug: Register filetype to prototype importer + + + + OpenSCAD export + OpenSCAD export + + + + maximum fragment size + maximum fragment size + + + + minimum angle for a fragment + minimum angle for a fragment + + + + angular (fa) + angular (fa) + + + + ° + ° + + + + minimum size of a fragment + minimum size of a fragment + + + + size (fs) + size (fs) + + + + mm + mm + + + + convexity + convexity + + + + Mesh fallback + Mesh fallback + + + + Maxium Length + Maxium Length + + + + MaxLength + MaxLength + + + + Maximum Length + Maximum Length + + + + Maximum Area + Maximum Area + + + + maxArea + maxArea + + + + Local Length + Local Length + + + + localLen + localLen + + + + Deflection + Deflection + + + + deflection + deflection + + + + Triangulation settings + Triangulation settings + + + + OpenSCAD + + + Color Shapes + Color Shapes + + + + Color Shapes by validity and type + Color Shapes by validity and type + + + + Convert Edges To Faces + Convert Edges To Faces + + + + Convert Edges to Faces + Convert Edges to Faces + + + + Refine Shape Feature + Refine Shape Feature + + + + Create Refine Shape Feature + Create Refine Shape Feature + + + + Expand Placements + Expand Placements + + + + Expand all placements downwards the FeatureTree + Expand all placements downwards the FeatureTree + + + + Please select 3 objects first + Please select 3 objects first + + + + Replace Object + Replace Object + + + + Replace an object in the Feature Tree. Please select old, new and parent object + Replace an object in the Feature Tree. Please select old, new and parent object + + + + Remove Objects and their Children + Remove Objects and their Children + + + + Removes the selected objects and all children that are not referenced from other objects + Removes the selected objects and all children that are not referenced from other objects + + + + Running OpenSCAD failed + + Running OpenSCAD failed + + + + + Add OpenSCAD Element... + Add OpenSCAD Element... + + + + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + + + + Unsupported Function + Unsupported Function + + + + Press OK + Press OK + + + + Projection Not yet Coded waiting for Peter Li + Projection Not yet Coded waiting for Peter Li + + + + Press OK + Press OK + + + diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_nl.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_nl.qm new file mode 100644 index 000000000..88bdb84cf Binary files /dev/null and b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_nl.qm differ diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_nl.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_nl.ts new file mode 100644 index 000000000..9a1dfbdf6 --- /dev/null +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_nl.ts @@ -0,0 +1,272 @@ + + + + + Gui::Dialog::DlgSettingsOpenSCAD + + + General settings + Algemene instellingen + + + + General OpenSCAD Settings + General OpenSCAD Settings + + + + OpenSCAD executable + OpenSCAD executable + + + + The path to the OpenSCAD executeable + The path to the OpenSCAD executeable + + + + OpenSCAD import + OpenSCAD import + + + + If this is checked, Features will claim thier children in the tree view + If this is checked, Features will claim thier children in the tree view + + + + Use ViewProvider in Tree View + Use ViewProvider in Tree View + + + + If this is checked, Multmatrix Object will be Parametric + If this is checked, Multmatrix Object will be Parametric + + + + Use Multmatrix Feature + Use Multmatrix Feature + + + + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + + + + Maximum number of faces for polygons (fn) + Maximum number of faces for polygons (fn) + + + + Debug: Register filetype to prototype importer + Debug: Register filetype to prototype importer + + + + OpenSCAD export + OpenSCAD export + + + + maximum fragment size + maximum fragment size + + + + minimum angle for a fragment + minimum angle for a fragment + + + + angular (fa) + angular (fa) + + + + ° + ° + + + + minimum size of a fragment + minimum size of a fragment + + + + size (fs) + size (fs) + + + + mm + mm + + + + convexity + convexity + + + + Mesh fallback + Mesh fallback + + + + Maxium Length + Maxium Length + + + + MaxLength + MaxLength + + + + Maximum Length + Maximum Length + + + + Maximum Area + Maximum Area + + + + maxArea + maxArea + + + + Local Length + Local Length + + + + localLen + localLen + + + + Deflection + Deflection + + + + deflection + deflection + + + + Triangulation settings + Triangulation settings + + + + OpenSCAD + + + Color Shapes + Color Shapes + + + + Color Shapes by validity and type + Color Shapes by validity and type + + + + Convert Edges To Faces + Convert Edges To Faces + + + + Convert Edges to Faces + Convert Edges to Faces + + + + Refine Shape Feature + Refine Shape Feature + + + + Create Refine Shape Feature + Create Refine Shape Feature + + + + Expand Placements + Expand Placements + + + + Expand all placements downwards the FeatureTree + Expand all placements downwards the FeatureTree + + + + Please select 3 objects first + Please select 3 objects first + + + + Replace Object + Replace Object + + + + Replace an object in the Feature Tree. Please select old, new and parent object + Replace an object in the Feature Tree. Please select old, new and parent object + + + + Remove Objects and their Children + Remove Objects and their Children + + + + Removes the selected objects and all children that are not referenced from other objects + Removes the selected objects and all children that are not referenced from other objects + + + + Running OpenSCAD failed + + Running OpenSCAD failed + + + + + Add OpenSCAD Element... + Add OpenSCAD Element... + + + + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + + + + Unsupported Function + Unsupported Function + + + + Press OK + Press OK + + + + Projection Not yet Coded waiting for Peter Li + Projection Not yet Coded waiting for Peter Li + + + + Press OK + Press OK + + + diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_no.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_no.qm new file mode 100644 index 000000000..5d55f93cd Binary files /dev/null and b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_no.qm differ diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_no.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_no.ts new file mode 100644 index 000000000..5d2cbc8b2 --- /dev/null +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_no.ts @@ -0,0 +1,272 @@ + + + + + Gui::Dialog::DlgSettingsOpenSCAD + + + General settings + Generelle innstillinger + + + + General OpenSCAD Settings + General OpenSCAD Settings + + + + OpenSCAD executable + OpenSCAD executable + + + + The path to the OpenSCAD executeable + The path to the OpenSCAD executeable + + + + OpenSCAD import + OpenSCAD import + + + + If this is checked, Features will claim thier children in the tree view + If this is checked, Features will claim thier children in the tree view + + + + Use ViewProvider in Tree View + Use ViewProvider in Tree View + + + + If this is checked, Multmatrix Object will be Parametric + If this is checked, Multmatrix Object will be Parametric + + + + Use Multmatrix Feature + Use Multmatrix Feature + + + + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + + + + Maximum number of faces for polygons (fn) + Maximum number of faces for polygons (fn) + + + + Debug: Register filetype to prototype importer + Debug: Register filetype to prototype importer + + + + OpenSCAD export + OpenSCAD export + + + + maximum fragment size + maximum fragment size + + + + minimum angle for a fragment + minimum angle for a fragment + + + + angular (fa) + angular (fa) + + + + ° + ° + + + + minimum size of a fragment + minimum size of a fragment + + + + size (fs) + size (fs) + + + + mm + mm + + + + convexity + convexity + + + + Mesh fallback + Mesh fallback + + + + Maxium Length + Maxium Length + + + + MaxLength + MaxLength + + + + Maximum Length + Maximum Length + + + + Maximum Area + Maximum Area + + + + maxArea + maxArea + + + + Local Length + Local Length + + + + localLen + localLen + + + + Deflection + Deflection + + + + deflection + deflection + + + + Triangulation settings + Triangulation settings + + + + OpenSCAD + + + Color Shapes + Color Shapes + + + + Color Shapes by validity and type + Color Shapes by validity and type + + + + Convert Edges To Faces + Convert Edges To Faces + + + + Convert Edges to Faces + Convert Edges to Faces + + + + Refine Shape Feature + Refine Shape Feature + + + + Create Refine Shape Feature + Create Refine Shape Feature + + + + Expand Placements + Expand Placements + + + + Expand all placements downwards the FeatureTree + Expand all placements downwards the FeatureTree + + + + Please select 3 objects first + Please select 3 objects first + + + + Replace Object + Replace Object + + + + Replace an object in the Feature Tree. Please select old, new and parent object + Replace an object in the Feature Tree. Please select old, new and parent object + + + + Remove Objects and their Children + Remove Objects and their Children + + + + Removes the selected objects and all children that are not referenced from other objects + Removes the selected objects and all children that are not referenced from other objects + + + + Running OpenSCAD failed + + Running OpenSCAD failed + + + + + Add OpenSCAD Element... + Add OpenSCAD Element... + + + + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + + + + Unsupported Function + Unsupported Function + + + + Press OK + Press OK + + + + Projection Not yet Coded waiting for Peter Li + Projection Not yet Coded waiting for Peter Li + + + + Press OK + Press OK + + + diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pl.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pl.qm new file mode 100644 index 000000000..2f0a63236 Binary files /dev/null and b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pl.qm differ diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pl.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pl.ts new file mode 100644 index 000000000..b9ae16088 --- /dev/null +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pl.ts @@ -0,0 +1,271 @@ + + + + + Gui::Dialog::DlgSettingsOpenSCAD + + + General settings + Ustawienia ogólne + + + + General OpenSCAD Settings + General OpenSCAD Settings + + + + OpenSCAD executable + OpenSCAD executable + + + + The path to the OpenSCAD executeable + The path to the OpenSCAD executeable + + + + OpenSCAD import + OpenSCAD import + + + + If this is checked, Features will claim thier children in the tree view + If this is checked, Features will claim thier children in the tree view + + + + Use ViewProvider in Tree View + Use ViewProvider in Tree View + + + + If this is checked, Multmatrix Object will be Parametric + If this is checked, Multmatrix Object will be Parametric + + + + Use Multmatrix Feature + Użyj funkcji Multmatrix + + + + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + + + + Maximum number of faces for polygons (fn) + Maximum number of faces for polygons (fn) + + + + Debug: Register filetype to prototype importer + Debug: Register filetype to prototype importer + + + + OpenSCAD export + OpenSCAD export + + + + maximum fragment size + maximum fragment size + + + + minimum angle for a fragment + minimum angle for a fragment + + + + angular (fa) + angular (fa) + + + + ° + ° + + + + minimum size of a fragment + minimalny rozmiar fragmentu + + + + size (fs) + rozmiar (fs) + + + + mm + mm + + + + convexity + wypukłość + + + + Mesh fallback + Mesh fallback + + + + Maxium Length + Maksymalna długość + + + + MaxLength + MaxDługość + + + + Maximum Length + Maksymalna długość + + + + Maximum Area + Maksymalny obszar + + + + maxArea + MaxObszar + + + + Local Length + Local Length + + + + localLen + localLen + + + + Deflection + Odkształcenie + + + + deflection + odkształcenie + + + + Triangulation settings + Triangulation settings + + + + OpenSCAD + + + Color Shapes + Kolor kształtów + + + + Color Shapes by validity and type + Color Shapes by validity and type + + + + Convert Edges To Faces + Konwersja krawędzi do lic + + + + Convert Edges to Faces + Konwersja krawędzi do lic + + + + Refine Shape Feature + Refine Shape Feature + + + + Create Refine Shape Feature + Create Refine Shape Feature + + + + Expand Placements + Expand Placements + + + + Expand all placements downwards the FeatureTree + Expand all placements downwards the FeatureTree + + + + Please select 3 objects first + Please select 3 objects first + + + + Replace Object + Zamień obiekt + + + + Replace an object in the Feature Tree. Please select old, new and parent object + Replace an object in the Feature Tree. Please select old, new and parent object + + + + Remove Objects and their Children + Remove Objects and their Children + + + + Removes the selected objects and all children that are not referenced from other objects + Removes the selected objects and all children that are not referenced from other objects + + + + Running OpenSCAD failed + + Nieudane uruchomienie OpenSCAD + + + + Add OpenSCAD Element... + Add OpenSCAD Element... + + + + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + + + + Unsupported Function + Funkcja nieobsługiwana + + + + Press OK + Naciśnij przycisk OK + + + + Projection Not yet Coded waiting for Peter Li + Projection Not yet Coded waiting for Peter Li + + + + Press OK + Naciśnij przycisk OK + + + diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pt-BR.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pt-BR.qm new file mode 100644 index 000000000..99f3e76ec Binary files /dev/null and b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pt-BR.qm differ diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pt-BR.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pt-BR.ts new file mode 100644 index 000000000..810db8c0e --- /dev/null +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_pt-BR.ts @@ -0,0 +1,271 @@ + + + + + Gui::Dialog::DlgSettingsOpenSCAD + + + General settings + Configurações gerais + + + + General OpenSCAD Settings + Configurações gerais do OpenSCAD + + + + OpenSCAD executable + executável OpenSCAD + + + + The path to the OpenSCAD executeable + O caminho para o executável do OpenSCAD + + + + OpenSCAD import + importação OpenSCAD + + + + If this is checked, Features will claim thier children in the tree view + Se esta for marcada, objetos vão agrupar seus descendentes na árvore + + + + Use ViewProvider in Tree View + Usar ViewProviders na árvore + + + + If this is checked, Multmatrix Object will be Parametric + Se esta for marcada, os objetos Multimatrix serão paramétricos + + + + Use Multmatrix Feature + Usar Multmatrix + + + + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + O número máximo de faces de um polígono, prisma ou tronco. Se fn é maior do que esse valor, o objeto será considerado circular. Ponha 0 para não impor limite + + + + Maximum number of faces for polygons (fn) + Número máximo de faces para polígonos (fn) + + + + Debug: Register filetype to prototype importer + Debug: Registrar tipo de arquivo no importador de protótipo + + + + OpenSCAD export + exportação OpenSCAD + + + + maximum fragment size + tamanho máximo de um fragmento + + + + minimum angle for a fragment + ângulo mínimo para um fragmento + + + + angular (fa) + angular (fa) + + + + ° + ° + + + + minimum size of a fragment + tamanho mínimo de um fragmento + + + + size (fs) + tamanho (fs) + + + + mm + mm + + + + convexity + convexidade + + + + Mesh fallback + Malha de socorro + + + + Maxium Length + Comprimento máximo + + + + MaxLength + MaxLength + + + + Maximum Length + Comprimento máximo + + + + Maximum Area + Área máxima + + + + maxArea + maxArea + + + + Local Length + Comprimento local + + + + localLen + localLen + + + + Deflection + Deflexão + + + + deflection + deflexão + + + + Triangulation settings + Configurações de triangulação + + + + OpenSCAD + + + Color Shapes + Colorir formas + + + + Color Shapes by validity and type + Colorir as formas pelo tipo e validade + + + + Convert Edges To Faces + Converter arestas em faces + + + + Convert Edges to Faces + Converter arestas em faces + + + + Refine Shape Feature + Refinamento de forma + + + + Create Refine Shape Feature + Criar um objeto de refinamento de forma + + + + Expand Placements + Expandir placements + + + + Expand all placements downwards the FeatureTree + Expandir todas os placements para baixo na árvore + + + + Please select 3 objects first + Por favor, selecione 3 objetos + + + + Replace Object + Substituir um objeto + + + + Replace an object in the Feature Tree. Please select old, new and parent object + Substituir um objeto na árvore. Por favor, selecione o velho, o novo e objeto pai + + + + Remove Objects and their Children + Remover objetos e seus descendentes + + + + Removes the selected objects and all children that are not referenced from other objects + Remove os objetos selecionados e todos os seus descendentes que não são referenciados por outros objetos + + + + Running OpenSCAD failed + + A execução de OpenSCAD falhou + + + + Add OpenSCAD Element... + Adicionar um elemento OpenSCAD... + + + + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + Adicionar um elemento OpenSCAD inserindo código OpenSCAD e executar o binário de OpenSCAD + + + + Unsupported Function + Função não suportada + + + + Press OK + Pressione OK + + + + Projection Not yet Coded waiting for Peter Li + Projeção ainda não codificada, esperando por Peter Li + + + + Press OK + Pressione OK + + + diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ro.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ro.qm new file mode 100644 index 000000000..63ece482d Binary files /dev/null and b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ro.qm differ diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ro.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ro.ts new file mode 100644 index 000000000..2d1eb0268 --- /dev/null +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ro.ts @@ -0,0 +1,272 @@ + + + + + Gui::Dialog::DlgSettingsOpenSCAD + + + General settings + Setări generale + + + + General OpenSCAD Settings + Setări generale OpenSCAD + + + + OpenSCAD executable + Executabil OpenSCAD + + + + The path to the OpenSCAD executeable + Calea executabilului OpenSCAD + + + + OpenSCAD import + Import OpenSCAD + + + + If this is checked, Features will claim thier children in the tree view + Dacă această casuţă este bifată, componentele îşi vor însuşii copii în vizualizarea arbore + + + + Use ViewProvider in Tree View + Use ViewProvider in Tree View + + + + If this is checked, Multmatrix Object will be Parametric + If this is checked, Multmatrix Object will be Parametric + + + + Use Multmatrix Feature + Use Multmatrix Feature + + + + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + + + + Maximum number of faces for polygons (fn) + Maximum number of faces for polygons (fn) + + + + Debug: Register filetype to prototype importer + Debug: Register filetype to prototype importer + + + + OpenSCAD export + OpenSCAD export + + + + maximum fragment size + maximum fragment size + + + + minimum angle for a fragment + minimum angle for a fragment + + + + angular (fa) + angular (fa) + + + + ° + ° + + + + minimum size of a fragment + minimum size of a fragment + + + + size (fs) + size (fs) + + + + mm + mm + + + + convexity + convexity + + + + Mesh fallback + Mesh fallback + + + + Maxium Length + Maxium Length + + + + MaxLength + MaxLength + + + + Maximum Length + Maximum Length + + + + Maximum Area + Maximum Area + + + + maxArea + maxArea + + + + Local Length + Local Length + + + + localLen + localLen + + + + Deflection + Deflection + + + + deflection + deflection + + + + Triangulation settings + Triangulation settings + + + + OpenSCAD + + + Color Shapes + Color Shapes + + + + Color Shapes by validity and type + Color Shapes by validity and type + + + + Convert Edges To Faces + Convert Edges To Faces + + + + Convert Edges to Faces + Convert Edges to Faces + + + + Refine Shape Feature + Refine Shape Feature + + + + Create Refine Shape Feature + Create Refine Shape Feature + + + + Expand Placements + Expand Placements + + + + Expand all placements downwards the FeatureTree + Expand all placements downwards the FeatureTree + + + + Please select 3 objects first + Please select 3 objects first + + + + Replace Object + Replace Object + + + + Replace an object in the Feature Tree. Please select old, new and parent object + Replace an object in the Feature Tree. Please select old, new and parent object + + + + Remove Objects and their Children + Remove Objects and their Children + + + + Removes the selected objects and all children that are not referenced from other objects + Removes the selected objects and all children that are not referenced from other objects + + + + Running OpenSCAD failed + + Running OpenSCAD failed + + + + + Add OpenSCAD Element... + Add OpenSCAD Element... + + + + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + + + + Unsupported Function + Unsupported Function + + + + Press OK + Press OK + + + + Projection Not yet Coded waiting for Peter Li + Projection Not yet Coded waiting for Peter Li + + + + Press OK + Press OK + + + diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ru.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ru.qm new file mode 100644 index 000000000..d0c30f662 Binary files /dev/null and b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ru.qm differ diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ru.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ru.ts new file mode 100644 index 000000000..426ce5d23 --- /dev/null +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ru.ts @@ -0,0 +1,272 @@ + + + + + Gui::Dialog::DlgSettingsOpenSCAD + + + General settings + Общие настройки + + + + General OpenSCAD Settings + Общие параметры OpenSCAD + + + + OpenSCAD executable + Исполняемый файл OpenSCAD + + + + The path to the OpenSCAD executeable + The path to the OpenSCAD executeable + + + + OpenSCAD import + OpenSCAD импорт + + + + If this is checked, Features will claim thier children in the tree view + If this is checked, Features will claim thier children in the tree view + + + + Use ViewProvider in Tree View + Use ViewProvider in Tree View + + + + If this is checked, Multmatrix Object will be Parametric + If this is checked, Multmatrix Object will be Parametric + + + + Use Multmatrix Feature + Use Multmatrix Feature + + + + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + + + + Maximum number of faces for polygons (fn) + Maximum number of faces for polygons (fn) + + + + Debug: Register filetype to prototype importer + Debug: Register filetype to prototype importer + + + + OpenSCAD export + OpenSCAD export + + + + maximum fragment size + maximum fragment size + + + + minimum angle for a fragment + minimum angle for a fragment + + + + angular (fa) + angular (fa) + + + + ° + ° + + + + minimum size of a fragment + minimum size of a fragment + + + + size (fs) + size (fs) + + + + mm + мм + + + + convexity + convexity + + + + Mesh fallback + Mesh fallback + + + + Maxium Length + Maxium Length + + + + MaxLength + MaxLength + + + + Maximum Length + Максимальная длина + + + + Maximum Area + Maximum Area + + + + maxArea + maxArea + + + + Local Length + Local Length + + + + localLen + localLen + + + + Deflection + Deflection + + + + deflection + deflection + + + + Triangulation settings + Triangulation settings + + + + OpenSCAD + + + Color Shapes + Color Shapes + + + + Color Shapes by validity and type + Color Shapes by validity and type + + + + Convert Edges To Faces + Преобразовать рёбра в поверхность + + + + Convert Edges to Faces + Преобразовать рёбра в поверхность + + + + Refine Shape Feature + Refine Shape Feature + + + + Create Refine Shape Feature + Create Refine Shape Feature + + + + Expand Placements + Expand Placements + + + + Expand all placements downwards the FeatureTree + Expand all placements downwards the FeatureTree + + + + Please select 3 objects first + Please select 3 objects first + + + + Replace Object + Заменить объект + + + + Replace an object in the Feature Tree. Please select old, new and parent object + Replace an object in the Feature Tree. Please select old, new and parent object + + + + Remove Objects and their Children + Remove Objects and their Children + + + + Removes the selected objects and all children that are not referenced from other objects + Removes the selected objects and all children that are not referenced from other objects + + + + Running OpenSCAD failed + + Running OpenSCAD failed + + + + + Add OpenSCAD Element... + Add OpenSCAD Element... + + + + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + + + + Unsupported Function + Неподдерживаемые функции + + + + Press OK + Нажмите кнопку OK + + + + Projection Not yet Coded waiting for Peter Li + Projection Not yet Coded waiting for Peter Li + + + + Press OK + Нажмите кнопку OK + + + diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sk.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sk.qm new file mode 100644 index 000000000..e3aef3466 Binary files /dev/null and b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sk.qm differ diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sk.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sk.ts new file mode 100644 index 000000000..a4bd46840 --- /dev/null +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sk.ts @@ -0,0 +1,272 @@ + + + + + Gui::Dialog::DlgSettingsOpenSCAD + + + General settings + Základné nastavenia + + + + General OpenSCAD Settings + General OpenSCAD Settings + + + + OpenSCAD executable + OpenSCAD executable + + + + The path to the OpenSCAD executeable + The path to the OpenSCAD executeable + + + + OpenSCAD import + OpenSCAD import + + + + If this is checked, Features will claim thier children in the tree view + If this is checked, Features will claim thier children in the tree view + + + + Use ViewProvider in Tree View + Use ViewProvider in Tree View + + + + If this is checked, Multmatrix Object will be Parametric + If this is checked, Multmatrix Object will be Parametric + + + + Use Multmatrix Feature + Use Multmatrix Feature + + + + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + + + + Maximum number of faces for polygons (fn) + Maximum number of faces for polygons (fn) + + + + Debug: Register filetype to prototype importer + Debug: Register filetype to prototype importer + + + + OpenSCAD export + OpenSCAD export + + + + maximum fragment size + maximum fragment size + + + + minimum angle for a fragment + minimum angle for a fragment + + + + angular (fa) + angular (fa) + + + + ° + ° + + + + minimum size of a fragment + minimum size of a fragment + + + + size (fs) + size (fs) + + + + mm + mm + + + + convexity + convexity + + + + Mesh fallback + Mesh fallback + + + + Maxium Length + Maxium Length + + + + MaxLength + MaxLength + + + + Maximum Length + Maximum Length + + + + Maximum Area + Maximum Area + + + + maxArea + maxArea + + + + Local Length + Local Length + + + + localLen + localLen + + + + Deflection + Deflection + + + + deflection + deflection + + + + Triangulation settings + Triangulation settings + + + + OpenSCAD + + + Color Shapes + Color Shapes + + + + Color Shapes by validity and type + Color Shapes by validity and type + + + + Convert Edges To Faces + Convert Edges To Faces + + + + Convert Edges to Faces + Convert Edges to Faces + + + + Refine Shape Feature + Refine Shape Feature + + + + Create Refine Shape Feature + Create Refine Shape Feature + + + + Expand Placements + Expand Placements + + + + Expand all placements downwards the FeatureTree + Expand all placements downwards the FeatureTree + + + + Please select 3 objects first + Please select 3 objects first + + + + Replace Object + Replace Object + + + + Replace an object in the Feature Tree. Please select old, new and parent object + Replace an object in the Feature Tree. Please select old, new and parent object + + + + Remove Objects and their Children + Remove Objects and their Children + + + + Removes the selected objects and all children that are not referenced from other objects + Removes the selected objects and all children that are not referenced from other objects + + + + Running OpenSCAD failed + + Running OpenSCAD failed + + + + + Add OpenSCAD Element... + Add OpenSCAD Element... + + + + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + + + + Unsupported Function + Unsupported Function + + + + Press OK + Press OK + + + + Projection Not yet Coded waiting for Peter Li + Projection Not yet Coded waiting for Peter Li + + + + Press OK + Press OK + + + diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sv-SE.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sv-SE.qm new file mode 100644 index 000000000..f67172879 Binary files /dev/null and b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sv-SE.qm differ diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sv-SE.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sv-SE.ts new file mode 100644 index 000000000..b5f53f6b8 --- /dev/null +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_sv-SE.ts @@ -0,0 +1,272 @@ + + + + + Gui::Dialog::DlgSettingsOpenSCAD + + + General settings + Allmänna inställningar + + + + General OpenSCAD Settings + Allmänna OpenSCAD inställningar + + + + OpenSCAD executable + OpenSCAD program + + + + The path to the OpenSCAD executeable + Sökvägen till OpenSCAD programmet + + + + OpenSCAD import + OpenSCAD import + + + + If this is checked, Features will claim thier children in the tree view + Om detta är markerat, så kommer föremål att hävda sina barn i trädvyn + + + + Use ViewProvider in Tree View + Använd ViewProvider i trädvyn + + + + If this is checked, Multmatrix Object will be Parametric + Om detta är markerat, så kommer Multmatrix objektet att vara parametriskt + + + + Use Multmatrix Feature + Använd Multmatrix funktionen + + + + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + Det maximala antalet ytor på en polygon, prisma eller stympad kon. Om fn är högre än detta värde anses objektet vara ett cirkulär. Ange 0 för ingen gräns + + + + Maximum number of faces for polygons (fn) + Maximalt antal ytor för polygoner (fn) + + + + Debug: Register filetype to prototype importer + Debug: Registrera filtyp till prototyp importör + + + + OpenSCAD export + OpenSCAD export + + + + maximum fragment size + maximum fragment size + + + + minimum angle for a fragment + minimum angle for a fragment + + + + angular (fa) + angular (fa) + + + + ° + ° + + + + minimum size of a fragment + minimum size of a fragment + + + + size (fs) + size (fs) + + + + mm + mm + + + + convexity + convexity + + + + Mesh fallback + Mesh fallback + + + + Maxium Length + Maxium Length + + + + MaxLength + MaxLength + + + + Maximum Length + Maximum Length + + + + Maximum Area + Maximum Area + + + + maxArea + maxArea + + + + Local Length + Local Length + + + + localLen + localLen + + + + Deflection + Deflection + + + + deflection + deflection + + + + Triangulation settings + Triangulation settings + + + + OpenSCAD + + + Color Shapes + Color Shapes + + + + Color Shapes by validity and type + Color Shapes by validity and type + + + + Convert Edges To Faces + Convert Edges To Faces + + + + Convert Edges to Faces + Convert Edges to Faces + + + + Refine Shape Feature + Refine Shape Feature + + + + Create Refine Shape Feature + Create Refine Shape Feature + + + + Expand Placements + Expand Placements + + + + Expand all placements downwards the FeatureTree + Expand all placements downwards the FeatureTree + + + + Please select 3 objects first + Please select 3 objects first + + + + Replace Object + Replace Object + + + + Replace an object in the Feature Tree. Please select old, new and parent object + Replace an object in the Feature Tree. Please select old, new and parent object + + + + Remove Objects and their Children + Remove Objects and their Children + + + + Removes the selected objects and all children that are not referenced from other objects + Removes the selected objects and all children that are not referenced from other objects + + + + Running OpenSCAD failed + + Running OpenSCAD failed + + + + + Add OpenSCAD Element... + Add OpenSCAD Element... + + + + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + + + + Unsupported Function + Unsupported Function + + + + Press OK + Press OK + + + + Projection Not yet Coded waiting for Peter Li + Projection Not yet Coded waiting for Peter Li + + + + Press OK + Press OK + + + diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_tr.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_tr.qm new file mode 100644 index 000000000..565685e26 Binary files /dev/null and b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_tr.qm differ diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_tr.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_tr.ts new file mode 100644 index 000000000..f15a70469 --- /dev/null +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_tr.ts @@ -0,0 +1,272 @@ + + + + + Gui::Dialog::DlgSettingsOpenSCAD + + + General settings + Genel ayarlar + + + + General OpenSCAD Settings + Genel OpenSCAD ayarları + + + + OpenSCAD executable + OpenSCAD executable + + + + The path to the OpenSCAD executeable + The path to the OpenSCAD executeable + + + + OpenSCAD import + OpenSCAD import + + + + If this is checked, Features will claim thier children in the tree view + If this is checked, Features will claim thier children in the tree view + + + + Use ViewProvider in Tree View + Use ViewProvider in Tree View + + + + If this is checked, Multmatrix Object will be Parametric + If this is checked, Multmatrix Object will be Parametric + + + + Use Multmatrix Feature + Use Multmatrix Feature + + + + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + + + + Maximum number of faces for polygons (fn) + Maximum number of faces for polygons (fn) + + + + Debug: Register filetype to prototype importer + Debug: Register filetype to prototype importer + + + + OpenSCAD export + OpenSCAD export + + + + maximum fragment size + maximum fragment size + + + + minimum angle for a fragment + minimum angle for a fragment + + + + angular (fa) + angular (fa) + + + + ° + ° + + + + minimum size of a fragment + minimum size of a fragment + + + + size (fs) + size (fs) + + + + mm + mm + + + + convexity + convexity + + + + Mesh fallback + Mesh fallback + + + + Maxium Length + Maxium Length + + + + MaxLength + MaxLength + + + + Maximum Length + Maximum Length + + + + Maximum Area + Maximum Area + + + + maxArea + maxArea + + + + Local Length + Yerel uzunluk + + + + localLen + localLen + + + + Deflection + Deflection + + + + deflection + deflection + + + + Triangulation settings + Triangulation settings + + + + OpenSCAD + + + Color Shapes + Renkli şekiller + + + + Color Shapes by validity and type + Color Shapes by validity and type + + + + Convert Edges To Faces + Kenarları yüzlere dönüştür + + + + Convert Edges to Faces + Kenarları yüzlere dönüştür + + + + Refine Shape Feature + Refine Shape Feature + + + + Create Refine Shape Feature + Create Refine Shape Feature + + + + Expand Placements + Expand Placements + + + + Expand all placements downwards the FeatureTree + Expand all placements downwards the FeatureTree + + + + Please select 3 objects first + Lütfen öncelikle 3 nesneyi seçin + + + + Replace Object + Nesneyi Yerdeğiştir + + + + Replace an object in the Feature Tree. Please select old, new and parent object + Bir nesneyi özellik ağacında değiştirin. Lütfen eski, yeni ve üst nesneyi Seçin + + + + Remove Objects and their Children + Nesneleri ve bunların alt öğelerini kaldır + + + + Removes the selected objects and all children that are not referenced from other objects + Removes the selected objects and all children that are not referenced from other objects + + + + Running OpenSCAD failed + + Running OpenSCAD failed + + + + + Add OpenSCAD Element... + OpenSCAD öğesi ekle... + + + + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + + + + Unsupported Function + Desteklenmeyen işlev + + + + Press OK + OK(okey) tuşuna bas + + + + Projection Not yet Coded waiting for Peter Li + Projeksiyon hala Peter Li'nin kodlmasını bekliyor + + + + Press OK + OK(okey) tuşuna bas + + + diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_uk.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_uk.qm new file mode 100644 index 000000000..e267b6f48 Binary files /dev/null and b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_uk.qm differ diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_uk.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_uk.ts new file mode 100644 index 000000000..dd10540df --- /dev/null +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_uk.ts @@ -0,0 +1,272 @@ + + + + + Gui::Dialog::DlgSettingsOpenSCAD + + + General settings + Загальні параметри + + + + General OpenSCAD Settings + General OpenSCAD Settings + + + + OpenSCAD executable + OpenSCAD executable + + + + The path to the OpenSCAD executeable + The path to the OpenSCAD executeable + + + + OpenSCAD import + OpenSCAD import + + + + If this is checked, Features will claim thier children in the tree view + If this is checked, Features will claim thier children in the tree view + + + + Use ViewProvider in Tree View + Use ViewProvider in Tree View + + + + If this is checked, Multmatrix Object will be Parametric + If this is checked, Multmatrix Object will be Parametric + + + + Use Multmatrix Feature + Use Multmatrix Feature + + + + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + + + + Maximum number of faces for polygons (fn) + Maximum number of faces for polygons (fn) + + + + Debug: Register filetype to prototype importer + Debug: Register filetype to prototype importer + + + + OpenSCAD export + OpenSCAD export + + + + maximum fragment size + maximum fragment size + + + + minimum angle for a fragment + minimum angle for a fragment + + + + angular (fa) + angular (fa) + + + + ° + ° + + + + minimum size of a fragment + minimum size of a fragment + + + + size (fs) + size (fs) + + + + mm + мм + + + + convexity + convexity + + + + Mesh fallback + Mesh fallback + + + + Maxium Length + Maxium Length + + + + MaxLength + MaxLength + + + + Maximum Length + Maximum Length + + + + Maximum Area + Maximum Area + + + + maxArea + maxArea + + + + Local Length + Local Length + + + + localLen + localLen + + + + Deflection + Deflection + + + + deflection + deflection + + + + Triangulation settings + Triangulation settings + + + + OpenSCAD + + + Color Shapes + Color Shapes + + + + Color Shapes by validity and type + Color Shapes by validity and type + + + + Convert Edges To Faces + Convert Edges To Faces + + + + Convert Edges to Faces + Convert Edges to Faces + + + + Refine Shape Feature + Refine Shape Feature + + + + Create Refine Shape Feature + Create Refine Shape Feature + + + + Expand Placements + Expand Placements + + + + Expand all placements downwards the FeatureTree + Expand all placements downwards the FeatureTree + + + + Please select 3 objects first + Please select 3 objects first + + + + Replace Object + Replace Object + + + + Replace an object in the Feature Tree. Please select old, new and parent object + Replace an object in the Feature Tree. Please select old, new and parent object + + + + Remove Objects and their Children + Remove Objects and their Children + + + + Removes the selected objects and all children that are not referenced from other objects + Removes the selected objects and all children that are not referenced from other objects + + + + Running OpenSCAD failed + + Running OpenSCAD failed + + + + + Add OpenSCAD Element... + Add OpenSCAD Element... + + + + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + + + + Unsupported Function + Unsupported Function + + + + Press OK + Press OK + + + + Projection Not yet Coded waiting for Peter Li + Projection Not yet Coded waiting for Peter Li + + + + Press OK + Press OK + + + diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-CN.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-CN.qm new file mode 100644 index 000000000..6829c744e Binary files /dev/null and b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-CN.qm differ diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-CN.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-CN.ts new file mode 100644 index 000000000..8f9857abf --- /dev/null +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-CN.ts @@ -0,0 +1,271 @@ + + + + + Gui::Dialog::DlgSettingsOpenSCAD + + + General settings + 常规设置 + + + + General OpenSCAD Settings + OpenSCAD常规设置 + + + + OpenSCAD executable + OpenSCAD执行程序 + + + + The path to the OpenSCAD executeable + OpenSCAD执行程序路径 + + + + OpenSCAD import + OpenSCAD导入 + + + + If this is checked, Features will claim thier children in the tree view + If this is checked, Features will claim thier children in the tree view + + + + Use ViewProvider in Tree View + Use ViewProvider in Tree View + + + + If this is checked, Multmatrix Object will be Parametric + If this is checked, Multmatrix Object will be Parametric + + + + Use Multmatrix Feature + Use Multmatrix Feature + + + + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + + + + Maximum number of faces for polygons (fn) + 多边形面片的最大数量(fn) + + + + Debug: Register filetype to prototype importer + Debug: Register filetype to prototype importer + + + + OpenSCAD export + OpenSCAD导出 + + + + maximum fragment size + maximum fragment size + + + + minimum angle for a fragment + minimum angle for a fragment + + + + angular (fa) + angular (fa) + + + + ° + ° + + + + minimum size of a fragment + minimum size of a fragment + + + + size (fs) + size (fs) + + + + mm + mm + + + + convexity + 凸度 + + + + Mesh fallback + Mesh fallback + + + + Maxium Length + 最大长度 + + + + MaxLength + 最大长度 + + + + Maximum Length + 最大长度 + + + + Maximum Area + 最大面积 + + + + maxArea + 最大面积 + + + + Local Length + Local Length + + + + localLen + localLen + + + + Deflection + Deflection + + + + deflection + deflection + + + + Triangulation settings + 三角剖分设置 + + + + OpenSCAD + + + Color Shapes + Color Shapes + + + + Color Shapes by validity and type + Color Shapes by validity and type + + + + Convert Edges To Faces + Convert Edges To Faces + + + + Convert Edges to Faces + Convert Edges to Faces + + + + Refine Shape Feature + Refine Shape Feature + + + + Create Refine Shape Feature + Create Refine Shape Feature + + + + Expand Placements + Expand Placements + + + + Expand all placements downwards the FeatureTree + Expand all placements downwards the FeatureTree + + + + Please select 3 objects first + 请先选择三个对象 + + + + Replace Object + 替换对象 + + + + Replace an object in the Feature Tree. Please select old, new and parent object + Replace an object in the Feature Tree. Please select old, new and parent object + + + + Remove Objects and their Children + Remove Objects and their Children + + + + Removes the selected objects and all children that are not referenced from other objects + Removes the selected objects and all children that are not referenced from other objects + + + + Running OpenSCAD failed + + 运行OpenSCAD失败 + + + + Add OpenSCAD Element... + 添加OpenSCAD元素... + + + + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + + + + Unsupported Function + 不支持的功能 + + + + Press OK + 按确定 + + + + Projection Not yet Coded waiting for Peter Li + Projection Not yet Coded waiting for Peter Li + + + + Press OK + 按确定 + + + diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-TW.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-TW.qm new file mode 100644 index 000000000..837e80906 Binary files /dev/null and b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-TW.qm differ diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-TW.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-TW.ts new file mode 100644 index 000000000..d02cbc0c1 --- /dev/null +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_zh-TW.ts @@ -0,0 +1,271 @@ + + + + + Gui::Dialog::DlgSettingsOpenSCAD + + + General settings + 一般設定 + + + + General OpenSCAD Settings + 一般 OpenSCAD 設定 + + + + OpenSCAD executable + OpenSCAD可執行 + + + + The path to the OpenSCAD executeable + 此路徑下之OpenSCAD可執行 + + + + OpenSCAD import + 匯入OpenSCAD + + + + If this is checked, Features will claim thier children in the tree view + 若已確認,將於樹枝圖納入其子項 + + + + Use ViewProvider in Tree View + 於樹枝圖使用檢視提供者功能 + + + + If this is checked, Multmatrix Object will be Parametric + 若已確認,多矩陣物件將會參數化 + + + + Use Multmatrix Feature + 使用多矩陣功能 + + + + The maximum number of faces of a polygon, prism or frustum. If fn is greater than this value the object is considered to be a circular. Set to 0 for no limit + 如果fn大於多邊形、 棱形或錐形面之最大數目,物件將認為是一圓形。設定0表示沒有限制。 + + + + Maximum number of faces for polygons (fn) + 多邊形(fn)之最大面數量 + + + + Debug: Register filetype to prototype importer + 除錯:登錄檔案格式至原型匯入器 + + + + OpenSCAD export + 匯出OpenSCAD + + + + maximum fragment size + 片段之對大尺寸 + + + + minimum angle for a fragment + 片段之最小角度 + + + + angular (fa) + 角 (fa) + + + + ° + ° + + + + minimum size of a fragment + 片段之最小尺寸 + + + + size (fs) + 尺寸(fs) + + + + mm + mm + + + + convexity + 凸度 + + + + Mesh fallback + 網格退縮 + + + + Maxium Length + 最大長度 + + + + MaxLength + 最大長度 + + + + Maximum Length + 最大長度 + + + + Maximum Area + 最大面積 + + + + maxArea + 最大面積 + + + + Local Length + 區域長度 + + + + localLen + 區域長度 + + + + Deflection + 偏斜 + + + + deflection + 偏斜 + + + + Triangulation settings + 三角測量設定 + + + + OpenSCAD + + + Color Shapes + 對造型上色 + + + + Color Shapes by validity and type + 依正常及型式對造型上色 + + + + Convert Edges To Faces + 轉換邊為面 + + + + Convert Edges to Faces + 轉換邊為面 + + + + Refine Shape Feature + 微調造型功能 + + + + Create Refine Shape Feature + 建立微調造型功能 + + + + Expand Placements + 擴大配置 + + + + Expand all placements downwards the FeatureTree + 展開所有功能樹 + + + + Please select 3 objects first + 請先選擇3個物件 + + + + Replace Object + 取代物件 + + + + Replace an object in the Feature Tree. Please select old, new and parent object + 替換功能樹中之物件,請選擇舊有,新建或現存物件 + + + + Remove Objects and their Children + 移除物件及其子集 + + + + Removes the selected objects and all children that are not referenced from other objects + 移除所選物件及其未被其他物件索引用之子集 + + + + Running OpenSCAD failed + + OpenSCAD執行錯誤 + + + + Add OpenSCAD Element... + 添加 OpenSCAD 元素... + + + + Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + 藉由OpenSCAD語法加入OpenSCAD元素並執行OpenSCAD程式 + + + + Unsupported Function + 此功能未支援 + + + + Press OK + 按確定 + + + + Projection Not yet Coded waiting for Peter Li + 投影功能尚待Peter Li撰寫 + + + + Press OK + 按確定 + + + diff --git a/src/Mod/Part/Gui/Makefile.am b/src/Mod/Part/Gui/Makefile.am index 1ce6da22c..59cd21b02 100644 --- a/src/Mod/Part/Gui/Makefile.am +++ b/src/Mod/Part/Gui/Makefile.am @@ -244,8 +244,8 @@ EXTRA_DIST = \ Resources/translations/Part_af.ts \ Resources/translations/Part_de.qm \ Resources/translations/Part_de.ts \ - Resources/translations/Part_es.qm \ - Resources/translations/Part_es.ts \ + Resources/translations/Part_es-ES.qm \ + Resources/translations/Part_es-ES.ts \ Resources/translations/Part_fi.qm \ Resources/translations/Part_fi.ts \ Resources/translations/Part_fr.qm \ @@ -260,14 +260,28 @@ EXTRA_DIST = \ Resources/translations/Part_no.ts \ Resources/translations/Part_pl.qm \ Resources/translations/Part_pl.ts \ - Resources/translations/Part_pt.qm \ - Resources/translations/Part_pt.ts \ + Resources/translations/Part_pt-BR.qm \ + Resources/translations/Part_pt-BR.ts \ Resources/translations/Part_ru.qm \ Resources/translations/Part_ru.ts \ - Resources/translations/Part_se.qm \ - Resources/translations/Part_se.ts \ + Resources/translations/Part_sv-SE.qm \ + Resources/translations/Part_sv-SE.ts \ Resources/translations/Part_uk.qm \ Resources/translations/Part_uk.ts \ - Resources/translations/Part_zh.qm \ - Resources/translations/Part_zh.ts \ + Resources/translations/Part_zh-CN.qm \ + Resources/translations/Part_zh-CN.ts \ + Resources/translations/Part_zh-TW.qm \ + Resources/translations/Part_zh-TW.ts \ + Resources/translations/Part_ro.qm \ + Resources/translations/Part_ro.ts \ + Resources/translations/Part_ja.qm \ + Resources/translations/Part_ja.ts \ + Resources/translations/Part_hu.qm \ + Resources/translations/Part_hu.ts \ + Resources/translations/Part_cs.qm \ + Resources/translations/Part_cs.ts \ + Resources/translations/Part_sk.qm \ + Resources/translations/Part_sk.ts \ + Resources/translations/Part_tr.qm \ + Resources/translations/Part_tr.ts \ CMakeLists.txt diff --git a/src/Mod/Part/Gui/Resources/Part.qrc b/src/Mod/Part/Gui/Resources/Part.qrc index 93c983dc2..8318095da 100644 --- a/src/Mod/Part/Gui/Resources/Part.qrc +++ b/src/Mod/Part/Gui/Resources/Part.qrc @@ -32,7 +32,6 @@ icons/Part_CheckGeometry.svg translations/Part_af.qm translations/Part_de.qm - translations/Part_es.qm translations/Part_fi.qm translations/Part_fr.qm translations/Part_hr.qm @@ -40,10 +39,18 @@ translations/Part_nl.qm translations/Part_no.qm translations/Part_pl.qm - translations/Part_pt.qm translations/Part_ru.qm - translations/Part_se.qm translations/Part_uk.qm - translations/Part_zh.qm + translations/Part_tr.qm + translations/Part_sv-SE.qm + translations/Part_zh-TW.qm + translations/Part_pt-BR.qm + translations/Part_cs.qm + translations/Part_sk.qm + translations/Part_es-ES.qm + translations/Part_zh-CN.qm + translations/Part_ja.qm + translations/Part_ro.qm + translations/Part_hu.qm diff --git a/src/Mod/Part/Gui/Resources/translations/Part_af.qm b/src/Mod/Part/Gui/Resources/translations/Part_af.qm index 517912fd1..a95ebe674 100644 Binary files a/src/Mod/Part/Gui/Resources/translations/Part_af.qm and b/src/Mod/Part/Gui/Resources/translations/Part_af.qm differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_af.ts b/src/Mod/Part/Gui/Resources/translations/Part_af.ts index 147699943..dbb4529c4 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_af.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_af.ts @@ -1,2522 +1,2128 @@ - - + + BlockDefinition - - Block definition - Blokbeskrywing + + Block definition + Blokbeskrywing - - First limit - Eerste beperking + First limit + Eerste beperking - - - Type: - Soort: + Type: + Soort: - - - mm - mm + mm + mm - - - Length: - Lengte: + Length: + Lengte: - - - Dimension - Dimensie + Dimension + Dimensie - - - Up to next - Op na die volgende + Up to next + Op na die volgende - - - Up to last - Op na die laaste + Up to last + Op na die laaste - - - Up to plane - Op na die tekenvlak + Up to plane + Op na die tekenvlak - - - Up to face - Op na die voorwerpvlak + Up to face + Op na die voorwerpvlak - - - Limit: - Beperking: + Limit: + Beperking: - - - - - No selection - Geen keuse + No selection + Geen keuse - - Profile - Profiel + Profile + Profiel - - Selection: - Keuse: + Selection: + Seleksie: - - Reverse - Keer om + Reverse + Keer om - - Both sides - Beide kante + Both sides + Beide kante - - Second limit - Tweede beperking + Second limit + Tweede beperking - - Direction - Rigting + Direction + Rigting - - Perpendicular to sketch - Loodreg op die skets + Perpendicular to sketch + Loodreg op die skets - - Reference - Verwysing + Reference + Verwysing - - Apply - Pas toe + Apply + Pas toe - - Cancel - Kanselleer + Cancel + Kanselleer - - OK - Goed + OK + Goed - - + + CmdPartBoolean - - Part - Onderdeel + + Part + Onderdeel - - Boolean... - Boolese... + Boolean... + Boolese... - - Run a boolean operation with two shapes selected - Begin 'n booleaanse verwerking met twee gekose vorms + Run a boolean operation with two shapes selected + Begin 'n booleaanse verwerking met twee gekose vorms - - + + CmdPartBox - - Part - Onderdeel + + Part + Onderdeel - - Box - Boks + Box + Boks - - Create a box solid - Create a box solid + Create a box solid + Skep 'n soliede boks - - + + CmdPartBox2 - - Part - Onderdeel + + Part + Onderdeel - - Box fix 1 - Boksfiksering 1 + Box fix 1 + Boksfiksering 1 - - Create a box solid without dialog - Create a box solid without dialog + Create a box solid without dialog + Skep 'n boks soliede sonder dialoog - - + + CmdPartBox3 - - Part - Onderdeel + Part + Onderdeel - - Box fix 2 - Boksfiksering 2 + Box fix 2 + Boksfiksering 2 - - Create a box solid without dialog - Create a box solid without dialog + Create a box solid without dialog + Skep 'n boks soliede sonder dialoog - - + + CmdPartBuilder - - Part - Onderdeel + Part + Onderdeel - - Shape builder... - Shape builder... + Shape builder... + Vormbouer... - - Advanced utility to create shapes - Advanced utility to create shapes + Advanced utility to create shapes + Gevorderde werktuig om vorms te skep - - + + CmdPartChamfer - - Part - Onderdeel + Part + Onderdeel - - Chamfer... - + Chamfer... + Groef ... - - Chamfer the selected edges of a shape - + Chamfer the selected edges of a shape + Groef die gekose kante van 'n vorm - - + + CmdPartCommon - - Part - Onderdeel + Part + Onderdeel - - Intersection - Snyding + Intersection + Snyding - - Make an intersection of two shapes - Make an intersection of two shapes + Make an intersection of two shapes + Maak 'n interseksie van twee vorms - - + + CmdPartCone - - Part - Onderdeel + + Part + Onderdeel - - Cone - Keël + Cone + Keël - - Create a cone solid - Create a cone solid + Create a cone solid + Skep 'n soliede koniese vorm - - + + CmdPartCrossSections - - Part - Onderdeel + + Part + Onderdeel - - Cross-sections... - Deursnitte... + Cross-sections... + Deursnitte... - - Cross-sections - Deursnitte + Cross-sections + Deursnitte - - + + CmdPartCut - - Part - Onderdeel + Part + Onderdeel - - Cut - Knip + Cut + Knip - - Make a cut of two shapes - Make a cut of two shapes + Make a cut of two shapes + Maak 'n snit van twee vorms - - + + CmdPartCylinder - - Part - Onderdeel + + Part + Onderdeel - - Create a Cylinder - Skep 'n silinder + Create a Cylinder + Skep 'n silinder - - Cylinder - Silinder + Cylinder + Silinder - - + + CmdPartExport - - Part - Onderdeel + + Part + Onderdeel - - Export CAD... - Export CAD... + Export CAD... + Voer CAD uit... - - Exports to a CAD file - Exports to a CAD file + Exports to a CAD file + Voer uit na 'n CAD-lêer - - + + CmdPartExtrude - - Part - Onderdeel + Part + Onderdeel - - Extrude... - Strek... + Extrude... + Strek... - - Extrude a selected sketch - Strek 'n gekose skets + Extrude a selected sketch + Strek 'n gekose skets - - + + CmdPartFillet - - Part - Onderdeel + Part + Onderdeel - - Fillet... - Ronding... + Fillet... + Ronding... - - Fillet the selected edges of a shape - Rond die gekose kante van 'n vorm + Fillet the selected edges of a shape + Rond die gekose kante van 'n vorm - - + + CmdPartFuse - - Part - Onderdeel + Part + Onderdeel - - Union - Vereniging + Union + Vereniging - - Make a union of several shapes - Make a union of several shapes + Make a union of several shapes + Verenig verskeie vorms - - + + CmdPartImport - - Part - Onderdeel + Part + Onderdeel - - Imports a CAD file - Voer 'n CAD-lêer in + Imports a CAD file + Voer 'n CAD-lêer in - - Import CAD... - Voer CAD in... + Import CAD... + Voer CAD in... - - + + CmdPartImportCurveNet - - Part - Onderdeel + Part + Onderdeel - - Import a curve network - Voer 'n kurwenetwerk in + Import a curve network + Voer 'n kurwenetwerk in - - Import curve network... - Voer 'n kurwenetwerk in... + Import curve network... + Voer 'n kurwenetwerk in... - - + + CmdPartLoft - - Part - Onderdeel + Part + Onderdeel - - Loft... - Loft... + Loft... + Solder... - - Utility to loft - + Utility to loft + Utility to loft - Advanced utility to lofts - Advanced utility to lofts + Advanced utility to lofts + Gevorderde werktuig vir solders - - + + CmdPartMakeSolid - - Part - Onderdeel + Part + Onderdeel - - Convert to solid - Verander na soliede vorm + Convert to solid + Verander na soliede vorm - - Create solid from a shell or compound - Skep 'n soliede vorm van 'n skil of saamgestelde vorm + Create solid from a shell or compound + Skep 'n soliede vorm van 'n skil of saamgestelde vorm - - + + CmdPartMirror - - Part - Onderdeel + Part + Onderdeel - - Mirroring... - Weerspieëling... + Mirroring... + Weerspieëling... - - Mirroring a selected shape - Spieël 'n gekose vorm + Mirroring a selected shape + Spieël 'n gekose vorm - - + + CmdPartPickCurveNet - - Part - Onderdeel + Part + Onderdeel - - Pick curve network - Kies kurwenetwerk + Pick curve network + Kies kurwenetwerk - - Pick a curve network - Kies kurwenetwerk + Pick a curve network + Kies kurwenetwerk - - + + CmdPartPrimitives - - Part - Onderdeel + Part + Onderdeel - - Create primitives... - Skep primitiewe vorms... + Create primitives... + Skep primitiewe vorms... - - Creation of parametrized geometric primitives - Skepping van gedefinieerde primitiewe vorms + Creation of parametrized geometric primitives + Skepping van gedefinieerde primitiewe vorms - - + + CmdPartRefineShape - - Part - Onderdeel + + Part + Onderdeel - - Refine shape - + Refine shape + Refine shape - - Refine the copy of a shape - + Refine the copy of a shape + Refine the copy of a shape - - + + CmdPartReverseShape - - Part - Onderdeel + + Part + Onderdeel - - Reverse shapes - Omgekeerde vorms + Reverse shapes + Omgekeerde vorms - - Reverse orientation of shapes - Omgekeerde oriëntasie van vorms + Reverse orientation of shapes + Omgekeerde oriëntasie van vorms - - + + CmdPartRevolve - - Part - Onderdeel + Part + Onderdeel - - Revolve... - Roteer... + Revolve... + Roteer... - - Revolve a selected shape - Draai 'n gekose vorm + Revolve a selected shape + Draai 'n gekose vorm - - + + CmdPartRuledSurface - - Part - Onderdeel + Part + Onderdeel - - Create ruled surface - Skep 'n reëloppervlak + Create ruled surface + Skep 'n reëloppervlak - - Create a ruled surface from two curves - Skep 'n reëloppervlak van twee kurwes + Create a ruled surface from two curves + Skep 'n reëloppervlak van twee kurwes - - + + CmdPartSection - - Make a section of two shapes - Make a section of two shapes + Make a section of two shapes + Maak 'n seksie uit twee vorms - - Part - Onderdeel + Part + Onderdeel - - Section - Snyding + Section + Interseksie - - + + CmdPartShapeFromMesh - - Part - Onderdeel + + Part + Onderdeel - - Create shape from mesh... - Skep vorm van maas ... + Create shape from mesh... + Skep vorm van maas ... - - Create shape from selected mesh object - Skep vorm van gekose maasvoorwerp + Create shape from selected mesh object + Skep vorm van gekose maasvoorwerp - - + + CmdPartSimpleCopy - - Part - Onderdeel + Part + Onderdeel - - Create simple copy - Create simple copy + Create simple copy + Skep 'n eenvoudige kopie - - Create a simple non-parametric copy - Create a simple non-parametric copy + Create a simple non-parametric copy + Skep 'n eenvoudige nie-parametriese kopie - - + + CmdPartSimpleCylinder - - Part - Onderdeel + Part + Onderdeel - - Create Cylinder... - Skep Silinder ... + Create Cylinder... + Skep Silinder ... - - Create a Cylinder - Skep 'n silinder + Create a Cylinder + Skep 'n silinder - - + + CmdPartSphere - - Create a sphere solid - Create a sphere solid + + Create a sphere solid + Skep 'n soliede sfeer - - Part - Onderdeel + Part + Onderdeel - - Sphere - Sfeer + Sphere + Sfeer - - + + CmdPartSweep - - Part - Onderdeel + + Part + Onderdeel - - Sweep... - + Sweep... + Sweep... - - Utility to sweep - + Utility to sweep + Utility to sweep - - + + CmdPartTorus - - Create a torus solid - Create a torus solid + + Create a torus solid + Skep 'n soliede torus - - Part - Onderdeel + Part + Onderdeel - - Torus - Torus + Torus + Torus - - + + DlgExtrusion - Select a shape for extrusion, first. - Kies eers 'n vorm om te strek. + Select a shape for extrusion, first. + Kies eers 'n vorm om te strek. - The document '%1' doesn't exist. - The document '%1' doesn't exist. + The document '%1' doesn't exist. + The document '%1' doesn't exist. - - + + DlgRevolution - Select a shape for revolution, first. - Kies eers 'n vorm om te roteer. + Select a shape for revolution, first. + Kies eers 'n vorm om te roteer. - - + + DlgSettings3DViewPart - Deviation - Afwyking + Deviation + Afwyking - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Die keuse van 'n te klein afwyking veroorsaak dat die tessellasie langer vat, en sodoende word die program gevries of vertraag. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Die keuse van 'n te klein afwyking veroorsaak dat die tessellasie langer vat, en sodoende word die program gevries of vertraag. - - + + PartGui::CrossSections - - Cross sections - Deursnitte + + Cross sections + Deursnitte - - Guiding plane - Gidsvlak + Guiding plane + Gidsvlak - - XY - XY + XY + XY - - XZ - XZ + XZ + XZ - - YZ - YZ + YZ + YZ - - Position: - Posisie: + Position: + Posisie: - - Sections - Snitte + Sections + Interseksies - - On both sides - Aan beide kante + On both sides + Aan beide kante - - Count - Tel + Count + Tel - - Distance: - Afstand: + Distance: + Afstand: - - + + PartGui::DlgBooleanOperation - - Boolean Operation - Boolese verwerking + + Boolean Operation + Boolese verwerking - - Second shape - Tweede vorm + Second shape + Tweede vorm - - First shape - Eerste vorm + First shape + Eerste vorm - - Boolean operation - Boolese verwerking + Boolean operation + Boolese verwerking - - Section - Snyding + Section + Interseksie - - Difference - Verskil + Difference + Verskil - - Union - Vereniging + Union + Vereniging - - Intersection - Snyding + Intersection + Snyding - - Cannot perform a boolean operation with the same shape - Kan nie 'n Booleaanse verwerking doen met dieselfde vorm nie + + Cannot perform a boolean operation with the same shape + Kan nie 'n Booleaanse verwerking doen met dieselfde vorm nie - - - Solids - Soliede vorms + + Solids + Soliede vorms - - - Shells - Skille + Shells + Skille - - - Compounds - Saamgestelde vorms + Compounds + Saamgestelde vorms - - - Faces - Vlakke + Faces + Vlakke - - Swap selection - Ruil seleksie uit + Swap selection + Ruil seleksie uit - - Select a shape on the left side, first - Kies eers 'n vorm aan die linkerkant + + Select a shape on the left side, first + Kies eers 'n vorm aan die linkerkant - - Select a shape on the right side, first - Kies eers 'n vorm aan die regterkant + Select a shape on the right side, first + Kies eers 'n vorm aan die regterkant - - No active document available - Geen aktiewe dokument beskikbaar nie + No active document available + Geen aktiewe dokument beskikbaar nie - - One of the selected objects doesn't exist anymore - Een van die gekose voorwerpe bestaan nie meer nie + One of the selected objects doesn't exist anymore + Een van die gekose voorwerpe bestaan nie meer nie - - Performing union on non-solids is not possible - Vereniging van nie-soliede is nie moontlik nie + Performing union on non-solids is not possible + Vereniging van nie-soliede is nie moontlik nie - - Performing intersection on non-solids is not possible - Snyding van nie-soliede is nie moontlik nie + Performing intersection on non-solids is not possible + Snyding van nie-soliede is nie moontlik nie - - Performing difference on non-solids is not possible - Verskilberekening is nie moontlik met nie-soliede nie + Performing difference on non-solids is not possible + Verskilberekening is nie moontlik met nie-soliede nie - - + + PartGui::DlgChamferEdges - - Chamfer Edges - + + Chamfer Edges + Groef kante - - + + PartGui::DlgExtrusion - - Extrude - Strek + + Extrude + Strek - - Direction - Rigting + Direction + Rigting - - Along normal - Langs normaallyn + Along normal + Langs normaallyn - - Length: - Lengte: + Length: + Lengte: - - 3D view - 3D view + 3D view + 3D-aansig - - Note:This option works for planes only - Note:This option works for planes only + Note:This option works for planes only + Neem kennis: Hierdie opsie werk slegs vir vlakke - - Create solid - Create solid + Create solid + Skep soliede - - Taper outward angle - + Taper outward angle + Taper outward angle - - Shape - Vorm + Shape + Vorm - - + + - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - Select a shape for extrusion, first. - Kies eers 'n vorm om te strek. + + Select a shape for extrusion, first. + Kies eers 'n vorm om te strek. - - The document '%1' doesn't exist. - The document '%1' doesn't exist. + The document '%1' doesn't exist. + The document '%1' doesn't exist. - - + + PartGui::DlgFilletEdges - - Fillet Edges - Rond kante + + Fillet Edges + Rond kante - - Fillet Parameter - Rondparameter + Fillet Parameter + Rondparameter - - Radius: - Radius: + Radius: + Radius: - - Fillet type: - Rondingstipe: + Fillet type: + Rondingstipe: - - Constant Radius - Konstante Radius + Constant Radius + Konstante Radius - - Variable Radius - Veranderlike Radius + Variable Radius + Veranderlike Radius - - Shape - Vorm + Shape + Vorm - - Selected shape: - Gekose vorm: + Selected shape: + Gekose vorm: - - No selection - Geen keuse + No selection + Geen keuse - - Edges to fillet - Kante om te rond + + Edges to fillet + Kante om te rond - - - Start radius - Beginradius + Start radius + Beginradius - - End radius - Eindradius + End radius + Eindradius - - Radius - Radius + Radius + Radius - - No edge selected - Geen kant gekies nie + No edge selected + Geen kant gekies nie - - No edge entity is checked to fillet. + No edge entity is checked to fillet. Please check one or more edge entities first. - Geen kant is gekies te rond nie. + Geen kant is gekies te rond nie. Kies ten minste een kant. - - All - Alle + + All + Alle - - None - Geen + None + Geen - - - Edge%1 - Kant %1 + + Edge%1 + Kant %1 - - No shape selected - Geen vorm gekies nie + No shape selected + Geen vorm gekies nie - - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - Geen geldige vorm is gekies nie. -Kies eers 'n geldige vorm in die vallys. + Geen geldige vorm is gekies nie. +Kies eers 'n geldige vorm in die vallys. - - + + PartGui::DlgPartBox - - Box definition - Boksbeskrywing + + Box definition + Boksbeskrywing - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - Cancel - Kanselleer + Cancel + Kanselleer - - OK - Goed + OK + Goed - - Size: - Grootte: + Size: + Grootte: - - Height: - Hoogte: + Height: + Hoogte: - - Width: - Wydte: + Width: + Wydte: - - Length: - Lengte: + Length: + Lengte: - - Position: - Posisie: + Position: + Posisie: - - Direction: - Rigting: + Direction: + Rigting: - - + + PartGui::DlgPartCylinder - - Cylinder definition - Silinderbeskrywing + + Cylinder definition + Silinderbeskrywing - - Parameter - Parameter + Parameter + Parameter - - Height: - Hoogte: + Height: + Hoogte: - - Radius: - Radius: + Radius: + Radius: - - Position: - Posisie: + Position: + Posisie: - - Direction: - Rigting: + Direction: + Rigting: - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - OK - Goed + OK + Goed - - Cancel - Kanselleer + Cancel + Kanselleer - - + + PartGui::DlgPartImportIges - - IGES input file - IGES invoerlêer + + IGES input file + IGES invoerlêer - - ... - ... + ... + ... - - Cancel - Kanselleer + Cancel + Kanselleer - - OK - Goed + OK + Goed - - File Name - Lêernaam + File Name + Lêernaam - - + + - - + + PartGui::DlgPartImportIgesImp - - IGES (*.igs *.iges);;All Files (*.*) - IGES (*.igs *.iges);;Alle lêers (*.*) + + IGES (*.igs *.iges);;All Files (*.*) + IGES (*.igs *.iges);;Alle lêers (*.*) - - + + PartGui::DlgPartImportStep - - ... - ... + + ... + ... - - Cancel - Kanselleer + Cancel + Kanselleer - - OK - Goed + OK + Goed - - Step input file - STEP invoerlêer + Step input file + STEP invoerlêer - - File Name - Lêernaam + File Name + Lêernaam - - + + - - + + PartGui::DlgPartImportStepImp - - STEP (*.stp *.step);;All Files (*.*) - STEP (*.stp *.step);;Alle lêers (*.*) + + STEP (*.stp *.step);;All Files (*.*) + STEP (*.stp *.step);;Alle lêers (*.*) - - + + PartGui::DlgPrimitives - - Geometric Primitives - Primitiewe vorms + + Geometric Primitives + Primitiewe vorms - Primitive - Primitiewe vorm + Primitive + Primitiewe vorm - X min - X min + X min + X min - x max - x max + x max + x maks - Y min - Y min + Y min + Y min - Y max - Y max + Y max + Y maks - Z min - Z min + Z min + Z min - Z max - Z max + Z max + Z maks - X2 min - X2 min + X2 min + X2 min - X2 max - X2 max + X2 max + X2 maksimum - Z2 min - Z2 min + Z2 min + Z2 minimum - Z2 max - Z2 max + Z2 max + Z2 maksimum - Angle - 0 for cyl - Angle - 0 for cyl + Angle - 0 for cyl + Hoek - 0 vir silinder - Angle0 - Angle0 + Angle0 + Hoek0 - Angle1 - Angle1 + Angle1 + Hoek1 - X Axis Value: - X Axis Value: + X Axis Value: + X-as Waarde: - Y Axis Value: - Y Axis Value: + Y Axis Value: + Y-as Waarde: - Z Axis Value: - Z Axis Value: + Z Axis Value: + Z-as Waarde: - - Wedge - Wedge + Wedge + Wig - - Circle - Sirkel + Circle + Sirkel - Vertex - Vertex + Vertex + Hoekpunt - Position - Posisie + Position + Posisie - - - - Z: - Z: + Z: + Z: - - - - X: - X: + X: + X: - Direction: - Rigting: + Direction: + Rigting: - - - - Y: - Y: + Y: + Y: - - Plane - Tekenvlak + Plane + Tekenvlak - - Box - Boks + Box + Boks - - Cylinder - Silinder + Cylinder + Silinder - - Cone - Keël + Cone + Keël - - Sphere - Sfeer + Sphere + Sfeer - - Ellipsoid - Ellipsoïed + Ellipsoid + Ellipsoïed - - Torus - Torus + Torus + Torus - - Ellipse - + Ellipse + Ellipse - - Point - + Point + Punt - - Line - + Line + Lyn - - Parameter - Parameter + Parameter + Parameter - - - Width: - Wydte: + Width: + Wydte: - - - Length: - Lengte: + Length: + Lengte: - - - - - Height: - Hoogte: + Height: + Hoogte: - - - - Angle: - Hoek: + Angle: + Hoek: - - - - - Radius: - Radius: + Radius: + Radius: - - - - Radius 1: - Radius 1: + Radius 1: + Radius 1: - - - - Radius 2: - Radius 2: + Radius 2: + Radius 2: - - - - U parametric: - U parametriese: + U parametric: + U parametriese: - - - - V parametric: - V parametriese: + V parametric: + V parametriese: - - X min/max: - + X min/max: + X min/max: - - Y min/max: - + Y min/max: + Y min/max: - - Z min/max: - + Z min/max: + Z min/max: - - X2 min/max: - + X2 min/max: + X2 min/max: - - Z2 min/max: - + Z2 min/max: + Z2 min/max: - - Coordinate system: - + Coordinate system: + Coordinate system: - - Right-handed - + Right-handed + Right-handed - - Left-handed - + Left-handed + Left-handed - - - Angle 1: - + Angle 1: + Angle 1: - - - Angle 2: - + Angle 2: + Angle 2: - - From three points - + From three points + From three points - - Major radius: - + Major radius: + Major radius: - - Minor radius: - + Minor radius: + Minor radius: - - End point - + End point + End point - - Start point - + Start point + Start point - - &Create - &Skep + + &Create + &Skep - Alt+C - Alt+C + Alt+C + Alt+C - Cl&ose - &Maak toe + Cl&ose + &Maak toe - Alt+O - Alt+O + Alt+O + Alt+O - - - - Create %1 - Skep %1 + Create %1 + Skep %1 - - No active document - Geen aktiewe dokument + No active document + Geen aktiewe dokument - - Pitch: - Styghoek: + + Pitch: + Styghoek: - - Helix - Heliks + Helix + Heliks - 3D View - 3D-aansig + 3D View + 3D-aansig - - + + PartGui::DlgRevolution - - Revolve - Roteer + + Revolve + Roteer - - Y: - Y: + Y: + Y: - - X: - X: + X: + X: - - Angle: - Hoek: + Angle: + Hoek: - - Z: - Z: + Z: + Z: - - Axis: - As: + Axis: + As: - - Shape - Vorm + Shape + Vorm - - Select line in 3D view - + Select line in 3D view + Select line in 3D view - - Select a shape for revolution, first. - Kies eers 'n vorm om te roteer. + + Select a shape for revolution, first. + Kies eers 'n vorm om te roteer. - - + + PartGui::DlgSettings3DViewPart - - View accuracy / Performance - Kyk na akkuraatheid/prestasie + + View accuracy / Performance + Kyk na akkuraatheid/prestasie - - View smoothing - View smoothing + View smoothing + Wys gladstryking - - Using high-quality normals - Met behulp van hoë gehalte normaallyne + Using high-quality normals + Met behulp van hoë gehalte normaallyne - - This will slow down render speed but will lead to nicer results - Dit sal die verwerkingsspoed benadeel, maar sal lei tot beter resultate + This will slow down render speed but will lead to nicer results + Dit sal die verwerkingsspoed benadeel, maar sal lei tot beter resultate - - Defines the appearance of surfaces - Definieer die voorkoms van oppervlaktes + Defines the appearance of surfaces + Definieer die voorkoms van oppervlaktes - - Shape view - Vormaansig + Shape view + Vormaansig - - Tessellation - Mosaïekwerk + Tessellation + Tessellasie - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Platskadu/Phong-skadu</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Met platskadus word die oppervlaknormale nie gedefinieer per hoekpunt nie. Dit lei tot 'n onwerklike voorkoms vir gekurwe oppervlakke, terwyl Phong-skadus 'n gladder voorkoms gee. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Indien hierdie opsie nie geaktiveer is nie, word Phong-skadus gebruik, anders word platskadus gebruik.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Platskadu/Phong-skadu</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Met platskadus word die oppervlaknormale nie gedefinieer per hoekpunt nie. Dit lei tot 'n onwerklike voorkoms vir gekurwe oppervlakke, terwyl Phong-skadus 'n gladder voorkoms gee. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Indien hierdie opsie nie geaktiveer is nie, word Phong-skadus gebruik, anders word platskadus gebruik.</p></body></html> - - Do not define normal per vertex - Definieer nie 'n normaallyn per hoekpunt nie + Do not define normal per vertex + Definieer nie 'n normaallyn per hoekpunt nie - - Defines the deviation of tessellation to the actual surface - Definieer die afwyking van mosaïekwerk van die werklike oppervlakte + Defines the deviation of tessellation to the actual surface + Definieer die afwyking van mosaïekwerk van die werklike oppervlakte - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Mosaïekwerk</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Definieer die maksimum afwyking van die mosaïekverwerkte maas van die oppervlak. Hoe kleiner die waarde is, hoe stadiger die verwerkingsspoed en hoe beter die voorkoms.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Mosaïekwerk</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Definieer die maksimum afwyking van die mosaïekverwerkte maas van die oppervlak. Hoe kleiner die waarde is, hoe stadiger die verwerkingsspoed en hoe beter die voorkoms.</span></p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definiëring van die normaallyne per hoekpunt word ook genoem <span style=" font-style:italic;">Phong-skaduïng</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">en definiëring van die normaallyne per vlak noem ons </span>Platskaduïng<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Om die normaallyne per hoekpunt te definieer word ook genoem<span style=" font-style:italic;">Phong-skaduïng</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">terwyl die definiëring van die normale per vlak beskryf word as</span>platskaduïng<span style=" font-style:normal;">.</span></p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Hoë kwaliteit normaallyne</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hierdie sal die verwerkingsspoed stadiger maak, maar sal lei tot beter resultate.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Hoë kwaliteit normaallyne</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hierdie sal die verwerkingsspoed stadiger maak, maar sal lei tot beter resultate.</p></body></html> - - Maximum deviation depending on the model bounding box - Maksimum afwyking hang af van die model limietboks + Maximum deviation depending on the model bounding box + Maksimum afwyking hang af van die model limietboks - - % - % + % + % - - Deviation - Afwyking + + Deviation + Afwyking - - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Die keuse van 'n te klein afwyking veroorsaak dat die tessellasie langer vat, en sodoende word die program gevries of vertraag. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Die keuse van 'n te klein afwyking veroorsaak dat die tessellasie langer vat, en sodoende word die program gevries of vertraag. - - + + PartGui::DlgSettingsGeneral - - General - Algemeen + + General + Algemeen - - Export - Voer uit + Export + Voer uit - - Millimeter - Millimeter + Millimeter + Millimeter - - Meter - Meter + Meter + Meter - - Inch - Duim + Inch + Duim - - Units for export of STEP/IGES - Eenhede vir uitvoer van STEP/IGES + Units for export of STEP/IGES + Eenhede vir uitvoer van STEP/IGES - - Model settings - + Model settings + Model settings - - Automatically refine model after boolean operation - + Automatically refine model after boolean operation + Automatically refine model after boolean operation - - Automatically check model after boolean operation - + Automatically check model after boolean operation + Automatically check model after boolean operation - - + + PartGui::FaceColors - - Face colors - + + Face colors + Face colors - - Do you really want to cancel? - + Do you really want to cancel? + Do you really want to cancel? - - + + PartGui::Location - - Location - + + Location + Location - - Position - Posisie + Position + Posisie - - 3D View - 3D-aansig + 3D View + 3D-aansig - - + + PartGui::LoftWidget - - - Vertex/Wire - Vertex/Wire + + Vertex/Wire + Hoekpunt/Draad - - - Loft - Loft + Loft + Solder - - Too few elements - Too few elements + Too few elements + Te min elemente - - At least two vertices, edges or wires are required. - + At least two vertices, edges or wires are required. + At least two vertices, edges or wires are required. - At least two vertices or wires are required. - At least two vertices or wires are required. + At least two vertices or wires are required. + Ten minste twee hoekpunte of drade word benodig. - - + + PartGui::Mirroring - - Mirroring - Weerspieëling + + Mirroring + Weerspieëling - - Shapes - Vorms + Shapes + Vorms - - Mirror plane: - Spieëlvlak: + Mirror plane: + Spieëlvlak: - - XY plane - XY-vlak + XY plane + XY-vlak - - XZ plane - XZ-vlak + XZ plane + XZ-vlak - - YZ plane - YZ-vlak + YZ plane + YZ-vlak - - Base point: - Base point: + Base point: + Basispunt: - - x - x + x + x - - y - y + y + y - - z - z + z + z - - Select a shape for mirroring, first. - Kies eers 'n vorm om te weerspieël. + + Select a shape for mirroring, first. + Kies eers 'n vorm om te weerspieël. - - No such document '%1'. - Geen so 'n dokument '%1' nie. + No such document '%1'. + Dokument bestaan nie '%1'. - - + + PartGui::ShapeBuilderWidget - - - - - - Wrong selection - Verkeerde keuse + + Wrong selection + Verkeerde keuse - - - Select two vertices - Select two vertices + Select two vertices + Kies twee hoekpunte - Select three or more edges - Select three or more edges + Select three or more edges + Kies drie of meer kante - - Select one or more edges - + Select one or more edges + Select one or more edges - - Select two or more faces - Select two or more faces + Select two or more faces + Kies twee of meer vlakke - - Select only one part object - Select only one part object + Select only one part object + Kies slegs een onderdeel - - Select two vertices to create an edge - Select two vertices to create an edge + Select two vertices to create an edge + Kies twee hoekpunte om 'n kant te skep - - Select a closed set of edges - Select a closed set of edges + Select a closed set of edges + Kies 'n geslote stel kante - - Select adjacent faces - Select adjacent faces + Select adjacent faces + Kies aangrensende vlakke - - All shape types can be selected - All shape types can be selected + All shape types can be selected + Alle vormtipes kan gekies word - - + + PartGui::SweepWidget - - - Vertex/Wire - Vertex/Wire + + Vertex/Wire + Hoekpunt/Draad - - - Sweep - + Sweep + Sweep - - Sweep path - + Sweep path + Sweep path - - Select an edge or wire you want to sweep along. - + Select an edge or wire you want to sweep along. + Select an edge or wire you want to sweep along. - - Too few elements - Too few elements + Too few elements + Te min elemente - - At least one edge or wire is required. - + At least one edge or wire is required. + At least one edge or wire is required. - - + + PartGui::TaskDialogEditDynamic - Hint - Hint + Hint + Wenk - Select Control. - Select Control. + Select Control. + Kies kontrole. - Control - Control + Control + Beheer - Dynamic - Dynamic + Dynamic + Dinamies - Align - Align + Align + Belyn - Value - Waarde + Value + Waarde - Special - Special + Special + Spesiaal - Command - Bevel + Command + Bevel - Stretch - Stretch + Stretch + Strek - Move - Verskuif + Move + Verskuif - Rotate - Roteer + Rotate + Roteer - Offset - Verplasing + Offset + Verplasing - Orient - Orient + Orient + Oriënteer - Match - Match + Match + Pas - Surround - Surround + Surround + Omring - dummy - dummy + dummy + Kopie - X Axis - X Axis + X Axis + X-as - Y Axis - Y Axis + Y Axis + Y-as - Z Axis - Z Axis + Z Axis + Z-as - Increment - Increment + Increment + Inkrement - .125 - .125 + .125 + .125 - .500 - .500 + .500 + .500 - 1.000 - 1.000 + 1.000 + 1.000 - 5.000 - 5.000 + 5.000 + 5.000 - 10.000 - 10.000 + 10.000 + 10.000 - Drag arrows to stretch box by increment - Drag arrows to stretch box by increment + Drag arrows to stretch box by increment + Trek pyle om boks te strek met inkrement - Drag arrows to move box by increment - Drag arrows to move box by increment + Drag arrows to move box by increment + Trek pyle om boks te skuif met inkrement - Not implemented yet - Not implemented yet + Not implemented yet + Nog nie toegepas nie - Drag arrows to offset checked axes by increment - Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment + Trek pyle om gekose asse te skuif met inkrement - Select dragger for stretch by align - Select dragger for stretch by align + Select dragger for stretch by align + Kies trekker vir strek met belyning - Select dragger for move by align - Select dragger for move by align + Select dragger for move by align + Kies trekker vir skuif met belyning - Select dragger for stretch by value - Select dragger for stretch by value + Select dragger for stretch by value + Kies trekker vir strek met waarde - Select dragger for move by value - Select dragger for move by value + Select dragger for move by value + Kies trekker vir skuif met waarde - 1.0 - 1.0 + 1.0 + 1.0 - Enter Value - Enter Value + Enter Value + Voer waarde in - Select box to match - Select box to match + Select box to match + Kies 'n passende boks - Select a point - Select a point + Select a point + Kies 'n punt - 0.0 - 0.0 + 0.0 + 0.0 - Select dragger to align - Select dragger to align + Select dragger to align + Kies trekker om te belyn - Select dragger to modify - Select dragger to modify + Select dragger to modify + Kies trekker om te wysig - - + + PartGui::TaskFaceColors - - Set color per face - Set color per face + + Set color per face + Stel die kleur per vlak - - Click on the faces in the 3d view to select them. - Click on the faces in the 3d view to select them. + Click on the faces in the 3d view to select them. + Klik op die vlakke in die 3D-vertoning om hulle te kies. - - Faces: - Faces: + Faces: + Vlakke: - - Set to default - Set to default + Set to default + Stel na versuimeienskap - - + + PartGui::TaskLoft - - Loft - Loft + + Loft + Solder - Vertex/Wire - Vertex/Wire + Vertex/Wire + Hoekpunt/Draad - Move right - Skuif na regs + Move right + Skuif na regs - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Beweeg die gekose item een vlak neer.</b><p>Dit sal ook die vlak van die oueritem verander.</p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Beweeg die gekose item een vlak neer.</b><p>Dit sal ook die vlak van die oueritem verander.</p> - Move left - Skuif na links + Move left + Skuif na links - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Beweeg die gekose item een vlak op.</b><p>Dit sal ook die vlak van die oueritem verander.</p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Beweeg die gekose item een vlak op.</b><p>Dit sal ook die vlak van die oueritem verander.</p> - Move up - Skuif op + Move up + Skuif op - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Beweeg die gekose item op.</b><p>Die item sal geskuif word binne die hiërargie vlak.</p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Beweeg die gekose item op.</b><p>Die item sal geskuif word binne die hiërargie vlak.</p> - Move down - Skuif neer + Move down + Skuif neer - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Beweeg die gekose item neer.</b><p>Die item sal geskuif word binne die hiërargie vlak.</p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Beweeg die gekose item neer.</b><p>Die item sal geskuif word binne die hiërargie vlak.</p> - - Create solid - Create solid + Create solid + Skep soliede - - Ruled surface - Ruled surface + Ruled surface + Reëloppervlak - - + + PartGui::TaskShapeBuilder - - - Create shape - Create shape + + Create shape + Skep vorm - - Edge from vertices - Edge from vertices + Edge from vertices + Kant van hoekpunte - - Face from edges - Face from edges + Face from edges + Vlak van kante - - Planar - Planar + Planar + Vlakgebaseerd - - Shell from faces - Shell from faces + Shell from faces + Soliede van vlakke - - Solid from shell - Solid from shell + Solid from shell + Soliede van 'n skil - - Create - Skep + Create + Skep - - All faces - All faces + All faces + Alle vlakke - - + + PartGui::TaskSweep - - Sweep - + + Sweep + Sweep - - Create solid - Create solid + Create solid + Skep soliede - - Frenet - + Frenet + Frenet - - Select one or more profiles and select an edge or wire + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. - + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. - - + + QObject - - - - - - Wrong selection - Verkeerde keuse + + Wrong selection + Verkeerde keuse - - - Select two shapes please. - Kies twee vorms asseblief. + Select two shapes please. + Kies twee vorms asseblief. - - - - All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) - Alle CAD-lêers (*.stp *.step *.igs *.iges *.brp *.brep) + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + Alle CAD-lêers (*.stp *.step *.igs *.iges *.brp *.brep) - - - - STEP (*.stp *.step) - STEP (*.stp *.step) + STEP (*.stp *.step) + STEP (*.stp *.step) - - - - IGES (*.igs *.iges) - IGES (*.igs *.iges) + IGES (*.igs *.iges) + IGES (*.igs *.iges) - - - - BREP (*.brp *.brep) - BREP (*.brp *.brep) + BREP (*.brp *.brep) + BREP (*.brp *.brep) - - - - All Files (*.*) - Alle lêers (*.*) + All Files (*.*) + Alle lêers (*.*) - - Sewing Tolerance - Naaitolerans + + Sewing Tolerance + Naaitolerans - - Enter tolerance for sewing shape: - Gee toleransvlak vir naaivorm: + Enter tolerance for sewing shape: + Gee toleransvlak vir naaivorm: - - Edit mirror plane - Wysig spieëlvlak + + Edit mirror plane + Wysig spieëlvlak - - Edit chamfer edges - + Edit chamfer edges + Edit chamfer edges - Transform - Transformeer + Transform + Omskep - - - Part design - Onderdeelontwerp + + Part design + Onderdeelontwerp - - - Select two shapes or more, please. - Kies twee of meer vorms, asseblief. + + Select two shapes or more, please. + Kies twee of meer vorms, asseblief. - - You have to select either two edges or two wires. - Jy moet óf twee kante óf twee drade te kies. + You have to select either two edges or two wires. + Jy moet óf twee kante óf twee drade te kies. - - Edit fillet edges - Wysig snitkante + + Edit fillet edges + Wysig snitkante - - Set colors... - Set colors... + + Set colors... + Kies kleure... - - + + Workbench - - &Part - &Onderdeel + + &Part + &Onderdeel - - &Simple - &Eenvoudig + &Simple + &Eenvoudig - - &Parametric - &Parametries + &Parametric + &Parametries - - Part tools - Onderdeelgereedskap + Part tools + Onderdeelgereedskap - - Solids - Soliede vorms + Solids + Soliede vorms - - Boolean - Boolese + Boolean + Boolese - + diff --git a/src/Mod/Part/Gui/Resources/translations/Part_cs.qm b/src/Mod/Part/Gui/Resources/translations/Part_cs.qm new file mode 100644 index 000000000..6ae31cef0 Binary files /dev/null and b/src/Mod/Part/Gui/Resources/translations/Part_cs.qm differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_cs.ts b/src/Mod/Part/Gui/Resources/translations/Part_cs.ts new file mode 100644 index 000000000..26891d841 --- /dev/null +++ b/src/Mod/Part/Gui/Resources/translations/Part_cs.ts @@ -0,0 +1,2126 @@ + + + + + BlockDefinition + + + Block definition + Definice bloku + + + First limit + První rozměr + + + Type: + Typ: + + + mm + mm + + + Length: + Délka: + + + Dimension + Rozměr + + + Up to next + K dalšímu + + + Up to last + Skrze vše + + + Up to plane + K rovině + + + Up to face + K ploše + + + Limit: + Rozměr: + + + No selection + Žádný výběr + + + Profile + Profil + + + Selection: + Výběr: + + + Reverse + Obrátit + + + Both sides + Obě strany + + + Second limit + Druhý rozměr + + + Direction + Směr + + + Perpendicular to sketch + Kolmý k náčrtu + + + Reference + Odkaz + + + Apply + Použít + + + Cancel + Zrušit + + + OK + OK + + + + CmdPartBoolean + + + Part + Díl + + + Boolean... + Booleovský... + + + Run a boolean operation with two shapes selected + Provede booleovskou operaci se dvěmi vybranými obrazci + + + + CmdPartBox + + + Part + Díl + + + Box + Kvádr + + + Create a box solid + Vytvořit kvádrovité těleso + + + + CmdPartBox2 + + + Part + Díl + + + Box fix 1 + Box fix 1 + + + Create a box solid without dialog + Vytvoř kvádrovité těleso bez dotazů + + + + CmdPartBox3 + + Part + Díl + + + Box fix 2 + Box fix 2 + + + Create a box solid without dialog + Vytvoř kvádrovité těleso bez dotazů + + + + CmdPartBuilder + + Part + Díl + + + Shape builder... + Tvůrce útvarů... + + + Advanced utility to create shapes + Rozšířeneé nástroje pro tvorbu útvarů + + + + CmdPartChamfer + + Part + Díl + + + Chamfer... + Sražení... + + + Chamfer the selected edges of a shape + Srazí vybrané hrany útvaru + + + + CmdPartCommon + + Part + Díl + + + Intersection + Průnik + + + Make an intersection of two shapes + Vytvoří průnik dvou útvarů + + + + CmdPartCone + + + Part + Díl + + + Cone + Kužel + + + Create a cone solid + Vytvoří kuželové těleso + + + + CmdPartCrossSections + + + Part + Díl + + + Cross-sections... + Řezy... + + + Cross-sections + Řezy + + + + CmdPartCut + + Part + Díl + + + Cut + Řezat + + + Make a cut of two shapes + Provede ořezání dvou útvarů + + + + CmdPartCylinder + + + Part + Díl + + + Create a Cylinder + Vytvoří válec + + + Cylinder + Válec + + + + CmdPartExport + + + Part + Díl + + + Export CAD... + Export CAD... + + + Exports to a CAD file + Exporty do CAD souboru + + + + CmdPartExtrude + + Part + Díl + + + Extrude... + Vysunutí... + + + Extrude a selected sketch + Vysune vybraný náčrt + + + + CmdPartFillet + + Part + Díl + + + Fillet... + Zaoblení... + + + Fillet the selected edges of a shape + Zaoblí vybrané hrany tvaru + + + + CmdPartFuse + + Part + Díl + + + Union + Sjednocení + + + Make a union of several shapes + Provede sjednocení několika útvarů + + + + CmdPartImport + + Part + Díl + + + Imports a CAD file + Import CAD souboru + + + Import CAD... + Import CAD... + + + + CmdPartImportCurveNet + + Part + Díl + + + Import a curve network + Imort křivkové sítě + + + Import curve network... + Imort křivkové sítě... + + + + CmdPartLoft + + Part + Díl + + + Loft... + Profilování... + + + Utility to loft + Utility to loft + + + Advanced utility to lofts + Rozšiřující nástroje pro Profilování + + + + CmdPartMakeSolid + + Part + Díl + + + Convert to solid + Převede na těleso + + + Create solid from a shell or compound + Vytvoří těleso ze skořepiny nebo ze složeniny + + + + CmdPartMirror + + Part + Díl + + + Mirroring... + Zrcadlení... + + + Mirroring a selected shape + Zrcadlení vybraného útvaru + + + + CmdPartPickCurveNet + + Part + Díl + + + Pick curve network + Vybrat křivkové sítě + + + Pick a curve network + Vybrat křivkovou síť + + + + CmdPartPrimitives + + Part + Díl + + + Create primitives... + Vytvoř primitiv... + + + Creation of parametrized geometric primitives + Vytvoření parametrizovaného primitivu + + + + CmdPartRefineShape + + + Part + Díl + + + Refine shape + Vylepšit tvar + + + Refine the copy of a shape + Vylepšit kopii obrazce + + + + CmdPartReverseShape + + + Part + Díl + + + Reverse shapes + Obrátí útvary + + + Reverse orientation of shapes + Obrátí orientaci útvaů + + + + CmdPartRevolve + + Part + Díl + + + Revolve... + Orotování... + + + Revolve a selected shape + Orotuje vybraný útvar + + + + CmdPartRuledSurface + + Part + Díl + + + Create ruled surface + Vytvoří přímkovou plochu + + + Create a ruled surface from two curves + Vytvoří přímkovou plochu ze dvou řídících křivek + + + + CmdPartSection + + Make a section of two shapes + Vyber dva obrazce + + + Part + Díl + + + Section + Výběr + + + + CmdPartShapeFromMesh + + + Part + Díl + + + Create shape from mesh... + Vytvoří útvar ze sítě... + + + Create shape from selected mesh object + Vytvoří úrvar z vybraného síťového objektu + + + + CmdPartSimpleCopy + + Part + Díl + + + Create simple copy + Vytvoří kopii + + + Create a simple non-parametric copy + Vytvořit jednoduchou neparametrickou kopii + + + + CmdPartSimpleCylinder + + Part + Díl + + + Create Cylinder... + Vytvoří válec... + + + Create a Cylinder + Vytvoří válec + + + + CmdPartSphere + + + Create a sphere solid + Vytvoří kulové těleso + + + Part + Díl + + + Sphere + Koule + + + + CmdPartSweep + + + Part + Díl + + + Sweep... + Tažení... + + + Utility to sweep + Nástroj tažení + + + + CmdPartTorus + + + Create a torus solid + Vytvoří anuloidní těleso + + + Part + Díl + + + Torus + Anuloid + + + + DlgExtrusion + + Select a shape for extrusion, first. + Select a shape for extrusion, first. + + + The document '%1' doesn't exist. + The document '%1' doesn't exist. + + + + DlgRevolution + + Select a shape for revolution, first. + Select a shape for revolution, first. + + + + DlgSettings3DViewPart + + Deviation + Deviation + + + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + + + + PartGui::CrossSections + + + Cross sections + Řezy + + + Guiding plane + Vodící rovina + + + XY + XY + + + XZ + XZ + + + YZ + YZ + + + Position: + Poloha: + + + Sections + Profily + + + On both sides + Na obou stranách + + + Count + Počet + + + Distance: + Vzdálenost: + + + + PartGui::DlgBooleanOperation + + + Boolean Operation + Booleovské operace + + + Second shape + Druhý útvar + + + First shape + První útvar + + + Boolean operation + Booleovské operace + + + Section + Výběr + + + Difference + Rozdíl + + + Union + Sjednocení + + + Intersection + Průnik + + + + Cannot perform a boolean operation with the same shape + Nelze provést booleovskou operaci se stejným útvarem + + + + Solids + Tělesa + + + Shells + Skořepiny + + + Compounds + Složenina + + + Faces + Plochy + + + Swap selection + Převrátit výběr + + + + Select a shape on the left side, first + Nejprve vyber útvar na levé straně + + + Select a shape on the right side, first + Nejprve vyber útvar na pravé straně + + + No active document available + Není dostupný aktivní dokument + + + One of the selected objects doesn't exist anymore + Jeden z vybraných objektů neexistuje + + + Performing union on non-solids is not possible + Nelze provést sjednocení neobjemových útvarů + + + Performing intersection on non-solids is not possible + Nelze provést průnik neobjemových útvarů + + + Performing difference on non-solids is not possible + Nelze provést rozdíl neobjemových útvarů + + + + PartGui::DlgChamferEdges + + + Chamfer Edges + Sražené hrany + + + + PartGui::DlgExtrusion + + + Extrude + Vysunutí + + + Direction + Směr + + + Along normal + Podél normály + + + Length: + Délka: + + + 3D view + 3D pohled + + + Note:This option works for planes only + Poznámka: Tato volba je funkční pouze pro roviny + + + Create solid + Vytvoř těleso + + + Taper outward angle + Kuželový vnější úhel + + + Shape + Útvar + + + + + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + + Select a shape for extrusion, first. + Select a shape for extrusion, first. + + + The document '%1' doesn't exist. + The document '%1' doesn't exist. + + + + PartGui::DlgFilletEdges + + + Fillet Edges + Zaoblená hrana + + + Fillet Parameter + Parametr zaoblení + + + Radius: + Poloměr: + + + Fillet type: + Typ zaoblení: + + + Constant Radius + Konstantní radius + + + Variable Radius + Proměnný rádius + + + Shape + Útvar + + + Selected shape: + Vybraný útvar: + + + No selection + Žádný výběr + + + + Edges to fillet + Hrany pro zaoblení + + + Start radius + Počáteční rádius + + + End radius + Koncový rádius + + + Radius + Poloměr + + + No edge selected + Není vybraná hrana + + + No edge entity is checked to fillet. +Please check one or more edge entities first. + Nevhodná entita pro zaoblení. Prosím vyber nejprve jednu nebo více hran. + + + + All + Vše + + + None + Žádný + + + + Edge%1 + Hrana%1 + + + No shape selected + Není vybrán útvar + + + No valid shape is selected. +Please select a valid shape in the drop-down box first. + Není vybrán přípustný útvar. Prosím vyber přípustný útvar. + + + + PartGui::DlgPartBox + + + Box definition + Definice kvádru + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + Cancel + Zrušit + + + OK + OK + + + Size: + Velikost: + + + Height: + Výška: + + + Width: + Šířka: + + + Length: + Délka: + + + Position: + Poloha: + + + Direction: + Směr: + + + + PartGui::DlgPartCylinder + + + Cylinder definition + Definice válce + + + Parameter + Parametr + + + Height: + Výška: + + + Radius: + Poloměr: + + + Position: + Poloha: + + + Direction: + Směr: + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + OK + OK + + + Cancel + Zrušit + + + + PartGui::DlgPartImportIges + + + IGES input file + vstupní soubor typu IGES + + + ... + ... + + + Cancel + Zrušit + + + OK + OK + + + File Name + Název souboru + + + + + + + + PartGui::DlgPartImportIgesImp + + + IGES (*.igs *.iges);;All Files (*.*) + IGES (*.igs *.iges);;Všechny soubory (*.*) + + + + PartGui::DlgPartImportStep + + + ... + ... + + + Cancel + Zrušit + + + OK + OK + + + Step input file + Vstupní soubor typz Step + + + File Name + Název souboru + + + + + + + + PartGui::DlgPartImportStepImp + + + STEP (*.stp *.step);;All Files (*.*) + STEP (*.stp *.step);;Všechny soubory (*.*) + + + + PartGui::DlgPrimitives + + + Geometric Primitives + Základní geometrické útvary + + + Primitive + Primitiv + + + X min + X min + + + x max + x max + + + Y min + Y min + + + Y max + Y max + + + Z min + Z min + + + Z max + Z max + + + X2 min + X2 min + + + X2 max + X2 max + + + Z2 min + Z2 min + + + Z2 max + Z2 max + + + Angle - 0 for cyl + Úhel - 0 pro válec + + + Angle0 + Úhel2 + + + Angle1 + Úhel1 + + + X Axis Value: + Hodnota osy X: + + + Y Axis Value: + Hodnota osy Y: + + + Z Axis Value: + Hodnota osy Z: + + + Wedge + Klín + + + Circle + Kruh + + + Vertex + Vrchol + + + Position + Position + + + Z: + Z: + + + X: + X: + + + Direction: + Směr: + + + Y: + Y: + + + Plane + Rovina + + + Box + Kvádr + + + Cylinder + Válec + + + Cone + Kužel + + + Sphere + Koule + + + Ellipsoid + Elipsoid + + + Torus + Anuloid + + + Ellipse + Elipsa + + + Point + Bod + + + Line + Čára + + + Parameter + Parametr + + + Width: + Šířka: + + + Length: + Délka: + + + Height: + Výška: + + + Angle: + Úhel: + + + Radius: + Poloměr: + + + Radius 1: + Poloměr 1: + + + Radius 2: + Poloměr 2: + + + U parametric: + U parametr: + + + V parametric: + V parametr: + + + X min/max: + X min/max: + + + Y min/max: + Y min/max: + + + Z min/max: + Z min/max: + + + X2 min/max: + X 2 min/max: + + + Z2 min/max: + Z2 min/max: + + + Coordinate system: + Systém souřadnic: + + + Right-handed + Pravou rukou + + + Left-handed + Levou rukou + + + Angle 1: + Úhel 1: + + + Angle 2: + Úhel 2: + + + From three points + Ze tří bodů + + + Major radius: + Hlavní poloměr: + + + Minor radius: + Vedlejší poloměr: + + + End point + Koncový bod + + + Start point + Počáteční bod + + + + &Create + & Vytvořit + + + Alt+C + Alt+C + + + Cl&ose + Zavřít + + + Alt+O + Alt+O + + + Create %1 + Vytvořit %1 + + + No active document + Žádný aktivní dokument + + + + Pitch: + Rozteč: + + + Helix + Spirála + + + 3D View + 3D pohled + + + + PartGui::DlgRevolution + + + Revolve + Orotovat + + + Y: + Y: + + + X: + X: + + + Angle: + Úhel: + + + Z: + Z: + + + Axis: + Osa: + + + Shape + Útvar + + + Select line in 3D view + Vyberte čáru ve 3D + + + + Select a shape for revolution, first. + Select a shape for revolution, first. + + + + PartGui::DlgSettings3DViewPart + + + View accuracy / Performance + Přesnost / výkon pohledu + + + View smoothing + Vyhlazení pohledu + + + Using high-quality normals + Použití normál vysoké kvality + + + This will slow down render speed but will lead to nicer results + Bude pomaleji rendrovat, ale povede k hezčímu výsledku + + + Defines the appearance of surfaces + Definice vzhledu ploch + + + Shape view + Pohled útvaru + + + Tessellation + Plátování + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Plošné stínování/Phongovo stínování</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Při plošném stínování nejsou definované normály ploch ve vrcholech což vede k nerealistickému vzhledu zakřivených ploch. Použití Phongova stínování vede k hladšímu vzhledu. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Pokud tato volba není nastavena používá se Phongovo stínování, pokud je nastaveno používá se plošné stínování.</p></body></html> + + + Do not define normal per vertex + Nedefinujte normálu ve vrcholu + + + Defines the deviation of tessellation to the actual surface + Definuje odhylku plátování sítě aktuální plochy + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Plátování</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Definuje maximální odhylku plátů sítě na ploše. Nejmenší hodnota je nejpomalejší pro rendering ale má nejhezčí vzhled.</span></p></body></html> + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Tato volba bude pomaleji renderovat, ale model bude lépe vypadat.</p></body></html> + + + Maximum deviation depending on the model bounding box + Maximální odchylka závislá na hranici modelu + + + % + % + + + + Deviation + Deviation + + + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + + + + PartGui::DlgSettingsGeneral + + + General + Obecné + + + Export + Export + + + Millimeter + Milimetry + + + Meter + Metry + + + Inch + Palce + + + Units for export of STEP/IGES + Jenotky pro export do STEP/IGES + + + Model settings + Nastavení modelu + + + Automatically refine model after boolean operation + Automaticky vylepšit model po logické operaci + + + Automatically check model after boolean operation + Automaticky zkontrolovat model po logické operaci + + + + PartGui::FaceColors + + + Face colors + Barvy stěn + + + Do you really want to cancel? + Opravdu chcete zrušit? + + + + PartGui::Location + + + Location + Umístění + + + Position + Position + + + 3D View + 3D pohled + + + + PartGui::LoftWidget + + + Vertex/Wire + Vrchol/Drát + + + Loft + Profilování + + + Too few elements + Příliž málo elemnetů + + + At least two vertices, edges or wires are required. + Nejméně dva vrcholy, hrany nebo křivky jsou požadovány. + + + At least two vertices or wires are required. + Jsou požadovány nejméně dva vrcholy nebo drát. + + + + PartGui::Mirroring + + + Mirroring + Zrcadlení + + + Shapes + Útvar + + + Mirror plane: + Rovina zrcadlení: + + + XY plane + rovina XY + + + XZ plane + rovina XZ + + + YZ plane + rovina YZ + + + Base point: + Základový bod: + + + x + x + + + y + y + + + z + z + + + + Select a shape for mirroring, first. + Nejdříve vyber útvar pro zrcadlení. + + + No such document '%1'. + Není takový dokument '%1'. + + + + PartGui::ShapeBuilderWidget + + + Wrong selection + Neplatný výběr + + + Select two vertices + Vyber dva vrcholy + + + Select three or more edges + Vyber tři nebo více hran + + + Select one or more edges + Vyberete jednu nebo více hran + + + Select two or more faces + Vyber dvě nebo více ploch + + + Select only one part object + Vyber pouze jeden díl + + + Select two vertices to create an edge + Vyber dva vrcholy pro vytvoření hrany + + + Select a closed set of edges + Vyber uzavřenou sadu hran + + + Select adjacent faces + Vyber přiléhající plochy + + + All shape types can be selected + Všechny typy útvarů mohou být vybrány + + + + PartGui::SweepWidget + + + Vertex/Wire + Vrchol/Drát + + + Sweep + Tažení + + + Sweep path + Tažení po křivce + + + Select an edge or wire you want to sweep along. + Vyberte hranu nebo křivku podle které chcete provést tažení. + + + Too few elements + Příliž málo elemnetů + + + At least one edge or wire is required. + Je vyžadován alespoň jedna hrana nebo křivka. + + + + PartGui::TaskDialogEditDynamic + + Hint + Hint + + + Select Control. + Vyber řízení. + + + Control + Upravit + + + Dynamic + Dynamický + + + Align + Zarovnat + + + Value + Hodnota + + + Special + Speciální + + + Command + Příkaz + + + Stretch + Protažení + + + Move + Přesun + + + Rotate + Rotace + + + Offset + Odstup + + + Orient + Orientace + + + Match + Match + + + Surround + Okraj + + + dummy + prázdný + + + X Axis + X Axis + + + Y Axis + Y Axis + + + Z Axis + Z Axis + + + Increment + Přírůstek + + + .125 + .125 + + + .500 + .500 + + + 1.000 + 1.000 + + + 5.000 + 5.000 + + + 10.000 + 10.000 + + + Drag arrows to stretch box by increment + Táhni šipku pro protažení kvádru o přírůstek + + + Drag arrows to move box by increment + Táhni šipku pro posun kvádru o přírůstek + + + Not implemented yet + Není zatím implementováno + + + Drag arrows to offset checked axes by increment + Táhni šipku pro odsazení kontrolované osy o přírůstek + + + Select dragger for stretch by align + Vyber přesuvník pro protažení se zarovnáním + + + Select dragger for move by align + Vyber přesuvník pro posun se zarovnáním + + + Select dragger for stretch by value + Vyber přesuvník pro protažení o hodnotu + + + Select dragger for move by value + Vyber přesuvník pro posun o hodnotu + + + 1.0 + 1.0 + + + Enter Value + Vlož hodnotu + + + Select box to match + Select box to match + + + Select a point + Vyber bod + + + 0.0 + 0.0 + + + Select dragger to align + Vyber přesuvník pro zarovnání + + + Select dragger to modify + Vyber přesuvník pro modifikaci + + + + PartGui::TaskFaceColors + + + Set color per face + Nastav barvu plochy + + + Click on the faces in the 3d view to select them. + Klikni na plochy ve 3D pohledu pro výběr. + + + Faces: + Plochy: + + + Set to default + Nastavit výchzí hodnoty + + + + PartGui::TaskLoft + + + Loft + Profilování + + + Vertex/Wire + Vrchol/Drát + + + Move right + Přesunout doprava + + + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Posun vybrané položky o jednu úroveň dolů.</b><p>Také změní úroveň nadřazené položky.</p> + + + Move left + Posunout doleva + + + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Posun vybrané položky o jednu úroveň nahoru.</b><p>Také změní úroveň nadřazené položky.</p> + + + Move up + Posunout nahorů + + + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Posunout vybranou položku nahoru.</b><p>Položka se posune i v hierarchii.</p> + + + Move down + Posunout dolů + + + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Posunout vybranou položku dolů.</b><p>Položka se posune i v hierarchii.</p> + + + Create solid + Vytvoř těleso + + + Ruled surface + Přímková plocha + + + + PartGui::TaskShapeBuilder + + + Create shape + Vytvoř útvar + + + Edge from vertices + Hrana z vrcholů + + + Face from edges + Plocha z hran + + + Planar + Rovinný + + + Shell from faces + Sořepina z ploch + + + Solid from shell + Těleso ze skořepiny + + + Create + Vytvořit + + + All faces + Všechny plochy + + + + PartGui::TaskSweep + + + Sweep + Tažení + + + Create solid + Vytvoř těleso + + + Frenet + Frenet + + + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. + + + + QObject + + + Wrong selection + Neplatný výběr + + + Select two shapes please. + Vyber dva útvary prosím. + + + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + Všechny CAD Soubory (*.stp *.step *.igs *.iges *.brp *.brep) + + + STEP (*.stp *.step) + STEP (*.stp *.step) + + + IGES (*.igs *.iges) + IGES (*.igs *.iges) + + + BREP (*.brp *.brep) + BREP (*.brp *.brep) + + + All Files (*.*) + Všechny soubory (*.*) + + + + Sewing Tolerance + Tolerance sešití + + + Enter tolerance for sewing shape: + Vlož toleranci pro sešití útvarů: + + + + Edit mirror plane + Upravit rovinu zrcadlení + + + Edit chamfer edges + Editovat zkosení hran + + + Transform + Transform + + + + Part design + Modelování dílu + + + + Select two shapes or more, please. + Vyber dva útvary nebo více, prosím. + + + You have to select either two edges or two wires. + Nejsou vybrané ani dvě hrany nebo dva dráty. + + + + Edit fillet edges + Upravit hrny zaoblení + + + + Set colors... + Nastavení barev... + + + + Workbench + + + &Part + &Part + + + &Simple + &Simple + + + &Parametric + &Parametric + + + Part tools + Nástroje dílu + + + Solids + Tělesa + + + Boolean + Boolean + + + diff --git a/src/Mod/Part/Gui/Resources/translations/Part_de.qm b/src/Mod/Part/Gui/Resources/translations/Part_de.qm index fe6d89499..cfff7bc5b 100644 Binary files a/src/Mod/Part/Gui/Resources/translations/Part_de.qm and b/src/Mod/Part/Gui/Resources/translations/Part_de.qm differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_de.ts b/src/Mod/Part/Gui/Resources/translations/Part_de.ts index bae37780b..57972b80d 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_de.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_de.ts @@ -1,2522 +1,2127 @@ - - + + BlockDefinition - - Block definition - Blockdefinition + + Block definition + Blockdefinition - - First limit - Erster Grenzwert + First limit + Erster Grenzwert - - - Type: - Typ: + Type: + Typ: - - - mm - mm + mm + mm - - - Length: - Länge: + Length: + Länge: - - - Dimension - Abmessung + Dimension + Abmessung - - - Up to next - Weiter zum Nächsten + Up to next + Weiter zum Nächsten - - - Up to last - Weiter zum Letzten + Up to last + Weiter zum Letzten - - - Up to plane - Weiter zur Ebene + Up to plane + Weiter zur Ebene - - - Up to face - Bis zu Oberfläche + Up to face + Bis zu Oberfläche - - - Limit: - Grenze: + Limit: + Grenze: - - - - - No selection - Keine Auswahl + No selection + Keine Auswahl - - Profile - Profil + Profile + Profil - - Selection: - Auswahl: + Selection: + Auswahl: - - Reverse - Umkehren + Reverse + Umkehren - - Both sides - Beide Seiten + Both sides + Beide Seiten - - Second limit - Zweite Begrenzung + Second limit + Zweite Begrenzung - - Direction - Richtung + Direction + Richtung - - Perpendicular to sketch - Senkrecht zur Skizze + Perpendicular to sketch + Senkrecht zur Skizze - - Reference - Referenz + Reference + Referenz - - Apply - Anwenden + Apply + Übernehmen - - Cancel - Abbrechen + Cancel + Abbrechen - - OK - OK + OK + OK - - + + CmdPartBoolean - - Part - Formteil + + Part + Formteil - - Boolean... - Boolesche Operation... + Boolean... + Boolesche Operation... - - Run a boolean operation with two shapes selected - Eine boolesche Operation mit zwei ausgewählten Formen durchführen + Run a boolean operation with two shapes selected + Eine boolesche Operation mit zwei ausgewählten Formen durchführen - - + + CmdPartBox - - Part - Formteil + + Part + Formteil - - Box - Quader + Box + Quader - - Create a box solid - Erstellt einen Quader + Create a box solid + Erstellt einen Quader - - + + CmdPartBox2 - - Part - Formteil + + Part + Formteil - - Box fix 1 - Box fix 1 + Box fix 1 + Box fix 1 - - Create a box solid without dialog - Erstellt einen Quader ohne Dialog + Create a box solid without dialog + Erstellt einen Quader ohne Dialog - - + + CmdPartBox3 - - Part - Formteil + Part + Formteil - - Box fix 2 - Box fix 2 + Box fix 2 + Box fix 2 - - Create a box solid without dialog - Erstellt einen Quader ohne Dialog + Create a box solid without dialog + Erstellt einen Quader ohne Dialog - - + + CmdPartBuilder - - Part - Formteil + Part + Formteil - - Shape builder... - Shape builder... + Shape builder... + Form-Generator... - - Advanced utility to create shapes - Advanced utility to create shapes + Advanced utility to create shapes + Erweitertes Dienstprogramm um Formen zu erstellen - - + + CmdPartChamfer - - Part - Formteil + Part + Formteil - - Chamfer... - + Chamfer... + Abschrägung ... - - Chamfer the selected edges of a shape - + Chamfer the selected edges of a shape + Die gewählten Kanten einer Form abschrägen - - + + CmdPartCommon - - Part - Formteil + Part + Formteil - - Intersection - Überschneidung + Intersection + Schnitt - - Make an intersection of two shapes - Überschneidet zwei Formen + Make an intersection of two shapes + Überschneidet zwei Formen - - + + CmdPartCone - - Part - Formteil + + Part + Formteil - - Cone - Kegel + Cone + Kegel - - Create a cone solid - Erstellt einen Kegel + Create a cone solid + Erstellt einen Kegel - - + + CmdPartCrossSections - - Part - Formteil + + Part + Formteil - - Cross-sections... - Schnitte... + Cross-sections... + Schnitte... - - Cross-sections - Schnitte + Cross-sections + Schnitte - - + + CmdPartCut - - Part - Formteil + Part + Formteil - - Cut - Ausschneiden + Cut + Ausschneiden - - Make a cut of two shapes - Schneidet zwei Formen + Make a cut of two shapes + Schneidet zwei Formen - - + + CmdPartCylinder - - Part - Formteil + + Part + Formteil - - Create a Cylinder - Einen Zylinder erstellen + Create a Cylinder + Einen Zylinder erstellen - - Cylinder - Zylinder + Cylinder + Zylinder - - + + CmdPartExport - - Part - Formteil + + Part + Formteil - - Export CAD... - Export CAD... + Export CAD... + CAD Export... - - Exports to a CAD file - Exports to a CAD file + Exports to a CAD file + In CAD-Datei exportieren - - + + CmdPartExtrude - - Part - Formteil + Part + Formteil - - Extrude... - Extrudieren... + Extrude... + Extrudieren... - - Extrude a selected sketch - Extrudieren einer ausgewählten Skizze + Extrude a selected sketch + Extrudieren einer ausgewählten Skizze - - + + CmdPartFillet - - Part - Formteil + Part + Formteil - - Fillet... - Abrunden... + Fillet... + Abrunden... - - Fillet the selected edges of a shape - Die ausgewählten Kanten einer Form abrunden + Fillet the selected edges of a shape + Die ausgewählten Kanten einer Form abrunden - - + + CmdPartFuse - - Part - Formteil + Part + Formteil - - Union - Vereinigung + Union + Vereinigung - - Make a union of several shapes - Vereinigt mehrere Formen + Make a union of several shapes + Vereinigt mehrere Formen - - + + CmdPartImport - - Part - Formteil + Part + Formteil - - Imports a CAD file - Importiert eine CAD-Datei + Imports a CAD file + Importiert eine CAD-Datei - - Import CAD... - CAD importieren ... + Import CAD... + CAD importieren ... - - + + CmdPartImportCurveNet - - Part - Formteil + Part + Formteil - - Import a curve network - Ein Kurvennetzwerk importieren + Import a curve network + Ein Kurvennetzwerk importieren - - Import curve network... - Kurvennetzwerk importieren... + Import curve network... + Kurvennetzwerk importieren... - - + + CmdPartLoft - - Part - Formteil + Part + Formteil - - Loft... - Loft... + Loft... + Freiformfläche... - - Utility to loft - + Utility to loft + Loft-Werkzeug - Advanced utility to lofts - Advanced utility to lofts + Advanced utility to lofts + Erweitertes Freiformwerkzeug - - + + CmdPartMakeSolid - - Part - Formteil + Part + Formteil - - Convert to solid - Festkörper erzeugen + Convert to solid + Festkörper erzeugen - - Create solid from a shell or compound - Festkörper aus Hülle oder Flächenverbund erzeugen + Create solid from a shell or compound + Festkörper aus Hülle oder Flächenverbund erzeugen - - + + CmdPartMirror - - Part - Formteil + Part + Formteil - - Mirroring... - Spiegelung... + Mirroring... + Spiegelung... - - Mirroring a selected shape - Spiegelung einer ausgewählten Form + Mirroring a selected shape + Spiegelung einer ausgewählten Form - - + + CmdPartPickCurveNet - - Part - Formteil + Part + Formteil - - Pick curve network - Kurvennetzwerk auswählen + Pick curve network + Kurvennetzwerk auswählen - - Pick a curve network - Ein Kurvennetzwerk auswählen + Pick a curve network + Ein Kurvennetzwerk auswählen - - + + CmdPartPrimitives - - Part - Formteil + Part + Formteil - - Create primitives... - Grundkörper erstellen... + Create primitives... + Grundkörper erstellen... - - Creation of parametrized geometric primitives - Erstellung von parametrisierten geometrischen Grundkörpern + Creation of parametrized geometric primitives + Erstellung von parametrisierten geometrischen Grundkörpern - - + + CmdPartRefineShape - - Part - Formteil + + Part + Formteil - - Refine shape - + Refine shape + Form verfeinern - - Refine the copy of a shape - + Refine the copy of a shape + Kopie einer Form verfeinern - - + + CmdPartReverseShape - - Part - Formteil + + Part + Formteil - - Reverse shapes - Formen umkehren + Reverse shapes + Formen umkehren - - Reverse orientation of shapes - Orientierung von Formen umkehren + Reverse orientation of shapes + Orientierung von Formen umkehren - - + + CmdPartRevolve - - Part - Formteil + Part + Formteil - - Revolve... - Drehen... + Revolve... + Drehen... - - Revolve a selected shape - Drehen einer ausgewählten Form + Revolve a selected shape + Drehen einer ausgewählten Form - - + + CmdPartRuledSurface - - Part - Formteil + Part + Formteil - - Create ruled surface - Regelfläche erzeugen + Create ruled surface + Regelfläche erzeugen - - Create a ruled surface from two curves - Regelfläche aus zwei Kurven erzeugen + Create a ruled surface from two curves + Regelfläche aus zwei Kurven erzeugen - - + + CmdPartSection - - Make a section of two shapes - Schnitt von zwei Formen erzeugen + Make a section of two shapes + Schnitt von zwei Formen erzeugen - - Part - Formteil + Part + Formteil - - Section - Ausschnitt + Section + Ausschnitt - - + + CmdPartShapeFromMesh - - Part - Formteil + + Part + Formteil - - Create shape from mesh... - Form aus Dreiecksnetz erstellen... + Create shape from mesh... + Form aus Dreiecksnetz erstellen... - - Create shape from selected mesh object - Form aus selektiertem Dreiecksnetz erstellen + Create shape from selected mesh object + Form aus selektiertem Dreiecksnetz erstellen - - + + CmdPartSimpleCopy - - Part - Formteil + Part + Formteil - - Create simple copy - Einfache Kopie erstellen + Create simple copy + Einfache Kopie erstellen - - Create a simple non-parametric copy - Create a simple non-parametric copy + Create a simple non-parametric copy + Erstelle eine einfache, nicht-parametrische Kopie - - + + CmdPartSimpleCylinder - - Part - Formteil + Part + Formteil - - Create Cylinder... - Zylinder erstellen... + Create Cylinder... + Zylinder erstellen... - - Create a Cylinder - Einen Zylinder erstellen + Create a Cylinder + Einen Zylinder erstellen - - + + CmdPartSphere - - Create a sphere solid - Erstellt eine Kugel + + Create a sphere solid + Erstellt eine Kugel - - Part - Formteil + Part + Formteil - - Sphere - Kugel + Sphere + Kugel - - + + CmdPartSweep - - Part - Formteil + + Part + Formteil - - Sweep... - + Sweep... + Sweepen... - - Utility to sweep - + Utility to sweep + Sweep-Werkzeug - - + + CmdPartTorus - - Create a torus solid - Erstellt einen Torus + + Create a torus solid + Erstellt einen Torus - - Part - Formteil + Part + Formteil - - Torus - Torus + Torus + Torus - - + + DlgExtrusion - Select a shape for extrusion, first. - Wählen Sie zuerst eine Form zum extrudieren. + Select a shape for extrusion, first. + Wählen Sie zuerst eine Form zum extrudieren. - The document '%1' doesn't exist. - The document '%1' doesn't exist. + The document '%1' doesn't exist. + The document '%1' doesn't exist. - - + + DlgRevolution - Select a shape for revolution, first. - Select a shape for revolution, first. + Select a shape for revolution, first. + Select a shape for revolution, first. - - + + DlgSettings3DViewPart - Deviation - Deviation + Deviation + Deviation - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - - + + PartGui::CrossSections - - Cross sections - Schnitte + + Cross sections + Schnitte - - Guiding plane - Führungsebene + Guiding plane + Führungsebene - - XY - XY + XY + XY - - XZ - XZ + XZ + XZ - - YZ - YZ + YZ + YZ - - Position: - Position: + Position: + Position: - - Sections - Abschnitte + Sections + Abschnitte - - On both sides - Beidseitig + On both sides + Beidseitig - - Count - Anzahl + Count + Anzahl - - Distance: - Entfernung: + Distance: + Entfernung: - - + + PartGui::DlgBooleanOperation - - Boolean Operation - Boolesche Operation + + Boolean Operation + Boolesche Operation - - Second shape - Zweite Form + Second shape + Zweite Form - - First shape - Erste Form + First shape + Erste Form - - Boolean operation - Boolesche Operation + Boolean operation + Boolesche Operation - - Section - Ausschnitt + Section + Ausschnitt - - Difference - Differenz + Difference + Differenz - - Union - Vereinigung + Union + Vereinigung - - Intersection - Überschneidung + Intersection + Schnitt - - Cannot perform a boolean operation with the same shape - Kann eine boolesche Operation mit der gleichen Form nicht ausführen + + Cannot perform a boolean operation with the same shape + Kann eine boolesche Operation mit der gleichen Form nicht ausführen - - - Solids - Festkörper + + Solids + Festkörper - - - Shells - Hülle + Shells + Hülle - - - Compounds - Flächenverbünde + Compounds + Flächenverbünde - - - Faces - Flächen + Faces + Flächen - - Swap selection - Auswahl umkehren + Swap selection + Auswahl umkehren - - Select a shape on the left side, first - Zuerst Form auf der linken Seite auswählen + + Select a shape on the left side, first + Zuerst Form auf der linken Seite auswählen - - Select a shape on the right side, first - Zuerst Form auf der rechten Seite auswählen + Select a shape on the right side, first + Zuerst Form auf der rechten Seite auswählen - - No active document available - Kein aktives Dokument verfügbar + No active document available + Kein aktives Dokument verfügbar - - One of the selected objects doesn't exist anymore - Eines der ausgewählten Objekte existiert nicht mehr + One of the selected objects doesn't exist anymore + Eines der ausgewählten Objekte existiert nicht mehr - - Performing union on non-solids is not possible - Vereinigung von Nicht-Festkörpern nicht möglich + Performing union on non-solids is not possible + Vereinigung von Nicht-Festkörpern nicht möglich - - Performing intersection on non-solids is not possible - Überschneidung von Nicht-Festkörpern nicht möglich + Performing intersection on non-solids is not possible + Überschneidung von Nicht-Festkörpern nicht möglich - - Performing difference on non-solids is not possible - Differenz von Nicht-Festkörpern nicht möglich + Performing difference on non-solids is not possible + Differenz von Nicht-Festkörpern nicht möglich - - + + PartGui::DlgChamferEdges - - Chamfer Edges - + + Chamfer Edges + Kanten abschrägen - - + + PartGui::DlgExtrusion - - Extrude - Extrudieren + + Extrude + Extrudieren - - Direction - Richtung + Direction + Richtung - - Along normal - Entlang der Normalen + Along normal + Entlang der Normalen - - Length: - Länge: + Length: + Länge: - - 3D view - 3D-Ansicht + 3D view + 3D-Ansicht - - Note:This option works for planes only - Achtung: Diese Option wird nur für Ebenen verwendet + Note:This option works for planes only + Achtung: Diese Option wird nur für Ebenen verwendet - - Create solid - Create solid + Create solid + Erzeuge Volumenkörper - - Taper outward angle - + Taper outward angle + Konus-Außenwinkel - - Shape - Form + Shape + Form - - + + Text source - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - Select a shape for extrusion, first. - Wählen Sie zuerst eine Form zum extrudieren. + + Select a shape for extrusion, first. + Wählen Sie zuerst eine Form zum extrudieren. - - The document '%1' doesn't exist. - The document '%1' doesn't exist. + The document '%1' doesn't exist. + The document '%1' doesn't exist. - - + + PartGui::DlgFilletEdges - - Fillet Edges - Kanten abrunden + + Fillet Edges + Kanten abrunden - - Fillet Parameter - Ausrundungsparameter + Fillet Parameter + Ausrundungsparameter - - Radius: - Radius: + Radius: + Radius: - - Fillet type: - Ausrundungs-Typ: + Fillet type: + Ausrundungs-Typ: - - Constant Radius - Konstanter Radius + Constant Radius + Konstanter Radius - - Variable Radius - Variabler Radius + Variable Radius + Variabler Radius - - Shape - Form + Shape + Form - - Selected shape: - Ausgewählte Form: + Selected shape: + Ausgewählte Form: - - No selection - Keine Auswahl + No selection + Keine Auswahl - - Edges to fillet - Kanten zum Abrunden + + Edges to fillet + Kanten zum Abrunden - - - Start radius - Start-Radius + Start radius + Start-Radius - - End radius - End-Radius + End radius + End-Radius - - Radius - Radius + Radius + Radius - - No edge selected - Keine Kante ausgewählt + No edge selected + Keine Kante ausgewählt - - No edge entity is checked to fillet. + No edge entity is checked to fillet. Please check one or more edge entities first. - Kein Kantengebilde zum Abrunden markiert. + Kein Kantengebilde zum Abrunden markiert. Bitte markieren Sie zuerst ein oder mehrere Kantengebilde. - - All - Alle + + All + Alle - - None - Keine + None + Keine - - - Edge%1 - Kante%1 + + Edge%1 + Kante%1 - - No shape selected - Keine Form gewählt + No shape selected + Keine Form gewählt - - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - Keine gültige Form gewählt. + Keine gültige Form gewählt. Bitte wählen Sie eine gültige Form im Dropdown-Feld. - - + + PartGui::DlgPartBox - - Box definition - Box-Definition + + Box definition + Box-Definition - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - Cancel - Abbrechen + Cancel + Abbrechen - - OK - OK + OK + OK - - Size: - Größe: + Size: + Größe: - - Height: - Höhe: + Height: + Höhe: - - Width: - Breite: + Width: + Breite: - - Length: - Länge: + Length: + Länge: - - Position: - Position: + Position: + Position: - - Direction: - Richtung: + Direction: + Richtung: - - + + PartGui::DlgPartCylinder - - Cylinder definition - Zylinder-Definition + + Cylinder definition + Zylinder-Definition - - Parameter - Parameter + Parameter + Parameter - - Height: - Höhe: + Height: + Höhe: - - Radius: - Radius: + Radius: + Radius: - - Position: - Position: + Position: + Position: - - Direction: - Richtung: + Direction: + Richtung: - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - OK - OK + OK + OK - - Cancel - Abbrechen + Cancel + Abbrechen - - + + PartGui::DlgPartImportIges - - IGES input file - IGES-Eingabedatei + + IGES input file + IGES-Eingabedatei - - ... - ... + ... + ... - - Cancel - Abbrechen + Cancel + Abbrechen - - OK - OK + OK + OK - - File Name - Dateiname + File Name + Dateiname - - + + Text source - - + + PartGui::DlgPartImportIgesImp - - IGES (*.igs *.iges);;All Files (*.*) - IGES (*.igs *.iges);;Alle Dateien (*.*) + + IGES (*.igs *.iges);;All Files (*.*) + IGES (*.igs *.IGES); Alle Dateien (*.*) - - + + PartGui::DlgPartImportStep - - ... - ... + + ... + ... - - Cancel - Abbrechen + Cancel + Abbrechen - - OK - OK + OK + OK - - Step input file - STEP-Eingabedatei + Step input file + STEP-Eingabedatei - - File Name - Dateiname + File Name + Dateiname - - + + Text source - - + + PartGui::DlgPartImportStepImp - - STEP (*.stp *.step);;All Files (*.*) - STEP (*.stp *.step);; Alle Dateien (*.*) + + STEP (*.stp *.step);;All Files (*.*) + STEP (*.stp *.step);; Alle Dateien (*.*) - - + + PartGui::DlgPrimitives - - Geometric Primitives - Geometrische Grundkörper + + Geometric Primitives + Geometrische Grundkörper - Primitive - Grundkörper + Primitive + Grundkörper - X min - X min + X min + X min - x max - x max + x max + X max - Y min - Y min + Y min + Y min - Y max - Y max + Y max + Y max - Z min - Z min + Z min + Z min - Z max - Z max + Z max + Z max - X2 min - X2 min + X2 min + X2 min - X2 max - X2 max + X2 max + X2 max - Z2 min - Z2 min + Z2 min + Z2 min - Z2 max - Z2 max + Z2 max + Z2 max - Angle - 0 for cyl - Angle - 0 for cyl + Angle - 0 for cyl + Drehwinkel - 0 für Zylinder - Angle0 - Angle0 + Angle0 + Drehwinkel0 - Angle1 - Angle1 + Angle1 + DrehWinkel1 - X Axis Value: - X Axis Value: + X Axis Value: + X-Wert: - Y Axis Value: - Y Axis Value: + Y Axis Value: + Y-Wert: - Z Axis Value: - Z Axis Value: + Z Axis Value: + Z-Achsen-Wert: - - Wedge - Wedge + Wedge + Keil - - Circle - Kreis + Circle + Kreis - Vertex - Vertex + Vertex + Knoten - Position - Position + Position + Position - - - - Z: - Z: + Z: + Z: - - - - X: - X: + X: + X: - Direction: - Richtung: + Direction: + Richtung: - - - - Y: - Y: + Y: + Y: - - Plane - Ebene + Plane + Ebene - - Box - Quader + Box + Quader - - Cylinder - Zylinder + Cylinder + Zylinder - - Cone - Kegel + Cone + Kegel - - Sphere - Kugel + Sphere + Kugel - - Ellipsoid - Ellipsoid + Ellipsoid + Ellipsoid - - Torus - Torus + Torus + Torus - - Ellipse - + Ellipse + Ellipse - - Point - + Point + Punkt - - Line - + Line + Linie - - Parameter - Parameter + Parameter + Parameter - - - Width: - Breite: + Width: + Breite: - - - Length: - Länge: + Length: + Länge: - - - - - Height: - Höhe: + Height: + Höhe: - - - - Angle: - Winkel: + Angle: + Winkel: - - - - - Radius: - Radius: + Radius: + Radius: - - - - Radius 1: - Radius 1: + Radius 1: + Radius 1: - - - - Radius 2: - Radius 2: + Radius 2: + Radius 2: - - - - U parametric: - U Parameter: + U parametric: + U Parameter: - - - - V parametric: - V Parameter: + V parametric: + V Parameter: - - X min/max: - + X min/max: + X min/max: - - Y min/max: - + Y min/max: + Y min/max: - - Z min/max: - + Z min/max: + Z min/max: - - X2 min/max: - + X2 min/max: + X2 min/max: - - Z2 min/max: - + Z2 min/max: + Z2 min/max: - - Coordinate system: - + Coordinate system: + Koordinatensystem: - - Right-handed - + Right-handed + Rechtsdrehened - - Left-handed - + Left-handed + Linksdrehend - - - Angle 1: - + Angle 1: + Winkel 1: - - - Angle 2: - + Angle 2: + Winkel 2: - - From three points - + From three points + Aus drei Punkten - - Major radius: - + Major radius: + Hauptradius: - - Minor radius: - + Minor radius: + Nebenradius: - - End point - + End point + Endpunkt - - Start point - + Start point + Startpunkt - - &Create - &Erstellen + + &Create + &Erstellen - Alt+C - Alt+C + Alt+C + Alt+C - Cl&ose - Sch&ließen + Cl&ose + Sch&ließen - Alt+O - Alt+O + Alt+O + Alt+I - - - - Create %1 - %1 erstellen + Create %1 + Erstelle %1 - - No active document - Kein aktives Dokument + No active document + Kein aktives Dokument - - Pitch: - Pitch: + + Pitch: + Steigung: - - Helix - Helix + Helix + Helix - 3D View - 3D-Ansicht + 3D View + 3D-Ansicht - - + + PartGui::DlgRevolution - - Revolve - Umdrehung + + Revolve + Umdrehung - - Y: - Y: + Y: + Y: - - X: - X: + X: + X: - - Angle: - Winkel: + Angle: + Winkel: - - Z: - Z: + Z: + Z: - - Axis: - Achse: + Axis: + Achse: - - Shape - Form + Shape + Form - - Select line in 3D view - + Select line in 3D view + Selektieren Sie eine Gerade in der 3D Ansicht - - Select a shape for revolution, first. - Select a shape for revolution, first. + + Select a shape for revolution, first. + Select a shape for revolution, first. - - + + PartGui::DlgSettings3DViewPart - - View accuracy / Performance - Anzeigen der Genauigkeit / Performanz + + View accuracy / Performance + Anzeigen der Genauigkeit / Performanz - - View smoothing - Glättung + View smoothing + Glättung - - Using high-quality normals - Hochwertige Normalen benutzen + Using high-quality normals + Hochwertige Normalen benutzen - - This will slow down render speed but will lead to nicer results - Dies verlangsamt die Render-Geschwindigkeit, führt aber zu schöneren Ergebnissen + This will slow down render speed but will lead to nicer results + Dies verlangsamt die Render-Geschwindigkeit, führt aber zu schöneren Ergebnissen - - Defines the appearance of surfaces - Definiert das Aussehen von Oberflächen + Defines the appearance of surfaces + Definiert das Aussehen von Oberflächen - - Shape view - Form-Ansicht + Shape view + Form-Ansicht - - Tessellation - Tessellierung + Tessellation + Tessellierung - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat-Shading/Phong-Shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Bei Flat-Shading werden die Flächennormalen nicht pro Vertex gesetzt, was zu unnatürlichem Aussehen führen kann, während Phong-Shading zu glatterem Aussehen führt. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Falls diese Option nicht gesetzt ist, wird Phong-Shading verwendet, andernfalls wird Flat-Shading verwendet.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat-Shading/Phong-Shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Bei Flat-Shading werden die Flächennormalen nicht pro Vertex gesetzt, was zu unnatürlichem Aussehen führen kann, während Phong-Shading zu glatterem Aussehen führt. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Falls diese Option nicht gesetzt ist, wird Phong-Shading verwendet, andernfalls wird Flat-Shading verwendet.</p></body></html> - - Do not define normal per vertex - Flächennormale nicht per Vertex setzen + Do not define normal per vertex + Flächennormale nicht per Vertex setzen - - Defines the deviation of tessellation to the actual surface - Definiert die Abweichung des Mosaiks auf der aktuellen Oberfläche + Defines the deviation of tessellation to the actual surface + Definiert die Abweichung des Mosaiks auf der aktuellen Oberfläche - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellierung</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Setzt die maximale Abweichung der tessellierten Fläche zur CAD-Fläche. Je niedriger der Wert desto langamer die Darstellungsgeschwindigkeit und schöner die Darstellung.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellierung</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Setzt die maximale Abweichung der tessellierten Fläche zur CAD-Fläche. Je niedriger der Wert desto langamer die Darstellungsgeschwindigkeit und schöner die Darstellung.</span></p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hinweis</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Die Angabe der Normalen per Vertex wird auch <span style=" font-style:italic;">Phong shading</span> genannt,</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">während die Angabe der Normalen pro Fläche </span>Flat shading<span style=" font-style:normal;"> gennant wird.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hinweis</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Die Angabe der Normalen per Vertex wird auch <span style=" font-style:italic;">Phong shading</span> genannt,</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">während die Angabe der Normalen pro Fläche </span>Flat shading<span style=" font-style:normal;"> gennant wird.</span></p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Hochqualitative Normalen</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Dies verringert die Darstellungsgeschwindigkeit aber führt zu schöneren Ergebnissen.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Hochqualitative Normalen</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Dies verringert die Darstellungsgeschwindigkeit aber führt zu schöneren Ergebnissen.</p></body></html> - - Maximum deviation depending on the model bounding box - Setzt die maximale Abweichung abhängig von der Modell-Bounding-Box + Maximum deviation depending on the model bounding box + Setzt die maximale Abweichung abhängig von der Modell-Bounding-Box - - % - % + % + % - - Deviation - Deviation + + Deviation + Deviation - - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - - + + PartGui::DlgSettingsGeneral - - General - Allgemein + + General + Allgemein - - Export - Exportieren + Export + Exportieren - - Millimeter - Millimeter + Millimeter + Millimeter - - Meter - Meter + Meter + Meter - - Inch - Zoll + Inch + Zoll - - Units for export of STEP/IGES - Einheiten für den Export von STEP/IGES + Units for export of STEP/IGES + Einheiten für den Export von STEP/IGES - - Model settings - + Model settings + Modelleinstellungen - - Automatically refine model after boolean operation - + Automatically refine model after boolean operation + Modell automatisch nach Boolescher Operation verfeinern - - Automatically check model after boolean operation - + Automatically check model after boolean operation + Modell automatisch nach Boolescher Operation überprüfen - - + + PartGui::FaceColors - - Face colors - + + Face colors + Flächenfarben - - Do you really want to cancel? - + Do you really want to cancel? + Möchten Sie wirklich abbrechen? - - + + PartGui::Location - - Location - + + Location + Lage - - Position - Position + Position + Position - - 3D View - 3D-Ansicht + 3D View + 3D-Ansicht - - + + PartGui::LoftWidget - - - Vertex/Wire - Vertex/Wire + + Vertex/Wire + Knoten/Draht - - - Loft - Loft + Loft + Freiformfläche - - Too few elements - Zu wenig Elemente + Too few elements + Zu wenig Elemente - - At least two vertices, edges or wires are required. - + At least two vertices, edges or wires are required. + Mindestens zwei Punkte, Kanten oder Drähte sind erforderlich. - At least two vertices or wires are required. - At least two vertices or wires are required. + At least two vertices or wires are required. + Mindestens zwei Knotenpunkte oder Drähte sind erforderlich. - - + + PartGui::Mirroring - - Mirroring - Spiegelung + + Mirroring + Spiegelung - - Shapes - Formen + Shapes + Formen - - Mirror plane: - Spiegelebene: + Mirror plane: + Spiegelebene: - - XY plane - XY-Ebene + XY plane + XY-Ebene - - XZ plane - XZ-Ebene + XZ plane + XZ-Ebene - - YZ plane - YZ-Ebene + YZ plane + YZ-Ebene - - Base point: - Basispunkt: + Base point: + Basispunkt: - - x - x + x + x - - y - y + y + y - - z - z + z + z - - Select a shape for mirroring, first. - Wählen Sie zuerst eine Form für die Spiegelung. + + Select a shape for mirroring, first. + Wählen Sie zuerst eine Form für die Spiegelung. - - No such document '%1'. - Kein derartiges Dokument "%1". + No such document '%1'. + Es gibt kein Dokument "%1". - - + + PartGui::ShapeBuilderWidget - - - - - - Wrong selection - Falsche Auswahl + + Wrong selection + Falsche Auswahl - - - Select two vertices - Select two vertices + Select two vertices + Wähle zwei Knotenpunkte - Select three or more edges - Select three or more edges + Select three or more edges + Wähle drei oder mehr Kanten - - Select one or more edges - + Select one or more edges + Eine oder mehrere Kanten auswählen - - Select two or more faces - Select two or more faces + Select two or more faces + Wähle zwei oder mehr Oberflächen aus - - Select only one part object - Select only one part object + Select only one part object + Wählen Sie nur ein Teileobjekt - - Select two vertices to create an edge - Select two vertices to create an edge + Select two vertices to create an edge + Wählen Sie zwei Knoten zum Erzeugen einer Kante aus - - Select a closed set of edges - Select a closed set of edges + Select a closed set of edges + Wählen Sie eine geschlossene Gruppe von Kanten - - Select adjacent faces - Select adjacent faces + Select adjacent faces + Wähle angrenzende Oberflächen aus - - All shape types can be selected - All shape types can be selected + All shape types can be selected + Alle Form-Typen können ausgewählt werden - - + + PartGui::SweepWidget - - - Vertex/Wire - Vertex/Wire + + Vertex/Wire + Knoten/Draht - - - Sweep - + Sweep + Sweep - - Sweep path - + Sweep path + Sweep-Pfad - - Select an edge or wire you want to sweep along. - + Select an edge or wire you want to sweep along. + Wählen Sie eine Kante oder Draht entlang sweepen möchten. - - Too few elements - Zu wenig Elemente + Too few elements + Zu wenig Elemente - - At least one edge or wire is required. - + At least one edge or wire is required. + Mindestens eine Kante oder Draht ist erforderlich. - - + + PartGui::TaskDialogEditDynamic - Hint - Hint + Hint + Hinweis - Select Control. - Select Control. + Select Control. + Wähle Steuerelement. - Control - Control + Control + Steuerelement - Dynamic - Dynamic + Dynamic + Dynamische - Align - Align + Align + Ausrichtung - Value - Wert + Value + Wert - Special - Special + Special + Spezial - Command - Befehl + Command + Befehl - Stretch - Stretch + Stretch + Dehnen - Move - Verschieben + Move + Verschieben - Rotate - Drehen + Rotate + Drehen - Offset - Versetzen + Offset + Versetzen - Orient - Orient + Orient + Orientieren - Match - Match + Match + Passend - Surround - Surround + Surround + Umgebend - dummy - dummy + dummy + dummy - X Axis - X Axis + X Axis + X-Achse - Y Axis - Y Axis + Y Axis + Y-Achse - Z Axis - Z Axis + Z Axis + Z-Achse - Increment - Increment + Increment + Inkrement - .125 - .125 + .125 + .125 - .500 - .500 + .500 + .500 - 1.000 - 1.000 + 1.000 + 1.000 - 5.000 - 5.000 + 5.000 + 5.000 - 10.000 - 10.000 + 10.000 + 10.000 - Drag arrows to stretch box by increment - Drag arrows to stretch box by increment + Drag arrows to stretch box by increment + Ziehe die Pfeileum die Box um ein Inkrement zu dehnen - Drag arrows to move box by increment - Drag arrows to move box by increment + Drag arrows to move box by increment + Ziehe Pfeile um die Box um ein Inkrement zu bewegen - Not implemented yet - Not implemented yet + Not implemented yet + Noch nicht implementiert - Drag arrows to offset checked axes by increment - Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment + Ziehe Pfeile um aktivierte Achsen um ein Inkrement zu verschieben - Select dragger for stretch by align - Select dragger for stretch by align + Select dragger for stretch by align + Wähle Regler um beim Ausrichten zu Dehnen - Select dragger for move by align - Select dragger for move by align + Select dragger for move by align + Wähle Regler um beim Ausrichten zu verschieben - Select dragger for stretch by value - Select dragger for stretch by value + Select dragger for stretch by value + Benutze Regler für eine Dehnung um einen Wert - Select dragger for move by value - Select dragger for move by value + Select dragger for move by value + Benutze Regler für einen Bewegung um einen Wert - 1.0 - 1.0 + 1.0 + 1.0 - Enter Value - Enter Value + Enter Value + Gib einen Wert ein - Select box to match - Select box to match + Select box to match + Wähle eine Box zum Abgleichen - Select a point - Select a point + Select a point + Wähle einen Punkt - 0.0 - 0.0 + 0.0 + 0.0 - Select dragger to align - Select dragger to align + Select dragger to align + Wähle Regler um auszurichten - Select dragger to modify - Select dragger to modify + Select dragger to modify + Wähle Regler um zu modifizieren - - + + PartGui::TaskFaceColors - - Set color per face - Set color per face + + Set color per face + Festlegen der Farbe pro Fläche - - Click on the faces in the 3d view to select them. - Click on the faces in the 3d view to select them. + Click on the faces in the 3d view to select them. + Klicken Sie auf die Oberflächen in der 3D-Ansicht um sie auszuwählen. - - Faces: - Faces: + Faces: + Oberflächen: - - Set to default - Set to default + Set to default + Auf Standard setzen - - + + PartGui::TaskLoft - - Loft - Loft + + Loft + Freiformfläche - Vertex/Wire - Vertex/Wire + Vertex/Wire + Knoten/Draht - Move right - Nach rechts verschieben + Move right + Nach rechts verschieben - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Ausgewähltes Element um eine Stufe nach unten verschieben.</b><p>Das verändert auch die Stufe des Vaterelements.</p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Ausgewähltes Element um eine Stufe nach unten verschieben.</b><p>Das verändert auch die Stufe des Vaterelements.</p> - Move left - Nach links verschieben + Move left + Nach links verschieben - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Ausgewähltes Element um eine Stufe nach oben verschieben.</b><p>Das verändert auch die Stufe des Vaterelements.</p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Ausgewähltes Element um eine Stufe nach oben verschieben.</b><p>Das verändert auch die Stufe des Vaterelements.</p> - Move up - Noch oben verschieben + Move up + Noch oben verschieben - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Ausgewähltes Element nach oben verschieben.</b><p>Das Element wird innerhalb der Hierarchiestufe verschoben.</p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Ausgewähltes Element nach oben verschieben.</b><p>Das Element wird innerhalb der Hierarchiestufe verschoben.</p> - Move down - Nache unten verschieben + Move down + Nache unten verschieben - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Ausgewähltes Element nach unten verschieben.</b><p>Das Element wird innerhalb der Hierarchiestufe verschoben.</p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Ausgewähltes Element nach unten verschieben.</b><p>Das Element wird innerhalb der Hierarchiestufe verschoben.</p> - - Create solid - Create solid + Create solid + Erzeuge Volumenkörper - - Ruled surface - Ruled surface + Ruled surface + schraffierte Oberfläche - - + + PartGui::TaskShapeBuilder - - - Create shape - Create shape + + Create shape + Erzeuge Form - - Edge from vertices - Edge from vertices + Edge from vertices + Kanten aus Knoten - - Face from edges - Face from edges + Face from edges + Oberflächen aus Kanten - - Planar - Planar + Planar + Planar - - Shell from faces - Shell from faces + Shell from faces + Hülle aus Oberflächen - - Solid from shell - Solid from shell + Solid from shell + Volumenkörper aus Hüllkörper - - Create - Erstellen + Create + Erstellen - - All faces - All faces + All faces + Alle Oberflächen - - + + PartGui::TaskSweep - - Sweep - + + Sweep + Sweep - - Create solid - Create solid + Create solid + Erzeuge Volumenkörper - - Frenet - + Frenet + Frenet - - Select one or more profiles and select an edge or wire + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. - + Wählen Sie ein oder mehrere Profile und wählen Sie eine Kante oder Draht in der 3D Ansicht als Sweep-Pfad. - - + + QObject - - - - - - Wrong selection - Falsche Auswahl + + Wrong selection + Falsche Auswahl - - - Select two shapes please. - Wählen Sie bitte zwei Formen. + Select two shapes please. + Wählen Sie bitte zwei Formen. - - - - All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) - Alle CAD-Dateien (*.stp *.step *.igs *.iges *.brp *.brep) + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + Alle CAD-Dateien (*.stp *.step *IGS .IGES *.brp *.brep) - - - - STEP (*.stp *.step) - STEP (*.stp *.step) + STEP (*.stp *.step) + STEP (*.stp *.step) - - - - IGES (*.igs *.iges) - IGES (*.igs *.iges) + IGES (*.igs *.iges) + IGES (*.igs *.IGES) - - - - BREP (*.brp *.brep) - BREP (*.brp *.brep) + BREP (*.brp *.brep) + BREP (*.brp *.brep) - - - - All Files (*.*) - Alle Dateien (*.*) + All Files (*.*) + Alle Dateien (*.*) - - Sewing Tolerance - Toleranz + + Sewing Tolerance + Toleranz - - Enter tolerance for sewing shape: - Geben Sie die Toleranz zum Vernähen ein: + Enter tolerance for sewing shape: + Geben Sie die Toleranz zum Vernähen ein: - - Edit mirror plane - Spiegelebene bearbeiten + + Edit mirror plane + Spiegelebene bearbeiten - - Edit chamfer edges - + Edit chamfer edges + Gefaste Kanten bearbeiten - Transform - Transformieren + Transform + Transformieren - - - Part design - Part design + + Part design + Part design - - - Select two shapes or more, please. - Wählen Sie bitte zwei oder mehrere Formen aus. + + Select two shapes or more, please. + Wählen Sie bitte zwei oder mehrere Formen aus. - - You have to select either two edges or two wires. - Wählen Sie entweder zwei Kanten oder zwei Drahtgitter aus. + You have to select either two edges or two wires. + Wählen Sie entweder zwei Kanten oder zwei Drahtgitter aus. - - Edit fillet edges - Abgerundete Kanten bearbeiten + + Edit fillet edges + Abgerundete Kanten bearbeiten - - Set colors... - Farben setzen... + + Set colors... + Legen sie Farben fest... - - + + Workbench - - &Part - &Formteil + + &Part + &Formteil - - &Simple - Ein&fach + &Simple + Ein&fach - - &Parametric - &Parametrisch + &Parametric + &Parametrisch - - Part tools - Formteil-Werkzeuge + Part tools + Formteil-Werkzeuge - - Solids - Festkörper + Solids + Festkörper - - Boolean - Boolsche Operation + Boolean + Bool'sche Operationen - + diff --git a/src/Mod/Part/Gui/Resources/translations/Part_es.qm b/src/Mod/Part/Gui/Resources/translations/Part_es-ES.qm similarity index 53% rename from src/Mod/Part/Gui/Resources/translations/Part_es.qm rename to src/Mod/Part/Gui/Resources/translations/Part_es-ES.qm index 0527fa0ab..873fa9f8a 100644 Binary files a/src/Mod/Part/Gui/Resources/translations/Part_es.qm and b/src/Mod/Part/Gui/Resources/translations/Part_es-ES.qm differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_es-ES.ts b/src/Mod/Part/Gui/Resources/translations/Part_es-ES.ts new file mode 100644 index 000000000..6e8f46ffd --- /dev/null +++ b/src/Mod/Part/Gui/Resources/translations/Part_es-ES.ts @@ -0,0 +1,2127 @@ + + + + + BlockDefinition + + + Block definition + Bloque de definición + + + First limit + Primer límite + + + Type: + Tipo: + + + mm + mm + + + Length: + Longitud: + + + Dimension + Cota + + + Up to next + Cerca del siguiente + + + Up to last + Cerca del último + + + Up to plane + Cerca del plano + + + Up to face + Cerca de la cara + + + Limit: + Límite: + + + No selection + Ninguna selección + + + Profile + Perfil + + + Selection: + Selección: + + + Reverse + Invertir + + + Both sides + Ambos lados + + + Second limit + Segundo límite + + + Direction + Dirección + + + Perpendicular to sketch + Perpendicular para esbozar + + + Reference + Referencia + + + Apply + Aplicar + + + Cancel + Cancelar + + + OK + Aceptar + + + + CmdPartBoolean + + + Part + Pieza + + + Boolean... + Booleano... + + + Run a boolean operation with two shapes selected + Ejecuta una operación booleana con dos formas seleccionadas + + + + CmdPartBox + + + Part + Pieza + + + Box + Caja + + + Create a box solid + Crear un cubo sólido + + + + CmdPartBox2 + + + Part + Pieza + + + Box fix 1 + Fijar prisma 1 + + + Create a box solid without dialog + Crear un cuadro sólido sin diálogo + + + + CmdPartBox3 + + Part + Pieza + + + Box fix 2 + Fijar prisma 2 + + + Create a box solid without dialog + Crear un cuadro sólido sin diálogo + + + + CmdPartBuilder + + Part + Pieza + + + Shape builder... + Generador de forma... + + + Advanced utility to create shapes + Utilidad avanzada para crear formas + + + + CmdPartChamfer + + Part + Pieza + + + Chamfer... + Chaflán... + + + Chamfer the selected edges of a shape + Chaflane las aristas seleccionadas de una forma + + + + CmdPartCommon + + Part + Pieza + + + Intersection + Intersección + + + Make an intersection of two shapes + Hacer una intersección de dos formas + + + + CmdPartCone + + + Part + Pieza + + + Cone + Cono + + + Create a cone solid + Crear un cono sólido + + + + CmdPartCrossSections + + + Part + Pieza + + + Cross-sections... + Cortes transversales... + + + Cross-sections + Cortes transversales + + + + CmdPartCut + + Part + Pieza + + + Cut + Cortar + + + Make a cut of two shapes + Hacer un corte de dos formas + + + + CmdPartCylinder + + + Part + Pieza + + + Create a Cylinder + Crear un cilindro + + + Cylinder + Cilindro + + + + CmdPartExport + + + Part + Pieza + + + Export CAD... + Exportar CAD... + + + Exports to a CAD file + Exporta a un archivo CAD + + + + CmdPartExtrude + + Part + Pieza + + + Extrude... + Estruir... + + + Extrude a selected sketch + Estruye el croquis seleccionado + + + + CmdPartFillet + + Part + Pieza + + + Fillet... + Redondeo... + + + Fillet the selected edges of a shape + Redondea los bordes seleccionados de una forma + + + + CmdPartFuse + + Part + Pieza + + + Union + Unión + + + Make a union of several shapes + Hacer una unión de varias formas + + + + CmdPartImport + + Part + Pieza + + + Imports a CAD file + Importa un archivo de CAD + + + Import CAD... + Importar CAD... + + + + CmdPartImportCurveNet + + Part + Pieza + + + Import a curve network + Importa una red de curvas + + + Import curve network... + Importa una red de curvas... + + + + CmdPartLoft + + Part + Pieza + + + Loft... + Loft... + + + Utility to loft + Utility to loft + + + Advanced utility to lofts + Advanced utility to lofts + + + + CmdPartMakeSolid + + Part + Pieza + + + Convert to solid + Convertir a sólido + + + Create solid from a shell or compound + Crear sólidos desde un shell o un compuesto + + + + CmdPartMirror + + Part + Pieza + + + Mirroring... + Duplicar... + + + Mirroring a selected shape + Duplicación de una forma seleccionada + + + + CmdPartPickCurveNet + + Part + Pieza + + + Pick curve network + Designe una red de curvas + + + Pick a curve network + Designa una red de curvas + + + + CmdPartPrimitives + + Part + Pieza + + + Create primitives... + Crear primitivas... + + + Creation of parametrized geometric primitives + Creación de primitivas geométricas paramétricas + + + + CmdPartRefineShape + + + Part + Pieza + + + Refine shape + Refinar la forma + + + Refine the copy of a shape + Refinar la copia de una forma + + + + CmdPartReverseShape + + + Part + Pieza + + + Reverse shapes + Invertir formas + + + Reverse orientation of shapes + Invertir la orientación de las formas + + + + CmdPartRevolve + + Part + Pieza + + + Revolve... + Girar... + + + Revolve a selected shape + Girar una forma seleccionada + + + + CmdPartRuledSurface + + Part + Pieza + + + Create ruled surface + Crear superficie reglada + + + Create a ruled surface from two curves + Crear una superficie reglada a partir de dos curvas + + + + CmdPartSection + + Make a section of two shapes + Hacer una sección de dos formas + + + Part + Pieza + + + Section + Sección + + + + CmdPartShapeFromMesh + + + Part + Pieza + + + Create shape from mesh... + Crear forma de malla... + + + Create shape from selected mesh object + Crear la forma del objeto de malla seleccionada + + + + CmdPartSimpleCopy + + Part + Pieza + + + Create simple copy + Crear copia simple + + + Create a simple non-parametric copy + Crear una copia simple no paramétrica + + + + CmdPartSimpleCylinder + + Part + Pieza + + + Create Cylinder... + Crear cilindro... + + + Create a Cylinder + Crear un cilindro + + + + CmdPartSphere + + + Create a sphere solid + Crear una esfera sólida + + + Part + Pieza + + + Sphere + Esféra + + + + CmdPartSweep + + + Part + Pieza + + + Sweep... + Sweep... + + + Utility to sweep + Utility to sweep + + + + CmdPartTorus + + + Create a torus solid + Crear un toroide sólido + + + Part + Pieza + + + Torus + Toro + + + + DlgExtrusion + + Select a shape for extrusion, first. + Seleccione una forma para la extrusión, en primer lugar. + + + The document '%1' doesn't exist. + The document '%1' doesn't exist. + + + + DlgRevolution + + Select a shape for revolution, first. + Primero seleccione una forma de revolución. + + + + DlgSettings3DViewPart + + Deviation + Desviación + + + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Seleccionando una desviación demasiado pequeña causa que la teselación tome un valor más grande, pudiendo congelar o ralentizar la GUI. + + + + PartGui::CrossSections + + + Cross sections + Cortes transversales + + + Guiding plane + Plano de rector + + + XY + XY + + + XZ + XZ + + + YZ + YZ + + + Position: + Posición: + + + Sections + Secciones + + + On both sides + A ambos lados + + + Count + Count + + + Distance: + Distancia: + + + + PartGui::DlgBooleanOperation + + + Boolean Operation + Operación booleana + + + Second shape + Segunda forma + + + First shape + Primera forma + + + Boolean operation + Operación booleana + + + Section + Sección + + + Difference + Diferencia + + + Union + Unión + + + Intersection + Intersección + + + + Cannot perform a boolean operation with the same shape + No es posible realizar una operación booleana con la misma forma + + + + Solids + Sólidos + + + Shells + Shells + + + Compounds + Compuestos + + + Faces + Caras + + + Swap selection + Intercambiar selección + + + + Select a shape on the left side, first + Seleccione primero una forma en el lado izquierdo, + + + Select a shape on the right side, first + Seleccione primero una forma en el lado derecho, + + + No active document available + Ningún documento activo disponible + + + One of the selected objects doesn't exist anymore + Uno de los objetos seleccionados ya no existe + + + Performing union on non-solids is not possible + No es posible realizar la Unión en no sólidos + + + Performing intersection on non-solids is not possible + No es posible realizar la intersección en no sólidos + + + Performing difference on non-solids is not possible + No es posible realizar la diferencia en no sólidos + + + + PartGui::DlgChamferEdges + + + Chamfer Edges + Aristas del chaflán + + + + PartGui::DlgExtrusion + + + Extrude + Extrusión + + + Direction + Dirección + + + Along normal + A lo largo de la normal + + + Length: + Longitud: + + + 3D view + Vista 3D + + + Note:This option works for planes only + Nota: Esta opción funciona solo para planos + + + Create solid + Crear sólido + + + Taper outward angle + Taper outward angle + + + Shape + Forma + + + + (Vacio) + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + + Select a shape for extrusion, first. + Seleccione una forma para la extrusión, en primer lugar. + + + The document '%1' doesn't exist. + The document '%1' doesn't exist. + + + + PartGui::DlgFilletEdges + + + Fillet Edges + Redondear bordes + + + Fillet Parameter + Parámetro de redondeo + + + Radius: + Radio: + + + Fillet type: + Tipo de redondeo: + + + Constant Radius + Radio constante + + + Variable Radius + Radio variable + + + Shape + Forma + + + Selected shape: + Figura seleccionada: + + + No selection + Ninguna selección + + + + Edges to fillet + Bordes a redondear + + + Start radius + Radio inicial + + + End radius + Radio final + + + Radius + Radio + + + No edge selected + Ningún borde seleccionado + + + No edge entity is checked to fillet. +Please check one or more edge entities first. + Ninguna entidad de borde está marcada para redondear. +Por favor seleccione una o más entidades de borde primero. + + + + All + Todo + + + None + Nada + + + + Edge%1 + Lado %1 + + + No shape selected + No hay forma seleccionada + + + No valid shape is selected. +Please select a valid shape in the drop-down box first. + No se ha seleccionado ninguna forma válida. Por favor, primero seleccione una forma válida en el cuadro desplegable. + + + + PartGui::DlgPartBox + + + Box definition + Definición de prisma + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + Cancel + Cancelar + + + OK + Aceptar + + + Size: + Tamaño: + + + Height: + Altura: + + + Width: + Ancho: + + + Length: + Longitud: + + + Position: + Posición: + + + Direction: + Dirección: + + + + PartGui::DlgPartCylinder + + + Cylinder definition + Definición de cilindro + + + Parameter + Parámetro + + + Height: + Altura: + + + Radius: + Radio: + + + Position: + Posición: + + + Direction: + Dirección: + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + OK + Aceptar + + + Cancel + Cancelar + + + + PartGui::DlgPartImportIges + + + IGES input file + Archivo de entrada IGES + + + ... + ... + + + Cancel + Cancelar + + + OK + Aceptar + + + File Name + Nombre de archivo + + + + (Vacio) + + + + PartGui::DlgPartImportIgesImp + + + IGES (*.igs *.iges);;All Files (*.*) + IGES (*.igs *.iges);;Todos los archivos (*.*) + + + + PartGui::DlgPartImportStep + + + ... + ... + + + Cancel + Cancelar + + + OK + Aceptar + + + Step input file + Archivo de entrada Step + + + File Name + Nombre de archivo + + + + (Vacio) + + + + PartGui::DlgPartImportStepImp + + + STEP (*.stp *.step);;All Files (*.*) + STEP (*.stp *.step);;Todos los archivos (*.*) + + + + PartGui::DlgPrimitives + + + Geometric Primitives + Primitivas geométricas + + + Primitive + primitiva + + + X min + X mín + + + x max + x máx + + + Y min + Y mín + + + Y max + Y máx + + + Z min + Z mín + + + Z max + Z máx + + + X2 min + X2 mín + + + X2 max + X2 máximo + + + Z2 min + Z2 mínimo + + + Z2 max + Z2 max + + + Angle - 0 for cyl + Angle - 0 for cyl + + + Angle0 + Ángulo0 + + + Angle1 + Ángulo1 + + + X Axis Value: + Valor del eje X: + + + Y Axis Value: + Valor del eje Y: + + + Z Axis Value: + Valor del eje Z: + + + Wedge + Wedge + + + Circle + Circunferencia + + + Vertex + Vértice + + + Position + Posición + + + Z: + Z: + + + X: + X: + + + Direction: + Dirección: + + + Y: + Y: + + + Plane + Plano + + + Box + Caja + + + Cylinder + Cilindro + + + Cone + Cono + + + Sphere + Esféra + + + Ellipsoid + Elipsoide + + + Torus + Toro + + + Ellipse + Elipse + + + Point + Punto + + + Line + Línea + + + Parameter + Parámetro + + + Width: + Ancho: + + + Length: + Longitud: + + + Height: + Altura: + + + Angle: + Ángulo: + + + Radius: + Radio: + + + Radius 1: + Radio 1: + + + Radius 2: + Radio 2: + + + U parametric: + U paramétrica: + + + V parametric: + V paramétrica: + + + X min/max: + X min/max: + + + Y min/max: + Y min/max: + + + Z min/max: + Z mín/máx: + + + X2 min/max: + X 2 min/max: + + + Z2 min/max: + Z2 min/max: + + + Coordinate system: + Coordinate system: + + + Right-handed + Right-handed + + + Left-handed + Left-handed + + + Angle 1: + Ángulo 1: + + + Angle 2: + Ángulo 2: + + + From three points + De tres puntos + + + Major radius: + Radio mayor: + + + Minor radius: + Radio menor: + + + End point + Punto final + + + Start point + Punto de inicio + + + + &Create + &Crear + + + Alt+C + Alt+C + + + Cl&ose + &Cerrar + + + Alt+O + ALT+O + + + Create %1 + Crear %1 + + + No active document + Ningún documento activo + + + + Pitch: + Tono: + + + Helix + Hélice + + + 3D View + Vista 3D + + + + PartGui::DlgRevolution + + + Revolve + Girar + + + Y: + Y: + + + X: + X: + + + Angle: + Ángulo: + + + Z: + Z: + + + Axis: + Eje: + + + Shape + Forma + + + Select line in 3D view + Seleccione línea en vista 3D + + + + Select a shape for revolution, first. + Primero seleccione una forma de revolución. + + + + PartGui::DlgSettings3DViewPart + + + View accuracy / Performance + Vista Precisión / Rendimiento + + + View smoothing + View smoothing + + + Using high-quality normals + Utilizar normales de alta calidad + + + This will slow down render speed but will lead to nicer results + Esto ralentizará la velocidad de render pero proporcionará mejores resultados + + + Defines the appearance of surfaces + Define la apariencia de las superficies + + + Shape view + Vista forma + + + Tessellation + Teselado + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Sombreado plano/Sombreado Phong</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Con sombreado plano las normales de la superficie no están definidas por vértice lo que conlleva a una apariencia no real para las superficies curvas mientras que utilizando el sombreado Phong se consigue una apariencia más suavizada. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Si esta opción no está activada se utilizará el sombreado Phon y si está activadase utilizará el sombreado plano.</p></body></html> + + + Do not define normal per vertex + No definir la normal por vértice + + + Defines the deviation of tessellation to the actual surface + Define la desviación del teselado de la superfice actual + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Teselado</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defin e la desviación máxima del teselado de la malla de la superficie. El menor valor es el renderizado más lento en velocidad y el mejor en apariencia.</span></p></body></html> + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definiendo las normales por vértice también se llama <span style=" font-style:italic;">Sombreado Phong</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">mientras definiendo las normales por cara se llama </span>Sombreado plano<span style=" font-style:normal;">.</span></p></body></html> + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Normales de alta calidad</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Esto ralentizará la velocidad del render pero permitirá mejores resultados.</p></body></html> + + + Maximum deviation depending on the model bounding box + Desviación máxima según el modelo de cuadro delimitador + + + % + % + + + + Deviation + Desviación + + + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Seleccionando una desviación demasiado pequeña causa que la teselación tome un valor más grande, pudiendo congelar o ralentizar la GUI. + + + + PartGui::DlgSettingsGeneral + + + General + General + + + Export + Exportar + + + Millimeter + Milímetro + + + Meter + Metro + + + Inch + Pulgada + + + Units for export of STEP/IGES + Unidades para exportar a STEP/IGES + + + Model settings + Model settings + + + Automatically refine model after boolean operation + Automatically refine model after boolean operation + + + Automatically check model after boolean operation + Automatically check model after boolean operation + + + + PartGui::FaceColors + + + Face colors + Colores de cara + + + Do you really want to cancel? + ¿Realmente desea cancelar? + + + + PartGui::Location + + + Location + Ubicación + + + Position + Posición + + + 3D View + Vista 3D + + + + PartGui::LoftWidget + + + Vertex/Wire + Vertex/Wire + + + Loft + Loft + + + Too few elements + Demasiados pocos elementos + + + At least two vertices, edges or wires are required. + Se requieren al menos dos vértices, aristas o lineas. + + + At least two vertices or wires are required. + At least two vertices or wires are required. + + + + PartGui::Mirroring + + + Mirroring + Duplicar + + + Shapes + Formas + + + Mirror plane: + Espejo plano: + + + XY plane + Plano XY + + + XZ plane + Plano XZ + + + YZ plane + Plano YZ + + + Base point: + Punto base: + + + x + x + + + y + y + + + z + z + + + + Select a shape for mirroring, first. + Primero seleccione una forma de creación de reflejo. + + + No such document '%1'. + '%1' No es un documento. + + + + PartGui::ShapeBuilderWidget + + + Wrong selection + Selección incorrecta + + + Select two vertices + Seleccione dos vértices + + + Select three or more edges + Seleccione tres o más bordes + + + Select one or more edges + Seleccione uno o más aristas + + + Select two or more faces + Seleccione dos o más caras + + + Select only one part object + Select only one part object + + + Select two vertices to create an edge + Seleccionar dos vértices para crear un borde + + + Select a closed set of edges + Seleccione un conjunto cerrado de bordes + + + Select adjacent faces + Seleccione las caras adyacentes + + + All shape types can be selected + Se pueden seleccionar todos los tipos de forma + + + + PartGui::SweepWidget + + + Vertex/Wire + Vertex/Wire + + + Sweep + Sweep + + + Sweep path + Sweep path + + + Select an edge or wire you want to sweep along. + Select an edge or wire you want to sweep along. + + + Too few elements + Demasiados pocos elementos + + + At least one edge or wire is required. + Se requiere al menos una arista o linea es requerida. + + + + PartGui::TaskDialogEditDynamic + + Hint + Sugerencia + + + Select Control. + Seleccionar Control. + + + Control + Control + + + Dynamic + Dinámica + + + Align + Alinear + + + Value + Valor + + + Special + Especial + + + Command + Comando + + + Stretch + Stretch + + + Move + Mover + + + Rotate + Girar + + + Offset + Equidistancia + + + Orient + Orient + + + Match + Match + + + Surround + Surround + + + dummy + ficticio + + + X Axis + Eje X + + + Y Axis + Eje Y + + + Z Axis + Eje Z + + + Increment + Increment + + + .125 + .125 + + + .500 + .500 + + + 1.000 + 1.000 + + + 5.000 + 5.000 + + + 10.000 + 10.000 + + + Drag arrows to stretch box by increment + Drag arrows to stretch box by increment + + + Drag arrows to move box by increment + Drag arrows to move box by increment + + + Not implemented yet + Aún no implementado + + + Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment + + + Select dragger for stretch by align + Select dragger for stretch by align + + + Select dragger for move by align + Select dragger for move by align + + + Select dragger for stretch by value + Elegir el punto de arrastre para establecer el valor + + + Select dragger for move by value + Select dragger for move by value + + + 1.0 + 1.0 + + + Enter Value + Introduzca el valor + + + Select box to match + Select box to match + + + Select a point + Elegir un punto + + + 0.0 + 0.0 + + + Select dragger to align + Elegir el punto de arrastre para alinear + + + Select dragger to modify + Elegir el punto de arrastre para modificar + + + + PartGui::TaskFaceColors + + + Set color per face + Set color per face + + + Click on the faces in the 3d view to select them. + Haga clic en las caras en la vista 3D para seleccionarlos. + + + Faces: + Caras: + + + Set to default + Establecer predet. + + + + PartGui::TaskLoft + + + Loft + Loft + + + Vertex/Wire + Vertex/Wire + + + Move right + Mover a la derecha + + + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Mueva el elemento seleccionado un nivel hacia abajo.</b><p>Esto también cambiará el nivel del elemento padre.</p> + + + Move left + Mover a la izquierda + + + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Mueva el elemento seleccionado un nivel hacia arriba.</b><p>Esto también cambiará el nivel del elemento padre.</p> + + + Move up + Mover hacia arriba + + + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Mueva el elemento seleccionado hacia arriba.</b><p>El elemento se moverá dentro del nivel de jerarquía.</p> + + + Move down + Mover hacia abajo + + + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Mueva el elemento seleccionado hacia abajo.</b><p>El elemento se moverá dentro del nivel de jerarquía.</p> + + + Create solid + Crear sólido + + + Ruled surface + Ruled surface + + + + PartGui::TaskShapeBuilder + + + Create shape + Crear forma + + + Edge from vertices + Borde desde vértices + + + Face from edges + Face from edges + + + Planar + Planar + + + Shell from faces + Shell from faces + + + Solid from shell + Solid from shell + + + Create + Crear + + + All faces + Todas las caras + + + + PartGui::TaskSweep + + + Sweep + Sweep + + + Create solid + Crear sólido + + + Frenet + Frenet + + + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. + + + + QObject + + + Wrong selection + Selección incorrecta + + + Select two shapes please. + Seleccione dos formas por favor. + + + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + Todos los archivos de CAD (*.stp *.step *.igs *.iges *.brp *.brep) + + + STEP (*.stp *.step) + STEP (*.stp *.step) + + + IGES (*.igs *.iges) + IGES (*.igs *.iges) + + + BREP (*.brp *.brep) + BREP (*.brp *.brep) + + + All Files (*.*) + Todos los archivos (*.*) + + + + Sewing Tolerance + Tolerancia del modo coser + + + Enter tolerance for sewing shape: + Introduzca la tolerancia para forma cosida: + + + + Edit mirror plane + Editar plano de simetría + + + Edit chamfer edges + Edit chamfer edges + + + Transform + Transformar + + + + Part design + Diseño de piezas + + + + Select two shapes or more, please. + Seleccione dos o más formas, por favor. + + + You have to select either two edges or two wires. + Tiene que seleccionar dos aristas o dos alambres. + + + + Edit fillet edges + Editar aristas redondeadas + + + + Set colors... + Ajustar colores... + + + + Workbench + + + &Part + &Pieza + + + &Simple + &Simple + + + &Parametric + &Paramétrico + + + Part tools + Herramientas de pieza + + + Solids + Sólidos + + + Boolean + Booleano + + + diff --git a/src/Mod/Part/Gui/Resources/translations/Part_es.ts b/src/Mod/Part/Gui/Resources/translations/Part_es.ts deleted file mode 100644 index 533b69224..000000000 --- a/src/Mod/Part/Gui/Resources/translations/Part_es.ts +++ /dev/null @@ -1,2521 +0,0 @@ - - - - - BlockDefinition - - - Block definition - Bloque de definición - - - - First limit - Primer límite - - - - - Type: - Tipo: - - - - - mm - mm - - - - - Length: - Longitud: - - - - - Dimension - Cota - - - - - Up to next - Cerca del siguiente - - - - - Up to last - Cerca del último - - - - - Up to plane - Cerca del plano - - - - - Up to face - Cerca de la cara - - - - - Limit: - Límite: - - - - - - - No selection - Ninguna selección - - - - Profile - Perfil - - - - Selection: - Selección: - - - - Reverse - Invertir - - - - Both sides - Ambos lados - - - - Second limit - Segundo límite - - - - Direction - Dirección - - - - Perpendicular to sketch - Perpendicular para esbozar - - - - Reference - Referencia - - - - Apply - Aplicar - - - - Cancel - Cancelar - - - - OK - Aceptar - - - - CmdPartBoolean - - - Part - Pieza - - - - Boolean... - Booleano... - - - - Run a boolean operation with two shapes selected - Ejecuta una operación booleana con dos formas seleccionadas - - - - CmdPartBox - - - Part - Pieza - - - - Box - Caja - - - - Create a box solid - Create a box solid - - - - CmdPartBox2 - - - Part - Pieza - - - - Box fix 1 - Fijar prisma 1 - - - - Create a box solid without dialog - Create a box solid without dialog - - - - CmdPartBox3 - - - Part - Pieza - - - - Box fix 2 - Fijar prisma 2 - - - - Create a box solid without dialog - Create a box solid without dialog - - - - CmdPartBuilder - - - Part - Pieza - - - - Shape builder... - Generador de forma... - - - - Advanced utility to create shapes - Utilidad avanzada para crear formas - - - - CmdPartChamfer - - - Part - Pieza - - - - Chamfer... - - - - - Chamfer the selected edges of a shape - - - - - CmdPartCommon - - - Part - Pieza - - - - Intersection - Intersección - - - - Make an intersection of two shapes - Hacer una intersección de dos formas - - - - CmdPartCone - - - Part - Pieza - - - - Cone - Cono - - - - Create a cone solid - Crear un cono sólido - - - - CmdPartCrossSections - - - Part - Pieza - - - - Cross-sections... - Cortes transversales... - - - - Cross-sections - Cortes transversales - - - - CmdPartCut - - - Part - Pieza - - - - Cut - Cortar - - - - Make a cut of two shapes - Hacer un corte de dos formas - - - - CmdPartCylinder - - - Part - Pieza - - - - Create a Cylinder - Crear un cilindro - - - - Cylinder - Cilindro - - - - CmdPartExport - - - Part - Pieza - - - - Export CAD... - Exportar CAD... - - - - Exports to a CAD file - Exporta a un archivo CAD - - - - CmdPartExtrude - - - Part - Pieza - - - - Extrude... - Estruir... - - - - Extrude a selected sketch - Estruye el croquis seleccionado - - - - CmdPartFillet - - - Part - Pieza - - - - Fillet... - Redondeo... - - - - Fillet the selected edges of a shape - Redondea los bordes seleccionados de una forma - - - - CmdPartFuse - - - Part - Pieza - - - - Union - Unión - - - - Make a union of several shapes - Hacer una unión de varias formas - - - - CmdPartImport - - - Part - Pieza - - - - Imports a CAD file - Importa un archivo de CAD - - - - Import CAD... - Importar CAD... - - - - CmdPartImportCurveNet - - - Part - Pieza - - - - Import a curve network - Importa una red de curvas - - - - Import curve network... - Importa una red de curvas... - - - - CmdPartLoft - - - Part - Pieza - - - - Loft... - Loft... - - - - Utility to loft - - - - Advanced utility to lofts - Advanced utility to lofts - - - - CmdPartMakeSolid - - - Part - Pieza - - - - Convert to solid - Convertir a sólido - - - - Create solid from a shell or compound - Crear sólidos desde un shell o un compuesto - - - - CmdPartMirror - - - Part - Pieza - - - - Mirroring... - Duplicar... - - - - Mirroring a selected shape - Duplicación de una forma seleccionada - - - - CmdPartPickCurveNet - - - Part - Pieza - - - - Pick curve network - Designe una red de curvas - - - - Pick a curve network - Designa una red de curvas - - - - CmdPartPrimitives - - - Part - Pieza - - - - Create primitives... - Crear primitivas... - - - - Creation of parametrized geometric primitives - Creación de primitivas geométricas paramétricas - - - - CmdPartRefineShape - - - Part - Pieza - - - - Refine shape - - - - - Refine the copy of a shape - - - - - CmdPartReverseShape - - - Part - Pieza - - - - Reverse shapes - Invertir formas - - - - Reverse orientation of shapes - Invertir la orientación de las formas - - - - CmdPartRevolve - - - Part - Pieza - - - - Revolve... - Girar... - - - - Revolve a selected shape - Girar una forma seleccionada - - - - CmdPartRuledSurface - - - Part - Pieza - - - - Create ruled surface - Crear superficie reglada - - - - Create a ruled surface from two curves - Crear una superficie reglada a partir de dos curvas - - - - CmdPartSection - - - Make a section of two shapes - Hacer una sección de dos formas - - - - Part - Pieza - - - - Section - Sección - - - - CmdPartShapeFromMesh - - - Part - Pieza - - - - Create shape from mesh... - Crear forma de malla... - - - - Create shape from selected mesh object - Crear la forma del objeto de malla seleccionada - - - - CmdPartSimpleCopy - - - Part - Pieza - - - - Create simple copy - Crear copia simple - - - - Create a simple non-parametric copy - Create a simple non-parametric copy - - - - CmdPartSimpleCylinder - - - Part - Pieza - - - - Create Cylinder... - Crear cilindro... - - - - Create a Cylinder - Crear un cilindro - - - - CmdPartSphere - - - Create a sphere solid - Crear una esfera sólida - - - - Part - Pieza - - - - Sphere - Esfera - - - - CmdPartSweep - - - Part - Pieza - - - - Sweep... - - - - - Utility to sweep - - - - - CmdPartTorus - - - Create a torus solid - Crear un toroide sólido - - - - Part - Pieza - - - - Torus - Toro - - - - DlgExtrusion - - Select a shape for extrusion, first. - Seleccione una forma para la extrusión, en primer lugar. - - - The document '%1' doesn't exist. - The document '%1' doesn't exist. - - - - DlgRevolution - - Select a shape for revolution, first. - Primero seleccione una forma de revolución. - - - - DlgSettings3DViewPart - - Deviation - Desviación - - - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Seleccionando una desviación demasiado pequeña causa que la teselación tome un valor más grande, pudiendo congelar o ralentizar la GUI. - - - - PartGui::CrossSections - - - Cross sections - Cortes transversales - - - - Guiding plane - Plano de rector - - - - XY - XY - - - - XZ - XZ - - - - YZ - YZ - - - - Position: - Posición: - - - - Sections - Secciones - - - - On both sides - A ambos lados - - - - Count - Count - - - - Distance: - Distancia: - - - - PartGui::DlgBooleanOperation - - - Boolean Operation - Operación booleana - - - - Second shape - Segunda forma - - - - First shape - Primera forma - - - - Boolean operation - Operación booleana - - - - Section - Sección - - - - Difference - Diferencia - - - - Union - Unión - - - - Intersection - Intersección - - - - Cannot perform a boolean operation with the same shape - No es posible realizar una operación booleana con la misma forma - - - - - Solids - Sólidos - - - - - Shells - Shells - - - - - Compounds - Compuestos - - - - - Faces - Caras - - - - Swap selection - Intercambiar selección - - - - Select a shape on the left side, first - Seleccione primero una forma en el lado izquierdo, - - - - Select a shape on the right side, first - Seleccione primero una forma en el lado derecho, - - - - No active document available - Ningún documento activo disponible - - - - One of the selected objects doesn't exist anymore - Uno de los objetos seleccionados ya no existe - - - - Performing union on non-solids is not possible - No es posible realizar la Unión en no sólidos - - - - Performing intersection on non-solids is not possible - No es posible realizar la intersección en no sólidos - - - - Performing difference on non-solids is not possible - No es posible realizar la diferencia en no sólidos - - - - PartGui::DlgChamferEdges - - - Chamfer Edges - - - - - PartGui::DlgExtrusion - - - Extrude - Extrusión - - - - Direction - Dirección - - - - Along normal - A lo largo de la normal - - - - Length: - Longitud: - - - - 3D view - Vista 3D - - - - Note:This option works for planes only - Nota: Esta opción funciona solo para planos - - - - Create solid - Crear sólido - - - - Taper outward angle - - - - - Shape - Forma - - - - (Vacio) - - - - X: - X: - - - - Z: - Z: - - - - Y: - Y: - - - - Select a shape for extrusion, first. - Seleccione una forma para la extrusión, en primer lugar. - - - - The document '%1' doesn't exist. - The document '%1' doesn't exist. - - - - PartGui::DlgFilletEdges - - - Fillet Edges - Redondear bordes - - - - Fillet Parameter - Parámetro de redondeo - - - - Radius: - Radio: - - - - Fillet type: - Tipo de redondeo: - - - - Constant Radius - Radio constante - - - - Variable Radius - Radio variable - - - - Shape - Forma - - - - Selected shape: - Figura seleccionada: - - - - No selection - Ninguna selección - - - - Edges to fillet - Bordes a redondear - - - - - Start radius - Radio inicial - - - - End radius - Radio final - - - - Radius - Radio - - - - No edge selected - Ningún borde seleccionado - - - - No edge entity is checked to fillet. -Please check one or more edge entities first. - Ninguna entidad de borde está marcada para redondear. -Por favor seleccione una o más entidades de borde primero. - - - - All - Todo - - - - None - Nada - - - - - Edge%1 - Lado %1 - - - - No shape selected - No hay forma seleccionada - - - - No valid shape is selected. -Please select a valid shape in the drop-down box first. - No se ha seleccionado ninguna forma válida. Por favor, primero seleccione una forma válida en el cuadro desplegable. - - - - PartGui::DlgPartBox - - - Box definition - Definición de prisma - - - - X: - X: - - - - Z: - Z: - - - - Y: - Y: - - - - Cancel - Cancelar - - - - OK - Aceptar - - - - Size: - Tamaño: - - - - Height: - Altura: - - - - Width: - Ancho: - - - - Length: - Longitud: - - - - Position: - Posición: - - - - Direction: - Dirección: - - - - PartGui::DlgPartCylinder - - - Cylinder definition - Definición de cilindro - - - - Parameter - Parámetro - - - - Height: - Altura: - - - - Radius: - Radio: - - - - Position: - Posición: - - - - Direction: - Dirección: - - - - X: - X: - - - - Z: - Z: - - - - Y: - Y: - - - - OK - Aceptar - - - - Cancel - Cancelar - - - - PartGui::DlgPartImportIges - - - IGES input file - Archivo de entrada IGES - - - - ... - ... - - - - Cancel - Cancelar - - - - OK - Aceptar - - - - File Name - Nombre de archivo - - - - (Vacio) - - - - PartGui::DlgPartImportIgesImp - - - IGES (*.igs *.iges);;All Files (*.*) - IGES (*.igs *.iges);;Todos los archivos (*.*) - - - - PartGui::DlgPartImportStep - - - ... - ... - - - - Cancel - Cancelar - - - - OK - Aceptar - - - - Step input file - Archivo de entrada Step - - - - File Name - Nombre de archivo - - - - (Vacio) - - - - PartGui::DlgPartImportStepImp - - - STEP (*.stp *.step);;All Files (*.*) - STEP (*.stp *.step);;Todos los archivos (*.*) - - - - PartGui::DlgPrimitives - - - Geometric Primitives - Primitivas geométricas - - - Primitive - primitiva - - - X min - X mín - - - x max - x máx - - - Y min - Y mín - - - Y max - Y máx - - - Z min - Z mín - - - Z max - Z máx - - - X2 min - X2 mín - - - X2 max - X2 max - - - Z2 min - Z2 min - - - Z2 max - Z2 max - - - Angle - 0 for cyl - Angle - 0 for cyl - - - Angle0 - Angle0 - - - Angle1 - Angle1 - - - X Axis Value: - Valor del eje X: - - - Y Axis Value: - Valor del eje Y: - - - Z Axis Value: - Valor del eje Z: - - - - Wedge - Wedge - - - - Circle - Circunferencia - - - Vertex - Vertex - - - Position - Posición - - - - - - Z: - Z: - - - - - - X: - X: - - - Direction: - Dirección: - - - - - - Y: - Y: - - - - Plane - Plano - - - - Box - Caja - - - - Cylinder - Cilindro - - - - Cone - Cono - - - - Sphere - Esfera - - - - Ellipsoid - Elipsoide - - - - Torus - Toro - - - - Ellipse - - - - - Point - - - - - Line - - - - - Parameter - Parámetro - - - - - Width: - Ancho: - - - - - Length: - Longitud: - - - - - - - Height: - Altura: - - - - - - Angle: - Ángulo: - - - - - - - Radius: - Radio: - - - - - - Radius 1: - Radio 1: - - - - - - Radius 2: - Radio 2: - - - - - - U parametric: - U paramétrica: - - - - - - V parametric: - V paramétrica: - - - - X min/max: - - - - - Y min/max: - - - - - Z min/max: - - - - - X2 min/max: - - - - - Z2 min/max: - - - - - Coordinate system: - - - - - Right-handed - - - - - Left-handed - - - - - - Angle 1: - - - - - - Angle 2: - - - - - From three points - - - - - Major radius: - - - - - Minor radius: - - - - - End point - - - - - Start point - - - - - &Create - &Crear - - - Alt+C - Alt+C - - - Cl&ose - &Cerrar - - - Alt+O - Alt+O - - - - - - Create %1 - Crear %1 - - - - No active document - Ningún documento activo - - - - Pitch: - Tono: - - - - Helix - Hélice - - - 3D View - Vista 3D - - - - PartGui::DlgRevolution - - - Revolve - Girar - - - - Y: - Y: - - - - X: - X: - - - - Angle: - Ángulo: - - - - Z: - Z: - - - - Axis: - Eje: - - - - Shape - Forma - - - - Select line in 3D view - - - - - Select a shape for revolution, first. - Primero seleccione una forma de revolución. - - - - PartGui::DlgSettings3DViewPart - - - View accuracy / Performance - Vista Precisión / Rendimiento - - - - View smoothing - View smoothing - - - - Using high-quality normals - Utilizar normales de alta calidad - - - - This will slow down render speed but will lead to nicer results - Esto ralentizará la velocidad de render pero proporcionará mejores resultados - - - - Defines the appearance of surfaces - Define la apariencia de las superficies - - - - Shape view - Vista forma - - - - Tessellation - Teselado - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Sombreado plano/Sombreado Phong</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Con sombreado plano las normales de la superficie no están definidas por vértice lo que conlleva a una apariencia no real para las superficies curvas mientras que utilizando el sombreado Phong se consigue una apariencia más suavizada. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Si esta opción no está activada se utilizará el sombreado Phon y si está activadase utilizará el sombreado plano.</p></body></html> - - - - Do not define normal per vertex - No definir la normal por vértice - - - - Defines the deviation of tessellation to the actual surface - Define la desviación del teselado de la superfice actual - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Teselado</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defin e la desviación máxima del teselado de la malla de la superficie. El menor valor es el renderizado más lento en velocidad y el mejor en apariencia.</span></p></body></html> - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">La definición de las normales por vértice también se llama <span style=" font-style:italic;">Sombreado Phong</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">mientras que la definición de las normales por cara también se llama </span>Sombreado plano<span style=" font-style:normal;">.</span></p></body></html> - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Normales de alta calidad</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Esto ralentizará la velocidad del render pero permitirá mejores resultados.</p></body></html> - - - - Maximum deviation depending on the model bounding box - Desviación máxima según el modelo de cuadro delimitador - - - - % - % - - - - Deviation - Desviación - - - - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Seleccionando una desviación demasiado pequeña causa que la teselación tome un valor más grande, pudiendo congelar o ralentizar la GUI. - - - - PartGui::DlgSettingsGeneral - - - General - General - - - - Export - Exportar - - - - Millimeter - Milímetro - - - - Meter - Metro - - - - Inch - Pulgada - - - - Units for export of STEP/IGES - Unidades para exportar a STEP/IGES - - - - Model settings - - - - - Automatically refine model after boolean operation - - - - - Automatically check model after boolean operation - - - - - PartGui::FaceColors - - - Face colors - - - - - Do you really want to cancel? - - - - - PartGui::Location - - - Location - - - - - Position - Posición - - - - 3D View - Vista 3D - - - - PartGui::LoftWidget - - - - Vertex/Wire - Vertex/Wire - - - - - Loft - Loft - - - - Too few elements - Too few elements - - - - At least two vertices, edges or wires are required. - - - - At least two vertices or wires are required. - At least two vertices or wires are required. - - - - PartGui::Mirroring - - - Mirroring - Duplicar - - - - Shapes - Formas - - - - Mirror plane: - Espejo plano: - - - - XY plane - Plano XY - - - - XZ plane - Plano XZ - - - - YZ plane - Plano YZ - - - - Base point: - Base point: - - - - x - x - - - - y - y - - - - z - z - - - - Select a shape for mirroring, first. - Primero seleccione una forma de creación de reflejo. - - - - No such document '%1'. - Ningún documento '%1'. - - - - PartGui::ShapeBuilderWidget - - - - - - - Wrong selection - Selección incorrecta - - - - - Select two vertices - Select two vertices - - - Select three or more edges - Select three or more edges - - - - Select one or more edges - - - - - Select two or more faces - Seleccione dos o más caras - - - - Select only one part object - Select only one part object - - - - Select two vertices to create an edge - Select two vertices to create an edge - - - - Select a closed set of edges - Seleccione un conjunto cerrado de bordes - - - - Select adjacent faces - Seleccione las caras adyacentes - - - - All shape types can be selected - Se pueden seleccionar todos los tipos de forma - - - - PartGui::SweepWidget - - - - Vertex/Wire - Vertex/Wire - - - - - Sweep - - - - - Sweep path - - - - - Select an edge or wire you want to sweep along. - - - - - Too few elements - Too few elements - - - - At least one edge or wire is required. - - - - - PartGui::TaskDialogEditDynamic - - Hint - Hint - - - Select Control. - Select Control. - - - Control - Control - - - Dynamic - Dynamic - - - Align - Align - - - Value - Valor - - - Special - Special - - - Command - Comando - - - Stretch - Stretch - - - Move - Mover - - - Rotate - Girar - - - Offset - Equidistancia - - - Orient - Orient - - - Match - Match - - - Surround - Surround - - - dummy - dummy - - - X Axis - X Axis - - - Y Axis - Y Axis - - - Z Axis - Z Axis - - - Increment - Increment - - - .125 - .125 - - - .500 - .500 - - - 1.000 - 1.000 - - - 5.000 - 5.000 - - - 10.000 - 10.000 - - - Drag arrows to stretch box by increment - Drag arrows to stretch box by increment - - - Drag arrows to move box by increment - Drag arrows to move box by increment - - - Not implemented yet - Not implemented yet - - - Drag arrows to offset checked axes by increment - Drag arrows to offset checked axes by increment - - - Select dragger for stretch by align - Select dragger for stretch by align - - - Select dragger for move by align - Select dragger for move by align - - - Select dragger for stretch by value - Select dragger for stretch by value - - - Select dragger for move by value - Select dragger for move by value - - - 1.0 - 1.0 - - - Enter Value - Enter Value - - - Select box to match - Select box to match - - - Select a point - Select a point - - - 0.0 - 0.0 - - - Select dragger to align - Select dragger to align - - - Select dragger to modify - Select dragger to modify - - - - PartGui::TaskFaceColors - - - Set color per face - Set color per face - - - - Click on the faces in the 3d view to select them. - Haga clic en las caras en la vista 3D para seleccionarlos. - - - - Faces: - Caras: - - - - Set to default - Set to default - - - - PartGui::TaskLoft - - - Loft - Loft - - - Vertex/Wire - Vertex/Wire - - - Move right - Mover a la derecha - - - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Mueva el elemento seleccionado un nivel hacia abajo.</b><p>Esto también cambiará el nivel del elemento padre.</p> - - - Move left - Mover a la izquierda - - - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Mueva el elemento seleccionado un nivel hacia arriba.</b><p>Esto también cambiará el nivel del elemento padre.</p> - - - Move up - Mover hacia arriba - - - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Mueva el elemento seleccionado hacia arriba.</b><p>El elemento se moverá dentro del nivel de jerarquía.</p> - - - Move down - Mover hacia abajo - - - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Mueva el elemento seleccionado hacia abajo.</b><p>El elemento se moverá dentro del nivel de jerarquía.</p> - - - - Create solid - Crear sólido - - - - Ruled surface - Ruled surface - - - - PartGui::TaskShapeBuilder - - - - Create shape - Crear forma - - - - Edge from vertices - Edge from vertices - - - - Face from edges - Face from edges - - - - Planar - Planar - - - - Shell from faces - Shell from faces - - - - Solid from shell - Solid from shell - - - - Create - Crear - - - - All faces - Todas las caras - - - - PartGui::TaskSweep - - - Sweep - - - - - Create solid - Crear sólido - - - - Frenet - - - - - Select one or more profiles and select an edge or wire -in the 3D view for the sweep path. - - - - - QObject - - - - - - - Wrong selection - Selección incorrecta - - - - - Select two shapes please. - Seleccione dos formas por favor. - - - - - - All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) - Todos los archivos de CAD (*.stp *.step *.igs *.iges *.brp *.brep) - - - - - - STEP (*.stp *.step) - STEP (*.stp *.step) - - - - - - IGES (*.igs *.iges) - IGES (*.igs *.iges) - - - - - - BREP (*.brp *.brep) - BREP (*.brp *.brep) - - - - - - All Files (*.*) - Todos los archivos (*.*) - - - - Sewing Tolerance - Tolerancia del modo coser - - - - Enter tolerance for sewing shape: - Introduzca la tolerancia para forma cosida: - - - - Edit mirror plane - Editar plano de simetría - - - - Edit chamfer edges - - - - Transform - Transformar - - - - - Part design - Diseño de piezas - - - - - Select two shapes or more, please. - Seleccione dos o más formas, por favor. - - - - You have to select either two edges or two wires. - Tiene que seleccionar dos aristas o dos alambres. - - - - Edit fillet edges - Editar aristas redondeadas - - - - Set colors... - Ajustar colores... - - - - Workbench - - - &Part - &Pieza - - - - &Simple - &Simple - - - - &Parametric - &Paramétrico - - - - Part tools - Herramientas de pieza - - - - Solids - Sólidos - - - - Boolean - Booleano - - - diff --git a/src/Mod/Part/Gui/Resources/translations/Part_fi.qm b/src/Mod/Part/Gui/Resources/translations/Part_fi.qm index 1e4b64466..76666a3c9 100644 Binary files a/src/Mod/Part/Gui/Resources/translations/Part_fi.qm and b/src/Mod/Part/Gui/Resources/translations/Part_fi.qm differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_fi.ts b/src/Mod/Part/Gui/Resources/translations/Part_fi.ts index f1853d536..d46ad7efa 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_fi.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_fi.ts @@ -1,2522 +1,2128 @@ - - + + BlockDefinition - - Block definition - Lohkon määrittely + + Block definition + Lohkon määrittely - - First limit - Ensimmäinen raja + First limit + Ensimmäinen raja - - - Type: - Tyyppi: + Type: + Tyyppi: - - - mm - mm + mm + mm - - - Length: - Pituus: + Length: + Pituus: - - - Dimension - Mitta + Dimension + Mitta - - - Up to next - Ylös seuraavaan + Up to next + Ylös seuraavaan - - - Up to last - Ylös viimeiseen + Up to last + Ylös viimeiseen - - - Up to plane - Ylös tasoon + Up to plane + Ylös tasoon - - - Up to face - Ylös pintaan + Up to face + Ylös pintaan - - - Limit: - Raja: + Limit: + Raja: - - - - - No selection - Ei valintaa + No selection + Ei valintaa - - Profile - Profiili + Profile + Profiili - - Selection: - Valinta: + Selection: + Valinta: - - Reverse - Käänteinen + Reverse + Käänteinen - - Both sides - Molemmat puolet + Both sides + Molemmat puolet - - Second limit - Toinen raja + Second limit + Toinen raja - - Direction - Suunta + Direction + Suunta - - Perpendicular to sketch - Kohtisuorassa luonnokseen nähden + Perpendicular to sketch + Kohtisuorassa luonnokseen nähden - - Reference - Viittaus + Reference + Viittaus - - Apply - Käytä + Apply + Käytä - - Cancel - Peruuta + Cancel + Peruuta - - OK - OK + OK + OK - - + + CmdPartBoolean - - Part - osa + + Part + osa - - Boolean... - Boolean... + Boolean... + Boolean... - - Run a boolean operation with two shapes selected - Suorita boolean toiminto kahdella valitulla muodolla + Run a boolean operation with two shapes selected + Suorita boolean toiminto kahdella valitulla muodolla - - + + CmdPartBox - - Part - osa + + Part + osa - - Box - Laatikko + Box + Laatikko - - Create a box solid - Create a box solid + Create a box solid + Luo kiinteä laatikko - - + + CmdPartBox2 - - Part - osa + + Part + osa - - Box fix 1 - Laatikon 1 kiinnitys + Box fix 1 + Laatikon 1 kiinnitys - - Create a box solid without dialog - Create a box solid without dialog + Create a box solid without dialog + Create a box solid without dialog - - + + CmdPartBox3 - - Part - osa + Part + osa - - Box fix 2 - Laatikon 2 kiinnitys + Box fix 2 + Laatikon 2 kiinnitys - - Create a box solid without dialog - Create a box solid without dialog + Create a box solid without dialog + Create a box solid without dialog - - + + CmdPartBuilder - - Part - osa + Part + osa - - Shape builder... - Shape builder... + Shape builder... + Rakenna muoto... - - Advanced utility to create shapes - Advanced utility to create shapes + Advanced utility to create shapes + Lisäasetukset muotojen luomisen apuohjelmalle - - + + CmdPartChamfer - - Part - osa + Part + osa - - Chamfer... - + Chamfer... + Viistä... - - Chamfer the selected edges of a shape - + Chamfer the selected edges of a shape + Viiste valittuihin muotoihin reunoista - - + + CmdPartCommon - - Part - osa + Part + osa - - Intersection - Risteys + Intersection + Risteys - - Make an intersection of two shapes - Make an intersection of two shapes + Make an intersection of two shapes + Tee kahden muodon leikkauspisteet - - + + CmdPartCone - - Part - osa + + Part + osa - - Cone - Kartio + Cone + Kartio - - Create a cone solid - Create a cone solid + Create a cone solid + Luo kiinteä kartio - - + + CmdPartCrossSections - - Part - osa + + Part + osa - - Cross-sections... - Poikkileikkaukset... + Cross-sections... + Poikkileikkaukset... - - Cross-sections - Poikkileikkaukset + Cross-sections + Poikkileikkaukset - - + + CmdPartCut - - Part - osa + Part + osa - - Cut - Leikkaa + Cut + Leikkaa - - Make a cut of two shapes - Make a cut of two shapes + Make a cut of two shapes + Tee leikkaus kahdesta muodosta - - + + CmdPartCylinder - - Part - osa + + Part + osa - - Create a Cylinder - Luo Sylinteri + Create a Cylinder + Luo Sylinteri - - Cylinder - Sylinteri + Cylinder + Sylinteri - - + + CmdPartExport - - Part - osa + + Part + osa - - Export CAD... - Export CAD... + Export CAD... + Vie CAD... - - Exports to a CAD file - Exports to a CAD file + Exports to a CAD file + CAD-tiedoston vienti - - + + CmdPartExtrude - - Part - osa + Part + osa - - Extrude... - Pursota... + Extrude... + Pursota... - - Extrude a selected sketch - Pursota valittu luonnos + Extrude a selected sketch + Pursota valittu luonnos - - + + CmdPartFillet - - Part - osa + Part + osa - - Fillet... - Pyöristys... + Fillet... + Pyöristys... - - Fillet the selected edges of a shape - Pyöristä muodon valitut särmät + Fillet the selected edges of a shape + Pyöristä muodon valitut särmät - - + + CmdPartFuse - - Part - osa + Part + osa - - Union - Yhdiste + Union + Yhdiste - - Make a union of several shapes - Make a union of several shapes + Make a union of several shapes + Tee liitos useista muodoista - - + + CmdPartImport - - Part - osa + Part + osa - - Imports a CAD file - Tuo CAD tiedoston + Imports a CAD file + Tuo CAD tiedoston - - Import CAD... - Tuo CAD ... + Import CAD... + Tuo CAD ... - - + + CmdPartImportCurveNet - - Part - osa + Part + osa - - Import a curve network - Tuo käyrä-verkko + Import a curve network + Tuo käyrä-verkko - - Import curve network... - Tuo käyrä-verkko... + Import curve network... + Tuo käyrä-verkko... - - + + CmdPartLoft - - Part - osa + Part + osa - - Loft... - Loft... + Loft... + Heitä ilmaan... - - Utility to loft - + Utility to loft + Utility to loft - Advanced utility to lofts - Advanced utility to lofts + Advanced utility to lofts + Lisäasetukset ilmaan heiton apuohjelmalle - - + + CmdPartMakeSolid - - Part - osa + Part + osa - - Convert to solid - Muunnta kiinteäksi + Convert to solid + Muunnta kiinteäksi - - Create solid from a shell or compound - Luo kiinteä kuoresta tai yhdisteestä + Create solid from a shell or compound + Luo kiinteä kuoresta tai yhdisteestä - - + + CmdPartMirror - - Part - osa + Part + osa - - Mirroring... - Peilaus... + Mirroring... + Peilaus... - - Mirroring a selected shape - Valitun muodon peilaus + Mirroring a selected shape + Valitun muodon peilaus - - + + CmdPartPickCurveNet - - Part - osa + Part + osa - - Pick curve network - Valitse käyrä-verkko + Pick curve network + Valitse käyrä-verkko - - Pick a curve network - Valitse käyrä-verkko + Pick a curve network + Valitse käyrä-verkko - - + + CmdPartPrimitives - - Part - osa + Part + osa - - Create primitives... - Luo primitiivit... + Create primitives... + Luo primitiivit... - - Creation of parametrized geometric primitives - Parametrisoitujen geometristen primitiivien luonti + Creation of parametrized geometric primitives + Parametrisoitujen geometristen primitiivien luonti - - + + CmdPartRefineShape - - Part - osa + + Part + osa - - Refine shape - + Refine shape + Refine shape - - Refine the copy of a shape - + Refine the copy of a shape + Refine the copy of a shape - - + + CmdPartReverseShape - - Part - osa + + Part + osa - - Reverse shapes - Käänteiset muodot + Reverse shapes + Käänteiset muodot - - Reverse orientation of shapes - Käännä muotojen suunta + Reverse orientation of shapes + Käännä muotojen suunta - - + + CmdPartRevolve - - Part - osa + Part + osa - - Revolve... - Pyöräytä... + Revolve... + Pyöräytä... - - Revolve a selected shape - Valitun muodon pyöräytys + Revolve a selected shape + Valitun muodon pyöräytys - - + + CmdPartRuledSurface - - Part - osa + Part + osa - - Create ruled surface - Create ruled surface + Create ruled surface + Luo suljettu pinta - - Create a ruled surface from two curves - Create a ruled surface from two curves + Create a ruled surface from two curves + Luo suojettu pinta kahdesta käyrästä - - + + CmdPartSection - - Make a section of two shapes - Make a section of two shapes + Make a section of two shapes + Tee osa kahdesta muodosta - - Part - osa + Part + osa - - Section - Leikkaus + Section + Leikkaus - - + + CmdPartShapeFromMesh - - Part - osa + + Part + osa - - Create shape from mesh... - luo muoto verkosta... + Create shape from mesh... + luo muoto verkosta... - - Create shape from selected mesh object - luo muoto valituista verkko kohteista + Create shape from selected mesh object + luo muoto valituista verkko kohteista - - + + CmdPartSimpleCopy - - Part - osa + Part + osa - - Create simple copy - Create simple copy + Create simple copy + Luo yksinkertainen kopio - - Create a simple non-parametric copy - Create a simple non-parametric copy + Create a simple non-parametric copy + Luo yksinkertainen ei-parametrinen kopio - - + + CmdPartSimpleCylinder - - Part - osa + Part + osa - - Create Cylinder... - Luo sylinteri... + Create Cylinder... + Luo sylinteri... - - Create a Cylinder - Luo Sylinteri + Create a Cylinder + Luo Sylinteri - - + + CmdPartSphere - - Create a sphere solid - Create a sphere solid + + Create a sphere solid + Luo kiinteä pallo - - Part - osa + Part + osa - - Sphere - Pallo(kuori) + Sphere + Pallo(kuori) - - + + CmdPartSweep - - Part - osa + + Part + osa - - Sweep... - + Sweep... + Sweep... - - Utility to sweep - + Utility to sweep + Utility to sweep - - + + CmdPartTorus - - Create a torus solid - Create a torus solid + + Create a torus solid + Luo kiinteä rinkilä - - Part - osa + Part + osa - - Torus - Torus + Torus + Torus - - + + DlgExtrusion - Select a shape for extrusion, first. - Valitse pursotettava muoto, ensimmäinen. + Select a shape for extrusion, first. + Valitse pursotettava muoto, ensimmäinen. - The document '%1' doesn't exist. - The document '%1' doesn't exist. + The document '%1' doesn't exist. + The document '%1' doesn't exist. - - + + DlgRevolution - Select a shape for revolution, first. - Valitse pyöräytysmuoto. + Select a shape for revolution, first. + Valitse pyöräytysmuoto. - - + + DlgSettings3DViewPart - Deviation - Deviation + Deviation + Deviation - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - - + + PartGui::CrossSections - - Cross sections - Poikkileikkaukset + + Cross sections + Poikkileikkaukset - - Guiding plane - Ohjaus taso + Guiding plane + Ohjaus taso - - XY - XY + XY + XY - - XZ - XZ + XZ + XZ - - YZ - YZ + YZ + YZ - - Position: - Sijainti: + Position: + Sijainti: - - Sections - Leikkaukset + Sections + Leikkaukset - - On both sides - Molemmille puolille + On both sides + Molemmille puolille - - Count - Määrä + Count + Määrä - - Distance: - Etäisyys: + Distance: + Etäisyys: - - + + PartGui::DlgBooleanOperation - - Boolean Operation - Boolen operaatio + + Boolean Operation + Boolen operaatio - - Second shape - Toinen muoto + Second shape + Toinen muoto - - First shape - Ensimmäinen muoto + First shape + Ensimmäinen muoto - - Boolean operation - Boolen operaatio + Boolean operation + Boolen operaatio - - Section - Leikkaus + Section + Leikkaus - - Difference - Erotus + Difference + Erotus - - Union - Yhdiste + Union + Yhdiste - - Intersection - Risteys + Intersection + Risteys - - Cannot perform a boolean operation with the same shape - Ei voi suorittaa boolean toimintoa saman muodon kanssa + + Cannot perform a boolean operation with the same shape + Ei voi suorittaa boolean toimintoa saman muodon kanssa - - - Solids - Kiinteät + + Solids + Kiinteät - - - Shells - Kuoret + Shells + Kuoret - - - Compounds - Yhdisteet + Compounds + Yhdisteet - - - Faces - Pinnat + Faces + Pinnat - - Swap selection - Vaihda valinta + Swap selection + Vaihda valinta - - Select a shape on the left side, first - Valitse vasemmanpuolinen muoto + + Select a shape on the left side, first + Valitse vasemmanpuolinen muoto - - Select a shape on the right side, first - Valitse oikeanpuolinen muoto + Select a shape on the right side, first + Valitse oikeanpuolinen muoto - - No active document available - Ei aktiivista asiakirjaa saatavilla + No active document available + Ei aktiivista asiakirjaa saatavilla - - One of the selected objects doesn't exist anymore - Yhtä valittua kohdetta ei ole enää + One of the selected objects doesn't exist anymore + Yhtä valittua kohdetta ei ole enää - - Performing union on non-solids is not possible - virtuaalisten kappaleiden yhdistäminen ei ole mahdollista + Performing union on non-solids is not possible + virtuaalisten kappaleiden yhdistäminen ei ole mahdollista - - Performing intersection on non-solids is not possible - virtuaalisten kappaleiden risteys ei ole mahdollinen + Performing intersection on non-solids is not possible + virtuaalisten kappaleiden risteys ei ole mahdollinen - - Performing difference on non-solids is not possible - virtuaalisten kappaleiden erottaminen ei ole mahdollista + Performing difference on non-solids is not possible + virtuaalisten kappaleiden erottaminen ei ole mahdollista - - + + PartGui::DlgChamferEdges - - Chamfer Edges - + + Chamfer Edges + Viisteen reunat - - + + PartGui::DlgExtrusion - - Extrude - Pursota + + Extrude + Pursota - - Direction - Suunta + Direction + Suunta - - Along normal - Normaali pitkin + Along normal + Normaali pitkin - - Length: - Pituus: + Length: + Pituus: - - 3D view - 3D view + 3D view + 3D-näkymä - - Note:This option works for planes only - Note:This option works for planes only + Note:This option works for planes only + Huomautus: Tämä asetus toimii vain tasoilla - - Create solid - Create solid + Create solid + Luo kiinteä - - Taper outward angle - + Taper outward angle + Taper outward angle - - Shape - Muoto + Shape + Muoto - - + + - - X: - x: + X: + x: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - Select a shape for extrusion, first. - Valitse pursotettava muoto, ensimmäinen. + + Select a shape for extrusion, first. + Valitse pursotettava muoto, ensimmäinen. - - The document '%1' doesn't exist. - The document '%1' doesn't exist. + The document '%1' doesn't exist. + The document '%1' doesn't exist. - - + + PartGui::DlgFilletEdges - - Fillet Edges - Reunojen pyöristys + + Fillet Edges + Reunojen pyöristys - - Fillet Parameter - Pyäristys parametri + Fillet Parameter + Pyäristys parametri - - Radius: - Säde: + Radius: + Säde: - - Fillet type: - Pyöristys tyyppi: + Fillet type: + Pyöristys tyyppi: - - Constant Radius - Jatkuva Säde + Constant Radius + Jatkuva Säde - - Variable Radius - Muuttuva Säde + Variable Radius + Muuttuva Säde - - Shape - Muoto + Shape + Muoto - - Selected shape: - Valittu muoto: + Selected shape: + Valittu muoto: - - No selection - Ei valintaa + No selection + Ei valintaa - - Edges to fillet - pyöristettävät reunat + + Edges to fillet + pyöristettävät reunat - - - Start radius - Säteen alku + Start radius + Säteen alku - - End radius - Säteen loppu + End radius + Säteen loppu - - Radius - Säde + Radius + Säde - - No edge selected - Ei valittua reunaa + No edge selected + Ei valittua reunaa - - No edge entity is checked to fillet. + No edge entity is checked to fillet. Please check one or more edge entities first. - Reuna kokonaisuutta ei ole valittu pyöristykseen. + Reuna kokonaisuutta ei ole valittu pyöristykseen. Ole hyvä valitse yksi tai useampi reuna kokonaisuus. - - All - kaikki + + All + kaikki - - None - Ei mitään + None + Ei mitään - - - Edge%1 - Reuna %1 + + Edge%1 + Reuna %1 - - No shape selected - Ei valittua muotoa + No shape selected + Ei valittua muotoa - - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - Kelvollista muotoa ei ole valittu. + Kelvollista muotoa ei ole valittu. Ole hyvä ja valitse kelvollinen muoto alas veto laatikosta. - - + + PartGui::DlgPartBox - - Box definition - Laatikon määrittely + + Box definition + Laatikon määrittely - - X: - x: + X: + x: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - Cancel - Peruuta + Cancel + Peruuta - - OK - OK + OK + OK - - Size: - Koko: + Size: + Koko: - - Height: - Korkeus: + Height: + Korkeus: - - Width: - Leveys: + Width: + Leveys: - - Length: - Pituus: + Length: + Pituus: - - Position: - Sijainti: + Position: + Sijainti: - - Direction: - Suunta: + Direction: + Suunta: - - + + PartGui::DlgPartCylinder - - Cylinder definition - Sylinterin määritelmä + + Cylinder definition + Sylinterin määritelmä - - Parameter - Parametri + Parameter + Parametri - - Height: - Korkeus: + Height: + Korkeus: - - Radius: - Säde: + Radius: + Säde: - - Position: - Sijainti: + Position: + Sijainti: - - Direction: - Suunta: + Direction: + Suunta: - - X: - x: + X: + x: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - OK - OK + OK + OK - - Cancel - Peruuta + Cancel + Peruuta - - + + PartGui::DlgPartImportIges - - IGES input file - IGES syötetiedosto + + IGES input file + IGES syötetiedosto - - ... - ... + ... + ... - - Cancel - Peruuta + Cancel + Peruuta - - OK - OK + OK + OK - - File Name - Tiedostonimi + File Name + Tiedostonimi - - + + - - + + PartGui::DlgPartImportIgesImp - - IGES (*.igs *.iges);;All Files (*.*) - IGES (*. IGS *. iges); Kaikki tiedostot (*.*) + + IGES (*.igs *.iges);;All Files (*.*) + IGES (*. IGS *. iges); Kaikki tiedostot (*.*) - - + + PartGui::DlgPartImportStep - - ... - ... + + ... + ... - - Cancel - Peruuta + Cancel + Peruuta - - OK - OK + OK + OK - - Step input file - STEP syöttötiedosto + Step input file + STEP syöttötiedosto - - File Name - Tiedostonimi + File Name + Tiedostonimi - - + + - - + + PartGui::DlgPartImportStepImp - - STEP (*.stp *.step);;All Files (*.*) - STEP (*. STP *. askel), Kaikki tiedostot (*.*) + + STEP (*.stp *.step);;All Files (*.*) + STEP (*. STP *. askel), Kaikki tiedostot (*.*) - - + + PartGui::DlgPrimitives - - Geometric Primitives - Geometrinen primitiivi + + Geometric Primitives + Geometrinen primitiivi - Primitive - Primitiivi + Primitive + Primitiivi - X min - X min + X min + X minimi - x max - x max + x max + x maksimi - Y min - Y min + Y min + Y minimi - Y max - Y max + Y max + Y maksimi - Z min - Z min + Z min + Z minimi - Z max - Z max + Z max + Z-maksimi - X2 min - X2 min + X2 min + X2 minimi - X2 max - X2 max + X2 max + X2 maksimi - Z2 min - Z2 min + Z2 min + Z2 minimi - Z2 max - Z2 max + Z2 max + Z2 maksimi - Angle - 0 for cyl - Angle - 0 for cyl + Angle - 0 for cyl + Kulma - 0 sylinterille - Angle0 - Angle0 + Angle0 + Kulma0 - Angle1 - Angle1 + Angle1 + Kulma1 - X Axis Value: - X Axis Value: + X Axis Value: + X-akselin arvo: - Y Axis Value: - Y Axis Value: + Y Axis Value: + Y-akselin arvo: - Z Axis Value: - Z Axis Value: + Z Axis Value: + Z-akselin arvo: - - Wedge - Wedge + Wedge + Kiila - - Circle - Ympyrä + Circle + Ympyrä - Vertex - Vertex + Vertex + Kärkipiste - Position - Sijainti + Position + Sijainti - - - - Z: - Z: + Z: + Z: - - - - X: - x: + X: + x: - Direction: - Suunta: + Direction: + Suunta: - - - - Y: - Y: + Y: + Y: - - Plane - Taso + Plane + Taso - - Box - Laatikko + Box + Laatikko - - Cylinder - Sylinteri + Cylinder + Sylinteri - - Cone - Kartio + Cone + Kartio - - Sphere - Pallo(kuori) + Sphere + Pallo(kuori) - - Ellipsoid - Ellipsoidi + Ellipsoid + Ellipsoidi - - Torus - Torus + Torus + Torus - - Ellipse - + Ellipse + Ellipse - - Point - + Point + Piste - - Line - + Line + Viiva - - Parameter - Parametri + Parameter + Parametri - - - Width: - Leveys: + Width: + Leveys: - - - Length: - Pituus: + Length: + Pituus: - - - - - Height: - Korkeus: + Height: + Korkeus: - - - - Angle: - Kulma: + Angle: + Kulma: - - - - - Radius: - Säde: + Radius: + Säde: - - - - Radius 1: - Säde 1: + Radius 1: + Säde 1: - - - - Radius 2: - Säde 2: + Radius 2: + Säde 2: - - - - U parametric: - U parametrinen: + U parametric: + U parametrinen: - - - - V parametric: - V parametrinen: + V parametric: + V parametrinen: - - X min/max: - + X min/max: + X min/max: - - Y min/max: - + Y min/max: + Y min/max: - - Z min/max: - + Z min/max: + Z min/max: - - X2 min/max: - + X2 min/max: + X2 min/max: - - Z2 min/max: - + Z2 min/max: + Z2 min/max: - - Coordinate system: - + Coordinate system: + Coordinate system: - - Right-handed - + Right-handed + Right-handed - - Left-handed - + Left-handed + Left-handed - - - Angle 1: - + Angle 1: + Angle 1: - - - Angle 2: - + Angle 2: + Angle 2: - - From three points - + From three points + From three points - - Major radius: - + Major radius: + Major radius: - - Minor radius: - + Minor radius: + Minor radius: - - End point - + End point + End point - - Start point - + Start point + Start point - - &Create - &Luo + + &Create + &Luo - Alt+C - Alt + C + Alt+C + Alt + C - Cl&ose - Sulje + Cl&ose + Sulje - Alt+O - Alt + O + Alt+O + Alt+O - - - - Create %1 - Luo %1 + Create %1 + Luo %1 - - No active document - Ei aktiivista dokumenttia + No active document + Ei aktiivista dokumenttia - - Pitch: - Kaltevuus: + + Pitch: + Kaltevuus: - - Helix - Kierre + Helix + Kierre - 3D View - 3D-näkymä + 3D View + 3D-näkymä - - + + PartGui::DlgRevolution - - Revolve - Pyöräytä + + Revolve + Pyöräytä - - Y: - Y: + Y: + Y: - - X: - x: + X: + x: - - Angle: - Kulma: + Angle: + Kulma: - - Z: - Z: + Z: + Z: - - Axis: - Akseli: + Axis: + Akseli: - - Shape - Muoto + Shape + Muoto - - Select line in 3D view - + Select line in 3D view + Select line in 3D view - - Select a shape for revolution, first. - Valitse pyöräytysmuoto. + + Select a shape for revolution, first. + Valitse pyöräytysmuoto. - - + + PartGui::DlgSettings3DViewPart - - View accuracy / Performance - Näytä tarkkuus / suorituskyky + + View accuracy / Performance + Näytä tarkkuus / suorituskyky - - View smoothing - View smoothing + View smoothing + Näytä tasoitus - - Using high-quality normals - Käytetään korkea-laatuisia vakioita + Using high-quality normals + Käytetään korkea-laatuisia vakioita - - This will slow down render speed but will lead to nicer results - Tämä hidastaa renderöinti nopeutta mutta johtaa hienompiin tuloksiin + This will slow down render speed but will lead to nicer results + Tämä hidastaa renderöinti nopeutta mutta johtaa hienompiin tuloksiin - - Defines the appearance of surfaces - Määrittelee pintojen ulkomuodon + Defines the appearance of surfaces + Määrittelee pintojen ulkomuodon - - Shape view - Muoto näkymä + Shape view + Muoto näkymä - - Tessellation - Mosaiikki + Tessellation + Geometrian pilkkominen - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <span style=" font-weight:600;">Flat shading / Phong shading</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Kun tasainen varjostus pinta normaalit ei ole määritelty per piste, joka johtaa epätodellinen ulkoasun kaarevien pintojen käytön aikana Phong shading johtaa pehmeämpi ulkonäkö. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Jos tämä vaihtoehto on katkaistu Phong shading käytetään, jos se on asetettu tasainen varjostus on käytetty. </p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <span style=" font-weight:600;">Flat shading / Phong shading</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Kun tasainen varjostus pinta normaalit ei ole määritelty per piste, joka johtaa epätodellinen ulkoasun kaarevien pintojen käytön aikana Phong shading johtaa pehmeämpi ulkonäkö. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Jos tämä vaihtoehto on katkaistu Phong shading käytetään, jos se on asetettu tasainen varjostus on käytetty. </p></body></html> - - Do not define normal per vertex - Älä määrittele normaalia kärkipisteeseen + Do not define normal per vertex + Älä määrittele normaalia kärkipisteeseen - - Defines the deviation of tessellation to the actual surface - Mosaiikin poikkeama määritellään todelliseen pintaan + Defines the deviation of tessellation to the actual surface + Mosaiikin poikkeama määritellään todelliseen pintaan - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <span style=" font-weight:600;">Tessellation</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"> <span style=" font-weight:400;">Määrittää suurin poikkeama mosaiikki silmän pintaan. Pienempi arvo on hitaampi tehdä nopeutta ja mukavampaa ulkoasua.</span> </p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <span style=" font-weight:600;">Tessellation</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"> <span style=" font-weight:400;">Määrittää suurin poikkeama mosaiikki silmän pintaan. Pienempi arvo on hitaampi tehdä nopeutta ja mukavampaa ulkoasua.</span> </p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-weight:600;">Vihje</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> Määrittely normaalit per piste kutsutaan myös <span style=" font-style:italic;">Phong shading</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"> <span style=" font-style:normal;">samalla kun määritellään normaalien kohti edessä on nimeltään</span> Flat <span style=" font-style:normal;">shading.</span> </p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-weight:600;">Vihje</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> Määrittely normaalit per piste kutsutaan myös <span style=" font-style:italic;">Phong shading</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"> <span style=" font-style:normal;">samalla kun määritellään normaalien kohti edessä on nimeltään</span> Flat <span style=" font-style:normal;">shading.</span> </p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <span style=" font-weight:600;">Laadukas normaalit</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Tämä hidastaa tehdä nopeasti, mutta johtaa mukavampaa tuloksiin. </p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <span style=" font-weight:600;">Laadukas normaalit</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Tämä hidastaa tehdä nopeasti, mutta johtaa mukavampaa tuloksiin. </p></body></html> - - Maximum deviation depending on the model bounding box - Mallin laatikon maksimi poikkeama + Maximum deviation depending on the model bounding box + Mallin laatikon maksimi poikkeama - - % - % + % + % - - Deviation - Deviation + + Deviation + Deviation - - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - - + + PartGui::DlgSettingsGeneral - - General - Yleiset + + General + Yleiset - - Export - Vie + Export + Vie - - Millimeter - Millimetri + Millimeter + Millimetri - - Meter - Metri + Meter + Metri - - Inch - Tuuma + Inch + Tuuma - - Units for export of STEP/IGES - Yksiköt STEP / IGES vientiin + Units for export of STEP/IGES + Yksiköt STEP / IGES vientiin - - Model settings - + Model settings + Model settings - - Automatically refine model after boolean operation - + Automatically refine model after boolean operation + Automatically refine model after boolean operation - - Automatically check model after boolean operation - + Automatically check model after boolean operation + Automatically check model after boolean operation - - + + PartGui::FaceColors - - Face colors - + + Face colors + Face colors - - Do you really want to cancel? - + Do you really want to cancel? + Do you really want to cancel? - - + + PartGui::Location - - Location - + + Location + Location - - Position - Sijainti + Position + Sijainti - - 3D View - 3D-näkymä + 3D View + 3D-näkymä - - + + PartGui::LoftWidget - - - Vertex/Wire - Vertex/Wire + + Vertex/Wire + Kärkipiste/Lanka - - - Loft - Loft + Loft + Heitä ilmaan - - Too few elements - Too few elements + Too few elements + Liian vähän elementtejä - - At least two vertices, edges or wires are required. - + At least two vertices, edges or wires are required. + At least two vertices, edges or wires are required. - At least two vertices or wires are required. - At least two vertices or wires are required. + At least two vertices or wires are required. + Vaaditaan vähintään kaksi kärkipistettä tai lankaa. - - + + PartGui::Mirroring - - Mirroring - Peilaus + + Mirroring + Peilaus - - Shapes - Muodot + Shapes + Muodot - - Mirror plane: - Peilaustaso: + Mirror plane: + Peilaustaso: - - XY plane - XY-taso + XY plane + XY-taso - - XZ plane - XZ taso + XZ plane + XZ taso - - YZ plane - YZ taso + YZ plane + YZ taso - - Base point: - Base point: + Base point: + Peruspiste: - - x - x + x + x - - y - Y + y + Y - - z - z + z + z - - Select a shape for mirroring, first. - Valitse muoto peilausta varten, ensimmäinen. + + Select a shape for mirroring, first. + Valitse muoto peilausta varten, ensimmäinen. - - No such document '%1'. - Ei tällaista asiakirjaa ´%1´. + No such document '%1'. + Ei tällainen asiakirja '%1'. - - + + PartGui::ShapeBuilderWidget - - - - - - Wrong selection - Väärä valinta + + Wrong selection + Väärä valinta - - - Select two vertices - Select two vertices + Select two vertices + Valitse kaksi kärkipistettä - Select three or more edges - Select three or more edges + Select three or more edges + Valitse vähintään kolme reunaa - - Select one or more edges - + Select one or more edges + Select one or more edges - - Select two or more faces - Select two or more faces + Select two or more faces + Valitse vähintään kaksi pintaa - - Select only one part object - Select only one part object + Select only one part object + Valitse vain yksi osa-objekti - - Select two vertices to create an edge - Select two vertices to create an edge + Select two vertices to create an edge + Valitse kaksi kärkipistettä luodaksesi reunan - - Select a closed set of edges - Select a closed set of edges + Select a closed set of edges + Valitse suljettu joukko reunoista - - Select adjacent faces - Select adjacent faces + Select adjacent faces + Valitse vierekkäiset pinnat - - All shape types can be selected - All shape types can be selected + All shape types can be selected + Kaikki muototyypit voidaan valita - - + + PartGui::SweepWidget - - - Vertex/Wire - Vertex/Wire + + Vertex/Wire + Kärkipiste/Lanka - - - Sweep - + Sweep + Sweep - - Sweep path - + Sweep path + Sweep path - - Select an edge or wire you want to sweep along. - + Select an edge or wire you want to sweep along. + Select an edge or wire you want to sweep along. - - Too few elements - Too few elements + Too few elements + Liian vähän elementtejä - - At least one edge or wire is required. - + At least one edge or wire is required. + At least one edge or wire is required. - - + + PartGui::TaskDialogEditDynamic - Hint - Hint + Hint + Vihje - Select Control. - Select Control. + Select Control. + Valitse ohjausobjekti. - Control - Control + Control + Control - Dynamic - Dynamic + Dynamic + Dynaaminen - Align - Align + Align + Tasaa - Value - Arvo + Value + Arvo - Special - Special + Special + Erityiset - Command - Komento + Command + Komento - Stretch - Stretch + Stretch + Venytys - Move - Move + Move + Siirrä - Rotate - Rotate + Rotate + Pyöritä - Offset - Offset + Offset + Siirtymä - Orient - Orient + Orient + Suuntaus - Match - Match + Match + Match - Surround - Surround + Surround + Surround - dummy - dummy + dummy + malli - X Axis - X Axis + X Axis + X Axis - Y Axis - Y Axis + Y Axis + Y Axis - Z Axis - Z Axis + Z Axis + Z Axis - Increment - Increment + Increment + Increment - .125 - .125 + .125 + .125 - .500 - .500 + .500 + .500 - 1.000 - 1.000 + 1.000 + 1.000 - 5.000 - 5.000 + 5.000 + 5.000 - 10.000 - 10.000 + 10.000 + 10.000 - Drag arrows to stretch box by increment - Drag arrows to stretch box by increment + Drag arrows to stretch box by increment + Drag arrows to stretch box by increment - Drag arrows to move box by increment - Drag arrows to move box by increment + Drag arrows to move box by increment + Drag arrows to move box by increment - Not implemented yet - Not implemented yet + Not implemented yet + Not implemented yet - Drag arrows to offset checked axes by increment - Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment - Select dragger for stretch by align - Select dragger for stretch by align + Select dragger for stretch by align + Select dragger for stretch by align - Select dragger for move by align - Select dragger for move by align + Select dragger for move by align + Select dragger for move by align - Select dragger for stretch by value - Select dragger for stretch by value + Select dragger for stretch by value + Select dragger for stretch by value - Select dragger for move by value - Select dragger for move by value + Select dragger for move by value + Select dragger for move by value - 1.0 - 1.0 + 1.0 + 1.0 - Enter Value - Enter Value + Enter Value + Enter Value - Select box to match - Select box to match + Select box to match + Select box to match - Select a point - Select a point + Select a point + Select a point - 0.0 - 0.0 + 0.0 + 0.0 - Select dragger to align - Select dragger to align + Select dragger to align + Select dragger to align - Select dragger to modify - Select dragger to modify + Select dragger to modify + Select dragger to modify - - + + PartGui::TaskFaceColors - - Set color per face - Set color per face + + Set color per face + Aseta väri pintaa kohden - - Click on the faces in the 3d view to select them. - Click on the faces in the 3d view to select them. + Click on the faces in the 3d view to select them. + Klikkaa pinnat 3D näkymässä valitaksesi niitä. - - Faces: - Faces: + Faces: + Pinnat: - - Set to default - Set to default + Set to default + Aseta oletusarvo - - + + PartGui::TaskLoft - - Loft - Loft + + Loft + Heitä ilmaan - Vertex/Wire - Vertex/Wire + Vertex/Wire + Kärkipiste/Lanka - Move right - Siirrä oikealle + Move right + Siirrä oikealle - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - Move left - Siirrä vasemmalle + Move left + Siirrä vasemmalle - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - Move up - Siirrä ylös + Move up + Siirrä ylös - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - Move down - Siirrä alas + Move down + Siirrä alas - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - - Create solid - Create solid + Create solid + Luo kiinteä - - Ruled surface - Ruled surface + Ruled surface + Suljettu pinta - - + + PartGui::TaskShapeBuilder - - - Create shape - Create shape + + Create shape + Luo muoto - - Edge from vertices - Edge from vertices + Edge from vertices + Kärkipisteen reuna - - Face from edges - Face from edges + Face from edges + Reunojen pinnat - - Planar - Planar + Planar + Tasomainen - - Shell from faces - Shell from faces + Shell from faces + Pinnat kuoresta - - Solid from shell - Solid from shell + Solid from shell + Kiinteä kuoresta - - Create - Luo + Create + Luo - - All faces - All faces + All faces + Kaikki pinnat - - + + PartGui::TaskSweep - - Sweep - + + Sweep + Sweep - - Create solid - Create solid + Create solid + Luo kiinteä - - Frenet - + Frenet + Frenet - - Select one or more profiles and select an edge or wire + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. - + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. - - + + QObject - - - - - - Wrong selection - Väärä valinta + + Wrong selection + Väärä valinta - - - Select two shapes please. - Valitse kaksi muotoa kiitos. + Select two shapes please. + Valitse kaksi muotoa kiitos. - - - - All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) - Kaikki CAD-tiedostot (*. STP *. askel *. IGS *. iges *. BRP *. brep) + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + Kaikki CAD-tiedostot (*. STP *. askel *. IGS *. iges *. BRP *. brep) - - - - STEP (*.stp *.step) - STEP (*. STP *. vaihe) + STEP (*.stp *.step) + STEP (*. STP *. vaihe) - - - - IGES (*.igs *.iges) - IGES (*. IGS *. iges) + IGES (*.igs *.iges) + IGES (*. IGS *. iges) - - - - BREP (*.brp *.brep) - BREP (*. BRP *. brep) + BREP (*.brp *.brep) + BREP (*. BRP *. brep) - - - - All Files (*.*) - Kaikki tiedostot (*.*) + All Files (*.*) + Kaikki tiedostot (*.*) - - Sewing Tolerance - Kiinnitys toleranssi + + Sewing Tolerance + Kiinnitys toleranssi - - Enter tolerance for sewing shape: - Anna toleranssi kiinnitys muodolle: + Enter tolerance for sewing shape: + Anna toleranssi kiinnitys muodolle: - - Edit mirror plane - Muokkaa peilaustasoa + + Edit mirror plane + Muokkaa peilaustasoa - - Edit chamfer edges - + Edit chamfer edges + Edit chamfer edges - Transform - muunna + Transform + muunna - - - Part design - Osa suunnittelu + + Part design + Osa suunnittelu - - - Select two shapes or more, please. - Select two shapes or more, please. + + Select two shapes or more, please. + Valitse vähintään kaksi muotoa, ole hyvä. - - You have to select either two edges or two wires. - You have to select either two edges or two wires. + You have to select either two edges or two wires. + Voit valita kaksi reunaa tai kaksi lankaa. - - Edit fillet edges - Edit fillet edges + + Edit fillet edges + Muokkaa pyöristyksen reunoja - - Set colors... - Set colors... + + Set colors... + Määritä värit ... - - + + Workbench - - &Part - osa + + &Part + osa - - &Simple - Yksinkertainen + &Simple + Yksinkertainen - - &Parametric - &Parametrinen + &Parametric + &Parametrinen - - Part tools - Osa työkalut + Part tools + Osa työkalut - - Solids - Kiinteät + Solids + Kiinteät - - Boolean - Boolean + Boolean + Boolean - + diff --git a/src/Mod/Part/Gui/Resources/translations/Part_fr.qm b/src/Mod/Part/Gui/Resources/translations/Part_fr.qm index 5565d254b..ca13a2ba0 100644 Binary files a/src/Mod/Part/Gui/Resources/translations/Part_fr.qm and b/src/Mod/Part/Gui/Resources/translations/Part_fr.qm differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_fr.ts b/src/Mod/Part/Gui/Resources/translations/Part_fr.ts index 7860aeb17..c8e66c353 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_fr.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_fr.ts @@ -1,2520 +1,2125 @@ - - + + BlockDefinition - - Block definition - Définition de bloc + + Block definition + Définition de bloc - - First limit - Première limite + First limit + Première limite - - - Type: - Type : + Type: + Type : - - - mm - mm + mm + mm - - - Length: - Longueur : + Length: + Longueur : - - - Dimension - Dimension + Dimension + Dimension - - - Up to next - Jusqu'au suivant + Up to next + Jusqu'au suivant - - - Up to last - Jusqu'au dernier + Up to last + Jusqu'au dernier - - - Up to plane - Jusqu'au plan + Up to plane + Jusqu'au plan - - - Up to face - Jusqu'à la face + Up to face + Jusqu'à la face - - - Limit: - Limite : + Limit: + Limite : - - - - - No selection - Aucune sélection + No selection + Aucune sélection - - Profile - Profil + Profile + Profil - - Selection: - Sélection : + Selection: + Sélection : - - Reverse - Inverser + Reverse + Inverser - - Both sides - Deux directions + Both sides + Deux directions - - Second limit - Deuxième limite + Second limit + Deuxième limite - - Direction - Direction + Direction + Direction - - Perpendicular to sketch - Perpendiculaire à l'esquisse + Perpendicular to sketch + Perpendiculaire à l'esquisse - - Reference - Référence + Reference + Référence - - Apply - Appliquer + Apply + Appliquer - - Cancel - Annuler + Cancel + Annuler - - OK - Valider + OK + Valider - - + + CmdPartBoolean - - Part - Pièce + + Part + Pièce - - Boolean... - Opération booléenne... + Boolean... + Opération booléenne... - - Run a boolean operation with two shapes selected - Exécuter une opération booléenne sur deux formes sélectionnées + Run a boolean operation with two shapes selected + Exécuter une opération booléenne sur deux formes sélectionnées - - + + CmdPartBox - - Part - Pièce + + Part + Pièce - - Box - Boîte + Box + Boîte - - Create a box solid - Créer une boîte solide + Create a box solid + Créer une boîte solide - - + + CmdPartBox2 - - Part - Pièce + + Part + Pièce - - Box fix 1 - Boîte correctif 1 + Box fix 1 + Boîte correctif 1 - - Create a box solid without dialog - Créer une boîte solide sans boîte de dialogue + Create a box solid without dialog + Créer une boîte solide sans boîte de dialogue - - + + CmdPartBox3 - - Part - Pièce + Part + Pièce - - Box fix 2 - Boîte correctif 2 + Box fix 2 + Boîte correctif 2 - - Create a box solid without dialog - Créer une boîte solide sans boîte de dialogue + Create a box solid without dialog + Créer une boîte solide sans boîte de dialogue - - + + CmdPartBuilder - - Part - Pièce + Part + Pièce - - Shape builder... - Générateur de forme... + Shape builder... + Générateur de forme... - - Advanced utility to create shapes - Utilitaire avancé de création de formes + Advanced utility to create shapes + Utilitaire avancé de création de formes - - + + CmdPartChamfer - - Part - Pièce + Part + Pièce - - Chamfer... - + Chamfer... + Chanfrein... - - Chamfer the selected edges of a shape - + Chamfer the selected edges of a shape + Chanfreiner les arêtes sélectionnées d'une forme - - + + CmdPartCommon - - Part - Pièce + Part + Pièce - - Intersection - Intersection + Intersection + Intersection - - Make an intersection of two shapes - Exécuter une intersection entre deux formes + Make an intersection of two shapes + Exécuter une intersection entre deux formes - - + + CmdPartCone - - Part - Pièce + + Part + Pièce - - Cone - Cône + Cone + Cône - - Create a cone solid - Créer un solide conique + Create a cone solid + Créer un solide conique - - + + CmdPartCrossSections - - Part - Pièce + + Part + Pièce - - Cross-sections... - Coupes... + Cross-sections... + Coupes... - - Cross-sections - Coupes + Cross-sections + Coupes - - + + CmdPartCut - - Part - Pièce + Part + Pièce - - Cut - Soustraction + Cut + Soustraction - - Make a cut of two shapes - Exécuter une soustraction sur deux formes + Make a cut of two shapes + Exécuter une soustraction sur deux formes - - + + CmdPartCylinder - - Part - Pièce + + Part + Pièce - - Create a Cylinder - Créer un cylindre + Create a Cylinder + Créer un cylindre - - Cylinder - Cylindre + Cylinder + Cylindre - - + + CmdPartExport - - Part - Pièce + + Part + Pièce - - Export CAD... - Exportation CAO... + Export CAD... + Exportation CAO... - - Exports to a CAD file - Exporte vers un fichier dans un format de CAO + Exports to a CAD file + Exporte vers un fichier dans un format de CAO - - + + CmdPartExtrude - - Part - Pièce + Part + Pièce - - Extrude... - Extrusion... + Extrude... + Extrusion... - - Extrude a selected sketch - Extrusion d'une esquisse sélectionnée + Extrude a selected sketch + Extrusion d'une esquisse sélectionnée - - + + CmdPartFillet - - Part - Pièce + Part + Pièce - - Fillet... - Congé... + Fillet... + Congé... - - Fillet the selected edges of a shape - Créer un congé sur les arêtes sélectionnées d'une forme + Fillet the selected edges of a shape + Créer un congé sur les arêtes sélectionnées d'une forme - - + + CmdPartFuse - - Part - Pièce + Part + Pièce - - Union - Union + Union + Union - - Make a union of several shapes - Exécuter l'union de plusieurs formes + Make a union of several shapes + Exécuter l'union de plusieurs formes - - + + CmdPartImport - - Part - Pièce + Part + Pièce - - Imports a CAD file - Importe un fichier CAO + Imports a CAD file + Importe un fichier CAO - - Import CAD... - Importation CAO... + Import CAD... + Importation CAO... - - + + CmdPartImportCurveNet - - Part - Pièce + Part + Pièce - - Import a curve network - Importer un réseau de courbes + Import a curve network + Importer un réseau de courbes - - Import curve network... - Importer réseau de courbes... + Import curve network... + Importer réseau de courbes... - - + + CmdPartLoft - - Part - Pièce + Part + Pièce - - Loft... - Lissage... + Loft... + Lissage... - - Utility to loft - + Utility to loft + Utilitaire de loft - Advanced utility to lofts - Utilitaire avancé de lissages + Advanced utility to lofts + Utilitaire avancé de lissages - - + + CmdPartMakeSolid - - Part - Pièce + Part + Pièce - - Convert to solid - Convertir en solide + Convert to solid + Convertir en solide - - Create solid from a shell or compound - Créer un solide à partir d'une coque ou d'un composé + Create solid from a shell or compound + Créer un solide à partir d'une coque ou d'un composé - - + + CmdPartMirror - - Part - Pièce + Part + Pièce - - Mirroring... - Mise en miroir... + Mirroring... + Mise en miroir... - - Mirroring a selected shape - Mise en miroir de la forme sélectionnée + Mirroring a selected shape + Mise en miroir de la forme sélectionnée - - + + CmdPartPickCurveNet - - Part - Pièce + Part + Pièce - - Pick curve network - Choisir un réseau de courbes + Pick curve network + Choisir un réseau de courbes - - Pick a curve network - Choisir un réseau de courbes + Pick a curve network + Choisir un réseau de courbes - - + + CmdPartPrimitives - - Part - Pièce + Part + Pièce - - Create primitives... - Créer des primitives... + Create primitives... + Créer des primitives... - - Creation of parametrized geometric primitives - Création de primitives géométriques paramétrées + Creation of parametrized geometric primitives + Création de primitives géométriques paramétrées - - + + CmdPartRefineShape - - Part - Pièce + + Part + Pièce - - Refine shape - + Refine shape + Affiner la forme - - Refine the copy of a shape - + Refine the copy of a shape + Affiner la copie d'une forme - - + + CmdPartReverseShape - - Part - Pièce + + Part + Pièce - - Reverse shapes - Formes inversées + Reverse shapes + Formes inversées - - Reverse orientation of shapes - Inverser l'orientation des formes + Reverse orientation of shapes + Inverser l'orientation des formes - - + + CmdPartRevolve - - Part - Pièce + Part + Pièce - - Revolve... - Révolution... + Revolve... + Révolution... - - Revolve a selected shape - Révolutionner une forme sélectionnée + Revolve a selected shape + Révolutionner une forme sélectionnée - - + + CmdPartRuledSurface - - Part - Pièce + Part + Pièce - - Create ruled surface - Créer une surface réglée + Create ruled surface + Créer une surface réglée - - Create a ruled surface from two curves - Créer une surface réglée à partir de deux courbes + Create a ruled surface from two curves + Créer une surface réglée à partir de deux courbes - - + + CmdPartSection - - Make a section of two shapes - Faire une section de deux formes + Make a section of two shapes + Faire une section de deux formes - - Part - Pièce + Part + Pièce - - Section - Section + Section + Section - - + + CmdPartShapeFromMesh - - Part - Pièce + + Part + Pièce - - Create shape from mesh... - Créer la forme à partir d'un maillage... + Create shape from mesh... + Créer la forme à partir d'un maillage... - - Create shape from selected mesh object - Créer une forme à partir du maillage sélectionné + Create shape from selected mesh object + Créer une forme à partir du maillage sélectionné - - + + CmdPartSimpleCopy - - Part - Pièce + Part + Pièce - - Create simple copy - Créer une copie simple + Create simple copy + Créer une copie simple - - Create a simple non-parametric copy - Créer une copie simple non-paramétrique + Create a simple non-parametric copy + Créer une copie simple non-paramétrique - - + + CmdPartSimpleCylinder - - Part - Pièce + Part + Pièce - - Create Cylinder... - Créer un cylindre... + Create Cylinder... + Créer un cylindre... - - Create a Cylinder - Créer un cylindre + Create a Cylinder + Créer un cylindre - - + + CmdPartSphere - - Create a sphere solid - Créer un solide sphérique + + Create a sphere solid + Créer un solide sphérique - - Part - Pièce + Part + Pièce - - Sphere - Sphère + Sphere + Sphère - - + + CmdPartSweep - - Part - Pièce + + Part + Pièce - - Sweep... - + Sweep... + Balayage... - - Utility to sweep - + Utility to sweep + Outil pour balayage - - + + CmdPartTorus - - Create a torus solid - Créer un solide toroïdal + + Create a torus solid + Créer un solide toroïdal - - Part - Pièce + Part + Pièce - - Torus - Tore + Torus + Tore - - + + DlgExtrusion - Select a shape for extrusion, first. - Sélectionnez d'abord une forme pour l'extrusion. + Select a shape for extrusion, first. + Sélectionnez d'abord une forme pour l'extrusion. - The document '%1' doesn't exist. - Document « %1 » inexistant. + The document '%1' doesn't exist. + Document « %1 » inexistant. - - + + DlgRevolution - Select a shape for revolution, first. - Sélectionnez d'abord une forme à révolutionner. + Select a shape for revolution, first. + Sélectionnez d'abord une forme à révolutionner. - - + + DlgSettings3DViewPart - Deviation - Déviation + Deviation + Déviation - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Définir une déviation de tessellation trop faible peut ralentir ou geler l'interface. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Définir une déviation de tessellation trop faible peut ralentir ou geler l'interface. - - + + PartGui::CrossSections - - Cross sections - Coupes + + Cross sections + Coupes - - Guiding plane - Plan directeur + Guiding plane + Plan directeur - - XY - XY + XY + XY - - XZ - XZ + XZ + XZ - - YZ - YZ + YZ + YZ - - Position: - Position : + Position: + Position : - - Sections - Sections + Sections + Sections - - On both sides - Des deux côtés + On both sides + Des deux côtés - - Count - Nombre + Count + Nombre - - Distance: - Distance : + Distance: + Distance : - - + + PartGui::DlgBooleanOperation - - Boolean Operation - Opération booléenne + + Boolean Operation + Opération booléenne - - Second shape - Deuxième forme + Second shape + Deuxième forme - - First shape - Première forme + First shape + Première forme - - Boolean operation - Opération booléenne + Boolean operation + Opération booléenne - - Section - Section + Section + Section - - Difference - Différence + Difference + Différence - - Union - Union + Union + Union - - Intersection - Intersection + Intersection + Intersection - - Cannot perform a boolean operation with the same shape - Impossible d'effectuer une opération booléenne sur une seule forme + + Cannot perform a boolean operation with the same shape + Impossible d'effectuer une opération booléenne sur une seule forme - - - Solids - Solides + + Solids + Solides - - - Shells - Coques + Shells + Coques - - - Compounds - Composés + Compounds + Composés - - - Faces - Faces + Faces + Faces - - Swap selection - Changement de sélection + Swap selection + Changement de sélection - - Select a shape on the left side, first - Sélectionner d'abord une forme sur le côté gauche + + Select a shape on the left side, first + Sélectionner d'abord une forme sur le côté gauche - - Select a shape on the right side, first - Sélectionner d'abord une forme sur le côté droit + Select a shape on the right side, first + Sélectionner d'abord une forme sur le côté droit - - No active document available - Aucun document actif disponible + No active document available + Aucun document actif disponible - - One of the selected objects doesn't exist anymore - Un des objets sélectionnés n'existe plus + One of the selected objects doesn't exist anymore + Un des objets sélectionnés n'existe plus - - Performing union on non-solids is not possible - L'union de formes non-solides n'est pas possible + Performing union on non-solids is not possible + L'union de formes non-solides n'est pas possible - - Performing intersection on non-solids is not possible - L'intersection de formes non-solides n'est pas possible + Performing intersection on non-solids is not possible + L'intersection de formes non-solides n'est pas possible - - Performing difference on non-solids is not possible - La soustraction de formes non-solides n'est pas possible + Performing difference on non-solids is not possible + La soustraction de formes non-solides n'est pas possible - - + + PartGui::DlgChamferEdges - - Chamfer Edges - + + Chamfer Edges + Chanfreiner des arêtes - - + + PartGui::DlgExtrusion - - Extrude - Extruder + + Extrude + Extruder - - Direction - Direction + Direction + Direction - - Along normal - Le long de la normale + Along normal + Le long de la normale - - Length: - Longueur : + Length: + Longueur : - - 3D view - Vue 3D + 3D view + Vue 3D - - Note:This option works for planes only - Remarque : cette option ne fonctionne que pour les plans + Note:This option works for planes only + Remarque : cette option ne fonctionne que pour les plans - - Create solid - Créer le solide + Create solid + Créer le solide - - Taper outward angle - + Taper outward angle + Angle de dépouille externe - - Shape - Forme + Shape + Forme - - + + - - X: - X : + X: + X : - - Z: - Z : + Z: + Z : - - Y: - Y : + Y: + Y : - - Select a shape for extrusion, first. - Sélectionnez d'abord une forme pour l'extrusion. + + Select a shape for extrusion, first. + Sélectionnez d'abord une forme pour l'extrusion. - - The document '%1' doesn't exist. - Document « %1 » inexistant. + The document '%1' doesn't exist. + Document « %1 » inexistant. - - + + PartGui::DlgFilletEdges - - Fillet Edges - Congés des arêtes + + Fillet Edges + Congés des arêtes - - Fillet Parameter - Paramètres de congé + Fillet Parameter + Paramètres de congé - - Radius: - Rayon : + Radius: + Rayon : - - Fillet type: - Type de congé : + Fillet type: + Type de congé : - - Constant Radius - Rayon constant + Constant Radius + Rayon constant - - Variable Radius - Rayon variable + Variable Radius + Rayon variable - - Shape - Forme + Shape + Forme - - Selected shape: - Forme sélectionnée : + Selected shape: + Forme sélectionnée : - - No selection - Aucune sélection + No selection + Aucune sélection - - Edges to fillet - Congé sur arêtes + + Edges to fillet + Congé sur arêtes - - - Start radius - Rayon initial + Start radius + Rayon initial - - End radius - Rayon final + End radius + Rayon final - - Radius - Rayon + Radius + Rayon - - No edge selected - Aucune arête sélectionnée + No edge selected + Aucune arête sélectionnée - - No edge entity is checked to fillet. + No edge entity is checked to fillet. Please check one or more edge entities first. - Aucune arête n'est sélectionnée pour le congé. Veuillez d'abord cocher une ou plusieurs arêtes. + Aucune arête n'est sélectionnée pour le congé. Veuillez d'abord cocher une ou plusieurs arêtes. - - All - Tous + + All + Tous - - None - Aucun + None + Aucun - - - Edge%1 - Arête%1 + + Edge%1 + Arête%1 - - No shape selected - Aucune forme sélectionnée + No shape selected + Aucune forme sélectionnée - - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - Aucune forme valide n'est sélectionnée. Veuillez sélectionner d'abord une forme valide dans le menu déroulant. + Aucune forme valide n'est sélectionnée. Veuillez sélectionner d'abord une forme valide dans le menu déroulant. - - + + PartGui::DlgPartBox - - Box definition - Définition de boîte + + Box definition + Définition de boîte - - X: - X : + X: + X : - - Z: - Z : + Z: + Z : - - Y: - Y : + Y: + Y : - - Cancel - Annuler + Cancel + Annuler - - OK - Valider + OK + Valider - - Size: - Taille : + Size: + Taille : - - Height: - Hauteur : + Height: + Hauteur : - - Width: - Largeur : + Width: + Largeur : - - Length: - Longueur : + Length: + Longueur : - - Position: - Position : + Position: + Position : - - Direction: - Direction : + Direction: + Direction : - - + + PartGui::DlgPartCylinder - - Cylinder definition - Définition du cylindre + + Cylinder definition + Définition du cylindre - - Parameter - Paramètre + Parameter + Paramètre - - Height: - Hauteur : + Height: + Hauteur : - - Radius: - Rayon : + Radius: + Rayon : - - Position: - Position : + Position: + Position : - - Direction: - Direction : + Direction: + Direction : - - X: - X : + X: + X : - - Z: - Z : + Z: + Z : - - Y: - Y : + Y: + Y : - - OK - Valider + OK + Valider - - Cancel - Annuler + Cancel + Annuler - - + + PartGui::DlgPartImportIges - - IGES input file - Fichier d'entrée IGES + + IGES input file + Fichier d'entrée IGES - - ... - ... + ... + ... - - Cancel - Annuler + Cancel + Annuler - - OK - Valider + OK + Valider - - File Name - Nom du fichier + File Name + Nom du fichier - - + + - - + + PartGui::DlgPartImportIgesImp - - IGES (*.igs *.iges);;All Files (*.*) - IGES (*.igs *.IGES);; Tous les fichiers (*.*) + + IGES (*.igs *.iges);;All Files (*.*) + IGES (*.igs *.IGES);; Tous les fichiers (*.*) - - + + PartGui::DlgPartImportStep - - ... - ... + + ... + ... - - Cancel - Annuler + Cancel + Annuler - - OK - Valider + OK + Valider - - Step input file - Fichier d'entrée STEP + Step input file + Fichier d'entrée STEP - - File Name - Nom du fichier + File Name + Nom du fichier - - + + - - + + PartGui::DlgPartImportStepImp - - STEP (*.stp *.step);;All Files (*.*) - STEP (*.stp *.step);; Tous les fichiers (*.*) + + STEP (*.stp *.step);;All Files (*.*) + STEP (*.stp *.step);; Tous les fichiers (*.*) - - + + PartGui::DlgPrimitives - - Geometric Primitives - Primitives géométriques + + Geometric Primitives + Primitives géométriques - Primitive - Primitive + Primitive + Primitive - X min - X min + X min + X min - x max - X max + x max + X max - Y min - Y min + Y min + Y min - Y max - Y max + Y max + Y max - Z min - Z min + Z min + Z min - Z max - Z max + Z max + Z max - X2 min - X2 min + X2 min + X2 min - X2 max - X2 max + X2 max + X2 max - Z2 min - Z2 min + Z2 min + Z2 min - Z2 max - Z2 max + Z2 max + Z2 max - Angle - 0 for cyl - Angle - 0 pour cyl. + Angle - 0 for cyl + Angle - 0 pour cyl. - Angle0 - Angle0 + Angle0 + Angle0 - Angle1 - Angle1 + Angle1 + Angle1 - X Axis Value: - Valeur d'axe X : + X Axis Value: + Valeur d'axe X : - Y Axis Value: - Valeur d'axe Y : + Y Axis Value: + Valeur d'axe Y : - Z Axis Value: - Valeur d'axe Z : + Z Axis Value: + Valeur d'axe Z : - - Wedge - Prisme + Wedge + Prisme - - Circle - Cercle + Circle + Cercle - Vertex - Sommet + Vertex + Sommet - Position - Position + Position + Position - - - - Z: - Z : + Z: + Z : - - - - X: - X : + X: + X : - Direction: - Direction : + Direction: + Direction : - - - - Y: - Y : + Y: + Y : - - Plane - Plan + Plane + Plan - - Box - Boîte + Box + Boîte - - Cylinder - Cylindre + Cylinder + Cylindre - - Cone - Cône + Cone + Cône - - Sphere - Sphère + Sphere + Sphère - - Ellipsoid - Ellipsoïde + Ellipsoid + Ellipsoïde - - Torus - Tore + Torus + Tore - - Ellipse - + Ellipse + Ellipse - - Point - + Point + Point - - Line - + Line + Ligne - - Parameter - Paramètre + Parameter + Paramètre - - - Width: - Largeur : + Width: + Largeur : - - - Length: - Longueur : + Length: + Longueur : - - - - - Height: - Hauteur : + Height: + Hauteur : - - - - Angle: - Angle : + Angle: + Angle : - - - - - Radius: - Rayon : + Radius: + Rayon : - - - - Radius 1: - Rayon 1 : + Radius 1: + Rayon 1 : - - - - Radius 2: - Rayon 2 : + Radius 2: + Rayon 2 : - - - - U parametric: - U paramétrique : + U parametric: + U paramétrique : - - - - V parametric: - V paramétrique : + V parametric: + V paramétrique : - - X min/max: - + X min/max: + X min/max: - - Y min/max: - + Y min/max: + Y min/max: - - Z min/max: - + Z min/max: + Z min/max: - - X2 min/max: - + X2 min/max: + X2 min/max: - - Z2 min/max: - + Z2 min/max: + Z2 min/max: - - Coordinate system: - + Coordinate system: + Système de coordonnées: - - Right-handed - + Right-handed + Main droite - - Left-handed - + Left-handed + Main gauche - - - Angle 1: - + Angle 1: + Angle 1: - - - Angle 2: - + Angle 2: + Angle 2: - - From three points - + From three points + A partir de trois points - - Major radius: - + Major radius: + Rayon majeur: - - Minor radius: - + Minor radius: + Rayon mineur: - - End point - + End point + Point final - - Start point - + Start point + Point de départ - - &Create - &Créer + + &Create + &Créer - Alt+C - Alt + C + Alt+C + Alt + C - Cl&ose - Fer&mer + Cl&ose + Fer&mer - Alt+O - Alt + O + Alt+O + Alt+F - - - - Create %1 - Créer %1 + Create %1 + Créer %1 - - No active document - Aucun document actif + No active document + Aucun document actif - - Pitch: - Axe de tangage : + + Pitch: + Axe de tangage : - - Helix - Hélice + Helix + Hélice - 3D View - Vue 3D + 3D View + Vue 3D - - + + PartGui::DlgRevolution - - Revolve - Révolution + + Revolve + Révolution - - Y: - Y : + Y: + Y : - - X: - X : + X: + X : - - Angle: - Angle : + Angle: + Angle : - - Z: - Z : + Z: + Z : - - Axis: - Axe : + Axis: + Axe : - - Shape - Forme + Shape + Forme - - Select line in 3D view - + Select line in 3D view + Sélectionnez une ligne dans la vue 3D - - Select a shape for revolution, first. - Sélectionnez d'abord une forme à révolutionner. + + Select a shape for revolution, first. + Sélectionnez d'abord une forme à révolutionner. - - + + PartGui::DlgSettings3DViewPart - - View accuracy / Performance - Précision d'affichage / performance + + View accuracy / Performance + Précision d'affichage / performance - - View smoothing - Lissage de la vue + View smoothing + Lissage de la vue - - Using high-quality normals - Utiliser normales de haute qualité + Using high-quality normals + Utiliser normales de haute qualité - - This will slow down render speed but will lead to nicer results - Ceci ralentira la vitesse de rendu, mais donnera de meilleurs résultats + This will slow down render speed but will lead to nicer results + Ceci ralentira la vitesse de rendu, mais donnera de meilleurs résultats - - Defines the appearance of surfaces - Définit l'apparence des surfaces + Defines the appearance of surfaces + Définit l'apparence des surfaces - - Shape view - Vue de la forme + Shape view + Vue de la forme - - Tessellation - Tessellation + Tessellation + Tessellation - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Ombrage plat/Ombrage Phong</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Avec l'ombrage plat, les normales à la surface ne sont pas définies par vertex, ce qui conduit à une apparence irréelle pour les surfaces courbes, alors que l'ombrage Phong produit une apparence plus lissée. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Si l'option n'est pas sélectionnée, l'ombrage Phong est utilisé. Sinon, l'ombrage plat sera utilisé.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Ombrage plat/Ombrage Phong</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Avec l'ombrage plat, les normales à la surface ne sont pas définies par vertex, ce qui conduit à une apparence irréelle pour les surfaces courbes, alors que l'ombrage Phong produit une apparence plus lissée. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Si l'option n'est pas sélectionnée, l'ombrage Phong est utilisé. Sinon, l'ombrage plat sera utilisé.</p></body></html> - - Do not define normal per vertex - Ne pas définir les normales par vertex + Do not define normal per vertex + Ne pas définir les normales par vertex - - Defines the deviation of tessellation to the actual surface - Définit la déviation de tessellation à la surface réelle + Defines the deviation of tessellation to the actual surface + Définit la déviation de tessellation à la surface réelle - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <span style=" font-weight:600;">Tessellation</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"> <span style=" font-weight:400;">Définit la déviation maximum de la structure en tessellation par rapport à la surface. Plus la valeur est petite, plus la vitesse de rendu est lente et le rendu lissé.</span> </p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <span style=" font-weight:600;">Tessellation</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"> <span style=" font-weight:400;">Définit la déviation maximum de la structure en tessellation par rapport à la surface. Plus la valeur est petite, plus la vitesse de rendu est lente et le rendu lissé.</span> </p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-weight:600;">Remarque</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> Définir les normales par vertex est aussi appelé <span style=" font-style:italic;">ombrage Phong</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"> <span style=" font-style:normal;">alors que définir les normales par face est appelé </span>ombrage plat<span style=" font-style:normal;">.</span> </p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Définir les normales par vertex est aussi appelé <span style=" font-style:italic;">ombrage Phong</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">alors que définir les normales par face est appelé</span>ombrage plat<span style=" font-style:normal;">.</span></p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Normales de haute qualité</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Cela ralentit la vitesse de rendu, mais produit de meilleurs résultats.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Normales de haute qualité</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Cela ralentit la vitesse de rendu, mais produit de meilleurs résultats.</p></body></html> - - Maximum deviation depending on the model bounding box - L'écart maximal suivant la boîte englobant le modèle + Maximum deviation depending on the model bounding box + L'écart maximal suivant la boîte englobant le modèle - - % - % + % + % - - Deviation - Déviation + + Deviation + Déviation - - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Définir une déviation de tessellation trop faible peut ralentir ou geler l'interface. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Définir une déviation de tessellation trop faible peut ralentir ou geler l'interface. - - + + PartGui::DlgSettingsGeneral - - General - Général + + General + Général - - Export - Exporter + Export + Exporter - - Millimeter - Millimètre + Millimeter + Millimètre - - Meter - Mètre + Meter + Mètre - - Inch - Pouce + Inch + Pouce - - Units for export of STEP/IGES - Unités pour l'exportation de STEP / IGES + Units for export of STEP/IGES + Unités pour l'exportation de STEP / IGES - - Model settings - + Model settings + Paramètres de modèle - - Automatically refine model after boolean operation - + Automatically refine model after boolean operation + Affiner les modèles automatiquement après une opération booléenne - - Automatically check model after boolean operation - + Automatically check model after boolean operation + Vérifier les modèles automatiquement après une opération booléenne - - + + PartGui::FaceColors - - Face colors - + + Face colors + Couleurs de face - - Do you really want to cancel? - + Do you really want to cancel? + Voulez-vous vraiment annuler? - - + + PartGui::Location - - Location - + + Location + Emplacement - - Position - Position + Position + Position - - 3D View - Vue 3D + 3D View + Vue 3D - - + + PartGui::LoftWidget - - - Vertex/Wire - Sommet/Fil + + Vertex/Wire + Sommet/Fil - - - Loft - Lissage + Loft + Lissage - - Too few elements - Trop peu d'éléments + Too few elements + Trop peu d'éléments - - At least two vertices, edges or wires are required. - + At least two vertices, edges or wires are required. + Au moins deux sommets, arêtes ou filaires sont nécessaires. - At least two vertices or wires are required. - Au moins deux sommets ou fils sont nécessaires. + At least two vertices or wires are required. + Au moins deux sommets ou fils sont nécessaires. - - + + PartGui::Mirroring - - Mirroring - Mise en miroir + + Mirroring + Mise en miroir - - Shapes - Formes + Shapes + Formes - - Mirror plane: - Plan miroir : + Mirror plane: + Plan miroir : - - XY plane - Plan XY + XY plane + Plan XY - - XZ plane - Plan XZ + XZ plane + Plan XZ - - YZ plane - Plan YZ + YZ plane + Plan YZ - - Base point: - Point de départ : + Base point: + Point de départ : - - x - x + x + x - - y - y + y + y - - z - z + z + z - - Select a shape for mirroring, first. - Sélectionner d'abord une forme à mettre en miroir. + + Select a shape for mirroring, first. + Sélectionner d'abord une forme à mettre en miroir. - - No such document '%1'. - Aucun document '%1'. + No such document '%1'. + Aucun document '%1'. - - + + PartGui::ShapeBuilderWidget - - - - - - Wrong selection - Sélection invalide + + Wrong selection + Sélection invalide - - - Select two vertices - Sélectionnez deux sommets + Select two vertices + Sélectionnez deux sommets - Select three or more edges - Sélectionnez au moins trois arêtes + Select three or more edges + Sélectionnez au moins trois arêtes - - Select one or more edges - + Select one or more edges + Sélectionnez une ou plusieurs arêtes - - Select two or more faces - Sélectionnez au moins deux faces + Select two or more faces + Sélectionnez au moins deux faces - - Select only one part object - Sélectionnez seulement un objet pièce + Select only one part object + Sélectionnez seulement un objet pièce - - Select two vertices to create an edge - Sélectionner deux sommets pour créer une arête + Select two vertices to create an edge + Sélectionner deux sommets pour créer une arête - - Select a closed set of edges - Sélectionner un ensemble fermé d'arêtes + Select a closed set of edges + Sélectionner un ensemble fermé d'arêtes - - Select adjacent faces - Sélectionner les faces adjacentes + Select adjacent faces + Sélectionner les faces adjacentes - - All shape types can be selected - Tous les types de forme peuvent être sélectionnés + All shape types can be selected + Tous les types de forme peuvent être sélectionnés - - + + PartGui::SweepWidget - - - Vertex/Wire - Sommet/Fil + + Vertex/Wire + Sommet/Fil - - - Sweep - + Sweep + Balayage - - Sweep path - + Sweep path + Chemin de balayage - - Select an edge or wire you want to sweep along. - + Select an edge or wire you want to sweep along. + Sélectionnez une arête ou un fil sur lequel vous souhaitez faire un balayage. - - Too few elements - Trop peu d'éléments + Too few elements + Trop peu d'éléments - - At least one edge or wire is required. - + At least one edge or wire is required. + Au moins une arête ou un fil est requis. - - + + PartGui::TaskDialogEditDynamic - Hint - Truc + Hint + Astuce - Select Control. - Sélectionnez un contrôle. + Select Control. + Sélectionnez un contrôle. - Control - Contrôle + Control + Contrôle - Dynamic - Dynamique + Dynamic + Dynamique - Align - Aligner + Align + Aligner - Value - Valeur + Value + Valeur - Special - Spécial + Special + Spécial - Command - Commande + Command + Commande - Stretch - Étirer + Stretch + Étirer - Move - Déplacer + Move + Déplacer - Rotate - Pivoter + Rotate + Pivoter - Offset - Décalage + Offset + Décalage - Orient - Orienter + Orient + Orienter - Match - Faire correspondre + Match + Faire correspondre - Surround - Environnant + Surround + Environnant - dummy - factice + dummy + factice - X Axis - Axe X + X Axis + Axe X - Y Axis - Axe Y + Y Axis + Axe Y - Z Axis - Axe Z + Z Axis + Axe Z - Increment - Incrément + Increment + Incrément - .125 - .125 + .125 + .125 - .500 - .500 + .500 + .500 - 1.000 - 1.000 + 1.000 + 1.000 - 5.000 - 5.000 + 5.000 + 5.000 - 10.000 - 10.000 + 10.000 + 10.000 - Drag arrows to stretch box by increment - Faites glisser les flèches pour étirer la boîte par incrément + Drag arrows to stretch box by increment + Faites glisser les flèches pour étirer la boîte par incrément - Drag arrows to move box by increment - Faites glisser les flèches pour déplacer la boîte par incrément + Drag arrows to move box by increment + Faites glisser les flèches pour déplacer la boîte par incrément - Not implemented yet - Pas encore implémenté + Not implemented yet + Pas encore implémenté - Drag arrows to offset checked axes by increment - Faites glisser les flèches pour déplacer les axes marqués par incrément + Drag arrows to offset checked axes by increment + Faites glisser les flèches pour déplacer les axes marqués par incrément - Select dragger for stretch by align - Sélectionnez un marqueur pour étirer par alignement + Select dragger for stretch by align + Sélectionnez un marqueur pour étirer par alignement - Select dragger for move by align - Sélectionnez un marqueur pour déplacer para alignement + Select dragger for move by align + Sélectionnez un marqueur pour déplacer par alignement - Select dragger for stretch by value - Sélectionnez le marqueur pour étirer par valeur + Select dragger for stretch by value + Sélectionnez le marqueur pour étirer par une valeur - Select dragger for move by value - Sélectionnez un marqueur pour déplacer par valeur + Select dragger for move by value + Sélectionnez un marqueur pour déplacer par une valeur - 1.0 - 1.0 + 1.0 + 1.0 - Enter Value - Entrez une valeur + Enter Value + Entrez une valeur - Select box to match - Sélectionnez une boîte à faire correspondre + Select box to match + Sélectionnez une boîte à faire correspondre - Select a point - Sélectionnez un point + Select a point + Sélectionnez un point - 0.0 - 0.0 + 0.0 + 0.0 - Select dragger to align - Sélectionnez un marqueur pour aligner + Select dragger to align + Sélectionnez un marqueur pour aligner - Select dragger to modify - Sélectionnez un marqueur pour modifier + Select dragger to modify + Sélectionnez un marqueur pour modifier - - + + PartGui::TaskFaceColors - - Set color per face - Définir la couleur des faces + + Set color per face + Définir la couleur des faces - - Click on the faces in the 3d view to select them. - Cliquer sur les faces dans la vue 3D pour les sélectionner. + Click on the faces in the 3d view to select them. + Cliquer sur les faces dans la vue 3D pour les sélectionner. - - Faces: - Faces : + Faces: + Faces : - - Set to default - Définir par défaut + Set to default + Définir par défaut - - + + PartGui::TaskLoft - - Loft - Lissage + + Loft + Lissage - Vertex/Wire - Sommet/Fil + Vertex/Wire + Sommet/Fil - Move right - Déplacer vers la droite + Move right + Déplacer vers la droite - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Descendre l'élément sélectionné d'un niveau.</b><p>Cela changera aussi le niveau de l'élément parent.</p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Descendre l'élément sélectionné d'un niveau.</b><p>Cela changera aussi le niveau de l'élément parent.</p> - Move left - Déplacer vers la gauche + Move left + Déplacer vers la gauche - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Monter l'élément sélectionné d'un niveau.</b><p>Cela changera aussi le niveau de l'élément parent.</p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Monter l'élément sélectionné d'un niveau.</b><p>Cela changera aussi le niveau de l'élément parent.</p> - Move up - Déplacer vers le haut + Move up + Déplacer vers le haut - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Monter l'élément sélectionné d'un niveau.</b><p>L'élément sera déplacé au sein du niveau de hiérarchie.</p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Monter l'élément sélectionné d'un niveau.</b><p>L'élément sera déplacé au sein du niveau de hiérarchie.</p> - Move down - Déplacer vers le bas + Move down + Déplacer vers le bas - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Descendre l'élément sélectionné d'un niveau.</b><p>L'élément sera déplacé au sein du niveau de hiérarchie.</p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Descendre l'élément sélectionné d'un niveau.</b><p>L'élément sera déplacé au sein du niveau de hiérarchie.</p> - - Create solid - Créer le solide + Create solid + Créer le solide - - Ruled surface - Surface réglée + Ruled surface + Surface réglée - - + + PartGui::TaskShapeBuilder - - - Create shape - Créer la forme + + Create shape + Créer la forme - - Edge from vertices - Arête à partir de sommets + Edge from vertices + Arête à partir de sommets - - Face from edges - Face à partir d'arêtes + Face from edges + Face à partir d'arêtes - - Planar - Planaire + Planar + Planaire - - Shell from faces - Coque à partir de faces + Shell from faces + Coque à partir de faces - - Solid from shell - Solide depuis une coque + Solid from shell + Solide depuis une coque - - Create - Créer + Create + Créer - - All faces - Toutes les faces + All faces + Toutes les faces - - + + PartGui::TaskSweep - - Sweep - + + Sweep + Balayage - - Create solid - Créer le solide + Create solid + Créer le solide - - Frenet - + Frenet + Frenet - - Select one or more profiles and select an edge or wire + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. - + Sélectionnez au moins un profil et une arête ou un fil. - - + + QObject - - - - - - Wrong selection - Sélection invalide + + Wrong selection + Sélection invalide - - - Select two shapes please. - Veuillez sélectionner deux formes. + Select two shapes please. + Veuillez sélectionner deux formes. - - - - All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) - Tous les fichiers CAO (*.stp *.step *.igs *.iges *.brp *.brep) + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + Tous les fichiers CAO (*.stp *.step *.igs *.iges *.brp *.brep) - - - - STEP (*.stp *.step) - STEP (*.stp * .step) + STEP (*.stp *.step) + STEP (*.stp * .step) - - - - IGES (*.igs *.iges) - IGES (*.igs *.iges) + IGES (*.igs *.iges) + IGES (*.igs *.iges) - - - - BREP (*.brp *.brep) - BREP (*.brp *.brep) + BREP (*.brp *.brep) + BREP (*.brp *.brep) - - - - All Files (*.*) - Tous les fichiers (*.*) + All Files (*.*) + Tous les fichiers (*.*) - - Sewing Tolerance - Tolérance de couture + + Sewing Tolerance + Tolérance de couture - - Enter tolerance for sewing shape: - Saisir la tolérance pour coudre la forme : + Enter tolerance for sewing shape: + Saisir la tolérance pour coudre la forme : - - Edit mirror plane - Éditer le plan du miroir + + Edit mirror plane + Éditer le plan du miroir - - Edit chamfer edges - + Edit chamfer edges + Modifier les arêtes du chanfrein - Transform - Transformer + Transform + Transformer - - - Part design - Conception de pièces + + Part design + Conception de pièces - - - Select two shapes or more, please. - Veuillez sélectionner au moins deux formes. + + Select two shapes or more, please. + Veuillez sélectionner au moins deux formes. - - You have to select either two edges or two wires. - Vous devez sélectionner deux arêtes ou deux fils. + You have to select either two edges or two wires. + Vous devez sélectionner deux arêtes ou deux fils. - - Edit fillet edges - Modifier les congés d'arête + + Edit fillet edges + Modifier les congés d'arête - - Set colors... - Définir les couleurs... + + Set colors... + Définir les couleurs... - - + + Workbench - - &Part - &Pièce + + &Part + &Pièce - - &Simple - &Simple + &Simple + &Simple - - &Parametric - &Paramétrique + &Parametric + &Paramétrique - - Part tools - Outils de pièces + Part tools + Outils de pièces - - Solids - Solides + Solids + Solides - - Boolean - Booléen + Boolean + Opération booléenne - + diff --git a/src/Mod/Part/Gui/Resources/translations/Part_hr.qm b/src/Mod/Part/Gui/Resources/translations/Part_hr.qm index bfa3b8aff..ecceafc2d 100644 Binary files a/src/Mod/Part/Gui/Resources/translations/Part_hr.qm and b/src/Mod/Part/Gui/Resources/translations/Part_hr.qm differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_hr.ts b/src/Mod/Part/Gui/Resources/translations/Part_hr.ts index c15cd8a11..0e4b09335 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_hr.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_hr.ts @@ -1,2520 +1,2126 @@ - - + + BlockDefinition - - Block definition - Definicija bloka + + Block definition + Definicija bloka - - First limit - Prva granica + First limit + Prva granica - - - Type: - Vrsta: + Type: + Vrsta: - - - mm - mm + mm + mm - - - Length: - Duljina: + Length: + Duljina: - - - Dimension - Dimenzija + Dimension + Dimenzija - - - Up to next - Do sljedećeg + Up to next + Do sljedećeg - - - Up to last - Do posljednjeg + Up to last + Do posljednjeg - - - Up to plane - Do plohe + Up to plane + Do plohe - - - Up to face - Do stranice + Up to face + Do stranice - - - Limit: - Granica: + Limit: + Granica: - - - - - No selection - Bez izbora + No selection + Nema odabira - - Profile - Profil + Profile + Profil - - Selection: - Odabrano: + Selection: + Odabrano: - - Reverse - Obrnuto + Reverse + Obrnuto - - Both sides - Obje strane + Both sides + Obje strane - - Second limit - Druga granica + Second limit + Druga granica - - Direction - Smjer + Direction + Smjer - - Perpendicular to sketch - Okomito na skicu + Perpendicular to sketch + Okomito na skicu - - Reference - Referenca + Reference + Referenca - - Apply - Primijeni + Apply + Primijeni - - Cancel - Otkaži + Cancel + Otkaži - - OK - U redu + OK + U redu - - + + CmdPartBoolean - - Part - Geometrijsko tijelo + + Part + Geometrijsko tijelo - - Boolean... - Booleova ... + Boolean... + Booleova ... - - Run a boolean operation with two shapes selected - Izvrši booleovu operaciju sa odabrana dva oblika + Run a boolean operation with two shapes selected + Izvrši booleovu operaciju sa odabrana dva oblika - - + + CmdPartBox - - Part - Geometrijsko tijelo + + Part + Geometrijsko tijelo - - Box - Kutija + Box + Kutija - - Create a box solid - Napravi kvadar + Create a box solid + Napravi kvadar - - + + CmdPartBox2 - - Part - Geometrijsko tijelo + + Part + Geometrijsko tijelo - - Box fix 1 - Blok popravak 1 + Box fix 1 + Blok popravak 1 - - Create a box solid without dialog - Napravi kvadar bez dijaloga + Create a box solid without dialog + Napravi kvadar bez dijaloga - - + + CmdPartBox3 - - Part - Geometrijsko tijelo + Part + Geometrijsko tijelo - - Box fix 2 - Blok popravak 2 + Box fix 2 + Blok popravak 2 - - Create a box solid without dialog - Napravi kvadar bez dijaloga + Create a box solid without dialog + Napravi kvadar bez dijaloga - - + + CmdPartBuilder - - Part - Geometrijsko tijelo + Part + Geometrijsko tijelo - - Shape builder... - Graditelj oblika ... + Shape builder... + Graditelj oblika ... - - Advanced utility to create shapes - Napredni alat za izradu oblika + Advanced utility to create shapes + Napredni alat za izradu oblika - - + + CmdPartChamfer - - Part - Geometrijsko tijelo + Part + Geometrijsko tijelo - - Chamfer... - + Chamfer... + Zarubi... - - Chamfer the selected edges of a shape - + Chamfer the selected edges of a shape + Zarubi odabrane rubove, površine ili tijela - - + + CmdPartCommon - - Part - Geometrijsko tijelo + Part + Geometrijsko tijelo - - Intersection - Presjek + Intersection + Presjek - - Make an intersection of two shapes - Napravite presjek dva oblika + Make an intersection of two shapes + Napravite presjek dva oblika - - + + CmdPartCone - - Part - Geometrijsko tijelo + + Part + Geometrijsko tijelo - - Cone - Stožac + Cone + Stožac - - Create a cone solid - Napravi stožasto tijelo + Create a cone solid + Napravi stožasto tijelo - - + + CmdPartCrossSections - - Part - Geometrijsko tijelo + + Part + Geometrijsko tijelo - - Cross-sections... - Presjeci... + Cross-sections... + Presjeci... - - Cross-sections - Presjeci + Cross-sections + Presjeci - - + + CmdPartCut - - Part - Geometrijsko tijelo + Part + Geometrijsko tijelo - - Cut - Isječak + Cut + Isječak - - Make a cut of two shapes - Napravi izrez dva oblika + Make a cut of two shapes + Napravi izrez dva oblika - - + + CmdPartCylinder - - Part - Geometrijsko tijelo + + Part + Geometrijsko tijelo - - Create a Cylinder - Napravi Cilindar + Create a Cylinder + Napravi Cilindar - - Cylinder - Cilindar + Cylinder + Valjak - - + + CmdPartExport - - Part - Geometrijsko tijelo + + Part + Geometrijsko tijelo - - Export CAD... - Izvezi CAD ... + Export CAD... + Izvezi CAD ... - - Exports to a CAD file - Izvoz u CAD datoteku + Exports to a CAD file + Izvoz u CAD datoteku - - + + CmdPartExtrude - - Part - Geometrijsko tijelo + Part + Geometrijsko tijelo - - Extrude... - Izvuci ... + Extrude... + Izvuci ... - - Extrude a selected sketch - Izvuci odabranu skicu + Extrude a selected sketch + Izvuci odabranu skicu - - + + CmdPartFillet - - Part - Geometrijsko tijelo + Part + Geometrijsko tijelo - - Fillet... - Zaobli ... + Fillet... + Zaobli ... - - Fillet the selected edges of a shape - Zaobli odabrane rubove oblika + Fillet the selected edges of a shape + Zaobli odabrane rubove oblika - - + + CmdPartFuse - - Part - Geometrijsko tijelo + Part + Geometrijsko tijelo - - Union - Unija + Union + Unija - - Make a union of several shapes - Napravi uniju nekoliko oblika + Make a union of several shapes + Napravi uniju nekoliko oblika - - + + CmdPartImport - - Part - Geometrijsko tijelo + Part + Geometrijsko tijelo - - Imports a CAD file - Učitaj CAD datoteku + Imports a CAD file + Učitaj CAD datoteku - - Import CAD... - Učitaj CAD ... + Import CAD... + Učitaj CAD ... - - + + CmdPartImportCurveNet - - Part - Geometrijsko tijelo + Part + Geometrijsko tijelo - - Import a curve network - Uvoz krivulje mreže + Import a curve network + Uvoz krivulje mreže - - Import curve network... - Uvoz krivulje mreže... + Import curve network... + Uvoz krivulje mreže... - - + + CmdPartLoft - - Part - Geometrijsko tijelo + Part + Geometrijsko tijelo - - Loft... - Tuba... + Loft... + Tuba... - - Utility to loft - + Utility to loft + Alat za loft - Advanced utility to lofts - Napredni alati za tube + Advanced utility to lofts + Napredni alati za tube - - + + CmdPartMakeSolid - - Part - Geometrijsko tijelo + Part + Geometrijsko tijelo - - Convert to solid - Pretvori u čvrsto tijelo + Convert to solid + Pretvori u čvrsto tijelo - - Create solid from a shell or compound - Napravi tijelo tijela iz ljuske ili skupine + Create solid from a shell or compound + Napravi tijelo tijela iz ljuske ili skupine - - + + CmdPartMirror - - Part - Geometrijsko tijelo + Part + Geometrijsko tijelo - - Mirroring... - Zrcaljenje ... + Mirroring... + Zrcaljenje ... - - Mirroring a selected shape - Zrcaljenje odabranog oblika + Mirroring a selected shape + Zrcaljenje odabranog oblika - - + + CmdPartPickCurveNet - - Part - Geometrijsko tijelo + Part + Geometrijsko tijelo - - Pick curve network - Odaberite krivulju mreža + Pick curve network + Odaberite krivulju mreža - - Pick a curve network - Odaberite krivulju mreža + Pick a curve network + Odaberite krivulju mreža - - + + CmdPartPrimitives - - Part - Geometrijsko tijelo + Part + Geometrijsko tijelo - - Create primitives... - Napravi primitive ... + Create primitives... + Napravi primitive ... - - Creation of parametrized geometric primitives - Stvaranje parametriziranih geometrijskih primitiva + Creation of parametrized geometric primitives + Stvaranje parametriziranih geometrijskih primitiva - - + + CmdPartRefineShape - - Part - Geometrijsko tijelo + + Part + Geometrijsko tijelo - - Refine shape - + Refine shape + Izgladi oblik - - Refine the copy of a shape - + Refine the copy of a shape + Izgladi kopiju oblika - - + + CmdPartReverseShape - - Part - Geometrijsko tijelo + + Part + Geometrijsko tijelo - - Reverse shapes - Zamijeni oblike + Reverse shapes + Zamijeni oblike - - Reverse orientation of shapes - Obrnutia orijentacija oblika + Reverse orientation of shapes + Obrnutia orijentacija oblika - - + + CmdPartRevolve - - Part - Geometrijsko tijelo + Part + Geometrijsko tijelo - - Revolve... - Oblik generiran okretanjem ... + Revolve... + Oblik generiran okretanjem ... - - Revolve a selected shape - Generiraj oblik okretanjem + Revolve a selected shape + Generiraj oblik okretanjem - - + + CmdPartRuledSurface - - Part - Geometrijsko tijelo + Part + Geometrijsko tijelo - - Create ruled surface - Napravi glavnu površinu + Create ruled surface + Napravi glavnu površinu - - Create a ruled surface from two curves - Napravi glavnu površinu od dvije krivulje + Create a ruled surface from two curves + Napravi glavnu površinu od dvije krivulje - - + + CmdPartSection - - Make a section of two shapes - Napravi sekciju dva oblika + Make a section of two shapes + Napravi sekciju dva oblika - - Part - Geometrijsko tijelo + Part + Geometrijsko tijelo - - Section - Odsječak + Section + Odsječak - - + + CmdPartShapeFromMesh - - Part - Geometrijsko tijelo + + Part + Geometrijsko tijelo - - Create shape from mesh... - Napravi oblik iz mreže ... + Create shape from mesh... + Napravi oblik iz mreže ... - - Create shape from selected mesh object - Napravi oblik iz odabranog MESHa + Create shape from selected mesh object + Napravi oblik iz odabranog MESHa - - + + CmdPartSimpleCopy - - Part - Geometrijsko tijelo + Part + Geometrijsko tijelo - - Create simple copy - Napravite jednostavnu kopiju + Create simple copy + Napravite jednostavnu kopiju - - Create a simple non-parametric copy - Napravite jednostavnu neparametarsku kopiju + Create a simple non-parametric copy + Napravite jednostavnu neparametarsku kopiju - - + + CmdPartSimpleCylinder - - Part - Geometrijsko tijelo + Part + Geometrijsko tijelo - - Create Cylinder... - Napravi Cilindar ... + Create Cylinder... + Napravi Cilindar ... - - Create a Cylinder - Napravi Cilindar + Create a Cylinder + Napravi Cilindar - - + + CmdPartSphere - - Create a sphere solid - Napravi sferu + + Create a sphere solid + Napravi sferu - - Part - Geometrijsko tijelo + Part + Geometrijsko tijelo - - Sphere - Kugla + Sphere + Kugla - - + + CmdPartSweep - - Part - Geometrijsko tijelo + + Part + Geometrijsko tijelo - - Sweep... - + Sweep... + Sweep... - - Utility to sweep - + Utility to sweep + Alat za Sweep - - + + CmdPartTorus - - Create a torus solid - Napravi okruglo ispupčenje na stubu + + Create a torus solid + Napravi okruglo ispupčenje na stubu - - Part - Geometrijsko tijelo + Part + Geometrijsko tijelo - - Torus - Zavojnica + Torus + Zavojnica - - + + DlgExtrusion - Select a shape for extrusion, first. - Prvo odaberite oblik za ekstruziju. + Select a shape for extrusion, first. + Prvo odaberite oblik za ekstruziju. - The document '%1' doesn't exist. - The document '%1' doesn't exist. + The document '%1' doesn't exist. + The document '%1' doesn't exist. - - + + DlgRevolution - Select a shape for revolution, first. - Prvo odaberite oblik. + Select a shape for revolution, first. + Prvo odaberite oblik. - - + + DlgSettings3DViewPart - Deviation - Odstupanje + Deviation + Odstupanje - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Postavljanje premalene devijacije uzrokuje smrzavanje ili usporava korisničko sučelje. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Postavljanje premalene devijacije uzrokuje smrzavanje ili usporava korisničko sučelje. - - + + PartGui::CrossSections - - Cross sections - Presjeci + + Cross sections + Presjeci - - Guiding plane - Vodeća površina + Guiding plane + Vodeća površina - - XY - XY + XY + XY - - XZ - XZ + XZ + XZ - - YZ - YZ + YZ + YZ - - Position: - Položaj: + Position: + Položaj: - - Sections - Odjeljci + Sections + Odjeljci - - On both sides - S obje strane + On both sides + S obje strane - - Count - Broj + Count + Broj - - Distance: - Udaljenost: + Distance: + Udaljenost: - - + + PartGui::DlgBooleanOperation - - Boolean Operation - Booleove operacije + + Boolean Operation + Booleove operacije - - Second shape - Drugi oblik + Second shape + Drugi oblik - - First shape - Prvi oblik + First shape + Prvi oblik - - Boolean operation - Booleova operacija + Boolean operation + Booleova operacija - - Section - Odsječak + Section + Odsječak - - Difference - Razlika + Difference + Razlika - - Union - Unija + Union + Unija - - Intersection - Presjek + Intersection + Presjek - - Cannot perform a boolean operation with the same shape - Ne možete izvesti operaciju s istim oblikom + + Cannot perform a boolean operation with the same shape + Ne možete izvesti operaciju s istim oblikom - - - Solids - Tijela + + Solids + Tijela - - - Shells - Omotači + Shells + Omotači - - - Compounds - Spojevi + Compounds + Spojevi - - - Faces - Plohe + Faces + Plohe - - Swap selection - Zamijeni odabir + Swap selection + Zamijeni odabir - - Select a shape on the left side, first - Prvo odaberite oblik na lijevoj strani + + Select a shape on the left side, first + Prvo odaberite oblik na lijevoj strani - - Select a shape on the right side, first - Prvo odaberite oblik na desnoj strani + Select a shape on the right side, first + Prvo odaberite oblik na desnoj strani - - No active document available - Nema aktivnog dostupnog dokumenta + No active document available + Nema aktivnog dostupnog dokumenta - - One of the selected objects doesn't exist anymore - Jedan od odabranih objekata više ne postoji + One of the selected objects doesn't exist anymore + Jedan od odabranih objekata više ne postoji - - Performing union on non-solids is not possible - Nije moguće izvođenje spajanja na objektima koji nisu tijela + Performing union on non-solids is not possible + Nije moguće izvođenje spajanja na objektima koji nisu tijela - - Performing intersection on non-solids is not possible - Nije moguće izvođenje prejeka na objektima koji nisu tijela + Performing intersection on non-solids is not possible + Nije moguće izvođenje prejeka na objektima koji nisu tijela - - Performing difference on non-solids is not possible - Nije moguće izvođenje razlike na objektima koji nisu tijela + Performing difference on non-solids is not possible + Nije moguće izvođenje razlike na objektima koji nisu tijela - - + + PartGui::DlgChamferEdges - - Chamfer Edges - + + Chamfer Edges + Zarubi stranice - - + + PartGui::DlgExtrusion - - Extrude - Izvuceno + + Extrude + Izvuceno - - Direction - Smjer + Direction + Smjer - - Along normal - Uz normalu + Along normal + Uz normalu - - Length: - Duljina: + Length: + Duljina: - - 3D view - 3D prikaz + 3D view + 3D prikaz - - Note:This option works for planes only - Napomena: Ova opcija radi samo za ravnine + Note:This option works for planes only + Napomena: Ova opcija radi samo za ravnine - - Create solid - Napravi čvrsto tijelo + Create solid + Napravi čvrsto tijelo - - Taper outward angle - + Taper outward angle + Zašilji vanjski kut - - Shape - Oblik + Shape + Oblik - - + + - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - Select a shape for extrusion, first. - Prvo odaberite oblik za ekstruziju. + + Select a shape for extrusion, first. + Prvo odaberite oblik za ekstruziju. - - The document '%1' doesn't exist. - The document '%1' doesn't exist. + The document '%1' doesn't exist. + The document '%1' doesn't exist. - - + + PartGui::DlgFilletEdges - - Fillet Edges - Zaobli rubove + + Fillet Edges + Zaobli rubove - - Fillet Parameter - Parametar zaobljenja + Fillet Parameter + Parametar zaobljenja - - Radius: - Radijus: + Radius: + Polumjer: - - Fillet type: - Tip zaobljenja: + Fillet type: + Tip zaobljenja: - - Constant Radius - Konstantan Radius + Constant Radius + Konstantan Radius - - Variable Radius - Promjenjivi polumjer + Variable Radius + Promjenjivi polumjer - - Shape - Oblik + Shape + Oblik - - Selected shape: - Odabrani oblik: + Selected shape: + Odabrani oblik: - - No selection - Bez izbora + No selection + Nema odabira - - Edges to fillet - Zaobli rubove + + Edges to fillet + Zaobli rubove - - - Start radius - Početni radijus + Start radius + Početni radijus - - End radius - Krajnji radijus + End radius + Krajnji radijus - - Radius - Polumjer + Radius + Polumjer - - No edge selected - Nema odabranih rubova + No edge selected + Nema odabranih rubova - - No edge entity is checked to fillet. + No edge entity is checked to fillet. Please check one or more edge entities first. - Nema rubova za zaobliti. Molimo prvo označite jedan ili više rubova. + Nema rubova za zaobliti. Molimo prvo označite jedan ili više rubova. - - All - Sve + + All + Sve - - None - Nijedan + None + Nijedan - - - Edge%1 - Rub%1 + + Edge%1 + Rub%1 - - No shape selected - Nema odabranih oblika + No shape selected + Nema odabranih oblika - - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - Nije odabran vanljan oblik. Molimo odaberite valjan oblik u padajućem okviru. + Nije odabran vanljan oblik. Molimo odaberite valjan oblik u padajućem okviru. - - + + PartGui::DlgPartBox - - Box definition - Definicija kutije + + Box definition + Definicija kutije - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - Cancel - Otkaži + Cancel + Otkaži - - OK - U redu + OK + U redu - - Size: - Veličina: + Size: + Veličina: - - Height: - Visina: + Height: + Duljina: - - Width: - Širina: + Width: + Širina: - - Length: - Duljina: + Length: + Duljina: - - Position: - Položaj: + Position: + Položaj: - - Direction: - Smjer: + Direction: + Smjer: - - + + PartGui::DlgPartCylinder - - Cylinder definition - Definiranje cilindra + + Cylinder definition + Definiranje cilindra - - Parameter - Parametar + Parameter + Parametar - - Height: - Visina: + Height: + Duljina: - - Radius: - Radijus: + Radius: + Polumjer: - - Position: - Položaj: + Position: + Položaj: - - Direction: - Smjer: + Direction: + Smjer: - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - OK - U redu + OK + U redu - - Cancel - Otkaži + Cancel + Otkaži - - + + PartGui::DlgPartImportIges - - IGES input file - IGES ulazna datoteka + + IGES input file + IGES ulazna datoteka - - ... - ... + ... + ... - - Cancel - Otkaži + Cancel + Otkaži - - OK - U redu + OK + U redu - - File Name - Naziv datoteke + File Name + Naziv datoteke - - + + - - + + PartGui::DlgPartImportIgesImp - - IGES (*.igs *.iges);;All Files (*.*) - IGES (*.igs *.iges);;Sve Datoteke (*.*) + + IGES (*.igs *.iges);;All Files (*.*) + IGES (*.igs *.iges);;Sve Datoteke (*.*) - - + + PartGui::DlgPartImportStep - - ... - ... + + ... + ... - - Cancel - Otkaži + Cancel + Otkaži - - OK - U redu + OK + U redu - - Step input file - STEP ulazna datoteka + Step input file + STEP ulazna datoteka - - File Name - Naziv datoteke + File Name + Naziv datoteke - - + + - - + + PartGui::DlgPartImportStepImp - - STEP (*.stp *.step);;All Files (*.*) - STEP (*.stp *.step);;Sve Datoteke (*.*) + + STEP (*.stp *.step);;All Files (*.*) + STEP (*.stp *.step);;Sve Datoteke (*.*) - - + + PartGui::DlgPrimitives - - Geometric Primitives - Geometrijski primitivi + + Geometric Primitives + Geometrijski primitivi - Primitive - Primitiv + Primitive + Primitiv - X min - X min + X min + X min - x max - x max + x max + x max - Y min - Y min + Y min + Y min - Y max - Y max + Y max + Y max - Z min - Z min + Z min + Z min - Z max - Z max + Z max + Z max - X2 min - X2 min + X2 min + X2 min - X2 max - X2 max + X2 max + X2 max - Z2 min - Z2 min + Z2 min + Z2 min - Z2 max - Z2 max + Z2 max + Z2 max - Angle - 0 for cyl - Kut - 0 za cil + Angle - 0 for cyl + Kut - 0 za cil - Angle0 - Kut0 + Angle0 + Kut0 - Angle1 - Kut1 + Angle1 + Kut1 - X Axis Value: - Vrijednost na X osi : + X Axis Value: + Vrijednost na X osi : - Y Axis Value: - Vrijednost na Y osi : + Y Axis Value: + Vrijednost na Y osi : - Z Axis Value: - Vrijednost na Z osi: + Z Axis Value: + Vrijednost na Z osi: - - Wedge - Klin + Wedge + Klin - - Circle - Krug + Circle + Krug - Vertex - Vrh + Vertex + Vrh - Position - Položaj + Position + Položaj - - - - Z: - Z: + Z: + Z: - - - - X: - X: + X: + X: - Direction: - Smjer: + Direction: + Smjer: - - - - Y: - Y: + Y: + Y: - - Plane - Površina + Plane + Površina - - Box - Kutija + Box + Kutija - - Cylinder - Cilindar + Cylinder + Valjak - - Cone - Stožac + Cone + Stožac - - Sphere - Kugla + Sphere + Kugla - - Ellipsoid - Elipsoid + Ellipsoid + Elipsoid - - Torus - Zavojnica + Torus + Zavojnica - - Ellipse - + Ellipse + Elipsa - - Point - + Point + Točka - - Line - + Line + Linija - - Parameter - Parametar + Parameter + Parametar - - - Width: - Širina: + Width: + Širina: - - - Length: - Duljina: + Length: + Duljina: - - - - - Height: - Visina: + Height: + Duljina: - - - - Angle: - Kut: + Angle: + Kut: - - - - - Radius: - Radijus: + Radius: + Polumjer: - - - - Radius 1: - Polumjer 1: + Radius 1: + Polumjer 1: - - - - Radius 2: - Polumjer 2: + Radius 2: + Polumjer 2: - - - - U parametric: - U parametarski: + U parametric: + U parametarski: - - - - V parametric: - V parametarski: + V parametric: + V parametarski: - - X min/max: - + X min/max: + X min/max: - - Y min/max: - + Y min/max: + Y min/max: - - Z min/max: - + Z min/max: + Z min/max: - - X2 min/max: - + X2 min/max: + X2 min/max: - - Z2 min/max: - + Z2 min/max: + Z2 min/max: - - Coordinate system: - + Coordinate system: + Koordinatni sustav: - - Right-handed - + Right-handed + Dešnjak - - Left-handed - + Left-handed + Lijevak - - - Angle 1: - + Angle 1: + Kut 1: - - - Angle 2: - + Angle 2: + Kut 2: - - From three points - + From three points + Iz tri točke - - Major radius: - + Major radius: + Veći radius: - - Minor radius: - + Minor radius: + Manji radius: - - End point - + End point + Konačna točka - - Start point - + Start point + očetna točka - - &Create - Napravi + + &Create + &Izradi - Alt+C - Alt + C + Alt+C + Alt + C - Cl&ose - Zatvori + Cl&ose + Zatvori - Alt+O - Alt + O + Alt+O + Alt+O - - - - Create %1 - Napravi %1 + Create %1 + Napravi %1 - - No active document - Nema aktivnog dokumenta + No active document + Nema aktivnog dokumenta - - Pitch: - Vrh: + + Pitch: + Vrh: - - Helix - Spirala + Helix + Spirala - 3D View - 3D Prikaz + 3D View + 3D Prikaz - - + + PartGui::DlgRevolution - - Revolve - Oblik generiran okretanjem + + Revolve + Oblik generiran okretanjem - - Y: - Y: + Y: + Y: - - X: - X: + X: + X: - - Angle: - Kut: + Angle: + Kut: - - Z: - Z: + Z: + Z: - - Axis: - Os: + Axis: + Os: - - Shape - Oblik + Shape + Oblik - - Select line in 3D view - + Select line in 3D view + Odaberi liniju u 3D pogledu - - Select a shape for revolution, first. - Prvo odaberite oblik. + + Select a shape for revolution, first. + Prvo odaberite oblik. - - + + PartGui::DlgSettings3DViewPart - - View accuracy / Performance - Pregled točnosti / Performanse + + View accuracy / Performance + Pregled točnosti / Performanse - - View smoothing - Pregled izglađivanja + View smoothing + Pregled izglađivanja - - Using high-quality normals - Korištenje visoko kvalitetnih normala + Using high-quality normals + Korištenje visoko kvalitetnih normala - - This will slow down render speed but will lead to nicer results - To će usporiti brzinu rendera, ali će dovesti do boljeg rezultata + This will slow down render speed but will lead to nicer results + To će usporiti brzinu rendera, ali će dovesti do boljeg rezultata - - Defines the appearance of surfaces - Određuje izgled površina + Defines the appearance of surfaces + Određuje izgled površina - - Shape view - Izgled oblika + Shape view + Izgled oblika - - Tessellation - Mozaik + Tessellation + Mozaik - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> - - Do not define normal per vertex - Ne definirati normalu po vrhu + Do not define normal per vertex + Ne definirati normalu po vrhu - - Defines the deviation of tessellation to the actual surface - Određuje odstupanje od mozaika i stvarne površine + Defines the deviation of tessellation to the actual surface + Određuje odstupanje od mozaika i stvarne površine - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-weight:600;">Savjet</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> Definiranje normale na vrh je također pozvao <span style=" font-style:italic;">Phong sjenčanje</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"> <span style=" font-style:normal;">pri definiranju normale po licu se zove</span> Stan <span style=" font-style:normal;">sjenčanje.</span> </p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> - - Maximum deviation depending on the model bounding box - Maksimalno odstupanje ovisno o graničnom okviru modela + Maximum deviation depending on the model bounding box + Maksimalno odstupanje ovisno o graničnom okviru modela - - % - % + % + % - - Deviation - Odstupanje + + Deviation + Odstupanje - - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Postavljanje premalene devijacije uzrokuje smrzavanje ili usporava korisničko sučelje. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Postavljanje premalene devijacije uzrokuje smrzavanje ili usporava korisničko sučelje. - - + + PartGui::DlgSettingsGeneral - - General - Općenito + + General + Općenito - - Export - Izvoz + Export + Izvoz - - Millimeter - Milimetar + Millimeter + Milimetar - - Meter - Metar + Meter + Metar - - Inch - Palac + Inch + Palac - - Units for export of STEP/IGES - Jedinice za izvoz STEP / IGES + Units for export of STEP/IGES + Jedinice za izvoz STEP / IGES - - Model settings - + Model settings + Postavke modela - - Automatically refine model after boolean operation - + Automatically refine model after boolean operation + Automatski pročisti model nakon boolean operacije - - Automatically check model after boolean operation - + Automatically check model after boolean operation + Automatski provjeri model nakon boolean operacije - - + + PartGui::FaceColors - - Face colors - + + Face colors + Boje ploha - - Do you really want to cancel? - + Do you really want to cancel? + Da li stvarno želiš prekinuti operaciju? - - + + PartGui::Location - - Location - + + Location + Lokacija - - Position - Položaj + Position + Položaj - - 3D View - 3D Prikaz + 3D View + 3D Prikaz - - + + PartGui::LoftWidget - - - Vertex/Wire - Vrh/Žica + + Vertex/Wire + Vrh/Žica - - - Loft - Tuba + Loft + Tuba - - Too few elements - Premalo elemenata + Too few elements + Premalo elemenata - - At least two vertices, edges or wires are required. - + At least two vertices, edges or wires are required. + Potrebne su barem dva vrha, ruba ili linije. - At least two vertices or wires are required. - Najmanje dva vrha ili žice su obavezne. + At least two vertices or wires are required. + Najmanje dva vrha ili žice su obavezne. - - + + PartGui::Mirroring - - Mirroring - Zrcaljenje + + Mirroring + Zrcaljenje - - Shapes - Oblici + Shapes + Oblici - - Mirror plane: - Površina zrcaljenja: + Mirror plane: + Površina zrcaljenja: - - XY plane - XY ravnina + XY plane + XY ravnina - - XZ plane - Xz ravnina + XZ plane + Xz ravnina - - YZ plane - YZ ravnina + YZ plane + YZ ravnina - - Base point: - Bazna točka: + Base point: + Bazna točka: - - x - x + x + x - - y - y + y + y - - z - z + z + z - - Select a shape for mirroring, first. - Prvo odaberite oblik za zrcaljenje. + + Select a shape for mirroring, first. + Prvo odaberite oblik za zrcaljenje. - - No such document '%1'. - Ne postoji takav dokument '%1'. + No such document '%1'. + Ne postoji takav dokument '%1'. - - + + PartGui::ShapeBuilderWidget - - - - - - Wrong selection - Pogrešan odabir + + Wrong selection + Pogrešan odabir - - - Select two vertices - Odaberite dva vrha + Select two vertices + Odaberite dva vrha - Select three or more edges - Odaberite tri ili više rubova + Select three or more edges + Odaberite tri ili više rubova - - Select one or more edges - + Select one or more edges + Odaberi jedan ili više rubova - - Select two or more faces - Odaberite dvije ili više površina + Select two or more faces + Odaberite dvije ili više površina - - Select only one part object - Odaberite samo jedan čvrsti objekt + Select only one part object + Odaberite samo jedan čvrsti objekt - - Select two vertices to create an edge - Odaberite dva vrha za stvaranje ruba + Select two vertices to create an edge + Odaberite dva vrha za stvaranje ruba - - Select a closed set of edges - Odaberite zatvoren skup bridova + Select a closed set of edges + Odaberite zatvoren skup bridova - - Select adjacent faces - Odaberite susjedne plohu + Select adjacent faces + Odaberite susjedne plohu - - All shape types can be selected - Sve vrste oblika se mogu odabrati + All shape types can be selected + Sve vrste oblika se mogu odabrati - - + + PartGui::SweepWidget - - - Vertex/Wire - Vrh/Žica + + Vertex/Wire + Vrh/Žica - - - Sweep - + Sweep + Sweep - - Sweep path - + Sweep path + utanja za sweep - - Select an edge or wire you want to sweep along. - + Select an edge or wire you want to sweep along. + Odaberi putanju po kojoj želiš napraviti sweep. - - Too few elements - Premalo elemenata + Too few elements + Premalo elemenata - - At least one edge or wire is required. - + At least one edge or wire is required. + Potreban je barem jedan rub ili žica. - - + + PartGui::TaskDialogEditDynamic - Hint - Hint + Hint + Savjet - Select Control. - Select Control. + Select Control. + Odaberite kontrolu. - Control - Control + Control + Kontrola - Dynamic - Dynamic + Dynamic + Dinamičan - Align - Align + Align + Poravnati - Value - Vrijednost + Value + Vrijednost - Special - Special + Special + Poseban - Command - Naredba + Command + Naredba - Stretch - Stretch + Stretch + Rastegni - Move - Pomicanje + Move + Pomicanje - Rotate - Rotiraj + Rotate + Rotiraj - Offset - Pomak + Offset + Pomak - Orient - Orient + Orient + Orijentiraj - Match - Match + Match + Izjednači - Surround - Surround + Surround + Okruži - dummy - dummy + dummy + lutka - X Axis - X Axis + X Axis + X os - Y Axis - Y Axis + Y Axis + Y os - Z Axis - Z Axis + Z Axis + Z os - Increment - Increment + Increment + Povećanje - .125 - .125 + .125 + 0,125 - .500 - .500 + .500 + 0,500 - 1.000 - 1.000 + 1.000 + 1,000 - 5.000 - 5.000 + 5.000 + 5,000 - 10.000 - 10.000 + 10.000 + 10,000 - Drag arrows to stretch box by increment - Drag arrows to stretch box by increment + Drag arrows to stretch box by increment + Povucite strelice da bi rastegli kutiju za vrijednost - Drag arrows to move box by increment - Drag arrows to move box by increment + Drag arrows to move box by increment + Povucite strelice da bi pomiakli kutiju za vrijednost - Not implemented yet - Not implemented yet + Not implemented yet + Nije još implementirano - Drag arrows to offset checked axes by increment - Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment + Povucite strelice za pomak osi za vrijednost - Select dragger for stretch by align - Select dragger for stretch by align + Select dragger for stretch by align + Odaberi točku zbog rastezanja za poravnavanje - Select dragger for move by align - Select dragger for move by align + Select dragger for move by align + Odaberi točku zbog pomicanja za poravnavanje - Select dragger for stretch by value - Select dragger for stretch by value + Select dragger for stretch by value + Odaberi točku zbog rastezanja za vrijednost - Select dragger for move by value - Select dragger for move by value + Select dragger for move by value + Odaberi točku zbog pomicanja za vrijednost - 1.0 - 1.0 + 1.0 + 1,0 - Enter Value - Enter Value + Enter Value + Unesite vrijednost - Select box to match - Select box to match + Select box to match + Odaberite okvir za poravnavanje - Select a point - Select a point + Select a point + Odaberite točku - 0.0 - 0.0 + 0.0 + 0,0 - Select dragger to align - Select dragger to align + Select dragger to align + Odaberi točku za poravnati - Select dragger to modify - Select dragger to modify + Select dragger to modify + Odaberi točku za modificirati - - + + PartGui::TaskFaceColors - - Set color per face - Postavi boju po pojedinoj plohi + + Set color per face + Postavi boju po pojedinoj plohi - - Click on the faces in the 3d view to select them. - Kliknite na plohe u 3D pogledu da bi ih odabrali. + Click on the faces in the 3d view to select them. + Kliknite na plohe u 3D pogledu da bi ih odabrali. - - Faces: - Plohe: + Faces: + Plohe: - - Set to default - Postavi na zadanu vrijednost + Set to default + Postavi na zadanu vrijednost - - + + PartGui::TaskLoft - - Loft - Tuba + + Loft + Tuba - Vertex/Wire - Vrh/Žica + Vertex/Wire + Vrh/Žica - Move right - Pomakni desno + Move right + Pomakni desno - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Premještanje odabrane stavke jednu razinu prema dolje.</b> <p> To će također promijeniti razinu roditelja stavke. </p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Premještanje odabrane stavke jednu razinu prema dolje.</b> <p> To će također promijeniti razinu roditelja stavke. </p> - Move left - Pomakni lijevo + Move left + Pomakni lijevo - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Premještanje odabrane stavke jednu razinu gore.</b> <p> To će također promijeniti razinu roditelja stavke. </p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Premještanje odabrane stavke jednu razinu gore.</b> <p> To će također promijeniti razinu roditelja stavke. </p> - Move up - Pomakni gore + Move up + Pomakni gore - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Premještanje odabrane stavke gore.</b> <p> Jedinica će biti premještena unutar razine hijerarhije. </p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Premještanje odabrane stavke gore.</b> <p> Jedinica će biti premještena unutar razine hijerarhije. </p> - Move down - Pomakni dolje + Move down + Pomakni dolje - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Premještanje odabrane stavke prema dolje.</b> <p> Jedinica će biti premještena unutar razine hijerarhije. </p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Premještanje odabrane stavke prema dolje.</b> <p> Jedinica će biti premještena unutar razine hijerarhije. </p> - - Create solid - Napravi čvrsto tijelo + Create solid + Napravi čvrsto tijelo - - Ruled surface - Ravne površine + Ruled surface + Ravne površine - - + + PartGui::TaskShapeBuilder - - - Create shape - Napravi oblik + + Create shape + Napravi oblik - - Edge from vertices - Rub iz vrhova + Edge from vertices + Rub iz vrhova - - Face from edges - Ploha iz rubova + Face from edges + Ploha iz rubova - - Planar - Planar + Planar + Planar - - Shell from faces - Ljuska iz ploha + Shell from faces + Ljuska iz ploha - - Solid from shell - Čvrsto tijelo iz ljuske + Solid from shell + Čvrsto tijelo iz ljuske - - Create - Stvoriti + Create + Stvoriti - - All faces - Sve plohe + All faces + Sve plohe - - + + PartGui::TaskSweep - - Sweep - + + Sweep + Sweep - - Create solid - Napravi čvrsto tijelo + Create solid + Napravi čvrsto tijelo - - Frenet - + Frenet + Frenet - - Select one or more profiles and select an edge or wire + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. - + Odaberi jedan ili više profila i odaberi rub ili žicu +u 3D pogledu kao putanju za Sweep. - - + + QObject - - - - - - Wrong selection - Pogrešan odabir + + Wrong selection + Pogrešan odabir - - - Select two shapes please. - Molim odaberite dva oblika. + Select two shapes please. + Molim odaberite dva oblika. - - - - All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) - Sve CAD datoteke (*.stp *.step *.igs *.iges *.brp *.brep) + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + Sve CAD datoteke (*.stp *.step *.igs *.iges *.brp *.brep) - - - - STEP (*.stp *.step) - STEP (*.step *.stp) + STEP (*.stp *.step) + STEP (*.step *.stp) - - - - IGES (*.igs *.iges) - IGES (*.igs *.iges) + IGES (*.igs *.iges) + IGES (*.igs *.iges) - - - - BREP (*.brp *.brep) - BREP (*.brp *.brep) + BREP (*.brp *.brep) + BREP (*.brp *.brep) - - - - All Files (*.*) - Sve datoteke (*.*) + All Files (*.*) + Sve datoteke (*.*) - - Sewing Tolerance - Tolerancija za šivanje + + Sewing Tolerance + Tolerancija za šivanje - - Enter tolerance for sewing shape: - Unesite tolerancije za šivanje oblika: + Enter tolerance for sewing shape: + Unesite tolerancije za šivanje oblika: - - Edit mirror plane - Uredi površinu zrcaljenja + + Edit mirror plane + Uredi površinu zrcaljenja - - Edit chamfer edges - + Edit chamfer edges + Prilagodi krajeve zaruba - Transform - Transformirati + Transform + Transformiraj - - - Part design - Dizajn Tijela + + Part design + Dizajn Tijela - - - Select two shapes or more, please. - Odaberite dva ili više oblika, molim. + + Select two shapes or more, please. + Odaberite dva ili više oblika, molim. - - You have to select either two edges or two wires. - Trebate odabrati bilo dvije oštrice ili dvije žice. + You have to select either two edges or two wires. + Trebate odabrati bilo dvije oštrice ili dvije žice. - - Edit fillet edges - Uredi zaobljene rubove + + Edit fillet edges + Uredi zaobljene rubove - - Set colors... - Postavljanje boje ... + + Set colors... + Postavljanje boje ... - - + + Workbench - - &Part - Tijelo + + &Part + Tijelo - - &Simple - Jednostavan + &Simple + Jednostavan - - &Parametric - Parametarski + &Parametric + Parametarski - - Part tools - Alati za manipulaciju sa tijelima + Part tools + Alati za manipulaciju sa tijelima - - Solids - Tijela + Solids + Tijela - - Boolean - Booleova + Boolean + Boolean - + diff --git a/src/Mod/Part/Gui/Resources/translations/Part_hu.qm b/src/Mod/Part/Gui/Resources/translations/Part_hu.qm index 415c5cd02..30e322dc8 100644 Binary files a/src/Mod/Part/Gui/Resources/translations/Part_hu.qm and b/src/Mod/Part/Gui/Resources/translations/Part_hu.qm differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_hu.ts b/src/Mod/Part/Gui/Resources/translations/Part_hu.ts index 993cc3738..48f5c0864 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_hu.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_hu.ts @@ -1,2522 +1,2127 @@ - - + + BlockDefinition - - Block definition - Block meghatározása + + Block definition + Block meghatározása - - First limit - Első határérték + First limit + Első határérték - - - Type: - Típus: + Type: + Típus: - - - mm - mm + mm + mm - - - Length: - Hossz: + Length: + Hossz: - - - Dimension - Méret + Dimension + Méret - - - Up to next - Következőig + Up to next + Következőig - - - Up to last - Előzőig + Up to last + Előzőig - - - Up to plane - Síkig + Up to plane + Síkig - - - Up to face - Felületig + Up to face + Felületig - - - Limit: - Határérték: + Limit: + Határérték: - - - - - No selection - Nincs kijelölés + No selection + Nincs kijelölés - - Profile - Profil + Profile + Profil - - Selection: - Kijelölés: + Selection: + Kiválasztás: - - Reverse - Fordított + Reverse + Fordított - - Both sides - Mindkét oldalon + Both sides + Mindkét oldalon - - Second limit - Második határérték + Second limit + Második határérték - - Direction - Irány + Direction + Irány - - Perpendicular to sketch - Merőleges a vázlatra + Perpendicular to sketch + Merőleges a vázlatra - - Reference - Referencia + Reference + Referencia - - Apply - Alkalmaz + Apply + Alkalmaz - - Cancel - Mégse + Cancel + Mégse - - OK - OK + OK + OK - - + + CmdPartBoolean - - Part - Alkatrész + + Part + Alkatrész - - Boolean... - Logikai... + Boolean... + Logikai... - - Run a boolean operation with two shapes selected - Logikai művelet végrehajtása a két kijelölt alakzaton + Run a boolean operation with two shapes selected + Logikai művelet végrehajtása a két kijelölt alakzaton - - + + CmdPartBox - - Part - Alkatrész + + Part + Alkatrész - - Box - Doboz + Box + Doboz - - Create a box solid - Hozzon létre egy doboz szilárdtestet + Create a box solid + Hozzon létre egy doboz szilárdtestet - - + + CmdPartBox2 - - Part - Alkatrész + + Part + Alkatrész - - Box fix 1 - Rögzített doboz 1 + Box fix 1 + Rögzített doboz 1 - - Create a box solid without dialog - Hozzon létre egy doboz szilárd testet párbeszéd nélkül + Create a box solid without dialog + Hozzon létre egy doboz szilárd testet párbeszéd nélkül - - + + CmdPartBox3 - - Part - Alkatrész + Part + Alkatrész - - Box fix 2 - Rögzített doboz 2 + Box fix 2 + Rögzített doboz 2 - - Create a box solid without dialog - Hozzon létre egy doboz szilárd testet párbeszéd nélkül + Create a box solid without dialog + Hozzon létre egy doboz szilárd testet párbeszéd nélkül - - + + CmdPartBuilder - - Part - Alkatrész + Part + Alkatrész - - Shape builder... - Alak építő ... + Shape builder... + Alak építő ... - - Advanced utility to create shapes - Forma létrehozó fejlett eszköz + Advanced utility to create shapes + Forma létrehozó fejlett eszköz - - + + CmdPartChamfer - - Part - Alkatrész + Part + Alkatrész - - Chamfer... - + Chamfer... + Letörés... - - Chamfer the selected edges of a shape - + Chamfer the selected edges of a shape + Az alakzat kijelölt éleinek letörése - - + + CmdPartCommon - - Part - Alkatrész + Part + Alkatrész - - Intersection - Metszet + Intersection + Metszet - - Make an intersection of two shapes - Készíts egy kereszteződés két alakzattal + Make an intersection of two shapes + Készíts egy kereszteződés két alakzattal - - + + CmdPartCone - - Part - Alkatrész + + Part + Alkatrész - - Cone - Kúp + Cone + Kúp - - Create a cone solid - Hozzon létre egy kúp testet + Create a cone solid + Hozzon létre egy kúp testet - - + + CmdPartCrossSections - - Part - Alkatrész + + Part + Alkatrész - - Cross-sections... - Keresztmetszet... + Cross-sections... + Keresztmetszet... - - Cross-sections - Keresztmetszet + Cross-sections + Keresztmetszet - - + + CmdPartCut - - Part - Alkatrész + Part + Alkatrész - - Cut - Kivágás + Cut + Kivágás - - Make a cut of two shapes - Készíts egy vágás a két alakzattal + Make a cut of two shapes + Készíts egy vágás a két alakzattal - - + + CmdPartCylinder - - Part - Alkatrész + + Part + Alkatrész - - Create a Cylinder - Henger létrehozása + Create a Cylinder + Henger létrehozása - - Cylinder - Henger + Cylinder + Henger - - + + CmdPartExport - - Part - Alkatrész + + Part + Alkatrész - - Export CAD... - Export CAD ... + Export CAD... + Export CAD ... - - Exports to a CAD file - CAD fájlok exportálása + Exports to a CAD file + CAD fájlok exportálása - - + + CmdPartExtrude - - Part - Alkatrész + Part + Alkatrész - - Extrude... - Kihúzás... + Extrude... + Kihúzás... - - Extrude a selected sketch - Kiválasztott vázlat kihúzása + Extrude a selected sketch + Kiválasztott vázlat kihúzása - - + + CmdPartFillet - - Part - Alkatrész + Part + Alkatrész - - Fillet... - Lekerekítés... + Fillet... + Lekerekítés... - - Fillet the selected edges of a shape - Egy alakzat kiválasztott éleinek lekerekítése + Fillet the selected edges of a shape + Egy alakzat kiválasztott éleinek lekerekítése - - + + CmdPartFuse - - Part - Alkatrész + Part + Alkatrész - - Union - Egyesítés + Union + Egyesítés - - Make a union of several shapes - Készíts egy uniót több formához + Make a union of several shapes + Készíts egy uniót több formához - - + + CmdPartImport - - Part - Alkatrész + Part + Alkatrész - - Imports a CAD file - CAD-fájl importálása + Imports a CAD file + CAD-fájl importálása - - Import CAD... - CAD import + Import CAD... + CAD import... - - + + CmdPartImportCurveNet - - Part - Alkatrész + Part + Alkatrész - - Import a curve network - Görbe hálózat importálása + Import a curve network + Görbe hálózat importálása - - Import curve network... - Görbe hálózat importálás... + Import curve network... + Görbe hálózat importálás... - - + + CmdPartLoft - - Part - Alkatrész + Part + Alkatrész - - Loft... - Szint ... + Loft... + Szint ... - - Utility to loft - + Utility to loft + Elágazás segédprogram - Advanced utility to lofts - Speciális segédprogram szintekhez + Advanced utility to lofts + Speciális segédprogram szintekhez - - + + CmdPartMakeSolid - - Part - Alkatrész + Part + Alkatrész - - Convert to solid - Konvertálás szilárd testté + Convert to solid + Konvertálás szilárd testté - - Create solid from a shell or compound - Hozzon létre egy alakzatot szilárd héjból vagy összetettből + Create solid from a shell or compound + Hozzon létre egy alakzatot szilárd héjból vagy összetettből - - + + CmdPartMirror - - Part - Alkatrész + Part + Alkatrész - - Mirroring... - Tükrözés... + Mirroring... + Tükrözés... - - Mirroring a selected shape - A kijelölt alakzat tükrözése + Mirroring a selected shape + A kijelölt alakzat tükrözése - - + + CmdPartPickCurveNet - - Part - Alkatrész + Part + Alkatrész - - Pick curve network - Válasszon görbét + Pick curve network + Válasszon görbét - - Pick a curve network - Válasszon egy görbét + Pick a curve network + Válasszon egy görbét - - + + CmdPartPrimitives - - Part - Alkatrész + Part + Alkatrész - - Create primitives... - Primitívek létrehozása... + Create primitives... + Primitívek létrehozása... - - Creation of parametrized geometric primitives - Paraméteres geometriai primitívek létrehozása + Creation of parametrized geometric primitives + Paraméteres geometriai primitívek létrehozása - - + + CmdPartRefineShape - - Part - Alkatrész + + Part + Alkatrész - - Refine shape - + Refine shape + Alakzat finomítás - - Refine the copy of a shape - + Refine the copy of a shape + Alakzat másolatának finomítása - - + + CmdPartReverseShape - - Part - Alkatrész + + Part + Alkatrész - - Reverse shapes - Fordított alakzat + Reverse shapes + Fordított alakzat - - Reverse orientation of shapes - Alakzat irányának megfordítása + Reverse orientation of shapes + Alakzat irányának megfordítása - - + + CmdPartRevolve - - Part - Alkatrész + Part + Alkatrész - - Revolve... - Forgatás + Revolve... + Körmetszés... - - Revolve a selected shape - Kijelölt alakzat forgatása + Revolve a selected shape + Kijelölt alakzat körmetszése - - + + CmdPartRuledSurface - - Part - Alkatrész + Part + Alkatrész - - Create ruled surface - Zárható felület létrehozása + Create ruled surface + Zárható felület létrehozása - - Create a ruled surface from two curves - Hozzon létre egy zárható felületet két görbével + Create a ruled surface from two curves + Hozzon létre egy zárható felületet két görbével - - + + CmdPartSection - - Make a section of two shapes - Szakasz készítése két alakzattal + Make a section of two shapes + Szakasz készítése két alakzattal - - Part - Alkatrész + Part + Alkatrész - - Section - Szakasz + Section + Szakasz - - + + CmdPartShapeFromMesh - - Part - Alkatrész + + Part + Alkatrész - - Create shape from mesh... - Alakzat létrehozása hálóból... + Create shape from mesh... + Alakzat létrehozása hálóból... - - Create shape from selected mesh object - Alakzat létrehozása a kijelölt háló objektumból + Create shape from selected mesh object + Alakzat létrehozása a kijelölt háló objektumból - - + + CmdPartSimpleCopy - - Part - Alkatrész + Part + Alkatrész - - Create simple copy - Készítsen egyszerű másolást + Create simple copy + Készítsen egyszerű másolást - - Create a simple non-parametric copy - Hozzon létre egy egyszerű, nem parametrikus másolatot + Create a simple non-parametric copy + Hozzon létre egy egyszerű, nem parametrikus másolatot - - + + CmdPartSimpleCylinder - - Part - Alkatrész + Part + Alkatrész - - Create Cylinder... - Henger létrehozása... + Create Cylinder... + Henger létrehozása... - - Create a Cylinder - Henger létrehozása + Create a Cylinder + Henger létrehozása - - + + CmdPartSphere - - Create a sphere solid - Hozzon létre egy szilárdgömb testet + + Create a sphere solid + Hozzon létre egy szilárdgömb testet - - Part - Alkatrész + Part + Alkatrész - - Sphere - Gömb + Sphere + Gömb - - + + CmdPartSweep - - Part - Alkatrész + + Part + Alkatrész - - Sweep... - + Sweep... + Húzás... - - Utility to sweep - + Utility to sweep + Segédprogram a húzáshoz - - + + CmdPartTorus - - Create a torus solid - Hozzon létre egy tórusz testet + + Create a torus solid + Hozzon létre egy tórusz testet - - Part - Alkatrész + Part + Alkatrész - - Torus - Tórusz + Torus + Tórusz - - + + DlgExtrusion - Select a shape for extrusion, first. - Select a shape for extrusion, first. + Select a shape for extrusion, first. + Select a shape for extrusion, first. - The document '%1' doesn't exist. - The document '%1' doesn't exist. + The document '%1' doesn't exist. + The document '%1' doesn't exist. - - + + DlgRevolution - Select a shape for revolution, first. - Select a shape for revolution, first. + Select a shape for revolution, first. + Select a shape for revolution, first. - - + + DlgSettings3DViewPart - Deviation - Eltérés + Deviation + Eltérés - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - - + + PartGui::CrossSections - - Cross sections - Keresztmetszet + + Cross sections + Keresztmetszet - - Guiding plane - Irányadó sík + Guiding plane + Irányadó sík - - XY - XY + XY + XY - - XZ - XZ + XZ + XZ - - YZ - YZ + YZ + YZ - - Position: - Helyzet: + Position: + Helyzet: - - Sections - Szakaszok + Sections + Szakaszok - - On both sides - Mindkét oldalon + On both sides + Mindkét oldalon - - Count - Számol + Count + Számol - - Distance: - Távolság: + Distance: + Távolság: - - + + PartGui::DlgBooleanOperation - - Boolean Operation - Logikai művelet + + Boolean Operation + Logikai művelet - - Second shape - Második alakzat + Second shape + Második alakzat - - First shape - Első alakzat + First shape + Első alakzat - - Boolean operation - Logikai művelet + Boolean operation + Logikai művelet - - Section - Szakasz + Section + Szakasz - - Difference - Különbség + Difference + Különbség - - Union - Egyesítés + Union + Egyesítés - - Intersection - Metszet + Intersection + Metszet - - Cannot perform a boolean operation with the same shape - Nem tud végrehajtani logikai művelet az azonos alakzaton + + Cannot perform a boolean operation with the same shape + Nem tud végrehajtani logikai művelet az azonos alakzaton - - - Solids - Szilárd testek + + Solids + Szilárd testek - - - Shells - Héjjak + Shells + Héjjak - - - Compounds - Összeállítások + Compounds + Összeállítások - - - Faces - Felületek + Faces + Felületek - - Swap selection - Kijelölés csere + Swap selection + Kijelölés csere - - Select a shape on the left side, first - Először bal oldalon jelölje ki az alakzatot + + Select a shape on the left side, first + Először bal oldalon jelölje ki az alakzatot - - Select a shape on the right side, first - Először jobb oldalon jelölje ki az alakzatot + Select a shape on the right side, first + Először jobb oldalon jelölje ki az alakzatot - - No active document available - Nincs elérhető aktív dokumentum + No active document available + Nincs elérhető aktív dokumentum - - One of the selected objects doesn't exist anymore - Az egyik kijelölt objektum nem létezik + One of the selected objects doesn't exist anymore + Az egyik kijelölt objektum nem létezik - - Performing union on non-solids is not possible - Nem szilárd testek egységesítése nem lehetséges + Performing union on non-solids is not possible + Nem szilárd testek egységesítése nem lehetséges - - Performing intersection on non-solids is not possible - Nem szilárd test metszése nem lehetséges + Performing intersection on non-solids is not possible + Nem szilárd test metszése nem lehetséges - - Performing difference on non-solids is not possible - Nem szilárd test kivonása egymásból nem lehetséges + Performing difference on non-solids is not possible + Nem szilárd test kivonása egymásból nem lehetséges - - + + PartGui::DlgChamferEdges - - Chamfer Edges - + + Chamfer Edges + Élek letörése - - + + PartGui::DlgExtrusion - - Extrude - Kihúzás + + Extrude + Kihúzás - - Direction - Irány + Direction + Irány - - Along normal - Normál mentén + Along normal + Normál mentén - - Length: - Hossz: + Length: + Hossz: - - 3D view - 3D nézet + 3D view + 3D nézet - - Note:This option works for planes only - Megjegyzés: Ez a beállítás csak a tervezés módban használható + Note:This option works for planes only + Megjegyzés: Ez a beállítás csak a tervezés módban használható - - Create solid - Szilárd test létrehozása + Create solid + Szilárd test létrehozása - - Taper outward angle - + Taper outward angle + Kúpos passzív szög - - Shape - Alakzat + Shape + Alakzat - - Program infó + + Program infó - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - Select a shape for extrusion, first. - Select a shape for extrusion, first. + + Select a shape for extrusion, first. + Select a shape for extrusion, first. - - The document '%1' doesn't exist. - The document '%1' doesn't exist. + The document '%1' doesn't exist. + The document '%1' doesn't exist. - - + + PartGui::DlgFilletEdges - - Fillet Edges - Élkerekítés + + Fillet Edges + Élkerekítés - - Fillet Parameter - Lekerekítés paraméter + Fillet Parameter + Lekerekítés paraméter - - Radius: - Sugár: + Radius: + Sugár: - - Fillet type: - Fájltípus: + Fillet type: + Fájltípus: - - Constant Radius - Állandó sugárral + Constant Radius + Állandó sugárral - - Variable Radius - Változó sugárral + Variable Radius + Változó sugárral - - Shape - Alakzat + Shape + Alakzat - - Selected shape: - Kiválasztott alakzat: + Selected shape: + Kiválasztott alakzat: - - No selection - Nincs kijelölés + No selection + Nincs kijelölés - - Edges to fillet - Lekerekítendő élek + + Edges to fillet + Lekerekítendő élek - - - Start radius - Kezdeti sugár + Start radius + Kezdeti sugár - - End radius - Vég sugár + End radius + Vég sugár - - Radius - Sugár + Radius + Sugár - - No edge selected - Nincs kiválasztott él + No edge selected + Nincs kiválasztott él - - No edge entity is checked to fillet. + No edge entity is checked to fillet. Please check one or more edge entities first. - Egyetlen élet sem választott ki. -Kérem, válasszon ki legalább egyet! + Egyetlen élet sem választott ki. +Kérem, válasszon ki legalább egyet. - - All - Minden + + All + Minden - - None - Nincs + None + Nincs - - - Edge%1 - Él%1 + + Edge%1 + Él%1 - - No shape selected - Nincs kijelölve alakzat + No shape selected + Nincs kijelölve alakzat - - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - Nem érvényes alakzat van kijelölve. Kérjük, először válasszon egy érvényes alakzatot a legördülő listában. + Nem érvényes alakzat van kijelölve. Kérjük, először válasszon egy érvényes alakzatot a legördülő listában. - - + + PartGui::DlgPartBox - - Box definition - Doboz meghatározás + + Box definition + Doboz meghatározás - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - Cancel - Mégse + Cancel + Mégse - - OK - OK + OK + OK - - Size: - Méret: + Size: + Méret: - - Height: - Magasság: + Height: + Magasság: - - Width: - Szélesség: + Width: + Szélesség: - - Length: - Hossz: + Length: + Hossz: - - Position: - Helyzet: + Position: + Helyzet: - - Direction: - Irány: + Direction: + Irány: - - + + PartGui::DlgPartCylinder - - Cylinder definition - Henger meghatározása + + Cylinder definition + Henger meghatározása - - Parameter - Paraméter + Parameter + Paraméter - - Height: - Magasság: + Height: + Magasság: - - Radius: - Sugár: + Radius: + Sugár: - - Position: - Helyzet: + Position: + Helyzet: - - Direction: - Irány: + Direction: + Irány: - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - OK - OK + OK + OK - - Cancel - Mégse + Cancel + Mégse - - + + PartGui::DlgPartImportIges - - IGES input file - IGES bemeneti fájl + + IGES input file + IGES bemeneti fájl - - ... - ... + ... + ... - - Cancel - Mégse + Cancel + Mégse - - OK - OK + OK + OK - - File Name - Fájlnév + File Name + Fájlnév - - Program infó + + Program infó - - + + PartGui::DlgPartImportIgesImp - - IGES (*.igs *.iges);;All Files (*.*) - IGES (*.igs *.iges);;Minden fájl (*.*) + + IGES (*.igs *.iges);;All Files (*.*) + IGES (*.igs *.iges);;Minden fájl (*.*) - - + + PartGui::DlgPartImportStep - - ... - ... + + ... + ... - - Cancel - Mégse + Cancel + Mégse - - OK - OK + OK + OK - - Step input file - Step bemeneti fájl + Step input file + Step bemeneti fájl - - File Name - Fájlnév + File Name + Fájlnév - - Program infó + + Program infó - - + + PartGui::DlgPartImportStepImp - - STEP (*.stp *.step);;All Files (*.*) - STEP (*.stp *.step);;Minden fájl (*.*) + + STEP (*.stp *.step);;All Files (*.*) + STEP (*.stp *.step);;Minden fájl (*.*) - - + + PartGui::DlgPrimitives - - Geometric Primitives - Geometriai primitívek + + Geometric Primitives + Geometriai primitívek - Primitive - Primitív + Primitive + Primitív - X min - X min + X min + X min - x max - x max + x max + x max - Y min - Y min + Y min + Y min - Y max - Y max + Y max + Y max - Z min - Z min + Z min + Z min - Z max - Z max + Z max + Z max - X2 min - X2 min + X2 min + X2 min - X2 max - X2 max + X2 max + X2 max - Z2 min - Z2 min + Z2 min + Z2 min - Z2 max - Z2 max + Z2 max + Z2 max - Angle - 0 for cyl - Szög - 0 cyl + Angle - 0 for cyl + Szög - 0 cyl - Angle0 - Szög0 + Angle0 + Szög0 - Angle1 - Szög1 + Angle1 + Szög1 - X Axis Value: - X tengely értéke: + X Axis Value: + X tengely értéke: - Y Axis Value: - Y tengely értéke: + Y Axis Value: + Y tengely értéke: - Z Axis Value: - Z tengely értéke: + Z Axis Value: + Z tengely értéke: - - Wedge - Ék + Wedge + Ék - - Circle - Kör + Circle + Kör - Vertex - Csúcs + Vertex + Csúcs - Position - Pozíció + Position + Pozíció - - - - Z: - Z: + Z: + Z: - - - - X: - X: + X: + X: - Direction: - Irány: + Direction: + Irány: - - - - Y: - Y: + Y: + Y: - - Plane - Sík + Plane + Sík - - Box - Doboz + Box + Doboz - - Cylinder - Henger + Cylinder + Henger - - Cone - Kúp + Cone + Kúp - - Sphere - Gömb + Sphere + Gömb - - Ellipsoid - Ellipszoid + Ellipsoid + Ellipszoid - - Torus - Tórusz + Torus + Tórusz - - Ellipse - + Ellipse + Ellipszis - - Point - + Point + Pont - - Line - + Line + Vonal - - Parameter - Paraméter + Parameter + Paraméter - - - Width: - Szélesség: + Width: + Szélesség: - - - Length: - Hossz: + Length: + Hossz: - - - - - Height: - Magasság: + Height: + Magasság: - - - - Angle: - Szög: + Angle: + Szög: - - - - - Radius: - Sugár: + Radius: + Sugár: - - - - Radius 1: - Sugár 1: + Radius 1: + Sugár 1: - - - - Radius 2: - Sugár 2: + Radius 2: + Sugár 2: - - - - U parametric: - U paraméter: + U parametric: + U paraméter: - - - - V parametric: - V paraméter: + V parametric: + V paraméter: - - X min/max: - + X min/max: + X min/max: - - Y min/max: - + Y min/max: + Y min/max: - - Z min/max: - + Z min/max: + Z min/max: - - X2 min/max: - + X2 min/max: + X 2 min/max: - - Z2 min/max: - + Z2 min/max: + Z2 min/max: - - Coordinate system: - + Coordinate system: + Koordináta-rendszer: - - Right-handed - + Right-handed + Jobbkezes - - Left-handed - + Left-handed + Balkezes - - - Angle 1: - + Angle 1: + 1. Szöge: - - - Angle 2: - + Angle 2: + 2. Szöge: - - From three points - + From three points + A három pontból - - Major radius: - + Major radius: + Fő sugár: - - Minor radius: - + Minor radius: + Mellék sugár: - - End point - + End point + Végpont - - Start point - + Start point + Kezdőpont - - &Create - Létrehozás + + &Create + &Létrehozás - Alt+C - Alt+C + Alt+C + Alt+C - Cl&ose - Bezár + Cl&ose + Bezár - Alt+O - Alt+O + Alt+O + Alt+O - - - - Create %1 - Létrehozás %1 + Create %1 + Létrehozás %1 - - No active document - Nincs aktív dokumentum + No active document + Nincs aktív dokumentum - - Pitch: - Döntés: + + Pitch: + Döntés: - - Helix - Csigavonal + Helix + Csigavonal - 3D View - 3D-nézet + 3D View + 3D-nézet - - + + PartGui::DlgRevolution - - Revolve - Forgatás + + Revolve + Forgatás - - Y: - Y: + Y: + Y: - - X: - X: + X: + X: - - Angle: - Szög: + Angle: + Szög: - - Z: - Z: + Z: + Z: - - Axis: - Tengely: + Axis: + Tengely: - - Shape - Alakzat + Shape + Alakzat - - Select line in 3D view - + Select line in 3D view + Jelölje ki 3D nézethez a sort - - Select a shape for revolution, first. - Select a shape for revolution, first. + + Select a shape for revolution, first. + Select a shape for revolution, first. - - + + PartGui::DlgSettings3DViewPart - - View accuracy / Performance - Pontosság/teljesítmény nézet + + View accuracy / Performance + Pontosság/teljesítmény nézet - - View smoothing - Simítás nézet + View smoothing + Simítás nézet - - Using high-quality normals - Magas-minőségű normák használata + Using high-quality normals + Magas-minőségű normák használata - - This will slow down render speed but will lead to nicer results - Ez lassítja a fordítás sebességét, de szebb eredményhez vezet + This will slow down render speed but will lead to nicer results + Ez lassítja a fordítás sebességét, de szebb eredményhez vezet - - Defines the appearance of surfaces - Meghatározza a felületek megjelenését + Defines the appearance of surfaces + Meghatározza a felületek megjelenését - - Shape view - Alakzat-nézet + Shape view + Alakzat-nézet - - Tessellation - Csempézés + Tessellation + Mozaik - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head> <body style="white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px;"> <span style="font-weight:600;"> Lapos árnyalás/Phong-árnyalás</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px;"> A lapos árnyékolással a felszíni normákat nem vertexek határozzák meg, amely ahhoz vezet, hogy a hajlított felületek irreálisak, míg a Phong árnyalás simább megjelenést biztosít.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px;">, ha ez a beállítás nem beállított akkor a Phong-árnyalást használja, ha értéke beállított, akkor a sima árnyalás van használtban.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head> <body style="white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px;"> <span style="font-weight:600;"> Lapos árnyalás/Phong-árnyalás</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px;"> A lapos árnyékolással a felszíni normákat nem vertexek határozzák meg, amely ahhoz vezet, hogy a hajlított felületek irreálisak, míg a Phong árnyalás simább megjelenést biztosít.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px;">, ha ez a beállítás nem beállított akkor a Phong-árnyalást használja, ha értéke beállított, akkor a sima árnyalás van használtban.</p></body></html> - - Do not define normal per vertex - Normál esetben ne vertexbe határozza meg + Do not define normal per vertex + Normál esetben ne vertexbe határozza meg - - Defines the deviation of tessellation to the actual surface - Meghatározza a mozaik eltérését az aktuális felületre vonatkozólag + Defines the deviation of tessellation to the actual surface + Meghatározza a mozaik eltérését az aktuális felületre vonatkozólag - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Meghatározza a mozaik háló testre vonatkozó maximum eltérését. Minél kisebb az érték, annál lasúbb a renderelés sebessége és szebb a végeredmény.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Meghatározza a mozaik háló testre vonatkozó maximum eltérését. Minél kisebb az érték, annál lasúbb a renderelés sebessége és szebb a végeredmény.</span></p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">A normálisok vertexként való megjelenítését úgy is nevezik, hogy<span style=" font-style:italic;">Phong árnyékolás</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">A normálisok vertexként való megjelenítését úgy is nevezik, hogy<span style=" font-style:italic;">Phong árnyékolás</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Ez a renderelést lelassítja, + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Ez a renderelést lelassítja, de szebb végeredményt ad.</p></body></html> - - Maximum deviation depending on the model bounding box - Legnagyobb eltérés a modell határolókeretétől függ + Maximum deviation depending on the model bounding box + Legnagyobb eltérés a modell határolókeretétől függ - - % - % + % + % - - Deviation - Eltérés + + Deviation + Eltérés - - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - - + + PartGui::DlgSettingsGeneral - - General - Általános + + General + Általános - - Export - Export + Export + Export - - Millimeter - Milliméter + Millimeter + Milliméter - - Meter - Méter + Meter + Méter - - Inch - Hüvelyk + Inch + Hüvelyk - - Units for export of STEP/IGES - Az STEP/IGES exportban használt egységek + Units for export of STEP/IGES + Az STEP/IGES exportban használt egységek - - Model settings - + Model settings + Folyamatmodell-beállításai - - Automatically refine model after boolean operation - + Automatically refine model after boolean operation + Automatikus modell finomítás a logikai művelet után - - Automatically check model after boolean operation - + Automatically check model after boolean operation + Automatikus modell ellenőrzés a logikai művelet után - - + + PartGui::FaceColors - - Face colors - + + Face colors + Felület színek - - Do you really want to cancel? - + Do you really want to cancel? + Biztosan megszakítja? - - + + PartGui::Location - - Location - + + Location + Hely - - Position - Pozíció + Position + Pozíció - - 3D View - 3D-nézet + 3D View + 3D-nézet - - + + PartGui::LoftWidget - - - Vertex/Wire - Vertex / Vonal + + Vertex/Wire + Vertex / Vonal - - - Loft - Szint + Loft + Szint - - Too few elements - Túl kevés elem + Too few elements + Túl kevés elem - - At least two vertices, edges or wires are required. - + At least two vertices, edges or wires are required. + Legalább két vonal, szegély vagy háló szükséges. - At least two vertices or wires are required. - Legalább két csúcs, illetve vonal szükséges. + At least two vertices or wires are required. + Legalább két csúcs, illetve vonal szükséges. - - + + PartGui::Mirroring - - Mirroring - Tükrözés + + Mirroring + Tükrözés - - Shapes - Alakzatok + Shapes + Alakzatok - - Mirror plane: - Tükör sík: + Mirror plane: + Tükör sík: - - XY plane - XY sík + XY plane + XY sík - - XZ plane - XZ sík + XZ plane + XZ sík - - YZ plane - YZ síkban + YZ plane + YZ síkban - - Base point: - Alap pont: + Base point: + Alap pont: - - x - x + x + x - - y - y + y + y - - z - z + z + z - - Select a shape for mirroring, first. - Tükrözéshez előszőr a formát válassza ki. + + Select a shape for mirroring, first. + Tükrözéshez előszőr a formát válassza ki. - - No such document '%1'. - Nincs ilyen dokumentum '%1'. + No such document '%1'. + Nincs ilyen dokumentum '%1'. - - + + PartGui::ShapeBuilderWidget - - - - - - Wrong selection - Hibás kijelölés + + Wrong selection + Rossz kijelölés - - - Select two vertices - Válasszon ki a két csúcsot + Select two vertices + Válasszon ki a két csúcsot - Select three or more edges - Válasszon ki a három vagy több élet + Select three or more edges + Válasszon ki a három vagy több élet - - Select one or more edges - + Select one or more edges + Jelöljön ki egy vagy több élt - - Select two or more faces - Válasszon ki a két vagy több felületet + Select two or more faces + Válasszon ki a két vagy több felületet - - Select only one part object - Válasszon ki a csak egy tárgy részt + Select only one part object + Válasszon ki a csak egy tárgy részt - - Select two vertices to create an edge - Válasszon ki a két csúcsot egy él létrehozásához + Select two vertices to create an edge + Válasszon ki a két csúcsot egy él létrehozásához - - Select a closed set of edges - Válasszon ki egy zárt él halmazt + Select a closed set of edges + Válasszon ki egy zárt él halmazt - - Select adjacent faces - Válasszon ki szomszédos felületeket + Select adjacent faces + Válasszon ki szomszédos felületeket - - All shape types can be selected - Minden alakzat kiválasztható + All shape types can be selected + Minden alakzat kiválasztható - - + + PartGui::SweepWidget - - - Vertex/Wire - Vertex / Vonal + + Vertex/Wire + Vertex / Vonal - - - Sweep - + Sweep + Húzás - - Sweep path - + Sweep path + Húzás elérési útja - - Select an edge or wire you want to sweep along. - + Select an edge or wire you want to sweep along. + Jelöljön élet vagy hálót amely mentén húzni szeretne. - - Too few elements - Túl kevés elem + Too few elements + Túl kevés elem - - At least one edge or wire is required. - + At least one edge or wire is required. + Szükséges legalább egy él vagy háló. - - + + PartGui::TaskDialogEditDynamic - Hint - Hint + Hint + Tipp - Select Control. - Select Control. + Select Control. + Jelölje ki a vezérlőt. - Control - Control + Control + Ellenőrzés - Dynamic - Dynamic + Dynamic + Dinamikus - Align - Align + Align + Igazítás - Value - Érték + Value + Érték - Special - Special + Special + Különleges - Command - Parancs + Command + Parancs - Stretch - Stretch + Stretch + Kinyújt - Move - Mozgat + Move + Mozgat - Rotate - Forgatás + Rotate + Forgatás - Offset - Eltolás + Offset + Eltolás - Orient - Orient + Orient + Irányult - Match - Match + Match + Összehasónlít - Surround - Surround + Surround + Környezet - dummy - dummy + dummy + próba - X Axis - X Axis + X Axis + X tengely - Y Axis - Y Axis + Y Axis + Y tengely - Z Axis - Z Axis + Z Axis + Z-tengely - Increment - Increment + Increment + Növekmény - .125 - .125 + .125 + .125 - .500 - .500 + .500 + .500 - 1.000 - 1.000 + 1.000 + 1.000 - 5.000 - 5.000 + 5.000 + 5.000 - 10.000 - 10.000 + 10.000 + 10.000 - Drag arrows to stretch box by increment - Drag arrows to stretch box by increment + Drag arrows to stretch box by increment + Húzza a nyilakat a keretek növekménnyel való nyújtásához - Drag arrows to move box by increment - Drag arrows to move box by increment + Drag arrows to move box by increment + Húzza a nyílakat a keretek növekménnyel való mozgatásához - Not implemented yet - Not implemented yet + Not implemented yet + Még nem végrehejtható - Drag arrows to offset checked axes by increment - Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment + Húzza a nyilakat az eltoláshoz kijelölt tengely(ek) növeléséhez - Select dragger for stretch by align - Select dragger for stretch by align + Select dragger for stretch by align + Vállassza ki a fogási pontot a nyújtással való igazításhoz - Select dragger for move by align - Select dragger for move by align + Select dragger for move by align + Vállassza ki a fogási pontot az igazítással való mozgatáshoz - Select dragger for stretch by value - Select dragger for stretch by value + Select dragger for stretch by value + Válassza ki a fogási pontot az értékkel való nyújtáshoz - Select dragger for move by value - Select dragger for move by value + Select dragger for move by value + Jelölje ki a fogási pontot az értékkel való áthelyezéshez - 1.0 - 1.0 + 1.0 + 1.0 - Enter Value - Enter Value + Enter Value + Adjon meg értéket - Select box to match - Select box to match + Select box to match + Jelölje be a mezőben - Select a point - Select a point + Select a point + Válassza ki a pontot - 0.0 - 0.0 + 0.0 + 0.0 - Select dragger to align - Select dragger to align + Select dragger to align + Jelölje ki a fogási pontot az igazításhoz - Select dragger to modify - Select dragger to modify + Select dragger to modify + Jelölje ki a fogási pontot a módosításhoz - - + + PartGui::TaskFaceColors - - Set color per face - Szín beállítása egy felületre + + Set color per face + Szín beállítása egy felületre - - Click on the faces in the 3d view to select them. - Kattints a 3D nézetben a felületekre a kijelöléshez. + Click on the faces in the 3d view to select them. + Kattints a 3D nézetben a felületekre a kijelöléshez. - - Faces: - Felületek: + Faces: + Felületek: - - Set to default - Az alapértelmezett beállítása + Set to default + Az alapértelmezett beállítása - - + + PartGui::TaskLoft - - Loft - Szint + + Loft + Szint - Vertex/Wire - Vertex / Vonal + Vertex/Wire + Vertex / Vonal - Move right - Mozgatás jobbra + Move right + Mozgatás jobbra - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Mozgasd a kiválasztott elemet egy szinttel lejjebb.</b><p>Ez a meglévő elemet szintjét is megváltoztatja.</p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Mozgasd a kiválasztott elemet egy szinttel lejjebb.</b><p>Ez a meglévő elemet szintjét is megváltoztatja.</p> - Move left - Mozgatás balra + Move left + Mozgatás balra - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Mozgasd a kiválasztott elemet egy szinttel lejjebb.</b><p>Ez a meglévő elemet szintjét is megváltoztatja.</p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Mozgasd a kiválasztott elemet egy szinttel lejjebb.</b><p>Ez a meglévő elemet szintjét is megváltoztatja.</p> - Move up - Mozgatás felfelé + Move up + Mozgatás felfelé - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Mozgasd a kiválasztott elemet lejjebb.</b><p>Az elem a hierarchia szinten lesz mozgatva.</p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Mozgasd a kiválasztott elemet lejjebb.</b><p>Az elem a hierarchia szinten lesz mozgatva.</p> - Move down - Mozgatás lefelé + Move down + Mozgatás lefelé - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Mozgasd a kiválasztott elemet lejjebb.</b><p>Az elem a hierarchia szinten lesz mozgatva.</p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Mozgasd a kiválasztott elemet lejjebb.</b><p>Az elem a hierarchia szinten lesz mozgatva.</p> - - Create solid - Szilárd test létrehozása + Create solid + Szilárd test létrehozása - - Ruled surface - Döntött felület + Ruled surface + Döntött felület - - + + PartGui::TaskShapeBuilder - - - Create shape - Alakzat létrehozása + + Create shape + Alakzat létrehozása - - Edge from vertices - Csúcsok élei + Edge from vertices + Csúcsok élei - - Face from edges - Felületek élekből + Face from edges + Felületek élekből - - Planar - Planar + Planar + Planar - - Shell from faces - Héjjak felületekből + Shell from faces + Héjjak felületekből - - Solid from shell - Szilárd testek felületekből + Solid from shell + Szilárd testek felületekből - - Create - Létrehozás + Create + Létrehozás - - All faces - Minden felület + All faces + Minden felület - - + + PartGui::TaskSweep - - Sweep - + + Sweep + Húzás - - Create solid - Szilárd test létrehozása + Create solid + Szilárd test létrehozása - - Frenet - + Frenet + Frenet - - Select one or more profiles and select an edge or wire + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. - + Válassz egy vagy több profilt és válassza ki a szegélyt vagy hálót 3D nézetben a húzás irányához. - - + + QObject - - - - - - Wrong selection - Hibás kijelölés + + Wrong selection + Rossz kijelölés - - - Select two shapes please. - Két alakzatot jelöljön ki. + Select two shapes please. + Két alakzatot jelöljön ki. - - - - All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) - Minden CAD Fájl (*.stp *.step *.igs *.iges *.brp *.brep) + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + Minden CAD Fájl (*.stp *.step *.igs *.iges *.brp *.brep) - - - - STEP (*.stp *.step) - STEP (*.stp *.step) + STEP (*.stp *.step) + STEP (*.stp *.step) - - - - IGES (*.igs *.iges) - IGES (*.igs *.iges) + IGES (*.igs *.iges) + IGES (*.igs *.iges) - - - - BREP (*.brp *.brep) - BREP (*.brp *.brep) + BREP (*.brp *.brep) + BREP (*.brp *.brep) - - - - All Files (*.*) - Minden fájl (*.*) + All Files (*.*) + Minden fájl (*.*) - - Sewing Tolerance - Varró tolerancia + + Sewing Tolerance + Varró tolerancia - - Enter tolerance for sewing shape: - Adja meg a varrás alakja toleranciáját: + Enter tolerance for sewing shape: + Adja meg a varrás alakja toleranciáját: - - Edit mirror plane - Tükrözési sík szerkesztése + + Edit mirror plane + Tükrözési sík szerkesztése - - Edit chamfer edges - + Edit chamfer edges + Letörés szegélyek szerkesztése - Transform - Átalakítás + Transform + Átalakítás - - - Part design - Alkatrész tervezés + + Part design + Alkatrész tervezés - - - Select two shapes or more, please. - Kérem válasszon ki a két alakzatot vagy többet. + + Select two shapes or more, please. + Kérem válasszon ki a két alakzatot vagy többet. - - You have to select either two edges or two wires. - Választani kell két élet, vagy két hálót. + You have to select either two edges or two wires. + Választani kell két élet, vagy két hálót. - - Edit fillet edges - Kijelölt élek szerkesztése + + Edit fillet edges + Kijelölt élek szerkesztése - - Set colors... - Színek beállítása... + + Set colors... + Színek beállítása... - - + + Workbench - - &Part - Rész + + &Part + Rész &P - - &Simple - Egyszerű + &Simple + Egy&szerű - - &Parametric - Változós + &Parametric + Változós &Parametric - - Part tools - Rész eszközök + Part tools + Rész eszközök - - Solids - Szilárd testek + Solids + Szilárd testek - - Boolean - Logikai érték + Boolean + Logikai érték - + diff --git a/src/Mod/Part/Gui/Resources/translations/Part_it.qm b/src/Mod/Part/Gui/Resources/translations/Part_it.qm index 02d74cc6c..d78185b8f 100644 Binary files a/src/Mod/Part/Gui/Resources/translations/Part_it.qm and b/src/Mod/Part/Gui/Resources/translations/Part_it.qm differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_it.ts b/src/Mod/Part/Gui/Resources/translations/Part_it.ts index bd980fa47..afb1b90f3 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_it.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_it.ts @@ -1,2522 +1,2127 @@ - - + + BlockDefinition - - Block definition - Definizione blocco + + Block definition + Definizione blocco - - First limit - Primo limite + First limit + Primo limite - - - Type: - Tipo: + Type: + Tipo: - - - mm - mm + mm + mm - - - Length: - Lunghezza: + Length: + Lunghezza: - - - Dimension - Dimensione + Dimension + Dimensione - - - Up to next - Fino al prossimo + Up to next + Fino al prossimo - - - Up to last - Fino all'ultimo + Up to last + Fino all'ultimo - - - Up to plane - Fino al piano + Up to plane + Fino al piano - - - Up to face - Fino alla faccia + Up to face + Fino alla faccia - - - Limit: - Limite: + Limit: + Limite: - - - - - No selection - Nessuna selezione + No selection + Nessuna selezione - - Profile - Profilo + Profile + Profilo - - Selection: - Selezione: + Selection: + Selezione: - - Reverse - Inverti + Reverse + Inverti - - Both sides - Entrambi i lati + Both sides + Entrambi i lati - - Second limit - Secondo limite + Second limit + Secondo limite - - Direction - Direzione + Direction + Direzione - - Perpendicular to sketch - Perpendicolare allo sketch + Perpendicular to sketch + Perpendicolare allo sketch - - Reference - Riferimento + Reference + Riferimento - - Apply - Applica + Apply + Applica - - Cancel - Annulla + Cancel + Annulla - - OK - OK + OK + OK - - + + CmdPartBoolean - - Part - Parte + + Part + Parte - - Boolean... - Operazione booleana... + Boolean... + Operazione booleana... - - Run a boolean operation with two shapes selected - Esegue un'operazione booleana tra le due forme selezionate + Run a boolean operation with two shapes selected + Esegue un'operazione booleana tra le due forme selezionate - - + + CmdPartBox - - Part - Parte + + Part + Parte - - Box - Prisma + Box + Prisma - - Create a box solid - Crea un prisma solido + Create a box solid + Crea un prisma solido - - + + CmdPartBox2 - - Part - Parte + + Part + Parte - - Box fix 1 - Fissa prisma 1 + Box fix 1 + Fissa prisma 1 - - Create a box solid without dialog - Crea una prisma solido senza finestra di dialogo + Create a box solid without dialog + Crea una prisma solido senza finestra di dialogo - - + + CmdPartBox3 - - Part - Parte + Part + Parte - - Box fix 2 - Fissa prisma 2 + Box fix 2 + Fissa prisma 2 - - Create a box solid without dialog - Crea una prisma solido senza finestra di dialogo + Create a box solid without dialog + Crea una prisma solido senza finestra di dialogo - - + + CmdPartBuilder - - Part - Parte + Part + Parte - - Shape builder... - Generatore di forma... + Shape builder... + Generatore di forma... - - Advanced utility to create shapes - Utilità avanzate per creare forme + Advanced utility to create shapes + Utilità avanzate per creare forme - - + + CmdPartChamfer - - Part - Parte + Part + Parte - - Chamfer... - + Chamfer... + Smusso... - - Chamfer the selected edges of a shape - + Chamfer the selected edges of a shape + Smussa gli spigoli selezionati di una forma - - + + CmdPartCommon - - Part - Parte + Part + Parte - - Intersection - Intersezione + Intersection + Intersezione - - Make an intersection of two shapes - Esegue un'intersezione di due forme + Make an intersection of two shapes + Esegue un'intersezione di due forme - - + + CmdPartCone - - Part - Parte + + Part + Parte - - Cone - Cono + Cone + Cono - - Create a cone solid - Crea un cono solido + Create a cone solid + Crea un cono solido - - + + CmdPartCrossSections - - Part - Parte + + Part + Parte - - Cross-sections... - Sezioni... + Cross-sections... + Sezioni... - - Cross-sections - Sezioni + Cross-sections + Sezioni - - + + CmdPartCut - - Part - Parte + Part + Parte - - Cut - Taglia + Cut + Taglia - - Make a cut of two shapes - Esegue un taglio di due forme + Make a cut of two shapes + Esegue un taglio di due forme - - + + CmdPartCylinder - - Part - Parte + + Part + Parte - - Create a Cylinder - Crea un cilindro + Create a Cylinder + Crea un cilindro - - Cylinder - Cilindro + Cylinder + Cilindro - - + + CmdPartExport - - Part - Parte + + Part + Parte - - Export CAD... - Esporta CAD... + Export CAD... + Esporta CAD... - - Exports to a CAD file - Esportazione in un file CAD + Exports to a CAD file + Esportazione in un file CAD - - + + CmdPartExtrude - - Part - Parte + Part + Parte - - Extrude... - Estrudi... + Extrude... + Estrudi... - - Extrude a selected sketch - Estrude uno schizzo selezionato + Extrude a selected sketch + Estrude uno sketch selezionato - - + + CmdPartFillet - - Part - Parte + Part + Parte - - Fillet... - Raccordo... + Fillet... + Raccordo... - - Fillet the selected edges of a shape - Raccorda gli spigoli di una forma selezionati + Fillet the selected edges of a shape + Raccorda gli spigoli di una forma selezionati - - + + CmdPartFuse - - Part - Parte + Part + Parte - - Union - Unione + Union + Unione - - Make a union of several shapes - Esegue un'unione di varie forme + Make a union of several shapes + Esegue un'unione di varie forme - - + + CmdPartImport - - Part - Parte + Part + Parte - - Imports a CAD file - Importa un file CAD + Imports a CAD file + Importa un file CAD - - Import CAD... - Importa CAD... + Import CAD... + Importa CAD... - - + + CmdPartImportCurveNet - - Part - Parte + Part + Parte - - Import a curve network - Importa una rete di curve + Import a curve network + Importa una rete di curve - - Import curve network... - Importa una rete di curve... + Import curve network... + Importa una rete di curve... - - + + CmdPartLoft - - Part - Parte + Part + Parte - - Loft... - Loft... + Loft... + Loft... - - Utility to loft - + Utility to loft + Utilità per loft - Advanced utility to lofts - Utilità avanzate per lofts + Advanced utility to lofts + Utilità avanzate per lofts - - + + CmdPartMakeSolid - - Part - Parte + Part + Parte - - Convert to solid - Converti in solido + Convert to solid + Converti in solido - - Create solid from a shell or compound - Crea solido da un guscio o un composto + Create solid from a shell or compound + Crea solido da un guscio o un composto - - + + CmdPartMirror - - Part - Parte + Part + Parte - - Mirroring... - Specchia... + Mirroring... + Specchia... - - Mirroring a selected shape - Specchia una forma selezionata + Mirroring a selected shape + Specchia una forma selezionata - - + + CmdPartPickCurveNet - - Part - Parte + Part + Parte - - Pick curve network - Specifica rete di curve + Pick curve network + Specifica rete di curve - - Pick a curve network - Specifica una rete di curve + Pick a curve network + Specifica una rete di curve - - + + CmdPartPrimitives - - Part - Parte + Part + Parte - - Create primitives... - Crea primitive... + Create primitives... + Crea primitive... - - Creation of parametrized geometric primitives - Creazione di primitive geometriche parametrizzate + Creation of parametrized geometric primitives + Creazione di primitive geometriche parametrizzate - - + + CmdPartRefineShape - - Part - Parte + + Part + Parte - - Refine shape - + Refine shape + Affinare una forma - - Refine the copy of a shape - + Refine the copy of a shape + Affinare la copia di una forma - - + + CmdPartReverseShape - - Part - Parte + + Part + Parte - - Reverse shapes - Inverti forme + Reverse shapes + Inverti forme - - Reverse orientation of shapes - Inverte l'orientamento delle forme + Reverse orientation of shapes + Inverte l'orientamento delle forme - - + + CmdPartRevolve - - Part - Parte + Part + Parte - - Revolve... - Rivoluziona... + Revolve... + Rivoluziona... - - Revolve a selected shape - Rivoluziona una forma selezionata + Revolve a selected shape + Rivoluziona una forma selezionata - - + + CmdPartRuledSurface - - Part - Parte + Part + Parte - - Create ruled surface - Creare la superficie rigata + Create ruled surface + Crea superficie rigata - - Create a ruled surface from two curves - Crea una superficie rigata da due curve + Create a ruled surface from two curves + Crea una superficie rigata da due curve - - + + CmdPartSection - - Make a section of two shapes - Esegue una sezione di due forme + Make a section of two shapes + Esegue una sezione di due forme - - Part - Parte + Part + Parte - - Section - Sezione + Section + Sezione - - + + CmdPartShapeFromMesh - - Part - Parte + + Part + Parte - - Create shape from mesh... - Crea forma da mesh... + Create shape from mesh... + Crea forma da mesh... - - Create shape from selected mesh object - Crea forma dall'oggetto mesh selezionato + Create shape from selected mesh object + Crea forma dall'oggetto mesh selezionato - - + + CmdPartSimpleCopy - - Part - Parte + Part + Parte - - Create simple copy - Crea una copia semplice + Create simple copy + Crea una copia semplice - - Create a simple non-parametric copy - Crea una copia semplice non parametrica + Create a simple non-parametric copy + Crea una copia semplice non parametrica - - + + CmdPartSimpleCylinder - - Part - Parte + Part + Parte - - Create Cylinder... - Crea cilindro... + Create Cylinder... + Crea Cilindro... - - Create a Cylinder - Crea un cilindro + Create a Cylinder + Crea un cilindro - - + + CmdPartSphere - - Create a sphere solid - Crea una sfera solida + + Create a sphere solid + Crea una sfera solida - - Part - Parte + Part + Parte - - Sphere - Sfera + Sphere + Sfera - - + + CmdPartSweep - - Part - Parte + + Part + Parte - - Sweep... - + Sweep... + Sweep... - - Utility to sweep - + Utility to sweep + Utilità per lo sweep - - + + CmdPartTorus - - Create a torus solid - Crea un toro solido + + Create a torus solid + Crea un toro solido - - Part - Parte + Part + Parte - - Torus - Toro + Torus + Toro - - + + DlgExtrusion - Select a shape for extrusion, first. - Seleziona prima una forma da estrudere. + Select a shape for extrusion, first. + Seleziona prima una forma da estrudere. - The document '%1' doesn't exist. - Il documento '%1' non esiste. + The document '%1' doesn't exist. + Il documento '%1' non esiste. - - + + DlgRevolution - Select a shape for revolution, first. - Seleziona prima una forma per la rivoluzione. + Select a shape for revolution, first. + Seleziona prima una forma per la rivoluzione. - - + + DlgSettings3DViewPart - Deviation - Deviazione + Deviation + Deviazione - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - L'impostazione di una deviazione troppo piccola provoca la richiesta di più tempo per la tassellazione e quindi blocca o rallenta la GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + L'impostazione di una deviazione troppo piccola provoca la richiesta di più tempo per la tassellazione e quindi blocca o rallenta la GUI. - - + + PartGui::CrossSections - - Cross sections - Sezioni + + Cross sections + Sezioni - - Guiding plane - Piano guida + Guiding plane + Piano guida - - XY - XY + XY + XY - - XZ - XZ + XZ + XZ - - YZ - YZ + YZ + YZ - - Position: - Posizione: + Position: + Posizione: - - Sections - Sezioni + Sections + Sezioni - - On both sides - Su entrambi i lati + On both sides + Su entrambi i lati - - Count - Conta + Count + Conta - - Distance: - Distanza: + Distance: + Distanza: - - + + PartGui::DlgBooleanOperation - - Boolean Operation - Operazione booleana + + Boolean Operation + Operazione booleana - - Second shape - Seconda forma + Second shape + Seconda forma - - First shape - Prima forma + First shape + Prima forma - - Boolean operation - Operazione booleana + Boolean operation + Operazione booleana - - Section - Sezione + Section + Sezione - - Difference - Differenza + Difference + Differenza - - Union - Unione + Union + Unione - - Intersection - Intersezione + Intersection + Intersezione - - Cannot perform a boolean operation with the same shape - Non è possibile effettuare una operazione booleana con la stessa forma + + Cannot perform a boolean operation with the same shape + Non è possibile effettuare una operazione booleana con la stessa forma - - - Solids - Solidi + + Solids + Solidi - - - Shells - Gusci + Shells + Gusci - - - Compounds - Solidi composti + Compounds + Solidi composti - - - Faces - Facce + Faces + Facce - - Swap selection - Inverti selezione + Swap selection + Inverti selezione - - Select a shape on the left side, first - Seleziona prima una forma sul lato sinistro + + Select a shape on the left side, first + Seleziona prima una forma sul lato sinistro - - Select a shape on the right side, first - Seleziona prima una forma sul lato destro + Select a shape on the right side, first + Seleziona prima una forma sul lato destro - - No active document available - Nessun documento attivo disponibile + No active document available + Nessun documento attivo disponibile - - One of the selected objects doesn't exist anymore - Uno degli oggetti selezionati non esiste più + One of the selected objects doesn't exist anymore + Uno degli oggetti selezionati non esiste più - - Performing union on non-solids is not possible - Non è possibile eseguire l'unione su oggetti non solidi + Performing union on non-solids is not possible + Non è possibile eseguire l'unione su oggetti non solidi - - Performing intersection on non-solids is not possible - Non è possibile eseguire l'intersezione su oggetti non solidi + Performing intersection on non-solids is not possible + Non è possibile eseguire l'intersezione su oggetti non solidi - - Performing difference on non-solids is not possible - Non è possibile eseguire la differenza su oggetti non solidi + Performing difference on non-solids is not possible + Non è possibile eseguire la differenza su oggetti non solidi - - + + PartGui::DlgChamferEdges - - Chamfer Edges - + + Chamfer Edges + Smussa spigoli - - + + PartGui::DlgExtrusion - - Extrude - Estrudi + + Extrude + Estrudi - - Direction - Direzione + Direction + Direzione - - Along normal - Lungo la normale + Along normal + Lungo la normale - - Length: - Lunghezza: + Length: + Lunghezza: - - 3D view - Vista 3D + 3D view + Vista 3D - - Note:This option works for planes only - Nota: questa opzione funziona solo per i piani + Note:This option works for planes only + Nota: questa opzione funziona solo per i piani - - Create solid - Crea solido + Create solid + Crea solido - - Taper outward angle - + Taper outward angle + Angolo di rastremazione verso l'esterno - - Shape - Forma + Shape + Forma - - + + - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - Select a shape for extrusion, first. - Seleziona prima una forma da estrudere. + + Select a shape for extrusion, first. + Seleziona prima una forma da estrudere. - - The document '%1' doesn't exist. - Il documento '%1' non esiste. + The document '%1' doesn't exist. + Il documento '%1' non esiste. - - + + PartGui::DlgFilletEdges - - Fillet Edges - Raccorda spigoli + + Fillet Edges + Raccorda spigoli - - Fillet Parameter - Parametri raccordo + Fillet Parameter + Parametri raccordo - - Radius: - Raggio: + Radius: + Raggio: - - Fillet type: - Tipo di raccordo: + Fillet type: + Tipo di raccordo: - - Constant Radius - Raggio costante + Constant Radius + Raggio costante - - Variable Radius - Raggio variabile + Variable Radius + Raggio variabile - - Shape - Forma + Shape + Forma - - Selected shape: - Forma selezionata: + Selected shape: + Forma selezionata: - - No selection - Nessuna selezione + No selection + Nessuna selezione - - Edges to fillet - Spigoli da raccordare + + Edges to fillet + Spigoli da raccordare - - - Start radius - Raggio iniziale + Start radius + Raggio iniziale - - End radius - Raggio finale + End radius + Raggio finale - - Radius - Raggio + Radius + Raggio - - No edge selected - Nessuno spigolo selezionato + No edge selected + Nessuno spigolo selezionato - - No edge entity is checked to fillet. + No edge entity is checked to fillet. Please check one or more edge entities first. - Nessuna entità spigolo è stata assegnata da raccordare. + Nessuna entità spigolo è stata assegnata da raccordare. Assegnare una o più entità raccordo prima. - - All - Tutto + + All + Tutto - - None - Nessuno + None + Nessuno - - - Edge%1 - Spigoli %1 + + Edge%1 + Spigoli %1 - - No shape selected - Nessuna forma selezionata + No shape selected + Nessuna forma selezionata - - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - Nessuna forma valida è stat selezionata. + Nessuna forma valida è stat selezionata. Seleziona prima una forma valida dal menu a tendina. - - + + PartGui::DlgPartBox - - Box definition - Definizione prisma + + Box definition + Definizione prisma - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - Cancel - Annulla + Cancel + Annulla - - OK - OK + OK + OK - - Size: - Dimensione: + Size: + Dimensione: - - Height: - Altezza: + Height: + Altezza: - - Width: - Larghezza: + Width: + Larghezza: - - Length: - Lunghezza: + Length: + Lunghezza: - - Position: - Posizione: + Position: + Posizione: - - Direction: - Direzione: + Direction: + Direzione: - - + + PartGui::DlgPartCylinder - - Cylinder definition - Definizione cilindro + + Cylinder definition + Definizione cilindro - - Parameter - Parametro + Parameter + Parametro - - Height: - Altezza: + Height: + Altezza: - - Radius: - Raggio: + Radius: + Raggio: - - Position: - Posizione: + Position: + Posizione: - - Direction: - Direzione: + Direction: + Direzione: - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - OK - OK + OK + OK - - Cancel - Annulla + Cancel + Annulla - - + + PartGui::DlgPartImportIges - - IGES input file - File input IGES + + IGES input file + File input IGES - - ... - ... + ... + ... - - Cancel - Annulla + Cancel + Annulla - - OK - OK + OK + OK - - File Name - Nome file + File Name + Nome file - - + + - - + + PartGui::DlgPartImportIgesImp - - IGES (*.igs *.iges);;All Files (*.*) - IGES (*.igs *.iges);;Tutti i File (*.*) + + IGES (*.igs *.iges);;All Files (*.*) + IGES (*.igs *.iges);;Tutti i File (*.*) - - + + PartGui::DlgPartImportStep - - ... - ... + + ... + ... - - Cancel - Annulla + Cancel + Annulla - - OK - OK + OK + OK - - Step input file - File input Step + Step input file + File input Step - - File Name - Nome file + File Name + Nome file - - + + - - + + PartGui::DlgPartImportStepImp - - STEP (*.stp *.step);;All Files (*.*) - STEP (*.stp *.step);;Tutti i File (*.*) + + STEP (*.stp *.step);;All Files (*.*) + STEP (*.stp *.step);;Tutti i File (*.*) - - + + PartGui::DlgPrimitives - - Geometric Primitives - Primitive geometriche + + Geometric Primitives + Primitive geometriche - Primitive - Primitiva + Primitive + Primitiva - X min - X min + X min + X min - x max - x max + x max + x max - Y min - Y min + Y min + Y min - Y max - Y max + Y max + Y max - Z min - Z min + Z min + Z min - Z max - Z max + Z max + Z max - X2 min - X2 min + X2 min + X2 min - X2 max - X2 max + X2 max + X2 max - Z2 min - Z2 min + Z2 min + Z2 min - Z2 max - Z2 max + Z2 max + Z2 max - Angle - 0 for cyl - Angolo - 0 per cyl + Angle - 0 for cyl + Angolo - 0 per cyl - Angle0 - Angolo0 + Angle0 + Angolo0 - Angle1 - Angolo1 + Angle1 + Angolo1 - X Axis Value: - Valore asse X: + X Axis Value: + Valore asse X: - Y Axis Value: - Valore asse Y: + Y Axis Value: + Valore asse Y: - Z Axis Value: - Valore asse Z: + Z Axis Value: + Valore asse Z: - - Wedge - Cuneo + Wedge + Cuneo - - Circle - Cerchio + Circle + Cerchio - Vertex - Vertice + Vertex + Vertice - Position - Posizione + Position + Posizione - - - - Z: - Z: + Z: + Z: - - - - X: - X: + X: + X: - Direction: - Direzione: + Direction: + Direzione: - - - - Y: - Y: + Y: + Y: - - Plane - Piano + Plane + Piano - - Box - Prisma + Box + Prisma - - Cylinder - Cilindro + Cylinder + Cilindro - - Cone - Cono + Cone + Cono - - Sphere - Sfera + Sphere + Sfera - - Ellipsoid - Ellissoide + Ellipsoid + Ellissoide - - Torus - Toro + Torus + Toro - - Ellipse - + Ellipse + Ellisse - - Point - + Point + Punto - - Line - + Line + Linea - - Parameter - Parametro + Parameter + Parametro - - - Width: - Larghezza: + Width: + Larghezza: - - - Length: - Lunghezza: + Length: + Lunghezza: - - - - - Height: - Altezza: + Height: + Altezza: - - - - Angle: - Angolo: + Angle: + Angolo: - - - - - Radius: - Raggio: + Radius: + Raggio: - - - - Radius 1: - Raggio 1: + Radius 1: + Raggio 1: - - - - Radius 2: - Raggio 2: + Radius 2: + Raggio 2: - - - - U parametric: - Parametro U: + U parametric: + Parametro U: - - - - V parametric: - Parametro V: + V parametric: + Parametro V: - - X min/max: - + X min/max: + X min/max: - - Y min/max: - + Y min/max: + Y min/max: - - Z min/max: - + Z min/max: + Z min/max: - - X2 min/max: - + X2 min/max: + X2 min/max: - - Z2 min/max: - + Z2 min/max: + Z2 min/max: - - Coordinate system: - + Coordinate system: + Sistema di coordinate: - - Right-handed - + Right-handed + Destrorso - - Left-handed - + Left-handed + Sinistrorso - - - Angle 1: - + Angle 1: + Angolo 1: - - - Angle 2: - + Angle 2: + Angolo 2: - - From three points - + From three points + Da tre punti - - Major radius: - + Major radius: + Raggio maggiore: - - Minor radius: - + Minor radius: + Raggio minore: - - End point - + End point + Punto finale - - Start point - + Start point + Punto iniziale - - &Create - &Crea + + &Create + &Crea - Alt+C - Alt+C + Alt+C + Alt+C - Cl&ose - C&hiudi + Cl&ose + C&hiudi - Alt+O - Alt+H + Alt+O + Alt+O - - - - Create %1 - Crea %1 + Create %1 + Crea %1 - - No active document - Nessun documento attivo + No active document + Nessun documento attivo - - Pitch: - Passo: + + Pitch: + Beccheggio: - - Helix - Elica + Helix + Elica - 3D View - Vista 3D + 3D View + Vista 3D - - + + PartGui::DlgRevolution - - Revolve - Rivoluziona + + Revolve + Rivoluziona - - Y: - Y: + Y: + Y: - - X: - X: + X: + X: - - Angle: - Angolo: + Angle: + Angolo: - - Z: - Z: + Z: + Z: - - Axis: - Assi: + Axis: + Assi: - - Shape - Forma + Shape + Forma - - Select line in 3D view - + Select line in 3D view + Seleziona linea nella vista 3D - - Select a shape for revolution, first. - Seleziona prima una forma per la rivoluzione. + + Select a shape for revolution, first. + Seleziona prima una forma per la rivoluzione. - - + + PartGui::DlgSettings3DViewPart - - View accuracy / Performance - Vista Precisione / Performance + + View accuracy / Performance + Vista Precisione / Performance - - View smoothing - Vista piatta + View smoothing + Vista piatta - - Using high-quality normals - Usare normali di alta qualità + Using high-quality normals + Usare normali di alta qualità - - This will slow down render speed but will lead to nicer results - Questo rallenterà la velocità di render ma si otterranno risultati migliori + This will slow down render speed but will lead to nicer results + Questo rallenterà la velocità di render ma si otterranno risultati migliori - - Defines the appearance of surfaces - Definisce l'estetica della superfici + Defines the appearance of surfaces + Definisce l'estetica della superfici - - Shape view - Visualizzazione della figura + Shape view + Visualizzazione della figura - - Tessellation - Tassellazione + Tessellation + Tassellazione - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Ombreggiatura piatta/Ombreggiatura Phong</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Con l'ombreggiatura piatta le superfici normali non sono definite con il vertice risultano con una estetica non reale per superfici curve mentre usando l'ombreggiatura Phong shading risulta un'estetica più liscia. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Se questa opzione non è selezionata, verrà usata l'ombreggiatura Phong. Se selezionata verrà usata l'ombreggiatura piatta.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Ombreggiatura piatta/Ombreggiatura Phong</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Con l'ombreggiatura piatta le superfici normali non sono definite con il vertice risultano con una estetica non reale per superfici curve mentre usando l'ombreggiatura Phong shading risulta un'estetica più liscia. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Se questa opzione non è selezionata, verrà usata l'ombreggiatura Phong. Se selezionata verrà usata l'ombreggiatura piatta.</p></body></html> - - Do not define normal per vertex - Non definire le normali per i vertici + Do not define normal per vertex + Non definire le normali per i vertici - - Defines the deviation of tessellation to the actual surface - Definisce la deviazione della tassellazione della superficie attuale + Defines the deviation of tessellation to the actual surface + Definisce la deviazione della tassellazione della superficie attuale - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tassellazione</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Definisce la massima deviazione della mesh tassellata della superficie. Più piccolo è il valore più lenta sarà la velocità di render e migliore sarà l'estetica.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tassellazione</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Definisce la massima deviazione della mesh tassellata della superficie. Più piccolo è il valore più lenta sarà la velocità di render e migliore sarà l'estetica.</span></p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definire le normali ai vertici è anche chiamato <span style=" font-style:italic;">Ombreggiatura Phong</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">mentre definire le normali alle facce è chiamato </span>Ombreggiatura piatta<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Suggerimento</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definire le normali per vertice è chiamato anche <span style=" font-style:italic;"> ombreggiatura di Phong </span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;"> mentre definire le normali per faccia è chiamato anche </span> ombreggiatura Flat<span style=" font-style:normal;">.</span></p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Normali di alta qualità</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Questo rallenterà la velocità di render ma si otterranno risultati migliori.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Normali di alta qualità</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Questo rallenterà la velocità di render ma si otterranno risultati migliori.</p></body></html> - - Maximum deviation depending on the model bounding box - Massima deviazione dipendente dal riquadro di delimitazione del modello + Maximum deviation depending on the model bounding box + Massima deviazione dipendente dal riquadro di delimitazione del modello - - % - % + % + % - - Deviation - Deviazione + + Deviation + Deviazione - - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - L'impostazione di una deviazione troppo piccola provoca la richiesta di più tempo per la tassellazione e quindi blocca o rallenta la GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + L'impostazione di una deviazione troppo piccola provoca la richiesta di più tempo per la tassellazione e quindi blocca o rallenta la GUI. - - + + PartGui::DlgSettingsGeneral - - General - Generale + + General + Generale - - Export - Esporta + Export + Esporta - - Millimeter - Millimetro + Millimeter + Millimetro - - Meter - Metro + Meter + Metro - - Inch - Pollice + Inch + Pollice - - Units for export of STEP/IGES - Unità per l'esportazione STEP/IGES + Units for export of STEP/IGES + Unità per l'esportazione STEP/IGES - - Model settings - + Model settings + Impostazioni del modello - - Automatically refine model after boolean operation - + Automatically refine model after boolean operation + Affina automaticamente il modello dopo un'operazione booleana - - Automatically check model after boolean operation - + Automatically check model after boolean operation + Controlla automaticamente il modello dopo un'operazione booleana - - + + PartGui::FaceColors - - Face colors - + + Face colors + Colore faccia - - Do you really want to cancel? - + Do you really want to cancel? + Vuoi davvero annullare? - - + + PartGui::Location - - Location - + + Location + Posizione - - Position - Posizione + Position + Posizione - - 3D View - Vista 3D + 3D View + Vista 3D - - + + PartGui::LoftWidget - - - Vertex/Wire - Vertice/Wire + + Vertex/Wire + Vertice/Wire - - - Loft - Loft + Loft + Loft - - Too few elements - Troppo pochi elementi + Too few elements + Troppo pochi elementi - - At least two vertices, edges or wires are required. - + At least two vertices, edges or wires are required. + Occorrono almeno due vertici, spigoli o wire. - At least two vertices or wires are required. - Sono necessari almeno due vertici o wire. + At least two vertices or wires are required. + Sono necessari almeno due vertici o wire. - - + + PartGui::Mirroring - - Mirroring - Specchia + + Mirroring + Specchia - - Shapes - Forme + Shapes + Forme - - Mirror plane: - Piano di specchiatura: + Mirror plane: + Piano di specchiatura: - - XY plane - Piano XY + XY plane + Piano XY - - XZ plane - Piano XZ + XZ plane + Piano XZ - - YZ plane - Piano YZ + YZ plane + Piano YZ - - Base point: - Punto base: + Base point: + Punto base: - - x - x + x + x - - y - y + y + y - - z - z + z + z - - Select a shape for mirroring, first. - Seleziona prima una forma da specchiare. + + Select a shape for mirroring, first. + Seleziona prima una forma da specchiare. - - No such document '%1'. - Non esiste nessun documento '%1'. + No such document '%1'. + Non esiste nessun documento '%1'. - - + + PartGui::ShapeBuilderWidget - - - - - - Wrong selection - Selezione errata + + Wrong selection + Selezione errata - - - Select two vertices - Seleziona due vertici + Select two vertices + Seleziona due vertici - Select three or more edges - Seleziona tre o più spigoli + Select three or more edges + Seleziona tre o più spigoli - - Select one or more edges - + Select one or more edges + Seleziona uno o più spigoli - - Select two or more faces - Seleziona due o più facce + Select two or more faces + Seleziona due o più facce - - Select only one part object - Seleziona un solo oggetto parte + Select only one part object + Seleziona un solo oggetto parte - - Select two vertices to create an edge - Seleziona due vertici per creare uno spigolo + Select two vertices to create an edge + Seleziona due vertici per creare uno spigolo - - Select a closed set of edges - Selezionare un insieme chiuso di spigoli + Select a closed set of edges + Selezionare un insieme chiuso di spigoli - - Select adjacent faces - Seleziona facce adiacenti + Select adjacent faces + Seleziona facce adiacenti - - All shape types can be selected - Tutti i tipi di forma possono essere selezionati + All shape types can be selected + Tutti i tipi di forma possono essere selezionati - - + + PartGui::SweepWidget - - - Vertex/Wire - Vertice/Wire + + Vertex/Wire + Vertice/Wire - - - Sweep - + Sweep + Sweep - - Sweep path - + Sweep path + Percorso di sweep - - Select an edge or wire you want to sweep along. - + Select an edge or wire you want to sweep along. + Seleziona uno spigolo o wire sul quale si desidera eseguire uno sweep. - - Too few elements - Troppo pochi elementi + Too few elements + Troppo pochi elementi - - At least one edge or wire is required. - + At least one edge or wire is required. + Selezionare almeno un bordo o filo. - - + + PartGui::TaskDialogEditDynamic - Hint - Hint + Hint + Suggerimento - Select Control. - Select Control. + Select Control. + Seleziona Controllo. - Control - Control + Control + Controllo - Dynamic - Dynamic + Dynamic + Dinamico - Align - Align + Align + Allinea - Value - Valore + Value + Valore - Special - Special + Special + Speciale - Command - Comando + Command + Comando - Stretch - Stretch + Stretch + Stira - Move - Sposta + Move + Sposta - Rotate - Ruota + Rotate + Ruota - Offset - Offset + Offset + Offset - Orient - Orient + Orient + Orienta - Match - Match + Match + Combacia - Surround - Surround + Surround + Circonda - dummy - dummy + dummy + fittizio - X Axis - X Axis + X Axis + Asse X - Y Axis - Y Axis + Y Axis + Asse Y - Z Axis - Z Axis + Z Axis + Asse Z - Increment - Increment + Increment + Incremento - .125 - .125 + .125 + .125 - .500 - .500 + .500 + .500 - 1.000 - 1.000 + 1.000 + 1.000 - 5.000 - 5.000 + 5.000 + 5.000 - 10.000 - 10.000 + 10.000 + 10.000 - Drag arrows to stretch box by increment - Drag arrows to stretch box by increment + Drag arrows to stretch box by increment + Trascina le frecce per stirare per incremento la box - Drag arrows to move box by increment - Drag arrows to move box by increment + Drag arrows to move box by increment + Trascina le frecce per spostare per incremento la box - Not implemented yet - Not implemented yet + Not implemented yet + Non ancora implementato - Drag arrows to offset checked axes by increment - Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment + Trascina le frecce per effettuare l'offset per incremento degli assi selezionati - Select dragger for stretch by align - Select dragger for stretch by align + Select dragger for stretch by align + Seleziona il trascinatore per stirare per allineamento - Select dragger for move by align - Select dragger for move by align + Select dragger for move by align + Seleziona il trascinatore per spostare per allineamento - Select dragger for stretch by value - Select dragger for stretch by value + Select dragger for stretch by value + Selezionare il trascinatore per stirare di un valore - Select dragger for move by value - Select dragger for move by value + Select dragger for move by value + Seleziona il trascinatore per spostare di un valore - 1.0 - 1.0 + 1.0 + 1.0 - Enter Value - Enter Value + Enter Value + Immettere il valore - Select box to match - Select box to match + Select box to match + Selezionare la casella in modo che corrisponda - Select a point - Select a point + Select a point + Seleziona un punto - 0.0 - 0.0 + 0.0 + 0.0 - Select dragger to align - Select dragger to align + Select dragger to align + Seleziona il trascinatore per allineare - Select dragger to modify - Select dragger to modify + Select dragger to modify + Seleziona il trascinatore per modificare - - + + PartGui::TaskFaceColors - - Set color per face - Imposta colore per faccia + + Set color per face + Imposta colore per faccia - - Click on the faces in the 3d view to select them. - Clicca sulle facce nella vista 3D per selezionarle. + Click on the faces in the 3d view to select them. + Clicca sulle facce nella vista 3D per selezionarle. - - Faces: - Facce: + Faces: + Facce: - - Set to default - Imposta al valore predefinito + Set to default + Imposta al valore predefinito - - + + PartGui::TaskLoft - - Loft - Loft + + Loft + Loft - Vertex/Wire - Vertice/Wire + Vertex/Wire + Vertice/Wire - Move right - Sposta verso destra + Move right + Sposta verso destra - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Sposta l'elemento selezionato un livello in basso.</b><p>Questo cambierà anche il livello degli elementi padre.</p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Sposta l'elemento selezionato un livello in basso.</b><p>Questo cambierà anche il livello degli elementi padre.</p> - Move left - Sposta verso sinistra + Move left + Sposta verso sinistra - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Sposta l'elemento selezionato un livello in alto.</b><p>Questo cambierà anche il livello degli elementi padre.</p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Sposta l'elemento selezionato un livello in alto.</b><p>Questo cambierà anche il livello degli elementi padre.</p> - Move up - Spostare verso l'alto + Move up + Spostare verso l'alto - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Sposta l'elemento selezionato in basso</b><p>L'elemento verrà spostato all'interno del livello di gerarchia.</p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Sposta l'elemento selezionato in alto.</b><p>L'elemento verrà spostato all'interno del livello di gerarchia.</p> - Move down - Sposta verso il basso + Move down + Sposta verso il basso - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Sposta l'elemento selezionato in basso</b><p>L'elemento verrà spostato all'interno del livello di gerarchia.</p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Sposta l'elemento selezionato in basso</b><p>L'elemento verrà spostato all'interno del livello di gerarchia.</p> - - Create solid - Crea solido + Create solid + Crea solido - - Ruled surface - Superficie rigata + Ruled surface + Superficie rigata - - + + PartGui::TaskShapeBuilder - - - Create shape - Crea forma + + Create shape + Crea forma - - Edge from vertices - Spigolo da vertici + Edge from vertices + Spigolo da vertici - - Face from edges - Faccia da spigoli + Face from edges + Faccia da spigoli - - Planar - Planare + Planar + Planare - - Shell from faces - Shell da facce + Shell from faces + Shell da facce - - Solid from shell - Solido da shell + Solid from shell + Solido da shell - - Create - Crea + Create + Crea - - All faces - Tutte le facce + All faces + Tutte le facce - - + + PartGui::TaskSweep - - Sweep - + + Sweep + Sweep - - Create solid - Crea solido + Create solid + Crea solido - - Frenet - + Frenet + Frenet - - Select one or more profiles and select an edge or wire + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. - + Seleziona uno o più profili e seleziona uno spigolo o wire nella vista 3D per il percorso di sweep. - - + + QObject - - - - - - Wrong selection - Selezione errata + + Wrong selection + Selezione errata - - - Select two shapes please. - Selezionare due forme. + Select two shapes please. + Selezionare due forme. - - - - All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) - Tutti i file CAD (*.stp *.step *.igs *.iges *.brp *.brep) + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + Tutti i file CAD (*.stp *.step *.igs *.iges *.brp *.brep) - - - - STEP (*.stp *.step) - STEP (*.stp *.step) + STEP (*.stp *.step) + STEP (*.stp *.step) - - - - IGES (*.igs *.iges) - IGES (*.igs *.iges) + IGES (*.igs *.iges) + IGES (*.igs *.iges) - - - - BREP (*.brp *.brep) - BREP (*.brp *.brep) + BREP (*.brp *.brep) + BREP (*.brp *.brep) - - - - All Files (*.*) - Tutti i File (*.*) + All Files (*.*) + Tutti i File (*.*) - - Sewing Tolerance - Tolleranza di cucitura + + Sewing Tolerance + Tolleranza di cucitura - - Enter tolerance for sewing shape: - Inserisci la tolleranza per la forma di cucitura: + Enter tolerance for sewing shape: + Inserisci la tolleranza per la forma di cucitura: - - Edit mirror plane - Modifica il piano di specchiatura + + Edit mirror plane + Modifica il piano di specchiatura - - Edit chamfer edges - + Edit chamfer edges + Modifica spigoli smussati - Transform - Trasforma + Transform + Trasforma - - - Part design - Progettazione parte + + Part design + Part design - - - Select two shapes or more, please. - Selezionare due o più forme, per favore. + + Select two shapes or more, please. + Selezionare due o più forme, per favore. - - You have to select either two edges or two wires. - È necessario selezionare due spigoli o due wire. + You have to select either two edges or two wires. + È necessario selezionare due spigoli o due wire. - - Edit fillet edges - Modifica gli spigoli raccordati + + Edit fillet edges + Modifica gli spigoli raccordati - - Set colors... - Imposta colori... + + Set colors... + Imposta colori... - - + + Workbench - - &Part - &Parte + + &Part + &Parte - - &Simple - &Semplice + &Simple + &Semplice - - &Parametric - &Parametrico + &Parametric + &Parametrico - - Part tools - Strumenti Parte + Part tools + Strumenti Parte - - Solids - Solidi + Solids + Solidi - - Boolean - Operazione booleana + Boolean + Operazione booleana - + diff --git a/src/Mod/Part/Gui/Resources/translations/Part_ja.qm b/src/Mod/Part/Gui/Resources/translations/Part_ja.qm index 78b3122c2..88becfb7c 100644 Binary files a/src/Mod/Part/Gui/Resources/translations/Part_ja.qm and b/src/Mod/Part/Gui/Resources/translations/Part_ja.qm differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_ja.ts b/src/Mod/Part/Gui/Resources/translations/Part_ja.ts index 753674db8..ed824ae77 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_ja.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_ja.ts @@ -1,2522 +1,2128 @@ - - + + BlockDefinition - - Block definition - Block definition + + Block definition + Block definition - - First limit - First limit + First limit + First limit - - - Type: - Type: + Type: + Type: - - - mm - mm + mm + mm - - - Length: - Length: + Length: + 長さ: - - - Dimension - 寸法 + Dimension + 寸法 - - - Up to next - Up to next + Up to next + Up to next - - - Up to last - Up to last + Up to last + Up to last - - - Up to plane - Up to plane + Up to plane + Up to plane - - - Up to face - Up to face + Up to face + Up to face - - - Limit: - Limit: + Limit: + Limit: - - - - - No selection - No selection + No selection + No selection - - Profile - プロファイル + Profile + プロファイル - - Selection: - Selection: + Selection: + Selection: - - Reverse - Reverse + Reverse + Reverse - - Both sides - 両側 + Both sides + 両側 - - Second limit - Second limit + Second limit + Second limit - - Direction - 方向 + Direction + 方向 - - Perpendicular to sketch - スケッチに垂直 + Perpendicular to sketch + スケッチに垂直 - - Reference - Reference + Reference + Reference - - Apply - 適用する + Apply + 適用する - - Cancel - キャンセル + Cancel + キャンセル - - OK - OK + OK + OK - - + + CmdPartBoolean - - Part - 部品 + + Part + 部品 - - Boolean... - ブーリアン演算... + Boolean... + ブーリアン演算... - - Run a boolean operation with two shapes selected - 選択された二つの図形のブーリアン演算を実行します + Run a boolean operation with two shapes selected + 選択された二つの図形のブーリアン演算を実行します - - + + CmdPartBox - - Part - 部品 + + Part + 部品 - - Box - Box + Box + Box - - Create a box solid - Create a box solid + Create a box solid + Create a box solid - - + + CmdPartBox2 - - Part - 部品 + + Part + 部品 - - Box fix 1 - Box fix 1 + Box fix 1 + Box fix 1 - - Create a box solid without dialog - Create a box solid without dialog + Create a box solid without dialog + Create a box solid without dialog - - + + CmdPartBox3 - - Part - 部品 + Part + 部品 - - Box fix 2 - Box fix 2 + Box fix 2 + Box fix 2 - - Create a box solid without dialog - Create a box solid without dialog + Create a box solid without dialog + Create a box solid without dialog - - + + CmdPartBuilder - - Part - 部品 + Part + 部品 - - Shape builder... - 形状ビルダー... + Shape builder... + 形状ビルダー... - - Advanced utility to create shapes - 高度な図形作成ユーティリティ + Advanced utility to create shapes + 高度な図形作成ユーティリティ - - + + CmdPartChamfer - - Part - 部品 + Part + 部品 - - Chamfer... - + Chamfer... + 面取り... - - Chamfer the selected edges of a shape - + Chamfer the selected edges of a shape + Chamfer the selected edges of a shape - - + + CmdPartCommon - - Part - 部品 + Part + 部品 - - Intersection - Intersection + Intersection + Intersection - - Make an intersection of two shapes - 二つの図形の交点を作成 + Make an intersection of two shapes + 二つの図形の交点を作成 - - + + CmdPartCone - - Part - 部品 + + Part + 部品 - - Cone - Cone + Cone + 三角錐 - - Create a cone solid - Create a cone solid + Create a cone solid + 円錐のソリッドを作成 - - + + CmdPartCrossSections - - Part - 部品 + + Part + 部品 - - Cross-sections... - 断面... + Cross-sections... + 断面... - - Cross-sections - 断面 + Cross-sections + 断面 - - + + CmdPartCut - - Part - 部品 + Part + 部品 - - Cut - 切り取り + Cut + 切り取り - - Make a cut of two shapes - Make a cut of two shapes + Make a cut of two shapes + Make a cut of two shapes - - + + CmdPartCylinder - - Part - 部品 + + Part + 部品 - - Create a Cylinder - 円柱を作成 + Create a Cylinder + 円柱を作成 - - Cylinder - Cylinder + Cylinder + 円柱 - - + + CmdPartExport - - Part - 部品 + + Part + 部品 - - Export CAD... - CAD をエクスポート... + Export CAD... + CAD をエクスポート... - - Exports to a CAD file - CADファイルにエクスポート + Exports to a CAD file + CADファイルにエクスポート - - + + CmdPartExtrude - - Part - 部品 + Part + 部品 - - Extrude... - 押し出し... + Extrude... + 押し出し... - - Extrude a selected sketch - Extrude a selected sketch + Extrude a selected sketch + 選択したスケッチを押し出し - - + + CmdPartFillet - - Part - 部品 + Part + 部品 - - Fillet... - フィレット... + Fillet... + フィレット... - - Fillet the selected edges of a shape - Fillet the selected edges of a shape + Fillet the selected edges of a shape + 選択した図形のエッジをフィレットにします。 - - + + CmdPartFuse - - Part - 部品 + Part + 部品 - - Union - Union + Union + Union - - Make a union of several shapes - Make a union of several shapes + Make a union of several shapes + Make a union of several shapes - - + + CmdPartImport - - Part - 部品 + Part + 部品 - - Imports a CAD file - CADファイルをインポート + Imports a CAD file + CADファイルをインポート - - Import CAD... - Import CAD... + Import CAD... + Import CAD... - - + + CmdPartImportCurveNet - - Part - 部品 + Part + 部品 - - Import a curve network - Import a curve network + Import a curve network + Import a curve network - - Import curve network... - Import curve network... + Import curve network... + Import curve network... - - + + CmdPartLoft - - Part - 部品 + Part + 部品 - - Loft... - Loft... + Loft... + Loft... - - Utility to loft - + Utility to loft + Utility to loft - Advanced utility to lofts - Advanced utility to lofts + Advanced utility to lofts + Advanced utility to lofts - - + + CmdPartMakeSolid - - Part - 部品 + Part + 部品 - - Convert to solid - ソリッドに変換 + Convert to solid + ソリッドに変換 - - Create solid from a shell or compound - Create solid from a shell or compound + Create solid from a shell or compound + Create solid from a shell or compound - - + + CmdPartMirror - - Part - 部品 + Part + 部品 - - Mirroring... - ミラーリング... + Mirroring... + ミラーリング... - - Mirroring a selected shape - 選択した図形をミラーリング + Mirroring a selected shape + 選択した図形をミラーリング - - + + CmdPartPickCurveNet - - Part - 部品 + Part + 部品 - - Pick curve network - Pick curve network + Pick curve network + Pick curve network - - Pick a curve network - Pick a curve network + Pick a curve network + Pick a curve network - - + + CmdPartPrimitives - - Part - 部品 + Part + 部品 - - Create primitives... - プリミティブを作成... + Create primitives... + プリミティブを作成... - - Creation of parametrized geometric primitives - Creation of parametrized geometric primitives + Creation of parametrized geometric primitives + Creation of parametrized geometric primitives - - + + CmdPartRefineShape - - Part - 部品 + + Part + 部品 - - Refine shape - + Refine shape + Refine shape - - Refine the copy of a shape - + Refine the copy of a shape + Refine the copy of a shape - - + + CmdPartReverseShape - - Part - 部品 + + Part + 部品 - - Reverse shapes - 図形を反転 + Reverse shapes + 図形を反転 - - Reverse orientation of shapes - Reverse orientation of shapes + Reverse orientation of shapes + 図形の方向を反転します。 - - + + CmdPartRevolve - - Part - 部品 + Part + 部品 - - Revolve... - 回転... + Revolve... + 回転... - - Revolve a selected shape - 選択した図形を回転 + Revolve a selected shape + 選択した図形を回転 - - + + CmdPartRuledSurface - - Part - 部品 + Part + 部品 - - Create ruled surface - Create ruled surface + Create ruled surface + Create ruled surface - - Create a ruled surface from two curves - Create a ruled surface from two curves + Create a ruled surface from two curves + Create a ruled surface from two curves - - + + CmdPartSection - - Make a section of two shapes - Make a section of two shapes + Make a section of two shapes + Make a section of two shapes - - Part - 部品 + Part + 部品 - - Section - Section + Section + Section - - + + CmdPartShapeFromMesh - - Part - 部品 + + Part + 部品 - - Create shape from mesh... - メッシュから形状を作成... + Create shape from mesh... + メッシュから形状を作成... - - Create shape from selected mesh object - Create shape from selected mesh object + Create shape from selected mesh object + Create shape from selected mesh object - - + + CmdPartSimpleCopy - - Part - 部品 + Part + 部品 - - Create simple copy - Create simple copy + Create simple copy + コピーを作成 - - Create a simple non-parametric copy - Create a simple non-parametric copy + Create a simple non-parametric copy + Create a simple non-parametric copy - - + + CmdPartSimpleCylinder - - Part - 部品 + Part + 部品 - - Create Cylinder... - 円柱を作成... + Create Cylinder... + 円柱を作成... - - Create a Cylinder - 円柱を作成 + Create a Cylinder + 円柱を作成 - - + + CmdPartSphere - - Create a sphere solid - Create a sphere solid + + Create a sphere solid + 球ソリッドを作成する - - Part - 部品 + Part + 部品 - - Sphere - Sphere + Sphere + - - + + CmdPartSweep - - Part - 部品 + + Part + 部品 - - Sweep... - + Sweep... + Sweep... - - Utility to sweep - + Utility to sweep + Utility to sweep - - + + CmdPartTorus - - Create a torus solid - Create a torus solid + + Create a torus solid + トーラスソリッドを作成する - - Part - 部品 + Part + 部品 - - Torus - Torus + Torus + トーラス - - + + DlgExtrusion - Select a shape for extrusion, first. - Select a shape for extrusion, first. + Select a shape for extrusion, first. + Select a shape for extrusion, first. - The document '%1' doesn't exist. - The document '%1' doesn't exist. + The document '%1' doesn't exist. + The document '%1' doesn't exist. - - + + DlgRevolution - Select a shape for revolution, first. - Select a shape for revolution, first. + Select a shape for revolution, first. + Select a shape for revolution, first. - - + + DlgSettings3DViewPart - Deviation - Deviation + Deviation + Deviation - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - - + + PartGui::CrossSections - - Cross sections - 断面 + + Cross sections + 断面 - - Guiding plane - Guiding plane + Guiding plane + Guiding plane - - XY - XY + XY + XY - - XZ - XZ + XZ + XZ - - YZ - YZ + YZ + YZ - - Position: - 位置: + Position: + 位置: - - Sections - Sections + Sections + Sections - - On both sides - On both sides + On both sides + 両側 - - Count - Count + Count + Count - - Distance: - 距離: + Distance: + 距離: - - + + PartGui::DlgBooleanOperation - - Boolean Operation - ブール演算 + + Boolean Operation + ブール演算 - - Second shape - 2番目の図形 + Second shape + 2番目の図形 - - First shape - 最初の図形 + First shape + 最初の図形 - - Boolean operation - ブール演算 + Boolean operation + ブール演算 - - Section - Section + Section + Section - - Difference - Difference + Difference + Difference - - Union - Union + Union + Union - - Intersection - Intersection + Intersection + Intersection - - Cannot perform a boolean operation with the same shape - Cannot perform a boolean operation with the same shape + + Cannot perform a boolean operation with the same shape + Cannot perform a boolean operation with the same shape - - - Solids - ソリッド + + Solids + ソリッド - - - Shells - Shells + Shells + Shells - - - Compounds - Compounds + Compounds + Compounds - - - Faces - + Faces + - - Swap selection - Swap selection + Swap selection + 選択を入れ替え - - Select a shape on the left side, first - 最初に左側の図形を選択します + + Select a shape on the left side, first + 最初に左側の図形を選択します - - Select a shape on the right side, first - 最初に右側の図形を選択します + Select a shape on the right side, first + 最初に右側の図形を選択します - - No active document available - 利用可能なアクティブドキュメントはありませんでした + No active document available + 利用可能なアクティブドキュメントはありませんでした - - One of the selected objects doesn't exist anymore - 選択したオブジェクトはもう存在しません + One of the selected objects doesn't exist anymore + 選択したオブジェクトはもう存在しません - - Performing union on non-solids is not possible - Performing union on non-solids is not possible + Performing union on non-solids is not possible + Performing union on non-solids is not possible - - Performing intersection on non-solids is not possible - Performing intersection on non-solids is not possible + Performing intersection on non-solids is not possible + Performing intersection on non-solids is not possible - - Performing difference on non-solids is not possible - Performing difference on non-solids is not possible + Performing difference on non-solids is not possible + Performing difference on non-solids is not possible - - + + PartGui::DlgChamferEdges - - Chamfer Edges - + + Chamfer Edges + Chamfer Edges - - + + PartGui::DlgExtrusion - - Extrude - Extrude + + Extrude + 押し出し - - Direction - 方向 + Direction + 方向 - - Along normal - Along normal + Along normal + Along normal - - Length: - Length: + Length: + 長さ: - - 3D view - 3Dビュー + 3D view + 3Dビュー - - Note:This option works for planes only - Note:This option works for planes only + Note:This option works for planes only + Note:This option works for planes only - - Create solid - ソリッド作成 + Create solid + ソリッド作成 - - Taper outward angle - + Taper outward angle + Taper outward angle - - Shape - 図形 + Shape + 図形 - - + + - - X: - X: + X: + X: - - Z: - z: + Z: + z: - - Y: - Y: + Y: + Y: - - Select a shape for extrusion, first. - Select a shape for extrusion, first. + + Select a shape for extrusion, first. + Select a shape for extrusion, first. - - The document '%1' doesn't exist. - The document '%1' doesn't exist. + The document '%1' doesn't exist. + The document '%1' doesn't exist. - - + + PartGui::DlgFilletEdges - - Fillet Edges - Fillet Edges + + Fillet Edges + Fillet Edges - - Fillet Parameter - Fillet Parameter + Fillet Parameter + フィレット パラメーター - - Radius: - 半径: + Radius: + 半径: - - Fillet type: - フィレットの種類: + Fillet type: + フィレットの種類: - - Constant Radius - Constant Radius + Constant Radius + 一定半径 - - Variable Radius - Variable Radius + Variable Radius + 可変半径 - - Shape - 図形 + Shape + 図形 - - Selected shape: - Selected shape: + Selected shape: + 選択した図形: - - No selection - No selection + No selection + No selection - - Edges to fillet - Edges to fillet + + Edges to fillet + Edges to fillet - - - Start radius - Start radius + Start radius + 半径を開始 - - End radius - End radius + End radius + 半径の終点 - - Radius - 半径 + Radius + 半径 - - No edge selected - エッジが選択されていません + No edge selected + エッジが選択されていません - - No edge entity is checked to fillet. + No edge entity is checked to fillet. Please check one or more edge entities first. - No edge entity is checked to fillet. + No edge entity is checked to fillet. Please check one or more edge entities first. - - All - すべて + + All + すべて - - None - なし + None + なし - - - Edge%1 - Edge%1 + + Edge%1 + Edge%1 - - No shape selected - 図形が選択されていません + No shape selected + 図形が選択されていません - - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - - + + PartGui::DlgPartBox - - Box definition - Box definition + + Box definition + Box definition - - X: - X: + X: + X: - - Z: - z: + Z: + z: - - Y: - Y: + Y: + Y: - - Cancel - キャンセル + Cancel + キャンセル - - OK - OK + OK + OK - - Size: - サイズ: + Size: + サイズ: - - Height: - Height: + Height: + 高さ: - - Width: - 幅: + Width: + 幅: - - Length: - Length: + Length: + 長さ: - - Position: - 位置: + Position: + 位置: - - Direction: - Direction: + Direction: + Direction: - - + + PartGui::DlgPartCylinder - - Cylinder definition - 円柱の定義 + + Cylinder definition + 円柱の定義 - - Parameter - パラメータ + Parameter + パラメータ - - Height: - Height: + Height: + 高さ: - - Radius: - 半径: + Radius: + 半径: - - Position: - 位置: + Position: + 位置: - - Direction: - Direction: + Direction: + Direction: - - X: - X: + X: + X: - - Z: - z: + Z: + z: - - Y: - Y: + Y: + Y: - - OK - OK + OK + OK - - Cancel - キャンセル + Cancel + キャンセル - - + + PartGui::DlgPartImportIges - - IGES input file - IGES input file + + IGES input file + IGES入力ファイル - - ... - ... + ... + ... - - Cancel - キャンセル + Cancel + キャンセル - - OK - OK + OK + OK - - File Name - File Name + File Name + ファイル名 - - + + - - + + PartGui::DlgPartImportIgesImp - - IGES (*.igs *.iges);;All Files (*.*) - IGES(*.IGS *.IGES);;すべてのファイル(*.*) + + IGES (*.igs *.iges);;All Files (*.*) + IGES(*.IGS *.IGES);;すべてのファイル(*.*) - - + + PartGui::DlgPartImportStep - - ... - ... + + ... + ... - - Cancel - キャンセル + Cancel + キャンセル - - OK - OK + OK + OK - - Step input file - Step input file + Step input file + ステップ入力ファイル - - File Name - File Name + File Name + ファイル名 - - + + - - + + PartGui::DlgPartImportStepImp - - STEP (*.stp *.step);;All Files (*.*) - STEP (*.stp *.step);;All Files (*.*) + + STEP (*.stp *.step);;All Files (*.*) + STEPファイル(*.stp *.step);すべてのファイル (*.*) - - + + PartGui::DlgPrimitives - - Geometric Primitives - Geometric Primitives + + Geometric Primitives + Geometric Primitives - Primitive - プリミティブ + Primitive + プリミティブ - X min - X min + X min + X min - x max - x max + x max + x max - Y min - Y min + Y min + Y min - Y max - Y max + Y max + Y max - Z min - Z min + Z min + Z min - Z max - Z max + Z max + Z max - X2 min - X2 min + X2 min + X2 min - X2 max - X2 max + X2 max + X2 max - Z2 min - Z2 min + Z2 min + Z2 min - Z2 max - Z2 max + Z2 max + Z2 max - Angle - 0 for cyl - Angle - 0 for cyl + Angle - 0 for cyl + Angle - 0 for cyl - Angle0 - Angle0 + Angle0 + Angle0 - Angle1 - Angle1 + Angle1 + Angle1 - X Axis Value: - X軸の値: + X Axis Value: + X軸の値: - Y Axis Value: - Y軸の値: + Y Axis Value: + Y軸の値: - Z Axis Value: - Z軸の値: + Z Axis Value: + Z軸の値: - - Wedge - Wedge + Wedge + Wedge - - Circle - + Circle + - Vertex - 頂点 + Vertex + 頂点 - Position - Position + Position + Position - - - - Z: - z: + Z: + z: - - - - X: - X: + X: + X: - Direction: - Direction: + Direction: + Direction: - - - - Y: - Y: + Y: + Y: - - Plane - Plane + Plane + Plane - - Box - Box + Box + Box - - Cylinder - Cylinder + Cylinder + 円柱 - - Cone - Cone + Cone + 三角錐 - - Sphere - Sphere + Sphere + - - Ellipsoid - Ellipsoid + Ellipsoid + 楕円 - - Torus - Torus + Torus + トーラス - - Ellipse - + Ellipse + Ellipse - - Point - + Point + - - Line - + Line + 直線 - - Parameter - パラメータ + Parameter + パラメータ - - - Width: - 幅: + Width: + 幅: - - - Length: - Length: + Length: + 長さ: - - - - - Height: - Height: + Height: + 高さ: - - - - Angle: - 角度: + Angle: + 角度: - - - - - Radius: - 半径: + Radius: + 半径: - - - - Radius 1: - 半径 1: + Radius 1: + 半径 1: - - - - Radius 2: - 半径 2: + Radius 2: + 半径 2: - - - - U parametric: - U parametric: + U parametric: + U parametric: - - - - V parametric: - V parametric: + V parametric: + V parametric: - - X min/max: - + X min/max: + X min/max: - - Y min/max: - + Y min/max: + Y min/max: - - Z min/max: - + Z min/max: + Z min/max: - - X2 min/max: - + X2 min/max: + X2 min/max: - - Z2 min/max: - + Z2 min/max: + Z2 min/max: - - Coordinate system: - + Coordinate system: + Coordinate system: - - Right-handed - + Right-handed + Right-handed - - Left-handed - + Left-handed + Left-handed - - - Angle 1: - + Angle 1: + Angle 1: - - - Angle 2: - + Angle 2: + Angle 2: - - From three points - + From three points + From three points - - Major radius: - + Major radius: + Major radius: - - Minor radius: - + Minor radius: + Minor radius: - - End point - + End point + End point - - Start point - + Start point + Start point - - &Create - &Create + + &Create + 作成(&C) - Alt+C - Alt+C + Alt+C + Alt+C - Cl&ose - 閉じる(&O) + Cl&ose + 閉じる(&O) - Alt+O - Alt+O + Alt+O + Alt+O - - - - Create %1 - Create %1 + Create %1 + %1を作成します。 - - No active document - No active document + No active document + No active document - - Pitch: - Pitch: + + Pitch: + ピッチ: - - Helix - 螺旋 + Helix + 螺旋 - 3D View - 3D 表示 + 3D View + 3D 表示 - - + + PartGui::DlgRevolution - - Revolve - 回転 + + Revolve + 回転 - - Y: - Y: + Y: + Y: - - X: - X: + X: + X: - - Angle: - 角度: + Angle: + 角度: - - Z: - z: + Z: + z: - - Axis: - 軸: + Axis: + 軸: - - Shape - 図形 + Shape + 図形 - - Select line in 3D view - + Select line in 3D view + Select line in 3D view - - Select a shape for revolution, first. - Select a shape for revolution, first. + + Select a shape for revolution, first. + Select a shape for revolution, first. - - + + PartGui::DlgSettings3DViewPart - - View accuracy / Performance - View accuracy / Performance + + View accuracy / Performance + View accuracy / Performance - - View smoothing - View smoothing + View smoothing + View smoothing - - Using high-quality normals - Using high-quality normals + Using high-quality normals + Using high-quality normals - - This will slow down render speed but will lead to nicer results - This will slow down render speed but will lead to nicer results + This will slow down render speed but will lead to nicer results + This will slow down render speed but will lead to nicer results - - Defines the appearance of surfaces - Defines the appearance of surfaces + Defines the appearance of surfaces + Defines the appearance of surfaces - - Shape view - 図形ビュー + Shape view + 図形ビュー - - Tessellation - Tessellation + Tessellation + Tessellation - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> - - Do not define normal per vertex - Do not define normal per vertex + Do not define normal per vertex + Do not define normal per vertex - - Defines the deviation of tessellation to the actual surface - Defines the deviation of tessellation to the actual surface + Defines the deviation of tessellation to the actual surface + Defines the deviation of tessellation to the actual surface - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-weight:600;">ヒント</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">頂点ごとに法線を定義する方法は<span style=" font-style:italic;">フォンシェーディング</span>と呼ばれています</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"> <span style=" font-style:normal;">また、面ごとの法線を定義する方法は</span>フラットシェーディング<span style=" font-style:normal;">と呼ばれています。</span> </p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-weight:600;">ヒント</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">頂点ごとに法線を定義する方法は<span style=" font-style:italic;">フォンシェーディング</span>と呼ばれています</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"> <span style=" font-style:normal;">また、面ごとの法線を定義する方法は</span>フラットシェーディング<span style=" font-style:normal;">と呼ばれています。</span> </p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> - - Maximum deviation depending on the model bounding box - Maximum deviation depending on the model bounding box + Maximum deviation depending on the model bounding box + Maximum deviation depending on the model bounding box - - % - % + % + % - - Deviation - Deviation + + Deviation + Deviation - - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - - + + PartGui::DlgSettingsGeneral - - General - 標準 + + General + 標準 - - Export - エクスポート + Export + エクスポート - - Millimeter - ミリメートル + Millimeter + ミリメートル - - Meter - メートル + Meter + メートル - - Inch - インチ + Inch + インチ - - Units for export of STEP/IGES - Units for export of STEP/IGES + Units for export of STEP/IGES + STEP/IGESをエキスポート時の単位 - - Model settings - + Model settings + Model settings - - Automatically refine model after boolean operation - + Automatically refine model after boolean operation + Automatically refine model after boolean operation - - Automatically check model after boolean operation - + Automatically check model after boolean operation + Automatically check model after boolean operation - - + + PartGui::FaceColors - - Face colors - + + Face colors + Face colors - - Do you really want to cancel? - + Do you really want to cancel? + Do you really want to cancel? - - + + PartGui::Location - - Location - + + Location + Location - - Position - Position + Position + Position - - 3D View - 3D 表示 + 3D View + 3D 表示 - - + + PartGui::LoftWidget - - - Vertex/Wire - 頂点/連線 + + Vertex/Wire + 頂点/連線 - - - Loft - Loft + Loft + Loft - - Too few elements - Too few elements + Too few elements + 要素が少なすぎます - - At least two vertices, edges or wires are required. - + At least two vertices, edges or wires are required. + At least two vertices, edges or wires are required. - At least two vertices or wires are required. - 少なくとも二つの頂点か連線が必要です。 + At least two vertices or wires are required. + 少なくとも二つの頂点か連線が必要です。 - - + + PartGui::Mirroring - - Mirroring - ミラーリング + + Mirroring + ミラーリング - - Shapes - Shapes + Shapes + 図形 - - Mirror plane: - Mirror plane: + Mirror plane: + Mirror plane: - - XY plane - XY平面 + XY plane + XY平面 - - XZ plane - XZ平面 + XZ plane + XZ平面 - - YZ plane - YZ平面 + YZ plane + YZ平面 - - Base point: - Base point: + Base point: + 基準点: - - x - x + x + x - - y - y + y + y - - z - z + z + z - - Select a shape for mirroring, first. - 最初にミラーリングのための図形を選択します + + Select a shape for mirroring, first. + 最初にミラーリングのための図形を選択します - - No such document '%1'. - No such document '%1'. + No such document '%1'. + No such document '%1'. - - + + PartGui::ShapeBuilderWidget - - - - - - Wrong selection - 誤った選択 + + Wrong selection + 誤った選択 - - - Select two vertices - 二つの頂点を選択 + Select two vertices + 二つの頂点を選択 - Select three or more edges - 三つ以上のエッジを選択 + Select three or more edges + 三つ以上のエッジを選択 - - Select one or more edges - + Select one or more edges + Select one or more edges - - Select two or more faces - 二つ以上の面を選択 + Select two or more faces + 二つ以上の面を選択 - - Select only one part object - Select only one part object + Select only one part object + Select only one part object - - Select two vertices to create an edge - Select two vertices to create an edge + Select two vertices to create an edge + Select two vertices to create an edge - - Select a closed set of edges - Select a closed set of edges + Select a closed set of edges + Select a closed set of edges - - Select adjacent faces - 隣接する面を選択 + Select adjacent faces + 隣接する面を選択 - - All shape types can be selected - All shape types can be selected + All shape types can be selected + All shape types can be selected - - + + PartGui::SweepWidget - - - Vertex/Wire - 頂点/連線 + + Vertex/Wire + 頂点/連線 - - - Sweep - + Sweep + Sweep - - Sweep path - + Sweep path + Sweep path - - Select an edge or wire you want to sweep along. - + Select an edge or wire you want to sweep along. + Select an edge or wire you want to sweep along. - - Too few elements - Too few elements + Too few elements + 要素が少なすぎます - - At least one edge or wire is required. - + At least one edge or wire is required. + At least one edge or wire is required. - - + + PartGui::TaskDialogEditDynamic - Hint - Hint + Hint + Hint - Select Control. - Select Control. + Select Control. + Select Control. - Control - Control + Control + Control - Dynamic - Dynamic + Dynamic + Dynamic - Align - Align + Align + Align - Value - + Value + - Special - Special + Special + Special - Command - コマンド + Command + コマンド - Stretch - Stretch + Stretch + Stretch - Move - 移動 + Move + 移動 - Rotate - 回転 + Rotate + 回転 - Offset - オフセット + Offset + オフセット - Orient - Orient + Orient + Orient - Match - Match + Match + Match - Surround - Surround + Surround + Surround - dummy - dummy + dummy + dummy - X Axis - X Axis + X Axis + X軸 - Y Axis - Y Axis + Y Axis + Y軸 - Z Axis - Z Axis + Z Axis + Z軸 - Increment - Increment + Increment + Increment - .125 - .125 + .125 + .125 - .500 - .500 + .500 + .500 - 1.000 - 1.000 + 1.000 + 1.000 - 5.000 - 5.000 + 5.000 + 5.000 - 10.000 - 10.000 + 10.000 + 10.000 - Drag arrows to stretch box by increment - Drag arrows to stretch box by increment + Drag arrows to stretch box by increment + Drag arrows to stretch box by increment - Drag arrows to move box by increment - Drag arrows to move box by increment + Drag arrows to move box by increment + Drag arrows to move box by increment - Not implemented yet - Not implemented yet + Not implemented yet + Not implemented yet - Drag arrows to offset checked axes by increment - Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment - Select dragger for stretch by align - Select dragger for stretch by align + Select dragger for stretch by align + Select dragger for stretch by align - Select dragger for move by align - Select dragger for move by align + Select dragger for move by align + Select dragger for move by align - Select dragger for stretch by value - Select dragger for stretch by value + Select dragger for stretch by value + Select dragger for stretch by value - Select dragger for move by value - Select dragger for move by value + Select dragger for move by value + Select dragger for move by value - 1.0 - 1.0 + 1.0 + 1.0 - Enter Value - Enter Value + Enter Value + Enter Value - Select box to match - Select box to match + Select box to match + Select box to match - Select a point - Select a point + Select a point + Select a point - 0.0 - 0.0 + 0.0 + 0.0 - Select dragger to align - Select dragger to align + Select dragger to align + Select dragger to align - Select dragger to modify - Select dragger to modify + Select dragger to modify + Select dragger to modify - - + + PartGui::TaskFaceColors - - Set color per face - 面ごとの色の設定 + + Set color per face + 面ごとの色の設定 - - Click on the faces in the 3d view to select them. - それらを選択するには、3Dビューで面をクリックしてください。 + Click on the faces in the 3d view to select them. + それらを選択するには、3Dビューで面をクリックしてください。 - - Faces: - 面: + Faces: + 面: - - Set to default - Set to default + Set to default + Set to default - - + + PartGui::TaskLoft - - Loft - Loft + + Loft + Loft - Vertex/Wire - 頂点/連線 + Vertex/Wire + 頂点/連線 - Move right - 右へ移動 + Move right + 右へ移動 - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>選択した項目1つ下のレベルに移動します。</b> <p>これは、親項目のレベルも変更します。 </p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>選択した項目1つ下のレベルに移動します。</b> <p>これは、親項目のレベルも変更します。 </p> - Move left - 左へ移動 + Move left + 左へ移動 - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>選択した項目を1つ上のレベルに移動します。</b> <p>これは、親項目のレベルも変更します。 </p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>選択した項目を1つ上のレベルに移動します。</b> <p>これは、親項目のレベルも変更します。 </p> - Move up - 上へ移動 + Move up + 上へ移動 - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>選択された項目を上へ移動します。</b> <p>項目は階層レベル内で移動されます。 </p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>選択された項目を上へ移動します。</b> <p>項目は階層レベル内で移動されます。 </p> - Move down - 下へ移動 + Move down + 下へ移動 - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>選択された項目を下へ移動します。</b> <p>項目は階層レベル内で移動されます。 </p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>選択された項目を下へ移動します。</b> <p>項目は階層レベル内で移動されます。 </p> - - Create solid - ソリッド作成 + Create solid + ソリッド作成 - - Ruled surface - Ruled surface + Ruled surface + Ruled surface - - + + PartGui::TaskShapeBuilder - - - Create shape - Create shape + + Create shape + Create shape - - Edge from vertices - Edge from vertices + Edge from vertices + Edge from vertices - - Face from edges - Face from edges + Face from edges + Face from edges - - Planar - Planar + Planar + Planar - - Shell from faces - Shell from faces + Shell from faces + Shell from faces - - Solid from shell - Solid from shell + Solid from shell + Solid from shell - - Create - 作成 + Create + 作成 - - All faces - すべての面 + All faces + すべての面 - - + + PartGui::TaskSweep - - Sweep - + + Sweep + Sweep - - Create solid - ソリッド作成 + Create solid + ソリッド作成 - - Frenet - + Frenet + Frenet - - Select one or more profiles and select an edge or wire + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. - + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. - - + + QObject - - - - - - Wrong selection - 誤った選択 + + Wrong selection + 誤った選択 - - - Select two shapes please. - Select two shapes please. + Select two shapes please. + Select two shapes please. - - - - All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) - All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) - - - - STEP (*.stp *.step) - STEP (*.stp *.step) + STEP (*.stp *.step) + STEP (*.stp *.step) - - - - IGES (*.igs *.iges) - IGES (*.igs *.iges) + IGES (*.igs *.iges) + IGES (*.igs *.iges) - - - - BREP (*.brp *.brep) - BREP (*.brp *.brep) + BREP (*.brp *.brep) + BREP (*.brp *.brep) - - - - All Files (*.*) - すべてのファイル (*.*) + All Files (*.*) + すべてのファイル (*.*) - - Sewing Tolerance - Sewing Tolerance + + Sewing Tolerance + Sewing Tolerance - - Enter tolerance for sewing shape: - Enter tolerance for sewing shape: + Enter tolerance for sewing shape: + Enter tolerance for sewing shape: - - Edit mirror plane - Edit mirror plane + + Edit mirror plane + Edit mirror plane - - Edit chamfer edges - + Edit chamfer edges + Edit chamfer edges - Transform - 変換 + Transform + 変換 - - - Part design - Part design + + Part design + 部品設計 - - - Select two shapes or more, please. - 二つ以上の図形を選択してください. + + Select two shapes or more, please. + 二つ以上の図形を選択してください. - - You have to select either two edges or two wires. - You have to select either two edges or two wires. + You have to select either two edges or two wires. + You have to select either two edges or two wires. - - Edit fillet edges - フィレットエッジを編集 + + Edit fillet edges + フィレットエッジを編集 - - Set colors... - 色を設定... + + Set colors... + 色を設定... - - + + Workbench - - &Part - 部品(&p) + + &Part + 部品(&p) - - &Simple - &Simple + &Simple + &Simple - - &Parametric - &Parametric + &Parametric + &Parametric - - Part tools - 部品ツール + Part tools + 部品ツール - - Solids - ソリッド + Solids + ソリッド - - Boolean - Boolean + Boolean + Boolean - + diff --git a/src/Mod/Part/Gui/Resources/translations/Part_nl.qm b/src/Mod/Part/Gui/Resources/translations/Part_nl.qm index 39fa316f5..975551d2e 100644 Binary files a/src/Mod/Part/Gui/Resources/translations/Part_nl.qm and b/src/Mod/Part/Gui/Resources/translations/Part_nl.qm differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_nl.ts b/src/Mod/Part/Gui/Resources/translations/Part_nl.ts index 7ec5699f0..975636255 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_nl.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_nl.ts @@ -1,2521 +1,2127 @@ - - + + BlockDefinition - - Block definition - Blok-definitie + + Block definition + Blok-definitie - - First limit - Eerste limiet + First limit + Eerste limiet - - - Type: - Type: + Type: + Type: - - - mm - mm + mm + mm - - - Length: - Lengte: + Length: + Lengte: - - - Dimension - Afmeting + Dimension + Afmeting - - - Up to next - Naar de volgende + Up to next + Naar de volgende - - - Up to last - Naar de laatste + Up to last + Naar de laatste - - - Up to plane - Naar vlak + Up to plane + Naar vlak - - - Up to face - Naar oppervlak + Up to face + Naar oppervlak - - - Limit: - Limiet: + Limit: + Limiet: - - - - - No selection - Geen selectie + No selection + Geen selectie - - Profile - Profiel + Profile + Profiel - - Selection: - Selectie: + Selection: + Selectie: - - Reverse - Omdraaien + Reverse + Omdraaien - - Both sides - Beide kanten + Both sides + Beide kanten - - Second limit - Tweede limiet + Second limit + Tweede limiet - - Direction - Richting + Direction + Richting - - Perpendicular to sketch - Perpendicular to sketch + Perpendicular to sketch + Loodrecht op schets - - Reference - Referentie + Reference + Referentie - - Apply - Toepassen + Apply + Toepassen - - Cancel - Annuleren + Cancel + Annuleren - - OK - OK + OK + OK - - + + CmdPartBoolean - - Part - Component + + Part + Component - - Boolean... - Boolean... + Boolean... + Boolean... - - Run a boolean operation with two shapes selected - Een Booleaanse bewerking uitvoeren met twee geselecteerde vormen + Run a boolean operation with two shapes selected + Een Booleaanse bewerking uitvoeren met twee geselecteerde vormen - - + + CmdPartBox - - Part - Component + + Part + Component - - Box - Blok + Box + Blok - - Create a box solid - Create a box solid + Create a box solid + Create a box solid - - + + CmdPartBox2 - - Part - Component + + Part + Component - - Box fix 1 - Blok positie 1 + Box fix 1 + Blok positie 1 - - Create a box solid without dialog - Create a box solid without dialog + Create a box solid without dialog + Create a box solid without dialog - - + + CmdPartBox3 - - Part - Component + Part + Component - - Box fix 2 - Blok positie 2 + Box fix 2 + Blok positie 2 - - Create a box solid without dialog - Create a box solid without dialog + Create a box solid without dialog + Create a box solid without dialog - - + + CmdPartBuilder - - Part - Component + Part + Component - - Shape builder... - Shape builder... + Shape builder... + Shape builder... - - Advanced utility to create shapes - Advanced utility to create shapes + Advanced utility to create shapes + Advanced utility to create shapes - - + + CmdPartChamfer - - Part - Component + Part + Component - - Chamfer... - + Chamfer... + Afschuining ... - - Chamfer the selected edges of a shape - + Chamfer the selected edges of a shape + Afschuining van de geselecteerde randen van een vorm - - + + CmdPartCommon - - Part - Component + Part + Component - - Intersection - Snijpunt + Intersection + Snijpunt - - Make an intersection of two shapes - Make an intersection of two shapes + Make an intersection of two shapes + Make an intersection of two shapes - - + + CmdPartCone - - Part - Component + + Part + Component - - Cone - Kegel + Cone + Kegel - - Create a cone solid - Create a cone solid + Create a cone solid + Een kegel volumemodel maken - - + + CmdPartCrossSections - - Part - Component + + Part + Component - - Cross-sections... - Dwarsdoorsneden... + Cross-sections... + Dwarsdoorsneden... - - Cross-sections - Dwarsdoorsneden + Cross-sections + Dwarsdoorsneden - - + + CmdPartCut - - Part - Component + Part + Component - - Cut - Snijden + Cut + Snijden - - Make a cut of two shapes - Make a cut of two shapes + Make a cut of two shapes + Maak een doorsnede van twee vormen - - + + CmdPartCylinder - - Part - Component + + Part + Component - - Create a Cylinder - Maak een cilinder + Create a Cylinder + Maak een cilinder - - Cylinder - Cilinder + Cylinder + Cilinder - - + + CmdPartExport - - Part - Component + + Part + Component - - Export CAD... - Exporteer CAD... + Export CAD... + Exporteer CAD... - - Exports to a CAD file - Exports to a CAD file + Exports to a CAD file + Uitvoer naar een CAD-bestand - - + + CmdPartExtrude - - Part - Component + Part + Component - - Extrude... - Uitrekken... + Extrude... + Uitrekken... - - Extrude a selected sketch - Een geselecteerde schets extruderen + Extrude a selected sketch + Een geselecteerde schets extruderen - - + + CmdPartFillet - - Part - Component + Part + Component - - Fillet... - Afronden... + Fillet... + Afronden... - - Fillet the selected edges of a shape - Rond de geselecteerde randen van een vorm af + Fillet the selected edges of a shape + Rond de geselecteerde randen van een vorm af - - + + CmdPartFuse - - Part - Component + Part + Component - - Union - Verbinden + Union + Verbinden - - Make a union of several shapes - Make a union of several shapes + Make a union of several shapes + Verenig verschillende vormen - - + + CmdPartImport - - Part - Component + Part + Component - - Imports a CAD file - Importeert een CAD-bestand + Imports a CAD file + Importeert een CAD-bestand - - Import CAD... - Import CAD... + Import CAD... + Import CAD... - - + + CmdPartImportCurveNet - - Part - Component + Part + Component - - Import a curve network - Importeer een gekromd raster + Import a curve network + Importeer een gekromd raster - - Import curve network... - Importeer een gekromd raster... + Import curve network... + Importeer een gekromd raster... - - + + CmdPartLoft - - Part - Component + Part + Component - - Loft... - Loft... + Loft... + Loft... - - Utility to loft - + Utility to loft + Utility to loft - Advanced utility to lofts - Advanced utility to lofts + Advanced utility to lofts + Advanced utility to lofts - - + + CmdPartMakeSolid - - Part - Component + Part + Component - - Convert to solid - Converteren naar volumemodel + Convert to solid + Converteren naar volumemodel - - Create solid from a shell or compound - Create solid from a shell or compound + Create solid from a shell or compound + Volumemodel vanuit een schil of samengestelde deel maken - - + + CmdPartMirror - - Part - Component + Part + Component - - Mirroring... - Spiegelen... + Mirroring... + Spiegelen... - - Mirroring a selected shape - Spiegelen van een geselecteerde vorm + Mirroring a selected shape + Spiegelen van een geselecteerde vorm - - + + CmdPartPickCurveNet - - Part - Component + Part + Component - - Pick curve network - Kies een gekromd raster + Pick curve network + Kies een gekromd raster - - Pick a curve network - Kies een gekromd raster + Pick a curve network + Kies een gekromd raster - - + + CmdPartPrimitives - - Part - Component + Part + Component - - Create primitives... - Maak primitieven... + Create primitives... + Maak primitieven... - - Creation of parametrized geometric primitives - Het maken van geparametriseerde geometrische primitieven + Creation of parametrized geometric primitives + Het maken van geparametriseerde geometrische primitieven - - + + CmdPartRefineShape - - Part - Component + + Part + Component - - Refine shape - + Refine shape + Refine shape - - Refine the copy of a shape - + Refine the copy of a shape + Refine the copy of a shape - - + + CmdPartReverseShape - - Part - Component + + Part + Component - - Reverse shapes - Omkeren van vormen + Reverse shapes + Omkeren van vormen - - Reverse orientation of shapes - Omgekeerde oriëntatie van vormen + Reverse orientation of shapes + Omgekeerde oriëntatie van vormen - - + + CmdPartRevolve - - Part - Component + Part + Component - - Revolve... - Revolve... + Revolve... + Draaien... - - Revolve a selected shape - Revolve a selected shape + Revolve a selected shape + Een geselecteerde vorm draaien - - + + CmdPartRuledSurface - - Part - Component + Part + Component - - Create ruled surface - Create ruled surface + Create ruled surface + Create ruled surface - - Create a ruled surface from two curves - Create a ruled surface from two curves + Create a ruled surface from two curves + Create a ruled surface from two curves - - + + CmdPartSection - - Make a section of two shapes - Make a section of two shapes + Make a section of two shapes + Een doorsnede van twee vormen maken - - Part - Component + Part + Component - - Section - Deel + Section + Deel - - + + CmdPartShapeFromMesh - - Part - Component + + Part + Component - - Create shape from mesh... - Create shape from mesh... + Create shape from mesh... + Maak vorm van mesh... - - Create shape from selected mesh object - Create shape from selected mesh object + Create shape from selected mesh object + Vorm van geselecteerde mesh maken - - + + CmdPartSimpleCopy - - Part - Component + Part + Component - - Create simple copy - Create simple copy + Create simple copy + Eenvoudige kopie maken - - Create a simple non-parametric copy - Create a simple non-parametric copy + Create a simple non-parametric copy + Create a simple non-parametric copy - - + + CmdPartSimpleCylinder - - Part - Component + Part + Component - - Create Cylinder... - Maak Cilinder... + Create Cylinder... + Maak Cilinder... - - Create a Cylinder - Maak een cilinder + Create a Cylinder + Maak een cilinder - - + + CmdPartSphere - - Create a sphere solid - Create a sphere solid + + Create a sphere solid + Maak een bol volumemodel - - Part - Component + Part + Component - - Sphere - Bol + Sphere + Bol - - + + CmdPartSweep - - Part - Component + + Part + Component - - Sweep... - + Sweep... + Sweep... - - Utility to sweep - + Utility to sweep + Utility to sweep - - + + CmdPartTorus - - Create a torus solid - Create a torus solid + + Create a torus solid + Een torus volumemodel maken - - Part - Component + Part + Component - - Torus - Torus + Torus + Torus - - + + DlgExtrusion - Select a shape for extrusion, first. - Selecteer eerst een vorm voor extrusie. + Select a shape for extrusion, first. + Selecteer eerst een vorm voor extrusie. - The document '%1' doesn't exist. - The document '%1' doesn't exist. + The document '%1' doesn't exist. + The document '%1' doesn't exist. - - + + DlgRevolution - Select a shape for revolution, first. - Selecteer eerst een vorm om te roteren. + Select a shape for revolution, first. + Selecteer eerst een vorm om te roteren. - - + + DlgSettings3DViewPart - Deviation - Deviation + Deviation + Deviation - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - - + + PartGui::CrossSections - - Cross sections - Cross sections + + Cross sections + Doorsnedes - - Guiding plane - Guiding plane + Guiding plane + Guiding plane - - XY - XY + XY + XY - - XZ - XZ + XZ + XZ - - YZ - YZ + YZ + YZ - - Position: - Positie: + Position: + Positie: - - Sections - Sections + Sections + Delen - - On both sides - Aan beide zijden + On both sides + Aan beide zijden - - Count - Tellen + Count + Tellen - - Distance: - Afstand: + Distance: + Afstand: - - + + PartGui::DlgBooleanOperation - - Boolean Operation - Boleaanse bewerkingen + + Boolean Operation + Boleaanse bewerkingen - - Second shape - Tweede vorm + Second shape + Tweede vorm - - First shape - Eerste vorm + First shape + Eerste vorm - - Boolean operation - Boleaanse operatie + Boolean operation + Boleaanse operatie - - Section - Deel + Section + Deel - - Difference - verschil + Difference + Verschil - - Union - Verbinden + Union + Verbinden - - Intersection - Snijpunt + Intersection + Snijpunt - - Cannot perform a boolean operation with the same shape - Kan een booleaanse bewerking niet uit te voeren met dezelfde vorm + + Cannot perform a boolean operation with the same shape + Kan een booleaanse bewerking niet uit te voeren met dezelfde vorm - - - Solids - Volumemodel + + Solids + Volumemodel - - - Shells - Shells + Shells + Schillen - - - Compounds - Compounds + Compounds + Compounds - - - Faces - Vlakken + Faces + Vlakken - - Swap selection - Wissel selectie + Swap selection + Wissel selectie - - Select a shape on the left side, first - Selecteer eerst een vorm aan de linkerkant + + Select a shape on the left side, first + Selecteer eerst een vorm aan de linkerkant - - Select a shape on the right side, first - Selecteer eerst een vorm aan de rechterkant + Select a shape on the right side, first + Selecteer eerst een vorm aan de rechterkant - - No active document available - Geen actief document beschikbaar + No active document available + Geen actief document beschikbaar - - One of the selected objects doesn't exist anymore - Eén van de geselecteerde objecten bestaat niet meer + One of the selected objects doesn't exist anymore + Eén van de geselecteerde objecten bestaat niet meer - - Performing union on non-solids is not possible - Performing union on non-solids is not possible + Performing union on non-solids is not possible + Performing union on non-solids is not possible - - Performing intersection on non-solids is not possible - Performing intersection on non-solids is not possible + Performing intersection on non-solids is not possible + Performing intersection on non-solids is not possible - - Performing difference on non-solids is not possible - Performing difference on non-solids is not possible + Performing difference on non-solids is not possible + Performing difference on non-solids is not possible - - + + PartGui::DlgChamferEdges - - Chamfer Edges - + + Chamfer Edges + Afschuinen Randen - - + + PartGui::DlgExtrusion - - Extrude - Uitrekken + + Extrude + Uitrekken - - Direction - Richting + Direction + Richting - - Along normal - Langs de normaal + Along normal + Langs de normaal - - Length: - Lengte: + Length: + Lengte: - - 3D view - 3D view + 3D view + 3D-weergave - - Note:This option works for planes only - Note:This option works for planes only + Note:This option works for planes only + Opmerking: deze optie werkt allen voor vlakken - - Create solid - Maak een volumemodel + Create solid + Maak een volumemodel - - Taper outward angle - + Taper outward angle + Taper outward angle - - Shape - Vorm + Shape + Vorm - - '' + + '' - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - Select a shape for extrusion, first. - Selecteer eerst een vorm voor extrusie. + + Select a shape for extrusion, first. + Selecteer eerst een vorm voor extrusie. - - The document '%1' doesn't exist. - The document '%1' doesn't exist. + The document '%1' doesn't exist. + The document '%1' doesn't exist. - - + + PartGui::DlgFilletEdges - - Fillet Edges - Kanten afronden + + Fillet Edges + Kanten afronden - - Fillet Parameter - Afrond-parameter + Fillet Parameter + Afrond-parameter - - Radius: - Straal: + Radius: + Straal: - - Fillet type: - Afrond-type: + Fillet type: + Afrond-type: - - Constant Radius - Constante radius + Constant Radius + Constante radius - - Variable Radius - Variabele radius + Variable Radius + Variabele radius - - Shape - Vorm + Shape + Vorm - - Selected shape: - Geselecteerde vorm: + Selected shape: + Geselecteerde vorm: - - No selection - Geen selectie + No selection + Geen selectie - - Edges to fillet - Af te ronden kanten + + Edges to fillet + Af te ronden kanten - - - Start radius - Start-radius + Start radius + Start-radius - - End radius - Eind-radius + End radius + Eind-radius - - Radius - Radius + Radius + Radius - - No edge selected - Geen kant geselecteerd + No edge selected + Geen kant geselecteerd - - No edge entity is checked to fillet. + No edge entity is checked to fillet. Please check one or more edge entities first. - Geen rand is geselecteerd om af te ronden. + Geen rand is geselecteerd om af te ronden. Gelieve eerst één of meerdere randen te selecteren. - - All - Alles + + All + Alles - - None - Geen + None + Geen - - - Edge%1 - Rand %1 + + Edge%1 + Rand %1 - - No shape selected - Geen vorm geselecteerd + No shape selected + Geen vorm geselecteerd - - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - Geen geldige vorm geselecteerd. Selecteer eerst een geldige vorm in het uitklap-scherm. + Geen geldige vorm geselecteerd. Selecteer eerst een geldige vorm in het uitklap-scherm. - - + + PartGui::DlgPartBox - - Box definition - Blok-definitie + + Box definition + Blok-definitie - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - Cancel - Annuleren + Cancel + Annuleren - - OK - OK + OK + OK - - Size: - Grootte: + Size: + Grootte: - - Height: - Hoogte: + Height: + Hoogte: - - Width: - Breedte: + Width: + Breedte: - - Length: - Lengte: + Length: + Lengte: - - Position: - Positie: + Position: + Positie: - - Direction: - Richting: + Direction: + Richting: - - + + PartGui::DlgPartCylinder - - Cylinder definition - Cilinder-definitie + + Cylinder definition + Cilinder-definitie - - Parameter - Parameter + Parameter + Parameter - - Height: - Hoogte: + Height: + Hoogte: - - Radius: - Straal: + Radius: + Straal: - - Position: - Positie: + Position: + Positie: - - Direction: - Richting: + Direction: + Richting: - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - OK - OK + OK + OK - - Cancel - Annuleren + Cancel + Annuleren - - + + PartGui::DlgPartImportIges - - IGES input file - IGES-invoer bestand + + IGES input file + IGES-invoer bestand - - ... - ... + ... + ... - - Cancel - Annuleren + Cancel + Annuleren - - OK - OK + OK + OK - - File Name - Bestandsnaam + File Name + Bestandsnaam - - '' + + '' - - + + PartGui::DlgPartImportIgesImp - - IGES (*.igs *.iges);;All Files (*.*) - IGES(*.igs *.iges);;Alle bestanden(*.*) + + IGES (*.igs *.iges);;All Files (*.*) + IGES(*.igs *.iges);;Alle bestanden(*.*) - - + + PartGui::DlgPartImportStep - - ... - ... + + ... + ... - - Cancel - Annuleren + Cancel + Annuleren - - OK - OK + OK + OK - - Step input file - Step input-bestand + Step input file + Step input-bestand - - File Name - Bestandsnaam + File Name + Bestandsnaam - - '' + + '' - - + + PartGui::DlgPartImportStepImp - - STEP (*.stp *.step);;All Files (*.*) - STEP(*.stp *.step);;Alle bestanden(*.*) + + STEP (*.stp *.step);;All Files (*.*) + STEP(*.stp *.step);;Alle bestanden(*.*) - - + + PartGui::DlgPrimitives - - Geometric Primitives - Geometrische primitieven + + Geometric Primitives + Geometrische primitieven - Primitive - Primitieve + Primitive + Primitieve - X min - X min + X min + X min - x max - x max + x max + x max - Y min - Y min + Y min + Y min - Y max - Y max + Y max + Y max - Z min - Z min + Z min + Z min - Z max - Z max + Z max + Z max - X2 min - X2 min + X2 min + X2 min - X2 max - X2 max + X2 max + X2 max - Z2 min - Z2 min + Z2 min + Z2 min - Z2 max - Z2 max + Z2 max + Z2 max - Angle - 0 for cyl - Hoek - 0 voor cil + Angle - 0 for cyl + Hoek - 0 voor cil - Angle0 - Hoek0 + Angle0 + Hoek0 - Angle1 - Hoek1 + Angle1 + Hoek1 - X Axis Value: - X-as Waarde: + X Axis Value: + X-as Waarde: - Y Axis Value: - Y-as Waarde: + Y Axis Value: + Y-as Waarde: - Z Axis Value: - Z-as Waarde: + Z Axis Value: + Z-as Waarde: - - Wedge - Wig + Wedge + Wig - - Circle - Cirkel + Circle + Cirkel - Vertex - Vertex + Vertex + Vertex - Position - Positie + Position + Positie - - - - Z: - Z: + Z: + Z: - - - - X: - X: + X: + X: - Direction: - Richting: + Direction: + Richting: - - - - Y: - Y: + Y: + Y: - - Plane - Vlak + Plane + Vlak - - Box - Blok + Box + Blok - - Cylinder - Cilinder + Cylinder + Cilinder - - Cone - Kegel + Cone + Kegel - - Sphere - Bol + Sphere + Bol - - Ellipsoid - Ellipsoïde + Ellipsoid + Ellipsoïde - - Torus - Torus + Torus + Torus - - Ellipse - + Ellipse + Ellipse - - Point - + Point + Punt - - Line - + Line + Lijn - - Parameter - Parameter + Parameter + Parameter - - - Width: - Breedte: + Width: + Breedte: - - - Length: - Lengte: + Length: + Lengte: - - - - - Height: - Hoogte: + Height: + Hoogte: - - - - Angle: - Hoek: + Angle: + Hoek: - - - - - Radius: - Straal: + Radius: + Straal: - - - - Radius 1: - Straal 1: + Radius 1: + Straal 1: - - - - Radius 2: - Straal 2: + Radius 2: + Straal 2: - - - - U parametric: - U-parameter: + U parametric: + U-parameter: - - - - V parametric: - V-parameter: + V parametric: + V-parameter: - - X min/max: - + X min/max: + X min/max: - - Y min/max: - + Y min/max: + Y min/max: - - Z min/max: - + Z min/max: + Z min/max: - - X2 min/max: - + X2 min/max: + X2 min/max: - - Z2 min/max: - + Z2 min/max: + Z2 min/max: - - Coordinate system: - + Coordinate system: + Coordinate system: - - Right-handed - + Right-handed + Right-handed - - Left-handed - + Left-handed + Left-handed - - - Angle 1: - + Angle 1: + Angle 1: - - - Angle 2: - + Angle 2: + Angle 2: - - From three points - + From three points + From three points - - Major radius: - + Major radius: + Major radius: - - Minor radius: - + Minor radius: + Minor radius: - - End point - + End point + End point - - Start point - + Start point + Start point - - &Create - &Maken + + &Create + &Maken - Alt+C - Alt+C + Alt+C + Alt+C - Cl&ose - &Sluiten + Cl&ose + &Sluiten - Alt+O - Alt+O + Alt+O + Alt+O - - - - Create %1 - Maak %1 + Create %1 + Maak %1 - - No active document - Geen actief document + No active document + Geen actief document - - Pitch: - Steiging: + + Pitch: + Steiging: - - Helix - Helix + Helix + Helix - 3D View - 3D-aanzicht + 3D View + 3D-aanzicht - - + + PartGui::DlgRevolution - - Revolve - Draaien + + Revolve + Draaien - - Y: - Y: + Y: + Y: - - X: - X: + X: + X: - - Angle: - Hoek: + Angle: + Hoek: - - Z: - Z: + Z: + Z: - - Axis: - Assen: + Axis: + Assen: - - Shape - Vorm + Shape + Vorm - - Select line in 3D view - + Select line in 3D view + Select line in 3D view - - Select a shape for revolution, first. - Selecteer eerst een vorm om te roteren. + + Select a shape for revolution, first. + Selecteer eerst een vorm om te roteren. - - + + PartGui::DlgSettings3DViewPart - - View accuracy / Performance - Bekijk nauwkeurigheid/prestatie + + View accuracy / Performance + Bekijk nauwkeurigheid/prestatie - - View smoothing - View smoothing + View smoothing + View smoothing - - Using high-quality normals - Met behulp van hoge-kwaliteit normalen + Using high-quality normals + Met behulp van hoge-kwaliteit normalen - - This will slow down render speed but will lead to nicer results - Dit zal de render-snelheid verlagen maar leiden tot mooiere resultaten + This will slow down render speed but will lead to nicer results + Dit zal de render-snelheid verlagen maar leiden tot mooiere resultaten - - Defines the appearance of surfaces - Bepaalt het uiterlijk van oppervlakken + Defines the appearance of surfaces + Bepaalt het uiterlijk van oppervlakken - - Shape view - Vorm-aanzicht + Shape view + Vorm-aanzicht - - Tessellation - Mozaïekwerk + Tessellation + Mozaïekwerk - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Bij flat shading worden de oppervlaktenormalen niet bepaald per vertex wat leidt tot onrealistische weergave bij gebogen oppervlakten terwijl Phong shading leidt tot een gladder voorkomen. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Indien deze optie uitgezet wordt Phong shading gebruikt, anders wordt flat shading gebruikt.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Bij flat shading worden de oppervlaktenormalen niet bepaald per vertex wat leidt tot onrealistische weergave bij gebogen oppervlakten terwijl Phong shading leidt tot een gladder voorkomen. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Indien deze optie uitgezet wordt Phong shading gebruikt, anders wordt flat shading gebruikt.</p></body></html> - - Do not define normal per vertex - Definieer geen normaal per vertex + Do not define normal per vertex + Definieer geen normaal per vertex - - Defines the deviation of tessellation to the actual surface - Defines the deviation of tessellation to the actual surface + Defines the deviation of tessellation to the actual surface + Defines the deviation of tessellation to the actual surface - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Het definiëren van normalen per vertex heet ook wel<span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">terwijl het definieren van normalen per vlak wordt genoemd</span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Het definiëren van normalen per vertex heet ook wel<span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">terwijl het definieren van normalen per vlak wordt genoemd</span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> - - Maximum deviation depending on the model bounding box - Maximum deviation depending on the model bounding box + Maximum deviation depending on the model bounding box + Maximum deviation depending on the model bounding box - - % - % + % + % - - Deviation - Deviation + + Deviation + Deviation - - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - - + + PartGui::DlgSettingsGeneral - - General - Algemeen + + General + Algemeen - - Export - Exporteren + Export + Exporteren - - Millimeter - Millimeter + Millimeter + Millimeter - - Meter - Meter + Meter + Meter - - Inch - Inch + Inch + Inch - - Units for export of STEP/IGES - Eenheden voor de export naar STEP/IGES + Units for export of STEP/IGES + Eenheden voor de export naar STEP/IGES - - Model settings - + Model settings + Model settings - - Automatically refine model after boolean operation - + Automatically refine model after boolean operation + Automatically refine model after boolean operation - - Automatically check model after boolean operation - + Automatically check model after boolean operation + Automatically check model after boolean operation - - + + PartGui::FaceColors - - Face colors - + + Face colors + Face colors - - Do you really want to cancel? - + Do you really want to cancel? + Do you really want to cancel? - - + + PartGui::Location - - Location - + + Location + Location - - Position - Positie + Position + Positie - - 3D View - 3D-aanzicht + 3D View + 3D-aanzicht - - + + PartGui::LoftWidget - - - Vertex/Wire - Vertex/Wire + + Vertex/Wire + Vertex/Wire - - - Loft - Loft + Loft + Loft - - Too few elements - Te weinig elementen + Too few elements + Te weinig elementen - - At least two vertices, edges or wires are required. - + At least two vertices, edges or wires are required. + At least two vertices, edges or wires are required. - At least two vertices or wires are required. - Ten minste twee hoekpunten of draden zijn vereist. + At least two vertices or wires are required. + Ten minste twee hoekpunten of draden zijn vereist. - - + + PartGui::Mirroring - - Mirroring - Spiegelen + + Mirroring + Spiegelen - - Shapes - Vormen + Shapes + Vormen - - Mirror plane: - Spiegelvlak: + Mirror plane: + Spiegelvlak: - - XY plane - XY-vlak + XY plane + XY-vlak - - XZ plane - XZ-vlak + XZ plane + XZ-vlak - - YZ plane - YZ-vlak + YZ plane + YZ-vlak - - Base point: - Basispunt: + Base point: + Basispunt: - - x - x + x + x - - y - y + y + y - - z - z + z + z - - Select a shape for mirroring, first. - Selecteer eerst een vorm om te spiegelen. + + Select a shape for mirroring, first. + Selecteer eerst een vorm om te spiegelen. - - No such document '%1'. - Geen dergelijk document '%1'. + No such document '%1'. + Geen dergelijk document '%1'. - - + + PartGui::ShapeBuilderWidget - - - - - - Wrong selection - Verkeerde selectie + + Wrong selection + Verkeerde selectie - - - Select two vertices - Selecteer twee hoekpunten + Select two vertices + Selecteer twee hoekpunten - Select three or more edges - Selecteer drie of meer randen + Select three or more edges + Selecteer drie of meer randen - - Select one or more edges - + Select one or more edges + Select one or more edges - - Select two or more faces - Selecteer twee of meer vlakken + Select two or more faces + Selecteer twee of meer vlakken - - Select only one part object - Select only one part object + Select only one part object + Select only one part object - - Select two vertices to create an edge - Selecteer twee hoekpunten om een ​​rand te creëren + Select two vertices to create an edge + Selecteer twee hoekpunten om een ​​rand te creëren - - Select a closed set of edges - Selecteer een gesloten set van randen + Select a closed set of edges + Selecteer een gesloten set van randen - - Select adjacent faces - Selecteer aangrenzende vlakken + Select adjacent faces + Selecteer aangrenzende vlakken - - All shape types can be selected - Alle vorm types kunnen geselecteerd worden + All shape types can be selected + Alle vorm types kunnen geselecteerd worden - - + + PartGui::SweepWidget - - - Vertex/Wire - Vertex/Wire + + Vertex/Wire + Vertex/Wire - - - Sweep - + Sweep + Sweep - - Sweep path - + Sweep path + Sweep path - - Select an edge or wire you want to sweep along. - + Select an edge or wire you want to sweep along. + Select an edge or wire you want to sweep along. - - Too few elements - Te weinig elementen + Too few elements + Te weinig elementen - - At least one edge or wire is required. - + At least one edge or wire is required. + At least one edge or wire is required. - - + + PartGui::TaskDialogEditDynamic - Hint - Hint + Hint + Hint - Select Control. - Select Control. + Select Control. + Select Control. - Control - Control + Control + Control - Dynamic - Dynamic + Dynamic + Dynamic - Align - Align + Align + Align - Value - Waarde + Value + Waarde - Special - Special + Special + Special - Command - Commando + Command + Commando - Stretch - Stretch + Stretch + Stretch - Move - Verplaatsen + Move + Verplaatsen - Rotate - Draaien + Rotate + Draaien - Offset - Verplaatsing + Offset + Verschuiving - Orient - Orient + Orient + Orient - Match - Match + Match + Match - Surround - Surround + Surround + Surround - dummy - dummy + dummy + dummy - X Axis - X Axis + X Axis + X Axis - Y Axis - Y Axis + Y Axis + Y Axis - Z Axis - Z Axis + Z Axis + Z Axis - Increment - Increment + Increment + Increment - .125 - .125 + .125 + .125 - .500 - .500 + .500 + .500 - 1.000 - 1.000 + 1.000 + 1.000 - 5.000 - 5.000 + 5.000 + 5.000 - 10.000 - 10.000 + 10.000 + 10.000 - Drag arrows to stretch box by increment - Drag arrows to stretch box by increment + Drag arrows to stretch box by increment + Drag arrows to stretch box by increment - Drag arrows to move box by increment - Drag arrows to move box by increment + Drag arrows to move box by increment + Drag arrows to move box by increment - Not implemented yet - Not implemented yet + Not implemented yet + Not implemented yet - Drag arrows to offset checked axes by increment - Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment - Select dragger for stretch by align - Select dragger for stretch by align + Select dragger for stretch by align + Select dragger for stretch by align - Select dragger for move by align - Select dragger for move by align + Select dragger for move by align + Select dragger for move by align - Select dragger for stretch by value - Select dragger for stretch by value + Select dragger for stretch by value + Select dragger for stretch by value - Select dragger for move by value - Select dragger for move by value + Select dragger for move by value + Select dragger for move by value - 1.0 - 1.0 + 1.0 + 1.0 - Enter Value - Enter Value + Enter Value + Enter Value - Select box to match - Select box to match + Select box to match + Select box to match - Select a point - Select a point + Select a point + Select a point - 0.0 - 0.0 + 0.0 + 0.0 - Select dragger to align - Select dragger to align + Select dragger to align + Select dragger to align - Select dragger to modify - Select dragger to modify + Select dragger to modify + Select dragger to modify - - + + PartGui::TaskFaceColors - - Set color per face - Stel kleur per vlak in + + Set color per face + Stel kleur per vlak in - - Click on the faces in the 3d view to select them. - Klik op de vlakken in de 3D-weergave om ze te selecteren. + Click on the faces in the 3d view to select them. + Klik op de vlakken in de 3D-weergave om ze te selecteren. - - Faces: - Vlakken: + Faces: + Vlakken: - - Set to default - Ingesteld als standaard + Set to default + Ingesteld als standaard - - + + PartGui::TaskLoft - - Loft - Loft + + Loft + Loft - Vertex/Wire - Vertex/Wire + Vertex/Wire + Vertex/Wire - Move right - Naar rechts verplaatsen + Move right + Naar rechts verplaatsen - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Verplaats het geselecteerde item één niveau naar beneden.</b> <p>Dit verandert ook het niveau van het bovenliggende item.</p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Verplaats het geselecteerde item één niveau naar beneden.</b> <p>Dit verandert ook het niveau van het bovenliggende item.</p> - Move left - Naar links verplaatsen + Move left + Naar links verplaatsen - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Verplaats het geselecteerde item één niveau omhoog.</b> <p>Dit verandert ook het niveau van het bovenliggende item.</p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Verplaats het geselecteerde item één niveau omhoog.</b> <p>Dit verandert ook het niveau van het bovenliggende item.</p> - Move up - Naar boven verplaatsen + Move up + Naar boven verplaatsen - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Verplaats het geselecteerde item omlaag.</b><p>Het item wordt verplaatst binnen het hiërarchie niveau.</p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Verplaats het geselecteerde item omlaag.</b><p>Het item wordt verplaatst binnen het hiërarchie niveau.</p> - Move down - Naar beneden verplaatsen + Move down + Naar beneden verplaatsen - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Verplaats het geselecteerde item omlaag.</b> <p>Het item wordt verplaatst binnen het hiërarchie niveau.</p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Verplaats het geselecteerde item omlaag.</b> <p>Het item wordt verplaatst binnen het hiërarchie niveau.</p> - - Create solid - Maak een volumemodel + Create solid + Maak een volumemodel - - Ruled surface - Ruled surface + Ruled surface + Ruled surface - - + + PartGui::TaskShapeBuilder - - - Create shape - Create shape + + Create shape + Create shape - - Edge from vertices - Edge from vertices + Edge from vertices + Edge from vertices - - Face from edges - Face from edges + Face from edges + Face from edges - - Planar - Planar + Planar + Planar - - Shell from faces - Shell from faces + Shell from faces + Shell from faces - - Solid from shell - Solid from shell + Solid from shell + Solid from shell - - Create - Aanmaken + Create + Aanmaken - - All faces - All faces + All faces + All faces - - + + PartGui::TaskSweep - - Sweep - + + Sweep + Sweep - - Create solid - Maak een volumemodel + Create solid + Maak een volumemodel - - Frenet - + Frenet + Frenet - - Select one or more profiles and select an edge or wire + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. - + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. - - + + QObject - - - - - - Wrong selection - Verkeerde selectie + + Wrong selection + Verkeerde selectie - - - Select two shapes please. - Selecteer twee vormen alstublieft. + Select two shapes please. + Selecteer twee vormen alstublieft. - - - - All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) - Alle CAD-bestanden (*.stp *.step *.igs *.iges *.brep *.brp) + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + Alle CAD-bestanden (*.stp *.step *.igs *.iges *.brep *.brp) - - - - STEP (*.stp *.step) - STEP(*.stp *.step) + STEP (*.stp *.step) + STEP(*.stp *.step) - - - - IGES (*.igs *.iges) - IGES(*.igs *.iges) + IGES (*.igs *.iges) + IGES(*.igs *.iges) - - - - BREP (*.brp *.brep) - BREP(*.brp *.brep) + BREP (*.brp *.brep) + BREP(*.brp *.brep) - - - - All Files (*.*) - Alle bestanden (*.*) + All Files (*.*) + Alle bestanden (*.*) - - Sewing Tolerance - Sewing Tolerance + + Sewing Tolerance + Sewing Tolerance - - Enter tolerance for sewing shape: - Enter tolerance for sewing shape: + Enter tolerance for sewing shape: + Enter tolerance for sewing shape: - - Edit mirror plane - Bewerk spiegelvlak + + Edit mirror plane + Bewerk spiegelvlak - - Edit chamfer edges - + Edit chamfer edges + Edit chamfer edges - Transform - Transformeren + Transform + Transformeren - - - Part design - Onderdeel-ontwerp + + Part design + Onderdeel-ontwerp - - - Select two shapes or more, please. - Selecteer twee of meer vormen, alstublieft. + + Select two shapes or more, please. + Selecteer twee of meer vormen, alstublieft. - - You have to select either two edges or two wires. - Je moet of twee randen of twee draden selecteren. + You have to select either two edges or two wires. + Je moet of twee randen of twee draden selecteren. - - Edit fillet edges - Afgeronde randen bewerken + + Edit fillet edges + Afgeronde randen bewerken - - Set colors... - Set colors... + + Set colors... + Set colors... - - + + Workbench - - &Part - &Component + + &Part + &Component - - &Simple - &Eenvoudig + &Simple + &Eenvoudig - - &Parametric - &Parametrisch + &Parametric + &Parametrisch - - Part tools - Component-gereedschap + Part tools + Component-gereedschap - - Solids - Volumemodel + Solids + Volumemodel - - Boolean - Boolean + Boolean + Boolean - + diff --git a/src/Mod/Part/Gui/Resources/translations/Part_no.qm b/src/Mod/Part/Gui/Resources/translations/Part_no.qm index dec22c026..efa649780 100644 Binary files a/src/Mod/Part/Gui/Resources/translations/Part_no.qm and b/src/Mod/Part/Gui/Resources/translations/Part_no.qm differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_no.ts b/src/Mod/Part/Gui/Resources/translations/Part_no.ts index cbe1bc6a6..db06cce1b 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_no.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_no.ts @@ -1,2520 +1,2126 @@ - - + + BlockDefinition - - Block definition - Blokkdefinisjon + + Block definition + Blokkdefinisjon - - First limit - Første grense + First limit + Første grense - - - Type: - Type: + Type: + Type: - - - mm - mm + mm + mm - - - Length: - Lengde: + Length: + Lengde: - - - Dimension - Dimensjon + Dimension + Dimensjon - - - Up to next - Opp til neste + Up to next + Opp til neste - - - Up to last - Opp til siste + Up to last + Opp til siste - - - Up to plane - Opp til plan + Up to plane + Opp til plan - - - Up to face - Opp til flate + Up to face + Opp til flate - - - Limit: - Grense: + Limit: + Grense: - - - - - No selection - Ingen valg + No selection + Ingen valg - - Profile - Profil + Profile + Profil - - Selection: - Utvalg: + Selection: + Utvalg: - - Reverse - Omvendt + Reverse + Omvendt - - Both sides - Begge sider + Both sides + Begge sider - - Second limit - Andre grense + Second limit + Andre grense - - Direction - Retning + Direction + Retning - - Perpendicular to sketch - Vinkelrett på skisse + Perpendicular to sketch + Vinkelrett på skisse - - Reference - Referanse + Reference + Referanse - - Apply - Bruk + Apply + Bruk - - Cancel - Avbryt + Cancel + Avbryt - - OK - OK + OK + OK - - + + CmdPartBoolean - - Part - Komponent + + Part + Komponent - - Boolean... - Boolsk... + Boolean... + Boolsk... - - Run a boolean operation with two shapes selected - Kjør en boolsk operasjon med to valgte komponenter + Run a boolean operation with two shapes selected + Kjør en boolsk operasjon med to valgte komponenter - - + + CmdPartBox - - Part - Komponent + + Part + Komponent - - Box - Boks + Box + Boks - - Create a box solid - Create a box solid + Create a box solid + Create a box solid - - + + CmdPartBox2 - - Part - Komponent + + Part + Komponent - - Box fix 1 - Boks fiks 1 + Box fix 1 + Boks fiks 1 - - Create a box solid without dialog - Create a box solid without dialog + Create a box solid without dialog + Create a box solid without dialog - - + + CmdPartBox3 - - Part - Komponent + Part + Komponent - - Box fix 2 - Boks fiks 2 + Box fix 2 + Boks fiks 2 - - Create a box solid without dialog - Create a box solid without dialog + Create a box solid without dialog + Create a box solid without dialog - - + + CmdPartBuilder - - Part - Komponent + Part + Komponent - - Shape builder... - Shape builder... + Shape builder... + Figur bygger... - - Advanced utility to create shapes - Advanced utility to create shapes + Advanced utility to create shapes + Avansert verktøy for å lage former - - + + CmdPartChamfer - - Part - Komponent + Part + Komponent - - Chamfer... - + Chamfer... + Fas... - - Chamfer the selected edges of a shape - + Chamfer the selected edges of a shape + Faser valgte kanter på en figur - - + + CmdPartCommon - - Part - Komponent + Part + Komponent - - Intersection - Krysningspunkt + Intersection + Kryssningspunkt - - Make an intersection of two shapes - Make an intersection of two shapes + Make an intersection of two shapes + Make an intersection of two shapes - - + + CmdPartCone - - Part - Komponent + + Part + Komponent - - Cone - Kjegle + Cone + Kjegle - - Create a cone solid - Create a cone solid + Create a cone solid + Lag en kon solid - - + + CmdPartCrossSections - - Part - Komponent + + Part + Komponent - - Cross-sections... - Tverrsnitt... + Cross-sections... + Tverrsnitt... - - Cross-sections - Tverrsnitt + Cross-sections + Tverrsnitt - - + + CmdPartCut - - Part - Komponent + Part + Komponent - - Cut - Klipp ut + Cut + Klipp ut - - Make a cut of two shapes - Make a cut of two shapes + Make a cut of two shapes + Lag et kutt fra to figurer - - + + CmdPartCylinder - - Part - Komponent + + Part + Komponent - - Create a Cylinder - Lag en sylinder + Create a Cylinder + Lag en sylinder - - Cylinder - Sylinder + Cylinder + Sylinder - - + + CmdPartExport - - Part - Komponent + + Part + Komponent - - Export CAD... - Export CAD... + Export CAD... + Eksporter til CAD... - - Exports to a CAD file - Exports to a CAD file + Exports to a CAD file + Eksporterer til CAD fil - - + + CmdPartExtrude - - Part - Komponent + Part + Komponent - - Extrude... - Ekstruder... + Extrude... + Ekstruder... - - Extrude a selected sketch - Ekstruder valgt skisse + Extrude a selected sketch + Ekstruder valgt skisse - - + + CmdPartFillet - - Part - Komponent + Part + Komponent - - Fillet... - Avrunding... + Fillet... + Avrunding... - - Fillet the selected edges of a shape - Avrund valgte kanter på en figur + Fillet the selected edges of a shape + Avrund valgte kanter på en figur - - + + CmdPartFuse - - Part - Komponent + Part + Komponent - - Union - Sammenføy + Union + Sammenføy - - Make a union of several shapes - Make a union of several shapes + Make a union of several shapes + Make a union of several shapes - - + + CmdPartImport - - Part - Komponent + Part + Komponent - - Imports a CAD file - Importerer en CAD-fil + Imports a CAD file + Importerer en CAD-fil - - Import CAD... - Importer CAD... + Import CAD... + Importer CAD... - - + + CmdPartImportCurveNet - - Part - Komponent + Part + Komponent - - Import a curve network - Importer et kurvenettverk + Import a curve network + Importer et kurvenettverk - - Import curve network... - Importer kurvenettverk... + Import curve network... + Importer kurvenettverk... - - + + CmdPartLoft - - Part - Komponent + Part + Komponent - - Loft... - Loft... + Loft... + Loft... - - Utility to loft - + Utility to loft + Utility to loft - Advanced utility to lofts - Advanced utility to lofts + Advanced utility to lofts + Advanced utility to lofts - - + + CmdPartMakeSolid - - Part - Komponent + Part + Komponent - - Convert to solid - Konverter til solid + Convert to solid + Konverter til solid - - Create solid from a shell or compound - Lag solid fra et skall eller sammensatt + Create solid from a shell or compound + Lag solid fra et skall eller sammensatt - - + + CmdPartMirror - - Part - Komponent + Part + Komponent - - Mirroring... - Speiling... + Mirroring... + Speiling... - - Mirroring a selected shape - Speiler en valgt figur + Mirroring a selected shape + Speiler en valgt figur - - + + CmdPartPickCurveNet - - Part - Komponent + Part + Komponent - - Pick curve network - Velg kurvenettverk + Pick curve network + Velg kurvenettverk - - Pick a curve network - Velg kurvenettverk + Pick a curve network + Velg kurvenettverk - - + + CmdPartPrimitives - - Part - Komponent + Part + Komponent - - Create primitives... - Lag primitiver... + Create primitives... + Lag primitiver... - - Creation of parametrized geometric primitives - Opprettelse av parametrisert geometriske primitiver + Creation of parametrized geometric primitives + Opprettelse av parametrisert geometriske primitiver - - + + CmdPartRefineShape - - Part - Komponent + + Part + Komponent - - Refine shape - + Refine shape + Refine shape - - Refine the copy of a shape - + Refine the copy of a shape + Refine the copy of a shape - - + + CmdPartReverseShape - - Part - Komponent + + Part + Komponent - - Reverse shapes - Reverser figurer + Reverse shapes + Reverser figurer - - Reverse orientation of shapes - Reverser orientering på figurer + Reverse orientation of shapes + Reverser orientering på figurer - - + + CmdPartRevolve - - Part - Komponent + Part + Komponent - - Revolve... - Dreining... + Revolve... + Dreining... - - Revolve a selected shape - Drei en valgt figur + Revolve a selected shape + Drei en valgt figur - - + + CmdPartRuledSurface - - Part - Komponent + Part + Komponent - - Create ruled surface - Lag en linjert overflate + Create ruled surface + Lag en linjert overflate - - Create a ruled surface from two curves - Lag en linjert overflate av to kurver + Create a ruled surface from two curves + Lag en linjert overflate av to kurver - - + + CmdPartSection - - Make a section of two shapes - Make a section of two shapes + Make a section of two shapes + Make a section of two shapes - - Part - Komponent + Part + Komponent - - Section - Seksjon + Section + Seksjon - - + + CmdPartShapeFromMesh - - Part - Komponent + + Part + Komponent - - Create shape from mesh... - Lag figur av nett... + Create shape from mesh... + Lag figur av nett... - - Create shape from selected mesh object - Lag figur av valgte nett + Create shape from selected mesh object + Lag figur av valgte nett - - + + CmdPartSimpleCopy - - Part - Komponent + Part + Komponent - - Create simple copy - Create simple copy + Create simple copy + Lag en enkel kopi - - Create a simple non-parametric copy - Create a simple non-parametric copy + Create a simple non-parametric copy + Create a simple non-parametric copy - - + + CmdPartSimpleCylinder - - Part - Komponent + Part + Komponent - - Create Cylinder... - Lag sylinder... + Create Cylinder... + Lag sylinder... - - Create a Cylinder - Lag en sylinder + Create a Cylinder + Lag en sylinder - - + + CmdPartSphere - - Create a sphere solid - Create a sphere solid + + Create a sphere solid + Lag en kule solid - - Part - Komponent + Part + Komponent - - Sphere - Sfære + Sphere + Sfære - - + + CmdPartSweep - - Part - Komponent + + Part + Komponent - - Sweep... - + Sweep... + Sweep... - - Utility to sweep - + Utility to sweep + Utility to sweep - - + + CmdPartTorus - - Create a torus solid - Create a torus solid + + Create a torus solid + Lag en torus solid - - Part - Komponent + Part + Komponent - - Torus - Torus + Torus + Torus - - + + DlgExtrusion - Select a shape for extrusion, first. - Velg en figur for ekstrudering først. + Select a shape for extrusion, first. + Velg en figur for ekstrudering først. - The document '%1' doesn't exist. - The document '%1' doesn't exist. + The document '%1' doesn't exist. + The document '%1' doesn't exist. - - + + DlgRevolution - Select a shape for revolution, first. - Merke en figur for revolusjon først. + Select a shape for revolution, first. + Merke en figur for revolusjon først. - - + + DlgSettings3DViewPart - Deviation - Avvik + Deviation + Avvik - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Innstillinger med for lite avvik gjør tessellasjon tidkrevende. Derav fryser eller bremses GUI ned. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Innstillinger med for lite avvik gjør tessellasjon tidkrevende. Derav fryser eller bremses GUI ned. - - + + PartGui::CrossSections - - Cross sections - Tverrsnitt + + Cross sections + Tverrsnitt - - Guiding plane - Veiledende plan + Guiding plane + Veiledende plan - - XY - XY + XY + XY - - XZ - XZ + XZ + XZ - - YZ - YZ + YZ + YZ - - Position: - Posisjon: + Position: + Posisjon: - - Sections - Seksjoner + Sections + Seksjoner - - On both sides - På begge sider + On both sides + På begge sider - - Count - Antall + Count + Antall - - Distance: - Avstand: + Distance: + Avstand: - - + + PartGui::DlgBooleanOperation - - Boolean Operation - Boolsk Operasjon + + Boolean Operation + Boolsk Operasjon - - Second shape - Andre figur + Second shape + Andre figur - - First shape - Første figur + First shape + Første figur - - Boolean operation - Boolsk operasjon + Boolean operation + Boolsk operasjon - - Section - Seksjon + Section + Seksjon - - Difference - Differanse + Difference + Differanse - - Union - Sammenføy + Union + Sammenføy - - Intersection - Krysningspunkt + Intersection + Kryssningspunkt - - Cannot perform a boolean operation with the same shape - Kan ikke utføre en boolsk operasjon med samme figur + + Cannot perform a boolean operation with the same shape + Kan ikke utføre en boolsk operasjon med samme figur - - - Solids - Solide + + Solids + Solide - - - Shells - Skall + Shells + Skall - - - Compounds - Sammensatte + Compounds + Sammensatte - - - Faces - Flater + Faces + Flater - - Swap selection - Vend om utvalg + Swap selection + Vend om utvalg - - Select a shape on the left side, first - Velg en figur på venstre side først + + Select a shape on the left side, first + Velg en figur på venstre side først - - Select a shape on the right side, first - Velg en figur på høyre side først + Select a shape on the right side, first + Velg en figur på høyre side først - - No active document available - Ingen aktive dokumenter tilgjengelig + No active document available + Ingen aktive dokumenter tilgjengelig - - One of the selected objects doesn't exist anymore - Et av de valgte objektene eksisterer ikke lenger + One of the selected objects doesn't exist anymore + Et av de valgte objektene eksisterer ikke lenger - - Performing union on non-solids is not possible - Å utføre sammenføyning på objekter som ikke er solide er umulig + Performing union on non-solids is not possible + Å utføre sammenføyning på objekter som ikke er solide er umulig - - Performing intersection on non-solids is not possible - Å utføre fellesseksjon på objekter som ikke er solide er umulig + Performing intersection on non-solids is not possible + Å utføre fellesseksjon på objekter som ikke er solide er umulig - - Performing difference on non-solids is not possible - Utføre differanse på objekter som ikke er solide er umulig + Performing difference on non-solids is not possible + Utføre differanse på objekter som ikke er solide er umulig - - + + PartGui::DlgChamferEdges - - Chamfer Edges - + + Chamfer Edges + Fas kanter - - + + PartGui::DlgExtrusion - - Extrude - Ekstruder + + Extrude + Ekstruder - - Direction - Retning + Direction + Retning - - Along normal - Langs med normal + Along normal + Langs med normal - - Length: - Lengde: + Length: + Lengde: - - 3D view - 3D view + 3D view + 3D-Visning - - Note:This option works for planes only - Note:This option works for planes only + Note:This option works for planes only + Merk: Dette alternativet fungerer kun for flater - - Create solid - Create solid + Create solid + Lag solid - - Taper outward angle - + Taper outward angle + Taper outward angle - - Shape - Figur + Shape + Figur - - + + - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - Select a shape for extrusion, first. - Velg en figur for ekstrudering først. + + Select a shape for extrusion, first. + Velg en figur for ekstrudering først. - - The document '%1' doesn't exist. - The document '%1' doesn't exist. + The document '%1' doesn't exist. + The document '%1' doesn't exist. - - + + PartGui::DlgFilletEdges - - Fillet Edges - Avrund kanter + + Fillet Edges + Avrund kanter - - Fillet Parameter - Avrundingsparameter + Fillet Parameter + Avrundingsparameter - - Radius: - Radius: + Radius: + Radius: - - Fillet type: - Avrundingstype: + Fillet type: + Avrundingstype: - - Constant Radius - Fast radius + Constant Radius + Fast radius - - Variable Radius - Variabel radius + Variable Radius + Variabel radius - - Shape - Figur + Shape + Figur - - Selected shape: - Valgt figur: + Selected shape: + Valgt figur: - - No selection - Ingen valg + No selection + Ingen valg - - Edges to fillet - Kanter å avrunde + + Edges to fillet + Kanter å avrunde - - - Start radius - Startradius + Start radius + Startradius - - End radius - Sluttradius + End radius + Sluttradius - - Radius - Radius + Radius + Radius - - No edge selected - Ingen kant er valgt + No edge selected + Ingen kant er valgt - - No edge entity is checked to fillet. + No edge entity is checked to fillet. Please check one or more edge entities first. - Ingen kanter merket for avrunding. Merk én eller fler kanter først. + Ingen kanter merket for avrunding. Merk én eller fler kanter først. - - All - Alle + + All + Alle - - None - Ingen + None + Ingen - - - Edge%1 - Kant%1 + + Edge%1 + Kant%1 - - No shape selected - Ingen valgt figur + No shape selected + Ingen valgt figur - - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - Ingen gyldig figur er valgt. Vennligst velg en gyldig figur i rullgardina først. + Ingen gyldig figur er valgt. Vennligst velg en gyldig figur i rullgardina først. - - + + PartGui::DlgPartBox - - Box definition - Boksdefinisjon + + Box definition + Boksdefinisjon - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - Cancel - Avbryt + Cancel + Avbryt - - OK - OK + OK + OK - - Size: - Størrelse: + Size: + Størrelse: - - Height: - Høyde: + Height: + Høyde: - - Width: - Bredde: + Width: + Bredde: - - Length: - Lengde: + Length: + Lengde: - - Position: - Posisjon: + Position: + Posisjon: - - Direction: - Retning: + Direction: + Retning: - - + + PartGui::DlgPartCylinder - - Cylinder definition - Sylinderdefinisjon + + Cylinder definition + Sylinderdefinisjon - - Parameter - Parameter + Parameter + Parameter - - Height: - Høyde: + Height: + Høyde: - - Radius: - Radius: + Radius: + Radius: - - Position: - Posisjon: + Position: + Posisjon: - - Direction: - Retning: + Direction: + Retning: - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - OK - OK + OK + OK - - Cancel - Avbryt + Cancel + Avbryt - - + + PartGui::DlgPartImportIges - - IGES input file - IGES inndatafil + + IGES input file + IGES inndatafil - - ... - ... + ... + ... - - Cancel - Avbryt + Cancel + Avbryt - - OK - OK + OK + OK - - File Name - Filnavn + File Name + Filnavn - - + + - - + + PartGui::DlgPartImportIgesImp - - IGES (*.igs *.iges);;All Files (*.*) - IGES (*.igs *.iges);;Alle filer (*.*) + + IGES (*.igs *.iges);;All Files (*.*) + IGES (*.igs *.iges);;Alle filer (*.*) - - + + PartGui::DlgPartImportStep - - ... - ... + + ... + ... - - Cancel - Avbryt + Cancel + Avbryt - - OK - OK + OK + OK - - Step input file - STEP-inndatafil + Step input file + STEP-inndatafil - - File Name - Filnavn + File Name + Filnavn - - + + - - + + PartGui::DlgPartImportStepImp - - STEP (*.stp *.step);;All Files (*.*) - STEP (*.stp *.step);;Alle filer (*.*) + + STEP (*.stp *.step);;All Files (*.*) + STEP (*.stp *.step);;Alle filer (*.*) - - + + PartGui::DlgPrimitives - - Geometric Primitives - Geometriske primitiver + + Geometric Primitives + Geometriske primitiver - Primitive - Primitiv + Primitive + Primitiv - X min - X min + X min + X min - x max - x max + x max + x max - Y min - Y min + Y min + Y min - Y max - Y max + Y max + Y max - Z min - Z min + Z min + Z min - Z max - Z max + Z max + Z max - X2 min - X2 min + X2 min + X2 min - X2 max - X2 max + X2 max + X2 max - Z2 min - Z2 min + Z2 min + Z2 min - Z2 max - Z2 max + Z2 max + Z2 max - Angle - 0 for cyl - Angle - 0 for cyl + Angle - 0 for cyl + Angle - 0 for cyl - Angle0 - Angle0 + Angle0 + Angle0 - Angle1 - Angle1 + Angle1 + Angle1 - X Axis Value: - X Axis Value: + X Axis Value: + X Axis Value: - Y Axis Value: - Y Axis Value: + Y Axis Value: + Y Axis Value: - Z Axis Value: - Z Axis Value: + Z Axis Value: + Z Axis Value: - - Wedge - Wedge + Wedge + Wedge - - Circle - Sirkel + Circle + Sirkel - Vertex - Vertex + Vertex + Vertex - Position - Posisjon + Position + Posisjon - - - - Z: - Z: + Z: + Z: - - - - X: - X: + X: + X: - Direction: - Retning: + Direction: + Retning: - - - - Y: - Y: + Y: + Y: - - Plane - Plan + Plane + Plan - - Box - Boks + Box + Boks - - Cylinder - Sylinder + Cylinder + Sylinder - - Cone - Kjegle + Cone + Kjegle - - Sphere - Sfære + Sphere + Sfære - - Ellipsoid - Ellipsoide + Ellipsoid + Ellipsoide - - Torus - Torus + Torus + Torus - - Ellipse - + Ellipse + Ellipse - - Point - + Point + Point - - Line - + Line + Linje - - Parameter - Parameter + Parameter + Parameter - - - Width: - Bredde: + Width: + Bredde: - - - Length: - Lengde: + Length: + Lengde: - - - - - Height: - Høyde: + Height: + Høyde: - - - - Angle: - Vinkel: + Angle: + Vinkel: - - - - - Radius: - Radius: + Radius: + Radius: - - - - Radius 1: - Radius 1: + Radius 1: + Radius 1: - - - - Radius 2: - Radius 2: + Radius 2: + Radius 2: - - - - U parametric: - U parametrisk: + U parametric: + U parametrisk: - - - - V parametric: - V parametrisk: + V parametric: + V parametrisk: - - X min/max: - + X min/max: + X min/max: - - Y min/max: - + Y min/max: + Y min/max: - - Z min/max: - + Z min/max: + Z min/max: - - X2 min/max: - + X2 min/max: + X2 min/max: - - Z2 min/max: - + Z2 min/max: + Z2 min/max: - - Coordinate system: - + Coordinate system: + Coordinate system: - - Right-handed - + Right-handed + Right-handed - - Left-handed - + Left-handed + Left-handed - - - Angle 1: - + Angle 1: + Angle 1: - - - Angle 2: - + Angle 2: + Angle 2: - - From three points - + From three points + From three points - - Major radius: - + Major radius: + Major radius: - - Minor radius: - + Minor radius: + Minor radius: - - End point - + End point + End point - - Start point - + Start point + Start point - - &Create - &Lag + + &Create + &Lag - Alt+C - Alt+C + Alt+C + Alt+C - Cl&ose - L&ukk + Cl&ose + L&ukk - Alt+O - Alt+O + Alt+O + Alt + O - - - - Create %1 - Lag %1 + Create %1 + Lag %1 - - No active document - Ingen aktive dokumenter + No active document + Ingen aktive dokumenter - - Pitch: - Pitch: + + Pitch: + Tipp: - - Helix - Heliks + Helix + Heliks - 3D View - 3D-visning + 3D View + 3D-visning - - + + PartGui::DlgRevolution - - Revolve - Dreining + + Revolve + Dreining - - Y: - Y: + Y: + Y: - - X: - X: + X: + X: - - Angle: - Vinkel: + Angle: + Vinkel: - - Z: - Z: + Z: + Z: - - Axis: - Akse: + Axis: + Akse: - - Shape - Figur + Shape + Figur - - Select line in 3D view - + Select line in 3D view + Select line in 3D view - - Select a shape for revolution, first. - Merke en figur for revolusjon først. + + Select a shape for revolution, first. + Merke en figur for revolusjon først. - - + + PartGui::DlgSettings3DViewPart - - View accuracy / Performance - Vis nøyaktighet / ytelse + + View accuracy / Performance + Vis nøyaktighet / ytelse - - View smoothing - View smoothing + View smoothing + Vis utglatting - - Using high-quality normals - Bruker høykvalitets normaler + Using high-quality normals + Bruker høykvalitets normaler - - This will slow down render speed but will lead to nicer results - Dette vil sinke hastighet på presentasjongjengivelse men vil føre til bedre resultater + This will slow down render speed but will lead to nicer results + Dette vil sinke hastighet på presentasjongjengivelse men vil føre til bedre resultater - - Defines the appearance of surfaces - Definerer utseendet på overflater + Defines the appearance of surfaces + Definerer utseendet på overflater - - Shape view - Figur visning + Shape view + Figur visning - - Tessellation - Tessellasjon + Tessellation + Tessellasjon - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Enkel/ kompleks skyggelegging</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Ved enkel skyggelegging blir ikke oveflatenormalene definert per node. Dette fører til et midre realistisk utseende for kurvede overflater enn ved kompleks skyggelegging. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Merk for kompleks skyggelegging. Hvis ikke blir enkel skyggelegging brukt.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Enkel/ kompleks skyggelegging</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Ved enkel skyggelegging blir ikke oveflatenormalene definert per node. Dette fører til et midre realistisk utseende for kurvede overflater enn ved kompleks skyggelegging. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Merk for kompleks skyggelegging. Hvis ikke blir enkel skyggelegging brukt.</p></body></html> - - Do not define normal per vertex - Ikke definerer normal per node + Do not define normal per vertex + Ikke definerer normal per node - - Defines the deviation of tessellation to the actual surface - Definerer avvik for tessellasjon på selve overflaten + Defines the deviation of tessellation to the actual surface + Definerer avvik for tessellasjon på selve overflaten - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellasjon</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Definerer maksimum avik fra tessellert nett til overflate. Desto mindre verdi desto tregere fart på presentasjongjengivelse men penere utseende.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellasjon</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Definerer maksimum avik fra tessellert nett til overflate. Desto mindre verdi desto tregere fart på presentasjongjengivelse men penere utseende.</span></p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint </span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Å definere normaler per node blir og kalt <span style=" font-style:italic;">Phongskyggelegging (kompleks) </span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">mens å definere normalene per flate blir kalt </span>Flateskyggelegging (enkel)<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Å definere normaler per node kalles <span style=" font-style:italic;">Phong skyggelegging </span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">mens å definere normaler per flate kalles </span>flateskyggelegging<span style=" font-style:normal;">.</span></p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Høykvalitets normaler</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Dette vil sinke hastighet på presentasjongjengivelse men vil føre til bedre resultater.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Høykvalitets normaler</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Dette vil sinke hastighet på presentasjongjengivelse men vil føre til bedre resultater.</p></body></html> - - Maximum deviation depending on the model bounding box - Maksimalt avvik avhenger av modellrammeboksen + Maximum deviation depending on the model bounding box + Maksimalt avvik avhenger av modellrammeboksen - - % - % + % + % - - Deviation - Avvik + + Deviation + Avvik - - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Innstillinger med for lite avvik gjør tessellasjon tidkrevende. Derav fryser eller bremses GUI ned. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Innstillinger med for lite avvik gjør tessellasjon tidkrevende. Derav fryser eller bremses GUI ned. - - + + PartGui::DlgSettingsGeneral - - General - Generelle + + General + Generelle - - Export - Eksporter + Export + Eksporter - - Millimeter - Millimeter + Millimeter + Millimeter - - Meter - Meter + Meter + Meter - - Inch - Tommer + Inch + Tommer - - Units for export of STEP/IGES - Enheter for eksport av STEP/ IGES + Units for export of STEP/IGES + Enheter for eksport av STEP/ IGES - - Model settings - + Model settings + Model settings - - Automatically refine model after boolean operation - + Automatically refine model after boolean operation + Automatically refine model after boolean operation - - Automatically check model after boolean operation - + Automatically check model after boolean operation + Automatically check model after boolean operation - - + + PartGui::FaceColors - - Face colors - + + Face colors + Face colors - - Do you really want to cancel? - + Do you really want to cancel? + Do you really want to cancel? - - + + PartGui::Location - - Location - + + Location + Location - - Position - Posisjon + Position + Posisjon - - 3D View - 3D-visning + 3D View + 3D-visning - - + + PartGui::LoftWidget - - - Vertex/Wire - Vertex/Wire + + Vertex/Wire + Vertex/Wire - - - Loft - Loft + Loft + Loft - - Too few elements - Too few elements + Too few elements + For få elementer - - At least two vertices, edges or wires are required. - + At least two vertices, edges or wires are required. + At least two vertices, edges or wires are required. - At least two vertices or wires are required. - At least two vertices or wires are required. + At least two vertices or wires are required. + At least two vertices or wires are required. - - + + PartGui::Mirroring - - Mirroring - Speiling + + Mirroring + Speiling - - Shapes - Figurer + Shapes + Figurer - - Mirror plane: - Speilplan: + Mirror plane: + Speilplan: - - XY plane - XY plan + XY plane + XY plan - - XZ plane - XZ plan + XZ plane + XZ plan - - YZ plane - YZ plan + YZ plane + YZ plan - - Base point: - Base point: + Base point: + Base point: - - x - x + x + x - - y - y + y + y - - z - z + z + z - - Select a shape for mirroring, first. - Velg en figur for speiling først. + + Select a shape for mirroring, first. + Velg en figur for speiling først. - - No such document '%1'. - Ingen slike dokument '%1'. + No such document '%1'. + Ingen slike dokument '%1'. - - + + PartGui::ShapeBuilderWidget - - - - - - Wrong selection - Feil valg + + Wrong selection + Feil valg - - - Select two vertices - Select two vertices + Select two vertices + Velg to punkt - Select three or more edges - Select three or more edges + Select three or more edges + Select three or more edges - - Select one or more edges - + Select one or more edges + Select one or more edges - - Select two or more faces - Select two or more faces + Select two or more faces + Velg to eller flere flater - - Select only one part object - Select only one part object + Select only one part object + Select only one part object - - Select two vertices to create an edge - Select two vertices to create an edge + Select two vertices to create an edge + Velg to punkt for a lage en kant - - Select a closed set of edges - Select a closed set of edges + Select a closed set of edges + Velg et lukket sett med kanter - - Select adjacent faces - Select adjacent faces + Select adjacent faces + Velg tilstøtende overflater - - All shape types can be selected - All shape types can be selected + All shape types can be selected + Alle figurtyper kan velges - - + + PartGui::SweepWidget - - - Vertex/Wire - Vertex/Wire + + Vertex/Wire + Vertex/Wire - - - Sweep - + Sweep + Sweep - - Sweep path - + Sweep path + Sweep path - - Select an edge or wire you want to sweep along. - + Select an edge or wire you want to sweep along. + Select an edge or wire you want to sweep along. - - Too few elements - Too few elements + Too few elements + For få elementer - - At least one edge or wire is required. - + At least one edge or wire is required. + At least one edge or wire is required. - - + + PartGui::TaskDialogEditDynamic - Hint - Hint + Hint + Hint - Select Control. - Select Control. + Select Control. + Select Control. - Control - Control + Control + Control - Dynamic - Dynamic + Dynamic + Dynamic - Align - Align + Align + Align - Value - Verdi + Value + Verdi - Special - Special + Special + Special - Command - Kommando + Command + Kommando - Stretch - Stretch + Stretch + Stretch - Move - Flytt + Move + Flytt - Rotate - Roter + Rotate + Roter - Offset - Avsetting + Offset + Avsetting - Orient - Orient + Orient + Orient - Match - Match + Match + Match - Surround - Surround + Surround + Surround - dummy - dummy + dummy + dummy - X Axis - X Axis + X Axis + X Axis - Y Axis - Y Axis + Y Axis + Y Axis - Z Axis - Z Axis + Z Axis + Z Axis - Increment - Increment + Increment + Increment - .125 - .125 + .125 + .125 - .500 - .500 + .500 + .500 - 1.000 - 1.000 + 1.000 + 1.000 - 5.000 - 5.000 + 5.000 + 5.000 - 10.000 - 10.000 + 10.000 + 10.000 - Drag arrows to stretch box by increment - Drag arrows to stretch box by increment + Drag arrows to stretch box by increment + Drag arrows to stretch box by increment - Drag arrows to move box by increment - Drag arrows to move box by increment + Drag arrows to move box by increment + Drag arrows to move box by increment - Not implemented yet - Not implemented yet + Not implemented yet + Not implemented yet - Drag arrows to offset checked axes by increment - Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment - Select dragger for stretch by align - Select dragger for stretch by align + Select dragger for stretch by align + Select dragger for stretch by align - Select dragger for move by align - Select dragger for move by align + Select dragger for move by align + Select dragger for move by align - Select dragger for stretch by value - Select dragger for stretch by value + Select dragger for stretch by value + Select dragger for stretch by value - Select dragger for move by value - Select dragger for move by value + Select dragger for move by value + Select dragger for move by value - 1.0 - 1.0 + 1.0 + 1.0 - Enter Value - Enter Value + Enter Value + Enter Value - Select box to match - Select box to match + Select box to match + Select box to match - Select a point - Select a point + Select a point + Select a point - 0.0 - 0.0 + 0.0 + 0.0 - Select dragger to align - Select dragger to align + Select dragger to align + Select dragger to align - Select dragger to modify - Select dragger to modify + Select dragger to modify + Select dragger to modify - - + + PartGui::TaskFaceColors - - Set color per face - Set color per face + + Set color per face + Set color per face - - Click on the faces in the 3d view to select them. - Click on the faces in the 3d view to select them. + Click on the faces in the 3d view to select them. + Klikk på flatene i 3D-visningen for å velge dem. - - Faces: - Faces: + Faces: + Flater: - - Set to default - Set to default + Set to default + Angi som standard - - + + PartGui::TaskLoft - - Loft - Loft + + Loft + Loft - Vertex/Wire - Vertex/Wire + Vertex/Wire + Vertex/Wire - Move right - Flytt til høyre + Move right + Flytt til høyre - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Flytt det valgte elementet ett nivå ned.</b> <p> Dette vil også endre nivået på overordnet element. </p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Flytt det valgte elementet ett nivå ned.</b> <p> Dette vil også endre nivået på overordnet element. </p> - Move left - Flytt til venstre + Move left + Flytt til venstre - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Flytt det valgte elementet ett nivå opp.</b> <p> Dette vil også endre nivået på overordnet element. </p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Flytt det valgte elementet ett nivå opp.</b> <p> Dette vil også endre nivået på overordnet element. </p> - Move up - Flytt opp + Move up + Flytt opp - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Flytt det valgte elementet opp.</b> <p> Elementet vil bli flyttet innenfor hierarkinivået. </p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Flytt det valgte elementet opp.</b> <p> Elementet vil bli flyttet innenfor hierarkinivået. </p> - Move down - Flytt ned + Move down + Flytt ned - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Flytt det valgte elementet ned.</b> <p> Elementet vil bli flyttet innenfor hierarkinivået. </p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Flytt det valgte elementet ned.</b> <p> Elementet vil bli flyttet innenfor hierarkinivået. </p> - - Create solid - Create solid + Create solid + Lag solid - - Ruled surface - Ruled surface + Ruled surface + Ruled surface - - + + PartGui::TaskShapeBuilder - - - Create shape - Create shape + + Create shape + Lag figur - - Edge from vertices - Edge from vertices + Edge from vertices + Kant fra punkter - - Face from edges - Face from edges + Face from edges + Flater fra kanter - - Planar - Planar + Planar + Planar - - Shell from faces - Shell from faces + Shell from faces + Skall fra flater - - Solid from shell - Solid from shell + Solid from shell + Solid fra skall - - Create - Lag + Create + Lag - - All faces - All faces + All faces + Alle flater - - + + PartGui::TaskSweep - - Sweep - + + Sweep + Sweep - - Create solid - Create solid + Create solid + Lag solid - - Frenet - + Frenet + Frenet - - Select one or more profiles and select an edge or wire + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. - + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. - - + + QObject - - - - - - Wrong selection - Feil valg + + Wrong selection + Feil valg - - - Select two shapes please. - Velg to figurer takk. + Select two shapes please. + Velg to figurer takk. - - - - All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) - Alle CAD-filer (*.stp *.step *.igs *.iges *.brp *.brep) + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + Alle CAD-filer (*.stp *.step *.igs *.iges *.brp *.brep) - - - - STEP (*.stp *.step) - STEP (*.stp *.step) + STEP (*.stp *.step) + STEP (*.stp *.step) - - - - IGES (*.igs *.iges) - IGES (*.igs *.iges) + IGES (*.igs *.iges) + IGES (*.igs *.iges) - - - - BREP (*.brp *.brep) - BREP (*.brp *.brep) + BREP (*.brp *.brep) + BREP (*.brp *.brep) - - - - All Files (*.*) - Alle filer (*.*) + All Files (*.*) + Alle filer (*.*) - - Sewing Tolerance - Sømtoleranse + + Sewing Tolerance + Sømtoleranse - - Enter tolerance for sewing shape: - Angi toleranse for sømform: + Enter tolerance for sewing shape: + Angi toleranse for sømform: - - Edit mirror plane - Rediger speilplan + + Edit mirror plane + Rediger speilplan - - Edit chamfer edges - + Edit chamfer edges + Edit chamfer edges - Transform - Transformer + Transform + Transformer - - - Part design - Komponentdesign + + Part design + Komponentdesign - - - Select two shapes or more, please. - Velg to figurer eller mer, takk. + + Select two shapes or more, please. + Velg to figurer eller mer, takk. - - You have to select either two edges or two wires. - Du må velge to kanter eller to tråder. + You have to select either two edges or two wires. + Du må velge to kanter eller to tråder. - - Edit fillet edges - Rediger avrundingskanter + + Edit fillet edges + Rediger avrundingskanter - - Set colors... - Set colors... + + Set colors... + Angi farger... - - + + Workbench - - &Part - &Komponent + + &Part + &Komponent - - &Simple - &Enkel + &Simple + &Enkel - - &Parametric - &Parametrisk + &Parametric + &Parametrisk - - Part tools - Komponentverktøy + Part tools + Komponentverktøy - - Solids - Solide + Solids + Solide - - Boolean - Boolsk + Boolean + Boolsk - + diff --git a/src/Mod/Part/Gui/Resources/translations/Part_pl.qm b/src/Mod/Part/Gui/Resources/translations/Part_pl.qm index 40d8399ea..20a2d06d4 100644 Binary files a/src/Mod/Part/Gui/Resources/translations/Part_pl.qm and b/src/Mod/Part/Gui/Resources/translations/Part_pl.qm differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_pl.ts b/src/Mod/Part/Gui/Resources/translations/Part_pl.ts index acc0932b7..6f880a5de 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_pl.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_pl.ts @@ -1,2522 +1,2125 @@ - - + + BlockDefinition - - Block definition - Definicja bloku + + Block definition + Definicja bloku - - First limit - Pierwsze ograniczenie + First limit + Pierwsze ograniczenie - - - Type: - Typ: + Type: + Typ: - - - mm - mm + mm + mm - - - Length: - Długość: + Length: + Długość: - - - Dimension - Wymiar + Dimension + Wymiar - - - Up to next - Do następnego + Up to next + Do następnego - - - Up to last - Do ostatniego + Up to last + Do ostatniego - - - Up to plane - Do płaszczyzny + Up to plane + Do płaszczyzny - - - Up to face - Do fasetki + Up to face + Do fasetki - - - Limit: - Limit: + Limit: + Limit: - - - - - No selection - Brak wyboru + No selection + Brak wyboru - - Profile - Profil + Profile + Profil - - Selection: - Selection: + Selection: + Wybór: - - Reverse - Odwróć + Reverse + Odwróć - - Both sides - Obie strony + Both sides + Obie strony - - Second limit - Drugie ograniczenie + Second limit + Drugie ograniczenie - - Direction - Kierunek + Direction + Kierunek - - Perpendicular to sketch - Perpendicular to sketch + Perpendicular to sketch + Prostopadle do szkicu - - Reference - Reference + Reference + Odniesienie - - Apply - Zastosuj + Apply + Zastosuj - - Cancel - Anuluj + Cancel + Anuluj - - OK - OK + OK + OK - - + + CmdPartBoolean - - Part - Część + + Part + Część - - Boolean... - Boolean ... + Boolean... + Boolean ... - - Run a boolean operation with two shapes selected - Wykonaj operację boolean na 2 zaznaczonych obwiedniach + Run a boolean operation with two shapes selected + Wykonaj operację logiczną na dwóch zaznaczonych obiektach - - + + CmdPartBox - - Part - Część + + Part + Część - - Box - Box + Box + Sześcian - - Create a box solid - Create a box solid + Create a box solid + Utwórz prostopadłościan - - + + CmdPartBox2 - - Part - Część + + Part + Część - - Box fix 1 - Box fix 1 + Box fix 1 + Box fix 1 - - Create a box solid without dialog - Create a box solid without dialog + Create a box solid without dialog + Tworzenie pola bryły bez okna dialogowego - - + + CmdPartBox3 - - Part - Część + Part + Część - - Box fix 2 - Box fix 2 + Box fix 2 + Box fix 2 - - Create a box solid without dialog - Create a box solid without dialog + Create a box solid without dialog + Tworzenie pola bryły bez okna dialogowego - - + + CmdPartBuilder - - Part - Część + Part + Część - - Shape builder... - Shape builder... + Shape builder... + Konstruktor kształtu... - - Advanced utility to create shapes - Advanced utility to create shapes + Advanced utility to create shapes + Zaawansowane narzędzie do tworzenia kształtów - - + + CmdPartChamfer - - Part - Część + Part + Część - - Chamfer... - + Chamfer... + Fazowanie ... - - Chamfer the selected edges of a shape - + Chamfer the selected edges of a shape + Sfazuj wybrane krawędzie obiektu - - + + CmdPartCommon - - Part - Część + Part + Część - - Intersection - Przecięcie + Intersection + Przecięcie - - Make an intersection of two shapes - Utwórz przecięcie 2 obwiedni + Make an intersection of two shapes + Utwórz iloczyn dwóch obiektów - - + + CmdPartCone - - Part - Część + + Part + Część - - Cone - Stożek + Cone + Stożek - - Create a cone solid - Utwórz stożek + Create a cone solid + Utwórz stożek - - + + CmdPartCrossSections - - Part - Część + + Part + Część - - Cross-sections... - Cross-sections... + Cross-sections... + Przekrój poprzeczny... - - Cross-sections - Cross-sections + Cross-sections + Przekrój poprzeczny - - + + CmdPartCut - - Part - Część + Part + Część - - Cut - Wytnij + Cut + Wytnij - - Make a cut of two shapes - Make a cut of two shapes + Make a cut of two shapes + Utwórz różnicę dwóch obiektów - - + + CmdPartCylinder - - Part - Część + + Part + Część - - Create a Cylinder - Utwórz Cylinder + Create a Cylinder + Utwórz walec - - Cylinder - Cylinder + Cylinder + Cylinder - - + + CmdPartExport - - Part - Część + + Part + Część - - Export CAD... - Export CAD... + Export CAD... + Eksport CAD... - - Exports to a CAD file - Eksport do pliku CAD + Exports to a CAD file + Eksport do pliku CAD - - + + CmdPartExtrude - - Part - Część + Part + Część - - Extrude... - Wyciągnięcie ... + Extrude... + Wyciągnięcie ... - - Extrude a selected sketch - Wyciągnij wybrany szkic + Extrude a selected sketch + Wyciągnij wybrany szkic - - + + CmdPartFillet - - Part - Część + Part + Część - - Fillet... - Fillet... + Fillet... + Zaokrąglenie... - - Fillet the selected edges of a shape - Fillet the selected edges of a shape + Fillet the selected edges of a shape + Zaokrąglij wybrane krawędzie obiektu - - + + CmdPartFuse - - Part - Część + Part + Część - - Union - Połączenie + Union + Suma - - Make a union of several shapes - Utwórz sumę kilku obwiedni + Make a union of several shapes + Utwórz sumę kilku obiektów - - + + CmdPartImport - - Part - Część + Part + Część - - Imports a CAD file - Importuje plik CAD + Imports a CAD file + Importuje plik CAD - - Import CAD... - Import CAD ... + Import CAD... + Import CAD ... - - + + CmdPartImportCurveNet - - Part - Część + Part + Część - - Import a curve network - Import a curve network + Import a curve network + Importuj sieci krzywej - - Import curve network... - Import curve network... + Import curve network... + Importuj sieci krzywej... - - + + CmdPartLoft - - Part - Część + Part + Część - - Loft... - Wyciągnij... + Loft... + Przeciągnięcie... - - Utility to loft - + Utility to loft + Utility to loft - Advanced utility to lofts - Advanced utility to lofts + Advanced utility to lofts + Zaawansowane narzędzia Loft - - + + CmdPartMakeSolid - - Part - Część + Part + Część - - Convert to solid - Convert to solid + Convert to solid + Przekształć na bryłę - - Create solid from a shell or compound - Create solid from a shell or compound + Create solid from a shell or compound + Tworzenie brył z powłoki shell lub z elementów - - + + CmdPartMirror - - Part - Część + Part + Część - - Mirroring... - Mirroring... + Mirroring... + Powielanie przez lustrzane odbicie... - - Mirroring a selected shape - Mirroring a selected shape + Mirroring a selected shape + Utwórz odbicie lustrzane wybranego obiektu - - + + CmdPartPickCurveNet - - Part - Część + Part + Część - - Pick curve network - Pick curve network + Pick curve network + Wybierz krzywą sieci - - Pick a curve network - Pick a curve network + Pick a curve network + Wybierz krzywą sieci - - + + CmdPartPrimitives - - Part - Część + Part + Część - - Create primitives... - Create primitives... + Create primitives... + Utwórz bryły... - - Creation of parametrized geometric primitives - Creation of parametrized geometric primitives + Creation of parametrized geometric primitives + Tworzenie brył parametrycznych - - + + CmdPartRefineShape - - Part - Część + + Part + Część - - Refine shape - + Refine shape + Udoskonal kształt - - Refine the copy of a shape - + Refine the copy of a shape + Popraw kopię kształtu - - + + CmdPartReverseShape - - Part - Część + + Part + Część - - Reverse shapes - Reverse shapes + Reverse shapes + Odwróć kształty - - Reverse orientation of shapes - Reverse orientation of shapes + Reverse orientation of shapes + Odwróć orientację kształtów - - + + CmdPartRevolve - - Part - Część + Part + Część - - Revolve... - Revolve... + Revolve... + Obracać... - - Revolve a selected shape - Revolve a selected shape + Revolve a selected shape + Wyciągnij przez obrót zaznaczony obiekt - - + + CmdPartRuledSurface - - Part - Część + Part + Część - - Create ruled surface - Create ruled surface + Create ruled surface + Utwórz powierzchnię prostokreślną - - Create a ruled surface from two curves - Create a ruled surface from two curves + Create a ruled surface from two curves + Utwórz powierzchnię prostokreślną z dwóch krzywych - - + + CmdPartSection - - Make a section of two shapes - Utwórz przekrój 2 obwiedni + Make a section of two shapes + Utwórz iloraz dwóch obiektów - - Part - Część + Part + Część - - Section - Sekcja + Section + Iloraz - - + + CmdPartShapeFromMesh - - Part - Część + + Part + Część - - Create shape from mesh... - Create shape from mesh... + Create shape from mesh... + Utwórz kształt z siatki... - - Create shape from selected mesh object - Create shape from selected mesh object + Create shape from selected mesh object + Utwórz kształt z siatki wybranego obiektu - - + + CmdPartSimpleCopy - - Part - Część + Part + Część - - Create simple copy - Utwórz kopię + Create simple copy + Utwórz kopię - - Create a simple non-parametric copy - Utwórz nieparametryczną kopię + Create a simple non-parametric copy + Utwórz nieparametryczną kopię - - + + CmdPartSimpleCylinder - - Part - Część + Part + Część - - Create Cylinder... - Utwórz Cylinder ... + Create Cylinder... + Utwórz walec... - - Create a Cylinder - Utwórz Cylinder + Create a Cylinder + Utwórz walec - - + + CmdPartSphere - - Create a sphere solid - Utwórz sferę + + Create a sphere solid + Utwórz kulę - - Part - Część + Part + Część - - Sphere - Kula + Sphere + Kula - - + + CmdPartSweep - - Part - Część + + Part + Część - - Sweep... - + Sweep... + Zamitanie... - - Utility to sweep - + Utility to sweep + Narzędzie do wycierania - - + + CmdPartTorus - - Create a torus solid - Utwórz torus + + Create a torus solid + Utwórz torus - - Part - Część + Part + Część - - Torus - torus + Torus + torus - - + + DlgExtrusion - Select a shape for extrusion, first. - Select a shape for extrusion, first. + Select a shape for extrusion, first. + Select a shape for extrusion, first. - The document '%1' doesn't exist. - The document '%1' doesn't exist. + The document '%1' doesn't exist. + The document '%1' doesn't exist. - - + + DlgRevolution - Select a shape for revolution, first. - Select a shape for revolution, first. + Select a shape for revolution, first. + Select a shape for revolution, first. - - + + DlgSettings3DViewPart - Deviation - Deviation + Deviation + Deviation - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - - + + PartGui::CrossSections - - Cross sections - Cross sections + + Cross sections + Przekroje - - Guiding plane - Guiding plane + Guiding plane + Prowadzenie płaszczyzny - - XY - XY + XY + XY - - XZ - XZ + XZ + XZ - - YZ - YZ + YZ + YZ - - Position: - Pozycja: + Position: + Pozycja: - - Sections - Sections + Sections + Sekcje - - On both sides - On both sides + On both sides + Po obu stronach - - Count - Count + Count + Przelicz - - Distance: - Distance: + Distance: + Odległość: - - + + PartGui::DlgBooleanOperation - - Boolean Operation - Operacja Logiczna + + Boolean Operation + Operacja logiczna - - Second shape - Drugi kształt + Second shape + Drugi kształt - - First shape - Pierwszy kształt + First shape + Pierwszy kształt - - Boolean operation - Operacja logiczna + Boolean operation + Operacja logiczna - - Section - Sekcja + Section + Iloraz - - Difference - Różnica + Difference + Różnica - - Union - Połączenie + Union + Suma - - Intersection - Przecięcie + Intersection + Przecięcie - - Cannot perform a boolean operation with the same shape - Nie można wykonać operacji boolean na tym samym kształcie + + Cannot perform a boolean operation with the same shape + Nie można wykonać operacji boolean na tym samym kształcie - - - Solids - Solids + + Solids + Bryły - - - Shells - Shells + Shells + Skorupy - - - Compounds - Compounds + Compounds + Elementy - - - Faces - Faces + Faces + Ściany - - Swap selection - Swap selection + Swap selection + Odwróć zaznaczenie - - Select a shape on the left side, first - Select a shape on the left side, first + + Select a shape on the left side, first + Najpierw zaznacz kształt po lewej stronie - - Select a shape on the right side, first - Select a shape on the right side, first + Select a shape on the right side, first + Najpierw zaznacz kształt po prawej stronie, - - No active document available - No active document available + No active document available + Żaden aktywny dokument nie jest dostępny - - One of the selected objects doesn't exist anymore - One of the selected objects doesn't exist anymore + One of the selected objects doesn't exist anymore + Jeden z zaznaczonych obiektów nie istnieje - - Performing union on non-solids is not possible - Performing union on non-solids is not possible + Performing union on non-solids is not possible + Utworzenie sumy na obiektach nie będących bryłami nie jest możliwe - - Performing intersection on non-solids is not possible - Performing intersection on non-solids is not possible + Performing intersection on non-solids is not possible + Utworzenie iloczynu obiektów nie będących bryłami nie jest możliwe - - Performing difference on non-solids is not possible - Performing difference on non-solids is not possible + Performing difference on non-solids is not possible + Utworzenie różnicy obiektów nie będących bryłami nie jest możliwe - - + + PartGui::DlgChamferEdges - - Chamfer Edges - + + Chamfer Edges + Fazowanie krawędzi - - + + PartGui::DlgExtrusion - - Extrude - Wyciągnięcie + + Extrude + Wyciągnięcie - - Direction - Kierunek + Direction + Kierunek - - Along normal - Wzdłuż normalnej + Along normal + Wzdłuż normalnej - - Length: - Długość: + Length: + Długość: - - 3D view - Widok 3D + 3D view + Widok 3D - - Note:This option works for planes only - Uwaga: opcja działa wyłącznie dla płaszczyzn + Note:This option works for planes only + Uwaga: opcja działa wyłącznie dla płaszczyzn - - Create solid - Utwórz bryłę + Create solid + Utwórz bryłę - - Taper outward angle - + Taper outward angle + Bierny kąt stożka - - Shape - Kształt + Shape + Kształt - - + + - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - Select a shape for extrusion, first. - Select a shape for extrusion, first. + + Select a shape for extrusion, first. + Select a shape for extrusion, first. - - The document '%1' doesn't exist. - The document '%1' doesn't exist. + The document '%1' doesn't exist. + The document '%1' doesn't exist. - - + + PartGui::DlgFilletEdges - - Fillet Edges - Fillet Edges + + Fillet Edges + Zaokrągl Krawędzie - - Fillet Parameter - Fillet Parameter + Fillet Parameter + Parametr Zaokrąglenia - - Radius: - Promień: + Radius: + Promień: - - Fillet type: - Fillet type: + Fillet type: + Typ Zaokrąglenia: - - Constant Radius - Stały promień + Constant Radius + Stały promień - - Variable Radius - Zmienny promień + Variable Radius + Zmienny promień - - Shape - Kształt + Shape + Kształt - - Selected shape: - Zaznaczono kształt: + Selected shape: + Zaznaczono kształt: - - No selection - Brak wyboru + No selection + Brak wyboru - - Edges to fillet - Edges to fillet + + Edges to fillet + Krawędzie do zaokrąglenia - - - Start radius - Początek promienia + Start radius + Początek promienia - - End radius - Koniec promienia + End radius + Koniec promienia - - Radius - Promień + Radius + Promień - - No edge selected - Nie zaznaczono krawędzi + No edge selected + Nie zaznaczono krawędzi - - No edge entity is checked to fillet. + No edge entity is checked to fillet. Please check one or more edge entities first. - No edge entity is checked to fillet. -Please check one or more edge entities first. + Nie zaznaczono krawędzi do sfazowania Zaznacz wcześniej jedną lub więcej krawędzi. - - All - Wszystkie + + All + Wszystkie - - None - Brak + None + Brak - - - Edge%1 - Edge%1 + + Edge%1 + Krawędź%1 - - No shape selected - Brak wybranych kształtów + No shape selected + Brak wybranych kształtów - - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - No valid shape is selected. -Please select a valid shape in the drop-down box first. + Wybrany kształt nie jest prawidłowy. Wybierz najpierw prawidłowy kształt w polu rozwijanym. - - + + PartGui::DlgPartBox - - Box definition - Box definition + + Box definition + Bryła - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - Cancel - Anuluj + Cancel + Anuluj - - OK - OK + OK + OK - - Size: - Rozmiar: + Size: + Rozmiar: - - Height: - Wysokość: + Height: + Wysokość: - - Width: - Szerokość: + Width: + Szerokość: - - Length: - Długość: + Length: + Długość: - - Position: - Pozycja: + Position: + Pozycja: - - Direction: - Kierunek: + Direction: + Kierunek: - - + + PartGui::DlgPartCylinder - - Cylinder definition - Cylinder definition + + Cylinder definition + Definicja cylindra - - Parameter - Parametr + Parameter + parametr - - Height: - Wysokość: + Height: + Wysokość: - - Radius: - Promień: + Radius: + Promień: - - Position: - Pozycja: + Position: + Pozycja: - - Direction: - Kierunek: + Direction: + Kierunek: - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - OK - OK + OK + OK - - Cancel - Anuluj + Cancel + Anuluj - - + + PartGui::DlgPartImportIges - - IGES input file - IGES input file + + IGES input file + Plik wejściowy IGES - - ... - ... + ... + ... - - Cancel - Anuluj + Cancel + Anuluj - - OK - OK + OK + OK - - File Name - Nazwa pliku + File Name + Nazwa pliku - - + + - - + + PartGui::DlgPartImportIgesImp - - IGES (*.igs *.iges);;All Files (*.*) - IGES (*.igs *.iges);;All Files (*.*) + + IGES (*.igs *.iges);;All Files (*.*) + IGES (*.igs *.iges);;Wszystkie pliki (*.*) - - + + PartGui::DlgPartImportStep - - ... - ... + + ... + ... - - Cancel - Anuluj + Cancel + Anuluj - - OK - OK + OK + OK - - Step input file - Step input file + Step input file + Plik wejściowy Step - - File Name - Nazwa pliku + File Name + Nazwa pliku - - + + - - + + PartGui::DlgPartImportStepImp - - STEP (*.stp *.step);;All Files (*.*) - STEP (*.stp *.step);;All Files (*.*) + + STEP (*.stp *.step);;All Files (*.*) + STEP (*.stp *.step);;Wszystkie pliki (*.*) - - + + PartGui::DlgPrimitives - - Geometric Primitives - Geometric Primitives + + Geometric Primitives + Bryły geometryczne - Primitive - Primitive + Primitive + Bryła - X min - X min + X min + X min - x max - x max + x max + x max - Y min - Y min + Y min + Y min - Y max - Y max + Y max + Y max - Z min - Z min + Z min + Z min - Z max - Z max + Z max + Z max - X2 min - X2 min + X2 min + X2 min - X2 max - X2 max + X2 max + X2 max - Z2 min - Z2 min + Z2 min + Z2 min - Z2 max - Z2 max + Z2 max + Z2 max - Angle - 0 for cyl - Angle - 0 for cyl + Angle - 0 for cyl + Kąt - 0 dla cyl - Angle0 - Angle0 + Angle0 + Kąt 0 - Angle1 - Angle1 + Angle1 + Kąt 1 - X Axis Value: - X Axis Value: + X Axis Value: + Wartość osi X: - Y Axis Value: - Y Axis Value: + Y Axis Value: + Wartości osi Y: - Z Axis Value: - Z Axis Value: + Z Axis Value: + Wartość osi Z: - - Wedge - Wedge + Wedge + Klin - - Circle - Okrąg + Circle + Okrąg - Vertex - Wierzchołek + Vertex + Wierzchołek - Position - Position + Position + Pozycja - - - - Z: - Z: + Z: + Z: - - - - X: - X: + X: + X: - Direction: - Kierunek: + Direction: + Kierunek: - - - - Y: - Y: + Y: + Y: - - Plane - Plan + Plane + Plan - - Box - Box + Box + Sześcian - - Cylinder - Cylinder + Cylinder + Cylinder - - Cone - Stożek + Cone + Stożek - - Sphere - Kula + Sphere + Kula - - Ellipsoid - Elipsoida + Ellipsoid + Elipsoida - - Torus - torus + Torus + torus - - Ellipse - + Ellipse + Elipsa - - Point - + Point + Punkt - - Line - + Line + Linia - - Parameter - Parametr + Parameter + parametr - - - Width: - Szerokość: + Width: + Szerokość: - - - Length: - Długość: + Length: + Długość: - - - - - Height: - Wysokość: + Height: + Wysokość: - - - - Angle: - Kąt: + Angle: + Kąt: - - - - - Radius: - Promień: + Radius: + Promień: - - - - Radius 1: - Promień 1: + Radius 1: + Promień 1: - - - - Radius 2: - Promień 2: + Radius 2: + Promień 2: - - - - U parametric: - U parametric: + U parametric: + U parametryczne: - - - - V parametric: - V parametric: + V parametric: + V parametryczne: - - X min/max: - + X min/max: + X min/max: - - Y min/max: - + Y min/max: + Y min/max: - - Z min/max: - + Z min/max: + Z min/max: - - X2 min/max: - + X2 min/max: + X2 min/max: - - Z2 min/max: - + Z2 min/max: + Z2 min/max: - - Coordinate system: - + Coordinate system: + Układ współrzędnych: - - Right-handed - + Right-handed + Praworęczny - - Left-handed - + Left-handed + Leworęczny - - - Angle 1: - + Angle 1: + Kąt 1: - - - Angle 2: - + Angle 2: + Kąt 2: - - From three points - + From three points + Z trzech punktów - - Major radius: - + Major radius: + Promień główny: - - Minor radius: - + Minor radius: + Promień pomocniczy: - - End point - + End point + Punkt końcowy - - Start point - + Start point + Punkt początkowy - - &Create - &Utwórz + + &Create + &Utwórz - Alt+C - Alt + C + Alt+C + Alt + C - Cl&ose - ZAMKNIJ + Cl&ose + ZAMKNIJ - Alt+O - Alt + O + Alt+O + Alt + O - - - - Create %1 - Utwórz %1 + Create %1 + Utwórz %1 - - No active document - Brak aktywnego dokumentu + No active document + Brak aktywnego dokumentu - - Pitch: - Pitch: + + Pitch: + Odstęp: - - Helix - Helix + Helix + Helisa - 3D View - Widok 3D + 3D View + Widok 3D - - + + PartGui::DlgRevolution - - Revolve - Revolve + + Revolve + Obracać - - Y: - Y: + Y: + Y: - - X: - X: + X: + X: - - Angle: - Kąt: + Angle: + Kąt: - - Z: - Z: + Z: + Z: - - Axis: - Oś: + Axis: + Oś: - - Shape - Kształt + Shape + Kształt - - Select line in 3D view - + Select line in 3D view + Wybierz linię w widoku 3D - - Select a shape for revolution, first. - Select a shape for revolution, first. + + Select a shape for revolution, first. + Select a shape for revolution, first. - - + + PartGui::DlgSettings3DViewPart - - View accuracy / Performance - View accuracy / Performance + + View accuracy / Performance + Dokładność wyświetlania / Wydajność - - View smoothing - View smoothing + View smoothing + Widok wygładzenia - - Using high-quality normals - Using high-quality normals + Using high-quality normals + Użyj normalnych wysokiej jakości - - This will slow down render speed but will lead to nicer results - This will slow down render speed but will lead to nicer results + This will slow down render speed but will lead to nicer results + To spowolni prędkość renderowania, lecz poprawi jego wyniki - - Defines the appearance of surfaces - Defines the appearance of surfaces + Defines the appearance of surfaces + Określa wygląd powierzchni - - Shape view - Shape view + Shape view + Widok obwiedni - - Tessellation - Tesselacja + Tessellation + Tesselacja - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Cieniowanie płaskie/Cieniowanie Phong</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Przy cieniowaniu płaskim powierzchnie nie są definiowane wektoro co może prowadzić do nierzeczywistego wyświetlania zakrzywionych powierzchni. Podczas gdy cieniowanie Phong prowadzi do łagodniejszego wyglądu krzywych.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Jeżeli ta opcja jest zaznaczona to użyte zostanie cieniowanie płaskie w przeciwnym wypadku zostanie użyte cieniowanie Phong.</p></body></html> - - Do not define normal per vertex - Do not define normal per vertex + Do not define normal per vertex + Nie definiuj normalne per wierzchołek - - Defines the deviation of tessellation to the actual surface - Defines the deviation of tessellation to the actual surface + Defines the deviation of tessellation to the actual surface + Definiuje odchylenie teselacji rzeczywistej powierzchni - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head> <body style="white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px;"> <span style="font-weight:600;"> Tesselacja</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-weight:600;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-weight:600;"> <span style="font-weight:400;"> Określa maksymalne odchylenie mozaikowych oczek siatki na powierzchni. Im jest mniejsza wartość tym mniejsza szybkość renderowania i ladniejszy wygląd.</span></p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head> <body style="white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px;"> <span style="font-weight:600;"> Wysokiej jakości </span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px;"> To spowolni szybkość renderowania, ale nie będzie prowadziło do ładnego wyniku.</p></body></html> - - Maximum deviation depending on the model bounding box - Maximum deviation depending on the model bounding box + Maximum deviation depending on the model bounding box + Maksymalne dopuszczalne odchylenie w zależności od obwiedni modelu - - % - % + % + % - - Deviation - Deviation + + Deviation + Deviation - - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - - + + PartGui::DlgSettingsGeneral - - General - Ogólne + + General + Ogólne - - Export - Export + Export + Export - - Millimeter - Milimetr + Millimeter + Milimetr - - Meter - Metr + Meter + Metr - - Inch - Cal + Inch + Cal - - Units for export of STEP/IGES - Units for export of STEP/IGES + Units for export of STEP/IGES + Jednostki do eksportu STEP/IGES - - Model settings - + Model settings + Ustawienia modelu - - Automatically refine model after boolean operation - + Automatically refine model after boolean operation + Automatycznie dostosuj model po operacji logicznej - - Automatically check model after boolean operation - + Automatically check model after boolean operation + Automatycznie sprawdź model po operacji logicznej - - + + PartGui::FaceColors - - Face colors - + + Face colors + Kolory powierzchni - - Do you really want to cancel? - + Do you really want to cancel? + Czy na pewno chcesz anulować? - - + + PartGui::Location - - Location - + + Location + Lokalizacja - - Position - Position + Position + Pozycja - - 3D View - Widok 3D + 3D View + Widok 3D - - + + PartGui::LoftWidget - - - Vertex/Wire - Utwórz obwiednię + + Vertex/Wire + Utwórz obwiednię - - - Loft - Loft + Loft + Poszycie - - Too few elements - Zbyt mało elementów + Too few elements + Zbyt mało elementów - - At least two vertices, edges or wires are required. - + At least two vertices, edges or wires are required. + Wymagane są co najmniej dwa wierzchołki, krawędzie lub przewody. - At least two vertices or wires are required. - At least two vertices or wires are required. + At least two vertices or wires are required. + Wymagane są co najmniej dwa wierzchołki lub linie. - - + + PartGui::Mirroring - - Mirroring - Mirroring + + Mirroring + Powielanie przez lustrzane odbicie - - Shapes - Kształty + Shapes + Kształty - - Mirror plane: - Mirror plane: + Mirror plane: + Płaszczyzna odbicia lustrzanego: - - XY plane - Płaszczyzna XY + XY plane + Płaszczyzna XY - - XZ plane - Płaszczyzna XZ + XZ plane + Płaszczyzna XZ - - YZ plane - Płaszczyzna YZ + YZ plane + Płaszczyzna YZ - - Base point: - Base point: + Base point: + Punkt zaczepienia: - - x - x + x + x - - y - y + y + y - - z - z + z + z - - Select a shape for mirroring, first. - Select a shape for mirroring, first. + + Select a shape for mirroring, first. + Najpierw zaznacz kształt do lustrzanego odbicia. - - No such document '%1'. - Brak dokumentu '%1'. + No such document '%1'. + Brak dokumentu '%1'. - - + + PartGui::ShapeBuilderWidget - - - - - - Wrong selection - Niewłaściwy wybór + + Wrong selection + Niewłaściwy wybór - - - Select two vertices - Zaznacz 2 wierzchołki + Select two vertices + Zaznacz 2 wierzchołki - Select three or more edges - Zaznacz 3 lub więcej Krawędzi + Select three or more edges + Zaznacz 3 lub więcej Krawędzi - - Select one or more edges - + Select one or more edges + Zaznacz jedną lub więcej krawędzi - - Select two or more faces - Zaznacz 2 lub więcej fasetek + Select two or more faces + Zaznacz 2 lub więcej fasetek - - Select only one part object - Zaznacz tylko część obiektu + Select only one part object + Zaznacz tylko część obiektu - - Select two vertices to create an edge - Aby utworzyć Krawędź zaznacz 2 wierzchołki + Select two vertices to create an edge + Aby utworzyć Krawędź zaznacz 2 wierzchołki - - Select a closed set of edges - Select a closed set of edges + Select a closed set of edges + Wybierz zamknięty zbiór krawędzi - - Select adjacent faces - Zaznacz sąsiednie fasetki + Select adjacent faces + Zaznacz sąsiednie fasetki - - All shape types can be selected - Można zaznaczyć wszystkie rodzaje obwiedni + All shape types can be selected + Można zaznaczyć wszystkie rodzaje obwiedni - - + + PartGui::SweepWidget - - - Vertex/Wire - Utwórz obwiednię + + Vertex/Wire + Utwórz obwiednię - - - Sweep - + Sweep + Wycieranie - - Sweep path - + Sweep path + Ścieżka wycierania - - Select an edge or wire you want to sweep along. - + Select an edge or wire you want to sweep along. + Wybierz krawędź lub drut, wzdłuż którego chcesz wycierać. - - Too few elements - Zbyt mało elementów + Too few elements + Zbyt mało elementów - - At least one edge or wire is required. - + At least one edge or wire is required. + Wymagana jest co najmniej jedna krawędź lub drut. - - + + PartGui::TaskDialogEditDynamic - Hint - Hint + Hint + Wskazówka - Select Control. - Select Control. + Select Control. + Zaznacz kontrolę. - Control - Control + Control + Kontrola - Dynamic - Dynamic + Dynamic + Dynamiczne - Align - Align + Align + Wyrównaj - Value - Wartość + Value + Wartość - Special - Special + Special + Specjalne - Command - Polecenie + Command + Polecenie - Stretch - Stretch + Stretch + Rozciągnij - Move - Przesuń + Move + Przesuń - Rotate - Obróć + Rotate + Obróć - Offset - Offset + Offset + Offset - Orient - Orient + Orient + Ustaw - Match - Match + Match + Dopasuj - Surround - Surround + Surround + Otocz - dummy - dummy + dummy + dummy - X Axis - X Axis + X Axis + Oś x - Y Axis - Y Axis + Y Axis + Oś Y - Z Axis - Z Axis + Z Axis + Oś Z - Increment - Increment + Increment + Zwiększ - .125 - .125 + .125 + .125 - .500 - .500 + .500 + .500 - 1.000 - 1.000 + 1.000 + 1,000 - 5.000 - 5.000 + 5.000 + 5000 - 10.000 - 10.000 + 10.000 + 10 000 - Drag arrows to stretch box by increment - Drag arrows to stretch box by increment + Drag arrows to stretch box by increment + Przeciągnij strzałki do rozciągnięcia pola przez przyrost - Drag arrows to move box by increment - Drag arrows to move box by increment + Drag arrows to move box by increment + Przeciągnij strzałki, aby przenieść pole do zwiększenia - Not implemented yet - Not implemented yet + Not implemented yet + Nie zostało jeszcze zaimplementowane - Drag arrows to offset checked axes by increment - Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment - Select dragger for stretch by align - Select dragger for stretch by align + Select dragger for stretch by align + Select dragger for stretch by align - Select dragger for move by align - Select dragger for move by align + Select dragger for move by align + Select dragger for move by align - Select dragger for stretch by value - Select dragger for stretch by value + Select dragger for stretch by value + Select dragger for stretch by value - Select dragger for move by value - Select dragger for move by value + Select dragger for move by value + Select dragger for move by value - 1.0 - 1.0 + 1.0 + 1.0 - Enter Value - Enter Value + Enter Value + Wprowadź wartość - Select box to match - Select box to match + Select box to match + Select box to match - Select a point - Select a point + Select a point + Zaznacz punkt - 0.0 - 0.0 + 0.0 + 0.0 - Select dragger to align - Select dragger to align + Select dragger to align + Select dragger to align - Select dragger to modify - Select dragger to modify + Select dragger to modify + Select dragger to modify - - + + PartGui::TaskFaceColors - - Set color per face - Ustaw kolor wg. fasetki + + Set color per face + Ustaw kolor wg. fasetki - - Click on the faces in the 3d view to select them. - Aby wybrać fasetki zaznacz je w Widoku 3D + Click on the faces in the 3d view to select them. + Aby wybrać fasetki zaznacz je w Widoku 3D - - Faces: - Fasetki: + Faces: + Fasetki: - - Set to default - Ustaw domyślne + Set to default + Ustaw domyślne - - + + PartGui::TaskLoft - - Loft - Loft + + Loft + Poszycie - Vertex/Wire - Utwórz obwiednię + Vertex/Wire + Utwórz obwiednię - Move right - Przesuń w prawo + Move right + Przesuń w prawo - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Przenosi zaznaczony element o jeden poziom w dół.</b> <p> Zmieniony zostanie także poziom pozycji nadrzędnej. </p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Przenosi zaznaczony element o jeden poziom w dół.</b> <p> Zmieniony zostanie także poziom pozycji nadrzędnej. </p> - Move left - Przesuń w lewo + Move left + Przesuń w lewo - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Przenosi zaznaczony element o jeden poziom w dół.</b> <p> Zmieniony zostanie także poziom pozycji nadrzędnej. </p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Przenosi zaznaczony element o jeden poziom w dół.</b> <p> Zmieniony zostanie także poziom pozycji nadrzędnej. </p> - Move up - Przesuń w górę + Move up + Przesuń w górę - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Przenosi zaznaczony element w dół.</b> <p> Element zostanie przesunięty w poziomie hierarchii. </p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Przenosi zaznaczony element w dół.</b> <p> Element zostanie przesunięty w poziomie hierarchii. </p> - Move down - Przenieś w dół + Move down + Przenieś w dół - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Przenosi zaznaczony element w dół.</b> <p> Element zostanie przesunięty w poziomie hierarchii. </p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Przenosi zaznaczony element w dół.</b> <p> Element zostanie przesunięty w poziomie hierarchii. </p> - - Create solid - Utwórz bryłę + Create solid + Utwórz bryłę - - Ruled surface - Ruled surface + Ruled surface + Wykluczona powierzchnia - - + + PartGui::TaskShapeBuilder - - - Create shape - Utwórz obwiednię + + Create shape + Utwórz obwiednię - - Edge from vertices - Krawędź z wierzchołków + Edge from vertices + Krawędź z wierzchołków - - Face from edges - Fasetka z wierzchołków + Face from edges + Fasetka z wierzchołków - - Planar - Planar + Planar + Płaski - - Shell from faces - Powłoka z fasetek + Shell from faces + Powłoka z fasetek - - Solid from shell - Bryła z powłoki + Solid from shell + Bryła z powłoki - - Create - Utwórz + Create + Utwórz - - All faces - All faces + All faces + Wszystkie powierzchnie - - + + PartGui::TaskSweep - - Sweep - + + Sweep + Wycieranie - - Create solid - Utwórz bryłę + Create solid + Utwórz bryłę - - Frenet - + Frenet + Wektor Freneta - - Select one or more profiles and select an edge or wire + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. - + Wybierz jeden lub więcej profili i zaznacz krawędź lub drut w widoku 3D dla utworzenia ścieżki. - - + + QObject - - - - - - Wrong selection - Niewłaściwy wybór + + Wrong selection + Niewłaściwy wybór - - - Select two shapes please. - Select two shapes please. + Select two shapes please. + Proszę wybrać dwa kształty. - - - - All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) - All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + Wszystkie pliki CAD (STP *.step *.igs *.iges *.brp *.brep) - - - - STEP (*.stp *.step) - STEP (*.stp *.step) + STEP (*.stp *.step) + STEP (*.stp *.step) - - - - IGES (*.igs *.iges) - IGES (*.igs *.iges) + IGES (*.igs *.iges) + IGES (*.igs *.iges) - - - - BREP (*.brp *.brep) - BREP (*.brp *.brep) + BREP (*.brp *.brep) + BREP (*.brp *.brep) - - - - All Files (*.*) - Wszystkie pliki (*.*) + All Files (*.*) + Wszystkie pliki (*.*) - - Sewing Tolerance - Sewing Tolerance + + Sewing Tolerance + Tolerancja szycia - - Enter tolerance for sewing shape: - Enter tolerance for sewing shape: + Enter tolerance for sewing shape: + Wprowadź tolerancję szycia dla kształtu: - - Edit mirror plane - Edit mirror plane + + Edit mirror plane + Edycja płaszczyzny lustra - - Edit chamfer edges - + Edit chamfer edges + Edytuj fazę krawędzi - Transform - Przekształć + Transform + Przekształć - - - Part design - Projektowanie części + + Part design + Projektowanie części - - - Select two shapes or more, please. - Wybierz dwa lub więcej kszałtów, proszę. + + Select two shapes or more, please. + Wybierz dwa lub więcej kszałtów, proszę. - - You have to select either two edges or two wires. - You have to select either two edges or two wires. + You have to select either two edges or two wires. + Należy wybrać dwie krawędzie lub dwie linie szkieletu. - - Edit fillet edges - Edit fillet edges + + Edit fillet edges + Edytuj wygładzenie krawędzi - - Set colors... - Ustaw kolory... + + Set colors... + Ustaw kolory... - - + + Workbench - - &Part - &Part + + &Part + &Część - - &Simple - &Simple + &Simple + & Prosta - - &Parametric - &Parametric + &Parametric + Parametryczny - - Part tools - Part tools + Part tools + Narzędzia trybu Część - - Solids - Solids + Solids + Bryły - - Boolean - Boolean + Boolean + Boolean - + diff --git a/src/Mod/Part/Gui/Resources/translations/Part_pt-BR.qm b/src/Mod/Part/Gui/Resources/translations/Part_pt-BR.qm new file mode 100644 index 000000000..d6e43ac10 Binary files /dev/null and b/src/Mod/Part/Gui/Resources/translations/Part_pt-BR.qm differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_pt-BR.ts b/src/Mod/Part/Gui/Resources/translations/Part_pt-BR.ts new file mode 100644 index 000000000..a54d73d02 --- /dev/null +++ b/src/Mod/Part/Gui/Resources/translations/Part_pt-BR.ts @@ -0,0 +1,2126 @@ + + + + + BlockDefinition + + + Block definition + Definição de bloco + + + First limit + Primeiro limite + + + Type: + Tipo: + + + mm + mm + + + Length: + Comprimento: + + + Dimension + Dimensão + + + Up to next + Até o próximo + + + Up to last + Até o último + + + Up to plane + Até ao plano + + + Up to face + Até a face + + + Limit: + Limite: + + + No selection + Nenhuma seleção + + + Profile + Perfil + + + Selection: + Seleção: + + + Reverse + Inverter + + + Both sides + Ambos os lados + + + Second limit + Segundo limite + + + Direction + Direção + + + Perpendicular to sketch + Perpendicular ao esboço + + + Reference + Referência + + + Apply + Aplicar + + + Cancel + Cancelar + + + OK + OK + + + + CmdPartBoolean + + + Part + Part + + + Boolean... + Booleanas... + + + Run a boolean operation with two shapes selected + Executar uma operação booleana com duas formas selecionadas + + + + CmdPartBox + + + Part + Part + + + Box + Caixa + + + Create a box solid + Criar uma caixa sólida + + + + CmdPartBox2 + + + Part + Part + + + Box fix 1 + Correção de caixa 1 + + + Create a box solid without dialog + Criar uma caixa sólida sem diálogo + + + + CmdPartBox3 + + Part + Part + + + Box fix 2 + Correção de caixa 2 + + + Create a box solid without dialog + Criar uma caixa sólida sem diálogo + + + + CmdPartBuilder + + Part + Part + + + Shape builder... + Construtor de forma... + + + Advanced utility to create shapes + Utilitário avançado para criar formas + + + + CmdPartChamfer + + Part + Part + + + Chamfer... + Chanfro... + + + Chamfer the selected edges of a shape + Chanfra as arestas selecionadas de uma forma + + + + CmdPartCommon + + Part + Part + + + Intersection + Intersecção + + + Make an intersection of two shapes + Fazer uma interseção entre duas formas + + + + CmdPartCone + + + Part + Part + + + Cone + Cone + + + Create a cone solid + Criar um cone sólido + + + + CmdPartCrossSections + + + Part + Part + + + Cross-sections... + Secções transversais... + + + Cross-sections + Secções transversais + + + + CmdPartCut + + Part + Part + + + Cut + Recortar + + + Make a cut of two shapes + Fazer um recorte entre duas formas + + + + CmdPartCylinder + + + Part + Part + + + Create a Cylinder + Criar um cilindro + + + Cylinder + Cilindro + + + + CmdPartExport + + + Part + Part + + + Export CAD... + Exportar CAD ... + + + Exports to a CAD file + Exporta para um arquivo CAD + + + + CmdPartExtrude + + Part + Part + + + Extrude... + Extrusão... + + + Extrude a selected sketch + Extrusão de um esboço selecionado + + + + CmdPartFillet + + Part + Part + + + Fillet... + Filete... + + + Fillet the selected edges of a shape + Cria um filete nas arestas selecionadas de uma forma + + + + CmdPartFuse + + Part + Part + + + Union + União + + + Make a union of several shapes + Fazer uma união com várias formas + + + + CmdPartImport + + Part + Part + + + Imports a CAD file + Importar um arquivo CAD + + + Import CAD... + Importar CAD... + + + + CmdPartImportCurveNet + + Part + Part + + + Import a curve network + Importar uma rede de curvas + + + Import curve network... + Importar uma rede de curvas... + + + + CmdPartLoft + + Part + Part + + + Loft... + Loft... + + + Utility to loft + Utilitário de loft + + + Advanced utility to lofts + Utilitário avançado para lofts + + + + CmdPartMakeSolid + + Part + Part + + + Convert to solid + Converter em sólido + + + Create solid from a shell or compound + Criar sólidos a partir de uma casca ou composto + + + + CmdPartMirror + + Part + Part + + + Mirroring... + Espelho... + + + Mirroring a selected shape + Espelhar uma forma selecionada + + + + CmdPartPickCurveNet + + Part + Part + + + Pick curve network + Selecione uma rede de curvas + + + Pick a curve network + Selecione uma rede de curvas + + + + CmdPartPrimitives + + Part + Part + + + Create primitives... + Criar primitivas... + + + Creation of parametrized geometric primitives + Criação de primitivas geométricas paramétricas + + + + CmdPartRefineShape + + + Part + Part + + + Refine shape + Refinar a forma + + + Refine the copy of a shape + Refinar uma cópia de uma forma + + + + CmdPartReverseShape + + + Part + Part + + + Reverse shapes + Inverter formas + + + Reverse orientation of shapes + Inverter a orientação de formas + + + + CmdPartRevolve + + Part + Part + + + Revolve... + Revolver... + + + Revolve a selected shape + Revolve uma forma selecionada + + + + CmdPartRuledSurface + + Part + Part + + + Create ruled surface + Criar superfície regrada + + + Create a ruled surface from two curves + Criar uma superfície regrada a partir de duas curvas + + + + CmdPartSection + + Make a section of two shapes + Fazer uma seção com duas formas + + + Part + Part + + + Section + Seção + + + + CmdPartShapeFromMesh + + + Part + Part + + + Create shape from mesh... + Criar uma forma a partir de uma malha... + + + Create shape from selected mesh object + Cria uma forma a partir de uma malha selecionada + + + + CmdPartSimpleCopy + + Part + Part + + + Create simple copy + Criar uma cópia simple + + + Create a simple non-parametric copy + Criar uma cópia simples não-paramétrica + + + + CmdPartSimpleCylinder + + Part + Part + + + Create Cylinder... + Criar cilindro ... + + + Create a Cylinder + Criar um cilindro + + + + CmdPartSphere + + + Create a sphere solid + Criar uma esfera sólida + + + Part + Part + + + Sphere + Esfera + + + + CmdPartSweep + + + Part + Part + + + Sweep... + Varra... + + + Utility to sweep + Utilitário de varredura + + + + CmdPartTorus + + + Create a torus solid + Criar um toro sólido + + + Part + Part + + + Torus + Toro + + + + DlgExtrusion + + Select a shape for extrusion, first. + Selecione uma forma de extrusão primeiro. + + + The document '%1' doesn't exist. + O documento '%1' não existe. + + + + DlgRevolution + + Select a shape for revolution, first. + Selecione uma forma de revolução primeiro. + + + + DlgSettings3DViewPart + + Deviation + Desvio + + + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Definir um desvio muito pequeno faz a paginação tomar muito tempo e a interface ficar mais lento ou até congelar. + + + + PartGui::CrossSections + + + Cross sections + Secções transversais + + + Guiding plane + Plano guia + + + XY + XY + + + XZ + XZ + + + YZ + YZ + + + Position: + Posição: + + + Sections + Seções + + + On both sides + Em ambos os lados + + + Count + Quantidade + + + Distance: + Distância: + + + + PartGui::DlgBooleanOperation + + + Boolean Operation + Operação Booleana + + + Second shape + Segunda forma + + + First shape + Primeira forma + + + Boolean operation + Operação Booleana + + + Section + Seção + + + Difference + Diferença + + + Union + União + + + Intersection + Intersecção + + + + Cannot perform a boolean operation with the same shape + Não é possível executar uma operação booleana com a mesma forma + + + + Solids + Sólidos + + + Shells + Cascas + + + Compounds + Compostos + + + Faces + Faces + + + Swap selection + Trocar seleção + + + + Select a shape on the left side, first + Selecione uma forma do lado esquerdo, primeiro + + + Select a shape on the right side, first + Selecione uma forma no lado direito, primeiro + + + No active document available + Nenhum documento ativo disponível + + + One of the selected objects doesn't exist anymore + Um dos objetos selecionados não existe mais + + + Performing union on non-solids is not possible + Não é possível executar união em objetos não solidos + + + Performing intersection on non-solids is not possible + Não é possível executar interseção em não sólidos + + + Performing difference on non-solids is not possible + Não é possível executar diferença em não-sólidos + + + + PartGui::DlgChamferEdges + + + Chamfer Edges + Chanfrar arestas + + + + PartGui::DlgExtrusion + + + Extrude + Extrusão + + + Direction + Direção + + + Along normal + Ao longo da normal + + + Length: + Comprimento: + + + 3D view + Vista 3D + + + Note:This option works for planes only + Nota: Esta opção funciona somente com planos + + + Create solid + Criar um sólido + + + Taper outward angle + Ângulo de conicidade externo + + + Shape + Forma + + + + + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + + Select a shape for extrusion, first. + Selecione uma forma de extrusão primeiro. + + + The document '%1' doesn't exist. + O documento '%1' não existe. + + + + PartGui::DlgFilletEdges + + + Fillet Edges + Filete em arestas + + + Fillet Parameter + Parâmetro do filete + + + Radius: + Raio: + + + Fillet type: + Tipo de filete: + + + Constant Radius + Raio constante + + + Variable Radius + Raio variável + + + Shape + Forma + + + Selected shape: + Forma selecionada: + + + No selection + Nenhuma seleção + + + + Edges to fillet + Arestas a filetar + + + Start radius + Raio inicial + + + End radius + Raio final + + + Radius + Raio + + + No edge selected + Nenhuma aresta selecionada + + + No edge entity is checked to fillet. +Please check one or more edge entities first. + Nenhuma aresta está marcada para fazer um filete. +Selecione uma ou mais arestas primeiro. + + + + All + Todos + + + None + Nenhum + + + + Edge%1 + Aresta %1 + + + No shape selected + Nenhuma forma selecionada + + + No valid shape is selected. +Please select a valid shape in the drop-down box first. + Nenhuma forma válida é selecionada. Selecione primeiro uma forma válida na caixa drop-down. + + + + PartGui::DlgPartBox + + + Box definition + Definição de caixa + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + Cancel + Cancelar + + + OK + OK + + + Size: + Tamanho: + + + Height: + Altura: + + + Width: + Largura: + + + Length: + Comprimento: + + + Position: + Posição: + + + Direction: + Direção: + + + + PartGui::DlgPartCylinder + + + Cylinder definition + Definição de cilindro + + + Parameter + Parâmetro + + + Height: + Altura: + + + Radius: + Raio: + + + Position: + Posição: + + + Direction: + Direção: + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + OK + OK + + + Cancel + Cancelar + + + + PartGui::DlgPartImportIges + + + IGES input file + Arquivo de entrada IGES + + + ... + ... + + + Cancel + Cancelar + + + OK + OK + + + File Name + Nome do arquivo + + + + + + + + PartGui::DlgPartImportIgesImp + + + IGES (*.igs *.iges);;All Files (*.*) + IGES (*.igs *.iges);; Todos os arquivos (*.*) + + + + PartGui::DlgPartImportStep + + + ... + ... + + + Cancel + Cancelar + + + OK + OK + + + Step input file + Arquivo de entrada STEP + + + File Name + Nome do arquivo + + + + + + + + PartGui::DlgPartImportStepImp + + + STEP (*.stp *.step);;All Files (*.*) + STEP (*.stp *.step);; Todos os arquivos (*.*) + + + + PartGui::DlgPrimitives + + + Geometric Primitives + Primitivas geométricas + + + Primitive + Primitiva + + + X min + X min + + + x max + x max + + + Y min + Y min + + + Y max + Y max + + + Z min + Z min + + + Z max + Z max + + + X2 min + X2 min + + + X2 max + X2 max + + + Z2 min + Z2 min + + + Z2 max + Z2 max + + + Angle - 0 for cyl + Ângulo - 0 para cyl + + + Angle0 + Ângulo0 + + + Angle1 + Ângulo1 + + + X Axis Value: + Valor do eixo X: + + + Y Axis Value: + Valor do eixo Y: + + + Z Axis Value: + Valor do eixo Z: + + + Wedge + Cunha + + + Circle + Círculo + + + Vertex + Vértice + + + Position + Posição + + + Z: + Z: + + + X: + X: + + + Direction: + Direção: + + + Y: + Y: + + + Plane + Plano + + + Box + Caixa + + + Cylinder + Cilindro + + + Cone + Cone + + + Sphere + Esfera + + + Ellipsoid + Elipsóide + + + Torus + Toro + + + Ellipse + Elipse + + + Point + Ponto + + + Line + Linha + + + Parameter + Parâmetro + + + Width: + Largura: + + + Length: + Comprimento: + + + Height: + Altura: + + + Angle: + Ângulo: + + + Radius: + Raio: + + + Radius 1: + Raio 1: + + + Radius 2: + Raio 2: + + + U parametric: + U paramétrico: + + + V parametric: + V paramétrico: + + + X min/max: + X min/max: + + + Y min/max: + Y min/max: + + + Z min/max: + Z min/max: + + + X2 min/max: + X2 min/max: + + + Z2 min/max: + Z2 min/max: + + + Coordinate system: + Sistema de coordenadas: + + + Right-handed + Destro + + + Left-handed + Canhoto + + + Angle 1: + Ângulo 1: + + + Angle 2: + Ângulo 2: + + + From three points + A partir de três pontos + + + Major radius: + Raio maior: + + + Minor radius: + Raio menor: + + + End point + Ponto final + + + Start point + Ponto inicial + + + + &Create + &Criar + + + Alt+C + Alt + C + + + Cl&ose + &Fechar + + + Alt+O + Alt+F + + + Create %1 + Criar %1 + + + No active document + Nenhum documento ativo + + + + Pitch: + Altura: + + + Helix + Hélice + + + 3D View + Vista 3D + + + + PartGui::DlgRevolution + + + Revolve + Revolver + + + Y: + Y: + + + X: + X: + + + Angle: + Ângulo: + + + Z: + Z: + + + Axis: + Eixo: + + + Shape + Forma + + + Select line in 3D view + Selecione uma linha na vista 3D + + + + Select a shape for revolution, first. + Selecione uma forma de revolução primeiro. + + + + PartGui::DlgSettings3DViewPart + + + View accuracy / Performance + Precisão da vista / Desempenho + + + View smoothing + Alisamento de vista + + + Using high-quality normals + Usar normais de alta qualidade + + + This will slow down render speed but will lead to nicer results + Isto irá reduzir a velocidade da renderização, mas vai levar a resultados melhores + + + Defines the appearance of surfaces + Define a aparência das superfícies + + + Shape view + Modo de exibição de formas + + + Tessellation + Paginação + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Flat shading usa normais definidas por vertex, dando uma aparência não realística das curvas, enquanto phong shading da uma aparência melhor </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Se esta opção estiver marcada, o flat shading será usado, senão será usado o phong shading.</p></body></html> + + + Do not define normal per vertex + Não definir normais por vertex + + + Defines the deviation of tessellation to the actual surface + Define o desvio de mosaico em relação a superfície real + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <span style=" font-weight:600;">Mosaico</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"> <span style=" font-weight:400;">Define o desvio máximo da malha mosaico em relação a superfície. O menor o valor, menor será a velocidade e melhor a aparência.</span> </p></body></html> + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-weight:600;">Sugestão</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> Definir as normais por vértice é também chamado <span style=" font-style:italic;">sombreamento Phong</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"> <span style=" font-style:normal;">enquanto define as normais por face é chamado de</span> sombreamento <span style=" font-style:normal;">plano.</span> </p></body></html> + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <span style=" font-weight:600;">Alta qualidade normais</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Isto irá reduzir a velocidade da renderização, mas vai levar a resultados melhores. </p></body></html> + + + Maximum deviation depending on the model bounding box + Desvio máximo dependendo da caixa de volume + + + % + % + + + + Deviation + Desvio + + + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Definir um desvio muito pequeno faz a paginação tomar muito tempo e a interface ficar mais lento ou até congelar. + + + + PartGui::DlgSettingsGeneral + + + General + Geral + + + Export + Exportação + + + Millimeter + Milímetro + + + Meter + Metro + + + Inch + Polegada + + + Units for export of STEP/IGES + Unidades para a exportação no formato STEP / IGES + + + Model settings + Configurações de modelo + + + Automatically refine model after boolean operation + Refinar os modelos automaticamente após uma operação booleana + + + Automatically check model after boolean operation + Verificar os modelos automaticamente após uma operação booleana + + + + PartGui::FaceColors + + + Face colors + Cor de faces + + + Do you really want to cancel? + Deseja realmente cancelar? + + + + PartGui::Location + + + Location + Localização + + + Position + Posição + + + 3D View + Vista 3D + + + + PartGui::LoftWidget + + + Vertex/Wire + Vértice/arame + + + Loft + Loft + + + Too few elements + Muito poucos elementos + + + At least two vertices, edges or wires are required. + Pelo menos dois vértices, arestas ou arames são necessários. + + + At least two vertices or wires are required. + Pelo menos dois vértices ou arames são necessários. + + + + PartGui::Mirroring + + + Mirroring + Espelho + + + Shapes + Formas + + + Mirror plane: + Plano de espelho: + + + XY plane + Plano XY + + + XZ plane + Plano XZ + + + YZ plane + Plano YZ + + + Base point: + Ponto de base: + + + x + x + + + y + y + + + z + z + + + + Select a shape for mirroring, first. + Selecione uma forma para espelhar primeiro. + + + No such document '%1'. + Não há tal documento '%1'. + + + + PartGui::ShapeBuilderWidget + + + Wrong selection + Seleção errada + + + Select two vertices + Selecione dois vértices + + + Select three or more edges + Selecione três ou mais arestas + + + Select one or more edges + Selecione uma ou mais arestas + + + Select two or more faces + Selecione duas ou mais faces + + + Select only one part object + Selecione apenas um objeto parte + + + Select two vertices to create an edge + Selecione dois vértices para criar uma aresta + + + Select a closed set of edges + Selecionar um conjunto fechado de arestas + + + Select adjacent faces + Selecione faces adjacentes + + + All shape types can be selected + Todos os tipos de formas podem ser selecionados + + + + PartGui::SweepWidget + + + Vertex/Wire + Vértice/arame + + + Sweep + Varredura + + + Sweep path + Caminho de varredura + + + Select an edge or wire you want to sweep along. + Selecione uma aresta ou arame ao longo do qual deseja fazer uma varredura. + + + Too few elements + Muito poucos elementos + + + At least one edge or wire is required. + É necessário pelo menos uma aresta ou arame. + + + + PartGui::TaskDialogEditDynamic + + Hint + Dica + + + Select Control. + Selecione o controle. + + + Control + Controle + + + Dynamic + Dinâmico + + + Align + Alinhar + + + Value + Valor + + + Special + Especial + + + Command + Comando + + + Stretch + Extender + + + Move + Mover + + + Rotate + Rotacionar + + + Offset + Offset + + + Orient + Orientar + + + Match + Combinar + + + Surround + Cercar + + + dummy + dummy + + + X Axis + Eixo X + + + Y Axis + Eixo Y + + + Z Axis + Eixo Z + + + Increment + Incremento + + + .125 + .125 + + + .500 + .500 + + + 1.000 + 1.000 + + + 5.000 + 5.000 + + + 10.000 + 10.000 + + + Drag arrows to stretch box by increment + Arraste as setas para esticar a caixa por incremento + + + Drag arrows to move box by increment + Arraste as setas para deslocar a caixa por incremento + + + Not implemented yet + Ainda não foi implementado + + + Drag arrows to offset checked axes by increment + Arraste as setas para deslocar os eixos marcados por incremento + + + Select dragger for stretch by align + Selecione o arrastador para esticar por alinhamento + + + Select dragger for move by align + Selecione o arrastador para deslocar por alinhamento + + + Select dragger for stretch by value + Selecione o arrastador para esticar por valor + + + Select dragger for move by value + Selecione o arrastador para deslocar por valor + + + 1.0 + 1.0 + + + Enter Value + Inserir um valor + + + Select box to match + Selecione uma caixa para combinar + + + Select a point + Selecione um ponto + + + 0.0 + 0.0 + + + Select dragger to align + Selecione o arrastador para alinhar + + + Select dragger to modify + Selecione o arrastador para modificar + + + + PartGui::TaskFaceColors + + + Set color per face + Definir cores por face + + + Click on the faces in the 3d view to select them. + Clique nas faces desejadas na vista 3D para selecioná-las. + + + Faces: + Faces: + + + Set to default + Definir como padrão + + + + PartGui::TaskLoft + + + Loft + Loft + + + Vertex/Wire + Vértice/arame + + + Move right + Mover para a direita + + + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Move o item selecionado um nível abaixo.</b> <p> Isso também irá alterar o nível do item pai. </p> + + + Move left + Mover para a esquerda + + + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Mover o item selecionado um nível acima.</b> <p> Isso também irá alterar o nível do item pai. </p> + + + Move up + Mover para cima + + + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Move o item selecionado para cima.</b> <p> O item será movido dentro do nível de hierarquia. </p> + + + Move down + Move para baixo + + + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Move o item selecionado para baixo.</b> <p> O item será movido dentro do nível de hierarquia. </p> + + + Create solid + Criar um sólido + + + Ruled surface + Superfície regrada + + + + PartGui::TaskShapeBuilder + + + Create shape + Criar uma forma + + + Edge from vertices + Uma aresta a partir de vértices + + + Face from edges + Uma face a partir de arestas + + + Planar + Planar + + + Shell from faces + Uma casca a partir de faces + + + Solid from shell + Um sólido a partir de uma casca + + + Create + Criar + + + All faces + Todas as faces + + + + PartGui::TaskSweep + + + Sweep + Varredura + + + Create solid + Criar um sólido + + + Frenet + Frenet + + + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. + Selecione um ou mais perfis e selecione também uma aresta ou arame na vista 3D para o caminho de varredura. + + + + QObject + + + Wrong selection + Seleção errada + + + Select two shapes please. + Selecione duas formas, por favor. + + + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + Todos os arquivos CAD (*.stp *.step *.igs *.iges *.brp *.brep) + + + STEP (*.stp *.step) + STEP (*.stp *.step) + + + IGES (*.igs *.iges) + IGES (*.igs *.iges) + + + BREP (*.brp *.brep) + BREP (*.brp *.brep) + + + All Files (*.*) + Todos os arquivos (*.*) + + + + Sewing Tolerance + Tolerância de costura + + + Enter tolerance for sewing shape: + Digite a tolerância para costura de forma: + + + + Edit mirror plane + Editar o plano de espelho + + + Edit chamfer edges + Editar as arestas do chanfro + + + Transform + Transformar + + + + Part design + Design de partes + + + + Select two shapes or more, please. + Selecione dois ou mais formas, por favor. + + + You have to select either two edges or two wires. + Você deve selecionar duas arestas ou dois cabos. + + + + Edit fillet edges + Modificar arestas filetadas + + + + Set colors... + Definir cores... + + + + Workbench + + + &Part + &Part + + + &Simple + &Simples + + + &Parametric + &Paramétrico + + + Part tools + Ferramentas de parte + + + Solids + Sólidos + + + Boolean + Booleanas + + + diff --git a/src/Mod/Part/Gui/Resources/translations/Part_pt.qm b/src/Mod/Part/Gui/Resources/translations/Part_pt.qm deleted file mode 100644 index 248eec47b..000000000 Binary files a/src/Mod/Part/Gui/Resources/translations/Part_pt.qm and /dev/null differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_pt.ts b/src/Mod/Part/Gui/Resources/translations/Part_pt.ts deleted file mode 100644 index 0fbb7f43c..000000000 --- a/src/Mod/Part/Gui/Resources/translations/Part_pt.ts +++ /dev/null @@ -1,2521 +0,0 @@ - - - - - BlockDefinition - - - Block definition - Definição de bloco - - - - First limit - Primeiro limite - - - - - Type: - Tipo: - - - - - mm - mm - - - - - Length: - Comprimento: - - - - - Dimension - Dimensão - - - - - Up to next - Até o próximo - - - - - Up to last - Até o último - - - - - Up to plane - Até ao plano - - - - - Up to face - Até a face - - - - - Limit: - Limite: - - - - - - - No selection - Sem seleção - - - - Profile - Perfil - - - - Selection: - Seleção: - - - - Reverse - Inverter - - - - Both sides - Ambos os lados - - - - Second limit - Segundo limite - - - - Direction - Direção - - - - Perpendicular to sketch - Perpendicular ao esboço - - - - Reference - Referência - - - - Apply - Aplicar - - - - Cancel - Cancelar - - - - OK - OK - - - - CmdPartBoolean - - - Part - Part - - - - Boolean... - Booleanas... - - - - Run a boolean operation with two shapes selected - Executar uma operação booleana com duas formas selecionadas - - - - CmdPartBox - - - Part - Part - - - - Box - Caixa - - - - Create a box solid - Criar uma caixa sólida - - - - CmdPartBox2 - - - Part - Part - - - - Box fix 1 - Correção de caixa 1 - - - - Create a box solid without dialog - Criar uma caixa sólida sem diálogo - - - - CmdPartBox3 - - - Part - Part - - - - Box fix 2 - Correção de caixa 2 - - - - Create a box solid without dialog - Criar uma caixa sólida sem diálogo - - - - CmdPartBuilder - - - Part - Part - - - - Shape builder... - Construtor de forma... - - - - Advanced utility to create shapes - Utilitário avançado para criar formas - - - - CmdPartChamfer - - - Part - Part - - - - Chamfer... - - - - - Chamfer the selected edges of a shape - - - - - CmdPartCommon - - - Part - Part - - - - Intersection - Intersecção - - - - Make an intersection of two shapes - Fazer uma interseção entre duas formas - - - - CmdPartCone - - - Part - Part - - - - Cone - Cone - - - - Create a cone solid - Criar um cone sólido - - - - CmdPartCrossSections - - - Part - Part - - - - Cross-sections... - Secções transversais... - - - - Cross-sections - Secções transversais - - - - CmdPartCut - - - Part - Part - - - - Cut - Recortar - - - - Make a cut of two shapes - Fazer um recorte entre duas formas - - - - CmdPartCylinder - - - Part - Part - - - - Create a Cylinder - Criar um cilindro - - - - Cylinder - Cilindro - - - - CmdPartExport - - - Part - Part - - - - Export CAD... - Exportar CAD ... - - - - Exports to a CAD file - Exporta para um arquivo CAD - - - - CmdPartExtrude - - - Part - Part - - - - Extrude... - Extrusão... - - - - Extrude a selected sketch - Extrusão de um esboço selecionado - - - - CmdPartFillet - - - Part - Part - - - - Fillet... - Filete... - - - - Fillet the selected edges of a shape - Cria um filete nas arestas selecionadas de uma forma - - - - CmdPartFuse - - - Part - Part - - - - Union - União - - - - Make a union of several shapes - Fazer uma união com várias formas - - - - CmdPartImport - - - Part - Part - - - - Imports a CAD file - Importar um arquivo CAD - - - - Import CAD... - Importar CAD... - - - - CmdPartImportCurveNet - - - Part - Part - - - - Import a curve network - Importar uma rede de curvas - - - - Import curve network... - Importar uma rede de curvas... - - - - CmdPartLoft - - - Part - Part - - - - Loft... - Loft... - - - - Utility to loft - - - - Advanced utility to lofts - Utilitário avançado para lofts - - - - CmdPartMakeSolid - - - Part - Part - - - - Convert to solid - Converter em sólido - - - - Create solid from a shell or compound - Criar sólidos a partir de uma casca ou composto - - - - CmdPartMirror - - - Part - Part - - - - Mirroring... - Espelho... - - - - Mirroring a selected shape - Espelhar uma forma selecionada - - - - CmdPartPickCurveNet - - - Part - Part - - - - Pick curve network - Selecione uma rede de curvas - - - - Pick a curve network - Selecione uma rede de curvas - - - - CmdPartPrimitives - - - Part - Part - - - - Create primitives... - Criar primitivas... - - - - Creation of parametrized geometric primitives - Criação de primitivas geométricas paramétricas - - - - CmdPartRefineShape - - - Part - Part - - - - Refine shape - - - - - Refine the copy of a shape - - - - - CmdPartReverseShape - - - Part - Part - - - - Reverse shapes - Inverter formas - - - - Reverse orientation of shapes - Inverter a orientação de formas - - - - CmdPartRevolve - - - Part - Part - - - - Revolve... - Revolver... - - - - Revolve a selected shape - Revolve uma forma selecionada - - - - CmdPartRuledSurface - - - Part - Part - - - - Create ruled surface - Criar superfície regrada - - - - Create a ruled surface from two curves - Criar uma superfície regrada a partir de duas curvas - - - - CmdPartSection - - - Make a section of two shapes - Fazer uma seção com duas formas - - - - Part - Part - - - - Section - Seção - - - - CmdPartShapeFromMesh - - - Part - Part - - - - Create shape from mesh... - Criar uma forma a partir de uma malha... - - - - Create shape from selected mesh object - Cria uma forma a partir de uma malha selecionada - - - - CmdPartSimpleCopy - - - Part - Part - - - - Create simple copy - Criar uma cópia simple - - - - Create a simple non-parametric copy - Criar uma cópia simples não-paramétrica - - - - CmdPartSimpleCylinder - - - Part - Part - - - - Create Cylinder... - Criar cilindro ... - - - - Create a Cylinder - Criar um cilindro - - - - CmdPartSphere - - - Create a sphere solid - Criar uma esfera sólida - - - - Part - Part - - - - Sphere - Esfera - - - - CmdPartSweep - - - Part - Part - - - - Sweep... - - - - - Utility to sweep - - - - - CmdPartTorus - - - Create a torus solid - Criar um toro sólido - - - - Part - Part - - - - Torus - Toro - - - - DlgExtrusion - - Select a shape for extrusion, first. - Selecione uma forma de extrusão primeiro. - - - The document '%1' doesn't exist. - O documento '%1' não existe. - - - - DlgRevolution - - Select a shape for revolution, first. - Selecione uma forma de revolução primeiro. - - - - DlgSettings3DViewPart - - Deviation - Desvio - - - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Definir um desvio muito pequeno faz a paginação tomar muito tempo e a interface ficar mais lento ou até congelar. - - - - PartGui::CrossSections - - - Cross sections - Secções transversais - - - - Guiding plane - Plano guia - - - - XY - XY - - - - XZ - XZ - - - - YZ - YZ - - - - Position: - Posição: - - - - Sections - Seções - - - - On both sides - Em ambos os lados - - - - Count - Quantidade - - - - Distance: - Distância: - - - - PartGui::DlgBooleanOperation - - - Boolean Operation - Operação Booleana - - - - Second shape - Segunda forma - - - - First shape - Primeira forma - - - - Boolean operation - Operação Booleana - - - - Section - Seção - - - - Difference - Diferença - - - - Union - União - - - - Intersection - Intersecção - - - - Cannot perform a boolean operation with the same shape - Não é possível executar uma operação booleana com a mesma forma - - - - - Solids - Sólidos - - - - - Shells - Cascas - - - - - Compounds - Compostos - - - - - Faces - Faces - - - - Swap selection - Trocar seleção - - - - Select a shape on the left side, first - Selecione uma forma do lado esquerdo, primeiro - - - - Select a shape on the right side, first - Selecione uma forma no lado direito, primeiro - - - - No active document available - Nenhum documento ativo disponível - - - - One of the selected objects doesn't exist anymore - Um dos objetos selecionados não existe mais - - - - Performing union on non-solids is not possible - Não é possível executar união em objetos não solidos - - - - Performing intersection on non-solids is not possible - Não é possível executar interseção em não sólidos - - - - Performing difference on non-solids is not possible - Não é possível executar diferença em não-sólidos - - - - PartGui::DlgChamferEdges - - - Chamfer Edges - - - - - PartGui::DlgExtrusion - - - Extrude - Extrusão - - - - Direction - Direção - - - - Along normal - Ao longo da normal - - - - Length: - Comprimento: - - - - 3D view - Vista 3D - - - - Note:This option works for planes only - Nota: Esta opção funciona somente com planos - - - - Create solid - Criar um sólido - - - - Taper outward angle - - - - - Shape - Forma - - - - - - - - X: - X: - - - - Z: - Z: - - - - Y: - Y: - - - - Select a shape for extrusion, first. - Selecione uma forma de extrusão primeiro. - - - - The document '%1' doesn't exist. - O documento '%1' não existe. - - - - PartGui::DlgFilletEdges - - - Fillet Edges - Filete em arestas - - - - Fillet Parameter - Parâmetro do filete - - - - Radius: - Raio: - - - - Fillet type: - Tipo de filete: - - - - Constant Radius - Raio constante - - - - Variable Radius - Raio variável - - - - Shape - Forma - - - - Selected shape: - Forma selecionada: - - - - No selection - Sem seleção - - - - Edges to fillet - Arestas a filetar - - - - - Start radius - Raio inicial - - - - End radius - Raio final - - - - Radius - Raio - - - - No edge selected - Nenhuma aresta selecionada - - - - No edge entity is checked to fillet. -Please check one or more edge entities first. - Nenhuma aresta está marcada para fazer um filete. -Selecione uma ou mais arestas primeiro. - - - - All - Todos - - - - None - Nenhum - - - - - Edge%1 - Aresta %1 - - - - No shape selected - Nenhuma forma selecionada - - - - No valid shape is selected. -Please select a valid shape in the drop-down box first. - Nenhuma forma válida é selecionada. Selecione primeiro uma forma válida na caixa drop-down. - - - - PartGui::DlgPartBox - - - Box definition - Definição de caixa - - - - X: - X: - - - - Z: - Z: - - - - Y: - Y: - - - - Cancel - Cancelar - - - - OK - OK - - - - Size: - Tamanho: - - - - Height: - Altura: - - - - Width: - Largura: - - - - Length: - Comprimento: - - - - Position: - Posição: - - - - Direction: - Direção: - - - - PartGui::DlgPartCylinder - - - Cylinder definition - Definição de cilindro - - - - Parameter - Parâmetro - - - - Height: - Altura: - - - - Radius: - Raio: - - - - Position: - Posição: - - - - Direction: - Direção: - - - - X: - X: - - - - Z: - Z: - - - - Y: - Y: - - - - OK - OK - - - - Cancel - Cancelar - - - - PartGui::DlgPartImportIges - - - IGES input file - Arquivo de entrada IGES - - - - ... - ... - - - - Cancel - Cancelar - - - - OK - OK - - - - File Name - Nome do arquivo - - - - - - - - PartGui::DlgPartImportIgesImp - - - IGES (*.igs *.iges);;All Files (*.*) - IGES (*.igs *.iges);; Todos os arquivos (*.*) - - - - PartGui::DlgPartImportStep - - - ... - ... - - - - Cancel - Cancelar - - - - OK - OK - - - - Step input file - Arquivo de entrada STEP - - - - File Name - Nome do arquivo - - - - - - - - PartGui::DlgPartImportStepImp - - - STEP (*.stp *.step);;All Files (*.*) - STEP (*.stp *.step);; Todos os arquivos (*.*) - - - - PartGui::DlgPrimitives - - - Geometric Primitives - Primitivas geométricas - - - Primitive - Primitiva - - - X min - X min - - - x max - x max - - - Y min - Y min - - - Y max - Y max - - - Z min - Z min - - - Z max - Z max - - - X2 min - X2 min - - - X2 max - X2 max - - - Z2 min - Z2 min - - - Z2 max - Z2 max - - - Angle - 0 for cyl - Ângulo - 0 para cyl - - - Angle0 - Ângulo0 - - - Angle1 - Ângulo1 - - - X Axis Value: - Valor do eixo X: - - - Y Axis Value: - Valor do eixo Y: - - - Z Axis Value: - Valor do eixo Z: - - - - Wedge - Cunha - - - - Circle - Círculo - - - Vertex - Vértice - - - Position - Posição - - - - - - Z: - Z: - - - - - - X: - X: - - - Direction: - Direção: - - - - - - Y: - Y: - - - - Plane - Plano - - - - Box - Caixa - - - - Cylinder - Cilindro - - - - Cone - Cone - - - - Sphere - Esfera - - - - Ellipsoid - Elipsóide - - - - Torus - Toro - - - - Ellipse - - - - - Point - - - - - Line - - - - - Parameter - Parâmetro - - - - - Width: - Largura: - - - - - Length: - Comprimento: - - - - - - - Height: - Altura: - - - - - - Angle: - Ângulo: - - - - - - - Radius: - Raio: - - - - - - Radius 1: - Raio 1: - - - - - - Radius 2: - Raio 2: - - - - - - U parametric: - U paramétrico: - - - - - - V parametric: - V paramétrico: - - - - X min/max: - - - - - Y min/max: - - - - - Z min/max: - - - - - X2 min/max: - - - - - Z2 min/max: - - - - - Coordinate system: - - - - - Right-handed - - - - - Left-handed - - - - - - Angle 1: - - - - - - Angle 2: - - - - - From three points - - - - - Major radius: - - - - - Minor radius: - - - - - End point - - - - - Start point - - - - - &Create - &Criar - - - Alt+C - Alt + C - - - Cl&ose - &Fechar - - - Alt+O - Alt + F - - - - - - Create %1 - Criar %1 - - - - No active document - Nenhum documento ativo - - - - Pitch: - Inclinação: - - - - Helix - Hélice - - - 3D View - Vista 3D - - - - PartGui::DlgRevolution - - - Revolve - Revolver - - - - Y: - Y: - - - - X: - X: - - - - Angle: - Ângulo: - - - - Z: - Z: - - - - Axis: - Eixo: - - - - Shape - Forma - - - - Select line in 3D view - - - - - Select a shape for revolution, first. - Selecione uma forma de revolução primeiro. - - - - PartGui::DlgSettings3DViewPart - - - View accuracy / Performance - Precisão da vista / Desempenho - - - - View smoothing - Alisamento de vista - - - - Using high-quality normals - Usar normais de alta qualidade - - - - This will slow down render speed but will lead to nicer results - Isto irá reduzir a velocidade da renderização, mas vai levar a resultados melhores - - - - Defines the appearance of surfaces - Define a aparência das superfícies - - - - Shape view - Modo de exibição de formas - - - - Tessellation - Mosaico - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Flat shading usa normais definidas por vertex, dando uma aparência não realística das curvas, enquanto phong shading da uma aparência melhor </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Se esta opção estiver marcada, o flat shading será usado, senão será usado o phong shading.</p></body></html> - - - - Do not define normal per vertex - Não definir normais por vertex - - - - Defines the deviation of tessellation to the actual surface - Define o desvio de mosaico em relação a superfície real - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <span style=" font-weight:600;">Mosaico</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"> <span style=" font-weight:400;">Define o desvio máximo da malha mosaico em relação a superfície. O menor o valor, menor será a velocidade e melhor a aparência.</span> </p></body></html> - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head> <body style="white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style="font-weight:600;"> Dica</span></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt;"> definir os normals por vértice é também chamado de <span style="font-style:italic;"> sombreamento de Phong (phong shading)</span></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"> sombreamento simples <span style="font-style:normal;"> enquanto definir os normals por face é chamado</span> sombreamento plano (flat shading)<span style="font-style:normal;">.</span></p></body></html> - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <span style=" font-weight:600;">Alta qualidade normais</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Isto irá reduzir a velocidade da renderização, mas vai levar a resultados melhores. </p></body></html> - - - - Maximum deviation depending on the model bounding box - Desvio máximo dependendo da caixa de volume - - - - % - % - - - - Deviation - Desvio - - - - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Definir um desvio muito pequeno faz a paginação tomar muito tempo e a interface ficar mais lento ou até congelar. - - - - PartGui::DlgSettingsGeneral - - - General - Geral - - - - Export - Exportação - - - - Millimeter - Milímetro - - - - Meter - Metro - - - - Inch - Polegada - - - - Units for export of STEP/IGES - Unidades para a exportação no formato STEP / IGES - - - - Model settings - - - - - Automatically refine model after boolean operation - - - - - Automatically check model after boolean operation - - - - - PartGui::FaceColors - - - Face colors - - - - - Do you really want to cancel? - - - - - PartGui::Location - - - Location - - - - - Position - Posição - - - - 3D View - Vista 3D - - - - PartGui::LoftWidget - - - - Vertex/Wire - Vértice/arame - - - - - Loft - Loft - - - - Too few elements - Muito poucos elementos - - - - At least two vertices, edges or wires are required. - - - - At least two vertices or wires are required. - Pelo menos dois vértices ou arames são necessários. - - - - PartGui::Mirroring - - - Mirroring - Espelho - - - - Shapes - Formas - - - - Mirror plane: - Plano de espelho: - - - - XY plane - Plano XY - - - - XZ plane - Plano XZ - - - - YZ plane - Plano YZ - - - - Base point: - Ponto de base: - - - - x - x - - - - y - y - - - - z - z - - - - Select a shape for mirroring, first. - Selecione uma forma para espelhar primeiro. - - - - No such document '%1'. - Não há tal documento '%1'. - - - - PartGui::ShapeBuilderWidget - - - - - - - Wrong selection - Seleção errada - - - - - Select two vertices - Selecione dois vértices - - - Select three or more edges - Selecione três ou mais arestas - - - - Select one or more edges - - - - - Select two or more faces - Selecione duas ou mais faces - - - - Select only one part object - Selecione apenas um objeto parte - - - - Select two vertices to create an edge - Selecione dois vértices para criar uma aresta - - - - Select a closed set of edges - Selecionar um conjunto fechado de arestas - - - - Select adjacent faces - Selecione faces adjacentes - - - - All shape types can be selected - Todos os tipos de formas podem ser selecionados - - - - PartGui::SweepWidget - - - - Vertex/Wire - Vértice/arame - - - - - Sweep - - - - - Sweep path - - - - - Select an edge or wire you want to sweep along. - - - - - Too few elements - Muito poucos elementos - - - - At least one edge or wire is required. - - - - - PartGui::TaskDialogEditDynamic - - Hint - Dica - - - Select Control. - Selecione o controle. - - - Control - Controle - - - Dynamic - Dinâmico - - - Align - Alinhar - - - Value - Valor - - - Special - Especial - - - Command - Comando - - - Stretch - Extender - - - Move - Mover - - - Rotate - Rotacionar - - - Offset - Offset - - - Orient - Orientar - - - Match - Combinar - - - Surround - Cercar - - - dummy - dummy - - - X Axis - Eixo X - - - Y Axis - Eixo Y - - - Z Axis - Eixo Z - - - Increment - Incremento - - - .125 - .125 - - - .500 - .500 - - - 1.000 - 1.000 - - - 5.000 - 5.000 - - - 10.000 - 10.000 - - - Drag arrows to stretch box by increment - Arraste as setas para esticar a caixa por incremento - - - Drag arrows to move box by increment - Arraste as setas para deslocar a caixa por incremento - - - Not implemented yet - Ainda não foi implementado - - - Drag arrows to offset checked axes by increment - Arraste as setas para deslocar os eixos marcados por incremento - - - Select dragger for stretch by align - Selecione o arrastador para esticar por alinhamento - - - Select dragger for move by align - Selecione o arrastador para deslocar por alinhamento - - - Select dragger for stretch by value - Selecione o arrastador para esticar por valor - - - Select dragger for move by value - Selecione o arrastador para deslocar por valor - - - 1.0 - 1.0 - - - Enter Value - Inserir um valor - - - Select box to match - Selecione uma caixa para combinar - - - Select a point - Selecione um ponto - - - 0.0 - 0.0 - - - Select dragger to align - Selecione o arrastador para alinhar - - - Select dragger to modify - Selecione o arrastador para modificar - - - - PartGui::TaskFaceColors - - - Set color per face - Definir cores por face - - - - Click on the faces in the 3d view to select them. - Clique nas faces desejadas na vista 3D para selecioná-las. - - - - Faces: - Faces: - - - - Set to default - Definir como padrão - - - - PartGui::TaskLoft - - - Loft - Loft - - - Vertex/Wire - Vértice/arame - - - Move right - Mover para a direita - - - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Move o item selecionado um nível abaixo.</b> <p> Isso também irá alterar o nível do item pai. </p> - - - Move left - Mover para a esquerda - - - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Mover o item selecionado um nível acima.</b> <p> Isso também irá alterar o nível do item pai. </p> - - - Move up - Mover para cima - - - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Move o item selecionado para cima.</b> <p> O item será movido dentro do nível de hierarquia. </p> - - - Move down - Move para baixo - - - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Move o item selecionado para baixo.</b> <p> O item será movido dentro do nível de hierarquia. </p> - - - - Create solid - Criar um sólido - - - - Ruled surface - Superfície regrada - - - - PartGui::TaskShapeBuilder - - - - Create shape - Criar uma forma - - - - Edge from vertices - Uma aresta a partir de vértices - - - - Face from edges - Uma face a partir de arestas - - - - Planar - Planar - - - - Shell from faces - Uma casca a partir de faces - - - - Solid from shell - Um sólido a partir de uma casca - - - - Create - Criar - - - - All faces - Todas as faces - - - - PartGui::TaskSweep - - - Sweep - - - - - Create solid - Criar um sólido - - - - Frenet - - - - - Select one or more profiles and select an edge or wire -in the 3D view for the sweep path. - - - - - QObject - - - - - - - Wrong selection - Seleção errada - - - - - Select two shapes please. - Selecione duas formas, por favor. - - - - - - All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) - Todos os arquivos CAD (*.stp *.step *.igs *.iges *.brp *.brep) - - - - - - STEP (*.stp *.step) - STEP (*.stp *.step) - - - - - - IGES (*.igs *.iges) - IGES (*.igs *.iges) - - - - - - BREP (*.brp *.brep) - BREP (*.brp *.brep) - - - - - - All Files (*.*) - Todos os arquivos (*.*) - - - - Sewing Tolerance - Tolerância de costura - - - - Enter tolerance for sewing shape: - Digite a tolerância para costura de forma: - - - - Edit mirror plane - Editar o plano de espelho - - - - Edit chamfer edges - - - - Transform - Transformar - - - - - Part design - Design de partes - - - - - Select two shapes or more, please. - Selecione dois ou mais formas, por favor. - - - - You have to select either two edges or two wires. - Você deve selecionar duas arestas ou dois cabos. - - - - Edit fillet edges - Modificar arestas filetadas - - - - Set colors... - Definir cores... - - - - Workbench - - - &Part - &Part - - - - &Simple - &Simples - - - - &Parametric - &Paramétrico - - - - Part tools - Ferramentas de parte - - - - Solids - Sólidos - - - - Boolean - Booleanas - - - diff --git a/src/Mod/Part/Gui/Resources/translations/Part_ro.qm b/src/Mod/Part/Gui/Resources/translations/Part_ro.qm new file mode 100644 index 000000000..8f1bd87cf Binary files /dev/null and b/src/Mod/Part/Gui/Resources/translations/Part_ro.qm differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_ro.ts b/src/Mod/Part/Gui/Resources/translations/Part_ro.ts new file mode 100644 index 000000000..ab66a2ccb --- /dev/null +++ b/src/Mod/Part/Gui/Resources/translations/Part_ro.ts @@ -0,0 +1,2128 @@ + + + + + BlockDefinition + + + Block definition + Definiția blocului + + + First limit + Prima limită + + + Type: + Tip: + + + mm + mm + + + Length: + Lungime: + + + Dimension + Dimensiune + + + Up to next + Până la următorul + + + Up to last + Până la ultimul + + + Up to plane + Până la plan + + + Up to face + Până la față + + + Limit: + Limita: + + + No selection + Nici o selecţie + + + Profile + Profil + + + Selection: + Selecţie: + + + Reverse + Invers + + + Both sides + Ambele părţi + + + Second limit + Al doua limită + + + Direction + Direcţia + + + Perpendicular to sketch + Perpendicular to sketch + + + Reference + Referinţă + + + Apply + Aplică + + + Cancel + Renunţă + + + OK + OK + + + + CmdPartBoolean + + + Part + Componentă + + + Boolean... + Boolean... + + + Run a boolean operation with two shapes selected + Executaţi o operaţiune de booleană cu două forme selectate + + + + CmdPartBox + + + Part + Componentă + + + Box + Box + + + Create a box solid + Create a box solid + + + + CmdPartBox2 + + + Part + Componentă + + + Box fix 1 + Box fix 1 + + + Create a box solid without dialog + Create a box solid without dialog + + + + CmdPartBox3 + + Part + Componentă + + + Box fix 2 + Box fix 2 + + + Create a box solid without dialog + Create a box solid without dialog + + + + CmdPartBuilder + + Part + Componentă + + + Shape builder... + Shape builder... + + + Advanced utility to create shapes + Advanced utility to create shapes + + + + CmdPartChamfer + + Part + Componentă + + + Chamfer... + Chamfer... + + + Chamfer the selected edges of a shape + Definiţi teşirea muchiilor selectate ale formei + + + + CmdPartCommon + + Part + Componentă + + + Intersection + Intersecţie + + + Make an intersection of two shapes + Make an intersection of two shapes + + + + CmdPartCone + + + Part + Componentă + + + Cone + Cone + + + Create a cone solid + Create a cone solid + + + + CmdPartCrossSections + + + Part + Componentă + + + Cross-sections... + Cross-sections... + + + Cross-sections + Cross-sections + + + + CmdPartCut + + Part + Componentă + + + Cut + Scădere + + + Make a cut of two shapes + Make a cut of two shapes + + + + CmdPartCylinder + + + Part + Componentă + + + Create a Cylinder + Creaţi un Cilindru + + + Cylinder + Cylinder + + + + CmdPartExport + + + Part + Componentă + + + Export CAD... + Export CAD... + + + Exports to a CAD file + Exports to a CAD file + + + + CmdPartExtrude + + Part + Componentă + + + Extrude... + Extrudare... + + + Extrude a selected sketch + Extrudați o schiță selectată + + + + CmdPartFillet + + Part + Componentă + + + Fillet... + Rotunjire... + + + Fillet the selected edges of a shape + Rotunjiți marginile selectate ale unei forme + + + + CmdPartFuse + + Part + Componentă + + + Union + Reuniune + + + Make a union of several shapes + Make a union of several shapes + + + + CmdPartImport + + Part + Componentă + + + Imports a CAD file + Importați un fişier CAD + + + Import CAD... + Import CAD... + + + + CmdPartImportCurveNet + + Part + Componentă + + + Import a curve network + Importați o rețea de curbe + + + Import curve network... + Import o rețea de curbe... + + + + CmdPartLoft + + Part + Componentă + + + Loft... + Loft... + + + Utility to loft + Utility to loft + + + Advanced utility to lofts + Advanced utility to lofts + + + + CmdPartMakeSolid + + Part + Componentă + + + Convert to solid + Convert to solid + + + Create solid from a shell or compound + Create solid from a shell or compound + + + + CmdPartMirror + + Part + Componentă + + + Mirroring... + Mirroring... + + + Mirroring a selected shape + Mirroring a selected shape + + + + CmdPartPickCurveNet + + Part + Componentă + + + Pick curve network + Alegeți reţeaua de curbe + + + Pick a curve network + Alegeți o reţea de curbe + + + + CmdPartPrimitives + + Part + Componentă + + + Create primitives... + Creaţi primitive... + + + Creation of parametrized geometric primitives + Crearea de pprimitive geometrice parametrizate + + + + CmdPartRefineShape + + + Part + Componentă + + + Refine shape + Refine shape + + + Refine the copy of a shape + Refine the copy of a shape + + + + CmdPartReverseShape + + + Part + Componentă + + + Reverse shapes + Reverse shapes + + + Reverse orientation of shapes + Reverse orientation of shapes + + + + CmdPartRevolve + + Part + Componentă + + + Revolve... + Revolve... + + + Revolve a selected shape + Revolve a selected shape + + + + CmdPartRuledSurface + + Part + Componentă + + + Create ruled surface + Create ruled surface + + + Create a ruled surface from two curves + Create a ruled surface from two curves + + + + CmdPartSection + + Make a section of two shapes + Make a section of two shapes + + + Part + Componentă + + + Section + Secţiune + + + + CmdPartShapeFromMesh + + + Part + Componentă + + + Create shape from mesh... + Create shape from mesh... + + + Create shape from selected mesh object + Create shape from selected mesh object + + + + CmdPartSimpleCopy + + Part + Componentă + + + Create simple copy + Create simple copy + + + Create a simple non-parametric copy + Create a simple non-parametric copy + + + + CmdPartSimpleCylinder + + Part + Componentă + + + Create Cylinder... + Creaţi cilindru... + + + Create a Cylinder + Creaţi un Cilindru + + + + CmdPartSphere + + + Create a sphere solid + Create a sphere solid + + + Part + Componentă + + + Sphere + Sphere + + + + CmdPartSweep + + + Part + Componentă + + + Sweep... + Sweep... + + + Utility to sweep + Utility to sweep + + + + CmdPartTorus + + + Create a torus solid + Create a torus solid + + + Part + Componentă + + + Torus + Torus + + + + DlgExtrusion + + Select a shape for extrusion, first. + Select a shape for extrusion, first. + + + The document '%1' doesn't exist. + The document '%1' doesn't exist. + + + + DlgRevolution + + Select a shape for revolution, first. + Select a shape for revolution, first. + + + + DlgSettings3DViewPart + + Deviation + Deviation + + + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + + + + PartGui::CrossSections + + + Cross sections + Cross sections + + + Guiding plane + Guiding plane + + + XY + XY + + + XZ + XZ + + + YZ + YZ + + + Position: + Position: + + + Sections + Sections + + + On both sides + On both sides + + + Count + Count + + + Distance: + Distance: + + + + PartGui::DlgBooleanOperation + + + Boolean Operation + Operație booleană + + + Second shape + A doua formă + + + First shape + Prima formă + + + Boolean operation + Operație booleană + + + Section + Secţiune + + + Difference + Diferenţa + + + Union + Reuniune + + + Intersection + Intersecţie + + + + Cannot perform a boolean operation with the same shape + Cannot perform a boolean operation with the same shape + + + + Solids + Solide + + + Shells + Shells + + + Compounds + Compounds + + + Faces + Faces + + + Swap selection + Swap selection + + + + Select a shape on the left side, first + Select a shape on the left side, first + + + Select a shape on the right side, first + Select a shape on the right side, first + + + No active document available + No active document available + + + One of the selected objects doesn't exist anymore + One of the selected objects doesn't exist anymore + + + Performing union on non-solids is not possible + Performing union on non-solids is not possible + + + Performing intersection on non-solids is not possible + Performing intersection on non-solids is not possible + + + Performing difference on non-solids is not possible + Performing difference on non-solids is not possible + + + + PartGui::DlgChamferEdges + + + Chamfer Edges + Chamfer Edges + + + + PartGui::DlgExtrusion + + + Extrude + Extrude + + + Direction + Direcţia + + + Along normal + Along normal + + + Length: + Lungime: + + + 3D view + 3D view + + + Note:This option works for planes only + Note:This option works for planes only + + + Create solid + Create solid + + + Taper outward angle + Taper outward angle + + + Shape + Forma + + + + + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + + Select a shape for extrusion, first. + Select a shape for extrusion, first. + + + The document '%1' doesn't exist. + The document '%1' doesn't exist. + + + + PartGui::DlgFilletEdges + + + Fillet Edges + Fillet Edges + + + Fillet Parameter + Fillet Parameter + + + Radius: + Radius: + + + Fillet type: + Fillet type: + + + Constant Radius + Constant Radius + + + Variable Radius + Variable Radius + + + Shape + Forma + + + Selected shape: + Selected shape: + + + No selection + Nici o selecţie + + + + Edges to fillet + Edges to fillet + + + Start radius + Start radius + + + End radius + End radius + + + Radius + Raza + + + No edge selected + No edge selected + + + No edge entity is checked to fillet. +Please check one or more edge entities first. + No edge entity is checked to fillet. +Please check one or more edge entities first. + + + + All + All + + + None + Niciunul + + + + Edge%1 + Edge%1 + + + No shape selected + No shape selected + + + No valid shape is selected. +Please select a valid shape in the drop-down box first. + No valid shape is selected. +Please select a valid shape in the drop-down box first. + + + + PartGui::DlgPartBox + + + Box definition + Box definition + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + Cancel + Renunţă + + + OK + OK + + + Size: + Dimensiune: + + + Height: + Height: + + + Width: + Width: + + + Length: + Lungime: + + + Position: + Position: + + + Direction: + Direction: + + + + PartGui::DlgPartCylinder + + + Cylinder definition + Cylinder definition + + + Parameter + Parameter + + + Height: + Height: + + + Radius: + Radius: + + + Position: + Position: + + + Direction: + Direction: + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + OK + OK + + + Cancel + Renunţă + + + + PartGui::DlgPartImportIges + + + IGES input file + IGES input file + + + ... + ... + + + Cancel + Renunţă + + + OK + OK + + + File Name + File Name + + + + + + + + PartGui::DlgPartImportIgesImp + + + IGES (*.igs *.iges);;All Files (*.*) + IGES (*.igs *.iges);;All Files (*.*) + + + + PartGui::DlgPartImportStep + + + ... + ... + + + Cancel + Renunţă + + + OK + OK + + + Step input file + Step input file + + + File Name + File Name + + + + + + + + PartGui::DlgPartImportStepImp + + + STEP (*.stp *.step);;All Files (*.*) + STEP (*.stp *.step);;All Files (*.*) + + + + PartGui::DlgPrimitives + + + Geometric Primitives + Geometric Primitives + + + Primitive + Primitive + + + X min + X min + + + x max + x max + + + Y min + Y min + + + Y max + Y max + + + Z min + Z min + + + Z max + Z max + + + X2 min + X2 min + + + X2 max + X2 max + + + Z2 min + Z2 min + + + Z2 max + Z2 max + + + Angle - 0 for cyl + Angle - 0 for cyl + + + Angle0 + Angle0 + + + Angle1 + Angle1 + + + X Axis Value: + X Axis Value: + + + Y Axis Value: + Y Axis Value: + + + Z Axis Value: + Z Axis Value: + + + Wedge + Wedge + + + Circle + Cerc + + + Vertex + Vertex + + + Position + Position + + + Z: + Z: + + + X: + X: + + + Direction: + Direction: + + + Y: + Y: + + + Plane + Plane + + + Box + Box + + + Cylinder + Cylinder + + + Cone + Cone + + + Sphere + Sphere + + + Ellipsoid + Ellipsoid + + + Torus + Torus + + + Ellipse + Ellipse + + + Point + Punct + + + Line + Linie + + + Parameter + Parameter + + + Width: + Width: + + + Length: + Lungime: + + + Height: + Height: + + + Angle: + Unghiul: + + + Radius: + Radius: + + + Radius 1: + Radius 1: + + + Radius 2: + Radius 2: + + + U parametric: + U parametric: + + + V parametric: + V parametric: + + + X min/max: + X min/max: + + + Y min/max: + Y min/max: + + + Z min/max: + Z min/max: + + + X2 min/max: + X2 min/max: + + + Z2 min/max: + Z2 min/max: + + + Coordinate system: + Coordinate system: + + + Right-handed + Right-handed + + + Left-handed + Left-handed + + + Angle 1: + Angle 1: + + + Angle 2: + Angle 2: + + + From three points + From three points + + + Major radius: + Major radius: + + + Minor radius: + Minor radius: + + + End point + End point + + + Start point + Start point + + + + &Create + &Create + + + Alt+C + Alt + C + + + Cl&ose + În&chide + + + Alt+O + Alt+O + + + Create %1 + Create %1 + + + No active document + No active document + + + + Pitch: + Pitch: + + + Helix + Helix + + + 3D View + Vizualizare 3D + + + + PartGui::DlgRevolution + + + Revolve + Revolve + + + Y: + Y: + + + X: + X: + + + Angle: + Unghiul: + + + Z: + Z: + + + Axis: + Axa: + + + Shape + Forma + + + Select line in 3D view + Select line in 3D view + + + + Select a shape for revolution, first. + Select a shape for revolution, first. + + + + PartGui::DlgSettings3DViewPart + + + View accuracy / Performance + View accuracy / Performance + + + View smoothing + View smoothing + + + Using high-quality normals + Using high-quality normals + + + This will slow down render speed but will lead to nicer results + This will slow down render speed but will lead to nicer results + + + Defines the appearance of surfaces + Defines the appearance of surfaces + + + Shape view + Shape view + + + Tessellation + Tessellation + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + + + Do not define normal per vertex + Nu definii normale pe vertex + + + Defines the deviation of tessellation to the actual surface + Definește deviația tessellatiei pe suprafața actuală + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + + + Maximum deviation depending on the model bounding box + Maximum deviation depending on the model bounding box + + + % + % + + + + Deviation + Deviation + + + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + + + + PartGui::DlgSettingsGeneral + + + General + General + + + Export + Export + + + Millimeter + Millimeter + + + Meter + Meter + + + Inch + Inch + + + Units for export of STEP/IGES + Units for export of STEP/IGES + + + Model settings + Model settings + + + Automatically refine model after boolean operation + Automatically refine model after boolean operation + + + Automatically check model after boolean operation + Automatically check model after boolean operation + + + + PartGui::FaceColors + + + Face colors + Face colors + + + Do you really want to cancel? + Do you really want to cancel? + + + + PartGui::Location + + + Location + Location + + + Position + Position + + + 3D View + Vizualizare 3D + + + + PartGui::LoftWidget + + + Vertex/Wire + Vertex/Wire + + + Loft + Loft + + + Too few elements + Too few elements + + + At least two vertices, edges or wires are required. + At least two vertices, edges or wires are required. + + + At least two vertices or wires are required. + At least two vertices or wires are required. + + + + PartGui::Mirroring + + + Mirroring + Mirroring + + + Shapes + Shapes + + + Mirror plane: + Mirror plane: + + + XY plane + XY plane + + + XZ plane + XZ plane + + + YZ plane + YZ plane + + + Base point: + Base point: + + + x + x + + + y + y + + + z + z + + + + Select a shape for mirroring, first. + Select a shape for mirroring, first. + + + No such document '%1'. + No such document '%1'. + + + + PartGui::ShapeBuilderWidget + + + Wrong selection + Selecţie greşită + + + Select two vertices + Select two vertices + + + Select three or more edges + Select three or more edges + + + Select one or more edges + Select one or more edges + + + Select two or more faces + Select two or more faces + + + Select only one part object + Select only one part object + + + Select two vertices to create an edge + Select two vertices to create an edge + + + Select a closed set of edges + Select a closed set of edges + + + Select adjacent faces + Select adjacent faces + + + All shape types can be selected + All shape types can be selected + + + + PartGui::SweepWidget + + + Vertex/Wire + Vertex/Wire + + + Sweep + Sweep + + + Sweep path + Sweep path + + + Select an edge or wire you want to sweep along. + Select an edge or wire you want to sweep along. + + + Too few elements + Too few elements + + + At least one edge or wire is required. + At least one edge or wire is required. + + + + PartGui::TaskDialogEditDynamic + + Hint + Hint + + + Select Control. + Select Control. + + + Control + Control + + + Dynamic + Dynamic + + + Align + Align + + + Value + Valoare + + + Special + Special + + + Command + Comanda + + + Stretch + Stretch + + + Move + Mută + + + Rotate + Rotire + + + Offset + Compensare + + + Orient + Orient + + + Match + Match + + + Surround + Surround + + + dummy + dummy + + + X Axis + X Axis + + + Y Axis + Y Axis + + + Z Axis + Z Axis + + + Increment + Increment + + + .125 + .125 + + + .500 + .500 + + + 1.000 + 1.000 + + + 5.000 + 5.000 + + + 10.000 + 10.000 + + + Drag arrows to stretch box by increment + Drag arrows to stretch box by increment + + + Drag arrows to move box by increment + Drag arrows to move box by increment + + + Not implemented yet + Not implemented yet + + + Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment + + + Select dragger for stretch by align + Select dragger for stretch by align + + + Select dragger for move by align + Select dragger for move by align + + + Select dragger for stretch by value + Select dragger for stretch by value + + + Select dragger for move by value + Select dragger for move by value + + + 1.0 + 1.0 + + + Enter Value + Enter Value + + + Select box to match + Select box to match + + + Select a point + Select a point + + + 0.0 + 0.0 + + + Select dragger to align + Select dragger to align + + + Select dragger to modify + Select dragger to modify + + + + PartGui::TaskFaceColors + + + Set color per face + Set color per face + + + Click on the faces in the 3d view to select them. + Click on the faces in the 3d view to select them. + + + Faces: + Faces: + + + Set to default + Set to default + + + + PartGui::TaskLoft + + + Loft + Loft + + + Vertex/Wire + Vertex/Wire + + + Move right + Deplasare spre dreapta + + + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Mută elementul selectat cu un nivel mai în jos.</b><p>Acest lucru va schimba, de asemenea, și nivelul elementului părinte.</p> + + + Move left + Deplasare spre stânga + + + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Mută elementul selectat cu un nivel mai în sus.</b><p>Acest lucru va schimba, de asemenea, și nivelul elementului părinte.</p> + + + Move up + Deplasare în sus + + + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Mută elementul selectat în sus.</b><p>Elementul va schimba nivelul ierarhic.</p> + + + Move down + Deplasare în jos + + + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Mută elementul selectat în jos.</b><p>Elementul va schimba nivelul ierarhic.</p> + + + Create solid + Create solid + + + Ruled surface + Ruled surface + + + + PartGui::TaskShapeBuilder + + + Create shape + Create shape + + + Edge from vertices + Edge from vertices + + + Face from edges + Face from edges + + + Planar + Planar + + + Shell from faces + Shell from faces + + + Solid from shell + Solid from shell + + + Create + Creează + + + All faces + All faces + + + + PartGui::TaskSweep + + + Sweep + Sweep + + + Create solid + Create solid + + + Frenet + Frenet + + + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. + + + + QObject + + + Wrong selection + Selecţie greşită + + + Select two shapes please. + Select two shapes please. + + + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + + + STEP (*.stp *.step) + STEP (*.stp *.step) + + + IGES (*.igs *.iges) + IGES (*.igs *.iges) + + + BREP (*.brp *.brep) + BREP (*.brp *.brep) + + + All Files (*.*) + Toate fișierele (*.*) + + + + Sewing Tolerance + Sewing Tolerance + + + Enter tolerance for sewing shape: + Enter tolerance for sewing shape: + + + + Edit mirror plane + Edit mirror plane + + + Edit chamfer edges + Edit chamfer edges + + + Transform + Transform + + + + Part design + Design componente + + + + Select two shapes or more, please. + Select two shapes or more, please. + + + You have to select either two edges or two wires. + You have to select either two edges or two wires. + + + + Edit fillet edges + Edit fillet edges + + + + Set colors... + Set colors... + + + + Workbench + + + &Part + Com&ponentă + + + &Simple + &Simplu + + + &Parametric + &Parametric + + + Part tools + Instrumente pentru componente + + + Solids + Solide + + + Boolean + Boolean + + + diff --git a/src/Mod/Part/Gui/Resources/translations/Part_ru.qm b/src/Mod/Part/Gui/Resources/translations/Part_ru.qm index 1a1938a94..1acaf986c 100644 Binary files a/src/Mod/Part/Gui/Resources/translations/Part_ru.qm and b/src/Mod/Part/Gui/Resources/translations/Part_ru.qm differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_ru.ts b/src/Mod/Part/Gui/Resources/translations/Part_ru.ts index 5f632972b..3d0d76f50 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_ru.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_ru.ts @@ -1,2521 +1,2127 @@ - - + + BlockDefinition - - Block definition - Определение блока + + Block definition + Определение блока - - First limit - Первое ограничение + First limit + Первое ограничение - - - Type: - Тип: + Type: + Тип: - - - mm - мм + mm + мм - - - Length: - Длина: + Length: + Длина: - - - Dimension - Размер + Dimension + Размер - - - Up to next - До следующего + Up to next + До следующего - - - Up to last - До последнего + Up to last + До последнего - - - Up to plane - До плоскости + Up to plane + До плоскости - - - Up to face - До грани + Up to face + До грани - - - Limit: - Ограничение: + Limit: + Ограничение: - - - - - No selection - Ничего не выбрано + No selection + Нет выбора - - Profile - Профиль + Profile + Профиль - - Selection: - Выделение: + Selection: + Выделение: - - Reverse - Развернуть + Reverse + Развернуть - - Both sides - В обе стороны + Both sides + В обе стороны - - Second limit - Второе ограничение + Second limit + Второе ограничение - - Direction - Направление + Direction + Направление - - Perpendicular to sketch - Перпендикулярно эскизу + Perpendicular to sketch + Перпендикулярно эскизу - - Reference - Ссылка + Reference + Ссылка - - Apply - Применить + Apply + Применить - - Cancel - Отмена + Cancel + Отмена - - OK - OK + OK + OK - - + + CmdPartBoolean - - Part - Деталь + + Part + Деталь - - Boolean... - Булев... + Boolean... + Булевы операции... - - Run a boolean operation with two shapes selected - Выполнить булеву операцию с двумя выбранными формами + Run a boolean operation with two shapes selected + Выполнить булеву операцию с двумя выбранными формами - - + + CmdPartBox - - Part - Деталь + + Part + Деталь - - Box - Куб + Box + Куб - - Create a box solid - Создать твердотельный параллелепипед + Create a box solid + Создать твердотельный параллелепипед - - + + CmdPartBox2 - - Part - Деталь + + Part + Деталь - - Box fix 1 - Поле исправление 1 + Box fix 1 + Поле исправление 1 - - Create a box solid without dialog - Создать твердотельный параллелепипед без диалога + Create a box solid without dialog + Создать твердотельный параллелепипед без диалога - - + + CmdPartBox3 - - Part - Деталь + Part + Деталь - - Box fix 2 - Поле исправление 2 + Box fix 2 + Поле исправление 2 - - Create a box solid without dialog - Создать твердотельный параллелепипед без диалога + Create a box solid without dialog + Создать твердотельный параллелепипед без диалога - - + + CmdPartBuilder - - Part - Деталь + Part + Деталь - - Shape builder... - Построитель форм ... + Shape builder... + Построитель форм ... - - Advanced utility to create shapes - Расширенный утилита для создания форм + Advanced utility to create shapes + Расширенный утилита для создания форм - - + + CmdPartChamfer - - Part - Деталь + Part + Деталь - - Chamfer... - + Chamfer... + Фаска... - - Chamfer the selected edges of a shape - + Chamfer the selected edges of a shape + Притупитьт фаской выбранные края фигуры - - + + CmdPartCommon - - Part - Деталь + Part + Деталь - - Intersection - Пересечение + Intersection + Пересечение - - Make an intersection of two shapes - Создать пересечение двух форм + Make an intersection of two shapes + Создать пересечение двух форм - - + + CmdPartCone - - Part - Деталь + + Part + Деталь - - Cone - Конус + Cone + Конус - - Create a cone solid - Создать твердотельный конус + Create a cone solid + Создать твердотельный конус - - + + CmdPartCrossSections - - Part - Деталь + + Part + Деталь - - Cross-sections... - Поперечные сечения... + Cross-sections... + Поперечные сечения... - - Cross-sections - Поперечные сечения + Cross-sections + Поперечные сечения - - + + CmdPartCut - - Part - Деталь + Part + Деталь - - Cut - Обрезать + Cut + Обрезать - - Make a cut of two shapes - Выполнить обрезку двух фигур + Make a cut of two shapes + Выполнить обрезку двух фигур - - + + CmdPartCylinder - - Part - Деталь + + Part + Деталь - - Create a Cylinder - Создайте цилиндр + Create a Cylinder + Создайте цилиндр - - Cylinder - Цилиндр + Cylinder + Цилиндр - - + + CmdPartExport - - Part - Деталь + + Part + Деталь - - Export CAD... - Экспорт в CAD ... + Export CAD... + Экспорт в CAD ... - - Exports to a CAD file - Экспорт в файл CAD + Exports to a CAD file + Экспорт в файл CAD - - + + CmdPartExtrude - - Part - Деталь + Part + Деталь - - Extrude... - Выдавить ... + Extrude... + Выдавить ... - - Extrude a selected sketch - Выдавить выбранный эскиз + Extrude a selected sketch + Выдавить выбранный эскиз - - + + CmdPartFillet - - Part - Деталь + Part + Деталь - - Fillet... - Скругление... + Fillet... + Скругление... - - Fillet the selected edges of a shape - Cкругление выбранного края формы + Fillet the selected edges of a shape + Cкругление выбранного края формы - - + + CmdPartFuse - - Part - Деталь + Part + Деталь - - Union - Объединение + Union + Объединение - - Make a union of several shapes - Создать объединение нескольких фигур + Make a union of several shapes + Создать объединение нескольких фигур - - + + CmdPartImport - - Part - Деталь + Part + Деталь - - Imports a CAD file - Импортировать CAD-файл + Imports a CAD file + Импортировать CAD-файл - - Import CAD... - Импорт CAD... + Import CAD... + Импорт CAD... - - + + CmdPartImportCurveNet - - Part - Деталь + Part + Деталь - - Import a curve network - Импортировать кривую сети + Import a curve network + Импортировать кривую сети - - Import curve network... - Импортировать кривую сети... + Import curve network... + Импортировать кривую сети... - - + + CmdPartLoft - - Part - Деталь + Part + Деталь - - Loft... - Лофт... + Loft... + Лофт... - - Utility to loft - + Utility to loft + Utility to loft - Advanced utility to lofts - Расширенная утилита для лофта + Advanced utility to lofts + Расширенная утилита для лофта - - + + CmdPartMakeSolid - - Part - Деталь + Part + Деталь - - Convert to solid - Преобразовать в твердые + Convert to solid + Преобразовать в твердые - - Create solid from a shell or compound - Создание формы из оболочки или составных + Create solid from a shell or compound + Создание формы из оболочки или составных - - + + CmdPartMirror - - Part - Деталь + Part + Деталь - - Mirroring... - Зеркальное отображение... + Mirroring... + Зеркальное отражение... - - Mirroring a selected shape - Зеркальное отображение выбранной фигуры + Mirroring a selected shape + Зеркальное отражение выбранной фигуры - - + + CmdPartPickCurveNet - - Part - Деталь + Part + Деталь - - Pick curve network - Выберите кривую сети + Pick curve network + Выберите кривую сети - - Pick a curve network - Выберите кривую сети + Pick a curve network + Выберите кривую сети - - + + CmdPartPrimitives - - Part - Деталь + Part + Деталь - - Create primitives... - Создать примитивы... + Create primitives... + Создать примитивы... - - Creation of parametrized geometric primitives - Создание параметризованных геометрических примитивов + Creation of parametrized geometric primitives + Создание параметризованных геометрических примитивов - - + + CmdPartRefineShape - - Part - Деталь + + Part + Деталь - - Refine shape - + Refine shape + Уточнить форму - - Refine the copy of a shape - + Refine the copy of a shape + Уточнить копию фигуры - - + + CmdPartReverseShape - - Part - Деталь + + Part + Деталь - - Reverse shapes - Обратная фигура + Reverse shapes + Обратная фигура - - Reverse orientation of shapes - Обратная ориентация фигуры + Reverse orientation of shapes + Обратная ориентация фигуры - - + + CmdPartRevolve - - Part - Деталь + Part + Деталь - - Revolve... - Вращать... + Revolve... + Вращать... - - Revolve a selected shape - Вращать выбранную фигуру + Revolve a selected shape + Вращать выбранную фигуру - - + + CmdPartRuledSurface - - Part - Деталь + Part + Деталь - - Create ruled surface - Создать линейчатую ​​поверхность + Create ruled surface + Создать линейчатую ​​поверхность - - Create a ruled surface from two curves - Создать линейчатую ​​поверхность из двух кривых + Create a ruled surface from two curves + Создать линейчатую ​​поверхность из двух кривых - - + + CmdPartSection - - Make a section of two shapes - Сделать сечение из двух форм + Make a section of two shapes + Сделать сечение из двух форм - - Part - Деталь + Part + Деталь - - Section - Раздел + Section + Раздел - - + + CmdPartShapeFromMesh - - Part - Деталь + + Part + Деталь - - Create shape from mesh... - Создание формы из сетки ... + Create shape from mesh... + Создание формы из сетки ... - - Create shape from selected mesh object - Создание формы из выбранного объекта сетки + Create shape from selected mesh object + Создание формы из выбранного объекта сетки - - + + CmdPartSimpleCopy - - Part - Деталь + Part + Деталь - - Create simple copy - Создать простую копию + Create simple copy + Создать простую копию - - Create a simple non-parametric copy - Create a simple non-parametric copy + Create a simple non-parametric copy + Создать простую непараметрическую копию - - + + CmdPartSimpleCylinder - - Part - Деталь + Part + Деталь - - Create Cylinder... - Создайте цилиндр ... + Create Cylinder... + Создайте цилиндр ... - - Create a Cylinder - Создайте цилиндр + Create a Cylinder + Создайте цилиндр - - + + CmdPartSphere - - Create a sphere solid - Создать твердотельную сферу + + Create a sphere solid + Создать твердотельную сферу - - Part - Деталь + Part + Деталь - - Sphere - Сфера + Sphere + Сфера - - + + CmdPartSweep - - Part - Деталь + + Part + Деталь - - Sweep... - + Sweep... + Сдвиг... - - Utility to sweep - + Utility to sweep + Utility to sweep - - + + CmdPartTorus - - Create a torus solid - Создать твердотельный тор + + Create a torus solid + Создать твердотельный тор - - Part - Деталь + Part + Деталь - - Torus - Тор + Torus + Тор - - + + DlgExtrusion - Select a shape for extrusion, first. - Сначала выберите фигуру для экструзии. + Select a shape for extrusion, first. + Сначала выберите фигуру для экструзии. - The document '%1' doesn't exist. - The document '%1' doesn't exist. + The document '%1' doesn't exist. + The document '%1' doesn't exist. - - + + DlgRevolution - Select a shape for revolution, first. - Сначала выберите фигуру для революции. + Select a shape for revolution, first. + Сначала выберите фигуру для революции. - - + + DlgSettings3DViewPart - Deviation - Отклонение + Deviation + Отклонение - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - - + + PartGui::CrossSections - - Cross sections - Поперечные сечения + + Cross sections + Поперечные сечения - - Guiding plane - Ведущая проекция + Guiding plane + Ведущая проекция - - XY - XY + XY + XY - - XZ - XZ + XZ + XZ - - YZ - YZ + YZ + YZ - - Position: - Расположение: + Position: + Расположение: - - Sections - Разделы + Sections + Разделы - - On both sides - С обеих сторон + On both sides + С обеих сторон - - Count - Итог + Count + Итог - - Distance: - Расстояние: + Distance: + Расстояние: - - + + PartGui::DlgBooleanOperation - - Boolean Operation - Булева операция + + Boolean Operation + Булева операция - - Second shape - Вторая форма + Second shape + Вторая форма - - First shape - Первая форма + First shape + Первая форма - - Boolean operation - Булева операция + Boolean operation + Булева операция - - Section - Раздел + Section + Раздел - - Difference - Разность + Difference + Разность - - Union - Объединение + Union + Объединение - - Intersection - Пересечение + Intersection + Пересечение - - Cannot perform a boolean operation with the same shape - Невозможно выполнить булеву операцию с той же формой + + Cannot perform a boolean operation with the same shape + Невозможно выполнить булеву операцию с той же формой - - - Solids - Массивы + + Solids + Массивы - - - Shells - Оболочки + Shells + Оболочки - - - Compounds - Соединения + Compounds + Соединения - - - Faces - Изображения + Faces + Изображения - - Swap selection - Выбор свопа + Swap selection + Выбор свопа - - Select a shape on the left side, first - Сначала выберите фигуру на левой стороне + + Select a shape on the left side, first + Сначала выберите фигуру на левой стороне - - Select a shape on the right side, first - Сначала выберите фигуру справа + Select a shape on the right side, first + Сначала выберите фигуру справа - - No active document available - Нет доступного активного документа + No active document available + Нет доступного активного документа - - One of the selected objects doesn't exist anymore - Один из выбранных объектов больше не существует + One of the selected objects doesn't exist anymore + Один из выбранных объектов больше не существует - - Performing union on non-solids is not possible - Выполнение объединения без твердых тел не представляется возможным + Performing union on non-solids is not possible + Выполнение объединения без твердых тел не представляется возможным - - Performing intersection on non-solids is not possible - Выполнение пересечения без твердых тел не представляется возможным + Performing intersection on non-solids is not possible + Выполнение пересечения без твердых тел не представляется возможным - - Performing difference on non-solids is not possible - Выполнение вычитания без твердых тел не представляется возможным + Performing difference on non-solids is not possible + Выполнение вычитания без твердых тел не представляется возможным - - + + PartGui::DlgChamferEdges - - Chamfer Edges - + + Chamfer Edges + Притупить ребра фаской - - + + PartGui::DlgExtrusion - - Extrude - Выдавить + + Extrude + Выдавить - - Direction - Направление + Direction + Направление - - Along normal - Вдоль нормали + Along normal + Вдоль нормали - - Length: - Длина: + Length: + Длина: - - 3D view - 3D вид + 3D view + 3D вид - - Note:This option works for planes only - Примечание: Эта опция работает только для плоскостей + Note:This option works for planes only + Примечание: Эта опция работает только для плоскостей - - Create solid - Создать твердое тело + Create solid + Создать твердое тело - - Taper outward angle - + Taper outward angle + Внешний угол конусности - - Shape - Форма + Shape + Форма - - * + + * - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - Select a shape for extrusion, first. - Сначала выберите фигуру для экструзии. + + Select a shape for extrusion, first. + Сначала выберите фигуру для экструзии. - - The document '%1' doesn't exist. - The document '%1' doesn't exist. + The document '%1' doesn't exist. + The document '%1' doesn't exist. - - + + PartGui::DlgFilletEdges - - Fillet Edges - Скруглить ребра + + Fillet Edges + Скруглить ребра - - Fillet Parameter - Параветр скругления + Fillet Parameter + Параветр скругления - - Radius: - Радиус: + Radius: + Радиус: - - Fillet type: - Тип ленты: + Fillet type: + Тип ленты: - - Constant Radius - Постоянный радиус + Constant Radius + Постоянный радиус - - Variable Radius - Переменный радиус + Variable Radius + Переменный радиус - - Shape - Форма + Shape + Форма - - Selected shape: - Выделенная фигура: + Selected shape: + Выделенная фигура: - - No selection - Ничего не выбрано + No selection + Нет выбора - - Edges to fillet - Ребера для скругления + + Edges to fillet + Рёбра для скругления - - - Start radius - Начальный радиус + Start radius + Начальный радиус - - End radius - Конечный радиус + End radius + Конечный радиус - - Radius - Радиус + Radius + Радиус - - No edge selected - Нет выбранных ребер + No edge selected + Нет выбранных ребер - - No edge entity is checked to fillet. + No edge entity is checked to fillet. Please check one or more edge entities first. - Нельзя сгладить края. + Нельзя сгладить края. Пожалуйста, выберите обьект для сглаживания. - - All - Все + + All + Все - - None - Ничего + None + Ничего - - - Edge%1 - Грань%1 + + Edge%1 + Грань%1 - - No shape selected - Профиль не выбран + No shape selected + Профиль не выбран - - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - Допустимый профиль не выбран. Пожалуйста сначала выберите допустимый профиль в выпадающем списке. + Допустимый профиль не выбран. Пожалуйста сначала выберите допустимый профиль в выпадающем списке. - - + + PartGui::DlgPartBox - - Box definition - Определение параллелепипеда + + Box definition + Определение параллелепипеда - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - Cancel - Отмена + Cancel + Отмена - - OK - OK + OK + OK - - Size: - Размер: + Size: + Размер: - - Height: - Высота: + Height: + Высота: - - Width: - Ширина: + Width: + Ширина: - - Length: - Длина: + Length: + Длина: - - Position: - Расположение: + Position: + Расположение: - - Direction: - Направление: + Direction: + Направление: - - + + PartGui::DlgPartCylinder - - Cylinder definition - Определение цилиндра + + Cylinder definition + Определение цилиндра - - Parameter - Параметр + Parameter + Параметр - - Height: - Высота: + Height: + Высота: - - Radius: - Радиус: + Radius: + Радиус: - - Position: - Расположение: + Position: + Расположение: - - Direction: - Направление: + Direction: + Направление: - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - OK - OK + OK + OK - - Cancel - Отмена + Cancel + Отмена - - + + PartGui::DlgPartImportIges - - IGES input file - Входной файл IGES + + IGES input file + Входной файл IGES - - ... - ... + ... + ... - - Cancel - Отмена + Cancel + Отмена - - OK - OK + OK + OK - - File Name - Имя файла + File Name + Имя файла - - * + + * - - + + PartGui::DlgPartImportIgesImp - - IGES (*.igs *.iges);;All Files (*.*) - IGES (*.igs *.iges);;Все файлы (*.*) + + IGES (*.igs *.iges);;All Files (*.*) + IGES (*.igs *.iges);;Все файлы (*.*) - - + + PartGui::DlgPartImportStep - - ... - ... + + ... + ... - - Cancel - Отмена + Cancel + Отмена - - OK - OK + OK + OK - - Step input file - Шаг входного файла + Step input file + Шаг входного файла - - File Name - Имя файла + File Name + Имя файла - - * + + * - - + + PartGui::DlgPartImportStepImp - - STEP (*.stp *.step);;All Files (*.*) - STEP (*.stp *.step);;Все файлы (*.*) + + STEP (*.stp *.step);;All Files (*.*) + STEP (*.stp *.step);;Все файлы (*.*) - - + + PartGui::DlgPrimitives - - Geometric Primitives - Геометрические примитивы + + Geometric Primitives + Геометрические примитивы - Primitive - Примитив + Primitive + Примитив - X min - X min + X min + X min - x max - x max + x max + x max - Y min - Y min + Y min + Y min - Y max - Y max + Y max + Y max - Z min - Z min + Z min + Z min - Z max - Z max + Z max + Z max - X2 min - X2 min + X2 min + X2 min - X2 max - X2 max + X2 max + X2 max - Z2 min - Z2 min + Z2 min + Z2 min - Z2 max - Z2 max + Z2 max + Z2 max - Angle - 0 for cyl - Angle - 0 for cyl + Angle - 0 for cyl + Угол - 0 для цилиндра - Angle0 - Угол0 + Angle0 + Угол0 - Angle1 - Угол1 + Angle1 + Угол1 - X Axis Value: - Значение на оси X: + X Axis Value: + Значение на оси X: - Y Axis Value: - Значение на оси Y: + Y Axis Value: + Значение на оси Y: - Z Axis Value: - Значение на оси Z: + Z Axis Value: + Значение на оси Z: - - Wedge - Wedge + Wedge + Клин - - Circle - Окружность + Circle + Окружность - Vertex - Вершина + Vertex + Вершина - Position - Позиция + Position + Положение - - - - Z: - Z: + Z: + Z: - - - - X: - X: + X: + X: - Direction: - Направление: + Direction: + Направление: - - - - Y: - Y: + Y: + Y: - - Plane - Плоскость + Plane + Плоскость - - Box - Куб + Box + Куб - - Cylinder - Цилиндр + Cylinder + Цилиндр - - Cone - Конус + Cone + Конус - - Sphere - Сфера + Sphere + Сфера - - Ellipsoid - Эллипсоид + Ellipsoid + Эллипсоид - - Torus - Тор + Torus + Тор - - Ellipse - + Ellipse + Эллипс - - Point - + Point + Точка - - Line - + Line + Линия - - Parameter - Параметр + Parameter + Параметр - - - Width: - Ширина: + Width: + Ширина: - - - Length: - Длина: + Length: + Длина: - - - - - Height: - Высота: + Height: + Высота: - - - - Angle: - Угол: + Angle: + Угол: - - - - - Radius: - Радиус: + Radius: + Радиус: - - - - Radius 1: - Радиус 1: + Radius 1: + Радиус 1: - - - - Radius 2: - Радиус 2: + Radius 2: + Радиус 2: - - - - U parametric: - Параметрический U: + U parametric: + Параметрический U: - - - - V parametric: - Параметрический V: + V parametric: + Параметрический V: - - X min/max: - + X min/max: + X min/max: - - Y min/max: - + Y min/max: + Y min/max: - - Z min/max: - + Z min/max: + Z min/max: - - X2 min/max: - + X2 min/max: + X2 min/max: - - Z2 min/max: - + Z2 min/max: + Z2 min/max: - - Coordinate system: - + Coordinate system: + Система координат: - - Right-handed - + Right-handed + Правая - - Left-handed - + Left-handed + Левая - - - Angle 1: - + Angle 1: + Угол 1: - - - Angle 2: - + Angle 2: + Угол 2: - - From three points - + From three points + По трём точкам - - Major radius: - + Major radius: + Большая полуось: - - Minor radius: - + Minor radius: + Minor radius: - - End point - + End point + Конечная точка - - Start point - + Start point + Начальная точка - - &Create - &Создать + + &Create + &Создать - Alt+C - Alt + C + Alt+C + Alt + C - Cl&ose - Зак&рыть + Cl&ose + Зак&рыть - Alt+O - Alt + O + Alt+O + Alt+O - - - - Create %1 - Создать %1 + Create %1 + Создать %1 - - No active document - Нет активного документа + No active document + Нет активного документа - - Pitch: - Шаг: + + Pitch: + Шаг: - - Helix - Спираль + Helix + Спираль - 3D View - 3D Вид + 3D View + 3D Вид - - + + PartGui::DlgRevolution - - Revolve - Вращаться + + Revolve + Вращение - - Y: - Y: + Y: + Y: - - X: - X: + X: + X: - - Angle: - Угол: + Angle: + Угол: - - Z: - Z: + Z: + Z: - - Axis: - Ось: + Axis: + Ось: - - Shape - Форма + Shape + Форма - - Select line in 3D view - + Select line in 3D view + Select line in 3D view - - Select a shape for revolution, first. - Сначала выберите фигуру для революции. + + Select a shape for revolution, first. + Сначала выберите фигуру для революции. - - + + PartGui::DlgSettings3DViewPart - - View accuracy / Performance - Оценить точность / характеристики + + View accuracy / Performance + Оценить точность / характеристики - - View smoothing - Посмотреть сглаживания + View smoothing + Посмотреть сглаживания - - Using high-quality normals - Использование высококачественных нормалей + Using high-quality normals + Использование высококачественных нормалей - - This will slow down render speed but will lead to nicer results - Это будет замедлять скорость визуализации, но приведет к лучшему результату + This will slow down render speed but will lead to nicer results + Это будет замедлять скорость визуализации, но приведет к лучшему результату - - Defines the appearance of surfaces - Определить внешний вид поверхностей + Defines the appearance of surfaces + Определить внешний вид поверхностей - - Shape view - Форма представления + Shape view + Форма представления - - Tessellation - Мозаика + Tessellation + Мозаика - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> - - Do not define normal per vertex - Не определяйте нормалей каждой вершины + Do not define normal per vertex + Не определяйте нормалей каждой вершины - - Defines the deviation of tessellation to the actual surface - Определяет отклонение тесселяции к самой поверхности + Defines the deviation of tessellation to the actual surface + Определяет отклонение тесселяции к самой поверхности - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> - - Maximum deviation depending on the model bounding box - Максимальное отклонение в зависимости от ограничительной рамки модели + Maximum deviation depending on the model bounding box + Максимальное отклонение в зависимости от ограничительной рамки модели - - % - % + % + % - - Deviation - Отклонение + + Deviation + Отклонение - - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - - + + PartGui::DlgSettingsGeneral - - General - Главный + + General + Главный - - Export - Экспорт + Export + Экспорт - - Millimeter - Миллиметр + Millimeter + Миллиметр - - Meter - Метр + Meter + Метр - - Inch - Дюйм + Inch + Дюйм - - Units for export of STEP/IGES - Единиц для экспорта STEP/IGES + Units for export of STEP/IGES + Единиц для экспорта STEP/IGES - - Model settings - + Model settings + Параметры модели - - Automatically refine model after boolean operation - + Automatically refine model after boolean operation + Automatically refine model after boolean operation - - Automatically check model after boolean operation - + Automatically check model after boolean operation + Automatically check model after boolean operation - - + + PartGui::FaceColors - - Face colors - + + Face colors + Цвета поверхности - - Do you really want to cancel? - + Do you really want to cancel? + Вы действительно хотите отменить? - - + + PartGui::Location - - Location - + + Location + Location - - Position - Позиция + Position + Положение - - 3D View - 3D Вид + 3D View + 3D Вид - - + + PartGui::LoftWidget - - - Vertex/Wire - Вершина/проволока + + Vertex/Wire + Вершина/проволока - - - Loft - Лофт + Loft + Лофт - - Too few elements - Слишком мало элементов + Too few elements + Слишком мало элементов - - At least two vertices, edges or wires are required. - + At least two vertices, edges or wires are required. + Требуются по крайней мере две вершины, ребра или направляющих. - At least two vertices or wires are required. - At least two vertices or wires are required. + At least two vertices or wires are required. + По крайней мере, требуются две вершины или провода. - - + + PartGui::Mirroring - - Mirroring - Зеркальное отображение + + Mirroring + Зеркальное отражение - - Shapes - Формы + Shapes + Фигуры - - Mirror plane: - Зеркальная плоскость: + Mirror plane: + Зеркальная плоскость: - - XY plane - Плоскость XY + XY plane + Плоскость XY - - XZ plane - Плоскость XZ + XZ plane + Плоскость XZ - - YZ plane - Плоскость YZ + YZ plane + Плоскость YZ - - Base point: - Базовая точка: + Base point: + Базовая точка: - - x - x + x + x - - y - у + y + у - - z - z + z + z - - Select a shape for mirroring, first. - Сначала выберите фигуру для зеркального отображения. + + Select a shape for mirroring, first. + Сначала выберите фигуру для зеркального отображения. - - No such document '%1'. - Нет такого документа'%1'. + No such document '%1'. + Нет такого документа '%1'. - - + + PartGui::ShapeBuilderWidget - - - - - - Wrong selection - Неправильный выбор + + Wrong selection + Неправильный выбор - - - Select two vertices - Выберите две вершины + Select two vertices + Выберите две вершины - Select three or more edges - Выберите три или более ребра + Select three or more edges + Выберите три или более ребра - - Select one or more edges - + Select one or more edges + Выберите одино или несколько ребер - - Select two or more faces - Выберите две или более грани + Select two or more faces + Выберите две или более грани - - Select only one part object - Select only one part object + Select only one part object + Выбрать только одну деталь объекта - - Select two vertices to create an edge - Выберите две вершины для создания ребра + Select two vertices to create an edge + Выберите две вершины для создания ребра - - Select a closed set of edges - Выберите ребра, образующие замкнутый контур + Select a closed set of edges + Выберите ребра, образующие замкнутый контур - - Select adjacent faces - Выберите смежные грани + Select adjacent faces + Выберите смежные грани - - All shape types can be selected - All shape types can be selected + All shape types can be selected + Можно выбрать все типы фигур - - + + PartGui::SweepWidget - - - Vertex/Wire - Вершина/проволока + + Vertex/Wire + Вершина/проволока - - - Sweep - + Sweep + Сдвиг - - Sweep path - + Sweep path + Траектория сдвига - - Select an edge or wire you want to sweep along. - + Select an edge or wire you want to sweep along. + Select an edge or wire you want to sweep along. - - Too few elements - Слишком мало элементов + Too few elements + Слишком мало элементов - - At least one edge or wire is required. - + At least one edge or wire is required. + At least one edge or wire is required. - - + + PartGui::TaskDialogEditDynamic - Hint - Hint + Hint + Подсказка - Select Control. - Select Control. + Select Control. + Выберите элемент управления. - Control - Control + Control + Управление - Dynamic - Dynamic + Dynamic + Динамический - Align - Align + Align + Выравнивание - Value - Значение + Value + Значение - Special - Special + Special + Специальные - Command - Команда + Command + Команда - Stretch - Stretch + Stretch + Растягивание - Move - Перемещение + Move + Перемещение - Rotate - Повернуть + Rotate + Повернуть - Offset - Смещение + Offset + Смещение - Orient - Orient + Orient + Ориентация - Match - Match + Match + Совпадение - Surround - Surround + Surround + Окружение - dummy - dummy + dummy + модель - X Axis - X Axis + X Axis + Ось X - Y Axis - Y Axis + Y Axis + Ось Y - Z Axis - Z Axis + Z Axis + Ось Z - Increment - Increment + Increment + Увеличение - .125 - .125 + .125 + .125 - .500 - .500 + .500 + .500 - 1.000 - 1.000 + 1.000 + 1.000 - 5.000 - 5.000 + 5.000 + 5.000 - 10.000 - 10.000 + 10.000 + 10.000 - Drag arrows to stretch box by increment - Drag arrows to stretch box by increment + Drag arrows to stretch box by increment + Перетащите стрелки, чтобы растянуть поле на шаг - Drag arrows to move box by increment - Drag arrows to move box by increment + Drag arrows to move box by increment + Перетащите стрелки, чтобы переместить поле на шаг - Not implemented yet - Not implemented yet + Not implemented yet + Пока ещё не реализовано - Drag arrows to offset checked axes by increment - Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment + Перетащите стрелки на проверенные оси для приращения - Select dragger for stretch by align - Select dragger for stretch by align + Select dragger for stretch by align + Select dragger for stretch by align - Select dragger for move by align - Select dragger for move by align + Select dragger for move by align + Select dragger for move by align - Select dragger for stretch by value - Select dragger for stretch by value + Select dragger for stretch by value + Select dragger for stretch by value - Select dragger for move by value - Select dragger for move by value + Select dragger for move by value + Select dragger for move by value - 1.0 - 1.0 + 1.0 + 1.0 - Enter Value - Enter Value + Enter Value + Введите значение - Select box to match - Select box to match + Select box to match + Выберите поле для совпадения - Select a point - Select a point + Select a point + Выберите точку - 0.0 - 0.0 + 0.0 + 0.0 - Select dragger to align - Select dragger to align + Select dragger to align + Select dragger to align - Select dragger to modify - Select dragger to modify + Select dragger to modify + Select dragger to modify - - + + PartGui::TaskFaceColors - - Set color per face - Установить цвет для грани + + Set color per face + Установить цвет для грани - - Click on the faces in the 3d view to select them. - Click on the faces in the 3d view to select them. + Click on the faces in the 3d view to select them. + Нажмите на грани в 3D виде, чтобы выделить их. - - Faces: - Грани: + Faces: + Грани: - - Set to default - Установить по умолчанию + Set to default + Установить по умолчанию - - + + PartGui::TaskLoft - - Loft - Лофт + + Loft + Лофт - Vertex/Wire - Вершина/проволока + Vertex/Wire + Вершина/проволока - Move right - Перейти вправо + Move right + Перейти вправо - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Перемещение выбранного элемента на один уровень вниз.</b> <p> Это повлечет за собой изменение уровня родительского элемента. </p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Перемещение выбранного элемента на один уровень вниз.</b> <p> Это повлечет за собой изменение уровня родительского элемента. </p> - Move left - Перейти влево + Move left + Перейти влево - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Перемещение выбранного элемента на один уровень вниз.</b> <p> Это повлечет за собой изменение уровня родительского элемента. </p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Перемещение выбранного элемента на один уровень вниз.</b> <p> Это повлечет за собой изменение уровня родительского элемента. </p> - Move up - Переместить вверх + Move up + Переместить вверх - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - Move down - Переместить вниз + Move down + Переместить вниз - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - - Create solid - Создать твердое тело + Create solid + Создать твердое тело - - Ruled surface - Поверхность по закону + Ruled surface + Поверхность по закону - - + + PartGui::TaskShapeBuilder - - - Create shape - Создать форму + + Create shape + Создать форму - - Edge from vertices - Ребро по вершинам + Edge from vertices + Ребро по вершинам - - Face from edges - Грань из ребер + Face from edges + Грань из ребер - - Planar - Плоский + Planar + Плоский - - Shell from faces - Оболочка из граней + Shell from faces + Оболочка из граней - - Solid from shell - Твердое тело из оболочки + Solid from shell + Твердое тело из оболочки - - Create - Создать + Create + Создать - - All faces - Все грани + All faces + Все грани - - + + PartGui::TaskSweep - - Sweep - + + Sweep + Сдвиг - - Create solid - Создать твердое тело + Create solid + Создать твердое тело - - Frenet - + Frenet + Frenet - - Select one or more profiles and select an edge or wire + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. - + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. - - + + QObject - - - - - - Wrong selection - Неправильный выбор + + Wrong selection + Неправильный выбор - - - Select two shapes please. - Выберите две формы пожалуйста. + Select two shapes please. + Выберите две формы пожалуйста. - - - - All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) - Все CAD-файлы (*.stp *.step *.igs *.iges *.brp *.brep) + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + Все CAD-файлы (*.stp *.step *.igs *.iges *.brp *.brep) - - - - STEP (*.stp *.step) - STEP (*.stp *.step) + STEP (*.stp *.step) + STEP (*.stp *.step) - - - - IGES (*.igs *.iges) - IGES (*.igs *.iges) + IGES (*.igs *.iges) + IGES (*.igs *.iges) - - - - BREP (*.brp *.brep) - BREP (*.brp *.brep) + BREP (*.brp *.brep) + BREP (*.brp *.brep) - - - - All Files (*.*) - Все файлы (*.*) + All Files (*.*) + Все файлы (*.*) - - Sewing Tolerance - Допуск на сшивку + + Sewing Tolerance + Допуск на сшивку - - Enter tolerance for sewing shape: - Введите допустимость для шитья формы: + Enter tolerance for sewing shape: + Введите допустимость для шитья формы: - - Edit mirror plane - Редактировать плоскость зеркала + + Edit mirror plane + Редактировать плоскость зеркала - - Edit chamfer edges - + Edit chamfer edges + Edit chamfer edges - Transform - Преобразовать + Transform + Преобразовать - - - Part design - Дизайн детали + + Part design + Дизайн детали - - - Select two shapes or more, please. - Пожалуйста выберите несколько форм. + + Select two shapes or more, please. + Пожалуйста выберите несколько форм. - - You have to select either two edges or two wires. - Вы должны выбрать два ребра или две линии. + You have to select either two edges or two wires. + Вы должны выбрать два ребра или две линии. - - Edit fillet edges - Изменение краев ленты + + Edit fillet edges + Изменение краев ленты - - Set colors... - Установите цвета ... + + Set colors... + Установите цвета ... - - + + Workbench - - &Part - Деталь + + &Part + Деталь - - &Simple - Простой + &Simple + Простой - - &Parametric - Параметрический + &Parametric + &Параметрическая - - Part tools - Часть средств + Part tools + Часть средств - - Solids - Массивы + Solids + Массивы - - Boolean - Булевый + Boolean + Булевы операции - + diff --git a/src/Mod/Part/Gui/Resources/translations/Part_se.qm b/src/Mod/Part/Gui/Resources/translations/Part_se.qm deleted file mode 100644 index 058025860..000000000 Binary files a/src/Mod/Part/Gui/Resources/translations/Part_se.qm and /dev/null differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_se.ts b/src/Mod/Part/Gui/Resources/translations/Part_se.ts deleted file mode 100644 index e79bf4546..000000000 --- a/src/Mod/Part/Gui/Resources/translations/Part_se.ts +++ /dev/null @@ -1,2521 +0,0 @@ - - - - - BlockDefinition - - - Block definition - Block definition - - - - First limit - Första begränsningen - - - - - Type: - Typ: - - - - - mm - mm - - - - - Length: - Längd: - - - - - Dimension - Dimension - - - - - Up to next - Upp till nästa - - - - - Up to last - Upp till sista - - - - - Up to plane - Upp till plan - - - - - Up to face - Upp till yta - - - - - Limit: - Begränsning: - - - - - - - No selection - Inget val - - - - Profile - Profil - - - - Selection: - markering: - - - - Reverse - Omvänd - - - - Both sides - Båda sidor - - - - Second limit - Andra begränsningen - - - - Direction - Riktning - - - - Perpendicular to sketch - Vinkelrätt mot skiss - - - - Reference - Referens - - - - Apply - Verkställ - - - - Cancel - Avbryt - - - - OK - OK - - - - CmdPartBoolean - - - Part - Detalj - - - - Boolean... - Boolesk... - - - - Run a boolean operation with two shapes selected - Kör en boolesk operation med två valda former - - - - CmdPartBox - - - Part - Detalj - - - - Box - Låda - - - - Create a box solid - Skapa en lådsolid - - - - CmdPartBox2 - - - Part - Detalj - - - - Box fix 1 - Kub fix 1 - - - - Create a box solid without dialog - Skapa en lådsolid utan dialogruta - - - - CmdPartBox3 - - - Part - Detalj - - - - Box fix 2 - Kub fix 2 - - - - Create a box solid without dialog - Skapa en lådsolid utan dialogruta - - - - CmdPartBuilder - - - Part - Detalj - - - - Shape builder... - form byggare ... - - - - Advanced utility to create shapes - Avancerade verktyg för att skapa former - - - - CmdPartChamfer - - - Part - Detalj - - - - Chamfer... - - - - - Chamfer the selected edges of a shape - - - - - CmdPartCommon - - - Part - Detalj - - - - Intersection - Skärning - - - - Make an intersection of two shapes - Gör en skärning mellan två former - - - - CmdPartCone - - - Part - Detalj - - - - Cone - Kon - - - - Create a cone solid - Skapa en kon solid - - - - CmdPartCrossSections - - - Part - Detalj - - - - Cross-sections... - Tvärsnitt... - - - - Cross-sections - Tvärsnitt - - - - CmdPartCut - - - Part - Detalj - - - - Cut - Klipp - - - - Make a cut of two shapes - Gör ett klipp med två former - - - - CmdPartCylinder - - - Part - Detalj - - - - Create a Cylinder - Skapa en Cylinder - - - - Cylinder - Cylinder - - - - CmdPartExport - - - Part - Detalj - - - - Export CAD... - Exportera CAD ... - - - - Exports to a CAD file - Exporterar till en CAD-fil - - - - CmdPartExtrude - - - Part - Detalj - - - - Extrude... - Extrudera... - - - - Extrude a selected sketch - Extrudera en vald skiss - - - - CmdPartFillet - - - Part - Detalj - - - - Fillet... - Fasning... - - - - Fillet the selected edges of a shape - Fasa av de valda kanterna på en form - - - - CmdPartFuse - - - Part - Detalj - - - - Union - Förening - - - - Make a union of several shapes - Gör en förening av flera former - - - - CmdPartImport - - - Part - Detalj - - - - Imports a CAD file - Importerar en CAD-fil - - - - Import CAD... - Importera CAD... - - - - CmdPartImportCurveNet - - - Part - Detalj - - - - Import a curve network - Importera ett kurvnät - - - - Import curve network... - Importera kurvnät... - - - - CmdPartLoft - - - Part - Detalj - - - - Loft... - Loft ... - - - - Utility to loft - - - - Advanced utility to lofts - Avancerade verktyg för loft - - - - CmdPartMakeSolid - - - Part - Detalj - - - - Convert to solid - Konvertera till solid - - - - Create solid from a shell or compound - Skapa en solid från ett skal eller en sammansättning - - - - CmdPartMirror - - - Part - Detalj - - - - Mirroring... - Spegling... - - - - Mirroring a selected shape - Spegling av en markerad form - - - - CmdPartPickCurveNet - - - Part - Detalj - - - - Pick curve network - Välj kurvnät - - - - Pick a curve network - Välj ett kurvnät - - - - CmdPartPrimitives - - - Part - Detalj - - - - Create primitives... - Skapa primitiver... - - - - Creation of parametrized geometric primitives - Skapa parametriserade geometriska primitiver - - - - CmdPartRefineShape - - - Part - Detalj - - - - Refine shape - - - - - Refine the copy of a shape - - - - - CmdPartReverseShape - - - Part - Detalj - - - - Reverse shapes - Omvända former - - - - Reverse orientation of shapes - Omvänd orientering av former - - - - CmdPartRevolve - - - Part - Detalj - - - - Revolve... - Rotera... - - - - Revolve a selected shape - Rotera en vald form - - - - CmdPartRuledSurface - - - Part - Detalj - - - - Create ruled surface - Skapa styrd yta - - - - Create a ruled surface from two curves - Skapa en styrd yta från två kurvor - - - - CmdPartSection - - - Make a section of two shapes - Gör ett tvärsnitt av två former - - - - Part - Detalj - - - - Section - Sektionering - - - - CmdPartShapeFromMesh - - - Part - Detalj - - - - Create shape from mesh... - Skapa form från nät ... - - - - Create shape from selected mesh object - Skapa form från valt nätobjekt - - - - CmdPartSimpleCopy - - - Part - Detalj - - - - Create simple copy - Skapa en enkel kopia - - - - Create a simple non-parametric copy - Skapa en enkel icke-parametrisk kopia - - - - CmdPartSimpleCylinder - - - Part - Detalj - - - - Create Cylinder... - Skapa Cylinder... - - - - Create a Cylinder - Skapa en Cylinder - - - - CmdPartSphere - - - Create a sphere solid - Skapa en sfär solid - - - - Part - Detalj - - - - Sphere - Sfär - - - - CmdPartSweep - - - Part - Detalj - - - - Sweep... - - - - - Utility to sweep - - - - - CmdPartTorus - - - Create a torus solid - Skapa en torus solid - - - - Part - Detalj - - - - Torus - Torus - - - - DlgExtrusion - - Select a shape for extrusion, first. - Välj en form för extrudering först. - - - The document '%1' doesn't exist. - Dokumentet "%1" finns inte. - - - - DlgRevolution - - Select a shape for revolution, first. - Välj en form för rotering först. - - - - DlgSettings3DViewPart - - Deviation - Avvikelse - - - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Att ställa in en för liten avvikelse orsakar tesselleringen att ta längre tid och därmed fryser eller saktar ner det grafiska gränssnittet. - - - - PartGui::CrossSections - - - Cross sections - Tvärsnitt - - - - Guiding plane - Vägledande plan - - - - XY - XY - - - - XZ - XZ - - - - YZ - YZ - - - - Position: - Position: - - - - Sections - Sektionering - - - - On both sides - På båda sidor - - - - Count - Antal - - - - Distance: - Avstånd: - - - - PartGui::DlgBooleanOperation - - - Boolean Operation - Boolesk operation - - - - Second shape - Andra formen - - - - First shape - Första formen - - - - Boolean operation - Boolesk operation - - - - Section - Sektionering - - - - Difference - Skillnad - - - - Union - Förening - - - - Intersection - Skärning - - - - Cannot perform a boolean operation with the same shape - Kan inte utföra en boolesk operation med samma form - - - - - Solids - Solider - - - - - Shells - Skal - - - - - Compounds - Sammansättningar - - - - - Faces - Ytor - - - - Swap selection - Växla urval - - - - Select a shape on the left side, first - Välj en form på vänster sida först - - - - Select a shape on the right side, first - Välj en form till höger först - - - - No active document available - Inget tillgängligt aktivt dokument - - - - One of the selected objects doesn't exist anymore - Ett av de markerade objekten finns inte längre - - - - Performing union on non-solids is not possible - Att utföra förening på icke-solider är inte möjligt - - - - Performing intersection on non-solids is not possible - Att utföra skärning på icke-solider är inte möjligt - - - - Performing difference on non-solids is not possible - Att utföra skillnad på icke-solider är inte möjligt - - - - PartGui::DlgChamferEdges - - - Chamfer Edges - - - - - PartGui::DlgExtrusion - - - Extrude - Extrudera - - - - Direction - Riktning - - - - Along normal - Längs normal - - - - Length: - Längd: - - - - 3D view - 3D vy - - - - Note:This option works for planes only - OBS: Detta alternativ fungerar endast för plan - - - - Create solid - Skapa solid - - - - Taper outward angle - - - - - Shape - Form - - - - - - - - X: - X: - - - - Z: - Z: - - - - Y: - Y: - - - - Select a shape for extrusion, first. - Välj en form för extrudering först. - - - - The document '%1' doesn't exist. - Dokumentet "%1" finns inte. - - - - PartGui::DlgFilletEdges - - - Fillet Edges - Runda av kanter - - - - Fillet Parameter - Avrundningsparameter - - - - Radius: - Radie: - - - - Fillet type: - Avrundningstyp: - - - - Constant Radius - Konstant radie - - - - Variable Radius - Variabel radie - - - - Shape - Form - - - - Selected shape: - Vald form: - - - - No selection - Inget val - - - - Edges to fillet - Kanter att avrunda - - - - - Start radius - Start radie - - - - End radius - Slut radie - - - - Radius - Radie - - - - No edge selected - Ingen kant vald - - - - No edge entity is checked to fillet. -Please check one or more edge entities first. - Ingen kant är vald för avrundning. -Välj en eller fler kanter först. - - - - All - Alla - - - - None - inget - - - - - Edge%1 - Kant%1 - - - - No shape selected - Ingen form har valts - - - - No valid shape is selected. -Please select a valid shape in the drop-down box first. - Ingen giltig form är markerad. Välj en giltig form i listrutan först. - - - - PartGui::DlgPartBox - - - Box definition - Låddefinition - - - - X: - X: - - - - Z: - Z: - - - - Y: - Y: - - - - Cancel - Avbryt - - - - OK - OK - - - - Size: - Storlek: - - - - Height: - Höjd: - - - - Width: - Bredd: - - - - Length: - Längd: - - - - Position: - Position: - - - - Direction: - Riktning: - - - - PartGui::DlgPartCylinder - - - Cylinder definition - Cylinder definition - - - - Parameter - Parameter - - - - Height: - Höjd: - - - - Radius: - Radie: - - - - Position: - Position: - - - - Direction: - Riktning: - - - - X: - X: - - - - Z: - Z: - - - - Y: - Y: - - - - OK - OK - - - - Cancel - Avbryt - - - - PartGui::DlgPartImportIges - - - IGES input file - IGES-Inmatningsfil - - - - ... - ... - - - - Cancel - Avbryt - - - - OK - OK - - - - File Name - Filnamn - - - - - - - - PartGui::DlgPartImportIgesImp - - - IGES (*.igs *.iges);;All Files (*.*) - IGES (*.igs *.iges);;Alla filer (*.*) - - - - PartGui::DlgPartImportStep - - - ... - ... - - - - Cancel - Avbryt - - - - OK - OK - - - - Step input file - Step inmatningsfil - - - - File Name - Filnamn - - - - - - - - PartGui::DlgPartImportStepImp - - - STEP (*.stp *.step);;All Files (*.*) - STEP (*.stp *.step);;Alla filer (*.*) - - - - PartGui::DlgPrimitives - - - Geometric Primitives - Geometriska primitiver - - - Primitive - Primitiv - - - X min - X min - - - x max - x max - - - Y min - Y min - - - Y max - Y max - - - Z min - Z min - - - Z max - Z max - - - X2 min - X2 min - - - X2 max - X2 max - - - Z2 min - Z2 min - - - Z2 max - Z2 max - - - Angle - 0 for cyl - Vinkel - 0 för cyl - - - Angle0 - Vinkel0 - - - Angle1 - Vinkel1 - - - X Axis Value: - X-Axel Värde: - - - Y Axis Value: - Y-Axel Värde: - - - Z Axis Value: - Z-Axel Värde: - - - - Wedge - Kil - - - - Circle - Cirkel - - - Vertex - Hörn - - - Position - Position - - - - - - Z: - Z: - - - - - - X: - X: - - - Direction: - Riktning: - - - - - - Y: - Y: - - - - Plane - Plan - - - - Box - Låda - - - - Cylinder - Cylinder - - - - Cone - Kon - - - - Sphere - Sfär - - - - Ellipsoid - Ellipsoid - - - - Torus - Torus - - - - Ellipse - - - - - Point - - - - - Line - - - - - Parameter - Parameter - - - - - Width: - Bredd: - - - - - Length: - Längd: - - - - - - - Height: - Höjd: - - - - - - Angle: - Vinkel: - - - - - - - Radius: - Radie: - - - - - - Radius 1: - Radie 1: - - - - - - Radius 2: - Radie 2: - - - - - - U parametric: - U parametrisk: - - - - - - V parametric: - V parametrisk: - - - - X min/max: - - - - - Y min/max: - - - - - Z min/max: - - - - - X2 min/max: - - - - - Z2 min/max: - - - - - Coordinate system: - - - - - Right-handed - - - - - Left-handed - - - - - - Angle 1: - - - - - - Angle 2: - - - - - From three points - - - - - Major radius: - - - - - Minor radius: - - - - - End point - - - - - Start point - - - - - &Create - &Skapa - - - Alt+C - Alt+S - - - Cl&ose - &Stäng - - - Alt+O - Alt+S - - - - - - Create %1 - Skapa %1 - - - - No active document - Inget aktivt dokument - - - - Pitch: - Lutning: - - - - Helix - Helix - - - 3D View - 3D-vy - - - - PartGui::DlgRevolution - - - Revolve - Rotera - - - - Y: - Y: - - - - X: - X: - - - - Angle: - Vinkel: - - - - Z: - Z: - - - - Axis: - Axel: - - - - Shape - Form - - - - Select line in 3D view - - - - - Select a shape for revolution, first. - Välj en form för rotering först. - - - - PartGui::DlgSettings3DViewPart - - - View accuracy / Performance - Vynoggrannhet/Prestanda - - - - View smoothing - Visa utjämning - - - - Using high-quality normals - Använda högkvalitetsnormaler - - - - This will slow down render speed but will lead to nicer results - Detta kommer att sakta ned hastigheten, men kommer att leda till bättre resultat - - - - Defines the appearance of surfaces - Definierar ytornas utseende - - - - Shape view - Formvy - - - - Tessellation - Tessellering - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> - html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">plattskuggning/Phong skuggning</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Med plattskuggning så är ytnormalerna inte definierade för hörn vilket leder till ett orealistiskt utseende för kurvade ytor emedan om Phong skuggning ger ett jämnare utseende. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Om detta laternativ inte är valt så används Phong skuggning, om det är valt så används plattskuggning.</p></body></html> - - - - Do not define normal per vertex - Definiera inte normal för hörn - - - - Defines the deviation of tessellation to the actual surface - Definierar tesseleringens avvikelse till det egentliga ytan - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Mosaik</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Definierar den maximala avvikelsen mellan mosaiknätet och ytan. Ju mindre värde, desto långsammare beräkningshastighet men bättre utseende.</span></p></body></html> - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Tips</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definition av normaler för hörn kallas även<span style=" font-style:italic;">Phong skuggning</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">medan definition av normaler för yta kallas </span>Plattskuggning<span style=" font-style:normal;">.</span></p></body></html> - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Högkvalitetsnormaler</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Detta kommer att bromsa beräkningshastigheten men kommer att ge ett snyggare resultat.</p></body></html> - - - - Maximum deviation depending on the model bounding box - Maximal avvikelse beroende på modellens markeringsram - - - - % - % - - - - Deviation - Avvikelse - - - - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Att ställa in en för liten avvikelse orsakar tesselleringen att ta längre tid och därmed fryser eller saktar ner det grafiska gränssnittet. - - - - PartGui::DlgSettingsGeneral - - - General - Allmänt - - - - Export - Exportera - - - - Millimeter - Millimeter - - - - Meter - Meter - - - - Inch - Tum - - - - Units for export of STEP/IGES - Enheter för export av STEP / IGES - - - - Model settings - - - - - Automatically refine model after boolean operation - - - - - Automatically check model after boolean operation - - - - - PartGui::FaceColors - - - Face colors - - - - - Do you really want to cancel? - - - - - PartGui::Location - - - Location - - - - - Position - Position - - - - 3D View - 3D-vy - - - - PartGui::LoftWidget - - - - Vertex/Wire - Hörn/Tråd - - - - - Loft - Loft - - - - Too few elements - För få element - - - - At least two vertices, edges or wires are required. - - - - At least two vertices or wires are required. - Minst två hörn eller trådar krävs. - - - - PartGui::Mirroring - - - Mirroring - Spegling - - - - Shapes - Former - - - - Mirror plane: - Speglingsplan: - - - - XY plane - XY plan - - - - XZ plane - XZ plan - - - - YZ plane - YZ plan - - - - Base point: - Baspunkt: - - - - x - x - - - - y - Y - - - - z - z - - - - Select a shape for mirroring, first. - Välj en form för spegling först. - - - - No such document '%1'. - Inget sådant dokument '%1'. - - - - PartGui::ShapeBuilderWidget - - - - - - - Wrong selection - Fel val - - - - - Select two vertices - Välj två hörn - - - Select three or more edges - Välj tre eller flera kanter - - - - Select one or more edges - - - - - Select two or more faces - Markera två eller flera ytor - - - - Select only one part object - Välj bara ett del objekt - - - - Select two vertices to create an edge - Välj två hörn för att skapa en kant - - - - Select a closed set of edges - Välj en sluten uppsättning av kanter - - - - Select adjacent faces - Välj intilliggande ytor - - - - All shape types can be selected - Alla formtyper kan väljas - - - - PartGui::SweepWidget - - - - Vertex/Wire - Hörn/Tråd - - - - - Sweep - - - - - Sweep path - - - - - Select an edge or wire you want to sweep along. - - - - - Too few elements - För få element - - - - At least one edge or wire is required. - - - - - PartGui::TaskDialogEditDynamic - - Hint - Hint - - - Select Control. - Select Control. - - - Control - Control - - - Dynamic - Dynamic - - - Align - Align - - - Value - Värde - - - Special - Special - - - Command - Kommando - - - Stretch - Stretch - - - Move - Flytta - - - Rotate - Rotera - - - Offset - Offset - - - Orient - Orient - - - Match - Match - - - Surround - Surround - - - dummy - dummy - - - X Axis - X Axis - - - Y Axis - Y Axis - - - Z Axis - Z Axis - - - Increment - Increment - - - .125 - .125 - - - .500 - .500 - - - 1.000 - 1.000 - - - 5.000 - 5.000 - - - 10.000 - 10.000 - - - Drag arrows to stretch box by increment - Drag arrows to stretch box by increment - - - Drag arrows to move box by increment - Drag arrows to move box by increment - - - Not implemented yet - Not implemented yet - - - Drag arrows to offset checked axes by increment - Drag arrows to offset checked axes by increment - - - Select dragger for stretch by align - Select dragger for stretch by align - - - Select dragger for move by align - Select dragger for move by align - - - Select dragger for stretch by value - Select dragger for stretch by value - - - Select dragger for move by value - Select dragger for move by value - - - 1.0 - 1.0 - - - Enter Value - Enter Value - - - Select box to match - Select box to match - - - Select a point - Select a point - - - 0.0 - 0.0 - - - Select dragger to align - Select dragger to align - - - Select dragger to modify - Select dragger to modify - - - - PartGui::TaskFaceColors - - - Set color per face - Sätt färg per yta - - - - Click on the faces in the 3d view to select them. - Klicka på ytor i 3d-vyn för att välja dem. - - - - Faces: - Ytor: - - - - Set to default - Ange som standard - - - - PartGui::TaskLoft - - - Loft - Loft - - - Vertex/Wire - Hörn/Tråd - - - Move right - Flytta åt höger - - - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Flytta det markerade objektet en nivå nedåt.</b> <p> Detta kommer också att ändra nivån för föräldraobjektet. </p> - - - Move left - Flytta åt vänster - - - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Flytta det markerade objektet en nivå upp.</b> <p> Detta kommer också att ändra nivån för föräldraobjektet. </p> - - - Move up - Flytta upp - - - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Flytta det markerade objektet uppåt.</b> <p> Objektet kommer att flyttas inom hierarkinivån. </p> - - - Move down - Flytta ned - - - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Flytta det markerade objektet nedåt.</b> <p> Objektet kommer att flyttas inom hierarkinivån. </p> - - - - Create solid - Skapa solid - - - - Ruled surface - Enkelkrökt yta - - - - PartGui::TaskShapeBuilder - - - - Create shape - Skapa form - - - - Edge from vertices - Kanter från hörn - - - - Face from edges - Ytor från kanter - - - - Planar - Planär - - - - Shell from faces - Skal från ytor - - - - Solid from shell - Solid från skal - - - - Create - Skapa - - - - All faces - Alla ytor - - - - PartGui::TaskSweep - - - Sweep - - - - - Create solid - Skapa solid - - - - Frenet - - - - - Select one or more profiles and select an edge or wire -in the 3D view for the sweep path. - - - - - QObject - - - - - - - Wrong selection - Fel val - - - - - Select two shapes please. - Välj två former. - - - - - - All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) - Alla CAD filer (*.stp *.step *.igs *.iges *.brp *.brep) - - - - - - STEP (*.stp *.step) - STEP (*.STP *.step) - - - - - - IGES (*.igs *.iges) - IGES (*.IGS *.IGES) - - - - - - BREP (*.brp *.brep) - BREP (*.BRP *.brep) - - - - - - All Files (*.*) - Alla filer (*.*) - - - - Sewing Tolerance - Sömntolerans - - - - Enter tolerance for sewing shape: - Ange tolerans för för att sömma ihop formen: - - - - Edit mirror plane - Redigera speglingsplan - - - - Edit chamfer edges - - - - Transform - Omvandla - - - - - Part design - Del design - - - - - Select two shapes or more, please. - Välj två figurer eller mer, tack. - - - - You have to select either two edges or two wires. - Du måste antingen välja två kanter eller två trådar. - - - - Edit fillet edges - Redigera avrundade kanter - - - - Set colors... - Ställ in färgerna ... - - - - Workbench - - - &Part - &Del - - - - &Simple - &Enkel - - - - &Parametric - &Parametrisk - - - - Part tools - Del verktyg - - - - Solids - Solider - - - - Boolean - Boolesk - - - diff --git a/src/Mod/Part/Gui/Resources/translations/Part_sk.qm b/src/Mod/Part/Gui/Resources/translations/Part_sk.qm new file mode 100644 index 000000000..9cf06db2b Binary files /dev/null and b/src/Mod/Part/Gui/Resources/translations/Part_sk.qm differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_sk.ts b/src/Mod/Part/Gui/Resources/translations/Part_sk.ts new file mode 100644 index 000000000..5145b6394 --- /dev/null +++ b/src/Mod/Part/Gui/Resources/translations/Part_sk.ts @@ -0,0 +1,2128 @@ + + + + + BlockDefinition + + + Block definition + Definícia kocky + + + First limit + Prvá hranica + + + Type: + Typ: + + + mm + mm + + + Length: + Dĺžka: + + + Dimension + Kóta + + + Up to next + Až po ďalší + + + Up to last + Až po posledný + + + Up to plane + Až po rovinu + + + Up to face + Až po prednú stranu + + + Limit: + Hranica: + + + No selection + bez výberu + + + Profile + Profil + + + Selection: + Výber: + + + Reverse + Naspäť + + + Both sides + Obe strany + + + Second limit + Druhý limit + + + Direction + Smer + + + Perpendicular to sketch + Kolmo k náčrtu + + + Reference + Odkaz + + + Apply + Použiť + + + Cancel + Zrušiť + + + OK + OK + + + + CmdPartBoolean + + + Part + Časť + + + Boolean... + Boolovská hodnota... + + + Run a boolean operation with two shapes selected + Spustiť boolovskú operáciu s dvoma vybranými tvarmi + + + + CmdPartBox + + + Part + Časť + + + Box + Obdĺžnik + + + Create a box solid + Create a box solid + + + + CmdPartBox2 + + + Part + Časť + + + Box fix 1 + Box fix 1 + + + Create a box solid without dialog + Create a box solid without dialog + + + + CmdPartBox3 + + Part + Časť + + + Box fix 2 + Box fix 2 + + + Create a box solid without dialog + Create a box solid without dialog + + + + CmdPartBuilder + + Part + Časť + + + Shape builder... + Tvorca tvarov... + + + Advanced utility to create shapes + Pokročilá utilita pre vytvorenie tvarov + + + + CmdPartChamfer + + Part + Časť + + + Chamfer... + Chamfer... + + + Chamfer the selected edges of a shape + Chamfer the selected edges of a shape + + + + CmdPartCommon + + Part + Časť + + + Intersection + Intersection + + + Make an intersection of two shapes + Vyrobí prienik dvoch tvarov + + + + CmdPartCone + + + Part + Časť + + + Cone + Kužeľ + + + Create a cone solid + Vytvoriť plný kužeľ + + + + CmdPartCrossSections + + + Part + Časť + + + Cross-sections... + Cross-sections... + + + Cross-sections + Cross-sections + + + + CmdPartCut + + Part + Časť + + + Cut + Vystrihnúť + + + Make a cut of two shapes + Spraviť výrez z dvoch tvarov + + + + CmdPartCylinder + + + Part + Časť + + + Create a Cylinder + Vytvoriť valec + + + Cylinder + Valec + + + + CmdPartExport + + + Part + Časť + + + Export CAD... + Exportovať CAD... + + + Exports to a CAD file + Exportuje do CAD súboru + + + + CmdPartExtrude + + Part + Časť + + + Extrude... + Vystrčiť... + + + Extrude a selected sketch + Vystrčiť vybraný náčrt + + + + CmdPartFillet + + Part + Časť + + + Fillet... + Zaoblenie... + + + Fillet the selected edges of a shape + Zaobliť vybrané hrany a tvary + + + + CmdPartFuse + + Part + Časť + + + Union + Spojenie + + + Make a union of several shapes + Spojiť viacero tvarov + + + + CmdPartImport + + Part + Časť + + + Imports a CAD file + Import CAD súboru + + + Import CAD... + Import CAD... + + + + CmdPartImportCurveNet + + Part + Časť + + + Import a curve network + Importovať krivky siete + + + Import curve network... + Importovať krivky siete... + + + + CmdPartLoft + + Part + Časť + + + Loft... + Podkrovia... + + + Utility to loft + Utility to loft + + + Advanced utility to lofts + Rozšírené nástroje pre podkrovia + + + + CmdPartMakeSolid + + Part + Časť + + + Convert to solid + Convert to solid + + + Create solid from a shell or compound + Create solid from a shell or compound + + + + CmdPartMirror + + Part + Časť + + + Mirroring... + Mirroring... + + + Mirroring a selected shape + Mirroring a selected shape + + + + CmdPartPickCurveNet + + Part + Časť + + + Pick curve network + Vybrať krivky siete + + + Pick a curve network + Vybrať krivky siete + + + + CmdPartPrimitives + + Part + Časť + + + Create primitives... + Vytvoriť základné... + + + Creation of parametrized geometric primitives + Vytvorenie parametrizovateľných základných geometrických tvarov + + + + CmdPartRefineShape + + + Part + Časť + + + Refine shape + Refine shape + + + Refine the copy of a shape + Refine the copy of a shape + + + + CmdPartReverseShape + + + Part + Časť + + + Reverse shapes + Reverse shapes + + + Reverse orientation of shapes + Reverse orientation of shapes + + + + CmdPartRevolve + + Part + Časť + + + Revolve... + Otáčanie... + + + Revolve a selected shape + Otočiť vybraný tvar + + + + CmdPartRuledSurface + + Part + Časť + + + Create ruled surface + Vytvoriť pevný povrch + + + Create a ruled surface from two curves + Z dvoch kriviek vytvorí pevný povrch + + + + CmdPartSection + + Make a section of two shapes + Vyrobiť sekciu z dvoch tvarov + + + Part + Časť + + + Section + Oddiel + + + + CmdPartShapeFromMesh + + + Part + Časť + + + Create shape from mesh... + Vytvoriť tvar zo siete... + + + Create shape from selected mesh object + Vytvoriť tvar z vybraných objektov pletiva + + + + CmdPartSimpleCopy + + Part + Časť + + + Create simple copy + Vytvoriť samostatnú kópiu + + + Create a simple non-parametric copy + Create a simple non-parametric copy + + + + CmdPartSimpleCylinder + + Part + Časť + + + Create Cylinder... + Vytvoriť valec... + + + Create a Cylinder + Vytvoriť valec + + + + CmdPartSphere + + + Create a sphere solid + Vytvoriť plnú guľu + + + Part + Časť + + + Sphere + Guľa + + + + CmdPartSweep + + + Part + Časť + + + Sweep... + Sweep... + + + Utility to sweep + Utility to sweep + + + + CmdPartTorus + + + Create a torus solid + Vytvoriť plný prstenec + + + Part + Časť + + + Torus + Kruhový prstenec + + + + DlgExtrusion + + Select a shape for extrusion, first. + Select a shape for extrusion, first. + + + The document '%1' doesn't exist. + The document '%1' doesn't exist. + + + + DlgRevolution + + Select a shape for revolution, first. + Select a shape for revolution, first. + + + + DlgSettings3DViewPart + + Deviation + Deviation + + + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + + + + PartGui::CrossSections + + + Cross sections + Prierezy + + + Guiding plane + Vodiaca rovina + + + XY + XY + + + XZ + XZ + + + YZ + YZ + + + Position: + Pozícia: + + + Sections + Oddiely + + + On both sides + Na oboch stranách + + + Count + Počet + + + Distance: + Vzdialenosť: + + + + PartGui::DlgBooleanOperation + + + Boolean Operation + Boolovská operácia + + + Second shape + Druhý tvar + + + First shape + Prvý tvar + + + Boolean operation + Boolovská operácia + + + Section + Oddiel + + + Difference + Difference + + + Union + Spojenie + + + Intersection + Intersection + + + + Cannot perform a boolean operation with the same shape + Boolovská operácia sa nedá vykonať s rovnakým tvarom + + + + Solids + Výplne + + + Shells + Plášte + + + Compounds + Zlúčené + + + Faces + Predné strany + + + Swap selection + Prehodiť výber + + + + Select a shape on the left side, first + Najprv vyberte tvar na ľavej strane, + + + Select a shape on the right side, first + Najprv vyberte tvar na pravej strane, + + + No active document available + Nie je k dispozícií žiadny aktívny dokument + + + One of the selected objects doesn't exist anymore + Jeden z vybratých objektov už neexistuje + + + Performing union on non-solids is not possible + Spojenie ne-tuhých predmetov nie je možné + + + Performing intersection on non-solids is not possible + Nedá sa zobraziť priesečník ne-tuhých predmetov + + + Performing difference on non-solids is not possible + Zistenie rozdielu na ne-tuhých predmetoch nie je možné + + + + PartGui::DlgChamferEdges + + + Chamfer Edges + Chamfer Edges + + + + PartGui::DlgExtrusion + + + Extrude + Vystrčiť + + + Direction + Smer + + + Along normal + Pozdĺž normálne + + + Length: + Dĺžka: + + + 3D view + 3D zobrazenie + + + Note:This option works for planes only + Poznámka: Táto voľba funguje len pre lietadlá + + + Create solid + Create solid + + + Taper outward angle + Taper outward angle + + + Shape + Tvar + + + + + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + + Select a shape for extrusion, first. + Select a shape for extrusion, first. + + + The document '%1' doesn't exist. + The document '%1' doesn't exist. + + + + PartGui::DlgFilletEdges + + + Fillet Edges + Plné hrany + + + Fillet Parameter + Parameter výplne + + + Radius: + Polomer: + + + Fillet type: + Typ výplne: + + + Constant Radius + Konštantný polomer + + + Variable Radius + Premenný polomer + + + Shape + Tvar + + + Selected shape: + Vybratý tvar: + + + No selection + bez výberu + + + + Edges to fillet + Edges to fillet + + + Start radius + Počiatočný polomer + + + End radius + Koncový polomer + + + Radius + Polomer + + + No edge selected + Nie je vybraná žiadna hrana + + + No edge entity is checked to fillet. +Please check one or more edge entities first. + No edge entity is checked to fillet. +Please check one or more edge entities first. + + + + All + Všetky + + + None + Žiadny + + + + Edge%1 + Okraj %1 + + + No shape selected + Nie je vybratý tvar + + + No valid shape is selected. +Please select a valid shape in the drop-down box first. + Nie sú vybrané žiadne platné tvary. +Najskôr prosím vyberte platný tvar v rozbaľovacom poli. + + + + PartGui::DlgPartBox + + + Box definition + Definícia obdĺžnika + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + Cancel + Zrušiť + + + OK + OK + + + Size: + Veľkosť: + + + Height: + Výška: + + + Width: + šírka: + + + Length: + Dĺžka: + + + Position: + Pozícia: + + + Direction: + Smer: + + + + PartGui::DlgPartCylinder + + + Cylinder definition + Definícia valca + + + Parameter + Parameter + + + Height: + Výška: + + + Radius: + Polomer: + + + Position: + Pozícia: + + + Direction: + Smer: + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + OK + OK + + + Cancel + Zrušiť + + + + PartGui::DlgPartImportIges + + + IGES input file + Vstupný súbor IGES + + + ... + ... + + + Cancel + Zrušiť + + + OK + OK + + + File Name + Názov súboru + + + + + + + + PartGui::DlgPartImportIgesImp + + + IGES (*.igs *.iges);;All Files (*.*) + IGES (*.igs *.iges);Všetky súbory (*.*) + + + + PartGui::DlgPartImportStep + + + ... + ... + + + Cancel + Zrušiť + + + OK + OK + + + Step input file + Step input file + + + File Name + Názov súboru + + + + + + + + PartGui::DlgPartImportStepImp + + + STEP (*.stp *.step);;All Files (*.*) + KROK (*.stp *.step);Všetky súbory (*.*) + + + + PartGui::DlgPrimitives + + + Geometric Primitives + Základné geometrické tvary + + + Primitive + Základné tvary + + + X min + X min + + + x max + x max + + + Y min + Y min + + + Y max + Y max + + + Z min + Z min + + + Z max + Z max + + + X2 min + X2 min + + + X2 max + X2 max + + + Z2 min + Z2 min + + + Z2 max + Z2 max + + + Angle - 0 for cyl + Angle - 0 for cyl + + + Angle0 + Uhol0 + + + Angle1 + Uhol1 + + + X Axis Value: + Hodnota osi X: + + + Y Axis Value: + Hodnota osi Y: + + + Z Axis Value: + Hodnota osi Z: + + + Wedge + Klin + + + Circle + Kružnica + + + Vertex + Vrchol + + + Position + Pozícia + + + Z: + Z: + + + X: + X: + + + Direction: + Smer: + + + Y: + Y: + + + Plane + Rovina + + + Box + Obdĺžnik + + + Cylinder + Valec + + + Cone + Kužeľ + + + Sphere + Guľa + + + Ellipsoid + Elipsoid + + + Torus + Kruhový prstenec + + + Ellipse + Ellipse + + + Point + Bod + + + Line + čiara + + + Parameter + Parameter + + + Width: + šírka: + + + Length: + Dĺžka: + + + Height: + Výška: + + + Angle: + Uhol: + + + Radius: + Polomer: + + + Radius 1: + Polomer 1: + + + Radius 2: + Polomer 2: + + + U parametric: + U parametric: + + + V parametric: + V parametric: + + + X min/max: + X min/max: + + + Y min/max: + Y min/max: + + + Z min/max: + Z min/max: + + + X2 min/max: + X2 min/max: + + + Z2 min/max: + Z2 min/max: + + + Coordinate system: + Coordinate system: + + + Right-handed + Right-handed + + + Left-handed + Left-handed + + + Angle 1: + Angle 1: + + + Angle 2: + Angle 2: + + + From three points + From three points + + + Major radius: + Major radius: + + + Minor radius: + Minor radius: + + + End point + End point + + + Start point + Start point + + + + &Create + &Vytvoriť + + + Alt+C + Alt+C + + + Cl&ose + Zatvoriť + + + Alt+O + ALT+O + + + Create %1 + Vytvorené %1 + + + No active document + Žiadny aktívny dokument + + + + Pitch: + Rozstup: + + + Helix + Špirála + + + 3D View + 3D pohľad + + + + PartGui::DlgRevolution + + + Revolve + Otáčanie + + + Y: + Y: + + + X: + X: + + + Angle: + Uhol: + + + Z: + Z: + + + Axis: + Os: + + + Shape + Tvar + + + Select line in 3D view + Select line in 3D view + + + + Select a shape for revolution, first. + Select a shape for revolution, first. + + + + PartGui::DlgSettings3DViewPart + + + View accuracy / Performance + Zobraziť presnosť/výkonnosť + + + View smoothing + Zobraziť vyhladenie + + + Using high-quality normals + Použitie vysoko kvalitných normál + + + This will slow down render speed but will lead to nicer results + Toto spomalí vzorkovaciu rýchlosť ale povedie k lepším výsledkom + + + Defines the appearance of surfaces + Defines the appearance of surfaces + + + Shape view + Zobrazenie tvaru + + + Tessellation + Rozkúskovanie + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + + + Do not define normal per vertex + Do not define normal per vertex + + + Defines the deviation of tessellation to the actual surface + Defines the deviation of tessellation to the actual surface + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definovanie normál vrcholu sa taktiež nazýva <span style=" font-style:italic;">tieňovaním Phong</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">zatiaľ čo definovanie normál priečelia sa nazýva </span>tieňovaním Plochy<span style=" font-style:normal;">.</span></p></body></html> + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + + + Maximum deviation depending on the model bounding box + Maximálna odchýlka v závislosti od modelu viazaného rámčeka + + + % + % + + + + Deviation + Deviation + + + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + + + + PartGui::DlgSettingsGeneral + + + General + Všeobecné + + + Export + Export + + + Millimeter + Milimeter + + + Meter + Meter + + + Inch + Palec + + + Units for export of STEP/IGES + Jednotky pri exporte STEP/IGES + + + Model settings + Model settings + + + Automatically refine model after boolean operation + Automatically refine model after boolean operation + + + Automatically check model after boolean operation + Automatically check model after boolean operation + + + + PartGui::FaceColors + + + Face colors + Face colors + + + Do you really want to cancel? + Do you really want to cancel? + + + + PartGui::Location + + + Location + Location + + + Position + Pozícia + + + 3D View + 3D pohľad + + + + PartGui::LoftWidget + + + Vertex/Wire + Vrchol/drôt + + + Loft + Podkrovie + + + Too few elements + Too few elements + + + At least two vertices, edges or wires are required. + At least two vertices, edges or wires are required. + + + At least two vertices or wires are required. + At least two vertices or wires are required. + + + + PartGui::Mirroring + + + Mirroring + Zrkadlenie + + + Shapes + Tvary + + + Mirror plane: + Zrkadlová rovina: + + + XY plane + Rovina XY + + + XZ plane + Rovina XZ + + + YZ plane + Rovina YZ + + + Base point: + Base point: + + + x + x + + + y + y + + + z + z + + + + Select a shape for mirroring, first. + Select a shape for mirroring, first. + + + No such document '%1'. + Žiadny takýto dokument '%1'. + + + + PartGui::ShapeBuilderWidget + + + Wrong selection + Chybný výber + + + Select two vertices + Select two vertices + + + Select three or more edges + Select three or more edges + + + Select one or more edges + Select one or more edges + + + Select two or more faces + Vyberte dva alebo viac plôch + + + Select only one part object + Vyberte iba jednu časť objektu + + + Select two vertices to create an edge + Vyberte dva vrcholy k vytvoreniu hrany + + + Select a closed set of edges + Select a closed set of edges + + + Select adjacent faces + Vybrať priľahlé plochy + + + All shape types can be selected + Všetky typy tvarov môžu byť vybraté + + + + PartGui::SweepWidget + + + Vertex/Wire + Vrchol/drôt + + + Sweep + Sweep + + + Sweep path + Sweep path + + + Select an edge or wire you want to sweep along. + Select an edge or wire you want to sweep along. + + + Too few elements + Too few elements + + + At least one edge or wire is required. + At least one edge or wire is required. + + + + PartGui::TaskDialogEditDynamic + + Hint + Tip + + + Select Control. + Vyberte Ovládač. + + + Control + Control + + + Dynamic + Dynamický + + + Align + Zarovnať + + + Value + Hodnota + + + Special + Špeciálne + + + Command + Príkaz + + + Stretch + Roztiahnuť + + + Move + Presunúť + + + Rotate + Otočiť + + + Offset + Odsadenie + + + Orient + Orient + + + Match + Match + + + Surround + Surround + + + dummy + maketa + + + X Axis + X Os + + + Y Axis + Y Os + + + Z Axis + Z Os + + + Increment + Prírastok + + + .125 + .125 + + + .500 + .500 + + + 1.000 + 1.000 + + + 5.000 + 5.000 + + + 10.000 + 10.000 + + + Drag arrows to stretch box by increment + Drag arrows to stretch box by increment + + + Drag arrows to move box by increment + Drag arrows to move box by increment + + + Not implemented yet + Not implemented yet + + + Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment + + + Select dragger for stretch by align + Select dragger for stretch by align + + + Select dragger for move by align + Select dragger for move by align + + + Select dragger for stretch by value + Select dragger for stretch by value + + + Select dragger for move by value + Select dragger for move by value + + + 1.0 + 1.0 + + + Enter Value + Enter Value + + + Select box to match + Select box to match + + + Select a point + Select a point + + + 0.0 + 0.0 + + + Select dragger to align + Select dragger to align + + + Select dragger to modify + Select dragger to modify + + + + PartGui::TaskFaceColors + + + Set color per face + Nastaviť farbu podľa plochy + + + Click on the faces in the 3d view to select them. + Pre výber kliknite na plochy v 3d zobrazení. + + + Faces: + Predné strany: + + + Set to default + Nastaviť ako predvolený + + + + PartGui::TaskLoft + + + Loft + Podkrovie + + + Vertex/Wire + Vrchol/drôt + + + Move right + Posun vpravo + + + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Posunúť vybratú položku o úroveň dole.</b><p>To taktiež zmení úroveň rodičovskej položky.</p> + + + Move left + Posunúť vľavo + + + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Posunúť vybratú položku o úroveň hore.</b><p>To taktiež zmení úroveň rodičovskej položky.</p> + + + Move up + Posunúť hore + + + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Posunúť vybratú položku hore.</b><p>Položka sa posunie aj v hierarchií.</p> + + + Move down + Posunúť dole + + + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Posunúť vybratú položku dole.</b><p>Položka sa posunie aj v hierarchií.</p> + + + Create solid + Create solid + + + Ruled surface + Prevládajúci povrch + + + + PartGui::TaskShapeBuilder + + + Create shape + Vytvoriť tvar + + + Edge from vertices + Edge from vertices + + + Face from edges + Face from edges + + + Planar + Planar + + + Shell from faces + Shell from faces + + + Solid from shell + Solid from shell + + + Create + Vytvoriť + + + All faces + Všetky plochy + + + + PartGui::TaskSweep + + + Sweep + Sweep + + + Create solid + Create solid + + + Frenet + Frenet + + + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. + + + + QObject + + + Wrong selection + Chybný výber + + + Select two shapes please. + Prosím označ dva tvary. + + + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + Všetky CAD súbory (*.stp *.step *.igs *.iges *.brp *.brep) + + + STEP (*.stp *.step) + STEP (*.stp *.step) + + + IGES (*.igs *.iges) + IGES (*.igs *.iges) + + + BREP (*.brp *.brep) + BREP (*.brp *.brep) + + + All Files (*.*) + Všetky súbory (*.*) + + + + Sewing Tolerance + Sewing Tolerance + + + Enter tolerance for sewing shape: + Enter tolerance for sewing shape: + + + + Edit mirror plane + Edit mirror plane + + + Edit chamfer edges + Edit chamfer edges + + + Transform + Transformácia + + + + Part design + Časť návrhu + + + + Select two shapes or more, please. + Vyberte dva alebo viacej tvarov, prosím. + + + You have to select either two edges or two wires. + Vyberte dve rozdielne hrany alebo dva rozdielne drôty. + + + + Edit fillet edges + Editovať plné hrany + + + + Set colors... + Nastaviť farby... + + + + Workbench + + + &Part + &Part + + + &Simple + &Simple + + + &Parametric + &Parametric + + + Part tools + Part tools + + + Solids + Výplne + + + Boolean + Boolovská hodnota + + + diff --git a/src/Mod/Part/Gui/Resources/translations/Part_sv-SE.qm b/src/Mod/Part/Gui/Resources/translations/Part_sv-SE.qm new file mode 100644 index 000000000..83336351a Binary files /dev/null and b/src/Mod/Part/Gui/Resources/translations/Part_sv-SE.qm differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_sv-SE.ts b/src/Mod/Part/Gui/Resources/translations/Part_sv-SE.ts new file mode 100644 index 000000000..65a2f27ea --- /dev/null +++ b/src/Mod/Part/Gui/Resources/translations/Part_sv-SE.ts @@ -0,0 +1,2127 @@ + + + + + BlockDefinition + + + Block definition + Block definition + + + First limit + Första begränsningen + + + Type: + Typ: + + + mm + mm + + + Length: + Längd: + + + Dimension + Dimension + + + Up to next + Upp till nästa + + + Up to last + Upp till sista + + + Up to plane + Upp till plan + + + Up to face + Upp till yta + + + Limit: + Begränsning: + + + No selection + Inget val + + + Profile + Profil + + + Selection: + Markering: + + + Reverse + Omvänd + + + Both sides + Båda sidor + + + Second limit + Andra begränsningen + + + Direction + Riktning + + + Perpendicular to sketch + Vinkelrätt mot skiss + + + Reference + Referens + + + Apply + Verkställ + + + Cancel + Avbryt + + + OK + OK + + + + CmdPartBoolean + + + Part + Detalj + + + Boolean... + Boolesk... + + + Run a boolean operation with two shapes selected + Kör en boolesk operation med två valda former + + + + CmdPartBox + + + Part + Detalj + + + Box + Låda + + + Create a box solid + Skapa en lådsolid + + + + CmdPartBox2 + + + Part + Detalj + + + Box fix 1 + Kub fix 1 + + + Create a box solid without dialog + Skapa en lådsolid utan dialogruta + + + + CmdPartBox3 + + Part + Detalj + + + Box fix 2 + Kub fix 2 + + + Create a box solid without dialog + Skapa en lådsolid utan dialogruta + + + + CmdPartBuilder + + Part + Detalj + + + Shape builder... + form byggare ... + + + Advanced utility to create shapes + Avancerade verktyg för att skapa former + + + + CmdPartChamfer + + Part + Detalj + + + Chamfer... + Avfasning... + + + Chamfer the selected edges of a shape + Fasa de markerade kanterna av en form + + + + CmdPartCommon + + Part + Detalj + + + Intersection + Skärning + + + Make an intersection of two shapes + Gör en skärning mellan två former + + + + CmdPartCone + + + Part + Detalj + + + Cone + Kon + + + Create a cone solid + Skapa en kon solid + + + + CmdPartCrossSections + + + Part + Detalj + + + Cross-sections... + Tvärsnitt... + + + Cross-sections + Tvärsnitt + + + + CmdPartCut + + Part + Detalj + + + Cut + Klipp + + + Make a cut of two shapes + Gör ett klipp med två former + + + + CmdPartCylinder + + + Part + Detalj + + + Create a Cylinder + Skapa en Cylinder + + + Cylinder + Cylinder + + + + CmdPartExport + + + Part + Detalj + + + Export CAD... + Exportera CAD ... + + + Exports to a CAD file + Exporterar till en CAD-fil + + + + CmdPartExtrude + + Part + Detalj + + + Extrude... + Extrudera... + + + Extrude a selected sketch + Extrudera en vald skiss + + + + CmdPartFillet + + Part + Detalj + + + Fillet... + Fasning... + + + Fillet the selected edges of a shape + Fasa av de valda kanterna på en form + + + + CmdPartFuse + + Part + Detalj + + + Union + Förening + + + Make a union of several shapes + Gör en förening av flera former + + + + CmdPartImport + + Part + Detalj + + + Imports a CAD file + Importerar en CAD-fil + + + Import CAD... + Importera CAD... + + + + CmdPartImportCurveNet + + Part + Detalj + + + Import a curve network + Importera ett kurvnät + + + Import curve network... + Importera kurvnät... + + + + CmdPartLoft + + Part + Detalj + + + Loft... + Loft ... + + + Utility to loft + Utility to loft + + + Advanced utility to lofts + Avancerade verktyg för loft + + + + CmdPartMakeSolid + + Part + Detalj + + + Convert to solid + Konvertera till solid + + + Create solid from a shell or compound + Skapa en solid från ett skal eller en sammansättning + + + + CmdPartMirror + + Part + Detalj + + + Mirroring... + Spegling... + + + Mirroring a selected shape + Spegling av en markerad form + + + + CmdPartPickCurveNet + + Part + Detalj + + + Pick curve network + Välj kurvnät + + + Pick a curve network + Välj ett kurvnät + + + + CmdPartPrimitives + + Part + Detalj + + + Create primitives... + Skapa primitiver... + + + Creation of parametrized geometric primitives + Skapa parametriserade geometriska primitiver + + + + CmdPartRefineShape + + + Part + Detalj + + + Refine shape + Förfina form + + + Refine the copy of a shape + Förfina en formkopia + + + + CmdPartReverseShape + + + Part + Detalj + + + Reverse shapes + Omvända former + + + Reverse orientation of shapes + Omvänd orientering av former + + + + CmdPartRevolve + + Part + Detalj + + + Revolve... + Rotera... + + + Revolve a selected shape + Rotera en vald form + + + + CmdPartRuledSurface + + Part + Detalj + + + Create ruled surface + Skapa styrd yta + + + Create a ruled surface from two curves + Skapa en styrd yta från två kurvor + + + + CmdPartSection + + Make a section of two shapes + Gör ett tvärsnitt av två former + + + Part + Detalj + + + Section + Sektionering + + + + CmdPartShapeFromMesh + + + Part + Detalj + + + Create shape from mesh... + Skapa form från nät ... + + + Create shape from selected mesh object + Skapa form från valt nätobjekt + + + + CmdPartSimpleCopy + + Part + Detalj + + + Create simple copy + Skapa en enkel kopia + + + Create a simple non-parametric copy + Skapa en enkel icke-parametrisk kopia + + + + CmdPartSimpleCylinder + + Part + Detalj + + + Create Cylinder... + Skapa Cylinder... + + + Create a Cylinder + Skapa en Cylinder + + + + CmdPartSphere + + + Create a sphere solid + Skapa en sfär solid + + + Part + Detalj + + + Sphere + Sfär + + + + CmdPartSweep + + + Part + Detalj + + + Sweep... + Sweep... + + + Utility to sweep + Utility to sweep + + + + CmdPartTorus + + + Create a torus solid + Skapa en torus solid + + + Part + Detalj + + + Torus + Torus + + + + DlgExtrusion + + Select a shape for extrusion, first. + Välj en form för extrudering först. + + + The document '%1' doesn't exist. + Dokumentet "%1" finns inte. + + + + DlgRevolution + + Select a shape for revolution, first. + Välj en form för rotering först. + + + + DlgSettings3DViewPart + + Deviation + Avvikelse + + + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Att ställa in en för liten avvikelse orsakar tesselleringen att ta längre tid och därmed fryser eller saktar ner det grafiska gränssnittet. + + + + PartGui::CrossSections + + + Cross sections + Tvärsnitt + + + Guiding plane + Vägledande plan + + + XY + XY + + + XZ + XZ + + + YZ + YZ + + + Position: + Position: + + + Sections + Sektionering + + + On both sides + På båda sidor + + + Count + Antal + + + Distance: + Avstånd: + + + + PartGui::DlgBooleanOperation + + + Boolean Operation + Boolesk operation + + + Second shape + Andra formen + + + First shape + Första formen + + + Boolean operation + Boolesk operation + + + Section + Sektionering + + + Difference + Skillnad + + + Union + Förening + + + Intersection + Skärning + + + + Cannot perform a boolean operation with the same shape + Kan inte utföra en boolesk operation med samma form + + + + Solids + Solider + + + Shells + Skal + + + Compounds + Sammansättningar + + + Faces + Ytor + + + Swap selection + Växla urval + + + + Select a shape on the left side, first + Välj en form på vänster sida först + + + Select a shape on the right side, first + Välj en form till höger först + + + No active document available + Inget tillgängligt aktivt dokument + + + One of the selected objects doesn't exist anymore + Ett av de markerade objekten finns inte längre + + + Performing union on non-solids is not possible + Att utföra förening på icke-solider är inte möjligt + + + Performing intersection on non-solids is not possible + Att utföra skärning på icke-solider är inte möjligt + + + Performing difference on non-solids is not possible + Att utföra skillnad på icke-solider är inte möjligt + + + + PartGui::DlgChamferEdges + + + Chamfer Edges + Fasa Kanter + + + + PartGui::DlgExtrusion + + + Extrude + Extrudera + + + Direction + Riktning + + + Along normal + Längs normal + + + Length: + Längd: + + + 3D view + 3D vy + + + Note:This option works for planes only + OBS: Detta alternativ fungerar endast för plan + + + Create solid + Skapa solid + + + Taper outward angle + Taper outward angle + + + Shape + Form + + + + + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + + Select a shape for extrusion, first. + Välj en form för extrudering först. + + + The document '%1' doesn't exist. + Dokumentet "%1" finns inte. + + + + PartGui::DlgFilletEdges + + + Fillet Edges + Runda av kanter + + + Fillet Parameter + Avrundningsparameter + + + Radius: + Radie: + + + Fillet type: + Avrundningstyp: + + + Constant Radius + Konstant radie + + + Variable Radius + Variabel radie + + + Shape + Form + + + Selected shape: + Vald form: + + + No selection + Inget val + + + + Edges to fillet + Kanter att avrunda + + + Start radius + Start radie + + + End radius + Slut radie + + + Radius + Radie + + + No edge selected + Ingen kant vald + + + No edge entity is checked to fillet. +Please check one or more edge entities first. + Ingen kant är vald för avrundning. +Välj en eller fler kanter först. + + + + All + Alla + + + None + inget + + + + Edge%1 + Kant%1 + + + No shape selected + Ingen form har valts + + + No valid shape is selected. +Please select a valid shape in the drop-down box first. + Ingen giltig form är markerad. Välj en giltig form i listrutan först. + + + + PartGui::DlgPartBox + + + Box definition + Låddefinition + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + Cancel + Avbryt + + + OK + OK + + + Size: + Storlek: + + + Height: + Höjd: + + + Width: + Bredd: + + + Length: + Längd: + + + Position: + Position: + + + Direction: + Riktning: + + + + PartGui::DlgPartCylinder + + + Cylinder definition + Cylinder definition + + + Parameter + Parameter + + + Height: + Höjd: + + + Radius: + Radie: + + + Position: + Position: + + + Direction: + Riktning: + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + OK + OK + + + Cancel + Avbryt + + + + PartGui::DlgPartImportIges + + + IGES input file + IGES-Inmatningsfil + + + ... + ... + + + Cancel + Avbryt + + + OK + OK + + + File Name + Filnamn + + + + + + + + PartGui::DlgPartImportIgesImp + + + IGES (*.igs *.iges);;All Files (*.*) + IGES (*.igs *.iges);;Alla filer (*.*) + + + + PartGui::DlgPartImportStep + + + ... + ... + + + Cancel + Avbryt + + + OK + OK + + + Step input file + Step inmatningsfil + + + File Name + Filnamn + + + + + + + + PartGui::DlgPartImportStepImp + + + STEP (*.stp *.step);;All Files (*.*) + STEP (*.stp *.step);;Alla filer (*.*) + + + + PartGui::DlgPrimitives + + + Geometric Primitives + Geometriska primitiver + + + Primitive + Primitiv + + + X min + X min + + + x max + x max + + + Y min + Y min + + + Y max + Y max + + + Z min + Z min + + + Z max + Z max + + + X2 min + X2 min + + + X2 max + X2 max + + + Z2 min + Z2 min + + + Z2 max + Z2 max + + + Angle - 0 for cyl + Vinkel - 0 för cyl + + + Angle0 + Vinkel0 + + + Angle1 + Vinkel1 + + + X Axis Value: + X-Axel Värde: + + + Y Axis Value: + Y-Axel Värde: + + + Z Axis Value: + Z-Axel Värde: + + + Wedge + Kil + + + Circle + Cirkel + + + Vertex + Hörn + + + Position + Position + + + Z: + Z: + + + X: + X: + + + Direction: + Riktning: + + + Y: + Y: + + + Plane + Plan + + + Box + Låda + + + Cylinder + Cylinder + + + Cone + Kon + + + Sphere + Sfär + + + Ellipsoid + Ellipsoid + + + Torus + Torus + + + Ellipse + Ellips + + + Point + Punkt + + + Line + Linje + + + Parameter + Parameter + + + Width: + Bredd: + + + Length: + Längd: + + + Height: + Höjd: + + + Angle: + Vinkel: + + + Radius: + Radie: + + + Radius 1: + Radie 1: + + + Radius 2: + Radie 2: + + + U parametric: + U parametrisk: + + + V parametric: + V parametrisk: + + + X min/max: + X min/max: + + + Y min/max: + Y min/max: + + + Z min/max: + Z min/max: + + + X2 min/max: + X2 min/max: + + + Z2 min/max: + Z2 min/max: + + + Coordinate system: + Koordinatsystem: + + + Right-handed + Right-handed + + + Left-handed + Left-handed + + + Angle 1: + Vinkel 1: + + + Angle 2: + Vinkel 2: + + + From three points + Från tre punkter + + + Major radius: + Stora radie: + + + Minor radius: + Lilla radie: + + + End point + Slutpunkt + + + Start point + Startpunkt + + + + &Create + &Skapa + + + Alt+C + Alt+S + + + Cl&ose + &Stäng + + + Alt+O + Alt+O + + + Create %1 + Skapa %1 + + + No active document + Inget aktivt dokument + + + + Pitch: + Lutning: + + + Helix + Helix + + + 3D View + 3D-vy + + + + PartGui::DlgRevolution + + + Revolve + Rotera + + + Y: + Y: + + + X: + X: + + + Angle: + Vinkel: + + + Z: + Z: + + + Axis: + Axel: + + + Shape + Form + + + Select line in 3D view + Markera linje i 3D-vy + + + + Select a shape for revolution, first. + Välj en form för rotering först. + + + + PartGui::DlgSettings3DViewPart + + + View accuracy / Performance + Vynoggrannhet/Prestanda + + + View smoothing + Visa utjämning + + + Using high-quality normals + Använda högkvalitetsnormaler + + + This will slow down render speed but will lead to nicer results + Detta kommer att sakta ned hastigheten, men kommer att leda till bättre resultat + + + Defines the appearance of surfaces + Definierar ytornas utseende + + + Shape view + Formvy + + + Tessellation + Tessellering + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">plattskuggning/Phong skuggning</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Med plattskuggning så är ytnormalerna inte definierade för hörn vilket leder till ett orealistiskt utseende för kurvade ytor emedan om Phong skuggning ger ett jämnare utseende. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Om detta laternativ inte är valt så används Phong skuggning, om det är valt så används plattskuggning.</p></body></html> + + + Do not define normal per vertex + Definiera inte normal för hörn + + + Defines the deviation of tessellation to the actual surface + Definierar tesseleringens avvikelse till det egentliga ytan + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Mosaik</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Definierar den maximala avvikelsen mellan mosaiknätet och ytan. Ju mindre värde, desto långsammare beräkningshastighet men bättre utseende.</span></p></body></html> + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Tips</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Definiera normaler för hörn kallas också<span style=" font-style:italic;">Phong skuggning</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">medan definition av normaler för yta kallas</span>Plattskuggning<span style=" font-style:normal;">.</span></p></body></html> + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Högkvalitetsnormaler</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Detta kommer att bromsa beräkningshastigheten men kommer att ge ett snyggare resultat.</p></body></html> + + + Maximum deviation depending on the model bounding box + Maximal avvikelse beroende på modellens markeringsram + + + % + % + + + + Deviation + Avvikelse + + + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Att ställa in en för liten avvikelse orsakar tesselleringen att ta längre tid och därmed fryser eller saktar ner det grafiska gränssnittet. + + + + PartGui::DlgSettingsGeneral + + + General + Allmänt + + + Export + Exportera + + + Millimeter + Millimeter + + + Meter + Meter + + + Inch + Tum + + + Units for export of STEP/IGES + Enheter för export av STEP / IGES + + + Model settings + Modellinställningar + + + Automatically refine model after boolean operation + Förfina modell automatiskt efter boolesk operation + + + Automatically check model after boolean operation + Kontrollera modell automatiskt efter boolesk operation + + + + PartGui::FaceColors + + + Face colors + Ytfärger + + + Do you really want to cancel? + Vill du verkligen avbryta? + + + + PartGui::Location + + + Location + Placering + + + Position + Position + + + 3D View + 3D-vy + + + + PartGui::LoftWidget + + + Vertex/Wire + Hörn/Tråd + + + Loft + Loft + + + Too few elements + För få element + + + At least two vertices, edges or wires are required. + Minst två hörn, kanter eller trådar behövs. + + + At least two vertices or wires are required. + Minst två hörn eller trådar krävs. + + + + PartGui::Mirroring + + + Mirroring + Spegling + + + Shapes + Former + + + Mirror plane: + Speglingsplan: + + + XY plane + XY plan + + + XZ plane + XZ plan + + + YZ plane + YZ plan + + + Base point: + Baspunkt: + + + x + x + + + y + Y + + + z + z + + + + Select a shape for mirroring, first. + Välj en form för spegling först. + + + No such document '%1'. + Inget sådant dokument '%1'. + + + + PartGui::ShapeBuilderWidget + + + Wrong selection + Fel val + + + Select two vertices + Välj två hörn + + + Select three or more edges + Välj tre eller flera kanter + + + Select one or more edges + Markera en eller flera kanter + + + Select two or more faces + Markera två eller flera ytor + + + Select only one part object + Välj bara ett del objekt + + + Select two vertices to create an edge + Välj två hörn för att skapa en kant + + + Select a closed set of edges + Välj en sluten uppsättning av kanter + + + Select adjacent faces + Välj intilliggande ytor + + + All shape types can be selected + Alla formtyper kan väljas + + + + PartGui::SweepWidget + + + Vertex/Wire + Hörn/Tråd + + + Sweep + Sweep + + + Sweep path + Sweep path + + + Select an edge or wire you want to sweep along. + Select an edge or wire you want to sweep along. + + + Too few elements + För få element + + + At least one edge or wire is required. + At least one edge or wire is required. + + + + PartGui::TaskDialogEditDynamic + + Hint + Tips + + + Select Control. + Markera kontroll. + + + Control + Kontroll + + + Dynamic + Dynamisk + + + Align + Justera + + + Value + Värde + + + Special + Special + + + Command + Kommando + + + Stretch + Sträck + + + Move + Flytta + + + Rotate + Rotera + + + Offset + Offset + + + Orient + Orientera + + + Match + Matcha + + + Surround + Omgivning + + + dummy + Dummy + + + X Axis + X-axel + + + Y Axis + Y-axel + + + Z Axis + Z-axel + + + Increment + Inkrement + + + .125 + .125 + + + .500 + .500 + + + 1.000 + 1,000 + + + 5.000 + 5.000 + + + 10.000 + 10.000 + + + Drag arrows to stretch box by increment + Dra pilarna för att sträcka ut lådan i inkrement + + + Drag arrows to move box by increment + Dra pilarna för att flytta lådan i inkrement + + + Not implemented yet + Inte implementerad ännu + + + Drag arrows to offset checked axes by increment + Dra pilarna för att offsetta kontrollerade axlar med inkrement + + + Select dragger for stretch by align + Välj dragare för sträckning genom justering + + + Select dragger for move by align + Välj dragare för flyttning genom justering + + + Select dragger for stretch by value + Välj dragare för sträckning genom värde + + + Select dragger for move by value + Välj dragare för flyttning genom värde + + + 1.0 + 1.0 + + + Enter Value + Ange värde + + + Select box to match + Markera låda som ska matchas + + + Select a point + Markera en punkt + + + 0.0 + 0.0 + + + Select dragger to align + Välj dragare för justering + + + Select dragger to modify + Välj dragare för modifiering + + + + PartGui::TaskFaceColors + + + Set color per face + Sätt färg per yta + + + Click on the faces in the 3d view to select them. + Klicka på ytor i 3d-vyn för att välja dem. + + + Faces: + Ytor: + + + Set to default + Ange som standard + + + + PartGui::TaskLoft + + + Loft + Loft + + + Vertex/Wire + Hörn/Tråd + + + Move right + Flytta åt höger + + + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Flytta det markerade objektet en nivå nedåt.</b> <p> Detta kommer också att ändra nivån för föräldraobjektet. </p> + + + Move left + Flytta åt vänster + + + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Flytta det markerade objektet en nivå upp.</b> <p> Detta kommer också att ändra nivån för föräldraobjektet. </p> + + + Move up + Flytta upp + + + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Flytta det markerade objektet uppåt.</b> <p> Objektet kommer att flyttas inom hierarkinivån. </p> + + + Move down + Flytta ned + + + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Flytta det markerade objektet nedåt.</b> <p> Objektet kommer att flyttas inom hierarkinivån. </p> + + + Create solid + Skapa solid + + + Ruled surface + Enkelkrökt yta + + + + PartGui::TaskShapeBuilder + + + Create shape + Skapa form + + + Edge from vertices + Kanter från hörn + + + Face from edges + Ytor från kanter + + + Planar + Planär + + + Shell from faces + Skal från ytor + + + Solid from shell + Solid från skal + + + Create + Skapa + + + All faces + Alla ytor + + + + PartGui::TaskSweep + + + Sweep + Sweep + + + Create solid + Skapa solid + + + Frenet + Frenet + + + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. + + + + QObject + + + Wrong selection + Fel val + + + Select two shapes please. + Välj två former. + + + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + Alla CAD filer (*.stp *.step *.igs *.iges *.brp *.brep) + + + STEP (*.stp *.step) + STEP (*.STP *.step) + + + IGES (*.igs *.iges) + IGES (*.IGS *.IGES) + + + BREP (*.brp *.brep) + BREP (*.BRP *.brep) + + + All Files (*.*) + Alla filer (*.*) + + + + Sewing Tolerance + Sömntolerans + + + Enter tolerance for sewing shape: + Ange tolerans för för att sömma ihop formen: + + + + Edit mirror plane + Redigera speglingsplan + + + Edit chamfer edges + Edit chamfer edges + + + Transform + Omvandla + + + + Part design + Del design + + + + Select two shapes or more, please. + Välj två figurer eller mer, tack. + + + You have to select either two edges or two wires. + Du måste antingen välja två kanter eller två trådar. + + + + Edit fillet edges + Redigera avrundade kanter + + + + Set colors... + Ställ in färgerna ... + + + + Workbench + + + &Part + &Del + + + &Simple + &Enkel + + + &Parametric + &Parametrisk + + + Part tools + Del verktyg + + + Solids + Solider + + + Boolean + Boolesk + + + diff --git a/src/Mod/Part/Gui/Resources/translations/Part_tr.qm b/src/Mod/Part/Gui/Resources/translations/Part_tr.qm new file mode 100644 index 000000000..0ff0589d0 Binary files /dev/null and b/src/Mod/Part/Gui/Resources/translations/Part_tr.qm differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_tr.ts b/src/Mod/Part/Gui/Resources/translations/Part_tr.ts new file mode 100644 index 000000000..61c7bebce --- /dev/null +++ b/src/Mod/Part/Gui/Resources/translations/Part_tr.ts @@ -0,0 +1,2128 @@ + + + + + BlockDefinition + + + Block definition + Blok tanımı + + + First limit + İlk sınır + + + Type: + Türü: + + + mm + mm + + + Length: + Uzunluk: + + + Dimension + Boyut + + + Up to next + Sonrakine kadar + + + Up to last + En sonuncusuna kadar + + + Up to plane + Düzleme kadar + + + Up to face + Yüze kadar + + + Limit: + Sınır: + + + No selection + Seçim yok + + + Profile + Yan görünüm + + + Selection: + Seçim: + + + Reverse + Ters çevir + + + Both sides + Her iki taraf + + + Second limit + İkinci sınır + + + Direction + Yön + + + Perpendicular to sketch + Çizime dik + + + Reference + Reference + + + Apply + Uygula + + + Cancel + İptal + + + OK + Tamam + + + + CmdPartBoolean + + + Part + Parça + + + Boolean... + Boolean... + + + Run a boolean operation with two shapes selected + Run a boolean operation with two shapes selected + + + + CmdPartBox + + + Part + Parça + + + Box + Box + + + Create a box solid + Create a box solid + + + + CmdPartBox2 + + + Part + Parça + + + Box fix 1 + Sabit kutu 1 + + + Create a box solid without dialog + Create a box solid without dialog + + + + CmdPartBox3 + + Part + Parça + + + Box fix 2 + Sabit kutu 2 + + + Create a box solid without dialog + Create a box solid without dialog + + + + CmdPartBuilder + + Part + Parça + + + Shape builder... + Shape builder... + + + Advanced utility to create shapes + Advanced utility to create shapes + + + + CmdPartChamfer + + Part + Parça + + + Chamfer... + Chamfer... + + + Chamfer the selected edges of a shape + Chamfer the selected edges of a shape + + + + CmdPartCommon + + Part + Parça + + + Intersection + Intersection + + + Make an intersection of two shapes + İki şeklin kesişimini oluştur + + + + CmdPartCone + + + Part + Parça + + + Cone + Koni + + + Create a cone solid + Katı bir koni oluştur + + + + CmdPartCrossSections + + + Part + Parça + + + Cross-sections... + Kesitler... + + + Cross-sections + Kesit + + + + CmdPartCut + + Part + Parça + + + Cut + Kes + + + Make a cut of two shapes + İki şeklin kesimini oluştur + + + + CmdPartCylinder + + + Part + Parça + + + Create a Cylinder + Bir silindir oluştur + + + Cylinder + Silindir + + + + CmdPartExport + + + Part + Parça + + + Export CAD... + CAD'ı dışarı aktar... + + + Exports to a CAD file + Bir CAD dosyasına aktar + + + + CmdPartExtrude + + Part + Parça + + + Extrude... + Patlat... + + + Extrude a selected sketch + Seçili bir çizimi patlat + + + + CmdPartFillet + + Part + Parça + + + Fillet... + Fillet... + + + Fillet the selected edges of a shape + Fillet the selected edges of a shape + + + + CmdPartFuse + + Part + Parça + + + Union + Birleştir + + + Make a union of several shapes + Çeşitli şekillerin birleşimini oluştur + + + + CmdPartImport + + Part + Parça + + + Imports a CAD file + Bir CAD dosyasını içeri aktarır + + + Import CAD... + CAD'i içeri aktar... + + + + CmdPartImportCurveNet + + Part + Parça + + + Import a curve network + Eğri bir ağı içeri aktar + + + Import curve network... + Eğri ağı içeri aktar... + + + + CmdPartLoft + + Part + Parça + + + Loft... + Çatı... + + + Utility to loft + Utility to loft + + + Advanced utility to lofts + Çatılara gelişmiş uygulama + + + + CmdPartMakeSolid + + Part + Parça + + + Convert to solid + Katı hale dönüştür + + + Create solid from a shell or compound + Bir kabuk veya bileşkeden katı cisim oluştur + + + + CmdPartMirror + + Part + Parça + + + Mirroring... + Aynalanıyor... + + + Mirroring a selected shape + Seçili bir şekli aynala + + + + CmdPartPickCurveNet + + Part + Parça + + + Pick curve network + Eğri ağı seç + + + Pick a curve network + Bir eğri ağı seç + + + + CmdPartPrimitives + + Part + Parça + + + Create primitives... + Temel öğeleri oluştur... + + + Creation of parametrized geometric primitives + Değişkenlerle tanımlanmış geometrik temel öğelerin oluşumu + + + + CmdPartRefineShape + + + Part + Parça + + + Refine shape + Refine shape + + + Refine the copy of a shape + Refine the copy of a shape + + + + CmdPartReverseShape + + + Part + Parça + + + Reverse shapes + Şekilleri ters çevir + + + Reverse orientation of shapes + Şekillerin dizilimini ters çevir + + + + CmdPartRevolve + + Part + Parça + + + Revolve... + Revolve... + + + Revolve a selected shape + Revolve a selected shape + + + + CmdPartRuledSurface + + Part + Parça + + + Create ruled surface + Düzenli yüzey oluştur + + + Create a ruled surface from two curves + İki eğri üzerinden düzenli bir yüzey oluştur + + + + CmdPartSection + + Make a section of two shapes + İki şeklin bölümünü oluştur + + + Part + Parça + + + Section + Bölüm + + + + CmdPartShapeFromMesh + + + Part + Parça + + + Create shape from mesh... + Create shape from mesh... + + + Create shape from selected mesh object + Create shape from selected mesh object + + + + CmdPartSimpleCopy + + Part + Parça + + + Create simple copy + Basit bir kopya oluştur + + + Create a simple non-parametric copy + Create a simple non-parametric copy + + + + CmdPartSimpleCylinder + + Part + Parça + + + Create Cylinder... + Silindir oluştur... + + + Create a Cylinder + Bir silindir oluştur + + + + CmdPartSphere + + + Create a sphere solid + Katı bir küre oluştur + + + Part + Parça + + + Sphere + Küre + + + + CmdPartSweep + + + Part + Parça + + + Sweep... + Sweep... + + + Utility to sweep + Utility to sweep + + + + CmdPartTorus + + + Create a torus solid + Katı bir yumru oluştur + + + Part + Parça + + + Torus + Simit + + + + DlgExtrusion + + Select a shape for extrusion, first. + Select a shape for extrusion, first. + + + The document '%1' doesn't exist. + The document '%1' doesn't exist. + + + + DlgRevolution + + Select a shape for revolution, first. + Select a shape for revolution, first. + + + + DlgSettings3DViewPart + + Deviation + Deviation + + + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + + + + PartGui::CrossSections + + + Cross sections + Cross sections + + + Guiding plane + Guiding plane + + + XY + XY + + + XZ + XZ + + + YZ + YZ + + + Position: + Position: + + + Sections + Sections + + + On both sides + On both sides + + + Count + Count + + + Distance: + Distance: + + + + PartGui::DlgBooleanOperation + + + Boolean Operation + Mantıksal işlem + + + Second shape + Second shape + + + First shape + First shape + + + Boolean operation + Boolean operation + + + Section + Bölüm + + + Difference + Fark + + + Union + Birleştir + + + Intersection + Intersection + + + + Cannot perform a boolean operation with the same shape + Cannot perform a boolean operation with the same shape + + + + Solids + Solids + + + Shells + Shells + + + Compounds + Compounds + + + Faces + Faces + + + Swap selection + Swap selection + + + + Select a shape on the left side, first + Select a shape on the left side, first + + + Select a shape on the right side, first + Select a shape on the right side, first + + + No active document available + No active document available + + + One of the selected objects doesn't exist anymore + One of the selected objects doesn't exist anymore + + + Performing union on non-solids is not possible + Performing union on non-solids is not possible + + + Performing intersection on non-solids is not possible + Performing intersection on non-solids is not possible + + + Performing difference on non-solids is not possible + Performing difference on non-solids is not possible + + + + PartGui::DlgChamferEdges + + + Chamfer Edges + Chamfer Edges + + + + PartGui::DlgExtrusion + + + Extrude + Extrude + + + Direction + Yön + + + Along normal + Along normal + + + Length: + Uzunluk: + + + 3D view + 3B görünümü + + + Note:This option works for planes only + Uyarı: Bu özellik sadece düzlemler için çalışır + + + Create solid + Create solid + + + Taper outward angle + Taper outward angle + + + Shape + Shape + + + + + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + + Select a shape for extrusion, first. + Select a shape for extrusion, first. + + + The document '%1' doesn't exist. + The document '%1' doesn't exist. + + + + PartGui::DlgFilletEdges + + + Fillet Edges + Fillet Edges + + + Fillet Parameter + Fillet Parameter + + + Radius: + Yarıçapı: + + + Fillet type: + Fillet type: + + + Constant Radius + Constant Radius + + + Variable Radius + Variable Radius + + + Shape + Shape + + + Selected shape: + Selected shape: + + + No selection + Seçim yok + + + + Edges to fillet + Edges to fillet + + + Start radius + Start radius + + + End radius + End radius + + + Radius + Yarıçap + + + No edge selected + No edge selected + + + No edge entity is checked to fillet. +Please check one or more edge entities first. + No edge entity is checked to fillet. +Please check one or more edge entities first. + + + + All + Hepsi + + + None + Hiçbiri + + + + Edge%1 + Edge%1 + + + No shape selected + No shape selected + + + No valid shape is selected. +Please select a valid shape in the drop-down box first. + No valid shape is selected. +Please select a valid shape in the drop-down box first. + + + + PartGui::DlgPartBox + + + Box definition + Box definition + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + Cancel + İptal + + + OK + Tamam + + + Size: + Boyut: + + + Height: + Yükseklik: + + + Width: + Genişlik: + + + Length: + Uzunluk: + + + Position: + Position: + + + Direction: + Direction: + + + + PartGui::DlgPartCylinder + + + Cylinder definition + Cylinder definition + + + Parameter + Parametre + + + Height: + Yükseklik: + + + Radius: + Yarıçapı: + + + Position: + Position: + + + Direction: + Direction: + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + OK + Tamam + + + Cancel + İptal + + + + PartGui::DlgPartImportIges + + + IGES input file + IGES input file + + + ... + ... + + + Cancel + İptal + + + OK + Tamam + + + File Name + File Name + + + + + + + + PartGui::DlgPartImportIgesImp + + + IGES (*.igs *.iges);;All Files (*.*) + IGES (*.igs *.iges);Tüm dosyalar (*. *) + + + + PartGui::DlgPartImportStep + + + ... + ... + + + Cancel + İptal + + + OK + Tamam + + + Step input file + Step input file + + + File Name + File Name + + + + + + + + PartGui::DlgPartImportStepImp + + + STEP (*.stp *.step);;All Files (*.*) + STEP (*.stp * .step);Tüm dosyalar (*. *) + + + + PartGui::DlgPrimitives + + + Geometric Primitives + Geometric Primitives + + + Primitive + Primitive + + + X min + X'in en küçük değeri + + + x max + x'in en büyük değeri + + + Y min + Y'nin en küçük değeri + + + Y max + Y'nin en büyük değeri + + + Z min + Z'deki en küçük değer + + + Z max + Z'deki en büyük değer + + + X2 min + X2'nin en küçük değeri + + + X2 max + X2 max + + + Z2 min + Z2 min + + + Z2 max + Z2 max + + + Angle - 0 for cyl + Angle - 0 for cyl + + + Angle0 + Angle0 + + + Angle1 + Angle1 + + + X Axis Value: + X Axis Value: + + + Y Axis Value: + Y Axis Value: + + + Z Axis Value: + Z Axis Value: + + + Wedge + Wedge + + + Circle + Çember + + + Vertex + Vertex + + + Position + Position + + + Z: + Z: + + + X: + X: + + + Direction: + Direction: + + + Y: + Y: + + + Plane + Plane + + + Box + Box + + + Cylinder + Silindir + + + Cone + Koni + + + Sphere + Küre + + + Ellipsoid + Elipsoid + + + Torus + Simit + + + Ellipse + Ellipse + + + Point + Nokta + + + Line + Çizgi + + + Parameter + Parametre + + + Width: + Genişlik: + + + Length: + Uzunluk: + + + Height: + Yükseklik: + + + Angle: + Açı: + + + Radius: + Yarıçapı: + + + Radius 1: + Yarıçap 1: + + + Radius 2: + Yarıçap 2: + + + U parametric: + U parametric: + + + V parametric: + V parametric: + + + X min/max: + X min/max: + + + Y min/max: + Y min/max: + + + Z min/max: + Z min/max: + + + X2 min/max: + X2 min/max: + + + Z2 min/max: + Z2 min/max: + + + Coordinate system: + Coordinate system: + + + Right-handed + Right-handed + + + Left-handed + Left-handed + + + Angle 1: + Angle 1: + + + Angle 2: + Angle 2: + + + From three points + From three points + + + Major radius: + Major radius: + + + Minor radius: + Minor radius: + + + End point + End point + + + Start point + Start point + + + + &Create + & Oluşturma + + + Alt+C + Alt + C + + + Cl&ose + Cl&ose + + + Alt+O + Alt + O + + + Create %1 + %1 Oluşturmak + + + No active document + Etkin belge yok + + + + Pitch: + Pitch: + + + Helix + Helix + + + 3D View + 3D Görünüm + + + + PartGui::DlgRevolution + + + Revolve + Revolve + + + Y: + Y: + + + X: + X: + + + Angle: + Açı: + + + Z: + Z: + + + Axis: + Eksen: + + + Shape + Shape + + + Select line in 3D view + Select line in 3D view + + + + Select a shape for revolution, first. + Select a shape for revolution, first. + + + + PartGui::DlgSettings3DViewPart + + + View accuracy / Performance + View accuracy / Performance + + + View smoothing + View smoothing + + + Using high-quality normals + Using high-quality normals + + + This will slow down render speed but will lead to nicer results + This will slow down render speed but will lead to nicer results + + + Defines the appearance of surfaces + Defines the appearance of surfaces + + + Shape view + Shape view + + + Tessellation + Mozaikleme + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + + + Do not define normal per vertex + Do not define normal per vertex + + + Defines the deviation of tessellation to the actual surface + Defines the deviation of tessellation to the actual surface + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + + + Maximum deviation depending on the model bounding box + Maximum deviation depending on the model bounding box + + + % + % + + + + Deviation + Deviation + + + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + + + + PartGui::DlgSettingsGeneral + + + General + Genel + + + Export + Export + + + Millimeter + Millimeter + + + Meter + Meter + + + Inch + Inch + + + Units for export of STEP/IGES + Units for export of STEP/IGES + + + Model settings + Model settings + + + Automatically refine model after boolean operation + Automatically refine model after boolean operation + + + Automatically check model after boolean operation + Automatically check model after boolean operation + + + + PartGui::FaceColors + + + Face colors + Face colors + + + Do you really want to cancel? + Do you really want to cancel? + + + + PartGui::Location + + + Location + Location + + + Position + Position + + + 3D View + 3D Görünüm + + + + PartGui::LoftWidget + + + Vertex/Wire + Vertex/Wire + + + Loft + Loft + + + Too few elements + Too few elements + + + At least two vertices, edges or wires are required. + At least two vertices, edges or wires are required. + + + At least two vertices or wires are required. + At least two vertices or wires are required. + + + + PartGui::Mirroring + + + Mirroring + Mirroring + + + Shapes + Şekiller + + + Mirror plane: + Mirror plane: + + + XY plane + XY plane + + + XZ plane + XZ plane + + + YZ plane + YZ plane + + + Base point: + Base point: + + + x + x + + + y + y + + + z + z + + + + Select a shape for mirroring, first. + Select a shape for mirroring, first. + + + No such document '%1'. + '%1' adlı belge bulunamadı. + + + + PartGui::ShapeBuilderWidget + + + Wrong selection + Wrong selection + + + Select two vertices + Select two vertices + + + Select three or more edges + Select three or more edges + + + Select one or more edges + Select one or more edges + + + Select two or more faces + Select two or more faces + + + Select only one part object + Select only one part object + + + Select two vertices to create an edge + Select two vertices to create an edge + + + Select a closed set of edges + Select a closed set of edges + + + Select adjacent faces + Select adjacent faces + + + All shape types can be selected + All shape types can be selected + + + + PartGui::SweepWidget + + + Vertex/Wire + Vertex/Wire + + + Sweep + Sweep + + + Sweep path + Sweep path + + + Select an edge or wire you want to sweep along. + Select an edge or wire you want to sweep along. + + + Too few elements + Too few elements + + + At least one edge or wire is required. + At least one edge or wire is required. + + + + PartGui::TaskDialogEditDynamic + + Hint + Hint + + + Select Control. + Select Control. + + + Control + Control + + + Dynamic + Dynamic + + + Align + Align + + + Value + Değer + + + Special + Special + + + Command + Komut + + + Stretch + Stretch + + + Move + Taşı + + + Rotate + Döndür + + + Offset + Uzaklaşma + + + Orient + Orient + + + Match + Match + + + Surround + Surround + + + dummy + dummy + + + X Axis + X Axis + + + Y Axis + Y Axis + + + Z Axis + Z Axis + + + Increment + Increment + + + .125 + .125 + + + .500 + .500 + + + 1.000 + 1.000 + + + 5.000 + 5.000 + + + 10.000 + 10.000 + + + Drag arrows to stretch box by increment + Drag arrows to stretch box by increment + + + Drag arrows to move box by increment + Drag arrows to move box by increment + + + Not implemented yet + Not implemented yet + + + Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment + + + Select dragger for stretch by align + Select dragger for stretch by align + + + Select dragger for move by align + Select dragger for move by align + + + Select dragger for stretch by value + Select dragger for stretch by value + + + Select dragger for move by value + Select dragger for move by value + + + 1.0 + 1.0 + + + Enter Value + Enter Value + + + Select box to match + Select box to match + + + Select a point + Select a point + + + 0.0 + 0.0 + + + Select dragger to align + Select dragger to align + + + Select dragger to modify + Select dragger to modify + + + + PartGui::TaskFaceColors + + + Set color per face + Set color per face + + + Click on the faces in the 3d view to select them. + Click on the faces in the 3d view to select them. + + + Faces: + Faces: + + + Set to default + Set to default + + + + PartGui::TaskLoft + + + Loft + Loft + + + Vertex/Wire + Vertex/Wire + + + Move right + Sağa hareket + + + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Seçili öğeyi bir düzey yukarıya taşı</b><p>Bu da üst öğe düzeyini değiştirecek.</p> + + + Move left + Sola hareket + + + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Seçili öğeyi bir düzey yukarıya taşı</b><p>Bu da üst öğe düzeyini değiştirecek.</p> + + + Move up + Yukarı taşı + + + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Seçili öğeyi aşağı taşı.</b><p>Öğe hiyerarşi düzeyi içinde taşınacak.</p> + + + Move down + Aşağı taşı + + + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Seçili öğeyi aşağı taşı.</b><p>Öğe hiyerarşi düzeyi içinde taşınacak.</p> + + + Create solid + Create solid + + + Ruled surface + Ruled surface + + + + PartGui::TaskShapeBuilder + + + Create shape + Create shape + + + Edge from vertices + Edge from vertices + + + Face from edges + Face from edges + + + Planar + Planar + + + Shell from faces + Shell from faces + + + Solid from shell + Solid from shell + + + Create + Oluştur + + + All faces + All faces + + + + PartGui::TaskSweep + + + Sweep + Sweep + + + Create solid + Create solid + + + Frenet + Frenet + + + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. + + + + QObject + + + Wrong selection + Wrong selection + + + Select two shapes please. + Select two shapes please. + + + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + + + STEP (*.stp *.step) + STEP (*.stp * .step) + + + IGES (*.igs *.iges) + IGES (*.igs *.iges) + + + BREP (*.brp *.brep) + BREP (*.brp *.brep) + + + All Files (*.*) + All Files (*.*) + + + + Sewing Tolerance + Sewing Tolerance + + + Enter tolerance for sewing shape: + Enter tolerance for sewing shape: + + + + Edit mirror plane + Edit mirror plane + + + Edit chamfer edges + Edit chamfer edges + + + Transform + Transform + + + + Part design + Part design + + + + Select two shapes or more, please. + İki veya daha fazla şekil seçin lütfen. + + + You have to select either two edges or two wires. + İki kenarı veya iki çizgiyi seçtiniz. + + + + Edit fillet edges + Edit fillet edges + + + + Set colors... + Set colors... + + + + Workbench + + + &Part + &Parça + + + &Simple + &Basit + + + &Parametric + &Değişken tabanlı + + + Part tools + Bölüm araçları + + + Solids + Solids + + + Boolean + Boolean + + + diff --git a/src/Mod/Part/Gui/Resources/translations/Part_uk.qm b/src/Mod/Part/Gui/Resources/translations/Part_uk.qm index 4a0302898..8adef7261 100644 Binary files a/src/Mod/Part/Gui/Resources/translations/Part_uk.qm and b/src/Mod/Part/Gui/Resources/translations/Part_uk.qm differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_uk.ts b/src/Mod/Part/Gui/Resources/translations/Part_uk.ts index 2585773cb..7fd5286b6 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_uk.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_uk.ts @@ -1,2522 +1,2128 @@ - - + + BlockDefinition - - Block definition - Визначення блоку + + Block definition + Визначення блоку - - First limit - Перше обмеження + First limit + Перше обмеження - - - Type: - Тип: + Type: + Тип: - - - mm - мм + mm + мм - - - Length: - Довжина: + Length: + Довжина: - - - Dimension - Розмір + Dimension + Розмір - - - Up to next - До наступного + Up to next + До наступного - - - Up to last - До останнього + Up to last + До останнього - - - Up to plane - До площини + Up to plane + До площини - - - Up to face - До лиця + Up to face + До лиця - - - Limit: - Обмеження: + Limit: + Обмеження: - - - - - No selection - Нічого не вибрано + No selection + Нічого не вибрано - - Profile - Профіль + Profile + Профіль - - Selection: - Вибір: + Selection: + Вибір: - - Reverse - Навпаки + Reverse + Навпаки - - Both sides - Обидві сторони + Both sides + Обидві сторони - - Second limit - Друге обмеження + Second limit + Друге обмеження - - Direction - Напрямок + Direction + Напрямок - - Perpendicular to sketch - Перпендикулярно до ескізу + Perpendicular to sketch + Перпендикулярно до ескізу - - Reference - Посилання + Reference + Посилання - - Apply - Застосувати + Apply + Застосувати - - Cancel - Скасувати + Cancel + Скасувати - - OK - Гаразд + OK + Гаразд - - + + CmdPartBoolean - - Part - Частина + + Part + Частина - - Boolean... - Логічне... + Boolean... + Логічне... - - Run a boolean operation with two shapes selected - Виконати логічну операцію з двома обраними формами + Run a boolean operation with two shapes selected + Виконати логічну операцію з двома обраними формами - - + + CmdPartBox - - Part - Частина + + Part + Частина - - Box - Коробка + Box + Коробка - - Create a box solid - Create a box solid + Create a box solid + Створити суцільний паралелепіпед - - + + CmdPartBox2 - - Part - Частина + + Part + Частина - - Box fix 1 - Box fix 1 + Box fix 1 + Box fix 1 - - Create a box solid without dialog - Create a box solid without dialog + Create a box solid without dialog + Створити суцільний паралелепіпед без діалогу - - + + CmdPartBox3 - - Part - Частина + Part + Частина - - Box fix 2 - Box fix 2 + Box fix 2 + Box fix 2 - - Create a box solid without dialog - Create a box solid without dialog + Create a box solid without dialog + Створити суцільний паралелепіпед без діалогу - - + + CmdPartBuilder - - Part - Частина + Part + Частина - - Shape builder... - Shape builder... + Shape builder... + Побудова фігур... - - Advanced utility to create shapes - Advanced utility to create shapes + Advanced utility to create shapes + Додаткові утиліти для створення фігур - - + + CmdPartChamfer - - Part - Частина + Part + Частина - - Chamfer... - + Chamfer... + Фаска... - - Chamfer the selected edges of a shape - + Chamfer the selected edges of a shape + Створити фаску на обраному краю фігури - - + + CmdPartCommon - - Part - Частина + Part + Частина - - Intersection - Перетин + Intersection + Перетин - - Make an intersection of two shapes - Make an intersection of two shapes + Make an intersection of two shapes + Зробити перетин двох фігур - - + + CmdPartCone - - Part - Частина + + Part + Частина - - Cone - Конус + Cone + Конус - - Create a cone solid - Create a cone solid + Create a cone solid + Створити суцільний конус - - + + CmdPartCrossSections - - Part - Частина + + Part + Частина - - Cross-sections... - Поперечні перерізи... + Cross-sections... + Поперечні перерізи... - - Cross-sections - Поперечні перерізи + Cross-sections + Поперечні перерізи - - + + CmdPartCut - - Part - Частина + Part + Частина - - Cut - Вирізати + Cut + Вирізати - - Make a cut of two shapes - Make a cut of two shapes + Make a cut of two shapes + Обрізати дві фігури - - + + CmdPartCylinder - - Part - Частина + + Part + Частина - - Create a Cylinder - Створення циліндру + Create a Cylinder + Створення циліндру - - Cylinder - Циліндр + Cylinder + Циліндр - - + + CmdPartExport - - Part - Частина + + Part + Частина - - Export CAD... - Export CAD... + Export CAD... + Експортувати CAD... - - Exports to a CAD file - Exports to a CAD file + Exports to a CAD file + Експорт до файлу CAD - - + + CmdPartExtrude - - Part - Частина + Part + Частина - - Extrude... - Видавлювання... + Extrude... + Видавлювання... - - Extrude a selected sketch - Видавлювання вибраного ескізу + Extrude a selected sketch + Видавлювання вибраного ескізу - - + + CmdPartFillet - - Part - Частина + Part + Частина - - Fillet... - Округлення... + Fillet... + Округлення... - - Fillet the selected edges of a shape - Округлення вибраного краю форми + Fillet the selected edges of a shape + Округлення вибраного краю форми - - + + CmdPartFuse - - Part - Частина + Part + Частина - - Union - Об'єднання + Union + Об'єднання - - Make a union of several shapes - Make a union of several shapes + Make a union of several shapes + Об'єднати кількох фігур - - + + CmdPartImport - - Part - Частина + Part + Частина - - Imports a CAD file - Імпорт файлу CAD + Imports a CAD file + Імпорт файлу CAD - - Import CAD... - Імпорт CAD ... + Import CAD... + Імпорт CAD ... - - + + CmdPartImportCurveNet - - Part - Частина + Part + Частина - - Import a curve network - Import a curve network + Import a curve network + Імпортувати мережу кривих - - Import curve network... - Import curve network... + Import curve network... + Імпортувати мережу кривих... - - + + CmdPartLoft - - Part - Частина + Part + Частина - - Loft... - Loft... + Loft... + Розгортка... - - Utility to loft - + Utility to loft + Utility to loft - Advanced utility to lofts - Advanced utility to lofts + Advanced utility to lofts + Додаткові утиліти для розгорток - - + + CmdPartMakeSolid - - Part - Частина + Part + Частина - - Convert to solid - Перетворити в суцільну + Convert to solid + Перетворити в суцільну - - Create solid from a shell or compound - Створити суцільну форму із оболонки чи складових + Create solid from a shell or compound + Створити суцільну форму із оболонки чи складових - - + + CmdPartMirror - - Part - Частина + Part + Частина - - Mirroring... - Віддзеркалення... + Mirroring... + Віддзеркалення... - - Mirroring a selected shape - Віддзеркалення обраної форми + Mirroring a selected shape + Віддзеркалення обраної форми - - + + CmdPartPickCurveNet - - Part - Частина + Part + Частина - - Pick curve network - Pick curve network + Pick curve network + Вибрати мережу кривих - - Pick a curve network - Pick a curve network + Pick a curve network + Вибрати мережу кривих - - + + CmdPartPrimitives - - Part - Частина + Part + Частина - - Create primitives... - Створення примітивів ... + Create primitives... + Створення примітивів ... - - Creation of parametrized geometric primitives - Створення параметризованих геометричних примітивів + Creation of parametrized geometric primitives + Створення параметризованих геометричних примітивів - - + + CmdPartRefineShape - - Part - Частина + + Part + Частина - - Refine shape - + Refine shape + Refine shape - - Refine the copy of a shape - + Refine the copy of a shape + Refine the copy of a shape - - + + CmdPartReverseShape - - Part - Частина + + Part + Частина - - Reverse shapes - Обернути форми + Reverse shapes + Обернути форми - - Reverse orientation of shapes - Зворотня орієнтація форм + Reverse orientation of shapes + Зворотня орієнтація форм - - + + CmdPartRevolve - - Part - Частина + Part + Частина - - Revolve... - Обертати... + Revolve... + Обертати... - - Revolve a selected shape - Обертати обрану форму + Revolve a selected shape + Обертати обрану форму - - + + CmdPartRuledSurface - - Part - Частина + Part + Частина - - Create ruled surface - Create ruled surface + Create ruled surface + Створити лінійчату поверхню - - Create a ruled surface from two curves - Create a ruled surface from two curves + Create a ruled surface from two curves + Створити лінійчату поверхню по двом кривим - - + + CmdPartSection - - Make a section of two shapes - Make a section of two shapes + Make a section of two shapes + Зробити розріз двох форм - - Part - Частина + Part + Частина - - Section - Секція + Section + Секція - - + + CmdPartShapeFromMesh - - Part - Частина + + Part + Частина - - Create shape from mesh... - Створити форму з сітки... + Create shape from mesh... + Створити форму з сітки... - - Create shape from selected mesh object - Створити форми з обраної сітки (мешу) + Create shape from selected mesh object + Створити форми з обраної сітки (мешу) - - + + CmdPartSimpleCopy - - Part - Частина + Part + Частина - - Create simple copy - Create simple copy + Create simple copy + Створити просту копію - - Create a simple non-parametric copy - Create a simple non-parametric copy + Create a simple non-parametric copy + Створити просту непараметричну копію - - + + CmdPartSimpleCylinder - - Part - Частина + Part + Частина - - Create Cylinder... - Створити циліндр ... + Create Cylinder... + Створити циліндр ... - - Create a Cylinder - Створення циліндру + Create a Cylinder + Створення циліндру - - + + CmdPartSphere - - Create a sphere solid - Create a sphere solid + + Create a sphere solid + Створити твердотільну сферу - - Part - Частина + Part + Частина - - Sphere - Сфера + Sphere + Сфера - - + + CmdPartSweep - - Part - Частина + + Part + Частина - - Sweep... - + Sweep... + Sweep... - - Utility to sweep - + Utility to sweep + Utility to sweep - - + + CmdPartTorus - - Create a torus solid - Create a torus solid + + Create a torus solid + Створити твердотільний тор - - Part - Частина + Part + Частина - - Torus - Тор + Torus + Тор - - + + DlgExtrusion - Select a shape for extrusion, first. - Select a shape for extrusion, first. + Select a shape for extrusion, first. + Select a shape for extrusion, first. - The document '%1' doesn't exist. - The document '%1' doesn't exist. + The document '%1' doesn't exist. + The document '%1' doesn't exist. - - + + DlgRevolution - Select a shape for revolution, first. - Select a shape for revolution, first. + Select a shape for revolution, first. + Select a shape for revolution, first. - - + + DlgSettings3DViewPart - Deviation - Відхилення + Deviation + Відхилення - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - - + + PartGui::CrossSections - - Cross sections - Поперечні перерізи + + Cross sections + Поперечні перерізи - - Guiding plane - Керівна площина + Guiding plane + Керівна площина - - XY - XY + XY + XY - - XZ - XZ + XZ + XZ - - YZ - YZ + YZ + YZ - - Position: - Позиція: + Position: + Позиція: - - Sections - Секції + Sections + Секції - - On both sides - З обох сторін + On both sides + З обох сторін - - Count - Кількість + Count + Кількість - - Distance: - Відстань: + Distance: + Відстань: - - + + PartGui::DlgBooleanOperation - - Boolean Operation - Логічна операція + + Boolean Operation + Логічна операція - - Second shape - Друга форма + Second shape + Друга форма - - First shape - Перша форма + First shape + Перша форма - - Boolean operation - Логічна операція + Boolean operation + Логічна операція - - Section - Секція + Section + Секція - - Difference - Різниця + Difference + Різниця - - Union - Об'єднання + Union + Об'єднання - - Intersection - Перетин + Intersection + Перетин - - Cannot perform a boolean operation with the same shape - Неможливо виконати логічну операцію з тією ж формою + + Cannot perform a boolean operation with the same shape + Неможливо виконати логічну операцію з тією ж формою - - - Solids - Суцільні + + Solids + Суцільні - - - Shells - Оболонки + Shells + Оболонки - - - Compounds - Складові + Compounds + Складові - - - Faces - Faces + Faces + Грані - - Swap selection - Swap selection + Swap selection + Замінити виділення - - Select a shape on the left side, first - Select a shape on the left side, first + + Select a shape on the left side, first + Спочатку виберіть фігуру на лівій стороні - - Select a shape on the right side, first - Select a shape on the right side, first + Select a shape on the right side, first + Спочатку виберіть фігуру на правій стороні - - No active document available - No active document available + No active document available + Немає активних документів - - One of the selected objects doesn't exist anymore - One of the selected objects doesn't exist anymore + One of the selected objects doesn't exist anymore + Один із вибраних об'єктів більше не існує - - Performing union on non-solids is not possible - Performing union on non-solids is not possible + Performing union on non-solids is not possible + Неможливо виконати об'єднання несуцільних фігур - - Performing intersection on non-solids is not possible - Performing intersection on non-solids is not possible + Performing intersection on non-solids is not possible + Неможливо виконати перетин несуцільних фігур - - Performing difference on non-solids is not possible - Performing difference on non-solids is not possible + Performing difference on non-solids is not possible + Визначити різницю для несуцільних тіл не є можливим - - + + PartGui::DlgChamferEdges - - Chamfer Edges - + + Chamfer Edges + Фаски країв - - + + PartGui::DlgExtrusion - - Extrude - Видавлювання + + Extrude + Видавлювання - - Direction - Напрямок + Direction + Напрямок - - Along normal - Вздовж нормалі + Along normal + Вздовж нормалі - - Length: - Довжина: + Length: + Довжина: - - 3D view - 3D view + 3D view + 3D-вигляд - - Note:This option works for planes only - Note:This option works for planes only + Note:This option works for planes only + Примітка: ця опція працює лише для площин - - Create solid - Create solid + Create solid + Створити суцільну фігуру - - Taper outward angle - + Taper outward angle + Taper outward angle - - Shape - Форма + Shape + Форма - - Про програму + + Про програму - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - Select a shape for extrusion, first. - Select a shape for extrusion, first. + + Select a shape for extrusion, first. + Select a shape for extrusion, first. - - The document '%1' doesn't exist. - The document '%1' doesn't exist. + The document '%1' doesn't exist. + The document '%1' doesn't exist. - - + + PartGui::DlgFilletEdges - - Fillet Edges - Закруглити краї + + Fillet Edges + Закруглити краї - - Fillet Parameter - Параметри закруглення + Fillet Parameter + Параметри закруглення - - Radius: - Радіус: + Radius: + Радіус: - - Fillet type: - Тип закруглення: + Fillet type: + Тип закруглення: - - Constant Radius - Постійний радіус + Constant Radius + Постійний радіус - - Variable Radius - Змінний радіус + Variable Radius + Змінний радіус - - Shape - Форма + Shape + Форма - - Selected shape: - Обрана форма: + Selected shape: + Обрана форма: - - No selection - Нічого не вибрано + No selection + Нічого не вибрано - - Edges to fillet - Краї для закруглення + + Edges to fillet + Краї для закруглення - - - Start radius - Початковий радіус + Start radius + Початковий радіус - - End radius - Кінцевий радіус + End radius + Кінцевий радіус - - Radius - Радіус + Radius + Радіус - - No edge selected - Край не обрано + No edge selected + Край не обрано - - No edge entity is checked to fillet. + No edge entity is checked to fillet. Please check one or more edge entities first. - Не обрано край для згладжування + Не обрано край для згладжування Будь ласка, спочатку оберіть один, або більше країв. - - All - Все + + All + Все - - None - Немає + None + Немає - - - Edge%1 - Край%1 + + Edge%1 + Край%1 - - No shape selected - Немає обраної форми + No shape selected + Немає обраної форми - - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - Не обрано вірної форми + Не обрано вірної форми Будь ласка, оберіть вірну форму у виринаючому списку. - - + + PartGui::DlgPartBox - - Box definition - Box definition + + Box definition + Визначення паралелепіпеда - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - Cancel - Скасувати + Cancel + Скасувати - - OK - Гаразд + OK + Гаразд - - Size: - Розмір: + Size: + Розмір: - - Height: - Висота: + Height: + Висота: - - Width: - Ширина: + Width: + Ширина: - - Length: - Довжина: + Length: + Довжина: - - Position: - Позиція: + Position: + Позиція: - - Direction: - Напрям: + Direction: + Напрям: - - + + PartGui::DlgPartCylinder - - Cylinder definition - Визначення циліндра + + Cylinder definition + Визначення циліндра - - Parameter - Параметр + Parameter + Параметр - - Height: - Висота: + Height: + Висота: - - Radius: - Радіус: + Radius: + Радіус: - - Position: - Позиція: + Position: + Позиція: - - Direction: - Напрям: + Direction: + Напрям: - - X: - X: + X: + X: - - Z: - Z: + Z: + Z: - - Y: - Y: + Y: + Y: - - OK - Гаразд + OK + Гаразд - - Cancel - Скасувати + Cancel + Скасувати - - + + PartGui::DlgPartImportIges - - IGES input file - Вхідний файл IGES + + IGES input file + Вхідний файл IGES - - ... - ... + ... + ... - - Cancel - Скасувати + Cancel + Скасувати - - OK - Гаразд + OK + Гаразд - - File Name - Ім'я файлу + File Name + Ім'я файлу - - Про програму + + Про програму - - + + PartGui::DlgPartImportIgesImp - - IGES (*.igs *.iges);;All Files (*.*) - IGES (*.igs *.iges);;Всі файли (*.*) + + IGES (*.igs *.iges);;All Files (*.*) + IGES (*.igs *.iges);;Всі файли (*.*) - - + + PartGui::DlgPartImportStep - - ... - ... + + ... + ... - - Cancel - Скасувати + Cancel + Скасувати - - OK - Гаразд + OK + Гаразд - - Step input file - Крок вхідного файлу + Step input file + Крок вхідного файлу - - File Name - Ім'я файлу + File Name + Ім'я файлу - - Про програму + + Про програму - - + + PartGui::DlgPartImportStepImp - - STEP (*.stp *.step);;All Files (*.*) - STEP (*.stp *.step);;Всі файли (*.*) + + STEP (*.stp *.step);;All Files (*.*) + STEP (*.stp *.step);;Всі файли (*.*) - - + + PartGui::DlgPrimitives - - Geometric Primitives - Геометричні примітиви + + Geometric Primitives + Геометричні примітиви - Primitive - Примітив + Primitive + Примітив - X min - X min + X min + X мін. - x max - x max + x max + x макс. - Y min - Y min + Y min + Y мін. - Y max - Y max + Y max + Y макс. - Z min - Z min + Z min + Z мін. - Z max - Z max + Z max + Z макс. - X2 min - X2 min + X2 min + X2 мін. - X2 max - X2 max + X2 max + X2 макс. - Z2 min - Z2 min + Z2 min + Z2 мін. - Z2 max - Z2 max + Z2 max + Z2 макс. - Angle - 0 for cyl - Angle - 0 for cyl + Angle - 0 for cyl + Кут - 0 для циліндру - Angle0 - Angle0 + Angle0 + Кут0 - Angle1 - Angle1 + Angle1 + Кут1 - X Axis Value: - X Axis Value: + X Axis Value: + Значення осі X: - Y Axis Value: - Y Axis Value: + Y Axis Value: + Значення осі Y: - Z Axis Value: - Z Axis Value: + Z Axis Value: + Значення осі Z: - - Wedge - Wedge + Wedge + Клин - - Circle - Коло + Circle + Коло - Vertex - Vertex + Vertex + Вершина - Position - Позиція + Position + Позиція - - - - Z: - Z: + Z: + Z: - - - - X: - X: + X: + X: - Direction: - Напрям: + Direction: + Напрям: - - - - Y: - Y: + Y: + Y: - - Plane - Площини + Plane + Площини - - Box - Коробка + Box + Коробка - - Cylinder - Циліндр + Cylinder + Циліндр - - Cone - Конус + Cone + Конус - - Sphere - Сфера + Sphere + Сфера - - Ellipsoid - Еліпсоїд + Ellipsoid + Еліпсоїд - - Torus - Тор + Torus + Тор - - Ellipse - + Ellipse + Ellipse - - Point - + Point + Точка - - Line - + Line + Лінія - - Parameter - Параметр + Parameter + Параметр - - - Width: - Ширина: + Width: + Ширина: - - - Length: - Довжина: + Length: + Довжина: - - - - - Height: - Висота: + Height: + Висота: - - - - Angle: - Кут: + Angle: + Кут: - - - - - Radius: - Радіус: + Radius: + Радіус: - - - - Radius 1: - Радіус 1: + Radius 1: + Радіус 1: - - - - Radius 2: - Радіус 2: + Radius 2: + Радіус 2: - - - - U parametric: - U параметричне: + U parametric: + U параметричне: - - - - V parametric: - V параметричне: + V parametric: + V параметричне: - - X min/max: - + X min/max: + X min/max: - - Y min/max: - + Y min/max: + Y min/max: - - Z min/max: - + Z min/max: + Z min/max: - - X2 min/max: - + X2 min/max: + X2 min/max: - - Z2 min/max: - + Z2 min/max: + Z2 min/max: - - Coordinate system: - + Coordinate system: + Coordinate system: - - Right-handed - + Right-handed + Right-handed - - Left-handed - + Left-handed + Left-handed - - - Angle 1: - + Angle 1: + Angle 1: - - - Angle 2: - + Angle 2: + Angle 2: - - From three points - + From three points + From three points - - Major radius: - + Major radius: + Major radius: - - Minor radius: - + Minor radius: + Minor radius: - - End point - + End point + End point - - Start point - + Start point + Start point - - &Create - Створити + + &Create + &Створити - Alt+C - Alt+C + Alt+C + Alt+C - Cl&ose - Закрити + Cl&ose + Закрити - Alt+O - Alt+O + Alt+O + Alt+O - - - - Create %1 - Створити %1 + Create %1 + Створити %1 - - No active document - Немає активного документу + No active document + Немає активного документу - - Pitch: - Крок: + + Pitch: + Крок: - - Helix - Спіраль + Helix + Спіраль - 3D View - 3D Вигляд + 3D View + 3D Вигляд - - + + PartGui::DlgRevolution - - Revolve - Обертатися + + Revolve + Обертатися - - Y: - Y: + Y: + Y: - - X: - X: + X: + X: - - Angle: - Кут: + Angle: + Кут: - - Z: - Z: + Z: + Z: - - Axis: - Осі: + Axis: + Осі: - - Shape - Форма + Shape + Форма - - Select line in 3D view - + Select line in 3D view + Select line in 3D view - - Select a shape for revolution, first. - Select a shape for revolution, first. + + Select a shape for revolution, first. + Select a shape for revolution, first. - - + + PartGui::DlgSettings3DViewPart - - View accuracy / Performance - Переглянути точність/характеристики + + View accuracy / Performance + Переглянути точність/характеристики - - View smoothing - View smoothing + View smoothing + Згладжування вигляду - - Using high-quality normals - Використання високоякісних нормалей + Using high-quality normals + Використання високоякісних нормалей - - This will slow down render speed but will lead to nicer results - Це буде сповільняти швидкість візуалізації, але приведе до кращих результатів + This will slow down render speed but will lead to nicer results + Це буде сповільняти швидкість візуалізації, але приведе до кращих результатів - - Defines the appearance of surfaces - Визначає зовнішній вигляд поверхонь + Defines the appearance of surfaces + Визначає зовнішній вигляд поверхонь - - Shape view - Перегляд форми + Shape view + Перегляд форми - - Tessellation - Мозаїка + Tessellation + Теселяція - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> - - Do not define normal per vertex - Не визначайте нормалей для кожної вершини + Do not define normal per vertex + Не визначайте нормалей для кожної вершини - - Defines the deviation of tessellation to the actual surface - Визначає відхилення тесселяції до активної поверхні + Defines the deviation of tessellation to the actual surface + Визначає відхилення тесселяції до активної поверхні - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> - - Maximum deviation depending on the model bounding box - Maximum deviation depending on the model bounding box + Maximum deviation depending on the model bounding box + Maximum deviation depending on the model bounding box - - % - % + % + % - - Deviation - Відхилення + + Deviation + Відхилення - - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - - + + PartGui::DlgSettingsGeneral - - General - Загальне + + General + Загальне - - Export - Експорт + Export + Експорт - - Millimeter - Міліметри + Millimeter + Міліметри - - Meter - Метри + Meter + Метри - - Inch - Дюйми + Inch + Дюйми - - Units for export of STEP/IGES - Одиниці для експорту STEP/IGES + Units for export of STEP/IGES + Одиниці для експорту STEP/IGES - - Model settings - + Model settings + Model settings - - Automatically refine model after boolean operation - + Automatically refine model after boolean operation + Automatically refine model after boolean operation - - Automatically check model after boolean operation - + Automatically check model after boolean operation + Automatically check model after boolean operation - - + + PartGui::FaceColors - - Face colors - + + Face colors + Face colors - - Do you really want to cancel? - + Do you really want to cancel? + Do you really want to cancel? - - + + PartGui::Location - - Location - + + Location + Location - - Position - Позиція + Position + Позиція - - 3D View - 3D Вигляд + 3D View + 3D Вигляд - - + + PartGui::LoftWidget - - - Vertex/Wire - Vertex/Wire + + Vertex/Wire + Вершина/Струна - - - Loft - Loft + Loft + Розгортка - - Too few elements - Too few elements + Too few elements + Занадто мало елементів - - At least two vertices, edges or wires are required. - + At least two vertices, edges or wires are required. + At least two vertices, edges or wires are required. - At least two vertices or wires are required. - At least two vertices or wires are required. + At least two vertices or wires are required. + Потрібні принаймні дві вершини або струни. - - + + PartGui::Mirroring - - Mirroring - Віддзеркалення + + Mirroring + Віддзеркалення - - Shapes - Форми + Shapes + Форми - - Mirror plane: - Дзеркальна площина: + Mirror plane: + Дзеркальна площина: - - XY plane - Площина XY + XY plane + Площина XY - - XZ plane - Площина XZ + XZ plane + Площина XZ - - YZ plane - Площина YZ + YZ plane + Площина YZ - - Base point: - Base point: + Base point: + Базова точка: - - x - x + x + x - - y - y + y + y - - z - z + z + z - - Select a shape for mirroring, first. - Спочатку виберіть форму для дзеркального відображення. + + Select a shape for mirroring, first. + Спочатку виберіть форму для дзеркального відображення. - - No such document '%1'. - Документ '%1' не знайдено. + No such document '%1'. + Документ '%1' не знайдено. - - + + PartGui::ShapeBuilderWidget - - - - - - Wrong selection - Невірний вибір + + Wrong selection + Невірний вибір - - - Select two vertices - Select two vertices + Select two vertices + Виберіть дві вершини - Select three or more edges - Select three or more edges + Select three or more edges + Виберіть три або більше країв - - Select one or more edges - + Select one or more edges + Select one or more edges - - Select two or more faces - Select two or more faces + Select two or more faces + Виберіть дві або більше грані - - Select only one part object - Select only one part object + Select only one part object + Виберіть лише одну частину об'єкта - - Select two vertices to create an edge - Select two vertices to create an edge + Select two vertices to create an edge + Виберіть дві вершини для створення краю - - Select a closed set of edges - Select a closed set of edges + Select a closed set of edges + Виберіть замкнутий набір країв - - Select adjacent faces - Select adjacent faces + Select adjacent faces + Виберіть суміжні грані - - All shape types can be selected - All shape types can be selected + All shape types can be selected + Можуть бути виділені усі типи фігур - - + + PartGui::SweepWidget - - - Vertex/Wire - Vertex/Wire + + Vertex/Wire + Вершина/Струна - - - Sweep - + Sweep + Sweep - - Sweep path - + Sweep path + Sweep path - - Select an edge or wire you want to sweep along. - + Select an edge or wire you want to sweep along. + Select an edge or wire you want to sweep along. - - Too few elements - Too few elements + Too few elements + Занадто мало елементів - - At least one edge or wire is required. - + At least one edge or wire is required. + At least one edge or wire is required. - - + + PartGui::TaskDialogEditDynamic - Hint - Hint + Hint + Підказка - Select Control. - Select Control. + Select Control. + Виберіть елемент керування. - Control - Control + Control + Керування - Dynamic - Dynamic + Dynamic + Динамічний - Align - Align + Align + Вирівнювати - Value - Значення + Value + Значення - Special - Special + Special + Особливий - Command - Команда + Command + Команда - Stretch - Stretch + Stretch + Розтягнути - Move - Переміщення + Move + Переміщення - Rotate - Обертання + Rotate + Обертання - Offset - Зміщення + Offset + Зміщення - Orient - Orient + Orient + Орієнтація - Match - Match + Match + Співпадіння - Surround - Surround + Surround + Оточити - dummy - dummy + dummy + заглушка - X Axis - X Axis + X Axis + Ось X - Y Axis - Y Axis + Y Axis + Ось Y - Z Axis - Z Axis + Z Axis + Ось Z - Increment - Increment + Increment + Приріст - .125 - .125 + .125 + 0,125 - .500 - .500 + .500 + 0,500 - 1.000 - 1.000 + 1.000 + 1,000 - 5.000 - 5.000 + 5.000 + 5,000 - 10.000 - 10.000 + 10.000 + 10,000 - Drag arrows to stretch box by increment - Drag arrows to stretch box by increment + Drag arrows to stretch box by increment + Drag arrows to stretch box by increment - Drag arrows to move box by increment - Drag arrows to move box by increment + Drag arrows to move box by increment + Drag arrows to move box by increment - Not implemented yet - Not implemented yet + Not implemented yet + Ще не реалізовано - Drag arrows to offset checked axes by increment - Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment - Select dragger for stretch by align - Select dragger for stretch by align + Select dragger for stretch by align + Select dragger for stretch by align - Select dragger for move by align - Select dragger for move by align + Select dragger for move by align + Select dragger for move by align - Select dragger for stretch by value - Select dragger for stretch by value + Select dragger for stretch by value + Select dragger for stretch by value - Select dragger for move by value - Select dragger for move by value + Select dragger for move by value + Select dragger for move by value - 1.0 - 1.0 + 1.0 + 1.0 - Enter Value - Enter Value + Enter Value + Введіть значення - Select box to match - Select box to match + Select box to match + Оберіть паралелепіпед для порівняння - Select a point - Select a point + Select a point + Виберіть точку - 0.0 - 0.0 + 0.0 + 0.0 - Select dragger to align - Select dragger to align + Select dragger to align + Select dragger to align - Select dragger to modify - Select dragger to modify + Select dragger to modify + Select dragger to modify - - + + PartGui::TaskFaceColors - - Set color per face - Set color per face + + Set color per face + Встановити колір для кожної грані - - Click on the faces in the 3d view to select them. - Click on the faces in the 3d view to select them. + Click on the faces in the 3d view to select them. + Щоб вибрати поверхню, клацніть на ній у 3D-виді. - - Faces: - Faces: + Faces: + Грані: - - Set to default - Set to default + Set to default + Встановити за замовчуванням - - + + PartGui::TaskLoft - - Loft - Loft + + Loft + Розгортка - Vertex/Wire - Vertex/Wire + Vertex/Wire + Вершина/Струна - Move right - Перемістити праворуч + Move right + Перемістити праворуч - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>Переміщення обраного елемента на один рівень вниз.</b><p>Це також призведе до зміни рівня батьківського елемента.</p> + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>Переміщення обраного елемента на один рівень вниз.</b><p>Це також призведе до зміни рівня батьківського елемента.</p> - Move left - Перемістити ліворуч + Move left + Перемістити ліворуч - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>Переміщення обраного елемента на один рівень вгору.</b><p>Це також призведе до зміни рівня батьківського елемента.</p> + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>Переміщення обраного елемента на один рівень вгору.</b><p>Це також призведе до зміни рівня батьківського елемента.</p> - Move up - Перемістити вгору + Move up + Перемістити вгору - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>Перемістити обраний елемент вгору.</b><p>Елемент буде переміщено в межах ієрархії рівня.</p> + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>Перемістити обраний елемент вгору.</b><p>Елемент буде переміщено в межах ієрархії рівня.</p> - Move down - Перемістити вниз + Move down + Перемістити вниз - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>Перемістити обраний елемент вниз.</b><p>Елемент буде переміщено в межах ієрархії рівня.</p> + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>Перемістити обраний елемент вниз.</b><p>Елемент буде переміщено в межах ієрархії рівня.</p> - - Create solid - Create solid + Create solid + Створити суцільну фігуру - - Ruled surface - Ruled surface + Ruled surface + Лінійчата поверхня - - + + PartGui::TaskShapeBuilder - - - Create shape - Create shape + + Create shape + Створити фігуру - - Edge from vertices - Edge from vertices + Edge from vertices + Ребро з вершин - - Face from edges - Face from edges + Face from edges + Грань з ребер - - Planar - Planar + Planar + Плоский - - Shell from faces - Shell from faces + Shell from faces + Оболонка з поверхонь - - Solid from shell - Solid from shell + Solid from shell + Суцільна фігура з оболонки - - Create - Створити + Create + Створити - - All faces - All faces + All faces + Усі грані - - + + PartGui::TaskSweep - - Sweep - + + Sweep + Sweep - - Create solid - Create solid + Create solid + Створити суцільну фігуру - - Frenet - + Frenet + Frenet - - Select one or more profiles and select an edge or wire + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. - + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. - - + + QObject - - - - - - Wrong selection - Невірний вибір + + Wrong selection + Невірний вибір - - - Select two shapes please. - Виберіть дві форми, будь ласка. + Select two shapes please. + Виберіть дві форми, будь ласка. - - - - All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) - Усі файли CAD (*.stp *.step *.igs *.iges *.brp *.brep) + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + Усі файли CAD (*.stp *.step *.igs *.iges *.brp *.brep) - - - - STEP (*.stp *.step) - STEP (*.stp *.step) + STEP (*.stp *.step) + STEP (*.stp *.step) - - - - IGES (*.igs *.iges) - IGES (*.igs *.iges) + IGES (*.igs *.iges) + IGES (*.igs *.iges) - - - - BREP (*.brp *.brep) - BREP (*.brp *.brep) + BREP (*.brp *.brep) + BREP (*.brp *.brep) - - - - All Files (*.*) - Всі файли (*.*) + All Files (*.*) + Всі файли (*.*) - - Sewing Tolerance - Sewing Tolerance + + Sewing Tolerance + Припуск на зшивання - - Enter tolerance for sewing shape: - Enter tolerance for sewing shape: + Enter tolerance for sewing shape: + Введіть припуск на зшивання фігур: - - Edit mirror plane - Редагувати площину відзеркалення + + Edit mirror plane + Редагувати площину відзеркалення - - Edit chamfer edges - + Edit chamfer edges + Edit chamfer edges - Transform - Перетворення + Transform + Перетворення - - - Part design - Дизайн частини + + Part design + Дизайн частини - - - Select two shapes or more, please. - Select two shapes or more, please. + + Select two shapes or more, please. + Виберіть, будь ласка, дві або більше фігур. - - You have to select either two edges or two wires. - You have to select either two edges or two wires. + You have to select either two edges or two wires. + Ви повинні вибрати або дві грані або дві струни. - - Edit fillet edges - Редагувати кромку граней + + Edit fillet edges + Редагувати кромку граней - - Set colors... - Set colors... + + Set colors... + Встановити кольори... - - + + Workbench - - &Part - Частина + + &Part + Частина - - &Simple - &Просте + &Simple + &Просте - - &Parametric - &Параметричне + &Parametric + &Параметричне - - Part tools - Інструменти деталі + Part tools + Інструменти деталі - - Solids - Суцільні + Solids + Суцільні - - Boolean - Логічне + Boolean + Логічне - + diff --git a/src/Mod/Part/Gui/Resources/translations/Part_zh-CN.qm b/src/Mod/Part/Gui/Resources/translations/Part_zh-CN.qm new file mode 100644 index 000000000..d845d4aeb Binary files /dev/null and b/src/Mod/Part/Gui/Resources/translations/Part_zh-CN.qm differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_zh-CN.ts b/src/Mod/Part/Gui/Resources/translations/Part_zh-CN.ts new file mode 100644 index 000000000..b6a87caf1 --- /dev/null +++ b/src/Mod/Part/Gui/Resources/translations/Part_zh-CN.ts @@ -0,0 +1,2127 @@ + + + + + BlockDefinition + + + Block definition + 块定义 + + + First limit + 第一个限制 + + + Type: + 类型: + + + mm + mm + + + Length: + 长度: + + + Dimension + 尺寸标注 + + + Up to next + 直到下一个 + + + Up to last + 直到最后 + + + Up to plane + 直到平面 + + + Up to face + 直到表面 + + + Limit: + 限制: + + + No selection + 无选择 + + + Profile + 配置文件 + + + Selection: + 选择: + + + Reverse + 反转 + + + Both sides + 双向 + + + Second limit + 第二个限制 + + + Direction + 方向 + + + Perpendicular to sketch + 垂直于草图 + + + Reference + 参考 + + + Apply + 应用 + + + Cancel + 取消 + + + OK + 确定 + + + + CmdPartBoolean + + + Part + 零件 + + + Boolean... + 布尔运算... + + + Run a boolean operation with two shapes selected + 对所选的两个形状进行布尔运算 + + + + CmdPartBox + + + Part + 零件 + + + Box + 立方体 + + + Create a box solid + 创建长方体 + + + + CmdPartBox2 + + + Part + 零件 + + + Box fix 1 + 立方体固定 1 + + + Create a box solid without dialog + Create a box solid without dialog + + + + CmdPartBox3 + + Part + 零件 + + + Box fix 2 + 立方体固定 2 + + + Create a box solid without dialog + Create a box solid without dialog + + + + CmdPartBuilder + + Part + 零件 + + + Shape builder... + 形体构建器... + + + Advanced utility to create shapes + 创建形体高级工具 + + + + CmdPartChamfer + + Part + 零件 + + + Chamfer... + 倒角... + + + Chamfer the selected edges of a shape + 给选的形的边缘倒角 + + + + CmdPartCommon + + Part + 零件 + + + Intersection + 交集 + + + Make an intersection of two shapes + 两形体求交集 + + + + CmdPartCone + + + Part + 零件 + + + Cone + 圆锥体 + + + Create a cone solid + 创建圆锥体 + + + + CmdPartCrossSections + + + Part + 零件 + + + Cross-sections... + 横截面... + + + Cross-sections + 横截面 + + + + CmdPartCut + + Part + 零件 + + + Cut + 剪切 + + + Make a cut of two shapes + 两形体求差集 + + + + CmdPartCylinder + + + Part + 零件 + + + Create a Cylinder + 创建一个圆柱体 + + + Cylinder + 圆柱体 + + + + CmdPartExport + + + Part + 零件 + + + Export CAD... + 导出CAD... + + + Exports to a CAD file + 导出至CAD文件 + + + + CmdPartExtrude + + Part + 零件 + + + Extrude... + 拉伸... + + + Extrude a selected sketch + 挤压选定的草绘 + + + + CmdPartFillet + + Part + 零件 + + + Fillet... + 圆角... + + + Fillet the selected edges of a shape + 给选定形体的边倒圆角 + + + + CmdPartFuse + + Part + 零件 + + + Union + 并集 + + + Make a union of several shapes + 多形体求合集 + + + + CmdPartImport + + Part + 零件 + + + Imports a CAD file + 导入CAD文件 + + + Import CAD... + 导入CAD文件 ... + + + + CmdPartImportCurveNet + + Part + 零件 + + + Import a curve network + 导入曲线网络 + + + Import curve network... + 导入曲线网络... + + + + CmdPartLoft + + Part + 零件 + + + Loft... + 放样... + + + Utility to loft + Utility to loft + + + Advanced utility to lofts + 放样高级工具 + + + + CmdPartMakeSolid + + Part + 零件 + + + Convert to solid + 转化成实体 + + + Create solid from a shell or compound + 从命令行或程序集创建实体 + + + + CmdPartMirror + + Part + 零件 + + + Mirroring... + 镜像... + + + Mirroring a selected shape + 镜像选定的形状 + + + + CmdPartPickCurveNet + + Part + 零件 + + + Pick curve network + 选择曲线网络 + + + Pick a curve network + 选择曲线网络 + + + + CmdPartPrimitives + + Part + 零件 + + + Create primitives... + 创建图元... + + + Creation of parametrized geometric primitives + 创建参数化的几何图元 + + + + CmdPartRefineShape + + + Part + 零件 + + + Refine shape + Refine shape + + + Refine the copy of a shape + Refine the copy of a shape + + + + CmdPartReverseShape + + + Part + 零件 + + + Reverse shapes + 形状翻转 + + + Reverse orientation of shapes + 翻转形状 + + + + CmdPartRevolve + + Part + 零件 + + + Revolve... + 旋转... + + + Revolve a selected shape + 旋转所选的形状 + + + + CmdPartRuledSurface + + Part + 零件 + + + Create ruled surface + 创建直纹曲面 + + + Create a ruled surface from two curves + 由两条曲线创建直纹曲面 + + + + CmdPartSection + + Make a section of two shapes + Make a section of two shapes + + + Part + 零件 + + + Section + 截面 + + + + CmdPartShapeFromMesh + + + Part + 零件 + + + Create shape from mesh... + 从网格中创建形状... + + + Create shape from selected mesh object + 从选定的网格对象创建形状 + + + + CmdPartSimpleCopy + + Part + 零件 + + + Create simple copy + 创建简单副本 + + + Create a simple non-parametric copy + 创建简单的非参数化副本 + + + + CmdPartSimpleCylinder + + Part + 零件 + + + Create Cylinder... + 创建圆柱体... + + + Create a Cylinder + 创建一个圆柱体 + + + + CmdPartSphere + + + Create a sphere solid + 创建球体 + + + Part + 零件 + + + Sphere + 球体 + + + + CmdPartSweep + + + Part + 零件 + + + Sweep... + 扫掠... + + + Utility to sweep + Utility to sweep + + + + CmdPartTorus + + + Create a torus solid + 创建圆环体 + + + Part + 零件 + + + Torus + 圆环 + + + + DlgExtrusion + + Select a shape for extrusion, first. + 请先选择一个形状执行挤压操作. + + + The document '%1' doesn't exist. + 文件 '%1' 不存在. + + + + DlgRevolution + + Select a shape for revolution, first. + 先选择一个形状来修改. + + + + DlgSettings3DViewPart + + Deviation + 偏差 + + + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + 设置得太小会导致贴图耗时过长,切会使GUI界面冻结或速度减慢. + + + + PartGui::CrossSections + + + Cross sections + 横截面 + + + Guiding plane + 导引面 + + + XY + XY + + + XZ + XZ + + + YZ + YZ + + + Position: + 位置: + + + Sections + 截面 + + + On both sides + 双边 + + + Count + 计数 + + + Distance: + 距离: + + + + PartGui::DlgBooleanOperation + + + Boolean Operation + 布尔运算 + + + Second shape + 第二个形状 + + + First shape + 第一个形状 + + + Boolean operation + 布尔运算 + + + Section + 截面 + + + Difference + 差集 + + + Union + 并集 + + + Intersection + 交集 + + + + Cannot perform a boolean operation with the same shape + 不能对同一形状作布尔操作 + + + + Solids + 实体 + + + Shells + + + + Compounds + 组合体 + + + Faces + + + + Swap selection + 切换选择 + + + + Select a shape on the left side, first + 线选择左侧形状 + + + Select a shape on the right side, first + 先选择右侧形状 + + + No active document available + 无可用活动文档 + + + One of the selected objects doesn't exist anymore + 所选对象之一已不存在 + + + Performing union on non-solids is not possible + 无法对非实体执行并集操作 + + + Performing intersection on non-solids is not possible + 无法对非实体进行交集操作 + + + Performing difference on non-solids is not possible + 无法对非实体进行差集操作 + + + + PartGui::DlgChamferEdges + + + Chamfer Edges + 倒角边缘 + + + + PartGui::DlgExtrusion + + + Extrude + 拉伸 + + + Direction + 方向 + + + Along normal + 沿法向 + + + Length: + 长度: + + + 3D view + 3D视图 + + + Note:This option works for planes only + 注:此选项仅适用于平面 + + + Create solid + 创建实体 + + + Taper outward angle + Taper outward angle + + + Shape + 形状 + + + + + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + + Select a shape for extrusion, first. + 请先选择一个形状执行挤压操作. + + + The document '%1' doesn't exist. + 文件 '%1' 不存在. + + + + PartGui::DlgFilletEdges + + + Fillet Edges + 圆角边 + + + Fillet Parameter + 圆角参数 + + + Radius: + 半径: + + + Fillet type: + 圆角类型: + + + Constant Radius + 常数半径 + + + Variable Radius + 可变半径 + + + Shape + 形状 + + + Selected shape: + 所选的形状: + + + No selection + 无选择 + + + + Edges to fillet + 倒圆角边 + + + Start radius + 开始半径 + + + End radius + 结束半径 + + + Radius + 半径 + + + No edge selected + 未选定边 + + + No edge entity is checked to fillet. +Please check one or more edge entities first. + 为选择倒圆角的实体边. +请先检查一个或多个实体边. + + + + All + 全部 + + + None + + + + + Edge%1 + 边 %1 + + + No shape selected + 无选定的形状 + + + No valid shape is selected. +Please select a valid shape in the drop-down box first. + 未选中有效形状.请先在下拉框中选择一个有效形状. + + + + PartGui::DlgPartBox + + + Box definition + 立方体定义 + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + Cancel + 取消 + + + OK + 确定 + + + Size: + 大小: + + + Height: + 高度: + + + Width: + 宽度: + + + Length: + 长度: + + + Position: + 位置: + + + Direction: + 方向: + + + + PartGui::DlgPartCylinder + + + Cylinder definition + 定义圆柱体 + + + Parameter + 参数 + + + Height: + 高度: + + + Radius: + 半径: + + + Position: + 位置: + + + Direction: + 方向: + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + OK + 确定 + + + Cancel + 取消 + + + + PartGui::DlgPartImportIges + + + IGES input file + IGES 输入文件 + + + ... + ... + + + Cancel + 取消 + + + OK + 确定 + + + File Name + 文件名 + + + + + + + + PartGui::DlgPartImportIgesImp + + + IGES (*.igs *.iges);;All Files (*.*) + IGES (*.igs *.iges);;All Files (*.*) + + + + PartGui::DlgPartImportStep + + + ... + ... + + + Cancel + 取消 + + + OK + 确定 + + + Step input file + 输入文件步骤 + + + File Name + 文件名 + + + + + + + + PartGui::DlgPartImportStepImp + + + STEP (*.stp *.step);;All Files (*.*) + STEP (*.stp *.step);;All Files (*.*) + + + + PartGui::DlgPrimitives + + + Geometric Primitives + 几何图元 + + + Primitive + 图元 + + + X min + X 最小 + + + x max + X 最大 + + + Y min + Y 最小 + + + Y max + Y 最大 + + + Z min + Z 最小 + + + Z max + Z 最大 + + + X2 min + X2 最小 + + + X2 max + X2 最大 + + + Z2 min + Z2 最小 + + + Z2 max + Z2 最大 + + + Angle - 0 for cyl + Angle - 0 for cyl + + + Angle0 + 角度0 + + + Angle1 + 角度1 + + + X Axis Value: + X轴数值: + + + Y Axis Value: + Y轴数值: + + + Z Axis Value: + Z轴数值: + + + Wedge + Wedge + + + Circle + + + + Vertex + 顶点 + + + Position + 位置 + + + Z: + Z: + + + X: + X: + + + Direction: + 方向: + + + Y: + Y: + + + Plane + 平面 + + + Box + 立方体 + + + Cylinder + 圆柱体 + + + Cone + 圆锥体 + + + Sphere + 球体 + + + Ellipsoid + 椭圆体 + + + Torus + 圆环 + + + Ellipse + 椭圆 + + + Point + + + + Line + 线 + + + Parameter + 参数 + + + Width: + 宽度: + + + Length: + 长度: + + + Height: + 高度: + + + Angle: + 角度: + + + Radius: + 半径: + + + Radius 1: + 半径 1: + + + Radius 2: + 半径 2: + + + U parametric: + U 参数: + + + V parametric: + V 参数: + + + X min/max: + X 最小值/最大值: + + + Y min/max: + Y 最小值/最大值: + + + Z min/max: + Z 最小值/最大值: + + + X2 min/max: + X2 最小值/最大值: + + + Z2 min/max: + Z2 最小值/最大值: + + + Coordinate system: + 坐标系: + + + Right-handed + 右手 + + + Left-handed + 左手 + + + Angle 1: + 角度 1: + + + Angle 2: + 角度 2: + + + From three points + From three points + + + Major radius: + Major radius: + + + Minor radius: + Minor radius: + + + End point + 终点 + + + Start point + 起点 + + + + &Create + 创建(&C) + + + Alt+C + Alt+C + + + Cl&ose + 关闭(&O) + + + Alt+O + Alt+O + + + Create %1 + 创建 %1 + + + No active document + 没有活动文档 + + + + Pitch: + 间距: + + + Helix + 螺旋体 + + + 3D View + 3D 视图 + + + + PartGui::DlgRevolution + + + Revolve + 旋转 + + + Y: + Y: + + + X: + X: + + + Angle: + 角度: + + + Z: + Z: + + + Axis: + 轴: + + + Shape + 形状 + + + Select line in 3D view + Select line in 3D view + + + + Select a shape for revolution, first. + 先选择一个形状来修改. + + + + PartGui::DlgSettings3DViewPart + + + View accuracy / Performance + 查看精度/性能 + + + View smoothing + 平滑视图 + + + Using high-quality normals + 默认使用高质量 + + + This will slow down render speed but will lead to nicer results + 这会降低渲染速度,但效果会更好 + + + Defines the appearance of surfaces + 定义表面外观 + + + Shape view + 查看形状 + + + Tessellation + 曲面细分 + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">如果此选项不设置则启用多面遮罩效果,如果设置启用单面遮罩效果.</p></body></html> + + + Do not define normal per vertex + 不需要定义每一个常规顶点 + + + Defines the deviation of tessellation to the actual surface + 定义实际表面镶嵌的偏差 + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext"content="1"/></head> <body style="white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px;"> 镶嵌</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-weight:600;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-weight:600;"> <span style="font-weight:400;"> 定义的表面镶嵌网的最大偏差.值越小速度越慢,外观也越柔和</span></p></body></html> + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-weight:600;">暗示</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">每个顶点的法线的定义也被称为<span style=" font-style:italic;">Phong光照</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"> <span style=" font-style:normal;">同时确定每个面的法线称为</span>平阴影<span style=" font-style:normal;">。</span> </p></body></html> + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <span style=" font-weight:600;">高品质的法线</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">这将减缓渲染速度,但会导致更好的结果。 </p></body></html> + + + Maximum deviation depending on the model bounding box + 最大偏差取决于模型边界 + + + % + % + + + + Deviation + 偏差 + + + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + 设置得太小会导致贴图耗时过长,切会使GUI界面冻结或速度减慢. + + + + PartGui::DlgSettingsGeneral + + + General + 常规 + + + Export + 导出 + + + Millimeter + 毫米 + + + Meter + + + + Inch + 英寸 + + + Units for export of STEP/IGES + 单元输出为 STEP/IGES + + + Model settings + 模型设置 + + + Automatically refine model after boolean operation + Automatically refine model after boolean operation + + + Automatically check model after boolean operation + Automatically check model after boolean operation + + + + PartGui::FaceColors + + + Face colors + 面颜色 + + + Do you really want to cancel? + 确实要取消吗? + + + + PartGui::Location + + + Location + Location + + + Position + 位置 + + + 3D View + 3D 视图 + + + + PartGui::LoftWidget + + + Vertex/Wire + 顶点/线 + + + Loft + 放样 + + + Too few elements + 元素太少 + + + At least two vertices, edges or wires are required. + At least two vertices, edges or wires are required. + + + At least two vertices or wires are required. + 至少需要两个顶点或线. + + + + PartGui::Mirroring + + + Mirroring + 镜像 + + + Shapes + 形状 + + + Mirror plane: + 镜像平面: + + + XY plane + XY 平面 + + + XZ plane + XZ 平面 + + + YZ plane + YZ 平面 + + + Base point: + 基准点: + + + x + x + + + y + y + + + z + z + + + + Select a shape for mirroring, first. + 请先选择一个形状执行镜像操作. + + + No such document '%1'. + 没有这样的文档 '%1'。 + + + + PartGui::ShapeBuilderWidget + + + Wrong selection + 选择错误 + + + Select two vertices + 选择两个顶点 + + + Select three or more edges + 选择三条或更多边 + + + Select one or more edges + Select one or more edges + + + Select two or more faces + 选择两个或更多面 + + + Select only one part object + 仅选择一个零件对象 + + + Select two vertices to create an edge + 选择两个顶点创建边 + + + Select a closed set of edges + 选择一组闭合的边 + + + Select adjacent faces + 选择相邻面 + + + All shape types can be selected + All shape types can be selected + + + + PartGui::SweepWidget + + + Vertex/Wire + 顶点/线 + + + Sweep + 扫掠 + + + Sweep path + 扫掠路径 + + + Select an edge or wire you want to sweep along. + Select an edge or wire you want to sweep along. + + + Too few elements + 元素太少 + + + At least one edge or wire is required. + At least one edge or wire is required. + + + + PartGui::TaskDialogEditDynamic + + Hint + 提示 + + + Select Control. + 选择控制. + + + Control + 控制 + + + Dynamic + 动态 + + + Align + 对齐 + + + Value + + + + Special + Special + + + Command + 命令 + + + Stretch + 拉伸 + + + Move + 移动 + + + Rotate + 旋转 + + + Offset + 偏移 + + + Orient + 方向 + + + Match + 匹配 + + + Surround + Surround + + + dummy + dummy + + + X Axis + X轴 + + + Y Axis + Y轴 + + + Z Axis + Z轴 + + + Increment + 增量 + + + .125 + .125 + + + .500 + .500 + + + 1.000 + 1.000 + + + 5.000 + 5.000 + + + 10.000 + 10.000 + + + Drag arrows to stretch box by increment + 拖动箭头增量方式拉伸 + + + Drag arrows to move box by increment + 拖动箭头增量方式移动 + + + Not implemented yet + 尚未实现 + + + Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment + + + Select dragger for stretch by align + Select dragger for stretch by align + + + Select dragger for move by align + Select dragger for move by align + + + Select dragger for stretch by value + Select dragger for stretch by value + + + Select dragger for move by value + Select dragger for move by value + + + 1.0 + 1.0 + + + Enter Value + 输入值 + + + Select box to match + Select box to match + + + Select a point + 选择一个点 + + + 0.0 + 0.0 + + + Select dragger to align + Select dragger to align + + + Select dragger to modify + Select dragger to modify + + + + PartGui::TaskFaceColors + + + Set color per face + 单独设置每个面的颜色 + + + Click on the faces in the 3d view to select them. + 在3D视图中点击表面选择它们. + + + Faces: + 面: + + + Set to default + 设置为默认 + + + + PartGui::TaskLoft + + + Loft + 放样 + + + Vertex/Wire + 顶点/线 + + + Move right + 右移 + + + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>移动选中对象到下一层级.</b><p>这将同时改变父级对象.</p> + + + Move left + 左移 + + + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>移动选中对象到上一层级.</b><p>这将同时改变父级对象.</p> + + + Move up + 上移 + + + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>上移选中对象.</b><p>仅在层级中移动.</p> + + + Move down + 下移 + + + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>下移选中对象.</b><p>仅在层级中移动.</p> + + + Create solid + 创建实体 + + + Ruled surface + 直纹曲面 + + + + PartGui::TaskShapeBuilder + + + Create shape + 创建形体 + + + Edge from vertices + 顶点生成棱 + + + Face from edges + 棱生成面 + + + Planar + 平面 + + + Shell from faces + 面生成壳 + + + Solid from shell + 壳生成体 + + + Create + 创建 + + + All faces + 所有面 + + + + PartGui::TaskSweep + + + Sweep + 扫掠 + + + Create solid + 创建实体 + + + Frenet + Frenet + + + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. + + + + QObject + + + Wrong selection + 选择错误 + + + Select two shapes please. + 请选择两个形状. + + + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + 所有 CAD 文件 (*.stp *.step *.igs *.iges *.brp *.brep) + + + STEP (*.stp *.step) + STEP (*.stp *.step) + + + IGES (*.igs *.iges) + IGES (*.igs *.iges) + + + BREP (*.brp *.brep) + BREP (*.brp *.brep) + + + All Files (*.*) + 所有文件(*.*) + + + + Sewing Tolerance + 缝接公差 + + + Enter tolerance for sewing shape: + 输入形状缝接的公差: + + + + Edit mirror plane + 编辑镜像平面 + + + Edit chamfer edges + 编辑倒角边 + + + Transform + 变形 + + + + Part design + 零件设计 + + + + Select two shapes or more, please. + 请选择以上两个形状. + + + You have to select either two edges or two wires. + 你必须选择二条边或者二个线框. + + + + Edit fillet edges + 编辑圆角边 + + + + Set colors... + 设置颜色... + + + + Workbench + + + &Part + 零件(&P) + + + &Simple + 简单(&S) + + + &Parametric + 参数化(&P) + + + Part tools + 零件工具 + + + Solids + 实体 + + + Boolean + 布尔值 + + + diff --git a/src/Mod/Part/Gui/Resources/translations/Part_zh-TW.qm b/src/Mod/Part/Gui/Resources/translations/Part_zh-TW.qm new file mode 100644 index 000000000..cb2df9d6f Binary files /dev/null and b/src/Mod/Part/Gui/Resources/translations/Part_zh-TW.qm differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_zh-TW.ts b/src/Mod/Part/Gui/Resources/translations/Part_zh-TW.ts new file mode 100644 index 000000000..c47063643 --- /dev/null +++ b/src/Mod/Part/Gui/Resources/translations/Part_zh-TW.ts @@ -0,0 +1,2128 @@ + + + + + BlockDefinition + + + Block definition + 區塊定義 + + + First limit + 第1局限 + + + Type: + 類型: + + + mm + mm + + + Length: + 長度: + + + Dimension + 標註 + + + Up to next + 向上至下一個 + + + Up to last + 向上至最後一個 + + + Up to plane + 向上至平面 + + + Up to face + 向上至面 + + + Limit: + 限制: + + + No selection + 未選取 + + + Profile + 外觀 + + + Selection: + 選擇: + + + Reverse + 反向 + + + Both sides + 兩側 + + + Second limit + 第2局限 + + + Direction + 方向 + + + Perpendicular to sketch + 與素描垂直 + + + Reference + 參考 + + + Apply + 應用 + + + Cancel + 取消 + + + OK + 確定 + + + + CmdPartBoolean + + + Part + 零件 + + + Boolean... + 布林運算... + + + Run a boolean operation with two shapes selected + 將選定之兩個零件進行布林運算 + + + + CmdPartBox + + + Part + 零件 + + + Box + + + + Create a box solid + Create a box solid + + + + CmdPartBox2 + + + Part + 零件 + + + Box fix 1 + 固定框1 + + + Create a box solid without dialog + Create a box solid without dialog + + + + CmdPartBox3 + + Part + 零件 + + + Box fix 2 + 固定框2 + + + Create a box solid without dialog + Create a box solid without dialog + + + + CmdPartBuilder + + Part + 零件 + + + Shape builder... + 造型產生器... + + + Advanced utility to create shapes + 進階圖形建立功能 + + + + CmdPartChamfer + + Part + 零件 + + + Chamfer... + Chamfer... + + + Chamfer the selected edges of a shape + 所選造型邊緣進行倒角 + + + + CmdPartCommon + + Part + 零件 + + + Intersection + 交集 + + + Make an intersection of two shapes + Make an intersection of two shapes + + + + CmdPartCone + + + Part + 零件 + + + Cone + 錐體 + + + Create a cone solid + Create a cone solid + + + + CmdPartCrossSections + + + Part + 零件 + + + Cross-sections... + 剖面... + + + Cross-sections + 剖面 + + + + CmdPartCut + + Part + 零件 + + + Cut + 切割 + + + Make a cut of two shapes + Make a cut of two shapes + + + + CmdPartCylinder + + + Part + 零件 + + + Create a Cylinder + 建立一個圓柱 + + + Cylinder + 圓柱 + + + + CmdPartExport + + + Part + 零件 + + + Export CAD... + 匯出CAD... + + + Exports to a CAD file + 匯出為CAD檔 + + + + CmdPartExtrude + + Part + 零件 + + + Extrude... + 拉伸... + + + Extrude a selected sketch + 拉伸選定之圖形 + + + + CmdPartFillet + + Part + 零件 + + + Fillet... + 圓角... + + + Fillet the selected edges of a shape + 將選定之圖形邊界倒圓角 + + + + CmdPartFuse + + Part + 零件 + + + Union + 聯集 + + + Make a union of several shapes + Make a union of several shapes + + + + CmdPartImport + + Part + 零件 + + + Imports a CAD file + 匯入CAD檔 + + + Import CAD... + 匯入CAD... + + + + CmdPartImportCurveNet + + Part + 零件 + + + Import a curve network + 匯入曲線網 + + + Import curve network... + 匯入曲線網... + + + + CmdPartLoft + + Part + 零件 + + + Loft... + Loft... + + + Utility to loft + Utility to loft + + + Advanced utility to lofts + Advanced utility to lofts + + + + CmdPartMakeSolid + + Part + 零件 + + + Convert to solid + 轉換為實體 + + + Create solid from a shell or compound + 由殼或元件轉換為實體 + + + + CmdPartMirror + + Part + 零件 + + + Mirroring... + 鏡射... + + + Mirroring a selected shape + 對選定造型產生鏡射 + + + + CmdPartPickCurveNet + + Part + 零件 + + + Pick curve network + 選取曲線網 + + + Pick a curve network + 選取一個曲線網 + + + + CmdPartPrimitives + + Part + 零件 + + + Create primitives... + 建立基礎物件... + + + Creation of parametrized geometric primitives + 建立參數化幾何基礎物件 + + + + CmdPartRefineShape + + + Part + 零件 + + + Refine shape + Refine shape + + + Refine the copy of a shape + Refine the copy of a shape + + + + CmdPartReverseShape + + + Part + 零件 + + + Reverse shapes + 反向造型 + + + Reverse orientation of shapes + 顛導造型之方向 + + + + CmdPartRevolve + + Part + 零件 + + + Revolve... + 旋轉...... + + + Revolve a selected shape + 旋轉所選的造型 + + + + CmdPartRuledSurface + + Part + 零件 + + + Create ruled surface + 建立直紋曲面 + + + Create a ruled surface from two curves + 由兩曲線建立直紋曲面 + + + + CmdPartSection + + Make a section of two shapes + Make a section of two shapes + + + Part + 零件 + + + Section + 剖面 + + + + CmdPartShapeFromMesh + + + Part + 零件 + + + Create shape from mesh... + 由網格建立造型... + + + Create shape from selected mesh object + 由選定的網格物件建立造型 + + + + CmdPartSimpleCopy + + Part + 零件 + + + Create simple copy + Create simple copy + + + Create a simple non-parametric copy + Create a simple non-parametric copy + + + + CmdPartSimpleCylinder + + Part + 零件 + + + Create Cylinder... + 建立一個圓柱... + + + Create a Cylinder + 建立一個圓柱 + + + + CmdPartSphere + + + Create a sphere solid + Create a sphere solid + + + Part + 零件 + + + Sphere + 球體 + + + + CmdPartSweep + + + Part + 零件 + + + Sweep... + Sweep... + + + Utility to sweep + Utility to sweep + + + + CmdPartTorus + + + Create a torus solid + Create a torus solid + + + Part + 零件 + + + Torus + 圓環 + + + + DlgExtrusion + + Select a shape for extrusion, first. + Select a shape for extrusion, first. + + + The document '%1' doesn't exist. + The document '%1' doesn't exist. + + + + DlgRevolution + + Select a shape for revolution, first. + Select a shape for revolution, first. + + + + DlgSettings3DViewPart + + Deviation + Deviation + + + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + + + + PartGui::CrossSections + + + Cross sections + 剖面 + + + Guiding plane + 參考平面 + + + XY + XY + + + XZ + XZ + + + YZ + YZ + + + Position: + 位置: + + + Sections + 剖面 + + + On both sides + 兩側 + + + Count + Count + + + Distance: + 距離: + + + + PartGui::DlgBooleanOperation + + + Boolean Operation + 布林運算 + + + Second shape + 第二個圖形 + + + First shape + 第一個圖形 + + + Boolean operation + 布林運算 + + + Section + 剖面 + + + Difference + 差集 + + + Union + 聯集 + + + Intersection + 交集 + + + + Cannot perform a boolean operation with the same shape + 無法於同一個圖形上進行布林運算 + + + + Solids + 固體 + + + Shells + + + + Compounds + 元件 + + + Faces + + + + Swap selection + 切換選項 + + + + Select a shape on the left side, first + 先由左側選取造型 + + + Select a shape on the right side, first + 先由右側選取造型 + + + No active document available + 無可用之檔案 + + + One of the selected objects doesn't exist anymore + 其中一個選定之物件已經不存在 + + + Performing union on non-solids is not possible + Performing union on non-solids is not possible + + + Performing intersection on non-solids is not possible + Performing intersection on non-solids is not possible + + + Performing difference on non-solids is not possible + Performing difference on non-solids is not possible + + + + PartGui::DlgChamferEdges + + + Chamfer Edges + Chamfer Edges + + + + PartGui::DlgExtrusion + + + Extrude + 拉伸 + + + Direction + 方向 + + + Along normal + 維持垂直 + + + Length: + 長度: + + + 3D view + 3D視圖 + + + Note:This option works for planes only + 注意:此選項僅對平面有作用 + + + Create solid + 建立實體 + + + Taper outward angle + Taper outward angle + + + Shape + 造型 + + + + + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + + Select a shape for extrusion, first. + Select a shape for extrusion, first. + + + The document '%1' doesn't exist. + The document '%1' doesn't exist. + + + + PartGui::DlgFilletEdges + + + Fillet Edges + 圓角邊緣 + + + Fillet Parameter + 圓角參數 + + + Radius: + 半徑: + + + Fillet type: + 圓角種類: + + + Constant Radius + 固定半徑 + + + Variable Radius + 可變半徑 + + + Shape + 造型 + + + Selected shape: + 選定之圖形: + + + No selection + 未選取 + + + + Edges to fillet + 倒圓角之邊 + + + Start radius + 起始半徑 + + + End radius + 終止半徑 + + + Radius + 半徑 + + + No edge selected + 無邊界被選取 + + + No edge entity is checked to fillet. +Please check one or more edge entities first. + No edge entity is checked to fillet. +Please check one or more edge entities first. + + + + All + 所有 + + + None + + + + + Edge%1 + 邊緣 %1 + + + No shape selected + 無選取物件 + + + No valid shape is selected. +Please select a valid shape in the drop-down box first. + No valid shape is selected. +Please select a valid shape in the drop-down box first. + + + + PartGui::DlgPartBox + + + Box definition + Box definition + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + Cancel + 取消 + + + OK + 確定 + + + Size: + 尺寸: + + + Height: + 高度: + + + Width: + 寬度: + + + Length: + 長度: + + + Position: + 位置: + + + Direction: + 方向: + + + + PartGui::DlgPartCylinder + + + Cylinder definition + 圓柱定義 + + + Parameter + 參數 + + + Height: + 高度: + + + Radius: + 半徑: + + + Position: + 位置: + + + Direction: + 方向: + + + X: + X: + + + Z: + Z: + + + Y: + Y: + + + OK + 確定 + + + Cancel + 取消 + + + + PartGui::DlgPartImportIges + + + IGES input file + IGES輸入檔 + + + ... + ... + + + Cancel + 取消 + + + OK + 確定 + + + File Name + 檔案名稱 + + + + + + + + PartGui::DlgPartImportIgesImp + + + IGES (*.igs *.iges);;All Files (*.*) + IGES (*.igs *.iges);;所有檔案 (*.*) + + + + PartGui::DlgPartImportStep + + + ... + ... + + + Cancel + 取消 + + + OK + 確定 + + + Step input file + Step input file + + + File Name + 檔案名稱 + + + + + + + + PartGui::DlgPartImportStepImp + + + STEP (*.stp *.step);;All Files (*.*) + STEP (*.stp *.step);;所有檔案 (*.*) + + + + PartGui::DlgPrimitives + + + Geometric Primitives + Geometric Primitives + + + Primitive + Primitive + + + X min + X min + + + x max + x max + + + Y min + Y min + + + Y max + Y max + + + Z min + Z min + + + Z max + Z max + + + X2 min + X2 min + + + X2 max + X2 max + + + Z2 min + Z2 min + + + Z2 max + Z2 max + + + Angle - 0 for cyl + Angle - 0 for cyl + + + Angle0 + Angle0 + + + Angle1 + Angle1 + + + X Axis Value: + X Axis Value: + + + Y Axis Value: + Y Axis Value: + + + Z Axis Value: + Z Axis Value: + + + Wedge + Wedge + + + Circle + + + + Vertex + Vertex + + + Position + 位置 + + + Z: + Z: + + + X: + X: + + + Direction: + 方向: + + + Y: + Y: + + + Plane + 平面 + + + Box + + + + Cylinder + 圓柱 + + + Cone + 錐體 + + + Sphere + 球體 + + + Ellipsoid + 橢球體 + + + Torus + 圓環 + + + Ellipse + 橢圓 + + + Point + + + + Line + + + + Parameter + 參數 + + + Width: + 寬度: + + + Length: + 長度: + + + Height: + 高度: + + + Angle: + 角度: + + + Radius: + 半徑: + + + Radius 1: + 半徑 1: + + + Radius 2: + 半徑 2: + + + U parametric: + U參數: + + + V parametric: + V參數: + + + X min/max: + X 最小/最大: + + + Y min/max: + Y 最小/最大: + + + Z min/max: + Z 最小/最大: + + + X2 min/max: + X2 最小/最大: + + + Z2 min/max: + Z2 最小/最大: + + + Coordinate system: + 座標系統: + + + Right-handed + 右手系統 + + + Left-handed + 左手系統 + + + Angle 1: + 角度 1: + + + Angle 2: + 角度 2: + + + From three points + 由3點組成 + + + Major radius: + 主半徑: + + + Minor radius: + 次要半徑: + + + End point + 最末點 + + + Start point + 起始點 + + + + &Create + &建立 + + + Alt+C + Alt+C + + + Cl&ose + &關閉 + + + Alt+O + Alt+O + + + Create %1 + 創建%1 + + + No active document + 未選擇文件 + + + + Pitch: + 俯仰: + + + Helix + 螺旋 + + + 3D View + 3D視圖 + + + + PartGui::DlgRevolution + + + Revolve + 旋轉 + + + Y: + Y: + + + X: + X: + + + Angle: + 角度: + + + Z: + Z: + + + Axis: + 軸: + + + Shape + 造型 + + + Select line in 3D view + 於3D視圖中選取線 + + + + Select a shape for revolution, first. + Select a shape for revolution, first. + + + + PartGui::DlgSettings3DViewPart + + + View accuracy / Performance + 查看精度/效能 + + + View smoothing + View smoothing + + + Using high-quality normals + Using high-quality normals + + + This will slow down render speed but will lead to nicer results + This will slow down render speed but will lead to nicer results + + + Defines the appearance of surfaces + Defines the appearance of surfaces + + + Shape view + 造型視圖 + + + Tessellation + 鑲嵌 + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> + + + Do not define normal per vertex + 請不要對每個頂點定義垂直 + + + Defines the deviation of tessellation to the actual surface + Defines the deviation of tessellation to the actual surface + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> + + + Maximum deviation depending on the model bounding box + Maximum deviation depending on the model bounding box + + + % + % + + + + Deviation + Deviation + + + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. + + + + PartGui::DlgSettingsGeneral + + + General + 一般 + + + Export + 匯出 + + + Millimeter + 公厘 + + + Meter + 公尺 + + + Inch + + + + Units for export of STEP/IGES + STEP/IGES的匯出單位 + + + Model settings + 模型設定 + + + Automatically refine model after boolean operation + Automatically refine model after boolean operation + + + Automatically check model after boolean operation + Automatically check model after boolean operation + + + + PartGui::FaceColors + + + Face colors + 面之色彩 + + + Do you really want to cancel? + 您確定要取消嗎? + + + + PartGui::Location + + + Location + 位置 + + + Position + 位置 + + + 3D View + 3D視圖 + + + + PartGui::LoftWidget + + + Vertex/Wire + 頂點/線 + + + Loft + Loft + + + Too few elements + 物件過少 + + + At least two vertices, edges or wires are required. + 至少需要兩個頂點,邊緣或線條 + + + At least two vertices or wires are required. + 最少需要兩個頂點或線 + + + + PartGui::Mirroring + + + Mirroring + 鏡射 + + + Shapes + 形狀 + + + Mirror plane: + 鏡射平面: + + + XY plane + XY平面 + + + XZ plane + XZ平面 + + + YZ plane + YZ平面 + + + Base point: + 基準點: + + + x + x + + + y + y + + + z + z + + + + Select a shape for mirroring, first. + 請先選擇一鏡射物件 + + + No such document '%1'. + 無此檔案 '%1' + + + + PartGui::ShapeBuilderWidget + + + Wrong selection + 錯誤的選取 + + + Select two vertices + 選擇兩個頂點 + + + Select three or more edges + Select three or more edges + + + Select one or more edges + 選擇1或更多的邊緣 + + + Select two or more faces + Select two or more faces + + + Select only one part object + Select only one part object + + + Select two vertices to create an edge + Select two vertices to create an edge + + + Select a closed set of edges + Select a closed set of edges + + + Select adjacent faces + Select adjacent faces + + + All shape types can be selected + All shape types can be selected + + + + PartGui::SweepWidget + + + Vertex/Wire + 頂點/線 + + + Sweep + 掃描 + + + Sweep path + 掃描路徑 + + + Select an edge or wire you want to sweep along. + Select an edge or wire you want to sweep along. + + + Too few elements + 物件過少 + + + At least one edge or wire is required. + 只少需要一個邊界或線 + + + + PartGui::TaskDialogEditDynamic + + Hint + Hint + + + Select Control. + Select Control. + + + Control + 控制 + + + Dynamic + Dynamic + + + Align + Align + + + Value + + + + Special + Special + + + Command + 指令 + + + Stretch + Stretch + + + Move + 移動 + + + Rotate + 旋轉 + + + Offset + 偏移複製 + + + Orient + Orient + + + Match + 匹配 + + + Surround + 環繞 + + + dummy + dummy + + + X Axis + X軸 + + + Y Axis + Y軸 + + + Z Axis + Z軸 + + + Increment + 增加 + + + .125 + .125 + + + .500 + .500 + + + 1.000 + 1.000 + + + 5.000 + 5.000 + + + 10.000 + 10.000 + + + Drag arrows to stretch box by increment + Drag arrows to stretch box by increment + + + Drag arrows to move box by increment + Drag arrows to move box by increment + + + Not implemented yet + Not implemented yet + + + Drag arrows to offset checked axes by increment + Drag arrows to offset checked axes by increment + + + Select dragger for stretch by align + Select dragger for stretch by align + + + Select dragger for move by align + Select dragger for move by align + + + Select dragger for stretch by value + Select dragger for stretch by value + + + Select dragger for move by value + Select dragger for move by value + + + 1.0 + 1.0 + + + Enter Value + 輸入數值 + + + Select box to match + Select box to match + + + Select a point + 選擇一點 + + + 0.0 + 0.0 + + + Select dragger to align + Select dragger to align + + + Select dragger to modify + Select dragger to modify + + + + PartGui::TaskFaceColors + + + Set color per face + 設定各面之色彩 + + + Click on the faces in the 3d view to select them. + Click on the faces in the 3d view to select them. + + + Faces: + 面: + + + Set to default + 設定為預設值 + + + + PartGui::TaskLoft + + + Loft + Loft + + + Vertex/Wire + 頂點/線 + + + Move right + 向右移動 + + + <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> + <b>移動所選項目向下一級。</b><p>這也將改變父項的級別。</p> + + + Move left + 左移 + + + <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> + <b>移動選定的項目上一級。</b> <p>這也將改變父項的級別。 </p> + + + Move up + 上移 + + + <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> + <b>向上移動所選的項目。</b><p>該項目將被移動至層級中。</p> + + + Move down + 下移 + + + <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> + <b>向下移動所選的項目。</b><p>該項目將被移動至層級中。</p> + + + Create solid + 建立實體 + + + Ruled surface + 直紋曲面 + + + + PartGui::TaskShapeBuilder + + + Create shape + Create shape + + + Edge from vertices + Edge from vertices + + + Face from edges + Face from edges + + + Planar + Planar + + + Shell from faces + Shell from faces + + + Solid from shell + Solid from shell + + + Create + 建立 + + + All faces + 所有面 + + + + PartGui::TaskSweep + + + Sweep + 掃描 + + + Create solid + 建立實體 + + + Frenet + Frenet + + + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. + Select one or more profiles and select an edge or wire +in the 3D view for the sweep path. + + + + QObject + + + Wrong selection + 錯誤的選取 + + + Select two shapes please. + Select two shapes please. + + + All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) + 所有CAD檔(*.stp *.step *.igs *.iges *.brp *.brep) + + + STEP (*.stp *.step) + STEP (*.stp *.step) + + + IGES (*.igs *.iges) + IGES (*.igs *.iges) + + + BREP (*.brp *.brep) + BREP (*.brp *.brep) + + + All Files (*.*) + 所有檔 (*.*) + + + + Sewing Tolerance + 縫合公差 + + + Enter tolerance for sewing shape: + 輸入縫合圖形公差: + + + + Edit mirror plane + 編輯鏡射平面 + + + Edit chamfer edges + 編輯邊緣倒腳 + + + Transform + 轉換 + + + + Part design + 零件設計 + + + + Select two shapes or more, please. + 請選擇兩個或更多造型 + + + You have to select either two edges or two wires. + 您必須選擇兩個邊緣或兩條線 + + + + Edit fillet edges + 編輯圓角邊緣 + + + + Set colors... + 設定顏色... + + + + Workbench + + + &Part + &零件 + + + &Simple + &簡易 + + + &Parametric + &參數 + + + Part tools + 零件工具 + + + Solids + 固體 + + + Boolean + 布林運算 + + + diff --git a/src/Mod/Part/Gui/Resources/translations/Part_zh.qm b/src/Mod/Part/Gui/Resources/translations/Part_zh.qm deleted file mode 100644 index fe916947e..000000000 Binary files a/src/Mod/Part/Gui/Resources/translations/Part_zh.qm and /dev/null differ diff --git a/src/Mod/Part/Gui/Resources/translations/Part_zh.ts b/src/Mod/Part/Gui/Resources/translations/Part_zh.ts deleted file mode 100644 index a93c94b7e..000000000 --- a/src/Mod/Part/Gui/Resources/translations/Part_zh.ts +++ /dev/null @@ -1,2521 +0,0 @@ - - - - - BlockDefinition - - - Block definition - 块定义 - - - - First limit - 第一个限制 - - - - - Type: - 类型: - - - - - mm - mm - - - - - Length: - 长度: - - - - - Dimension - 尺寸标注 - - - - - Up to next - 直到下一个 - - - - - Up to last - 直到最后 - - - - - Up to plane - 直到平面 - - - - - Up to face - 直到表面 - - - - - Limit: - 限制: - - - - - - - No selection - 未选择 - - - - Profile - 配置文件 - - - - Selection: - 选择: - - - - Reverse - 反转 - - - - Both sides - 双向 - - - - Second limit - 第二个限制 - - - - Direction - 方向 - - - - Perpendicular to sketch - 垂直于草图 - - - - Reference - 参考 - - - - Apply - 应用 - - - - Cancel - 取消 - - - - OK - 确定 - - - - CmdPartBoolean - - - Part - 零件 - - - - Boolean... - 布尔运算... - - - - Run a boolean operation with two shapes selected - 对所选的两个形状进行布尔运算 - - - - CmdPartBox - - - Part - 零件 - - - - Box - 立方体 - - - - Create a box solid - 创建长方体 - - - - CmdPartBox2 - - - Part - 零件 - - - - Box fix 1 - 立方体固定 1 - - - - Create a box solid without dialog - Create a box solid without dialog - - - - CmdPartBox3 - - - Part - 零件 - - - - Box fix 2 - 立方体固定 2 - - - - Create a box solid without dialog - Create a box solid without dialog - - - - CmdPartBuilder - - - Part - 零件 - - - - Shape builder... - 形体构建器... - - - - Advanced utility to create shapes - 创建形体高级工具 - - - - CmdPartChamfer - - - Part - 零件 - - - - Chamfer... - - - - - Chamfer the selected edges of a shape - - - - - CmdPartCommon - - - Part - 零件 - - - - Intersection - 交集 - - - - Make an intersection of two shapes - 两形体求交集 - - - - CmdPartCone - - - Part - 零件 - - - - Cone - 圆锥体 - - - - Create a cone solid - 创建圆锥体 - - - - CmdPartCrossSections - - - Part - 零件 - - - - Cross-sections... - 横截面... - - - - Cross-sections - 横截面 - - - - CmdPartCut - - - Part - 零件 - - - - Cut - 剪切 - - - - Make a cut of two shapes - 两形体求差集 - - - - CmdPartCylinder - - - Part - 零件 - - - - Create a Cylinder - 创建一个圆柱体 - - - - Cylinder - 圆柱体 - - - - CmdPartExport - - - Part - 零件 - - - - Export CAD... - 导出CAD... - - - - Exports to a CAD file - 导出至CAD文件 - - - - CmdPartExtrude - - - Part - 零件 - - - - Extrude... - 拉伸... - - - - Extrude a selected sketch - 挤压选定的草绘 - - - - CmdPartFillet - - - Part - 零件 - - - - Fillet... - 圆角... - - - - Fillet the selected edges of a shape - 给选定形体的边倒圆角 - - - - CmdPartFuse - - - Part - 零件 - - - - Union - 并集 - - - - Make a union of several shapes - 多形体求合集 - - - - CmdPartImport - - - Part - 零件 - - - - Imports a CAD file - 导入CAD文件 - - - - Import CAD... - 导入CAD文件 ... - - - - CmdPartImportCurveNet - - - Part - 零件 - - - - Import a curve network - 导入曲线网络 - - - - Import curve network... - 导入曲线网络... - - - - CmdPartLoft - - - Part - 零件 - - - - Loft... - 放样... - - - - Utility to loft - - - - Advanced utility to lofts - 放样高级工具 - - - - CmdPartMakeSolid - - - Part - 零件 - - - - Convert to solid - 转化成实体 - - - - Create solid from a shell or compound - 从命令行或程序集创建实体 - - - - CmdPartMirror - - - Part - 零件 - - - - Mirroring... - 镜像... - - - - Mirroring a selected shape - 镜像选定的形状 - - - - CmdPartPickCurveNet - - - Part - 零件 - - - - Pick curve network - 选择曲线网络 - - - - Pick a curve network - 选择曲线网络 - - - - CmdPartPrimitives - - - Part - 零件 - - - - Create primitives... - 创建图元... - - - - Creation of parametrized geometric primitives - 创建参数化的几何图元 - - - - CmdPartRefineShape - - - Part - 零件 - - - - Refine shape - - - - - Refine the copy of a shape - - - - - CmdPartReverseShape - - - Part - 零件 - - - - Reverse shapes - 形状翻转 - - - - Reverse orientation of shapes - 翻转形状 - - - - CmdPartRevolve - - - Part - 零件 - - - - Revolve... - 旋转... - - - - Revolve a selected shape - 旋转所选的形状 - - - - CmdPartRuledSurface - - - Part - 零件 - - - - Create ruled surface - 创建直纹曲面 - - - - Create a ruled surface from two curves - 由两条曲线创建直纹曲面 - - - - CmdPartSection - - - Make a section of two shapes - Make a section of two shapes - - - - Part - 零件 - - - - Section - 截面 - - - - CmdPartShapeFromMesh - - - Part - 零件 - - - - Create shape from mesh... - 从网格中创建形状... - - - - Create shape from selected mesh object - 从选定的网格对象创建形状 - - - - CmdPartSimpleCopy - - - Part - 零件 - - - - Create simple copy - 创建简单副本 - - - - Create a simple non-parametric copy - 创建简单的非参数化副本 - - - - CmdPartSimpleCylinder - - - Part - 零件 - - - - Create Cylinder... - 创建圆柱体... - - - - Create a Cylinder - 创建一个圆柱体 - - - - CmdPartSphere - - - Create a sphere solid - 创建球体 - - - - Part - 零件 - - - - Sphere - 球体 - - - - CmdPartSweep - - - Part - 零件 - - - - Sweep... - - - - - Utility to sweep - - - - - CmdPartTorus - - - Create a torus solid - 创建圆环体 - - - - Part - 零件 - - - - Torus - 圆环面 - - - - DlgExtrusion - - Select a shape for extrusion, first. - 请先选择一个形状执行挤压操作. - - - The document '%1' doesn't exist. - 文件 '%1' 不存在. - - - - DlgRevolution - - Select a shape for revolution, first. - 先选择一个形状来修改. - - - - DlgSettings3DViewPart - - Deviation - 偏差 - - - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - 设置得太小会导致贴图耗时过长,切会使GUI界面冻结或速度减慢. - - - - PartGui::CrossSections - - - Cross sections - 横截面 - - - - Guiding plane - 导引面 - - - - XY - XY - - - - XZ - XZ - - - - YZ - YZ - - - - Position: - 位置: - - - - Sections - 截面 - - - - On both sides - 双边 - - - - Count - 计数 - - - - Distance: - 距离: - - - - PartGui::DlgBooleanOperation - - - Boolean Operation - 布尔运算 - - - - Second shape - 第二个形状 - - - - First shape - 第一个形状 - - - - Boolean operation - 布尔运算 - - - - Section - 截面 - - - - Difference - 差集 - - - - Union - 并集 - - - - Intersection - 交集 - - - - Cannot perform a boolean operation with the same shape - 不能对同一形状作布尔操作 - - - - - Solids - 实体 - - - - - Shells - - - - - - Compounds - 组合体 - - - - - Faces - - - - - Swap selection - 切换选择 - - - - Select a shape on the left side, first - 线选择左侧形状 - - - - Select a shape on the right side, first - 先选择右侧形状 - - - - No active document available - 无可用活动文档 - - - - One of the selected objects doesn't exist anymore - 所选对象之一已不存在 - - - - Performing union on non-solids is not possible - 无法对非实体执行并集操作 - - - - Performing intersection on non-solids is not possible - 无法对非实体进行交集操作 - - - - Performing difference on non-solids is not possible - 无法对非实体进行差集操作 - - - - PartGui::DlgChamferEdges - - - Chamfer Edges - - - - - PartGui::DlgExtrusion - - - Extrude - 拉伸 - - - - Direction - 方向 - - - - Along normal - 沿法向 - - - - Length: - 长度: - - - - 3D view - 3D视图 - - - - Note:This option works for planes only - 注:此选项仅适用于平面 - - - - Create solid - 创建实体 - - - - Taper outward angle - - - - - Shape - 形状 - - - - - - - - X: - X: - - - - Z: - Z: - - - - Y: - Y: - - - - Select a shape for extrusion, first. - 请先选择一个形状执行挤压操作. - - - - The document '%1' doesn't exist. - 文件 '%1' 不存在. - - - - PartGui::DlgFilletEdges - - - Fillet Edges - 圆角边 - - - - Fillet Parameter - 圆角参数 - - - - Radius: - 半径: - - - - Fillet type: - 圆角类型: - - - - Constant Radius - 常数半径 - - - - Variable Radius - 可变半径 - - - - Shape - 形状 - - - - Selected shape: - 所选的形状: - - - - No selection - 未选择 - - - - Edges to fillet - 倒圆角边 - - - - - Start radius - 开始半径 - - - - End radius - 结束半径 - - - - Radius - 半径 - - - - No edge selected - 未选定边 - - - - No edge entity is checked to fillet. -Please check one or more edge entities first. - 为选择倒圆角的实体边. -请先检查一个或多个实体边. - - - - All - 全部 - - - - None - - - - - - Edge%1 - 边 %1 - - - - No shape selected - 无选定的形状 - - - - No valid shape is selected. -Please select a valid shape in the drop-down box first. - 未选中有效形状.请先在下拉框中选择一个有效形状. - - - - PartGui::DlgPartBox - - - Box definition - 立方体定义 - - - - X: - X: - - - - Z: - Z: - - - - Y: - Y: - - - - Cancel - 取消 - - - - OK - 确定 - - - - Size: - 大小: - - - - Height: - 高度: - - - - Width: - 宽度: - - - - Length: - 长度: - - - - Position: - 位置: - - - - Direction: - 方向: - - - - PartGui::DlgPartCylinder - - - Cylinder definition - 定义圆柱体 - - - - Parameter - 参数 - - - - Height: - 高度: - - - - Radius: - 半径: - - - - Position: - 位置: - - - - Direction: - 方向: - - - - X: - X: - - - - Z: - Z: - - - - Y: - Y: - - - - OK - 确定 - - - - Cancel - 取消 - - - - PartGui::DlgPartImportIges - - - IGES input file - IGES 输入文件 - - - - ... - ... - - - - Cancel - 取消 - - - - OK - 确定 - - - - File Name - 文件名 - - - - - - - - PartGui::DlgPartImportIgesImp - - - IGES (*.igs *.iges);;All Files (*.*) - IGES (*.igs *.iges);;All Files (*.*) - - - - PartGui::DlgPartImportStep - - - ... - ... - - - - Cancel - 取消 - - - - OK - 确定 - - - - Step input file - 输入文件步骤 - - - - File Name - 文件名 - - - - - - - - PartGui::DlgPartImportStepImp - - - STEP (*.stp *.step);;All Files (*.*) - STEP (*.stp *.step);;All Files (*.*) - - - - PartGui::DlgPrimitives - - - Geometric Primitives - 几何图元 - - - Primitive - 图元 - - - X min - X 最小 - - - x max - X 最大 - - - Y min - Y 最小 - - - Y max - Y 最大 - - - Z min - Z 最小 - - - Z max - Z 最大 - - - X2 min - X2 最小 - - - X2 max - X2 最大 - - - Z2 min - Z2 最小 - - - Z2 max - Z2 最大 - - - Angle - 0 for cyl - Angle - 0 for cyl - - - Angle0 - 角度0 - - - Angle1 - 角度1 - - - X Axis Value: - X轴数值: - - - Y Axis Value: - Y轴数值: - - - Z Axis Value: - Z轴数值: - - - - Wedge - Wedge - - - - Circle - - - - Vertex - 顶点 - - - Position - 位置 - - - - - - Z: - Z: - - - - - - X: - X: - - - Direction: - 方向: - - - - - - Y: - Y: - - - - Plane - 平面 - - - - Box - 立方体 - - - - Cylinder - 圆柱体 - - - - Cone - 圆锥体 - - - - Sphere - 球体 - - - - Ellipsoid - 椭圆体 - - - - Torus - 圆环面 - - - - Ellipse - - - - - Point - - - - - Line - - - - - Parameter - 参数 - - - - - Width: - 宽度: - - - - - Length: - 长度: - - - - - - - Height: - 高度: - - - - - - Angle: - 角度: - - - - - - - Radius: - 半径: - - - - - - Radius 1: - 半径 1: - - - - - - Radius 2: - 半径 2: - - - - - - U parametric: - U 参数: - - - - - - V parametric: - V 参数: - - - - X min/max: - - - - - Y min/max: - - - - - Z min/max: - - - - - X2 min/max: - - - - - Z2 min/max: - - - - - Coordinate system: - - - - - Right-handed - - - - - Left-handed - - - - - - Angle 1: - - - - - - Angle 2: - - - - - From three points - - - - - Major radius: - - - - - Minor radius: - - - - - End point - - - - - Start point - - - - - &Create - 创建(&C) - - - Alt+C - Alt+C - - - Cl&ose - 关闭(&O) - - - Alt+O - Alt+O - - - - - - Create %1 - 创建 %1 - - - - No active document - 无活动文档 - - - - Pitch: - 间距: - - - - Helix - 螺旋体 - - - 3D View - 3D 视图 - - - - PartGui::DlgRevolution - - - Revolve - 旋转 - - - - Y: - Y: - - - - X: - X: - - - - Angle: - 角度: - - - - Z: - Z: - - - - Axis: - 轴: - - - - Shape - 形状 - - - - Select line in 3D view - - - - - Select a shape for revolution, first. - 先选择一个形状来修改. - - - - PartGui::DlgSettings3DViewPart - - - View accuracy / Performance - 查看精度/性能 - - - - View smoothing - 平滑视图 - - - - Using high-quality normals - 默认使用高质量 - - - - This will slow down render speed but will lead to nicer results - 这会降低渲染速度,但效果会更好 - - - - Defines the appearance of surfaces - 定义表面外观 - - - - Shape view - 查看形状 - - - - Tessellation - 镶嵌 - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this option is unset Phong shading is used, if it is set flat shading is used.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Flat shading/Phong shading</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">With flat shading the surface normals are not defined per vertex that leads to a unreal appearance for curved surfaces while using Phong shading leads to a smoother appearance. </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">如果此选项不设置则启用多面遮罩效果,如果设置启用单面遮罩效果.</p></body></html> - - - - Do not define normal per vertex - 不需要定义每一个常规顶点 - - - - Defines the deviation of tessellation to the actual surface - 定义实际表面镶嵌的偏差 - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tessellation</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">Defines the maximum deviation of the tessellated mesh to the surface. The smaller the value is the slower the render speed and the nicer the appearance are.</span></p></body></html> - <html><head><meta name="qrichtext"content="1"/></head> <body style="white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px;"> 镶嵌</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-weight:600;"></p> <p style="margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;-qt-block-indent:0; text-indent:0px; font-weight:600;"> <span style="font-weight:400;"> 定义的表面镶嵌网的最大偏差.值越小速度越慢,外观也越柔和</span></p></body></html> - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Hint</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Defining the normals per vertex is also called <span style=" font-style:italic;">Phong shading</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"><span style=" font-style:normal;">while defining the normals per face is called </span>Flat shading<span style=" font-style:normal;">.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"> <span style=" font-weight:600;">暗示</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">每个顶点的法线的定义也被称为<span style=" font-style:italic;">Phong光照</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-style:italic;"> <span style=" font-style:normal;">同时确定每个面的法线称为</span>平阴影<span style=" font-style:normal;">。</span> </p></body></html> - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">High-quality normals</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This will slow down render speed but will lead to nicer results.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> <span style=" font-weight:600;">高品质的法线</span> </p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">这将减缓渲染速度,但会导致更好的结果。 </p></body></html> - - - - Maximum deviation depending on the model bounding box - 最大偏差取决于模型边界 - - - - % - % - - - - Deviation - 偏差 - - - - Setting a too small deviation causes the tessellation to take longerand thus freezes or slows down the GUI. - 设置得太小会导致贴图耗时过长,切会使GUI界面冻结或速度减慢. - - - - PartGui::DlgSettingsGeneral - - - General - 常规 - - - - Export - 导出 - - - - Millimeter - 毫米 - - - - Meter - - - - - Inch - 英寸 - - - - Units for export of STEP/IGES - 单元输出为 STEP/IGES - - - - Model settings - - - - - Automatically refine model after boolean operation - - - - - Automatically check model after boolean operation - - - - - PartGui::FaceColors - - - Face colors - - - - - Do you really want to cancel? - - - - - PartGui::Location - - - Location - - - - - Position - 位置 - - - - 3D View - 3D 视图 - - - - PartGui::LoftWidget - - - - Vertex/Wire - 顶点/线 - - - - - Loft - 放样 - - - - Too few elements - 元素太少 - - - - At least two vertices, edges or wires are required. - - - - At least two vertices or wires are required. - 至少需要两个顶点或线. - - - - PartGui::Mirroring - - - Mirroring - 镜像 - - - - Shapes - 形状 - - - - Mirror plane: - 镜像平面: - - - - XY plane - XY 平面 - - - - XZ plane - XZ 平面 - - - - YZ plane - YZ 平面 - - - - Base point: - 基准点: - - - - x - x - - - - y - y - - - - z - z - - - - Select a shape for mirroring, first. - 请先选择一个形状执行镜像操作. - - - - No such document '%1'. - 找不到文档'%1'. - - - - PartGui::ShapeBuilderWidget - - - - - - - Wrong selection - 选择错误 - - - - - Select two vertices - 选择两个顶点 - - - Select three or more edges - 选择三条或更多边 - - - - Select one or more edges - - - - - Select two or more faces - 选择两个或更多面 - - - - Select only one part object - 仅选择一个零件对象 - - - - Select two vertices to create an edge - 选择两个顶点创建边 - - - - Select a closed set of edges - 选择一组闭合的边 - - - - Select adjacent faces - 选择相邻面 - - - - All shape types can be selected - All shape types can be selected - - - - PartGui::SweepWidget - - - - Vertex/Wire - 顶点/线 - - - - - Sweep - - - - - Sweep path - - - - - Select an edge or wire you want to sweep along. - - - - - Too few elements - 元素太少 - - - - At least one edge or wire is required. - - - - - PartGui::TaskDialogEditDynamic - - Hint - Hint - - - Select Control. - Select Control. - - - Control - Control - - - Dynamic - Dynamic - - - Align - Align - - - Value - - - - Special - Special - - - Command - 命令 - - - Stretch - Stretch - - - Move - 移动 - - - Rotate - 旋转 - - - Offset - 偏移 - - - Orient - Orient - - - Match - Match - - - Surround - Surround - - - dummy - dummy - - - X Axis - X Axis - - - Y Axis - Y Axis - - - Z Axis - Z Axis - - - Increment - Increment - - - .125 - .125 - - - .500 - .500 - - - 1.000 - 1.000 - - - 5.000 - 5.000 - - - 10.000 - 10.000 - - - Drag arrows to stretch box by increment - Drag arrows to stretch box by increment - - - Drag arrows to move box by increment - Drag arrows to move box by increment - - - Not implemented yet - Not implemented yet - - - Drag arrows to offset checked axes by increment - Drag arrows to offset checked axes by increment - - - Select dragger for stretch by align - Select dragger for stretch by align - - - Select dragger for move by align - Select dragger for move by align - - - Select dragger for stretch by value - Select dragger for stretch by value - - - Select dragger for move by value - Select dragger for move by value - - - 1.0 - 1.0 - - - Enter Value - Enter Value - - - Select box to match - Select box to match - - - Select a point - Select a point - - - 0.0 - 0.0 - - - Select dragger to align - Select dragger to align - - - Select dragger to modify - Select dragger to modify - - - - PartGui::TaskFaceColors - - - Set color per face - 单独设置每个面的颜色 - - - - Click on the faces in the 3d view to select them. - 在3D视图中点击表面选择它们. - - - - Faces: - 面: - - - - Set to default - 设置为默认 - - - - PartGui::TaskLoft - - - Loft - 放样 - - - Vertex/Wire - 顶点/线 - - - Move right - 右移 - - - <b>Move the selected item one level down.</b><p>This will also change the level of the parent item.</p> - <b>移动选中对象到下一层级.</b><p>这将同时改变父级对象.</p> - - - Move left - 左移 - - - <b>Move the selected item one level up.</b><p>This will also change the level of the parent item.</p> - <b>移动选中对象到上一层级.</b><p>这将同时改变父级对象.</p> - - - Move up - 上移 - - - <b>Move the selected item up.</b><p>The item will be moved within the hierarchy level.</p> - <b>上移选中对象.</b><p>仅在层级中移动.</p> - - - Move down - 下移 - - - <b>Move the selected item down.</b><p>The item will be moved within the hierarchy level.</p> - <b>下移选中对象.</b><p>仅在层级中移动.</p> - - - - Create solid - 创建实体 - - - - Ruled surface - 直纹曲面 - - - - PartGui::TaskShapeBuilder - - - - Create shape - 创建形体 - - - - Edge from vertices - Edge from vertices - - - - Face from edges - Face from edges - - - - Planar - 平面 - - - - Shell from faces - Shell from faces - - - - Solid from shell - Solid from shell - - - - Create - 创建 - - - - All faces - 所有面 - - - - PartGui::TaskSweep - - - Sweep - - - - - Create solid - 创建实体 - - - - Frenet - - - - - Select one or more profiles and select an edge or wire -in the 3D view for the sweep path. - - - - - QObject - - - - - - - Wrong selection - 选择错误 - - - - - Select two shapes please. - 请选择两个形状. - - - - - - All CAD Files (*.stp *.step *.igs *.iges *.brp *.brep) - 所有 CAD 文件 (*.stp *.step *.igs *.iges *.brp *.brep) - - - - - - STEP (*.stp *.step) - STEP (*.stp *.step) - - - - - - IGES (*.igs *.iges) - IGES (*.igs *.iges) - - - - - - BREP (*.brp *.brep) - BREP (*.brp *.brep) - - - - - - All Files (*.*) - 所有文件(*.*) - - - - Sewing Tolerance - 缝接公差 - - - - Enter tolerance for sewing shape: - 输入形状缝接的公差: - - - - Edit mirror plane - 编辑镜像平面 - - - - Edit chamfer edges - - - - Transform - 变形 - - - - - Part design - 零件设计 - - - - - Select two shapes or more, please. - 请选择以上两个形状. - - - - You have to select either two edges or two wires. - 你必须选择二条边或者二个线框. - - - - Edit fillet edges - 编辑圆角边 - - - - Set colors... - 设置颜色... - - - - Workbench - - - &Part - 零件(&P) - - - - &Simple - 简单(&S) - - - - &Parametric - 参数化(&P) - - - - Part tools - 零件工具 - - - - Solids - 实体 - - - - Boolean - 布尔值 - - - diff --git a/src/Mod/PartDesign/App/FeatureFace.cpp b/src/Mod/PartDesign/App/FeatureFace.cpp index 5bf37da33..55030f6c9 100644 --- a/src/Mod/PartDesign/App/FeatureFace.cpp +++ b/src/Mod/PartDesign/App/FeatureFace.cpp @@ -42,7 +42,6 @@ #endif #include -#include #include "FeatureFace.h" diff --git a/src/Mod/PartDesign/App/FeatureGroove.cpp b/src/Mod/PartDesign/App/FeatureGroove.cpp index 40309d496..763016932 100644 --- a/src/Mod/PartDesign/App/FeatureGroove.cpp +++ b/src/Mod/PartDesign/App/FeatureGroove.cpp @@ -26,19 +26,18 @@ # include # include # include -# include # include # include # include # include # include # include +# include #endif #include #include #include -#include #include "FeatureGroove.h" @@ -71,58 +70,51 @@ short Groove::mustExecute() const App::DocumentObjectExecReturn *Groove::execute(void) { - App::DocumentObject* link = Sketch.getValue(); - if (!link) - return new App::DocumentObjectExecReturn("No sketch linked"); - if (!link->getTypeId().isDerivedFrom(Part::Part2DObject::getClassTypeId())) - return new App::DocumentObjectExecReturn("Linked object is not a Sketch or Part2DObject"); - - Part::Part2DObject* pcSketch=static_cast(link); - - TopoDS_Shape shape = pcSketch->Shape.getShape()._Shape; - if (shape.IsNull()) - return new App::DocumentObjectExecReturn("Linked shape object is empty"); - - // this is a workaround for an obscure OCC bug which leads to empty tessellations - // for some faces. Making an explicit copy of the linked shape seems to fix it. - // The error only happens when re-computing the shape. - if (!this->Shape.getValue().IsNull()) { - BRepBuilderAPI_Copy copy(shape); - shape = copy.Shape(); - if (shape.IsNull()) - return new App::DocumentObjectExecReturn("Linked shape object is empty"); - } - - TopExp_Explorer ex; + // Validate parameters + double angle = Angle.getValue(); + if (angle < Precision::Confusion()) + return new App::DocumentObjectExecReturn("Angle of groove too small"); + if (angle > 360.0) + return new App::DocumentObjectExecReturn("Angle of groove too large"); + + angle = Base::toRadians(angle); + // Reverse angle if selected + if (Reversed.getValue() && !Midplane.getValue()) + angle *= (-1.0); + + Part::Part2DObject* sketch = 0; std::vector wires; - for (ex.Init(shape, TopAbs_WIRE); ex.More(); ex.Next()) { - wires.push_back(TopoDS::Wire(ex.Current())); + TopoDS_Shape support; + try { + sketch = getVerifiedSketch(); + wires = getSketchWires(); + support = getSupportShape(); + } catch (const Base::Exception& e) { + return new App::DocumentObjectExecReturn(e.what()); } - if (wires.empty()) // there can be several wires - return new App::DocumentObjectExecReturn("Linked shape object is not a wire"); // get the Sketch plane - Base::Placement SketchPlm = pcSketch->Placement.getValue(); + Base::Placement SketchPlm = sketch->Placement.getValue(); // get reference axis App::DocumentObject *pcReferenceAxis = ReferenceAxis.getValue(); const std::vector &subReferenceAxis = ReferenceAxis.getSubValues(); - if (pcReferenceAxis && pcReferenceAxis == pcSketch) { + if (pcReferenceAxis && pcReferenceAxis == sketch) { bool hasValidAxis=false; Base::Axis axis; if (subReferenceAxis[0] == "V_Axis") { hasValidAxis = true; - axis = pcSketch->getAxis(Part::Part2DObject::V_Axis); + axis = sketch->getAxis(Part::Part2DObject::V_Axis); } else if (subReferenceAxis[0] == "H_Axis") { hasValidAxis = true; - axis = pcSketch->getAxis(Part::Part2DObject::H_Axis); + axis = sketch->getAxis(Part::Part2DObject::H_Axis); } else if (subReferenceAxis[0].size() > 4 && subReferenceAxis[0].substr(0,4) == "Axis") { int AxId = std::atoi(subReferenceAxis[0].substr(4,4000).c_str()); - if (AxId >= 0 && AxId < pcSketch->getAxisCount()) { + if (AxId >= 0 && AxId < sketch->getAxisCount()) { hasValidAxis = true; - axis = pcSketch->getAxis(AxId); + axis = sketch->getAxis(AxId); } } if (hasValidAxis) { @@ -140,54 +132,46 @@ App::DocumentObjectExecReturn *Groove::execute(void) Base::Vector3f v = Axis.getValue(); gp_Dir dir(v.x,v.y,v.z); - // get the support of the Sketch if any - App::DocumentObject* pcSupport = pcSketch->Support.getValue(); - Part::Feature *SupportObject = 0; - if (pcSupport && pcSupport->getTypeId().isDerivedFrom(Part::Feature::getClassTypeId())) - SupportObject = static_cast(pcSupport); - - TopoDS_Shape aFace = makeFace(wires); - if (aFace.IsNull()) - return new App::DocumentObjectExecReturn("Creating a face from sketch failed"); - - // Rotate the face by half the angle to get Groove symmetric to sketch plane - if (Midplane.getValue()) { - gp_Trsf mov; - mov.SetRotation(gp_Ax1(pnt, dir), Base::toRadians(Angle.getValue()) * (-1.0) / 2.0); - TopLoc_Location loc(mov); - aFace.Move(loc); - } - - this->positionBySketch(); - TopLoc_Location invObjLoc = this->getLocation().Inverted(); - pnt.Transform(invObjLoc.Transformation()); - dir.Transform(invObjLoc.Transformation()); - - // Reverse angle if selected - double angle = Base::toRadians(Angle.getValue()); - if (Reversed.getValue() && !Midplane.getValue()) - angle *= (-1.0); - try { + TopoDS_Shape sketchshape = makeFace(wires); + if (sketchshape.IsNull()) + return new App::DocumentObjectExecReturn("Creating a face from sketch failed"); + + // Rotate the face by half the angle to get Groove symmetric to sketch plane + if (Midplane.getValue()) { + gp_Trsf mov; + mov.SetRotation(gp_Ax1(pnt, dir), Base::toRadians(Angle.getValue()) * (-1.0) / 2.0); + TopLoc_Location loc(mov); + sketchshape.Move(loc); + } + + this->positionBySketch(); + TopLoc_Location invObjLoc = this->getLocation().Inverted(); + pnt.Transform(invObjLoc.Transformation()); + dir.Transform(invObjLoc.Transformation()); + support.Move(invObjLoc); + sketchshape.Move(invObjLoc); + // revolve the face to a solid - BRepPrimAPI_MakeRevol RevolMaker(aFace.Moved(invObjLoc), gp_Ax1(pnt, dir), angle); + BRepPrimAPI_MakeRevol RevolMaker(sketchshape, gp_Ax1(pnt, dir), angle); if (RevolMaker.IsDone()) { TopoDS_Shape result = RevolMaker.Shape(); - // if the sketch has a support fuse them to get one result object (PAD!) - if (SupportObject) { - const TopoDS_Shape& support = SupportObject->Shape.getValue(); - if (!support.IsNull() && support.ShapeType() == TopAbs_SOLID) { - // Let's call algorithm computing a fuse operation: - BRepAlgoAPI_Cut mkCut(support.Moved(invObjLoc), result); - // Let's check if the fusion has been successful - if (!mkCut.IsDone()) - throw Base::Exception("Cut out of support failed"); - result = mkCut.Shape(); - } - } + // set the subtractive shape property for later usage in e.g. pattern + this->SubShape.setValue(result); + + // cut out groove to get one result object + BRepAlgoAPI_Cut mkCut(support, result); + // Let's check if the fusion has been successful + if (!mkCut.IsDone()) + throw Base::Exception("Cut out of support failed"); - this->Shape.setValue(result); + // we have to get the solids (fuse sometimes creates compounds) + TopoDS_Shape solRes = this->getSolid(mkCut.Shape()); + if (solRes.IsNull()) + return new App::DocumentObjectExecReturn("Resulting shape is not a solid"); + + this->Shape.setValue(solRes); } else return new App::DocumentObjectExecReturn("Could not revolve the sketch!"); @@ -196,7 +180,14 @@ App::DocumentObjectExecReturn *Groove::execute(void) } catch (Standard_Failure) { Handle_Standard_Failure e = Standard_Failure::Caught(); - return new App::DocumentObjectExecReturn(e->GetMessageString()); + if (std::string(e->GetMessageString()) == "TopoDS::Face") + return new App::DocumentObjectExecReturn("Could not create face from sketch.\n" + "Intersecting sketch entities or multiple faces in a sketch are not allowed."); + else + return new App::DocumentObjectExecReturn(e->GetMessageString()); + } + catch (Base::Exception& e) { + return new App::DocumentObjectExecReturn(e.what()); } } diff --git a/src/Mod/PartDesign/App/FeatureHole.cpp b/src/Mod/PartDesign/App/FeatureHole.cpp index c16d6a7f7..55d296bc5 100644 --- a/src/Mod/PartDesign/App/FeatureHole.cpp +++ b/src/Mod/PartDesign/App/FeatureHole.cpp @@ -42,7 +42,6 @@ #endif #include -#include #include "FeatureHole.h" diff --git a/src/Mod/PartDesign/App/FeaturePad.cpp b/src/Mod/PartDesign/App/FeaturePad.cpp index ae037197b..ca02bf850 100644 --- a/src/Mod/PartDesign/App/FeaturePad.cpp +++ b/src/Mod/PartDesign/App/FeaturePad.cpp @@ -26,8 +26,7 @@ # include # include # include -# include -# include +# include # include # include # include @@ -42,7 +41,6 @@ #endif #include -#include #include #include "FeaturePad.h" @@ -60,7 +58,7 @@ Pad::Pad() Type.setEnums(TypeEnums); ADD_PROPERTY(Length,(100.0)); ADD_PROPERTY(Length2,(100.0)); - ADD_PROPERTY(FaceName,("")); + ADD_PROPERTY_TYPE(UpToFace,(0),"Pad",(App::PropertyType)(App::Prop_None),"Face where feature will end"); } short Pad::mustExecute() const @@ -68,253 +66,125 @@ short Pad::mustExecute() const if (Placement.isTouched() || Length.isTouched() || Length2.isTouched() || - FaceName.isTouched()) + UpToFace.isTouched()) return 1; return Additive::mustExecute(); } App::DocumentObjectExecReturn *Pad::execute(void) { + // Validate parameters double L = Length.getValue(); - if (L < Precision::Confusion()) + if ((std::string(Type.getValueAsString()) == "Length") && (L < Precision::Confusion())) return new App::DocumentObjectExecReturn("Length of pad too small"); double L2 = Length2.getValue(); if ((std::string(Type.getValueAsString()) == "TwoLengths") && (L < Precision::Confusion())) return new App::DocumentObjectExecReturn("Second length of pad too small"); - App::DocumentObject* link = Sketch.getValue(); - if (!link) - return new App::DocumentObjectExecReturn("No sketch linked"); - if (!link->getTypeId().isDerivedFrom(Part::Part2DObject::getClassTypeId())) - return new App::DocumentObjectExecReturn("Linked object is not a Sketch or Part2DObject"); - TopoDS_Shape shape = static_cast(link)->Shape.getShape()._Shape; - if (shape.IsNull()) - return new App::DocumentObjectExecReturn("Linked shape object is empty"); - - // this is a workaround for an obscure OCC bug which leads to empty tessellations - // for some faces. Making an explicit copy of the linked shape seems to fix it. - // The error almost happens when re-computing the shape but sometimes also for the - // first time - BRepBuilderAPI_Copy copy(shape); - shape = copy.Shape(); - if (shape.IsNull()) - return new App::DocumentObjectExecReturn("Linked shape object is empty"); - - TopExp_Explorer ex; + Part::Part2DObject* sketch = 0; std::vector wires; - for (ex.Init(shape, TopAbs_WIRE); ex.More(); ex.Next()) { - wires.push_back(TopoDS::Wire(ex.Current())); + try { + sketch = getVerifiedSketch(); + wires = getSketchWires(); + } catch (const Base::Exception& e) { + return new App::DocumentObjectExecReturn(e.what()); + } + + TopoDS_Shape support; + try { + support = getSupportShape(); + } catch (const Base::Exception&) { + // ignore, because support isn't mandatory + support = TopoDS_Shape(); } - if (/*shape.ShapeType() != TopAbs_WIRE*/wires.empty()) // there can be several wires - return new App::DocumentObjectExecReturn("Linked shape object is not a wire"); // get the Sketch plane - Base::Placement SketchPos = static_cast(link)->Placement.getValue(); + Base::Placement SketchPos = sketch->Placement.getValue(); Base::Rotation SketchOrientation = SketchPos.getRotation(); Base::Vector3d SketchVector(0,0,1); SketchOrientation.multVec(SketchVector,SketchVector); - // get the support of the Sketch if any - App::DocumentObject* SupportLink = static_cast(link)->Support.getValue(); - Part::Feature *SupportObject = 0; - if (SupportLink && SupportLink->getTypeId().isDerivedFrom(Part::Feature::getClassTypeId())) - SupportObject = static_cast(SupportLink); - - TopoDS_Shape aFace = makeFace(wires); - if (aFace.IsNull()) - return new App::DocumentObjectExecReturn("Creating a face from sketch failed"); - this->positionBySketch(); TopLoc_Location invObjLoc = this->getLocation().Inverted(); try { - // extrude the face to a solid + support.Move(invObjLoc); + + gp_Dir dir(SketchVector.x,SketchVector.y,SketchVector.z); + dir.Transform(invObjLoc.Transformation()); + + TopoDS_Shape sketchshape = makeFace(wires); + if (sketchshape.IsNull()) + return new App::DocumentObjectExecReturn("Pad: Creating a face from sketch failed"); + sketchshape.Move(invObjLoc); + TopoDS_Shape prism; - bool isSolid = false; // support is a solid? - bool isSolidChecked = false; // not checked yet + std::string method(Type.getValueAsString()); + if (method == "UpToFirst" || method == "UpToLast" || method == "UpToFace") { + TopoDS_Face supportface = getSupportFace(); + supportface.Move(invObjLoc); - if ((std::string(Type.getValueAsString()) == "UpToLast") || - (std::string(Type.getValueAsString()) == "UpToFirst") || - (std::string(Type.getValueAsString()) == "UpToFace")) - { + // Find a valid face to extrude up to TopoDS_Face upToFace; - gp_Dir dir(SketchVector.x,SketchVector.y,SketchVector.z); - - if ((std::string(Type.getValueAsString()) == "UpToLast") || - (std::string(Type.getValueAsString()) == "UpToFirst")) - { - // Check for valid support object - if (!SupportObject) - return new App::DocumentObjectExecReturn("Cannot extrude up to face: No support in Sketch!"); - - const TopoDS_Shape& support = SupportObject->Shape.getValue(); - if (support.IsNull()) - return new App::DocumentObjectExecReturn("Cannot extrude up to face: Support shape is invalid"); - TopExp_Explorer xp (support, TopAbs_SOLID); - if (!xp.More()) - return new App::DocumentObjectExecReturn("Cannot extrude up to face: Support shape is not a solid"); - isSolid = true; - isSolidChecked = true; - - TopoDS_Shape origFace = makeFace(wires); // original sketch face before moving one unit - std::vector cfaces = Part::findAllFacesCutBy(support, origFace, dir); - if (cfaces.empty()) - return new App::DocumentObjectExecReturn("No faces found in this direction"); - - // Find nearest/furthest face - std::vector::const_iterator it, it_near, it_far; - it_near = it_far = cfaces.begin(); - for (it = cfaces.begin(); it != cfaces.end(); it++) - if (it->distsq > it_far->distsq) - it_far = it; - else if (it->distsq < it_near->distsq) - it_near = it; - upToFace = (std::string(Type.getValueAsString()) == "UpToLast" ? it_far->face : it_near->face); - } else { - if (FaceName.isEmpty()) - return new App::DocumentObjectExecReturn("Cannot extrude up to face: No face selected"); - - // Get active object, this is the object that the user referenced when he clicked on the face! - App::DocumentObject* baseLink = this->getDocument()->getActiveObject(); - - if (!baseLink) - return new App::DocumentObjectExecReturn("Cannot extrude up to face: No object linked"); - if (!baseLink->getTypeId().isDerivedFrom(Part::Feature::getClassTypeId())) - return new App::DocumentObjectExecReturn("Cannot extrude up to face: Linked object is not a Part object"); - Part::Feature *base = static_cast(baseLink); - const Part::TopoShape& baseShape = base->Shape.getShape(); - if (baseShape._Shape.IsNull()) - return new App::DocumentObjectExecReturn("Cannot extrude up to face: Cannot work on invalid shape"); - - TopoDS_Shape sub = baseShape.getSubShape(FaceName.getValue()); - if (!sub.IsNull() && sub.ShapeType() == TopAbs_FACE) - upToFace = TopoDS::Face(sub); - else - return new App::DocumentObjectExecReturn("Cannot extrude up to face: Selection is not a face"); - - // Validate face - // TODO: This would also exclude faces that are valid but not cut by the line - // So for now we trust to the intelligence of the user when picking the face - /*std::vector cfaces = findAllFacesCutBy(upToFace, origFace, dir); - if (cfaces.empty()) - return new App::DocumentObjectExecReturn("No faces found in this direction");*/ + if (method == "UpToFace") { + getUpToFaceFromLinkSub(upToFace, UpToFace); + upToFace.Move(invObjLoc); } + getUpToFace(upToFace, support, supportface, sketchshape, method, dir); + + // A support object is always required and we need to use BRepFeat_MakePrism + // Problem: For Pocket/UpToFirst (or an equivalent Pocket/UpToFace) the resulting shape is invalid + // because the feature does not add any material. This only happens with the "2" option, though + // Note: It might be possible to pass a shell or a compound containing multiple faces + // as the Until parameter of Perform() + BRepFeat_MakePrism PrismMaker; + PrismMaker.Init(support, sketchshape, supportface, dir, 2, 1); + PrismMaker.Perform(upToFace); - // Create semi-infinite prism from sketch in direction dir - // Hack, because the two lines commented out below do NOT work!!! - SketchVector *= 1E6; - gp_Vec vec(SketchVector.x,SketchVector.y,SketchVector.z); - vec.Transform(invObjLoc.Transformation()); - BRepPrimAPI_MakePrism PrismMaker(aFace.Moved(invObjLoc),vec,0,1); // very long, but finite prism - //dir.Transform(invObjLoc.Transformation()); - //BRepPrimAPI_MakePrism PrismMaker(aFace.Moved(invObjLoc),dir,0,0,1); if (!PrismMaker.IsDone()) - return new App::DocumentObjectExecReturn("Cannot extrude up to face: Could not extrude the sketch!"); - - // Cut off the prism at the face we found - // Grab any point from the sketch - TopExp_Explorer exp; - exp.Init(aFace, TopAbs_VERTEX); - if (!exp.More()) - return new App::DocumentObjectExecReturn("Cannot extrude up to face: Sketch without points?"); - gp_Pnt aPnt = BRep_Tool::Pnt(TopoDS::Vertex(exp.Current())); - - // Create a halfspace from the face, extending in direction of sketch plane - BRepPrimAPI_MakeHalfSpace mkHalfSpace(upToFace, aPnt); - if (!mkHalfSpace.IsDone()) - return new App::DocumentObjectExecReturn("Cannot extrude up to face: HalfSpace creation failed"); - - // Find common material between halfspace and prism - BRepAlgoAPI_Common mkCommon(PrismMaker.Shape(), mkHalfSpace.Solid().Moved(invObjLoc)); - if (!mkCommon.IsDone()) - return new App::DocumentObjectExecReturn("Cannot extrude up to face: Common creation failed"); - - prism = this->getSolid(mkCommon.Shape()); - if (prism.IsNull()) - return new App::DocumentObjectExecReturn("Cannot extrude up to face: Resulting shape is not a solid"); - } else if ((std::string(Type.getValueAsString()) == "Length") || - (std::string(Type.getValueAsString()) == "TwoLengths")) { - if (std::string(Type.getValueAsString()) == "Length") { - if (Midplane.getValue()) { - // Move face by half the extrusion distance to get pad symmetric to sketch plane - gp_Trsf mov; - mov.SetTranslation(gp_Vec(SketchVector.x,SketchVector.y,SketchVector.z) * (-1.0) * L/2.0); - TopLoc_Location loc(mov); - aFace.Move(loc); - } else if (Reversed.getValue()) { // negative direction - SketchVector *= -1.0; - } - - // lengthen the vector - SketchVector *= L; - } else { - // Move face by the second length to get pad extending to both sides of sketch plane - gp_Trsf mov; - mov.SetTranslation(gp_Vec(SketchVector.x,SketchVector.y,SketchVector.z) * (-1.0) * L2); - TopLoc_Location loc(mov); - aFace.Move(loc); - - // lengthen the vector - SketchVector *= (L + L2); - } - - // create the extrusion - gp_Vec vec(SketchVector.x,SketchVector.y,SketchVector.z); - vec.Transform(invObjLoc.Transformation()); - BRepPrimAPI_MakePrism PrismMaker(aFace.Moved(invObjLoc),vec,0,1); // finite prism - if (!PrismMaker.IsDone()) - return new App::DocumentObjectExecReturn("Could not extrude the sketch!"); + return new App::DocumentObjectExecReturn("Pad: Up to face: Could not extrude the sketch!"); prism = PrismMaker.Shape(); } else { - return new App::DocumentObjectExecReturn("Internal error: Unknown type for Pad feature"); + generatePrism(prism, sketchshape, method, dir, L, L2, + Midplane.getValue(), Reversed.getValue()); } - // if the sketch has a support fuse them to get one result object (PAD!) - if (SupportObject) { - // set the additive shape property for later usage in e.g. pattern - this->AddShape.setValue(prism); - - const TopoDS_Shape& support = SupportObject->Shape.getValue(); - - if (!isSolidChecked) { // we haven't checked for solid, yet - if (!support.IsNull()) { - TopExp_Explorer xp; - xp.Init(support,TopAbs_SOLID); - for (;xp.More(); xp.Next()) { - isSolid = true; - break; - } - } - - if (!isSolid) - return new App::DocumentObjectExecReturn("Support is not a solid"); - } + if (prism.IsNull()) + return new App::DocumentObjectExecReturn("Pad: Resulting shape is empty"); + // set the additive shape property for later usage in e.g. pattern + this->AddShape.setValue(prism); + + // if the sketch has a support fuse them to get one result object + if (!support.IsNull()) { // Let's call algorithm computing a fuse operation: - BRepAlgoAPI_Fuse mkFuse(support.Moved(invObjLoc), prism); + BRepAlgoAPI_Fuse mkFuse(support, prism); // Let's check if the fusion has been successful if (!mkFuse.IsDone()) - return new App::DocumentObjectExecReturn("Fusion with support failed"); + return new App::DocumentObjectExecReturn("Pad: Fusion with support failed"); TopoDS_Shape result = mkFuse.Shape(); - // we have to get the solids (fuse create seldomly compounds) + // we have to get the solids (fuse sometimes creates compounds) TopoDS_Shape solRes = this->getSolid(result); // lets check if the result is a solid if (solRes.IsNull()) - return new App::DocumentObjectExecReturn("Resulting shape is not a solid"); + return new App::DocumentObjectExecReturn("Pad: Resulting shape is not a solid"); this->Shape.setValue(solRes); - } - else { - TopoDS_Shape result = this->getSolid(prism); - // set the additive shape property for later usage in e.g. pattern - this->AddShape.setValue(result); - this->Shape.setValue(result); + } else { + this->Shape.setValue(prism); } return App::DocumentObject::StdReturn; } catch (Standard_Failure) { Handle_Standard_Failure e = Standard_Failure::Caught(); - return new App::DocumentObjectExecReturn(e->GetMessageString()); + if (std::string(e->GetMessageString()) == "TopoDS::Face") + return new App::DocumentObjectExecReturn("Could not create face from sketch.\n" + "Intersecting sketch entities or multiple faces in a sketch are not allowed."); + else + return new App::DocumentObjectExecReturn(e->GetMessageString()); + } + catch (Base::Exception& e) { + return new App::DocumentObjectExecReturn(e.what()); } } diff --git a/src/Mod/PartDesign/App/FeaturePad.h b/src/Mod/PartDesign/App/FeaturePad.h index f70803df7..6bfb9e609 100644 --- a/src/Mod/PartDesign/App/FeaturePad.h +++ b/src/Mod/PartDesign/App/FeaturePad.h @@ -41,7 +41,7 @@ public: App::PropertyEnumeration Type; App::PropertyLength Length; App::PropertyLength Length2; - App::PropertyString FaceName; + App::PropertyLinkSub UpToFace; /** @name methods override feature */ //@{ diff --git a/src/Mod/PartDesign/App/FeaturePocket.cpp b/src/Mod/PartDesign/App/FeaturePocket.cpp index 074c7b00f..5779e32a1 100644 --- a/src/Mod/PartDesign/App/FeaturePocket.cpp +++ b/src/Mod/PartDesign/App/FeaturePocket.cpp @@ -27,11 +27,9 @@ # include # include # include -# include # include # include -# include -# include +# include # include # include # include @@ -46,7 +44,6 @@ #endif #include -#include #include #include "FeaturePocket.h" @@ -54,7 +51,7 @@ using namespace PartDesign; -const char* Pocket::TypeEnums[]= {"Length","UpToLast","UpToFirst","ThroughAll","UpToFace",NULL}; +const char* Pocket::TypeEnums[]= {"Length","ThroughAll","UpToFirst","UpToFace",NULL}; PROPERTY_SOURCE(PartDesign::Pocket, PartDesign::Subtractive) @@ -63,85 +60,48 @@ Pocket::Pocket() ADD_PROPERTY(Type,((long)0)); Type.setEnums(TypeEnums); ADD_PROPERTY(Length,(100.0)); - ADD_PROPERTY(FaceName,("")); + ADD_PROPERTY_TYPE(UpToFace,(0),"Pocket",(App::PropertyType)(App::Prop_None),"Face where feature will end"); } short Pocket::mustExecute() const { if (Placement.isTouched() || Length.isTouched() || - FaceName.isTouched()) + UpToFace.isTouched()) return 1; return Subtractive::mustExecute(); } App::DocumentObjectExecReturn *Pocket::execute(void) { - App::DocumentObject* link = Sketch.getValue(); - if (!link) - return new App::DocumentObjectExecReturn("No sketch linked"); - if (!link->getTypeId().isDerivedFrom(Part::Part2DObject::getClassTypeId())) - return new App::DocumentObjectExecReturn("Linked object is not a Sketch or Part2DObject"); - TopoDS_Shape shape = static_cast(link)->Shape.getShape()._Shape; - if (shape.IsNull()) - return new App::DocumentObjectExecReturn("Linked shape object is empty"); + // Handle legacy features, these typically have Type set to 3 (previously NULL, now UpToFace), + // empty FaceName (because it didn't exist) and a value for Length + if (std::string(Type.getValueAsString()) == "UpToFace" && + (UpToFace.getValue() == NULL && Length.getValue() > Precision::Confusion())) + Type.setValue("Length"); - // this is a workaround for an obscure OCC bug which leads to empty tessellations - // for some faces. Making an explicit copy of the linked shape seems to fix it. - // The error almost happens when re-computing the shape but sometimes also for the - // first time - BRepBuilderAPI_Copy copy(shape); - shape = copy.Shape(); - if (shape.IsNull()) - return new App::DocumentObjectExecReturn("Linked shape object is empty"); - - TopExp_Explorer ex; + // Validate parameters + double L = Length.getValue(); + if ((std::string(Type.getValueAsString()) == "Length") && (L < Precision::Confusion())) + return new App::DocumentObjectExecReturn("Pocket: Length of pocket too small"); + + Part::Part2DObject* sketch = 0; std::vector wires; - for (ex.Init(shape, TopAbs_WIRE); ex.More(); ex.Next()) { - wires.push_back(TopoDS::Wire(ex.Current())); + TopoDS_Shape support; + try { + sketch = getVerifiedSketch(); + wires = getSketchWires(); + support = getSupportShape(); + } catch (const Base::Exception& e) { + return new App::DocumentObjectExecReturn(e.what()); } - if (wires.empty()) // there can be several wires - return new App::DocumentObjectExecReturn("Linked shape object is not a wire"); // get the Sketch plane - Base::Placement SketchPos = static_cast(link)->Placement.getValue(); + Base::Placement SketchPos = sketch->Placement.getValue(); Base::Rotation SketchOrientation = SketchPos.getRotation(); Base::Vector3d SketchVector(0,0,1); SketchOrientation.multVec(SketchVector,SketchVector); - // get the support of the Sketch if any - App::DocumentObject* SupportLink = static_cast(link)->Support.getValue(); - Part::Feature *SupportObject = 0; - if (SupportLink && SupportLink->getTypeId().isDerivedFrom(Part::Feature::getClassTypeId())) - SupportObject = static_cast(SupportLink); - - if (!SupportObject) - return new App::DocumentObjectExecReturn("No support in Sketch!"); - - const TopoDS_Shape& support = SupportObject->Shape.getValue(); - if (support.IsNull()) - return new App::DocumentObjectExecReturn("Support shape is invalid"); - TopExp_Explorer xp (support, TopAbs_SOLID); - if (!xp.More()) - return new App::DocumentObjectExecReturn("Support shape is not a solid"); - - TopoDS_Shape aFace = makeFace(wires); - if (aFace.IsNull()) - return new App::DocumentObjectExecReturn("Creating a face from sketch failed"); - - // This is a trick to avoid problems with the cut operation. Sometimes a cut doesn't - // work as expected if faces are coincident. Thus, we move the face in normal direction - // but make it longer by one unit in the opposite direction. - // TODO: Isn't one unit (one millimeter) a lot, assuming someone models a really tiny solid? - // What about using 2 * Precision::Confusion() ? - gp_Trsf mov; - mov.SetTranslation(gp_Vec(SketchVector.x,SketchVector.y,SketchVector.z)); - TopLoc_Location loc(mov); - aFace.Move(loc); - - // lengthen the vector - SketchVector *= (Length.getValue()+1); - // turn around for pockets SketchVector *= -1; @@ -149,131 +109,82 @@ App::DocumentObjectExecReturn *Pocket::execute(void) TopLoc_Location invObjLoc = this->getLocation().Inverted(); try { - // extrude the face to a solid - TopoDS_Shape prism; + support.Move(invObjLoc); + + gp_Dir dir(SketchVector.x,SketchVector.y,SketchVector.z); + dir.Transform(invObjLoc.Transformation()); - if ((std::string(Type.getValueAsString()) == "UpToLast") || - (std::string(Type.getValueAsString()) == "UpToFirst") || - (std::string(Type.getValueAsString()) == "UpToFace")) - { + TopoDS_Shape sketchshape = makeFace(wires); + if (sketchshape.IsNull()) + return new App::DocumentObjectExecReturn("Pocket: Creating a face from sketch failed"); + sketchshape.Move(invObjLoc); + + std::string method(Type.getValueAsString()); + if (method == "UpToFirst" || method == "UpToFace") { + TopoDS_Face supportface = getSupportFace(); + supportface.Move(invObjLoc); + + // Find a valid face to extrude up to TopoDS_Face upToFace; - gp_Dir dir(SketchVector.x,SketchVector.y,SketchVector.z); - - if ((std::string(Type.getValueAsString()) == "UpToLast") || - (std::string(Type.getValueAsString()) == "UpToFirst")) - { - TopoDS_Shape origFace = makeFace(wires); // original sketch face before moving one unit - std::vector cfaces = Part::findAllFacesCutBy(support, origFace, dir); - if (cfaces.empty()) - return new App::DocumentObjectExecReturn("No faces found in this direction"); - - // Find nearest/furthest face - std::vector::const_iterator it, it_near, it_far; - it_near = it_far = cfaces.begin(); - for (it = cfaces.begin(); it != cfaces.end(); it++) - if (it->distsq > it_far->distsq) - it_far = it; - else if (it->distsq < it_near->distsq) - it_near = it; - upToFace = (std::string(Type.getValueAsString()) == "UpToLast" ? it_far->face : it_near->face); - } else { - if (FaceName.isEmpty()) - return new App::DocumentObjectExecReturn("Cannot extrude up to face: No face selected"); - - // Get active object, this is the object that the user referenced when he clicked on the face! - App::DocumentObject* baseLink = this->getDocument()->getActiveObject(); - - if (!baseLink) - return new App::DocumentObjectExecReturn("Cannot extrude up to face: No object linked"); - if (!baseLink->getTypeId().isDerivedFrom(Part::Feature::getClassTypeId())) - return new App::DocumentObjectExecReturn("Cannot extrude up to face: Linked object is not a Part object"); - Part::Feature *base = static_cast(baseLink); - const Part::TopoShape& baseShape = base->Shape.getShape(); - if (baseShape._Shape.IsNull()) - return new App::DocumentObjectExecReturn("Cannot extrude up to face: Cannot work on invalid shape"); - - TopoDS_Shape sub = baseShape.getSubShape(FaceName.getValue()); - if (!sub.IsNull() && sub.ShapeType() == TopAbs_FACE) - upToFace = TopoDS::Face(sub); - else - return new App::DocumentObjectExecReturn("Cannot extrude up to face: Selection is not a face"); - - // Find the origin of this face (i.e. a vertex or a edge in a sketch) - TopoDS_Shape origin = base->findOriginOf(sub); - - // Validate face - // TODO: This would also exclude faces that are valid but not cut by the line - // So for now we trust to the intelligence of the user when picking the face - /*std::vector cfaces = findAllFacesCutBy(upToFace, origFace, dir); - if (cfaces.empty()) - return new App::DocumentObjectExecReturn("No faces found in this direction");*/ + if (method == "UpToFace") { + getUpToFaceFromLinkSub(upToFace, UpToFace); + upToFace.Move(invObjLoc); } + getUpToFace(upToFace, support, supportface, sketchshape, method, dir); + + // Special treatment because often the created stand-alone prism is invalid (empty) because + // BRepFeat_MakePrism(..., 2, 1) is buggy + BRepFeat_MakePrism PrismMaker; + PrismMaker.Init(support, sketchshape, supportface, dir, 0, 1); + PrismMaker.Perform(upToFace); - // Create semi-infinite prism from sketch in direction dir - dir.Transform(invObjLoc.Transformation()); - BRepPrimAPI_MakePrism PrismMaker(aFace.Moved(invObjLoc),dir,0,0,1); if (!PrismMaker.IsDone()) - return new App::DocumentObjectExecReturn("Cannot extrude up to face: Could not extrude the sketch!"); + return new App::DocumentObjectExecReturn("Pocket: Up to face: Could not extrude the sketch!"); + TopoDS_Shape prism = PrismMaker.Shape(); - // Cut off the prism at the face we found - // Grab any point from the sketch - TopExp_Explorer exp; - exp.Init(aFace, TopAbs_VERTEX); - if (!exp.More()) - return new App::DocumentObjectExecReturn("Cannot extrude up to face: Sketch without points?"); - gp_Pnt aPnt = BRep_Tool::Pnt(TopoDS::Vertex(exp.Current())); - - // Create a halfspace from the face, extending in direction of sketch plane - BRepPrimAPI_MakeHalfSpace mkHalfSpace(upToFace, aPnt); - if (!mkHalfSpace.IsDone()) - return new App::DocumentObjectExecReturn("Cannot extrude up to face: HalfSpace creation failed"); - - // Find common material between halfspace and prism - BRepAlgoAPI_Common mkCommon(PrismMaker.Shape(), mkHalfSpace.Solid().Moved(invObjLoc)); - if (!mkCommon.IsDone()) - return new App::DocumentObjectExecReturn("Cannot extrude up to face: Common creation failed"); - - prism = this->getSolid(mkCommon.Shape()); - if (prism.IsNull()) - return new App::DocumentObjectExecReturn("Cannot extrude up to face: Resulting shape is not a solid"); - } else if (std::string(Type.getValueAsString()) == "ThroughAll") { - gp_Dir dir(SketchVector.x,SketchVector.y,SketchVector.z); - dir.Transform(invObjLoc.Transformation()); - BRepPrimAPI_MakePrism PrismMaker(aFace.Moved(invObjLoc),dir,1,0,1); // infinite prism (in both directions!) - if (!PrismMaker.IsDone()) - return new App::DocumentObjectExecReturn("Could not extrude the sketch!"); - prism = PrismMaker.Shape(); - } else if (std::string(Type.getValueAsString()) == "Length") { - gp_Vec vec(SketchVector.x,SketchVector.y,SketchVector.z); - vec.Transform(invObjLoc.Transformation()); - BRepPrimAPI_MakePrism PrismMaker(aFace.Moved(invObjLoc),vec,0,1); // finite prism - if (!PrismMaker.IsDone()) - return new App::DocumentObjectExecReturn("Could not extrude the sketch!"); - prism = PrismMaker.Shape(); + // And the really expensive way to get the SubShape... + BRepAlgoAPI_Cut mkCut(support, prism); + if (!mkCut.IsDone()) + return new App::DocumentObjectExecReturn("Pocket: Up to face: Could not get SubShape!"); + // FIXME: In some cases this affects the Shape property: It is set to the same shape as the SubShape!!!! + this->SubShape.setValue(mkCut.Shape()); + this->Shape.setValue(prism); } else { - return new App::DocumentObjectExecReturn("Internal error: Unknown type for Pocket feature"); + TopoDS_Shape prism; + generatePrism(prism, sketchshape, method, dir, L, 0.0, + Midplane.getValue(), Reversed.getValue()); + if (prism.IsNull()) + return new App::DocumentObjectExecReturn("Pocket: Resulting shape is empty"); + + // set the subtractive shape property for later usage in e.g. pattern + this->SubShape.setValue(prism); + + // Cut the SubShape out of the support + BRepAlgoAPI_Cut mkCut(support, prism); + if (!mkCut.IsDone()) + return new App::DocumentObjectExecReturn("Pocket: Cut out of support failed"); + TopoDS_Shape result = mkCut.Shape(); + // we have to get the solids (fuse sometimes creates compounds) + TopoDS_Shape solRes = this->getSolid(result); + if (solRes.IsNull()) + return new App::DocumentObjectExecReturn("Pocket: Resulting shape is not a solid"); + this->Shape.setValue(solRes); } - this->SubShape.setValue(prism); - - // Cut out the pocket - BRepAlgoAPI_Cut mkCut(support.Moved(invObjLoc), prism); - - // Let's check if the fusion has been successful - if (!mkCut.IsDone()) - return new App::DocumentObjectExecReturn("Cut with support failed"); - - // we have to get the solids (fuse sometimes creates compounds) - TopoDS_Shape solRes = this->getSolid(mkCut.Shape()); - if (solRes.IsNull()) - return new App::DocumentObjectExecReturn("Resulting shape is not a solid"); - - this->Shape.setValue(solRes); - return App::DocumentObject::StdReturn; - } catch (Standard_Failure) { + } + catch (Standard_Failure) { Handle_Standard_Failure e = Standard_Failure::Caught(); - return new App::DocumentObjectExecReturn(e->GetMessageString()); + if (std::string(e->GetMessageString()) == "TopoDS::Face" && + (Type.getValueAsString() == "UpToFirst" || Type.getValueAsString() == "UpToFace")) + return new App::DocumentObjectExecReturn("Could not create face from sketch.\n" + "Intersecting sketch entities or multiple faces in a sketch are not allowed " + "for making a pocket up to a face."); + else + return new App::DocumentObjectExecReturn(e->GetMessageString()); + } + catch (Base::Exception& e) { + return new App::DocumentObjectExecReturn(e.what()); } } diff --git a/src/Mod/PartDesign/App/FeaturePocket.h b/src/Mod/PartDesign/App/FeaturePocket.h index f3c65bf12..1b15957ee 100644 --- a/src/Mod/PartDesign/App/FeaturePocket.h +++ b/src/Mod/PartDesign/App/FeaturePocket.h @@ -39,7 +39,7 @@ public: App::PropertyEnumeration Type; App::PropertyLength Length; - App::PropertyString FaceName; + App::PropertyLinkSub UpToFace; /** @name methods override feature */ //@{ diff --git a/src/Mod/PartDesign/App/FeatureRevolution.cpp b/src/Mod/PartDesign/App/FeatureRevolution.cpp index 30501df24..463c32970 100644 --- a/src/Mod/PartDesign/App/FeatureRevolution.cpp +++ b/src/Mod/PartDesign/App/FeatureRevolution.cpp @@ -26,19 +26,18 @@ # include # include # include -# include # include # include # include # include # include # include +# include #endif #include #include #include -#include #include "FeatureRevolution.h" @@ -71,58 +70,57 @@ short Revolution::mustExecute() const App::DocumentObjectExecReturn *Revolution::execute(void) { - App::DocumentObject* link = Sketch.getValue(); - if (!link) - return new App::DocumentObjectExecReturn("No sketch linked"); - if (!link->getTypeId().isDerivedFrom(Part::Part2DObject::getClassTypeId())) - return new App::DocumentObjectExecReturn("Linked object is not a Sketch or Part2DObject"); - - Part::Part2DObject* pcSketch=static_cast(link); - - TopoDS_Shape shape = pcSketch->Shape.getShape()._Shape; - if (shape.IsNull()) - return new App::DocumentObjectExecReturn("Linked shape object is empty"); - - // this is a workaround for an obscure OCC bug which leads to empty tessellations - // for some faces. Making an explicit copy of the linked shape seems to fix it. - // The error only happens when re-computing the shape. - if (!this->Shape.getValue().IsNull()) { - BRepBuilderAPI_Copy copy(shape); - shape = copy.Shape(); - if (shape.IsNull()) - return new App::DocumentObjectExecReturn("Linked shape object is empty"); - } - - TopExp_Explorer ex; + // Validate parameters + double angle = Angle.getValue(); + if (angle < Precision::Confusion()) + return new App::DocumentObjectExecReturn("Angle of groove too small"); + if (angle > 360.0) + return new App::DocumentObjectExecReturn("Angle of groove too large"); + + angle = Base::toRadians(angle); + // Reverse angle if selected + if (Reversed.getValue() && !Midplane.getValue()) + angle *= (-1.0); + + Part::Part2DObject* sketch = 0; std::vector wires; - for (ex.Init(shape, TopAbs_WIRE); ex.More(); ex.Next()) { - wires.push_back(TopoDS::Wire(ex.Current())); + try { + sketch = getVerifiedSketch(); + wires = getSketchWires(); + } catch (const Base::Exception& e) { + return new App::DocumentObjectExecReturn(e.what()); + } + + TopoDS_Shape support; + try { + support = getSupportShape(); + } catch (const Base::Exception&) { + // ignore, because support isn't mandatory + support = TopoDS_Shape(); } - if (wires.empty()) // there can be several wires - return new App::DocumentObjectExecReturn("Linked shape object is not a wire"); // get the Sketch plane - Base::Placement SketchPlm = pcSketch->Placement.getValue(); + Base::Placement SketchPlm = sketch->Placement.getValue(); // get reference axis App::DocumentObject *pcReferenceAxis = ReferenceAxis.getValue(); const std::vector &subReferenceAxis = ReferenceAxis.getSubValues(); - if (pcReferenceAxis && pcReferenceAxis == pcSketch) { + if (pcReferenceAxis && pcReferenceAxis == sketch) { bool hasValidAxis=false; Base::Axis axis; if (subReferenceAxis[0] == "V_Axis") { hasValidAxis = true; - axis = pcSketch->getAxis(Part::Part2DObject::V_Axis); + axis = sketch->getAxis(Part::Part2DObject::V_Axis); } else if (subReferenceAxis[0] == "H_Axis") { hasValidAxis = true; - axis = pcSketch->getAxis(Part::Part2DObject::H_Axis); + axis = sketch->getAxis(Part::Part2DObject::H_Axis); } else if (subReferenceAxis[0].size() > 4 && subReferenceAxis[0].substr(0,4) == "Axis") { int AxId = std::atoi(subReferenceAxis[0].substr(4,4000).c_str()); - if (AxId >= 0 && AxId < pcSketch->getAxisCount()) { + if (AxId >= 0 && AxId < sketch->getAxisCount()) { hasValidAxis = true; - axis = pcSketch->getAxis(AxId); + axis = sketch->getAxis(AxId); } } if (hasValidAxis) { @@ -140,53 +138,42 @@ App::DocumentObjectExecReturn *Revolution::execute(void) Base::Vector3f v = Axis.getValue(); gp_Dir dir(v.x,v.y,v.z); - // get the support of the Sketch if any - App::DocumentObject* pcSupport = pcSketch->Support.getValue(); - Part::Feature *SupportObject = 0; - if (pcSupport && pcSupport->getTypeId().isDerivedFrom(Part::Feature::getClassTypeId())) - SupportObject = static_cast(pcSupport); - - TopoDS_Shape aFace = makeFace(wires); - if (aFace.IsNull()) - return new App::DocumentObjectExecReturn("Creating a face from sketch failed"); - - // Rotate the face by half the angle to get revolution symmetric to sketch plane - if (Midplane.getValue()) { - gp_Trsf mov; - mov.SetRotation(gp_Ax1(pnt, dir), Base::toRadians(Angle.getValue()) * (-1.0) / 2.0); - TopLoc_Location loc(mov); - aFace.Move(loc); - } - - this->positionBySketch(); - TopLoc_Location invObjLoc = this->getLocation().Inverted(); - pnt.Transform(invObjLoc.Transformation()); - dir.Transform(invObjLoc.Transformation()); - - // Reverse angle if selected - double angle = Base::toRadians(Angle.getValue()); - if (Reversed.getValue() && !Midplane.getValue()) - angle *= (-1.0); - try { + TopoDS_Shape sketchshape = makeFace(wires); + if (sketchshape.IsNull()) + return new App::DocumentObjectExecReturn("Creating a face from sketch failed"); + + // Rotate the face by half the angle to get Revolution symmetric to sketch plane + if (Midplane.getValue()) { + gp_Trsf mov; + mov.SetRotation(gp_Ax1(pnt, dir), Base::toRadians(Angle.getValue()) * (-1.0) / 2.0); + TopLoc_Location loc(mov); + sketchshape.Move(loc); + } + + this->positionBySketch(); + TopLoc_Location invObjLoc = this->getLocation().Inverted(); + pnt.Transform(invObjLoc.Transformation()); + dir.Transform(invObjLoc.Transformation()); + support.Move(invObjLoc); + sketchshape.Move(invObjLoc); + // revolve the face to a solid - BRepPrimAPI_MakeRevol RevolMaker(aFace.Moved(invObjLoc), gp_Ax1(pnt, dir), angle); + BRepPrimAPI_MakeRevol RevolMaker(sketchshape, gp_Ax1(pnt, dir), angle); if (RevolMaker.IsDone()) { TopoDS_Shape result = RevolMaker.Shape(); + // set the additive shape property for later usage in e.g. pattern + this->AddShape.setValue(result); + // if the sketch has a support fuse them to get one result object (PAD!) - if (SupportObject) { - const TopoDS_Shape& support = SupportObject->Shape.getValue(); - if (!support.IsNull() && support.ShapeType() == TopAbs_SOLID) { - // set the additive shape property for later usage in e.g. pattern - this->AddShape.setValue(result); - // Let's call algorithm computing a fuse operation: - BRepAlgoAPI_Fuse mkFuse(support.Moved(invObjLoc), result); - // Let's check if the fusion has been successful - if (!mkFuse.IsDone()) - throw Base::Exception("Fusion with support failed"); - result = mkFuse.Shape(); - } + if (!support.IsNull()) { + // Let's call algorithm computing a fuse operation: + BRepAlgoAPI_Fuse mkFuse(support, result); + // Let's check if the fusion has been successful + if (!mkFuse.IsDone()) + throw Base::Exception("Fusion with support failed"); + result = mkFuse.Shape(); } this->Shape.setValue(result); @@ -198,7 +185,14 @@ App::DocumentObjectExecReturn *Revolution::execute(void) } catch (Standard_Failure) { Handle_Standard_Failure e = Standard_Failure::Caught(); - return new App::DocumentObjectExecReturn(e->GetMessageString()); + if (std::string(e->GetMessageString()) == "TopoDS::Face") + return new App::DocumentObjectExecReturn("Could not create face from sketch.\n" + "Intersecting sketch entities or multiple faces in a sketch are not allowed."); + else + return new App::DocumentObjectExecReturn(e->GetMessageString()); + } + catch (Base::Exception& e) { + return new App::DocumentObjectExecReturn(e.what()); } } diff --git a/src/Mod/PartDesign/App/FeatureSketchBased.cpp b/src/Mod/PartDesign/App/FeatureSketchBased.cpp index 1cb4ef1a4..c09b1425b 100644 --- a/src/Mod/PartDesign/App/FeatureSketchBased.cpp +++ b/src/Mod/PartDesign/App/FeatureSketchBased.cpp @@ -26,10 +26,14 @@ # include # include # include +# include # include # include # include # include +# include +# include +# include # include # include # include @@ -100,6 +104,104 @@ void SketchBased::positionBySketch(void) } } +Part::Part2DObject* SketchBased::getVerifiedSketch() const { + App::DocumentObject* result = Sketch.getValue(); + if (!result) + throw Base::Exception("No sketch linked"); + if (!result->getTypeId().isDerivedFrom(Part::Part2DObject::getClassTypeId())) + throw Base::Exception("Linked object is not a Sketch or Part2DObject"); + return static_cast(result); +} + +std::vector SketchBased::getSketchWires() const { + std::vector result; + + TopoDS_Shape shape = getVerifiedSketch()->Shape.getShape()._Shape; + if (shape.IsNull()) + throw Base::Exception("Linked shape object is empty"); + + // this is a workaround for an obscure OCC bug which leads to empty tessellations + // for some faces. Making an explicit copy of the linked shape seems to fix it. + // The error almost happens when re-computing the shape but sometimes also for the + // first time + BRepBuilderAPI_Copy copy(shape); + shape = copy.Shape(); + if (shape.IsNull()) + throw Base::Exception("Linked shape object is empty"); + + TopExp_Explorer ex; + for (ex.Init(shape, TopAbs_WIRE); ex.More(); ex.Next()) { + result.push_back(TopoDS::Wire(ex.Current())); + } + if (result.empty()) // there can be several wires + throw Base::Exception("Linked shape object is not a wire"); + + return result; +} + +// TODO: This code is taken from and duplicates code in Part2DObject::positionBySupport() +// Note: We cannot return a reference, because it will become Null. +// Not clear where, because we check for IsNull() here, but as soon as it is passed out of +// this method, it becomes null! +const TopoDS_Face SketchBased::getSupportFace() const { + const App::PropertyLinkSub& Support = static_cast(Sketch.getValue())->Support; + Part::Feature *part = static_cast(Support.getValue()); + if (!part || !part->getTypeId().isDerivedFrom(Part::Feature::getClassTypeId())) + throw Base::Exception("Sketch has no support shape"); + + const std::vector &sub = Support.getSubValues(); + assert(sub.size()==1); + // get the selected sub shape (a Face) + const Part::TopoShape &shape = part->Shape.getShape(); + if (shape._Shape.IsNull()) + throw Base::Exception("Sketch support shape is empty!"); + + TopoDS_Shape sh = shape.getSubShape(sub[0].c_str()); + if (sh.IsNull()) + throw Base::Exception("Null shape in SketchBased::getSupportFace()!"); + + const TopoDS_Face face = TopoDS::Face(sh); + if (face.IsNull()) + throw Base::Exception("Null face in SketchBased::getSupportFace()!"); + + BRepAdaptor_Surface adapt(face); + if (adapt.GetType() != GeomAbs_Plane) + throw Base::Exception("No planar face in SketchBased::getSupportFace()!"); + + return face; +} + +Part::Feature* SketchBased::getSupport() const { + // get the support of the Sketch if any + App::DocumentObject* SupportLink = static_cast(Sketch.getValue())->Support.getValue(); + Part::Feature* SupportObject = NULL; + if (SupportLink && SupportLink->getTypeId().isDerivedFrom(Part::Feature::getClassTypeId())) + SupportObject = static_cast(SupportLink); + + return SupportObject; +} + +const TopoDS_Shape& SketchBased::getSupportShape() const { + Part::Feature* SupportObject = getSupport(); + if (SupportObject == NULL) + throw Base::Exception("No support in Sketch!"); + + const TopoDS_Shape& result = SupportObject->Shape.getValue(); + if (result.IsNull()) + throw Base::Exception("Support shape is invalid"); + TopExp_Explorer xp (result, TopAbs_SOLID); + if (!xp.More()) + throw Base::Exception("Support shape is not a solid"); + + return result; +} + +int SketchBased::getSketchAxisCount(void) const +{ + Part::Part2DObject *sketch = static_cast(Sketch.getValue()); + return sketch->getAxisCount(); +} + void SketchBased::onChanged(const App::Property* prop) { if (prop == &Sketch) { @@ -276,10 +378,145 @@ TopoDS_Shape SketchBased::makeFace(const std::vector& w) const } } -int SketchBased::getSketchAxisCount(void) const +void SketchBased::getUpToFaceFromLinkSub(TopoDS_Face& upToFace, + const App::PropertyLinkSub& refFace) { - Part::Part2DObject *sketch = static_cast(Sketch.getValue()); - return sketch->getAxisCount(); + App::DocumentObject* ref = refFace.getValue(); + std::vector subStrings = refFace.getSubValues(); + + if (ref == NULL) + throw Base::Exception("SketchBased: Up to face: No face selected"); + if (!ref->getTypeId().isDerivedFrom(Part::Feature::getClassTypeId())) + throw Base::Exception("SketchBased: Up to face: Must be face of a feature"); + Part::TopoShape baseShape = static_cast(ref)->Shape.getShape(); + + if (subStrings.empty() || subStrings[0].empty()) + throw Base::Exception("SketchBased: Up to face: No face selected"); + // TODO: Check for multiple UpToFaces? + + upToFace = TopoDS::Face(baseShape.getSubShape(subStrings[0].c_str())); + if (upToFace.IsNull()) + throw Base::Exception("SketchBased: Up to face: Failed to extract face"); +} + +void SketchBased::getUpToFace(TopoDS_Face& upToFace, + const TopoDS_Shape& support, + const TopoDS_Face& supportface, + const TopoDS_Shape& sketchshape, + const std::string& method, + const gp_Dir& dir) +{ + if ((method == "UpToLast") || (method == "UpToFirst")) { + // Check for valid support object + if (support.IsNull()) + throw Base::Exception("SketchBased: Up to face: No support in Sketch!"); + + std::vector cfaces = Part::findAllFacesCutBy(support, sketchshape, dir); + if (cfaces.empty()) + throw Base::Exception("SketchBased: Up to face: No faces found in this direction"); + + // Find nearest/furthest face + std::vector::const_iterator it, it_near, it_far; + it_near = it_far = cfaces.begin(); + for (it = cfaces.begin(); it != cfaces.end(); it++) + if (it->distsq > it_far->distsq) + it_far = it; + else if (it->distsq < it_near->distsq) + it_near = it; + upToFace = (method == "UpToLast" ? it_far->face : it_near->face); + } + + // Remove the limits of the upToFace so that the extrusion works even if sketchshape is larger + // than the upToFace + bool remove_limits = false; + TopExp_Explorer Ex; + for (Ex.Init(sketchshape,TopAbs_FACE); Ex.More(); Ex.Next()) { + // Get outermost wire of sketch face + TopoDS_Face sketchface = TopoDS::Face(Ex.Current()); + TopoDS_Wire outerWire = ShapeAnalysis::OuterWire(sketchface); + if (!checkWireInsideFace(outerWire, upToFace, dir)) { + remove_limits = true; + break; + } + } + + if (remove_limits) { + // Note: Using an unlimited face every time gives unnecessary failures for concave faces + BRepAdaptor_Surface adapt(upToFace, Standard_False); + BRepBuilderAPI_MakeFace mkFace(adapt.Surface().Surface()); + if (!mkFace.IsDone()) + throw Base::Exception("SketchBased: Up To Face: Failed to create unlimited face"); + upToFace = TopoDS::Face(mkFace.Shape()); + } + + // Check that the upToFace does not intersect the sketch face and + // is not parallel to the extrusion direction + BRepAdaptor_Surface adapt1(TopoDS::Face(supportface)); + BRepAdaptor_Surface adapt2(TopoDS::Face(upToFace)); + + if (adapt2.GetType() == GeomAbs_Plane) { + if (adapt1.Plane().Axis().IsNormal(adapt2.Plane().Axis(), Precision::Confusion())) + throw Base::Exception("SketchBased: Up to face: Must not be parallel to extrusion direction!"); + } + + BRepExtrema_DistShapeShape distSS(supportface, upToFace); + if (distSS.Value() < Precision::Confusion()) + throw Base::Exception("SketchBased: Up to face: Must not intersect sketch!"); + +} + +void SketchBased::generatePrism(TopoDS_Shape& prism, + const TopoDS_Shape& sketchshape, + const std::string& method, + const gp_Dir& dir, + const double L, + const double L2, + const bool midplane, + const bool reversed) +{ + if (method == "Length" || method == "TwoLengths" || method == "ThroughAll") { + double Ltotal = L; + double Loffset = 0.; + if (method == "ThroughAll") + // "ThroughAll" is modelled as a very long, but finite prism to avoid problems with pockets + // Note: 1E6 created problems once... + Ltotal = 1E4; + + if (midplane) + Loffset = -Ltotal/2; + else if (method == "TwoLengths") { + Loffset = -L2; + Ltotal += L2; + } + + TopoDS_Shape from = sketchshape; + if (method == "TwoLengths" || midplane) { + gp_Trsf mov; + mov.SetTranslation(Loffset * gp_Vec(dir)); + TopLoc_Location loc(mov); + from = sketchshape.Moved(loc); + } else if (reversed) + Ltotal *= -1.0; + + // Its better not to use BRepFeat_MakePrism here even if we have a support because the + // resulting shape creates problems with Pocket + BRepPrimAPI_MakePrism PrismMaker(from, Ltotal*gp_Vec(dir), 0,1); // finite prism + if (!PrismMaker.IsDone()) + throw Base::Exception("SketchBased: Length: Could not extrude the sketch!"); + prism = PrismMaker.Shape(); + } else { + throw Base::Exception("SketchBased: Internal error: Unknown method for generatePrism()"); + } + +} + +const bool SketchBased::checkWireInsideFace(const TopoDS_Wire& wire, const TopoDS_Face& face, + const gp_Dir& dir) { + // Project wire onto the face (face, not surface! So limits of face apply) + // FIXME: For a user-selected upToFace, sometimes this returns a non-closed wire for no apparent reason + // Check again after introduction of "robust" reference for upToFace + BRepProj_Projection proj(wire, face, dir); + return (proj.More() && proj.Current().Closed()); } } diff --git a/src/Mod/PartDesign/App/FeatureSketchBased.h b/src/Mod/PartDesign/App/FeatureSketchBased.h index 8c75d9724..726461ec0 100644 --- a/src/Mod/PartDesign/App/FeatureSketchBased.h +++ b/src/Mod/PartDesign/App/FeatureSketchBased.h @@ -25,10 +25,12 @@ #define PARTDESIGN_SketchBased_H #include +#include #include "Feature.h" class TopoDS_Face; class TopoDS_Wire; +class gp_Dir; namespace PartDesign { @@ -54,6 +56,17 @@ public: */ void positionBySketch(void); + /// Verifies the linked Sketch object + Part::Part2DObject* getVerifiedSketch() const; + /// Returns the wires the sketch is composed of + std::vector getSketchWires() const; + /// Returns the face of the sketch support (if any) + const TopoDS_Face getSupportFace() const; + /// Returns the sketch support feature or NULL + Part::Feature* getSupport() const; + /// Returns the sketch support shape (if any) + const TopoDS_Shape& getSupportShape() const; + /// retrieves the number of axes in the linked sketch (defined as construction lines) int getSketchAxisCount(void) const; @@ -63,6 +76,35 @@ protected: TopoDS_Shape makeFace(const std::vector&) const; TopoDS_Shape makeFace(std::list&) const; // for internal use only bool isInside(const TopoDS_Wire&, const TopoDS_Wire&) const; + + /// Extract a face from a given LinkSub + static void getUpToFaceFromLinkSub(TopoDS_Face& upToFace, + const App::PropertyLinkSub& refFace); + + /// Find a valid face to extrude up to + static void getUpToFace(TopoDS_Face& upToFace, + const TopoDS_Shape& support, + const TopoDS_Face& supportface, + const TopoDS_Shape& sketchshape, + const std::string& method, + const gp_Dir& dir); + /** + * Generate a linear prism + * It will be a stand-alone solid created with BRepPrimAPI_MakePrism + */ + static void generatePrism(TopoDS_Shape& prism, + const TopoDS_Shape& sketchshape, + const std::string& method, + const gp_Dir& direction, + const double L, + const double L2, + const bool midplane, + const bool reversed); + + /// Check whether the wire after projection on the face is inside the face + static const bool checkWireInsideFace(const TopoDS_Wire& wire, + const TopoDS_Face& face, + const gp_Dir& dir); }; } //namespace PartDesign diff --git a/src/Mod/PartDesign/Gui/CMakeLists.txt b/src/Mod/PartDesign/Gui/CMakeLists.txt index fb518372f..0d603218e 100644 --- a/src/Mod/PartDesign/Gui/CMakeLists.txt +++ b/src/Mod/PartDesign/Gui/CMakeLists.txt @@ -26,6 +26,7 @@ set(PartDesignGui_LIBS set(PartDesignGui_MOC_HDRS FeaturePickDialog.h + ReferenceSelection.h TaskPadParameters.h TaskPocketParameters.h TaskChamferParameters.h @@ -100,6 +101,8 @@ SET(PartDesignGuiTaskDlgs_SRCS FeaturePickDialog.ui FeaturePickDialog.cpp FeaturePickDialog.h + ReferenceSelection.cpp + ReferenceSelection.h TaskPadParameters.ui TaskPadParameters.cpp TaskPadParameters.h diff --git a/src/Mod/PartDesign/Gui/Makefile.am b/src/Mod/PartDesign/Gui/Makefile.am index 4d0ca5034..d9a3557ec 100644 --- a/src/Mod/PartDesign/Gui/Makefile.am +++ b/src/Mod/PartDesign/Gui/Makefile.am @@ -56,6 +56,8 @@ libPartDesignGui_la_SOURCES=\ PreCompiled.h \ FeaturePickDialog.cpp \ FeaturePickDialog.h \ + ReferenceSelection.cpp \ + ReferenceSelection.h \ TaskGrooveParameters.cpp \ TaskGrooveParameters.h \ TaskPadParameters.cpp \ diff --git a/src/Mod/PartDesign/Gui/ReferenceSelection.cpp b/src/Mod/PartDesign/Gui/ReferenceSelection.cpp new file mode 100644 index 000000000..f2bfcd42e --- /dev/null +++ b/src/Mod/PartDesign/Gui/ReferenceSelection.cpp @@ -0,0 +1,78 @@ +/****************************************************************************** + * Copyright (c)2012 Konstantinos Poulios * + * * + * This file is part of the FreeCAD CAx development system. * + * * + * This library is free software; you can redistribute it and/or * + * modify it under the terms of the GNU Library General Public * + * License as published by the Free Software Foundation; either * + * version 2 of the License, or (at your option) any later version. * + * * + * This library is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU Library General Public License for more details. * + * * + * You should have received a copy of the GNU Library General Public * + * License along with this library; see the file COPYING.LIB. If not, * + * write to the Free Software Foundation, Inc., 59 Temple Place, * + * Suite 330, Boston, MA 02111-1307, USA * + * * + ******************************************************************************/ + +#include "PreCompiled.h" + +#ifndef _PreComp_ +# include +# include +# include +# include +# include +#endif + +#include +#include +#include "ReferenceSelection.h" + +using namespace PartDesignGui; +using namespace Gui; + +/* TRANSLATOR PartDesignGui::ReferenceSelection.cpp */ + +bool ReferenceSelection::allow(App::Document* pDoc, App::DocumentObject* pObj, const char* sSubName) +{ + if (!sSubName || sSubName[0] == '\0') + return false; + if (pObj != support) + return false; + std::string subName(sSubName); + if (edge && subName.size() > 4 && subName.substr(0,4) == "Edge") { + const Part::TopoShape &shape = static_cast(support)->Shape.getValue(); + TopoDS_Shape sh = shape.getSubShape(subName.c_str()); + const TopoDS_Edge& edge = TopoDS::Edge(sh); + if (!edge.IsNull()) { + if (planar) { + BRepAdaptor_Curve adapt(edge); + if (adapt.GetType() == GeomAbs_Line) + return true; + } else { + return true; + } + } + } + if (plane && subName.size() > 4 && subName.substr(0,4) == "Face") { + const Part::TopoShape &shape = static_cast(support)->Shape.getValue(); + TopoDS_Shape sh = shape.getSubShape(subName.c_str()); + const TopoDS_Face& face = TopoDS::Face(sh); + if (!face.IsNull()) { + if (planar) { + BRepAdaptor_Surface adapt(face); + if (adapt.GetType() == GeomAbs_Plane) + return true; + } else { + return true; + } + } + } + return false; +} diff --git a/src/Mod/PartDesign/Gui/ReferenceSelection.h b/src/Mod/PartDesign/Gui/ReferenceSelection.h new file mode 100644 index 000000000..03b634012 --- /dev/null +++ b/src/Mod/PartDesign/Gui/ReferenceSelection.h @@ -0,0 +1,51 @@ +/****************************************************************************** + * Copyright (c)2012 Konstantinos Poulios * + * This file is part of the FreeCAD CAx development system. * + * * + * This library is free software; you can redistribute it and/or * + * modify it under the terms of the GNU Library General Public * + * License as published by the Free Software Foundation; either * + * version 2 of the License, or (at your option) any later version. * + * * + * This library is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU Library General Public License for more details. * + * * + * You should have received a copy of the GNU Library General Public * + * License along with this library; see the file COPYING.LIB. If not, * + * write to the Free Software Foundation, Inc., 59 Temple Place, * + * Suite 330, Boston, MA 02111-1307, USA * + * * + ******************************************************************************/ + + +#ifndef GUI_ReferenceSelection_H +#define GUI_ReferenceSelection_H + +#include + +namespace PartDesignGui { + +class ReferenceSelection : public Gui::SelectionFilterGate +{ + const App::DocumentObject* support; + bool edge, plane; + bool planar; +public: + ReferenceSelection(const App::DocumentObject* support_, + const bool edge_, const bool plane_, const bool planar_) + : Gui::SelectionFilterGate((Gui::SelectionFilter*)0), + support(support_), edge(edge_), plane(plane_), planar(planar_) + { + } + /** + * Allow the user to pick only edges or faces (or both) from the defined support + * Optionally restrict the selection to planar edges/faces + */ + bool allow(App::Document* pDoc, App::DocumentObject* pObj, const char* sSubName); +}; + +} //namespace PartDesignGui + +#endif // GUI_ReferenceSelection_H diff --git a/src/Mod/PartDesign/Gui/Resources/Makefile.am b/src/Mod/PartDesign/Gui/Resources/Makefile.am index 4dd5a2099..c8376b909 100644 --- a/src/Mod/PartDesign/Gui/Resources/Makefile.am +++ b/src/Mod/PartDesign/Gui/Resources/Makefile.am @@ -11,8 +11,8 @@ EXTRA_DIST = \ translations/PartDesign_af.ts \ translations/PartDesign_de.qm \ translations/PartDesign_de.ts \ - translations/PartDesign_es.qm \ - translations/PartDesign_es.ts \ + translations/PartDesign_es-ES.qm \ + translations/PartDesign_es-ES.ts \ translations/PartDesign_fi.qm \ translations/PartDesign_fi.ts \ translations/PartDesign_fr.qm \ @@ -27,16 +27,30 @@ EXTRA_DIST = \ translations/PartDesign_no.ts \ translations/PartDesign_pl.qm \ translations/PartDesign_pl.ts \ - translations/PartDesign_pt.qm \ - translations/PartDesign_pt.ts \ + translations/PartDesign_pt-BR.qm \ + translations/PartDesign_pt-BR.ts \ translations/PartDesign_ru.qm \ translations/PartDesign_ru.ts \ - translations/PartDesign_se.qm \ - translations/PartDesign_se.ts \ + translations/PartDesign_sv-SE.qm \ + translations/PartDesign_sv-SE.ts \ translations/PartDesign_uk.qm \ translations/PartDesign_uk.ts \ - translations/PartDesign_zh.qm \ - translations/PartDesign_zh.ts \ + translations/PartDesign_zh-CN.qm \ + translations/PartDesign_zh-CN.ts \ + translations/PartDesign_zh-TW.qm \ + translations/PartDesign_zh-TW.ts \ + translations/PartDesign_ja.qm \ + translations/PartDesign_ja.ts \ + translations/PartDesign_ro.qm \ + translations/PartDesign_ro.ts \ + translations/PartDesign_hu.qm \ + translations/PartDesign_hu.ts \ + translations/PartDesign_cs.qm \ + translations/PartDesign_cs.ts \ + translations/PartDesign_sk.qm \ + translations/PartDesign_sk.ts \ + translations/PartDesign_tr.qm \ + translations/PartDesign_tr.ts \ icons/PartDesign_Chamfer.svg \ icons/PartDesign_Fillet.svg \ icons/PartDesign_Groove.svg \ diff --git a/src/Mod/PartDesign/Gui/Resources/PartDesign.qrc b/src/Mod/PartDesign/Gui/Resources/PartDesign.qrc index 3f90a9d77..5340634d8 100644 --- a/src/Mod/PartDesign/Gui/Resources/PartDesign.qrc +++ b/src/Mod/PartDesign/Gui/Resources/PartDesign.qrc @@ -13,7 +13,6 @@ icons/PartDesign_MultiTransform.svg translations/PartDesign_af.qm translations/PartDesign_de.qm - translations/PartDesign_es.qm translations/PartDesign_fi.qm translations/PartDesign_fr.qm translations/PartDesign_hr.qm @@ -21,10 +20,18 @@ translations/PartDesign_nl.qm translations/PartDesign_no.qm translations/PartDesign_pl.qm - translations/PartDesign_pt.qm translations/PartDesign_ru.qm - translations/PartDesign_se.qm translations/PartDesign_uk.qm - translations/PartDesign_zh.qm + translations/PartDesign_tr.qm + translations/PartDesign_sv-SE.qm + translations/PartDesign_zh-TW.qm + translations/PartDesign_pt-BR.qm + translations/PartDesign_cs.qm + translations/PartDesign_sk.qm + translations/PartDesign_es-ES.qm + translations/PartDesign_zh-CN.qm + translations/PartDesign_ja.qm + translations/PartDesign_ro.qm + translations/PartDesign_hu.qm diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_af.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_af.qm index a3889a7a0..89661e951 100644 Binary files a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_af.qm and b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_af.qm differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_af.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_af.ts index 604e5f177..23aaba746 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_af.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_af.ts @@ -1,769 +1,646 @@ - - + + CmdPartDesignChamfer - Part - Onderdeel + Part + Onderdeel - Chamfer... - Groef ... + Chamfer... + Groef ... - - PartDesign - OnderdeelOntwerp + + PartDesign + OnderdeelOntwerp - - Chamfer - + Chamfer + Chamfer - - Chamfer the selected edges of a shape - Groef die gekose kante van 'n vorm + Chamfer the selected edges of a shape + Groef die gekose kante van 'n vorm - - + + CmdPartDesignFillet - - PartDesign - OnderdeelOntwerp + PartDesign + OnderdeelOntwerp - - Fillet - Ronding + Fillet + Ronding - - Make a fillet on an edge, face or body - Skep 'n ronding op 'n rand, vlak of liggaam + Make a fillet on an edge, face or body + Skep 'n ronding op 'n rand, vlak of liggaam - - + + CmdPartDesignGroove - - PartDesign - OnderdeelOntwerp + PartDesign + OnderdeelOntwerp - - Groove - + Groove + Groove - - Groove a selected sketch - + Groove a selected sketch + Groove a selected sketch - - + + CmdPartDesignPad - - PartDesign - OnderdeelOntwerp + PartDesign + OnderdeelOntwerp - - Pad - Vul + Pad + Vul - - Pad a selected sketch - Vul 'n gekose skets + Pad a selected sketch + Vul 'n gekose skets - - + + CmdPartDesignPocket - - PartDesign - OnderdeelOntwerp + PartDesign + OnderdeelOntwerp - - Pocket - Holte + Pocket + Holte - - create a pocket with the selected sketch - maak 'n holte met die gekose skets + create a pocket with the selected sketch + maak 'n holte met die gekose skets - - + + CmdPartDesignRevolution - - PartDesign - OnderdeelOntwerp + PartDesign + OnderdeelOntwerp - - Revolution - Revolution + Revolution + Rewolusie - - Revolve a selected sketch - Revolve a selected sketch + Revolve a selected sketch + Draai 'n gekose skets - - + + Gui::TaskView::TaskWatcherCommands - - Face tools - Face tools + + Face tools + Oppervlakwerktuie - - Sketch tools - Sketch tools + Sketch tools + Sketswerktuie - - Create Geometry - Create Geometry + Create Geometry + Skep geometrie - - + + PartDesignGui::ChamferWidget - Edges to chamfer - Kante om te groef + Edges to chamfer + Kante om te groef - Start distance - Beginafstand + Start distance + Beginafstand - End distance - Eindpuntafstand + End distance + Eindpuntafstand - Edge%1 - Kant%1 + Edge%1 + Kant%1 - Distance - Afstand + Distance + Afstand - No shape selected - Geen vorm gekies nie + No shape selected + Geen vorm gekies nie - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - Geen geldige vorm is gekies nie. -Kies eers 'n geldige vorm in die vallys. + Geen geldige vorm is gekies nie. +Kies eers 'n geldige vorm in die vallys. - No edge selected - Geen kant gekies nie + No edge selected + Geen kant gekies nie - No edge entity is checked to chamfer. + No edge entity is checked to chamfer. Please check one or more edge entities first. - Geen kant is gekies om te groef nie + Geen kant is gekies om te groef nie Kies ten minste een kant. - - + + PartDesignGui::TaskChamfer - Chamfer Edges - Groef kante + Chamfer Edges + Groef kante - Shape - Vorm + Shape + Vorm - Selected shape: - Gekose vorm: + Selected shape: + Gekose vorm: - No selection - Geen keuse + No selection + Geen keuse - Chamfer Parameter - Groefparameter + Chamfer Parameter + Groefparameter - All - Almal + All + Almal - None - Geen + None + Geen - Chamfer type: - Groeftipe: + Chamfer type: + Groeftipe: - Constant Distance - Konstante afstand + Constant Distance + Konstante afstand - Variable Distance - Veranderlike Afstand + Variable Distance + Veranderlike Afstand - Distance: - Afstand: + Distance: + Afstand: - - + + PartDesignGui::TaskChamferParameters - - Form - Vorm + + Form + Vorm - - Size: - Grootte: + Size: + Grootte: - - Chamfer parameters - + + Chamfer parameters + Chamfer parameters - - + + PartDesignGui::TaskDlgPadParameters - - Input error - Input error + + Input error + Invoerfout - - + + PartDesignGui::TaskFilletParameters - - Form - Vorm + + Form + Vorm - - Radius: - Radius: + Radius: + Radius: - - Fillet parameters - Fillet parameters + + Fillet parameters + Ronding parameters - - + + PartDesignGui::TaskGrooveParameters - - Form - Vorm + + Form + Vorm - - Axis: - As: + Axis: + As: - - Vertical sketch axis - + Vertical sketch axis + Vertical sketch axis - - Horizontal sketch axis - + Horizontal sketch axis + Horizontal sketch axis - - Angle: - Hoek: + Angle: + Hoek: - - Symmetric to plane - + Symmetric to plane + Symmetric to plane - - Reversed - Reversed + Reversed + Omgekeerde - - Groove parameters - + + Groove parameters + Groove parameters - - + + PartDesignGui::TaskHoleParameters - - Form - Vorm + + Form + Vorm - - Type: - Soort: + Type: + Soort: - - Dimension - Dimensioneer + Dimension + Dimensioneer - - Up to last - Op na die laaste + Up to last + Op na die laaste - - Up to first - Up to first + Up to first + Op tot die eerste - - Size: - Grootte: + Size: + Grootte: - - TaskHoleParameters - TaskHoleParameters + + TaskHoleParameters + TaakGatParameters - - + + PartDesignGui::TaskPadParameters - - Form - Vorm + + Form + Vorm - - Type - + Type + Soort - - Length - Length + Length + Lengte - - Symmetric to plane - + Symmetric to plane + Symmetric to plane - - 2nd length - + 2nd length + 2nd length - - - Face - + Face + Face - Type: - Soort: + Type: + Soort: - - - Dimension - Dimensioneer + Dimension + Dimensioneer - Length: - Lengte: + Length: + Lengte: - Mirrored extent - Mirrored extent + Mirrored extent + Gespieëlde omvang - - Reversed - Reversed + Reversed + Omgekeerde - Display mode: - Vertoningsmodus: + Display mode: + Vertoningsmodus: - Plot mode: - Plotmodus: + Plot mode: + Plotmodus: - Point size: - Puntgrootte: + Point size: + Puntgrootte: - Line width: - Lynwydte: + Line width: + Lynwydte: - Transparency: - Deursigtigheid: + Transparency: + Deursigtigheid: - TaskPadParameters - TaakBlokParameters + TaskPadParameters + TaakBlokParameters - - Pad parameters - Pad parameters + + Pad parameters + Pad parameters - - No face selected - + No face selected + No face selected - - To last - + To last + To last - - To first - + To first + To first - - Up to face - + Up to face + Op na die voorwerpvlak - - Two dimensions - + Two dimensions + Two dimensions - - + + PartDesignGui::TaskPatternRectangularParameters - - Form - Vorm + + Form + Vorm - - Spacing1: - Spacing1: + Spacing1: + Spasiëring1: - - Number1: - Number1: + Number1: + Nommer1: - - Second extend - Second extend + Second extend + Tweede uitbreiding - - Spacing2: - Spacing2: + Spacing2: + Spasiëring2: - - Number2: - Number2: + Number2: + Nommer2: - - TaskPatternRectangularParameters - TaskPatternRectangularParameters + + TaskPatternRectangularParameters + TaakPatroonReghoekigeParameters - - + + PartDesignGui::TaskPocketParameters - - Form - Vorm + + Form + Vorm - Type: - Soort: + Type: + Soort: - - Type - + Type + Soort - - - Dimension - Dimensioneer + Dimension + Dimensioneer - - - Face - + Face + Face - - Length - Length + Length + Lengte - - Pocket parameters - Pocket parameters + + Pocket parameters + Sak parameters - - To last - + To last + To last - - To first - + To first + To first - - Through all - + Through all + Through all - - Up to face - + Up to face + Op na die voorwerpvlak - - No face selected - + No face selected + No face selected - - + + PartDesignGui::TaskRevolutionParameters - - Form - Vorm + + Form + Vorm - - Axis: - As: + Axis: + As: - - Vertical sketch axis - + Vertical sketch axis + Vertical sketch axis - - Horizontal sketch axis - + Horizontal sketch axis + Horizontal sketch axis - - Symmetric to plane - + Symmetric to plane + Symmetric to plane - - Reversed - Reversed + Reversed + Omgekeerde - Vertical - Vertical + Vertical + Vertikaal - Horizontal - Horizontal + Horizontal + Horisontaal - - Angle: - Hoek: + Angle: + Hoek: - - Revolution parameters - Revolution parameters + + Revolution parameters + Rewolusie parameters - - + + QObject - - - - - - - - - - - - - - - - - - - Wrong selection - Verkeerde keuse + + Wrong selection + Verkeerde keuse - - - - - Select a sketch or 2D object. - Kies 'n skets of 2D-voorwerp. + Select a sketch or 2D object. + Kies 'n skets of 2D-voorwerp. - - - - - The shape of the selected object is empty. - Die vorm van die gekose item is leeg. + The shape of the selected object is empty. + Die vorm van die gekose item is leeg. - - - - - The shape of the selected object is not a wire. - Die vorm van die gekose item is nie 'n draad nie. + The shape of the selected object is not a wire. + Die vorm van die gekose item is nie 'n draad nie. - - - Select an edge, face or body. Only one body is allowed. - Kies 'n rand, vlak of liggaam. Slegs een liggaam word toegelaat. + Select an edge, face or body. Only one body is allowed. + Kies 'n rand, vlak of liggaam. Slegs een liggaam word toegelaat. - - - Wrong object type - Verkeerde voorwerpsoort + Wrong object type + Verkeerde voorwerpsoort - - Fillet works only on parts - Ronding werk slegs op onderdele + Fillet works only on parts + Ronding werk slegs op onderdele - - Shape of selected Part is empty - + Shape of selected Part is empty + Shape of selected Part is empty - - No fillet possible on selected faces/edges - + No fillet possible on selected faces/edges + No fillet possible on selected faces/edges - - Chamfer works only on parts - + Chamfer works only on parts + Chamfer works only on parts - - Shape of selected part is empty - + Shape of selected part is empty + Shape of selected part is empty - - No chamfer possible on selected faces/edges - + No chamfer possible on selected faces/edges + No chamfer possible on selected faces/edges - - No Support - Geen stut + No Support + Geen stut - - The sketch has to have a support for the pocket feature. + The sketch has to have a support for the pocket feature. Create the sketch on a face. - Die skets moet 'n stut hê vir die holteëienskap. Doen die skets op 'n vlak. + Die skets moet 'n stut hê vir die holteëienskap. Doen die skets op 'n vlak. - - Edit pad - Edit pad + + Edit pad + Wysigingswerktuig - - - - Edit pocket - Edit pocket + + Edit pocket + Wysig sak - - - - - - - A dialog is already open in the task panel - A dialog is already open in the task panel + A dialog is already open in the task panel + 'n Dialoog is reeds oop in die taakpaneel - - - - - - - Do you want to close this dialog? - Do you want to close this dialog? + Do you want to close this dialog? + Wil jy hierdie dialoog toe maak? - - Edit revolution - Edit revolution + + Edit revolution + Wysig rewolusie - - Edit Groove - + + Edit Groove + Edit Groove - - + + Workbench - - Part Design - Onderdeelontwerp + + Part Design + Onderdeelontwerp - + diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_cs.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_cs.qm new file mode 100644 index 000000000..35a894ef7 Binary files /dev/null and b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_cs.qm differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_cs.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_cs.ts new file mode 100644 index 000000000..887082721 --- /dev/null +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_cs.ts @@ -0,0 +1,644 @@ + + + + + CmdPartDesignChamfer + + Part + Díl + + + Chamfer... + Sražení... + + + + PartDesign + Návrh dílu + + + Chamfer + Zkosení + + + Chamfer the selected edges of a shape + Srazí vybrané hrany útvaru + + + + CmdPartDesignFillet + + PartDesign + Návrh dílu + + + Fillet + Zaoblení + + + Make a fillet on an edge, face or body + Vytvoří zaoblení na hraně, ploše nebo tělese + + + + CmdPartDesignGroove + + PartDesign + Návrh dílu + + + Groove + Drážka + + + Groove a selected sketch + Drážka z vybrané skicy + + + + CmdPartDesignPad + + PartDesign + Návrh dílu + + + Pad + Deska + + + Pad a selected sketch + Deska s předvybranou skicou + + + + CmdPartDesignPocket + + PartDesign + Návrh dílu + + + Pocket + Kapsa + + + create a pocket with the selected sketch + vytvořit kapsu s předvybraným náčrtem + + + + CmdPartDesignRevolution + + PartDesign + Návrh dílu + + + Revolution + Orotování + + + Revolve a selected sketch + Orotuje vybraný náčrt + + + + Gui::TaskView::TaskWatcherCommands + + + Face tools + Nástroje ploch + + + Sketch tools + Nástroje skici + + + Create Geometry + Vytvoř geometrii + + + + PartDesignGui::ChamferWidget + + Edges to chamfer + Hrany ke sražení + + + Start distance + Počáteční vzdálenost + + + End distance + Koncová vzdálenost + + + Edge%1 + Hrana%1 + + + Distance + Distance + + + No shape selected + Není vybrán útvar + + + No valid shape is selected. +Please select a valid shape in the drop-down box first. + Není vybrán přípustný útvar. Prosím vyber přípustný útvar. + + + No edge selected + Není vybraná hrana + + + No edge entity is checked to chamfer. +Please check one or more edge entities first. + Nezadána žádná entita pro sražení. Nejprve prosím vyberte jednu nebo více hran. + + + + PartDesignGui::TaskChamfer + + Chamfer Edges + Sražené hrany + + + Shape + Útvar + + + Selected shape: + Vybraný útvar: + + + No selection + Žádný výběr + + + Chamfer Parameter + Parametry sražení + + + All + Vše + + + None + Žádný + + + Chamfer type: + Typ sražení: + + + Constant Distance + Konstantní rozměr + + + Variable Distance + Variabilní rozměr + + + Distance: + Vzdálenost: + + + + PartDesignGui::TaskChamferParameters + + + Form + Návrh + + + Size: + Velikost: + + + + Chamfer parameters + Parametry zkosení + + + + PartDesignGui::TaskDlgPadParameters + + + Input error + Chyba zadání + + + + PartDesignGui::TaskFilletParameters + + + Form + Návrh + + + Radius: + Poloměr: + + + + Fillet parameters + Parametry zaoblení + + + + PartDesignGui::TaskGrooveParameters + + + Form + Návrh + + + Axis: + Osa: + + + Vertical sketch axis + Svislá skicovací osa + + + Horizontal sketch axis + Vodorovná skicovací osa + + + Angle: + Úhel: + + + Symmetric to plane + Symetrický k rovině + + + Reversed + Překlopit + + + + Groove parameters + Parametry drážky + + + + PartDesignGui::TaskHoleParameters + + + Form + Návrh + + + Type: + Typ: + + + Dimension + Rozměr + + + Up to last + Skrze vše + + + Up to first + K nejbližšímu + + + Size: + Velikost: + + + + TaskHoleParameters + Parametry díry + + + + PartDesignGui::TaskPadParameters + + + Form + Návrh + + + Type + Typ + + + Length + Délka + + + Symmetric to plane + Symetrický k rovině + + + 2nd length + 2. délka + + + Face + Stěna + + + Type: + Typ: + + + Dimension + Rozměr + + + Length: + Délka: + + + Mirrored extent + Hranice zrcadlení + + + Reversed + Překlopit + + + Display mode: + Display mode: + + + Plot mode: + Rýsovací režim: + + + Point size: + Velikost bodu: + + + Line width: + Tloušťka čáry: + + + Transparency: + Průhlednost: + + + TaskPadParameters + TaskPadParameters + + + + Pad parameters + Parametry desky + + + No face selected + Nevybrána žádná stěna + + + To last + K poslední + + + To first + K první + + + Up to face + K ploše + + + Two dimensions + Dvě kóty + + + + PartDesignGui::TaskPatternRectangularParameters + + + Form + Návrh + + + Spacing1: + Rozteč1: + + + Number1: + číslo2: + + + Second extend + Druhé rozšíření + + + Spacing2: + Rozteč2: + + + Number2: + Číslo2: + + + + TaskPatternRectangularParameters + Parametry obdélníkového pole + + + + PartDesignGui::TaskPocketParameters + + + Form + Návrh + + + Type: + Typ: + + + Type + Typ + + + Dimension + Rozměr + + + Face + Stěna + + + Length + Délka + + + + Pocket parameters + Parametry kapsy + + + To last + K poslední + + + To first + K první + + + Through all + Skrz vše + + + Up to face + K ploše + + + No face selected + Nevybrána žádná stěna + + + + PartDesignGui::TaskRevolutionParameters + + + Form + Návrh + + + Axis: + Osa: + + + Vertical sketch axis + Svislá skicovací osa + + + Horizontal sketch axis + Vodorovná skicovací osa + + + Symmetric to plane + Symetrický k rovině + + + Reversed + Překlopit + + + Vertical + Svisle + + + Horizontal + Vodorovně + + + Angle: + Úhel: + + + + Revolution parameters + Parametry orotování + + + + QObject + + + Wrong selection + Neplatný výběr + + + Select a sketch or 2D object. + Vyber náčrt nebo 2D objekt. + + + The shape of the selected object is empty. + Vybraný objekt je prázdný. + + + The shape of the selected object is not a wire. + Vybraný objekt není drát. + + + Select an edge, face or body. Only one body is allowed. + Vyber hranu, plochu nebo těleso. Je dovolemo puze jedno těleso. + + + Wrong object type + Špatný typ objektu + + + Fillet works only on parts + Zaoblení lze použít pouze na dílech + + + Shape of selected Part is empty + Tvar vybrané části je prázdný + + + No fillet possible on selected faces/edges + Zaoblení na vybrané stěně/hraně není možné + + + Chamfer works only on parts + Zkosení funguje jen na díly + + + Shape of selected part is empty + Tvar vybrané části je prázdný + + + No chamfer possible on selected faces/edges + Zkosení na vybrané stěně/hraně není možné + + + No Support + Není podpora + + + The sketch has to have a support for the pocket feature. +Create the sketch on a face. + Náčrt musí mít podklad pro vytvoření kapsy. Vytvořte náčrt na ploše. + + + + Edit pad + Editovat desku + + + + Edit pocket + Editovat kapsu + + + A dialog is already open in the task panel + Dialog je opravdu otevřen v panelu úloh + + + Do you want to close this dialog? + Chcete zavřít tento dialog? + + + + Edit revolution + Editovat orotování + + + + Edit Groove + Upravit drážku + + + + Workbench + + + Part Design + Návrh dílu + + + diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_de.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_de.qm index d6948562c..6a15401f6 100644 Binary files a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_de.qm and b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_de.qm differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_de.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_de.ts index 959d8aa54..a9e71f8c8 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_de.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_de.ts @@ -1,770 +1,647 @@ - - + + CmdPartDesignChamfer - Part - Part + Part + Part - Chamfer... - Abschrägung ... + Chamfer... + Abschrägung ... - - PartDesign - Teile-Konstruktion + + PartDesign + Teile-Konstruktion - - Chamfer - + Chamfer + Fase - - Chamfer the selected edges of a shape - Die gewählten Kanten einer Form abschrägen + Chamfer the selected edges of a shape + Die gewählten Kanten einer Form abschrägen - - + + CmdPartDesignFillet - - PartDesign - Teile-Konstruktion + PartDesign + Teile-Konstruktion - - Fillet - Verrundung + Fillet + Verrundung - - Make a fillet on an edge, face or body - Kante, Fläche oder Körper verrunden + Make a fillet on an edge, face or body + Kante, Fläche oder Körper verrunden - - + + CmdPartDesignGroove - - PartDesign - Teile-Konstruktion + PartDesign + Teile-Konstruktion - - Groove - + Groove + Nuten - - Groove a selected sketch - + Groove a selected sketch + Erzeuge Nuten mit einer selektierten Zeichnung - - + + CmdPartDesignPad - - PartDesign - Teile-Konstruktion + PartDesign + Teile-Konstruktion - - Pad - Block + Pad + Block - - Pad a selected sketch - Selektierte Skizze aufpolstern + Pad a selected sketch + Selektierte Skizze aufpolstern - - + + CmdPartDesignPocket - - PartDesign - Teile-Konstruktion + PartDesign + Teile-Konstruktion - - Pocket - Tasche + Pocket + Tasche - - create a pocket with the selected sketch - Eine Tasche mit der selektierten Skizze erzeugen + create a pocket with the selected sketch + Eine Tasche mit der selektierten Skizze erzeugen - - + + CmdPartDesignRevolution - - PartDesign - Teile-Konstruktion + PartDesign + Teile-Konstruktion - - Revolution - Revolution + Revolution + Drehen - - Revolve a selected sketch - Revolve a selected sketch + Revolve a selected sketch + Drehe die ausgewählte Skizze - - + + Gui::TaskView::TaskWatcherCommands - - Face tools - Face tools + + Face tools + Oberflächenwerkzeuge - - Sketch tools - Sketch tools + Sketch tools + Skizzenwerkzeuge - - Create Geometry - Create Geometry + Create Geometry + Geometrie erstellen - - + + PartDesignGui::ChamferWidget - Edges to chamfer - Kanten zum Abschrägen + Edges to chamfer + Kanten zum Abschrägen - Start distance - Anfangsabstand + Start distance + Anfangsabstand - End distance - Endabstand + End distance + Endabstand - Edge%1 - Kante%1 + Edge%1 + Kante%1 - Distance - Abstand + Distance + Abstand - No shape selected - Keine Form ausgewählt + No shape selected + Keine Form ausgewählt - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - Keine gültige Form gewählt. + Keine gültige Form gewählt. Bitte wählen Sie zuerst eine gültige Form im Dropdown-Feld. - No edge selected - Keine Kante ausgewählt + No edge selected + Keine Kante ausgewählt - No edge entity is checked to chamfer. + No edge entity is checked to chamfer. Please check one or more edge entities first. - Keine Kanten zum Abschrägen markiert. + Keine Kanten zum Abschrägen markiert. Bitte markieren Sie zuerst ein oder mehrere Kanten. - - + + PartDesignGui::TaskChamfer - Chamfer Edges - Kanten abschrägen + Chamfer Edges + Kanten abschrägen - Shape - Form + Shape + Form - Selected shape: - Ausgewählte Form: + Selected shape: + Ausgewählte Form: - No selection - Keine Auswahl + No selection + Keine Auswahl - Chamfer Parameter - Abschräg-Parameter + Chamfer Parameter + Abschräg-Parameter - All - Alles + All + Alles - None - Nichts + None + Nichts - Chamfer type: - Abschrägngsart: + Chamfer type: + Abschrägngsart: - Constant Distance - Konstanter Abstand + Constant Distance + Konstanter Abstand - Variable Distance - Variabler Abstand + Variable Distance + Variabler Abstand - Distance: - Abstand: + Distance: + Abstand: - - + + PartDesignGui::TaskChamferParameters - - Form - Form + + Form + Form - - Size: - Größe: + Size: + Größe: - - Chamfer parameters - + + Chamfer parameters + Schrägenparameter - - + + PartDesignGui::TaskDlgPadParameters - - Input error - Input error + + Input error + Eingabefehler - - + + PartDesignGui::TaskFilletParameters - - Form - Form + + Form + Form - - Radius: - Radius: + Radius: + Radius: - - Fillet parameters - Fillet parameters + + Fillet parameters + Rundungsparameter - - + + PartDesignGui::TaskGrooveParameters - - Form - Form + + Form + Form - - Axis: - Achse: + Axis: + Achse: - - Vertical sketch axis - + Vertical sketch axis + Vertikale Zeichnungsachse - - Horizontal sketch axis - + Horizontal sketch axis + Horizonthale Zeichnungsachse - - Angle: - Winkel: + Angle: + Winkel: - - Symmetric to plane - + Symmetric to plane + Symmetrisch zur Ebene - - Reversed - Reversed + Reversed + Umgekehrt - - Groove parameters - + + Groove parameters + Nutenparameter - - + + PartDesignGui::TaskHoleParameters - - Form - Form + + Form + Form - - Type: - Typ: + Type: + Typ: - - Dimension - Abmessung + Dimension + Abmessung - - Up to last - Weiter zum Letzten + Up to last + Weiter zum Letzten - - Up to first - Bis zum ersten + Up to first + Bis zum ersten - - Size: - Größe: + Size: + Größe: - - TaskHoleParameters - TaskHoleParameters + + TaskHoleParameters + Lochparameter - - + + PartDesignGui::TaskPadParameters - - Form - Form + + Form + Form - - Type - + Type + Typ - - Length - Length + Length + Länge - - Symmetric to plane - + Symmetric to plane + Symmetrisch zur Ebene - - 2nd length - + 2nd length + Zweite Länge - - - Face - + Face + Fläche - Type: - Typ: + Type: + Typ: - - - Dimension - Abmessung + Dimension + Abmessung - Length: - Länge: + Length: + Länge: - Mirrored extent - Mirrored extent + Mirrored extent + Gespiegelt erweitern - - Reversed - Reversed + Reversed + Umgekehrt - Display mode: - Anzeigemodus: + Display mode: + Anzeigemodus: - Plot mode: - Plot mode: + Plot mode: + Plot mode: - Point size: - Punktgröße: + Point size: + Punktgröße: - Line width: - Linienbreite: + Line width: + Linienbreite: - Transparency: - Transparenz: + Transparency: + Transparenz: - TaskPadParameters - TaskPadParameters + TaskPadParameters + TaskPadParameters - - Pad parameters - Pad parameters + + Pad parameters + Seitenparameter - - No face selected - + No face selected + Keine Fläche ausgewählt - - To last - + To last + Zur Letzten - - To first - + To first + Zur Ersten - - Up to face - + Up to face + Bis zu Oberfläche - - Two dimensions - + Two dimensions + Zwei Maße - - + + PartDesignGui::TaskPatternRectangularParameters - - Form - Form + + Form + Form - - Spacing1: - Spacing1: + Spacing1: + Abstand1: - - Number1: - Nummer1: + Number1: + Nummer1: - - Second extend - Second extend + Second extend + Zweites ausdehnen - - Spacing2: - Spacing2: + Spacing2: + Abstand2: - - Number2: - Nummer2: + Number2: + Nummer2: - - TaskPatternRectangularParameters - TaskPatternRectangularParameters + + TaskPatternRectangularParameters + Parameter für Rechtecksmuster - - + + PartDesignGui::TaskPocketParameters - - Form - Form + + Form + Form - Type: - Typ: + Type: + Typ: - - Type - + Type + Typ - - - Dimension - Abmessung + Dimension + Abmessung - - - Face - + Face + Fläche - - Length - Length + Length + Länge - - Pocket parameters - Pocket parameters + + Pocket parameters + Taschenparameter - - To last - + To last + Zur Letzten - - To first - + To first + Zur Ersten - - Through all - + Through all + Durch alles - - Up to face - + Up to face + Bis zu Oberfläche - - No face selected - + No face selected + Keine Fläche ausgewählt - - + + PartDesignGui::TaskRevolutionParameters - - Form - Form + + Form + Form - - Axis: - Achse: + Axis: + Achse: - - Vertical sketch axis - + Vertical sketch axis + Vertikale Zeichnungsachse - - Horizontal sketch axis - + Horizontal sketch axis + Horizonthale Zeichnungsachse - - Symmetric to plane - + Symmetric to plane + Symmetrisch zur Ebene - - Reversed - Reversed + Reversed + Umgekehrt - Vertical - Vertical + Vertical + Vertikale - Horizontal - Horizontal + Horizontal + Horizontale - - Angle: - Winkel: + Angle: + Winkel: - - Revolution parameters - Revolution parameters + + Revolution parameters + Drehparameter - - + + QObject - - - - - - - - - - - - - - - - - - - Wrong selection - Falsche Auswahl + + Wrong selection + Falsche Auswahl - - - - - Select a sketch or 2D object. - Wählen Sie eine Skizze oder ein 2D-Objekt. + Select a sketch or 2D object. + Wählen Sie eine Skizze oder ein 2D-Objekt. - - - - - The shape of the selected object is empty. - Die Form des gewählten Objektes ist leer. + The shape of the selected object is empty. + Die Form des gewählten Objektes ist leer. - - - - - The shape of the selected object is not a wire. - Wählen Sie eine Kante, eine Fläche oder einen Körper. Nur ein Körper ist erlaubt. + The shape of the selected object is not a wire. + Wählen Sie eine Kante, eine Fläche oder einen Körper. Nur ein Körper ist erlaubt. - - - Select an edge, face or body. Only one body is allowed. - Wählen Sie eine Kante, eine Fläche oder einen Körper. Nur ein Körper ist erlaubt. + Select an edge, face or body. Only one body is allowed. + Wählen Sie eine Kante, eine Fläche oder einen Körper. Nur ein Körper ist erlaubt. - - - Wrong object type - Falscher Objekt-Typ + Wrong object type + Falscher Objekt-Typ - - Fillet works only on parts - Rundung funktioniert nur bei Teilen + Fillet works only on parts + Rundung funktioniert nur bei Teilen - - Shape of selected Part is empty - + Shape of selected Part is empty + Selektierter Körper ist leer - - No fillet possible on selected faces/edges - + No fillet possible on selected faces/edges + Rundung auf ausgewählter Fläche/Kante nicht möglich - - Chamfer works only on parts - + Chamfer works only on parts + Fase arbeitet nur auf Körpern - - Shape of selected part is empty - + Shape of selected part is empty + Ausgewählter Körper ist leer - - No chamfer possible on selected faces/edges - + No chamfer possible on selected faces/edges + Fase auf ausgewählter Fläche/Kante nicht möglich - - No Support - Keine Auflage + No Support + Keine Auflage - - The sketch has to have a support for the pocket feature. + The sketch has to have a support for the pocket feature. Create the sketch on a face. - Die Skizze erfordert eine Auflage für die Tasche. + Die Skizze erfordert eine Auflage für die Tasche. Erstelle die Skizze auf der Fläche. - - Edit pad - Block bearbeiten + + Edit pad + Block bearbeiten - - - - Edit pocket - Edit pocket + + Edit pocket + Bearbeite Tasche - - - - - - - A dialog is already open in the task panel - A dialog is already open in the task panel + A dialog is already open in the task panel + Es ist bereits ein Dialog in der Aufgabenleiste geöffnet - - - - - - - Do you want to close this dialog? - Möchten Sie diesen Dialog zu schließen? + Do you want to close this dialog? + Möchten Sie diesen Dialog zu schließen? - - Edit revolution - Edit revolution + + Edit revolution + Drehung bearbeiten - - Edit Groove - + + Edit Groove + Nuten bearbeiten - - + + Workbench - - Part Design - Teile-Konstruktion + + Part Design + Teile-Konstruktion - + diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_es-ES.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_es-ES.qm new file mode 100644 index 000000000..1b45a25d1 Binary files /dev/null and b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_es-ES.qm differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_es-ES.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_es-ES.ts new file mode 100644 index 000000000..e39bb44cb --- /dev/null +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_es-ES.ts @@ -0,0 +1,644 @@ + + + + + CmdPartDesignChamfer + + Part + Pieza + + + Chamfer... + Chaflán... + + + + PartDesign + Diseño de piezas + + + Chamfer + Chamfer + + + Chamfer the selected edges of a shape + Chaflane las aristas seleccionadas de una forma + + + + CmdPartDesignFillet + + PartDesign + Diseño de piezas + + + Fillet + Redondear + + + Make a fillet on an edge, face or body + Crear un redondeado en una arista, cara o cuerpo + + + + CmdPartDesignGroove + + PartDesign + Diseño de piezas + + + Groove + Groove + + + Groove a selected sketch + Groove a selected sketch + + + + CmdPartDesignPad + + PartDesign + Diseño de piezas + + + Pad + Extruir + + + Pad a selected sketch + Extruir un dibujo seleccionado + + + + CmdPartDesignPocket + + PartDesign + Diseño de piezas + + + Pocket + Vaciado + + + create a pocket with the selected sketch + crear un vaciado con el croquis seleccionado + + + + CmdPartDesignRevolution + + PartDesign + Diseño de piezas + + + Revolution + Revolución + + + Revolve a selected sketch + Girar un dibujo seleccionado + + + + Gui::TaskView::TaskWatcherCommands + + + Face tools + Herramientas de Cara + + + Sketch tools + Herramientas de dibujo + + + Create Geometry + Crear Geometría + + + + PartDesignGui::ChamferWidget + + Edges to chamfer + Aristas para chaflán + + + Start distance + Distancia inicial + + + End distance + Distancia final + + + Edge%1 + Arista%1 + + + Distance + Distancia + + + No shape selected + Ninguna forma seleccionada + + + No valid shape is selected. +Please select a valid shape in the drop-down box first. + La forma seleccionada no es válida. Por favor, seleccione primero una forma válida en el cuadro despegar. + + + No edge selected + Ninguna arista seleccionada + + + No edge entity is checked to chamfer. +Please check one or more edge entities first. + Ninguna entidad de arista se ha comprobado para chaflán. Compruebe primero una o más entidades de arista. + + + + PartDesignGui::TaskChamfer + + Chamfer Edges + Aristas del chaflán + + + Shape + Forma + + + Selected shape: + Forma seleccionada: + + + No selection + Sin selección + + + Chamfer Parameter + Parámetro de chaflán + + + All + Todo + + + None + Nada + + + Chamfer type: + Tipo de chaflán: + + + Constant Distance + Distancia constante + + + Variable Distance + Distancia variable + + + Distance: + Distancia: + + + + PartDesignGui::TaskChamferParameters + + + Form + Formulario + + + Size: + Tamaño: + + + + Chamfer parameters + Chamfer parameters + + + + PartDesignGui::TaskDlgPadParameters + + + Input error + Error de entrada + + + + PartDesignGui::TaskFilletParameters + + + Form + Formulario + + + Radius: + Radio: + + + + Fillet parameters + Fillet parameters + + + + PartDesignGui::TaskGrooveParameters + + + Form + Formulario + + + Axis: + Ejes: + + + Vertical sketch axis + Vertical sketch axis + + + Horizontal sketch axis + Horizontal sketch axis + + + Angle: + Ángulo: + + + Symmetric to plane + Simétrico al plano + + + Reversed + Invertido + + + + Groove parameters + Groove parameters + + + + PartDesignGui::TaskHoleParameters + + + Form + Formulario + + + Type: + Tipo: + + + Dimension + Cota + + + Up to last + Cerca del último + + + Up to first + Hasta la primera + + + Size: + Tamaño: + + + + TaskHoleParameters + TaskHoleParameters + + + + PartDesignGui::TaskPadParameters + + + Form + Formulario + + + Type + Tipo + + + Length + Longitud + + + Symmetric to plane + Simétrico al plano + + + 2nd length + 2nd length + + + Face + Cara + + + Type: + Tipo: + + + Dimension + Cota + + + Length: + Longitud: + + + Mirrored extent + Mirrored extent + + + Reversed + Invertido + + + Display mode: + Modo de visualización: + + + Plot mode: + Modo de impresión: + + + Point size: + Tamaño de punto: + + + Line width: + Grosor de línea: + + + Transparency: + Transparencia: + + + TaskPadParameters + TaskPadParameters + + + + Pad parameters + Pad parameters + + + No face selected + Sin cara seleccionada + + + To last + Al final + + + To first + Al primer lugar + + + Up to face + Cerca de la cara + + + Two dimensions + Dos dimensiones + + + + PartDesignGui::TaskPatternRectangularParameters + + + Form + Formulario + + + Spacing1: + Espaciado1: + + + Number1: + Número1: + + + Second extend + Second extend + + + Spacing2: + Espaciado2: + + + Number2: + Número2: + + + + TaskPatternRectangularParameters + TaskPatternRectangularParameters + + + + PartDesignGui::TaskPocketParameters + + + Form + Formulario + + + Type: + Tipo: + + + Type + Tipo + + + Dimension + Cota + + + Face + Cara + + + Length + Longitud + + + + Pocket parameters + Pocket parameters + + + To last + Al final + + + To first + Al primer lugar + + + Through all + A través de todos + + + Up to face + Cerca de la cara + + + No face selected + Sin cara seleccionada + + + + PartDesignGui::TaskRevolutionParameters + + + Form + Formulario + + + Axis: + Ejes: + + + Vertical sketch axis + Vertical sketch axis + + + Horizontal sketch axis + Horizontal sketch axis + + + Symmetric to plane + Simétrico al plano + + + Reversed + Invertido + + + Vertical + Vertical + + + Horizontal + Horizontal + + + Angle: + Ángulo: + + + + Revolution parameters + Parámetros de revolución + + + + QObject + + + Wrong selection + Selección incorrecta + + + Select a sketch or 2D object. + Seleccione un croquis o un objeto 2D. + + + The shape of the selected object is empty. + La forma del objeto seleccionado está vacía. + + + The shape of the selected object is not a wire. + La forma del objeto seleccionado no es alambrica. + + + Select an edge, face or body. Only one body is allowed. + Seleccione una arista, cara o cuerpo. Sólo se permite un solo cuerpo. + + + Wrong object type + Tipo de objeto incorrecto + + + Fillet works only on parts + Redondeado sólo funciona con piezas + + + Shape of selected Part is empty + La forma de la parte seleccionada está vacía + + + No fillet possible on selected faces/edges + No fillet possible on selected faces/edges + + + Chamfer works only on parts + Chamfer works only on parts + + + Shape of selected part is empty + La forma de la parte seleccionada está vacía + + + No chamfer possible on selected faces/edges + No chamfer possible on selected faces/edges + + + No Support + Sin soporte + + + The sketch has to have a support for the pocket feature. +Create the sketch on a face. + El croquis tiene que tener un soporte para la función vaciado. Cree el croquis en una cara. + + + + Edit pad + Edit pad + + + + Edit pocket + Edit pocket + + + A dialog is already open in the task panel + Un diálogo ya está abierto en el panel de tareas + + + Do you want to close this dialog? + ¿Desea cerrar este diálogo? + + + + Edit revolution + Editar revolución + + + + Edit Groove + Edit Groove + + + + Workbench + + + Part Design + Diseño de pieza + + + diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_es.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_es.qm deleted file mode 100644 index 3ed4a4598..000000000 Binary files a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_es.qm and /dev/null differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_es.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_es.ts deleted file mode 100644 index 33a9a08b9..000000000 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_es.ts +++ /dev/null @@ -1,767 +0,0 @@ - - - - - CmdPartDesignChamfer - - Part - Pieza - - - Chamfer... - Chaflán... - - - - PartDesign - Diseño de piezas - - - - Chamfer - - - - - Chamfer the selected edges of a shape - Chaflane las aristas seleccionadas de una forma - - - - CmdPartDesignFillet - - - PartDesign - Diseño de piezas - - - - Fillet - Redondear - - - - Make a fillet on an edge, face or body - Crear un redondeado en una arista, cara o cuerpo - - - - CmdPartDesignGroove - - - PartDesign - Diseño de piezas - - - - Groove - - - - - Groove a selected sketch - - - - - CmdPartDesignPad - - - PartDesign - Diseño de piezas - - - - Pad - Extruir - - - - Pad a selected sketch - Extruir un dibujo seleccionado - - - - CmdPartDesignPocket - - - PartDesign - Diseño de piezas - - - - Pocket - Vaciado - - - - create a pocket with the selected sketch - crear un vaciado con el croquis seleccionado - - - - CmdPartDesignRevolution - - - PartDesign - Diseño de piezas - - - - Revolution - Revolución - - - - Revolve a selected sketch - Revolve a selected sketch - - - - Gui::TaskView::TaskWatcherCommands - - - Face tools - Face tools - - - - Sketch tools - Sketch tools - - - - Create Geometry - Create Geometry - - - - PartDesignGui::ChamferWidget - - Edges to chamfer - Aristas para chaflán - - - Start distance - Distancia inicial - - - End distance - Distancia final - - - Edge%1 - Arista%1 - - - Distance - Distancia - - - No shape selected - Ninguna forma seleccionada - - - No valid shape is selected. -Please select a valid shape in the drop-down box first. - La forma seleccionada no es válida. Por favor, seleccione primero una forma válida en el cuadro despegar. - - - No edge selected - Ninguna arista seleccionada - - - No edge entity is checked to chamfer. -Please check one or more edge entities first. - Ninguna entidad de arista se ha comprobado para chaflán. Compruebe primero una o más entidades de arista. - - - - PartDesignGui::TaskChamfer - - Chamfer Edges - Aristas del chaflán - - - Shape - Forma - - - Selected shape: - Forma seleccionada: - - - No selection - Sin selección - - - Chamfer Parameter - Parámetro de chaflán - - - All - Todo - - - None - Nada - - - Chamfer type: - Tipo de chaflán: - - - Constant Distance - Distancia constante - - - Variable Distance - Distancia variable - - - Distance: - Distancia: - - - - PartDesignGui::TaskChamferParameters - - - Form - Formulario - - - - Size: - Tamaño: - - - - Chamfer parameters - - - - - PartDesignGui::TaskDlgPadParameters - - - Input error - Input error - - - - PartDesignGui::TaskFilletParameters - - - Form - Formulario - - - - Radius: - Radio: - - - - Fillet parameters - Fillet parameters - - - - PartDesignGui::TaskGrooveParameters - - - Form - Formulario - - - - Axis: - Ejes: - - - - Vertical sketch axis - - - - - Horizontal sketch axis - - - - - Angle: - Ángulo: - - - - Symmetric to plane - - - - - Reversed - Reversed - - - - Groove parameters - - - - - PartDesignGui::TaskHoleParameters - - - Form - Formulario - - - - Type: - Tipo: - - - - Dimension - Cota - - - - Up to last - Cerca del último - - - - Up to first - Up to first - - - - Size: - Tamaño: - - - - TaskHoleParameters - TaskHoleParameters - - - - PartDesignGui::TaskPadParameters - - - Form - Formulario - - - - Type - - - - - Length - Length - - - - Symmetric to plane - - - - - 2nd length - - - - - - Face - - - - Type: - Tipo: - - - - - Dimension - Cota - - - Length: - Longitud: - - - Mirrored extent - Mirrored extent - - - - Reversed - Reversed - - - Display mode: - Modo de visualización: - - - Plot mode: - Modo de impresión: - - - Point size: - Tamaño de punto: - - - Line width: - Grosor de línea: - - - Transparency: - Transparencia: - - - TaskPadParameters - TaskPadParameters - - - - Pad parameters - Pad parameters - - - - No face selected - - - - - To last - - - - - To first - - - - - Up to face - - - - - Two dimensions - - - - - PartDesignGui::TaskPatternRectangularParameters - - - Form - Formulario - - - - Spacing1: - Spacing1: - - - - Number1: - Number1: - - - - Second extend - Second extend - - - - Spacing2: - Spacing2: - - - - Number2: - Number2: - - - - TaskPatternRectangularParameters - TaskPatternRectangularParameters - - - - PartDesignGui::TaskPocketParameters - - - Form - Formulario - - - Type: - Tipo: - - - - Type - - - - - - Dimension - Cota - - - - - Face - - - - - Length - Length - - - - Pocket parameters - Pocket parameters - - - - To last - - - - - To first - - - - - Through all - - - - - Up to face - - - - - No face selected - - - - - PartDesignGui::TaskRevolutionParameters - - - Form - Formulario - - - - Axis: - Ejes: - - - - Vertical sketch axis - - - - - Horizontal sketch axis - - - - - Symmetric to plane - - - - - Reversed - Reversed - - - Vertical - Vertical - - - Horizontal - Horizontal - - - - Angle: - Ángulo: - - - - Revolution parameters - Revolution parameters - - - - QObject - - - - - - - - - - - - - - - - - - - - Wrong selection - Selección incorrecta - - - - - - - Select a sketch or 2D object. - Seleccione un croquis o un objeto 2D. - - - - - - - The shape of the selected object is empty. - La forma del objeto seleccionado está vacía. - - - - - - - The shape of the selected object is not a wire. - La forma del objeto seleccionado no es alambrica. - - - - - Select an edge, face or body. Only one body is allowed. - Seleccione una arista, cara o cuerpo. Sólo se permite un solo cuerpo. - - - - - Wrong object type - Tipo de objeto incorrecto - - - - Fillet works only on parts - Redondeado sólo funciona con piezas - - - - Shape of selected Part is empty - - - - - No fillet possible on selected faces/edges - - - - - Chamfer works only on parts - - - - - Shape of selected part is empty - - - - - No chamfer possible on selected faces/edges - - - - - No Support - Sin soporte - - - - The sketch has to have a support for the pocket feature. -Create the sketch on a face. - El croquis tiene que tener un soporte para la función vaciado. Cree el croquis en una cara. - - - - Edit pad - Edit pad - - - - - - Edit pocket - Edit pocket - - - - - - - - - A dialog is already open in the task panel - A dialog is already open in the task panel - - - - - - - - - Do you want to close this dialog? - Do you want to close this dialog? - - - - Edit revolution - Edit revolution - - - - Edit Groove - - - - - Workbench - - - Part Design - Diseño de pieza - - - diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fi.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fi.qm index 21bf1d72e..07b7f5cb5 100644 Binary files a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fi.qm and b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fi.qm differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fi.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fi.ts index 484968ef3..2a9998979 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fi.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fi.ts @@ -1,770 +1,645 @@ - - + + CmdPartDesignChamfer - Part - osa + Part + osa - Chamfer... - Chamfer... + Chamfer... + Viistä... - - PartDesign - PartDesign + + PartDesign + OsanSuunnittelu - - Chamfer - + Chamfer + Viiste - - Chamfer the selected edges of a shape - Chamfer the selected edges of a shape + Chamfer the selected edges of a shape + Viiste valittuihin muotoihin reunoista - - + + CmdPartDesignFillet - - PartDesign - PartDesign + PartDesign + OsanSuunnittelu - - Fillet - Fillet + Fillet + Pyöristä - - Make a fillet on an edge, face or body - Make a fillet on an edge, face or body + Make a fillet on an edge, face or body + Tee pyöristys reunaan, pintaan tai runkoon - - + + CmdPartDesignGroove - - PartDesign - PartDesign + PartDesign + OsanSuunnittelu - - Groove - + Groove + Ura - - Groove a selected sketch - + Groove a selected sketch + Groove a selected sketch - - + + CmdPartDesignPad - - PartDesign - PartDesign + PartDesign + OsanSuunnittelu - - Pad - Pad + Pad + Pursota - - Pad a selected sketch - Pad a selected sketch + Pad a selected sketch + Pursota valittu luonnos - - + + CmdPartDesignPocket - - PartDesign - PartDesign + PartDesign + OsanSuunnittelu - - Pocket - Pocket + Pocket + Tasku - - create a pocket with the selected sketch - create a pocket with the selected sketch + create a pocket with the selected sketch + Luo tasku valitun sketsin kanssa - - + + CmdPartDesignRevolution - - PartDesign - PartDesign + PartDesign + OsanSuunnittelu - - Revolution - Revolution + Revolution + Kiertoliike - - Revolve a selected sketch - Revolve a selected sketch + Revolve a selected sketch + Valitun sketsin pyöräytys - - + + Gui::TaskView::TaskWatcherCommands - - Face tools - Face tools + + Face tools + Pinta työkalut - - Sketch tools - Sketch tools + Sketch tools + Sketsi työkalut - - Create Geometry - Create Geometry + Create Geometry + Luo geometria - - + + PartDesignGui::ChamferWidget - Edges to chamfer - Edges to chamfer + Edges to chamfer + Viisteen reunat - Start distance - Start distance + Start distance + Aloitus etäisyys - End distance - End distance + End distance + Lopetus etäisyys - Edge%1 - Reuna %1 + Edge%1 + Reuna %1 - Distance - Distance + Distance + Etäisyys - No shape selected - Ei valittua muotoa + No shape selected + Ei valittua muotoa - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - Kelvollista muotoa ei ole valittu. + Kelvollista muotoa ei ole valittu. Ole hyvä ja valitse kelvollinen muoto alas veto laatikosta. - No edge selected - Ei valittua reunaa + No edge selected + Ei valittua reunaa - No edge entity is checked to chamfer. + No edge entity is checked to chamfer. Please check one or more edge entities first. - No edge entity is checked to chamfer. -Please check one or more edge entities first. + Reunan yksikköä ei ole valittu viisteelle. Tarkista ensin reunan yksiköt. - - + + PartDesignGui::TaskChamfer - Chamfer Edges - Chamfer Edges + Chamfer Edges + Viisteen reunat - Shape - Muoto + Shape + Muoto - Selected shape: - Valittu muoto: + Selected shape: + Valittu muoto: - No selection - No selection + No selection + Ei valintaa - Chamfer Parameter - Chamfer Parameter + Chamfer Parameter + Viisteen parametri - All - All + All + Kaikki - None - Ei mitään + None + Ei mitään - Chamfer type: - Chamfer type: + Chamfer type: + Viisteen tyyppi: - Constant Distance - Constant Distance + Constant Distance + Rajoita Etäisyys - Variable Distance - Variable Distance + Variable Distance + Muuttujan etäisyys - Distance: - Etäisyys: + Distance: + Etäisyys: - - + + PartDesignGui::TaskChamferParameters - - Form - Lomake + + Form + Lomake - - Size: - Koko: + Size: + Koko: - - Chamfer parameters - + + Chamfer parameters + Viisteen parametrit - - + + PartDesignGui::TaskDlgPadParameters - - Input error - Input error + + Input error + Syötteen virhe - - + + PartDesignGui::TaskFilletParameters - - Form - Lomake + + Form + Lomake - - Radius: - Radius: + Radius: + Säde: - - Fillet parameters - Fillet parameters + + Fillet parameters + Pyöristyksen parametrit - - + + PartDesignGui::TaskGrooveParameters - - Form - Lomake + + Form + Lomake - - Axis: - Axis: + Axis: + Axis: - - Vertical sketch axis - + Vertical sketch axis + Vertical sketch axis - - Horizontal sketch axis - + Horizontal sketch axis + Horizontal sketch axis - - Angle: - Kulma: + Angle: + Kulma: - - Symmetric to plane - + Symmetric to plane + Symmetrinen tasoon nähden - - Reversed - Reversed + Reversed + Käänteinen - - Groove parameters - + + Groove parameters + Groove parameters - - + + PartDesignGui::TaskHoleParameters - - Form - Lomake + + Form + Lomake - - Type: - Tyyppi: + Type: + Tyyppi: - - Dimension - Mitta + Dimension + Mitta - - Up to last - Ylös viimeiseen + Up to last + Ylös viimeiseen - - Up to first - Up to first + Up to first + Ensimmäiseen saakka - - Size: - Koko: + Size: + Koko: - - TaskHoleParameters - TaskHoleParameters + + TaskHoleParameters + TehtäväReikäParametrit - - + + PartDesignGui::TaskPadParameters - - Form - Lomake + + Form + Lomake - - Type - + Type + Tyyppi - - Length - Length + Length + Pituus - - Symmetric to plane - + Symmetric to plane + Symmetrinen tasoon nähden - - 2nd length - + 2nd length + 2nd length - - - Face - + Face + Face - Type: - Tyyppi: + Type: + Tyyppi: - - - Dimension - Mitta + Dimension + Mitta - Length: - Length: + Length: + Pituus: - Mirrored extent - Mirrored extent + Mirrored extent + Peilattu laajennus - - Reversed - Reversed + Reversed + Käänteinen - Display mode: - Display mode: + Display mode: + Display mode: - Plot mode: - Plot mode: + Plot mode: + Plot mode: - Point size: - Pistekoko: + Point size: + Pistekoko: - Line width: - Viivan leveys: + Line width: + Viivan leveys: - Transparency: - Läpinäkyvyys: + Transparency: + Läpinäkyvyys: - TaskPadParameters - TaskPadParameters + TaskPadParameters + TaskPadParameters - - Pad parameters - Pad parameters + + Pad parameters + Pursota parametrit - - No face selected - + No face selected + No face selected - - To last - + To last + To last - - To first - + To first + To first - - Up to face - + Up to face + Ylös pintaan - - Two dimensions - + Two dimensions + Two dimensions - - + + PartDesignGui::TaskPatternRectangularParameters - - Form - Lomake + + Form + Lomake - - Spacing1: - Spacing1: + Spacing1: + Välit1: - - Number1: - Number1: + Number1: + Luku1: - - Second extend - Second extend + Second extend + Toinen laajennus - - Spacing2: - Spacing2: + Spacing2: + Välit2: - - Number2: - Number2: + Number2: + Luku2: - - TaskPatternRectangularParameters - TaskPatternRectangularParameters + + TaskPatternRectangularParameters + TehtäväRakenneSuorakulmaParametrit - - + + PartDesignGui::TaskPocketParameters - - Form - Lomake + + Form + Lomake - Type: - Tyyppi: + Type: + Tyyppi: - - Type - + Type + Tyyppi - - - Dimension - Mitta + Dimension + Mitta - - - Face - + Face + Face - - Length - Length + Length + Pituus - - Pocket parameters - Pocket parameters + + Pocket parameters + Taskun parametrit - - To last - + To last + To last - - To first - + To first + To first - - Through all - + Through all + Läpi - - Up to face - + Up to face + Ylös pintaan - - No face selected - + No face selected + No face selected - - + + PartDesignGui::TaskRevolutionParameters - - Form - Lomake + + Form + Lomake - - Axis: - Axis: + Axis: + Axis: - - Vertical sketch axis - + Vertical sketch axis + Vertical sketch axis - - Horizontal sketch axis - + Horizontal sketch axis + Horizontal sketch axis - - Symmetric to plane - + Symmetric to plane + Symmetrinen tasoon nähden - - Reversed - Reversed + Reversed + Käänteinen - Vertical - Vertical + Vertical + Pystysuora - Horizontal - Horizontal + Horizontal + Vaakasuora - - Angle: - Kulma: + Angle: + Kulma: - - Revolution parameters - Revolution parameters + + Revolution parameters + Kiertoliikkeen parametrit - - + + QObject - - - - - - - - - - - - - - - - - - - Wrong selection - Väärä valinta + + Wrong selection + Väärä valinta - - - - - Select a sketch or 2D object. - Select a sketch or 2D object. + Select a sketch or 2D object. + Valitse sketsi tai 2D-objekti. - - - - - The shape of the selected object is empty. - The shape of the selected object is empty. + The shape of the selected object is empty. + Valitun objektin muoto on tyhjä. - - - - - The shape of the selected object is not a wire. - The shape of the selected object is not a wire. + The shape of the selected object is not a wire. + Valitun objektin muoto ei ole langoitettu. - - - Select an edge, face or body. Only one body is allowed. - Select an edge, face or body. Only one body is allowed. + Select an edge, face or body. Only one body is allowed. + Valitse reuna, pinta tai runko. Vain yksi runko on sallittu. - - - Wrong object type - Wrong object type + Wrong object type + Väärä objektityyppi - - Fillet works only on parts - Fillet works only on parts + Fillet works only on parts + Pyöristys toimii vain osille - - Shape of selected Part is empty - + Shape of selected Part is empty + Shape of selected Part is empty - - No fillet possible on selected faces/edges - + No fillet possible on selected faces/edges + Pyöristys ei ole mahdollinen valituille pinnoille/reunoille - - Chamfer works only on parts - + Chamfer works only on parts + Viisteen tekeminen onnistuu vain osille - - Shape of selected part is empty - + Shape of selected part is empty + Shape of selected part is empty - - No chamfer possible on selected faces/edges - + No chamfer possible on selected faces/edges + Viiste mahdoton valituilla pinnoilla/reunoilla - - No Support - No Support + No Support + Ei tukea - - The sketch has to have a support for the pocket feature. + The sketch has to have a support for the pocket feature. Create the sketch on a face. - The sketch has to have a support for the pocket feature. -Create the sketch on a face. + Sketsillä on oltava tuki tasku-ominaisuudelle. Luo sketsi pinnalle. - - Edit pad - Edit pad + + Edit pad + Muokkaa Pursotusta - - - - Edit pocket - Edit pocket + + Edit pocket + Muokkaa taskua - - - - - - - A dialog is already open in the task panel - A dialog is already open in the task panel + A dialog is already open in the task panel + Valintaikkuna on jo avoinna tehtäväpaneelissa - - - - - - - Do you want to close this dialog? - Do you want to close this dialog? + Do you want to close this dialog? + Haluatko sulkea tämän valintaikkunan? - - Edit revolution - Edit revolution + + Edit revolution + Muokkaa kiertoliikettä - - Edit Groove - + + Edit Groove + Muokkaa uraa - - + + Workbench - - Part Design - Part Design + + Part Design + Osan Suunnittelu - + diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fr.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fr.qm index 486c0f505..4d7b997e7 100644 Binary files a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fr.qm and b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fr.qm differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fr.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fr.ts index 75a11f3c0..21b5d66e4 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fr.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fr.ts @@ -1,767 +1,644 @@ - - + + CmdPartDesignChamfer - Part - Pièce + Part + Pièce - Chamfer... - Chanfrein... + Chamfer... + Chanfrein... - - PartDesign - ConceptionPièce + + PartDesign + ConceptionPièce - - Chamfer - + Chamfer + Chanfrein - - Chamfer the selected edges of a shape - Chanfreiner les arêtes sélectionnées d'une forme + Chamfer the selected edges of a shape + Chanfreiner les arêtes sélectionnées d'une forme - - + + CmdPartDesignFillet - - PartDesign - ConceptionPièce + PartDesign + ConceptionPièce - - Fillet - Congé + Fillet + Congé - - Make a fillet on an edge, face or body - Faire un congé sur une arête, une face ou un corps + Make a fillet on an edge, face or body + Faire un congé sur une arête, une face ou un corps - - + + CmdPartDesignGroove - - PartDesign - ConceptionPièce + PartDesign + ConceptionPièce - - Groove - + Groove + Enlèvement de matière par révolution. - - Groove a selected sketch - + Groove a selected sketch + Enlèvement de matière par révolution à partir de l'esquisse sélectionnée. - - + + CmdPartDesignPad - - PartDesign - ConceptionPièce + PartDesign + ConceptionPièce - - Pad - Protrusion + Pad + Protrusion - - Pad a selected sketch - Faire une protrusion à partir de l'esquisse sélectionnée + Pad a selected sketch + Faire une protrusion à partir de l'esquisse sélectionnée - - + + CmdPartDesignPocket - - PartDesign - ConceptionPièce + PartDesign + ConceptionPièce - - Pocket - Cavité + Pocket + Cavité - - create a pocket with the selected sketch - Créer une cavité avec l'esquisse sélectionnée + create a pocket with the selected sketch + Créer une cavité avec l'esquisse sélectionnée - - + + CmdPartDesignRevolution - - PartDesign - ConceptionPièce + PartDesign + ConceptionPièce - - Revolution - Révolution + Revolution + Révolution - - Revolve a selected sketch - Révolution d'une esquisse sélectionnée + Revolve a selected sketch + Révolution d'une esquisse sélectionnée - - + + Gui::TaskView::TaskWatcherCommands - - Face tools - Outils de face + + Face tools + Outils de face - - Sketch tools - Outils d'esquisse + Sketch tools + Outils d'esquisse - - Create Geometry - Créer géométrie + Create Geometry + Créer géométrie - - + + PartDesignGui::ChamferWidget - Edges to chamfer - Arêtes à chanfreiner + Edges to chamfer + Arêtes à chanfreiner - Start distance - Distance initiale + Start distance + Distance initiale - End distance - Distance finale + End distance + Distance finale - Edge%1 - Arête %1 + Edge%1 + Arête %1 - Distance - Distance + Distance + Distance - No shape selected - Aucune forme sélectionnée + No shape selected + Aucune forme sélectionnée - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - Aucune forme valide n'est sélectionnée. Veuillez d'abord sélectionner une forme valide depuis le menu déroulant. + Aucune forme valide n'est sélectionnée. Veuillez d'abord sélectionner une forme valide depuis le menu déroulant. - No edge selected - Aucune arête sélectionnée + No edge selected + Aucune arête sélectionnée - No edge entity is checked to chamfer. + No edge entity is checked to chamfer. Please check one or more edge entities first. - Aucune arête n'est sélectionné pour le filetage. Cochez d'abord une ou plusieurs arêtes. + Aucune arête n'est sélectionné pour le filetage. Cochez d'abord une ou plusieurs arêtes. - - + + PartDesignGui::TaskChamfer - Chamfer Edges - Chanfreiner des arêtes + Chamfer Edges + Chanfreiner des arêtes - Shape - Forme + Shape + Forme - Selected shape: - Forme sélectionnée : + Selected shape: + Forme sélectionnée : - No selection - Aucune sélection + No selection + Aucune sélection - Chamfer Parameter - Paramètre de chanfrein + Chamfer Parameter + Paramètre de chanfrein - All - Tout + All + Tout - None - Aucun + None + Aucun - Chamfer type: - Type de chanfrein : + Chamfer type: + Type de chanfrein : - Constant Distance - Distance constante + Constant Distance + Distance constante - Variable Distance - Distance variable + Variable Distance + Distance variable - Distance: - Distance : + Distance: + Distance : - - + + PartDesignGui::TaskChamferParameters - - Form - Forme + + Form + Forme - - Size: - Taille : + Size: + Taille : - - Chamfer parameters - + + Chamfer parameters + Paramètres du chanfrein - - + + PartDesignGui::TaskDlgPadParameters - - Input error - Erreur de saisie + + Input error + Erreur de saisie - - + + PartDesignGui::TaskFilletParameters - - Form - Forme + + Form + Forme - - Radius: - Rayon : + Radius: + Rayon : - - Fillet parameters - Paramètres de l'arrondi + + Fillet parameters + Paramètres du congé - - + + PartDesignGui::TaskGrooveParameters - - Form - Forme + + Form + Forme - - Axis: - Axe : + Axis: + Axe : - - Vertical sketch axis - + Vertical sketch axis + Axe d'esquisse vertical - - Horizontal sketch axis - + Horizontal sketch axis + Axe d'esquisse horizontal - - Angle: - Angle : + Angle: + Angle : - - Symmetric to plane - + Symmetric to plane + Symétrique au plan - - Reversed - Inversé + Reversed + Inversé - - Groove parameters - + + Groove parameters + Paramètres de la gorge - - + + PartDesignGui::TaskHoleParameters - - Form - Forme + + Form + Forme - - Type: - Type : + Type: + Type : - - Dimension - Dimension + Dimension + Dimension - - Up to last - Jusqu'à la dernière face + Up to last + Jusqu'à la dernière face - - Up to first - Jusqu'à la première face + Up to first + Jusqu'à la première face - - Size: - Taille : + Size: + Taille : - - TaskHoleParameters - TaskHoleParameters + + TaskHoleParameters + TaskHoleParameters - - + + PartDesignGui::TaskPadParameters - - Form - Forme + + Form + Forme - - Type - + Type + Type - - Length - Longueur + Length + Longueur - - Symmetric to plane - + Symmetric to plane + Symétrique au plan - - 2nd length - + 2nd length + 2ème longueur - - - Face - + Face + Face - Type: - Type : + Type: + Type : - - - Dimension - Dimension + Dimension + Dimension - Length: - Longueur : + Length: + Longueur : - Mirrored extent - Étendue en miroir + Mirrored extent + Étendue en miroir - - Reversed - Inversé + Reversed + Inversé - Display mode: - Mode d'affichage : + Display mode: + Mode d'affichage : - Plot mode: - Mode tracé : + Plot mode: + Mode tracé : - Point size: - Taille de point : + Point size: + Taille de point : - Line width: - Épaisseur de ligne: + Line width: + Épaisseur de ligne: - Transparency: - Transparence : + Transparency: + Transparence : - TaskPadParameters - TaskPadParameters + TaskPadParameters + TaskPadParameters - - Pad parameters - Paramètres de protrusion + + Pad parameters + Paramètres de protrusion - - No face selected - + No face selected + Aucune face sélectionnée - - To last - + To last + Au dernier - - To first - + To first + Au premier - - Up to face - + Up to face + Jusqu'à la face - - Two dimensions - + Two dimensions + Deux dimensions - - + + PartDesignGui::TaskPatternRectangularParameters - - Form - Forme + + Form + Forme - - Spacing1: - Espacement1 : + Spacing1: + Espacement1 : - - Number1: - Nombre1 : + Number1: + Nombre1 : - - Second extend - Seconde extension + Second extend + Seconde extension - - Spacing2: - Espacement2 : + Spacing2: + Espacement2 : - - Number2: - Nombre2 : + Number2: + Nombre2 : - - TaskPatternRectangularParameters - TaskPatternRectangularParameters + + TaskPatternRectangularParameters + TaskPatternRectangularParameters - - + + PartDesignGui::TaskPocketParameters - - Form - Forme + + Form + Forme - Type: - Type : + Type: + Type : - - Type - + Type + Type - - - Dimension - Dimension + Dimension + Dimension - - - Face - + Face + Face - - Length - Longueur + Length + Longueur - - Pocket parameters - Paramètres de la poche + + Pocket parameters + Paramètres de la cavité - - To last - + To last + Au dernier - - To first - + To first + Au premier - - Through all - + Through all + Débouchant - - Up to face - + Up to face + Jusqu'à la face - - No face selected - + No face selected + Aucune face sélectionnée - - + + PartDesignGui::TaskRevolutionParameters - - Form - Forme + + Form + Forme - - Axis: - Axe : + Axis: + Axe : - - Vertical sketch axis - + Vertical sketch axis + Axe d'esquisse vertical - - Horizontal sketch axis - + Horizontal sketch axis + Axe d'esquisse horizontal - - Symmetric to plane - + Symmetric to plane + Symétrique au plan - - Reversed - Inversé + Reversed + Inversé - Vertical - Vertical + Vertical + Vertical - Horizontal - Horizontal + Horizontal + Horizontal - - Angle: - Angle : + Angle: + Angle : - - Revolution parameters - Paramètres de la révolution + + Revolution parameters + Paramètres de la révolution - - + + QObject - - - - - - - - - - - - - - - - - - - Wrong selection - Sélection invalide + + Wrong selection + Sélection invalide - - - - - Select a sketch or 2D object. - Sélectionnez une esquisse ou un objet 2D. + Select a sketch or 2D object. + Sélectionnez une esquisse ou un objet 2D. - - - - - The shape of the selected object is empty. - La forme de l'objet sélectionné est vide. + The shape of the selected object is empty. + La forme de l'objet sélectionné est vide. - - - - - The shape of the selected object is not a wire. - La forme de l'objet sélectionné n'est pas filaire. + The shape of the selected object is not a wire. + La forme de l'objet sélectionné n'est pas filaire. - - - Select an edge, face or body. Only one body is allowed. - Sélectionnez une arête, une face ou un corps. Un seul corps est autorisé. + Select an edge, face or body. Only one body is allowed. + Sélectionnez une arête, une face ou un corps. Un seul corps est autorisé. - - - Wrong object type - Type d'objet incorrect + Wrong object type + Type d'objet incorrect - - Fillet works only on parts - Le congé s'applique uniquement sur les pièces + Fillet works only on parts + Le congé s'applique uniquement sur les pièces - - Shape of selected Part is empty - + Shape of selected Part is empty + La forme de la pièce sélectionnée est vide. - - No fillet possible on selected faces/edges - + No fillet possible on selected faces/edges + Aucun congé possible sur les faces / sommets sélectionnés. - - Chamfer works only on parts - + Chamfer works only on parts + La fonction chanfrein ne fonctionne que sur les pièces. - - Shape of selected part is empty - + Shape of selected part is empty + La forme de la pièce sélectionnée est vide. - - No chamfer possible on selected faces/edges - + No chamfer possible on selected faces/edges + Aucun chanfrein possible sur les faces / sommets sélectionnés. - - No Support - Aucune prise en charge + No Support + Aucune prise en charge - - The sketch has to have a support for the pocket feature. + The sketch has to have a support for the pocket feature. Create the sketch on a face. - L'esquisse doit être supportée pour la fonctionnalité de cavité. Créez l'esquisse sur une face. + L'esquisse doit être supportée pour la fonctionnalité de cavité. Créez l'esquisse sur une face. - - Edit pad - Modifier la protrusion + + Edit pad + Modifier la protrusion - - - - Edit pocket - Modifier la poche + + Edit pocket + Modifier la cavité - - - - - - - A dialog is already open in the task panel - Une boîte de dialogue est déjà ouverte dans le panneau des tâches + A dialog is already open in the task panel + Une boîte de dialogue est déjà ouverte dans le panneau des tâches - - - - - - - Do you want to close this dialog? - Voulez-vous fermer cette boîte de dialogue? + Do you want to close this dialog? + Voulez-vous fermer cette boîte de dialogue? - - Edit revolution - Modifier la révolution + + Edit revolution + Modifier la révolution - - Edit Groove - + + Edit Groove + Éditer l'enlèvement de matière par révolution - - + + Workbench - - Part Design - Conception de pièces + + Part Design + Conception de pièces - + diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hr.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hr.qm index 1126a170a..3f65e14fe 100644 Binary files a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hr.qm and b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hr.qm differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hr.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hr.ts index 19074f789..8d441c02f 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hr.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hr.ts @@ -1,767 +1,644 @@ - - + + CmdPartDesignChamfer - Part - Tijelo + Part + Tijelo - Chamfer... - Zarubi... + Chamfer... + Zarubi... - - PartDesign - Oblikovanje tijela + + PartDesign + Oblikovanje tijela - - Chamfer - + Chamfer + Zarubljenje - - Chamfer the selected edges of a shape - Zarubi odabrane rubove, površine ili tijela + Chamfer the selected edges of a shape + Zarubi odabrane rubove, površine ili tijela - - + + CmdPartDesignFillet - - PartDesign - Oblikovanje tijela + PartDesign + Oblikovanje tijela - - Fillet - Utisni + Fillet + obrubi - - Make a fillet on an edge, face or body - Zaobli rub, površinu ili tijelo + Make a fillet on an edge, face or body + Zaobli rub, površinu ili tijelo - - + + CmdPartDesignGroove - - PartDesign - Oblikovanje tijela + PartDesign + Oblikovanje tijela - - Groove - + Groove + Rotacijski žlijeb - - Groove a selected sketch - + Groove a selected sketch + Napravi rotacijski žlijeb sa odabranom skicom - - + + CmdPartDesignPad - - PartDesign - Oblikovanje tijela + PartDesign + Oblikovanje tijela - - Pad - Izvučeni oblik + Pad + Izvučeni oblik - - Pad a selected sketch - Izvuci odabranu skicu + Pad a selected sketch + Izvuci odabranu skicu - - + + CmdPartDesignPocket - - PartDesign - Oblikovanje tijela + PartDesign + Oblikovanje tijela - - Pocket - Džep + Pocket + Utor - - create a pocket with the selected sketch - stvoriti džep s odabranom skicom + create a pocket with the selected sketch + stvoriti džep s odabranom skicom - - + + CmdPartDesignRevolution - - PartDesign - Oblikovanje tijela + PartDesign + Oblikovanje tijela - - Revolution - Obrtaj + Revolution + Obrtaj - - Revolve a selected sketch - Kreiraj tijelo obrtanjem skice + Revolve a selected sketch + Kreiraj tijelo obrtanjem skice - - + + Gui::TaskView::TaskWatcherCommands - - Face tools - Alati plohe + + Face tools + Alati plohe - - Sketch tools - Alati skice + Sketch tools + Alati skice - - Create Geometry - Napravi geometriju + Create Geometry + Napravi geometriju - - + + PartDesignGui::ChamferWidget - Edges to chamfer - Rubove za zarubljivanje + Edges to chamfer + Rubove za zarubljivanje - Start distance - Početna udaljenost + Start distance + Početna udaljenost - End distance - Krajnja udaljenosti + End distance + Krajnja udaljenosti - Edge%1 - Rub%1 + Edge%1 + Rub%1 - Distance - Udaljenost + Distance + Udaljenost - No shape selected - Nema odabranog oblika + No shape selected + Nema odabranog oblika - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - Nije odabran vanljan oblik. Molimo odaberite valjan oblik u padajućem okviru. + Nije odabran vanljan oblik. Molimo odaberite valjan oblik u padajućem okviru. - No edge selected - Nema odabranih rubova + No edge selected + Nema odabranih rubova - No edge entity is checked to chamfer. + No edge entity is checked to chamfer. Please check one or more edge entities first. - Nije odabran ni jedan rub. Molimo prvo odaberite jedan ili više rubova. + Nije odabran ni jedan rub. Molimo prvo odaberite jedan ili više rubova. - - + + PartDesignGui::TaskChamfer - Chamfer Edges - Zarubi stranice + Chamfer Edges + Zarubi stranice - Shape - Oblik + Shape + Oblik - Selected shape: - Odabrani oblik: + Selected shape: + Odabrani oblik: - No selection - Nema odabira + No selection + Nema odabira - Chamfer Parameter - Parametar zarubljenja + Chamfer Parameter + Parametar zarubljenja - All - Sve + All + Sve - None - Nijedan + None + Nijedan - Chamfer type: - Oluk tip: + Chamfer type: + Oluk tip: - Constant Distance - Konstantna Udaljenost + Constant Distance + Konstantna Udaljenost - Variable Distance - Promjenjiva udaljenost + Variable Distance + Promjenjiva udaljenost - Distance: - Udaljenost: + Distance: + Udaljenost: - - + + PartDesignGui::TaskChamferParameters - - Form - Obrazac + + Form + Obrazac - - Size: - Veličina: + Size: + Veličina: - - Chamfer parameters - + + Chamfer parameters + Parametri zarubljenja - - + + PartDesignGui::TaskDlgPadParameters - - Input error - Input error + + Input error + Pogreška na ulazu - - + + PartDesignGui::TaskFilletParameters - - Form - Obrazac + + Form + Obrazac - - Radius: - Polumjer: + Radius: + Polumjer: - - Fillet parameters - Fillet parameters + + Fillet parameters + Parametri obruba - - + + PartDesignGui::TaskGrooveParameters - - Form - Obrazac + + Form + Obrazac - - Axis: - Os: + Axis: + Os: - - Vertical sketch axis - + Vertical sketch axis + Vertikalna os skice - - Horizontal sketch axis - + Horizontal sketch axis + Horizontalna os skice - - Angle: - Kut: + Angle: + Kut: - - Symmetric to plane - + Symmetric to plane + Simetrično sa plohom - - Reversed - Obrnuti + Reversed + Obrnuti - - Groove parameters - + + Groove parameters + Parametri rotacijskog žlijeba - - + + PartDesignGui::TaskHoleParameters - - Form - Obrazac + + Form + Obrazac - - Type: - Vrsta: + Type: + Vrsta: - - Dimension - Dimenzija + Dimension + Dimenzija - - Up to last - Do posljednjeg + Up to last + Do posljednjeg - - Up to first - Do prve + Up to first + Do prve - - Size: - Veličina: + Size: + Veličina: - - TaskHoleParameters - TaskHoleParametri + + TaskHoleParameters + TaskHoleParametri - - + + PartDesignGui::TaskPadParameters - - Form - Obrazac + + Form + Obrazac - - Type - + Type + Tip - - Length - Length + Length + Dužina - - Symmetric to plane - + Symmetric to plane + Simetrično sa plohom - - 2nd length - + 2nd length + druga duljina - - - Face - + Face + Površina - Type: - Vrsta: + Type: + Vrsta: - - - Dimension - Dimenzija + Dimension + Dimenzija - Length: - Duljina: + Length: + Duljina: - Mirrored extent - Mjera zrcaljenja + Mirrored extent + Mjera zrcaljenja - - Reversed - Obrnuti + Reversed + Obrnuti - Display mode: - Prikaz: + Display mode: + Prikaz: - Plot mode: - Način crtanja: + Plot mode: + Način crtanja: - Point size: - Veličina točke: + Point size: + Veličina točke: - Line width: - Širina linije: + Line width: + Širina linije: - Transparency: - Prozirnost: + Transparency: + Prozirnost: - TaskPadParameters - TaskPadParameters + TaskPadParameters + TaskPadParameters - - Pad parameters - Parametri izvučenog oblika + + Pad parameters + Parametri izvučenog oblika - - No face selected - + No face selected + Nije odabrana niti jedna površina - - To last - + To last + Do zadnjeg - - To first - + To first + Do prvog - - Up to face - + Up to face + Do stranice - - Two dimensions - + Two dimensions + Dvije dimenzije - - + + PartDesignGui::TaskPatternRectangularParameters - - Form - Obrazac + + Form + Obrazac - - Spacing1: - Razmak1: + Spacing1: + Razmak1: - - Number1: - Broj1: + Number1: + Broj1: - - Second extend - Drugi kraj + Second extend + Drugi kraj - - Spacing2: - Razmak2: + Spacing2: + Razmak2: - - Number2: - Broj2: + Number2: + Broj2: - - TaskPatternRectangularParameters - TaskPatternRectangularParametri + + TaskPatternRectangularParameters + TaskPatternRectangularParametri - - + + PartDesignGui::TaskPocketParameters - - Form - Obrazac + + Form + Obrazac - Type: - Vrsta: + Type: + Vrsta: - - Type - + Type + Tip - - - Dimension - Dimenzija + Dimension + Dimenzija - - - Face - + Face + Površina - - Length - Length + Length + Dužina - - Pocket parameters - Pocket parameters + + Pocket parameters + Parametri udubljenja - - To last - + To last + Do zadnjeg - - To first - + To first + Do prvog - - Through all - + Through all + Kroz sve - - Up to face - + Up to face + Do stranice - - No face selected - + No face selected + Nije odabrana niti jedna površina - - + + PartDesignGui::TaskRevolutionParameters - - Form - Obrazac + + Form + Obrazac - - Axis: - Os: + Axis: + Os: - - Vertical sketch axis - + Vertical sketch axis + Vertikalna os skice - - Horizontal sketch axis - + Horizontal sketch axis + Horizontalna os skice - - Symmetric to plane - + Symmetric to plane + Simetrično sa plohom - - Reversed - Obrnuti + Reversed + Obrnuti - Vertical - Vertical + Vertical + Okomito - Horizontal - Horizontal + Horizontal + Vodoravno - - Angle: - Kut: + Angle: + Kut: - - Revolution parameters - Revolution parameters + + Revolution parameters + Parametri obrtaja - - + + QObject - - - - - - - - - - - - - - - - - - - Wrong selection - Pogrešan odabir + + Wrong selection + Pogrešan odabir - - - - - Select a sketch or 2D object. - Odaberite skicu ili 2D objekt. + Select a sketch or 2D object. + Odaberite skicu ili 2D objekt. - - - - - The shape of the selected object is empty. - Oblik odabranog objekta je prazan. + The shape of the selected object is empty. + Oblik odabranog objekta je prazan. - - - - - The shape of the selected object is not a wire. - Oblik odabranog objekta nije žica. + The shape of the selected object is not a wire. + Oblik odabranog objekta nije žica. - - - Select an edge, face or body. Only one body is allowed. - Odaberite rub, plohu ili tijelo. Samo jedno tijelo je dozvoljeno. + Select an edge, face or body. Only one body is allowed. + Odaberite rub, plohu ili tijelo. Samo jedno tijelo je dozvoljeno. - - - Wrong object type - Pogrešan tip objekta + Wrong object type + Pogrešan tip objekta - - Fillet works only on parts - Rubove možete zaobliti samo na tijelima + Fillet works only on parts + Rubove možete zaobliti samo na tijelima - - Shape of selected Part is empty - + Shape of selected Part is empty + Odabrano tijelo nema oblik - - No fillet possible on selected faces/edges - + No fillet possible on selected faces/edges + Zaobljenje nije moguće na odabranim površinama/rubovima - - Chamfer works only on parts - + Chamfer works only on parts + Zarubiti možete samo tijela - - Shape of selected part is empty - + Shape of selected part is empty + Oblik odabranog tijela je prazan - - No chamfer possible on selected faces/edges - + No chamfer possible on selected faces/edges + Zarubljenje nije moguće na odabranim površinama/rubovima - - No Support - Bez podrške + No Support + Bez podrške - - The sketch has to have a support for the pocket feature. + The sketch has to have a support for the pocket feature. Create the sketch on a face. - Skica mora imati podršku za udubljenje. Napravite skicu na površini. + Skica mora imati podršku za udubljenje. Napravite skicu na površini. - - Edit pad - Uredi izvučeni oblik + + Edit pad + Uredi izvučeni oblik - - - - Edit pocket - Edit pocket + + Edit pocket + Uredi udubljenje - - - - - - - A dialog is already open in the task panel - Dijalog je već otvoren u ploči zadataka + A dialog is already open in the task panel + Dijalog je već otvoren u ploči zadataka - - - - - - - Do you want to close this dialog? - Želite li zatvoriti ovaj dijalog? + Do you want to close this dialog? + Želite li zatvoriti ovaj dijalog? - - Edit revolution - Edit revolution + + Edit revolution + Uredi obrtaj - - Edit Groove - + + Edit Groove + Podesi rotacijski žlijeb - - + + Workbench - - Part Design - Oblikovanje tijela + + Part Design + Oblikovanje tijela - + diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hu.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hu.qm index 5daa018d5..7db67945e 100644 Binary files a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hu.qm and b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hu.qm differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hu.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hu.ts index 334d7f02f..6e9189f60 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hu.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hu.ts @@ -1,768 +1,645 @@ - - + + CmdPartDesignChamfer - Part - Rész + Part + Rész - Chamfer... - Letörés ... + Chamfer... + Letörés... - - PartDesign - Alkatrész tervezés + + PartDesign + Alkatrésztervezés - - Chamfer - + Chamfer + Letörés - - Chamfer the selected edges of a shape - Az alakzat kijelölt éleinek letörése + Chamfer the selected edges of a shape + Az alakzat kijelölt éleinek letörése - - + + CmdPartDesignFillet - - PartDesign - Alkatrész tervezés + PartDesign + Alkatrésztervezés - - Fillet - Lekerekítés + Fillet + Lekerekítés - - Make a fillet on an edge, face or body - Létrehoz egy lekerekítést az élen, felületen vagy testen + Make a fillet on an edge, face or body + Létrehoz egy lekerekítést az élen, felületen vagy testen - - + + CmdPartDesignGroove - - PartDesign - Alkatrész tervezés + PartDesign + Alkatrésztervezés - - Groove - + Groove + Horony - - Groove a selected sketch - + Groove a selected sketch + Horonyal ellátja a kijelölt vázlatrajzot - - + + CmdPartDesignPad - - PartDesign - Alkatrész tervezés + PartDesign + Alkatrésztervezés - - Pad - Blokk + Pad + Blokk - - Pad a selected sketch - Blokkba a kiválasztott vázlatot + Pad a selected sketch + Blokkba a kiválasztott vázlatot - - + + CmdPartDesignPocket - - PartDesign - Alkatrész tervezés + PartDesign + Alkatrésztervezés - - Pocket - Zseb + Pocket + Zseb - - create a pocket with the selected sketch - Hozzon létre egy zsebet a kiválasztott vázlattal + create a pocket with the selected sketch + Hozzon létre egy zsebet a kiválasztott vázlattal - - + + CmdPartDesignRevolution - - PartDesign - Alkatrész tervezés + PartDesign + Alkatrésztervezés - - Revolution - Forradalom + Revolution + Kiforgatás - - Revolve a selected sketch - Esztergáld a kiválasztott vázlatot + Revolve a selected sketch + Esztergáld a kiválasztott vázlatot - - + + Gui::TaskView::TaskWatcherCommands - - Face tools - Felület eszközök + + Face tools + Felület eszközök - - Sketch tools - Vázlat eszközök + Sketch tools + Vázlat eszközök - - Create Geometry - Geometria létrehozása + Create Geometry + Geometria létrehozása - - + + PartDesignGui::ChamferWidget - Edges to chamfer - Élek letörése + Edges to chamfer + Élek letörése - Start distance - Eleje távolság + Start distance + Eleje távolság - End distance - Vége távolsága + End distance + Vége távolsága - Edge%1 - Él %1 + Edge%1 + Él %1 - Distance - Távolság + Distance + Távolság - No shape selected - Nincs alakzat kijelölve + No shape selected + Nincs alakzat kijelölve - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - Nem érvényes alakzat van kiválasztva. + Nem érvényes alakzat van kiválasztva. Kérjük, először a legördülő listából válasszon egy érvényes alakzatot. - No edge selected - Nincs kijelölve él + No edge selected + Nincs kijelölve él - No edge entity is checked to chamfer. + No edge entity is checked to chamfer. Please check one or more edge entities first. - A letöréshez nem lett él létezés ellenőrzés végezve. Ellenőrizze először egy vagy több él meglétét. + A letöréshez nem lett él létezés ellenőrzés végezve. Ellenőrizze először egy vagy több él meglétét. - - + + PartDesignGui::TaskChamfer - Chamfer Edges - Élek letörése + Chamfer Edges + Élek letörése - Shape - Alakzat + Shape + Alakzat - Selected shape: - Kijelölt alakzat: + Selected shape: + Kijelölt alakzat: - No selection - Nincs kijelölés + No selection + Nincs kijelölés - Chamfer Parameter - Letörési Paraméter + Chamfer Parameter + Letörési Paraméter - All - Mind + All + Mind - None - Egyik sem + None + Egyik sem - Chamfer type: - Letörés típusa: + Chamfer type: + Letörés típusa: - Constant Distance - Állandó távolság + Constant Distance + Állandó távolság - Variable Distance - Változó távolság + Variable Distance + Változó távolság - Distance: - Távolság: + Distance: + Távolság: - - + + PartDesignGui::TaskChamferParameters - - Form - Űrlap + + Form + Űrlap - - Size: - Méret: + Size: + Méret: - - Chamfer parameters - + + Chamfer parameters + Letörés paraméterek - - + + PartDesignGui::TaskDlgPadParameters - - Input error - Input error + + Input error + Bemeneti hiba - - + + PartDesignGui::TaskFilletParameters - - Form - Űrlap + + Form + Űrlap - - Radius: - Sugár: + Radius: + Sugár: - - Fillet parameters - Fillet parameters + + Fillet parameters + Lekerekítés parameters - - + + PartDesignGui::TaskGrooveParameters - - Form - Űrlap + + Form + Űrlap - - Axis: - Tengely: + Axis: + Tengely: - - Vertical sketch axis - + Vertical sketch axis + Vázlat függőleges tengely - - Horizontal sketch axis - + Horizontal sketch axis + Vázlat vízszintes tengely - - Angle: - Dőlésszög: + Angle: + Dőlésszög: - - Symmetric to plane - + Symmetric to plane + Szimmetrikus a síkra - - Reversed - Fordított + Reversed + Fordított - - Groove parameters - + + Groove parameters + Horony-paraméterek - - + + PartDesignGui::TaskHoleParameters - - Form - Űrlap + + Form + Űrlap - - Type: - Típus: + Type: + Típus: - - Dimension - Dimenzió + Dimension + Dimenzió - - Up to last - Előzőig + Up to last + Előzőig - - Up to first - Fel a tetejére + Up to first + Fel a tetejére - - Size: - Méret: + Size: + Méret: - - TaskHoleParameters - TaskHoleParaméterek + + TaskHoleParameters + TaskHoleParaméterek - - + + PartDesignGui::TaskPadParameters - - Form - Űrlap + + Form + Űrlap - - Type - + Type + Típus - - Length - Length + Length + Hossz - - Symmetric to plane - + Symmetric to plane + Szimmetrikus a síkra - - 2nd length - + 2nd length + 2. hossza - - - Face - + Face + Felület - Type: - Típus: + Type: + Típus: - - - Dimension - Dimenzió + Dimension + Dimenzió - Length: - Hossz: + Length: + Hossz: - Mirrored extent - Tükrözött mértékek + Mirrored extent + Tükrözött mértékek - - Reversed - Fordított + Reversed + Fordított - Display mode: - Megjelenítési mód: + Display mode: + Megjelenítési mód: - Plot mode: - Ábrázolási mód: + Plot mode: + Ábrázolási mód: - Point size: - Pontméret: + Point size: + Pontméret: - Line width: - Vonalvastagság: + Line width: + Vonalvastagság: - Transparency: - Átlátszóság: + Transparency: + Átlátszóság: - TaskPadParameters - FeladatBlokkParaméter + TaskPadParameters + FeladatBlokkParaméter - - Pad parameters - Pad paraméterek + + Pad parameters + Pad paraméterek - - No face selected - + No face selected + Nincs kijelölve felület - - To last - + To last + Az utolsóhoz - - To first - + To first + Az elsőhöz - - Up to face - + Up to face + Felületig - - Two dimensions - + Two dimensions + Két dimenziós - - + + PartDesignGui::TaskPatternRectangularParameters - - Form - Űrlap + + Form + Űrlap - - Spacing1: - Hehyköz1: + Spacing1: + Hehyköz1: - - Number1: - Szám1: + Number1: + Szám1: - - Second extend - Második értékek + Second extend + Második értékek - - Spacing2: - Szóköz2: + Spacing2: + Szóköz2: - - Number2: - Szám2: + Number2: + Szám2: - - TaskPatternRectangularParameters - TaskPatternRectangularParaméterek + + TaskPatternRectangularParameters + TaskPatternRectangularParaméterek - - + + PartDesignGui::TaskPocketParameters - - Form - Űrlap + + Form + Űrlap - Type: - Típus: + Type: + Típus: - - Type - + Type + Típus - - - Dimension - Dimenzió + Dimension + Dimenzió - - - Face - + Face + Felület - - Length - Length + Length + Hossz - - Pocket parameters - Pocket parameters + + Pocket parameters + Zseb paraméterek - - To last - + To last + Az utolsóhoz - - To first - + To first + Az elsőhöz - - Through all - + Through all + Mindenen keresztül - - Up to face - + Up to face + Felületig - - No face selected - + No face selected + Nincs kijelölve felület - - + + PartDesignGui::TaskRevolutionParameters - - Form - Űrlap + + Form + Űrlap - - Axis: - Tengely: + Axis: + Tengely: - - Vertical sketch axis - + Vertical sketch axis + Vázlat függőleges tengely - - Horizontal sketch axis - + Horizontal sketch axis + Vázlat vízszintes tengely - - Symmetric to plane - + Symmetric to plane + Szimmetrikus a síkra - - Reversed - Fordított + Reversed + Fordított - Vertical - Vertical + Vertical + Függőleges - Horizontal - Horizontal + Horizontal + Vízszintes - - Angle: - Dőlésszög: + Angle: + Dőlésszög: - - Revolution parameters - Revolution parameters + + Revolution parameters + Forgási paraméterek - - + + QObject - - - - - - - - - - - - - - - - - - - Wrong selection - Rossz kiválasztás + + Wrong selection + Rossz kiválasztás - - - - - Select a sketch or 2D object. - Vázlat vagy 2D kijelölése. + Select a sketch or 2D object. + Vázlat vagy 2D kijelölése. - - - - - The shape of the selected object is empty. - Az alakzat, a kijelölt objektumon üres. + The shape of the selected object is empty. + Az alakzat, a kijelölt objektumon üres. - - - - - The shape of the selected object is not a wire. - Az alakzat, a kijelölt objektumon nem vonal. + The shape of the selected object is not a wire. + Az alakzat, a kijelölt objektumon nem vonal. - - - Select an edge, face or body. Only one body is allowed. - Egy él, felület vagy test kiválasztása. Csak egy test megengedett. + Select an edge, face or body. Only one body is allowed. + Egy él, felület vagy test kiválasztása. Csak egy test megengedett. - - - Wrong object type - Hibás objektumtípus + Wrong object type + Hibás objektumtípus - - Fillet works only on parts - Lekerekítés csak az alkatrészeken működik + Fillet works only on parts + Lekerekítés csak az alkatrészeken működik - - Shape of selected Part is empty - + Shape of selected Part is empty + Az alakzat kijelölt része üres - - No fillet possible on selected faces/edges - + No fillet possible on selected faces/edges + Nem lehetséges a kijelölt oldalak/szegélyek lekerekítése - - Chamfer works only on parts - + Chamfer works only on parts + Letörés csak alkatrészeke lehetséges - - Shape of selected part is empty - + Shape of selected part is empty + Az alakzat kijelölt része üres - - No chamfer possible on selected faces/edges - + No chamfer possible on selected faces/edges + Nem lehetséges a kijelölt oldalak/szegélyek saroklevágása - - No Support - Nem támogatott + No Support + Nem támogatott - - The sketch has to have a support for the pocket feature. + The sketch has to have a support for the pocket feature. Create the sketch on a face. - A vázlatnak támogatnia kell a zseb funkciót. Hozza létre a vázlatot a felületen. + A vázlatnak támogatnia kell a zseb funkciót. Hozza létre a vázlatot a felületen. - - Edit pad - Szerkesztés pad + + Edit pad + Szerkesztés pad - - - - Edit pocket - Edit pocket + + Edit pocket + Zseb szerkesztése - - - - - - - A dialog is already open in the task panel - Egy párbeszédablak már nyitva van a feladat panelen + A dialog is already open in the task panel + Egy párbeszédablak már nyitva van a feladat panelen - - - - - - - Do you want to close this dialog? - Biztos be szeretné zárni a párbeszédpanelt? + Do you want to close this dialog? + Biztos be szeretné zárni a párbeszédpanelt? - - Edit revolution - Edit revolution + + Edit revolution + Forgás szerkesztése - - Edit Groove - + + Edit Groove + Horony szerkesztése - - + + Workbench - - Part Design - Alkatrész tervezés + + Part Design + Alkatrész tervezés - + diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_it.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_it.qm index da8d9687a..82c34a258 100644 Binary files a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_it.qm and b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_it.qm differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_it.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_it.ts index b35e3d0d6..46403236d 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_it.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_it.ts @@ -1,770 +1,647 @@ - - + + CmdPartDesignChamfer - Part - Parte + Part + Parte - Chamfer... - Smusso... + Chamfer... + Smusso... - - PartDesign - PartDesign + + PartDesign + PartDesign - - Chamfer - + Chamfer + Smusso - - Chamfer the selected edges of a shape - Smussa gli spigoli selezionati di una forma + Chamfer the selected edges of a shape + Smussa gli spigoli selezionati di una forma - - + + CmdPartDesignFillet - - PartDesign - PartDesign + PartDesign + PartDesign - - Fillet - Raccordo + Fillet + Raccordo - - Make a fillet on an edge, face or body - Crea un raccordo su uno spigolo, una faccia o un corpo + Make a fillet on an edge, face or body + Crea un raccordo su uno spigolo, una faccia o un corpo - - + + CmdPartDesignGroove - - PartDesign - PartDesign + PartDesign + PartDesign - - Groove - + Groove + Groove - - Groove a selected sketch - + Groove a selected sketch + Groove di uno sketch selezionato - - + + CmdPartDesignPad - - PartDesign - PartDesign + PartDesign + PartDesign - - Pad - Estrusione + Pad + Prisma - - Pad a selected sketch - Estrude uno schizzo selezionato + Pad a selected sketch + Crea un prisma da uno schizzo selezionato - - + + CmdPartDesignPocket - - PartDesign - PartDesign + PartDesign + PartDesign - - Pocket - Tasca + Pocket + Tasca - - create a pocket with the selected sketch - Crea una tasca usando lo sketch selezionato + create a pocket with the selected sketch + Crea una tasca usando lo sketch selezionato - - + + CmdPartDesignRevolution - - PartDesign - PartDesign + PartDesign + PartDesign - - Revolution - Rivoluzione + Revolution + Rivoluzione - - Revolve a selected sketch - Crea un solido di rivoluzione da uno sketch selezionato + Revolve a selected sketch + Crea un solido di rivoluzione da uno sketch selezionato - - + + Gui::TaskView::TaskWatcherCommands - - Face tools - Strumenti Faccia + + Face tools + Strumenti Faccia - - Sketch tools - Strumenti Sketch + Sketch tools + Strumenti Sketch - - Create Geometry - Crea Geometria + Create Geometry + Crea Geometria - - + + PartDesignGui::ChamferWidget - Edges to chamfer - Spigoli da smussare + Edges to chamfer + Spigoli da smussare - Start distance - Distanza iniziale + Start distance + Distanza iniziale - End distance - Distanza finale + End distance + Distanza finale - Edge%1 - Spigolo %1 + Edge%1 + Spigolo %1 - Distance - Distanza + Distance + Distanza - No shape selected - Nessuna forma selezionata + No shape selected + Nessuna forma selezionata - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - Nessuna forma valida è stata selezionata. + Nessuna forma valida è stata selezionata. Seleziona prima una forma valida dal menù a tendina. - No edge selected - Nessuno spigolo selezionato + No edge selected + Nessuno spigolo selezionato - No edge entity is checked to chamfer. + No edge entity is checked to chamfer. Please check one or more edge entities first. - Nessuna entità spigolo da smussare è stata selezionata + Nessuna entità spigolo da smussare è stata selezionata. Selezionare prima una o più entità spigolo. - - + + PartDesignGui::TaskChamfer - Chamfer Edges - Smussa spigoli + Chamfer Edges + Smussa spigoli - Shape - Forma + Shape + Forma - Selected shape: - Forma selezionata: + Selected shape: + Forma selezionata: - No selection - Nessuna selezione + No selection + Nessuna selezione - Chamfer Parameter - Parametri di smusso + Chamfer Parameter + Parametri Smusso - All - Tutti + All + Tutti - None - Nessuno + None + Nessuno - Chamfer type: - Tipo di smusso: + Chamfer type: + Tipo di smusso: - Constant Distance - Distanza costante + Constant Distance + Distanza costante - Variable Distance - Distanza variabile + Variable Distance + Distanza variabile - Distance: - Distanza: + Distance: + Distanza: - - + + PartDesignGui::TaskChamferParameters - - Form - Modulo + + Form + Modulo - - Size: - Dimensione: + Size: + Dimensione: - - Chamfer parameters - + + Chamfer parameters + Parametri Smusso - - + + PartDesignGui::TaskDlgPadParameters - - Input error - Input error + + Input error + Errore di input - - + + PartDesignGui::TaskFilletParameters - - Form - Modulo + + Form + Modulo - - Radius: - Raggio: + Radius: + Raggio: - - Fillet parameters - Fillet parameters + + Fillet parameters + Parametri Raccordo - - + + PartDesignGui::TaskGrooveParameters - - Form - Modulo + + Form + Modulo - - Axis: - Asse: + Axis: + Asse: - - Vertical sketch axis - + Vertical sketch axis + Asse verticale dello sketch - - Horizontal sketch axis - + Horizontal sketch axis + Asse orizzontale dello sketch - - Angle: - Angolo: + Angle: + Angolo: - - Symmetric to plane - + Symmetric to plane + Simmetrico al piano - - Reversed - Invertito + Reversed + Invertito - - Groove parameters - + + Groove parameters + Parametri Groove - - + + PartDesignGui::TaskHoleParameters - - Form - Modulo + + Form + Modulo - - Type: - Tipo: + Type: + Tipo: - - Dimension - Quota + Dimension + Quota - - Up to last - Fino all'ultimo + Up to last + Fino all'ultimo - - Up to first - Fino al primo + Up to first + Fino al primo - - Size: - Dimensione: + Size: + Dimensione: - - TaskHoleParameters - Parametri tasca + + TaskHoleParameters + Parametri tasca - - + + PartDesignGui::TaskPadParameters - - Form - Modulo + + Form + Modulo - - Type - + Type + Tipo - - Length - Length + Length + Lunghezza - - Symmetric to plane - + Symmetric to plane + Simmetrico al piano - - 2nd length - + 2nd length + Seconda lunghezza - - - Face - + Face + Faccia - Type: - Tipo: + Type: + Tipo: - - - Dimension - Quota + Dimension + Quota - Length: - Lunghezza: + Length: + Lunghezza: - Mirrored extent - Estensione specchiata + Mirrored extent + Estensione specchiata - - Reversed - Invertito + Reversed + Invertito - Display mode: - Modalità di visualizzazione: + Display mode: + Modalità di visualizzazione: - Plot mode: - Modalità di stampa: + Plot mode: + Modalità di stampa: - Point size: - Dimensione punto: + Point size: + Dimensione punto: - Line width: - Spessore linea: + Line width: + Spessore linea: - Transparency: - Trasparenza: + Transparency: + Trasparenza: - TaskPadParameters - Parametri Estrusione + TaskPadParameters + Parametri Prisma - - Pad parameters - Parametri estrusione + + Pad parameters + Parametri Prisma - - No face selected - + No face selected + Nessuna faccia selezionata - - To last - + To last + Fino all'ultimo - - To first - + To first + Fino al primo - - Up to face - + Up to face + Fino alla faccia - - Two dimensions - + Two dimensions + Due dimensioni - - + + PartDesignGui::TaskPatternRectangularParameters - - Form - Modulo + + Form + Modulo - - Spacing1: - Spaziatura1: + Spacing1: + Spaziatura1: - - Number1: - Numero1: + Number1: + Numero1: - - Second extend - Seconda estensione + Second extend + Seconda estensione - - Spacing2: - Spaziatura2: + Spacing2: + Spaziatura2: - - Number2: - Numero2: + Number2: + Numero2: - - TaskPatternRectangularParameters - Parametri Serie Rettangolare + + TaskPatternRectangularParameters + Parametri Serie Rettangolare - - + + PartDesignGui::TaskPocketParameters - - Form - Modulo + + Form + Modulo - Type: - Tipo: + Type: + Tipo: - - Type - + Type + Tipo - - - Dimension - Quota + Dimension + Quota - - - Face - + Face + Faccia - - Length - Length + Length + Lunghezza - - Pocket parameters - Pocket parameters + + Pocket parameters + Parametri Tasca - - To last - + To last + Fino all'ultimo - - To first - + To first + Fino al primo - - Through all - + Through all + Attraverso tutto - - Up to face - + Up to face + Fino alla faccia - - No face selected - + No face selected + Nessuna faccia selezionata - - + + PartDesignGui::TaskRevolutionParameters - - Form - Modulo + + Form + Modulo - - Axis: - Asse: + Axis: + Asse: - - Vertical sketch axis - + Vertical sketch axis + Asse verticale dello sketch - - Horizontal sketch axis - + Horizontal sketch axis + Asse orizzontale dello sketch - - Symmetric to plane - + Symmetric to plane + Simmetrico al piano - - Reversed - Invertito + Reversed + Invertito - Vertical - Vertical + Vertical + Verticale - Horizontal - Horizontal + Horizontal + Orizzontale - - Angle: - Angolo: + Angle: + Angolo: - - Revolution parameters - Revolution parameters + + Revolution parameters + Parametri Rivoluzione - - + + QObject - - - - - - - - - - - - - - - - - - - Wrong selection - Selezione errata + + Wrong selection + Selezione errata - - - - - Select a sketch or 2D object. - Selezionare uno sketch o un oggetto 2D. + Select a sketch or 2D object. + Selezionare uno sketch o un oggetto 2D. - - - - - The shape of the selected object is empty. - La forma dell'oggetto selezionato è vuota. + The shape of the selected object is empty. + La forma dell'oggetto selezionato è vuota. - - - - - The shape of the selected object is not a wire. - La forma dell'oggetto selezionato non è un filo. + The shape of the selected object is not a wire. + La forma dell'oggetto selezionato non è un wire. - - - Select an edge, face or body. Only one body is allowed. - Selezionare uno spigolo, una faccia o un corpo. È consentito un solo corpo. + Select an edge, face or body. Only one body is allowed. + Selezionare uno spigolo, una faccia o un corpo. È consentito un solo corpo. - - - Wrong object type - Tipo di oggetto errato + Wrong object type + Tipo di oggetto errato - - Fillet works only on parts - Il raccordo funziona solo sulle parti + Fillet works only on parts + La feature Raccordo funziona solo sulle parti - - Shape of selected Part is empty - + Shape of selected Part is empty + La forma della parte selezionata è vuota - - No fillet possible on selected faces/edges - + No fillet possible on selected faces/edges + Nessun raccordo possibile su facce e spigoli selezionati - - Chamfer works only on parts - + Chamfer works only on parts + L'operazione smusso funziona solo sulle parti - - Shape of selected part is empty - + Shape of selected part is empty + La forma della parte selezionata è vuota - - No chamfer possible on selected faces/edges - + No chamfer possible on selected faces/edges + Nessun smusso possibile su facce e spigoli selezionati - - No Support - Nessun supporto + No Support + Nessun supporto - - The sketch has to have a support for the pocket feature. + The sketch has to have a support for the pocket feature. Create the sketch on a face. - Lo sketch deve avere un supporto per la feature di tasca. + Lo sketch deve avere un supporto per la feature di tasca. Creare lo sketch su una faccia. - - Edit pad - Modifica estrusione + + Edit pad + Modifica Prisma - - - - Edit pocket - Edit pocket + + Edit pocket + Modifica tasca - - - - - - - A dialog is already open in the task panel - Una finestra di dialogo è già aperto nel pannello attività + A dialog is already open in the task panel + Una finestra di dialogo è già aperto nel pannello attività - - - - - - - Do you want to close this dialog? - Vuoi per chiudere questa finestra? + Do you want to close this dialog? + Vuoi chiudere questa finestra? - - Edit revolution - Edit revolution + + Edit revolution + Modifica rivoluzione - - Edit Groove - + + Edit Groove + Modifica Groove - - + + Workbench - - Part Design - Part Design + + Part Design + Part Design - + diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ja.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ja.qm index 699441042..018b0367f 100644 Binary files a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ja.qm and b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ja.qm differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ja.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ja.ts index c0b3869d4..2cf019dca 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ja.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ja.ts @@ -1,770 +1,646 @@ - - + + CmdPartDesignChamfer - Part - 部品 + Part + 部品 - Chamfer... - 面取り... + Chamfer... + 面取り... - - PartDesign - PartDesign + + PartDesign + PartDesign - - Chamfer - + Chamfer + Chamfer - - Chamfer the selected edges of a shape - Chamfer the selected edges of a shape + Chamfer the selected edges of a shape + Chamfer the selected edges of a shape - - + + CmdPartDesignFillet - - PartDesign - PartDesign + PartDesign + PartDesign - - Fillet - フィレット + Fillet + フィレット - - Make a fillet on an edge, face or body - Make a fillet on an edge, face or body + Make a fillet on an edge, face or body + Make a fillet on an edge, face or body - - + + CmdPartDesignGroove - - PartDesign - PartDesign + PartDesign + PartDesign - - Groove - + Groove + Groove - - Groove a selected sketch - + Groove a selected sketch + Groove a selected sketch - - + + CmdPartDesignPad - - PartDesign - PartDesign + PartDesign + PartDesign - - Pad - Pad + Pad + Pad - - Pad a selected sketch - Pad a selected sketch + Pad a selected sketch + Pad a selected sketch - - + + CmdPartDesignPocket - - PartDesign - PartDesign + PartDesign + PartDesign - - Pocket - Pocket + Pocket + ポケット - - create a pocket with the selected sketch - create a pocket with the selected sketch + create a pocket with the selected sketch + 選択したスケッチからポケットを作成 - - + + CmdPartDesignRevolution - - PartDesign - PartDesign + PartDesign + PartDesign - - Revolution - Revolution + Revolution + Revolution - - Revolve a selected sketch - Revolve a selected sketch + Revolve a selected sketch + Revolve a selected sketch - - + + Gui::TaskView::TaskWatcherCommands - - Face tools - Face tools + + Face tools + 表面ツール - - Sketch tools - Sketch tools + Sketch tools + スケッチツール - - Create Geometry - Create Geometry + Create Geometry + Create Geometry - - + + PartDesignGui::ChamferWidget - Edges to chamfer - Edges to chamfer + Edges to chamfer + Edges to chamfer - Start distance - Start distance + Start distance + Start distance - End distance - End distance + End distance + End distance - Edge%1 - Edge%1 + Edge%1 + Edge%1 - Distance - 距離 + Distance + 距離 - No shape selected - 図形が選択されていません + No shape selected + 図形が選択されていません - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - No edge selected - エッジが選択されていません + No edge selected + エッジが選択されていません - No edge entity is checked to chamfer. + No edge entity is checked to chamfer. Please check one or more edge entities first. - No edge entity is checked to chamfer. + No edge entity is checked to chamfer. Please check one or more edge entities first. - - + + PartDesignGui::TaskChamfer - Chamfer Edges - Chamfer Edges + Chamfer Edges + Chamfer Edges - Shape - 図形 + Shape + 図形 - Selected shape: - Selected shape: + Selected shape: + 選択した図形: - No selection - No selection + No selection + No selection - Chamfer Parameter - 面取りパラメータ + Chamfer Parameter + 面取りパラメータ - All - すべて + All + すべて - None - なし + None + なし - Chamfer type: - 面取りの種類: + Chamfer type: + 面取りの種類: - Constant Distance - Constant Distance + Constant Distance + Constant Distance - Variable Distance - 可変距離 + Variable Distance + 可変距離 - Distance: - 距離: + Distance: + 距離: - - + + PartDesignGui::TaskChamferParameters - - Form - Form + + Form + Form - - Size: - サイズ: + Size: + サイズ: - - Chamfer parameters - + + Chamfer parameters + Chamfer parameters - - + + PartDesignGui::TaskDlgPadParameters - - Input error - Input error + + Input error + 入力エラー - - + + PartDesignGui::TaskFilletParameters - - Form - Form + + Form + Form - - Radius: - 半径: + Radius: + 半径: - - Fillet parameters - Fillet parameters + + Fillet parameters + Fillet parameters - - + + PartDesignGui::TaskGrooveParameters - - Form - Form + + Form + Form - - Axis: - 軸: + Axis: + 軸: - - Vertical sketch axis - + Vertical sketch axis + Vertical sketch axis - - Horizontal sketch axis - + Horizontal sketch axis + Horizontal sketch axis - - Angle: - 角度: + Angle: + 角度: - - Symmetric to plane - + Symmetric to plane + Symmetric to plane - - Reversed - Reversed + Reversed + Reversed - - Groove parameters - + + Groove parameters + Groove parameters - - + + PartDesignGui::TaskHoleParameters - - Form - Form + + Form + Form - - Type: - Type: + Type: + Type: - - Dimension - 寸法 + Dimension + 寸法 - - Up to last - Up to last + Up to last + Up to last - - Up to first - Up to first + Up to first + Up to first - - Size: - サイズ: + Size: + サイズ: - - TaskHoleParameters - TaskHoleParameters + + TaskHoleParameters + TaskHoleParameters - - + + PartDesignGui::TaskPadParameters - - Form - Form + + Form + Form - - Type - + Type + タイプ - - Length - Length + Length + 長さ - - Symmetric to plane - + Symmetric to plane + Symmetric to plane - - 2nd length - + 2nd length + 2nd length - - - Face - + Face + Face - Type: - Type: + Type: + Type: - - - Dimension - 寸法 + Dimension + 寸法 - Length: - Length: + Length: + 長さ: - Mirrored extent - Mirrored extent + Mirrored extent + Mirrored extent - - Reversed - Reversed + Reversed + Reversed - Display mode: - ディスプレイモード: + Display mode: + ディスプレイモード: - Plot mode: - プロットモード: + Plot mode: + プロットモード: - Point size: - 点の大きさ: + Point size: + 点の大きさ: - Line width: - 線幅: + Line width: + 線幅: - Transparency: - 透明度: + Transparency: + 透明度: - TaskPadParameters - TaskPadParameters + TaskPadParameters + TaskPadParameters - - Pad parameters - Pad parameters + + Pad parameters + Pad parameters - - No face selected - + No face selected + No face selected - - To last - + To last + To last - - To first - + To first + To first - - Up to face - + Up to face + Up to face - - Two dimensions - + Two dimensions + Two dimensions - - + + PartDesignGui::TaskPatternRectangularParameters - - Form - Form + + Form + Form - - Spacing1: - Spacing1: + Spacing1: + Spacing1: - - Number1: - Number1: + Number1: + Number1: - - Second extend - Second extend + Second extend + Second extend - - Spacing2: - Spacing2: + Spacing2: + Spacing2: - - Number2: - Number2: + Number2: + Number2: - - TaskPatternRectangularParameters - TaskPatternRectangularParameters + + TaskPatternRectangularParameters + TaskPatternRectangularParameters - - + + PartDesignGui::TaskPocketParameters - - Form - Form + + Form + Form - Type: - Type: + Type: + Type: - - Type - + Type + タイプ - - - Dimension - 寸法 + Dimension + 寸法 - - - Face - + Face + Face - - Length - Length + Length + 長さ - - Pocket parameters - Pocket parameters + + Pocket parameters + ポケットのパラメーター - - To last - + To last + To last - - To first - + To first + To first - - Through all - + Through all + Through all - - Up to face - + Up to face + Up to face - - No face selected - + No face selected + No face selected - - + + PartDesignGui::TaskRevolutionParameters - - Form - Form + + Form + Form - - Axis: - 軸: + Axis: + 軸: - - Vertical sketch axis - + Vertical sketch axis + Vertical sketch axis - - Horizontal sketch axis - + Horizontal sketch axis + Horizontal sketch axis - - Symmetric to plane - + Symmetric to plane + Symmetric to plane - - Reversed - Reversed + Reversed + Reversed - Vertical - Vertical + Vertical + 垂直方向 - Horizontal - Horizontal + Horizontal + 水平方向 - - Angle: - 角度: + Angle: + 角度: - - Revolution parameters - Revolution parameters + + Revolution parameters + Revolution parameters - - + + QObject - - - - - - - - - - - - - - - - - - - Wrong selection - 誤った選択 + + Wrong selection + 誤った選択 - - - - - Select a sketch or 2D object. - スケッチ・2Dオブジェクトを選択. + Select a sketch or 2D object. + スケッチ・2Dオブジェクトを選択. - - - - - The shape of the selected object is empty. - The shape of the selected object is empty. + The shape of the selected object is empty. + The shape of the selected object is empty. - - - - - The shape of the selected object is not a wire. - The shape of the selected object is not a wire. + The shape of the selected object is not a wire. + The shape of the selected object is not a wire. - - - Select an edge, face or body. Only one body is allowed. - Select an edge, face or body. Only one body is allowed. + Select an edge, face or body. Only one body is allowed. + Select an edge, face or body. Only one body is allowed. - - - Wrong object type - Wrong object type + Wrong object type + Wrong object type - - Fillet works only on parts - Fillet works only on parts + Fillet works only on parts + Fillet works only on parts - - Shape of selected Part is empty - + Shape of selected Part is empty + Shape of selected Part is empty - - No fillet possible on selected faces/edges - + No fillet possible on selected faces/edges + No fillet possible on selected faces/edges - - Chamfer works only on parts - + Chamfer works only on parts + Chamfer works only on parts - - Shape of selected part is empty - + Shape of selected part is empty + Shape of selected part is empty - - No chamfer possible on selected faces/edges - + No chamfer possible on selected faces/edges + No chamfer possible on selected faces/edges - - No Support - No Support + No Support + サポートがありません - - The sketch has to have a support for the pocket feature. + The sketch has to have a support for the pocket feature. Create the sketch on a face. - The sketch has to have a support for the pocket feature. -Create the sketch on a face. + ポケットフィーチャーにはスケッチサポートが必要です。スケッチを面の上で作成します。 - - Edit pad - Edit pad + + Edit pad + Edit pad - - - - Edit pocket - Edit pocket + + Edit pocket + ポケットを編集 - - - - - - - A dialog is already open in the task panel - A dialog is already open in the task panel + A dialog is already open in the task panel + A dialog is already open in the task panel - - - - - - - Do you want to close this dialog? - Do you want to close this dialog? + Do you want to close this dialog? + Do you want to close this dialog? - - Edit revolution - Edit revolution + + Edit revolution + Edit revolution - - Edit Groove - + + Edit Groove + Edit Groove - - + + Workbench - - Part Design - Part Design + + Part Design + Part Design - + diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_nl.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_nl.qm index dbdb59b91..5e9609a31 100644 Binary files a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_nl.qm and b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_nl.qm differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_nl.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_nl.ts index 8776ea015..72518ac63 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_nl.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_nl.ts @@ -1,770 +1,647 @@ - - + + CmdPartDesignChamfer - Part - Onderdeel + Part + Onderdeel - Chamfer... - Afschuining ... + Chamfer... + Afschuining ... - - PartDesign - Onderdeel-ontwerp + + PartDesign + Onderdeel-ontwerp - - Chamfer - + Chamfer + Chamfer - - Chamfer the selected edges of a shape - Afschuining van de geselecteerde randen van een vorm + Chamfer the selected edges of a shape + Afschuining van de geselecteerde randen van een vorm - - + + CmdPartDesignFillet - - PartDesign - Onderdeel-ontwerp + PartDesign + Onderdeel-ontwerp - - Fillet - Afronding + Fillet + Afronding - - Make a fillet on an edge, face or body - Maak een filet op een rand, vlak of lichaam + Make a fillet on an edge, face or body + Maak een filet op een rand, vlak of lichaam - - + + CmdPartDesignGroove - - PartDesign - Onderdeel-ontwerp + PartDesign + Onderdeel-ontwerp - - Groove - + Groove + Groove - - Groove a selected sketch - + Groove a selected sketch + Groove a selected sketch - - + + CmdPartDesignPad - - PartDesign - Onderdeel-ontwerp + PartDesign + Onderdeel-ontwerp - - Pad - Pad + Pad + Pad - - Pad a selected sketch - Pad a selected sketch + Pad a selected sketch + Pad a selected sketch - - + + CmdPartDesignPocket - - PartDesign - Onderdeel-ontwerp + PartDesign + Onderdeel-ontwerp - - Pocket - Uitsparing + Pocket + Uitsparing - - create a pocket with the selected sketch - Creëer een uitspring met de geselecteerde schets + create a pocket with the selected sketch + Creëer een uitspring met de geselecteerde schets - - + + CmdPartDesignRevolution - - PartDesign - Onderdeel-ontwerp + PartDesign + Onderdeel-ontwerp - - Revolution - Revolution + Revolution + Rotatie - - Revolve a selected sketch - Revolve a selected sketch + Revolve a selected sketch + Roteer een geselecteerde schets - - + + Gui::TaskView::TaskWatcherCommands - - Face tools - Face tools + + Face tools + Face tools - - Sketch tools - Sketch tools + Sketch tools + Sketch tools - - Create Geometry - Create Geometry + Create Geometry + Create Geometry - - + + PartDesignGui::ChamferWidget - Edges to chamfer - Randen om af te schuinen + Edges to chamfer + Randen om af te schuinen - Start distance - Start op afstand + Start distance + Start op afstand - End distance - Eindafstand + End distance + Eindafstand - Edge%1 - Rand%1 + Edge%1 + Rand%1 - Distance - Afstand + Distance + Afstand - No shape selected - Geen vorm geselecteerd + No shape selected + Geen vorm geselecteerd - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - Geen geldige vorm geselecteerd. + Geen geldige vorm geselecteerd. Selecteer eerst een geldige vorm in het uitklap-scherm. - No edge selected - Geen rand geselecteerd + No edge selected + Geen rand geselecteerd - No edge entity is checked to chamfer. + No edge entity is checked to chamfer. Please check one or more edge entities first. - Geen rand is geselecteerd om af te ronden. + Geen rand is geselecteerd om af te ronden. Gelieve eerst één of meerdere randen te selecteren. - - + + PartDesignGui::TaskChamfer - Chamfer Edges - Afschuinen Randen + Chamfer Edges + Afschuinen Randen - Shape - Vorm + Shape + Vorm - Selected shape: - Geselecteerde vorm: + Selected shape: + Geselecteerde vorm: - No selection - Geen selectie + No selection + Geen selectie - Chamfer Parameter - Afschuin-parameter + Chamfer Parameter + Afschuin-parameter - All - Alle + All + Alle - None - Geen + None + Geen - Chamfer type: - Afschuin type: + Chamfer type: + Afschuin type: - Constant Distance - Constante afstand + Constant Distance + Constante afstand - Variable Distance - Variabele afstand + Variable Distance + Variabele afstand - Distance: - Afstand: + Distance: + Afstand: - - + + PartDesignGui::TaskChamferParameters - - Form - Vorm + + Form + Vorm - - Size: - Grootte: + Size: + Grootte: - - Chamfer parameters - + + Chamfer parameters + Chamfer parameters - - + + PartDesignGui::TaskDlgPadParameters - - Input error - Input error + + Input error + Invoerfout - - + + PartDesignGui::TaskFilletParameters - - Form - Vorm + + Form + Vorm - - Radius: - Straal: + Radius: + Straal: - - Fillet parameters - Fillet parameters + + Fillet parameters + Fillet parameters - - + + PartDesignGui::TaskGrooveParameters - - Form - Vorm + + Form + Vorm - - Axis: - Assen: + Axis: + Assen: - - Vertical sketch axis - + Vertical sketch axis + Vertical sketch axis - - Horizontal sketch axis - + Horizontal sketch axis + Horizontal sketch axis - - Angle: - Hoek: + Angle: + Hoek: - - Symmetric to plane - + Symmetric to plane + Symmetric to plane - - Reversed - Reversed + Reversed + Reversed - - Groove parameters - + + Groove parameters + Groove parameters - - + + PartDesignGui::TaskHoleParameters - - Form - Vorm + + Form + Vorm - - Type: - Type: + Type: + Type: - - Dimension - Afmeting + Dimension + Afmeting - - Up to last - Naar de laatste + Up to last + Naar de laatste - - Up to first - Up to first + Up to first + Up to first - - Size: - Grootte: + Size: + Grootte: - - TaskHoleParameters - TaskHoleParameters + + TaskHoleParameters + TaskHoleParameters - - + + PartDesignGui::TaskPadParameters - - Form - Vorm + + Form + Vorm - - Type - + Type + Type - - Length - Length + Length + Lengte - - Symmetric to plane - + Symmetric to plane + Symmetric to plane - - 2nd length - + 2nd length + 2nd length - - - Face - + Face + Face - Type: - Type: + Type: + Type: - - - Dimension - Afmeting + Dimension + Afmeting - Length: - Lengte: + Length: + Lengte: - Mirrored extent - Mirrored extent + Mirrored extent + Mirrored extent - - Reversed - Reversed + Reversed + Reversed - Display mode: - Weergavemodus: + Display mode: + Weergavemodus: - Plot mode: - Plot modus: + Plot mode: + Plot modus: - Point size: - Puntgrootte: + Point size: + Puntgrootte: - Line width: - Lijndikte: + Line width: + Lijndikte: - Transparency: - Transparantie: + Transparency: + Transparantie: - TaskPadParameters - TaskPadParameters + TaskPadParameters + TaskPadParameters - - Pad parameters - Pad parameters + + Pad parameters + Pad parameters - - No face selected - + No face selected + No face selected - - To last - + To last + To last - - To first - + To first + To first - - Up to face - + Up to face + Naar oppervlak - - Two dimensions - + Two dimensions + Two dimensions - - + + PartDesignGui::TaskPatternRectangularParameters - - Form - Vorm + + Form + Vorm - - Spacing1: - Spacing1: + Spacing1: + Spacing1: - - Number1: - Number1: + Number1: + Nummer1: - - Second extend - Second extend + Second extend + Second extend - - Spacing2: - Spacing2: + Spacing2: + Spacing2: - - Number2: - Number2: + Number2: + Nummer2: - - TaskPatternRectangularParameters - TaskPatternRectangularParameters + + TaskPatternRectangularParameters + TaskPatternRectangularParameters - - + + PartDesignGui::TaskPocketParameters - - Form - Vorm + + Form + Vorm - Type: - Type: + Type: + Type: - - Type - + Type + Type - - - Dimension - Afmeting + Dimension + Afmeting - - - Face - + Face + Face - - Length - Length + Length + Lengte - - Pocket parameters - Pocket parameters + + Pocket parameters + Pocket parameters - - To last - + To last + To last - - To first - + To first + To first - - Through all - + Through all + Through all - - Up to face - + Up to face + Naar oppervlak - - No face selected - + No face selected + No face selected - - + + PartDesignGui::TaskRevolutionParameters - - Form - Vorm + + Form + Vorm - - Axis: - Assen: + Axis: + Assen: - - Vertical sketch axis - + Vertical sketch axis + Vertical sketch axis - - Horizontal sketch axis - + Horizontal sketch axis + Horizontal sketch axis - - Symmetric to plane - + Symmetric to plane + Symmetric to plane - - Reversed - Reversed + Reversed + Reversed - Vertical - Vertical + Vertical + Verticaal - Horizontal - Horizontal + Horizontal + Horizontaal - - Angle: - Hoek: + Angle: + Hoek: - - Revolution parameters - Revolution parameters + + Revolution parameters + Rotatieparameters - - + + QObject - - - - - - - - - - - - - - - - - - - Wrong selection - Verkeerde selectie + + Wrong selection + Verkeerde selectie - - - - - Select a sketch or 2D object. - Selecteer een schets of 2D-object. + Select a sketch or 2D object. + Selecteer een schets of 2D-object. - - - - - The shape of the selected object is empty. - De vorm van het geselecteerde object is leeg. + The shape of the selected object is empty. + De vorm van het geselecteerde object is leeg. - - - - - The shape of the selected object is not a wire. - De vorm van het geselecteerde object is geen draad. + The shape of the selected object is not a wire. + De vorm van het geselecteerde object is geen draad. - - - Select an edge, face or body. Only one body is allowed. - Selecteer een rand, vlak of lichaam. Slechts één lichaam is toegestaan. + Select an edge, face or body. Only one body is allowed. + Selecteer een rand, vlak of lichaam. Slechts één lichaam is toegestaan. - - - Wrong object type - Verkeerde objecttype + Wrong object type + Verkeerde objecttype - - Fillet works only on parts - Afrondingen werken alleen op onderdelen + Fillet works only on parts + Afrondingen werken alleen op onderdelen - - Shape of selected Part is empty - + Shape of selected Part is empty + Shape of selected Part is empty - - No fillet possible on selected faces/edges - + No fillet possible on selected faces/edges + No fillet possible on selected faces/edges - - Chamfer works only on parts - + Chamfer works only on parts + Chamfer works only on parts - - Shape of selected part is empty - + Shape of selected part is empty + Shape of selected part is empty - - No chamfer possible on selected faces/edges - + No chamfer possible on selected faces/edges + No chamfer possible on selected faces/edges - - No Support - Geen ondersteuning + No Support + Geen ondersteuning - - The sketch has to have a support for the pocket feature. + The sketch has to have a support for the pocket feature. Create the sketch on a face. - De schets heeft een ondersteuning voor de uitsparingsfunctie nodig. + De schets heeft een ondersteuning voor de uitsparingsfunctie nodig. Creëer de schets op een vlak. - - Edit pad - Edit pad + + Edit pad + Edit pad - - - - Edit pocket - Edit pocket + + Edit pocket + Edit pocket - - - - - - - A dialog is already open in the task panel - A dialog is already open in the task panel + A dialog is already open in the task panel + Een dialoog is al geopend in het taakvenster - - - - - - - Do you want to close this dialog? - Do you want to close this dialog? + Do you want to close this dialog? + Wilt u dit dialoogvenster sluiten? - - Edit revolution - Edit revolution + + Edit revolution + Rotatie bewerken - - Edit Groove - + + Edit Groove + Edit Groove - - + + Workbench - - Part Design - Onderdelen ontwerp + + Part Design + Onderdelen ontwerp - + diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_no.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_no.qm index e6fbe9ffc..f4829cb18 100644 Binary files a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_no.qm and b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_no.qm differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_no.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_no.ts index 165088f41..08d76feed 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_no.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_no.ts @@ -1,770 +1,647 @@ - - + + CmdPartDesignChamfer - Part - Komponent + Part + Komponent - Chamfer... - Fas... + Chamfer... + Fas... - - PartDesign - Komponentdesign + + PartDesign + Komponentdesign - - Chamfer - + Chamfer + Chamfer - - Chamfer the selected edges of a shape - Faser valgte kanter på en figur + Chamfer the selected edges of a shape + Faser valgte kanter på en figur - - + + CmdPartDesignFillet - - PartDesign - Komponentdesign + PartDesign + Komponentdesign - - Fillet - Avrunding + Fillet + Avrunding - - Make a fillet on an edge, face or body - Lag avrunding på en kant, flate eller komponent + Make a fillet on an edge, face or body + Lag avrunding på en kant, flate eller komponent - - + + CmdPartDesignGroove - - PartDesign - Komponentdesign + PartDesign + Komponentdesign - - Groove - + Groove + Groove - - Groove a selected sketch - + Groove a selected sketch + Groove a selected sketch - - + + CmdPartDesignPad - - PartDesign - Komponentdesign + PartDesign + Komponentdesign - - Pad - Legg ut + Pad + Legg ut - - Pad a selected sketch - Legg ut en valgt skisse + Pad a selected sketch + Legg ut en valgt skisse - - + + CmdPartDesignPocket - - PartDesign - Komponentdesign + PartDesign + Komponentdesign - - Pocket - Lomme + Pocket + Lomme - - create a pocket with the selected sketch - lag en lomme med valgte skisse + create a pocket with the selected sketch + lag en lomme med valgte skisse - - + + CmdPartDesignRevolution - - PartDesign - Komponentdesign + PartDesign + Komponentdesign - - Revolution - Revolution + Revolution + Revolution - - Revolve a selected sketch - Revolve a selected sketch + Revolve a selected sketch + Revolve a selected sketch - - + + Gui::TaskView::TaskWatcherCommands - - Face tools - Face tools + + Face tools + Face tools - - Sketch tools - Sketch tools + Sketch tools + Sketch tools - - Create Geometry - Create Geometry + Create Geometry + Create Geometry - - + + PartDesignGui::ChamferWidget - Edges to chamfer - Kanter som skal fases + Edges to chamfer + Kanter som skal fases - Start distance - Startavstand + Start distance + Startavstand - End distance - Sluttavstand + End distance + Sluttavstand - Edge%1 - Kant%1 + Edge%1 + Kant%1 - Distance - Avstand + Distance + Avstand - No shape selected - Ingen figur er merket + No shape selected + Ingen figur er merket - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - Ingen gyldig figur er valgt. + Ingen gyldig figur er valgt. Vennligst velg en gyldig figur i rullgardina først. - No edge selected - Ingen kant er valgt + No edge selected + Ingen kant er valgt - No edge entity is checked to chamfer. + No edge entity is checked to chamfer. Please check one or more edge entities first. - Ingen kanter merket for fasing. + Ingen kanter merket for fasing. Merk en eller flere kanter først. - - + + PartDesignGui::TaskChamfer - Chamfer Edges - Fas kanter + Chamfer Edges + Fas kanter - Shape - Figur + Shape + Figur - Selected shape: - Valgt figur: + Selected shape: + Valgt figur: - No selection - Ingen valg + No selection + Ingen valg - Chamfer Parameter - Fasningsparameter + Chamfer Parameter + Fasningsparameter - All - Alle + All + Alle - None - Ingen + None + Ingen - Chamfer type: - Fastype: + Chamfer type: + Fastype: - Constant Distance - Konstant avstand + Constant Distance + Konstant avstand - Variable Distance - Variabel avstand + Variable Distance + Variabel avstand - Distance: - Avstand: + Distance: + Avstand: - - + + PartDesignGui::TaskChamferParameters - - Form - Skjema + + Form + Skjema - - Size: - Størrelse: + Size: + Størrelse: - - Chamfer parameters - + + Chamfer parameters + Chamfer parameters - - + + PartDesignGui::TaskDlgPadParameters - - Input error - Input error + + Input error + Input error - - + + PartDesignGui::TaskFilletParameters - - Form - Skjema + + Form + Skjema - - Radius: - Radius: + Radius: + Radius: - - Fillet parameters - Fillet parameters + + Fillet parameters + Fillet parameters - - + + PartDesignGui::TaskGrooveParameters - - Form - Skjema + + Form + Skjema - - Axis: - Akse: + Axis: + Akse: - - Vertical sketch axis - + Vertical sketch axis + Vertical sketch axis - - Horizontal sketch axis - + Horizontal sketch axis + Horizontal sketch axis - - Angle: - Vinkel: + Angle: + Vinkel: - - Symmetric to plane - + Symmetric to plane + Symmetric to plane - - Reversed - Reversed + Reversed + Reversed - - Groove parameters - + + Groove parameters + Groove parameters - - + + PartDesignGui::TaskHoleParameters - - Form - Skjema + + Form + Skjema - - Type: - Type: + Type: + Type: - - Dimension - Dimensjon + Dimension + Dimensjon - - Up to last - Opp til siste + Up to last + Opp til siste - - Up to first - Up to first + Up to first + Up to first - - Size: - Størrelse: + Size: + Størrelse: - - TaskHoleParameters - TaskHoleParameters + + TaskHoleParameters + TaskHoleParameters - - + + PartDesignGui::TaskPadParameters - - Form - Skjema + + Form + Skjema - - Type - + Type + Type - - Length - Length + Length + Lengde - - Symmetric to plane - + Symmetric to plane + Symmetric to plane - - 2nd length - + 2nd length + Andre lengde - - - Face - + Face + Flate - Type: - Type: + Type: + Type: - - - Dimension - Dimensjon + Dimension + Dimensjon - Length: - Lengde: + Length: + Lengde: - Mirrored extent - Mirrored extent + Mirrored extent + Mirrored extent - - Reversed - Reversed + Reversed + Reversed - Display mode: - Visningsmodus: + Display mode: + Visningsmodus: - Plot mode: - Plottmodus: + Plot mode: + Plottmodus: - Point size: - Punktstørrelse: + Point size: + Punktstørrelse: - Line width: - Linjebredde: + Line width: + Linjebredde: - Transparency: - Gjennomsiktighet: + Transparency: + Gjennomsiktighet: - TaskPadParameters - Oppgavepadparametere + TaskPadParameters + Oppgavepadparametere - - Pad parameters - Pad parameters + + Pad parameters + Pad parameters - - No face selected - + No face selected + Ingen flater valgt - - To last - + To last + To last - - To first - + To first + To first - - Up to face - + Up to face + Opp til flate - - Two dimensions - + Two dimensions + To dimensjoner - - + + PartDesignGui::TaskPatternRectangularParameters - - Form - Skjema + + Form + Skjema - - Spacing1: - Spacing1: + Spacing1: + Spacing1: - - Number1: - Number1: + Number1: + Number1: - - Second extend - Second extend + Second extend + Second extend - - Spacing2: - Spacing2: + Spacing2: + Spacing2: - - Number2: - Number2: + Number2: + Number2: - - TaskPatternRectangularParameters - TaskPatternRectangularParameters + + TaskPatternRectangularParameters + TaskPatternRectangularParameters - - + + PartDesignGui::TaskPocketParameters - - Form - Skjema + + Form + Skjema - Type: - Type: + Type: + Type: - - Type - + Type + Type - - - Dimension - Dimensjon + Dimension + Dimensjon - - - Face - + Face + Flate - - Length - Length + Length + Lengde - - Pocket parameters - Pocket parameters + + Pocket parameters + Pocket parameters - - To last - + To last + To last - - To first - + To first + To first - - Through all - + Through all + Gjennom alle - - Up to face - + Up to face + Opp til flate - - No face selected - + No face selected + Ingen flater valgt - - + + PartDesignGui::TaskRevolutionParameters - - Form - Skjema + + Form + Skjema - - Axis: - Akse: + Axis: + Akse: - - Vertical sketch axis - + Vertical sketch axis + Vertical sketch axis - - Horizontal sketch axis - + Horizontal sketch axis + Horizontal sketch axis - - Symmetric to plane - + Symmetric to plane + Symmetric to plane - - Reversed - Reversed + Reversed + Reversed - Vertical - Vertical + Vertical + Vertical - Horizontal - Horizontal + Horizontal + Horizontal - - Angle: - Vinkel: + Angle: + Vinkel: - - Revolution parameters - Revolution parameters + + Revolution parameters + Revolution parameters - - + + QObject - - - - - - - - - - - - - - - - - - - Wrong selection - Feil valg + + Wrong selection + Feil valg - - - - - Select a sketch or 2D object. - Velg en skisse eller 2D-objekt. + Select a sketch or 2D object. + Velg en skisse eller 2D-objekt. - - - - - The shape of the selected object is empty. - Formen på det valgte objektet er tom. + The shape of the selected object is empty. + Formen på det valgte objektet er tom. - - - - - The shape of the selected object is not a wire. - Formen på det valgte objektet er ikke en tråd. + The shape of the selected object is not a wire. + Formen på det valgte objektet er ikke en tråd. - - - Select an edge, face or body. Only one body is allowed. - Velg en kant, flate eller komponent. Kun en komponent er tillatt. + Select an edge, face or body. Only one body is allowed. + Velg en kant, flate eller komponent. Kun en komponent er tillatt. - - - Wrong object type - Feil objekttype + Wrong object type + Feil objekttype - - Fillet works only on parts - Avrunding fungerer bare på komponenter + Fillet works only on parts + Avrunding fungerer bare på komponenter - - Shape of selected Part is empty - + Shape of selected Part is empty + Formen på den valgte delen er tom - - No fillet possible on selected faces/edges - + No fillet possible on selected faces/edges + No fillet possible on selected faces/edges - - Chamfer works only on parts - + Chamfer works only on parts + Chamfer works only on parts - - Shape of selected part is empty - + Shape of selected part is empty + Formen på den valgte delen er tom - - No chamfer possible on selected faces/edges - + No chamfer possible on selected faces/edges + No chamfer possible on selected faces/edges - - No Support - Ingen støtte + No Support + Ingen støtte - - The sketch has to have a support for the pocket feature. + The sketch has to have a support for the pocket feature. Create the sketch on a face. - Skisse må ha støtte for lommefunksjonen. + Skisse må ha støtte for lommefunksjonen. Opprett skisse på en flate. - - Edit pad - Edit pad + + Edit pad + Edit pad - - - - Edit pocket - Edit pocket + + Edit pocket + Edit pocket - - - - - - - A dialog is already open in the task panel - A dialog is already open in the task panel + A dialog is already open in the task panel + En dialog er allerede åpent i oppgavepanelet - - - - - - - Do you want to close this dialog? - Do you want to close this dialog? + Do you want to close this dialog? + Ønsker du å lukke denne dialogen? - - Edit revolution - Edit revolution + + Edit revolution + Edit revolution - - Edit Groove - + + Edit Groove + Edit Groove - - + + Workbench - - Part Design - Komponentdesign + + Part Design + Komponentdesign - + diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pl.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pl.qm index fb57873df..37ae08d33 100644 Binary files a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pl.qm and b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pl.qm differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pl.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pl.ts index eb19fde67..61eb64252 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pl.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pl.ts @@ -1,767 +1,644 @@ - - + + CmdPartDesignChamfer - Part - Część + Part + Część - Chamfer... - Fazowanie ... + Chamfer... + Fazowanie ... - - PartDesign - PartDesign + + PartDesign + Projektowanie Części "Part" - - Chamfer - + Chamfer + Faza - - Chamfer the selected edges of a shape - Fazowanie zaznaczonych krawędzi kształtu + Chamfer the selected edges of a shape + Sfazuj wybrane krawędzie obiektu - - + + CmdPartDesignFillet - - PartDesign - PartDesign + PartDesign + Projektowanie Części "Part" - - Fillet - Zaokrąglenie + Fillet + Zaokrąglenie - - Make a fillet on an edge, face or body - Utwórz zaokrąglenia na krawędzi, powierzchni lub bryle + Make a fillet on an edge, face or body + Utwórz zaokrąglenia na krawędzi, powierzchni lub bryle - - + + CmdPartDesignGroove - - PartDesign - PartDesign + PartDesign + Projektowanie Części "Part" - - Groove - + Groove + Spoina - - Groove a selected sketch - + Groove a selected sketch + Spoinuj wybrany szkic - - + + CmdPartDesignPad - - PartDesign - PartDesign + PartDesign + Projektowanie Części "Part" - - Pad - Wyciągnięcie + Pad + Występ - - Pad a selected sketch - Wyciągnij wybrany szkic + Pad a selected sketch + Wyciągnij wybrany szkic - - + + CmdPartDesignPocket - - PartDesign - PartDesign + PartDesign + Projektowanie Części "Part" - - Pocket - Kieszeń + Pocket + Kieszeń - - create a pocket with the selected sketch - Utwórz kieszeń z wybranego szkicu + create a pocket with the selected sketch + Utwórz kieszeń z wybranego szkicu - - + + CmdPartDesignRevolution - - PartDesign - PartDesign + PartDesign + Projektowanie Części "Part" - - Revolution - Obrót + Revolution + Obrót - - Revolve a selected sketch - Obróć zaznaczony szkic + Revolve a selected sketch + Wyciągnij przez obrót zaznaczony szkic - - + + Gui::TaskView::TaskWatcherCommands - - Face tools - Face tools + + Face tools + Narzędzia powierzchni "face" - - Sketch tools - Sketch tools + Sketch tools + Narzędzia szkicowania - - Create Geometry - Create Geometry + Create Geometry + Tworzenie geometrii - - + + PartDesignGui::ChamferWidget - Edges to chamfer - Krawędzie do fazowania + Edges to chamfer + Krawędzie do fazowania - Start distance - Odległość początkowa + Start distance + Odległość początkowa - End distance - Odległość końcowa + End distance + Odległość końcowa - Edge%1 - Krawędź%1 + Edge%1 + Krawędź%1 - Distance - Odległość + Distance + Odległość - No shape selected - Brak wybranego kształtu + No shape selected + Brak wybranego kształtu - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - Wybrany kształt nie jest prawidłowy. Wybierz prawidłowy kształt + Wybrany kształt nie jest prawidłowy. Wybierz prawidłowy kształt - No edge selected - Nie wybrano krawędzi + No edge selected + Nie wybrano krawędzi - No edge entity is checked to chamfer. + No edge entity is checked to chamfer. Please check one or more edge entities first. - Nie zaznaczono krawędzi do sfazowania. Zaznacz wcześniej jedną lub więcej krawędzi. + Nie zaznaczono krawędzi do sfazowania. Zaznacz wcześniej jedną lub więcej krawędzi. - - + + PartDesignGui::TaskChamfer - Chamfer Edges - Fazowanie krawędzi + Chamfer Edges + Fazowanie krawędzi - Shape - Kształt + Shape + Kształt - Selected shape: - Wybrany kształt: + Selected shape: + Wybrany kształt: - No selection - Brak zaznaczenia + No selection + Brak zaznaczenia - Chamfer Parameter - Parametr fazy + Chamfer Parameter + Parametr fazy - All - Wszystkie + All + Wszystkie - None - Brak + None + Brak - Chamfer type: - Typ fazowania: + Chamfer type: + Typ fazowania: - Constant Distance - Stała odległość + Constant Distance + Stała odległość - Variable Distance - Zmienna odległość + Variable Distance + Zmienna odległość - Distance: - Odległość: + Distance: + Odległość: - - + + PartDesignGui::TaskChamferParameters - - Form - Formularz + + Form + Formularz - - Size: - Rozmiar: + Size: + Rozmiar: - - Chamfer parameters - + + Chamfer parameters + Parametr fazy - - + + PartDesignGui::TaskDlgPadParameters - - Input error - Input error + + Input error + Błąd danych wejściowych - - + + PartDesignGui::TaskFilletParameters - - Form - Formularz + + Form + Formularz - - Radius: - Promień: + Radius: + Promień: - - Fillet parameters - Fillet parameters + + Fillet parameters + Parametry zaokrąglenia - - + + PartDesignGui::TaskGrooveParameters - - Form - Formularz + + Form + Formularz - - Axis: - Oś: + Axis: + Oś: - - Vertical sketch axis - + Vertical sketch axis + Szkic pionowej osi - - Horizontal sketch axis - + Horizontal sketch axis + Szkic poziomej osi - - Angle: - Kąt: + Angle: + Kąt: - - Symmetric to plane - + Symmetric to plane + Symetryczna do płaszczyzny - - Reversed - Reversed + Reversed + Odwrócony - - Groove parameters - + + Groove parameters + Parametry spoiny - - + + PartDesignGui::TaskHoleParameters - - Form - Formularz + + Form + Formularz - - Type: - Typ: + Type: + Typ: - - Dimension - Wymiar + Dimension + Wymiar - - Up to last - Do ostatniego + Up to last + Do ostatniego - - Up to first - Up to first + Up to first + Do pierwszej - - Size: - Rozmiar: + Size: + Rozmiar: - - TaskHoleParameters - TaskHoleParameters + + TaskHoleParameters + TaskHoleParameters - - + + PartDesignGui::TaskPadParameters - - Form - Formularz + + Form + Formularz - - Type - + Type + Typ - - Length - Length + Length + Długość - - Symmetric to plane - + Symmetric to plane + Symetryczna do płaszczyzny - - 2nd length - + 2nd length + druga długość - - - Face - + Face + Twarz - Type: - Typ: + Type: + Typ: - - - Dimension - Wymiar + Dimension + Wymiar - Length: - Długość: + Length: + Długość: - Mirrored extent - Mirrored extent + Mirrored extent + Wyciągnięcie lustrzane - - Reversed - Reversed + Reversed + Odwrócony - Display mode: - Tryb wyświetlania: + Display mode: + Tryb wyświetlania: - Plot mode: - Tryb rysowania: + Plot mode: + Tryb rysowania: - Point size: - Rozmiar punktu: + Point size: + Rozmiar punktu: - Line width: - Szerokość linii: + Line width: + Szerokość linii: - Transparency: - Przezroczystość: + Transparency: + Przezroczystość: - TaskPadParameters - TaskPadParameters + TaskPadParameters + TaskPadParameters - - Pad parameters - Pad parameters + + Pad parameters + Parametry wyciągnięcia - - No face selected - + No face selected + Nie zaznaczono twarzy - - To last - + To last + Do ostatniego - - To first - + To first + Do pierwszego - - Up to face - + Up to face + Do fasetki - - Two dimensions - + Two dimensions + Dwa wymiary - - + + PartDesignGui::TaskPatternRectangularParameters - - Form - Formularz + + Form + Formularz - - Spacing1: - Spacing1: + Spacing1: + Rozstaw1: - - Number1: - Numer1: + Number1: + Numer1: - - Second extend - Second extend + Second extend + Drugie rozszerzenie - - Spacing2: - Spacing2: + Spacing2: + Rozstaw2: - - Number2: - Number2: + Number2: + Numer2: - - TaskPatternRectangularParameters - TaskPatternRectangularParameters + + TaskPatternRectangularParameters + TaskPatternRectangularParameters - - + + PartDesignGui::TaskPocketParameters - - Form - Formularz + + Form + Formularz - Type: - Typ: + Type: + Typ: - - Type - + Type + Typ - - - Dimension - Wymiar + Dimension + Wymiar - - - Face - + Face + Twarz - - Length - Length + Length + Długość - - Pocket parameters - Pocket parameters + + Pocket parameters + Parametry kieszeni - - To last - + To last + Do ostatniego - - To first - + To first + Do pierwszego - - Through all - + Through all + Przez wszystkie - - Up to face - + Up to face + Do fasetki - - No face selected - + No face selected + Nie zaznaczono twarzy - - + + PartDesignGui::TaskRevolutionParameters - - Form - Formularz + + Form + Formularz - - Axis: - Oś: + Axis: + Oś: - - Vertical sketch axis - + Vertical sketch axis + Szkic pionowej osi - - Horizontal sketch axis - + Horizontal sketch axis + Szkic poziomej osi - - Symmetric to plane - + Symmetric to plane + Symetryczna do płaszczyzny - - Reversed - Reversed + Reversed + Odwrócony - Vertical - Vertical + Vertical + Pionowa - Horizontal - Horizontal + Horizontal + Pozioma - - Angle: - Kąt: + Angle: + Kąt: - - Revolution parameters - Revolution parameters + + Revolution parameters + Parametry wyciągnięcia przez obrót - - + + QObject - - - - - - - - - - - - - - - - - - - Wrong selection - Niewłaściwy wybór + + Wrong selection + Niewłaściwy wybór - - - - - Select a sketch or 2D object. - Wybierz szkic lub obiekt 2D. + Select a sketch or 2D object. + Wybierz szkic lub obiekt 2D. - - - - - The shape of the selected object is empty. - The shape of the selected object is empty. + The shape of the selected object is empty. + Kształt zaznaczonego obiektu jest pusty. - - - - - The shape of the selected object is not a wire. - The shape of the selected object is not a wire. + The shape of the selected object is not a wire. + Kształt zaznaczonego obiektu nie jest ze szkieletu. - - - Select an edge, face or body. Only one body is allowed. - Wybierz krawędź, powierzchnię lub bryłę. Tylko jedna bryłą jest dozwolona. + Select an edge, face or body. Only one body is allowed. + Wybierz krawędź, powierzchnię lub bryłę. Tylko jedna bryłą jest dozwolona. - - - Wrong object type - Niewłaściwy typ obiektu + Wrong object type + Niewłaściwy typ obiektu - - Fillet works only on parts - Zaokrąglenie działa tylko na częściach + Fillet works only on parts + Zaokrąglenie działa tylko na częściach - - Shape of selected Part is empty - + Shape of selected Part is empty + Kształt wybranej część jest pusty - - No fillet possible on selected faces/edges - + No fillet possible on selected faces/edges + Wypełnienie niemożliwe dla wybranych twarzy/krawędzi - - Chamfer works only on parts - + Chamfer works only on parts + Fazowanie działa tylko na części - - Shape of selected part is empty - + Shape of selected part is empty + Kształt wybranej część jest pusty - - No chamfer possible on selected faces/edges - + No chamfer possible on selected faces/edges + Przesunięcie fazy niemożliwe dla wybranych twarzy/krawędzi - - No Support - Brak obsługi + No Support + Brak obsługi - - The sketch has to have a support for the pocket feature. + The sketch has to have a support for the pocket feature. Create the sketch on a face. - Szkic musi mieć bazę dla kieszeni, Utwórz szkic na powierzchni. + Szkic musi mieć bazę dla kieszeni, Utwórz szkic na powierzchni. - - Edit pad - Edit pad + + Edit pad + Edytuj wyciągnięcie - - - - Edit pocket - Edit pocket + + Edit pocket + Edytuj kieszeń - - - - - - - A dialog is already open in the task panel - A dialog is already open in the task panel + A dialog is already open in the task panel + Okno dialogowe jest już otwarte w panelu zadań - - - - - - - Do you want to close this dialog? - Do you want to close this dialog? + Do you want to close this dialog? + Czy chcesz zamknąć to okno dialogowe? - - Edit revolution - Edit revolution + + Edit revolution + Edytuj wyciągnięcie przez obrót - - Edit Groove - + + Edit Groove + Edytuj spoinę - - + + Workbench - - Part Design - Part Design + + Part Design + Projektowanie części - + diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt-BR.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt-BR.qm new file mode 100644 index 000000000..9fdd1e758 Binary files /dev/null and b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt-BR.qm differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt-BR.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt-BR.ts new file mode 100644 index 000000000..5e66be8c1 --- /dev/null +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt-BR.ts @@ -0,0 +1,645 @@ + + + + + CmdPartDesignChamfer + + Part + Parte + + + Chamfer... + Chanfro... + + + + PartDesign + PartDesign + + + Chamfer + Chanfro + + + Chamfer the selected edges of a shape + Chanfra as arestas selecionadas de uma forma + + + + CmdPartDesignFillet + + PartDesign + PartDesign + + + Fillet + Filete + + + Make a fillet on an edge, face or body + Fazer um filete em uma aresta, face ou sólido + + + + CmdPartDesignGroove + + PartDesign + PartDesign + + + Groove + Ranhura + + + Groove a selected sketch + Cria uma ranhura a partir do esboço selecionado + + + + CmdPartDesignPad + + PartDesign + PartDesign + + + Pad + Pad + + + Pad a selected sketch + Preencher um esboço selecionado + + + + CmdPartDesignPocket + + PartDesign + PartDesign + + + Pocket + Pocket + + + create a pocket with the selected sketch + Cria um pocket (bolso) a partir do esboço selecionado + + + + CmdPartDesignRevolution + + PartDesign + PartDesign + + + Revolution + Revolução + + + Revolve a selected sketch + Revolver um esboço selecionado + + + + Gui::TaskView::TaskWatcherCommands + + + Face tools + Ferramentas de faces + + + Sketch tools + Ferramentas de esboço + + + Create Geometry + Criar geometria + + + + PartDesignGui::ChamferWidget + + Edges to chamfer + Arestas para chanfrar + + + Start distance + Distância inicial + + + End distance + Distância final + + + Edge%1 + Aresta %1 + + + Distance + Distância + + + No shape selected + Nenhuma forma selecionada + + + No valid shape is selected. +Please select a valid shape in the drop-down box first. + Nenhuma forma válida é selecionada Selecione primeiro uma forma válida na caixa drop-down. + + + No edge selected + Nenhuma aresta selecionada + + + No edge entity is checked to chamfer. +Please check one or more edge entities first. + Nenhuma aresta está marcada para fazer um chanfro. +Selecione primeiro uma ou mais arestas. + + + + PartDesignGui::TaskChamfer + + Chamfer Edges + Chanfrar arestas + + + Shape + Forma + + + Selected shape: + Forma selecionada: + + + No selection + Nenhuma seleção + + + Chamfer Parameter + Parâmetro de chanfro + + + All + Todos + + + None + Nenhum + + + Chamfer type: + Tipo do chanfro: + + + Constant Distance + Distância constante + + + Variable Distance + Distância variável + + + Distance: + Distância: + + + + PartDesignGui::TaskChamferParameters + + + Form + Forma + + + Size: + Tamanho: + + + + Chamfer parameters + Parâmetros de chanfro + + + + PartDesignGui::TaskDlgPadParameters + + + Input error + Erro de entrada + + + + PartDesignGui::TaskFilletParameters + + + Form + Forma + + + Radius: + Raio: + + + + Fillet parameters + Parâmetros de fileto + + + + PartDesignGui::TaskGrooveParameters + + + Form + Forma + + + Axis: + Eixo: + + + Vertical sketch axis + Eixo vertical do esboço + + + Horizontal sketch axis + Eixo horizontal do esboço + + + Angle: + Ângulo: + + + Symmetric to plane + Simétrico ao plano + + + Reversed + Invertido + + + + Groove parameters + Parâmetros de ranhura + + + + PartDesignGui::TaskHoleParameters + + + Form + Forma + + + Type: + Tipo: + + + Dimension + Dimensão + + + Up to last + Até o último + + + Up to first + Até o primeiro + + + Size: + Tamanho: + + + + TaskHoleParameters + Parâmetros do TaskHole + + + + PartDesignGui::TaskPadParameters + + + Form + Forma + + + Type + Tipo + + + Length + Comprimento + + + Symmetric to plane + Simétrico ao plano + + + 2nd length + Segundo comprimento + + + Face + Face + + + Type: + Tipo: + + + Dimension + Dimensão + + + Length: + Comprimento: + + + Mirrored extent + Extensão espelhada + + + Reversed + Invertido + + + Display mode: + Modo de exibição: + + + Plot mode: + Modo de plotagem: + + + Point size: + Tamanho de ponto: + + + Line width: + Largura da linha: + + + Transparency: + Transparência: + + + TaskPadParameters + Parametros do TaskPad + + + + Pad parameters + Parâmetros do Pad + + + No face selected + Nenhuma face selecionada + + + To last + Até o último + + + To first + Até o primeiro + + + Up to face + Até a face + + + Two dimensions + Duas dimensões + + + + PartDesignGui::TaskPatternRectangularParameters + + + Form + Forma + + + Spacing1: + Espaço1: + + + Number1: + Número1: + + + Second extend + Segunda extensão + + + Spacing2: + Espaço2: + + + Number2: + Numero2: + + + + TaskPatternRectangularParameters + TaskPatternRectangularParameters + + + + PartDesignGui::TaskPocketParameters + + + Form + Forma + + + Type: + Tipo: + + + Type + Tipo + + + Dimension + Dimensão + + + Face + Face + + + Length + Comprimento + + + + Pocket parameters + Parâmetros do bolso + + + To last + Até o último + + + To first + Até o primeiro + + + Through all + Através de todos + + + Up to face + Até a face + + + No face selected + Nenhuma face selecionada + + + + PartDesignGui::TaskRevolutionParameters + + + Form + Forma + + + Axis: + Eixo: + + + Vertical sketch axis + Eixo vertical do esboço + + + Horizontal sketch axis + Eixo horizontal do esboço + + + Symmetric to plane + Simétrico ao plano + + + Reversed + Invertido + + + Vertical + Vertical + + + Horizontal + Horizontal + + + Angle: + Ângulo: + + + + Revolution parameters + Parâmetros de revolução + + + + QObject + + + Wrong selection + Seleção errada + + + Select a sketch or 2D object. + Selecione um desenho ou objeto 2D. + + + The shape of the selected object is empty. + A forma do objeto selecionado está vazia. + + + The shape of the selected object is not a wire. + A forma do objeto selecionado não é um fio. + + + Select an edge, face or body. Only one body is allowed. + Selecione uma aresta, face ou corpo. Apenas um corpo é permitido. + + + Wrong object type + Tipo de objeto errado + + + Fillet works only on parts + Filete só funciona em partes + + + Shape of selected Part is empty + A forma da parte selecionada está vazia + + + No fillet possible on selected faces/edges + Filete impossível nas faces/arestas selecionadas + + + Chamfer works only on parts + O camfro só funciona em partes + + + Shape of selected part is empty + A forma da parte selecionada está vazia + + + No chamfer possible on selected faces/edges + Chanfro impossível nas faces/arestas selecionadas + + + No Support + Sem suporte + + + The sketch has to have a support for the pocket feature. +Create the sketch on a face. + O esboço tem que ter um suporte para fazer um Pocket. Crie o esboço em cima de uma face. + + + + Edit pad + Editar pad + + + + Edit pocket + Editar o bolso + + + A dialog is already open in the task panel + Uma caixa de diálogo já está aberta no painel de tarefas + + + Do you want to close this dialog? + Deseja fechar este diálogo? + + + + Edit revolution + Editar revolução + + + + Edit Groove + Editar ranhura + + + + Workbench + + + Part Design + Part Design + + + diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt.qm deleted file mode 100644 index 9a7ee0cb4..000000000 Binary files a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt.qm and /dev/null differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt.ts deleted file mode 100644 index 3de7d866c..000000000 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt.ts +++ /dev/null @@ -1,768 +0,0 @@ - - - - - CmdPartDesignChamfer - - Part - Parte - - - Chamfer... - Chanfro... - - - - PartDesign - PartDesign - - - - Chamfer - - - - - Chamfer the selected edges of a shape - Chanfra as arestas selecionadas de uma forma - - - - CmdPartDesignFillet - - - PartDesign - PartDesign - - - - Fillet - Filete - - - - Make a fillet on an edge, face or body - Fazer um filete em uma aresta, face ou sólido - - - - CmdPartDesignGroove - - - PartDesign - PartDesign - - - - Groove - - - - - Groove a selected sketch - - - - - CmdPartDesignPad - - - PartDesign - PartDesign - - - - Pad - Pad - - - - Pad a selected sketch - Preencher um esboço selecionado - - - - CmdPartDesignPocket - - - PartDesign - PartDesign - - - - Pocket - Pocket - - - - create a pocket with the selected sketch - Cria um pocket (bolso) a partir do esboço selecionado - - - - CmdPartDesignRevolution - - - PartDesign - PartDesign - - - - Revolution - Revolução - - - - Revolve a selected sketch - Revolver um esboço selecionado - - - - Gui::TaskView::TaskWatcherCommands - - - Face tools - Ferramentas de faces - - - - Sketch tools - Ferramentas de esboço - - - - Create Geometry - Criar geometria - - - - PartDesignGui::ChamferWidget - - Edges to chamfer - Arestas para chanfrar - - - Start distance - Distância inicial - - - End distance - Distância final - - - Edge%1 - Aresta %1 - - - Distance - Distância - - - No shape selected - Nenhuma forma foi selecionada - - - No valid shape is selected. -Please select a valid shape in the drop-down box first. - Nenhuma forma válida é selecionada Selecione primeiro uma forma válida na caixa drop-down. - - - No edge selected - Nenhuma aresta selecionada - - - No edge entity is checked to chamfer. -Please check one or more edge entities first. - Nenhuma aresta está marcada para fazer um chanfro. -Selecione primeiro uma ou mais arestas. - - - - PartDesignGui::TaskChamfer - - Chamfer Edges - Chanfrar arestas - - - Shape - Forma - - - Selected shape: - Forma selecionada: - - - No selection - Nenhuma seleção - - - Chamfer Parameter - Parâmetro de chanfro - - - All - Todos - - - None - Nenhum - - - Chamfer type: - Tipo do chanfro: - - - Constant Distance - Distância constante - - - Variable Distance - Distância variável - - - Distance: - Distância: - - - - PartDesignGui::TaskChamferParameters - - - Form - Forma - - - - Size: - Tamanho: - - - - Chamfer parameters - - - - - PartDesignGui::TaskDlgPadParameters - - - Input error - Erro de entrada - - - - PartDesignGui::TaskFilletParameters - - - Form - Forma - - - - Radius: - Raio: - - - - Fillet parameters - Parâmetros de fileto - - - - PartDesignGui::TaskGrooveParameters - - - Form - Forma - - - - Axis: - Eixo: - - - - Vertical sketch axis - - - - - Horizontal sketch axis - - - - - Angle: - Ângulo: - - - - Symmetric to plane - - - - - Reversed - Invertido - - - - Groove parameters - - - - - PartDesignGui::TaskHoleParameters - - - Form - Forma - - - - Type: - Tipo: - - - - Dimension - Dimensão - - - - Up to last - Até o último - - - - Up to first - Até o primeiro - - - - Size: - Tamanho: - - - - TaskHoleParameters - Parâmetros do TaskHole - - - - PartDesignGui::TaskPadParameters - - - Form - Forma - - - - Type - - - - - Length - Comprimento - - - - Symmetric to plane - - - - - 2nd length - - - - - - Face - - - - Type: - Tipo: - - - - - Dimension - Dimensão - - - Length: - Comprimento: - - - Mirrored extent - Extensão espelhada - - - - Reversed - Invertido - - - Display mode: - Modo de exibição: - - - Plot mode: - Modo de plotagem: - - - Point size: - Tamanho de ponto: - - - Line width: - Largura da linha: - - - Transparency: - Transparência: - - - TaskPadParameters - Parametros do TaskPad - - - - Pad parameters - Parâmetros do Pad - - - - No face selected - - - - - To last - - - - - To first - - - - - Up to face - - - - - Two dimensions - - - - - PartDesignGui::TaskPatternRectangularParameters - - - Form - Forma - - - - Spacing1: - Espaço1: - - - - Number1: - Número1: - - - - Second extend - Segunda extensão - - - - Spacing2: - Espaço2: - - - - Number2: - Numero2: - - - - TaskPatternRectangularParameters - TaskPatternRectangularParameters - - - - PartDesignGui::TaskPocketParameters - - - Form - Forma - - - Type: - Tipo: - - - - Type - - - - - - Dimension - Dimensão - - - - - Face - - - - - Length - Comprimento - - - - Pocket parameters - Parâmetros do bolso - - - - To last - - - - - To first - - - - - Through all - - - - - Up to face - - - - - No face selected - - - - - PartDesignGui::TaskRevolutionParameters - - - Form - Forma - - - - Axis: - Eixo: - - - - Vertical sketch axis - - - - - Horizontal sketch axis - - - - - Symmetric to plane - - - - - Reversed - Invertido - - - Vertical - Vertical - - - Horizontal - Horizontal - - - - Angle: - Ângulo: - - - - Revolution parameters - Parâmetros de revolução - - - - QObject - - - - - - - - - - - - - - - - - - - - Wrong selection - Seleção errada - - - - - - - Select a sketch or 2D object. - Selecione um desenho ou objeto 2D. - - - - - - - The shape of the selected object is empty. - A forma do objeto selecionado está vazia. - - - - - - - The shape of the selected object is not a wire. - A forma do objeto selecionado não é um fio. - - - - - Select an edge, face or body. Only one body is allowed. - Selecione uma aresta, face ou corpo. Apenas um corpo é permitido. - - - - - Wrong object type - Tipo de objeto errado - - - - Fillet works only on parts - Filete só funciona em partes - - - - Shape of selected Part is empty - - - - - No fillet possible on selected faces/edges - - - - - Chamfer works only on parts - - - - - Shape of selected part is empty - - - - - No chamfer possible on selected faces/edges - - - - - No Support - Sem suporte - - - - The sketch has to have a support for the pocket feature. -Create the sketch on a face. - O esboço tem que ter um suporte para fazer um Pocket. Crie o esboço em cima de uma face. - - - - Edit pad - Editar pad - - - - - - Edit pocket - Editar o bolso - - - - - - - - - A dialog is already open in the task panel - Uma caixa de diálogo já está aberta no painel de tarefas - - - - - - - - - Do you want to close this dialog? - Deseja fechar este diálogo? - - - - Edit revolution - Editar revolução - - - - Edit Groove - - - - - Workbench - - - Part Design - Part Design - - - diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ro.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ro.qm new file mode 100644 index 000000000..7579df4c0 Binary files /dev/null and b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ro.qm differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ro.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ro.ts new file mode 100644 index 000000000..7a9ec1bca --- /dev/null +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ro.ts @@ -0,0 +1,646 @@ + + + + + CmdPartDesignChamfer + + Part + Componentă + + + Chamfer... + Chamfer... + + + + PartDesign + Design Componente + + + Chamfer + Teşitură + + + Chamfer the selected edges of a shape + Definiţi teşirea muchiilor selectate ale formei + + + + CmdPartDesignFillet + + PartDesign + Design Componente + + + Fillet + Rotunjire + + + Make a fillet on an edge, face or body + Creeaza o rotunjire pe o muchie, fata sau corp + + + + CmdPartDesignGroove + + PartDesign + Design Componente + + + Groove + Canelură + + + Groove a selected sketch + Creează o canelură pentru schiţa selectată + + + + CmdPartDesignPad + + PartDesign + Design Componente + + + Pad + Pad + + + Pad a selected sketch + Formeaza o schita + + + + CmdPartDesignPocket + + PartDesign + Design Componente + + + Pocket + Buzunar + + + create a pocket with the selected sketch + creaţi un buzunar cu schiţa selectată + + + + CmdPartDesignRevolution + + PartDesign + Design Componente + + + Revolution + Revoluţie + + + Revolve a selected sketch + Rotiţi o schiţă selectată + + + + Gui::TaskView::TaskWatcherCommands + + + Face tools + Instrumente pentru feţe + + + Sketch tools + Instrumente pentru schiţe + + + Create Geometry + Creează componente geometrice + + + + PartDesignGui::ChamferWidget + + Edges to chamfer + Edges to chamfer + + + Start distance + Start distance + + + End distance + End distance + + + Edge%1 + Edge%1 + + + Distance + Distance + + + No shape selected + No shape selected + + + No valid shape is selected. +Please select a valid shape in the drop-down box first. + No valid shape is selected. +Please select a valid shape in the drop-down box first. + + + No edge selected + No edge selected + + + No edge entity is checked to chamfer. +Please check one or more edge entities first. + No edge entity is checked to chamfer. +Please check one or more edge entities first. + + + + PartDesignGui::TaskChamfer + + Chamfer Edges + Chamfer Edges + + + Shape + Forma + + + Selected shape: + Selected shape: + + + No selection + Nici o selecţie + + + Chamfer Parameter + Chamfer Parameter + + + All + All + + + None + Niciunul + + + Chamfer type: + Chamfer type: + + + Constant Distance + Constant Distance + + + Variable Distance + Variable Distance + + + Distance: + Distance: + + + + PartDesignGui::TaskChamferParameters + + + Form + Formular + + + Size: + Dimensiune: + + + + Chamfer parameters + Parametrii teşiturii + + + + PartDesignGui::TaskDlgPadParameters + + + Input error + Eroare de intrare + + + + PartDesignGui::TaskFilletParameters + + + Form + Formular + + + Radius: + Radius: + + + + Fillet parameters + Parametrii de rotunjire + + + + PartDesignGui::TaskGrooveParameters + + + Form + Formular + + + Axis: + Axa: + + + Vertical sketch axis + Axa verticală a schiţei + + + Horizontal sketch axis + Axa orizontală a schiţei + + + Angle: + Unghiul: + + + Symmetric to plane + Simetric față de plan + + + Reversed + Inversat + + + + Groove parameters + Parametrii canelurii + + + + PartDesignGui::TaskHoleParameters + + + Form + Formular + + + Type: + Tip: + + + Dimension + Dimensiune + + + Up to last + Până la ultimul + + + Up to first + Până la primul + + + Size: + Dimensiune: + + + + TaskHoleParameters + TaskHoleParameters + + + + PartDesignGui::TaskPadParameters + + + Form + Formular + + + Type + Tip + + + Length + Lungime + + + Symmetric to plane + Simetric față de plan + + + 2nd length + A doua lungime + + + Face + Faţă + + + Type: + Tip: + + + Dimension + Dimensiune + + + Length: + Lungime: + + + Mirrored extent + Mirrored extent + + + Reversed + Inversat + + + Display mode: + Stil afișare: + + + Plot mode: + Stil tipărire: + + + Point size: + Mărimea punctului: + + + Line width: + Lăţime linie: + + + Transparency: + Transparență: + + + TaskPadParameters + Parametri task pad + + + + Pad parameters + Parametrii pad + + + No face selected + Nici o faţă selectată + + + To last + Spre ultimul + + + To first + Spre primul + + + Up to face + Până la față + + + Two dimensions + Două dimensiuni + + + + PartDesignGui::TaskPatternRectangularParameters + + + Form + Formular + + + Spacing1: + Spaţierea1: + + + Number1: + Numărul1: + + + Second extend + A doua extindere + + + Spacing2: + Spaţierea2: + + + Number2: + Numărul2: + + + + TaskPatternRectangularParameters + TaskPatternRectangularParameters + + + + PartDesignGui::TaskPocketParameters + + + Form + Formular + + + Type: + Tip: + + + Type + Tip + + + Dimension + Dimensiune + + + Face + Faţă + + + Length + Lungime + + + + Pocket parameters + Parametrii buzunarului + + + To last + Spre ultimul + + + To first + Spre primul + + + Through all + Prin toate + + + Up to face + Până la față + + + No face selected + Nici o faţă selectată + + + + PartDesignGui::TaskRevolutionParameters + + + Form + Formular + + + Axis: + Axa: + + + Vertical sketch axis + Axa verticală a schiţei + + + Horizontal sketch axis + Axa orizontală a schiţei + + + Symmetric to plane + Simetric față de plan + + + Reversed + Inversat + + + Vertical + Vertical + + + Horizontal + Horizontal + + + Angle: + Unghiul: + + + + Revolution parameters + Parametrii de revoluţie + + + + QObject + + + Wrong selection + Selecție greșită + + + Select a sketch or 2D object. + Selectaţi o schiţă sau un obiect 2D. + + + The shape of the selected object is empty. + Forma obiectul selectat este gol. + + + The shape of the selected object is not a wire. + Forma obiectului selectat nu este un fir. + + + Select an edge, face or body. Only one body is allowed. + Selecteaza o muchie, fata sau corp. Este permis doar un singur corp. + + + Wrong object type + Tip de obiect greşit + + + Fillet works only on parts + Rotunjirea e posibila numai pentru componente + + + Shape of selected Part is empty + Forma Componentei selectate este goală + + + No fillet possible on selected faces/edges + Rotunjirea feţelor/muchiilor selectate nu este posibilă + + + Chamfer works only on parts + Teşirea funcţionează numai pentru componente + + + Shape of selected part is empty + Forma componentei selectate este goală + + + No chamfer possible on selected faces/edges + Teşirea feţelor/muchiilor selectate nu este posibilă + + + No Support + Fără Suport + + + The sketch has to have a support for the pocket feature. +Create the sketch on a face. + Schiţa trebuie să aibă un suport pentru componenta buzunar. Creaţi schiţa pe o faţă. + + + + Edit pad + Pad de editare + + + + Edit pocket + Editare de buzunar + + + A dialog is already open in the task panel + A dialog is already open in the task panel + + + Do you want to close this dialog? + Do you want to close this dialog? + + + + Edit revolution + Editare revoluţie + + + + Edit Groove + Editare Canelură + + + + Workbench + + + Part Design + Design componente + + + diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ru.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ru.qm index 9675240c1..613c74414 100644 Binary files a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ru.qm and b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ru.qm differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ru.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ru.ts index 99629b12d..0defd4eb0 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ru.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ru.ts @@ -1,769 +1,646 @@ - - + + CmdPartDesignChamfer - Part - Деталь + Part + Деталь - Chamfer... - Фаска... + Chamfer... + Фаска... - - PartDesign - PartDesign + + PartDesign + Проектирование детали - - Chamfer - + Chamfer + Фаска - - Chamfer the selected edges of a shape - Притупитьт фаской выбранные края фигуры + Chamfer the selected edges of a shape + Притупитьт фаской выбранные края фигуры - - + + CmdPartDesignFillet - - PartDesign - PartDesign + PartDesign + Проектирование детали - - Fillet - Скругление + Fillet + Скругление - - Make a fillet on an edge, face or body - Сделать скругление кромки, поверхности или тела + Make a fillet on an edge, face or body + Сделать скругление кромки, поверхности или тела - - + + CmdPartDesignGroove - - PartDesign - PartDesign + PartDesign + Проектирование детали - - Groove - + Groove + Паз - - Groove a selected sketch - + Groove a selected sketch + Groove a selected sketch - - + + CmdPartDesignPad - - PartDesign - PartDesign + PartDesign + Проектирование детали - - Pad - Заполнитель + Pad + Заполнитель - - Pad a selected sketch - Заполнитель выбранного эскиза + Pad a selected sketch + Заполнитель выбранного эскиза - - + + CmdPartDesignPocket - - PartDesign - PartDesign + PartDesign + Проектирование детали - - Pocket - Документ + Pocket + Карман - - create a pocket with the selected sketch - создать документ с выбранным эскизом + create a pocket with the selected sketch + создать карман с выбранным эскизом - - + + CmdPartDesignRevolution - - PartDesign - PartDesign + PartDesign + Проектирование детали - - Revolution - Вращение + Revolution + Вращение - - Revolve a selected sketch - Вращать, выбранный эскиз + Revolve a selected sketch + Вращать, выбранный эскиз - - + + Gui::TaskView::TaskWatcherCommands - - Face tools - Инструменты редактирования граней + + Face tools + Инструменты редактирования граней - - Sketch tools - Инструменты эскиза + Sketch tools + Инструменты эскиза - - Create Geometry - Создайте геометрию + Create Geometry + Создайте геометрию - - + + PartDesignGui::ChamferWidget - Edges to chamfer - Края среза + Edges to chamfer + Ребра для выполнения фаски - Start distance - Начало расстояния + Start distance + Начало расстояния - End distance - Конец расстояния + End distance + Конечное расстояние - Edge%1 - Край %1 + Edge%1 + Край %1 - Distance - Расстояние + Distance + Расстояние - No shape selected - Форма не выбрана + No shape selected + Форма не выбрана - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - Допустимая форма не выбрана. + Допустимая форма не выбрана. Пожалуйста сначала выберите допустимую форму в выпадающем списке. - No edge selected - Ребра не выбраны + No edge selected + Ребра не выбраны - No edge entity is checked to chamfer. + No edge entity is checked to chamfer. Please check one or more edge entities first. - Нельзя сгладить край обьекта. Пожалуйста, выберите края обьекта, один или более. + Нельзя сгладить край обьекта. Пожалуйста, выберите края обьекта, один или более. - - + + PartDesignGui::TaskChamfer - Chamfer Edges - Притупить ребра фаской + Chamfer Edges + Притупить ребра фаской - Shape - Форма + Shape + Форма - Selected shape: - Выбранные формы: + Selected shape: + Выбранные формы: - No selection - Нет выбора + No selection + Нет выбора - Chamfer Parameter - Параметры фаски + Chamfer Parameter + Параметры фаски - All - Все + All + Все - None - Ничего + None + Ничего - Chamfer type: - Тип фаски: + Chamfer type: + Тип фаски: - Constant Distance - Постоянное расстояние + Constant Distance + Постоянное расстояние - Variable Distance - Переменное расстояние + Variable Distance + Переменное расстояние - Distance: - Расстояние: + Distance: + Расстояние: - - + + PartDesignGui::TaskChamferParameters - - Form - Форма + + Form + Форма - - Size: - Размер: + Size: + Размер: - - Chamfer parameters - + + Chamfer parameters + Параметры фаски - - + + PartDesignGui::TaskDlgPadParameters - - Input error - Input error + + Input error + Ошибка ввода - - + + PartDesignGui::TaskFilletParameters - - Form - Форма + + Form + Форма - - Radius: - Радиус: + Radius: + Радиус: - - Fillet parameters - Fillet parameters + + Fillet parameters + Параметры скругления - - + + PartDesignGui::TaskGrooveParameters - - Form - Форма + + Form + Форма - - Axis: - Оси: + Axis: + Оси: - - Vertical sketch axis - + Vertical sketch axis + Вертикальная ось эскиза - - Horizontal sketch axis - + Horizontal sketch axis + Горизонтальная ось эскиза - - Angle: - Угол: + Angle: + Угол: - - Symmetric to plane - + Symmetric to plane + Symmetric to plane - - Reversed - Reversed + Reversed + Reversed - - Groove parameters - + + Groove parameters + Groove parameters - - + + PartDesignGui::TaskHoleParameters - - Form - Форма + + Form + Форма - - Type: - Тип: + Type: + Тип: - - Dimension - Размер + Dimension + Размер - - Up to last - До последнего + Up to last + До последнего - - Up to first - До первого + Up to first + До первого - - Size: - Размер: + Size: + Размер: - - TaskHoleParameters - TaskHoleParameters + + TaskHoleParameters + TaskHoleParameters - - + + PartDesignGui::TaskPadParameters - - Form - Форма + + Form + Форма - - Type - + Type + Тип - - Length - Length + Length + Длина - - Symmetric to plane - + Symmetric to plane + Symmetric to plane - - 2nd length - + 2nd length + Вторая длина - - - Face - + Face + Поверхность - Type: - Тип: + Type: + Тип: - - - Dimension - Размер + Dimension + Размер - Length: - Длина: + Length: + Длина: - Mirrored extent - Mirrored extent + Mirrored extent + Mirrored extent - - Reversed - Reversed + Reversed + Reversed - Display mode: - Режим отображения: + Display mode: + Режим отображения: - Plot mode: - Режим вывода на печать: + Plot mode: + Режим вывода на печать: - Point size: - Размер точки: + Point size: + Размер точки: - Line width: - Толщина линии: + Line width: + Толщина линии: - Transparency: - Прозрачность: + Transparency: + Прозрачность: - TaskPadParameters - TaskPadParameters + TaskPadParameters + TaskPadParameters - - Pad parameters - Параметры панели + + Pad parameters + Параметры панели - - No face selected - + No face selected + Поверхность не выбрана - - To last - + To last + К последнему - - To first - + To first + К первому - - Up to face - + Up to face + До грани - - Two dimensions - + Two dimensions + Two dimensions - - + + PartDesignGui::TaskPatternRectangularParameters - - Form - Форма + + Form + Форма - - Spacing1: - Spacing1: + Spacing1: + Spacing1: - - Number1: - Number1: + Number1: + Number1: - - Second extend - Second extend + Second extend + Second extend - - Spacing2: - Spacing2: + Spacing2: + Spacing2: - - Number2: - Number2: + Number2: + Number2: - - TaskPatternRectangularParameters - TaskPatternRectangularParameters + + TaskPatternRectangularParameters + TaskPatternRectangularParameters - - + + PartDesignGui::TaskPocketParameters - - Form - Форма + + Form + Форма - Type: - Тип: + Type: + Тип: - - Type - + Type + Тип - - - Dimension - Размер + Dimension + Размер - - - Face - + Face + Поверхность - - Length - Length + Length + Длина - - Pocket parameters - Pocket parameters + + Pocket parameters + Параметры кармана - - To last - + To last + К последнему - - To first - + To first + К первому - - Through all - + Through all + Через все - - Up to face - + Up to face + До грани - - No face selected - + No face selected + Поверхность не выбрана - - + + PartDesignGui::TaskRevolutionParameters - - Form - Форма + + Form + Форма - - Axis: - Оси: + Axis: + Оси: - - Vertical sketch axis - + Vertical sketch axis + Вертикальная ось эскиза - - Horizontal sketch axis - + Horizontal sketch axis + Горизонтальная ось эскиза - - Symmetric to plane - + Symmetric to plane + Symmetric to plane - - Reversed - Reversed + Reversed + Reversed - Vertical - Vertical + Vertical + По вертикали - Horizontal - Horizontal + Horizontal + По горизонтали - - Angle: - Угол: + Angle: + Угол: - - Revolution parameters - Revolution parameters + + Revolution parameters + Параметры вращения - - + + QObject - - - - - - - - - - - - - - - - - - - Wrong selection - Неправильный выбор + + Wrong selection + Неправильный выбор - - - - - Select a sketch or 2D object. - Выберите эскиз или 2D объект. + Select a sketch or 2D object. + Выберите эскиз или 2D объект. - - - - - The shape of the selected object is empty. - Форма выбранного объекта пуста. + The shape of the selected object is empty. + Форма выбранного объекта пуста. - - - - - The shape of the selected object is not a wire. - Форма выбранного объекта не проволока. + The shape of the selected object is not a wire. + Форма выбранного объекта не проволока. - - - Select an edge, face or body. Only one body is allowed. - Выберите ребро, поверхность или тело. Допускается выбирать только одно тело. + Select an edge, face or body. Only one body is allowed. + Выберите ребро, поверхность или тело. Допускается выбирать только одно тело. - - - Wrong object type - Неверный тип объекта + Wrong object type + Неверный тип объекта - - Fillet works only on parts - Скругление работает только для деталей + Fillet works only on parts + Скругление работает только для деталей - - Shape of selected Part is empty - + Shape of selected Part is empty + Shape of selected Part is empty - - No fillet possible on selected faces/edges - + No fillet possible on selected faces/edges + No fillet possible on selected faces/edges - - Chamfer works only on parts - + Chamfer works only on parts + Chamfer works only on parts - - Shape of selected part is empty - + Shape of selected part is empty + Shape of selected part is empty - - No chamfer possible on selected faces/edges - + No chamfer possible on selected faces/edges + No chamfer possible on selected faces/edges - - No Support - Не поддерживается + No Support + Не поддерживается - - The sketch has to have a support for the pocket feature. + The sketch has to have a support for the pocket feature. Create the sketch on a face. - Эскиз должен иметь основу для создания кармана. + Эскиз должен иметь основу для создания кармана. Создайте эскиз на лицевой стороне тела. - - Edit pad - Edit pad + + Edit pad + Edit pad - - - - Edit pocket - Edit pocket + + Edit pocket + Редактировать карман - - - - - - - A dialog is already open in the task panel - Диалог уже открыт в панели задач + A dialog is already open in the task panel + Диалог уже открыт в панели задач - - - - - - - Do you want to close this dialog? - Вы хотите закрыть этот диалог? + Do you want to close this dialog? + Вы хотите закрыть этот диалог? - - Edit revolution - Edit revolution + + Edit revolution + Изменить вращение - - Edit Groove - + + Edit Groove + Edit Groove - - + + Workbench - - Part Design - Дизайн части + + Part Design + Проектирование детали - + diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_se.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_se.qm deleted file mode 100644 index 19d5b2c8a..000000000 Binary files a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_se.qm and /dev/null differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_se.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_se.ts deleted file mode 100644 index 3e1244c5f..000000000 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_se.ts +++ /dev/null @@ -1,769 +0,0 @@ - - - - - CmdPartDesignChamfer - - Part - Del - - - Chamfer... - Avfasning... - - - - PartDesign - Del design - - - - Chamfer - - - - - Chamfer the selected edges of a shape - Fasa de markerade kanterna av en form - - - - CmdPartDesignFillet - - - PartDesign - Del design - - - - Fillet - Avrundning - - - - Make a fillet on an edge, face or body - Gör en avrundning på en kant, yta eller kropp - - - - CmdPartDesignGroove - - - PartDesign - Del design - - - - Groove - - - - - Groove a selected sketch - - - - - CmdPartDesignPad - - - PartDesign - Del design - - - - Pad - Solidifiera - - - - Pad a selected sketch - Solidifiera en vald skiss - - - - CmdPartDesignPocket - - - PartDesign - Del design - - - - Pocket - Ficka - - - - create a pocket with the selected sketch - skapa en ficka med den valda skissen - - - - CmdPartDesignRevolution - - - PartDesign - Del design - - - - Revolution - Varv - - - - Revolve a selected sketch - Rotera en vald skiss - - - - Gui::TaskView::TaskWatcherCommands - - - Face tools - Ytverktyg - - - - Sketch tools - Skissverktyg - - - - Create Geometry - Skapa Geometri - - - - PartDesignGui::ChamferWidget - - Edges to chamfer - Kanter att fasa - - - Start distance - Startavstånd - - - End distance - Slutavstånd - - - Edge%1 - Kant%1 - - - Distance - Distans - - - No shape selected - Ingen form som har valts - - - No valid shape is selected. -Please select a valid shape in the drop-down box first. - Ingen giltig form är markerad. -Välj en giltig form i listrutan först. - - - No edge selected - Ingen kant vald - - - No edge entity is checked to chamfer. -Please check one or more edge entities first. - Ingen kant är vald för fasning -Välj en eller fler kanter först. - - - - PartDesignGui::TaskChamfer - - Chamfer Edges - Fasa Kanter - - - Shape - Form - - - Selected shape: - Vald form: - - - No selection - Inget val - - - Chamfer Parameter - Fasnings Parameter - - - All - Alla - - - None - Ingen - - - Chamfer type: - Fasningstyp: - - - Constant Distance - Konstant avstånd - - - Variable Distance - Variabelt avstånd - - - Distance: - Distans: - - - - PartDesignGui::TaskChamferParameters - - - Form - Form - - - - Size: - Storlek: - - - - Chamfer parameters - - - - - PartDesignGui::TaskDlgPadParameters - - - Input error - Input error - - - - PartDesignGui::TaskFilletParameters - - - Form - Form - - - - Radius: - Radie: - - - - Fillet parameters - Fillet parameters - - - - PartDesignGui::TaskGrooveParameters - - - Form - Form - - - - Axis: - Axel: - - - - Vertical sketch axis - - - - - Horizontal sketch axis - - - - - Angle: - Vinkel: - - - - Symmetric to plane - - - - - Reversed - Omvänd - - - - Groove parameters - - - - - PartDesignGui::TaskHoleParameters - - - Form - Form - - - - Type: - Typ: - - - - Dimension - Dimension - - - - Up to last - Upp till sista - - - - Up to first - Fram till första - - - - Size: - Storlek: - - - - TaskHoleParameters - TaskHoleParameters - - - - PartDesignGui::TaskPadParameters - - - Form - Form - - - - Type - - - - - Length - Length - - - - Symmetric to plane - - - - - 2nd length - - - - - - Face - - - - Type: - Typ: - - - - - Dimension - Dimension - - - Length: - Längd: - - - Mirrored extent - Speglad utsträckning - - - - Reversed - Omvänd - - - Display mode: - Visningsläge: - - - Plot mode: - Plottningsläge: - - - Point size: - Punktstorlek: - - - Line width: - Linjebredd: - - - Transparency: - Transparens: - - - TaskPadParameters - Parametrar för uppgiften Solidifiera - - - - Pad parameters - Pad parametrar - - - - No face selected - - - - - To last - - - - - To first - - - - - Up to face - - - - - Two dimensions - - - - - PartDesignGui::TaskPatternRectangularParameters - - - Form - Form - - - - Spacing1: - Mellanrum1: - - - - Number1: - Tal1: - - - - Second extend - Andra förlängning - - - - Spacing2: - Mellanrum2: - - - - Number2: - Nummer2: - - - - TaskPatternRectangularParameters - TaskPatternRectangularParameters - - - - PartDesignGui::TaskPocketParameters - - - Form - Form - - - Type: - Typ: - - - - Type - - - - - - Dimension - Dimension - - - - - Face - - - - - Length - Length - - - - Pocket parameters - Pocket parameters - - - - To last - - - - - To first - - - - - Through all - - - - - Up to face - - - - - No face selected - - - - - PartDesignGui::TaskRevolutionParameters - - - Form - Form - - - - Axis: - Axel: - - - - Vertical sketch axis - - - - - Horizontal sketch axis - - - - - Symmetric to plane - - - - - Reversed - Omvänd - - - Vertical - Vertical - - - Horizontal - Horizontal - - - - Angle: - Vinkel: - - - - Revolution parameters - Revolution parameters - - - - QObject - - - - - - - - - - - - - - - - - - - - Wrong selection - Fel val - - - - - - - Select a sketch or 2D object. - Välj en skiss eller 2D-objekt. - - - - - - - The shape of the selected object is empty. - Formen på det markerade objektet är tom. - - - - - - - The shape of the selected object is not a wire. - Formen på det markerade objektet är inte en tråd. - - - - - Select an edge, face or body. Only one body is allowed. - Välj en kant, yta eller kropp. Endast en kropp är tillåten. - - - - - Wrong object type - Fel objekttyp - - - - Fillet works only on parts - Avrundning fungerar endast på Delar - - - - Shape of selected Part is empty - - - - - No fillet possible on selected faces/edges - - - - - Chamfer works only on parts - - - - - Shape of selected part is empty - - - - - No chamfer possible on selected faces/edges - - - - - No Support - Inget stöd - - - - The sketch has to have a support for the pocket feature. -Create the sketch on a face. - Skissen måste ha ett stöd för fickfunktionen. Skapa en skiss på en yta. - - - - Edit pad - Redigera pad - - - - - - Edit pocket - Edit pocket - - - - - - - - - A dialog is already open in the task panel - En dialogruta är redan öppen i uppgiftspanelen - - - - - - - - - Do you want to close this dialog? - Vill du stänga denna dialogruta? - - - - Edit revolution - Edit revolution - - - - Edit Groove - - - - - Workbench - - - Part Design - Del Design - - - diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sk.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sk.qm new file mode 100644 index 000000000..ad99ad853 Binary files /dev/null and b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sk.qm differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sk.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sk.ts new file mode 100644 index 000000000..8d21314d6 --- /dev/null +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sk.ts @@ -0,0 +1,646 @@ + + + + + CmdPartDesignChamfer + + Part + Časť + + + Chamfer... + Chamfer... + + + + PartDesign + PartDesign + + + Chamfer + Chamfer + + + Chamfer the selected edges of a shape + Chamfer the selected edges of a shape + + + + CmdPartDesignFillet + + PartDesign + PartDesign + + + Fillet + Fillet + + + Make a fillet on an edge, face or body + Vytvorí zaoblenie na hrane, ploche nebo telese + + + + CmdPartDesignGroove + + PartDesign + PartDesign + + + Groove + Groove + + + Groove a selected sketch + Groove a selected sketch + + + + CmdPartDesignPad + + PartDesign + PartDesign + + + Pad + Pad + + + Pad a selected sketch + Pad a selected sketch + + + + CmdPartDesignPocket + + PartDesign + PartDesign + + + Pocket + Pocket + + + create a pocket with the selected sketch + create a pocket with the selected sketch + + + + CmdPartDesignRevolution + + PartDesign + PartDesign + + + Revolution + Revolúcia + + + Revolve a selected sketch + Orotuj označený náčrt + + + + Gui::TaskView::TaskWatcherCommands + + + Face tools + Nástroje plochy + + + Sketch tools + Nástroje náčrtu + + + Create Geometry + Vytvor Geometriu + + + + PartDesignGui::ChamferWidget + + Edges to chamfer + Hrany na skosenie + + + Start distance + Začiatok vzdialenosti + + + End distance + Koniec vzdialenosti + + + Edge%1 + Okraj %1 + + + Distance + Vzdialenosť + + + No shape selected + Nie je vybratý tvar + + + No valid shape is selected. +Please select a valid shape in the drop-down box first. + Nie sú vybrané žiadne platné tvary. +Najskôr prosím vyberte platný tvar v rozbaľovacom poli. + + + No edge selected + Nie je vybraná žiadna hrana + + + No edge entity is checked to chamfer. +Please check one or more edge entities first. + No edge entity is checked to chamfer. +Please check one or more edge entities first. + + + + PartDesignGui::TaskChamfer + + Chamfer Edges + Chamfer Edges + + + Shape + Tvar + + + Selected shape: + Vybratý tvar: + + + No selection + bez výberu + + + Chamfer Parameter + Chamfer Parameter + + + All + Všetky + + + None + Žiadny + + + Chamfer type: + Chamfer type: + + + Constant Distance + Konštantný rozmer + + + Variable Distance + Variabilný rozmer + + + Distance: + Vzdialenosť: + + + + PartDesignGui::TaskChamferParameters + + + Form + Forma + + + Size: + Veľkosť: + + + + Chamfer parameters + Chamfer parameters + + + + PartDesignGui::TaskDlgPadParameters + + + Input error + Vstupná chyba + + + + PartDesignGui::TaskFilletParameters + + + Form + Forma + + + Radius: + Polomer: + + + + Fillet parameters + Zaoblenie parametrov + + + + PartDesignGui::TaskGrooveParameters + + + Form + Forma + + + Axis: + Os: + + + Vertical sketch axis + Vertical sketch axis + + + Horizontal sketch axis + Horizontal sketch axis + + + Angle: + Uhol: + + + Symmetric to plane + Symmetric to plane + + + Reversed + Reversed + + + + Groove parameters + Groove parameters + + + + PartDesignGui::TaskHoleParameters + + + Form + Forma + + + Type: + Typ: + + + Dimension + Kóta + + + Up to last + Až po posledný + + + Up to first + Up to first + + + Size: + Veľkosť: + + + + TaskHoleParameters + TaskHoleParameters + + + + PartDesignGui::TaskPadParameters + + + Form + Forma + + + Type + Typ + + + Length + Dĺžka + + + Symmetric to plane + Symmetric to plane + + + 2nd length + 2nd length + + + Face + Face + + + Type: + Typ: + + + Dimension + Kóta + + + Length: + Dĺžka: + + + Mirrored extent + Mirrored extent + + + Reversed + Reversed + + + Display mode: + Mód zobrazenia: + + + Plot mode: + Kresliaci mód: + + + Point size: + Veľkosť bodu: + + + Line width: + Šírka čiary: + + + Transparency: + Priesvitnosť: + + + TaskPadParameters + TaskPadParameters + + + + Pad parameters + PAD parametre + + + No face selected + No face selected + + + To last + To last + + + To first + To first + + + Up to face + Až po prednú stranu + + + Two dimensions + Two dimensions + + + + PartDesignGui::TaskPatternRectangularParameters + + + Form + Forma + + + Spacing1: + Spacing1: + + + Number1: + Číslo1: + + + Second extend + Druhé predĺženie + + + Spacing2: + Spacing2: + + + Number2: + Číslo2: + + + + TaskPatternRectangularParameters + TaskPatternRectangularParameters + + + + PartDesignGui::TaskPocketParameters + + + Form + Forma + + + Type: + Typ: + + + Type + Typ + + + Dimension + Kóta + + + Face + Face + + + Length + Dĺžka + + + + Pocket parameters + Pocket parametre + + + To last + To last + + + To first + To first + + + Through all + Through all + + + Up to face + Až po prednú stranu + + + No face selected + No face selected + + + + PartDesignGui::TaskRevolutionParameters + + + Form + Forma + + + Axis: + Os: + + + Vertical sketch axis + Vertical sketch axis + + + Horizontal sketch axis + Horizontal sketch axis + + + Symmetric to plane + Symmetric to plane + + + Reversed + Reversed + + + Vertical + Zvislý + + + Horizontal + Horizontálne + + + Angle: + Uhol: + + + + Revolution parameters + Parametre orotovania + + + + QObject + + + Wrong selection + Chybný výber + + + Select a sketch or 2D object. + Vyberte skice alebo 2D objekt. + + + The shape of the selected object is empty. + The shape of the selected object is empty. + + + The shape of the selected object is not a wire. + The shape of the selected object is not a wire. + + + Select an edge, face or body. Only one body is allowed. + Vyber hranu, plochu nebo teleso. Je povolené len jedno teleso. + + + Wrong object type + Nesprávny typ objektu + + + Fillet works only on parts + Filet funguje iba na diely + + + Shape of selected Part is empty + Shape of selected Part is empty + + + No fillet possible on selected faces/edges + No fillet possible on selected faces/edges + + + Chamfer works only on parts + Chamfer works only on parts + + + Shape of selected part is empty + Shape of selected part is empty + + + No chamfer possible on selected faces/edges + No chamfer possible on selected faces/edges + + + No Support + Nepodporované + + + The sketch has to have a support for the pocket feature. +Create the sketch on a face. + Náčrt musí mať podklad pre vytvorenie kapsy. Vytvorte náčrt na ploche. + + + + Edit pad + Edit pad + + + + Edit pocket + Edit pocket + + + A dialog is already open in the task panel + Na paneli úloh je už dialóg otvorený + + + Do you want to close this dialog? + Chcete zatvoriť tento dialóg? + + + + Edit revolution + Edit revolution + + + + Edit Groove + Edit Groove + + + + Workbench + + + Part Design + Časť návrhu + + + diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sv-SE.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sv-SE.qm new file mode 100644 index 000000000..6016dd8c9 Binary files /dev/null and b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sv-SE.qm differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sv-SE.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sv-SE.ts new file mode 100644 index 000000000..fca211058 --- /dev/null +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sv-SE.ts @@ -0,0 +1,646 @@ + + + + + CmdPartDesignChamfer + + Part + Del + + + Chamfer... + Avfasning... + + + + PartDesign + Del design + + + Chamfer + Fasa + + + Chamfer the selected edges of a shape + Fasa de markerade kanterna av en form + + + + CmdPartDesignFillet + + PartDesign + Del design + + + Fillet + Avrundning + + + Make a fillet on an edge, face or body + Gör en avrundning på en kant, yta eller kropp + + + + CmdPartDesignGroove + + PartDesign + Del design + + + Groove + Groove + + + Groove a selected sketch + Groove a selected sketch + + + + CmdPartDesignPad + + PartDesign + Del design + + + Pad + Solidifiera + + + Pad a selected sketch + Solidifiera en vald skiss + + + + CmdPartDesignPocket + + PartDesign + Del design + + + Pocket + Ficka + + + create a pocket with the selected sketch + skapa en ficka med den valda skissen + + + + CmdPartDesignRevolution + + PartDesign + Del design + + + Revolution + Varv + + + Revolve a selected sketch + Rotera en vald skiss + + + + Gui::TaskView::TaskWatcherCommands + + + Face tools + Ytverktyg + + + Sketch tools + Skissverktyg + + + Create Geometry + Skapa Geometri + + + + PartDesignGui::ChamferWidget + + Edges to chamfer + Kanter att fasa + + + Start distance + Startavstånd + + + End distance + Slutavstånd + + + Edge%1 + Kant%1 + + + Distance + Distans + + + No shape selected + Ingen form som har valts + + + No valid shape is selected. +Please select a valid shape in the drop-down box first. + Ingen giltig form är markerad. +Välj en giltig form i listrutan först. + + + No edge selected + Ingen kant vald + + + No edge entity is checked to chamfer. +Please check one or more edge entities first. + Ingen kant är vald för fasning +Välj en eller fler kanter först. + + + + PartDesignGui::TaskChamfer + + Chamfer Edges + Fasa Kanter + + + Shape + Form + + + Selected shape: + Vald form: + + + No selection + Inget val + + + Chamfer Parameter + Fasnings Parameter + + + All + Alla + + + None + Ingen + + + Chamfer type: + Fasningstyp: + + + Constant Distance + Konstant avstånd + + + Variable Distance + Variabelt avstånd + + + Distance: + Distans: + + + + PartDesignGui::TaskChamferParameters + + + Form + Form + + + Size: + Storlek: + + + + Chamfer parameters + Fasparametrar + + + + PartDesignGui::TaskDlgPadParameters + + + Input error + Inmatningsfel + + + + PartDesignGui::TaskFilletParameters + + + Form + Form + + + Radius: + Radie: + + + + Fillet parameters + Fasningsparametrar + + + + PartDesignGui::TaskGrooveParameters + + + Form + Form + + + Axis: + Axel: + + + Vertical sketch axis + Vertikal skissaxel + + + Horizontal sketch axis + Horisontell skissaxel + + + Angle: + Vinkel: + + + Symmetric to plane + Symmetrisk till plan + + + Reversed + Omvänd + + + + Groove parameters + Groove parameters + + + + PartDesignGui::TaskHoleParameters + + + Form + Form + + + Type: + Typ: + + + Dimension + Dimension + + + Up to last + Upp till sista + + + Up to first + Fram till första + + + Size: + Storlek: + + + + TaskHoleParameters + TaskHoleParameters + + + + PartDesignGui::TaskPadParameters + + + Form + Form + + + Type + Typ + + + Length + Längd + + + Symmetric to plane + Symmetrisk till plan + + + 2nd length + 2:a längd + + + Face + Yta + + + Type: + Typ: + + + Dimension + Dimension + + + Length: + Längd: + + + Mirrored extent + Speglad utsträckning + + + Reversed + Omvänd + + + Display mode: + Visningsläge: + + + Plot mode: + Plottningsläge: + + + Point size: + Punktstorlek: + + + Line width: + Linjebredd: + + + Transparency: + Transparens: + + + TaskPadParameters + Parametrar för uppgiften Solidifiera + + + + Pad parameters + Pad parametrar + + + No face selected + Inget yta vald + + + To last + Till sista + + + To first + Till första + + + Up to face + Upp till yta + + + Two dimensions + Två dimensioner + + + + PartDesignGui::TaskPatternRectangularParameters + + + Form + Form + + + Spacing1: + Mellanrum1: + + + Number1: + Tal1: + + + Second extend + Andra förlängning + + + Spacing2: + Mellanrum2: + + + Number2: + Nummer2: + + + + TaskPatternRectangularParameters + TaskPatternRectangularParameters + + + + PartDesignGui::TaskPocketParameters + + + Form + Form + + + Type: + Typ: + + + Type + Typ + + + Dimension + Dimension + + + Face + Yta + + + Length + Längd + + + + Pocket parameters + Fickparametrar + + + To last + Till sista + + + To first + Till första + + + Through all + Genom alla + + + Up to face + Upp till yta + + + No face selected + Inget yta vald + + + + PartDesignGui::TaskRevolutionParameters + + + Form + Form + + + Axis: + Axel: + + + Vertical sketch axis + Vertikal skissaxel + + + Horizontal sketch axis + Horisontell skissaxel + + + Symmetric to plane + Symmetrisk till plan + + + Reversed + Omvänd + + + Vertical + Lodrät + + + Horizontal + Horisontell + + + Angle: + Vinkel: + + + + Revolution parameters + Vridningsparametrar + + + + QObject + + + Wrong selection + Fel val + + + Select a sketch or 2D object. + Välj en skiss eller 2D-objekt. + + + The shape of the selected object is empty. + Formen på det markerade objektet är tom. + + + The shape of the selected object is not a wire. + Formen på det markerade objektet är inte en tråd. + + + Select an edge, face or body. Only one body is allowed. + Välj en kant, yta eller kropp. Endast en kropp är tillåten. + + + Wrong object type + Fel objekttyp + + + Fillet works only on parts + Avrundning fungerar endast på Delar + + + Shape of selected Part is empty + Shape of selected Part is empty + + + No fillet possible on selected faces/edges + Ingen avrundning möjlig på valda ytor/kanter + + + Chamfer works only on parts + Fasning fungerar endast på delar + + + Shape of selected part is empty + Form på den markerade delen är tom + + + No chamfer possible on selected faces/edges + Ingen fasning möjlig på valda ytor/kanter + + + No Support + Inget stöd + + + The sketch has to have a support for the pocket feature. +Create the sketch on a face. + Skissen måste ha ett stöd för fickfunktionen. Skapa en skiss på en yta. + + + + Edit pad + Redigera pad + + + + Edit pocket + Redigera ficka + + + A dialog is already open in the task panel + En dialogruta är redan öppen i uppgiftspanelen + + + Do you want to close this dialog? + Vill du stänga denna dialogruta? + + + + Edit revolution + Redigera vridning + + + + Edit Groove + Edit Groove + + + + Workbench + + + Part Design + Del Design + + + diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_tr.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_tr.qm new file mode 100644 index 000000000..2ccfb9999 Binary files /dev/null and b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_tr.qm differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_tr.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_tr.ts new file mode 100644 index 000000000..1fbc7a7ef --- /dev/null +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_tr.ts @@ -0,0 +1,647 @@ + + + + + CmdPartDesignChamfer + + Part + Parça + + + Chamfer... + Chamfer... + + + + PartDesign + ParçaTasarımı + + + Chamfer + Chamfer + + + Chamfer the selected edges of a shape + Chamfer the selected edges of a shape + + + + CmdPartDesignFillet + + PartDesign + ParçaTasarımı + + + Fillet + Fillet + + + Make a fillet on an edge, face or body + Make a fillet on an edge, face or body + + + + CmdPartDesignGroove + + PartDesign + ParçaTasarımı + + + Groove + Groove + + + Groove a selected sketch + Groove a selected sketch + + + + CmdPartDesignPad + + PartDesign + ParçaTasarımı + + + Pad + Pad + + + Pad a selected sketch + Pad a selected sketch + + + + CmdPartDesignPocket + + PartDesign + ParçaTasarımı + + + Pocket + Cep + + + create a pocket with the selected sketch + Seçilmiş taslak ile bir cep oluştur + + + + CmdPartDesignRevolution + + PartDesign + ParçaTasarımı + + + Revolution + Döndürme + + + Revolve a selected sketch + Seçili bir çizimi döndür + + + + Gui::TaskView::TaskWatcherCommands + + + Face tools + Yüz araçları + + + Sketch tools + Çizim araçları + + + Create Geometry + Geometri oluştur + + + + PartDesignGui::ChamferWidget + + Edges to chamfer + Edges to chamfer + + + Start distance + Başlangıç uzaklığı + + + End distance + Bitiş uzaklığı + + + Edge%1 + Kenar%1 + + + Distance + Uzaklık + + + No shape selected + Hiçbir şekil seçilmedi + + + No valid shape is selected. +Please select a valid shape in the drop-down box first. + Hiçbir geçerli şekil seçili değil. +Lütfen, ilkin açılan kutudan geçerli bir şekil seçin. + + + No edge selected + Hiçbir kenar seçilmedi + + + No edge entity is checked to chamfer. +Please check one or more edge entities first. + No edge entity is checked to chamfer. +Please check one or more edge entities first. + + + + PartDesignGui::TaskChamfer + + Chamfer Edges + Chamfer Edges + + + Shape + Şekil + + + Selected shape: + Seçilen şekil: + + + No selection + Seçim yok + + + Chamfer Parameter + Chamfer Parameter + + + All + Hepsi + + + None + Hiçbiri + + + Chamfer type: + Chamfer type: + + + Constant Distance + Sabit Uzaklık + + + Variable Distance + Değişken uzaklık + + + Distance: + Uzaklık: + + + + PartDesignGui::TaskChamferParameters + + + Form + Şekil: + + + Size: + Boyut: + + + + Chamfer parameters + Chamfer parameters + + + + PartDesignGui::TaskDlgPadParameters + + + Input error + Girdi hatası + + + + PartDesignGui::TaskFilletParameters + + + Form + Şekil: + + + Radius: + Yarıçapı: + + + + Fillet parameters + Fillet parameters + + + + PartDesignGui::TaskGrooveParameters + + + Form + Şekil: + + + Axis: + Eksen: + + + Vertical sketch axis + Vertical sketch axis + + + Horizontal sketch axis + Horizontal sketch axis + + + Angle: + Açı: + + + Symmetric to plane + Symmetric to plane + + + Reversed + Ters çevirilmiş + + + + Groove parameters + Groove parameters + + + + PartDesignGui::TaskHoleParameters + + + Form + Şekil: + + + Type: + Türü: + + + Dimension + Boyut + + + Up to last + En sonuncusuna kadar + + + Up to first + İlkine kadar + + + Size: + Boyut: + + + + TaskHoleParameters + TaskHoleParameters + + + + PartDesignGui::TaskPadParameters + + + Form + Şekil: + + + Type + Türü + + + Length + Uzunluk + + + Symmetric to plane + Symmetric to plane + + + 2nd length + 2nd length + + + Face + Face + + + Type: + Türü: + + + Dimension + Boyut + + + Length: + Uzunluk: + + + Mirrored extent + Aynalanmış ölçüde + + + Reversed + Ters çevirilmiş + + + Display mode: + Görüntü kipi: + + + Plot mode: + Çizim kipi: + + + Point size: + Nokta boyutu: + + + Line width: + Çizgi genişliği + + + Transparency: + Şeffaflık: + + + TaskPadParameters + TaskPadParameters + + + + Pad parameters + Pad parameters + + + No face selected + No face selected + + + To last + To last + + + To first + To first + + + Up to face + Yüze kadar + + + Two dimensions + Two dimensions + + + + PartDesignGui::TaskPatternRectangularParameters + + + Form + Şekil: + + + Spacing1: + Boşluk1: + + + Number1: + Sayı1: + + + Second extend + İkinci uzatma + + + Spacing2: + Boşluk2: + + + Number2: + Sayı2: + + + + TaskPatternRectangularParameters + TaskPatternRectangularParameters + + + + PartDesignGui::TaskPocketParameters + + + Form + Şekil: + + + Type: + Türü: + + + Type + Türü + + + Dimension + Boyut + + + Face + Face + + + Length + Uzunluk + + + + Pocket parameters + Cep değişkenleri + + + To last + To last + + + To first + To first + + + Through all + Through all + + + Up to face + Yüze kadar + + + No face selected + No face selected + + + + PartDesignGui::TaskRevolutionParameters + + + Form + Şekil: + + + Axis: + Eksen: + + + Vertical sketch axis + Vertical sketch axis + + + Horizontal sketch axis + Horizontal sketch axis + + + Symmetric to plane + Symmetric to plane + + + Reversed + Ters çevirilmiş + + + Vertical + Dikey + + + Horizontal + Yatay + + + Angle: + Açı: + + + + Revolution parameters + Dönüş değişkenleri + + + + QObject + + + Wrong selection + Yanlış seçim + + + Select a sketch or 2D object. + Bir taslak veya 2B nesne seçin. + + + The shape of the selected object is empty. + Seçili nesnenin şekili boş. + + + The shape of the selected object is not a wire. + Seçili nesnenin şekili bir çoklu bağlantı değil. + + + Select an edge, face or body. Only one body is allowed. + Bir kenar seç, yüz veya gövde. Sadece bir gövdeye izin verildi. + + + Wrong object type + Yanlış nesne türü + + + Fillet works only on parts + Fillet works only on parts + + + Shape of selected Part is empty + Shape of selected Part is empty + + + No fillet possible on selected faces/edges + No fillet possible on selected faces/edges + + + Chamfer works only on parts + Chamfer works only on parts + + + Shape of selected part is empty + Shape of selected part is empty + + + No chamfer possible on selected faces/edges + No chamfer possible on selected faces/edges + + + No Support + Desteklenmiyor + + + The sketch has to have a support for the pocket feature. +Create the sketch on a face. + Taslak, paket özelliğini desteklenmelidir. +Bir yüz üzerinde taslak oluşturun. + + + + Edit pad + Edit pad + + + + Edit pocket + Cebi düzenle + + + A dialog is already open in the task panel + Araç çubuğunda bir pencere zaten açık + + + Do you want to close this dialog? + Bu pencereyi kapatmak ister misiniz? + + + + Edit revolution + Dönüşü düzenle + + + + Edit Groove + Edit Groove + + + + Workbench + + + Part Design + Parça Tasarımı + + + diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_uk.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_uk.qm index 8df6b3aee..c0fc9d162 100644 Binary files a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_uk.qm and b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_uk.qm differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_uk.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_uk.ts index 34045a0e6..7b53e0496 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_uk.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_uk.ts @@ -1,770 +1,646 @@ - - + + CmdPartDesignChamfer - Part - Частина + Part + Частина - Chamfer... - Згладити... + Chamfer... + Фаска... - - PartDesign - ДизайнДеталі + + PartDesign + ДизайнДеталі - - Chamfer - + Chamfer + Chamfer - - Chamfer the selected edges of a shape - Згладити обрані краї фігури + Chamfer the selected edges of a shape + Створити фаску на обраному краю фігури - - + + CmdPartDesignFillet - - PartDesign - ДизайнДеталі + PartDesign + ДизайнДеталі - - Fillet - Округлення + Fillet + Округлення - - Make a fillet on an edge, face or body - Зробити округлення краю, поверхні чи тіла + Make a fillet on an edge, face or body + Зробити округлення краю, грані або тіла - - + + CmdPartDesignGroove - - PartDesign - ДизайнДеталі + PartDesign + ДизайнДеталі - - Groove - + Groove + Groove - - Groove a selected sketch - + Groove a selected sketch + Groove a selected sketch - - + + CmdPartDesignPad - - PartDesign - ДизайнДеталі + PartDesign + ДизайнДеталі - - Pad - Pad + Pad + Панель - - Pad a selected sketch - Pad a selected sketch + Pad a selected sketch + Панель обраного ескізу - - + + CmdPartDesignPocket - - PartDesign - ДизайнДеталі + PartDesign + ДизайнДеталі - - Pocket - Pocket + Pocket + Поглиблення - - create a pocket with the selected sketch - create a pocket with the selected sketch + create a pocket with the selected sketch + Створити поглиблення за обраним ескізом - - + + CmdPartDesignRevolution - - PartDesign - ДизайнДеталі + PartDesign + ДизайнДеталі - - Revolution - Revolution + Revolution + Обертання - - Revolve a selected sketch - Revolve a selected sketch + Revolve a selected sketch + Обертати обраний ескіз - - + + Gui::TaskView::TaskWatcherCommands - - Face tools - Face tools + + Face tools + Інструменти граней - - Sketch tools - Sketch tools + Sketch tools + Інструменти ескізу - - Create Geometry - Create Geometry + Create Geometry + Створити геометрію - - + + PartDesignGui::ChamferWidget - Edges to chamfer - Краї фаски + Edges to chamfer + Зробити фаски на краях - Start distance - Початок відстані + Start distance + Початок відстані - End distance - Кінець відстані + End distance + Кінець відстані - Edge%1 - Край%1 + Edge%1 + Край%1 - Distance - Відстань + Distance + Відстань - No shape selected - Форму не обрано + No shape selected + Форму не обрано - No valid shape is selected. + No valid shape is selected. Please select a valid shape in the drop-down box first. - Не обрано вірної форми. + Не обрано вірної форми. Будь ласка, оберіть вірну форму у виринаючому списку. - No edge selected - Край не обрано + No edge selected + Край не обрано - No edge entity is checked to chamfer. + No edge entity is checked to chamfer. Please check one or more edge entities first. - Не обрано край для згладжування. + Не обрано край для згладжування. Будь ласка, спочатку оберіть один, або більше країв. - - + + PartDesignGui::TaskChamfer - Chamfer Edges - Згладити краї + Chamfer Edges + Фаски країв - Shape - Форма + Shape + Форма - Selected shape: - Обрана форма: + Selected shape: + Обрана форма: - No selection - Нічого не вибрано + No selection + Нічого не вибрано - Chamfer Parameter - Параметри згладжування + Chamfer Parameter + Параметри фаски - All - Все + All + Все - None - Нічого + None + Нічого - Chamfer type: - Тип згладжування: + Chamfer type: + Тип фаски: - Constant Distance - Постійна відстань + Constant Distance + Постійна відстань - Variable Distance - Змінна відстань + Variable Distance + Змінна відстань - Distance: - Відстань: + Distance: + Відстань: - - + + PartDesignGui::TaskChamferParameters - - Form - Форма + + Form + Форма - - Size: - Розмір: + Size: + Розмір: - - Chamfer parameters - + + Chamfer parameters + Chamfer parameters - - + + PartDesignGui::TaskDlgPadParameters - - Input error - Input error + + Input error + Помилка вводу - - + + PartDesignGui::TaskFilletParameters - - Form - Форма + + Form + Форма - - Radius: - Радіус: + Radius: + Радіус: - - Fillet parameters - Fillet parameters + + Fillet parameters + Параметри зкруглення - - + + PartDesignGui::TaskGrooveParameters - - Form - Форма + + Form + Форма - - Axis: - Вісь: + Axis: + Вісь: - - Vertical sketch axis - + Vertical sketch axis + Vertical sketch axis - - Horizontal sketch axis - + Horizontal sketch axis + Horizontal sketch axis - - Angle: - Кут: + Angle: + Кут: - - Symmetric to plane - + Symmetric to plane + Symmetric to plane - - Reversed - Reversed + Reversed + Зворотній - - Groove parameters - + + Groove parameters + Groove parameters - - + + PartDesignGui::TaskHoleParameters - - Form - Форма + + Form + Форма - - Type: - Тип: + Type: + Тип: - - Dimension - Розмірність + Dimension + Розмірність - - Up to last - До останнього + Up to last + До останнього - - Up to first - Up to first + Up to first + До першого - - Size: - Розмір: + Size: + Розмір: - - TaskHoleParameters - TaskHoleParameters + + TaskHoleParameters + TaskHoleParameters - - + + PartDesignGui::TaskPadParameters - - Form - Форма + + Form + Форма - - Type - + Type + Тип - - Length - Length + Length + Довжина - - Symmetric to plane - + Symmetric to plane + Symmetric to plane - - 2nd length - + 2nd length + 2nd length - - - Face - + Face + Face - Type: - Тип: + Type: + Тип: - - - Dimension - Розмірність + Dimension + Розмірність - Length: - Довжина: + Length: + Довжина: - Mirrored extent - Mirrored extent + Mirrored extent + Дзеркальне розширення - - Reversed - Reversed + Reversed + Зворотній - Display mode: - Режим показу: + Display mode: + Режим показу: - Plot mode: - Plot mode: + Plot mode: + Режим друку: - Point size: - Розмір точки: + Point size: + Розмір точки: - Line width: - Товщина лінії: + Line width: + Товщина лінії: - Transparency: - Прозорість: + Transparency: + Прозорість: - TaskPadParameters - TaskPadParameters + TaskPadParameters + TaskPadParameters - - Pad parameters - Pad parameters + + Pad parameters + Панель параметрів - - No face selected - + No face selected + No face selected - - To last - + To last + To last - - To first - + To first + To first - - Up to face - + Up to face + До лиця - - Two dimensions - + Two dimensions + Two dimensions - - + + PartDesignGui::TaskPatternRectangularParameters - - Form - Форма + + Form + Форма - - Spacing1: - Spacing1: + Spacing1: + Інтервал1: - - Number1: - Number1: + Number1: + Число1: - - Second extend - Second extend + Second extend + Друге розширення - - Spacing2: - Spacing2: + Spacing2: + Інтервал2: - - Number2: - Number2: + Number2: + Число2: - - TaskPatternRectangularParameters - TaskPatternRectangularParameters + + TaskPatternRectangularParameters + TaskPatternRectangularParameters - - + + PartDesignGui::TaskPocketParameters - - Form - Форма + + Form + Форма - Type: - Тип: + Type: + Тип: - - Type - + Type + Тип - - - Dimension - Розмірність + Dimension + Розмірність - - - Face - + Face + Face - - Length - Length + Length + Довжина - - Pocket parameters - Pocket parameters + + Pocket parameters + Параметри поглиблення - - To last - + To last + To last - - To first - + To first + To first - - Through all - + Through all + Through all - - Up to face - + Up to face + До лиця - - No face selected - + No face selected + No face selected - - + + PartDesignGui::TaskRevolutionParameters - - Form - Форма + + Form + Форма - - Axis: - Вісь: + Axis: + Вісь: - - Vertical sketch axis - + Vertical sketch axis + Vertical sketch axis - - Horizontal sketch axis - + Horizontal sketch axis + Horizontal sketch axis - - Symmetric to plane - + Symmetric to plane + Symmetric to plane - - Reversed - Reversed + Reversed + Зворотній - Vertical - Vertical + Vertical + По вертикалі - Horizontal - Horizontal + Horizontal + По горизонталі - - Angle: - Кут: + Angle: + Кут: - - Revolution parameters - Revolution parameters + + Revolution parameters + Параметри обертання - - + + QObject - - - - - - - - - - - - - - - - - - - Wrong selection - Невірний вибір + + Wrong selection + Невірний вибір - - - - - Select a sketch or 2D object. - Оберіть ескіз чи 2D об'єкт. + Select a sketch or 2D object. + Оберіть ескіз чи 2D об'єкт. - - - - - The shape of the selected object is empty. - Форма виділеного об'єкта пуста. + The shape of the selected object is empty. + Форма виділеного об'єкта пуста. - - - - - The shape of the selected object is not a wire. - Форма вибраного об'єкта не дріт. + The shape of the selected object is not a wire. + Форма вибраного об'єкта не дріт. - - - Select an edge, face or body. Only one body is allowed. - Виберіть край, поверхню чи тіло. Допускається вибір лише одного тіла. + Select an edge, face or body. Only one body is allowed. + Обрати край, грань або тіло. Можливо обрати лише одне тіло. - - - Wrong object type - Невірний тип об'єкта + Wrong object type + Невірний тип об'єкта - - Fillet works only on parts - Округлення працює лише для деталей + Fillet works only on parts + Округлення можливе лише для деталей - - Shape of selected Part is empty - + Shape of selected Part is empty + Shape of selected Part is empty - - No fillet possible on selected faces/edges - + No fillet possible on selected faces/edges + No fillet possible on selected faces/edges - - Chamfer works only on parts - + Chamfer works only on parts + Chamfer works only on parts - - Shape of selected part is empty - + Shape of selected part is empty + Shape of selected part is empty - - No chamfer possible on selected faces/edges - + No chamfer possible on selected faces/edges + No chamfer possible on selected faces/edges - - No Support - Не підтримується + No Support + Не підтримується - - The sketch has to have a support for the pocket feature. + The sketch has to have a support for the pocket feature. Create the sketch on a face. - The sketch has to have a support for the pocket feature. -Create the sketch on a face. + Ескіз повинен підтримувати створення поглиблення. Створіть ескіз на грані. - - Edit pad - Edit pad + + Edit pad + Панель редагування - - - - Edit pocket - Edit pocket + + Edit pocket + Редагувати поглиблення - - - - - - - A dialog is already open in the task panel - A dialog is already open in the task panel + A dialog is already open in the task panel + Діалогове вікно вже відкрито в панелі задач - - - - - - - Do you want to close this dialog? - Do you want to close this dialog? + Do you want to close this dialog? + Ви бажаєте закрити це діалогове вікно? - - Edit revolution - Edit revolution + + Edit revolution + Редагувати обертання - - Edit Groove - + + Edit Groove + Edit Groove - - + + Workbench - - Part Design - Дизайн частини + + Part Design + Дизайн частини - + diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh-CN.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh-CN.qm new file mode 100644 index 000000000..8488f8e4b Binary files /dev/null and b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh-CN.qm differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh-CN.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh-CN.ts new file mode 100644 index 000000000..208845d9a --- /dev/null +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh-CN.ts @@ -0,0 +1,645 @@ + + + + + CmdPartDesignChamfer + + Part + 零件 + + + Chamfer... + 倒角... + + + + PartDesign + 零件设计 + + + Chamfer + 倒直角 + + + Chamfer the selected edges of a shape + 给选的形的边缘倒角 + + + + CmdPartDesignFillet + + PartDesign + 零件设计 + + + Fillet + 圆角 + + + Make a fillet on an edge, face or body + 给边、面或实体倒圆角 + + + + CmdPartDesignGroove + + PartDesign + 零件设计 + + + Groove + 旋转槽 + + + Groove a selected sketch + 选定草绘创建旋转槽 + + + + CmdPartDesignPad + + PartDesign + 零件设计 + + + Pad + 凸台 + + + Pad a selected sketch + 基于选定草图创建凸台 + + + + CmdPartDesignPocket + + PartDesign + 零件设计 + + + Pocket + 凹槽 + + + create a pocket with the selected sketch + 基于选中的草图创建凹槽 + + + + CmdPartDesignRevolution + + PartDesign + 零件设计 + + + Revolution + 旋转体 + + + Revolve a selected sketch + 旋转选定的草绘 + + + + Gui::TaskView::TaskWatcherCommands + + + Face tools + 面工具 + + + Sketch tools + 草图工具 + + + Create Geometry + 创建几何元素 + + + + PartDesignGui::ChamferWidget + + Edges to chamfer + 倒角边 + + + Start distance + 起端距离 + + + End distance + 末端距离 + + + Edge%1 + 边缘 %1 + + + Distance + 距离 + + + No shape selected + 未选定形状 + + + No valid shape is selected. +Please select a valid shape in the drop-down box first. + 无有效形状被选中.请先在下拉框中选择一个有效的形状. + + + No edge selected + 未选定边缘 + + + No edge entity is checked to chamfer. +Please check one or more edge entities first. + 未选择倒角边.请先选择一个或更多边缘. + + + + PartDesignGui::TaskChamfer + + Chamfer Edges + 倒角边缘 + + + Shape + 形状 + + + Selected shape: + 所选的形状: + + + No selection + 未选择 + + + Chamfer Parameter + 倒角参数 + + + All + 全部 + + + None + + + + Chamfer type: + 倒角类型: + + + Constant Distance + 恒定距离 + + + Variable Distance + 可变距离 + + + Distance: + 距离: + + + + PartDesignGui::TaskChamferParameters + + + Form + 窗体 + + + Size: + 大小: + + + + Chamfer parameters + 倒角参数 + + + + PartDesignGui::TaskDlgPadParameters + + + Input error + 输入错误 + + + + PartDesignGui::TaskFilletParameters + + + Form + 窗体 + + + Radius: + 半径: + + + + Fillet parameters + 圆角参数 + + + + PartDesignGui::TaskGrooveParameters + + + Form + 窗体 + + + Axis: + 轴: + + + Vertical sketch axis + 垂直草绘轴 + + + Horizontal sketch axis + 水平草绘轴 + + + Angle: + 角度: + + + Symmetric to plane + 相当平面对称 + + + Reversed + 反转 + + + + Groove parameters + 旋转槽参数 + + + + PartDesignGui::TaskHoleParameters + + + Form + 窗体 + + + Type: + 类型: + + + Dimension + 尺寸标注 + + + Up to last + 直到最后 + + + Up to first + 直到第一个 + + + Size: + 大小: + + + + TaskHoleParameters + 开孔参数 + + + + PartDesignGui::TaskPadParameters + + + Form + 窗体 + + + Type + 类型 + + + Length + 长度 + + + Symmetric to plane + 相当平面对称 + + + 2nd length + 2nd length + + + Face + + + + Type: + 类型: + + + Dimension + 尺寸标注 + + + Length: + 长度: + + + Mirrored extent + Mirrored extent + + + Reversed + 反转 + + + Display mode: + 显示方式: + + + Plot mode: + 绘制模式: + + + Point size: + 点大小: + + + Line width: + 线宽: + + + Transparency: + 透明度: + + + TaskPadParameters + 凸台操作参数 + + + + Pad parameters + 凸台参数 + + + No face selected + 未选择面 + + + To last + 直到最后 + + + To first + 直到下一个 + + + Up to face + 直到表面 + + + Two dimensions + 两个尺寸 + + + + PartDesignGui::TaskPatternRectangularParameters + + + Form + 窗体 + + + Spacing1: + 间距1: + + + Number1: + 数值1: + + + Second extend + Second extend + + + Spacing2: + 间距2: + + + Number2: + 数值2: + + + + TaskPatternRectangularParameters + 矩形阵列参数 + + + + PartDesignGui::TaskPocketParameters + + + Form + 窗体 + + + Type: + 类型: + + + Type + 类型 + + + Dimension + 尺寸标注 + + + Face + + + + Length + 长度 + + + + Pocket parameters + 凹槽参数 + + + To last + 直到最后 + + + To first + 直到下一个 + + + Through all + 通过所有 + + + Up to face + 直到表面 + + + No face selected + 未选择面 + + + + PartDesignGui::TaskRevolutionParameters + + + Form + 窗体 + + + Axis: + 轴: + + + Vertical sketch axis + 垂直草绘轴 + + + Horizontal sketch axis + 水平草绘轴 + + + Symmetric to plane + 相当平面对称 + + + Reversed + 反转 + + + Vertical + 垂直 + + + Horizontal + 水平 + + + Angle: + 角度: + + + + Revolution parameters + 旋转体参数 + + + + QObject + + + Wrong selection + 选择错误 + + + Select a sketch or 2D object. + 选择一个草图或2D对象. + + + The shape of the selected object is empty. + 所选形状为空. + + + The shape of the selected object is not a wire. + 所选形状不是线框. + + + Select an edge, face or body. Only one body is allowed. + 选择边缘、面或者实体。只允许选择一个实体. + + + Wrong object type + 错误的对象类型 + + + Fillet works only on parts + 圆角只对零件有效 + + + Shape of selected Part is empty + Shape of selected Part is empty + + + No fillet possible on selected faces/edges + 所选面/边无法圆角 + + + Chamfer works only on parts + 倒角仅适用于零件 + + + Shape of selected part is empty + Shape of selected part is empty + + + No chamfer possible on selected faces/edges + 所选面/边无法倒角 + + + No Support + 不支持 + + + The sketch has to have a support for the pocket feature. +Create the sketch on a face. + 凹槽特性要求草图必须存在一个支持面. +请在面上创建草图. + + + + Edit pad + 编辑凸台 + + + + Edit pocket + 编辑凹槽 + + + A dialog is already open in the task panel + 一个对话框已在任务面板打开 + + + Do you want to close this dialog? + 您要关闭此对话框吗? + + + + Edit revolution + 编辑旋转体 + + + + Edit Groove + 编辑旋转槽 + + + + Workbench + + + Part Design + 零件设计 + + + diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh-TW.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh-TW.qm new file mode 100644 index 000000000..bc360ca3b Binary files /dev/null and b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh-TW.qm differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh-TW.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh-TW.ts new file mode 100644 index 000000000..8a35f09f0 --- /dev/null +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh-TW.ts @@ -0,0 +1,647 @@ + + + + + CmdPartDesignChamfer + + Part + 零件 + + + Chamfer... + Chamfer... + + + + PartDesign + 零件設計 + + + Chamfer + 倒角 + + + Chamfer the selected edges of a shape + 所選造型邊緣進行倒角 + + + + CmdPartDesignFillet + + PartDesign + 零件設計 + + + Fillet + 圓角 + + + Make a fillet on an edge, face or body + 於邊緣,面或物體產生圓角 + + + + CmdPartDesignGroove + + PartDesign + 零件設計 + + + Groove + + + + Groove a selected sketch + Groove a selected sketch + + + + CmdPartDesignPad + + PartDesign + 零件設計 + + + Pad + 填充 + + + Pad a selected sketch + 填充所選素描 + + + + CmdPartDesignPocket + + PartDesign + 零件設計 + + + Pocket + 口袋 + + + create a pocket with the selected sketch + 於選定草圖建立口袋 + + + + CmdPartDesignRevolution + + PartDesign + 零件設計 + + + Revolution + Revolution + + + Revolve a selected sketch + Revolve a selected sketch + + + + Gui::TaskView::TaskWatcherCommands + + + Face tools + 編輯面工具 + + + Sketch tools + 素描工具 + + + Create Geometry + 建立幾何 + + + + PartDesignGui::ChamferWidget + + Edges to chamfer + Edges to chamfer + + + Start distance + Start distance + + + End distance + End distance + + + Edge%1 + 邊緣 %1 + + + Distance + 距離 + + + No shape selected + 無選取物件 + + + No valid shape is selected. +Please select a valid shape in the drop-down box first. + No valid shape is selected. +Please select a valid shape in the drop-down box first. + + + No edge selected + 無邊界被選取 + + + No edge entity is checked to chamfer. +Please check one or more edge entities first. + No edge entity is checked to chamfer. +Please check one or more edge entities first. + + + + PartDesignGui::TaskChamfer + + Chamfer Edges + Chamfer Edges + + + Shape + 造型 + + + Selected shape: + 選定之圖形: + + + No selection + 未選擇 + + + Chamfer Parameter + Chamfer Parameter + + + All + 所有 + + + None + + + + Chamfer type: + Chamfer type: + + + Constant Distance + Constant Distance + + + Variable Distance + Variable Distance + + + Distance: + 距離: + + + + PartDesignGui::TaskChamferParameters + + + Form + 格式 + + + Size: + 尺寸: + + + + Chamfer parameters + 倒角參數 + + + + PartDesignGui::TaskDlgPadParameters + + + Input error + 輸入錯誤 + + + + PartDesignGui::TaskFilletParameters + + + Form + 格式 + + + Radius: + 半徑: + + + + Fillet parameters + 圓角參數 + + + + PartDesignGui::TaskGrooveParameters + + + Form + 格式 + + + Axis: + 軸: + + + Vertical sketch axis + 垂直素描軸 + + + Horizontal sketch axis + 水平素描軸 + + + Angle: + 角度: + + + Symmetric to plane + 依平面對稱 + + + Reversed + 反轉 + + + + Groove parameters + 槽參數 + + + + PartDesignGui::TaskHoleParameters + + + Form + 格式 + + + Type: + 類型: + + + Dimension + 標註 + + + Up to last + 向上至最後一個 + + + Up to first + 到起始位置 + + + Size: + 尺寸: + + + + TaskHoleParameters + TaskHoleParameters + + + + PartDesignGui::TaskPadParameters + + + Form + 格式 + + + Type + 類型 + + + Length + 長度 + + + Symmetric to plane + 依平面對稱 + + + 2nd length + 第2長度 + + + Face + + + + Type: + 類型: + + + Dimension + 標註 + + + Length: + 長度: + + + Mirrored extent + Mirrored extent + + + Reversed + 反轉 + + + Display mode: + 顯示模式: + + + Plot mode: + 出圖模式: + + + Point size: + 點大小: + + + Line width: + 線寬: + + + Transparency: + 透明度: + + + TaskPadParameters + TaskPadParameters + + + + Pad parameters + Pad parameters + + + No face selected + 無選定面 + + + To last + 到最後位置 + + + To first + 到起始位置 + + + Up to face + 向上至面 + + + Two dimensions + 2D + + + + PartDesignGui::TaskPatternRectangularParameters + + + Form + 格式 + + + Spacing1: + Spacing1: + + + Number1: + 1號: + + + Second extend + Second extend + + + Spacing2: + Spacing2: + + + Number2: + 2號: + + + + TaskPatternRectangularParameters + TaskPatternRectangularParameters + + + + PartDesignGui::TaskPocketParameters + + + Form + 格式 + + + Type: + 類型: + + + Type + 類型 + + + Dimension + 標註 + + + Face + + + + Length + 長度 + + + + Pocket parameters + Pocket parameters + + + To last + 到最後位置 + + + To first + 到起始位置 + + + Through all + 通過全部 + + + Up to face + 向上至面 + + + No face selected + 無選定面 + + + + PartDesignGui::TaskRevolutionParameters + + + Form + 格式 + + + Axis: + 軸: + + + Vertical sketch axis + 垂直素描軸 + + + Horizontal sketch axis + 水平素描軸 + + + Symmetric to plane + 依平面對稱 + + + Reversed + 反轉 + + + Vertical + Vertical + + + Horizontal + Horizontal + + + Angle: + 角度: + + + + Revolution parameters + Revolution parameters + + + + QObject + + + Wrong selection + 錯誤的選擇 + + + Select a sketch or 2D object. + 選擇素描或2D物件 + + + The shape of the selected object is empty. + 所選之物件無造型 + + + The shape of the selected object is not a wire. + 所選物件之造型非為線 + + + Select an edge, face or body. Only one body is allowed. + 選取邊緣,面或物體,僅有一個物體是許可的 + + + Wrong object type + 物件種類錯誤 + + + Fillet works only on parts + 圓角功能僅能用於零件 + + + Shape of selected Part is empty + 所選零件無造型 + + + No fillet possible on selected faces/edges + 所選之面/邊緣無法產生圓角 + + + Chamfer works only on parts + 倒腳僅能用於零件上 + + + Shape of selected part is empty + 所選零件無造型 + + + No chamfer possible on selected faces/edges + 所選之面/邊緣無法產生倒角 + + + No Support + 不支援 + + + The sketch has to have a support for the pocket feature. +Create the sketch on a face. + The sketch has to have a support for the pocket feature. +Create the sketch on a face. + + + + Edit pad + 編輯填充 + + + + Edit pocket + 編輯口袋 + + + A dialog is already open in the task panel + 於工作面板已開啟對話窗 + + + Do you want to close this dialog? + 您確定要關閉此對話窗嗎? + + + + Edit revolution + Edit revolution + + + + Edit Groove + 編輯槽 + + + + Workbench + + + Part Design + 零件設計 + + + diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh.qm b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh.qm deleted file mode 100644 index a4475cc2b..000000000 Binary files a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh.qm and /dev/null differ diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh.ts deleted file mode 100644 index 24b691420..000000000 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh.ts +++ /dev/null @@ -1,768 +0,0 @@ - - - - - CmdPartDesignChamfer - - Part - 零件 - - - Chamfer... - 倒角... - - - - PartDesign - 零件设计 - - - - Chamfer - - - - - Chamfer the selected edges of a shape - 给选的形的边缘倒角 - - - - CmdPartDesignFillet - - - PartDesign - 零件设计 - - - - Fillet - 圆角 - - - - Make a fillet on an edge, face or body - 给边、面或实体倒圆角 - - - - CmdPartDesignGroove - - - PartDesign - 零件设计 - - - - Groove - - - - - Groove a selected sketch - - - - - CmdPartDesignPad - - - PartDesign - 零件设计 - - - - Pad - 凸台 - - - - Pad a selected sketch - 基于选定草图创建凸台 - - - - CmdPartDesignPocket - - - PartDesign - 零件设计 - - - - Pocket - 凹槽 - - - - create a pocket with the selected sketch - 基于选中的草图创建凹槽 - - - - CmdPartDesignRevolution - - - PartDesign - 零件设计 - - - - Revolution - Revolution - - - - Revolve a selected sketch - 旋转选定的草绘 - - - - Gui::TaskView::TaskWatcherCommands - - - Face tools - Face tools - - - - Sketch tools - 草图工具 - - - - Create Geometry - 创建几何元素 - - - - PartDesignGui::ChamferWidget - - Edges to chamfer - 倒角边 - - - Start distance - 起端距离 - - - End distance - 末端距离 - - - Edge%1 - 边缘 %1 - - - Distance - 距离 - - - No shape selected - 未选定形状 - - - No valid shape is selected. -Please select a valid shape in the drop-down box first. - 无有效形状被选中.请先在下拉框中选择一个有效的形状. - - - No edge selected - 未选定边缘 - - - No edge entity is checked to chamfer. -Please check one or more edge entities first. - 未选择倒角边.请先选择一个或更多边缘. - - - - PartDesignGui::TaskChamfer - - Chamfer Edges - 倒角边缘 - - - Shape - 形状 - - - Selected shape: - 所选的形状: - - - No selection - 未选择 - - - Chamfer Parameter - 倒角参数 - - - All - 全部 - - - None - - - - Chamfer type: - 倒角类型: - - - Constant Distance - 恒定距离 - - - Variable Distance - 可变距离 - - - Distance: - 距离: - - - - PartDesignGui::TaskChamferParameters - - - Form - 窗体 - - - - Size: - 大小: - - - - Chamfer parameters - - - - - PartDesignGui::TaskDlgPadParameters - - - Input error - Input error - - - - PartDesignGui::TaskFilletParameters - - - Form - 窗体 - - - - Radius: - 半径: - - - - Fillet parameters - Fillet parameters - - - - PartDesignGui::TaskGrooveParameters - - - Form - 窗体 - - - - Axis: - 轴: - - - - Vertical sketch axis - - - - - Horizontal sketch axis - - - - - Angle: - 角度: - - - - Symmetric to plane - - - - - Reversed - 反转 - - - - Groove parameters - - - - - PartDesignGui::TaskHoleParameters - - - Form - 窗体 - - - - Type: - 类型: - - - - Dimension - 尺寸标注 - - - - Up to last - 直到最后 - - - - Up to first - 直到第一个 - - - - Size: - 大小: - - - - TaskHoleParameters - 开孔参数 - - - - PartDesignGui::TaskPadParameters - - - Form - 窗体 - - - - Type - - - - - Length - Length - - - - Symmetric to plane - - - - - 2nd length - - - - - - Face - - - - Type: - 类型: - - - - - Dimension - 尺寸标注 - - - Length: - 长度: - - - Mirrored extent - Mirrored extent - - - - Reversed - 反转 - - - Display mode: - 显示方式: - - - Plot mode: - 绘制模式: - - - Point size: - 点大小: - - - Line width: - 线宽: - - - Transparency: - 透明度: - - - TaskPadParameters - 凸台操作参数 - - - - Pad parameters - 凸台参数 - - - - No face selected - - - - - To last - - - - - To first - - - - - Up to face - - - - - Two dimensions - - - - - PartDesignGui::TaskPatternRectangularParameters - - - Form - 窗体 - - - - Spacing1: - Spacing1: - - - - Number1: - 数值1: - - - - Second extend - Second extend - - - - Spacing2: - Spacing2: - - - - Number2: - 数值2: - - - - TaskPatternRectangularParameters - 矩形阵列参数 - - - - PartDesignGui::TaskPocketParameters - - - Form - 窗体 - - - Type: - 类型: - - - - Type - - - - - - Dimension - 尺寸标注 - - - - - Face - - - - - Length - Length - - - - Pocket parameters - Pocket parameters - - - - To last - - - - - To first - - - - - Through all - - - - - Up to face - - - - - No face selected - - - - - PartDesignGui::TaskRevolutionParameters - - - Form - 窗体 - - - - Axis: - 轴: - - - - Vertical sketch axis - - - - - Horizontal sketch axis - - - - - Symmetric to plane - - - - - Reversed - 反转 - - - Vertical - Vertical - - - Horizontal - Horizontal - - - - Angle: - 角度: - - - - Revolution parameters - Revolution parameters - - - - QObject - - - - - - - - - - - - - - - - - - - - Wrong selection - 选择错误 - - - - - - - Select a sketch or 2D object. - 选择一个草图或2D对象. - - - - - - - The shape of the selected object is empty. - 所选形状为空. - - - - - - - The shape of the selected object is not a wire. - 所选形状不是线框. - - - - - Select an edge, face or body. Only one body is allowed. - 选择边缘、面或者实体。只允许选择一个实体. - - - - - Wrong object type - 错误的对象类型 - - - - Fillet works only on parts - 圆角只对零件有效 - - - - Shape of selected Part is empty - - - - - No fillet possible on selected faces/edges - - - - - Chamfer works only on parts - - - - - Shape of selected part is empty - - - - - No chamfer possible on selected faces/edges - - - - - No Support - 不支持 - - - - The sketch has to have a support for the pocket feature. -Create the sketch on a face. - 凹槽特性要求草图必须存在一个支持面. -请在面上创建草图. - - - - Edit pad - 编辑凸台 - - - - - - Edit pocket - Edit pocket - - - - - - - - - A dialog is already open in the task panel - A dialog is already open in the task panel - - - - - - - - - Do you want to close this dialog? - 您要关闭此对话框吗? - - - - Edit revolution - Edit revolution - - - - Edit Groove - - - - - Workbench - - - Part Design - 零件设计 - - - diff --git a/src/Mod/PartDesign/Gui/TaskGrooveParameters.cpp b/src/Mod/PartDesign/Gui/TaskGrooveParameters.cpp index 974e1e288..8ec594037 100644 --- a/src/Mod/PartDesign/Gui/TaskGrooveParameters.cpp +++ b/src/Mod/PartDesign/Gui/TaskGrooveParameters.cpp @@ -64,9 +64,17 @@ TaskGrooveParameters::TaskGrooveParameters(ViewProviderGroove *GrooveView,QWidge this, SLOT(onMidplane(bool))); connect(ui->checkBoxReversed, SIGNAL(toggled(bool)), this, SLOT(onReversed(bool))); + connect(ui->checkBoxUpdateView, SIGNAL(toggled(bool)), + this, SLOT(onUpdateView(bool))); this->groupLayout()->addWidget(proxy); + // Temporarily prevent unnecessary feature updates + ui->doubleSpinBox->blockSignals(true); + ui->axis->blockSignals(true); + ui->checkBoxMidplane->blockSignals(true); + ui->checkBoxReversed->blockSignals(true); + PartDesign::Groove* pcGroove = static_cast(GrooveView->getObject()); double l = pcGroove->Angle.getValue(); bool mirrored = pcGroove->Midplane.getValue(); @@ -105,6 +113,11 @@ TaskGrooveParameters::TaskGrooveParameters(ViewProviderGroove *GrooveView,QWidge ui->checkBoxMidplane->setChecked(mirrored); ui->checkBoxReversed->setChecked(reversed); + ui->doubleSpinBox->blockSignals(false); + ui->axis->blockSignals(false); + ui->checkBoxMidplane->blockSignals(false); + ui->checkBoxReversed->blockSignals(false); + setFocus (); } @@ -112,7 +125,8 @@ void TaskGrooveParameters::onAngleChanged(double len) { PartDesign::Groove* pcGroove = static_cast(GrooveView->getObject()); pcGroove->Angle.setValue((float)len); - pcGroove->getDocument()->recomputeFeature(pcGroove); + if (updateView()) + pcGroove->getDocument()->recomputeFeature(pcGroove); } void TaskGrooveParameters::onAxisChanged(int num) @@ -133,23 +147,33 @@ void TaskGrooveParameters::onAxisChanged(int num) if (num < maxcount && ui->axis->count() > maxcount) ui->axis->setMaxCount(maxcount); } - pcGroove->getDocument()->recomputeFeature(pcGroove); + if (updateView()) + pcGroove->getDocument()->recomputeFeature(pcGroove); } void TaskGrooveParameters::onMidplane(bool on) { PartDesign::Groove* pcGroove = static_cast(GrooveView->getObject()); pcGroove->Midplane.setValue(on); - pcGroove->getDocument()->recomputeFeature(pcGroove); + if (updateView()) + pcGroove->getDocument()->recomputeFeature(pcGroove); } void TaskGrooveParameters::onReversed(bool on) { PartDesign::Groove* pcGroove = static_cast(GrooveView->getObject()); pcGroove->Reversed.setValue(on); - pcGroove->getDocument()->recomputeFeature(pcGroove); + if (updateView()) + pcGroove->getDocument()->recomputeFeature(pcGroove); } +void TaskGrooveParameters::onUpdateView(bool on) +{ + if (on) { + PartDesign::Groove* pcGroove = static_cast(GrooveView->getObject()); + pcGroove->getDocument()->recomputeFeature(pcGroove); + } +} double TaskGrooveParameters::getAngle(void) const { @@ -191,6 +215,11 @@ bool TaskGrooveParameters::getReversed(void) const return ui->checkBoxReversed->isChecked(); } +const bool TaskGrooveParameters::updateView() const +{ + return ui->checkBoxUpdateView->isChecked(); +} + TaskGrooveParameters::~TaskGrooveParameters() { delete ui; diff --git a/src/Mod/PartDesign/Gui/TaskGrooveParameters.h b/src/Mod/PartDesign/Gui/TaskGrooveParameters.h index 1c19bb6b6..7afaaf1f7 100644 --- a/src/Mod/PartDesign/Gui/TaskGrooveParameters.h +++ b/src/Mod/PartDesign/Gui/TaskGrooveParameters.h @@ -56,12 +56,14 @@ public: double getAngle(void) const; bool getMidplane(void) const; bool getReversed(void) const; + const bool updateView() const; private Q_SLOTS: void onAngleChanged(double); void onAxisChanged(int); void onMidplane(bool); void onReversed(bool); + void onUpdateView(bool); protected: void changeEvent(QEvent *e); diff --git a/src/Mod/PartDesign/Gui/TaskGrooveParameters.ui b/src/Mod/PartDesign/Gui/TaskGrooveParameters.ui index d7a68d6c2..294901622 100644 --- a/src/Mod/PartDesign/Gui/TaskGrooveParameters.ui +++ b/src/Mod/PartDesign/Gui/TaskGrooveParameters.ui @@ -7,7 +7,7 @@ 0 0 278 - 158 + 195 @@ -86,6 +86,23 @@ + + + + Qt::Horizontal + + + + + + + Update view + + + true + + + diff --git a/src/Mod/PartDesign/Gui/TaskPadParameters.cpp b/src/Mod/PartDesign/Gui/TaskPadParameters.cpp index 454d2803e..13a3b36cc 100644 --- a/src/Mod/PartDesign/Gui/TaskPadParameters.cpp +++ b/src/Mod/PartDesign/Gui/TaskPadParameters.cpp @@ -24,7 +24,11 @@ #include "PreCompiled.h" #ifndef _PreComp_ +# include +# include +# include # include +# include #endif #include "ui_TaskPadParameters.h" @@ -41,7 +45,7 @@ #include #include #include - +#include "ReferenceSelection.h" using namespace PartDesignGui; using namespace Gui; @@ -67,6 +71,8 @@ TaskPadParameters::TaskPadParameters(ViewProviderPad *PadView,QWidget *parent) this, SLOT(onLength2Changed(double))); connect(ui->changeMode, SIGNAL(currentIndexChanged(int)), this, SLOT(onModeChanged(int))); + connect(ui->buttonFace, SIGNAL(pressed()), + this, SLOT(onButtonFace())); connect(ui->lineFaceName, SIGNAL(textEdited(QString)), this, SLOT(onFaceName(QString))); connect(ui->checkBoxUpdateView, SIGNAL(toggled(bool)), @@ -74,6 +80,15 @@ TaskPadParameters::TaskPadParameters(ViewProviderPad *PadView,QWidget *parent) this->groupLayout()->addWidget(proxy); + // Temporarily prevent unnecessary feature recomputes + ui->doubleSpinBox->blockSignals(true); + ui->doubleSpinBox2->blockSignals(true); + ui->checkBoxMidplane->blockSignals(true); + ui->checkBoxReversed->blockSignals(true); + ui->buttonFace->blockSignals(true); + ui->lineFaceName->blockSignals(true); + ui->changeMode->blockSignals(true); + // Get the feature data PartDesign::Pad* pcPad = static_cast(PadView->getObject()); double l = pcPad->Length.getValue(); @@ -81,7 +96,14 @@ TaskPadParameters::TaskPadParameters(ViewProviderPad *PadView,QWidget *parent) bool reversed = pcPad->Reversed.getValue(); double l2 = pcPad->Length2.getValue(); int index = pcPad->Type.getValue(); // must extract value here, clear() kills it! - const char* upToFace = pcPad->FaceName.getValue(); + std::vector subStrings = pcPad->UpToFace.getSubValues(); + std::string upToFace; + int faceId = -1; + if (!subStrings.empty()) { + upToFace = subStrings.front(); + if (upToFace.substr(0,4) == "Face") + faceId = std::atoi(&upToFace[4]); + } // Fill data into dialog elements ui->doubleSpinBox->setMinimum(0); @@ -94,7 +116,10 @@ TaskPadParameters::TaskPadParameters(ViewProviderPad *PadView,QWidget *parent) // According to bug #0000521 the reversed option // shouldn't be de-activated if the pad has a support face ui->checkBoxReversed->setChecked(reversed); - ui->lineFaceName->setText(pcPad->FaceName.isEmpty() ? tr("No face selected") : tr(upToFace)); + ui->lineFaceName->setText(faceId >= 0 ? + tr("Face") + QString::number(faceId) : + tr("No face selected")); + ui->lineFaceName->setProperty("FaceName", QByteArray(upToFace.c_str())); ui->changeMode->clear(); ui->changeMode->insertItem(0, tr("Dimension")); ui->changeMode->insertItem(1, tr("To last")); @@ -104,6 +129,13 @@ TaskPadParameters::TaskPadParameters(ViewProviderPad *PadView,QWidget *parent) ui->changeMode->setCurrentIndex(index); // activate and de-activate dialog elements as appropriate + ui->doubleSpinBox->blockSignals(false); + ui->doubleSpinBox2->blockSignals(false); + ui->checkBoxMidplane->blockSignals(false); + ui->checkBoxReversed->blockSignals(false); + ui->buttonFace->blockSignals(false); + ui->lineFaceName->blockSignals(false); + ui->changeMode->blockSignals(false); updateUI(index); } @@ -117,22 +149,31 @@ void TaskPadParameters::updateUI(int index) // yet visible. QMetaObject::invokeMethod(ui->doubleSpinBox, "setFocus", Qt::QueuedConnection); ui->checkBoxMidplane->setEnabled(true); - ui->checkBoxReversed->setEnabled(true); + // Reverse only makes sense if Midplane is not true + ui->checkBoxReversed->setEnabled(!ui->checkBoxMidplane->isChecked()); ui->doubleSpinBox2->setEnabled(false); + ui->buttonFace->setEnabled(false); ui->lineFaceName->setEnabled(false); - } else if ((index == 1) || (index == 2)) { // up to first/last + onButtonFace(false); + } else if (index == 1 || index == 2) { // up to first/last ui->doubleSpinBox->setEnabled(false); ui->checkBoxMidplane->setEnabled(false); ui->checkBoxReversed->setEnabled(false); ui->doubleSpinBox2->setEnabled(false); + ui->buttonFace->setEnabled(false); ui->lineFaceName->setEnabled(false); + onButtonFace(false); } else if (index == 3) { // up to face ui->doubleSpinBox->setEnabled(false); ui->checkBoxMidplane->setEnabled(false); ui->checkBoxReversed->setEnabled(false); ui->doubleSpinBox2->setEnabled(false); + ui->buttonFace->setEnabled(true); ui->lineFaceName->setEnabled(true); QMetaObject::invokeMethod(ui->lineFaceName, "setFocus", Qt::QueuedConnection); + // Go into reference selection mode if no face has been selected yet + if (ui->lineFaceName->text().isEmpty()) + onButtonFace(true); } else { // two dimensions ui->doubleSpinBox->setEnabled(true); ui->doubleSpinBox->selectAll(); @@ -140,64 +181,88 @@ void TaskPadParameters::updateUI(int index) ui->checkBoxMidplane->setEnabled(false); ui->checkBoxReversed->setEnabled(false); ui->doubleSpinBox2->setEnabled(true); + ui->buttonFace->setEnabled(false); ui->lineFaceName->setEnabled(false); + onButtonFace(false); } } void TaskPadParameters::onSelectionChanged(const Gui::SelectionChanges& msg) { - PartDesign::Pad* pcPad = static_cast(PadView->getObject()); - if (pcPad->Type.getValue() != 3) // ignore user selections if mode is not upToFace - return; - - if (!msg.pSubName || msg.pSubName[0] == '\0') - return; - std::string element(msg.pSubName); - if (element.substr(0,4) != "Face") - return; - if (msg.Type == Gui::SelectionChanges::AddSelection) { - pcPad->FaceName.setValue(element); - pcPad->getDocument()->recomputeFeature(pcPad); - ui->lineFaceName->setText(tr(element.c_str())); - } -} + // Don't allow selection in other document + if (strcmp(msg.pDocName, PadView->getObject()->getDocument()->getName()) != 0) + return; -void TaskPadParameters::onUpdateView(bool on) -{ - ui->changeMode->blockSignals(!on); - ui->doubleSpinBox->blockSignals(!on); - ui->checkBoxMidplane->blockSignals(!on); - ui->checkBoxReversed->blockSignals(!on); - ui->doubleSpinBox2->blockSignals(!on); + if (!msg.pSubName || msg.pSubName[0] == '\0') + return; + std::string subName(msg.pSubName); + if (subName.substr(0,4) != "Face") + return; + int faceId = std::atoi(&subName[4]); + + // Don't allow selection outside support + PartDesign::Pad* pcPad = static_cast(PadView->getObject()); + Part::Feature* support = pcPad->getSupport(); + if (support == NULL) { + // There is no support, so we can't select from it... + // Turn off reference selection mode + onButtonFace(false); + return; + } + if (strcmp(msg.pObjectName, support->getNameInDocument()) != 0) + return; + + std::vector upToFaces(1,subName); + pcPad->UpToFace.setValue(support, upToFaces); + if (updateView()) + pcPad->getDocument()->recomputeFeature(pcPad); + ui->lineFaceName->blockSignals(true); + ui->lineFaceName->setText(tr("Face") + QString::number(faceId)); + ui->lineFaceName->setProperty("FaceName", QByteArray(subName.c_str())); + ui->lineFaceName->blockSignals(false); + // Turn off reference selection mode + onButtonFace(false); + } + else if (msg.Type == Gui::SelectionChanges::ClrSelection) { + ui->lineFaceName->blockSignals(true); + ui->lineFaceName->setText(tr("No face selected")); + ui->lineFaceName->setProperty("FaceName", QByteArray()); + ui->lineFaceName->blockSignals(false); + } } void TaskPadParameters::onLengthChanged(double len) { PartDesign::Pad* pcPad = static_cast(PadView->getObject()); pcPad->Length.setValue((float)len); - pcPad->getDocument()->recomputeFeature(pcPad); + if (updateView()) + pcPad->getDocument()->recomputeFeature(pcPad); } void TaskPadParameters::onMidplane(bool on) { PartDesign::Pad* pcPad = static_cast(PadView->getObject()); pcPad->Midplane.setValue(on); - pcPad->getDocument()->recomputeFeature(pcPad); + ui->checkBoxReversed->setEnabled(!on); + if (updateView()) + pcPad->getDocument()->recomputeFeature(pcPad); } void TaskPadParameters::onReversed(bool on) { PartDesign::Pad* pcPad = static_cast(PadView->getObject()); pcPad->Reversed.setValue(on); - pcPad->getDocument()->recomputeFeature(pcPad); + if (updateView()) + pcPad->getDocument()->recomputeFeature(pcPad); } void TaskPadParameters::onLength2Changed(double len) { PartDesign::Pad* pcPad = static_cast(PadView->getObject()); pcPad->Length2.setValue((float)len); - pcPad->getDocument()->recomputeFeature(pcPad); + if (updateView()) + pcPad->getDocument()->recomputeFeature(pcPad); } void TaskPadParameters::onModeChanged(int index) @@ -205,7 +270,12 @@ void TaskPadParameters::onModeChanged(int index) PartDesign::Pad* pcPad = static_cast(PadView->getObject()); switch (index) { - case 0: pcPad->Type.setValue("Length"); break; + case 0: + pcPad->Type.setValue("Length"); + // Avoid error message + if (ui->doubleSpinBox->value() < Precision::Confusion()) + ui->doubleSpinBox->setValue(5.0); + break; case 1: pcPad->Type.setValue("UpToLast"); break; case 2: pcPad->Type.setValue("UpToFirst"); break; case 3: pcPad->Type.setValue("UpToFace"); break; @@ -214,17 +284,75 @@ void TaskPadParameters::onModeChanged(int index) updateUI(index); - pcPad->getDocument()->recomputeFeature(pcPad); + if (updateView()) + pcPad->getDocument()->recomputeFeature(pcPad); +} + +void TaskPadParameters::onButtonFace(const bool pressed) { + PartDesign::Pad* pcPad = static_cast(PadView->getObject()); + Part::Feature* support = pcPad->getSupport(); + if (support == NULL) { + // There is no support, so we can't select from it... + return; + } + + if (pressed) { + Gui::Document* doc = Gui::Application::Instance->activeDocument(); + if (doc) { + doc->setHide(PadView->getObject()->getNameInDocument()); + doc->setShow(support->getNameInDocument()); + } + Gui::Selection().clearSelection(); + Gui::Selection().addSelectionGate + (new ReferenceSelection(support, false, true, false)); + } else { + Gui::Selection().rmvSelectionGate(); + Gui::Document* doc = Gui::Application::Instance->activeDocument(); + if (doc) { + doc->setShow(PadView->getObject()->getNameInDocument()); + doc->setHide(support->getNameInDocument()); + } + } + + // Update button if onButtonFace() is called explicitly + ui->buttonFace->setChecked(pressed); } void TaskPadParameters::onFaceName(const QString& text) { - if (text.left(4) != tr("Face")) - return; + // We must expect that "text" is the translation of "Face" followed by an ID. + QString name; + QTextStream str(&name); + str << "^" << tr("Face") << "(\\d+)$"; + QRegExp rx(name); + if (text.indexOf(rx) < 0) { + ui->lineFaceName->setProperty("FaceName", QByteArray()); + return; + } + + int faceId = rx.cap(1).toInt(); + std::stringstream ss; + ss << "Face" << faceId; + ui->lineFaceName->setProperty("FaceName", QByteArray(ss.str().c_str())); PartDesign::Pad* pcPad = static_cast(PadView->getObject()); - pcPad->FaceName.setValue(text.toUtf8()); - pcPad->getDocument()->recomputeFeature(pcPad); + Part::Feature* support = pcPad->getSupport(); + if (support == NULL) { + // There is no support, so we can't select from it... + return; + } + std::vector upToFaces(1,ss.str()); + pcPad->UpToFace.setValue(support, upToFaces); + if (updateView()) + pcPad->getDocument()->recomputeFeature(pcPad); +} + +void TaskPadParameters::onUpdateView(bool on) +{ + if (on) { + PartDesign::Pad* pcPad = static_cast(PadView->getObject()); + pcPad->getDocument()->recomputeFeature(pcPad); + } } double TaskPadParameters::getLength(void) const @@ -252,9 +380,14 @@ int TaskPadParameters::getMode(void) const return ui->changeMode->currentIndex(); } -const QString TaskPadParameters::getFaceName(void) const +QByteArray TaskPadParameters::getFaceName(void) const { - return ui->lineFaceName->text(); + return ui->lineFaceName->property("FaceName").toByteArray(); +} + +const bool TaskPadParameters::updateView() const +{ + return ui->checkBoxUpdateView->isChecked(); } TaskPadParameters::~TaskPadParameters() @@ -313,7 +446,17 @@ bool TaskDlgPadParameters::accept() Gui::Command::doCommand(Gui::Command::Doc,"App.ActiveDocument.%s.Midplane = %i",name.c_str(),parameter->getMidplane()?1:0); Gui::Command::doCommand(Gui::Command::Doc,"App.ActiveDocument.%s.Length2 = %f",name.c_str(),parameter->getLength2()); Gui::Command::doCommand(Gui::Command::Doc,"App.ActiveDocument.%s.Type = %u",name.c_str(),parameter->getMode()); - Gui::Command::doCommand(Gui::Command::Doc,"App.ActiveDocument.%s.FaceName = \"%s\"",name.c_str(),parameter->getFaceName().toAscii().data()); + const char* facename = parameter->getFaceName().data(); + PartDesign::Pad* pcPad = static_cast(PadView->getObject()); + Part::Feature* support = pcPad->getSupport(); + + if (support != NULL && facename && facename[0] != '\0') { + QString buf = QString::fromUtf8("(App.ActiveDocument.%1,[\"%2\"])"); + buf = buf.arg(QString::fromUtf8(support->getNameInDocument())); + buf = buf.arg(QString::fromUtf8(facename)); + Gui::Command::doCommand(Gui::Command::Doc,"App.ActiveDocument.%s.UpToFace = %s", name.c_str(), buf.toStdString().c_str()); + } else + Gui::Command::doCommand(Gui::Command::Doc,"App.ActiveDocument.%s.UpToFace = None", name.c_str()); Gui::Command::doCommand(Gui::Command::Doc,"App.ActiveDocument.recompute()"); if (!PadView->getObject()->isValid()) throw Base::Exception(PadView->getObject()->getStatusString()); @@ -339,7 +482,7 @@ bool TaskDlgPadParameters::reject() pcSupport = pcSketch->Support.getValue(); } - // role back the done things + // roll back the done things Gui::Command::abortCommand(); Gui::Command::doCommand(Gui::Command::Gui,"Gui.activeDocument().resetEdit()"); diff --git a/src/Mod/PartDesign/Gui/TaskPadParameters.h b/src/Mod/PartDesign/Gui/TaskPadParameters.h index f4f64d24e..e17a30527 100644 --- a/src/Mod/PartDesign/Gui/TaskPadParameters.h +++ b/src/Mod/PartDesign/Gui/TaskPadParameters.h @@ -57,7 +57,8 @@ public: double getLength2(void) const; bool getReversed(void) const; bool getMidplane(void) const; - const QString getFaceName(void) const; + QByteArray getFaceName(void) const; + const bool updateView() const; private Q_SLOTS: void onLengthChanged(double); @@ -65,6 +66,7 @@ private Q_SLOTS: void onReversed(bool); void onLength2Changed(double); void onModeChanged(int); + void onButtonFace(const bool pressed = true); void onFaceName(const QString& text); void onUpdateView(bool); diff --git a/src/Mod/PartDesign/Gui/TaskPadParameters.ui b/src/Mod/PartDesign/Gui/TaskPadParameters.ui index 277adba2d..69e85d4f8 100644 --- a/src/Mod/PartDesign/Gui/TaskPadParameters.ui +++ b/src/Mod/PartDesign/Gui/TaskPadParameters.ui @@ -7,7 +7,7 @@ 0 0 272 - 238 + 271 @@ -46,7 +46,7 @@ - -999999999.000000000000000 + 0.000000000000000 999999999.000000000000000 @@ -90,7 +90,7 @@ - -999999999.000000000000000 + 0.000000000000000 999999999.000000000000000 @@ -108,7 +108,7 @@ - + Face @@ -119,6 +119,13 @@ + + + + Qt::Horizontal + + + diff --git a/src/Mod/PartDesign/Gui/TaskPocketParameters.cpp b/src/Mod/PartDesign/Gui/TaskPocketParameters.cpp index cfa9f7155..b29be9fab 100644 --- a/src/Mod/PartDesign/Gui/TaskPocketParameters.cpp +++ b/src/Mod/PartDesign/Gui/TaskPocketParameters.cpp @@ -24,6 +24,11 @@ #include "PreCompiled.h" #ifndef _PreComp_ +# include +# include +# include +# include +# include #endif #include "ui_TaskPocketParameters.h" @@ -40,7 +45,7 @@ #include #include #include - +#include "ReferenceSelection.h" using namespace PartDesignGui; using namespace Gui; @@ -58,39 +63,63 @@ TaskPocketParameters::TaskPocketParameters(ViewProviderPocket *PocketView,QWidge connect(ui->doubleSpinBox, SIGNAL(valueChanged(double)), this, SLOT(onLengthChanged(double))); + connect(ui->checkBoxMidplane, SIGNAL(toggled(bool)), + this, SLOT(onMidplaneChanged(bool))); connect(ui->changeMode, SIGNAL(currentIndexChanged(int)), this, SLOT(onModeChanged(int))); + connect(ui->buttonFace, SIGNAL(pressed()), + this, SLOT(onButtonFace())); connect(ui->lineFaceName, SIGNAL(textEdited(QString)), this, SLOT(onFaceName(QString))); + connect(ui->checkBoxUpdateView, SIGNAL(toggled(bool)), + this, SLOT(onUpdateView(bool))); this->groupLayout()->addWidget(proxy); + // Temporarily prevent unnecessary feature recomputes + ui->doubleSpinBox->blockSignals(true); + ui->checkBoxMidplane->blockSignals(true); + ui->buttonFace->blockSignals(true); + ui->lineFaceName->blockSignals(true); + ui->changeMode->blockSignals(true); + + // Get the feature data PartDesign::Pocket* pcPocket = static_cast(PocketView->getObject()); double l = pcPocket->Length.getValue(); + bool midplane = pcPocket->Midplane.getValue(); int index = pcPocket->Type.getValue(); // must extract value here, clear() kills it! - const char* upToFace = pcPocket->FaceName.getValue(); + std::vector subStrings = pcPocket->UpToFace.getSubValues(); + std::string upToFace; + int faceId = -1; + if (!subStrings.empty()) { + upToFace = subStrings.front(); + if (upToFace.substr(0,4) == "Face") + faceId = std::atoi(&upToFace[4]); + } + // Fill data into dialog elements + ui->doubleSpinBox->setMinimum(0); + ui->doubleSpinBox->setMaximum(INT_MAX); + ui->doubleSpinBox->setValue(l); + ui->checkBoxMidplane->setChecked(midplane); + ui->lineFaceName->setText(faceId >= 0 ? + tr("Face") + QString::number(faceId) : + tr("No face selected")); + ui->lineFaceName->setProperty("FaceName", QByteArray(upToFace.c_str())); ui->changeMode->clear(); ui->changeMode->insertItem(0, tr("Dimension")); - ui->changeMode->insertItem(1, tr("To last")); + ui->changeMode->insertItem(1, tr("Through all")); ui->changeMode->insertItem(2, tr("To first")); - ui->changeMode->insertItem(3, tr("Through all")); - ui->changeMode->insertItem(4, tr("Up to face")); + ui->changeMode->insertItem(3, tr("Up to face")); ui->changeMode->setCurrentIndex(index); + ui->checkBoxMidplane->setChecked(midplane); - if (index == 0) { // Only this option requires a numeric value - ui->doubleSpinBox->setMaximum(INT_MAX); - ui->doubleSpinBox->setValue(l); - ui->doubleSpinBox->selectAll(); - QMetaObject::invokeMethod(ui->doubleSpinBox, "setFocus", Qt::QueuedConnection); - ui->lineFaceName->setEnabled(false); - } else if (index == 4) { // Only this option requires to select a face - ui->doubleSpinBox->setEnabled(false); - ui->lineFaceName->setText(pcPocket->FaceName.isEmpty() ? tr("No face selected") : tr(upToFace)); - } else { // Neither value nor face required - ui->doubleSpinBox->setEnabled(false); - ui->lineFaceName->setEnabled(false); - } + ui->doubleSpinBox->blockSignals(false); + ui->checkBoxMidplane->blockSignals(false); + ui->buttonFace->blockSignals(false); + ui->lineFaceName->blockSignals(false); + ui->changeMode->blockSignals(false); + updateUI(index); //// check if the sketch has support //Sketcher::SketchObject *pcSketch; @@ -104,22 +133,82 @@ TaskPocketParameters::TaskPocketParameters(ViewProviderPocket *PocketView,QWidge //} } +void TaskPocketParameters::updateUI(int index) +{ + if (index == 0) { // Only this option requires a numeric value + ui->doubleSpinBox->setEnabled(true); + ui->doubleSpinBox->selectAll(); + QMetaObject::invokeMethod(ui->doubleSpinBox, "setFocus", Qt::QueuedConnection); + ui->checkBoxMidplane->setEnabled(true); + ui->buttonFace->setEnabled(false); + ui->lineFaceName->setEnabled(false); + onButtonFace(false); + } else if (index == 1) { + ui->checkBoxMidplane->setEnabled(true); + ui->doubleSpinBox->setEnabled(false); + ui->buttonFace->setEnabled(false); + ui->lineFaceName->setEnabled(false); + onButtonFace(false); + } else if (index == 2) { // Neither value nor face required + ui->doubleSpinBox->setEnabled(false); + ui->checkBoxMidplane->setEnabled(false); + ui->buttonFace->setEnabled(false); + ui->lineFaceName->setEnabled(false); + onButtonFace(false); + } else if (index == 3) { // Only this option requires to select a face + ui->doubleSpinBox->setEnabled(false); + ui->checkBoxMidplane->setEnabled(false); + ui->buttonFace->setEnabled(true); + ui->lineFaceName->setEnabled(true); + QMetaObject::invokeMethod(ui->lineFaceName, "setFocus", Qt::QueuedConnection); + // Go into reference selection mode if no face has been selected yet + if (ui->lineFaceName->text().isEmpty()) + onButtonFace(true); + } +} + void TaskPocketParameters::onSelectionChanged(const Gui::SelectionChanges& msg) { - PartDesign::Pocket* pcPocket = static_cast(PocketView->getObject()); - if (pcPocket->Type.getValue() != 4) // ignore user selections if mode is not upToFace - return; - - if (!msg.pSubName || msg.pSubName[0] == '\0') - return; - std::string element(msg.pSubName); - if (element.substr(0,4) != "Face") - return; - if (msg.Type == Gui::SelectionChanges::AddSelection) { - pcPocket->FaceName.setValue(element); - pcPocket->getDocument()->recomputeFeature(pcPocket); - ui->lineFaceName->setText(tr(element.c_str())); + // Don't allow selection in other document + if (strcmp(msg.pDocName, PocketView->getObject()->getDocument()->getName()) != 0) + return; + + if (!msg.pSubName || msg.pSubName[0] == '\0') + return; + std::string subName(msg.pSubName); + if (subName.substr(0,4) != "Face") + return; + int faceId = std::atoi(&subName[4]); + + // Don't allow selection outside of support + PartDesign::Pocket* pcPocket = static_cast(PocketView->getObject()); + Part::Feature* support = pcPocket->getSupport(); + if (support == NULL) { + // There is no support, so we can't select from it... + // Turn off reference selection mode + onButtonFace(false); + return; + } + if (strcmp(msg.pObjectName, support->getNameInDocument()) != 0) + return; + + std::vector upToFaces(1,subName); + pcPocket->UpToFace.setValue(support, upToFaces); + if (updateView()) + pcPocket->getDocument()->recomputeFeature(pcPocket); + ui->lineFaceName->blockSignals(true); + ui->lineFaceName->setText(tr("Face") + QString::number(faceId)); + ui->lineFaceName->setProperty("FaceName", QByteArray(subName.c_str())); + ui->lineFaceName->blockSignals(false); + // Turn off reference selection mode + onButtonFace(false); + } + else if (msg.Type == Gui::SelectionChanges::ClrSelection) { + ui->lineFaceName->blockSignals(true); + ui->lineFaceName->setText(tr("No face selected")); + ui->lineFaceName->setProperty("FaceName", QByteArray()); + ui->lineFaceName->blockSignals(false); } } @@ -127,7 +216,16 @@ void TaskPocketParameters::onLengthChanged(double len) { PartDesign::Pocket* pcPocket = static_cast(PocketView->getObject()); pcPocket->Length.setValue((float)len); - pcPocket->getDocument()->recomputeFeature(pcPocket); + if (updateView()) + pcPocket->getDocument()->recomputeFeature(pcPocket); +} + +void TaskPocketParameters::onMidplaneChanged(bool on) +{ + PartDesign::Pocket* pcPocket = static_cast(PocketView->getObject()); + pcPocket->Midplane.setValue(on); + if (updateView()) + pcPocket->getDocument()->recomputeFeature(pcPocket); } void TaskPocketParameters::onModeChanged(int index) @@ -135,38 +233,105 @@ void TaskPocketParameters::onModeChanged(int index) PartDesign::Pocket* pcPocket = static_cast(PocketView->getObject()); switch (index) { - case 0: pcPocket->Type.setValue("Length"); break; - case 1: pcPocket->Type.setValue("UpToLast"); break; - case 2: pcPocket->Type.setValue("UpToFirst"); break; - case 3: pcPocket->Type.setValue("ThroughAll"); break; - case 4: pcPocket->Type.setValue("UpToFace"); break; - default: pcPocket->Type.setValue("Length"); + case 0: + // Why? See below for "UpToFace" + pcPocket->Type.setValue("Length"); + if (oldLength < Precision::Confusion()) + oldLength = 5.0; + pcPocket->Length.setValue(oldLength); + ui->doubleSpinBox->setValue(oldLength); + break; + case 1: + oldLength = pcPocket->Length.getValue(); + pcPocket->Type.setValue("ThroughAll"); + break; + case 2: + oldLength = pcPocket->Length.getValue(); + pcPocket->Type.setValue("UpToFirst"); + break; + case 3: + // Because of the code at the begining of Pocket::execute() which is used to detect + // broken legacy parts, we must set the length to zero here! + oldLength = pcPocket->Length.getValue(); + pcPocket->Type.setValue("UpToFace"); + pcPocket->Length.setValue(0.0); + ui->doubleSpinBox->setValue(0.0); + break; + default: + pcPocket->Type.setValue("Length"); } - if (index == 0) { - ui->doubleSpinBox->setEnabled(true); - ui->lineFaceName->setEnabled(false); - ui->doubleSpinBox->setValue(pcPocket->Length.getValue()); - } else if (index == 4) { - ui->lineFaceName->setEnabled(true); - ui->doubleSpinBox->setEnabled(false); - ui->lineFaceName->setText(tr(pcPocket->FaceName.getValue())); + updateUI(index); + + if (updateView()) + pcPocket->getDocument()->recomputeFeature(pcPocket); +} + +void TaskPocketParameters::onButtonFace(const bool pressed) { + PartDesign::Pocket* pcPocket = static_cast(PocketView->getObject()); + Part::Feature* support = pcPocket->getSupport(); + if (support == NULL) { + // There is no support, so we can't select from it... + return; + } + + if (pressed) { + Gui::Document* doc = Gui::Application::Instance->activeDocument(); + if (doc) { + doc->setHide(PocketView->getObject()->getNameInDocument()); + doc->setShow(support->getNameInDocument()); + } + Gui::Selection().clearSelection(); + Gui::Selection().addSelectionGate + (new ReferenceSelection(support, false, true, false)); } else { - ui->doubleSpinBox->setEnabled(false); - ui->lineFaceName->setEnabled(false); + Gui::Selection().rmvSelectionGate(); + Gui::Document* doc = Gui::Application::Instance->activeDocument(); + if (doc) { + doc->setShow(PocketView->getObject()->getNameInDocument()); + doc->setHide(support->getNameInDocument()); + } } - pcPocket->getDocument()->recomputeFeature(pcPocket); + // Update button if onButtonFace() is called explicitly + ui->buttonFace->setChecked(pressed); } void TaskPocketParameters::onFaceName(const QString& text) { - if (text.left(4) != tr("Face")) - return; + // We must expect that "text" is the translation of "Face" followed by an ID. + QString name; + QTextStream str(&name); + str << "^" << tr("Face") << "(\\d+)$"; + QRegExp rx(name); + if (text.indexOf(rx) < 0) { + ui->lineFaceName->setProperty("FaceName", QByteArray()); + return; + } + + int faceId = rx.cap(1).toInt(); + std::stringstream ss; + ss << "Face" << faceId; + ui->lineFaceName->setProperty("FaceName", QByteArray(ss.str().c_str())); PartDesign::Pocket* pcPocket = static_cast(PocketView->getObject()); - pcPocket->FaceName.setValue(text.toUtf8()); - pcPocket->getDocument()->recomputeFeature(pcPocket); + Part::Feature* support = pcPocket->getSupport(); + if (support == NULL) { + // There is no support, so we can't select from it... + return; + } + std::vector upToFaces(1,ss.str()); + pcPocket->UpToFace.setValue(support, upToFaces); + if (updateView()) + pcPocket->getDocument()->recomputeFeature(pcPocket); +} + +void TaskPocketParameters::onUpdateView(bool on) +{ + if (on) { + PartDesign::Pocket* pcPocket = static_cast(PocketView->getObject()); + pcPocket->getDocument()->recomputeFeature(pcPocket); + } } double TaskPocketParameters::getLength(void) const @@ -179,9 +344,14 @@ int TaskPocketParameters::getMode(void) const return ui->changeMode->currentIndex(); } -const QString TaskPocketParameters::getFaceName(void) const +QByteArray TaskPocketParameters::getFaceName(void) const { - return ui->lineFaceName->text(); + return ui->lineFaceName->property("FaceName").toByteArray(); +} + +const bool TaskPocketParameters::updateView() const +{ + return ui->checkBoxUpdateView->isChecked(); } TaskPocketParameters::~TaskPocketParameters() @@ -233,13 +403,30 @@ bool TaskDlgPocketParameters::accept() { std::string name = PocketView->getObject()->getNameInDocument(); - //Gui::Command::openCommand("Pocket changed"); - Gui::Command::doCommand(Gui::Command::Doc,"App.ActiveDocument.%s.Length = %f",name.c_str(),parameter->getLength()); - Gui::Command::doCommand(Gui::Command::Doc,"App.ActiveDocument.%s.Type = %u",name.c_str(),parameter->getMode()); - Gui::Command::doCommand(Gui::Command::Doc,"App.ActiveDocument.%s.FaceName = \"%s\"",name.c_str(),parameter->getFaceName().toAscii().data()); - Gui::Command::doCommand(Gui::Command::Doc,"App.ActiveDocument.recompute()"); - Gui::Command::doCommand(Gui::Command::Gui,"Gui.activeDocument().resetEdit()"); - Gui::Command::commitCommand(); + try { + //Gui::Command::openCommand("Pocket changed"); + Gui::Command::doCommand(Gui::Command::Doc,"App.ActiveDocument.%s.Length = %f",name.c_str(),parameter->getLength()); + Gui::Command::doCommand(Gui::Command::Doc,"App.ActiveDocument.%s.Type = %u",name.c_str(),parameter->getMode()); + const char* facename = parameter->getFaceName().data(); + PartDesign::Pocket* pcPocket = static_cast(PocketView->getObject()); + Part::Feature* support = pcPocket->getSupport(); + if (support != NULL && facename && facename[0] != '\0') { + QString buf = QString::fromUtf8("(App.ActiveDocument.%1,[\"%2\"])"); + buf = buf.arg(QString::fromUtf8(support->getNameInDocument())); + buf = buf.arg(QString::fromUtf8(facename)); + Gui::Command::doCommand(Gui::Command::Doc,"App.ActiveDocument.%s.UpToFace = %s", name.c_str(), buf.toStdString().c_str()); + } else + Gui::Command::doCommand(Gui::Command::Doc,"App.ActiveDocument.%s.UpToFace = None", name.c_str()); + Gui::Command::doCommand(Gui::Command::Doc,"App.ActiveDocument.recompute()"); + if (!PocketView->getObject()->isValid()) + throw Base::Exception(PocketView->getObject()->getStatusString()); + Gui::Command::doCommand(Gui::Command::Gui,"Gui.activeDocument().resetEdit()"); + Gui::Command::commitCommand(); + } + catch (const Base::Exception& e) { + QMessageBox::warning(parameter, tr("Input error"), QString::fromAscii(e.what())); + return false; + } return true; } diff --git a/src/Mod/PartDesign/Gui/TaskPocketParameters.h b/src/Mod/PartDesign/Gui/TaskPocketParameters.h index bbb6bbb3f..dbabca61f 100644 --- a/src/Mod/PartDesign/Gui/TaskPocketParameters.h +++ b/src/Mod/PartDesign/Gui/TaskPocketParameters.h @@ -53,24 +53,31 @@ public: ~TaskPocketParameters(); double getLength(void) const; + bool getMidplane(void) const; int getMode(void) const; - const QString getFaceName(void) const; + QByteArray getFaceName(void) const; + const bool updateView() const; private Q_SLOTS: void onLengthChanged(double); + void onMidplaneChanged(bool); void onModeChanged(int); + void onButtonFace(const bool pressed = true); void onFaceName(const QString& text); + void onUpdateView(bool); protected: void changeEvent(QEvent *e); private: void onSelectionChanged(const Gui::SelectionChanges& msg); + void updateUI(int index); private: QWidget* proxy; Ui_TaskPocketParameters* ui; ViewProviderPocket *PocketView; + double oldLength; }; /// simulation dialog for the TaskView diff --git a/src/Mod/PartDesign/Gui/TaskPocketParameters.ui b/src/Mod/PartDesign/Gui/TaskPocketParameters.ui index 4f313be76..5182479d2 100644 --- a/src/Mod/PartDesign/Gui/TaskPocketParameters.ui +++ b/src/Mod/PartDesign/Gui/TaskPocketParameters.ui @@ -7,7 +7,7 @@ 0 0 241 - 134 + 192 @@ -25,78 +25,87 @@ Form - - - - 10 - 10 - 211 - 34 - - - - - - - Type - - - - - - + + + + + - Dimension + Type - - - - - - - - - 10 - 90 - 211 - 34 - - - - - - - Face - - - - - - - - - - - - 10 - 50 - 211 - 34 - - - - - - - Length - - - - - - - - + + + + + + + Dimension + + + + + + + + + + + + Length + + + + + + + 999999999.000000000000000 + + + + + + + + + true + + + Symmetric to plane + + + + + + + + + Face + + + + + + + + + + + + Qt::Horizontal + + + + + + + Update view + + + true + + + + diff --git a/src/Mod/PartDesign/Gui/TaskRevolutionParameters.cpp b/src/Mod/PartDesign/Gui/TaskRevolutionParameters.cpp index f78134b74..71bd26745 100644 --- a/src/Mod/PartDesign/Gui/TaskRevolutionParameters.cpp +++ b/src/Mod/PartDesign/Gui/TaskRevolutionParameters.cpp @@ -64,9 +64,17 @@ TaskRevolutionParameters::TaskRevolutionParameters(ViewProviderRevolution *Revol this, SLOT(onMidplane(bool))); connect(ui->checkBoxReversed, SIGNAL(toggled(bool)), this, SLOT(onReversed(bool))); + connect(ui->checkBoxUpdateView, SIGNAL(toggled(bool)), + this, SLOT(onUpdateView(bool))); this->groupLayout()->addWidget(proxy); + // Temporarily prevent unnecessary feature recomputes + ui->doubleSpinBox->blockSignals(true); + ui->axis->blockSignals(true); + ui->checkBoxMidplane->blockSignals(true); + ui->checkBoxReversed->blockSignals(true); + PartDesign::Revolution* pcRevolution = static_cast(RevolutionView->getObject()); double l = pcRevolution->Angle.getValue(); bool mirrored = pcRevolution->Midplane.getValue(); @@ -105,6 +113,11 @@ TaskRevolutionParameters::TaskRevolutionParameters(ViewProviderRevolution *Revol ui->checkBoxMidplane->setChecked(mirrored); ui->checkBoxReversed->setChecked(reversed); + ui->doubleSpinBox->blockSignals(false); + ui->axis->blockSignals(false); + ui->checkBoxMidplane->blockSignals(false); + ui->checkBoxReversed->blockSignals(false); + setFocus (); } @@ -112,7 +125,8 @@ void TaskRevolutionParameters::onAngleChanged(double len) { PartDesign::Revolution* pcRevolution = static_cast(RevolutionView->getObject()); pcRevolution->Angle.setValue((float)len); - pcRevolution->getDocument()->recomputeFeature(pcRevolution); + if (updateView()) + pcRevolution->getDocument()->recomputeFeature(pcRevolution); } void TaskRevolutionParameters::onAxisChanged(int num) @@ -133,21 +147,32 @@ void TaskRevolutionParameters::onAxisChanged(int num) if (num < maxcount && ui->axis->count() > maxcount) ui->axis->setMaxCount(maxcount); } - pcRevolution->getDocument()->recomputeFeature(pcRevolution); + if (updateView()) + pcRevolution->getDocument()->recomputeFeature(pcRevolution); } void TaskRevolutionParameters::onMidplane(bool on) { PartDesign::Revolution* pcRevolution = static_cast(RevolutionView->getObject()); pcRevolution->Midplane.setValue(on); - pcRevolution->getDocument()->recomputeFeature(pcRevolution); + if (updateView()) + pcRevolution->getDocument()->recomputeFeature(pcRevolution); } void TaskRevolutionParameters::onReversed(bool on) { PartDesign::Revolution* pcRevolution = static_cast(RevolutionView->getObject()); pcRevolution->Reversed.setValue(on); - pcRevolution->getDocument()->recomputeFeature(pcRevolution); + if (updateView()) + pcRevolution->getDocument()->recomputeFeature(pcRevolution); +} + +void TaskRevolutionParameters::onUpdateView(bool on) +{ + if (on) { + PartDesign::Revolution* pcRevolution = static_cast(RevolutionView->getObject()); + pcRevolution->getDocument()->recomputeFeature(pcRevolution); + } } double TaskRevolutionParameters::getAngle(void) const @@ -190,6 +215,11 @@ bool TaskRevolutionParameters::getReversed(void) const return ui->checkBoxReversed->isChecked(); } +const bool TaskRevolutionParameters::updateView() const +{ + return ui->checkBoxUpdateView->isChecked(); +} + TaskRevolutionParameters::~TaskRevolutionParameters() { delete ui; diff --git a/src/Mod/PartDesign/Gui/TaskRevolutionParameters.h b/src/Mod/PartDesign/Gui/TaskRevolutionParameters.h index 1d9eb71a8..6b0d9eec7 100644 --- a/src/Mod/PartDesign/Gui/TaskRevolutionParameters.h +++ b/src/Mod/PartDesign/Gui/TaskRevolutionParameters.h @@ -53,15 +53,17 @@ public: ~TaskRevolutionParameters(); QString getReferenceAxis(void) const; - double getAngle(void) const; - bool getMidplane(void) const; - bool getReversed(void) const; + double getAngle(void) const; + bool getMidplane(void) const; + bool getReversed(void) const; + const bool updateView() const; private Q_SLOTS: void onAngleChanged(double); void onAxisChanged(int); void onMidplane(bool); void onReversed(bool); + void onUpdateView(bool); protected: void changeEvent(QEvent *e); diff --git a/src/Mod/PartDesign/Gui/TaskRevolutionParameters.ui b/src/Mod/PartDesign/Gui/TaskRevolutionParameters.ui index dac292f99..bef4562c9 100644 --- a/src/Mod/PartDesign/Gui/TaskRevolutionParameters.ui +++ b/src/Mod/PartDesign/Gui/TaskRevolutionParameters.ui @@ -7,7 +7,7 @@ 0 0 278 - 158 + 193 @@ -86,6 +86,23 @@ + + + + Qt::Horizontal + + + + + + + Update view + + + true + + + diff --git a/src/Mod/PartDesign/Gui/TaskTransformedParameters.cpp b/src/Mod/PartDesign/Gui/TaskTransformedParameters.cpp index 83952dcfc..b7fdb6fe6 100644 --- a/src/Mod/PartDesign/Gui/TaskTransformedParameters.cpp +++ b/src/Mod/PartDesign/Gui/TaskTransformedParameters.cpp @@ -45,6 +45,7 @@ #include #include #include +#include "ReferenceSelection.h" using namespace PartDesignGui; using namespace Gui; @@ -192,42 +193,9 @@ void TaskTransformedParameters::exitSelectionMode() hideOriginals(); } -class ReferenceSelection : public Gui::SelectionFilterGate -{ - const App::DocumentObject* support; - bool edge, plane; -public: - ReferenceSelection(const App::DocumentObject* support_, bool edge_, bool plane_) - : Gui::SelectionFilterGate((Gui::SelectionFilter*)0), - support(support_), edge(edge_), plane(plane_) - { - } - bool allow(App::Document* pDoc, App::DocumentObject* pObj, const char* sSubName) - { - if (!sSubName || sSubName[0] == '\0') - return false; - if (pObj != support) - return false; - std::string subName(sSubName); - if (edge && subName.size() > 4 && subName.substr(0,4) == "Edge") - return true; - if (plane && subName.size() > 4 && subName.substr(0,4) == "Face") { - const Part::TopoShape &shape = static_cast(support)->Shape.getValue(); - TopoDS_Shape sh = shape.getSubShape(subName.c_str()); - const TopoDS_Face& face = TopoDS::Face(sh); - if (!face.IsNull()) { - BRepAdaptor_Surface adapt(face); - if (adapt.GetType() == GeomAbs_Plane) - return true; - } - } - return false; - } -}; - void TaskTransformedParameters::addReferenceSelectionGate(bool edge, bool face) { - Gui::Selection().addSelectionGate(new ReferenceSelection(getSupportObject(), edge, face)); + Gui::Selection().addSelectionGate(new ReferenceSelection(getSupportObject(), edge, face, true)); } diff --git a/src/Mod/Plot/CMakeLists.txt b/src/Mod/Plot/CMakeLists.txt new file mode 100644 index 000000000..f52bb5f70 --- /dev/null +++ b/src/Mod/Plot/CMakeLists.txt @@ -0,0 +1,119 @@ +SET(PlotMain_SRCS + Plot.py + InitGui.py + PlotGui.py +) +SOURCE_GROUP("" FILES ${PlotMain_SRCS}) + +SET(PlotIcons_SRCS + Icons/Axes.svg + Icons/Grid.svg + Icons/Icon.svg + Icons/Labels.svg + Icons/Legend.svg + Icons/Positions.svg + Icons/Save.svg + Icons/Series.svg +) +SOURCE_GROUP("ploticons" FILES ${PlotIcons_SRCS}) + +SET(PlotAxes_SRCS + plotAxes/__init__.py + plotAxes/TaskPanel.py + plotAxes/TaskPanel.ui +) +SOURCE_GROUP("plotaxes" FILES ${PlotAxes_SRCS}) + +SET(PlotLabels_SRCS + plotLabels/__init__.py + plotLabels/TaskPanel.py + plotLabels/TaskPanel.ui +) +SOURCE_GROUP("plotlabels" FILES ${PlotLabels_SRCS}) + +SET(PlotPositions_SRCS + plotPositions/__init__.py + plotPositions/TaskPanel.py + plotPositions/TaskPanel.ui +) +SOURCE_GROUP("plotpositions" FILES ${PlotPositions_SRCS}) + +SET(PlotSave_SRCS + plotSave/__init__.py + plotSave/TaskPanel.py + plotSave/TaskPanel.ui +) +SOURCE_GROUP("plotsave" FILES ${PlotSave_SRCS}) + +SET(PlotSeries_SRCS + plotSeries/__init__.py + plotSeries/TaskPanel.py + plotSeries/TaskPanel.ui +) +SOURCE_GROUP("plotseries" FILES ${PlotSeries_SRCS}) + +SET(PlotUtils_SRCS + plotUtils/__init__.py + plotUtils/Paths.py + plotUtils/Translator.py +) +SOURCE_GROUP("plotutils" FILES ${PlotUtils_SRCS}) + +SET(all_files ${PlotMain_SRCS} ${PlotAxes_SRCS} ${PlotLabels_SRCS} ${PlotPositions_SRCS} ${PlotSave_SRCS} ${PlotSeries_SRCS} ${PlotIcons_SRCS} ${PlotUtils_SRCS}) + +ADD_CUSTOM_TARGET(Plot ALL + SOURCES ${all_files} +) + +fc_copy_sources(Mod/Plot "${CMAKE_BINARY_DIR}/Mod/Plot" ${all_files}) + +INSTALL( + FILES + ${PlotIcons_SRCS} + DESTINATION + Mod/Plot/Icons +) +INSTALL( + FILES + ${PlotAxes_SRCS} + DESTINATION + Mod/Plot/plotAxes +) +INSTALL( + FILES + ${PlotLabels_SRCS} + DESTINATION + Mod/Plot/plotLabels +) +INSTALL( + FILES + ${PlotPositions_SRCS} + DESTINATION + Mod/Plot/plotPositions +) +INSTALL( + FILES + ${PlotSave_SRCS} + DESTINATION + Mod/Plot/plotSave +) +INSTALL( + FILES + ${PlotSeries_SRCS} + DESTINATION + Mod/Plot/plotSeries +) +INSTALL( + FILES + ${PlotUtils_SRCS} + DESTINATION + Mod/Plot/plotUtils +) +INSTALL( + FILES + ${PlotMain_SRCS} + DESTINATION + Mod/Plot +) + + diff --git a/src/Mod/Plot/Icons/Axes.svg b/src/Mod/Plot/Icons/Axes.svg new file mode 100644 index 000000000..63786323b --- /dev/null +++ b/src/Mod/Plot/Icons/Axes.svg @@ -0,0 +1,451 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/src/Mod/Plot/Icons/Grid.svg b/src/Mod/Plot/Icons/Grid.svg new file mode 100755 index 000000000..8e0847f9a --- /dev/null +++ b/src/Mod/Plot/Icons/Grid.svg @@ -0,0 +1,407 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Mod/Plot/Icons/Icon.svg b/src/Mod/Plot/Icons/Icon.svg new file mode 100755 index 000000000..ff800bde3 --- /dev/null +++ b/src/Mod/Plot/Icons/Icon.svg @@ -0,0 +1,403 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Mod/Plot/Icons/Labels.svg b/src/Mod/Plot/Icons/Labels.svg new file mode 100644 index 000000000..d448517e1 --- /dev/null +++ b/src/Mod/Plot/Icons/Labels.svg @@ -0,0 +1,705 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Mod/Plot/Icons/Legend.svg b/src/Mod/Plot/Icons/Legend.svg new file mode 100644 index 000000000..8cf15e82d --- /dev/null +++ b/src/Mod/Plot/Icons/Legend.svg @@ -0,0 +1,679 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Mod/Plot/Icons/Positions.svg b/src/Mod/Plot/Icons/Positions.svg new file mode 100644 index 000000000..895eb42a3 --- /dev/null +++ b/src/Mod/Plot/Icons/Positions.svg @@ -0,0 +1,702 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Mod/Plot/Icons/Save.svg b/src/Mod/Plot/Icons/Save.svg new file mode 100755 index 000000000..ebdf1f1e0 --- /dev/null +++ b/src/Mod/Plot/Icons/Save.svg @@ -0,0 +1,701 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Mod/Plot/Icons/Series.svg b/src/Mod/Plot/Icons/Series.svg new file mode 100644 index 000000000..1664f1a41 --- /dev/null +++ b/src/Mod/Plot/Icons/Series.svg @@ -0,0 +1,457 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/src/Mod/Plot/InitGui.py b/src/Mod/Plot/InitGui.py new file mode 100644 index 000000000..35d9d465a --- /dev/null +++ b/src/Mod/Plot/InitGui.py @@ -0,0 +1,50 @@ +#*************************************************************************** +#* * +#* Copyright (c) 2011, 2012 * +#* Jose Luis Cercos Pita * +#* * +#* This program is free software; you can redistribute it and/or modify * +#* it under the terms of the GNU Lesser General Public License (LGPL) * +#* as published by the Free Software Foundation; either version 2 of * +#* the License, or (at your option) any later version. * +#* for detail see the LICENCE text file. * +#* * +#* This program is distributed in the hope that it will be useful, * +#* but WITHOUT ANY WARRANTY; without even the implied warranty of * +#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +#* GNU Library General Public License for more details. * +#* * +#* You should have received a copy of the GNU Library General Public * +#* License along with this program; if not, write to the Free Software * +#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * +#* USA * +#* * +#*************************************************************************** + +class PlotWorkbench ( Workbench ): + """ @brief Workbench of Plot module. Here toolbars & icons are append. """ + from plotUtils import Paths, Translator + import PlotGui + + Icon = Paths.iconsPath() + "/Icon.svg" + MenuText = str(Translator.translate("Plot")) + ToolTip = str(Translator.translate("Plot")) + + def Initialize(self): + from plotUtils import Translator + # ToolBar + list = ["Plot_SaveFig", "Plot_Axes", "Plot_Series", "Plot_Grid", "Plot_Legend", "Plot_Labels", "Plot_Positions"] + self.appendToolbar("Plot",list) + + # Menu + list = ["Plot_SaveFig", "Plot_Axes", "Plot_Series", "Plot_Grid", "Plot_Legend", "Plot_Labels", "Plot_Positions"] + self.appendMenu("Plot",list) + +try: + import matplotlib + Gui.addWorkbench(PlotWorkbench()) +except ImportError: + from plotUtils import Translator + msg = Translator.translate("matplotlib not found, Plot module will be disabled.\n") + FreeCAD.Console.PrintMessage(msg) + diff --git a/src/Mod/Plot/Makefile.am b/src/Mod/Plot/Makefile.am new file mode 100644 index 000000000..c0411b0d8 --- /dev/null +++ b/src/Mod/Plot/Makefile.am @@ -0,0 +1,45 @@ +# Change data dir from default ($(prefix)/share) to actual dir +datadir = $(prefix)/Mod/Plot + +data_DATA = \ + Plot.py \ + InitGui.py \ + PlotGui.py + +nobase_data_DATA = \ + Icons/Axes.svg \ + Icons/Grid.svg \ + Icons/Icon.svg \ + Icons/Labels.svg \ + Icons/Legend.svg \ + Icons/Positions.svg \ + Icons/Save.svg \ + Icons/Series.svg \ + plotAxes/__init__.py \ + plotAxes/TaskPanel.py \ + plotAxes/TaskPanel.ui \ + plotLabels/__init__.py \ + plotLabels/TaskPanel.py \ + plotLabels/TaskPanel.ui \ + plotPositions/__init__.py \ + plotPositions/TaskPanel.py \ + plotPositions/TaskPanel.ui \ + plotSave/__init__.py \ + plotSave/TaskPanel.py \ + plotSave/TaskPanel.ui \ + plotSeries/__init__.py \ + plotSeries/TaskPanel.py \ + plotSeries/TaskPanel.ui \ + plotUtils/__init__.py \ + plotUtils/Paths.py \ + plotUtils/Translator.py + +CLEANFILES = $(BUILT_SOURCES) + +EXTRA_DIST = \ + $(data_DATA) \ + $(nobase_data_DATA) \ + CMakeLists.txt \ + README \ + plot.dox + diff --git a/src/Mod/Plot/Plot.py b/src/Mod/Plot/Plot.py new file mode 100644 index 000000000..fc8767799 --- /dev/null +++ b/src/Mod/Plot/Plot.py @@ -0,0 +1,314 @@ +#*************************************************************************** +#* * +#* Copyright (c) 2011, 2012 * +#* Jose Luis Cercos Pita * +#* * +#* This program is free software; you can redistribute it and/or modify * +#* it under the terms of the GNU Lesser General Public License (LGPL) * +#* as published by the Free Software Foundation; either version 2 of * +#* the License, or (at your option) any later version. * +#* for detail see the LICENCE text file. * +#* * +#* This program is distributed in the hope that it will be useful, * +#* but WITHOUT ANY WARRANTY; without even the implied warranty of * +#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +#* GNU Library General Public License for more details. * +#* * +#* You should have received a copy of the GNU Library General Public * +#* License along with this program; if not, write to the Free Software * +#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * +#* USA * +#* * +#*************************************************************************** + +# FreeCAD +import FreeCAD + +# Plot module +from plotUtils import Paths, Translator + +# PyQt4 +from PyQt4 import QtCore, QtGui + +# Matplot lib +try: + import matplotlib + import matplotlib.pyplot as plt + from matplotlib.backends.backend_qt4agg import FigureCanvasQTAgg as FigureCanvas + from matplotlib.backends.backend_qt4agg import NavigationToolbar2QTAgg as NavigationToolbar + from matplotlib.figure import Figure +except ImportError: + msg = Translator.translate("matplotlib not installed, so Plot module is disabled.\n") + FreeCAD.Console.PrintError(msg) + raise ImportError("matplotlib not installed") + +def getMainWindow(): + """ getMainWindow(): Gets FreeCAD main window. """ + toplevel = QtGui.qApp.topLevelWidgets() + for i in toplevel: + if i.metaObject().className() == "Gui::MainWindow": + return i + return None + +def getMdiArea(): + """ getMdiArea(): Gets FreeCAD MdiArea. """ + mw = getMainWindow() + if not mw: + return None + return mw.findChild(QtGui.QMdiArea) + +def getPlot(): + """ getPlot(): Gets selected Plot document if exist. """ + # Get active tab + mdi = getMdiArea() + if not mdi: + return None + sub = mdi.activeSubWindow() + if not sub: + return None + # Explore childrens looking for Plot class + for i in sub.children(): + if i.metaObject().className() == "Plot": + return i + return None + +def figure(winTitle="plot"): + """ figure(winTitle="plot"): Create a new plot subwindow.\n winTitle = Tab title. """ + mdi = getMdiArea() + if not mdi: + return None + win = Plot(winTitle) + sub=mdi.addSubWindow(win) + sub.show() + return win + +def plot(x,y,name=None): + """ plot(x,y,name=None): Plots a new serie (as line plot)\n x = X values\n y = Y values\n name = Serie name (for legend). """ + # Get active plot, or create another one if don't exist + plt = getPlot() + if not plt: + plt = figure() + # Call to plot + return plt.plot(x,y,name) + +def series(): + """ lines(): Get all lines from selected plot. """ + plt = getPlot() + if not plt: + return [] + return plt.series + +def removeSerie(index): + """ removeSerie(index): Removes a serie from plot.\n index = Index of serie to remove. """ + # Get active series + plt = getPlot() + if not plt: + return + plots = plt.series + if not plots: + return + # Remove line from plot + axes = plots[index].axes + axes.lines.pop(plots[index].lid) + # Remove serie from list + del plt.series[index] + # Update GUI + plt.update() + +def legend(status=True, pos=None, fontsize=None): + """ legend(status=True): Show/Hide legend.\n status = True if legend must be shown, False otherwise.\n pos = Legend position.\n fontsize = Font size """ + plt = getPlot() + if not plt: + return + plt.legend = status + if pos: + plt.legPos = pos + if fontsize: + plt.legSiz = fontsize + # Hide all legends + for axes in plt.axesList: + axes.legend_ = None + # Legend must be activated on last axes + axes = plt.axesList[-1] + if status: + # Setup legend handles and names + lines = series() + handles = [] + names = [] + for l in lines: + if l.name != None: + handles.append(l.line) + names.append(l.name) + # Show the legend + l = axes.legend(handles, names, bbox_to_anchor=plt.legPos) + for t in l.get_texts(): + t.set_fontsize(plt.legSiz) + plt.update() + +def grid(status=True): + """ grid(status=True): Show/Hide grid.\n status = True if grid must be shown, False otherwise. """ + plt = getPlot() + if not plt: + return + plt.grid = status + axes = plt.axes + axes.grid(status) + plt.update() + +def title(string): + """ title(string): Setup plot title.\n string = Title to set. """ + plt = getPlot() + if not plt: + return + axes = plt.axes + axes.set_title(string) + plt.update() + +def xlabel(string): + """ xlabel(string): Setup x label.\n string = Title to set. """ + plt = getPlot() + if not plt: + return + axes = plt.axes + axes.set_xlabel(string) + plt.update() + +def ylabel(string): + """ ylabel(string): Setup y label.\n string = Title to set. """ + plt = getPlot() + if not plt: + return + axes = plt.axes + axes.set_ylabel(string) + plt.update() + +def axesList(): + """ axesList(): Gets plot axes list. """ + plt = getPlot() + if not plt: + return [] + return plt.axesList + +def axes(): + """ axes(): Gets active plot axes. """ + plt = getPlot() + if not plt: + return None + return plt.axes + +def addNewAxes(rect=None, frameon=True, patchcolor='none'): + """ addNewAxes(pos=None, frameon=True): Add new axes to plot, setting it as active one.\n rect = Axes area, None to copy last axes data.\n frameon = True to show frame, False otherwise.\n patchcolor = Patch color, 'none' for transparent plot. """ + plt = getPlot() + if not plt: + return None + fig = plt.fig + if rect == None: + rect = plt.axes.get_position() + ax = fig.add_axes(rect, frameon=frameon) + ax.xaxis.set_ticks_position('bottom') + ax.spines['top'].set_color('none') + ax.yaxis.set_ticks_position('left') + ax.spines['right'].set_color('none') + ax.patch.set_facecolor(patchcolor) + plt.axesList.append(ax) + plt.setActiveAxes(-1) + plt.update() + return ax + +def save(path, figsize=None, dpi=None): + """ save(path): Save plot.\n path = Destination file path.\n figsize = w,h figure size tuple in inches.\n dpi = Dots per inch.""" + plt = getPlot() + if not plt: + return + # Backup figure options + fig = plt.fig + sizeBack = fig.get_size_inches() + dpiBack = fig.get_dpi() + # Save figure with new options + if figsize: + fig.set_size_inches(figsize[0], figsize[1]) + if dpi: + fig.set_dpi(dpi) + plt.canvas.print_figure(path) + # Restore figure options + fig.set_size_inches(sizeBack[0], sizeBack[1]) + fig.set_dpi(dpiBack) + plt.update() + +class Line(): + def __init__(self, axes, x, y, name): + """ __init__(axes, x, y, name): Construct new plot serie.\n axes = Active axes\n x = X values\n y = Y values\n name = Serie name (for legend). """ + self.axes = axes + self.x = x + self.y = y + self.name = name + self.lid = len(axes.lines) + self.line, = axes.plot(x,y) + + def setp(self, prop, value): + """ setp(prop, value): Change line property value.\n prop = Property name.\n value = New property value. """ + plt.setp(self.line, prop, value) + + def getp(self, prop): + """ getp(prop): Get property value.\n prop = Property name.""" + return plt.getp(self.line, prop) + +class Plot(QtGui.QWidget): + def __init__(self, winTitle="plot", parent = None, flags = QtCore.Qt.WindowFlags(0)): + """ __init__(winTitle="plot", parent = None, flags = Qt.WindowFlags(0)): Construct a new plot widget.\n winTitle = Tab title.\n parent = Widget parent.\n flags = QWidget flags""" + QtGui.QWidget.__init__(self, parent, flags) + self.setWindowTitle(winTitle) + # Create matplotlib canvas + self.fig = Figure() + self.canvas = FigureCanvas(self.fig) + self.canvas.setParent(self) + # Get axes + self.axes = self.fig.add_subplot(111) + self.axesList = [self.axes] + self.axes.xaxis.set_ticks_position('bottom') + self.axes.spines['top'].set_color('none') + self.axes.yaxis.set_ticks_position('left') + self.axes.spines['right'].set_color('none') + # Setup layout + vbox = QtGui.QVBoxLayout() + vbox.addWidget(self.canvas) + self.setLayout(vbox) + # Active series + self.series = [] + # Indicators + self.skip = False + self.legend = False + self.legPos = (1.0, 1.0) + self.legSiz = 14 + self.grid = False + + def plot(self, x, y, name=None): + """ plot(self, x, y, name=None): Plot a new line and return it.\n x = X values\n y = Y values\n name = Serie name (for legend). """ + l = Line(self.axes, x, y, name) + self.series.append(l) + # Update window + self.update() + return l + + def update(self): + """ update(): Updates plot. """ + if not self.skip: + self.skip = True + if self.legend: + legend(self.legend) + self.canvas.draw() + self.skip = False + + def isGrid(self): + """ isGrid(): Return True if Grid is active, False otherwise. """ + return bool(self.grid) + + def isLegend(self): + """ isLegend(): Return True if Legend is active, False otherwise. """ + return bool(self.legend) + + def setActiveAxes(self, index): + """ setActiveAxes(index): Change current active axes.\n index = Index of the new active axes. """ + self.axes = self.axesList[index] + self.fig.sca(self.axes) + diff --git a/src/Mod/Plot/PlotGui.py b/src/Mod/Plot/PlotGui.py new file mode 100644 index 000000000..7f220b90f --- /dev/null +++ b/src/Mod/Plot/PlotGui.py @@ -0,0 +1,132 @@ +#*************************************************************************** +#* * +#* Copyright (c) 2011, 2012 * +#* Jose Luis Cercos Pita * +#* * +#* This program is free software; you can redistribute it and/or modify * +#* it under the terms of the GNU Lesser General Public License (LGPL) * +#* as published by the Free Software Foundation; either version 2 of * +#* the License, or (at your option) any later version. * +#* for detail see the LICENCE text file. * +#* * +#* This program is distributed in the hope that it will be useful, * +#* but WITHOUT ANY WARRANTY; without even the implied warranty of * +#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +#* GNU Library General Public License for more details. * +#* * +#* You should have received a copy of the GNU Library General Public * +#* License along with this program; if not, write to the Free Software * +#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * +#* USA * +#* * +#*************************************************************************** + +from PyQt4 import QtCore, QtGui +import FreeCAD, FreeCADGui, os + +class Save: + def Activated(self): + import plotSave + plotSave.load() + + def GetResources(self): + from plotUtils import Paths, Translator + IconPath = Paths.iconsPath() + "/Save.svg" + MenuText = str(Translator.translate('Save plot')) + ToolTip = str(Translator.translate('Save plot as image file.')) + return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} + +class Axes: + def Activated(self): + import plotAxes + plotAxes.load() + + def GetResources(self): + from plotUtils import Paths, Translator + IconPath = Paths.iconsPath() + "/Axes.svg" + MenuText = str(Translator.translate('Configure axes')) + ToolTip = str(Translator.translate('Configure axes parameters.')) + return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} + +class Series: + def Activated(self): + import plotSeries + plotSeries.load() + + def GetResources(self): + from plotUtils import Paths, Translator + IconPath = Paths.iconsPath() + "/Series.svg" + MenuText = str(Translator.translate('Configure series')) + ToolTip = str(Translator.translate('Configure series drawing style and label.')) + return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} + +class Grid: + def Activated(self): + import Plot + from plotUtils import Translator + plt = Plot.getPlot() + if not plt: + msg = Translator.translate("Grid must be activated on top of a plot document.") + FreeCAD.Console.PrintError(msg+"\n") + return + flag = plt.isGrid() + Plot.grid(not flag) + + def GetResources(self): + from plotUtils import Paths, Translator + IconPath = Paths.iconsPath() + "/Grid.svg" + MenuText = str(Translator.translate('Show/Hide grid')) + ToolTip = str(Translator.translate('Show/Hide grid on selected plot')) + return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} + +class Legend: + def Activated(self): + import Plot + from plotUtils import Translator + plt = Plot.getPlot() + if not plt: + msg = Translator.translate("Legend must be activated on top of a plot document.") + FreeCAD.Console.PrintError(msg+"\n") + return + flag = plt.isLegend() + Plot.legend(not flag) + + def GetResources(self): + from plotUtils import Paths, Translator + IconPath = Paths.iconsPath() + "/Legend.svg" + MenuText = str(Translator.translate('Show/Hide legend')) + ToolTip = str(Translator.translate('Show/Hide legend on selected plot')) + return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} + +class Labels: + def Activated(self): + import plotLabels + plotLabels.load() + + def GetResources(self): + from plotUtils import Paths, Translator + IconPath = Paths.iconsPath() + "/Labels.svg" + MenuText = str(Translator.translate('Set labels')) + ToolTip = str(Translator.translate('Set title and axes labels')) + return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} + +class Positions: + def Activated(self): + import plotPositions + plotPositions.load() + + def GetResources(self): + from plotUtils import Paths, Translator + IconPath = Paths.iconsPath() + "/Positions.svg" + MenuText = str(Translator.translate('Set positions and sizes')) + ToolTip = str(Translator.translate('Set labels and legend positions and sizes.')) + return {'Pixmap' : IconPath, 'MenuText': MenuText, 'ToolTip': ToolTip} + +FreeCADGui.addCommand('Plot_SaveFig', Save()) +FreeCADGui.addCommand('Plot_Axes', Axes()) +FreeCADGui.addCommand('Plot_Series', Series()) +FreeCADGui.addCommand('Plot_Grid', Grid()) +FreeCADGui.addCommand('Plot_Legend', Legend()) +FreeCADGui.addCommand('Plot_Labels', Labels()) +FreeCADGui.addCommand('Plot_Positions', Positions()) + diff --git a/src/Mod/Plot/README b/src/Mod/Plot/README new file mode 100644 index 000000000..5f82de5e9 --- /dev/null +++ b/src/Mod/Plot/README @@ -0,0 +1,10 @@ +* Authors +--------- + +Jose Luis Cercós Pita + +* Introduction +-------------- + +Plot is a module that provide an interface to perform plots. + diff --git a/src/Mod/Plot/plot.dox b/src/Mod/Plot/plot.dox new file mode 100644 index 000000000..46ee0b474 --- /dev/null +++ b/src/Mod/Plot/plot.dox @@ -0,0 +1,3 @@ +/** \defgroup PLOT Plot + * \ingroup WORKBENCHES */ + diff --git a/src/Mod/Plot/plotAxes/TaskPanel.py b/src/Mod/Plot/plotAxes/TaskPanel.py new file mode 100644 index 000000000..848b9506a --- /dev/null +++ b/src/Mod/Plot/plotAxes/TaskPanel.py @@ -0,0 +1,425 @@ +#*************************************************************************** +#* * +#* Copyright (c) 2011, 2012 * +#* Jose Luis Cercos Pita * +#* * +#* This program is free software; you can redistribute it and/or modify * +#* it under the terms of the GNU Lesser General Public License (LGPL) * +#* as published by the Free Software Foundation; either version 2 of * +#* the License, or (at your option) any later version. * +#* for detail see the LICENCE text file. * +#* * +#* This program is distributed in the hope that it will be useful, * +#* but WITHOUT ANY WARRANTY; without even the implied warranty of * +#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +#* GNU Library General Public License for more details. * +#* * +#* You should have received a copy of the GNU Library General Public * +#* License along with this program; if not, write to the Free Software * +#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * +#* USA * +#* * +#*************************************************************************** + +# FreeCAD modules +import FreeCAD as App +import FreeCADGui as Gui +# Qt library +from PyQt4 import QtGui,QtCore +# Module +import Plot +from plotUtils import Paths, Translator + +class TaskPanel: + def __init__(self): + self.ui = Paths.modulePath() + "/plotAxes/TaskPanel.ui" + self.skip = False + + def accept(self): + return True + + def reject(self): + return True + + def clicked(self, index): + pass + + def open(self): + pass + + def needsFullSpace(self): + return True + + def isAllowedAlterSelection(self): + return False + + def isAllowedAlterView(self): + return True + + def isAllowedAlterDocument(self): + return False + + def helpRequested(self): + pass + + def setupUi(self): + mw = self.getMainWindow() + form = mw.findChild(QtGui.QWidget, "TaskPanel") + form.axId = form.findChild(QtGui.QSpinBox, "axesIndex") + form.new = form.findChild(QtGui.QPushButton, "newAxesButton") + form.remove = form.findChild(QtGui.QPushButton, "delAxesButton") + form.all = form.findChild(QtGui.QCheckBox, "allAxes") + form.xMin = form.findChild(QtGui.QSlider, "posXMin") + form.xMax = form.findChild(QtGui.QSlider, "posXMax") + form.yMin = form.findChild(QtGui.QSlider, "posYMin") + form.yMax = form.findChild(QtGui.QSlider, "posYMax") + form.xAlign = form.findChild(QtGui.QComboBox, "xAlign") + form.yAlign = form.findChild(QtGui.QComboBox, "yAlign") + form.xOffset = form.findChild(QtGui.QSpinBox, "xOffset") + form.yOffset = form.findChild(QtGui.QSpinBox, "yOffset") + form.xAuto = form.findChild(QtGui.QCheckBox, "xAuto") + form.yAuto = form.findChild(QtGui.QCheckBox, "yAuto") + form.xSMin = form.findChild(QtGui.QLineEdit, "xMin") + form.xSMax = form.findChild(QtGui.QLineEdit, "xMax") + form.ySMin = form.findChild(QtGui.QLineEdit, "yMin") + form.ySMax = form.findChild(QtGui.QLineEdit, "yMax") + self.form = form + self.retranslateUi() + # Look for active axes if can + axId = 0 + plt = Plot.getPlot() + if plt: + while plt.axes != plt.axesList[axId]: + axId = axId + 1 + form.axId.setValue(axId) + self.updateUI() + QtCore.QObject.connect(form.axId, QtCore.SIGNAL('valueChanged(int)'),self.onAxesId) + QtCore.QObject.connect(form.new, QtCore.SIGNAL("pressed()"),self.onNew) + QtCore.QObject.connect(form.remove, QtCore.SIGNAL("pressed()"),self.onRemove) + QtCore.QObject.connect(form.xMin, QtCore.SIGNAL("valueChanged(int)"),self.onDims) + QtCore.QObject.connect(form.xMax, QtCore.SIGNAL("valueChanged(int)"),self.onDims) + QtCore.QObject.connect(form.yMin, QtCore.SIGNAL("valueChanged(int)"),self.onDims) + QtCore.QObject.connect(form.yMax, QtCore.SIGNAL("valueChanged(int)"),self.onDims) + QtCore.QObject.connect(form.xAlign, QtCore.SIGNAL("currentIndexChanged(int)"),self.onAlign) + QtCore.QObject.connect(form.yAlign, QtCore.SIGNAL("currentIndexChanged(int)"),self.onAlign) + QtCore.QObject.connect(form.xOffset,QtCore.SIGNAL("valueChanged(int)"),self.onOffset) + QtCore.QObject.connect(form.yOffset,QtCore.SIGNAL("valueChanged(int)"),self.onOffset) + QtCore.QObject.connect(form.xAuto, QtCore.SIGNAL("stateChanged(int)"),self.onScales) + QtCore.QObject.connect(form.yAuto, QtCore.SIGNAL("stateChanged(int)"),self.onScales) + QtCore.QObject.connect(form.xSMin, QtCore.SIGNAL("editingFinished()"),self.onScales) + QtCore.QObject.connect(form.xSMax, QtCore.SIGNAL("editingFinished()"),self.onScales) + QtCore.QObject.connect(form.ySMin, QtCore.SIGNAL("editingFinished()"),self.onScales) + QtCore.QObject.connect(form.ySMax, QtCore.SIGNAL("editingFinished()"),self.onScales) + QtCore.QObject.connect(Plot.getMdiArea(),QtCore.SIGNAL("subWindowActivated(QMdiSubWindow*)"),self.onMdiArea) + return False + + def getMainWindow(self): + "returns the main window" + # using QtGui.qApp.activeWindow() isn't very reliable because if another + # widget than the mainwindow is active (e.g. a dialog) the wrong widget is + # returned + toplevel = QtGui.qApp.topLevelWidgets() + for i in toplevel: + if i.metaObject().className() == "Gui::MainWindow": + return i + raise Exception("No main window found") + + def retranslateUi(self): + """ Set user interface locale strings. + """ + self.form.setWindowTitle(Translator.translate("Configure axes")) + self.form.findChild(QtGui.QLabel, "axesLabel").setText(Translator.translate("Active axes")) + self.form.all.setText(Translator.translate("Apply to all axes")) + self.form.findChild(QtGui.QLabel, "dimLabel").setText(Translator.translate("Dimensions")) + self.form.findChild(QtGui.QLabel, "xPosLabel").setText(Translator.translate("X axis position")) + self.form.findChild(QtGui.QLabel, "yPosLabel").setText(Translator.translate("Y axis position")) + self.form.findChild(QtGui.QLabel, "scalesLabel").setText(Translator.translate("Scales")) + self.form.xAuto.setText(Translator.translate("X auto")) + self.form.yAuto.setText(Translator.translate("Y auto")) + self.form.findChild(QtGui.QCheckBox, "allAxes").setText(Translator.translate("Apply to all axes")) + self.form.findChild(QtGui.QLabel, "dimLabel").setText(Translator.translate("Dimensions")) + self.form.findChild(QtGui.QLabel, "xPosLabel").setText(Translator.translate("X axis position")) + self.form.findChild(QtGui.QLabel, "yPosLabel").setText(Translator.translate("Y axis position")) + + def onAxesId(self, value): + """ Executed when axes index is modified. """ + if not self.skip: + self.skip = True + # UI control in some special plot cases + plt = Plot.getPlot() + if not plt: + self.updateUI() + self.skip = False + return + # UI control in most cases + self.form.axId.setMaximum(len(plt.axesList)) + if self.form.axId.value() >= len(plt.axesList): + self.form.axId.setValue(len(plt.axesList)-1) + # Send new control to Plot instance + plt.setActiveAxes(self.form.axId.value()) + self.updateUI() + self.skip = False + + def onNew(self): + """ Executed when new axes must be created. """ + plt = Plot.getPlot() + if not plt: + self.updateUI() + return + Plot.addNewAxes() + self.form.axId.setValue(len(plt.axesList)-1) + plt.update() + + def onRemove(self): + """ Executed when axes must be deleted. """ + plt = Plot.getPlot() + if not plt: + self.updateUI() + return + # Don't remove first axes + if not self.form.axId.value(): + msg = Translator.translate("Axes 0 can't be deleted") + App.Console.PrintError(msg+"\n") + return + # Remove axes + ax = plt.axes + ax.set_axis_off() + plt.axesList.pop(self.form.axId.value()) + # Ensure that active axes is correct + index = min(self.form.axId.value(), len(plt.axesList)-1) + self.form.axId.setValue(index) + plt.update() + + def onDims(self, value): + """ Executed when axes dims have been modified. """ + # Get apply environment + plt = Plot.getPlot() + if not plt: + self.updateUI() + return + axesList = [plt.axes] + if self.form.all.isChecked(): + axesList = plt.axesList + # Set new dimensions + xmin = self.form.xMin.value() / 100.0 + xmax = self.form.xMax.value() / 100.0 + ymin = self.form.yMin.value() / 100.0 + ymax = self.form.yMax.value() / 100.0 + for axes in axesList: + axes.set_position([xmin, ymin, xmax-xmin, ymax-ymin]) + plt.update() + + def onAlign(self, value): + """ Executed when axes align have been modified. """ + # Get apply environment + plt = Plot.getPlot() + if not plt: + self.updateUI() + return + axesList = [plt.axes] + if self.form.all.isChecked(): + axesList = plt.axesList + # Set new alignement + for axes in axesList: + if self.form.xAlign.currentIndex() == 0: + axes.xaxis.tick_bottom() + axes.spines['bottom'].set_color((0.0,0.0,0.0)) + axes.spines['top'].set_color('none') + axes.xaxis.set_ticks_position('bottom') + axes.xaxis.set_label_position('bottom') + else: + axes.xaxis.tick_top() + axes.spines['top'].set_color((0.0,0.0,0.0)) + axes.spines['bottom'].set_color('none') + axes.xaxis.set_ticks_position('top') + axes.xaxis.set_label_position('top') + if self.form.yAlign.currentIndex() == 0: + axes.yaxis.tick_left() + axes.spines['left'].set_color((0.0,0.0,0.0)) + axes.spines['right'].set_color('none') + axes.yaxis.set_ticks_position('left') + axes.yaxis.set_label_position('left') + else: + axes.yaxis.tick_right() + axes.spines['right'].set_color((0.0,0.0,0.0)) + axes.spines['left'].set_color('none') + axes.yaxis.set_ticks_position('right') + axes.yaxis.set_label_position('right') + plt.update() + + def onOffset(self, value): + """ Executed when axes offsets have been modified. """ + # Get apply environment + plt = Plot.getPlot() + if not plt: + self.updateUI() + return + axesList = [plt.axes] + if self.form.all.isChecked(): + axesList = plt.axesList + # Set new offset + for axes in axesList: + # For some reason, modify spines offset erase axes labels, so we + # need store it in order to regenerate later + x = axes.get_xlabel() + y = axes.get_ylabel() + for loc, spine in axes.spines.iteritems(): + if loc in ['bottom', 'top']: + spine.set_position(('outward',self.form.xOffset.value())) + if loc in ['left', 'right']: + spine.set_position(('outward',self.form.yOffset.value())) + # Now we can restore axes labels + Plot.xlabel(unicode(x)) + Plot.ylabel(unicode(y)) + plt.update() + + def onScales(self): + """ Executed when axes scales have been modified. """ + # Get apply environment + plt = Plot.getPlot() + if not plt: + self.updateUI() + return + axesList = [plt.axes] + if self.form.all.isChecked(): + axesList = plt.axesList + if not self.skip: + self.skip = True + # X axis + if self.form.xAuto.isChecked(): + for ax in axesList: + ax.set_autoscalex_on(True) + self.form.xSMin.setEnabled(False) + self.form.xSMax.setEnabled(False) + lim = plt.axes.get_xlim() + self.form.xSMin.setText(str(lim[0])) + self.form.xSMax.setText(str(lim[1])) + else: + self.form.xSMin.setEnabled(True) + self.form.xSMax.setEnabled(True) + try: + xMin = float(self.form.xSMin.text()) + except: + xMin = plt.axes.get_xlim()[0] + self.form.xSMin.setText(str(xMin)) + try: + xMax = float(self.form.xSMax.text()) + except: + xMax = plt.axes.get_xlim()[1] + self.form.xSMax.setText(str(xMax)) + for ax in axesList: + ax.set_xlim(( xMin,xMax )) + # Y axis + if self.form.yAuto.isChecked(): + for ax in axesList: + ax.set_autoscaley_on(True) + self.form.ySMin.setEnabled(False) + self.form.ySMax.setEnabled(False) + lim = plt.axes.get_ylim() + self.form.ySMin.setText(str(lim[0])) + self.form.ySMax.setText(str(lim[1])) + else: + self.form.ySMin.setEnabled(True) + self.form.ySMax.setEnabled(True) + try: + yMin = float(self.form.ySMin.text()) + except: + yMin = plt.axes.get_ylim()[0] + self.form.ySMin.setText(str(yMin)) + try: + yMax = float(self.form.ySMax.text()) + except: + yMax = plt.axes.get_ylim()[1] + self.form.ySMax.setText(str(yMax)) + for ax in axesList: + ax.set_ylim(( yMin,yMax )) + plt.update() + self.skip = False + + def onMdiArea(self, subWin): + """ Executed when window is selected on mdi area. + @param subWin Selected window. + """ + plt = Plot.getPlot() + if plt != subWin: + self.updateUI() + + def updateUI(self): + """ Setup UI controls values if possible """ + plt = Plot.getPlot() + self.form.axId.setEnabled(bool(plt)) + self.form.new.setEnabled(bool(plt)) + self.form.remove.setEnabled(bool(plt)) + self.form.all.setEnabled(bool(plt)) + self.form.xMin.setEnabled(bool(plt)) + self.form.xMax.setEnabled(bool(plt)) + self.form.yMin.setEnabled(bool(plt)) + self.form.yMax.setEnabled(bool(plt)) + self.form.xAlign.setEnabled(bool(plt)) + self.form.yAlign.setEnabled(bool(plt)) + self.form.xOffset.setEnabled(bool(plt)) + self.form.yOffset.setEnabled(bool(plt)) + self.form.xAuto.setEnabled(bool(plt)) + self.form.yAuto.setEnabled(bool(plt)) + self.form.xSMin.setEnabled(bool(plt)) + self.form.xSMax.setEnabled(bool(plt)) + self.form.ySMin.setEnabled(bool(plt)) + self.form.ySMax.setEnabled(bool(plt)) + if not plt: + return + # Ensure that active axes is correct + index = min(self.form.axId.value(), len(plt.axesList)-1) + self.form.axId.setValue(index) + # Set dimensions + ax = plt.axes + bb = ax.get_position() + self.form.xMin.setValue(int(100*bb._get_xmin())) + self.form.xMax.setValue(int(100*bb._get_xmax())) + self.form.yMin.setValue(int(100*bb._get_ymin())) + self.form.yMax.setValue(int(100*bb._get_ymax())) + # Set alignment and offset + xPos = ax.xaxis.get_ticks_position() + yPos = ax.yaxis.get_ticks_position() + xOffset = ax.spines['bottom'].get_position()[1] + yOffset = ax.spines['left'].get_position()[1] + if xPos == 'bottom' or xPos == 'default': + self.form.xAlign.setCurrentIndex(0) + else: + self.form.xAlign.setCurrentIndex(1) + self.form.xOffset.setValue(xOffset) + if yPos == 'left' or yPos == 'default': + self.form.yAlign.setCurrentIndex(0) + else: + self.form.yAlign.setCurrentIndex(1) + self.form.yOffset.setValue(yOffset) + # Set scales + if ax.get_autoscalex_on(): + self.form.xAuto.setChecked(True) + self.form.xSMin.setEnabled(False) + self.form.xSMax.setEnabled(False) + else: + self.form.xAuto.setChecked(False) + self.form.xSMin.setEnabled(True) + self.form.xSMax.setEnabled(True) + lim = ax.get_xlim() + self.form.xSMin.setText(str(lim[0])) + self.form.xSMax.setText(str(lim[1])) + if ax.get_autoscaley_on(): + self.form.yAuto.setChecked(True) + self.form.ySMin.setEnabled(False) + self.form.ySMax.setEnabled(False) + else: + self.form.yAuto.setChecked(False) + self.form.ySMin.setEnabled(True) + self.form.ySMax.setEnabled(True) + lim = ax.get_ylim() + self.form.ySMin.setText(str(lim[0])) + self.form.ySMax.setText(str(lim[1])) + +def createTask(): + panel = TaskPanel() + Gui.Control.showDialog(panel) + if panel.setupUi(): + Gui.Control.closeDialog(panel) + return None + return panel diff --git a/src/Mod/Plot/plotAxes/TaskPanel.ui b/src/Mod/Plot/plotAxes/TaskPanel.ui new file mode 100644 index 000000000..26c267af1 --- /dev/null +++ b/src/Mod/Plot/plotAxes/TaskPanel.ui @@ -0,0 +1,332 @@ + + + TaskPanel + + + + 0 + 0 + 276 + 416 + + + + + 0 + 336 + + + + Configure axes + + + + + + 0 + + + + + + + + 0 + 0 + + + + Active axes: + + + + + + + + 5 + 0 + + + + 1 + + + + + + + + 2 + 0 + + + + add + + + + + + + + 2 + 0 + + + + + 10 + 0 + + + + del + + + + + + + + + Apply to all axes + + + + + + + 0 + + + 6 + + + + + + 0 + 1 + + + + 100 + + + 90 + + + Qt::Vertical + + + + + + + 100 + + + 90 + + + Qt::Horizontal + + + + + + + 100 + + + 10 + + + Qt::Horizontal + + + + + + + + 0 + 1 + + + + 100 + + + 10 + + + Qt::Vertical + + + + + + + Dimensions: + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + Y axis position + + + Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft + + + + + + + 0 + + + + y at Left + + + + + y at Right + + + + + + + + 99999 + + + + + + + + + + + X axis position + + + Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft + + + + + + + 0 + + + + x at bottom + + + + + x at top + + + + + + + + 99999 + + + + + + + + + + + + + Scales + + + + + + + X auto + + + + + + + Y auto + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Mod/Plot/plotAxes/__init__.py b/src/Mod/Plot/plotAxes/__init__.py new file mode 100644 index 000000000..24058d7a9 --- /dev/null +++ b/src/Mod/Plot/plotAxes/__init__.py @@ -0,0 +1,36 @@ +#*************************************************************************** +#* * +#* Copyright (c) 2011, 2012 * +#* Jose Luis Cercos Pita * +#* * +#* This program is free software; you can redistribute it and/or modify * +#* it under the terms of the GNU Lesser General Public License (LGPL) * +#* as published by the Free Software Foundation; either version 2 of * +#* the License, or (at your option) any later version. * +#* for detail see the LICENCE text file. * +#* * +#* This program is distributed in the hope that it will be useful, * +#* but WITHOUT ANY WARRANTY; without even the implied warranty of * +#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +#* GNU Library General Public License for more details. * +#* * +#* You should have received a copy of the GNU Library General Public * +#* License along with this program; if not, write to the Free Software * +#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * +#* USA * +#* * +#*************************************************************************** + +# FreeCAD modules +import FreeCAD +import FreeCADGui + +# Qt libraries +from PyQt4 import QtGui,QtCore + +# Main object +import TaskPanel + +def load(): + """ Loads the tool """ + TaskPanel.createTask() diff --git a/src/Mod/Plot/plotLabels/TaskPanel.py b/src/Mod/Plot/plotLabels/TaskPanel.py new file mode 100644 index 000000000..fe47acbeb --- /dev/null +++ b/src/Mod/Plot/plotLabels/TaskPanel.py @@ -0,0 +1,206 @@ +#*************************************************************************** +#* * +#* Copyright (c) 2011, 2012 * +#* Jose Luis Cercos Pita * +#* * +#* This program is free software; you can redistribute it and/or modify * +#* it under the terms of the GNU Lesser General Public License (LGPL) * +#* as published by the Free Software Foundation; either version 2 of * +#* the License, or (at your option) any later version. * +#* for detail see the LICENCE text file. * +#* * +#* This program is distributed in the hope that it will be useful, * +#* but WITHOUT ANY WARRANTY; without even the implied warranty of * +#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +#* GNU Library General Public License for more details. * +#* * +#* You should have received a copy of the GNU Library General Public * +#* License along with this program; if not, write to the Free Software * +#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * +#* USA * +#* * +#*************************************************************************** + +# FreeCAD modules +import FreeCAD as App +import FreeCADGui as Gui +# Qt library +from PyQt4 import QtGui,QtCore +# Module +import Plot +from plotUtils import Paths, Translator + +class TaskPanel: + def __init__(self): + self.ui = Paths.modulePath() + "/plotLabels/TaskPanel.ui" + self.skip = False + + def accept(self): + return True + + def reject(self): + return True + + def clicked(self, index): + pass + + def open(self): + pass + + def needsFullSpace(self): + return True + + def isAllowedAlterSelection(self): + return False + + def isAllowedAlterView(self): + return True + + def isAllowedAlterDocument(self): + return False + + def helpRequested(self): + pass + + def setupUi(self): + mw = self.getMainWindow() + form = mw.findChild(QtGui.QWidget, "TaskPanel") + form.axId = form.findChild(QtGui.QSpinBox, "axesIndex") + form.title = form.findChild(QtGui.QLineEdit, "title") + form.titleSize = form.findChild(QtGui.QSpinBox, "titleSize") + form.xLabel = form.findChild(QtGui.QLineEdit, "titleX") + form.xSize = form.findChild(QtGui.QSpinBox, "xSize") + form.yLabel = form.findChild(QtGui.QLineEdit, "titleY") + form.ySize = form.findChild(QtGui.QSpinBox, "ySize") + self.form = form + self.retranslateUi() + # Look for active axes if can + axId = 0 + plt = Plot.getPlot() + if plt: + while plt.axes != plt.axesList[axId]: + axId = axId + 1 + form.axId.setValue(axId) + self.updateUI() + QtCore.QObject.connect(form.axId, QtCore.SIGNAL('valueChanged(int)'),self.onAxesId) + QtCore.QObject.connect(form.title, QtCore.SIGNAL("editingFinished()"),self.onLabels) + QtCore.QObject.connect(form.xLabel, QtCore.SIGNAL("editingFinished()"),self.onLabels) + QtCore.QObject.connect(form.yLabel, QtCore.SIGNAL("editingFinished()"),self.onLabels) + QtCore.QObject.connect(form.titleSize,QtCore.SIGNAL("valueChanged(int)"),self.onFontSizes) + QtCore.QObject.connect(form.xSize, QtCore.SIGNAL("valueChanged(int)"),self.onFontSizes) + QtCore.QObject.connect(form.ySize, QtCore.SIGNAL("valueChanged(int)"),self.onFontSizes) + QtCore.QObject.connect(Plot.getMdiArea(),QtCore.SIGNAL("subWindowActivated(QMdiSubWindow*)"),self.onMdiArea) + return False + + def getMainWindow(self): + "returns the main window" + # using QtGui.qApp.activeWindow() isn't very reliable because if another + # widget than the mainwindow is active (e.g. a dialog) the wrong widget is + # returned + toplevel = QtGui.qApp.topLevelWidgets() + for i in toplevel: + if i.metaObject().className() == "Gui::MainWindow": + return i + raise Exception("No main window found") + + def retranslateUi(self): + """ Set user interface locale strings. + """ + self.form.setWindowTitle(Translator.translate("Set labels")) + self.form.findChild(QtGui.QLabel, "axesLabel").setText(Translator.translate("Active axes")) + self.form.findChild(QtGui.QLabel, "titleLabel").setText(Translator.translate("Title")) + self.form.findChild(QtGui.QLabel, "xLabel").setText(Translator.translate("X label")) + self.form.findChild(QtGui.QLabel, "yLabel").setText(Translator.translate("Y label")) + + def onAxesId(self, value): + """ Executed when axes index is modified. """ + if not self.skip: + self.skip = True + # UI control in some special plot cases + plt = Plot.getPlot() + if not plt: + self.updateUI() + self.skip = False + return + # UI control in most cases + self.form.axId.setMaximum(len(plt.axesList)) + if self.form.axId.value() >= len(plt.axesList): + self.form.axId.setValue(len(plt.axesList)-1) + # Send new control to Plot instance + plt.setActiveAxes(self.form.axId.value()) + self.updateUI() + self.skip = False + + def onLabels(self): + """ Executed when labels have been modified. """ + plt = Plot.getPlot() + if not plt: + self.updateUI() + return + # Set labels + Plot.title(unicode(self.form.title.text())) + Plot.xlabel(unicode(self.form.xLabel.text())) + Plot.ylabel(unicode(self.form.yLabel.text())) + plt.update() + + def onFontSizes(self, value): + """ Executed when font sizes have been modified. """ + # Get apply environment + plt = Plot.getPlot() + if not plt: + self.updateUI() + return + # Set font sizes + ax = plt.axes + ax.title.set_fontsize(self.form.titleSize.value()) + ax.xaxis.label.set_fontsize(self.form.xSize.value()) + ax.yaxis.label.set_fontsize(self.form.ySize.value()) + plt.update() + + def onMdiArea(self, subWin): + """ Executed when window is selected on mdi area. + @param subWin Selected window. + """ + plt = Plot.getPlot() + if plt != subWin: + self.updateUI() + + def updateUI(self): + """ Setup UI controls values if possible """ + plt = Plot.getPlot() + self.form.axId.setEnabled(bool(plt)) + self.form.title.setEnabled(bool(plt)) + self.form.titleSize.setEnabled(bool(plt)) + self.form.xLabel.setEnabled(bool(plt)) + self.form.xSize.setEnabled(bool(plt)) + self.form.yLabel.setEnabled(bool(plt)) + self.form.ySize.setEnabled(bool(plt)) + if not plt: + return + # Ensure that active axes is correct + index = min(self.form.axId.value(), len(plt.axesList)-1) + self.form.axId.setValue(index) + # Store data before starting changing it. + ax = plt.axes + t = ax.get_title() + x = ax.get_xlabel() + y = ax.get_ylabel() + tt = ax.title.get_fontsize() + xx = ax.xaxis.label.get_fontsize() + yy = ax.yaxis.label.get_fontsize() + # Set labels + self.form.title.setText(t) + self.form.xLabel.setText(x) + self.form.yLabel.setText(y) + # Set font sizes + self.form.titleSize.setValue(tt) + self.form.xSize.setValue(xx) + self.form.ySize.setValue(yy) + +def createTask(): + panel = TaskPanel() + Gui.Control.showDialog(panel) + if panel.setupUi(): + Gui.Control.closeDialog(panel) + return None + return panel diff --git a/src/Mod/Plot/plotLabels/TaskPanel.ui b/src/Mod/Plot/plotLabels/TaskPanel.ui new file mode 100644 index 000000000..203816390 --- /dev/null +++ b/src/Mod/Plot/plotLabels/TaskPanel.ui @@ -0,0 +1,134 @@ + + + TaskPanel + + + + 0 + 0 + 276 + 228 + + + + + 0 + 0 + + + + Set labels + + + + + + 0 + + + + + + + + 0 + 0 + + + + Active axes: + + + + + + + + 5 + 0 + + + + 1 + + + + + + + + + 0 + + + 6 + + + + + + + + Title + + + + + + + 1 + + + 1024 + + + + + + + 1 + + + 1024 + + + + + + + X label + + + + + + + + + + Y label + + + + + + + + + + 1 + + + 1024 + + + + + + + + + + + + diff --git a/src/Mod/Plot/plotLabels/__init__.py b/src/Mod/Plot/plotLabels/__init__.py new file mode 100644 index 000000000..24058d7a9 --- /dev/null +++ b/src/Mod/Plot/plotLabels/__init__.py @@ -0,0 +1,36 @@ +#*************************************************************************** +#* * +#* Copyright (c) 2011, 2012 * +#* Jose Luis Cercos Pita * +#* * +#* This program is free software; you can redistribute it and/or modify * +#* it under the terms of the GNU Lesser General Public License (LGPL) * +#* as published by the Free Software Foundation; either version 2 of * +#* the License, or (at your option) any later version. * +#* for detail see the LICENCE text file. * +#* * +#* This program is distributed in the hope that it will be useful, * +#* but WITHOUT ANY WARRANTY; without even the implied warranty of * +#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +#* GNU Library General Public License for more details. * +#* * +#* You should have received a copy of the GNU Library General Public * +#* License along with this program; if not, write to the Free Software * +#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * +#* USA * +#* * +#*************************************************************************** + +# FreeCAD modules +import FreeCAD +import FreeCADGui + +# Qt libraries +from PyQt4 import QtGui,QtCore + +# Main object +import TaskPanel + +def load(): + """ Loads the tool """ + TaskPanel.createTask() diff --git a/src/Mod/Plot/plotPositions/TaskPanel.py b/src/Mod/Plot/plotPositions/TaskPanel.py new file mode 100644 index 000000000..a5737d396 --- /dev/null +++ b/src/Mod/Plot/plotPositions/TaskPanel.py @@ -0,0 +1,223 @@ +#*************************************************************************** +#* * +#* Copyright (c) 2011, 2012 * +#* Jose Luis Cercos Pita * +#* * +#* This program is free software; you can redistribute it and/or modify * +#* it under the terms of the GNU Lesser General Public License (LGPL) * +#* as published by the Free Software Foundation; either version 2 of * +#* the License, or (at your option) any later version. * +#* for detail see the LICENCE text file. * +#* * +#* This program is distributed in the hope that it will be useful, * +#* but WITHOUT ANY WARRANTY; without even the implied warranty of * +#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +#* GNU Library General Public License for more details. * +#* * +#* You should have received a copy of the GNU Library General Public * +#* License along with this program; if not, write to the Free Software * +#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * +#* USA * +#* * +#*************************************************************************** + +# FreeCAD modules +import FreeCAD as App +import FreeCADGui as Gui +# Qt library +from PyQt4 import QtGui,QtCore +# Module +import Plot +from plotUtils import Paths, Translator + +class TaskPanel: + def __init__(self): + self.ui = Paths.modulePath() + "/plotPositions/TaskPanel.ui" + self.skip = False + self.item = 0 + self.names = [] + self.objs = [] + self.plt = None + + def accept(self): + return True + + def reject(self): + return True + + def clicked(self, index): + pass + + def open(self): + pass + + def needsFullSpace(self): + return True + + def isAllowedAlterSelection(self): + return False + + def isAllowedAlterView(self): + return True + + def isAllowedAlterDocument(self): + return False + + def helpRequested(self): + pass + + def setupUi(self): + mw = self.getMainWindow() + form = mw.findChild(QtGui.QWidget, "TaskPanel") + form.items = form.findChild(QtGui.QListWidget, "items") + form.x = form.findChild(QtGui.QDoubleSpinBox, "x") + form.y = form.findChild(QtGui.QDoubleSpinBox, "y") + form.s = form.findChild(QtGui.QDoubleSpinBox, "size") + self.form = form + self.retranslateUi() + self.updateUI() + QtCore.QObject.connect(form.items, QtCore.SIGNAL("currentRowChanged(int)"),self.onItem) + QtCore.QObject.connect(form.x, QtCore.SIGNAL("valueChanged(double)"),self.onData) + QtCore.QObject.connect(form.y, QtCore.SIGNAL("valueChanged(double)"),self.onData) + QtCore.QObject.connect(form.s, QtCore.SIGNAL("valueChanged(double)"),self.onData) + QtCore.QObject.connect(Plot.getMdiArea(),QtCore.SIGNAL("subWindowActivated(QMdiSubWindow*)"),self.onMdiArea) + return False + + def getMainWindow(self): + "returns the main window" + # using QtGui.qApp.activeWindow() isn't very reliable because if another + # widget than the mainwindow is active (e.g. a dialog) the wrong widget is + # returned + toplevel = QtGui.qApp.topLevelWidgets() + for i in toplevel: + if i.metaObject().className() == "Gui::MainWindow": + return i + raise Exception("No main window found") + + def retranslateUi(self): + """ Set user interface locale strings. + """ + self.form.setWindowTitle(Translator.translate("Set positions and sizes")) + self.form.findChild(QtGui.QLabel, "posLabel").setText(Translator.translate("Position")) + self.form.findChild(QtGui.QLabel, "sizeLabel").setText(Translator.translate("Size")) + + def onItem(self, row): + """ Executed when selected item is modified. """ + # Get selected item + self.item = row + # Call to update + self.updateUI() + + def onData(self, value): + """ Executed when selected item data is modified. """ + plt = Plot.getPlot() + if not plt: + self.updateUI() + return + if not self.skip: + self.skip = True + name = self.names[self.item] + obj = self.objs[self.item] + x = self.form.x.value() + y = self.form.y.value() + s = self.form.s.value() + # x/y labels only have one position control + if name.find('x label') >= 0: + self.form.y.setValue(x) + elif name.find('y label') >= 0: + self.form.x.setValue(y) + # title and labels only have one size control + if name.find('title') >= 0 or name.find('label') >= 0: + obj.set_position((x,y)) + obj.set_size(s) + # legend have all controls + else: + Plot.legend(plt.legend, (x,y), s) + plt.update() + self.skip = False + + def onMdiArea(self, subWin): + """ Executed when window is selected on mdi area. + @param subWin Selected window. + """ + plt = Plot.getPlot() + if plt != subWin: + self.updateUI() + + def updateUI(self): + """ Setup UI controls values if possible """ + plt = Plot.getPlot() + self.form.items.setEnabled(bool(plt)) + self.form.x.setEnabled(bool(plt)) + self.form.y.setEnabled(bool(plt)) + self.form.s.setEnabled(bool(plt)) + if not plt: + self.plt = plt + self.form.items.clear() + return + # Refill items list only if Plot instance have been changed + if self.plt != plt: + self.plt = plt + self.plt.update() # Update plot in order to put legend in correct place + self.setList() + # Get data for controls + name = self.names[self.item] + obj = self.objs[self.item] + if name.find('title') >= 0 or name.find('label') >= 0: + p = obj.get_position() + x = p[0] + y = p[1] + s = obj.get_size() + if name.find('x label') >= 0: + self.form.y.setEnabled(False) + self.form.y.setValue(x) + elif name.find('y label') >= 0: + self.form.x.setEnabled(False) + self.form.x.setValue(y) + else: + x = plt.legPos[0] + y = plt.legPos[1] + s = obj.get_texts()[-1].get_fontsize() + # Send it to controls + self.form.x.setValue(x) + self.form.y.setValue(y) + self.form.s.setValue(s) + + def setList(self): + """ Setup UI controls values if possible """ + # Clear lists + self.names = [] + self.objs = [] + # Fill lists with available objects + if self.plt: + # Axes data + for i in range(0,len(self.plt.axesList)): + ax = self.plt.axesList[i] + # Each axes have title, xaxis and yaxis + self.names.append('title (axes %d)' % (i)) + self.objs.append(ax.title) + self.names.append('x label (axes %d)' % (i)) + self.objs.append(ax.xaxis.get_label()) + self.names.append('y label (axes %d)' % (i)) + self.objs.append(ax.yaxis.get_label()) + # Legend if exist + ax = self.plt.axesList[-1] + if ax.legend_: + self.names.append('legend') + self.objs.append(ax.legend_) + # Send list to widget + self.form.items.clear() + for name in self.names: + self.form.items.addItem(name) + # Ensure that selected item is correct + if self.item >= len(self.names): + self.item = len(self.names)-1 + self.form.items.setCurrentIndex(self.item) + +def createTask(): + panel = TaskPanel() + Gui.Control.showDialog(panel) + if panel.setupUi(): + Gui.Control.closeDialog(panel) + return None + return panel diff --git a/src/Mod/Plot/plotPositions/TaskPanel.ui b/src/Mod/Plot/plotPositions/TaskPanel.ui new file mode 100644 index 000000000..18cc7ac03 --- /dev/null +++ b/src/Mod/Plot/plotPositions/TaskPanel.ui @@ -0,0 +1,107 @@ + + + TaskPanel + + + + 0 + 0 + 296 + 336 + + + + + 0 + 336 + + + + Set positions and sizes + + + + + + 0 + + + + + QAbstractItemView::NoEditTriggers + + + true + + + + + + + + + Position + + + + + + + 3 + + + -99999.000000000000000 + + + 99999.000000000000000 + + + 0.010000000000000 + + + + + + + 3 + + + -99999.000000000000000 + + + 99999.000000000000000 + + + 0.010000000000000 + + + + + + + Size + + + + + + + 1 + + + 0.000000000000000 + + + 99999.000000000000000 + + + + + + + + + + + + diff --git a/src/Mod/Plot/plotPositions/__init__.py b/src/Mod/Plot/plotPositions/__init__.py new file mode 100644 index 000000000..24058d7a9 --- /dev/null +++ b/src/Mod/Plot/plotPositions/__init__.py @@ -0,0 +1,36 @@ +#*************************************************************************** +#* * +#* Copyright (c) 2011, 2012 * +#* Jose Luis Cercos Pita * +#* * +#* This program is free software; you can redistribute it and/or modify * +#* it under the terms of the GNU Lesser General Public License (LGPL) * +#* as published by the Free Software Foundation; either version 2 of * +#* the License, or (at your option) any later version. * +#* for detail see the LICENCE text file. * +#* * +#* This program is distributed in the hope that it will be useful, * +#* but WITHOUT ANY WARRANTY; without even the implied warranty of * +#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +#* GNU Library General Public License for more details. * +#* * +#* You should have received a copy of the GNU Library General Public * +#* License along with this program; if not, write to the Free Software * +#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * +#* USA * +#* * +#*************************************************************************** + +# FreeCAD modules +import FreeCAD +import FreeCADGui + +# Qt libraries +from PyQt4 import QtGui,QtCore + +# Main object +import TaskPanel + +def load(): + """ Loads the tool """ + TaskPanel.createTask() diff --git a/src/Mod/Plot/plotSave/TaskPanel.py b/src/Mod/Plot/plotSave/TaskPanel.py new file mode 100644 index 000000000..f545d9ff5 --- /dev/null +++ b/src/Mod/Plot/plotSave/TaskPanel.py @@ -0,0 +1,149 @@ +#*************************************************************************** +#* * +#* Copyright (c) 2011, 2012 * +#* Jose Luis Cercos Pita * +#* * +#* This program is free software; you can redistribute it and/or modify * +#* it under the terms of the GNU Lesser General Public License (LGPL) * +#* as published by the Free Software Foundation; either version 2 of * +#* the License, or (at your option) any later version. * +#* for detail see the LICENCE text file. * +#* * +#* This program is distributed in the hope that it will be useful, * +#* but WITHOUT ANY WARRANTY; without even the implied warranty of * +#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +#* GNU Library General Public License for more details. * +#* * +#* You should have received a copy of the GNU Library General Public * +#* License along with this program; if not, write to the Free Software * +#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * +#* USA * +#* * +#*************************************************************************** + +import os +# FreeCAD modules +import FreeCAD as App +import FreeCADGui as Gui +# Qt library +from PyQt4 import QtGui,QtCore +# Module +import Plot +from plotUtils import Paths, Translator + +class TaskPanel: + def __init__(self): + self.ui = Paths.modulePath() + "/plotSave/TaskPanel.ui" + + def accept(self): + plt = Plot.getPlot() + if not plt: + msg = Translator.translate("Plot document must be selected in order to save it.") + App.Console.PrintError(msg+"\n") + return False + path = unicode(self.form.path.text()) + size = (self.form.sizeX.value(), self.form.sizeY.value()) + dpi = self.form.dpi.value() + Plot.save(path, size, dpi) + return True + + def reject(self): + return True + + def clicked(self, index): + pass + + def open(self): + pass + + def needsFullSpace(self): + return True + + def isAllowedAlterSelection(self): + return False + + def isAllowedAlterView(self): + return True + + def isAllowedAlterDocument(self): + return False + + def helpRequested(self): + pass + + def setupUi(self): + mw = self.getMainWindow() + form = mw.findChild(QtGui.QWidget, "TaskPanel") + form.path = form.findChild(QtGui.QLineEdit, "path") + form.pathButton = form.findChild(QtGui.QPushButton, "pathButton") + form.sizeX = form.findChild(QtGui.QDoubleSpinBox, "sizeX") + form.sizeY = form.findChild(QtGui.QDoubleSpinBox, "sizeY") + form.dpi = form.findChild(QtGui.QSpinBox, "dpi") + self.form = form + self.retranslateUi() + QtCore.QObject.connect(form.pathButton,QtCore.SIGNAL("pressed()"),self.onPathButton) + QtCore.QObject.connect(Plot.getMdiArea(),QtCore.SIGNAL("subWindowActivated(QMdiSubWindow*)"),self.onMdiArea) + home = os.getenv('USERPROFILE') or os.getenv('HOME') + form.path.setText(os.path.join(home,"plot.png")) + self.updateUI() + return False + + def getMainWindow(self): + "returns the main window" + # using QtGui.qApp.activeWindow() isn't very reliable because if another + # widget than the mainwindow is active (e.g. a dialog) the wrong widget is + # returned + toplevel = QtGui.qApp.topLevelWidgets() + for i in toplevel: + if i.metaObject().className() == "Gui::MainWindow": + return i + raise Exception("No main window found") + + def retranslateUi(self): + """ Set user interface locale strings. + """ + self.form.setWindowTitle(Translator.translate("Save figure")) + self.form.findChild(QtGui.QLabel, "sizeLabel").setText(Translator.translate("Inches")) + self.form.findChild(QtGui.QLabel, "dpiLabel").setText(Translator.translate("Dots per Inch")) + + def updateUI(self): + """ Setup UI controls values if possible """ + plt = Plot.getPlot() + self.form.path.setEnabled(bool(plt)) + self.form.pathButton.setEnabled(bool(plt)) + self.form.sizeX.setEnabled(bool(plt)) + self.form.sizeY.setEnabled(bool(plt)) + self.form.dpi.setEnabled(bool(plt)) + if not plt: + return + fig = plt.fig + size = fig.get_size_inches() + dpi = fig.get_dpi() + self.form.sizeX.setValue(size[0]) + self.form.sizeY.setValue(size[1]) + self.form.dpi.setValue(dpi) + + def onPathButton(self): + """ Executed when path button is pressed. + """ + path = self.form.path.text() + file_choices = "Portable Network Graphics (*.png)|*.png;;Portable Document Format (*.pdf)|*.pdf;;PostScript (*.ps)|*.ps;;Encapsulated PostScript (*.eps)|*.eps" + path = QtGui.QFileDialog.getSaveFileName(None, 'Save figure', path, file_choices) + if path: + self.form.path.setText(path) + + def onMdiArea(self, subWin): + """ Executed when window is selected on mdi area. + @param subWin Selected window. + """ + plt = Plot.getPlot() + if plt != subWin: + self.updateUI() + +def createTask(): + panel = TaskPanel() + Gui.Control.showDialog(panel) + if panel.setupUi(): + Gui.Control.closeDialog(panel) + return None + return panel diff --git a/src/Mod/Plot/plotSave/TaskPanel.ui b/src/Mod/Plot/plotSave/TaskPanel.ui new file mode 100644 index 000000000..9bc79fc3e --- /dev/null +++ b/src/Mod/Plot/plotSave/TaskPanel.ui @@ -0,0 +1,141 @@ + + + TaskPanel + + + + 0 + 0 + 260 + 253 + + + + Save figure + + + + + + + + + + + 7 + 0 + + + + + + + + true + + + + 1 + 0 + + + + ... + + + + + + + + + + + 0.010000000000000 + + + 99999.000000000000000 + + + 6.400000000000000 + + + + + + + + 0 + 0 + + + + x + + + + + + + 0.010000000000000 + + + 99999.000000000000000 + + + 4.800000000000000 + + + + + + + + 0 + 0 + + + + Inches + + + + + + + + + + + 1 + + + 2048 + + + 100 + + + + + + + + 0 + 0 + + + + Dots per Inch + + + + + + + + + + + + diff --git a/src/Mod/Plot/plotSave/__init__.py b/src/Mod/Plot/plotSave/__init__.py new file mode 100644 index 000000000..24058d7a9 --- /dev/null +++ b/src/Mod/Plot/plotSave/__init__.py @@ -0,0 +1,36 @@ +#*************************************************************************** +#* * +#* Copyright (c) 2011, 2012 * +#* Jose Luis Cercos Pita * +#* * +#* This program is free software; you can redistribute it and/or modify * +#* it under the terms of the GNU Lesser General Public License (LGPL) * +#* as published by the Free Software Foundation; either version 2 of * +#* the License, or (at your option) any later version. * +#* for detail see the LICENCE text file. * +#* * +#* This program is distributed in the hope that it will be useful, * +#* but WITHOUT ANY WARRANTY; without even the implied warranty of * +#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +#* GNU Library General Public License for more details. * +#* * +#* You should have received a copy of the GNU Library General Public * +#* License along with this program; if not, write to the Free Software * +#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * +#* USA * +#* * +#*************************************************************************** + +# FreeCAD modules +import FreeCAD +import FreeCADGui + +# Qt libraries +from PyQt4 import QtGui,QtCore + +# Main object +import TaskPanel + +def load(): + """ Loads the tool """ + TaskPanel.createTask() diff --git a/src/Mod/Plot/plotSeries/TaskPanel.py b/src/Mod/Plot/plotSeries/TaskPanel.py new file mode 100644 index 000000000..3d129ebf7 --- /dev/null +++ b/src/Mod/Plot/plotSeries/TaskPanel.py @@ -0,0 +1,309 @@ +#*************************************************************************** +#* * +#* Copyright (c) 2011, 2012 * +#* Jose Luis Cercos Pita * +#* * +#* This program is free software; you can redistribute it and/or modify * +#* it under the terms of the GNU Lesser General Public License (LGPL) * +#* as published by the Free Software Foundation; either version 2 of * +#* the License, or (at your option) any later version. * +#* for detail see the LICENCE text file. * +#* * +#* This program is distributed in the hope that it will be useful, * +#* but WITHOUT ANY WARRANTY; without even the implied warranty of * +#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +#* GNU Library General Public License for more details. * +#* * +#* You should have received a copy of the GNU Library General Public * +#* License along with this program; if not, write to the Free Software * +#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * +#* USA * +#* * +#*************************************************************************** + +# FreeCAD modules +import FreeCAD as App +import FreeCADGui as Gui +# Qt library +from PyQt4 import QtGui,QtCore +# Module +import Plot +from plotUtils import Paths, Translator +# matplotlib +import matplotlib +from matplotlib.lines import Line2D +import matplotlib.colors as Colors + +class TaskPanel: + def __init__(self): + self.ui = Paths.modulePath() + "/plotSeries/TaskPanel.ui" + self.skip = False + self.item = 0 + self.plt = None + + def accept(self): + return True + + def reject(self): + return True + + def clicked(self, index): + pass + + def open(self): + pass + + def needsFullSpace(self): + return True + + def isAllowedAlterSelection(self): + return False + + def isAllowedAlterView(self): + return True + + def isAllowedAlterDocument(self): + return False + + def helpRequested(self): + pass + + def setupUi(self): + mw = self.getMainWindow() + form = mw.findChild(QtGui.QWidget, "TaskPanel") + form.items = form.findChild(QtGui.QListWidget, "items") + form.label = form.findChild(QtGui.QLineEdit, "label") + form.isLabel = form.findChild(QtGui.QCheckBox, "isLabel") + form.style = form.findChild(QtGui.QComboBox, "lineStyle") + form.marker = form.findChild(QtGui.QComboBox, "markers") + form.width = form.findChild(QtGui.QDoubleSpinBox, "lineWidth") + form.size = form.findChild(QtGui.QSpinBox, "markerSize") + form.color = form.findChild(QtGui.QPushButton, "color") + form.remove = form.findChild(QtGui.QPushButton, "remove") + self.form = form + self.retranslateUi() + self.fillStyles() + self.updateUI() + QtCore.QObject.connect(form.items, QtCore.SIGNAL("currentRowChanged(int)"),self.onItem) + QtCore.QObject.connect(form.label, QtCore.SIGNAL("editingFinished()"),self.onData) + QtCore.QObject.connect(form.isLabel,QtCore.SIGNAL("stateChanged(int)"),self.onData) + QtCore.QObject.connect(form.style, QtCore.SIGNAL("currentIndexChanged(int)"),self.onData) + QtCore.QObject.connect(form.marker, QtCore.SIGNAL("currentIndexChanged(int)"),self.onData) + QtCore.QObject.connect(form.width, QtCore.SIGNAL("valueChanged(double)"),self.onData) + QtCore.QObject.connect(form.size, QtCore.SIGNAL("valueChanged(int)"),self.onData) + QtCore.QObject.connect(form.color, QtCore.SIGNAL("pressed()"),self.onColor) + QtCore.QObject.connect(form.remove, QtCore.SIGNAL("pressed()"),self.onRemove) + QtCore.QObject.connect(Plot.getMdiArea(),QtCore.SIGNAL("subWindowActivated(QMdiSubWindow*)"),self.onMdiArea) + return False + + def getMainWindow(self): + "returns the main window" + # using QtGui.qApp.activeWindow() isn't very reliable because if another + # widget than the mainwindow is active (e.g. a dialog) the wrong widget is + # returned + toplevel = QtGui.qApp.topLevelWidgets() + for i in toplevel: + if i.metaObject().className() == "Gui::MainWindow": + return i + raise Exception("No main window found") + + def retranslateUi(self): + """ Set user interface locale strings. + """ + self.form.setWindowTitle(Translator.translate("Set positions and sizes")) + self.form.isLabel.setText(Translator.translate("No label")) + self.form.remove.setText(Translator.translate("Remove serie")) + self.form.findChild(QtGui.QLabel, "styleLabel").setText(Translator.translate("Line style")) + self.form.findChild(QtGui.QLabel, "markerLabel").setText(Translator.translate("Marker")) + + def fillStyles(self): + """ Fill style combo boxes. """ + # Line styles + linestyles = Line2D.lineStyles.keys() + for i in range(0,len(linestyles)): + style = linestyles[i] + string = "\'" + str(style) + "\' (" + Line2D.lineStyles[style] + ")" + self.form.style.addItem(string) + # Markers + markers = Line2D.markers.keys() + for i in range(0,len(markers)): + marker = markers[i] + string = "\'" + str(marker) + "\' (" + Line2D.markers[marker] + ")" + self.form.marker.addItem(string) + + def onItem(self, row): + """ Executed when selected item is modified. """ + if not self.skip: + self.skip = True + # Get selected item + self.item = row + # Call to update + self.updateUI() + self.skip = False + + def onData(self): + """ Executed when selected item data is modified. """ + if not self.skip: + self.skip = True + plt = Plot.getPlot() + if not plt: + self.updateUI() + return + # Ensure that selected serie exist + if self.item >= len(Plot.series()): + self.updateUI() + return + # Set label + serie = Plot.series()[self.item] + if(self.form.isLabel.isChecked()): + serie.name = None + self.form.label.setEnabled(False) + else: + serie.name = self.form.label.text() + self.form.label.setEnabled(True) + # Set line style and marker + style = self.form.style.currentIndex() + linestyles = Line2D.lineStyles.keys() + serie.line.set_linestyle(linestyles[style]) + marker = self.form.marker.currentIndex() + markers = Line2D.markers.keys() + serie.line.set_marker(markers[marker]) + # Set line width and marker size + serie.line.set_linewidth(self.form.width.value()) + serie.line.set_markersize(self.form.size.value()) + plt.update() + # Regenerate series labels + self.setList() + self.skip = False + + def onColor(self): + """ Executed when color pallete is requested. """ + plt = Plot.getPlot() + if not plt: + self.updateUI() + return + # Ensure that selected serie exist + if self.item >= len(Plot.series()): + self.updateUI() + return + # Show widget to select color + col = QtGui.QColorDialog.getColor() + # Send color to widget and serie + if col.isValid(): + serie = plt.series[self.item] + self.form.color.setStyleSheet("background-color: rgb(%d, %d, %d);" % (col.red(), + col.green(), col.blue())) + serie.line.set_color((col.redF(), col.greenF(), col.blueF())) + plt.update() + + def onRemove(self): + """ Executed when data serie must be removed. """ + plt = Plot.getPlot() + if not plt: + self.updateUI() + return + # Ensure that selected serie exist + if self.item >= len(Plot.series()): + self.updateUI() + return + # Remove serie + Plot.removeSerie(self.item) + self.setList() + self.updateUI() + plt.update() + + def onMdiArea(self, subWin): + """ Executed when window is selected on mdi area. + @param subWin Selected window. + """ + plt = Plot.getPlot() + if plt != subWin: + self.updateUI() + + def updateUI(self): + """ Setup UI controls values if possible """ + plt = Plot.getPlot() + self.form.items.setEnabled(bool(plt)) + self.form.label.setEnabled(bool(plt)) + self.form.isLabel.setEnabled(bool(plt)) + self.form.style.setEnabled(bool(plt)) + self.form.marker.setEnabled(bool(plt)) + self.form.width.setEnabled(bool(plt)) + self.form.size.setEnabled(bool(plt)) + self.form.color.setEnabled(bool(plt)) + self.form.remove.setEnabled(bool(plt)) + if not plt: + self.plt = plt + self.form.items.clear() + return + self.skip = True + # Refill list + if self.plt != plt or len(Plot.series()) != self.form.items.count(): + self.plt = plt + self.setList() + # Ensure that have series + if not len(Plot.series()): + self.form.label.setEnabled(False) + self.form.isLabel.setEnabled(False) + self.form.style.setEnabled(False) + self.form.marker.setEnabled(False) + self.form.width.setEnabled(False) + self.form.size.setEnabled(False) + self.form.color.setEnabled(False) + self.form.remove.setEnabled(False) + return + # Set label + serie = Plot.series()[self.item] + if serie.name == None: + self.form.isLabel.setChecked(True) + self.form.label.setEnabled(False) + self.form.label.setText("") + else: + self.form.isLabel.setChecked(False) + self.form.label.setText(serie.name) + # Set line style and marker + self.form.style.setCurrentIndex(0) + linestyles = Line2D.lineStyles.keys() + for i in range(0,len(linestyles)): + style = linestyles[i] + if style == serie.line.get_linestyle(): + self.form.style.setCurrentIndex(i) + self.form.marker.setCurrentIndex(0) + markers = Line2D.markers.keys() + for i in range(0,len(markers)): + marker = markers[i] + if marker == serie.line.get_marker(): + self.form.marker.setCurrentIndex(i) + # Set line width and marker size + self.form.width.setValue(serie.line.get_linewidth()) + self.form.size.setValue(serie.line.get_markersize()) + # Set color + color = Colors.colorConverter.to_rgb(serie.line.get_color()) + self.form.color.setStyleSheet("background-color: rgb(%d, %d, %d);" % (int(color[0]*255), + int(color[1]*255), int(color[2]*255))) + self.skip = False + + def setList(self): + """ Setup UI controls values if possible """ + self.form.items.clear() + series = Plot.series() + for i in range(0,len(series)): + serie = series[i] + string = 'serie ' + str(i) + ': ' + if serie.name == None: + string = string + '\"No label\"' + else: + string = string + serie.name + self.form.items.addItem(string) + # Ensure that selected item is correct + if len(series) and self.item >= len(series): + self.item = len(series)-1 + self.form.items.setCurrentIndex(self.item) + +def createTask(): + panel = TaskPanel() + Gui.Control.showDialog(panel) + if panel.setupUi(): + Gui.Control.closeDialog(panel) + return None + return panel diff --git a/src/Mod/Plot/plotSeries/TaskPanel.ui b/src/Mod/Plot/plotSeries/TaskPanel.ui new file mode 100644 index 000000000..3fbde165a --- /dev/null +++ b/src/Mod/Plot/plotSeries/TaskPanel.ui @@ -0,0 +1,154 @@ + + + TaskPanel + + + + 0 + 0 + 296 + 336 + + + + + 0 + 336 + + + + Configure series + + + + + + 0 + + + + + QAbstractItemView::NoEditTriggers + + + true + + + + + + + + + + 2 + 0 + + + + + + + + 0.010000000000000 + + + 9999.000000000000000 + + + 0.500000000000000 + + + 1.000000000000000 + + + + + + + Line style + + + + + + + Remove serie + + + + + + + + 1 + 0 + + + + + + + + Markers + + + + + + + + 1 + 0 + + + + No label + + + + + + + + 1 + 0 + + + + + + + + + 1 + 0 + + + + false + + + + + + + + + + 1 + + + 9999 + + + + + + + + + + + + diff --git a/src/Mod/Plot/plotSeries/__init__.py b/src/Mod/Plot/plotSeries/__init__.py new file mode 100644 index 000000000..24058d7a9 --- /dev/null +++ b/src/Mod/Plot/plotSeries/__init__.py @@ -0,0 +1,36 @@ +#*************************************************************************** +#* * +#* Copyright (c) 2011, 2012 * +#* Jose Luis Cercos Pita * +#* * +#* This program is free software; you can redistribute it and/or modify * +#* it under the terms of the GNU Lesser General Public License (LGPL) * +#* as published by the Free Software Foundation; either version 2 of * +#* the License, or (at your option) any later version. * +#* for detail see the LICENCE text file. * +#* * +#* This program is distributed in the hope that it will be useful, * +#* but WITHOUT ANY WARRANTY; without even the implied warranty of * +#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +#* GNU Library General Public License for more details. * +#* * +#* You should have received a copy of the GNU Library General Public * +#* License along with this program; if not, write to the Free Software * +#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * +#* USA * +#* * +#*************************************************************************** + +# FreeCAD modules +import FreeCAD +import FreeCADGui + +# Qt libraries +from PyQt4 import QtGui,QtCore + +# Main object +import TaskPanel + +def load(): + """ Loads the tool """ + TaskPanel.createTask() diff --git a/src/Mod/Plot/plotUtils/Paths.py b/src/Mod/Plot/plotUtils/Paths.py new file mode 100644 index 000000000..8549681c7 --- /dev/null +++ b/src/Mod/Plot/plotUtils/Paths.py @@ -0,0 +1,55 @@ +#*************************************************************************** +#* * +#* Copyright (c) 2011, 2012 * +#* Jose Luis Cercos Pita * +#* * +#* This program is free software; you can redistribute it and/or modify * +#* it under the terms of the GNU Lesser General Public License (LGPL) * +#* as published by the Free Software Foundation; either version 2 of * +#* the License, or (at your option) any later version. * +#* for detail see the LICENCE text file. * +#* * +#* This program is distributed in the hope that it will be useful, * +#* but WITHOUT ANY WARRANTY; without even the implied warranty of * +#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +#* GNU Library General Public License for more details. * +#* * +#* You should have received a copy of the GNU Library General Public * +#* License along with this program; if not, write to the Free Software * +#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * +#* USA * +#* * +#*************************************************************************** + +import FreeCAD, FreeCADGui, os + +def modulePath(): + """returns the current Ship design module path + @return Module path""" + path1 = FreeCAD.ConfigGet("AppHomePath") + "Mod/Plot" + path2 = FreeCAD.ConfigGet("UserAppData") + "Mod/Plot" + if os.path.exists(path2): + return path2 + else: + return path1 + +def iconsPath(): + """returns the current Ship design module icons path + @return Icons path""" + path = modulePath() + "/Icons" + return path + +def getPathFromFile(fileName): + """ Gets the directory path from a file name + @param fileName Name of the file + @return Directory path. + """ + if not fileName: + return '' + i = 1 + try: + while 1: + i = fileName.index("/", i+1) + except ValueError: + pass + return fileName[0:i+1] diff --git a/src/Mod/Plot/plotUtils/Translator.py b/src/Mod/Plot/plotUtils/Translator.py new file mode 100644 index 000000000..fc6b562d5 --- /dev/null +++ b/src/Mod/Plot/plotUtils/Translator.py @@ -0,0 +1,30 @@ +#*************************************************************************** +#* * +#* Copyright (c) 2011, 2012 * +#* Jose Luis Cercos Pita * +#* * +#* This program is free software; you can redistribute it and/or modify * +#* it under the terms of the GNU Lesser General Public License (LGPL) * +#* as published by the Free Software Foundation; either version 2 of * +#* the License, or (at your option) any later version. * +#* for detail see the LICENCE text file. * +#* * +#* This program is distributed in the hope that it will be useful, * +#* but WITHOUT ANY WARRANTY; without even the implied warranty of * +#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +#* GNU Library General Public License for more details. * +#* * +#* You should have received a copy of the GNU Library General Public * +#* License along with this program; if not, write to the Free Software * +#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * +#* USA * +#* * +#*************************************************************************** + +import FreeCAD, FreeCADGui, os +from PyQt4 import QtCore,QtGui + +def translate(text,context="plot"): + "convenience function for Qt translator" + return QtGui.QApplication.translate(context, text, None, + QtGui.QApplication.UnicodeUTF8) diff --git a/src/Mod/Plot/plotUtils/__init__.py b/src/Mod/Plot/plotUtils/__init__.py new file mode 100644 index 000000000..00b200f14 --- /dev/null +++ b/src/Mod/Plot/plotUtils/__init__.py @@ -0,0 +1,25 @@ +#*************************************************************************** +#* * +#* Copyright (c) 2011, 2012 * +#* Jose Luis Cercos Pita * +#* * +#* This program is free software; you can redistribute it and/or modify * +#* it under the terms of the GNU Lesser General Public License (LGPL) * +#* as published by the Free Software Foundation; either version 2 of * +#* the License, or (at your option) any later version. * +#* for detail see the LICENCE text file. * +#* * +#* This program is distributed in the hope that it will be useful, * +#* but WITHOUT ANY WARRANTY; without even the implied warranty of * +#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +#* GNU Library General Public License for more details. * +#* * +#* You should have received a copy of the GNU Library General Public * +#* License along with this program; if not, write to the Free Software * +#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * +#* USA * +#* * +#*************************************************************************** + +# Empty file to treat the folder as a package + diff --git a/src/Mod/Points/Gui/Makefile.am b/src/Mod/Points/Gui/Makefile.am index 240f52679..fe0657ed9 100644 --- a/src/Mod/Points/Gui/Makefile.am +++ b/src/Mod/Points/Gui/Makefile.am @@ -86,8 +86,8 @@ EXTRA_DIST = \ Resources/translations/Points_af.ts \ Resources/translations/Points_de.qm \ Resources/translations/Points_de.ts \ - Resources/translations/Points_es.qm \ - Resources/translations/Points_es.ts \ + Resources/translations/Points_es-ES.qm \ + Resources/translations/Points_es-ES.ts \ Resources/translations/Points_fi.qm \ Resources/translations/Points_fi.ts \ Resources/translations/Points_fr.qm \ @@ -102,14 +102,28 @@ EXTRA_DIST = \ Resources/translations/Points_no.ts \ Resources/translations/Points_pl.qm \ Resources/translations/Points_pl.ts \ - Resources/translations/Points_pt.qm \ - Resources/translations/Points_pt.ts \ + Resources/translations/Points_pt-BR.qm \ + Resources/translations/Points_pt-BR.ts \ Resources/translations/Points_ru.qm \ Resources/translations/Points_ru.ts \ - Resources/translations/Points_se.qm \ - Resources/translations/Points_se.ts \ + Resources/translations/Points_sv-SE.qm \ + Resources/translations/Points_sv-SE.ts \ Resources/translations/Points_uk.qm \ Resources/translations/Points_uk.ts \ - Resources/translations/Points_zh.qm \ - Resources/translations/Points_zh.ts + Resources/translations/Points_zh-TW.qm \ + Resources/translations/Points_zh-TW.ts \ + Resources/translations/Points_ro.qm \ + Resources/translations/Points_ro.ts \ + Resources/translations/Points_ja.qm \ + Resources/translations/Points_ja.ts \ + Resources/translations/Points_tr.qm \ + Resources/translations/Points_tr.ts \ + Resources/translations/Points_cs.qm \ + Resources/translations/Points_cs.ts \ + Resources/translations/Points_sk.qm \ + Resources/translations/Points_sk.ts \ + Resources/translations/Points_hu.qm \ + Resources/translations/Points_hu.ts \ + Resources/translations/Points_zh-CN.qm \ + Resources/translations/Points_zh-CN.ts diff --git a/src/Mod/Points/Gui/Resources/Points.qrc b/src/Mod/Points/Gui/Resources/Points.qrc index b69922e70..e612b54ec 100644 --- a/src/Mod/Points/Gui/Resources/Points.qrc +++ b/src/Mod/Points/Gui/Resources/Points.qrc @@ -2,7 +2,6 @@ translations/Points_af.qm translations/Points_de.qm - translations/Points_es.qm translations/Points_fi.qm translations/Points_fr.qm translations/Points_hr.qm @@ -10,10 +9,18 @@ translations/Points_nl.qm translations/Points_no.qm translations/Points_pl.qm - translations/Points_pt.qm translations/Points_ru.qm - translations/Points_se.qm translations/Points_uk.qm - translations/Points_zh.qm + translations/Points_tr.qm + translations/Points_sv-SE.qm + translations/Points_zh-TW.qm + translations/Points_pt-BR.qm + translations/Points_cs.qm + translations/Points_sk.qm + translations/Points_es-ES.qm + translations/Points_zh-CN.qm + translations/Points_ja.qm + translations/Points_ro.qm + translations/Points_hu.qm diff --git a/src/Mod/Points/Gui/Resources/translations/Points_af.qm b/src/Mod/Points/Gui/Resources/translations/Points_af.qm index c63fbacec..796877201 100644 Binary files a/src/Mod/Points/Gui/Resources/translations/Points_af.qm and b/src/Mod/Points/Gui/Resources/translations/Points_af.qm differ diff --git a/src/Mod/Points/Gui/Resources/translations/Points_af.ts b/src/Mod/Points/Gui/Resources/translations/Points_af.ts index f2c5ec3be..2977653d5 100644 --- a/src/Mod/Points/Gui/Resources/translations/Points_af.ts +++ b/src/Mod/Points/Gui/Resources/translations/Points_af.ts @@ -1,251 +1,193 @@ - - + + CmdPointsExport - - Points - Punte + + Points + Punte - - Export points... - Voer punte uit... + Export points... + Voer punte uit... - - - - Exports a point cloud - Voer 'n puntwolk uit + Exports a point cloud + Voer 'n puntwolk uit - - + + CmdPointsImport - - Points - Punte + Points + Punte - - Import points... - Voer punte in... + Import points... + Voer punte in... - - - - Imports a point cloud - Voer 'n puntwolk in + Imports a point cloud + Voer 'n puntwolk in - - + + CmdPointsPolyCut - - Points - Punte + Points + Punte - - Cut point cloud - Sny 'n puntwolk + Cut point cloud + Sny 'n puntwolk - - - - Cuts a point cloud with a picked polygon - Sny 'n puntwolk met 'n gekose veelhoek + Cuts a point cloud with a picked polygon + Sny 'n puntwolk met 'n gekose veelhoek - - + + CmdPointsTransform - - Points - Punte + Points + Punte - - Transform Points - Transformeer Punte + Transform Points + Transformeer Punte - - - - Test to transform a point cloud - Toets om 'n puntwolk te transformeer + Test to transform a point cloud + Toets om 'n puntwolk te transformeer - - + + PointsGui::DlgPointsRead - - ASCII points import - Voer ASCII-punte in + + ASCII points import + Voer ASCII-punte in - - Template: - Standaardvorm: + Template: + Standaardvorm: - - Special lines - Spesiale lyne + Special lines + Spesiale lyne - - First line: - Eerste lyn: + First line: + Eerste lyn: - - Ignore - Ignoreer + Ignore + Ignoreer - - Cluster by lines starting with: - Groepeer lyne wat begin met: + Cluster by lines starting with: + Groepeer lyne wat begin met: - - Ignore lines starting with: - Ignoreer lyne wat begin met: + Ignore lines starting with: + Ignoreer lyne wat begin met: - - Point format - Puntformaat + Point format + Puntformaat - - Number separator: - Number separator: + Number separator: + Nommerskeier: - - Points format: - Puntformaat: + Points format: + Puntformaat: - - - - Next block: - Volgende blok: + Next block: + Volgende blok: - - , - , + , + , - - ; - ; + ; + ; - - \t - \t + \t + \t - - \w - \w + \w + \w - - X,Y,Z - X,Y,Z + X,Y,Z + X,Y,Z - - X,Y - X,Y + X,Y + X,Y - - - - none - geen + none + geen - - - - I,J,K (normal vector) - I,J,K (normale vektor) + I,J,K (normal vector) + I,J,K (normale vektor) - - - - I,K (normal vector 2D) - I,K (gewone vektor 2D) + I,K (normal vector 2D) + I,K (gewone vektor 2D) - - - - R,G,B (color) - R,G,B (kleur) + R,G,B (color) + R,G,B (kleur) - - - - I (Gray value) - I (Gryswaarde) + I (Gray value) + I (Gryswaarde) - - Preview - Voorskou + Preview + Voorskou - - 100 - 100 + 100 + 100 - - Number of points - Aantal punte + Number of points + Aantal punte - - Number of previewed lines: - Aantal voorskoulyne: + Number of previewed lines: + Aantal voorskoulyne: - - + + QObject - - - Ascii Points (*.asc);;All Files (*.*) - Ascii Punte (*.asc);;Alle Lêers (*.*) + + Ascii Points (*.asc);;All Files (*.*) + Ascii Punte (*.asc);;Alle Lêers (*.*) - - + + Workbench - - Points tools - Punte-gereedskap + + Points tools + Punte-gereedskap - - &Points - &Punte + &Points + &Punte - + diff --git a/src/Mod/Points/Gui/Resources/translations/Points_cs.qm b/src/Mod/Points/Gui/Resources/translations/Points_cs.qm new file mode 100644 index 000000000..850de84d1 Binary files /dev/null and b/src/Mod/Points/Gui/Resources/translations/Points_cs.qm differ diff --git a/src/Mod/Points/Gui/Resources/translations/Points_cs.ts b/src/Mod/Points/Gui/Resources/translations/Points_cs.ts new file mode 100644 index 000000000..f534fe523 --- /dev/null +++ b/src/Mod/Points/Gui/Resources/translations/Points_cs.ts @@ -0,0 +1,193 @@ + + + + + CmdPointsExport + + + Points + Body + + + Export points... + Export bodů... + + + Exports a point cloud + Export množiny bodů + + + + CmdPointsImport + + Points + Body + + + Import points... + Import bodů... + + + Imports a point cloud + Import množiny bodů + + + + CmdPointsPolyCut + + Points + Body + + + Cut point cloud + Ořezat množinu bodů + + + Cuts a point cloud with a picked polygon + Ořezat množinu bodů výběrovým polygonem + + + + CmdPointsTransform + + Points + Body + + + Transform Points + Transfomovat body + + + Test to transform a point cloud + Zkusit transformovat množinu bodů + + + + PointsGui::DlgPointsRead + + + ASCII points import + Import bodů ve tvaru ASCII + + + Template: + Vzor: + + + Special lines + Speciální řádky + + + First line: + První řádek: + + + Ignore + Ignorováno + + + Cluster by lines starting with: + Skupina řádků začínajícich: + + + Ignore lines starting with: + Ignorované řádky začínají: + + + Point format + Formát bodu + + + Number separator: + Oddělovač čísel: + + + Points format: + Formát bodů: + + + Next block: + Další blok: + + + , + , + + + ; + ; + + + \t + \t + + + \w + \w + + + X,Y,Z + X,Y,Z + + + X,Y + X,Y + + + none + žádný + + + I,J,K (normal vector) + I,J,K (normálový vektor) + + + I,K (normal vector 2D) + I,K (normálový vektor 2D) + + + R,G,B (color) + R,G,B (barvy) + + + I (Gray value) + I (Stupně šedi) + + + Preview + Náhled + + + 100 + 100 + + + Number of points + Počet bodů + + + Number of previewed lines: + Počet zobrazovaných řádků: + + + + QObject + + + Ascii Points (*.asc);;All Files (*.*) + Body ve formátu ASCII (*.asc);;Všechny soubory (*.*) + + + + Workbench + + + Points tools + Nástroje bodů + + + &Points + &Body + + + diff --git a/src/Mod/Points/Gui/Resources/translations/Points_de.qm b/src/Mod/Points/Gui/Resources/translations/Points_de.qm index 9407ace9b..668c2abcd 100644 Binary files a/src/Mod/Points/Gui/Resources/translations/Points_de.qm and b/src/Mod/Points/Gui/Resources/translations/Points_de.qm differ diff --git a/src/Mod/Points/Gui/Resources/translations/Points_de.ts b/src/Mod/Points/Gui/Resources/translations/Points_de.ts index 1cc1bb3e5..8aac390fb 100644 --- a/src/Mod/Points/Gui/Resources/translations/Points_de.ts +++ b/src/Mod/Points/Gui/Resources/translations/Points_de.ts @@ -1,251 +1,193 @@ - - + + CmdPointsExport - - Points - Punkte + + Points + Punkte - - Export points... - Punkte exportieren... + Export points... + Punkte exportieren... - - - - Exports a point cloud - Exportiert eine Punktwolke + Exports a point cloud + Exportiert eine Punktwolke - - + + CmdPointsImport - - Points - Punkte + Points + Punkte - - Import points... - Punkte importieren... + Import points... + Punkte importieren... - - - - Imports a point cloud - Importiert eine Punktwolke + Imports a point cloud + Importiert eine Punktwolke - - + + CmdPointsPolyCut - - Points - Punkte + Points + Punkte - - Cut point cloud - Schneidet Punktwolke + Cut point cloud + Schneidet Punktwolke - - - - Cuts a point cloud with a picked polygon - Ausschneiden einer Punktwolke aus dem gewählten Polygon + Cuts a point cloud with a picked polygon + Ausschneiden einer Punktwolke aus dem gewählten Polygon - - + + CmdPointsTransform - - Points - Punkte + Points + Punkte - - Transform Points - Transformiere Punkte + Transform Points + Transformiere Punkte - - - - Test to transform a point cloud - Test zur Transformation einer Punktwolke + Test to transform a point cloud + Test zur Transformation einer Punktwolke - - + + PointsGui::DlgPointsRead - - ASCII points import - ASCII-Punkte-Import + + ASCII points import + ASCII-Punkte-Import - - Template: - Vorlage: + Template: + Vorlage: - - Special lines - Spezielle Zeilen + Special lines + Spezielle Zeilen - - First line: - Erste Zeile: + First line: + Erste Zeile: - - Ignore - Ignorieren + Ignore + Ignorieren - - Cluster by lines starting with: - Cluster von Zeilen beginnend mit: + Cluster by lines starting with: + Cluster von Zeilen beginnend mit: - - Ignore lines starting with: - Ignoriere Zeilen beginnend mit: + Ignore lines starting with: + Ignoriere Zeilen beginnend mit: - - Point format - Punkte-Format + Point format + Punkte-Format - - Number separator: - Zahlentrenner: + Number separator: + Zahlentrenner: - - Points format: - Punkte-Format: + Points format: + Punkte-Format: - - - - Next block: - Nächster Block: + Next block: + Nächster Block: - - , - , + , + , - - ; - ; + ; + ; - - \t - \t + \t + \t - - \w - \w + \w + \w - - X,Y,Z - X, Y, Z + X,Y,Z + X, Y, Z - - X,Y - X, Y + X,Y + X, Y - - - - none - keiner + none + keiner - - - - I,J,K (normal vector) - I, J, K (Normalenvektor) + I,J,K (normal vector) + I, J, K (Normalenvektor) - - - - I,K (normal vector 2D) - I, K (Normalenvektor 2D) + I,K (normal vector 2D) + I, K (Normalenvektor 2D) - - - - R,G,B (color) - R,G,B (Farbe) + R,G,B (color) + R,G,B (Farbe) - - - - I (Gray value) - I (Grauwert) + I (Gray value) + I (Grauwert) - - Preview - Vorschau + Preview + Vorschau - - 100 - 100 + 100 + 100 - - Number of points - Anzahl der Punkte + Number of points + Anzahl der Punkte - - Number of previewed lines: - Anzahl der angezeigten Zeilen: + Number of previewed lines: + Anzahl der angezeigten Zeilen: - - + + QObject - - - Ascii Points (*.asc);;All Files (*.*) - ASCII-Punkte (.asc);;Alle Dateien (*.*) + + Ascii Points (*.asc);;All Files (*.*) + ASCII-Punkte (.asc); Alle Dateien (*.*) - - + + Workbench - - Points tools - Punktwerkzeuge + + Points tools + Punktwerkzeuge - - &Points - &Punkte + &Points + &Punkte - + diff --git a/src/Mod/Points/Gui/Resources/translations/Points_es-ES.qm b/src/Mod/Points/Gui/Resources/translations/Points_es-ES.qm new file mode 100644 index 000000000..f309c19f1 Binary files /dev/null and b/src/Mod/Points/Gui/Resources/translations/Points_es-ES.qm differ diff --git a/src/Mod/Points/Gui/Resources/translations/Points_es-ES.ts b/src/Mod/Points/Gui/Resources/translations/Points_es-ES.ts new file mode 100644 index 000000000..c87065f04 --- /dev/null +++ b/src/Mod/Points/Gui/Resources/translations/Points_es-ES.ts @@ -0,0 +1,193 @@ + + + + + CmdPointsExport + + + Points + Puntos + + + Export points... + Exportar puntos... + + + Exports a point cloud + exporta una nube de puntos + + + + CmdPointsImport + + Points + Puntos + + + Import points... + Importar puntos... + + + Imports a point cloud + Importa una nube de puntos + + + + CmdPointsPolyCut + + Points + Puntos + + + Cut point cloud + Cortar una nube de puntos + + + Cuts a point cloud with a picked polygon + Corta una nube de puntos con un poligono seleccionado + + + + CmdPointsTransform + + Points + Puntos + + + Transform Points + Trasformar puntos + + + Test to transform a point cloud + Test para transformar una nube de puntos + + + + PointsGui::DlgPointsRead + + + ASCII points import + Importar puntos ASCII + + + Template: + Plantilla: + + + Special lines + Líneas especiales + + + First line: + Primera línea: + + + Ignore + Ignorar + + + Cluster by lines starting with: + Agrupar por líneas que empiezan con: + + + Ignore lines starting with: + Ignorar líneas que empiezan con: + + + Point format + Formato de punto + + + Number separator: + Separador de número: + + + Points format: + Formato de punto: + + + Next block: + Próximo bloque: + + + , + , + + + ; + ; + + + \t + \t + + + \w + \w + + + X,Y,Z + X,Y,Z + + + X,Y + X,Y + + + none + ninguno + + + I,J,K (normal vector) + I,J,K (vector normal) + + + I,K (normal vector 2D) + I,K (vector normal 2D) + + + R,G,B (color) + R,G,B (color) + + + I (Gray value) + I (valor de gris) + + + Preview + Previsualizar + + + 100 + 100 + + + Number of points + Número de puntos + + + Number of previewed lines: + Número de líneas previsualizadas: + + + + QObject + + + Ascii Points (*.asc);;All Files (*.*) + Puntos Ascii (*.asc);;Todos los archivos (*.*) + + + + Workbench + + + Points tools + Herramientas de puntos + + + &Points + &Puntos + + + diff --git a/src/Mod/Points/Gui/Resources/translations/Points_es.qm b/src/Mod/Points/Gui/Resources/translations/Points_es.qm deleted file mode 100644 index 33b793c78..000000000 Binary files a/src/Mod/Points/Gui/Resources/translations/Points_es.qm and /dev/null differ diff --git a/src/Mod/Points/Gui/Resources/translations/Points_es.ts b/src/Mod/Points/Gui/Resources/translations/Points_es.ts deleted file mode 100644 index 9fa1737dd..000000000 --- a/src/Mod/Points/Gui/Resources/translations/Points_es.ts +++ /dev/null @@ -1,251 +0,0 @@ - - - - - CmdPointsExport - - - Points - Puntos - - - - Export points... - Exportar puntos... - - - - - - Exports a point cloud - exporta una nube de puntos - - - - CmdPointsImport - - - Points - Puntos - - - - Import points... - Importar puntos... - - - - - - Imports a point cloud - Importa una nube de puntos - - - - CmdPointsPolyCut - - - Points - Puntos - - - - Cut point cloud - Cortar una nube de puntos - - - - - - Cuts a point cloud with a picked polygon - Corta una nube de puntos con un poligono seleccionado - - - - CmdPointsTransform - - - Points - Puntos - - - - Transform Points - Trasformar puntos - - - - - - Test to transform a point cloud - Test para transformar una nube de puntos - - - - PointsGui::DlgPointsRead - - - ASCII points import - Importar puntos ASCII - - - - Template: - Plantilla: - - - - Special lines - Líneas especiales - - - - First line: - Primera línea: - - - - Ignore - Ignorar - - - - Cluster by lines starting with: - Agrupar por líneas que empiezan con: - - - - Ignore lines starting with: - Ignorar líneas que empiezan con: - - - - Point format - Formato de punto - - - - Number separator: - Number separator: - - - - Points format: - Formato de punto: - - - - - - Next block: - Próximo bloque: - - - - , - , - - - - ; - ; - - - - \t - \t - - - - \w - \w - - - - X,Y,Z - X,Y,Z - - - - X,Y - X,Y - - - - - - none - ninguno - - - - - - I,J,K (normal vector) - I,J,K (vector normal) - - - - - - I,K (normal vector 2D) - I,K (vector normal 2D) - - - - - - R,G,B (color) - R,G,B (color) - - - - - - I (Gray value) - I (valor de gris) - - - - Preview - Previsualizar - - - - 100 - 100 - - - - Number of points - Número de puntos - - - - Number of previewed lines: - Número de líneas previsualizadas: - - - - QObject - - - - Ascii Points (*.asc);;All Files (*.*) - Puntos Ascii (*.asc);;Todos los archivos (*.*) - - - - Workbench - - - Points tools - Herramientas de puntos - - - - &Points - &Puntos - - - diff --git a/src/Mod/Points/Gui/Resources/translations/Points_fi.qm b/src/Mod/Points/Gui/Resources/translations/Points_fi.qm index dbefe4926..fd0d8d57e 100644 Binary files a/src/Mod/Points/Gui/Resources/translations/Points_fi.qm and b/src/Mod/Points/Gui/Resources/translations/Points_fi.qm differ diff --git a/src/Mod/Points/Gui/Resources/translations/Points_fi.ts b/src/Mod/Points/Gui/Resources/translations/Points_fi.ts index 02e8e010c..0ff3d3bde 100644 --- a/src/Mod/Points/Gui/Resources/translations/Points_fi.ts +++ b/src/Mod/Points/Gui/Resources/translations/Points_fi.ts @@ -1,251 +1,193 @@ - - + + CmdPointsExport - - Points - Pisteet + + Points + Pisteet - - Export points... - Vie pisteet... + Export points... + Vie pisteet... - - - - Exports a point cloud - Exports a point cloud + Exports a point cloud + Vie pistepilven - - + + CmdPointsImport - - Points - Pisteet + Points + Pisteet - - Import points... - Tuo pisteet... + Import points... + Tuo pisteet... - - - - Imports a point cloud - Imports a point cloud + Imports a point cloud + Tuo pistepilven - - + + CmdPointsPolyCut - - Points - Pisteet + Points + Pisteet - - Cut point cloud - Cut point cloud + Cut point cloud + Leikkaa pistepilvi - - - - Cuts a point cloud with a picked polygon - Cuts a point cloud with a picked polygon + Cuts a point cloud with a picked polygon + Leikkaa pistepilven valitun monikulmion kanssa - - + + CmdPointsTransform - - Points - Pisteet + Points + Pisteet - - Transform Points - Muunna pisteet + Transform Points + Muunna pisteet - - - - Test to transform a point cloud - Testaa muuttaa pistepilvi + Test to transform a point cloud + Testaa muuttaa pistepilvi - - + + PointsGui::DlgPointsRead - - ASCII points import - Tuo ASCII pisteet + + ASCII points import + Tuo ASCII pisteet - - Template: - Malli: + Template: + Malli: - - Special lines - Erityisiä viivoja + Special lines + Erityisiä viivoja - - First line: - Ensimmäinen rivi: + First line: + Ensimmäinen rivi: - - Ignore - Ohita + Ignore + Ohita - - Cluster by lines starting with: - Cluster by lines starting with: + Cluster by lines starting with: + Klusteroi viivat, jotka alkavat: - - Ignore lines starting with: - Ignore lines starting with: + Ignore lines starting with: + Ohita viivat, jotka alkavat: - - Point format - Point format + Point format + Piste-muodossa - - Number separator: - Number separator: + Number separator: + Numero erotin: - - Points format: - Points format: + Points format: + Pisteiden muodossa: - - - - Next block: - Seuraava lohko: + Next block: + Seuraava lohko: - - , - , + , + , - - ; - ; + ; + ; - - \t - \T + \t + \T - - \w - /w + \w + /w - - X,Y,Z - X,Y,Z + X,Y,Z + X,Y,Z - - X,Y - X,Y + X,Y + X,Y - - - - none - ei mitään + none + ei mitään - - - - I,J,K (normal vector) - I,J,K (normaali vektori) + I,J,K (normal vector) + I,J,K (normaali vektori) - - - - I,K (normal vector 2D) - I,K (normaali vektori 2D) + I,K (normal vector 2D) + I,K (normaali vektori 2D) - - - - R,G,B (color) - R,G,B (väri) + R,G,B (color) + R,G,B (väri) - - - - I (Gray value) - I (Gray arvo) + I (Gray value) + I (Gray arvo) - - Preview - Esikatselu + Preview + Esikatselu - - 100 - 100 + 100 + 100 - - Number of points - Pisteiden määrä + Number of points + Pisteiden määrä - - Number of previewed lines: - Esikatseltavien rivien määrä: + Number of previewed lines: + Esikatseltavien viivojen määrä: - - + + QObject - - - Ascii Points (*.asc);;All Files (*.*) - Ascii Points (*.asc);;All Files (*.*) + + Ascii Points (*.asc);;All Files (*.*) + Ascii Pisteet (*.asc);;Kaikki tiedostot (*.*) - - + + Workbench - - Points tools - Points tools + + Points tools + Pisteiden työkalut - - &Points - &Pisteet + &Points + &Pisteet - + diff --git a/src/Mod/Points/Gui/Resources/translations/Points_fr.ts b/src/Mod/Points/Gui/Resources/translations/Points_fr.ts index 9978c3cac..3808d6937 100644 --- a/src/Mod/Points/Gui/Resources/translations/Points_fr.ts +++ b/src/Mod/Points/Gui/Resources/translations/Points_fr.ts @@ -1,251 +1,193 @@ - - + + CmdPointsExport - - Points - Points + + Points + Points - - Export points... - Exporter les points... + Export points... + Exporter les points... - - - - Exports a point cloud - Exporte un nuage de points + Exports a point cloud + Exporte un nuage de points - - + + CmdPointsImport - - Points - Points + Points + Points - - Import points... - Importer des points... + Import points... + Importer des points... - - - - Imports a point cloud - Importe un nuage de points + Imports a point cloud + Importe un nuage de points - - + + CmdPointsPolyCut - - Points - Points + Points + Points - - Cut point cloud - Couper un nuage de points + Cut point cloud + Couper un nuage de points - - - - Cuts a point cloud with a picked polygon - Coupe un nuage de points à l'aide d'un polygone sélectionné + Cuts a point cloud with a picked polygon + Coupe un nuage de points à l'aide d'un polygone sélectionné - - + + CmdPointsTransform - - Points - Points + Points + Points - - Transform Points - Transformer les points + Transform Points + Transformer les points - - - - Test to transform a point cloud - Test de transformation d'un nuage de points + Test to transform a point cloud + Test de transformation d'un nuage de points - - + + PointsGui::DlgPointsRead - - ASCII points import - Importation de points ASCII + + ASCII points import + Importation de points ASCII - - Template: - Modèle : + Template: + Modèle : - - Special lines - Ligne spéciales + Special lines + Ligne spéciales - - First line: - Première ligne : + First line: + Première ligne : - - Ignore - Ignorer + Ignore + Ignorer - - Cluster by lines starting with: - Ensemble de lignes commençant par : + Cluster by lines starting with: + Ensemble de lignes commençant par : - - Ignore lines starting with: - Ignorer les lignes commençant par : + Ignore lines starting with: + Ignorer les lignes commençant par : - - Point format - Format de point + Point format + Format de point - - Number separator: - Séparateur de nombre : + Number separator: + Séparateur de nombre : - - Points format: - Format de points : + Points format: + Format de points : - - - - Next block: - Bloc suivant : + Next block: + Bloc suivant : - - , - , + , + , - - ; - ; + ; + ; - - \t - \t + \t + \t - - \w - \w + \w + \w - - X,Y,Z - X, Y, Z + X,Y,Z + X, Y, Z - - X,Y - X, Y + X,Y + X, Y - - - - none - aucun + none + aucun - - - - I,J,K (normal vector) - I,J,K (vecteur normal) + I,J,K (normal vector) + I,J,K (vecteur normal) - - - - I,K (normal vector 2D) - I,K (vecteur normal 2D) + I,K (normal vector 2D) + I,K (vecteur normal 2D) - - - - R,G,B (color) - R,V,B (couleur) + R,G,B (color) + R,V,B (couleur) - - - - I (Gray value) - I (valeur de gris) + I (Gray value) + I (valeur de gris) - - Preview - Aperçu + Preview + Aperçu - - 100 - 100 + 100 + 100 - - Number of points - Nombre de points + Number of points + Nombre de points - - Number of previewed lines: - Nombre de lignes prévisualisés : + Number of previewed lines: + Nombre de lignes prévisualisés : - - + + QObject - - - Ascii Points (*.asc);;All Files (*.*) - Points Ascii (*.asc);;Tous les fichiers (*.*) + + Ascii Points (*.asc);;All Files (*.*) + Points Ascii (*.asc);;Tous les fichiers (*.*) - - + + Workbench - - Points tools - Outils points + + Points tools + Outils points - - &Points - &Points + &Points + &Points - + diff --git a/src/Mod/Points/Gui/Resources/translations/Points_hr.ts b/src/Mod/Points/Gui/Resources/translations/Points_hr.ts index ada1899f2..eb33674ce 100644 --- a/src/Mod/Points/Gui/Resources/translations/Points_hr.ts +++ b/src/Mod/Points/Gui/Resources/translations/Points_hr.ts @@ -1,251 +1,193 @@ - - + + CmdPointsExport - - Points - Točke + + Points + Točke - - Export points... - Izvezi točke... + Export points... + Izvezi točke... - - - - Exports a point cloud - prenesi pokazni oblak + Exports a point cloud + prenesi pokazni oblak - - + + CmdPointsImport - - Points - Točke + Points + Točke - - Import points... - Uvezi točke... + Import points... + Uvezi točke... - - - - Imports a point cloud - prenesi pokazni oblak + Imports a point cloud + prenesi pokazni oblak - - + + CmdPointsPolyCut - - Points - Točke + Points + Točke - - Cut point cloud - odreži pokazni oblak + Cut point cloud + odreži pokazni oblak - - - - Cuts a point cloud with a picked polygon - Izreže pokazni oblak s bere poligona + Cuts a point cloud with a picked polygon + Izreže pokazni oblak s bere poligona - - + + CmdPointsTransform - - Points - Točke + Points + Točke - - Transform Points - Promijeni točke + Transform Points + Promijeni točke - - - - Test to transform a point cloud - Test za pretvaranje pokaznog oblaka + Test to transform a point cloud + Test za pretvaranje pokaznog oblaka - - + + PointsGui::DlgPointsRead - - ASCII points import - ASCII uvoz bodova + + ASCII points import + ASCII uvoz bodova - - Template: - Predložak: + Template: + Predložak: - - Special lines - Posebne linije + Special lines + Posebne linije - - First line: - Prva linija: + First line: + Prva linija: - - Ignore - Zanemari + Ignore + Zanemari - - Cluster by lines starting with: - Klaster linijama koje počinju sa: + Cluster by lines starting with: + Klaster linijama koje počinju sa: - - Ignore lines starting with: - Zanemari linije koje počinju sa: + Ignore lines starting with: + Zanemari linije koje počinju sa: - - Point format - Point format + Point format + Point format - - Number separator: - Broj separatora: + Number separator: + Broj separatora: - - Points format: - Bodovi formata: + Points format: + Bodovi formata: - - - - Next block: - Sljedeći blok: + Next block: + Sljedeći blok: - - , - , + , + , - - ; - ; + ; + ; - - \t - \t + \t + \t - - \w - \w + \w + \w - - X,Y,Z - X,Y,Z + X,Y,Z + X,Y,Z - - X,Y - X,Y + X,Y + X,Y - - - - none - nijedan + none + nijedan - - - - I,J,K (normal vector) - I,J,K (vektor normale) + I,J,K (normal vector) + I,J,K (vektor normale) - - - - I,K (normal vector 2D) - I,K (vektor normale 2D) + I,K (normal vector 2D) + I,K (vektor normale 2D) - - - - R,G,B (color) - R,G,B (u boji) + R,G,B (color) + R,G,B (u boji) - - - - I (Gray value) - I (vrijednosti u sivim tonovima) + I (Gray value) + I (vrijednosti u sivim tonovima) - - Preview - Pregled + Preview + Pregled - - 100 - 100 + 100 + 100 - - Number of points - Broj točaka + Number of points + Broj točaka - - Number of previewed lines: - Broj pregledanih linija: + Number of previewed lines: + Broj pregledanih linija: - - + + QObject - - - Ascii Points (*.asc);;All Files (*.*) - Ascii točke (*.asc);;Sve datoteke (*.*) + + Ascii Points (*.asc);;All Files (*.*) + Ascii točke (*.asc);;Sve datoteke (*.*) - - + + Workbench - - Points tools - Alati točaka + + Points tools + Alati točaka - - &Points - &Točke + &Points + &Točke - + diff --git a/src/Mod/Points/Gui/Resources/translations/Points_hu.ts b/src/Mod/Points/Gui/Resources/translations/Points_hu.ts index d4dcb72bd..510b2ded6 100644 --- a/src/Mod/Points/Gui/Resources/translations/Points_hu.ts +++ b/src/Mod/Points/Gui/Resources/translations/Points_hu.ts @@ -1,251 +1,193 @@ - - + + CmdPointsExport - - Points - Pontok + + Points + Pontok - - Export points... - Pontok exportálása... + Export points... + Pontok exportálása... - - - - Exports a point cloud - Pontfelhő exportálása + Exports a point cloud + Pontfelhő exportálása - - + + CmdPointsImport - - Points - Pontok + Points + Pontok - - Import points... - Pontok importálása... + Import points... + Pontok importálása... - - - - Imports a point cloud - Pontfelhő importálása + Imports a point cloud + Pontfelhő importálása - - + + CmdPointsPolyCut - - Points - Pontok + Points + Pontok - - Cut point cloud - Pontfelhő kivágása + Cut point cloud + Pontfelhő kivágása - - - - Cuts a point cloud with a picked polygon - Pontfelhő kivágása egy kiválaszott polygonnal + Cuts a point cloud with a picked polygon + Pontfelhő kivágása egy kiválaszott polygonnal - - + + CmdPointsTransform - - Points - Pontok + Points + Pontok - - Transform Points - Pontok átalakítása + Transform Points + Pontok átalakítása - - - - Test to transform a point cloud - Pontfelhő átalakításának tesztje + Test to transform a point cloud + Pontfelhő átalakításának tesztje - - + + PointsGui::DlgPointsRead - - ASCII points import - ASCII pontok importálása + + ASCII points import + ASCII pontok importálása - - Template: - Sablon: + Template: + Sablon: - - Special lines - Speciális vonalak + Special lines + Speciális vonalak - - First line: - Első vonal: + First line: + Első vonal: - - Ignore - Kihagy + Ignore + Kihagy - - Cluster by lines starting with: - Vonallal kezdődő fürt: + Cluster by lines starting with: + Vonallal kezdődő fürt: - - Ignore lines starting with: - Kezdő vonalak kihagyása: + Ignore lines starting with: + Kezdő vonalak kihagyása: - - Point format - Pont formátum + Point format + Pont formátum - - Number separator: - Szám elválasztó jel: + Number separator: + Szám elválasztó jel: - - Points format: - Pont formátum: + Points format: + Pont formátum: - - - - Next block: - Következő blokk: + Next block: + Következő blokk: - - , - , + , + , - - ; - ; + ; + ; - - \t - \t + \t + \t - - \w - \w + \w + \w - - X,Y,Z - X,Y,Z + X,Y,Z + X,Y,Z - - X,Y - X,Y + X,Y + X,Y - - - - none - egyik sem + none + egyik sem - - - - I,J,K (normal vector) - I, J, K (normál vektor) + I,J,K (normal vector) + I, J, K (normál vektor) - - - - I,K (normal vector 2D) - I, K (normál vektor 2D) + I,K (normal vector 2D) + I, K (normál vektor 2D) - - - - R,G,B (color) - R,G,B (szín) + R,G,B (color) + R,G,B (szín) - - - - I (Gray value) - I (szürkeárnyalat-érték) + I (Gray value) + I (szürkeárnyalat-érték) - - Preview - Előnézet + Preview + Előnézet - - 100 - 100 + 100 + 100 - - Number of points - Pontok száma + Number of points + Pontok száma - - Number of previewed lines: - Előnézeti sorok száma: + Number of previewed lines: + Előnézeti sorok száma: - - + + QObject - - - Ascii Points (*.asc);;All Files (*.*) - Ascii pontok (*.asc);;Minden fájl (*.*) + + Ascii Points (*.asc);;All Files (*.*) + Ascii pontok (*.asc);;Minden fájl (*.*) - - + + Workbench - - Points tools - Pont eszközök + + Points tools + Pont eszközök - - &Points - &Pontok + &Points + &Pontok - + diff --git a/src/Mod/Points/Gui/Resources/translations/Points_it.ts b/src/Mod/Points/Gui/Resources/translations/Points_it.ts index 3bbba10ba..27b4e32f4 100644 --- a/src/Mod/Points/Gui/Resources/translations/Points_it.ts +++ b/src/Mod/Points/Gui/Resources/translations/Points_it.ts @@ -1,251 +1,193 @@ - - + + CmdPointsExport - - Points - Punti + + Points + Punti - - Export points... - Esporta punti... + Export points... + Esporta punti... - - - - Exports a point cloud - Esporta una nuvola di punti + Exports a point cloud + Esporta una nuvola di punti - - + + CmdPointsImport - - Points - Punti + Points + Punti - - Import points... - Importa punti... + Import points... + Importa punti... - - - - Imports a point cloud - Importa una nuvola di punti + Imports a point cloud + Importa una nuvola di punti - - + + CmdPointsPolyCut - - Points - Punti + Points + Punti - - Cut point cloud - Taglia nuvola di punti + Cut point cloud + Taglia nuvola di punti - - - - Cuts a point cloud with a picked polygon - Taglia una nuvola di punti con un poligono specificato + Cuts a point cloud with a picked polygon + Taglia una nuvola di punti con un poligono specificato - - + + CmdPointsTransform - - Points - Punti + Points + Punti - - Transform Points - Trasforma punti + Transform Points + Trasforma punti - - - - Test to transform a point cloud - Test della trasformazione di una nuvola di punti + Test to transform a point cloud + Test della trasformazione di una nuvola di punti - - + + PointsGui::DlgPointsRead - - ASCII points import - Importa punti ASCII + + ASCII points import + Importa punti ASCII - - Template: - Modello: + Template: + Modello: - - Special lines - Linee speciali + Special lines + Linee speciali - - First line: - Prima linea: + First line: + Prima linea: - - Ignore - Ignora + Ignore + Ignora - - Cluster by lines starting with: - Raggruppamento per linee che iniziano con: + Cluster by lines starting with: + Raggruppamento per linee che iniziano con: - - Ignore lines starting with: - Ignora le linee che iniziano con: + Ignore lines starting with: + Ignora le linee che iniziano con: - - Point format - Formato punto + Point format + Formato punto - - Number separator: - Separatore numeri: + Number separator: + Separatore numeri: - - Points format: - Formato punti: + Points format: + Formato punti: - - - - Next block: - Prossimo blocco: + Next block: + Prossimo blocco: - - , - , + , + , - - ; - ; + ; + ; - - \t - \t + \t + \t - - \w - \w + \w + \w - - X,Y,Z - X,Y,Z + X,Y,Z + X,Y,Z - - X,Y - X,Y + X,Y + X,Y - - - - none - nessuno + none + nessuno - - - - I,J,K (normal vector) - I,J,K (vettore normale) + I,J,K (normal vector) + I,J,K (vettore normale) - - - - I,K (normal vector 2D) - I,K (vettore normale 2D) + I,K (normal vector 2D) + I,K (vettore normale 2D) - - - - R,G,B (color) - R,G,B (colore) + R,G,B (color) + R,G,B (colore) - - - - I (Gray value) - I (valore di grigio) + I (Gray value) + I (valore di grigio) - - Preview - Anteprima + Preview + Anteprima - - 100 - 100 + 100 + 100 - - Number of points - Numero di punti + Number of points + Numero di punti - - Number of previewed lines: - Numero di linee visualizzate nell'anteprima: + Number of previewed lines: + Numero di linee visualizzate nell'anteprima: - - + + QObject - - - Ascii Points (*.asc);;All Files (*.*) - Punti Ascii (*.asc);;Tutti i file (*.*) + + Ascii Points (*.asc);;All Files (*.*) + Punti Ascii (*.asc);;Tutti i file (*.*) - - + + Workbench - - Points tools - Strumenti Punti + + Points tools + Strumenti Punti - - &Points - &Punti + &Points + &Punti - + diff --git a/src/Mod/Points/Gui/Resources/translations/Points_ja.ts b/src/Mod/Points/Gui/Resources/translations/Points_ja.ts index 6ebf678e0..2c6f51381 100644 --- a/src/Mod/Points/Gui/Resources/translations/Points_ja.ts +++ b/src/Mod/Points/Gui/Resources/translations/Points_ja.ts @@ -1,251 +1,193 @@ - - + + CmdPointsExport - - Points - + + Points + - - Export points... - 点をエクスポート... + Export points... + 点をエクスポート... - - - - Exports a point cloud - 点群をエクスポート + Exports a point cloud + 点群をエクスポート - - + + CmdPointsImport - - Points - + Points + - - Import points... - 点をインポート... + Import points... + 点をインポート... - - - - Imports a point cloud - 点群をインポート + Imports a point cloud + 点群をインポート - - + + CmdPointsPolyCut - - Points - + Points + - - Cut point cloud - Cut point cloud + Cut point cloud + Cut point cloud - - - - Cuts a point cloud with a picked polygon - Cuts a point cloud with a picked polygon + Cuts a point cloud with a picked polygon + Cuts a point cloud with a picked polygon - - + + CmdPointsTransform - - Points - + Points + - - Transform Points - 点を変換 + Transform Points + 点を変換 - - - - Test to transform a point cloud - Test to transform a point cloud + Test to transform a point cloud + Test to transform a point cloud - - + + PointsGui::DlgPointsRead - - ASCII points import - ASCII points import + + ASCII points import + ASCII points import - - Template: - テンプレート: + Template: + テンプレート: - - Special lines - Special lines + Special lines + Special lines - - First line: - First line: + First line: + First line: - - Ignore - 無視 + Ignore + 無視 - - Cluster by lines starting with: - Cluster by lines starting with: + Cluster by lines starting with: + Cluster by lines starting with: - - Ignore lines starting with: - ~で始まる行を無視する: + Ignore lines starting with: + ~で始まる行を無視する: - - Point format - 点の形式 + Point format + 点の形式 - - Number separator: - 区切り文字: + Number separator: + 区切り文字: - - Points format: - 点の形式: + Points format: + 点の形式: - - - - Next block: - 次のブロック: + Next block: + 次のブロック: - - , - , + , + , - - ; - ; + ; + ; - - \t - \t + \t + \t - - \w - \w + \w + \w - - X,Y,Z - X,Y,Z + X,Y,Z + X,Y,Z - - X,Y - X,Y + X,Y + X,Y - - - - none - なし + none + なし - - - - I,J,K (normal vector) - I、J、K(法線ベクトル) + I,J,K (normal vector) + I、J、K(法線ベクトル) - - - - I,K (normal vector 2D) - I,K (2D法線ベクトル) + I,K (normal vector 2D) + I,K (2D法線ベクトル) - - - - R,G,B (color) - R,G,B (カラー) + R,G,B (color) + R,G,B (カラー) - - - - I (Gray value) - I (グレーレベル) + I (Gray value) + I (グレーレベル) - - Preview - プレビュー + Preview + プレビュー - - 100 - 100 + 100 + 100 - - Number of points - 点の数 + Number of points + 点の数 - - Number of previewed lines: - Number of previewed lines: + Number of previewed lines: + Number of previewed lines: - - + + QObject - - - Ascii Points (*.asc);;All Files (*.*) - Ascii点ファイル (*.asc);すべてのファイル (*. *) + + Ascii Points (*.asc);;All Files (*.*) + Ascii点ファイル (*.asc);すべてのファイル (*. *) - - + + Workbench - - Points tools - 点ツール + + Points tools + 点ツール - - &Points - 点(&P) + &Points + 点(&P) - + diff --git a/src/Mod/Points/Gui/Resources/translations/Points_nl.ts b/src/Mod/Points/Gui/Resources/translations/Points_nl.ts index 1e01385d4..1b0d95c98 100644 --- a/src/Mod/Points/Gui/Resources/translations/Points_nl.ts +++ b/src/Mod/Points/Gui/Resources/translations/Points_nl.ts @@ -1,251 +1,193 @@ - - + + CmdPointsExport - - Points - Punten + + Points + Punten - - Export points... - Exporteer punten... + Export points... + Exporteer punten... - - - - Exports a point cloud - Exporteert een puntenwolk + Exports a point cloud + Exporteert een puntenwolk - - + + CmdPointsImport - - Points - Punten + Points + Punten - - Import points... - Importeer punten... + Import points... + Importeer punten... - - - - Imports a point cloud - Importeert een puntenwolk + Imports a point cloud + Importeert een puntenwolk - - + + CmdPointsPolyCut - - Points - Punten + Points + Punten - - Cut point cloud - Snij puntenwolk + Cut point cloud + Snij puntenwolk - - - - Cuts a point cloud with a picked polygon - Knipt een puntwolk met een geselecteerde veelhoek + Cuts a point cloud with a picked polygon + Knipt een puntwolk met een geselecteerde veelhoek - - + + CmdPointsTransform - - Points - Punten + Points + Punten - - Transform Points - Transformeer Punten + Transform Points + Transformeer Punten - - - - Test to transform a point cloud - Test om een puntwolk te transformeren + Test to transform a point cloud + Test om een puntwolk te transformeren - - + + PointsGui::DlgPointsRead - - ASCII points import - ASCII-punten import + + ASCII points import + ASCII-punten import - - Template: - Sjabloon: + Template: + Sjabloon: - - Special lines - Speciale lijnen + Special lines + Speciale lijnen - - First line: - Eerste regel: + First line: + Eerste regel: - - Ignore - Negeren + Ignore + Negeren - - Cluster by lines starting with: - Clusteren van regels die beginnen met: + Cluster by lines starting with: + Clusteren van regels die beginnen met: - - Ignore lines starting with: - Negeer regels die beginnen met: + Ignore lines starting with: + Negeer regels die beginnen met: - - Point format - Punt-formaat + Point format + Punt-formaat - - Number separator: - Getal-scheidingsteken: + Number separator: + Getal-scheidingsteken: - - Points format: - Punten-formaat: + Points format: + Punten-formaat: - - - - Next block: - Volgend blok: + Next block: + Volgend blok: - - , - , + , + , - - ; - ; + ; + ; - - \t - \t + \t + \t - - \w - \w + \w + \w - - X,Y,Z - X,Y,Z + X,Y,Z + X,Y,Z - - X,Y - X,Y + X,Y + X,Y - - - - none - (leeg) + none + (leeg) - - - - I,J,K (normal vector) - I,J,K (normaalvector) + I,J,K (normal vector) + I,J,K (normaalvector) - - - - I,K (normal vector 2D) - I,K (normaalvector 2D) + I,K (normal vector 2D) + I,K (normaalvector 2D) - - - - R,G,B (color) - R,G,B (kleur) + R,G,B (color) + R,G,B (kleur) - - - - I (Gray value) - I (Grijstint) + I (Gray value) + I (Grijstint) - - Preview - Voorbeeldweergave + Preview + Voorbeeldweergave - - 100 - 100 + 100 + 100 - - Number of points - Aantal punten + Number of points + Aantal punten - - Number of previewed lines: - Aantal regels bekeken: + Number of previewed lines: + Aantal regels bekeken: - - + + QObject - - - Ascii Points (*.asc);;All Files (*.*) - ASCII-punten (*.asc);;alle bestanden (*.*) + + Ascii Points (*.asc);;All Files (*.*) + ASCII-punten (*.asc);;alle bestanden (*.*) - - + + Workbench - - Points tools - Punten-gereedschap + + Points tools + Punten-gereedschap - - &Points - &Punten + &Points + &Punten - + diff --git a/src/Mod/Points/Gui/Resources/translations/Points_no.ts b/src/Mod/Points/Gui/Resources/translations/Points_no.ts index ebdc274fd..933b9d583 100644 --- a/src/Mod/Points/Gui/Resources/translations/Points_no.ts +++ b/src/Mod/Points/Gui/Resources/translations/Points_no.ts @@ -1,251 +1,193 @@ - - + + CmdPointsExport - - Points - Punkter + + Points + Punkter - - Export points... - Eksporter punkter... + Export points... + Eksporter punkter... - - - - Exports a point cloud - Eksporterer en punktsky + Exports a point cloud + Eksporterer en punktsky - - + + CmdPointsImport - - Points - Punkter + Points + Punkter - - Import points... - Importer punkt... + Import points... + Importer punkt... - - - - Imports a point cloud - Importerer en punktsky + Imports a point cloud + Importerer en punktsky - - + + CmdPointsPolyCut - - Points - Punkter + Points + Punkter - - Cut point cloud - Klipp ut punktsky + Cut point cloud + Klipp ut punktsky - - - - Cuts a point cloud with a picked polygon - Klipper ut en punktsky med valgt polygon + Cuts a point cloud with a picked polygon + Klipper ut en punktsky med valgt polygon - - + + CmdPointsTransform - - Points - Punkter + Points + Punkter - - Transform Points - Transformer punkter + Transform Points + Transformer punkter - - - - Test to transform a point cloud - Test for å transformere en punktsky + Test to transform a point cloud + Test for å transformere en punktsky - - + + PointsGui::DlgPointsRead - - ASCII points import - ASCII punkt import + + ASCII points import + ASCII punkt import - - Template: - Mal: + Template: + Mal: - - Special lines - Spesielle linjer + Special lines + Spesielle linjer - - First line: - Første linje: + First line: + Første linje: - - Ignore - Ignorer + Ignore + Ignorer - - Cluster by lines starting with: - Klynge av linjer som starter med: + Cluster by lines starting with: + Klynge av linjer som starter med: - - Ignore lines starting with: - Ignorer linjer som starter med: + Ignore lines starting with: + Ignorer linjer som starter med: - - Point format - Punktformat + Point format + Punktformat - - Number separator: - Number separator: + Number separator: + Number separator: - - Points format: - Punktformat: + Points format: + Punktformat: - - - - Next block: - Neste blokk: + Next block: + Neste blokk: - - , - , + , + , - - ; - ; + ; + ; - - \t - \t + \t + \t - - \w - \w + \w + \w - - X,Y,Z - X,Y,Z + X,Y,Z + X,Y,Z - - X,Y - X,Y + X,Y + X,Y - - - - none - ingen + none + ingen - - - - I,J,K (normal vector) - I,J,K (normal vektor) + I,J,K (normal vector) + I,J,K (normal vektor) - - - - I,K (normal vector 2D) - I,K (normal vektor 2D) + I,K (normal vector 2D) + I,K (normal vektor 2D) - - - - R,G,B (color) - R,G,B (farge) + R,G,B (color) + R,G,B (farge) - - - - I (Gray value) - I (Grå verdi) + I (Gray value) + I (Grå verdi) - - Preview - Forhåndsvisning + Preview + Forhåndsvisning - - 100 - 100 + 100 + 100 - - Number of points - Antall punkter + Number of points + Antall punkter - - Number of previewed lines: - Antall forhåndsviste linjer: + Number of previewed lines: + Antall forhåndsviste linjer: - - + + QObject - - - Ascii Points (*.asc);;All Files (*.*) - Ascii-punkter (*.asc);;Alle filer (*.*) + + Ascii Points (*.asc);;All Files (*.*) + Ascii-punkter (*.asc);;Alle filer (*.*) - - + + Workbench - - Points tools - Punktverktøy + + Points tools + Punktverktøy - - &Points - &Punkter + &Points + &Punkter - + diff --git a/src/Mod/Points/Gui/Resources/translations/Points_pl.qm b/src/Mod/Points/Gui/Resources/translations/Points_pl.qm index a30eae100..8988e4ae9 100644 Binary files a/src/Mod/Points/Gui/Resources/translations/Points_pl.qm and b/src/Mod/Points/Gui/Resources/translations/Points_pl.qm differ diff --git a/src/Mod/Points/Gui/Resources/translations/Points_pl.ts b/src/Mod/Points/Gui/Resources/translations/Points_pl.ts index ebeb79d68..9dde46feb 100644 --- a/src/Mod/Points/Gui/Resources/translations/Points_pl.ts +++ b/src/Mod/Points/Gui/Resources/translations/Points_pl.ts @@ -1,251 +1,193 @@ - - + + CmdPointsExport - - Points - Punkty + + Points + Punkty - - Export points... - Eksport punktów... + Export points... + Eksport punktów... - - - - Exports a point cloud - Exports a point cloud + Exports a point cloud + Eksportuje chmury punktów - - + + CmdPointsImport - - Points - Punkty + Points + Punkty - - Import points... - Import punktów ... + Import points... + Import punktów ... - - - - Imports a point cloud - Imports a point cloud + Imports a point cloud + Importuje chmury punktów - - + + CmdPointsPolyCut - - Points - Punkty + Points + Punkty - - Cut point cloud - Cut point cloud + Cut point cloud + Wytnij punkt chmury - - - - Cuts a point cloud with a picked polygon - Cuts a point cloud with a picked polygon + Cuts a point cloud with a picked polygon + Wycina punkt chmury z wybranego wielokąta - - + + CmdPointsTransform - - Points - Punkty + Points + Punkty - - Transform Points - Przekształcenie punktów + Transform Points + Przekształcenie punktów - - - - Test to transform a point cloud - Test to transform a point cloud + Test to transform a point cloud + Test przekształcenia chmury punktów - - + + PointsGui::DlgPointsRead - - ASCII points import - Import punktów ASCII + + ASCII points import + Import punktów ASCII - - Template: - Szablon: + Template: + Szablon: - - Special lines - Linie specjalne + Special lines + Linie specjalne - - First line: - First line: + First line: + Pierwszy wiersz: - - Ignore - Ignoruj + Ignore + Ignoruj - - Cluster by lines starting with: - Cluster by lines starting with: + Cluster by lines starting with: + Klaster o wierszach zaczynających się od: - - Ignore lines starting with: - Ignoruj ​​linie zaczynające się od: + Ignore lines starting with: + Ignoruj ​​linie zaczynające się od: - - Point format - Format punktu + Point format + Format punktu - - Number separator: - Separator dziesiętny: + Number separator: + Separator dziesiętny: - - Points format: - Styl Punktów: + Points format: + Styl Punktów: - - - - Next block: - Następny blok: + Next block: + Następny blok: - - , - , + , + , - - ; - ; + ; + ; - - \t - \t + \t + \t - - \w - \w + \w + \w - - X,Y,Z - X, Y, Z + X,Y,Z + X, Y, Z - - X,Y - X, Y + X,Y + X, Y - - - - none - żaden + none + żaden - - - - I,J,K (normal vector) - I,J,K (normal vector) + I,J,K (normal vector) + I, J, K (wektor normalny) - - - - I,K (normal vector 2D) - I,K (normal vector 2D) + I,K (normal vector 2D) + I,K (wektor normalny 2D) - - - - R,G,B (color) - R, G, B (kolor) + R,G,B (color) + R, G, B (kolor) - - - - I (Gray value) - I (Gray value) + I (Gray value) + I (wartość szarości) - - Preview - Podgląd + Preview + Podgląd - - 100 - 100 + 100 + 100 - - Number of points - Liczba punktów + Number of points + Liczba punktów - - Number of previewed lines: - Number of previewed lines: + Number of previewed lines: + Liczba przeglądanych wierszy: - - + + QObject - - - Ascii Points (*.asc);;All Files (*.*) - Ascii Points (*.asc);;All Files (*.*) + + Ascii Points (*.asc);;All Files (*.*) + Punkty ASCII (*.asc);;Wszystkie Pliki(*. *) - - + + Workbench - - Points tools - Narzędzia Punktów + + Points tools + Narzędzia Punktów - - &Points - &Punkty + &Points + &Punkty - + diff --git a/src/Mod/Points/Gui/Resources/translations/Points_pt.qm b/src/Mod/Points/Gui/Resources/translations/Points_pt-BR.qm similarity index 100% rename from src/Mod/Points/Gui/Resources/translations/Points_pt.qm rename to src/Mod/Points/Gui/Resources/translations/Points_pt-BR.qm diff --git a/src/Mod/Points/Gui/Resources/translations/Points_pt-BR.ts b/src/Mod/Points/Gui/Resources/translations/Points_pt-BR.ts new file mode 100644 index 000000000..6f60c153b --- /dev/null +++ b/src/Mod/Points/Gui/Resources/translations/Points_pt-BR.ts @@ -0,0 +1,193 @@ + + + + + CmdPointsExport + + + Points + Pontos + + + Export points... + Exportar pontos... + + + Exports a point cloud + Exporta uma nuvem de pontos + + + + CmdPointsImport + + Points + Pontos + + + Import points... + Importar pontos... + + + Imports a point cloud + Importar uma nuvem de pontos + + + + CmdPointsPolyCut + + Points + Pontos + + + Cut point cloud + Cortar nuvem de pontos + + + Cuts a point cloud with a picked polygon + Corta uma nuvem de pontos com um polígono traçado + + + + CmdPointsTransform + + Points + Pontos + + + Transform Points + Transformar pontos + + + Test to transform a point cloud + Teste para transformar uma nuvem de pontos + + + + PointsGui::DlgPointsRead + + + ASCII points import + Importar pontos ASCII + + + Template: + Modelo: + + + Special lines + Linhas especiais + + + First line: + Primeira linha: + + + Ignore + Ignorar + + + Cluster by lines starting with: + Agrupar por linhas começando com: + + + Ignore lines starting with: + Ignore linhas que comecem com: + + + Point format + Formato de ponto + + + Number separator: + Separador de número: + + + Points format: + Formato de pontos: + + + Next block: + Próximo bloco: + + + , + , + + + ; + ; + + + \t + \t + + + \w + \w + + + X,Y,Z + X,Y,Z + + + X,Y + X,Y + + + none + nenhum + + + I,J,K (normal vector) + I,J,K (vetor normal) + + + I,K (normal vector 2D) + I,K (vetor normal 2D) + + + R,G,B (color) + R,G,B (cor) + + + I (Gray value) + I (valor de cinza) + + + Preview + Pré-visualização + + + 100 + 100 + + + Number of points + Número de pontos + + + Number of previewed lines: + Número de linhas visualizadas: + + + + QObject + + + Ascii Points (*.asc);;All Files (*.*) + Pontos Ascii (*.asc);; Todos os Arquivos (*.*) + + + + Workbench + + + Points tools + Ferramentas de pontos + + + &Points + &Pontos + + + diff --git a/src/Mod/Points/Gui/Resources/translations/Points_pt.ts b/src/Mod/Points/Gui/Resources/translations/Points_pt.ts deleted file mode 100644 index ad97a7515..000000000 --- a/src/Mod/Points/Gui/Resources/translations/Points_pt.ts +++ /dev/null @@ -1,251 +0,0 @@ - - - - - CmdPointsExport - - - Points - Pontos - - - - Export points... - Exportar pontos... - - - - - - Exports a point cloud - Exporta uma nuvem de pontos - - - - CmdPointsImport - - - Points - Pontos - - - - Import points... - Importar pontos... - - - - - - Imports a point cloud - Importar uma nuvem de pontos - - - - CmdPointsPolyCut - - - Points - Pontos - - - - Cut point cloud - Cortar nuvem de pontos - - - - - - Cuts a point cloud with a picked polygon - Corta uma nuvem de pontos com um polígono traçado - - - - CmdPointsTransform - - - Points - Pontos - - - - Transform Points - Transformar pontos - - - - - - Test to transform a point cloud - Teste para transformar uma nuvem de pontos - - - - PointsGui::DlgPointsRead - - - ASCII points import - Importar pontos ASCII - - - - Template: - Modelo: - - - - Special lines - Linhas especiais - - - - First line: - Primeira linha: - - - - Ignore - Ignorar - - - - Cluster by lines starting with: - Agrupar por linhas começando com: - - - - Ignore lines starting with: - Ignore linhas que comecem com: - - - - Point format - Formato de ponto - - - - Number separator: - Separador de número: - - - - Points format: - Formato de pontos: - - - - - - Next block: - Próximo bloco: - - - - , - , - - - - ; - ; - - - - \t - \t - - - - \w - \w - - - - X,Y,Z - X,Y,Z - - - - X,Y - X,Y - - - - - - none - nenhum - - - - - - I,J,K (normal vector) - I,J,K (vetor normal) - - - - - - I,K (normal vector 2D) - I,K (vetor normal 2D) - - - - - - R,G,B (color) - R,G,B (cor) - - - - - - I (Gray value) - I (valor de cinza) - - - - Preview - Pré-visualização - - - - 100 - 100 - - - - Number of points - Número de pontos - - - - Number of previewed lines: - Número de linhas visualizadas: - - - - QObject - - - - Ascii Points (*.asc);;All Files (*.*) - Pontos Ascii (*.asc);; Todos os Arquivos (*.*) - - - - Workbench - - - Points tools - Ferramentas de pontos - - - - &Points - &Pontos - - - diff --git a/src/Mod/Points/Gui/Resources/translations/Points_ro.qm b/src/Mod/Points/Gui/Resources/translations/Points_ro.qm new file mode 100644 index 000000000..0bbceedfb Binary files /dev/null and b/src/Mod/Points/Gui/Resources/translations/Points_ro.qm differ diff --git a/src/Mod/Points/Gui/Resources/translations/Points_ro.ts b/src/Mod/Points/Gui/Resources/translations/Points_ro.ts new file mode 100644 index 000000000..463afb4a9 --- /dev/null +++ b/src/Mod/Points/Gui/Resources/translations/Points_ro.ts @@ -0,0 +1,193 @@ + + + + + CmdPointsExport + + + Points + Puncte + + + Export points... + Exportaţi puncte... + + + Exports a point cloud + Exportă un nor de puncte + + + + CmdPointsImport + + Points + Puncte + + + Import points... + Importaţi puncte... + + + Imports a point cloud + Importaţi un nor de puncte + + + + CmdPointsPolyCut + + Points + Puncte + + + Cut point cloud + Decupaţi norul de puncte + + + Cuts a point cloud with a picked polygon + Decupează un nor de puncte cu un poligon ales + + + + CmdPointsTransform + + Points + Puncte + + + Transform Points + Transformaţi Punctele + + + Test to transform a point cloud + Testaţi pentru a transforma un nor de puncte + + + + PointsGui::DlgPointsRead + + + ASCII points import + Importaţi puncte ASCII + + + Template: + Şablon: + + + Special lines + Linii speciale + + + First line: + Prima linie: + + + Ignore + Ignoră + + + Cluster by lines starting with: + Cluster by lines starting with: + + + Ignore lines starting with: + Ignoraţi linii care încep cu: + + + Point format + Formataţi Punctul + + + Number separator: + Separator pentru cifre: + + + Points format: + Formataţi Punctele: + + + Next block: + Blocul următor: + + + , + , + + + ; + ; + + + \t + \t + + + \w + \w + + + X,Y,Z + X, Y, Z + + + X,Y + X, Y + + + none + niciunul + + + I,J,K (normal vector) + I, J, K (vectorul normal) + + + I,K (normal vector 2D) + I, K (vectorul normal 2D) + + + R,G,B (color) + R, G, B (culoare) + + + I (Gray value) + I (tonuri de gri) + + + Preview + Previzualizare + + + 100 + 100 + + + Number of points + Numărul de puncte + + + Number of previewed lines: + Numărul de linii de previzualizare: + + + + QObject + + + Ascii Points (*.asc);;All Files (*.*) + Puncte ASCII (*.asc);;Toate fişierele (*. *) + + + + Workbench + + + Points tools + Instrumente pentru puncte + + + &Points + &Puncte + + + diff --git a/src/Mod/Points/Gui/Resources/translations/Points_ru.ts b/src/Mod/Points/Gui/Resources/translations/Points_ru.ts index e6ee99514..9a5080dd2 100644 --- a/src/Mod/Points/Gui/Resources/translations/Points_ru.ts +++ b/src/Mod/Points/Gui/Resources/translations/Points_ru.ts @@ -1,251 +1,193 @@ - - + + CmdPointsExport - - Points - Точки + + Points + Точки - - Export points... - Экспорт точек... + Export points... + Экспорт точек... - - - - Exports a point cloud - Экспорт облака точек + Exports a point cloud + Экспорт облака точек - - + + CmdPointsImport - - Points - Точки + Points + Точки - - Import points... - Импорт точек... + Import points... + Импорт точек... - - - - Imports a point cloud - Импорт облака точек + Imports a point cloud + Импорт облака точек - - + + CmdPointsPolyCut - - Points - Точки + Points + Точки - - Cut point cloud - Вырезать облако точек + Cut point cloud + Вырезать облако точек - - - - Cuts a point cloud with a picked polygon - Вырезать облако точек ограниченное отмеченным полигоном + Cuts a point cloud with a picked polygon + Вырезать облако точек ограниченное отмеченным полигоном - - + + CmdPointsTransform - - Points - Точки + Points + Точки - - Transform Points - Преобразование точек + Transform Points + Преобразование точек - - - - Test to transform a point cloud - Тест для преобразования облака точек + Test to transform a point cloud + Тест для преобразования облака точек - - + + PointsGui::DlgPointsRead - - ASCII points import - Импорт точек ASCII + + ASCII points import + Импорт точек ASCII - - Template: - Шаблон: + Template: + Шаблон: - - Special lines - Специальные линии + Special lines + Специальные линии - - First line: - Первая линия: + First line: + Первая линия: - - Ignore - Игнорировать + Ignore + Игнорировать - - Cluster by lines starting with: - Кластер по линии, начиная с: + Cluster by lines starting with: + Кластер по линии, начиная с: - - Ignore lines starting with: - Игнорировать строки, начинающиеся с: + Ignore lines starting with: + Игнорировать строки, начинающиеся с: - - Point format - Формат точек + Point format + Формат точек - - Number separator: - Числовой разделитель: + Number separator: + Числовой разделитель: - - Points format: - Формат точек: + Points format: + Формат точек: - - - - Next block: - Следующий блок: + Next block: + Следующий блок: - - , - , + , + , - - ; - ; + ; + ; - - \t - \t + \t + \t - - \w - \w + \w + \w - - X,Y,Z - X, Y, Z + X,Y,Z + X, Y, Z - - X,Y - X, Y + X,Y + X, Y - - - - none - Отсутствует + none + Отсутствует - - - - I,J,K (normal vector) - I,J,K(нормальный вектор) + I,J,K (normal vector) + I,J,K(нормальный вектор) - - - - I,K (normal vector 2D) - I,K(нормальный вектор 2D) + I,K (normal vector 2D) + I,K(нормальный вектор 2D) - - - - R,G,B (color) - R, G, B (цвет) + R,G,B (color) + R, G, B (цвет) - - - - I (Gray value) - I (значение серого) + I (Gray value) + I (значение серого) - - Preview - Предварительный просмотр + Preview + Предварительный просмотр - - 100 - 100 + 100 + 100 - - Number of points - Количество точек + Number of points + Количество точек - - Number of previewed lines: - Количество предварительно просматриваемых строк: + Number of previewed lines: + Количество предварительно просматриваемых строк: - - + + QObject - - - Ascii Points (*.asc);;All Files (*.*) - Точки Ascii (*.asc);;Все файлы (*.*) + + Ascii Points (*.asc);;All Files (*.*) + Точки Ascii (*.asc);;Все файлы (*.*) - - + + Workbench - - Points tools - Инструменты для точек + + Points tools + Инструменты для точек - - &Points - &Точки + &Points + &Точки - + diff --git a/src/Mod/Points/Gui/Resources/translations/Points_se.ts b/src/Mod/Points/Gui/Resources/translations/Points_se.ts deleted file mode 100644 index 75e3b387e..000000000 --- a/src/Mod/Points/Gui/Resources/translations/Points_se.ts +++ /dev/null @@ -1,251 +0,0 @@ - - - - - CmdPointsExport - - - Points - Punkter - - - - Export points... - Exportera punkter... - - - - - - Exports a point cloud - Exporterar ett punktmoln - - - - CmdPointsImport - - - Points - Punkter - - - - Import points... - Importera punkter... - - - - - - Imports a point cloud - Importera ett punktmoln - - - - CmdPointsPolyCut - - - Points - Punkter - - - - Cut point cloud - Klipp ut punktmoln - - - - - - Cuts a point cloud with a picked polygon - Klipper ut ett punktmoln med en vald polygon - - - - CmdPointsTransform - - - Points - Punkter - - - - Transform Points - Omvandla punkter - - - - - - Test to transform a point cloud - Testa att omforma ett punktmoln - - - - PointsGui::DlgPointsRead - - - ASCII points import - Importera ASCII punkter - - - - Template: - mall: - - - - Special lines - Special linjer - - - - First line: - Första linjen: - - - - Ignore - Ignorera - - - - Cluster by lines starting with: - Linjekluster startar med: - - - - Ignore lines starting with: - Ignorera linjer som startar med: - - - - Point format - Punktformat - - - - Number separator: - Nummerseparator: - - - - Points format: - Punktformat: - - - - - - Next block: - Nästa block: - - - - , - , - - - - ; - ; - - - - \t - \t - - - - \w - \w - - - - X,Y,Z - X, Y, Z - - - - X,Y - X, Y - - - - - - none - inget - - - - - - I,J,K (normal vector) - I,J,K (normalvektor) - - - - - - I,K (normal vector 2D) - I,K (2D nomalvektor) - - - - - - R,G,B (color) - R,G,B (färg) - - - - - - I (Gray value) - I (Gråton) - - - - Preview - Förhandsvisning - - - - 100 - 100 - - - - Number of points - Antal punkter - - - - Number of previewed lines: - Antal förhandsgranskade rader: - - - - QObject - - - - Ascii Points (*.asc);;All Files (*.*) - Ascii Punkter (*.asc);;Alla Filer (*.*) - - - - Workbench - - - Points tools - Punktverktyg - - - - &Points - &Punkter - - - diff --git a/src/Mod/Points/Gui/Resources/translations/Points_sk.qm b/src/Mod/Points/Gui/Resources/translations/Points_sk.qm new file mode 100644 index 000000000..838bb7288 Binary files /dev/null and b/src/Mod/Points/Gui/Resources/translations/Points_sk.qm differ diff --git a/src/Mod/Points/Gui/Resources/translations/Points_sk.ts b/src/Mod/Points/Gui/Resources/translations/Points_sk.ts new file mode 100644 index 000000000..a22a2e1f5 --- /dev/null +++ b/src/Mod/Points/Gui/Resources/translations/Points_sk.ts @@ -0,0 +1,193 @@ + + + + + CmdPointsExport + + + Points + Body + + + Export points... + Exportuj body .... + + + Exports a point cloud + Exportuj mračná bodov + + + + CmdPointsImport + + Points + Body + + + Import points... + Import bodov ... + + + Imports a point cloud + Importuj mračná bodov + + + + CmdPointsPolyCut + + Points + Body + + + Cut point cloud + Orezať mračná bodov + + + Cuts a point cloud with a picked polygon + 0rezať mračná bodov vybraným polygónom + + + + CmdPointsTransform + + Points + Body + + + Transform Points + Transformácia bodov + + + Test to transform a point cloud + Testovať transformáciu mračna bodov + + + + PointsGui::DlgPointsRead + + + ASCII points import + ASCII import bodov + + + Template: + Šablóna: + + + Special lines + Špeciálne čiary + + + First line: + Prvý riadok: + + + Ignore + Ignorovať + + + Cluster by lines starting with: + Zoskup podľa riadkov začínajúcich s: + + + Ignore lines starting with: + Ignorovať riadky začínajúce: + + + Point format + Formát bodu + + + Number separator: + Oddeľovač čísel: + + + Points format: + Formát bodou: + + + Next block: + Ďalší blok: + + + , + , + + + ; + ; + + + \t + \t + + + \w + \w + + + X,Y,Z + X,Y,Z + + + X,Y + X,Y + + + none + nič + + + I,J,K (normal vector) + I,J,K (normálny vektor) + + + I,K (normal vector 2D) + I, K (normálny vektor 2D) + + + R,G,B (color) + R,G,B (farby) + + + I (Gray value) + I (sivé) + + + Preview + Náhľad + + + 100 + 100 + + + Number of points + Počet bodov + + + Number of previewed lines: + Počet zobrazených riadkov: + + + + QObject + + + Ascii Points (*.asc);;All Files (*.*) + Body ASCII (*.asc);Všetky súbory (*. *) + + + + Workbench + + + Points tools + Body nástrojov + + + &Points + &Body + + + diff --git a/src/Mod/Points/Gui/Resources/translations/Points_se.qm b/src/Mod/Points/Gui/Resources/translations/Points_sv-SE.qm similarity index 100% rename from src/Mod/Points/Gui/Resources/translations/Points_se.qm rename to src/Mod/Points/Gui/Resources/translations/Points_sv-SE.qm diff --git a/src/Mod/Points/Gui/Resources/translations/Points_sv-SE.ts b/src/Mod/Points/Gui/Resources/translations/Points_sv-SE.ts new file mode 100644 index 000000000..84184e780 --- /dev/null +++ b/src/Mod/Points/Gui/Resources/translations/Points_sv-SE.ts @@ -0,0 +1,193 @@ + + + + + CmdPointsExport + + + Points + Punkter + + + Export points... + Exportera punkter... + + + Exports a point cloud + Exporterar ett punktmoln + + + + CmdPointsImport + + Points + Punkter + + + Import points... + Importera punkter... + + + Imports a point cloud + Importera ett punktmoln + + + + CmdPointsPolyCut + + Points + Punkter + + + Cut point cloud + Klipp ut punktmoln + + + Cuts a point cloud with a picked polygon + Klipper ut ett punktmoln med en vald polygon + + + + CmdPointsTransform + + Points + Punkter + + + Transform Points + Omvandla punkter + + + Test to transform a point cloud + Testa att omforma ett punktmoln + + + + PointsGui::DlgPointsRead + + + ASCII points import + Importera ASCII punkter + + + Template: + mall: + + + Special lines + Special linjer + + + First line: + Första linjen: + + + Ignore + Ignorera + + + Cluster by lines starting with: + Linjekluster startar med: + + + Ignore lines starting with: + Ignorera linjer som startar med: + + + Point format + Punktformat + + + Number separator: + Nummerseparator: + + + Points format: + Punktformat: + + + Next block: + Nästa block: + + + , + , + + + ; + ; + + + \t + \t + + + \w + \w + + + X,Y,Z + X, Y, Z + + + X,Y + X, Y + + + none + inget + + + I,J,K (normal vector) + I,J,K (normalvektor) + + + I,K (normal vector 2D) + I,K (2D nomalvektor) + + + R,G,B (color) + R,G,B (färg) + + + I (Gray value) + I (Gråton) + + + Preview + Förhandsvisning + + + 100 + 100 + + + Number of points + Antal punkter + + + Number of previewed lines: + Antal förhandsgranskade rader: + + + + QObject + + + Ascii Points (*.asc);;All Files (*.*) + Ascii Punkter (*.asc);;Alla Filer (*.*) + + + + Workbench + + + Points tools + Punktverktyg + + + &Points + &Punkter + + + diff --git a/src/Mod/Points/Gui/Resources/translations/Points_tr.qm b/src/Mod/Points/Gui/Resources/translations/Points_tr.qm new file mode 100644 index 000000000..75b07201c Binary files /dev/null and b/src/Mod/Points/Gui/Resources/translations/Points_tr.qm differ diff --git a/src/Mod/Points/Gui/Resources/translations/Points_tr.ts b/src/Mod/Points/Gui/Resources/translations/Points_tr.ts new file mode 100644 index 000000000..09a65e31e --- /dev/null +++ b/src/Mod/Points/Gui/Resources/translations/Points_tr.ts @@ -0,0 +1,193 @@ + + + + + CmdPointsExport + + + Points + Noktalar + + + Export points... + Noktaları dışarı aktar... + + + Exports a point cloud + Bir nokta bulutunu dışarı aktarır + + + + CmdPointsImport + + Points + Noktalar + + + Import points... + Noktaları içeri aktar... + + + Imports a point cloud + Bir nokta bulutunu içeri aktarır + + + + CmdPointsPolyCut + + Points + Noktalar + + + Cut point cloud + Nokta bulutunu kes + + + Cuts a point cloud with a picked polygon + Seçili çokgen ile nokta kümesi keser + + + + CmdPointsTransform + + Points + Noktalar + + + Transform Points + Noktaları dönüştür + + + Test to transform a point cloud + Bir nokta kümesini dönüştürme denemesi + + + + PointsGui::DlgPointsRead + + + ASCII points import + ASCII noktaları içeri aktar + + + Template: + Şablon: + + + Special lines + Özel doğrular + + + First line: + İlk satır: + + + Ignore + Yoksay + + + Cluster by lines starting with: + İlgili değerle başlayan satırlara göre kümele: + + + Ignore lines starting with: + İle başlayan noktaları yoksay: + + + Point format + Nokta biçimi + + + Number separator: + Sayı ayıracı: + + + Points format: + Nokta biçimi: + + + Next block: + Sonraki kütük: + + + , + , + + + ; + ; + + + \t + \t + + + \w + \w + + + X,Y,Z + X,Y,Z + + + X,Y + X,Y + + + none + hiçbiri + + + I,J,K (normal vector) + I,J,K (olağan vektör) + + + I,K (normal vector 2D) + I,K (2B olağan vektör) + + + R,G,B (color) + K,Y,M(Renkler) + + + I (Gray value) + I (Gri değerlik) + + + Preview + Önizleme + + + 100 + 100 + + + Number of points + Nokta sayısı + + + Number of previewed lines: + Gözden geçirilmiş doğru sayısı + + + + QObject + + + Ascii Points (*.asc);;All Files (*.*) + Ascii Noktalar (*.asc);;Tüm Dosyalar (*.*) + + + + Workbench + + + Points tools + Noktalar aracı + + + &Points + &Noktalar + + + diff --git a/src/Mod/Points/Gui/Resources/translations/Points_uk.qm b/src/Mod/Points/Gui/Resources/translations/Points_uk.qm index 5985f600d..5785a56d9 100644 Binary files a/src/Mod/Points/Gui/Resources/translations/Points_uk.qm and b/src/Mod/Points/Gui/Resources/translations/Points_uk.qm differ diff --git a/src/Mod/Points/Gui/Resources/translations/Points_uk.ts b/src/Mod/Points/Gui/Resources/translations/Points_uk.ts index 25aefdbad..7b6a71887 100644 --- a/src/Mod/Points/Gui/Resources/translations/Points_uk.ts +++ b/src/Mod/Points/Gui/Resources/translations/Points_uk.ts @@ -1,251 +1,193 @@ - - + + CmdPointsExport - - Points - Точки + + Points + Точки - - Export points... - Експорт точок... + Export points... + Експорт точок... - - - - Exports a point cloud - Експорт хмари точок + Exports a point cloud + Експорт хмари точок - - + + CmdPointsImport - - Points - Точки + Points + Точки - - Import points... - Імпорт точок... + Import points... + Імпорт точок... - - - - Imports a point cloud - Імпорт хмари точок + Imports a point cloud + Імпорт хмари точок - - + + CmdPointsPolyCut - - Points - Точки + Points + Точки - - Cut point cloud - Вирізати хмару точок + Cut point cloud + Вирізати хмару точок - - - - Cuts a point cloud with a picked polygon - Вирізати точки у виділеній області + Cuts a point cloud with a picked polygon + Вирізати точки у виділеній області - - + + CmdPointsTransform - - Points - Точки + Points + Точки - - Transform Points - Перетворення точок + Transform Points + Перетворення точок - - - - Test to transform a point cloud - Випробування для перетворення хмари точок + Test to transform a point cloud + Випробування для перетворення хмари точок - - + + PointsGui::DlgPointsRead - - ASCII points import - Імпорт точок ASCII + + ASCII points import + Імпорт точок ASCII - - Template: - Шаблон: + Template: + Шаблон: - - Special lines - Спеціальні лінії + Special lines + Спеціальні лінії - - First line: - Перший рядок: + First line: + Перший рядок: - - Ignore - Ігнорувати + Ignore + Ігнорувати - - Cluster by lines starting with: - Скупчення по лінії, починаючи з: + Cluster by lines starting with: + Скупчення по лінії, починаючи з: - - Ignore lines starting with: - Ігнорувати рядки, що починаються з: + Ignore lines starting with: + Ігнорувати рядки, що починаються з: - - Point format - Формат точки + Point format + Формат точки - - Number separator: - Number separator: + Number separator: + Номер роздільника: - - Points format: - Формат точок: + Points format: + Формат точок: - - - - Next block: - Наступний блок: + Next block: + Наступний блок: - - , - , + , + , - - ; - ; + ; + ; - - \t - \t + \t + \t - - \w - \w + \w + \w - - X,Y,Z - X,Y,Z + X,Y,Z + X,Y,Z - - X,Y - X,Y + X,Y + X,Y - - - - none - немає + none + немає - - - - I,J,K (normal vector) - I,J,K (нормальний вектор) + I,J,K (normal vector) + I,J,K (нормальний вектор) - - - - I,K (normal vector 2D) - I,K (нормальний вектор 2D) + I,K (normal vector 2D) + I,K (нормальний вектор 2D) - - - - R,G,B (color) - R,G,B (колір) + R,G,B (color) + R,G,B (колір) - - - - I (Gray value) - I (Значення сірого) + I (Gray value) + I (Значення сірого) - - Preview - Попередній перегляд + Preview + Попередній перегляд - - 100 - 100 + 100 + 100 - - Number of points - Кількість точок + Number of points + Кількість точок - - Number of previewed lines: - Кількість ліній в попередньому перегляді: + Number of previewed lines: + Кількість ліній в попередньому перегляді: - - + + QObject - - - Ascii Points (*.asc);;All Files (*.*) - Ascii точки (*.asc);;Всі файли (*.*) + + Ascii Points (*.asc);;All Files (*.*) + Ascii точки (*.asc);;Всі файли (*.*) - - + + Workbench - - Points tools - Інструменти точок + + Points tools + Інструменти точок - - &Points - &Точки + &Points + &Точки - + diff --git a/src/Mod/Points/Gui/Resources/translations/Points_zh.qm b/src/Mod/Points/Gui/Resources/translations/Points_zh-CN.qm similarity index 100% rename from src/Mod/Points/Gui/Resources/translations/Points_zh.qm rename to src/Mod/Points/Gui/Resources/translations/Points_zh-CN.qm diff --git a/src/Mod/Points/Gui/Resources/translations/Points_zh-CN.ts b/src/Mod/Points/Gui/Resources/translations/Points_zh-CN.ts new file mode 100644 index 000000000..5a47f88a8 --- /dev/null +++ b/src/Mod/Points/Gui/Resources/translations/Points_zh-CN.ts @@ -0,0 +1,193 @@ + + + + + CmdPointsExport + + + Points + + + + Export points... + 导出点... + + + Exports a point cloud + 导出点云 + + + + CmdPointsImport + + Points + + + + Import points... + 输入点... + + + Imports a point cloud + 导入点云 + + + + CmdPointsPolyCut + + Points + + + + Cut point cloud + 剪切点云 + + + Cuts a point cloud with a picked polygon + 剪切多边形选择框中的点云 + + + + CmdPointsTransform + + Points + + + + Transform Points + 变换点 + + + Test to transform a point cloud + 变换点云测试 + + + + PointsGui::DlgPointsRead + + + ASCII points import + ASCII点导入 + + + Template: + 模板: + + + Special lines + 特殊行 + + + First line: + 首行: + + + Ignore + 忽略 + + + Cluster by lines starting with: + 按行开始集群: + + + Ignore lines starting with: + 忽略以此开头的行: + + + Point format + 点格式 + + + Number separator: + 数分隔符: + + + Points format: + 点的格式: + + + Next block: + 下一区块: + + + , + , + + + ; + ; + + + \t + \t + + + \w + \w + + + X,Y,Z + X,Y,Z + + + X,Y + X,Y + + + none + + + + I,J,K (normal vector) + I,J,K(法向量) + + + I,K (normal vector 2D) + I,K(2D法向量) + + + R,G,B (color) + RGB颜色 + + + I (Gray value) + I(灰度值) + + + Preview + 预览 + + + 100 + 100 + + + Number of points + 点的数量 + + + Number of previewed lines: + 预览行数: + + + + QObject + + + Ascii Points (*.asc);;All Files (*.*) + Ascii 点(*.asc),所有文件 (*.*) + + + + Workbench + + + Points tools + 点工具 + + + &Points + 点(&P) + + + diff --git a/src/Mod/Points/Gui/Resources/translations/Points_zh-TW.qm b/src/Mod/Points/Gui/Resources/translations/Points_zh-TW.qm new file mode 100644 index 000000000..460bbb1d9 Binary files /dev/null and b/src/Mod/Points/Gui/Resources/translations/Points_zh-TW.qm differ diff --git a/src/Mod/Points/Gui/Resources/translations/Points_zh-TW.ts b/src/Mod/Points/Gui/Resources/translations/Points_zh-TW.ts new file mode 100644 index 000000000..8f6b07d4b --- /dev/null +++ b/src/Mod/Points/Gui/Resources/translations/Points_zh-TW.ts @@ -0,0 +1,193 @@ + + + + + CmdPointsExport + + + Points + + + + Export points... + 輸出點... + + + Exports a point cloud + 匯出點雲 + + + + CmdPointsImport + + Points + + + + Import points... + 匯入點... + + + Imports a point cloud + 匯入點雲 + + + + CmdPointsPolyCut + + Points + + + + Cut point cloud + 切割點雲 + + + Cuts a point cloud with a picked polygon + 由選定之多邊形切割點雲 + + + + CmdPointsTransform + + Points + + + + Transform Points + 切換點 + + + Test to transform a point cloud + 測試修改點雲 + + + + PointsGui::DlgPointsRead + + + ASCII points import + 匯入ASCII點 + + + Template: + 模板: + + + Special lines + 特殊行 + + + First line: + 第一行: + + + Ignore + 忽略 + + + Cluster by lines starting with: + 群組開始由行: + + + Ignore lines starting with: + 忽略開始由行: + + + Point format + 點型式 + + + Number separator: + 分隔符號數量 + + + Points format: + 點格式: + + + Next block: + 下一個區塊: + + + , + + + + ; + ; + + + \t + \t + + + \w + \w + + + X,Y,Z + X、 Y、 Z + + + X,Y + X、 Y + + + none + + + + I,J,K (normal vector) + I,J,K (垂直向量) + + + I,K (normal vector 2D) + I,K (2D垂直向量) + + + R,G,B (color) + R、 G、 B (顏色) + + + I (Gray value) + I (灰度值) + + + Preview + 預覽 + + + 100 + 100 + + + Number of points + 點數 + + + Number of previewed lines: + 預覽行數 + + + + QObject + + + Ascii Points (*.asc);;All Files (*.*) + Ascii 點 (*.asc);;所有檔 (*.*) + + + + Workbench + + + Points tools + 編輯點工具 + + + &Points + &點 + + + diff --git a/src/Mod/Points/Gui/Resources/translations/Points_zh.ts b/src/Mod/Points/Gui/Resources/translations/Points_zh.ts deleted file mode 100644 index c68b9f2c0..000000000 --- a/src/Mod/Points/Gui/Resources/translations/Points_zh.ts +++ /dev/null @@ -1,251 +0,0 @@ - - - - - CmdPointsExport - - - Points - - - - - Export points... - 导出点... - - - - - - Exports a point cloud - 导出点云 - - - - CmdPointsImport - - - Points - - - - - Import points... - 输入点... - - - - - - Imports a point cloud - 导入点云 - - - - CmdPointsPolyCut - - - Points - - - - - Cut point cloud - 剪切点云 - - - - - - Cuts a point cloud with a picked polygon - 剪切多边形选择框中的点云 - - - - CmdPointsTransform - - - Points - - - - - Transform Points - 变换点 - - - - - - Test to transform a point cloud - 变换点云测试 - - - - PointsGui::DlgPointsRead - - - ASCII points import - ASCII点导入 - - - - Template: - 模板: - - - - Special lines - 特殊行 - - - - First line: - 首行: - - - - Ignore - 忽略 - - - - Cluster by lines starting with: - 按行开始集群: - - - - Ignore lines starting with: - 忽略以此开头的行: - - - - Point format - 点格式 - - - - Number separator: - 数分隔符: - - - - Points format: - 点的格式: - - - - - - Next block: - 下一区块: - - - - , - , - - - - ; - ; - - - - \t - \t - - - - \w - \w - - - - X,Y,Z - X,Y,Z - - - - X,Y - X,Y - - - - - - none - - - - - - - I,J,K (normal vector) - I,J,K(法向量) - - - - - - I,K (normal vector 2D) - I,K(2D法向量) - - - - - - R,G,B (color) - RGB颜色 - - - - - - I (Gray value) - I(灰度值) - - - - Preview - 预览 - - - - 100 - 100 - - - - Number of points - 点的数量 - - - - Number of previewed lines: - 预览行数: - - - - QObject - - - - Ascii Points (*.asc);;All Files (*.*) - Ascii 点(*.asc),所有文件 (*.*) - - - - Workbench - - - Points tools - 点工具 - - - - &Points - 点(&P) - - - diff --git a/src/Mod/Raytracing/Gui/Makefile.am b/src/Mod/Raytracing/Gui/Makefile.am index b83c79855..f68ab3d80 100644 --- a/src/Mod/Raytracing/Gui/Makefile.am +++ b/src/Mod/Raytracing/Gui/Makefile.am @@ -104,8 +104,8 @@ EXTRA_DIST = \ Resources/translations/Raytracing_af.ts \ Resources/translations/Raytracing_de.qm \ Resources/translations/Raytracing_de.ts \ - Resources/translations/Raytracing_es.qm \ - Resources/translations/Raytracing_es.ts \ + Resources/translations/Raytracing_es-ES.qm \ + Resources/translations/Raytracing_es-ES.ts \ Resources/translations/Raytracing_fi.qm \ Resources/translations/Raytracing_fi.ts \ Resources/translations/Raytracing_fr.qm \ @@ -120,14 +120,28 @@ EXTRA_DIST = \ Resources/translations/Raytracing_no.ts \ Resources/translations/Raytracing_pl.qm \ Resources/translations/Raytracing_pl.ts \ - Resources/translations/Raytracing_pt.qm \ - Resources/translations/Raytracing_pt.ts \ + Resources/translations/Raytracing_pt-BR.qm \ + Resources/translations/Raytracing_pt-BR.ts \ Resources/translations/Raytracing_ru.qm \ Resources/translations/Raytracing_ru.ts \ - Resources/translations/Raytracing_se.qm \ - Resources/translations/Raytracing_se.ts \ + Resources/translations/Raytracing_sv-SE.qm \ + Resources/translations/Raytracing_sv-SE.ts \ Resources/translations/Raytracing_uk.qm \ Resources/translations/Raytracing_uk.ts \ - Resources/translations/Raytracing_zh.qm \ - Resources/translations/Raytracing_zh.ts \ + Resources/translations/Raytracing_hu.qm \ + Resources/translations/Raytracing_hu.ts \ + Resources/translations/Raytracing_sk.qm \ + Resources/translations/Raytracing_sk.ts \ + Resources/translations/Raytracing_cs.qm \ + Resources/translations/Raytracing_cs.ts \ + Resources/translations/Raytracing_ro.qm \ + Resources/translations/Raytracing_ro.ts \ + Resources/translations/Raytracing_tr.qm \ + Resources/translations/Raytracing_tr.ts \ + Resources/translations/Raytracing_ja.qm \ + Resources/translations/Raytracing_ja.ts \ + Resources/translations/Raytracing_zh-TW.qm \ + Resources/translations/Raytracing_zh-TW.ts \ + Resources/translations/Raytracing_zh-CN.qm \ + Resources/translations/Raytracing_zh-CN.ts \ CMakeLists.txt diff --git a/src/Mod/Raytracing/Gui/Resources/Raytracing.qrc b/src/Mod/Raytracing/Gui/Resources/Raytracing.qrc index 69d152366..b561e703c 100644 --- a/src/Mod/Raytracing/Gui/Resources/Raytracing.qrc +++ b/src/Mod/Raytracing/Gui/Resources/Raytracing.qrc @@ -9,7 +9,6 @@ icons/Raytrace_NewPartSegment.svg translations/Raytracing_af.qm translations/Raytracing_de.qm - translations/Raytracing_es.qm translations/Raytracing_fi.qm translations/Raytracing_fr.qm translations/Raytracing_hr.qm @@ -17,10 +16,18 @@ translations/Raytracing_nl.qm translations/Raytracing_no.qm translations/Raytracing_pl.qm - translations/Raytracing_pt.qm translations/Raytracing_ru.qm - translations/Raytracing_se.qm translations/Raytracing_uk.qm - translations/Raytracing_zh.qm + translations/Raytracing_tr.qm + translations/Raytracing_sv-SE.qm + translations/Raytracing_zh-TW.qm + translations/Raytracing_pt-BR.qm + translations/Raytracing_cs.qm + translations/Raytracing_sk.qm + translations/Raytracing_es-ES.qm + translations/Raytracing_zh-CN.qm + translations/Raytracing_ja.qm + translations/Raytracing_ro.qm + translations/Raytracing_hu.qm diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_af.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_af.qm index b2e1093a5..d3cff212f 100644 Binary files a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_af.qm and b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_af.qm differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_af.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_af.ts index 56b675e7b..4f0e39e84 100644 --- a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_af.ts +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_af.ts @@ -1,252 +1,200 @@ - - + + CmdRaytracingExportProject - - File - Lêer + + File + Lêer - - &Export project... - &Voer projek uit... + &Export project... + &Voer projek uit... - - Export the Povray project file - Voer die Povray projeklêer uit + Export the Povray project file + Voer die Povray projeklêer uit - - + + CmdRaytracingNewPartSegment - - Raytracing - Straalsporing + Raytracing + Straalsporing - - Insert part - Voeg onderdeel in + Insert part + Voeg onderdeel in - - Insert a new part object into a Povray project - Voeg 'n nuwe onderdeelvoorwerp in na 'n Povray-projek + Insert a new part object into a Povray project + Voeg 'n nuwe onderdeelvoorwerp in na 'n Povray-projek - - + + CmdRaytracingNewPovrayProject - - Raytracing - Straalsporing + Raytracing + Straalsporing - - New Povray project - Nuwe Povray-projek + New Povray project + Nuwe Povray-projek - - Insert new Povray project into the document - Voeg nuwe Povray-projek in na die dokument + Insert new Povray project into the document + Voeg nuwe Povray-projek in na die dokument - - + + CmdRaytracingWriteCamera - - Raytracing - Straalsporing + Raytracing + Straalsporing - - Export camera to povray... - Export camera to povray... + Export camera to povray... + Voer kamera uit na povray... - - Export the camera positon of the active 3D view in PovRay format to a file - Voer die kameraposisie van die aktiewe 3D-aansig uit na 'n Povray-lêer + Export the camera positon of the active 3D view in PovRay format to a file + Voer die kameraposisie van die aktiewe 3D-aansig uit na 'n Povray-lêer - - + + CmdRaytracingWritePart - - Raytracing - Straalsporing + Raytracing + Straalsporing - - Export part to povray... - Voer onderdeel uit na Povray... + Export part to povray... + Voer onderdeel uit na Povray... - - Write the selected Part (object) as a povray file - Skryf die gekose onderdeel (voorwerp) na 'n Povray-lêer + Write the selected Part (object) as a povray file + Skryf die gekose onderdeel (voorwerp) na 'n Povray-lêer - - + + CmdRaytracingWriteView - - - - No perspective camera - + No perspective camera + No perspective camera - - - - The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. Do you want to continue? - + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. +Do you want to continue? - - Raytracing - Straalsporing + Raytracing + Straalsporing - - Export view to povray... - Voer uit na Povray... + Export view to povray... + Voer uit na Povray... - - Write the active 3D view with camera and all its content to a povray file - Skryf die aktiewe 3D-vertoning met kamera en al sy inhoud na 'n Povray-lêer + Write the active 3D view with camera and all its content to a povray file + Skryf die aktiewe 3D-vertoning met kamera en al sy inhoud na 'n Povray-lêer - - + + QObject - - - - - Povray(*.pov) - Povray (*.pov) + Povray(*.pov) + Povray (*.pov) - - - - - All Files (*.*) - Alle lêers (*.*) + All Files (*.*) + Alle lêers (*.*) - - - - - Export page - Voer bladsy uit + Export page + Voer bladsy uit - - - Wrong selection - Verkeerde keuse + Wrong selection + Verkeerde keuse - - Select a Part object. - Kies 'n onderdeel. + Select a Part object. + Kies 'n onderdeel. - - - No Povray project to insert - Geen Povrayprojek om in te voeg nie + No Povray project to insert + Geen Povrayprojek om in te voeg nie - - Create a Povray project to insert a view. - Skep 'n Povrayprojek om 'n aansig in te voeg. + Create a Povray project to insert a view. + Skep 'n Povrayprojek om 'n aansig in te voeg. - - Select a Povray project to insert the view. - + Select a Povray project to insert the view. + Select a Povray project to insert the view. - - Select one Povray project object. - Kies een Povray projekvoorwerp. + Select one Povray project object. + Kies een Povray projekvoorwerp. - - + + RaytracingGui::DlgSettingsRay - - Raytracing - Straalsporing + + Raytracing + Straalsporing - - Directories - Gidse + Directories + Gidse - - Default Project dir: - Standaard Projekgids: + Default Project dir: + Standaard Projekgids: - - Camera file name: - Kameralêernaam: + Camera file name: + Kameralêernaam: - - Part file name: - Onderdeellêernaam: + Part file name: + Onderdeellêernaam: - - TempCamera.inc - TempKamera.inc + TempCamera.inc + TempKamera.inc - - TempPart.inc - TempOnderdeel.inc + TempPart.inc + TempOnderdeel.inc - - Mesh export settings - Maas uitvoerinstellings + Mesh export settings + Maas uitvoerinstellings - - max mesh deviation: - Maksimum maasafwyking: + max mesh deviation: + Maksimum maasafwyking: - - Do not calculate vertex normals - Bereken nie die hoekpuntnormaallyne nie + Do not calculate vertex normals + Bereken nie die hoekpuntnormaallyne nie - - Write u,v coordinates - Skryf u,v koördinate + Write u,v coordinates + Skryf u,v koördinate - - + + Workbench - - &Raytracing - &Straalsporing + + &Raytracing + &Straalsporing - + diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_cs.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_cs.qm new file mode 100644 index 000000000..2e262f8b9 Binary files /dev/null and b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_cs.qm differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_cs.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_cs.ts new file mode 100644 index 000000000..30017f331 --- /dev/null +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_cs.ts @@ -0,0 +1,200 @@ + + + + + CmdRaytracingExportProject + + + File + Soubor + + + &Export project... + &Exportovat projekt... + + + Export the Povray project file + Exportovat soubor projektu Povray + + + + CmdRaytracingNewPartSegment + + Raytracing + Raytracing + + + Insert part + Vložit část + + + Insert a new part object into a Povray project + Vložit novou část objektu do projektu Povray + + + + CmdRaytracingNewPovrayProject + + Raytracing + Raytracing + + + New Povray project + Nový projekt Povray + + + Insert new Povray project into the document + Vložit nový projekt Povray do dokumentu + + + + CmdRaytracingWriteCamera + + Raytracing + Raytracing + + + Export camera to povray... + Export camera to povray... + + + Export the camera positon of the active 3D view in PovRay format to a file + Exportovat do souboru pozici kamery aktivního 3D zobrazení formátu PovRay + + + + CmdRaytracingWritePart + + Raytracing + Raytracing + + + Export part to povray... + Exportovat část do povray... + + + Write the selected Part (object) as a povray file + Zapsat vybranou část (objekt) jako povray soubor + + + + CmdRaytracingWriteView + + No perspective camera + No perspective camera + + + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. +Do you want to continue? + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. +Do you want to continue? + + + Raytracing + Raytracing + + + Export view to povray... + Exportovat zobrazení do povray... + + + Write the active 3D view with camera and all its content to a povray file + Zápsat aktivní 3D pohled s kamerou a veškerým jejím obsahem do souboru povray + + + + QObject + + Povray(*.pov) + Povray(*.pov) + + + All Files (*.*) + Všechny soubory (*.*) + + + Export page + Exportovat stránku + + + Wrong selection + Neplatný výběr + + + Select a Part object. + Vybrat díl. + + + No Povray project to insert + Žádný POV-Ray projekt k vložení + + + Create a Povray project to insert a view. + Vytvořit POV-Ray projekt k vložení pohledu. + + + Select a Povray project to insert the view. + Select a Povray project to insert the view. + + + Select one Povray project object. + Select one Povray project object. + + + + RaytracingGui::DlgSettingsRay + + + Raytracing + Raytracing + + + Directories + Adresáře + + + Default Project dir: + Výchozí adresář projektu: + + + Camera file name: + Název souboru fotoaparátu: + + + Part file name: + Název dílu: + + + TempCamera.inc + TempCamera.inc + + + TempPart.inc + TempPart.inc + + + Mesh export settings + Nastavení exportu sítě + + + max mesh deviation: + Maximální odchylka sítě: + + + Do not calculate vertex normals + Nepočítat vrcholové normály + + + Write u,v coordinates + Zapsat u,v souřadnice + + + + Workbench + + + &Raytracing + Raytracing + + + diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_de.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_de.qm index 64f0a2fa0..64572b64b 100644 Binary files a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_de.qm and b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_de.qm differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_de.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_de.ts index 5da114aa0..11e4a1f49 100644 --- a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_de.ts +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_de.ts @@ -1,252 +1,200 @@ - - + + CmdRaytracingExportProject - - File - Datei + + File + Datei - - &Export project... - Projekt &exportieren... + &Export project... + Projekt &exportieren... - - Export the Povray project file - Povray-Projektdatei exportieren + Export the Povray project file + Povray-Projektdatei exportieren - - + + CmdRaytracingNewPartSegment - - Raytracing - Raytracing + Raytracing + Raytracing - - Insert part - Teil einfügen + Insert part + Teil einfügen - - Insert a new part object into a Povray project - Ein neues Formteil in ein Povray-Projekt einfügen + Insert a new part object into a Povray project + Ein neues Formteil in ein Povray-Projekt einfügen - - + + CmdRaytracingNewPovrayProject - - Raytracing - Raytracing + Raytracing + Raytracing - - New Povray project - Neues Povray-Projekt + New Povray project + Neues Povray-Projekt - - Insert new Povray project into the document - Neues Povray-Projekt in Dokument einfügen + Insert new Povray project into the document + Neues Povray-Projekt in Dokument einfügen - - + + CmdRaytracingWriteCamera - - Raytracing - Raytracing + Raytracing + Raytracing - - Export camera to povray... - Kamera nach Povray exportieren... + Export camera to povray... + Kamera nach Povray exportieren... - - Export the camera positon of the active 3D view in PovRay format to a file - Kameraposition der aktiven 3D-Ansicht im Povray-Format in eine Datei exportieren + Export the camera positon of the active 3D view in PovRay format to a file + Kameraposition der aktiven 3D-Ansicht im Povray-Format in eine Datei exportieren - - + + CmdRaytracingWritePart - - Raytracing - Raytracing + Raytracing + Raytracing - - Export part to povray... - Formteil nach Povray exportieren... + Export part to povray... + Formteil nach Povray exportieren... - - Write the selected Part (object) as a povray file - Selektiertes Formteil in Povray-Datei schreiben + Write the selected Part (object) as a povray file + Selektiertes Formteil in Povray-Datei schreiben - - + + CmdRaytracingWriteView - - - - No perspective camera - + No perspective camera + Keine perspektivische Kamera - - - - The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. Do you want to continue? - + Die aktuelle Kamera ist nicht perspektivisch und damit kann das Ergebnis anders aussehen als Sie es erwarten. +Möchten Sie fortfahren? - - Raytracing - Raytracing + Raytracing + Raytracing - - Export view to povray... - Ansicht nach Povray exportieren... + Export view to povray... + Ansicht nach Povray exportieren... - - Write the active 3D view with camera and all its content to a povray file - Aktive 3D-Ansicht mit Kamera und ganzem Inhalt in eine Povray-Datei schreiben + Write the active 3D view with camera and all its content to a povray file + Aktive 3D-Ansicht mit Kamera und ganzem Inhalt in eine Povray-Datei schreiben - - + + QObject - - - - - Povray(*.pov) - Povray(*.pov) + Povray(*.pov) + Povray(*.pov) - - - - - All Files (*.*) - Alle Dateien (*.*) + All Files (*.*) + Alle Dateien (*.*) - - - - - Export page - Seite exportieren + Export page + Seite exportieren - - - Wrong selection - Falsche Auswahl + Wrong selection + Falsche Auswahl - - Select a Part object. - Formteil auswählen. + Select a Part object. + Formteil auswählen. - - - No Povray project to insert - Kein Povray-Projekt zum Einfügen + No Povray project to insert + Kein Povray-Projekt zum Einfügen - - Create a Povray project to insert a view. - Povray-Projekt erstellen, um eine Ansicht einzufügen. + Create a Povray project to insert a view. + Povray-Projekt erstellen, um eine Ansicht einzufügen. - - Select a Povray project to insert the view. - + Select a Povray project to insert the view. + Wählen Sie ein Povray-Projekt zum Einfügen in die Ansicht. - - Select one Povray project object. - Wählen Sie ein Povray-Projekt aus. + Select one Povray project object. + Wählen Sie ein Povray-Projekt aus. - - + + RaytracingGui::DlgSettingsRay - - Raytracing - Raytracing + + Raytracing + Raytracing - - Directories - Verzeichnisse + Directories + Verzeichnisse - - Default Project dir: - Standard-Projektverzeichnis: + Default Project dir: + Standard-Projektverzeichnis: - - Camera file name: - Kamera-Dateiname: + Camera file name: + Kamera-Dateiname: - - Part file name: - Formteil-Dateiname: + Part file name: + Formteil-Dateiname: - - TempCamera.inc - TempCamera.inc + TempCamera.inc + TempCamera.inc - - TempPart.inc - TempPart.inc + TempPart.inc + TempPart.inc - - Mesh export settings - Mesh-Exporteinstellungen + Mesh export settings + Mesh-Exporteinstellungen - - max mesh deviation: - max. Mesh-Abweichung: + max mesh deviation: + max. Mesh-Abweichung: - - Do not calculate vertex normals - Vertexnormalen nicht berechnen + Do not calculate vertex normals + Vertexnormalen nicht berechnen - - Write u,v coordinates - U, V-Koordinaten schreiben + Write u,v coordinates + U, V-Koordinaten schreiben - - + + Workbench - - &Raytracing - &Raytracing + + &Raytracing + &Raytracing - + diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_es-ES.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_es-ES.qm new file mode 100644 index 000000000..b869aae26 Binary files /dev/null and b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_es-ES.qm differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_es-ES.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_es-ES.ts new file mode 100644 index 000000000..366a52174 --- /dev/null +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_es-ES.ts @@ -0,0 +1,199 @@ + + + + + CmdRaytracingExportProject + + + File + Archivo + + + &Export project... + &Exportar proyecto... + + + Export the Povray project file + Exportar el archivo de proyecto Povray + + + + CmdRaytracingNewPartSegment + + Raytracing + Trazado de rayos + + + Insert part + Insertar pieza + + + Insert a new part object into a Povray project + Insertar objeto 'Parte' nuevo en un proyecto de Povray + + + + CmdRaytracingNewPovrayProject + + Raytracing + Trazado de rayos + + + New Povray project + Proyecto Povray nuevo + + + Insert new Povray project into the document + Insertar proyecto Povray nuevo en el documento + + + + CmdRaytracingWriteCamera + + Raytracing + Trazado de rayos + + + Export camera to povray... + Exportar cámara a Povray... + + + Export the camera positon of the active 3D view in PovRay format to a file + Exportar la posición de la cámara de la vista 3D activa en formato PovRay a un archivo + + + + CmdRaytracingWritePart + + Raytracing + Trazado de rayos + + + Export part to povray... + Exportar pieza a povray... + + + Write the selected Part (object) as a povray file + Escribir la Parte (objecto) seleccionada a un archivo povray + + + + CmdRaytracingWriteView + + No perspective camera + Ninguna perspectiva de cámara + + + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. +Do you want to continue? + La vista de cámara actual no es en perspectiva por lo que el resultado de la imagen de povray podria verse distinto a lo que usted espera. ¿Desea continuar? + + + Raytracing + Trazado de rayos + + + Export view to povray... + Exportar vista a povray... + + + Write the active 3D view with camera and all its content to a povray file + Escribir la vista 3D activa con cámara y todo su contenido a un archivo povray + + + + QObject + + Povray(*.pov) + Povray(*.pov) + + + All Files (*.*) + Todos los archivos (*.*) + + + Export page + Exportar página + + + Wrong selection + Selección errónea + + + Select a Part object. + Seleccione un objecto tipo Parte. + + + No Povray project to insert + Ningún proyecto Povray para insertar + + + Create a Povray project to insert a view. + Crear un proyecto Povray para insertar una vista. + + + Select a Povray project to insert the view. + Seleccione un proyecto de Povray para insertar la vista. + + + Select one Povray project object. + Seleccione un objeto tipo Proyecto Povray. + + + + RaytracingGui::DlgSettingsRay + + + Raytracing + Trazado de rayos + + + Directories + Directorios + + + Default Project dir: + Directorio por defecto del proyecto: + + + Camera file name: + Nombre del archivo de la cámara: + + + Part file name: + Nombre del archivo de la pieza: + + + TempCamera.inc + TempCamera.inc + + + TempPart.inc + TempPart.inc + + + Mesh export settings + Configuración de la exportación de mallas + + + max mesh deviation: + Desviación máxima de la malla: + + + Do not calculate vertex normals + No calcular vértices normales + + + Write u,v coordinates + Escribir las coordenadas u,v + + + + Workbench + + + &Raytracing + &Raytracing + + + diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_es.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_es.qm deleted file mode 100644 index 214ee3257..000000000 Binary files a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_es.qm and /dev/null differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_es.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_es.ts deleted file mode 100644 index 04eaa62ed..000000000 --- a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_es.ts +++ /dev/null @@ -1,252 +0,0 @@ - - - - - CmdRaytracingExportProject - - - File - Archivo - - - - &Export project... - &Exportar proyecto... - - - - Export the Povray project file - Exportar el archivo de proyecto Povray - - - - CmdRaytracingNewPartSegment - - - Raytracing - Trazado de rayos - - - - Insert part - Insertar pieza - - - - Insert a new part object into a Povray project - Insertar objeto 'Parte' nuevo en un proyecto de Povray - - - - CmdRaytracingNewPovrayProject - - - Raytracing - Trazado de rayos - - - - New Povray project - Proyecto Povray nuevo - - - - Insert new Povray project into the document - Insertar proyecto Povray nuevo en el documento - - - - CmdRaytracingWriteCamera - - - Raytracing - Trazado de rayos - - - - Export camera to povray... - Export camera to povray... - - - - Export the camera positon of the active 3D view in PovRay format to a file - Exportar la posición de la cámara de la vista 3D activa en formato PovRay a un archivo - - - - CmdRaytracingWritePart - - - Raytracing - Trazado de rayos - - - - Export part to povray... - Exportar pieza a povray... - - - - Write the selected Part (object) as a povray file - Escribir la Parte (objecto) seleccionada a un archivo povray - - - - CmdRaytracingWriteView - - - - - No perspective camera - - - - - - - The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. -Do you want to continue? - - - - - Raytracing - Trazado de rayos - - - - Export view to povray... - Exportar vista a povray... - - - - Write the active 3D view with camera and all its content to a povray file - Escribir la vista 3D activa con cámara y todo su contenido a un archivo povray - - - - QObject - - - - - - Povray(*.pov) - Povray(*.pov) - - - - - - - All Files (*.*) - Todos los archivos (*.*) - - - - - - - Export page - Exportar página - - - - - Wrong selection - Selección errónea - - - - Select a Part object. - Seleccione un objecto tipo Parte. - - - - - No Povray project to insert - Ningún proyecto Povray para insertar - - - - Create a Povray project to insert a view. - Crear un proyecto Povray para insertar una vista. - - - - Select a Povray project to insert the view. - - - - - Select one Povray project object. - Seleccione un objeto tipo Proyecto Povray. - - - - RaytracingGui::DlgSettingsRay - - - Raytracing - Trazado de rayos - - - - Directories - Directorios - - - - Default Project dir: - Directorio por defecto del proyecto: - - - - Camera file name: - Nombre del archivo de la cámara: - - - - Part file name: - Nombre del archivo de la pieza: - - - - TempCamera.inc - TempCamera.inc - - - - TempPart.inc - TempPart.inc - - - - Mesh export settings - Configuración de la exportación de mallas - - - - max mesh deviation: - Desviación máxima de la malla: - - - - Do not calculate vertex normals - No calcular vértices normales - - - - Write u,v coordinates - Escribir las coordenadas u,v - - - - Workbench - - - &Raytracing - &Trazado de rayos - - - diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_fi.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_fi.qm index 2010f9eec..12ac0f5c4 100644 Binary files a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_fi.qm and b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_fi.qm differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_fi.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_fi.ts index 0ef434a17..fc2c869b4 100644 --- a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_fi.ts +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_fi.ts @@ -1,252 +1,200 @@ - - + + CmdRaytracingExportProject - - File - Tiedosto + + File + Tiedosto - - &Export project... - Projektin &vienti... + &Export project... + Projektin &vienti... - - Export the Povray project file - Vie Povray-projektitiedosto + Export the Povray project file + Vie Povray-projektitiedosto - - + + CmdRaytracingNewPartSegment - - Raytracing - Raytracing + Raytracing + Säteenseuranta - - Insert part - Lisää osa + Insert part + Lisää osa - - Insert a new part object into a Povray project - Insert a new part object into a Povray project + Insert a new part object into a Povray project + Lisää uusi osa-objekti Povray-projektiin - - + + CmdRaytracingNewPovrayProject - - Raytracing - Raytracing + Raytracing + Säteenseuranta - - New Povray project - Uusi Povray-projekti + New Povray project + Uusi Povray-projekti - - Insert new Povray project into the document - Insert new Povray project into the document + Insert new Povray project into the document + Lisää uusi povray projekti asiakirjaan - - + + CmdRaytracingWriteCamera - - Raytracing - Raytracing + Raytracing + Säteenseuranta - - Export camera to povray... - Export camera to povray... + Export camera to povray... + Vie kamera povray:lle... - - Export the camera positon of the active 3D view in PovRay format to a file - Export the camera positon of the active 3D view in PovRay format to a file + Export the camera positon of the active 3D view in PovRay format to a file + Vie kameran suunta aktiivisesta 3D-näkymästä PovRay muotoiseen tiedostoon - - + + CmdRaytracingWritePart - - Raytracing - Raytracing + Raytracing + Säteenseuranta - - Export part to povray... - Vie osa povray-malliin ... + Export part to povray... + Vie osa povray-malliin ... - - Write the selected Part (object) as a povray file - Write the selected Part (object) as a povray file + Write the selected Part (object) as a povray file + Kirjoita Valittu osa (objekti) kuin povray-tiedosto - - + + CmdRaytracingWriteView - - - - No perspective camera - + No perspective camera + No perspective camera - - - - The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. Do you want to continue? - + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. +Do you want to continue? - - Raytracing - Raytracing + Raytracing + Säteenseuranta - - Export view to povray... - Vie näkymä povray-muotoon ... + Export view to povray... + Vie näkymä povray-muotoon ... - - Write the active 3D view with camera and all its content to a povray file - Write the active 3D view with camera and all its content to a povray file + Write the active 3D view with camera and all its content to a povray file + Kirjoita aktiivinen 3D näkymä kameran ja kaikkien sen sisällön kanssa povray-tiedostoon - - + + QObject - - - - - Povray(*.pov) - Povray(*.POV) + Povray(*.pov) + Povray(*.POV) - - - - - All Files (*.*) - Kaikki tiedostot (*.*) + All Files (*.*) + Kaikki tiedostot (*.*) - - - - - Export page - Vie sivu + Export page + Vie sivu - - - Wrong selection - Väärä valinta + Wrong selection + Väärä valinta - - Select a Part object. - Valitse osa-objekti. + Select a Part object. + Valitse osa-objekti. - - - No Povray project to insert - No Povray project to insert + No Povray project to insert + Ei ole Povray-projektia lisäystä varten - - Create a Povray project to insert a view. - Create a Povray project to insert a view. + Create a Povray project to insert a view. + Luo Povray-projekti lisätylle näkymälle. - - Select a Povray project to insert the view. - + Select a Povray project to insert the view. + Select a Povray project to insert the view. - - Select one Povray project object. - Valitse yksi Povray-projektin objekti. + Select one Povray project object. + Valitse yksi Povray-projektin objekti. - - + + RaytracingGui::DlgSettingsRay - - Raytracing - Raytracing + + Raytracing + Säteenseuranta - - Directories - Hakemistot + Directories + Hakemistot - - Default Project dir: - Oletus projektihakemisto: + Default Project dir: + Oletus projektihakemisto: - - Camera file name: - Camera file name: + Camera file name: + Kameran tiedostonimi: - - Part file name: - Part file name: + Part file name: + Osan tiedostonimi: - - TempCamera.inc - TempCamera.inc + TempCamera.inc + TempKamera.inc - - TempPart.inc - TempPart.inc + TempPart.inc + TempOsa.inc - - Mesh export settings - Mesh export settings + Mesh export settings + Verkon vientiasetukset - - max mesh deviation: - max mesh deviation: + max mesh deviation: + maksimi verkon poikkeama: - - Do not calculate vertex normals - Älä laskea normaaleita kärkipisteitä + Do not calculate vertex normals + Älä laskea normaaleita kärkipisteitä - - Write u,v coordinates - Kirjoita u,v koordinaatit + Write u,v coordinates + Kirjoita u,v koordinaatit - - + + Workbench - - &Raytracing - &Raytracing + + &Raytracing + &Säteenseuranta - + diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_fr.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_fr.qm index 9f47bcdc2..b1ea8e485 100644 Binary files a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_fr.qm and b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_fr.qm differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_fr.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_fr.ts index 330b3ebe5..d5f9dae1b 100644 --- a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_fr.ts +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_fr.ts @@ -1,252 +1,200 @@ - - + + CmdRaytracingExportProject - - File - Fichier + + File + Fichier - - &Export project... - &Exporter le projet... + &Export project... + &Exporter le projet... - - Export the Povray project file - Exporter le fichier de projet PovRay + Export the Povray project file + Exporter le fichier de projet PovRay - - + + CmdRaytracingNewPartSegment - - Raytracing - Lancer de rayon + Raytracing + Lancer de rayon - - Insert part - Insérer une pièce + Insert part + Insérer une pièce - - Insert a new part object into a Povray project - Insérer un nouvel objet pièce dans un projet PovRay + Insert a new part object into a Povray project + Insérer un nouvel objet pièce dans un projet PovRay - - + + CmdRaytracingNewPovrayProject - - Raytracing - Lancer de rayon + Raytracing + Lancer de rayon - - New Povray project - Nouveau projet PovRay + New Povray project + Nouveau projet PovRay - - Insert new Povray project into the document - Insérer un nouveau projet PovRay dans le document + Insert new Povray project into the document + Insérer un nouveau projet PovRay dans le document - - + + CmdRaytracingWriteCamera - - Raytracing - Lancer de rayon + Raytracing + Lancer de rayon - - Export camera to povray... - Exporter la caméra vers PovRay... + Export camera to povray... + Exporter la caméra vers PovRay... - - Export the camera positon of the active 3D view in PovRay format to a file - Exporter la position de la caméra de la vue 3D active vers un fichier au format PovRay + Export the camera positon of the active 3D view in PovRay format to a file + Exporter la position de la caméra de la vue 3D active vers un fichier au format PovRay - - + + CmdRaytracingWritePart - - Raytracing - Lancer de rayon + Raytracing + Lancer de rayon - - Export part to povray... - Exporter la pièce vers povray... + Export part to povray... + Exporter la pièce vers povray... - - Write the selected Part (object) as a povray file - Enregistrer la pièce sélectionnée (objet) sous forme de fichier povray + Write the selected Part (object) as a povray file + Enregistrer la pièce sélectionnée (objet) sous forme de fichier povray - - + + CmdRaytracingWriteView - - - - No perspective camera - + No perspective camera + Pas de caméra perspective - - - - The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. Do you want to continue? - + La caméra vue courante n'est pas en perspective, le résultat de l'image PovRay sera certainement différent du résultat escompté. +Voulez-vous continuer? - - Raytracing - Lancer de rayon + Raytracing + Lancer de rayon - - Export view to povray... - Exporter la vue vers povray... + Export view to povray... + Exporter la vue vers povray... - - Write the active 3D view with camera and all its content to a povray file - Enregistrer la vue 3D active avec la caméra et tout son contenu dans un fichier povray + Write the active 3D view with camera and all its content to a povray file + Enregistrer la vue 3D active avec la caméra et tout son contenu dans un fichier povray - - + + QObject - - - - - Povray(*.pov) - Povray (*.pov) + Povray(*.pov) + Povray (*.pov) - - - - - All Files (*.*) - Tous les fichiers (*.*) + All Files (*.*) + Tous les fichiers (*.*) - - - - - Export page - Exporter la page + Export page + Exporter la page - - - Wrong selection - Sélection invalide + Wrong selection + Sélection invalide - - Select a Part object. - Sélectionnez un objet pièce. + Select a Part object. + Sélectionnez un objet pièce. - - - No Povray project to insert - Aucun projet PovRay à insérer + No Povray project to insert + Aucun projet PovRay à insérer - - Create a Povray project to insert a view. - Créez un projet Povray pour insérer une vue. + Create a Povray project to insert a view. + Créez un projet Povray pour insérer une vue. - - Select a Povray project to insert the view. - + Select a Povray project to insert the view. + Sélectionnez un objet PovRay à insérer dans la vue. - - Select one Povray project object. - Sélectionnez un objet de projet Povray. + Select one Povray project object. + Sélectionnez un objet de projet Povray. - - + + RaytracingGui::DlgSettingsRay - - Raytracing - Lancer de rayon + + Raytracing + Lancer de rayon - - Directories - Répertoires + Directories + Répertoires - - Default Project dir: - Répertoire par défaut du projet : + Default Project dir: + Répertoire par défaut du projet : - - Camera file name: - Nom du fichier caméra : + Camera file name: + Nom du fichier caméra : - - Part file name: - Nom du fichier pièce : + Part file name: + Nom du fichier pièce : - - TempCamera.inc - TempCamera.inc + TempCamera.inc + TempCamera.inc - - TempPart.inc - TempPart.inc + TempPart.inc + TempPart.inc - - Mesh export settings - Paramètres d'exportation de maillage + Mesh export settings + Paramètres d'exportation de maillage - - max mesh deviation: - écart maximum des maillages : + max mesh deviation: + écart maximum des maillages : - - Do not calculate vertex normals - Ne pas calculer les normales des sommets + Do not calculate vertex normals + Ne pas calculer les normales des sommets - - Write u,v coordinates - Écrire les coordonnées (u,v) + Write u,v coordinates + Écrire les coordonnées (u,v) - - + + Workbench - - &Raytracing - Lancer de &Rayon + + &Raytracing + &Lancer de rayon - + diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_hr.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_hr.qm index 22b7f14d4..34cc40a95 100644 Binary files a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_hr.qm and b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_hr.qm differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_hr.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_hr.ts index 615bed673..979bc54d5 100644 --- a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_hr.ts +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_hr.ts @@ -1,252 +1,200 @@ - - + + CmdRaytracingExportProject - - File - Datoteka + + File + Datoteka - - &Export project... - &Izvezi projekt... + &Export project... + &Izvezi projekt... - - Export the Povray project file - Izvoz datoteka Povray projekt + Export the Povray project file + Izvoz datoteka Povray projekt - - + + CmdRaytracingNewPartSegment - - Raytracing - Metode trasiranja putem zrake + Raytracing + Metode trasiranja putem zrake - - Insert part - Umetni dio + Insert part + Umetni dio - - Insert a new part object into a Povray project - Umetnite novi dio objekta u Povray-projekta + Insert a new part object into a Povray project + Umetnite novi dio objekta u Povray-projekta - - + + CmdRaytracingNewPovrayProject - - Raytracing - Metode trasiranja putem zrake + Raytracing + Metode trasiranja putem zrake - - New Povray project - Novi projekt Povray + New Povray project + Novi projekt Povray - - Insert new Povray project into the document - Umetanje novog Povray projekta u dokument + Insert new Povray project into the document + Umetanje novog Povray projekta u dokument - - + + CmdRaytracingWriteCamera - - Raytracing - Metode trasiranja putem zrake + Raytracing + Metode trasiranja putem zrake - - Export camera to povray... - Izvoz kamere u povray ... + Export camera to povray... + Izvoz kamere u povray ... - - Export the camera positon of the active 3D view in PovRay format to a file - Prenesi položaj kamere iz 3D aktivnog prikaza u povray format, u datoteku + Export the camera positon of the active 3D view in PovRay format to a file + Prenesi položaj kamere iz 3D aktivnog prikaza u povray format, u datoteku - - + + CmdRaytracingWritePart - - Raytracing - Metode trasiranja putem zrake + Raytracing + Metode trasiranja putem zrake - - Export part to povray... - Izvoz dijela u povray ... + Export part to povray... + Izvoz dijela u povray ... - - Write the selected Part (object) as a povray file - Napišite odabrani dio (objekta) kao povray datoteke + Write the selected Part (object) as a povray file + Napišite odabrani dio (objekta) kao povray datoteke - - + + CmdRaytracingWriteView - - - - No perspective camera - + No perspective camera + Nema perspektivne kamere - - - - The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. Do you want to continue? - + Trenutni prikaz kamere nije perspektivan, a time i rezultat povray slike kasnije može izgledati drugačije od onoga što očekujete. +Želite li nastaviti? - - Raytracing - Metode trasiranja putem zrake + Raytracing + Metode trasiranja putem zrake - - Export view to povray... - Pogled u povray ... + Export view to povray... + Pogled u povray ... - - Write the active 3D view with camera and all its content to a povray file - Napišite aktivni 3D prikaz s kamerom i sve njezine sadržaje u povray datoteke + Write the active 3D view with camera and all its content to a povray file + Napišite aktivni 3D prikaz s kamerom i sve njezine sadržaje u povray datoteke - - + + QObject - - - - - Povray(*.pov) - Povray (*. pov) + Povray(*.pov) + Povray (*. pov) - - - - - All Files (*.*) - Sve datoteke (*.*) + All Files (*.*) + Sve datoteke (*.*) - - - - - Export page - Izvezi stranicu + Export page + Izvezi stranicu - - - Wrong selection - Pogrešan odabir + Wrong selection + Pogrešan odabir - - Select a Part object. - Odaberite dio objekta. + Select a Part object. + Odaberite dio objekta. - - - No Povray project to insert - Nema Povray projekta za umetanje + No Povray project to insert + Nema Povray projekta za umetanje - - Create a Povray project to insert a view. - Napravite Povray projekt za umetanje pogleda. + Create a Povray project to insert a view. + Napravite Povray projekt za umetanje pogleda. - - Select a Povray project to insert the view. - + Select a Povray project to insert the view. + Odaberi Povray projekt za umetnuti pogled. - - Select one Povray project object. - Odaberite jedan objekt Povray projekta. + Select one Povray project object. + Odaberite jedan objekt Povray projekta. - - + + RaytracingGui::DlgSettingsRay - - Raytracing - Metode trasiranja putem zrake + + Raytracing + Metode trasiranja putem zrake - - Directories - Mape + Directories + Mape - - Default Project dir: - Osnovni Projekt dir: + Default Project dir: + Osnovni Projekt dir: - - Camera file name: - Kamera, ime datoteke: + Camera file name: + Kamera, ime datoteke: - - Part file name: - Dio naziva datoteke: + Part file name: + Dio naziva datoteke: - - TempCamera.inc - TempCamera.inc + TempCamera.inc + TempCamera.inc - - TempPart.inc - TempPart.inc + TempPart.inc + TempPart.inc - - Mesh export settings - Izvoz postavki mreže + Mesh export settings + Izvoz postavki mreže - - max mesh deviation: - max devijacija mreže: + max mesh deviation: + max devijacija mreže: - - Do not calculate vertex normals - Ne izračunati vrh normale + Do not calculate vertex normals + Ne izračunati vrh normale - - Write u,v coordinates - Napišite u,v koordinate + Write u,v coordinates + Napišite u,v koordinate - - + + Workbench - - &Raytracing - Metode trasiranja putem zrake + + &Raytracing + Metode trasiranja putem zrake - + diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_hu.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_hu.qm index 25587e15f..eda05a7ec 100644 Binary files a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_hu.qm and b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_hu.qm differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_hu.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_hu.ts index 705a34ee4..e8d2cb7e7 100644 --- a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_hu.ts +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_hu.ts @@ -1,252 +1,199 @@ - - + + CmdRaytracingExportProject - - File - Fájl + + File + Fájl - - &Export project... - &Export projekt ... + &Export project... + &Export projekt ... - - Export the Povray project file - Povray-project fájl exportálása + Export the Povray project file + Povray-project fájl exportálása - - + + CmdRaytracingNewPartSegment - - Raytracing - Sugárkövetés + Raytracing + Sugárkövetés - - Insert part - Alkatrész beillesztése + Insert part + Alkatrész beillesztése - - Insert a new part object into a Povray project - Új alkatrész objektum beillesztése egy Povray pojekt-be + Insert a new part object into a Povray project + Új alkatrész objektum beillesztése egy Povray pojekt-be - - + + CmdRaytracingNewPovrayProject - - Raytracing - Sugárkövetés + Raytracing + Sugárkövetés - - New Povray project - Új Povray projekt + New Povray project + Új Povray projekt - - Insert new Povray project into the document - Új Povray projekt beszúrása a dokumentumba + Insert new Povray project into the document + Új Povray projekt beszúrása a dokumentumba - - + + CmdRaytracingWriteCamera - - Raytracing - Sugárkövetés + Raytracing + Sugárkövetés - - Export camera to povray... - Kamera exportálása Povray-be... + Export camera to povray... + Kamera exportálása Povray-be... - - Export the camera positon of the active 3D view in PovRay format to a file - Az aktuális 3D-s nézet kamera pozícióját exportálja Povray formában egy fájlba + Export the camera positon of the active 3D view in PovRay format to a file + Az aktuális 3D-s nézet kamera pozícióját exportálja Povray formában egy fájlba - - + + CmdRaytracingWritePart - - Raytracing - Sugárkövetés + Raytracing + Sugárkövetés - - Export part to povray... - Alkatrész exportálása Povray-be ... + Export part to povray... + Alkatrész exportálása Povray-be ... - - Write the selected Part (object) as a povray file - A kijelölt alkatrész (objektum) kiírása egy povray-fájlként + Write the selected Part (object) as a povray file + A kijelölt alkatrész (objektum) kiírása egy povray-fájlként - - + + CmdRaytracingWriteView - - - - No perspective camera - + No perspective camera + Nincs perspektivikus kamera - - - - The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. Do you want to continue? - + Az aktuális nézet kamera nem perspektívikus és így povray kép nézet eredménye különbözni fog az elvárttól. Folytatni kívánja? - - Raytracing - Sugárkövetés + Raytracing + Sugárkövetés - - Export view to povray... - Nézet exportálása povray-be... + Export view to povray... + Nézet exportálása povray-be... - - Write the active 3D view with camera and all its content to a povray file - Az aktuális 3D nézet minden tartalmának írása egy Povray fájlba + Write the active 3D view with camera and all its content to a povray file + Az aktuális 3D nézet minden tartalmának írása egy Povray fájlba - - + + QObject - - - - - Povray(*.pov) - Povray(*.pov) + Povray(*.pov) + Povray(*.pov) - - - - - All Files (*.*) - Minden fájl (*.*) + All Files (*.*) + Minden fájl (*.*) - - - - - Export page - Oldal exportálása + Export page + Oldal exportálása - - - Wrong selection - Rossz választás + Wrong selection + Rossz választás - - Select a Part object. - Válasszon ki egy alkatrész objektumot. + Select a Part object. + Válasszon ki egy alkatrész objektumot. - - - No Povray project to insert - Nem Povray projekt beszúrása + No Povray project to insert + Nem Povray projekt beszúrása - - Create a Povray project to insert a view. - Hozzon létre egy Povray kivetítést a nézet beszúrás érdekében. + Create a Povray project to insert a view. + Hozzon létre egy Povray kivetítést a nézet beszúrás érdekében. - - Select a Povray project to insert the view. - + Select a Povray project to insert the view. + Jelöljön ki Povray-projektet a nézet beszúrásához. - - Select one Povray project object. - Válasszon ki egy Povray terv objektumot. + Select one Povray project object. + Válasszon ki egy Povray terv objektumot. - - + + RaytracingGui::DlgSettingsRay - - Raytracing - Sugárkövetés + + Raytracing + Sugárkövetés - - Directories - Könyvtárak + Directories + Könyvtárak - - Default Project dir: - Alapértelmezett projekt könyvtár: + Default Project dir: + Alapértelmezett projekt könyvtár: - - Camera file name: - Kamera fájl neve: + Camera file name: + Kamera fájl neve: - - Part file name: - Alkatrész fájlnév: + Part file name: + Alkatrész fájlnév: - - TempCamera.inc - TempCamera.inc + TempCamera.inc + TempCamera.inc - - TempPart.inc - TempPart.inc + TempPart.inc + TempPart.inc - - Mesh export settings - Háló objektum beállítások + Mesh export settings + Háló objektum beállítások - - max mesh deviation: - Max. háló eltérés: + max mesh deviation: + Max. háló eltérés: - - Do not calculate vertex normals - Nem számítson vertex helyzetet + Do not calculate vertex normals + Nem számítson vertex helyzetet - - Write u,v coordinates - u,v-koordináták írása + Write u,v coordinates + u,v-koordináták írása - - + + Workbench - - &Raytracing - Sugáriánynyomvonal + + &Raytracing + Sugáriánynyomvonal - + diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_it.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_it.qm index 84cb5303d..20601ff02 100644 Binary files a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_it.qm and b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_it.qm differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_it.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_it.ts index 1d8dfa07c..ced7e9c22 100644 --- a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_it.ts +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_it.ts @@ -1,252 +1,200 @@ - - + + CmdRaytracingExportProject - - File - File + + File + File - - &Export project... - &Esporta progetto... + &Export project... + &Esporta progetto... - - Export the Povray project file - Esporta il file di progetto Povray + Export the Povray project file + Esporta il file di progetto Povray - - + + CmdRaytracingNewPartSegment - - Raytracing - Raytracing + Raytracing + Raytracing - - Insert part - Inserisci parte + Insert part + Inserisci parte - - Insert a new part object into a Povray project - Inserisci un nuovo oggetto parte in un progetto Povray + Insert a new part object into a Povray project + Inserisci un nuovo oggetto parte in un progetto Povray - - + + CmdRaytracingNewPovrayProject - - Raytracing - Raytracing + Raytracing + Raytracing - - New Povray project - Nuovo progetto Povray + New Povray project + Nuovo progetto Povray - - Insert new Povray project into the document - Inserisce un nuovo progetto Povray nel documento + Insert new Povray project into the document + Inserisce un nuovo progetto Povray nel documento - - + + CmdRaytracingWriteCamera - - Raytracing - Raytracing + Raytracing + Raytracing - - Export camera to povray... - Esporta la camera a povray... + Export camera to povray... + Esporta la camera a povray... - - Export the camera positon of the active 3D view in PovRay format to a file - Esporta la posizione della telecamera della vista 3D attiva in un file in formato PovRay + Export the camera positon of the active 3D view in PovRay format to a file + Esporta la posizione della telecamera della vista 3D attiva in un file in formato PovRay - - + + CmdRaytracingWritePart - - Raytracing - Raytracing + Raytracing + Raytracing - - Export part to povray... - Esporta la parte in povray... + Export part to povray... + Esporta la parte in povray... - - Write the selected Part (object) as a povray file - Scrive la parte selezionata (oggetto) come un file povray + Write the selected Part (object) as a povray file + Scrive la parte selezionata (oggetto) come un file povray - - + + CmdRaytracingWriteView - - - - No perspective camera - + No perspective camera + Nessuna telecamera di prospettiva - - - - The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. Do you want to continue? - + La vista corrente non è in prospettiva e così il risultato dell'immagine povray potrebbe essere diverso da ciò che vi aspettate. +Si desidera continuare? - - Raytracing - Raytracing + Raytracing + Raytracing - - Export view to povray... - Esporta la vista in povray... + Export view to povray... + Esporta la vista in povray... - - Write the active 3D view with camera and all its content to a povray file - Salva la vista 3D attiva con la camera e tutto il suo contenuto in un file povray + Write the active 3D view with camera and all its content to a povray file + Salva la vista 3D attiva con la camera e tutto il suo contenuto in un file povray - - + + QObject - - - - - Povray(*.pov) - Povray (*.pov) + Povray(*.pov) + Povray (*.pov) - - - - - All Files (*.*) - Tutti i file (*.*) + All Files (*.*) + Tutti i file (*.*) - - - - - Export page - Esporta pagina + Export page + Esporta pagina - - - Wrong selection - Selezione errata + Wrong selection + Selezione errata - - Select a Part object. - Seleziona un oggetto Part. + Select a Part object. + Seleziona un oggetto Part. - - - No Povray project to insert - Nessun progetto Povray da inserire + No Povray project to insert + Nessun progetto Povray da inserire - - Create a Povray project to insert a view. - Crea un progetto Povray per inserire una vista. + Create a Povray project to insert a view. + Crea un progetto Povray per inserire una vista. - - Select a Povray project to insert the view. - + Select a Povray project to insert the view. + Seleziona un progetto Povray dove inserire la vista. - - Select one Povray project object. - Seleziona un progetto Povray. + Select one Povray project object. + Seleziona un progetto Povray. - - + + RaytracingGui::DlgSettingsRay - - Raytracing - Raytracing + + Raytracing + Raytracing - - Directories - Cartelle + Directories + Cartelle - - Default Project dir: - Cartella di default del progetto: + Default Project dir: + Cartella di default del progetto: - - Camera file name: - Nome del file della telecamera: + Camera file name: + Nome del file della telecamera: - - Part file name: - Nome del file della parte: + Part file name: + Nome del file della parte: - - TempCamera.inc - TempCamera.inc + TempCamera.inc + TempCamera.inc - - TempPart.inc - TempPart.inc + TempPart.inc + TempPart.inc - - Mesh export settings - Impostazioni di esportazione mesh + Mesh export settings + Impostazioni di esportazione mesh - - max mesh deviation: - Massima deviazione della mesh: + max mesh deviation: + Massima deviazione della mesh: - - Do not calculate vertex normals - Non calcolare le normali ai vertici + Do not calculate vertex normals + Non calcolare le normali ai vertici - - Write u,v coordinates - Salva le coordinate u,v + Write u,v coordinates + Salva le coordinate u,v - - + + Workbench - - &Raytracing - &Raytracing + + &Raytracing + &Raytracing - + diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ja.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ja.qm index a47e3aea6..081b4c16b 100644 Binary files a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ja.qm and b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ja.qm differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ja.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ja.ts index 0f3549d9e..b4f8928fe 100644 --- a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ja.ts +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ja.ts @@ -1,252 +1,200 @@ - - + + CmdRaytracingExportProject - - File - ファイル + + File + ファイル - - &Export project... - プロジェクトをエクスポート (&e)... + &Export project... + プロジェクトをエクスポート (&e)... - - Export the Povray project file - Export the Povray project file + Export the Povray project file + Export the Povray project file - - + + CmdRaytracingNewPartSegment - - Raytracing - レイトレーシング + Raytracing + レイトレーシング - - Insert part - 部品を挿入 + Insert part + 部品を挿入 - - Insert a new part object into a Povray project - Insert a new part object into a Povray project + Insert a new part object into a Povray project + 新しい部品オブジェクトをPovrayプロジェクトに挿入 - - + + CmdRaytracingNewPovrayProject - - Raytracing - レイトレーシング + Raytracing + レイトレーシング - - New Povray project - New Povray project + New Povray project + New Povray project - - Insert new Povray project into the document - Insert new Povray project into the document + Insert new Povray project into the document + Insert new Povray project into the document - - + + CmdRaytracingWriteCamera - - Raytracing - レイトレーシング + Raytracing + レイトレーシング - - Export camera to povray... - カメラをpovrayにエクスポート... + Export camera to povray... + カメラをpovrayにエクスポート... - - Export the camera positon of the active 3D view in PovRay format to a file - Export the camera positon of the active 3D view in PovRay format to a file + Export the camera positon of the active 3D view in PovRay format to a file + Export the camera positon of the active 3D view in PovRay format to a file - - + + CmdRaytracingWritePart - - Raytracing - レイトレーシング + Raytracing + レイトレーシング - - Export part to povray... - 部品をpovray形式でエクスポート... + Export part to povray... + 部品をpovray形式でエクスポート... - - Write the selected Part (object) as a povray file - Write the selected Part (object) as a povray file + Write the selected Part (object) as a povray file + Write the selected Part (object) as a povray file - - + + CmdRaytracingWriteView - - - - No perspective camera - + No perspective camera + No perspective camera - - - - The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. Do you want to continue? - + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. +Do you want to continue? - - Raytracing - レイトレーシング + Raytracing + レイトレーシング - - Export view to povray... - ビューをpovrayにエクスポート... + Export view to povray... + ビューをpovrayにエクスポート... - - Write the active 3D view with camera and all its content to a povray file - Write the active 3D view with camera and all its content to a povray file + Write the active 3D view with camera and all its content to a povray file + Write the active 3D view with camera and all its content to a povray file - - + + QObject - - - - - Povray(*.pov) - Povray(*.pov) + Povray(*.pov) + Povray(*.pov) - - - - - All Files (*.*) - すべてのファイル (*.*) + All Files (*.*) + すべてのファイル (*.*) - - - - - Export page - Export page + Export page + Export page - - - Wrong selection - 誤った選択 + Wrong selection + 誤った選択 - - Select a Part object. - Select a Part object. + Select a Part object. + Select a Part object. - - - No Povray project to insert - No Povray project to insert + No Povray project to insert + No Povray project to insert - - Create a Povray project to insert a view. - Create a Povray project to insert a view. + Create a Povray project to insert a view. + Create a Povray project to insert a view. - - Select a Povray project to insert the view. - + Select a Povray project to insert the view. + Select a Povray project to insert the view. - - Select one Povray project object. - Povrayプロジェクトオブジェクトを1つ選択. + Select one Povray project object. + Povrayプロジェクトオブジェクトを1つ選択. - - + + RaytracingGui::DlgSettingsRay - - Raytracing - レイトレーシング + + Raytracing + レイトレーシング - - Directories - ディレクトリ + Directories + ディレクトリ - - Default Project dir: - Default Project dir: + Default Project dir: + Default Project dir: - - Camera file name: - カメラファイル名: + Camera file name: + カメラファイル名: - - Part file name: - 部品のファイル名: + Part file name: + 部品のファイル名: - - TempCamera.inc - TempCamera.inc + TempCamera.inc + TempCamera.inc - - TempPart.inc - TempPart.inc + TempPart.inc + TempPart.inc - - Mesh export settings - メッシュエクスポート設定 + Mesh export settings + メッシュエクスポート設定 - - max mesh deviation: - メッシュ最大分割数: + max mesh deviation: + メッシュ最大分割数: - - Do not calculate vertex normals - Do not calculate vertex normals + Do not calculate vertex normals + Do not calculate vertex normals - - Write u,v coordinates - Write u,v coordinates + Write u,v coordinates + Write u,v coordinates - - + + Workbench - - &Raytracing - レイトレーシング (&R) + + &Raytracing + レイトレーシング (&R) - + diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_nl.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_nl.qm index 20cb0fc54..e53157ae8 100644 Binary files a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_nl.qm and b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_nl.qm differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_nl.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_nl.ts index 8af781741..f91dfe914 100644 --- a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_nl.ts +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_nl.ts @@ -1,252 +1,200 @@ - - + + CmdRaytracingExportProject - - File - Bestand + + File + Bestand - - &Export project... - &Project exporteren... + &Export project... + &Project exporteren... - - Export the Povray project file - Exporteer het Povray project bestand + Export the Povray project file + Exporteer het Povray project bestand - - + + CmdRaytracingNewPartSegment - - Raytracing - Raytracing + Raytracing + Raytracing - - Insert part - Onderdeel invoegen + Insert part + Onderdeel invoegen - - Insert a new part object into a Povray project - Voeg een nieuw object toe aan een Povray project + Insert a new part object into a Povray project + Voeg een nieuw object toe aan een Povray project - - + + CmdRaytracingNewPovrayProject - - Raytracing - Raytracing + Raytracing + Raytracing - - New Povray project - Nieuw Povray project + New Povray project + Nieuw Povray project - - Insert new Povray project into the document - Nieuw Povray project in het document invoegen + Insert new Povray project into the document + Nieuw Povray project in het document invoegen - - + + CmdRaytracingWriteCamera - - Raytracing - Raytracing + Raytracing + Raytracing - - Export camera to povray... - Exporteer camera naar Povray... + Export camera to povray... + Exporteer camera naar Povray... - - Export the camera positon of the active 3D view in PovRay format to a file - Exporteer de camera positie van het actieve 3D-aanzicht in PovRay-formaat naar een bestand + Export the camera positon of the active 3D view in PovRay format to a file + Exporteer de camera positie van het actieve 3D-aanzicht in PovRay-formaat naar een bestand - - + + CmdRaytracingWritePart - - Raytracing - Raytracing + Raytracing + Raytracing - - Export part to povray... - Export object naar povray ... + Export part to povray... + Export object naar povray ... - - Write the selected Part (object) as a povray file - Schrijf het geselecteerde object weg als een Povray bestand + Write the selected Part (object) as a povray file + Schrijf het geselecteerde object weg als een Povray bestand - - + + CmdRaytracingWriteView - - - - No perspective camera - + No perspective camera + No perspective camera - - - - The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. Do you want to continue? - + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. +Do you want to continue? - - Raytracing - Raytracing + Raytracing + Raytracing - - Export view to povray... - Aanzicht exporteren naar Povray... + Export view to povray... + Aanzicht exporteren naar Povray... - - Write the active 3D view with camera and all its content to a povray file - Schrijf het actieve 3D-aanzicht met camera en al haar inhoud naar een Povray bestand + Write the active 3D view with camera and all its content to a povray file + Schrijf het actieve 3D-aanzicht met camera en al haar inhoud naar een Povray bestand - - + + QObject - - - - - Povray(*.pov) - Povray (*.pov) + Povray(*.pov) + Povray (*.pov) - - - - - All Files (*.*) - Alle bestanden (*.*) + All Files (*.*) + Alle bestanden (*.*) - - - - - Export page - Exporteer pagina + Export page + Exporteer pagina - - - Wrong selection - Verkeerde selectie + Wrong selection + Verkeerde selectie - - Select a Part object. - Selecteer een object. + Select a Part object. + Selecteer een object. - - - No Povray project to insert - Geen Povray project om in te voegen + No Povray project to insert + Geen Povray project om in te voegen - - Create a Povray project to insert a view. - Maak een Povray-project om aan aanzicht toe te voegen. + Create a Povray project to insert a view. + Maak een Povray-project om aan aanzicht toe te voegen. - - Select a Povray project to insert the view. - + Select a Povray project to insert the view. + Select a Povray project to insert the view. - - Select one Povray project object. - Selecteer een Povray projectobject. + Select one Povray project object. + Selecteer een Povray projectobject. - - + + RaytracingGui::DlgSettingsRay - - Raytracing - Raytracing + + Raytracing + Raytracing - - Directories - Mappen + Directories + Mappen - - Default Project dir: - Standaard Projectmap: + Default Project dir: + Standaard Projectmap: - - Camera file name: - Camera-bestand naam: + Camera file name: + Camera-bestand naam: - - Part file name: - Onderdeel bestandsnaam: + Part file name: + Onderdeel bestandsnaam: - - TempCamera.inc - TempCamera.inc + TempCamera.inc + TempCamera.inc - - TempPart.inc - TempPart.inc + TempPart.inc + TempPart.inc - - Mesh export settings - Maas exportinstellingen + Mesh export settings + Maas exportinstellingen - - max mesh deviation: - Max. maas-afwijking: + max mesh deviation: + Max. maas-afwijking: - - Do not calculate vertex normals - Bereken niet de vertex-normalen + Do not calculate vertex normals + Bereken niet de vertex-normalen - - Write u,v coordinates - Schrijf u,v-coördinaten + Write u,v coordinates + Schrijf u,v-coördinaten - - + + Workbench - - &Raytracing - &Raytracing + + &Raytracing + &Realistische Weergave - + diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_no.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_no.qm index 751c17f9f..d71b3597a 100644 Binary files a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_no.qm and b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_no.qm differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_no.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_no.ts index 04a1d3b0d..f8b709a27 100644 --- a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_no.ts +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_no.ts @@ -1,252 +1,200 @@ - - + + CmdRaytracingExportProject - - File - Fil + + File + Fil - - &Export project... - &Eksporter prosjekt... + &Export project... + &Eksporter prosjekt... - - Export the Povray project file - Eksporter Povray-prosjektfilen + Export the Povray project file + Eksporter Povray-prosjektfilen - - + + CmdRaytracingNewPartSegment - - Raytracing - Strålesporing + Raytracing + Strålesporing - - Insert part - Sett inn et komponent + Insert part + Sett inn et komponent - - Insert a new part object into a Povray project - Sett inn et nytt komponent (objekt) i et Povray-prosjekt + Insert a new part object into a Povray project + Sett inn et nytt komponent (objekt) i et Povray-prosjekt - - + + CmdRaytracingNewPovrayProject - - Raytracing - Strålesporing + Raytracing + Strålesporing - - New Povray project - Nytt Povray-prosjekt + New Povray project + Nytt Povray-prosjekt - - Insert new Povray project into the document - Sett inn nytt Povray-prosjekt i dokumentet + Insert new Povray project into the document + Sett inn nytt Povray-prosjekt i dokumentet - - + + CmdRaytracingWriteCamera - - Raytracing - Strålesporing + Raytracing + Strålesporing - - Export camera to povray... - Export camera to povray... + Export camera to povray... + Export camera to povray... - - Export the camera positon of the active 3D view in PovRay format to a file - Eksporter kameraposisjon for aktiv 3D-visning til Povray-format i en fil + Export the camera positon of the active 3D view in PovRay format to a file + Eksporter kameraposisjon for aktiv 3D-visning til Povray-format i en fil - - + + CmdRaytracingWritePart - - Raytracing - Strålesporing + Raytracing + Strålesporing - - Export part to povray... - Eksporter komponent til povray... + Export part to povray... + Eksporter komponent til povray... - - Write the selected Part (object) as a povray file - Skrive det merkede komponentet (objekt) som en povray-fil + Write the selected Part (object) as a povray file + Skrive det merkede komponentet (objekt) som en povray-fil - - + + CmdRaytracingWriteView - - - - No perspective camera - + No perspective camera + No perspective camera - - - - The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. Do you want to continue? - + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. +Do you want to continue? - - Raytracing - Strålesporing + Raytracing + Strålesporing - - Export view to povray... - Eksporter visning til povray... + Export view to povray... + Eksporter visning til povray... - - Write the active 3D view with camera and all its content to a povray file - Skriv aktiv 3D-visning med kameraet og alt dets innhold til en Povray fil + Write the active 3D view with camera and all its content to a povray file + Skriv aktiv 3D-visning med kameraet og alt dets innhold til en Povray fil - - + + QObject - - - - - Povray(*.pov) - Povray (*. pov) + Povray(*.pov) + Povray (*. pov) - - - - - All Files (*.*) - Alle filer (*.*) + All Files (*.*) + Alle filer (*.*) - - - - - Export page - Eksporter side + Export page + Eksporter side - - - Wrong selection - Feil valg + Wrong selection + Feil valg - - Select a Part object. - Velg et komponentobjekt. + Select a Part object. + Velg et komponentobjekt. - - - No Povray project to insert - Ingen Povray-prosjekt å sette inn + No Povray project to insert + Ingen Povray-prosjekt å sette inn - - Create a Povray project to insert a view. - Lag et Povray-prosjekt for å sette inn i en visning. + Create a Povray project to insert a view. + Lag et Povray-prosjekt for å sette inn i en visning. - - Select a Povray project to insert the view. - + Select a Povray project to insert the view. + Select a Povray project to insert the view. - - Select one Povray project object. - Velg et Povray-prosjektobjekt. + Select one Povray project object. + Velg et Povray-prosjektobjekt. - - + + RaytracingGui::DlgSettingsRay - - Raytracing - Strålesporing + + Raytracing + Strålesporing - - Directories - Kataloger + Directories + Kataloger - - Default Project dir: - Standard prosjektkatalog: + Default Project dir: + Standard prosjektkatalog: - - Camera file name: - Kamerafilnavn: + Camera file name: + Kamerafilnavn: - - Part file name: - Komponentfilnavn: + Part file name: + Komponentfilnavn: - - TempCamera.inc - TempCamera.inc + TempCamera.inc + TempCamera.inc - - TempPart.inc - TempPart.inc + TempPart.inc + TempPart.inc - - Mesh export settings - Maskeeksportinnstillinger + Mesh export settings + Maskeeksportinnstillinger - - max mesh deviation: - Maks maske avvik: + max mesh deviation: + Maks maske avvik: - - Do not calculate vertex normals - Ikke beregn toppunkt normaler + Do not calculate vertex normals + Ikke beregn toppunkt normaler - - Write u,v coordinates - Skriv u, v-koordinater + Write u,v coordinates + Skriv u, v-koordinater - - + + Workbench - - &Raytracing - &Strålesporing + + &Raytracing + &Strålesporing - + diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pl.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pl.qm index 7e398191b..abc2f1def 100644 Binary files a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pl.qm and b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pl.qm differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pl.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pl.ts index b1fbecd7b..8752cf7ce 100644 --- a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pl.ts +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pl.ts @@ -1,252 +1,199 @@ - - + + CmdRaytracingExportProject - - File - Plik + + File + Plik - - &Export project... - &Export project... + &Export project... + &Eksportuj projekt... - - Export the Povray project file - Eksport pliku projektu Povray + Export the Povray project file + Eksport pliku projektu Povray - - + + CmdRaytracingNewPartSegment - - Raytracing - Raytracing + Raytracing + Raytracing - - Insert part - Wstaw część + Insert part + Wstaw część - - Insert a new part object into a Povray project - Wstaw nowy obiekt do projektu Povray + Insert a new part object into a Povray project + Wstaw nowy obiekt do projektu Povray - - + + CmdRaytracingNewPovrayProject - - Raytracing - Raytracing + Raytracing + Raytracing - - New Povray project - Nowy projekt Povray + New Povray project + Nowy projekt Povray - - Insert new Povray project into the document - Wstaw nowy projekt Povray do dokumentu + Insert new Povray project into the document + Wstaw nowy projekt Povray do dokumentu - - + + CmdRaytracingWriteCamera - - Raytracing - Raytracing + Raytracing + Raytracing - - Export camera to povray... - Eksport kamery do Povray... + Export camera to povray... + Eksport kamery do Povray... - - Export the camera positon of the active 3D view in PovRay format to a file - Eksport kamery aktywnego widoku Povray do pliku + Export the camera positon of the active 3D view in PovRay format to a file + Eksport kamery aktywnego widoku Povray do pliku - - + + CmdRaytracingWritePart - - Raytracing - Raytracing + Raytracing + Raytracing - - Export part to povray... - Eksport obiektu do Povray... + Export part to povray... + Eksport obiektu do Povray... - - Write the selected Part (object) as a povray file - Zapisz wybrany obiekt jako plik Povray + Write the selected Part (object) as a povray file + Zapisz wybrany obiekt jako plik Povray - - + + CmdRaytracingWriteView - - - - No perspective camera - + No perspective camera + Brak podglądu perspektywy - - - - The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. Do you want to continue? - + Obecny widok to nie perspektywa. Obraz povray może wyglądać inaczej niż się tego spodziewasz. Czy chcesz kontynuować? - - Raytracing - Raytracing + Raytracing + Raytracing - - Export view to povray... - Eksport widoku do Povray... + Export view to povray... + Eksport widoku do Povray... - - Write the active 3D view with camera and all its content to a povray file - Zapisz aktywny widok 3D wraz z zawartością do pliku Povray + Write the active 3D view with camera and all its content to a povray file + Zapisz aktywny widok 3D wraz z zawartością do pliku Povray - - + + QObject - - - - - Povray(*.pov) - Povray (*. pov) + Povray(*.pov) + Povray (*. pov) - - - - - All Files (*.*) - Wszystkie pliki (*.*) + All Files (*.*) + Wszystkie pliki (*.*) - - - - - Export page - Wyślij stronę + Export page + Wyślij stronę - - - Wrong selection - Niewłaściwy wybór + Wrong selection + Niewłaściwy wybór - - Select a Part object. - Wybierz stronę. + Select a Part object. + Wybierz stronę. - - - No Povray project to insert - Brak obiektu Povray do wstawienia + No Povray project to insert + Brak obiektu Povray do wstawienia - - Create a Povray project to insert a view. - Utwórz projekt Povray aby wstawić widok + Create a Povray project to insert a view. + Utwórz projekt Povray aby wstawić widok - - Select a Povray project to insert the view. - + Select a Povray project to insert the view. + Wybierz projekt Povray aby wstawić widok. - - Select one Povray project object. - Wybierz jeden obiekt projektu Povray + Select one Povray project object. + Wybierz jeden obiekt projektu Povray - - + + RaytracingGui::DlgSettingsRay - - Raytracing - Raytracing + + Raytracing + Raytracing - - Directories - Foldery: + Directories + Foldery: - - Default Project dir: - Domyślny folder Projektu: + Default Project dir: + Domyślny folder Projektu: - - Camera file name: - Nazwa pliku Kamery: + Camera file name: + Nazwa pliku Kamery: - - Part file name: - Nazwa pliku Obiektu: + Part file name: + Nazwa pliku Obiektu: - - TempCamera.inc - TempCamera.inc + TempCamera.inc + TempCamera.inc - - TempPart.inc - TempPart.inc + TempPart.inc + TempPart.inc - - Mesh export settings - Ustawienia eksportu siatki + Mesh export settings + Ustawienia eksportu siatki - - max mesh deviation: - Max. odchylenie siatki: + max mesh deviation: + Max. odchylenie siatki: - - Do not calculate vertex normals - Nie przeliczaj 'normalnych' wierzchołków + Do not calculate vertex normals + Nie przeliczaj 'normalnych' wierzchołków - - Write u,v coordinates - Zapisz współrzędne U,V + Write u,v coordinates + Zapisz współrzędne U,V - - + + Workbench - - &Raytracing - Raytracing + + &Raytracing + &Raytracing - + diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pt-BR.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pt-BR.qm new file mode 100644 index 000000000..8f5079a25 Binary files /dev/null and b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pt-BR.qm differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pt-BR.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pt-BR.ts new file mode 100644 index 000000000..8a49ab0a3 --- /dev/null +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pt-BR.ts @@ -0,0 +1,199 @@ + + + + + CmdRaytracingExportProject + + + File + Arquivo + + + &Export project... + &Exportar projeto... + + + Export the Povray project file + Exportar o arquivo de projeto Povray + + + + CmdRaytracingNewPartSegment + + Raytracing + Raytracing + + + Insert part + Inserir Part + + + Insert a new part object into a Povray project + Inserir um novo objeto Part em um projeto Povray + + + + CmdRaytracingNewPovrayProject + + Raytracing + Raytracing + + + New Povray project + Novo projeto Povray + + + Insert new Povray project into the document + Inserir novo projeto Povray no documento + + + + CmdRaytracingWriteCamera + + Raytracing + Raytracing + + + Export camera to povray... + Exportar a câmera para povray... + + + Export the camera positon of the active 3D view in PovRay format to a file + Exportar a posição da câmera da vista 3D ativa no formato PovRay para um arquivo + + + + CmdRaytracingWritePart + + Raytracing + Raytracing + + + Export part to povray... + Exporte parte para povray... + + + Write the selected Part (object) as a povray file + Gravar a parte selecionada (objeto) como um arquivo povray + + + + CmdRaytracingWriteView + + No perspective camera + Nenhuma câmera de perspectiva + + + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. +Do you want to continue? + A câmera atual não está em modo perspectiva, sendo assim a imagem resultante do povray pode parecer diferente do que você espera. Você quer continuar? + + + Raytracing + Raytracing + + + Export view to povray... + Exportar vista para povray... + + + Write the active 3D view with camera and all its content to a povray file + Gravar a vista 3D ativa com câmera e todo o seu conteúdo em um arquivo povray + + + + QObject + + Povray(*.pov) + Povray (*.pov) + + + All Files (*.*) + Todos os arquivos (*.*) + + + Export page + Exportar página + + + Wrong selection + Seleção errada + + + Select a Part object. + Selecione um objeto Part. + + + No Povray project to insert + Nenhum projeto Povray para inserir + + + Create a Povray project to insert a view. + Criar um projeto Povray para inserir uma vista. + + + Select a Povray project to insert the view. + Selecione um projeto do Povray para inserir uma vista. + + + Select one Povray project object. + Selecione um objeto de projeto Povray. + + + + RaytracingGui::DlgSettingsRay + + + Raytracing + Raytracing + + + Directories + Diretórios + + + Default Project dir: + Pasta de projeto padrão: + + + Camera file name: + Nome de arquivo de câmera: + + + Part file name: + Nome do arquivo de Part: + + + TempCamera.inc + TempCamera.inc + + + TempPart.inc + TempPart.inc + + + Mesh export settings + Configurações de exportação de malha + + + max mesh deviation: + desvio máximo de malha: + + + Do not calculate vertex normals + Não calcular normais de vértices + + + Write u,v coordinates + Gravar coordenadas u,v + + + + Workbench + + + &Raytracing + &Raytracing + + + diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pt.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pt.qm deleted file mode 100644 index 6b425cc13..000000000 Binary files a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pt.qm and /dev/null differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pt.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pt.ts deleted file mode 100644 index 72f62e9a3..000000000 --- a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_pt.ts +++ /dev/null @@ -1,252 +0,0 @@ - - - - - CmdRaytracingExportProject - - - File - Arquivo - - - - &Export project... - &Exportar projeto... - - - - Export the Povray project file - Exportar o arquivo de projeto Povray - - - - CmdRaytracingNewPartSegment - - - Raytracing - Raytracing - - - - Insert part - Inserir Part - - - - Insert a new part object into a Povray project - Inserir um novo objeto Part em um projeto Povray - - - - CmdRaytracingNewPovrayProject - - - Raytracing - Raytracing - - - - New Povray project - Novo projeto Povray - - - - Insert new Povray project into the document - Inserir novo projeto Povray no documento - - - - CmdRaytracingWriteCamera - - - Raytracing - Raytracing - - - - Export camera to povray... - Exportar a câmera para povray... - - - - Export the camera positon of the active 3D view in PovRay format to a file - Exportar a posição da câmera da vista 3D ativa no formato PovRay para um arquivo - - - - CmdRaytracingWritePart - - - Raytracing - Raytracing - - - - Export part to povray... - Exporte parte para povray... - - - - Write the selected Part (object) as a povray file - Gravar a parte selecionada (objeto) como um arquivo povray - - - - CmdRaytracingWriteView - - - - - No perspective camera - - - - - - - The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. -Do you want to continue? - - - - - Raytracing - Raytracing - - - - Export view to povray... - Exportar vista para povray... - - - - Write the active 3D view with camera and all its content to a povray file - Gravar a vista 3D ativa com câmera e todo o seu conteúdo em um arquivo povray - - - - QObject - - - - - - Povray(*.pov) - Povray (*.pov) - - - - - - - All Files (*.*) - Todos os arquivos (*.*) - - - - - - - Export page - Exportar página - - - - - Wrong selection - Seleção errada - - - - Select a Part object. - Selecione um objeto Part. - - - - - No Povray project to insert - Nenhum projeto Povray para inserir - - - - Create a Povray project to insert a view. - Criar um projeto Povray para inserir uma vista. - - - - Select a Povray project to insert the view. - - - - - Select one Povray project object. - Selecione um objeto de projeto Povray. - - - - RaytracingGui::DlgSettingsRay - - - Raytracing - Raytracing - - - - Directories - Diretórios - - - - Default Project dir: - Pasta de projeto padrão: - - - - Camera file name: - Nome de arquivo de câmera: - - - - Part file name: - Nome do arquivo de Part: - - - - TempCamera.inc - TempCamera.inc - - - - TempPart.inc - TempPart.inc - - - - Mesh export settings - Configurações de exportação de malha - - - - max mesh deviation: - desvio máximo de malha: - - - - Do not calculate vertex normals - Não calcular normais de vértices - - - - Write u,v coordinates - Gravar coordenadas u,v - - - - Workbench - - - &Raytracing - &Raytracing - - - diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ro.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ro.qm new file mode 100644 index 000000000..141d689e0 Binary files /dev/null and b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ro.qm differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ro.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ro.ts new file mode 100644 index 000000000..173d9a0fb --- /dev/null +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ro.ts @@ -0,0 +1,199 @@ + + + + + CmdRaytracingExportProject + + + File + Fişier + + + &Export project... + &Exportă proiectul... + + + Export the Povray project file + Exportaţi fişierul proiectului Povray + + + + CmdRaytracingNewPartSegment + + Raytracing + Raytracing + + + Insert part + Inseraţi o componentă + + + Insert a new part object into a Povray project + Inseraţi un nou obiect componentă într-un proiect de Povray + + + + CmdRaytracingNewPovrayProject + + Raytracing + Raytracing + + + New Povray project + Proiect nou Povray + + + Insert new Povray project into the document + Inseraţi un nou proiect Povray în document + + + + CmdRaytracingWriteCamera + + Raytracing + Raytracing + + + Export camera to povray... + Exportaţi camera în povray... + + + Export the camera positon of the active 3D view in PovRay format to a file + Exportaţi poziţia camerei vizualizării 3D active în format PovRay într-un fişier + + + + CmdRaytracingWritePart + + Raytracing + Raytracing + + + Export part to povray... + Exportaţi componentă în povray... + + + Write the selected Part (object) as a povray file + Scrie componenta (obiectul) selectată ca un fişier povray + + + + CmdRaytracingWriteView + + No perspective camera + Nici o camera cu perspectivă + + + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. +Do you want to continue? + Camera curentă nu este perspectivă şi astfel rezultatul imaginii povray ar putea să arate diferit de ceea ce vă aşteptaţi. Doriţi să continuaţi? + + + Raytracing + Raytracing + + + Export view to povray... + Exportaţi vizualizarea în povray... + + + Write the active 3D view with camera and all its content to a povray file + Scrie vederea 3D activă şi tot conţinutul ei într-un fişier povray + + + + QObject + + Povray(*.pov) + Povray(*.pov) + + + All Files (*.*) + Toate fișierele (*.*) + + + Export page + Exportă pagina + + + Wrong selection + Selecţie greşită + + + Select a Part object. + Selecteaza un obiect tip piesă + + + No Povray project to insert + Nici un proiect Povray pentru a fi inserat + + + Create a Povray project to insert a view. + Creaţi un proiect Povray pentru a insera o vizualizare. + + + Select a Povray project to insert the view. + Selectaţi un proiect de Povray a insera vizualizarea. + + + Select one Povray project object. + Selectaţi un obiect de proiect Povray. + + + + RaytracingGui::DlgSettingsRay + + + Raytracing + Raytracing + + + Directories + Directoare + + + Default Project dir: + Directorul implicit al proiectului: + + + Camera file name: + Numele fişierului camerei: + + + Part file name: + Numele fişierului pentru componentă: + + + TempCamera.inc + TempCamera.inc + + + TempPart.inc + TempPart.inc + + + Mesh export settings + Mesh export settings + + + max mesh deviation: + max mesh deviation: + + + Do not calculate vertex normals + Nu calcula normalele pentru vertex-uri + + + Write u,v coordinates + Scrie coordonatele u,v + + + + Workbench + + + &Raytracing + &Raytracing + + + diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ru.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ru.qm index 313da1d11..f39bce5f7 100644 Binary files a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ru.qm and b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ru.qm differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ru.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ru.ts index 386ffa277..855e77aa7 100644 --- a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ru.ts +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_ru.ts @@ -1,252 +1,200 @@ - - + + CmdRaytracingExportProject - - File - Файл + + File + Файл - - &Export project... - & Экспортировать проект... + &Export project... + &Экспортировать проект... - - Export the Povray project file - Экспорт файлов Povray проекта + Export the Povray project file + Экспорт файлов проекта POV-Ray - - + + CmdRaytracingNewPartSegment - - Raytracing - Трасcировщик лучей + Raytracing + Трасcировщик лучей - - Insert part - Вставить часть + Insert part + Вставить деталь - - Insert a new part object into a Povray project - Вставить новый объект в проекте Povray + Insert a new part object into a Povray project + Вставить новый объект в проект POV-Ray - - + + CmdRaytracingNewPovrayProject - - Raytracing - Трасcировщик лучей + Raytracing + Трасcировщик лучей - - New Povray project - Новый проект Povray + New Povray project + Новый проект POV-Ray - - Insert new Povray project into the document - Вставка нового проекта Povray в документ + Insert new Povray project into the document + Вставка нового проекта POV-Ray в документ - - + + CmdRaytracingWriteCamera - - Raytracing - Трасcировщик лучей + Raytracing + Трасcировщик лучей - - Export camera to povray... - Экспорт камеры в Povray ... + Export camera to povray... + Экспорт камеры в Povray ... - - Export the camera positon of the active 3D view in PovRay format to a file - Экспорт положения камеры текущего 3D-вида в файл формата PovRay + Export the camera positon of the active 3D view in PovRay format to a file + Экспорт положения камеры текущего 3D-вида в файл формата POV-Ray - - + + CmdRaytracingWritePart - - Raytracing - Трасcировщик лучей + Raytracing + Трасcировщик лучей - - Export part to povray... - Экспортировать деталь в Povray ... + Export part to povray... + Экспортировать деталь в POV-Ray... - - Write the selected Part (object) as a povray file - Записать выбранную деталь (объект) в Povray файл + Write the selected Part (object) as a povray file + Записать выбранную деталь (объект) в файл POV-Ray - - + + CmdRaytracingWriteView - - - - No perspective camera - + No perspective camera + No perspective camera - - - - The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. Do you want to continue? - + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. +Do you want to continue? - - Raytracing - Трасcировщик лучей + Raytracing + Трасcировщик лучей - - Export view to povray... - Экспортировать вид в Povray ... + Export view to povray... + Экспортировать вид в POV-Ray... - - Write the active 3D view with camera and all its content to a povray file - Записать текущий 3D-вид камеры и ее содержимого в Povray-файл + Write the active 3D view with camera and all its content to a povray file + Записать текущий 3D-вид камеры и ее содержимого в файл POV-Ray - - + + QObject - - - - - Povray(*.pov) - Povray (*. pov) + Povray(*.pov) + POV-Ray (*.pov) - - - - - All Files (*.*) - Все файлы (*.*) + All Files (*.*) + Все файлы (*.*) - - - - - Export page - Экспорт страницы + Export page + Экспорт страницы - - - Wrong selection - Неправильное выделение + Wrong selection + Неправильное выделение - - Select a Part object. - Выберите часть. + Select a Part object. + Выберите часть. - - - No Povray project to insert - Нет проекта Povray для вставки + No Povray project to insert + Нет проекта POV-Ray для вставки - - Create a Povray project to insert a view. - Создайте проект Povray, чтобы вставить вид. + Create a Povray project to insert a view. + Создайте проект Povray, чтобы вставить вид. - - Select a Povray project to insert the view. - + Select a Povray project to insert the view. + Select a Povray project to insert the view. - - Select one Povray project object. - Выберите один объект Povray проекта. + Select one Povray project object. + Выберите один объект проекта POV-Ray. - - + + RaytracingGui::DlgSettingsRay - - Raytracing - Трасcировщик лучей + + Raytracing + Трасcировщик лучей - - Directories - Каталоги + Directories + Каталоги - - Default Project dir: - По умолчанию каталог проекта: + Default Project dir: + По умолчанию каталог проекта: - - Camera file name: - Название фото-файла: + Camera file name: + Название фото-файла: - - Part file name: - Часть имени файла: + Part file name: + Имя файла детали: - - TempCamera.inc - TempCamera.inc + TempCamera.inc + TempCamera.inc - - TempPart.inc - TempPart.inc + TempPart.inc + TempPart.inc - - Mesh export settings - Экспорт настроек сетки + Mesh export settings + Экспорт настроек сетки - - max mesh deviation: - максимальное отклонение сетки: + max mesh deviation: + максимальное отклонение сетки: - - Do not calculate vertex normals - Не вычислять нормалей вершины + Do not calculate vertex normals + Не вычислять нормалей вершины - - Write u,v coordinates - Написать u, v координаты + Write u,v coordinates + Написать u, v координаты - - + + Workbench - - &Raytracing - &Трасировщик лучей + + &Raytracing + &Трассировка лучей - + diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_se.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_se.qm deleted file mode 100644 index 3202d8cfc..000000000 Binary files a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_se.qm and /dev/null differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_se.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_se.ts deleted file mode 100644 index b060e0550..000000000 --- a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_se.ts +++ /dev/null @@ -1,252 +0,0 @@ - - - - - CmdRaytracingExportProject - - - File - Fil - - - - &Export project... - &Exportera projekt... - - - - Export the Povray project file - Exportera Povray projektfilen - - - - CmdRaytracingNewPartSegment - - - Raytracing - Rendering - - - - Insert part - Infoga del - - - - Insert a new part object into a Povray project - Sätt i ett nytt Del objekt i ett Povray projekt - - - - CmdRaytracingNewPovrayProject - - - Raytracing - Rendering - - - - New Povray project - Nytt Povray projekt - - - - Insert new Povray project into the document - Infoga nytt Povray projekt i dokumentet - - - - CmdRaytracingWriteCamera - - - Raytracing - Rendering - - - - Export camera to povray... - Exportera kameran till povray ... - - - - Export the camera positon of the active 3D view in PovRay format to a file - Exportera kamerans position i den aktiva 3D-vyn i povray format till en fil - - - - CmdRaytracingWritePart - - - Raytracing - Rendering - - - - Export part to povray... - Exportera Del till povray ... - - - - Write the selected Part (object) as a povray file - Skriv den markerade Delen (objekt) som en povray fil - - - - CmdRaytracingWriteView - - - - - No perspective camera - - - - - - - The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. -Do you want to continue? - - - - - Raytracing - Rendering - - - - Export view to povray... - Exportera vy till povray... - - - - Write the active 3D view with camera and all its content to a povray file - Skriv den aktiva 3D vyn med kameraposition och allt dess innehåll till en povray fil - - - - QObject - - - - - - Povray(*.pov) - Povray (*.POV) - - - - - - - All Files (*.*) - Alla filer (*.*) - - - - - - - Export page - Exportera sida - - - - - Wrong selection - Fel val - - - - Select a Part object. - Välj ett Del objekt. - - - - - No Povray project to insert - Inget Povray projekt att infoga - - - - Create a Povray project to insert a view. - Skapa ett Povray projekt för att infoga en vy. - - - - Select a Povray project to insert the view. - - - - - Select one Povray project object. - Välj ett Povray projekt objekt. - - - - RaytracingGui::DlgSettingsRay - - - Raytracing - Rendering - - - - Directories - Kataloger - - - - Default Project dir: - Standard-projektkatalog: - - - - Camera file name: - Kamera-filnamn: - - - - Part file name: - Del filnamn: - - - - TempCamera.inc - TempCamera.inc - - - - TempPart.inc - TempPart.inc - - - - Mesh export settings - Nät exportinställningar - - - - max mesh deviation: - Max nätdeviation: - - - - Do not calculate vertex normals - Beräkna inte hörn normaler - - - - Write u,v coordinates - Skriv u,v koordinater - - - - Workbench - - - &Raytracing - &Rendering - - - diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_sk.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_sk.qm new file mode 100644 index 000000000..d10808750 Binary files /dev/null and b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_sk.qm differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_sk.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_sk.ts new file mode 100644 index 000000000..e0919a3bc --- /dev/null +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_sk.ts @@ -0,0 +1,200 @@ + + + + + CmdRaytracingExportProject + + + File + Súbor + + + &Export project... + &Export projektu ... + + + Export the Povray project file + Exportuj Povray projektový súbor + + + + CmdRaytracingNewPartSegment + + Raytracing + Sledovanie lúča + + + Insert part + Vložiť dielec + + + Insert a new part object into a Povray project + Vložte nový objekt dielec do projektu Povray + + + + CmdRaytracingNewPovrayProject + + Raytracing + Sledovanie lúča + + + New Povray project + Nový projekt Povray + + + Insert new Povray project into the document + Vložiť nový Povray projekt do dokumentu + + + + CmdRaytracingWriteCamera + + Raytracing + Sledovanie lúča + + + Export camera to povray... + Exportuj kameru do Povray... + + + Export the camera positon of the active 3D view in PovRay format to a file + Exportuj pozíciu kamery aktívneho 3D pohľadu do súboru formátu Povray + + + + CmdRaytracingWritePart + + Raytracing + Sledovanie lúča + + + Export part to povray... + Exportuj dielec do Povray... + + + Write the selected Part (object) as a povray file + Uložiť vybraný dielec (objekt) ako súbor povray + + + + CmdRaytracingWriteView + + No perspective camera + No perspective camera + + + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. +Do you want to continue? + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. +Do you want to continue? + + + Raytracing + Sledovanie lúča + + + Export view to povray... + Exportuj pohľad do Povray... + + + Write the active 3D view with camera and all its content to a povray file + Napíšte aktívne 3D zobrazenie s kamerou a všetok jej obsah do súboru povray + + + + QObject + + Povray(*.pov) + Povray (*. pov) + + + All Files (*.*) + Všetky súbory (*.*) + + + Export page + Export stránky + + + Wrong selection + Chybný výber + + + Select a Part object. + Vyberte časť objektu. + + + No Povray project to insert + Žiadny projekt Povray na vloženie + + + Create a Povray project to insert a view. + Vytvor Povray projekt pre vloženie pohľadu. + + + Select a Povray project to insert the view. + Select a Povray project to insert the view. + + + Select one Povray project object. + Vyberte jeden Povray objekt projektu. + + + + RaytracingGui::DlgSettingsRay + + + Raytracing + Sledovanie lúča + + + Directories + Adresáre + + + Default Project dir: + Hlavný adresár projektu : + + + Camera file name: + Názov súboru fotoaparátu: + + + Part file name: + Názov súboru dielca: + + + TempCamera.inc + TempCamera.inc + + + TempPart.inc + TempPart.inc + + + Mesh export settings + Nastavenia exportu oka + + + max mesh deviation: + Max.odchýlka oka: + + + Do not calculate vertex normals + Nepočítať normály vrcholu + + + Write u,v coordinates + Napíšte u, v súradnice + + + + Workbench + + + &Raytracing + &Raytracing + + + diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_sv-SE.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_sv-SE.qm new file mode 100644 index 000000000..904729e49 Binary files /dev/null and b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_sv-SE.qm differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_sv-SE.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_sv-SE.ts new file mode 100644 index 000000000..53f6ccb33 --- /dev/null +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_sv-SE.ts @@ -0,0 +1,199 @@ + + + + + CmdRaytracingExportProject + + + File + Fil + + + &Export project... + &Exportera projekt... + + + Export the Povray project file + Exportera Povray projektfilen + + + + CmdRaytracingNewPartSegment + + Raytracing + Rendering + + + Insert part + Infoga del + + + Insert a new part object into a Povray project + Sätt i ett nytt Del objekt i ett Povray projekt + + + + CmdRaytracingNewPovrayProject + + Raytracing + Rendering + + + New Povray project + Nytt Povray projekt + + + Insert new Povray project into the document + Infoga nytt Povray projekt i dokumentet + + + + CmdRaytracingWriteCamera + + Raytracing + Rendering + + + Export camera to povray... + Exportera kameran till povray ... + + + Export the camera positon of the active 3D view in PovRay format to a file + Exportera kamerans position i den aktiva 3D-vyn i povray format till en fil + + + + CmdRaytracingWritePart + + Raytracing + Rendering + + + Export part to povray... + Exportera Del till povray ... + + + Write the selected Part (object) as a povray file + Skriv den markerade Delen (objekt) som en povray fil + + + + CmdRaytracingWriteView + + No perspective camera + Ingen perspektivkamera + + + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. +Do you want to continue? + Den aktuella vykameran är inte perspektiv och därmed kan resultatet av den senare povray bilden skilja sig mot vad du förväntar dig. Vill du fortsätta? + + + Raytracing + Rendering + + + Export view to povray... + Exportera vy till povray... + + + Write the active 3D view with camera and all its content to a povray file + Skriv den aktiva 3D vyn med kameraposition och allt dess innehåll till en povray fil + + + + QObject + + Povray(*.pov) + Povray (*.POV) + + + All Files (*.*) + Alla filer (*.*) + + + Export page + Exportera sida + + + Wrong selection + Fel val + + + Select a Part object. + Välj ett Del objekt. + + + No Povray project to insert + Inget Povray projekt att infoga + + + Create a Povray project to insert a view. + Skapa ett Povray projekt för att infoga en vy. + + + Select a Povray project to insert the view. + Välj ett Povray projekt att infoga vyn. + + + Select one Povray project object. + Välj ett Povray projekt objekt. + + + + RaytracingGui::DlgSettingsRay + + + Raytracing + Rendering + + + Directories + Kataloger + + + Default Project dir: + Standard-projektkatalog: + + + Camera file name: + Kamera-filnamn: + + + Part file name: + Del filnamn: + + + TempCamera.inc + TempCamera.inc + + + TempPart.inc + TempPart.inc + + + Mesh export settings + Nät exportinställningar + + + max mesh deviation: + Max nätdeviation: + + + Do not calculate vertex normals + Beräkna inte hörn normaler + + + Write u,v coordinates + Skriv u,v koordinater + + + + Workbench + + + &Raytracing + R&endering + + + diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_tr.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_tr.qm new file mode 100644 index 000000000..a70bcfdd2 Binary files /dev/null and b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_tr.qm differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_tr.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_tr.ts new file mode 100644 index 000000000..8cccb50e0 --- /dev/null +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_tr.ts @@ -0,0 +1,200 @@ + + + + + CmdRaytracingExportProject + + + File + Dosya + + + &Export project... + Proje dosyasını &Dışarı aktar... + + + Export the Povray project file + Povray proje dosyasını dışarı aktar + + + + CmdRaytracingNewPartSegment + + Raytracing + Işın izleme + + + Insert part + Parça yerleştir + + + Insert a new part object into a Povray project + Yeni parça nesnesini Povray nesnesine aktar + + + + CmdRaytracingNewPovrayProject + + Raytracing + Işın izleme + + + New Povray project + Yeni Povray projesi + + + Insert new Povray project into the document + Yeni Povray projesini belge içine aktar + + + + CmdRaytracingWriteCamera + + Raytracing + Işın izleme + + + Export camera to povray... + Kamerayı povray'a aktar... + + + Export the camera positon of the active 3D view in PovRay format to a file + Etkin 3B görünümün kamera konunumu PovRay biçiminde bir dosyaya aktar + + + + CmdRaytracingWritePart + + Raytracing + Işın izleme + + + Export part to povray... + Parçayı povray'a aktar + + + Write the selected Part (object) as a povray file + Seçili bölümü (nesneyi) povray dosyası olarak yaz + + + + CmdRaytracingWriteView + + No perspective camera + No perspective camera + + + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. +Do you want to continue? + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. +Do you want to continue? + + + Raytracing + Işın izleme + + + Export view to povray... + Görünümü povray'a aktar + + + Write the active 3D view with camera and all its content to a povray file + Etkin 3B görünümü ve bütün içeriğini povray dosyasına yaz + + + + QObject + + Povray(*.pov) + Povray(*.pov) + + + All Files (*.*) + Tüm Dosyalar (*.*) + + + Export page + Sayfayı dışa aktar + + + Wrong selection + Yanlış seçim + + + Select a Part object. + Bölüm nesnesini seç + + + No Povray project to insert + İçeri aktarılacak Povray projesi yok + + + Create a Povray project to insert a view. + Görünümün içine aktarmak için bir Povray projesi oluştur + + + Select a Povray project to insert the view. + Select a Povray project to insert the view. + + + Select one Povray project object. + Bir Povray proje nesnesi seç + + + + RaytracingGui::DlgSettingsRay + + + Raytracing + Işın izleme + + + Directories + Dizinler + + + Default Project dir: + Varsayılan proje dizini: + + + Camera file name: + Kamera dosya adı: + + + Part file name: + Parça dosya adı: + + + TempCamera.inc + TempCamera.inc + + + TempPart.inc + TempPart.inc + + + Mesh export settings + Kafes dışarı aktarma ayarları + + + max mesh deviation: + Parçacık sapmasının alabileceği en büyük değer: + + + Do not calculate vertex normals + Köşe olağanlarını (normallerini) hesaplanmasın + + + Write u,v coordinates + u,v konumlarını yaz + + + + Workbench + + + &Raytracing + &Işınizleme + + + diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_uk.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_uk.qm index 173d46e14..04e420594 100644 Binary files a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_uk.qm and b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_uk.qm differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_uk.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_uk.ts index 6813b6f4e..67bb9db37 100644 --- a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_uk.ts +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_uk.ts @@ -1,252 +1,200 @@ - - + + CmdRaytracingExportProject - - File - Файл + + File + Файл - - &Export project... - &Експорт проекту... + &Export project... + &Експортувати проект... - - Export the Povray project file - Експорт файлу Povray проекту + Export the Povray project file + Експорт файлу Povray проекту - - + + CmdRaytracingNewPartSegment - - Raytracing - Трасування променів + Raytracing + Трасування променів - - Insert part - Вставити частину + Insert part + Вставити деталь - - Insert a new part object into a Povray project - Вставити нову частину об'єкта у Povray проект + Insert a new part object into a Povray project + Вставити нову деталь у Povray проект - - + + CmdRaytracingNewPovrayProject - - Raytracing - Трасування променів + Raytracing + Трасування променів - - New Povray project - Новий проект Povray + New Povray project + Новий проект Povray - - Insert new Povray project into the document - Вставити новий проект Povray в документ + Insert new Povray project into the document + Вставити новий проект Povray в документ - - + + CmdRaytracingWriteCamera - - Raytracing - Трасування променів + Raytracing + Трасування променів - - Export camera to povray... - Export camera to povray... + Export camera to povray... + Експортувати камеру до Povray... - - Export the camera positon of the active 3D view in PovRay format to a file - Експортувати положення камери активного 3D вигляду до файлу у PovRay форматі + Export the camera positon of the active 3D view in PovRay format to a file + Експортувати положення камери активного 3D-виду до файлу у PovRay форматі - - + + CmdRaytracingWritePart - - Raytracing - Трасування променів + Raytracing + Трасування променів - - Export part to povray... - Експортування частини до povray... + Export part to povray... + Експортувати деталь у Povray... - - Write the selected Part (object) as a povray file - Записати виділену частину (об'єкт) як Povray файл + Write the selected Part (object) as a povray file + Записати виділену деталь(об'єкт) як Povray файл - - + + CmdRaytracingWriteView - - - - No perspective camera - + No perspective camera + No perspective camera - - - - The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. Do you want to continue? - + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. +Do you want to continue? - - Raytracing - Трасування променів + Raytracing + Трасування променів - - Export view to povray... - Експорт вигляду в Povray ... + Export view to povray... + Експортувати вид у Povray... - - Write the active 3D view with camera and all its content to a povray file - Записати активний 3D-вид з камери, і весь її вміст в Povray файл + Write the active 3D view with camera and all its content to a povray file + Записати активний 3D-вид з камери, і весь її вміст в Povray файл - - + + QObject - - - - - Povray(*.pov) - Povray(*.pov) + Povray(*.pov) + Povray(*.pov) - - - - - All Files (*.*) - Всі файли (*.*) + All Files (*.*) + Всі файли (*.*) - - - - - Export page - Експорт сторінки + Export page + Експорт сторінки - - - Wrong selection - Невірний вибір + Wrong selection + Невірний вибір - - Select a Part object. - Виберіть частину об'єкта. + Select a Part object. + Виберіть частину об'єкта. - - - No Povray project to insert - Немає Povray проекту для вставки + No Povray project to insert + Немає проекту Povray для вставки - - Create a Povray project to insert a view. - Створення Povray проекту для вставки у вигляд. + Create a Povray project to insert a view. + Створити проект Povray для вставки у вид. - - Select a Povray project to insert the view. - + Select a Povray project to insert the view. + Select a Povray project to insert the view. - - Select one Povray project object. - Виберіть один Povray проект для об'єкта. + Select one Povray project object. + Виберіть один об'єкт проекту Povray. - - + + RaytracingGui::DlgSettingsRay - - Raytracing - Трасування променів + + Raytracing + Трасування променів - - Directories - Каталоги + Directories + Каталоги - - Default Project dir: - Каталог проекту за замовчуванням: + Default Project dir: + Каталог проекту за замовчуванням: - - Camera file name: - Ім'я файлу камери: + Camera file name: + Ім'я файлу камери: - - Part file name: - Ім'я файлу деталі(частини): + Part file name: + Ім'я файлу деталі: - - TempCamera.inc - TempCamera.inc + TempCamera.inc + TempCamera.inc - - TempPart.inc - TempPart.inc + TempPart.inc + TempPart.inc - - Mesh export settings - Налаштування експорту сітки(Mesh) + Mesh export settings + Налаштування експорту сітки(Mesh) - - max mesh deviation: - Максимальне відхилення сітки: + max mesh deviation: + Максимальне відхилення сітки: - - Do not calculate vertex normals - Не розраховувати нормалі вершин + Do not calculate vertex normals + Не розраховувати нормалі вершин - - Write u,v coordinates - Записувати u,v координати + Write u,v coordinates + Записувати u,v координати - - + + Workbench - - &Raytracing - &Трасування променів + + &Raytracing + &Трасування променів - + diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_zh-CN.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_zh-CN.qm new file mode 100644 index 000000000..1a0940983 Binary files /dev/null and b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_zh-CN.qm differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_zh-CN.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_zh-CN.ts new file mode 100644 index 000000000..afc8b79f5 --- /dev/null +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_zh-CN.ts @@ -0,0 +1,200 @@ + + + + + CmdRaytracingExportProject + + + File + 文件 + + + &Export project... + 导出项目(&E)... + + + Export the Povray project file + 导出 Povray 项目文件 + + + + CmdRaytracingNewPartSegment + + Raytracing + 光线追踪 + + + Insert part + 插入零件 + + + Insert a new part object into a Povray project + 插入一个新的零件对象到PovRay项目 + + + + CmdRaytracingNewPovrayProject + + Raytracing + 光线追踪 + + + New Povray project + 新建 Povray 项目 + + + Insert new Povray project into the document + 在文档中插入新PovRay项目 + + + + CmdRaytracingWriteCamera + + Raytracing + 光线追踪 + + + Export camera to povray... + 导出相机到povray... + + + Export the camera positon of the active 3D view in PovRay format to a file + 将PovRay格式中当前3d视图的相机位置输出到文件 + + + + CmdRaytracingWritePart + + Raytracing + 光线追踪 + + + Export part to povray... + 输出零件到Povray... + + + Write the selected Part (object) as a povray file + 将选中零件(对象)写入Povray文件 + + + + CmdRaytracingWriteView + + No perspective camera + 没有透视相机 + + + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. +Do you want to continue? + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. +Do you want to continue? + + + Raytracing + 光线追踪 + + + Export view to povray... + 视图输出为Povray... + + + Write the active 3D view with camera and all its content to a povray file + 将当前相机3D视图以及所有内容写入到Povray文件 + + + + QObject + + Povray(*.pov) + Povray(*.pov) + + + All Files (*.*) + 所有文件(*.*) + + + Export page + 导出页面 + + + Wrong selection + 选择错误 + + + Select a Part object. + 选择零件对象. + + + No Povray project to insert + 无Povray项目可插入 + + + Create a Povray project to insert a view. + 创建一个Povray项目以插入视图. + + + Select a Povray project to insert the view. + 选择Povray项目插入视图. + + + Select one Povray project object. + 选择一个Povray项目. + + + + RaytracingGui::DlgSettingsRay + + + Raytracing + 光线追踪 + + + Directories + 目录 + + + Default Project dir: + 默认项目路径: + + + Camera file name: + 相机文件的名称: + + + Part file name: + 零件文件名称: + + + TempCamera.inc + TempCamera.inc + + + TempPart.inc + TempPart.inc + + + Mesh export settings + 网格导出设置 + + + max mesh deviation: + 最大网格偏差: + + + Do not calculate vertex normals + 不计算顶点法线 + + + Write u,v coordinates + 写入U,V坐标 + + + + Workbench + + + &Raytracing + 光线追踪(&R) + + + diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_zh-TW.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_zh-TW.qm new file mode 100644 index 000000000..0e9ea7eb7 Binary files /dev/null and b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_zh-TW.qm differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_zh-TW.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_zh-TW.ts new file mode 100644 index 000000000..348436759 --- /dev/null +++ b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_zh-TW.ts @@ -0,0 +1,199 @@ + + + + + CmdRaytracingExportProject + + + File + 檔案 + + + &Export project... + &匯出專案... + + + Export the Povray project file + 匯出Povray專案檔 + + + + CmdRaytracingNewPartSegment + + Raytracing + 光軌跡追蹤 + + + Insert part + 置入零件 + + + Insert a new part object into a Povray project + 置入新的零件至Povray專案 + + + + CmdRaytracingNewPovrayProject + + Raytracing + 光軌跡追蹤 + + + New Povray project + 新Povray專案 + + + Insert new Povray project into the document + 置入新的Povray專案至文件 + + + + CmdRaytracingWriteCamera + + Raytracing + 光軌跡追蹤 + + + Export camera to povray... + 匯出攝影機至povray... + + + Export the camera positon of the active 3D view in PovRay format to a file + 以PovRay格式匯出目前3D視圖之射影機位置 + + + + CmdRaytracingWritePart + + Raytracing + 光軌跡追蹤 + + + Export part to povray... + 匯出零件至povray... + + + Write the selected Part (object) as a povray file + 將選定之零件(物件)存為povray檔 + + + + CmdRaytracingWriteView + + No perspective camera + 無透視鏡頭 + + + The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. +Do you want to continue? + 目前視圖非透視鏡頭,並可能導至povray影像與您預期不同,是否繼續? + + + Raytracing + 光軌跡追蹤 + + + Export view to povray... + 匯出視圖至povray... + + + Write the active 3D view with camera and all its content to a povray file + 將目前之3D視圖(含攝影機)與所有內容寫入povray檔 + + + + QObject + + Povray(*.pov) + Povray(*.pov) + + + All Files (*.*) + 所有檔 (*.*) + + + Export page + 匯出頁面 + + + Wrong selection + 錯誤的選取 + + + Select a Part object. + 選取零件物件。 + + + No Povray project to insert + 沒有Povray專案被建立 + + + Create a Povray project to insert a view. + 於視圖中建立一個Povray專案 + + + Select a Povray project to insert the view. + 選擇一Povray投影插入視圖 + + + Select one Povray project object. + 選擇一個Povray專案物件。 + + + + RaytracingGui::DlgSettingsRay + + + Raytracing + 光軌跡追蹤 + + + Directories + 目錄 + + + Default Project dir: + 預設專案目錄: + + + Camera file name: + 攝影機檔案名稱: + + + Part file name: + 零件檔案名稱: + + + TempCamera.inc + TempCamera.inc + + + TempPart.inc + TempPart.inc + + + Mesh export settings + Mesh匯出設定 + + + max mesh deviation: + 最大mesh偏差: + + + Do not calculate vertex normals + 不計算頂點法線 + + + Write u,v coordinates + 寫入 u、 v 座標 + + + + Workbench + + + &Raytracing + 光跡追踪(&R) + + + diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_zh.qm b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_zh.qm deleted file mode 100644 index 234ccb01c..000000000 Binary files a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_zh.qm and /dev/null differ diff --git a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_zh.ts b/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_zh.ts deleted file mode 100644 index e84e14afe..000000000 --- a/src/Mod/Raytracing/Gui/Resources/translations/Raytracing_zh.ts +++ /dev/null @@ -1,252 +0,0 @@ - - - - - CmdRaytracingExportProject - - - File - 文件 - - - - &Export project... - 导出项目(&E)... - - - - Export the Povray project file - 导出 Povray 项目文件 - - - - CmdRaytracingNewPartSegment - - - Raytracing - 光线追踪 - - - - Insert part - 插入零件 - - - - Insert a new part object into a Povray project - 插入一个新的零件对象到PovRay项目 - - - - CmdRaytracingNewPovrayProject - - - Raytracing - 光线追踪 - - - - New Povray project - 新建 Povray 项目 - - - - Insert new Povray project into the document - 在文档中插入新PovRay项目 - - - - CmdRaytracingWriteCamera - - - Raytracing - 光线追踪 - - - - Export camera to povray... - 导出相机到povray... - - - - Export the camera positon of the active 3D view in PovRay format to a file - 将PovRay格式中当前3d视图的相机位置输出到文件 - - - - CmdRaytracingWritePart - - - Raytracing - 光线追踪 - - - - Export part to povray... - 输出零件到Povray... - - - - Write the selected Part (object) as a povray file - 将选中零件(对象)写入Povray文件 - - - - CmdRaytracingWriteView - - - - - No perspective camera - - - - - - - The current view camera is not perspective and thus the result of the povray image later might look different to what you expect. -Do you want to continue? - - - - - Raytracing - 光线追踪 - - - - Export view to povray... - 视图输出为Povray... - - - - Write the active 3D view with camera and all its content to a povray file - 将当前相机3D视图以及所有内容写入到Povray文件 - - - - QObject - - - - - - Povray(*.pov) - Povray(*.pov) - - - - - - - All Files (*.*) - 所有文件(*.*) - - - - - - - Export page - 导出页面 - - - - - Wrong selection - 选择错误 - - - - Select a Part object. - 选择零件对象. - - - - - No Povray project to insert - 无Povray项目可插入 - - - - Create a Povray project to insert a view. - 创建一个Povray项目以插入视图. - - - - Select a Povray project to insert the view. - - - - - Select one Povray project object. - 选择一个Povray项目. - - - - RaytracingGui::DlgSettingsRay - - - Raytracing - 光线追踪 - - - - Directories - 目录 - - - - Default Project dir: - 默认项目路径: - - - - Camera file name: - 相机文件的名称: - - - - Part file name: - 零件文件名称: - - - - TempCamera.inc - TempCamera.inc - - - - TempPart.inc - TempPart.inc - - - - Mesh export settings - 网格导出设置 - - - - max mesh deviation: - 最大网格偏差: - - - - Do not calculate vertex normals - 不计算顶点法线 - - - - Write u,v coordinates - 写入U,V坐标 - - - - Workbench - - - &Raytracing - 光线追踪(&R) - - - diff --git a/src/Mod/ReverseEngineering/Gui/Resources/Makefile.am b/src/Mod/ReverseEngineering/Gui/Resources/Makefile.am index a22aca9c0..a14b26f1e 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/Makefile.am +++ b/src/Mod/ReverseEngineering/Gui/Resources/Makefile.am @@ -12,8 +12,8 @@ EXTRA_DIST = \ translations/ReverseEngineering_af.ts \ translations/ReverseEngineering_de.qm \ translations/ReverseEngineering_de.ts \ - translations/ReverseEngineering_es.qm \ - translations/ReverseEngineering_es.ts \ + translations/ReverseEngineering_es-ES.qm \ + translations/ReverseEngineering_es-ES.ts \ translations/ReverseEngineering_fi.qm \ translations/ReverseEngineering_fi.ts \ translations/ReverseEngineering_fr.qm \ @@ -28,16 +28,30 @@ EXTRA_DIST = \ translations/ReverseEngineering_no.ts \ translations/ReverseEngineering_pl.qm \ translations/ReverseEngineering_pl.ts \ - translations/ReverseEngineering_pt.qm \ - translations/ReverseEngineering_pt.ts \ + translations/ReverseEngineering_pt-BR.qm \ + translations/ReverseEngineering_pt-BR.ts \ translations/ReverseEngineering_ru.qm \ translations/ReverseEngineering_ru.ts \ - translations/ReverseEngineering_se.qm \ - translations/ReverseEngineering_se.ts \ + translations/ReverseEngineering_sv-SE.qm \ + translations/ReverseEngineering_sv-SE.ts \ translations/ReverseEngineering_uk.qm \ translations/ReverseEngineering_uk.ts \ - translations/ReverseEngineering_zh.qm \ - translations/ReverseEngineering_zh.ts \ + translations/ReverseEngineering_hu.qm \ + translations/ReverseEngineering_hu.ts \ + translations/ReverseEngineering_cs.qm \ + translations/ReverseEngineering_cs.ts \ + translations/ReverseEngineering_sk.qm \ + translations/ReverseEngineering_sk.ts \ + translations/ReverseEngineering_tr.qm \ + translations/ReverseEngineering_tr.ts \ + translations/ReverseEngineering_ro.qm \ + translations/ReverseEngineering_ro.ts \ + translations/ReverseEngineering_ja.qm \ + translations/ReverseEngineering_ja.ts \ + translations/ReverseEngineering_zh-TW.qm \ + translations/ReverseEngineering_zh-TW.ts \ + translations/ReverseEngineering_zh-CN.qm \ + translations/ReverseEngineering_zh-CN.ts \ ReverseEngineering.qrc \ UpdateResources.bat diff --git a/src/Mod/ReverseEngineering/Gui/Resources/ReverseEngineering.qrc b/src/Mod/ReverseEngineering/Gui/Resources/ReverseEngineering.qrc index 5063d5c72..79877f7df 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/ReverseEngineering.qrc +++ b/src/Mod/ReverseEngineering/Gui/Resources/ReverseEngineering.qrc @@ -3,7 +3,6 @@ icons/actions/FitSurface.svg translations/ReverseEngineering_af.qm translations/ReverseEngineering_de.qm - translations/ReverseEngineering_es.qm translations/ReverseEngineering_fi.qm translations/ReverseEngineering_fr.qm translations/ReverseEngineering_hr.qm @@ -11,10 +10,18 @@ translations/ReverseEngineering_nl.qm translations/ReverseEngineering_no.qm translations/ReverseEngineering_pl.qm - translations/ReverseEngineering_pt.qm translations/ReverseEngineering_ru.qm - translations/ReverseEngineering_se.qm translations/ReverseEngineering_uk.qm - translations/ReverseEngineering_zh.qm + translations/ReverseEngineering_tr.qm + translations/ReverseEngineering_sv-SE.qm + translations/ReverseEngineering_zh-TW.qm + translations/ReverseEngineering_pt-BR.qm + translations/ReverseEngineering_cs.qm + translations/ReverseEngineering_sk.qm + translations/ReverseEngineering_es-ES.qm + translations/ReverseEngineering_zh-CN.qm + translations/ReverseEngineering_ja.qm + translations/ReverseEngineering_ro.qm + translations/ReverseEngineering_hu.qm diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_af.qm b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_af.qm index 14ecd615f..71586ce01 100644 Binary files a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_af.qm and b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_af.qm differ diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_af.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_af.ts index 0312aeebd..63e4e73ad 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_af.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_af.ts @@ -1,48 +1,43 @@ - - + + CmdApproxPlane - - Reverse Engineering - Terugwaartse Ingenieurswese + + Reverse Engineering + Terugwaartse Ingenieurswese - - Approximate plane... - Approximate plane... + Approximate plane... + Benader vlak... - - Approximate a plane - Approximate a plane + Approximate a plane + Benader 'n vlak - - + + CmdApproxSurface - - Reverse Engineering - Terugwaartse Ingenieurswese + Reverse Engineering + Terugwaartse Ingenieurswese - - Approximate surface... - Benaderde oppervlakte ... + Approximate surface... + Benaderde oppervlakte ... - - Approximate a B-Spline surface - Benader 'n B-kurwe oppervlak + Approximate a B-Spline surface + Benader 'n B-kurwe oppervlak - - + + Workbench - - Reverse Engineering - Terugwaartse Ingenieurswese + + Reverse Engineering + Terugwaartse Ingenieurswese - + diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_cs.qm b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_cs.qm new file mode 100644 index 000000000..4bed4c16b Binary files /dev/null and b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_cs.qm differ diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_cs.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_cs.ts new file mode 100644 index 000000000..063bab767 --- /dev/null +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_cs.ts @@ -0,0 +1,43 @@ + + + + + CmdApproxPlane + + + Reverse Engineering + Reverzní Inženýrství + + + Approximate plane... + Aproximuj rovinu... + + + Approximate a plane + Aproximuj rovinu + + + + CmdApproxSurface + + Reverse Engineering + Reverzní Inženýrství + + + Approximate surface... + Aproximuj plochu... + + + Approximate a B-Spline surface + Aproximuj B-Spline plochu + + + + Workbench + + + Reverse Engineering + Reverzní Inženýrství + + + diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_de.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_de.ts index 3511df971..e542edf06 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_de.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_de.ts @@ -1,48 +1,43 @@ - - + + CmdApproxPlane - - Reverse Engineering - Rückführung + + Reverse Engineering + Rückführung - - Approximate plane... - Ebene approximieren... + Approximate plane... + Ebene approximieren... - - Approximate a plane - Approximieren einer Ebene + Approximate a plane + Approximieren einer Ebene - - + + CmdApproxSurface - - Reverse Engineering - Rückführung + Reverse Engineering + Rückführung - - Approximate surface... - Ungefähre Oberfläche ... + Approximate surface... + Ungefähre Oberfläche ... - - Approximate a B-Spline surface - Ungefähre B-Spline-Oberfläche + Approximate a B-Spline surface + Ungefähre B-Spline-Oberfläche - - + + Workbench - - Reverse Engineering - Rückführung + + Reverse Engineering + Rückführung - + diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_es-ES.qm b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_es-ES.qm new file mode 100644 index 000000000..82114a614 Binary files /dev/null and b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_es-ES.qm differ diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_es-ES.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_es-ES.ts new file mode 100644 index 000000000..4b236f629 --- /dev/null +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_es-ES.ts @@ -0,0 +1,43 @@ + + + + + CmdApproxPlane + + + Reverse Engineering + Ingeniería Inversa + + + Approximate plane... + Plano aproximado... + + + Approximate a plane + Aproximar un plano + + + + CmdApproxSurface + + Reverse Engineering + Ingeniería Inversa + + + Approximate surface... + Superficie aproximada... + + + Approximate a B-Spline surface + Superficie aproximada a B-Spline + + + + Workbench + + + Reverse Engineering + Ingeniería Inversa + + + diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_es.qm b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_es.qm deleted file mode 100644 index 35eb49a8e..000000000 Binary files a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_es.qm and /dev/null differ diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_es.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_es.ts deleted file mode 100644 index c008737ec..000000000 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_es.ts +++ /dev/null @@ -1,48 +0,0 @@ - - - - - CmdApproxPlane - - - Reverse Engineering - Ingeniería Inversa - - - - Approximate plane... - Approximate plane... - - - - Approximate a plane - Approximate a plane - - - - CmdApproxSurface - - - Reverse Engineering - Ingeniería Inversa - - - - Approximate surface... - Superficie aproximada... - - - - Approximate a B-Spline surface - Superficie aproximada a B-Spline - - - - Workbench - - - Reverse Engineering - Ingeniería Inversa - - - diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_fi.qm b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_fi.qm index 1d77814f0..b955d48a3 100644 Binary files a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_fi.qm and b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_fi.qm differ diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_fi.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_fi.ts index 9659704c0..d333b7b91 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_fi.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_fi.ts @@ -1,48 +1,43 @@ - - + + CmdApproxPlane - - Reverse Engineering - Käänteis suunnittelu + + Reverse Engineering + Käänteis suunnittelu - - Approximate plane... - Approximate plane... + Approximate plane... + Lähennä tasoa... - - Approximate a plane - Approximate a plane + Approximate a plane + Lähentää tasoa - - + + CmdApproxSurface - - Reverse Engineering - Käänteis suunnittelu + Reverse Engineering + Käänteis suunnittelu - - Approximate surface... - Arvioi pinta... + Approximate surface... + Arvioi pinta... - - Approximate a B-Spline surface - Arvioi B-Spline pinta + Approximate a B-Spline surface + Arvioi B-Spline pinta - - + + Workbench - - Reverse Engineering - Käänteis suunnittelu + + Reverse Engineering + Käänteis suunnittelu - + diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_fr.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_fr.ts index 1b91848d2..80a655840 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_fr.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_fr.ts @@ -1,48 +1,43 @@ - - + + CmdApproxPlane - - Reverse Engineering - Rétro-ingénierie + + Reverse Engineering + Rétro-ingénierie - - Approximate plane... - Approximer un plan... + Approximate plane... + Approximer un plan... - - Approximate a plane - Approximer un plan + Approximate a plane + Approximer un plan - - + + CmdApproxSurface - - Reverse Engineering - Rétro-ingénierie + Reverse Engineering + Rétro-ingénierie - - Approximate surface... - Approximer une surface... + Approximate surface... + Approximer une surface... - - Approximate a B-Spline surface - Approximer une surface B-Spline + Approximate a B-Spline surface + Approximer une surface B-Spline - - + + Workbench - - Reverse Engineering - Rétro-ingénierie + + Reverse Engineering + Rétro-ingénierie - + diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_hr.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_hr.ts index 5bf8b922f..c520ac32d 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_hr.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_hr.ts @@ -1,48 +1,43 @@ - - + + CmdApproxPlane - - Reverse Engineering - Inverzni inženjering + + Reverse Engineering + Inverzni inženjering - - Approximate plane... - Aproksimiraj ravninu ... + Approximate plane... + Aproksimiraj ravninu ... - - Approximate a plane - Aproksimiraj ravninu + Approximate a plane + Aproksimiraj ravninu - - + + CmdApproxSurface - - Reverse Engineering - Inverzni inženjering + Reverse Engineering + Inverzni inženjering - - Approximate surface... - Aproksimiraj površinu ... + Approximate surface... + Aproksimiraj površinu ... - - Approximate a B-Spline surface - Aproksimiraj savijena površina + Approximate a B-Spline surface + Aproksimiraj savijena površina - - + + Workbench - - Reverse Engineering - Inverzni inženjering + + Reverse Engineering + Inverzni inženjering - + diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_hu.qm b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_hu.qm index 437ac2824..1cc82d9cb 100644 Binary files a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_hu.qm and b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_hu.qm differ diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_hu.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_hu.ts index a407f5f43..171e6f6db 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_hu.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_hu.ts @@ -1,48 +1,43 @@ - - + + CmdApproxPlane - - Reverse Engineering - Visszatervezés + + Reverse Engineering + Visszatervezés - - Approximate plane... - Hozzávetőleges sík ... + Approximate plane... + Hozzávetőleges sík ... - - Approximate a plane - Sík megbecsülése + Approximate a plane + Sík megbecsülése - - + + CmdApproxSurface - - Reverse Engineering - Visszatervezés + Reverse Engineering + Visszatervezés - - Approximate surface... - Felület közelítés... + Approximate surface... + Hozzávetőleges felület... - - Approximate a B-Spline surface - B-Spline felület közelítése + Approximate a B-Spline surface + Hozzávetőleges B-Spline felület - - + + Workbench - - Reverse Engineering - Visszatervezés + + Reverse Engineering + Visszatervezés - + diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_it.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_it.ts index ca5827bda..7607ec42a 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_it.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_it.ts @@ -1,48 +1,43 @@ - - + + CmdApproxPlane - - Reverse Engineering - Reverse Engineering + + Reverse Engineering + Reverse Engineering - - Approximate plane... - Approssima piano... + Approximate plane... + Approssima piano... - - Approximate a plane - Approssima un piano + Approximate a plane + Approssima un piano - - + + CmdApproxSurface - - Reverse Engineering - Reverse Engineering + Reverse Engineering + Reverse Engineering - - Approximate surface... - Approssima superficie... + Approximate surface... + Approssima superficie... - - Approximate a B-Spline surface - Approssima una superficie B-Spline + Approximate a B-Spline surface + Approssima una superficie B-Spline - - + + Workbench - - Reverse Engineering - Reverse Engineering + + Reverse Engineering + Reverse Engineering - + diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ja.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ja.ts index 33259f23b..ebbc03cf3 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ja.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ja.ts @@ -1,48 +1,43 @@ - - + + CmdApproxPlane - - Reverse Engineering - リバースエンジニアリング + + Reverse Engineering + リバースエンジニアリング - - Approximate plane... - Approximate plane... + Approximate plane... + Approximate plane... - - Approximate a plane - Approximate a plane + Approximate a plane + Approximate a plane - - + + CmdApproxSurface - - Reverse Engineering - リバースエンジニアリング + Reverse Engineering + リバースエンジニアリング - - Approximate surface... - おおよその表面... + Approximate surface... + おおよその表面... - - Approximate a B-Spline surface - B-スプライン曲面を近似 + Approximate a B-Spline surface + B-スプライン曲面を近似 - - + + Workbench - - Reverse Engineering - リバースエンジニアリング + + Reverse Engineering + リバースエンジニアリング - + diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_nl.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_nl.ts index 17b60018a..1fa1be27c 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_nl.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_nl.ts @@ -1,48 +1,43 @@ - - + + CmdApproxPlane - - Reverse Engineering - Reverse Engineering + + Reverse Engineering + Reverse Engineering - - Approximate plane... - Benaderde vlak + Approximate plane... + Benaderde vlak - - Approximate a plane - Benader een vlak + Approximate a plane + Benader een vlak - - + + CmdApproxSurface - - Reverse Engineering - Reverse Engineering + Reverse Engineering + Reverse Engineering - - Approximate surface... - Benaderde oppervlak... + Approximate surface... + Benaderde oppervlak... - - Approximate a B-Spline surface - Benader een B-Spline oppervlak + Approximate a B-Spline surface + Benader een B-Spline oppervlak - - + + Workbench - - Reverse Engineering - Reverse Engineering + + Reverse Engineering + Reverse Engineering - + diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_no.qm b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_no.qm index b75691ea2..0fd9eb35c 100644 Binary files a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_no.qm and b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_no.qm differ diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_no.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_no.ts index 7f470b0f0..8e8197685 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_no.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_no.ts @@ -1,48 +1,43 @@ - - + + CmdApproxPlane - - Reverse Engineering - Reversertkonstruksjon + + Reverse Engineering + Reversertkonstruksjon - - Approximate plane... - Approximate plane... + Approximate plane... + Anslå flate... - - Approximate a plane - Approximate a plane + Approximate a plane + Anslå en flate - - + + CmdApproxSurface - - Reverse Engineering - Reversertkonstruksjon + Reverse Engineering + Reversertkonstruksjon - - Approximate surface... - Anslå overflate... + Approximate surface... + Anslå overflate... - - Approximate a B-Spline surface - Anslå en B-Splineoverflate + Approximate a B-Spline surface + Anslå en B-Splineoverflate - - + + Workbench - - Reverse Engineering - Reversertkonstruksjon + + Reverse Engineering + Reversertkonstruksjon - + diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pl.qm b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pl.qm index d36c78e2a..8f20b816a 100644 Binary files a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pl.qm and b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pl.qm differ diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pl.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pl.ts index 39da660ef..7045349eb 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pl.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pl.ts @@ -1,48 +1,43 @@ - - + + CmdApproxPlane - - Reverse Engineering - Reverse Engineering + + Reverse Engineering + Inżynieria odwrotna - - Approximate plane... - Aproksymuj płaszczyznę... + Approximate plane... + Aproksymuj płaszczyznę... - - Approximate a plane - Aproksymuj płaszczyznę + Approximate a plane + Aproksymuj płaszczyznę - - + + CmdApproxSurface - - Reverse Engineering - Reverse Engineering + Reverse Engineering + Inżynieria odwrotna - - Approximate surface... - Aproksymacja powierzchni + Approximate surface... + Aproksymacja powierzchni - - Approximate a B-Spline surface - Aproksymuj płaszczyznę B-Splajn + Approximate a B-Spline surface + Aproksymuj płaszczyznę B-Splajn - - + + Workbench - - Reverse Engineering - Reverse Engineering + + Reverse Engineering + Inżynieria odwrotna - + diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pt.qm b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pt-BR.qm similarity index 100% rename from src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pt.qm rename to src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pt-BR.qm diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pt-BR.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pt-BR.ts new file mode 100644 index 000000000..62cbfc7d1 --- /dev/null +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pt-BR.ts @@ -0,0 +1,43 @@ + + + + + CmdApproxPlane + + + Reverse Engineering + Engenharia Reversa + + + Approximate plane... + Aproximar um plano... + + + Approximate a plane + Aproximar um plano + + + + CmdApproxSurface + + Reverse Engineering + Engenharia Reversa + + + Approximate surface... + Superfície aproximada... + + + Approximate a B-Spline surface + Aproximar uma superfície B-Spline + + + + Workbench + + + Reverse Engineering + Engenharia Reversa + + + diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pt.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pt.ts deleted file mode 100644 index 6503f7cae..000000000 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_pt.ts +++ /dev/null @@ -1,48 +0,0 @@ - - - - - CmdApproxPlane - - - Reverse Engineering - Engenharia Reversa - - - - Approximate plane... - Aproximar um plano... - - - - Approximate a plane - Aproximar um plano - - - - CmdApproxSurface - - - Reverse Engineering - Engenharia Reversa - - - - Approximate surface... - Superfície aproximada... - - - - Approximate a B-Spline surface - Aproximar uma superfície B-Spline - - - - Workbench - - - Reverse Engineering - Engenharia Reversa - - - diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ro.qm b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ro.qm new file mode 100644 index 000000000..0b355bd7f Binary files /dev/null and b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ro.qm differ diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ro.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ro.ts new file mode 100644 index 000000000..309ab70b3 --- /dev/null +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ro.ts @@ -0,0 +1,43 @@ + + + + + CmdApproxPlane + + + Reverse Engineering + Inginerie Inversă + + + Approximate plane... + Aproximarea planului... + + + Approximate a plane + Aproximaţi un plan + + + + CmdApproxSurface + + Reverse Engineering + Inginerie Inversă + + + Approximate surface... + Aproximarea suprafeței... + + + Approximate a B-Spline surface + Aproximarea unei suprafețe B-Spline + + + + Workbench + + + Reverse Engineering + Inginerie Inversă + + + diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ru.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ru.ts index bb3643aba..d1535fc95 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ru.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_ru.ts @@ -1,48 +1,43 @@ - - + + CmdApproxPlane - - Reverse Engineering - Обратный инжиниринг + + Reverse Engineering + Обратный инжиниринг - - Approximate plane... - Приблизительная плоскость... + Approximate plane... + Приблизительная плоскость... - - Approximate a plane - Аппроксимировать плоскость + Approximate a plane + Аппроксимировать плоскость - - + + CmdApproxSurface - - Reverse Engineering - Обратный инжиниринг + Reverse Engineering + Обратный инжиниринг - - Approximate surface... - Апроксимация поверхности... + Approximate surface... + Апроксимация поверхности... - - Approximate a B-Spline surface - Апроксимировать поверхность B-сплайна + Approximate a B-Spline surface + Апроксимировать поверхность B-сплайна - - + + Workbench - - Reverse Engineering - Обратный инжиниринг + + Reverse Engineering + Обратный инжиниринг - + diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_se.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_se.ts deleted file mode 100644 index 44c60d4b7..000000000 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_se.ts +++ /dev/null @@ -1,48 +0,0 @@ - - - - - CmdApproxPlane - - - Reverse Engineering - Reverse Engineering - - - - Approximate plane... - Approximerar ett plan... - - - - Approximate a plane - Approximera ett plan - - - - CmdApproxSurface - - - Reverse Engineering - Reverse Engineering - - - - Approximate surface... - Approximera yta... - - - - Approximate a B-Spline surface - Approximera en B-Spline yta - - - - Workbench - - - Reverse Engineering - Reverse Engineering - - - diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sk.qm b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sk.qm new file mode 100644 index 000000000..2199d362f Binary files /dev/null and b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sk.qm differ diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sk.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sk.ts new file mode 100644 index 000000000..8ad66eb21 --- /dev/null +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sk.ts @@ -0,0 +1,43 @@ + + + + + CmdApproxPlane + + + Reverse Engineering + Reverzné inžinierstvo + + + Approximate plane... + Približná rovina... + + + Approximate a plane + Odhadnuť rovinu + + + + CmdApproxSurface + + Reverse Engineering + Reverzné inžinierstvo + + + Approximate surface... + Približná plocha... + + + Approximate a B-Spline surface + Odhadnuť B-Spline plochu + + + + Workbench + + + Reverse Engineering + Reverzné inžinierstvo + + + diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_se.qm b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sv-SE.qm similarity index 100% rename from src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_se.qm rename to src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sv-SE.qm diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sv-SE.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sv-SE.ts new file mode 100644 index 000000000..be74b4594 --- /dev/null +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_sv-SE.ts @@ -0,0 +1,43 @@ + + + + + CmdApproxPlane + + + Reverse Engineering + Reverse Engineering + + + Approximate plane... + Approximerar ett plan... + + + Approximate a plane + Approximera ett plan + + + + CmdApproxSurface + + Reverse Engineering + Reverse Engineering + + + Approximate surface... + Approximera yta... + + + Approximate a B-Spline surface + Approximera en B-Spline yta + + + + Workbench + + + Reverse Engineering + Reverse Engineering + + + diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_tr.qm b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_tr.qm new file mode 100644 index 000000000..bd7da03a5 Binary files /dev/null and b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_tr.qm differ diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_tr.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_tr.ts new file mode 100644 index 000000000..c2a513b0a --- /dev/null +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_tr.ts @@ -0,0 +1,43 @@ + + + + + CmdApproxPlane + + + Reverse Engineering + Ters Mühendislik + + + Approximate plane... + Yaklaşık düzlem ... + + + Approximate a plane + Bir düzleme yaklaşık + + + + CmdApproxSurface + + Reverse Engineering + Ters Mühendislik + + + Approximate surface... + Yaklaşık yüzey ... + + + Approximate a B-Spline surface + Yaklaşık olarak bir B-Spline yüzeyi hesaplamak + + + + Workbench + + + Reverse Engineering + Ters Mühendislik + + + diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_uk.qm b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_uk.qm index 024a329da..7e068af45 100644 Binary files a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_uk.qm and b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_uk.qm differ diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_uk.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_uk.ts index 3971f4e12..e9c5a0e60 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_uk.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_uk.ts @@ -1,48 +1,43 @@ - - + + CmdApproxPlane - - Reverse Engineering - Зворотній інженеринг + + Reverse Engineering + Зворотнє проектування - - Approximate plane... - Approximate plane... + Approximate plane... + Приблизна площина... - - Approximate a plane - Approximate a plane + Approximate a plane + Приблизна площина - - + + CmdApproxSurface - - Reverse Engineering - Зворотній інженеринг + Reverse Engineering + Зворотнє проектування - - Approximate surface... - Орієнтація поверхні ... + Approximate surface... + Приблизна поверхня... - - Approximate a B-Spline surface - Орієнтувати поверхню B-Spline + Approximate a B-Spline surface + Приблизна B-Spline-поверхня - - + + Workbench - - Reverse Engineering - Зворотній інженеринг + + Reverse Engineering + Зворотнє проектування - + diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh.qm b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh-CN.qm similarity index 100% rename from src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh.qm rename to src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh-CN.qm diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh-CN.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh-CN.ts new file mode 100644 index 000000000..2d68c0d01 --- /dev/null +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh-CN.ts @@ -0,0 +1,43 @@ + + + + + CmdApproxPlane + + + Reverse Engineering + 逆向工程 + + + Approximate plane... + 近似​​平面... + + + Approximate a plane + 近似​​平面 + + + + CmdApproxSurface + + Reverse Engineering + 逆向工程 + + + Approximate surface... + 近似曲面... + + + Approximate a B-Spline surface + 近似B样条曲面 + + + + Workbench + + + Reverse Engineering + 逆向工程 + + + diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh-TW.qm b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh-TW.qm new file mode 100644 index 000000000..c5d6cc3b5 Binary files /dev/null and b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh-TW.qm differ diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh-TW.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh-TW.ts new file mode 100644 index 000000000..5810bf8ce --- /dev/null +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh-TW.ts @@ -0,0 +1,43 @@ + + + + + CmdApproxPlane + + + Reverse Engineering + 逆向工程 + + + Approximate plane... + 模擬平面... + + + Approximate a plane + 模擬平面 + + + + CmdApproxSurface + + Reverse Engineering + 逆向工程 + + + Approximate surface... + 模擬表面 + + + Approximate a B-Spline surface + 模擬一B-Spline表面 + + + + Workbench + + + Reverse Engineering + 逆向工程 + + + diff --git a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh.ts b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh.ts deleted file mode 100644 index 852b1b5f3..000000000 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh.ts +++ /dev/null @@ -1,48 +0,0 @@ - - - - - CmdApproxPlane - - - Reverse Engineering - 逆向工程 - - - - Approximate plane... - 近似​​平面... - - - - Approximate a plane - 近似​​平面 - - - - CmdApproxSurface - - - Reverse Engineering - 逆向工程 - - - - Approximate surface... - 近似曲面... - - - - Approximate a B-Spline surface - 近似B样条曲面 - - - - Workbench - - - Reverse Engineering - 逆向工程 - - - diff --git a/src/Mod/Robot/Gui/Resources/Makefile.am b/src/Mod/Robot/Gui/Resources/Makefile.am index 8b536ce97..cac7367cd 100644 --- a/src/Mod/Robot/Gui/Resources/Makefile.am +++ b/src/Mod/Robot/Gui/Resources/Makefile.am @@ -24,8 +24,8 @@ EXTRA_DIST = \ translations/Robot_af.ts \ translations/Robot_de.qm \ translations/Robot_de.ts \ - translations/Robot_es.qm \ - translations/Robot_es.ts \ + translations/Robot_es-ES.qm \ + translations/Robot_es-ES.ts \ translations/Robot_fi.qm \ translations/Robot_fi.ts \ translations/Robot_fr.qm \ @@ -40,16 +40,30 @@ EXTRA_DIST = \ translations/Robot_no.ts \ translations/Robot_pl.qm \ translations/Robot_pl.ts \ - translations/Robot_pt.qm \ - translations/Robot_pt.ts \ + translations/Robot_pt-BR.qm \ + translations/Robot_pt-BR.ts \ translations/Robot_ru.qm \ translations/Robot_ru.ts \ - translations/Robot_se.qm \ - translations/Robot_se.ts \ + translations/Robot_sv-SE.qm \ + translations/Robot_sv-SE.ts \ translations/Robot_uk.qm \ translations/Robot_uk.ts \ - translations/Robot_zh.qm \ - translations/Robot_zh.ts \ + translations/Robot_zh-CN.qm \ + translations/Robot_zh-CN.ts \ + translations/Robot_zh-TW.qm \ + translations/Robot_zh-TW.ts \ + translations/Robot_cs.qm \ + translations/Robot_cs.ts \ + translations/Robot_ro.qm \ + translations/Robot_ro.ts \ + translations/Robot_ja.qm \ + translations/Robot_ja.ts \ + translations/Robot_hu.qm \ + translations/Robot_hu.ts \ + translations/Robot_sk.qm \ + translations/Robot_sk.ts \ + translations/Robot_tr.qm \ + translations/Robot_tr.ts \ Robot.qrc \ UpdateResources.bat diff --git a/src/Mod/Robot/Gui/Resources/Robot.qrc b/src/Mod/Robot/Gui/Resources/Robot.qrc index e7842fc4f..8aab31c5d 100644 --- a/src/Mod/Robot/Gui/Resources/Robot.qrc +++ b/src/Mod/Robot/Gui/Resources/Robot.qrc @@ -15,7 +15,6 @@ icons/Robot_TrajectoryDressUp.svg translations/Robot_af.qm translations/Robot_de.qm - translations/Robot_es.qm translations/Robot_fi.qm translations/Robot_fr.qm translations/Robot_hr.qm @@ -23,10 +22,18 @@ translations/Robot_nl.qm translations/Robot_no.qm translations/Robot_pl.qm - translations/Robot_pt.qm translations/Robot_ru.qm - translations/Robot_se.qm translations/Robot_uk.qm - translations/Robot_zh.qm + translations/Robot_tr.qm + translations/Robot_sv-SE.qm + translations/Robot_zh-TW.qm + translations/Robot_pt-BR.qm + translations/Robot_cs.qm + translations/Robot_sk.qm + translations/Robot_es-ES.qm + translations/Robot_zh-CN.qm + translations/Robot_ja.qm + translations/Robot_ro.qm + translations/Robot_hu.qm diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_af.qm b/src/Mod/Robot/Gui/Resources/translations/Robot_af.qm index faed0cc49..ebad004d6 100644 Binary files a/src/Mod/Robot/Gui/Resources/translations/Robot_af.qm and b/src/Mod/Robot/Gui/Resources/translations/Robot_af.qm differ diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_af.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_af.ts index 8a5c153b4..ae9293185 100644 --- a/src/Mod/Robot/Gui/Resources/translations/Robot_af.ts +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_af.ts @@ -1,1044 +1,877 @@ - - + + CmdRobotAddToolShape - - Robot - Robot + + Robot + Robot - - Add tool - Voeg werktuig by + Add tool + Voeg werktuig by - - Add a tool shape to the robot - Voeg 'n werktuigvorm by tot die robot + Add a tool shape to the robot + Voeg 'n werktuigvorm by tot die robot - - + + CmdRobotConstraintAxle - - Robot - Robot + + Robot + Robot - - Place robot... - Plaseer robot... + Place robot... + Plaseer robot... - - Place a robot (experimental!) - Plaseer 'n robot (eksperimenteel!) + Place a robot (experimental!) + Plaseer 'n robot (eksperimenteel!) - - + + CmdRobotCreateTrajectory - - Robot - Robot + + Robot + Robot - - Create trajectory - Skep trajek + Create trajectory + Skep trajek - - Create a new empty trajectory - Skep 'n nuwe leë trajek + Create a new empty trajectory + Skep 'n nuwe leë trajek - - + + CmdRobotEdge2Trac - - Robot - Robot + Robot + Robot - - Edge to Trajectory... - Verander 'n kant in 'n trajek ... + Edge to Trajectory... + Verander 'n kant in 'n trajek ... - - Generate a Trajectory from a set of edges - Maak 'n trajek van 'n stel kante + Generate a Trajectory from a set of edges + Maak 'n trajek van 'n stel kante - - + + CmdRobotExportKukaCompact - - Robot - Robot + + Robot + Robot - - Kuka compact subroutine... - Kuka kompakte subroetine ... + Kuka compact subroutine... + Kuka kompakte subroetine ... - - Export the trajectory as a compact KRL subroutine. - Voer die trajek uit as 'n kompakte KRL-subroetine. + Export the trajectory as a compact KRL subroutine. + Voer die trajek uit as 'n kompakte KRL-subroetine. - - + + CmdRobotExportKukaFull - - Robot - Robot + Robot + Robot - - Kuka full subroutine... - Kuka volle subroetine ... + Kuka full subroutine... + Kuka volle subroetine ... - - Export the trajectory as a full KRL subroutine. - Voer die trajek uit as 'n volle KRL-subroetine. + Export the trajectory as a full KRL subroutine. + Voer die trajek uit as 'n volle KRL-subroetine. - - + + CmdRobotInsertKukaIR125 - - Robot - Robot + + Robot + Robot - - Kuka IR125 - Kuka IR125 + Kuka IR125 + Kuka IR125 - - Insert a Kuka IR125 into the document. - Voeg 'n Kuka IR125 in in die dokument. + Insert a Kuka IR125 into the document. + Voeg 'n Kuka IR125 in in die dokument. - - + + CmdRobotInsertKukaIR16 - - Robot - Robot + Robot + Robot - - Kuka IR16 - Kuka IR16 + Kuka IR16 + Kuka IR16 - - Insert a Kuka IR16 into the document. - Voeg 'n Kuka IR16 in in die dokument. + Insert a Kuka IR16 into the document. + Voeg 'n Kuka IR16 in in die dokument. - - + + CmdRobotInsertKukaIR210 - - Robot - Robot + Robot + Robot - - Kuka IR210 - Kuka IR210 + Kuka IR210 + Kuka IR210 - - Insert a Kuka IR210 into the document. - Voeg 'n Kuka IR210 in in die dokument. + Insert a Kuka IR210 into the document. + Voeg 'n Kuka IR210 in in die dokument. - - + + CmdRobotInsertKukaIR500 - - Robot - Robot + Robot + Robot - - Kuka IR500 - Kuka IR500 + Kuka IR500 + Kuka IR500 - - Insert a Kuka IR500 into the document. - Voeg 'n Kuka IR500 in in die dokument. + Insert a Kuka IR500 into the document. + Voeg 'n Kuka IR500 in in die dokument. - - + + CmdRobotInsertWaypoint - - Robot - Robot + + Robot + Robot - - Insert in trajectory - Voeg in trajek in + Insert in trajectory + Voeg in trajek in - - Insert robot Tool location into trajectory - Voeg robotwerktuigligging in 'n trajek + Insert robot Tool location into trajectory + Voeg robotwerktuigligging in 'n trajek - - + + CmdRobotInsertWaypointPreselect - - Robot - Robot + Robot + Robot - - Insert in trajectory - Voeg in trajek in + Insert in trajectory + Voeg in trajek in - - Insert preselection position into trajectory (W) - Voeg voorafkeuseligging in 'n trajek (W) + Insert preselection position into trajectory (W) + Voeg voorafkeuseligging in 'n trajek (W) - - + + CmdRobotRestoreHomePos - - Robot - Robot + + Robot + Robot - - - Move to home - Skuif na tuisposisie + Move to home + Skuif na tuisposisie - - + + CmdRobotSetDefaultOrientation - - Robot - Robot + + Robot + Robot - - Set default orientation - Gee versuimoriëntasie + Set default orientation + Gee versuimoriëntasie - - set the default orientation for subsequent commands for waypoint creation - Gee die versuimoriëntasie vir opvolgende bevele om 'n bakenpunt te skep + set the default orientation for subsequent commands for waypoint creation + Gee die versuimoriëntasie vir opvolgende bevele om 'n bakenpunt te skep - - + + CmdRobotSetDefaultValues - - Robot - Robot + Robot + Robot - - Set default values - Gee versuimwaardes + Set default values + Gee versuimwaardes - - set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation - Gee die versuimwaardes vir spoed, versnelling en kontinuïteit vir die opvolgende bevele van bakenpuntskepping + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + Gee die versuimwaardes vir spoed, versnelling en kontinuïteit vir die opvolgende bevele van bakenpuntskepping - - + + CmdRobotSetHomePos - - Robot - Robot + + Robot + Robot - - - Set the home position - Stel die tuisposisie + Set the home position + Stel die tuisposisie - - + + CmdRobotSimulate - - Robot - Robot + Robot + Robot - - Simulate a trajectory - Simuleer 'n trajek + Simulate a trajectory + Simuleer 'n trajek - - Run a simulation on a trajectory - Loop 'n simulasie op 'n trajek + Run a simulation on a trajectory + Loop 'n simulasie op 'n trajek - - + + CmdRobotTrajectoryCompound - - Robot - Robot + + Robot + Robot - - Trajectory compound... - Trajeksaamgestelde ... + Trajectory compound... + Trajeksaamgestelde ... - - Group and connect some trajectories to one - Groepeer en konnekteer 'n paar trajekte in een + Group and connect some trajectories to one + Groepeer en konnekteer 'n paar trajekte in een - - + + CmdRobotTrajectoryDressUp - - Robot - Robot + Robot + Robot - - Dress up trajectory... - Verfraai trajek ... + Dress up trajectory... + Verfraai trajek ... - - Create a dress up object which overide som aspects of a trajectory - Skep 'n verfraaiingsvoorwerp wat sommige aspekte van die trajek ignoreer + Create a dress up object which overide som aspects of a trajectory + Skep 'n verfraaiingsvoorwerp wat sommige aspekte van die trajek ignoreer - - + + Gui::TaskView::TaskWatcherCommands - - Trajectory tools - Trajectory tools + + Trajectory tools + Trajekgereedskap - - Robot tools - Robot tools + Robot tools + Robotgereedskap - - Insert Robot - Insert Robot + Insert Robot + Voeg robot in - - + + QObject - - - - - - - - - - - - Wrong selection - Verkeerde keuse + + Wrong selection + Verkeerde keuse - - - - - - Select one Robot and one Trajectory object. - Kies een Robot en een Trajekvoorwerp. + Select one Robot and one Trajectory object. + Kies een Robot en een Trajekvoorwerp. - - Trajectory not valid - Trajek nie geldig nie + Trajectory not valid + Trajek nie geldig nie - - You need at least two way points in a trajectory to simulate. - Jy moet ten minste twee wegpunte in 'n trajek hê om te simuleer. + You need at least two way points in a trajectory to simulate. + Jy moet ten minste twee wegpunte in 'n trajek hê om te simuleer. - - - KRL file(*.src) - KRL-lêer (*.src) + + KRL file(*.src) + KRL-lêer (*.src) - - - All Files (*.*) - Alle lêers (*.*) + All Files (*.*) + Alle lêers (*.*) - - - Export program - Voer program uit + Export program + Voer program uit - - Select one robot and one shape or VRML object. - Kies een robot en een vorm of VRML-voorwerp. + + Select one robot and one shape or VRML object. + Kies een robot en een vorm of VRML-voorwerp. - - No preselection - Geen voorafkeuse + + No preselection + Geen voorafkeuse - - You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. - Jy moet met die muis oor 'n vorm sweef om hierdie bevel te gebruik. Sien die dokumentasie vir meer inligting. + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + Jy moet met die muis oor 'n vorm sweef om hierdie bevel te gebruik. Sien die dokumentasie vir meer inligting. - - Select one Robot to set home postion - Kies een Robot om die tuisposisie te bepaal + + Select one Robot to set home postion + Kies een Robot om die tuisposisie te bepaal - - Select one Robot - Kies een Robot + Select one Robot + Kies een Robot - - - Select one Trajectory object. - Kies een Trajekvoorwerp. + + Select one Trajectory object. + Kies een Trajekvoorwerp. - - set default speed - Gee versuimspoed + set default speed + Gee versuimspoed - - speed: (e.g. 1 m/s or 3 cm/s) - spoed: (bv. 1 m/s of 3 cm/s) + speed: (e.g. 1 m/s or 3 cm/s) + spoed: (bv. 1 m/s of 3 cm/s) - - set default continuity - gee versuimkontinuïteit + set default continuity + gee versuimkontinuïteit - - continuous ? - kontinu? + continuous ? + kontinu? - - set default acceleration - gee versuimversnelling + set default acceleration + gee versuimversnelling - - acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) - versnelling: (bv. 1 m/s² of 3 cm/s²) + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + versnelling: (bv. 1 m/s² of 3 cm/s²) - - Select the Trajectory which you want to dress up. - Select the Trajectory which you want to dress up. + Select the Trajectory which you want to dress up. + Kies die trajek waarmee jy wil werk. - - No robot files installed - Geen robotlêers geïnstalleer + + No robot files installed + Geen robotlêers geïnstalleer - - Please visit %1 and copy the files to %2 - Besoek %1 en kopieer die lêers na %2 + Please visit %1 and copy the files to %2 + Besoek %1 en kopieer die lêers na %2 - - + + RobotGui::DlgTrajectorySimulate - - Simulation - Simulasie + + Simulation + Simulasie - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - Type - Soort + Type + Soort - - Name - Naam + Name + Naam - - C - C + C + C - - V - V + V + V - - A - A + A + A - - + + RobotGui::TaskEdge2TracParameter - - TaskEdge2TracParameter - TaakKantNaPadParameter + + TaskEdge2TracParameter + TaakKantNaPadParameter - - + + RobotGui::TaskRobot6Axis - - Form - Vorm + + Form + Vorm - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4 + A4 + A4 - - A5 - A5 + A5 + A5 - - A6 - A6 + A6 + A6 - - TCP: (200.23,300.23,400.23,234,343,343) - TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) - - Tool: (0,0,400,0,0,0) - Werktuig: (0,0,400,0,0,0) + Tool: (0,0,400,0,0,0) + Werktuig: (0,0,400,0,0,0) - - ... - ... + ... + ... - - TaskRobot6Axis - TaakRobot6As + + TaskRobot6Axis + TaakRobot6As - - + + RobotGui::TaskRobotControl - - TaskRobotControl - TaakRobotKontrole + + TaskRobotControl + TaakRobotKontrole - - + + RobotGui::TaskRobotMessages - - TaskRobotMessages - TaakRobotBoodskappe + + TaskRobotMessages + TaakRobotBoodskappe - - + + RobotGui::TaskTrajectory - - Form - Vorm + + Form + Vorm - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - 10 ms - 10 ms + 10 ms + 10 ms - - 50 ms - 50 ms + 50 ms + 50 ms - - 100 ms - 100 ms + 100 ms + 100 ms - - 500 ms - 500 ms + 500 ms + 500 ms - - 1 s - 1 s + 1 s + 1 s - - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - Pos: (200.23, 300.23, 400.23, 234, 343, 343) + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Pos: (200.23, 300.23, 400.23, 234, 343, 343) - - Type - Soort + Type + Soort - - Name - Naam + Name + Naam - - C - C + C + C - - V - V + V + V - - A - A + A + A - - Trajectory - Trajek + + Trajectory + Trajek - - + + RobotGui::TaskTrajectoryDressUpParameter - - Dress Up Parameter - Parameter vir verfraaiing + + Dress Up Parameter + Parameter vir verfraaiing - - + + TaskEdge2TracParameter - - Form - Vorm + + Form + Vorm - - Hide / Show - Wys/Verberg + Hide / Show + Wys/Verberg - - Edges: 0 - Kante: 0 + Edges: 0 + Kante: 0 - - Cluster: 0 - Tros: 0 + Cluster: 0 + Tros: 0 - - Sizing Value: - Groottewaarde: + Sizing Value: + Groottewaarde: - - Use orientation of edge - Use orientation of edge + Use orientation of edge + Gebruik die oriëntasie van die kant - TaskEdge2TracParameter - TaakKantNaPadParameter + TaskEdge2TracParameter + TaakKantNaPadParameter - - + + TaskRobot6Axis - TaskRobot6Axis - TaakRobot6As + TaskRobot6Axis + TaakRobot6As - - + + TaskRobotControl - - Form - Vorm + + Form + Vorm - - X+ - X+ + X+ + X+ - - Y+ - Y+ + Y+ + Y+ - - Z+ - Z+ + Z+ + Z+ - - A+ - A+ + A+ + A+ - - B+ - B+ + B+ + B+ - - C+ - C+ + C+ + C+ - - X- - X- + X- + X- - - Y- - Y- + Y- + Y- - - Z- - Z- + Z- + Z- - - A- - A- + A- + A- - - B- - B- + B- + B- - - C- - C- + C- + C- - - Tool 0 - Werktuig 0 + Tool 0 + Werktuig 0 - - Tool - Werktuig + Tool + Werktuig - - Base 0 - Basis 0 + Base 0 + Basis 0 - - Base - Basis + Base + Basis - - World - Wêreld - - - - 50mm / 5° - 50mm / 5° - - - - 20mm / 2° - 20mm / 2° - - - - 10mm / 1° - 10mm / 1° - - - - 5mm / 0.5° - 5mm / 0.5° - - - - 1mm / 0.1° - 1mm / 0.1° + World + Wêreld - TaskRobotControl - TaakRobotKontrole + 50mm / 5° + 50mm / 5° - - + + 20mm / 2° + 20mm / 2° + + + 10mm / 1° + 10mm / 1° + + + 5mm / 0.5° + 5mm / 0.5° + + + 1mm / 0.1° + 1mm / 0.1° + + + TaskRobotControl + TaakRobotKontrole + + + TaskRobotMessages - - Form - Vorm + + Form + Vorm - - clear - Maak skoon + clear + Maak skoon - TaskRobotMessages - TaakRobotBoodskappe + TaskRobotMessages + TaakRobotBoodskappe - - + + TaskTrajectory - Trajectory - Trajek + Trajectory + Trajek - - + + TaskTrajectoryDressUpParameter - - Form - Vorm + + Form + Vorm - - Speed & Acceleration: - Spoed en versnelling: + Speed & Acceleration: + Spoed en versnelling: - - Speed: - Spoed: + Speed: + Spoed: - - - Use - Gebruik + Use + Gebruik - - Accel: - Versnel: + Accel: + Versnel: - - Don't change Cont - Moenie die kontinuum verander nie + Don't change Cont + Moenie die kontinuum verander nie - - Continues - Gaan voort + Continues + Gaan voort - - Discontinues - Hou op + Discontinues + Hou op - - Position and Orientation: - Posisie en oriëntasie: + Position and Orientation: + Posisie en oriëntasie: - - (0,0,0),(0,0,0) - (0,0,0),(0,0,0) + (0,0,0),(0,0,0) + (0,0,0),(0,0,0) - - ... - ... + ... + ... - - Don't change Position & Orientation - Moenie die posisie en oriëntasie verander nie + Don't change Position & Orientation + Moenie die posisie en oriëntasie verander nie - - Use Orientation - Gebruik Oriëntasie + Use Orientation + Gebruik Oriëntasie - - Add Position - Voeg posisie by + Add Position + Voeg posisie by - - Add Orientation - Voeg oriëntasie by + Add Orientation + Voeg oriëntasie by - Dress Up Parameter - Parameter vir verfraaiing + Dress Up Parameter + Parameter vir verfraaiing - - + + Workbench - - Robot - Robot + + Robot + Robot - - Insert Robots - Voeg robotte in + Insert Robots + Voeg robotte in - - &Robot - &Robot + &Robot + &Robot - - Export trajectory - Voer trajek uit + Export trajectory + Voer trajek uit - + diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_cs.qm b/src/Mod/Robot/Gui/Resources/translations/Robot_cs.qm new file mode 100644 index 000000000..e7de17a49 Binary files /dev/null and b/src/Mod/Robot/Gui/Resources/translations/Robot_cs.qm differ diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_cs.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_cs.ts new file mode 100644 index 000000000..68bb2cf2e --- /dev/null +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_cs.ts @@ -0,0 +1,877 @@ + + + + + CmdRobotAddToolShape + + + Robot + Robot + + + Add tool + Add tool + + + Add a tool shape to the robot + Add a tool shape to the robot + + + + CmdRobotConstraintAxle + + + Robot + Robot + + + Place robot... + Place robot... + + + Place a robot (experimental!) + Place a robot (experimental!) + + + + CmdRobotCreateTrajectory + + + Robot + Robot + + + Create trajectory + Create trajectory + + + Create a new empty trajectory + Create a new empty trajectory + + + + CmdRobotEdge2Trac + + Robot + Robot + + + Edge to Trajectory... + Edge to Trajectory... + + + Generate a Trajectory from a set of edges + Generate a Trajectory from a set of edges + + + + CmdRobotExportKukaCompact + + + Robot + Robot + + + Kuka compact subroutine... + Kuka compact subroutine... + + + Export the trajectory as a compact KRL subroutine. + Export the trajectory as a compact KRL subroutine. + + + + CmdRobotExportKukaFull + + Robot + Robot + + + Kuka full subroutine... + Kuka full subroutine... + + + Export the trajectory as a full KRL subroutine. + Export the trajectory as a full KRL subroutine. + + + + CmdRobotInsertKukaIR125 + + + Robot + Robot + + + Kuka IR125 + Kuka IR125 + + + Insert a Kuka IR125 into the document. + Insert a Kuka IR125 into the document. + + + + CmdRobotInsertKukaIR16 + + Robot + Robot + + + Kuka IR16 + Kuka IR16 + + + Insert a Kuka IR16 into the document. + Insert a Kuka IR16 into the document. + + + + CmdRobotInsertKukaIR210 + + Robot + Robot + + + Kuka IR210 + Kuka IR210 + + + Insert a Kuka IR210 into the document. + Insert a Kuka IR210 into the document. + + + + CmdRobotInsertKukaIR500 + + Robot + Robot + + + Kuka IR500 + Kuka IR500 + + + Insert a Kuka IR500 into the document. + Insert a Kuka IR500 into the document. + + + + CmdRobotInsertWaypoint + + + Robot + Robot + + + Insert in trajectory + Insert in trajectory + + + Insert robot Tool location into trajectory + Insert robot Tool location into trajectory + + + + CmdRobotInsertWaypointPreselect + + Robot + Robot + + + Insert in trajectory + Insert in trajectory + + + Insert preselection position into trajectory (W) + Insert preselection position into trajectory (W) + + + + CmdRobotRestoreHomePos + + + Robot + Robot + + + Move to home + Move to home + + + + CmdRobotSetDefaultOrientation + + + Robot + Robot + + + Set default orientation + Set default orientation + + + set the default orientation for subsequent commands for waypoint creation + set the default orientation for subsequent commands for waypoint creation + + + + CmdRobotSetDefaultValues + + Robot + Robot + + + Set default values + Set default values + + + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + + + + CmdRobotSetHomePos + + + Robot + Robot + + + Set the home position + Set the home position + + + + CmdRobotSimulate + + Robot + Robot + + + Simulate a trajectory + Simulate a trajectory + + + Run a simulation on a trajectory + Run a simulation on a trajectory + + + + CmdRobotTrajectoryCompound + + + Robot + Robot + + + Trajectory compound... + Trajectory compound... + + + Group and connect some trajectories to one + Group and connect some trajectories to one + + + + CmdRobotTrajectoryDressUp + + Robot + Robot + + + Dress up trajectory... + Dress up trajectory... + + + Create a dress up object which overide som aspects of a trajectory + Create a dress up object which overide som aspects of a trajectory + + + + Gui::TaskView::TaskWatcherCommands + + + Trajectory tools + Trajectory tools + + + Robot tools + Robot tools + + + Insert Robot + Insert Robot + + + + QObject + + + Wrong selection + Neplatný výběr + + + Select one Robot and one Trajectory object. + Select one Robot and one Trajectory object. + + + Trajectory not valid + Trajectory not valid + + + You need at least two way points in a trajectory to simulate. + You need at least two way points in a trajectory to simulate. + + + + KRL file(*.src) + KRL file(*.src) + + + All Files (*.*) + Všechny soubory (*.*) + + + Export program + Export program + + + + Select one robot and one shape or VRML object. + Select one robot and one shape or VRML object. + + + + No preselection + No preselection + + + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + + + + Select one Robot to set home postion + Select one Robot to set home postion + + + Select one Robot + Select one Robot + + + + Select one Trajectory object. + Select one Trajectory object. + + + set default speed + set default speed + + + speed: (e.g. 1 m/s or 3 cm/s) + speed: (e.g. 1 m/s or 3 cm/s) + + + set default continuity + set default continuity + + + continuous ? + continuous ? + + + set default acceleration + set default acceleration + + + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + + + Select the Trajectory which you want to dress up. + Select the Trajectory which you want to dress up. + + + + No robot files installed + No robot files installed + + + Please visit %1 and copy the files to %2 + Please visit %1 and copy the files to %2 + + + + RobotGui::DlgTrajectorySimulate + + + Simulation + Simulace + + + |< + |< + + + < + < + + + || + || + + + |> + |> + + + > + > + + + >| + >| + + + % + % + + + Type + Typ + + + Name + Jméno + + + C + C + + + V + V + + + A + A + + + + RobotGui::TaskEdge2TracParameter + + + TaskEdge2TracParameter + TaskEdge2TracParameter + + + + RobotGui::TaskRobot6Axis + + + Form + Návrh + + + A1 + A1 + + + A2 + A2 + + + A3 + A3 + + + A4 + A4 + + + A5 + A5 + + + A6 + A6 + + + TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) + + + Tool: (0,0,400,0,0,0) + Tool: (0,0,400,0,0,0) + + + ... + ... + + + + TaskRobot6Axis + TaskRobot6Axis + + + + RobotGui::TaskRobotControl + + + TaskRobotControl + TaskRobotControl + + + + RobotGui::TaskRobotMessages + + + TaskRobotMessages + TaskRobotMessages + + + + RobotGui::TaskTrajectory + + + Form + Návrh + + + |< + |< + + + < + < + + + || + || + + + |> + |> + + + > + > + + + >| + >| + + + % + % + + + 10 ms + 10 ms + + + 50 ms + 50 ms + + + 100 ms + 100 ms + + + 500 ms + 500 ms + + + 1 s + 1 s + + + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + + + Type + Typ + + + Name + Jméno + + + C + C + + + V + V + + + A + A + + + + Trajectory + Trajectory + + + + RobotGui::TaskTrajectoryDressUpParameter + + + Dress Up Parameter + Dress Up Parameter + + + + TaskEdge2TracParameter + + + Form + Návrh + + + Hide / Show + Skrýt / Zobrazit + + + Edges: 0 + Edges: 0 + + + Cluster: 0 + Cluster: 0 + + + Sizing Value: + Sizing Value: + + + Use orientation of edge + Use orientation of edge + + + TaskEdge2TracParameter + TaskEdge2TracParameter + + + + TaskRobot6Axis + + TaskRobot6Axis + TaskRobot6Axis + + + + TaskRobotControl + + + Form + Návrh + + + X+ + X+ + + + Y+ + Y+ + + + Z+ + Z+ + + + A+ + A+ + + + B+ + B+ + + + C+ + C+ + + + X- + X- + + + Y- + Y- + + + Z- + Z- + + + A- + A- + + + B- + B- + + + C- + C- + + + Tool 0 + Tool 0 + + + Tool + Tool + + + Base 0 + Base 0 + + + Base + Base + + + World + World + + + 50mm / 5° + 50mm / 5° + + + 20mm / 2° + 20mm / 2° + + + 10mm / 1° + 10mm / 1° + + + 5mm / 0.5° + 5mm / 0.5° + + + 1mm / 0.1° + 1mm / 0.1° + + + TaskRobotControl + TaskRobotControl + + + + TaskRobotMessages + + + Form + Návrh + + + clear + clear + + + TaskRobotMessages + TaskRobotMessages + + + + TaskTrajectory + + Trajectory + Trajectory + + + + TaskTrajectoryDressUpParameter + + + Form + Návrh + + + Speed & Acceleration: + Speed & Acceleration: + + + Speed: + Rychlost: + + + Use + Použití + + + Accel: + Accel: + + + Don't change Cont + Don't change Cont + + + Continues + Continues + + + Discontinues + Discontinues + + + Position and Orientation: + Position and Orientation: + + + (0,0,0),(0,0,0) + (0,0,0),(0,0,0) + + + ... + ... + + + Don't change Position & Orientation + Don't change Position & Orientation + + + Use Orientation + Use Orientation + + + Add Position + Add Position + + + Add Orientation + Add Orientation + + + Dress Up Parameter + Dress Up Parameter + + + + Workbench + + + Robot + Robot + + + Insert Robots + Insert Robots + + + &Robot + &Robot + + + Export trajectory + Export trajectory + + + diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_de.qm b/src/Mod/Robot/Gui/Resources/translations/Robot_de.qm index 78fd9e95b..3dd474d4f 100644 Binary files a/src/Mod/Robot/Gui/Resources/translations/Robot_de.qm and b/src/Mod/Robot/Gui/Resources/translations/Robot_de.qm differ diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_de.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_de.ts index bb3e9d6d2..b9e0c96c2 100644 --- a/src/Mod/Robot/Gui/Resources/translations/Robot_de.ts +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_de.ts @@ -1,1045 +1,878 @@ - - + + CmdRobotAddToolShape - - Robot - Roboter + + Robot + Roboter - - Add tool - Werkzeug hinzufügen + Add tool + Werkzeug hinzufügen - - Add a tool shape to the robot - Hinzufügen einer Werkzeug-Form zum Roboter + Add a tool shape to the robot + Hinzufügen einer Werkzeug-Form zum Roboter - - + + CmdRobotConstraintAxle - - Robot - Roboter + + Robot + Roboter - - Place robot... - Plaziert einen Roboter... + Place robot... + Plaziert einen Roboter... - - Place a robot (experimental!) - Platziere einen Roboter (experimental!) + Place a robot (experimental!) + Platziere einen Roboter (experimental!) - - + + CmdRobotCreateTrajectory - - Robot - Roboter + + Robot + Roboter - - Create trajectory - Erstelle Arbeitsbewegung + Create trajectory + Erstelle Arbeitsbewegung - - Create a new empty trajectory - Erstellen Sie eine neue, leere Arbeitsbewegung + Create a new empty trajectory + Erstellen Sie eine neue, leere Arbeitsbewegung - - + + CmdRobotEdge2Trac - - Robot - Roboter + Robot + Roboter - - Edge to Trajectory... - Punkt zur Arbeitsbewegung hinzufügen... + Edge to Trajectory... + Punkt zur Arbeitsbewegung hinzufügen... - - Generate a Trajectory from a set of edges - Generieren Sie eine Arbeitsbewegung aus einer Reihe von Punkten + Generate a Trajectory from a set of edges + Generieren Sie eine Arbeitsbewegung aus einer Reihe von Punkten - - + + CmdRobotExportKukaCompact - - Robot - Roboter + + Robot + Roboter - - Kuka compact subroutine... - KUKA kompaktes Unterprogramm ... + Kuka compact subroutine... + KUKA kompaktes Unterprogramm ... - - Export the trajectory as a compact KRL subroutine. - Exportieren Sie die Arbeitsbewegung als kompaktes KRL Unterprogramm. + Export the trajectory as a compact KRL subroutine. + Exportieren Sie die Arbeitsbewegung als kompaktes KRL Unterprogramm. - - + + CmdRobotExportKukaFull - - Robot - Roboter + Robot + Roboter - - Kuka full subroutine... - KUKA vollständiges Unterprogramm ... + Kuka full subroutine... + KUKA vollständiges Unterprogramm ... - - Export the trajectory as a full KRL subroutine. - Exportieren Sie die Arbeitsbewegung als eine volle KRL-Unterroutine. + Export the trajectory as a full KRL subroutine. + Exportieren Sie die Arbeitsbewegung als eine volle KRL-Unterroutine. - - + + CmdRobotInsertKukaIR125 - - Robot - Roboter + + Robot + Roboter - - Kuka IR125 - KUKA IR125 + Kuka IR125 + KUKA IR125 - - Insert a Kuka IR125 into the document. - Einen Kuka-IR125 in das Dokument einfügen. + Insert a Kuka IR125 into the document. + Einen Kuka-IR125 in das Dokument einfügen. - - + + CmdRobotInsertKukaIR16 - - Robot - Roboter + Robot + Roboter - - Kuka IR16 - KUKA IR16 + Kuka IR16 + KUKA IR16 - - Insert a Kuka IR16 into the document. - Einen Kuka-IR16 in das Dokument einfügen. + Insert a Kuka IR16 into the document. + Einen Kuka-IR16 in das Dokument einfügen. - - + + CmdRobotInsertKukaIR210 - - Robot - Roboter + Robot + Roboter - - Kuka IR210 - KUKA IR210 + Kuka IR210 + KUKA IR210 - - Insert a Kuka IR210 into the document. - Einen Kuka-IR210 in das Dokument einfügen. + Insert a Kuka IR210 into the document. + Einen Kuka-IR210 in das Dokument einfügen. - - + + CmdRobotInsertKukaIR500 - - Robot - Roboter + Robot + Roboter - - Kuka IR500 - KUKA IR500 + Kuka IR500 + KUKA IR500 - - Insert a Kuka IR500 into the document. - Einen Kuka-IR500 in das Dokument einfügen. + Insert a Kuka IR500 into the document. + Einen Kuka-IR500 in das Dokument einfügen. - - + + CmdRobotInsertWaypoint - - Robot - Roboter + + Robot + Roboter - - Insert in trajectory - Fügen Sie eine Arbeitsbewegung ein + Insert in trajectory + Fügen Sie eine Arbeitsbewegung ein - - Insert robot Tool location into trajectory - Lage des Roboterwerkzeugs in Arbeitsbewegung einbringen + Insert robot Tool location into trajectory + Lage des Roboterwerkzeugs in Arbeitsbewegung einbringen - - + + CmdRobotInsertWaypointPreselect - - Robot - Roboter + Robot + Roboter - - Insert in trajectory - Fügen Sie eine Arbeitsbewegung ein + Insert in trajectory + Fügen Sie eine Arbeitsbewegung ein - - Insert preselection position into trajectory (W) - Vorausgewählte Position in Arbeitsbewegung einbringen (W) + Insert preselection position into trajectory (W) + Vorausgewählte Position in Arbeitsbewegung einbringen (W) - - + + CmdRobotRestoreHomePos - - Robot - Roboter + + Robot + Roboter - - - Move to home - Zur Ausgansposition bewegen + Move to home + Zur Ausgansposition bewegen - - + + CmdRobotSetDefaultOrientation - - Robot - Roboter + + Robot + Roboter - - Set default orientation - Setze Standardrichtung + Set default orientation + Setze Standardrichtung - - set the default orientation for subsequent commands for waypoint creation - Setzt die Standardausrichtung für nachfolgende Befehle zur Wegpunkterstellung + set the default orientation for subsequent commands for waypoint creation + Setzt die Standardausrichtung für nachfolgende Befehle zur Wegpunkterstellung - - + + CmdRobotSetDefaultValues - - Robot - Roboter + Robot + Roboter - - Set default values - Festlegen von Standardwerten + Set default values + Festlegen von Standardwerten - - set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation - Setzt die Standard-Werte für Geschwindigkeit, Beschleunigung und Dauer für die nachfolgenden Befehle der Wegpunkterstellung + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + Setzt die Standard-Werte für Geschwindigkeit, Beschleunigung und Dauer für die nachfolgenden Befehle der Wegpunkterstellung - - + + CmdRobotSetHomePos - - Robot - Roboter + + Robot + Roboter - - - Set the home position - Setzen Sie die Ausgansposition + Set the home position + Setzen Sie die Ausgansposition - - + + CmdRobotSimulate - - Robot - Roboter + Robot + Roboter - - Simulate a trajectory - Simulieren einer Arbeitsbewegung + Simulate a trajectory + Simulieren einer Arbeitsbewegung - - Run a simulation on a trajectory - Simulation über die Bewegungsbahn starten + Run a simulation on a trajectory + Simulation über die Bewegungsbahn starten - - + + CmdRobotTrajectoryCompound - - Robot - Roboter + + Robot + Roboter - - Trajectory compound... - Verbinden der Arbeitsbewegungen ... + Trajectory compound... + Verbinden der Arbeitsbewegungen ... - - Group and connect some trajectories to one - Gruppieren und Verbinden zu einer Arbeitsbewegung + Group and connect some trajectories to one + Gruppieren und Verbinden zu einer Arbeitsbewegung - - + + CmdRobotTrajectoryDressUp - - Robot - Roboter + Robot + Roboter - - Dress up trajectory... - Arbeitsbewegung verfeinern ... + Dress up trajectory... + Arbeitsbewegung verfeinern ... - - Create a dress up object which overide som aspects of a trajectory - Erstelle Dress-Up-Objekt, das Teile der Trajektorie überschreibt + Create a dress up object which overide som aspects of a trajectory + Erstelle Dress-Up-Objekt, das Teile der Trajektorie überschreibt - - + + Gui::TaskView::TaskWatcherCommands - - Trajectory tools - Bwewgung Werkzeuge + + Trajectory tools + Bahnverlaufswerkzeuge - - Robot tools - Roboter-Werkzeuge + Robot tools + Roboter-Werkzeuge - - Insert Robot - Roboter einfügen + Insert Robot + Roboter einfügen - - + + QObject - - - - - - - - - - - - Wrong selection - Falsche Auswahl + + Wrong selection + Falsche Auswahl - - - - - - Select one Robot and one Trajectory object. - Wählen Sie einen Roboter und eine Arbeitsbewegung. + Select one Robot and one Trajectory object. + Wählen Sie einen Roboter und eine Arbeitsbewegung. - - Trajectory not valid - Arbeitsbewegung nicht gültig + Trajectory not valid + Arbeitsbewegung nicht gültig - - You need at least two way points in a trajectory to simulate. - Sie benötigen mindestens zwei Wegpunkte, um eine Bewegungsbahn zu simulieren. + You need at least two way points in a trajectory to simulate. + Sie benötigen mindestens zwei Wegpunkte, um eine Bewegungsbahn zu simulieren. - - - KRL file(*.src) - KRL-Datei (*. src) + + KRL file(*.src) + KRL-Datei (*. src) - - - All Files (*.*) - Alle Dateien (*.*) + All Files (*.*) + Alle Dateien (*.*) - - - Export program - Programm exportieren + Export program + Programm exportieren - - Select one robot and one shape or VRML object. - Wählen Sie einen Roboter und eine Form oder ein VRML-Objekt. + + Select one robot and one shape or VRML object. + Wählen Sie einen Roboter und eine Form oder ein VRML-Objekt. - - No preselection - Keine Vorauswahl + + No preselection + Keine Vorauswahl - - You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. - Sie müssen die Maus über eine Geometrie (Preselection) positionieren, um diesen Befehl zu verwenden. + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + Sie müssen die Maus über eine Geometrie (Preselection) positionieren, um diesen Befehl zu verwenden. Siehe Dokumentation für Details. - - Select one Robot to set home postion - Wählen Sie einen Roboter um die Ausgangsposition zu setzen + + Select one Robot to set home postion + Wählen Sie einen Roboter um die Ausgangsposition zu setzen - - Select one Robot - Einen Roboter auswählen + Select one Robot + Einen Roboter auswählen - - - Select one Trajectory object. - Einen Bewegungsablauf wählen. + + Select one Trajectory object. + Einen Bewegungsablauf wählen. - - set default speed - Standardgeschwindigkeit setzen + set default speed + Standardgeschwindigkeit setzen - - speed: (e.g. 1 m/s or 3 cm/s) - Geschwindigkeit: (z.B. 1 m/s oder 3 cm/s) + speed: (e.g. 1 m/s or 3 cm/s) + Geschwindigkeit: (z.B. 1 m/s oder 3 cm/s) - - set default continuity - Setze Vorgabe zur Dauer + set default continuity + Setze Vorgabe zur Dauer - - continuous ? - Fortlaufend ? + continuous ? + Fortlaufend ? - - set default acceleration - Standardbeschleunigung setzen + set default acceleration + Standardbeschleunigung setzen - - acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) - Beschleunigung: (zB 1 m / s ^ 2 oder 3 cm / s ^ 2) + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + Beschleunigung: (zB 1 m / s ^ 2 oder 3 cm / s ^ 2) - - Select the Trajectory which you want to dress up. - Wählen Sie die Bewegung die Sie verwenden wollen. + Select the Trajectory which you want to dress up. + Wählen Sie die Bewegung die Sie verwenden wollen. - - No robot files installed - Keine Roboter-Dateien installiert + + No robot files installed + Keine Roboter-Dateien installiert - - Please visit %1 and copy the files to %2 - Bitte gehen Sie zu %1 und kopieren Sie die Dateien in %2 + Please visit %1 and copy the files to %2 + Bitte gehen Sie zu %1 und kopieren Sie die Dateien in %2 - - + + RobotGui::DlgTrajectorySimulate - - Simulation - Simulation + + Simulation + Simulation - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - Type - Typ + Type + Typ - - Name - Name + Name + Name - - C - C + C + C - - V - V + V + V - - A - A + A + A - - + + RobotGui::TaskEdge2TracParameter - - TaskEdge2TracParameter - TaskEdge2TracParameter + + TaskEdge2TracParameter + TaskEdge2TracParameter - - + + RobotGui::TaskRobot6Axis - - Form - Form + + Form + Form - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4 + A4 + A4 - - A5 - A5 + A5 + A5 - - A6 - A6 + A6 + A6 - - TCP: (200.23,300.23,400.23,234,343,343) - TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) - - Tool: (0,0,400,0,0,0) - Werkzeug: (0,0,400,0,0,0) + Tool: (0,0,400,0,0,0) + Werkzeug: (0,0,400,0,0,0) - - ... - ... + ... + ... - - TaskRobot6Axis - TaskRobot6Axis + + TaskRobot6Axis + TaskRobot6Axis - - + + RobotGui::TaskRobotControl - - TaskRobotControl - TaskRobotControl + + TaskRobotControl + TaskRobotControl - - + + RobotGui::TaskRobotMessages - - TaskRobotMessages - TaskRobotMessages + + TaskRobotMessages + TaskRobotMessages - - + + RobotGui::TaskTrajectory - - Form - Form + + Form + Form - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - 10 ms - 10 ms + 10 ms + 10 ms - - 50 ms - 50 ms + 50 ms + 50 ms - - 100 ms - 100 ms + 100 ms + 100 ms - - 500 ms - 500 ms + 500 ms + 500 ms - - 1 s - 1 s + 1 s + 1 s - - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - Position: (200,23, 300,23, 400,23, 234, 343, 343) + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Position: (200,23, 300,23, 400,23, 234, 343, 343) - - Type - Typ + Type + Typ - - Name - Name + Name + Name - - C - C + C + C - - V - V + V + V - - A - A + A + A - - Trajectory - Bahnverlauf + + Trajectory + Bahnverlauf - - + + RobotGui::TaskTrajectoryDressUpParameter - - Dress Up Parameter - Dress Up Parameter + + Dress Up Parameter + Dress Up Parameter - - + + TaskEdge2TracParameter - - Form - Form + + Form + Form - - Hide / Show - Verbergen / Zeigen + Hide / Show + Verbergen / Zeigen - - Edges: 0 - Punkte: 0 + Edges: 0 + Punkte: 0 - - Cluster: 0 - Cluster: 0 + Cluster: 0 + Cluster: 0 - - Sizing Value: - Größenwert: + Sizing Value: + Größenwert: - - Use orientation of edge - Orientierung am Rand + Use orientation of edge + Orientierung am Rand - TaskEdge2TracParameter - TaskEdge2TracParameter + TaskEdge2TracParameter + TaskEdge2TracParameter - - + + TaskRobot6Axis - TaskRobot6Axis - TaskRobot6Axis + TaskRobot6Axis + TaskRobot6Axis - - + + TaskRobotControl - - Form - Form + + Form + Form - - X+ - X + + X+ + X + - - Y+ - Y + + Y+ + Y + - - Z+ - Z + + Z+ + Z + - - A+ - A + + A+ + A + - - B+ - B + + B+ + B + - - C+ - C + + C+ + C + - - X- - X- + X- + X- - - Y- - Y- + Y- + Y- - - Z- - Z- + Z- + Z- - - A- - A- + A- + A- - - B- - B- + B- + B- - - C- - C- + C- + C- - - Tool 0 - Werkzeug 0 + Tool 0 + Werkzeug 0 - - Tool - Werkzeug + Tool + Werkzeug - - Base 0 - Basis 0 + Base 0 + Basis 0 - - Base - Basis + Base + Basis - - World - Welt - - - - 50mm / 5° - 50mm / 5 ° - - - - 20mm / 2° - 20mm / 2 ° - - - - 10mm / 1° - 10mm / 1 ° - - - - 5mm / 0.5° - 5mm / 0,5 ° - - - - 1mm / 0.1° - 1mm / 0,1 ° + World + Welt - TaskRobotControl - TaskRobotControl + 50mm / 5° + 50mm / 5 ° - - + + 20mm / 2° + 20mm / 2 ° + + + 10mm / 1° + 10mm / 1 ° + + + 5mm / 0.5° + 5mm / 0,5 ° + + + 1mm / 0.1° + 1mm / 0,1 ° + + + TaskRobotControl + TaskRobotControl + + + TaskRobotMessages - - Form - Form + + Form + Form - - clear - Zurücksetzen + clear + Zurücksetzen - TaskRobotMessages - TaskRobotMessages + TaskRobotMessages + TaskRobotMessages - - + + TaskTrajectory - Trajectory - Bahnverlauf + Trajectory + Bahnverlauf - - + + TaskTrajectoryDressUpParameter - - Form - Form + + Form + Form - - Speed & Acceleration: - Geschwindigkeit & Beschleunigung: + Speed & Acceleration: + Geschwindigkeit & Beschleunigung: - - Speed: - Geschwindigkeit: + Speed: + Geschwindigkeit: - - - Use - Verwenden + Use + Verwenden - - Accel: - Beschleunigung: + Accel: + Beschleunigung: - - Don't change Cont - Don't change Cont + Don't change Cont + Don't change Cont - - Continues - Continues + Continues + Continues - - Discontinues - Discontinues + Discontinues + Discontinues - - Position and Orientation: - Position und Orientierung: + Position and Orientation: + Position und Orientierung: - - (0,0,0),(0,0,0) - (0,0,0),(0,0,0) + (0,0,0),(0,0,0) + (0,0,0),(0,0,0) - - ... - ... + ... + ... - - Don't change Position & Orientation - Position und Richtung nicht verändern + Don't change Position & Orientation + Position und Richtung nicht verändern - - Use Orientation - Benutze Orientierung + Use Orientation + Benutze Orientierung - - Add Position - Position hinzufügen + Add Position + Position hinzufügen - - Add Orientation - Hinzufügen der Orientierung + Add Orientation + Hinzufügen der Orientierung - Dress Up Parameter - Dress Up Parameter + Dress Up Parameter + Dress Up Parameter - - + + Workbench - - Robot - Roboter + + Robot + Roboter - - Insert Robots - Roboter einfügen + Insert Robots + Roboter einfügen - - &Robot - &Roboter + &Robot + &Roboter - - Export trajectory - Exportiere Arbeitsbewegung + Export trajectory + Exportiere Arbeitsbewegung - + diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_es.qm b/src/Mod/Robot/Gui/Resources/translations/Robot_es-ES.qm similarity index 69% rename from src/Mod/Robot/Gui/Resources/translations/Robot_es.qm rename to src/Mod/Robot/Gui/Resources/translations/Robot_es-ES.qm index 1a545ab86..bb74ac390 100644 Binary files a/src/Mod/Robot/Gui/Resources/translations/Robot_es.qm and b/src/Mod/Robot/Gui/Resources/translations/Robot_es-ES.qm differ diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_es-ES.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_es-ES.ts new file mode 100644 index 000000000..429885643 --- /dev/null +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_es-ES.ts @@ -0,0 +1,877 @@ + + + + + CmdRobotAddToolShape + + + Robot + Robot + + + Add tool + Agregar herramienta + + + Add a tool shape to the robot + Agregar una forma de herramienta para el robot + + + + CmdRobotConstraintAxle + + + Robot + Robot + + + Place robot... + Emplazar robot ... + + + Place a robot (experimental!) + Colocar un robot (experimental!) + + + + CmdRobotCreateTrajectory + + + Robot + Robot + + + Create trajectory + Crear trayectoria + + + Create a new empty trajectory + Crear una nueva trayectoria vacía + + + + CmdRobotEdge2Trac + + Robot + Robot + + + Edge to Trajectory... + Borde de trayectoria... + + + Generate a Trajectory from a set of edges + Generar una trayectoria de un conjunto de aristas + + + + CmdRobotExportKukaCompact + + + Robot + Robot + + + Kuka compact subroutine... + Subrutina de KUKA compacta ... + + + Export the trajectory as a compact KRL subroutine. + Exportar la trayectoria como una subrutina KRL compacta. + + + + CmdRobotExportKukaFull + + Robot + Robot + + + Kuka full subroutine... + Subrutina Kuka completa ... + + + Export the trajectory as a full KRL subroutine. + Exportar la trayectoria como una subrutina KRL completa. + + + + CmdRobotInsertKukaIR125 + + + Robot + Robot + + + Kuka IR125 + Kuka iR125 + + + Insert a Kuka IR125 into the document. + Inserte un Kuka iR125 en el documento. + + + + CmdRobotInsertKukaIR16 + + Robot + Robot + + + Kuka IR16 + Kuka IR16 + + + Insert a Kuka IR16 into the document. + Inserte un Kuka IR16 en el documento. + + + + CmdRobotInsertKukaIR210 + + Robot + Robot + + + Kuka IR210 + Kuka IR210 + + + Insert a Kuka IR210 into the document. + Inserte un Kuka IR210 en el documento. + + + + CmdRobotInsertKukaIR500 + + Robot + Robot + + + Kuka IR500 + KUKA IR500 + + + Insert a Kuka IR500 into the document. + Inserte una Kuka IR500 en el documento. + + + + CmdRobotInsertWaypoint + + + Robot + Robot + + + Insert in trajectory + Insertar en la trayectoria + + + Insert robot Tool location into trajectory + Inserte la herramienta lacalización del robot en la trayectoria + + + + CmdRobotInsertWaypointPreselect + + Robot + Robot + + + Insert in trajectory + Insertar en la trayectoria + + + Insert preselection position into trajectory (W) + Introduzca la posición de preselección en la trayectoria (W) + + + + CmdRobotRestoreHomePos + + + Robot + Robot + + + Move to home + Mover al inicio + + + + CmdRobotSetDefaultOrientation + + + Robot + Robot + + + Set default orientation + Establecer orientación por defecto + + + set the default orientation for subsequent commands for waypoint creation + Establecer la orientación por defecto para comandos posteriores la la creación de punto de referencia + + + + CmdRobotSetDefaultValues + + Robot + Robot + + + Set default values + Establecer valores por defecto + + + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + Establecer los valores predeterminados de velocidad, aceleración y continuidad para los comandos posteriores a la creación del punto de referencia + + + + CmdRobotSetHomePos + + + Robot + Robot + + + Set the home position + Establezca la posición inicial + + + + CmdRobotSimulate + + Robot + Robot + + + Simulate a trajectory + Simular una trayectoria + + + Run a simulation on a trajectory + Ejecutar una simulación en una trayectoria + + + + CmdRobotTrajectoryCompound + + + Robot + Robot + + + Trajectory compound... + Componer trayectoria... + + + Group and connect some trajectories to one + Agrupar y conectar algunas trayectorias en una + + + + CmdRobotTrajectoryDressUp + + Robot + Robot + + + Dress up trajectory... + Revestir trayectoria... + + + Create a dress up object which overide som aspects of a trajectory + Crear un objeto revestido que anula algunos aspectos de una trayectoria + + + + Gui::TaskView::TaskWatcherCommands + + + Trajectory tools + Herramientas de trayectoria + + + Robot tools + Herramientas de robot + + + Insert Robot + Insertar Robot + + + + QObject + + + Wrong selection + Selección incorrecta + + + Select one Robot and one Trajectory object. + Seleccione un robot y un objeto trayectoria. + + + Trajectory not valid + La trayectoria no es válida + + + You need at least two way points in a trajectory to simulate. + Usted necesita por lo menos dos puntos de paso en una trayectoria para poder simular. + + + + KRL file(*.src) + Archivo KRL (*.src) + + + All Files (*.*) + Todos los archivos (*.*) + + + Export program + Exportar programa + + + + Select one robot and one shape or VRML object. + Seleccione un robot y una forma u objeto VRML. + + + + No preselection + Sin preselección + + + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + Usted tiene que pasar el ratón por encima de una geometría (preselección) para utilizar este comando. Consulte la documentación para obtener más detalles. + + + + Select one Robot to set home postion + Seleccione un Robot para establecer la posición de inicio + + + Select one Robot + Seleccione un Robot + + + + Select one Trajectory object. + Seleccione un objeto de trayectoria. + + + set default speed + Establecer velocidad por defecto + + + speed: (e.g. 1 m/s or 3 cm/s) + velocidad: (p.e. 1 m/s o 3 cm/s) + + + set default continuity + Establecer la continuidad por defecto + + + continuous ? + ¿continuo? + + + set default acceleration + Establecer aceleración por defecto + + + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + aceleración: (p.e., 1 m/s ^ 2 o 3 cm/s ^ 2) + + + Select the Trajectory which you want to dress up. + Seleccione la Trayectoria que desea cubrir. + + + + No robot files installed + No hay archivos de robot instalados + + + Please visit %1 and copy the files to %2 + Por favor, visite %1 y copie los archivos en %2 + + + + RobotGui::DlgTrajectorySimulate + + + Simulation + Simulación + + + |< + |< + + + < + < + + + || + || + + + |> + |> + + + > + > + + + >| + >| + + + % + % + + + Type + Tipo + + + Name + Nombre + + + C + C + + + V + V + + + A + A + + + + RobotGui::TaskEdge2TracParameter + + + TaskEdge2TracParameter + Parámetro TaskEdge2Trac + + + + RobotGui::TaskRobot6Axis + + + Form + Formulario + + + A1 + A1 + + + A2 + A2 + + + A3 + A3 + + + A4 + A4 + + + A5 + A5 + + + A6 + A6 + + + TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) + + + Tool: (0,0,400,0,0,0) + Herramienta: (0,0,400,0,0,0) + + + ... + ... + + + + TaskRobot6Axis + Tarea de robot 6Axis + + + + RobotGui::TaskRobotControl + + + TaskRobotControl + Control de tareas de robot + + + + RobotGui::TaskRobotMessages + + + TaskRobotMessages + Mensaje de tareas de robot + + + + RobotGui::TaskTrajectory + + + Form + Formulario + + + |< + |< + + + < + < + + + || + || + + + |> + |> + + + > + > + + + >| + >| + + + % + % + + + 10 ms + 10 ms + + + 50 ms + 50 ms + + + 100 ms + 100 ms + + + 500 ms + 500 ms + + + 1 s + 1 s + + + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + + + Type + Tipo + + + Name + Nombre + + + C + C + + + V + V + + + A + A + + + + Trajectory + Trayectoria + + + + RobotGui::TaskTrajectoryDressUpParameter + + + Dress Up Parameter + Parámetro de revestido + + + + TaskEdge2TracParameter + + + Form + Formulario + + + Hide / Show + Ocultar / Mostrar + + + Edges: 0 + Bordes: 0 + + + Cluster: 0 + Clúster: 0 + + + Sizing Value: + Valor de tamaño: + + + Use orientation of edge + Utilizar la orientación del borde + + + TaskEdge2TracParameter + Parámetro TaskEdge2Trac + + + + TaskRobot6Axis + + TaskRobot6Axis + Tarea de robot 6Axis + + + + TaskRobotControl + + + Form + Formulario + + + X+ + X+ + + + Y+ + Y+ + + + Z+ + Z+ + + + A+ + A+ + + + B+ + B+ + + + C+ + C+ + + + X- + X- + + + Y- + Y- + + + Z- + Z- + + + A- + A- + + + B- + B- + + + C- + C- + + + Tool 0 + Herramienta 0 + + + Tool + Herramienta + + + Base 0 + Base 0 + + + Base + Base + + + World + Mundo + + + 50mm / 5° + 50mm / 5° + + + 20mm / 2° + 20mm / 2° + + + 10mm / 1° + 10mm / 1° + + + 5mm / 0.5° + 5mm / 0.5° + + + 1mm / 0.1° + 1mm / 0.1° + + + TaskRobotControl + Control de tareas de robot + + + + TaskRobotMessages + + + Form + Formulario + + + clear + limpiar + + + TaskRobotMessages + Mensaje de tareas de robot + + + + TaskTrajectory + + Trajectory + Trayectoria + + + + TaskTrajectoryDressUpParameter + + + Form + Formulario + + + Speed & Acceleration: + Velocidad y Aceleración: + + + Speed: + Velocidad: + + + Use + Uso + + + Accel: + acel: + + + Don't change Cont + No cambiar cont + + + Continues + Continúa + + + Discontinues + Interrumpe + + + Position and Orientation: + Posición y Orientación: + + + (0,0,0),(0,0,0) + (0,0,0), (0,0,0) + + + ... + ... + + + Don't change Position & Orientation + No cambie de Posición y Orientación + + + Use Orientation + Orientación de uso + + + Add Position + Añadir Posición + + + Add Orientation + Añadir Orientación + + + Dress Up Parameter + Parámetro de revestido + + + + Workbench + + + Robot + Robot + + + Insert Robots + Insertar robots + + + &Robot + &Robot + + + Export trajectory + Exportar trayectoria + + + diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_es.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_es.ts deleted file mode 100644 index 18ca53dd9..000000000 --- a/src/Mod/Robot/Gui/Resources/translations/Robot_es.ts +++ /dev/null @@ -1,1044 +0,0 @@ - - - - - CmdRobotAddToolShape - - - Robot - Robot - - - - Add tool - Agregar herramienta - - - - Add a tool shape to the robot - Agregar una forma de herramienta para el robot - - - - CmdRobotConstraintAxle - - - Robot - Robot - - - - Place robot... - Emplazar robot ... - - - - Place a robot (experimental!) - Colocar un robot (experimental!) - - - - CmdRobotCreateTrajectory - - - Robot - Robot - - - - Create trajectory - Crear trayectoria - - - - Create a new empty trajectory - Crear una nueva trayectoria vacía - - - - CmdRobotEdge2Trac - - - Robot - Robot - - - - Edge to Trajectory... - Borde de trayectoria... - - - - Generate a Trajectory from a set of edges - Generar una trayectoria de un conjunto de aristas - - - - CmdRobotExportKukaCompact - - - Robot - Robot - - - - Kuka compact subroutine... - Subrutina de KUKA compacta ... - - - - Export the trajectory as a compact KRL subroutine. - Exportar la trayectoria como una subrutina KRL compacta. - - - - CmdRobotExportKukaFull - - - Robot - Robot - - - - Kuka full subroutine... - Subrutina Kuka completa ... - - - - Export the trajectory as a full KRL subroutine. - Exportar la trayectoria como una subrutina KRL completa. - - - - CmdRobotInsertKukaIR125 - - - Robot - Robot - - - - Kuka IR125 - Kuka iR125 - - - - Insert a Kuka IR125 into the document. - Inserte un Kuka iR125 en el documento. - - - - CmdRobotInsertKukaIR16 - - - Robot - Robot - - - - Kuka IR16 - Kuka IR16 - - - - Insert a Kuka IR16 into the document. - Inserte un Kuka IR16 en el documento. - - - - CmdRobotInsertKukaIR210 - - - Robot - Robot - - - - Kuka IR210 - Kuka IR210 - - - - Insert a Kuka IR210 into the document. - Inserte un Kuka IR210 en el documento. - - - - CmdRobotInsertKukaIR500 - - - Robot - Robot - - - - Kuka IR500 - KUKA IR500 - - - - Insert a Kuka IR500 into the document. - Inserte una Kuka IR500 en el documento. - - - - CmdRobotInsertWaypoint - - - Robot - Robot - - - - Insert in trajectory - Insertar en la trayectoria - - - - Insert robot Tool location into trajectory - Inserte la herramienta lacalización del robot en la trayectoria - - - - CmdRobotInsertWaypointPreselect - - - Robot - Robot - - - - Insert in trajectory - Insertar en la trayectoria - - - - Insert preselection position into trajectory (W) - Introduzca la posición de preselección en la trayectoria (W) - - - - CmdRobotRestoreHomePos - - - Robot - Robot - - - - - Move to home - Mover al inicio - - - - CmdRobotSetDefaultOrientation - - - Robot - Robot - - - - Set default orientation - Establecer orientación por defecto - - - - set the default orientation for subsequent commands for waypoint creation - Establecer la orientación por defecto para comandos posteriores la la creación de punto de referencia - - - - CmdRobotSetDefaultValues - - - Robot - Robot - - - - Set default values - Establecer valores por defecto - - - - set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation - Establecer los valores predeterminados de velocidad, aceleración y continuidad para los comandos posteriores a la creación del punto de referencia - - - - CmdRobotSetHomePos - - - Robot - Robot - - - - - Set the home position - Establezca la posición inicial - - - - CmdRobotSimulate - - - Robot - Robot - - - - Simulate a trajectory - Simular una trayectoria - - - - Run a simulation on a trajectory - Ejecutar una simulación en una trayectoria - - - - CmdRobotTrajectoryCompound - - - Robot - Robot - - - - Trajectory compound... - Componer trayectoria... - - - - Group and connect some trajectories to one - Agrupar y conectar algunas trayectorias en una - - - - CmdRobotTrajectoryDressUp - - - Robot - Robot - - - - Dress up trajectory... - Revestir trayectoria... - - - - Create a dress up object which overide som aspects of a trajectory - Crear un objeto revestido que anula algunos aspectos de una trayectoria - - - - Gui::TaskView::TaskWatcherCommands - - - Trajectory tools - Trajectory tools - - - - Robot tools - Robot tools - - - - Insert Robot - Insert Robot - - - - QObject - - - - - - - - - - - - - Wrong selection - Selección incorrecta - - - - - - - - Select one Robot and one Trajectory object. - Seleccione un robot y un objeto trayectoria. - - - - Trajectory not valid - La trayectoria no es válida - - - - You need at least two way points in a trajectory to simulate. - Usted necesita por lo menos dos puntos de paso en una trayectoria para poder simular. - - - - - KRL file(*.src) - Archivo KRL (*.src) - - - - - All Files (*.*) - Todos los archivos (*.*) - - - - - Export program - Exportar programa - - - - Select one robot and one shape or VRML object. - Seleccione un robot y una forma u objeto VRML. - - - - No preselection - Sin preselección - - - - You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. - Usted tiene que pasar el ratón por encima de una geometría (preselección) para utilizar este comando. Consulte la documentación para obtener más detalles. - - - - Select one Robot to set home postion - Seleccione un Robot para establecer la posición de inicio - - - - Select one Robot - Seleccione un Robot - - - - - Select one Trajectory object. - Seleccione un objeto de trayectoria. - - - - set default speed - Establecer velocidad por defecto - - - - speed: (e.g. 1 m/s or 3 cm/s) - velocidad: (p.e. 1 m/s o 3 cm/s) - - - - set default continuity - Establecer la continuidad por defecto - - - - continuous ? - ¿continuo? - - - - set default acceleration - Establecer aceleración por defecto - - - - acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) - aceleración: (p.e., 1 m/s ^ 2 o 3 cm/s ^ 2) - - - - Select the Trajectory which you want to dress up. - Select the Trajectory which you want to dress up. - - - - No robot files installed - No hay archivos de robot instalados - - - - Please visit %1 and copy the files to %2 - Por favor, visite %1 y copie los archivos en %2 - - - - RobotGui::DlgTrajectorySimulate - - - Simulation - Simulación - - - - |< - |< - - - - < - < - - - - || - || - - - - |> - |> - - - - > - > - - - - >| - >| - - - - % - % - - - - Type - Tipo - - - - Name - Nombre - - - - C - C - - - - V - V - - - - A - A - - - - RobotGui::TaskEdge2TracParameter - - - TaskEdge2TracParameter - Parámetro TaskEdge2Trac - - - - RobotGui::TaskRobot6Axis - - - Form - Formulario - - - - A1 - A1 - - - - A2 - A2 - - - - A3 - A3 - - - - A4 - A4 - - - - A5 - A5 - - - - A6 - A6 - - - - TCP: (200.23,300.23,400.23,234,343,343) - TCP: (200.23,300.23,400.23,234,343,343) - - - - Tool: (0,0,400,0,0,0) - Herramienta: (0,0,400,0,0,0) - - - - ... - ... - - - - TaskRobot6Axis - Tarea de robot 6Axis - - - - RobotGui::TaskRobotControl - - - TaskRobotControl - Control de tareas de robot - - - - RobotGui::TaskRobotMessages - - - TaskRobotMessages - Mensaje de tareas de robot - - - - RobotGui::TaskTrajectory - - - Form - Formulario - - - - |< - |< - - - - < - < - - - - || - || - - - - |> - |> - - - - > - > - - - - >| - >| - - - - % - % - - - - 10 ms - 10 ms - - - - 50 ms - 50 ms - - - - 100 ms - 100 ms - - - - 500 ms - 500 ms - - - - 1 s - 1 s - - - - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - - - - Type - Tipo - - - - Name - Nombre - - - - C - C - - - - V - V - - - - A - A - - - - Trajectory - Trayectoria - - - - RobotGui::TaskTrajectoryDressUpParameter - - - Dress Up Parameter - Parámetro de revestido - - - - TaskEdge2TracParameter - - - Form - Formulario - - - - Hide / Show - Ocultar / Mostrar - - - - Edges: 0 - Bordes: 0 - - - - Cluster: 0 - Clúster: 0 - - - - Sizing Value: - Valor de tamaño: - - - - Use orientation of edge - Use orientation of edge - - - TaskEdge2TracParameter - Parámetro TaskEdge2Trac - - - - TaskRobot6Axis - - TaskRobot6Axis - Tarea de robot 6Axis - - - - TaskRobotControl - - - Form - Formulario - - - - X+ - X+ - - - - Y+ - Y+ - - - - Z+ - Z+ - - - - A+ - A+ - - - - B+ - B+ - - - - C+ - C+ - - - - X- - X- - - - - Y- - Y- - - - - Z- - Z- - - - - A- - A- - - - - B- - B- - - - - C- - C- - - - - Tool 0 - Herramienta 0 - - - - Tool - Herramienta - - - - Base 0 - Base 0 - - - - Base - Base - - - - World - Mundo - - - - 50mm / 5° - 50mm / 5° - - - - 20mm / 2° - 20mm / 2° - - - - 10mm / 1° - 10mm / 1° - - - - 5mm / 0.5° - 5mm / 0.5° - - - - 1mm / 0.1° - 1mm / 0.1° - - - TaskRobotControl - Control de tareas de robot - - - - TaskRobotMessages - - - Form - Formulario - - - - clear - limpiar - - - TaskRobotMessages - Mensaje de tareas de robot - - - - TaskTrajectory - - Trajectory - Trayectoria - - - - TaskTrajectoryDressUpParameter - - - Form - Formulario - - - - Speed & Acceleration: - Velocidad y Aceleración: - - - - Speed: - Velocidad: - - - - - Use - Uso - - - - Accel: - acel: - - - - Don't change Cont - No cambiar cont - - - - Continues - Continúa - - - - Discontinues - Interrumpe - - - - Position and Orientation: - Posición y Orientación: - - - - (0,0,0),(0,0,0) - (0,0,0), (0,0,0) - - - - ... - ... - - - - Don't change Position & Orientation - No cambie de Posición y Orientación - - - - Use Orientation - Orientación de uso - - - - Add Position - Añadir Posición - - - - Add Orientation - Añadir Orientación - - - Dress Up Parameter - Parámetro de revestido - - - - Workbench - - - Robot - Robot - - - - Insert Robots - Insertar robots - - - - &Robot - &Robot - - - - Export trajectory - Exportar trayectoria - - - diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_fi.qm b/src/Mod/Robot/Gui/Resources/translations/Robot_fi.qm index 6b3493fd4..b24ad8cfb 100644 Binary files a/src/Mod/Robot/Gui/Resources/translations/Robot_fi.qm and b/src/Mod/Robot/Gui/Resources/translations/Robot_fi.qm differ diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_fi.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_fi.ts index a80e9b400..ece09e041 100644 --- a/src/Mod/Robot/Gui/Resources/translations/Robot_fi.ts +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_fi.ts @@ -1,1044 +1,877 @@ - - + + CmdRobotAddToolShape - - Robot - Robotti + + Robot + Robotti - - Add tool - Lisää työkalu + Add tool + Lisää työkalu - - Add a tool shape to the robot - Lisää työkalun muoto robotille + Add a tool shape to the robot + Lisää työkalun muoto robotille - - + + CmdRobotConstraintAxle - - Robot - Robotti + + Robot + Robotti - - Place robot... - Paikoita robotti ... + Place robot... + Paikoita robotti ... - - Place a robot (experimental!) - Paikoita robotti (kokeellinen!) + Place a robot (experimental!) + Paikoita robotti (kokeellinen!) - - + + CmdRobotCreateTrajectory - - Robot - Robotti + + Robot + Robotti - - Create trajectory - Luo liikerata + Create trajectory + Luo liikerata - - Create a new empty trajectory - Luo uusi tyhjä liikerata + Create a new empty trajectory + Luo uusi tyhjä liikerata - - + + CmdRobotEdge2Trac - - Robot - Robotti + Robot + Robotti - - Edge to Trajectory... - Edge to Trajectory... + Edge to Trajectory... + Reuna liikeradalle... - - Generate a Trajectory from a set of edges - Generate a Trajectory from a set of edges + Generate a Trajectory from a set of edges + Luo liikeradan asetetuista reunoista - - + + CmdRobotExportKukaCompact - - Robot - Robotti + + Robot + Robotti - - Kuka compact subroutine... - Kuka kompakti alirutiini... + Kuka compact subroutine... + Kuka kompakti alirutiini... - - Export the trajectory as a compact KRL subroutine. - Vie liikerata kompaktina KRL-alirutiinina. + Export the trajectory as a compact KRL subroutine. + Vie liikerata kompaktina KRL-alirutiinina. - - + + CmdRobotExportKukaFull - - Robot - Robotti + Robot + Robotti - - Kuka full subroutine... - Kuka täydellinen alirutiini... + Kuka full subroutine... + Kuka täydellinen alirutiini... - - Export the trajectory as a full KRL subroutine. - Vie liikerata kuten täydellinen KRL-alirutiini. + Export the trajectory as a full KRL subroutine. + Vie liikerata kuten täydellinen KRL-alirutiini. - - + + CmdRobotInsertKukaIR125 - - Robot - Robotti + + Robot + Robotti - - Kuka IR125 - Kuka IR125 + Kuka IR125 + Kuka IR125 - - Insert a Kuka IR125 into the document. - Lisää Kuka IR125 dokumenttiin. + Insert a Kuka IR125 into the document. + Lisää Kuka IR125 dokumenttiin. - - + + CmdRobotInsertKukaIR16 - - Robot - Robotti + Robot + Robotti - - Kuka IR16 - Kuka IR16 + Kuka IR16 + Kuka IR16 - - Insert a Kuka IR16 into the document. - Lisää Kuka IR16 dokumenttiin. + Insert a Kuka IR16 into the document. + Lisää Kuka IR16 dokumenttiin. - - + + CmdRobotInsertKukaIR210 - - Robot - Robotti + Robot + Robotti - - Kuka IR210 - Kuka IR210 + Kuka IR210 + Kuka IR210 - - Insert a Kuka IR210 into the document. - Lisää Kuka IR500 dokumenttiin. + Insert a Kuka IR210 into the document. + Lisää Kuka IR500 dokumenttiin. - - + + CmdRobotInsertKukaIR500 - - Robot - Robotti + Robot + Robotti - - Kuka IR500 - Kuka IR500 + Kuka IR500 + Kuka IR500 - - Insert a Kuka IR500 into the document. - Lisää Kuka IR500 dokumenttiin. + Insert a Kuka IR500 into the document. + Lisää Kuka IR500 dokumenttiin. - - + + CmdRobotInsertWaypoint - - Robot - Robotti + + Robot + Robotti - - Insert in trajectory - Lisää liikeradalle + Insert in trajectory + Lisää liikeradalle - - Insert robot Tool location into trajectory - Insert robot Tool location into trajectory + Insert robot Tool location into trajectory + Lisää robotti työkalun sijainti liikerataan - - + + CmdRobotInsertWaypointPreselect - - Robot - Robotti + Robot + Robotti - - Insert in trajectory - Lisää liikeradalle + Insert in trajectory + Lisää liikeradalle - - Insert preselection position into trajectory (W) - Insert preselection position into trajectory (W) + Insert preselection position into trajectory (W) + Aseta esivalinnan asema liikerataan (W) - - + + CmdRobotRestoreHomePos - - Robot - Robotti + + Robot + Robotti - - - Move to home - Siirrä alkuasentoon + Move to home + Siirrä alkuasentoon - - + + CmdRobotSetDefaultOrientation - - Robot - Robotti + + Robot + Robotti - - Set default orientation - Set default orientation + Set default orientation + Aseta oletussuunta - - set the default orientation for subsequent commands for waypoint creation - set the default orientation for subsequent commands for waypoint creation + set the default orientation for subsequent commands for waypoint creation + määrittää seuraavien komentojen reittipisteiden luomista varten oletussuunnan - - + + CmdRobotSetDefaultValues - - Robot - Robotti + Robot + Robotti - - Set default values - Set default values + Set default values + Aseta oletusarvot - - set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation - set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + asettaa oletusarvot nopeudelle, kiihtyvyydelle ja jatkuvuudelle myöhempien käskyjen reittipisteiden luomiselle - - + + CmdRobotSetHomePos - - Robot - Robotti + + Robot + Robotti - - - Set the home position - Aseta alkuasento + Set the home position + Aseta alkuasento - - + + CmdRobotSimulate - - Robot - Robotti + Robot + Robotti - - Simulate a trajectory - Simuloi liikerata + Simulate a trajectory + Simuloi liikerata - - Run a simulation on a trajectory - Aja liikerata simulaatio + Run a simulation on a trajectory + Aja liikerata simulaatio - - + + CmdRobotTrajectoryCompound - - Robot - Robotti + + Robot + Robotti - - Trajectory compound... - Trajectory compound... + Trajectory compound... + Liitä liikerata... - - Group and connect some trajectories to one - Group and connect some trajectories to one + Group and connect some trajectories to one + Ryhmitä ja yhdistä joku liikerata yhdelle - - + + CmdRobotTrajectoryDressUp - - Robot - Robotti + Robot + Robotti - - Dress up trajectory... - Dress up trajectory... + Dress up trajectory... + Pue liikerata... - - Create a dress up object which overide som aspects of a trajectory - Create a dress up object which overide som aspects of a trajectory + Create a dress up object which overide som aspects of a trajectory + Luo puetun objektin, joka syrjäyttää joitakin muotoja liikeradasta - - + + Gui::TaskView::TaskWatcherCommands - - Trajectory tools - Trajectory tools + + Trajectory tools + Liikeradan työkalut - - Robot tools - Robot tools + Robot tools + Robotti työkalut - - Insert Robot - Insert Robot + Insert Robot + Lisää Robotti - - + + QObject - - - - - - - - - - - - Wrong selection - Väärä valinta + + Wrong selection + Väärä valinta - - - - - - Select one Robot and one Trajectory object. - Select one Robot and one Trajectory object. + Select one Robot and one Trajectory object. + Valitse yksi robotti ja yksi liikeradan objekti. - - Trajectory not valid - Liikerata ei kelpaa + Trajectory not valid + Liikerata ei kelpaa - - You need at least two way points in a trajectory to simulate. - You need at least two way points in a trajectory to simulate. + You need at least two way points in a trajectory to simulate. + Tarvitset ainakin kaksi reittiä pisteille simuloidaksesi liikerataa. - - - KRL file(*.src) - KRL-tiedosto(*.src) + + KRL file(*.src) + KRL-tiedosto(*.src) - - - All Files (*.*) - Kaikki tiedostot (*.*) + All Files (*.*) + Kaikki tiedostot (*.*) - - - Export program - Vie ohjelma + Export program + Vie ohjelma - - Select one robot and one shape or VRML object. - Select one robot and one shape or VRML object. + + Select one robot and one shape or VRML object. + Valitse yksi robotti ja yksi muoto tai VRML objekti. - - No preselection - Ei esivalintaa + + No preselection + Ei esivalintaa - - You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. - You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + Kohdista hiiren kursori lähelle geometriaa (esivalinta), kun haluat käyttää tätä komentoa. Katso lisätietoja ohjeista. - - Select one Robot to set home postion - Select one Robot to set home postion + + Select one Robot to set home postion + Valitse yksi robotti kotisijainniksi - - Select one Robot - Select one Robot + Select one Robot + Valitse yksi Robotti - - - Select one Trajectory object. - Select one Trajectory object. + + Select one Trajectory object. + Valitse yksi liikeradan objekti. - - set default speed - set default speed + set default speed + Aseta oletusarvoinen nopeus - - speed: (e.g. 1 m/s or 3 cm/s) - speed: (e.g. 1 m/s or 3 cm/s) + speed: (e.g. 1 m/s or 3 cm/s) + nopeus: (esim. 1 m/s tai 3 cm/s) - - set default continuity - set default continuity + set default continuity + Aseta oletusarvoinen jatkuvuus - - continuous ? - continuous ? + continuous ? + jatkuva ? - - set default acceleration - set default acceleration + set default acceleration + aseta oletus kiihtyvyys - - acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) - acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + kiihtyvyys: (esimerkiksi 1 m/s ^ 2 tai 3 cm/s ^ 2) - - Select the Trajectory which you want to dress up. - Select the Trajectory which you want to dress up. + Select the Trajectory which you want to dress up. + Valitse liikerata, jonka haluat luoda. - - No robot files installed - No robot files installed + + No robot files installed + Robotti-tiedostoja ei ole asennettu - - Please visit %1 and copy the files to %2 - Please visit %1 and copy the files to %2 + Please visit %1 and copy the files to %2 + Siirry %1 ja kopioi tiedost %2:oon - - + + RobotGui::DlgTrajectorySimulate - - Simulation - Simulointi + + Simulation + Simulointi - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - Type - Tyyppi + Type + Tyyppi - - Name - Nimi + Name + Nimi - - C - C + C + C - - V - V + V + V - - A - A + A + A - - + + RobotGui::TaskEdge2TracParameter - - TaskEdge2TracParameter - TaskEdge2TracParameter + + TaskEdge2TracParameter + TaskEdge2TracParameter - - + + RobotGui::TaskRobot6Axis - - Form - Lomake + + Form + Lomake - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4 + A4 + A4 - - A5 - A5 + A5 + A5 - - A6 - A6 + A6 + A6 - - TCP: (200.23,300.23,400.23,234,343,343) - TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) - - Tool: (0,0,400,0,0,0) - Tool: (0,0,400,0,0,0) + Tool: (0,0,400,0,0,0) + Tool: (0,0,400,0,0,0) - - ... - ... + ... + ... - - TaskRobot6Axis - Tehtävä Robotti6 Akselit + + TaskRobot6Axis + Tehtävä Robotti6 Akselit - - + + RobotGui::TaskRobotControl - - TaskRobotControl - Robotin tehtävien hallinta + + TaskRobotControl + Robotin tehtävien hallinta - - + + RobotGui::TaskRobotMessages - - TaskRobotMessages - Robotin tehtävien viestit + + TaskRobotMessages + Robotin tehtävien viestit - - + + RobotGui::TaskTrajectory - - Form - Lomake + + Form + Lomake - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - 10 ms - 10 ms + 10 ms + 10 ms - - 50 ms - 50 ms + 50 ms + 50 ms - - 100 ms - 100 ms + 100 ms + 100 ms - - 500 ms - 500 ms + 500 ms + 500 ms - - 1 s - 1 s + 1 s + 1 s - - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - Pos: (200.23,300.23,400.23,234,343,343) + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Pos: (200.23,300.23,400.23,234,343,343) - - Type - Tyyppi + Type + Tyyppi - - Name - Nimi + Name + Nimi - - C - C + C + C - - V - V + V + V - - A - A + A + A - - Trajectory - Liikerata + + Trajectory + Liikerata - - + + RobotGui::TaskTrajectoryDressUpParameter - - Dress Up Parameter - Dress Up Parameter + + Dress Up Parameter + Dress Up Parameter - - + + TaskEdge2TracParameter - - Form - Lomake + + Form + Lomake - - Hide / Show - Hide / Show + Hide / Show + Piilota/Näytä - - Edges: 0 - Edges: 0 + Edges: 0 + Reunat: 0 - - Cluster: 0 - Cluster: 0 + Cluster: 0 + Klusteri: 0 - - Sizing Value: - Sizing Value: + Sizing Value: + Mitoitus Arvo: - - Use orientation of edge - Use orientation of edge + Use orientation of edge + Käytä reunan suuntaa - TaskEdge2TracParameter - TaskEdge2TracParameter + TaskEdge2TracParameter + TaskEdge2TracParameter - - + + TaskRobot6Axis - TaskRobot6Axis - Tehtävä Robotti6 Akselit + TaskRobot6Axis + Tehtävä Robotti6 Akselit - - + + TaskRobotControl - - Form - Lomake + + Form + Lomake - - X+ - X+ + X+ + X+ - - Y+ - Y+ + Y+ + Y+ - - Z+ - Z+ + Z+ + Z+ - - A+ - A+ + A+ + A+ - - B+ - B+ + B+ + B+ - - C+ - C+ + C+ + C+ - - X- - X- + X- + X- - - Y- - Y- + Y- + Y- - - Z- - Z- + Z- + Z- - - A- - A- + A- + A- - - B- - B- + B- + B- - - C- - C- + C- + C- - - Tool 0 - Työkalu 0 + Tool 0 + Työkalu 0 - - Tool - Työkalu + Tool + Työkalu - - Base 0 - Perusta 0 + Base 0 + Perusta 0 - - Base - Perusta + Base + Perusta - - World - Maailma - - - - 50mm / 5° - 50mm / 5 ° - - - - 20mm / 2° - 20mm / 2 ° - - - - 10mm / 1° - 10mm / 1 ° - - - - 5mm / 0.5° - 5mm / 0,5 ° - - - - 1mm / 0.1° - 1 mm / 0,1 ° + World + Maailma - TaskRobotControl - Robotin tehtävien hallinta + 50mm / 5° + 50mm / 5 ° - - + + 20mm / 2° + 20mm / 2 ° + + + 10mm / 1° + 10mm / 1 ° + + + 5mm / 0.5° + 5mm / 0,5 ° + + + 1mm / 0.1° + 1 mm / 0,1 ° + + + TaskRobotControl + Robotin tehtävien hallinta + + + TaskRobotMessages - - Form - Lomake + + Form + Lomake - - clear - tyhjennä + clear + tyhjennä - TaskRobotMessages - Robotin tehtävien viestit + TaskRobotMessages + Robotin tehtävien viestit - - + + TaskTrajectory - Trajectory - Liikerata + Trajectory + Liikerata - - + + TaskTrajectoryDressUpParameter - - Form - Lomake + + Form + Lomake - - Speed & Acceleration: - Speed & Acceleration: + Speed & Acceleration: + Nopeus & Kiihtyvyys: - - Speed: - Speed: + Speed: + Nopeus: - - - Use - Use + Use + Käytä - - Accel: - Accel: + Accel: + Kiihdytys: - - Don't change Cont - Don't change Cont + Don't change Cont + Älä muuta Jatkuvuutta - - Continues - Continues + Continues + Jatkuu - - Discontinues - Discontinues + Discontinues + Pysäyttää - - Position and Orientation: - Position and Orientation: + Position and Orientation: + Sijainti ja suunta: - - (0,0,0),(0,0,0) - (0,0,0),(0,0,0) + (0,0,0),(0,0,0) + (0,0,0),(0,0,0) - - ... - ... + ... + ... - - Don't change Position & Orientation - Don't change Position & Orientation + Don't change Position & Orientation + Älä muuta sijaintia & suuntaa - - Use Orientation - Use Orientation + Use Orientation + Käytä suuntaa - - Add Position - Add Position + Add Position + Lisää sijainti - - Add Orientation - Add Orientation + Add Orientation + Lisää suunta - Dress Up Parameter - Dress Up Parameter + Dress Up Parameter + Dress Up Parameter - - + + Workbench - - Robot - Robotti + + Robot + Robotti - - Insert Robots - Lisää robotit + Insert Robots + Lisää robotit - - &Robot - &Robotti + &Robot + &Robotti - - Export trajectory - Liikeradan vienti + Export trajectory + Liikeradan vienti - + diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_fr.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_fr.ts index e7bef52a0..3e72fab2f 100644 --- a/src/Mod/Robot/Gui/Resources/translations/Robot_fr.ts +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_fr.ts @@ -1,1045 +1,878 @@ - - + + CmdRobotAddToolShape - - Robot - Robot + + Robot + Robot - - Add tool - Ajouter l'outil + Add tool + Ajouter l'outil - - Add a tool shape to the robot - Ajouter une forme d'outil pour le robot + Add a tool shape to the robot + Ajouter une forme d'outil pour le robot - - + + CmdRobotConstraintAxle - - Robot - Robot + + Robot + Robot - - Place robot... - Placer un robot... + Place robot... + Placer un robot... - - Place a robot (experimental!) - Placez un robot (expérimental !) + Place a robot (experimental!) + Placez un robot (expérimental !) - - + + CmdRobotCreateTrajectory - - Robot - Robot + + Robot + Robot - - Create trajectory - Créer une trajectoire + Create trajectory + Créer une trajectoire - - Create a new empty trajectory - Créer une nouvelle trajectoire vide + Create a new empty trajectory + Créer une nouvelle trajectoire vide - - + + CmdRobotEdge2Trac - - Robot - Robot + Robot + Robot - - Edge to Trajectory... - Arête vers trajectoire ... + Edge to Trajectory... + Arête vers trajectoire ... - - Generate a Trajectory from a set of edges - Générer une trajectoire à partir d'un ensemble d'arêtes + Generate a Trajectory from a set of edges + Générer une trajectoire à partir d'un ensemble d'arêtes - - + + CmdRobotExportKukaCompact - - Robot - Robot + + Robot + Robot - - Kuka compact subroutine... - sous-programme compressé Kuka... + Kuka compact subroutine... + sous-programme compressé Kuka... - - Export the trajectory as a compact KRL subroutine. - Exporter la trajectoire comme un sous-programme compressé KRL. + Export the trajectory as a compact KRL subroutine. + Exporter la trajectoire comme un sous-programme compressé KRL. - - + + CmdRobotExportKukaFull - - Robot - Robot + Robot + Robot - - Kuka full subroutine... - sous-programme complet Kuka... + Kuka full subroutine... + sous-programme complet Kuka... - - Export the trajectory as a full KRL subroutine. - Exporter la trajectoire comme un sous-programme KRL intégral. + Export the trajectory as a full KRL subroutine. + Exporter la trajectoire comme un sous-programme KRL intégral. - - + + CmdRobotInsertKukaIR125 - - Robot - Robot + + Robot + Robot - - Kuka IR125 - Kuka IR125 + Kuka IR125 + Kuka IR125 - - Insert a Kuka IR125 into the document. - Insérer un IR125 Kuka dans le document. + Insert a Kuka IR125 into the document. + Insérer un IR125 Kuka dans le document. - - + + CmdRobotInsertKukaIR16 - - Robot - Robot + Robot + Robot - - Kuka IR16 - Kuka IR16 + Kuka IR16 + Kuka IR16 - - Insert a Kuka IR16 into the document. - Insérer un IR500 Kuka dans le document. + Insert a Kuka IR16 into the document. + Insérer un IR500 Kuka dans le document. - - + + CmdRobotInsertKukaIR210 - - Robot - Robot + Robot + Robot - - Kuka IR210 - Kuka IR210 + Kuka IR210 + Kuka IR210 - - Insert a Kuka IR210 into the document. - Insérer un IR210 Kuka dans le document. + Insert a Kuka IR210 into the document. + Insérer un IR210 Kuka dans le document. - - + + CmdRobotInsertKukaIR500 - - Robot - Robot + Robot + Robot - - Kuka IR500 - Kuka IR500 + Kuka IR500 + Kuka IR500 - - Insert a Kuka IR500 into the document. - Insérer un IR500 Kuka dans le document. + Insert a Kuka IR500 into the document. + Insérer un IR500 Kuka dans le document. - - + + CmdRobotInsertWaypoint - - Robot - Robot + + Robot + Robot - - Insert in trajectory - Insérer dans la trajectoire + Insert in trajectory + Insérer dans la trajectoire - - Insert robot Tool location into trajectory - Insérer la position de l'outil robot dans la trajectoire + Insert robot Tool location into trajectory + Insérer la position de l'outil robot dans la trajectoire - - + + CmdRobotInsertWaypointPreselect - - Robot - Robot + Robot + Robot - - Insert in trajectory - Insérer dans la trajectoire + Insert in trajectory + Insérer dans la trajectoire - - Insert preselection position into trajectory (W) - Insérer la position de la présélection dans la trajectoire (W) + Insert preselection position into trajectory (W) + Insérer la position de la présélection dans la trajectoire (W) - - + + CmdRobotRestoreHomePos - - Robot - Robot + + Robot + Robot - - - Move to home - Passer à la position de départ + Move to home + Passer à la position de départ - - + + CmdRobotSetDefaultOrientation - - Robot - Robot + + Robot + Robot - - Set default orientation - Définir l'orientation par défaut + Set default orientation + Définir l'orientation par défaut - - set the default orientation for subsequent commands for waypoint creation - Définir l'orientation par défaut pour les commandes suivantes pour la création de points de passage + set the default orientation for subsequent commands for waypoint creation + Définir l'orientation par défaut pour les commandes suivantes pour la création de points de passage - - + + CmdRobotSetDefaultValues - - Robot - Robot + Robot + Robot - - Set default values - Définir les valeurs par défaut + Set default values + Définir les valeurs par défaut - - set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation - Définir les valeurs par défaut pour la vitesse, l'accélération et la continuité pour les commandes de création de points de passage suivants + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + Définir les valeurs par défaut pour la vitesse, l'accélération et la continuité pour les commandes de création de points de passage suivants - - + + CmdRobotSetHomePos - - Robot - Robot + + Robot + Robot - - - Set the home position - Définir la position de départ + Set the home position + Définir la position de départ - - + + CmdRobotSimulate - - Robot - Robot + Robot + Robot - - Simulate a trajectory - Simuler une trajectoire + Simulate a trajectory + Simuler une trajectoire - - Run a simulation on a trajectory - Lancer une simulation sur une trajectoire + Run a simulation on a trajectory + Lancer une simulation sur une trajectoire - - + + CmdRobotTrajectoryCompound - - Robot - Robot + + Robot + Robot - - Trajectory compound... - Composé de trajectoire... + Trajectory compound... + Composé de trajectoire... - - Group and connect some trajectories to one - Grouper et connecter des trajectoires en une seule + Group and connect some trajectories to one + Grouper et connecter des trajectoires en une seule - - + + CmdRobotTrajectoryDressUp - - Robot - Robot + Robot + Robot - - Dress up trajectory... - Habiller une trajectoire... + Dress up trajectory... + Habiller une trajectoire... - - Create a dress up object which overide som aspects of a trajectory - Créer un habillage qui supplante certains aspects d'une trajectoire + Create a dress up object which overide som aspects of a trajectory + Créer un habillage qui supplante certains aspects d'une trajectoire - - + + Gui::TaskView::TaskWatcherCommands - - Trajectory tools - Outils de trajectoire + + Trajectory tools + Outils de trajectoire - - Robot tools - Outils de robot + Robot tools + Outils de robot - - Insert Robot - Insérer un robot + Insert Robot + Insérer un robot - - + + QObject - - - - - - - - - - - - Wrong selection - Mauvaise sélection + + Wrong selection + Mauvaise sélection - - - - - - Select one Robot and one Trajectory object. - Sélectionnez un robot et une trajectoire. + Select one Robot and one Trajectory object. + Sélectionnez un robot et une trajectoire. - - Trajectory not valid - Trajectoire non valide + Trajectory not valid + Trajectoire non valide - - You need at least two way points in a trajectory to simulate. - Vous avez besoin d'au moins deux points sur une trajectoire pour la simulation. + You need at least two way points in a trajectory to simulate. + Vous avez besoin d'au moins deux points sur une trajectoire pour la simulation. - - - KRL file(*.src) - fichier KRL (*. src) + + KRL file(*.src) + fichier KRL (*. src) - - - All Files (*.*) - Tous les fichiers (*.*) + All Files (*.*) + Tous les fichiers (*.*) - - - Export program - Exporter le programme + Export program + Exporter le programme - - Select one robot and one shape or VRML object. - Sélectionnez un robot et une forme ou un objet VRML. + + Select one robot and one shape or VRML object. + Sélectionnez un robot et une forme ou un objet VRML. - - No preselection - Aucune présélection + + No preselection + Aucune présélection - - You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. - Avec la souris, vous devez passer au-dessus d'une géométrie (présélection) + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + Avec la souris, vous devez passer au-dessus d'une géométrie (présélection) pour utiliser cette commande. Consultez la documentation pour plus de détails. - - Select one Robot to set home postion - Sélectionnez un robot pour définir la position d'origine + + Select one Robot to set home postion + Sélectionnez un robot pour définir la position d'origine - - Select one Robot - Sélectionnez un robot + Select one Robot + Sélectionnez un robot - - - Select one Trajectory object. - Sélectionnez un objet de trajectoire. + + Select one Trajectory object. + Sélectionnez un objet de trajectoire. - - set default speed - définir la vitesse par défaut + set default speed + définir la vitesse par défaut - - speed: (e.g. 1 m/s or 3 cm/s) - Vitesse : (par exemple 1 m/s ou 3 cm/s) + speed: (e.g. 1 m/s or 3 cm/s) + Vitesse : (par exemple 1 m/s ou 3 cm/s) - - set default continuity - définir la continuité par défaut + set default continuity + définir la continuité par défaut - - continuous ? - en continu ? + continuous ? + en continu ? - - set default acceleration - définir l'accélération par défaut + set default acceleration + définir l'accélération par défaut - - acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) - accélération : (p.ex. 1 m/s^2 or 3 cm/s^2) + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + accélération : (p.ex. 1 m/s^2 or 3 cm/s^2) - - Select the Trajectory which you want to dress up. - Sélectionnez la trajectoire que vous voulez habiller. + Select the Trajectory which you want to dress up. + Sélectionnez la trajectoire que vous voulez habiller. - - No robot files installed - Aucun fichier de robot installé + + No robot files installed + Aucun fichier de robot installé - - Please visit %1 and copy the files to %2 - Visitez %1 et copiez les fichiers vers %2 + Please visit %1 and copy the files to %2 + Visitez %1 et copiez les fichiers vers %2 - - + + RobotGui::DlgTrajectorySimulate - - Simulation - Simulation + + Simulation + Simulation - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - Type - Type + Type + Type - - Name - Nom + Name + Nom - - C - C + C + C - - V - V + V + V - - A - A + A + A - - + + RobotGui::TaskEdge2TracParameter - - TaskEdge2TracParameter - TaskEdge2TracParameter + + TaskEdge2TracParameter + TaskEdge2TracParameter - - + + RobotGui::TaskRobot6Axis - - Form - Formulaire + + Form + Formulaire - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4 + A4 + A4 - - A5 - A5 + A5 + A5 - - A6 - A6 + A6 + A6 - - TCP: (200.23,300.23,400.23,234,343,343) - TCP : (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) + TCP : (200.23,300.23,400.23,234,343,343) - - Tool: (0,0,400,0,0,0) - Outil : (0,0,400,0,0,0) + Tool: (0,0,400,0,0,0) + Outil : (0,0,400,0,0,0) - - ... - ... + ... + ... - - TaskRobot6Axis - TaskRobot6Axis + + TaskRobot6Axis + TaskRobot6Axis - - + + RobotGui::TaskRobotControl - - TaskRobotControl - TaskRobotControl + + TaskRobotControl + TaskRobotControl - - + + RobotGui::TaskRobotMessages - - TaskRobotMessages - TaskRobotMessages + + TaskRobotMessages + TaskRobotMessages - - + + RobotGui::TaskTrajectory - - Form - Formulaire + + Form + Formulaire - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - 10 ms - 10 ms + 10 ms + 10 ms - - 50 ms - 50 ms + 50 ms + 50 ms - - 100 ms - 100 ms + 100 ms + 100 ms - - 500 ms - 500 ms + 500 ms + 500 ms - - 1 s - 1 s + 1 s + 1 s - - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - Pos : (200.23, 300.23, 400.23, 234, 343, 343) + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Pos : (200.23, 300.23, 400.23, 234, 343, 343) - - Type - Type + Type + Type - - Name - Nom + Name + Nom - - C - C + C + C - - V - V + V + V - - A - A + A + A - - Trajectory - Trajectoire + + Trajectory + Trajectoire - - + + RobotGui::TaskTrajectoryDressUpParameter - - Dress Up Parameter - Paramètre d'habillage + + Dress Up Parameter + Paramètre d'habillage - - + + TaskEdge2TracParameter - - Form - Formulaire + + Form + Formulaire - - Hide / Show - Afficher / Masquer + Hide / Show + Afficher / Masquer - - Edges: 0 - Arêtes : 0 + Edges: 0 + Arêtes : 0 - - Cluster: 0 - Groupe : 0 + Cluster: 0 + Groupe : 0 - - Sizing Value: - Valeur de dimensionnement : + Sizing Value: + Valeur de dimensionnement : - - Use orientation of edge - Utiliser l'orientation de l'arête + Use orientation of edge + Utiliser l'orientation de l'arête - TaskEdge2TracParameter - TaskEdge2TracParameter + TaskEdge2TracParameter + TaskEdge2TracParameter - - + + TaskRobot6Axis - TaskRobot6Axis - TaskRobot6Axis + TaskRobot6Axis + TaskRobot6Axis - - + + TaskRobotControl - - Form - Formulaire + + Form + Formulaire - - X+ - X+ + X+ + X+ - - Y+ - Y+ + Y+ + Y+ - - Z+ - Z+ + Z+ + Z+ - - A+ - A+ + A+ + A+ - - B+ - B+ + B+ + B+ - - C+ - C+ + C+ + C+ - - X- - X- + X- + X- - - Y- - Y- + Y- + Y- - - Z- - Z- + Z- + Z- - - A- - A- + A- + A- - - B- - B- + B- + B- - - C- - C- + C- + C- - - Tool 0 - Outil 0 + Tool 0 + Outil 0 - - Tool - Outil + Tool + Outil - - Base 0 - Base 0 + Base 0 + Base 0 - - Base - Base + Base + Base - - World - Monde - - - - 50mm / 5° - 50mm / 5° - - - - 20mm / 2° - 20mm / 2° - - - - 10mm / 1° - 10mm / 1° - - - - 5mm / 0.5° - 5mm / 0,5° - - - - 1mm / 0.1° - 1mm / 0,1° + World + Monde - TaskRobotControl - TaskRobotControl + 50mm / 5° + 50mm / 5° - - + + 20mm / 2° + 20mm / 2° + + + 10mm / 1° + 10mm / 1° + + + 5mm / 0.5° + 5mm / 0,5° + + + 1mm / 0.1° + 1mm / 0,1° + + + TaskRobotControl + TaskRobotControl + + + TaskRobotMessages - - Form - Formulaire + + Form + Formulaire - - clear - Effacer + clear + Effacer - TaskRobotMessages - TaskRobotMessages + TaskRobotMessages + TaskRobotMessages - - + + TaskTrajectory - Trajectory - Trajectoire + Trajectory + Trajectoire - - + + TaskTrajectoryDressUpParameter - - Form - Formulaire + + Form + Formulaire - - Speed & Acceleration: - Vitesse et accélération : + Speed & Acceleration: + Vitesse et accélération : - - Speed: - Vitesse : + Speed: + Vitesse : - - - Use - Utilisation + Use + Utilisation - - Accel: - Accél : + Accel: + Accél : - - Don't change Cont - Ne pas changer Cont + Don't change Cont + Ne pas changer Cont - - Continues - Continu + Continues + Continu - - Discontinues - Interrompt + Discontinues + Interrompt - - Position and Orientation: - Position et orientation : + Position and Orientation: + Position et orientation : - - (0,0,0),(0,0,0) - (0,0,0),(0,0,0) + (0,0,0),(0,0,0) + (0,0,0),(0,0,0) - - ... - ... + ... + ... - - Don't change Position & Orientation - Ne pas changer la position ni l'orientation + Don't change Position & Orientation + Ne pas changer la position ni l'orientation - - Use Orientation - Utiliser l'orientation + Use Orientation + Utiliser l'orientation - - Add Position - Ajouter la position + Add Position + Ajouter la position - - Add Orientation - Ajouter l'orientation + Add Orientation + Ajouter l'orientation - Dress Up Parameter - Paramètre d'habillage + Dress Up Parameter + Paramètre d'habillage - - + + Workbench - - Robot - Robot + + Robot + Robot - - Insert Robots - Insérer des robots + Insert Robots + Insérer des robots - - &Robot - &Robot + &Robot + &Robot - - Export trajectory - Exporter la trajectoire + Export trajectory + Exporter la trajectoire - + diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_hr.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_hr.ts index f3cd35fa8..4722cd343 100644 --- a/src/Mod/Robot/Gui/Resources/translations/Robot_hr.ts +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_hr.ts @@ -1,1044 +1,877 @@ - - + + CmdRobotAddToolShape - - Robot - Robot + + Robot + Robot - - Add tool - Dodaj alat + Add tool + Dodaj alat - - Add a tool shape to the robot - Dodavanje alata za oblik za robota + Add a tool shape to the robot + Dodavanje alata za oblik za robota - - + + CmdRobotConstraintAxle - - Robot - Robot + + Robot + Robot - - Place robot... - Mjesto robota ... + Place robot... + Mjesto robota ... - - Place a robot (experimental!) - Postavite robota (experimental!) + Place a robot (experimental!) + Postavite robota (experimental!) - - + + CmdRobotCreateTrajectory - - Robot - Robot + + Robot + Robot - - Create trajectory - Napravi putanju + Create trajectory + Napravi putanju - - Create a new empty trajectory - Napravi novu prazanu putanju + Create a new empty trajectory + Napravi novu prazanu putanju - - + + CmdRobotEdge2Trac - - Robot - Robot + Robot + Robot - - Edge to Trajectory... - rub na putanji ... + Edge to Trajectory... + rub na putanji ... - - Generate a Trajectory from a set of edges - Generirajte putanju za set rubova + Generate a Trajectory from a set of edges + Generirajte putanju za set rubova - - + + CmdRobotExportKukaCompact - - Robot - Robot + + Robot + Robot - - Kuka compact subroutine... - Kuka kompaktni potprogram ... + Kuka compact subroutine... + Kuka kompaktni potprogram ... - - Export the trajectory as a compact KRL subroutine. - Izvoz putanje kao kompaktni KRL potprogram. + Export the trajectory as a compact KRL subroutine. + Izvoz putanje kao kompaktni KRL potprogram. - - + + CmdRobotExportKukaFull - - Robot - Robot + Robot + Robot - - Kuka full subroutine... - Kuka puni potprogram ... + Kuka full subroutine... + Kuka puni potprogram ... - - Export the trajectory as a full KRL subroutine. - Izvoz putanje kao pun KRL potprogram. + Export the trajectory as a full KRL subroutine. + Izvoz putanje kao pun KRL potprogram. - - + + CmdRobotInsertKukaIR125 - - Robot - Robot + + Robot + Robot - - Kuka IR125 - Kuka IR125 + Kuka IR125 + Kuka IR125 - - Insert a Kuka IR125 into the document. - Umetnite Kuka IR500 u dokument. + Insert a Kuka IR125 into the document. + Umetnite Kuka IR500 u dokument. - - + + CmdRobotInsertKukaIR16 - - Robot - Robot + Robot + Robot - - Kuka IR16 - Kuka IR16 + Kuka IR16 + Kuka IR16 - - Insert a Kuka IR16 into the document. - Umetnite Kuka IR500 u dokument. + Insert a Kuka IR16 into the document. + Umetnite Kuka IR500 u dokument. - - + + CmdRobotInsertKukaIR210 - - Robot - Robot + Robot + Robot - - Kuka IR210 - Kuka IR210 + Kuka IR210 + Kuka IR210 - - Insert a Kuka IR210 into the document. - Umetnite Kuka IR500 u dokument. + Insert a Kuka IR210 into the document. + Umetnite Kuka IR500 u dokument. - - + + CmdRobotInsertKukaIR500 - - Robot - Robot + Robot + Robot - - Kuka IR500 - Kuka IR500 + Kuka IR500 + Kuka IR500 - - Insert a Kuka IR500 into the document. - Umetnite Kuka IR500 u dokument. + Insert a Kuka IR500 into the document. + Umetnite Kuka IR500 u dokument. - - + + CmdRobotInsertWaypoint - - Robot - Robot + + Robot + Robot - - Insert in trajectory - Umetni u putanju + Insert in trajectory + Umetni u putanju - - Insert robot Tool location into trajectory - Umetnite alata robota, mjesto u putanji + Insert robot Tool location into trajectory + Umetnite alata robota, mjesto u putanji - - + + CmdRobotInsertWaypointPreselect - - Robot - Robot + Robot + Robot - - Insert in trajectory - Umetni u putanju + Insert in trajectory + Umetni u putanju - - Insert preselection position into trajectory (W) - Umetnite "preselekcija položaj" u putanju (W) + Insert preselection position into trajectory (W) + Umetnite "preselekcija položaj" u putanju (W) - - + + CmdRobotRestoreHomePos - - Robot - Robot + + Robot + Robot - - - Move to home - Premjesti u kući + Move to home + Premjesti u kući - - + + CmdRobotSetDefaultOrientation - - Robot - Robot + + Robot + Robot - - Set default orientation - Postavi zadanu orijentaciju + Set default orientation + Postavi zadanu orijentaciju - - set the default orientation for subsequent commands for waypoint creation - postavi zadanu orijentaciju za naknadne naredbe za stvaranje točke putanje + set the default orientation for subsequent commands for waypoint creation + postavi zadanu orijentaciju za naknadne naredbe za stvaranje točke putanje - - + + CmdRobotSetDefaultValues - - Robot - Robot + Robot + Robot - - Set default values - Postavi zadane vrijednosti + Set default values + Postavi zadane vrijednosti - - set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation - Postavi zadane vrijednosti za brzinu, ubrzanje i kontinuitet za naknadne naredbe stvaranja točki puta + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + Postavi zadane vrijednosti za brzinu, ubrzanje i kontinuitet za naknadne naredbe stvaranja točki puta - - + + CmdRobotSetHomePos - - Robot - Robot + + Robot + Robot - - - Set the home position - Postavite početni položaj + Set the home position + Postavite početni položaj - - + + CmdRobotSimulate - - Robot - Robot + Robot + Robot - - Simulate a trajectory - Simulirati putanju + Simulate a trajectory + Simulirati putanju - - Run a simulation on a trajectory - Pokrenite simulaciju na putanji + Run a simulation on a trajectory + Pokrenite simulaciju na putanji - - + + CmdRobotTrajectoryCompound - - Robot - Robot + + Robot + Robot - - Trajectory compound... - Spoj Putanje ... + Trajectory compound... + Spoj Putanje ... - - Group and connect some trajectories to one - Grupiraj i poveži neke putanje kao jednu + Group and connect some trajectories to one + Grupiraj i poveži neke putanje kao jednu - - + + CmdRobotTrajectoryDressUp - - Robot - Robot + Robot + Robot - - Dress up trajectory... - ravnati putanju ... + Dress up trajectory... + ravnati putanju ... - - Create a dress up object which overide som aspects of a trajectory - Stvoriti ravni objekt koji poništi neko stajalište putanje + Create a dress up object which overide som aspects of a trajectory + Stvoriti ravni objekt koji poništi neko stajalište putanje - - + + Gui::TaskView::TaskWatcherCommands - - Trajectory tools - Alati putanje + + Trajectory tools + Alati putanje - - Robot tools - Alati Robota + Robot tools + Alati Robota - - Insert Robot - Umetni Robot + Insert Robot + Umetni Robot - - + + QObject - - - - - - - - - - - - Wrong selection - Pogrešan odabir + + Wrong selection + Pogrešan odabir - - - - - - Select one Robot and one Trajectory object. - Odaberite jedan robot i jedanu putanju objekta. + Select one Robot and one Trajectory object. + Odaberite jedan robot i jedanu putanju objekta. - - Trajectory not valid - Putanja ne vrijedi + Trajectory not valid + Putanja ne vrijedi - - You need at least two way points in a trajectory to simulate. - Trebate najmanje dvije točke u putanji za simuliranje. + You need at least two way points in a trajectory to simulate. + Trebate najmanje dvije točke u putanji za simuliranje. - - - KRL file(*.src) - KRL datoteka (*. src) + + KRL file(*.src) + KRL datoteka (*. src) - - - All Files (*.*) - Sve datoteke (*.*) + All Files (*.*) + Sve datoteke (*.*) - - - Export program - Prijenos programa + Export program + Prijenos programa - - Select one robot and one shape or VRML object. - Odaberite jedan robot i jedan oblik ili objekt VRML. + + Select one robot and one shape or VRML object. + Odaberite jedan robot i jedan oblik ili objekt VRML. - - No preselection - Nema predselekcije + + No preselection + Nema predselekcije - - You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. - Morate lebjeti iznad geometrije (predselekcije) s mišem kako bi koristili ovu naredbu. Pogledajte dokumentaciju za detalje. + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + Morate lebjeti iznad geometrije (predselekcije) s mišem kako bi koristili ovu naredbu. Pogledajte dokumentaciju za detalje. - - Select one Robot to set home postion - Odaberite jedan Robot za postavljanje početnog položaja + + Select one Robot to set home postion + Odaberite jedan Robot za postavljanje početnog položaja - - Select one Robot - Odaberite jedan Robot + Select one Robot + Odaberite jedan Robot - - - Select one Trajectory object. - Odaberite jednu putanju objekta. + + Select one Trajectory object. + Odaberite jednu putanju objekta. - - set default speed - postavi zadanu brzinu + set default speed + postavi zadanu brzinu - - speed: (e.g. 1 m/s or 3 cm/s) - brzina: (npr. 1 m/s ili 3 cm/s) + speed: (e.g. 1 m/s or 3 cm/s) + brzina: (npr. 1 m/s ili 3 cm/s) - - set default continuity - postavi zadani kontinuitet + set default continuity + postavi zadani kontinuitet - - continuous ? - kontinuirano? + continuous ? + kontinuirano? - - set default acceleration - postavi zadano ubrzanje + set default acceleration + postavi zadano ubrzanje - - acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) - ubrzanje: (npr. 1 m/s^2 ili 3 cm/s^2) + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + ubrzanje: (npr. 1 m/s^2 ili 3 cm/s^2) - - Select the Trajectory which you want to dress up. - Odaberite putanju koju želite doraditi. + Select the Trajectory which you want to dress up. + Odaberite putanju koju želite doraditi. - - No robot files installed - Nema instaliranih robot datoteka + + No robot files installed + Nema instaliranih robot datoteka - - Please visit %1 and copy the files to %2 - Molimo posjetite %1 i kopirajte datoteke u %2 + Please visit %1 and copy the files to %2 + Molimo posjetite %1 i kopirajte datoteke u %2 - - + + RobotGui::DlgTrajectorySimulate - - Simulation - Simuliranje + + Simulation + Simuliranje - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - Type - Vrsta + Type + Vrsta - - Name - Ime + Name + Ime - - C - C + C + C - - V - V + V + V - - A - A + A + A - - + + RobotGui::TaskEdge2TracParameter - - TaskEdge2TracParameter - TaskEdge2TracParameter + + TaskEdge2TracParameter + TaskEdge2TracParameter - - + + RobotGui::TaskRobot6Axis - - Form - Obrazac + + Form + Obrazac - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4 + A4 + A4 - - A5 - A5 + A5 + A5 - - A6 - A6 + A6 + A6 - - TCP: (200.23,300.23,400.23,234,343,343) - TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) - - Tool: (0,0,400,0,0,0) - Alat:(0,0,400,0,0,0) + Tool: (0,0,400,0,0,0) + Alat:(0,0,400,0,0,0) - - ... - ... + ... + ... - - TaskRobot6Axis - TaskRobot6Axis + + TaskRobot6Axis + TaskRobot6Axis - - + + RobotGui::TaskRobotControl - - TaskRobotControl - TaskRobotControl + + TaskRobotControl + TaskRobotControl - - + + RobotGui::TaskRobotMessages - - TaskRobotMessages - TaskRobotMessages + + TaskRobotMessages + TaskRobotMessages - - + + RobotGui::TaskTrajectory - - Form - Obrazac + + Form + Obrazac - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - 10 ms - 10 ms + 10 ms + 10 ms - - 50 ms - 50 ms + 50 ms + 50 ms - - 100 ms - 100 ms + 100 ms + 100 ms - - 500 ms - 500 ms + 500 ms + 500 ms - - 1 s - 1 s + 1 s + 1 s - - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - Poz: (200,23, 300,23, 400,23, 234, 343, 343) + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Poz: (200,23, 300,23, 400,23, 234, 343, 343) - - Type - Vrsta + Type + Vrsta - - Name - Ime + Name + Ime - - C - C + C + C - - V - V + V + V - - A - A + A + A - - Trajectory - Putanja + + Trajectory + Putanja - - + + RobotGui::TaskTrajectoryDressUpParameter - - Dress Up Parameter - Ravni parametar + + Dress Up Parameter + Ravni parametar - - + + TaskEdge2TracParameter - - Form - Obrazac + + Form + Obrazac - - Hide / Show - Sakrij / prikaži + Hide / Show + Sakrij / prikaži - - Edges: 0 - Rubovi: 0 + Edges: 0 + Rubovi: 0 - - Cluster: 0 - Grozd: 0 + Cluster: 0 + Grozd: 0 - - Sizing Value: - Dimenzioniranje vrijednosti: + Sizing Value: + Dimenzioniranje vrijednosti: - - Use orientation of edge - Koristi orijentaciju ruba + Use orientation of edge + Koristi orijentaciju ruba - TaskEdge2TracParameter - TaskEdge2TracParameter + TaskEdge2TracParameter + TaskEdge2TracParameter - - + + TaskRobot6Axis - TaskRobot6Axis - TaskRobot6Axis + TaskRobot6Axis + TaskRobot6Axis - - + + TaskRobotControl - - Form - Obrazac + + Form + Obrazac - - X+ - X+ + X+ + X+ - - Y+ - Y+ + Y+ + Y+ - - Z+ - Z+ + Z+ + Z+ - - A+ - A+ + A+ + A+ - - B+ - B+ + B+ + B+ - - C+ - C+ + C+ + C+ - - X- - X- + X- + X- - - Y- - Y- + Y- + Y- - - Z- - Z- + Z- + Z- - - A- - A- + A- + A- - - B- - B- + B- + B- - - C- - C- + C- + C- - - Tool 0 - Alat 0 + Tool 0 + Alat 0 - - Tool - Alat + Tool + Alat - - Base 0 - Baza 0 + Base 0 + Baza 0 - - Base - Baza + Base + Baza - - World - Svijet - - - - 50mm / 5° - 50mm/5° - - - - 20mm / 2° - 20mm/2° - - - - 10mm / 1° - 10mm/1° - - - - 5mm / 0.5° - 5mm/0,5° - - - - 1mm / 0.1° - 1mm/0,1° + World + Svijet - TaskRobotControl - TaskRobotControl + 50mm / 5° + 50mm/5° - - + + 20mm / 2° + 20mm/2° + + + 10mm / 1° + 10mm/1° + + + 5mm / 0.5° + 5mm/0,5° + + + 1mm / 0.1° + 1mm/0,1° + + + TaskRobotControl + TaskRobotControl + + + TaskRobotMessages - - Form - Obrazac + + Form + Obrazac - - clear - jasno + clear + jasno - TaskRobotMessages - TaskRobotMessages + TaskRobotMessages + TaskRobotMessages - - + + TaskTrajectory - Trajectory - Putanja + Trajectory + Putanja - - + + TaskTrajectoryDressUpParameter - - Form - Obrazac + + Form + Obrazac - - Speed & Acceleration: - Brzina i ubrzanje: + Speed & Acceleration: + Brzina i ubrzanje: - - Speed: - Brzina: + Speed: + Brzina: - - - Use - Koristite + Use + Koristite - - Accel: - Accel: + Accel: + Accel: - - Don't change Cont - Nemojte mijenjati Cont + Don't change Cont + Nemojte mijenjati Cont - - Continues - Nastavlja + Continues + Nastavlja - - Discontinues - Prestaje + Discontinues + Prestaje - - Position and Orientation: - Položaj i orijentacija: + Position and Orientation: + Položaj i orijentacija: - - (0,0,0),(0,0,0) - (0,0,0), (0,0,0) + (0,0,0),(0,0,0) + (0,0,0), (0,0,0) - - ... - ... + ... + ... - - Don't change Position & Orientation - Ne mijenjaj položaj i orijentaciju + Don't change Position & Orientation + Ne mijenjaj položaj i orijentaciju - - Use Orientation - Koristi orijentaciju + Use Orientation + Koristi orijentaciju - - Add Position - Dodaj položaj + Add Position + Dodaj položaj - - Add Orientation - Dodaj orijentaciju + Add Orientation + Dodaj orijentaciju - Dress Up Parameter - Ravni parametar + Dress Up Parameter + Ravni parametar - - + + Workbench - - Robot - Robot + + Robot + Robot - - Insert Robots - Umetanje Robota + Insert Robots + Umetanje Robota - - &Robot - &Robot + &Robot + &Robot - - Export trajectory - Izvoz putanje + Export trajectory + Izvoz putanje - + diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_hu.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_hu.ts index 681a29d9f..53b45c12b 100644 --- a/src/Mod/Robot/Gui/Resources/translations/Robot_hu.ts +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_hu.ts @@ -1,1044 +1,877 @@ - - + + CmdRobotAddToolShape - - Robot - Robot + + Robot + Robot - - Add tool - Szerszám hozzáadása + Add tool + Szerszám hozzáadása - - Add a tool shape to the robot - Formázó szerszám hozzáadása a robothoz + Add a tool shape to the robot + Formázó szerszám hozzáadása a robothoz - - + + CmdRobotConstraintAxle - - Robot - Robot + + Robot + Robot - - Place robot... - Robot elhelyezése... + Place robot... + Robot elhelyezése... - - Place a robot (experimental!) - Robot helye (kísérleti!) + Place a robot (experimental!) + Robot helye (kísérleti!) - - + + CmdRobotCreateTrajectory - - Robot - Robot + + Robot + Robot - - Create trajectory - Útvonal létrehozása + Create trajectory + Útvonal létrehozása - - Create a new empty trajectory - Új üres útvonal létrehozása + Create a new empty trajectory + Új üres útvonal létrehozása - - + + CmdRobotEdge2Trac - - Robot - Robot + Robot + Robot - - Edge to Trajectory... - Él az útvonalhoz... + Edge to Trajectory... + Él az útvonalhoz... - - Generate a Trajectory from a set of edges - Útvonal létrehozása élek alapján + Generate a Trajectory from a set of edges + Útvonal létrehozása élek alapján - - + + CmdRobotExportKukaCompact - - Robot - Robot + + Robot + Robot - - Kuka compact subroutine... - Kuka kompakt eljárás ... + Kuka compact subroutine... + Kuka kompakt eljárás ... - - Export the trajectory as a compact KRL subroutine. - Útvonal exportálása kompakt KRL eljárásként. + Export the trajectory as a compact KRL subroutine. + Útvonal exportálása kompakt KRL eljárásként. - - + + CmdRobotExportKukaFull - - Robot - Robot + Robot + Robot - - Kuka full subroutine... - Kuka teljes eljárás ... + Kuka full subroutine... + Kuka teljes eljárás ... - - Export the trajectory as a full KRL subroutine. - Útvonal exportálása teljes KRL eljárásként. + Export the trajectory as a full KRL subroutine. + Útvonal exportálása teljes KRL eljárásként. - - + + CmdRobotInsertKukaIR125 - - Robot - Robot + + Robot + Robot - - Kuka IR125 - Kuka IR125 + Kuka IR125 + Kuka IR125 - - Insert a Kuka IR125 into the document. - Helyezzen be egy Kuka IR210-et a dokumentumba. + Insert a Kuka IR125 into the document. + Helyezzen be egy Kuka IR210-et a dokumentumba. - - + + CmdRobotInsertKukaIR16 - - Robot - Robot + Robot + Robot - - Kuka IR16 - Kuka IR16 + Kuka IR16 + Kuka IR16 - - Insert a Kuka IR16 into the document. - Helyezzen be egy Kuka IR210-et a dokumentumba. + Insert a Kuka IR16 into the document. + Helyezzen be egy Kuka IR210-et a dokumentumba. - - + + CmdRobotInsertKukaIR210 - - Robot - Robot + Robot + Robot - - Kuka IR210 - Kuka IR210 + Kuka IR210 + Kuka IR210 - - Insert a Kuka IR210 into the document. - Helyezzen be egy Kuka IR16-ot a dokumentumba. + Insert a Kuka IR210 into the document. + Helyezzen be egy Kuka IR16-ot a dokumentumba. - - + + CmdRobotInsertKukaIR500 - - Robot - Robot + Robot + Robot - - Kuka IR500 - Kuka IR500 + Kuka IR500 + Kuka IR500 - - Insert a Kuka IR500 into the document. - Helyezzen be egy Kuka IR125-öt a dokumentumba. + Insert a Kuka IR500 into the document. + Helyezzen be egy Kuka IR125-öt a dokumentumba. - - + + CmdRobotInsertWaypoint - - Robot - Robot + + Robot + Robot - - Insert in trajectory - Útvonal beszúrása + Insert in trajectory + Útvonal beszúrása - - Insert robot Tool location into trajectory - Robot szerszám elhelyezése az útvonalon + Insert robot Tool location into trajectory + Robot szerszám elhelyezése az útvonalon - - + + CmdRobotInsertWaypointPreselect - - Robot - Robot + Robot + Robot - - Insert in trajectory - Útvonal beszúrása + Insert in trajectory + Útvonal beszúrása - - Insert preselection position into trajectory (W) - Beállítási pozíció beszúrása az útvonalba (W) + Insert preselection position into trajectory (W) + Beállítási pozíció beszúrása az útvonalba (W) - - + + CmdRobotRestoreHomePos - - Robot - Robot + + Robot + Robot - - - Move to home - Alaphelyzetbe állít + Move to home + Alaphelyzetbe állít - - + + CmdRobotSetDefaultOrientation - - Robot - Robot + + Robot + Robot - - Set default orientation - Alapértelmezett hely beállítása + Set default orientation + Alapértelmezett hely beállítása - - set the default orientation for subsequent commands for waypoint creation - Alapértelmezett hely beállítása a későbbi szakaszpont parancsokhoz a várópontok létrehozásoknál + set the default orientation for subsequent commands for waypoint creation + Alapértelmezett hely beállítása a későbbi szakaszpont parancsokhoz a várópontok létrehozásoknál - - + + CmdRobotSetDefaultValues - - Robot - Robot + Robot + Robot - - Set default values - Alapértelmezett értékek + Set default values + Alapértelmezett értékek - - set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation - Alapértelmezett sebesség, gyorsulás és folytonossági szakaszpont értékeinek beállítása + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + Alapértelmezett sebesség, gyorsulás és folytonossági szakaszpont értékeinek beállítása - - + + CmdRobotSetHomePos - - Robot - Robot + + Robot + Robot - - - Set the home position - Alaphelyzet beállítása + Set the home position + Alaphelyzet beállítása - - + + CmdRobotSimulate - - Robot - Robot + Robot + Robot - - Simulate a trajectory - Útvonal szimuláció + Simulate a trajectory + Útvonal szimuláció - - Run a simulation on a trajectory - Szimuláció futtaása az útvonalon + Run a simulation on a trajectory + Szimuláció futtaása az útvonalon - - + + CmdRobotTrajectoryCompound - - Robot - Robot + + Robot + Robot - - Trajectory compound... - Pálya összetétel... + Trajectory compound... + Pálya összetétel... - - Group and connect some trajectories to one - Csoportosít és közössé tesz bizonyos pályákat + Group and connect some trajectories to one + Csoportosít és közössé tesz bizonyos pályákat - - + + CmdRobotTrajectoryDressUp - - Robot - Robot + Robot + Robot - - Dress up trajectory... - Útvonal felruházása... + Dress up trajectory... + Útvonal felruházása... - - Create a dress up object which overide som aspects of a trajectory - Hozzon létre egy felöltöztetett objektumot mely felülírja a pálya szempontjait + Create a dress up object which overide som aspects of a trajectory + Hozzon létre egy felöltöztetett objektumot mely felülírja a pálya szempontjait - - + + Gui::TaskView::TaskWatcherCommands - - Trajectory tools - Trajektória eszközök + + Trajectory tools + Trajektória eszközök - - Robot tools - Robot eszközök + Robot tools + Robot eszközök - - Insert Robot - Robotok beszúrása + Insert Robot + Robotok beszúrása - - + + QObject - - - - - - - - - - - - Wrong selection - Rossz kiválasztás + + Wrong selection + Rossz kiválasztás - - - - - - Select one Robot and one Trajectory object. - Egy Robot és egy útvonal objektum kijelölése. + Select one Robot and one Trajectory object. + Egy Robot és egy útvonal objektum kijelölése. - - Trajectory not valid - Érvénytelen útvonal + Trajectory not valid + Érvénytelen útvonal - - You need at least two way points in a trajectory to simulate. - A szimulációhoz legalább két útvonalpontra van szükség a pályán. + You need at least two way points in a trajectory to simulate. + A szimulációhoz legalább két útvonalpontra van szükség a pályán. - - - KRL file(*.src) - KRL fájl (*.src) + + KRL file(*.src) + KRL fájl (*.src) - - - All Files (*.*) - Minden fájl (*.*) + All Files (*.*) + Minden fájl (*.*) - - - Export program - Program exportálása + Export program + Program exportálása - - Select one robot and one shape or VRML object. - Egy robot és egy alakzat vagy VRML objektum kijelölése. + + Select one robot and one shape or VRML object. + Egy robot és egy alakzat vagy VRML objektum kijelölése. - - No preselection - Nincs előzetes kijelölés + + No preselection + Nincs előzetes kijelölés - - You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. - A geometria (előválasztás) fölé kell vinni az egérrel a kurzort, hogy használni tudja ezt a parancsot. Részleteket a dokumentációban talál. + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + A geometria (előválasztás) fölé kell vinni az egérrel a kurzort, hogy használni tudja ezt a parancsot. Részleteket a dokumentációban talál. - - Select one Robot to set home postion - Robot kiválasztása és alaphelyzetbe állítása + + Select one Robot to set home postion + Robot kiválasztása és alaphelyzetbe állítása - - Select one Robot - Válasszon ki egy robotot + Select one Robot + Válasszon ki egy robotot - - - Select one Trajectory object. - Válasszon ki egy pálya objektumot. + + Select one Trajectory object. + Válasszon ki egy pálya objektumot. - - set default speed - alapértelmezett sebesség beállítása + set default speed + alapértelmezett sebesség beállítása - - speed: (e.g. 1 m/s or 3 cm/s) - sebesség: (pl. 1 m/s vagy 3 cm/s) + speed: (e.g. 1 m/s or 3 cm/s) + sebesség: (pl. 1 m/s vagy 3 cm/s) - - set default continuity - alapértelmezett folytonosság + set default continuity + alapértelmezett folytonosság - - continuous ? - folyamatos? + continuous ? + folyamatos? - - set default acceleration - alapértelmezett gyorsulás beállítás + set default acceleration + alapértelmezett gyorsulás beállítás - - acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) - gyorsulás: (pl. 1 m/s^2 vagy 3 cm/s^2) + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + gyorsulás: (pl. 1 m/s^2 vagy 3 cm/s^2) - - Select the Trajectory which you want to dress up. - Válassza ki a Trayectory-t a felöltöztetéshez. + Select the Trajectory which you want to dress up. + Válassza ki a Trayectory-t a felöltöztetéshez. - - No robot files installed - Nincs telepített robot-fájl + + No robot files installed + Nincs telepített robot-fájl - - Please visit %1 and copy the files to %2 - Kérjük, látogasson el ide: %1 és másolja a fájlokat a következő helyre: %2 + Please visit %1 and copy the files to %2 + Kérjük, látogasson el ide: %1 és másolja a fájlokat a következő helyre: %2 - - + + RobotGui::DlgTrajectorySimulate - - Simulation - Szimuláció + + Simulation + Szimuláció - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - Type - Típus + Type + Típus - - Name - Név + Name + Név - - C - C + C + C - - V - V + V + V - - A - A + A + A - - + + RobotGui::TaskEdge2TracParameter - - TaskEdge2TracParameter - TaskEdge2TracParameter + + TaskEdge2TracParameter + TaskEdge2TracParameter - - + + RobotGui::TaskRobot6Axis - - Form - Űrlap + + Form + Űrlap - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4-es + A4 + A4-es - - A5 - A5 + A5 + A5 - - A6 - A6 + A6 + A6 - - TCP: (200.23,300.23,400.23,234,343,343) - TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) - - Tool: (0,0,400,0,0,0) - Eszköz:(0,0,400,0,0,0) + Tool: (0,0,400,0,0,0) + Eszköz:(0,0,400,0,0,0) - - ... - ... + ... + ... - - TaskRobot6Axis - TaskRobot6Axis + + TaskRobot6Axis + TaskRobot6Axis - - + + RobotGui::TaskRobotControl - - TaskRobotControl - TaskRobotControl + + TaskRobotControl + TaskRobotControl - - + + RobotGui::TaskRobotMessages - - TaskRobotMessages - TaskRobotMessages + + TaskRobotMessages + TaskRobotMessages - - + + RobotGui::TaskTrajectory - - Form - Űrlap + + Form + Űrlap - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - 10 ms - 10 ms + 10 ms + 10 ms - - 50 ms - 50 ms + 50 ms + 50 ms - - 100 ms - 100 ms + 100 ms + 100 ms - - 500 ms - 500 ms + 500 ms + 500 ms - - 1 s - 1 s + 1 s + 1 s - - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - - Type - Típus + Type + Típus - - Name - Név + Name + Név - - C - C + C + C - - V - V + V + V - - A - A + A + A - - Trajectory - Pálya + + Trajectory + Pálya - - + + RobotGui::TaskTrajectoryDressUpParameter - - Dress Up Parameter - Felruházási paraméter + + Dress Up Parameter + Felruházási paraméter - - + + TaskEdge2TracParameter - - Form - Űrlap + + Form + Űrlap - - Hide / Show - Elrejt/megjelenít + Hide / Show + Elrejt/megjelenít - - Edges: 0 - Élek: 0 + Edges: 0 + Élek: 0 - - Cluster: 0 - Fürt: 0 + Cluster: 0 + Fürt: 0 - - Sizing Value: - Méret érték: + Sizing Value: + Méret érték: - - Use orientation of edge - Használja az él orientációját + Use orientation of edge + Használja az él orientációját - TaskEdge2TracParameter - TaskEdge2TracParameter + TaskEdge2TracParameter + TaskEdge2TracParameter - - + + TaskRobot6Axis - TaskRobot6Axis - TaskRobot6Axis + TaskRobot6Axis + TaskRobot6Axis - - + + TaskRobotControl - - Form - Űrlap + + Form + Űrlap - - X+ - X+ + X+ + X+ - - Y+ - Y+ + Y+ + Y+ - - Z+ - Z+ + Z+ + Z+ - - A+ - A+ + A+ + A+ - - B+ - B+ + B+ + B+ - - C+ - C+ + C+ + C+ - - X- - X- + X- + X- - - Y- - Y- + Y- + Y- - - Z- - Z- + Z- + Z- - - A- - A- + A- + A- - - B- - B- + B- + B- - - C- - C- + C- + C- - - Tool 0 - Eszköz 0 + Tool 0 + Eszköz 0 - - Tool - Eszköz + Tool + Eszköz - - Base 0 - Alap 0 + Base 0 + Alap 0 - - Base - Alap + Base + Alap - - World - Világ - - - - 50mm / 5° - 50mm / 5° - - - - 20mm / 2° - 20mm / 2° - - - - 10mm / 1° - 10mm / 1° - - - - 5mm / 0.5° - 5mm / 0.5° - - - - 1mm / 0.1° - 1mm / 0.1° + World + Világ - TaskRobotControl - TaskRobotControl + 50mm / 5° + 50mm / 5° - - + + 20mm / 2° + 20mm / 2° + + + 10mm / 1° + 10mm / 1° + + + 5mm / 0.5° + 5mm / 0.5° + + + 1mm / 0.1° + 1mm / 0.1° + + + TaskRobotControl + TaskRobotControl + + + TaskRobotMessages - - Form - Űrlap + + Form + Űrlap - - clear - ürít + clear + ürít - TaskRobotMessages - TaskRobotMessages + TaskRobotMessages + TaskRobotMessages - - + + TaskTrajectory - Trajectory - Pálya + Trajectory + Pálya - - + + TaskTrajectoryDressUpParameter - - Form - Űrlap + + Form + Űrlap - - Speed & Acceleration: - Sebesség és gyorsulás: + Speed & Acceleration: + Sebesség és gyorsulás: - - Speed: - Sebesség: + Speed: + Sebesség: - - - Use - Használ + Use + Használ - - Accel: - Gyorsítás: + Accel: + Gyorsítás: - - Don't change Cont - Ne módosítsa a tartalmát + Don't change Cont + Ne módosítsa a tartalmát - - Continues - Tovább + Continues + Tovább - - Discontinues - Befejez + Discontinues + Befejez - - Position and Orientation: - Helyzete és iránya: + Position and Orientation: + Helyzete és iránya: - - (0,0,0),(0,0,0) - (0,0,0),(0,0,0) + (0,0,0),(0,0,0) + (0,0,0),(0,0,0) - - ... - ... + ... + ... - - Don't change Position & Orientation - Ne módosítsa a pozíciót és a tájolást + Don't change Position & Orientation + Ne módosítsa a pozíciót és a tájolást - - Use Orientation - Orientáció használata + Use Orientation + Orientáció használata - - Add Position - Pozíció hozzáadása + Add Position + Pozíció hozzáadása - - Add Orientation - Orientáció hozzáadása + Add Orientation + Orientáció hozzáadása - Dress Up Parameter - Felruházási paraméter + Dress Up Parameter + Felruházási paraméter - - + + Workbench - - Robot - Robot + + Robot + Robot - - Insert Robots - Robotok beszúrása + Insert Robots + Robotok beszúrása - - &Robot - Robot + &Robot + Robot - - Export trajectory - Pálya exportálása + Export trajectory + Pálya exportálása - + diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_it.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_it.ts index ff097abf3..3f84f3548 100644 --- a/src/Mod/Robot/Gui/Resources/translations/Robot_it.ts +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_it.ts @@ -1,1044 +1,877 @@ - - + + CmdRobotAddToolShape - - Robot - Robot + + Robot + Robot - - Add tool - Aggiungi strumento + Add tool + Aggiungi strumento - - Add a tool shape to the robot - Aggiunge uno strumento forma al robot + Add a tool shape to the robot + Aggiunge uno strumento forma al robot - - + + CmdRobotConstraintAxle - - Robot - Robot + + Robot + Robot - - Place robot... - Posiziona robot... + Place robot... + Posiziona robot... - - Place a robot (experimental!) - Posiziona un robot (sperimentale!) + Place a robot (experimental!) + Posiziona un robot (sperimentale!) - - + + CmdRobotCreateTrajectory - - Robot - Robot + + Robot + Robot - - Create trajectory - Crea traiettoria + Create trajectory + Crea traiettoria - - Create a new empty trajectory - Crea una nuova traiettoria vuota + Create a new empty trajectory + Crea una nuova traiettoria vuota - - + + CmdRobotEdge2Trac - - Robot - Robot + Robot + Robot - - Edge to Trajectory... - Da spigolo a traiettoria... + Edge to Trajectory... + Da spigolo a traiettoria... - - Generate a Trajectory from a set of edges - Genera una traiettoria da un insieme di spigoli + Generate a Trajectory from a set of edges + Genera una traiettoria da un insieme di spigoli - - + + CmdRobotExportKukaCompact - - Robot - Robot + + Robot + Robot - - Kuka compact subroutine... - Subroutine Kuka compatta... + Kuka compact subroutine... + Subroutine Kuka compatta... - - Export the trajectory as a compact KRL subroutine. - Esporta la traiettoria come una subroutine KRL compatta. + Export the trajectory as a compact KRL subroutine. + Esporta la traiettoria come una subroutine KRL compatta. - - + + CmdRobotExportKukaFull - - Robot - Robot + Robot + Robot - - Kuka full subroutine... - Subroutine Kuka completa... + Kuka full subroutine... + Subroutine Kuka completa... - - Export the trajectory as a full KRL subroutine. - Esporta la traiettoria come una subroutine KRL completa. + Export the trajectory as a full KRL subroutine. + Esporta la traiettoria come una subroutine KRL completa. - - + + CmdRobotInsertKukaIR125 - - Robot - Robot + + Robot + Robot - - Kuka IR125 - Kuka IR125 + Kuka IR125 + Kuka IR125 - - Insert a Kuka IR125 into the document. - Inserisce un Kuka IR125 nel documento. + Insert a Kuka IR125 into the document. + Inserisce un Kuka IR125 nel documento. - - + + CmdRobotInsertKukaIR16 - - Robot - Robot + Robot + Robot - - Kuka IR16 - Kuka IR16 + Kuka IR16 + Kuka IR16 - - Insert a Kuka IR16 into the document. - Inserisce un Kuka IR16 nel documento. + Insert a Kuka IR16 into the document. + Inserisce un Kuka IR16 nel documento. - - + + CmdRobotInsertKukaIR210 - - Robot - Robot + Robot + Robot - - Kuka IR210 - Kuka IR210 + Kuka IR210 + Kuka IR210 - - Insert a Kuka IR210 into the document. - Inserisce un Kuka IR210 nel documento. + Insert a Kuka IR210 into the document. + Inserisce un Kuka IR210 nel documento. - - + + CmdRobotInsertKukaIR500 - - Robot - Robot + Robot + Robot - - Kuka IR500 - Kuka IR500 + Kuka IR500 + Kuka IR500 - - Insert a Kuka IR500 into the document. - Inserisce un Kuka IR500 nel documento. + Insert a Kuka IR500 into the document. + Inserisce un Kuka IR500 nel documento. - - + + CmdRobotInsertWaypoint - - Robot - Robot + + Robot + Robot - - Insert in trajectory - Inserisci in traiettoria + Insert in trajectory + Inserisci in traiettoria - - Insert robot Tool location into trajectory - Inserire il percorso dell'utensile del robot in traiettoria + Insert robot Tool location into trajectory + Inserire il percorso dell'utensile del robot in traiettoria - - + + CmdRobotInsertWaypointPreselect - - Robot - Robot + Robot + Robot - - Insert in trajectory - Inserisci in traiettoria + Insert in trajectory + Inserisci in traiettoria - - Insert preselection position into trajectory (W) - Inserisci la posizione di preselezione in traiettoria (W) + Insert preselection position into trajectory (W) + Inserisci la posizione di preselezione in traiettoria (W) - - + + CmdRobotRestoreHomePos - - Robot - Robot + + Robot + Robot - - - Move to home - Sposta alla posizione di partenza + Move to home + Sposta alla posizione di partenza - - + + CmdRobotSetDefaultOrientation - - Robot - Robot + + Robot + Robot - - Set default orientation - Imposta l'orientamento predefinito + Set default orientation + Imposta l'orientamento predefinito - - set the default orientation for subsequent commands for waypoint creation - Imposta l'orientamento predefinito per i comandi successivi della creazione di waypoint + set the default orientation for subsequent commands for waypoint creation + Imposta l'orientamento predefinito per i comandi successivi della creazione di waypoint - - + + CmdRobotSetDefaultValues - - Robot - Robot + Robot + Robot - - Set default values - Imposta i valori predefiniti + Set default values + Imposta i valori predefiniti - - set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation - Imposta i valori predefiniti per velocità, accelerazione e continuità per comandi successivi della creazione di waypoint + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + Imposta i valori predefiniti per velocità, accelerazione e continuità per comandi successivi della creazione di waypoint - - + + CmdRobotSetHomePos - - Robot - Robot + + Robot + Robot - - - Set the home position - Imposta la posizione di partenza + Set the home position + Imposta la posizione di partenza - - + + CmdRobotSimulate - - Robot - Robot + Robot + Robot - - Simulate a trajectory - Simula una traiettoria + Simulate a trajectory + Simula una traiettoria - - Run a simulation on a trajectory - Esegue una simulazione su una traiettoria + Run a simulation on a trajectory + Esegue una simulazione su una traiettoria - - + + CmdRobotTrajectoryCompound - - Robot - Robot + + Robot + Robot - - Trajectory compound... - Traiettoria composta... + Trajectory compound... + Traiettoria composta... - - Group and connect some trajectories to one - Raggruppa e collega alcune traiettorie in una + Group and connect some trajectories to one + Raggruppa e collega alcune traiettorie in una - - + + CmdRobotTrajectoryDressUp - - Robot - Robot + Robot + Robot - - Dress up trajectory... - Dress up traiettoria ... + Dress up trajectory... + Dress up traiettoria ... - - Create a dress up object which overide som aspects of a trajectory - Crea un oggetto dress up che non tiene conti di alcuni aspetti di una traiettoria + Create a dress up object which overide som aspects of a trajectory + Crea un oggetto dress up che non tiene conti di alcuni aspetti di una traiettoria - - + + Gui::TaskView::TaskWatcherCommands - - Trajectory tools - Strumenti Traiettoria + + Trajectory tools + Strumenti Traiettoria - - Robot tools - Strumenti Robot + Robot tools + Strumenti Robot - - Insert Robot - Inserisci Robot + Insert Robot + Inserisci Robot - - + + QObject - - - - - - - - - - - - Wrong selection - Selezione errata + + Wrong selection + Selezione errata - - - - - - Select one Robot and one Trajectory object. - Seleziona un Robot e un oggetto Traiettoria. + Select one Robot and one Trajectory object. + Seleziona un Robot e un oggetto Traiettoria. - - Trajectory not valid - Traiettoria non valida + Trajectory not valid + Traiettoria non valida - - You need at least two way points in a trajectory to simulate. - Sono necessari almeno due punti in una traiettoria per eseguire la simulazione. + You need at least two way points in a trajectory to simulate. + Sono necessari almeno due punti in una traiettoria per eseguire la simulazione. - - - KRL file(*.src) - File KRL(*.src) + + KRL file(*.src) + File KRL(*.src) - - - All Files (*.*) - Tutti i File (*.*) + All Files (*.*) + Tutti i File (*.*) - - - Export program - Esporta programma + Export program + Esporta programma - - Select one robot and one shape or VRML object. - Seleziona un robot e una forma o un oggetto VRML. + + Select one robot and one shape or VRML object. + Seleziona un robot e una forma o un oggetto VRML. - - No preselection - Nessuna preselezione + + No preselection + Nessuna preselezione - - You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. - È necessario passare col mouse sopra una geometria (preselezione) per utilizzare questo comando. Vedere la documentazione per i dettagli. + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + È necessario passare col mouse sopra una geometria (preselezione) per utilizzare questo comando. Vedere la documentazione per i dettagli. - - Select one Robot to set home postion - Seleziona un robot per impostare la posizione di partenza + + Select one Robot to set home postion + Seleziona un robot per impostare la posizione di partenza - - Select one Robot - Seleziona un Robot + Select one Robot + Seleziona un Robot - - - Select one Trajectory object. - Seleziona un oggetto traiettoria. + + Select one Trajectory object. + Seleziona un oggetto traiettoria. - - set default speed - Imposta la velocità predefinita + set default speed + Imposta la velocità predefinita - - speed: (e.g. 1 m/s or 3 cm/s) - velocità: (ad esempio 1 m/s o 3 cm/s) + speed: (e.g. 1 m/s or 3 cm/s) + velocità: (ad esempio 1 m/s o 3 cm/s) - - set default continuity - Imposta la continuità predefinita + set default continuity + Imposta la continuità predefinita - - continuous ? - Continuo ? + continuous ? + Continuo ? - - set default acceleration - Imposta l'accelerazione predefinita + set default acceleration + Imposta l'accelerazione predefinita - - acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) - accelerazione: (ad es. 1 m/s^2 o 3 cm/s^2) + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + accelerazione: (ad es. 1 m/s^2 o 3 cm/s^2) - - Select the Trajectory which you want to dress up. - Seleziona la traiettoria che si vuole vestire. + Select the Trajectory which you want to dress up. + Seleziona la traiettoria che si vuole vestire. - - No robot files installed - Nessun file robot installato + + No robot files installed + Nessun file robot installato - - Please visit %1 and copy the files to %2 - Si prega di visitare %1 e copiare i file in %2 + Please visit %1 and copy the files to %2 + Si prega di visitare %1 e copiare i file in %2 - - + + RobotGui::DlgTrajectorySimulate - - Simulation - Simulazione + + Simulation + Simulazione - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - Type - Tipo + Type + Tipo - - Name - Nome + Name + Nome - - C - C + C + C - - V - V + V + V - - A - A + A + A - - + + RobotGui::TaskEdge2TracParameter - - TaskEdge2TracParameter - TaskEdge2TracParameter + + TaskEdge2TracParameter + TaskEdge2TracParameter - - + + RobotGui::TaskRobot6Axis - - Form - Form + + Form + Form - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4 + A4 + A4 - - A5 - A5 + A5 + A5 - - A6 - A6 + A6 + A6 - - TCP: (200.23,300.23,400.23,234,343,343) - TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) - - Tool: (0,0,400,0,0,0) - Strumento: (0,0,400,0,0,0) + Tool: (0,0,400,0,0,0) + Strumento: (0,0,400,0,0,0) - - ... - ... + ... + ... - - TaskRobot6Axis - TaskRobot6Axis + + TaskRobot6Axis + TaskRobot6Axis - - + + RobotGui::TaskRobotControl - - TaskRobotControl - TaskRobotControl + + TaskRobotControl + TaskRobotControl - - + + RobotGui::TaskRobotMessages - - TaskRobotMessages - TaskRobotMessages + + TaskRobotMessages + TaskRobotMessages - - + + RobotGui::TaskTrajectory - - Form - Form + + Form + Form - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - 10 ms - 10 ms + 10 ms + 10 ms - - 50 ms - 50 ms + 50 ms + 50 ms - - 100 ms - 100 ms + 100 ms + 100 ms - - 500 ms - 500 ms + 500 ms + 500 ms - - 1 s - 1 s + 1 s + 1 s - - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - - Type - Tipo + Type + Tipo - - Name - Nome + Name + Nome - - C - C + C + C - - V - V + V + V - - A - A + A + A - - Trajectory - Traiettoria + + Trajectory + Traiettoria - - + + RobotGui::TaskTrajectoryDressUpParameter - - Dress Up Parameter - Parametri Dress Up + + Dress Up Parameter + Parametri Dress Up - - + + TaskEdge2TracParameter - - Form - Form + + Form + Form - - Hide / Show - Mostra/Nascondi + Hide / Show + Mostra/Nascondi - - Edges: 0 - Bordi: 0 + Edges: 0 + Bordi: 0 - - Cluster: 0 - Cluster: 0 + Cluster: 0 + Cluster: 0 - - Sizing Value: - Valore di ridimensionamento: + Sizing Value: + Valore di ridimensionamento: - - Use orientation of edge - Usa l'orientamento del bordo + Use orientation of edge + Usa l'orientamento del bordo - TaskEdge2TracParameter - TaskEdge2TracParameter + TaskEdge2TracParameter + TaskEdge2TracParameter - - + + TaskRobot6Axis - TaskRobot6Axis - TaskRobot6Axis + TaskRobot6Axis + TaskRobot6Axis - - + + TaskRobotControl - - Form - Form + + Form + Form - - X+ - X+ + X+ + X+ - - Y+ - Y+ + Y+ + Y+ - - Z+ - Z+ + Z+ + Z+ - - A+ - A+ + A+ + A+ - - B+ - B+ + B+ + B+ - - C+ - C+ + C+ + C+ - - X- - X- + X- + X- - - Y- - Y- + Y- + Y- - - Z- - Z- + Z- + Z- - - A- - A- + A- + A- - - B- - B- + B- + B- - - C- - C- + C- + C- - - Tool 0 - Utensile 0 + Tool 0 + Utensile 0 - - Tool - Utensile + Tool + Utensile - - Base 0 - Base 0 + Base 0 + Base 0 - - Base - Base + Base + Base - - World - Globale - - - - 50mm / 5° - 50mm / 5° - - - - 20mm / 2° - 20mm / 2° - - - - 10mm / 1° - 10mm / 1° - - - - 5mm / 0.5° - 5mm / 0.5° - - - - 1mm / 0.1° - 1mm / 0.1° + World + Globale - TaskRobotControl - TaskRobotControl + 50mm / 5° + 50mm / 5° - - + + 20mm / 2° + 20mm / 2° + + + 10mm / 1° + 10mm / 1° + + + 5mm / 0.5° + 5mm / 0.5° + + + 1mm / 0.1° + 1mm / 0.1° + + + TaskRobotControl + TaskRobotControl + + + TaskRobotMessages - - Form - Form + + Form + Form - - clear - cancella + clear + cancella - TaskRobotMessages - TaskRobotMessages + TaskRobotMessages + TaskRobotMessages - - + + TaskTrajectory - Trajectory - Traiettoria + Trajectory + Traiettoria - - + + TaskTrajectoryDressUpParameter - - Form - Form + + Form + Form - - Speed & Acceleration: - Velocità e accelerazione: + Speed & Acceleration: + Velocità e accelerazione: - - Speed: - Velocità: + Speed: + Velocità: - - - Use - Uso + Use + Uso - - Accel: - Accelerazione: + Accel: + Accelerazione: - - Don't change Cont - Non cambiare Cont + Don't change Cont + Non cambiare Cont - - Continues - Continua + Continues + Continua - - Discontinues - Discontinua + Discontinues + Discontinua - - Position and Orientation: - Posizione e orientamento: + Position and Orientation: + Posizione e orientamento: - - (0,0,0),(0,0,0) - (0,0,0),(0,0,0) + (0,0,0),(0,0,0) + (0,0,0),(0,0,0) - - ... - ... + ... + ... - - Don't change Position & Orientation - Non modificare la posizione e l'orientamento + Don't change Position & Orientation + Non modificare la posizione e l'orientamento - - Use Orientation - Usa l'orientamento + Use Orientation + Usa l'orientamento - - Add Position - Aggiungi posizione + Add Position + Aggiungi posizione - - Add Orientation - Aggiungi Orientamento + Add Orientation + Aggiungi Orientamento - Dress Up Parameter - Parametri Dress Up + Dress Up Parameter + Parametri Dress Up - - + + Workbench - - Robot - Robot + + Robot + Robot - - Insert Robots - Inserisci Robot + Insert Robots + Inserisci Robot - - &Robot - &Robot + &Robot + &Robot - - Export trajectory - Esporta traiettoria + Export trajectory + Esporta traiettoria - + diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_ja.qm b/src/Mod/Robot/Gui/Resources/translations/Robot_ja.qm index 53fd179b1..de86ebed3 100644 Binary files a/src/Mod/Robot/Gui/Resources/translations/Robot_ja.qm and b/src/Mod/Robot/Gui/Resources/translations/Robot_ja.qm differ diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_ja.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_ja.ts index 0ab8641ff..8be72b78d 100644 --- a/src/Mod/Robot/Gui/Resources/translations/Robot_ja.ts +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_ja.ts @@ -1,1044 +1,877 @@ - - + + CmdRobotAddToolShape - - Robot - ロボット + + Robot + ロボット - - Add tool - Add tool + Add tool + Add tool - - Add a tool shape to the robot - Add a tool shape to the robot + Add a tool shape to the robot + Add a tool shape to the robot - - + + CmdRobotConstraintAxle - - Robot - ロボット + + Robot + ロボット - - Place robot... - ロボットを配置... + Place robot... + ロボットを配置... - - Place a robot (experimental!) - Place a robot (experimental!) + Place a robot (experimental!) + ロボットを配置(experimental!) - - + + CmdRobotCreateTrajectory - - Robot - ロボット + + Robot + ロボット - - Create trajectory - 軌跡を作成 + Create trajectory + 軌跡を作成 - - Create a new empty trajectory - 新しい空の軌跡を作成 + Create a new empty trajectory + 新しい空の軌跡を作成 - - + + CmdRobotEdge2Trac - - Robot - ロボット + Robot + ロボット - - Edge to Trajectory... - Edge to Trajectory... + Edge to Trajectory... + Edge to Trajectory... - - Generate a Trajectory from a set of edges - Generate a Trajectory from a set of edges + Generate a Trajectory from a set of edges + Generate a Trajectory from a set of edges - - + + CmdRobotExportKukaCompact - - Robot - ロボット + + Robot + ロボット - - Kuka compact subroutine... - Kuka compact subroutine... + Kuka compact subroutine... + Kuka compact subroutine... - - Export the trajectory as a compact KRL subroutine. - Export the trajectory as a compact KRL subroutine. + Export the trajectory as a compact KRL subroutine. + Export the trajectory as a compact KRL subroutine. - - + + CmdRobotExportKukaFull - - Robot - ロボット + Robot + ロボット - - Kuka full subroutine... - Kuka full subroutine... + Kuka full subroutine... + Kuka full subroutine... - - Export the trajectory as a full KRL subroutine. - Export the trajectory as a full KRL subroutine. + Export the trajectory as a full KRL subroutine. + Export the trajectory as a full KRL subroutine. - - + + CmdRobotInsertKukaIR125 - - Robot - ロボット + + Robot + ロボット - - Kuka IR125 - Kuka IR125 + Kuka IR125 + Kuka IR125 - - Insert a Kuka IR125 into the document. - Kuka IR125 を挿入. + Insert a Kuka IR125 into the document. + Kuka IR125 を挿入. - - + + CmdRobotInsertKukaIR16 - - Robot - ロボット + Robot + ロボット - - Kuka IR16 - Kuka IR16 + Kuka IR16 + Kuka IR16 - - Insert a Kuka IR16 into the document. - Kuka IR16 を挿入 + Insert a Kuka IR16 into the document. + Kuka IR16 を挿入 - - + + CmdRobotInsertKukaIR210 - - Robot - ロボット + Robot + ロボット - - Kuka IR210 - Kuka IR210 + Kuka IR210 + Kuka IR210 - - Insert a Kuka IR210 into the document. - Kuka IR210 を挿入. + Insert a Kuka IR210 into the document. + Kuka IR210 を挿入. - - + + CmdRobotInsertKukaIR500 - - Robot - ロボット + Robot + ロボット - - Kuka IR500 - Kuka IR500 + Kuka IR500 + Kuka IR500 - - Insert a Kuka IR500 into the document. - Kuka IR500 を挿入. + Insert a Kuka IR500 into the document. + Kuka IR500 を挿入. - - + + CmdRobotInsertWaypoint - - Robot - ロボット + + Robot + ロボット - - Insert in trajectory - Insert in trajectory + Insert in trajectory + Insert in trajectory - - Insert robot Tool location into trajectory - Insert robot Tool location into trajectory + Insert robot Tool location into trajectory + Insert robot Tool location into trajectory - - + + CmdRobotInsertWaypointPreselect - - Robot - ロボット + Robot + ロボット - - Insert in trajectory - Insert in trajectory + Insert in trajectory + Insert in trajectory - - Insert preselection position into trajectory (W) - Insert preselection position into trajectory (W) + Insert preselection position into trajectory (W) + Insert preselection position into trajectory (W) - - + + CmdRobotRestoreHomePos - - Robot - ロボット + + Robot + ロボット - - - Move to home - ホームへ移動 + Move to home + ホームへ移動 - - + + CmdRobotSetDefaultOrientation - - Robot - ロボット + + Robot + ロボット - - Set default orientation - デフォルトの向きを設定 + Set default orientation + デフォルトの向きを設定 - - set the default orientation for subsequent commands for waypoint creation - set the default orientation for subsequent commands for waypoint creation + set the default orientation for subsequent commands for waypoint creation + set the default orientation for subsequent commands for waypoint creation - - + + CmdRobotSetDefaultValues - - Robot - ロボット + Robot + ロボット - - Set default values - Set default values + Set default values + デフォルト値を設定する - - set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation - set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation - - + + CmdRobotSetHomePos - - Robot - ロボット + + Robot + ロボット - - - Set the home position - ホームポジションを設定 + Set the home position + ホームポジションを設定 - - + + CmdRobotSimulate - - Robot - ロボット + Robot + ロボット - - Simulate a trajectory - 軌道をシミュレート + Simulate a trajectory + 軌道をシミュレート - - Run a simulation on a trajectory - 軌道のシミュレーションを実行 + Run a simulation on a trajectory + 軌道のシミュレーションを実行 - - + + CmdRobotTrajectoryCompound - - Robot - ロボット + + Robot + ロボット - - Trajectory compound... - Trajectory compound... + Trajectory compound... + Trajectory compound... - - Group and connect some trajectories to one - Group and connect some trajectories to one + Group and connect some trajectories to one + Group and connect some trajectories to one - - + + CmdRobotTrajectoryDressUp - - Robot - ロボット + Robot + ロボット - - Dress up trajectory... - Dress up trajectory... + Dress up trajectory... + Dress up trajectory... - - Create a dress up object which overide som aspects of a trajectory - Create a dress up object which overide som aspects of a trajectory + Create a dress up object which overide som aspects of a trajectory + Create a dress up object which overide som aspects of a trajectory - - + + Gui::TaskView::TaskWatcherCommands - - Trajectory tools - 軌道ツール + + Trajectory tools + 軌道ツール - - Robot tools - ロボットツール + Robot tools + ロボットツール - - Insert Robot - ロボットを挿入 + Insert Robot + ロボットを挿入 - - + + QObject - - - - - - - - - - - - Wrong selection - 誤った選択 + + Wrong selection + 誤った選択 - - - - - - Select one Robot and one Trajectory object. - Select one Robot and one Trajectory object. + Select one Robot and one Trajectory object. + Select one Robot and one Trajectory object. - - Trajectory not valid - 軌道が無効です。 + Trajectory not valid + 軌道が無効です。 - - You need at least two way points in a trajectory to simulate. - You need at least two way points in a trajectory to simulate. + You need at least two way points in a trajectory to simulate. + You need at least two way points in a trajectory to simulate. - - - KRL file(*.src) - KRLファイル(*.SRC) + + KRL file(*.src) + KRLファイル(*.SRC) - - - All Files (*.*) - すべてのファイル (*.*) + All Files (*.*) + すべてのファイル (*.*) - - - Export program - プログラムをエクスポート + Export program + プログラムをエクスポート - - Select one robot and one shape or VRML object. - Select one robot and one shape or VRML object. + + Select one robot and one shape or VRML object. + ロボット1台と1つの図形かVRMLオブジェクトを選択してください. - - No preselection - No preselection + + No preselection + No preselection - - You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. - このコマンドを使用するにはマウスを使ってジオメトリ(事前選択)の上にカーソルを移動する必要があります。詳細についてはマニュアルを参照してください。 + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + このコマンドを使用するにはマウスを使ってジオメトリ(事前選択)の上にカーソルを移動する必要があります。詳細についてはマニュアルを参照してください。 - - Select one Robot to set home postion - Select one Robot to set home postion + + Select one Robot to set home postion + Select one Robot to set home postion - - Select one Robot - Select one Robot + Select one Robot + 一台のロボットを選択する - - - Select one Trajectory object. - Select one Trajectory object. + + Select one Trajectory object. + 1 つの軌道のオブジェクトを選択します。 - - set default speed - 既定の速度を設定します。 + set default speed + 既定の速度を設定します。 - - speed: (e.g. 1 m/s or 3 cm/s) - speed: (e.g. 1 m/s or 3 cm/s) + speed: (e.g. 1 m/s or 3 cm/s) + 速度:(例 1m/s 3cm/s) - - set default continuity - set default continuity + set default continuity + set default continuity - - continuous ? - continuous ? + continuous ? + 続けかすか? - - set default acceleration - set default acceleration + set default acceleration + set default acceleration - - acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) - acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) - - Select the Trajectory which you want to dress up. - Select the Trajectory which you want to dress up. + Select the Trajectory which you want to dress up. + Select the Trajectory which you want to dress up. - - No robot files installed - ロボットファイルがインストールされていません + + No robot files installed + ロボットファイルがインストールされていません - - Please visit %1 and copy the files to %2 - Please visit %1 and copy the files to %2 + Please visit %1 and copy the files to %2 + Please visit %1 and copy the files to %2 - - + + RobotGui::DlgTrajectorySimulate - - Simulation - シミュレーション + + Simulation + シミュレーション - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - Type - タイプ + Type + タイプ - - Name - 名前 + Name + 名前 - - C - C + C + C - - V - V + V + V - - A - A + A + A - - + + RobotGui::TaskEdge2TracParameter - - TaskEdge2TracParameter - TaskEdge2TracParameter + + TaskEdge2TracParameter + TaskEdge2TracParameter - - + + RobotGui::TaskRobot6Axis - - Form - Form + + Form + Form - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4 + A4 + A4 - - A5 - A5 + A5 + A5 - - A6 - A6 + A6 + A6 - - TCP: (200.23,300.23,400.23,234,343,343) - TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) - - Tool: (0,0,400,0,0,0) - Tool: (0,0,400,0,0,0) + Tool: (0,0,400,0,0,0) + Tool: (0,0,400,0,0,0) - - ... - ... + ... + ... - - TaskRobot6Axis - TaskRobot6Axis + + TaskRobot6Axis + TaskRobot6Axis - - + + RobotGui::TaskRobotControl - - TaskRobotControl - TaskRobotControl + + TaskRobotControl + TaskRobotControl - - + + RobotGui::TaskRobotMessages - - TaskRobotMessages - TaskRobotMessages + + TaskRobotMessages + TaskRobotMessages - - + + RobotGui::TaskTrajectory - - Form - Form + + Form + Form - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - 10 ms - 10 ms + 10 ms + 10 ms - - 50 ms - 50 ms + 50 ms + 50 ms - - 100 ms - 100 ms + 100 ms + 100 ms - - 500 ms - 500 ms + 500 ms + 500 ms - - 1 s - 1 s + 1 s + 1 s - - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - - Type - タイプ + Type + タイプ - - Name - 名前 + Name + 名前 - - C - C + C + C - - V - V + V + V - - A - A + A + A - - Trajectory - Trajectory + + Trajectory + Trajectory - - + + RobotGui::TaskTrajectoryDressUpParameter - - Dress Up Parameter - Dress Up Parameter + + Dress Up Parameter + Dress Up Parameter - - + + TaskEdge2TracParameter - - Form - Form + + Form + Form - - Hide / Show - 表示/非表示 + Hide / Show + 表示/非表示 - - Edges: 0 - Edges: 0 + Edges: 0 + Edges: 0 - - Cluster: 0 - Cluster: 0 + Cluster: 0 + Cluster: 0 - - Sizing Value: - Sizing Value: + Sizing Value: + Sizing Value: - - Use orientation of edge - Use orientation of edge + Use orientation of edge + Use orientation of edge - TaskEdge2TracParameter - TaskEdge2TracParameter + TaskEdge2TracParameter + TaskEdge2TracParameter - - + + TaskRobot6Axis - TaskRobot6Axis - TaskRobot6Axis + TaskRobot6Axis + TaskRobot6Axis - - + + TaskRobotControl - - Form - Form + + Form + Form - - X+ - X+ + X+ + X+ - - Y+ - Y+ + Y+ + Y+ - - Z+ - Z+ + Z+ + Z+ - - A+ - A+ + A+ + A+ - - B+ - B+ + B+ + B+ - - C+ - C+ + C+ + C+ - - X- - X- + X- + X- - - Y- - Y- + Y- + Y- - - Z- - Z- + Z- + Z- - - A- - A- + A- + A- - - B- - B- + B- + B- - - C- - C- + C- + C- - - Tool 0 - Tool 0 + Tool 0 + Tool 0 - - Tool - ツール + Tool + ツール - - Base 0 - Base 0 + Base 0 + Base 0 - - Base - Base + Base + Base - - World - World - - - - 50mm / 5° - 50mm / 5° - - - - 20mm / 2° - 20mm / 2° - - - - 10mm / 1° - 10mm / 1° - - - - 5mm / 0.5° - 5mm / 0.5° - - - - 1mm / 0.1° - 1mm / 0.1° + World + World - TaskRobotControl - TaskRobotControl + 50mm / 5° + 50mm / 5° - - + + 20mm / 2° + 20mm / 2° + + + 10mm / 1° + 10mm / 1° + + + 5mm / 0.5° + 5mm / 0.5° + + + 1mm / 0.1° + 1mm / 0.1° + + + TaskRobotControl + TaskRobotControl + + + TaskRobotMessages - - Form - Form + + Form + Form - - clear - clear + clear + clear - TaskRobotMessages - TaskRobotMessages + TaskRobotMessages + TaskRobotMessages - - + + TaskTrajectory - Trajectory - Trajectory + Trajectory + Trajectory - - + + TaskTrajectoryDressUpParameter - - Form - Form + + Form + Form - - Speed & Acceleration: - 速度 & 加速度: + Speed & Acceleration: + 速度 & 加速度: - - Speed: - 速度: + Speed: + 速度: - - - Use - Use + Use + Use - - Accel: - Accel: + Accel: + 加速度: - - Don't change Cont - Don't change Cont + Don't change Cont + Don't change Cont - - Continues - Continues + Continues + 続ける - - Discontinues - Discontinues + Discontinues + 中止 - - Position and Orientation: - Position and Orientation: + Position and Orientation: + 位置と向き: - - (0,0,0),(0,0,0) - (0,0,0),(0,0,0) + (0,0,0),(0,0,0) + (0,0,0),(0,0,0) - - ... - ... + ... + ... - - Don't change Position & Orientation - Don't change Position & Orientation + Don't change Position & Orientation + Don't change Position & Orientation - - Use Orientation - Use Orientation + Use Orientation + Use Orientation - - Add Position - Add Position + Add Position + 位置を追加します。 - - Add Orientation - Add Orientation + Add Orientation + 向きを追加します。 - Dress Up Parameter - Dress Up Parameter + Dress Up Parameter + Dress Up Parameter - - + + Workbench - - Robot - ロボット + + Robot + ロボット - - Insert Robots - Insert Robots + Insert Robots + ロボットを追加 - - &Robot - ロボット (&r) + &Robot + ロボット (&r) - - Export trajectory - Export trajectory + Export trajectory + Export trajectory - + diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_nl.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_nl.ts index f1d8b5296..596ac7500 100644 --- a/src/Mod/Robot/Gui/Resources/translations/Robot_nl.ts +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_nl.ts @@ -1,1044 +1,877 @@ - - + + CmdRobotAddToolShape - - Robot - Robot + + Robot + Robot - - Add tool - Gereedschap toevoegen + Add tool + Gereedschap toevoegen - - Add a tool shape to the robot - Voeg een gereedschapvorm toe aan de robot + Add a tool shape to the robot + Voeg een gereedschapvorm toe aan de robot - - + + CmdRobotConstraintAxle - - Robot - Robot + + Robot + Robot - - Place robot... - Plaats robot... + Place robot... + Plaats robot... - - Place a robot (experimental!) - Plaats een robot (experimenteel!) + Place a robot (experimental!) + Plaats een robot (experimenteel!) - - + + CmdRobotCreateTrajectory - - Robot - Robot + + Robot + Robot - - Create trajectory - Maak traject + Create trajectory + Maak traject - - Create a new empty trajectory - Maak een nieuw leeg traject + Create a new empty trajectory + Maak een nieuw leeg traject - - + + CmdRobotEdge2Trac - - Robot - Robot + Robot + Robot - - Edge to Trajectory... - Rand naar traject... + Edge to Trajectory... + Rand naar traject... - - Generate a Trajectory from a set of edges - Genereer een Traject uit een set van randen + Generate a Trajectory from a set of edges + Genereer een Traject uit een set van randen - - + + CmdRobotExportKukaCompact - - Robot - Robot + + Robot + Robot - - Kuka compact subroutine... - Kuka compacte subroutine ... + Kuka compact subroutine... + Kuka compacte subroutine ... - - Export the trajectory as a compact KRL subroutine. - Exporteer het traject als een compacte KRL subroutine. + Export the trajectory as a compact KRL subroutine. + Exporteer het traject als een compacte KRL subroutine. - - + + CmdRobotExportKukaFull - - Robot - Robot + Robot + Robot - - Kuka full subroutine... - Kuka volledige subroutine... + Kuka full subroutine... + Kuka volledige subroutine... - - Export the trajectory as a full KRL subroutine. - Exporteer het traject als een volledige KRL subroutine. + Export the trajectory as a full KRL subroutine. + Exporteer het traject als een volledige KRL subroutine. - - + + CmdRobotInsertKukaIR125 - - Robot - Robot + + Robot + Robot - - Kuka IR125 - Kuka IR125 + Kuka IR125 + Kuka IR125 - - Insert a Kuka IR125 into the document. - Voeg een Kuka IR125 toe aan het document. + Insert a Kuka IR125 into the document. + Voeg een Kuka IR125 toe aan het document. - - + + CmdRobotInsertKukaIR16 - - Robot - Robot + Robot + Robot - - Kuka IR16 - Kuka IR16 + Kuka IR16 + Kuka IR16 - - Insert a Kuka IR16 into the document. - Voeg een Kuka IR16 toe aan het document. + Insert a Kuka IR16 into the document. + Voeg een Kuka IR16 toe aan het document. - - + + CmdRobotInsertKukaIR210 - - Robot - Robot + Robot + Robot - - Kuka IR210 - Kuka IR210 + Kuka IR210 + Kuka IR210 - - Insert a Kuka IR210 into the document. - Voeg een Kuka IR210 toe aan het document. + Insert a Kuka IR210 into the document. + Voeg een Kuka IR210 toe aan het document. - - + + CmdRobotInsertKukaIR500 - - Robot - Robot + Robot + Robot - - Kuka IR500 - Kuka IR500 + Kuka IR500 + Kuka IR500 - - Insert a Kuka IR500 into the document. - Voeg een Kuka IR500 toe aan het document. + Insert a Kuka IR500 into the document. + Voeg een Kuka IR500 toe aan het document. - - + + CmdRobotInsertWaypoint - - Robot - Robot + + Robot + Robot - - Insert in trajectory - Toevoegen aan traject + Insert in trajectory + Toevoegen aan traject - - Insert robot Tool location into trajectory - Robot gereedschapslocatie invoegen in traject + Insert robot Tool location into trajectory + Robot gereedschapslocatie invoegen in traject - - + + CmdRobotInsertWaypointPreselect - - Robot - Robot + Robot + Robot - - Insert in trajectory - Toevoegen aan traject + Insert in trajectory + Toevoegen aan traject - - Insert preselection position into trajectory (W) - Plaats de voorselectie-positie in het traject (W) + Insert preselection position into trajectory (W) + Plaats de voorselectie-positie in het traject (W) - - + + CmdRobotRestoreHomePos - - Robot - Robot + + Robot + Robot - - - Move to home - Ga naar de beginpositie + Move to home + Ga naar de beginpositie - - + + CmdRobotSetDefaultOrientation - - Robot - Robot + + Robot + Robot - - Set default orientation - Set standaard oriëntatie + Set default orientation + Set standaard oriëntatie - - set the default orientation for subsequent commands for waypoint creation - set the default orientation for subsequent commands for waypoint creation + set the default orientation for subsequent commands for waypoint creation + set the default orientation for subsequent commands for waypoint creation - - + + CmdRobotSetDefaultValues - - Robot - Robot + Robot + Robot - - Set default values - Standaardwaarden instellen + Set default values + Standaardwaarden instellen - - set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation - set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation - - + + CmdRobotSetHomePos - - Robot - Robot + + Robot + Robot - - - Set the home position - Stel de beginpositie in + Set the home position + Stel de beginpositie in - - + + CmdRobotSimulate - - Robot - Robot + Robot + Robot - - Simulate a trajectory - Simuleer een traject + Simulate a trajectory + Simuleer een traject - - Run a simulation on a trajectory - Voer een simulatie uit op een traject + Run a simulation on a trajectory + Voer een simulatie uit op een traject - - + + CmdRobotTrajectoryCompound - - Robot - Robot + + Robot + Robot - - Trajectory compound... - Trajectory compound... + Trajectory compound... + Trajectory compound... - - Group and connect some trajectories to one - Group and connect some trajectories to one + Group and connect some trajectories to one + Group and connect some trajectories to one - - + + CmdRobotTrajectoryDressUp - - Robot - Robot + Robot + Robot - - Dress up trajectory... - Dress up trajectory... + Dress up trajectory... + Dress up trajectory... - - Create a dress up object which overide som aspects of a trajectory - Create a dress up object which overide som aspects of a trajectory + Create a dress up object which overide som aspects of a trajectory + Create a dress up object which overide som aspects of a trajectory - - + + Gui::TaskView::TaskWatcherCommands - - Trajectory tools - Trajectory tools + + Trajectory tools + Trajectory tools - - Robot tools - Robotgereedschappen + Robot tools + Robotgereedschappen - - Insert Robot - Robot invoegen + Insert Robot + Robot invoegen - - + + QObject - - - - - - - - - - - - Wrong selection - Verkeerde selectie + + Wrong selection + Verkeerde selectie - - - - - - Select one Robot and one Trajectory object. - Selecteer één robot en één traject-object. + Select one Robot and one Trajectory object. + Selecteer één robot en één traject-object. - - Trajectory not valid - Traject ongeldig + Trajectory not valid + Traject ongeldig - - You need at least two way points in a trajectory to simulate. - Je moet ten minste twee punten in een traject hebben om te kunnen simuleren. + You need at least two way points in a trajectory to simulate. + Je moet ten minste twee punten in een traject hebben om te kunnen simuleren. - - - KRL file(*.src) - KRL-bestand (*.src) + + KRL file(*.src) + KRL-bestand (*.src) - - - All Files (*.*) - Alle bestanden (*.*) + All Files (*.*) + Alle bestanden (*.*) - - - Export program - Exporteer programma + Export program + Exporteer programma - - Select one robot and one shape or VRML object. - Selecteer één robot en één shape of VRML-object. + + Select one robot and one shape or VRML object. + Selecteer één robot en één shape of VRML-object. - - No preselection - Geen voorselectie + + No preselection + Geen voorselectie - - You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. - Je moet zweven boven een geometrie (Voorselectie) met de muis om dit commando te gebruiken. Zie documentatie voor details. + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + Je moet zweven boven een geometrie (Voorselectie) met de muis om dit commando te gebruiken. Zie documentatie voor details. - - Select one Robot to set home postion - Selecteer een Robot om thuispositie te bepalen + + Select one Robot to set home postion + Selecteer een Robot om thuispositie te bepalen - - Select one Robot - Selecteer een Robot + Select one Robot + Selecteer een Robot - - - Select one Trajectory object. - Één traject object selecteren. + + Select one Trajectory object. + Één traject object selecteren. - - set default speed - Standaard snelheid instellen + set default speed + Standaard snelheid instellen - - speed: (e.g. 1 m/s or 3 cm/s) - snelheid: (bijv. 1 m/s of 3 cm/s) + speed: (e.g. 1 m/s or 3 cm/s) + snelheid: (bijv. 1 m/s of 3 cm/s) - - set default continuity - Set standaard continuïteit + set default continuity + Set standaard continuïteit - - continuous ? - continu? + continuous ? + continu? - - set default acceleration - standaard versnelling instellen + set default acceleration + standaard versnelling instellen - - acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) - versnelling: (bijv. 1 m/s^2 of 3 cm/s^2) + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + versnelling: (bijv. 1 m/s^2 of 3 cm/s^2) - - Select the Trajectory which you want to dress up. - Select the Trajectory which you want to dress up. + Select the Trajectory which you want to dress up. + Select the Trajectory which you want to dress up. - - No robot files installed - Geen robot bestanden geïnstalleerd + + No robot files installed + Geen robot bestanden geïnstalleerd - - Please visit %1 and copy the files to %2 - Bezoek %1 en kopieer de bestanden naar %2 + Please visit %1 and copy the files to %2 + Bezoek %1 en kopieer de bestanden naar %2 - - + + RobotGui::DlgTrajectorySimulate - - Simulation - Simulatie + + Simulation + Simulatie - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - Type - Type + Type + Type - - Name - Naam + Name + Naam - - C - C + C + C - - V - V + V + V - - A - A + A + A - - + + RobotGui::TaskEdge2TracParameter - - TaskEdge2TracParameter - TaskEdge2TracParameter + + TaskEdge2TracParameter + TaskEdge2TracParameter - - + + RobotGui::TaskRobot6Axis - - Form - Vorm + + Form + Vorm - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4 + A4 + A4 - - A5 - A5 + A5 + A5 - - A6 - A6 + A6 + A6 - - TCP: (200.23,300.23,400.23,234,343,343) - TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) - - Tool: (0,0,400,0,0,0) - Tool: (0,0,400,0,0,0) + Tool: (0,0,400,0,0,0) + Tool: (0,0,400,0,0,0) - - ... - ... + ... + ... - - TaskRobot6Axis - TaakRobot6Assen + + TaskRobot6Axis + TaakRobot6Assen - - + + RobotGui::TaskRobotControl - - TaskRobotControl - TaakRobotBesturing + + TaskRobotControl + TaakRobotBesturing - - + + RobotGui::TaskRobotMessages - - TaskRobotMessages - TaakRobotBerichten + + TaskRobotMessages + TaakRobotBerichten - - + + RobotGui::TaskTrajectory - - Form - Vorm + + Form + Vorm - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - 10 ms - 10 ms + 10 ms + 10 ms - - 50 ms - 50 ms + 50 ms + 50 ms - - 100 ms - 100 ms + 100 ms + 100 ms - - 500 ms - 500 ms + 500 ms + 500 ms - - 1 s - 1 s + 1 s + 1 s - - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - - Type - Type + Type + Type - - Name - Naam + Name + Naam - - C - C + C + C - - V - V + V + V - - A - A + A + A - - Trajectory - Traject + + Trajectory + Traject - - + + RobotGui::TaskTrajectoryDressUpParameter - - Dress Up Parameter - Aankleed Parameter + + Dress Up Parameter + Aankleed Parameter - - + + TaskEdge2TracParameter - - Form - Vorm + + Form + Vorm - - Hide / Show - Verbergen / weergeven + Hide / Show + Verbergen / weergeven - - Edges: 0 - Randen: 0 + Edges: 0 + Randen: 0 - - Cluster: 0 - Cluster: 0 + Cluster: 0 + Cluster: 0 - - Sizing Value: - Dimensionering Waarde: + Sizing Value: + Dimensionering Waarde: - - Use orientation of edge - Gebruik oriëntatie van de rand + Use orientation of edge + Gebruik oriëntatie van de rand - TaskEdge2TracParameter - TaskEdge2TracParameter + TaskEdge2TracParameter + TaskEdge2TracParameter - - + + TaskRobot6Axis - TaskRobot6Axis - TaakRobot6Assen + TaskRobot6Axis + TaakRobot6Assen - - + + TaskRobotControl - - Form - Vorm + + Form + Vorm - - X+ - X+ + X+ + X+ - - Y+ - Y+ + Y+ + Y+ - - Z+ - Z+ + Z+ + Z+ - - A+ - A+ + A+ + A+ - - B+ - B+ + B+ + B+ - - C+ - C+ + C+ + C+ - - X- - X- + X- + X- - - Y- - Y- + Y- + Y- - - Z- - Z- + Z- + Z- - - A- - A- + A- + A- - - B- - B- + B- + B- - - C- - C- + C- + C- - - Tool 0 - Gereedschap 0 + Tool 0 + Gereedschap 0 - - Tool - Gereedschap + Tool + Gereedschap - - Base 0 - Basis 0 + Base 0 + Basis 0 - - Base - Basis + Base + Basis - - World - Wereld - - - - 50mm / 5° - 50mm / 5° - - - - 20mm / 2° - 20mm / 2° - - - - 10mm / 1° - 10mm / 1 ° - - - - 5mm / 0.5° - 5mm / 0,5 ° - - - - 1mm / 0.1° - 1mm / 0,1 ° + World + Wereld - TaskRobotControl - TaakRobotBesturing + 50mm / 5° + 50mm / 5° - - + + 20mm / 2° + 20mm / 2° + + + 10mm / 1° + 10mm / 1 ° + + + 5mm / 0.5° + 5mm / 0,5 ° + + + 1mm / 0.1° + 1mm / 0,1 ° + + + TaskRobotControl + TaakRobotBesturing + + + TaskRobotMessages - - Form - Vorm + + Form + Vorm - - clear - wissen + clear + wissen - TaskRobotMessages - TaakRobotBerichten + TaskRobotMessages + TaakRobotBerichten - - + + TaskTrajectory - Trajectory - Traject + Trajectory + Traject - - + + TaskTrajectoryDressUpParameter - - Form - Vorm + + Form + Vorm - - Speed & Acceleration: - Snelheid & versnelling: + Speed & Acceleration: + Snelheid & versnelling: - - Speed: - Snelheid: + Speed: + Snelheid: - - - Use - Gebruik + Use + Gebruik - - Accel: - Accel: + Accel: + Accel: - - Don't change Cont - Don't change Cont + Don't change Cont + Don't change Cont - - Continues - Doorgaan + Continues + Doorgaan - - Discontinues - Stoppen + Discontinues + Stoppen - - Position and Orientation: - Positie en oriëntatie: + Position and Orientation: + Positie en oriëntatie: - - (0,0,0),(0,0,0) - (0,0,0), (0,0,0) + (0,0,0),(0,0,0) + (0,0,0), (0,0,0) - - ... - ... + ... + ... - - Don't change Position & Orientation - Positie & oriëntatie niet wijzigen + Don't change Position & Orientation + Positie & oriëntatie niet wijzigen - - Use Orientation - Gebruik Oriëntatie + Use Orientation + Gebruik Oriëntatie - - Add Position - Positie toevoegen + Add Position + Positie toevoegen - - Add Orientation - Oriëntatie toevoegen + Add Orientation + Oriëntatie toevoegen - Dress Up Parameter - Aankleed Parameter + Dress Up Parameter + Aankleed Parameter - - + + Workbench - - Robot - Robot + + Robot + Robot - - Insert Robots - Invoegen Robots + Insert Robots + Invoegen Robots - - &Robot - &Robot + &Robot + &Robot - - Export trajectory - Exporteer traject + Export trajectory + Exporteer traject - + diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_no.qm b/src/Mod/Robot/Gui/Resources/translations/Robot_no.qm index 4ab2479b8..50ca56386 100644 Binary files a/src/Mod/Robot/Gui/Resources/translations/Robot_no.qm and b/src/Mod/Robot/Gui/Resources/translations/Robot_no.qm differ diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_no.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_no.ts index 0076e1b24..cdff95ca6 100644 --- a/src/Mod/Robot/Gui/Resources/translations/Robot_no.ts +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_no.ts @@ -1,1044 +1,877 @@ - - + + CmdRobotAddToolShape - - Robot - Robot + + Robot + Robot - - Add tool - Legg til verktøy + Add tool + Legg til verktøy - - Add a tool shape to the robot - Legg til en verktøyform til roboten + Add a tool shape to the robot + Legg til en verktøyform til roboten - - + + CmdRobotConstraintAxle - - Robot - Robot + + Robot + Robot - - Place robot... - Plasser robot... + Place robot... + Plasser robot... - - Place a robot (experimental!) - Plasser en robot (eksperimentell!) + Place a robot (experimental!) + Plasser en robot (eksperimentell!) - - + + CmdRobotCreateTrajectory - - Robot - Robot + + Robot + Robot - - Create trajectory - Lag bane + Create trajectory + Lag bane - - Create a new empty trajectory - Lag en ny tom bane + Create a new empty trajectory + Lag en ny tom bane - - + + CmdRobotEdge2Trac - - Robot - Robot + Robot + Robot - - Edge to Trajectory... - Kant til bane... + Edge to Trajectory... + Kant til bane... - - Generate a Trajectory from a set of edges - Generer en bane fra et sett med kanter + Generate a Trajectory from a set of edges + Generer en bane fra et sett med kanter - - + + CmdRobotExportKukaCompact - - Robot - Robot + + Robot + Robot - - Kuka compact subroutine... - Kompakt KUKA delrutine... + Kuka compact subroutine... + Kompakt KUKA delrutine... - - Export the trajectory as a compact KRL subroutine. - Eksportere banen som en kompakt KRL delrutine. + Export the trajectory as a compact KRL subroutine. + Eksportere banen som en kompakt KRL delrutine. - - + + CmdRobotExportKukaFull - - Robot - Robot + Robot + Robot - - Kuka full subroutine... - Fullstendig KUKA delrutine... + Kuka full subroutine... + Fullstendig KUKA delrutine... - - Export the trajectory as a full KRL subroutine. - Eksporter banen som en fullstendig KRL delrutine. + Export the trajectory as a full KRL subroutine. + Eksporter banen som en fullstendig KRL delrutine. - - + + CmdRobotInsertKukaIR125 - - Robot - Robot + + Robot + Robot - - Kuka IR125 - Kuka IR125 + Kuka IR125 + Kuka IR125 - - Insert a Kuka IR125 into the document. - Sett inn en Kuka IR125 i dokumentet. + Insert a Kuka IR125 into the document. + Sett inn en Kuka IR125 i dokumentet. - - + + CmdRobotInsertKukaIR16 - - Robot - Robot + Robot + Robot - - Kuka IR16 - Kuka IR16 + Kuka IR16 + Kuka IR16 - - Insert a Kuka IR16 into the document. - Sett inn en Kuka IR16 i dokumentet. + Insert a Kuka IR16 into the document. + Sett inn en Kuka IR16 i dokumentet. - - + + CmdRobotInsertKukaIR210 - - Robot - Robot + Robot + Robot - - Kuka IR210 - Kuka IR210 + Kuka IR210 + Kuka IR210 - - Insert a Kuka IR210 into the document. - Sett inn en Kuka IR210 i dokumentet. + Insert a Kuka IR210 into the document. + Sett inn en Kuka IR210 i dokumentet. - - + + CmdRobotInsertKukaIR500 - - Robot - Robot + Robot + Robot - - Kuka IR500 - Kuka IR500 + Kuka IR500 + Kuka IR500 - - Insert a Kuka IR500 into the document. - Sett inn en Kuka IR500 i dokumentet. + Insert a Kuka IR500 into the document. + Sett inn en Kuka IR500 i dokumentet. - - + + CmdRobotInsertWaypoint - - Robot - Robot + + Robot + Robot - - Insert in trajectory - Sett inn i bane + Insert in trajectory + Sett inn i bane - - Insert robot Tool location into trajectory - Sett inn robotverktøy i banen + Insert robot Tool location into trajectory + Sett inn robotverktøy i banen - - + + CmdRobotInsertWaypointPreselect - - Robot - Robot + Robot + Robot - - Insert in trajectory - Sett inn i bane + Insert in trajectory + Sett inn i bane - - Insert preselection position into trajectory (W) - Sett inn forvalgt posisjon i bane (W) + Insert preselection position into trajectory (W) + Sett inn forvalgt posisjon i bane (W) - - + + CmdRobotRestoreHomePos - - Robot - Robot + + Robot + Robot - - - Move to home - Flytt til utgangsposisjon + Move to home + Flytt til utgangsposisjon - - + + CmdRobotSetDefaultOrientation - - Robot - Robot + + Robot + Robot - - Set default orientation - Angi standardorientering + Set default orientation + Angi standardorientering - - set the default orientation for subsequent commands for waypoint creation - sett standardorientering for etterfølgende kommandoer ved veipunktopprettelse + set the default orientation for subsequent commands for waypoint creation + sett standardorientering for etterfølgende kommandoer ved veipunktopprettelse - - + + CmdRobotSetDefaultValues - - Robot - Robot + Robot + Robot - - Set default values - Angi standardverdier + Set default values + Angi standardverdier - - set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation - angi standardverdier for hastighet, akselerasjon og kontinuitet for etterfølgende kommandoer ved veipunktetablering + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + angi standardverdier for hastighet, akselerasjon og kontinuitet for etterfølgende kommandoer ved veipunktetablering - - + + CmdRobotSetHomePos - - Robot - Robot + + Robot + Robot - - - Set the home position - Sett utgangsposisjon + Set the home position + Sett utgangsposisjon - - + + CmdRobotSimulate - - Robot - Robot + Robot + Robot - - Simulate a trajectory - Simuler en bane + Simulate a trajectory + Simuler en bane - - Run a simulation on a trajectory - Kjør simulering på en bane + Run a simulation on a trajectory + Kjør simulering på en bane - - + + CmdRobotTrajectoryCompound - - Robot - Robot + + Robot + Robot - - Trajectory compound... - Banesammensetning... + Trajectory compound... + Banesammensetning... - - Group and connect some trajectories to one - Gruppér og koble flere baner til en + Group and connect some trajectories to one + Gruppér og koble flere baner til en - - + + CmdRobotTrajectoryDressUp - - Robot - Robot + Robot + Robot - - Dress up trajectory... - Bekledningsbane... + Dress up trajectory... + Bekledningsbane... - - Create a dress up object which overide som aspects of a trajectory - Lag et bekledningsobjekt som oversyrer deler av en bane + Create a dress up object which overide som aspects of a trajectory + Lag et bekledningsobjekt som oversyrer deler av en bane - - + + Gui::TaskView::TaskWatcherCommands - - Trajectory tools - Trajectory tools + + Trajectory tools + Baneverktøy - - Robot tools - Robot tools + Robot tools + Robotverktøy - - Insert Robot - Insert Robot + Insert Robot + Sett inn Robot - - + + QObject - - - - - - - - - - - - Wrong selection - Feil valg + + Wrong selection + Feil valg - - - - - - Select one Robot and one Trajectory object. - Velg en Robot og ett baneobjekt. + Select one Robot and one Trajectory object. + Velg en Robot og ett baneobjekt. - - Trajectory not valid - Banen ikke gyldig + Trajectory not valid + Banen ikke gyldig - - You need at least two way points in a trajectory to simulate. - Du trenger minst to etappemål i en bane å simulere. + You need at least two way points in a trajectory to simulate. + Du trenger minst to etappemål i en bane å simulere. - - - KRL file(*.src) - KRL fil(*.src) + + KRL file(*.src) + KRL fil(*.src) - - - All Files (*.*) - Alle filer (*.*) + All Files (*.*) + Alle filer (*.*) - - - Export program - Eksporter program + Export program + Eksporter program - - Select one robot and one shape or VRML object. - Velg en robot og en figur eller et VRML objekt. + + Select one robot and one shape or VRML object. + Velg en robot og en figur eller et VRML objekt. - - No preselection - Ingen forvalg + + No preselection + Ingen forvalg - - You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. - Du må holde mus over noe geometri (Forvalg) for å bruke denne kommandoen. Se dokumentasjonen for detaljer. + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + Du må holde mus over noe geometri (Forvalg) for å bruke denne kommandoen. Se dokumentasjonen for detaljer. - - Select one Robot to set home postion - Velg en robot å sette i utgangsposisjon + + Select one Robot to set home postion + Velg en robot å sette i utgangsposisjon - - Select one Robot - Velg en robot + Select one Robot + Velg en robot - - - Select one Trajectory object. - Velg ett baneobjekt. + + Select one Trajectory object. + Velg ett baneobjekt. - - set default speed - angi standardhastighet + set default speed + angi standardhastighet - - speed: (e.g. 1 m/s or 3 cm/s) - hastighet: (f.eks 1m/s eller 3cm/s) + speed: (e.g. 1 m/s or 3 cm/s) + hastighet: (f.eks 1m/s eller 3cm/s) - - set default continuity - sett standardkontinuitet + set default continuity + sett standardkontinuitet - - continuous ? - kontinuerlig? + continuous ? + kontinuerlig? - - set default acceleration - sett standardakselerasjon + set default acceleration + sett standardakselerasjon - - acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) - akselerasjon: (f.eks 1m/s^2 eller 3cm/s^2) + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + akselerasjon: (f.eks 1m/s^2 eller 3cm/s^2) - - Select the Trajectory which you want to dress up. - Select the Trajectory which you want to dress up. + Select the Trajectory which you want to dress up. + Select the Trajectory which you want to dress up. - - No robot files installed - Ingen robot filer installert + + No robot files installed + Ingen robot filer installert - - Please visit %1 and copy the files to %2 - Vennligst besøk %1 og kopier filer til %2 + Please visit %1 and copy the files to %2 + Vennligst besøk %1 og kopier filer til %2 - - + + RobotGui::DlgTrajectorySimulate - - Simulation - Simulering + + Simulation + Simulering - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - Type - Type + Type + Type - - Name - Navn + Name + Navn - - C - C + C + C - - V - V + V + V - - A - A + A + A - - + + RobotGui::TaskEdge2TracParameter - - TaskEdge2TracParameter - OppgKantTBaneParameter + + TaskEdge2TracParameter + OppgKantTBaneParameter - - + + RobotGui::TaskRobot6Axis - - Form - Skjema + + Form + Skjema - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4 + A4 + A4 - - A5 - A5 + A5 + A5 - - A6 - A6 + A6 + A6 - - TCP: (200.23,300.23,400.23,234,343,343) - TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) - - Tool: (0,0,400,0,0,0) - Verktøy: (0,0,400,0,0,0) + Tool: (0,0,400,0,0,0) + Verktøy: (0,0,400,0,0,0) - - ... - ... + ... + ... - - TaskRobot6Axis - OppgaveRobotAkse + + TaskRobot6Axis + OppgaveRobotAkse - - + + RobotGui::TaskRobotControl - - TaskRobotControl - OppgaveRobotKontroll + + TaskRobotControl + OppgaveRobotKontroll - - + + RobotGui::TaskRobotMessages - - TaskRobotMessages - OppgaveRobotBeskjeder + + TaskRobotMessages + OppgaveRobotBeskjeder - - + + RobotGui::TaskTrajectory - - Form - Skjema + + Form + Skjema - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - 10 ms - 10 ms + 10 ms + 10 ms - - 50 ms - 50 ms + 50 ms + 50 ms - - 100 ms - 100 ms + 100 ms + 100 ms - - 500 ms - 500 ms + 500 ms + 500 ms - - 1 s - 1 s + 1 s + 1 s - - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - - Type - Type + Type + Type - - Name - Navn + Name + Navn - - C - C + C + C - - V - V + V + V - - A - A + A + A - - Trajectory - Bane + + Trajectory + Bane - - + + RobotGui::TaskTrajectoryDressUpParameter - - Dress Up Parameter - Bekledningsparameter + + Dress Up Parameter + Bekledningsparameter - - + + TaskEdge2TracParameter - - Form - Skjema + + Form + Skjema - - Hide / Show - Skjul/ Vis + Hide / Show + Skjul/ Vis - - Edges: 0 - Kanter: 0 + Edges: 0 + Kanter: 0 - - Cluster: 0 - Klynge: 0 + Cluster: 0 + Klynge: 0 - - Sizing Value: - Størrelseverdi: + Sizing Value: + Størrelseverdi: - - Use orientation of edge - Use orientation of edge + Use orientation of edge + Bruk retningen på kanten - TaskEdge2TracParameter - OppgKantTBaneParameter + TaskEdge2TracParameter + OppgKantTBaneParameter - - + + TaskRobot6Axis - TaskRobot6Axis - OppgaveRobotAkse + TaskRobot6Axis + OppgaveRobotAkse - - + + TaskRobotControl - - Form - Skjema + + Form + Skjema - - X+ - X+ + X+ + X+ - - Y+ - Y+ + Y+ + Y+ - - Z+ - Z+ + Z+ + Z+ - - A+ - A+ + A+ + A+ - - B+ - B+ + B+ + B+ - - C+ - C+ + C+ + C+ - - X- - X- + X- + X- - - Y- - Y- + Y- + Y- - - Z- - Z- + Z- + Z- - - A- - A- + A- + A- - - B- - B- + B- + B- - - C- - C- + C- + C- - - Tool 0 - Verktøy 0 + Tool 0 + Verktøy 0 - - Tool - Verktøy + Tool + Verktøy - - Base 0 - Base 0 + Base 0 + Base 0 - - Base - Base + Base + Base - - World - Verden - - - - 50mm / 5° - 50mm/ 5° - - - - 20mm / 2° - 20mm/ 2° - - - - 10mm / 1° - 10mm / 1° - - - - 5mm / 0.5° - 5mm / 0.5° - - - - 1mm / 0.1° - 1mm / 0.1° + World + Verden - TaskRobotControl - OppgaveRobotKontroll + 50mm / 5° + 50mm/ 5° - - + + 20mm / 2° + 20mm/ 2° + + + 10mm / 1° + 10mm / 1° + + + 5mm / 0.5° + 5mm / 0.5° + + + 1mm / 0.1° + 1mm / 0.1° + + + TaskRobotControl + OppgaveRobotKontroll + + + TaskRobotMessages - - Form - Skjema + + Form + Skjema - - clear - fjern + clear + fjern - TaskRobotMessages - OppgaveRobotBeskjeder + TaskRobotMessages + OppgaveRobotBeskjeder - - + + TaskTrajectory - Trajectory - Bane + Trajectory + Bane - - + + TaskTrajectoryDressUpParameter - - Form - Skjema + + Form + Skjema - - Speed & Acceleration: - Hastighet & akselerasjon: + Speed & Acceleration: + Hastighet & akselerasjon: - - Speed: - Hastighet: + Speed: + Hastighet: - - - Use - Bruk + Use + Bruk - - Accel: - Akselér: + Accel: + Akselér: - - Don't change Cont - Ikke endre forts + Don't change Cont + Ikke endre forts - - Continues - Fortsetter + Continues + Fortsetter - - Discontinues - Avbryter + Discontinues + Avbryter - - Position and Orientation: - Posisjon og orientering: + Position and Orientation: + Posisjon og orientering: - - (0,0,0),(0,0,0) - (0,0,0),(0,0,0) + (0,0,0),(0,0,0) + (0,0,0),(0,0,0) - - ... - ... + ... + ... - - Don't change Position & Orientation - Ikke endre posisjon og orientering + Don't change Position & Orientation + Ikke endre posisjon og orientering - - Use Orientation - Bruk Orientering + Use Orientation + Bruk Orientering - - Add Position - Legg til posisjon + Add Position + Legg til posisjon - - Add Orientation - Legg til orientering + Add Orientation + Legg til orientering - Dress Up Parameter - Bekledningsparameter + Dress Up Parameter + Bekledningsparameter - - + + Workbench - - Robot - Robot + + Robot + Robot - - Insert Robots - Sett inn Roboter + Insert Robots + Sett inn Roboter - - &Robot - &Robot + &Robot + &Robot - - Export trajectory - Eksporter bane + Export trajectory + Eksporter bane - + diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_pl.qm b/src/Mod/Robot/Gui/Resources/translations/Robot_pl.qm index 6a6464b8f..2bd3a48c5 100644 Binary files a/src/Mod/Robot/Gui/Resources/translations/Robot_pl.qm and b/src/Mod/Robot/Gui/Resources/translations/Robot_pl.qm differ diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_pl.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_pl.ts index 279313d98..3bc99b84a 100644 --- a/src/Mod/Robot/Gui/Resources/translations/Robot_pl.ts +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_pl.ts @@ -1,1044 +1,877 @@ - - + + CmdRobotAddToolShape - - Robot - Robot + + Robot + Robot - - Add tool - Dodaj narzędzie + Add tool + Dodaj narzędzie - - Add a tool shape to the robot - Add a tool shape to the robot + Add a tool shape to the robot + Dodaj kształt narzędzia do robota - - + + CmdRobotConstraintAxle - - Robot - Robot + + Robot + Robot - - Place robot... - Place robot... + Place robot... + Miejsce robota... - - Place a robot (experimental!) - Place a robot (experimental!) + Place a robot (experimental!) + Miejsce robota (eksperymentalne!) - - + + CmdRobotCreateTrajectory - - Robot - Robot + + Robot + Robot - - Create trajectory - Utwórz trajektorię + Create trajectory + Utwórz trajektorię - - Create a new empty trajectory - Utwórz nową pustą trajektorię + Create a new empty trajectory + Utwórz nową pustą trajektorię - - + + CmdRobotEdge2Trac - - Robot - Robot + Robot + Robot - - Edge to Trajectory... - Krawędź na Trajektorię... + Edge to Trajectory... + Krawędź na Trajektorię... - - Generate a Trajectory from a set of edges - Generuj trajektorię z zestawu krawędzi + Generate a Trajectory from a set of edges + Generuj trajektorię z zestawu krawędzi - - + + CmdRobotExportKukaCompact - - Robot - Robot + + Robot + Robot - - Kuka compact subroutine... - Kuka compact subroutine... + Kuka compact subroutine... + Kuka kompaktowa funkcja... - - Export the trajectory as a compact KRL subroutine. - Export the trajectory as a compact KRL subroutine. + Export the trajectory as a compact KRL subroutine. + Export the trajectory as a compact KRL subroutine. - - + + CmdRobotExportKukaFull - - Robot - Robot + Robot + Robot - - Kuka full subroutine... - Kuka full subroutine... + Kuka full subroutine... + Kuka pełna funkcja... - - Export the trajectory as a full KRL subroutine. - Export the trajectory as a full KRL subroutine. + Export the trajectory as a full KRL subroutine. + Export the trajectory as a full KRL subroutine. - - + + CmdRobotInsertKukaIR125 - - Robot - Robot + + Robot + Robot - - Kuka IR125 - Kuka IR125 + Kuka IR125 + Kuka IR125 - - Insert a Kuka IR125 into the document. - Insert a Kuka IR125 into the document. + Insert a Kuka IR125 into the document. + Wstaw Kuka IR125 do dokumentu. - - + + CmdRobotInsertKukaIR16 - - Robot - Robot + Robot + Robot - - Kuka IR16 - Kuka IR16 + Kuka IR16 + Kuka IR16 - - Insert a Kuka IR16 into the document. - Insert a Kuka IR16 into the document. + Insert a Kuka IR16 into the document. + Wstaw Kuka IR16 do dokumentu. - - + + CmdRobotInsertKukaIR210 - - Robot - Robot + Robot + Robot - - Kuka IR210 - Kuka IR210 + Kuka IR210 + Kuka IR210 - - Insert a Kuka IR210 into the document. - Insert a Kuka IR210 into the document. + Insert a Kuka IR210 into the document. + Wstaw Kuka IR210 do dokumentu. - - + + CmdRobotInsertKukaIR500 - - Robot - Robot + Robot + Robot - - Kuka IR500 - Kuka IR500 + Kuka IR500 + Kuka IR500 - - Insert a Kuka IR500 into the document. - Insert a Kuka IR500 into the document. + Insert a Kuka IR500 into the document. + Wstaw Kuka IR500 do dokumentu. - - + + CmdRobotInsertWaypoint - - Robot - Robot + + Robot + Robot - - Insert in trajectory - Wstaw na Trajektorię + Insert in trajectory + Wstaw na Trajektorię - - Insert robot Tool location into trajectory - Insert robot Tool location into trajectory + Insert robot Tool location into trajectory + Wstaw lokację narzędzia robota na trajektorię - - + + CmdRobotInsertWaypointPreselect - - Robot - Robot + Robot + Robot - - Insert in trajectory - Wstaw na Trajektorię + Insert in trajectory + Wstaw na Trajektorię - - Insert preselection position into trajectory (W) - Insert preselection position into trajectory (W) + Insert preselection position into trajectory (W) + Wstaw pozycję preselekcji do trajektorii (W) - - + + CmdRobotRestoreHomePos - - Robot - Robot + + Robot + Robot - - - Move to home - Move to home + Move to home + Przenieś do pozycji startowej - - + + CmdRobotSetDefaultOrientation - - Robot - Robot + + Robot + Robot - - Set default orientation - Ustaw domyślną orientację + Set default orientation + Ustaw domyślną orientację - - set the default orientation for subsequent commands for waypoint creation - set the default orientation for subsequent commands for waypoint creation + set the default orientation for subsequent commands for waypoint creation + set the default orientation for subsequent commands for waypoint creation - - + + CmdRobotSetDefaultValues - - Robot - Robot + Robot + Robot - - Set default values - Set default values + Set default values + Ustaw domyślne wartości - - set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation - set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation - - + + CmdRobotSetHomePos - - Robot - Robot + + Robot + Robot - - - Set the home position - Set the home position + Set the home position + Ustaw pozycję startową - - + + CmdRobotSimulate - - Robot - Robot + Robot + Robot - - Simulate a trajectory - Symulacja Trajektorii + Simulate a trajectory + Symulacja Trajektorii - - Run a simulation on a trajectory - Run a simulation on a trajectory + Run a simulation on a trajectory + Uruchom symulację na trajektorii - - + + CmdRobotTrajectoryCompound - - Robot - Robot + + Robot + Robot - - Trajectory compound... - Trajectory compound... + Trajectory compound... + Trajectory compound... - - Group and connect some trajectories to one - Group and connect some trajectories to one + Group and connect some trajectories to one + Group and connect some trajectories to one - - + + CmdRobotTrajectoryDressUp - - Robot - Robot + Robot + Robot - - Dress up trajectory... - Dress up trajectory... + Dress up trajectory... + Dress up trajectory... - - Create a dress up object which overide som aspects of a trajectory - Create a dress up object which overide som aspects of a trajectory + Create a dress up object which overide som aspects of a trajectory + Create a dress up object which overide som aspects of a trajectory - - + + Gui::TaskView::TaskWatcherCommands - - Trajectory tools - Narzędzia Trajektoria + + Trajectory tools + Narzędzia Trajektoria - - Robot tools - Narzędzia Robot + Robot tools + Narzędzia Robot - - Insert Robot - Wstaw Robot + Insert Robot + Wstaw Robot - - + + QObject - - - - - - - - - - - - Wrong selection - Niewłaściwy wybór + + Wrong selection + Niewłaściwy wybór - - - - - - Select one Robot and one Trajectory object. - Select one Robot and one Trajectory object. + Select one Robot and one Trajectory object. + Wybierz jednego robota i jedną trajektorię. - - Trajectory not valid - Niewłaściwa Trajektoria + Trajectory not valid + Niewłaściwa Trajektoria - - You need at least two way points in a trajectory to simulate. - You need at least two way points in a trajectory to simulate. + You need at least two way points in a trajectory to simulate. + You need at least two way points in a trajectory to simulate. - - - KRL file(*.src) - Plik KRL (*. src) + + KRL file(*.src) + Plik KRL (*. src) - - - All Files (*.*) - Wszystkie pliki (*.*) + All Files (*.*) + Wszystkie pliki (*.*) - - - Export program - Eksport programu + Export program + Eksport programu - - Select one robot and one shape or VRML object. - Select one robot and one shape or VRML object. + + Select one robot and one shape or VRML object. + Wybierz jednego robota i jeden kształt lub obiekt VRML. - - No preselection - No preselection + + No preselection + Bez preselekcji - - You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. - You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. - - Select one Robot to set home postion - Select one Robot to set home postion + + Select one Robot to set home postion + Select one Robot to set home postion - - Select one Robot - Select one Robot + Select one Robot + Zaznacz jednego Robota - - - Select one Trajectory object. - Zaznacz jeden obiekt Trajektoria + + Select one Trajectory object. + Zaznacz jeden obiekt Trajektoria - - set default speed - set default speed + set default speed + Ustaw domyślną szybkość - - speed: (e.g. 1 m/s or 3 cm/s) - speed: (e.g. 1 m/s or 3 cm/s) + speed: (e.g. 1 m/s or 3 cm/s) + prędkość: (np. 1 m/s lub 3 cm/s) - - set default continuity - set default continuity + set default continuity + Ustaw domyślną ciągłość - - continuous ? - continuous ? + continuous ? + ciągłe? - - set default acceleration - Ustaw domyślne przyśpieszenie + set default acceleration + Ustaw domyślne przyśpieszenie - - acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) - acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + przyspieszenie: (przykład 1 m/s ^ 2 lub 3 cm/s ^ 2) - - Select the Trajectory which you want to dress up. - Select the Trajectory which you want to dress up. + Select the Trajectory which you want to dress up. + Wybierz trajektorię, które chcesz wykonać. - - No robot files installed - No robot files installed + + No robot files installed + Nie zainstalowane pliki robota - - Please visit %1 and copy the files to %2 - Please visit %1 and copy the files to %2 + Please visit %1 and copy the files to %2 + Odwiedź %1 i kopiować pliki do %2 - - + + RobotGui::DlgTrajectorySimulate - - Simulation - Symulacja + + Simulation + Symulacja - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - Type - Typ + Type + Typ - - Name - Nazwa + Name + Nazwa - - C - C + C + C - - V - V + V + V - - A - A + A + A - - + + RobotGui::TaskEdge2TracParameter - - TaskEdge2TracParameter - TaskEdge2TracParameter + + TaskEdge2TracParameter + TaskEdge2TracParameter - - + + RobotGui::TaskRobot6Axis - - Form - Form + + Form + Formularz - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4 + A4 + A4 - - A5 - A5 + A5 + A5 - - A6 - A6 + A6 + A6 - - TCP: (200.23,300.23,400.23,234,343,343) - TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) - - Tool: (0,0,400,0,0,0) - Narzędzie: (0,0,400,0,0,0) + Tool: (0,0,400,0,0,0) + Narzędzie: (0,0,400,0,0,0) - - ... - ... + ... + ... - - TaskRobot6Axis - TaskRobot6Axis + + TaskRobot6Axis + TaskRobot6Axis - - + + RobotGui::TaskRobotControl - - TaskRobotControl - TaskRobotControl + + TaskRobotControl + TaskRobotControl - - + + RobotGui::TaskRobotMessages - - TaskRobotMessages - TaskRobotMessages + + TaskRobotMessages + TaskRobotMessages - - + + RobotGui::TaskTrajectory - - Form - Form + + Form + Formularz - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - 10 ms - 10 ms + 10 ms + 10 ms - - 50 ms - 50 ms + 50 ms + 50 ms - - 100 ms - 100 ms + 100 ms + 100 ms - - 500 ms - 500 ms + 500 ms + 500 ms - - 1 s - 1 s + 1 s + 1 s - - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Pos: (200.23, 300.23, 400.23, 234, 343, 343) - - Type - Typ + Type + Typ - - Name - Nazwa + Name + Nazwa - - C - C + C + C - - V - V + V + V - - A - A + A + A - - Trajectory - Trajectory + + Trajectory + Trajectory - - + + RobotGui::TaskTrajectoryDressUpParameter - - Dress Up Parameter - Dress Up Parameter + + Dress Up Parameter + Dress Up Parameter - - + + TaskEdge2TracParameter - - Form - Form + + Form + Formularz - - Hide / Show - Ukryj / Pokaż + Hide / Show + Ukryj / Pokaż - - Edges: 0 - Edges: 0 + Edges: 0 + Krawędzie: 0 - - Cluster: 0 - Cluster: 0 + Cluster: 0 + Klaster: 0 - - Sizing Value: - Sizing Value: + Sizing Value: + Wartość zmiany rozmiaru: - - Use orientation of edge - Użyj orientacji krawędzi + Use orientation of edge + Użyj orientacji krawędzi - TaskEdge2TracParameter - TaskEdge2TracParameter + TaskEdge2TracParameter + TaskEdge2TracParameter - - + + TaskRobot6Axis - TaskRobot6Axis - TaskRobot6Axis + TaskRobot6Axis + TaskRobot6Axis - - + + TaskRobotControl - - Form - Form + + Form + Formularz - - X+ - X + + X+ + X + - - Y+ - Y + + Y+ + Y + - - Z+ - Z + + Z+ + Z + - - A+ - A + + A+ + A + - - B+ - B + + B+ + B + - - C+ - C + + C+ + C + - - X- - X- + X- + X- - - Y- - Y- + Y- + Y- - - Z- - Z- + Z- + Z- - - A- - A- + A- + A- - - B- - B- + B- + B- - - C- - C- + C- + C- - - Tool 0 - Tool 0 + Tool 0 + Narzędzie 0 - - Tool - Narzędzie + Tool + Narzędzie - - Base 0 - Base 0 + Base 0 + Baza 0 - - Base - Base + Base + Baza - - World - World - - - - 50mm / 5° - 50mm / 5 ° - - - - 20mm / 2° - 20mm / 2 ° - - - - 10mm / 1° - 10mm / 1 ° - - - - 5mm / 0.5° - 5mm / 0,5 ° - - - - 1mm / 0.1° - 1 mm / 0,1 ° + World + Świat - TaskRobotControl - TaskRobotControl + 50mm / 5° + 50mm / 5 ° - - + + 20mm / 2° + 20mm / 2 ° + + + 10mm / 1° + 10mm / 1 ° + + + 5mm / 0.5° + 5mm / 0,5 ° + + + 1mm / 0.1° + 1 mm / 0,1 ° + + + TaskRobotControl + TaskRobotControl + + + TaskRobotMessages - - Form - Form + + Form + Formularz - - clear - Wyczyść + clear + Wyczyść - TaskRobotMessages - TaskRobotMessages + TaskRobotMessages + TaskRobotMessages - - + + TaskTrajectory - Trajectory - Trajectory + Trajectory + Trajectory - - + + TaskTrajectoryDressUpParameter - - Form - Form + + Form + Formularz - - Speed & Acceleration: - Prędkość & Przyśpieszenie: + Speed & Acceleration: + Prędkość & Przyśpieszenie: - - Speed: - Prędkość: + Speed: + Prędkość: - - - Use - Użyj + Use + Użyj - - Accel: - Przyśp.: + Accel: + Przyśp.: - - Don't change Cont - Don't change Cont + Don't change Cont + Nie zmieniaj - - Continues - Continues + Continues + Kontynuuj - - Discontinues - Discontinues + Discontinues + Przerwij - - Position and Orientation: - Pozycja & Orientacja: + Position and Orientation: + Pozycja & Orientacja: - - (0,0,0),(0,0,0) - (0,0,0),(0,0,0) + (0,0,0),(0,0,0) + (0,0,0),(0,0,0) - - ... - ... + ... + ... - - Don't change Position & Orientation - Nie zmieniaj Pozycji & Orientacji + Don't change Position & Orientation + Nie zmieniaj Pozycji & Orientacji - - Use Orientation - Użyj orientacji + Use Orientation + Użyj orientacji - - Add Position - Dodaj pozycję + Add Position + Dodaj pozycję - - Add Orientation - Dodaj orientację + Add Orientation + Dodaj orientację - Dress Up Parameter - Dress Up Parameter + Dress Up Parameter + Dress Up Parameter - - + + Workbench - - Robot - Robot + + Robot + Robot - - Insert Robots - Insert Robots + Insert Robots + Wstaw Roboty - - &Robot - &Robot + &Robot + & Robot - - Export trajectory - Eksport Trajektorii + Export trajectory + Eksport Trajektorii - + diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_pt.qm b/src/Mod/Robot/Gui/Resources/translations/Robot_pt-BR.qm similarity index 100% rename from src/Mod/Robot/Gui/Resources/translations/Robot_pt.qm rename to src/Mod/Robot/Gui/Resources/translations/Robot_pt-BR.qm diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_pt-BR.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_pt-BR.ts new file mode 100644 index 000000000..24beb9708 --- /dev/null +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_pt-BR.ts @@ -0,0 +1,877 @@ + + + + + CmdRobotAddToolShape + + + Robot + Robô + + + Add tool + Adicionar a ferramenta + + + Add a tool shape to the robot + Adicionar uma ferramenta de forma ao robô + + + + CmdRobotConstraintAxle + + + Robot + Robô + + + Place robot... + Colocar robô... + + + Place a robot (experimental!) + Colocar um robô (experimental!) + + + + CmdRobotCreateTrajectory + + + Robot + Robô + + + Create trajectory + Criar trajetória + + + Create a new empty trajectory + Criar uma nova trajetória vazia + + + + CmdRobotEdge2Trac + + Robot + Robô + + + Edge to Trajectory... + Aresta para trajetória... + + + Generate a Trajectory from a set of edges + Gerar uma trajetória a partir de um conjunto de arestas + + + + CmdRobotExportKukaCompact + + + Robot + Robô + + + Kuka compact subroutine... + Kuka sub-rotina compacta ... + + + Export the trajectory as a compact KRL subroutine. + Exporte a trajetória como uma sub-rotina KRL compacta. + + + + CmdRobotExportKukaFull + + Robot + Robô + + + Kuka full subroutine... + KUKA sub-rotina completa... + + + Export the trajectory as a full KRL subroutine. + Exporte a trajetória como uma sub-rotina KRL completa. + + + + CmdRobotInsertKukaIR125 + + + Robot + Robô + + + Kuka IR125 + Kuka IR125 + + + Insert a Kuka IR125 into the document. + Inserir um Kuka IR125 no documento. + + + + CmdRobotInsertKukaIR16 + + Robot + Robô + + + Kuka IR16 + Kuka IR16 + + + Insert a Kuka IR16 into the document. + Inserir um Kuka IR16 no documento. + + + + CmdRobotInsertKukaIR210 + + Robot + Robô + + + Kuka IR210 + Kuka IR210 + + + Insert a Kuka IR210 into the document. + Inserir um Kuka IR210 no documento. + + + + CmdRobotInsertKukaIR500 + + Robot + Robô + + + Kuka IR500 + Kuka IR500 + + + Insert a Kuka IR500 into the document. + Inserir um Kuka IR500 no documento. + + + + CmdRobotInsertWaypoint + + + Robot + Robô + + + Insert in trajectory + Inserir na trajetória + + + Insert robot Tool location into trajectory + Inserir localização de ferramenta de robô na trajetória + + + + CmdRobotInsertWaypointPreselect + + Robot + Robô + + + Insert in trajectory + Inserir na trajetória + + + Insert preselection position into trajectory (W) + Inserir posição da pre-seleção na trajetória (W) + + + + CmdRobotRestoreHomePos + + + Robot + Robô + + + Move to home + Mover para a posição inicial + + + + CmdRobotSetDefaultOrientation + + + Robot + Robô + + + Set default orientation + Definir a orientação padrão + + + set the default orientation for subsequent commands for waypoint creation + definir a orientação padrão para os comandos subsequentes para a criação de waypoint + + + + CmdRobotSetDefaultValues + + Robot + Robô + + + Set default values + Definir valores padrão + + + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + Defina os valores padrão para a velocidade, aceleração e continuidade para comandos subsequentes de criação de waypoint + + + + CmdRobotSetHomePos + + + Robot + Robô + + + Set the home position + Definir a posição inicial + + + + CmdRobotSimulate + + Robot + Robô + + + Simulate a trajectory + Simular uma trajetória + + + Run a simulation on a trajectory + Executar uma simulação sobre uma trajetória + + + + CmdRobotTrajectoryCompound + + + Robot + Robô + + + Trajectory compound... + Composto de trajetória... + + + Group and connect some trajectories to one + Agrupar e conectar algumas trajetórias a uma + + + + CmdRobotTrajectoryDressUp + + Robot + Robô + + + Dress up trajectory... + Vestir trajetória... + + + Create a dress up object which overide som aspects of a trajectory + Criar um vestimento que substitui os aspectos de som de uma trajetória + + + + Gui::TaskView::TaskWatcherCommands + + + Trajectory tools + Ferramentas de trajetória + + + Robot tools + Ferramentas de robô + + + Insert Robot + Inserir Robô + + + + QObject + + + Wrong selection + Seleção errada + + + Select one Robot and one Trajectory object. + Selecione um robô e uma trajetória. + + + Trajectory not valid + A trajetória não é válida + + + You need at least two way points in a trajectory to simulate. + Você precisa de pelo menos dois pontos para simular uma trajetória. + + + + KRL file(*.src) + Arquivo KRL (*.src) + + + All Files (*.*) + Todos os arquivos (*.*) + + + Export program + Exportar programa + + + + Select one robot and one shape or VRML object. + Selecione um robô e uma forma ou objeto VRML. + + + + No preselection + Nenhuma preseleção + + + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + Coloque o mouse em cima de um objeto (preseleção) para usar este comando. Veja a documentação para mais detalhes. + + + + Select one Robot to set home postion + Selecione um robô para definir a posição de origem + + + Select one Robot + Selecione um robô + + + + Select one Trajectory object. + Selecione um objeto de trajetória. + + + set default speed + Definir a velocidade padrão + + + speed: (e.g. 1 m/s or 3 cm/s) + Velocidade: (por exemplo, 1 m/s ou 3 cm/s) + + + set default continuity + Definir continuidade padrão + + + continuous ? + Contínuo ? + + + set default acceleration + Definir aceleração padrão + + + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + Aceleração: (por exemplo, 1 m/s^2 ou 3 cm/s^2) + + + Select the Trajectory which you want to dress up. + Selecione a trajetória que você deseja vestir. + + + + No robot files installed + Nenhum arquivo de robô instalado + + + Please visit %1 and copy the files to %2 + Por favor, visite %1 e copie os arquivos para %2 + + + + RobotGui::DlgTrajectorySimulate + + + Simulation + Simulação + + + |< + |< + + + < + < + + + || + || + + + |> + |> + + + > + > + + + >| + >| + + + % + % + + + Type + Tipo + + + Name + Nome + + + C + C + + + V + V + + + A + A + + + + RobotGui::TaskEdge2TracParameter + + + TaskEdge2TracParameter + TaskEdge2TracParameter + + + + RobotGui::TaskRobot6Axis + + + Form + Forma + + + A1 + A1 + + + A2 + A2 + + + A3 + A3 + + + A4 + A4 + + + A5 + A5 + + + A6 + A6 + + + TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) + + + Tool: (0,0,400,0,0,0) + Ferramenta: (0,0,400,0,0,0) + + + ... + ... + + + + TaskRobot6Axis + 6EixosRobôTarefas + + + + RobotGui::TaskRobotControl + + + TaskRobotControl + ControleRobôTarefas + + + + RobotGui::TaskRobotMessages + + + TaskRobotMessages + MensagensRobôTarefas + + + + RobotGui::TaskTrajectory + + + Form + Forma + + + |< + |< + + + < + < + + + || + || + + + |> + |> + + + > + > + + + >| + >| + + + % + % + + + 10 ms + 10 ms + + + 50 ms + 50 ms + + + 100 ms + 100 ms + + + 500 ms + 500 ms + + + 1 s + 1 s + + + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + + + Type + Tipo + + + Name + Nome + + + C + C + + + V + V + + + A + A + + + + Trajectory + Trajetória + + + + RobotGui::TaskTrajectoryDressUpParameter + + + Dress Up Parameter + Parâmetro de vestimento + + + + TaskEdge2TracParameter + + + Form + Forma + + + Hide / Show + Ocultar / Mostrar + + + Edges: 0 + Arestas: 0 + + + Cluster: 0 + Cluster: 0 + + + Sizing Value: + Valor de dimensionamento: + + + Use orientation of edge + Utiliza a orientação da aresta + + + TaskEdge2TracParameter + TaskEdge2TracParameter + + + + TaskRobot6Axis + + TaskRobot6Axis + 6EixosRobôTarefas + + + + TaskRobotControl + + + Form + Forma + + + X+ + X+ + + + Y+ + Y+ + + + Z+ + Z+ + + + A+ + A+ + + + B+ + B+ + + + C+ + C+ + + + X- + X- + + + Y- + Y- + + + Z- + Z- + + + A- + A- + + + B- + B- + + + C- + C- + + + Tool 0 + Ferramenta 0 + + + Tool + Ferramenta + + + Base 0 + Base 0 + + + Base + Base + + + World + Mundo + + + 50mm / 5° + 50mm / 5° + + + 20mm / 2° + 20mm / 2° + + + 10mm / 1° + 10mm / 1° + + + 5mm / 0.5° + 5mm / 0.5° + + + 1mm / 0.1° + 1mm / 0.1° + + + TaskRobotControl + ControleRobôTarefas + + + + TaskRobotMessages + + + Form + Forma + + + clear + limpar + + + TaskRobotMessages + MensagensRobôTarefas + + + + TaskTrajectory + + Trajectory + Trajetória + + + + TaskTrajectoryDressUpParameter + + + Form + Forma + + + Speed & Acceleration: + Velocidade e aceleração: + + + Speed: + Velocidade: + + + Use + Uso + + + Accel: + Acel: + + + Don't change Cont + Não altere Cont + + + Continues + Continua + + + Discontinues + Interrompe + + + Position and Orientation: + Posição e orientação: + + + (0,0,0),(0,0,0) + (0,0,0),(0,0,0) + + + ... + ... + + + Don't change Position & Orientation + Não alterar a posição & orientação + + + Use Orientation + Utilizar a orientação + + + Add Position + Adicionar posição + + + Add Orientation + Adicionar orientação + + + Dress Up Parameter + Parâmetro de vestimento + + + + Workbench + + + Robot + Robô + + + Insert Robots + Inserir robôs + + + &Robot + &Robô + + + Export trajectory + Exportar trajetória + + + diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_pt.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_pt.ts deleted file mode 100644 index 311a426e8..000000000 --- a/src/Mod/Robot/Gui/Resources/translations/Robot_pt.ts +++ /dev/null @@ -1,1044 +0,0 @@ - - - - - CmdRobotAddToolShape - - - Robot - Robô - - - - Add tool - Adicionar a ferramenta - - - - Add a tool shape to the robot - Adicionar uma ferramenta de forma ao robô - - - - CmdRobotConstraintAxle - - - Robot - Robô - - - - Place robot... - Colocar robô... - - - - Place a robot (experimental!) - Colocar um robô (experimental!) - - - - CmdRobotCreateTrajectory - - - Robot - Robô - - - - Create trajectory - Criar trajetória - - - - Create a new empty trajectory - Criar uma nova trajetória vazia - - - - CmdRobotEdge2Trac - - - Robot - Robô - - - - Edge to Trajectory... - Aresta para trajetória... - - - - Generate a Trajectory from a set of edges - Gerar uma trajetória a partir de um conjunto de arestas - - - - CmdRobotExportKukaCompact - - - Robot - Robô - - - - Kuka compact subroutine... - Kuka sub-rotina compacta ... - - - - Export the trajectory as a compact KRL subroutine. - Exporte a trajetória como uma sub-rotina KRL compacta. - - - - CmdRobotExportKukaFull - - - Robot - Robô - - - - Kuka full subroutine... - KUKA sub-rotina completa... - - - - Export the trajectory as a full KRL subroutine. - Exporte a trajetória como uma sub-rotina KRL completa. - - - - CmdRobotInsertKukaIR125 - - - Robot - Robô - - - - Kuka IR125 - Kuka IR125 - - - - Insert a Kuka IR125 into the document. - Inserir um Kuka IR125 no documento. - - - - CmdRobotInsertKukaIR16 - - - Robot - Robô - - - - Kuka IR16 - Kuka IR16 - - - - Insert a Kuka IR16 into the document. - Inserir um Kuka IR16 no documento. - - - - CmdRobotInsertKukaIR210 - - - Robot - Robô - - - - Kuka IR210 - Kuka IR210 - - - - Insert a Kuka IR210 into the document. - Inserir um Kuka IR210 no documento. - - - - CmdRobotInsertKukaIR500 - - - Robot - Robô - - - - Kuka IR500 - Kuka IR500 - - - - Insert a Kuka IR500 into the document. - Inserir um Kuka IR500 no documento. - - - - CmdRobotInsertWaypoint - - - Robot - Robô - - - - Insert in trajectory - Inserir na trajetória - - - - Insert robot Tool location into trajectory - Inserir localização de ferramenta de robô na trajetória - - - - CmdRobotInsertWaypointPreselect - - - Robot - Robô - - - - Insert in trajectory - Inserir na trajetória - - - - Insert preselection position into trajectory (W) - Inserir posição da pre-seleção na trajetória (W) - - - - CmdRobotRestoreHomePos - - - Robot - Robô - - - - - Move to home - Mover para a posição inicial - - - - CmdRobotSetDefaultOrientation - - - Robot - Robô - - - - Set default orientation - Definir a orientação padrão - - - - set the default orientation for subsequent commands for waypoint creation - definir a orientação padrão para os comandos subsequentes para a criação de waypoint - - - - CmdRobotSetDefaultValues - - - Robot - Robô - - - - Set default values - Definir valores padrão - - - - set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation - Defina os valores padrão para a velocidade, aceleração e continuidade para comandos subsequentes de criação de waypoint - - - - CmdRobotSetHomePos - - - Robot - Robô - - - - - Set the home position - Definir a posição inicial - - - - CmdRobotSimulate - - - Robot - Robô - - - - Simulate a trajectory - Simular uma trajetória - - - - Run a simulation on a trajectory - Executar uma simulação sobre uma trajetória - - - - CmdRobotTrajectoryCompound - - - Robot - Robô - - - - Trajectory compound... - Composto de trajetória... - - - - Group and connect some trajectories to one - Agrupar e conectar algumas trajetórias a uma - - - - CmdRobotTrajectoryDressUp - - - Robot - Robô - - - - Dress up trajectory... - Vestir trajetória... - - - - Create a dress up object which overide som aspects of a trajectory - Criar um vestimento que substitui os aspectos de som de uma trajetória - - - - Gui::TaskView::TaskWatcherCommands - - - Trajectory tools - Ferramentas de trajetória - - - - Robot tools - Ferramentas de robô - - - - Insert Robot - Inserir Robô - - - - QObject - - - - - - - - - - - - - Wrong selection - Seleção errada - - - - - - - - Select one Robot and one Trajectory object. - Selecione um robô e uma trajetória. - - - - Trajectory not valid - A trajetória não é válida - - - - You need at least two way points in a trajectory to simulate. - Você precisa de pelo menos dois pontos para simular uma trajetória. - - - - - KRL file(*.src) - Arquivo KRL (*.src) - - - - - All Files (*.*) - Todos os arquivos (*.*) - - - - - Export program - Exportar programa - - - - Select one robot and one shape or VRML object. - Selecione um robô e uma forma ou objeto VRML. - - - - No preselection - Nenhuma preseleção - - - - You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. - Coloque o mouse em cima de um objeto (preseleção) para usar este comando. Veja a documentação para mais detalhes. - - - - Select one Robot to set home postion - Selecione um robô para definir a posição de origem - - - - Select one Robot - Selecione um robô - - - - - Select one Trajectory object. - Selecione um objeto de trajetória. - - - - set default speed - Definir a velocidade padrão - - - - speed: (e.g. 1 m/s or 3 cm/s) - Velocidade: (por exemplo, 1 m/s ou 3 cm/s) - - - - set default continuity - Definir continuidade padrão - - - - continuous ? - Contínuo ? - - - - set default acceleration - Definir aceleração padrão - - - - acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) - Aceleração: (por exemplo, 1 m/s^2 ou 3 cm/s^2) - - - - Select the Trajectory which you want to dress up. - Selecione a trajetória que você deseja vestir. - - - - No robot files installed - Nenhum arquivo de robô instalado - - - - Please visit %1 and copy the files to %2 - Por favor, visite %1 e copie os arquivos para %2 - - - - RobotGui::DlgTrajectorySimulate - - - Simulation - Simulação - - - - |< - |< - - - - < - < - - - - || - || - - - - |> - |> - - - - > - > - - - - >| - >| - - - - % - % - - - - Type - Tipo - - - - Name - Nome - - - - C - C - - - - V - V - - - - A - A - - - - RobotGui::TaskEdge2TracParameter - - - TaskEdge2TracParameter - TaskEdge2TracParameter - - - - RobotGui::TaskRobot6Axis - - - Form - Forma - - - - A1 - A1 - - - - A2 - A2 - - - - A3 - A3 - - - - A4 - A4 - - - - A5 - A5 - - - - A6 - A6 - - - - TCP: (200.23,300.23,400.23,234,343,343) - TCP: (200.23,300.23,400.23,234,343,343) - - - - Tool: (0,0,400,0,0,0) - Ferramenta: (0,0,400,0,0,0) - - - - ... - ... - - - - TaskRobot6Axis - 6EixosRobôTarefas - - - - RobotGui::TaskRobotControl - - - TaskRobotControl - ControleRobôTarefas - - - - RobotGui::TaskRobotMessages - - - TaskRobotMessages - MensagensRobôTarefas - - - - RobotGui::TaskTrajectory - - - Form - Forma - - - - |< - |< - - - - < - < - - - - || - || - - - - |> - |> - - - - > - > - - - - >| - >| - - - - % - % - - - - 10 ms - 10 ms - - - - 50 ms - 50 ms - - - - 100 ms - 100 ms - - - - 500 ms - 500 ms - - - - 1 s - 1 s - - - - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - - - - Type - Tipo - - - - Name - Nome - - - - C - C - - - - V - V - - - - A - A - - - - Trajectory - Trajetória - - - - RobotGui::TaskTrajectoryDressUpParameter - - - Dress Up Parameter - Parâmetro de vestimento - - - - TaskEdge2TracParameter - - - Form - Forma - - - - Hide / Show - Ocultar / Mostrar - - - - Edges: 0 - Arestas: 0 - - - - Cluster: 0 - Cluster: 0 - - - - Sizing Value: - Valor de dimensionamento: - - - - Use orientation of edge - Utiliza a orientação da aresta - - - TaskEdge2TracParameter - TaskEdge2TracParameter - - - - TaskRobot6Axis - - TaskRobot6Axis - 6EixosRobôTarefas - - - - TaskRobotControl - - - Form - Forma - - - - X+ - X+ - - - - Y+ - Y+ - - - - Z+ - Z+ - - - - A+ - A+ - - - - B+ - B+ - - - - C+ - C+ - - - - X- - X- - - - - Y- - Y- - - - - Z- - Z- - - - - A- - A- - - - - B- - B- - - - - C- - C- - - - - Tool 0 - Ferramenta 0 - - - - Tool - Ferramenta - - - - Base 0 - Base 0 - - - - Base - Base - - - - World - Mundo - - - - 50mm / 5° - 50mm / 5° - - - - 20mm / 2° - 20mm / 2° - - - - 10mm / 1° - 10mm / 1° - - - - 5mm / 0.5° - 5mm / 0.5° - - - - 1mm / 0.1° - 1mm / 0.1° - - - TaskRobotControl - ControleRobôTarefas - - - - TaskRobotMessages - - - Form - Forma - - - - clear - limpar - - - TaskRobotMessages - MensagensRobôTarefas - - - - TaskTrajectory - - Trajectory - Trajetória - - - - TaskTrajectoryDressUpParameter - - - Form - Forma - - - - Speed & Acceleration: - Velocidade e aceleração: - - - - Speed: - Velocidade: - - - - - Use - Uso - - - - Accel: - Acel: - - - - Don't change Cont - Não altere Cont - - - - Continues - Continua - - - - Discontinues - Interrompe - - - - Position and Orientation: - Posição e orientação: - - - - (0,0,0),(0,0,0) - (0,0,0),(0,0,0) - - - - ... - ... - - - - Don't change Position & Orientation - Não alterar a posição & orientação - - - - Use Orientation - Utilizar a orientação - - - - Add Position - Adicionar posição - - - - Add Orientation - Adicionar orientação - - - Dress Up Parameter - Parâmetro de vestimento - - - - Workbench - - - Robot - Robô - - - - Insert Robots - Inserir robôs - - - - &Robot - &Robô - - - - Export trajectory - Exportar trajetória - - - diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_ro.qm b/src/Mod/Robot/Gui/Resources/translations/Robot_ro.qm new file mode 100644 index 000000000..eb9a09c3f Binary files /dev/null and b/src/Mod/Robot/Gui/Resources/translations/Robot_ro.qm differ diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_ro.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_ro.ts new file mode 100644 index 000000000..48cae3eaf --- /dev/null +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_ro.ts @@ -0,0 +1,877 @@ + + + + + CmdRobotAddToolShape + + + Robot + Robot + + + Add tool + Adaugă instrument + + + Add a tool shape to the robot + Adăugaţi o formă de instrument la robot + + + + CmdRobotConstraintAxle + + + Robot + Robot + + + Place robot... + Plasaţi robotul... + + + Place a robot (experimental!) + Plasaţi robotul (experimental!) + + + + CmdRobotCreateTrajectory + + + Robot + Robot + + + Create trajectory + Creeaţi o traiectorie + + + Create a new empty trajectory + Creeaţi o nouă traiectorie goală + + + + CmdRobotEdge2Trac + + Robot + Robot + + + Edge to Trajectory... + Muchie la Traiectorie... + + + Generate a Trajectory from a set of edges + Generați o Traiectorie de la un set de muchii + + + + CmdRobotExportKukaCompact + + + Robot + Robot + + + Kuka compact subroutine... + Subrutină compactă KUKA... + + + Export the trajectory as a compact KRL subroutine. + Exportaţi traiectoria ca o subrutina KRL compactă. + + + + CmdRobotExportKukaFull + + Robot + Robot + + + Kuka full subroutine... + Subrutină completă Kuka... + + + Export the trajectory as a full KRL subroutine. + Exportaţi traiectoria ca o subrutină KRL completă. + + + + CmdRobotInsertKukaIR125 + + + Robot + Robot + + + Kuka IR125 + Kuka IR125 + + + Insert a Kuka IR125 into the document. + Inserați un Kuka IR125 în document. + + + + CmdRobotInsertKukaIR16 + + Robot + Robot + + + Kuka IR16 + Kuka IR16 + + + Insert a Kuka IR16 into the document. + Inserați un Kuka IR16 în document. + + + + CmdRobotInsertKukaIR210 + + Robot + Robot + + + Kuka IR210 + Kuka IR210 + + + Insert a Kuka IR210 into the document. + Inserați un Kuka IR210 în document. + + + + CmdRobotInsertKukaIR500 + + Robot + Robot + + + Kuka IR500 + Kuka IR500 + + + Insert a Kuka IR500 into the document. + Inserați un Kuka IR500 în document. + + + + CmdRobotInsertWaypoint + + + Robot + Robot + + + Insert in trajectory + Inseraţi în traiectorie + + + Insert robot Tool location into trajectory + Introduceţi locaţia uneltei robotului în traiectorie + + + + CmdRobotInsertWaypointPreselect + + Robot + Robot + + + Insert in trajectory + Inseraţi în traiectorie + + + Insert preselection position into trajectory (W) + Introduceţi poziţia preselectată în traiectorie (W) + + + + CmdRobotRestoreHomePos + + + Robot + Robot + + + Move to home + Mută spre casă + + + + CmdRobotSetDefaultOrientation + + + Robot + Robot + + + Set default orientation + Setați orientarea implicită + + + set the default orientation for subsequent commands for waypoint creation + Setați orientarea implicită pentru comezile de creeare a punctelor de referință ulterioare + + + + CmdRobotSetDefaultValues + + Robot + Robot + + + Set default values + Setați valorile implicite + + + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + setaţi valorile implicite pentru viteză, acceleraţie şi continuitate pentru comenzi le de creare a punctelor de referinţă ulterioare + + + + CmdRobotSetHomePos + + + Robot + Robot + + + Set the home position + Setează poziţia de acasă + + + + CmdRobotSimulate + + Robot + Robot + + + Simulate a trajectory + Simulaţi o traiectorie + + + Run a simulation on a trajectory + Rulaţi o simulare a traiectoriei + + + + CmdRobotTrajectoryCompound + + + Robot + Robot + + + Trajectory compound... + Traiectorie combinată... + + + Group and connect some trajectories to one + Grupați și uniți unele traiectorii într-una singură + + + + CmdRobotTrajectoryDressUp + + Robot + Robot + + + Dress up trajectory... + Dress up trajectory... + + + Create a dress up object which overide som aspects of a trajectory + Create a dress up object which overide som aspects of a trajectory + + + + Gui::TaskView::TaskWatcherCommands + + + Trajectory tools + Instrumente pentru Traiectorii + + + Robot tools + Instrumente pentru roboţi + + + Insert Robot + Inserare Robot + + + + QObject + + + Wrong selection + Selecţie greşită + + + Select one Robot and one Trajectory object. + Selectaţi un obiect Robot şi un obiect de Traiectorie. + + + Trajectory not valid + Traiectoria nu este validă + + + You need at least two way points in a trajectory to simulate. + Aveţi nevoie de cel puţin două puncte într-o traiectorie pentru a o simula. + + + + KRL file(*.src) + Fişier KRL(*.src) + + + All Files (*.*) + Toate fișierele (*.*) + + + Export program + Program de export + + + + Select one robot and one shape or VRML object. + Selectaţi un robot şi o formă sau un obiect VRML. + + + + No preselection + Nici o preselecţie + + + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + Va trebui să treceţi peste o formă geometrică (Preselectie) cu mouse-ul pentru a utiliza această comandă. Consultați documentaţia pentru mai multe detalii. + + + + Select one Robot to set home postion + Selectaţi un Robot pentru a seta poziţia de acasă + + + Select one Robot + Selectaţi un Robot + + + + Select one Trajectory object. + Selectaţi un obiect Traiectorie. + + + set default speed + setați viteza implicită + + + speed: (e.g. 1 m/s or 3 cm/s) + viteza: (de ex: 1 m/s sau 3 cm/s) + + + set default continuity + setați continuitatea implicită + + + continuous ? + continuu? + + + set default acceleration + setați accelerația implicită + + + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + accelerația: (ex. 1 m/s^2 sau 3 cm/s^2) + + + Select the Trajectory which you want to dress up. + Selectaţi traiectoria pe care doriţi să o îmbrăcaţi. + + + + No robot files installed + Nici un fișier pentru robot instalat + + + Please visit %1 and copy the files to %2 + Vă rugăm să vizitaţi %1 şi copiaţi fişierele în %2 + + + + RobotGui::DlgTrajectorySimulate + + + Simulation + Simulare + + + |< + |< + + + < + < + + + || + || + + + |> + |> + + + > + > + + + >| + >| + + + % + % + + + Type + Tip + + + Name + Nume + + + C + C + + + V + V + + + A + A + + + + RobotGui::TaskEdge2TracParameter + + + TaskEdge2TracParameter + TaskEdge2TracParameter + + + + RobotGui::TaskRobot6Axis + + + Form + Form + + + A1 + A1 + + + A2 + A2 + + + A3 + A3 + + + A4 + A4 + + + A5 + A5 + + + A6 + A6 + + + TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) + + + Tool: (0,0,400,0,0,0) + Instrument: (0,0,400,0,0,0) + + + ... + ... + + + + TaskRobot6Axis + TaskRobot6Axis + + + + RobotGui::TaskRobotControl + + + TaskRobotControl + TaskRobotControl + + + + RobotGui::TaskRobotMessages + + + TaskRobotMessages + TaskRobotMessages + + + + RobotGui::TaskTrajectory + + + Form + Form + + + |< + |< + + + < + < + + + || + || + + + |> + |> + + + > + > + + + >| + >| + + + % + % + + + 10 ms + 10 ms + + + 50 ms + 50 ms + + + 100 ms + 100 ms + + + 500 ms + 500 ms + + + 1 s + 1 s + + + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Poz: (200.23, 300.23, 400.23, 234, 343 ,343) + + + Type + Tip + + + Name + Nume + + + C + C + + + V + V + + + A + A + + + + Trajectory + Trajectory + + + + RobotGui::TaskTrajectoryDressUpParameter + + + Dress Up Parameter + Dress Up Parameter + + + + TaskEdge2TracParameter + + + Form + Form + + + Hide / Show + Ascunde / Arată + + + Edges: 0 + Muchii: 0 + + + Cluster: 0 + Cluster: 0 + + + Sizing Value: + Valoarea de dimensionare: + + + Use orientation of edge + Folosiţi orientarea muchiei + + + TaskEdge2TracParameter + TaskEdge2TracParameter + + + + TaskRobot6Axis + + TaskRobot6Axis + TaskRobot6Axis + + + + TaskRobotControl + + + Form + Form + + + X+ + X+ + + + Y+ + Y+ + + + Z+ + Z+ + + + A+ + A+ + + + B+ + B+ + + + C+ + C+ + + + X- + X- + + + Y- + Y- + + + Z- + Z- + + + A- + A- + + + B- + B- + + + C- + C- + + + Tool 0 + Instrument 0 + + + Tool + Instrument + + + Base 0 + Baza 0 + + + Base + Bază + + + World + Lumea + + + 50mm / 5° + 50mm / 5° + + + 20mm / 2° + 20mm / 2° + + + 10mm / 1° + 10mm / 1° + + + 5mm / 0.5° + 5mm / 0.5° + + + 1mm / 0.1° + 1mm / 0.1° + + + TaskRobotControl + TaskRobotControl + + + + TaskRobotMessages + + + Form + Form + + + clear + clar + + + TaskRobotMessages + TaskRobotMessages + + + + TaskTrajectory + + Trajectory + Trajectory + + + + TaskTrajectoryDressUpParameter + + + Form + Form + + + Speed & Acceleration: + Viteza & accelerația: + + + Speed: + Viteza: + + + Use + Utilizarea + + + Accel: + Accel: + + + Don't change Cont + Nu schimba Cont + + + Continues + Continuă + + + Discontinues + Întrerupe + + + Position and Orientation: + Poziţie şi orientare: + + + (0,0,0),(0,0,0) + (0,0,0),(0,0,0) + + + ... + ... + + + Don't change Position & Orientation + Nu modifica Poziţia şi Orientarea + + + Use Orientation + Foloseşte Orientarea + + + Add Position + Adaugă Poziţie + + + Add Orientation + Adaugă Orientare + + + Dress Up Parameter + Dress Up Parameter + + + + Workbench + + + Robot + Robot + + + Insert Robots + Inserare roboţi + + + &Robot + &Robot + + + Export trajectory + Exportă traiectoria + + + diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_ru.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_ru.ts index f7326548f..21e3acc0e 100644 --- a/src/Mod/Robot/Gui/Resources/translations/Robot_ru.ts +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_ru.ts @@ -1,1044 +1,877 @@ - - + + CmdRobotAddToolShape - - Robot - Робот + + Robot + Робот - - Add tool - Добавить инструмент + Add tool + Добавить инструмент - - Add a tool shape to the robot - Добавить правило для робота + Add a tool shape to the robot + Добавить правило для робота - - + + CmdRobotConstraintAxle - - Robot - Робот + + Robot + Робот - - Place robot... - Место робота ... + Place robot... + Место робота ... - - Place a robot (experimental!) - Место робота (временно!) + Place a robot (experimental!) + Место робота (временно!) - - + + CmdRobotCreateTrajectory - - Robot - Робот + + Robot + Робот - - Create trajectory - Создание траектории + Create trajectory + Создание траектории - - Create a new empty trajectory - Создайте новую траекторию + Create a new empty trajectory + Создайте новую траекторию - - + + CmdRobotEdge2Trac - - Robot - Робот + Robot + Робот - - Edge to Trajectory... - Край траектории... + Edge to Trajectory... + Край траектории... - - Generate a Trajectory from a set of edges - Создать траекторию из ребер + Generate a Trajectory from a set of edges + Создать траекторию из ребер - - + + CmdRobotExportKukaCompact - - Robot - Робот + + Robot + Робот - - Kuka compact subroutine... - Сжатая подпрограмма Kuka... + Kuka compact subroutine... + Сжатая подпрограмма Kuka... - - Export the trajectory as a compact KRL subroutine. - Экспорт траектории в сжатую KRL-подпрограмму. + Export the trajectory as a compact KRL subroutine. + Экспорт траектории в сжатую KRL-подпрограмму. - - + + CmdRobotExportKukaFull - - Robot - Робот + Robot + Робот - - Kuka full subroutine... - Полная подпрограмма Kuka... + Kuka full subroutine... + Полная подпрограмма Kuka... - - Export the trajectory as a full KRL subroutine. - Экспортировать траекторию как полноправную KRL-подпрограмму. + Export the trajectory as a full KRL subroutine. + Экспортировать траекторию как полноправную KRL-подпрограмму. - - + + CmdRobotInsertKukaIR125 - - Robot - Робот + + Robot + Робот - - Kuka IR125 - Kuka IR125 + Kuka IR125 + Kuka IR125 - - Insert a Kuka IR125 into the document. - Внести IR125 Кuka в документ. + Insert a Kuka IR125 into the document. + Внести IR125 Кuka в документ. - - + + CmdRobotInsertKukaIR16 - - Robot - Робот + Robot + Робот - - Kuka IR16 - Kuka IR16 + Kuka IR16 + Kuka IR16 - - Insert a Kuka IR16 into the document. - Внести IR16 Кuka в документ. + Insert a Kuka IR16 into the document. + Внести IR16 Кuka в документ. - - + + CmdRobotInsertKukaIR210 - - Robot - Робот + Robot + Робот - - Kuka IR210 - Kuka IR210 + Kuka IR210 + Kuka IR210 - - Insert a Kuka IR210 into the document. - Внести IR500 Кuka в документ. + Insert a Kuka IR210 into the document. + Внести IR500 Кuka в документ. - - + + CmdRobotInsertKukaIR500 - - Robot - Робот + Robot + Робот - - Kuka IR500 - Kuka IR500 + Kuka IR500 + Kuka IR500 - - Insert a Kuka IR500 into the document. - Внести IR500 Кuka в документ. + Insert a Kuka IR500 into the document. + Внести IR500 Кuka в документ. - - + + CmdRobotInsertWaypoint - - Robot - Робот + + Robot + Робот - - Insert in trajectory - Вставьте в траекторию + Insert in trajectory + Вставьте в траекторию - - Insert robot Tool location into trajectory - Вставьте местоположение робота на траектории + Insert robot Tool location into trajectory + Вставьте местоположение робота на траектории - - + + CmdRobotInsertWaypointPreselect - - Robot - Робот + Robot + Робот - - Insert in trajectory - Вставьте в траекторию + Insert in trajectory + Вставьте в траекторию - - Insert preselection position into trajectory (W) - Вставте предварительную позицию на траектории (W) + Insert preselection position into trajectory (W) + Вставте предварительную позицию на траектории (W) - - + + CmdRobotRestoreHomePos - - Robot - Робот + + Robot + Робот - - - Move to home - Перейти на главную + Move to home + Перейти на главную - - + + CmdRobotSetDefaultOrientation - - Robot - Робот + + Robot + Робот - - Set default orientation - Установить ориентацию по умолчанию + Set default orientation + Установить ориентацию по умолчанию - - set the default orientation for subsequent commands for waypoint creation - Задайте ориентацию по умолчанию для последующих команд для создания точки + set the default orientation for subsequent commands for waypoint creation + Задайте ориентацию по умолчанию для последующих команд для создания точки - - + + CmdRobotSetDefaultValues - - Robot - Робот + Robot + Робот - - Set default values - Установка значений по умолчанию + Set default values + Установка значений по умолчанию - - set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation - Установка значения по умолчанию для скорости, ускорения и целостности для последующих команд создания точки + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + Установка значения по умолчанию для скорости, ускорения и целостности для последующих команд создания точки - - + + CmdRobotSetHomePos - - Robot - Робот + + Robot + Робот - - - Set the home position - Установить в исходное положение + Set the home position + Установить в исходное положение - - + + CmdRobotSimulate - - Robot - Робот + Robot + Робот - - Simulate a trajectory - Моделирование траектории + Simulate a trajectory + Моделирование траектории - - Run a simulation on a trajectory - Смоделировать на траектории + Run a simulation on a trajectory + Смоделировать на траектории - - + + CmdRobotTrajectoryCompound - - Robot - Робот + + Robot + Робот - - Trajectory compound... - Траектория соединения ... + Trajectory compound... + Траектория соединения ... - - Group and connect some trajectories to one - Группировать и подключить траекторий в одну + Group and connect some trajectories to one + Группировать и подключить траекторий в одну - - + + CmdRobotTrajectoryDressUp - - Robot - Робот + Robot + Робот - - Dress up trajectory... - Dress up траекторию... + Dress up trajectory... + Dress up траекторию... - - Create a dress up object which overide som aspects of a trajectory - Создать dress up объект, который overide som аспекты траектории + Create a dress up object which overide som aspects of a trajectory + Создать dress up объект, который overide som аспекты траектории - - + + Gui::TaskView::TaskWatcherCommands - - Trajectory tools - Инструменты для траектории + + Trajectory tools + Инструменты для траектории - - Robot tools - Робот инструменты + Robot tools + Робот инструменты - - Insert Robot - Вставьте Робот + Insert Robot + Вставьте Робот - - + + QObject - - - - - - - - - - - - Wrong selection - Неверный выбор + + Wrong selection + Неверный выбор - - - - - - Select one Robot and one Trajectory object. - Выберите устройство и траекторию движения. + Select one Robot and one Trajectory object. + Выберите устройство и траекторию движения. - - Trajectory not valid - Траектория не действительна + Trajectory not valid + Траектория не действительна - - You need at least two way points in a trajectory to simulate. - Вам нужно хотя бы две точки, чтобы смоделировать траекторию. + You need at least two way points in a trajectory to simulate. + Вам нужно хотя бы две точки, чтобы смоделировать траекторию. - - - KRL file(*.src) - KRL файл (*. src) + + KRL file(*.src) + KRL файл (*. src) - - - All Files (*.*) - Все файлы (*.*) + All Files (*.*) + Все файлы (*.*) - - - Export program - Экспортная программа + Export program + Экспортная программа - - Select one robot and one shape or VRML object. - Выберите один робот и одну фигуру или объект VRML. + + Select one robot and one shape or VRML object. + Выберите один робот и одну фигуру или объект VRML. - - No preselection - Не выбрано + + No preselection + Не выбрано - - You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. - Чтобы использовать данную команду, наведите курсор на выбранную фигуру. См. документацию. + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + Чтобы использовать данную команду, наведите курсор на выбранную фигуру. См. документацию. - - Select one Robot to set home postion - Выберите домашнюю позицию одного из роботов + + Select one Robot to set home postion + Выберите домашнюю позицию одного из роботов - - Select one Robot - Выберите одного робота + Select one Robot + Выберите одного робота - - - Select one Trajectory object. - Выделите один объект с траекторией. + + Select one Trajectory object. + Выделите один объект с траекторией. - - set default speed - установить скорость по умолчанию + set default speed + установить скорость по умолчанию - - speed: (e.g. 1 m/s or 3 cm/s) - скорость: (3 см/с или 1 м/с) + speed: (e.g. 1 m/s or 3 cm/s) + скорость: (3 см/с или 1 м/с) - - set default continuity - установить целостность по умолчанию + set default continuity + установить целостность по умолчанию - - continuous ? - продолжительность ? + continuous ? + продолжительность ? - - set default acceleration - Установка ускорение по умолчанию + set default acceleration + Установка ускорение по умолчанию - - acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) - ускорение: (например, 1 м/с ^ 2 или 3 см/с ^ 2) + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + ускорение: (например, 1 м/с ^ 2 или 3 см/с ^ 2) - - Select the Trajectory which you want to dress up. - Выберите траекторию, которую вы хотите оформить. + Select the Trajectory which you want to dress up. + Выберите траекторию, которую вы хотите оформить. - - No robot files installed - Нет установленных файлов робота + + No robot files installed + Нет установленных файлов робота - - Please visit %1 and copy the files to %2 - Пожалуйста, посетите %1 и скопируйте файлы в %2 + Please visit %1 and copy the files to %2 + Пожалуйста, посетите %1 и скопируйте файлы в %2 - - + + RobotGui::DlgTrajectorySimulate - - Simulation - Симуляция + + Simulation + Симуляция - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - Type - Тип + Type + Тип - - Name - Название + Name + Название - - C - C + C + C - - V - V + V + V - - A - A + A + A - - + + RobotGui::TaskEdge2TracParameter - - TaskEdge2TracParameter - TaskEdge2TracParameter + + TaskEdge2TracParameter + TaskEdge2TracParameter - - + + RobotGui::TaskRobot6Axis - - Form - Форма + + Form + Форма - - A1 - А1 + A1 + А1 - - A2 - А2 + A2 + А2 - - A3 - А3 + A3 + А3 - - A4 - А4 + A4 + А4 - - A5 - А5 + A5 + А5 - - A6 - A6 + A6 + A6 - - TCP: (200.23,300.23,400.23,234,343,343) - TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) - - Tool: (0,0,400,0,0,0) - Инструмент: (0,0,400,0,0,0) + Tool: (0,0,400,0,0,0) + Инструмент: (0,0,400,0,0,0) - - ... - ... + ... + ... - - TaskRobot6Axis - задание положения осей + + TaskRobot6Axis + задание положения осей - - + + RobotGui::TaskRobotControl - - TaskRobotControl - задание автоматического управления + + TaskRobotControl + задание автоматического управления - - + + RobotGui::TaskRobotMessages - - TaskRobotMessages - создание автоматического сообщения + + TaskRobotMessages + создание автоматического сообщения - - + + RobotGui::TaskTrajectory - - Form - Форма + + Form + Форма - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - 10 ms - 10 мс + 10 ms + 10 мс - - 50 ms - 50 мс + 50 ms + 50 мс - - 100 ms - 100 мс + 100 ms + 100 мс - - 500 ms - 500 мс + 500 ms + 500 мс - - 1 s - 1 с + 1 s + 1 с - - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - Поз: (200.23, 300.23, 400.23, 234, 343, 343) + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Поз: (200.23, 300.23, 400.23, 234, 343, 343) - - Type - Тип + Type + Тип - - Name - Название + Name + Название - - C - C + C + C - - V - V + V + V - - A - A + A + A - - Trajectory - Траектории + + Trajectory + Траектории - - + + RobotGui::TaskTrajectoryDressUpParameter - - Dress Up Parameter - Dress Up Параметр + + Dress Up Parameter + Dress Up Параметр - - + + TaskEdge2TracParameter - - Form - Форма + + Form + Форма - - Hide / Show - Скрыть / Показать + Hide / Show + Скрыть / Показать - - Edges: 0 - Краев: 0 + Edges: 0 + Краев: 0 - - Cluster: 0 - Кластеров: 0 + Cluster: 0 + Кластеров: 0 - - Sizing Value: - Калибровка значений: + Sizing Value: + Калибровка значений: - - Use orientation of edge - Используйте ориентацию края + Use orientation of edge + Используйте ориентацию края - TaskEdge2TracParameter - TaskEdge2TracParameter + TaskEdge2TracParameter + TaskEdge2TracParameter - - + + TaskRobot6Axis - TaskRobot6Axis - задание положения осей + TaskRobot6Axis + задание положения осей - - + + TaskRobotControl - - Form - Форма + + Form + Форма - - X+ - X + + X+ + X + - - Y+ - Y + + Y+ + Y + - - Z+ - Z + + Z+ + Z + - - A+ - A + + A+ + A + - - B+ - B + + B+ + B + - - C+ - C + + C+ + C + - - X- - X- + X- + X- - - Y- - Y- + Y- + Y- - - Z- - Z- + Z- + Z- - - A- - A- + A- + A- - - B- - B- + B- + B- - - C- - C- + C- + C- - - Tool 0 - Инструмент 0 + Tool 0 + Инструмент 0 - - Tool - Инструмент + Tool + Инструмент - - Base 0 - База 0 + Base 0 + База 0 - - Base - Основание + Base + Основание - - World - окружение - - - - 50mm / 5° - 50 мм/5 ° - - - - 20mm / 2° - 20mm / 2 ° - - - - 10mm / 1° - 10 мм / 1 ° - - - - 5mm / 0.5° - 5 мм / 0,5 ° - - - - 1mm / 0.1° - 1 мм / 0,1 ° + World + окружение - TaskRobotControl - задание автоматического управления + 50mm / 5° + 50 мм/5 ° - - + + 20mm / 2° + 20mm / 2 ° + + + 10mm / 1° + 10 мм / 1 ° + + + 5mm / 0.5° + 5 мм / 0,5 ° + + + 1mm / 0.1° + 1 мм / 0,1 ° + + + TaskRobotControl + задание автоматического управления + + + TaskRobotMessages - - Form - Форма + + Form + Форма - - clear - очистить + clear + очистить - TaskRobotMessages - создание автоматического сообщения + TaskRobotMessages + создание автоматического сообщения - - + + TaskTrajectory - Trajectory - Траектории + Trajectory + Траектории - - + + TaskTrajectoryDressUpParameter - - Form - Форма + + Form + Форма - - Speed & Acceleration: - Скорость и ускорение: + Speed & Acceleration: + Скорость и ускорение: - - Speed: - Скорость: + Speed: + Скорость: - - - Use - Используйте + Use + Используйте - - Accel: - Accel: + Accel: + Accel: - - Don't change Cont - Не изменять продолжение + Don't change Cont + Не изменять продолжение - - Continues - Продолжается + Continues + Продолжается - - Discontinues - Прекращает + Discontinues + Прекращает - - Position and Orientation: - Позиция и ориентация: + Position and Orientation: + Позиция и ориентация: - - (0,0,0),(0,0,0) - (0,0,0),(0,0,0) + (0,0,0),(0,0,0) + (0,0,0),(0,0,0) - - ... - ... + ... + ... - - Don't change Position & Orientation - Не менять положение и ориентацию + Don't change Position & Orientation + Не менять положение и ориентацию - - Use Orientation - Использовать ориентацию + Use Orientation + Использовать ориентацию - - Add Position - Добавить позицию + Add Position + Добавить позицию - - Add Orientation - Добавить ориентацию + Add Orientation + Добавить ориентацию - Dress Up Parameter - Dress Up Параметр + Dress Up Parameter + Dress Up Параметр - - + + Workbench - - Robot - Робот + + Robot + Робот - - Insert Robots - Вставить роботов + Insert Robots + Вставить роботов - - &Robot - И робот + &Robot + И робот - - Export trajectory - Экспорт траектории + Export trajectory + Экспорт траектории - + diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_se.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_se.ts deleted file mode 100644 index 17e6de2bc..000000000 --- a/src/Mod/Robot/Gui/Resources/translations/Robot_se.ts +++ /dev/null @@ -1,1044 +0,0 @@ - - - - - CmdRobotAddToolShape - - - Robot - Robot - - - - Add tool - Lägg till verktyg - - - - Add a tool shape to the robot - Lägg till en verktygsform till roboten - - - - CmdRobotConstraintAxle - - - Robot - Robot - - - - Place robot... - Placera roboten ... - - - - Place a robot (experimental!) - Placera en robot (experimentell!) - - - - CmdRobotCreateTrajectory - - - Robot - Robot - - - - Create trajectory - Skapa bana - - - - Create a new empty trajectory - Skapa en ny tom bana - - - - CmdRobotEdge2Trac - - - Robot - Robot - - - - Edge to Trajectory... - Kant till bana... - - - - Generate a Trajectory from a set of edges - Generera en bana från en uppsättning med kanter - - - - CmdRobotExportKukaCompact - - - Robot - Robot - - - - Kuka compact subroutine... - KUKA kompakt subrutin ... - - - - Export the trajectory as a compact KRL subroutine. - Exportera banan som en kompakt KRL subrutin. - - - - CmdRobotExportKukaFull - - - Robot - Robot - - - - Kuka full subroutine... - fullständig KUKA subrutin ... - - - - Export the trajectory as a full KRL subroutine. - Exportera banan som en fullständig KRL subrutin. - - - - CmdRobotInsertKukaIR125 - - - Robot - Robot - - - - Kuka IR125 - KUKA IR125 - - - - Insert a Kuka IR125 into the document. - Sätt in en Kuka IR125 i dokumentet. - - - - CmdRobotInsertKukaIR16 - - - Robot - Robot - - - - Kuka IR16 - KUKA IR16 - - - - Insert a Kuka IR16 into the document. - Sätt in en Kuka IR16 i dokumentet. - - - - CmdRobotInsertKukaIR210 - - - Robot - Robot - - - - Kuka IR210 - KUKA IR210 - - - - Insert a Kuka IR210 into the document. - Sätt in en Kuka IR210 i dokumentet. - - - - CmdRobotInsertKukaIR500 - - - Robot - Robot - - - - Kuka IR500 - KUKA IR500 - - - - Insert a Kuka IR500 into the document. - Sätt in en Kuka IR500 i dokumentet. - - - - CmdRobotInsertWaypoint - - - Robot - Robot - - - - Insert in trajectory - Sätt in i bana - - - - Insert robot Tool location into trajectory - Infoga robotverktygets plats i banan - - - - CmdRobotInsertWaypointPreselect - - - Robot - Robot - - - - Insert in trajectory - Sätt in i bana - - - - Insert preselection position into trajectory (W) - Infoga förvalsposition till banan (W) - - - - CmdRobotRestoreHomePos - - - Robot - Robot - - - - - Move to home - Flytta till hemposition - - - - CmdRobotSetDefaultOrientation - - - Robot - Robot - - - - Set default orientation - Ange standard orientering - - - - set the default orientation for subsequent commands for waypoint creation - Ange standardorienteringen för efterföljande kommandon för skapande av banpunkter - - - - CmdRobotSetDefaultValues - - - Robot - Robot - - - - Set default values - Ange standardvärden - - - - set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation - Ange standardvärden för hastighet, acceleration och kontinuitet för efterföljande kommandon för banpunkter - - - - CmdRobotSetHomePos - - - Robot - Robot - - - - - Set the home position - Ställ hemposition - - - - CmdRobotSimulate - - - Robot - Robot - - - - Simulate a trajectory - Simulera en bana - - - - Run a simulation on a trajectory - Kör en simulering på en bana - - - - CmdRobotTrajectoryCompound - - - Robot - Robot - - - - Trajectory compound... - Sammansatt bana... - - - - Group and connect some trajectories to one - Gruppera och anslut vissa banor till en - - - - CmdRobotTrajectoryDressUp - - - Robot - Robot - - - - Dress up trajectory... - Klä upp banan... - - - - Create a dress up object which overide som aspects of a trajectory - Skapa ett klä upp objekt som åsidosätter vissa aspekter av en bana - - - - Gui::TaskView::TaskWatcherCommands - - - Trajectory tools - Banverktyg - - - - Robot tools - Robot verktyg - - - - Insert Robot - Sätt in Robot - - - - QObject - - - - - - - - - - - - - Wrong selection - Fel val - - - - - - - - Select one Robot and one Trajectory object. - Välj en robot och ett banobjekt. - - - - Trajectory not valid - Banan inte giltig - - - - You need at least two way points in a trajectory to simulate. - Du behöver minst två vägpunkter i en bana för att simulera. - - - - - KRL file(*.src) - KRL-fil (*.src) - - - - - All Files (*.*) - Alla filer (*.*) - - - - - Export program - Exportera programmet - - - - Select one robot and one shape or VRML object. - Välj en robot och en form eller ett VRML objekt. - - - - No preselection - Inga förval - - - - You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. - Du måste sväva ovanför en geometri (Förval) med musen för att använda detta kommando. Se dokumentationen för detaljer. - - - - Select one Robot to set home postion - Välj en robot för att ställa in hempositionen - - - - Select one Robot - Välj en Robot - - - - - Select one Trajectory object. - Välj ett banobjekt. - - - - set default speed - Ange standardhastighet - - - - speed: (e.g. 1 m/s or 3 cm/s) - hastighet: (t.ex. 1 m/s eller 3 cm/s) - - - - set default continuity - Ange standardkontinuitet - - - - continuous ? - Kontinuerlig? - - - - set default acceleration - Ange standardacceleration - - - - acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) - acceleration: (t.ex. 1 m/s^2 eller 3 cm/s^2) - - - - Select the Trajectory which you want to dress up. - Markera banan som du vill klä upp. - - - - No robot files installed - Inga robotfiler installerade - - - - Please visit %1 and copy the files to %2 - Besök %1 och kopiera filerna till %2 - - - - RobotGui::DlgTrajectorySimulate - - - Simulation - Simulering - - - - |< - |< - - - - < - < - - - - || - || - - - - |> - |> - - - - > - > - - - - >| - >| - - - - % - % - - - - Type - Typ - - - - Name - Namn - - - - C - C - - - - V - V - - - - A - A - - - - RobotGui::TaskEdge2TracParameter - - - TaskEdge2TracParameter - TaskEdge2TracParameter - - - - RobotGui::TaskRobot6Axis - - - Form - Form - - - - A1 - A1 - - - - A2 - A2 - - - - A3 - A3 - - - - A4 - A4 - - - - A5 - A5 - - - - A6 - A6 - - - - TCP: (200.23,300.23,400.23,234,343,343) - TCP: (200.23,300.23,400.23,234,343,343) - - - - Tool: (0,0,400,0,0,0) - Verktyg: (0,0,400,0,0,0) - - - - ... - ... - - - - TaskRobot6Axis - Uppgift 6-axlad robot - - - - RobotGui::TaskRobotControl - - - TaskRobotControl - Uppgift Robotkontroll - - - - RobotGui::TaskRobotMessages - - - TaskRobotMessages - Uppgift Robot meddelanden - - - - RobotGui::TaskTrajectory - - - Form - Form - - - - |< - |< - - - - < - < - - - - || - || - - - - |> - |> - - - - > - > - - - - >| - >| - - - - % - % - - - - 10 ms - 10 ms - - - - 50 ms - 50 ms - - - - 100 ms - 100 ms - - - - 500 ms - 500 ms - - - - 1 s - 1 s - - - - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - - - - Type - Typ - - - - Name - Namn - - - - C - C - - - - V - V - - - - A - A - - - - Trajectory - Rörelsebana - - - - RobotGui::TaskTrajectoryDressUpParameter - - - Dress Up Parameter - Klä upp Parameter - - - - TaskEdge2TracParameter - - - Form - Form - - - - Hide / Show - Dölj / Visa - - - - Edges: 0 - Kanter: 0 - - - - Cluster: 0 - Kluster: 0 - - - - Sizing Value: - Storleksguide Värde: - - - - Use orientation of edge - Använd orientering av kanten - - - TaskEdge2TracParameter - TaskEdge2TracParameter - - - - TaskRobot6Axis - - TaskRobot6Axis - Uppgift 6-axlad robot - - - - TaskRobotControl - - - Form - Form - - - - X+ - X+ - - - - Y+ - Y+ - - - - Z+ - Z+ - - - - A+ - A+ - - - - B+ - B+ - - - - C+ - C+ - - - - X- - X- - - - - Y- - Y- - - - - Z- - Z- - - - - A- - A- - - - - B- - B- - - - - C- - C- - - - - Tool 0 - Verktyg 0 - - - - Tool - Verktyg - - - - Base 0 - Bas 0 - - - - Base - Bas - - - - World - Värld - - - - 50mm / 5° - 50mm / 5° - - - - 20mm / 2° - 20mm / 2° - - - - 10mm / 1° - 10mm / 1° - - - - 5mm / 0.5° - 5mm / 0,5° - - - - 1mm / 0.1° - 1mm / 0,1° - - - TaskRobotControl - Uppgift Robotkontroll - - - - TaskRobotMessages - - - Form - Form - - - - clear - Rensa - - - TaskRobotMessages - Uppgift Robot meddelanden - - - - TaskTrajectory - - Trajectory - Rörelsebana - - - - TaskTrajectoryDressUpParameter - - - Form - Form - - - - Speed & Acceleration: - Hastighet & Acceleration: - - - - Speed: - Hastighet: - - - - - Use - Använd - - - - Accel: - Acceleration: - - - - Don't change Cont - Ändra inte forts - - - - Continues - Fortsätter - - - - Discontinues - Upphör - - - - Position and Orientation: - Position och orientering: - - - - (0,0,0),(0,0,0) - (0,0,0),(0,0,0) - - - - ... - ... - - - - Don't change Position & Orientation - Ändra inte position och orientering - - - - Use Orientation - Använd Orientering - - - - Add Position - Lägg till position - - - - Add Orientation - Lägg till Orientering - - - Dress Up Parameter - Klä upp Parameter - - - - Workbench - - - Robot - Robot - - - - Insert Robots - Infoga robotar - - - - &Robot - &Robot - - - - Export trajectory - Exportera bana - - - diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_sk.qm b/src/Mod/Robot/Gui/Resources/translations/Robot_sk.qm new file mode 100644 index 000000000..1b9479bd2 Binary files /dev/null and b/src/Mod/Robot/Gui/Resources/translations/Robot_sk.qm differ diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_sk.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_sk.ts new file mode 100644 index 000000000..8f63b4abd --- /dev/null +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_sk.ts @@ -0,0 +1,877 @@ + + + + + CmdRobotAddToolShape + + + Robot + Robot + + + Add tool + Pridať nástroj + + + Add a tool shape to the robot + Add a tool shape to the robot + + + + CmdRobotConstraintAxle + + + Robot + Robot + + + Place robot... + Place robot... + + + Place a robot (experimental!) + Place a robot (experimental!) + + + + CmdRobotCreateTrajectory + + + Robot + Robot + + + Create trajectory + Create trajectory + + + Create a new empty trajectory + Vytvoriť novú prázdnu trajektóriu + + + + CmdRobotEdge2Trac + + Robot + Robot + + + Edge to Trajectory... + Edge to Trajectory... + + + Generate a Trajectory from a set of edges + Generate a Trajectory from a set of edges + + + + CmdRobotExportKukaCompact + + + Robot + Robot + + + Kuka compact subroutine... + KUKA kompaktný podprogram... + + + Export the trajectory as a compact KRL subroutine. + Export trajektóriu ako kompaktný KRL podprogram. + + + + CmdRobotExportKukaFull + + Robot + Robot + + + Kuka full subroutine... + Kuka plný podprogram ... + + + Export the trajectory as a full KRL subroutine. + Exportuj trajektóriu ako celý KRL podprogram. + + + + CmdRobotInsertKukaIR125 + + + Robot + Robot + + + Kuka IR125 + Kuka IR125 + + + Insert a Kuka IR125 into the document. + Vložte IR125 Kuka do dokumentu. + + + + CmdRobotInsertKukaIR16 + + Robot + Robot + + + Kuka IR16 + Kuka IR16 + + + Insert a Kuka IR16 into the document. + Vložte Kuka IR16 do dokumentu. + + + + CmdRobotInsertKukaIR210 + + Robot + Robot + + + Kuka IR210 + Kuka IR210 + + + Insert a Kuka IR210 into the document. + Vložte Kuka IR210 do dokumentu. + + + + CmdRobotInsertKukaIR500 + + Robot + Robot + + + Kuka IR500 + Kuka IR500 + + + Insert a Kuka IR500 into the document. + Vložte Kuka IR500 do dokumentu. + + + + CmdRobotInsertWaypoint + + + Robot + Robot + + + Insert in trajectory + Vložiť do trajektórie + + + Insert robot Tool location into trajectory + Insert robot Tool location into trajectory + + + + CmdRobotInsertWaypointPreselect + + Robot + Robot + + + Insert in trajectory + Vložiť do trajektórie + + + Insert preselection position into trajectory (W) + Insert preselection position into trajectory (W) + + + + CmdRobotRestoreHomePos + + + Robot + Robot + + + Move to home + Presun na úvod + + + + CmdRobotSetDefaultOrientation + + + Robot + Robot + + + Set default orientation + Set default orientation + + + set the default orientation for subsequent commands for waypoint creation + set the default orientation for subsequent commands for waypoint creation + + + + CmdRobotSetDefaultValues + + Robot + Robot + + + Set default values + Set default values + + + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + + + + CmdRobotSetHomePos + + + Robot + Robot + + + Set the home position + Set the home position + + + + CmdRobotSimulate + + Robot + Robot + + + Simulate a trajectory + Simulate a trajectory + + + Run a simulation on a trajectory + Run a simulation on a trajectory + + + + CmdRobotTrajectoryCompound + + + Robot + Robot + + + Trajectory compound... + Trajectory compound... + + + Group and connect some trajectories to one + Group and connect some trajectories to one + + + + CmdRobotTrajectoryDressUp + + Robot + Robot + + + Dress up trajectory... + Dress up trajectory... + + + Create a dress up object which overide som aspects of a trajectory + Create a dress up object which overide som aspects of a trajectory + + + + Gui::TaskView::TaskWatcherCommands + + + Trajectory tools + Dráhy nástroja + + + Robot tools + Robot nástroje + + + Insert Robot + Vložte Roboty + + + + QObject + + + Wrong selection + Chybný výber + + + Select one Robot and one Trajectory object. + Select one Robot and one Trajectory object. + + + Trajectory not valid + Trajectory not valid + + + You need at least two way points in a trajectory to simulate. + You need at least two way points in a trajectory to simulate. + + + + KRL file(*.src) + KRL súboru (*. src) + + + All Files (*.*) + Všetky súbory (*.*) + + + Export program + Export programu + + + + Select one robot and one shape or VRML object. + Vyberte jeden robot a jeden tvar alebo objekt VRML. + + + + No preselection + Žiadna predvoľba + + + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + + + + Select one Robot to set home postion + Select one Robot to set home postion + + + Select one Robot + Select one Robot + + + + Select one Trajectory object. + Select one Trajectory object. + + + set default speed + set default speed + + + speed: (e.g. 1 m/s or 3 cm/s) + speed: (e.g. 1 m/s or 3 cm/s) + + + set default continuity + set default continuity + + + continuous ? + continuous ? + + + set default acceleration + Nastaviť predvolené zrýchlenie + + + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + + + Select the Trajectory which you want to dress up. + Select the Trajectory which you want to dress up. + + + + No robot files installed + No robot files installed + + + Please visit %1 and copy the files to %2 + Please visit %1 and copy the files to %2 + + + + RobotGui::DlgTrajectorySimulate + + + Simulation + Simulácia + + + |< + |< + + + < + < + + + || + || + + + |> + |> + + + > + > + + + >| + >| + + + % + % + + + Type + Typ + + + Name + Názov + + + C + C + + + V + V + + + A + A + + + + RobotGui::TaskEdge2TracParameter + + + TaskEdge2TracParameter + TaskEdge2TracParameter + + + + RobotGui::TaskRobot6Axis + + + Form + Forma + + + A1 + A1 + + + A2 + A2 + + + A3 + A3 + + + A4 + A4 + + + A5 + A5 + + + A6 + A6 + + + TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) + + + Tool: (0,0,400,0,0,0) + Nástroj: (0,0,400,0,0,0) + + + ... + ... + + + + TaskRobot6Axis + TaskRobot6Axis + + + + RobotGui::TaskRobotControl + + + TaskRobotControl + TaskRobotControl + + + + RobotGui::TaskRobotMessages + + + TaskRobotMessages + TaskRobotMessages + + + + RobotGui::TaskTrajectory + + + Form + Forma + + + |< + |< + + + < + < + + + || + || + + + |> + |> + + + > + > + + + >| + >| + + + % + % + + + 10 ms + 10 ms + + + 50 ms + 50 ms + + + 100 ms + 100 ms + + + 500 ms + 500 ms + + + 1 s + 1 s + + + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Pos: (200,23, 300,23, 400,23, 234, 343, 343) + + + Type + Typ + + + Name + Názov + + + C + C + + + V + V + + + A + A + + + + Trajectory + Trajectory + + + + RobotGui::TaskTrajectoryDressUpParameter + + + Dress Up Parameter + Dress Up Parameter + + + + TaskEdge2TracParameter + + + Form + Forma + + + Hide / Show + Skryť / Zobraziť + + + Edges: 0 + Hrany: 0 + + + Cluster: 0 + Cluster: 0 + + + Sizing Value: + Hodnota veľkosti: + + + Use orientation of edge + Použitie orientáciu hrany + + + TaskEdge2TracParameter + TaskEdge2TracParameter + + + + TaskRobot6Axis + + TaskRobot6Axis + TaskRobot6Axis + + + + TaskRobotControl + + + Form + Forma + + + X+ + X + + + + Y+ + Y + + + + Z+ + Z + + + + A+ + A + + + + B+ + B + + + + C+ + C + + + + X- + X- + + + Y- + Y- + + + Z- + Z- + + + A- + A- + + + B- + B- + + + C- + C- + + + Tool 0 + Nástroj 0 + + + Tool + Nástroj + + + Base 0 + Základňa 0 + + + Base + Základňa + + + World + Svet + + + 50mm / 5° + 50mm / 5° + + + 20mm / 2° + 20 mm / 2 ° + + + 10mm / 1° + 10 mm/1 ° + + + 5mm / 0.5° + 5 mm/0,5 ° + + + 1mm / 0.1° + 1 mm/0,1 ° + + + TaskRobotControl + TaskRobotControl + + + + TaskRobotMessages + + + Form + Forma + + + clear + zrušiť + + + TaskRobotMessages + TaskRobotMessages + + + + TaskTrajectory + + Trajectory + Trajectory + + + + TaskTrajectoryDressUpParameter + + + Form + Forma + + + Speed & Acceleration: + Rýchlosť & zrýchlenie: + + + Speed: + Rýchlosť: + + + Use + Použitie + + + Accel: + Accel: + + + Don't change Cont + Don't change Cont + + + Continues + Pokračovanie + + + Discontinues + Discontinues + + + Position and Orientation: + Pozícia a orientácia: + + + (0,0,0),(0,0,0) + (0,0,0), (0,0,0) + + + ... + ... + + + Don't change Position & Orientation + Nemeňte pozície & orientáciu + + + Use Orientation + Použitie orientácie + + + Add Position + Pridať pozície + + + Add Orientation + Pridať orientáciu + + + Dress Up Parameter + Dress Up Parameter + + + + Workbench + + + Robot + Robot + + + Insert Robots + Vložte Roboty + + + &Robot + &Robot + + + Export trajectory + Exportuj trajektóriu + + + diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_se.qm b/src/Mod/Robot/Gui/Resources/translations/Robot_sv-SE.qm similarity index 100% rename from src/Mod/Robot/Gui/Resources/translations/Robot_se.qm rename to src/Mod/Robot/Gui/Resources/translations/Robot_sv-SE.qm diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_sv-SE.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_sv-SE.ts new file mode 100644 index 000000000..21d0f5071 --- /dev/null +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_sv-SE.ts @@ -0,0 +1,877 @@ + + + + + CmdRobotAddToolShape + + + Robot + Robot + + + Add tool + Lägg till verktyg + + + Add a tool shape to the robot + Lägg till en verktygsform till roboten + + + + CmdRobotConstraintAxle + + + Robot + Robot + + + Place robot... + Placera roboten ... + + + Place a robot (experimental!) + Placera en robot (experimentell!) + + + + CmdRobotCreateTrajectory + + + Robot + Robot + + + Create trajectory + Skapa bana + + + Create a new empty trajectory + Skapa en ny tom bana + + + + CmdRobotEdge2Trac + + Robot + Robot + + + Edge to Trajectory... + Kant till bana... + + + Generate a Trajectory from a set of edges + Generera en bana från en uppsättning med kanter + + + + CmdRobotExportKukaCompact + + + Robot + Robot + + + Kuka compact subroutine... + KUKA kompakt subrutin ... + + + Export the trajectory as a compact KRL subroutine. + Exportera banan som en kompakt KRL subrutin. + + + + CmdRobotExportKukaFull + + Robot + Robot + + + Kuka full subroutine... + fullständig KUKA subrutin ... + + + Export the trajectory as a full KRL subroutine. + Exportera banan som en fullständig KRL subrutin. + + + + CmdRobotInsertKukaIR125 + + + Robot + Robot + + + Kuka IR125 + KUKA IR125 + + + Insert a Kuka IR125 into the document. + Sätt in en Kuka IR125 i dokumentet. + + + + CmdRobotInsertKukaIR16 + + Robot + Robot + + + Kuka IR16 + KUKA IR16 + + + Insert a Kuka IR16 into the document. + Sätt in en Kuka IR16 i dokumentet. + + + + CmdRobotInsertKukaIR210 + + Robot + Robot + + + Kuka IR210 + KUKA IR210 + + + Insert a Kuka IR210 into the document. + Sätt in en Kuka IR210 i dokumentet. + + + + CmdRobotInsertKukaIR500 + + Robot + Robot + + + Kuka IR500 + KUKA IR500 + + + Insert a Kuka IR500 into the document. + Sätt in en Kuka IR500 i dokumentet. + + + + CmdRobotInsertWaypoint + + + Robot + Robot + + + Insert in trajectory + Sätt in i bana + + + Insert robot Tool location into trajectory + Infoga robotverktygets plats i banan + + + + CmdRobotInsertWaypointPreselect + + Robot + Robot + + + Insert in trajectory + Sätt in i bana + + + Insert preselection position into trajectory (W) + Infoga förvalsposition till banan (W) + + + + CmdRobotRestoreHomePos + + + Robot + Robot + + + Move to home + Flytta till hemposition + + + + CmdRobotSetDefaultOrientation + + + Robot + Robot + + + Set default orientation + Ange standard orientering + + + set the default orientation for subsequent commands for waypoint creation + Ange standardorienteringen för efterföljande kommandon för skapande av banpunkter + + + + CmdRobotSetDefaultValues + + Robot + Robot + + + Set default values + Ange standardvärden + + + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + Ange standardvärden för hastighet, acceleration och kontinuitet för efterföljande kommandon för banpunkter + + + + CmdRobotSetHomePos + + + Robot + Robot + + + Set the home position + Ställ hemposition + + + + CmdRobotSimulate + + Robot + Robot + + + Simulate a trajectory + Simulera en bana + + + Run a simulation on a trajectory + Kör en simulering på en bana + + + + CmdRobotTrajectoryCompound + + + Robot + Robot + + + Trajectory compound... + Sammansatt bana... + + + Group and connect some trajectories to one + Gruppera och anslut vissa banor till en + + + + CmdRobotTrajectoryDressUp + + Robot + Robot + + + Dress up trajectory... + Klä upp banan... + + + Create a dress up object which overide som aspects of a trajectory + Skapa ett klä upp objekt som åsidosätter vissa aspekter av en bana + + + + Gui::TaskView::TaskWatcherCommands + + + Trajectory tools + Banverktyg + + + Robot tools + Robot verktyg + + + Insert Robot + Sätt in Robot + + + + QObject + + + Wrong selection + Fel val + + + Select one Robot and one Trajectory object. + Välj en robot och ett banobjekt. + + + Trajectory not valid + Banan inte giltig + + + You need at least two way points in a trajectory to simulate. + Du behöver minst två vägpunkter i en bana för att simulera. + + + + KRL file(*.src) + KRL-fil (*.src) + + + All Files (*.*) + Alla filer (*.*) + + + Export program + Exportera programmet + + + + Select one robot and one shape or VRML object. + Välj en robot och en form eller ett VRML objekt. + + + + No preselection + Inga förval + + + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + Du måste sväva ovanför en geometri (Förval) med musen för att använda detta kommando. Se dokumentationen för detaljer. + + + + Select one Robot to set home postion + Välj en robot för att ställa in hempositionen + + + Select one Robot + Välj en Robot + + + + Select one Trajectory object. + Välj ett banobjekt. + + + set default speed + Ange standardhastighet + + + speed: (e.g. 1 m/s or 3 cm/s) + hastighet: (t.ex. 1 m/s eller 3 cm/s) + + + set default continuity + Ange standardkontinuitet + + + continuous ? + Kontinuerlig? + + + set default acceleration + Ange standardacceleration + + + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + acceleration: (t.ex. 1 m/s^2 eller 3 cm/s^2) + + + Select the Trajectory which you want to dress up. + Markera banan som du vill klä upp. + + + + No robot files installed + Inga robotfiler installerade + + + Please visit %1 and copy the files to %2 + Besök %1 och kopiera filerna till %2 + + + + RobotGui::DlgTrajectorySimulate + + + Simulation + Simulering + + + |< + |< + + + < + < + + + || + || + + + |> + |> + + + > + > + + + >| + >| + + + % + % + + + Type + Typ + + + Name + Namn + + + C + C + + + V + V + + + A + A + + + + RobotGui::TaskEdge2TracParameter + + + TaskEdge2TracParameter + TaskEdge2TracParameter + + + + RobotGui::TaskRobot6Axis + + + Form + Form + + + A1 + A1 + + + A2 + A2 + + + A3 + A3 + + + A4 + A4 + + + A5 + A5 + + + A6 + A6 + + + TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) + + + Tool: (0,0,400,0,0,0) + Verktyg: (0,0,400,0,0,0) + + + ... + ... + + + + TaskRobot6Axis + Uppgift 6-axlad robot + + + + RobotGui::TaskRobotControl + + + TaskRobotControl + Uppgift Robotkontroll + + + + RobotGui::TaskRobotMessages + + + TaskRobotMessages + Uppgift Robot meddelanden + + + + RobotGui::TaskTrajectory + + + Form + Form + + + |< + |< + + + < + < + + + || + || + + + |> + |> + + + > + > + + + >| + >| + + + % + % + + + 10 ms + 10 ms + + + 50 ms + 50 ms + + + 100 ms + 100 ms + + + 500 ms + 500 ms + + + 1 s + 1 s + + + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + + + Type + Typ + + + Name + Namn + + + C + C + + + V + V + + + A + A + + + + Trajectory + Rörelsebana + + + + RobotGui::TaskTrajectoryDressUpParameter + + + Dress Up Parameter + Klä upp Parameter + + + + TaskEdge2TracParameter + + + Form + Form + + + Hide / Show + Dölj / Visa + + + Edges: 0 + Kanter: 0 + + + Cluster: 0 + Kluster: 0 + + + Sizing Value: + Storleksguide Värde: + + + Use orientation of edge + Använd orientering av kanten + + + TaskEdge2TracParameter + TaskEdge2TracParameter + + + + TaskRobot6Axis + + TaskRobot6Axis + Uppgift 6-axlad robot + + + + TaskRobotControl + + + Form + Form + + + X+ + X+ + + + Y+ + Y+ + + + Z+ + Z+ + + + A+ + A+ + + + B+ + B+ + + + C+ + C+ + + + X- + X- + + + Y- + Y- + + + Z- + Z- + + + A- + A- + + + B- + B- + + + C- + C- + + + Tool 0 + Verktyg 0 + + + Tool + Verktyg + + + Base 0 + Bas 0 + + + Base + Bas + + + World + Värld + + + 50mm / 5° + 50mm / 5° + + + 20mm / 2° + 20mm / 2° + + + 10mm / 1° + 10mm / 1° + + + 5mm / 0.5° + 5mm / 0,5° + + + 1mm / 0.1° + 1mm / 0,1° + + + TaskRobotControl + Uppgift Robotkontroll + + + + TaskRobotMessages + + + Form + Form + + + clear + Rensa + + + TaskRobotMessages + Uppgift Robot meddelanden + + + + TaskTrajectory + + Trajectory + Rörelsebana + + + + TaskTrajectoryDressUpParameter + + + Form + Form + + + Speed & Acceleration: + Hastighet & Acceleration: + + + Speed: + Hastighet: + + + Use + Använd + + + Accel: + Acceleration: + + + Don't change Cont + Ändra inte forts + + + Continues + Fortsätter + + + Discontinues + Upphör + + + Position and Orientation: + Position och orientering: + + + (0,0,0),(0,0,0) + (0,0,0),(0,0,0) + + + ... + ... + + + Don't change Position & Orientation + Ändra inte position och orientering + + + Use Orientation + Använd Orientering + + + Add Position + Lägg till position + + + Add Orientation + Lägg till Orientering + + + Dress Up Parameter + Klä upp Parameter + + + + Workbench + + + Robot + Robot + + + Insert Robots + Infoga robotar + + + &Robot + &Robot + + + Export trajectory + Exportera bana + + + diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_tr.qm b/src/Mod/Robot/Gui/Resources/translations/Robot_tr.qm new file mode 100644 index 000000000..536941d85 Binary files /dev/null and b/src/Mod/Robot/Gui/Resources/translations/Robot_tr.qm differ diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_tr.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_tr.ts new file mode 100644 index 000000000..14a4922a4 --- /dev/null +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_tr.ts @@ -0,0 +1,877 @@ + + + + + CmdRobotAddToolShape + + + Robot + Robot + + + Add tool + Araç ekle + + + Add a tool shape to the robot + Robota şekil aracı ekle + + + + CmdRobotConstraintAxle + + + Robot + Robot + + + Place robot... + Robot ekle... + + + Place a robot (experimental!) + Bir robot yerleştir (deneyseldir!) + + + + CmdRobotCreateTrajectory + + + Robot + Robot + + + Create trajectory + Yörünge oluştur + + + Create a new empty trajectory + Yeni boş bir yörünge oluştur + + + + CmdRobotEdge2Trac + + Robot + Robot + + + Edge to Trajectory... + Kenardan yörüngeye... + + + Generate a Trajectory from a set of edges + Bir kenarlık kümesinden bir yörünge oluştur + + + + CmdRobotExportKukaCompact + + + Robot + Robot + + + Kuka compact subroutine... + Sıkıştırılmış Kuka alt yordamı... + + + Export the trajectory as a compact KRL subroutine. + Yörüngeyi sıkıştırılmış bir KRL altyordamı olarak dışarı aktar. + + + + CmdRobotExportKukaFull + + Robot + Robot + + + Kuka full subroutine... + Tam Kuka alt yordamı... + + + Export the trajectory as a full KRL subroutine. + Yörüngeyi tam bir KRL alt yordamı olarak dışarı aktar. + + + + CmdRobotInsertKukaIR125 + + + Robot + Robot + + + Kuka IR125 + Kuka IR125 + + + Insert a Kuka IR125 into the document. + Belgeye Kuka IR125 ekle. + + + + CmdRobotInsertKukaIR16 + + Robot + Robot + + + Kuka IR16 + Kuka IR16 + + + Insert a Kuka IR16 into the document. + Belgeye Kuka IR16 ekle. + + + + CmdRobotInsertKukaIR210 + + Robot + Robot + + + Kuka IR210 + Kuka IR210 + + + Insert a Kuka IR210 into the document. + Belgeye Kuka IR210 ekle. + + + + CmdRobotInsertKukaIR500 + + Robot + Robot + + + Kuka IR500 + Kuka IR500 + + + Insert a Kuka IR500 into the document. + Belgeye bir Kuka IR500 ekle. + + + + CmdRobotInsertWaypoint + + + Robot + Robot + + + Insert in trajectory + Yörüngeye ekle + + + Insert robot Tool location into trajectory + Yörüngeye robot araç konumu ekler + + + + CmdRobotInsertWaypointPreselect + + Robot + Robot + + + Insert in trajectory + Yörüngeye ekle + + + Insert preselection position into trajectory (W) + Yörüngeye (W) önceden seçilmiş konumu ekler + + + + CmdRobotRestoreHomePos + + + Robot + Robot + + + Move to home + Başlangıca taşı + + + + CmdRobotSetDefaultOrientation + + + Robot + Robot + + + Set default orientation + Varsayılan yönlendirmeyi ayarlar + + + set the default orientation for subsequent commands for waypoint creation + set the default orientation for subsequent commands for waypoint creation + + + + CmdRobotSetDefaultValues + + Robot + Robot + + + Set default values + Varsayılan değerleri ayarla + + + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + + + + CmdRobotSetHomePos + + + Robot + Robot + + + Set the home position + Başlangıç konumuna ayarla + + + + CmdRobotSimulate + + Robot + Robot + + + Simulate a trajectory + Yörüngenin benzetimini yap + + + Run a simulation on a trajectory + Yörünge üzerinde bir benzetim çalıştır + + + + CmdRobotTrajectoryCompound + + + Robot + Robot + + + Trajectory compound... + Yörünge bileşimi... + + + Group and connect some trajectories to one + Bazı yörüngeli grupla ve tek bir yörünge olarak birleştir + + + + CmdRobotTrajectoryDressUp + + Robot + Robot + + + Dress up trajectory... + Yörüngeyi giydiriyor... + + + Create a dress up object which overide som aspects of a trajectory + Create a dress up object which overide som aspects of a trajectory + + + + Gui::TaskView::TaskWatcherCommands + + + Trajectory tools + Yörünge araçları + + + Robot tools + Robot araçları + + + Insert Robot + Robot ekle + + + + QObject + + + Wrong selection + Wrong selection + + + Select one Robot and one Trajectory object. + Bir Robot ve bir Yörünge nesnesi seçin. + + + Trajectory not valid + Yörünge geçerli değil + + + You need at least two way points in a trajectory to simulate. + Yörüngenin benzetimi için en az iki noktaya ihtiyacınız var. + + + + KRL file(*.src) + KRL dosyası(*.src) + + + All Files (*.*) + Tüm dosyalar (*.*) + + + Export program + Uygulamayı dışarı aktar + + + + Select one robot and one shape or VRML object. + Bir robot ve bir şekil veya bir VRML nesnesi seç. + + + + No preselection + Önseçim yapılmamış + + + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + + + + Select one Robot to set home postion + Başlangıç konumunu ayarlamak için bir robot seç + + + Select one Robot + Bir Robot seç + + + + Select one Trajectory object. + Bir Yörünge nesnesi seç. + + + set default speed + varsayılan hızı ayarla + + + speed: (e.g. 1 m/s or 3 cm/s) + hız: (örn. 1 m/s veya 3 cm/s) + + + set default continuity + Varsayılan sürekliliği ayarla + + + continuous ? + sürekli ? + + + set default acceleration + varsayılan ivmelenmeyi ayarla + + + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + ivme: (örn. 1 m/s^2 veya 3 cm/s^2) + + + Select the Trajectory which you want to dress up. + Giydirmek istediğiniz yörüngeyi seçin. + + + + No robot files installed + Kurulu hiçbir robot dosyası yok + + + Please visit %1 and copy the files to %2 + Lütfen %1 'i ziyaret edin ve %2 'e dosyaları kopyalayın + + + + RobotGui::DlgTrajectorySimulate + + + Simulation + Benzetim + + + |< + |< + + + < + < + + + || + || + + + |> + |> + + + > + > + + + >| + >| + + + % + % + + + Type + Türü + + + Name + Isim + + + C + C + + + V + V + + + A + A + + + + RobotGui::TaskEdge2TracParameter + + + TaskEdge2TracParameter + TaskEdge2TracParameter + + + + RobotGui::TaskRobot6Axis + + + Form + Şekil: + + + A1 + A1 + + + A2 + A2 + + + A3 + A3 + + + A4 + A4 + + + A5 + A5 + + + A6 + A6 + + + TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) + + + Tool: (0,0,400,0,0,0) + Araç: (0,0,400,0,0,0) + + + ... + ... + + + + TaskRobot6Axis + TaskRobot6Axis + + + + RobotGui::TaskRobotControl + + + TaskRobotControl + TaskRobotControl + + + + RobotGui::TaskRobotMessages + + + TaskRobotMessages + TaskRobotMessages + + + + RobotGui::TaskTrajectory + + + Form + Şekil: + + + |< + |< + + + < + < + + + || + || + + + |> + |> + + + > + > + + + >| + >| + + + % + % + + + 10 ms + 10 ms + + + 50 ms + 50 ms + + + 100 ms + 100 ms + + + 500 ms + 500 ms + + + 1 s + 1 sn + + + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Konum: (200.23, 300.23, 400.23, 234, 343 ,343) + + + Type + Türü + + + Name + Isim + + + C + C + + + V + V + + + A + A + + + + Trajectory + Trajectory + + + + RobotGui::TaskTrajectoryDressUpParameter + + + Dress Up Parameter + Dress Up Parameter + + + + TaskEdge2TracParameter + + + Form + Şekil: + + + Hide / Show + Gizle/Göster + + + Edges: 0 + Kenarlar: 0 + + + Cluster: 0 + Küme: 0 + + + Sizing Value: + Boyutlandırma Değeri: + + + Use orientation of edge + Kenarın yönlendirmesini kullan + + + TaskEdge2TracParameter + TaskEdge2TracParameter + + + + TaskRobot6Axis + + TaskRobot6Axis + TaskRobot6Axis + + + + TaskRobotControl + + + Form + Şekil: + + + X+ + X+ + + + Y+ + Y+ + + + Z+ + Z+ + + + A+ + A+ + + + B+ + B+ + + + C+ + C+ + + + X- + X- + + + Y- + Y- + + + Z- + Z- + + + A- + A- + + + B- + B- + + + C- + C- + + + Tool 0 + Araç 0 + + + Tool + Araç + + + Base 0 + Baz 0 + + + Base + Baz + + + World + Dünya + + + 50mm / 5° + 50mm / 5° + + + 20mm / 2° + 20mm / 2° + + + 10mm / 1° + 10mm / 1° + + + 5mm / 0.5° + 5mm / 0.5° + + + 1mm / 0.1° + 1mm / 0.1° + + + TaskRobotControl + TaskRobotControl + + + + TaskRobotMessages + + + Form + Şekil: + + + clear + temizle + + + TaskRobotMessages + TaskRobotMessages + + + + TaskTrajectory + + Trajectory + Trajectory + + + + TaskTrajectoryDressUpParameter + + + Form + Şekil: + + + Speed & Acceleration: + Hız ve İvmelenme: + + + Speed: + Hız: + + + Use + Kullan + + + Accel: + İvme: + + + Don't change Cont + Cont'u değiştirme + + + Continues + Devam ediyor + + + Discontinues + Duraklatıldı + + + Position and Orientation: + Konum ve Yönlendirme: + + + (0,0,0),(0,0,0) + (0,0,0),(0,0,0) + + + ... + ... + + + Don't change Position & Orientation + Konum ve Yönlendirme değiştirmeyin + + + Use Orientation + Yönlendirme kullan + + + Add Position + Konum ekle + + + Add Orientation + Yönlendirme ekle + + + Dress Up Parameter + Dress Up Parameter + + + + Workbench + + + Robot + Robot + + + Insert Robots + Robotları ekle + + + &Robot + &Robot + + + Export trajectory + Yörüngeyi dışa aktar + + + diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_uk.qm b/src/Mod/Robot/Gui/Resources/translations/Robot_uk.qm index 4fe3fc27e..93c5a338e 100644 Binary files a/src/Mod/Robot/Gui/Resources/translations/Robot_uk.qm and b/src/Mod/Robot/Gui/Resources/translations/Robot_uk.qm differ diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_uk.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_uk.ts index 1c2eb3ab9..d0b654e7c 100644 --- a/src/Mod/Robot/Gui/Resources/translations/Robot_uk.ts +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_uk.ts @@ -1,1044 +1,877 @@ - - + + CmdRobotAddToolShape - - Robot - Робот + + Robot + Робот - - Add tool - Додати інструмент + Add tool + Додати інструмент - - Add a tool shape to the robot - Додати інструмент форми до робота + Add a tool shape to the robot + Додати інструмент форми до робота - - + + CmdRobotConstraintAxle - - Robot - Робот + + Robot + Робот - - Place robot... - Розмістити робота ... + Place robot... + Розмістити робота ... - - Place a robot (experimental!) - Розмістити робота (експериментально!) + Place a robot (experimental!) + Розмістити робота (експериментально!) - - + + CmdRobotCreateTrajectory - - Robot - Робот + + Robot + Робот - - Create trajectory - Створити траєкторію + Create trajectory + Створити траєкторію - - Create a new empty trajectory - Створити нову порожню траєкторію + Create a new empty trajectory + Створити нову порожню траєкторію - - + + CmdRobotEdge2Trac - - Robot - Робот + Robot + Робот - - Edge to Trajectory... - Ребра в Траєкторію... + Edge to Trajectory... + Ребра в Траєкторію... - - Generate a Trajectory from a set of edges - Генерувати Траєкторію із встановлених ребер + Generate a Trajectory from a set of edges + Генерувати Траєкторію із встановлених ребер - - + + CmdRobotExportKukaCompact - - Robot - Робот + + Robot + Робот - - Kuka compact subroutine... - Компактна підпрограма Kuka... + Kuka compact subroutine... + Компактна підпрограма Kuka... - - Export the trajectory as a compact KRL subroutine. - Експортувати траєкторію як компактну KRL підпрограму. + Export the trajectory as a compact KRL subroutine. + Експортувати траєкторію як компактну KRL підпрограму. - - + + CmdRobotExportKukaFull - - Robot - Робот + Robot + Робот - - Kuka full subroutine... - Повна підпрограма Kuka... + Kuka full subroutine... + Повна підпрограма Kuka... - - Export the trajectory as a full KRL subroutine. - Експортувати траєкторію як повну KRL підпрограму. + Export the trajectory as a full KRL subroutine. + Експортувати траєкторію як повну KRL підпрограму. - - + + CmdRobotInsertKukaIR125 - - Robot - Робот + + Robot + Робот - - Kuka IR125 - Kuka IR125 + Kuka IR125 + Kuka IR125 - - Insert a Kuka IR125 into the document. - Вставити Kuka IR125 в документ. + Insert a Kuka IR125 into the document. + Вставити Kuka IR125 в документ. - - + + CmdRobotInsertKukaIR16 - - Robot - Робот + Robot + Робот - - Kuka IR16 - Kuka IR16 + Kuka IR16 + Kuka IR16 - - Insert a Kuka IR16 into the document. - Вставити Kuka IR16 в документ. + Insert a Kuka IR16 into the document. + Вставити Kuka IR16 в документ. - - + + CmdRobotInsertKukaIR210 - - Robot - Робот + Robot + Робот - - Kuka IR210 - Kuka IR210 + Kuka IR210 + Kuka IR210 - - Insert a Kuka IR210 into the document. - Вставити Kuka IR210 в документ. + Insert a Kuka IR210 into the document. + Вставити Kuka IR210 в документ. - - + + CmdRobotInsertKukaIR500 - - Robot - Робот + Robot + Робот - - Kuka IR500 - Kuka IR500 + Kuka IR500 + Kuka IR500 - - Insert a Kuka IR500 into the document. - Вставити Kuka IR500 в документ. + Insert a Kuka IR500 into the document. + Вставити Kuka IR500 в документ. - - + + CmdRobotInsertWaypoint - - Robot - Робот + + Robot + Робот - - Insert in trajectory - Вставити в траєкторію + Insert in trajectory + Вставити в траєкторію - - Insert robot Tool location into trajectory - Вставте інструмент розміщення робота на траєкторії + Insert robot Tool location into trajectory + Вставте інструмент розміщення робота на траєкторії - - + + CmdRobotInsertWaypointPreselect - - Robot - Робот + Robot + Робот - - Insert in trajectory - Вставити в траєкторію + Insert in trajectory + Вставити в траєкторію - - Insert preselection position into trajectory (W) - Вставити попередньо обрану позицію в траєкторію (W) + Insert preselection position into trajectory (W) + Вставити попередньо обрану позицію в траєкторію (W) - - + + CmdRobotRestoreHomePos - - Robot - Робот + + Robot + Робот - - - Move to home - Рухатись до домівки + Move to home + Рухатись до домівки - - + + CmdRobotSetDefaultOrientation - - Robot - Робот + + Robot + Робот - - Set default orientation - Встановити стандартну орієнтацію + Set default orientation + Встановити стандартну орієнтацію - - set the default orientation for subsequent commands for waypoint creation - Встановіть стандартну орієнтацію для наступних команд для створення точок маршруту + set the default orientation for subsequent commands for waypoint creation + Встановіть стандартну орієнтацію для наступних команд для створення точок маршруту - - + + CmdRobotSetDefaultValues - - Robot - Робот + Robot + Робот - - Set default values - Встановити стандартні значення + Set default values + Встановити стандартні значення - - set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation - Встановити стандартні значення швидкості, прискорення та послідовності для наступних команд для побудови точок маршруту + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + Встановити стандартні значення швидкості, прискорення та послідовності для наступних команд для побудови точок маршруту - - + + CmdRobotSetHomePos - - Robot - Робот + + Robot + Робот - - - Set the home position - Встановити у вихідне положення + Set the home position + Встановити у вихідне положення - - + + CmdRobotSimulate - - Robot - Робот + Robot + Робот - - Simulate a trajectory - Моделювання траєкторії + Simulate a trajectory + Моделювання траєкторії - - Run a simulation on a trajectory - Виконати моделювання на траєкторії + Run a simulation on a trajectory + Виконати моделювання на траєкторії - - + + CmdRobotTrajectoryCompound - - Robot - Робот + + Robot + Робот - - Trajectory compound... - Об'єднання траєкторії... + Trajectory compound... + Об'єднання траєкторії... - - Group and connect some trajectories to one - Групування та підключення деякий траєкторій в одну + Group and connect some trajectories to one + Групування та підключення деякий траєкторій в одну - - + + CmdRobotTrajectoryDressUp - - Robot - Робот + Robot + Робот - - Dress up trajectory... - Одягнути траєкторію ... + Dress up trajectory... + Одягнути траєкторію ... - - Create a dress up object which overide som aspects of a trajectory - Create a dress up object which overide som aspects of a trajectory + Create a dress up object which overide som aspects of a trajectory + Створити об'єкт зовнішнього покрову, який змінює деякі аспекти траєкторії - - + + Gui::TaskView::TaskWatcherCommands - - Trajectory tools - Trajectory tools + + Trajectory tools + Інструменти траєкторії - - Robot tools - Robot tools + Robot tools + Інструменти Робота - - Insert Robot - Insert Robot + Insert Robot + Вставити Робота - - + + QObject - - - - - - - - - - - - Wrong selection - Невірний вибір + + Wrong selection + Невірний вибір - - - - - - Select one Robot and one Trajectory object. - Виберіть один робот і одну траєкторію об'єкта. + Select one Robot and one Trajectory object. + Виберіть один робот і одну траєкторію об'єкта. - - Trajectory not valid - Траєкторія не дійсна + Trajectory not valid + Траєкторія не дійсна - - You need at least two way points in a trajectory to simulate. - Вам потрібно щонайменше дві точки на траєкторії для моделювання. + You need at least two way points in a trajectory to simulate. + Вам потрібно щонайменше дві точки на траєкторії для моделювання. - - - KRL file(*.src) - KRL файл(*.src) + + KRL file(*.src) + KRL файл(*.src) - - - All Files (*.*) - Всі файли (*.*) + All Files (*.*) + Всі файли (*.*) - - - Export program - Експорт програми + Export program + Експорт програми - - Select one robot and one shape or VRML object. - Виберіть один робот і одну форму або VRML об'єкт. + + Select one robot and one shape or VRML object. + Виберіть один робот і одну форму або VRML об'єкт. - - No preselection - Нічого не вибрано + + No preselection + Нічого не вибрано - - You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. - You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + Щоб використовувати цю команду, курсор миші повинен знаходитися над попередньо обраною геометричною побудовою. Подробиці дивіться у документації. - - Select one Robot to set home postion - Оберіть одного з роботів щоб встановити домашню позицію + + Select one Robot to set home postion + Оберіть одного з роботів щоб встановити домашню позицію - - Select one Robot - Оберіть одного Робота + Select one Robot + Оберіть одного Робота - - - Select one Trajectory object. - Оберіть одну Траєкторію об’єкта. + + Select one Trajectory object. + Оберіть одну Траєкторію об’єкта. - - set default speed - Встановити стандартну швидкість + set default speed + Встановити стандартну швидкість - - speed: (e.g. 1 m/s or 3 cm/s) - швидкість: (напр. 1 м/с або 3 см/с) + speed: (e.g. 1 m/s or 3 cm/s) + швидкість: (напр. 1 м/с або 3 см/с) - - set default continuity - Встановити стандартну послідовність + set default continuity + Встановити стандартну послідовність - - continuous ? - послідовність ? + continuous ? + послідовність ? - - set default acceleration - Встановити стандартне прискорення + set default acceleration + Встановити стандартне прискорення - - acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) - прискорення: (напр. 1 м/с^2 або 3 см/с^2) + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + прискорення: (напр. 1 м/с^2 або 3 см/с^2) - - Select the Trajectory which you want to dress up. - Select the Trajectory which you want to dress up. + Select the Trajectory which you want to dress up. + Оберіть траєкторію, за якою буде відбуватися побудова зовнішнього покрову. - - No robot files installed - Файли робота не встановлено + + No robot files installed + Файли робота не встановлено - - Please visit %1 and copy the files to %2 - Будь ласка, відвідайте %1 та скопіюйте файли до %2 + Please visit %1 and copy the files to %2 + Будь ласка, відвідайте %1 та скопіюйте файли до %2 - - + + RobotGui::DlgTrajectorySimulate - - Simulation - Моделювання + + Simulation + Моделювання - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - Type - Тип + Type + Тип - - Name - Назва + Name + Назва - - C - C + C + C - - V - V + V + V - - A - A + A + A - - + + RobotGui::TaskEdge2TracParameter - - TaskEdge2TracParameter - TaskEdge2TracParameter + + TaskEdge2TracParameter + TaskEdge2TracParameter - - + + RobotGui::TaskRobot6Axis - - Form - Форма + + Form + Форма - - A1 - A1 + A1 + A1 - - A2 - A2 + A2 + A2 - - A3 - A3 + A3 + A3 - - A4 - A4 + A4 + A4 - - A5 - A5 + A5 + A5 - - A6 - A6 + A6 + A6 - - TCP: (200.23,300.23,400.23,234,343,343) - TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) - - Tool: (0,0,400,0,0,0) - Інструмент: (0,0,400,0,0,0) + Tool: (0,0,400,0,0,0) + Інструмент: (0,0,400,0,0,0) - - ... - ... + ... + ... - - TaskRobot6Axis - TaskRobot6Axis + + TaskRobot6Axis + TaskRobot6Axis - - + + RobotGui::TaskRobotControl - - TaskRobotControl - TaskRobotControl + + TaskRobotControl + TaskRobotControl - - + + RobotGui::TaskRobotMessages - - TaskRobotMessages - TaskRobotMessages + + TaskRobotMessages + TaskRobotMessages - - + + RobotGui::TaskTrajectory - - Form - Форма + + Form + Форма - - |< - |< + |< + |< - - < - < + < + < - - || - || + || + || - - |> - |> + |> + |> - - > - > + > + > - - >| - >| + >| + >| - - % - % + % + % - - 10 ms - 10 мс + 10 ms + 10 мс - - 50 ms - 50 мс + 50 ms + 50 мс - - 100 ms - 100 мс + 100 ms + 100 мс - - 500 ms - 500 мс + 500 ms + 500 мс - - 1 s - 1 с + 1 s + 1 с - - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - Поз: (200.23, 300.23, 400.23, 234, 343 ,343) + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + Поз: (200.23, 300.23, 400.23, 234, 343 ,343) - - Type - Тип + Type + Тип - - Name - Назва + Name + Назва - - C - C + C + C - - V - V + V + V - - A - A + A + A - - Trajectory - Траєкторія + + Trajectory + Траєкторія - - + + RobotGui::TaskTrajectoryDressUpParameter - - Dress Up Parameter - Параметри Одягання + + Dress Up Parameter + Параметри Одягання - - + + TaskEdge2TracParameter - - Form - Форма + + Form + Форма - - Hide / Show - Сховати / Показати + Hide / Show + Сховати / Показати - - Edges: 0 - Краї: 0 + Edges: 0 + Краї: 0 - - Cluster: 0 - Кластер: 0 + Cluster: 0 + Кластер: 0 - - Sizing Value: - Значення калібрування: + Sizing Value: + Значення калібрування: - - Use orientation of edge - Use orientation of edge + Use orientation of edge + Використовувати орієнтацію грані - TaskEdge2TracParameter - TaskEdge2TracParameter + TaskEdge2TracParameter + TaskEdge2TracParameter - - + + TaskRobot6Axis - TaskRobot6Axis - TaskRobot6Axis + TaskRobot6Axis + TaskRobot6Axis - - + + TaskRobotControl - - Form - Форма + + Form + Форма - - X+ - X+ + X+ + X+ - - Y+ - Y+ + Y+ + Y+ - - Z+ - Z+ + Z+ + Z+ - - A+ - A+ + A+ + A+ - - B+ - B+ + B+ + B+ - - C+ - C+ + C+ + C+ - - X- - X- + X- + X- - - Y- - Y- + Y- + Y- - - Z- - Z- + Z- + Z- - - A- - A- + A- + A- - - B- - B- + B- + B- - - C- - C- + C- + C- - - Tool 0 - Інструмент 0 + Tool 0 + Інструмент 0 - - Tool - Інструмент + Tool + Інструмент - - Base 0 - Основа 0 + Base 0 + Основа 0 - - Base - Основа + Base + Основа - - World - Світ - - - - 50mm / 5° - 50мм / 5° - - - - 20mm / 2° - 20мм / 2° - - - - 10mm / 1° - 10мм / 1° - - - - 5mm / 0.5° - 5мм / 0.5° - - - - 1mm / 0.1° - 1мм / 0.1° + World + Світ - TaskRobotControl - TaskRobotControl + 50mm / 5° + 50мм / 5° - - + + 20mm / 2° + 20мм / 2° + + + 10mm / 1° + 10мм / 1° + + + 5mm / 0.5° + 5мм / 0.5° + + + 1mm / 0.1° + 1мм / 0.1° + + + TaskRobotControl + TaskRobotControl + + + TaskRobotMessages - - Form - Форма + + Form + Форма - - clear - очистити + clear + очистити - TaskRobotMessages - TaskRobotMessages + TaskRobotMessages + TaskRobotMessages - - + + TaskTrajectory - Trajectory - Траєкторія + Trajectory + Траєкторія - - + + TaskTrajectoryDressUpParameter - - Form - Форма + + Form + Форма - - Speed & Acceleration: - Швидкість та Прискорення: + Speed & Acceleration: + Швидкість та Прискорення: - - Speed: - Швидкість: + Speed: + Швидкість: - - - Use - Вжити + Use + Вжити - - Accel: - Accel: + Accel: + Accel: - - Don't change Cont - Don't change Cont + Don't change Cont + Не змінюйте Cont - - Continues - Продовжується + Continues + Продовжується - - Discontinues - Припиняється + Discontinues + Припиняється - - Position and Orientation: - Позиція та Орієнтація: + Position and Orientation: + Позиція та Орієнтація: - - (0,0,0),(0,0,0) - (0,0,0),(0,0,0) + (0,0,0),(0,0,0) + (0,0,0),(0,0,0) - - ... - ... + ... + ... - - Don't change Position & Orientation - Не змінювати Позицію та Орієнтацію + Don't change Position & Orientation + Не змінювати Позицію та Орієнтацію - - Use Orientation - Використовувати Орієнтацію + Use Orientation + Використовувати Орієнтацію - - Add Position - Додати Позицію + Add Position + Додати Позицію - - Add Orientation - Додати Орієнтацію + Add Orientation + Додати Орієнтацію - Dress Up Parameter - Параметри Одягання + Dress Up Parameter + Параметри Одягання - - + + Workbench - - Robot - Робот + + Robot + Робот - - Insert Robots - Вставити роботів + Insert Robots + Вставити роботів - - &Robot - &Робот + &Robot + &Робот - - Export trajectory - Експорт траєкторії + Export trajectory + Експорт траєкторії - + diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_zh.qm b/src/Mod/Robot/Gui/Resources/translations/Robot_zh-CN.qm similarity index 100% rename from src/Mod/Robot/Gui/Resources/translations/Robot_zh.qm rename to src/Mod/Robot/Gui/Resources/translations/Robot_zh-CN.qm diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_zh-CN.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_zh-CN.ts new file mode 100644 index 000000000..706404e6d --- /dev/null +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_zh-CN.ts @@ -0,0 +1,877 @@ + + + + + CmdRobotAddToolShape + + + Robot + 机器人 + + + Add tool + 新增工具 + + + Add a tool shape to the robot + 将工具形状添加到机器人 + + + + CmdRobotConstraintAxle + + + Robot + 机器人 + + + Place robot... + 机器人区域... + + + Place a robot (experimental!) + 放置机器人(实验!) + + + + CmdRobotCreateTrajectory + + + Robot + 机器人 + + + Create trajectory + 创建轨迹 + + + Create a new empty trajectory + 创建新的空轨迹 + + + + CmdRobotEdge2Trac + + Robot + 机器人 + + + Edge to Trajectory... + 边缘到轨迹... + + + Generate a Trajectory from a set of edges + 从一组边生成轨迹 + + + + CmdRobotExportKukaCompact + + + Robot + 机器人 + + + Kuka compact subroutine... + Kuka压缩子例程... + + + Export the trajectory as a compact KRL subroutine. + 导出轨迹为压缩 KRL 子例程. + + + + CmdRobotExportKukaFull + + Robot + 机器人 + + + Kuka full subroutine... + Kuka完整子例程... + + + Export the trajectory as a full KRL subroutine. + 导出轨迹为完整 KRL 子例程. + + + + CmdRobotInsertKukaIR125 + + + Robot + 机器人 + + + Kuka IR125 + Kuka IR125 + + + Insert a Kuka IR125 into the document. + 将Kuka IR125导入文档. + + + + CmdRobotInsertKukaIR16 + + Robot + 机器人 + + + Kuka IR16 + Kuka IR16 + + + Insert a Kuka IR16 into the document. + 将Kuka IR16导入文档. + + + + CmdRobotInsertKukaIR210 + + Robot + 机器人 + + + Kuka IR210 + Kuka IR210 + + + Insert a Kuka IR210 into the document. + 将Kuka IR210导入文档. + + + + CmdRobotInsertKukaIR500 + + Robot + 机器人 + + + Kuka IR500 + Kuka IR500 + + + Insert a Kuka IR500 into the document. + 将Kuka IR500导入文档. + + + + CmdRobotInsertWaypoint + + + Robot + 机器人 + + + Insert in trajectory + 在轨迹中插入 + + + Insert robot Tool location into trajectory + 导入机器人工具位置到轨迹 + + + + CmdRobotInsertWaypointPreselect + + Robot + 机器人 + + + Insert in trajectory + 在轨迹中插入 + + + Insert preselection position into trajectory (W) + 预选位置插入轨迹(W) + + + + CmdRobotRestoreHomePos + + + Robot + 机器人 + + + Move to home + 移动到初始 + + + + CmdRobotSetDefaultOrientation + + + Robot + 机器人 + + + Set default orientation + 设置默认方向 + + + set the default orientation for subsequent commands for waypoint creation + 为后续创建路径点命令设置默认方向 + + + + CmdRobotSetDefaultValues + + Robot + 机器人 + + + Set default values + 设置默认值 + + + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + 为后续创建路径点命令设置默认速度,加速度和连续性 + + + + CmdRobotSetHomePos + + + Robot + 机器人 + + + Set the home position + 设置初始位置 + + + + CmdRobotSimulate + + Robot + 机器人 + + + Simulate a trajectory + 模拟轨迹 + + + Run a simulation on a trajectory + 在轨迹上模拟 + + + + CmdRobotTrajectoryCompound + + + Robot + 机器人 + + + Trajectory compound... + 复合轨迹... + + + Group and connect some trajectories to one + 将轨迹组合并连接成一个 + + + + CmdRobotTrajectoryDressUp + + Robot + 机器人 + + + Dress up trajectory... + 修饰轨迹... + + + Create a dress up object which overide som aspects of a trajectory + 为轨迹重载创建一个修饰对象 + + + + Gui::TaskView::TaskWatcherCommands + + + Trajectory tools + 轨迹工具 + + + Robot tools + 机器人工具 + + + Insert Robot + 插入机器人 + + + + QObject + + + Wrong selection + 选择错误 + + + Select one Robot and one Trajectory object. + 选择一个机器人和一个轨迹对象. + + + Trajectory not valid + 无效轨迹 + + + You need at least two way points in a trajectory to simulate. + 你至少需要两个路径点以进行轨迹模拟. + + + + KRL file(*.src) + KRL文件(*.src) + + + All Files (*.*) + 所有文件(*.*) + + + Export program + 导出程序 + + + + Select one robot and one shape or VRML object. + 选择一个机器人和一个形状或VRML对象. + + + + No preselection + 无预选 + + + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + 您必须悬停鼠标于(预选)几何体以使用该命令.详情请参考文档. + + + + Select one Robot to set home postion + 选中一个机器人并设置初始位置 + + + Select one Robot + 选择一个机器人 + + + + Select one Trajectory object. + 选择一个轨迹对象. + + + set default speed + 设置默认速度 + + + speed: (e.g. 1 m/s or 3 cm/s) + 速度: (如 1 m/s 或 3 cm/s) + + + set default continuity + 设置默认连续性 + + + continuous ? + 连续的? + + + set default acceleration + 设置默认加速度 + + + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + 加速度: (如 1 m/s^2 或 3 cm/s^2) + + + Select the Trajectory which you want to dress up. + 选择您要遵循的轨迹. + + + + No robot files installed + 未安装机器人文件 + + + Please visit %1 and copy the files to %2 + 请访问 %1 并复制文件到 %2 + + + + RobotGui::DlgTrajectorySimulate + + + Simulation + 模拟 + + + |< + |< + + + < + < + + + || + || + + + |> + |> + + + > + > + + + >| + >| + + + % + % + + + Type + 类型 + + + Name + 名称 + + + C + C + + + V + V + + + A + A + + + + RobotGui::TaskEdge2TracParameter + + + TaskEdge2TracParameter + 边转轨迹任务参数 + + + + RobotGui::TaskRobot6Axis + + + Form + 窗体 + + + A1 + A1 + + + A2 + A2 + + + A3 + A3 + + + A4 + A4 + + + A5 + A5 + + + A6 + A6 + + + TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) + + + Tool: (0,0,400,0,0,0) + 工具:(0,0,400,0,0,0) + + + ... + ... + + + + TaskRobot6Axis + 机器人6轴任务 + + + + RobotGui::TaskRobotControl + + + TaskRobotControl + 任务机器人控制 + + + + RobotGui::TaskRobotMessages + + + TaskRobotMessages + 机器人信息任务 + + + + RobotGui::TaskTrajectory + + + Form + 窗体 + + + |< + |< + + + < + < + + + || + || + + + |> + |> + + + > + > + + + >| + >| + + + % + % + + + 10 ms + 10 ms + + + 50 ms + 50 ms + + + 100 ms + 100 ms + + + 500 ms + 500 ms + + + 1 s + 1 s + + + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + 位置: (200.23, 300.23, 400.23, 234, 343 ,343) + + + Type + 类型 + + + Name + 名称 + + + C + C + + + V + V + + + A + A + + + + Trajectory + 轨迹 + + + + RobotGui::TaskTrajectoryDressUpParameter + + + Dress Up Parameter + 修饰参数 + + + + TaskEdge2TracParameter + + + Form + 窗体 + + + Hide / Show + 隐藏/显示 + + + Edges: 0 + 边:0 + + + Cluster: 0 + 集群:0 + + + Sizing Value: + 调整大小的值: + + + Use orientation of edge + 使用边缘的方向 + + + TaskEdge2TracParameter + 边转轨迹任务参数 + + + + TaskRobot6Axis + + TaskRobot6Axis + 机器人6轴任务 + + + + TaskRobotControl + + + Form + 窗体 + + + X+ + X+ + + + Y+ + Y+ + + + Z+ + Z+ + + + A+ + A+ + + + B+ + B+ + + + C+ + C+ + + + X- + X- + + + Y- + Y- + + + Z- + Z- + + + A- + A- + + + B- + B- + + + C- + C- + + + Tool 0 + 工具 0 + + + Tool + 工具 + + + Base 0 + 基本 0 + + + Base + 基本 + + + World + 世界 + + + 50mm / 5° + 50mm / 5° + + + 20mm / 2° + 20mm / 2° + + + 10mm / 1° + 10mm / 1° + + + 5mm / 0.5° + 5mm / 0.5° + + + 1mm / 0.1° + 1mm / 0.1° + + + TaskRobotControl + 任务机器人控制 + + + + TaskRobotMessages + + + Form + 窗体 + + + clear + 清除 + + + TaskRobotMessages + 机器人信息任务 + + + + TaskTrajectory + + Trajectory + 轨迹 + + + + TaskTrajectoryDressUpParameter + + + Form + 窗体 + + + Speed & Acceleration: + 速度和加速度: + + + Speed: + 速度: + + + Use + 使用 + + + Accel: + 加速: + + + Don't change Cont + 不要更改连续 + + + Continues + 连续 + + + Discontinues + 中止 + + + Position and Orientation: + 位置和方向: + + + (0,0,0),(0,0,0) + (0,0,0),(0,0,0) + + + ... + ... + + + Don't change Position & Orientation + 不要改变位置和方向 + + + Use Orientation + 使用方向 + + + Add Position + 添加位置 + + + Add Orientation + 添加定位 + + + Dress Up Parameter + 修饰参数 + + + + Workbench + + + Robot + 机器人 + + + Insert Robots + 导入机器人 + + + &Robot + 机器人(&R) + + + Export trajectory + 导出轨迹 + + + diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_zh-TW.qm b/src/Mod/Robot/Gui/Resources/translations/Robot_zh-TW.qm new file mode 100644 index 000000000..3c8c54425 Binary files /dev/null and b/src/Mod/Robot/Gui/Resources/translations/Robot_zh-TW.qm differ diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_zh-TW.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_zh-TW.ts new file mode 100644 index 000000000..e68635abe --- /dev/null +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_zh-TW.ts @@ -0,0 +1,877 @@ + + + + + CmdRobotAddToolShape + + + Robot + 機器人 + + + Add tool + 新增工具 + + + Add a tool shape to the robot + 於機器人上增加工具造型 + + + + CmdRobotConstraintAxle + + + Robot + 機器人 + + + Place robot... + 放置機器人... + + + Place a robot (experimental!) + 放置一個機器人(測試!) + + + + CmdRobotCreateTrajectory + + + Robot + 機器人 + + + Create trajectory + 建立軌跡 + + + Create a new empty trajectory + 建立新的空軌跡 + + + + CmdRobotEdge2Trac + + Robot + 機器人 + + + Edge to Trajectory... + 邊緣至軌跡... + + + Generate a Trajectory from a set of edges + 由一組邊緣產生軌跡 + + + + CmdRobotExportKukaCompact + + + Robot + 機器人 + + + Kuka compact subroutine... + Kuka精簡子程式... + + + Export the trajectory as a compact KRL subroutine. + 以精簡KRL子程式匯出軌跡 + + + + CmdRobotExportKukaFull + + Robot + 機器人 + + + Kuka full subroutine... + Kuka完整子程式... + + + Export the trajectory as a full KRL subroutine. + 以完整KRL子程式匯出軌跡 + + + + CmdRobotInsertKukaIR125 + + + Robot + 機器人 + + + Kuka IR125 + Kuka IR125 + + + Insert a Kuka IR125 into the document. + 於此文件中插入Kula IR125 + + + + CmdRobotInsertKukaIR16 + + Robot + 機器人 + + + Kuka IR16 + Kuka IR16 + + + Insert a Kuka IR16 into the document. + 於此文件中插入Kula IR16 + + + + CmdRobotInsertKukaIR210 + + Robot + 機器人 + + + Kuka IR210 + Kuka IR210 + + + Insert a Kuka IR210 into the document. + 於此文件中插入Kula IR210 + + + + CmdRobotInsertKukaIR500 + + Robot + 機器人 + + + Kuka IR500 + Kuka IR500 + + + Insert a Kuka IR500 into the document. + 於此文件中插入Kula IR500 + + + + CmdRobotInsertWaypoint + + + Robot + 機器人 + + + Insert in trajectory + 於軌跡中插入 + + + Insert robot Tool location into trajectory + 插入機器人工具位置至軌跡中 + + + + CmdRobotInsertWaypointPreselect + + Robot + 機器人 + + + Insert in trajectory + 於軌跡中插入 + + + Insert preselection position into trajectory (W) + 插入預選位置至軌跡(W) + + + + CmdRobotRestoreHomePos + + + Robot + 機器人 + + + Move to home + 移動至原點 + + + + CmdRobotSetDefaultOrientation + + + Robot + 機器人 + + + Set default orientation + 設定預設方向 + + + set the default orientation for subsequent commands for waypoint creation + 為後續產生路標指令預設方向 + + + + CmdRobotSetDefaultValues + + Robot + 機器人 + + + Set default values + 設定預設值 + + + set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation + 為後續產生路標指令設定預設速度,加速度及持續性等值 + + + + CmdRobotSetHomePos + + + Robot + 機器人 + + + Set the home position + 設定原點位置 + + + + CmdRobotSimulate + + Robot + 機器人 + + + Simulate a trajectory + 模擬軌跡 + + + Run a simulation on a trajectory + 於軌跡上進行模擬 + + + + CmdRobotTrajectoryCompound + + + Robot + 機器人 + + + Trajectory compound... + 軌跡物件... + + + Group and connect some trajectories to one + 連結並群組數個軌跡成一個 + + + + CmdRobotTrajectoryDressUp + + Robot + 機器人 + + + Dress up trajectory... + 裝飾軌跡... + + + Create a dress up object which overide som aspects of a trajectory + 不考慮部份軌跡方向建立修飾物件 + + + + Gui::TaskView::TaskWatcherCommands + + + Trajectory tools + 軌跡工具 + + + Robot tools + 機器人設定工具 + + + Insert Robot + 插入機器人 + + + + QObject + + + Wrong selection + 錯誤的選取 + + + Select one Robot and one Trajectory object. + 選取一個機器人和一軌跡物件 + + + Trajectory not valid + 無效軌跡 + + + You need at least two way points in a trajectory to simulate. + 您於軌跡需要至少兩方向點來進行模擬 + + + + KRL file(*.src) + KRL file(*.src) + + + All Files (*.*) + 所有檔 (*.*) + + + Export program + 匯出程式 + + + + Select one robot and one shape or VRML object. + 選取一個機器人和一造型或VRML物件 + + + + No preselection + 無預選 + + + You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. + 您需要將滑鼠停留於幾何(預選)上方來使用此功能,相系說明請查詢文件 + + + + Select one Robot to set home postion + 選取一機器人設定原點位置 + + + Select one Robot + 選取一機器人 + + + + Select one Trajectory object. + 選取一軌跡物件 + + + set default speed + 設定預設速度 + + + speed: (e.g. 1 m/s or 3 cm/s) + 速度: (e.g. 1 m/s or 3 cm/s) + + + set default continuity + 設定預設為連續 + + + continuous ? + 連續? + + + set default acceleration + 設定預設加速 + + + acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) + 加速度: (e.g. 1 m/s^2 or 3 cm/s^2) + + + Select the Trajectory which you want to dress up. + 選擇您想裝飾之軌跡 + + + + No robot files installed + 無安裝之機器人檔案 + + + Please visit %1 and copy the files to %2 + 請參照%1並複製至檔案%2 + + + + RobotGui::DlgTrajectorySimulate + + + Simulation + 模擬 + + + |< + |< + + + < + < + + + || + || + + + |> + |> + + + > + > + + + >| + >| + + + % + + + + Type + 類型 + + + Name + 名稱 + + + C + C + + + V + V + + + A + A + + + + RobotGui::TaskEdge2TracParameter + + + TaskEdge2TracParameter + TaskEdge2TracParameter + + + + RobotGui::TaskRobot6Axis + + + Form + 格式 + + + A1 + A1 + + + A2 + A2 + + + A3 + A3 + + + A4 + A4 + + + A5 + A5 + + + A6 + A6 + + + TCP: (200.23,300.23,400.23,234,343,343) + TCP: (200.23,300.23,400.23,234,343,343) + + + Tool: (0,0,400,0,0,0) + 工具: (0,0,400,0,0,0) + + + ... + ... + + + + TaskRobot6Axis + TaskRobot6Axis + + + + RobotGui::TaskRobotControl + + + TaskRobotControl + TaskRobotControl + + + + RobotGui::TaskRobotMessages + + + TaskRobotMessages + TaskRobotMessages + + + + RobotGui::TaskTrajectory + + + Form + 格式 + + + |< + |< + + + < + < + + + || + || + + + |> + |> + + + > + > + + + >| + >| + + + % + + + + 10 ms + 10毫秒 + + + 50 ms + 50毫秒 + + + 100 ms + 100毫秒 + + + 500 ms + 500毫秒 + + + 1 s + 1秒 + + + Pos: (200.23, 300.23, 400.23, 234, 343 ,343) + 位置: (200.23, 300.23, 400.23, 234, 343 ,343) + + + Type + 類型 + + + Name + 名稱 + + + C + C + + + V + V + + + A + A + + + + Trajectory + Trajectory + + + + RobotGui::TaskTrajectoryDressUpParameter + + + Dress Up Parameter + Dress Up Parameter + + + + TaskEdge2TracParameter + + + Form + 格式 + + + Hide / Show + 隱藏/顯示 + + + Edges: 0 + 邊緣: 0 + + + Cluster: 0 + 群組:0 + + + Sizing Value: + 尺寸值: + + + Use orientation of edge + 使用邊緣之方向 + + + TaskEdge2TracParameter + TaskEdge2TracParameter + + + + TaskRobot6Axis + + TaskRobot6Axis + TaskRobot6Axis + + + + TaskRobotControl + + + Form + 格式 + + + X+ + X+ + + + Y+ + Y+ + + + Z+ + Z+ + + + A+ + A+ + + + B+ + B+ + + + C+ + C+ + + + X- + X- + + + Y- + Y- + + + Z- + Z- + + + A- + A- + + + B- + B- + + + C- + C- + + + Tool 0 + 工具0 + + + Tool + 工具 + + + Base 0 + 基礎0 + + + Base + 基礎 + + + World + 世界 + + + 50mm / 5° + 50mm / 5° + + + 20mm / 2° + 20mm / 2° + + + 10mm / 1° + 10mm / 1° + + + 5mm / 0.5° + 5mm / 0.5° + + + 1mm / 0.1° + 1mm / 0.1° + + + TaskRobotControl + TaskRobotControl + + + + TaskRobotMessages + + + Form + 格式 + + + clear + 清除 + + + TaskRobotMessages + TaskRobotMessages + + + + TaskTrajectory + + Trajectory + Trajectory + + + + TaskTrajectoryDressUpParameter + + + Form + 格式 + + + Speed & Acceleration: + 速度 & 加速度: + + + Speed: + 速度: + + + Use + 使用 + + + Accel: + 加速: + + + Don't change Cont + 不要改變內容 + + + Continues + 繼續 + + + Discontinues + 中止 + + + Position and Orientation: + 位置和方向: + + + (0,0,0),(0,0,0) + (0,0,0),(0,0,0) + + + ... + ... + + + Don't change Position & Orientation + 不要更改位置和方向 + + + Use Orientation + 使用定向 + + + Add Position + 增加位置 + + + Add Orientation + 增加方向 + + + Dress Up Parameter + Dress Up Parameter + + + + Workbench + + + Robot + 機器人 + + + Insert Robots + 插入機器人 + + + &Robot + &機器人 + + + Export trajectory + 匯出軌跡 + + + diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_zh.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_zh.ts deleted file mode 100644 index 265c6a5fd..000000000 --- a/src/Mod/Robot/Gui/Resources/translations/Robot_zh.ts +++ /dev/null @@ -1,1044 +0,0 @@ - - - - - CmdRobotAddToolShape - - - Robot - 机器人 - - - - Add tool - 新增工具 - - - - Add a tool shape to the robot - 将工具形状添加到机器人 - - - - CmdRobotConstraintAxle - - - Robot - 机器人 - - - - Place robot... - 机器人区域... - - - - Place a robot (experimental!) - 放置机器人(实验!) - - - - CmdRobotCreateTrajectory - - - Robot - 机器人 - - - - Create trajectory - 创建轨迹 - - - - Create a new empty trajectory - 创建新的空轨迹 - - - - CmdRobotEdge2Trac - - - Robot - 机器人 - - - - Edge to Trajectory... - 边缘到轨迹... - - - - Generate a Trajectory from a set of edges - 从一组边生成轨迹 - - - - CmdRobotExportKukaCompact - - - Robot - 机器人 - - - - Kuka compact subroutine... - Kuka压缩子例程... - - - - Export the trajectory as a compact KRL subroutine. - 导出轨迹为压缩 KRL 子例程. - - - - CmdRobotExportKukaFull - - - Robot - 机器人 - - - - Kuka full subroutine... - Kuka完整子例程... - - - - Export the trajectory as a full KRL subroutine. - 导出轨迹为完整 KRL 子例程. - - - - CmdRobotInsertKukaIR125 - - - Robot - 机器人 - - - - Kuka IR125 - Kuka IR125 - - - - Insert a Kuka IR125 into the document. - 将Kuka IR125导入文档. - - - - CmdRobotInsertKukaIR16 - - - Robot - 机器人 - - - - Kuka IR16 - Kuka IR16 - - - - Insert a Kuka IR16 into the document. - 将Kuka IR16导入文档. - - - - CmdRobotInsertKukaIR210 - - - Robot - 机器人 - - - - Kuka IR210 - Kuka IR210 - - - - Insert a Kuka IR210 into the document. - 将Kuka IR210导入文档. - - - - CmdRobotInsertKukaIR500 - - - Robot - 机器人 - - - - Kuka IR500 - Kuka IR500 - - - - Insert a Kuka IR500 into the document. - 将Kuka IR500导入文档. - - - - CmdRobotInsertWaypoint - - - Robot - 机器人 - - - - Insert in trajectory - 在轨迹中插入 - - - - Insert robot Tool location into trajectory - 导入机器人工具位置到轨迹 - - - - CmdRobotInsertWaypointPreselect - - - Robot - 机器人 - - - - Insert in trajectory - 在轨迹中插入 - - - - Insert preselection position into trajectory (W) - 预选位置插入轨迹(W) - - - - CmdRobotRestoreHomePos - - - Robot - 机器人 - - - - - Move to home - 移动到初始 - - - - CmdRobotSetDefaultOrientation - - - Robot - 机器人 - - - - Set default orientation - 设置默认方向 - - - - set the default orientation for subsequent commands for waypoint creation - 为后续创建路径点命令设置默认方向 - - - - CmdRobotSetDefaultValues - - - Robot - 机器人 - - - - Set default values - 设置默认值 - - - - set the default values for speed, acceleration and continuity for subsequent commands of waypoint creation - 为后续创建路径点命令设置默认速度,加速度和连续性 - - - - CmdRobotSetHomePos - - - Robot - 机器人 - - - - - Set the home position - 设置初始位置 - - - - CmdRobotSimulate - - - Robot - 机器人 - - - - Simulate a trajectory - 模拟轨迹 - - - - Run a simulation on a trajectory - 在轨迹上模拟 - - - - CmdRobotTrajectoryCompound - - - Robot - 机器人 - - - - Trajectory compound... - 复合轨迹... - - - - Group and connect some trajectories to one - 将轨迹组合并连接成一个 - - - - CmdRobotTrajectoryDressUp - - - Robot - 机器人 - - - - Dress up trajectory... - 修饰轨迹... - - - - Create a dress up object which overide som aspects of a trajectory - 为轨迹重载创建一个修饰对象 - - - - Gui::TaskView::TaskWatcherCommands - - - Trajectory tools - 轨迹工具 - - - - Robot tools - 机器人工具 - - - - Insert Robot - 插入机器人 - - - - QObject - - - - - - - - - - - - - Wrong selection - 选择错误 - - - - - - - - Select one Robot and one Trajectory object. - 选择一个机器人和一个轨迹对象. - - - - Trajectory not valid - 无效轨迹 - - - - You need at least two way points in a trajectory to simulate. - 你至少需要两个路径点以进行轨迹模拟. - - - - - KRL file(*.src) - KRL文件(*.src) - - - - - All Files (*.*) - 所有文件(*.*) - - - - - Export program - 导出程序 - - - - Select one robot and one shape or VRML object. - 选择一个机器人和一个形状或VRML对象. - - - - No preselection - 无预选 - - - - You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. - 您必须悬停鼠标于(预选)几何体以使用该命令.详情请参考文档. - - - - Select one Robot to set home postion - 选中一个机器人并设置初始位置 - - - - Select one Robot - 选择一个机器人 - - - - - Select one Trajectory object. - 选择一个轨迹对象. - - - - set default speed - 设置默认速度 - - - - speed: (e.g. 1 m/s or 3 cm/s) - 速度: (如 1 m/s 或 3 cm/s) - - - - set default continuity - 设置默认连续性 - - - - continuous ? - 连续的? - - - - set default acceleration - 设置默认加速度 - - - - acceleration: (e.g. 1 m/s^2 or 3 cm/s^2) - 加速度: (如 1 m/s^2 或 3 cm/s^2) - - - - Select the Trajectory which you want to dress up. - 选择您要遵循的轨迹. - - - - No robot files installed - 未安装机器人文件 - - - - Please visit %1 and copy the files to %2 - 请访问 %1 并复制文件到 %2 - - - - RobotGui::DlgTrajectorySimulate - - - Simulation - 模拟 - - - - |< - |< - - - - < - < - - - - || - || - - - - |> - |> - - - - > - > - - - - >| - >| - - - - % - % - - - - Type - 类型 - - - - Name - 名称 - - - - C - C - - - - V - V - - - - A - A - - - - RobotGui::TaskEdge2TracParameter - - - TaskEdge2TracParameter - 边转轨迹任务参数 - - - - RobotGui::TaskRobot6Axis - - - Form - 窗体 - - - - A1 - A1 - - - - A2 - A2 - - - - A3 - A3 - - - - A4 - A4 - - - - A5 - A5 - - - - A6 - A6 - - - - TCP: (200.23,300.23,400.23,234,343,343) - TCP: (200.23,300.23,400.23,234,343,343) - - - - Tool: (0,0,400,0,0,0) - 工具:(0,0,400,0,0,0) - - - - ... - ... - - - - TaskRobot6Axis - 机器人6轴任务 - - - - RobotGui::TaskRobotControl - - - TaskRobotControl - 任务机器人控制 - - - - RobotGui::TaskRobotMessages - - - TaskRobotMessages - 机器人信息任务 - - - - RobotGui::TaskTrajectory - - - Form - 窗体 - - - - |< - |< - - - - < - < - - - - || - || - - - - |> - |> - - - - > - > - - - - >| - >| - - - - % - % - - - - 10 ms - 10 ms - - - - 50 ms - 50 ms - - - - 100 ms - 100 ms - - - - 500 ms - 500 ms - - - - 1 s - 1 s - - - - Pos: (200.23, 300.23, 400.23, 234, 343 ,343) - 位置: (200.23, 300.23, 400.23, 234, 343 ,343) - - - - Type - 类型 - - - - Name - 名称 - - - - C - C - - - - V - V - - - - A - A - - - - Trajectory - 轨迹 - - - - RobotGui::TaskTrajectoryDressUpParameter - - - Dress Up Parameter - 修饰参数 - - - - TaskEdge2TracParameter - - - Form - 窗体 - - - - Hide / Show - 隐藏/显示 - - - - Edges: 0 - 边:0 - - - - Cluster: 0 - 集群:0 - - - - Sizing Value: - 调整大小的值: - - - - Use orientation of edge - 使用边缘的方向 - - - TaskEdge2TracParameter - 边转轨迹任务参数 - - - - TaskRobot6Axis - - TaskRobot6Axis - 机器人6轴任务 - - - - TaskRobotControl - - - Form - 窗体 - - - - X+ - X+ - - - - Y+ - Y+ - - - - Z+ - Z+ - - - - A+ - A+ - - - - B+ - B+ - - - - C+ - C+ - - - - X- - X- - - - - Y- - Y- - - - - Z- - Z- - - - - A- - A- - - - - B- - B- - - - - C- - C- - - - - Tool 0 - 工具 0 - - - - Tool - 工具 - - - - Base 0 - 基本 0 - - - - Base - 基本 - - - - World - 世界 - - - - 50mm / 5° - 50mm / 5° - - - - 20mm / 2° - 20mm / 2° - - - - 10mm / 1° - 10mm / 1° - - - - 5mm / 0.5° - 5mm / 0.5° - - - - 1mm / 0.1° - 1mm / 0.1° - - - TaskRobotControl - 任务机器人控制 - - - - TaskRobotMessages - - - Form - 窗体 - - - - clear - 清除 - - - TaskRobotMessages - 机器人信息任务 - - - - TaskTrajectory - - Trajectory - 轨迹 - - - - TaskTrajectoryDressUpParameter - - - Form - 窗体 - - - - Speed & Acceleration: - 速度和加速度: - - - - Speed: - 速度: - - - - - Use - 使用 - - - - Accel: - 加速: - - - - Don't change Cont - 不要更改连续 - - - - Continues - 连续 - - - - Discontinues - 中止 - - - - Position and Orientation: - 位置和方向: - - - - (0,0,0),(0,0,0) - (0,0,0),(0,0,0) - - - - ... - ... - - - - Don't change Position & Orientation - 不要改变位置和方向 - - - - Use Orientation - 使用方向 - - - - Add Position - 添加位置 - - - - Add Orientation - 添加定位 - - - Dress Up Parameter - 修饰参数 - - - - Workbench - - - Robot - 机器人 - - - - Insert Robots - 导入机器人 - - - - &Robot - 机器人(&R) - - - - Export trajectory - 导出轨迹 - - - diff --git a/src/Mod/Sketcher/Gui/Resources/Makefile.am b/src/Mod/Sketcher/Gui/Resources/Makefile.am index 1209d54ef..04437ed4f 100644 --- a/src/Mod/Sketcher/Gui/Resources/Makefile.am +++ b/src/Mod/Sketcher/Gui/Resources/Makefile.am @@ -78,8 +78,8 @@ icons/Constraint_PointOnObject.svg \ translations/Sketcher_af.ts \ translations/Sketcher_de.qm \ translations/Sketcher_de.ts \ - translations/Sketcher_es.qm \ - translations/Sketcher_es.ts \ + translations/Sketcher_es-ES.qm \ + translations/Sketcher_es-ES.ts \ translations/Sketcher_fi.qm \ translations/Sketcher_fi.ts \ translations/Sketcher_fr.qm \ @@ -94,16 +94,30 @@ icons/Constraint_PointOnObject.svg \ translations/Sketcher_no.ts \ translations/Sketcher_pl.qm \ translations/Sketcher_pl.ts \ - translations/Sketcher_pt.qm \ - translations/Sketcher_pt.ts \ + translations/Sketcher_pt-BR.qm \ + translations/Sketcher_pt-BR.ts \ translations/Sketcher_ru.qm \ translations/Sketcher_ru.ts \ - translations/Sketcher_se.qm \ - translations/Sketcher_se.ts \ + translations/Sketcher_sv-SE.qm \ + translations/Sketcher_sv-SE.ts \ translations/Sketcher_uk.qm \ translations/Sketcher_uk.ts \ - translations/Sketcher_zh.qm \ - translations/Sketcher_zh.ts \ + translations/Sketcher_zh-CN.qm \ + translations/Sketcher_zh-CN.ts \ + translations/Sketcher_zh-TW.qm \ + translations/Sketcher_zh-TW.ts \ + translations/Sketcher_cs.qm \ + translations/Sketcher_cs.ts \ + translations/Sketcher_sk.qm \ + translations/Sketcher_sk.ts \ + translations/Sketcher_hu.qm \ + translations/Sketcher_hu.ts \ + translations/Sketcher_ro.qm \ + translations/Sketcher_ro.ts \ + translations/Sketcher_tr.qm \ + translations/Sketcher_tr.ts \ + translations/Sketcher_ja.qm \ + translations/Sketcher_ja.ts \ Sketcher.qrc diff --git a/src/Mod/Sketcher/Gui/Resources/Sketcher.qrc b/src/Mod/Sketcher/Gui/Resources/Sketcher.qrc index bdc5ad805..10989058e 100644 --- a/src/Mod/Sketcher/Gui/Resources/Sketcher.qrc +++ b/src/Mod/Sketcher/Gui/Resources/Sketcher.qrc @@ -67,7 +67,6 @@ icons/Sketcher_AlterConstruction.svg translations/Sketcher_af.qm translations/Sketcher_de.qm - translations/Sketcher_es.qm translations/Sketcher_fi.qm translations/Sketcher_fr.qm translations/Sketcher_hr.qm @@ -75,10 +74,18 @@ translations/Sketcher_nl.qm translations/Sketcher_no.qm translations/Sketcher_pl.qm - translations/Sketcher_pt.qm translations/Sketcher_ru.qm - translations/Sketcher_se.qm translations/Sketcher_uk.qm - translations/Sketcher_zh.qm + translations/Sketcher_tr.qm + translations/Sketcher_sv-SE.qm + translations/Sketcher_zh-TW.qm + translations/Sketcher_pt-BR.qm + translations/Sketcher_cs.qm + translations/Sketcher_sk.qm + translations/Sketcher_es-ES.qm + translations/Sketcher_zh-CN.qm + translations/Sketcher_ja.qm + translations/Sketcher_ro.qm + translations/Sketcher_hu.qm diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_af.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_af.qm index 60bdf874f..6663239d2 100644 Binary files a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_af.qm and b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_af.qm differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_af.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_af.ts index 982b18ef5..6d4909a8b 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_af.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_af.ts @@ -1,1299 +1,1052 @@ - - + + CmdSketcherConstrainAngle - - Sketcher - Sketser + + Sketcher + Sketser - - Constrain angle - Constrain angle + Constrain angle + Dwinghoek - - Fix the angle of a line or the angle between two lines - Fix the angle of a line or the angle between two lines + Fix the angle of a line or the angle between two lines + Vries die hoek van 'n lyn of die hoek tussen twee lyne - - + + CmdSketcherConstrainCoincident - - Sketcher - Sketser + Sketcher + Sketser - - Constrain coincident - Beperk samevalling + Constrain coincident + Beperk samevalling - - Create a coincident constraint on the selected item - Skep 'n samevallende beperking op die gekose item + Create a coincident constraint on the selected item + Skep 'n samevallende beperking op die gekose item - - + + CmdSketcherConstrainDistance - - Sketcher - Sketser + Sketcher + Sketser - - Constrain distance - Beperk afstand + Constrain distance + Beperk afstand - - Fix a length of a line or the distance between a line and a vertex - Herstel 'n lynlengte of afstand tussen 'n lyn en 'n hoekpunt + Fix a length of a line or the distance between a line and a vertex + Herstel 'n lynlengte of afstand tussen 'n lyn en 'n hoekpunt - - + + CmdSketcherConstrainDistanceX - - Sketcher - Sketser + Sketcher + Sketser - - Constrain horizontal distance - Constrain horizontal distance + Constrain horizontal distance + Beperk horisontale afstand - Constrain vertical distance - Constrain vertical distance + Constrain vertical distance + Constrain vertical distance - - Fix the horizontal distance between two points or line ends - Fix the horizontal distance between two points or line ends + Fix the horizontal distance between two points or line ends + Hou die horisontale afstand tussen twee punte of lyneindpunte konstant - - + + CmdSketcherConstrainDistanceY - - Sketcher - Sketser + Sketcher + Sketser - - Constrain vertical distance - Constrain vertical distance + Constrain vertical distance + Constrain vertical distance - Constrain horizontal distance - Constrain horizontal distance + Constrain horizontal distance + Beperk horisontale afstand - - Fix the vertical distance between two points or line ends - Fix the vertical distance between two points or line ends + Fix the vertical distance between two points or line ends + Hou die vertikale afstand tussen twee punte of lyneindpunte konstant - - + + CmdSketcherConstrainEqual - - Sketcher - Sketser + Sketcher + Sketser - - Constrain equal - Constrain equal + Constrain equal + Dwing ewe veel - - Create an equality constraint between two lines or between circles and arcs - Create an equality constraint between two lines or between circles and arcs + Create an equality constraint between two lines or between circles and arcs + Skep 'n gelykheidsbeperking tussen twee lyne of tussen sirkels en boë - - + + CmdSketcherConstrainHorizontal - - Sketcher - Sketser + Sketcher + Sketser - - Constrain horizontally - Beperk horisontaal + Constrain horizontally + Beperk horisontaal - - Create a horizontal constraint on the selected item - Skep 'n horisontale beperking op die gekose item + Create a horizontal constraint on the selected item + Skep 'n horisontale beperking op die gekose item - - + + CmdSketcherConstrainLock - - Sketcher - Sketser + Sketcher + Sketser - - Constrain lock - Beperk sluiting + Constrain lock + Beperk sluiting - - Create a lock constraint on the selected item - Create a lock constraint on the selected item + Create a lock constraint on the selected item + Skep 'n slotbeperking op die geselekteerde item - - + + CmdSketcherConstrainParallel - - Sketcher - Sketser + Sketcher + Sketser - - Constrain parallel - Beperk parallel + Constrain parallel + Beperk parallel - - Create a parallel constraint between two lines - Skep 'n parallelle beperking tussen twee lyne + Create a parallel constraint between two lines + Skep 'n parallelle beperking tussen twee lyne - - + + CmdSketcherConstrainPerpendicular - - Sketcher - Sketser + Sketcher + Sketser - - Constrain perpendicular - Constrain perpendicular + Constrain perpendicular + Dwing loodreg - - Create a Perpendicular constraint between two lines - Create a Perpendicular constraint between two lines + Create a Perpendicular constraint between two lines + Skep 'n loodregte beperking tussen twee lyne - - + + CmdSketcherConstrainPointOnObject - - Sketcher - Sketser + Sketcher + Sketser - - Constrain point onto object - Constrain point onto object + Constrain point onto object + Beperk die punt tot die voorwerp - - Fix a point onto an object - Fix a point onto an object + Fix a point onto an object + Heg 'n punt aan 'n voorwerp - - + + CmdSketcherConstrainRadius - - Sketcher - Sketser + Sketcher + Sketser - - Constrain radius - Constrain radius + Constrain radius + Dwingradius - - Fix the radius of a circle or an arc - Fix the radius of a circle or an arc + Fix the radius of a circle or an arc + Sluit vas die radius van 'n sirkel of 'n boog - - + + CmdSketcherConstrainSymmetric - - Sketcher - Sketser + Sketcher + Sketser - - Constrain symmetrical - Constrain symmetrical + Constrain symmetrical + Dwing simmetries - - Create an symmetry constraint between two points with respect to a line - Create an symmetry constraint between two points with respect to a line + Create an symmetry constraint between two points with respect to a line + Skep 'n simmetriebeperking tussen twee punte met betrekking tot 'n lyn - - + + CmdSketcherConstrainTangent - - Sketcher - Sketser + Sketcher + Sketser - - Constrain tangent - Constrain tangent + Constrain tangent + Dwingraaklyn - - Create a tangent constraint between two entities - Create a tangent constraint between two entities + Create a tangent constraint between two entities + Skep 'n tangensiale beperking tussen die twee entiteite - - + + CmdSketcherConstrainVertical - - Sketcher - Sketser + Sketcher + Sketser - - Constrain vertically - Beperk vertikaal + Constrain vertically + Beperk vertikaal - - Create a vertical constraint on the selected item - Skep 'n vertikale beperking op die gekose item + Create a vertical constraint on the selected item + Skep 'n vertikale beperking op die gekose item - - + + CmdSketcherCreateArc - - Sketcher - Sketser + + Sketcher + Sketser - - Create arc - Skep boog + Create arc + Skep boog - - Create an arc in the sketch - Skep 'n boog in die skets + Create an arc in the sketch + Skep 'n boog in die skets - - + + CmdSketcherCreateCircle - - Sketcher - Sketser + Sketcher + Sketser - - Create circle - Skep sirkel + Create circle + Skep sirkel - - Create a circle in the sketch - Skep 'n sirkel in die skets + Create a circle in the sketch + Skep 'n sirkel in die skets - - + + CmdSketcherCreateDraftLine - - Sketcher - Sketser + Sketcher + Sketser - - Create draft line - Skep ontwerplyn + Create draft line + Skep ontwerplyn - - Create a draft line in the sketch - Skep 'n ontwerplyn in die skets + Create a draft line in the sketch + Skep 'n ontwerplyn in die skets - - + + CmdSketcherCreateFillet - - Sketcher - Sketser + Sketcher + Sketser - - Create fillet - Create fillet + Create fillet + Skep ronding - - Create a fillet between two lines or at a coincidental point - + Create a fillet between two lines or at a coincidental point + Create a fillet between two lines or at a coincidental point - Create a fillet between two lines or at a coincident point - Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point - - + + CmdSketcherCreateLine - - Sketcher - Sketser + Sketcher + Sketser - - Create line - Skep lyn + Create line + Skep lyn - - Create a line in the sketch - Trek 'n lyn in die skets + Create a line in the sketch + Trek 'n lyn in die skets - - + + CmdSketcherCreatePoint - - Sketcher - Sketser + Sketcher + Sketser - - Create point - Skep punt + Create point + Skep punt - - Create a point in the sketch - Skep 'n punt in die skets + Create a point in the sketch + Skep 'n punt in die skets - - + + CmdSketcherCreatePolyline - - Sketcher - Sketser + Sketcher + Sketser - - Create polyline - Skep veelvuldige segment lyn + Create polyline + Skep veelvuldige segment lyn - - Create a polyline in the sketch - Skep 'n lyn met veelvuldige segmente in die skets + Create a polyline in the sketch + Skep 'n lyn met veelvuldige segmente in die skets - - + + CmdSketcherCreateRectangle - - Sketcher - Sketser + Sketcher + Sketser - - Create rectangle - Skep reghoek + Create rectangle + Skep reghoek - - Create a rectangle in the sketch - Skep 'n reghoek in die skets + Create a rectangle in the sketch + Skep 'n reghoek in die skets - - + + CmdSketcherCreateText - - Sketcher - Sketser + Sketcher + Sketser - - Create text - Skep teks + Create text + Skep teks - - Create text in the sketch - Skep teks in die skets + Create text in the sketch + Skep teks in die skets - - + + CmdSketcherExternal - - Sketcher - Sketser + Sketcher + Sketser - - External geometry - + External geometry + External geometry - - Create an edge linked to an external geometry - + Create an edge linked to an external geometry + Create an edge linked to an external geometry - - + + CmdSketcherLeaveSketch - - Sketcher - Sketser + + Sketcher + Sketser - - Leave sketch - Verlaat skets + Leave sketch + Verlaat skets - - Close the editing of the sketch - Sluit af sketswysiging + Close the editing of the sketch + Sluit af sketswysiging - - + + CmdSketcherMapSketch - - Sketcher - Sketser + Sketcher + Sketser - - Map sketch to face... - Map sketch to face... + Map sketch to face... + Kaartlê skets tot oppervlak... - - Map a sketch to a face - Map a sketch to a face + Map a sketch to a face + Kaartlê 'n skets tot 'n oppervlak - - + + CmdSketcherNewSketch - - Sketcher - Sketser + Sketcher + Sketser - - Create sketch - Skep skets + Create sketch + Skep skets - - Create a new or edit the selected sketch - Create a new or edit the selected sketch + Create a new or edit the selected sketch + Skep 'n nuwe of wysig die gekose skets - Create a new sketch - Skep 'n nuwe skets + Create a new sketch + Skep 'n nuwe skets - - + + CmdSketcherNewSketchSF - Sketcher - Sketser + Sketcher + Sketser - Sketchflat sketch - Sketsplat skets + Sketchflat sketch + Sketsplat skets - Create a new sketchflat sketch by starting externel editor - Skep 'n nuwe sketsplat skets met 'n eksterne program + Create a new sketchflat sketch by starting externel editor + Skep 'n nuwe sketsplat skets met 'n eksterne program - - + + CmdSketcherToggleConstruction - - Sketcher - Sketser + + Sketcher + Sketser - - Toggle construction line - Toggle construction line + Toggle construction line + Aktiveer/deaktiveer konstruksielyn - - Toggles the currently selected lines to/from construction mode - Toggles the currently selected lines to/from construction mode + Toggles the currently selected lines to/from construction mode + Skakel die huidige gekose lyne na/van konstruksiemodus - - + + CmdSketcherTrimming - - Sketcher - Sketser + + Sketcher + Sketser - - Trim edge - Trim edge + Trim edge + Knip kant - - Trim an edge with respect to the picked position - + Trim an edge with respect to the picked position + Trim an edge with respect to the picked position - Trims an edge with respect to the picked position - Trims an edge with respect to the picked position + Trims an edge with respect to the picked position + Knip 'n kant met betrekking tot die gekose posisie - - + + CmdSketcherViewSketch - - Sketcher - Sketser + + Sketcher + Sketser - - View sketch - View sketch + View sketch + Bekyk die skets - - View sketch perpendicular to sketch plane - View sketch perpendicular to sketch plane + View sketch perpendicular to sketch plane + Bekyk die skets loodreg tot die sketsvlak - - + + Gui::TaskView::TaskSketcherCreateCommands - - Appearance - Voorkoms + + Appearance + Voorkoms - - + + QObject - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Wrong selection - Verkeerde keuse + + Wrong selection + Verkeerde keuse - - Select edge(s) from the sketch. - Select edge(s) from the sketch. + Select edge(s) from the sketch. + Kies die kant(e) van die skets. - - - Select an edge from the sketch. - Kies 'n rand in die skets. + + Select an edge from the sketch. + Kies 'n rand in die skets. - - - Double constraint - Dubbele beperking + Double constraint + Dubbele beperking - - - The selected edge has already a horizontal constraint! - Die gekose rand het reeds 'n horisontale beperking! + The selected edge has already a horizontal constraint! + Die gekose rand het reeds 'n horisontale beperking! - - - - - - - Impossible constraint - Onmoontlike beperking + Impossible constraint + Onmoontlike beperking - - Cannot add a constraint between two external geometries! - + Cannot add a constraint between two external geometries! + Cannot add a constraint between two external geometries! - - - - Only sketch and its support is allowed to select - Only sketch and its support is allowed to select + Only sketch and its support is allowed to select + Slegs die skets en sy ondersteuning mag gekies word - - One of the selected has to be on the sketch - One of the selected has to be on the sketch + One of the selected has to be on the sketch + Een van die keuses moet op die skets wees - - - The selected edge is not a line segment - The selected edge is not a line segment + The selected edge is not a line segment + Die gekose rand is nie 'n lynsegment nie - - - The selected edge has already a vertical constraint! - Die gekose rand het reeds 'n vertikale beperking! + The selected edge has already a vertical constraint! + Die gekose rand het reeds 'n vertikale beperking! - - The selected item(s) can't accept a horizontal constraint! - + The selected item(s) can't accept a horizontal constraint! + The selected item(s) can't accept a horizontal constraint! - - The selected item(s) can't accept a vertical constraint! - + The selected item(s) can't accept a vertical constraint! + The selected item(s) can't accept a vertical constraint! - - Select entities from the sketch. - Select entities from the sketch. + Select entities from the sketch. + Kies entiteite van die skets. - - - Select exactly one entity from the sketch. - Select exactly one entity from the sketch. + Select exactly one entity from the sketch. + Kies presies een entiteit van die skets. - - - - - - - Select vertexes from the sketch. - Kies hoekpunte in die skets. + Select vertexes from the sketch. + Kies hoekpunte in die skets. - - - - Select exactly two vertexes from the sketch. - Kies presies twee hoekpunte uit die skets. + Select exactly two vertexes from the sketch. + Kies presies twee hoekpunte uit die skets. - - - Select exactly one line or one point and one line or two points from the sketch. - Select exactly one line or one point and one line or two points from the sketch. + Select exactly one line or one point and one line or two points from the sketch. + Kies presies een lyn of een punt en een lyn of twee punte uit die skets. - - Cannot add a length constraint on an external geometry! - + Cannot add a length constraint on an external geometry! + Cannot add a length constraint on an external geometry! - - - Select exactly one point and one object from the sketch. - Select exactly one point and one object from the sketch. + Select exactly one point and one object from the sketch. + Kies presies een punt en een voorwerp van die skets. - - - - - Select exactly one line or up to two points from the sketch. - Select exactly one line or up to two points from the sketch. + Select exactly one line or up to two points from the sketch. + Kies presies een lyn of tot twee punte uit die skets. - - Cannot add a horizontal length constraint on an external geometry! - + Cannot add a horizontal length constraint on an external geometry! + Cannot add a horizontal length constraint on an external geometry! - - Cannot add a vertical length constraint on an external geometry! - + Cannot add a vertical length constraint on an external geometry! + Cannot add a vertical length constraint on an external geometry! - - Select two or more lines from the sketch. - Select two or more lines from the sketch. + Select two or more lines from the sketch. + Kies twee of meer lyne van die skets. - - Select at least two lines from the sketch. - Select at least two lines from the sketch. + Select at least two lines from the sketch. + Kies ten minste twee lyne van die skets. - - Select a valid line - Select a valid line + Select a valid line + Kies 'n geldige lyn - - The selected edge is not a valid line - The selected edge is not a valid line + The selected edge is not a valid line + Die gekose kant is nie 'n geldige lyn nie - - The selected points should be end points of arcs and lines. - + The selected points should be end points of arcs and lines. + The selected points should be end points of arcs and lines. - - The selected point should be an end point of an arc or line. - + The selected point should be an end point of an arc or line. + The selected point should be an end point of an arc or line. - - The selected edge should be an arc, line or circle. - + The selected edge should be an arc, line or circle. + The selected edge should be an arc, line or circle. - - One of the selected edges should be a line. - + One of the selected edges should be a line. + One of the selected edges should be a line. - - - - Select exactly one arc or circle from the sketch. - Select exactly one arc or circle from the sketch. + Select exactly one arc or circle from the sketch. + Kies presies een boog of sirkel van die skets. - - Select one or two lines from the sketch. - + Select one or two lines from the sketch. + Select one or two lines from the sketch. - - Cannot add an angle constraint on an external geometry! - + Cannot add an angle constraint on an external geometry! + Cannot add an angle constraint on an external geometry! - - Select exactly one or two lines from the sketch. - Select exactly one or two lines from the sketch. + Select exactly one or two lines from the sketch. + Kies presies een of twee lyne van die skets. - - Select two edges from the sketch. - Select two edges from the sketch. + Select two edges from the sketch. + Kies twee kante van die skets. - - Select atleast two lines from the sketch. - Select atleast two lines from the sketch. + Select atleast two lines from the sketch. + Kies ten minste twee lyne van die skets. - - Select two or more compatible edges - + Select two or more compatible edges + Select two or more compatible edges - - Sketch axes cannot be used in equality constraints - + Sketch axes cannot be used in equality constraints + Sketch axes cannot be used in equality constraints - - - Select two or more edges of similar type - + Select two or more edges of similar type + Select two or more edges of similar type - - Cannot add a constraint between external geometries! - + Cannot add a constraint between external geometries! + Cannot add a constraint between external geometries! - Select exactly two same geometries - Select exactly two same geometries + Select exactly two same geometries + Kies presies twee soortgelyke geometrieë - Select valid geometries - Select valid geometries + Select valid geometries + Kies geldige geometrieë - Select geometry of similar type - Select geometry of similar type + Select geometry of similar type + Kies 'n soortgelyke geometrie - - - - Select two points and one line from the sketch. - Select two points and one line from the sketch. + Select two points and one line from the sketch. + Kies twee punte en een lyn van die skets. - Select exactly one line from the sketch. - Kies presies een lyn in die skets. + Select exactly one line from the sketch. + Kies presies een lyn in die skets. - Select two lines from the sketch. - Kies twee lyne in die skets. + Select two lines from the sketch. + Kies twee lyne in die skets. - Select exactly two lines from the sketch. - Kies presies twee lyne in die skets. + Select exactly two lines from the sketch. + Kies presies twee lyne in die skets. - - - Select two entities from the sketch. - Select two entities from the sketch. + Select two entities from the sketch. + Kies twee entiteite in die skets. - - - - - Select exactly two entities from the sketch. - Select exactly two entities from the sketch. + Select exactly two entities from the sketch. + Kies presies twee entiteite van die skets. - - Edit sketch - Wysig skets + + Edit sketch + Wysig skets - - A dialog is already open in the task panel - 'n Dialoog is reeds oop in die taakpaneel + A dialog is already open in the task panel + 'n Dialoog is reeds oop in die taakpaneel - - Do you want to close this dialog? - Wil jy hierdie dialoog afsluit? + Do you want to close this dialog? + Wil jy hierdie dialoog toe maak? - - Several sub-elements selected - Verskeie onderelemente gekies + + Several sub-elements selected + Verskeie onderelemente gekies - - You have to select a single face as support for a sketch! - Jy moet een vlak kies as 'n stut vir die skets! + You have to select a single face as support for a sketch! + Jy moet een vlak kies as 'n stut vir die skets! - - No support face selected - Geen stutvlak gekies nie + No support face selected + Geen stutvlak gekies nie - - You have to select a face as support for a sketch! - Jy moet 'n vlak kies om die skets mee te stut! + You have to select a face as support for a sketch! + Jy moet 'n vlak kies om die skets mee te stut! - - No planar support - Geen tekenvlak as stut + No planar support + Geen tekenvlak as stut - - You need a planar face as support for a sketch! - Jy benodig 'n tekenvlak as 'n stut vir die skets! + You need a planar face as support for a sketch! + Jy benodig 'n tekenvlak as 'n stut vir die skets! - - Distance constraint - Distance constraint + + Distance constraint + Afstandsbeperking - - Not allowed to edit the datum because the sketch contains conflicting constraints - Not allowed to edit the datum because the sketch contains conflicting constraints + Not allowed to edit the datum because the sketch contains conflicting constraints + Nie toegelaat om die datum te wysig want die skets bevat teenstrydige beperkings - - Dimensional constraint - Dimensional constraint + Dimensional constraint + Dimensionele beperking - - + + SketchOrientationDialog - Choose orientation - Choose orientation + Choose orientation + Kies oriëntasie - Sketch orientation - Sketch orientation + Sketch orientation + Sketsoriëntasie - XY-Plane - XY-Plane + XY-Plane + XY-vlak - XZ-Plane - XZ-Plane + XZ-Plane + XZ-Vlak - YZ-Plane - YZ-Plane + YZ-Plane + YZ-Vlak - Reverse direction - Reverse direction + Reverse direction + Omgekeerde rigting - Offset: - Offset: + Offset: + Verskuiwing: - - + + SketcherGui::InsertDatum - - Insert datum - Voeg datum in + + Insert datum + Voeg datum in - - datum: - datum: + datum: + datum: - - + + SketcherGui::SketchOrientationDialog - - Choose orientation - Choose orientation + + Choose orientation + Kies oriëntasie - - Sketch orientation - Sketch orientation + Sketch orientation + Sketsoriëntasie - - XY-Plane - XY-Plane + XY-Plane + XY-vlak - - XZ-Plane - XZ-Plane + XZ-Plane + XZ-Vlak - - YZ-Plane - YZ-Plane + YZ-Plane + YZ-Vlak - - Reverse direction - Reverse direction + Reverse direction + Omgekeerde rigting - - Offset: - Offset: + Offset: + Verskuiwing: - - + + SketcherGui::TaskSketcherConstrains - - Form - Vorm + + Form + Vorm - - Filter: - Filter: + Filter: + Filter: - - All - Almal + All + Almal - - Normal - Normaallyn + Normal + Normaallyn - - Datums - Datums + Datums + Datums - - Named - Benoem + Named + Benoem - - Constraints - Beperkings + + Constraints + Beperkings - - + + SketcherGui::TaskSketcherGeneral - - Form - Vorm + + Form + Vorm - - Grid size: - Grid size: + Grid size: + Ruitnetgrootte: - - Grid snap - Grid snap + Grid snap + Ruitnethegting - Unsolved - Onopgelos + Unsolved + Onopgelos - Grid Snap - Roosternetaanhegting + Grid Snap + Roosternetaanhegting - 0.1 mm - 0.1 mm + 0.1 mm + 0,1 mm - 0.2 mm - 0.2 mm + 0.2 mm + 0.2 mm - 0.5 mm - 0.5 mm + 0.5 mm + 0,5 mm - 1 mm - 1 mm + 1 mm + 1 mm - 2 mm - 2 mm + 2 mm + 2 mm - 5 mm - 5 mm + 5 mm + 5 mm - 10 mm - 10 mm + 10 mm + 10 mm - 20 mm - 20 mm + 20 mm + 20 mm - 50 mm - 50 mm + 50 mm + 50 mm - 100 mm - 100 mm + 100 mm + 100 mm - 200 mm - 200 mm + 200 mm + 200 mm - 500 mm - 500 mm + 500 mm + 500 mm - 1 m - 1 m + 1 m + 1 m - 2 m - 2 m + 2 m + 2 m - 5 m - 5 m + 5 m + 5 m - 10 m - 10 m + 10 m + 10 m - 20 m - 20 m + 20 m + 20 m - - Auto constraints - Auto constraints + Auto constraints + Outomatiese beperkings - auto constraints - automatiese beperkinge + auto constraints + automatiese beperkinge - - Edit controls - Wysigingskontrole + + Edit controls + Wysigingskontrole - - + + SketcherGui::TaskSketcherMessages - - Solver messages - Solver messages + + Solver messages + Oplosserboodskappe - - + + TaskSketcherConstrains - Constraints - Beperkings + Constraints + Beperkings - - + + TaskSketcherCreateCommands - Appearance - Voorkoms + Appearance + Voorkoms - - + + TaskSketcherGeneral - Edit controls - Wysigingskontrole + Edit controls + Wysigingskontrole - - + + TaskSketcherMessages - - Form - Vorm + + Form + Vorm - - Undefined degrees of freedom - Undefined degrees of freedom + Undefined degrees of freedom + Ongedefiniëerde vryheidsgrade - - Not solved yet - Not solved yet + Not solved yet + Nog nie opgelos nie - - + + Workbench - - Sketcher - Sketser + + Sketcher + Sketser - - Sketcher geometries - Sketcher geometries + Sketcher geometries + Sketsergeometrieë - Sketcher geoms - Sketsvorms + Sketcher geoms + Sketsvorms - - Sketcher constraints - Sketser beperkings + Sketcher constraints + Sketser beperkings - + diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_cs.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_cs.qm new file mode 100644 index 000000000..4b20a3b4a Binary files /dev/null and b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_cs.qm differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_cs.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_cs.ts new file mode 100644 index 000000000..b62134c55 --- /dev/null +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_cs.ts @@ -0,0 +1,1052 @@ + + + + + CmdSketcherConstrainAngle + + + Sketcher + Sketcher + + + Constrain angle + Zadání úhlu + + + Fix the angle of a line or the angle between two lines + Zadá úhel čáry nebo úhel mezi dvěma čarami + + + + CmdSketcherConstrainCoincident + + Sketcher + Sketcher + + + Constrain coincident + Vazba totožnosti + + + Create a coincident constraint on the selected item + Vytvoř vazbu totožnosti na vybranou položku + + + + CmdSketcherConstrainDistance + + Sketcher + Sketcher + + + Constrain distance + Vazba vzdálenosti + + + Fix a length of a line or the distance between a line and a vertex + Fixuj délku úsečky nebo vzdálenost mezi úsečkou a bodem + + + + CmdSketcherConstrainDistanceX + + Sketcher + Sketcher + + + Constrain horizontal distance + Constrain horizontal distance + + + Constrain vertical distance + Constrain vertical distance + + + Fix the horizontal distance between two points or line ends + Zadá vodorovnou vzdálenost mezi dvěma body nebo konci čáry + + + + CmdSketcherConstrainDistanceY + + Sketcher + Sketcher + + + Constrain vertical distance + Constrain vertical distance + + + Constrain horizontal distance + Constrain horizontal distance + + + Fix the vertical distance between two points or line ends + Zadá svislou vzdálenost mezi dvěma body nebo konci čáry + + + + CmdSketcherConstrainEqual + + Sketcher + Sketcher + + + Constrain equal + Zadat jako shodné + + + Create an equality constraint between two lines or between circles and arcs + Vytvoří zadání rovnosti mezi dvěma čarami, kruhy nebo oblouky + + + + CmdSketcherConstrainHorizontal + + Sketcher + Sketcher + + + Constrain horizontally + Vazba horizontálně + + + Create a horizontal constraint on the selected item + Vytvoř vodorovnou vazbu na vybranou položku + + + + CmdSketcherConstrainLock + + Sketcher + Sketcher + + + Constrain lock + Vazba uzamknout + + + Create a lock constraint on the selected item + Vytvoří zadání zamknutí vybrané položky + + + + CmdSketcherConstrainParallel + + Sketcher + Sketcher + + + Constrain parallel + Vazba rovnoběžnosti + + + Create a parallel constraint between two lines + Vytvoř vazbu rovnoběžnosti mezi dvěma úsečkami + + + + CmdSketcherConstrainPerpendicular + + Sketcher + Sketcher + + + Constrain perpendicular + Zadání kolmosti + + + Create a Perpendicular constraint between two lines + Vytvoří zadání kolmosti dvou čar + + + + CmdSketcherConstrainPointOnObject + + Sketcher + Sketcher + + + Constrain point onto object + Zadá bod na objektu + + + Fix a point onto an object + Umístí bod na objekt + + + + CmdSketcherConstrainRadius + + Sketcher + Sketcher + + + Constrain radius + Zadá poloměr + + + Fix the radius of a circle or an arc + Zadá poloměr kružnice nebo oblouku + + + + CmdSketcherConstrainSymmetric + + Sketcher + Sketcher + + + Constrain symmetrical + Zadá jako symetrické + + + Create an symmetry constraint between two points with respect to a line + Zadání symetrie mezi dvěma body vzhledem k čáře + + + + CmdSketcherConstrainTangent + + Sketcher + Sketcher + + + Constrain tangent + Zadá tečnost + + + Create a tangent constraint between two entities + Zadá tečnost mezi dvěma objekty + + + + CmdSketcherConstrainVertical + + Sketcher + Sketcher + + + Constrain vertically + Vazba svisle + + + Create a vertical constraint on the selected item + Vytvoří vazbu svislosti na vybranou položku + + + + CmdSketcherCreateArc + + + Sketcher + Sketcher + + + Create arc + Vytvoř oblouk + + + Create an arc in the sketch + Vytvoř oblouk v náčrtu + + + + CmdSketcherCreateCircle + + Sketcher + Sketcher + + + Create circle + Vytvoř kružnici + + + Create a circle in the sketch + Vytvoří kružnici v náčrtu + + + + CmdSketcherCreateDraftLine + + Sketcher + Sketcher + + + Create draft line + Vytvoř pomocnou úsečku + + + Create a draft line in the sketch + Vytvoří pomocnou úsečku v náčrtu + + + + CmdSketcherCreateFillet + + Sketcher + Sketcher + + + Create fillet + Vytvořit zaoblení + + + Create a fillet between two lines or at a coincidental point + Create a fillet between two lines or at a coincidental point + + + Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point + + + + CmdSketcherCreateLine + + Sketcher + Sketcher + + + Create line + Vytvoř úsečku + + + Create a line in the sketch + Vytvoří úsečku v náčrtu + + + + CmdSketcherCreatePoint + + Sketcher + Sketcher + + + Create point + Vytvoř bod + + + Create a point in the sketch + Vytvoří bod v náčrtu + + + + CmdSketcherCreatePolyline + + Sketcher + Sketcher + + + Create polyline + Vytvoř lomenou čáru + + + Create a polyline in the sketch + Vytvoří lomenou čáru v náčrtu + + + + CmdSketcherCreateRectangle + + Sketcher + Sketcher + + + Create rectangle + Vytvoř obdélník + + + Create a rectangle in the sketch + Vytvoří obdélník v náčrtu + + + + CmdSketcherCreateText + + Sketcher + Sketcher + + + Create text + Vytvoř text + + + Create text in the sketch + Vytvoří text v náčrtu + + + + CmdSketcherExternal + + Sketcher + Sketcher + + + External geometry + External geometry + + + Create an edge linked to an external geometry + Create an edge linked to an external geometry + + + + CmdSketcherLeaveSketch + + + Sketcher + Sketcher + + + Leave sketch + Opustit prostředí náčrtu + + + Close the editing of the sketch + Zavřít editaci náčrtu + + + + CmdSketcherMapSketch + + Sketcher + Sketcher + + + Map sketch to face... + Promítne náčrt na stěnu... + + + Map a sketch to a face + Promítne náčrt na stěnu + + + + CmdSketcherNewSketch + + Sketcher + Sketcher + + + Create sketch + Vytvoř náčrt + + + Create a new or edit the selected sketch + Create a new or edit the selected sketch + + + Create a new sketch + Create a new sketch + + + + CmdSketcherNewSketchSF + + Sketcher + Sketcher + + + Sketchflat sketch + Sketchflat sketch + + + Create a new sketchflat sketch by starting externel editor + Create a new sketchflat sketch by starting externel editor + + + + CmdSketcherToggleConstruction + + + Sketcher + Sketcher + + + Toggle construction line + Přepnout čáru jako pomocnou + + + Toggles the currently selected lines to/from construction mode + Přepíná aktuálně vybrané čáry do/z pomocného módu + + + + CmdSketcherTrimming + + + Sketcher + Sketcher + + + Trim edge + Oříznout hranu + + + Trim an edge with respect to the picked position + Trim an edge with respect to the picked position + + + Trims an edge with respect to the picked position + Trims an edge with respect to the picked position + + + + CmdSketcherViewSketch + + + Sketcher + Sketcher + + + View sketch + Zobrazit skicu + + + View sketch perpendicular to sketch plane + Zobrazit skicu kolmo na kreslící rovinu + + + + Gui::TaskView::TaskSketcherCreateCommands + + + Appearance + Vzhled + + + + QObject + + + Wrong selection + Neplatný výběr + + + Select edge(s) from the sketch. + Vyberte hrany ze skicy. + + + + Select an edge from the sketch. + Vyber hranu z náčrtu. + + + Double constraint + Dvojité omezení + + + The selected edge has already a horizontal constraint! + Vybraný okraj má již horizontální omezení! + + + Impossible constraint + Nemožné omezení + + + Cannot add a constraint between two external geometries! + Cannot add a constraint between two external geometries! + + + Only sketch and its support is allowed to select + Jen skicu a její podporu je dovoleno vybrat + + + One of the selected has to be on the sketch + Jeden z vybraných musí být na Skica + + + The selected edge is not a line segment + Vybraný okraj není segment čáry + + + The selected edge has already a vertical constraint! + Vybraný okraj má již vertikální omezení! + + + The selected item(s) can't accept a horizontal constraint! + The selected item(s) can't accept a horizontal constraint! + + + The selected item(s) can't accept a vertical constraint! + The selected item(s) can't accept a vertical constraint! + + + Select entities from the sketch. + Vyberte entity ze skici. + + + Select exactly one entity from the sketch. + Vyberte jeden objekt skicy. + + + Select vertexes from the sketch. + Vyberte vrcholy ze skici. + + + Select exactly two vertexes from the sketch. + Vyberte přesně dva vrcholy ze skici. + + + Select exactly one line or one point and one line or two points from the sketch. + Select exactly one line or one point and one line or two points from the sketch. + + + Cannot add a length constraint on an external geometry! + Cannot add a length constraint on an external geometry! + + + Select exactly one point and one object from the sketch. + Select exactly one point and one object from the sketch. + + + Select exactly one line or up to two points from the sketch. + Select exactly one line or up to two points from the sketch. + + + Cannot add a horizontal length constraint on an external geometry! + Cannot add a horizontal length constraint on an external geometry! + + + Cannot add a vertical length constraint on an external geometry! + Cannot add a vertical length constraint on an external geometry! + + + Select two or more lines from the sketch. + Select two or more lines from the sketch. + + + Select at least two lines from the sketch. + Select at least two lines from the sketch. + + + Select a valid line + Select a valid line + + + The selected edge is not a valid line + The selected edge is not a valid line + + + The selected points should be end points of arcs and lines. + The selected points should be end points of arcs and lines. + + + The selected point should be an end point of an arc or line. + The selected point should be an end point of an arc or line. + + + The selected edge should be an arc, line or circle. + The selected edge should be an arc, line or circle. + + + One of the selected edges should be a line. + One of the selected edges should be a line. + + + Select exactly one arc or circle from the sketch. + Select exactly one arc or circle from the sketch. + + + Select one or two lines from the sketch. + Select one or two lines from the sketch. + + + Cannot add an angle constraint on an external geometry! + Cannot add an angle constraint on an external geometry! + + + Select exactly one or two lines from the sketch. + Select exactly one or two lines from the sketch. + + + Select two edges from the sketch. + Select two edges from the sketch. + + + Select atleast two lines from the sketch. + Select atleast two lines from the sketch. + + + Select two or more compatible edges + Select two or more compatible edges + + + Sketch axes cannot be used in equality constraints + Sketch axes cannot be used in equality constraints + + + Select two or more edges of similar type + Select two or more edges of similar type + + + Cannot add a constraint between external geometries! + Cannot add a constraint between external geometries! + + + Select exactly two same geometries + Select exactly two same geometries + + + Select valid geometries + Select valid geometries + + + Select geometry of similar type + Select geometry of similar type + + + Select two points and one line from the sketch. + Select two points and one line from the sketch. + + + Select exactly one line from the sketch. + Select exactly one line from the sketch. + + + Select two lines from the sketch. + Select two lines from the sketch. + + + Select exactly two lines from the sketch. + Select exactly two lines from the sketch. + + + Select two entities from the sketch. + Select two entities from the sketch. + + + Select exactly two entities from the sketch. + Select exactly two entities from the sketch. + + + + Edit sketch + Upravit skicu + + + A dialog is already open in the task panel + Dialog je opravdu otevřen v panelu úloh + + + Do you want to close this dialog? + Chcete zavřít tento dialog? + + + + Several sub-elements selected + několik pod elementů vybráno + + + You have to select a single face as support for a sketch! + Máte vybranou jednoduchou plochu jako podklad pro náčrt! + + + No support face selected + Není vybrána žádná podporovaná stěna + + + You have to select a face as support for a sketch! + Musíte vybrat stěnu jako plochu pro náčrt! + + + No planar support + Není k dispozici podporovaná rovina + + + You need a planar face as support for a sketch! + Potřebujete stěnu jako plochu pro náčrt! + + + + Distance constraint + Distance constraint + + + Not allowed to edit the datum because the sketch contains conflicting constraints + Not allowed to edit the datum because the sketch contains conflicting constraints + + + Dimensional constraint + Dimensional constraint + + + + SketchOrientationDialog + + Choose orientation + Choose orientation + + + Sketch orientation + Sketch orientation + + + XY-Plane + XY-Plane + + + XZ-Plane + XZ-Plane + + + YZ-Plane + YZ-Plane + + + Reverse direction + Reverse direction + + + Offset: + Offset: + + + + SketcherGui::InsertDatum + + + Insert datum + Vložit datum + + + datum: + Referenční geometrie: + + + + SketcherGui::SketchOrientationDialog + + + Choose orientation + Choose orientation + + + Sketch orientation + Sketch orientation + + + XY-Plane + XY-Plane + + + XZ-Plane + XZ-Plane + + + YZ-Plane + YZ-Plane + + + Reverse direction + Reverse direction + + + Offset: + Offset: + + + + SketcherGui::TaskSketcherConstrains + + + Form + Návrh + + + Filter: + Filtr: + + + All + Vše + + + Normal + Normála + + + Datums + Referenční geometrie + + + Named + Pojmenované + + + + Constraints + Constraints + + + + SketcherGui::TaskSketcherGeneral + + + Form + Návrh + + + Grid size: + Grid size: + + + Grid snap + Grid snap + + + Unsolved + Unsolved + + + Grid Snap + Grid Snap + + + 0.1 mm + 0.1 mm + + + 0.2 mm + 0.2 mm + + + 0.5 mm + 0.5 mm + + + 1 mm + 1 mm + + + 2 mm + 2 mm + + + 5 mm + 5 mm + + + 10 mm + 10 mm + + + 20 mm + 20 mm + + + 50 mm + 50 mm + + + 100 mm + 100 mm + + + 200 mm + 200 mm + + + 500 mm + 500 mm + + + 1 m + 1 m + + + 2 m + 2 m + + + 5 m + 5 m + + + 10 m + 10 m + + + 20 m + 20 m + + + Auto constraints + Auto constraints + + + auto constraints + auto constraints + + + + Edit controls + Edit controls + + + + SketcherGui::TaskSketcherMessages + + + Solver messages + Solver messages + + + + TaskSketcherConstrains + + Constraints + Constraints + + + + TaskSketcherCreateCommands + + Appearance + Vzhled + + + + TaskSketcherGeneral + + Edit controls + Edit controls + + + + TaskSketcherMessages + + + Form + Návrh + + + Undefined degrees of freedom + Undefined degrees of freedom + + + Not solved yet + Not solved yet + + + + Workbench + + + Sketcher + Sketcher + + + Sketcher geometries + Sketcher geometries + + + Sketcher geoms + Sketcher geoms + + + Sketcher constraints + Vazby náčrtu + + + diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_de.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_de.qm index 0138326ac..ccbc0c534 100644 Binary files a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_de.qm and b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_de.qm differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_de.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_de.ts index b3c47acda..20debc28a 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_de.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_de.ts @@ -1,1299 +1,1052 @@ - - + + CmdSketcherConstrainAngle - - Sketcher - Skizze + + Sketcher + Skizze - - Constrain angle - Constrain angle + Constrain angle + Winkel festlegen - - Fix the angle of a line or the angle between two lines - Fix the angle of a line or the angle between two lines + Fix the angle of a line or the angle between two lines + Winkel einer Linie oder zweier Linien festlegen - - + + CmdSketcherConstrainCoincident - - Sketcher - Skizze + Sketcher + Skizze - - Constrain coincident - Koinzidenz erzwingen + Constrain coincident + Koinzidenz erzwingen - - Create a coincident constraint on the selected item - Eine Koinzidenzbeschränkung für das gewählte Element setzen + Create a coincident constraint on the selected item + Eine Koinzidenzbeschränkung für das gewählte Element setzen - - + + CmdSketcherConstrainDistance - - Sketcher - Skizze + Sketcher + Skizze - - Constrain distance - Distanz einschränken + Constrain distance + Distanz festlegen - - Fix a length of a line or the distance between a line and a vertex - Die Länge einer Linie oder den Abstand einer Linie und eines Vertex festlegen + Fix a length of a line or the distance between a line and a vertex + Die Länge einer Linie oder den Abstand einer Linie und eines Vertex festlegen - - + + CmdSketcherConstrainDistanceX - - Sketcher - Skizze + Sketcher + Skizze - - Constrain horizontal distance - Constrain horizontal distance + Constrain horizontal distance + Horizontalen Abstand festlegen - Constrain vertical distance - Constrain vertical distance + Constrain vertical distance + Vertikalen Abstand festlegen - - Fix the horizontal distance between two points or line ends - Fix the horizontal distance between two points or line ends + Fix the horizontal distance between two points or line ends + Den horizontalen Abstand zwischen zwei Punkten Streckenenden festlegen - - + + CmdSketcherConstrainDistanceY - - Sketcher - Skizze + Sketcher + Skizze - - Constrain vertical distance - Constrain vertical distance + Constrain vertical distance + Vertikalen Abstand festlegen - Constrain horizontal distance - Constrain horizontal distance + Constrain horizontal distance + Horizontalen Abstand festlegen - - Fix the vertical distance between two points or line ends - Fix the vertical distance between two points or line ends + Fix the vertical distance between two points or line ends + Den vertikalen Abstand zwischen zwei Punkten oder Streckenenden festlegen - - + + CmdSketcherConstrainEqual - - Sketcher - Skizze + Sketcher + Skizze - - Constrain equal - Constrain equal + Constrain equal + Gleichheit festlegen - - Create an equality constraint between two lines or between circles and arcs - Create an equality constraint between two lines or between circles and arcs + Create an equality constraint between two lines or between circles and arcs + Eine Gleichheitsbeschränkung zwischen zwei Linien oder zwischen Kreisen und Bögen festlegen - - + + CmdSketcherConstrainHorizontal - - Sketcher - Skizze + Sketcher + Skizze - - Constrain horizontally - Horizontal einschränken + Constrain horizontally + Horizontal einschränken - - Create a horizontal constraint on the selected item - Eine horizontale Beschränkung für das gewählte Element setzen + Create a horizontal constraint on the selected item + Eine horizontale Beschränkung für das gewählte Element setzen - - + + CmdSketcherConstrainLock - - Sketcher - Skizze + Sketcher + Skizze - - Constrain lock - Sperren + Constrain lock + Sperren - - Create a lock constraint on the selected item - Eine Sperrung für das gewählte Element setzen + Create a lock constraint on the selected item + Eine Sperrung für das gewählte Element setzen - - + + CmdSketcherConstrainParallel - - Sketcher - Skizze + Sketcher + Skizze - - Constrain parallel - Parallelität erzwingen + Constrain parallel + Parallelität erzwingen - - Create a parallel constraint between two lines - Parallelität zwischen zwei Geraden erzwingen + Create a parallel constraint between two lines + Parallelität zwischen zwei Geraden erzwingen - - + + CmdSketcherConstrainPerpendicular - - Sketcher - Skizze + Sketcher + Skizze - - Constrain perpendicular - Constrain perpendicular + Constrain perpendicular + Orthogonalität festlegen - - Create a Perpendicular constraint between two lines - Create a Perpendicular constraint between two lines + Create a Perpendicular constraint between two lines + Orthogonalität zwischen zwei Geraden festlegen - - + + CmdSketcherConstrainPointOnObject - - Sketcher - Skizze + Sketcher + Skizze - - Constrain point onto object - Constrain point onto object + Constrain point onto object + Punkt auf Objekt festlegen - - Fix a point onto an object - Fix a point onto an object + Fix a point onto an object + Punkt auf ein Objekt festlegen - - + + CmdSketcherConstrainRadius - - Sketcher - Skizze + Sketcher + Skizze - - Constrain radius - Constrain radius + Constrain radius + Radius festlegen - - Fix the radius of a circle or an arc - Fix the radius of a circle or an arc + Fix the radius of a circle or an arc + Lege Radius eines Kreises oder Bogens fest - - + + CmdSketcherConstrainSymmetric - - Sketcher - Skizze + Sketcher + Skizze - - Constrain symmetrical - Constrain symmetrical + Constrain symmetrical + Symmetrie festlegen - - Create an symmetry constraint between two points with respect to a line - Create an symmetry constraint between two points with respect to a line + Create an symmetry constraint between two points with respect to a line + Die Symetrie zwischen zwei Punkten im Bezug auf eine Linie festlegen - - + + CmdSketcherConstrainTangent - - Sketcher - Skizze + Sketcher + Skizze - - Constrain tangent - Tangente setzen + Constrain tangent + Tangente setzen - - Create a tangent constraint between two entities - Tangente zwischen zwei Elementen erzwingen + Create a tangent constraint between two entities + Tangente zwischen zwei Elementen erzwingen - - + + CmdSketcherConstrainVertical - - Sketcher - Skizze + Sketcher + Skizze - - Constrain vertically - Vertikal einschränken + Constrain vertically + Vertikal einschränken - - Create a vertical constraint on the selected item - Eine vertikale Beschränkung für das gewählte Element setzen + Create a vertical constraint on the selected item + Eine vertikale Beschränkung für das gewählte Element setzen - - + + CmdSketcherCreateArc - - Sketcher - Skizze + + Sketcher + Skizze - - Create arc - Bogen erstellen + Create arc + Bogen erstellen - - Create an arc in the sketch - Bogen in der Skizze erstellen + Create an arc in the sketch + Bogen in der Skizze erstellen - - + + CmdSketcherCreateCircle - - Sketcher - Skizze + Sketcher + Skizze - - Create circle - Kreis erstellen + Create circle + Kreis erstellen - - Create a circle in the sketch - Kreis in der Skizze erstellen + Create a circle in the sketch + Kreis in der Skizze erstellen - - + + CmdSketcherCreateDraftLine - - Sketcher - Skizze + Sketcher + Skizze - - Create draft line - Entwurfslinie erstellen + Create draft line + Entwurfslinie erstellen - - Create a draft line in the sketch - Eine Entwurfslinie in der Skizze erstellen + Create a draft line in the sketch + Eine Entwurfslinie in der Skizze erstellen - - + + CmdSketcherCreateFillet - - Sketcher - Skizze + Sketcher + Skizze - - Create fillet - Create fillet + Create fillet + Rundung erstellen - - Create a fillet between two lines or at a coincidental point - + Create a fillet between two lines or at a coincidental point + Erstellen einer Abrundung zwischen zwei Geraden oder an einem anliegenden Punkt - Create a fillet between two lines or at a coincident point - Create a fillet between to lines or at a coincident point + Create a fillet between two lines or at a coincident point + Erstellen einer Abrundung zwischen zwei Geraden oder an einem anliegenden Punkt - - + + CmdSketcherCreateLine - - Sketcher - Skizze + Sketcher + Skizze - - Create line - Linie erstellen + Create line + Linie erstellen - - Create a line in the sketch - Linie in der Skizze erstellen + Create a line in the sketch + Linie in der Skizze erstellen - - + + CmdSketcherCreatePoint - - Sketcher - Skizze + Sketcher + Skizze - - Create point - Punkt erstellen + Create point + Punkt erstellen - - Create a point in the sketch - Punkt in der Skizze erstellen + Create a point in the sketch + Punkt in der Skizze erstellen - - + + CmdSketcherCreatePolyline - - Sketcher - Skizze + Sketcher + Skizze - - Create polyline - Linienzug erstellen + Create polyline + Linienzug erstellen - - Create a polyline in the sketch - Linienzug in der Skizze erstellen + Create a polyline in the sketch + Linienzug in der Skizze erstellen - - + + CmdSketcherCreateRectangle - - Sketcher - Skizze + Sketcher + Skizze - - Create rectangle - Rechteck erstellen + Create rectangle + Rechteck erstellen - - Create a rectangle in the sketch - Rechteck in der Skizze erstellen + Create a rectangle in the sketch + Rechteck in der Skizze erstellen - - + + CmdSketcherCreateText - - Sketcher - Skizze + Sketcher + Skizze - - Create text - Text erstellen + Create text + Text erstellen - - Create text in the sketch - Text in der Skizze erstellen + Create text in the sketch + Text in der Skizze erstellen - - + + CmdSketcherExternal - - Sketcher - Skizze + Sketcher + Skizze - - External geometry - + External geometry + Externe Geometrie - - Create an edge linked to an external geometry - + Create an edge linked to an external geometry + Erstellen einer Kante verknüpft mit einer externen Geometrie - - + + CmdSketcherLeaveSketch - - Sketcher - Skizze + + Sketcher + Skizze - - Leave sketch - Skizze verlassen + Leave sketch + Skizze verlassen - - Close the editing of the sketch - Bearbeitung der Skizze beenden + Close the editing of the sketch + Bearbeitung der Skizze beenden - - + + CmdSketcherMapSketch - - Sketcher - Skizze + Sketcher + Skizze - - Map sketch to face... - Map sketch to face... + Map sketch to face... + Skizze einer Fläche zuordnen... - - Map a sketch to a face - Map a sketch to a face + Map a sketch to a face + Eine Skizze einer Fläche zuordnen - - + + CmdSketcherNewSketch - - Sketcher - Skizze + Sketcher + Skizze - - Create sketch - Skizze erstellen + Create sketch + Skizze erstellen - - Create a new or edit the selected sketch - Create a new or edit the selected sketch + Create a new or edit the selected sketch + Eine neue Skizze erstellen oder die ausgewählte Skizze bearbeiten - Create a new sketch - Neue Skizze erstellen + Create a new sketch + Neue Skizze erstellen - - + + CmdSketcherNewSketchSF - Sketcher - Skizze + Sketcher + Skizze - Sketchflat sketch - Sketchflat sketch + Sketchflat sketch + Sketchflat sketch - Create a new sketchflat sketch by starting externel editor - Neue Sketchflat-Skizze in externem Editor erstellen + Create a new sketchflat sketch by starting externel editor + Neue Sketchflat-Skizze in externem Editor erstellen - - + + CmdSketcherToggleConstruction - - Sketcher - Skizze + + Sketcher + Skizze - - Toggle construction line - Toggle construction line + Toggle construction line + Konstruktionslinie umschalten - - Toggles the currently selected lines to/from construction mode - Toggles the currently selected lines to/from construction mode + Toggles the currently selected lines to/from construction mode + Konstruktionsmodus für ausgewählte Kurven ein/ausschalten - - + + CmdSketcherTrimming - - Sketcher - Skizze + + Sketcher + Skizze - - Trim edge - Trim edge + Trim edge + Abkanten - - Trim an edge with respect to the picked position - + Trim an edge with respect to the picked position + Trimmen einer Kante bezüglich der ausgewählten Position - Trims an edge with respect to the picked position - Trims an edge with respect to the picked position + Trims an edge with respect to the picked position + Abkanten unter Berücksichtigung der gewählten Position - - + + CmdSketcherViewSketch - - Sketcher - Skizze + + Sketcher + Skizze - - View sketch - View sketch + View sketch + Skizze anzeigen - - View sketch perpendicular to sketch plane - View sketch perpendicular to sketch plane + View sketch perpendicular to sketch plane + Skizze senkrecht zur Skizzenebene anzeigen - - + + Gui::TaskView::TaskSketcherCreateCommands - - Appearance - Erscheinungsbild + + Appearance + Erscheinungsbild - - + + QObject - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Wrong selection - Falsche Auswahl + + Wrong selection + Falsche Auswahl - - Select edge(s) from the sketch. - Select edge(s) from the sketch. + Select edge(s) from the sketch. + Wählen Sie Kante(n) aus der Skizze. - - - Select an edge from the sketch. - Wählen Sie eine Kante aus der Skizze. + + Select an edge from the sketch. + Wählen Sie eine Kante aus der Skizze. - - - Double constraint - Doppelbedingung + Double constraint + Doppelbedingung - - - The selected edge has already a horizontal constraint! - Die gewählte Kante hat bereits eine Horizontal-Beschränkung! + The selected edge has already a horizontal constraint! + Die gewählte Kante hat bereits eine Horizontal-Beschränkung! - - - - - - - Impossible constraint - Nicht erfüllbare Bedingung + Impossible constraint + Nicht erfüllbare Bedingung - - Cannot add a constraint between two external geometries! - + Cannot add a constraint between two external geometries! + Eine Nebenbedingung zwischen zwei externen Geometrien kann nicht hinzugefügt werden! - - - - Only sketch and its support is allowed to select - Only sketch and its support is allowed to select + Only sketch and its support is allowed to select + Nur Skizze und ihre Auflage dürfen ausgewählt werden - - One of the selected has to be on the sketch - One of the selected has to be on the sketch + One of the selected has to be on the sketch + Eine der Ausgewählten muss auf der Skizze liegen - - - The selected edge is not a line segment - The selected edge is not a line segment + The selected edge is not a line segment + Die gewählte Kante ist kein Linienabschnitt - - - The selected edge has already a vertical constraint! - Die gewählte Kante hat bereits eine Vertikal-Beschränkung! + The selected edge has already a vertical constraint! + Die gewählte Kante hat bereits eine Vertikal-Beschränkung! - - The selected item(s) can't accept a horizontal constraint! - + The selected item(s) can't accept a horizontal constraint! + Die ausgewählten Elemente nehmen keine horizontale Nebenbedingung an! - - The selected item(s) can't accept a vertical constraint! - + The selected item(s) can't accept a vertical constraint! + Die ausgewählten Elemente nehmen keine vertikale Nebenbedingung an! - - Select entities from the sketch. - Wählen Sie Elemente aus der Skizze aus. + Select entities from the sketch. + Wählen Sie Elemente aus der Skizze aus. - - - Select exactly one entity from the sketch. - Wählen Sie genau ein Element aus der Skizze aus. + Select exactly one entity from the sketch. + Wählen Sie genau ein Element aus der Skizze aus. - - - - - - - Select vertexes from the sketch. - Wählen Sie Vertexe aus der Skizze aus. + Select vertexes from the sketch. + Wählen Sie Vertexe aus der Skizze aus. - - - - Select exactly two vertexes from the sketch. - Wählen Sie genau zwei Vertexe aus der Skizze aus. + Select exactly two vertexes from the sketch. + Wählen Sie genau zwei Vertexe aus der Skizze aus. - - - Select exactly one line or one point and one line or two points from the sketch. - Select exactly one line or one point and one line or two points from the sketch. + Select exactly one line or one point and one line or two points from the sketch. + Wählen Sie genau eine Linie oder einen Punkt und eine Linie oder zwei Punkte aus der Skizze aus. - - Cannot add a length constraint on an external geometry! - + Cannot add a length constraint on an external geometry! + Eine Längenbeschränkung auf eine externe Geometrie kann nicht hinzugefügt werden! - - - Select exactly one point and one object from the sketch. - Select exactly one point and one object from the sketch. + Select exactly one point and one object from the sketch. + Wählen Sie genau einen Punkt und ein Objekt aus der Skizze aus. - - - - - Select exactly one line or up to two points from the sketch. - Select exactly one line or up to two points from the sketch. + Select exactly one line or up to two points from the sketch. + Wählen Sie genau eine Linie oder bis zu zwei Punkte aus der Skizze aus. - - Cannot add a horizontal length constraint on an external geometry! - + Cannot add a horizontal length constraint on an external geometry! + Eine horizontale Längenbeschränkung für eine externe Geometrie kann nicht hinzugefügt werden! - - Cannot add a vertical length constraint on an external geometry! - + Cannot add a vertical length constraint on an external geometry! + Eine vertikale Längenbeschränkung für eine externe Geometrie kann nicht hinzugefügt werden! - - Select two or more lines from the sketch. - Select two or more lines from the sketch. + Select two or more lines from the sketch. + Wählen Sie zwei oder mehr Linien aus der Skizze aus. - - Select at least two lines from the sketch. - Select at least two lines from the sketch. + Select at least two lines from the sketch. + Wählen Sie mindestens zwei Linien aus der Skizze aus. - - Select a valid line - Select a valid line + Select a valid line + Wählen Sie eine gültige Linie aus - - The selected edge is not a valid line - The selected edge is not a valid line + The selected edge is not a valid line + Die gewählte Kante ist keine gültige Linie - - The selected points should be end points of arcs and lines. - + The selected points should be end points of arcs and lines. + Die ausgewählten Punkte sollten Endpunkte von Kreisbögen oder Geraden sein. - - The selected point should be an end point of an arc or line. - + The selected point should be an end point of an arc or line. + Der ausgewählte Punkt sollte ein Endpunkt eines Kreisbogens oder einer Geraden sein. - - The selected edge should be an arc, line or circle. - + The selected edge should be an arc, line or circle. + Die ausgewählte Kante sollte ein Kreisbogen, Gerade oder Kreis darstellen. - - One of the selected edges should be a line. - + One of the selected edges should be a line. + Eine der ausgewählten Kanten sollte eine Gerade sein. - - - - Select exactly one arc or circle from the sketch. - Select exactly one arc or circle from the sketch. + Select exactly one arc or circle from the sketch. + Wählen Sie genau einen Bogen oder Kreis aus der Skizze aus. - - Select one or two lines from the sketch. - + Select one or two lines from the sketch. + Wählen Sie eine oder zwei Geraden aus der Skizze aus. - - Cannot add an angle constraint on an external geometry! - + Cannot add an angle constraint on an external geometry! + Eine Winkelbeschränkung für eine externe Geometrie kann nicht hinzugefügt werden! - - Select exactly one or two lines from the sketch. - Select exactly one or two lines from the sketch. + Select exactly one or two lines from the sketch. + Wählen Sie genau eine oder zwei Linien aus der Skizze aus. - - Select two edges from the sketch. - Select two edges from the sketch. + Select two edges from the sketch. + Wählen Sie zwei Kanten aus der Skizze aus. - - Select atleast two lines from the sketch. - Select atleast two lines from the sketch. + Select atleast two lines from the sketch. + Wählen Sie mindestens zwei Linien aus der Skizze aus. - - Select two or more compatible edges - + Select two or more compatible edges + Wählen Sie zwei oder mehr kompatible Kanten - - Sketch axes cannot be used in equality constraints - + Sketch axes cannot be used in equality constraints + Skizzen-Achsen nicht in Gleichheitbeschränkungen einsetzbar - - - Select two or more edges of similar type - + Select two or more edges of similar type + Wählen Sie mindestens zwei Kanten ähnlichen Typs - - Cannot add a constraint between external geometries! - + Cannot add a constraint between external geometries! + Eine Nebenbedingung zwischen zwei externen Geometrien kann nicht hinzugefügt werden! - Select exactly two same geometries - Select exactly two same geometries + Select exactly two same geometries + Wähle exakt zwei gleiche Geometrien - Select valid geometries - Select valid geometries + Select valid geometries + Wähle gültige Geometrien - Select geometry of similar type - Select geometry of similar type + Select geometry of similar type + Wähle Geometrie eines ähnlichen Typus - - - - Select two points and one line from the sketch. - Select two points and one line from the sketch. + Select two points and one line from the sketch. + Wählen Sie zwei Punkte oder eine Linie aus der Skizze aus. - Select exactly one line from the sketch. - Wählen Sie genau einen Vertex aus der Skizze aus. + Select exactly one line from the sketch. + Wählen Sie genau einen Vertex aus der Skizze aus. - Select two lines from the sketch. - Wählen Sie zwei Linien aus der Skizze aus. + Select two lines from the sketch. + Wählen Sie zwei Linien aus der Skizze aus. - Select exactly two lines from the sketch. - Wählen Sie genau zwei Linien aus der Skizze aus. + Select exactly two lines from the sketch. + Wählen Sie genau zwei Linien aus der Skizze aus. - - - Select two entities from the sketch. - Wählen Sie zwei Elemente aus der Skizze aus. + Select two entities from the sketch. + Wählen Sie zwei Elemente aus der Skizze aus. - - - - - Select exactly two entities from the sketch. - Wählen Sie genau zwei Elemente aus der Skizze aus. + Select exactly two entities from the sketch. + Wählen Sie genau zwei Elemente aus der Skizze aus. - - Edit sketch - Skizze bearbeiten + + Edit sketch + Skizze bearbeiten - - A dialog is already open in the task panel - Ein Dialog im Arbeitspanel ist bereits geöffnet + A dialog is already open in the task panel + Ein Dialog im Arbeitspanel ist bereits geöffnet - - Do you want to close this dialog? - Möchten Sie dieses Dialogfeld schließen? + Do you want to close this dialog? + Möchten Sie dieses Dialogfeld schließen? - - Several sub-elements selected - Mehrere Unter-Elemente selektiert + + Several sub-elements selected + Mehrere Unter-Elemente selektiert - - You have to select a single face as support for a sketch! - Sie müssen eine einzelne Fläche als Auflage für eine Skizze auswählen! + You have to select a single face as support for a sketch! + Sie müssen eine einzelne Fläche als Auflage für eine Skizze auswählen! - - No support face selected - Keine Fläche als Auflage selektiert + No support face selected + Keine Fläche als Auflage selektiert - - You have to select a face as support for a sketch! - Sie müssen eine Fläche als Auflage für eine Skizze auswählen! + You have to select a face as support for a sketch! + Sie müssen eine Fläche als Auflage für eine Skizze auswählen! - - No planar support - Keine ebene Auflage + No planar support + Keine ebene Auflage - - You need a planar face as support for a sketch! - Sie benötigen eine ebene Fläche als Auflage für eine Skizze! + You need a planar face as support for a sketch! + Sie benötigen eine ebene Fläche als Auflage für eine Skizze! - - Distance constraint - Distance constraint + + Distance constraint + Abstandsbedingung - - Not allowed to edit the datum because the sketch contains conflicting constraints - Not allowed to edit the datum because the sketch contains conflicting constraints + Not allowed to edit the datum because the sketch contains conflicting constraints + Der Wert kann nicht geändert werden, da die Skizze Randbedingungskonflikte enthält - - Dimensional constraint - Dimensional constraint + Dimensional constraint + Dimensionale Beschränkung - - + + SketchOrientationDialog - Choose orientation - Choose orientation + Choose orientation + Orientierung wählen - Sketch orientation - Sketch orientation + Sketch orientation + Skizzenorientierung - XY-Plane - XY-Ebene + XY-Plane + XY-Ebene - XZ-Plane - XZ-Ebene + XZ-Plane + XZ-Ebene - YZ-Plane - YZ-Ebene + YZ-Plane + YZ-Ebene - Reverse direction - Reverse direction + Reverse direction + Umgekehrte Richtung - Offset: - Offset: + Offset: + Offset: - - + + SketcherGui::InsertDatum - - Insert datum - Bezug einfügen + + Insert datum + Bezug einfügen - - datum: - Bezug: + datum: + Bezug: - - + + SketcherGui::SketchOrientationDialog - - Choose orientation - Choose orientation + + Choose orientation + Orientierung wählen - - Sketch orientation - Sketch orientation + Sketch orientation + Skizzenorientierung - - XY-Plane - XY-Ebene + XY-Plane + XY-Ebene - - XZ-Plane - XZ-Ebene + XZ-Plane + XZ-Ebene - - YZ-Plane - YZ-Ebene + YZ-Plane + YZ-Ebene - - Reverse direction - Reverse direction + Reverse direction + Umgekehrte Richtung - - Offset: - Offset: + Offset: + Offset: - - + + SketcherGui::TaskSketcherConstrains - - Form - Formular + + Form + Form - - Filter: - Filter: + Filter: + Filter: - - All - Alle + All + Alles - - Normal - Normal + Normal + Normal - - Datums - Bezüge + Datums + Bezüge - - Named - Genannt + Named + Genannt - - Constraints - Einschränkungen + + Constraints + Einschränkungen - - + + SketcherGui::TaskSketcherGeneral - - Form - Formular + + Form + Form - - Grid size: - Grid size: + Grid size: + Rastergröße: - - Grid snap - Grid snap + Grid snap + Am Gitter ausrichten - Unsolved - Ungelöst + Unsolved + Ungelöst - Grid Snap - Am Raster ausrichten + Grid Snap + Am Raster ausrichten - 0.1 mm - 0,1 mm + 0.1 mm + 0.1 mm - 0.2 mm - 0,2 mm + 0.2 mm + 0,2 mm - 0.5 mm - 0,5 mm + 0.5 mm + 0.5 mm - 1 mm - 1 mm + 1 mm + 1 mm - 2 mm - 2 mm + 2 mm + 2 mm - 5 mm - 5 mm + 5 mm + 5 mm - 10 mm - 10 mm + 10 mm + 10 mm - 20 mm - 20 mm + 20 mm + 20 mm - 50 mm - 50 mm + 50 mm + 50 mm - 100 mm - 100 mm + 100 mm + 100 mm - 200 mm - 200 mm + 200 mm + 200 mm - 500 mm - 500 mm + 500 mm + 500 mm - 1 m - 1 m + 1 m + 1 m - 2 m - 2 m + 2 m + 2 m - 5 m - 5 m + 5 m + 5 m - 10 m - 10 m + 10 m + 10 m - 20 m - 20 m + 20 m + 20 m - - Auto constraints - Auto constraints + Auto constraints + Automatische Randbedingungen - auto constraints - Automatische Beschränkungen + auto constraints + Automatische Beschränkungen - - Edit controls - Bedienelemente bearbeiten + + Edit controls + Bedienelemente bearbeiten - - + + SketcherGui::TaskSketcherMessages - - Solver messages - Solver messages + + Solver messages + Meldungen des Lösungssystems - - + + TaskSketcherConstrains - Constraints - Einschränkungen + Constraints + Einschränkungen - - + + TaskSketcherCreateCommands - Appearance - Erscheinungsbild + Appearance + Erscheinungsbild - - + + TaskSketcherGeneral - Edit controls - Bedienelemente bearbeiten + Edit controls + Bedienelemente bearbeiten - - + + TaskSketcherMessages - - Form - Formular + + Form + Form - - Undefined degrees of freedom - Undefined degrees of freedom + Undefined degrees of freedom + Unbestimmte Anzahl an Freiheitsgraden - - Not solved yet - Not solved yet + Not solved yet + Noch nicht gelöst - - + + Workbench - - Sketcher - Skizze + + Sketcher + Skizze - - Sketcher geometries - Sketcher geometries + Sketcher geometries + Skizzengeometrien - Sketcher geoms - Skizzen-Geometrien + Sketcher geoms + Skizzen-Geometrien - - Sketcher constraints - Skizzen-Beschränkungen + Sketcher constraints + Skizzen-Beschränkungen - + diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_es-ES.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_es-ES.qm new file mode 100644 index 000000000..dd46ac7e7 Binary files /dev/null and b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_es-ES.qm differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_es-ES.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_es-ES.ts new file mode 100644 index 000000000..c5e3a487c --- /dev/null +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_es-ES.ts @@ -0,0 +1,1052 @@ + + + + + CmdSketcherConstrainAngle + + + Sketcher + Croquizador + + + Constrain angle + Restringir ángulo + + + Fix the angle of a line or the angle between two lines + Fijar el ángulo de una línea o el ángulo entre dos líneas + + + + CmdSketcherConstrainCoincident + + Sketcher + Croquizador + + + Constrain coincident + Restringir coincidente + + + Create a coincident constraint on the selected item + Crear una restricción coincidente en el elemento seleccionado + + + + CmdSketcherConstrainDistance + + Sketcher + Croquizador + + + Constrain distance + Restringir la distancia + + + Fix a length of a line or the distance between a line and a vertex + Fijar una longitud de una línea o la distancia entre una línea y un vértice + + + + CmdSketcherConstrainDistanceX + + Sketcher + Croquizador + + + Constrain horizontal distance + Constrain horizontal distance + + + Constrain vertical distance + Constrain vertical distance + + + Fix the horizontal distance between two points or line ends + Fijar la distancia horizontal entre dos puntos o extremos de línea + + + + CmdSketcherConstrainDistanceY + + Sketcher + Croquizador + + + Constrain vertical distance + Constrain vertical distance + + + Constrain horizontal distance + Constrain horizontal distance + + + Fix the vertical distance between two points or line ends + Fijar la distancia vertical entre dos puntos o extremos de línea + + + + CmdSketcherConstrainEqual + + Sketcher + Croquizador + + + Constrain equal + Igualar + + + Create an equality constraint between two lines or between circles and arcs + Create an equality constraint between two lines or between circles and arcs + + + + CmdSketcherConstrainHorizontal + + Sketcher + Croquizador + + + Constrain horizontally + Restringir horizontalmente + + + Create a horizontal constraint on the selected item + Crear una restricción horizontal en el elemento seleccionado + + + + CmdSketcherConstrainLock + + Sketcher + Croquizador + + + Constrain lock + Restricción de bloqueo + + + Create a lock constraint on the selected item + Create a lock constraint on the selected item + + + + CmdSketcherConstrainParallel + + Sketcher + Croquizador + + + Constrain parallel + Restringir paralelo + + + Create a parallel constraint between two lines + Crear una restricción entre dos líneas paralelas + + + + CmdSketcherConstrainPerpendicular + + Sketcher + Croquizador + + + Constrain perpendicular + Constrain perpendicular + + + Create a Perpendicular constraint between two lines + Create a Perpendicular constraint between two lines + + + + CmdSketcherConstrainPointOnObject + + Sketcher + Croquizador + + + Constrain point onto object + Constrain point onto object + + + Fix a point onto an object + Fijar un punto sobre un objeto + + + + CmdSketcherConstrainRadius + + Sketcher + Croquizador + + + Constrain radius + Constrain radius + + + Fix the radius of a circle or an arc + Fijar el radio de un círculo o arco + + + + CmdSketcherConstrainSymmetric + + Sketcher + Croquizador + + + Constrain symmetrical + Constrain symmetrical + + + Create an symmetry constraint between two points with respect to a line + Create an symmetry constraint between two points with respect to a line + + + + CmdSketcherConstrainTangent + + Sketcher + Croquizador + + + Constrain tangent + Constrain tangent + + + Create a tangent constraint between two entities + Create a tangent constraint between two entities + + + + CmdSketcherConstrainVertical + + Sketcher + Croquizador + + + Constrain vertically + Restringir verticalmente + + + Create a vertical constraint on the selected item + Crear una restricción vertical en el elemento seleccionado + + + + CmdSketcherCreateArc + + + Sketcher + Croquizador + + + Create arc + Crear arco + + + Create an arc in the sketch + Crea un arco en el dibujo + + + + CmdSketcherCreateCircle + + Sketcher + Croquizador + + + Create circle + Crear circunferencia + + + Create a circle in the sketch + Crea una circunferencia en el croquis + + + + CmdSketcherCreateDraftLine + + Sketcher + Croquizador + + + Create draft line + Crear línea auxiliar + + + Create a draft line in the sketch + Crea una línea auxiliar en el croquis + + + + CmdSketcherCreateFillet + + Sketcher + Croquizador + + + Create fillet + Create fillet + + + Create a fillet between two lines or at a coincidental point + Create a fillet between two lines or at a coincidental point + + + Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point + + + + CmdSketcherCreateLine + + Sketcher + Croquizador + + + Create line + Crear línea + + + Create a line in the sketch + Crea una línea en el croquis + + + + CmdSketcherCreatePoint + + Sketcher + Croquizador + + + Create point + Crear punto + + + Create a point in the sketch + Crea un punto en el croquis + + + + CmdSketcherCreatePolyline + + Sketcher + Croquizador + + + Create polyline + Crear polilínea + + + Create a polyline in the sketch + Crea una polilínea en el croquis + + + + CmdSketcherCreateRectangle + + Sketcher + Croquizador + + + Create rectangle + Crear rectángulo + + + Create a rectangle in the sketch + Crea un rectángulo en el croquis + + + + CmdSketcherCreateText + + Sketcher + Croquizador + + + Create text + Crear texto + + + Create text in the sketch + Crear texto en el croquis + + + + CmdSketcherExternal + + Sketcher + Croquizador + + + External geometry + External geometry + + + Create an edge linked to an external geometry + Create an edge linked to an external geometry + + + + CmdSketcherLeaveSketch + + + Sketcher + Croquizador + + + Leave sketch + Salir del croquis + + + Close the editing of the sketch + Cierra la edición del croquis + + + + CmdSketcherMapSketch + + Sketcher + Croquizador + + + Map sketch to face... + Map sketch to face... + + + Map a sketch to a face + Map a sketch to a face + + + + CmdSketcherNewSketch + + Sketcher + Croquizador + + + Create sketch + Crear croquis + + + Create a new or edit the selected sketch + Crear un nuevo o editar el dibujo seleccionado + + + Create a new sketch + Crea un nuevo croquis + + + + CmdSketcherNewSketchSF + + Sketcher + Croquizador + + + Sketchflat sketch + Bosquejo 'sketchflat' + + + Create a new sketchflat sketch by starting externel editor + Crear un bosquejo sketchflat nuevo por medio de editor externo + + + + CmdSketcherToggleConstruction + + + Sketcher + Croquizador + + + Toggle construction line + Toggle construction line + + + Toggles the currently selected lines to/from construction mode + Toggles the currently selected lines to/from construction mode + + + + CmdSketcherTrimming + + + Sketcher + Croquizador + + + Trim edge + Cortar arista + + + Trim an edge with respect to the picked position + Trim an edge with respect to the picked position + + + Trims an edge with respect to the picked position + Trims an edge with respect to the picked position + + + + CmdSketcherViewSketch + + + Sketcher + Croquizador + + + View sketch + Ver croquis + + + View sketch perpendicular to sketch plane + View sketch perpendicular to sketch plane + + + + Gui::TaskView::TaskSketcherCreateCommands + + + Appearance + Aspecto + + + + QObject + + + Wrong selection + Selección incorrecta + + + Select edge(s) from the sketch. + Seleccione arista(s) del dibujo. + + + + Select an edge from the sketch. + Seleccione una arista del dibujo. + + + Double constraint + Restricción doble + + + The selected edge has already a horizontal constraint! + ¡La arista seleccionada ya tiene una restricción horizontal! + + + Impossible constraint + Restricción imposible + + + Cannot add a constraint between two external geometries! + Cannot add a constraint between two external geometries! + + + Only sketch and its support is allowed to select + Se permite seleccionar sólo el dibujo y su soporte + + + One of the selected has to be on the sketch + Uno de los seleccionados debe ser del croquis + + + The selected edge is not a line segment + La arista seleccionada no es un segmento de línea + + + The selected edge has already a vertical constraint! + El borde seleccionado ya tiene una restricción vertical! + + + The selected item(s) can't accept a horizontal constraint! + Elemento(s) seleccionados no pueden aceptar una restricción horizontal! + + + The selected item(s) can't accept a vertical constraint! + The selected item(s) can't accept a vertical constraint! + + + Select entities from the sketch. + Seleccione las entidades del dibujo. + + + Select exactly one entity from the sketch. + Seleccionar exactamente una entidad del dibujo. + + + Select vertexes from the sketch. + Seleccione vértices del dibujo. + + + Select exactly two vertexes from the sketch. + Seleccione exactamente dos vértices del dibujo. + + + Select exactly one line or one point and one line or two points from the sketch. + Seleccione exactamente una línea o un punto y una línea o dos puntos del dibujo. + + + Cannot add a length constraint on an external geometry! + Cannot add a length constraint on an external geometry! + + + Select exactly one point and one object from the sketch. + Seleccione exactamente un punto y un objeto del dibujo. + + + Select exactly one line or up to two points from the sketch. + Seleccione exactamente una línea o hasta dos puntos del dibujo. + + + Cannot add a horizontal length constraint on an external geometry! + Cannot add a horizontal length constraint on an external geometry! + + + Cannot add a vertical length constraint on an external geometry! + No se puede agregar una restricción de longitud vertical en una geometría externa! + + + Select two or more lines from the sketch. + Seleccione dos o más líneas del dibujo. + + + Select at least two lines from the sketch. + Seleccione al menos dos líneas del dibujo. + + + Select a valid line + Seleccione una línea válida + + + The selected edge is not a valid line + La arista seleccionada no es una línea válida + + + The selected points should be end points of arcs and lines. + Los puntos seleccionados deben ser los puntos finales de líneas y arcos. + + + The selected point should be an end point of an arc or line. + El punto seleccionado debe ser un punto final de un arco o línea. + + + The selected edge should be an arc, line or circle. + La arista seleccionada debe ser una línea, arco o un círculo. + + + One of the selected edges should be a line. + Una de las aristas seleccionadas debe ser una línea. + + + Select exactly one arc or circle from the sketch. + Seleccione exactamente un arco o círculo del dibujo. + + + Select one or two lines from the sketch. + Seleccione una o dos líneas del dibujo. + + + Cannot add an angle constraint on an external geometry! + Cannot add an angle constraint on an external geometry! + + + Select exactly one or two lines from the sketch. + Seleccione exactamente una o dos líneas del dibujo. + + + Select two edges from the sketch. + Seleccione dos bordes del dibujo. + + + Select atleast two lines from the sketch. + Seleccione al menos dos líneas en el dibujo. + + + Select two or more compatible edges + Seleccione dos o más aristas compatibles + + + Sketch axes cannot be used in equality constraints + Sketch axes cannot be used in equality constraints + + + Select two or more edges of similar type + Seleccione dos o más aristas de similar clase + + + Cannot add a constraint between external geometries! + Cannot add a constraint between external geometries! + + + Select exactly two same geometries + Select exactly two same geometries + + + Select valid geometries + Select valid geometries + + + Select geometry of similar type + Select geometry of similar type + + + Select two points and one line from the sketch. + Seleccione dos puntos y una línea del dibujo. + + + Select exactly one line from the sketch. + Seleccione exactamente una línea del dibujo. + + + Select two lines from the sketch. + Seleccione dos líneas del dibujo. + + + Select exactly two lines from the sketch. + Seleccione exactamente dos líneas del dibujo. + + + Select two entities from the sketch. + Seleccione dos entidades del esbozo. + + + Select exactly two entities from the sketch. + Seleccionar exactamente dos entidades del dibujo. + + + + Edit sketch + Editar boceto + + + A dialog is already open in the task panel + Un diálogo ya está abierto en el panel de tareas + + + Do you want to close this dialog? + ¿Desea cerrar este diálogo? + + + + Several sub-elements selected + Varios sub-elementos seleccionados + + + You have to select a single face as support for a sketch! + ¡Tiene que seleccionar una sola cara como soporte para un dibujo! + + + No support face selected + No se ha seleccionado una cara de apoyo + + + You have to select a face as support for a sketch! + ¡Tiene que seleccionar una cara como apoyo para un esbozo! + + + No planar support + No hay soporte plano + + + You need a planar face as support for a sketch! + ¡Necesita una cara plana como apoyo para un esbozo! + + + + Distance constraint + Restringir distancia + + + Not allowed to edit the datum because the sketch contains conflicting constraints + No permite editar los datos de referencia porque el esbozo contiene restricciones conflictivas + + + Dimensional constraint + Dimensional constraint + + + + SketchOrientationDialog + + Choose orientation + Choose orientation + + + Sketch orientation + Sketch orientation + + + XY-Plane + Plano XY + + + XZ-Plane + Plano XZ + + + YZ-Plane + Plano YZ + + + Reverse direction + Reverse direction + + + Offset: + Desplazamiento: + + + + SketcherGui::InsertDatum + + + Insert datum + Insertar datos de referencia + + + datum: + Dato de referencia: + + + + SketcherGui::SketchOrientationDialog + + + Choose orientation + Choose orientation + + + Sketch orientation + Sketch orientation + + + XY-Plane + Plano XY + + + XZ-Plane + Plano XZ + + + YZ-Plane + Plano YZ + + + Reverse direction + Reverse direction + + + Offset: + Desplazamiento: + + + + SketcherGui::TaskSketcherConstrains + + + Form + Formulario + + + Filter: + Filtro: + + + All + Todo + + + Normal + Normal + + + Datums + Datos de referencia + + + Named + Nombrado + + + + Constraints + Restricciones + + + + SketcherGui::TaskSketcherGeneral + + + Form + Formulario + + + Grid size: + Tamaño de cuadrícula: + + + Grid snap + Ajuste a la cuadrícula + + + Unsolved + No resuelto + + + Grid Snap + Ajustar contra cuadrícula + + + 0.1 mm + 0.1 mm + + + 0.2 mm + 0.2 mm + + + 0.5 mm + 0.5 mm + + + 1 mm + 1 mm + + + 2 mm + 2 mm + + + 5 mm + 5 mm + + + 10 mm + 10 mm + + + 20 mm + 20 mm + + + 50 mm + 50 mm + + + 100 mm + 100 mm + + + 200 mm + 200 mm + + + 500 mm + 500 mm + + + 1 m + 1 m + + + 2 m + 2 m + + + 5 m + 5 m + + + 10 m + 10 m + + + 20 m + 20 m + + + Auto constraints + Restricciones automáticas + + + auto constraints + Auto-restricciones + + + + Edit controls + Controles de edición + + + + SketcherGui::TaskSketcherMessages + + + Solver messages + Mensajes del Solver + + + + TaskSketcherConstrains + + Constraints + Restricciones + + + + TaskSketcherCreateCommands + + Appearance + Aspecto + + + + TaskSketcherGeneral + + Edit controls + Controles de edición + + + + TaskSketcherMessages + + + Form + Formulario + + + Undefined degrees of freedom + Indefinidos grados de libertad + + + Not solved yet + No resuelto aún + + + + Workbench + + + Sketcher + Croquizador + + + Sketcher geometries + Geometrías de esbozo + + + Sketcher geoms + Geometría del croquis + + + Sketcher constraints + Restricciones de croquis + + + diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_es.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_es.qm deleted file mode 100644 index 2f767e40b..000000000 Binary files a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_es.qm and /dev/null differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_es.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_es.ts deleted file mode 100644 index 401671b23..000000000 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_es.ts +++ /dev/null @@ -1,1299 +0,0 @@ - - - - - CmdSketcherConstrainAngle - - - Sketcher - Croquizador - - - - Constrain angle - Constrain angle - - - - Fix the angle of a line or the angle between two lines - Fix the angle of a line or the angle between two lines - - - - CmdSketcherConstrainCoincident - - - Sketcher - Croquizador - - - - Constrain coincident - Restringir coincidente - - - - Create a coincident constraint on the selected item - Crear una restricción coincidente en el elemento seleccionado - - - - CmdSketcherConstrainDistance - - - Sketcher - Croquizador - - - - Constrain distance - Restringir la distancia - - - - Fix a length of a line or the distance between a line and a vertex - Fijar una longitud de una línea o la distancia entre una línea y un vértice - - - - CmdSketcherConstrainDistanceX - - - Sketcher - Croquizador - - - - Constrain horizontal distance - Constrain horizontal distance - - - Constrain vertical distance - Constrain vertical distance - - - - Fix the horizontal distance between two points or line ends - Fix the horizontal distance between two points or line ends - - - - CmdSketcherConstrainDistanceY - - - Sketcher - Croquizador - - - - Constrain vertical distance - Constrain vertical distance - - - Constrain horizontal distance - Constrain horizontal distance - - - - Fix the vertical distance between two points or line ends - Fix the vertical distance between two points or line ends - - - - CmdSketcherConstrainEqual - - - Sketcher - Croquizador - - - - Constrain equal - Constrain equal - - - - Create an equality constraint between two lines or between circles and arcs - Create an equality constraint between two lines or between circles and arcs - - - - CmdSketcherConstrainHorizontal - - - Sketcher - Croquizador - - - - Constrain horizontally - Restringir horizontalmente - - - - Create a horizontal constraint on the selected item - Crear una restricción horizontal en el elemento seleccionado - - - - CmdSketcherConstrainLock - - - Sketcher - Croquizador - - - - Constrain lock - Restricción de bloqueo - - - - Create a lock constraint on the selected item - Create a lock constraint on the selected item - - - - CmdSketcherConstrainParallel - - - Sketcher - Croquizador - - - - Constrain parallel - Restringir paralelo - - - - Create a parallel constraint between two lines - Crear una restricción entre dos líneas paralelas - - - - CmdSketcherConstrainPerpendicular - - - Sketcher - Croquizador - - - - Constrain perpendicular - Constrain perpendicular - - - - Create a Perpendicular constraint between two lines - Create a Perpendicular constraint between two lines - - - - CmdSketcherConstrainPointOnObject - - - Sketcher - Croquizador - - - - Constrain point onto object - Constrain point onto object - - - - Fix a point onto an object - Fix a point onto an object - - - - CmdSketcherConstrainRadius - - - Sketcher - Croquizador - - - - Constrain radius - Constrain radius - - - - Fix the radius of a circle or an arc - Fix the radius of a circle or an arc - - - - CmdSketcherConstrainSymmetric - - - Sketcher - Croquizador - - - - Constrain symmetrical - Constrain symmetrical - - - - Create an symmetry constraint between two points with respect to a line - Create an symmetry constraint between two points with respect to a line - - - - CmdSketcherConstrainTangent - - - Sketcher - Croquizador - - - - Constrain tangent - Constrain tangent - - - - Create a tangent constraint between two entities - Create a tangent constraint between two entities - - - - CmdSketcherConstrainVertical - - - Sketcher - Croquizador - - - - Constrain vertically - Restringir verticalmente - - - - Create a vertical constraint on the selected item - Crear una restricción vertical en el elemento seleccionado - - - - CmdSketcherCreateArc - - - Sketcher - Croquizador - - - - Create arc - Crear arco - - - - Create an arc in the sketch - Crea un arco en el croquis - - - - CmdSketcherCreateCircle - - - Sketcher - Croquizador - - - - Create circle - Crear circunferencia - - - - Create a circle in the sketch - Crea una circunferencia en el croquis - - - - CmdSketcherCreateDraftLine - - - Sketcher - Croquizador - - - - Create draft line - Crear línea auxiliar - - - - Create a draft line in the sketch - Crea una línea auxiliar en el croquis - - - - CmdSketcherCreateFillet - - - Sketcher - Croquizador - - - - Create fillet - Create fillet - - - - Create a fillet between two lines or at a coincidental point - - - - Create a fillet between two lines or at a coincident point - Create a fillet between two lines or at a coincident point - - - - CmdSketcherCreateLine - - - Sketcher - Croquizador - - - - Create line - Crear línea - - - - Create a line in the sketch - Crea una línea en el croquis - - - - CmdSketcherCreatePoint - - - Sketcher - Croquizador - - - - Create point - Crear punto - - - - Create a point in the sketch - Crea un punto en el croquis - - - - CmdSketcherCreatePolyline - - - Sketcher - Croquizador - - - - Create polyline - Crear polilínea - - - - Create a polyline in the sketch - Crea una polilínea en el croquis - - - - CmdSketcherCreateRectangle - - - Sketcher - Croquizador - - - - Create rectangle - Crear rectángulo - - - - Create a rectangle in the sketch - Crea un rectángulo en el croquis - - - - CmdSketcherCreateText - - - Sketcher - Croquizador - - - - Create text - Crear texto - - - - Create text in the sketch - Crear texto en el croquis - - - - CmdSketcherExternal - - - Sketcher - Croquizador - - - - External geometry - - - - - Create an edge linked to an external geometry - - - - - CmdSketcherLeaveSketch - - - Sketcher - Croquizador - - - - Leave sketch - Salir del croquis - - - - Close the editing of the sketch - Cierra la edición del croquis - - - - CmdSketcherMapSketch - - - Sketcher - Croquizador - - - - Map sketch to face... - Map sketch to face... - - - - Map a sketch to a face - Map a sketch to a face - - - - CmdSketcherNewSketch - - - Sketcher - Croquizador - - - - Create sketch - Crear croquis - - - - Create a new or edit the selected sketch - Create a new or edit the selected sketch - - - Create a new sketch - Crea un nuevo croquis - - - - CmdSketcherNewSketchSF - - Sketcher - Croquizador - - - Sketchflat sketch - Bosquejo 'sketchflat' - - - Create a new sketchflat sketch by starting externel editor - Crear un bosquejo sketchflat nuevo por medio de editor externo - - - - CmdSketcherToggleConstruction - - - Sketcher - Croquizador - - - - Toggle construction line - Toggle construction line - - - - Toggles the currently selected lines to/from construction mode - Toggles the currently selected lines to/from construction mode - - - - CmdSketcherTrimming - - - Sketcher - Croquizador - - - - Trim edge - Trim edge - - - - Trim an edge with respect to the picked position - - - - Trims an edge with respect to the picked position - Trims an edge with respect to the picked position - - - - CmdSketcherViewSketch - - - Sketcher - Croquizador - - - - View sketch - View sketch - - - - View sketch perpendicular to sketch plane - View sketch perpendicular to sketch plane - - - - Gui::TaskView::TaskSketcherCreateCommands - - - Appearance - Aspecto - - - - QObject - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Wrong selection - Selección incorrecta - - - - Select edge(s) from the sketch. - Select edge(s) from the sketch. - - - - - Select an edge from the sketch. - Seleccione una arista del dibujo. - - - - - Double constraint - Restricción doble - - - - - The selected edge has already a horizontal constraint! - ¡La arista seleccionada ya tiene una restricción horizontal! - - - - - - - - - Impossible constraint - Restricción imposible - - - - Cannot add a constraint between two external geometries! - - - - - - - Only sketch and its support is allowed to select - Only sketch and its support is allowed to select - - - - One of the selected has to be on the sketch - One of the selected has to be on the sketch - - - - - The selected edge is not a line segment - The selected edge is not a line segment - - - - - The selected edge has already a vertical constraint! - El borde seleccionado ya tiene una restricción vertical! - - - - The selected item(s) can't accept a horizontal constraint! - - - - - The selected item(s) can't accept a vertical constraint! - - - - - Select entities from the sketch. - Select entities from the sketch. - - - - - Select exactly one entity from the sketch. - Select exactly one entity from the sketch. - - - - - - - - - Select vertexes from the sketch. - Seleccione vértices del dibujo. - - - - - - Select exactly two vertexes from the sketch. - Seleccione exactamente dos vértices del dibujo. - - - - - Select exactly one line or one point and one line or two points from the sketch. - Select exactly one line or one point and one line or two points from the sketch. - - - - Cannot add a length constraint on an external geometry! - - - - - - Select exactly one point and one object from the sketch. - Select exactly one point and one object from the sketch. - - - - - - - Select exactly one line or up to two points from the sketch. - Select exactly one line or up to two points from the sketch. - - - - Cannot add a horizontal length constraint on an external geometry! - - - - - Cannot add a vertical length constraint on an external geometry! - - - - - Select two or more lines from the sketch. - Select two or more lines from the sketch. - - - - Select at least two lines from the sketch. - Select at least two lines from the sketch. - - - - Select a valid line - Select a valid line - - - - The selected edge is not a valid line - The selected edge is not a valid line - - - - The selected points should be end points of arcs and lines. - - - - - The selected point should be an end point of an arc or line. - - - - - The selected edge should be an arc, line or circle. - - - - - One of the selected edges should be a line. - - - - - - - Select exactly one arc or circle from the sketch. - Select exactly one arc or circle from the sketch. - - - - Select one or two lines from the sketch. - - - - - Cannot add an angle constraint on an external geometry! - - - - - Select exactly one or two lines from the sketch. - Select exactly one or two lines from the sketch. - - - - Select two edges from the sketch. - Select two edges from the sketch. - - - - Select atleast two lines from the sketch. - Select atleast two lines from the sketch. - - - - Select two or more compatible edges - - - - - Sketch axes cannot be used in equality constraints - - - - - - Select two or more edges of similar type - - - - - Cannot add a constraint between external geometries! - - - - Select exactly two same geometries - Select exactly two same geometries - - - Select valid geometries - Select valid geometries - - - Select geometry of similar type - Select geometry of similar type - - - - - - Select two points and one line from the sketch. - Select two points and one line from the sketch. - - - Select exactly one line from the sketch. - Seleccione exactamente una línea del dibujo. - - - Select two lines from the sketch. - Seleccione dos líneas del dibujo. - - - Select exactly two lines from the sketch. - Seleccione exactamente dos líneas del dibujo. - - - - - Select two entities from the sketch. - Select two entities from the sketch. - - - - - - - Select exactly two entities from the sketch. - Select exactly two entities from the sketch. - - - - Edit sketch - Editar boceto - - - - A dialog is already open in the task panel - Un cuadro de diálogo ya está abierto en el panel de tareas - - - - Do you want to close this dialog? - ¿Desea cerrar esta ventana? - - - - Several sub-elements selected - Varios sub-elementos seleccionados - - - - You have to select a single face as support for a sketch! - ¡Tiene que seleccionar una sola cara como soporte para un dibujo! - - - - No support face selected - No se ha seleccionado una cara de apoyo - - - - You have to select a face as support for a sketch! - ¡Tiene que seleccionar una cara como apoyo para un esbozo! - - - - No planar support - No hay soporte plano - - - - You need a planar face as support for a sketch! - ¡Necesita una cara plana como apoyo para un esbozo! - - - - Distance constraint - Distance constraint - - - - Not allowed to edit the datum because the sketch contains conflicting constraints - Not allowed to edit the datum because the sketch contains conflicting constraints - - - - Dimensional constraint - Dimensional constraint - - - - SketchOrientationDialog - - Choose orientation - Choose orientation - - - Sketch orientation - Sketch orientation - - - XY-Plane - Plano XY - - - XZ-Plane - Plano XZ - - - YZ-Plane - Plano YZ - - - Reverse direction - Reverse direction - - - Offset: - Offset: - - - - SketcherGui::InsertDatum - - - Insert datum - Insertar datos de referencia - - - - datum: - Dato de referencia: - - - - SketcherGui::SketchOrientationDialog - - - Choose orientation - Choose orientation - - - - Sketch orientation - Sketch orientation - - - - XY-Plane - Plano XY - - - - XZ-Plane - Plano XZ - - - - YZ-Plane - Plano YZ - - - - Reverse direction - Reverse direction - - - - Offset: - Offset: - - - - SketcherGui::TaskSketcherConstrains - - - Form - Formulario - - - - Filter: - Filtro: - - - - All - Todo - - - - Normal - Normal - - - - Datums - Datos de referencia - - - - Named - Nombrado - - - - Constraints - Restricciones - - - - SketcherGui::TaskSketcherGeneral - - - Form - Formulario - - - - Grid size: - Grid size: - - - - Grid snap - Grid snap - - - Unsolved - No resuelto - - - Grid Snap - Ajustar contra cuadrícula - - - 0.1 mm - 0.1 mm - - - 0.2 mm - 0.2 mm - - - 0.5 mm - 0.5 mm - - - 1 mm - 1 mm - - - 2 mm - 2 mm - - - 5 mm - 5 mm - - - 10 mm - 10 mm - - - 20 mm - 20 mm - - - 50 mm - 50 mm - - - 100 mm - 100 mm - - - 200 mm - 200 mm - - - 500 mm - 500 mm - - - 1 m - 1 m - - - 2 m - 2 m - - - 5 m - 5 m - - - 10 m - 10 m - - - 20 m - 20 m - - - - Auto constraints - Auto constraints - - - auto constraints - Auto-restricciones - - - - Edit controls - Controles de edición - - - - SketcherGui::TaskSketcherMessages - - - Solver messages - Solver messages - - - - TaskSketcherConstrains - - Constraints - Restricciones - - - - TaskSketcherCreateCommands - - Appearance - Aspecto - - - - TaskSketcherGeneral - - Edit controls - Controles de edición - - - - TaskSketcherMessages - - - Form - Formulario - - - - Undefined degrees of freedom - Undefined degrees of freedom - - - - Not solved yet - Not solved yet - - - - Workbench - - - Sketcher - Croquizador - - - - Sketcher geometries - Sketcher geometries - - - Sketcher geoms - Geometría del croquis - - - - Sketcher constraints - Restricciones de croquis - - - diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fi.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fi.qm index d7c347555..9d71ee13b 100644 Binary files a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fi.qm and b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fi.qm differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fi.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fi.ts index 782536929..ee5ef9c92 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fi.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fi.ts @@ -1,1299 +1,1052 @@ - - + + CmdSketcherConstrainAngle - - Sketcher - Lunnostelija + + Sketcher + Lunnostelija - - Constrain angle - Constrain angle + Constrain angle + Rajoita kulma - - Fix the angle of a line or the angle between two lines - Fix the angle of a line or the angle between two lines + Fix the angle of a line or the angle between two lines + Korjaa viivan kulmaa tai kahden viivan välistä kulma - - + + CmdSketcherConstrainCoincident - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Constrain coincident - Samanlaisuus rajoite + Constrain coincident + Samanlaisuus rajoite - - Create a coincident constraint on the selected item - Luo samanlainen rajoite valituille kohteille + Create a coincident constraint on the selected item + Luo samanlainen rajoite valituille kohteille - - + + CmdSketcherConstrainDistance - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Constrain distance - Etäisyys rajoitus + Constrain distance + Etäisyys rajoitus - - Fix a length of a line or the distance between a line and a vertex - Korjaa viivan pituutta tai etäisyyttä viivan ja pisteen välillä + Fix a length of a line or the distance between a line and a vertex + Korjaa viivan pituutta tai etäisyyttä viivan ja pisteen välillä - - + + CmdSketcherConstrainDistanceX - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Constrain horizontal distance - Constrain horizontal distance + Constrain horizontal distance + Vaakasuoran etäisyyden rajoite - Constrain vertical distance - Constrain vertical distance + Constrain vertical distance + Constrain vertical distance - - Fix the horizontal distance between two points or line ends - Fix the horizontal distance between two points or line ends + Fix the horizontal distance between two points or line ends + Korjaa kahden pisteen tai viivanpään vaakasuoraa etäisyyttä - - + + CmdSketcherConstrainDistanceY - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Constrain vertical distance - Constrain vertical distance + Constrain vertical distance + Constrain vertical distance - Constrain horizontal distance - Constrain horizontal distance + Constrain horizontal distance + Vaakasuoran etäisyyden rajoite - - Fix the vertical distance between two points or line ends - Fix the vertical distance between two points or line ends + Fix the vertical distance between two points or line ends + Korjaa kahden pisteen tai viivanpään pystysuoraa etäisyyttä - - + + CmdSketcherConstrainEqual - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Constrain equal - Constrain equal + Constrain equal + Yhtäsuuruus rajoite - - Create an equality constraint between two lines or between circles and arcs - Create an equality constraint between two lines or between circles and arcs + Create an equality constraint between two lines or between circles and arcs + Luo yhtäsuuruus rajoite kahdelle viivalle tai ympyröille ja kaarille - - + + CmdSketcherConstrainHorizontal - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Constrain horizontally - Vaakasuora rajoite + Constrain horizontally + Vaakasuora rajoite - - Create a horizontal constraint on the selected item - Luo vaakasuora rajoite valittujen osien välille + Create a horizontal constraint on the selected item + Luo vaakasuora rajoite valittujen osien välille - - + + CmdSketcherConstrainLock - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Constrain lock - Rajoite lukko + Constrain lock + Rajoite lukko - - Create a lock constraint on the selected item - Create a lock constraint on the selected item + Create a lock constraint on the selected item + Luo lukittu rajoite valituille kohteille - - + + CmdSketcherConstrainParallel - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Constrain parallel - Rajoita yhdensuuntaiseksi + Constrain parallel + Rajoita yhdensuuntaiseksi - - Create a parallel constraint between two lines - Luo rinnakkaisuus rajoite kahden viivan välille + Create a parallel constraint between two lines + Luo rinnakkaisuus rajoite kahden viivan välille - - + + CmdSketcherConstrainPerpendicular - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Constrain perpendicular - Constrain perpendicular + Constrain perpendicular + Rajoita kohtisuorasti - - Create a Perpendicular constraint between two lines - Create a Perpendicular constraint between two lines + Create a Perpendicular constraint between two lines + Luo kohtisuora rajoite kahden viivan välillä - - + + CmdSketcherConstrainPointOnObject - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Constrain point onto object - Constrain point onto object + Constrain point onto object + Rajoita piste objektiin - - Fix a point onto an object - Fix a point onto an object + Fix a point onto an object + Korjaa piste objektin paalle - - + + CmdSketcherConstrainRadius - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Constrain radius - Constrain radius + Constrain radius + Rajoita säde - - Fix the radius of a circle or an arc - Fix the radius of a circle or an arc + Fix the radius of a circle or an arc + Korjaa ympyrän tai kaaren sädettä - - + + CmdSketcherConstrainSymmetric - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Constrain symmetrical - Constrain symmetrical + Constrain symmetrical + Rajoita symmetrisesti - - Create an symmetry constraint between two points with respect to a line - Create an symmetry constraint between two points with respect to a line + Create an symmetry constraint between two points with respect to a line + Luo symmetrisyys rajoite kahdelle pisteelle suhteessa viivaan - - + + CmdSketcherConstrainTangent - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Constrain tangent - Constrain tangent + Constrain tangent + Rajoita tangentti - - Create a tangent constraint between two entities - Create a tangent constraint between two entities + Create a tangent constraint between two entities + Luo tangenttirajoite kahden yksikön välillä - - + + CmdSketcherConstrainVertical - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Constrain vertically - Rajoita pystysuuntaisesti + Constrain vertically + Rajoita pystysuuntaisesti - - Create a vertical constraint on the selected item - Luo pystysuora rajoite valitulle kohteelle + Create a vertical constraint on the selected item + Luo pystysuora rajoite valitulle kohteelle - - + + CmdSketcherCreateArc - - Sketcher - Lunnostelija + + Sketcher + Lunnostelija - - Create arc - Luo kaari + Create arc + Luo kaari - - Create an arc in the sketch - Luo kaaren luonnoksessa + Create an arc in the sketch + Luo kaaren luonnoksessa - - + + CmdSketcherCreateCircle - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Create circle - Luo ympyrä + Create circle + Luo ympyrä - - Create a circle in the sketch - Luo ympyrän luonnoksessa + Create a circle in the sketch + Luo ympyrän luonnoksessa - - + + CmdSketcherCreateDraftLine - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Create draft line - Luo vedosviiva + Create draft line + Luo vedosviiva - - Create a draft line in the sketch - Luo vedosviiva luonnokseen + Create a draft line in the sketch + Luo vedosviiva luonnokseen - - + + CmdSketcherCreateFillet - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Create fillet - Create fillet + Create fillet + Luo pyöristys - - Create a fillet between two lines or at a coincidental point - + Create a fillet between two lines or at a coincidental point + Create a fillet between two lines or at a coincidental point - Create a fillet between two lines or at a coincident point - Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point - - + + CmdSketcherCreateLine - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Create line - Luo viiva + Create line + Luo viiva - - Create a line in the sketch - Luo viivan luonnoksessa + Create a line in the sketch + Luo viivan luonnoksessa - - + + CmdSketcherCreatePoint - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Create point - Luo piste + Create point + Luo piste - - Create a point in the sketch - Luo pisteen luonnoksessa + Create a point in the sketch + Luo pisteen luonnoksessa - - + + CmdSketcherCreatePolyline - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Create polyline - Luo murtoviiva + Create polyline + Luo murtoviiva - - Create a polyline in the sketch - Luo murtoviiva luonnokseen + Create a polyline in the sketch + Luo murtoviiva luonnokseen - - + + CmdSketcherCreateRectangle - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Create rectangle - Luo suorakolmio + Create rectangle + Luo suorakolmio - - Create a rectangle in the sketch - Luo suorakulmion luonnoksessa + Create a rectangle in the sketch + Luo suorakulmion luonnoksessa - - + + CmdSketcherCreateText - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Create text - Luo tekstiä + Create text + Luo tekstiä - - Create text in the sketch - Luo teksti luonnokseen + Create text in the sketch + Luo teksti luonnokseen - - + + CmdSketcherExternal - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - External geometry - + External geometry + External geometry - - Create an edge linked to an external geometry - + Create an edge linked to an external geometry + Create an edge linked to an external geometry - - + + CmdSketcherLeaveSketch - - Sketcher - Lunnostelija + + Sketcher + Lunnostelija - - Leave sketch - Poistu luonnoksesta + Leave sketch + Poistu luonnoksesta - - Close the editing of the sketch - Sulje luonnoksen muokkaus + Close the editing of the sketch + Sulje luonnoksen muokkaus - - + + CmdSketcherMapSketch - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Map sketch to face... - Map sketch to face... + Map sketch to face... + Kartoita sketsi pinnalle... - - Map a sketch to a face - Map a sketch to a face + Map a sketch to a face + Kartoita sketsi pinnalle - - + + CmdSketcherNewSketch - - Sketcher - Lunnostelija + Sketcher + Lunnostelija - - Create sketch - Luo luonnos + Create sketch + Luo luonnos - - Create a new or edit the selected sketch - Create a new or edit the selected sketch + Create a new or edit the selected sketch + Luo uusi tai muokkaa valittua sketsiä - Create a new sketch - Luo uusi luonnos + Create a new sketch + Luo uusi luonnos - - + + CmdSketcherNewSketchSF - Sketcher - Lunnostelija + Sketcher + Lunnostelija - Sketchflat sketch - Sketchflat luonnos + Sketchflat sketch + Sketchflat luonnos - Create a new sketchflat sketch by starting externel editor - Luo uusi sketchflat luonnos käynnistämällä ulkoinen editori + Create a new sketchflat sketch by starting externel editor + Luo uusi sketchflat luonnos käynnistämällä ulkoinen editori - - + + CmdSketcherToggleConstruction - - Sketcher - Lunnostelija + + Sketcher + Lunnostelija - - Toggle construction line - Toggle construction line + Toggle construction line + Kytke rajoiteviiva - - Toggles the currently selected lines to/from construction mode - Toggles the currently selected lines to/from construction mode + Toggles the currently selected lines to/from construction mode + Näyttää tai piilottaa valitut viivat rajoitetilassa - - + + CmdSketcherTrimming - - Sketcher - Lunnostelija + + Sketcher + Lunnostelija - - Trim edge - Trim edge + Trim edge + Trimmaa reuna - - Trim an edge with respect to the picked position - + Trim an edge with respect to the picked position + Trim an edge with respect to the picked position - Trims an edge with respect to the picked position - Trims an edge with respect to the picked position + Trims an edge with respect to the picked position + Trimmaa reuna suhteessa poimittuun sijaintiin - - + + CmdSketcherViewSketch - - Sketcher - Lunnostelija + + Sketcher + Lunnostelija - - View sketch - View sketch + View sketch + Näytä sketsi - - View sketch perpendicular to sketch plane - View sketch perpendicular to sketch plane + View sketch perpendicular to sketch plane + Näytä sketsi kohtisuorassa sketsin tasossa - - + + Gui::TaskView::TaskSketcherCreateCommands - - Appearance - Ulkoasu + + Appearance + Ulkoasu - - + + QObject - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Wrong selection - Väärä valinta + + Wrong selection + Väärä valinta - - Select edge(s) from the sketch. - Select edge(s) from the sketch. + Select edge(s) from the sketch. + Valitse reuna(t) sketsistä. - - - Select an edge from the sketch. - Valitse luonnoksen reuna. + + Select an edge from the sketch. + Valitse luonnoksen reuna. - - - Double constraint - Kaksinkertainen rajoite + Double constraint + Kaksinkertainen rajoite - - - The selected edge has already a horizontal constraint! - Valitulla reunalla on jo vaakasuora rajoitus! + The selected edge has already a horizontal constraint! + Valitulla reunalla on jo vaakasuora rajoitus! - - - - - - - Impossible constraint - Mahdoton rajoite + Impossible constraint + Mahdoton rajoite - - Cannot add a constraint between two external geometries! - + Cannot add a constraint between two external geometries! + Cannot add a constraint between two external geometries! - - - - Only sketch and its support is allowed to select - Only sketch and its support is allowed to select + Only sketch and its support is allowed to select + Vain sketsi ja sen tuki on sallittu valinta - - One of the selected has to be on the sketch - One of the selected has to be on the sketch + One of the selected has to be on the sketch + Yksi valituista on oltava sketsi - - - The selected edge is not a line segment - The selected edge is not a line segment + The selected edge is not a line segment + Valittu reuna ei ole viivasegmentillä - - - The selected edge has already a vertical constraint! - Valitulla reunalla on jo pystysuora rajoite! + The selected edge has already a vertical constraint! + Valitulla reunalla on jo pystysuora rajoite! - - The selected item(s) can't accept a horizontal constraint! - + The selected item(s) can't accept a horizontal constraint! + The selected item(s) can't accept a horizontal constraint! - - The selected item(s) can't accept a vertical constraint! - + The selected item(s) can't accept a vertical constraint! + The selected item(s) can't accept a vertical constraint! - - Select entities from the sketch. - Select entities from the sketch. + Select entities from the sketch. + Valitse yksiköt sketsistä. - - - Select exactly one entity from the sketch. - Select exactly one entity from the sketch. + Select exactly one entity from the sketch. + Valitse täsmälleen yksi yksikkö sketsistä. - - - - - - - Select vertexes from the sketch. - Valitse pisteet luonnoksesta. + Select vertexes from the sketch. + Valitse pisteet luonnoksesta. - - - - Select exactly two vertexes from the sketch. - Valitse kaksi pistettä luonnoksesta. + Select exactly two vertexes from the sketch. + Valitse kaksi pistettä luonnoksesta. - - - Select exactly one line or one point and one line or two points from the sketch. - Select exactly one line or one point and one line or two points from the sketch. + Select exactly one line or one point and one line or two points from the sketch. + Valitse täsmälleen yksi viiva tai yksi piste ja yksi viiva tai kaksi pistettä sketsistä. - - Cannot add a length constraint on an external geometry! - + Cannot add a length constraint on an external geometry! + Cannot add a length constraint on an external geometry! - - - Select exactly one point and one object from the sketch. - Select exactly one point and one object from the sketch. + Select exactly one point and one object from the sketch. + Valitse täsmälleen yksi piste ja yksi objekti sketsistä. - - - - - Select exactly one line or up to two points from the sketch. - Select exactly one line or up to two points from the sketch. + Select exactly one line or up to two points from the sketch. + Valitse täsmälleen yksi viiva tai enintään kaksi pistettä sketsistä. - - Cannot add a horizontal length constraint on an external geometry! - + Cannot add a horizontal length constraint on an external geometry! + Cannot add a horizontal length constraint on an external geometry! - - Cannot add a vertical length constraint on an external geometry! - + Cannot add a vertical length constraint on an external geometry! + Cannot add a vertical length constraint on an external geometry! - - Select two or more lines from the sketch. - Select two or more lines from the sketch. + Select two or more lines from the sketch. + Valitse kaksi tai useampi viiva sketsistä. - - Select at least two lines from the sketch. - Select at least two lines from the sketch. + Select at least two lines from the sketch. + Valitse vähintään kaksi viivaa sketsistä. - - Select a valid line - Select a valid line + Select a valid line + Valitse kelvollinen viiva - - The selected edge is not a valid line - The selected edge is not a valid line + The selected edge is not a valid line + Valittu reuna ei ole kelvollinen viiva - - The selected points should be end points of arcs and lines. - + The selected points should be end points of arcs and lines. + The selected points should be end points of arcs and lines. - - The selected point should be an end point of an arc or line. - + The selected point should be an end point of an arc or line. + The selected point should be an end point of an arc or line. - - The selected edge should be an arc, line or circle. - + The selected edge should be an arc, line or circle. + The selected edge should be an arc, line or circle. - - One of the selected edges should be a line. - + One of the selected edges should be a line. + One of the selected edges should be a line. - - - - Select exactly one arc or circle from the sketch. - Select exactly one arc or circle from the sketch. + Select exactly one arc or circle from the sketch. + Valitse täsmälleen yksi kaari tai ympyrä sketsistä. - - Select one or two lines from the sketch. - + Select one or two lines from the sketch. + Select one or two lines from the sketch. - - Cannot add an angle constraint on an external geometry! - + Cannot add an angle constraint on an external geometry! + Cannot add an angle constraint on an external geometry! - - Select exactly one or two lines from the sketch. - Select exactly one or two lines from the sketch. + Select exactly one or two lines from the sketch. + Valitse sketsistä täsmälleen yksi tai kaksi viivaa. - - Select two edges from the sketch. - Select two edges from the sketch. + Select two edges from the sketch. + Valitse kaksi reunaa sketsistä. - - Select atleast two lines from the sketch. - Select atleast two lines from the sketch. + Select atleast two lines from the sketch. + Valitse vähintään kaksi viivaa sketsistä. - - Select two or more compatible edges - + Select two or more compatible edges + Select two or more compatible edges - - Sketch axes cannot be used in equality constraints - + Sketch axes cannot be used in equality constraints + Sketch axes cannot be used in equality constraints - - - Select two or more edges of similar type - + Select two or more edges of similar type + Select two or more edges of similar type - - Cannot add a constraint between external geometries! - + Cannot add a constraint between external geometries! + Cannot add a constraint between external geometries! - Select exactly two same geometries - Select exactly two same geometries + Select exactly two same geometries + Valitse täsmälleen kaksi samanlaista geometriaa - Select valid geometries - Select valid geometries + Select valid geometries + Valitse kelvollinen geometria - Select geometry of similar type - Select geometry of similar type + Select geometry of similar type + Valitse samantyyppinen geometria - - - - Select two points and one line from the sketch. - Select two points and one line from the sketch. + Select two points and one line from the sketch. + Valitse kaksi pistettä ja yksi viiva sketsistä. - Select exactly one line from the sketch. - Valitse yksi viiva luonnoksesta. + Select exactly one line from the sketch. + Valitse yksi viiva luonnoksesta. - Select two lines from the sketch. - Valitse kaksi viivaa luonnoksesta. + Select two lines from the sketch. + Valitse kaksi viivaa luonnoksesta. - Select exactly two lines from the sketch. - Valitse kaksi viivaa luonnoksesta. + Select exactly two lines from the sketch. + Valitse kaksi viivaa luonnoksesta. - - - Select two entities from the sketch. - Select two entities from the sketch. + Select two entities from the sketch. + Valitse kaksi yksikköä sketsistä. - - - - - Select exactly two entities from the sketch. - Select exactly two entities from the sketch. + Select exactly two entities from the sketch. + Valitse täsmälleen kaksi yksikköä sketsistä. - - Edit sketch - Muokkaa luonnosta + + Edit sketch + Muokkaa luonnosta - - A dialog is already open in the task panel - Dialogi on jo avoinna tehtäväpaneelissa + A dialog is already open in the task panel + Valintaikkuna on jo avoinna tehtäväpaneelissa - - Do you want to close this dialog? - Haluatko sulkea tämän ikkunan? + Do you want to close this dialog? + Haluatko sulkea tämän valintaikkunan? - - Several sub-elements selected - Several sub-elements selected + + Several sub-elements selected + Valittu useita alielementtejä - - You have to select a single face as support for a sketch! - You have to select a single face as support for a sketch! + You have to select a single face as support for a sketch! + Sinun on valittava yksittäinen pinta sketsille! - - No support face selected - No support face selected + No support face selected + Pintaa ei ole valittu - - You have to select a face as support for a sketch! - You have to select a face as support for a sketch! + You have to select a face as support for a sketch! + Sinun on valittava pinta sketsille! - - No planar support - No planar support + No planar support + Ei tukea tasoille - - You need a planar face as support for a sketch! - You need a planar face as support for a sketch! + You need a planar face as support for a sketch! + Tarvitset tasopinnan tuen sketsille! - - Distance constraint - Distance constraint + + Distance constraint + Etäisyys rajoite - - Not allowed to edit the datum because the sketch contains conflicting constraints - Not allowed to edit the datum because the sketch contains conflicting constraints + Not allowed to edit the datum because the sketch contains conflicting constraints + Tietoja ei voi muokata, koska sketsi sisältää ristiriitaisia rajoitteita - - Dimensional constraint - Dimensional constraint + Dimensional constraint + Mittarajoite - - + + SketchOrientationDialog - Choose orientation - Choose orientation + Choose orientation + Valitse suunta - Sketch orientation - Sketch orientation + Sketch orientation + Sketsin suunta - XY-Plane - XY-Plane + XY-Plane + XY-taso - XZ-Plane - XZ-Plane + XZ-Plane + XZ-taso - YZ-Plane - YZ-Plane + YZ-Plane + YZ-taso - Reverse direction - Reverse direction + Reverse direction + Vastakkainen suunta - Offset: - Offset: + Offset: + Siirtymä: - - + + SketcherGui::InsertDatum - - Insert datum - Lisää päiväys + + Insert datum + Lisää päiväys - - datum: - päiväys: + datum: + päiväys: - - + + SketcherGui::SketchOrientationDialog - - Choose orientation - Choose orientation + + Choose orientation + Valitse suunta - - Sketch orientation - Sketch orientation + Sketch orientation + Sketsin suunta - - XY-Plane - XY-Plane + XY-Plane + XY-taso - - XZ-Plane - XZ-Plane + XZ-Plane + XZ-taso - - YZ-Plane - YZ-Plane + YZ-Plane + YZ-taso - - Reverse direction - Reverse direction + Reverse direction + Vastakkainen suunta - - Offset: - Offset: + Offset: + Siirtymä: - - + + SketcherGui::TaskSketcherConstrains - - Form - Lomake + + Form + Lomake - - Filter: - Suodatin: + Filter: + Suodatin: - - All - Kaikki + All + Kaikki - - Normal - Normaali + Normal + Normaali - - Datums - Päiväykset + Datums + Päiväykset - - Named - Nimetty + Named + Nimetty - - Constraints - Rajoitteet + + Constraints + Rajoitteet - - + + SketcherGui::TaskSketcherGeneral - - Form - Lomake + + Form + Lomake - - Grid size: - Grid size: + Grid size: + Ruudukon koko: - - Grid snap - Grid snap + Grid snap + Kohdista ruudukkoon - Unsolved - Ratkaisematta + Unsolved + Ratkaisematta - Grid Snap - Ruudukkoon kohdistus + Grid Snap + Ruudukkoon kohdistus - 0.1 mm - 0.1 mm + 0.1 mm + 0,1 mm - 0.2 mm - 0.2 mm + 0.2 mm + 0.2 mm - 0.5 mm - 0.5 mm + 0.5 mm + 0,5 mm - 1 mm - 1 mm + 1 mm + 1 mm - 2 mm - 2 mm + 2 mm + 2 mm - 5 mm - 5 mm + 5 mm + 5 mm - 10 mm - 10 mm + 10 mm + 10 mm - 20 mm - 20 mm + 20 mm + 20 mm - 50 mm - 50 mm + 50 mm + 50 mm - 100 mm - 100 mm + 100 mm + 100 mm - 200 mm - 200 mm + 200 mm + 200 mm - 500 mm - 500 mm + 500 mm + 500 mm - 1 m - 1 m + 1 m + 1 m - 2 m - 2 m + 2 m + 2 m - 5 m - 5 m + 5 m + 5 m - 10 m - 10 m + 10 m + 10 m - 20 m - 20 m + 20 m + 20 m - - Auto constraints - Auto constraints + Auto constraints + Automaattiset rajoitteet - auto constraints - auto constraints + auto constraints + auto constraints - - Edit controls - Muokkaa säätöjä + + Edit controls + Muokkaa säätöjä - - + + SketcherGui::TaskSketcherMessages - - Solver messages - Solver messages + + Solver messages + Ratkaisimen viestit - - + + TaskSketcherConstrains - Constraints - Rajoitteet + Constraints + Rajoitteet - - + + TaskSketcherCreateCommands - Appearance - Ulkoasu + Appearance + Ulkoasu - - + + TaskSketcherGeneral - Edit controls - Muokkaa säätöjä + Edit controls + Muokkaa säätöjä - - + + TaskSketcherMessages - - Form - Lomake + + Form + Lomake - - Undefined degrees of freedom - Undefined degrees of freedom + Undefined degrees of freedom + Vapausasteet määtittelemättä - - Not solved yet - Not solved yet + Not solved yet + Ei ole vielä ratkaistu - - + + Workbench - - Sketcher - Lunnostelija + + Sketcher + Lunnostelija - - Sketcher geometries - Sketcher geometries + Sketcher geometries + Sketsin geometriat - Sketcher geoms - Luonnostelijan geometriat + Sketcher geoms + Luonnostelijan geometriat - - Sketcher constraints - Sketcher constraints + Sketcher constraints + Sketsin rajoitteet - + diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fr.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fr.qm index 57dc7f5ec..4e88b9699 100644 Binary files a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fr.qm and b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fr.qm differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fr.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fr.ts index 8946bc152..3d592101a 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fr.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fr.ts @@ -1,1299 +1,1052 @@ - - + + CmdSketcherConstrainAngle - - Sketcher - Esquisseur + + Sketcher + Esquisseur - - Constrain angle - Contrainte angulaire + Constrain angle + Contrainte angulaire - - Fix the angle of a line or the angle between two lines - Fixer l'angle d'une ligne ou l'angle entre deux lignes + Fix the angle of a line or the angle between two lines + Fixer l'angle d'une ligne ou l'angle entre deux lignes - - + + CmdSketcherConstrainCoincident - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Constrain coincident - Contrainte coïncidente + Constrain coincident + Contrainte coïncidente - - Create a coincident constraint on the selected item - Créer une contrainte coïncidente sur les éléments sélectionnés + Create a coincident constraint on the selected item + Créer une contrainte coïncidente sur les éléments sélectionnés - - + + CmdSketcherConstrainDistance - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Constrain distance - Contrainte dimensionnelle + Constrain distance + Contrainte dimensionnelle - - Fix a length of a line or the distance between a line and a vertex - Fixer la longueur d'une ligne ou la distance entre une ligne et un point + Fix a length of a line or the distance between a line and a vertex + Fixer la longueur d'une ligne ou la distance entre une ligne et un point - - + + CmdSketcherConstrainDistanceX - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Constrain horizontal distance - Contrainte distance horizontale + Constrain horizontal distance + Contrainte distance horizontale - Constrain vertical distance - Contrainte distance verticale + Constrain vertical distance + Constrain vertical distance - - Fix the horizontal distance between two points or line ends - Fixer la distance horizontale entre deux points ou extrémités de ligne + Fix the horizontal distance between two points or line ends + Fixer la distance horizontale entre deux points ou extrémités de ligne - - + + CmdSketcherConstrainDistanceY - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Constrain vertical distance - Contrainte distance verticale + Constrain vertical distance + Constrain vertical distance - Constrain horizontal distance - Contrainte distance horizontale + Constrain horizontal distance + Contrainte distance horizontale - - Fix the vertical distance between two points or line ends - Fixer la distance verticale entre deux points ou extrémités de ligne + Fix the vertical distance between two points or line ends + Fixer la distance verticale entre deux points ou extrémités de ligne - - + + CmdSketcherConstrainEqual - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Constrain equal - Contrainte d'égalité + Constrain equal + Contrainte d'égalité - - Create an equality constraint between two lines or between circles and arcs - Créer une contrainte d'égalité entre deux lignes ou entre des cercles et/ou des arcs + Create an equality constraint between two lines or between circles and arcs + Créer une contrainte d'égalité entre deux lignes ou entre des cercles et/ou des arcs - - + + CmdSketcherConstrainHorizontal - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Constrain horizontally - Contrainte horizontale + Constrain horizontally + Contrainte horizontale - - Create a horizontal constraint on the selected item - Créer une contrainte horizontale sur l'élément sélectionné + Create a horizontal constraint on the selected item + Créer une contrainte horizontale sur l'élément sélectionné - - + + CmdSketcherConstrainLock - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Constrain lock - Contrainte fixe + Constrain lock + Contrainte fixe - - Create a lock constraint on the selected item - Créer une contrainte fixe sur l'élément sélectionné + Create a lock constraint on the selected item + Créer une contrainte fixe sur l'élément sélectionné - - + + CmdSketcherConstrainParallel - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Constrain parallel - Contrainte parallèle + Constrain parallel + Contrainte parallèle - - Create a parallel constraint between two lines - Créer une contrainte parallèle entre deux lignes + Create a parallel constraint between two lines + Créer une contrainte parallèle entre deux lignes - - + + CmdSketcherConstrainPerpendicular - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Constrain perpendicular - Contrainte perpendiculaire + Constrain perpendicular + Contrainte perpendiculaire - - Create a Perpendicular constraint between two lines - Créer une contrainte perpendiculaire entre deux lignes + Create a Perpendicular constraint between two lines + Créer une contrainte perpendiculaire entre deux lignes - - + + CmdSketcherConstrainPointOnObject - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Constrain point onto object - Contrainte point sur objet + Constrain point onto object + Contrainte point sur objet - - Fix a point onto an object - Fixer un point sur un objet + Fix a point onto an object + Fixer un point sur un objet - - + + CmdSketcherConstrainRadius - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Constrain radius - Contrainte radiale + Constrain radius + Contrainte radiale - - Fix the radius of a circle or an arc - Fixer le rayon d'un cercle ou d'un arc + Fix the radius of a circle or an arc + Fixer le rayon d'un cercle ou d'un arc - - + + CmdSketcherConstrainSymmetric - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Constrain symmetrical - Contrainte symétrique + Constrain symmetrical + Contrainte symétrique - - Create an symmetry constraint between two points with respect to a line - Créer une contrainte symétrique entre deux points par rapport à une ligne + Create an symmetry constraint between two points with respect to a line + Créer une contrainte symétrique entre deux points par rapport à une ligne - - + + CmdSketcherConstrainTangent - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Constrain tangent - Contrainte tangente + Constrain tangent + Contrainte tangente - - Create a tangent constraint between two entities - Créer une contrainte tangente entre deux entités + Create a tangent constraint between two entities + Créer une contrainte tangente entre deux entités - - + + CmdSketcherConstrainVertical - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Constrain vertically - Contrainte verticale + Constrain vertically + Contrainte verticale - - Create a vertical constraint on the selected item - Créer une contrainte verticale sur l'élément sélectionné + Create a vertical constraint on the selected item + Créer une contrainte verticale sur l'élément sélectionné - - + + CmdSketcherCreateArc - - Sketcher - Esquisseur + + Sketcher + Esquisseur - - Create arc - Créer un arc + Create arc + Créer un arc - - Create an arc in the sketch - Créer un arc dans l'esquisse + Create an arc in the sketch + Créer un arc dans l'esquisse - - + + CmdSketcherCreateCircle - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Create circle - Créer un cercle + Create circle + Créer un cercle - - Create a circle in the sketch - Créer un cercle dans l'esquisse + Create a circle in the sketch + Créer un cercle dans l'esquisse - - + + CmdSketcherCreateDraftLine - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Create draft line - Créer une ligne de construction + Create draft line + Créer une ligne de construction - - Create a draft line in the sketch - Créer une ligne de construction dans l'esquisse + Create a draft line in the sketch + Créer une ligne de construction dans l'esquisse - - + + CmdSketcherCreateFillet - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Create fillet - Créer un congé + Create fillet + Créer un congé - - Create a fillet between two lines or at a coincidental point - + Create a fillet between two lines or at a coincidental point + Crée un congé entre deux lignes ou à une intersection. - Create a fillet between two lines or at a coincident point - Créer un congé entre deux lignes ou sur un point coïncident + Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point - - + + CmdSketcherCreateLine - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Create line - Créer une ligne + Create line + Créer une ligne - - Create a line in the sketch - Créer une ligne dans l'esquisse + Create a line in the sketch + Créer une ligne dans l'esquisse - - + + CmdSketcherCreatePoint - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Create point - Créer un point + Create point + Créer un point - - Create a point in the sketch - Créer un point dans l'esquisse + Create a point in the sketch + Créer un point dans l'esquisse - - + + CmdSketcherCreatePolyline - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Create polyline - Créer une polyligne + Create polyline + Créer une polyligne - - Create a polyline in the sketch - Créer une polyligne dans l'esquisse + Create a polyline in the sketch + Créer une polyligne dans l'esquisse - - + + CmdSketcherCreateRectangle - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Create rectangle - Créer un rectangle + Create rectangle + Créer un rectangle - - Create a rectangle in the sketch - Créer un rectangle dans l'esquisse + Create a rectangle in the sketch + Créer un rectangle dans l'esquisse - - + + CmdSketcherCreateText - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Create text - Insérer du texte + Create text + Insérer du texte - - Create text in the sketch - Insérer un texte dans l'esquisse + Create text in the sketch + Insérer un texte dans l'esquisse - - + + CmdSketcherExternal - - Sketcher - Esquisseur + Sketcher + Esquisseur - - External geometry - + External geometry + Géométrie externe - - Create an edge linked to an external geometry - + Create an edge linked to an external geometry + Créer une arête liée à une géométrie externe. - - + + CmdSketcherLeaveSketch - - Sketcher - Esquisseur + + Sketcher + Esquisseur - - Leave sketch - Quitter l'esquisse + Leave sketch + Quitter l'esquisse - - Close the editing of the sketch - Sortir de l'édition de l'esquisse + Close the editing of the sketch + Sortir de l'édition de l'esquisse - - + + CmdSketcherMapSketch - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Map sketch to face... - Appliquer une esquisse sur une face... + Map sketch to face... + Appliquer une esquisse sur une face... - - Map a sketch to a face - Appliquer une esquisse sur une face + Map a sketch to a face + Appliquer une esquisse sur une face - - + + CmdSketcherNewSketch - - Sketcher - Esquisseur + Sketcher + Esquisseur - - Create sketch - Créer une esquisse + Create sketch + Créer une esquisse - - Create a new or edit the selected sketch - Créer une nouvelle esquisse ou modifier l'esquisse sélectionnée + Create a new or edit the selected sketch + Créer une nouvelle esquisse ou modifier l'esquisse sélectionnée - Create a new sketch - Créer une nouvelle esquisse + Create a new sketch + Créer une nouvelle esquisse - - + + CmdSketcherNewSketchSF - Sketcher - Esquisseur + Sketcher + Esquisseur - Sketchflat sketch - Esquisse Sketchflat + Sketchflat sketch + Esquisse Sketchflat - Create a new sketchflat sketch by starting externel editor - Créer une nouvelle esquisse Sketchflat en lançant l'éditeur externe + Create a new sketchflat sketch by starting externel editor + Créer une nouvelle esquisse Sketchflat en lançant l'éditeur externe - - + + CmdSketcherToggleConstruction - - Sketcher - Esquisseur + + Sketcher + Esquisseur - - Toggle construction line - Basculer ligne de construction + Toggle construction line + Basculer ligne de construction - - Toggles the currently selected lines to/from construction mode - Bascule les lignes sélectionnées vers le/du mode de construction + Toggles the currently selected lines to/from construction mode + Bascule les lignes sélectionnées vers le/du mode de construction - - + + CmdSketcherTrimming - - Sketcher - Esquisseur + + Sketcher + Esquisseur - - Trim edge - Ajuster l'arête + Trim edge + Ajuster l'arête - - Trim an edge with respect to the picked position - + Trim an edge with respect to the picked position + Ajuster une arête par rapport à la position sélectionnée. - Trims an edge with respect to the picked position - Ajuste une arête par rapport à la position sélectionnée + Trims an edge with respect to the picked position + Ajuste une arête par rapport à la position sélectionnée - - + + CmdSketcherViewSketch - - Sketcher - Esquisseur + + Sketcher + Esquisseur - - View sketch - Vue de l'esquisse + View sketch + Vue de l'esquisse - - View sketch perpendicular to sketch plane - Vue normale au plan d'esquisse + View sketch perpendicular to sketch plane + Vue normale au plan d'esquisse - - + + Gui::TaskView::TaskSketcherCreateCommands - - Appearance - Apparence + + Appearance + Apparence - - + + QObject - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Wrong selection - Mauvaise sélection + + Wrong selection + Mauvaise sélection - - Select edge(s) from the sketch. - Sélectionnez une ou des arêtes de l'esquisse. + Select edge(s) from the sketch. + Sélectionnez une ou des arêtes de l'esquisse. - - - Select an edge from the sketch. - Sélectionnez une arête de l'esquisse. + + Select an edge from the sketch. + Sélectionnez une arête de l'esquisse. - - - Double constraint - Double contrainte + Double constraint + Double contrainte - - - The selected edge has already a horizontal constraint! - L'arête sélectionnée a déjà une contrainte horizontale ! + The selected edge has already a horizontal constraint! + L'arête sélectionnée a déjà une contrainte horizontale ! - - - - - - - Impossible constraint - Contrainte impossible + Impossible constraint + Contrainte impossible - - Cannot add a constraint between two external geometries! - + Cannot add a constraint between two external geometries! + Impossible d'ajouter une contrainte entre deux géométries externes ! - - - - Only sketch and its support is allowed to select - Seule la sélection d'une esquisse et de sa face de support est permise + Only sketch and its support is allowed to select + Seule la sélection d'une esquisse et de sa face de support est permise - - One of the selected has to be on the sketch - Un des éléments sélectionnés doit être dans l'esquisse + One of the selected has to be on the sketch + Un des éléments sélectionnés doit être dans l'esquisse - - - The selected edge is not a line segment - L'arête sélectionnée n'est pas un segment de ligne + The selected edge is not a line segment + L'arête sélectionnée n'est pas un segment de ligne - - - The selected edge has already a vertical constraint! - L'arête sélectionnée a déjà une contrainte verticale ! + The selected edge has already a vertical constraint! + L'arête sélectionnée a déjà une contrainte verticale ! - - The selected item(s) can't accept a horizontal constraint! - + The selected item(s) can't accept a horizontal constraint! + Le(s) élément(s) sélectionné(s) ne peu(ven)t pas accepter de contrainte horizontale! - - The selected item(s) can't accept a vertical constraint! - + The selected item(s) can't accept a vertical constraint! + Le(s) élément(s) sélectionné(s) ne peu(ven)t pas accepter de contrainte verticale! - - Select entities from the sketch. - Sélectionnez des entités de l'esquisse. + Select entities from the sketch. + Sélectionnez des entités de l'esquisse. - - - Select exactly one entity from the sketch. - Sélectionnez seulement une entité de l'esquisse. + Select exactly one entity from the sketch. + Sélectionnez seulement une entité de l'esquisse. - - - - - - - Select vertexes from the sketch. - Sélectionnez les sommets de l'esquisse. + Select vertexes from the sketch. + Sélectionnez les sommets de l'esquisse. - - - - Select exactly two vertexes from the sketch. - Sélectionnez exactement deux sommets de l'esquisse. + Select exactly two vertexes from the sketch. + Sélectionnez exactement deux sommets de l'esquisse. - - - Select exactly one line or one point and one line or two points from the sketch. - Sélectionnez soit une seule ligne, ou un point et une ligne, ou deux points de l'esquisse. + Select exactly one line or one point and one line or two points from the sketch. + Sélectionnez soit une seule ligne, ou un point et une ligne, ou deux points de l'esquisse. - - Cannot add a length constraint on an external geometry! - + Cannot add a length constraint on an external geometry! + Impossible d'ajouter une contrainte de longueur sur une géométrie externe! - - - Select exactly one point and one object from the sketch. - Sélectionnez exactement un point et un objet de l'esquisse. + Select exactly one point and one object from the sketch. + Sélectionnez exactement un point et un objet de l'esquisse. - - - - - Select exactly one line or up to two points from the sketch. - Sélectionnez soit une seule ligne ou jusqu'à deux points de l'esquisse. + Select exactly one line or up to two points from the sketch. + Sélectionnez soit une seule ligne ou jusqu'à deux points de l'esquisse. - - Cannot add a horizontal length constraint on an external geometry! - + Cannot add a horizontal length constraint on an external geometry! + Impossible d'ajouter une contrainte de longueur horizontale sur une géométrie externe! - - Cannot add a vertical length constraint on an external geometry! - + Cannot add a vertical length constraint on an external geometry! + Impossible d'ajouter une contrainte de longueur verticale sur une géométrie externe! - - Select two or more lines from the sketch. - Sélectionnez au moins deux lignes de l'esquisse. + Select two or more lines from the sketch. + Sélectionnez au moins deux lignes de l'esquisse. - - Select at least two lines from the sketch. - Sélectionner au moins deux lignes de l'esquisse. + Select at least two lines from the sketch. + Sélectionner au moins deux lignes de l'esquisse. - - Select a valid line - Sélectionnez une ligne valide + Select a valid line + Sélectionnez une ligne valide - - The selected edge is not a valid line - L'arête sélectionnée n'est pas une ligne valide + The selected edge is not a valid line + L'arête sélectionnée n'est pas une ligne valide - - The selected points should be end points of arcs and lines. - + The selected points should be end points of arcs and lines. + Les points sélectionnés doivent être des extrémités d'arcs et de lignes. - - The selected point should be an end point of an arc or line. - + The selected point should be an end point of an arc or line. + Le point sélectionné doit être une extrémité d'arc ou de ligne. - - The selected edge should be an arc, line or circle. - + The selected edge should be an arc, line or circle. + L'arête sélectionnée doit être un arc, une ligne ou un cercle. - - One of the selected edges should be a line. - + One of the selected edges should be a line. + Une des arêtes sélectionnées doit être une ligne. - - - - Select exactly one arc or circle from the sketch. - Sélectionnez soit un arc ou un cercle de l'esquisse. + Select exactly one arc or circle from the sketch. + Sélectionnez soit un arc ou un cercle de l'esquisse. - - Select one or two lines from the sketch. - + Select one or two lines from the sketch. + Sélectionnez une ou deux lignes de l'esquisse. - - Cannot add an angle constraint on an external geometry! - + Cannot add an angle constraint on an external geometry! + Impossible d'ajouter de contrainte angulaire sur une géométrie externe! - - Select exactly one or two lines from the sketch. - Sélectionnez soit une ou deux lignes de l'esquisse. + Select exactly one or two lines from the sketch. + Sélectionnez soit une ou deux lignes de l'esquisse. - - Select two edges from the sketch. - Sélectionnez deux arêtes de l'esquisse. + Select two edges from the sketch. + Sélectionnez deux arêtes de l'esquisse. - - Select atleast two lines from the sketch. - Sélectionner au moins deux lignes de l'esquisse. + Select atleast two lines from the sketch. + Sélectionner au moins deux lignes de l'esquisse. - - Select two or more compatible edges - + Select two or more compatible edges + Sélectionnez deux arêtes compatibles ou plus. - - Sketch axes cannot be used in equality constraints - + Sketch axes cannot be used in equality constraints + Les axes d'esquisse ne peuvent être utilisés dans une contrainte d'égalité. - - - Select two or more edges of similar type - + Select two or more edges of similar type + Sélectionnez deux arêtes de même type ou plus. - - Cannot add a constraint between external geometries! - + Cannot add a constraint between external geometries! + Impossible d'ajouter de contrainte entre des géométries externes! - Select exactly two same geometries - Sélectionnez exactement deux géométries semblables + Select exactly two same geometries + Sélectionnez exactement deux géométries semblables - Select valid geometries - Sélectionnez des géométries valides + Select valid geometries + Sélectionnez des géométries valides - Select geometry of similar type - Sélectionnez une géométrie similaire + Select geometry of similar type + Sélectionnez une géométrie similaire - - - - Select two points and one line from the sketch. - Sélectionnez deux points et une ligne de l'esquisse. + Select two points and one line from the sketch. + Sélectionnez deux points et une ligne de l'esquisse. - Select exactly one line from the sketch. - Sélectionnez seulement une ligne dans l'esquisse. + Select exactly one line from the sketch. + Sélectionnez seulement une ligne dans l'esquisse. - Select two lines from the sketch. - Sélectionnez deux lignes dans l'esquisse. + Select two lines from the sketch. + Sélectionnez deux lignes dans l'esquisse. - Select exactly two lines from the sketch. - Sélectionnez exactement deux lignes dans l'esquisse. + Select exactly two lines from the sketch. + Sélectionnez exactement deux lignes dans l'esquisse. - - - Select two entities from the sketch. - Sélectionnez deux entités de l'esquisse. + Select two entities from the sketch. + Sélectionnez deux entités de l'esquisse. - - - - - Select exactly two entities from the sketch. - Sélectionnez exactement deux entités de l'esquisse. + Select exactly two entities from the sketch. + Sélectionnez exactement deux entités de l'esquisse. - - Edit sketch - Modifier l'esquisse + + Edit sketch + Modifier l'esquisse - - A dialog is already open in the task panel - Une boîte de dialogue est déjà ouverte dans le panneau des tâches + A dialog is already open in the task panel + Une boîte de dialogue est déjà ouverte dans le panneau des tâches - - Do you want to close this dialog? - Voulez-vous fermer cette boîte de dialogue ? + Do you want to close this dialog? + Voulez-vous fermer cette boîte de dialogue? - - Several sub-elements selected - Plusieurs sous-éléments sélectionnés + + Several sub-elements selected + Plusieurs sous-éléments sélectionnés - - You have to select a single face as support for a sketch! - Vous devez sélectionner une seule face comme support pour une esquisse ! + You have to select a single face as support for a sketch! + Vous devez sélectionner une seule face comme support pour une esquisse ! - - No support face selected - Aucune face de support sélectionnée + No support face selected + Aucune face de support sélectionnée - - You have to select a face as support for a sketch! - Vous devez sélectionner un plan ou une face plane comme support de l'esquisse ! + You have to select a face as support for a sketch! + Vous devez sélectionner un plan ou une face plane comme support de l'esquisse ! - - No planar support - Aucun plan de support + No planar support + Aucun plan de support - - You need a planar face as support for a sketch! - Vous avez besoin d'un plan ou d'une face plane comme support de l'esquisse ! + You need a planar face as support for a sketch! + Vous avez besoin d'un plan ou d'une face plane comme support de l'esquisse ! - - Distance constraint - Contrainte de distance + + Distance constraint + Contrainte de distance - - Not allowed to edit the datum because the sketch contains conflicting constraints - L'édition de cette valeur n'est pas autorisée car l'esquisse contient des contraintes conflictuelles + Not allowed to edit the datum because the sketch contains conflicting constraints + L'édition de cette valeur n'est pas autorisée car l'esquisse contient des contraintes conflictuelles - - Dimensional constraint - Contrainte de dimension + Dimensional constraint + Contrainte dimensionnelle - - + + SketchOrientationDialog - Choose orientation - Sélectionner l'orientation + Choose orientation + Sélectionner l'orientation - Sketch orientation - Orientation de l'esquisse + Sketch orientation + Orientation de l'esquisse - XY-Plane - Plan XY + XY-Plane + Plan XY - XZ-Plane - Plan XZ + XZ-Plane + Plan XZ - YZ-Plane - Plan YZ + YZ-Plane + Plan YZ - Reverse direction - Inverser la direction + Reverse direction + Inverser la direction - Offset: - Décalage : + Offset: + Décalage : - - + + SketcherGui::InsertDatum - - Insert datum - Insérer référence + + Insert datum + Insérer référence - - datum: - Référence : + datum: + Référence : - - + + SketcherGui::SketchOrientationDialog - - Choose orientation - Sélectionner l'orientation + + Choose orientation + Sélectionner l'orientation - - Sketch orientation - Orientation de l'esquisse + Sketch orientation + Orientation de l'esquisse - - XY-Plane - Plan XY + XY-Plane + Plan XY - - XZ-Plane - Plan XZ + XZ-Plane + Plan XZ - - YZ-Plane - Plan YZ + YZ-Plane + Plan YZ - - Reverse direction - Inverser la direction + Reverse direction + Inverser la direction - - Offset: - Décalage : + Offset: + Décalage : - - + + SketcherGui::TaskSketcherConstrains - - Form - Formulaire + + Form + Forme - - Filter: - Filtre : + Filter: + Filtre : - - All - Tous + All + Tous - - Normal - Normal + Normal + Normal - - Datums - Références + Datums + Références - - Named - Nommé + Named + Nommé - - Constraints - Contraintes + + Constraints + Contraintes - - + + SketcherGui::TaskSketcherGeneral - - Form - Formulaire + + Form + Forme - - Grid size: - Taille de la grille: + Grid size: + Taille de la grille : - - Grid snap - Ancrage à la grille + Grid snap + Ancrage à la grille - Unsolved - Non résolu + Unsolved + Non résolu - Grid Snap - Alignement de grille + Grid Snap + Alignement de grille - 0.1 mm - 0,1 mm + 0.1 mm + 0,1 mm - 0.2 mm - 0,2 mm + 0.2 mm + 0,2 mm - 0.5 mm - 0,5 mm + 0.5 mm + 0,5 mm - 1 mm - 1 mm + 1 mm + 1 mm - 2 mm - 2 mm + 2 mm + 2 mm - 5 mm - 5 mm + 5 mm + 5 mm - 10 mm - 10 mm + 10 mm + 10 mm - 20 mm - 20 mm + 20 mm + 20 mm - 50 mm - 50 mm + 50 mm + 50 mm - 100 mm - 100 mm + 100 mm + 100 mm - 200 mm - 200 mm + 200 mm + 200 mm - 500 mm - 500 mm + 500 mm + 500 mm - 1 m - 1 m + 1 m + 1 m - 2 m - 2 m + 2 m + 2 m - 5 m - 5 m + 5 m + 5 m - 10 m - 10 m + 10 m + 10 m - 20 m - 20 m + 20 m + 20 m - - Auto constraints - Contraintes auto + Auto constraints + Contraintes auto - auto constraints - contraintes automatiques + auto constraints + contraintes automatiques - - Edit controls - Modifier les contrôles + + Edit controls + Modifier les contrôles - - + + SketcherGui::TaskSketcherMessages - - Solver messages - Messages du solveur + + Solver messages + Messages du solveur - - + + TaskSketcherConstrains - Constraints - Contraintes + Constraints + Contraintes - - + + TaskSketcherCreateCommands - Appearance - Apparence + Appearance + Apparence - - + + TaskSketcherGeneral - Edit controls - Modifier les contrôles + Edit controls + Modifier les contrôles - - + + TaskSketcherMessages - - Form - Formulaire + + Form + Forme - - Undefined degrees of freedom - Degrés de liberté non définis + Undefined degrees of freedom + Degrés de liberté non définis - - Not solved yet - Pas encore résolu + Not solved yet + Pas encore résolu - - + + Workbench - - Sketcher - Esquisseur + + Sketcher + Esquisseur - - Sketcher geometries - Géométries d'esquisse + Sketcher geometries + Géométries d'esquisse - Sketcher geoms - Géométries + Sketcher geoms + Géométries - - Sketcher constraints - Contraintes d'esquisse + Sketcher constraints + Contraintes d'esquisse - + diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hr.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hr.qm index 948b43d07..3e2a83584 100644 Binary files a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hr.qm and b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hr.qm differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hr.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hr.ts index 207c55932..0e6fc9555 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hr.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hr.ts @@ -1,1299 +1,1052 @@ - - + + CmdSketcherConstrainAngle - - Sketcher - Skica + + Sketcher + Skica - - Constrain angle - Ograniči kut + Constrain angle + Ograniči kut - - Fix the angle of a line or the angle between two lines - Fiksiraj kut linije ili kut između dvije linije + Fix the angle of a line or the angle between two lines + Fiksiraj kut linije ili kut između dvije linije - - + + CmdSketcherConstrainCoincident - - Sketcher - Skica + Sketcher + Skica - - Constrain coincident - Ograničiti zajedničko + Constrain coincident + Ograničiti zajedničko - - Create a coincident constraint on the selected item - Napravi zajedničko ograničenje na odabranim jedinicama + Create a coincident constraint on the selected item + Napravi zajedničko ograničenje na odabranim jedinicama - - + + CmdSketcherConstrainDistance - - Sketcher - Skica + Sketcher + Skica - - Constrain distance - Ograniči udaljenost + Constrain distance + Ograniči udaljenost - - Fix a length of a line or the distance between a line and a vertex - Ograniči duljinu linije ili udaljenost između linije i vrha + Fix a length of a line or the distance between a line and a vertex + Ograniči duljinu linije ili udaljenost između linije i vrha - - + + CmdSketcherConstrainDistanceX - - Sketcher - Skica + Sketcher + Skica - - Constrain horizontal distance - Ograniči horizontalnu udaljenost + Constrain horizontal distance + Ograniči horizontalnu udaljenost - Constrain vertical distance - Ograniči vertikalnu udaljenost + Constrain vertical distance + Constrain vertical distance - - Fix the horizontal distance between two points or line ends - Ograniči horizontalnu udaljenost između dvije točke ili krajeva linije + Fix the horizontal distance between two points or line ends + Ograniči horizontalnu udaljenost između dvije točke ili krajeva linije - - + + CmdSketcherConstrainDistanceY - - Sketcher - Skica + Sketcher + Skica - - Constrain vertical distance - Ograniči vertikalnu udaljenost + Constrain vertical distance + Constrain vertical distance - Constrain horizontal distance - Ograniči horizontalnu udaljenost + Constrain horizontal distance + Ograniči horizontalnu udaljenost - - Fix the vertical distance between two points or line ends - Ograniči vertikalnu udaljenost između dvije točke ili krajeva linije + Fix the vertical distance between two points or line ends + Ograniči vertikalnu udaljenost između dvije točke ili krajeva linije - - + + CmdSketcherConstrainEqual - - Sketcher - Skica + Sketcher + Skica - - Constrain equal - Ograniči jednaku duljinu + Constrain equal + Ograniči jednaku duljinu - - Create an equality constraint between two lines or between circles and arcs - Napravite ograničenje jednakosti između dvije linije ili između kružnica i lukova + Create an equality constraint between two lines or between circles and arcs + Napravite ograničenje jednakosti između dvije linije ili između kružnica i lukova - - + + CmdSketcherConstrainHorizontal - - Sketcher - Skica + Sketcher + Skica - - Constrain horizontally - Ograniči vodoravno + Constrain horizontally + Ograniči vodoravno - - Create a horizontal constraint on the selected item - Napravi vodoravno ograničenje na odabranoj jedinici + Create a horizontal constraint on the selected item + Napravi vodoravno ograničenje na odabranoj jedinici - - + + CmdSketcherConstrainLock - - Sketcher - Skica + Sketcher + Skica - - Constrain lock - Ograniči pomicanje + Constrain lock + Ograniči pomicanje - - Create a lock constraint on the selected item - Napravi ograničenje fiksiranja na odabranim stavkama + Create a lock constraint on the selected item + Napravi ograničenje fiksiranja na odabranim stavkama - - + + CmdSketcherConstrainParallel - - Sketcher - Skica + Sketcher + Skica - - Constrain parallel - Ograniči paralelno + Constrain parallel + Ograniči paralelno - - Create a parallel constraint between two lines - Napravi paralelno ograničenje između dvije linije + Create a parallel constraint between two lines + Napravi paralelno ograničenje između dvije linije - - + + CmdSketcherConstrainPerpendicular - - Sketcher - Skica + Sketcher + Skica - - Constrain perpendicular - Ograniči okomito + Constrain perpendicular + Ograniči okomito - - Create a Perpendicular constraint between two lines - Napravi okomito ograničenje između dvije linije + Create a Perpendicular constraint between two lines + Napravi okomito ograničenje između dvije linije - - + + CmdSketcherConstrainPointOnObject - - Sketcher - Skica + Sketcher + Skica - - Constrain point onto object - Ograniči točku na objekt + Constrain point onto object + Ograniči točku na objekt - - Fix a point onto an object - Fiksiraj točku na objekt + Fix a point onto an object + Fiksiraj točku na objekt - - + + CmdSketcherConstrainRadius - - Sketcher - Skica + Sketcher + Skica - - Constrain radius - Ograniči radijus + Constrain radius + Ograniči radijus - - Fix the radius of a circle or an arc - Fiksiraj radijus kruga ili luka + Fix the radius of a circle or an arc + Fiksiraj radijus kruga ili luka - - + + CmdSketcherConstrainSymmetric - - Sketcher - Skica + Sketcher + Skica - - Constrain symmetrical - Ograniči simetrijski + Constrain symmetrical + Ograniči simetrijski - - Create an symmetry constraint between two points with respect to a line - Napravite simetrijsko ograničenje između dvije točke u odnosu na liniju + Create an symmetry constraint between two points with respect to a line + Napravite simetrijsko ograničenje između dvije točke u odnosu na liniju - - + + CmdSketcherConstrainTangent - - Sketcher - Skica + Sketcher + Skica - - Constrain tangent - Ograniči tangentno + Constrain tangent + Ograniči tangentno - - Create a tangent constraint between two entities - Napravi tangentno ograničenje između dva entiteta + Create a tangent constraint between two entities + Napravi tangentno ograničenje između dva entiteta - - + + CmdSketcherConstrainVertical - - Sketcher - Skica + Sketcher + Skica - - Constrain vertically - Ograniči okomito + Constrain vertically + Ograniči okomito - - Create a vertical constraint on the selected item - Napravi okomito ograničenje na odabranoj jedinici + Create a vertical constraint on the selected item + Napravi okomito ograničenje na odabranoj jedinici - - + + CmdSketcherCreateArc - - Sketcher - Skica + + Sketcher + Skica - - Create arc - Napravi luk + Create arc + Napravi luk - - Create an arc in the sketch - Napravite luk u skici + Create an arc in the sketch + Napravite luk u skici - - + + CmdSketcherCreateCircle - - Sketcher - Skica + Sketcher + Skica - - Create circle - Napravi krug + Create circle + Napravi krug - - Create a circle in the sketch - Napravi krug u skici + Create a circle in the sketch + Napravi krug u skici - - + + CmdSketcherCreateDraftLine - - Sketcher - Skica + Sketcher + Skica - - Create draft line - Napravi liniju + Create draft line + Napravi liniju - - Create a draft line in the sketch - Napravi liniju u skici + Create a draft line in the sketch + Napravi liniju u skici - - + + CmdSketcherCreateFillet - - Sketcher - Skica + Sketcher + Skica - - Create fillet - Napravi obrub + Create fillet + Napravi obrub - - Create a fillet between two lines or at a coincidental point - + Create a fillet between two lines or at a coincidental point + Napravi zaobljenje između dvije linija ili u podudarnoj točki - Create a fillet between two lines or at a coincident point - Napravi obrub između linija ili u podudarnoj točki + Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point - - + + CmdSketcherCreateLine - - Sketcher - Skica + Sketcher + Skica - - Create line - Napravi liniju + Create line + Napravi liniju - - Create a line in the sketch - Napravi liniju u skici + Create a line in the sketch + Napravi liniju u skici - - + + CmdSketcherCreatePoint - - Sketcher - Skica + Sketcher + Skica - - Create point - Napravi točku + Create point + Napravi točku - - Create a point in the sketch - Napravi točku u skici + Create a point in the sketch + Napravi točku u skici - - + + CmdSketcherCreatePolyline - - Sketcher - Skica + Sketcher + Skica - - Create polyline - Napravi poliliniju + Create polyline + Napravi poliliniju - - Create a polyline in the sketch - Napravite poliliniju u skici + Create a polyline in the sketch + Napravite poliliniju u skici - - + + CmdSketcherCreateRectangle - - Sketcher - Skica + Sketcher + Skica - - Create rectangle - Napravi pravokutnik + Create rectangle + Napravi pravokutnik - - Create a rectangle in the sketch - Napravi pravokutnik u skici + Create a rectangle in the sketch + Napravi pravokutnik u skici - - + + CmdSketcherCreateText - - Sketcher - Skica + Sketcher + Skica - - Create text - Napravi tekst + Create text + Napravi tekst - - Create text in the sketch - Napravi tekst u skici + Create text in the sketch + Napravi tekst u skici - - + + CmdSketcherExternal - - Sketcher - Skica + Sketcher + Skica - - External geometry - + External geometry + Vanjska geometrija - - Create an edge linked to an external geometry - + Create an edge linked to an external geometry + Kreiraj rub povezan sa vanjskom geometrijom - - + + CmdSketcherLeaveSketch - - Sketcher - Skica + + Sketcher + Skica - - Leave sketch - Zatvori skicu + Leave sketch + Zatvori skicu - - Close the editing of the sketch - Zatvori uređivanje skice + Close the editing of the sketch + Zatvori uređivanje skice - - + + CmdSketcherMapSketch - - Sketcher - Skica + Sketcher + Skica - - Map sketch to face... - Povezuje skicu sa površinom ... + Map sketch to face... + Povezuje skicu sa površinom ... - - Map a sketch to a face - Mapiraj skicu na površinu + Map a sketch to a face + Mapiraj skicu na površinu - - + + CmdSketcherNewSketch - - Sketcher - Skica + Sketcher + Skica - - Create sketch - Napravite skicu + Create sketch + Napravite skicu - - Create a new or edit the selected sketch - Create a new or edit the selected sketch + Create a new or edit the selected sketch + Stvaranje novog ili izmjenu odabrane skice - Create a new sketch - Napravi novu skicu + Create a new sketch + Napravi novu skicu - - + + CmdSketcherNewSketchSF - Sketcher - Skica + Sketcher + Skica - Sketchflat sketch - Sketchflat skica + Sketchflat sketch + Sketchflat skica - Create a new sketchflat sketch by starting externel editor - Napravi novu sketchflat skicu pokretanjem vanjskog urednika + Create a new sketchflat sketch by starting externel editor + Napravi novu sketchflat skicu pokretanjem vanjskog urednika - - + + CmdSketcherToggleConstruction - - Sketcher - Skica + + Sketcher + Skica - - Toggle construction line - Prebaci liniju u konstrukciju + Toggle construction line + Prebaci liniju u konstrukciju - - Toggles the currently selected lines to/from construction mode - Prebacuje trenutno odabrane linije u/iz konstrukcijske linije + Toggles the currently selected lines to/from construction mode + Prebacuje trenutno odabrane linije u/iz konstrukcijske linije - - + + CmdSketcherTrimming - - Sketcher - Skica + + Sketcher + Skica - - Trim edge - Skrati rub + Trim edge + Skrati rub - - Trim an edge with respect to the picked position - + Trim an edge with respect to the picked position + Odreži dio ruba s obzirom na odabranu poziciju - Trims an edge with respect to the picked position - Presjeca rub s obzirom na odabranu poziciju + Trims an edge with respect to the picked position + Presjeca rub s obzirom na odabranu poziciju - - + + CmdSketcherViewSketch - - Sketcher - Skica + + Sketcher + Skica - - View sketch - Pregledaj skicu + View sketch + Pregledaj skicu - - View sketch perpendicular to sketch plane - Vidi skicu okomitu na ravninu skice + View sketch perpendicular to sketch plane + Vidi skicu okomitu na ravninu skice - - + + Gui::TaskView::TaskSketcherCreateCommands - - Appearance - Izgled + + Appearance + Izgled - - + + QObject - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Wrong selection - Pogrešan odabir + + Wrong selection + Pogrešan odabir - - Select edge(s) from the sketch. - Odaberite rub(ove) iz skice. + Select edge(s) from the sketch. + Odaberite rub(ove) iz skice. - - - Select an edge from the sketch. - Odaberite rub skice. + + Select an edge from the sketch. + Odaberite rub skice. - - - Double constraint - Ograničenje dvaput + Double constraint + Ograničenje dvaput - - - The selected edge has already a horizontal constraint! - Odabrani rub već ima vodoravno ograničenje! + The selected edge has already a horizontal constraint! + Odabrani rub već ima vodoravno ograničenje! - - - - - - - Impossible constraint - Nemoguće ograničenje + Impossible constraint + Nemoguće ograničenje - - Cannot add a constraint between two external geometries! - + Cannot add a constraint between two external geometries! + Nemoguće dodavanje ograničenja među vanjskim geometrijama! - - - - Only sketch and its support is allowed to select - Dopušteno je odabrati samo skicu i njenu podršku + Only sketch and its support is allowed to select + Dopušteno je odabrati samo skicu i njenu podršku - - One of the selected has to be on the sketch - Jedan od odabranih mora biti na skici + One of the selected has to be on the sketch + Jedan od odabranih mora biti na skici - - - The selected edge is not a line segment - Odabrani rub nije linija + The selected edge is not a line segment + Odabrani rub nije linija - - - The selected edge has already a vertical constraint! - Odabrani rub već ima okomito ograničenje! + The selected edge has already a vertical constraint! + Odabrani rub već ima okomito ograničenje! - - The selected item(s) can't accept a horizontal constraint! - + The selected item(s) can't accept a horizontal constraint! + Odabrani objekt(i) ne mogu prihvatiti horizontalno ograničenje! - - The selected item(s) can't accept a vertical constraint! - + The selected item(s) can't accept a vertical constraint! + Odabrani objekt(i) ne mogu prihvatiti vertikalno ograničenje! - - Select entities from the sketch. - Odaberite entitet iz skice. + Select entities from the sketch. + Odaberite entitet iz skice. - - - Select exactly one entity from the sketch. - Odaberite točno jedan entitet iz skice. + Select exactly one entity from the sketch. + Odaberite točno jedan entitet iz skice. - - - - - - - Select vertexes from the sketch. - Odaberite vrhove sa skice. + Select vertexes from the sketch. + Odaberite vrhove sa skice. - - - - Select exactly two vertexes from the sketch. - Odaberite točno dva vrha iz skice. + Select exactly two vertexes from the sketch. + Odaberite točno dva vrha iz skice. - - - Select exactly one line or one point and one line or two points from the sketch. - Odaberite točno jednu liniju ili jednu točku i jednu liniju ili dvije točke iz skice. + Select exactly one line or one point and one line or two points from the sketch. + Odaberite točno jednu liniju ili jednu točku i jednu liniju ili dvije točke iz skice. - - Cannot add a length constraint on an external geometry! - + Cannot add a length constraint on an external geometry! + Nemoguće dodavanje ograničenja duljine na vanjsku geometriju! - - - Select exactly one point and one object from the sketch. - Odaberite točno jednu točku i jedan objekt iz skice. + Select exactly one point and one object from the sketch. + Odaberite točno jednu točku i jedan objekt iz skice. - - - - - Select exactly one line or up to two points from the sketch. - Odaberite točno jednu liniju ili do dvije točke iz skice. + Select exactly one line or up to two points from the sketch. + Odaberite točno jednu liniju ili do dvije točke iz skice. - - Cannot add a horizontal length constraint on an external geometry! - + Cannot add a horizontal length constraint on an external geometry! + Nemoguće dodavanje vodoravnog ograničenja na vanjsku geometriju! - - Cannot add a vertical length constraint on an external geometry! - + Cannot add a vertical length constraint on an external geometry! + Nemoguće dodavanje ograničenja duljine na vanjsku geometriju! - - Select two or more lines from the sketch. - Odaberite dvije ili više linija iz skice. + Select two or more lines from the sketch. + Odaberite dvije ili više linija iz skice. - - Select at least two lines from the sketch. - Odaberite barem dvije linije iz skice. + Select at least two lines from the sketch. + Odaberite barem dvije linije iz skice. - - Select a valid line - Odaberite valjanu liniju + Select a valid line + Odaberite valjanu liniju - - The selected edge is not a valid line - Odabrani rub nije valjana linija + The selected edge is not a valid line + Odabrani rub nije valjana linija - - The selected points should be end points of arcs and lines. - + The selected points should be end points of arcs and lines. + Odabrane točke bi trebale biti vrhovi lukova i/ili linija. - - The selected point should be an end point of an arc or line. - + The selected point should be an end point of an arc or line. + Odabrana točka bi trebala biti vrh luka ili linije. - - The selected edge should be an arc, line or circle. - + The selected edge should be an arc, line or circle. + Odabrani rub bi trebao biti luk, linija ili kružnica. - - One of the selected edges should be a line. - + One of the selected edges should be a line. + Jedan od doabranih rubova bi trebala biti linija. - - - - Select exactly one arc or circle from the sketch. - Odaberite točno jedan luk ili krug iz skica. + Select exactly one arc or circle from the sketch. + Odaberite točno jedan luk ili krug iz skica. - - Select one or two lines from the sketch. - + Select one or two lines from the sketch. + Odeaberite jednu ili dvije linije iz skice. - - Cannot add an angle constraint on an external geometry! - + Cannot add an angle constraint on an external geometry! + Nemoguće dodavanje ograničenja kuta vanjskoj geometriji! - - Select exactly one or two lines from the sketch. - Odaberite točno jednu ili dvije linije iz skice. + Select exactly one or two lines from the sketch. + Odaberite točno jednu ili dvije linije iz skice. - - Select two edges from the sketch. - Odaberite dva ruba iz skice. + Select two edges from the sketch. + Odaberite dva ruba iz skice. - - Select atleast two lines from the sketch. - Odaberite barem dvije linije iz skice. + Select atleast two lines from the sketch. + Odaberite barem dvije linije iz skice. - - Select two or more compatible edges - + Select two or more compatible edges + Odaberite dva kompatibilna ruba - - Sketch axes cannot be used in equality constraints - + Sketch axes cannot be used in equality constraints + Koordinatne osi skice se ne mogu koristiti sa ograničenjem izjednačenja duljine - - - Select two or more edges of similar type - + Select two or more edges of similar type + Odaberite dva ili više ruba sličnog tipa - - Cannot add a constraint between external geometries! - + Cannot add a constraint between external geometries! + Nemoguće dodavanje ograničenja među vanjskim geometrijama! - Select exactly two same geometries - Odaberite točno dvije iste geometrije + Select exactly two same geometries + Odaberite točno dvije iste geometrije - Select valid geometries - Odaberite valjane geometrije + Select valid geometries + Odaberite valjane geometrije - Select geometry of similar type - Odaberite geometriju sličnog tipa + Select geometry of similar type + Odaberite geometriju sličnog tipa - - - - Select two points and one line from the sketch. - Odaberite dvije točke i jednu liniju iz skice. + Select two points and one line from the sketch. + Odaberite dvije točke i jednu liniju iz skice. - Select exactly one line from the sketch. - Odaberite samo jednu liniju iz skice. + Select exactly one line from the sketch. + Odaberite samo jednu liniju iz skice. - Select two lines from the sketch. - Odaberite dvije linije iz skice. + Select two lines from the sketch. + Odaberite dvije linije iz skice. - Select exactly two lines from the sketch. - Odaberite točno dvije linije iz skice. + Select exactly two lines from the sketch. + Odaberite točno dvije linije iz skice. - - - Select two entities from the sketch. - Odaberite dva entiteta iz skice. + Select two entities from the sketch. + Odaberite dva entiteta iz skice. - - - - - Select exactly two entities from the sketch. - Odaberite točno dva entiteta iz skice. + Select exactly two entities from the sketch. + Odaberite točno dva entiteta iz skice. - - Edit sketch - Uredi skicu + + Edit sketch + Uredi skicu - - A dialog is already open in the task panel - Dijalog je već otvoren u ploči zadataka + A dialog is already open in the task panel + Dijalog je već otvoren u ploči zadataka - - Do you want to close this dialog? - Želite li zatvoriti ovaj dijalog? + Do you want to close this dialog? + Želite li zatvoriti ovaj dijalog? - - Several sub-elements selected - Nekoliko pod-elemenata odabrano + + Several sub-elements selected + Nekoliko pod-elemenata odabrano - - You have to select a single face as support for a sketch! - Morate odabrati jednu površinu kao podršku za skicu! + You have to select a single face as support for a sketch! + Morate odabrati jednu površinu kao podršku za skicu! - - No support face selected - Nije odabrana površina za podršku + No support face selected + Nije odabrana površina za podršku - - You have to select a face as support for a sketch! - Morate odabrati površinu kao podršku za skicu! + You have to select a face as support for a sketch! + Morate odabrati površinu kao podršku za skicu! - - No planar support - Nema planarni podršku + No planar support + Nema planarni podršku - - You need a planar face as support for a sketch! - Trebate planarnu površinu kao podršku za skicu! + You need a planar face as support for a sketch! + Trebate planarnu površinu kao podršku za skicu! - - Distance constraint - Ograničenje udaljenosti + + Distance constraint + Ograničenje udaljenosti - - Not allowed to edit the datum because the sketch contains conflicting constraints - Nije dopušteno mijenjati podatak, jer skica sadrži proturječna ograničenja + Not allowed to edit the datum because the sketch contains conflicting constraints + Nije dopušteno mijenjati podatak, jer skica sadrži proturječna ograničenja - - Dimensional constraint - Dimensional constraint + Dimensional constraint + Dimenzijonalno ograničenje - - + + SketchOrientationDialog - Choose orientation - Odaberite orijentaciju + Choose orientation + Odaberite orijentaciju - Sketch orientation - Orijentacija skice + Sketch orientation + Orijentacija skice - XY-Plane - XY ravnina + XY-Plane + XY ravnina - XZ-Plane - XZ-Ravnina + XZ-Plane + XZ-Ravnina - YZ-Plane - YZ-Ravnina + YZ-Plane + YZ-Ravnina - Reverse direction - Obrnutim smjerom + Reverse direction + Obrnutim smjerom - Offset: - Odmak: + Offset: + Odmak: - - + + SketcherGui::InsertDatum - - Insert datum - Umetni datum + + Insert datum + Umetni datum - - datum: - datum: + datum: + datum: - - + + SketcherGui::SketchOrientationDialog - - Choose orientation - Odaberite orijentaciju + + Choose orientation + Odaberite orijentaciju - - Sketch orientation - Orijentacija skice + Sketch orientation + Orijentacija skice - - XY-Plane - XY ravnina + XY-Plane + XY ravnina - - XZ-Plane - XZ-Ravnina + XZ-Plane + XZ-Ravnina - - YZ-Plane - YZ-Ravnina + YZ-Plane + YZ-Ravnina - - Reverse direction - Obrnutim smjerom + Reverse direction + Obrnutim smjerom - - Offset: - Odmak: + Offset: + Odmak: - - + + SketcherGui::TaskSketcherConstrains - - Form - Obrazac + + Form + Obrazac - - Filter: - Filter: + Filter: + Filter: - - All - Sve + All + Sve - - Normal - Normalno + Normal + Normalno - - Datums - Datumima + Datums + Datumima - - Named - Imenovan + Named + Imenovan - - Constraints - Ograničenja + + Constraints + Ograničenja - - + + SketcherGui::TaskSketcherGeneral - - Form - Obrazac + + Form + Obrazac - - Grid size: - Grid size: + Grid size: + Veličina rešetke: - - Grid snap - Grid snap + Grid snap + Skok na rešetku - Unsolved - Neriješen + Unsolved + Neriješen - Grid Snap - Ograničenje sa rešetkom + Grid Snap + Ograničenje sa rešetkom - 0.1 mm - 0.1 mm + 0.1 mm + 0.1 mm - 0.2 mm - 0.2 mm + 0.2 mm + 0.2 mm - 0.5 mm - 0.5 mm + 0.5 mm + 0.5 mm - 1 mm - 1 mm + 1 mm + 1 mm - 2 mm - 2 mm + 2 mm + 2 mm - 5 mm - 5 mm + 5 mm + 5 mm - 10 mm - 10 mm + 10 mm + 10 mm - 20 mm - 20 mm + 20 mm + 20 mm - 50 mm - 50 mm + 50 mm + 50 mm - 100 mm - 100 mm + 100 mm + 100 mm - 200 mm - 200 mm + 200 mm + 200 mm - 500 mm - 500 mm + 500 mm + 500 mm - 1 m - 1 m + 1 m + 1 m - 2 m - 2 m + 2 m + 2 m - 5 m - 5 m + 5 m + 5 m - 10 m - 10 m + 10 m + 10 m - 20 m - 20 m + 20 m + 20 m - - Auto constraints - Auto ograničenja + Auto constraints + Auto ograničenja - auto constraints - automatska ograničenja + auto constraints + automatska ograničenja - - Edit controls - Uredi kontrole + + Edit controls + Uredi kontrole - - + + SketcherGui::TaskSketcherMessages - - Solver messages - Poruke Solvera + + Solver messages + Poruke Solvera - - + + TaskSketcherConstrains - Constraints - Ograničenja + Constraints + Ograničenja - - + + TaskSketcherCreateCommands - Appearance - Izgled + Appearance + Izgled - - + + TaskSketcherGeneral - Edit controls - Uredi kontrole + Edit controls + Uredi kontrole - - + + TaskSketcherMessages - - Form - Obrazac + + Form + Obrazac - - Undefined degrees of freedom - Neodređeno stupnjeva slobode + Undefined degrees of freedom + Neodređeno stupnjeva slobode - - Not solved yet - Još nije riješeno + Not solved yet + Još nije riješeno - - + + Workbench - - Sketcher - Skica + + Sketcher + Skica - - Sketcher geometries - Geometrije skice + Sketcher geometries + Geometrije skice - Sketcher geoms - Geometrije skice + Sketcher geoms + Geometrije skice - - Sketcher constraints - Ograničenja u skici + Sketcher constraints + Ograničenja u skici - + diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hu.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hu.qm index 558347ff9..70f22f93f 100644 Binary files a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hu.qm and b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hu.qm differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hu.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hu.ts index 63f4a6e6c..18f478d90 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hu.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hu.ts @@ -1,1299 +1,1052 @@ - - + + CmdSketcherConstrainAngle - - Sketcher - Vázlatkészítõ + + Sketcher + Vázlatkészítõ - - Constrain angle - Szög zárolása + Constrain angle + Szög zárolása - - Fix the angle of a line or the angle between two lines - Rögzítsen szöget a vonalon, vagy a szöget két vonalon + Fix the angle of a line or the angle between two lines + Rögzítsen szöget a vonalon, vagy a szöget két vonalon - - + + CmdSketcherConstrainCoincident - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Constrain coincident - Egymásra llesztés + Constrain coincident + Egymásra llesztés - - Create a coincident constraint on the selected item - Kiválasztott elemek egy egymásra illesztése + Create a coincident constraint on the selected item + Kiválasztott elemek egy egymásra illesztése - - + + CmdSketcherConstrainDistance - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Constrain distance - Távolság kényszer + Constrain distance + Távolság kényszer - - Fix a length of a line or the distance between a line and a vertex - Vonal hosszának rögzítése vagy adott távolság tartása a vonal és vertex között + Fix a length of a line or the distance between a line and a vertex + Vonal hosszának rögzítése vagy adott távolság tartása a vonal és vertex között - - + + CmdSketcherConstrainDistanceX - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Constrain horizontal distance - Vízszintes távolság zárolása + Constrain horizontal distance + Vízszintes távolság zárolása - Constrain vertical distance - Vízszintes függőleges zárolása + Constrain vertical distance + Constrain vertical distance - - Fix the horizontal distance between two points or line ends - Két pont közötti vagy vonal végek közötti vízszintes távolság zárolása + Fix the horizontal distance between two points or line ends + Két pont közötti vagy vonal végek közötti vízszintes távolság zárolása - - + + CmdSketcherConstrainDistanceY - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Constrain vertical distance - Vízszintes függőleges zárolása + Constrain vertical distance + Constrain vertical distance - Constrain horizontal distance - Vízszintes távolság zárolása + Constrain horizontal distance + Vízszintes távolság zárolása - - Fix the vertical distance between two points or line ends - Két pont közötti vagy vonal végek közötti függőleges távolság zárolása + Fix the vertical distance between two points or line ends + Két pont közötti vagy vonal végek közötti függőleges távolság zárolása - - + + CmdSketcherConstrainEqual - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Constrain equal - Egyenlő zárolása + Constrain equal + Egyenlő zárolása - - Create an equality constraint between two lines or between circles and arcs - Hozzon létre egy egyenlőség korlátozást két vonal között, illetve körök és ívek között + Create an equality constraint between two lines or between circles and arcs + Hozzon létre egy egyenlőség korlátozást két vonal között, illetve körök és ívek között - - + + CmdSketcherConstrainHorizontal - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Constrain horizontally - Vízszint kényszer + Constrain horizontally + Vízszint kényszer - - Create a horizontal constraint on the selected item - Vízszintes kényszer létrehozása a kiválasztott elemen + Create a horizontal constraint on the selected item + Vízszintes kényszer létrehozása a kiválasztott elemen - - + + CmdSketcherConstrainLock - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Constrain lock - Zárolási kényszer + Constrain lock + Zárolási kényszer - - Create a lock constraint on the selected item - A kijelölt elem zárolása + Create a lock constraint on the selected item + A kijelölt elem zárolása - - + + CmdSketcherConstrainParallel - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Constrain parallel - Párhuzamosság tartása + Constrain parallel + Párhuzamosság tartása - - Create a parallel constraint between two lines - Két vonal közötti párhuzamosság kényszer + Create a parallel constraint between two lines + Két vonal közötti párhuzamosság kényszer - - + + CmdSketcherConstrainPerpendicular - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Constrain perpendicular - Merőleges korlát + Constrain perpendicular + Merőleges korlát - - Create a Perpendicular constraint between two lines - Hozzon létre egy merőleges korlátot két vonal közt + Create a Perpendicular constraint between two lines + Hozzon létre egy merőleges korlátot két vonal közt - - + + CmdSketcherConstrainPointOnObject - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Constrain point onto object - a pont korlátozása az objektumra + Constrain point onto object + a pont korlátozása az objektumra - - Fix a point onto an object - Pont rögzítése egy tárgyra + Fix a point onto an object + Pont rögzítése egy tárgyra - - + + CmdSketcherConstrainRadius - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Constrain radius - Sugár korlát + Constrain radius + Sugár korlát - - Fix the radius of a circle or an arc - Sugár rögzítése a körre vagy ívre + Fix the radius of a circle or an arc + Sugár rögzítése a körre vagy ívre - - + + CmdSketcherConstrainSymmetric - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Constrain symmetrical - Szimmetria korlát + Constrain symmetrical + Szimmetria korlát - - Create an symmetry constraint between two points with respect to a line - Hozzon létre egy szimmetria korlátot két pont között egy vanalra való tekintettel + Create an symmetry constraint between two points with respect to a line + Hozzon létre egy szimmetria korlátot két pont között egy vanalra való tekintettel - - + + CmdSketcherConstrainTangent - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Constrain tangent - Korlátozó érintő + Constrain tangent + Korlátozó érintő - - Create a tangent constraint between two entities - Hozzon létre egy érintő korlátozást két rész között + Create a tangent constraint between two entities + Hozzon létre egy érintő korlátozást két rész között - - + + CmdSketcherConstrainVertical - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Constrain vertically - Függőleges kényszerítés + Constrain vertically + Függőleges kényszerítés - - Create a vertical constraint on the selected item - Függőleges kényszer alkalmazása a kijelölt elemen + Create a vertical constraint on the selected item + Függőleges kényszer alkalmazása a kijelölt elemen - - + + CmdSketcherCreateArc - - Sketcher - Vázlatkészítõ + + Sketcher + Vázlatkészítõ - - Create arc - Ív létrehozása + Create arc + Ív létrehozása - - Create an arc in the sketch - Ív létrehozása a vázlaton + Create an arc in the sketch + Ív létrehozása a vázlaton - - + + CmdSketcherCreateCircle - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Create circle - Kör rajzolása + Create circle + Kör rajzolása - - Create a circle in the sketch - Kör rajzolása a vázlaton + Create a circle in the sketch + Kör rajzolása a vázlaton - - + + CmdSketcherCreateDraftLine - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Create draft line - Vázlatvonal rajzolása + Create draft line + Vázlatvonal rajzolása - - Create a draft line in the sketch - Vázlatvonal rajzolása a vázlaton + Create a draft line in the sketch + Vázlatvonal rajzolása a vázlaton - - + + CmdSketcherCreateFillet - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Create fillet - Lekerekítés létrehozása + Create fillet + Lekerekítés létrehozása - - Create a fillet between two lines or at a coincidental point - + Create a fillet between two lines or at a coincidental point + Hozzon létre egy lekerekítést a vonalak közt vagy egybeeső ponttok közt - Create a fillet between two lines or at a coincident point - Hozzon létre egy kitöltést vonalak közt, vagy egy egybeeső ponttal + Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point - - + + CmdSketcherCreateLine - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Create line - Vonal rajzolása + Create line + Vonal rajzolása - - Create a line in the sketch - Vonal rajzolása a vázlaton + Create a line in the sketch + Vonal rajzolása a vázlaton - - + + CmdSketcherCreatePoint - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Create point - Pont létrehozása + Create point + Pont létrehozása - - Create a point in the sketch - Pont létrehozása a vázlaton + Create a point in the sketch + Pont létrehozása a vázlaton - - + + CmdSketcherCreatePolyline - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Create polyline - Vonallánc rajzolása + Create polyline + Vonallánc rajzolása - - Create a polyline in the sketch - Vonallánc rajzolása a vázlaton + Create a polyline in the sketch + Vonallánc rajzolása a vázlaton - - + + CmdSketcherCreateRectangle - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Create rectangle - Téglalap rajzolása + Create rectangle + Téglalap rajzolása - - Create a rectangle in the sketch - Téglalap rajzolása a vázlaton + Create a rectangle in the sketch + Téglalap rajzolása a vázlaton - - + + CmdSketcherCreateText - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Create text - Szöveg létrehozása + Create text + Szöveg létrehozása - - Create text in the sketch - Szöveg létrehozása a vázlaton + Create text in the sketch + Szöveg létrehozása a vázlaton - - + + CmdSketcherExternal - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - External geometry - + External geometry + Külső geometria - - Create an edge linked to an external geometry - + Create an edge linked to an external geometry + Hozzon létre egy szegélyt, csatolva a külső geometriához - - + + CmdSketcherLeaveSketch - - Sketcher - Vázlatkészítõ + + Sketcher + Vázlatkészítõ - - Leave sketch - Vázlat elhagyása + Leave sketch + Vázlat elhagyása - - Close the editing of the sketch - Vázlatszerkesztő bezárása + Close the editing of the sketch + Vázlatszerkesztő bezárása - - + + CmdSketcherMapSketch - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Map sketch to face... - Vázlat leképezés felületre... + Map sketch to face... + Vázlat leképezés felületre... - - Map a sketch to a face - Vázlat leképezése felületre + Map a sketch to a face + Vázlat leképezése felületre - - + + CmdSketcherNewSketch - - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - - Create sketch - Vázlat létrehozása + Create sketch + Vázlat létrehozása - - Create a new or edit the selected sketch - Create a new or edit the selected sketch + Create a new or edit the selected sketch + Hozzon létre egy új, vagy szerkesztheti a kijelölt vázlatot - Create a new sketch - Új vázlat készítése + Create a new sketch + Új vázlat készítése - - + + CmdSketcherNewSketchSF - Sketcher - Vázlatkészítõ + Sketcher + Vázlatkészítõ - Sketchflat sketch - Vázlatsík vázlat + Sketchflat sketch + Vázlatsík vázlat - Create a new sketchflat sketch by starting externel editor - Hozzon létre egy új vázlatsík vázlatot külső szerkesztő indításával + Create a new sketchflat sketch by starting externel editor + Hozzon létre egy új vázlatsík vázlatot külső szerkesztő indításával - - + + CmdSketcherToggleConstruction - - Sketcher - Vázlatkészítõ + + Sketcher + Vázlatkészítõ - - Toggle construction line - Szerkesztési vonalak átkapcsolása + Toggle construction line + Szerkesztési vonalak átkapcsolása - - Toggles the currently selected lines to/from construction mode - Az aktuálisan kiválasztott vonalak a szerkesztő mód -ból/-ba + Toggles the currently selected lines to/from construction mode + Az aktuálisan kiválasztott vonalak a szerkesztő mód -ból/-ba - - + + CmdSketcherTrimming - - Sketcher - Vázlatkészítõ + + Sketcher + Vázlatkészítõ - - Trim edge - Él vágása + Trim edge + Él vágása - - Trim an edge with respect to the picked position - + Trim an edge with respect to the picked position + Él levágása, tekintettel a kiválasztott helyzetre - Trims an edge with respect to the picked position - Él levágása, tekintettel a kiválasztott helyzetére + Trims an edge with respect to the picked position + Él levágása, tekintettel a kiválasztott helyzetére - - + + CmdSketcherViewSketch - - Sketcher - Vázlatkészítõ + + Sketcher + Vázlatkészítõ - - View sketch - vázlat nézet + View sketch + vázlat nézet - - View sketch perpendicular to sketch plane - A vázlat megtekintése merőleges vázlatsíkra + View sketch perpendicular to sketch plane + A vázlat megtekintése merőleges vázlatsíkra - - + + Gui::TaskView::TaskSketcherCreateCommands - - Appearance - Megjelenés + + Appearance + Megjelenés - - + + QObject - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Wrong selection - Hibás kijelölés + + Wrong selection + Hibás kijelölés - - Select edge(s) from the sketch. - A kiválasztott él(ek) a vázlatból való. + Select edge(s) from the sketch. + A kiválasztott él(ek) a vázlatból való. - - - Select an edge from the sketch. - Egy él kiválasztása a vázlaton + + Select an edge from the sketch. + Egy él kiválasztása a vázlaton. - - - Double constraint - Kettős kényszer + Double constraint + Kettős kényszer - - - The selected edge has already a horizontal constraint! - A kiválasztott él már rendelkezik egy vízszintes korláttal! + The selected edge has already a horizontal constraint! + A kiválasztott él már rendelkezik egy vízszintes korláttal! - - - - - - - Impossible constraint - Lehetetlen korlátozás + Impossible constraint + Lehetetlen korlátozás - - Cannot add a constraint between two external geometries! - + Cannot add a constraint between two external geometries! + Nem lehet hozzáadni egy letörést két külső geometriához! - - - - Only sketch and its support is allowed to select - Csak a vázlat és a támogatásy választható + Only sketch and its support is allowed to select + Csak a vázlat és a támogatásy választható - - One of the selected has to be on the sketch - Az egyik kiválasztottnak vázlaton kell lennie + One of the selected has to be on the sketch + Az egyik kiválasztottnak vázlaton kell lennie - - - The selected edge is not a line segment - A kiválasztott él nem egyenes szakasz + The selected edge is not a line segment + A kiválasztott él nem egyenes szakasz - - - The selected edge has already a vertical constraint! - A kiválasztott él már rendelkezik egy függőleges kényszerrel! + The selected edge has already a vertical constraint! + A kiválasztott él már rendelkezik egy függőleges kényszerrel! - - The selected item(s) can't accept a horizontal constraint! - + The selected item(s) can't accept a horizontal constraint! + A kiválasztott elem(ek) nem fogadják el a vízszintes letörést! - - The selected item(s) can't accept a vertical constraint! - + The selected item(s) can't accept a vertical constraint! + A kiválasztott elem(ek) nem fogadják el a függőleges letörést! - - Select entities from the sketch. - Válasszon ki a szerkezetet a vázlatból. + Select entities from the sketch. + Válasszon ki a szerkezetet a vázlatból. - - - Select exactly one entity from the sketch. - Válasszon ki pontosan egy szerkezetet, a vázlatból. + Select exactly one entity from the sketch. + Válasszon ki pontosan egy szerkezetet, a vázlatból. - - - - - - - Select vertexes from the sketch. - Csomópont kiválasztása a vázlaton. + Select vertexes from the sketch. + Csomópont kiválasztása a vázlaton. - - - - Select exactly two vertexes from the sketch. - Két csomópont kiválasztása a vázlaton. + Select exactly two vertexes from the sketch. + Két csomópont kiválasztása a vázlaton. - - - Select exactly one line or one point and one line or two points from the sketch. - Válasszon ki pontosan egy sort vagy egy pontot és egy sort és két pontot a vázlatból. + Select exactly one line or one point and one line or two points from the sketch. + Válasszon ki pontosan egy sort vagy egy pontot és egy sort és két pontot a vázlatból. - - Cannot add a length constraint on an external geometry! - + Cannot add a length constraint on an external geometry! + Nem lehet hozzáadni egy külső geometriához a letörés hosszát! - - - Select exactly one point and one object from the sketch. - Válasszon ki pontosan egy pontot és egy objektumot a vázlatból. + Select exactly one point and one object from the sketch. + Válasszon ki pontosan egy pontot és egy objektumot a vázlatból. - - - - - Select exactly one line or up to two points from the sketch. - Válasszon ki pontosan egy vonalat, vagy legfeljebb két pontot a vázlatból. + Select exactly one line or up to two points from the sketch. + Válasszon ki pontosan egy vonalat, vagy legfeljebb két pontot a vázlatból. - - Cannot add a horizontal length constraint on an external geometry! - + Cannot add a horizontal length constraint on an external geometry! + Nem lehet hozzáadni egy külső geometriához a vízszintes hossz letörést! - - Cannot add a vertical length constraint on an external geometry! - + Cannot add a vertical length constraint on an external geometry! + Nem lehet hozzáadni egy külső geometriához a függőleges hossz letörést! - - Select two or more lines from the sketch. - Válasszon ki a két vagy több vonalat a vázlatból. + Select two or more lines from the sketch. + Válasszon ki a két vagy több vonalat a vázlatból. - - Select at least two lines from the sketch. - Válasszon ki legalább két vonalat a vázlatból. + Select at least two lines from the sketch. + Válasszon ki legalább két vonalat a vázlatból. - - Select a valid line - Válasszon ki egy érvényes vonalat + Select a valid line + Válasszon ki egy érvényes vonalat - - The selected edge is not a valid line - A kiválasztott él nem érvényes vonal + The selected edge is not a valid line + A kiválasztott él nem érvényes vonal - - The selected points should be end points of arcs and lines. - + The selected points should be end points of arcs and lines. + A kiválasztott pontoknak ív és vonal végpontoknak kell lennie. - - The selected point should be an end point of an arc or line. - + The selected point should be an end point of an arc or line. + A kijelölt pontonak egy ív vagy vonal végpontnak kell lennie. - - The selected edge should be an arc, line or circle. - + The selected edge should be an arc, line or circle. + A kijelölt élnek egy ívnek, vonalnak vagy körnek kell lennie. - - One of the selected edges should be a line. - + One of the selected edges should be a line. + Az egyik kijelölt élnek egy vonalnak kell lennie. - - - - Select exactly one arc or circle from the sketch. - Válasszon ki pontosan egy ívet vagy kört a vázlatból. + Select exactly one arc or circle from the sketch. + Válasszon ki pontosan egy ívet vagy kört a vázlatból. - - Select one or two lines from the sketch. - + Select one or two lines from the sketch. + Válasszon egy vagy két vonalat a vázlatból. - - Cannot add an angle constraint on an external geometry! - + Cannot add an angle constraint on an external geometry! + Nem lehet hozzáadni egy külső geometriához a letörés szöget! - - Select exactly one or two lines from the sketch. - Válasszon ki pontosan egy-két vonalat a vázlatból. + Select exactly one or two lines from the sketch. + Válasszon ki pontosan egy-két vonalat a vázlatból. - - Select two edges from the sketch. - Két él kiválasztása a vázlaton. + Select two edges from the sketch. + Két él kiválasztása a vázlaton. - - Select atleast two lines from the sketch. - Válasszon ki legalább két vonalat a vázlatból. + Select atleast two lines from the sketch. + Válasszon ki legalább két vonalat a vázlatból. - - Select two or more compatible edges - + Select two or more compatible edges + Két vagy több kompatibilis élt válasszon - - Sketch axes cannot be used in equality constraints - + Sketch axes cannot be used in equality constraints + Vázlat tengelyek nem használhatók egyenlőségi letöréshez - - - Select two or more edges of similar type - + Select two or more edges of similar type + Jelöljön ki két vagy több hasonló élt - - Cannot add a constraint between external geometries! - + Cannot add a constraint between external geometries! + Nem lehet hozzáadni egy letörést a külső geometriákhoz! - Select exactly two same geometries - Válasszon ki pontosan két azonos geometriát + Select exactly two same geometries + Válasszon ki pontosan két azonos geometriát - Select valid geometries - Válasszon érvényes geometriákat + Select valid geometries + Válasszon érvényes geometriákat - Select geometry of similar type - Válasszon ki a hasonló típusú geometriát + Select geometry of similar type + Válasszon ki a hasonló típusú geometriát - - - - Select two points and one line from the sketch. - Válasszon ki két pontot és egy sort a vázlatból. + Select two points and one line from the sketch. + Válasszon ki két pontot és egy sort a vázlatból. - Select exactly one line from the sketch. - Egy vonal kiválasztása a vázlaton. + Select exactly one line from the sketch. + Egy vonal kiválasztása a vázlaton. - Select two lines from the sketch. - Két vonal kiválasztása a vázlaton. + Select two lines from the sketch. + Két vonal kiválasztása a vázlaton. - Select exactly two lines from the sketch. - Két vonal kiválasztása a vázlaton. + Select exactly two lines from the sketch. + Két vonal kiválasztása a vázlaton. - - - Select two entities from the sketch. - Válasszon ki két egységet a vázlatból. + Select two entities from the sketch. + Válasszon ki két egységet a vázlatból. - - - - - Select exactly two entities from the sketch. - Válassza ki pontosan két egységet a vázlatból. + Select exactly two entities from the sketch. + Válassza ki pontosan két egységet a vázlatból. - - Edit sketch - Vázlat szerkesztése + + Edit sketch + Vázlat szerkesztése - - A dialog is already open in the task panel - Egy párbeszédablak már nyitva van a feladat panelen + A dialog is already open in the task panel + Egy párbeszédablak már nyitva van a feladat panelen - - Do you want to close this dialog? - Biztos be szeretné zárni a párbeszédpanelt? + Do you want to close this dialog? + Biztos be szeretné zárni a párbeszédpanelt? - - Several sub-elements selected - Több elemet jelölt ki + + Several sub-elements selected + Több elemet jelölt ki - - You have to select a single face as support for a sketch! - Egy támogatott ki kell választania felületet a vázlat létrehozásához! + You have to select a single face as support for a sketch! + Egy támogatott ki kell választania felületet a vázlat létrehozásához! - - No support face selected - A kijelölt felület nem támogatott + No support face selected + A kijelölt felület nem támogatott - - You have to select a face as support for a sketch! - Ki kell választani egy vázlatot támogató felületet! + You have to select a face as support for a sketch! + Ki kell választani egy vázlatot támogató felületet! - - No planar support - Nem támogatott sík + No planar support + Nem támogatott sík - - You need a planar face as support for a sketch! - A vázlathoz, szükség van egy támogatott sík felületre! + You need a planar face as support for a sketch! + A vázlathoz, szükség van egy támogatott sík felületre! - - Distance constraint - Távolság korlátozás + + Distance constraint + Távolság korlátozás - - Not allowed to edit the datum because the sketch contains conflicting constraints - Nem megengedett, hogy módosítsa a datumot, mert a vázlat tartalmaz egymásnak ellentmondó megszorításokat + Not allowed to edit the datum because the sketch contains conflicting constraints + Nem megengedett, hogy módosítsa a datumot, mert a vázlat tartalmaz egymásnak ellentmondó megszorításokat - - Dimensional constraint - Dimensional constraint + Dimensional constraint + Háromdimenziós megkötés - - + + SketchOrientationDialog - Choose orientation - Válasszon orientáció + Choose orientation + Válasszon orientáció - Sketch orientation - Vázlat orientáció + Sketch orientation + Vázlat orientáció - XY-Plane - XY-sík + XY-Plane + XY-sík - XZ-Plane - XZ-sík + XZ-Plane + XZ-sík - YZ-Plane - YZ-sík + YZ-Plane + YZ-sík - Reverse direction - Fordított irányban + Reverse direction + Fordított irányban - Offset: - Eltolás: + Offset: + Eltolás: - - + + SketcherGui::InsertDatum - - Insert datum - Adat beszúrása + + Insert datum + Adat beszúrása - - datum: - adat: + datum: + adat: - - + + SketcherGui::SketchOrientationDialog - - Choose orientation - Válasszon orientáció + + Choose orientation + Válasszon orientáció - - Sketch orientation - Vázlat orientáció + Sketch orientation + Vázlat orientáció - - XY-Plane - XY-sík + XY-Plane + XY-sík - - XZ-Plane - XZ-sík + XZ-Plane + XZ-sík - - YZ-Plane - YZ-sík + YZ-Plane + YZ-sík - - Reverse direction - Fordított irányban + Reverse direction + Fordított irányban - - Offset: - Eltolás: + Offset: + Eltolás: - - + + SketcherGui::TaskSketcherConstrains - - Form - Űrlap + + Form + Űrlap - - Filter: - Szűrő: + Filter: + Szűrő: - - All - Minden + All + Minden - - Normal - Normál + Normal + Normál - - Datums - Adatok + Datums + Adatok - - Named - Elnevezés + Named + Elnevezés - - Constraints - Megkötések + + Constraints + Megkötések - - + + SketcherGui::TaskSketcherGeneral - - Form - Űrlap + + Form + Űrlap - - Grid size: - Grid size: + Grid size: + Rács méret: - - Grid snap - Grid snap + Grid snap + Rácshoz igazítás - Unsolved - Megoldatlan + Unsolved + Megoldatlan - Grid Snap - Rácshoz ugrás + Grid Snap + Rácshoz ugrás - 0.1 mm - 0,1 mm + 0.1 mm + 0.1 mm - 0.2 mm - 0.2 mm + 0.2 mm + 0.2 mm - 0.5 mm - 0.5 mm + 0.5 mm + 0.5 mm - 1 mm - 1 mm + 1 mm + 1 mm - 2 mm - 2 mm + 2 mm + 2 mm - 5 mm - 5 mm + 5 mm + 5 mm - 10 mm - 10 mm + 10 mm + 10 mm - 20 mm - 20 mm + 20 mm + 20 mm - 50 mm - 50 mm + 50 mm + 50 mm - 100 mm - 100 mm + 100 mm + 100 mm - 200 mm - 200 mm + 200 mm + 200 mm - 500 mm - 500 mm + 500 mm + 500 mm - 1 m - 1 m + 1 m + 1 m - 2 m - 2 m + 2 m + 2 m - 5 m - 5 m + 5 m + 5 m - 10 m - 10 m + 10 m + 10 m - 20 m - 20 m + 20 m + 20 m - - Auto constraints - automatikus megkötések + Auto constraints + automatikus megkötések - auto constraints - automatikus megkötések + auto constraints + automatikus megkötések - - Edit controls - Szerkesztés ellenőrzés + + Edit controls + Szerkesztés ellenőrzés - - + + SketcherGui::TaskSketcherMessages - - Solver messages - megoldási üzenetek + + Solver messages + megoldási üzenetek - - + + TaskSketcherConstrains - Constraints - Megkötések + Constraints + Megkötések - - + + TaskSketcherCreateCommands - Appearance - Megjelenés + Appearance + Megjelenés - - + + TaskSketcherGeneral - Edit controls - Szerkesztés ellenőrzés + Edit controls + Szerkesztés ellenőrzés - - + + TaskSketcherMessages - - Form - Űrlap + + Form + Űrlap - - Undefined degrees of freedom - Nem definiált szabadsági fok + Undefined degrees of freedom + Nem definiált szabadsági fok - - Not solved yet - Nem megoldott + Not solved yet + Nem megoldott - - + + Workbench - - Sketcher - Vázlatkészítõ + + Sketcher + Vázlatkészítõ - - Sketcher geometries - Geometriák vázlatkészítõje + Sketcher geometries + Geometriák vázlatkészítõje - Sketcher geoms - Vázlat geometriák + Sketcher geoms + Vázlat geometriák - - Sketcher constraints - Vázlatkészítési kényszerek + Sketcher constraints + Vázlatkészítési kényszerek - + diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_it.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_it.qm index 0c990e4b9..7d4b316d0 100644 Binary files a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_it.qm and b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_it.qm differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_it.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_it.ts index 7e6abc346..ca48174e5 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_it.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_it.ts @@ -1,1299 +1,1052 @@ - - + + CmdSketcherConstrainAngle - - Sketcher - Sketcher + + Sketcher + Sketcher - - Constrain angle - Vincolo di angolo + Constrain angle + Vincolo di angolo - - Fix the angle of a line or the angle between two lines - Fissa l'angolo di una linea o l'angolo tra due linee + Fix the angle of a line or the angle between two lines + Fissa l'angolo di una linea o l'angolo tra due linee - - + + CmdSketcherConstrainCoincident - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain coincident - Vincolo di coincidenza + Constrain coincident + Vincolo di coincidenza - - Create a coincident constraint on the selected item - Crea un vincolo di coincidenza sull'elemento selezionato + Create a coincident constraint on the selected item + Crea un vincolo di coincidenza sull'elemento selezionato - - + + CmdSketcherConstrainDistance - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain distance - Vincolo di distanza + Constrain distance + Vincolo di distanza - - Fix a length of a line or the distance between a line and a vertex - Fissa la lunghezza di una linea o la distanza tra una linea e un vertice + Fix a length of a line or the distance between a line and a vertex + Fissa la lunghezza di una linea o la distanza tra una linea e un vertice - - + + CmdSketcherConstrainDistanceX - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain horizontal distance - Vincolo di distanza orizzontale + Constrain horizontal distance + Vincolo di distanza orizzontale - Constrain vertical distance - Vincolo di distanza verticale + Constrain vertical distance + Vincola una distanza verticale - - Fix the horizontal distance between two points or line ends - Fissa la distanza orizzontale tra due punti o estremi di una linea + Fix the horizontal distance between two points or line ends + Fissa la distanza orizzontale tra due punti o estremi di una linea - - + + CmdSketcherConstrainDistanceY - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain vertical distance - Vincolo di distanza verticale + Constrain vertical distance + Vincola una distanza verticale - Constrain horizontal distance - Vincolo di distanza orizzontale + Constrain horizontal distance + Vincolo di distanza orizzontale - - Fix the vertical distance between two points or line ends - Fissa la distanza verticale tra due punti o estremi di una linea + Fix the vertical distance between two points or line ends + Fissa la distanza verticale tra due punti o estremi di una linea - - + + CmdSketcherConstrainEqual - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain equal - Vincolo di uguaglianza + Constrain equal + Vincolo di uguaglianza - - Create an equality constraint between two lines or between circles and arcs - Crea un vincolo di uguaglianza tra due linee o tra cerchi e archi + Create an equality constraint between two lines or between circles and arcs + Crea un vincolo di uguaglianza tra due linee o tra cerchi e archi - - + + CmdSketcherConstrainHorizontal - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain horizontally - Vincolo orizzontale + Constrain horizontally + Vincolo orizzontale - - Create a horizontal constraint on the selected item - Crea un vincolo orizzontale sull'elemento selezionato + Create a horizontal constraint on the selected item + Crea un vincolo orizzontale sull'elemento selezionato - - + + CmdSketcherConstrainLock - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain lock - Vincolo bloccato + Constrain lock + Vincolo bloccato - - Create a lock constraint on the selected item - Crea un vincolo bloccato sull'elemento selezionato + Create a lock constraint on the selected item + Crea un vincolo bloccato sull'elemento selezionato - - + + CmdSketcherConstrainParallel - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain parallel - Vincolo di parallelismo + Constrain parallel + Vincolo di parallelismo - - Create a parallel constraint between two lines - Crea un vincolo di parallelismo tra due linee + Create a parallel constraint between two lines + Crea un vincolo di parallelismo tra due linee - - + + CmdSketcherConstrainPerpendicular - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain perpendicular - Vincolo perpendicolare + Constrain perpendicular + Vincolo perpendicolare - - Create a Perpendicular constraint between two lines - Crea un vincolo perpendicolare tra due linee + Create a Perpendicular constraint between two lines + Crea un vincolo perpendicolare tra due linee - - + + CmdSketcherConstrainPointOnObject - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain point onto object - Vincolo di punto su oggetto + Constrain point onto object + Vincolo di punto su oggetto - - Fix a point onto an object - Fissa un punto su un oggetto + Fix a point onto an object + Fissa un punto su un oggetto - - + + CmdSketcherConstrainRadius - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain radius - Vincolo di raggio + Constrain radius + Vincolo di raggio - - Fix the radius of a circle or an arc - Fissa il raggio di un cerchio o di un arco + Fix the radius of a circle or an arc + Fissa il raggio di un cerchio o di un arco - - + + CmdSketcherConstrainSymmetric - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain symmetrical - Vincolo di simmetria + Constrain symmetrical + Vincolo di simmetria - - Create an symmetry constraint between two points with respect to a line - Crea un vincolo di simmetria tra due punti rispetto a una linea + Create an symmetry constraint between two points with respect to a line + Crea un vincolo di simmetria tra due punti rispetto a una linea - - + + CmdSketcherConstrainTangent - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain tangent - Vincolo tangente + Constrain tangent + Vincolo tangente - - Create a tangent constraint between two entities - Crea un vincolo di tangenza tra due entità + Create a tangent constraint between two entities + Crea un vincolo di tangenza tra due entità - - + + CmdSketcherConstrainVertical - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain vertically - Vincolo verticale + Constrain vertically + Vincolo verticale - - Create a vertical constraint on the selected item - Crea un vincolo verticale sull'elemento selezionato + Create a vertical constraint on the selected item + Crea un vincolo verticale sull'elemento selezionato - - + + CmdSketcherCreateArc - - Sketcher - Sketcher + + Sketcher + Sketcher - - Create arc - Crea arco + Create arc + Crea arco - - Create an arc in the sketch - Crea un arco nello schizzo + Create an arc in the sketch + Crea un arco nello sketch - - + + CmdSketcherCreateCircle - - Sketcher - Sketcher + Sketcher + Sketcher - - Create circle - Crea cerchio + Create circle + Crea cerchio - - Create a circle in the sketch - Crea un cerchio nello schizzo + Create a circle in the sketch + Crea un cerchio nello sketch - - + + CmdSketcherCreateDraftLine - - Sketcher - Sketcher + Sketcher + Sketcher - - Create draft line - Crea linea di costruzione + Create draft line + Crea una linea di costruzione - - Create a draft line in the sketch - Crea una linea di costruzione nello schizzo + Create a draft line in the sketch + Crea una linea di costruzione nello sketch - - + + CmdSketcherCreateFillet - - Sketcher - Sketcher + Sketcher + Sketcher - - Create fillet - Crea raccordo + Create fillet + Crea raccordo - - Create a fillet between two lines or at a coincidental point - + Create a fillet between two lines or at a coincidental point + Crea un raccordo tra due linee o in un punto coincidente - Create a fillet between two lines or at a coincident point - Creare un raccordo tra due linee o in un punto coincidente + Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point - - + + CmdSketcherCreateLine - - Sketcher - Sketcher + Sketcher + Sketcher - - Create line - Crea linea + Create line + Crea linea - - Create a line in the sketch - Crea una linea nello schizzo + Create a line in the sketch + Crea una linea nello sketch - - + + CmdSketcherCreatePoint - - Sketcher - Sketcher + Sketcher + Sketcher - - Create point - Crea punto + Create point + Crea punto - - Create a point in the sketch - Crea un punto nello schizzo + Create a point in the sketch + Crea un punto nello sketch - - + + CmdSketcherCreatePolyline - - Sketcher - Sketcher + Sketcher + Sketcher - - Create polyline - Crea polilinea + Create polyline + Crea polilinea - - Create a polyline in the sketch - Crea una polilinea nello schizzo + Create a polyline in the sketch + Crea una polilinea nello sketch - - + + CmdSketcherCreateRectangle - - Sketcher - Sketcher + Sketcher + Sketcher - - Create rectangle - Crea rettangolo + Create rectangle + Crea rettangolo - - Create a rectangle in the sketch - Crea un rettangolo nello schizzo + Create a rectangle in the sketch + Crea un rettangolo nello sketch - - + + CmdSketcherCreateText - - Sketcher - Sketcher + Sketcher + Sketcher - - Create text - Crea testo + Create text + Crea testo - - Create text in the sketch - Crea testo nello sketch + Create text in the sketch + Crea un testo nello sketch - - + + CmdSketcherExternal - - Sketcher - Sketcher + Sketcher + Sketcher - - External geometry - + External geometry + Geometria esterna - - Create an edge linked to an external geometry - + Create an edge linked to an external geometry + Crea uno spigolo collegato a una geometria esterna - - + + CmdSketcherLeaveSketch - - Sketcher - Sketcher + + Sketcher + Sketcher - - Leave sketch - Esci + Leave sketch + Esci - - Close the editing of the sketch - Chiude la modifica dello schizzo + Close the editing of the sketch + Chiude la modifica dello sketch - - + + CmdSketcherMapSketch - - Sketcher - Sketcher + Sketcher + Sketcher - - Map sketch to face... - Mappa schizzo su faccia... + Map sketch to face... + Mappa sketch su faccia... - - Map a sketch to a face - Mappa uno sketch su una faccia + Map a sketch to a face + Mappa uno sketch su una faccia - - + + CmdSketcherNewSketch - - Sketcher - Sketcher + Sketcher + Sketcher - - Create sketch - Crea schizzo + Create sketch + Crea uno sketch - - Create a new or edit the selected sketch - Create a new or edit the selected sketch + Create a new or edit the selected sketch + Crea un nuovo sketch o modifica lo sketch selezionato - Create a new sketch - Crea un nuovo schizzo + Create a new sketch + Crea un nuovo sketch - - + + CmdSketcherNewSketchSF - Sketcher - Sketcher + Sketcher + Sketcher - Sketchflat sketch - Sketchflat sketch + Sketchflat sketch + Sketchflat sketch - Create a new sketchflat sketch by starting externel editor - Crea un nuovo sketch sketchflat avviando l'editor esterno + Create a new sketchflat sketch by starting externel editor + Crea un nuovo sketch sketchflat avviando l'editor esterno - - + + CmdSketcherToggleConstruction - - Sketcher - Sketcher + + Sketcher + Sketcher - - Toggle construction line - Attiva/disattiva linea di costruzione + Toggle construction line + Attiva/disattiva linea di costruzione - - Toggles the currently selected lines to/from construction mode - Attiva/disattiva le linee attualmente selezionate da modalità di costruzione + Toggles the currently selected lines to/from construction mode + Attiva/disattiva le linee attualmente selezionate in modalità di linee di costruzione - - + + CmdSketcherTrimming - - Sketcher - Sketcher + + Sketcher + Sketcher - - Trim edge - Taglia spigolo + Trim edge + Taglia spigolo - - Trim an edge with respect to the picked position - + Trim an edge with respect to the picked position + Taglia uno spigolo rispetto alla posizione specificata - Trims an edge with respect to the picked position - Taglia uno spigolo rispetto ad una posizione specificata + Trims an edge with respect to the picked position + Taglia uno spigolo rispetto ad una posizione specificata - - + + CmdSketcherViewSketch - - Sketcher - Sketcher + + Sketcher + Sketcher - - View sketch - Visualizza lo sketch + View sketch + Visualizza lo sketch - - View sketch perpendicular to sketch plane - Vista perpendicolare al piano di sketch + View sketch perpendicular to sketch plane + Vista perpendicolare al piano di sketch - - + + Gui::TaskView::TaskSketcherCreateCommands - - Appearance - Aspetto + + Appearance + Aspetto - - + + QObject - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Wrong selection - Selezione errata + + Wrong selection + Selezione errata - - Select edge(s) from the sketch. - Seleziona spigoli dello sketch. + Select edge(s) from the sketch. + Seleziona spigoli dello sketch. - - - Select an edge from the sketch. - Seleziona uno spigolo dallo sketch. + + Select an edge from the sketch. + Seleziona uno spigolo dello sketch. - - - Double constraint - Doppio vincolo + Double constraint + Doppio vincolo - - - The selected edge has already a horizontal constraint! - Lo spigolo selezionato ha già un vincolo orizzontale! + The selected edge has already a horizontal constraint! + Lo spigolo selezionato ha già un vincolo orizzontale! - - - - - - - Impossible constraint - Vincolo Impossible + Impossible constraint + Vincolo Impossible - - Cannot add a constraint between two external geometries! - + Cannot add a constraint between two external geometries! + Non è possibile aggiungere un vincolo tra due geometrie esterne! - - - - Only sketch and its support is allowed to select - E' consentito selezionare solo lo sketch e il suo supporto + Only sketch and its support is allowed to select + E' consentito selezionare solo lo sketch e il suo supporto - - One of the selected has to be on the sketch - Una delle entità selezionate deve essere sullo sketch + One of the selected has to be on the sketch + Una delle entità selezionate deve essere nello sketch - - - The selected edge is not a line segment - Lo spigolo selezionato non è un segmento di linea + The selected edge is not a line segment + Lo spigolo selezionato non è un segmento di linea - - - The selected edge has already a vertical constraint! - Lo spigolo selezionato ha già un vincolo verticale! + The selected edge has already a vertical constraint! + Lo spigolo selezionato ha già un vincolo verticale! - - The selected item(s) can't accept a horizontal constraint! - + The selected item(s) can't accept a horizontal constraint! + Gli elementi selezionati non possono accettare un vincolo orizzontale! - - The selected item(s) can't accept a vertical constraint! - + The selected item(s) can't accept a vertical constraint! + Gli elementi selezionati non possono accettare un vincolo verticale! - - Select entities from the sketch. - Seleziona entità dello sketch. + Select entities from the sketch. + Seleziona entità dello sketch. - - - Select exactly one entity from the sketch. - Seleziona esattamente una entità dello sketch. + Select exactly one entity from the sketch. + Seleziona esattamente un'entità dello sketch. - - - - - - - Select vertexes from the sketch. - Seleziona vertici dallo sketch. + Select vertexes from the sketch. + Seleziona vertici dello sketch. - - - - Select exactly two vertexes from the sketch. - Seleziona esattamente due vertici dallo sketch. + Select exactly two vertexes from the sketch. + Seleziona esattamente due vertici dello sketch. - - - Select exactly one line or one point and one line or two points from the sketch. - Selezionare esattamente una linea o un punto e una linea o due punti dello sketch. + Select exactly one line or one point and one line or two points from the sketch. + Seleziona esattamente una linea o un punto e una linea o due punti dello sketch. - - Cannot add a length constraint on an external geometry! - + Cannot add a length constraint on an external geometry! + Non è possibile aggiungere un vincolo di lunghezza su una geometria esterna! - - - Select exactly one point and one object from the sketch. - Seleziona esattamente un punto e un oggetto dello sketch. + Select exactly one point and one object from the sketch. + Seleziona esattamente un punto e un oggetto dello sketch. - - - - - Select exactly one line or up to two points from the sketch. - Seleziona esattamente una linea o fino a due punti dello sketch. + Select exactly one line or up to two points from the sketch. + Seleziona esattamente una linea o fino a due punti dello sketch. - - Cannot add a horizontal length constraint on an external geometry! - + Cannot add a horizontal length constraint on an external geometry! + Non è possibile aggiungere un vincolo di lunghezza orizzontale su una geometria esterna! - - Cannot add a vertical length constraint on an external geometry! - + Cannot add a vertical length constraint on an external geometry! + Non è possibile aggiungere un vincolo di lunghezza verticale su una geometria esterna! - - Select two or more lines from the sketch. - Seleziona due o più linee dello sketch. + Select two or more lines from the sketch. + Seleziona due o più linee dello sketch. - - Select at least two lines from the sketch. - Seleziona almeno due linee dello sketch. + Select at least two lines from the sketch. + Seleziona almeno due linee dello sketch. - - Select a valid line - Seleziona una linea valida + Select a valid line + Seleziona una linea valida - - The selected edge is not a valid line - Lo spigolo selezionato non è una linea valida + The selected edge is not a valid line + Lo spigolo selezionato non è una linea valida - - The selected points should be end points of arcs and lines. - + The selected points should be end points of arcs and lines. + I punti selezionati devono essere punti finali di linee o archi. - - The selected point should be an end point of an arc or line. - + The selected point should be an end point of an arc or line. + Il punto selezionato deve essere un punto finale di un arco o di una linea. - - The selected edge should be an arc, line or circle. - + The selected edge should be an arc, line or circle. + Lo spigolo selezionato devee essere una linea, un arco o un cerchio. - - One of the selected edges should be a line. - + One of the selected edges should be a line. + Uno degli spigoli selezionati deve essere una linea. - - - - Select exactly one arc or circle from the sketch. - Seleziona esattamente un arco o cerchio dello sketch. + Select exactly one arc or circle from the sketch. + Seleziona esattamente un arco o cerchio dello sketch. - - Select one or two lines from the sketch. - + Select one or two lines from the sketch. + Seleziona una o due linee dallo sketch. - - Cannot add an angle constraint on an external geometry! - + Cannot add an angle constraint on an external geometry! + Non è possibile aggiungere un vincolo di angolo su una geometria esterna! - - Select exactly one or two lines from the sketch. - Seleziona esattamente una o due linee dello sketch. + Select exactly one or two lines from the sketch. + Seleziona esattamente una o due linee dello sketch. - - Select two edges from the sketch. - Seleziona due spigoli dello sketch. + Select two edges from the sketch. + Seleziona due spigoli dello sketch. - - Select atleast two lines from the sketch. - Seleziona almeno due linee dello sketch. + Select atleast two lines from the sketch. + Seleziona almeno due linee dello sketch. - - Select two or more compatible edges - + Select two or more compatible edges + Seleziona due o più spigoli compatibili - - Sketch axes cannot be used in equality constraints - + Sketch axes cannot be used in equality constraints + Gli assi dello sketch non possono essere utilizzati nei vincoli di uguaglianza - - - Select two or more edges of similar type - + Select two or more edges of similar type + Selezionare due o più spigoli di tipo simile - - Cannot add a constraint between external geometries! - + Cannot add a constraint between external geometries! + Non è possibile aggiungere un vincolo tra geometrie esterne! - Select exactly two same geometries - Seleziona esattamente due geometrie simili + Select exactly two same geometries + Seleziona esattamente due geometrie simili - Select valid geometries - Seleziona geometrie valide + Select valid geometries + Seleziona geometrie valide - Select geometry of similar type - Seleziona una geometria di tipo simile + Select geometry of similar type + Seleziona una geometria di tipo simile - - - - Select two points and one line from the sketch. - Seleziona due punti e una linea dello sketch. + Select two points and one line from the sketch. + Seleziona due punti e una linea dello sketch. - Select exactly one line from the sketch. - Seleziona esattamente una linea dallo sketch. + Select exactly one line from the sketch. + Seleziona esattamente una linea dello sketch. - Select two lines from the sketch. - Seleziona due linee dallo sketch. + Select two lines from the sketch. + Seleziona due linee dello sketch. - Select exactly two lines from the sketch. - Selezionare esattamente due linee dallo sketch. + Select exactly two lines from the sketch. + Selezionare esattamente due linee dello sketch. - - - Select two entities from the sketch. - Seleziona due entità dello sketch. + Select two entities from the sketch. + Seleziona due entità dello sketch. - - - - - Select exactly two entities from the sketch. - Seleziona esattamente due entità dello sketch. + Select exactly two entities from the sketch. + Seleziona esattamente due entità dello sketch. - - Edit sketch - Modifica sketch + + Edit sketch + Modifica sketch - - A dialog is already open in the task panel - Una finestra di dialogo è già aperta nel pannello attività + A dialog is already open in the task panel + Una finestra di dialogo è già aperta nel pannello attività - - Do you want to close this dialog? - Vuoi chiudere questa finestra di dialogo? + Do you want to close this dialog? + Vuoi chiudere questa finestra di dialogo? - - Several sub-elements selected - Diversi sottoelementi selezionati + + Several sub-elements selected + Diversi sottoelementi selezionati - - You have to select a single face as support for a sketch! - Devi selezionare una singola faccia come supporto per uno sketch! + You have to select a single face as support for a sketch! + Devi selezionare una singola faccia come supporto per uno sketch! - - No support face selected - Nessuna faccia di supporto selezionata + No support face selected + Nessuna faccia di supporto selezionata - - You have to select a face as support for a sketch! - Devi selezionare una faccia come supporto per uno sketch! + You have to select a face as support for a sketch! + Devi selezionare una faccia come supporto per uno sketch! - - No planar support - Nessun supporto planare + No planar support + Nessun supporto planare - - You need a planar face as support for a sketch! - Hai bisogno di una faccia planare come supporto per uno sketch! + You need a planar face as support for a sketch! + Hai bisogno di una faccia planare come supporto per uno sketch! - - Distance constraint - Vincolo di distanza + + Distance constraint + Vincolo di distanza - - Not allowed to edit the datum because the sketch contains conflicting constraints - Non è consentito modificare il dato perché lo sketch contiene vincoli in conflitto + Not allowed to edit the datum because the sketch contains conflicting constraints + Non è consentito modificare il dato perché lo sketch contiene vincoli in conflitto - - Dimensional constraint - Dimensional constraint + Dimensional constraint + Vincolo di lunghezza - - + + SketchOrientationDialog - Choose orientation - Scegli l'orientamento + Choose orientation + Scegli l'orientamento - Sketch orientation - Orientamento dello sketch + Sketch orientation + Orientamento dello sketch - XY-Plane - Piano XY + XY-Plane + Piano XY - XZ-Plane - Piano XZ + XZ-Plane + Piano XZ - YZ-Plane - Piano YZ + YZ-Plane + Piano YZ - Reverse direction - Direzione inversa + Reverse direction + Direzione inversa - Offset: - Offset: + Offset: + Offset: - - + + SketcherGui::InsertDatum - - Insert datum - Inserisci riferimento + + Insert datum + Inserisci il dato - - datum: - Riferimento: + datum: + Dato: - - + + SketcherGui::SketchOrientationDialog - - Choose orientation - Scegli l'orientamento + + Choose orientation + Scegli l'orientamento - - Sketch orientation - Orientamento dello sketch + Sketch orientation + Orientamento dello sketch - - XY-Plane - Piano XY + XY-Plane + Piano XY - - XZ-Plane - Piano XZ + XZ-Plane + Piano XZ - - YZ-Plane - Piano YZ + YZ-Plane + Piano YZ - - Reverse direction - Direzione inversa + Reverse direction + Direzione inversa - - Offset: - Offset: + Offset: + Offset: - - + + SketcherGui::TaskSketcherConstrains - - Form - Modulo + + Form + Modulo - - Filter: - Filtro: + Filter: + Filtro: - - All - Tutto + All + Tutti - - Normal - Normale + Normal + Normale - - Datums - Riferimenti + Datums + Dati - - Named - Denominato + Named + Denominato - - Constraints - Vincoli + + Constraints + Vincoli - - + + SketcherGui::TaskSketcherGeneral - - Form - Modulo + + Form + Modulo - - Grid size: - Grid size: + Grid size: + Dimensione della griglia: - - Grid snap - Grid snap + Grid snap + Snap alla griglia - Unsolved - Non risolto + Unsolved + Non risolto - Grid Snap - Snap griglia + Grid Snap + Snap alla griglia - 0.1 mm - 0,1 mm + 0.1 mm + 0,1 mm - 0.2 mm - 0,2 mm + 0.2 mm + 0,2 mm - 0.5 mm - 0,5 mm + 0.5 mm + 0,5 mm - 1 mm - 1 mm + 1 mm + 1 mm - 2 mm - 2 mm + 2 mm + 2 mm - 5 mm - 5 mm + 5 mm + 5 mm - 10 mm - 10 mm + 10 mm + 10 mm - 20 mm - 20 mm + 20 mm + 20 mm - 50 mm - 50 mm + 50 mm + 50 mm - 100 mm - 100 mm + 100 mm + 100 mm - 200 mm - 200 mm + 200 mm + 200 mm - 500 mm - 500 mm + 500 mm + 500 mm - 1 m - 1 m + 1 m + 1 m - 2 m - 2 m + 2 m + 2 m - 5 m - 5 m + 5 m + 5 m - 10 m - 10 m + 10 m + 10 m - 20 m - 20 m + 20 m + 20 m - - Auto constraints - Autovincoli + Auto constraints + Vincoli automatici - auto constraints - vincoli automatici + auto constraints + vincoli automatici - - Edit controls - Modifica controlli + + Edit controls + Modifica controlli - - + + SketcherGui::TaskSketcherMessages - - Solver messages - Messaggi Solver + + Solver messages + Messaggi Solver - - + + TaskSketcherConstrains - Constraints - Vincoli + Constraints + Vincoli - - + + TaskSketcherCreateCommands - Appearance - Aspetto + Appearance + Aspetto - - + + TaskSketcherGeneral - Edit controls - Modifica controlli + Edit controls + Modifica controlli - - + + TaskSketcherMessages - - Form - Modulo + + Form + Modulo - - Undefined degrees of freedom - Gradi di libertà indefiniti + Undefined degrees of freedom + Gradi di libertà indefiniti - - Not solved yet - Non ancora risolto + Not solved yet + Non ancora risolto - - + + Workbench - - Sketcher - Sketcher + + Sketcher + Sketcher - - Sketcher geometries - Geometrie Sketcher + Sketcher geometries + Geometrie Sketcher - Sketcher geoms - Geometrie dello Sketcher + Sketcher geoms + Geometrie dello Sketcher - - Sketcher constraints - Vincoli dello Sketcher + Sketcher constraints + Vincoli dello Sketcher - + diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ja.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ja.qm index 0412e80b0..04e604992 100644 Binary files a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ja.qm and b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ja.qm differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ja.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ja.ts index ed47da1e9..672cd2f3e 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ja.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ja.ts @@ -1,1299 +1,1052 @@ - - + + CmdSketcherConstrainAngle - - Sketcher - Sketcher + + Sketcher + Sketcher - - Constrain angle - 角度を拘束 + Constrain angle + 角度を拘束 - - Fix the angle of a line or the angle between two lines - Fix the angle of a line or the angle between two lines + Fix the angle of a line or the angle between two lines + Fix the angle of a line or the angle between two lines - - + + CmdSketcherConstrainCoincident - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain coincident - 同時拘束 + Constrain coincident + 同時拘束 - - Create a coincident constraint on the selected item - Create a coincident constraint on the selected item + Create a coincident constraint on the selected item + Create a coincident constraint on the selected item - - + + CmdSketcherConstrainDistance - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain distance - 変位拘束 + Constrain distance + 変位拘束 - - Fix a length of a line or the distance between a line and a vertex - Fix a length of a line or the distance between a line and a vertex + Fix a length of a line or the distance between a line and a vertex + Fix a length of a line or the distance between a line and a vertex - - + + CmdSketcherConstrainDistanceX - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain horizontal distance - 水平変位を拘束 + Constrain horizontal distance + 水平変位を拘束 - Constrain vertical distance - 垂直方向の距離を制約する + Constrain vertical distance + Constrain vertical distance - - Fix the horizontal distance between two points or line ends - Fix the horizontal distance between two points or line ends + Fix the horizontal distance between two points or line ends + Fix the horizontal distance between two points or line ends - - + + CmdSketcherConstrainDistanceY - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain vertical distance - 垂直方向の距離を制約する + Constrain vertical distance + Constrain vertical distance - Constrain horizontal distance - 水平変位を拘束 + Constrain horizontal distance + 水平変位を拘束 - - Fix the vertical distance between two points or line ends - 2つの点や線の端点の間の垂直距離を修正 + Fix the vertical distance between two points or line ends + 2つの点や線の端点の間の垂直距離を修正 - - + + CmdSketcherConstrainEqual - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain equal - Constrain equal + Constrain equal + Constrain equal - - Create an equality constraint between two lines or between circles and arcs - Create an equality constraint between two lines or between circles and arcs + Create an equality constraint between two lines or between circles and arcs + Create an equality constraint between two lines or between circles and arcs - - + + CmdSketcherConstrainHorizontal - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain horizontally - 水平拘束 + Constrain horizontally + 水平拘束 - - Create a horizontal constraint on the selected item - Create a horizontal constraint on the selected item + Create a horizontal constraint on the selected item + Create a horizontal constraint on the selected item - - + + CmdSketcherConstrainLock - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain lock - Constrain lock + Constrain lock + Constrain lock - - Create a lock constraint on the selected item - Create a lock constraint on the selected item + Create a lock constraint on the selected item + Create a lock constraint on the selected item - - + + CmdSketcherConstrainParallel - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain parallel - 平行拘束 + Constrain parallel + 平行拘束 - - Create a parallel constraint between two lines - 2直線間の平行拘束を作成します + Create a parallel constraint between two lines + 2直線間の平行拘束を作成します - - + + CmdSketcherConstrainPerpendicular - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain perpendicular - 垂直拘束 + Constrain perpendicular + 垂直拘束 - - Create a Perpendicular constraint between two lines - 2つの直線間の垂直拘束を作成 + Create a Perpendicular constraint between two lines + 2つの直線間の垂直拘束を作成 - - + + CmdSketcherConstrainPointOnObject - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain point onto object - Constrain point onto object + Constrain point onto object + Constrain point onto object - - Fix a point onto an object - Fix a point onto an object + Fix a point onto an object + Fix a point onto an object - - + + CmdSketcherConstrainRadius - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain radius - 半径を拘束 + Constrain radius + 半径を拘束 - - Fix the radius of a circle or an arc - 円の半径または円弧を修正 + Fix the radius of a circle or an arc + 円の半径または円弧を修正 - - + + CmdSketcherConstrainSymmetric - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain symmetrical - Constrain symmetrical + Constrain symmetrical + Constrain symmetrical - - Create an symmetry constraint between two points with respect to a line - Create an symmetry constraint between two points with respect to a line + Create an symmetry constraint between two points with respect to a line + Create an symmetry constraint between two points with respect to a line - - + + CmdSketcherConstrainTangent - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain tangent - Constrain tangent + Constrain tangent + 正接を拘束 - - Create a tangent constraint between two entities - Create a tangent constraint between two entities + Create a tangent constraint between two entities + 2 つのエンティティ間の正接拘束を作成 - - + + CmdSketcherConstrainVertical - - Sketcher - Sketcher + Sketcher + Sketcher - - Constrain vertically - 垂直拘束 + Constrain vertically + 垂直拘束 - - Create a vertical constraint on the selected item - 選択した項目の垂直拘束を作成します + Create a vertical constraint on the selected item + 選択した項目の垂直拘束を作成します - - + + CmdSketcherCreateArc - - Sketcher - Sketcher + + Sketcher + Sketcher - - Create arc - 円弧 + Create arc + 円弧 - - Create an arc in the sketch - スケッチに円弧を作成します + Create an arc in the sketch + スケッチに円弧を作成します - - + + CmdSketcherCreateCircle - - Sketcher - Sketcher + Sketcher + Sketcher - - Create circle - + Create circle + - - Create a circle in the sketch - スケッチの円を作成します + Create a circle in the sketch + スケッチの円を作成します - - + + CmdSketcherCreateDraftLine - - Sketcher - Sketcher + Sketcher + Sketcher - - Create draft line - Create draft line + Create draft line + Create draft line - - Create a draft line in the sketch - Create a draft line in the sketch + Create a draft line in the sketch + Create a draft line in the sketch - - + + CmdSketcherCreateFillet - - Sketcher - Sketcher + Sketcher + Sketcher - - Create fillet - Create fillet + Create fillet + フィレットを作成します。 - - Create a fillet between two lines or at a coincidental point - + Create a fillet between two lines or at a coincidental point + Create a fillet between two lines or at a coincidental point - Create a fillet between two lines or at a coincident point - Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point - - + + CmdSketcherCreateLine - - Sketcher - Sketcher + Sketcher + Sketcher - - Create line - 直線 + Create line + 直線 - - Create a line in the sketch - 直線のスケッチを作成します + Create a line in the sketch + 直線のスケッチを作成します - - + + CmdSketcherCreatePoint - - Sketcher - Sketcher + Sketcher + Sketcher - - Create point - + Create point + - - Create a point in the sketch - 点のスケッチを作成します + Create a point in the sketch + 点のスケッチを作成します - - + + CmdSketcherCreatePolyline - - Sketcher - Sketcher + Sketcher + Sketcher - - Create polyline - ポリライン + Create polyline + ポリライン - - Create a polyline in the sketch - ポリラインのスケッチを作成します + Create a polyline in the sketch + ポリラインのスケッチを作成します - - + + CmdSketcherCreateRectangle - - Sketcher - Sketcher + Sketcher + Sketcher - - Create rectangle - 矩形を作成 + Create rectangle + 矩形を作成 - - Create a rectangle in the sketch - 矩形のスケッチを作成します + Create a rectangle in the sketch + 矩形のスケッチを作成します - - + + CmdSketcherCreateText - - Sketcher - Sketcher + Sketcher + Sketcher - - Create text - テキスト + Create text + テキスト - - Create text in the sketch - テキストのスケッチを作成します + Create text in the sketch + テキストのスケッチを作成します - - + + CmdSketcherExternal - - Sketcher - Sketcher + Sketcher + Sketcher - - External geometry - + External geometry + External geometry - - Create an edge linked to an external geometry - + Create an edge linked to an external geometry + Create an edge linked to an external geometry - - + + CmdSketcherLeaveSketch - - Sketcher - Sketcher + + Sketcher + Sketcher - - Leave sketch - スケッチを終了 + Leave sketch + スケッチを終了 - - Close the editing of the sketch - Close the editing of the sketch + Close the editing of the sketch + Close the editing of the sketch - - + + CmdSketcherMapSketch - - Sketcher - Sketcher + Sketcher + Sketcher - - Map sketch to face... - Map sketch to face... + Map sketch to face... + Map sketch to face... - - Map a sketch to a face - Map a sketch to a face + Map a sketch to a face + Map a sketch to a face - - + + CmdSketcherNewSketch - - Sketcher - Sketcher + Sketcher + Sketcher - - Create sketch - スケッチを作成します。 + Create sketch + スケッチを作成します。 - - Create a new or edit the selected sketch - Create a new or edit the selected sketch + Create a new or edit the selected sketch + 新しいスケッチを作成または選択されたスケッチを編集する - Create a new sketch - 新規スケッチを作成 + Create a new sketch + 新規スケッチを作成 - - + + CmdSketcherNewSketchSF - Sketcher - Sketcher + Sketcher + Sketcher - Sketchflat sketch - Sketchflat sketch + Sketchflat sketch + Sketchflat sketch - Create a new sketchflat sketch by starting externel editor - Create a new sketchflat sketch by starting externel editor + Create a new sketchflat sketch by starting externel editor + Create a new sketchflat sketch by starting externel editor - - + + CmdSketcherToggleConstruction - - Sketcher - Sketcher + + Sketcher + Sketcher - - Toggle construction line - Toggle construction line + Toggle construction line + 補助線の切り替え - - Toggles the currently selected lines to/from construction mode - Toggles the currently selected lines to/from construction mode + Toggles the currently selected lines to/from construction mode + Toggles the currently selected lines to/from construction mode - - + + CmdSketcherTrimming - - Sketcher - Sketcher + + Sketcher + Sketcher - - Trim edge - Trim edge + Trim edge + Trim edge - - Trim an edge with respect to the picked position - + Trim an edge with respect to the picked position + Trim an edge with respect to the picked position - Trims an edge with respect to the picked position - Trims an edge with respect to the picked position + Trims an edge with respect to the picked position + Trims an edge with respect to the picked position - - + + CmdSketcherViewSketch - - Sketcher - Sketcher + + Sketcher + Sketcher - - View sketch - View sketch + View sketch + スケッチを表示 - - View sketch perpendicular to sketch plane - View sketch perpendicular to sketch plane + View sketch perpendicular to sketch plane + View sketch perpendicular to sketch plane - - + + Gui::TaskView::TaskSketcherCreateCommands - - Appearance - 外観 + + Appearance + 外観 - - + + QObject - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Wrong selection - 誤った選択 + + Wrong selection + 誤った選択 - - Select edge(s) from the sketch. - Select edge(s) from the sketch. + Select edge(s) from the sketch. + Select edge(s) from the sketch. - - - Select an edge from the sketch. - スケッチからエッジを選択します + + Select an edge from the sketch. + スケッチからエッジを選択します - - - Double constraint - Double constraint + Double constraint + Double constraint - - - The selected edge has already a horizontal constraint! - The selected edge has already a horizontal constraint! + The selected edge has already a horizontal constraint! + The selected edge has already a horizontal constraint! - - - - - - - Impossible constraint - 不可能な拘束 + Impossible constraint + 不可能な拘束 - - Cannot add a constraint between two external geometries! - + Cannot add a constraint between two external geometries! + Cannot add a constraint between two external geometries! - - - - Only sketch and its support is allowed to select - Only sketch and its support is allowed to select + Only sketch and its support is allowed to select + スケッチとそのサポートのみが選択可能です - - One of the selected has to be on the sketch - One of the selected has to be on the sketch + One of the selected has to be on the sketch + One of the selected has to be on the sketch - - - The selected edge is not a line segment - The selected edge is not a line segment + The selected edge is not a line segment + 選択したエッジは線分ではありません - - - The selected edge has already a vertical constraint! - The selected edge has already a vertical constraint! + The selected edge has already a vertical constraint! + The selected edge has already a vertical constraint! - - The selected item(s) can't accept a horizontal constraint! - + The selected item(s) can't accept a horizontal constraint! + The selected item(s) can't accept a horizontal constraint! - - The selected item(s) can't accept a vertical constraint! - + The selected item(s) can't accept a vertical constraint! + The selected item(s) can't accept a vertical constraint! - - Select entities from the sketch. - Select entities from the sketch. + Select entities from the sketch. + Select entities from the sketch. - - - Select exactly one entity from the sketch. - Select exactly one entity from the sketch. + Select exactly one entity from the sketch. + Select exactly one entity from the sketch. - - - - - - - Select vertexes from the sketch. - Select vertexes from the sketch. + Select vertexes from the sketch. + Select vertexes from the sketch. - - - - Select exactly two vertexes from the sketch. - Select exactly two vertexes from the sketch. + Select exactly two vertexes from the sketch. + Select exactly two vertexes from the sketch. - - - Select exactly one line or one point and one line or two points from the sketch. - Select exactly one line or one point and one line or two points from the sketch. + Select exactly one line or one point and one line or two points from the sketch. + Select exactly one line or one point and one line or two points from the sketch. - - Cannot add a length constraint on an external geometry! - + Cannot add a length constraint on an external geometry! + Cannot add a length constraint on an external geometry! - - - Select exactly one point and one object from the sketch. - Select exactly one point and one object from the sketch. + Select exactly one point and one object from the sketch. + Select exactly one point and one object from the sketch. - - - - - Select exactly one line or up to two points from the sketch. - Select exactly one line or up to two points from the sketch. + Select exactly one line or up to two points from the sketch. + Select exactly one line or up to two points from the sketch. - - Cannot add a horizontal length constraint on an external geometry! - + Cannot add a horizontal length constraint on an external geometry! + Cannot add a horizontal length constraint on an external geometry! - - Cannot add a vertical length constraint on an external geometry! - + Cannot add a vertical length constraint on an external geometry! + Cannot add a vertical length constraint on an external geometry! - - Select two or more lines from the sketch. - スケッチから2本以上の直線を選択しま.。 + Select two or more lines from the sketch. + スケッチから2本以上の直線を選択しま.。 - - Select at least two lines from the sketch. - Select at least two lines from the sketch. + Select at least two lines from the sketch. + Select at least two lines from the sketch. - - Select a valid line - 有効な直線を選択 + Select a valid line + 有効な直線を選択 - - The selected edge is not a valid line - The selected edge is not a valid line + The selected edge is not a valid line + The selected edge is not a valid line - - The selected points should be end points of arcs and lines. - + The selected points should be end points of arcs and lines. + The selected points should be end points of arcs and lines. - - The selected point should be an end point of an arc or line. - + The selected point should be an end point of an arc or line. + The selected point should be an end point of an arc or line. - - The selected edge should be an arc, line or circle. - + The selected edge should be an arc, line or circle. + The selected edge should be an arc, line or circle. - - One of the selected edges should be a line. - + One of the selected edges should be a line. + One of the selected edges should be a line. - - - - Select exactly one arc or circle from the sketch. - Select exactly one arc or circle from the sketch. + Select exactly one arc or circle from the sketch. + Select exactly one arc or circle from the sketch. - - Select one or two lines from the sketch. - + Select one or two lines from the sketch. + Select one or two lines from the sketch. - - Cannot add an angle constraint on an external geometry! - + Cannot add an angle constraint on an external geometry! + Cannot add an angle constraint on an external geometry! - - Select exactly one or two lines from the sketch. - Select exactly one or two lines from the sketch. + Select exactly one or two lines from the sketch. + Select exactly one or two lines from the sketch. - - Select two edges from the sketch. - スケッチから二つのエッジを選択します. + Select two edges from the sketch. + スケッチから二つのエッジを選択します. - - Select atleast two lines from the sketch. - Select atleast two lines from the sketch. + Select atleast two lines from the sketch. + Select atleast two lines from the sketch. - - Select two or more compatible edges - + Select two or more compatible edges + Select two or more compatible edges - - Sketch axes cannot be used in equality constraints - + Sketch axes cannot be used in equality constraints + Sketch axes cannot be used in equality constraints - - - Select two or more edges of similar type - + Select two or more edges of similar type + Select two or more edges of similar type - - Cannot add a constraint between external geometries! - + Cannot add a constraint between external geometries! + Cannot add a constraint between external geometries! - Select exactly two same geometries - Select exactly two same geometries + Select exactly two same geometries + Select exactly two same geometries - Select valid geometries - 有効なジオメトリを選択してください + Select valid geometries + 有効なジオメトリを選択してください - Select geometry of similar type - 同じタイプのジオメトリを選択 + Select geometry of similar type + 同じタイプのジオメトリを選択 - - - - Select two points and one line from the sketch. - 2つの点と1つの直線をスケッチから選択 + Select two points and one line from the sketch. + 2つの点と1つの直線をスケッチから選択 - Select exactly one line from the sketch. - Select exactly one line from the sketch. + Select exactly one line from the sketch. + Select exactly one line from the sketch. - Select two lines from the sketch. - スケッチから2本の直線を選択します. + Select two lines from the sketch. + スケッチから2本の直線を選択します. - Select exactly two lines from the sketch. - Select exactly two lines from the sketch. + Select exactly two lines from the sketch. + Select exactly two lines from the sketch. - - - Select two entities from the sketch. - Select two entities from the sketch. + Select two entities from the sketch. + Select two entities from the sketch. - - - - - Select exactly two entities from the sketch. - Select exactly two entities from the sketch. + Select exactly two entities from the sketch. + Select exactly two entities from the sketch. - - Edit sketch - スケッチを編集 + + Edit sketch + スケッチを編集 - - A dialog is already open in the task panel - A dialog is already open in the task panel + A dialog is already open in the task panel + A dialog is already open in the task panel - - Do you want to close this dialog? - Do you want to close this dialog? + Do you want to close this dialog? + Do you want to close this dialog? - - Several sub-elements selected - いくつかのサブ要素を選択 + + Several sub-elements selected + いくつかのサブ要素を選択 - - You have to select a single face as support for a sketch! - You have to select a single face as support for a sketch! + You have to select a single face as support for a sketch! + スケッチサポートとして単一の面を選択する必要があります。 - - No support face selected - No support face selected + No support face selected + サポート面が選択されていません - - You have to select a face as support for a sketch! - You have to select a face as support for a sketch! + You have to select a face as support for a sketch! + スケッチサポートとして面を選択する必要があります。 - - No planar support - No planar support + No planar support + 平面のサポートがありません - - You need a planar face as support for a sketch! - You need a planar face as support for a sketch! + You need a planar face as support for a sketch! + スケッチサポートとして平面が必要です。 - - Distance constraint - 変位の拘束 + + Distance constraint + 変位の拘束 - - Not allowed to edit the datum because the sketch contains conflicting constraints - Not allowed to edit the datum because the sketch contains conflicting constraints + Not allowed to edit the datum because the sketch contains conflicting constraints + Not allowed to edit the datum because the sketch contains conflicting constraints - - Dimensional constraint - Dimensional constraint + Dimensional constraint + 寸法拘束 - - + + SketchOrientationDialog - Choose orientation - 方向を選択 + Choose orientation + 方向を選択 - Sketch orientation - スケッチの向き + Sketch orientation + スケッチの向き - XY-Plane - xy平面 + XY-Plane + xy平面 - XZ-Plane - XZ 平面 + XZ-Plane + XZ 平面 - YZ-Plane - YZ 平面 + YZ-Plane + YZ 平面 - Reverse direction - 逆方向 + Reverse direction + 逆方向 - Offset: - オフセット: + Offset: + オフセット: - - + + SketcherGui::InsertDatum - - Insert datum - Insert datum + + Insert datum + Insert datum - - datum: - datum: + datum: + datum: - - + + SketcherGui::SketchOrientationDialog - - Choose orientation - 方向を選択 + + Choose orientation + 方向を選択 - - Sketch orientation - スケッチの向き + Sketch orientation + スケッチの向き - - XY-Plane - xy平面 + XY-Plane + xy平面 - - XZ-Plane - XZ 平面 + XZ-Plane + XZ 平面 - - YZ-Plane - YZ 平面 + YZ-Plane + YZ 平面 - - Reverse direction - 逆方向 + Reverse direction + 逆方向 - - Offset: - オフセット: + Offset: + オフセット: - - + + SketcherGui::TaskSketcherConstrains - - Form - Form + + Form + Form - - Filter: - フィルター: + Filter: + フィルター: - - All - すべて + All + すべて - - Normal - 法線 + Normal + 法線 - - Datums - Datums + Datums + Datums - - Named - Named + Named + Named - - Constraints - Constraints + + Constraints + Constraints - - + + SketcherGui::TaskSketcherGeneral - - Form - Form + + Form + Form - - Grid size: - Grid size: + Grid size: + グリッドサイズ: - - Grid snap - Grid snap + Grid snap + グリッドにスナップ - Unsolved - Unsolved + Unsolved + Unsolved - Grid Snap - Grid Snap + Grid Snap + Grid Snap - 0.1 mm - 0.1 mm + 0.1 mm + 0.1 mm - 0.2 mm - 0.2 mm + 0.2 mm + 0.2 mm - 0.5 mm - 0.5 mm + 0.5 mm + 0.5 mm - 1 mm - 1 mm + 1 mm + 1 mm - 2 mm - 2 mm + 2 mm + 2 mm - 5 mm - 5 mm + 5 mm + 5 mm - 10 mm - 10 mm + 10 mm + 10 mm - 20 mm - 20 mm + 20 mm + 20 mm - 50 mm - 50 mm + 50 mm + 50 mm - 100 mm - 100 mm + 100 mm + 100 mm - 200 mm - 200 mm + 200 mm + 200 mm - 500 mm - 500 mm + 500 mm + 500 mm - 1 m - 1 m + 1 m + 1 m - 2 m - 2 m + 2 m + 2 m - 5 m - 5 m + 5 m + 5 m - 10 m - 10 m + 10 m + 10 m - 20 m - 20 m + 20 m + 20 m - - Auto constraints - Auto constraints + Auto constraints + 自動拘束 - auto constraints - auto constraints + auto constraints + auto constraints - - Edit controls - Edit controls + + Edit controls + Edit controls - - + + SketcherGui::TaskSketcherMessages - - Solver messages - Solver messages + + Solver messages + Solver messages - - + + TaskSketcherConstrains - Constraints - Constraints + Constraints + Constraints - - + + TaskSketcherCreateCommands - Appearance - 外観 + Appearance + 外観 - - + + TaskSketcherGeneral - Edit controls - Edit controls + Edit controls + Edit controls - - + + TaskSketcherMessages - - Form - Form + + Form + Form - - Undefined degrees of freedom - Undefined degrees of freedom + Undefined degrees of freedom + Undefined degrees of freedom - - Not solved yet - 未解決 + Not solved yet + 未解決 - - + + Workbench - - Sketcher - Sketcher + + Sketcher + Sketcher - - Sketcher geometries - Sketcher geometries + Sketcher geometries + Sketcher geometries - Sketcher geoms - Sketcher geoms + Sketcher geoms + Sketcher geoms - - Sketcher constraints - Sketcher constraints + Sketcher constraints + Sketcher constraints - + diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_nl.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_nl.qm index 88b2deba7..ac6a9a139 100644 Binary files a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_nl.qm and b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_nl.qm differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_nl.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_nl.ts index 360eb25e6..b57ca074b 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_nl.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_nl.ts @@ -1,1299 +1,1052 @@ - - + + CmdSketcherConstrainAngle - - Sketcher - Schetsen + + Sketcher + Schetsen - - Constrain angle - Beperk hoek + Constrain angle + Beperk hoek - - Fix the angle of a line or the angle between two lines - Zet de hoek van een lijn of de hoek tussen twee lijnen vast + Fix the angle of a line or the angle between two lines + Zet de hoek van een lijn of de hoek tussen twee lijnen vast - - + + CmdSketcherConstrainCoincident - - Sketcher - Schetsen + Sketcher + Schetsen - - Constrain coincident - Samenvallende beperking + Constrain coincident + Samenvallende beperking - - Create a coincident constraint on the selected item - Maak een samenvallende beperking op het geselecteerde item + Create a coincident constraint on the selected item + Maak een samenvallende beperking op het geselecteerde item - - + + CmdSketcherConstrainDistance - - Sketcher - Schetsen + Sketcher + Schetsen - - Constrain distance - Afstand beperking + Constrain distance + Afstand beperking - - Fix a length of a line or the distance between a line and a vertex - Vergrendel de lengte van een lijn of de afstand tussen een lijn en een punt + Fix a length of a line or the distance between a line and a vertex + Vergrendel de lengte van een lijn of de afstand tussen een lijn en een punt - - + + CmdSketcherConstrainDistanceX - - Sketcher - Schetsen + Sketcher + Schetsen - - Constrain horizontal distance - Beperk horizontale afstand + Constrain horizontal distance + Beperk horizontale afstand - Constrain vertical distance - Beperk verticale afstand + Constrain vertical distance + Constrain vertical distance - - Fix the horizontal distance between two points or line ends - De horizontale afstand tussen twee punten of lijneinden vastzetten + Fix the horizontal distance between two points or line ends + De horizontale afstand tussen twee punten of lijneinden vastzetten - - + + CmdSketcherConstrainDistanceY - - Sketcher - Schetsen + Sketcher + Schetsen - - Constrain vertical distance - Beperk verticale afstand + Constrain vertical distance + Constrain vertical distance - Constrain horizontal distance - Beperk horizontale afstand + Constrain horizontal distance + Beperk horizontale afstand - - Fix the vertical distance between two points or line ends - De verticale afstand tussen twee punten of lijneinden vastzetten + Fix the vertical distance between two points or line ends + De verticale afstand tussen twee punten of lijneinden vastzetten - - + + CmdSketcherConstrainEqual - - Sketcher - Schetsen + Sketcher + Schetsen - - Constrain equal - Gelijke beperken + Constrain equal + Gelijke beperken - - Create an equality constraint between two lines or between circles and arcs - Maak een Gelijkheidsbeperking tussen twee lijnen of tussen cirkels en bogen + Create an equality constraint between two lines or between circles and arcs + Maak een Gelijkheidsbeperking tussen twee lijnen of tussen cirkels en bogen - - + + CmdSketcherConstrainHorizontal - - Sketcher - Schetsen + Sketcher + Schetsen - - Constrain horizontally - Horizontale beperking + Constrain horizontally + Horizontale beperking - - Create a horizontal constraint on the selected item - Maak een horizontale beperking op het geselecteerde item + Create a horizontal constraint on the selected item + Maak een horizontale beperking op het geselecteerde item - - + + CmdSketcherConstrainLock - - Sketcher - Schetsen + Sketcher + Schetsen - - Constrain lock - Vastzet beperking + Constrain lock + Vastzet beperking - - Create a lock constraint on the selected item - Vergrendel het geselecteerde item + Create a lock constraint on the selected item + Vergrendel het geselecteerde item - - + + CmdSketcherConstrainParallel - - Sketcher - Schetsen + Sketcher + Schetsen - - Constrain parallel - Parallelle-beperking + Constrain parallel + Parallelle-beperking - - Create a parallel constraint between two lines - Maak een parallelle beperking tussen twee lijnen + Create a parallel constraint between two lines + Maak een parallelle beperking tussen twee lijnen - - + + CmdSketcherConstrainPerpendicular - - Sketcher - Schetsen + Sketcher + Schetsen - - Constrain perpendicular - Beperk loodrecht + Constrain perpendicular + Beperk loodrecht - - Create a Perpendicular constraint between two lines - Maak een Loodrecht-beperking tussen twee lijnen + Create a Perpendicular constraint between two lines + Maak een Loodrecht-beperking tussen twee lijnen - - + + CmdSketcherConstrainPointOnObject - - Sketcher - Schetsen + Sketcher + Schetsen - - Constrain point onto object - Zet punt vast op object + Constrain point onto object + Zet punt vast op object - - Fix a point onto an object - Een punt op een object vastleggen + Fix a point onto an object + Een punt op een object vastleggen - - + + CmdSketcherConstrainRadius - - Sketcher - Schetsen + Sketcher + Schetsen - - Constrain radius - Straal vastzetten + Constrain radius + Straal vastzetten - - Fix the radius of a circle or an arc - De straal van een cirkel of boog vastzetten + Fix the radius of a circle or an arc + De straal van een cirkel of boog vastzetten - - + + CmdSketcherConstrainSymmetric - - Sketcher - Schetsen + Sketcher + Schetsen - - Constrain symmetrical - Symmetrische-beperken + Constrain symmetrical + Symmetrische-beperken - - Create an symmetry constraint between two points with respect to a line - Maak een symmetrie-beperking tussen twee punten ten opzichte van een lijn + Create an symmetry constraint between two points with respect to a line + Maak een symmetrie-beperking tussen twee punten ten opzichte van een lijn - - + + CmdSketcherConstrainTangent - - Sketcher - Schetsen + Sketcher + Schetsen - - Constrain tangent - Tangent beperken + Constrain tangent + Tangent beperken - - Create a tangent constraint between two entities - Tangentiële beperkingen tussen twee entiteiten maken + Create a tangent constraint between two entities + Tangentiële beperkingen tussen twee entiteiten maken - - + + CmdSketcherConstrainVertical - - Sketcher - Schetsen + Sketcher + Schetsen - - Constrain vertically - Verticale beperking + Constrain vertically + Verticale beperking - - Create a vertical constraint on the selected item - Maak een verticale beperking op het geselecteerde item + Create a vertical constraint on the selected item + Maak een verticale beperking op het geselecteerde item - - + + CmdSketcherCreateArc - - Sketcher - Schetsen + + Sketcher + Schetsen - - Create arc - Boog maken + Create arc + Boog maken - - Create an arc in the sketch - Maak een boog in de schets + Create an arc in the sketch + Maak een boog in de schets - - + + CmdSketcherCreateCircle - - Sketcher - Schetsen + Sketcher + Schetsen - - Create circle - Cirkel maken + Create circle + Cirkel maken - - Create a circle in the sketch - Maak een cirkel in de schets + Create a circle in the sketch + Maak een cirkel in de schets - - + + CmdSketcherCreateDraftLine - - Sketcher - Schetsen + Sketcher + Schetsen - - Create draft line - Ontwerplijn maken + Create draft line + Ontwerplijn maken - - Create a draft line in the sketch - Maak een ontwerplijn in de schets + Create a draft line in the sketch + Maak een ontwerplijn in de schets - - + + CmdSketcherCreateFillet - - Sketcher - Schetsen + Sketcher + Schetsen - - Create fillet - Maak afronding + Create fillet + Maak afronding - - Create a fillet between two lines or at a coincidental point - + Create a fillet between two lines or at a coincidental point + Create a fillet between two lines or at a coincidental point - Create a fillet between two lines or at a coincident point - Maak een afronding tussen twee lijnen of op een samenvallend punt + Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point - - + + CmdSketcherCreateLine - - Sketcher - Schetsen + Sketcher + Schetsen - - Create line - Lijn maken + Create line + Lijn maken - - Create a line in the sketch - Maak een lijn in de schets + Create a line in the sketch + Maak een lijn in de schets - - + + CmdSketcherCreatePoint - - Sketcher - Schetsen + Sketcher + Schetsen - - Create point - Punt maken + Create point + Punt maken - - Create a point in the sketch - Maak een punt in de schets + Create a point in the sketch + Maak een punt in de schets - - + + CmdSketcherCreatePolyline - - Sketcher - Schetsen + Sketcher + Schetsen - - Create polyline - Meervoudige lijn maken + Create polyline + Meervoudige lijn maken - - Create a polyline in the sketch - Maak een meervoudige lijn in de schets + Create a polyline in the sketch + Maak een meervoudige lijn in de schets - - + + CmdSketcherCreateRectangle - - Sketcher - Schetsen + Sketcher + Schetsen - - Create rectangle - Rechthoek maken + Create rectangle + Rechthoek maken - - Create a rectangle in the sketch - Maak een rechthoek in de schets + Create a rectangle in the sketch + Maak een rechthoek in de schets - - + + CmdSketcherCreateText - - Sketcher - Schetsen + Sketcher + Schetsen - - Create text - Tekst aanmaken + Create text + Tekst aanmaken - - Create text in the sketch - Tekst in de tekening aanmaken + Create text in the sketch + Tekst in de tekening aanmaken - - + + CmdSketcherExternal - - Sketcher - Schetsen + Sketcher + Schetsen - - External geometry - + External geometry + External geometry - - Create an edge linked to an external geometry - + Create an edge linked to an external geometry + Create an edge linked to an external geometry - - + + CmdSketcherLeaveSketch - - Sketcher - Schetsen + + Sketcher + Schetsen - - Leave sketch - Verlaat schets + Leave sketch + Verlaat schets - - Close the editing of the sketch - Sluit het bewerken van de schets + Close the editing of the sketch + Sluit het bewerken van de schets - - + + CmdSketcherMapSketch - - Sketcher - Schetsen + Sketcher + Schetsen - - Map sketch to face... - Wijs schets toe aan vlak... + Map sketch to face... + Wijs schets toe aan vlak... - - Map a sketch to a face - Een schets toewijzen aan een vlak + Map a sketch to a face + Een schets toewijzen aan een vlak - - + + CmdSketcherNewSketch - - Sketcher - Schetsen + Sketcher + Schetsen - - Create sketch - Maak schets + Create sketch + Maak schets - - Create a new or edit the selected sketch - Create a new or edit the selected sketch + Create a new or edit the selected sketch + Maak een nieuwe of bewerk de geselecteerde schets - Create a new sketch - Maak een nieuwe schets + Create a new sketch + Maak een nieuwe schets - - + + CmdSketcherNewSketchSF - Sketcher - Schetsen + Sketcher + Schetsen - Sketchflat sketch - Sketchflat schets + Sketchflat sketch + Sketchflat schets - Create a new sketchflat sketch by starting externel editor - Een nieuwe sketchflat-schets maken door uitwendige editor te starten + Create a new sketchflat sketch by starting externel editor + Een nieuwe sketchflat-schets maken door uitwendige editor te starten - - + + CmdSketcherToggleConstruction - - Sketcher - Schetsen + + Sketcher + Schetsen - - Toggle construction line - Schakel constructie-lijn + Toggle construction line + Schakel constructie-lijn - - Toggles the currently selected lines to/from construction mode - Schakelt de geselecteerde lijnen van/naar de constructie-modus + Toggles the currently selected lines to/from construction mode + Schakelt de geselecteerde lijnen van/naar de constructie-modus - - + + CmdSketcherTrimming - - Sketcher - Schetsen + + Sketcher + Schetsen - - Trim edge - Inkorten van rand + Trim edge + Inkorten van rand - - Trim an edge with respect to the picked position - + Trim an edge with respect to the picked position + Trim an edge with respect to the picked position - Trims an edge with respect to the picked position - Inkorten van rand in overeenstemming met de gekozen positie + Trims an edge with respect to the picked position + Inkorten van rand in overeenstemming met de gekozen positie - - + + CmdSketcherViewSketch - - Sketcher - Schetsen + + Sketcher + Schetsen - - View sketch - Bekijk schets + View sketch + Bekijk schets - - View sketch perpendicular to sketch plane - Bekijk schets loodrecht op het schetsvlak + View sketch perpendicular to sketch plane + Bekijk schets loodrecht op het schetsvlak - - + + Gui::TaskView::TaskSketcherCreateCommands - - Appearance - Vormgeving + + Appearance + Vormgeving - - + + QObject - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Wrong selection - Verkeerde selectie + + Wrong selection + Verkeerde selectie - - Select edge(s) from the sketch. - Selecteer rand(en) uit de schets. + Select edge(s) from the sketch. + Selecteer rand(en) uit de schets. - - - Select an edge from the sketch. - Selecteer een rand van de schets. + + Select an edge from the sketch. + Selecteer een rand van de schets. - - - Double constraint - Dubbele beperking + Double constraint + Dubbele beperking - - - The selected edge has already a horizontal constraint! - De geselecteerde rand heeft al een horizontale beperking! + The selected edge has already a horizontal constraint! + De geselecteerde rand heeft al een horizontale beperking! - - - - - - - Impossible constraint - Onmogelijk beperking + Impossible constraint + Onmogelijk beperking - - Cannot add a constraint between two external geometries! - + Cannot add a constraint between two external geometries! + Cannot add a constraint between two external geometries! - - - - Only sketch and its support is allowed to select - Alleen schets en haar steun is toegestaan ​​om te selecteren + Only sketch and its support is allowed to select + Alleen schets en haar steun is toegestaan ​​om te selecteren - - One of the selected has to be on the sketch - Eén van de geselecteerde moet deel uitmaken van de schets + One of the selected has to be on the sketch + Eén van de geselecteerde moet deel uitmaken van de schets - - - The selected edge is not a line segment - De geselecteerde rand is niet een lijnstuk + The selected edge is not a line segment + De geselecteerde rand is niet een lijnstuk - - - The selected edge has already a vertical constraint! - De geselecteerde rand heeft al een verticale beperking! + The selected edge has already a vertical constraint! + De geselecteerde rand heeft al een verticale beperking! - - The selected item(s) can't accept a horizontal constraint! - + The selected item(s) can't accept a horizontal constraint! + The selected item(s) can't accept a horizontal constraint! - - The selected item(s) can't accept a vertical constraint! - + The selected item(s) can't accept a vertical constraint! + The selected item(s) can't accept a vertical constraint! - - Select entities from the sketch. - Selecteer entiteiten van de schets. + Select entities from the sketch. + Selecteer entiteiten van de schets. - - - Select exactly one entity from the sketch. - Selecteer exact één entiteit van de schets. + Select exactly one entity from the sketch. + Selecteer exact één entiteit van de schets. - - - - - - - Select vertexes from the sketch. - Selecteer (hoek)punten van de schets. + Select vertexes from the sketch. + Selecteer (hoek)punten van de schets. - - - - Select exactly two vertexes from the sketch. - Selecteer precies twee (hoek)punten van de schets. + Select exactly two vertexes from the sketch. + Selecteer precies twee (hoek)punten van de schets. - - - Select exactly one line or one point and one line or two points from the sketch. - Selecteer precies één lijn of een punt en een lijn of twee punten uit de schets. + Select exactly one line or one point and one line or two points from the sketch. + Selecteer precies één lijn of een punt en een lijn of twee punten uit de schets. - - Cannot add a length constraint on an external geometry! - + Cannot add a length constraint on an external geometry! + Cannot add a length constraint on an external geometry! - - - Select exactly one point and one object from the sketch. - Selecteer exact één punt en één object uit de schets. + Select exactly one point and one object from the sketch. + Selecteer exact één punt en één object uit de schets. - - - - - Select exactly one line or up to two points from the sketch. - Selecteer precies een lijn of tot twee punten uit de schets. + Select exactly one line or up to two points from the sketch. + Selecteer precies een lijn of tot twee punten uit de schets. - - Cannot add a horizontal length constraint on an external geometry! - + Cannot add a horizontal length constraint on an external geometry! + Cannot add a horizontal length constraint on an external geometry! - - Cannot add a vertical length constraint on an external geometry! - + Cannot add a vertical length constraint on an external geometry! + Cannot add a vertical length constraint on an external geometry! - - Select two or more lines from the sketch. - Selecteer twee of meer lijnen van de schets. + Select two or more lines from the sketch. + Selecteer twee of meer lijnen van de schets. - - Select at least two lines from the sketch. - Kies tenminste twee lijnen van de schets. + Select at least two lines from the sketch. + Kies tenminste twee lijnen van de schets. - - Select a valid line - Selecteer een geldige lijn + Select a valid line + Selecteer een geldige lijn - - The selected edge is not a valid line - De geselecteerde rand is geen geldige lijn + The selected edge is not a valid line + De geselecteerde rand is geen geldige lijn - - The selected points should be end points of arcs and lines. - + The selected points should be end points of arcs and lines. + The selected points should be end points of arcs and lines. - - The selected point should be an end point of an arc or line. - + The selected point should be an end point of an arc or line. + The selected point should be an end point of an arc or line. - - The selected edge should be an arc, line or circle. - + The selected edge should be an arc, line or circle. + The selected edge should be an arc, line or circle. - - One of the selected edges should be a line. - + One of the selected edges should be a line. + One of the selected edges should be a line. - - - - Select exactly one arc or circle from the sketch. - Selecteer precies een boog of cirkel uit de schets. + Select exactly one arc or circle from the sketch. + Selecteer precies een boog of cirkel uit de schets. - - Select one or two lines from the sketch. - + Select one or two lines from the sketch. + Select one or two lines from the sketch. - - Cannot add an angle constraint on an external geometry! - + Cannot add an angle constraint on an external geometry! + Cannot add an angle constraint on an external geometry! - - Select exactly one or two lines from the sketch. - Selecteer precies een of twee lijnen uit de schets. + Select exactly one or two lines from the sketch. + Selecteer precies een of twee lijnen uit de schets. - - Select two edges from the sketch. - Selecteer twee randen van de schets. + Select two edges from the sketch. + Selecteer twee randen van de schets. - - Select atleast two lines from the sketch. - Kies tenminste twee lijnen van de schets. + Select atleast two lines from the sketch. + Kies tenminste twee lijnen van de schets. - - Select two or more compatible edges - + Select two or more compatible edges + Select two or more compatible edges - - Sketch axes cannot be used in equality constraints - + Sketch axes cannot be used in equality constraints + Sketch axes cannot be used in equality constraints - - - Select two or more edges of similar type - + Select two or more edges of similar type + Select two or more edges of similar type - - Cannot add a constraint between external geometries! - + Cannot add a constraint between external geometries! + Cannot add a constraint between external geometries! - Select exactly two same geometries - Selecteer precies twee dezelfde geometrieën + Select exactly two same geometries + Selecteer precies twee dezelfde geometrieën - Select valid geometries - Selecteer geldige geometrieën + Select valid geometries + Selecteer geldige geometrieën - Select geometry of similar type - Selecteer geometrie van hetzelfde type + Select geometry of similar type + Selecteer geometrie van hetzelfde type - - - - Select two points and one line from the sketch. - Selecteer twee punten en een lijn van de schets. + Select two points and one line from the sketch. + Selecteer twee punten en een lijn van de schets. - Select exactly one line from the sketch. - Selecteer precies één lijn van de schets. + Select exactly one line from the sketch. + Selecteer precies één lijn van de schets. - Select two lines from the sketch. - Selecteer twee lijnen van de schets. + Select two lines from the sketch. + Selecteer twee lijnen van de schets. - Select exactly two lines from the sketch. - Selecteer precies twee lijnen van de schets. + Select exactly two lines from the sketch. + Selecteer precies twee lijnen van de schets. - - - Select two entities from the sketch. - Selecteer twee entiteiten uit de schets. + Select two entities from the sketch. + Selecteer twee entiteiten uit de schets. - - - - - Select exactly two entities from the sketch. - Selecteer precies twee entiteiten uit de schets. + Select exactly two entities from the sketch. + Selecteer precies twee entiteiten uit de schets. - - Edit sketch - Schets bewerken + + Edit sketch + Schets bewerken - - A dialog is already open in the task panel - Een dialoog is al geopend in het deelvenster Taken + A dialog is already open in the task panel + Een dialoog is al geopend in het taakvenster - - Do you want to close this dialog? - Wilt u dit dialoogvenster sluiten? + Do you want to close this dialog? + Wilt u dit dialoogvenster sluiten? - - Several sub-elements selected - Verschillende sub-elementen geselecteerd + + Several sub-elements selected + Verschillende sub-elementen geselecteerd - - You have to select a single face as support for a sketch! - Je moet een enkel vlak selecteren als basis voor een schets! + You have to select a single face as support for a sketch! + Je moet een enkel vlak selecteren als basis voor een schets! - - No support face selected - Geen basisvlak geselecteerd + No support face selected + Geen basisvlak geselecteerd - - You have to select a face as support for a sketch! - Je moet een enkel vlak selecteren als basis voor een schets! + You have to select a face as support for a sketch! + Je moet een enkel vlak selecteren als basis voor een schets! - - No planar support - Geen platvlak + No planar support + Geen platvlak - - You need a planar face as support for a sketch! - Je hebt een platvlak nodig als basis voor een schets! + You need a planar face as support for a sketch! + Je hebt een platvlak nodig als basis voor een schets! - - Distance constraint - Afstand-beperking + + Distance constraint + Afstand-beperking - - Not allowed to edit the datum because the sketch contains conflicting constraints - Niet toegestaan ​​om de waarde te bewerken, omdat de schets conflicterende beperkingen bevat + Not allowed to edit the datum because the sketch contains conflicting constraints + Niet toegestaan ​​om de waarde te bewerken, omdat de schets conflicterende beperkingen bevat - - Dimensional constraint - Dimensional constraint + Dimensional constraint + Dimensionale beperking - - + + SketchOrientationDialog - Choose orientation - Kies oriëntatie + Choose orientation + Kies oriëntatie - Sketch orientation - Schets-oriëntatie + Sketch orientation + Schets-oriëntatie - XY-Plane - XY-vlak + XY-Plane + XY-vlak - XZ-Plane - XZ-vlak + XZ-Plane + XZ-vlak - YZ-Plane - YZ-vlak + YZ-Plane + YZ-vlak - Reverse direction - Richting omkeren + Reverse direction + Richting omkeren - Offset: - Offset: + Offset: + Offset: - - + + SketcherGui::InsertDatum - - Insert datum - Waarde invoeren + + Insert datum + Waarde invoeren - - datum: - Waarde: + datum: + Waarde: - - + + SketcherGui::SketchOrientationDialog - - Choose orientation - Kies oriëntatie + + Choose orientation + Kies oriëntatie - - Sketch orientation - Schets-oriëntatie + Sketch orientation + Schets-oriëntatie - - XY-Plane - XY-vlak + XY-Plane + XY-vlak - - XZ-Plane - XZ-vlak + XZ-Plane + XZ-vlak - - YZ-Plane - YZ-vlak + YZ-Plane + YZ-vlak - - Reverse direction - Richting omkeren + Reverse direction + Richting omkeren - - Offset: - Offset: + Offset: + Offset: - - + + SketcherGui::TaskSketcherConstrains - - Form - Formulier + + Form + Vorm - - Filter: - Filter: + Filter: + Filter: - - All - Alles + All + Alle - - Normal - Normaal + Normal + Normaal - - Datums - Waarden + Datums + Waarden - - Named - Benoemd + Named + Benoemd - - Constraints - Beperkingen + + Constraints + Beperkingen - - + + SketcherGui::TaskSketcherGeneral - - Form - Formulier + + Form + Vorm - - Grid size: - Grid size: + Grid size: + Rastergrootte: - - Grid snap - Grid snap + Grid snap + Raster plakken - Unsolved - Niet opgelost + Unsolved + Niet opgelost - Grid Snap - Aan raster uitlijnen + Grid Snap + Aan raster uitlijnen - 0.1 mm - 0,1 mm + 0.1 mm + 0,1 mm - 0.2 mm - 0,2 mm + 0.2 mm + 0,2 mm - 0.5 mm - 0,5 mm + 0.5 mm + 0,5 mm - 1 mm - 1 mm + 1 mm + 1 mm - 2 mm - 2 mm + 2 mm + 2 mm - 5 mm - 5 mm + 5 mm + 5 mm - 10 mm - 10 mm + 10 mm + 10 mm - 20 mm - 20 mm + 20 mm + 20 mm - 50 mm - 50 mm + 50 mm + 50 mm - 100 mm - 100 mm + 100 mm + 100 mm - 200 mm - 200 mm + 200 mm + 200 mm - 500 mm - 500 mm + 500 mm + 500 mm - 1 m - 1 m + 1 m + 1 m - 2 m - 2 m + 2 m + 2 m - 5 m - 5 m + 5 m + 5 m - 10 m - 10 m + 10 m + 10 m - 20 m - 20 m + 20 m + 20 m - - Auto constraints - Automatische beperkingen + Auto constraints + Automatische beperkingen - auto constraints - Automatische vrijheidsgraden + auto constraints + Automatische vrijheidsgraden - - Edit controls - Bewerk besturingselementen + + Edit controls + Bewerk besturingselementen - - + + SketcherGui::TaskSketcherMessages - - Solver messages - Oplosser berichten + + Solver messages + Oplosser berichten - - + + TaskSketcherConstrains - Constraints - Beperkingen + Constraints + Beperkingen - - + + TaskSketcherCreateCommands - Appearance - Vormgeving + Appearance + Vormgeving - - + + TaskSketcherGeneral - Edit controls - Bewerk besturingselementen + Edit controls + Bewerk besturingselementen - - + + TaskSketcherMessages - - Form - Formulier + + Form + Vorm - - Undefined degrees of freedom - Niet-gedefinieerde vrijheidsgraden + Undefined degrees of freedom + Niet-gedefinieerde vrijheidsgraden - - Not solved yet - Onder gedimensioneerd + Not solved yet + Onder gedimensioneerd - - + + Workbench - - Sketcher - Schetsen + + Sketcher + Schetsen - - Sketcher geometries - Schets-geometrieën + Sketcher geometries + Schets-geometrieën - Sketcher geoms - Schets geometrie + Sketcher geoms + Schets geometrie - - Sketcher constraints - Schets vrijheidsgraden + Sketcher constraints + Schets vrijheidsgraden - + diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_no.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_no.qm index 2829c65d8..35f011210 100644 Binary files a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_no.qm and b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_no.qm differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_no.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_no.ts index 53bfd9cb0..d3bb40672 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_no.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_no.ts @@ -1,1299 +1,1052 @@ - - + + CmdSketcherConstrainAngle - - Sketcher - Skisse + + Sketcher + Skisse - - Constrain angle - Constrain angle + Constrain angle + Constrain angle - - Fix the angle of a line or the angle between two lines - Fix the angle of a line or the angle between two lines + Fix the angle of a line or the angle between two lines + Fix the angle of a line or the angle between two lines - - + + CmdSketcherConstrainCoincident - - Sketcher - Skisse + Sketcher + Skisse - - Constrain coincident - Lås forhold + Constrain coincident + Lås forhold - - Create a coincident constraint on the selected item - Lag en lås i forhold til valgte objekt + Create a coincident constraint on the selected item + Lag en lås i forhold til valgte objekt - - + + CmdSketcherConstrainDistance - - Sketcher - Skisse + Sketcher + Skisse - - Constrain distance - Lås avstand + Constrain distance + Lås avstand - - Fix a length of a line or the distance between a line and a vertex - Fikser lengde på en linje eller avstanden mellom en linje og en node + Fix a length of a line or the distance between a line and a vertex + Fikser lengde på en linje eller avstanden mellom en linje og en node - - + + CmdSketcherConstrainDistanceX - - Sketcher - Skisse + Sketcher + Skisse - - Constrain horizontal distance - Constrain horizontal distance + Constrain horizontal distance + Constrain horizontal distance - Constrain vertical distance - Begrense vertikal avstand + Constrain vertical distance + Constrain vertical distance - - Fix the horizontal distance between two points or line ends - Fix the horizontal distance between two points or line ends + Fix the horizontal distance between two points or line ends + Fix the horizontal distance between two points or line ends - - + + CmdSketcherConstrainDistanceY - - Sketcher - Skisse + Sketcher + Skisse - - Constrain vertical distance - Begrense vertikal avstand + Constrain vertical distance + Constrain vertical distance - Constrain horizontal distance - Constrain horizontal distance + Constrain horizontal distance + Constrain horizontal distance - - Fix the vertical distance between two points or line ends - Fix the vertical distance between two points or line ends + Fix the vertical distance between two points or line ends + Fix the vertical distance between two points or line ends - - + + CmdSketcherConstrainEqual - - Sketcher - Skisse + Sketcher + Skisse - - Constrain equal - Constrain equal + Constrain equal + Constrain equal - - Create an equality constraint between two lines or between circles and arcs - Create an equality constraint between two lines or between circles and arcs + Create an equality constraint between two lines or between circles and arcs + Create an equality constraint between two lines or between circles and arcs - - + + CmdSketcherConstrainHorizontal - - Sketcher - Skisse + Sketcher + Skisse - - Constrain horizontally - Lås horisontalt + Constrain horizontally + Lås horisontalt - - Create a horizontal constraint on the selected item - Lag en horisontal lås på det merkede elementet + Create a horizontal constraint on the selected item + Lag en horisontal lås på det merkede elementet - - + + CmdSketcherConstrainLock - - Sketcher - Skisse + Sketcher + Skisse - - Constrain lock - Lås + Constrain lock + Lås - - Create a lock constraint on the selected item - Create a lock constraint on the selected item + Create a lock constraint on the selected item + Create a lock constraint on the selected item - - + + CmdSketcherConstrainParallel - - Sketcher - Skisse + Sketcher + Skisse - - Constrain parallel - Lås parallell + Constrain parallel + Lås parallell - - Create a parallel constraint between two lines - Lag en parallell lås mellom to linjer + Create a parallel constraint between two lines + Lag en parallell lås mellom to linjer - - + + CmdSketcherConstrainPerpendicular - - Sketcher - Skisse + Sketcher + Skisse - - Constrain perpendicular - Constrain perpendicular + Constrain perpendicular + Constrain perpendicular - - Create a Perpendicular constraint between two lines - Create a Perpendicular constraint between two lines + Create a Perpendicular constraint between two lines + Create a Perpendicular constraint between two lines - - + + CmdSketcherConstrainPointOnObject - - Sketcher - Skisse + Sketcher + Skisse - - Constrain point onto object - Constrain point onto object + Constrain point onto object + Constrain point onto object - - Fix a point onto an object - Fix a point onto an object + Fix a point onto an object + Fix a point onto an object - - + + CmdSketcherConstrainRadius - - Sketcher - Skisse + Sketcher + Skisse - - Constrain radius - Constrain radius + Constrain radius + Constrain radius - - Fix the radius of a circle or an arc - Fix the radius of a circle or an arc + Fix the radius of a circle or an arc + Fix the radius of a circle or an arc - - + + CmdSketcherConstrainSymmetric - - Sketcher - Skisse + Sketcher + Skisse - - Constrain symmetrical - Constrain symmetrical + Constrain symmetrical + Constrain symmetrical - - Create an symmetry constraint between two points with respect to a line - Create an symmetry constraint between two points with respect to a line + Create an symmetry constraint between two points with respect to a line + Create an symmetry constraint between two points with respect to a line - - + + CmdSketcherConstrainTangent - - Sketcher - Skisse + Sketcher + Skisse - - Constrain tangent - Constrain tangent + Constrain tangent + Constrain tangent - - Create a tangent constraint between two entities - Create a tangent constraint between two entities + Create a tangent constraint between two entities + Create a tangent constraint between two entities - - + + CmdSketcherConstrainVertical - - Sketcher - Skisse + Sketcher + Skisse - - Constrain vertically - Lås vertikalt + Constrain vertically + Lås vertikalt - - Create a vertical constraint on the selected item - Lag en vertikal lås på valgt element + Create a vertical constraint on the selected item + Lag en vertikal lås på valgt element - - + + CmdSketcherCreateArc - - Sketcher - Skisse + + Sketcher + Skisse - - Create arc - Lag bue + Create arc + Lag bue - - Create an arc in the sketch - Lag en bue i skissen + Create an arc in the sketch + Lag en bue i skissen - - + + CmdSketcherCreateCircle - - Sketcher - Skisse + Sketcher + Skisse - - Create circle - Lag sirkel + Create circle + Lag sirkel - - Create a circle in the sketch - Lag en sirkel i skissen + Create a circle in the sketch + Lag en sirkel i skissen - - + + CmdSketcherCreateDraftLine - - Sketcher - Skisse + Sketcher + Skisse - - Create draft line - Lag linje + Create draft line + Lag linje - - Create a draft line in the sketch - Lag en linje i skissen + Create a draft line in the sketch + Lag en linje i skissen - - + + CmdSketcherCreateFillet - - Sketcher - Skisse + Sketcher + Skisse - - Create fillet - Create fillet + Create fillet + Create fillet - - Create a fillet between two lines or at a coincidental point - + Create a fillet between two lines or at a coincidental point + Create a fillet between two lines or at a coincidental point - Create a fillet between two lines or at a coincident point - Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point - - + + CmdSketcherCreateLine - - Sketcher - Skisse + Sketcher + Skisse - - Create line - Lag linje + Create line + Lag linje - - Create a line in the sketch - Lag en linje i skissen + Create a line in the sketch + Lag en linje i skissen - - + + CmdSketcherCreatePoint - - Sketcher - Skisse + Sketcher + Skisse - - Create point - Lag punkt + Create point + Lag punkt - - Create a point in the sketch - Lag et punkt i skissen + Create a point in the sketch + Lag et punkt i skissen - - + + CmdSketcherCreatePolyline - - Sketcher - Skisse + Sketcher + Skisse - - Create polyline - Lag polylinje + Create polyline + Lag polylinje - - Create a polyline in the sketch - Lag en polylinje i skissen + Create a polyline in the sketch + Lag en polylinje i skissen - - + + CmdSketcherCreateRectangle - - Sketcher - Skisse + Sketcher + Skisse - - Create rectangle - Lag rektangel + Create rectangle + Lag rektangel - - Create a rectangle in the sketch - Lag et rektangel i skissen + Create a rectangle in the sketch + Lag et rektangel i skissen - - + + CmdSketcherCreateText - - Sketcher - Skisse + Sketcher + Skisse - - Create text - Lag tekst + Create text + Lag tekst - - Create text in the sketch - Lag tekst i skissen + Create text in the sketch + Lag tekst i skissen - - + + CmdSketcherExternal - - Sketcher - Skisse + Sketcher + Skisse - - External geometry - + External geometry + External geometry - - Create an edge linked to an external geometry - + Create an edge linked to an external geometry + Create an edge linked to an external geometry - - + + CmdSketcherLeaveSketch - - Sketcher - Skisse + + Sketcher + Skisse - - Leave sketch - Forlat skissen + Leave sketch + Forlat skissen - - Close the editing of the sketch - Lukk redigering av skissen + Close the editing of the sketch + Lukk redigering av skissen - - + + CmdSketcherMapSketch - - Sketcher - Skisse + Sketcher + Skisse - - Map sketch to face... - Map sketch to face... + Map sketch to face... + Map sketch to face... - - Map a sketch to a face - Map a sketch to a face + Map a sketch to a face + Map a sketch to a face - - + + CmdSketcherNewSketch - - Sketcher - Skisse + Sketcher + Skisse - - Create sketch - Lag skisse + Create sketch + Lag skisse - - Create a new or edit the selected sketch - Create a new or edit the selected sketch + Create a new or edit the selected sketch + Create a new or edit the selected sketch - Create a new sketch - Lag en ny skisse + Create a new sketch + Lag en ny skisse - - + + CmdSketcherNewSketchSF - Sketcher - Skisse + Sketcher + Skisse - Sketchflat sketch - Flatskisse + Sketchflat sketch + Flatskisse - Create a new sketchflat sketch by starting externel editor - Lag en ny flatskisse ved å starte ekstern redigering + Create a new sketchflat sketch by starting externel editor + Lag en ny flatskisse ved å starte ekstern redigering - - + + CmdSketcherToggleConstruction - - Sketcher - Skisse + + Sketcher + Skisse - - Toggle construction line - Toggle construction line + Toggle construction line + Toggle construction line - - Toggles the currently selected lines to/from construction mode - Toggles the currently selected lines to/from construction mode + Toggles the currently selected lines to/from construction mode + Toggles the currently selected lines to/from construction mode - - + + CmdSketcherTrimming - - Sketcher - Skisse + + Sketcher + Skisse - - Trim edge - Trim edge + Trim edge + Trim edge - - Trim an edge with respect to the picked position - + Trim an edge with respect to the picked position + Trim an edge with respect to the picked position - Trims an edge with respect to the picked position - Trims an edge with respect to the picked position + Trims an edge with respect to the picked position + Trims an edge with respect to the picked position - - + + CmdSketcherViewSketch - - Sketcher - Skisse + + Sketcher + Skisse - - View sketch - View sketch + View sketch + View sketch - - View sketch perpendicular to sketch plane - View sketch perpendicular to sketch plane + View sketch perpendicular to sketch plane + View sketch perpendicular to sketch plane - - + + Gui::TaskView::TaskSketcherCreateCommands - - Appearance - Utseende + + Appearance + Utseende - - + + QObject - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Wrong selection - Feil valg + + Wrong selection + Feil valg - - Select edge(s) from the sketch. - Select edge(s) from the sketch. + Select edge(s) from the sketch. + Select edge(s) from the sketch. - - - Select an edge from the sketch. - Velg en kant i skissen. + + Select an edge from the sketch. + Velg en kant i skissen. - - - Double constraint - Dobbel lås + Double constraint + Dobbel lås - - - The selected edge has already a horizontal constraint! - Den valgte kanten har allerede en horisontal lås! + The selected edge has already a horizontal constraint! + Den valgte kanten har allerede en horisontal lås! - - - - - - - Impossible constraint - Umulig lås + Impossible constraint + Umulig lås - - Cannot add a constraint between two external geometries! - + Cannot add a constraint between two external geometries! + Cannot add a constraint between two external geometries! - - - - Only sketch and its support is allowed to select - Only sketch and its support is allowed to select + Only sketch and its support is allowed to select + Only sketch and its support is allowed to select - - One of the selected has to be on the sketch - One of the selected has to be on the sketch + One of the selected has to be on the sketch + One of the selected has to be on the sketch - - - The selected edge is not a line segment - The selected edge is not a line segment + The selected edge is not a line segment + The selected edge is not a line segment - - - The selected edge has already a vertical constraint! - Den valgte kanten har allerede en vertikal lås! + The selected edge has already a vertical constraint! + Den valgte kanten har allerede en vertikal lås! - - The selected item(s) can't accept a horizontal constraint! - + The selected item(s) can't accept a horizontal constraint! + The selected item(s) can't accept a horizontal constraint! - - The selected item(s) can't accept a vertical constraint! - + The selected item(s) can't accept a vertical constraint! + The selected item(s) can't accept a vertical constraint! - - Select entities from the sketch. - Select entities from the sketch. + Select entities from the sketch. + Select entities from the sketch. - - - Select exactly one entity from the sketch. - Select exactly one entity from the sketch. + Select exactly one entity from the sketch. + Select exactly one entity from the sketch. - - - - - - - Select vertexes from the sketch. - Velg node i skissen. + Select vertexes from the sketch. + Velg node i skissen. - - - - Select exactly two vertexes from the sketch. - Velg nøyaktig to noder i skissen. + Select exactly two vertexes from the sketch. + Velg nøyaktig to noder i skissen. - - - Select exactly one line or one point and one line or two points from the sketch. - Select exactly one line or one point and one line or two points from the sketch. + Select exactly one line or one point and one line or two points from the sketch. + Select exactly one line or one point and one line or two points from the sketch. - - Cannot add a length constraint on an external geometry! - + Cannot add a length constraint on an external geometry! + Cannot add a length constraint on an external geometry! - - - Select exactly one point and one object from the sketch. - Select exactly one point and one object from the sketch. + Select exactly one point and one object from the sketch. + Select exactly one point and one object from the sketch. - - - - - Select exactly one line or up to two points from the sketch. - Select exactly one line or up to two points from the sketch. + Select exactly one line or up to two points from the sketch. + Select exactly one line or up to two points from the sketch. - - Cannot add a horizontal length constraint on an external geometry! - + Cannot add a horizontal length constraint on an external geometry! + Cannot add a horizontal length constraint on an external geometry! - - Cannot add a vertical length constraint on an external geometry! - + Cannot add a vertical length constraint on an external geometry! + Cannot add a vertical length constraint on an external geometry! - - Select two or more lines from the sketch. - Select two or more lines from the sketch. + Select two or more lines from the sketch. + Select two or more lines from the sketch. - - Select at least two lines from the sketch. - Select at least two lines from the sketch. + Select at least two lines from the sketch. + Select at least two lines from the sketch. - - Select a valid line - Select a valid line + Select a valid line + Select a valid line - - The selected edge is not a valid line - The selected edge is not a valid line + The selected edge is not a valid line + The selected edge is not a valid line - - The selected points should be end points of arcs and lines. - + The selected points should be end points of arcs and lines. + The selected points should be end points of arcs and lines. - - The selected point should be an end point of an arc or line. - + The selected point should be an end point of an arc or line. + The selected point should be an end point of an arc or line. - - The selected edge should be an arc, line or circle. - + The selected edge should be an arc, line or circle. + The selected edge should be an arc, line or circle. - - One of the selected edges should be a line. - + One of the selected edges should be a line. + One of the selected edges should be a line. - - - - Select exactly one arc or circle from the sketch. - Select exactly one arc or circle from the sketch. + Select exactly one arc or circle from the sketch. + Select exactly one arc or circle from the sketch. - - Select one or two lines from the sketch. - + Select one or two lines from the sketch. + Select one or two lines from the sketch. - - Cannot add an angle constraint on an external geometry! - + Cannot add an angle constraint on an external geometry! + Cannot add an angle constraint on an external geometry! - - Select exactly one or two lines from the sketch. - Select exactly one or two lines from the sketch. + Select exactly one or two lines from the sketch. + Select exactly one or two lines from the sketch. - - Select two edges from the sketch. - Select two edges from the sketch. + Select two edges from the sketch. + Select two edges from the sketch. - - Select atleast two lines from the sketch. - Select atleast two lines from the sketch. + Select atleast two lines from the sketch. + Select atleast two lines from the sketch. - - Select two or more compatible edges - + Select two or more compatible edges + Select two or more compatible edges - - Sketch axes cannot be used in equality constraints - + Sketch axes cannot be used in equality constraints + Sketch axes cannot be used in equality constraints - - - Select two or more edges of similar type - + Select two or more edges of similar type + Select two or more edges of similar type - - Cannot add a constraint between external geometries! - + Cannot add a constraint between external geometries! + Cannot add a constraint between external geometries! - Select exactly two same geometries - Select exactly two same geometries + Select exactly two same geometries + Select exactly two same geometries - Select valid geometries - Select valid geometries + Select valid geometries + Select valid geometries - Select geometry of similar type - Select geometry of similar type + Select geometry of similar type + Select geometry of similar type - - - - Select two points and one line from the sketch. - Select two points and one line from the sketch. + Select two points and one line from the sketch. + Select two points and one line from the sketch. - Select exactly one line from the sketch. - Velg nøyaktig en linje i skissen. + Select exactly one line from the sketch. + Velg nøyaktig en linje i skissen. - Select two lines from the sketch. - Velg to linjer i skissen. + Select two lines from the sketch. + Velg to linjer i skissen. - Select exactly two lines from the sketch. - Velg nøyaktig to linjer i skissen. + Select exactly two lines from the sketch. + Velg nøyaktig to linjer i skissen. - - - Select two entities from the sketch. - Select two entities from the sketch. + Select two entities from the sketch. + Select two entities from the sketch. - - - - - Select exactly two entities from the sketch. - Select exactly two entities from the sketch. + Select exactly two entities from the sketch. + Select exactly two entities from the sketch. - - Edit sketch - Rediger skisse + + Edit sketch + Rediger skisse - - A dialog is already open in the task panel - En dialog er allerede åpent i oppgavepanelet + A dialog is already open in the task panel + En dialog er allerede åpent i oppgavepanelet - - Do you want to close this dialog? - Ønsker du å lukke denne dialogen? + Do you want to close this dialog? + Ønsker du å lukke denne dialogen? - - Several sub-elements selected - Flere delelementer er valgt + + Several sub-elements selected + Flere delelementer er valgt - - You have to select a single face as support for a sketch! - Du må velge en enkelt flate som støtte for en skisse! + You have to select a single face as support for a sketch! + Du må velge en enkelt flate som støtte for en skisse! - - No support face selected - Ingen flate for støtte valgt + No support face selected + Ingen flate for støtte valgt - - You have to select a face as support for a sketch! - Du må velge en flate som støtte for en skisse! + You have to select a face as support for a sketch! + Du må velge en flate som støtte for en skisse! - - No planar support - Ingen planstøtte + No planar support + Ingen planstøtte - - You need a planar face as support for a sketch! - Du trenger en plan flate som støtte for en skisse! + You need a planar face as support for a sketch! + Du trenger en plan flate som støtte for en skisse! - - Distance constraint - Distance constraint + + Distance constraint + Distance constraint - - Not allowed to edit the datum because the sketch contains conflicting constraints - Not allowed to edit the datum because the sketch contains conflicting constraints + Not allowed to edit the datum because the sketch contains conflicting constraints + Not allowed to edit the datum because the sketch contains conflicting constraints - - Dimensional constraint - Dimensional constraint + Dimensional constraint + Dimensional constraint - - + + SketchOrientationDialog - Choose orientation - Choose orientation + Choose orientation + Choose orientation - Sketch orientation - Sketch orientation + Sketch orientation + Sketch orientation - XY-Plane - XY-Plane + XY-Plane + XY-Plane - XZ-Plane - XZ-Plane + XZ-Plane + XZ-Plane - YZ-Plane - YZ-Plane + YZ-Plane + YZ-Plane - Reverse direction - Reverse direction + Reverse direction + Reverse direction - Offset: - Offset: + Offset: + Offset: - - + + SketcherGui::InsertDatum - - Insert datum - Sett inn faktum + + Insert datum + Sett inn faktum - - datum: - Faktum: + datum: + Faktum: - - + + SketcherGui::SketchOrientationDialog - - Choose orientation - Choose orientation + + Choose orientation + Choose orientation - - Sketch orientation - Sketch orientation + Sketch orientation + Sketch orientation - - XY-Plane - XY-Plane + XY-Plane + XY-Plane - - XZ-Plane - XZ-Plane + XZ-Plane + XZ-Plane - - YZ-Plane - YZ-Plane + YZ-Plane + YZ-Plane - - Reverse direction - Reverse direction + Reverse direction + Reverse direction - - Offset: - Offset: + Offset: + Offset: - - + + SketcherGui::TaskSketcherConstrains - - Form - Skjema + + Form + Skjema - - Filter: - Filter: + Filter: + Filter: - - All - Alle + All + Alle - - Normal - Normal + Normal + Normal - - Datums - Fakta + Datums + Fakta - - Named - Navngitt + Named + Navngitt - - Constraints - Låser + + Constraints + Låser - - + + SketcherGui::TaskSketcherGeneral - - Form - Skjema + + Form + Skjema - - Grid size: - Grid size: + Grid size: + Grid size: - - Grid snap - Grid snap + Grid snap + Grid snap - Unsolved - Uløste + Unsolved + Uløste - Grid Snap - Rutenettmagnet + Grid Snap + Rutenettmagnet - 0.1 mm - 0.1 mm + 0.1 mm + 0.1 mm - 0.2 mm - 0.2 mm + 0.2 mm + 0.2 mm - 0.5 mm - 0.5 mm + 0.5 mm + 0.5 mm - 1 mm - 1 mm + 1 mm + 1 mm - 2 mm - 2 mm + 2 mm + 2 mm - 5 mm - 5 mm + 5 mm + 5 mm - 10 mm - 10 mm + 10 mm + 10 mm - 20 mm - 20 mm + 20 mm + 20 mm - 50 mm - 50 mm + 50 mm + 50 mm - 100 mm - 100 mm + 100 mm + 100 mm - 200 mm - 200 mm + 200 mm + 200 mm - 500 mm - 500 mm + 500 mm + 500 mm - 1 m - 1 m + 1 m + 1 m - 2 m - 2 m + 2 m + 2 m - 5 m - 5 m + 5 m + 5 m - 10 m - 10 m + 10 m + 10 m - 20 m - 20 m + 20 m + 20 m - - Auto constraints - Auto constraints + Auto constraints + Auto constraints - auto constraints - autolåser + auto constraints + autolåser - - Edit controls - Rediger kontroller + + Edit controls + Rediger kontroller - - + + SketcherGui::TaskSketcherMessages - - Solver messages - Solver messages + + Solver messages + Solver messages - - + + TaskSketcherConstrains - Constraints - Låser + Constraints + Låser - - + + TaskSketcherCreateCommands - Appearance - Utseende + Appearance + Utseende - - + + TaskSketcherGeneral - Edit controls - Rediger kontroller + Edit controls + Rediger kontroller - - + + TaskSketcherMessages - - Form - Skjema + + Form + Skjema - - Undefined degrees of freedom - Undefined degrees of freedom + Undefined degrees of freedom + Undefined degrees of freedom - - Not solved yet - Not solved yet + Not solved yet + Not solved yet - - + + Workbench - - Sketcher - Skisse + + Sketcher + Skisse - - Sketcher geometries - Sketcher geometries + Sketcher geometries + Sketcher geometries - Sketcher geoms - Skissegeom + Sketcher geoms + Skissegeom - - Sketcher constraints - Skisselåser + Sketcher constraints + Skisselåser - + diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pl.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pl.qm index 569c6b2e9..510510efd 100644 Binary files a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pl.qm and b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pl.qm differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pl.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pl.ts index c229641a6..ec68554fd 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pl.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pl.ts @@ -1,1299 +1,1052 @@ - - + + CmdSketcherConstrainAngle - - Sketcher - Szkicownik + + Sketcher + Szkicownik - - Constrain angle - Constrain angle + Constrain angle + Ustal więz kąta - - Fix the angle of a line or the angle between two lines - Ustaw kąt linii lub kąt pomiędzy 2 liniami + Fix the angle of a line or the angle between two lines + Ustaw kąt linii lub kąt pomiędzy 2 liniami - - + + CmdSketcherConstrainCoincident - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Constrain coincident - Ograniczenie przez pokrywanie + Constrain coincident + Więz nachodzenia - - Create a coincident constraint on the selected item - Utwórz ograniczenie przez pokrywanie na wybranym elemencie + Create a coincident constraint on the selected item + Utwórz więz przez nachodzenie na wybranym elemencie - - + + CmdSketcherConstrainDistance - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Constrain distance - Ograniczenie odległości + Constrain distance + Więz odległości - - Fix a length of a line or the distance between a line and a vertex - Ustal długość linii lub odległość pomiędzy linią a wierzchołkiem + Fix a length of a line or the distance between a line and a vertex + Ustal długość linii lub odległość pomiędzy linią a wierzchołkiem - - + + CmdSketcherConstrainDistanceX - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Constrain horizontal distance - Constrain horizontal distance + Constrain horizontal distance + Powiąż odległość poziomą - Constrain vertical distance - Ograniczyć pionową odległość + Constrain vertical distance + Constrain vertical distance - - Fix the horizontal distance between two points or line ends - Fix the horizontal distance between two points or line ends + Fix the horizontal distance between two points or line ends + Ustal poziomą odległość między dwoma punktami lub końcami linii - - + + CmdSketcherConstrainDistanceY - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Constrain vertical distance - Ograniczyć pionową odległość + Constrain vertical distance + Constrain vertical distance - Constrain horizontal distance - Constrain horizontal distance + Constrain horizontal distance + Powiąż odległość poziomą - - Fix the vertical distance between two points or line ends - Fix the vertical distance between two points or line ends + Fix the vertical distance between two points or line ends + Ustal pionową odległość między dwoma punktami lub końcami linii - - + + CmdSketcherConstrainEqual - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Constrain equal - Constrain equal + Constrain equal + Ustal więz równości - - Create an equality constraint between two lines or between circles and arcs - Create an equality constraint between two lines or between circles and arcs + Create an equality constraint between two lines or between circles and arcs + Utworzyć ograniczenie równości między dwie linie, okręgi lub łuki - - + + CmdSketcherConstrainHorizontal - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Constrain horizontally - Ograniczenie poziome + Constrain horizontally + Ustal więz poziomy - - Create a horizontal constraint on the selected item - Tworzenie poziomego ograniczenia dla wybranego elementu + Create a horizontal constraint on the selected item + Utwórz więz poziomy na wybranym elemencie - - + + CmdSketcherConstrainLock - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Constrain lock - Blokada przemieszczenia + Constrain lock + utwierdzenie - - Create a lock constraint on the selected item - Create a lock constraint on the selected item + Create a lock constraint on the selected item + Utwórz więz położenia wybranego elementu - - + + CmdSketcherConstrainParallel - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Constrain parallel - Ograniczenie równolegle + Constrain parallel + Ustal więz równoległości - - Create a parallel constraint between two lines - Utwórz ograniczenie równoległe dwóch linii + Create a parallel constraint between two lines + Utwórz więz równoległości pomiędzy dwoma liniami - - + + CmdSketcherConstrainPerpendicular - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Constrain perpendicular - Constrain perpendicular + Constrain perpendicular + Ustal więz prostopadłości - - Create a Perpendicular constraint between two lines - Create a Perpendicular constraint between two lines + Create a Perpendicular constraint between two lines + Utwórz więz prostopadłości między dwiema liniami - - + + CmdSketcherConstrainPointOnObject - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Constrain point onto object - Constrain point onto object + Constrain point onto object + Ustal więz punkt na obiekcie - - Fix a point onto an object - Ustaw punkt na obiekcie + Fix a point onto an object + Ustaw punkt na obiekcie - - + + CmdSketcherConstrainRadius - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Constrain radius - Constrain radius + Constrain radius + Ustal więz wymiaru promienia - - Fix the radius of a circle or an arc - Fix the radius of a circle or an arc + Fix the radius of a circle or an arc + Ustalenie promienia okręgu lub łuku - - + + CmdSketcherConstrainSymmetric - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Constrain symmetrical - Constrain symmetrical + Constrain symmetrical + Wiązanie symetryczności - - Create an symmetry constraint between two points with respect to a line - Create an symmetry constraint between two points with respect to a line + Create an symmetry constraint between two points with respect to a line + Utwórz wiązanie symetrii między dwoma punktami względem linii - - + + CmdSketcherConstrainTangent - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Constrain tangent - Constrain tangent + Constrain tangent + Wiązanie styczności - - Create a tangent constraint between two entities - Utwórz styczną pomiędzy dwoma elementami + Create a tangent constraint between two entities + Utwórz styczną pomiędzy dwoma elementami - - + + CmdSketcherConstrainVertical - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Constrain vertically - Ograniczenie pionowe + Constrain vertically + Ustal więz pionowy - - Create a vertical constraint on the selected item - Utwórz ograniczenie pionowe na wybranym elemencie + Create a vertical constraint on the selected item + Utwórz więz pionowy na wybranym elemencie - - + + CmdSketcherCreateArc - - Sketcher - Szkicownik + + Sketcher + Szkicownik - - Create arc - Tworzenie łuku + Create arc + Tworzenie łuku - - Create an arc in the sketch - Utwórz łuk na szkicu + Create an arc in the sketch + Utwórz łuk na szkicu - - + + CmdSketcherCreateCircle - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Create circle - Tworzenie okręgu + Create circle + Tworzenie okręgu - - Create a circle in the sketch - Utwórz okrąg na szkicu + Create a circle in the sketch + Utwórz okrąg na szkicu - - + + CmdSketcherCreateDraftLine - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Create draft line - Create draft line + Create draft line + Utwórz linię projektu - - Create a draft line in the sketch - Create a draft line in the sketch + Create a draft line in the sketch + Utworzyć linię projektu w szkicu - - + + CmdSketcherCreateFillet - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Create fillet - Utwórz zaokrąglenie + Create fillet + Utwórz zaokrąglenie - - Create a fillet between two lines or at a coincidental point - + Create a fillet between two lines or at a coincidental point + Stwórz zaokrąglenie między liniami albo wokół punktu - Create a fillet between two lines or at a coincident point - Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point - - + + CmdSketcherCreateLine - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Create line - Tworzenie linii + Create line + Tworzenie linii - - Create a line in the sketch - Utwórz linię na szkicu + Create a line in the sketch + Utwórz linię na szkicu - - + + CmdSketcherCreatePoint - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Create point - Tworzenie punktu + Create point + Tworzenie punktu - - Create a point in the sketch - Utwórz punkt na szkicu + Create a point in the sketch + Utwórz punkt na szkicu - - + + CmdSketcherCreatePolyline - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Create polyline - Tworzenie łamanej + Create polyline + Tworzenie łamanej - - Create a polyline in the sketch - Utwórz łamaną na szkicu + Create a polyline in the sketch + Utwórz łamaną na szkicu - - + + CmdSketcherCreateRectangle - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Create rectangle - Tworzenie prostokątu + Create rectangle + Tworzenie prostokątu - - Create a rectangle in the sketch - Utwórz prostokąt na szkicu + Create a rectangle in the sketch + Utwórz prostokąt na szkicu - - + + CmdSketcherCreateText - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Create text - Tworzenie tekstu + Create text + Tworzenie tekstu - - Create text in the sketch - Utwórz tekst na szkicu + Create text in the sketch + Utwórz tekst na szkicu - - + + CmdSketcherExternal - - Sketcher - Szkicownik + Sketcher + Szkicownik - - External geometry - + External geometry + Geometria zewnętrzna - - Create an edge linked to an external geometry - + Create an edge linked to an external geometry + Utwórz krawędź związaną z zewnętrzną geometrią - - + + CmdSketcherLeaveSketch - - Sketcher - Szkicownik + + Sketcher + Szkicownik - - Leave sketch - Porzuć szkic + Leave sketch + Opuść szkic - - Close the editing of the sketch - Zamknij edycję szkicu + Close the editing of the sketch + Zamknij edycję szkicu - - + + CmdSketcherMapSketch - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Map sketch to face... - Map sketch to face... + Map sketch to face... + Zmapuj szkic na ścianę... - - Map a sketch to a face - Mapuj szkic na fasetkę + Map a sketch to a face + Mapuj szkic na fasetkę - - + + CmdSketcherNewSketch - - Sketcher - Szkicownik + Sketcher + Szkicownik - - Create sketch - Tworzenie szkicu + Create sketch + Tworzenie szkicu - - Create a new or edit the selected sketch - Create a new or edit the selected sketch + Create a new or edit the selected sketch + Utwórz nowy lub edytuj wybrany szkic - Create a new sketch - Utwórz nowy szkic + Create a new sketch + Utwórz nowy szkic - - + + CmdSketcherNewSketchSF - Sketcher - Szkicownik + Sketcher + Szkicownik - Sketchflat sketch - Sketchflat sketch + Sketchflat sketch + Sketchflat sketch - Create a new sketchflat sketch by starting externel editor - Create a new sketchflat sketch by starting externel editor + Create a new sketchflat sketch by starting externel editor + Create a new sketchflat sketch by starting externel editor - - + + CmdSketcherToggleConstruction - - Sketcher - Szkicownik + + Sketcher + Szkicownik - - Toggle construction line - Toggle construction line + Toggle construction line + Przełącz linię konstrukcyjną - - Toggles the currently selected lines to/from construction mode - Przełącz tryb zaznaczonych linii (do/z trybu konstrukcji) + Toggles the currently selected lines to/from construction mode + Przełącz tryb zaznaczonych linii (do/z trybu konstrukcji) - - + + CmdSketcherTrimming - - Sketcher - Szkicownik + + Sketcher + Szkicownik - - Trim edge - Przytnij krawędź + Trim edge + Przytnij krawędź - - Trim an edge with respect to the picked position - + Trim an edge with respect to the picked position + Przytnij krawędź w odniesieniu do wybranej pozycji - Trims an edge with respect to the picked position - Trims an edge with respect to the picked position + Trims an edge with respect to the picked position + Przytnij krawędź wodniesioniu do wybranej pozycji - - + + CmdSketcherViewSketch - - Sketcher - Szkicownik + + Sketcher + Szkicownik - - View sketch - Widok szkicu + View sketch + Widok szkicu - - View sketch perpendicular to sketch plane - Widok szkicu prostopadłego do płaszczyzny szkicu + View sketch perpendicular to sketch plane + Widok szkicu prostopadłego do płaszczyzny szkicu - - + + Gui::TaskView::TaskSketcherCreateCommands - - Appearance - Wygląd + + Appearance + Wygląd - - + + QObject - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Wrong selection - Niewłaściwy wybór + + Wrong selection + Niewłaściwy wybór - - Select edge(s) from the sketch. - Wybierz krawędź(ie) na szkicu + Select edge(s) from the sketch. + Wybierz krawędź(ie) na szkicu - - - Select an edge from the sketch. - Wybierz krawędź ze szkicu. + + Select an edge from the sketch. + Wybierz krawędź ze szkicu. - - - Double constraint - Podwójne ograniczenie + Double constraint + Zdublowany więz - - - The selected edge has already a horizontal constraint! - Wybrana krawędź jest już pozioma! + The selected edge has already a horizontal constraint! + Wybrana krawędź jest już pozioma! - - - - - - - Impossible constraint - Niemożliwe ograniczenie + Impossible constraint + Niemożliwe ograniczenie - - Cannot add a constraint between two external geometries! - + Cannot add a constraint between two external geometries! + Nie można dodać ograniczenia pomiędzy zewnętrznymi geometriami! - - - - Only sketch and its support is allowed to select - Only sketch and its support is allowed to select + Only sketch and its support is allowed to select + Tylko szkic i jego baza są dozwolone do zaznaczenia - - One of the selected has to be on the sketch - Jedno z zaznaczonych musi być na szkicu + One of the selected has to be on the sketch + Jedno z zaznaczonych musi być na szkicu - - - The selected edge is not a line segment - Zaznaczona krawędź nie jest segmentem linii + The selected edge is not a line segment + Zaznaczona krawędź nie jest segmentem linii - - - The selected edge has already a vertical constraint! - Wybrana krawędź jest już pionowa! + The selected edge has already a vertical constraint! + Wybrana krawędź jest już pionowa! - - The selected item(s) can't accept a horizontal constraint! - + The selected item(s) can't accept a horizontal constraint! + Wybrane detale nie mogą zaakceptować ograniczenia poziomego! - - The selected item(s) can't accept a vertical constraint! - + The selected item(s) can't accept a vertical constraint! + Wybrane detale nie mogą zaakceptować ograniczenia pionowego! - - Select entities from the sketch. - Zaznacz obiekty na szkicu + Select entities from the sketch. + Zaznacz obiekty na szkicu - - - Select exactly one entity from the sketch. - Select exactly one entity from the sketch. + Select exactly one entity from the sketch. + Wybierz dokładnie jeden podmiot ze szkicu. - - - - - - - Select vertexes from the sketch. - Wybierz wierzchołki ze szkicu. + Select vertexes from the sketch. + Wybierz wierzchołki ze szkicu. - - - - Select exactly two vertexes from the sketch. - Wybierz dokładnie dwa wierzchołki ze szkicu. + Select exactly two vertexes from the sketch. + Wybierz dokładnie dwa wierzchołki ze szkicu. - - - Select exactly one line or one point and one line or two points from the sketch. - Select exactly one line or one point and one line or two points from the sketch. + Select exactly one line or one point and one line or two points from the sketch. + Wybierz dokładnie jedną linię lub jeden punkt i jedną linię lub dwa punkty ze szkicu. - - Cannot add a length constraint on an external geometry! - + Cannot add a length constraint on an external geometry! + Nie można dodać ograniczenia długości dla zewnętrznych geometrii! - - - Select exactly one point and one object from the sketch. - Zaznacz dokładnie jeden punkt i jeden obiekt na szkicu. + Select exactly one point and one object from the sketch. + Zaznacz dokładnie jeden punkt i jeden obiekt na szkicu. - - - - - Select exactly one line or up to two points from the sketch. - Select exactly one line or up to two points from the sketch. + Select exactly one line or up to two points from the sketch. + Wybierz dokładnie jedną linię lub do dwa punkty ze szkicu. - - Cannot add a horizontal length constraint on an external geometry! - + Cannot add a horizontal length constraint on an external geometry! + Nie można dodać poziomego ograniczenia długości dla zewnętrznych geometrii! - - Cannot add a vertical length constraint on an external geometry! - + Cannot add a vertical length constraint on an external geometry! + Nie można dodać pionowego ograniczenia długości dla zewnętrznych geometrii! - - Select two or more lines from the sketch. - Select two or more lines from the sketch. + Select two or more lines from the sketch. + Wybierz dwie lub więcej linii ze szkicu. - - Select at least two lines from the sketch. - Select at least two lines from the sketch. + Select at least two lines from the sketch. + Wybierz co najmniej dwie linie ze szkicu. - - Select a valid line - Select a valid line + Select a valid line + Wybierz prawidłową linię - - The selected edge is not a valid line - The selected edge is not a valid line + The selected edge is not a valid line + Wybrana krawędź nie jest prawidłową linią - - The selected points should be end points of arcs and lines. - + The selected points should be end points of arcs and lines. + Zaznaczone punkty powinny być końcem łuku i linii. - - The selected point should be an end point of an arc or line. - + The selected point should be an end point of an arc or line. + Zaznaczone punkty powinny być końcem łuku lub linii. - - The selected edge should be an arc, line or circle. - + The selected edge should be an arc, line or circle. + Zaznaczona krawędź powinna być łukiem, linią lub okręgiem. - - One of the selected edges should be a line. - + One of the selected edges should be a line. + Jedna z zaznaczonych krawędzi powinna być linią. - - - - Select exactly one arc or circle from the sketch. - Select exactly one arc or circle from the sketch. + Select exactly one arc or circle from the sketch. + Wybierz dokładnie jeden łuk lub okrąg ze szkicu. - - Select one or two lines from the sketch. - + Select one or two lines from the sketch. + Wybierz jeden lub dwa wiersze ze szkicu. - - Cannot add an angle constraint on an external geometry! - + Cannot add an angle constraint on an external geometry! + Nie można dodać ograniczenia kąta dla zewnętrznych geometrii! - - Select exactly one or two lines from the sketch. - Select exactly one or two lines from the sketch. + Select exactly one or two lines from the sketch. + Wybierz dokładnie jedną lub dwie linie ze szkicu. - - Select two edges from the sketch. - Select two edges from the sketch. + Select two edges from the sketch. + Zaznacz dwie krawędzie ze szkicu. - - Select atleast two lines from the sketch. - Select atleast two lines from the sketch. + Select atleast two lines from the sketch. + Zaznacz przynajmniej dwie linie ze szkicu. - - Select two or more compatible edges - + Select two or more compatible edges + Zaznacz dwa lub więcej zgodnych brzegów - - Sketch axes cannot be used in equality constraints - + Sketch axes cannot be used in equality constraints + Szkic osi nie możne być użyty w warunku równości - - - Select two or more edges of similar type - + Select two or more edges of similar type + Zaznacz dwi lub więcej krawędzi podobnego typu - - Cannot add a constraint between external geometries! - + Cannot add a constraint between external geometries! + Nie można dodać ograniczenia pomiędzy zewnętrznymi geometriami! - Select exactly two same geometries - Zaznacz identyczne elementy geometrii + Select exactly two same geometries + Zaznacz identyczne elementy geometrii - Select valid geometries - Zaznacz właściwy element geometrii + Select valid geometries + Zaznacz właściwy element geometrii - Select geometry of similar type - Zaznacz element geometrii podobnego typu + Select geometry of similar type + Zaznacz element geometrii podobnego typu - - - - Select two points and one line from the sketch. - Zaznacz dwa punkty i linię na szkicu + Select two points and one line from the sketch. + Zaznacz dwa punkty i linię na szkicu - Select exactly one line from the sketch. - Wybierz dokładnie jedną linię ze szkicu. + Select exactly one line from the sketch. + Wybierz dokładnie jedną linię ze szkicu. - Select two lines from the sketch. - Wybierz dwie linie ze szkicu. + Select two lines from the sketch. + Wybierz dwie linie ze szkicu. - Select exactly two lines from the sketch. - Wybierz dokładnie dwie linie ze szkicu. + Select exactly two lines from the sketch. + Wybierz dokładnie dwie linie ze szkicu. - - - Select two entities from the sketch. - Select two entities from the sketch. + Select two entities from the sketch. + Wybierz dwa podmioty ze szkicu. - - - - - Select exactly two entities from the sketch. - Zaznacz dokładnie dwa elementy na szkicu. + Select exactly two entities from the sketch. + Zaznacz dokładnie dwa elementy na szkicu. - - Edit sketch - Edycja szkicu + + Edit sketch + Edycja szkicu - - A dialog is already open in the task panel - Okno dialogowe jest już otwarte w panelu zadań + A dialog is already open in the task panel + Okno dialogowe jest już otwarte w panelu zadań - - Do you want to close this dialog? - Czy chcesz zamknąć to okno dialogowe? + Do you want to close this dialog? + Czy chcesz zamknąć to okno dialogowe? - - Several sub-elements selected - Wybrano kilka podelementów + + Several sub-elements selected + Wybrano kilka podelementów - - You have to select a single face as support for a sketch! - Musisz wybrać pojedynczą powierzchnię jako bazę dla szkicu! + You have to select a single face as support for a sketch! + Musisz wybrać pojedynczą powierzchnię jako bazę dla szkicu! - - No support face selected - Nie wybrano powierzchni bazowej + No support face selected + Nie wybrano powierzchni bazowej - - You have to select a face as support for a sketch! - Musisz wybrać powierzchnię jako bazę dla szkicu! + You have to select a face as support for a sketch! + Musisz wybrać powierzchnię jako bazę dla szkicu! - - No planar support - No planar support + No planar support + Brak płaskiej powierzchni - - You need a planar face as support for a sketch! - You need a planar face as support for a sketch! + You need a planar face as support for a sketch! + Musisz wybrać ścianę planarną jako płaszczyznę szkicu! - - Distance constraint - Distance constraint + + Distance constraint + Wiązanie odległości - - Not allowed to edit the datum because the sketch contains conflicting constraints - Not allowed to edit the datum because the sketch contains conflicting constraints + Not allowed to edit the datum because the sketch contains conflicting constraints + Nie można edytować odniesienia, ponieważ schemat zawiera ograniczenia powodujące konflikt - - Dimensional constraint - Dimensional constraint + Dimensional constraint + Wiązanie wymiaru - - + + SketchOrientationDialog - Choose orientation - Wybierz orientację + Choose orientation + Wybierz orientację - Sketch orientation - Orientacja szkicu + Sketch orientation + Orientacja szkicu - XY-Plane - Płaszczyzna X-Y + XY-Plane + Płaszczyzna X-Y - XZ-Plane - XZ-Plane + XZ-Plane + Płaszczyzna XZ - YZ-Plane - YZ-Plane + YZ-Plane + Płaszczyzna YZ - Reverse direction - Reverse direction + Reverse direction + Odwróć kierunek - Offset: - Offset: + Offset: + Odsunięcie: - - + + SketcherGui::InsertDatum - - Insert datum - Wstaw odniesienia + + Insert datum + Wstaw odniesienia - - datum: - odniesienie: + datum: + odniesienie: - - + + SketcherGui::SketchOrientationDialog - - Choose orientation - Wybierz orientację + + Choose orientation + Wybierz orientację - - Sketch orientation - Orientacja szkicu + Sketch orientation + Orientacja szkicu - - XY-Plane - Płaszczyzna X-Y + XY-Plane + Płaszczyzna X-Y - - XZ-Plane - XZ-Plane + XZ-Plane + Płaszczyzna XZ - - YZ-Plane - YZ-Plane + YZ-Plane + Płaszczyzna YZ - - Reverse direction - Reverse direction + Reverse direction + Odwróć kierunek - - Offset: - Offset: + Offset: + Odsunięcie: - - + + SketcherGui::TaskSketcherConstrains - - Form - Formularz + + Form + Formularz - - Filter: - Filtr: + Filter: + Filtr: - - All - Wszystko + All + Wszystkie - - Normal - Normalny + Normal + Normalny - - Datums - Odniesienia + Datums + Odniesienia - - Named - Nazwane + Named + Nazwane - - Constraints - Ograniczenia + + Constraints + Ograniczenia - - + + SketcherGui::TaskSketcherGeneral - - Form - Formularz + + Form + Formularz - - Grid size: - Grid size: + Grid size: + Rozmiar siatki: - - Grid snap - Grid snap + Grid snap + Przyciąganie do siatki - Unsolved - Nierozwiązany + Unsolved + Nierozwiązany - Grid Snap - Siatka przyciągania + Grid Snap + Siatka przyciągania - 0.1 mm - 0,1 mm + 0.1 mm + 0,1 mm - 0.2 mm - 0,2 mm + 0.2 mm + 0,2 mm - 0.5 mm - 0,5 mm + 0.5 mm + 0,5 mm - 1 mm - 1 mm + 1 mm + 1 mm - 2 mm - 2 mm + 2 mm + 2 mm - 5 mm - 5 mm + 5 mm + 5 mm - 10 mm - 10 mm + 10 mm + 10 mm - 20 mm - 20 mm + 20 mm + 20 mm - 50 mm - 50 mm + 50 mm + 50 mm - 100 mm - 100 mm + 100 mm + 100 mm - 200 mm - 200 mm + 200 mm + 200 mm - 500 mm - 500 mm + 500 mm + 500 mm - 1 m - 1 m + 1 m + 1 m - 2 m - 2 m + 2 m + 2 m - 5 m - 5 m + 5 m + 5 m - 10 m - 10 m + 10 m + 10 m - 20 m - 20 m + 20 m + 20 m - - Auto constraints - Auto constraints + Auto constraints + Automatyczne wiązania - auto constraints - auto constraints + auto constraints + auto constraints - - Edit controls - Edycja kontrolek + + Edit controls + Edycja kontrolek - - + + SketcherGui::TaskSketcherMessages - - Solver messages - Solver messages + + Solver messages + Komunikaty solwera - - + + TaskSketcherConstrains - Constraints - Ograniczenia + Constraints + Ograniczenia - - + + TaskSketcherCreateCommands - Appearance - Wygląd + Appearance + Wygląd - - + + TaskSketcherGeneral - Edit controls - Edycja kontrolek + Edit controls + Edycja kontrolek - - + + TaskSketcherMessages - - Form - Formularz + + Form + Formularz - - Undefined degrees of freedom - Undefined degrees of freedom + Undefined degrees of freedom + Niezdefiniowane stopnie swobody - - Not solved yet - W opracowaniu + Not solved yet + W opracowaniu - - + + Workbench - - Sketcher - Szkicownik + + Sketcher + Szkicownik - - Sketcher geometries - Sketcher geometries + Sketcher geometries + Elementy geometryczne szkicownika - Sketcher geoms - Szkicownik geometria + Sketcher geoms + Szkicownik geometria - - Sketcher constraints - Szkicownik ograniczenia + Sketcher constraints + Szkicownik ograniczenia - + diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pt-BR.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pt-BR.qm new file mode 100644 index 000000000..8d390ae65 Binary files /dev/null and b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pt-BR.qm differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pt-BR.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pt-BR.ts new file mode 100644 index 000000000..4f742f983 --- /dev/null +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pt-BR.ts @@ -0,0 +1,1052 @@ + + + + + CmdSketcherConstrainAngle + + + Sketcher + Esboço + + + Constrain angle + Restrição de ângulo + + + Fix the angle of a line or the angle between two lines + Fixar o ângulo de uma linha ou o ângulo entre duas linhas + + + + CmdSketcherConstrainCoincident + + Sketcher + Esboço + + + Constrain coincident + Restrição de coincidência + + + Create a coincident constraint on the selected item + Criar uma restrição de coincidência sobre o item selecionado + + + + CmdSketcherConstrainDistance + + Sketcher + Esboço + + + Constrain distance + Restrição de distância + + + Fix a length of a line or the distance between a line and a vertex + Trancar o comprimento de uma linha ou a distância entre uma linha e um vértice + + + + CmdSketcherConstrainDistanceX + + Sketcher + Esboço + + + Constrain horizontal distance + Restrição de distância horizontal + + + Constrain vertical distance + Restringir a distância vertical + + + Fix the horizontal distance between two points or line ends + Fixar a distância horizontal entre dois pontos ou extremidades de linha + + + + CmdSketcherConstrainDistanceY + + Sketcher + Esboço + + + Constrain vertical distance + Restringir a distância vertical + + + Constrain horizontal distance + Restrição de distância horizontal + + + Fix the vertical distance between two points or line ends + Fixar a distância vertical entre dois pontos ou extremidades de linha + + + + CmdSketcherConstrainEqual + + Sketcher + Esboço + + + Constrain equal + Restrição igual + + + Create an equality constraint between two lines or between circles and arcs + Criar uma restrição de igualdade entre duas linhas ou círculos e arcos + + + + CmdSketcherConstrainHorizontal + + Sketcher + Esboço + + + Constrain horizontally + Restringir horizontalmente + + + Create a horizontal constraint on the selected item + Criar uma restrição horizontal sobre o item selecionado + + + + CmdSketcherConstrainLock + + Sketcher + Esboço + + + Constrain lock + Restrição de bloqueio + + + Create a lock constraint on the selected item + Criar uma restrição de bloqueio no item selecionado + + + + CmdSketcherConstrainParallel + + Sketcher + Esboço + + + Constrain parallel + Restrição paralela + + + Create a parallel constraint between two lines + Criar uma restrição paralela entre duas linhas + + + + CmdSketcherConstrainPerpendicular + + Sketcher + Esboço + + + Constrain perpendicular + Restrição perpendicular + + + Create a Perpendicular constraint between two lines + Criar uma restrição perpendicular entre duas linhas + + + + CmdSketcherConstrainPointOnObject + + Sketcher + Esboço + + + Constrain point onto object + Restringir um ponto sobre um objeto + + + Fix a point onto an object + Fixar um ponto sobre um objeto + + + + CmdSketcherConstrainRadius + + Sketcher + Esboço + + + Constrain radius + Restrição de raio + + + Fix the radius of a circle or an arc + Fixar o raio de um círculo ou um arco + + + + CmdSketcherConstrainSymmetric + + Sketcher + Esboço + + + Constrain symmetrical + Restrição simétrica + + + Create an symmetry constraint between two points with respect to a line + Criar uma restrição de simetria entre dois pontos relativamente a uma linha + + + + CmdSketcherConstrainTangent + + Sketcher + Esboço + + + Constrain tangent + Restrição tangente + + + Create a tangent constraint between two entities + Criar uma restrição tangente entre duas entidades + + + + CmdSketcherConstrainVertical + + Sketcher + Esboço + + + Constrain vertically + Restringir verticalmente + + + Create a vertical constraint on the selected item + Criar uma restrição vertical sobre o item selecionado + + + + CmdSketcherCreateArc + + + Sketcher + Esboço + + + Create arc + Criar arco + + + Create an arc in the sketch + Criar um arco no esboço + + + + CmdSketcherCreateCircle + + Sketcher + Esboço + + + Create circle + Criar círculo + + + Create a circle in the sketch + Criar um círculo no esboço + + + + CmdSketcherCreateDraftLine + + Sketcher + Esboço + + + Create draft line + Criar linha de rascunho + + + Create a draft line in the sketch + Criar uma linha de rascunho no esboço + + + + CmdSketcherCreateFillet + + Sketcher + Esboço + + + Create fillet + Criar filete + + + Create a fillet between two lines or at a coincidental point + Criar um arredondamento entre duas linhas ou em um ponto de coincidência + + + Create a fillet between two lines or at a coincident point + Criar um arredondamento entre duas linhas ou em um ponto de coincidência + + + + CmdSketcherCreateLine + + Sketcher + Esboço + + + Create line + Criar linha + + + Create a line in the sketch + Criar uma linha no esboço + + + + CmdSketcherCreatePoint + + Sketcher + Esboço + + + Create point + Criar ponto + + + Create a point in the sketch + Criar um ponto no esboço + + + + CmdSketcherCreatePolyline + + Sketcher + Esboço + + + Create polyline + Criar polyline + + + Create a polyline in the sketch + Criar uma polilinha no sketch + + + + CmdSketcherCreateRectangle + + Sketcher + Esboço + + + Create rectangle + Criar retângulo + + + Create a rectangle in the sketch + Criar um retângulo no esboço + + + + CmdSketcherCreateText + + Sketcher + Esboço + + + Create text + Criar texto + + + Create text in the sketch + Criar um texto no esboço + + + + CmdSketcherExternal + + Sketcher + Esboço + + + External geometry + Geometria externa + + + Create an edge linked to an external geometry + Criar uma aresta ligada a uma geometria externa + + + + CmdSketcherLeaveSketch + + + Sketcher + Esboço + + + Leave sketch + Sair do esboço + + + Close the editing of the sketch + Fechar a edição do esboço + + + + CmdSketcherMapSketch + + Sketcher + Esboço + + + Map sketch to face... + Esboço para face... + + + Map a sketch to a face + Mapear um esboço para uma face + + + + CmdSketcherNewSketch + + Sketcher + Esboço + + + Create sketch + Criar um esboço + + + Create a new or edit the selected sketch + Criar um novo esboço ou editar o esboço selecionado + + + Create a new sketch + Criar um novo esboço + + + + CmdSketcherNewSketchSF + + Sketcher + Esboço + + + Sketchflat sketch + Esboço do Sketchflat + + + Create a new sketchflat sketch by starting externel editor + Criar um novo desenho do sketchflat iniciando o editor externo + + + + CmdSketcherToggleConstruction + + + Sketcher + Esboço + + + Toggle construction line + Alternar modo de construção + + + Toggles the currently selected lines to/from construction mode + Coloca ou retira as linhas selecionadas do modo de construção + + + + CmdSketcherTrimming + + + Sketcher + Esboço + + + Trim edge + Recortar aresta + + + Trim an edge with respect to the picked position + Aparar uma aresta em relação a posição escolhida + + + Trims an edge with respect to the picked position + Recorta uma aresta a partir da posição escolhida + + + + CmdSketcherViewSketch + + + Sketcher + Esboço + + + View sketch + Ver esboço + + + View sketch perpendicular to sketch plane + Olhar perpendicularmente ao plano do esboço + + + + Gui::TaskView::TaskSketcherCreateCommands + + + Appearance + Aparência + + + + QObject + + + Wrong selection + Seleção errada + + + Select edge(s) from the sketch. + Selecione aresta(s) no esboço. + + + + Select an edge from the sketch. + Selecione uma aresta do esboço. + + + Double constraint + Restrição dupla + + + The selected edge has already a horizontal constraint! + A aresta selecionada já possui uma restrição horizontal! + + + Impossible constraint + Restrição impossível + + + Cannot add a constraint between two external geometries! + Não é possível adicionar uma restrição entre duas geometrias externas! + + + Only sketch and its support is allowed to select + É permitido selecionar somente um esboço e seu suporte + + + One of the selected has to be on the sketch + Um dos selecionados tem que ser no esboço + + + The selected edge is not a line segment + A aresta selecionada não é um segmento de linha + + + The selected edge has already a vertical constraint! + A aresta selecionada já possui uma restrição vertical! + + + The selected item(s) can't accept a horizontal constraint! + Os itens selecionados não podem aceitar uma restrição horizontal! + + + The selected item(s) can't accept a vertical constraint! + Os itens selecionados não podem aceitar uma restrição vertical! + + + Select entities from the sketch. + Selecione entidades no esboço. + + + Select exactly one entity from the sketch. + Selecione exatamente uma entidade no esboço. + + + Select vertexes from the sketch. + Selecione vértices do esboço. + + + Select exactly two vertexes from the sketch. + Selecione exatamente dois vértices do esboço. + + + Select exactly one line or one point and one line or two points from the sketch. + Selecione exatamente uma linha ou um ponto e uma linha ou dois pontos no esboço. + + + Cannot add a length constraint on an external geometry! + Não é possível adicionar uma restrição de comprimento em uma geometria externa! + + + Select exactly one point and one object from the sketch. + Selecione exatamente um ponto e um objeto no esboço. + + + Select exactly one line or up to two points from the sketch. + Selecione exatamente uma linha ou até dois pontos no esboço. + + + Cannot add a horizontal length constraint on an external geometry! + Não é possível adicionar uma restrição de comprimento horizontal em uma geometria externa! + + + Cannot add a vertical length constraint on an external geometry! + Não é possível adicionar uma restrição de comprimento vertical em uma geometria externa! + + + Select two or more lines from the sketch. + Selecione duas ou mais linhas no esboço. + + + Select at least two lines from the sketch. + Selecione pelo menos duas linhas no esboço. + + + Select a valid line + Selecione uma linha válida + + + The selected edge is not a valid line + A aresta selecionada não é uma linha válida + + + The selected points should be end points of arcs and lines. + Os pontos selecionados devem ser pontos finais de linhas e arcos. + + + The selected point should be an end point of an arc or line. + O ponto selecionado deve ser um ponto de extremidade de uma linha ou arco. + + + The selected edge should be an arc, line or circle. + A aresta selecionada deve ser uma linha, um arco ou um círculo. + + + One of the selected edges should be a line. + Uma das arestas selecionadas deve ser uma linha. + + + Select exactly one arc or circle from the sketch. + Selecione exatamente um arco ou círculo no esboço. + + + Select one or two lines from the sketch. + Selecione uma ou duas linhas do esboço. + + + Cannot add an angle constraint on an external geometry! + Não é possível adicionar uma restrição de ângulo em uma geometria externa! + + + Select exactly one or two lines from the sketch. + Selecione exatamente uma ou duas linhas no esboço. + + + Select two edges from the sketch. + Selecione duas arestas no esboço. + + + Select atleast two lines from the sketch. + Selecione pelo menos duas linhas no esboço. + + + Select two or more compatible edges + Selecione duas ou mais arestas compatíveis + + + Sketch axes cannot be used in equality constraints + Os eixos do esboço não podem ser usados em restrições de igualdade + + + Select two or more edges of similar type + Selecione duas ou mais arestas do mesmo tipo + + + Cannot add a constraint between external geometries! + Não é possível adicionar uma restrição entre geometrias externas! + + + Select exactly two same geometries + Selecione exatamente duas geometrias do mesmo tipo + + + Select valid geometries + Selecione geometrias válidas + + + Select geometry of similar type + Selecione geometrias do mesmo tipo + + + Select two points and one line from the sketch. + Selecione dois pontos e uma linha no esboço. + + + Select exactly one line from the sketch. + Selecione exatamente uma linha do esboço. + + + Select two lines from the sketch. + Selecione duas linhas do esboço. + + + Select exactly two lines from the sketch. + Selecione exatamente duas linhas do esboço. + + + Select two entities from the sketch. + Selecione duas entidades no esboço. + + + Select exactly two entities from the sketch. + Selecione exatamente duas entidades do esboço. + + + + Edit sketch + Editar esboço + + + A dialog is already open in the task panel + Uma caixa de diálogo já está aberta no painel de tarefas + + + Do you want to close this dialog? + Deseja fechar este diálogo? + + + + Several sub-elements selected + Vários sub-elementos selecionados + + + You have to select a single face as support for a sketch! + Você deve selecionar uma única face como suporte para um esboço! + + + No support face selected + Nenhuma face de suporte selecionada + + + You have to select a face as support for a sketch! + Você deve selecionar uma face como suporte para um esboço! + + + No planar support + Nenhum suporte planar + + + You need a planar face as support for a sketch! + Você precisa de uma face plana como suporte para um esboço! + + + + Distance constraint + Restrição de distância + + + Not allowed to edit the datum because the sketch contains conflicting constraints + Não é possível editar o dado porque o esboço contém restrições conflitantes + + + Dimensional constraint + Restrição de dimensão + + + + SketchOrientationDialog + + Choose orientation + Escolher a orientação + + + Sketch orientation + Orientação do esboço + + + XY-Plane + Plano XY + + + XZ-Plane + Plano XZ + + + YZ-Plane + Plano YZ + + + Reverse direction + Inverter direção + + + Offset: + Offset: + + + + SketcherGui::InsertDatum + + + Insert datum + Inserir datum + + + datum: + datum: + + + + SketcherGui::SketchOrientationDialog + + + Choose orientation + Escolher a orientação + + + Sketch orientation + Orientação do esboço + + + XY-Plane + Plano XY + + + XZ-Plane + Plano XZ + + + YZ-Plane + Plano YZ + + + Reverse direction + Inverter direção + + + Offset: + Offset: + + + + SketcherGui::TaskSketcherConstrains + + + Form + Formulário + + + Filter: + Filtro: + + + All + Todos + + + Normal + Normal + + + Datums + Datums + + + Named + Nomeado + + + + Constraints + Restrições + + + + SketcherGui::TaskSketcherGeneral + + + Form + Formulário + + + Grid size: + Tamanho da grade: + + + Grid snap + Snap de grade + + + Unsolved + Não resolvido + + + Grid Snap + Snap de grade + + + 0.1 mm + 0.1 mm + + + 0.2 mm + 0.2 mm + + + 0.5 mm + 0.5 mm + + + 1 mm + 1 mm + + + 2 mm + 1 mm + + + 5 mm + 5 mm + + + 10 mm + 10 mm + + + 20 mm + 20 mm + + + 50 mm + 50 mm + + + 100 mm + 100 mm + + + 200 mm + 200 mm + + + 500 mm + 500 mm + + + 1 m + 1 m + + + 2 m + 2 m + + + 5 m + 5 m + + + 10 m + 10 m + + + 20 m + 20 m + + + Auto constraints + Restrições automáticas + + + auto constraints + Auto-restrições + + + + Edit controls + Controles de edição + + + + SketcherGui::TaskSketcherMessages + + + Solver messages + Mensagens do calculador + + + + TaskSketcherConstrains + + Constraints + Restrições + + + + TaskSketcherCreateCommands + + Appearance + Aparência + + + + TaskSketcherGeneral + + Edit controls + Controles de edição + + + + TaskSketcherMessages + + + Form + Formulário + + + Undefined degrees of freedom + Graus de liberdade indefinidos + + + Not solved yet + Não resolvido ainda + + + + Workbench + + + Sketcher + Esboço + + + Sketcher geometries + Geometrias do esboço + + + Sketcher geoms + Geometrias de esboço + + + Sketcher constraints + Restrições de esboço + + + diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pt.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pt.qm deleted file mode 100644 index e810e9742..000000000 Binary files a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pt.qm and /dev/null differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pt.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pt.ts deleted file mode 100644 index 9b61624af..000000000 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pt.ts +++ /dev/null @@ -1,1299 +0,0 @@ - - - - - CmdSketcherConstrainAngle - - - Sketcher - Esboço - - - - Constrain angle - Restrição de ângulo - - - - Fix the angle of a line or the angle between two lines - Fixar o ângulo de uma linha ou o ângulo entre duas linhas - - - - CmdSketcherConstrainCoincident - - - Sketcher - Esboço - - - - Constrain coincident - Restrição de coincidência - - - - Create a coincident constraint on the selected item - Criar uma restrição de coincidência sobre o item selecionado - - - - CmdSketcherConstrainDistance - - - Sketcher - Esboço - - - - Constrain distance - Restrição de distância - - - - Fix a length of a line or the distance between a line and a vertex - Trancar o comprimento de uma linha ou a distância entre uma linha e um vértice - - - - CmdSketcherConstrainDistanceX - - - Sketcher - Esboço - - - - Constrain horizontal distance - Restrição de distância horizontal - - - Constrain vertical distance - Restrição de distância vertical - - - - Fix the horizontal distance between two points or line ends - Fixar a distância horizontal entre dois pontos ou extremidades de linha - - - - CmdSketcherConstrainDistanceY - - - Sketcher - Esboço - - - - Constrain vertical distance - Restrição de distância vertical - - - Constrain horizontal distance - Restrição de distância horizontal - - - - Fix the vertical distance between two points or line ends - Fixar a distância vertical entre dois pontos ou extremidades de linha - - - - CmdSketcherConstrainEqual - - - Sketcher - Esboço - - - - Constrain equal - Restrição igual - - - - Create an equality constraint between two lines or between circles and arcs - Criar uma restrição de igualdade entre duas linhas ou círculos e arcos - - - - CmdSketcherConstrainHorizontal - - - Sketcher - Esboço - - - - Constrain horizontally - Restringir horizontalmente - - - - Create a horizontal constraint on the selected item - Criar uma restrição horizontal sobre o item selecionado - - - - CmdSketcherConstrainLock - - - Sketcher - Esboço - - - - Constrain lock - Restrição de bloqueio - - - - Create a lock constraint on the selected item - Criar uma restrição de bloqueio no item selecionado - - - - CmdSketcherConstrainParallel - - - Sketcher - Esboço - - - - Constrain parallel - Restrição paralela - - - - Create a parallel constraint between two lines - Criar uma restrição paralela entre duas linhas - - - - CmdSketcherConstrainPerpendicular - - - Sketcher - Esboço - - - - Constrain perpendicular - Restrição perpendicular - - - - Create a Perpendicular constraint between two lines - Criar uma restrição perpendicular entre duas linhas - - - - CmdSketcherConstrainPointOnObject - - - Sketcher - Esboço - - - - Constrain point onto object - Restringir um ponto sobre um objeto - - - - Fix a point onto an object - Fixar um ponto sobre um objeto - - - - CmdSketcherConstrainRadius - - - Sketcher - Esboço - - - - Constrain radius - Restrição de raio - - - - Fix the radius of a circle or an arc - Fixar o raio de um círculo ou um arco - - - - CmdSketcherConstrainSymmetric - - - Sketcher - Esboço - - - - Constrain symmetrical - Restrição simétrica - - - - Create an symmetry constraint between two points with respect to a line - Criar uma restrição de simetria entre dois pontos relativamente a uma linha - - - - CmdSketcherConstrainTangent - - - Sketcher - Esboço - - - - Constrain tangent - Restrição tangente - - - - Create a tangent constraint between two entities - Criar uma restrição tangente entre duas entidades - - - - CmdSketcherConstrainVertical - - - Sketcher - Esboço - - - - Constrain vertically - Restringir verticalmente - - - - Create a vertical constraint on the selected item - Criar uma restrição vertical sobre o item selecionado - - - - CmdSketcherCreateArc - - - Sketcher - Esboço - - - - Create arc - Criar arco - - - - Create an arc in the sketch - Criar um arco no esboço - - - - CmdSketcherCreateCircle - - - Sketcher - Esboço - - - - Create circle - Criar círculo - - - - Create a circle in the sketch - Criar um círculo no esboço - - - - CmdSketcherCreateDraftLine - - - Sketcher - Esboço - - - - Create draft line - Criar linha de rascunho - - - - Create a draft line in the sketch - Criar uma linha de rascunho no esboço - - - - CmdSketcherCreateFillet - - - Sketcher - Esboço - - - - Create fillet - Criar filete - - - - Create a fillet between two lines or at a coincidental point - - - - Create a fillet between two lines or at a coincident point - Criar um filete entre duas linhas ou em um ponto coincidente - - - - CmdSketcherCreateLine - - - Sketcher - Esboço - - - - Create line - Criar linha - - - - Create a line in the sketch - Criar uma linha no esboço - - - - CmdSketcherCreatePoint - - - Sketcher - Esboço - - - - Create point - Criar ponto - - - - Create a point in the sketch - Criar um ponto no esboço - - - - CmdSketcherCreatePolyline - - - Sketcher - Esboço - - - - Create polyline - Criar polyline - - - - Create a polyline in the sketch - Criar uma polilinha no sketch - - - - CmdSketcherCreateRectangle - - - Sketcher - Esboço - - - - Create rectangle - Criar retângulo - - - - Create a rectangle in the sketch - Criar um retângulo no esboço - - - - CmdSketcherCreateText - - - Sketcher - Esboço - - - - Create text - Criar texto - - - - Create text in the sketch - Criar um texto no esboço - - - - CmdSketcherExternal - - - Sketcher - Esboço - - - - External geometry - - - - - Create an edge linked to an external geometry - - - - - CmdSketcherLeaveSketch - - - Sketcher - Esboço - - - - Leave sketch - Sair do esboço - - - - Close the editing of the sketch - Fechar a edição do esboço - - - - CmdSketcherMapSketch - - - Sketcher - Esboço - - - - Map sketch to face... - Esboço para face... - - - - Map a sketch to a face - Mapear um esboço para uma face - - - - CmdSketcherNewSketch - - - Sketcher - Esboço - - - - Create sketch - Criar um esboço - - - - Create a new or edit the selected sketch - Criar um novo esboço ou editar o esboço selecionado - - - Create a new sketch - Criar um novo esboço - - - - CmdSketcherNewSketchSF - - Sketcher - Esboço - - - Sketchflat sketch - Esboço do Sketchflat - - - Create a new sketchflat sketch by starting externel editor - Criar um novo desenho do sketchflat iniciando o editor externo - - - - CmdSketcherToggleConstruction - - - Sketcher - Esboço - - - - Toggle construction line - Alternar modo de construção - - - - Toggles the currently selected lines to/from construction mode - Coloca ou retira as linhas selecionadas do modo de construção - - - - CmdSketcherTrimming - - - Sketcher - Esboço - - - - Trim edge - Recortar aresta - - - - Trim an edge with respect to the picked position - - - - Trims an edge with respect to the picked position - Recorta uma aresta a partir da posição escolhida - - - - CmdSketcherViewSketch - - - Sketcher - Esboço - - - - View sketch - Ver esboço - - - - View sketch perpendicular to sketch plane - Olhar perpendicularmente ao plano do esboço - - - - Gui::TaskView::TaskSketcherCreateCommands - - - Appearance - Aparência - - - - QObject - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Wrong selection - Seleção errada - - - - Select edge(s) from the sketch. - Selecione aresta(s) no esboço. - - - - - Select an edge from the sketch. - Selecione uma aresta do esboço. - - - - - Double constraint - Restrição dupla - - - - - The selected edge has already a horizontal constraint! - A aresta selecionada já possui uma restrição horizontal! - - - - - - - - - Impossible constraint - Restrição impossível - - - - Cannot add a constraint between two external geometries! - - - - - - - Only sketch and its support is allowed to select - É permitido selecionar somente um esboço e seu suporte - - - - One of the selected has to be on the sketch - Um dos selecionados tem que ser no esboço - - - - - The selected edge is not a line segment - A aresta selecionada não é um segmento de linha - - - - - The selected edge has already a vertical constraint! - A aresta selecionada já possui uma restrição vertical! - - - - The selected item(s) can't accept a horizontal constraint! - - - - - The selected item(s) can't accept a vertical constraint! - - - - - Select entities from the sketch. - Selecione entidades no esboço. - - - - - Select exactly one entity from the sketch. - Selecione exatamente uma entidade no esboço. - - - - - - - - - Select vertexes from the sketch. - Selecione vértices do esboço. - - - - - - Select exactly two vertexes from the sketch. - Selecione exatamente dois vértices do esboço. - - - - - Select exactly one line or one point and one line or two points from the sketch. - Selecione exatamente uma linha ou um ponto e uma linha ou dois pontos no esboço. - - - - Cannot add a length constraint on an external geometry! - - - - - - Select exactly one point and one object from the sketch. - Selecione exatamente um ponto e um objeto no esboço. - - - - - - - Select exactly one line or up to two points from the sketch. - Selecione exatamente uma linha ou até dois pontos no esboço. - - - - Cannot add a horizontal length constraint on an external geometry! - - - - - Cannot add a vertical length constraint on an external geometry! - - - - - Select two or more lines from the sketch. - Selecione duas ou mais linhas no esboço. - - - - Select at least two lines from the sketch. - Selecione pelo menos duas linhas no esboço. - - - - Select a valid line - Selecione uma linha válida - - - - The selected edge is not a valid line - A aresta selecionada não é uma linha válida - - - - The selected points should be end points of arcs and lines. - - - - - The selected point should be an end point of an arc or line. - - - - - The selected edge should be an arc, line or circle. - - - - - One of the selected edges should be a line. - - - - - - - Select exactly one arc or circle from the sketch. - Selecione exatamente um arco ou círculo no esboço. - - - - Select one or two lines from the sketch. - - - - - Cannot add an angle constraint on an external geometry! - - - - - Select exactly one or two lines from the sketch. - Selecione exatamente uma ou duas linhas no esboço. - - - - Select two edges from the sketch. - Selecione duas arestas no esboço. - - - - Select atleast two lines from the sketch. - Selecione pelo menos duas linhas no esboço. - - - - Select two or more compatible edges - - - - - Sketch axes cannot be used in equality constraints - - - - - - Select two or more edges of similar type - - - - - Cannot add a constraint between external geometries! - - - - Select exactly two same geometries - Selecione exatamente duas geometrias do mesmo tipo - - - Select valid geometries - Selecione geometrias válidas - - - Select geometry of similar type - Selecione geometrias do mesmo tipo - - - - - - Select two points and one line from the sketch. - Selecione dois pontos e uma linha no esboço. - - - Select exactly one line from the sketch. - Selecione exatamente uma linha do esboço. - - - Select two lines from the sketch. - Selecione duas linhas do esboço. - - - Select exactly two lines from the sketch. - Selecione exatamente duas linhas do esboço. - - - - - Select two entities from the sketch. - Selecione duas entidades no esboço. - - - - - - - Select exactly two entities from the sketch. - Selecione exatamente duas entidades do esboço. - - - - Edit sketch - Editar esboço - - - - A dialog is already open in the task panel - Uma caixa de diálogo já está aberta no painel de tarefas - - - - Do you want to close this dialog? - Deseja fechar esta janela? - - - - Several sub-elements selected - Vários sub-elementos selecionados - - - - You have to select a single face as support for a sketch! - Você deve selecionar uma única face como suporte para um esboço! - - - - No support face selected - Nenhuma face de suporte selecionada - - - - You have to select a face as support for a sketch! - Você deve selecionar uma face como suporte para um esboço! - - - - No planar support - Nenhum suporte planar - - - - You need a planar face as support for a sketch! - Você precisa de uma face plana como suporte para um esboço! - - - - Distance constraint - Restrição de distância - - - - Not allowed to edit the datum because the sketch contains conflicting constraints - Não é possível editar o dado porque o esboço contém restrições conflitantes - - - - Dimensional constraint - Restrição de dimensão - - - - SketchOrientationDialog - - Choose orientation - Escolher a orientação - - - Sketch orientation - Orientação do esboço - - - XY-Plane - Plano XY - - - XZ-Plane - Plano XZ - - - YZ-Plane - Plano YZ - - - Reverse direction - Inverter direção - - - Offset: - Offset: - - - - SketcherGui::InsertDatum - - - Insert datum - Inserir datum - - - - datum: - datum: - - - - SketcherGui::SketchOrientationDialog - - - Choose orientation - Escolher a orientação - - - - Sketch orientation - Orientação do esboço - - - - XY-Plane - Plano XY - - - - XZ-Plane - Plano XZ - - - - YZ-Plane - Plano YZ - - - - Reverse direction - Inverter direção - - - - Offset: - Offset: - - - - SketcherGui::TaskSketcherConstrains - - - Form - Forma - - - - Filter: - Filtro: - - - - All - Tudo - - - - Normal - Normal - - - - Datums - Datums - - - - Named - Nomeado - - - - Constraints - Restrições - - - - SketcherGui::TaskSketcherGeneral - - - Form - Forma - - - - Grid size: - Tamanho da grade: - - - - Grid snap - Snap de grade - - - Unsolved - Não resolvido - - - Grid Snap - Snap de grade - - - 0.1 mm - 0.1 mm - - - 0.2 mm - 0.2 mm - - - 0.5 mm - 0.5 mm - - - 1 mm - 1 mm - - - 2 mm - 2 mm - - - 5 mm - 5 mm - - - 10 mm - 10 mm - - - 20 mm - 20 mm - - - 50 mm - 50 mm - - - 100 mm - 100 mm - - - 200 mm - 200 mm - - - 500 mm - 500 mm - - - 1 m - 1 m - - - 2 m - 2 m - - - 5 m - 5 m - - - 10 m - 10 m - - - 20 m - 20 m - - - - Auto constraints - Restrições automáticas - - - auto constraints - Auto-restrições - - - - Edit controls - Controles de edição - - - - SketcherGui::TaskSketcherMessages - - - Solver messages - Mensagens do calculador - - - - TaskSketcherConstrains - - Constraints - Restrições - - - - TaskSketcherCreateCommands - - Appearance - Aparência - - - - TaskSketcherGeneral - - Edit controls - Controles de edição - - - - TaskSketcherMessages - - - Form - Forma - - - - Undefined degrees of freedom - Graus de liberdade indefinidos - - - - Not solved yet - Não resolvido ainda - - - - Workbench - - - Sketcher - Esboço - - - - Sketcher geometries - Geometrias do esboço - - - Sketcher geoms - Geometrias de esboço - - - - Sketcher constraints - Restrições de esboço - - - diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ro.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ro.qm new file mode 100644 index 000000000..a874e737d Binary files /dev/null and b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ro.qm differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ro.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ro.ts new file mode 100644 index 000000000..a33b31b2b --- /dev/null +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ro.ts @@ -0,0 +1,1052 @@ + + + + + CmdSketcherConstrainAngle + + + Sketcher + Sketcher + + + Constrain angle + Constrain angle + + + Fix the angle of a line or the angle between two lines + Fix the angle of a line or the angle between two lines + + + + CmdSketcherConstrainCoincident + + Sketcher + Sketcher + + + Constrain coincident + Constrain coincident + + + Create a coincident constraint on the selected item + Create a coincident constraint on the selected item + + + + CmdSketcherConstrainDistance + + Sketcher + Sketcher + + + Constrain distance + Constrain distance + + + Fix a length of a line or the distance between a line and a vertex + Fix a length of a line or the distance between a line and a vertex + + + + CmdSketcherConstrainDistanceX + + Sketcher + Sketcher + + + Constrain horizontal distance + Constrain horizontal distance + + + Constrain vertical distance + Constrain vertical distance + + + Fix the horizontal distance between two points or line ends + Fix the horizontal distance between two points or line ends + + + + CmdSketcherConstrainDistanceY + + Sketcher + Sketcher + + + Constrain vertical distance + Constrain vertical distance + + + Constrain horizontal distance + Constrain horizontal distance + + + Fix the vertical distance between two points or line ends + Fix the vertical distance between two points or line ends + + + + CmdSketcherConstrainEqual + + Sketcher + Sketcher + + + Constrain equal + Constrain equal + + + Create an equality constraint between two lines or between circles and arcs + Create an equality constraint between two lines or between circles and arcs + + + + CmdSketcherConstrainHorizontal + + Sketcher + Sketcher + + + Constrain horizontally + Constrain horizontally + + + Create a horizontal constraint on the selected item + Create a horizontal constraint on the selected item + + + + CmdSketcherConstrainLock + + Sketcher + Sketcher + + + Constrain lock + Constrain lock + + + Create a lock constraint on the selected item + Create a lock constraint on the selected item + + + + CmdSketcherConstrainParallel + + Sketcher + Sketcher + + + Constrain parallel + Constrain parallel + + + Create a parallel constraint between two lines + Create a parallel constraint between two lines + + + + CmdSketcherConstrainPerpendicular + + Sketcher + Sketcher + + + Constrain perpendicular + Constrain perpendicular + + + Create a Perpendicular constraint between two lines + Create a Perpendicular constraint between two lines + + + + CmdSketcherConstrainPointOnObject + + Sketcher + Sketcher + + + Constrain point onto object + Constrain point onto object + + + Fix a point onto an object + Fix a point onto an object + + + + CmdSketcherConstrainRadius + + Sketcher + Sketcher + + + Constrain radius + Constrain radius + + + Fix the radius of a circle or an arc + Fix the radius of a circle or an arc + + + + CmdSketcherConstrainSymmetric + + Sketcher + Sketcher + + + Constrain symmetrical + Constrain symmetrical + + + Create an symmetry constraint between two points with respect to a line + Create an symmetry constraint between two points with respect to a line + + + + CmdSketcherConstrainTangent + + Sketcher + Sketcher + + + Constrain tangent + Constrain tangent + + + Create a tangent constraint between two entities + Create a tangent constraint between two entities + + + + CmdSketcherConstrainVertical + + Sketcher + Sketcher + + + Constrain vertically + Constrain vertically + + + Create a vertical constraint on the selected item + Create a vertical constraint on the selected item + + + + CmdSketcherCreateArc + + + Sketcher + Sketcher + + + Create arc + Create arc + + + Create an arc in the sketch + Create an arc in the sketch + + + + CmdSketcherCreateCircle + + Sketcher + Sketcher + + + Create circle + Create circle + + + Create a circle in the sketch + Create a circle in the sketch + + + + CmdSketcherCreateDraftLine + + Sketcher + Sketcher + + + Create draft line + Create draft line + + + Create a draft line in the sketch + Create a draft line in the sketch + + + + CmdSketcherCreateFillet + + Sketcher + Sketcher + + + Create fillet + Create fillet + + + Create a fillet between two lines or at a coincidental point + Create a fillet between two lines or at a coincidental point + + + Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point + + + + CmdSketcherCreateLine + + Sketcher + Sketcher + + + Create line + Create line + + + Create a line in the sketch + Create a line in the sketch + + + + CmdSketcherCreatePoint + + Sketcher + Sketcher + + + Create point + Create point + + + Create a point in the sketch + Create a point in the sketch + + + + CmdSketcherCreatePolyline + + Sketcher + Sketcher + + + Create polyline + Create polyline + + + Create a polyline in the sketch + Create a polyline in the sketch + + + + CmdSketcherCreateRectangle + + Sketcher + Sketcher + + + Create rectangle + Create rectangle + + + Create a rectangle in the sketch + Create a rectangle in the sketch + + + + CmdSketcherCreateText + + Sketcher + Sketcher + + + Create text + Create text + + + Create text in the sketch + Create text in the sketch + + + + CmdSketcherExternal + + Sketcher + Sketcher + + + External geometry + External geometry + + + Create an edge linked to an external geometry + Create an edge linked to an external geometry + + + + CmdSketcherLeaveSketch + + + Sketcher + Sketcher + + + Leave sketch + Leave sketch + + + Close the editing of the sketch + Close the editing of the sketch + + + + CmdSketcherMapSketch + + Sketcher + Sketcher + + + Map sketch to face... + Map sketch to face... + + + Map a sketch to a face + Map a sketch to a face + + + + CmdSketcherNewSketch + + Sketcher + Sketcher + + + Create sketch + Create sketch + + + Create a new or edit the selected sketch + Create a new or edit the selected sketch + + + Create a new sketch + Create a new sketch + + + + CmdSketcherNewSketchSF + + Sketcher + Sketcher + + + Sketchflat sketch + Sketchflat sketch + + + Create a new sketchflat sketch by starting externel editor + Create a new sketchflat sketch by starting externel editor + + + + CmdSketcherToggleConstruction + + + Sketcher + Sketcher + + + Toggle construction line + Toggle construction line + + + Toggles the currently selected lines to/from construction mode + Comută liniile selectate în/din modul de construcţie + + + + CmdSketcherTrimming + + + Sketcher + Sketcher + + + Trim edge + Trim edge + + + Trim an edge with respect to the picked position + Trim an edge with respect to the picked position + + + Trims an edge with respect to the picked position + Trims an edge with respect to the picked position + + + + CmdSketcherViewSketch + + + Sketcher + Sketcher + + + View sketch + View sketch + + + View sketch perpendicular to sketch plane + View sketch perpendicular to sketch plane + + + + Gui::TaskView::TaskSketcherCreateCommands + + + Appearance + Aspect + + + + QObject + + + Wrong selection + Selecţie greşită + + + Select edge(s) from the sketch. + Select edge(s) from the sketch. + + + + Select an edge from the sketch. + Select an edge from the sketch. + + + Double constraint + Double constraint + + + The selected edge has already a horizontal constraint! + The selected edge has already a horizontal constraint! + + + Impossible constraint + Impossible constraint + + + Cannot add a constraint between two external geometries! + Cannot add a constraint between two external geometries! + + + Only sketch and its support is allowed to select + Only sketch and its support is allowed to select + + + One of the selected has to be on the sketch + One of the selected has to be on the sketch + + + The selected edge is not a line segment + The selected edge is not a line segment + + + The selected edge has already a vertical constraint! + The selected edge has already a vertical constraint! + + + The selected item(s) can't accept a horizontal constraint! + The selected item(s) can't accept a horizontal constraint! + + + The selected item(s) can't accept a vertical constraint! + The selected item(s) can't accept a vertical constraint! + + + Select entities from the sketch. + Select entities from the sketch. + + + Select exactly one entity from the sketch. + Select exactly one entity from the sketch. + + + Select vertexes from the sketch. + Select vertexes from the sketch. + + + Select exactly two vertexes from the sketch. + Select exactly two vertexes from the sketch. + + + Select exactly one line or one point and one line or two points from the sketch. + Select exactly one line or one point and one line or two points from the sketch. + + + Cannot add a length constraint on an external geometry! + Cannot add a length constraint on an external geometry! + + + Select exactly one point and one object from the sketch. + Select exactly one point and one object from the sketch. + + + Select exactly one line or up to two points from the sketch. + Select exactly one line or up to two points from the sketch. + + + Cannot add a horizontal length constraint on an external geometry! + Cannot add a horizontal length constraint on an external geometry! + + + Cannot add a vertical length constraint on an external geometry! + Cannot add a vertical length constraint on an external geometry! + + + Select two or more lines from the sketch. + Select two or more lines from the sketch. + + + Select at least two lines from the sketch. + Select at least two lines from the sketch. + + + Select a valid line + Select a valid line + + + The selected edge is not a valid line + The selected edge is not a valid line + + + The selected points should be end points of arcs and lines. + The selected points should be end points of arcs and lines. + + + The selected point should be an end point of an arc or line. + The selected point should be an end point of an arc or line. + + + The selected edge should be an arc, line or circle. + The selected edge should be an arc, line or circle. + + + One of the selected edges should be a line. + One of the selected edges should be a line. + + + Select exactly one arc or circle from the sketch. + Select exactly one arc or circle from the sketch. + + + Select one or two lines from the sketch. + Select one or two lines from the sketch. + + + Cannot add an angle constraint on an external geometry! + Cannot add an angle constraint on an external geometry! + + + Select exactly one or two lines from the sketch. + Select exactly one or two lines from the sketch. + + + Select two edges from the sketch. + Select two edges from the sketch. + + + Select atleast two lines from the sketch. + Select atleast two lines from the sketch. + + + Select two or more compatible edges + Select two or more compatible edges + + + Sketch axes cannot be used in equality constraints + Sketch axes cannot be used in equality constraints + + + Select two or more edges of similar type + Select two or more edges of similar type + + + Cannot add a constraint between external geometries! + Cannot add a constraint between external geometries! + + + Select exactly two same geometries + Select exactly two same geometries + + + Select valid geometries + Select valid geometries + + + Select geometry of similar type + Select geometry of similar type + + + Select two points and one line from the sketch. + Select two points and one line from the sketch. + + + Select exactly one line from the sketch. + Select exactly one line from the sketch. + + + Select two lines from the sketch. + Select two lines from the sketch. + + + Select exactly two lines from the sketch. + Select exactly two lines from the sketch. + + + Select two entities from the sketch. + Select two entities from the sketch. + + + Select exactly two entities from the sketch. + Select exactly two entities from the sketch. + + + + Edit sketch + Edit sketch + + + A dialog is already open in the task panel + A dialog is already open in the task panel + + + Do you want to close this dialog? + Do you want to close this dialog? + + + + Several sub-elements selected + Several sub-elements selected + + + You have to select a single face as support for a sketch! + You have to select a single face as support for a sketch! + + + No support face selected + No support face selected + + + You have to select a face as support for a sketch! + You have to select a face as support for a sketch! + + + No planar support + No planar support + + + You need a planar face as support for a sketch! + You need a planar face as support for a sketch! + + + + Distance constraint + Distance constraint + + + Not allowed to edit the datum because the sketch contains conflicting constraints + Not allowed to edit the datum because the sketch contains conflicting constraints + + + Dimensional constraint + Dimensional constraint + + + + SketchOrientationDialog + + Choose orientation + Choose orientation + + + Sketch orientation + Sketch orientation + + + XY-Plane + XY-Plane + + + XZ-Plane + XZ-Plane + + + YZ-Plane + YZ-Plane + + + Reverse direction + Reverse direction + + + Offset: + Offset: + + + + SketcherGui::InsertDatum + + + Insert datum + Insert datum + + + datum: + datum: + + + + SketcherGui::SketchOrientationDialog + + + Choose orientation + Choose orientation + + + Sketch orientation + Sketch orientation + + + XY-Plane + XY-Plane + + + XZ-Plane + XZ-Plane + + + YZ-Plane + YZ-Plane + + + Reverse direction + Reverse direction + + + Offset: + Offset: + + + + SketcherGui::TaskSketcherConstrains + + + Form + Form + + + Filter: + Filter: + + + All + All + + + Normal + Normal + + + Datums + Datums + + + Named + Named + + + + Constraints + Constraints + + + + SketcherGui::TaskSketcherGeneral + + + Form + Form + + + Grid size: + Grid size: + + + Grid snap + Grid snap + + + Unsolved + Unsolved + + + Grid Snap + Grid Snap + + + 0.1 mm + 0.1 mm + + + 0.2 mm + 0.2 mm + + + 0.5 mm + 0.5 mm + + + 1 mm + 1 mm + + + 2 mm + 2 mm + + + 5 mm + 5 mm + + + 10 mm + 10 mm + + + 20 mm + 20 mm + + + 50 mm + 50 mm + + + 100 mm + 100 mm + + + 200 mm + 200 mm + + + 500 mm + 500 mm + + + 1 m + 1 m + + + 2 m + 2 m + + + 5 m + 5 m + + + 10 m + 10 m + + + 20 m + 20 m + + + Auto constraints + Auto constraints + + + auto constraints + auto constraints + + + + Edit controls + Edit controls + + + + SketcherGui::TaskSketcherMessages + + + Solver messages + Solver messages + + + + TaskSketcherConstrains + + Constraints + Constraints + + + + TaskSketcherCreateCommands + + Appearance + Aspect + + + + TaskSketcherGeneral + + Edit controls + Edit controls + + + + TaskSketcherMessages + + + Form + Form + + + Undefined degrees of freedom + Undefined degrees of freedom + + + Not solved yet + Not solved yet + + + + Workbench + + + Sketcher + Sketcher + + + Sketcher geometries + Sketcher geometries + + + Sketcher geoms + Sketcher geoms + + + Sketcher constraints + Constrângeri desenator + + + diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ru.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ru.qm index 0a41970bb..e4e613268 100644 Binary files a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ru.qm and b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ru.qm differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ru.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ru.ts index 2cfa307b9..899dbf885 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ru.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ru.ts @@ -1,1299 +1,1052 @@ - - + + CmdSketcherConstrainAngle - - Sketcher - Эскизирование + + Sketcher + Эскизирование - - Constrain angle - Constrain angle + Constrain angle + Ограничение угла - - Fix the angle of a line or the angle between two lines - Fix the angle of a line or the angle between two lines + Fix the angle of a line or the angle between two lines + Фиксировать угол отрезка или угол между двумя отрезками - - + + CmdSketcherConstrainCoincident - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Constrain coincident - Ограничение коинцидентности + Constrain coincident + Ограничение коинцидентности - - Create a coincident constraint on the selected item - Создать ограничение коинцидентности для выбранных элементов + Create a coincident constraint on the selected item + Создать ограничение коинцидентности для выбранных элементов - - + + CmdSketcherConstrainDistance - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Constrain distance - Ограничение расстояния + Constrain distance + Ограничение расстояния - - Fix a length of a line or the distance between a line and a vertex - Зафиксировать длину линии или расстояние между линией и вершиной + Fix a length of a line or the distance between a line and a vertex + Зафиксировать длину линии или расстояние между линией и вершиной - - + + CmdSketcherConstrainDistanceX - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Constrain horizontal distance - Constrain horizontal distance + Constrain horizontal distance + Ограничение расстояния по горизонтали - Constrain vertical distance - Ограничить расстояние по вертикали + Constrain vertical distance + Constrain vertical distance - - Fix the horizontal distance between two points or line ends - Fix the horizontal distance between two points or line ends + Fix the horizontal distance between two points or line ends + Фиксировать расстояние по горизонтали между двумя точками или концами отрезка - - + + CmdSketcherConstrainDistanceY - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Constrain vertical distance - Ограничить расстояние по вертикали + Constrain vertical distance + Constrain vertical distance - Constrain horizontal distance - Constrain horizontal distance + Constrain horizontal distance + Ограничение расстояния по горизонтали - - Fix the vertical distance between two points or line ends - Fix the vertical distance between two points or line ends + Fix the vertical distance between two points or line ends + Фиксировать расстояние по вертикали между двумя точками или концами отрезка - - + + CmdSketcherConstrainEqual - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Constrain equal - Constrain equal + Constrain equal + Ограничение равности - - Create an equality constraint between two lines or between circles and arcs - Create an equality constraint between two lines or between circles and arcs + Create an equality constraint between two lines or between circles and arcs + Создать ограничение равенства между двумя отрезками или между окружностями и дугами - - + + CmdSketcherConstrainHorizontal - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Constrain horizontally - Ограничение горизонтальности + Constrain horizontally + Ограничение горизонтальности - - Create a horizontal constraint on the selected item - Создание ограничения горизонтальности для выбранного элемента + Create a horizontal constraint on the selected item + Создание ограничения горизонтальности для выбранного элемента - - + + CmdSketcherConstrainLock - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Constrain lock - Ограничение блокировка + Constrain lock + Ограничение блокировка - - Create a lock constraint on the selected item - Create a lock constraint on the selected item + Create a lock constraint on the selected item + Создать ограничение блокировки для выбранного элемента - - + + CmdSketcherConstrainParallel - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Constrain parallel - Ограничение параллельности + Constrain parallel + Ограничение параллельности - - Create a parallel constraint between two lines - Создание ограничения параллельности между двумя линиями + Create a parallel constraint between two lines + Создание ограничения параллельности между двумя линиями - - + + CmdSketcherConstrainPerpendicular - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Constrain perpendicular - Constrain perpendicular + Constrain perpendicular + Ограничение перпендикулярности - - Create a Perpendicular constraint between two lines - Create a Perpendicular constraint between two lines + Create a Perpendicular constraint between two lines + Создать ограничение перпендикулярности между двумя отрезками - - + + CmdSketcherConstrainPointOnObject - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Constrain point onto object - Constrain point onto object + Constrain point onto object + Зафиксировать точку на объекте - - Fix a point onto an object - Fix a point onto an object + Fix a point onto an object + Привязать точку к объекту - - + + CmdSketcherConstrainRadius - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Constrain radius - Constrain radius + Constrain radius + Ограничение радиуса - - Fix the radius of a circle or an arc - Fix the radius of a circle or an arc + Fix the radius of a circle or an arc + Зафиксировать радиус окружности или дуги - - + + CmdSketcherConstrainSymmetric - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Constrain symmetrical - Constrain symmetrical + Constrain symmetrical + Ограничение симметричности - - Create an symmetry constraint between two points with respect to a line - Create an symmetry constraint between two points with respect to a line + Create an symmetry constraint between two points with respect to a line + Создать ограничение симметричности для дух точек относительно линии - - + + CmdSketcherConstrainTangent - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Constrain tangent - Constrain tangent + Constrain tangent + Ограничение касательности - - Create a tangent constraint between two entities - Create a tangent constraint between two entities + Create a tangent constraint between two entities + Создание ограничения касательности между двумя объектами - - + + CmdSketcherConstrainVertical - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Constrain vertically - Ограничение вертикальности + Constrain vertically + Ограничение вертикальности - - Create a vertical constraint on the selected item - Создание ограниченя вертикальности для выбранного элемента + Create a vertical constraint on the selected item + Создание ограниченя вертикальности для выбранного элемента - - + + CmdSketcherCreateArc - - Sketcher - Эскизирование + + Sketcher + Эскизирование - - Create arc - Создать дугу + Create arc + Создать дугу - - Create an arc in the sketch - Создать дугу в эскизе + Create an arc in the sketch + Создать дугу в эскизе - - + + CmdSketcherCreateCircle - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Create circle - Создать окружность + Create circle + Создать окружность - - Create a circle in the sketch - Создать окружность в эскизе + Create a circle in the sketch + Создать окружность в эскизе - - + + CmdSketcherCreateDraftLine - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Create draft line - Создать вспомогательную линию + Create draft line + Создать вспомогательную линию - - Create a draft line in the sketch - Создать вспомогательную линию в эскизе + Create a draft line in the sketch + Создать вспомогательную линию в эскизе - - + + CmdSketcherCreateFillet - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Create fillet - Create fillet + Create fillet + Создание скругления - - Create a fillet between two lines or at a coincidental point - + Create a fillet between two lines or at a coincidental point + Create a fillet between two lines or at a coincidental point - Create a fillet between two lines or at a coincident point - Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point - - + + CmdSketcherCreateLine - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Create line - Создать линию + Create line + Создать линию - - Create a line in the sketch - Создать линию в эскизе + Create a line in the sketch + Создать линию в эскизе - - + + CmdSketcherCreatePoint - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Create point - Создать точку + Create point + Создать точку - - Create a point in the sketch - Создать точку в эскизе + Create a point in the sketch + Создать точку в эскизе - - + + CmdSketcherCreatePolyline - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Create polyline - Создать полилинию + Create polyline + Создать полилинию - - Create a polyline in the sketch - Создать полилинию в эскизе + Create a polyline in the sketch + Создать полилинию в эскизе - - + + CmdSketcherCreateRectangle - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Create rectangle - Создать прямоугольник + Create rectangle + Создать прямоугольник - - Create a rectangle in the sketch - Создать прямоугольник в эскизе + Create a rectangle in the sketch + Создать прямоугольник в эскизе - - + + CmdSketcherCreateText - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Create text - Создать текст + Create text + Создать текст - - Create text in the sketch - Создание текста в эскизе + Create text in the sketch + Создание текста в эскизе - - + + CmdSketcherExternal - - Sketcher - Эскизирование + Sketcher + Эскизирование - - External geometry - + External geometry + External geometry - - Create an edge linked to an external geometry - + Create an edge linked to an external geometry + Create an edge linked to an external geometry - - + + CmdSketcherLeaveSketch - - Sketcher - Эскизирование + + Sketcher + Эскизирование - - Leave sketch - Покинуть эскиз + Leave sketch + Покинуть эскиз - - Close the editing of the sketch - Закончить редактирование эскиза + Close the editing of the sketch + Закончить редактирование эскиза - - + + CmdSketcherMapSketch - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Map sketch to face... - Map sketch to face... + Map sketch to face... + Спроецировать эскиз на грань... - - Map a sketch to a face - Map a sketch to a face + Map a sketch to a face + Проекция эскиза на грань - - + + CmdSketcherNewSketch - - Sketcher - Эскизирование + Sketcher + Эскизирование - - Create sketch - Создать эскиз + Create sketch + Создать эскиз - - Create a new or edit the selected sketch - Create a new or edit the selected sketch + Create a new or edit the selected sketch + Создать новый или редактировать выбранный эскиз - Create a new sketch - Создать новый эскиз + Create a new sketch + Создать новый эскиз - - + + CmdSketcherNewSketchSF - Sketcher - Эскизирование + Sketcher + Эскизирование - Sketchflat sketch - Плоский эскиз + Sketchflat sketch + Плоский эскиз - Create a new sketchflat sketch by starting externel editor - Создайте новый плосий эскиз, запустив внешний редактор + Create a new sketchflat sketch by starting externel editor + Создайте новый плосий эскиз, запустив внешний редактор - - + + CmdSketcherToggleConstruction - - Sketcher - Эскизирование + + Sketcher + Эскизирование - - Toggle construction line - Toggle construction line + Toggle construction line + Переключение режима вспомогательной линии - - Toggles the currently selected lines to/from construction mode - Toggles the currently selected lines to/from construction mode + Toggles the currently selected lines to/from construction mode + Переключение режима вспомогательной линии для выбранной геометрии - - + + CmdSketcherTrimming - - Sketcher - Эскизирование + + Sketcher + Эскизирование - - Trim edge - Trim edge + Trim edge + Обрезать кромку - - Trim an edge with respect to the picked position - + Trim an edge with respect to the picked position + Trim an edge with respect to the picked position - Trims an edge with respect to the picked position - Trims an edge with respect to the picked position + Trims an edge with respect to the picked position + Обрезать кромку в отмеченном положении - - + + CmdSketcherViewSketch - - Sketcher - Эскизирование + + Sketcher + Эскизирование - - View sketch - View sketch + View sketch + Просмотр эскиза - - View sketch perpendicular to sketch plane - View sketch perpendicular to sketch plane + View sketch perpendicular to sketch plane + Совместить плоскость эскиза с плоскостью экрана - - + + Gui::TaskView::TaskSketcherCreateCommands - - Appearance - Представление + + Appearance + Представление - - + + QObject - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Wrong selection - Неправильный выбор + + Wrong selection + Неправильный выбор - - Select edge(s) from the sketch. - Select edge(s) from the sketch. + Select edge(s) from the sketch. + Выберите кромку(и) из эскиза. - - - Select an edge from the sketch. - Выбирите ребро в эскизе. + + Select an edge from the sketch. + Выбирите ребро в эскизе. - - - Double constraint - Двойное ограничение + Double constraint + Двойное ограничение - - - The selected edge has already a horizontal constraint! - Выбранное ребро уже имеет ограничение горизонтальности! + The selected edge has already a horizontal constraint! + Выбранное ребро уже имеет ограничение горизонтальности! - - - - - - - Impossible constraint - Ограничение невозможно + Impossible constraint + Ограничение невозможно - - Cannot add a constraint between two external geometries! - + Cannot add a constraint between two external geometries! + Cannot add a constraint between two external geometries! - - - - Only sketch and its support is allowed to select - Only sketch and its support is allowed to select + Only sketch and its support is allowed to select + Only sketch and its support is allowed to select - - One of the selected has to be on the sketch - One of the selected has to be on the sketch + One of the selected has to be on the sketch + Один из выбранных должен находиться на эскизе - - - The selected edge is not a line segment - The selected edge is not a line segment + The selected edge is not a line segment + Выбранная кромка не является отрезком - - - The selected edge has already a vertical constraint! - Выбранное ребро уже имеет ограничение вертикальности! + The selected edge has already a vertical constraint! + Выбранное ребро уже имеет ограничение вертикальности! - - The selected item(s) can't accept a horizontal constraint! - + The selected item(s) can't accept a horizontal constraint! + The selected item(s) can't accept a horizontal constraint! - - The selected item(s) can't accept a vertical constraint! - + The selected item(s) can't accept a vertical constraint! + The selected item(s) can't accept a vertical constraint! - - Select entities from the sketch. - Select entities from the sketch. + Select entities from the sketch. + Выберите объекты эскиза. - - - Select exactly one entity from the sketch. - Select exactly one entity from the sketch. + Select exactly one entity from the sketch. + Выберите один объект эскиза. - - - - - - - Select vertexes from the sketch. - Выберите вершины из эскиза. + Select vertexes from the sketch. + Выберите вершины из эскиза. - - - - Select exactly two vertexes from the sketch. - Выберите две вершины из эскиза. + Select exactly two vertexes from the sketch. + Выберите две вершины из эскиза. - - - Select exactly one line or one point and one line or two points from the sketch. - Select exactly one line or one point and one line or two points from the sketch. + Select exactly one line or one point and one line or two points from the sketch. + Выберите или один отрезок, или одну точку и один отрезок, или две точки из эскиза. - - Cannot add a length constraint on an external geometry! - + Cannot add a length constraint on an external geometry! + Cannot add a length constraint on an external geometry! - - - Select exactly one point and one object from the sketch. - Select exactly one point and one object from the sketch. + Select exactly one point and one object from the sketch. + Выберите одну точку и один объект эскиза. - - - - - Select exactly one line or up to two points from the sketch. - Select exactly one line or up to two points from the sketch. + Select exactly one line or up to two points from the sketch. + Выберите один отрезок или две точки эскиза. - - Cannot add a horizontal length constraint on an external geometry! - + Cannot add a horizontal length constraint on an external geometry! + Cannot add a horizontal length constraint on an external geometry! - - Cannot add a vertical length constraint on an external geometry! - + Cannot add a vertical length constraint on an external geometry! + Cannot add a vertical length constraint on an external geometry! - - Select two or more lines from the sketch. - Select two or more lines from the sketch. + Select two or more lines from the sketch. + Выберите два или более отрезков эскиза. - - Select at least two lines from the sketch. - Select at least two lines from the sketch. + Select at least two lines from the sketch. + Выберите по крайней мере два отрезка из эскиза. - - Select a valid line - Select a valid line + Select a valid line + Выберите допустимый отрезок - - The selected edge is not a valid line - The selected edge is not a valid line + The selected edge is not a valid line + Выбранная кромка не является допустимым отрезком - - The selected points should be end points of arcs and lines. - + The selected points should be end points of arcs and lines. + The selected points should be end points of arcs and lines. - - The selected point should be an end point of an arc or line. - + The selected point should be an end point of an arc or line. + The selected point should be an end point of an arc or line. - - The selected edge should be an arc, line or circle. - + The selected edge should be an arc, line or circle. + The selected edge should be an arc, line or circle. - - One of the selected edges should be a line. - + One of the selected edges should be a line. + One of the selected edges should be a line. - - - - Select exactly one arc or circle from the sketch. - Select exactly one arc or circle from the sketch. + Select exactly one arc or circle from the sketch. + Выберите одну дугу или окружность из эскиза. - - Select one or two lines from the sketch. - + Select one or two lines from the sketch. + Select one or two lines from the sketch. - - Cannot add an angle constraint on an external geometry! - + Cannot add an angle constraint on an external geometry! + Cannot add an angle constraint on an external geometry! - - Select exactly one or two lines from the sketch. - Select exactly one or two lines from the sketch. + Select exactly one or two lines from the sketch. + Выберите один или два отрезка из эскиза. - - Select two edges from the sketch. - Select two edges from the sketch. + Select two edges from the sketch. + Выберите две кромки эскиза. - - Select atleast two lines from the sketch. - Выберите по крайней мере две линии из эскиза. + Select atleast two lines from the sketch. + Выберите по крайней мере две линии из эскиза. - - Select two or more compatible edges - + Select two or more compatible edges + Select two or more compatible edges - - Sketch axes cannot be used in equality constraints - + Sketch axes cannot be used in equality constraints + Sketch axes cannot be used in equality constraints - - - Select two or more edges of similar type - + Select two or more edges of similar type + Select two or more edges of similar type - - Cannot add a constraint between external geometries! - + Cannot add a constraint between external geometries! + Cannot add a constraint between external geometries! - Select exactly two same geometries - Select exactly two same geometries + Select exactly two same geometries + Выберите ровно два объекта одного типа - Select valid geometries - Select valid geometries + Select valid geometries + Выберите правильную геометрию - Select geometry of similar type - Select geometry of similar type + Select geometry of similar type + Выберите геометрию подобного типа - - - - Select two points and one line from the sketch. - Select two points and one line from the sketch. + Select two points and one line from the sketch. + Выберите две очки и одну линию на эскизе. - Select exactly one line from the sketch. - Выберите одну линию из эскиза. + Select exactly one line from the sketch. + Выберите одну линию из эскиза. - Select two lines from the sketch. - Выберите две линии из эскиза. + Select two lines from the sketch. + Выберите две линии из эскиза. - Select exactly two lines from the sketch. - Выберите ровно две линии из эскиза. + Select exactly two lines from the sketch. + Выберите ровно две линии из эскиза. - - - Select two entities from the sketch. - Select two entities from the sketch. + Select two entities from the sketch. + Выберите два объекта эскиза. - - - - - Select exactly two entities from the sketch. - Select exactly two entities from the sketch. + Select exactly two entities from the sketch. + Выберите два объекта эскиза. - - Edit sketch - Редактировать эскиз + + Edit sketch + Редактировать эскиз - - A dialog is already open in the task panel - Диалог уже открыт в панели задач + A dialog is already open in the task panel + Диалог уже открыт в панели задач - - Do you want to close this dialog? - Вы хотите закрыть этот диалог? + Do you want to close this dialog? + Вы хотите закрыть этот диалог? - - Several sub-elements selected - Несколько вложенных деталей выбрано + + Several sub-elements selected + Несколько вложенных деталей выбрано - - You have to select a single face as support for a sketch! - Вы должны выбрать одну поверхность, как основу для эскиза! + You have to select a single face as support for a sketch! + Вы должны выбрать одну поверхность, как основу для эскиза! - - No support face selected - Нет поддержки выбранной поверхности + No support face selected + Нет поддержки выбранной поверхности - - You have to select a face as support for a sketch! - Вы должны выбрать поверхность, как основу для эскиза! + You have to select a face as support for a sketch! + Вы должны выбрать поверхность, как основу для эскиза! - - No planar support - Нет поддержки плоскостей + No planar support + Нет поддержки плоскостей - - You need a planar face as support for a sketch! - Вам нужна плоская поверхность для создания эскиза! + You need a planar face as support for a sketch! + Вам нужна плоская поверхность для создания эскиза! - - Distance constraint - Distance constraint + + Distance constraint + Ограничение расстояния - - Not allowed to edit the datum because the sketch contains conflicting constraints - Не разрешается редактировать значение из-за конфликта условий + Not allowed to edit the datum because the sketch contains conflicting constraints + Не разрешается редактировать значение из-за конфликта условий - - Dimensional constraint - Dimensional constraint + Dimensional constraint + Ограничение размерами - - + + SketchOrientationDialog - Choose orientation - Choose orientation + Choose orientation + Выберите ориентацию - Sketch orientation - Sketch orientation + Sketch orientation + Ориентация эскиза - XY-Plane - XY-плоскость + XY-Plane + Плоскость XY - XZ-Plane - XZ-Plane + XZ-Plane + Плоскость XZ - YZ-Plane - YZ-Plane + YZ-Plane + Плоскость YZ - Reverse direction - Reverse direction + Reverse direction + Развернуть направление - Offset: - Смещение: + Offset: + Смещение: - - + + SketcherGui::InsertDatum - - Insert datum - Вставьте вспомогательный элемент + + Insert datum + Вставьте вспомогательный элемент - - datum: - Вспомогательный: + datum: + Вспомогательный: - - + + SketcherGui::SketchOrientationDialog - - Choose orientation - Choose orientation + + Choose orientation + Выберите ориентацию - - Sketch orientation - Sketch orientation + Sketch orientation + Ориентация эскиза - - XY-Plane - XY-плоскость + XY-Plane + Плоскость XY - - XZ-Plane - XZ-Plane + XZ-Plane + Плоскость XZ - - YZ-Plane - YZ-Plane + YZ-Plane + Плоскость YZ - - Reverse direction - Reverse direction + Reverse direction + Развернуть направление - - Offset: - Смещение: + Offset: + Смещение: - - + + SketcherGui::TaskSketcherConstrains - - Form - Форма + + Form + Форма - - Filter: - Фильтр: + Filter: + Фильтр: - - All - Всё + All + Все - - Normal - Нормальный + Normal + Нормальный - - Datums - Геодезические + Datums + Геодезические - - Named - Поименованый + Named + Поименованый - - Constraints - Ограничения + + Constraints + Ограничения - - + + SketcherGui::TaskSketcherGeneral - - Form - Форма + + Form + Форма - - Grid size: - Grid size: + Grid size: + Размер сетки: - - Grid snap - Grid snap + Grid snap + Привязка к сетке - Unsolved - Неразрешённый + Unsolved + Неразрешённый - Grid Snap - Привязка к сетке + Grid Snap + Привязка к сетке - 0.1 mm - 0.1 мм + 0.1 mm + 0,1 мм - 0.2 mm - 0.2 мм + 0.2 mm + 0.2 мм - 0.5 mm - 0.5 мм + 0.5 mm + 0,5 мм - 1 mm - 1 мм + 1 mm + 1 мм - 2 mm - 2 мм + 2 mm + 2 мм - 5 mm - 5 мм + 5 mm + 5 мм - 10 mm - 10 мм + 10 mm + 10 мм - 20 mm - 20 мм + 20 mm + 20 мм - 50 mm - 50 мм + 50 mm + 50 мм - 100 mm - 100 мм + 100 mm + 100 мм - 200 mm - 200 мм + 200 mm + 200 мм - 500 mm - 500 мм + 500 mm + 500 мм - 1 m - 1 м + 1 m + 1 м - 2 m - 2 м + 2 m + 2 м - 5 m - 5 м + 5 m + 5 м - 10 m - 10 м + 10 m + 10 м - 20 m - 20 м + 20 m + 20 м - - Auto constraints - Автоматические условия + Auto constraints + Автоматические условия - auto constraints - Авто ограничения + auto constraints + Авто ограничения - - Edit controls - Элементы управления для редактирования + + Edit controls + Элементы управления для редактирования - - + + SketcherGui::TaskSketcherMessages - - Solver messages - Solver messages + + Solver messages + Сообщения решателя - - + + TaskSketcherConstrains - Constraints - Ограничения + Constraints + Ограничения - - + + TaskSketcherCreateCommands - Appearance - Представление + Appearance + Представление - - + + TaskSketcherGeneral - Edit controls - Элементы управления для редактирования + Edit controls + Элементы управления для редактирования - - + + TaskSketcherMessages - - Form - Форма + + Form + Форма - - Undefined degrees of freedom - Undefined degrees of freedom + Undefined degrees of freedom + Неопределено степеней свободы - - Not solved yet - Not solved yet + Not solved yet + Пока еще не решено - - + + Workbench - - Sketcher - Эскизирование + + Sketcher + Эскизирование - - Sketcher geometries - Sketcher geometries + Sketcher geometries + Sketcher geometries - Sketcher geoms - Геометрия эскиза + Sketcher geoms + Геометрия эскиза - - Sketcher constraints - Ограничения эскиза + Sketcher constraints + Ограничения эскиза - + diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_se.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_se.qm deleted file mode 100644 index fb32131ed..000000000 Binary files a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_se.qm and /dev/null differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_se.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_se.ts deleted file mode 100644 index f8595d9f3..000000000 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_se.ts +++ /dev/null @@ -1,1299 +0,0 @@ - - - - - CmdSketcherConstrainAngle - - - Sketcher - Skissare - - - - Constrain angle - Begränsa vinkel - - - - Fix the angle of a line or the angle between two lines - Fixera en linjes vinkel eller vinkeln mellan två linjer - - - - CmdSketcherConstrainCoincident - - - Sketcher - Skissare - - - - Constrain coincident - Begränsa sammanfallande - - - - Create a coincident constraint on the selected item - Skapa en sammanfallande begränsning för den markerade detaljen - - - - CmdSketcherConstrainDistance - - - Sketcher - Skissare - - - - Constrain distance - Begränsningsavstånd - - - - Fix a length of a line or the distance between a line and a vertex - Fixera längden på en linje eller avståndet mellan en linje och ett hörn - - - - CmdSketcherConstrainDistanceX - - - Sketcher - Skissare - - - - Constrain horizontal distance - Begränsa horisontellt avstånd - - - Constrain vertical distance - Begränsa vertikala avstånd - - - - Fix the horizontal distance between two points or line ends - Fixera det horisontella avståndet mellan två punkter eller linjeändar - - - - CmdSketcherConstrainDistanceY - - - Sketcher - Skissare - - - - Constrain vertical distance - Begränsa vertikala avstånd - - - Constrain horizontal distance - Begränsa horisontellt avstånd - - - - Fix the vertical distance between two points or line ends - Fixera det vertikala avståndet mellan två punkter eller linjeändar - - - - CmdSketcherConstrainEqual - - - Sketcher - Skissare - - - - Constrain equal - Begränsa lika - - - - Create an equality constraint between two lines or between circles and arcs - Skapa en jämlikhetsbegränsning mellan två linjer eller mellan cirklar och cirkelbågar - - - - CmdSketcherConstrainHorizontal - - - Sketcher - Skissare - - - - Constrain horizontally - Begränsa horisontellt - - - - Create a horizontal constraint on the selected item - Skapa en horisontell begränsning på den valda detaljen - - - - CmdSketcherConstrainLock - - - Sketcher - Skissare - - - - Constrain lock - Begränsa lås - - - - Create a lock constraint on the selected item - Skapa en lås begränsning för det markerade objektet - - - - CmdSketcherConstrainParallel - - - Sketcher - Skissare - - - - Constrain parallel - Begränsa parallellt - - - - Create a parallel constraint between two lines - Skapa en parallell begränsning mellan två linjer - - - - CmdSketcherConstrainPerpendicular - - - Sketcher - Skissare - - - - Constrain perpendicular - Begränsa vinkelrätt - - - - Create a Perpendicular constraint between two lines - Skapa en vinkelrät begränsning mellan två linjer - - - - CmdSketcherConstrainPointOnObject - - - Sketcher - Skissare - - - - Constrain point onto object - Begränsa punkt på objekt - - - - Fix a point onto an object - Fixera en punkt på ett objekt - - - - CmdSketcherConstrainRadius - - - Sketcher - Skissare - - - - Constrain radius - Begränsa radie - - - - Fix the radius of a circle or an arc - Fixera cirkelns eller cirkelbågens radie - - - - CmdSketcherConstrainSymmetric - - - Sketcher - Skissare - - - - Constrain symmetrical - Begränsa symmetriskt - - - - Create an symmetry constraint between two points with respect to a line - Skapa en symmetribegränsning mellan två punkter i förhållande till en linje - - - - CmdSketcherConstrainTangent - - - Sketcher - Skissare - - - - Constrain tangent - Begränsa tangens - - - - Create a tangent constraint between two entities - Skapa en tangentbegränsning mellan två föremål - - - - CmdSketcherConstrainVertical - - - Sketcher - Skissare - - - - Constrain vertically - Begränsa vertikalt - - - - Create a vertical constraint on the selected item - Skapa en vertikal begränsning på den markerade detaljen - - - - CmdSketcherCreateArc - - - Sketcher - Skissare - - - - Create arc - Skapa cirkelbåge - - - - Create an arc in the sketch - Skapa en cirkelbåge i skissen - - - - CmdSketcherCreateCircle - - - Sketcher - Skissare - - - - Create circle - Skapa en cirkel - - - - Create a circle in the sketch - Skapa en cirkel i skissen - - - - CmdSketcherCreateDraftLine - - - Sketcher - Skissare - - - - Create draft line - Skapa ritlinje - - - - Create a draft line in the sketch - Skapa ritlinje i skissen - - - - CmdSketcherCreateFillet - - - Sketcher - Skissare - - - - Create fillet - Skapa avrundning - - - - Create a fillet between two lines or at a coincidental point - - - - Create a fillet between two lines or at a coincident point - Skapa en avrundning mellan två linjer eller vid en sammanfallande punkt - - - - CmdSketcherCreateLine - - - Sketcher - Skissare - - - - Create line - Skapa linje - - - - Create a line in the sketch - Skapa en linje i skissen - - - - CmdSketcherCreatePoint - - - Sketcher - Skissare - - - - Create point - Skapa punkt - - - - Create a point in the sketch - Skapa en punkt i skissen - - - - CmdSketcherCreatePolyline - - - Sketcher - Skissare - - - - Create polyline - Skapa polylinje - - - - Create a polyline in the sketch - Skapa en polylinje i skissen - - - - CmdSketcherCreateRectangle - - - Sketcher - Skissare - - - - Create rectangle - Skapa rektangel - - - - Create a rectangle in the sketch - Skapa en rektangel i skissen - - - - CmdSketcherCreateText - - - Sketcher - Skissare - - - - Create text - Skapa text - - - - Create text in the sketch - Skapa text i skissen - - - - CmdSketcherExternal - - - Sketcher - Skissare - - - - External geometry - - - - - Create an edge linked to an external geometry - - - - - CmdSketcherLeaveSketch - - - Sketcher - Skissare - - - - Leave sketch - Lämna skiss - - - - Close the editing of the sketch - Stäng skiss-redigeringen - - - - CmdSketcherMapSketch - - - Sketcher - Skissare - - - - Map sketch to face... - Kartera skiss till ytan ... - - - - Map a sketch to a face - Kartera en skiss till en yta - - - - CmdSketcherNewSketch - - - Sketcher - Skissare - - - - Create sketch - Skapa skiss - - - - Create a new or edit the selected sketch - Create a new or edit the selected sketch - - - Create a new sketch - Skapa en ny skiss - - - - CmdSketcherNewSketchSF - - Sketcher - Skissare - - - Sketchflat sketch - Sketchflat skiss - - - Create a new sketchflat sketch by starting externel editor - Skapa en ny sketchflat skiss genom att starta den externa redigeraren - - - - CmdSketcherToggleConstruction - - - Sketcher - Skissare - - - - Toggle construction line - Växla konstruktionslinje - - - - Toggles the currently selected lines to/from construction mode - Växlar de valda linjerna till / från konstruktionsläge - - - - CmdSketcherTrimming - - - Sketcher - Skissare - - - - Trim edge - Trimma kant - - - - Trim an edge with respect to the picked position - - - - Trims an edge with respect to the picked position - Trimmar en kant med i förhållande till den valda - - - - CmdSketcherViewSketch - - - Sketcher - Skissare - - - - View sketch - Visa skiss - - - - View sketch perpendicular to sketch plane - Visa skiss vinkelrätt mot skissplan - - - - Gui::TaskView::TaskSketcherCreateCommands - - - Appearance - Utseende - - - - QObject - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Wrong selection - Fel val - - - - Select edge(s) from the sketch. - Välj kant(er) från skissen. - - - - - Select an edge from the sketch. - Välj en kant från skissen. - - - - - Double constraint - Dubbelbegränsning - - - - - The selected edge has already a horizontal constraint! - Den valda kanten har redan en horisontell begränsning! - - - - - - - - - Impossible constraint - Omöjlig begränsning - - - - Cannot add a constraint between two external geometries! - - - - - - - Only sketch and its support is allowed to select - Endast skiss och dess stöd får väljas - - - - One of the selected has to be on the sketch - En av de valda måste finnas på skissen - - - - - The selected edge is not a line segment - Den valda kanten är inte ett linjesegment - - - - - The selected edge has already a vertical constraint! - Den valda kanten har redan en vertikal begränsning! - - - - The selected item(s) can't accept a horizontal constraint! - - - - - The selected item(s) can't accept a vertical constraint! - - - - - Select entities from the sketch. - Välj föremål från skissen. - - - - - Select exactly one entity from the sketch. - Välj exakt ett föremål från skissen. - - - - - - - - - Select vertexes from the sketch. - Välj hörnen från skissen. - - - - - - Select exactly two vertexes from the sketch. - Välj exakt två hörn från skissen. - - - - - Select exactly one line or one point and one line or two points from the sketch. - Välj exakt en linje eller en punkt och en linje eller två punkter från skissen. - - - - Cannot add a length constraint on an external geometry! - - - - - - Select exactly one point and one object from the sketch. - Välj exakt en punkt och ett objekt från skissen. - - - - - - - Select exactly one line or up to two points from the sketch. - Välj exakt en linje eller upp till två punkter från skissen. - - - - Cannot add a horizontal length constraint on an external geometry! - - - - - Cannot add a vertical length constraint on an external geometry! - - - - - Select two or more lines from the sketch. - Välj två eller flera linjer från skissen. - - - - Select at least two lines from the sketch. - Välj åtminstone två linjer från skissen. - - - - Select a valid line - Välj en giltig linje - - - - The selected edge is not a valid line - Den valda kanten är inte en giltig linje - - - - The selected points should be end points of arcs and lines. - - - - - The selected point should be an end point of an arc or line. - - - - - The selected edge should be an arc, line or circle. - - - - - One of the selected edges should be a line. - - - - - - - Select exactly one arc or circle from the sketch. - Välj exakt en cirkelbåge eller cirkel från skissen. - - - - Select one or two lines from the sketch. - - - - - Cannot add an angle constraint on an external geometry! - - - - - Select exactly one or two lines from the sketch. - Välj exakt en eller två linjer från skissen. - - - - Select two edges from the sketch. - Välj två kanter från skissen. - - - - Select atleast two lines from the sketch. - Välj åtminstone två linjer från skissen. - - - - Select two or more compatible edges - - - - - Sketch axes cannot be used in equality constraints - - - - - - Select two or more edges of similar type - - - - - Cannot add a constraint between external geometries! - - - - Select exactly two same geometries - Välj exakt två likadana geometrier - - - Select valid geometries - Välj giltiga geometrier - - - Select geometry of similar type - Välj geometri av liknande typ - - - - - - Select two points and one line from the sketch. - Välj två punkter och en linje från skissen. - - - Select exactly one line from the sketch. - Välj exakt en linje från skissen. - - - Select two lines from the sketch. - Välj två linjer från skissen. - - - Select exactly two lines from the sketch. - Välj exakt två linjer från skissen. - - - - - Select two entities from the sketch. - Välj två föremål från skissen. - - - - - - - Select exactly two entities from the sketch. - Välj exakt två föremål från skissen. - - - - Edit sketch - Redigera skiss - - - - A dialog is already open in the task panel - En dialogruta är redan öppen i uppgiftspanelen - - - - Do you want to close this dialog? - Vill du stänga denna dialogruta? - - - - Several sub-elements selected - Flera underelement valda - - - - You have to select a single face as support for a sketch! - Du måste välja en enkel yta som stöd för en skiss! - - - - No support face selected - Ingen stödyta vald - - - - You have to select a face as support for a sketch! - Du måste välja en yta som stöd för en skiss! - - - - No planar support - Inget planärt stöd - - - - You need a planar face as support for a sketch! - Du behöver en plan yta som stöd för en skiss! - - - - Distance constraint - Avstånd begränsning - - - - Not allowed to edit the datum because the sketch contains conflicting constraints - Inte tillåtet att ändra datum på grund av att skissen innehåller motstridiga begränsningar - - - - Dimensional constraint - Dimensional constraint - - - - SketchOrientationDialog - - Choose orientation - Välj orientering - - - Sketch orientation - Skissorientering - - - XY-Plane - XY-plan - - - XZ-Plane - XZ-Plan - - - YZ-Plane - YZ-Plan - - - Reverse direction - Omvänd riktning - - - Offset: - Offset: - - - - SketcherGui::InsertDatum - - - Insert datum - Infoga datum - - - - datum: - Datum: - - - - SketcherGui::SketchOrientationDialog - - - Choose orientation - Välj orientering - - - - Sketch orientation - Skissorientering - - - - XY-Plane - XY-plan - - - - XZ-Plane - XZ-Plan - - - - YZ-Plane - YZ-Plan - - - - Reverse direction - Omvänd riktning - - - - Offset: - Offset: - - - - SketcherGui::TaskSketcherConstrains - - - Form - Form - - - - Filter: - Filter: - - - - All - Alla - - - - Normal - Normal - - - - Datums - Datum - - - - Named - med namnet - - - - Constraints - Begränsningar - - - - SketcherGui::TaskSketcherGeneral - - - Form - Form - - - - Grid size: - Grid size: - - - - Grid snap - Grid snap - - - Unsolved - Olöst - - - Grid Snap - Rutnät snäpp - - - 0.1 mm - 0.1 mm - - - 0.2 mm - 0.2 mm - - - 0.5 mm - 0.5 mm - - - 1 mm - 1 mm - - - 2 mm - 2 mm - - - 5 mm - 5 mm - - - 10 mm - 10 mm - - - 20 mm - 20 mm - - - 50 mm - 50 mm - - - 100 mm - 100 mm - - - 200 mm - 200 mm - - - 500 mm - 500 mm - - - 1 m - 1 m - - - 2 m - 2 m - - - 5 m - 5 m - - - 10 m - 10 m - - - 20 m - 20 m - - - - Auto constraints - Auto begränsningar - - - auto constraints - auto begränsningar - - - - Edit controls - Redigera kontroller - - - - SketcherGui::TaskSketcherMessages - - - Solver messages - Problemlösarmeddelanden - - - - TaskSketcherConstrains - - Constraints - Begränsningar - - - - TaskSketcherCreateCommands - - Appearance - Utseende - - - - TaskSketcherGeneral - - Edit controls - Redigera kontroller - - - - TaskSketcherMessages - - - Form - Form - - - - Undefined degrees of freedom - Odefinierade frihetsgrader - - - - Not solved yet - Inte löst ännu - - - - Workbench - - - Sketcher - Skissare - - - - Sketcher geometries - Skissgeometrier - - - Sketcher geoms - Skissgeometrier - - - - Sketcher constraints - Skiss begränsningar - - - diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sk.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sk.qm new file mode 100644 index 000000000..12b6c65f6 Binary files /dev/null and b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sk.qm differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sk.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sk.ts new file mode 100644 index 000000000..8e3fcd566 --- /dev/null +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sk.ts @@ -0,0 +1,1052 @@ + + + + + CmdSketcherConstrainAngle + + + Sketcher + Sketcher + + + Constrain angle + Constrain angle + + + Fix the angle of a line or the angle between two lines + Fix the angle of a line or the angle between two lines + + + + CmdSketcherConstrainCoincident + + Sketcher + Sketcher + + + Constrain coincident + Obmedziť zhodnosť + + + Create a coincident constraint on the selected item + Vytvoriť zhodné obmedzenie pre vybranú položku + + + + CmdSketcherConstrainDistance + + Sketcher + Sketcher + + + Constrain distance + Obmedziť vzdialenosť + + + Fix a length of a line or the distance between a line and a vertex + Stanoviť dĺžku riadka alebo vzdialenosť medzi riadkom a vrcholom + + + + CmdSketcherConstrainDistanceX + + Sketcher + Sketcher + + + Constrain horizontal distance + Constrain horizontal distance + + + Constrain vertical distance + Constrain vertical distance + + + Fix the horizontal distance between two points or line ends + Fix the horizontal distance between two points or line ends + + + + CmdSketcherConstrainDistanceY + + Sketcher + Sketcher + + + Constrain vertical distance + Constrain vertical distance + + + Constrain horizontal distance + Constrain horizontal distance + + + Fix the vertical distance between two points or line ends + Fix the vertical distance between two points or line ends + + + + CmdSketcherConstrainEqual + + Sketcher + Sketcher + + + Constrain equal + Constrain equal + + + Create an equality constraint between two lines or between circles and arcs + Create an equality constraint between two lines or between circles and arcs + + + + CmdSketcherConstrainHorizontal + + Sketcher + Sketcher + + + Constrain horizontally + Obmedziť vodorovne + + + Create a horizontal constraint on the selected item + Vytvoriť horizontálne obmedzenie pre vybratú položku + + + + CmdSketcherConstrainLock + + Sketcher + Sketcher + + + Constrain lock + Zámok obmedzenia + + + Create a lock constraint on the selected item + Create a lock constraint on the selected item + + + + CmdSketcherConstrainParallel + + Sketcher + Sketcher + + + Constrain parallel + Obmedziť paralelné + + + Create a parallel constraint between two lines + Vytvorenie paralelné obmedzenie medzi dvoma čiarami + + + + CmdSketcherConstrainPerpendicular + + Sketcher + Sketcher + + + Constrain perpendicular + Constrain perpendicular + + + Create a Perpendicular constraint between two lines + Create a Perpendicular constraint between two lines + + + + CmdSketcherConstrainPointOnObject + + Sketcher + Sketcher + + + Constrain point onto object + Obmedziť bod na objekt + + + Fix a point onto an object + Fix a point onto an object + + + + CmdSketcherConstrainRadius + + Sketcher + Sketcher + + + Constrain radius + Constrain radius + + + Fix the radius of a circle or an arc + Uzamkni polomer kružnice alebo oblúka + + + + CmdSketcherConstrainSymmetric + + Sketcher + Sketcher + + + Constrain symmetrical + Constrain symmetrical + + + Create an symmetry constraint between two points with respect to a line + Create an symmetry constraint between two points with respect to a line + + + + CmdSketcherConstrainTangent + + Sketcher + Sketcher + + + Constrain tangent + Constrain tangent + + + Create a tangent constraint between two entities + Vytvoriť obmedzenie dotyčnice medzi dvoma subjektami + + + + CmdSketcherConstrainVertical + + Sketcher + Sketcher + + + Constrain vertically + Obmedziť vertikálne + + + Create a vertical constraint on the selected item + Na vybratú položku vytvoriť vertikálne obmedzenie + + + + CmdSketcherCreateArc + + + Sketcher + Sketcher + + + Create arc + Vytvoriť oblúk + + + Create an arc in the sketch + V náčrte vytvoriť oblúk + + + + CmdSketcherCreateCircle + + Sketcher + Sketcher + + + Create circle + Vytvoriť kružnicu + + + Create a circle in the sketch + Vytvoriť kružnicu v náčrte + + + + CmdSketcherCreateDraftLine + + Sketcher + Sketcher + + + Create draft line + Vytvoriť pomocnú čiaru + + + Create a draft line in the sketch + Vytvoriť pomocnú čiaru v náčrte + + + + CmdSketcherCreateFillet + + Sketcher + Sketcher + + + Create fillet + Create fillet + + + Create a fillet between two lines or at a coincidental point + Create a fillet between two lines or at a coincidental point + + + Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point + + + + CmdSketcherCreateLine + + Sketcher + Sketcher + + + Create line + Vytvoriť čiaru + + + Create a line in the sketch + Vytvoriť čiaru v náčrte + + + + CmdSketcherCreatePoint + + Sketcher + Sketcher + + + Create point + Vytvoriť bod + + + Create a point in the sketch + V náčrte vytvoriť bod + + + + CmdSketcherCreatePolyline + + Sketcher + Sketcher + + + Create polyline + Vytvoriť krivku + + + Create a polyline in the sketch + V náčrte vytvoriť krivku + + + + CmdSketcherCreateRectangle + + Sketcher + Sketcher + + + Create rectangle + Vytvoriť obdĺžnik + + + Create a rectangle in the sketch + V náčrte vytvoriť obdĺžnik + + + + CmdSketcherCreateText + + Sketcher + Sketcher + + + Create text + Vytvoriť Text + + + Create text in the sketch + V náčrte vytvoriť text + + + + CmdSketcherExternal + + Sketcher + Sketcher + + + External geometry + External geometry + + + Create an edge linked to an external geometry + Create an edge linked to an external geometry + + + + CmdSketcherLeaveSketch + + + Sketcher + Sketcher + + + Leave sketch + Opustiť náčrt + + + Close the editing of the sketch + Zavrieť úpravu náčrtu + + + + CmdSketcherMapSketch + + Sketcher + Sketcher + + + Map sketch to face... + Map sketch to face... + + + Map a sketch to a face + Map a sketch to a face + + + + CmdSketcherNewSketch + + Sketcher + Sketcher + + + Create sketch + Vytvoriť náčrt + + + Create a new or edit the selected sketch + Create a new or edit the selected sketch + + + Create a new sketch + Create a new sketch + + + + CmdSketcherNewSketchSF + + Sketcher + Sketcher + + + Sketchflat sketch + Sketchflat sketch + + + Create a new sketchflat sketch by starting externel editor + Create a new sketchflat sketch by starting externel editor + + + + CmdSketcherToggleConstruction + + + Sketcher + Sketcher + + + Toggle construction line + Prepnúť čiaru konštrukcie + + + Toggles the currently selected lines to/from construction mode + Prepína aktuálne vybrané čiary do/z + + + + CmdSketcherTrimming + + + Sketcher + Sketcher + + + Trim edge + Trim edge + + + Trim an edge with respect to the picked position + Trim an edge with respect to the picked position + + + Trims an edge with respect to the picked position + Trims an edge with respect to the picked position + + + + CmdSketcherViewSketch + + + Sketcher + Sketcher + + + View sketch + View sketch + + + View sketch perpendicular to sketch plane + View sketch perpendicular to sketch plane + + + + Gui::TaskView::TaskSketcherCreateCommands + + + Appearance + Vzhľad + + + + QObject + + + Wrong selection + Chybný výber + + + Select edge(s) from the sketch. + Select edge(s) from the sketch. + + + + Select an edge from the sketch. + Z náčrtu vybrať hrany. + + + Double constraint + Dvojité obmedzenie + + + The selected edge has already a horizontal constraint! + Vybraná hrana už má horizontálne obmedzenie! + + + Impossible constraint + Obmedzenie nie je možné + + + Cannot add a constraint between two external geometries! + Cannot add a constraint between two external geometries! + + + Only sketch and its support is allowed to select + Vybrať si môžete len náčrt a jeho podporu + + + One of the selected has to be on the sketch + One of the selected has to be on the sketch + + + The selected edge is not a line segment + The selected edge is not a line segment + + + The selected edge has already a vertical constraint! + Vybraná hrana už má vertikálne obmedzenie! + + + The selected item(s) can't accept a horizontal constraint! + The selected item(s) can't accept a horizontal constraint! + + + The selected item(s) can't accept a vertical constraint! + The selected item(s) can't accept a vertical constraint! + + + Select entities from the sketch. + Select entities from the sketch. + + + Select exactly one entity from the sketch. + Select exactly one entity from the sketch. + + + Select vertexes from the sketch. + Z náčrtu vybrať vrcholy. + + + Select exactly two vertexes from the sketch. + Z náčrtu vybrať presne dva vrcholy. + + + Select exactly one line or one point and one line or two points from the sketch. + Select exactly one line or one point and one line or two points from the sketch. + + + Cannot add a length constraint on an external geometry! + Cannot add a length constraint on an external geometry! + + + Select exactly one point and one object from the sketch. + Vyberte práve jeden bod a jeden objekt z náčrtku. + + + Select exactly one line or up to two points from the sketch. + Select exactly one line or up to two points from the sketch. + + + Cannot add a horizontal length constraint on an external geometry! + Cannot add a horizontal length constraint on an external geometry! + + + Cannot add a vertical length constraint on an external geometry! + Cannot add a vertical length constraint on an external geometry! + + + Select two or more lines from the sketch. + Select two or more lines from the sketch. + + + Select at least two lines from the sketch. + Select at least two lines from the sketch. + + + Select a valid line + Select a valid line + + + The selected edge is not a valid line + The selected edge is not a valid line + + + The selected points should be end points of arcs and lines. + The selected points should be end points of arcs and lines. + + + The selected point should be an end point of an arc or line. + The selected point should be an end point of an arc or line. + + + The selected edge should be an arc, line or circle. + The selected edge should be an arc, line or circle. + + + One of the selected edges should be a line. + One of the selected edges should be a line. + + + Select exactly one arc or circle from the sketch. + Označ len jeden oblúk alebo kružnicu z náčrtu. + + + Select one or two lines from the sketch. + Select one or two lines from the sketch. + + + Cannot add an angle constraint on an external geometry! + Cannot add an angle constraint on an external geometry! + + + Select exactly one or two lines from the sketch. + Select exactly one or two lines from the sketch. + + + Select two edges from the sketch. + Select two edges from the sketch. + + + Select atleast two lines from the sketch. + Select atleast two lines from the sketch. + + + Select two or more compatible edges + Select two or more compatible edges + + + Sketch axes cannot be used in equality constraints + Sketch axes cannot be used in equality constraints + + + Select two or more edges of similar type + Select two or more edges of similar type + + + Cannot add a constraint between external geometries! + Cannot add a constraint between external geometries! + + + Select exactly two same geometries + Zvoľte presne dva rovnaké geometrie + + + Select valid geometries + Zvoľte platné geometrie + + + Select geometry of similar type + Vyberte geometriu alebo obdobný typ + + + Select two points and one line from the sketch. + Z náčrtu vyberte dva body a jednu čiaru. + + + Select exactly one line from the sketch. + Select exactly one line from the sketch. + + + Select two lines from the sketch. + Z náčrtu vyberte dve čiary. + + + Select exactly two lines from the sketch. + Z náčrtu vyberte presne dve čiary. + + + Select two entities from the sketch. + Select two entities from the sketch. + + + Select exactly two entities from the sketch. + Select exactly two entities from the sketch. + + + + Edit sketch + Upraviť náčrt + + + A dialog is already open in the task panel + Na paneli úloh je už dialóg otvorený + + + Do you want to close this dialog? + Chcete zatvoriť tento dialóg? + + + + Several sub-elements selected + Je vybraných niekoľko sub-prvkov + + + You have to select a single face as support for a sketch! + Pre náčrt musíte vybrať jednu plochu! + + + No support face selected + Vybraná nepodporovaná plocha + + + You have to select a face as support for a sketch! + Pre náčrt musíte vybrať podporovanú plochu! + + + No planar support + Bez planárnej podpory + + + You need a planar face as support for a sketch! + Pre náčrt potrebujete podporovanú planárnu plochu! + + + + Distance constraint + Distance constraint + + + Not allowed to edit the datum because the sketch contains conflicting constraints + Not allowed to edit the datum because the sketch contains conflicting constraints + + + Dimensional constraint + Dimensional constraint + + + + SketchOrientationDialog + + Choose orientation + Choose orientation + + + Sketch orientation + Sketch orientation + + + XY-Plane + Rovina XY + + + XZ-Plane + XZ rovina + + + YZ-Plane + YZ rovine + + + Reverse direction + Reverse direction + + + Offset: + Odstup: + + + + SketcherGui::InsertDatum + + + Insert datum + Vložiť datum + + + datum: + dátum: + + + + SketcherGui::SketchOrientationDialog + + + Choose orientation + Choose orientation + + + Sketch orientation + Sketch orientation + + + XY-Plane + Rovina XY + + + XZ-Plane + XZ rovina + + + YZ-Plane + YZ rovine + + + Reverse direction + Reverse direction + + + Offset: + Odstup: + + + + SketcherGui::TaskSketcherConstrains + + + Form + Forma + + + Filter: + Filter: + + + All + Všetky + + + Normal + Normálny + + + Datums + Dátumy + + + Named + S názvom + + + + Constraints + Constraints + + + + SketcherGui::TaskSketcherGeneral + + + Form + Forma + + + Grid size: + Grid size: + + + Grid snap + Grid snap + + + Unsolved + Unsolved + + + Grid Snap + Grid Snap + + + 0.1 mm + 0,1 mm + + + 0.2 mm + 0.2 mm + + + 0.5 mm + 0,5 mm + + + 1 mm + 1 mm + + + 2 mm + 2 mm + + + 5 mm + 5 mm + + + 10 mm + 10 mm + + + 20 mm + 20 mm + + + 50 mm + 50 mm + + + 100 mm + 100 mm + + + 200 mm + 200 mm + + + 500 mm + 500 mm + + + 1 m + 1 m + + + 2 m + 2 m + + + 5 m + 5 m + + + 10 m + 10 m + + + 20 m + 20 m + + + Auto constraints + Auto obmedzenia + + + auto constraints + auto constraints + + + + Edit controls + Edit controls + + + + SketcherGui::TaskSketcherMessages + + + Solver messages + Správy riešiteľa + + + + TaskSketcherConstrains + + Constraints + Constraints + + + + TaskSketcherCreateCommands + + Appearance + Vzhľad + + + + TaskSketcherGeneral + + Edit controls + Edit controls + + + + TaskSketcherMessages + + + Form + Forma + + + Undefined degrees of freedom + Undefined degrees of freedom + + + Not solved yet + Not solved yet + + + + Workbench + + + Sketcher + Sketcher + + + Sketcher geometries + Geometrie náčrtu + + + Sketcher geoms + Sketcher geoms + + + Sketcher constraints + Obmedziť náčrt + + + diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sv-SE.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sv-SE.qm new file mode 100644 index 000000000..b32d341b2 Binary files /dev/null and b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sv-SE.qm differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sv-SE.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sv-SE.ts new file mode 100644 index 000000000..0ae223538 --- /dev/null +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sv-SE.ts @@ -0,0 +1,1052 @@ + + + + + CmdSketcherConstrainAngle + + + Sketcher + Skissare + + + Constrain angle + Begränsa vinkel + + + Fix the angle of a line or the angle between two lines + Fixera en linjes vinkel eller vinkeln mellan två linjer + + + + CmdSketcherConstrainCoincident + + Sketcher + Skissare + + + Constrain coincident + Begränsa sammanfallande + + + Create a coincident constraint on the selected item + Skapa en sammanfallande begränsning för den markerade detaljen + + + + CmdSketcherConstrainDistance + + Sketcher + Skissare + + + Constrain distance + Begränsningsavstånd + + + Fix a length of a line or the distance between a line and a vertex + Fixera längden på en linje eller avståndet mellan en linje och ett hörn + + + + CmdSketcherConstrainDistanceX + + Sketcher + Skissare + + + Constrain horizontal distance + Begränsa horisontellt avstånd + + + Constrain vertical distance + Constrain vertical distance + + + Fix the horizontal distance between two points or line ends + Fixera det horisontella avståndet mellan två punkter eller linjeändar + + + + CmdSketcherConstrainDistanceY + + Sketcher + Skissare + + + Constrain vertical distance + Constrain vertical distance + + + Constrain horizontal distance + Begränsa horisontellt avstånd + + + Fix the vertical distance between two points or line ends + Fixera det vertikala avståndet mellan två punkter eller linjeändar + + + + CmdSketcherConstrainEqual + + Sketcher + Skissare + + + Constrain equal + Begränsa lika + + + Create an equality constraint between two lines or between circles and arcs + Skapa en jämlikhetsbegränsning mellan två linjer eller mellan cirklar och cirkelbågar + + + + CmdSketcherConstrainHorizontal + + Sketcher + Skissare + + + Constrain horizontally + Begränsa horisontellt + + + Create a horizontal constraint on the selected item + Skapa en horisontell begränsning på den valda detaljen + + + + CmdSketcherConstrainLock + + Sketcher + Skissare + + + Constrain lock + Begränsa lås + + + Create a lock constraint on the selected item + Skapa en lås begränsning för det markerade objektet + + + + CmdSketcherConstrainParallel + + Sketcher + Skissare + + + Constrain parallel + Begränsa parallellt + + + Create a parallel constraint between two lines + Skapa en parallell begränsning mellan två linjer + + + + CmdSketcherConstrainPerpendicular + + Sketcher + Skissare + + + Constrain perpendicular + Begränsa vinkelrätt + + + Create a Perpendicular constraint between two lines + Skapa en vinkelrät begränsning mellan två linjer + + + + CmdSketcherConstrainPointOnObject + + Sketcher + Skissare + + + Constrain point onto object + Begränsa punkt på objekt + + + Fix a point onto an object + Fixera en punkt på ett objekt + + + + CmdSketcherConstrainRadius + + Sketcher + Skissare + + + Constrain radius + Begränsa radie + + + Fix the radius of a circle or an arc + Fixera cirkelns eller cirkelbågens radie + + + + CmdSketcherConstrainSymmetric + + Sketcher + Skissare + + + Constrain symmetrical + Begränsa symmetriskt + + + Create an symmetry constraint between two points with respect to a line + Skapa en symmetribegränsning mellan två punkter i förhållande till en linje + + + + CmdSketcherConstrainTangent + + Sketcher + Skissare + + + Constrain tangent + Begränsa tangens + + + Create a tangent constraint between two entities + Skapa en tangentbegränsning mellan två föremål + + + + CmdSketcherConstrainVertical + + Sketcher + Skissare + + + Constrain vertically + Begränsa vertikalt + + + Create a vertical constraint on the selected item + Skapa en vertikal begränsning på den markerade detaljen + + + + CmdSketcherCreateArc + + + Sketcher + Skissare + + + Create arc + Skapa cirkelbåge + + + Create an arc in the sketch + Skapa en cirkelbåge i skissen + + + + CmdSketcherCreateCircle + + Sketcher + Skissare + + + Create circle + Skapa en cirkel + + + Create a circle in the sketch + Skapa en cirkel i skissen + + + + CmdSketcherCreateDraftLine + + Sketcher + Skissare + + + Create draft line + Skapa ritlinje + + + Create a draft line in the sketch + Skapa ritlinje i skissen + + + + CmdSketcherCreateFillet + + Sketcher + Skissare + + + Create fillet + Skapa avrundning + + + Create a fillet between two lines or at a coincidental point + Skapa en avrundning mellan två linjer eller vid en gemensam punkt + + + Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point + + + + CmdSketcherCreateLine + + Sketcher + Skissare + + + Create line + Skapa linje + + + Create a line in the sketch + Skapa en linje i skissen + + + + CmdSketcherCreatePoint + + Sketcher + Skissare + + + Create point + Skapa punkt + + + Create a point in the sketch + Skapa en punkt i skissen + + + + CmdSketcherCreatePolyline + + Sketcher + Skissare + + + Create polyline + Skapa polylinje + + + Create a polyline in the sketch + Skapa en polylinje i skissen + + + + CmdSketcherCreateRectangle + + Sketcher + Skissare + + + Create rectangle + Skapa rektangel + + + Create a rectangle in the sketch + Skapa en rektangel i skissen + + + + CmdSketcherCreateText + + Sketcher + Skissare + + + Create text + Skapa text + + + Create text in the sketch + Skapa text i skissen + + + + CmdSketcherExternal + + Sketcher + Skissare + + + External geometry + Extern geometri + + + Create an edge linked to an external geometry + Skapa en kant länkad till en extern geometri + + + + CmdSketcherLeaveSketch + + + Sketcher + Skissare + + + Leave sketch + Lämna skiss + + + Close the editing of the sketch + Stäng skiss-redigeringen + + + + CmdSketcherMapSketch + + Sketcher + Skissare + + + Map sketch to face... + Kartera skiss till ytan ... + + + Map a sketch to a face + Kartera en skiss till en yta + + + + CmdSketcherNewSketch + + Sketcher + Skissare + + + Create sketch + Skapa skiss + + + Create a new or edit the selected sketch + Skapa en ny eller redigera den markerade skissen + + + Create a new sketch + Skapa en ny skiss + + + + CmdSketcherNewSketchSF + + Sketcher + Skissare + + + Sketchflat sketch + Sketchflat skiss + + + Create a new sketchflat sketch by starting externel editor + Skapa en ny sketchflat skiss genom att starta den externa redigeraren + + + + CmdSketcherToggleConstruction + + + Sketcher + Skissare + + + Toggle construction line + Växla konstruktionslinje + + + Toggles the currently selected lines to/from construction mode + Växlar de valda linjerna till / från konstruktionsläge + + + + CmdSketcherTrimming + + + Sketcher + Skissare + + + Trim edge + Trimma kant + + + Trim an edge with respect to the picked position + Trimma en kant i förhållande till den markerade positionen + + + Trims an edge with respect to the picked position + Trimmar en kant med i förhållande till den valda + + + + CmdSketcherViewSketch + + + Sketcher + Skissare + + + View sketch + Visa skiss + + + View sketch perpendicular to sketch plane + Visa skiss vinkelrätt mot skissplan + + + + Gui::TaskView::TaskSketcherCreateCommands + + + Appearance + Utseende + + + + QObject + + + Wrong selection + Fel val + + + Select edge(s) from the sketch. + Välj kant(er) från skissen. + + + + Select an edge from the sketch. + Välj en kant från skissen. + + + Double constraint + Dubbelbegränsning + + + The selected edge has already a horizontal constraint! + Den valda kanten har redan en horisontell begränsning! + + + Impossible constraint + Omöjlig begränsning + + + Cannot add a constraint between two external geometries! + Det går inte att lägga till en begränsning mellan två externa geometrier! + + + Only sketch and its support is allowed to select + Endast skiss och dess stöd får väljas + + + One of the selected has to be on the sketch + En av de valda måste finnas på skissen + + + The selected edge is not a line segment + Den valda kanten är inte ett linjesegment + + + The selected edge has already a vertical constraint! + Den valda kanten har redan en vertikal begränsning! + + + The selected item(s) can't accept a horizontal constraint! + Markerade objekt kan inte acceptera en horisontell begränsning! + + + The selected item(s) can't accept a vertical constraint! + Markerade objekt kan inte acceptera en vertikal begränsning! + + + Select entities from the sketch. + Välj föremål från skissen. + + + Select exactly one entity from the sketch. + Välj exakt ett föremål från skissen. + + + Select vertexes from the sketch. + Välj hörnen från skissen. + + + Select exactly two vertexes from the sketch. + Välj exakt två hörn från skissen. + + + Select exactly one line or one point and one line or two points from the sketch. + Välj exakt en linje eller en punkt och en linje eller två punkter från skissen. + + + Cannot add a length constraint on an external geometry! + Kan inte lägga till en längdbegränsning på en extern geometri! + + + Select exactly one point and one object from the sketch. + Välj exakt en punkt och ett objekt från skissen. + + + Select exactly one line or up to two points from the sketch. + Välj exakt en linje eller upp till två punkter från skissen. + + + Cannot add a horizontal length constraint on an external geometry! + Kan inte lägga till en horisontell längdbegränsning på en extern geometri! + + + Cannot add a vertical length constraint on an external geometry! + Kan inte lägga till en vertikal längdbegränsning på en extern geometri! + + + Select two or more lines from the sketch. + Välj två eller flera linjer från skissen. + + + Select at least two lines from the sketch. + Välj åtminstone två linjer från skissen. + + + Select a valid line + Välj en giltig linje + + + The selected edge is not a valid line + Den valda kanten är inte en giltig linje + + + The selected points should be end points of arcs and lines. + De valda punkterna ska vara ändpunkter på cirkelbågar och linjer. + + + The selected point should be an end point of an arc or line. + Den valda punkten ska vara en slutpunkt på en cirkelbåge eller linje. + + + The selected edge should be an arc, line or circle. + Den markerade kanten ska vara en cirkelbåge, en linje eller en cirkel. + + + One of the selected edges should be a line. + En av de markerade kanterna ska vara en linje. + + + Select exactly one arc or circle from the sketch. + Välj exakt en cirkelbåge eller cirkel från skissen. + + + Select one or two lines from the sketch. + Välj en eller två linjer från skissen. + + + Cannot add an angle constraint on an external geometry! + Kan inte lägga till en vinkelbegränsning på en extern geometri! + + + Select exactly one or two lines from the sketch. + Välj exakt en eller två linjer från skissen. + + + Select two edges from the sketch. + Välj två kanter från skissen. + + + Select atleast two lines from the sketch. + Välj åtminstone två linjer från skissen. + + + Select two or more compatible edges + Markera två eller flera kompatibla kanter + + + Sketch axes cannot be used in equality constraints + Skissaxlar kan inte användas i likhetsbegränsningar + + + Select two or more edges of similar type + Markera två eller flera kanter av liknande typ + + + Cannot add a constraint between external geometries! + Det går inte att lägga till en begränsning mellan externa geometrier! + + + Select exactly two same geometries + Välj exakt två likadana geometrier + + + Select valid geometries + Välj giltiga geometrier + + + Select geometry of similar type + Välj geometri av liknande typ + + + Select two points and one line from the sketch. + Välj två punkter och en linje från skissen. + + + Select exactly one line from the sketch. + Välj exakt en linje från skissen. + + + Select two lines from the sketch. + Välj två linjer från skissen. + + + Select exactly two lines from the sketch. + Välj exakt två linjer från skissen. + + + Select two entities from the sketch. + Välj två föremål från skissen. + + + Select exactly two entities from the sketch. + Välj exakt två föremål från skissen. + + + + Edit sketch + Redigera skiss + + + A dialog is already open in the task panel + En dialogruta är redan öppen i uppgiftspanelen + + + Do you want to close this dialog? + Vill du stänga denna dialogruta? + + + + Several sub-elements selected + Flera underelement valda + + + You have to select a single face as support for a sketch! + Du måste välja en enkel yta som stöd för en skiss! + + + No support face selected + Ingen stödyta vald + + + You have to select a face as support for a sketch! + Du måste välja en yta som stöd för en skiss! + + + No planar support + Inget planärt stöd + + + You need a planar face as support for a sketch! + Du behöver en plan yta som stöd för en skiss! + + + + Distance constraint + Avstånd begränsning + + + Not allowed to edit the datum because the sketch contains conflicting constraints + Inte tillåtet att ändra datum på grund av att skissen innehåller motstridiga begränsningar + + + Dimensional constraint + Dimensionell begränsning + + + + SketchOrientationDialog + + Choose orientation + Välj orientering + + + Sketch orientation + Skissorientering + + + XY-Plane + XY-plan + + + XZ-Plane + XZ-Plan + + + YZ-Plane + YZ-Plan + + + Reverse direction + Omvänd riktning + + + Offset: + Offset: + + + + SketcherGui::InsertDatum + + + Insert datum + Infoga datum + + + datum: + Datum: + + + + SketcherGui::SketchOrientationDialog + + + Choose orientation + Välj orientering + + + Sketch orientation + Skissorientering + + + XY-Plane + XY-plan + + + XZ-Plane + XZ-Plan + + + YZ-Plane + YZ-Plan + + + Reverse direction + Omvänd riktning + + + Offset: + Offset: + + + + SketcherGui::TaskSketcherConstrains + + + Form + Form + + + Filter: + Filter: + + + All + Alla + + + Normal + Normal + + + Datums + Datum + + + Named + med namnet + + + + Constraints + Begränsningar + + + + SketcherGui::TaskSketcherGeneral + + + Form + Form + + + Grid size: + Storlek på rutnät: + + + Grid snap + Rutnätssnäpp + + + Unsolved + Olöst + + + Grid Snap + Rutnät snäpp + + + 0.1 mm + 0,1 mm + + + 0.2 mm + 0.2 mm + + + 0.5 mm + 0,5 mm + + + 1 mm + 1 mm + + + 2 mm + 2 mm + + + 5 mm + 5 mm + + + 10 mm + 10 mm + + + 20 mm + 20 mm + + + 50 mm + 50 mm + + + 100 mm + 100 mm + + + 200 mm + 200 mm + + + 500 mm + 500 mm + + + 1 m + 1 m + + + 2 m + 2 m + + + 5 m + 5 m + + + 10 m + 10 m + + + 20 m + 20 m + + + Auto constraints + Auto begränsningar + + + auto constraints + auto begränsningar + + + + Edit controls + Redigera kontroller + + + + SketcherGui::TaskSketcherMessages + + + Solver messages + Problemlösarmeddelanden + + + + TaskSketcherConstrains + + Constraints + Begränsningar + + + + TaskSketcherCreateCommands + + Appearance + Utseende + + + + TaskSketcherGeneral + + Edit controls + Redigera kontroller + + + + TaskSketcherMessages + + + Form + Form + + + Undefined degrees of freedom + Odefinierade frihetsgrader + + + Not solved yet + Inte löst ännu + + + + Workbench + + + Sketcher + Skissare + + + Sketcher geometries + Skissgeometrier + + + Sketcher geoms + Skissgeometrier + + + Sketcher constraints + Skiss begränsningar + + + diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_tr.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_tr.qm new file mode 100644 index 000000000..e4ce59af0 Binary files /dev/null and b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_tr.qm differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_tr.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_tr.ts new file mode 100644 index 000000000..8f5fcc5fc --- /dev/null +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_tr.ts @@ -0,0 +1,1052 @@ + + + + + CmdSketcherConstrainAngle + + + Sketcher + Taslakçı + + + Constrain angle + Constrain angle + + + Fix the angle of a line or the angle between two lines + Fix the angle of a line or the angle between two lines + + + + CmdSketcherConstrainCoincident + + Sketcher + Taslakçı + + + Constrain coincident + Constrain coincident + + + Create a coincident constraint on the selected item + Create a coincident constraint on the selected item + + + + CmdSketcherConstrainDistance + + Sketcher + Taslakçı + + + Constrain distance + Constrain distance + + + Fix a length of a line or the distance between a line and a vertex + Fix a length of a line or the distance between a line and a vertex + + + + CmdSketcherConstrainDistanceX + + Sketcher + Taslakçı + + + Constrain horizontal distance + Constrain horizontal distance + + + Constrain vertical distance + Constrain vertical distance + + + Fix the horizontal distance between two points or line ends + Fix the horizontal distance between two points or line ends + + + + CmdSketcherConstrainDistanceY + + Sketcher + Taslakçı + + + Constrain vertical distance + Constrain vertical distance + + + Constrain horizontal distance + Constrain horizontal distance + + + Fix the vertical distance between two points or line ends + Fix the vertical distance between two points or line ends + + + + CmdSketcherConstrainEqual + + Sketcher + Taslakçı + + + Constrain equal + Constrain equal + + + Create an equality constraint between two lines or between circles and arcs + Create an equality constraint between two lines or between circles and arcs + + + + CmdSketcherConstrainHorizontal + + Sketcher + Taslakçı + + + Constrain horizontally + Constrain horizontally + + + Create a horizontal constraint on the selected item + Create a horizontal constraint on the selected item + + + + CmdSketcherConstrainLock + + Sketcher + Taslakçı + + + Constrain lock + Constrain lock + + + Create a lock constraint on the selected item + Create a lock constraint on the selected item + + + + CmdSketcherConstrainParallel + + Sketcher + Taslakçı + + + Constrain parallel + Constrain parallel + + + Create a parallel constraint between two lines + Create a parallel constraint between two lines + + + + CmdSketcherConstrainPerpendicular + + Sketcher + Taslakçı + + + Constrain perpendicular + Constrain perpendicular + + + Create a Perpendicular constraint between two lines + Create a Perpendicular constraint between two lines + + + + CmdSketcherConstrainPointOnObject + + Sketcher + Taslakçı + + + Constrain point onto object + Constrain point onto object + + + Fix a point onto an object + Fix a point onto an object + + + + CmdSketcherConstrainRadius + + Sketcher + Taslakçı + + + Constrain radius + Constrain radius + + + Fix the radius of a circle or an arc + Fix the radius of a circle or an arc + + + + CmdSketcherConstrainSymmetric + + Sketcher + Taslakçı + + + Constrain symmetrical + Constrain symmetrical + + + Create an symmetry constraint between two points with respect to a line + Create an symmetry constraint between two points with respect to a line + + + + CmdSketcherConstrainTangent + + Sketcher + Taslakçı + + + Constrain tangent + Constrain tangent + + + Create a tangent constraint between two entities + Create a tangent constraint between two entities + + + + CmdSketcherConstrainVertical + + Sketcher + Taslakçı + + + Constrain vertically + Constrain vertically + + + Create a vertical constraint on the selected item + Create a vertical constraint on the selected item + + + + CmdSketcherCreateArc + + + Sketcher + Taslakçı + + + Create arc + Yay oluştur + + + Create an arc in the sketch + Taslak içerisinde yay oluştur + + + + CmdSketcherCreateCircle + + Sketcher + Taslakçı + + + Create circle + Daire oluştur + + + Create a circle in the sketch + Taslak içerisinde daire oluştur + + + + CmdSketcherCreateDraftLine + + Sketcher + Taslakçı + + + Create draft line + Taslak bir doğru oluştur + + + Create a draft line in the sketch + Taslak içerisinde taslak bir doğru oluştur + + + + CmdSketcherCreateFillet + + Sketcher + Taslakçı + + + Create fillet + Create fillet + + + Create a fillet between two lines or at a coincidental point + Create a fillet between two lines or at a coincidental point + + + Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point + + + + CmdSketcherCreateLine + + Sketcher + Taslakçı + + + Create line + Doğru oluştur + + + Create a line in the sketch + Taslak içerisinde doğru oluştur + + + + CmdSketcherCreatePoint + + Sketcher + Taslakçı + + + Create point + Nokta oluştur + + + Create a point in the sketch + Taslak içerisinde nokta oluştur + + + + CmdSketcherCreatePolyline + + Sketcher + Taslakçı + + + Create polyline + Çoklu doğru oluştur + + + Create a polyline in the sketch + Taslak içerisinde çoklu doğru oluştur + + + + CmdSketcherCreateRectangle + + Sketcher + Taslakçı + + + Create rectangle + Kare oluştur + + + Create a rectangle in the sketch + Taslak içerisinde kare oluştur + + + + CmdSketcherCreateText + + Sketcher + Taslakçı + + + Create text + Yazı oluştur + + + Create text in the sketch + Taslak içerisinde yazı oluştur + + + + CmdSketcherExternal + + Sketcher + Taslakçı + + + External geometry + External geometry + + + Create an edge linked to an external geometry + Create an edge linked to an external geometry + + + + CmdSketcherLeaveSketch + + + Sketcher + Taslakçı + + + Leave sketch + Taslaktan çık + + + Close the editing of the sketch + Taslağı düzenlemeyi bırak + + + + CmdSketcherMapSketch + + Sketcher + Taslakçı + + + Map sketch to face... + Map sketch to face... + + + Map a sketch to a face + Map a sketch to a face + + + + CmdSketcherNewSketch + + Sketcher + Taslakçı + + + Create sketch + Taslak oluştur + + + Create a new or edit the selected sketch + Create a new or edit the selected sketch + + + Create a new sketch + Yeni bir taslak oluştur + + + + CmdSketcherNewSketchSF + + Sketcher + Taslakçı + + + Sketchflat sketch + Sketchflat sketch + + + Create a new sketchflat sketch by starting externel editor + Create a new sketchflat sketch by starting externel editor + + + + CmdSketcherToggleConstruction + + + Sketcher + Taslakçı + + + Toggle construction line + Toggle construction line + + + Toggles the currently selected lines to/from construction mode + Toggles the currently selected lines to/from construction mode + + + + CmdSketcherTrimming + + + Sketcher + Taslakçı + + + Trim edge + Trim edge + + + Trim an edge with respect to the picked position + Trim an edge with respect to the picked position + + + Trims an edge with respect to the picked position + Trims an edge with respect to the picked position + + + + CmdSketcherViewSketch + + + Sketcher + Taslakçı + + + View sketch + View sketch + + + View sketch perpendicular to sketch plane + View sketch perpendicular to sketch plane + + + + Gui::TaskView::TaskSketcherCreateCommands + + + Appearance + Görünüm + + + + QObject + + + Wrong selection + Yanlış seçim + + + Select edge(s) from the sketch. + Select edge(s) from the sketch. + + + + Select an edge from the sketch. + Taslaktan bir kenar seç + + + Double constraint + Double constraint + + + The selected edge has already a horizontal constraint! + The selected edge has already a horizontal constraint! + + + Impossible constraint + Impossible constraint + + + Cannot add a constraint between two external geometries! + Cannot add a constraint between two external geometries! + + + Only sketch and its support is allowed to select + Only sketch and its support is allowed to select + + + One of the selected has to be on the sketch + One of the selected has to be on the sketch + + + The selected edge is not a line segment + The selected edge is not a line segment + + + The selected edge has already a vertical constraint! + The selected edge has already a vertical constraint! + + + The selected item(s) can't accept a horizontal constraint! + The selected item(s) can't accept a horizontal constraint! + + + The selected item(s) can't accept a vertical constraint! + The selected item(s) can't accept a vertical constraint! + + + Select entities from the sketch. + Select entities from the sketch. + + + Select exactly one entity from the sketch. + Select exactly one entity from the sketch. + + + Select vertexes from the sketch. + Select vertexes from the sketch. + + + Select exactly two vertexes from the sketch. + Select exactly two vertexes from the sketch. + + + Select exactly one line or one point and one line or two points from the sketch. + Select exactly one line or one point and one line or two points from the sketch. + + + Cannot add a length constraint on an external geometry! + Cannot add a length constraint on an external geometry! + + + Select exactly one point and one object from the sketch. + Select exactly one point and one object from the sketch. + + + Select exactly one line or up to two points from the sketch. + Select exactly one line or up to two points from the sketch. + + + Cannot add a horizontal length constraint on an external geometry! + Cannot add a horizontal length constraint on an external geometry! + + + Cannot add a vertical length constraint on an external geometry! + Cannot add a vertical length constraint on an external geometry! + + + Select two or more lines from the sketch. + Select two or more lines from the sketch. + + + Select at least two lines from the sketch. + Select at least two lines from the sketch. + + + Select a valid line + Select a valid line + + + The selected edge is not a valid line + The selected edge is not a valid line + + + The selected points should be end points of arcs and lines. + The selected points should be end points of arcs and lines. + + + The selected point should be an end point of an arc or line. + The selected point should be an end point of an arc or line. + + + The selected edge should be an arc, line or circle. + The selected edge should be an arc, line or circle. + + + One of the selected edges should be a line. + One of the selected edges should be a line. + + + Select exactly one arc or circle from the sketch. + Select exactly one arc or circle from the sketch. + + + Select one or two lines from the sketch. + Select one or two lines from the sketch. + + + Cannot add an angle constraint on an external geometry! + Cannot add an angle constraint on an external geometry! + + + Select exactly one or two lines from the sketch. + Select exactly one or two lines from the sketch. + + + Select two edges from the sketch. + Select two edges from the sketch. + + + Select atleast two lines from the sketch. + Select atleast two lines from the sketch. + + + Select two or more compatible edges + Select two or more compatible edges + + + Sketch axes cannot be used in equality constraints + Sketch axes cannot be used in equality constraints + + + Select two or more edges of similar type + Select two or more edges of similar type + + + Cannot add a constraint between external geometries! + Cannot add a constraint between external geometries! + + + Select exactly two same geometries + Select exactly two same geometries + + + Select valid geometries + Select valid geometries + + + Select geometry of similar type + Select geometry of similar type + + + Select two points and one line from the sketch. + Select two points and one line from the sketch. + + + Select exactly one line from the sketch. + Select exactly one line from the sketch. + + + Select two lines from the sketch. + Taslaktan iki doğru seç + + + Select exactly two lines from the sketch. + Select exactly two lines from the sketch. + + + Select two entities from the sketch. + Select two entities from the sketch. + + + Select exactly two entities from the sketch. + Select exactly two entities from the sketch. + + + + Edit sketch + Taslağı düzenle + + + A dialog is already open in the task panel + Araç çubuğunda bir pencere zaten açık + + + Do you want to close this dialog? + Bu pencereyi kapatmak ister misiniz? + + + + Several sub-elements selected + Several sub-elements selected + + + You have to select a single face as support for a sketch! + You have to select a single face as support for a sketch! + + + No support face selected + Desteklenmeyen bir yüz seçili + + + You have to select a face as support for a sketch! + Taslak çizimi destekeleyen bir yüz seçmelisin! + + + No planar support + No planar support + + + You need a planar face as support for a sketch! + You need a planar face as support for a sketch! + + + + Distance constraint + Distance constraint + + + Not allowed to edit the datum because the sketch contains conflicting constraints + Not allowed to edit the datum because the sketch contains conflicting constraints + + + Dimensional constraint + Dimensional constraint + + + + SketchOrientationDialog + + Choose orientation + Choose orientation + + + Sketch orientation + Sketch orientation + + + XY-Plane + XY-Plane + + + XZ-Plane + XZ-Plane + + + YZ-Plane + YZ-Plane + + + Reverse direction + Reverse direction + + + Offset: + Offset: + + + + SketcherGui::InsertDatum + + + Insert datum + Insert datum + + + datum: + datum: + + + + SketcherGui::SketchOrientationDialog + + + Choose orientation + Choose orientation + + + Sketch orientation + Sketch orientation + + + XY-Plane + XY-Plane + + + XZ-Plane + XZ-Plane + + + YZ-Plane + YZ-Plane + + + Reverse direction + Reverse direction + + + Offset: + Offset: + + + + SketcherGui::TaskSketcherConstrains + + + Form + Şekil: + + + Filter: + Filtre: + + + All + Hepsi + + + Normal + Olağan + + + Datums + Datums + + + Named + Adlandırılmış + + + + Constraints + Constraints + + + + SketcherGui::TaskSketcherGeneral + + + Form + Şekil: + + + Grid size: + Grid size: + + + Grid snap + Grid snap + + + Unsolved + Çözümsüz + + + Grid Snap + Grid Snap + + + 0.1 mm + 0.1 mm + + + 0.2 mm + 0.2 mm + + + 0.5 mm + 0.5 mm + + + 1 mm + 1 mm + + + 2 mm + 2 mm + + + 5 mm + 5 mm + + + 10 mm + 10 mm + + + 20 mm + 20 mm + + + 50 mm + 50 mm + + + 100 mm + 100 mm + + + 200 mm + 200 mm + + + 500 mm + 500 mm + + + 1 m + 1 m + + + 2 m + 2 m + + + 5 m + 5 m + + + 10 m + 10 m + + + 20 m + 20 m + + + Auto constraints + Auto constraints + + + auto constraints + auto constraints + + + + Edit controls + Denetimleri düzenle + + + + SketcherGui::TaskSketcherMessages + + + Solver messages + Solver messages + + + + TaskSketcherConstrains + + Constraints + Constraints + + + + TaskSketcherCreateCommands + + Appearance + Görünüm + + + + TaskSketcherGeneral + + Edit controls + Denetimleri düzenle + + + + TaskSketcherMessages + + + Form + Şekil: + + + Undefined degrees of freedom + Undefined degrees of freedom + + + Not solved yet + Not solved yet + + + + Workbench + + + Sketcher + Taslakçı + + + Sketcher geometries + Sketcher geometries + + + Sketcher geoms + Sketcher geoms + + + Sketcher constraints + Sketcher constraints + + + diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_uk.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_uk.qm index c35f768c3..38768b2b8 100644 Binary files a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_uk.qm and b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_uk.qm differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_uk.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_uk.ts index 2def0e09a..0eddda1d3 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_uk.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_uk.ts @@ -1,1299 +1,1052 @@ - - + + CmdSketcherConstrainAngle - - Sketcher - Створювач ескізів + + Sketcher + Створювач ескізів - - Constrain angle - Constrain angle + Constrain angle + Constrain angle - - Fix the angle of a line or the angle between two lines - Fix the angle of a line or the angle between two lines + Fix the angle of a line or the angle between two lines + Зафіксувати кут лінії або кут між двома лініями - - + + CmdSketcherConstrainCoincident - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Constrain coincident - Обмеження збігів + Constrain coincident + Обмеження збігів - - Create a coincident constraint on the selected item - Створити обмеження збігів (коінцидентності) для обраних елементів + Create a coincident constraint on the selected item + Створити обмеження збігів (коінцидентності) для обраних елементів - - + + CmdSketcherConstrainDistance - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Constrain distance - Обмеження відстані + Constrain distance + Обмеження відстані - - Fix a length of a line or the distance between a line and a vertex - Фіксувати довжину лінії або відстань між лінією та вершиною + Fix a length of a line or the distance between a line and a vertex + Фіксувати довжину лінії або відстань між лінією та вершиною - - + + CmdSketcherConstrainDistanceX - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Constrain horizontal distance - Constrain horizontal distance + Constrain horizontal distance + Constrain horizontal distance - Constrain vertical distance - Constrain vertical distance + Constrain vertical distance + Constrain vertical distance - - Fix the horizontal distance between two points or line ends - Fix the horizontal distance between two points or line ends + Fix the horizontal distance between two points or line ends + Fix the horizontal distance between two points or line ends - - + + CmdSketcherConstrainDistanceY - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Constrain vertical distance - Constrain vertical distance + Constrain vertical distance + Constrain vertical distance - Constrain horizontal distance - Constrain horizontal distance + Constrain horizontal distance + Constrain horizontal distance - - Fix the vertical distance between two points or line ends - Fix the vertical distance between two points or line ends + Fix the vertical distance between two points or line ends + Fix the vertical distance between two points or line ends - - + + CmdSketcherConstrainEqual - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Constrain equal - Constrain equal + Constrain equal + Constrain equal - - Create an equality constraint between two lines or between circles and arcs - Create an equality constraint between two lines or between circles and arcs + Create an equality constraint between two lines or between circles and arcs + Створити обмеження еквівалентності між двома лініями, або між колами і дугами - - + + CmdSketcherConstrainHorizontal - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Constrain horizontally - Горизонтальне обмеження + Constrain horizontally + Горизонтальне обмеження - - Create a horizontal constraint on the selected item - Створити обмеження по горизонталі для вибраного елементу + Create a horizontal constraint on the selected item + Створити обмеження по горизонталі для вибраного елементу - - + + CmdSketcherConstrainLock - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Constrain lock - Обмеження блокування + Constrain lock + Обмеження блокування - - Create a lock constraint on the selected item - Create a lock constraint on the selected item + Create a lock constraint on the selected item + Create a lock constraint on the selected item - - + + CmdSketcherConstrainParallel - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Constrain parallel - Паралельне обмеження + Constrain parallel + Паралельне обмеження - - Create a parallel constraint between two lines - Створити паралельне обмеження між двома лініями + Create a parallel constraint between two lines + Створити паралельне обмеження між двома лініями - - + + CmdSketcherConstrainPerpendicular - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Constrain perpendicular - Constrain perpendicular + Constrain perpendicular + Constrain perpendicular - - Create a Perpendicular constraint between two lines - Create a Perpendicular constraint between two lines + Create a Perpendicular constraint between two lines + Create a Perpendicular constraint between two lines - - + + CmdSketcherConstrainPointOnObject - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Constrain point onto object - Constrain point onto object + Constrain point onto object + Обмежити точки об'єктом - - Fix a point onto an object - Fix a point onto an object + Fix a point onto an object + Fix a point onto an object - - + + CmdSketcherConstrainRadius - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Constrain radius - Constrain radius + Constrain radius + Constrain radius - - Fix the radius of a circle or an arc - Fix the radius of a circle or an arc + Fix the radius of a circle or an arc + Fix the radius of a circle or an arc - - + + CmdSketcherConstrainSymmetric - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Constrain symmetrical - Constrain symmetrical + Constrain symmetrical + Constrain symmetrical - - Create an symmetry constraint between two points with respect to a line - Create an symmetry constraint between two points with respect to a line + Create an symmetry constraint between two points with respect to a line + Create an symmetry constraint between two points with respect to a line - - + + CmdSketcherConstrainTangent - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Constrain tangent - Constrain tangent + Constrain tangent + Constrain tangent - - Create a tangent constraint between two entities - Create a tangent constraint between two entities + Create a tangent constraint between two entities + Створити дотичне обмеження між двома об'ектами - - + + CmdSketcherConstrainVertical - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Constrain vertically - Вертикальне обмеження + Constrain vertically + Вертикальне обмеження - - Create a vertical constraint on the selected item - Створити обмеження по вертикалі для вибраного елементу + Create a vertical constraint on the selected item + Створити обмеження по вертикалі для вибраного елементу - - + + CmdSketcherCreateArc - - Sketcher - Створювач ескізів + + Sketcher + Створювач ескізів - - Create arc - Створення дуги + Create arc + Створення дуги - - Create an arc in the sketch - Створення дуги в ескізі + Create an arc in the sketch + Створення дуги в ескізі - - + + CmdSketcherCreateCircle - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Create circle - Створення кола + Create circle + Створення кола - - Create a circle in the sketch - Створення кола в ескізі + Create a circle in the sketch + Створення кола в ескізі - - + + CmdSketcherCreateDraftLine - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Create draft line - Створення допоміжної лінії + Create draft line + Створення допоміжної лінії - - Create a draft line in the sketch - Створення допоміжної лінії в ескізі + Create a draft line in the sketch + Створення допоміжної лінії в ескізі - - + + CmdSketcherCreateFillet - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Create fillet - Create fillet + Create fillet + Create fillet - - Create a fillet between two lines or at a coincidental point - + Create a fillet between two lines or at a coincidental point + Create a fillet between two lines or at a coincidental point - Create a fillet between two lines or at a coincident point - Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point - - + + CmdSketcherCreateLine - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Create line - Створення лінії + Create line + Створення лінії - - Create a line in the sketch - Створення лінії в ескізі + Create a line in the sketch + Створення лінії в ескізі - - + + CmdSketcherCreatePoint - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Create point - Створення точки + Create point + Створення точки - - Create a point in the sketch - Створення точки в ескізі + Create a point in the sketch + Створення точки в ескізі - - + + CmdSketcherCreatePolyline - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Create polyline - Створення полілінії + Create polyline + Створення полілінії - - Create a polyline in the sketch - Створення полілінії в ескізі + Create a polyline in the sketch + Створення полілінії в ескізі - - + + CmdSketcherCreateRectangle - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Create rectangle - Створити прямокутник + Create rectangle + Створити прямокутник - - Create a rectangle in the sketch - Створіть прямокутник в ескізі + Create a rectangle in the sketch + Створіть прямокутник в ескізі - - + + CmdSketcherCreateText - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Create text - Створення тексту + Create text + Створення тексту - - Create text in the sketch - Створення тексту в ескізі + Create text in the sketch + Створення тексту в ескізі - - + + CmdSketcherExternal - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - External geometry - + External geometry + External geometry - - Create an edge linked to an external geometry - + Create an edge linked to an external geometry + Create an edge linked to an external geometry - - + + CmdSketcherLeaveSketch - - Sketcher - Створювач ескізів + + Sketcher + Створювач ескізів - - Leave sketch - Залишити ескіз + Leave sketch + Залишити ескіз - - Close the editing of the sketch - Закрити редагування ескізу + Close the editing of the sketch + Закрити редагування ескізу - - + + CmdSketcherMapSketch - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Map sketch to face... - Map sketch to face... + Map sketch to face... + Map sketch to face... - - Map a sketch to a face - Map a sketch to a face + Map a sketch to a face + Map a sketch to a face - - + + CmdSketcherNewSketch - - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - - Create sketch - Створити ескіз + Create sketch + Створити ескіз - - Create a new or edit the selected sketch - Create a new or edit the selected sketch + Create a new or edit the selected sketch + Створити новий або редагувати обраний ескіз - Create a new sketch - Створення нового ескізу + Create a new sketch + Створення нового ескізу - - + + CmdSketcherNewSketchSF - Sketcher - Створювач ескізів + Sketcher + Створювач ескізів - Sketchflat sketch - Плоский ескіз + Sketchflat sketch + Плоский ескіз - Create a new sketchflat sketch by starting externel editor - Створити новий плоский ескіз використовуючи зовнішній редактор + Create a new sketchflat sketch by starting externel editor + Створити новий плоский ескіз використовуючи зовнішній редактор - - + + CmdSketcherToggleConstruction - - Sketcher - Створювач ескізів + + Sketcher + Створювач ескізів - - Toggle construction line - Toggle construction line + Toggle construction line + Переключити лінії побудови - - Toggles the currently selected lines to/from construction mode - Toggles the currently selected lines to/from construction mode + Toggles the currently selected lines to/from construction mode + Toggles the currently selected lines to/from construction mode - - + + CmdSketcherTrimming - - Sketcher - Створювач ескізів + + Sketcher + Створювач ескізів - - Trim edge - Trim edge + Trim edge + Обрізати грань - - Trim an edge with respect to the picked position - + Trim an edge with respect to the picked position + Trim an edge with respect to the picked position - Trims an edge with respect to the picked position - Trims an edge with respect to the picked position + Trims an edge with respect to the picked position + Trims an edge with respect to the picked position - - + + CmdSketcherViewSketch - - Sketcher - Створювач ескізів + + Sketcher + Створювач ескізів - - View sketch - View sketch + View sketch + View sketch - - View sketch perpendicular to sketch plane - View sketch perpendicular to sketch plane + View sketch perpendicular to sketch plane + View sketch perpendicular to sketch plane - - + + Gui::TaskView::TaskSketcherCreateCommands - - Appearance - Зовнішній вигляд + + Appearance + Зовнішній вигляд - - + + QObject - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Wrong selection - Невірний вибір + + Wrong selection + Невірний вибір - - Select edge(s) from the sketch. - Select edge(s) from the sketch. + Select edge(s) from the sketch. + Select edge(s) from the sketch. - - - Select an edge from the sketch. - Виберіть ребро в ескізі. + + Select an edge from the sketch. + Виберіть ребро в ескізі. - - - Double constraint - Подвійне обмеження + Double constraint + Подвійне обмеження - - - The selected edge has already a horizontal constraint! - Обраний край вже обмежено по горизонталі! + The selected edge has already a horizontal constraint! + Обраний край вже обмежено по горизонталі! - - - - - - - Impossible constraint - Обмеження неможливе + Impossible constraint + Обмеження неможливе - - Cannot add a constraint between two external geometries! - + Cannot add a constraint between two external geometries! + Cannot add a constraint between two external geometries! - - - - Only sketch and its support is allowed to select - Only sketch and its support is allowed to select + Only sketch and its support is allowed to select + Only sketch and its support is allowed to select - - One of the selected has to be on the sketch - One of the selected has to be on the sketch + One of the selected has to be on the sketch + One of the selected has to be on the sketch - - - The selected edge is not a line segment - The selected edge is not a line segment + The selected edge is not a line segment + The selected edge is not a line segment - - - The selected edge has already a vertical constraint! - Вибраний край вже обмежено по вертикалі! + The selected edge has already a vertical constraint! + Вибраний край вже обмежено по вертикалі! - - The selected item(s) can't accept a horizontal constraint! - + The selected item(s) can't accept a horizontal constraint! + The selected item(s) can't accept a horizontal constraint! - - The selected item(s) can't accept a vertical constraint! - + The selected item(s) can't accept a vertical constraint! + The selected item(s) can't accept a vertical constraint! - - Select entities from the sketch. - Select entities from the sketch. + Select entities from the sketch. + Select entities from the sketch. - - - Select exactly one entity from the sketch. - Select exactly one entity from the sketch. + Select exactly one entity from the sketch. + Оберіть на ескізі лише один об'єкт. - - - - - - - Select vertexes from the sketch. - Вибір вершин з ескізу. + Select vertexes from the sketch. + Вибір вершин з ескізу. - - - - Select exactly two vertexes from the sketch. - Вибір рівно двох вершин з ескізу. + Select exactly two vertexes from the sketch. + Вибір рівно двох вершин з ескізу. - - - Select exactly one line or one point and one line or two points from the sketch. - Select exactly one line or one point and one line or two points from the sketch. + Select exactly one line or one point and one line or two points from the sketch. + Оберіть на ескізі лише одну лінію, або одну точку та одну лінію, або дві точки. - - Cannot add a length constraint on an external geometry! - + Cannot add a length constraint on an external geometry! + Cannot add a length constraint on an external geometry! - - - Select exactly one point and one object from the sketch. - Select exactly one point and one object from the sketch. + Select exactly one point and one object from the sketch. + Оберіть на ескізі лише одну точку та один об'єкт. - - - - - Select exactly one line or up to two points from the sketch. - Select exactly one line or up to two points from the sketch. + Select exactly one line or up to two points from the sketch. + Оберіть на ескізі лише одну лінію або до двох точок. - - Cannot add a horizontal length constraint on an external geometry! - + Cannot add a horizontal length constraint on an external geometry! + Cannot add a horizontal length constraint on an external geometry! - - Cannot add a vertical length constraint on an external geometry! - + Cannot add a vertical length constraint on an external geometry! + Cannot add a vertical length constraint on an external geometry! - - Select two or more lines from the sketch. - Select two or more lines from the sketch. + Select two or more lines from the sketch. + Оберіть на ескізі дві або більше ліній. - - Select at least two lines from the sketch. - Select at least two lines from the sketch. + Select at least two lines from the sketch. + Оберіть на ескізі принаймні дві лінії. - - Select a valid line - Select a valid line + Select a valid line + Оберіть припустиму лінію - - The selected edge is not a valid line - The selected edge is not a valid line + The selected edge is not a valid line + The selected edge is not a valid line - - The selected points should be end points of arcs and lines. - + The selected points should be end points of arcs and lines. + The selected points should be end points of arcs and lines. - - The selected point should be an end point of an arc or line. - + The selected point should be an end point of an arc or line. + The selected point should be an end point of an arc or line. - - The selected edge should be an arc, line or circle. - + The selected edge should be an arc, line or circle. + The selected edge should be an arc, line or circle. - - One of the selected edges should be a line. - + One of the selected edges should be a line. + One of the selected edges should be a line. - - - - Select exactly one arc or circle from the sketch. - Select exactly one arc or circle from the sketch. + Select exactly one arc or circle from the sketch. + Select exactly one arc or circle from the sketch. - - Select one or two lines from the sketch. - + Select one or two lines from the sketch. + Select one or two lines from the sketch. - - Cannot add an angle constraint on an external geometry! - + Cannot add an angle constraint on an external geometry! + Cannot add an angle constraint on an external geometry! - - Select exactly one or two lines from the sketch. - Select exactly one or two lines from the sketch. + Select exactly one or two lines from the sketch. + Select exactly one or two lines from the sketch. - - Select two edges from the sketch. - Select two edges from the sketch. + Select two edges from the sketch. + Select two edges from the sketch. - - Select atleast two lines from the sketch. - Select atleast two lines from the sketch. + Select atleast two lines from the sketch. + Select atleast two lines from the sketch. - - Select two or more compatible edges - + Select two or more compatible edges + Select two or more compatible edges - - Sketch axes cannot be used in equality constraints - + Sketch axes cannot be used in equality constraints + Sketch axes cannot be used in equality constraints - - - Select two or more edges of similar type - + Select two or more edges of similar type + Select two or more edges of similar type - - Cannot add a constraint between external geometries! - + Cannot add a constraint between external geometries! + Cannot add a constraint between external geometries! - Select exactly two same geometries - Select exactly two same geometries + Select exactly two same geometries + Оберіть рівно дві однакових геометрії - Select valid geometries - Select valid geometries + Select valid geometries + Оберіть припустиму геометрію - Select geometry of similar type - Select geometry of similar type + Select geometry of similar type + Обрати геометрію схожого типу - - - - Select two points and one line from the sketch. - Select two points and one line from the sketch. + Select two points and one line from the sketch. + Оберіть на ескізі дві точки та одну лінію. - Select exactly one line from the sketch. - Вибір рівно однієї лінії з ескізу. + Select exactly one line from the sketch. + Вибір рівно однієї лінії з ескізу. - Select two lines from the sketch. - Вибір двох ліній з ескізу. + Select two lines from the sketch. + Вибір двох ліній з ескізу. - Select exactly two lines from the sketch. - Вибір рівно двох ліній з ескізу. + Select exactly two lines from the sketch. + Вибір рівно двох ліній з ескізу. - - - Select two entities from the sketch. - Select two entities from the sketch. + Select two entities from the sketch. + Select two entities from the sketch. - - - - - Select exactly two entities from the sketch. - Select exactly two entities from the sketch. + Select exactly two entities from the sketch. + Оберіть на ескізі лише два об'єкти. - - Edit sketch - Редагувати ескіз + + Edit sketch + Редагувати ескіз - - A dialog is already open in the task panel - Діалог вже відкритий в панелі завдань + A dialog is already open in the task panel + Діалогове вікно вже відкрито в панелі задач - - Do you want to close this dialog? - Бажаєте закрити цей діалог? + Do you want to close this dialog? + Ви бажаєте закрити це діалогове вікно? - - Several sub-elements selected - Обрано декілька вкладених елементів + + Several sub-elements selected + Обрано декілька вкладених елементів - - You have to select a single face as support for a sketch! - Потрібно обрати одну поверхню, як основу ескізу! + You have to select a single face as support for a sketch! + Потрібно обрати одну поверхню, як основу ескізу! - - No support face selected - Не обрано підтримуваної поверхні + No support face selected + Не обрано підтримуваної поверхні - - You have to select a face as support for a sketch! - Потрібно обрати поверхню як основу для ескізу! + You have to select a face as support for a sketch! + Потрібно обрати поверхню як основу для ескізу! - - No planar support - Підтримка площини відсутня + No planar support + Підтримка площини відсутня - - You need a planar face as support for a sketch! - Потрібна пласка поверхня для створення ескізу! + You need a planar face as support for a sketch! + Потрібна пласка поверхня для створення ескізу! - - Distance constraint - Distance constraint + + Distance constraint + Distance constraint - - Not allowed to edit the datum because the sketch contains conflicting constraints - Not allowed to edit the datum because the sketch contains conflicting constraints + Not allowed to edit the datum because the sketch contains conflicting constraints + Not allowed to edit the datum because the sketch contains conflicting constraints - - Dimensional constraint - Dimensional constraint + Dimensional constraint + Dimensional constraint - - + + SketchOrientationDialog - Choose orientation - Choose orientation + Choose orientation + Choose orientation - Sketch orientation - Sketch orientation + Sketch orientation + Sketch orientation - XY-Plane - XY-Plane + XY-Plane + Площина XY - XZ-Plane - XZ-Plane + XZ-Plane + XZ-Plane - YZ-Plane - YZ-Plane + YZ-Plane + YZ-Plane - Reverse direction - Reverse direction + Reverse direction + Reverse direction - Offset: - Offset: + Offset: + Зміщення: - - + + SketcherGui::InsertDatum - - Insert datum - Вставити Datum + + Insert datum + Вставити Datum - - datum: - datum: + datum: + datum: - - + + SketcherGui::SketchOrientationDialog - - Choose orientation - Choose orientation + + Choose orientation + Choose orientation - - Sketch orientation - Sketch orientation + Sketch orientation + Sketch orientation - - XY-Plane - XY-Plane + XY-Plane + Площина XY - - XZ-Plane - XZ-Plane + XZ-Plane + XZ-Plane - - YZ-Plane - YZ-Plane + YZ-Plane + YZ-Plane - - Reverse direction - Reverse direction + Reverse direction + Reverse direction - - Offset: - Offset: + Offset: + Зміщення: - - + + SketcherGui::TaskSketcherConstrains - - Form - Форма + + Form + Форма - - Filter: - Фільтр: + Filter: + Фільтр: - - All - Все + All + Все - - Normal - Звичайне + Normal + Звичайне - - Datums - Дані величини (Датум) + Datums + Дані величини (Датум) - - Named - З назвою + Named + З назвою - - Constraints - Обмеження + + Constraints + Обмеження - - + + SketcherGui::TaskSketcherGeneral - - Form - Форма + + Form + Форма - - Grid size: - Grid size: + Grid size: + Розмір сітки: - - Grid snap - Grid snap + Grid snap + Прив'язка до сітки - Unsolved - Невирішене + Unsolved + Невирішене - Grid Snap - Прив'язка сітки + Grid Snap + Прив'язка сітки - 0.1 mm - 0.1 мм + 0.1 mm + 0.1 мм - 0.2 mm - 0.2 мм + 0.2 mm + 0.2 мм - 0.5 mm - 0.5 мм + 0.5 mm + 0.5 мм - 1 mm - 1 мм + 1 mm + 1 мм - 2 mm - 2 мм + 2 mm + 2 мм - 5 mm - 5 мм + 5 mm + 5 мм - 10 mm - 10 мм + 10 mm + 10 мм - 20 mm - 20 мм + 20 mm + 20 мм - 50 mm - 50 мм + 50 mm + 50 мм - 100 mm - 100 мм + 100 mm + 100 мм - 200 mm - 200 мм + 200 mm + 200 мм - 500 mm - 500 мм + 500 mm + 500 мм - 1 m - 1 м + 1 m + 1 м - 2 m - 2 м + 2 m + 2 м - 5 m - 5 м + 5 m + 5 м - 10 m - 10 м + 10 m + 10 м - 20 m - 20 м + 20 m + 20 м - - Auto constraints - Auto constraints + Auto constraints + Автоматичні обмеження - auto constraints - Авто обмеження + auto constraints + Авто обмеження - - Edit controls - Редагувати управління + + Edit controls + Редагувати управління - - + + SketcherGui::TaskSketcherMessages - - Solver messages - Solver messages + + Solver messages + Solver messages - - + + TaskSketcherConstrains - Constraints - Обмеження + Constraints + Обмеження - - + + TaskSketcherCreateCommands - Appearance - Зовнішній вигляд + Appearance + Зовнішній вигляд - - + + TaskSketcherGeneral - Edit controls - Редагувати управління + Edit controls + Редагувати управління - - + + TaskSketcherMessages - - Form - Форма + + Form + Форма - - Undefined degrees of freedom - Undefined degrees of freedom + Undefined degrees of freedom + Невизначені ступені свободи - - Not solved yet - Not solved yet + Not solved yet + Ще не вирішене - - + + Workbench - - Sketcher - Створювач ескізів + + Sketcher + Створювач ескізів - - Sketcher geometries - Sketcher geometries + Sketcher geometries + Sketcher geometries - Sketcher geoms - Геометрія ескізу + Sketcher geoms + Геометрія ескізу - - Sketcher constraints - Обмеження ескізу + Sketcher constraints + Обмеження ескізу - + diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh-CN.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh-CN.qm new file mode 100644 index 000000000..d7b5d83ce Binary files /dev/null and b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh-CN.qm differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh-CN.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh-CN.ts new file mode 100644 index 000000000..3c2c9c944 --- /dev/null +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh-CN.ts @@ -0,0 +1,1052 @@ + + + + + CmdSketcherConstrainAngle + + + Sketcher + 草绘 + + + Constrain angle + 角度约束 + + + Fix the angle of a line or the angle between two lines + 固定一直线角度或两直线夹角 + + + + CmdSketcherConstrainCoincident + + Sketcher + 草绘 + + + Constrain coincident + 重合约束 + + + Create a coincident constraint on the selected item + 在所选对象上创建重合约束 + + + + CmdSketcherConstrainDistance + + Sketcher + 草绘 + + + Constrain distance + 距离约束 + + + Fix a length of a line or the distance between a line and a vertex + 固定线的长度或者点到线的距离 + + + + CmdSketcherConstrainDistanceX + + Sketcher + 草绘 + + + Constrain horizontal distance + 水平距离约束 + + + Constrain vertical distance + Constrain vertical distance + + + Fix the horizontal distance between two points or line ends + 固定两点(或线端点)之间的水平距离 + + + + CmdSketcherConstrainDistanceY + + Sketcher + 草绘 + + + Constrain vertical distance + Constrain vertical distance + + + Constrain horizontal distance + 水平距离约束 + + + Fix the vertical distance between two points or line ends + 固定两点(或线端点)之间的垂直距离 + + + + CmdSketcherConstrainEqual + + Sketcher + 草绘 + + + Constrain equal + 相等约束 + + + Create an equality constraint between two lines or between circles and arcs + 两直线或圆与圆弧间创建相等约束 + + + + CmdSketcherConstrainHorizontal + + Sketcher + 草绘 + + + Constrain horizontally + 水平约束 + + + Create a horizontal constraint on the selected item + 在所选对象上创建水平约束 + + + + CmdSketcherConstrainLock + + Sketcher + 草绘 + + + Constrain lock + 锁定约束 + + + Create a lock constraint on the selected item + 对所选物体创建锁定约束 + + + + CmdSketcherConstrainParallel + + Sketcher + 草绘 + + + Constrain parallel + 平行约束 + + + Create a parallel constraint between two lines + 两条线之间创建平行约束 + + + + CmdSketcherConstrainPerpendicular + + Sketcher + 草绘 + + + Constrain perpendicular + 垂直约束 + + + Create a Perpendicular constraint between two lines + 在两直线间创建垂直约束 + + + + CmdSketcherConstrainPointOnObject + + Sketcher + 草绘 + + + Constrain point onto object + 点约束至对象 + + + Fix a point onto an object + 固定点至对象 + + + + CmdSketcherConstrainRadius + + Sketcher + 草绘 + + + Constrain radius + 半径约束 + + + Fix the radius of a circle or an arc + 固定圆或圆弧的半径 + + + + CmdSketcherConstrainSymmetric + + Sketcher + 草绘 + + + Constrain symmetrical + 对称约束 + + + Create an symmetry constraint between two points with respect to a line + 相对一直线在两点间创建对称约束 + + + + CmdSketcherConstrainTangent + + Sketcher + 草绘 + + + Constrain tangent + 相切约束 + + + Create a tangent constraint between two entities + 在两实体间创建相切约束 + + + + CmdSketcherConstrainVertical + + Sketcher + 草绘 + + + Constrain vertically + 垂直约束 + + + Create a vertical constraint on the selected item + 在所选对象上创建垂直约束 + + + + CmdSketcherCreateArc + + + Sketcher + 草绘 + + + Create arc + 创建弧 + + + Create an arc in the sketch + 在草绘中创建一个弧 + + + + CmdSketcherCreateCircle + + Sketcher + 草绘 + + + Create circle + 创建圆 + + + Create a circle in the sketch + 在草绘中创建一个圆 + + + + CmdSketcherCreateDraftLine + + Sketcher + 草绘 + + + Create draft line + 创建草图线 + + + Create a draft line in the sketch + 在草绘中创建一根线 + + + + CmdSketcherCreateFillet + + Sketcher + 草绘 + + + Create fillet + 创建圆角 + + + Create a fillet between two lines or at a coincidental point + Create a fillet between two lines or at a coincidental point + + + Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point + + + + CmdSketcherCreateLine + + Sketcher + 草绘 + + + Create line + 创建线 + + + Create a line in the sketch + 在草图中创建一根线 + + + + CmdSketcherCreatePoint + + Sketcher + 草绘 + + + Create point + 创建点 + + + Create a point in the sketch + 在草绘中创建一个点 + + + + CmdSketcherCreatePolyline + + Sketcher + 草绘 + + + Create polyline + 创建多段线 + + + Create a polyline in the sketch + 在草图中创建多段线 + + + + CmdSketcherCreateRectangle + + Sketcher + 草绘 + + + Create rectangle + 创建矩形 + + + Create a rectangle in the sketch + 在草绘中创建矩形 + + + + CmdSketcherCreateText + + Sketcher + 草绘 + + + Create text + 创建文本 + + + Create text in the sketch + 在草绘中创建文本 + + + + CmdSketcherExternal + + Sketcher + 草绘 + + + External geometry + 外部几何体 + + + Create an edge linked to an external geometry + Create an edge linked to an external geometry + + + + CmdSketcherLeaveSketch + + + Sketcher + 草绘 + + + Leave sketch + 离开草绘 + + + Close the editing of the sketch + 关闭草图编辑 + + + + CmdSketcherMapSketch + + Sketcher + 草绘 + + + Map sketch to face... + Map sketch to face... + + + Map a sketch to a face + Map a sketch to a face + + + + CmdSketcherNewSketch + + Sketcher + 草绘 + + + Create sketch + 创建草绘 + + + Create a new or edit the selected sketch + 创建一个新的或编辑所选草绘 + + + Create a new sketch + 创建一个新草绘 + + + + CmdSketcherNewSketchSF + + Sketcher + 草绘 + + + Sketchflat sketch + Sketchflat草绘 + + + Create a new sketchflat sketch by starting externel editor + 启动外部编辑器创建一个新sketchflat草绘 + + + + CmdSketcherToggleConstruction + + + Sketcher + 草绘 + + + Toggle construction line + 切换构造线 + + + Toggles the currently selected lines to/from construction mode + 切换当前选择线的构造模式 + + + + CmdSketcherTrimming + + + Sketcher + 草绘 + + + Trim edge + 修剪边缘 + + + Trim an edge with respect to the picked position + Trim an edge with respect to the picked position + + + Trims an edge with respect to the picked position + Trims an edge with respect to the picked position + + + + CmdSketcherViewSketch + + + Sketcher + 草绘 + + + View sketch + 查看草绘 + + + View sketch perpendicular to sketch plane + 垂直于草绘平面查看草绘 + + + + Gui::TaskView::TaskSketcherCreateCommands + + + Appearance + 外观 + + + + QObject + + + Wrong selection + 选择错误 + + + Select edge(s) from the sketch. + 从草绘选择边 + + + + Select an edge from the sketch. + 从草绘中选择边. + + + Double constraint + 双重约束 + + + The selected edge has already a horizontal constraint! + 所选的边已水平约束! + + + Impossible constraint + 不可约束 + + + Cannot add a constraint between two external geometries! + Cannot add a constraint between two external geometries! + + + Only sketch and its support is allowed to select + 仅允许选择草绘及其支持面 + + + One of the selected has to be on the sketch + 选择之一必须在草绘上 + + + The selected edge is not a line segment + 所选的边并非一段直线 + + + The selected edge has already a vertical constraint! + 所选的边已垂直约束! + + + The selected item(s) can't accept a horizontal constraint! + The selected item(s) can't accept a horizontal constraint! + + + The selected item(s) can't accept a vertical constraint! + The selected item(s) can't accept a vertical constraint! + + + Select entities from the sketch. + 从草绘选择实体 + + + Select exactly one entity from the sketch. + 仅从草绘选择一个实体 + + + Select vertexes from the sketch. + 从草绘中选择顶点. + + + Select exactly two vertexes from the sketch. + 仅从草绘中选择两个顶点. + + + Select exactly one line or one point and one line or two points from the sketch. + 仅从草绘选择一直线,或一点和一直线,或两点. + + + Cannot add a length constraint on an external geometry! + Cannot add a length constraint on an external geometry! + + + Select exactly one point and one object from the sketch. + 仅从草绘选择一点和一对象. + + + Select exactly one line or up to two points from the sketch. + Select exactly one line or up to two points from the sketch. + + + Cannot add a horizontal length constraint on an external geometry! + Cannot add a horizontal length constraint on an external geometry! + + + Cannot add a vertical length constraint on an external geometry! + Cannot add a vertical length constraint on an external geometry! + + + Select two or more lines from the sketch. + 从草绘选择两条或两条以上直线. + + + Select at least two lines from the sketch. + 至少从草绘选择两直线. + + + Select a valid line + 选择一有效直线 + + + The selected edge is not a valid line + 所选的边并非有效直线 + + + The selected points should be end points of arcs and lines. + The selected points should be end points of arcs and lines. + + + The selected point should be an end point of an arc or line. + The selected point should be an end point of an arc or line. + + + The selected edge should be an arc, line or circle. + The selected edge should be an arc, line or circle. + + + One of the selected edges should be a line. + One of the selected edges should be a line. + + + Select exactly one arc or circle from the sketch. + 仅从草绘中选择一个圆弧或圆. + + + Select one or two lines from the sketch. + Select one or two lines from the sketch. + + + Cannot add an angle constraint on an external geometry! + Cannot add an angle constraint on an external geometry! + + + Select exactly one or two lines from the sketch. + 仅从草绘选择一条或两条直线. + + + Select two edges from the sketch. + 从草绘选择两条边. + + + Select atleast two lines from the sketch. + 至少从草绘选择两直线. + + + Select two or more compatible edges + Select two or more compatible edges + + + Sketch axes cannot be used in equality constraints + Sketch axes cannot be used in equality constraints + + + Select two or more edges of similar type + Select two or more edges of similar type + + + Cannot add a constraint between external geometries! + Cannot add a constraint between external geometries! + + + Select exactly two same geometries + Select exactly two same geometries + + + Select valid geometries + 选择有效几何体 + + + Select geometry of similar type + 选择相似类型的几何体 + + + Select two points and one line from the sketch. + 从草绘中选择两点和一线. + + + Select exactly one line from the sketch. + 仅从草绘中选择一根线. + + + Select two lines from the sketch. + 从草绘中选择两根线. + + + Select exactly two lines from the sketch. + 仅从草绘中选择两根线. + + + Select two entities from the sketch. + 从草绘中选择两个实体. + + + Select exactly two entities from the sketch. + 仅从草绘选择两实体. + + + + Edit sketch + 编辑草绘 + + + A dialog is already open in the task panel + 一个对话框已在任务面板打开 + + + Do you want to close this dialog? + 您要关闭此对话框吗? + + + + Several sub-elements selected + 若干子元素被选择 + + + You have to select a single face as support for a sketch! + 您必须选择一个支持面以绘制草图! + + + No support face selected + 未选中支持面 + + + You have to select a face as support for a sketch! + 您必须选择一个支持面以绘制草图! + + + No planar support + 无支持平面 + + + You need a planar face as support for a sketch! + 您需要一个支持平面以绘制草图! + + + + Distance constraint + 距离约束 + + + Not allowed to edit the datum because the sketch contains conflicting constraints + 由于草图包含冲突的约束无法编辑基准 + + + Dimensional constraint + 尺寸约束 + + + + SketchOrientationDialog + + Choose orientation + 选择方向 + + + Sketch orientation + 草绘方向 + + + XY-Plane + XY平面 + + + XZ-Plane + XZ平面 + + + YZ-Plane + YZ平面 + + + Reverse direction + 反转方向 + + + Offset: + 偏移: + + + + SketcherGui::InsertDatum + + + Insert datum + 插入基准 + + + datum: + 数据: + + + + SketcherGui::SketchOrientationDialog + + + Choose orientation + 选择方向 + + + Sketch orientation + 草绘方向 + + + XY-Plane + XY平面 + + + XZ-Plane + XZ平面 + + + YZ-Plane + YZ平面 + + + Reverse direction + 反转方向 + + + Offset: + 偏移: + + + + SketcherGui::TaskSketcherConstrains + + + Form + 窗体 + + + Filter: + 过滤器: + + + All + 全部 + + + Normal + 法向 + + + Datums + 基准 + + + Named + 命名 + + + + Constraints + 约束 + + + + SketcherGui::TaskSketcherGeneral + + + Form + 窗体 + + + Grid size: + 网格尺寸: + + + Grid snap + 网格捕捉 + + + Unsolved + 未解决 + + + Grid Snap + 网格捕捉 + + + 0.1 mm + 0.1 mm + + + 0.2 mm + 0.2 mm + + + 0.5 mm + 0.5 mm + + + 1 mm + 1 mm + + + 2 mm + 2 mm + + + 5 mm + 5 mm + + + 10 mm + 10 mm + + + 20 mm + 20 mm + + + 50 mm + 50 mm + + + 100 mm + 100 mm + + + 200 mm + 100 mm + + + 500 mm + 500 mm + + + 1 m + 1 m + + + 2 m + 2 m + + + 5 m + 5 m + + + 10 m + 10 m + + + 20 m + 20 m + + + Auto constraints + 自动约束 + + + auto constraints + 自动约束 + + + + Edit controls + 编辑控件 + + + + SketcherGui::TaskSketcherMessages + + + Solver messages + 求解器信息 + + + + TaskSketcherConstrains + + Constraints + 约束 + + + + TaskSketcherCreateCommands + + Appearance + 外观 + + + + TaskSketcherGeneral + + Edit controls + 编辑控件 + + + + TaskSketcherMessages + + + Form + 窗体 + + + Undefined degrees of freedom + 未定义的自由度 + + + Not solved yet + 尚未解算 + + + + Workbench + + + Sketcher + 草绘 + + + Sketcher geometries + 草绘几何体 + + + Sketcher geoms + 草绘几何 + + + Sketcher constraints + 草图约束 + + + diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh-TW.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh-TW.qm new file mode 100644 index 000000000..2f8b6a1c4 Binary files /dev/null and b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh-TW.qm differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh-TW.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh-TW.ts new file mode 100644 index 000000000..53b062b14 --- /dev/null +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh-TW.ts @@ -0,0 +1,1052 @@ + + + + + CmdSketcherConstrainAngle + + + Sketcher + Sketcher + + + Constrain angle + 角度約束 + + + Fix the angle of a line or the angle between two lines + 固定線角度或兩線間角度 + + + + CmdSketcherConstrainCoincident + + Sketcher + Sketcher + + + Constrain coincident + 約束一致化 + + + Create a coincident constraint on the selected item + 於所選項目建立一致之約束 + + + + CmdSketcherConstrainDistance + + Sketcher + Sketcher + + + Constrain distance + 約束距離 + + + Fix a length of a line or the distance between a line and a vertex + 固定線長或線與頂點間距 + + + + CmdSketcherConstrainDistanceX + + Sketcher + Sketcher + + + Constrain horizontal distance + Constrain horizontal distance + + + Constrain vertical distance + Constrain vertical distance + + + Fix the horizontal distance between two points or line ends + 固定兩點或線終點水平距離 + + + + CmdSketcherConstrainDistanceY + + Sketcher + Sketcher + + + Constrain vertical distance + Constrain vertical distance + + + Constrain horizontal distance + Constrain horizontal distance + + + Fix the vertical distance between two points or line ends + 固定兩點或線終點垂直距離 + + + + CmdSketcherConstrainEqual + + Sketcher + Sketcher + + + Constrain equal + 相等約束 + + + Create an equality constraint between two lines or between circles and arcs + 於兩線或圓與弧間建立相等約束 + + + + CmdSketcherConstrainHorizontal + + Sketcher + Sketcher + + + Constrain horizontally + 水平約束 + + + Create a horizontal constraint on the selected item + 於所選項目建立水平約束 + + + + CmdSketcherConstrainLock + + Sketcher + Sketcher + + + Constrain lock + 鎖定約束 + + + Create a lock constraint on the selected item + 於選定項目建立鎖定約束 + + + + CmdSketcherConstrainParallel + + Sketcher + Sketcher + + + Constrain parallel + 平行約束 + + + Create a parallel constraint between two lines + 於兩條線間建立平行約束 + + + + CmdSketcherConstrainPerpendicular + + Sketcher + Sketcher + + + Constrain perpendicular + 垂直約束 + + + Create a Perpendicular constraint between two lines + 於兩線間建立垂直約束 + + + + CmdSketcherConstrainPointOnObject + + Sketcher + Sketcher + + + Constrain point onto object + 約束點於物件上 + + + Fix a point onto an object + 固定點於物件上 + + + + CmdSketcherConstrainRadius + + Sketcher + Sketcher + + + Constrain radius + 約束半徑 + + + Fix the radius of a circle or an arc + 固定圓或弧之半徑 + + + + CmdSketcherConstrainSymmetric + + Sketcher + Sketcher + + + Constrain symmetrical + 對稱約束 + + + Create an symmetry constraint between two points with respect to a line + 依介於兩點間之線建立點之對稱約束 + + + + CmdSketcherConstrainTangent + + Sketcher + Sketcher + + + Constrain tangent + 相切約束 + + + Create a tangent constraint between two entities + 於兩個實體間建立相切約束 + + + + CmdSketcherConstrainVertical + + Sketcher + Sketcher + + + Constrain vertically + 垂直約束 + + + Create a vertical constraint on the selected item + 於所選項目建立垂直約束 + + + + CmdSketcherCreateArc + + + Sketcher + Sketcher + + + Create arc + 建立弧線 + + + Create an arc in the sketch + 於素描中建立弧形 + + + + CmdSketcherCreateCircle + + Sketcher + Sketcher + + + Create circle + 建立圓 + + + Create a circle in the sketch + 於素描中建立圓形 + + + + CmdSketcherCreateDraftLine + + Sketcher + Sketcher + + + Create draft line + 建立分模線 + + + Create a draft line in the sketch + 於素描中建立分模線 + + + + CmdSketcherCreateFillet + + Sketcher + Sketcher + + + Create fillet + 建立圓角 + + + Create a fillet between two lines or at a coincidental point + 於兩線間或適當點建立圓角 + + + Create a fillet between two lines or at a coincident point + Create a fillet between two lines or at a coincident point + + + + CmdSketcherCreateLine + + Sketcher + Sketcher + + + Create line + 建立線 + + + Create a line in the sketch + 於素描中建立線 + + + + CmdSketcherCreatePoint + + Sketcher + Sketcher + + + Create point + 建立點 + + + Create a point in the sketch + 於素描中建立點 + + + + CmdSketcherCreatePolyline + + Sketcher + Sketcher + + + Create polyline + 建立聚合線 + + + Create a polyline in the sketch + 於素描中建立聚合線 + + + + CmdSketcherCreateRectangle + + Sketcher + Sketcher + + + Create rectangle + 建立矩型 + + + Create a rectangle in the sketch + 於素描中建立矩形 + + + + CmdSketcherCreateText + + Sketcher + Sketcher + + + Create text + 建立文字 + + + Create text in the sketch + 於素描中建立文字 + + + + CmdSketcherExternal + + Sketcher + Sketcher + + + External geometry + 外部幾何 + + + Create an edge linked to an external geometry + 與外部幾何建立相連邊緣 + + + + CmdSketcherLeaveSketch + + + Sketcher + Sketcher + + + Leave sketch + 離開素描 + + + Close the editing of the sketch + 結束編輯素描 + + + + CmdSketcherMapSketch + + Sketcher + Sketcher + + + Map sketch to face... + 將素描定位至面... + + + Map a sketch to a face + 將素描定位至面 + + + + CmdSketcherNewSketch + + Sketcher + Sketcher + + + Create sketch + 建立素描 + + + Create a new or edit the selected sketch + 建立或編輯已選素描 + + + Create a new sketch + Create a new sketch + + + + CmdSketcherNewSketchSF + + Sketcher + Sketcher + + + Sketchflat sketch + Sketchflat sketch + + + Create a new sketchflat sketch by starting externel editor + Create a new sketchflat sketch by starting externel editor + + + + CmdSketcherToggleConstruction + + + Sketcher + Sketcher + + + Toggle construction line + 切換結構線 + + + Toggles the currently selected lines to/from construction mode + 切換目前所選線條至/從結構模式 + + + + CmdSketcherTrimming + + + Sketcher + Sketcher + + + Trim edge + 修剪邊緣 + + + Trim an edge with respect to the picked position + 依選取位置修剪邊緣 + + + Trims an edge with respect to the picked position + Trims an edge with respect to the picked position + + + + CmdSketcherViewSketch + + + Sketcher + Sketcher + + + View sketch + 查看素描 + + + View sketch perpendicular to sketch plane + 由素描平面檢視素描垂直面 + + + + Gui::TaskView::TaskSketcherCreateCommands + + + Appearance + 外觀 + + + + QObject + + + Wrong selection + 錯誤的選取 + + + Select edge(s) from the sketch. + 由素描選取邊緣 + + + + Select an edge from the sketch. + 於素描中選擇邊緣 + + + Double constraint + 雙重約束 + + + The selected edge has already a horizontal constraint! + 所選邊緣已有水平約束! + + + Impossible constraint + 無法約束 + + + Cannot add a constraint between two external geometries! + 於兩個外部幾何間無法建立約束! + + + Only sketch and its support is allowed to select + 僅能選取素描及其基礎 + + + One of the selected has to be on the sketch + 所選中已有於素描上者 + + + The selected edge is not a line segment + 所選邊緣非為線段 + + + The selected edge has already a vertical constraint! + 所選邊緣已有垂直約束! + + + The selected item(s) can't accept a horizontal constraint! + 所選項目無法使用水平約束! + + + The selected item(s) can't accept a vertical constraint! + 所選項目無法使用垂直約束! + + + Select entities from the sketch. + 由素描中選取實體 + + + Select exactly one entity from the sketch. + 由素描中選取一個實體 + + + Select vertexes from the sketch. + 由素描中選取頂點 + + + Select exactly two vertexes from the sketch. + 於素描中選擇兩頂點 + + + Select exactly one line or one point and one line or two points from the sketch. + 由素描中選取一條線或一個點,以及一條線或兩個點 + + + Cannot add a length constraint on an external geometry! + 於外部幾何無法增加長度約束! + + + Select exactly one point and one object from the sketch. + 由素描中選取一個點和一個物件 + + + Select exactly one line or up to two points from the sketch. + 於素描中選取一條線或最多兩個點 + + + Cannot add a horizontal length constraint on an external geometry! + 於外部幾何無法增加水平長度約束! + + + Cannot add a vertical length constraint on an external geometry! + 於外部幾何無法增加垂直長度約束! + + + Select two or more lines from the sketch. + 由素描中選取兩條或以上線條 + + + Select at least two lines from the sketch. + 由素描中選取至少兩條線 + + + Select a valid line + 選取有效線條 + + + The selected edge is not a valid line + 所選邊緣非為有效線條 + + + The selected points should be end points of arcs and lines. + 所選點需為弧或線之終點 + + + The selected point should be an end point of an arc or line. + 所選點需為弧或線之終點 + + + The selected edge should be an arc, line or circle. + 所選邊緣需為弧,線或圓 + + + One of the selected edges should be a line. + 所選邊緣中需有一條線 + + + Select exactly one arc or circle from the sketch. + 由素描中選取一個弧或圓 + + + Select one or two lines from the sketch. + 於素描中選擇一或兩條線 + + + Cannot add an angle constraint on an external geometry! + 無法對外部幾何增加角度約束! + + + Select exactly one or two lines from the sketch. + 由素描中選取一或兩條線 + + + Select two edges from the sketch. + 由素描中選取兩個邊緣 + + + Select atleast two lines from the sketch. + 由素描中選取至少兩條線 + + + Select two or more compatible edges + 選擇兩個或更多相容邊緣 + + + Sketch axes cannot be used in equality constraints + 素描中心線無法使用相等約束 + + + Select two or more edges of similar type + 選取兩個或更多相似類型邊緣 + + + Cannot add a constraint between external geometries! + 於外部幾何間無法建立約束! + + + Select exactly two same geometries + Select exactly two same geometries + + + Select valid geometries + Select valid geometries + + + Select geometry of similar type + Select geometry of similar type + + + Select two points and one line from the sketch. + 由素描中選取兩個點和一條線 + + + Select exactly one line from the sketch. + Select exactly one line from the sketch. + + + Select two lines from the sketch. + Select two lines from the sketch. + + + Select exactly two lines from the sketch. + Select exactly two lines from the sketch. + + + Select two entities from the sketch. + 由素描中選取兩個實體 + + + Select exactly two entities from the sketch. + 由素描中選取兩個實體 + + + + Edit sketch + 編輯素描 + + + A dialog is already open in the task panel + 於工作面板已開啟對話窗 + + + Do you want to close this dialog? + 您確定要關閉此對話窗嗎? + + + + Several sub-elements selected + 數個次元素被選取 + + + You have to select a single face as support for a sketch! + 您需要選擇一面作為素描之基礎! + + + No support face selected + 未選取基礎面 + + + You have to select a face as support for a sketch! + 您需要選擇一面作為素描之基礎! + + + No planar support + 無基礎平面 + + + You need a planar face as support for a sketch! + 您需要選取平面作為素描之基礎! + + + + Distance constraint + 距離約束 + + + Not allowed to edit the datum because the sketch contains conflicting constraints + 因素描中含有相衝突約束,固無法允許編輯數據 + + + Dimensional constraint + 尺度約束 + + + + SketchOrientationDialog + + Choose orientation + Choose orientation + + + Sketch orientation + Sketch orientation + + + XY-Plane + XY-Plane + + + XZ-Plane + XZ-Plane + + + YZ-Plane + YZ-Plane + + + Reverse direction + Reverse direction + + + Offset: + Offset: + + + + SketcherGui::InsertDatum + + + Insert datum + 插入基準 + + + datum: + 基準: + + + + SketcherGui::SketchOrientationDialog + + + Choose orientation + Choose orientation + + + Sketch orientation + Sketch orientation + + + XY-Plane + XY-Plane + + + XZ-Plane + XZ-Plane + + + YZ-Plane + YZ-Plane + + + Reverse direction + Reverse direction + + + Offset: + Offset: + + + + SketcherGui::TaskSketcherConstrains + + + Form + 格式 + + + Filter: + 篩選: + + + All + 所有 + + + Normal + 垂直 + + + Datums + 基準面 + + + Named + 命名 + + + + Constraints + Constraints + + + + SketcherGui::TaskSketcherGeneral + + + Form + 格式 + + + Grid size: + 網格尺寸: + + + Grid snap + 格點快選 + + + Unsolved + Unsolved + + + Grid Snap + Grid Snap + + + 0.1 mm + 0.1 mm + + + 0.2 mm + 0.2 mm + + + 0.5 mm + 0.5 mm + + + 1 mm + 1 mm + + + 2 mm + 2 mm + + + 5 mm + 5 mm + + + 10 mm + 10 mm + + + 20 mm + 20 mm + + + 50 mm + 50 mm + + + 100 mm + 100 mm + + + 200 mm + 200 mm + + + 500 mm + 500 mm + + + 1 m + 1 m + + + 2 m + 2 m + + + 5 m + 5 m + + + 10 m + 10 m + + + 20 m + 20 m + + + Auto constraints + 自動約束 + + + auto constraints + auto constraints + + + + Edit controls + Edit controls + + + + SketcherGui::TaskSketcherMessages + + + Solver messages + 求解器訊息 + + + + TaskSketcherConstrains + + Constraints + Constraints + + + + TaskSketcherCreateCommands + + Appearance + 外觀 + + + + TaskSketcherGeneral + + Edit controls + Edit controls + + + + TaskSketcherMessages + + + Form + 格式 + + + Undefined degrees of freedom + 未定義自由度 + + + Not solved yet + 未解完 + + + + Workbench + + + Sketcher + Sketcher + + + Sketcher geometries + 素描幾何 + + + Sketcher geoms + Sketcher geoms + + + Sketcher constraints + 素描約束 + + + diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh.qm b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh.qm deleted file mode 100644 index 570796022..000000000 Binary files a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh.qm and /dev/null differ diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh.ts deleted file mode 100644 index f7da39ced..000000000 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh.ts +++ /dev/null @@ -1,1299 +0,0 @@ - - - - - CmdSketcherConstrainAngle - - - Sketcher - 草绘 - - - - Constrain angle - 角度约束 - - - - Fix the angle of a line or the angle between two lines - 固定一直线角度或两直线夹角 - - - - CmdSketcherConstrainCoincident - - - Sketcher - 草绘 - - - - Constrain coincident - 重合约束 - - - - Create a coincident constraint on the selected item - 在所选对象上创建重合约束 - - - - CmdSketcherConstrainDistance - - - Sketcher - 草绘 - - - - Constrain distance - 距离约束 - - - - Fix a length of a line or the distance between a line and a vertex - 固定线的长度或者点到线的距离 - - - - CmdSketcherConstrainDistanceX - - - Sketcher - 草绘 - - - - Constrain horizontal distance - 水平距离约束 - - - Constrain vertical distance - 限制的垂直距离 - - - - Fix the horizontal distance between two points or line ends - 固定两点(或线端点)之间的水平距离 - - - - CmdSketcherConstrainDistanceY - - - Sketcher - 草绘 - - - - Constrain vertical distance - 限制的垂直距离 - - - Constrain horizontal distance - 水平距离约束 - - - - Fix the vertical distance between two points or line ends - 固定两点(或线端点)之间的垂直距离 - - - - CmdSketcherConstrainEqual - - - Sketcher - 草绘 - - - - Constrain equal - 相等约束 - - - - Create an equality constraint between two lines or between circles and arcs - 两直线或圆与圆弧间创建相等约束 - - - - CmdSketcherConstrainHorizontal - - - Sketcher - 草绘 - - - - Constrain horizontally - 水平约束 - - - - Create a horizontal constraint on the selected item - 在所选对象上创建水平约束 - - - - CmdSketcherConstrainLock - - - Sketcher - 草绘 - - - - Constrain lock - 锁定约束 - - - - Create a lock constraint on the selected item - 对所选物体创建锁定约束 - - - - CmdSketcherConstrainParallel - - - Sketcher - 草绘 - - - - Constrain parallel - 平行约束 - - - - Create a parallel constraint between two lines - 两条线之间创建平行约束 - - - - CmdSketcherConstrainPerpendicular - - - Sketcher - 草绘 - - - - Constrain perpendicular - 垂直约束 - - - - Create a Perpendicular constraint between two lines - 在两直线间创建垂直约束 - - - - CmdSketcherConstrainPointOnObject - - - Sketcher - 草绘 - - - - Constrain point onto object - 点约束至对象 - - - - Fix a point onto an object - 固定点至对象 - - - - CmdSketcherConstrainRadius - - - Sketcher - 草绘 - - - - Constrain radius - 半径约束 - - - - Fix the radius of a circle or an arc - 固定圆或圆弧的半径 - - - - CmdSketcherConstrainSymmetric - - - Sketcher - 草绘 - - - - Constrain symmetrical - 对称约束 - - - - Create an symmetry constraint between two points with respect to a line - 相对一直线在两点间创建对称约束 - - - - CmdSketcherConstrainTangent - - - Sketcher - 草绘 - - - - Constrain tangent - 相切约束 - - - - Create a tangent constraint between two entities - 在两实体间创建相切约束 - - - - CmdSketcherConstrainVertical - - - Sketcher - 草绘 - - - - Constrain vertically - 垂直约束 - - - - Create a vertical constraint on the selected item - 在所选对象上创建垂直约束 - - - - CmdSketcherCreateArc - - - Sketcher - 草绘 - - - - Create arc - 创建弧 - - - - Create an arc in the sketch - 在草绘中创建一个弧 - - - - CmdSketcherCreateCircle - - - Sketcher - 草绘 - - - - Create circle - 创建圆 - - - - Create a circle in the sketch - 在草绘中创建一个圆 - - - - CmdSketcherCreateDraftLine - - - Sketcher - 草绘 - - - - Create draft line - 创建草图线 - - - - Create a draft line in the sketch - 在草绘中创建一根线 - - - - CmdSketcherCreateFillet - - - Sketcher - 草绘 - - - - Create fillet - 创建圆角 - - - - Create a fillet between two lines or at a coincidental point - - - - Create a fillet between two lines or at a coincident point - 两直线或重合点处创建圆角 - - - - CmdSketcherCreateLine - - - Sketcher - 草绘 - - - - Create line - 创建线 - - - - Create a line in the sketch - 在草图中创建一根线 - - - - CmdSketcherCreatePoint - - - Sketcher - 草绘 - - - - Create point - 创建点 - - - - Create a point in the sketch - 在草绘中创建一个点 - - - - CmdSketcherCreatePolyline - - - Sketcher - 草绘 - - - - Create polyline - 创建多段线 - - - - Create a polyline in the sketch - 在草图中创建多段线 - - - - CmdSketcherCreateRectangle - - - Sketcher - 草绘 - - - - Create rectangle - 创建矩形 - - - - Create a rectangle in the sketch - 在草绘中创建矩形 - - - - CmdSketcherCreateText - - - Sketcher - 草绘 - - - - Create text - 创建文本 - - - - Create text in the sketch - 在草绘中创建文本 - - - - CmdSketcherExternal - - - Sketcher - 草绘 - - - - External geometry - - - - - Create an edge linked to an external geometry - - - - - CmdSketcherLeaveSketch - - - Sketcher - 草绘 - - - - Leave sketch - 离开草绘 - - - - Close the editing of the sketch - 关闭草图编辑 - - - - CmdSketcherMapSketch - - - Sketcher - 草绘 - - - - Map sketch to face... - Map sketch to face... - - - - Map a sketch to a face - Map a sketch to a face - - - - CmdSketcherNewSketch - - - Sketcher - 草绘 - - - - Create sketch - 创建草绘 - - - - Create a new or edit the selected sketch - Create a new or edit the selected sketch - - - Create a new sketch - 创建一个新草绘 - - - - CmdSketcherNewSketchSF - - Sketcher - 草绘 - - - Sketchflat sketch - Sketchflat草绘 - - - Create a new sketchflat sketch by starting externel editor - 启动外部编辑器创建一个新sketchflat草绘 - - - - CmdSketcherToggleConstruction - - - Sketcher - 草绘 - - - - Toggle construction line - 切换构造线 - - - - Toggles the currently selected lines to/from construction mode - 切换当前选择线的构造模式 - - - - CmdSketcherTrimming - - - Sketcher - 草绘 - - - - Trim edge - 修剪边缘 - - - - Trim an edge with respect to the picked position - - - - Trims an edge with respect to the picked position - Trims an edge with respect to the picked position - - - - CmdSketcherViewSketch - - - Sketcher - 草绘 - - - - View sketch - 查看草绘 - - - - View sketch perpendicular to sketch plane - 垂直于草绘平面查看草绘 - - - - Gui::TaskView::TaskSketcherCreateCommands - - - Appearance - 外观 - - - - QObject - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Wrong selection - 选择错误 - - - - Select edge(s) from the sketch. - 从草绘选择边 - - - - - Select an edge from the sketch. - 从草绘中选择边. - - - - - Double constraint - 双重约束 - - - - - The selected edge has already a horizontal constraint! - 所选的边已水平约束! - - - - - - - - - Impossible constraint - 不可约束 - - - - Cannot add a constraint between two external geometries! - - - - - - - Only sketch and its support is allowed to select - 仅允许选择草绘及其支持面 - - - - One of the selected has to be on the sketch - 选择之一必须在草绘上 - - - - - The selected edge is not a line segment - 所选的边并非一段直线 - - - - - The selected edge has already a vertical constraint! - 所选的边已垂直约束! - - - - The selected item(s) can't accept a horizontal constraint! - - - - - The selected item(s) can't accept a vertical constraint! - - - - - Select entities from the sketch. - 从草绘选择实体 - - - - - Select exactly one entity from the sketch. - 仅从草绘选择一个实体 - - - - - - - - - Select vertexes from the sketch. - 从草绘中选择顶点. - - - - - - Select exactly two vertexes from the sketch. - 仅从草绘中选择两个顶点. - - - - - Select exactly one line or one point and one line or two points from the sketch. - 仅从草绘选择一直线,或一点和一直线,或两点. - - - - Cannot add a length constraint on an external geometry! - - - - - - Select exactly one point and one object from the sketch. - 仅从草绘选择一点和一对象. - - - - - - - Select exactly one line or up to two points from the sketch. - Select exactly one line or up to two points from the sketch. - - - - Cannot add a horizontal length constraint on an external geometry! - - - - - Cannot add a vertical length constraint on an external geometry! - - - - - Select two or more lines from the sketch. - 从草绘选择两条或两条以上直线. - - - - Select at least two lines from the sketch. - 至少从草绘选择两直线. - - - - Select a valid line - 选择一有效直线 - - - - The selected edge is not a valid line - 所选的边并非有效直线 - - - - The selected points should be end points of arcs and lines. - - - - - The selected point should be an end point of an arc or line. - - - - - The selected edge should be an arc, line or circle. - - - - - One of the selected edges should be a line. - - - - - - - Select exactly one arc or circle from the sketch. - 仅从草绘中选择一个圆弧或圆. - - - - Select one or two lines from the sketch. - - - - - Cannot add an angle constraint on an external geometry! - - - - - Select exactly one or two lines from the sketch. - 仅从草绘选择一条或两条直线. - - - - Select two edges from the sketch. - 从草绘选择两条边. - - - - Select atleast two lines from the sketch. - 至少从草绘选择两直线. - - - - Select two or more compatible edges - - - - - Sketch axes cannot be used in equality constraints - - - - - - Select two or more edges of similar type - - - - - Cannot add a constraint between external geometries! - - - - Select exactly two same geometries - Select exactly two same geometries - - - Select valid geometries - 选择有效几何体 - - - Select geometry of similar type - 选择相似类型的几何体 - - - - - - Select two points and one line from the sketch. - 从草绘中选择两点和一线. - - - Select exactly one line from the sketch. - 仅从草绘中选择一根线. - - - Select two lines from the sketch. - 从草绘中选择两根线. - - - Select exactly two lines from the sketch. - 仅从草绘中选择两根线. - - - - - Select two entities from the sketch. - 从草绘中选择两个实体. - - - - - - - Select exactly two entities from the sketch. - 仅从草绘选择两实体. - - - - Edit sketch - 编辑草绘 - - - - A dialog is already open in the task panel - 一个对话框已在任务面板打开 - - - - Do you want to close this dialog? - 是否要关闭此对话框? - - - - Several sub-elements selected - 若干子元素被选择 - - - - You have to select a single face as support for a sketch! - 您必须选择一个支持面以绘制草图! - - - - No support face selected - 未选中支持面 - - - - You have to select a face as support for a sketch! - 您必须选择一个支持面以绘制草图! - - - - No planar support - 无支持平面 - - - - You need a planar face as support for a sketch! - 您需要一个支持平面以绘制草图! - - - - Distance constraint - 距离约束 - - - - Not allowed to edit the datum because the sketch contains conflicting constraints - 由于草图包含冲突的约束无法编辑基准 - - - - Dimensional constraint - Dimensional constraint - - - - SketchOrientationDialog - - Choose orientation - 选择方向 - - - Sketch orientation - 草绘方向 - - - XY-Plane - XY平面 - - - XZ-Plane - XZ平面 - - - YZ-Plane - YZ平面 - - - Reverse direction - 反转方向 - - - Offset: - 偏移: - - - - SketcherGui::InsertDatum - - - Insert datum - 插入基准 - - - - datum: - 数据: - - - - SketcherGui::SketchOrientationDialog - - - Choose orientation - 选择方向 - - - - Sketch orientation - 草绘方向 - - - - XY-Plane - XY平面 - - - - XZ-Plane - XZ平面 - - - - YZ-Plane - YZ平面 - - - - Reverse direction - 反转方向 - - - - Offset: - 偏移: - - - - SketcherGui::TaskSketcherConstrains - - - Form - 窗体 - - - - Filter: - 过滤器: - - - - All - 全部 - - - - Normal - 法向 - - - - Datums - 基准 - - - - Named - 命名 - - - - Constraints - 约束 - - - - SketcherGui::TaskSketcherGeneral - - - Form - 窗体 - - - - Grid size: - Grid size: - - - - Grid snap - Grid snap - - - Unsolved - 未解决 - - - Grid Snap - 网格捕捉 - - - 0.1 mm - 0.1 mm - - - 0.2 mm - 0.2 mm - - - 0.5 mm - 0.5 mm - - - 1 mm - 1 mm - - - 2 mm - 2 mm - - - 5 mm - 5 mm - - - 10 mm - 10 mm - - - 20 mm - 20 mm - - - 50 mm - 50 mm - - - 100 mm - 100毫米 - - - 200 mm - 200 mm - - - 500 mm - 500 mm - - - 1 m - 1 m - - - 2 m - 2 m - - - 5 m - 5 m - - - 10 m - 10 m - - - 20 m - 20 m - - - - Auto constraints - 自动约束 - - - auto constraints - 自动约束 - - - - Edit controls - 编辑控件 - - - - SketcherGui::TaskSketcherMessages - - - Solver messages - 求解器信息 - - - - TaskSketcherConstrains - - Constraints - 约束 - - - - TaskSketcherCreateCommands - - Appearance - 外观 - - - - TaskSketcherGeneral - - Edit controls - 编辑控件 - - - - TaskSketcherMessages - - - Form - 窗体 - - - - Undefined degrees of freedom - 未定义的自由度 - - - - Not solved yet - Not solved yet - - - - Workbench - - - Sketcher - 草绘 - - - - Sketcher geometries - 草绘几何体 - - - Sketcher geoms - 草绘几何 - - - - Sketcher constraints - 草图约束 - - - diff --git a/src/Mod/Sketcher/Gui/ViewProviderSketch.cpp b/src/Mod/Sketcher/Gui/ViewProviderSketch.cpp index 5511166a8..484883f60 100644 --- a/src/Mod/Sketcher/Gui/ViewProviderSketch.cpp +++ b/src/Mod/Sketcher/Gui/ViewProviderSketch.cpp @@ -64,6 +64,7 @@ # include # include # include +# include #endif #include @@ -207,6 +208,8 @@ const Part::Geometry* GeoById(const std::vector GeoList, int Id //************************************************************************** // Construction/Destruction +/* TRANSLATOR SketcherGui::ViewProviderSketch */ + PROPERTY_SOURCE(SketcherGui::ViewProviderSketch, PartGui::ViewProvider2DObject) @@ -2851,6 +2854,42 @@ bool ViewProviderSketch::setEdit(int ModNum) return true; } +QString ViewProviderSketch::appendConflictMsg(const std::vector &conflicting) +{ + QString msg; + QTextStream ss(&msg); + if (conflicting.size() > 0) { + if (conflicting.size() == 1) + ss << tr("Please remove the following constraint:"); + else + ss << tr("Please remove at least one of the following constraints:"); + ss << "\n"; + ss << conflicting[0]; + for (unsigned int i=1; i < conflicting.size(); i++) + ss << ", " << conflicting[i]; + ss << "\n"; + } + return msg; +} + +QString ViewProviderSketch::appendRedundantMsg(const std::vector &redundant) +{ + QString msg; + QTextStream ss(&msg); + if (redundant.size() > 0) { + if (redundant.size() == 1) + ss << tr("Please remove the following redundant constraint:"); + else + ss << tr("Please remove the following redundant constraints:"); + ss << "\n"; + ss << redundant[0]; + for (unsigned int i=1; i < redundant.size(); i++) + ss << ", " << redundant[i]; + ss << "\n"; + } + return msg; +} + void ViewProviderSketch::solveSketch(void) { // set up the sketch and diagnose possible conflicts @@ -2858,47 +2897,46 @@ void ViewProviderSketch::solveSketch(void) getSketchObject()->Constraints.getValues(), getSketchObject()->getExternalGeometryCount()); if (getSketchObject()->Geometry.getSize() == 0) { - signalSetUp(QString::fromLatin1("Empty sketch")); + signalSetUp(tr("Empty sketch")); signalSolved(QString()); } else if (dofs < 0) { // over-constrained sketch std::string msg; SketchObject::appendConflictMsg(edit->ActSketch.getConflicting(), msg); - signalSetUp(QString::fromLatin1("Over-constrained sketch
%1
") + signalSetUp(QString::fromLatin1("%1
%2
") + .arg(tr("Over-constrained sketch")) .arg(QString::fromStdString(msg))); signalSolved(QString()); } else if (edit->ActSketch.hasConflicts()) { // conflicting constraints - std::string msg; - SketchObject::appendConflictMsg(edit->ActSketch.getConflicting(), msg); - signalSetUp(QString::fromLatin1("Sketch contains conflicting constraints
%1
") - .arg(QString::fromStdString(msg))); + signalSetUp(QString::fromLatin1("%1
%2
") + .arg(tr("Sketch contains conflicting constraints")) + .arg(appendConflictMsg(edit->ActSketch.getConflicting()))); signalSolved(QString()); } else { if (edit->ActSketch.hasRedundancies()) { // redundant constraints - std::string msg; - SketchObject::appendRedundantMsg(edit->ActSketch.getRedundant(), msg); - signalSetUp(QString::fromLatin1("Sketch contains redundant constraints
%1
") - .arg(QString::fromStdString(msg))); + signalSetUp(QString::fromLatin1("%1
%2
") + .arg(tr("Sketch contains redundant constraints")) + .arg(appendRedundantMsg(edit->ActSketch.getRedundant()))); } if (edit->ActSketch.solve() == 0) { // solving the sketch if (dofs == 0) { // color the sketch as fully constrained edit->FullyConstrained = true; if (!edit->ActSketch.hasRedundancies()) - signalSetUp(QString::fromLatin1("Fully constrained sketch ")); + signalSetUp(QString::fromLatin1("%1").arg(tr("Fully constrained sketch"))); } else if (!edit->ActSketch.hasRedundancies()) { if (dofs == 1) - signalSetUp(QString::fromLatin1("Under-constrained sketch with 1 degree of freedom")); + signalSetUp(tr("Under-constrained sketch with 1 degree of freedom")); else - signalSetUp(QString::fromLatin1("Under-constrained sketch with %1 degrees of freedom").arg(dofs)); + signalSetUp(tr("Under-constrained sketch with %1 degrees of freedom").arg(dofs)); } - signalSolved(QString::fromLatin1("Solved in %1 sec").arg(edit->ActSketch.SolveTime)); + signalSolved(tr("Solved in %1 sec").arg(edit->ActSketch.SolveTime)); } else { - signalSolved(QString::fromLatin1("Unsolved (%1 sec)").arg(edit->ActSketch.SolveTime)); + signalSolved(tr("Unsolved (%1 sec)").arg(edit->ActSketch.SolveTime)); } } } diff --git a/src/Mod/Sketcher/Gui/ViewProviderSketch.h b/src/Mod/Sketcher/Gui/ViewProviderSketch.h index d281ce597..5749873a2 100644 --- a/src/Mod/Sketcher/Gui/ViewProviderSketch.h +++ b/src/Mod/Sketcher/Gui/ViewProviderSketch.h @@ -29,6 +29,7 @@ #include #include #include +#include class TopoDS_Shape; @@ -70,7 +71,13 @@ class DrawSketchHandler; */ class SketcherGuiExport ViewProviderSketch : public PartGui::ViewProvider2DObject, public Gui::SelectionObserver { - PROPERTY_HEADER(PartGui::ViewProviderSketch); + Q_DECLARE_TR_FUNCTIONS(SketcherGui::ViewProviderSketch) + /// generates a warning message about constraint conflicts and appends it to the given message + static QString appendConflictMsg(const std::vector &conflicting); + /// generates a warning message about redundant constraints and appends it to the given message + static QString appendRedundantMsg(const std::vector &redundant); + + PROPERTY_HEADER(SketcherGui::ViewProviderSketch); public: /// constructor diff --git a/src/Mod/Start/Gui/Resources/Makefile.am b/src/Mod/Start/Gui/Resources/Makefile.am index e797aab14..50d8515cf 100644 --- a/src/Mod/Start/Gui/Resources/Makefile.am +++ b/src/Mod/Start/Gui/Resources/Makefile.am @@ -11,8 +11,8 @@ EXTRA_DIST = \ translations/StartPage_af.ts \ translations/StartPage_de.qm \ translations/StartPage_de.ts \ - translations/StartPage_es.qm \ - translations/StartPage_es.ts \ + translations/StartPage_es-ES.qm \ + translations/StartPage_es-ES.ts \ translations/StartPage_fi.qm \ translations/StartPage_fi.ts \ translations/StartPage_fr.qm \ @@ -31,16 +31,30 @@ EXTRA_DIST = \ translations/StartPage_no.ts \ translations/StartPage_pl.qm \ translations/StartPage_pl.ts \ - translations/StartPage_pt.qm \ - translations/StartPage_pt.ts \ + translations/StartPage_pt-BR.qm \ + translations/StartPage_pt-BR.ts \ translations/StartPage_ru.qm \ translations/StartPage_ru.ts \ - translations/StartPage_se.qm \ - translations/StartPage_se.ts \ + translations/StartPage_sv-SE.qm \ + translations/StartPage_sv-SE.ts \ translations/StartPage_uk.qm \ translations/StartPage_uk.ts \ - translations/StartPage_zh.qm \ - translations/StartPage_zh.ts \ + translations/StartPage_zh-CN.qm \ + translations/StartPage_zh-CN.ts \ + translations/StartPage_zh-TW.qm \ + translations/StartPage_zh-TW.ts \ + translations/StartPage_cs.qm \ + translations/StartPage_cs.ts \ + translations/StartPage_sk.qm \ + translations/StartPage_sk.ts \ + translations/StartPage_tr.qm \ + translations/StartPage_tr.ts \ + translations/StartPage_hu.qm \ + translations/StartPage_hu.ts \ + translations/StartPage_ro.qm \ + translations/StartPage_ro.ts \ + translations/StartPage_ja.qm \ + translations/StartPage_ja.ts \ Start.qrc \ UpdateResources.bat diff --git a/src/Mod/Start/Gui/Resources/Start.qrc b/src/Mod/Start/Gui/Resources/Start.qrc index 925ecd7f9..28da8bcfb 100644 --- a/src/Mod/Start/Gui/Resources/Start.qrc +++ b/src/Mod/Start/Gui/Resources/Start.qrc @@ -2,20 +2,25 @@ translations/StartPage_af.qm translations/StartPage_de.qm - translations/StartPage_es.qm translations/StartPage_fi.qm translations/StartPage_fr.qm translations/StartPage_it.qm translations/StartPage_nl.qm translations/StartPage_no.qm translations/StartPage_ru.qm - translations/StartPage_se.qm translations/StartPage_uk.qm translations/StartPage_pl.qm - translations/StartPage_pt.qm translations/StartPage_hr.qm - translations/StartPage_zh.qm translations/StartPage_ja.qm translations/StartPage_hu.qm + translations/StartPage_tr.qm + translations/StartPage_sv-SE.qm + translations/StartPage_zh-TW.qm + translations/StartPage_pt-BR.qm + translations/StartPage_cs.qm + translations/StartPage_sk.qm + translations/StartPage_es-ES.qm + translations/StartPage_zh-CN.qm + translations/StartPage_ro.qm diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_af.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_af.qm index 8f915edb5..b2d72fbc0 100644 Binary files a/src/Mod/Start/Gui/Resources/translations/StartPage_af.qm and b/src/Mod/Start/Gui/Resources/translations/StartPage_af.qm differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_af.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_af.ts index 85344f908..ef488d90b 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_af.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_af.ts @@ -3,245 +3,245 @@ StartPage - - - FreeCAD Start Center - FreeCAD Start Center - - - - Start a new project - Start a new project - - - - Recent Files - Recent Files - - - - Tutorials - Tutorials - - - - FreeCAD Homepage - FreeCAD Homepage - - - - Example projects - Example projects - - - - Schenkel STEP file - Schenkel STEP file - - - - Load a PartDesign example - Load a PartDesign example - - - - Load a Drawing extraction - Load a Drawing extraction - - - - Load a Robot simulation example - Load a Robot simulation example - - - - Projects from the Web - Projects from the Web - + FreeCAD Start Center + FreeCAD Beginpunt + + + + Start a new project + Skep 'n nuwe projek + + + + Recent Files + Onlangse lêers + + + + Tutorials + Tutoriale + + + + FreeCAD Homepage + FreeCAD Tuisblad + + + + Example projects + Voorbeeldprojekte + + + + Schenkel STEP file + Schenkel STEP-lêer + + + + Load a PartDesign example + Laai 'n onderdeelontwerp voorbeeld + + + + Load a Drawing extraction + Laai 'n deel van 'n tekening + + + + Load a Robot simulation example + Laai 'n robotsimulasie voorbeeld + + + + Projects from the Web + Projekte van die internet + + + Schenkel STEP Schenkel STEP - + Complex Part - Complex Part + Komplekse onderdeel - + Close this window after opening or creating a file - Close this window after opening or creating a file + Sluit hierdie venster na 'n lêer geskep of oopgemaak is - + Don't show me this window again next time - Don't show me this window again next time + Wys my nie hierdie venster volgende keer nie - + Designing parts - Designing parts + Die ontwerp van onderdele - + The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. - The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. + Die <b>Onderdeelontwerp</b> werkbank is ontwerp om ingewikkelde dele te skep gebaseer op vervormde 2D-sketse. Gebruik dit om 2D-vorms te teken, vervorm van hulle elemente en rek hulle om 3D elemente te vorm. - + Example workflow - Example workflow + Werkvloei voorbeeld - + Part Design Onderdeelontwerp - + Designing architectural elements - Designing architectural elements + Die ontwerp van argitektoniese elemente - + The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. - The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. + Die <b>Argitektoniese ontwerp</b> werkbank is spesiaal ontwerp om te werk met argitektoniese elemente soos mure en vensters. Begin deur 2D-vorms te teken en gebruik hulle as gidse om argitektoniese voorwerpe te bou. - + Architectual Design - Architectual Design + Argitektoniese Ontwerp - + Working with Meshes - Working with Meshes + Werk met Mase - + The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. - The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. + Die <b>Maaswerkbank</b> word gebruik om te werk met maasvoorwerpe. Mase is eenvoudiger 3D voorwerpe as onderdeelvoorwerpe, en hulle is dikwels makliker om in te voer en uit te voer na/van ander programme. - + FreeCAD offers you several tools to convert between Mesh and Part objects. - FreeCAD offers you several tools to convert between Mesh and Part objects. + FreeCAD bied jou verskeie werktuie vir omskakeling tussen Maas- en Onderdeelvoorwerpe. - + Work with Meshes - Work with Meshes + Werk met Mase - + The complete workbench - The complete workbench + Die volwaardige werkbank - + FreeCAD Complete workbench FreeCAD Complete workbench - + file size: - file size: + lêergrootte: - + creation time: - creation time: + skeppingstyd: - + last modified: - last modified: + onlangse wysigings: - + populated with some of the most commonly used tools. - populated with some of the most commonly used tools. + bevat van die mees aangewende werktuie. - + Latest videos - Latest videos + Onlangse video's - + Latest news - Latest news + Onlangse nuus - + On the web - On the web + Op die internet - + This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. - This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. + Hierdie is die FreeCAD Tuisblad. Hier sal jy heelwat informasie oor FreeCAD vind, insluitende tutoriale, voorbeelde en gebruikersdokumentasie. - + location: - location: + ligging: - + User manual - User manual + Gebruikershandleiding - + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc - + Python resources - Python resources + Python hulpbronne - + File not found Lêer nie gevind nie - + from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> - from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> + van <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> - + The FreeCAD-tutorial blog - The FreeCAD-tutorial blog + Die FreeCAD-tutoriaal blog - + from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> - from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> + van <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> - + This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. - This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. + Hierdie is die amptelike gebruikershandleiding van FreeCAD, gebou, onderhou en vertaal deur die FreeCAD gemeenskap. - + The tutorials section on the FreeCAD website - The tutorials section on the FreeCAD website + Die tutoriaalafdeling van die FreeCAD webwerf - + The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. - The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. + Die gedeelte van die FreeCAD werberf toegewy aan python kodering, met voorbeelde, verklarings, en API-bevele. - + A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community - A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community + 'n Blog toegewy daaraan om FreeCAD te leer, onderhou deur lede van die FreeCAD gemeenskap diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_cs.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_cs.qm new file mode 100644 index 000000000..c9f437255 Binary files /dev/null and b/src/Mod/Start/Gui/Resources/translations/StartPage_cs.qm differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_cs.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_cs.ts new file mode 100644 index 000000000..41690ff6a --- /dev/null +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_cs.ts @@ -0,0 +1,247 @@ + + + + + StartPage + + + FreeCAD Start Center + FreeCAD Start centrum + + + + Start a new project + Zahájení nového projektu + + + + Recent Files + Nedávné soubory + + + + Tutorials + Výukové programy + + + + FreeCAD Homepage + Domovská stránka FreeCADu + + + + Example projects + Vzorové projekty + + + + Schenkel STEP file + Schenkelův STEP soubor + + + + Load a PartDesign example + Načíst příklad PartDesign + + + + Load a Drawing extraction + Načíst výkres + + + + Load a Robot simulation example + Načíst příklad simulace robota + + + + Projects from the Web + Projekty z webu + + + + Schenkel STEP + Schenkelův STEP + + + + Complex Part + Komplexní Part + + + + Close this window after opening or creating a file + Zavřít toto okno po otevření nebo vytvoření souboru + + + + Don't show me this window again next time + Příště toto okno nezobrazovat + + + + Designing parts + Navrhování prvků + + + + The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. + <b>Part Design</b> půracovní plocha určená k vytváření složitých prvků na základě jednoduché 2D skici. Používá 2D tvary, omezí některé jejich části a vytvoří z nich 3D modely. + + + + Example workflow + Příklad pracovního postupu + + + + Part Design + Návrh dílu + + + + Designing architectural elements + Navrhování architektonických prvků + + + + The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. + <b>Architektonický Design</b> pracovní plocha speciálně pro práci s architektonickými prvky, jako jsou například stěny nebo okna. Začíná kreslením 2D tvarů a používá je jako skicu k vybudování architektonických objektů. + + + + Architectual Design + Architektonický Design + + + + Working with Meshes + Práce s drátovými modely + + + + The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. + <b>Mesh Workbench</b> se používá pro práci s drátovými objekty. Drátové objekty jsou jednodušší 3D objekty než plné objekty, ale jsou často snadnější pro import a export z / do jiných aplikací. + + + + FreeCAD offers you several tools to convert between Mesh and Part objects. + FreeCAD nabízí několik nástrojů pro konverzi mezi Mesh (drátový) a Part (plný) objekty. + + + + Work with Meshes + Práce s drátovými modely + + + + The complete workbench + Kompletní pracovní plocha + + + + FreeCAD Complete workbench + FreeCAD úplný workbench + + + + file size: + velikost souboru: + + + + creation time: + čas úprav: + + + + last modified: + naposled změněno: + + + + populated with some of the most commonly used tools. + některé nejčastěji používané nástroje + + + + Latest videos + Nejnovější videa + + + + Latest news + Nejnovější zprávy + + + + On the web + Na webu + + + + This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. + Toto je domácí stránka FreeCADu. Zde máte možnost najít mnoho informací o FreeCADu, včetně návodů, příkladů a uživatelské dokumentace. + + + + location: + umístění: + + + + User manual + Uživatelský manuál + + + + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc + + + + Python resources + Python resources + + + + File not found + Soubor nebyl nalezen + + + + from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> + z <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> + + + + The FreeCAD-tutorial blog + Výukový blog FreeCADu + + + + from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> + z <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> + + + + This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. + Toto je oficiální uživatelský manuál FreeCADu, vývoje a překladu komunitou FreeCAD. + + + + The tutorials section on the FreeCAD website + Kapitola cvičení na stránkách FreeCAD + + + + The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. + Kapitola věnovaná skriptování v Pythonu na stánkách FreeCAD, s příklady, vysvětlivkami, a příkazy API. + + + + A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community + Blog věnovaný výuce FreeCADu, spravovaný členy FreeCAD comunity + + + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_de.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_de.qm index 573d336fe..ec9d6807f 100644 Binary files a/src/Mod/Start/Gui/Resources/translations/StartPage_de.qm and b/src/Mod/Start/Gui/Resources/translations/StartPage_de.qm differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_de.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_de.ts index fb8eee8d9..08cf9cec1 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_de.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_de.ts @@ -4,244 +4,244 @@ StartPage - + FreeCAD Start Center - FreeCAD Start Center + FreeCAD Startcenter - + Start a new project Neues Projekt beginnen - + Recent Files - Recent Files + Letzte Dokumente - + Tutorials - Tutorials + Tutorien - + FreeCAD Homepage FreeCAD Homepage - + Example projects - Beispiel Projekte + Beispiel-Projekte - + Schenkel STEP file - Schenkel STEP file + Schenkel STEP-Datei - + Load a PartDesign example - Load a PartDesign example + Lade ein Fertigungsdesign-Beispiel - + Load a Drawing extraction - Load a Drawing extraction + Lade eine Zeichnungsableitung - + Load a Robot simulation example - Load a Robot simulation example + Lade ein Robotersimulations-Beispiel - + Projects from the Web - Projects from the Web + Projekte aus dem Web - + Schenkel STEP Schenkel STEP - + Complex Part - Complex Part + Komplexes Teil - + Close this window after opening or creating a file - Close this window after opening or creating a file + Schließe dieses Fenster wenn eine Datei geöffnet oder neu angelegt wurde - + Don't show me this window again next time - Don't show me this window again next time + Dieses Fenster beim nächsten Mal nicht mehr anzeigen - + Designing parts - Designing parts + Entwerfen von Teilen - + The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. - The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. + Die <b>Fertigungs-Design</b> Werkbank dient zum Erstellen komplexer Teile auf der Grundlage von eingeschränkten 2D-Skizzen. Verwenden Sie es um 2D Formen zu zeichnen, einige ihrer Elemente einschränken und durch Extrudieren 3D Stücke zu bilden. - + Example workflow - Example workflow + Workflow-Beispiel - + Part Design Teile-Konstruktion - + Designing architectural elements - Designing architectural elements + Entwerfen von architektonischen Elemente - + The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. - The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. + Die <b>Architektonische Design</b> Workbench ist speziell für die Arbeit mit Architekturelementen wie Wänden oder Fenstern geeignet. Starte durch die Zeichnung von 2D Umrissen, und verwende diese als Grundlage, um architektonische Objekte zu erstellen. - + Architectual Design - Architectual Design + Architektonische Design - + Working with Meshes - Working with Meshes + Arbeiten mit Netzen - + The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. - The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. + Die <b>Gitter-Werkbank</b> wird benutzt um mit Gitter-Objekten zu arbeiten. Gitter sind einfachere 3D-Teile als Volumenobjekte, aber sie sind oft einfacher von/zu anderen Programmen zu importieren und exportieren. - + FreeCAD offers you several tools to convert between Mesh and Part objects. - FreeCAD offers you several tools to convert between Mesh and Part objects. + FreeCAD bietet Ihnen verschiedene Werkzeuge zum Konvertieren zwischen Gitter und Volumen-Objekten. - + Work with Meshes - Work with Meshes + Arbeiten mit Netzen - + The complete workbench - The complete workbench + Die vollständige Werkbank - + FreeCAD Complete workbench - FreeCAD Complete workbench + FreeCAD Komplett-Arbeitsbereich - + file size: Datei Größe: - + creation time: erstellungs Zeit: - + last modified: zuletzt geändert: - + populated with some of the most commonly used tools. - populated with some of the most commonly used tools. + gefüllt mit einigen der am häufigsten verwendeten Werkzeuge. - + Latest videos - Latest videos + Neueste Videos/Screencasts - + Latest news - Latest news + Neuigkeiten - + On the web - On the web + Im Web - + This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. - This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. + Dies ist die FreeCAD Homepage. Hier wirst Du eine Menge Informationen über FreeCAD, einschließlich Tutorials, Beispiele und Benutzerdokumentation finden können. - + location: - location: + Ort: - + User manual - User manual + Benutzeranleitung - + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc - + Python resources - Python resources + Python-Quellen - + File not found Datei nicht gefunden - + from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> - from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> + von <a href=http://twitter.com/FreeCADNews> @ FreeCADNews</a> - + The FreeCAD-tutorial blog - The FreeCAD-tutorial blog + Der FreeCAD-Tutorial-Blog - + from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> - from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> + vom <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee> FreeCADNews-Kanal</a> - + This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. - This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. + Dies ist das offizielle Benutzerhandbuch von FreeCAD, geschrieben, betreut und übersetzt durch die FreeCAD-Gemeinschaft. - + The tutorials section on the FreeCAD website - The tutorials section on the FreeCAD website + Die Tutorial-Rubrik auf der FreeCAD-Webseite - + The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. - The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. + Die Rubrik der FreeCAD-Seite, die Python mit Beispielen, Erklärungen und API-Kommandos gewidmet ist. - + A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community - A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community + Ein Blog um FreeCAD zu lernen. Von und für Mitglieder der FreeCAD-Gemeinschaft diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_es-ES.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_es-ES.qm new file mode 100644 index 000000000..51a4eaa93 Binary files /dev/null and b/src/Mod/Start/Gui/Resources/translations/StartPage_es-ES.qm differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_es.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_es-ES.ts similarity index 67% rename from src/Mod/Start/Gui/Resources/translations/StartPage_es.ts rename to src/Mod/Start/Gui/Resources/translations/StartPage_es-ES.ts index 4778b7160..93377b70e 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_es.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_es-ES.ts @@ -4,244 +4,244 @@ StartPage - + FreeCAD Start Center Centro de inicio de FreeCAD - + Start a new project Comenzar un proyecto nuevo - + Recent Files Archivos recientes - + Tutorials Tutoriales - + FreeCAD Homepage Página de inicio de FreeCAD - + Example projects Proyectos de ejemplo - + Schenkel STEP file - Schenkel STEP file + Achivo STEP Schenkel - + Load a PartDesign example - Load a PartDesign example + Cargar un ejemplo PartDesign - + Load a Drawing extraction - Load a Drawing extraction + Cargar un extracto de Dibujo - + Load a Robot simulation example - Load a Robot simulation example + Cargar un ejemplo de simulación de Robots - + Projects from the Web - Projects from the Web + Proyectos de la Web - + Schenkel STEP Schenkel STEP - + Complex Part - Complex Part + Pieza compleja - + Close this window after opening or creating a file Cerrar esta ventana después de abrir o crear un archivo - + Don't show me this window again next time No mostrar esta ventan la próxima vez - + Designing parts - Designing parts + Diseñando piezas - + The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. - The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. + El banco de trabajo <b>Diseño de Piezas</b> ha sido diseñado para crear piezas complejas basadas en restricciones de bocetos en 2D. Úselas para dibujar formas en 2D, restringir algunos de sus elementos y extrusionar para formar piezas 3D. - + Example workflow Ejemplo de flujo de trabajo - + Part Design Diseño de pieza - + Designing architectural elements Diseñando elementos arquitectónicos - + The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. - The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. + El banco de trabajo <b>Diseño arquitectónico</b> está especialmente diseñado para trabajar con elementos arquitectónicos tales como paredes o ventanas. Comience dibujando formas 2D y úselos como guías para construir objetos arquitectónicos. - + Architectual Design Diseño arquitectónico - + Working with Meshes - Working with Meshes + Trabajando con Mallas - + The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. - The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. + El <b>Banco de trabajo de Malla</b> se utiliza para trabajar con objetos Malla. Los objetos Malla son objetos 3D más simples que los objetos Pieza, pero a menudo son más fáciles de importar y exportar desde otras aplicaciones. - + FreeCAD offers you several tools to convert between Mesh and Part objects. - FreeCAD offers you several tools to convert between Mesh and Part objects. + FreeCAD le ofrece varias herramientas para convertir entre objetos Malla y Pieza. - + Work with Meshes Trabajar con Mallas - + The complete workbench - The complete workbench + El banco de trabajo completo - + FreeCAD Complete workbench - Entorno de trabajo predeterminado de FreeCAD + FreeCAD Modo Estandar - + file size: tamaño del archivo: - + creation time: - creation time: + hora de creación: - + last modified: última modificación: - + populated with some of the most commonly used tools. - populated with some of the most commonly used tools. + repleta de algunas de las herramientas más utilizadas. - + Latest videos - Latest videos + Últimos vídeos - + Latest news - Latest news + Últimas noticias - + On the web - On the web + En la web - + This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. - This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. + Esta es la página de inicio de FreeCAD. Aquí podrá encontrar una gran cantidad de información acerca de FreeCAD, incluyendo tutoriales, ejemplos y documentación para el usuario. - + location: - location: + Ubicación: - + User manual - User manual + Manual de usuario - + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc - + Python resources - Python resources + Recursos de Python - + File not found Archivo no encontrado - + from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> - from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> + de <a href=http://twitter.com/FreeCADNews>@ FreeCADNews</a> - + The FreeCAD-tutorial blog - The FreeCAD-tutorial blog + El blog FreeCAD-tutorial - + from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> - from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> + del <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>canal FreeCADNews</a> - + This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. - This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. + Este es el manual de usuario oficial de FreeCAD, construido, mantenido y traducido por la comunidad de FreeCAD. - + The tutorials section on the FreeCAD website - The tutorials section on the FreeCAD website + La sección de tutoriales en el sitio Web de FreeCAD - + The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. - The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. + La sección de la página Web de FreeCAd dedicada a scripts Python, con ejemplos, explicaciones y comandos de API. - + A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community - A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community + Un blog dedicado a la enseñanza de FreeCAD, mantenida por los miembros de la comunidad FreeCAD diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_es.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_es.qm deleted file mode 100644 index cb1ecc850..000000000 Binary files a/src/Mod/Start/Gui/Resources/translations/StartPage_es.qm and /dev/null differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_fi.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_fi.qm index 6b18866b4..0fe7a5d91 100644 Binary files a/src/Mod/Start/Gui/Resources/translations/StartPage_fi.qm and b/src/Mod/Start/Gui/Resources/translations/StartPage_fi.qm differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_fi.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_fi.ts index 2f651aafd..5e31db04f 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_fi.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_fi.ts @@ -3,245 +3,245 @@ StartPage - - - FreeCAD Start Center - FreeCAD Start Center - - - - Start a new project - Start a new project - - - - Recent Files - Recent Files - - - - Tutorials - Tutorials - - - - FreeCAD Homepage - FreeCAD Homepage - - - - Example projects - Example projects - - - - Schenkel STEP file - Schenkel STEP file - - - - Load a PartDesign example - Load a PartDesign example - - - - Load a Drawing extraction - Load a Drawing extraction - - - - Load a Robot simulation example - Load a Robot simulation example - - - - Projects from the Web - Projects from the Web - + FreeCAD Start Center + FreeCAD Aloituskeskus + + + + Start a new project + Aloita uusi projekti + + + + Recent Files + Viimeisimmät tiedostot + + + + Tutorials + Oppitunnit + + + + FreeCAD Homepage + FreeCAD kotisivu + + + + Example projects + Esimerkki projektit + + + + Schenkel STEP file + Schenkel STEP tiedosto + + + + Load a PartDesign example + Lataa Osan valmistus-esimerkki + + + + Load a Drawing extraction + Lataa piirustuksen syntyperä + + + + Load a Robot simulation example + Lataa Robotti simulointi-esimerkki + + + + Projects from the Web + Projektit Webistä + + + Schenkel STEP Schenkel STEP - - - Complex Part - Complex Part - - - - Close this window after opening or creating a file - Close this window after opening or creating a file - - - - Don't show me this window again next time - Don't show me this window again next time - - - - Designing parts - Designing parts - - - - The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. - The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. - - - - Example workflow - Example workflow - - - - Part Design - Part Design - - - - Designing architectural elements - Designing architectural elements - - - - The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. - The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. - - - - Architectual Design - Architectual Design - - - - Working with Meshes - Working with Meshes - - - - The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. - The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. - - - - FreeCAD offers you several tools to convert between Mesh and Part objects. - FreeCAD offers you several tools to convert between Mesh and Part objects. - - - - Work with Meshes - Work with Meshes - - The complete workbench - The complete workbench + Complex Part + Monimutkainen osa + Close this window after opening or creating a file + Sulje tämä ikkuna avatessani tai luodessani tiedoston + + + + Don't show me this window again next time + Älä näytä tätä ikkunaa uudelleen seuraavalla kerralla + + + + Designing parts + Osien suunnitteleminen + + + + The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. + <b>Osa suunnittelu</b>-Työpöydän tarkoituksena on luoda monimutkaisia kappaleita rajoitettujen 2D luonnosten perusteella. Sen avulla voit piirtää 2D muotoja, rajoittaa joitakin niiden osia ja pursottaa niistä muodostuvia 3D kappaleita. + + + + Example workflow + Esimerkki työnkulku + + + + Part Design + Osan Suunnittelu + + + + Designing architectural elements + Arkkitehtonisten elementtien suunnittelu + + + + The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. + <b>Arkkitehtuuri</b> Työpöytä on suunniteltu arkkitehtonisten elementtien, kuten seinien tai ikkunoiden käsittelemistä varten. Käynnistää 2D piirroksena ja käyttää niitä apuviivoina rakentaessa arkkitehtonisia objekteja. + + + + Architectual Design + Arkkitehtuurinen suunnittelu + + + + Working with Meshes + Työskenteleminen ruudukkojen kanssa + + + + The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. + <b>Verkko Työpöytää</b> käytetään työskennellessä verkko objektien kanssa. Verkot ovat Yksinkertaisempia kolmiulotteisia objekteja kuin osa objektit, mutta ne ovat usein helpommin tuotavissa ja vietävissä muihin sovelluksiin tai siitä pois. + + + + FreeCAD offers you several tools to convert between Mesh and Part objects. + FreeCAD tarjoaa useita työkaluja verkko ja osa objektien muuntamiseen. + + + + Work with Meshes + Työ Verkkojen kanssa + + + + The complete workbench + Valmistuksen työpöytä + + + FreeCAD Complete workbench FreeCAD Complete workbench - + file size: - file size: + tiedostokoko: - + creation time: - creation time: + Luontiaika: - + last modified: - last modified: + viimeksi muokattu: - + populated with some of the most commonly used tools. - populated with some of the most commonly used tools. + täytetty yleisimmin käytetyistä työkaluista. - + Latest videos - Latest videos + Uusimmat videot - + Latest news - Latest news + Viimeisimmät uutiset - + On the web - On the web + Webissä - + This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. - This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. + Tämä on FreeCAD-Kotisivu. Täällä voi löytää paljon tietoa FreeCAD:sta, mukaan lukien Opetusohjelmat, esimerkit ja käyttöoppaan. - + location: - location: + sijainti: - + User manual - User manual + Käyttäjän käsikirja - + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc - + Python resources - Python resources + Python-resurssit - + File not found Tiedostoa ei löydy - + from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> - from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> + <a href=http://twitter.com/FreeCADNews>@FreeCADNews:stä</a> - + The FreeCAD-tutorial blog - The FreeCAD-tutorial blog + FreeCAD-opetusohjelma-blogi - + from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> - from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> + <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee> FreeCADNews kanava</a>- - + This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. - This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. + Tämä on FreeCAD:n virallinen käyttöohje, rakenne ja ylläpito perustuu FreeCAD yhteisön käännökseen. - + The tutorials section on the FreeCAD website - The tutorials section on the FreeCAD website + Tutoriaalit osio FreeCAD-sivustolla - + The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. - The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. + FreeCAD Web-sivuston osan hakutoimintoihin on sisällytetty dto python skriptikieltä komentosarjojen esimerkeissä, selvitykssä ja API-komennoissa. - + A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community - A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community + Blogi omistettu FreeCAD:n opettamiselle, pääasiassa FreeCAD-yhteisön jäsenet ylläpitävät opetusta diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_fr.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_fr.qm index 1af302459..fd83d156e 100644 Binary files a/src/Mod/Start/Gui/Resources/translations/StartPage_fr.qm and b/src/Mod/Start/Gui/Resources/translations/StartPage_fr.qm differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_fr.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_fr.ts index 359852143..b5834963f 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_fr.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_fr.ts @@ -4,244 +4,244 @@ StartPage - + FreeCAD Start Center FreeCAD Start Center - + Start a new project Démarrer un nouveau projet - + Recent Files Fichiers récents - + Tutorials Tutoriels - + FreeCAD Homepage Page d'accueil FreeCAD - + Example projects Exemples de projets - + Schenkel STEP file Fichier STEP Schenkel - + Load a PartDesign example Charger un exemple Conception de pièce - + Load a Drawing extraction Charger une extraction de dessin - + Load a Robot simulation example Charger un exemple de simulation de robot - + Projects from the Web Projets sur le Web - + Schenkel STEP STEP Schenkel - + Complex Part Pièce complexe - + Close this window after opening or creating a file Fermer cette fenêtre après l'ouverture ou la création d'un fichier - + Don't show me this window again next time Ne pas me montrer cette fenêtre la prochaine fois - + Designing parts Concevoir des pièces - + The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. L'atelier <b>Conception de pièces</b> est conçu pour créer des pièces complexes basées sur des esquisses 2D contraintes. Utilisez-le pour dessiner des formes 2D, contraindre certains de leurs éléments et les extruder pour former des pièces en 3D. - + Example workflow Exemple de flux de travail - + Part Design Conception de pièces - + Designing architectural elements Concevoir des éléments architecturaux - + The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. L'atelier de <b>Conception architecturale</b> est spécialement conçu pour travailler avec des éléments architecturaux tels que des murs ou des fenêtres. Commencez par dessiner des formes 2D, et utilisez-les comme guides pour construire des objets architecturaux. - + Architectual Design Conception architecturale - + Working with Meshes Travailler avec des maillages - + The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. L'<b>Atelier Maillage</b> permet de travailler sur des objets de maillage. Les mailles sont des objets 3D plus simples que les objets Pièce, mais ils sont souvent plus facile à importer et exporter vers / depuis d'autres applications. - + FreeCAD offers you several tools to convert between Mesh and Part objects. FreeCAD propose plusieurs outils pour convertir entre des objets de Maillage et des objets Pièce. - + Work with Meshes Travailler avec des maillages - + The complete workbench L'atelier complet - + FreeCAD Complete workbench - Atelier par défaut FreeCAD + Établi complet de FreeCAD - + file size: taille du fichier : - + creation time: date de création : - + last modified: dernière modification : - + populated with some of the most commonly used tools. doté des outils les plus couramment utilisés. - + Latest videos Dernières vidéos - + Latest news Dernières nouvelles - + On the web Sur le web - + This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. Ceci est la page d'accueil de FreeCAD. Ici vous pourrez trouver beaucoup d'information sur FreeCAD, y compris des tutoriels, des exemples et la documentation de l'utilisateur. - + location: - emplacement: + emplacement : - + User manual Manuel de l'utilisateur - + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc/fr - + Python resources Ressources de Python - + File not found Fichier introuvable - + from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> de <a href=http://twitter.com/FreeCADNews> @FreeCADNews</a> - + The FreeCAD-tutorial blog - Le blog FreeCAD-tutorial + Le blogue FreeCAD-tutorial - + from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> - du <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee> canal FreeCADNews</a> + de la <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee> chaîne FreeCADNews</a> - + This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. - Ceci est le manuel d'utilisation officiel de FreeCAD, construit, entretenu et traduit par la communauté de FreeCAD. + Ceci est le manuel d'utilisation officiel de FreeCAD, rédigé, entretenu et traduit par la communauté de FreeCAD. - + The tutorials section on the FreeCAD website La section des tutoriels sur le site de FreeCAD - + The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. La section du site Web de FreeCAD dédiée au script Python, avec des exemples, des explications, et les commandes de l'API. - + A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community - Un blog dédié à l'enseignement de FreeCAD, maintenu par des membres de la communauté de FreeCAD + Un blogue dédié à l'enseignement de FreeCAD, maintenu par des membres de la communauté de FreeCAD diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_hr.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_hr.qm index 303541ace..056659525 100644 Binary files a/src/Mod/Start/Gui/Resources/translations/StartPage_hr.qm and b/src/Mod/Start/Gui/Resources/translations/StartPage_hr.qm differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_hr.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_hr.ts index ede22f437..10f678493 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_hr.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_hr.ts @@ -4,244 +4,244 @@ StartPage - + FreeCAD Start Center FreeCAD - Centar za početak rada - + Start a new project Započni novi projekt - + Recent Files Nedavne datoteke - + Tutorials Tutoriali - + FreeCAD Homepage FreeCAD Početna stranica - + Example projects Primjeri projekata - + Schenkel STEP file Schenkel STEP datoteka - + Load a PartDesign example Učitaj primjer PartDesign-a - + Load a Drawing extraction Učitaj ekstrakciju crteža - + Load a Robot simulation example Učitaj primjer simulacije robota - + Projects from the Web Projekti s weba - + Schenkel STEP Schenkel STEP - + Complex Part Složeno Tijelo - + Close this window after opening or creating a file Zatvori ovaj prozor nakon otvaranja ili stvaranja nove datoteke - + Don't show me this window again next time Ne prikazuj ovaj prozor sljedeći put - + Designing parts Izrada Tijela - + The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. Radno okruženje za <b>dizajn čvrstih tijela</b> služi za izradu složenih tijela koji se temelje na 2D skicama sa ograničenjima. Koristi se za crtanje 2D oblika, ograničavanje nekih njegovih elemenata te njegovo izvlačenje u 3D tijelo. - + Example workflow Primjer rada - + Part Design Oblikovanje tijela - + Designing architectural elements Izrada arhitektonskih elemenata - + The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. Radno okruženje za <b>Arhitektonski dizajn</b> posebno je dizajnirano za rad s arhitektonskim elementima kao što su zidovi ili prozori. Započnite crtanje 2D oblika, te ih koristiti kao vodiči za izgradnju arhitektonskih objekata. - + Architectual Design Arhitektonski dizajn - + Working with Meshes Rad s MESH-evima - + The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. <b>MESH radno okruženje</b> se koristi za rad s MESH objektima. MESH-evisu jednostavniji 3D objekti od tijela, ali su često lakši za uvoz i izvoz u/iz drugih aplikacija. - + FreeCAD offers you several tools to convert between Mesh and Part objects. FreeCAD nudi nekoliko alata za pretvorbu između Mesh-a i Tijela. - + Work with Meshes Rad s MESH-evima - + The complete workbench Kompletno radno okruženje - + FreeCAD Complete workbench - Inicijalno FreeCAD radno okruženje + FreeCAD Complete radno okruženje - + file size: veličina datoteke: - + creation time: vrijeme kreiranja: - + last modified: zadnja izmjena: - + populated with some of the most commonly used tools. Popunjeno s nekim od najčešće korištenih alata. - + Latest videos - Latest videos + Posljednje video snimke - + Latest news - Latest news + Najnovije vijesti - + On the web - On the web + Na mreži - + This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. - This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. + Ovo je FreeCAD početna stranica. Ovdje ćete moći pronaći dosta informacija o FreeCAD-u, uključujući tutoriale, primjere i korisničku dokumentaciju. - + location: - location: + Lokacija: - + User manual - User manual + Upute za upotrebu - + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc - + Python resources - Python resources + Python resursi - + File not found Datoteka nije pronađena - + from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> - from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> + iz <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> - + The FreeCAD-tutorial blog - The FreeCAD-tutorial blog + FreeCAD-tutorial blog - + from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> - from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> + iz <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews kanal</a> - + This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. - This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. + Ovo je službeni korisnički priručnik FreeCAD-a, napravljen, održavan i preveden od FreeCAD zajednice. - + The tutorials section on the FreeCAD website - The tutorials section on the FreeCAD website + Tutoriali na FreeCAD web stranici - + The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. - The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. + Dio FreeCAD internetske stranice posvećen Python skriptama, s primjerima, objašnjenjima, i API naredbama. - + A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community - A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community + Blog posvećen učenju -aFreeCAD, održavan od članova FreeCAD zajednice diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_hu.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_hu.qm index d1c60b3b3..a7929bb27 100644 Binary files a/src/Mod/Start/Gui/Resources/translations/StartPage_hu.qm and b/src/Mod/Start/Gui/Resources/translations/StartPage_hu.qm differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_hu.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_hu.ts index 6e46c89d2..ec0c804a8 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_hu.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_hu.ts @@ -4,244 +4,244 @@ StartPage - + FreeCAD Start Center FreeCAD kezdés központ - + Start a new project Új projekt indítása - + Recent Files Legutóbbi fájlok - + Tutorials Oktatóanyagok - + FreeCAD Homepage FreeCAD Honlap - + Example projects Példa projektek - + Schenkel STEP file Schenkel STEP fájl - + Load a PartDesign example Töltsön be egy alkatrésztervező példát - + Load a Drawing extraction Töltsön be egy rajzfájlt - + Load a Robot simulation example Robot szimulációs-példa betöltése - + Projects from the Web Projektek a weben - + Schenkel STEP Schenkel STEP - + Complex Part Összetett alkatrész - + Close this window after opening or creating a file Fájl megnyitása vagy létrehozása után zárja be ezt az ablakot - + Don't show me this window again next time Legközelebbi indításkor ne jelenjen meg ez az ablak - + Designing parts Alkatrészek tervezése - + The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. Az <b>Alkatrész tervezés</b> munkafelület célja a komplex alkatrészek tervezése a 2D hálótest vázlatok alapján. Használja a 2D alakzatok, hálótestek vagy elemeikkel és húzza ki őket 3d formává. - + Example workflow Munkafolyamat példa - + Part Design Alkatrész tervezés - + Designing architectural elements Építészeti elemek tervezése - + The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. Az <b>építészeti tervezés</b> munkafelület kifejezetten építészeti elemek szerkesztésére szolgál, mint például falak vagy ablakok. Kezdjük 2D formák rajzolásával, és használja őket építészeti tárgyakat építési irányvonalára. - + Architectual Design Építőelemek tervezése - + Working with Meshes Munka hálótesttel - + The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. A <b>Hálótest munkafelület</b> a háló objektumok szerkesztésére szolgál. A hálótest egyszerúbb 3D alakzatok mint az alkatrész objektumok, de sokszor egyszerűbb importálni és exportálni különböző alkalmazások között. - + FreeCAD offers you several tools to convert between Mesh and Part objects. A FreeCAD számos olyan eszközzel rendelkezik ami képes a Háló és az Elem közötti konverzációra. - + Work with Meshes Munka hálótesttel - + The complete workbench A teljes munkafelület - + FreeCAD Complete workbench - FreeCAD alapértelmezett munkafelület + FreeCAD teljes munkaterület - + file size: fájlméret: - + creation time: létrehozva: - + last modified: utolsó módosítás: - + populated with some of the most commonly used tools. összhangban néhány a leggyakrabban használt eszközökkel. - + Latest videos - Latest videos + Legújabb videó - + Latest news - Latest news + Legfrissebb hírek - + On the web - On the web + A weben - + This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. - This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. + Ez a FreeCAD honlap. Itt sok információt talál a FreeCAD programról, oktatóanyagokat, példákat és felhasználói dokumentációt is beleértve. - + location: - location: + helye: - + User manual - User manual + Felhasználói kézikönyv - + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc - + Python resources - Python resources + Python-erőforrások - + File not found A fájl nem található - + from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> - + The FreeCAD-tutorial blog - The FreeCAD-tutorial blog + A FreeCAD bemutató-blog - + from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> - + This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. - This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. + Ez a FreeCAD hivatalos felhasználói kézikönyve, készítve, fenntartva a FreeCAD közösség álltal. - + The tutorials section on the FreeCAD website - The tutorials section on the FreeCAD website + Az oktató rész a FreeCAD honlapon - + The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. - The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. + A FreeCAd webhely egy része a python szkripteknek van kialakítva, példákkal, magyarázatokkal és API-parancsokkal. - + A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community - A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community + A blog a FreeCAD oktatási céljára rendelt, a FreeCAD-Közösség tagjai tartják fenn diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_it.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_it.qm index 08408c530..69872438a 100644 Binary files a/src/Mod/Start/Gui/Resources/translations/StartPage_it.qm and b/src/Mod/Start/Gui/Resources/translations/StartPage_it.qm differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_it.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_it.ts index b9aa0b60f..e05e59461 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_it.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_it.ts @@ -4,244 +4,244 @@ StartPage - + FreeCAD Start Center FreeCAD Start Center - + Start a new project Iniziare un nuovo progetto - + Recent Files File recenti - + Tutorials Tutorial - + FreeCAD Homepage FreeCAD Homepage - + Example projects Progetti di esempio - + Schenkel STEP file File Schenkel STEP - + Load a PartDesign example Carica un esempio Part Design - + Load a Drawing extraction Carica un disegno di estrazione - + Load a Robot simulation example Carica un esempio di simulazione Robot - + Projects from the Web Progetti dal Web - + Schenkel STEP Schenkel STEP - + Complex Part Parte complessa - + Close this window after opening or creating a file Chiudi questa finestra dopo l'apertura o la creazione di un file - + Don't show me this window again next time Non mostrare questa finestra la prossima volta - + Designing parts Progettazione di parti - + The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. L'ambiente <b>Part Design</b> è stato progettato per creare pezzi complessi basati su sketch 2D vincolati. Utilizzarlo per disegnare forme 2D, vincolare alcuni dei loro elementi ed estruderle per formare pezzi 3D. - + Example workflow Esempio di flusso di lavoro - + Part Design Progettazione di parti - + Designing architectural elements Progettazione di elementi architettonici - + The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. L'ambiente <b>Progettazione Architettonica</b> è appositamente progettato per lavorare con elementi architettonici come pareti o finestre. Inizi disegnando forme 2D e usale come guide per costruire oggetti architettonici. - + Architectual Design Progettazione architettonica - + Working with Meshes Lavorare con le Mesh - + The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. L'<b>Ambiente Mesh</b> è usato per lavorare con gli oggetti Mesh. Le mesh sono oggetti 3D più semplici degli oggetti parte, ma sono spesso più facili da importare ed esportare da/verso altre applicazioni. - + FreeCAD offers you several tools to convert between Mesh and Part objects. FreeCAD offre diversi strumenti per la conversione tra oggetti Mesh e oggetti Parte. - + Work with Meshes Lavorare con le Mesh - + The complete workbench L'ambiente di lavoro completo - + FreeCAD Complete workbench - Ambiente di lavoro predefinito di FreeCAD + Ambiente completo FreeCAD - + file size: dimensione del file: - + creation time: data di creazione: - + last modified: ultima modifica: - + populated with some of the most commonly used tools. popolato con alcuni degli strumenti più comunemente utilizzati. - + Latest videos - Latest videos + Ultimi video - + Latest news - Latest news + Ultime notizie - + On the web - On the web + Sul web - + This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. - This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. + Questa è la Homepage di FreeCAD. Qui sarete in grado di trovare un sacco di informazioni su FreeCAD, compresi tutorial, esempi e documentazione per l'utente. - + location: - location: + posizione: - + User manual - User manual + Manuale utente - + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc - http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc/it - + Python resources - Python resources + Risorse Python - + File not found File non trovato - + from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> - from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> + da <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> - + The FreeCAD-tutorial blog - The FreeCAD-tutorial blog + Il blog di FreeCAD-tutorial - + from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> - from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> + dal <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>Canale notizie di FreeCAD</a> - + This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. - This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. + Questo è il manuale ufficiale di FreeCAD, costruito, mantenuto e tradotto dalla comunità FreeCAD. - + The tutorials section on the FreeCAD website - The tutorials section on the FreeCAD website + La sezione tutorial sul sito FreeCAD - + The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. - The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. + La sezione del sito FreeCAD dedicata agli script python, con esempi, spiegazioni e comandi API. - + A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community - A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community + Un blog dedicato all'insegnamento di FreeCAD, mantenuto da membri della comunità FreeCAD diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_ja.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_ja.qm index ca9c3e5a8..47d8a8693 100644 Binary files a/src/Mod/Start/Gui/Resources/translations/StartPage_ja.qm and b/src/Mod/Start/Gui/Resources/translations/StartPage_ja.qm differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_ja.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_ja.ts index 99f1e1fc3..c1fd74559 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_ja.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_ja.ts @@ -4,242 +4,242 @@ StartPage - + FreeCAD Start Center FreeCADスタートセンター - + Start a new project 新しいプロジェクトを開始 - + Recent Files 最近使用したファイル - + Tutorials チュートリアル - + FreeCAD Homepage FreeCADホームページ - + Example projects サンプルプロジェクト - + Schenkel STEP file Schenkel STEP file - + Load a PartDesign example - Load a PartDesign example + 部品作成の例を読み込む - + Load a Drawing extraction Load a Drawing extraction - + Load a Robot simulation example ロボットシミュレーション例を読み込む - + Projects from the Web Projects from the Web - + Schenkel STEP Schenkel STEP - + Complex Part Complex Part - + Close this window after opening or creating a file ファイルを開くまたは作成後にこのウィンドウを閉じる - + Don't show me this window again next time 次回からはこのウィンドウを表示しない - + Designing parts 部品の設計 - + The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. <b>部品設計</b>ワークベンチは、制約された2Dスケッチをもとに複雑な部分を作成するように設計されています。2Dの図形を描画しそれらの要素の一部を制約し、押し出すことにより3D部品を作成します。 - + Example workflow ワークフローの例 - + Part Design Part Design - + Designing architectural elements Designing architectural elements - + The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. <b>建築設計</b>ワークベンチは、特別に壁や窓などの建築要素を扱うために設計されています。 2Dの図形を描画することによって起動し、建築オブジェクトを構築するためのガイドとして使用することもできます。 - + Architectual Design 建築設計 - + Working with Meshes Working with Meshes - + The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. - The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. + <b>メッシュワークベンチ</b> を使用して、メッシュオブジェクトを操作します。メッシュは部品オブジェクトよりも単純な3D オブジェクトです。メッシュオブジェクトは他のソフトウェアとのインポート/エクスポートが容易です。 - + FreeCAD offers you several tools to convert between Mesh and Part objects. FreeCAD offers you several tools to convert between Mesh and Part objects. - + Work with Meshes Work with Meshes - + The complete workbench The complete workbench - + FreeCAD Complete workbench - FreeCADのデフォルトワークベンチ + FreeCAD Complete workbench - + file size: ファイル サイズ: - + creation time: 作成日時: - + last modified: 最終更新日: - + populated with some of the most commonly used tools. populated with some of the most commonly used tools. - + Latest videos - Latest videos + 最新の動画 - + Latest news - Latest news + 最新ニュース - + On the web On the web - + This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. - This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. + これは FreeCAD のホームページです。ここで FreeCAD のチュートリアル,サンプル,ユーザーマニュアルなどの多くの情報を見つけることができます。 - + location: location: - + User manual - User manual + ユーザーマニュアル - + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc - + Python resources - Python resources + Pythonのリソース - + File not found ファイルが見つかりませんでした - + from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> - + The FreeCAD-tutorial blog - The FreeCAD-tutorial blog + FreeCAD チュートリアルブログ - + from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> - from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> + <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADニュースチャンネル</a>より - + This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. - + The tutorials section on the FreeCAD website The tutorials section on the FreeCAD website - + The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. - + A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_nl.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_nl.qm index abf2a7236..7e8bdd18a 100644 Binary files a/src/Mod/Start/Gui/Resources/translations/StartPage_nl.qm and b/src/Mod/Start/Gui/Resources/translations/StartPage_nl.qm differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_nl.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_nl.ts index 6ab92c4d3..c56cfa8e2 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_nl.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_nl.ts @@ -4,244 +4,244 @@ StartPage - + FreeCAD Start Center FreeCAD Start Center - + Start a new project Start een nieuw project - + Recent Files Recente bestanden - + Tutorials Tutorials - + FreeCAD Homepage FreeCAD Homepage - + Example projects Voorbeeldprojecten - + Schenkel STEP file Schenkel STEP bestand - + Load a PartDesign example Open een Onderdeel-Ontwerp voorbeeld - + Load a Drawing extraction Open een tekening-extractie - + Load a Robot simulation example Open een Robotsimulatie voorbeeld - + Projects from the Web Projecten op het web - + Schenkel STEP Schenkel STEP - + Complex Part Complex onderdeel - + Close this window after opening or creating a file Sluit dit venster na het openen of maken van een bestand - + Don't show me this window again next time De volgende keer dit venster niet meer weergeven - + Designing parts Ontwerpen van onderdelen - + The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. De <b>Onderdelen ontwerp</b> werkbank is ontwikkeld om complexe stukken op basis van beperkte 2D-schetsen te maken. Gebruik het om 2D-vormen te tekenen, beperk een aantal van de vrijheidsgraden van elementen en extrudeer ze naar 3D-stukken. - + Example workflow - Example workflow + Voorbeeld van een workflow - + Part Design Onderdelen ontwerpen - + Designing architectural elements Het ontwerpen van architecturale elementen - + The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. de </b>bouwkundig ontwerp</b> werkbank is speciaal ontworpen voor het werken met bouwkundige elementen zoals muren of ramen. Begin met het tekenen van 2D vormen, en gebruik ze als leidraad om bouwkundige objecten te ontwerpen. - + Architectual Design Bouwkundig ontwerp - + Working with Meshes - Working with Meshes + Werken met meshes - + The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. - The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. + De <b>Mesh Werkbank</b> wordt gebruikt om te werken met meshes. Meshes zijn eenvoudiger als 3D-objecten dan Part objecten en zijn vaak gemakkelijker te importeren en exporteren naar/vanuit andere toepassingen. - + FreeCAD offers you several tools to convert between Mesh and Part objects. - FreeCAD offers you several tools to convert between Mesh and Part objects. + FreeCAD biedt u verschillende gereedschappen om te converteren tussen Mesh en Part objecten. - + Work with Meshes - Work with Meshes + Werk met meshes - + The complete workbench De complete werkbank - + FreeCAD Complete workbench - FreeCAD standaard werkbank + FreeCAD Complete workbench - + file size: bestandsgrootte: - + creation time: creatietijd: - + last modified: Laatst gewijzigd op: - + populated with some of the most commonly used tools. gevuld met enkele van de meest gebruikte gereedschappen. - + Latest videos - Latest videos + Laatste video's - + Latest news - Latest news + Laatste nieuws - + On the web - On the web + Op het web - + This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. - This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. + Dit is de FreeCAD Homepage. Hier zult u veel informatie over FreeCAD kunnen vinden, met inbegrip van tutorials, voorbeelden en documentatie voor de gebruiker. - + location: - location: + locatie: - + User manual - User manual + Gebruikershandleiding - + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc - + Python resources - Python resources + Python bronnen - + File not found Bestand niet gevonden - + from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> - from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> + van <a href=http://twitter.com/FreeCADNews>@FreeCAD-Nieuws</a> - + The FreeCAD-tutorial blog - The FreeCAD-tutorial blog + De FreeCAD-tutorial blog - + from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> - from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> + van <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCAD-Nieuws kanaal</a> - + This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. - This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. + Dit is de officiële gebruikershandleiding van FreeCAD, gecreëerd, beheerd en vertaald door de FreeCAD-gemeenschap. - + The tutorials section on the FreeCAD website - The tutorials section on the FreeCAD website + De tutorials sectie van de FreeCAD website - + The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. - The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. + De sectie van de FreeCAD website gewijd aan Python scripten, met voorbeelden, uitleg en API-kommando's. - + A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community - A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community + Een blog gewijd aan het leren van FreeCAD, beheerd door leden van de FreeCAD gemeenschap diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_no.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_no.qm index e920714c2..f8088152c 100644 Binary files a/src/Mod/Start/Gui/Resources/translations/StartPage_no.qm and b/src/Mod/Start/Gui/Resources/translations/StartPage_no.qm differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_no.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_no.ts index 9b24bb94a..c00c07277 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_no.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_no.ts @@ -3,245 +3,245 @@ StartPage - - - FreeCAD Start Center - FreeCAD Start Center - - - - Start a new project - Start a new project - - - - Recent Files - Recent Files - - - - Tutorials - Tutorials - - - - FreeCAD Homepage - FreeCAD Homepage - - - - Example projects - Example projects - - - - Schenkel STEP file - Schenkel STEP file - - - - Load a PartDesign example - Load a PartDesign example - - - - Load a Drawing extraction - Load a Drawing extraction - - - - Load a Robot simulation example - Load a Robot simulation example - - - - Projects from the Web - Projects from the Web - + FreeCAD Start Center + FreeCAD Startsenter + + + + Start a new project + Starte et nytt prosjekt + + + + Recent Files + Nylig brukte filer + + + + Tutorials + Guider + + + + FreeCAD Homepage + FreeCAD Hjemmeside + + + + Example projects + Eksempel Prosjekter + + + + Schenkel STEP file + Schenkel STEP fil + + + + Load a PartDesign example + Laste inn en PartDesign-eksempel + + + + Load a Drawing extraction + Laste inn en tegning utvinning + + + + Load a Robot simulation example + Last inn en Robot simulering-eksempel + + + + Projects from the Web + Prosjekter fra weben + + + Schenkel STEP Schenkel STEP - + Complex Part - Complex Part + Kompleks del - + Close this window after opening or creating a file - Close this window after opening or creating a file + Lukk dette vinduet etter åpning eller oppretting av en fil - + Don't show me this window again next time - Don't show me this window again next time + Ikke Vis meg dette vinduet på nytt neste gang - + Designing parts - Designing parts + Utforme deler - + The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. - The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. + <b>Del Design</b> arbeidsbenken er utformet for å opprette komplekse elementer basert på begrensede 2D skisser. Du kan bruke den til å tegne 2D-figurer, begrense noen av deres elementer og Ekstruder dem for å danne 3D elemeter. - + Example workflow - Example workflow + Eksempel arbeidsflyt - + Part Design Komponentdesign - + Designing architectural elements - Designing architectural elements + Utforme arkitektoniske elementer - + The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. - The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. + <b>Arkitektonisk utforming</b>-workbench er spesialdesignet for å arbeide med arkitektoniske elementer, for eksempel vegger eller Vinduer. Start med å tegne 2D-former, og bruke dem som støttelinjer til å bygge arkitektoniske objekter. - + Architectual Design Architectual Design - + Working with Meshes - Working with Meshes + Arbeide med Mesh - + The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. - The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. + <b>Mesh Workbench</b> brukes til å arbeide med Mesh-objekter. Mesh er enklere 3D-objekter enn Part objekter, men de er ofte enklere å importere og eksportere til og fra andre programmer. - + FreeCAD offers you several tools to convert between Mesh and Part objects. - FreeCAD offers you several tools to convert between Mesh and Part objects. + FreeCAD tilbyr flere verktøy for å konvertere mellom Mesh og Part objekter. - + Work with Meshes - Work with Meshes + Arbeide med Mesh - + The complete workbench - The complete workbench + Fullstendig arbeidsbenk - + FreeCAD Complete workbench FreeCAD Complete workbench - + file size: - file size: + filstørrelse: - + creation time: - creation time: + Opprettelsestidspunkt: - + last modified: - last modified: + sist endret den: - + populated with some of the most commonly used tools. - populated with some of the most commonly used tools. + fylt ut med noen av de mest brukte verktøyene. - + Latest videos - Latest videos + Nyeste videoer - + Latest news - Latest news + Siste nyheter - + On the web - On the web + På nettet - + This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. - This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. + Dette er FreeCADs hjemmeside. Her vil du kunne finne mye informasjon om FreeCAD, inkludert guider, eksempler og brukerdokumentasjon. - + location: - location: + plassering: - + User manual - User manual + Brukemanual - + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc - + Python resources - Python resources + Pythonressurser - + File not found Fant ikke filen - + from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> - + The FreeCAD-tutorial blog The FreeCAD-tutorial blog - + from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> - + This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. - This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. + Dette er den offisielle brukerhåndboken for FreeCAD, bygget, vedlikeholdes og oversatt av FreeCAD samfunnet. - + The tutorials section on the FreeCAD website - The tutorials section on the FreeCAD website + Opplæringsdelen av FreeCAD nettsiden - + The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. - + A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community - A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community + En blogg dedikert til undervisning i FreeCAD, vedlikeholdt av medlemmer av fellesskapet FreeCAD diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_pl.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_pl.qm index 5e35f5b0a..5c7069c9f 100644 Binary files a/src/Mod/Start/Gui/Resources/translations/StartPage_pl.qm and b/src/Mod/Start/Gui/Resources/translations/StartPage_pl.qm differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_pl.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_pl.ts index 00d0e9e4c..18cbc3493 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_pl.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_pl.ts @@ -4,242 +4,242 @@ StartPage - + FreeCAD Start Center Strona Startowa FreeCAD - + Start a new project Utwórz nowy projekt - + Recent Files Niedawno używane pliki - + Tutorials Samouczki - + FreeCAD Homepage Strona główna FreeCAD - + Example projects Przykładowe projekty - + Schenkel STEP file Plik STEP Nogi - + Load a PartDesign example Załaduj przykład Tworzenia Części - + Load a Drawing extraction Załaduj przykład tworzenia Rysunku - + Load a Robot simulation example Załaduj przykład symulacji Robota - + Projects from the Web Projekty z Sieci - + Schenkel STEP Noga STEP - + Complex Part Skomplikowana Część - + Close this window after opening or creating a file Zamknij to okno po otwarciu lub utworzeniu pliku - + Don't show me this window again next time Nie pokazuj mi tego okna ponownie następnym razem - + Designing parts Projektowanie części - + The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. - The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. + Workbench <b>Projektuj Część</b> przeznaczony jest do tworzenia skomplikowanych części i oparty jest na szkicowaniu w 2D. Użyj go do rysowania kształtów w 2D, wyodrębniaj niektóre z ich elementów i wrzucaj je do formowanej w 3D części. - + Example workflow Przykład przepływu pracy - + Part Design - Part Design + Projektowanie części - + Designing architectural elements Projektowanie elementów architektonicznych - + The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. Moduł <b>Projektowanie Architektoniczne</b> jest specjalnie przeznaczony do pracy z elementami architektonicznymi, takimi jak ściany lub okna. Rysowanie zaczyna się od kształtów 2D i używa się ich jako linii pomocniczych do konstruowania obiektów architektonicznych. - + Architectual Design Projektowanie Architektoniczne - + Working with Meshes Praca z Siatkami - + The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. Mesh Workbench używany jest to pracy z siatkowymi.Siatki są to prostsze Części, ale są one często łatwiejsze do importowania i eksportowania do/z innych programów. - + FreeCAD offers you several tools to convert between Mesh and Part objects. FreeCAD oferuje kilka narzędzi do konwersji pomiędzy Siatką i Częścią - + Work with Meshes Praca z Siatkami - + The complete workbench Kompletne środowisko - + FreeCAD Complete workbench - Domyślne środowisko FreeCADa + FreeCAD Kompletny obszar roboczy - + file size: rozmiar pliku: - + creation time: czas utworzenia: - + last modified: ostatnia modyfikacja: - + populated with some of the most commonly used tools. wypełnione niektórymi z najczęściej używanych narzędzi. - + Latest videos Najnowsze wideo - + Latest news Najnowsze informacje - + On the web W sieci WWW - + This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. To jest strona główna FreeCADa. W tym miejscu będzie można znaleźć wiele informacji na temat FreeCAD, w tym samouczki, przykłady i dokumentację użytkownika. - + location: - location: + Lokalizacja: - + User manual Podręcznik użytkownika - + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc - + Python resources Zasoby Python'a - + File not found Nie znaleziono pliku - + from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> - from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> + from <a href=http://twitter.com/FreeCADNews> @ FreeCADNews</a> - + The FreeCAD-tutorial blog Blog - samouczek FreeCADa. - + from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> - from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> + from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee> FreeCADNews Channel</a> - + This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. - This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. + To jest oficjalna instrukcja użytkownika FreeCAD, stworzona, utrzymywana i przetłumaczona przez społeczność FreeCAD. - + The tutorials section on the FreeCAD website Sekcja samouczków na stronie FreeCAD - + The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. - The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. + Dział witryny internetowej FreeCAD-a poświęcony skryptom Pythona, z przykładami, wyjaśnieniami i poleceniami interfejsu API. - + A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community Blog poświęcony szkoleniu FreeCAD, prowadzony przez członków społeczności FreeCAD. diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_pt.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_pt-BR.qm similarity index 80% rename from src/Mod/Start/Gui/Resources/translations/StartPage_pt.qm rename to src/Mod/Start/Gui/Resources/translations/StartPage_pt-BR.qm index 3f1299c58..783faa2d2 100644 Binary files a/src/Mod/Start/Gui/Resources/translations/StartPage_pt.qm and b/src/Mod/Start/Gui/Resources/translations/StartPage_pt-BR.qm differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_pt.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_pt-BR.ts similarity index 93% rename from src/Mod/Start/Gui/Resources/translations/StartPage_pt.ts rename to src/Mod/Start/Gui/Resources/translations/StartPage_pt-BR.ts index 120f70482..22d6592fc 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_pt.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_pt-BR.ts @@ -4,242 +4,242 @@ StartPage - + FreeCAD Start Center Centro de início do FreeCAD - + Start a new project Iniciar um novo projeto - + Recent Files Arquivos Recentes - + Tutorials Tutoriais - + FreeCAD Homepage Homepage do FreeCAD - + Example projects Exemplos de projetos - + Schenkel STEP file Arquivo STEP braço - + Load a PartDesign example Carregar um exemplo de design de peça - + Load a Drawing extraction Carregar uma extração de desenho - + Load a Robot simulation example Carregar um exemplo simulação de um Robô - + Projects from the Web Projetos da Web - + Schenkel STEP Braço STEP - + Complex Part Peça complexa - + Close this window after opening or creating a file Fechar esta janela depois de abrir ou criar um arquivo - + Don't show me this window again next time Não mostrar esta janela novamente - + Designing parts Projetar peças - + The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. A bancada de <b>Design de peças</b> é projetada para criar peças complexas baseadas em esboços 2D com restriçoes. Use-a para desenhar formas em 2D, restringir alguns de seus elementos e extruda-las para formar peças em 3D. - + Example workflow Exemplo de fluxo de trabalho - + Part Design Design de peças - + Designing architectural elements Projetando elementos arquitectónicos - + The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. A bancada de <b>Projeto Arquitetônico</b> é especialmente projetada para trabalhar com elementos arquitetônicos, tais como paredes ou janelas. Comece por desenhar formas em 2D, e use-las como guias para construir objetos arquitetônicos. - + Architectual Design Design arquitectónico - + Working with Meshes Trabalhando com malhas - + The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. A <b>bancada de malha</b> é usada para trabalhar com objetos Malha. Malhas são objetos 3D mais simples que objetos parte, mas são muitas vezes mais fácil de importar e exportar de ou para outras aplicações. - + FreeCAD offers you several tools to convert between Mesh and Part objects. FreeCAD oferece várias ferramentas para a conversão entre objetos de malha e peça. - + Work with Meshes Trabalhar com malhas - + The complete workbench A bancada completa - + FreeCAD Complete workbench - Bancada padrão do FreeCAD + Bancada completa do FreeCAD - + file size: tamanho do arquivo: - + creation time: data de criação: - + last modified: última modificação: - + populated with some of the most commonly used tools. preenchida com algumas das ferramentas mais usadas. - + Latest videos Vídeos mais recentes - + Latest news Últimas notícias - + On the web Na web - + This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. Esta é a Homepage do FreeCAD. Aqui você encontrará um monte de informações sobre o FreeCAD, incluindo tutoriais, exemplos e documentação para o usuário. - + location: localização: - + User manual Manual do usuário - + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc - + Python resources Recursos de Python - + File not found Arquivo não encontrado - + from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> de <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> - + The FreeCAD-tutorial blog O blog FreeCAD-tutorial - + from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> do <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>canal FreeCADNews</a> - + This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. Este é o manual do usuário oficial do FreeCAD, construído, mantido e traduzido pela comunidade do FreeCAD. - + The tutorials section on the FreeCAD website A seção de tutoriais no site do FreeCAD - + The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. A seção do site do FreeCAD dedicada ao script python, com exemplos, explicações e comandos da API. - + A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community Um blog dedicado ao ensino do FreeCAD, mantido por membros da comunidade FreeCAD diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_ro.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_ro.qm new file mode 100644 index 000000000..eb616e9c1 Binary files /dev/null and b/src/Mod/Start/Gui/Resources/translations/StartPage_ro.qm differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_ro.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_ro.ts new file mode 100644 index 000000000..7e280bc1f --- /dev/null +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_ro.ts @@ -0,0 +1,247 @@ + + + + + StartPage + + + FreeCAD Start Center + Centrul de Start FreeCAD + + + + Start a new project + Începe un nou proiect + + + + Recent Files + Fişiere recente + + + + Tutorials + Tutoriale + + + + FreeCAD Homepage + Pagina oficială FreeCAD + + + + Example projects + Exemple de proiecte + + + + Schenkel STEP file + Fişier Schenkel STEP + + + + Load a PartDesign example + Încărcaţi un exemplu pentru Design Componente + + + + Load a Drawing extraction + Load a Drawing extraction + + + + Load a Robot simulation example + Încărcaţi un exemplu de simulare Robot + + + + Projects from the Web + Proiectele de pe Web + + + + Schenkel STEP + Schenkel STEP + + + + Complex Part + Componente complexe + + + + Close this window after opening or creating a file + Închideţi această fereastră după deschiderea sau crearea unui fişier + + + + Don't show me this window again next time + Nu-mi mai arăta această fereastră din nou data viitoare + + + + Designing parts + Proiectare componente + + + + The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. + Bancul de lucru <b>Design componente</b> este conceput pentru a crea piese complexe bazate pe schiţe şi constrângeri 2D. Se poate utiliza pentru a desena forme 2D, se pot aplica constrângeri şi mai apoi extruda unele elemente 2D pentru a obţine forme 3D. + + + + Example workflow + Exemplu de flux de lucru + + + + Part Design + Design componente + + + + Designing architectural elements + Proiectarea elementelor arhitecturale + + + + The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. + Bancul de lucru <b>Design arhitectural</b> este special conceput pentru a lucra cu elemente arhitecturale, cum ar fi pereţi sau ferestre. Se poate utiliza pentru a desena forme 2D care pot fi folosite apoi ca şi ghidaje pentru a construi obiecte arhitecturale. + + + + Architectual Design + Design arhitectural + + + + Working with Meshes + Working with Meshes + + + + The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. + The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. + + + + FreeCAD offers you several tools to convert between Mesh and Part objects. + FreeCAD offers you several tools to convert between Mesh and Part objects. + + + + Work with Meshes + Work with Meshes + + + + The complete workbench + Bancul de lucru complet + + + + FreeCAD Complete workbench + Bancul de lucru Complet al FreeCAD + + + + file size: + dimensiune fişier: + + + + creation time: + ora creării: + + + + last modified: + ultima modificare: + + + + populated with some of the most commonly used tools. + populată cu unele dintre instrumentele cele mai frecvent utilizate. + + + + Latest videos + Ultimele videoclipuri + + + + Latest news + Ultimele ştiri + + + + On the web + Pe web + + + + This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. + Acest este pagina oficială FreeCAD. Aici puteţi găsi o mulţime de informaţii despre FreeCAD, inclusiv tutoriale, exemple şi documentaţie pentru utilizatori. + + + + location: + locaţie: + + + + User manual + Manual de utilizare + + + + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc + + + + Python resources + Resurse Python + + + + File not found + Fișier nu a fost găsit + + + + from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> + de la <a href=http://twitter.com/FreeCADNews> @FreeCADNews</a> + + + + The FreeCAD-tutorial blog + Blog-ul FreeCAD-tutorial + + + + from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> + de la <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee> canal FreeCADNews</a> + + + + This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. + Acesta este manualul de utilizare FreeCAD oficial, construit, menţinut şi tradus de comunitatea FreeCAD. + + + + The tutorials section on the FreeCAD website + Secţiunea de tutoriale pe site-ul FreeCAD + + + + The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. + Secţiunea site-ului FreeCAD dedicată pentru scripting Python, cu exemple, explicaţii şi comenzi API. + + + + A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community + Un blog dedicat FreeCAD, întreţinut de către membrii comunităţii FreeCAD + + + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_ru.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_ru.qm index fc8b49b01..851c83fc8 100644 Binary files a/src/Mod/Start/Gui/Resources/translations/StartPage_ru.qm and b/src/Mod/Start/Gui/Resources/translations/StartPage_ru.qm differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_ru.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_ru.ts index dda7c4891..28a65fb56 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_ru.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_ru.ts @@ -4,244 +4,244 @@ StartPage - + FreeCAD Start Center Центр запуска FreeCAD - + Start a new project Начать новый проект - + Recent Files Последние файлы - + Tutorials Учебники - + FreeCAD Homepage Домашняя страница FreeCAD - + Example projects Примеры проектов - + Schenkel STEP file Файл Шенкеля STEP - + Load a PartDesign example Загрузить пример СозданиеДеталь - + Load a Drawing extraction Загрузить экстракцию Рисунка - + Load a Robot simulation example Загрузить пример моделирования роботов - + Projects from the Web Проекты из Интернета - + Schenkel STEP Шенкель STEP - + Complex Part Сложная часть - + Close this window after opening or creating a file Закрыть это окно после открытия или создания файла - + Don't show me this window again next time Не показывать это окно в следующий раз - + Designing parts Проектирование деталей - + The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. - The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. + Рабочее окружение <b>Моделирование деталей</b> разработано для создания сложных элементов на основе 2D эскизов. Используйте это окружение для создания 2D контуров, накладывайте на некоторые из элементов контура геометрические ограничения и выдавливайте контур, придавая фигуре объём. - + Example workflow Пример рабочего процесса - + Part Design - Дизайн части + Проектирование детали - + Designing architectural elements Проектирование архитектурных элементов - + The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. - The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. + Рабочая среда <b>Архитектурный дизайн</b> разработана специально для работы с архитектурными элементами типа окон или стен. Начните с построения 2D фигур и используйте их как основу для создания объектов архитектуры. - + Architectual Design Архитектурный дизайн - + Working with Meshes Работа с Сетками - + The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. - The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. + <b>Mesh Workbench</b> используется для работы с сетями. Сети проще чем объекты типа Часть, но они зачастую проще для обмена с другими приложениями. - + FreeCAD offers you several tools to convert between Mesh and Part objects. FreeCAD предлагает несколько инструментов для преобразования между объектами типа Mesh и Part. - + Work with Meshes Работа с сетями - + The complete workbench Полное рабочее место - + FreeCAD Complete workbench - Инструментарий FreeCAD по умолчанию + FreeCAD полное рабочее пространство - + file size: - размер файла: + Размер файла: - + creation time: время создания: - + last modified: последнее изменение: - + populated with some of the most commonly used tools. заполняются некоторыми из наиболее часто используемых инструментов. - + Latest videos - Latest videos + Недавние видеоролики - + Latest news - Latest news + Последние новости - + On the web - On the web + В Интернете - + This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. - This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. + Это домашняя страница FreeCAD. Здесь вы сможете найти информацию относительно FreeCAD, включая уроки, примеры и документацию пользователя. - + location: - location: + Расположение: - + User manual - User manual + Руководство пользователя - + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc - http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc/ru - + Python resources - Python resources + Ресурсы по языку Python - + File not found Файл не найден - + from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> - from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> + от <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> - + The FreeCAD-tutorial blog - The FreeCAD-tutorial blog + FreeCAD учебник блог - + from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> - from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> + из <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>канала FreeCADNews</a> - + This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. - This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. + Это официальное руководство пользователя FreeCAD созданное, поддерживаемое и переведенное сообществом FreeCAD. - + The tutorials section on the FreeCAD website - The tutorials section on the FreeCAD website + Раздел обучения на веб-сайте FreeCAD - + The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. - The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. + Раздел веб-сайта FreeCad посвящённый, созданию скриптов на python, с примерами, объясненими и командами API. - + A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community - A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community + Блог, посвященный обучению FreeCAD, поддерживается членами сообщества FreeCAD diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_se.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_se.qm deleted file mode 100644 index af6a58a2b..000000000 Binary files a/src/Mod/Start/Gui/Resources/translations/StartPage_se.qm and /dev/null differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_sk.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_sk.qm new file mode 100644 index 000000000..ebeabaf1b Binary files /dev/null and b/src/Mod/Start/Gui/Resources/translations/StartPage_sk.qm differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_sk.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_sk.ts new file mode 100644 index 000000000..c4f117d83 --- /dev/null +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_sk.ts @@ -0,0 +1,247 @@ + + + + + StartPage + + + FreeCAD Start Center + FreeCAD Štart Centrum + + + + Start a new project + Spustenie nového projektu + + + + Recent Files + Posledné súbory + + + + Tutorials + Výukové programy + + + + FreeCAD Homepage + Úvodná stránka FreeCAD + + + + Example projects + Ukážkové projekty + + + + Schenkel STEP file + Schenkel STEP súbor + + + + Load a PartDesign example + Načítať príklad čiastočného návrhu + + + + Load a Drawing extraction + Načítať časť výkresu + + + + Load a Robot simulation example + Načítať príklad simulácie Robotom + + + + Projects from the Web + Projekty z webu + + + + Schenkel STEP + Schenkel STEP + + + + Complex Part + Zložitá časť + + + + Close this window after opening or creating a file + Zavrieť okno po otvorení alebo vytvorení súboru + + + + Don't show me this window again next time + Nezobrazovať toto okno znova nabudúce + + + + Designing parts + Navrhovanie častí + + + + The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. + <b>Part Design</b> workbench je určený na tvorbu komplexných častí založených na obmedzených 2D náčrtoch. Použi na kreslenie 2D tvarov, obmedziť niektoré z ich prvkov a pretlačením vytvoriť 3D prvky. + + + + Example workflow + Príklad pracovného toku + + + + Part Design + Časť návrhu + + + + Designing architectural elements + Navrhovanie architektonických prvkov + + + + The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. + <b>Architectural Design</b> workbench je špeciálne navrhnutý na prácu s architektonickými prvkami ako steny alebo okná. Začnite kreslenim 2D tvarov a použite ich ako na pomoc pri tvorbe architektonických objektov. + + + + Architectual Design + Architektonický návrh + + + + Working with Meshes + Práca so sieťami + + + + The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. + <b>Mesh Workbench</b> sa používa na prácu so sieťami. Siete sú zjednoduchšené 3D objekty ako časťi objektov, ale sú často jednoduchšie importovatelné a exportovatelné z / do iných aplikácií. + + + + FreeCAD offers you several tools to convert between Mesh and Part objects. + FreeCAD ponúka niekoľko nástrojov na konverziu medzi sieťami a časťami objektov. + + + + Work with Meshes + Práca so sieťami + + + + The complete workbench + Kompletný workbench + + + + FreeCAD Complete workbench + FreeCAD Complete workbench + + + + file size: + veľkosť súboru: + + + + creation time: + čas vytvorenia: + + + + last modified: + naposledy upravené: + + + + populated with some of the most commonly used tools. + obývaný s niektorými z najčastejšie používaných nástrojov. + + + + Latest videos + Najnovšie videá + + + + Latest news + Najnovšie správy + + + + On the web + Na webe + + + + This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. + Toto je domovská stránka FreeCAD. Tu môžete nájsť veľa informácií o FreeCAD, vrátane tutoriálov, príkladov a užívateľskej dokumentácie. + + + + location: + umiestnenie: + + + + User manual + Užívateľská príručka + + + + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc + + + + Python resources + Python zdroje + + + + File not found + Súbor sa nenašiel + + + + from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> + z <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> + + + + The FreeCAD-tutorial blog + Blog FreeCAD-tutoriálu + + + + from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> + z <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee> FreeCADNews</a> + + + + This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. + Toto je oficiálna užívateľská príručka FreeCAD, vytvorená, udržiavaná a preložená spoločenstvom FreeCAD. + + + + The tutorials section on the FreeCAD website + Návody na FreeCAD web stránke + + + + The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. + Časti webovej stránky FreeCAd venované dto skryptovaniu python s príkladmi, vysvetleniami a API príkazmi. + + + + A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community + Blog venovaný výučbe FreeCAD spravovaný členmi spoločenstva FreeCAD + + + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_sv-SE.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_sv-SE.qm new file mode 100644 index 000000000..f6af9302e Binary files /dev/null and b/src/Mod/Start/Gui/Resources/translations/StartPage_sv-SE.qm differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_se.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_sv-SE.ts similarity index 83% rename from src/Mod/Start/Gui/Resources/translations/StartPage_se.ts rename to src/Mod/Start/Gui/Resources/translations/StartPage_sv-SE.ts index 32a4cc2a8..05e8134aa 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_se.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_sv-SE.ts @@ -4,244 +4,244 @@ StartPage - + FreeCAD Start Center FreeCAD Start Center - + Start a new project Starta ett nytt projekt - + Recent Files Senaste filer - + Tutorials Övningar - + FreeCAD Homepage FreeCAD's Hemsida - + Example projects Exempelprojekt - + Schenkel STEP file Schenkel STEP-fil - + Load a PartDesign example Ladda ett DelDesign exempel - + Load a Drawing extraction Ladda en ritningsextraktion - + Load a Robot simulation example Ladda ett robotsimuleringsexempel - + Projects from the Web Projekt från webben - + Schenkel STEP Schenkel STEP - + Complex Part Komplexa delar - + Close this window after opening or creating a file Stäng detta fönster efter att ha öppnat eller skapat en fil - + Don't show me this window again next time Visa inte detta fönster nästa gång - + Designing parts Designa delar - + The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. <b>Del Design</b> arbetsbänken är utformad för att skapa komplexa delar baserad på begränsade 2D-skisser. Använd den för att rita 2D-former, begränsa några av deras element och extrudera dem för att bilda 3D-delar. - + Example workflow Exempel på arbetsflöde - + Part Design Del Design - + Designing architectural elements Designa arkitektoniska element - + The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. <b>ArkitekturDesign</b> arbetsbänken är speciellt utformad för att arbeta med arkitektoniska element såsom väggar eller fönster. Börja med att rita 2D-former, och använd dem som guider för att bygga arkitektoniska objekt. - + Architectual Design Arkitektur Design - + Working with Meshes Arbeta med Nät - + The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. <b>Nät arbetsbänken</b> används för att arbeta med Nätobjekt. Nät är enklare 3D-objekt än del objekt, men de är ofta lättare att importera och exportera till / från andra program. - + FreeCAD offers you several tools to convert between Mesh and Part objects. FreeCAD erbjuder dig flera verktyg för att konvertera mellan nät och del objekt. - + Work with Meshes Arbeta med Nät - + The complete workbench Den kompletta arbetsbänken - + FreeCAD Complete workbench - FreeCAD standard arbetsbänk + FreeCAD Complete workbench - + file size: filstorlek: - + creation time: skapad tid: - + last modified: Senast uppdaterad: - + populated with some of the most commonly used tools. befolkade med några av de vanligaste verktygen. - + Latest videos - Latest videos + Senaste videor - + Latest news - Latest news + Senaste nyheterna - + On the web - On the web + På webben - + This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. - This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. + Detta är FreeCAD hemsida. Här kommer du att kunna hitta en hel del information om FreeCAD, inklusive självstudiekurser, exempel och användardokumentation. - + location: - location: + plats: - + User manual - User manual + Användarmanual - + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc - + Python resources - Python resources + Python resurser - + File not found Fil ej funnen - + from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> - + The FreeCAD-tutorial blog - The FreeCAD-tutorial blog + FreeCADs övningsblogg - + from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> - + This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. - This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. + Detta är den officiella användarmanualen för FreeCAD, byggd, underhålld och översatt av FreeCAD-gemenskapen. - + The tutorials section on the FreeCAD website - The tutorials section on the FreeCAD website + Handledningsavsnittet på FreeCADs webbplats - + The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. - The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. + Sektionen i FreeCAD-webbplatsen som ägnas åt pythonskript, med exempel, förklaringar och API-kommandon. - + A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community - A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community + En Blogg dedikerad till undervisning i FreeCAD, som underhålls av medlemmarna av FreeCAD-gemenskapen diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_tr.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_tr.qm new file mode 100644 index 000000000..ff0d3b386 Binary files /dev/null and b/src/Mod/Start/Gui/Resources/translations/StartPage_tr.qm differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_tr.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_tr.ts new file mode 100644 index 000000000..64cfe37e9 --- /dev/null +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_tr.ts @@ -0,0 +1,247 @@ + + + + + StartPage + + + FreeCAD Start Center + FreeCAD Başlangıç Merkezi + + + + Start a new project + Yeni bir projeye başla + + + + Recent Files + Son kullanılan dosyalar + + + + Tutorials + Öğreticiler + + + + FreeCAD Homepage + FreeCAD Ana sayfa + + + + Example projects + Örnek projeler + + + + Schenkel STEP file + Schenkel STEP dosyası + + + + Load a PartDesign example + ParçacıkTasarım örneği yükle + + + + Load a Drawing extraction + Bir Çizim çıkarma Yükle + + + + Load a Robot simulation example + Bir Robot benzetim (similasyon) örneği yükle + + + + Projects from the Web + Web'den projeler + + + + Schenkel STEP + Schenkel STEP + + + + Complex Part + Karmaşık Parçacık + + + + Close this window after opening or creating a file + Bir dosya açtığınızda veya yaratığınızda bu pencereyi kapatın + + + + Don't show me this window again next time + Yeniden başlattığınızda bu pencereyi gösterme + + + + Designing parts + Parça tasarımı + + + + The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. + <b>Bölüm tasarım</b> tezgahı, kısıtlara dayalı karmaşık parçaları, 2 boyutlu çizimler halinde oluşturmak için tasarlanmıştır. 2 boyutlu şekiller çizmek, onların öğelerine çeşitli kısıtlar koymak ve onları 3 boyutlu parçalar oluşturacak hale getirmek için kullanılmalıdır. + + + + Example workflow + Örnek iş akışı + + + + Part Design + Parça Tasarımı + + + + Designing architectural elements + Mimari elemanların tasarımı + + + + The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. + <b>Mimari Tasarım</b> tezgahı, duvar ya da pencere gibi mimari elemanlar ile çalışmak için özel olarak tasarlanmıştır. 2B şekilleri çizmeye başlayın ve bunları mimari nesnelerin klavuzlarını oluşturmak için kullanabilirsiniz. + + + + Architectual Design + Mimari Tasarım + + + + Working with Meshes + Kafesler ile çalışma + + + + The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. + <b>Kafes tezgahı</b> kafes nesneleri ile çalışmak için kullanılır. Kafesler; Parçacık nesnelerinden daha basit 3D nesneleri olmakla birlikte, çoğu zaman diğer uygulamalardan transfer etmek veya göndermek için tercih edilir. + + + + FreeCAD offers you several tools to convert between Mesh and Part objects. + FreeCAD size Kafes ve Parçacık nesneleri arasında dönüşümü sağlayan birkaç araç sunar. + + + + Work with Meshes + Kafesler ile çalışmak + + + + The complete workbench + Tam bir tezgah + + + + FreeCAD Complete workbench + FreeCAD Complete workbench + + + + file size: + dosya boyutu: + + + + creation time: + Oluşturma zamanı: + + + + last modified: + son güncelleme: + + + + populated with some of the most commonly used tools. + en sık kullanılan araçlardan bazıları ile doldurulmuş + + + + Latest videos + Son eklenen videolar + + + + Latest news + Son Haberler + + + + On the web + Web üzerinde + + + + This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. + Burası FreeCAD'in ana sayfasıdır. Buradan FreeCAD hakkında bir sürü bilgiye, özel derslere, örneklere ve kullanım kılavuzuna ulaşabilirsiniz. + + + + location: + Konum: + + + + User manual + Kullanım Kılavuzu + + + + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc + + + + Python resources + Python kaynakları + + + + File not found + File not found + + + + from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> + <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a>'den + + + + The FreeCAD-tutorial blog + FreeCAD-özel dersler güncesi + + + + from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> + <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a>'dan + + + + This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. + Bu belge FreeCAD topluluğu tarafından yazılmış, desteklenmiş ve çevirilmiş FreeCAD'in resmi kullanıcı kılavuzudur. + + + + The tutorials section on the FreeCAD website + FreeCAD web sayfasındaki özel dersler bölümü + + + + The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. + FreeCAD sayfasının bu bölümü örnekli, anlatımlı, sözdizimleri açıklanmış python betikleri içindir. + + + + A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community + FreeCAD öğretmeye adanmış FreeCAD topluluğunun üyeleri tarafından yazılan bir günlük + + + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_uk.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_uk.qm index 5ac3d9b66..5a6dd044c 100644 Binary files a/src/Mod/Start/Gui/Resources/translations/StartPage_uk.qm and b/src/Mod/Start/Gui/Resources/translations/StartPage_uk.qm differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_uk.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_uk.ts index 7ae42e6e1..2ec7fe6c6 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_uk.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_uk.ts @@ -3,245 +3,245 @@ StartPage - - - FreeCAD Start Center - FreeCAD Start Center - - - - Start a new project - Start a new project - - - - Recent Files - Recent Files - - - - Tutorials - Tutorials - - - - FreeCAD Homepage - FreeCAD Homepage - - - - Example projects - Example projects - - - - Schenkel STEP file - Schenkel STEP file - - - - Load a PartDesign example - Load a PartDesign example - - - - Load a Drawing extraction - Load a Drawing extraction - - - - Load a Robot simulation example - Load a Robot simulation example - - - - Projects from the Web - Projects from the Web - + FreeCAD Start Center + Центр початку роботи з FreeCAD + + + + Start a new project + Почати новий проект + + + + Recent Files + Недавні файли + + + + Tutorials + Посібники + + + + FreeCAD Homepage + Домашня сторінка FreeCAD + + + + Example projects + Приклади проектів + + + + Schenkel STEP file + файл Schenkel STEP + + + + Load a PartDesign example + Завантажити приклад Розробки деталі + + + + Load a Drawing extraction + Завантажити видобуте креслення + + + + Load a Robot simulation example + Завантажити приклад моделювання Робота + + + + Projects from the Web + Проекти з Інтернету + + + Schenkel STEP Schenkel STEP - + Complex Part - Complex Part + Складна деталь - + Close this window after opening or creating a file - Close this window after opening or creating a file + Закрити це вікно після відкриття або створення файлу - + Don't show me this window again next time - Don't show me this window again next time + Не показувати це вікно наступного разу - + Designing parts - Designing parts + Проектування деталей - + The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. - The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. + Робочий простір <b>Розробка деталі</b> призначений для створення комплексної деталі, що базується на простих 2D-ескізах. Використовуйте його для малювання 2D-форм, обмежуючи деякі їхні елементи та "видавлюйте" їх у тривимірні деталі. - + Example workflow - Example workflow + Приклад робочого процесу - + Part Design Дизайн частини - - - Designing architectural elements - Designing architectural elements - - - - The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. - The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. - - - - Architectual Design - Architectual Design - - - - Working with Meshes - Working with Meshes - - - - The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. - The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. - - - - FreeCAD offers you several tools to convert between Mesh and Part objects. - FreeCAD offers you several tools to convert between Mesh and Part objects. - - - - Work with Meshes - Work with Meshes - - - - The complete workbench - The complete workbench - - - - FreeCAD Complete workbench - FreeCAD Complete workbench - - - - file size: - file size: - - - - creation time: - creation time: - - - - last modified: - last modified: - - - - populated with some of the most commonly used tools. - populated with some of the most commonly used tools. - - - - Latest videos - Latest videos - - - - Latest news - Latest news - - - - On the web - On the web - - - - This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. - This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. - - - - location: - location: - - User manual - User manual + Designing architectural elements + Проектування архітектурних елементів + The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. + Робочий простір <b>Архітектурний дизайн</b> спеціально призначений для роботи з архітектурними елементами, такими як стіни та вікна. Починайте з малювання 2D-форм і використовуйте їх як направляючі для побудови архітектурних об'єктів. + + + + Architectual Design + Архітектурний дизайн + + + + Working with Meshes + Робота із сітками + + + + The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. + Робочій простір <b>Сітка</b> використовується для роботи з об'єктами Сітка. Сітки більш прості 3D-об'єкти ніж об'єкт Деталь, але вони часто виявляються легшими для імпортування та експортування у/з інші програми. + + + + FreeCAD offers you several tools to convert between Mesh and Part objects. + FreeCAD пропонує кілька інструментів для перетворення між об'єктами Сітка та Деталь. + + + + Work with Meshes + Робота з сітками + + + + The complete workbench + Повний робочий простір + + + + FreeCAD Complete workbench + Повний робочий простір FreeCAD + + + + file size: + розмір файлу: + + + + creation time: + час створення: + + + + last modified: + остання зміна: + + + + populated with some of the most commonly used tools. + заповнений інструментами, які використовуються найчастіше. + + + + Latest videos + Останні відео + + + + Latest news + Останні новини + + + + On the web + В Інтернеті + + + + This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. + Це головна сторінка FreeCAD. Тут ви можете знайти багато інформації про FreeCAD, включаючи посібники, приклади та документацію користувача. + + + + location: + розташування: + + + + User manual + Посібник користувача + + + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc - + Python resources - Python resources + Ресурси python - + File not found Файл не знайдено - + from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> - from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> + з <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> - + The FreeCAD-tutorial blog - The FreeCAD-tutorial blog + Блог "Посібник FreeCAD" - + from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> - from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> + з <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>каналу FreeCADNews</a> - + This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. - This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. + Це офіційний посібник користувача FreeCAD, який створений, підтримується та перекладається спільнотою FreeCAD. - + The tutorials section on the FreeCAD website - The tutorials section on the FreeCAD website + Розділ посібників на сайті FreeCAD - + The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. - The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. + Цей розділ веб-сайту FreeCAD призначений для сценаріїв python з прикладами, поясненнями та командами API. - + A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community - A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community + Блог, присвячений навчанню FreeCAD, підтримується членами спільноти FreeCAD diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_zh-CN.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_zh-CN.qm new file mode 100644 index 000000000..dfbfcf0b3 Binary files /dev/null and b/src/Mod/Start/Gui/Resources/translations/StartPage_zh-CN.qm differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_zh.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_zh-CN.ts similarity index 80% rename from src/Mod/Start/Gui/Resources/translations/StartPage_zh.ts rename to src/Mod/Start/Gui/Resources/translations/StartPage_zh-CN.ts index b740960fc..57b519849 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_zh.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_zh-CN.ts @@ -4,244 +4,244 @@ StartPage - + FreeCAD Start Center FreeCAD启动中心 - + Start a new project 启动一个新项目 - + Recent Files 最近打开的文件 - + Tutorials 教程 - + FreeCAD Homepage FreeCAD主页 - + Example projects - 示例项目 + 项目示例 - + Schenkel STEP file Schenkel STEP文件 - + Load a PartDesign example 加载零件设计示例 - + Load a Drawing extraction 加载图纸生成示例 - + Load a Robot simulation example 加载机器人模拟示例 - + Projects from the Web Web网上项目 - + Schenkel STEP Schenkel STEP - + Complex Part 复杂零件 - + Close this window after opening or creating a file 打开或创建文件后关闭此窗口 - + Don't show me this window again next time 下一次不再显示此窗口 - + Designing parts 设计零件 - + The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. <b>零件设计</b>工作台用于创建基于约束2D草图的复杂物件. 用它来绘制2D形状, 约束其中一些元素并拉伸形成三维物件. - + Example workflow 示例工作流程 - + Part Design 零件设计 - + Designing architectural elements 设计建筑元素 - + The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. <b>建筑设计</b>工作台专用于创建建筑元素,如墙或窗. 首先绘制2D形状,并以此为参考创建建筑对象. - + Architectual Design 建筑设计 - + Working with Meshes 使用网格 - + The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. <b>网格工作台</b>用于使用网格对象. 相比零件对象,网格是简化的3D对象,但它们往往更容易从其他应用程序导入/导出. - + FreeCAD offers you several tools to convert between Mesh and Part objects. FreeCAD为您提供了多种工具转换网格和零件对象. - + Work with Meshes 使用网格 - + The complete workbench 完整工作台 - + FreeCAD Complete workbench - FreeCAD默认工作台 + FreeCAD完全工作平台 - + file size: 文件大小: - + creation time: 创建时间: - + last modified: 修改时间: - + populated with some of the most commonly used tools. 提供了一些最常用的工具. - + Latest videos - Latest videos + 最新视频 - + Latest news - Latest news + 最新消息 - + On the web - On the web + 在web上 - + This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. - This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. + 这是FreeCAD主页. 在这里,你能够找到丰富的FreeCAD的信息,包括教程、实例和用户文档. - + location: - location: + 位置: - + User manual - User manual + 用户手册 - + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc - + Python resources - Python resources + Python资源 - + File not found 文件未找到 - + from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> - from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> + 自 <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> - + The FreeCAD-tutorial blog - The FreeCAD-tutorial blog + FreeCAD教学博客 - + from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> - from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> + 来自 <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCAD 信息频道</a> - + This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. - This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. + 这是FreeCAD官方用户手册,由FreeCAD社区建立、维护和翻译。 - + The tutorials section on the FreeCAD website - The tutorials section on the FreeCAD website + FreeCAD网站上的教程部分 - + The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. - The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. + FreeCAD网站上的python脚本部分,包含示例、解释和 API接口. - + A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community - A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community + 致力于教学FreeCAD的博客, 由FreeCAD社区成员维护 diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_zh-TW.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_zh-TW.qm new file mode 100644 index 000000000..12b7fef23 Binary files /dev/null and b/src/Mod/Start/Gui/Resources/translations/StartPage_zh-TW.qm differ diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_zh-TW.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_zh-TW.ts new file mode 100644 index 000000000..0d98eaf13 --- /dev/null +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_zh-TW.ts @@ -0,0 +1,247 @@ + + + + + StartPage + + + FreeCAD Start Center + FreeCAD啟動中心 + + + + Start a new project + 開啟新專案 + + + + Recent Files + 最近一次檔案 + + + + Tutorials + 教學 + + + + FreeCAD Homepage + FreeCAD首頁 + + + + Example projects + 專案範例 + + + + Schenkel STEP file + Schenkel STEP檔 + + + + Load a PartDesign example + 載入零件設計範例 + + + + Load a Drawing extraction + 載入繪圖附加元件 + + + + Load a Robot simulation example + 載入機器人模擬範例 + + + + Projects from the Web + 於網際網路上之專案 + + + + Schenkel STEP + Schenkel STEP + + + + Complex Part + 複雜元件 + + + + Close this window after opening or creating a file + 於開啟或建立檔案後關閉此視窗 + + + + Don't show me this window again next time + 下次不再顯示此視窗 + + + + Designing parts + 設計零件 + + + + The <b>Part Design</b> workbench is designed to create complex pieces based on constrained 2D sketches. Use it to draw 2D shapes, constrain some of their elements and extrude them to form 3D pieces. + <b>零件設計</b>工作平台設計用於藉由2D草圖創造複雜單元。使用其繪製2D圖形及其原件之限制條件,並藉此產生3D物件。 + + + + Example workflow + 工作流程範例 + + + + Part Design + 零件設計 + + + + Designing architectural elements + 設計建築物件 + + + + The <b>Architectural Design</b> workbench is specially designed for working with architectural elements such as walls or windows. Start by drawing 2D shapes, and use them as guides to build architecutral objects. + <b>建築設計</b>工作平台為特別設計用於建築元件之製作,例如牆面或窗戶。由繪製2D圖型開始並使用其建立建築物件。 + + + + Architectual Design + 建築設計 + + + + Working with Meshes + 使用Mesh + + + + The <b>Mesh Workbench</b> is used to work with Mesh objects. Meshes are simpler 3D objects than Part objects, but they are often easier to import and export to/from other applications. + <b>Mesh工作平台</b>用於處理Mesh物件,Mesh為較零件簡單之3D物件,且其通常較為容易匯出至其他軟體或匯入FreeCAD。 + + + + FreeCAD offers you several tools to convert between Mesh and Part objects. + FreeCAD提供您一些轉換Mesh至Part物件之工具。 + + + + Work with Meshes + 以Mesh作業 + + + + The complete workbench + 完整之工作平台 + + + + FreeCAD Complete workbench + FreeCAD完整工作平台 + + + + file size: + 檔案大小: + + + + creation time: + 製作時間: + + + + last modified: + 最後變更: + + + + populated with some of the most commonly used tools. + 置入最常使用之工具。 + + + + Latest videos + 最新影片 + + + + Latest news + 最新消息 + + + + On the web + 於網際網路 + + + + This is the FreeCAD Homepage. Here you will be able to find a lot of information about FreeCAD, including tutorials, examples and user documentation. + 此為FreeCAD首頁,您可於此得到許多有關FreeCAD之訊息,包含教學範例及使用者文件。 + + + + location: + 位置: + + + + User manual + 使用者手冊 + + + + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc + http://sourceforge.net/apps/mediawiki/free-cad/index.php?title=Online_Help_Toc + + + + Python resources + Python來源 + + + + File not found + 找不到檔案 + + + + from <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> + 來自於 <a href=http://twitter.com/FreeCADNews>@FreeCADNews</a> + + + + The FreeCAD-tutorial blog + FreeCAD教學網站 + + + + from <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> + 來自於 <a href=http://www.youtube.com/user/FreeCADNews?feature=mhee>FreeCADNews channel</a> + + + + This is the official user manual of FreeCAD, built, maintained and translated by the FreeCAD community. + 此為FreeCAD官方使用者手冊,由FreeCAD社群建立維護及翻譯。 + + + + The tutorials section on the FreeCAD website + 此教學於FreeCAD網站 + + + + The section of the FreeCAd website dedicate dto python scripting, with examples, explanations, and API commands. + FreeCAD網站上python scripting章節內由範例說明及API註解。 + + + + A blog dedicated to teaching FreeCAD, maintained by members of the FreeCAD community + 由FreeCAD社群成員維護,專門用於FreeCAD教學之網誌 + + + diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_zh.qm b/src/Mod/Start/Gui/Resources/translations/StartPage_zh.qm deleted file mode 100644 index 05b637001..000000000 Binary files a/src/Mod/Start/Gui/Resources/translations/StartPage_zh.qm and /dev/null differ diff --git a/src/Mod/Test/Gui/Makefile.am b/src/Mod/Test/Gui/Makefile.am index 35ce4cd52..10bd2084d 100644 --- a/src/Mod/Test/Gui/Makefile.am +++ b/src/Mod/Test/Gui/Makefile.am @@ -81,8 +81,8 @@ EXTRA_DIST = \ Resources/translations/Test_af.ts \ Resources/translations/Test_de.qm \ Resources/translations/Test_de.ts \ - Resources/translations/Test_es.qm \ - Resources/translations/Test_es.ts \ + Resources/translations/Test_es-ES.qm \ + Resources/translations/Test_es-ES.ts \ Resources/translations/Test_fi.qm \ Resources/translations/Test_fi.ts \ Resources/translations/Test_fr.qm \ @@ -101,14 +101,24 @@ EXTRA_DIST = \ Resources/translations/Test_no.ts \ Resources/translations/Test_pl.qm \ Resources/translations/Test_pl.ts \ - Resources/translations/Test_pt.qm \ - Resources/translations/Test_pt.ts \ + Resources/translations/Test_pt-BR.qm \ + Resources/translations/Test_pt-BR.ts \ Resources/translations/Test_ru.qm \ Resources/translations/Test_ru.ts \ - Resources/translations/Test_se.qm \ - Resources/translations/Test_se.ts \ + Resources/translations/Test_sv-SE.qm \ + Resources/translations/Test_sv-SE.ts \ Resources/translations/Test_uk.qm \ Resources/translations/Test_uk.ts \ - Resources/translations/Test_zh.qm \ - Resources/translations/Test_zh.ts \ + Resources/translations/Test_zh-CN.qm \ + Resources/translations/Test_zh-CN.ts \ + Resources/translations/Test_zh-TW.qm \ + Resources/translations/Test_zh-TW.ts \ + Resources/translations/Test_ro.qm \ + Resources/translations/Test_ro.ts \ + Resources/translations/Test_cs.qm \ + Resources/translations/Test_cs.ts \ + Resources/translations/Test_sk.qm \ + Resources/translations/Test_sk.ts \ + Resources/translations/Test_tr.qm \ + Resources/translations/Test_tr.ts \ qtunittest.py diff --git a/src/Mod/Test/Gui/Resources/Test.qrc b/src/Mod/Test/Gui/Resources/Test.qrc index a494fcc5b..c513d8a1e 100644 --- a/src/Mod/Test/Gui/Resources/Test.qrc +++ b/src/Mod/Test/Gui/Resources/Test.qrc @@ -2,7 +2,6 @@ translations/Test_af.qm translations/Test_de.qm - translations/Test_es.qm translations/Test_fi.qm translations/Test_fr.qm translations/Test_hr.qm @@ -12,10 +11,16 @@ translations/Test_nl.qm translations/Test_no.qm translations/Test_pl.qm - translations/Test_pt.qm translations/Test_ru.qm - translations/Test_se.qm translations/Test_uk.qm - translations/Test_zh.qm + translations/Test_tr.qm + translations/Test_sv-SE.qm + translations/Test_zh-TW.qm + translations/Test_pt-BR.qm + translations/Test_cs.qm + translations/Test_sk.qm + translations/Test_es-ES.qm + translations/Test_zh-CN.qm + translations/Test_ro.qm diff --git a/src/Mod/Test/Gui/Resources/translations/Test_af.ts b/src/Mod/Test/Gui/Resources/translations/Test_af.ts index c05d64490..fad80004b 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_af.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_af.ts @@ -1,112 +1,112 @@ - - + + TestGui::UnitTest - FreeCAD UnitTest - FreeCAD Eenheidstoets + FreeCAD UnitTest + FreeCAD Eenheidstoets - Failures and errors - Mislukkings en foute + Failures and errors + Mislukkings en foute - Description - Beskrywing + Description + Beskrywing - &Start - &Begin + &Start + &Begin - Alt+S - Alt+S + Alt+S + Alt+S - &Help - &Hulp + &Help + &Hulp - F1 - F1 + F1 + F1 - &About - &Aangaande + &About + &Aangaande - Alt+A - Alt+A + Alt+A + Alt+A - &Close - &Maak toe + &Close + &Maak toe - Alt+C - Alt+C + Alt+C + Alt+C - Idle - Ledig + Idle + Ledig - Progress - Vordering + Progress + Vordering - <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> + <font color="#0000ff">0</font> - Remaining: - Oorblywende: + Remaining: + Oorblywende: - Errors: - Foute: + Errors: + Foute: - Failures: - Mislukkings: + Failures: + Mislukkings: - Run: - Loop: + Run: + Loop: - Test - Toets + Test + Toets - Select test name: - Kies toetsnaam: + Select test name: + Kies toetsnaam: - - + + TestGui::UnitTestDialog - Help - Hulp + Help + Hulp - About FreeCAD UnitTest - Aangaande FreeCAD Eenheidstoets + About FreeCAD UnitTest + Aangaande FreeCAD Eenheidstoets - Copyright (c) Werner Mayer + Copyright (c) Werner Mayer FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. - Kopiereg (c) Werner Mayer + Kopiereg (c) Werner Mayer FreeCAD Eenheidstoets is deel van FreeCAD en ondersteun skrywing van eenheidstoetse vir eie modules. - Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. Double click on an error in the tree view to see more information about it,including the stack trace. - Gee die naam van 'n roepbare voorwerp wat, wanneer geroep is, 'n toetsgeval sal gee. Klik "begin", en die geskepte toets sal uitgevoer word. -Dubbelklik op 'n fout in die boomaansig vir meer inligting oor dit, insluitend die stapelspoor. + Gee die naam van 'n roepbare voorwerp wat, wanneer geroep is, 'n toetsgeval sal gee. Klik "begin", en die geskepte toets sal uitgevoer word. +Dubbelklik op 'n fout in die boomaansig vir meer inligting oor dit, insluitend die stapelspoor. - + diff --git a/src/Mod/Test/Gui/Resources/translations/Test_cs.qm b/src/Mod/Test/Gui/Resources/translations/Test_cs.qm new file mode 100644 index 000000000..c785969bc Binary files /dev/null and b/src/Mod/Test/Gui/Resources/translations/Test_cs.qm differ diff --git a/src/Mod/Test/Gui/Resources/translations/Test_cs.ts b/src/Mod/Test/Gui/Resources/translations/Test_cs.ts new file mode 100644 index 000000000..45e9e8432 --- /dev/null +++ b/src/Mod/Test/Gui/Resources/translations/Test_cs.ts @@ -0,0 +1,112 @@ + + + + + TestGui::UnitTest + + FreeCAD UnitTest + FreeCAD UnitTest + + + Failures and errors + Selhání a chyby + + + Description + Popis + + + &Start + &Spustit + + + Alt+S + ALT + S + + + &Help + Pomoc + + + F1 + F1 + + + &About + &O + + + Alt+A + Alt + A + + + &Close + &Zavřít + + + Alt+C + Alt+C + + + Idle + Nečinný + + + Progress + Průběh + + + <font color="#0000ff">0</font> + <font color="#0000ff"> 0</font> + + + Remaining: + Zbývá: + + + Errors: + Chyby: + + + Failures: + Selhání: + + + Run: + Běží: + + + Test + Test + + + Select test name: + Vyberte testovací jméno: + + + + TestGui::UnitTestDialog + + Help + Pomoc + + + About FreeCAD UnitTest + O FreeCAD UnitTest + + + Copyright (c) Werner Mayer + +FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. + Copyright (c) Werner Mayer FreeCAD UnitTest je součástí FreeCAD a podporuje psaní Unit testů pro vlastní moduly. + + + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + +Double click on an error in the tree view to see more information about it,including the stack trace. + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + +Double click on an error in the tree view to see more information about it,including the stack trace. + + + diff --git a/src/Mod/Test/Gui/Resources/translations/Test_de.ts b/src/Mod/Test/Gui/Resources/translations/Test_de.ts index 953b5fc1f..c33e5df17 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_de.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_de.ts @@ -1,113 +1,113 @@ - - + + TestGui::UnitTest - FreeCAD UnitTest - FreeCAD UnitTest + FreeCAD UnitTest + FreeCAD UnitTest - Failures and errors - Störungen und Fehler + Failures and errors + Störungen und Fehler - Description - Beschreibung + Description + Beschreibung - &Start - &Starten + &Start + &Starten - Alt+S - Alt+S + Alt+S + Alt+S - &Help - &Hilfe + &Help + &Hilfe - F1 - F1 + F1 + F1 - &About - Ü&ber + &About + Ü&ber - Alt+A - Alt+B + Alt+A + Alt+B - &Close - Schl&ießen + &Close + Schl&ießen - Alt+C - Alt+I + Alt+C + Alt+I - Idle - Leerlauf + Idle + Leerlauf - Progress - Fortschritt + Progress + Fortschritt - <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> + <font color="#0000ff">0</font> - Remaining: - Verbleibend: + Remaining: + Verbleibend: - Errors: - Fehler: + Errors: + Fehler: - Failures: - Störungen: + Failures: + Störungen: - Run: - Durchlauf: + Run: + Durchlauf: - Test - Aufgabe + Test + Aufgabe - Select test name: - Wähle Testaufgabe: + Select test name: + Wähle Testaufgabe: - - + + TestGui::UnitTestDialog - Help - Hilfe + Help + Hilfe - About FreeCAD UnitTest - Über FreeCAD UnitTest + About FreeCAD UnitTest + Über FreeCAD UnitTest - Copyright (c) Werner Mayer + Copyright (c) Werner Mayer FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. - Copyright (c) Werner Mayer + Copyright (c) Werner Mayer FreeCAD UnitTest ist Teil von FreeCAD und unterstützt das Schreiben von Unit Tests für eigene Module. - Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. Double click on an error in the tree view to see more information about it,including the stack trace. - Geben Sie den Namen eines Tests ein und klicken Sie auf 'Start', um diesen Test auszuführen. + Geben Sie den Namen eines Tests ein und klicken Sie auf 'Start', um diesen Test auszuführen. Doppelklicken Sie im Fehlerfall auf das Element in der Baumansicht, um mehr Informationen darüber zu erhalten. - + diff --git a/src/Mod/Test/Gui/Resources/translations/Test_es.qm b/src/Mod/Test/Gui/Resources/translations/Test_es-ES.qm similarity index 100% rename from src/Mod/Test/Gui/Resources/translations/Test_es.qm rename to src/Mod/Test/Gui/Resources/translations/Test_es-ES.qm diff --git a/src/Mod/Test/Gui/Resources/translations/Test_es-ES.ts b/src/Mod/Test/Gui/Resources/translations/Test_es-ES.ts new file mode 100644 index 000000000..39acb4d2c --- /dev/null +++ b/src/Mod/Test/Gui/Resources/translations/Test_es-ES.ts @@ -0,0 +1,114 @@ + + + + + TestGui::UnitTest + + FreeCAD UnitTest + Prueba de unidades de FreeCAD + + + Failures and errors + Fallos y errores + + + Description + Descripción + + + &Start + &Iniciar + + + Alt+S + Alt+S + + + &Help + &Ayuda + + + F1 + F1 + + + &About + &Acerca de + + + Alt+A + Alt+A + + + &Close + &Cerrar + + + Alt+C + Alt+C + + + Idle + Inactivo + + + Progress + Progreso + + + <font color="#0000ff">0</font> + <font color="#0000ff">0</font> + + + Remaining: + Restante: + + + Errors: + Errores: + + + Failures: + Fallos: + + + Run: + Ejecutar: + + + Test + Prueba + + + Select test name: + Seleccion del módulo a probar: + + + + TestGui::UnitTestDialog + + Help + Ayuda + + + About FreeCAD UnitTest + Acerca de FreeCAD UnitTest + + + Copyright (c) Werner Mayer + +FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. + Copyright (c) Werner Mayer + +FreeCAD UnitTest es parte de FreeCAD y admite la escritura de pruebas unitarias para módulos propios. + + + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + +Double click on an error in the tree view to see more information about it,including the stack trace. + Escriba el nombre de un objeto que se puede llamar, cuando se le llama, vuelve a empezar 'una TestCase.Click, y la prueba así producida se llevará a cabo. + +Haga doble clic en un error en la vista en árbol para ver más información al respecto, incluido el seguimiento de la pila. + + + diff --git a/src/Mod/Test/Gui/Resources/translations/Test_es.ts b/src/Mod/Test/Gui/Resources/translations/Test_es.ts deleted file mode 100644 index 1113b9d2a..000000000 --- a/src/Mod/Test/Gui/Resources/translations/Test_es.ts +++ /dev/null @@ -1,114 +0,0 @@ - - - - - TestGui::UnitTest - - FreeCAD UnitTest - Prueba de unidades de FreeCAD - - - Failures and errors - Fallos y errores - - - Description - Descripción - - - &Start - &Iniciar - - - Alt+S - Alt+S - - - &Help - &Ayuda - - - F1 - F1 - - - &About - &Acerca de - - - Alt+A - Alt+A - - - &Close - &Cerrar - - - Alt+C - Alt+C - - - Idle - Inactivo - - - Progress - Progreso - - - <font color="#0000ff">0</font> - <font color="#0000ff">0</font> - - - Remaining: - Restante: - - - Errors: - Errores: - - - Failures: - Fallos: - - - Run: - Ejecutar: - - - Test - Prueba - - - Select test name: - Seleccion del módulo a probar: - - - - TestGui::UnitTestDialog - - Help - Ayuda - - - About FreeCAD UnitTest - Acerca de FreeCAD UnitTest - - - Copyright (c) Werner Mayer - -FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. - Copyright (c) Werner Mayer - -FreeCAD UnitTest es parte de FreeCAD y admite la escritura de pruebas unitarias para módulos propios. - - - Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. - -Double click on an error in the tree view to see more information about it,including the stack trace. - Escriba el nombre de un objeto que se puede llamar, cuando se le llama, vuelve a empezar 'una TestCase.Click, y la prueba así producida se llevará a cabo. - -Haga doble clic en un error en la vista en árbol para ver más información al respecto, incluido el seguimiento de la pila. - - - diff --git a/src/Mod/Test/Gui/Resources/translations/Test_fi.ts b/src/Mod/Test/Gui/Resources/translations/Test_fi.ts index 290ea0bb7..f119e8dca 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_fi.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_fi.ts @@ -1,114 +1,114 @@ - - + + TestGui::UnitTest - FreeCAD UnitTest - FreeCAD yksikkötestaus + FreeCAD UnitTest + FreeCAD yksikkötestaus - Failures and errors - Hylätyt toiminnot ja virheet + Failures and errors + Hylätyt toiminnot ja virheet - Description - Kuvaus + Description + Kuvaus - &Start - &Aloita + &Start + &Aloita - Alt+S - Alt+S + Alt+S + Alt+S - &Help - Ohje + &Help + Ohje - F1 - F1 + F1 + F1 - &About - &Tietoja ohjelmasta + &About + &Tietoja ohjelmasta - Alt+A - Alt+A + Alt+A + Alt+A - &Close - &Sulje + &Close + &Sulje - Alt+C - Alt+C + Alt+C + Alt+C - Idle - Joutokäynti + Idle + Joutokäynti - Progress - Tilanne + Progress + Tilanne - <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> + <font color="#0000ff">0</font> - Remaining: - Jäljellä oleva: + Remaining: + Jäljellä oleva: - Errors: - Virheet: + Errors: + Virheet: - Failures: - Hylätyt: + Failures: + Hylätyt: - Run: - Suorita: + Run: + Suorita: - Test - Testi + Test + Testi - Select test name: - Valitse testin nimi: + Select test name: + Valitse testin nimi: - - + + TestGui::UnitTestDialog - Help - Helppi + Help + Helppi - About FreeCAD UnitTest - Tietoja FreeCAD toiminnan testauksesta + About FreeCAD UnitTest + Tietoja FreeCAD toiminnan testauksesta - Copyright (c) Werner Mayer + Copyright (c) Werner Mayer FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. - Tekijänoikeudet (c) Werner Mayer + Tekijänoikeudet (c) Werner Mayer FreeCAD toiminnan testaus on osa FreeCAD ohjelmaa ja se tukee kirjoitettuja toiminnan testauksia omille moduuleille. - Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. Double click on an error in the tree view to see more information about it,including the stack trace. - Syötä kutsuttavan objektin nimi. Kun objektia kutsutaan, käynnistyy Testaus ympäristö. Paina 'aloita', jolloin testi lähtee käyntiin. + Syötä kutsuttavan objektin nimi. Kun objektia kutsutaan, käynnistyy Testaus ympäristö. Paina 'aloita', jolloin testi lähtee käyntiin. Kaksoisnapsauta ilmoitettua virhettä, niin saat siitä lisää tietoa, sisältäen pinokutsut. - + diff --git a/src/Mod/Test/Gui/Resources/translations/Test_fr.ts b/src/Mod/Test/Gui/Resources/translations/Test_fr.ts index db64fe5b8..072e56c0b 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_fr.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_fr.ts @@ -1,114 +1,114 @@ - - + + TestGui::UnitTest - FreeCAD UnitTest - Test unitaire FreeCAD + FreeCAD UnitTest + Test unitaire FreeCAD - Failures and errors - Échecs et erreurs + Failures and errors + Échecs et erreurs - Description - Description + Description + Description - &Start - &Démarrer + &Start + &Démarrer - Alt+S - Alt+D + Alt+S + Alt+D - &Help - &Aide + &Help + &Aide - F1 - F1 + F1 + F1 - &About - À &propos + &About + À &propos - Alt+A - Alt+p + Alt+A + Alt+p - &Close - &Fermer + &Close + &Fermer - Alt+C - Alt+F + Alt+C + Alt+F - Idle - Inactif + Idle + Inactif - Progress - Progression + Progress + Progression - <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> + <font color="#0000ff">0</font> - Remaining: - Restant : + Remaining: + Restant : - Errors: - Erreurs : + Errors: + Erreurs : - Failures: - Échecs : + Failures: + Échecs : - Run: - Lancer : + Run: + Lancer : - Test - Test + Test + Test - Select test name: - Sélectionner le nom du test : + Select test name: + Sélectionner le nom du test : - - + + TestGui::UnitTestDialog - Help - Aide + Help + Aide - About FreeCAD UnitTest - À propos des tests unitaires FreeCAD + About FreeCAD UnitTest + À propos des tests unitaires FreeCAD - Copyright (c) Werner Mayer + Copyright (c) Werner Mayer FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. - Tous droits réservés (c) Werner Mayer + Tous droits réservés (c) Werner Mayer -FreeCAD UnitTest fait partie de FreeCAD et supporte l'écriture de tests unitaires pour vos propres modules. +FreeCAD UnitTest fait partie de FreeCAD et supporte l'écriture de tests unitaires pour vos propres modules. - Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. Double click on an error in the tree view to see more information about it,including the stack trace. - Saisir le nom d'un objet qui, une fois appelé, retournera un événement TestCase. Cliquer sur 'Démarrer' et le test démarrera. + Saisir le nom d'un objet qui, une fois appelé, retournera un événement TestCase. Cliquer sur 'Démarrer' et le test démarrera. -Double cliquer sur une erreur dans la vue arborescente pour voir plus d'informations, y compris l'historique de la pile. +Double cliquer sur une erreur dans la vue arborescente pour voir plus d'informations, y compris l'historique de la pile. - + diff --git a/src/Mod/Test/Gui/Resources/translations/Test_hr.ts b/src/Mod/Test/Gui/Resources/translations/Test_hr.ts index dee0d8d68..5410d0170 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_hr.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_hr.ts @@ -1,110 +1,110 @@ - - + + TestGui::UnitTest - FreeCAD UnitTest - FreeCAD UnitTest + FreeCAD UnitTest + FreeCAD UnitTest - Failures and errors - Kvarovi i greške + Failures and errors + Kvarovi i greške - Description - Opis + Description + Opis - &Start - &Kreni + &Start + &Kreni - Alt+S - Alt+S + Alt+S + Alt+S - &Help - &Pomoć + &Help + &Pomoć - F1 - F1 + F1 + F1 - &About - &O + &About + &O - Alt+A - Alt+A + Alt+A + Alt+A - &Close - &Zatvori + &Close + &Zatvori - Alt+C - Alt + C + Alt+C + Alt + C - Idle - Besposlen + Idle + Besposlen - Progress - Napredak + Progress + Napredak - <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> + <font color="#0000ff">0</font> - Remaining: - Preostali: + Remaining: + Preostali: - Errors: - Pogreške: + Errors: + Pogreške: - Failures: - Kvarovi: + Failures: + Kvarovi: - Run: - Pokretanje: + Run: + Pokretanje: - Test - Test + Test + Test - Select test name: - Odaberite naziv testa: + Select test name: + Odaberite naziv testa: - - + + TestGui::UnitTestDialog - Help - Pomoć + Help + Pomoć - About FreeCAD UnitTest - O FreeCAD UnitTest + About FreeCAD UnitTest + O FreeCAD UnitTest - Copyright (c) Werner Mayer + Copyright (c) Werner Mayer FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. - Copyright (c) Werner Mayer FreeCAD UnitTest je dio FreeCAD i podržava pisanje jedinica Testovi za vlastite module. + Copyright (c) Werner Mayer FreeCAD UnitTest je dio FreeCAD i podržava pisanje jedinica Testovi za vlastite module. - Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. Double click on an error in the tree view to see more information about it,including the stack trace. - Unesite naziv objekt za zvanje koji, kad se zove,vratit će TestCase.Klik "Start", test će se pokrenuti. Dvaput kliknite na pogreške u prikazu stabla da biste vidjeli više informacija o tome, uključujući i stog trag. + Unesite naziv objekt za zvanje koji, kad se zove,vratit će TestCase.Klik "Start", test će se pokrenuti. Dvaput kliknite na pogreške u prikazu stabla da biste vidjeli više informacija o tome, uključujući i stog trag. - + diff --git a/src/Mod/Test/Gui/Resources/translations/Test_hu.qm b/src/Mod/Test/Gui/Resources/translations/Test_hu.qm index 55d4da732..71d8e2942 100644 Binary files a/src/Mod/Test/Gui/Resources/translations/Test_hu.qm and b/src/Mod/Test/Gui/Resources/translations/Test_hu.qm differ diff --git a/src/Mod/Test/Gui/Resources/translations/Test_hu.ts b/src/Mod/Test/Gui/Resources/translations/Test_hu.ts index 97336cabf..0288a27f1 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_hu.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_hu.ts @@ -1,110 +1,110 @@ - - + + TestGui::UnitTest - FreeCAD UnitTest - FreeCAD Egység-Teszt + FreeCAD UnitTest + FreeCAD Egység-Teszt - Failures and errors - Sikertelen és hibás + Failures and errors + Sikertelen és hibás - Description - Leírás + Description + Leírás - &Start - &Kezdés + &Start + Kezdé&s - Alt+S - Alt+S + Alt+S + Alt+S - &Help - &Súgó + &Help + &Súgó - F1 - F1 + F1 + F1 - &About - Névjegy + &About + Névjegy &A - Alt+A - Alt+A + Alt+A + Alt+A - &Close - &Bezár + &Close + &Bezár - Alt+C - Alt+C + Alt+C + Alt+C - Idle - Üresjárati + Idle + Üresjárati - Progress - Folyamatban + Progress + Folyamatban - <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> + <font color="#0000ff">0</font> - Remaining: - Fennmaradó: + Remaining: + Fennmaradó: - Errors: - Hibák: + Errors: + Hibák: - Failures: - Sikertelen: + Failures: + Sikertelen: - Run: - Fut: + Run: + Fut: - Test - Vizsgálat + Test + Vizsgálat - Select test name: - Teszt név kiválasztás: + Select test name: + Teszt név kiválasztás: - - + + TestGui::UnitTestDialog - Help - Segítség + Help + Segítség - About FreeCAD UnitTest - FreeCAD Egység-Teszt névjegye + About FreeCAD UnitTest + FreeCAD Egység-Teszt névjegye - Copyright (c) Werner Mayer + Copyright (c) Werner Mayer FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. - Copyright (c) Werner Mayer FreeCAD UnitTest része a FreeCAD programnak és támogatja írásban Unit tesztek saját moduljait. + Copyright (c) Werner Mayer FreeCAD UnitTest része a FreeCAD programnak és támogatja írásban Unit tesztek saját moduljait. - Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. Double click on an error in the tree view to see more information about it,including the stack trace. - Írja be a nevét a hívható objektumnak, amely hívásakor, visszatér egy Tesztre. Nyomjon 'start', és az így készült vizsgálat futni fog. Dupla kattintással, a fa nézeten további információkat kap, beleértve a verem-nyomkövetést. + Írja be a nevét a hívható objektumnak, amely hívásakor, visszatér egy Tesztre. Nyomjon 'start', és az így készült vizsgálat futni fog. Dupla kattintással, a fa nézeten további információkat kap, beleértve a verem-nyomkövetést. - + diff --git a/src/Mod/Test/Gui/Resources/translations/Test_it.ts b/src/Mod/Test/Gui/Resources/translations/Test_it.ts index 11eb06405..d79cbc61f 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_it.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_it.ts @@ -1,114 +1,114 @@ - - + + TestGui::UnitTest - FreeCAD UnitTest - FreeCAD UnitTest + FreeCAD UnitTest + FreeCAD UnitTest - Failures and errors - Avarie ed errori + Failures and errors + Avarie ed errori - Description - Descrizione + Description + Descrizione - &Start - &Inizio + &Start + &Inizio - Alt+S - Alt+I + Alt+S + Alt+I - &Help - &Aiuto + &Help + &Aiuto - F1 - F1 + F1 + F1 - &About - &Informazioni su + &About + &Informazioni su - Alt+A - Alt+I + Alt+A + Alt+I - &Close - &Chiudi + &Close + &Chiudi - Alt+C - Alt+C + Alt+C + Alt+C - Idle - Inattivo + Idle + Inattivo - Progress - Avanzamento + Progress + Avanzamento - <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> + <font color="#0000ff">0</font> - Remaining: - Rimanente: + Remaining: + Rimanente: - Errors: - Errori: + Errors: + Errori: - Failures: - Avarie: + Failures: + Avarie: - Run: - Serie: + Run: + Serie: - Test - Test + Test + Test - Select test name: - Seleziona il nome del test: + Select test name: + Seleziona il nome del test: - - + + TestGui::UnitTestDialog - Help - Aiuto + Help + Aiuto - About FreeCAD UnitTest - Informazioni su FreeCAD UnitTest + About FreeCAD UnitTest + Informazioni su FreeCAD UnitTest - Copyright (c) Werner Mayer + Copyright (c) Werner Mayer FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. - Copyright (c) Werner Mayer + Copyright (c) Werner Mayer FreeCAD UnitTest è parte di FreeCAD e supporta la scrittura di test unitari per i propri moduli. - Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. Double click on an error in the tree view to see more information about it,including the stack trace. - Inserisci il nome di un oggetto richiamabile che, quando richiamato, restituirà un TestCase. Fare clic su 'inizio', e la prova così prodotta sarà eseguita. + Inserisci il nome di un oggetto richiamabile che, quando richiamato, restituirà un TestCase. Fare clic su 'inizio', e la prova così prodotta sarà eseguita. -Doppio click su un errore nell'albero per visualizzare più informazioni, inclusa la traccia dello stack. +Doppio click su un errore nell'albero per visualizzare più informazioni, inclusa la traccia dello stack. - + diff --git a/src/Mod/Test/Gui/Resources/translations/Test_ja.qm b/src/Mod/Test/Gui/Resources/translations/Test_ja.qm index f0cf14379..18bd8ded3 100644 Binary files a/src/Mod/Test/Gui/Resources/translations/Test_ja.qm and b/src/Mod/Test/Gui/Resources/translations/Test_ja.qm differ diff --git a/src/Mod/Test/Gui/Resources/translations/Test_ja.ts b/src/Mod/Test/Gui/Resources/translations/Test_ja.ts index 3460f433e..73c9ac3be 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_ja.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_ja.ts @@ -1,114 +1,114 @@ - - + + TestGui::UnitTest - FreeCAD UnitTest - FreeCAD UnitTest + FreeCAD UnitTest + FreeCAD UnitTest - Failures and errors - 障害およびエラー + Failures and errors + 障害およびエラー - Description - 説明 + Description + 説明 - &Start - 開始(&S) + &Start + 開始(&S) - Alt+S - Alt+S + Alt+S + Alt+S - &Help - ヘルプ (&H) + &Help + ヘルプ (&H) - F1 - F1 + F1 + F1 - &About - &About + &About + &About - Alt+A - [Alt] + A + Alt+A + Alt+A - &Close - 閉じる (&C) + &Close + 閉じる (&C) - Alt+C - Alt+C + Alt+C + Alt+C - Idle - Idle + Idle + Idle - Progress - 進捗状況 + Progress + 進捗状況 - <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> + <font color="#0000ff">0</font> - Remaining: - 残り: + Remaining: + 残り: - Errors: - エラー: + Errors: + エラー: - Failures: - エラー: + Failures: + エラー: - Run: - 実行: + Run: + 実行: - Test - テスト + Test + テスト - Select test name: - Select test name: + Select test name: + Select test name: - - + + TestGui::UnitTestDialog - Help - ヘルプ + Help + ヘルプ - About FreeCAD UnitTest - About FreeCAD UnitTest + About FreeCAD UnitTest + About FreeCAD UnitTest - Copyright (c) Werner Mayer + Copyright (c) Werner Mayer FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. - Copyright (c) Werner Mayer + Copyright (c) Werner Mayer FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. - Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. Double click on an error in the tree view to see more information about it,including the stack trace. - Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. Double click on an error in the tree view to see more information about it,including the stack trace. - + diff --git a/src/Mod/Test/Gui/Resources/translations/Test_nl.ts b/src/Mod/Test/Gui/Resources/translations/Test_nl.ts index b21373012..71bc7bb79 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_nl.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_nl.ts @@ -1,113 +1,113 @@ - - + + TestGui::UnitTest - FreeCAD UnitTest - FreeCAD unittest + FreeCAD UnitTest + FreeCAD unittest - Failures and errors - Mislukkingen en fouten + Failures and errors + Mislukkingen en fouten - Description - Omschrijving + Description + Omschrijving - &Start - &Start + &Start + &Start - Alt+S - Alt+S + Alt+S + Alt+S - &Help - &Help + &Help + &Help - F1 - F1 + F1 + F1 - &About - &Over + &About + &Over - Alt+A - Alt+A + Alt+A + Alt+A - &Close - &Sluiten + &Close + &Sluiten - Alt+C - Alt+C + Alt+C + Alt+C - Idle - Inactief + Idle + Inactief - Progress - Voortgang + Progress + Voortgang - <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> + <font color="#0000ff">0</font> - Remaining: - Resterend: + Remaining: + Resterend: - Errors: - Fouten: + Errors: + Fouten: - Failures: - Mislukkingen: + Failures: + Mislukkingen: - Run: - Uitvoeren: + Run: + Uitvoeren: - Test - Test + Test + Test - Select test name: - Selecteer Testnaam: + Select test name: + Selecteer Testnaam: - - + + TestGui::UnitTestDialog - Help - Help + Help + Help - About FreeCAD UnitTest - Over FreeCAD UnitTest + About FreeCAD UnitTest + Over FreeCAD UnitTest - Copyright (c) Werner Mayer + Copyright (c) Werner Mayer FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. - Copyright (c) Werner Mayer + Copyright (c) Werner Mayer FreeCAD unittest is onderdeel van FreeCAD en ondersteunt het schrijven van unit tests voor eigen modules. - Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. Double click on an error in the tree view to see more information about it,including the stack trace. - Voer de naam in van het oproepbare object welke, indien opgeroepen, een TestCase zal teruggeven. Druk op 'start', en de aldus geproduceerde test zal worden uitgevoerd. + Voer de naam in van het oproepbare object welke, indien opgeroepen, een TestCase zal teruggeven. Druk op 'start', en de aldus geproduceerde test zal worden uitgevoerd. Dubbel klik op een fout in de boomstructuur om meer informatie te zien, inclusief de stack trace. - + diff --git a/src/Mod/Test/Gui/Resources/translations/Test_no.ts b/src/Mod/Test/Gui/Resources/translations/Test_no.ts index 716ef14df..41bdc81e0 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_no.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_no.ts @@ -1,114 +1,114 @@ - - + + TestGui::UnitTest - FreeCAD UnitTest - FreeCAD enhetstest + FreeCAD UnitTest + FreeCAD enhetstest - Failures and errors - Feil + Failures and errors + Feil - Description - Beskrivelse + Description + Beskrivelse - &Start - &Start + &Start + &Start - Alt+S - Alt+S + Alt+S + Alt+S - &Help - &Hjelp + &Help + &Hjelp - F1 - F1 + F1 + F1 - &About - &Om + &About + &Om - Alt+A - Alt+A + Alt+A + Alt+A - &Close - &Lukk + &Close + &Lukk - Alt+C - Alt + C + Alt+C + Alt + C - Idle - Inaktiv + Idle + Inaktiv - Progress - Fremdrift + Progress + Fremdrift - <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> + <font color="#0000ff">0</font> - Remaining: - Gjenstående: + Remaining: + Gjenstående: - Errors: - Feil: + Errors: + Feil: - Failures: - Feil: + Failures: + Feil: - Run: - Kjør: + Run: + Kjør: - Test - Test + Test + Test - Select test name: - Velg testnavn: + Select test name: + Velg testnavn: - - + + TestGui::UnitTestDialog - Help - Hjelp + Help + Hjelp - About FreeCAD UnitTest - Om FreeCAD enhetstest + About FreeCAD UnitTest + Om FreeCAD enhetstest - Copyright (c) Werner Mayer + Copyright (c) Werner Mayer FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. - Copyright (c) Werner Mayer + Copyright (c) Werner Mayer FreeCAD enhetstest er en del av FreeCAD og støtter skriving til enhetstester for egne moduler. - Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. Double click on an error in the tree view to see more information about it,including the stack trace. - Skriv inn navnet på et oppkallbart objekt som når kalt vil returnere en testsak. Klikk 'start' og testen produsert vil bli kjørt. + Skriv inn navnet på et oppkallbart objekt som når kalt vil returnere en testsak. Klikk 'start' og testen produsert vil bli kjørt. Dobbeltklikk på en feil i treet for å se mer informasjon om den, inkludert stabelsporing. - + diff --git a/src/Mod/Test/Gui/Resources/translations/Test_pl.qm b/src/Mod/Test/Gui/Resources/translations/Test_pl.qm index 601d5a636..8d85b8da9 100644 Binary files a/src/Mod/Test/Gui/Resources/translations/Test_pl.qm and b/src/Mod/Test/Gui/Resources/translations/Test_pl.qm differ diff --git a/src/Mod/Test/Gui/Resources/translations/Test_pl.ts b/src/Mod/Test/Gui/Resources/translations/Test_pl.ts index 2ac873245..6108c256e 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_pl.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_pl.ts @@ -1,112 +1,112 @@ - - + + TestGui::UnitTest - FreeCAD UnitTest - FreeCAD UnitTest + FreeCAD UnitTest + FreeCAD UnitTest - Failures and errors - Awarie i błędy + Failures and errors + Awarie i błędy - Description - Opis + Description + Opis - &Start - &Uruchom + &Start + &Uruchom - Alt+S - Alt + S + Alt+S + Alt + S - &Help - &Pomoc + &Help + &Pomoc - F1 - F1 + F1 + F1 - &About - &O programie + &About + &O programie - Alt+A - ALT + A + Alt+A + ALT + A - &Close - &Zamknij + &Close + &Zamknij - Alt+C - Alt + C + Alt+C + Alt + C - Idle - Bezczynny + Idle + Bezczynny - Progress - Postęp + Progress + Postęp - <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> + <font color="#0000ff"> 0</font> - Remaining: - Pozostało: + Remaining: + Pozostało: - Errors: - Błędy: + Errors: + Błędy: - Failures: - Awarie: + Failures: + Awarie: - Run: - Uruchom: + Run: + Uruchom: - Test - Test + Test + Test - Select test name: - Wybierz nazwę testu: + Select test name: + Wybierz nazwę testu: - - + + TestGui::UnitTestDialog - Help - Pomoc + Help + Pomoc - About FreeCAD UnitTest - O FreeCAD UnitTest + About FreeCAD UnitTest + O FreeCAD UnitTest - Copyright (c) Werner Mayer + Copyright (c) Werner Mayer FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. - Copyright (c) Werner Mayer FreeCAD unittest jest częścią FreeCAD i wspiera pisanie testów jednostkowych dla własnych modułów. + Copyright (c) Werner Mayer FreeCAD unittest jest częścią FreeCAD i wspiera pisanie testów jednostkowych dla własnych modułów. - Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. Double click on an error in the tree view to see more information about it,including the stack trace. - Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + Wprowadź nazwę obiektu, który po odwołaniu się do niego zwróci TestCase.Click 'start' i utworzony w ten sposób test zostanie uruchomiony. -Double click on an error in the tree view to see more information about it,including the stack trace. +Kliknij dwukrotnie na błąd w widoku drzewa, aby uzyskać więcej informacji, w tym zapis stosu. - + diff --git a/src/Mod/Test/Gui/Resources/translations/Test_pt.qm b/src/Mod/Test/Gui/Resources/translations/Test_pt-BR.qm similarity index 100% rename from src/Mod/Test/Gui/Resources/translations/Test_pt.qm rename to src/Mod/Test/Gui/Resources/translations/Test_pt-BR.qm diff --git a/src/Mod/Test/Gui/Resources/translations/Test_pt-BR.ts b/src/Mod/Test/Gui/Resources/translations/Test_pt-BR.ts new file mode 100644 index 000000000..b0acc7766 --- /dev/null +++ b/src/Mod/Test/Gui/Resources/translations/Test_pt-BR.ts @@ -0,0 +1,112 @@ + + + + + TestGui::UnitTest + + FreeCAD UnitTest + Teste de unidade do FreeCAD + + + Failures and errors + Falhas e erros + + + Description + Descrição + + + &Start + &Início + + + Alt+S + Alt+I + + + &Help + A&juda + + + F1 + F1 + + + &About + S&obre + + + Alt+A + Alt+O + + + &Close + &Fechar + + + Alt+C + Alt+F + + + Idle + Ocioso + + + Progress + Progresso + + + <font color="#0000ff">0</font> + <font color="#0000ff">0</font> + + + Remaining: + Faltando: + + + Errors: + Erros: + + + Failures: + Falhas: + + + Run: + Executar: + + + Test + Teste + + + Select test name: + Selecione o nome do teste: + + + + TestGui::UnitTestDialog + + Help + Ajuda + + + About FreeCAD UnitTest + Sobre o teste de unidade do FreeCAD + + + Copyright (c) Werner Mayer + +FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. + Copyright (c) Werner Mayer + +O teste de unidade do FreeCAD é parte do FreeCAD e suporta o desenvolvimento de testes de unidade para módulos próprios. + + + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + +Double click on an error in the tree view to see more information about it,including the stack trace. + Digite o nome de um objeto que pode ser chamado que, quando chamado, vai retornar um TestCase. Clique "Iniciar", e o teste assim produzido será executado. Dê um duplo clique sobre um erro na árvore para ver mais informações sobre ele, incluindo o rastreamento de pilha. + + + diff --git a/src/Mod/Test/Gui/Resources/translations/Test_pt.ts b/src/Mod/Test/Gui/Resources/translations/Test_pt.ts deleted file mode 100644 index 510e60e5c..000000000 --- a/src/Mod/Test/Gui/Resources/translations/Test_pt.ts +++ /dev/null @@ -1,112 +0,0 @@ - - - - - TestGui::UnitTest - - FreeCAD UnitTest - Teste de unidade do FreeCAD - - - Failures and errors - Falhas e erros - - - Description - Descrição - - - &Start - &Início - - - Alt+S - Alt+I - - - &Help - A&juda - - - F1 - F1 - - - &About - S&obre - - - Alt+A - Alt+O - - - &Close - &Fechar - - - Alt+C - Alt+F - - - Idle - Ocioso - - - Progress - Progresso - - - <font color="#0000ff">0</font> - <font color="#0000ff">0</font> - - - Remaining: - Faltando: - - - Errors: - Erros: - - - Failures: - Falhas: - - - Run: - Executar: - - - Test - Teste - - - Select test name: - Selecione o nome do teste: - - - - TestGui::UnitTestDialog - - Help - Ajuda - - - About FreeCAD UnitTest - Sobre o teste de unidade do FreeCAD - - - Copyright (c) Werner Mayer - -FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. - Copyright (c) Werner Mayer - -O teste de unidade do FreeCAD é parte do FreeCAD e suporta o desenvolvimento de testes de unidade para módulos próprios. - - - Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. - -Double click on an error in the tree view to see more information about it,including the stack trace. - Digite o nome de um objeto que pode ser chamado que, quando chamado, vai retornar um TestCase. Clique "Iniciar", e o teste assim produzido será executado. Dê um duplo clique sobre um erro na árvore para ver mais informações sobre ele, incluindo o rastreamento de pilha. - - - diff --git a/src/Mod/Test/Gui/Resources/translations/Test_ro.qm b/src/Mod/Test/Gui/Resources/translations/Test_ro.qm new file mode 100644 index 000000000..415073fc5 Binary files /dev/null and b/src/Mod/Test/Gui/Resources/translations/Test_ro.qm differ diff --git a/src/Mod/Test/Gui/Resources/translations/Test_ro.ts b/src/Mod/Test/Gui/Resources/translations/Test_ro.ts new file mode 100644 index 000000000..7e97e25d4 --- /dev/null +++ b/src/Mod/Test/Gui/Resources/translations/Test_ro.ts @@ -0,0 +1,112 @@ + + + + + TestGui::UnitTest + + FreeCAD UnitTest + FreeCAD UnitTest + + + Failures and errors + Defecte şi erori + + + Description + Descriere + + + &Start + &Start + + + Alt+S + Alt + S + + + &Help + &Ajutor + + + F1 + F1 + + + &About + &Despre + + + Alt+A + Alt + A + + + &Close + &Inchide + + + Alt+C + Alt + C + + + Idle + Liber + + + Progress + Progres + + + <font color="#0000ff">0</font> + <font color="#0000ff"> 0</font> + + + Remaining: + Rămase: + + + Errors: + Erori: + + + Failures: + Defecte: + + + Run: + Rulează: + + + Test + Test + + + Select test name: + Selectaţi numele testului: + + + + TestGui::UnitTestDialog + + Help + Ajutor + + + About FreeCAD UnitTest + Despre FreeCAD UnitTest + + + Copyright (c) Werner Mayer + +FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. + Copyright (c) Werner Mayer FreeCAD UnitTest este o parte a FreeCAD şi suportă definirea Unităţilor de Test pentru modulele proprii. + + + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + +Double click on an error in the tree view to see more information about it,including the stack trace. + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + +Double click on an error in the tree view to see more information about it,including the stack trace. + + + diff --git a/src/Mod/Test/Gui/Resources/translations/Test_ru.ts b/src/Mod/Test/Gui/Resources/translations/Test_ru.ts index d18d40c78..dc50db638 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_ru.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_ru.ts @@ -1,113 +1,113 @@ - - + + TestGui::UnitTest - FreeCAD UnitTest - FreeCAD Unit-Тест + FreeCAD UnitTest + FreeCAD Unit-Тест - Failures and errors - Сбои и ошибки + Failures and errors + Сбои и ошибки - Description - Описание + Description + Описание - &Start - &Запуск + &Start + &Запуск - Alt+S - Alt+S + Alt+S + Alt+S - &Help - Помощь + &Help + Помощь - F1 - F1 + F1 + F1 - &About - О программе + &About + О программе - Alt+A - Alt+A + Alt+A + Alt+A - &Close - Закрыть + &Close + Закрыть - Alt+C - Alt+C + Alt+C + Alt+C - Idle - Простой + Idle + Простой - Progress - Прогресс + Progress + Прогресс - <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> + <font color="#0000ff">0</font> - Remaining: - Осталось: + Remaining: + Осталось: - Errors: - Ошибки: + Errors: + Ошибки: - Failures: - Сбои: + Failures: + Сбои: - Run: - Выполнить: + Run: + Выполнить: - Test - Тестировать + Test + Тестировать - Select test name: - Выберите название теста: + Select test name: + Выберите название теста: - - + + TestGui::UnitTestDialog - Help - Справка + Help + Справка - About FreeCAD UnitTest - О Unit-тесте FreeCAD + About FreeCAD UnitTest + О Unit-тесте FreeCAD - Copyright (c) Werner Mayer + Copyright (c) Werner Mayer FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. - Copyright (C) Вернер Майер + Copyright (C) Вернер Майер FreeCAD UnitTest является частью FreeCAD и поддерживает написание Unit тестов для собственных модулей. - Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. Double click on an error in the tree view to see more information about it,including the stack trace. - Введите имя вызываемого объекта при вызове которого, бедет возвтащаться TestCase. Кликните 'start' и, таким образом, проверка будет выполнена. + Введите имя вызываемого объекта при вызове которого, бедет возвтащаться TestCase. Кликните 'start' и, таким образом, проверка будет выполнена. Выполните двойной щелчок на ошибке в древовидном виджете для дополнительной информации о ней, включая стек вызовов. - + diff --git a/src/Mod/Test/Gui/Resources/translations/Test_se.ts b/src/Mod/Test/Gui/Resources/translations/Test_se.ts deleted file mode 100644 index 2bade6911..000000000 --- a/src/Mod/Test/Gui/Resources/translations/Test_se.ts +++ /dev/null @@ -1,114 +0,0 @@ - - - - - TestGui::UnitTest - - FreeCAD UnitTest - FreeCAD EnhetsTest - - - Failures and errors - Misslyckanden och fel - - - Description - Beskrivning - - - &Start - &Start - - - Alt+S - Alt+S - - - &Help - &Hjälp - - - F1 - F1 - - - &About - &Om - - - Alt+A - Alt+A - - - &Close - S&täng - - - Alt+C - Alt+C - - - Idle - Tomgång - - - Progress - Pågår - - - <font color="#0000ff">0</font> - <font color="#0000ff">0</font> - - - Remaining: - Kvarvarande: - - - Errors: - Fel: - - - Failures: - Misslyckanden: - - - Run: - Kör: - - - Test - Test - - - Select test name: - Välj testnamn: - - - - TestGui::UnitTestDialog - - Help - Hjälp - - - About FreeCAD UnitTest - Om FreeCAD EnhetsTest - - - Copyright (c) Werner Mayer - -FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. - Copyright (c) Werner Mayer - -FreeCAD EnhetsTest är en del av FreeCAD och stöder skrivning av EnhetsTester för egna moduler. - - - Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. - -Double click on an error in the tree view to see more information about it,including the stack trace. - Ange namnet på ett anropsbart objekt, som när det anropas, kommer att ge ett TestFall. Klicka på'start' och testet som producerats kommer att köras. - -Dubbelklicka på ett fel i träd-vyn för att se mer information om det, inklusive stackspårningen. - - - diff --git a/src/Mod/Test/Gui/Resources/translations/Test_sk.qm b/src/Mod/Test/Gui/Resources/translations/Test_sk.qm new file mode 100644 index 000000000..4723d62c2 Binary files /dev/null and b/src/Mod/Test/Gui/Resources/translations/Test_sk.qm differ diff --git a/src/Mod/Test/Gui/Resources/translations/Test_sk.ts b/src/Mod/Test/Gui/Resources/translations/Test_sk.ts new file mode 100644 index 000000000..df8ae7692 --- /dev/null +++ b/src/Mod/Test/Gui/Resources/translations/Test_sk.ts @@ -0,0 +1,112 @@ + + + + + TestGui::UnitTest + + FreeCAD UnitTest + FreeCAD UnitTest + + + Failures and errors + Porúchy a chýby + + + Description + Popis + + + &Start + &Spustiť + + + Alt+S + ALT+S + + + &Help + Pomoc + + + F1 + F1 + + + &About + &O + + + Alt+A + Alt + A + + + &Close + &Zavrieť + + + Alt+C + Alt+C + + + Idle + Nečinný + + + Progress + Pokrok + + + <font color="#0000ff">0</font> + <font color="#0000ff">0</font> + + + Remaining: + Zostávajúci: + + + Errors: + Chyby: + + + Failures: + Poruchy: + + + Run: + Spustiť: + + + Test + Skúška + + + Select test name: + Zvoliť názov testu: + + + + TestGui::UnitTestDialog + + Help + Pomoc + + + About FreeCAD UnitTest + O FreeCAD UnitTest + + + Copyright (c) Werner Mayer + +FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. + Copyright (c) Werner Mayer FreeCAD UnitTest je súčasťou FreeCAD a podporuje písanie jednotných testov pre vlastné moduly. + + + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + +Double click on an error in the tree view to see more information about it,including the stack trace. + Zadajte názov volatelný objekt, ktorý pri vybratí, vráti TestCase. Klikni "Štart", a vytvorený test bude spustený. + +Dvakrát kliknite na chyby v stromovom zobrazení pre viac informácií, vrátane zásobníka. + + + diff --git a/src/Mod/Test/Gui/Resources/translations/Test_se.qm b/src/Mod/Test/Gui/Resources/translations/Test_sv-SE.qm similarity index 100% rename from src/Mod/Test/Gui/Resources/translations/Test_se.qm rename to src/Mod/Test/Gui/Resources/translations/Test_sv-SE.qm diff --git a/src/Mod/Test/Gui/Resources/translations/Test_sv-SE.ts b/src/Mod/Test/Gui/Resources/translations/Test_sv-SE.ts new file mode 100644 index 000000000..281a1159e --- /dev/null +++ b/src/Mod/Test/Gui/Resources/translations/Test_sv-SE.ts @@ -0,0 +1,114 @@ + + + + + TestGui::UnitTest + + FreeCAD UnitTest + FreeCAD EnhetsTest + + + Failures and errors + Misslyckanden och fel + + + Description + Beskrivning + + + &Start + &Start + + + Alt+S + Alt+S + + + &Help + &Hjälp + + + F1 + F1 + + + &About + &Om + + + Alt+A + Alt+A + + + &Close + S&täng + + + Alt+C + Alt+C + + + Idle + Tomgång + + + Progress + Pågår + + + <font color="#0000ff">0</font> + <font color="#0000ff">0</font> + + + Remaining: + Kvarvarande: + + + Errors: + Fel: + + + Failures: + Misslyckanden: + + + Run: + Kör: + + + Test + Test + + + Select test name: + Välj testnamn: + + + + TestGui::UnitTestDialog + + Help + Hjälp + + + About FreeCAD UnitTest + Om FreeCAD EnhetsTest + + + Copyright (c) Werner Mayer + +FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. + Copyright (c) Werner Mayer + +FreeCAD EnhetsTest är en del av FreeCAD och stöder skrivning av EnhetsTester för egna moduler. + + + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + +Double click on an error in the tree view to see more information about it,including the stack trace. + Ange namnet på ett anropsbart objekt, som när det anropas, kommer att ge ett TestFall. Klicka på'start' och testet som producerats kommer att köras. + +Dubbelklicka på ett fel i träd-vyn för att se mer information om det, inklusive stackspårningen. + + + diff --git a/src/Mod/Test/Gui/Resources/translations/Test_tr.qm b/src/Mod/Test/Gui/Resources/translations/Test_tr.qm new file mode 100644 index 000000000..134e21731 Binary files /dev/null and b/src/Mod/Test/Gui/Resources/translations/Test_tr.qm differ diff --git a/src/Mod/Test/Gui/Resources/translations/Test_tr.ts b/src/Mod/Test/Gui/Resources/translations/Test_tr.ts new file mode 100644 index 000000000..889f5ed18 --- /dev/null +++ b/src/Mod/Test/Gui/Resources/translations/Test_tr.ts @@ -0,0 +1,112 @@ + + + + + TestGui::UnitTest + + FreeCAD UnitTest + FreeCAD Birimsel denetim + + + Failures and errors + Başarısızlıklar ve hatalar + + + Description + Açıklama + + + &Start + &Başlat + + + Alt+S + Alt+S + + + &Help + &Yardım + + + F1 + F1 + + + &About + &Hakkında + + + Alt+A + Alt+A + + + &Close + &Kapat + + + Alt+C + Alt + C + + + Idle + Başıboş + + + Progress + İlerleme + + + <font color="#0000ff">0</font> + <font color="#0000ff">0</font> + + + Remaining: + Kalan: + + + Errors: + Hatalar: + + + Failures: + Başarısızlıklar: + + + Run: + Çalıştır: + + + Test + Denetim + + + Select test name: + Denetim için bir ad seçin: + + + + TestGui::UnitTestDialog + + Help + Yardım + + + About FreeCAD UnitTest + FreeCAD Birimsel Denetim hakkında + + + Copyright (c) Werner Mayer + +FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. + Telif hakkı (c) Werner Mayer + + + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + +Double click on an error in the tree view to see more information about it,including the stack trace. + Nesne çağrıldığında, çağrılabilir nesnenin adını girin, bu bir deneme süreci sonucu dönecektir. 'başlat' seçeneğine basın, ve böylelikle deneme süreci başlayacaktır. + +Ağaç görünümü üzerindeki hataya çift tıklayarak hata hakkında bellek ağacını içerecek şekilde daha fazla bilgiye ulaşabilirsiniz. + + + diff --git a/src/Mod/Test/Gui/Resources/translations/Test_uk.ts b/src/Mod/Test/Gui/Resources/translations/Test_uk.ts index 97de573ff..3084179f2 100644 --- a/src/Mod/Test/Gui/Resources/translations/Test_uk.ts +++ b/src/Mod/Test/Gui/Resources/translations/Test_uk.ts @@ -1,114 +1,114 @@ - - + + TestGui::UnitTest - FreeCAD UnitTest - FreeCAD Модульний Тест + FreeCAD UnitTest + FreeCAD Модульний Тест - Failures and errors - Збої та помилки + Failures and errors + Збої та помилки - Description - Опис + Description + Опис - &Start - &Старт + &Start + &Старт - Alt+S - Alt+S + Alt+S + Alt+S - &Help - &Допомога + &Help + &Допомога - F1 - F1 + F1 + F1 - &About - &Про + &About + &Про - Alt+A - Alt+A + Alt+A + Alt+A - &Close - &Закрити + &Close + &Закрити - Alt+C - Alt+C + Alt+C + Alt+C - Idle - Бездіяльний + Idle + Бездіяльний - Progress - Прогрес + Progress + Прогрес - <font color="#0000ff">0</font> - <font color="#0000ff">0</font> + <font color="#0000ff">0</font> + <font color="#0000ff">0</font> - Remaining: - Залишилось: + Remaining: + Залишилось: - Errors: - Помилки: + Errors: + Помилки: - Failures: - Збої: + Failures: + Збої: - Run: - Запуск: + Run: + Запуск: - Test - Тест + Test + Тест - Select test name: - Виберіть назву тесту: + Select test name: + Виберіть назву тесту: - - + + TestGui::UnitTestDialog - Help - Допомога + Help + Допомога - About FreeCAD UnitTest - Про Модульний Тест FreeCAD + About FreeCAD UnitTest + Про Модульний Тест FreeCAD - Copyright (c) Werner Mayer + Copyright (c) Werner Mayer FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. - Copyright (c) Werner Mayer + Copyright (c) Werner Mayer Модульний тест FreeCAD частина FreeCAD, підтримує написання Модульних Тестів для власних модулів. - Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. Double click on an error in the tree view to see more information about it,including the stack trace. - Введіть ім'я об'єкту, при виклику якого, буде повертатись TestCase. Клікніть 'start' і таким чином, перевірка буде виконана. + Введіть ім'я об'єкту, при виклику якого, буде повертатись TestCase. Клікніть 'start' і таким чином, перевірка буде виконана. Подвійний клік по помилці, в деревоподібному перегляді, покаже додаткову інформацію, включаючи трасування. - + diff --git a/src/Mod/Test/Gui/Resources/translations/Test_zh.qm b/src/Mod/Test/Gui/Resources/translations/Test_zh-CN.qm similarity index 100% rename from src/Mod/Test/Gui/Resources/translations/Test_zh.qm rename to src/Mod/Test/Gui/Resources/translations/Test_zh-CN.qm diff --git a/src/Mod/Test/Gui/Resources/translations/Test_zh-CN.ts b/src/Mod/Test/Gui/Resources/translations/Test_zh-CN.ts new file mode 100644 index 000000000..93581ede3 --- /dev/null +++ b/src/Mod/Test/Gui/Resources/translations/Test_zh-CN.ts @@ -0,0 +1,112 @@ + + + + + TestGui::UnitTest + + FreeCAD UnitTest + FreeCAD 单元测试 + + + Failures and errors + 失败和错误 + + + Description + 描述 + + + &Start + 开始(&S) + + + Alt+S + Alt+S + + + &Help + 帮助(&H) + + + F1 + F1 + + + &About + 关于(&A) + + + Alt+A + Alt+A + + + &Close + 关闭(&C) + + + Alt+C + Alt+C + + + Idle + 空闲 + + + Progress + 进度 + + + <font color="#0000ff">0</font> + <font color="#0000ff">0</font> + + + Remaining: + 剩余: + + + Errors: + 错误: + + + Failures: + 失败: + + + Run: + 运行: + + + Test + 测试 + + + Select test name: + 选择测试名称: + + + + TestGui::UnitTestDialog + + Help + 帮助 + + + About FreeCAD UnitTest + 关于FreeCAD单元测试 + + + Copyright (c) Werner Mayer + +FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. + 版权所有(c) Werner Mayer +FreeCAD 单元测试是 FreeCAD 的一部分,并支持为自身模块编写单元测试。 + + + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + +Double click on an error in the tree view to see more information about it,including the stack trace. + 请输入一个可调用对象的名字,其在被调用时将返回一个测试用例。点击‘开始’,将会运行新产生的测试。 +双击树视图中的错误可以查看与其有关的更多内容,包括堆栈跟踪信息。 + + + diff --git a/src/Mod/Test/Gui/Resources/translations/Test_zh-TW.qm b/src/Mod/Test/Gui/Resources/translations/Test_zh-TW.qm new file mode 100644 index 000000000..177baad26 Binary files /dev/null and b/src/Mod/Test/Gui/Resources/translations/Test_zh-TW.qm differ diff --git a/src/Mod/Test/Gui/Resources/translations/Test_zh-TW.ts b/src/Mod/Test/Gui/Resources/translations/Test_zh-TW.ts new file mode 100644 index 000000000..63ba4407a --- /dev/null +++ b/src/Mod/Test/Gui/Resources/translations/Test_zh-TW.ts @@ -0,0 +1,112 @@ + + + + + TestGui::UnitTest + + FreeCAD UnitTest + FreeCAD單元測試 + + + Failures and errors + 失敗和錯誤 + + + Description + 說明 + + + &Start + 啟動(&S) + + + Alt+S + Alt+S + + + &Help + 說明(&H) + + + F1 + F1 + + + &About + 關於(&A) + + + Alt+A + Alt+A + + + &Close + 關閉(&C) + + + Alt+C + Alt+C + + + Idle + 閒置 + + + Progress + 進展 + + + <font color="#0000ff">0</font> + <font color="#0000ff">0</font> + + + Remaining: + 剩餘: + + + Errors: + 錯誤: + + + Failures: + 失敗: + + + Run: + 執行: + + + Test + 測試 + + + Select test name: + 選擇測試名稱: + + + + TestGui::UnitTestDialog + + Help + 説明 + + + About FreeCAD UnitTest + 關於 FreeCAD 單元測試 + + + Copyright (c) Werner Mayer + +FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. + 版權所有 (c) Werner Mayer +FreeCAD 單元測試是 FreeCAD 的一部分,並為所有模組支援編寫單元測試。 + + + Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. + +Double click on an error in the tree view to see more information about it,including the stack trace. + 輸入可調用物件名稱,調用時將彈出一個測試案例。點擊“開始”,由此產生的測試將被執行。 +雙擊在樹狀視圖中的錯誤以查看詳細的信息,包括堆棧追踪。 + + + diff --git a/src/Mod/Test/Gui/Resources/translations/Test_zh.ts b/src/Mod/Test/Gui/Resources/translations/Test_zh.ts deleted file mode 100644 index 1339d32d7..000000000 --- a/src/Mod/Test/Gui/Resources/translations/Test_zh.ts +++ /dev/null @@ -1,112 +0,0 @@ - - - - - TestGui::UnitTest - - FreeCAD UnitTest - FreeCAD 单元测试 - - - Failures and errors - 失败和错误 - - - Description - 描述 - - - &Start - 开始(&S) - - - Alt+S - Alt+S - - - &Help - 帮助(&H) - - - F1 - F1 - - - &About - 关于(&A) - - - Alt+A - Alt+A - - - &Close - 关闭(&C) - - - Alt+C - Alt+C - - - Idle - 空闲 - - - Progress - 进度 - - - <font color="#0000ff">0</font> - <font color="#0000ff">0</font> - - - Remaining: - 剩余: - - - Errors: - 错误: - - - Failures: - 失败: - - - Run: - 运行: - - - Test - 测试 - - - Select test name: - 选择测试名称: - - - - TestGui::UnitTestDialog - - Help - 帮助 - - - About FreeCAD UnitTest - 关于FreeCAD单元测试 - - - Copyright (c) Werner Mayer - -FreeCAD UnitTest is part of FreeCAD and supports writing Unit Tests for own modules. - 版权所有(c) Werner Mayer -FreeCAD 单元测试是 FreeCAD 的一部分,并支持为自身模块编写单元测试。 - - - Enter the name of a callable object which, when called, will return a TestCase.Click 'start', and the test thus produced will be run. - -Double click on an error in the tree view to see more information about it,including the stack trace. - 请输入一个可调用对象的名字,其在被调用时将返回一个测试用例。点击‘开始’,将会运行新产生的测试。 -双击树视图中的错误可以查看与其有关的更多内容,包括堆栈跟踪信息。 - - - diff --git a/src/Tools/updateTranslations.py b/src/Tools/updateTranslations.py index 695a2f633..683f44023 100755 --- a/src/Tools/updateTranslations.py +++ b/src/Tools/updateTranslations.py @@ -34,117 +34,116 @@ Example: Options: - -h : prints this help text - -d : specifies a directory containing the freecad.zip file. - -m : specifies a single module name to be updated, instead of all modules + -h or --help : prints this help text + -d or --directory : specifies a directory containing unzipped translation folders + -z or --zipfile : specifies a path to the freecad.zip file + -m or --module : specifies a single module name to be updated, instead of all modules This command must be run from its current source tree location (/src/Tools) -so it can find the correct places to put the translation files. The -latest translations from crowdin will be downloaded, unzipped and put to -the correct locations. The necessary renaming of files and .qm generation -will be taken care of, but no resource file or other stuff will be done, -only the correct copying of .ts and .qm files. +so it can find the correct places to put the translation files. If run with +no arguments, the latest translations from crowdin will be downloaded, unzipped +and put to the correct locations. The necessary renaming of files and .qm generation +will be taken care of. The qrc files will also be updated when new +translations are added. NOTE! The crowdin site only allows to download "builds" (zipped archives) which must be built prior to downloading. This means a build might not -reflect the latest state of the translations. Better make a build before +reflect the latest state of the translations. Better always make a build before using this script! You can specify a directory with the -d option if you already downloaded -and the build, or you can specify a single module to update with -m. +and extracted the build, or you can specify a single module to update with -m. -You can also run the script without any language code, in which case the -default ones specified inside this script will be used. +You can also run the script without any language code, in which case all the +languages contained in the archive or directory will be added. ''' -import sys, os, shutil, tempfile, zipfile, getopt, StringIO -import xml.sax, xml.sax.handler, xml.sax.xmlreader - -defaultLanguages = ["af","de","es-ES","fi","fr","hr","hu","it","ja","nl", - "no","pl","pt-BR","ru","sv-SE","uk","zh-CN"] +import sys, os, shutil, tempfile, zipfile, getopt, StringIO, re crowdinpath = "http://crowdin.net/download/project/freecad.zip" -locations = [["Assembly","../Mod/Assembly/Gui/Resources/translations"], - ["Complete","../Mod/Complete/Gui/Resources/translations"], - ["draft","../Mod/Draft/Resources/translations"], - ["Drawing","../Mod/Drawing/Gui/Resources/translations"], - ["Fem","../Mod/Fem/Gui/Resources/translations"], - ["FreeCAD","../Gui/Language"], - ["Image","../Mod/Image/Gui/Resources/translations"], - ["Mesh","../Mod/Mesh/Gui/Resources/translations"], - ["MeshPart","../Mod/MeshPart/Gui/Resources/translations"], - ["Part","../Mod/Part/Gui/Resources/translations"], - ["PartDesign","../Mod/PartDesign/Gui/Resources/translations"], - ["Points","../Mod/Points/Gui/Resources/translations"], - ["Raytracing","../Mod/Raytracing/Gui/Resources/translations"], - ["ReverseEngineering","../Mod/ReverseEngineering/Gui/Resources/translations"], - ["Robot","../Mod/Robot/Gui/Resources/translations"], - ["Sketcher","../Mod/Sketcher/Gui/Resources/translations"], - ["Arch","../Mod/Arch/Resources/translations"], - ["StartPage","../Mod/Start/Gui/Resources/translations"], - ["Test","../Mod/Test/Gui/Resources/translations"]] +# locations list contains Module name, relative path to translation folder, relative path to qrc file, and optionally +# a python rc file -tweaks = [["pt-BR","pt"],["es-ES","es"],["sv-SE","se"],["zh-CN","zh"]] +locations = [["Arch","../Mod/Arch/Resources/translations","../Mod/Arch/Resources/Arch.qrc"], + ["Assembly","../Mod/Assembly/Gui/Resources/translations","../Mod/Assembly/Gui/Resources/Assembly.qrc"], + ["Complete","../Mod/Complete/Gui/Resources/translations","../Mod/Complete/Gui/Resources/Complete.qrc"], + ["draft","../Mod/Draft/Resources/translations","../Mod/Draft/Resources/Draft.qrc"], + ["Drawing","../Mod/Drawing/Gui/Resources/translations","../Mod/Drawing/Gui/Resources/Drawing.qrc"], + ["Fem","../Mod/Fem/Gui/Resources/translations","../Mod/Fem/Gui/Resources/Fem.qrc"], + ["FreeCAD","../Gui/Language","../Gui/Language/translation.qrc"], + ["Image","../Mod/Image/Gui/Resources/translations","../Mod/Image/Gui/Resources/Image.qrc"], + ["Mesh","../Mod/Mesh/Gui/Resources/translations","../Mod/Mesh/Gui/Resources/Mesh.qrc"], + ["MeshPart","../Mod/MeshPart/Gui/Resources/translations","../Mod/MeshPart/Gui/Resources/MeshPart.qrc"], + ["OpenSCAD","../Mod/OpenSCAD/Resources/translations","../Mod/OpenSCAD/Resources/OpenSCAD.qrc"], + ["Part","../Mod/Part/Gui/Resources/translations","../Mod/Part/Gui/Resources/Part.qrc"], + ["PartDesign","../Mod/PartDesign/Gui/Resources/translations","../Mod/PartDesign/Gui/Resources/PartDesign.qrc"], + ["Points","../Mod/Points/Gui/Resources/translations","../Mod/Points/Gui/Resources/Points.qrc"], + ["Raytracing","../Mod/Raytracing/Gui/Resources/translations","../Mod/Raytracing/Gui/Resources/Raytracing.qrc"], + ["ReverseEngineering","../Mod/ReverseEngineering/Gui/Resources/translations","../Mod/ReverseEngineering/Gui/Resources/ReverseEngineering.qrc"], + ["Robot","../Mod/Robot/Gui/Resources/translations","../Mod/Robot/Gui/Resources/Robot.qrc"], + ["Sketcher","../Mod/Sketcher/Gui/Resources/translations","../Mod/Sketcher/Gui/Resources/Sketcher.qrc"], + ["StartPage","../Mod/Start/Gui/Resources/translations","../Mod/Start/Gui/Resources/Start.qrc"], + ["Test","../Mod/Test/Gui/Resources/translations","../Mod/Test/Gui/Resources/Test.qrc"]] -# SAX handler to parse the subversion output -class SvnHandler(xml.sax.handler.ContentHandler): - def __init__(self): - self.is_versioned = True +def updateqrc(qrcpath,lncode): + "updates a qrc file with the given translation entry" - def startElement(self, name, attributes): - if name == "wc-status": - if attributes["item"] == "unversioned": - self.is_versioned = False + print "opening " + qrcpath + "..." + + # getting qrc file contents + if not os.path.exists(qrcpath): + print "ERROR: Resource file " + qrcpath + " doesn't exist" + sys.exit() + f = open(qrcpath,"ro") + resources = [] + for l in f.readlines(): + resources.append(l) + f.close() -def doFile(tsfilepath,targetpath,lncode): - "treats a single file" + # checking for existing entry + name = "_" + lncode + ".qm" + for r in resources: + if name in r: + print "language already exists in qrc file" + return + + # find the latest qm line + pos = None + for i in range(len(resources)): + if ".qm" in resources[i]: + pos = i + if pos == None: + print "ERROR: couldn't find any qm file entry in this resource: " + qrcpath + sys.exit() + + # inserting new entry just after the last one + line = resources[pos] + line = re.sub("_.*\.qm","_"+lncode+".qm",line) + print "inserting line: ",line + resources.insert(pos+1,line) + + # writing the file + f = open(qrcpath,"wb") + for r in resources: + f.write(r) + f.close() + print "successfully updated ",qrcpath + +def doFile(tsfilepath,targetpath,lncode,qrcpath): + "updates a single ts file, and creates a corresponding qm file" basename = os.path.basename(tsfilepath)[:-3] # special fix of the draft filename... if basename == "draft": basename = "Draft" - # tweak of the final name... - for t in tweaks: - if lncode == t[0]: - lncode = t[1] newname = basename + "_" + lncode + ".ts" newpath = targetpath + os.sep + newname shutil.copyfile(tsfilepath, newpath) os.system("lrelease " + newpath) newqm = targetpath + os.sep + basename + "_" + lncode + ".qm" if not os.path.exists(newqm): - print "ERROR: " + newqm + "not released" - - # handle .ts file - parser=xml.sax.make_parser() - handler=SvnHandler() - parser.setContentHandler(handler) - info=os.popen("svn status %s --xml" % (newpath)).read() - try: - inpsrc = xml.sax.InputSource() - strio=StringIO.StringIO(info) - inpsrc.setByteStream(strio) - parser.parse(inpsrc) - if not handler.is_versioned: - print "Add file %s to subversion" % (newpath) - os.system("svn add %s" % (newpath)) - except: - pass - - # handle .qm file - parser=xml.sax.make_parser() - handler=SvnHandler() - parser.setContentHandler(handler) - info=os.popen("svn status %s --xml" % (newqm)).read() - try: - inpsrc = xml.sax.InputSource() - strio=StringIO.StringIO(info) - inpsrc.setByteStream(strio) - parser.parse(inpsrc) - if not handler.is_versioned: - print "Add file %s to subversion" % (newqm) - os.system("svn add %s" % (newqm)) - except: - pass + print "ERROR: impossible to create " + newqm + ", aborting" + sys.exit() + updateqrc(qrcpath,lncode) def doLanguage(lncode,fmodule=""): " treats a single language" @@ -161,7 +160,8 @@ def doLanguage(lncode,fmodule=""): for target in mods: basefilepath = tempfolder + os.sep + lncode + os.sep + target[0] + ".ts" targetpath = os.path.abspath(target[1]) - doFile(basefilepath,targetpath,lncode) + qrcpath = os.path.abspath(target[2]) + doFile(basefilepath,targetpath,lncode,qrcpath) print lncode + " done!" if __name__ == "__main__": @@ -170,13 +170,14 @@ if __name__ == "__main__": print __doc__ sys.exit() try: - opts, args = getopt.getopt(sys.argv[1:], "hd:m:", ["help", "directory=","module="]) + opts, args = getopt.getopt(sys.argv[1:], "hd:z:m:", ["help", "directory=","zipfile=", "module="]) except getopt.GetoptError: print __doc__ sys.exit() # checking on the options inputdir = "" + inputzip = "" fmodule = "" for o, a in opts: if o in ("-h", "--help"): @@ -184,34 +185,46 @@ if __name__ == "__main__": sys.exit() if o in ("-d", "--directory"): inputdir = a + if o in ("-z", "--zipfile"): + inputzip = a if o in ("-m", "--module"): fmodule = a - tempfolder = tempfile.mkdtemp() - print "creating temp folder " + tempfolder currentfolder = os.getcwd() - os.chdir(tempfolder) - if len(inputdir) > 0: - inputdir=os.path.realpath(inputdir) - inputdir=os.sep.join((inputdir,"freecad.zip")) - if not os.path.exists(inputdir): - print "freecad.zip does not exist!" + if inputdir: + tempfolder = os.path.realpath(inputdir) + if not os.path.exists(tempfolder): + print "ERROR: " + tempfolder + " not found" sys.exit() - shutil.copy(inputdir,tempfolder) + elif inputzip: + tempfolder = tempfile.mkdtemp() + print "creating temp folder " + tempfolder + os.chdir(tempfolder) + inputzip=os.path.realpath(inputzip) + if not os.path.exists(inputzip): + print "ERROR: " + inputzip + " not found" + sys.exit() + shutil.copy(inputzip,tempfolder) + zfile=zipfile.ZipFile("freecad.zip") + print "extracting freecad.zip..." + zfile.extractall() else: + tempfolder = tempfile.mkdtemp() + print "creating temp folder " + tempfolder + os.chdir(tempfolder) os.system("wget "+crowdinpath) if not os.path.exists("freecad.zip"): print "download failed!" sys.exit() - zfile=zipfile.ZipFile("freecad.zip") - print "extracting freecad.zip..." - zfile.extractall() + zfile=zipfile.ZipFile("freecad.zip") + print "extracting freecad.zip..." + zfile.extractall() os.chdir(currentfolder) if not args: - args = defaultLanguages + args = [o for o in os.listdir(tempfolder) if o != "freecad.zip"] for ln in args: if not os.path.exists(tempfolder + os.sep + ln): - print "language path for " + ln + " not found!" + print "ERROR: language path for " + ln + " not found!" else: doLanguage(ln,fmodule) diff --git a/src/WindowsInstaller/FreeCAD.wxs b/src/WindowsInstaller/FreeCAD.wxs index 8a3a8833c..0caaa311c 100644 --- a/src/WindowsInstaller/FreeCAD.wxs +++ b/src/WindowsInstaller/FreeCAD.wxs @@ -181,6 +181,15 @@ + + + + + + + + + diff --git a/src/WindowsInstaller/FreeCADModules.wxs b/src/WindowsInstaller/FreeCADModules.wxs index cc820ca32..e0698d53d 100644 --- a/src/WindowsInstaller/FreeCADModules.wxs +++ b/src/WindowsInstaller/FreeCADModules.wxs @@ -54,6 +54,7 @@ + diff --git a/src/WindowsInstaller/ModPlot.wxi b/src/WindowsInstaller/ModPlot.wxi new file mode 100644 index 000000000..c9934cf35 --- /dev/null +++ b/src/WindowsInstaller/ModPlot.wxi @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +